diff -u linux-intel-iotg-5.15-5.15.0/Documentation/accounting/psi.rst linux-intel-iotg-5.15-5.15.0/Documentation/accounting/psi.rst --- linux-intel-iotg-5.15-5.15.0/Documentation/accounting/psi.rst +++ linux-intel-iotg-5.15-5.15.0/Documentation/accounting/psi.rst @@ -37,11 +37,7 @@ Pressure information for each resource is exported through the respective file in /proc/pressure/ -- cpu, memory, and io. -The format for CPU is as such:: - - some avg10=0.00 avg60=0.00 avg300=0.00 total=0 - -and for memory and IO:: +The format is as such:: some avg10=0.00 avg60=0.00 avg300=0.00 total=0 full avg10=0.00 avg60=0.00 avg300=0.00 total=0 @@ -58,6 +54,9 @@ still doing productive work. As such, time spent in this subset of the stall state is tracked separately and exported in the "full" averages. +CPU full is undefined at the system level, but has been reported +since 5.13, so it is set to zero for backward compatibility. + The ratios (in %) are tracked as recent trends over ten, sixty, and three hundred second windows, which gives insight into short term events as well as medium and long term trends. The total absolute stall time diff -u linux-intel-iotg-5.15-5.15.0/Documentation/admin-guide/kernel-parameters.txt linux-intel-iotg-5.15-5.15.0/Documentation/admin-guide/kernel-parameters.txt --- linux-intel-iotg-5.15-5.15.0/Documentation/admin-guide/kernel-parameters.txt +++ linux-intel-iotg-5.15-5.15.0/Documentation/admin-guide/kernel-parameters.txt @@ -3023,6 +3023,7 @@ kvm.nx_huge_pages=off [X86] no_entry_flush [PPC] no_uaccess_flush [PPC] + mmio_stale_data=off [X86] Exceptions: This does not have any effect on @@ -3044,6 +3045,7 @@ Equivalent to: l1tf=flush,nosmt [X86] mds=full,nosmt [X86] tsx_async_abort=full,nosmt [X86] + mmio_stale_data=full,nosmt [X86] mminit_loglevel= [KNL] When CONFIG_DEBUG_MEMORY_INIT is set, this @@ -3053,6 +3055,40 @@ log everything. Information is printed at KERN_DEBUG so loglevel=8 may also need to be specified. + mmio_stale_data= + [X86,INTEL] Control mitigation for the Processor + MMIO Stale Data vulnerabilities. + + Processor MMIO Stale Data is a class of + vulnerabilities that may expose data after an MMIO + operation. Exposed data could originate or end in + the same CPU buffers as affected by MDS and TAA. + Therefore, similar to MDS and TAA, the mitigation + is to clear the affected CPU buffers. + + This parameter controls the mitigation. The + options are: + + full - Enable mitigation on vulnerable CPUs + + full,nosmt - Enable mitigation and disable SMT on + vulnerable CPUs. + + off - Unconditionally disable mitigation + + On MDS or TAA affected machines, + mmio_stale_data=off can be prevented by an active + MDS or TAA mitigation as these vulnerabilities are + mitigated with the same mechanism so in order to + disable this mitigation, you need to specify + mds=off and tsx_async_abort=off too. + + Not specifying this option is equivalent to + mmio_stale_data=full. + + For details see: + Documentation/admin-guide/hw-vuln/processor_mmio_stale_data.rst + module.sig_enforce [KNL] When CONFIG_MODULE_SIG is set, this means that modules without (valid) signatures will fail to load. @@ -3964,6 +4000,15 @@ please report a bug. nocrs [X86] Ignore PCI host bridge windows from ACPI. If you need to use this, please report a bug. + use_e820 [X86] Use E820 reservations to exclude parts of + PCI host bridge windows. This is a workaround + for BIOS defects in host bridge _CRS methods. + If you need to use this, please report a bug to + . + no_e820 [X86] Ignore E820 reservations for PCI host + bridge windows. This is the default on modern + hardware. If you need to use this, please report + a bug to . routeirq Do IRQ routing for all PCI devices. This is normally done in pci_enable_device(), so this option is a temporary workaround @@ -4317,6 +4362,12 @@ fully seed the kernel's CRNG. Default is controlled by CONFIG_RANDOM_TRUST_CPU. + random.trust_bootloader={on,off} + [KNL] Enable or disable trusting the use of a + seed passed by the bootloader (if available) to + fully seed the kernel's CRNG. Default is controlled + by CONFIG_RANDOM_TRUST_BOOTLOADER. + randomize_kstack_offset= [KNL] Enable or disable kernel stack offset randomization, which provides roughly 5 bits of @@ -4936,6 +4987,30 @@ retain_initrd [RAM] Keep initrd memory after extraction + retbleed= [X86] Control mitigation of RETBleed (Arbitrary + Speculative Code Execution with Return Instructions) + vulnerability. + + off - no mitigation + auto - automatically select a migitation + auto,nosmt - automatically select a mitigation, + disabling SMT if necessary for + the full mitigation (only on Zen1 + and older without STIBP). + ibpb - mitigate short speculation windows on + basic block boundaries too. Safe, highest + perf impact. + unret - force enable untrained return thunks, + only effective on AMD f15h-f17h + based systems. + unret,nosmt - like unret, will disable SMT when STIBP + is not available. + + Selecting 'auto' will choose a mitigation method at run + time according to the CPU. + + Not specifying this option is equivalent to retbleed=auto. + rfkill.default_state= 0 "airplane mode". All wifi, bluetooth, wimax, gps, fm, etc. communication is blocked by default. @@ -5282,6 +5357,7 @@ eibrs - enhanced IBRS eibrs,retpoline - enhanced IBRS + Retpolines eibrs,lfence - enhanced IBRS + LFENCE + ibrs - use IBRS to protect kernel Not specifying this option is equivalent to spectre_v2=auto. diff -u linux-intel-iotg-5.15-5.15.0/Documentation/admin-guide/sysctl/kernel.rst linux-intel-iotg-5.15-5.15.0/Documentation/admin-guide/sysctl/kernel.rst --- linux-intel-iotg-5.15-5.15.0/Documentation/admin-guide/sysctl/kernel.rst +++ linux-intel-iotg-5.15-5.15.0/Documentation/admin-guide/sysctl/kernel.rst @@ -1014,28 +1014,22 @@ * ``boot_id``: a UUID generated the first time this is retrieved, and unvarying after that; +* ``uuid``: a UUID generated every time this is retrieved (this can + thus be used to generate UUIDs at will); + * ``entropy_avail``: the pool's entropy count, in bits; * ``poolsize``: the entropy pool size, in bits; * ``urandom_min_reseed_secs``: obsolete (used to determine the minimum - number of seconds between urandom pool reseeding). - -* ``uuid``: a UUID generated every time this is retrieved (this can - thus be used to generate UUIDs at will); + number of seconds between urandom pool reseeding). This file is + writable for compatibility purposes, but writing to it has no effect + on any RNG behavior; * ``write_wakeup_threshold``: when the entropy count drops below this (as a number of bits), processes waiting to write to ``/dev/random`` - are woken up. - -If ``drivers/char/random.c`` is built with ``ADD_INTERRUPT_BENCH`` -defined, these additional entries are present: - -* ``add_interrupt_avg_cycles``: the average number of cycles between - interrupts used to feed the pool; - -* ``add_interrupt_avg_deviation``: the standard deviation seen on the - number of cycles between interrupts used to feed the pool. + are woken up. This file is writable for compatibility purposes, but + writing to it has no effect on any RNG behavior. randomize_va_space diff -u linux-intel-iotg-5.15-5.15.0/MAINTAINERS linux-intel-iotg-5.15-5.15.0/MAINTAINERS --- linux-intel-iotg-5.15-5.15.0/MAINTAINERS +++ linux-intel-iotg-5.15-5.15.0/MAINTAINERS @@ -10344,9 +10344,11 @@ F: arch/s390/include/asm/gmap.h F: arch/s390/include/asm/kvm* F: arch/s390/include/uapi/asm/kvm* +F: arch/s390/include/uapi/asm/uvdevice.h F: arch/s390/kernel/uv.c F: arch/s390/kvm/ F: arch/s390/mm/gmap.c +F: drivers/s390/char/uvdevice.c F: tools/testing/selftests/kvm/*/s390x/ F: tools/testing/selftests/kvm/s390x/ @@ -15769,6 +15771,8 @@ RANDOM NUMBER DRIVER M: "Theodore Ts'o" +M: Jason A. Donenfeld +T: git https://git.kernel.org/pub/scm/linux/kernel/git/crng/random.git S: Maintained F: drivers/char/random.c diff -u linux-intel-iotg-5.15-5.15.0/Makefile linux-intel-iotg-5.15-5.15.0/Makefile --- linux-intel-iotg-5.15-5.15.0/Makefile +++ linux-intel-iotg-5.15-5.15.0/Makefile @@ -1,7 +1,7 @@ # SPDX-License-Identifier: GPL-2.0 VERSION = 5 PATCHLEVEL = 15 -SUBLEVEL = 35 +SUBLEVEL = 46 EXTRAVERSION = NAME = Trick or Treat @@ -699,6 +699,12 @@ RETPOLINE_CFLAGS := -mretpoline-external-thunk RETPOLINE_VDSO_CFLAGS := -mretpoline endif + +ifdef CONFIG_RETHUNK +RETHUNK_CFLAGS := -mfunction-return=thunk-extern +RETPOLINE_CFLAGS += $(RETHUNK_CFLAGS) +endif + export RETPOLINE_CFLAGS export RETPOLINE_VDSO_CFLAGS diff -u linux-intel-iotg-5.15-5.15.0/arch/arm/boot/dts/aspeed-g6-pinctrl.dtsi linux-intel-iotg-5.15-5.15.0/arch/arm/boot/dts/aspeed-g6-pinctrl.dtsi --- linux-intel-iotg-5.15-5.15.0/arch/arm/boot/dts/aspeed-g6-pinctrl.dtsi +++ linux-intel-iotg-5.15-5.15.0/arch/arm/boot/dts/aspeed-g6-pinctrl.dtsi @@ -117,11 +117,6 @@ groups = "FWSPID"; }; - pinctrl_fwqspid_default: fwqspid_default { - function = "FWSPID"; - groups = "FWQSPID"; - }; - pinctrl_fwspiwp_default: fwspiwp_default { function = "FWSPIWP"; groups = "FWSPIWP"; @@ -653,12 +648,12 @@ }; pinctrl_qspi1_default: qspi1_default { - function = "QSPI1"; + function = "SPI1"; groups = "QSPI1"; }; pinctrl_qspi2_default: qspi2_default { - function = "QSPI2"; + function = "SPI2"; groups = "QSPI2"; }; diff -u linux-intel-iotg-5.15-5.15.0/arch/arm/boot/dts/bcm5301x.dtsi linux-intel-iotg-5.15-5.15.0/arch/arm/boot/dts/bcm5301x.dtsi --- linux-intel-iotg-5.15-5.15.0/arch/arm/boot/dts/bcm5301x.dtsi +++ linux-intel-iotg-5.15-5.15.0/arch/arm/boot/dts/bcm5301x.dtsi @@ -423,14 +423,14 @@ #address-cells = <1>; #size-cells = <1>; - cru@100 { - compatible = "simple-bus"; + cru-bus@100 { + compatible = "brcm,ns-cru", "simple-mfd"; reg = <0x100 0x1a4>; ranges; #address-cells = <1>; #size-cells = <1>; - lcpll0: lcpll0@100 { + lcpll0: clock-controller@100 { #clock-cells = <1>; compatible = "brcm,nsp-lcpll0"; reg = <0x100 0x14>; @@ -439,7 +439,7 @@ "sdio", "ddr_phy"; }; - genpll: genpll@140 { + genpll: clock-controller@140 { #clock-cells = <1>; compatible = "brcm,nsp-genpll"; reg = <0x140 0x24>; @@ -450,7 +450,12 @@ "sata1", "sata2"; }; - pinctrl: pin-controller@1c0 { + syscon@180 { + compatible = "brcm,cru-clkset", "syscon"; + reg = <0x180 0x4>; + }; + + pinctrl: pinctrl@1c0 { compatible = "brcm,bcm4708-pinmux"; reg = <0x1c0 0x24>; reg-names = "cru_gpio_control"; diff -u linux-intel-iotg-5.15-5.15.0/arch/arm/boot/dts/dra7-l4.dtsi linux-intel-iotg-5.15-5.15.0/arch/arm/boot/dts/dra7-l4.dtsi --- linux-intel-iotg-5.15-5.15.0/arch/arm/boot/dts/dra7-l4.dtsi +++ linux-intel-iotg-5.15-5.15.0/arch/arm/boot/dts/dra7-l4.dtsi @@ -4188,11 +4188,11 @@ reg = <0x1d0010 0x4>; reg-names = "sysc"; ti,sysc-midle = , - , - ; + ; ti,sysc-sidle = , , ; + power-domains = <&prm_vpe>; clocks = <&vpe_clkctrl DRA7_VPE_VPE_CLKCTRL 0>; clock-names = "fck"; #address-cells = <1>; diff -u linux-intel-iotg-5.15-5.15.0/arch/arm/boot/dts/exynos5250-smdk5250.dts linux-intel-iotg-5.15-5.15.0/arch/arm/boot/dts/exynos5250-smdk5250.dts --- linux-intel-iotg-5.15-5.15.0/arch/arm/boot/dts/exynos5250-smdk5250.dts +++ linux-intel-iotg-5.15-5.15.0/arch/arm/boot/dts/exynos5250-smdk5250.dts @@ -129,7 +129,7 @@ samsung,i2c-max-bus-freq = <20000>; eeprom@50 { - compatible = "samsung,s524ad0xd1"; + compatible = "samsung,s524ad0xd1", "atmel,24c128"; reg = <0x50>; }; @@ -289,7 +289,7 @@ samsung,i2c-max-bus-freq = <20000>; eeprom@51 { - compatible = "samsung,s524ad0xd1"; + compatible = "samsung,s524ad0xd1", "atmel,24c128"; reg = <0x51>; }; diff -u linux-intel-iotg-5.15-5.15.0/arch/arm/boot/dts/omap3-gta04.dtsi linux-intel-iotg-5.15-5.15.0/arch/arm/boot/dts/omap3-gta04.dtsi --- linux-intel-iotg-5.15-5.15.0/arch/arm/boot/dts/omap3-gta04.dtsi +++ linux-intel-iotg-5.15-5.15.0/arch/arm/boot/dts/omap3-gta04.dtsi @@ -31,6 +31,8 @@ aliases { display0 = &lcd; display1 = &tv0; + /delete-property/ mmc2; + /delete-property/ mmc3; }; ldo_3v3: fixedregulator { diff -u linux-intel-iotg-5.15-5.15.0/arch/arm/boot/dts/sama7g5.dtsi linux-intel-iotg-5.15-5.15.0/arch/arm/boot/dts/sama7g5.dtsi --- linux-intel-iotg-5.15-5.15.0/arch/arm/boot/dts/sama7g5.dtsi +++ linux-intel-iotg-5.15-5.15.0/arch/arm/boot/dts/sama7g5.dtsi @@ -553,7 +553,6 @@ #interrupt-cells = <3>; #address-cells = <0>; interrupt-controller; - interrupt-parent; reg = <0xe8c11000 0x1000>, <0xe8c12000 0x2000>; }; diff -u linux-intel-iotg-5.15-5.15.0/arch/arm/kernel/entry-armv.S linux-intel-iotg-5.15-5.15.0/arch/arm/kernel/entry-armv.S --- linux-intel-iotg-5.15-5.15.0/arch/arm/kernel/entry-armv.S +++ linux-intel-iotg-5.15-5.15.0/arch/arm/kernel/entry-armv.S @@ -1038,7 +1038,7 @@ @ bhb workaround mov r0, #8 -3: b . + 4 +3: W(b) . + 4 subs r0, r0, #1 bne 3b dsb diff -u linux-intel-iotg-5.15-5.15.0/arch/arm/kernel/stacktrace.c linux-intel-iotg-5.15-5.15.0/arch/arm/kernel/stacktrace.c --- linux-intel-iotg-5.15-5.15.0/arch/arm/kernel/stacktrace.c +++ linux-intel-iotg-5.15-5.15.0/arch/arm/kernel/stacktrace.c @@ -53,17 +53,17 @@ return -EINVAL; frame->sp = frame->fp; - frame->fp = *(unsigned long *)(fp); - frame->pc = *(unsigned long *)(fp + 4); + frame->fp = READ_ONCE_NOCHECK(*(unsigned long *)(fp)); + frame->pc = READ_ONCE_NOCHECK(*(unsigned long *)(fp + 4)); #else /* check current frame pointer is within bounds */ if (fp < low + 12 || fp > high - 4) return -EINVAL; /* restore the registers from the stack frame */ - frame->fp = *(unsigned long *)(fp - 12); - frame->sp = *(unsigned long *)(fp - 8); - frame->pc = *(unsigned long *)(fp - 4); + frame->fp = READ_ONCE_NOCHECK(*(unsigned long *)(fp - 12)); + frame->sp = READ_ONCE_NOCHECK(*(unsigned long *)(fp - 8)); + frame->pc = READ_ONCE_NOCHECK(*(unsigned long *)(fp - 4)); #endif return 0; diff -u linux-intel-iotg-5.15-5.15.0/arch/arm/mm/proc-v7-bugs.c linux-intel-iotg-5.15-5.15.0/arch/arm/mm/proc-v7-bugs.c --- linux-intel-iotg-5.15-5.15.0/arch/arm/mm/proc-v7-bugs.c +++ linux-intel-iotg-5.15-5.15.0/arch/arm/mm/proc-v7-bugs.c @@ -288,6 +288,7 @@ { if (check_spectre_auxcr(this_cpu_ptr(&spectre_warned), BIT(0))) cpu_v7_spectre_v2_init(); + cpu_v7_spectre_bhb_init(); } void cpu_v7_bugs_init(void) diff -u linux-intel-iotg-5.15-5.15.0/arch/arm64/Kconfig linux-intel-iotg-5.15-5.15.0/arch/arm64/Kconfig --- linux-intel-iotg-5.15-5.15.0/arch/arm64/Kconfig +++ linux-intel-iotg-5.15-5.15.0/arch/arm64/Kconfig @@ -154,7 +154,6 @@ select HAVE_ARCH_KGDB select HAVE_ARCH_MMAP_RND_BITS select HAVE_ARCH_MMAP_RND_COMPAT_BITS if COMPAT - select HAVE_ARCH_PFN_VALID select HAVE_ARCH_PREL32_RELOCATIONS select HAVE_ARCH_RANDOMIZE_KSTACK_OFFSET select HAVE_ARCH_SECCOMP_FILTER diff -u linux-intel-iotg-5.15-5.15.0/arch/arm64/boot/dts/amlogic/meson-sm1-bananapi-m5.dts linux-intel-iotg-5.15-5.15.0/arch/arm64/boot/dts/amlogic/meson-sm1-bananapi-m5.dts --- linux-intel-iotg-5.15-5.15.0/arch/arm64/boot/dts/amlogic/meson-sm1-bananapi-m5.dts +++ linux-intel-iotg-5.15-5.15.0/arch/arm64/boot/dts/amlogic/meson-sm1-bananapi-m5.dts @@ -437,6 +437,7 @@ "", "eMMC_RST#", /* BOOT_12 */ "eMMC_DS", /* BOOT_13 */ + "", "", /* GPIOC */ "SD_D0_B", /* GPIOC_0 */ "SD_D1_B", /* GPIOC_1 */ diff -u linux-intel-iotg-5.15-5.15.0/arch/arm64/boot/dts/intel/socfpga_agilex.dtsi linux-intel-iotg-5.15-5.15.0/arch/arm64/boot/dts/intel/socfpga_agilex.dtsi --- linux-intel-iotg-5.15-5.15.0/arch/arm64/boot/dts/intel/socfpga_agilex.dtsi +++ linux-intel-iotg-5.15-5.15.0/arch/arm64/boot/dts/intel/socfpga_agilex.dtsi @@ -628,7 +628,7 @@ }; qspi: spi@ff8d2000 { - compatible = "cdns,qspi-nor"; + compatible = "intel,socfpga-qspi", "cdns,qspi-nor"; #address-cells = <1>; #size-cells = <0>; reg = <0xff8d2000 0x100>, diff -u linux-intel-iotg-5.15-5.15.0/arch/arm64/boot/dts/qcom/ipq8074.dtsi linux-intel-iotg-5.15-5.15.0/arch/arm64/boot/dts/qcom/ipq8074.dtsi --- linux-intel-iotg-5.15-5.15.0/arch/arm64/boot/dts/qcom/ipq8074.dtsi +++ linux-intel-iotg-5.15-5.15.0/arch/arm64/boot/dts/qcom/ipq8074.dtsi @@ -13,7 +13,7 @@ clocks { sleep_clk: sleep_clk { compatible = "fixed-clock"; - clock-frequency = <32000>; + clock-frequency = <32768>; #clock-cells = <0>; }; diff -u linux-intel-iotg-5.15-5.15.0/arch/arm64/boot/dts/qcom/msm8994.dtsi linux-intel-iotg-5.15-5.15.0/arch/arm64/boot/dts/qcom/msm8994.dtsi --- linux-intel-iotg-5.15-5.15.0/arch/arm64/boot/dts/qcom/msm8994.dtsi +++ linux-intel-iotg-5.15-5.15.0/arch/arm64/boot/dts/qcom/msm8994.dtsi @@ -183,8 +183,8 @@ no-map; }; - cont_splash_mem: memory@3800000 { - reg = <0 0x03800000 0 0x2400000>; + cont_splash_mem: memory@3401000 { + reg = <0 0x03401000 0 0x2200000>; no-map; }; @@ -498,7 +498,7 @@ #dma-cells = <1>; qcom,ee = <0>; qcom,controlled-remotely; - num-channels = <18>; + num-channels = <24>; qcom,num-ees = <4>; }; @@ -634,7 +634,7 @@ #dma-cells = <1>; qcom,ee = <0>; qcom,controlled-remotely; - num-channels = <18>; + num-channels = <24>; qcom,num-ees = <4>; }; diff -u linux-intel-iotg-5.15-5.15.0/arch/arm64/boot/dts/qcom/sc7180.dtsi linux-intel-iotg-5.15-5.15.0/arch/arm64/boot/dts/qcom/sc7180.dtsi --- linux-intel-iotg-5.15-5.15.0/arch/arm64/boot/dts/qcom/sc7180.dtsi +++ linux-intel-iotg-5.15-5.15.0/arch/arm64/boot/dts/qcom/sc7180.dtsi @@ -1460,6 +1460,8 @@ "imem", "config"; + qcom,qmp = <&aoss_qmp>; + qcom,smem-states = <&ipa_smp2p_out 0>, <&ipa_smp2p_out 1>; qcom,smem-state-names = "ipa-clock-enabled-valid", diff -u linux-intel-iotg-5.15-5.15.0/arch/arm64/boot/dts/qcom/sc7280.dtsi linux-intel-iotg-5.15-5.15.0/arch/arm64/boot/dts/qcom/sc7280.dtsi --- linux-intel-iotg-5.15-5.15.0/arch/arm64/boot/dts/qcom/sc7280.dtsi +++ linux-intel-iotg-5.15-5.15.0/arch/arm64/boot/dts/qcom/sc7280.dtsi @@ -615,6 +615,8 @@ interconnect-names = "memory", "config"; + qcom,qmp = <&aoss_qmp>; + qcom,smem-states = <&ipa_smp2p_out 0>, <&ipa_smp2p_out 1>; qcom,smem-state-names = "ipa-clock-enabled-valid", diff -u linux-intel-iotg-5.15-5.15.0/arch/arm64/boot/dts/qcom/sm8350.dtsi linux-intel-iotg-5.15-5.15.0/arch/arm64/boot/dts/qcom/sm8350.dtsi --- linux-intel-iotg-5.15-5.15.0/arch/arm64/boot/dts/qcom/sm8350.dtsi +++ linux-intel-iotg-5.15-5.15.0/arch/arm64/boot/dts/qcom/sm8350.dtsi @@ -736,6 +736,8 @@ interconnect-names = "memory", "config"; + qcom,qmp = <&aoss_qmp>; + qcom,smem-states = <&ipa_smp2p_out 0>, <&ipa_smp2p_out 1>; qcom,smem-state-names = "ipa-clock-enabled-valid", diff -u linux-intel-iotg-5.15-5.15.0/arch/arm64/boot/dts/rockchip/rk3399.dtsi linux-intel-iotg-5.15-5.15.0/arch/arm64/boot/dts/rockchip/rk3399.dtsi --- linux-intel-iotg-5.15-5.15.0/arch/arm64/boot/dts/rockchip/rk3399.dtsi +++ linux-intel-iotg-5.15-5.15.0/arch/arm64/boot/dts/rockchip/rk3399.dtsi @@ -1477,6 +1477,7 @@ reg = <0xf780 0x24>; clocks = <&sdhci>; clock-names = "emmcclk"; + drive-impedance-ohm = <50>; #phy-cells = <0>; status = "disabled"; }; @@ -1487,7 +1488,6 @@ clock-names = "refclk"; #phy-cells = <1>; resets = <&cru SRST_PCIEPHY>; - drive-impedance-ohm = <50>; reset-names = "phy"; status = "disabled"; }; diff -u linux-intel-iotg-5.15-5.15.0/arch/arm64/include/asm/pgtable.h linux-intel-iotg-5.15-5.15.0/arch/arm64/include/asm/pgtable.h --- linux-intel-iotg-5.15-5.15.0/arch/arm64/include/asm/pgtable.h +++ linux-intel-iotg-5.15-5.15.0/arch/arm64/include/asm/pgtable.h @@ -535,7 +535,7 @@ PMD_TYPE_TABLE) #define pmd_sect(pmd) ((pmd_val(pmd) & PMD_TYPE_MASK) == \ PMD_TYPE_SECT) -#define pmd_leaf(pmd) pmd_sect(pmd) +#define pmd_leaf(pmd) (pmd_present(pmd) && !pmd_table(pmd)) #define pmd_bad(pmd) (!pmd_table(pmd)) #define pmd_leaf_size(pmd) (pmd_cont(pmd) ? CONT_PMD_SIZE : PMD_SIZE) @@ -625,7 +625,7 @@ #define pud_none(pud) (!pud_val(pud)) #define pud_bad(pud) (!pud_table(pud)) #define pud_present(pud) pte_present(pud_pte(pud)) -#define pud_leaf(pud) pud_sect(pud) +#define pud_leaf(pud) (pud_present(pud) && !pud_table(pud)) #define pud_valid(pud) pte_valid(pud_pte(pud)) static inline void set_pud(pud_t *pudp, pud_t pud) diff -u linux-intel-iotg-5.15-5.15.0/arch/arm64/kernel/cpu_errata.c linux-intel-iotg-5.15-5.15.0/arch/arm64/kernel/cpu_errata.c --- linux-intel-iotg-5.15-5.15.0/arch/arm64/kernel/cpu_errata.c +++ linux-intel-iotg-5.15-5.15.0/arch/arm64/kernel/cpu_errata.c @@ -208,6 +208,8 @@ #ifdef CONFIG_ARM64_ERRATUM_1286807 { ERRATA_MIDR_RANGE(MIDR_CORTEX_A76, 0, 0, 3, 0), + /* Kryo4xx Gold (rcpe to rfpe) => (r0p0 to r3p0) */ + ERRATA_MIDR_RANGE(MIDR_QCOM_KRYO_4XX_GOLD, 0xc, 0xe, 0xf, 0xe), }, #endif {}, diff -u linux-intel-iotg-5.15-5.15.0/arch/arm64/kernel/signal.c linux-intel-iotg-5.15-5.15.0/arch/arm64/kernel/signal.c --- linux-intel-iotg-5.15-5.15.0/arch/arm64/kernel/signal.c +++ linux-intel-iotg-5.15-5.15.0/arch/arm64/kernel/signal.c @@ -1012,6 +1012,7 @@ static_assert(offsetof(siginfo_t, si_pkey) == 0x20); static_assert(offsetof(siginfo_t, si_perf_data) == 0x18); static_assert(offsetof(siginfo_t, si_perf_type) == 0x20); +static_assert(offsetof(siginfo_t, si_perf_flags) == 0x24); static_assert(offsetof(siginfo_t, si_band) == 0x10); static_assert(offsetof(siginfo_t, si_fd) == 0x18); static_assert(offsetof(siginfo_t, si_call_addr) == 0x10); diff -u linux-intel-iotg-5.15-5.15.0/arch/arm64/kernel/vdso32/Makefile linux-intel-iotg-5.15-5.15.0/arch/arm64/kernel/vdso32/Makefile --- linux-intel-iotg-5.15-5.15.0/arch/arm64/kernel/vdso32/Makefile +++ linux-intel-iotg-5.15-5.15.0/arch/arm64/kernel/vdso32/Makefile @@ -144,9 +144,6 @@ targets += vdso.lds CPPFLAGS_vdso.lds += -P -C -U$(ARCH) -# Force dependency (vdso.s includes vdso.so through incbin) -$(obj)/vdso.o: $(obj)/vdso.so - include/generated/vdso32-offsets.h: $(obj)/vdso.so.dbg FORCE $(call if_changed,vdsosym) diff -u linux-intel-iotg-5.15-5.15.0/arch/arm64/kvm/arm.c linux-intel-iotg-5.15-5.15.0/arch/arm64/kvm/arm.c --- linux-intel-iotg-5.15-5.15.0/arch/arm64/kvm/arm.c +++ linux-intel-iotg-5.15-5.15.0/arch/arm64/kvm/arm.c @@ -1458,7 +1458,8 @@ base = kern_hyp_va(kvm_ksym_ref(__bp_harden_hyp_vecs)); kvm_init_vector_slot(base, HYP_VECTOR_SPECTRE_DIRECT); - if (kvm_system_needs_idmapped_vectors() && !has_vhe()) { + if (kvm_system_needs_idmapped_vectors() && + !is_protected_kvm_enabled()) { err = create_hyp_exec_mappings(__pa_symbol(__bp_harden_hyp_vecs), __BP_HARDEN_HYP_VECS_SZ, &base); if (err) diff -u linux-intel-iotg-5.15-5.15.0/arch/arm64/mm/init.c linux-intel-iotg-5.15-5.15.0/arch/arm64/mm/init.c --- linux-intel-iotg-5.15-5.15.0/arch/arm64/mm/init.c +++ linux-intel-iotg-5.15-5.15.0/arch/arm64/mm/init.c @@ -184,43 +184,6 @@ free_area_init(max_zone_pfns); } -int pfn_valid(unsigned long pfn) -{ - phys_addr_t addr = PFN_PHYS(pfn); - struct mem_section *ms; - - /* - * Ensure the upper PAGE_SHIFT bits are clear in the - * pfn. Else it might lead to false positives when - * some of the upper bits are set, but the lower bits - * match a valid pfn. - */ - if (PHYS_PFN(addr) != pfn) - return 0; - - if (pfn_to_section_nr(pfn) >= NR_MEM_SECTIONS) - return 0; - - ms = __pfn_to_section(pfn); - if (!valid_section(ms)) - return 0; - - /* - * ZONE_DEVICE memory does not have the memblock entries. - * memblock_is_map_memory() check for ZONE_DEVICE based - * addresses will always fail. Even the normal hotplugged - * memory will never have MEMBLOCK_NOMAP flag set in their - * memblock entries. Skip memblock search for all non early - * memory sections covering all of hotplug memory including - * both normal and ZONE_DEVICE based. - */ - if (!early_section(ms)) - return pfn_section_valid(ms, pfn); - - return memblock_is_memory(addr); -} -EXPORT_SYMBOL(pfn_valid); - int pfn_is_map_memory(unsigned long pfn) { phys_addr_t addr = PFN_PHYS(pfn); diff -u linux-intel-iotg-5.15-5.15.0/arch/parisc/kernel/time.c linux-intel-iotg-5.15-5.15.0/arch/parisc/kernel/time.c --- linux-intel-iotg-5.15-5.15.0/arch/parisc/kernel/time.c +++ linux-intel-iotg-5.15-5.15.0/arch/parisc/kernel/time.c @@ -249,13 +249,9 @@ static int __init init_cr16_clocksource(void) { /* - * The cr16 interval timers are not syncronized across CPUs, even if - * they share the same socket. + * The cr16 interval timers are not synchronized across CPUs. */ if (num_online_cpus() > 1 && !running_on_qemu) { - /* mark sched_clock unstable */ - clear_sched_clock_stable(); - clocksource_cr16.name = "cr16_unstable"; clocksource_cr16.flags = CLOCK_SOURCE_UNSTABLE; clocksource_cr16.rating = 0; diff -u linux-intel-iotg-5.15-5.15.0/arch/powerpc/include/asm/page.h linux-intel-iotg-5.15-5.15.0/arch/powerpc/include/asm/page.h --- linux-intel-iotg-5.15-5.15.0/arch/powerpc/include/asm/page.h +++ linux-intel-iotg-5.15-5.15.0/arch/powerpc/include/asm/page.h @@ -216,6 +216,9 @@ #define __pa(x) ((phys_addr_t)(unsigned long)(x) - VIRT_PHYS_OFFSET) #else #ifdef CONFIG_PPC64 + +#define VIRTUAL_WARN_ON(x) WARN_ON(IS_ENABLED(CONFIG_DEBUG_VIRTUAL) && (x)) + /* * gcc miscompiles (unsigned long)(&static_var) - PAGE_OFFSET * with -mcmodel=medium, so we use & and | instead of - and + on 64-bit. @@ -223,13 +226,13 @@ */ #define __va(x) \ ({ \ - VIRTUAL_BUG_ON((unsigned long)(x) >= PAGE_OFFSET); \ + VIRTUAL_WARN_ON((unsigned long)(x) >= PAGE_OFFSET); \ (void *)(unsigned long)((phys_addr_t)(x) | PAGE_OFFSET); \ }) #define __pa(x) \ ({ \ - VIRTUAL_BUG_ON((unsigned long)(x) < PAGE_OFFSET); \ + VIRTUAL_WARN_ON((unsigned long)(x) < PAGE_OFFSET); \ (unsigned long)(x) & 0x0fffffffffffffffUL; \ }) diff -u linux-intel-iotg-5.15-5.15.0/arch/powerpc/kernel/fadump.c linux-intel-iotg-5.15-5.15.0/arch/powerpc/kernel/fadump.c --- linux-intel-iotg-5.15-5.15.0/arch/powerpc/kernel/fadump.c +++ linux-intel-iotg-5.15-5.15.0/arch/powerpc/kernel/fadump.c @@ -861,7 +861,6 @@ sizeof(struct fadump_memory_range)); return 0; } - static inline int fadump_add_mem_range(struct fadump_mrange_info *mrange_info, u64 base, u64 end) { @@ -880,7 +879,12 @@ start = mem_ranges[mrange_info->mem_range_cnt - 1].base; size = mem_ranges[mrange_info->mem_range_cnt - 1].size; - if ((start + size) == base) + /* + * Boot memory area needs separate PT_LOAD segment(s) as it + * is moved to a different location at the time of crash. + * So, fold only if the region is not boot memory area. + */ + if ((start + size) == base && start >= fw_dump.boot_mem_top) is_adjacent = true; } if (!is_adjacent) { diff -u linux-intel-iotg-5.15-5.15.0/arch/powerpc/kernel/kvm.c linux-intel-iotg-5.15-5.15.0/arch/powerpc/kernel/kvm.c --- linux-intel-iotg-5.15-5.15.0/arch/powerpc/kernel/kvm.c +++ linux-intel-iotg-5.15-5.15.0/arch/powerpc/kernel/kvm.c @@ -669,7 +669,8 @@ on_each_cpu(kvm_map_magic_page, &features, 1); /* Quick self-test to see if the mapping works */ - if (fault_in_pages_readable((const char *)KVM_MAGIC_PAGE, sizeof(u32))) { + if (fault_in_readable((const char __user *)KVM_MAGIC_PAGE, + sizeof(u32))) { kvm_patching_worked = false; return; } diff -u linux-intel-iotg-5.15-5.15.0/arch/powerpc/kernel/rtas.c linux-intel-iotg-5.15-5.15.0/arch/powerpc/kernel/rtas.c --- linux-intel-iotg-5.15-5.15.0/arch/powerpc/kernel/rtas.c +++ linux-intel-iotg-5.15-5.15.0/arch/powerpc/kernel/rtas.c @@ -49,6 +49,15 @@ static inline void do_enter_rtas(unsigned long args) { + unsigned long msr; + + /* + * Make sure MSR[RI] is currently enabled as it will be forced later + * in enter_rtas. + */ + msr = mfmsr(); + BUG_ON(!(msr & MSR_RI)); + enter_rtas(args); srr_regs_clobbered(); /* rtas uses SRRs, invalidate */ diff -u linux-intel-iotg-5.15-5.15.0/arch/powerpc/kernel/signal_32.c linux-intel-iotg-5.15-5.15.0/arch/powerpc/kernel/signal_32.c --- linux-intel-iotg-5.15-5.15.0/arch/powerpc/kernel/signal_32.c +++ linux-intel-iotg-5.15-5.15.0/arch/powerpc/kernel/signal_32.c @@ -1048,7 +1048,7 @@ if (new_ctx == NULL) return 0; if (!access_ok(new_ctx, ctx_size) || - fault_in_pages_readable((u8 __user *)new_ctx, ctx_size)) + fault_in_readable((char __user *)new_ctx, ctx_size)) return -EFAULT; /* @@ -1239,7 +1239,7 @@ #endif if (!access_ok(ctx, sizeof(*ctx)) || - fault_in_pages_readable((u8 __user *)ctx, sizeof(*ctx))) + fault_in_readable((char __user *)ctx, sizeof(*ctx))) return -EFAULT; /* diff -u linux-intel-iotg-5.15-5.15.0/arch/powerpc/kernel/signal_64.c linux-intel-iotg-5.15-5.15.0/arch/powerpc/kernel/signal_64.c --- linux-intel-iotg-5.15-5.15.0/arch/powerpc/kernel/signal_64.c +++ linux-intel-iotg-5.15-5.15.0/arch/powerpc/kernel/signal_64.c @@ -688,7 +688,7 @@ if (new_ctx == NULL) return 0; if (!access_ok(new_ctx, ctx_size) || - fault_in_pages_readable((u8 __user *)new_ctx, ctx_size)) + fault_in_readable((char __user *)new_ctx, ctx_size)) return -EFAULT; /* diff -u linux-intel-iotg-5.15-5.15.0/arch/powerpc/kvm/book3s_hv.c linux-intel-iotg-5.15-5.15.0/arch/powerpc/kvm/book3s_hv.c --- linux-intel-iotg-5.15-5.15.0/arch/powerpc/kvm/book3s_hv.c +++ linux-intel-iotg-5.15-5.15.0/arch/powerpc/kvm/book3s_hv.c @@ -5235,6 +5235,10 @@ kvm->arch.host_lpcr = lpcr = mfspr(SPRN_LPCR); lpcr &= LPCR_PECE | LPCR_LPES; } else { + /* + * The L2 LPES mode will be set by the L0 according to whether + * or not it needs to take external interrupts in HV mode. + */ lpcr = 0; } lpcr |= (4UL << LPCR_DPFD_SH) | LPCR_HDICE | diff -u linux-intel-iotg-5.15-5.15.0/arch/powerpc/kvm/book3s_hv_nested.c linux-intel-iotg-5.15-5.15.0/arch/powerpc/kvm/book3s_hv_nested.c --- linux-intel-iotg-5.15-5.15.0/arch/powerpc/kvm/book3s_hv_nested.c +++ linux-intel-iotg-5.15-5.15.0/arch/powerpc/kvm/book3s_hv_nested.c @@ -261,8 +261,7 @@ /* * Don't let L1 change LPCR bits for the L2 except these: */ - mask = LPCR_DPFD | LPCR_ILE | LPCR_TC | LPCR_AIL | LPCR_LD | - LPCR_LPES | LPCR_MER; + mask = LPCR_DPFD | LPCR_ILE | LPCR_TC | LPCR_AIL | LPCR_LD | LPCR_MER; /* * Additional filtering is required depending on hardware diff -u linux-intel-iotg-5.15-5.15.0/arch/powerpc/perf/power10-pmu.c linux-intel-iotg-5.15-5.15.0/arch/powerpc/perf/power10-pmu.c --- linux-intel-iotg-5.15-5.15.0/arch/powerpc/perf/power10-pmu.c +++ linux-intel-iotg-5.15-5.15.0/arch/powerpc/perf/power10-pmu.c @@ -91,8 +91,8 @@ /* Table of alternatives, sorted by column 0 */ static const unsigned int power10_event_alternatives[][MAX_ALT] = { - { PM_CYC_ALT, PM_CYC }, { PM_INST_CMPL_ALT, PM_INST_CMPL }, + { PM_CYC_ALT, PM_CYC }, }; static int power10_get_alternatives(u64 event, unsigned int flags, u64 alt[]) diff -u linux-intel-iotg-5.15-5.15.0/arch/powerpc/sysdev/xive/spapr.c linux-intel-iotg-5.15-5.15.0/arch/powerpc/sysdev/xive/spapr.c --- linux-intel-iotg-5.15-5.15.0/arch/powerpc/sysdev/xive/spapr.c +++ linux-intel-iotg-5.15-5.15.0/arch/powerpc/sysdev/xive/spapr.c @@ -67,6 +67,17 @@ return 0; } +static void xive_irq_bitmap_remove_all(void) +{ + struct xive_irq_bitmap *xibm, *tmp; + + list_for_each_entry_safe(xibm, tmp, &xive_irq_bitmaps, list) { + list_del(&xibm->list); + kfree(xibm->bitmap); + kfree(xibm); + } +} + static int __xive_irq_bitmap_alloc(struct xive_irq_bitmap *xibm) { int irq; @@ -803,7 +814,7 @@ u32 val; u32 len; const __be32 *reg; - int i; + int i, err; if (xive_spapr_disabled()) return false; @@ -819,32 +830,35 @@ /* Resource 1 is the OS ring TIMA */ if (of_address_to_resource(np, 1, &r)) { pr_err("Failed to get thread mgmnt area resource\n"); - return false; + goto err_put; } tima = ioremap(r.start, resource_size(&r)); if (!tima) { pr_err("Failed to map thread mgmnt area\n"); - return false; + goto err_put; } if (!xive_get_max_prio(&max_prio)) - return false; + goto err_unmap; /* Feed the IRQ number allocator with the ranges given in the DT */ reg = of_get_property(np, "ibm,xive-lisn-ranges", &len); if (!reg) { pr_err("Failed to read 'ibm,xive-lisn-ranges' property\n"); - return false; + goto err_unmap; } if (len % (2 * sizeof(u32)) != 0) { pr_err("invalid 'ibm,xive-lisn-ranges' property\n"); - return false; + goto err_unmap; } - for (i = 0; i < len / (2 * sizeof(u32)); i++, reg += 2) - xive_irq_bitmap_add(be32_to_cpu(reg[0]), - be32_to_cpu(reg[1])); + for (i = 0; i < len / (2 * sizeof(u32)); i++, reg += 2) { + err = xive_irq_bitmap_add(be32_to_cpu(reg[0]), + be32_to_cpu(reg[1])); + if (err < 0) + goto err_mem_free; + } /* Iterate the EQ sizes and pick one */ of_property_for_each_u32(np, "ibm,xive-eq-sizes", prop, reg, val) { @@ -855,10 +869,19 @@ /* Initialize XIVE core with our backend */ if (!xive_core_init(np, &xive_spapr_ops, tima, TM_QW1_OS, max_prio)) - return false; + goto err_mem_free; + of_node_put(np); pr_info("Using %dkB queues\n", 1 << (xive_queue_shift - 10)); return true; + +err_mem_free: + xive_irq_bitmap_remove_all(); +err_unmap: + iounmap(tima); +err_put: + of_node_put(np); + return false; } machine_arch_initcall(pseries, xive_core_debug_init); diff -u linux-intel-iotg-5.15-5.15.0/arch/riscv/kernel/setup.c linux-intel-iotg-5.15-5.15.0/arch/riscv/kernel/setup.c --- linux-intel-iotg-5.15-5.15.0/arch/riscv/kernel/setup.c +++ linux-intel-iotg-5.15-5.15.0/arch/riscv/kernel/setup.c @@ -199,7 +199,7 @@ res = &mem_res[res_idx--]; res->name = "Reserved"; - res->flags = IORESOURCE_MEM | IORESOURCE_BUSY; + res->flags = IORESOURCE_MEM | IORESOURCE_EXCLUSIVE; res->start = __pfn_to_phys(memblock_region_reserved_base_pfn(region)); res->end = __pfn_to_phys(memblock_region_reserved_end_pfn(region)) - 1; @@ -224,7 +224,7 @@ if (unlikely(memblock_is_nomap(region))) { res->name = "Reserved"; - res->flags = IORESOURCE_MEM | IORESOURCE_BUSY; + res->flags = IORESOURCE_MEM | IORESOURCE_EXCLUSIVE; } else { res->name = "System RAM"; res->flags = IORESOURCE_SYSTEM_RAM | IORESOURCE_BUSY; diff -u linux-intel-iotg-5.15-5.15.0/arch/riscv/mm/init.c linux-intel-iotg-5.15-5.15.0/arch/riscv/mm/init.c --- linux-intel-iotg-5.15-5.15.0/arch/riscv/mm/init.c +++ linux-intel-iotg-5.15-5.15.0/arch/riscv/mm/init.c @@ -218,8 +218,25 @@ * early_init_fdt_reserve_self() since __pa() does * not work for DTB pointers that are fixmap addresses */ - if (!IS_ENABLED(CONFIG_BUILTIN_DTB)) - memblock_reserve(dtb_early_pa, fdt_totalsize(dtb_early_va)); + if (!IS_ENABLED(CONFIG_BUILTIN_DTB)) { + /* + * In case the DTB is not located in a memory region we won't + * be able to locate it later on via the linear mapping and + * get a segfault when accessing it via __va(dtb_early_pa). + * To avoid this situation copy DTB to a memory region. + * Note that memblock_phys_alloc will also reserve DTB region. + */ + if (!memblock_is_memory(dtb_early_pa)) { + size_t fdt_size = fdt_totalsize(dtb_early_va); + phys_addr_t new_dtb_early_pa = memblock_phys_alloc(fdt_size, PAGE_SIZE); + void *new_dtb_early_va = early_memremap(new_dtb_early_pa, fdt_size); + + memcpy(new_dtb_early_va, dtb_early_va, fdt_size); + early_memunmap(new_dtb_early_va, fdt_size); + _dtb_early_pa = new_dtb_early_pa; + } else + memblock_reserve(dtb_early_pa, fdt_totalsize(dtb_early_va)); + } early_init_fdt_scan_reserved_mem(); dma_contiguous_reserve(dma32_phys_limit); diff -u linux-intel-iotg-5.15-5.15.0/arch/s390/Makefile linux-intel-iotg-5.15-5.15.0/arch/s390/Makefile --- linux-intel-iotg-5.15-5.15.0/arch/s390/Makefile +++ linux-intel-iotg-5.15-5.15.0/arch/s390/Makefile @@ -32,6 +32,16 @@ KBUILD_CFLAGS_DECOMPRESSOR += $(call cc-disable-warning, address-of-packed-member) KBUILD_CFLAGS_DECOMPRESSOR += $(if $(CONFIG_DEBUG_INFO),-g) KBUILD_CFLAGS_DECOMPRESSOR += $(if $(CONFIG_DEBUG_INFO_DWARF4), $(call cc-option, -gdwarf-4,)) + +ifdef CONFIG_CC_IS_GCC + ifeq ($(call cc-ifversion, -ge, 1200, y), y) + ifeq ($(call cc-ifversion, -lt, 1300, y), y) + KBUILD_CFLAGS += $(call cc-disable-warning, array-bounds) + KBUILD_CFLAGS_DECOMPRESSOR += $(call cc-disable-warning, array-bounds) + endif + endif +endif + UTS_MACHINE := s390x STACK_SIZE := $(if $(CONFIG_KASAN),65536,16384) CHECKFLAGS += -D__s390__ -D__s390x__ diff -u linux-intel-iotg-5.15-5.15.0/arch/s390/include/asm/kexec.h linux-intel-iotg-5.15-5.15.0/arch/s390/include/asm/kexec.h --- linux-intel-iotg-5.15-5.15.0/arch/s390/include/asm/kexec.h +++ linux-intel-iotg-5.15-5.15.0/arch/s390/include/asm/kexec.h @@ -9,6 +9,8 @@ #ifndef _S390_KEXEC_H #define _S390_KEXEC_H +#include + #include #include #include @@ -85,2 +87,10 @@ +#ifdef CONFIG_KEXEC_FILE +struct purgatory_info; +int arch_kexec_apply_relocations_add(struct purgatory_info *pi, + Elf_Shdr *section, + const Elf_Shdr *relsec, + const Elf_Shdr *symtab); +#define arch_kexec_apply_relocations_add arch_kexec_apply_relocations_add +#endif #endif /*_S390_KEXEC_H */ diff -u linux-intel-iotg-5.15-5.15.0/arch/s390/include/asm/uv.h linux-intel-iotg-5.15-5.15.0/arch/s390/include/asm/uv.h --- linux-intel-iotg-5.15-5.15.0/arch/s390/include/asm/uv.h +++ linux-intel-iotg-5.15-5.15.0/arch/s390/include/asm/uv.h @@ -2,7 +2,7 @@ /* * Ultravisor Interfaces * - * Copyright IBM Corp. 2019 + * Copyright IBM Corp. 2019, 2022 * * Author(s): * Vasily Gorbik @@ -18,6 +18,11 @@ #include #include +#define UVC_CC_OK 0 +#define UVC_CC_ERROR 1 +#define UVC_CC_BUSY 2 +#define UVC_CC_PARTIAL 3 + #define UVC_RC_EXECUTED 0x0001 #define UVC_RC_INV_CMD 0x0002 #define UVC_RC_INV_STATE 0x0003 @@ -47,6 +52,7 @@ #define UVC_CMD_UNPIN_PAGE_SHARED 0x0342 #define UVC_CMD_SET_SHARED_ACCESS 0x1000 #define UVC_CMD_REMOVE_SHARED_ACCESS 0x1001 +#define UVC_CMD_RETR_ATTEST 0x1020 /* Bits in installed uv calls */ enum uv_cmds_inst { @@ -71,6 +77,7 @@ BIT_UVC_CMD_UNSHARE_ALL = 20, BIT_UVC_CMD_PIN_PAGE_SHARED = 21, BIT_UVC_CMD_UNPIN_PAGE_SHARED = 22, + BIT_UVC_CMD_RETR_ATTEST = 28, }; enum uv_feat_ind { @@ -214,6 +221,25 @@ u64 reserved28; } __packed __aligned(8); +/* Retrieve Attestation Measurement */ +struct uv_cb_attest { + struct uv_cb_header header; /* 0x0000 */ + u64 reserved08[2]; /* 0x0008 */ + u64 arcb_addr; /* 0x0018 */ + u64 cont_token; /* 0x0020 */ + u8 reserved28[6]; /* 0x0028 */ + u16 user_data_len; /* 0x002e */ + u8 user_data[256]; /* 0x0030 */ + u32 reserved130[3]; /* 0x0130 */ + u32 meas_len; /* 0x013c */ + u64 meas_addr; /* 0x0140 */ + u8 config_uid[16]; /* 0x0148 */ + u32 reserved158; /* 0x0158 */ + u32 add_data_len; /* 0x015c */ + u64 add_data_addr; /* 0x0160 */ + u64 reserved168[4]; /* 0x0168 */ +} __packed __aligned(8); + static inline int __uv_call(unsigned long r1, unsigned long r2) { int cc; diff -u linux-intel-iotg-5.15-5.15.0/arch/s390/kernel/perf_cpum_cf_events.c linux-intel-iotg-5.15-5.15.0/arch/s390/kernel/perf_cpum_cf_events.c --- linux-intel-iotg-5.15-5.15.0/arch/s390/kernel/perf_cpum_cf_events.c +++ linux-intel-iotg-5.15-5.15.0/arch/s390/kernel/perf_cpum_cf_events.c @@ -295,6 +295,76 @@ CPUMF_EVENT_ATTR(cf_z15, DFLT_CCFINISH, 0x00109); CPUMF_EVENT_ATTR(cf_z15, MT_DIAG_CYCLES_ONE_THR_ACTIVE, 0x01c0); CPUMF_EVENT_ATTR(cf_z15, MT_DIAG_CYCLES_TWO_THR_ACTIVE, 0x01c1); +CPUMF_EVENT_ATTR(cf_z16, L1D_RO_EXCL_WRITES, 0x0080); +CPUMF_EVENT_ATTR(cf_z16, DTLB2_WRITES, 0x0081); +CPUMF_EVENT_ATTR(cf_z16, DTLB2_MISSES, 0x0082); +CPUMF_EVENT_ATTR(cf_z16, CRSTE_1MB_WRITES, 0x0083); +CPUMF_EVENT_ATTR(cf_z16, DTLB2_GPAGE_WRITES, 0x0084); +CPUMF_EVENT_ATTR(cf_z16, ITLB2_WRITES, 0x0086); +CPUMF_EVENT_ATTR(cf_z16, ITLB2_MISSES, 0x0087); +CPUMF_EVENT_ATTR(cf_z16, TLB2_PTE_WRITES, 0x0089); +CPUMF_EVENT_ATTR(cf_z16, TLB2_CRSTE_WRITES, 0x008a); +CPUMF_EVENT_ATTR(cf_z16, TLB2_ENGINES_BUSY, 0x008b); +CPUMF_EVENT_ATTR(cf_z16, TX_C_TEND, 0x008c); +CPUMF_EVENT_ATTR(cf_z16, TX_NC_TEND, 0x008d); +CPUMF_EVENT_ATTR(cf_z16, L1C_TLB2_MISSES, 0x008f); +CPUMF_EVENT_ATTR(cf_z16, DCW_REQ, 0x0091); +CPUMF_EVENT_ATTR(cf_z16, DCW_REQ_IV, 0x0092); +CPUMF_EVENT_ATTR(cf_z16, DCW_REQ_CHIP_HIT, 0x0093); +CPUMF_EVENT_ATTR(cf_z16, DCW_REQ_DRAWER_HIT, 0x0094); +CPUMF_EVENT_ATTR(cf_z16, DCW_ON_CHIP, 0x0095); +CPUMF_EVENT_ATTR(cf_z16, DCW_ON_CHIP_IV, 0x0096); +CPUMF_EVENT_ATTR(cf_z16, DCW_ON_CHIP_CHIP_HIT, 0x0097); +CPUMF_EVENT_ATTR(cf_z16, DCW_ON_CHIP_DRAWER_HIT, 0x0098); +CPUMF_EVENT_ATTR(cf_z16, DCW_ON_MODULE, 0x0099); +CPUMF_EVENT_ATTR(cf_z16, DCW_ON_DRAWER, 0x009a); +CPUMF_EVENT_ATTR(cf_z16, DCW_OFF_DRAWER, 0x009b); +CPUMF_EVENT_ATTR(cf_z16, DCW_ON_CHIP_MEMORY, 0x009c); +CPUMF_EVENT_ATTR(cf_z16, DCW_ON_MODULE_MEMORY, 0x009d); +CPUMF_EVENT_ATTR(cf_z16, DCW_ON_DRAWER_MEMORY, 0x009e); +CPUMF_EVENT_ATTR(cf_z16, DCW_OFF_DRAWER_MEMORY, 0x009f); +CPUMF_EVENT_ATTR(cf_z16, IDCW_ON_MODULE_IV, 0x00a0); +CPUMF_EVENT_ATTR(cf_z16, IDCW_ON_MODULE_CHIP_HIT, 0x00a1); +CPUMF_EVENT_ATTR(cf_z16, IDCW_ON_MODULE_DRAWER_HIT, 0x00a2); +CPUMF_EVENT_ATTR(cf_z16, IDCW_ON_DRAWER_IV, 0x00a3); +CPUMF_EVENT_ATTR(cf_z16, IDCW_ON_DRAWER_CHIP_HIT, 0x00a4); +CPUMF_EVENT_ATTR(cf_z16, IDCW_ON_DRAWER_DRAWER_HIT, 0x00a5); +CPUMF_EVENT_ATTR(cf_z16, IDCW_OFF_DRAWER_IV, 0x00a6); +CPUMF_EVENT_ATTR(cf_z16, IDCW_OFF_DRAWER_CHIP_HIT, 0x00a7); +CPUMF_EVENT_ATTR(cf_z16, IDCW_OFF_DRAWER_DRAWER_HIT, 0x00a8); +CPUMF_EVENT_ATTR(cf_z16, ICW_REQ, 0x00a9); +CPUMF_EVENT_ATTR(cf_z16, ICW_REQ_IV, 0x00aa); +CPUMF_EVENT_ATTR(cf_z16, ICW_REQ_CHIP_HIT, 0x00ab); +CPUMF_EVENT_ATTR(cf_z16, ICW_REQ_DRAWER_HIT, 0x00ac); +CPUMF_EVENT_ATTR(cf_z16, ICW_ON_CHIP, 0x00ad); +CPUMF_EVENT_ATTR(cf_z16, ICW_ON_CHIP_IV, 0x00ae); +CPUMF_EVENT_ATTR(cf_z16, ICW_ON_CHIP_CHIP_HIT, 0x00af); +CPUMF_EVENT_ATTR(cf_z16, ICW_ON_CHIP_DRAWER_HIT, 0x00b0); +CPUMF_EVENT_ATTR(cf_z16, ICW_ON_MODULE, 0x00b1); +CPUMF_EVENT_ATTR(cf_z16, ICW_ON_DRAWER, 0x00b2); +CPUMF_EVENT_ATTR(cf_z16, ICW_OFF_DRAWER, 0x00b3); +CPUMF_EVENT_ATTR(cf_z16, ICW_ON_CHIP_MEMORY, 0x00b4); +CPUMF_EVENT_ATTR(cf_z16, ICW_ON_MODULE_MEMORY, 0x00b5); +CPUMF_EVENT_ATTR(cf_z16, ICW_ON_DRAWER_MEMORY, 0x00b6); +CPUMF_EVENT_ATTR(cf_z16, ICW_OFF_DRAWER_MEMORY, 0x00b7); +CPUMF_EVENT_ATTR(cf_z16, BCD_DFP_EXECUTION_SLOTS, 0x00e0); +CPUMF_EVENT_ATTR(cf_z16, VX_BCD_EXECUTION_SLOTS, 0x00e1); +CPUMF_EVENT_ATTR(cf_z16, DECIMAL_INSTRUCTIONS, 0x00e2); +CPUMF_EVENT_ATTR(cf_z16, LAST_HOST_TRANSLATIONS, 0x00e8); +CPUMF_EVENT_ATTR(cf_z16, TX_NC_TABORT, 0x00f4); +CPUMF_EVENT_ATTR(cf_z16, TX_C_TABORT_NO_SPECIAL, 0x00f5); +CPUMF_EVENT_ATTR(cf_z16, TX_C_TABORT_SPECIAL, 0x00f6); +CPUMF_EVENT_ATTR(cf_z16, DFLT_ACCESS, 0x00f8); +CPUMF_EVENT_ATTR(cf_z16, DFLT_CYCLES, 0x00fd); +CPUMF_EVENT_ATTR(cf_z16, SORTL, 0x0100); +CPUMF_EVENT_ATTR(cf_z16, DFLT_CC, 0x0109); +CPUMF_EVENT_ATTR(cf_z16, DFLT_CCFINISH, 0x010a); +CPUMF_EVENT_ATTR(cf_z16, NNPA_INVOCATIONS, 0x010b); +CPUMF_EVENT_ATTR(cf_z16, NNPA_COMPLETIONS, 0x010c); +CPUMF_EVENT_ATTR(cf_z16, NNPA_WAIT_LOCK, 0x010d); +CPUMF_EVENT_ATTR(cf_z16, NNPA_HOLD_LOCK, 0x010e); +CPUMF_EVENT_ATTR(cf_z16, MT_DIAG_CYCLES_ONE_THR_ACTIVE, 0x01c0); +CPUMF_EVENT_ATTR(cf_z16, MT_DIAG_CYCLES_TWO_THR_ACTIVE, 0x01c1); static struct attribute *cpumcf_fvn1_pmu_event_attr[] __initdata = { CPUMF_EVENT_PTR(cf_fvn1, CPU_CYCLES), @@ -635,6 +705,80 @@ NULL, }; +static struct attribute *cpumcf_z16_pmu_event_attr[] __initdata = { + CPUMF_EVENT_PTR(cf_z16, L1D_RO_EXCL_WRITES), + CPUMF_EVENT_PTR(cf_z16, DTLB2_WRITES), + CPUMF_EVENT_PTR(cf_z16, DTLB2_MISSES), + CPUMF_EVENT_PTR(cf_z16, CRSTE_1MB_WRITES), + CPUMF_EVENT_PTR(cf_z16, DTLB2_GPAGE_WRITES), + CPUMF_EVENT_PTR(cf_z16, ITLB2_WRITES), + CPUMF_EVENT_PTR(cf_z16, ITLB2_MISSES), + CPUMF_EVENT_PTR(cf_z16, TLB2_PTE_WRITES), + CPUMF_EVENT_PTR(cf_z16, TLB2_CRSTE_WRITES), + CPUMF_EVENT_PTR(cf_z16, TLB2_ENGINES_BUSY), + CPUMF_EVENT_PTR(cf_z16, TX_C_TEND), + CPUMF_EVENT_PTR(cf_z16, TX_NC_TEND), + CPUMF_EVENT_PTR(cf_z16, L1C_TLB2_MISSES), + CPUMF_EVENT_PTR(cf_z16, DCW_REQ), + CPUMF_EVENT_PTR(cf_z16, DCW_REQ_IV), + CPUMF_EVENT_PTR(cf_z16, DCW_REQ_CHIP_HIT), + CPUMF_EVENT_PTR(cf_z16, DCW_REQ_DRAWER_HIT), + CPUMF_EVENT_PTR(cf_z16, DCW_ON_CHIP), + CPUMF_EVENT_PTR(cf_z16, DCW_ON_CHIP_IV), + CPUMF_EVENT_PTR(cf_z16, DCW_ON_CHIP_CHIP_HIT), + CPUMF_EVENT_PTR(cf_z16, DCW_ON_CHIP_DRAWER_HIT), + CPUMF_EVENT_PTR(cf_z16, DCW_ON_MODULE), + CPUMF_EVENT_PTR(cf_z16, DCW_ON_DRAWER), + CPUMF_EVENT_PTR(cf_z16, DCW_OFF_DRAWER), + CPUMF_EVENT_PTR(cf_z16, DCW_ON_CHIP_MEMORY), + CPUMF_EVENT_PTR(cf_z16, DCW_ON_MODULE_MEMORY), + CPUMF_EVENT_PTR(cf_z16, DCW_ON_DRAWER_MEMORY), + CPUMF_EVENT_PTR(cf_z16, DCW_OFF_DRAWER_MEMORY), + CPUMF_EVENT_PTR(cf_z16, IDCW_ON_MODULE_IV), + CPUMF_EVENT_PTR(cf_z16, IDCW_ON_MODULE_CHIP_HIT), + CPUMF_EVENT_PTR(cf_z16, IDCW_ON_MODULE_DRAWER_HIT), + CPUMF_EVENT_PTR(cf_z16, IDCW_ON_DRAWER_IV), + CPUMF_EVENT_PTR(cf_z16, IDCW_ON_DRAWER_CHIP_HIT), + CPUMF_EVENT_PTR(cf_z16, IDCW_ON_DRAWER_DRAWER_HIT), + CPUMF_EVENT_PTR(cf_z16, IDCW_OFF_DRAWER_IV), + CPUMF_EVENT_PTR(cf_z16, IDCW_OFF_DRAWER_CHIP_HIT), + CPUMF_EVENT_PTR(cf_z16, IDCW_OFF_DRAWER_DRAWER_HIT), + CPUMF_EVENT_PTR(cf_z16, ICW_REQ), + CPUMF_EVENT_PTR(cf_z16, ICW_REQ_IV), + CPUMF_EVENT_PTR(cf_z16, ICW_REQ_CHIP_HIT), + CPUMF_EVENT_PTR(cf_z16, ICW_REQ_DRAWER_HIT), + CPUMF_EVENT_PTR(cf_z16, ICW_ON_CHIP), + CPUMF_EVENT_PTR(cf_z16, ICW_ON_CHIP_IV), + CPUMF_EVENT_PTR(cf_z16, ICW_ON_CHIP_CHIP_HIT), + CPUMF_EVENT_PTR(cf_z16, ICW_ON_CHIP_DRAWER_HIT), + CPUMF_EVENT_PTR(cf_z16, ICW_ON_MODULE), + CPUMF_EVENT_PTR(cf_z16, ICW_ON_DRAWER), + CPUMF_EVENT_PTR(cf_z16, ICW_OFF_DRAWER), + CPUMF_EVENT_PTR(cf_z16, ICW_ON_CHIP_MEMORY), + CPUMF_EVENT_PTR(cf_z16, ICW_ON_MODULE_MEMORY), + CPUMF_EVENT_PTR(cf_z16, ICW_ON_DRAWER_MEMORY), + CPUMF_EVENT_PTR(cf_z16, ICW_OFF_DRAWER_MEMORY), + CPUMF_EVENT_PTR(cf_z16, BCD_DFP_EXECUTION_SLOTS), + CPUMF_EVENT_PTR(cf_z16, VX_BCD_EXECUTION_SLOTS), + CPUMF_EVENT_PTR(cf_z16, DECIMAL_INSTRUCTIONS), + CPUMF_EVENT_PTR(cf_z16, LAST_HOST_TRANSLATIONS), + CPUMF_EVENT_PTR(cf_z16, TX_NC_TABORT), + CPUMF_EVENT_PTR(cf_z16, TX_C_TABORT_NO_SPECIAL), + CPUMF_EVENT_PTR(cf_z16, TX_C_TABORT_SPECIAL), + CPUMF_EVENT_PTR(cf_z16, DFLT_ACCESS), + CPUMF_EVENT_PTR(cf_z16, DFLT_CYCLES), + CPUMF_EVENT_PTR(cf_z16, SORTL), + CPUMF_EVENT_PTR(cf_z16, DFLT_CC), + CPUMF_EVENT_PTR(cf_z16, DFLT_CCFINISH), + CPUMF_EVENT_PTR(cf_z16, NNPA_INVOCATIONS), + CPUMF_EVENT_PTR(cf_z16, NNPA_COMPLETIONS), + CPUMF_EVENT_PTR(cf_z16, NNPA_WAIT_LOCK), + CPUMF_EVENT_PTR(cf_z16, NNPA_HOLD_LOCK), + CPUMF_EVENT_PTR(cf_z16, MT_DIAG_CYCLES_ONE_THR_ACTIVE), + CPUMF_EVENT_PTR(cf_z16, MT_DIAG_CYCLES_TWO_THR_ACTIVE), + NULL, +}; + /* END: CPUM_CF COUNTER DEFINITIONS ===================================== */ static struct attribute_group cpumcf_pmu_events_group = { @@ -749,6 +893,10 @@ case 0x8562: model = cpumcf_z15_pmu_event_attr; break; + case 0x3931: + case 0x3932: + model = cpumcf_z16_pmu_event_attr; + break; default: model = none; break; diff -u linux-intel-iotg-5.15-5.15.0/arch/s390/kernel/traps.c linux-intel-iotg-5.15-5.15.0/arch/s390/kernel/traps.c --- linux-intel-iotg-5.15-5.15.0/arch/s390/kernel/traps.c +++ linux-intel-iotg-5.15-5.15.0/arch/s390/kernel/traps.c @@ -142,10 +142,10 @@ do_trap(regs, SIGFPE, si_code, "floating point exception"); } -static void translation_exception(struct pt_regs *regs) +static void translation_specification_exception(struct pt_regs *regs) { /* May never happen. */ - panic("Translation exception"); + panic("Translation-Specification Exception"); } static void illegal_op(struct pt_regs *regs) @@ -374,7 +374,7 @@ [0x0f] = hfp_divide_exception, [0x10] = do_dat_exception, [0x11] = do_dat_exception, - [0x12] = translation_exception, + [0x12] = translation_specification_exception, [0x13] = special_op_exception, [0x14] = default_trap_handler, [0x15] = operand_exception, diff -u linux-intel-iotg-5.15-5.15.0/arch/s390/kernel/uv.c linux-intel-iotg-5.15-5.15.0/arch/s390/kernel/uv.c --- linux-intel-iotg-5.15-5.15.0/arch/s390/kernel/uv.c +++ linux-intel-iotg-5.15-5.15.0/arch/s390/kernel/uv.c @@ -165,7 +165,7 @@ { pte_t entry = READ_ONCE(*ptep); struct page *page; - int expected, rc = 0; + int expected, cc = 0; if (!pte_present(entry)) return -ENXIO; @@ -181,12 +181,25 @@ if (!page_ref_freeze(page, expected)) return -EBUSY; set_bit(PG_arch_1, &page->flags); - rc = uv_call(0, (u64)uvcb); + /* + * If the UVC does not succeed or fail immediately, we don't want to + * loop for long, or we might get stall notifications. + * On the other hand, this is a complex scenario and we are holding a lot of + * locks, so we can't easily sleep and reschedule. We try only once, + * and if the UVC returned busy or partial completion, we return + * -EAGAIN and we let the callers deal with it. + */ + cc = __uv_call(0, (u64)uvcb); page_ref_unfreeze(page, expected); - /* Return -ENXIO if the page was not mapped, -EINVAL otherwise */ - if (rc) - rc = uvcb->rc == 0x10a ? -ENXIO : -EINVAL; - return rc; + /* + * Return -ENXIO if the page was not mapped, -EINVAL for other errors. + * If busy or partially completed, return -EAGAIN. + */ + if (cc == UVC_CC_OK) + return 0; + else if (cc == UVC_CC_BUSY || cc == UVC_CC_PARTIAL) + return -EAGAIN; + return uvcb->rc == 0x10a ? -ENXIO : -EINVAL; } /* @@ -239,6 +252,10 @@ mmap_read_unlock(gmap->mm); if (rc == -EAGAIN) { + /* + * If we are here because the UVC returned busy or partial + * completion, this is just a useless check, but it is safe. + */ wait_on_page_writeback(page); } else if (rc == -EBUSY) { /* diff -u linux-intel-iotg-5.15-5.15.0/arch/s390/kvm/intercept.c linux-intel-iotg-5.15-5.15.0/arch/s390/kvm/intercept.c --- linux-intel-iotg-5.15-5.15.0/arch/s390/kvm/intercept.c +++ linux-intel-iotg-5.15-5.15.0/arch/s390/kvm/intercept.c @@ -518,6 +518,11 @@ */ if (rc == -EINVAL) return 0; + /* + * If we got -EAGAIN here, we simply return it. It will eventually + * get propagated all the way to userspace, which should then try + * again. + */ return rc; } diff -u linux-intel-iotg-5.15-5.15.0/arch/s390/mm/gmap.c linux-intel-iotg-5.15-5.15.0/arch/s390/mm/gmap.c --- linux-intel-iotg-5.15-5.15.0/arch/s390/mm/gmap.c +++ linux-intel-iotg-5.15-5.15.0/arch/s390/mm/gmap.c @@ -1183,6 +1183,7 @@ static inline void gmap_insert_rmap(struct gmap *sg, unsigned long vmaddr, struct gmap_rmap *rmap) { + struct gmap_rmap *temp; void __rcu **slot; BUG_ON(!gmap_is_shadow(sg)); @@ -1190,6 +1191,12 @@ if (slot) { rmap->next = radix_tree_deref_slot_protected(slot, &sg->guest_table_lock); + for (temp = rmap->next; temp; temp = temp->next) { + if (temp->raddr == rmap->raddr) { + kfree(rmap); + return; + } + } radix_tree_replace_slot(&sg->host_to_rmap, slot, rmap); } else { rmap->next = NULL; @@ -2601,6 +2608,18 @@ return 0; } +/* + * Give a chance to schedule after setting a key to 256 pages. + * We only hold the mm lock, which is a rwsem and the kvm srcu. + * Both can sleep. + */ +static int __s390_enable_skey_pmd(pmd_t *pmd, unsigned long addr, + unsigned long next, struct mm_walk *walk) +{ + cond_resched(); + return 0; +} + static int __s390_enable_skey_hugetlb(pte_t *pte, unsigned long addr, unsigned long hmask, unsigned long next, struct mm_walk *walk) @@ -2623,12 +2642,14 @@ end = start + HPAGE_SIZE - 1; __storage_key_init_range(start, end); set_bit(PG_arch_1, &page->flags); + cond_resched(); return 0; } static const struct mm_walk_ops enable_skey_walk_ops = { .hugetlb_entry = __s390_enable_skey_hugetlb, .pte_entry = __s390_enable_skey_pte, + .pmd_entry = __s390_enable_skey_pmd, }; int s390_enable_skey(void) diff -u linux-intel-iotg-5.15-5.15.0/arch/s390/mm/pgtable.c linux-intel-iotg-5.15-5.15.0/arch/s390/mm/pgtable.c --- linux-intel-iotg-5.15-5.15.0/arch/s390/mm/pgtable.c +++ linux-intel-iotg-5.15-5.15.0/arch/s390/mm/pgtable.c @@ -748,7 +748,7 @@ pgste_val(pgste) |= PGSTE_GR_BIT | PGSTE_GC_BIT; ptev = pte_val(*ptep); if (!(ptev & _PAGE_INVALID) && (ptev & _PAGE_WRITE)) - page_set_storage_key(ptev & PAGE_MASK, PAGE_DEFAULT_KEY, 1); + page_set_storage_key(ptev & PAGE_MASK, PAGE_DEFAULT_KEY, 0); pgste_set_unlock(ptep, pgste); preempt_enable(); } diff -u linux-intel-iotg-5.15-5.15.0/arch/s390/pci/pci.c linux-intel-iotg-5.15-5.15.0/arch/s390/pci/pci.c --- linux-intel-iotg-5.15-5.15.0/arch/s390/pci/pci.c +++ linux-intel-iotg-5.15-5.15.0/arch/s390/pci/pci.c @@ -69,6 +69,7 @@ list_for_each_entry(tmp, &zpci_list, entry) { if (tmp->fid == fid) { zdev = tmp; + zpci_zdev_get(zdev); break; } } diff -u linux-intel-iotg-5.15-5.15.0/arch/s390/pci/pci_event.c linux-intel-iotg-5.15-5.15.0/arch/s390/pci/pci_event.c --- linux-intel-iotg-5.15-5.15.0/arch/s390/pci/pci_event.c +++ linux-intel-iotg-5.15-5.15.0/arch/s390/pci/pci_event.c @@ -269,7 +269,7 @@ pdev ? pci_name(pdev) : "n/a", ccdf->pec, ccdf->fid); if (!pdev) - return; + goto no_pdev; switch (ccdf->pec) { case 0x003a: /* Service Action or Error Recovery Successful */ @@ -286,6 +286,8 @@ break; } pci_dev_put(pdev); +no_pdev: + zpci_zdev_put(zdev); } void zpci_event_error(void *data) @@ -314,6 +316,7 @@ static void __zpci_event_availability(struct zpci_ccdf_avail *ccdf) { struct zpci_dev *zdev = get_zdev_by_fid(ccdf->fid); + bool existing_zdev = !!zdev; enum zpci_state state; zpci_dbg(3, "avl fid:%x, fh:%x, pec:%x\n", @@ -378,6 +381,8 @@ default: break; } + if (existing_zdev) + zpci_zdev_put(zdev); } void zpci_event_availability(void *data) diff -u linux-intel-iotg-5.15-5.15.0/arch/x86/Kconfig linux-intel-iotg-5.15-5.15.0/arch/x86/Kconfig --- linux-intel-iotg-5.15-5.15.0/arch/x86/Kconfig +++ linux-intel-iotg-5.15-5.15.0/arch/x86/Kconfig @@ -460,15 +460,6 @@ def_bool y depends on X86_GOLDFISH -config RETPOLINE - bool "Avoid speculative indirect branches in kernel" - default y - help - Compile kernel with the retpoline compiler options to guard against - kernel-to-user data leaks by avoiding speculative indirect - branches. Requires a compiler with -mindirect-branch=thunk-extern - support for full protection. The kernel may run slower. - config X86_CPU_RESCTRL bool "x86 CPU resource control support" depends on X86 && (CPU_SUP_INTEL || CPU_SUP_AMD) @@ -1312,7 +1303,7 @@ config MICROCODE_INTEL bool "Intel microcode loading support" - depends on MICROCODE + depends on CPU_SUP_INTEL && MICROCODE default MICROCODE help This options enables microcode patch loading support for Intel @@ -1324,7 +1315,7 @@ config MICROCODE_AMD bool "AMD microcode loading support" - depends on MICROCODE + depends on CPU_SUP_AMD && MICROCODE help If you select this option, microcode patch loading support for AMD processors will be enabled. @@ -2412,6 +2403,88 @@ endmenu +config CC_HAS_SLS + def_bool $(cc-option,-mharden-sls=all) + +config CC_HAS_RETURN_THUNK + def_bool $(cc-option,-mfunction-return=thunk-extern) + +menuconfig SPECULATION_MITIGATIONS + bool "Mitigations for speculative execution vulnerabilities" + default y + help + Say Y here to enable options which enable mitigations for + speculative execution hardware vulnerabilities. + + If you say N, all mitigations will be disabled. You really + should know what you are doing to say so. + +if SPECULATION_MITIGATIONS + +config PAGE_TABLE_ISOLATION + bool "Remove the kernel mapping in user mode" + default y + depends on (X86_64 || X86_PAE) + help + This feature reduces the number of hardware side channels by + ensuring that the majority of kernel addresses are not mapped + into userspace. + + See Documentation/x86/pti.rst for more details. + +config RETPOLINE + bool "Avoid speculative indirect branches in kernel" + default y + help + Compile kernel with the retpoline compiler options to guard against + kernel-to-user data leaks by avoiding speculative indirect + branches. Requires a compiler with -mindirect-branch=thunk-extern + support for full protection. The kernel may run slower. + +config RETHUNK + bool "Enable return-thunks" + depends on RETPOLINE && CC_HAS_RETURN_THUNK + default y + help + Compile the kernel with the return-thunks compiler option to guard + against kernel-to-user data leaks by avoiding return speculation. + Requires a compiler with -mfunction-return=thunk-extern + support for full protection. The kernel may run slower. + +config CPU_UNRET_ENTRY + bool "Enable UNRET on kernel entry" + depends on CPU_SUP_AMD && RETHUNK + default y + help + Compile the kernel with support for the retbleed=unret mitigation. + +config CPU_IBPB_ENTRY + bool "Enable IBPB on kernel entry" + depends on CPU_SUP_AMD + default y + help + Compile the kernel with support for the retbleed=ibpb mitigation. + +config CPU_IBRS_ENTRY + bool "Enable IBRS on kernel entry" + depends on CPU_SUP_INTEL + default y + help + Compile the kernel with support for the spectre_v2=ibrs mitigation. + This mitigates both spectre_v2 and retbleed at great cost to + performance. + +config SLS + bool "Mitigate Straight-Line-Speculation" + depends on CC_HAS_SLS && X86_64 + default n + help + Compile the kernel with straight-line-speculation options to guard + against straight line speculation. The kernel image might be slightly + larger. + +endif + config ARCH_HAS_ADD_PAGES def_bool y depends on X86_64 && ARCH_ENABLE_MEMORY_HOTPLUG diff -u linux-intel-iotg-5.15-5.15.0/arch/x86/entry/Makefile linux-intel-iotg-5.15-5.15.0/arch/x86/entry/Makefile --- linux-intel-iotg-5.15-5.15.0/arch/x86/entry/Makefile +++ linux-intel-iotg-5.15-5.15.0/arch/x86/entry/Makefile @@ -11,7 +11,7 @@ CFLAGS_common.o += -fno-stack-protector -obj-y := entry_$(BITS).o syscall_$(BITS).o +obj-y := entry.o entry_$(BITS).o syscall_$(BITS).o obj-y += common.o obj-y += vdso/ diff -u linux-intel-iotg-5.15-5.15.0/arch/x86/entry/entry_64.S linux-intel-iotg-5.15-5.15.0/arch/x86/entry/entry_64.S --- linux-intel-iotg-5.15-5.15.0/arch/x86/entry/entry_64.S +++ linux-intel-iotg-5.15-5.15.0/arch/x86/entry/entry_64.S @@ -85,7 +85,7 @@ */ SYM_CODE_START(entry_SYSCALL_64) - UNWIND_HINT_EMPTY + UNWIND_HINT_ENTRY swapgs /* tss.sp2 is scratch space. */ @@ -110,6 +110,11 @@ movq %rsp, %rdi /* Sign extend the lower 32bit as syscall numbers are treated as int */ movslq %eax, %rsi + + /* clobbers %rax, make sure it is after saving the syscall nr */ + IBRS_ENTER + UNTRAIN_RET + call do_syscall_64 /* returns with IRQs disabled */ /* @@ -189,8 +194,8 @@ * perf profiles. Nothing jumps here. */ syscall_return_via_sysret: - /* rcx and r11 are already restored (see code above) */ - POP_REGS pop_rdi=0 skip_r11rcx=1 + IBRS_EXIT + POP_REGS pop_rdi=0 /* * Now all regs are restored except RSP and RDI. @@ -243,7 +248,6 @@ movq %rbx, PER_CPU_VAR(fixed_percpu_data) + stack_canary_offset #endif -#ifdef CONFIG_RETPOLINE /* * When switching from a shallower to a deeper call stack * the RSB may either underflow or use entries populated @@ -252,7 +256,6 @@ * speculative execution to prevent attack. */ FILL_RETURN_BUFFER %r12, RSB_CLEAR_LOOPS, X86_FEATURE_RSB_CTXSW -#endif /* restore callee-saved registers */ popq %r15 @@ -315,6 +318,14 @@ #endif .endm +SYM_CODE_START_LOCAL(xen_error_entry) + UNWIND_HINT_FUNC + PUSH_AND_CLEAR_REGS save_ret=1 + ENCODE_FRAME_POINTER 8 + UNTRAIN_RET + RET +SYM_CODE_END(xen_error_entry) + /** * idtentry_body - Macro to emit code calling the C function * @cfunc: C function to be called @@ -322,7 +333,18 @@ */ .macro idtentry_body cfunc has_error_code:req - call error_entry + /* + * Call error_entry() and switch to the task stack if from userspace. + * + * When in XENPV, it is already in the task stack, and it can't fault + * for native_iret() nor native_load_gs_index() since XENPV uses its + * own pvops for IRET and load_gs_index(). And it doesn't need to + * switch the CR3. So it can skip invoking error_entry(). + */ + ALTERNATIVE "call error_entry; movq %rax, %rsp", \ + "call xen_error_entry", X86_FEATURE_XENPV + + ENCODE_FRAME_POINTER UNWIND_HINT_REGS movq %rsp, %rdi /* pt_regs pointer into 1st argument*/ @@ -499,6 +521,7 @@ call vc_switch_off_ist movq %rax, %rsp /* Switch to new stack */ + ENCODE_FRAME_POINTER UNWIND_HINT_REGS /* Update pt_regs */ @@ -567,6 +590,7 @@ SYM_CODE_START_LOCAL(common_interrupt_return) SYM_INNER_LABEL(swapgs_restore_regs_and_return_to_usermode, SYM_L_GLOBAL) + IBRS_EXIT #ifdef CONFIG_DEBUG_ENTRY /* Assert that pt_regs indicates user mode. */ testb $3, CS(%rsp) @@ -738,7 +762,7 @@ 2: ALTERNATIVE "", "mfence", X86_BUG_SWAPGS_FENCE swapgs FRAME_END - ret + RET SYM_FUNC_END(asm_load_gs_index) EXPORT_SYMBOL(asm_load_gs_index) @@ -845,6 +869,9 @@ * 1 -> no SWAPGS on exit * * Y GSBASE value at entry, must be restored in paranoid_exit + * + * R14 - old CR3 + * R15 - old SPEC_CTRL */ SYM_CODE_START_LOCAL(paranoid_entry) UNWIND_HINT_FUNC @@ -889,7 +916,7 @@ * is needed here. */ SAVE_AND_SET_GSBASE scratch_reg=%rax save_reg=%rbx - ret + jmp .Lparanoid_gsbase_done .Lparanoid_entry_checkgs: /* EBX = 1 -> kernel GSBASE active, no restore required */ @@ -908,9 +935,17 @@ xorl %ebx, %ebx swapgs .Lparanoid_kernel_gsbase: - FENCE_SWAPGS_KERNEL_ENTRY - ret +.Lparanoid_gsbase_done: + + /* + * Once we have CR3 and %GS setup save and set SPEC_CTRL. Just like + * CR3 above, keep the old value in a callee saved register. + */ + IBRS_ENTER save_reg=%r15 + UNTRAIN_RET + + RET SYM_CODE_END(paranoid_entry) /* @@ -931,9 +966,19 @@ * 1 -> no SWAPGS on exit * * Y User space GSBASE, must be restored unconditionally + * + * R14 - old CR3 + * R15 - old SPEC_CTRL */ SYM_CODE_START_LOCAL(paranoid_exit) UNWIND_HINT_REGS + + /* + * Must restore IBRS state before both CR3 and %GS since we need access + * to the per-CPU x86_spec_ctrl_shadow variable. + */ + IBRS_EXIT save_reg=%r15 + /* * The order of operations is important. RESTORE_CR3 requires * kernel GSBASE. @@ -962,13 +1007,15 @@ SYM_CODE_END(paranoid_exit) /* - * Save all registers in pt_regs, and switch GS if needed. + * Switch GS and CR3 if needed. */ SYM_CODE_START_LOCAL(error_entry) UNWIND_HINT_FUNC cld + PUSH_AND_CLEAR_REGS save_ret=1 ENCODE_FRAME_POINTER 8 + testb $3, CS+8(%rsp) jz .Lerror_kernelspace @@ -980,16 +1027,15 @@ FENCE_SWAPGS_USER_ENTRY /* We have user CR3. Change to kernel CR3. */ SWITCH_TO_KERNEL_CR3 scratch_reg=%rax + IBRS_ENTER + UNTRAIN_RET + leaq 8(%rsp), %rdi /* arg0 = pt_regs pointer */ .Lerror_entry_from_usermode_after_swapgs: + /* Put us onto the real thread stack. */ - popq %r12 /* save return addr in %12 */ - movq %rsp, %rdi /* arg0 = pt_regs pointer */ call sync_regs - movq %rax, %rsp /* switch stack */ - ENCODE_FRAME_POINTER - pushq %r12 - ret + RET /* * There are two places in the kernel that can potentially fault with @@ -1020,7 +1066,9 @@ */ .Lerror_entry_done_lfence: FENCE_SWAPGS_KERNEL_ENTRY - ret + leaq 8(%rsp), %rax /* return pt_regs pointer */ + ANNOTATE_UNRET_END + RET .Lbstep_iret: /* Fix truncated RIP */ @@ -1035,14 +1083,16 @@ SWAPGS FENCE_SWAPGS_USER_ENTRY SWITCH_TO_KERNEL_CR3 scratch_reg=%rax + IBRS_ENTER + UNTRAIN_RET /* * Pretend that the exception came from user mode: set up pt_regs * as if we faulted immediately after IRET. */ - mov %rsp, %rdi + leaq 8(%rsp), %rdi /* arg0 = pt_regs pointer */ call fixup_bad_iret - mov %rax, %rsp + mov %rax, %rdi jmp .Lerror_entry_from_usermode_after_swapgs SYM_CODE_END(error_entry) @@ -1139,6 +1189,9 @@ PUSH_AND_CLEAR_REGS rdx=(%rdx) ENCODE_FRAME_POINTER + IBRS_ENTER + UNTRAIN_RET + /* * At this point we no longer need to worry about stack damage * due to nesting -- we're on the normal thread stack and we're @@ -1361,6 +1414,9 @@ movq $-1, %rsi call exc_nmi + /* Always restore stashed SPEC_CTRL value (see paranoid_entry) */ + IBRS_EXIT save_reg=%r15 + /* Always restore stashed CR3 value (see paranoid_entry) */ RESTORE_CR3 scratch_reg=%r15 save_reg=%r14 diff -u linux-intel-iotg-5.15-5.15.0/arch/x86/entry/thunk_32.S linux-intel-iotg-5.15-5.15.0/arch/x86/entry/thunk_32.S --- linux-intel-iotg-5.15-5.15.0/arch/x86/entry/thunk_32.S +++ linux-intel-iotg-5.15-5.15.0/arch/x86/entry/thunk_32.S @@ -24,7 +24,7 @@ popl %edx popl %ecx popl %eax - ret + RET _ASM_NOKPROBE(\name) SYM_CODE_END(\name) .endm diff -u linux-intel-iotg-5.15-5.15.0/arch/x86/entry/thunk_64.S linux-intel-iotg-5.15-5.15.0/arch/x86/entry/thunk_64.S --- linux-intel-iotg-5.15-5.15.0/arch/x86/entry/thunk_64.S +++ linux-intel-iotg-5.15-5.15.0/arch/x86/entry/thunk_64.S @@ -48,5 +48,5 @@ popq %rdi popq %rbp - ret + RET _ASM_NOKPROBE(__thunk_restore) SYM_CODE_END(__thunk_restore) diff -u linux-intel-iotg-5.15-5.15.0/arch/x86/events/intel/core.c linux-intel-iotg-5.15-5.15.0/arch/x86/events/intel/core.c --- linux-intel-iotg-5.15-5.15.0/arch/x86/events/intel/core.c +++ linux-intel-iotg-5.15-5.15.0/arch/x86/events/intel/core.c @@ -255,7 +255,7 @@ INTEL_EVENT_CONSTRAINT_RANGE(0x03, 0x0a, 0xf), INTEL_EVENT_CONSTRAINT_RANGE(0x1f, 0x28, 0xf), INTEL_EVENT_CONSTRAINT(0x32, 0xf), /* SW_PREFETCH_ACCESS.* */ - INTEL_EVENT_CONSTRAINT_RANGE(0x48, 0x54, 0xf), + INTEL_EVENT_CONSTRAINT_RANGE(0x48, 0x56, 0xf), INTEL_EVENT_CONSTRAINT_RANGE(0x60, 0x8b, 0xf), INTEL_UEVENT_CONSTRAINT(0x04a3, 0xff), /* CYCLE_ACTIVITY.STALLS_TOTAL */ INTEL_UEVENT_CONSTRAINT(0x10a3, 0xff), /* CYCLE_ACTIVITY.CYCLES_MEM_ANY */ diff -u linux-intel-iotg-5.15-5.15.0/arch/x86/include/asm/alternative.h linux-intel-iotg-5.15-5.15.0/arch/x86/include/asm/alternative.h --- linux-intel-iotg-5.15-5.15.0/arch/x86/include/asm/alternative.h +++ linux-intel-iotg-5.15-5.15.0/arch/x86/include/asm/alternative.h @@ -76,6 +76,7 @@ extern void alternative_instructions(void); extern void apply_alternatives(struct alt_instr *start, struct alt_instr *end); extern void apply_retpolines(s32 *start, s32 *end); +extern void apply_returns(s32 *start, s32 *end); struct module; diff -u linux-intel-iotg-5.15-5.15.0/arch/x86/include/asm/cpufeatures.h linux-intel-iotg-5.15-5.15.0/arch/x86/include/asm/cpufeatures.h --- linux-intel-iotg-5.15-5.15.0/arch/x86/include/asm/cpufeatures.h +++ linux-intel-iotg-5.15-5.15.0/arch/x86/include/asm/cpufeatures.h @@ -203,8 +203,8 @@ #define X86_FEATURE_PROC_FEEDBACK ( 7*32+ 9) /* AMD ProcFeedbackInterface */ /* FREE! ( 7*32+10) */ #define X86_FEATURE_PTI ( 7*32+11) /* Kernel Page Table Isolation enabled */ -#define X86_FEATURE_RETPOLINE ( 7*32+12) /* "" Generic Retpoline mitigation for Spectre variant 2 */ -#define X86_FEATURE_RETPOLINE_LFENCE ( 7*32+13) /* "" Use LFENCE for Spectre variant 2 */ +#define X86_FEATURE_KERNEL_IBRS ( 7*32+12) /* "" Set/clear IBRS on kernel entry/exit */ +#define X86_FEATURE_RSB_VMEXIT ( 7*32+13) /* "" Fill RSB on VM-Exit */ #define X86_FEATURE_INTEL_PPIN ( 7*32+14) /* Intel Processor Inventory Number */ #define X86_FEATURE_CDP_L2 ( 7*32+15) /* Code and Data Prioritization L2 */ #define X86_FEATURE_MSR_SPEC_CTRL ( 7*32+16) /* "" MSR SPEC_CTRL is implemented */ @@ -295,6 +295,12 @@ #define X86_FEATURE_PER_THREAD_MBA (11*32+ 7) /* "" Per-thread Memory Bandwidth Allocation */ #define X86_FEATURE_SGX1 (11*32+ 8) /* "" Basic SGX */ #define X86_FEATURE_SGX2 (11*32+ 9) /* "" SGX Enclave Dynamic Memory Management (EDMM) */ +#define X86_FEATURE_ENTRY_IBPB (11*32+10) /* "" Issue an IBPB on kernel entry */ +#define X86_FEATURE_RRSBA_CTRL (11*32+11) /* "" RET prediction control */ +#define X86_FEATURE_RETPOLINE (11*32+12) /* "" Generic Retpoline mitigation for Spectre variant 2 */ +#define X86_FEATURE_RETPOLINE_LFENCE (11*32+13) /* "" Use LFENCE for Spectre variant 2 */ +#define X86_FEATURE_RETHUNK (11*32+14) /* "" Use REturn THUNK */ +#define X86_FEATURE_UNRET (11*32+15) /* "" AMD BTB untrain return */ /* Intel-defined CPU features, CPUID level 0x00000007:1 (EAX), word 12 */ #define X86_FEATURE_AVX_VNNI (12*32+ 4) /* AVX VNNI instructions */ @@ -315,6 +321,7 @@ #define X86_FEATURE_VIRT_SSBD (13*32+25) /* Virtualized Speculative Store Bypass Disable */ #define X86_FEATURE_AMD_SSB_NO (13*32+26) /* "" Speculative Store Bypass is fixed in hardware. */ #define X86_FEATURE_CPPC (13*32+27) /* Collaborative Processor Performance Control */ +#define X86_FEATURE_BTC_NO (13*32+29) /* "" Not vulnerable to Branch Type Confusion */ /* Thermal and Power Management Leaf, CPUID level 0x00000006 (EAX), word 14 */ #define X86_FEATURE_DTHERM (14*32+ 0) /* Digital Thermal Sensor */ @@ -442,4 +449,6 @@ #define X86_BUG_ITLB_MULTIHIT X86_BUG(23) /* CPU may incur MCE during certain page attribute changes */ #define X86_BUG_SRBDS X86_BUG(24) /* CPU may leak RNG bits if not mitigated */ +#define X86_BUG_MMIO_STALE_DATA X86_BUG(25) /* CPU is affected by Processor MMIO Stale Data vulnerabilities */ +#define X86_BUG_RETBLEED X86_BUG(26) /* CPU is affected by RETBleed */ #endif /* _ASM_X86_CPUFEATURES_H */ diff -u linux-intel-iotg-5.15-5.15.0/arch/x86/include/asm/msr-index.h linux-intel-iotg-5.15-5.15.0/arch/x86/include/asm/msr-index.h --- linux-intel-iotg-5.15-5.15.0/arch/x86/include/asm/msr-index.h +++ linux-intel-iotg-5.15-5.15.0/arch/x86/include/asm/msr-index.h @@ -51,6 +51,8 @@ #define SPEC_CTRL_STIBP BIT(SPEC_CTRL_STIBP_SHIFT) /* STIBP mask */ #define SPEC_CTRL_SSBD_SHIFT 2 /* Speculative Store Bypass Disable bit */ #define SPEC_CTRL_SSBD BIT(SPEC_CTRL_SSBD_SHIFT) /* Speculative Store Bypass Disable */ +#define SPEC_CTRL_RRSBA_DIS_S_SHIFT 6 /* Disable RRSBA behavior */ +#define SPEC_CTRL_RRSBA_DIS_S BIT(SPEC_CTRL_RRSBA_DIS_S_SHIFT) #define MSR_IA32_PRED_CMD 0x00000049 /* Prediction Command */ #define PRED_CMD_IBPB BIT(0) /* Indirect Branch Prediction Barrier */ @@ -91,6 +93,7 @@ #define MSR_IA32_ARCH_CAPABILITIES 0x0000010a #define ARCH_CAP_RDCL_NO BIT(0) /* Not susceptible to Meltdown */ #define ARCH_CAP_IBRS_ALL BIT(1) /* Enhanced IBRS support */ +#define ARCH_CAP_RSBA BIT(2) /* RET may use alternative branch predictors */ #define ARCH_CAP_SKIP_VMENTRY_L1DFLUSH BIT(3) /* Skip L1D flush on vmentry */ #define ARCH_CAP_SSB_NO BIT(4) /* * Not susceptible to Speculative Store Bypass @@ -114,6 +117,37 @@ * Not susceptible to * TSX Async Abort (TAA) vulnerabilities. */ +#define ARCH_CAP_SBDR_SSDP_NO BIT(13) /* + * Not susceptible to SBDR and SSDP + * variants of Processor MMIO stale data + * vulnerabilities. + */ +#define ARCH_CAP_FBSDP_NO BIT(14) /* + * Not susceptible to FBSDP variant of + * Processor MMIO stale data + * vulnerabilities. + */ +#define ARCH_CAP_PSDP_NO BIT(15) /* + * Not susceptible to PSDP variant of + * Processor MMIO stale data + * vulnerabilities. + */ +#define ARCH_CAP_FB_CLEAR BIT(17) /* + * VERW clears CPU fill buffer + * even on MDS_NO CPUs. + */ +#define ARCH_CAP_FB_CLEAR_CTRL BIT(18) /* + * MSR_IA32_MCU_OPT_CTRL[FB_CLEAR_DIS] + * bit available to control VERW + * behavior. + */ +#define ARCH_CAP_RRSBA BIT(19) /* + * Indicates RET may use predictors + * other than the RSB. With eIBRS + * enabled predictions in kernel mode + * are restricted to targets in + * kernel. + */ #define MSR_IA32_FLUSH_CMD 0x0000010b #define L1D_FLUSH BIT(0) /* @@ -131,6 +165,7 @@ #define MSR_IA32_MCU_OPT_CTRL 0x00000123 #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 MSR_IA32_SYSENTER_CS 0x00000174 #define MSR_IA32_SYSENTER_ESP 0x00000175 @@ -506,6 +541,9 @@ /* Fam 17h MSRs */ #define MSR_F17H_IRPERF 0xc00000e9 +#define MSR_ZEN2_SPECTRAL_CHICKEN 0xc00110e3 +#define MSR_ZEN2_SPECTRAL_CHICKEN_BIT BIT_ULL(1) + /* Fam 16h MSRs */ #define MSR_F16H_L2I_PERF_CTL 0xc0010230 #define MSR_F16H_L2I_PERF_CTR 0xc0010231 diff -u linux-intel-iotg-5.15-5.15.0/arch/x86/include/asm/nospec-branch.h linux-intel-iotg-5.15-5.15.0/arch/x86/include/asm/nospec-branch.h --- linux-intel-iotg-5.15-5.15.0/arch/x86/include/asm/nospec-branch.h +++ linux-intel-iotg-5.15-5.15.0/arch/x86/include/asm/nospec-branch.h @@ -11,6 +11,7 @@ #include #include #include +#include #define RETPOLINE_THUNK_SIZE 32 @@ -76,6 +77,23 @@ .endm /* + * (ab)use RETPOLINE_SAFE on RET to annotate away 'bare' RET instructions + * vs RETBleed validation. + */ +#define ANNOTATE_UNRET_SAFE ANNOTATE_RETPOLINE_SAFE + +/* + * Abuse ANNOTATE_RETPOLINE_SAFE on a NOP to indicate UNRET_END, should + * eventually turn into it's own annotation. + */ +.macro ANNOTATE_UNRET_END +#ifdef CONFIG_DEBUG_ENTRY + ANNOTATE_RETPOLINE_SAFE + nop +#endif +.endm + +/* * JMP_NOSPEC and CALL_NOSPEC macros can be used instead of a simple * indirect jmp/call which may be susceptible to the Spectre variant 2 * attack. @@ -105,10 +123,34 @@ * monstrosity above, manually. */ .macro FILL_RETURN_BUFFER reg:req nr:req ftr:req -#ifdef CONFIG_RETPOLINE ALTERNATIVE "jmp .Lskip_rsb_\@", "", \ftr __FILL_RETURN_BUFFER(\reg,\nr,%_ASM_SP) .Lskip_rsb_\@: +.endm + +#ifdef CONFIG_CPU_UNRET_ENTRY +#define CALL_ZEN_UNTRAIN_RET "call zen_untrain_ret" +#else +#define CALL_ZEN_UNTRAIN_RET "" +#endif + +/* + * Mitigate RETBleed for AMD/Hygon Zen uarch. Requires KERNEL CR3 because the + * return thunk isn't mapped into the userspace tables (then again, AMD + * typically has NO_MELTDOWN). + * + * While zen_untrain_ret() doesn't clobber anything but requires stack, + * entry_ibpb() will clobber AX, CX, DX. + * + * As such, this must be placed after every *SWITCH_TO_KERNEL_CR3 at a point + * where we have a stack but before any RET instruction. + */ +.macro UNTRAIN_RET +#if defined(CONFIG_CPU_UNRET_ENTRY) || defined(CONFIG_CPU_IBPB_ENTRY) + ANNOTATE_UNRET_END + ALTERNATIVE_2 "", \ + CALL_ZEN_UNTRAIN_RET, X86_FEATURE_UNRET, \ + "call entry_ibpb", X86_FEATURE_ENTRY_IBPB #endif .endm @@ -120,6 +162,10 @@ _ASM_PTR " 999b\n\t" \ ".popsection\n\t" +extern void __x86_return_thunk(void); +extern void zen_untrain_ret(void); +extern void entry_ibpb(void); + #ifdef CONFIG_RETPOLINE typedef u8 retpoline_thunk_t[RETPOLINE_THUNK_SIZE]; @@ -193,6 +239,7 @@ SPECTRE_V2_EIBRS, SPECTRE_V2_EIBRS_RETPOLINE, SPECTRE_V2_EIBRS_LFENCE, + SPECTRE_V2_IBRS, }; /* The indirect branch speculation control variants */ @@ -235,6 +282,9 @@ /* The Intel SPEC CTRL MSR base value cache */ extern u64 x86_spec_ctrl_base; +DECLARE_PER_CPU(u64, x86_spec_ctrl_current); +extern void write_spec_ctrl_current(u64 val, bool force); +extern u64 spec_ctrl_current(void); /* * With retpoline, we must use IBRS to restrict branch prediction @@ -244,18 +294,16 @@ */ #define firmware_restrict_branch_speculation_start() \ do { \ - u64 val = x86_spec_ctrl_base | SPEC_CTRL_IBRS; \ - \ preempt_disable(); \ - alternative_msr_write(MSR_IA32_SPEC_CTRL, val, \ + alternative_msr_write(MSR_IA32_SPEC_CTRL, \ + spec_ctrl_current() | SPEC_CTRL_IBRS, \ X86_FEATURE_USE_IBRS_FW); \ } while (0) #define firmware_restrict_branch_speculation_end() \ do { \ - u64 val = x86_spec_ctrl_base; \ - \ - alternative_msr_write(MSR_IA32_SPEC_CTRL, val, \ + alternative_msr_write(MSR_IA32_SPEC_CTRL, \ + spec_ctrl_current(), \ X86_FEATURE_USE_IBRS_FW); \ preempt_enable(); \ } while (0) @@ -269,6 +317,8 @@ DECLARE_STATIC_KEY_FALSE(switch_mm_cond_l1d_flush); +DECLARE_STATIC_KEY_FALSE(mmio_stale_data_clear); + #include /** diff -u linux-intel-iotg-5.15-5.15.0/arch/x86/include/asm/traps.h linux-intel-iotg-5.15-5.15.0/arch/x86/include/asm/traps.h --- linux-intel-iotg-5.15-5.15.0/arch/x86/include/asm/traps.h +++ linux-intel-iotg-5.15-5.15.0/arch/x86/include/asm/traps.h @@ -13,7 +13,7 @@ #ifdef CONFIG_X86_64 asmlinkage __visible notrace struct pt_regs *sync_regs(struct pt_regs *eregs); asmlinkage __visible notrace -struct bad_iret_stack *fixup_bad_iret(struct bad_iret_stack *s); +struct pt_regs *fixup_bad_iret(struct pt_regs *bad_regs); void __init trap_init(void); asmlinkage __visible noinstr struct pt_regs *vc_switch_off_ist(struct pt_regs *eregs); #endif diff -u linux-intel-iotg-5.15-5.15.0/arch/x86/include/asm/tsc.h linux-intel-iotg-5.15-5.15.0/arch/x86/include/asm/tsc.h --- linux-intel-iotg-5.15-5.15.0/arch/x86/include/asm/tsc.h +++ linux-intel-iotg-5.15-5.15.0/arch/x86/include/asm/tsc.h @@ -20,13 +20,12 @@ static inline cycles_t get_cycles(void) { -#ifndef CONFIG_X86_TSC - if (!boot_cpu_has(X86_FEATURE_TSC)) + if (!IS_ENABLED(CONFIG_X86_TSC) && + !cpu_feature_enabled(X86_FEATURE_TSC)) return 0; -#endif - return rdtsc(); } +#define get_cycles get_cycles extern struct system_counterval_t convert_art_to_tsc(u64 art); extern struct system_counterval_t convert_art_ns_to_tsc(u64 art_ns); diff -u linux-intel-iotg-5.15-5.15.0/arch/x86/kernel/acpi/wakeup_32.S linux-intel-iotg-5.15-5.15.0/arch/x86/kernel/acpi/wakeup_32.S --- linux-intel-iotg-5.15-5.15.0/arch/x86/kernel/acpi/wakeup_32.S +++ linux-intel-iotg-5.15-5.15.0/arch/x86/kernel/acpi/wakeup_32.S @@ -62,7 +62,7 @@ popl saved_context_eflags movl $ret_point, saved_eip - ret + RET restore_registers: @@ -72,7 +72,7 @@ movl saved_context_edi, %edi pushl saved_context_eflags popfl - ret + RET SYM_CODE_START(do_suspend_lowlevel) call save_processor_state @@ -88,7 +88,7 @@ ret_point: call restore_registers call restore_processor_state - ret + RET SYM_CODE_END(do_suspend_lowlevel) .data diff -u linux-intel-iotg-5.15-5.15.0/arch/x86/kernel/alternative.c linux-intel-iotg-5.15-5.15.0/arch/x86/kernel/alternative.c --- linux-intel-iotg-5.15-5.15.0/arch/x86/kernel/alternative.c +++ linux-intel-iotg-5.15-5.15.0/arch/x86/kernel/alternative.c @@ -115,6 +115,7 @@ } extern s32 __retpoline_sites[], __retpoline_sites_end[]; +extern s32 __return_sites[], __return_sites_end[]; extern struct alt_instr __alt_instructions[], __alt_instructions_end[]; extern s32 __smp_locks[], __smp_locks_end[]; void text_poke_early(void *addr, const void *opcode, size_t len); @@ -506,9 +507,76 @@ } } +#ifdef CONFIG_RETHUNK +/* + * Rewrite the compiler generated return thunk tail-calls. + * + * For example, convert: + * + * JMP __x86_return_thunk + * + * into: + * + * RET + */ +static int patch_return(void *addr, struct insn *insn, u8 *bytes) +{ + int i = 0; + + if (cpu_feature_enabled(X86_FEATURE_RETHUNK)) + return -1; + + bytes[i++] = RET_INSN_OPCODE; + + for (; i < insn->length;) + bytes[i++] = INT3_INSN_OPCODE; + + return i; +} + +void __init_or_module noinline apply_returns(s32 *start, s32 *end) +{ + s32 *s; + + for (s = start; s < end; s++) { + void *dest = NULL, *addr = (void *)s + *s; + struct insn insn; + int len, ret; + u8 bytes[16]; + u8 op; + + ret = insn_decode_kernel(&insn, addr); + if (WARN_ON_ONCE(ret < 0)) + continue; + + op = insn.opcode.bytes[0]; + if (op == JMP32_INSN_OPCODE) + dest = addr + insn.length + insn.immediate.value; + + if (__static_call_fixup(addr, op, dest) || + WARN_ON_ONCE(dest != &__x86_return_thunk)) + continue; + + DPRINTK("return thunk at: %pS (%px) len: %d to: %pS", + addr, addr, insn.length, + addr + insn.length + insn.immediate.value); + + len = patch_return(addr, &insn, bytes); + if (len == insn.length) { + DUMP_BYTES(((u8*)addr), len, "%px: orig: ", addr); + DUMP_BYTES(((u8*)bytes), len, "%px: repl: ", addr); + text_poke_early(addr, bytes, len); + } + } +} +#else +void __init_or_module noinline apply_returns(s32 *start, s32 *end) { } +#endif /* CONFIG_RETHUNK */ + #else /* !RETPOLINES || !CONFIG_STACK_VALIDATION */ void __init_or_module noinline apply_retpolines(s32 *start, s32 *end) { } +void __init_or_module noinline apply_returns(s32 *start, s32 *end) { } #endif /* CONFIG_RETPOLINE && CONFIG_STACK_VALIDATION */ @@ -714,7 +782,7 @@ " .type int3_magic, @function\n" "int3_magic:\n" " movl $1, (%" _ASM_ARG1 ")\n" -" ret\n" + ASM_RET " .size int3_magic, .-int3_magic\n" " .popsection\n" ); @@ -824,6 +892,7 @@ * those can rewrite the retpoline thunks. */ apply_retpolines(__retpoline_sites, __retpoline_sites_end); + apply_returns(__return_sites, __return_sites_end); /* * Then patch alternatives, such that those paravirt calls that are in @@ -1113,10 +1182,13 @@ } struct text_poke_loc { - s32 rel_addr; /* addr := _stext + rel_addr */ - s32 rel32; + /* addr := _stext + rel_addr */ + s32 rel_addr; + s32 disp; + u8 len; u8 opcode; const u8 text[POKE_MAX_OPCODE_SIZE]; + /* see text_poke_bp_batch() */ u8 old; }; @@ -1131,7 +1203,8 @@ static __always_inline struct bp_patching_desc *try_get_desc(struct bp_patching_desc **descp) { - struct bp_patching_desc *desc = __READ_ONCE(*descp); /* rcu_dereference */ + /* rcu_dereference */ + struct bp_patching_desc *desc = __READ_ONCE(*descp); if (!desc || !arch_atomic_inc_not_zero(&desc->refs)) return NULL; @@ -1165,7 +1238,7 @@ { struct bp_patching_desc *desc; struct text_poke_loc *tp; - int len, ret = 0; + int ret = 0; void *ip; if (user_mode(regs)) @@ -1205,8 +1278,7 @@ goto out_put; } - len = text_opcode_size(tp->opcode); - ip += len; + ip += tp->len; switch (tp->opcode) { case INT3_INSN_OPCODE: @@ -1221,12 +1293,12 @@ break; case CALL_INSN_OPCODE: - int3_emulate_call(regs, (long)ip + tp->rel32); + int3_emulate_call(regs, (long)ip + tp->disp); break; case JMP32_INSN_OPCODE: case JMP8_INSN_OPCODE: - int3_emulate_jmp(regs, (long)ip + tp->rel32); + int3_emulate_jmp(regs, (long)ip + tp->disp); break; default: @@ -1301,7 +1373,7 @@ */ for (do_sync = 0, i = 0; i < nr_entries; i++) { u8 old[POKE_MAX_OPCODE_SIZE] = { tp[i].old, }; - int len = text_opcode_size(tp[i].opcode); + int len = tp[i].len; if (len - INT3_INSN_SIZE > 0) { memcpy(old + INT3_INSN_SIZE, @@ -1378,21 +1450,37 @@ const void *opcode, size_t len, const void *emulate) { struct insn insn; - int ret; + int ret, i; memcpy((void *)tp->text, opcode, len); if (!emulate) emulate = opcode; ret = insn_decode_kernel(&insn, emulate); - BUG_ON(ret < 0); - BUG_ON(len != insn.length); tp->rel_addr = addr - (void *)_stext; + tp->len = len; tp->opcode = insn.opcode.bytes[0]; switch (tp->opcode) { + case RET_INSN_OPCODE: + case JMP32_INSN_OPCODE: + case JMP8_INSN_OPCODE: + /* + * Control flow instructions without implied execution of the + * next instruction can be padded with INT3. + */ + for (i = insn.length; i < len; i++) + BUG_ON(tp->text[i] != INT3_INSN_OPCODE); + break; + + default: + BUG_ON(len != insn.length); + }; + + + switch (tp->opcode) { case INT3_INSN_OPCODE: case RET_INSN_OPCODE: break; @@ -1400,7 +1488,7 @@ case CALL_INSN_OPCODE: case JMP32_INSN_OPCODE: case JMP8_INSN_OPCODE: - tp->rel32 = insn.immediate.value; + tp->disp = insn.immediate.value; break; default: /* assume NOP */ @@ -1408,13 +1496,13 @@ case 2: /* NOP2 -- emulate as JMP8+0 */ BUG_ON(memcmp(emulate, x86_nops[len], len)); tp->opcode = JMP8_INSN_OPCODE; - tp->rel32 = 0; + tp->disp = 0; break; case 5: /* NOP5 -- emulate as JMP32+0 */ BUG_ON(memcmp(emulate, x86_nops[len], len)); tp->opcode = JMP32_INSN_OPCODE; - tp->rel32 = 0; + tp->disp = 0; break; default: /* unknown instruction */ diff -u linux-intel-iotg-5.15-5.15.0/arch/x86/kernel/cpu/amd.c linux-intel-iotg-5.15-5.15.0/arch/x86/kernel/cpu/amd.c --- linux-intel-iotg-5.15-5.15.0/arch/x86/kernel/cpu/amd.c +++ linux-intel-iotg-5.15-5.15.0/arch/x86/kernel/cpu/amd.c @@ -886,6 +886,28 @@ clear_rdrand_cpuid_bit(c); } +void init_spectral_chicken(struct cpuinfo_x86 *c) +{ +#ifdef CONFIG_CPU_UNRET_ENTRY + u64 value; + + /* + * On Zen2 we offer this chicken (bit) on the altar of Speculation. + * + * This suppresses speculation from the middle of a basic block, i.e. it + * suppresses non-branch predictions. + * + * We use STIBP as a heuristic to filter out Zen2 from the rest of F17H + */ + if (!cpu_has(c, X86_FEATURE_HYPERVISOR) && cpu_has(c, X86_FEATURE_AMD_STIBP)) { + if (!rdmsrl_safe(MSR_ZEN2_SPECTRAL_CHICKEN, &value)) { + value |= MSR_ZEN2_SPECTRAL_CHICKEN_BIT; + wrmsrl_safe(MSR_ZEN2_SPECTRAL_CHICKEN, value); + } + } +#endif +} + static void init_amd_zn(struct cpuinfo_x86 *c) { set_cpu_cap(c, X86_FEATURE_ZEN); @@ -894,12 +916,21 @@ node_reclaim_distance = 32; #endif - /* - * Fix erratum 1076: CPB feature bit not being set in CPUID. - * Always set it, except when running under a hypervisor. - */ - if (!cpu_has(c, X86_FEATURE_HYPERVISOR) && !cpu_has(c, X86_FEATURE_CPB)) - set_cpu_cap(c, X86_FEATURE_CPB); + /* Fix up CPUID bits, but only if not virtualised. */ + if (!cpu_has(c, X86_FEATURE_HYPERVISOR)) { + + /* Erratum 1076: CPB feature bit not being set in CPUID. */ + if (!cpu_has(c, X86_FEATURE_CPB)) + set_cpu_cap(c, X86_FEATURE_CPB); + + /* + * Zen3 (Fam19 model < 0x10) parts are not susceptible to + * Branch Type Confusion, but predate the allocation of the + * BTC_NO bit. + */ + if (c->x86 == 0x19 && !cpu_has(c, X86_FEATURE_BTC_NO)) + set_cpu_cap(c, X86_FEATURE_BTC_NO); + } } static void init_amd(struct cpuinfo_x86 *c) @@ -931,7 +962,8 @@ case 0x12: init_amd_ln(c); break; case 0x15: init_amd_bd(c); break; case 0x16: init_amd_jg(c); break; - case 0x17: fallthrough; + case 0x17: init_spectral_chicken(c); + fallthrough; case 0x19: init_amd_zn(c); break; } diff -u linux-intel-iotg-5.15-5.15.0/arch/x86/kernel/cpu/bugs.c linux-intel-iotg-5.15-5.15.0/arch/x86/kernel/cpu/bugs.c --- linux-intel-iotg-5.15-5.15.0/arch/x86/kernel/cpu/bugs.c +++ linux-intel-iotg-5.15-5.15.0/arch/x86/kernel/cpu/bugs.c @@ -38,24 +38,52 @@ static void __init spectre_v1_select_mitigation(void); static void __init spectre_v2_select_mitigation(void); +static void __init retbleed_select_mitigation(void); +static void __init spectre_v2_user_select_mitigation(void); static void __init ssb_select_mitigation(void); static void __init l1tf_select_mitigation(void); static void __init mds_select_mitigation(void); -static void __init mds_print_mitigation(void); +static void __init md_clear_update_mitigation(void); +static void __init md_clear_select_mitigation(void); static void __init taa_select_mitigation(void); +static void __init mmio_select_mitigation(void); static void __init srbds_select_mitigation(void); static void __init l1d_flush_select_mitigation(void); -/* The base value of the SPEC_CTRL MSR that always has to be preserved. */ +/* The base value of the SPEC_CTRL MSR without task-specific bits set */ u64 x86_spec_ctrl_base; EXPORT_SYMBOL_GPL(x86_spec_ctrl_base); + +/* The current value of the SPEC_CTRL MSR with task-specific bits set */ +DEFINE_PER_CPU(u64, x86_spec_ctrl_current); +EXPORT_SYMBOL_GPL(x86_spec_ctrl_current); + static DEFINE_MUTEX(spec_ctrl_mutex); /* - * The vendor and possibly platform specific bits which can be modified in - * x86_spec_ctrl_base. + * Keep track of the SPEC_CTRL MSR value for the current task, which may differ + * from x86_spec_ctrl_base due to STIBP/SSB in __speculation_ctrl_update(). */ -static u64 __ro_after_init x86_spec_ctrl_mask = SPEC_CTRL_IBRS; +void write_spec_ctrl_current(u64 val, bool force) +{ + if (this_cpu_read(x86_spec_ctrl_current) == val) + return; + + this_cpu_write(x86_spec_ctrl_current, val); + + /* + * When KERNEL_IBRS this MSR is written on return-to-user, unless + * forced the update can be delayed until that time. + */ + if (force || !cpu_feature_enabled(X86_FEATURE_KERNEL_IBRS)) + wrmsrl(MSR_IA32_SPEC_CTRL, val); +} + +u64 spec_ctrl_current(void) +{ + return this_cpu_read(x86_spec_ctrl_current); +} +EXPORT_SYMBOL_GPL(spec_ctrl_current); /* * AMD specific MSR info for Speculative Store Bypass control. @@ -85,6 +113,10 @@ */ DEFINE_STATIC_KEY_FALSE(switch_mm_cond_l1d_flush); +/* Controls CPU Fill buffer clear before KVM guest MMIO accesses */ +DEFINE_STATIC_KEY_FALSE(mmio_stale_data_clear); +EXPORT_SYMBOL_GPL(mmio_stale_data_clear); + void __init check_bugs(void) { identify_boot_cpu(); @@ -108,26 +140,27 @@ if (boot_cpu_has(X86_FEATURE_MSR_SPEC_CTRL)) rdmsrl(MSR_IA32_SPEC_CTRL, x86_spec_ctrl_base); - /* Allow STIBP in MSR_SPEC_CTRL if supported */ - if (boot_cpu_has(X86_FEATURE_STIBP)) - x86_spec_ctrl_mask |= SPEC_CTRL_STIBP; - /* Select the proper CPU mitigations before patching alternatives: */ spectre_v1_select_mitigation(); spectre_v2_select_mitigation(); + /* + * retbleed_select_mitigation() relies on the state set by + * spectre_v2_select_mitigation(); specifically it wants to know about + * spectre_v2=ibrs. + */ + retbleed_select_mitigation(); + /* + * spectre_v2_user_select_mitigation() relies on the state set by + * retbleed_select_mitigation(); specifically the STIBP selection is + * forced for UNRET. + */ + spectre_v2_user_select_mitigation(); ssb_select_mitigation(); l1tf_select_mitigation(); - mds_select_mitigation(); - taa_select_mitigation(); + md_clear_select_mitigation(); srbds_select_mitigation(); l1d_flush_select_mitigation(); - /* - * As MDS and TAA mitigations are inter-related, print MDS - * mitigation until after TAA mitigation selection is done. - */ - mds_print_mitigation(); - arch_smt_update(); #ifdef CONFIG_X86_32 @@ -162,31 +195,17 @@ #endif } +/* + * NOTE: This function is *only* called for SVM. VMX spec_ctrl handling is + * done in vmenter.S. + */ void x86_virt_spec_ctrl(u64 guest_spec_ctrl, u64 guest_virt_spec_ctrl, bool setguest) { - u64 msrval, guestval, hostval = x86_spec_ctrl_base; + u64 msrval, guestval = guest_spec_ctrl, hostval = spec_ctrl_current(); struct thread_info *ti = current_thread_info(); - /* Is MSR_SPEC_CTRL implemented ? */ if (static_cpu_has(X86_FEATURE_MSR_SPEC_CTRL)) { - /* - * Restrict guest_spec_ctrl to supported values. Clear the - * modifiable bits in the host base value and or the - * modifiable bits from the guest value. - */ - guestval = hostval & ~x86_spec_ctrl_mask; - guestval |= guest_spec_ctrl & x86_spec_ctrl_mask; - - /* SSBD controlled in MSR_SPEC_CTRL */ - if (static_cpu_has(X86_FEATURE_SPEC_CTRL_SSBD) || - static_cpu_has(X86_FEATURE_AMD_SSBD)) - hostval |= ssbd_tif_to_spec_ctrl(ti->flags); - - /* Conditional STIBP enabled? */ - if (static_branch_unlikely(&switch_to_cond_stibp)) - hostval |= stibp_tif_to_spec_ctrl(ti->flags); - if (hostval != guestval) { msrval = setguest ? guestval : hostval; wrmsrl(MSR_IA32_SPEC_CTRL, msrval); @@ -267,14 +286,6 @@ } } -static void __init mds_print_mitigation(void) -{ - if (!boot_cpu_has_bug(X86_BUG_MDS) || cpu_mitigations_off()) - return; - - pr_info("%s\n", mds_strings[mds_mitigation]); -} - static int __init mds_cmdline(char *str) { if (!boot_cpu_has_bug(X86_BUG_MDS)) @@ -329,7 +340,7 @@ /* TSX previously disabled by tsx=off */ if (!boot_cpu_has(X86_FEATURE_RTM)) { taa_mitigation = TAA_MITIGATION_TSX_DISABLED; - goto out; + return; } if (cpu_mitigations_off()) { @@ -343,7 +354,7 @@ */ if (taa_mitigation == TAA_MITIGATION_OFF && mds_mitigation == MDS_MITIGATION_OFF) - goto out; + return; if (boot_cpu_has(X86_FEATURE_MD_CLEAR)) taa_mitigation = TAA_MITIGATION_VERW; @@ -375,18 +386,6 @@ if (taa_nosmt || cpu_mitigations_auto_nosmt()) cpu_smt_disable(false); - - /* - * Update MDS mitigation, if necessary, as the mds_user_clear is - * now enabled for TAA mitigation. - */ - if (mds_mitigation == MDS_MITIGATION_OFF && - boot_cpu_has_bug(X86_BUG_MDS)) { - mds_mitigation = MDS_MITIGATION_FULL; - mds_select_mitigation(); - } -out: - pr_info("%s\n", taa_strings[taa_mitigation]); } static int __init tsx_async_abort_parse_cmdline(char *str) @@ -411,6 +410,151 @@ early_param("tsx_async_abort", tsx_async_abort_parse_cmdline); #undef pr_fmt +#define pr_fmt(fmt) "MMIO Stale Data: " fmt + +enum mmio_mitigations { + MMIO_MITIGATION_OFF, + MMIO_MITIGATION_UCODE_NEEDED, + MMIO_MITIGATION_VERW, +}; + +/* Default mitigation for Processor MMIO Stale Data vulnerabilities */ +static enum mmio_mitigations mmio_mitigation __ro_after_init = MMIO_MITIGATION_VERW; +static bool mmio_nosmt __ro_after_init = false; + +static const char * const mmio_strings[] = { + [MMIO_MITIGATION_OFF] = "Vulnerable", + [MMIO_MITIGATION_UCODE_NEEDED] = "Vulnerable: Clear CPU buffers attempted, no microcode", + [MMIO_MITIGATION_VERW] = "Mitigation: Clear CPU buffers", +}; + +static void __init mmio_select_mitigation(void) +{ + u64 ia32_cap; + + if (!boot_cpu_has_bug(X86_BUG_MMIO_STALE_DATA) || + cpu_mitigations_off()) { + mmio_mitigation = MMIO_MITIGATION_OFF; + return; + } + + if (mmio_mitigation == MMIO_MITIGATION_OFF) + return; + + ia32_cap = x86_read_arch_cap_msr(); + + /* + * Enable CPU buffer clear mitigation for host and VMM, if also affected + * by MDS or TAA. Otherwise, enable mitigation for VMM only. + */ + if (boot_cpu_has_bug(X86_BUG_MDS) || (boot_cpu_has_bug(X86_BUG_TAA) && + boot_cpu_has(X86_FEATURE_RTM))) + static_branch_enable(&mds_user_clear); + else + static_branch_enable(&mmio_stale_data_clear); + + /* + * If Processor-MMIO-Stale-Data bug is present and Fill Buffer data can + * be propagated to uncore buffers, clearing the Fill buffers on idle + * is required irrespective of SMT state. + */ + if (!(ia32_cap & ARCH_CAP_FBSDP_NO)) + static_branch_enable(&mds_idle_clear); + + /* + * Check if the system has the right microcode. + * + * CPU Fill buffer clear mitigation is enumerated by either an explicit + * FB_CLEAR or by the presence of both MD_CLEAR and L1D_FLUSH on MDS + * affected systems. + */ + if ((ia32_cap & ARCH_CAP_FB_CLEAR) || + (boot_cpu_has(X86_FEATURE_MD_CLEAR) && + boot_cpu_has(X86_FEATURE_FLUSH_L1D) && + !(ia32_cap & ARCH_CAP_MDS_NO))) + mmio_mitigation = MMIO_MITIGATION_VERW; + else + mmio_mitigation = MMIO_MITIGATION_UCODE_NEEDED; + + if (mmio_nosmt || cpu_mitigations_auto_nosmt()) + cpu_smt_disable(false); +} + +static int __init mmio_stale_data_parse_cmdline(char *str) +{ + if (!boot_cpu_has_bug(X86_BUG_MMIO_STALE_DATA)) + return 0; + + if (!str) + return -EINVAL; + + if (!strcmp(str, "off")) { + mmio_mitigation = MMIO_MITIGATION_OFF; + } else if (!strcmp(str, "full")) { + mmio_mitigation = MMIO_MITIGATION_VERW; + } else if (!strcmp(str, "full,nosmt")) { + mmio_mitigation = MMIO_MITIGATION_VERW; + mmio_nosmt = true; + } + + return 0; +} +early_param("mmio_stale_data", mmio_stale_data_parse_cmdline); + +#undef pr_fmt +#define pr_fmt(fmt) "" fmt + +static void __init md_clear_update_mitigation(void) +{ + if (cpu_mitigations_off()) + return; + + if (!static_key_enabled(&mds_user_clear)) + goto out; + + /* + * mds_user_clear is now enabled. Update MDS, TAA and MMIO Stale Data + * mitigation, if necessary. + */ + if (mds_mitigation == MDS_MITIGATION_OFF && + boot_cpu_has_bug(X86_BUG_MDS)) { + mds_mitigation = MDS_MITIGATION_FULL; + mds_select_mitigation(); + } + if (taa_mitigation == TAA_MITIGATION_OFF && + boot_cpu_has_bug(X86_BUG_TAA)) { + taa_mitigation = TAA_MITIGATION_VERW; + taa_select_mitigation(); + } + if (mmio_mitigation == MMIO_MITIGATION_OFF && + boot_cpu_has_bug(X86_BUG_MMIO_STALE_DATA)) { + mmio_mitigation = MMIO_MITIGATION_VERW; + mmio_select_mitigation(); + } +out: + if (boot_cpu_has_bug(X86_BUG_MDS)) + pr_info("MDS: %s\n", mds_strings[mds_mitigation]); + if (boot_cpu_has_bug(X86_BUG_TAA)) + pr_info("TAA: %s\n", taa_strings[taa_mitigation]); + if (boot_cpu_has_bug(X86_BUG_MMIO_STALE_DATA)) + pr_info("MMIO Stale Data: %s\n", mmio_strings[mmio_mitigation]); +} + +static void __init md_clear_select_mitigation(void) +{ + mds_select_mitigation(); + taa_select_mitigation(); + mmio_select_mitigation(); + + /* + * As MDS, TAA and MMIO Stale Data mitigations are inter-related, update + * and print their mitigation after MDS, TAA and MMIO Stale Data + * mitigation selection is done. + */ + md_clear_update_mitigation(); +} + +#undef pr_fmt #define pr_fmt(fmt) "SRBDS: " fmt enum srbds_mitigations { @@ -471,11 +615,13 @@ return; /* - * Check to see if this is one of the MDS_NO systems supporting - * TSX that are only exposed to SRBDS when TSX is enabled. + * Check to see if this is one of the MDS_NO systems supporting TSX that + * are only exposed to SRBDS when TSX is enabled or when CPU is affected + * by Processor MMIO Stale Data vulnerability. */ ia32_cap = x86_read_arch_cap_msr(); - if ((ia32_cap & ARCH_CAP_MDS_NO) && !boot_cpu_has(X86_FEATURE_RTM)) + if ((ia32_cap & ARCH_CAP_MDS_NO) && !boot_cpu_has(X86_FEATURE_RTM) && + !boot_cpu_has_bug(X86_BUG_MMIO_STALE_DATA)) srbds_mitigation = SRBDS_MITIGATION_TSX_OFF; else if (boot_cpu_has(X86_FEATURE_HYPERVISOR)) srbds_mitigation = SRBDS_MITIGATION_HYPERVISOR; @@ -619,12 +765,180 @@ } early_param("nospectre_v1", nospectre_v1_cmdline); -#undef pr_fmt -#define pr_fmt(fmt) "Spectre V2 : " fmt - static enum spectre_v2_mitigation spectre_v2_enabled __ro_after_init = SPECTRE_V2_NONE; +#undef pr_fmt +#define pr_fmt(fmt) "RETBleed: " fmt + +enum retbleed_mitigation { + RETBLEED_MITIGATION_NONE, + RETBLEED_MITIGATION_UNRET, + RETBLEED_MITIGATION_IBPB, + RETBLEED_MITIGATION_IBRS, + RETBLEED_MITIGATION_EIBRS, +}; + +enum retbleed_mitigation_cmd { + RETBLEED_CMD_OFF, + RETBLEED_CMD_AUTO, + RETBLEED_CMD_UNRET, + RETBLEED_CMD_IBPB, +}; + +static const char * const retbleed_strings[] = { + [RETBLEED_MITIGATION_NONE] = "Vulnerable", + [RETBLEED_MITIGATION_UNRET] = "Mitigation: untrained return thunk", + [RETBLEED_MITIGATION_IBPB] = "Mitigation: IBPB", + [RETBLEED_MITIGATION_IBRS] = "Mitigation: IBRS", + [RETBLEED_MITIGATION_EIBRS] = "Mitigation: Enhanced IBRS", +}; + +static enum retbleed_mitigation retbleed_mitigation __ro_after_init = + RETBLEED_MITIGATION_NONE; +static enum retbleed_mitigation_cmd retbleed_cmd __ro_after_init = + RETBLEED_CMD_AUTO; + +static int __ro_after_init retbleed_nosmt = false; + +static int __init retbleed_parse_cmdline(char *str) +{ + if (!str) + return -EINVAL; + + while (str) { + char *next = strchr(str, ','); + if (next) { + *next = 0; + next++; + } + + if (!strcmp(str, "off")) { + retbleed_cmd = RETBLEED_CMD_OFF; + } else if (!strcmp(str, "auto")) { + retbleed_cmd = RETBLEED_CMD_AUTO; + } else if (!strcmp(str, "unret")) { + retbleed_cmd = RETBLEED_CMD_UNRET; + } else if (!strcmp(str, "ibpb")) { + retbleed_cmd = RETBLEED_CMD_IBPB; + } else if (!strcmp(str, "nosmt")) { + retbleed_nosmt = true; + } else { + pr_err("Ignoring unknown retbleed option (%s).", str); + } + + str = next; + } + + return 0; +} +early_param("retbleed", retbleed_parse_cmdline); + +#define RETBLEED_UNTRAIN_MSG "WARNING: BTB untrained return thunk mitigation is only effective on AMD/Hygon!\n" +#define RETBLEED_INTEL_MSG "WARNING: Spectre v2 mitigation leaves CPU vulnerable to RETBleed attacks, data leaks possible!\n" + +static void __init retbleed_select_mitigation(void) +{ + bool mitigate_smt = false; + + if (!boot_cpu_has_bug(X86_BUG_RETBLEED) || cpu_mitigations_off()) + return; + + switch (retbleed_cmd) { + case RETBLEED_CMD_OFF: + return; + + case RETBLEED_CMD_UNRET: + if (IS_ENABLED(CONFIG_CPU_UNRET_ENTRY)) { + retbleed_mitigation = RETBLEED_MITIGATION_UNRET; + } else { + pr_err("WARNING: kernel not compiled with CPU_UNRET_ENTRY.\n"); + goto do_cmd_auto; + } + break; + + case RETBLEED_CMD_IBPB: + if (!boot_cpu_has(X86_FEATURE_IBPB)) { + pr_err("WARNING: CPU does not support IBPB.\n"); + goto do_cmd_auto; + } else if (IS_ENABLED(CONFIG_CPU_IBPB_ENTRY)) { + retbleed_mitigation = RETBLEED_MITIGATION_IBPB; + } else { + pr_err("WARNING: kernel not compiled with CPU_IBPB_ENTRY.\n"); + goto do_cmd_auto; + } + break; + +do_cmd_auto: + case RETBLEED_CMD_AUTO: + default: + if (boot_cpu_data.x86_vendor == X86_VENDOR_AMD || + boot_cpu_data.x86_vendor == X86_VENDOR_HYGON) { + if (IS_ENABLED(CONFIG_CPU_UNRET_ENTRY)) + retbleed_mitigation = RETBLEED_MITIGATION_UNRET; + else if (IS_ENABLED(CONFIG_CPU_IBPB_ENTRY) && boot_cpu_has(X86_FEATURE_IBPB)) + retbleed_mitigation = RETBLEED_MITIGATION_IBPB; + } + + /* + * The Intel mitigation (IBRS or eIBRS) was already selected in + * spectre_v2_select_mitigation(). 'retbleed_mitigation' will + * be set accordingly below. + */ + + break; + } + + switch (retbleed_mitigation) { + case RETBLEED_MITIGATION_UNRET: + setup_force_cpu_cap(X86_FEATURE_RETHUNK); + setup_force_cpu_cap(X86_FEATURE_UNRET); + + if (boot_cpu_data.x86_vendor != X86_VENDOR_AMD && + boot_cpu_data.x86_vendor != X86_VENDOR_HYGON) + pr_err(RETBLEED_UNTRAIN_MSG); + + mitigate_smt = true; + break; + + case RETBLEED_MITIGATION_IBPB: + setup_force_cpu_cap(X86_FEATURE_ENTRY_IBPB); + mitigate_smt = true; + break; + + default: + break; + } + + if (mitigate_smt && !boot_cpu_has(X86_FEATURE_STIBP) && + (retbleed_nosmt || cpu_mitigations_auto_nosmt())) + cpu_smt_disable(false); + + /* + * Let IBRS trump all on Intel without affecting the effects of the + * retbleed= cmdline option. + */ + if (boot_cpu_data.x86_vendor == X86_VENDOR_INTEL) { + switch (spectre_v2_enabled) { + case SPECTRE_V2_IBRS: + retbleed_mitigation = RETBLEED_MITIGATION_IBRS; + break; + case SPECTRE_V2_EIBRS: + case SPECTRE_V2_EIBRS_RETPOLINE: + case SPECTRE_V2_EIBRS_LFENCE: + retbleed_mitigation = RETBLEED_MITIGATION_EIBRS; + break; + default: + pr_err(RETBLEED_INTEL_MSG); + } + } + + pr_info("%s\n", retbleed_strings[retbleed_mitigation]); +} + +#undef pr_fmt +#define pr_fmt(fmt) "Spectre V2 : " fmt + static enum spectre_v2_user_mitigation spectre_v2_user_stibp __ro_after_init = SPECTRE_V2_USER_NONE; static enum spectre_v2_user_mitigation spectre_v2_user_ibpb __ro_after_init = @@ -695,6 +1009,7 @@ SPECTRE_V2_CMD_EIBRS, SPECTRE_V2_CMD_EIBRS_RETPOLINE, SPECTRE_V2_CMD_EIBRS_LFENCE, + SPECTRE_V2_CMD_IBRS, }; enum spectre_v2_user_cmd { @@ -735,13 +1050,15 @@ pr_info("spectre_v2_user=%s forced on command line.\n", reason); } +static __ro_after_init enum spectre_v2_mitigation_cmd spectre_v2_cmd; + static enum spectre_v2_user_cmd __init -spectre_v2_parse_user_cmdline(enum spectre_v2_mitigation_cmd v2_cmd) +spectre_v2_parse_user_cmdline(void) { char arg[20]; int ret, i; - switch (v2_cmd) { + switch (spectre_v2_cmd) { case SPECTRE_V2_CMD_NONE: return SPECTRE_V2_USER_CMD_NONE; case SPECTRE_V2_CMD_FORCE: @@ -767,15 +1084,16 @@ return SPECTRE_V2_USER_CMD_AUTO; } -static inline bool spectre_v2_in_eibrs_mode(enum spectre_v2_mitigation mode) +static inline bool spectre_v2_in_ibrs_mode(enum spectre_v2_mitigation mode) { - return (mode == SPECTRE_V2_EIBRS || - mode == SPECTRE_V2_EIBRS_RETPOLINE || - mode == SPECTRE_V2_EIBRS_LFENCE); + return mode == SPECTRE_V2_IBRS || + mode == SPECTRE_V2_EIBRS || + mode == SPECTRE_V2_EIBRS_RETPOLINE || + mode == SPECTRE_V2_EIBRS_LFENCE; } static void __init -spectre_v2_user_select_mitigation(enum spectre_v2_mitigation_cmd v2_cmd) +spectre_v2_user_select_mitigation(void) { enum spectre_v2_user_mitigation mode = SPECTRE_V2_USER_NONE; bool smt_possible = IS_ENABLED(CONFIG_SMP); @@ -788,7 +1106,7 @@ cpu_smt_control == CPU_SMT_NOT_SUPPORTED) smt_possible = false; - cmd = spectre_v2_parse_user_cmdline(v2_cmd); + cmd = spectre_v2_parse_user_cmdline(); switch (cmd) { case SPECTRE_V2_USER_CMD_NONE: goto set_mode; @@ -836,12 +1154,12 @@ } /* - * If no STIBP, enhanced IBRS is enabled or SMT impossible, STIBP is not - * required. + * If no STIBP, IBRS or enhanced IBRS is enabled, or SMT impossible, + * STIBP is not required. */ if (!boot_cpu_has(X86_FEATURE_STIBP) || !smt_possible || - spectre_v2_in_eibrs_mode(spectre_v2_enabled)) + spectre_v2_in_ibrs_mode(spectre_v2_enabled)) return; /* @@ -853,6 +1171,13 @@ boot_cpu_has(X86_FEATURE_AMD_STIBP_ALWAYS_ON)) mode = SPECTRE_V2_USER_STRICT_PREFERRED; + if (retbleed_mitigation == RETBLEED_MITIGATION_UNRET) { + if (mode != SPECTRE_V2_USER_STRICT && + mode != SPECTRE_V2_USER_STRICT_PREFERRED) + pr_info("Selecting STIBP always-on mode to complement retbleed mitigation\n"); + mode = SPECTRE_V2_USER_STRICT_PREFERRED; + } + spectre_v2_user_stibp = mode; set_mode: @@ -866,6 +1191,7 @@ [SPECTRE_V2_EIBRS] = "Mitigation: Enhanced IBRS", [SPECTRE_V2_EIBRS_LFENCE] = "Mitigation: Enhanced IBRS + LFENCE", [SPECTRE_V2_EIBRS_RETPOLINE] = "Mitigation: Enhanced IBRS + Retpolines", + [SPECTRE_V2_IBRS] = "Mitigation: IBRS", }; static const struct { @@ -883,6 +1209,7 @@ { "eibrs,lfence", SPECTRE_V2_CMD_EIBRS_LFENCE, false }, { "eibrs,retpoline", SPECTRE_V2_CMD_EIBRS_RETPOLINE, false }, { "auto", SPECTRE_V2_CMD_AUTO, false }, + { "ibrs", SPECTRE_V2_CMD_IBRS, false }, }; static void __init spec_v2_print_cond(const char *reason, bool secure) @@ -947,0 +1275,24 @@ + if (cmd == SPECTRE_V2_CMD_IBRS && !IS_ENABLED(CONFIG_CPU_IBRS_ENTRY)) { + pr_err("%s selected but not compiled in. Switching to AUTO select\n", + mitigation_options[i].option); + return SPECTRE_V2_CMD_AUTO; + } + + if (cmd == SPECTRE_V2_CMD_IBRS && boot_cpu_data.x86_vendor != X86_VENDOR_INTEL) { + pr_err("%s selected but not Intel CPU. Switching to AUTO select\n", + mitigation_options[i].option); + return SPECTRE_V2_CMD_AUTO; + } + + if (cmd == SPECTRE_V2_CMD_IBRS && !boot_cpu_has(X86_FEATURE_IBRS)) { + pr_err("%s selected but CPU doesn't have IBRS. Switching to AUTO select\n", + mitigation_options[i].option); + return SPECTRE_V2_CMD_AUTO; + } + + if (cmd == SPECTRE_V2_CMD_IBRS && boot_cpu_has(X86_FEATURE_XENPV)) { + pr_err("%s selected but running as XenPV guest. Switching to AUTO select\n", + mitigation_options[i].option); + return SPECTRE_V2_CMD_AUTO; + } + @@ -960,6 +1311,22 @@ return SPECTRE_V2_RETPOLINE; } +/* Disable in-kernel use of non-RSB RET predictors */ +static void __init spec_ctrl_disable_kernel_rrsba(void) +{ + u64 ia32_cap; + + if (!boot_cpu_has(X86_FEATURE_RRSBA_CTRL)) + return; + + ia32_cap = x86_read_arch_cap_msr(); + + if (ia32_cap & ARCH_CAP_RRSBA) { + x86_spec_ctrl_base |= SPEC_CTRL_RRSBA_DIS_S; + write_spec_ctrl_current(x86_spec_ctrl_base, true); + } +} + static void __init spectre_v2_select_mitigation(void) { enum spectre_v2_mitigation_cmd cmd = spectre_v2_parse_cmdline(); @@ -984,6 +1351,15 @@ break; } + if (IS_ENABLED(CONFIG_CPU_IBRS_ENTRY) && + boot_cpu_has_bug(X86_BUG_RETBLEED) && + retbleed_cmd != RETBLEED_CMD_OFF && + boot_cpu_has(X86_FEATURE_IBRS) && + boot_cpu_data.x86_vendor == X86_VENDOR_INTEL) { + mode = SPECTRE_V2_IBRS; + break; + } + mode = spectre_v2_select_retpoline(); break; @@ -1000,6 +1376,10 @@ mode = spectre_v2_select_retpoline(); break; + case SPECTRE_V2_CMD_IBRS: + mode = SPECTRE_V2_IBRS; + break; + case SPECTRE_V2_CMD_EIBRS: mode = SPECTRE_V2_EIBRS; break; @@ -1016,10 +1396,9 @@ if (mode == SPECTRE_V2_EIBRS && unprivileged_ebpf_enabled()) pr_err(SPECTRE_V2_EIBRS_EBPF_MSG); - if (spectre_v2_in_eibrs_mode(mode)) { - /* Force it so VMEXIT will restore correctly */ + if (spectre_v2_in_ibrs_mode(mode)) { x86_spec_ctrl_base |= SPEC_CTRL_IBRS; - wrmsrl(MSR_IA32_SPEC_CTRL, x86_spec_ctrl_base); + write_spec_ctrl_current(x86_spec_ctrl_base, true); } switch (mode) { @@ -1027,6 +1406,10 @@ case SPECTRE_V2_EIBRS: break; + case SPECTRE_V2_IBRS: + setup_force_cpu_cap(X86_FEATURE_KERNEL_IBRS); + break; + case SPECTRE_V2_LFENCE: case SPECTRE_V2_EIBRS_LFENCE: setup_force_cpu_cap(X86_FEATURE_RETPOLINE_LFENCE); @@ -1038,43 +1421,107 @@ break; } + /* + * Disable alternate RSB predictions in kernel when indirect CALLs and + * JMPs gets protection against BHI and Intramode-BTI, but RET + * prediction from a non-RSB predictor is still a risk. + */ + if (mode == SPECTRE_V2_EIBRS_LFENCE || + mode == SPECTRE_V2_EIBRS_RETPOLINE || + mode == SPECTRE_V2_RETPOLINE) + spec_ctrl_disable_kernel_rrsba(); + spectre_v2_enabled = mode; pr_info("%s\n", spectre_v2_strings[mode]); /* - * If spectre v2 protection has been enabled, unconditionally fill - * RSB during a context switch; this protects against two independent - * issues: + * If Spectre v2 protection has been enabled, fill the RSB during a + * context switch. In general there are two types of RSB attacks + * across context switches, for which the CALLs/RETs may be unbalanced. + * + * 1) RSB underflow + * + * Some Intel parts have "bottomless RSB". When the RSB is empty, + * speculated return targets may come from the branch predictor, + * which could have a user-poisoned BTB or BHB entry. + * + * AMD has it even worse: *all* returns are speculated from the BTB, + * regardless of the state of the RSB. + * + * When IBRS or eIBRS is enabled, the "user -> kernel" attack + * scenario is mitigated by the IBRS branch prediction isolation + * properties, so the RSB buffer filling wouldn't be necessary to + * protect against this type of attack. + * + * The "user -> user" attack scenario is mitigated by RSB filling. + * + * 2) Poisoned RSB entry + * + * If the 'next' in-kernel return stack is shorter than 'prev', + * 'next' could be tricked into speculating with a user-poisoned RSB + * entry. * - * - RSB underflow (and switch to BTB) on Skylake+ - * - SpectreRSB variant of spectre v2 on X86_BUG_SPECTRE_V2 CPUs + * The "user -> kernel" attack scenario is mitigated by SMEP and + * eIBRS. + * + * The "user -> user" scenario, also known as SpectreBHB, requires + * RSB clearing. + * + * So to mitigate all cases, unconditionally fill RSB on context + * switches. + * + * FIXME: Is this pointless for retbleed-affected AMD? */ setup_force_cpu_cap(X86_FEATURE_RSB_CTXSW); pr_info("Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch\n"); /* - * Retpoline means the kernel is safe because it has no indirect - * branches. Enhanced IBRS protects firmware too, so, enable restricted - * speculation around firmware calls only when Enhanced IBRS isn't - * supported. + * Similar to context switches, there are two types of RSB attacks + * after vmexit: + * + * 1) RSB underflow + * + * 2) Poisoned RSB entry + * + * When retpoline is enabled, both are mitigated by filling/clearing + * the RSB. + * + * When IBRS is enabled, while #1 would be mitigated by the IBRS branch + * prediction isolation protections, RSB still needs to be cleared + * because of #2. Note that SMEP provides no protection here, unlike + * user-space-poisoned RSB entries. + * + * eIBRS, on the other hand, has RSB-poisoning protections, so it + * doesn't need RSB clearing after vmexit. + */ + if (boot_cpu_has(X86_FEATURE_RETPOLINE) || + boot_cpu_has(X86_FEATURE_KERNEL_IBRS)) + setup_force_cpu_cap(X86_FEATURE_RSB_VMEXIT); + + /* + * Retpoline protects the kernel, but doesn't protect firmware. IBRS + * and Enhanced IBRS protect firmware too, so enable IBRS around + * firmware calls only when IBRS / Enhanced IBRS aren't otherwise + * enabled. * * Use "mode" to check Enhanced IBRS instead of boot_cpu_has(), because * the user might select retpoline on the kernel command line and if * the CPU supports Enhanced IBRS, kernel might un-intentionally not * enable IBRS around firmware calls. */ - if (boot_cpu_has(X86_FEATURE_IBRS) && !spectre_v2_in_eibrs_mode(mode)) { + if (boot_cpu_has(X86_FEATURE_IBRS) && !spectre_v2_in_ibrs_mode(mode)) { setup_force_cpu_cap(X86_FEATURE_USE_IBRS_FW); pr_info("Enabling Restricted Speculation for firmware calls\n"); } /* Set up IBPB and STIBP depending on the general spectre V2 command */ - spectre_v2_user_select_mitigation(cmd); + spectre_v2_cmd = cmd; } static void update_stibp_msr(void * __unused) { - wrmsrl(MSR_IA32_SPEC_CTRL, x86_spec_ctrl_base); + u64 val = spec_ctrl_current() | (x86_spec_ctrl_base & SPEC_CTRL_STIBP); + write_spec_ctrl_current(val, true); } /* Update x86_spec_ctrl_base in case SMT state changed. */ @@ -1109,6 +1556,8 @@ /* Update the static key controlling the MDS CPU buffer clear in idle */ static void update_mds_branch_idle(void) { + u64 ia32_cap = x86_read_arch_cap_msr(); + /* * Enable the idle clearing if SMT is active on CPUs which are * affected only by MSBDS and not any other MDS variant. @@ -1120,14 +1569,17 @@ if (!boot_cpu_has_bug(X86_BUG_MSBDS_ONLY)) return; - if (sched_smt_active()) + if (sched_smt_active()) { static_branch_enable(&mds_idle_clear); - else + } else if (mmio_mitigation == MMIO_MITIGATION_OFF || + (ia32_cap & ARCH_CAP_FBSDP_NO)) { static_branch_disable(&mds_idle_clear); + } } #define MDS_MSG_SMT "MDS CPU bug present and SMT on, data leak possible. See https://www.kernel.org/doc/html/latest/admin-guide/hw-vuln/mds.html for more details.\n" #define TAA_MSG_SMT "TAA CPU bug present and SMT on, data leak possible. See https://www.kernel.org/doc/html/latest/admin-guide/hw-vuln/tsx_async_abort.html for more details.\n" +#define MMIO_MSG_SMT "MMIO Stale Data CPU bug present and SMT on, data leak possible. See https://www.kernel.org/doc/html/latest/admin-guide/hw-vuln/processor_mmio_stale_data.html for more details.\n" void cpu_bugs_smt_update(void) { @@ -1172,6 +1624,16 @@ break; } + switch (mmio_mitigation) { + case MMIO_MITIGATION_VERW: + case MMIO_MITIGATION_UCODE_NEEDED: + if (sched_smt_active()) + pr_warn_once(MMIO_MSG_SMT); + break; + case MMIO_MITIGATION_OFF: + break; + } + mutex_unlock(&spec_ctrl_mutex); } @@ -1276,16 +1738,6 @@ } /* - * If SSBD is controlled by the SPEC_CTRL MSR, then set the proper - * bit in the mask to allow guests to use the mitigation even in the - * case where the host does not enable it. - */ - if (static_cpu_has(X86_FEATURE_SPEC_CTRL_SSBD) || - static_cpu_has(X86_FEATURE_AMD_SSBD)) { - x86_spec_ctrl_mask |= SPEC_CTRL_SSBD; - } - - /* * We have three CPU feature flags that are in play here: * - X86_BUG_SPEC_STORE_BYPASS - CPU is susceptible. * - X86_FEATURE_SSBD - CPU is able to turn off speculative store bypass @@ -1302,7 +1754,7 @@ x86_amd_ssb_disable(); } else { x86_spec_ctrl_base |= SPEC_CTRL_SSBD; - wrmsrl(MSR_IA32_SPEC_CTRL, x86_spec_ctrl_base); + write_spec_ctrl_current(x86_spec_ctrl_base, true); } } @@ -1553,7 +2005,7 @@ void x86_spec_ctrl_setup_ap(void) { if (boot_cpu_has(X86_FEATURE_MSR_SPEC_CTRL)) - wrmsrl(MSR_IA32_SPEC_CTRL, x86_spec_ctrl_base); + write_spec_ctrl_current(x86_spec_ctrl_base, true); if (ssb_mode == SPEC_STORE_BYPASS_DISABLE) x86_amd_ssb_disable(); @@ -1774,9 +2226,23 @@ sched_smt_active() ? "vulnerable" : "disabled"); } +static ssize_t mmio_stale_data_show_state(char *buf) +{ + if (mmio_mitigation == MMIO_MITIGATION_OFF) + return sysfs_emit(buf, "%s\n", mmio_strings[mmio_mitigation]); + + if (boot_cpu_has(X86_FEATURE_HYPERVISOR)) { + return sysfs_emit(buf, "%s; SMT Host state unknown\n", + mmio_strings[mmio_mitigation]); + } + + return sysfs_emit(buf, "%s; SMT %s\n", mmio_strings[mmio_mitigation], + sched_smt_active() ? "vulnerable" : "disabled"); +} + static char *stibp_state(void) { - if (spectre_v2_in_eibrs_mode(spectre_v2_enabled)) + if (spectre_v2_in_ibrs_mode(spectre_v2_enabled)) return ""; switch (spectre_v2_user_stibp) { @@ -1832,6 +2298,24 @@ return sprintf(buf, "%s\n", srbds_strings[srbds_mitigation]); } +static ssize_t retbleed_show_state(char *buf) +{ + if (retbleed_mitigation == RETBLEED_MITIGATION_UNRET) { + if (boot_cpu_data.x86_vendor != X86_VENDOR_AMD && + boot_cpu_data.x86_vendor != X86_VENDOR_HYGON) + return sprintf(buf, "Vulnerable: untrained return thunk on non-Zen uarch\n"); + + return sprintf(buf, "%s; SMT %s\n", + retbleed_strings[retbleed_mitigation], + !sched_smt_active() ? "disabled" : + spectre_v2_user_stibp == SPECTRE_V2_USER_STRICT || + spectre_v2_user_stibp == SPECTRE_V2_USER_STRICT_PREFERRED ? + "enabled with STIBP protection" : "vulnerable"); + } + + return sprintf(buf, "%s\n", retbleed_strings[retbleed_mitigation]); +} + static ssize_t cpu_show_common(struct device *dev, struct device_attribute *attr, char *buf, unsigned int bug) { @@ -1874,6 +2358,12 @@ case X86_BUG_SRBDS: return srbds_show_state(buf); + case X86_BUG_MMIO_STALE_DATA: + return mmio_stale_data_show_state(buf); + + case X86_BUG_RETBLEED: + return retbleed_show_state(buf); + default: break; } @@ -1927,2 +2417,12 @@ } + +ssize_t cpu_show_mmio_stale_data(struct device *dev, struct device_attribute *attr, char *buf) +{ + return cpu_show_common(dev, attr, buf, X86_BUG_MMIO_STALE_DATA); +} + +ssize_t cpu_show_retbleed(struct device *dev, struct device_attribute *attr, char *buf) +{ + return cpu_show_common(dev, attr, buf, X86_BUG_RETBLEED); +} #endif diff -u linux-intel-iotg-5.15-5.15.0/arch/x86/kernel/cpu/common.c linux-intel-iotg-5.15-5.15.0/arch/x86/kernel/cpu/common.c --- linux-intel-iotg-5.15-5.15.0/arch/x86/kernel/cpu/common.c +++ linux-intel-iotg-5.15-5.15.0/arch/x86/kernel/cpu/common.c @@ -1095,24 +1095,60 @@ {} }; +#define VULNBL(vendor, family, model, blacklist) \ + X86_MATCH_VENDOR_FAM_MODEL(vendor, family, model, blacklist) + #define VULNBL_INTEL_STEPPINGS(model, steppings, issues) \ X86_MATCH_VENDOR_FAM_MODEL_STEPPINGS_FEATURE(INTEL, 6, \ INTEL_FAM6_##model, steppings, \ X86_FEATURE_ANY, issues) +#define VULNBL_AMD(family, blacklist) \ + VULNBL(AMD, family, X86_MODEL_ANY, blacklist) + +#define VULNBL_HYGON(family, blacklist) \ + VULNBL(HYGON, family, X86_MODEL_ANY, blacklist) + #define SRBDS BIT(0) +/* CPU is affected by X86_BUG_MMIO_STALE_DATA */ +#define MMIO BIT(1) +/* CPU is affected by Shared Buffers Data Sampling (SBDS), a variant of X86_BUG_MMIO_STALE_DATA */ +#define MMIO_SBDS BIT(2) +/* CPU is affected by RETbleed, speculating where you would not expect it */ +#define RETBLEED BIT(3) static const struct x86_cpu_id cpu_vuln_blacklist[] __initconst = { VULNBL_INTEL_STEPPINGS(IVYBRIDGE, X86_STEPPING_ANY, SRBDS), VULNBL_INTEL_STEPPINGS(HASWELL, X86_STEPPING_ANY, SRBDS), VULNBL_INTEL_STEPPINGS(HASWELL_L, X86_STEPPING_ANY, SRBDS), VULNBL_INTEL_STEPPINGS(HASWELL_G, X86_STEPPING_ANY, SRBDS), + VULNBL_INTEL_STEPPINGS(HASWELL_X, X86_STEPPING_ANY, MMIO), + VULNBL_INTEL_STEPPINGS(BROADWELL_D, X86_STEPPING_ANY, MMIO), VULNBL_INTEL_STEPPINGS(BROADWELL_G, X86_STEPPING_ANY, SRBDS), + 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), - VULNBL_INTEL_STEPPINGS(SKYLAKE, X86_STEPPING_ANY, SRBDS), - VULNBL_INTEL_STEPPINGS(KABYLAKE_L, X86_STEPPINGS(0x0, 0xC), SRBDS), - VULNBL_INTEL_STEPPINGS(KABYLAKE, X86_STEPPINGS(0x0, 0xD), 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, 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(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(COMETLAKE_L, X86_STEPPINGS(0x0, 0x0), MMIO | RETBLEED), + VULNBL_INTEL_STEPPINGS(COMETLAKE_L, X86_STEPPING_ANY, MMIO | MMIO_SBDS | RETBLEED), + VULNBL_INTEL_STEPPINGS(LAKEFIELD, X86_STEPPING_ANY, MMIO | MMIO_SBDS | RETBLEED), + VULNBL_INTEL_STEPPINGS(ROCKETLAKE, X86_STEPPING_ANY, MMIO | RETBLEED), + 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), + + VULNBL_AMD(0x15, RETBLEED), + VULNBL_AMD(0x16, RETBLEED), + VULNBL_AMD(0x17, RETBLEED), + VULNBL_HYGON(0x18, RETBLEED), {} }; @@ -1133,6 +1169,13 @@ return ia32_cap; } +static bool arch_cap_mmio_immune(u64 ia32_cap) +{ + return (ia32_cap & ARCH_CAP_FBSDP_NO && + ia32_cap & ARCH_CAP_PSDP_NO && + ia32_cap & ARCH_CAP_SBDR_SSDP_NO); +} + static void __init cpu_set_bug_bits(struct cpuinfo_x86 *c) { u64 ia32_cap = x86_read_arch_cap_msr(); @@ -1186,12 +1229,32 @@ /* * SRBDS affects CPUs which support RDRAND or RDSEED and are listed * in the vulnerability blacklist. + * + * Some of the implications and mitigation of Shared Buffers Data + * Sampling (SBDS) are similar to SRBDS. Give SBDS same treatment as + * SRBDS. */ if ((cpu_has(c, X86_FEATURE_RDRAND) || cpu_has(c, X86_FEATURE_RDSEED)) && - cpu_matches(cpu_vuln_blacklist, SRBDS)) + cpu_matches(cpu_vuln_blacklist, SRBDS | MMIO_SBDS)) setup_force_cpu_bug(X86_BUG_SRBDS); + /* + * Processor MMIO Stale Data bug enumeration + * + * Affected CPU list is generally enough to enumerate the vulnerability, + * but for virtualization case check for ARCH_CAP MSR bits also, VMM may + * not want the guest to enumerate the bug. + */ + if (cpu_matches(cpu_vuln_blacklist, MMIO) && + !arch_cap_mmio_immune(ia32_cap)) + setup_force_cpu_bug(X86_BUG_MMIO_STALE_DATA); + + if (!cpu_has(c, X86_FEATURE_BTC_NO)) { + if (cpu_matches(cpu_vuln_blacklist, RETBLEED) || (ia32_cap & ARCH_CAP_RSBA)) + setup_force_cpu_bug(X86_BUG_RETBLEED); + } + if (cpu_matches(cpu_vuln_whitelist, NO_MELTDOWN)) return; diff -u linux-intel-iotg-5.15-5.15.0/arch/x86/kernel/cpu/cpu.h linux-intel-iotg-5.15-5.15.0/arch/x86/kernel/cpu/cpu.h --- linux-intel-iotg-5.15-5.15.0/arch/x86/kernel/cpu/cpu.h +++ linux-intel-iotg-5.15-5.15.0/arch/x86/kernel/cpu/cpu.h @@ -61,6 +61,8 @@ static inline void tsx_ap_init(void) { } #endif /* CONFIG_CPU_SUP_INTEL */ +extern void init_spectral_chicken(struct cpuinfo_x86 *c); + extern void get_cpu_cap(struct cpuinfo_x86 *c); extern void get_cpu_address_sizes(struct cpuinfo_x86 *c); extern void cpu_detect_cache_sizes(struct cpuinfo_x86 *c); diff -u linux-intel-iotg-5.15-5.15.0/arch/x86/kernel/cpu/hygon.c linux-intel-iotg-5.15-5.15.0/arch/x86/kernel/cpu/hygon.c --- linux-intel-iotg-5.15-5.15.0/arch/x86/kernel/cpu/hygon.c +++ linux-intel-iotg-5.15-5.15.0/arch/x86/kernel/cpu/hygon.c @@ -302,6 +302,12 @@ /* get apicid instead of initial apic id from cpuid */ c->apicid = hard_smp_processor_id(); + /* + * XXX someone from Hygon needs to confirm this DTRT + * + init_spectral_chicken(c); + */ + set_cpu_cap(c, X86_FEATURE_ZEN); set_cpu_cap(c, X86_FEATURE_CPB); diff -u linux-intel-iotg-5.15-5.15.0/arch/x86/kernel/cpu/intel.c linux-intel-iotg-5.15-5.15.0/arch/x86/kernel/cpu/intel.c --- linux-intel-iotg-5.15-5.15.0/arch/x86/kernel/cpu/intel.c +++ linux-intel-iotg-5.15-5.15.0/arch/x86/kernel/cpu/intel.c @@ -91,7 +91,7 @@ static int __init ring3mwait_disable(char *__unused) { ring3mwait_disabled = true; - return 0; + return 1; } __setup("ring3mwait=disable", ring3mwait_disable); diff -u linux-intel-iotg-5.15-5.15.0/arch/x86/kernel/cpu/mce/amd.c linux-intel-iotg-5.15-5.15.0/arch/x86/kernel/cpu/mce/amd.c --- linux-intel-iotg-5.15-5.15.0/arch/x86/kernel/cpu/mce/amd.c +++ linux-intel-iotg-5.15-5.15.0/arch/x86/kernel/cpu/mce/amd.c @@ -1470,10 +1470,23 @@ kfree(bank); } +static void __threshold_remove_device(struct threshold_bank **bp) +{ + unsigned int bank, numbanks = this_cpu_read(mce_num_banks); + + for (bank = 0; bank < numbanks; bank++) { + if (!bp[bank]) + continue; + + threshold_remove_bank(bp[bank]); + bp[bank] = NULL; + } + kfree(bp); +} + int mce_threshold_remove_device(unsigned int cpu) { struct threshold_bank **bp = this_cpu_read(threshold_banks); - unsigned int bank, numbanks = this_cpu_read(mce_num_banks); if (!bp) return 0; @@ -1484,13 +1497,7 @@ */ this_cpu_write(threshold_banks, NULL); - for (bank = 0; bank < numbanks; bank++) { - if (bp[bank]) { - threshold_remove_bank(bp[bank]); - bp[bank] = NULL; - } - } - kfree(bp); + __threshold_remove_device(bp); return 0; } @@ -1529,13 +1536,12 @@ err = threshold_create_bank(bp, cpu, bank); - if (err) - goto out_err; + if (err) { + __threshold_remove_device(bp); + return err; + } } this_cpu_write(threshold_banks, bp); if (thresholding_irq_en) mce_threshold_vector = amd_threshold_interrupt; return 0; -out_err: - mce_threshold_remove_device(cpu); - return err; } diff -u linux-intel-iotg-5.15-5.15.0/arch/x86/kernel/cpu/mshyperv.c linux-intel-iotg-5.15-5.15.0/arch/x86/kernel/cpu/mshyperv.c --- linux-intel-iotg-5.15-5.15.0/arch/x86/kernel/cpu/mshyperv.c +++ linux-intel-iotg-5.15-5.15.0/arch/x86/kernel/cpu/mshyperv.c @@ -79,7 +79,7 @@ inc_irq_stat(hyperv_stimer0_count); if (hv_stimer0_handler) hv_stimer0_handler(); - add_interrupt_randomness(HYPERV_STIMER0_VECTOR, 0); + add_interrupt_randomness(HYPERV_STIMER0_VECTOR); ack_APIC_irq(); set_irq_regs(old_regs); diff -u linux-intel-iotg-5.15-5.15.0/arch/x86/kernel/cpu/sgx/encl.c linux-intel-iotg-5.15-5.15.0/arch/x86/kernel/cpu/sgx/encl.c --- linux-intel-iotg-5.15-5.15.0/arch/x86/kernel/cpu/sgx/encl.c +++ linux-intel-iotg-5.15-5.15.0/arch/x86/kernel/cpu/sgx/encl.c @@ -12,6 +12,92 @@ #include "encls.h" #include "sgx.h" +#define PCMDS_PER_PAGE (PAGE_SIZE / sizeof(struct sgx_pcmd)) +/* + * 32 PCMD entries share a PCMD page. PCMD_FIRST_MASK is used to + * determine the page index associated with the first PCMD entry + * within a PCMD page. + */ +#define PCMD_FIRST_MASK GENMASK(4, 0) + +/** + * reclaimer_writing_to_pcmd() - Query if any enclave page associated with + * a PCMD page is in process of being reclaimed. + * @encl: Enclave to which PCMD page belongs + * @start_addr: Address of enclave page using first entry within the PCMD page + * + * When an enclave page is reclaimed some Paging Crypto MetaData (PCMD) is + * stored. The PCMD data of a reclaimed enclave page contains enough + * information for the processor to verify the page at the time + * it is loaded back into the Enclave Page Cache (EPC). + * + * The backing storage to which enclave pages are reclaimed is laid out as + * follows: + * Encrypted enclave pages:SECS page:PCMD pages + * + * Each PCMD page contains the PCMD metadata of + * PAGE_SIZE/sizeof(struct sgx_pcmd) enclave pages. + * + * A PCMD page can only be truncated if it is (a) empty, and (b) not in the + * process of getting data (and thus soon being non-empty). (b) is tested with + * a check if an enclave page sharing the PCMD page is in the process of being + * reclaimed. + * + * The reclaimer sets the SGX_ENCL_PAGE_BEING_RECLAIMED flag when it + * intends to reclaim that enclave page - it means that the PCMD page + * associated with that enclave page is about to get some data and thus + * even if the PCMD page is empty, it should not be truncated. + * + * Context: Enclave mutex (&sgx_encl->lock) must be held. + * Return: 1 if the reclaimer is about to write to the PCMD page + * 0 if the reclaimer has no intention to write to the PCMD page + */ +static int reclaimer_writing_to_pcmd(struct sgx_encl *encl, + unsigned long start_addr) +{ + int reclaimed = 0; + int i; + + /* + * PCMD_FIRST_MASK is based on number of PCMD entries within + * PCMD page being 32. + */ + BUILD_BUG_ON(PCMDS_PER_PAGE != 32); + + for (i = 0; i < PCMDS_PER_PAGE; i++) { + struct sgx_encl_page *entry; + unsigned long addr; + + addr = start_addr + i * PAGE_SIZE; + + /* + * Stop when reaching the SECS page - it does not + * have a page_array entry and its reclaim is + * started and completed with enclave mutex held so + * it does not use the SGX_ENCL_PAGE_BEING_RECLAIMED + * flag. + */ + if (addr == encl->base + encl->size) + break; + + entry = xa_load(&encl->page_array, PFN_DOWN(addr)); + if (!entry) + continue; + + /* + * VA page slot ID uses same bit as the flag so it is important + * to ensure that the page is not already in backing store. + */ + if (entry->epc_page && + (entry->desc & SGX_ENCL_PAGE_BEING_RECLAIMED)) { + reclaimed = 1; + break; + } + } + + return reclaimed; +} + /* * Calculate byte offset of a PCMD struct associated with an enclave page. PCMD's * follow right after the EPC data in the backing storage. In addition to the @@ -47,6 +133,7 @@ unsigned long va_offset = encl_page->desc & SGX_ENCL_PAGE_VA_OFFSET_MASK; struct sgx_encl *encl = encl_page->encl; pgoff_t page_index, page_pcmd_off; + unsigned long pcmd_first_page; struct sgx_pageinfo pginfo; struct sgx_backing b; bool pcmd_page_empty; @@ -58,9 +145,14 @@ else page_index = PFN_DOWN(encl->size); + /* + * Address of enclave page using the first entry within the PCMD page. + */ + pcmd_first_page = PFN_PHYS(page_index & ~PCMD_FIRST_MASK) + encl->base; + page_pcmd_off = sgx_encl_get_backing_page_pcmd_offset(encl, page_index); - ret = sgx_encl_get_backing(encl, page_index, &b); + ret = sgx_encl_lookup_backing(encl, page_index, &b); if (ret) return ret; @@ -84,6 +176,7 @@ } memset(pcmd_page + b.pcmd_offset, 0, sizeof(struct sgx_pcmd)); + set_page_dirty(b.pcmd); /* * The area for the PCMD in the page was zeroed above. Check if the @@ -94,12 +187,20 @@ kunmap_atomic(pcmd_page); kunmap_atomic((void *)(unsigned long)pginfo.contents); - sgx_encl_put_backing(&b, false); + get_page(b.pcmd); + sgx_encl_put_backing(&b); sgx_encl_truncate_backing_page(encl, page_index); - if (pcmd_page_empty) + if (pcmd_page_empty && !reclaimer_writing_to_pcmd(encl, pcmd_first_page)) { sgx_encl_truncate_backing_page(encl, PFN_DOWN(page_pcmd_off)); + pcmd_page = kmap_atomic(b.pcmd); + if (memchr_inv(pcmd_page, 0, PAGE_SIZE)) + pr_warn("PCMD page not empty after truncate.\n"); + kunmap_atomic(pcmd_page); + } + + put_page(b.pcmd); return ret; } @@ -617,7 +718,7 @@ * 0 on success, * -errno otherwise. */ -int sgx_encl_get_backing(struct sgx_encl *encl, unsigned long page_index, +static int sgx_encl_get_backing(struct sgx_encl *encl, unsigned long page_index, struct sgx_backing *backing) { pgoff_t page_pcmd_off = sgx_encl_get_backing_page_pcmd_offset(encl, page_index); @@ -642,18 +743,113 @@ return 0; } +/* + * When called from ksgxd, returns the mem_cgroup of a struct mm stored + * in the enclave's mm_list. When not called from ksgxd, just returns + * the mem_cgroup of the current task. + */ +static struct mem_cgroup *sgx_encl_get_mem_cgroup(struct sgx_encl *encl) +{ + struct mem_cgroup *memcg = NULL; + struct sgx_encl_mm *encl_mm; + int idx; + + /* + * If called from normal task context, return the mem_cgroup + * of the current task's mm. The remainder of the handling is for + * ksgxd. + */ + if (!current_is_ksgxd()) + return get_mem_cgroup_from_mm(current->mm); + + /* + * Search the enclave's mm_list to find an mm associated with + * this enclave to charge the allocation to. + */ + idx = srcu_read_lock(&encl->srcu); + + list_for_each_entry_rcu(encl_mm, &encl->mm_list, list) { + if (!mmget_not_zero(encl_mm->mm)) + continue; + + memcg = get_mem_cgroup_from_mm(encl_mm->mm); + + mmput_async(encl_mm->mm); + + break; + } + + srcu_read_unlock(&encl->srcu, idx); + + /* + * In the rare case that there isn't an mm associated with + * the enclave, set memcg to the current active mem_cgroup. + * This will be the root mem_cgroup if there is no active + * mem_cgroup. + */ + if (!memcg) + return get_mem_cgroup_from_mm(NULL); + + return memcg; +} + /** - * sgx_encl_put_backing() - Unpin the backing storage + * sgx_encl_alloc_backing() - allocate a new backing storage page + * @encl: an enclave pointer + * @page_index: enclave page index * @backing: data for accessing backing storage for the page - * @do_write: mark pages dirty + * + * When called from ksgxd, sets the active memcg from one of the + * mms in the enclave's mm_list prior to any backing page allocation, + * in order to ensure that shmem page allocations are charged to the + * enclave. + * + * Return: + * 0 on success, + * -errno otherwise. */ -void sgx_encl_put_backing(struct sgx_backing *backing, bool do_write) +int sgx_encl_alloc_backing(struct sgx_encl *encl, unsigned long page_index, + struct sgx_backing *backing) { - if (do_write) { - set_page_dirty(backing->pcmd); - set_page_dirty(backing->contents); - } + struct mem_cgroup *encl_memcg = sgx_encl_get_mem_cgroup(encl); + struct mem_cgroup *memcg = set_active_memcg(encl_memcg); + int ret; + + ret = sgx_encl_get_backing(encl, page_index, backing); + + set_active_memcg(memcg); + mem_cgroup_put(encl_memcg); + return ret; +} + +/** + * sgx_encl_lookup_backing() - retrieve an existing backing storage page + * @encl: an enclave pointer + * @page_index: enclave page index + * @backing: data for accessing backing storage for the page + * + * Retrieve a backing page for loading data back into an EPC page with ELDU. + * It is the caller's responsibility to ensure that it is appropriate to use + * sgx_encl_lookup_backing() rather than sgx_encl_alloc_backing(). If lookup is + * not used correctly, this will cause an allocation which is not accounted for. + * + * Return: + * 0 on success, + * -errno otherwise. + */ +int sgx_encl_lookup_backing(struct sgx_encl *encl, unsigned long page_index, + struct sgx_backing *backing) +{ + return sgx_encl_get_backing(encl, page_index, backing); +} + +/** + * sgx_encl_put_backing() - Unpin the backing storage + * @backing: data for accessing backing storage for the page + */ +void sgx_encl_put_backing(struct sgx_backing *backing) +{ put_page(backing->pcmd); put_page(backing->contents); } diff -u linux-intel-iotg-5.15-5.15.0/arch/x86/kernel/cpu/sgx/main.c linux-intel-iotg-5.15-5.15.0/arch/x86/kernel/cpu/sgx/main.c --- linux-intel-iotg-5.15-5.15.0/arch/x86/kernel/cpu/sgx/main.c +++ linux-intel-iotg-5.15-5.15.0/arch/x86/kernel/cpu/sgx/main.c @@ -170,6 +170,8 @@ backing->pcmd_offset; ret = __ewb(&pginfo, sgx_get_epc_virt_addr(epc_page), va_slot); + set_page_dirty(backing->pcmd); + set_page_dirty(backing->contents); kunmap_atomic((void *)(unsigned long)(pginfo.metadata - backing->pcmd_offset)); @@ -287,9 +289,10 @@ sgx_encl_ewb(epc_page, backing); encl_page->epc_page = NULL; encl->secs_child_cnt--; + sgx_encl_put_backing(backing); if (!encl->secs_child_cnt && test_bit(SGX_ENCL_INITIALIZED, &encl->flags)) { - ret = sgx_encl_get_backing(encl, PFN_DOWN(encl->size), + ret = sgx_encl_alloc_backing(encl, PFN_DOWN(encl->size), &secs_backing); if (ret) goto out; @@ -299,7 +302,7 @@ sgx_encl_free_epc_page(encl->secs.epc_page); encl->secs.epc_page = NULL; - sgx_encl_put_backing(&secs_backing, true); + sgx_encl_put_backing(&secs_backing); } out: @@ -360,11 +363,14 @@ goto skip; page_index = PFN_DOWN(encl_page->desc - encl_page->encl->base); - ret = sgx_encl_get_backing(encl_page->encl, page_index, &backing[i]); - if (ret) - goto skip; mutex_lock(&encl_page->encl->lock); + ret = sgx_encl_alloc_backing(encl_page->encl, page_index, &backing[i]); + if (ret) { + mutex_unlock(&encl_page->encl->lock); + goto skip; + } + encl_page->desc |= SGX_ENCL_PAGE_BEING_RECLAIMED; mutex_unlock(&encl_page->encl->lock); continue; @@ -392,7 +398,6 @@ encl_page = epc_page->owner; sgx_reclaimer_write(epc_page, &backing[i]); - sgx_encl_put_backing(&backing[i], true); kref_put(&encl_page->encl->refcount, sgx_encl_release); epc_page->flags &= ~SGX_EPC_PAGE_RECLAIMER_TRACKED; @@ -457,6 +462,11 @@ return true; } +bool current_is_ksgxd(void) +{ + return current == ksgxd_tsk; +} + static struct sgx_epc_page *__sgx_alloc_epc_page_from_node(int nid) { struct sgx_numa_node *node = &sgx_numa_nodes[nid]; diff -u linux-intel-iotg-5.15-5.15.0/arch/x86/kernel/fpu/core.c linux-intel-iotg-5.15-5.15.0/arch/x86/kernel/fpu/core.c --- linux-intel-iotg-5.15-5.15.0/arch/x86/kernel/fpu/core.c +++ linux-intel-iotg-5.15-5.15.0/arch/x86/kernel/fpu/core.c @@ -40,17 +40,7 @@ */ struct fpstate init_fpstate __ro_after_init; -/* - * Track whether the kernel is using the FPU state - * currently. - * - * This flag is used: - * - * - by IRQ context code to potentially use the FPU - * if it's unused. - * - * - to debug kernel_fpu_begin()/end() correctness - */ +/* Track in-kernel FPU usage */ static DEFINE_PER_CPU(bool, in_kernel_fpu); /* @@ -58,42 +48,37 @@ */ DEFINE_PER_CPU(struct fpu *, fpu_fpregs_owner_ctx); -static bool kernel_fpu_disabled(void) -{ - return this_cpu_read(in_kernel_fpu); -} - -static bool interrupted_kernel_fpu_idle(void) -{ - return !kernel_fpu_disabled(); -} - -/* - * Were we in user mode (or vm86 mode) when we were - * interrupted? - * - * Doing kernel_fpu_begin/end() is ok if we are running - * in an interrupt context from user mode - we'll just - * save the FPU state as required. - */ -static bool interrupted_user_mode(void) -{ - struct pt_regs *regs = get_irq_regs(); - return regs && user_mode(regs); -} - /* * Can we use the FPU in kernel mode with the * whole "kernel_fpu_begin/end()" sequence? - * - * It's always ok in process context (ie "not interrupt") - * but it is sometimes ok even from an irq. */ bool irq_fpu_usable(void) { - return !in_interrupt() || - interrupted_user_mode() || - interrupted_kernel_fpu_idle(); + if (WARN_ON_ONCE(in_nmi())) + return false; + + /* In kernel FPU usage already active? */ + if (this_cpu_read(in_kernel_fpu)) + return false; + + /* + * When not in NMI or hard interrupt context, FPU can be used in: + * + * - Task context except from within fpregs_lock()'ed critical + * regions. + * + * - Soft interrupt processing context which cannot happen + * while in a fpregs_lock()'ed critical region. + */ + if (!in_hardirq()) + return true; + + /* + * In hard interrupt context it's safe when soft interrupts + * are enabled, which means the interrupt did not hit in + * a fpregs_lock()'ed critical region. + */ + return !softirq_count(); } EXPORT_SYMBOL(irq_fpu_usable); diff -u linux-intel-iotg-5.15-5.15.0/arch/x86/kernel/fpu/signal.c linux-intel-iotg-5.15-5.15.0/arch/x86/kernel/fpu/signal.c --- linux-intel-iotg-5.15-5.15.0/arch/x86/kernel/fpu/signal.c +++ linux-intel-iotg-5.15-5.15.0/arch/x86/kernel/fpu/signal.c @@ -309,7 +309,7 @@ if (ret != X86_TRAP_PF) return false; - if (!fault_in_pages_readable(buf, size)) + if (!fault_in_readable(buf, size)) goto retry; return false; } diff -u linux-intel-iotg-5.15-5.15.0/arch/x86/kernel/head_32.S linux-intel-iotg-5.15-5.15.0/arch/x86/kernel/head_32.S --- linux-intel-iotg-5.15-5.15.0/arch/x86/kernel/head_32.S +++ linux-intel-iotg-5.15-5.15.0/arch/x86/kernel/head_32.S @@ -23,6 +23,7 @@ #include #include #include +#include #include #include #include @@ -342,7 +343,7 @@ __INIT setup_once: andl $0,setup_once_ref /* Once is enough, thanks */ - ret + RET SYM_FUNC_START(early_idt_handler_array) # 36(%esp) %eflags diff -u linux-intel-iotg-5.15-5.15.0/arch/x86/kernel/kvm.c linux-intel-iotg-5.15-5.15.0/arch/x86/kernel/kvm.c --- linux-intel-iotg-5.15-5.15.0/arch/x86/kernel/kvm.c +++ linux-intel-iotg-5.15-5.15.0/arch/x86/kernel/kvm.c @@ -66,6 +66,7 @@ DEFINE_PER_CPU_DECRYPTED(struct kvm_steal_time, steal_time) __aligned(64) __visible; static int has_steal_clock = 0; +static int has_guest_poll = 0; /* * No need for any "IO delay" on KVM */ @@ -187,7 +188,7 @@ { u32 key = hash_32(token, KVM_TASK_SLEEP_HASHBITS); struct kvm_task_sleep_head *b = &async_pf_sleepers[key]; - struct kvm_task_sleep_node *n; + struct kvm_task_sleep_node *n, *dummy = NULL; if (token == ~0) { apf_task_wake_all(); @@ -199,28 +200,41 @@ n = _find_apf_task(b, token); if (!n) { /* - * async PF was not yet handled. - * Add dummy entry for the token. + * Async #PF not yet handled, add a dummy entry for the token. + * Allocating the token must be down outside of the raw lock + * as the allocator is preemptible on PREEMPT_RT kernels. */ - n = kzalloc(sizeof(*n), GFP_ATOMIC); - if (!n) { + if (!dummy) { + raw_spin_unlock(&b->lock); + dummy = kzalloc(sizeof(*dummy), GFP_ATOMIC); + /* - * Allocation failed! Busy wait while other cpu - * handles async PF. + * Continue looping on allocation failure, eventually + * the async #PF will be handled and allocating a new + * node will be unnecessary. + */ + if (!dummy) + cpu_relax(); + + /* + * Recheck for async #PF completion before enqueueing + * the dummy token to avoid duplicate list entries. */ - raw_spin_unlock(&b->lock); - cpu_relax(); goto again; } - n->token = token; - n->cpu = smp_processor_id(); - init_swait_queue_head(&n->wq); - hlist_add_head(&n->link, &b->list); + dummy->token = token; + dummy->cpu = smp_processor_id(); + init_swait_queue_head(&dummy->wq); + hlist_add_head(&dummy->link, &b->list); + dummy = NULL; } else { apf_task_wake_one(n); } raw_spin_unlock(&b->lock); - return; + + /* A dummy token might be allocated and ultimately not used. */ + if (dummy) + kfree(dummy); } EXPORT_SYMBOL_GPL(kvm_async_pf_task_wake); @@ -650,14 +664,26 @@ static int kvm_suspend(void) { + u64 val = 0; + kvm_guest_cpu_offline(false); +#ifdef CONFIG_ARCH_CPUIDLE_HALTPOLL + if (kvm_para_has_feature(KVM_FEATURE_POLL_CONTROL)) + rdmsrl(MSR_KVM_POLL_CONTROL, val); + has_guest_poll = !(val & 1); +#endif return 0; } static void kvm_resume(void) { kvm_cpu_online(raw_smp_processor_id()); + +#ifdef CONFIG_ARCH_CPUIDLE_HALTPOLL + if (kvm_para_has_feature(KVM_FEATURE_POLL_CONTROL) && has_guest_poll) + wrmsrl(MSR_KVM_POLL_CONTROL, 0); +#endif } static struct syscore_ops kvm_syscore_ops = { @@ -922,7 +948,7 @@ "movq __per_cpu_offset(,%rdi,8), %rax;" "cmpb $0, " __stringify(KVM_STEAL_TIME_preempted) "+steal_time(%rax);" "setne %al;" -"ret;" +ASM_RET ".size __raw_callee_save___kvm_vcpu_is_preempted, .-__raw_callee_save___kvm_vcpu_is_preempted;" ".popsection"); diff -u linux-intel-iotg-5.15-5.15.0/arch/x86/kernel/module.c linux-intel-iotg-5.15-5.15.0/arch/x86/kernel/module.c --- linux-intel-iotg-5.15-5.15.0/arch/x86/kernel/module.c +++ linux-intel-iotg-5.15-5.15.0/arch/x86/kernel/module.c @@ -253,7 +253,7 @@ { const Elf_Shdr *s, *text = NULL, *alt = NULL, *locks = NULL, *para = NULL, *orc = NULL, *orc_ip = NULL, - *retpolines = NULL; + *retpolines = NULL, *returns = NULL; char *secstrings = (void *)hdr + sechdrs[hdr->e_shstrndx].sh_offset; for (s = sechdrs; s < sechdrs + hdr->e_shnum; s++) { @@ -271,6 +271,8 @@ orc_ip = s; if (!strcmp(".retpoline_sites", secstrings + s->sh_name)) retpolines = s; + if (!strcmp(".return_sites", secstrings + s->sh_name)) + returns = s; } /* @@ -285,6 +287,10 @@ void *rseg = (void *)retpolines->sh_addr; apply_retpolines(rseg, rseg + retpolines->sh_size); } + if (returns) { + void *rseg = (void *)returns->sh_addr; + apply_returns(rseg, rseg + returns->sh_size); + } if (alt) { /* patch .altinstructions */ void *aseg = (void *)alt->sh_addr; diff -u linux-intel-iotg-5.15-5.15.0/arch/x86/kernel/process.c linux-intel-iotg-5.15-5.15.0/arch/x86/kernel/process.c --- linux-intel-iotg-5.15-5.15.0/arch/x86/kernel/process.c +++ linux-intel-iotg-5.15-5.15.0/arch/x86/kernel/process.c @@ -599,7 +599,7 @@ } if (updmsr) - wrmsrl(MSR_IA32_SPEC_CTRL, msr); + write_spec_ctrl_current(msr, false); } static unsigned long speculation_ctrl_update_tif(struct task_struct *tsk) diff -u linux-intel-iotg-5.15-5.15.0/arch/x86/kernel/relocate_kernel_32.S linux-intel-iotg-5.15-5.15.0/arch/x86/kernel/relocate_kernel_32.S --- linux-intel-iotg-5.15-5.15.0/arch/x86/kernel/relocate_kernel_32.S +++ linux-intel-iotg-5.15-5.15.0/arch/x86/kernel/relocate_kernel_32.S @@ -7,11 +7,13 @@ #include #include #include +#include #include #include /* - * Must be relocatable PIC code callable as a C function + * Must be relocatable PIC code callable as a C function, in particular + * there must be a plain RET and not jump to return thunk. */ #define PTR(x) (x << 2) @@ -92,7 +94,9 @@ movl %edi, %eax addl $(identity_mapped - relocate_kernel), %eax pushl %eax + ANNOTATE_UNRET_SAFE ret + int3 SYM_CODE_END(relocate_kernel) SYM_CODE_START_LOCAL_NOALIGN(identity_mapped) @@ -160,7 +164,9 @@ xorl %edx, %edx xorl %esi, %esi xorl %ebp, %ebp + ANNOTATE_UNRET_SAFE ret + int3 1: popl %edx movl CP_PA_SWAP_PAGE(%edi), %esp @@ -192,7 +198,9 @@ movl %edi, %eax addl $(virtual_mapped - relocate_kernel), %eax pushl %eax + ANNOTATE_UNRET_SAFE ret + int3 SYM_CODE_END(identity_mapped) SYM_CODE_START_LOCAL_NOALIGN(virtual_mapped) @@ -210,7 +218,9 @@ popl %edi popl %esi popl %ebx + ANNOTATE_UNRET_SAFE ret + int3 SYM_CODE_END(virtual_mapped) /* Do the copies */ @@ -273,7 +283,9 @@ popl %edi popl %ebx popl %ebp + ANNOTATE_UNRET_SAFE ret + int3 SYM_CODE_END(swap_pages) .globl kexec_control_code_size diff -u linux-intel-iotg-5.15-5.15.0/arch/x86/kernel/static_call.c linux-intel-iotg-5.15-5.15.0/arch/x86/kernel/static_call.c --- linux-intel-iotg-5.15-5.15.0/arch/x86/kernel/static_call.c +++ linux-intel-iotg-5.15-5.15.0/arch/x86/kernel/static_call.c @@ -12,11 +12,21 @@ }; /* + * ud1 %esp, %ecx - a 3 byte #UD that is unique to trampolines, chosen such + * that there is no false-positive trampoline identification while also being a + * speculation stop. + */ +static const u8 tramp_ud[] = { 0x0f, 0xb9, 0xcc }; + +/* * cs cs cs xorl %eax, %eax - a single 5 byte instruction that clears %[er]ax */ static const u8 xor5rax[] = { 0x2e, 0x2e, 0x2e, 0x31, 0xc0 }; -static void __ref __static_call_transform(void *insn, enum insn_type type, void *func) +static const u8 retinsn[] = { RET_INSN_OPCODE, 0xcc, 0xcc, 0xcc, 0xcc }; + +static void __ref __static_call_transform(void *insn, enum insn_type type, + void *func, bool modinit) { const void *emulate = NULL; int size = CALL_INSN_SIZE; @@ -41,15 +51,17 @@ break; case RET: - code = text_gen_insn(RET_INSN_OPCODE, insn, func); - size = RET_INSN_SIZE; + if (cpu_feature_enabled(X86_FEATURE_RETHUNK)) + code = text_gen_insn(JMP32_INSN_OPCODE, insn, &__x86_return_thunk); + else + code = &retinsn; break; } if (memcmp(insn, code, size) == 0) return; - if (unlikely(system_state == SYSTEM_BOOTING)) + if (system_state == SYSTEM_BOOTING || modinit) return text_poke_early(insn, code, size); text_poke_bp(insn, code, size, emulate); @@ -100,11 +112,39 @@ - __static_call_transform(tramp, __sc_insn(!func, true), func); + __static_call_transform(tramp, __sc_insn(!func, true), func, false); } if (IS_ENABLED(CONFIG_HAVE_STATIC_CALL_INLINE) && site) { __static_call_validate(site, tail); - __static_call_transform(site, __sc_insn(!func, tail), func); + __static_call_transform(site, __sc_insn(!func, tail), func, false); } mutex_unlock(&text_mutex); } EXPORT_SYMBOL_GPL(arch_static_call_transform); + +#ifdef CONFIG_RETHUNK +/* + * This is called by apply_returns() to fix up static call trampolines, + * specifically ARCH_DEFINE_STATIC_CALL_NULL_TRAMP which is recorded as + * having a return trampoline. + * + * The problem is that static_call() is available before determining + * X86_FEATURE_RETHUNK and, by implication, running alternatives. + * + * This means that __static_call_transform() above can have overwritten the + * return trampoline and we now need to fix things up to be consistent. + */ +bool __static_call_fixup(void *tramp, u8 op, void *dest) +{ + if (memcmp(tramp+5, tramp_ud, 3)) { + /* Not a trampoline site, not our problem. */ + return false; + } + + mutex_lock(&text_mutex); + if (op == RET_INSN_OPCODE || dest == &__x86_return_thunk) + __static_call_transform(tramp, RET, NULL, true); + mutex_unlock(&text_mutex); + + return true; +} +#endif diff -u linux-intel-iotg-5.15-5.15.0/arch/x86/kernel/traps.c linux-intel-iotg-5.15-5.15.0/arch/x86/kernel/traps.c --- linux-intel-iotg-5.15-5.15.0/arch/x86/kernel/traps.c +++ linux-intel-iotg-5.15-5.15.0/arch/x86/kernel/traps.c @@ -762,14 +762,10 @@ } #endif -struct bad_iret_stack { - void *error_entry_ret; - struct pt_regs regs; -}; - -asmlinkage __visible noinstr -struct bad_iret_stack *fixup_bad_iret(struct bad_iret_stack *s) +asmlinkage __visible noinstr struct pt_regs *fixup_bad_iret(struct pt_regs *bad_regs) { + struct pt_regs tmp, *new_stack; + /* * This is called from entry_64.S early in handling a fault * caused by a bad iret to user mode. To handle the fault @@ -778,19 +774,18 @@ * just below the IRET frame) and we want to pretend that the * exception came from the IRET target. */ - struct bad_iret_stack tmp, *new_stack = - (struct bad_iret_stack *)__this_cpu_read(cpu_tss_rw.x86_tss.sp0) - 1; + new_stack = (struct pt_regs *)__this_cpu_read(cpu_tss_rw.x86_tss.sp0) - 1; /* Copy the IRET target to the temporary storage. */ - __memcpy(&tmp.regs.ip, (void *)s->regs.sp, 5*8); + __memcpy(&tmp.ip, (void *)bad_regs->sp, 5*8); /* Copy the remainder of the stack from the current stack. */ - __memcpy(&tmp, s, offsetof(struct bad_iret_stack, regs.ip)); + __memcpy(&tmp, bad_regs, offsetof(struct pt_regs, ip)); /* Update the entry stack */ __memcpy(new_stack, &tmp, sizeof(tmp)); - BUG_ON(!user_mode(&new_stack->regs)); + BUG_ON(!user_mode(new_stack)); return new_stack; } #endif diff -u linux-intel-iotg-5.15-5.15.0/arch/x86/kernel/vmlinux.lds.S linux-intel-iotg-5.15-5.15.0/arch/x86/kernel/vmlinux.lds.S --- linux-intel-iotg-5.15-5.15.0/arch/x86/kernel/vmlinux.lds.S +++ linux-intel-iotg-5.15-5.15.0/arch/x86/kernel/vmlinux.lds.S @@ -142,7 +142,7 @@ #ifdef CONFIG_RETPOLINE __indirect_thunk_start = .; - *(.text.__x86.indirect_thunk) + *(.text.__x86.*) __indirect_thunk_end = .; #endif } :text =0xcccc @@ -284,6 +284,13 @@ *(.retpoline_sites) __retpoline_sites_end = .; } + + . = ALIGN(8); + .return_sites : AT(ADDR(.return_sites) - LOAD_OFFSET) { + __return_sites = .; + *(.return_sites) + __return_sites_end = .; + } #endif /* diff -u linux-intel-iotg-5.15-5.15.0/arch/x86/kvm/cpuid.c linux-intel-iotg-5.15-5.15.0/arch/x86/kvm/cpuid.c --- linux-intel-iotg-5.15-5.15.0/arch/x86/kvm/cpuid.c +++ linux-intel-iotg-5.15-5.15.0/arch/x86/kvm/cpuid.c @@ -725,6 +725,11 @@ union cpuid10_eax eax; union cpuid10_edx edx; + if (!static_cpu_has(X86_FEATURE_ARCH_PERFMON)) { + entry->eax = entry->ebx = entry->ecx = entry->edx = 0; + break; + } + perf_get_x86_pmu_capability(&cap); /* diff -u linux-intel-iotg-5.15-5.15.0/arch/x86/kvm/emulate.c linux-intel-iotg-5.15-5.15.0/arch/x86/kvm/emulate.c --- linux-intel-iotg-5.15-5.15.0/arch/x86/kvm/emulate.c +++ linux-intel-iotg-5.15-5.15.0/arch/x86/kvm/emulate.c @@ -187,9 +187,6 @@ #define X8(x...) X4(x), X4(x) #define X16(x...) X8(x), X8(x) -#define NR_FASTOP (ilog2(sizeof(ulong)) + 1) -#define FASTOP_SIZE 8 - struct opcode { u64 flags : 56; u64 intercept : 8; @@ -303,9 +300,15 @@ * Moreover, they are all exactly FASTOP_SIZE bytes long, so functions for * different operand sizes can be reached by calculation, rather than a jump * table (which would be bigger than the code). + * + * The 16 byte alignment, considering 5 bytes for the RET thunk, 3 for ENDBR + * and 1 for the straight line speculation INT3, leaves 7 bytes for the + * body of the function. Currently none is larger than 4. */ static int fastop(struct x86_emulate_ctxt *ctxt, fastop_t fop); +#define FASTOP_SIZE 16 + #define __FOP_FUNC(name) \ ".align " __stringify(FASTOP_SIZE) " \n\t" \ ".type " name ", @function \n\t" \ @@ -315,19 +318,21 @@ __FOP_FUNC(#name) #define __FOP_RET(name) \ - "ret \n\t" \ + ASM_RET \ ".size " name ", .-" name "\n\t" #define FOP_RET(name) \ __FOP_RET(#name) -#define FOP_START(op) \ +#define __FOP_START(op, align) \ extern void em_##op(struct fastop *fake); \ asm(".pushsection .text, \"ax\" \n\t" \ ".global em_" #op " \n\t" \ - ".align " __stringify(FASTOP_SIZE) " \n\t" \ + ".align " __stringify(align) " \n\t" \ "em_" #op ":\n\t" +#define FOP_START(op) __FOP_START(op, FASTOP_SIZE) + #define FOP_END \ ".popsection") @@ -427,18 +432,29 @@ FOP_END /* Special case for SETcc - 1 instruction per cc */ + +/* + * Depending on .config the SETcc functions look like: + * + * SETcc %al [3 bytes] + * RET | JMP __x86_return_thunk [1,5 bytes; CONFIG_RETHUNK] + * INT3 [1 byte; CONFIG_SLS] + */ +#define SETCC_ALIGN 16 + #define FOP_SETCC(op) \ - ".align 4 \n\t" \ + ".align " __stringify(SETCC_ALIGN) " \n\t" \ ".type " #op ", @function \n\t" \ #op ": \n\t" \ #op " %al \n\t" \ - __FOP_RET(#op) + __FOP_RET(#op) \ + ".skip " __stringify(SETCC_ALIGN) " - (.-" #op "), 0xcc \n\t" asm(".pushsection .fixup, \"ax\"\n" - "kvm_fastop_exception: xor %esi, %esi; ret\n" + "kvm_fastop_exception: xor %esi, %esi; " ASM_RET ".popsection"); -FOP_START(setcc) +__FOP_START(setcc, SETCC_ALIGN) FOP_SETCC(seto) FOP_SETCC(setno) FOP_SETCC(setc) @@ -1053,7 +1069,7 @@ static __always_inline u8 test_cc(unsigned int condition, unsigned long flags) { u8 rc; - void (*fop)(void) = (void *)em_setcc + 4 * (condition & 0xf); + void (*fop)(void) = (void *)em_setcc + SETCC_ALIGN * (condition & 0xf); flags = (flags & EFLAGS_MASK) | X86_EFLAGS_IF; asm("push %[flags]; popf; " CALL_NOSPEC diff -u linux-intel-iotg-5.15-5.15.0/arch/x86/kvm/lapic.c linux-intel-iotg-5.15-5.15.0/arch/x86/kvm/lapic.c --- linux-intel-iotg-5.15-5.15.0/arch/x86/kvm/lapic.c +++ linux-intel-iotg-5.15-5.15.0/arch/x86/kvm/lapic.c @@ -113,7 +113,8 @@ static bool kvm_can_post_timer_interrupt(struct kvm_vcpu *vcpu) { - return pi_inject_timer && kvm_vcpu_apicv_active(vcpu); + return pi_inject_timer && kvm_vcpu_apicv_active(vcpu) && + (kvm_mwait_in_guest(vcpu->kvm) || kvm_hlt_in_guest(vcpu->kvm)); } bool kvm_can_use_hv_timer(struct kvm_vcpu *vcpu) @@ -1505,6 +1506,7 @@ if (apic->lapic_timer.hv_timer_in_use) cancel_hv_timer(apic); preempt_enable(); + atomic_set(&apic->lapic_timer.pending, 0); } static void apic_update_lvtt(struct kvm_lapic *apic) @@ -2125,10 +2127,9 @@ break; case APIC_SELF_IPI: - if (apic_x2apic_mode(apic)) { - kvm_lapic_reg_write(apic, APIC_ICR, - APIC_DEST_SELF | (val & APIC_VECTOR_MASK)); - } else + if (apic_x2apic_mode(apic)) + kvm_apic_send_ipi(apic, APIC_DEST_SELF | (val & APIC_VECTOR_MASK), 0); + else ret = 1; break; default: diff -u linux-intel-iotg-5.15-5.15.0/arch/x86/kvm/mmu/mmu.c linux-intel-iotg-5.15-5.15.0/arch/x86/kvm/mmu/mmu.c --- linux-intel-iotg-5.15-5.15.0/arch/x86/kvm/mmu/mmu.c +++ linux-intel-iotg-5.15-5.15.0/arch/x86/kvm/mmu/mmu.c @@ -3314,6 +3314,8 @@ return; sp = to_shadow_page(*root_hpa & PT64_BASE_ADDR_MASK); + if (WARN_ON(!sp)) + return; if (is_tdp_mmu_page(sp)) kvm_tdp_mmu_put_root(kvm, sp, false); @@ -5394,14 +5396,16 @@ uint i; if (pcid == kvm_get_active_pcid(vcpu)) { - mmu->invlpg(vcpu, gva, mmu->root_hpa); + if (mmu->invlpg) + mmu->invlpg(vcpu, gva, mmu->root_hpa); tlb_flush = true; } for (i = 0; i < KVM_MMU_NUM_PREV_ROOTS; i++) { if (VALID_PAGE(mmu->prev_roots[i].hpa) && pcid == kvm_get_pcid(vcpu, mmu->prev_roots[i].pgd)) { - mmu->invlpg(vcpu, gva, mmu->prev_roots[i].hpa); + if (mmu->invlpg) + mmu->invlpg(vcpu, gva, mmu->prev_roots[i].hpa); tlb_flush = true; } } @@ -5588,6 +5592,7 @@ { struct kvm_mmu_page *sp, *node; int nr_zapped, batch = 0; + bool unstable; restart: list_for_each_entry_safe_reverse(sp, node, @@ -5619,11 +5624,12 @@ goto restart; } - if (__kvm_mmu_prepare_zap_page(kvm, sp, - &kvm->arch.zapped_obsolete_pages, &nr_zapped)) { - batch += nr_zapped; + unstable = __kvm_mmu_prepare_zap_page(kvm, sp, + &kvm->arch.zapped_obsolete_pages, &nr_zapped); + batch += nr_zapped; + + if (unstable) goto restart; - } } /* diff -u linux-intel-iotg-5.15-5.15.0/arch/x86/kvm/pmu.h linux-intel-iotg-5.15-5.15.0/arch/x86/kvm/pmu.h --- linux-intel-iotg-5.15-5.15.0/arch/x86/kvm/pmu.h +++ linux-intel-iotg-5.15-5.15.0/arch/x86/kvm/pmu.h @@ -141,6 +141,15 @@ return sample_period; } +static inline void pmc_update_sample_period(struct kvm_pmc *pmc) +{ + if (!pmc->perf_event || pmc->is_paused) + return; + + perf_event_period(pmc->perf_event, + get_sample_period(pmc, pmc->counter)); +} + void reprogram_gp_counter(struct kvm_pmc *pmc, u64 eventsel); void reprogram_fixed_counter(struct kvm_pmc *pmc, u8 ctrl, int fixed_idx); void reprogram_counter(struct kvm_pmu *pmu, int pmc_idx); diff -u linux-intel-iotg-5.15-5.15.0/arch/x86/kvm/svm/nested.c linux-intel-iotg-5.15-5.15.0/arch/x86/kvm/svm/nested.c --- linux-intel-iotg-5.15-5.15.0/arch/x86/kvm/svm/nested.c +++ linux-intel-iotg-5.15-5.15.0/arch/x86/kvm/svm/nested.c @@ -750,9 +750,6 @@ struct kvm_host_map map; int rc; - /* Triple faults in L2 should never escape. */ - WARN_ON_ONCE(kvm_check_request(KVM_REQ_TRIPLE_FAULT, vcpu)); - rc = kvm_vcpu_map(vcpu, gpa_to_gfn(svm->nested.vmcb12_gpa), &map); if (rc) { if (rc == -EINVAL) diff -u linux-intel-iotg-5.15-5.15.0/arch/x86/kvm/svm/pmu.c linux-intel-iotg-5.15-5.15.0/arch/x86/kvm/svm/pmu.c --- linux-intel-iotg-5.15-5.15.0/arch/x86/kvm/svm/pmu.c +++ linux-intel-iotg-5.15-5.15.0/arch/x86/kvm/svm/pmu.c @@ -44,6 +44,22 @@ [7] = { 0xd1, 0x00, PERF_COUNT_HW_STALLED_CYCLES_BACKEND }, }; +/* duplicated from amd_f17h_perfmon_event_map. */ +static struct kvm_event_hw_type_mapping amd_f17h_event_mapping[] = { + [0] = { 0x76, 0x00, PERF_COUNT_HW_CPU_CYCLES }, + [1] = { 0xc0, 0x00, PERF_COUNT_HW_INSTRUCTIONS }, + [2] = { 0x60, 0xff, PERF_COUNT_HW_CACHE_REFERENCES }, + [3] = { 0x64, 0x09, PERF_COUNT_HW_CACHE_MISSES }, + [4] = { 0xc2, 0x00, PERF_COUNT_HW_BRANCH_INSTRUCTIONS }, + [5] = { 0xc3, 0x00, PERF_COUNT_HW_BRANCH_MISSES }, + [6] = { 0x87, 0x02, PERF_COUNT_HW_STALLED_CYCLES_FRONTEND }, + [7] = { 0x87, 0x01, PERF_COUNT_HW_STALLED_CYCLES_BACKEND }, +}; + +/* amd_pmc_perf_hw_id depends on these being the same size */ +static_assert(ARRAY_SIZE(amd_event_mapping) == + ARRAY_SIZE(amd_f17h_event_mapping)); + static unsigned int get_msr_base(struct kvm_pmu *pmu, enum pmu_type type) { struct kvm_vcpu *vcpu = pmu_to_vcpu(pmu); @@ -136,19 +152,25 @@ static unsigned int amd_pmc_perf_hw_id(struct kvm_pmc *pmc) { + struct kvm_event_hw_type_mapping *event_mapping; u8 event_select = pmc->eventsel & ARCH_PERFMON_EVENTSEL_EVENT; u8 unit_mask = (pmc->eventsel & ARCH_PERFMON_EVENTSEL_UMASK) >> 8; int i; + if (guest_cpuid_family(pmc->vcpu) >= 0x17) + event_mapping = amd_f17h_event_mapping; + else + event_mapping = amd_event_mapping; + for (i = 0; i < ARRAY_SIZE(amd_event_mapping); i++) - if (amd_event_mapping[i].eventsel == event_select - && amd_event_mapping[i].unit_mask == unit_mask) + if (event_mapping[i].eventsel == event_select + && event_mapping[i].unit_mask == unit_mask) break; if (i == ARRAY_SIZE(amd_event_mapping)) return PERF_COUNT_HW_MAX; - return amd_event_mapping[i].event_type; + return event_mapping[i].event_type; } /* return PERF_COUNT_HW_MAX as AMD doesn't have fixed events */ @@ -256,6 +278,7 @@ pmc = get_gp_pmc_amd(pmu, msr, PMU_TYPE_COUNTER); if (pmc) { pmc->counter += data - pmc_read_counter(pmc); + pmc_update_sample_period(pmc); return 0; } /* MSR_EVNTSELn */ diff -u linux-intel-iotg-5.15-5.15.0/arch/x86/kvm/svm/sev.c linux-intel-iotg-5.15-5.15.0/arch/x86/kvm/svm/sev.c --- linux-intel-iotg-5.15-5.15.0/arch/x86/kvm/svm/sev.c +++ linux-intel-iotg-5.15-5.15.0/arch/x86/kvm/svm/sev.c @@ -676,7 +676,7 @@ if (params.len > SEV_FW_BLOB_MAX_SIZE) return -EINVAL; - blob = kmalloc(params.len, GFP_KERNEL_ACCOUNT); + blob = kzalloc(params.len, GFP_KERNEL_ACCOUNT); if (!blob) return -ENOMEM; @@ -796,7 +796,7 @@ if (!IS_ALIGNED(dst_paddr, 16) || !IS_ALIGNED(paddr, 16) || !IS_ALIGNED(size, 16)) { - tpage = (void *)alloc_page(GFP_KERNEL); + tpage = (void *)alloc_page(GFP_KERNEL | __GFP_ZERO); if (!tpage) return -ENOMEM; @@ -1082,7 +1082,7 @@ if (params.len > SEV_FW_BLOB_MAX_SIZE) return -EINVAL; - blob = kmalloc(params.len, GFP_KERNEL_ACCOUNT); + blob = kzalloc(params.len, GFP_KERNEL_ACCOUNT); if (!blob) return -ENOMEM; @@ -1164,7 +1164,7 @@ return -EINVAL; /* allocate the memory to hold the session data blob */ - session_data = kmalloc(params.session_len, GFP_KERNEL_ACCOUNT); + session_data = kzalloc(params.session_len, GFP_KERNEL_ACCOUNT); if (!session_data) return -ENOMEM; @@ -1288,11 +1288,11 @@ /* allocate memory for header and transport buffer */ ret = -ENOMEM; - hdr = kmalloc(params.hdr_len, GFP_KERNEL_ACCOUNT); + hdr = kzalloc(params.hdr_len, GFP_KERNEL_ACCOUNT); if (!hdr) goto e_unpin; - trans_data = kmalloc(params.trans_len, GFP_KERNEL_ACCOUNT); + trans_data = kzalloc(params.trans_len, GFP_KERNEL_ACCOUNT); if (!trans_data) goto e_free_hdr; @@ -1990,11 +1990,14 @@ unsigned long len) { /* - * If hardware enforced cache coherency for encrypted mappings of the - * same physical page is supported, nothing to do. + * If CPU enforced cache coherency for encrypted mappings of the + * same physical page is supported, use CLFLUSHOPT instead. NOTE: cache + * flush is still needed in order to work properly with DMA devices. */ - if (boot_cpu_has(X86_FEATURE_SME_COHERENT)) + if (boot_cpu_has(X86_FEATURE_SME_COHERENT)) { + clflush_cache_range(va, PAGE_SIZE); return; + } /* * If the VM Page Flush MSR is supported, use it to flush the page diff -u linux-intel-iotg-5.15-5.15.0/arch/x86/kvm/vmx/nested.c linux-intel-iotg-5.15-5.15.0/arch/x86/kvm/vmx/nested.c --- linux-intel-iotg-5.15-5.15.0/arch/x86/kvm/vmx/nested.c +++ linux-intel-iotg-5.15-5.15.0/arch/x86/kvm/vmx/nested.c @@ -3077,7 +3077,7 @@ } vm_fail = __vmx_vcpu_run(vmx, (unsigned long *)&vcpu->arch.regs, - vmx->loaded_vmcs->launched); + __vmx_vcpu_run_flags(vmx)); if (vmx->msr_autoload.host.nr) vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, vmx->msr_autoload.host.nr); @@ -3678,12 +3678,34 @@ } static void vmcs12_save_pending_event(struct kvm_vcpu *vcpu, - struct vmcs12 *vmcs12) + struct vmcs12 *vmcs12, + u32 vm_exit_reason, u32 exit_intr_info) { u32 idt_vectoring; unsigned int nr; - if (vcpu->arch.exception.injected) { + /* + * Per the SDM, VM-Exits due to double and triple faults are never + * considered to occur during event delivery, even if the double/triple + * fault is the result of an escalating vectoring issue. + * + * Note, the SDM qualifies the double fault behavior with "The original + * event results in a double-fault exception". It's unclear why the + * qualification exists since exits due to double fault can occur only + * while vectoring a different exception (injected events are never + * subject to interception), i.e. there's _always_ an original event. + * + * The SDM also uses NMI as a confusing example for the "original event + * causes the VM exit directly" clause. NMI isn't special in any way, + * the same rule applies to all events that cause an exit directly. + * NMI is an odd choice for the example because NMIs can only occur on + * instruction boundaries, i.e. they _can't_ occur during vectoring. + */ + if ((u16)vm_exit_reason == EXIT_REASON_TRIPLE_FAULT || + ((u16)vm_exit_reason == EXIT_REASON_EXCEPTION_NMI && + is_double_fault(exit_intr_info))) { + vmcs12->idt_vectoring_info_field = 0; + } else if (vcpu->arch.exception.injected) { nr = vcpu->arch.exception.nr; idt_vectoring = nr | VECTORING_INFO_VALID_MASK; @@ -3716,6 +3738,8 @@ idt_vectoring |= INTR_TYPE_EXT_INTR; vmcs12->idt_vectoring_info_field = idt_vectoring; + } else { + vmcs12->idt_vectoring_info_field = 0; } } @@ -4185,12 +4209,12 @@ if (to_vmx(vcpu)->exit_reason.enclave_mode) vmcs12->vm_exit_reason |= VMX_EXIT_REASONS_SGX_ENCLAVE_MODE; vmcs12->exit_qualification = exit_qualification; - vmcs12->vm_exit_intr_info = exit_intr_info; - - vmcs12->idt_vectoring_info_field = 0; - vmcs12->vm_exit_instruction_len = vmcs_read32(VM_EXIT_INSTRUCTION_LEN); - vmcs12->vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO); + /* + * On VM-Exit due to a failed VM-Entry, the VMCS isn't marked launched + * and only EXIT_REASON and EXIT_QUALIFICATION are updated, all other + * exit info fields are unmodified. + */ if (!(vmcs12->vm_exit_reason & VMX_EXIT_REASONS_FAILED_VMENTRY)) { vmcs12->launch_state = 1; @@ -4202,7 +4226,12 @@ * Transfer the event that L0 or L1 may wanted to inject into * L2 to IDT_VECTORING_INFO_FIELD. */ - vmcs12_save_pending_event(vcpu, vmcs12); + vmcs12_save_pending_event(vcpu, vmcs12, + vm_exit_reason, exit_intr_info); + + vmcs12->vm_exit_intr_info = exit_intr_info; + vmcs12->vm_exit_instruction_len = vmcs_read32(VM_EXIT_INSTRUCTION_LEN); + vmcs12->vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO); /* * According to spec, there's no need to store the guest's @@ -4501,9 +4530,6 @@ /* trying to cancel vmlaunch/vmresume is a bug */ WARN_ON_ONCE(vmx->nested.nested_run_pending); - /* Similarly, triple faults in L2 should never escape. */ - WARN_ON_ONCE(kvm_check_request(KVM_REQ_TRIPLE_FAULT, vcpu)); - if (kvm_check_request(KVM_REQ_GET_NESTED_STATE_PAGES, vcpu)) { /* * KVM_REQ_GET_NESTED_STATE_PAGES is also used to map @@ -4601,6 +4627,11 @@ kvm_make_request(KVM_REQ_APIC_PAGE_RELOAD, vcpu); } + if (vmx->nested.update_vmcs01_apicv_status) { + vmx->nested.update_vmcs01_apicv_status = false; + kvm_make_request(KVM_REQ_APICV_UPDATE, vcpu); + } + if ((vm_exit_reason != -1) && (enable_shadow_vmcs || evmptr_is_valid(vmx->nested.hv_evmcs_vmptr))) vmx->nested.need_vmcs12_to_shadow_sync = true; diff -u linux-intel-iotg-5.15-5.15.0/arch/x86/kvm/vmx/pmu_intel.c linux-intel-iotg-5.15-5.15.0/arch/x86/kvm/vmx/pmu_intel.c --- linux-intel-iotg-5.15-5.15.0/arch/x86/kvm/vmx/pmu_intel.c +++ linux-intel-iotg-5.15-5.15.0/arch/x86/kvm/vmx/pmu_intel.c @@ -439,15 +439,11 @@ !(msr & MSR_PMC_FULL_WIDTH_BIT)) data = (s64)(s32)data; pmc->counter += data - pmc_read_counter(pmc); - if (pmc->perf_event && !pmc->is_paused) - perf_event_period(pmc->perf_event, - get_sample_period(pmc, data)); + pmc_update_sample_period(pmc); return 0; } else if ((pmc = get_fixed_pmc(pmu, msr))) { pmc->counter += data - pmc_read_counter(pmc); - if (pmc->perf_event && !pmc->is_paused) - perf_event_period(pmc->perf_event, - get_sample_period(pmc, data)); + pmc_update_sample_period(pmc); return 0; } else if ((pmc = get_gp_pmc(pmu, msr, MSR_P6_EVNTSEL0))) { if (data == pmc->eventsel) diff -u linux-intel-iotg-5.15-5.15.0/arch/x86/kvm/vmx/vmx.c linux-intel-iotg-5.15-5.15.0/arch/x86/kvm/vmx/vmx.c --- linux-intel-iotg-5.15-5.15.0/arch/x86/kvm/vmx/vmx.c +++ linux-intel-iotg-5.15-5.15.0/arch/x86/kvm/vmx/vmx.c @@ -226,6 +226,9 @@ #define L1D_CACHE_ORDER 4 static void *vmx_l1d_flush_pages; +/* Control for disabling CPU Fill buffer clear */ +static bool __read_mostly vmx_fb_clear_ctrl_available; + static int vmx_setup_l1d_flush(enum vmx_l1d_flush_state l1tf) { struct page *page; @@ -357,6 +360,60 @@ return sprintf(s, "%s\n", vmentry_l1d_param[l1tf_vmx_mitigation].option); } +static void vmx_setup_fb_clear_ctrl(void) +{ + u64 msr; + + if (boot_cpu_has(X86_FEATURE_ARCH_CAPABILITIES) && + !boot_cpu_has_bug(X86_BUG_MDS) && + !boot_cpu_has_bug(X86_BUG_TAA)) { + rdmsrl(MSR_IA32_ARCH_CAPABILITIES, msr); + if (msr & ARCH_CAP_FB_CLEAR_CTRL) + vmx_fb_clear_ctrl_available = true; + } +} + +static __always_inline void vmx_disable_fb_clear(struct vcpu_vmx *vmx) +{ + u64 msr; + + if (!vmx->disable_fb_clear) + return; + + msr = __rdmsr(MSR_IA32_MCU_OPT_CTRL); + msr |= FB_CLEAR_DIS; + native_wrmsrl(MSR_IA32_MCU_OPT_CTRL, msr); + /* Cache the MSR value to avoid reading it later */ + vmx->msr_ia32_mcu_opt_ctrl = msr; +} + +static __always_inline void vmx_enable_fb_clear(struct vcpu_vmx *vmx) +{ + if (!vmx->disable_fb_clear) + return; + + vmx->msr_ia32_mcu_opt_ctrl &= ~FB_CLEAR_DIS; + native_wrmsrl(MSR_IA32_MCU_OPT_CTRL, vmx->msr_ia32_mcu_opt_ctrl); +} + +static void vmx_update_fb_clear_dis(struct kvm_vcpu *vcpu, struct vcpu_vmx *vmx) +{ + vmx->disable_fb_clear = vmx_fb_clear_ctrl_available; + + /* + * If guest will not execute VERW, there is no need to set FB_CLEAR_DIS + * at VMEntry. Skip the MSR read/write when a guest has no use case to + * execute VERW. + */ + if ((vcpu->arch.arch_capabilities & ARCH_CAP_FB_CLEAR) || + ((vcpu->arch.arch_capabilities & ARCH_CAP_MDS_NO) && + (vcpu->arch.arch_capabilities & ARCH_CAP_TAA_NO) && + (vcpu->arch.arch_capabilities & ARCH_CAP_PSDP_NO) && + (vcpu->arch.arch_capabilities & ARCH_CAP_FBSDP_NO) && + (vcpu->arch.arch_capabilities & ARCH_CAP_SBDR_SSDP_NO))) + vmx->disable_fb_clear = false; +} + static const struct kernel_param_ops vmentry_l1d_flush_ops = { .set = vmentry_l1d_flush_set, .get = vmentry_l1d_flush_get, @@ -780,2 +837,20 @@ +unsigned int __vmx_vcpu_run_flags(struct vcpu_vmx *vmx) +{ + unsigned int flags = 0; + + if (vmx->loaded_vmcs->launched) + flags |= VMX_RUN_VMRESUME; + + /* + * If writes to the SPEC_CTRL MSR aren't intercepted, the guest is free + * to change it directly without causing a vmexit. In that case read + * it after vmexit and store it in vmx->spec_ctrl. + */ + if (unlikely(!msr_write_intercepted(vmx, MSR_IA32_SPEC_CTRL))) + flags |= VMX_RUN_SAVE_SPEC_CTRL; + + return flags; +} + static void clear_atomic_switch_msr_special(struct vcpu_vmx *vmx, @@ -2228,6 +2303,10 @@ ret = kvm_set_msr_common(vcpu, msr_info); } + /* FB_CLEAR may have changed, also update the FB_CLEAR_DIS behavior */ + if (msr_index == MSR_IA32_ARCH_CAPABILITIES) + vmx_update_fb_clear_dis(vcpu, vmx); + return ret; } @@ -4098,6 +4177,11 @@ { struct vcpu_vmx *vmx = to_vmx(vcpu); + if (is_guest_mode(vcpu)) { + vmx->nested.update_vmcs01_apicv_status = true; + return; + } + pin_controls_set(vmx, vmx_pin_based_exec_ctrl(vmx)); if (cpu_has_secondary_exec_ctrls()) { if (kvm_vcpu_apicv_active(vcpu)) @@ -4445,6 +4529,8 @@ kvm_make_request(KVM_REQ_APIC_PAGE_RELOAD, vcpu); vpid_sync_context(vmx->vpid); + + vmx_update_fb_clear_dis(vcpu, vmx); } static void vmx_enable_irq_window(struct kvm_vcpu *vcpu) @@ -6586,6 +6672,31 @@ } } +void noinstr vmx_spec_ctrl_restore_host(struct vcpu_vmx *vmx, + unsigned int flags) +{ + u64 hostval = this_cpu_read(x86_spec_ctrl_current); + + if (!cpu_feature_enabled(X86_FEATURE_MSR_SPEC_CTRL)) + return; + + if (flags & VMX_RUN_SAVE_SPEC_CTRL) + vmx->spec_ctrl = __rdmsr(MSR_IA32_SPEC_CTRL); + + /* + * If the guest/host SPEC_CTRL values differ, restore the host value. + * + * For legacy IBRS, the IBRS bit always needs to be written after + * transitioning from a less privileged predictor mode, regardless of + * whether the guest/host values differ. + */ + if (cpu_feature_enabled(X86_FEATURE_KERNEL_IBRS) || + vmx->spec_ctrl != hostval) + native_wrmsrl(MSR_IA32_SPEC_CTRL, hostval); + + barrier_nospec(); +} + static fastpath_t vmx_exit_handlers_fastpath(struct kvm_vcpu *vcpu) { switch (to_vmx(vcpu)->exit_reason.basic) { @@ -6599,7 +6710,8 @@ } static noinstr void vmx_vcpu_enter_exit(struct kvm_vcpu *vcpu, - struct vcpu_vmx *vmx) + struct vcpu_vmx *vmx, + unsigned long flags) { kvm_guest_enter_irqoff(); @@ -6608,15 +6720,22 @@ vmx_l1d_flush(vcpu); else if (static_branch_unlikely(&mds_user_clear)) mds_clear_cpu_buffers(); + else if (static_branch_unlikely(&mmio_stale_data_clear) && + kvm_arch_has_assigned_device(vcpu->kvm)) + mds_clear_cpu_buffers(); + + vmx_disable_fb_clear(vmx); if (vcpu->arch.cr2 != native_read_cr2()) native_write_cr2(vcpu->arch.cr2); vmx->fail = __vmx_vcpu_run(vmx, (unsigned long *)&vcpu->arch.regs, - vmx->loaded_vmcs->launched); + flags); vcpu->arch.cr2 = native_read_cr2(); + vmx_enable_fb_clear(vmx); + kvm_guest_exit_irqoff(); } @@ -6702,36 +6821,8 @@ kvm_wait_lapic_expire(vcpu); - /* - * If this vCPU has touched SPEC_CTRL, restore the guest's value if - * it's non-zero. Since vmentry is serialising on affected CPUs, there - * is no need to worry about the conditional branch over the wrmsr - * being speculatively taken. - */ - x86_spec_ctrl_set_guest(vmx->spec_ctrl, 0); - /* The actual VMENTER/EXIT is in the .noinstr.text section. */ - vmx_vcpu_enter_exit(vcpu, vmx); - - /* - * We do not use IBRS in the kernel. If this vCPU has used the - * SPEC_CTRL MSR it may have left it on; save the value and - * turn it off. This is much more efficient than blindly adding - * it to the atomic save/restore list. Especially as the former - * (Saving guest MSRs on vmexit) doesn't even exist in KVM. - * - * For non-nested case: - * If the L01 MSR bitmap does not intercept the MSR, then we need to - * save it. - * - * For nested case: - * If the L02 MSR bitmap does not intercept the MSR, then we need to - * save it. - */ - if (unlikely(!msr_write_intercepted(vmx, MSR_IA32_SPEC_CTRL))) - vmx->spec_ctrl = native_read_msr(MSR_IA32_SPEC_CTRL); - - x86_spec_ctrl_restore_host(vmx->spec_ctrl, 0); + vmx_vcpu_enter_exit(vcpu, vmx, __vmx_vcpu_run_flags(vmx)); /* All fields are clean at this point */ if (static_branch_unlikely(&enable_evmcs)) { @@ -8034,6 +8125,8 @@ return r; } + vmx_setup_fb_clear_ctrl(); + for_each_possible_cpu(cpu) { INIT_LIST_HEAD(&per_cpu(loaded_vmcss_on_cpu, cpu)); diff -u linux-intel-iotg-5.15-5.15.0/arch/x86/kvm/vmx/vmx.h linux-intel-iotg-5.15-5.15.0/arch/x86/kvm/vmx/vmx.h --- linux-intel-iotg-5.15-5.15.0/arch/x86/kvm/vmx/vmx.h +++ linux-intel-iotg-5.15-5.15.0/arch/x86/kvm/vmx/vmx.h @@ -8,11 +8,12 @@ #include #include "capabilities.h" -#include "kvm_cache_regs.h" +#include "../kvm_cache_regs.h" #include "posted_intr.h" #include "vmcs.h" #include "vmx_ops.h" -#include "cpuid.h" +#include "../cpuid.h" +#include "run_flags.h" #define MSR_TYPE_R 1 #define MSR_TYPE_W 2 @@ -164,6 +165,7 @@ bool change_vmcs01_virtual_apic_mode; bool reload_vmcs01_apic_access_page; bool update_vmcs01_cpu_dirty_logging; + bool update_vmcs01_apicv_status; /* * Enlightened VMCS has been enabled. It does not mean that L1 has to @@ -325,6 +327,8 @@ u64 msr_ia32_feature_control_valid_bits; /* SGX Launch Control public key hash */ u64 msr_ia32_sgxlepubkeyhash[4]; + u64 msr_ia32_mcu_opt_ctrl; + bool disable_fb_clear; struct pt_desc pt_desc; struct lbr_desc lbr_desc; @@ -379,7 +383,10 @@ struct vmx_uret_msr *vmx_find_uret_msr(struct vcpu_vmx *vmx, u32 msr); void pt_update_intercept_for_msr(struct kvm_vcpu *vcpu); void vmx_update_host_rsp(struct vcpu_vmx *vmx, unsigned long host_rsp); -bool __vmx_vcpu_run(struct vcpu_vmx *vmx, unsigned long *regs, bool launched); +void vmx_spec_ctrl_restore_host(struct vcpu_vmx *vmx, unsigned int flags); +unsigned int __vmx_vcpu_run_flags(struct vcpu_vmx *vmx); +bool __vmx_vcpu_run(struct vcpu_vmx *vmx, unsigned long *regs, + unsigned int flags); int vmx_find_loadstore_msr_slot(struct vmx_msrs *m, u32 msr); void vmx_ept_load_pdptrs(struct kvm_vcpu *vcpu); diff -u linux-intel-iotg-5.15-5.15.0/arch/x86/kvm/x86.c linux-intel-iotg-5.15-5.15.0/arch/x86/kvm/x86.c --- linux-intel-iotg-5.15-5.15.0/arch/x86/kvm/x86.c +++ linux-intel-iotg-5.15-5.15.0/arch/x86/kvm/x86.c @@ -1510,6 +1510,9 @@ */ } + /* Guests don't need to know "Fill buffer clear control" exists */ + data &= ~ARCH_CAP_FB_CLEAR_CTRL; + return data; } @@ -7729,7 +7732,7 @@ } EXPORT_SYMBOL_GPL(kvm_skip_emulated_instruction); -static bool kvm_vcpu_check_breakpoint(struct kvm_vcpu *vcpu, int *r) +static bool kvm_vcpu_check_code_breakpoint(struct kvm_vcpu *vcpu, int *r) { if (unlikely(vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP) && (vcpu->arch.guest_debug_dr7 & DR7_BP_EN_MASK)) { @@ -7798,25 +7801,23 @@ } /* - * Decode to be emulated instruction. Return EMULATION_OK if success. + * Decode an instruction for emulation. The caller is responsible for handling + * code breakpoints. Note, manually detecting code breakpoints is unnecessary + * (and wrong) when emulating on an intercepted fault-like exception[*], as + * code breakpoints have higher priority and thus have already been done by + * hardware. + * + * [*] Except #MC, which is higher priority, but KVM should never emulate in + * response to a machine check. */ int x86_decode_emulated_instruction(struct kvm_vcpu *vcpu, int emulation_type, void *insn, int insn_len) { - int r = EMULATION_OK; struct x86_emulate_ctxt *ctxt = vcpu->arch.emulate_ctxt; + int r; init_emulate_ctxt(vcpu); - /* - * We will reenter on the same instruction since we do not set - * complete_userspace_io. This does not handle watchpoints yet, - * those would be handled in the emulate_ops. - */ - if (!(emulation_type & EMULTYPE_SKIP) && - kvm_vcpu_check_breakpoint(vcpu, &r)) - return r; - r = x86_decode_insn(ctxt, insn, insn_len, emulation_type); trace_kvm_emulate_insn_start(vcpu); @@ -7849,6 +7850,15 @@ if (!(emulation_type & EMULTYPE_NO_DECODE)) { kvm_clear_exception_queue(vcpu); + /* + * Return immediately if RIP hits a code breakpoint, such #DBs + * are fault-like and are higher priority than any faults on + * the code fetch itself. + */ + if (!(emulation_type & EMULTYPE_SKIP) && + kvm_vcpu_check_code_breakpoint(vcpu, &r)) + return r; + r = x86_decode_emulated_instruction(vcpu, emulation_type, insn, insn_len); if (r != EMULATION_OK) { @@ -10632,8 +10642,21 @@ r = kvm_create_lapic(vcpu, lapic_timer_advance_ns); if (r < 0) goto fail_mmu_destroy; - if (kvm_apicv_activated(vcpu->kvm)) + + /* + * Defer evaluating inhibits until the vCPU is first run, as + * this vCPU will not get notified of any changes until this + * vCPU is visible to other vCPUs (marked online and added to + * the set of vCPUs). Opportunistically mark APICv active as + * VMX in particularly is highly unlikely to have inhibits. + * Ignore the current per-VM APICv state so that vCPU creation + * is guaranteed to run with a deterministic value, the request + * will ensure the vCPU gets the correct state before VM-Entry. + */ + if (enable_apicv) { vcpu->arch.apicv_active = true; + kvm_make_request(KVM_REQ_APICV_UPDATE, vcpu); + } } else static_branch_inc(&kvm_has_noapic_vcpu); @@ -11958,9 +11981,9 @@ } EXPORT_SYMBOL_GPL(kvm_arch_end_assignment); -bool kvm_arch_has_assigned_device(struct kvm *kvm) +bool noinstr kvm_arch_has_assigned_device(struct kvm *kvm) { - return atomic_read(&kvm->arch.assigned_device_count); + return arch_atomic_read(&kvm->arch.assigned_device_count); } EXPORT_SYMBOL_GPL(kvm_arch_has_assigned_device); diff -u linux-intel-iotg-5.15-5.15.0/arch/x86/lib/copy_mc_64.S linux-intel-iotg-5.15-5.15.0/arch/x86/lib/copy_mc_64.S --- linux-intel-iotg-5.15-5.15.0/arch/x86/lib/copy_mc_64.S +++ linux-intel-iotg-5.15-5.15.0/arch/x86/lib/copy_mc_64.S @@ -77,7 +77,7 @@ .L_done_memcpy_trap: xorl %eax, %eax .L_done: - ret + RET SYM_FUNC_END(copy_mc_fragile) .section .fixup, "ax" @@ -132,7 +132,7 @@ rep movsb /* Copy successful. Return zero */ xorl %eax, %eax - ret + RET SYM_FUNC_END(copy_mc_enhanced_fast_string) .section .fixup, "ax" @@ -145,7 +145,7 @@ * user-copy routines. */ movq %rcx, %rax - ret + RET .previous diff -u linux-intel-iotg-5.15-5.15.0/arch/x86/lib/retpoline.S linux-intel-iotg-5.15-5.15.0/arch/x86/lib/retpoline.S --- linux-intel-iotg-5.15-5.15.0/arch/x86/lib/retpoline.S +++ linux-intel-iotg-5.15-5.15.0/arch/x86/lib/retpoline.S @@ -23,7 +23,7 @@ .Ldo_rop_\@: mov %\reg, (%_ASM_SP) UNWIND_HINT_FUNC - ret + RET .endm .macro THUNK reg @@ -32,9 +32,9 @@ SYM_INNER_LABEL(__x86_indirect_thunk_\reg, SYM_L_GLOBAL) UNWIND_HINT_EMPTY - ALTERNATIVE_2 __stringify(ANNOTATE_RETPOLINE_SAFE; jmp *%\reg), \ - __stringify(RETPOLINE \reg), X86_FEATURE_RETPOLINE, \ - __stringify(lfence; ANNOTATE_RETPOLINE_SAFE; jmp *%\reg), X86_FEATURE_RETPOLINE_LFENCE + ALTERNATIVE_2 __stringify(RETPOLINE \reg), \ + __stringify(lfence; ANNOTATE_RETPOLINE_SAFE; jmp *%\reg; int3), X86_FEATURE_RETPOLINE_LFENCE, \ + __stringify(ANNOTATE_RETPOLINE_SAFE; jmp *%\reg), ALT_NOT(X86_FEATURE_RETPOLINE) .endm @@ -68,0 +69,73 @@ + +/* + * This function name is magical and is used by -mfunction-return=thunk-extern + * for the compiler to generate JMPs to it. + */ +#ifdef CONFIG_RETHUNK + + .section .text.__x86.return_thunk + +/* + * Safety details here pertain to the AMD Zen{1,2} microarchitecture: + * 1) The RET at __x86_return_thunk must be on a 64 byte boundary, for + * alignment within the BTB. + * 2) The instruction at zen_untrain_ret must contain, and not + * end with, the 0xc3 byte of the RET. + * 3) STIBP must be enabled, or SMT disabled, to prevent the sibling thread + * from re-poisioning the BTB prediction. + */ + .align 64 + .skip 63, 0xcc +SYM_FUNC_START_NOALIGN(zen_untrain_ret); + + /* + * As executed from zen_untrain_ret, this is: + * + * TEST $0xcc, %bl + * LFENCE + * JMP __x86_return_thunk + * + * Executing the TEST instruction has a side effect of evicting any BTB + * prediction (potentially attacker controlled) attached to the RET, as + * __x86_return_thunk + 1 isn't an instruction boundary at the moment. + */ + .byte 0xf6 + + /* + * As executed from __x86_return_thunk, this is a plain RET. + * + * As part of the TEST above, RET is the ModRM byte, and INT3 the imm8. + * + * We subsequently jump backwards and architecturally execute the RET. + * This creates a correct BTB prediction (type=ret), but in the + * meantime we suffer Straight Line Speculation (because the type was + * no branch) which is halted by the INT3. + * + * With SMT enabled and STIBP active, a sibling thread cannot poison + * RET's prediction to a type of its choice, but can evict the + * prediction due to competitive sharing. If the prediction is + * evicted, __x86_return_thunk will suffer Straight Line Speculation + * which will be contained safely by the INT3. + */ +SYM_INNER_LABEL(__x86_return_thunk, SYM_L_GLOBAL) + ret + int3 +SYM_CODE_END(__x86_return_thunk) + + /* + * Ensure the TEST decoding / BTB invalidation is complete. + */ + lfence + + /* + * Jump back and execute the RET in the middle of the TEST instruction. + * INT3 is for SLS protection. + */ + jmp __x86_return_thunk + int3 +SYM_FUNC_END(zen_untrain_ret) +__EXPORT_THUNK(zen_untrain_ret) + +EXPORT_SYMBOL(__x86_return_thunk) + +#endif /* CONFIG_RETHUNK */ diff -u linux-intel-iotg-5.15-5.15.0/arch/x86/net/bpf_jit_comp.c linux-intel-iotg-5.15-5.15.0/arch/x86/net/bpf_jit_comp.c --- linux-intel-iotg-5.15-5.15.0/arch/x86/net/bpf_jit_comp.c +++ linux-intel-iotg-5.15-5.15.0/arch/x86/net/bpf_jit_comp.c @@ -408,2 +408,17 @@ +static void emit_return(u8 **pprog, u8 *ip) +{ + u8 *prog = *pprog; + + if (cpu_feature_enabled(X86_FEATURE_RETHUNK)) { + emit_jump(&prog, &__x86_return_thunk, ip); + } else { + EMIT1(0xC3); /* ret */ + if (IS_ENABLED(CONFIG_SLS)) + EMIT1(0xCC); /* int3 */ + } + + *pprog = prog; +} + /* @@ -1673,7 +1688,7 @@ ctx->cleanup_addr = proglen; pop_callee_regs(&prog, callee_regs_used); EMIT1(0xC9); /* leave */ - EMIT1(0xC3); /* ret */ + emit_return(&prog, image + addrs[i - 1] + (prog - temp)); break; default: @@ -2119,7 +2134,7 @@ if (flags & BPF_TRAMP_F_SKIP_FRAME) /* skip our return address and return to parent */ EMIT4(0x48, 0x83, 0xC4, 8); /* add rsp, 8 */ - EMIT1(0xC3); /* ret */ + emit_return(&prog, prog); /* Make sure the trampoline generation logic doesn't overflow */ if (WARN_ON_ONCE(prog > (u8 *)image_end - BPF_INSN_SAFETY)) { ret = -EFAULT; diff -u linux-intel-iotg-5.15-5.15.0/arch/x86/pci/common.c linux-intel-iotg-5.15-5.15.0/arch/x86/pci/common.c --- linux-intel-iotg-5.15-5.15.0/arch/x86/pci/common.c +++ linux-intel-iotg-5.15-5.15.0/arch/x86/pci/common.c @@ -596,6 +596,14 @@ } else if (!strcmp(str, "nocrs")) { pci_probe |= PCI_ROOT_NO_CRS; return NULL; + } else if (!strcmp(str, "use_e820")) { + pci_probe |= PCI_USE_E820; + add_taint(TAINT_FIRMWARE_WORKAROUND, LOCKDEP_STILL_OK); + return NULL; + } else if (!strcmp(str, "no_e820")) { + pci_probe |= PCI_NO_E820; + add_taint(TAINT_FIRMWARE_WORKAROUND, LOCKDEP_STILL_OK); + return NULL; #ifdef CONFIG_PHYS_ADDR_T_64BIT } else if (!strcmp(str, "big_root_window")) { pci_probe |= PCI_BIG_ROOT_WINDOW; diff -u linux-intel-iotg-5.15-5.15.0/arch/x86/power/cpu.c linux-intel-iotg-5.15-5.15.0/arch/x86/power/cpu.c --- linux-intel-iotg-5.15-5.15.0/arch/x86/power/cpu.c +++ linux-intel-iotg-5.15-5.15.0/arch/x86/power/cpu.c @@ -25,6 +25,7 @@ #include #include #include +#include #ifdef CONFIG_X86_32 __visible unsigned long saved_context_ebx; @@ -262,11 +263,18 @@ x86_platform.restore_sched_clock_state(); mtrr_bp_restore(); perf_restore_debug_store(); - msr_restore_context(ctxt); c = &cpu_data(smp_processor_id()); if (cpu_has(c, X86_FEATURE_MSR_IA32_FEAT_CTL)) init_ia32_feat_ctl(c); + + microcode_bsp_resume(); + + /* + * This needs to happen after the microcode has been updated upon resume + * because some of the MSRs are "emulated" in microcode. + */ + msr_restore_context(ctxt); } /* Needed by apm.c */ diff -u linux-intel-iotg-5.15-5.15.0/arch/x86/xen/xen-asm.S linux-intel-iotg-5.15-5.15.0/arch/x86/xen/xen-asm.S --- linux-intel-iotg-5.15-5.15.0/arch/x86/xen/xen-asm.S +++ linux-intel-iotg-5.15-5.15.0/arch/x86/xen/xen-asm.S @@ -45,7 +45,7 @@ call check_events 1: FRAME_END - ret + RET SYM_FUNC_END(xen_irq_enable_direct) @@ -55,7 +55,7 @@ */ SYM_FUNC_START(xen_irq_disable_direct) movb $1, PER_CPU_VAR(xen_vcpu_info) + XEN_vcpu_info_mask - ret + RET SYM_FUNC_END(xen_irq_disable_direct) /* @@ -71,7 +71,7 @@ testb $0xff, PER_CPU_VAR(xen_vcpu_info) + XEN_vcpu_info_mask setz %ah addb %ah, %ah - ret + RET SYM_FUNC_END(xen_save_fl_direct) /* @@ -100,7 +100,7 @@ pop %rcx pop %rax FRAME_END - ret + RET SYM_FUNC_END(check_events) SYM_FUNC_START(xen_read_cr2) @@ -108,19 +108,19 @@ _ASM_MOV PER_CPU_VAR(xen_vcpu), %_ASM_AX _ASM_MOV XEN_vcpu_info_arch_cr2(%_ASM_AX), %_ASM_AX FRAME_END - ret + RET SYM_FUNC_END(xen_read_cr2); SYM_FUNC_START(xen_read_cr2_direct) FRAME_BEGIN _ASM_MOV PER_CPU_VAR(xen_vcpu_info) + XEN_vcpu_info_arch_cr2, %_ASM_AX FRAME_END - ret + RET SYM_FUNC_END(xen_read_cr2_direct); .macro xen_pv_trap name SYM_CODE_START(xen_\name) - UNWIND_HINT_EMPTY + UNWIND_HINT_ENTRY pop %rcx pop %r11 jmp \name @@ -227,8 +227,8 @@ */ /* Normal 64-bit system call target */ -SYM_CODE_START(xen_syscall_target) - UNWIND_HINT_EMPTY +SYM_CODE_START(xen_entry_SYSCALL_64) + UNWIND_HINT_ENTRY popq %rcx popq %r11 @@ -241,13 +241,13 @@ movq $__USER_CS, 1*8(%rsp) jmp entry_SYSCALL_64_after_hwframe -SYM_CODE_END(xen_syscall_target) +SYM_CODE_END(xen_entry_SYSCALL_64) #ifdef CONFIG_IA32_EMULATION /* 32-bit compat syscall target */ -SYM_CODE_START(xen_syscall32_target) - UNWIND_HINT_EMPTY +SYM_CODE_START(xen_entry_SYSCALL_compat) + UNWIND_HINT_ENTRY popq %rcx popq %r11 @@ -260,11 +260,11 @@ movq $__USER32_CS, 1*8(%rsp) jmp entry_SYSCALL_compat_after_hwframe -SYM_CODE_END(xen_syscall32_target) +SYM_CODE_END(xen_entry_SYSCALL_compat) /* 32-bit compat sysenter target */ -SYM_CODE_START(xen_sysenter_target) - UNWIND_HINT_EMPTY +SYM_CODE_START(xen_entry_SYSENTER_compat) + UNWIND_HINT_ENTRY /* * NB: Xen is polite and clears TF from EFLAGS for us. This means * that we don't need to guard against single step exceptions here. @@ -282,17 +282,17 @@ jmp entry_SYSENTER_compat_after_hwframe -SYM_CODE_END(xen_sysenter_target) +SYM_CODE_END(xen_entry_SYSENTER_compat) #else /* !CONFIG_IA32_EMULATION */ -SYM_CODE_START(xen_syscall32_target) -SYM_CODE_START(xen_sysenter_target) - UNWIND_HINT_EMPTY +SYM_CODE_START(xen_entry_SYSCALL_compat) +SYM_CODE_START(xen_entry_SYSENTER_compat) + UNWIND_HINT_ENTRY lea 16(%rsp), %rsp /* strip %rcx, %r11 */ mov $-ENOSYS, %rax pushq $0 jmp hypercall_iret -SYM_CODE_END(xen_sysenter_target) -SYM_CODE_END(xen_syscall32_target) +SYM_CODE_END(xen_entry_SYSENTER_compat) +SYM_CODE_END(xen_entry_SYSCALL_compat) #endif /* CONFIG_IA32_EMULATION */ diff -u linux-intel-iotg-5.15-5.15.0/arch/xtensa/kernel/jump_label.c linux-intel-iotg-5.15-5.15.0/arch/xtensa/kernel/jump_label.c --- linux-intel-iotg-5.15-5.15.0/arch/xtensa/kernel/jump_label.c +++ linux-intel-iotg-5.15-5.15.0/arch/xtensa/kernel/jump_label.c @@ -40,7 +40,7 @@ { struct patch *patch = data; - if (atomic_inc_return(&patch->cpu_count) == 1) { + if (atomic_inc_return(&patch->cpu_count) == num_online_cpus()) { local_patch_text(patch->addr, patch->data, patch->sz); atomic_inc(&patch->cpu_count); } else { diff -u linux-intel-iotg-5.15-5.15.0/block/bfq-cgroup.c linux-intel-iotg-5.15-5.15.0/block/bfq-cgroup.c --- linux-intel-iotg-5.15-5.15.0/block/bfq-cgroup.c +++ linux-intel-iotg-5.15-5.15.0/block/bfq-cgroup.c @@ -555,6 +555,7 @@ */ bfqg->bfqd = bfqd; bfqg->active_entities = 0; + bfqg->online = true; bfqg->rq_pos_tree = RB_ROOT; } @@ -583,28 +584,11 @@ entity->sched_data = &parent->sched_data; } -static struct bfq_group *bfq_lookup_bfqg(struct bfq_data *bfqd, - struct blkcg *blkcg) +static void bfq_link_bfqg(struct bfq_data *bfqd, struct bfq_group *bfqg) { - struct blkcg_gq *blkg; - - blkg = blkg_lookup(blkcg, bfqd->queue); - if (likely(blkg)) - return blkg_to_bfqg(blkg); - return NULL; -} - -struct bfq_group *bfq_find_set_group(struct bfq_data *bfqd, - struct blkcg *blkcg) -{ - struct bfq_group *bfqg, *parent; + struct bfq_group *parent; struct bfq_entity *entity; - bfqg = bfq_lookup_bfqg(bfqd, blkcg); - - if (unlikely(!bfqg)) - return NULL; - /* * Update chain of bfq_groups as we might be handling a leaf group * which, along with some of its relatives, has not been hooked yet @@ -621,8 +605,24 @@ bfq_group_set_parent(curr_bfqg, parent); } } +} - return bfqg; +struct bfq_group *bfq_bio_bfqg(struct bfq_data *bfqd, struct bio *bio) +{ + struct blkcg_gq *blkg = bio->bi_blkg; + struct bfq_group *bfqg; + + while (blkg) { + bfqg = blkg_to_bfqg(blkg); + if (bfqg->online) { + bio_associate_blkg_from_css(bio, &blkg->blkcg->css); + return bfqg; + } + blkg = blkg->parent; + } + bio_associate_blkg_from_css(bio, + &bfqg_to_blkg(bfqd->root_group)->blkcg->css); + return bfqd->root_group; } /** @@ -704,25 +704,15 @@ * Move bic to blkcg, assuming that bfqd->lock is held; which makes * sure that the reference to cgroup is valid across the call (see * comments in bfq_bic_update_cgroup on this issue) - * - * NOTE: an alternative approach might have been to store the current - * cgroup in bfqq and getting a reference to it, reducing the lookup - * time here, at the price of slightly more complex code. */ -static struct bfq_group *__bfq_bic_change_cgroup(struct bfq_data *bfqd, - struct bfq_io_cq *bic, - struct blkcg *blkcg) +static void *__bfq_bic_change_cgroup(struct bfq_data *bfqd, + struct bfq_io_cq *bic, + struct bfq_group *bfqg) { struct bfq_queue *async_bfqq = bic_to_bfqq(bic, 0); struct bfq_queue *sync_bfqq = bic_to_bfqq(bic, 1); - struct bfq_group *bfqg; struct bfq_entity *entity; - bfqg = bfq_find_set_group(bfqd, blkcg); - - if (unlikely(!bfqg)) - bfqg = bfqd->root_group; - if (async_bfqq) { entity = &async_bfqq->entity; @@ -733,9 +723,39 @@ } if (sync_bfqq) { - entity = &sync_bfqq->entity; - if (entity->sched_data != &bfqg->sched_data) - bfq_bfqq_move(bfqd, sync_bfqq, bfqg); + if (!sync_bfqq->new_bfqq && !bfq_bfqq_coop(sync_bfqq)) { + /* We are the only user of this bfqq, just move it */ + if (sync_bfqq->entity.sched_data != &bfqg->sched_data) + bfq_bfqq_move(bfqd, sync_bfqq, bfqg); + } else { + struct bfq_queue *bfqq; + + /* + * The queue was merged to a different queue. Check + * that the merge chain still belongs to the same + * cgroup. + */ + for (bfqq = sync_bfqq; bfqq; bfqq = bfqq->new_bfqq) + if (bfqq->entity.sched_data != + &bfqg->sched_data) + break; + if (bfqq) { + /* + * Some queue changed cgroup so the merge is + * not valid anymore. We cannot easily just + * cancel the merge (by clearing new_bfqq) as + * there may be other processes using this + * queue and holding refs to all queues below + * sync_bfqq->new_bfqq. Similarly if the merge + * already happened, we need to detach from + * bfqq now so that we cannot merge bio to a + * request from the old cgroup. + */ + bfq_put_cooperator(sync_bfqq); + bfq_release_process_ref(bfqd, sync_bfqq); + bic_set_bfqq(bic, NULL, 1); + } + } } return bfqg; @@ -744,20 +764,24 @@ void bfq_bic_update_cgroup(struct bfq_io_cq *bic, struct bio *bio) { struct bfq_data *bfqd = bic_to_bfqd(bic); - struct bfq_group *bfqg = NULL; + struct bfq_group *bfqg = bfq_bio_bfqg(bfqd, bio); uint64_t serial_nr; - rcu_read_lock(); - serial_nr = __bio_blkcg(bio)->css.serial_nr; + serial_nr = bfqg_to_blkg(bfqg)->blkcg->css.serial_nr; /* * Check whether blkcg has changed. The condition may trigger * spuriously on a newly created cic but there's no harm. */ if (unlikely(!bfqd) || likely(bic->blkcg_serial_nr == serial_nr)) - goto out; + return; - bfqg = __bfq_bic_change_cgroup(bfqd, bic, __bio_blkcg(bio)); + /* + * New cgroup for this process. Make sure it is linked to bfq internal + * cgroup hierarchy. + */ + bfq_link_bfqg(bfqd, bfqg); + __bfq_bic_change_cgroup(bfqd, bic, bfqg); /* * Update blkg_path for bfq_log_* functions. We cache this * path, and update it here, for the following @@ -810,8 +834,6 @@ */ blkg_path(bfqg_to_blkg(bfqg), bfqg->blkg_path, sizeof(bfqg->blkg_path)); bic->blkcg_serial_nr = serial_nr; -out: - rcu_read_unlock(); } /** @@ -939,6 +961,7 @@ put_async_queues: bfq_put_async_queues(bfqd, bfqg); + bfqg->online = false; spin_unlock_irqrestore(&bfqd->lock, flags); /* @@ -1428,7 +1451,7 @@ bfq_end_wr_async_queues(bfqd, bfqd->root_group); } -struct bfq_group *bfq_find_set_group(struct bfq_data *bfqd, struct blkcg *blkcg) +struct bfq_group *bfq_bio_bfqg(struct bfq_data *bfqd, struct bio *bio) { return bfqd->root_group; } diff -u linux-intel-iotg-5.15-5.15.0/block/bfq-iosched.c linux-intel-iotg-5.15-5.15.0/block/bfq-iosched.c --- linux-intel-iotg-5.15-5.15.0/block/bfq-iosched.c +++ linux-intel-iotg-5.15-5.15.0/block/bfq-iosched.c @@ -2022,9 +2022,7 @@ if (!bfqd->last_completed_rq_bfqq || bfqd->last_completed_rq_bfqq == bfqq || bfq_bfqq_has_short_ttime(bfqq) || - bfqq->dispatched > 0 || - now_ns - bfqd->last_completion >= 4 * NSEC_PER_MSEC || - bfqd->last_completed_rq_bfqq == bfqq->waker_bfqq) + now_ns - bfqd->last_completion >= 4 * NSEC_PER_MSEC) return; if (bfqd->last_completed_rq_bfqq != @@ -2084,7 +2082,7 @@ bfqq->queued[rq_is_sync(rq)]++; bfqd->queued++; - if (RB_EMPTY_ROOT(&bfqq->sort_list) && bfq_bfqq_sync(bfqq)) { + if (bfq_bfqq_sync(bfqq) && RQ_BIC(rq)->requests <= 1) { bfq_check_waker(bfqd, bfqq, now_ns); /* @@ -2337,10 +2335,17 @@ spin_lock_irq(&bfqd->lock); - if (bic) + if (bic) { + /* + * Make sure cgroup info is uptodate for current process before + * considering the merge. + */ + bfq_bic_update_cgroup(bic, bio); + bfqd->bio_bfqq = bic_to_bfqq(bic, op_is_sync(bio->bi_opf)); - else + } else { bfqd->bio_bfqq = NULL; + } bfqd->bio_bic = bic; ret = blk_mq_sched_try_merge(q, bio, nr_segs, &free); @@ -2370,8 +2375,6 @@ return ELEVATOR_NO_MERGE; } -static struct bfq_queue *bfq_init_rq(struct request *rq); - static void bfq_request_merged(struct request_queue *q, struct request *req, enum elv_merge type) { @@ -2380,7 +2383,7 @@ blk_rq_pos(req) < blk_rq_pos(container_of(rb_prev(&req->rb_node), struct request, rb_node))) { - struct bfq_queue *bfqq = bfq_init_rq(req); + struct bfq_queue *bfqq = RQ_BFQQ(req); struct bfq_data *bfqd; struct request *prev, *next_rq; @@ -2432,8 +2435,8 @@ static void bfq_requests_merged(struct request_queue *q, struct request *rq, struct request *next) { - struct bfq_queue *bfqq = bfq_init_rq(rq), - *next_bfqq = bfq_init_rq(next); + struct bfq_queue *bfqq = RQ_BFQQ(rq), + *next_bfqq = RQ_BFQQ(next); if (!bfqq) goto remove; @@ -2638,6 +2641,14 @@ if (process_refs == 0 || new_process_refs == 0) return NULL; + /* + * Make sure merged queues belong to the same parent. Parents could + * have changed since the time we decided the two queues are suitable + * for merging. + */ + if (new_bfqq->entity.parent != bfqq->entity.parent) + return NULL; + bfq_log_bfqq(bfqq->bfqd, bfqq, "scheduling merge with queue %d", new_bfqq->pid); @@ -2775,9 +2786,12 @@ struct bfq_queue *new_bfqq = bfq_setup_merge(bfqq, stable_merge_bfqq); - bic->stably_merged = true; - if (new_bfqq && new_bfqq->bic) - new_bfqq->bic->stably_merged = true; + if (new_bfqq) { + bic->stably_merged = true; + if (new_bfqq->bic) + new_bfqq->bic->stably_merged = + true; + } return new_bfqq; } else return NULL; @@ -5184,7 +5198,7 @@ bfq_put_queue(bfqq); } -static void bfq_put_cooperator(struct bfq_queue *bfqq) +void bfq_put_cooperator(struct bfq_queue *bfqq) { struct bfq_queue *__bfqq, *next; @@ -5590,14 +5604,7 @@ struct bfq_queue *bfqq; struct bfq_group *bfqg; - rcu_read_lock(); - - bfqg = bfq_find_set_group(bfqd, __bio_blkcg(bio)); - if (!bfqg) { - bfqq = &bfqd->oom_bfqq; - goto out; - } - + bfqg = bfq_bio_bfqg(bfqd, bio); if (!is_sync) { async_bfqq = bfq_async_queue_prio(bfqd, bfqg, ioprio_class, ioprio); @@ -5643,8 +5650,6 @@ if (bfqq != &bfqd->oom_bfqq && is_sync && !respawn) bfqq = bfq_do_or_sched_stable_merge(bfqd, bfqq, bic); - - rcu_read_unlock(); return bfqq; } @@ -5975,6 +5980,8 @@ unsigned int cmd_flags) {} #endif /* CONFIG_BFQ_CGROUP_DEBUG */ +static struct bfq_queue *bfq_init_rq(struct request *rq); + static void bfq_insert_request(struct blk_mq_hw_ctx *hctx, struct request *rq, bool at_head) { @@ -5990,18 +5997,15 @@ bfqg_stats_update_legacy_io(q, rq); #endif spin_lock_irq(&bfqd->lock); + bfqq = bfq_init_rq(rq); if (blk_mq_sched_try_insert_merge(q, rq, &free)) { spin_unlock_irq(&bfqd->lock); blk_mq_free_requests(&free); return; } - spin_unlock_irq(&bfqd->lock); - trace_block_rq_insert(rq); - spin_lock_irq(&bfqd->lock); - bfqq = bfq_init_rq(rq); if (!bfqq || at_head) { if (at_head) list_add(&rq->queuelist, &bfqd->dispatch); @@ -6422,6 +6426,7 @@ bfq_completed_request(bfqq, bfqd); } bfq_finish_requeue_request_body(bfqq); + RQ_BIC(rq)->requests--; spin_unlock_irqrestore(&bfqd->lock, flags); /* @@ -6643,6 +6648,7 @@ bfqq->allocated++; bfqq->ref++; + bic->requests++; bfq_log_bfqq(bfqd, bfqq, "get_request %p: bfqq %p, %d", rq, bfqq, bfqq->ref); diff -u linux-intel-iotg-5.15-5.15.0/block/blk-cgroup.c linux-intel-iotg-5.15-5.15.0/block/blk-cgroup.c --- linux-intel-iotg-5.15-5.15.0/block/blk-cgroup.c +++ linux-intel-iotg-5.15-5.15.0/block/blk-cgroup.c @@ -1886,12 +1886,8 @@ */ void bio_clone_blkg_association(struct bio *dst, struct bio *src) { - if (src->bi_blkg) { - if (dst->bi_blkg) - blkg_put(dst->bi_blkg); - blkg_get(src->bi_blkg); - dst->bi_blkg = src->bi_blkg; - } + if (src->bi_blkg) + bio_associate_blkg_from_css(dst, &bio_blkcg(src)->css); } EXPORT_SYMBOL_GPL(bio_clone_blkg_association); diff -u linux-intel-iotg-5.15-5.15.0/block/blk-iocost.c linux-intel-iotg-5.15-5.15.0/block/blk-iocost.c --- linux-intel-iotg-5.15-5.15.0/block/blk-iocost.c +++ linux-intel-iotg-5.15-5.15.0/block/blk-iocost.c @@ -2322,7 +2322,17 @@ iocg->hweight_donating = hwa; iocg->hweight_after_donation = new_hwi; list_add(&iocg->surplus_list, &surpluses); - } else { + } else if (!iocg->abs_vdebt) { + /* + * @iocg doesn't have enough to donate. Reset + * its inuse to active. + * + * Don't reset debtors as their inuse's are + * owned by debt handling. This shouldn't affect + * donation calculuation in any meaningful way + * as @iocg doesn't have a meaningful amount of + * share anyway. + */ TRACE_IOCG_PATH(inuse_shortage, iocg, &now, iocg->inuse, iocg->active, iocg->hweight_inuse, new_hwi); diff -u linux-intel-iotg-5.15-5.15.0/block/ioctl.c linux-intel-iotg-5.15-5.15.0/block/ioctl.c --- linux-intel-iotg-5.15-5.15.0/block/ioctl.c +++ linux-intel-iotg-5.15-5.15.0/block/ioctl.c @@ -645,7 +645,7 @@ (bdev->bd_disk->bdi->ra_pages * PAGE_SIZE) / 512); case BLKGETSIZE: size = i_size_read(bdev->bd_inode); - if ((size >> 9) > ~0UL) + if ((size >> 9) > ~(compat_ulong_t)0) return -EFBIG; return compat_put_ulong(argp, size >> 9); diff -u linux-intel-iotg-5.15-5.15.0/crypto/Kconfig linux-intel-iotg-5.15-5.15.0/crypto/Kconfig --- linux-intel-iotg-5.15-5.15.0/crypto/Kconfig +++ linux-intel-iotg-5.15-5.15.0/crypto/Kconfig @@ -1919,7 +1919,6 @@ config CRYPTO_HASH_INFO bool -source "lib/crypto/Kconfig" source "drivers/crypto/Kconfig" source "crypto/asymmetric_keys/Kconfig" source "certs/Kconfig" diff -u linux-intel-iotg-5.15-5.15.0/debian.intel-iotg-5.15/abi/abiname linux-intel-iotg-5.15-5.15.0/debian.intel-iotg-5.15/abi/abiname --- linux-intel-iotg-5.15-5.15.0/debian.intel-iotg-5.15/abi/abiname +++ linux-intel-iotg-5.15-5.15.0/debian.intel-iotg-5.15/abi/abiname @@ -1 +1 @@ -1005 +1015 diff -u linux-intel-iotg-5.15-5.15.0/debian.intel-iotg-5.15/abi/amd64/intel-iotg linux-intel-iotg-5.15-5.15.0/debian.intel-iotg-5.15/abi/amd64/intel-iotg --- linux-intel-iotg-5.15-5.15.0/debian.intel-iotg-5.15/abi/amd64/intel-iotg +++ linux-intel-iotg-5.15-5.15.0/debian.intel-iotg-5.15/abi/amd64/intel-iotg @@ -1,25 +1,24 @@ -CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x16ad7ac6 crypto_cipher_encrypt_one vmlinux -CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0xa85a549d crypto_cipher_decrypt_one vmlinux -CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0xad90f176 crypto_cipher_setkey vmlinux -CXL EXPORT_SYMBOL_GPL 0x1d02e85c is_root_decoder drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x2989224b cxl_driver_unregister drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x2d298ee4 cxl_bus_type drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x336940e1 devm_cxl_add_nvdimm_bridge drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x338e4e5f cxl_map_component_regs drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x38dc1e24 cxl_map_device_regs drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x3f096412 to_cxl_nvdimm_bridge drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x45813447 devm_cxl_add_decoder drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x6dd2bb0f cxl_add_dport drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x8208da24 devm_cxl_add_nvdimm drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x9484bb00 devm_cxl_add_memdev drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x95084e33 to_cxl_decoder drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xa13ca98d devm_cxl_add_port drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xb76e6502 cxl_probe_component_regs drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xb7c10188 __cxl_driver_register drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xc3ec4dc9 to_cxl_nvdimm drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xc623772f is_cxl_nvdimm drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xe6e988c1 cxl_probe_device_regs drivers/cxl/core/cxl_core -EXPORT_SYMBOL arch/x86/crypto/blake2s-x86_64 0x23aa18fe blake2s_compress_arch +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0xbc025f76 crypto_cipher_encrypt_one vmlinux +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0xbf687938 crypto_cipher_setkey vmlinux +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0xc62d315f crypto_cipher_decrypt_one vmlinux +CXL EXPORT_SYMBOL_GPL 0x0be0d319 devm_cxl_add_memdev drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x169fe680 cxl_driver_unregister drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x17acb3fc to_cxl_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x183529d2 to_cxl_nvdimm_bridge drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x21f72354 devm_cxl_add_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x228c8aee devm_cxl_add_nvdimm_bridge drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x2cb9df4a cxl_map_component_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x63b9b68c cxl_probe_device_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x760d8a30 cxl_map_device_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x77ee14a3 cxl_add_dport drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x7ee74000 __cxl_driver_register drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x80b6254d devm_cxl_add_nvdimm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x835f77ea is_root_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x8868a605 to_cxl_nvdimm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x8d13539b cxl_probe_component_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xa6a210fa devm_cxl_add_port drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xc7ae05a5 cxl_bus_type drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xcbfaa229 is_cxl_nvdimm drivers/cxl/core/cxl_core EXPORT_SYMBOL arch/x86/crypto/chacha-x86_64 0x220b49ab chacha_crypt_arch EXPORT_SYMBOL arch/x86/crypto/chacha-x86_64 0xdc94f829 chacha_init_arch EXPORT_SYMBOL arch/x86/crypto/chacha-x86_64 0xdd8ec6bd hchacha_block_arch @@ -28,7 +27,7 @@ EXPORT_SYMBOL arch/x86/crypto/poly1305-x86_64 0xd9ec23eb poly1305_update_arch EXPORT_SYMBOL arch/x86/crypto/poly1305-x86_64 0xe1df0e1b poly1305_init_arch EXPORT_SYMBOL arch/x86/crypto/poly1305-x86_64 0xfaeb41b2 poly1305_final_arch -EXPORT_SYMBOL arch/x86/kvm/kvm 0xf2d7e583 kvm_cpu_has_pending_timer +EXPORT_SYMBOL arch/x86/kvm/kvm 0x397027c2 kvm_cpu_has_pending_timer EXPORT_SYMBOL crypto/blake2b_generic 0x32e24c8a blake2b_compress_generic EXPORT_SYMBOL crypto/ecc 0x16e410ff vli_from_be64 EXPORT_SYMBOL crypto/ecc 0x188a1647 ecc_is_pubkey_valid_full @@ -55,1124 +54,1124 @@ EXPORT_SYMBOL crypto/sha3_generic 0x1f1f4407 crypto_sha3_update EXPORT_SYMBOL crypto/sha3_generic 0x492c9beb crypto_sha3_final EXPORT_SYMBOL crypto/sha3_generic 0xe5efeb6c crypto_sha3_init -EXPORT_SYMBOL crypto/sm2_generic 0x0339b982 sm2_compute_z_digest -EXPORT_SYMBOL crypto/sm3_generic 0x439193a9 crypto_sm3_update -EXPORT_SYMBOL crypto/sm3_generic 0x8c2feec6 crypto_sm3_final -EXPORT_SYMBOL crypto/sm3_generic 0xafd55d1e crypto_sm3_finup +EXPORT_SYMBOL crypto/sm2_generic 0xe1e6290e sm2_compute_z_digest +EXPORT_SYMBOL crypto/sm3_generic 0x3881b001 crypto_sm3_update +EXPORT_SYMBOL crypto/sm3_generic 0x829db060 crypto_sm3_final +EXPORT_SYMBOL crypto/sm3_generic 0xd8085085 crypto_sm3_finup EXPORT_SYMBOL crypto/xor 0x5b6c00e6 xor_blocks EXPORT_SYMBOL drivers/acpi/nfit/nfit 0x06848c60 to_nfit_uuid -EXPORT_SYMBOL drivers/acpi/video 0x35068f27 acpi_video_get_levels -EXPORT_SYMBOL drivers/acpi/video 0x5dadd7ed acpi_video_get_edid EXPORT_SYMBOL drivers/acpi/video 0x6de7f7ff acpi_video_get_backlight_type EXPORT_SYMBOL drivers/acpi/video 0x7a45377b acpi_video_unregister EXPORT_SYMBOL drivers/acpi/video 0x7cc484a5 acpi_video_handles_brightness_key_presses EXPORT_SYMBOL drivers/acpi/video 0x8826c13b acpi_video_register +EXPORT_SYMBOL drivers/acpi/video 0xe6f7cacc acpi_video_get_levels +EXPORT_SYMBOL drivers/acpi/video 0xe83d64c1 acpi_video_get_edid EXPORT_SYMBOL drivers/acpi/video 0xe92ca535 acpi_video_set_dmi_backlight_type -EXPORT_SYMBOL drivers/atm/suni 0xa8a2b084 suni_init -EXPORT_SYMBOL drivers/atm/uPD98402 0xabc25c9a uPD98402_init -EXPORT_SYMBOL drivers/bcma/bcma 0x18632abd bcma_core_dma_translation -EXPORT_SYMBOL drivers/bcma/bcma 0xf6ab2adc bcma_core_irq +EXPORT_SYMBOL drivers/atm/suni 0x8251d0ec suni_init +EXPORT_SYMBOL drivers/atm/uPD98402 0xe943eb70 uPD98402_init +EXPORT_SYMBOL drivers/bcma/bcma 0xa0ebd517 bcma_core_irq +EXPORT_SYMBOL drivers/bcma/bcma 0xe52aef73 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 0x0e8b31fb pi_do_claimed -EXPORT_SYMBOL drivers/block/paride/paride 0x29800632 pi_read_regr +EXPORT_SYMBOL drivers/block/paride/paride 0x3fed811d pi_write_block EXPORT_SYMBOL drivers/block/paride/paride 0x4267110a pi_register_driver -EXPORT_SYMBOL drivers/block/paride/paride 0x64e7239a paride_register -EXPORT_SYMBOL drivers/block/paride/paride 0x98de4996 pi_disconnect -EXPORT_SYMBOL drivers/block/paride/paride 0x9e10ca5f paride_unregister -EXPORT_SYMBOL drivers/block/paride/paride 0xa0871d8c pi_connect -EXPORT_SYMBOL drivers/block/paride/paride 0xa5568c3e pi_read_block +EXPORT_SYMBOL drivers/block/paride/paride 0x6da2596b pi_schedule_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0x6e81cf5f pi_write_regr +EXPORT_SYMBOL drivers/block/paride/paride 0x72ce6193 paride_unregister +EXPORT_SYMBOL drivers/block/paride/paride 0x72e94cc1 pi_do_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0x835badf0 pi_disconnect +EXPORT_SYMBOL drivers/block/paride/paride 0xa27ffca8 pi_read_regr +EXPORT_SYMBOL drivers/block/paride/paride 0xa298cd19 pi_release EXPORT_SYMBOL drivers/block/paride/paride 0xb21ba07d pi_unregister_driver -EXPORT_SYMBOL drivers/block/paride/paride 0xc3d73e7d pi_release -EXPORT_SYMBOL drivers/block/paride/paride 0xc8dd2277 pi_write_regr -EXPORT_SYMBOL drivers/block/paride/paride 0xe4f4024f pi_init -EXPORT_SYMBOL drivers/block/paride/paride 0xeb83039b pi_schedule_claimed -EXPORT_SYMBOL drivers/block/paride/paride 0xf42fd2d2 pi_write_block -EXPORT_SYMBOL drivers/bluetooth/btbcm 0x8e419fa5 btbcm_patchram -EXPORT_SYMBOL drivers/bluetooth/btrsi 0xd4c8145b rsi_bt_ops -EXPORT_SYMBOL drivers/bus/mhi/core/mhi 0xb42d3f44 mhi_sync_power_up +EXPORT_SYMBOL drivers/block/paride/paride 0xb22fca9c pi_init +EXPORT_SYMBOL drivers/block/paride/paride 0xd3300a05 paride_register +EXPORT_SYMBOL drivers/block/paride/paride 0xd8cb147b pi_connect +EXPORT_SYMBOL drivers/block/paride/paride 0xdfa54eda pi_read_block +EXPORT_SYMBOL drivers/bluetooth/btbcm 0x6c5608ca btbcm_patchram +EXPORT_SYMBOL drivers/bluetooth/btrsi 0x19930527 rsi_bt_ops +EXPORT_SYMBOL drivers/bus/mhi/core/mhi 0xb202579a 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 0x230094ac ipmi_smi_watchdog_pretimeout EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x31cab048 ipmi_smi_msg_received EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x40f2b10c ipmi_alloc_smi_msg -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x4248b5bf 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 0x67369b42 ipmi_addr_src_to_str +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x6b0e6d97 ipmi_smi_watcher_unregister 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 0x85461fbe ipmi_get_smi_info EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x89a5279a ipmi_get_version -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x95ea0797 ipmi_smi_watcher_register EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xaca90ebd ipmi_request_supply_msgs EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xae71627d ipmi_create_user -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xcd4bd16d ipmi_add_smi +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xbb4a3ed7 ipmi_add_smi +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xc1309e60 ipmi_smi_watcher_register EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xd54a5050 ipmi_unregister_for_cmd EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe4330a39 ipmi_unregister_smi EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe4f4665b ipmi_validate_addr EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 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 0xf894d653 ipmi_get_smi_info 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 0x122dbe61 st33zp24_pm_suspend -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x46f28bef st33zp24_probe -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x95bfd2ca st33zp24_pm_resume -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xe07d228f st33zp24_remove -EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0x1d8b79cd xillybus_find_inode -EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0xc8f2cfda xillybus_init_chrdev -EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0xf89a0add xillybus_cleanup_chrdev -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x23007d2f xillybus_endpoint_remove +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x09baf19d st33zp24_remove +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x66801e08 st33zp24_probe +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x78b28485 st33zp24_pm_suspend +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xc4d54c0e st33zp24_pm_resume +EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0x395a93f9 xillybus_cleanup_chrdev +EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0x6ae74dda xillybus_find_inode +EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0xd2f23ffc xillybus_init_chrdev EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x25978d50 xillybus_isr -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x9a722824 xillybus_endpoint_discovery -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xb482688d xillybus_init_endpoint -EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x0c7c60a8 atmel_i2c_probe -EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x273eb405 atmel_i2c_send_receive +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x3b66b6b2 xillybus_endpoint_discovery +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x7b466553 xillybus_endpoint_remove +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xf0511bd4 xillybus_init_endpoint +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x2dc73fd0 atmel_i2c_probe +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x5087dfc3 atmel_i2c_send_receive +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x7900f797 atmel_i2c_enqueue EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x80a11b1d atmel_i2c_init_read_cmd -EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xb20b45d0 atmel_i2c_enqueue EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xc71ed50c atmel_i2c_init_genkey_cmd 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/ccp/ccp 0x47d3c97f psp_check_tee_status EXPORT_SYMBOL drivers/crypto/ccp/ccp 0xaa04056c psp_tee_process_cmd -EXPORT_SYMBOL drivers/firewire/firewire-core 0x0a72b092 fw_run_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0x03ae9279 fw_iso_context_queue_flush +EXPORT_SYMBOL drivers/firewire/firewire-core 0x0860a732 fw_iso_buffer_init EXPORT_SYMBOL drivers/firewire/firewire-core 0x0bc6094c fw_core_remove_descriptor -EXPORT_SYMBOL drivers/firewire/firewire-core 0x0ec62835 fw_iso_context_flush_completions -EXPORT_SYMBOL drivers/firewire/firewire-core 0x11ed5e00 fw_iso_context_queue +EXPORT_SYMBOL drivers/firewire/firewire-core 0x1604bd41 fw_core_handle_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0x2753737c fw_send_request EXPORT_SYMBOL drivers/firewire/firewire-core 0x2885fec5 fw_get_request_speed -EXPORT_SYMBOL drivers/firewire/firewire-core 0x2f3ad4f5 fw_device_enable_phys_dma -EXPORT_SYMBOL drivers/firewire/firewire-core 0x3265c504 fw_schedule_bus_reset -EXPORT_SYMBOL drivers/firewire/firewire-core 0x35bce826 fw_cancel_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0x32f839e9 fw_cancel_transaction 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 0x3ce7516c fw_iso_context_stop -EXPORT_SYMBOL drivers/firewire/firewire-core 0x410d6082 fw_iso_resource_manage -EXPORT_SYMBOL drivers/firewire/firewire-core 0x48bebee5 fw_card_initialize -EXPORT_SYMBOL drivers/firewire/firewire-core 0x4dfe2b91 fw_iso_buffer_init -EXPORT_SYMBOL drivers/firewire/firewire-core 0x52926cbb fw_iso_context_queue_flush -EXPORT_SYMBOL drivers/firewire/firewire-core 0x56bd1234 fw_bus_type -EXPORT_SYMBOL drivers/firewire/firewire-core 0x5b094f0a fw_iso_context_create -EXPORT_SYMBOL drivers/firewire/firewire-core 0x5c6d24a1 fw_iso_context_start +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3d4b6a84 fw_iso_context_create +EXPORT_SYMBOL drivers/firewire/firewire-core 0x4c105251 fw_core_handle_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x52cad694 fw_device_enable_phys_dma EXPORT_SYMBOL drivers/firewire/firewire-core 0x6dc50487 fw_csr_string -EXPORT_SYMBOL drivers/firewire/firewire-core 0x798d5e87 fw_core_handle_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0x75d17306 fw_core_add_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0x76718fa1 fw_core_remove_card +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7b1ad2dd fw_iso_context_start +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7bd2bf83 fw_iso_context_queue +EXPORT_SYMBOL drivers/firewire/firewire-core 0x82257758 fw_schedule_bus_reset EXPORT_SYMBOL drivers/firewire/firewire-core 0x86468d44 fw_rcode_string -EXPORT_SYMBOL drivers/firewire/firewire-core 0x867bedde fw_core_remove_address_handler -EXPORT_SYMBOL drivers/firewire/firewire-core 0x8be42af5 fw_iso_context_destroy -EXPORT_SYMBOL drivers/firewire/firewire-core 0x952fb9df fw_core_handle_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0x9fa9dc65 fw_core_remove_card -EXPORT_SYMBOL drivers/firewire/firewire-core 0xa9104d2d fw_core_add_address_handler -EXPORT_SYMBOL drivers/firewire/firewire-core 0xab52f464 fw_send_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x8d6de4cd fw_iso_context_stop +EXPORT_SYMBOL drivers/firewire/firewire-core 0x8e5be71a fw_core_handle_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0x92d531fd fw_core_remove_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0x9944c2fe fw_send_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x9b70e187 fw_bus_type +EXPORT_SYMBOL drivers/firewire/firewire-core 0xa2909192 fw_fill_response EXPORT_SYMBOL drivers/firewire/firewire-core 0xaedf84ce fw_high_memory_region -EXPORT_SYMBOL drivers/firewire/firewire-core 0xb64378af fw_fill_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0xcb33878c fw_send_request -EXPORT_SYMBOL drivers/firewire/firewire-core 0xcfe70e25 fw_card_add -EXPORT_SYMBOL drivers/firewire/firewire-core 0xd8b39d5e fw_iso_buffer_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0xb6692828 fw_iso_context_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0xba8e38b1 fw_card_initialize +EXPORT_SYMBOL drivers/firewire/firewire-core 0xc79a8d1b fw_run_transaction EXPORT_SYMBOL drivers/firewire/firewire-core 0xe3fde125 fw_csr_iterator_next -EXPORT_SYMBOL drivers/firewire/firewire-core 0xe606b518 fw_core_handle_bus_reset EXPORT_SYMBOL drivers/firewire/firewire-core 0xe80e5087 fw_csr_iterator_init -EXPORT_SYMBOL drivers/fpga/dfl 0x0244b203 __dfl_driver_register -EXPORT_SYMBOL drivers/fpga/dfl 0x4efe44f8 dfl_driver_unregister +EXPORT_SYMBOL drivers/firewire/firewire-core 0xece3d60f fw_card_add +EXPORT_SYMBOL drivers/firewire/firewire-core 0xf2a4e29d fw_iso_context_flush_completions +EXPORT_SYMBOL drivers/firewire/firewire-core 0xf667d03f fw_iso_buffer_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0xf7f45d23 fw_iso_resource_manage +EXPORT_SYMBOL drivers/fpga/dfl 0x671aaa64 __dfl_driver_register +EXPORT_SYMBOL drivers/fpga/dfl 0xd15ca466 dfl_driver_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x00543826 drm_modeset_lock_all EXPORT_SYMBOL drivers/gpu/drm/drm 0x00738a74 drm_driver_legacy_fb_format -EXPORT_SYMBOL drivers/gpu/drm/drm 0x008baca3 drm_display_info_set_bus_formats -EXPORT_SYMBOL drivers/gpu/drm/drm 0x014bad98 drm_syncobj_get_handle -EXPORT_SYMBOL drivers/gpu/drm/drm 0x017429a5 drm_connector_set_path_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x00d9a8e6 drm_gem_private_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x00da5d4a drm_invalid_op +EXPORT_SYMBOL drivers/gpu/drm/drm 0x00e5b4a8 drm_atomic_get_crtc_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x014b62e6 drm_atomic_state_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0x026542e8 drm_gem_dmabuf_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x02892b9e drm_warn_on_modeset_not_all_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0303ae67 drm_vblank_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x034821d2 drm_panel_remove EXPORT_SYMBOL drivers/gpu/drm/drm 0x03c63897 __drm_get_edid_firmware_path -EXPORT_SYMBOL drivers/gpu/drm/drm 0x04a23626 drm_bridge_chain_mode_set -EXPORT_SYMBOL drivers/gpu/drm/drm 0x05a1c029 drm_modeset_lock_single_interruptible -EXPORT_SYMBOL drivers/gpu/drm/drm 0x05c1032e drm_atomic_set_crtc_for_connector -EXPORT_SYMBOL drivers/gpu/drm/drm 0x065e86ac drm_detect_hdmi_monitor -EXPORT_SYMBOL drivers/gpu/drm/drm 0x06c21b04 drm_connector_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0x06f54aee drm_dev_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x05020270 drm_panel_unprepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0x060684a1 drm_hdcp_update_content_protection +EXPORT_SYMBOL drivers/gpu/drm/drm 0x060f55a0 drm_gem_vm_close +EXPORT_SYMBOL drivers/gpu/drm/drm 0x06b3d44d drm_gem_cma_print_info EXPORT_SYMBOL drivers/gpu/drm/drm 0x070b28aa drm_ht_remove_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0x079d9d8f drm_ioctl_permit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x07f09314 drm_any_plane_has_format EXPORT_SYMBOL drivers/gpu/drm/drm 0x07fb449a drm_vma_offset_manager_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0898565d drm_bridge_chain_mode_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a410d9b drm_i2c_encoder_save +EXPORT_SYMBOL drivers/gpu/drm/drm 0x08b0a737 drm_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0978d36f drm_dev_enter +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a36488b drm_atomic_add_affected_planes EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a72f765 drm_clflush_virt_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ab475a3 drm_atomic_get_new_connector_for_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ab952f1 drm_panel_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ba17c21 drm_panel_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0cf49291 drm_client_modeset_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d83d29e drm_connector_attach_tv_margin_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a862b6c drm_client_framebuffer_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a8fe602 drm_atomic_set_mode_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0aa7c53d drm_gem_free_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0b9d5e70 drm_release_noglobal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0bbeaa31 drm_i2c_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0c5acc3a drm_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0cbd298d drm_writeback_prepare_job EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d9b4753 drm_mode_equal -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d9c92ff drm_atomic_get_old_connector_for_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0e5ee460 drm_mode_object_find -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0eb2a201 drm_gem_create_mmap_offset_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0eb74352 drm_framebuffer_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0dbf3af7 drm_gem_unmap_dma_buf +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0e475f1f drm_dev_register EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f7acb66 drm_mm_print +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f9bca74 drm_sysfs_hotplug_event EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fd60df2 drm_get_connector_status_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x101c7326 drm_bridge_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ff2f64f drm_mode_create_hdmi_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1049e7e9 drm_client_modeset_commit EXPORT_SYMBOL drivers/gpu/drm/drm 0x107742a9 drm_get_subpixel_order_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x107d1c65 drm_get_edid_switcheroo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x114b9554 drm_mode_create_from_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1166a317 drm_writeback_cleanup_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1168e342 __drmm_crtc_alloc_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x11f2dffa drm_universal_plane_init EXPORT_SYMBOL drivers/gpu/drm/drm 0x127a8c6b drm_flip_work_queue -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1322f144 drm_atomic_state_default_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1434cc86 drm_atomic_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x14473092 drm_any_plane_has_format -EXPORT_SYMBOL drivers/gpu/drm/drm 0x155f46b8 drm_connector_has_possible_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0x156c26da drm_vblank_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x16c1669b drm_modeset_lock_all_ctx -EXPORT_SYMBOL drivers/gpu/drm/drm 0x16dd3847 drm_hdmi_vendor_infoframe_from_display_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x178d6d6b drm_client_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x18b5ea3e drm_gem_dmabuf_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x18e62249 drm_master_internal_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x19609cd0 drm_handle_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x19bb9964 drm_file_get_master -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a0d5206 drm_gem_fence_array_add_implicit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1282908e drm_edid_to_speaker_allocation +EXPORT_SYMBOL drivers/gpu/drm/drm 0x13ede1f9 drm_display_mode_from_cea_vic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x141a7db1 drm_mode_is_420 +EXPORT_SYMBOL drivers/gpu/drm/drm 0x145b0747 drm_noop +EXPORT_SYMBOL drivers/gpu/drm/drm 0x156a4a10 drm_gem_objects_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x15bfc357 drm_bridge_chain_mode_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1632d091 drm_property_create_object +EXPORT_SYMBOL drivers/gpu/drm/drm 0x16611a9c drm_vblank_work_flush +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1683cea0 drm_connector_attach_dp_subconnector_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x16c637b7 drm_gem_prime_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0x173c1f88 drm_print_regset32 +EXPORT_SYMBOL drivers/gpu/drm/drm 0x17756755 drm_mode_prune_invalid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x18128504 drm_vblank_work_cancel_sync +EXPORT_SYMBOL drivers/gpu/drm/drm 0x18340637 drm_plane_create_color_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a34ad7a drm_bridge_chain_disable EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a411479 drm_syncobj_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1b4ce2ff drm_hdmi_avi_infoframe_content_type -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1baa2cc4 drm_property_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c426ec6 __drmm_encoder_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c85e307 drm_gem_shmem_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d34bd03 drm_gem_get_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d3f10e9 drm_gem_vm_open -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1e548166 drm_ioctl_kernel -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1fd8d482 drm_syncobj_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x20243b44 drm_gem_dmabuf_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x202bdba8 drm_atomic_state_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1ac7bc81 drm_bridge_chain_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c728854 drm_syncobj_get_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1dc979cd drm_gem_shmem_pin +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1e9734ec drm_plane_create_zpos_immutable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1ec6685e drm_send_event_timestamp_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1fa94e25 drm_modeset_lock_all_ctx +EXPORT_SYMBOL drivers/gpu/drm/drm 0x206ef11b drm_framebuffer_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x20efe931 drm_panel_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x20f956fa drm_atomic_print_new_state EXPORT_SYMBOL drivers/gpu/drm/drm 0x2183c08c drm_mm_scan_add_block -EXPORT_SYMBOL drivers/gpu/drm/drm 0x21912d7c drm_gem_vunmap EXPORT_SYMBOL drivers/gpu/drm/drm 0x21d541eb drm_flip_work_queue_task -EXPORT_SYMBOL drivers/gpu/drm/drm 0x22186011 drm_mode_set_config_internal -EXPORT_SYMBOL drivers/gpu/drm/drm 0x227984ef drm_open -EXPORT_SYMBOL drivers/gpu/drm/drm 0x22bf74f8 drm_modeset_acquire_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2301b55d drm_client_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0x247a2efa __drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm 0x23207387 drm_connector_list_iter_end +EXPORT_SYMBOL drivers/gpu/drm/drm 0x23c013c4 drm_property_blob_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x23f654d8 drm_edid_to_sad +EXPORT_SYMBOL drivers/gpu/drm/drm 0x24993e50 drm_edid_are_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x24bf1da3 drm_aperture_remove_conflicting_pci_framebuffers 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 0x24d316db drm_connector_list_iter_begin -EXPORT_SYMBOL drivers/gpu/drm/drm 0x24d86507 drm_master_internal_acquire -EXPORT_SYMBOL drivers/gpu/drm/drm 0x258307f4 drm_noop EXPORT_SYMBOL drivers/gpu/drm/drm 0x25daad93 __drm_mm_interval_first -EXPORT_SYMBOL drivers/gpu/drm/drm 0x25ffafa5 drm_plane_create_zpos_property EXPORT_SYMBOL drivers/gpu/drm/drm 0x2754dad8 drm_mm_reserve_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0x27ce732a drm_connector_attach_content_type_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x27d003fb drm_atomic_private_obj_fini -EXPORT_SYMBOL drivers/gpu/drm/drm 0x280d15ab drm_dev_set_unique +EXPORT_SYMBOL drivers/gpu/drm/drm 0x27d1ba8a drm_gem_shmem_unpin +EXPORT_SYMBOL drivers/gpu/drm/drm 0x27e08705 drm_atomic_add_encoder_bridges +EXPORT_SYMBOL drivers/gpu/drm/drm 0x284bfd7f drm_crtc_vblank_put EXPORT_SYMBOL drivers/gpu/drm/drm 0x28779e52 drm_printf -EXPORT_SYMBOL drivers/gpu/drm/drm 0x29da254d drm_mode_create_dp_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x294aaec1 drm_i2c_encoder_mode_set EXPORT_SYMBOL drivers/gpu/drm/drm 0x29f078d1 drm_mode_legacy_fb_format -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a35e07f drm_warn_on_modeset_not_all_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a4fae2f drm_mode_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a6cb783 drm_property_blob_put EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a962499 drm_mm_scan_init_with_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ca89b99 drm_modeset_acquire_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c5f51e9 drm_framebuffer_plane_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d02a91b drm_crtc_init_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d4f3996 drm_bridge_attach EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d50570f drm_rect_calc_hscale +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2da007e9 drm_atomic_nonblocking_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2dca8682 drm_atomic_bridge_chain_post_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e5474bc drm_property_create_blob EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ed3c600 drm_mode_debug_printmodeline -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2fd2035c drm_connector_set_panel_orientation -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3076cc8f drm_writeback_cleanup_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f3c630c drm_atomic_state_default_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x31118ae8 drm_display_info_set_bus_formats EXPORT_SYMBOL drivers/gpu/drm/drm 0x31b8a5e3 __drm_set_edid_firmware_path -EXPORT_SYMBOL drivers/gpu/drm/drm 0x32299bc4 drm_encoder_init EXPORT_SYMBOL drivers/gpu/drm/drm 0x32a0cc37 drm_print_bits -EXPORT_SYMBOL drivers/gpu/drm/drm 0x32fa5941 drm_atomic_get_connector_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3698414e drm_gem_dmabuf_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x37ea8325 drm_framebuffer_plane_width -EXPORT_SYMBOL drivers/gpu/drm/drm 0x388df650 drm_crtc_vblank_count_and_time -EXPORT_SYMBOL drivers/gpu/drm/drm 0x39298179 drm_dev_unplug -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ab5afde drm_aperture_remove_conflicting_framebuffers +EXPORT_SYMBOL drivers/gpu/drm/drm 0x32c9b0cc drm_crtc_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x330e8a82 drm_gem_mmap_obj +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3386f5d8 drm_atomic_get_old_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x341697e0 drm_property_create_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x34415e7e drm_connector_list_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3454c3d5 drm_property_create_signed_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x34ae1284 drm_atomic_get_new_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3563a184 drm_connector_set_panel_orientation_with_quirk +EXPORT_SYMBOL drivers/gpu/drm/drm 0x35b50d1a drm_modeset_lock_single_interruptible +EXPORT_SYMBOL drivers/gpu/drm/drm 0x37a65e18 drm_writeback_queue_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0x38afa7fc drm_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm 0x38f03624 drm_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x393ab6a7 drm_crtc_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x39c3b955 drm_bridge_chain_enable EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ab87110 drm_mode_equal_no_clocks -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3abc44b4 drm_gem_handle_create EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b0e5e9c __drm_puts_coredump -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b6d7f2a drm_mode_create_tv_properties EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ba17eab drm_ht_insert_item -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3bac1699 drm_hdcp_update_content_protection +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ba72910 drm_gtf_mode_complex +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3bd934c3 drm_gem_prime_fd_to_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c107a89 drm_gem_shmem_create_with_handle EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c22a4d8 drm_vma_offset_manager_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3cf830ad drm_property_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3d0e3fa6 drm_syncobj_find_fence -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3da38370 drm_atomic_bridge_chain_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c55dbbb drm_client_modeset_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3cc7af83 drm_crtc_check_viewport +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3defef30 drm_atomic_get_new_bridge_state EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e50b109 drm_gem_fence_array_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e62f718 drm_gem_map_detach -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f3cc0c1 drm_atomic_private_obj_init EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f405489 __drm_printfn_err -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f544a19 drm_invalid_op -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f8cb1ae drm_calc_timestamping_constants -EXPORT_SYMBOL drivers/gpu/drm/drm 0x409f5f8e drm_i2c_encoder_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x40cad1a4 drm_gem_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x40f48f91 drm_set_preferred_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x413e0657 drm_dev_enter -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4147ba0d drm_connector_attach_scaling_mode_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x41a4a541 drm_mode_find_dmt -EXPORT_SYMBOL drivers/gpu/drm/drm 0x41a6fb33 drm_i2c_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x43e167dc drm_plane_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x43faeac1 drm_property_replace_global_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f5cddac drm_crtc_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3fe12ce6 drmm_kfree +EXPORT_SYMBOL drivers/gpu/drm/drm 0x40c8646f drm_gem_object_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x419c0add drm_atomic_state_default_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0x427cb2c7 drm_mode_create_dvi_i_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x42e8c25d drm_master_internal_acquire +EXPORT_SYMBOL drivers/gpu/drm/drm 0x43edef73 drm_writeback_signal_completion EXPORT_SYMBOL drivers/gpu/drm/drm 0x4403a9c3 drm_mode_get_hv_timing -EXPORT_SYMBOL drivers/gpu/drm/drm 0x441624d9 drm_connector_attach_hdr_output_metadata_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4418ec67 drm_client_rotation EXPORT_SYMBOL drivers/gpu/drm/drm 0x44a2cadb drm_prime_sg_to_dma_addr_array EXPORT_SYMBOL drivers/gpu/drm/drm 0x4575a0ca drm_mode_set_crtcinfo -EXPORT_SYMBOL drivers/gpu/drm/drm 0x474385f6 drm_client_buffer_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x47cee9b7 drm_gem_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x47e3472e drm_gem_shmem_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x458f655d drm_hdmi_avi_infoframe_content_type +EXPORT_SYMBOL drivers/gpu/drm/drm 0x45a0001b drm_gem_create_mmap_offset_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x475c44d4 drm_crtc_vblank_waitqueue +EXPORT_SYMBOL drivers/gpu/drm/drm 0x47cf675a drm_gem_shmem_vunmap EXPORT_SYMBOL drivers/gpu/drm/drm 0x4831da6e drm_vma_offset_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x48cfba5f drm_display_mode_from_cea_vic -EXPORT_SYMBOL drivers/gpu/drm/drm 0x48d4a106 drm_atomic_get_private_obj_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x499f84c9 drm_release_noglobal -EXPORT_SYMBOL drivers/gpu/drm/drm 0x49abf316 drm_i2c_encoder_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4846632e drm_mode_config_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x48b8a148 drm_plane_create_alpha_property EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a35d30d drm_mode_set_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a7cd1e6 drm_client_register EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a7d75b0 drm_memcpy_from_wc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4afbfd36 drm_hdmi_infoframe_set_hdr_metadata +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b2dfc3a drmm_kmalloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b393ee0 drm_gem_get_pages EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b7ebf95 drm_mm_remove_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c1be567 devm_aperture_acquire_from_firmware -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c2dfc55 drm_vblank_work_cancel_sync -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c6a813e drm_gem_prime_import_dev -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4cd99d92 drm_client_dev_hotplug -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d04e600 drm_plane_force_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4dca7883 drm_mode_create_aspect_ratio_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ea1c75c drm_atomic_add_affected_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4efa211f drm_connector_update_edid_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f03c6f2 drm_gem_dmabuf_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c27e733 drm_mode_get_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d155dd5 drm_client_modeset_commit_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d6cd7d8 drm_atomic_set_fence_for_plane EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f18a150 __drm_debug -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4fec74f0 drm_crtc_from_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0x502bfb95 drm_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4fbe747f drm_clflush_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x504b3bfb drm_crtc_commit_wait EXPORT_SYMBOL drivers/gpu/drm/drm 0x50674de7 drm_timeout_abs_to_jiffies -EXPORT_SYMBOL drivers/gpu/drm/drm 0x50e1b858 drm_syncobj_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50b1a317 drm_atomic_bridge_chain_check EXPORT_SYMBOL drivers/gpu/drm/drm 0x513072fe __drm_puts_seq_file +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5143c6f4 drm_i2c_encoder_restore +EXPORT_SYMBOL drivers/gpu/drm/drm 0x51c7697b drm_poll +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5200da5f drm_plane_create_scaling_filter_property EXPORT_SYMBOL drivers/gpu/drm/drm 0x521ad6d0 drm_puts -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5245f892 drm_dev_has_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x53c2edfa drm_bridge_chain_mode_fixup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x546031f9 drm_mode_create_hdmi_colorspace_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x55361255 drm_atomic_add_affected_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5346edbc drm_crtc_send_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x53f2d3bd __drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x53f5a7f1 drm_plane_get_damage_clips +EXPORT_SYMBOL drivers/gpu/drm/drm 0x53f67d51 __drmm_add_action +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5434b595 drm_property_lookup_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x54a763cb drm_mode_create_tv_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x54e21dbd drm_add_edid_modes EXPORT_SYMBOL drivers/gpu/drm/drm 0x5542443b drm_flip_work_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5695250a drm_modeset_lock +EXPORT_SYMBOL drivers/gpu/drm/drm 0x559cb93b drm_prime_gem_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57439f1f drm_client_init EXPORT_SYMBOL drivers/gpu/drm/drm 0x57698a50 drm_mm_takedown +EXPORT_SYMBOL drivers/gpu/drm/drm 0x577130b2 drm_panel_get_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5775d221 drm_master_get EXPORT_SYMBOL drivers/gpu/drm/drm 0x57b6efe3 drm_ioctl_flags -EXPORT_SYMBOL drivers/gpu/drm/drm 0x58c239e6 __drmm_add_action +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57f0d9e4 drm_object_attach_property EXPORT_SYMBOL drivers/gpu/drm/drm 0x59056243 drm_mm_replace_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0x595c2337 drm_i2c_encoder_mode_set -EXPORT_SYMBOL drivers/gpu/drm/drm 0x599dea05 drm_edid_is_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5b5e2e0a drm_i2c_encoder_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c69fbe2 drm_gem_cma_prime_import_sg_table_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c729f7c drm_mode_is_420_only -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c78b441 drm_connector_atomic_hdr_metadata_equal -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5cb6afdc drm_atomic_get_new_bridge_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5cd08aa7 drm_bridge_chain_post_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d6598c4 drm_crtc_set_max_vblank_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5effdf48 drmm_mode_config_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x59555f6a drm_atomic_set_crtc_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5a168546 drm_av_sync_delay +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5b78dfa6 drm_gem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5ba61ed1 drm_get_edid_switcheroo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5bfd353a drm_cvt_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c88ef79 drm_gem_dmabuf_mmap EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f7985a5 drm_mm_scan_remove_block -EXPORT_SYMBOL drivers/gpu/drm/drm 0x605a72ed drm_dev_printk -EXPORT_SYMBOL drivers/gpu/drm/drm 0x606fbb63 drm_syncobj_add_point -EXPORT_SYMBOL drivers/gpu/drm/drm 0x60e86f81 drm_atomic_state_default_clear -EXPORT_SYMBOL drivers/gpu/drm/drm 0x618f7018 drm_sysfs_connector_status_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x62668832 drm_panel_get_modes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6276f8ba drm_gtf_mode_complex -EXPORT_SYMBOL drivers/gpu/drm/drm 0x62cccd2d drm_bridge_chain_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x64165b7b drm_gem_cma_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0x61544c52 drm_client_buffer_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x61733646 drm_debugfs_remove_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6212df52 drm_client_framebuffer_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6273f269 drm_modeset_unlock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x62902217 drm_gem_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x62e33f7a drm_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6346ce25 drm_atomic_get_bridge_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x639ee160 drm_dev_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x64723293 drm_syncobj_replace_fence EXPORT_SYMBOL drivers/gpu/drm/drm 0x65702bd6 drm_default_rgb_quant_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x65a69a1d drm_crtc_handle_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x660562e0 drm_object_property_set_value -EXPORT_SYMBOL drivers/gpu/drm/drm 0x66cdc7f6 drm_ioctl_permit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x66d1adaa drm_object_attach_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x68ef4dab drm_property_create_bool -EXPORT_SYMBOL drivers/gpu/drm/drm 0x68f30a9c drm_client_framebuffer_flush -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6914a422 drm_edid_are_equal -EXPORT_SYMBOL drivers/gpu/drm/drm 0x694f1f68 drm_modeset_lock_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b2b257a drm_mode_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6c0d847f drm_gem_shmem_unpin -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6c95e2b0 drm_property_create_bitmask -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ca53f0b drm_plane_get_damage_clips_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6d09afba drm_crtc_vblank_on -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6d2dd4aa drm_framebuffer_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e21b5b0 drm_event_cancel_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6656d6ae drm_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x66578f0b drm_connector_attach_hdr_output_metadata_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x675d8cbe drm_connector_set_vrr_capable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x67f56352 drm_bridge_chain_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6897892f drm_modeset_lock +EXPORT_SYMBOL drivers/gpu/drm/drm 0x694ad01c drm_aperture_remove_conflicting_framebuffers +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6a1f0cae drm_connector_attach_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6a685153 drm_send_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6aa101f9 drm_hdmi_avi_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6abf941e drm_mode_config_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b2f4c88 drm_mode_create_tv_margin_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b3449db drm_gem_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6bda1f64 drm_gem_shmem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ca07c98 drm_crtc_vblank_count_and_time +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6cb1bd63 drm_plane_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6d980ba3 drm_gem_shmem_madvise +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6d9d9876 drm_mode_set_config_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6de2cde8 drm_plane_force_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6de533bb drm_mode_probed_add EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e30ba8e drm_rect_rotate_inv -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e6c0008 drm_atomic_state_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e983847 drm_mode_create_tile_group EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ef2f78e drm_format_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6f47616c drm_gem_dma_resv_wait -EXPORT_SYMBOL drivers/gpu/drm/drm 0x706d5012 drm_gem_shmem_purge_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x714967c9 drm_client_modeset_commit_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x71a185ae drm_crtc_arm_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x71accc16 drm_i2c_encoder_restore -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7253de28 drm_plane_create_rotation_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x738086b8 drm_mode_probed_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x73d1a262 drm_read -EXPORT_SYMBOL drivers/gpu/drm/drm 0x743b74e9 drm_send_event_timestamp_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x74f00ef8 drm_gem_object_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x74f80fea drm_atomic_nonblocking_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x75f47d01 drm_modeset_backoff -EXPORT_SYMBOL drivers/gpu/drm/drm 0x769b9c98 drm_atomic_state_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x77cce2cf drm_crtc_send_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x785c1430 drm_atomic_get_old_private_obj_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x78a4e021 drm_gem_shmem_madvise -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7951d82a drm_mode_validate_driver -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7a43d963 drm_gem_put_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7a949c47 drm_gem_prime_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6f904b21 drm_prime_pages_to_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x703bd4a2 drm_plane_create_zpos_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x703db344 drm_mode_is_420_also +EXPORT_SYMBOL drivers/gpu/drm/drm 0x70af2800 drm_i2c_encoder_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x70e7e93f drm_gem_create_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7202da75 __drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7206ae0c drm_property_add_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0x74096900 drm_panel_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x745fc322 drm_connector_attach_content_type_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7461cb83 drm_crtc_accurate_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x75d841ea drm_mode_validate_driver +EXPORT_SYMBOL drivers/gpu/drm/drm 0x764e646c drm_gem_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7651fd23 drm_gem_lock_reservations +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7694ab3c drm_dev_dbg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x77a1b8dc drm_gem_prime_import_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7832a0fb drm_bridge_chain_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7881a2f9 drm_dev_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x795c233a drm_connector_has_possible_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7a4e88f7 drm_crtc_create_scaling_filter_property EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b2e2166 drm_vma_node_revoke -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b9474dc drm_hdmi_avi_infoframe_quant_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7ca7ca70 drm_gem_prime_import -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7cde658a __devm_drm_dev_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7cef3232 drm_gem_shmem_create_with_handle -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e2ef65d drm_event_reserve_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7ef0c817 drm_object_property_get_value -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7f74f36c drm_atomic_get_new_private_obj_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x81533fd3 drm_client_modeset_check -EXPORT_SYMBOL drivers/gpu/drm/drm 0x816f3b3a drm_hdmi_infoframe_set_hdr_metadata +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b65ecc4 drm_connector_set_link_status_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d453c7c drm_event_reserve_init_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e45c229 drm_atomic_bridge_chain_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e886d5d drm_connector_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7edf470b drm_edid_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7ef7ccb0 drm_object_property_set_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fa5cad9 drm_mode_is_420_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0x800d586f drm_mode_validate_ycbcr420 +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8138c9fe __drmm_add_action_or_reset EXPORT_SYMBOL drivers/gpu/drm/drm 0x81992424 drm_edid_header_is_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x825bf92d drm_ioctl -EXPORT_SYMBOL drivers/gpu/drm/drm 0x827e8975 drm_writeback_get_out_fence -EXPORT_SYMBOL drivers/gpu/drm/drm 0x828a6ebd drm_hdmi_avi_infoframe_from_display_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x83472219 drm_add_override_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x821d8f7a drm_plane_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x83dbdee3 drm_gem_prime_import +EXPORT_SYMBOL drivers/gpu/drm/drm 0x840921b0 drm_atomic_normalize_zpos EXPORT_SYMBOL drivers/gpu/drm/drm 0x842dd90c drm_flip_work_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x848105d1 drm_client_buffer_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x846d8b31 drm_connector_attach_vrr_capable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8506d66a drm_event_cancel_free EXPORT_SYMBOL drivers/gpu/drm/drm 0x8563a554 drm_ht_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x860466b4 drm_gem_shmem_get_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8610c474 drm_atomic_get_old_bridge_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x86c1fe4f drm_client_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x86e54b93 drm_syncobj_get_fd -EXPORT_SYMBOL drivers/gpu/drm/drm 0x87173b79 drm_add_modes_noedid EXPORT_SYMBOL drivers/gpu/drm/drm 0x871ab41a drm_rect_intersect -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8774565b drm_writeback_signal_completion -EXPORT_SYMBOL drivers/gpu/drm/drm 0x88615d5b drm_mode_config_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x89f2282f drm_gem_create_mmap_offset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8a156ae4 drm_client_modeset_probe -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8a8268c8 drm_atomic_normalize_zpos -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ae49207 drm_panel_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8b9b3c70 drm_crtc_check_viewport -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c99bd25 drm_atomic_get_crtc_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ca4e157 drm_dev_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8cd877d3 drm_crtc_vblank_waitqueue -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8cfb1b60 drm_gem_unmap_dma_buf -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d43a0ff drmm_kmalloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8e15a5e7 drm_probe_ddc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8e967b24 drm_atomic_print_new_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x906b88af drm_connector_set_tile_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x90e05c3d drm_atomic_bridge_chain_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0x879f6dec drm_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x87aaa2ce drm_atomic_set_crtc_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x88916f45 drm_state_dump +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8a49e8a1 drm_read +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8a7240b3 drm_modeset_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8b9cbfc5 drm_atomic_private_obj_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8bf99e50 drm_ioctl_kernel +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c0c3e4a drm_crtc_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c30d102 drm_client_modeset_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c8ad80f drm_modeset_drop_locks +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d051888 drm_event_reserve_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d2e02ba drm_mode_create_content_type_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d72789e drm_edid_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9077dd9a drm_gem_map_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x91f1686e drm_panel_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x91f3bda4 drm_connector_attach_max_bpc_property EXPORT_SYMBOL drivers/gpu/drm/drm 0x91fec1cc drm_rect_calc_vscale -EXPORT_SYMBOL drivers/gpu/drm/drm 0x924efc0e drm_sysfs_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x928f452a drm_hdmi_avi_infoframe_bars EXPORT_SYMBOL drivers/gpu/drm/drm 0x92ee8a9d drm_get_format_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0x92f4cac6 drm_crtc_vblank_restore -EXPORT_SYMBOL drivers/gpu/drm/drm 0x94263683 drm_master_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x950162f5 drm_panel_unprepare -EXPORT_SYMBOL drivers/gpu/drm/drm 0x956111aa drm_i2c_encoder_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x957034c5 drm_writeback_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x933d6a90 drm_put_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x937ee96a drm_gem_handle_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x93950b84 drm_crtc_vblank_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x941c69ca drm_mode_create_aspect_ratio_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x94d5c3eb drm_atomic_state_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x94ec6caa drm_client_buffer_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x95330258 drm_connector_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x95cb5334 drm_gem_dma_resv_wait EXPORT_SYMBOL drivers/gpu/drm/drm 0x95dbc76d drm_ht_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9610fa06 drm_add_edid_modes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x961e3253 drm_gem_lock_reservations -EXPORT_SYMBOL drivers/gpu/drm/drm 0x974583d3 drm_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9756ce49 drm_state_dump -EXPORT_SYMBOL drivers/gpu/drm/drm 0x97b86c35 drm_modeset_drop_locks -EXPORT_SYMBOL drivers/gpu/drm/drm 0x984e683f drm_plane_from_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0x99c96310 drm_framebuffer_plane_height -EXPORT_SYMBOL drivers/gpu/drm/drm 0x99dec737 drm_property_replace_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0x99efffee drm_gem_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9628e78c drm_atomic_get_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x981cf2f6 drm_vblank_work_schedule +EXPORT_SYMBOL drivers/gpu/drm/drm 0x98a8da4d drm_mode_object_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x99c2ebd7 drm_client_modeset_probe EXPORT_SYMBOL drivers/gpu/drm/drm 0x99fd20aa drm_rect_clip_scaled -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9a401733 drm_plane_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9a893be7 drm_gem_dmabuf_export EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b285573 drm_match_cea_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b3a30fa drm_gem_vm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b628be2 drm_gem_shmem_purge_locked EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b8a53f5 drm_ht_just_insert_please -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b8d56d7 drm_atomic_set_mode_for_crtc EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b95c885 drm_mode_match +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9bfd90d2 drm_gem_map_dma_buf +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c141a17 drm_atomic_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c83d865 drm_mode_put_tile_group EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ce050be drm_mode_copy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9d5551ca drm_gem_unlock_reservations -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9e02615f drm_framebuffer_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9e7e8009 drm_edid_to_sad -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9e8e3581 __drmm_crtc_alloc_with_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ef94821 drm_mode_create_content_type_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9f32602e drm_property_create_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9fdb4ac0 drm_gem_prime_export -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ffcdfdb drm_detect_monitor_audio -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0399d0f __drmm_add_action_or_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9da1ef2c drm_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9e0f0205 drm_connector_set_panel_orientation +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9e404549 drm_gtf_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ebba417 drm_detect_monitor_audio +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9f803df8 drm_plane_get_damage_clips_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ff479f4 drm_master_internal_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0328be8 drm_modeset_acquire_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa048a416 drm_modeset_unlock EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0713087 drm_ht_find_item -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa186640b drm_panel_of_backlight -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1b8bf8f drm_property_blob_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1ba7a03 drm_is_current_master -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1ea354d drm_connector_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa21b67a2 drm_prime_pages_to_sg -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa2cc5178 drm_clflush_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa3de6f45 drm_gem_shmem_pin -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa49f49a3 drm_client_framebuffer_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa5fcfb6a drm_color_lut_check -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa632fcce drm_framebuffer_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa6f1c76f drm_writeback_queue_job -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa79911d5 drm_connector_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa7b50529 drm_atomic_set_fence_for_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa7fc527a drm_dev_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa8986e2c drm_atomic_check_only -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaa49acb8 drm_atomic_get_bridge_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaad38e06 drm_cvt_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0xab7a2c9c drm_atomic_set_fb_for_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0xabd5b6cc drm_property_create_object -EXPORT_SYMBOL drivers/gpu/drm/drm 0xac0d86b9 drm_connector_attach_colorspace_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xac4e4f44 drm_mode_create_scaling_mode_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaca2a8f0 drm_connector_attach_max_bpc_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xacf1fe95 drm_debugfs_remove_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa07f99df drm_gem_dmabuf_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1a777b7 drmm_mode_config_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1c8cd86 drm_dev_unplug +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa3bb30e0 drm_mode_object_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa53c53ae drm_connector_attach_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa593ffe5 drm_debugfs_create_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa6e7849b drm_mode_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa6f79285 drm_crtc_set_max_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa78f658c drm_client_framebuffer_flush +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa941ef12 drm_dev_has_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaa488c89 drm_mode_object_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaa9ccd28 drm_connector_update_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xac157b02 drm_writeback_get_out_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0xac39aec8 drm_framebuffer_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xad170843 drm_framebuffer_unregister_private +EXPORT_SYMBOL drivers/gpu/drm/drm 0xad2125af __drmm_encoder_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xad2af070 drm_modeset_acquire_init EXPORT_SYMBOL drivers/gpu/drm/drm 0xad4e902b drm_color_ctm_s31_32_to_qm_n -EXPORT_SYMBOL drivers/gpu/drm/drm 0xad78cf1c drm_mode_is_420_also +EXPORT_SYMBOL drivers/gpu/drm/drm 0xad8c0c64 drm_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xae07d0e3 drm_crtc_enable_color_mgmt EXPORT_SYMBOL drivers/gpu/drm/drm 0xae277372 __drm_crtc_commit_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0xae9862b7 drm_vblank_work_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaff129b2 drm_i2c_encoder_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xae588afc drm_panel_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0xae7cb491 drm_probe_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xafb65f12 drm_atomic_bridge_chain_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xafc6b7a9 drm_atomic_state_alloc EXPORT_SYMBOL drivers/gpu/drm/drm 0xb053adda drm_rect_rotate -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb0a02c0d drm_plane_create_alpha_property EXPORT_SYMBOL drivers/gpu/drm/drm 0xb0b05ff5 drm_clflush_sg -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb0f88e58 drm_compat_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb0bb0802 drm_send_event_locked EXPORT_SYMBOL drivers/gpu/drm/drm 0xb11ac7a7 __drm_err +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb210108e drm_i2c_encoder_dpms EXPORT_SYMBOL drivers/gpu/drm/drm 0xb22dfd68 drm_format_info_min_pitch -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb23c4f9f drm_writeback_prepare_job -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb2f580c0 drm_mode_create_from_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb237ee21 drm_syncobj_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb2513b18 drm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb30f1480 drm_connector_attach_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb31481f1 drm_crtc_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb36d9d0b drm_panel_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb379025b drm_panel_of_backlight EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4032484 drm_mm_insert_node_in_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4c05c14 drm_mode_prune_invalid -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb51aa822 drm_atomic_set_crtc_for_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5f4ed4a drm_print_regset32 +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4050594 drm_edid_get_monitor_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb420f046 drm_gem_fence_array_add_implicit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb50fc5fd drm_add_override_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb533bd01 drm_crtc_handle_vblank EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6127243 drm_need_swiotlb -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb7156c59 drm_gem_private_object_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb832360e drm_master_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb8c96cce drm_crtc_enable_color_mgmt -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9a8e6df drm_prime_gem_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb64aaa29 drm_compat_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb64b3483 drm_framebuffer_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6accfff drm_crtc_vblank_helper_get_vblank_timestamp +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb86dcfc6 drm_gem_shmem_purge +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb87c1c9b drm_add_modes_noedid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb8f8f06f drm_gem_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9b36fce drm_gem_prime_mmap EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9cad492 __drm_atomic_state_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0xba224ed8 __drmm_universal_plane_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbc0b72ed drm_prime_sg_to_page_array -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbcec29c0 drm_gem_shmem_print_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbd479402 drm_vblank_work_flush -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbda9bef9 drm_hdmi_avi_infoframe_colorspace -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbdaa1047 drm_gem_object_lookup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbdd5b536 drm_gem_handle_delete -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbe917115 drm_debugfs_create_files -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbe9ef6e7 drm_mode_put_tile_group -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbf0dce21 drm_crtc_accurate_vblank_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbf71da12 drm_gem_free_mmap_offset -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc1237ef9 drm_dev_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc182d950 drm_atomic_add_encoder_bridges -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc18dd68e drm_crtc_vblank_reset -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc1ce2cf1 drm_aperture_remove_conflicting_pci_framebuffers -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc214194e drm_encoder_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc2285fc0 drm_atomic_set_mode_prop_for_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc28178bd drm_plane_create_zpos_immutable_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc304d936 drm_gem_map_dma_buf -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc309bfe6 drm_panel_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc42f609a drm_gem_mmap_obj -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc50b909a drm_property_create_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc58cfb31 drm_crtc_create_scaling_filter_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc5b7563d drm_connector_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc5c53035 drm_crtc_commit_wait +EXPORT_SYMBOL drivers/gpu/drm/drm 0xba8b26ef drm_syncobj_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbb929227 drm_syncobj_add_point +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbbeb149e drm_plane_create_rotation_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbdfeedea __drmm_universal_plane_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbe7af538 drm_gem_dmabuf_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbef977e5 drm_crtc_arm_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbf0e080d drm_writeback_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbf6ddd87 drm_crtc_vblank_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbf9c29e1 drm_connector_set_path_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbfae41bb drm_plane_enable_fb_damage_clips +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbfcd076a drm_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc0e00096 drm_hdmi_avi_infoframe_colorspace +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc13a22ac drm_atomic_set_mode_prop_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc1f9e2c9 drm_gem_handle_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc30cfad0 drm_gem_cma_prime_import_sg_table_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc36307ac drm_mode_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc395fe74 drm_dev_printk +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc3d89b40 drm_modeset_lock_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc4534310 drm_color_lut_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc4e9c7a1 drm_atomic_get_connector_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc518e9eb drm_connector_attach_tv_margin_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc5388ea9 drm_mode_create_dp_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc538c5a4 drm_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc5f06726 drm_mode_plane_set_obj_prop EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6323239 drm_flip_work_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc68c0b2a drm_panel_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc70cd6c6 drm_crtc_init_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc69d8f29 drm_i2c_encoder_mode_fixup EXPORT_SYMBOL drivers/gpu/drm/drm 0xc7910e38 drm_vma_offset_lookup_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc7c69e22 drm_crtc_vblank_off EXPORT_SYMBOL drivers/gpu/drm/drm 0xc7d04fc5 drm_vma_node_allow -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc9329cc2 drm_gem_vm_close -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc97f50af drm_connector_attach_content_protection_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc9f77a8d drm_bridge_chain_pre_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc9f7ea47 drm_mode_create_tv_margin_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0xca036dd7 drm_connector_attach_vrr_capable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc88ec727 drm_gem_map_detach +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc89fc63e drm_atomic_bridge_chain_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc9f656bf drm_hdmi_avi_infoframe_bars EXPORT_SYMBOL drivers/gpu/drm/drm 0xca190085 drm_format_info_block_height +EXPORT_SYMBOL drivers/gpu/drm/drm 0xca3254b8 drm_connector_init_with_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xca53a849 drm_atomic_get_old_connector_for_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcac4581f drm_object_property_get_value EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb2340b8 drm_rect_debug_print -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcc7ed888 drm_crtc_vblank_helper_get_vblank_timestamp +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb3755b9 drm_crtc_vblank_helper_get_vblank_timestamp_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb715a6d drm_property_create_bitmask +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcc028d87 drm_property_create EXPORT_SYMBOL drivers/gpu/drm/drm 0xccc59759 drm_format_info_block_width -EXPORT_SYMBOL drivers/gpu/drm/drm 0xccdb5168 drm_send_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd733496 drm_connector_init_with_ddc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xce1e8ba7 drm_client_framebuffer_delete -EXPORT_SYMBOL drivers/gpu/drm/drm 0xceb8f3e4 drm_property_blob_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xccf93174 drm_framebuffer_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd7b4f15 drm_atomic_get_new_connector_for_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd8d58a0 drm_atomic_add_affected_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd9ce04a drm_property_create_bool +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcdf19ca8 drm_sysfs_connector_status_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xce575354 drm_i2c_encoder_prepare EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf11a549 drm_flip_work_allocate_task -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf27f559 drm_gem_prime_handle_to_fd -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf557fc8 drm_client_modeset_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf13d605 drm_gem_unlock_reservations EXPORT_SYMBOL drivers/gpu/drm/drm 0xd05fda43 drm_prime_get_contiguous_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd114764d drm_crtc_vblank_helper_get_vblank_timestamp_internal EXPORT_SYMBOL drivers/gpu/drm/drm 0xd13f9985 drm_edid_block_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2ff9d01 drm_atomic_bridge_chain_pre_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd3d2eb9d drm_panel_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd43dcb62 __drm_atomic_helper_disable_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd52531d0 drm_mode_parse_command_line_for_connector -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd5804e18 drm_send_event_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd5c3f3ae drm_gem_shmem_put_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd60baf5a drm_edid_get_monitor_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2298b19 drm_vblank_work_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2c1421e drm_client_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd444bb2f drm_mode_parse_command_line_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd494b017 drm_gem_shmem_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd4e837aa drm_crtc_vblank_restore EXPORT_SYMBOL drivers/gpu/drm/drm 0xd680a377 drm_gem_object_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd78d8973 drm_bridge_add EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7a9cf42 drm_mode_validate_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd901a9cc drmm_kfree -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd94f3236 drm_connector_list_iter_next -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd9d1c747 drm_mode_is_420 -EXPORT_SYMBOL drivers/gpu/drm/drm 0xda9cc730 drm_mode_validate_ycbcr420 -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb012056 drm_i2c_encoder_detect -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb5bf953 drm_vblank_work_schedule -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb5d5df9 drm_mode_crtc_set_gamma_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdc3a10a9 drm_mode_plane_set_obj_prop -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdc98ac85 drm_get_edid -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd414df1 drm_property_create_enum -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd8058d6 drm_modeset_lock_all -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdea7f3fb drm_dev_dbg -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf0f4938 drm_gem_objects_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd851f7cf drm_client_dev_hotplug +EXPORT_SYMBOL drivers/gpu/drm/drm 0xda17e476 drm_i2c_encoder_detect +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb303972 drm_atomic_private_obj_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdcd66f91 drm_prime_sg_to_page_array +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd671fc8 drm_detect_hdmi_monitor +EXPORT_SYMBOL drivers/gpu/drm/drm 0xddd9e8d2 drm_i2c_encoder_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xddf664ce drm_gem_shmem_vmap EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf3f760d drm_mm_scan_color_evict -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf608904 drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf5dc4e8 drm_hdmi_avi_infoframe_quant_range EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf666902 drm_rotation_simplify -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdfd3e481 drm_atomic_bridge_chain_post_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe037beb3 drm_modeset_unlock -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe0585bbe drm_gem_dmabuf_export -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe0c9b0de drm_atomic_bridge_chain_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe0d95be6 drm_connector_list_update -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe144a978 drm_crtc_vblank_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe1a5eff2 drm_modeset_unlock_all -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe1b1c34d drm_plane_create_scaling_filter_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe1c63df3 drm_mode_duplicate -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe2ac234c drm_syncobj_replace_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe0205765 drm_connector_attach_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe0b7e9ce drm_atomic_check_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe10d4a3a drm_hdmi_vendor_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe1cddc00 drm_master_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe203f915 drm_mode_crtc_set_gamma_size EXPORT_SYMBOL drivers/gpu/drm/drm 0xe317082a __drm_printfn_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe3395e48 drm_event_reserve_init_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe4441ab2 drm_mode_get_tile_group -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe46d18f4 drm_gem_map_attach -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe548ea74 drm_mode_object_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe651d0c2 drm_crtc_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe695e925 drm_gem_prime_fd_to_handle -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe77251c4 drm_av_sync_delay -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe78b2e36 drm_mode_create_dvi_i_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7c2be51 drm_plane_create_color_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8362900 drm_edid_duplicate -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe837cab4 drm_gem_shmem_purge +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe448dc55 drm_mode_create_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe4590dd2 drm_syncobj_find_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe4b461e2 drm_crtc_vblank_on +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe503413b __devm_drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe71e2b51 drm_gem_object_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7498498 drm_atomic_get_old_bridge_state 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 0xe9215131 drm_connector_set_vrr_capable_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe975a376 drm_mode_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe9444905 drm_dev_get EXPORT_SYMBOL drivers/gpu/drm/drm 0xea00fe81 __drm_printfn_coredump -EXPORT_SYMBOL drivers/gpu/drm/drm 0xea700894 drm_plane_create_blend_mode_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb9bbbf9 drm_connector_list_iter_end -EXPORT_SYMBOL drivers/gpu/drm/drm 0xebadd8f7 drm_connector_attach_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeae4080c drm_bridge_chain_post_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb798158 drm_i2c_encoder_save EXPORT_SYMBOL drivers/gpu/drm/drm 0xec12af74 __drm_dbg -EXPORT_SYMBOL drivers/gpu/drm/drm 0xec681dc5 drm_connector_attach_dp_subconnector_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xed63ee20 drm_poll -EXPORT_SYMBOL drivers/gpu/drm/drm 0xed6e859d drm_crtc_wait_one_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0xef4ec4ed drm_property_create_signed_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0102a7b drm_crtc_vblank_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xecc39c92 drm_connector_set_tile_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xedab2263 drm_property_create_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0xee1ba915 drm_is_current_master +EXPORT_SYMBOL drivers/gpu/drm/drm 0xee5cee24 drm_set_preferred_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xef334bc0 drm_atomic_get_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xefaed957 drm_connector_attach_content_protection_property EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0517d7a drm_mm_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf057011e drm_connector_atomic_hdr_metadata_equal 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 0xf1fa3bbb drm_mode_object_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf214903d drm_property_lookup_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf2ebd690 drm_put_dev -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf3d95edd drm_framebuffer_unregister_private +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf2459126 drm_atomic_set_fb_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf258063c drm_property_replace_global_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf2620161 drm_syncobj_get_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf32daf8c drm_dev_set_unique EXPORT_SYMBOL drivers/gpu/drm/drm 0xf406e46a drm_get_connector_type_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf47fdc8c drm_property_add_enum -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf48e6561 drm_crtc_vblank_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf77c0034 drm_bridge_chain_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf7cb923c drm_gtf_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf459a92f drm_framebuffer_plane_height +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf47c503b drm_connector_list_iter_next +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf53bc80f drm_plane_create_blend_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf6a82c7e drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf78f1859 drm_mode_create_suggested_offset_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf8007a8d drm_file_get_master EXPORT_SYMBOL drivers/gpu/drm/drm 0xf824c7db __drm_printfn_debug -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa1829f6 drm_mode_config_reset -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa2ced45 drm_plane_enable_fb_damage_clips -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfcd3b773 drm_client_rotation -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd8621c4 drm_universal_plane_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd99569b drm_connector_set_link_status_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfde9219c drm_connector_set_panel_orientation_with_quirk -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfe2fc43e drm_wait_one_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfe303363 drm_atomic_get_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf8501f0b drm_property_replace_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf97009dc drm_mode_find_dmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf9f5d961 drm_property_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfbb80309 drm_connector_list_iter_begin +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfbc6e64a drm_mode_create_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfda8eba6 drm_gem_shmem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfe07e4cf drm_connector_cleanup EXPORT_SYMBOL drivers/gpu/drm/drm 0xfeb953b1 __drm_printfn_seq_file -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfecc8840 drm_edid_to_speaker_allocation -EXPORT_SYMBOL drivers/gpu/drm/drm 0xff3db350 drm_plane_get_damage_clips -EXPORT_SYMBOL drivers/gpu/drm/drm 0xff77d7bb drm_mode_create_suggested_offset_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0xffc4eb73 drm_connector_attach_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x00698600 __drm_atomic_helper_plane_state_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x012e9f8c drm_dp_dual_mode_set_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfef695c9 devm_aperture_acquire_from_firmware +EXPORT_SYMBOL drivers/gpu/drm/drm 0xffd1292e drm_encoder_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xffe8a06f drm_gem_prime_handle_to_fd EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x01c4bba9 drm_dp_lttpr_max_link_rate -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x03385964 drm_primary_helper_funcs -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0436c56f drm_fb_helper_lastclose -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0442488d drm_fb_helper_sys_copyarea -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x044785df drm_helper_encoder_in_use -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x044b568d drm_dp_mst_topology_mgr_resume -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x05e3d268 drm_dp_mst_atomic_enable_dsc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x062663a5 drm_atomic_helper_commit_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x01f9c15d drm_atomic_helper_damage_merged +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x03d37e8e drm_dp_downstream_id EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x06c49551 drm_dp_dsc_sink_line_buf_depth -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x078a08d2 __drm_atomic_helper_private_obj_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x073dfcb8 drm_crtc_helper_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x075e6f6a drm_dp_stop_crc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x07982f3d drm_dp_get_vc_payload_bw EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x07a00858 drm_fb_memcpy_dstclip -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x08c4026e drm_helper_mode_fill_fb_struct -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x08f7710b drm_dp_pcon_pps_default -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0cc1c11b drm_fb_helper_sys_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0e07cc3d drm_atomic_helper_wait_for_fences -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0e32901c drm_simple_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0e4ea970 drm_gem_fb_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0e775009 drm_atomic_helper_commit_hw_done -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0ecd2a22 drm_fb_helper_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0f73dbe7 drm_atomic_helper_shutdown -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0fa114ce drm_panel_bridge_connector -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x10783ec1 drm_helper_disable_unused_functions -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x12695b83 drm_atomic_helper_check_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1437048e drm_fb_helper_pan_display +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0924e5de drm_gem_fb_begin_cpu_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x092a348b drm_dp_mst_topology_state_funcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0a143d0e drm_atomic_helper_prepare_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0c38e171 drm_gem_simple_kms_reset_shadow_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0c9dfa6d drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0d1065b5 drm_gem_simple_kms_cleanup_shadow_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0dd236fa __drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0df04dd7 drm_dp_atomic_release_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0e59900d drm_atomic_helper_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0e754220 drm_dp_mst_topology_mgr_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0ea94037 drm_dp_atomic_find_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0fe097c6 __drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0fe60c10 drm_dp_remote_aux_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x100e20bf drm_dp_mst_topology_mgr_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x11fb0572 drm_dp_check_act_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x121b01e5 drm_dp_mst_topology_mgr_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x14e459e0 drm_dp_mst_dsc_aux_for_port +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x154c526d drm_fb_helper_cfb_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x15d48e61 drm_atomic_helper_crtc_reset EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1605d0ed drm_dp_lttpr_max_lane_count -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x163b8031 drm_dp_dpcd_read_phy_link_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1696a28f drm_atomic_helper_suspend EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1709ddcf drm_dp_lttpr_link_train_clock_recovery_delay -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x17f5cf25 drm_gem_fb_create_handle -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1824c32b drm_dp_read_mst_cap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1a55d6dd __drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x18bcc71b drm_kms_helper_poll_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1986de08 drm_helper_force_disable_all EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1a5bf3ca drm_dsc_dp_rc_buffer_size -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1a6dec3b drm_gem_simple_kms_reset_shadow_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1b0046f5 drm_fbdev_generic_setup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1ab5b415 __drm_atomic_helper_crtc_duplicate_state EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1b0a1fdc drm_dp_lttpr_voltage_swing_level_3_supported -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1c52995d drm_fb_helper_debug_leave -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1cce8285 drm_dp_pcon_frl_configure_2 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1cd3decd drm_dp_mst_dsc_aux_for_port -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1d7f8651 drm_dp_cec_register_connector -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1ea7e2bc drm_dp_remote_aux_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1ff68ae8 drm_simple_display_pipe_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2131a52b drm_dp_read_sink_count -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x23d04417 drm_kms_helper_poll_enable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x25f6f572 drm_panel_bridge_add_typed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1b190127 drm_dp_mst_put_port_malloc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1c10f823 drm_dp_link_train_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1e2c3ecf drm_dp_mst_add_affected_dsc_crtcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1e2c4e21 __drm_gem_duplicate_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1f93bc1b drm_dp_dpcd_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1f965832 devm_drm_panel_bridge_add_typed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1fa46623 drm_panel_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1fa5d1e4 drm_atomic_helper_commit_hw_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1fb70d86 drm_helper_crtc_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1fbcc927 __drm_gem_destroy_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x22f71f8e drm_atomic_helper_swap_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x23961837 drm_dp_downstream_max_bpc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x23c5635a drm_gem_fb_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x24519982 drm_dp_dpcd_read_phy_link_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x25cdd792 drm_dp_mst_get_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x25dced85 drm_fb_helper_set_par +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x261e7e7e drm_dp_downstream_mode EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x26815dbc drm_dp_link_rate_to_bw_code -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x26eb0b0e drm_fb_helper_cfb_imageblit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x287f3e48 drm_dp_vsc_sdp_log -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2a80de35 drm_fb_helper_set_par -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2b9722fa drm_fb_helper_setcmap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2c604e29 drm_dp_mst_reset_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2cb39291 __drm_gem_reset_shadow_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2da33e6f drm_dp_downstream_debug -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2e6e6873 drm_dp_dual_mode_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2eec4f0a drm_atomic_helper_setup_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2a51c64a drm_dp_pcon_reset_frl_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2aab72a3 drm_kms_helper_poll_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2c81ddc9 drm_dp_mst_atomic_enable_dsc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2e190434 drm_scdc_read EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2fa94ef2 drm_dp_downstream_444_to_420_conversion -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x302ae327 drm_dp_downstream_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3102f5d5 drm_atomic_helper_crtc_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3117b63b drm_dp_downstream_max_bpc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3237f165 drm_atomic_helper_connector_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x33dee91d drm_fb_helper_check_var -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x34ac256a drm_fb_helper_unregister_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x35673ead drm_fb_helper_fini -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x35dc429f drm_atomic_helper_commit_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x37defb84 drm_dp_atomic_find_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x30c0e1ba drm_helper_probe_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x329316d6 drm_atomic_helper_commit_tail +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x36ea3888 drm_dp_pcon_hdmi_frl_link_error_count +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x37b1fb8a drm_crtc_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x38775026 drm_dp_lttpr_link_train_channel_eq_delay EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x392a838b drm_dp_downstream_max_dotclock +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x39bc0696 drm_dp_pcon_pps_override_buf EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3a8063f3 drm_dp_dsc_sink_supported_input_bpcs -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3aa0ca9d drm_fb_helper_blank -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3ca02862 drm_fb_helper_output_poll_changed -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4154ccc6 drm_dp_dpcd_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x41d44479 drm_atomic_helper_update_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4277733b drm_helper_probe_single_connector_modes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x429c1af6 drm_dp_get_vc_payload_bw -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x444ff06f drm_atomic_helper_commit_modeset_disables -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x44b8a8ee drm_atomic_helper_page_flip_target -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x44f74e6f drm_dp_pcon_enc_is_dsc_1_2 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4569fed2 drm_helper_connector_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x45ae8c65 drm_helper_hpd_irq_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x45dec2bb drm_dp_pcon_frl_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x45e5ed9b drm_edp_backlight_set_level -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4668c9dc drm_dp_downstream_min_tmds_clock -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x46d04a1c drm_panel_dp_aux_backlight -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x46e0b7d8 drm_dp_mst_allocate_vcpi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4866e298 drm_atomic_helper_crtc_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4a7e68c1 __drm_gem_duplicate_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4b4e08ec drm_dp_set_subconnector_property -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4bb334c9 drm_dp_check_act_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4bb89424 drm_dp_downstream_max_tmds_clock -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4c0457af drm_dp_pcon_pps_override_param -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4c1e53a7 drm_atomic_get_mst_topology_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4c2bba6c drm_fb_helper_sys_fillrect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4ccb98e5 drm_crtc_helper_set_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4cd3663f drm_atomic_helper_bridge_propagate_bus_fmt +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3c12896d drm_lspcon_get_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3d38e371 __drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3d6ca412 drm_fb_helper_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3de7690f drm_edp_backlight_set_level +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x41512c14 drm_fb_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x41b5c1d8 drm_fbdev_generic_setup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x41d116ab drm_dp_mst_detect_port +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4345e4f0 drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4473781b drm_fb_helper_cfb_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4583733d drm_atomic_helper_wait_for_fences +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4583c992 drm_dp_pcon_is_frl_ready +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4603c416 drm_dp_pcon_dsc_bpp_incr +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x466e8ae5 drm_scdc_set_high_tmds_clock_ratio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4709a9ab drm_helper_mode_fill_fb_struct +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x47e7cc09 __drm_atomic_helper_plane_state_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x48406ee9 drm_dp_mst_hpd_irq +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4864a598 drm_fb_helper_set_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x489e0cc2 drm_dp_dual_mode_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x49777d1a drm_gem_simple_kms_destroy_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x49a41527 __drm_gem_reset_shadow_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4ce3b522 drm_dp_read_sink_count EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4e41ad5c drm_fb_xrgb8888_to_rgb565 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x50c18998 drm_dp_mst_get_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x50c92128 drm_dp_get_phy_test_pattern -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x52934d5a drm_fb_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4f03b919 __drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4fcc5fd3 drm_fb_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x52059b4c drm_dp_pcon_frl_prepare EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x537b8893 drm_fb_blit_rect_dstclip -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x53c18f63 drm_gem_cleanup_shadow_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x539afeee __drm_atomic_helper_connector_reset EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5407ae9e drm_dp_get_dual_mode_type_name -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x54e8653d drm_fb_helper_set_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5542355d devm_drm_panel_bridge_add_typed -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x555d70f6 __drmm_simple_encoder_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5495bb73 drm_atomic_helper_bridge_propagate_bus_fmt +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x550e1740 drm_atomic_helper_commit_modeset_enables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5526eeca drm_dp_pcon_pps_override_param +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x553ddb8f drm_atomic_helper_commit_tail_rpm +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5598f7c4 drm_atomic_helper_setup_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x570b6bb2 drm_self_refresh_helper_alter_state EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x582f248e drm_dp_get_adjust_request_pre_emphasis -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x58b27d48 drm_atomic_helper_bridge_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x58d36fa4 drm_dp_dual_mode_get_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x58703cf8 drm_gem_duplicate_shadow_plane_state EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x58d8fcaa drm_dsc_pps_payload_pack -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5a3bc486 drm_edp_backlight_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x59f27ed7 drm_dp_pcon_enc_is_dsc_1_2 EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5a4734d1 drm_kms_helper_is_poll_worker -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5a639e9b drm_atomic_helper_async_commit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5b06f4ae drm_dp_pcon_dsc_bpp_incr -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5bc527b6 drm_helper_crtc_in_use -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5bd03494 drm_dp_atomic_release_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5e91337d drm_dp_update_payload_part2 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5f47030f drm_dp_dpcd_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x61d54e44 drm_dp_link_train_clock_recovery_delay -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6244a68a drm_dp_mst_topology_mgr_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x624a50f1 drm_scdc_set_high_tmds_clock_ratio -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x62ee9851 drm_helper_resume_force_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6304d099 drm_gem_simple_display_pipe_prepare_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x637526f8 drm_fb_helper_debug_enter +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5bb1ce94 drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5c2b0968 drm_fb_helper_initial_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5c2d5ba5 drm_atomic_helper_shutdown +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5c6cc658 drm_fb_helper_pan_display +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5cf955e6 drm_dp_read_lttpr_phy_caps +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5e437161 drm_dp_pcon_frl_configure_2 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5e66eb97 drm_dp_update_payload_part2 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5f0cff74 drm_atomic_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5f2fdb50 drm_fb_helper_restore_fbdev_mode_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5f6b5eeb drm_gem_reset_shadow_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x60e891a8 __drm_atomic_helper_private_obj_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6274c9f4 drm_atomic_helper_connector_tv_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x63511bd9 drm_atomic_helper_wait_for_flip_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x63a477fb drm_dp_downstream_min_tmds_clock EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x648d953b drm_dsc_dp_pps_header_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x64fbc26e drm_fb_helper_sys_imageblit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x65e6a287 drm_fb_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x64b534ba drm_atomic_helper_update_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x651e7ab4 drm_primary_helper_funcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x65f0c9c0 drm_dp_aux_register EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6615069e drm_dp_dsc_sink_max_slice_count -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x668ac5cf drm_mode_config_helper_resume -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6785bfc7 drm_kms_helper_poll_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x689f4fee drm_gem_simple_kms_cleanup_shadow_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6a0d6e40 drm_gem_simple_kms_destroy_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6a1ebae8 drm_atomic_helper_damage_merged +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x666539bf drm_atomic_helper_check_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x667eb132 drm_atomic_helper_check_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x68d8dce7 drm_dp_downstream_is_tmds +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x699a5cf1 drm_dp_read_downstream_info +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6a83cff3 drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6b53e216 drm_dp_downstream_max_tmds_clock EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6b5c2b06 drm_atomic_helper_damage_iter_next -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6f5dea13 drm_gem_destroy_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x70362e44 drm_atomic_helper_async_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6cea5efa drm_fb_helper_sys_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6fdef1be drm_dp_pcon_frl_configure_1 EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7053fa72 drm_dp_get_pcon_max_frl_bw -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x71773704 drm_atomic_helper_disable_planes_on_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x72ac92a6 drm_atomic_helper_update_legacy_modeset_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x71cf8931 drm_dp_mst_topology_mgr_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x71d142f1 drm_simple_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7241784d drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x72fbd538 drm_dp_pcon_hdmi_link_active +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7300cb90 drm_mode_config_helper_suspend EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x73011db0 drm_dp_bw_code_to_link_rate -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x74e96aa8 drm_crtc_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7519992f drm_panel_bridge_remove -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x753e9fee drm_primary_helper_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x744a542e drm_dp_send_real_edid_checksum +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x74b2022d drm_helper_move_panel_connectors_to_head +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x74e2bb78 drm_dp_mst_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x74e9e9ff drm_fb_helper_fill_info +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x75b49873 drm_gem_simple_kms_prepare_shadow_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x75b82f80 drm_dp_mst_topology_mgr_set_mst EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x76ff6644 drm_dp_lttpr_pre_emphasis_level_3_supported -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x775df592 drm_atomic_helper_bridge_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x77d97adb drm_dp_dual_mode_detect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x78fb3726 drm_atomic_helper_check_modeset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x79bd5990 drm_atomic_helper_bridge_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7a52edf4 drm_scdc_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7aa1bc02 devm_drm_panel_bridge_add -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7ac4384f drm_dp_cec_unset_edid +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x77f0b27e drm_fb_helper_setcmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7813dbe4 drm_dp_pcon_frl_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x79458d63 drm_dp_read_lttpr_common_caps +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x79693eee drm_dp_mst_allocate_vcpi EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7ae669d0 drm_fb_xrgb8888_to_gray8 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7b0f8218 __drm_gem_destroy_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7b8b24f1 __drm_atomic_helper_bridge_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7c4d8710 __drm_atomic_helper_plane_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7c5403b2 drm_dp_set_phy_test_pattern -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7dc895fc drm_edp_backlight_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8008f806 __drm_atomic_helper_connector_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x803112ee drm_dp_mst_topology_mgr_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x808fe1b4 __drm_atomic_helper_connector_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x812acb28 drm_dp_lttpr_link_train_channel_eq_delay -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x83071b2e drm_fb_helper_cfb_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7b4ed320 drm_lspcon_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7b7f8e6b drm_fb_helper_sys_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7bd32058 drm_atomic_helper_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7c71d42f __drmm_simple_encoder_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7e96709a drm_atomic_helper_commit_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7e977029 drm_kms_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x80527955 drm_atomic_helper_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x810ba3a5 drm_gem_prepare_shadow_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x81d507c1 drm_dp_dual_mode_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x826b6342 drm_dp_set_subconnector_property EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x838a8fa0 drm_fb_memcpy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8557faef drm_dp_read_desc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x86ff3361 drm_edp_backlight_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8399b98a drm_dp_send_power_updown_phy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x84621ef7 drm_primary_helper_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8869baa8 drm_dp_aux_unregister EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x894b1f57 drm_dp_get_adjust_request_post_cursor -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x89bfdefb drm_atomic_helper_connector_tv_reset EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x89d100ba drm_fb_xrgb8888_to_rgb888_dstclip -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8a406bde drm_atomic_helper_damage_iter_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8c9dfae0 drm_self_refresh_helper_update_avg_times +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8a8a1629 drm_dp_get_phy_test_pattern +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8c08e1f3 drm_dp_cec_set_edid +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8c68c6be drm_edp_backlight_enable EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8ca2d9e4 drm_dp_calc_pbn_mode EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8d701329 drm_dp_clock_recovery_ok -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8eff7f59 drm_dp_mst_dump_topology -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8f81d6f0 drm_dp_read_sink_count_cap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9031279c drm_lspcon_set_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x924bb4d9 drm_dp_start_crc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x92683b8a drm_dp_stop_crc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x92bc4842 drm_dp_mst_hpd_irq -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x930b3de8 drm_dp_dual_mode_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x933c945f drm_atomic_helper_disable_all -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9524ae09 drm_dp_pcon_frl_configure_1 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x954c6ec3 drm_dp_mst_add_affected_dsc_crtcs -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x97bf5dd9 drm_fb_helper_set_suspend_unlocked -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x97eeb986 drm_atomic_helper_crtc_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x989f5101 drm_atomic_helper_resume -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x98f2c679 drm_gem_duplicate_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x99e240a6 drm_dp_dpcd_read_link_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9b4af576 drm_atomic_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9b657608 __drm_atomic_helper_connector_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9dc00ea3 drm_dp_pcon_frl_enable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9dc28867 drm_atomic_helper_wait_for_vblanks -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9deb3d84 drm_dp_send_query_stream_enc_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9ead2c68 drm_dp_mst_topology_mgr_set_mst -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa0b50b3b drm_atomic_helper_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa1978b80 drm_helper_move_panel_connectors_to_head -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa1ade20f __drm_atomic_helper_crtc_state_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9125a332 drm_edp_backlight_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x91ff7612 drm_edp_backlight_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x920914c2 drm_crtc_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x93e0c865 drm_atomic_helper_wait_for_dependencies +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9540942b drm_dp_cec_irq +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x95d2e61b drm_atomic_helper_fake_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9675f2d7 drm_gem_fb_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9708e806 drm_fb_helper_alloc_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x97568a46 drm_dp_aux_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x975b5f7b drm_atomic_helper_check_plane_damage +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x97617614 drm_fb_helper_output_poll_changed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x97648a06 drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9868b93c drm_atomic_helper_commit_modeset_disables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9a1ad990 drm_fb_helper_sys_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9a9faae2 drm_fb_helper_set_suspend_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9dbe399b drm_atomic_helper_commit_cleanup_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa12144ba drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa1b5c2f9 drm_fb_helper_prepare EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa1fefe6a drm_dp_psr_setup_time -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa69e19be drm_dp_mst_deallocate_vcpi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa9158fb9 drm_dp_mst_atomic_check -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa9a2d0e6 drm_dp_find_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa9e6e519 drm_gem_fb_begin_cpu_access -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xab563a3d drm_atomic_helper_page_flip -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xabd98d8a drm_dp_read_downstream_info -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xac6548bd drm_dp_pcon_reset_frl_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaccae91c drm_gem_fb_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xad986609 drm_atomic_helper_wait_for_flip_done -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaed0cfc5 drm_dp_read_dpcd_caps +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa2b57c77 drm_atomic_helper_bridge_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa4c30c29 drm_self_refresh_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa54101df drm_gem_destroy_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa548f1ff drm_helper_resume_force_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa6b2d9a3 drm_helper_encoder_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa6ff2657 drm_dp_mst_connector_early_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa830dc69 drm_panel_bridge_add_typed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa926f240 drm_dp_vsc_sdp_log +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa9cef80f drm_fb_helper_lastclose +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa9dd38f8 drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaa97eb26 drm_gem_fb_create_handle +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaacc5953 drm_fb_helper_sys_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xabd3c174 drm_atomic_helper_page_flip EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaf267620 drm_dp_lttpr_count -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb079a18d drm_scdc_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb0848d86 drm_crtc_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb2875fcd drm_lspcon_get_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb3457f07 __drm_atomic_helper_crtc_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb3767f66 drm_gem_fb_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb4384792 drm_fb_helper_alloc_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb6a7a537 drm_dp_update_payload_part1 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb740c184 drm_self_refresh_helper_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb854a83e drm_atomic_helper_calc_timestamping_constants -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb8dea6c8 drm_atomic_helper_wait_for_dependencies -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb8ebc823 drm_atomic_helper_check_plane_damage -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb97cd065 drm_dp_dual_mode_max_tmds_clock -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xba7e93b8 drm_dp_mst_topology_state_funcs -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbcb03bf2 drm_atomic_helper_connector_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbd0a1016 drm_atomic_helper_plane_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbd6b2d7b drm_dp_mst_topology_mgr_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbde65efe drm_atomic_helper_commit_tail_rpm -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbe620cfc drm_fb_helper_restore_fbdev_mode_unlocked -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbf9edfc8 drm_dp_downstream_id -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc0e0cbb1 drm_dp_cec_unregister_connector -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc1499ad0 drm_scdc_set_scrambling -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc1a3521e drm_kms_helper_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc2eade78 drm_dp_pcon_pps_override_buf -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc2edcf4e drm_kms_helper_poll_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb1b6a307 drm_fb_helper_unregister_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb47f5064 drm_dp_mst_deallocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb5ecec5a drm_dp_dual_mode_set_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb630a9bd drm_fb_helper_sys_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb6546839 drm_fb_helper_debug_enter +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb6706239 drm_dp_cec_register_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb990f08a drm_atomic_helper_update_legacy_modeset_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb9b5953e drm_helper_hpd_irq_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbbffc76a drm_atomic_helper_async_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbca8d5a9 drm_panel_bridge_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbcd0dbc4 drm_scdc_get_scrambling_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbe486fe0 drm_dp_dual_mode_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbee5e51c drm_atomic_helper_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbefec50e drm_simple_display_pipe_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbf5c4faf drm_fb_helper_deferred_io +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc020c0c1 drm_dp_pcon_dsc_max_slice_width +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc0c892c1 drm_simple_display_pipe_attach_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc1a1679b drm_scdc_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc1ff3700 __drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc2ff4a4d drm_atomic_helper_commit_duplicated_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc3509aa7 drm_dp_mst_get_port_malloc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc3e689b8 drm_atomic_helper_page_flip_target +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc5a540f3 drm_fb_helper_check_var EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc5c99a79 drm_dp_get_adjust_request_voltage -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc5f6a4fb drm_dp_mst_detect_port -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc6d24719 drm_dp_mst_connector_late_register +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc72819f6 drm_dp_read_desc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc79c2656 drm_fb_helper_blank EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc79ecffb drm_dp_downstream_is_type EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc85e28e8 drm_fb_xrgb8888_to_rgb565_dstclip -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc8ccd7f4 drm_self_refresh_helper_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc8f75ce9 drm_dp_pcon_hdmi_link_active -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xca565bf8 drm_mode_config_helper_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcabfe665 drm_fb_helper_deferred_io -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcb1e3ced drm_dp_pcon_hdmi_link_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcb31dfdf drm_dp_mst_connector_early_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcb6ee9cf drm_fb_helper_cfb_fillrect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcbd24c0f __drm_atomic_helper_plane_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcc9bcdad drm_dp_read_lttpr_phy_caps -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xce592ff4 drm_dp_aux_register -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcee07534 drm_gem_reset_shadow_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd0af246b drm_gem_simple_kms_duplicate_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd2987b0b drm_atomic_helper_commit_duplicated_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd2b04c60 drm_kms_helper_poll_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd2b0c7e6 drm_dp_downstream_is_tmds -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd304cf6a drm_helper_probe_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc87c0f5e drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xca0f2dd5 drm_gem_cleanup_shadow_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcd4ba634 drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcf523824 drm_self_refresh_helper_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcf96a52a drm_fb_helper_cfb_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd08baf66 drm_atomic_helper_cleanup_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd110a6f9 drm_gem_simple_display_pipe_prepare_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd1c8c1a1 drm_dp_mst_reset_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd1cec690 drm_dp_pcon_pps_default +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd32b489e drm_helper_probe_single_connector_modes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd39ba149 __drm_atomic_helper_bridge_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd4565de1 drm_mode_config_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd4886f44 __drm_atomic_helper_bridge_duplicate_state EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd4983d85 drm_fb_swab -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd6356cf5 drm_gem_prepare_shadow_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd8856cea drm_dp_cec_irq -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd9b0d65d drm_fb_helper_initial_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd9f84c36 drm_atomic_helper_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd4d184ce drm_dp_dpcd_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd5163af1 drm_gem_fb_end_cpu_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd64ed288 __drm_atomic_helper_crtc_state_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd72897a6 drm_dp_dual_mode_max_tmds_clock +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdab2e7db drm_dp_mst_dump_topology +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdaf1e11b drm_atomic_helper_wait_for_vblanks +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdb365f91 drm_dp_pcon_hdmi_link_mode EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdbc3c128 drm_fb_blit_dstclip -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdc1c279c drm_atomic_helper_prepare_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdc539865 drm_fb_helper_fill_info -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdc5d4b9f drm_dp_mst_put_port_malloc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdc718258 drm_atomic_helper_check_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdd25f079 drm_dp_pcon_dsc_max_slice_width -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdd87b7df drm_dp_mst_get_port_malloc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdedc553e drm_dp_aux_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdf066f23 drm_dp_mst_get_edid -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdf82401c drm_atomic_helper_commit_tail -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdfd11963 drm_simple_display_pipe_attach_bridge -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe26afa2e __drm_atomic_helper_connector_state_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe2760d2b __drm_atomic_helper_crtc_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe4cb20fc drm_fb_helper_ioctl -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe55a3ef1 drm_atomic_helper_cleanup_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe57b748b drm_self_refresh_helper_alter_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe64bdfd7 drm_scdc_get_scrambling_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe8b1c82e drm_gem_fb_end_cpu_access -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe8d5f820 drm_atomic_helper_commit_cleanup_done -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe913e4ef drm_dp_pcon_hdmi_frl_link_error_count -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeb33f61f drm_dp_aux_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xec5f5450 drm_dp_pcon_is_frl_ready -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xed16ea9b drm_panel_bridge_add -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xed252d69 drm_gem_simple_kms_prepare_shadow_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdbedcff7 drm_atomic_helper_bridge_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xde902cd0 drm_dp_dual_mode_get_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdf0a1c07 drm_panel_dp_aux_backlight +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdf260ca0 drm_atomic_get_mst_topology_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe140b90f drm_atomic_helper_damage_iter_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe1bf3dd7 drm_atomic_helper_async_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe1db8a10 drm_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe20fa512 __drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe2e0f8a3 drm_dp_downstream_debug +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe2ff358d drm_fb_helper_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe3215302 drm_dp_dpcd_read_link_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe4013978 drm_atomic_helper_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe50f8a0d drm_helper_disable_unused_functions +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe5360b84 drm_dp_pcon_dsc_max_slices +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe5ed3e93 drm_dp_link_train_clock_recovery_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe68d74bd drm_dp_cec_unset_edid +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe6ab49b1 drm_panel_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe6ff34ab __drm_atomic_helper_connector_state_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe8eb2712 drm_dp_find_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe9c992b9 drm_dp_send_query_stream_enc_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe9df9cfa devm_drm_panel_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xea83e6dd drm_dp_mst_atomic_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeb6e04cc drm_atomic_helper_disable_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeb80da3f drm_gem_simple_kms_duplicate_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeb845863 drm_dp_start_crc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xebc4841b drm_self_refresh_helper_update_avg_times +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xec107630 drm_dp_cec_unregister_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xecc38923 drm_dp_set_phy_test_pattern EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xedcf81ce drm_dp_channel_eq_ok -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xedfe966d drm_atomic_helper_plane_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xee65af05 __drm_atomic_helper_bridge_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeeb672b6 drm_dp_send_power_updown_phy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf0a6fbc3 drm_dp_pcon_convert_rgb_to_ycbcr -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf38b02da drm_dp_link_train_channel_eq_delay -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf3b314da drm_dp_cec_set_edid -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf3d6b4c8 drm_atomic_helper_check -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf4cc98c2 drm_atomic_helper_connector_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf6244ddf drm_atomic_helper_commit_modeset_enables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xedd289ec drm_dp_mst_connector_late_register +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xee918b50 drm_dp_read_dpcd_caps +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf00a8848 drm_fb_helper_debug_leave +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf4e5cda8 drm_atomic_helper_bridge_reset EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf68741fb drm_dp_subconnector_type EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf689ad25 drm_dp_downstream_420_passthrough -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf74eb52a drm_atomic_helper_plane_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf8333b3c drm_dp_pcon_dsc_max_slices -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf845c899 drm_atomic_helper_fake_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf8975fd6 drm_dp_read_lttpr_common_caps -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf8a52feb drm_helper_force_disable_all -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf8c425dd drm_atomic_helper_disable_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf8e4daae drm_atomic_helper_dirtyfb -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf9bb2aed drm_dp_send_real_edid_checksum -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf9d30991 drm_atomic_helper_swap_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf76fca4d drm_atomic_helper_dirtyfb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf8290b27 drm_dp_read_sink_count_cap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf980f34c drm_dp_read_mst_cap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf99d9e26 drm_scdc_set_scrambling +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf9ba3ed4 drm_kms_helper_poll_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfacbea4c drm_atomic_helper_commit_planes EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfb1a7a5a drm_dp_downstream_rgb_to_ycbcr_conversion -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfd871c81 drm_fb_helper_sys_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfb7683d4 drm_atomic_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfb982e7e __drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfc6b355e drm_gem_fb_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfca8153f drm_atomic_helper_check_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfd7896f1 drm_dp_pcon_convert_rgb_to_ycbcr +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfdb95141 drm_dp_update_payload_part1 EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfe12bcb9 drm_dsc_compute_rc_parameters -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xff223437 __drm_atomic_helper_plane_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x05124588 mipi_dbi_enable_flush -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x0f840ae1 mipi_dbi_command_stackbuf -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x133a549c mipi_dbi_dev_init_with_formats -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x1bad42e2 mipi_dbi_spi_init -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x1e1c32f3 mipi_dbi_command_read -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x256c9e66 mipi_dbi_display_is_on -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x39c7a42a mipi_dbi_pipe_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x41cb8ae6 mipi_dbi_poweron_conditional_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x4416c129 mipi_dbi_poweron_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x58cb90b1 mipi_dbi_dev_init -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x6cefe998 mipi_dbi_debugfs_init -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x89ecc777 mipi_dbi_spi_cmd_max_speed -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xbdd115c3 mipi_dbi_pipe_update -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xdf096fc6 mipi_dbi_spi_transfer -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xebeb1b7a mipi_dbi_hw_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xee94e6b4 mipi_dbi_command_buf -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xeeb548bd mipi_dbi_buf_copy -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x189e9900 drm_gem_ttm_dumb_map_offset -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x9808beb1 drm_gem_ttm_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x9a8d9452 drm_gem_ttm_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0xf56926ed drm_gem_ttm_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0xf8395735 drm_gem_ttm_print_info -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x0b137a4f drm_gem_vram_fill_create_dumb -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x3ba25625 drm_gem_vram_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x40961ae7 drm_vram_mm_debugfs_init -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x5a89c1e9 drm_gem_vram_offset -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x5b8c7fa2 drm_gem_vram_plane_helper_cleanup_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x748b5937 drm_gem_vram_driver_dumb_create -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x9199eee2 drm_vram_helper_mode_valid -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x9a1b5705 drm_gem_vram_unpin -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x9fb4f697 drm_gem_vram_simple_display_pipe_prepare_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xac8cd2f9 drm_gem_vram_pin -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xafc44f25 drm_gem_vram_put -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xb73c5512 drmm_vram_helper_init -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xc2d1d71f drm_gem_vram_create -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xc605699e drm_gem_vram_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xcffbd266 drm_gem_vram_plane_helper_prepare_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xec3c8ec0 drm_gem_vram_simple_display_pipe_cleanup_fb -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x08a7de2b drm_sched_increase_karma -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x0e8d0660 drm_sched_entity_destroy -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x0f9619d4 drm_sched_entity_fini -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x2dd2a79a to_drm_sched_fence -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x388db654 drm_sched_fault -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x3a2acc98 drm_sched_pick_best -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x40f80adc drm_sched_entity_push_job -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x41bdbd89 drm_sched_stop -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x48f9ca12 drm_sched_entity_flush -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x4bfff22e drm_sched_job_cleanup -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x52165857 drm_sched_dependency_optimized -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x579aa5f0 drm_sched_entity_init -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x5dd11a9a drm_sched_job_init -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x671e053c drm_sched_entity_modify_sched -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x706ec1d3 drm_sched_start -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x711c4eaf drm_sched_fini -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x75375004 drm_sched_resubmit_jobs -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x8219cab8 drm_sched_init -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x98cff100 drm_sched_increase_karma_ext -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x993b79f1 drm_sched_reset_karma -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xaf49e4aa drm_sched_entity_set_priority -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xbeb8e49b drm_sched_resubmit_jobs_ext -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xc1020a3e drm_sched_resume_timeout -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xf3b707e6 drm_sched_suspend_timeout -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0039fd14 ttm_tt_destroy_common -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x06277eb6 ttm_resource_manager_evict_all -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x06df3f50 ttm_resource_free -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x09855775 ttm_bo_vm_close -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0a341ea8 ttm_bo_vmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0c58fc56 ttm_range_man_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0f5c09e2 ttm_eu_backoff_reservation -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x14517514 ttm_move_memcpy -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x150941ba ttm_bo_vm_fault_reserved -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1680dbc4 ttm_resource_manager_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x19065677 ttm_agp_bind -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1f9cb0a9 ttm_bo_mmap_obj -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1fa67e4d ttm_glob -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x225ad044 ttm_io_prot -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3e854a71 ttm_bo_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3ff257d2 ttm_agp_unbind -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x40a52516 ttm_sg_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x435a7c18 ttm_agp_is_bound -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4e34a847 ttm_device_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x59a89ca7 ttm_pool_alloc -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5f2c1ebf ttm_bo_move_to_lru_tail -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x604e4c26 ttm_pool_free +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfec866ac drm_kms_helper_poll_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x09468bea mipi_dbi_display_is_on +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x163aa58c mipi_dbi_poweron_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x2d854794 mipi_dbi_spi_init +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x32d89768 mipi_dbi_dev_init_with_formats +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x4576cb0a mipi_dbi_spi_transfer +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x47f7bd9e mipi_dbi_command_read +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x48ee1714 mipi_dbi_hw_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x65cf32e0 mipi_dbi_command_stackbuf +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x6887f83d mipi_dbi_pipe_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x689897ac mipi_dbi_enable_flush +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x93c02061 mipi_dbi_buf_copy +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xab48e4a2 mipi_dbi_debugfs_init +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xb5a901ae mipi_dbi_pipe_update +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xc10279e8 mipi_dbi_command_buf +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xc110358e mipi_dbi_poweron_conditional_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xd3bb6abb mipi_dbi_dev_init +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xe7ad5f3e mipi_dbi_spi_cmd_max_speed +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x0f1b3e44 drm_gem_ttm_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x72527fe7 drm_gem_ttm_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x88a34c41 drm_gem_ttm_dumb_map_offset +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x945fdaf4 drm_gem_ttm_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0xf724e42e drm_gem_ttm_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x0d05d2d6 drm_gem_vram_fill_create_dumb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x1396cb44 drm_gem_vram_pin +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x17217f98 drm_vram_mm_debugfs_init +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x21818389 drm_gem_vram_plane_helper_cleanup_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x40a7e2ca drm_vram_helper_mode_valid +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x5334e9fd drm_gem_vram_simple_display_pipe_cleanup_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x7d2cdc73 drmm_vram_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x9cc8526a drm_gem_vram_create +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xb315b207 drm_gem_vram_put +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xb49f804b drm_gem_vram_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xbdd86a18 drm_gem_vram_driver_dumb_create +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xe04dd6bb drm_gem_vram_unpin +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xeb693581 drm_gem_vram_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xecffa52f drm_gem_vram_offset +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xeeb96a8d drm_gem_vram_plane_helper_prepare_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xf05686cb drm_gem_vram_simple_display_pipe_prepare_fb +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x0aab938f drm_sched_start +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x10bea2a1 drm_sched_entity_set_priority +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x118981d9 drm_sched_increase_karma +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x1223f91c drm_sched_resubmit_jobs_ext +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x23b0d7d0 drm_sched_dependency_optimized +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x2522ff86 drm_sched_resubmit_jobs +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x2c37a203 drm_sched_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x3fc51b9a drm_sched_job_cleanup +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x43dd380c drm_sched_entity_destroy +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x4426b19f drm_sched_fini +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x5c76580c drm_sched_fault +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x6dd931d2 drm_sched_entity_modify_sched +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x7493d572 drm_sched_suspend_timeout +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x866b2d1d drm_sched_pick_best +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x8c28cbeb drm_sched_entity_push_job +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x98bea76b drm_sched_entity_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x9d05bd6d drm_sched_job_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x9d3c8d5d drm_sched_resume_timeout +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xc2e1aa42 drm_sched_reset_karma +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xc389d13f to_drm_sched_fence +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xdb3fbc2f drm_sched_increase_karma_ext +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xe84f3016 drm_sched_entity_flush +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xedbdb2b1 drm_sched_entity_fini +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xffb3bce6 drm_sched_stop +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x00ff3d54 ttm_bo_vm_fault +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x01b1ee30 ttm_bo_validate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0a916198 ttm_device_swapout +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0b144655 ttm_eu_reserve_buffers +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x103c1be3 ttm_device_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1665d1ae ttm_bo_vm_access +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1781a20b ttm_bo_kmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x190143f2 ttm_bo_vm_fault_reserved +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1d10d61e ttm_bo_vm_dummy_page +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1fe548d0 ttm_bo_vm_reserve +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x27bb203d ttm_pool_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2834b4a5 ttm_bo_move_to_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2984b58f ttm_bo_mmap_obj +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2e4172fb ttm_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x31020309 ttm_tt_destroy_common +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3964f54b ttm_bo_kunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3c1644e5 ttm_resource_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x481ff315 ttm_bo_unmap_virtual +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x483ab504 ttm_bo_bulk_move_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4900c163 ttm_bo_eviction_valuable +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4a869d27 ttm_resource_manager_evict_all +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4aa33c74 ttm_bo_put +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4f22e100 ttm_range_man_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x502e1f47 ttm_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5079f06d ttm_tt_populate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x59d53f59 ttm_io_prot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5a7f159c ttm_resource_manager_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5e75bb84 ttm_bo_move_memcpy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x612e83f7 ttm_resource_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x625bba42 ttm_agp_bind EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6536031b ttm_kmap_iter_iomap_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x67b51f12 ttm_agp_tt_create -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6b21bcdd ttm_tt_populate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x735aa394 ttm_range_man_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x790f5271 ttm_eu_fence_buffer_objects -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7fac247c ttm_resource_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x95da1787 ttm_bo_vunmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x96498464 ttm_bo_put -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9d1d279d ttm_bo_move_memcpy -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa6c34c2b ttm_bo_vm_access -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa79f850a ttm_bo_vm_fault -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xad89d3a6 ttm_agp_destroy -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xae39eaca ttm_bo_kunmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xae72cac1 ttm_bo_vm_dummy_page -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xaf3cf82e ttm_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6a352afe ttm_agp_unbind +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x775eabc5 ttm_bo_lock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7aa17792 ttm_bo_unlock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7e1d10a0 ttm_kmap_iter_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8203b6c4 ttm_pool_debugfs +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8743ac03 ttm_bo_mem_space +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x894656ce ttm_sg_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9cfcd70c ttm_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa93a0784 ttm_bo_init_reserved +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xaf67928b ttm_bo_move_accel_cleanup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb10aaf2c ttm_pool_alloc +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb1a1ea1a ttm_bo_vunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb313bf3d ttm_agp_destroy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb57f8ac1 ttm_eu_backoff_reservation +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb6f23f90 ttm_resource_manager_debug EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb753ca08 ttm_bo_mem_compat -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb7618c03 ttm_bo_vm_reserve -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb7b81fad ttm_bo_kmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb813b6ae ttm_global_swapout -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbbe66481 ttm_bo_lock_delayed_workqueue -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc9eb5337 ttm_bo_unlock_delayed_workqueue -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcf63cbff ttm_tt_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd0b08837 ttm_bo_bulk_move_lru_tail -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd3d97b59 ttm_device_swapout -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd8a5938c ttm_bo_eviction_valuable -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xda55f3d5 ttm_eu_reserve_buffers -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xddc99fa7 ttm_bo_init_reserved -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdf258fd7 ttm_device_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe4b37c84 ttm_kmap_iter_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe9fb60bd ttm_resource_manager_debug -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xeac03fb3 ttm_bo_move_accel_cleanup -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf3372542 ttm_pool_debugfs -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf50f27a6 ttm_bo_wait -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf58addb2 ttm_bo_vm_open -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf787d31c ttm_bo_validate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf9181edc ttm_bo_unmap_virtual -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfe9007d7 ttm_bo_mem_space +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc5dc87f1 ttm_agp_is_bound +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc5fce5be ttm_move_memcpy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcc562174 ttm_glob +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd572c5c0 ttm_eu_fence_buffer_objects +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdc1b12b7 ttm_agp_tt_create +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe10a7a25 ttm_bo_wait +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe125de0b ttm_bo_vm_close +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xeaa429f8 ttm_bo_vmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xeca386e7 ttm_bo_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xee03285a ttm_global_swapout +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfb8957ad ttm_bo_vm_open +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfe486147 ttm_range_man_fini EXPORT_SYMBOL drivers/gpu/drm/vmwgfx/vmwgfx 0x446c961c ttm_base_object_noref_lookup -EXPORT_SYMBOL drivers/gpu/drm/vmwgfx/vmwgfx 0x479cd6f8 ttm_mem_glob EXPORT_SYMBOL drivers/gpu/drm/vmwgfx/vmwgfx 0x6052860c ttm_round_pot -EXPORT_SYMBOL drivers/gpu/drm/vmwgfx/vmwgfx 0xad78d551 ttm_mem_global_alloc -EXPORT_SYMBOL drivers/gpu/drm/vmwgfx/vmwgfx 0xfd25a8d7 ttm_mem_global_free -EXPORT_SYMBOL drivers/hid/hid 0x38c4a0a2 hid_bus_type -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x04e2a163 ishtp_device -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x0fed1d9e ishtp_cl_tx_empty -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x15375b04 ishtp_cl_get_tx_free_rings -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x1983df82 ishtp_dev_to_cl_device -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x19fdf24a ishtp_get_pci_device -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x1d2e6377 ishtp_reset_compl_handler -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x1e0842c1 ishtp_cl_io_rb_recycle -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x2203dc8d ishtp_get_client_data -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x3a100eda ishtp_bus_remove_all_clients -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x3fee6075 ishtp_cl_get_tx_free_buffer_size -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x41822dfc ishtp_get_device -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x4617c63c ishtp_fw_cl_get_client -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x4698fdcc ishtp_set_tx_ring_size -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x51eb6981 ishtp_cl_set_fw_client_id -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x53cfa148 ishtp_set_client_data -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x559ca974 ishtp_register_event_cb -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x5a53cb06 ishtp_cl_disconnect -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x5db194a8 ishtp_fw_cl_by_uuid +EXPORT_SYMBOL drivers/gpu/drm/vmwgfx/vmwgfx 0x7f5ddfb0 ttm_mem_global_alloc +EXPORT_SYMBOL drivers/gpu/drm/vmwgfx/vmwgfx 0x9827e302 ttm_mem_glob +EXPORT_SYMBOL drivers/gpu/drm/vmwgfx/vmwgfx 0xa606f687 ttm_mem_global_free +EXPORT_SYMBOL drivers/hid/hid 0x6a618f67 hid_bus_type +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x0379be3f ishtp_cl_allocate +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x13a79088 ishtp_bus_remove_all_clients +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x1776d507 ishtp_register_event_cb +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x20ae351b ishtp_start +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x2924701e ishtp_recv +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x2cbd2927 ishtp_cl_tx_empty +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x30fa0b41 ish_hw_reset +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x38777457 ishtp_cl_link +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x39224f94 ishtp_set_drvdata +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x3956a31e ishtp_get_client_data +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x3e503fd0 ishtp_cl_driver_unregister +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x49dbbe18 ishtp_set_tx_ring_size +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x5981f62b ishtp_cl_send EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x5f9b0501 ishtp_get_fw_client_id -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x70b7825e ish_hw_reset -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x7307742c ishtp_trace_callback -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x7c03f2cd ishtp_send_suspend -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x7dc78fde ishtp_cl_rx_get_rb -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x81e56031 ishtp_cl_driver_unregister -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x860f7892 ishtp_cl_flush_queues -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x8671b88e ishtp_cl_unlink -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x893ebbca ishtp_recv -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x8f4fc94f ishtp_put_device -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x931f4504 ishtp_set_drvdata -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x965da913 ishtp_set_connection_state -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x9661b910 ishtp_cl_driver_register -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x9766c561 ishtp_set_rx_ring_size -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x9d1dcd34 ishtp_cl_link -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xb0e0f6cd ishtp_get_ishtp_device -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xb6697450 ishtp_start -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xbb784bd6 ishtp_reset_handler -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xbefe2aa5 ishtp_cl_allocate -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xc31292ad ishtp_cl_connect -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xdbe8309a ishtp_send_resume -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xe0c06335 ishtp_get_drvdata -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xf1996025 ishtp_device_init -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xf6758215 ishtp_cl_free -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xffd61969 ishtp_cl_send -EXPORT_SYMBOL drivers/hv/hv_vmbus 0xf6cd0055 vmbus_sendpacket -EXPORT_SYMBOL drivers/hv/hv_vmbus 0xfdfc8882 vmbus_recvpacket +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x62bbc8c5 ishtp_set_rx_ring_size +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x689304eb ishtp_send_suspend +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x752b2273 ishtp_send_resume +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x7790751d ishtp_cl_disconnect +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x7b91e310 ishtp_dev_to_cl_device +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x7d9ca2bc ishtp_cl_flush_queues +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x7e3ef553 ishtp_device_init +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x801a7721 ishtp_set_client_data +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x815cb2a9 ishtp_set_connection_state +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x82531ea0 ishtp_cl_set_fw_client_id +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x8c0df3ea ishtp_get_pci_device +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x8c450f2f ishtp_fw_cl_by_uuid +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x8e394eda ishtp_cl_connect +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x95e27e6c ishtp_get_device +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xab3730bc ishtp_get_drvdata +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xab983fb1 ishtp_cl_get_tx_free_buffer_size +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xb2a87ace ishtp_cl_free +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xb35018bb ishtp_device +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xbeb6b1aa ishtp_put_device +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xc958a101 ishtp_cl_io_rb_recycle +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xcde32637 ishtp_get_ishtp_device +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xdc0b013f ishtp_cl_get_tx_free_rings +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xdd2f383e ishtp_trace_callback +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xe6cd1d7d ishtp_reset_compl_handler +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xe8188c15 ishtp_fw_cl_get_client +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xeccca0ba ishtp_cl_driver_register +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xed1ab4c2 ishtp_cl_rx_get_rb +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xef4d61c6 ishtp_reset_handler +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xf6ddb670 ishtp_cl_unlink +EXPORT_SYMBOL drivers/hv/hv_vmbus 0x57344c74 vmbus_recvpacket +EXPORT_SYMBOL drivers/hv/hv_vmbus 0xb13ecf32 vmbus_sendpacket EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x2f9e7f8e vid_which_vrm EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x446615bd vid_from_reg EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x01568393 sch56xx_read_virtual_reg -EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x2bc6da4f sch56xx_watchdog_register EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x96ec3b26 sch56xx_read_virtual_reg12 EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xaa17a737 sch56xx_write_virtual_reg EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xb37b9b81 sch56xx_read_virtual_reg16 -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x28877b35 i2c_bit_algo -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x570ec4e4 i2c_bit_add_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x87485104 i2c_bit_add_numbered_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x0f2011a2 i2c_pca_add_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x1b629baa i2c_pca_add_numbered_bus -EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0x2f2e5bf0 amd756_smbus -EXPORT_SYMBOL drivers/iio/accel/bma400_core 0x0d4f48d1 bma400_probe -EXPORT_SYMBOL drivers/iio/accel/bma400_core 0x7dd3b35c bma400_regmap_config -EXPORT_SYMBOL drivers/iio/accel/bma400_core 0xdfa7a492 bma400_remove -EXPORT_SYMBOL drivers/iio/accel/kxsd9 0x0de6f773 kxsd9_dev_pm_ops -EXPORT_SYMBOL drivers/iio/accel/kxsd9 0x5375b253 kxsd9_common_remove -EXPORT_SYMBOL drivers/iio/accel/kxsd9 0x5e76edbf kxsd9_common_probe -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x0b6dd8f0 mma9551_read_status_words -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x11d226ba mma9551_app_reset -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x1b4f026a mma9551_write_config_word -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x1d1488ee mma9551_read_config_words -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x2102af46 mma9551_read_config_byte -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x30becbb8 mma9551_update_config_bits -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x37089f27 mma9551_read_status_byte +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xf408c4bd sch56xx_watchdog_register +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x5305326e i2c_bit_algo +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x56e82339 i2c_bit_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xa835e4f1 i2c_bit_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x0f8bbd5e i2c_pca_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x4400c2d0 i2c_pca_add_bus +EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0x7f6727b2 amd756_smbus +EXPORT_SYMBOL drivers/iio/accel/bma400_core 0x24abb7d5 bma400_probe +EXPORT_SYMBOL drivers/iio/accel/bma400_core 0xa0946b9f bma400_remove +EXPORT_SYMBOL drivers/iio/accel/bma400_core 0xa6f372f8 bma400_regmap_config +EXPORT_SYMBOL drivers/iio/accel/kxsd9 0xd126dd55 kxsd9_common_probe +EXPORT_SYMBOL drivers/iio/accel/kxsd9 0xe2ded619 kxsd9_common_remove +EXPORT_SYMBOL drivers/iio/accel/kxsd9 0xf332b29c kxsd9_dev_pm_ops +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x04711566 mma9551_write_config_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x0986b2b1 mma9551_gpio_config +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x14f6a5a8 mma9551_read_config_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x1c4ce259 mma9551_app_reset +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x309de28e mma9551_read_config_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x317ad6db mma9551_read_version EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x41ef446c mma9551_read_accel_scale -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x5a01797b mma9551_set_device_state -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x801056aa mma9551_write_config_words -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x9cd47d53 mma9551_gpio_config -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xa6451041 mma9551_read_version +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x4a43f123 mma9551_set_device_state +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x6930b5e8 mma9551_read_config_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x7ba37c75 mma9551_set_power_state +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x88476c5a mma9551_write_config_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x8bcd6701 mma9551_read_accel_chan +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xbac44fc6 mma9551_write_config_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xbb117c2d mma9551_read_status_byte EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xbcd7fe96 mma9551_sleep -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xcc99d7ad mma9551_read_accel_chan -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xcdad328e mma9551_set_power_state -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xd5275099 mma9551_read_config_word -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xef840b67 mma9551_read_status_word -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xf978426f mma9551_write_config_byte -EXPORT_SYMBOL drivers/iio/accel/st_accel 0x9f4bef43 st_accel_common_probe -EXPORT_SYMBOL drivers/iio/accel/st_accel 0xc2d98c8d st_accel_get_settings -EXPORT_SYMBOL drivers/iio/accel/st_accel 0xc61c07bf st_accel_common_remove +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xccc82d5e mma9551_read_status_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xcdd7ed15 mma9551_update_config_bits +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xdb41f578 mma9551_read_status_word +EXPORT_SYMBOL drivers/iio/accel/st_accel 0x59fa7028 st_accel_get_settings +EXPORT_SYMBOL drivers/iio/accel/st_accel 0x5b0e5ce1 st_accel_common_remove +EXPORT_SYMBOL drivers/iio/accel/st_accel 0x73d6a4b2 st_accel_common_probe EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x10a4c688 qcom_adc5_hw_scale EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x12402a0a qcom_vadc_scale EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x39885d6b qcom_adc_tm5_temp_volt_scale @@ -1181,1241 +1180,1251 @@ 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 0x1035530c iio_triggered_buffer_cleanup -EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0x1fadb3a0 iio_triggered_buffer_setup_ext -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x1bb1783c iio_kfifo_allocate -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x497e3558 iio_kfifo_free -EXPORT_SYMBOL drivers/iio/chemical/bme680_core 0x7a740984 bme680_regmap_config -EXPORT_SYMBOL drivers/iio/chemical/scd30_core 0x1552116a scd30_suspend -EXPORT_SYMBOL drivers/iio/chemical/scd30_core 0x194d7230 scd30_resume -EXPORT_SYMBOL drivers/iio/chemical/scd30_core 0xf64b552c scd30_probe +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0x9f69f3b0 iio_triggered_buffer_cleanup +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0xba0eeb6a iio_triggered_buffer_setup_ext +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x16cab743 iio_kfifo_free +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x53d4e0b1 iio_kfifo_allocate +EXPORT_SYMBOL drivers/iio/chemical/bme680_core 0xa6aef452 bme680_regmap_config +EXPORT_SYMBOL drivers/iio/chemical/scd30_core 0x26601b4e scd30_resume +EXPORT_SYMBOL drivers/iio/chemical/scd30_core 0xa0160628 scd30_suspend +EXPORT_SYMBOL drivers/iio/chemical/scd30_core 0xf0d89c0d scd30_probe EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x045688dd ms_sensors_read_prom_word +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x17611de6 ms_sensors_read_serial EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x2d2f5cd5 ms_sensors_reset +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x354019fd ms_sensors_show_heater +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x37eb74b6 ms_sensors_tp_read_prom EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x42b6a050 ms_sensors_convert_and_read -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x5e43edcb ms_sensors_show_battery_low -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x6d8ae67b ms_sensors_ht_read_humidity -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x8bbe1825 ms_sensors_write_resolution -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xb13614cb ms_sensors_read_serial -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xb2d1b807 ms_sensors_write_heater -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xb788f6e3 ms_sensors_ht_read_temperature -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xc6cf2c3d ms_sensors_tp_read_prom -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xd7db9712 ms_sensors_read_temp_and_pressure -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xe6825305 ms_sensors_show_heater -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x8039976a ssp_change_delay -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x9e981bdd ssp_get_sensor_delay -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xb9cdf9bc ssp_enable_sensor -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xec10d2ff ssp_disable_sensor -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xf840cc30 ssp_register_consumer -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x1718475c ssp_common_process_data -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x663e9e1c ssp_common_buffer_postdisable -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x7b641a10 ssp_common_buffer_postenable +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x6e55f7be ms_sensors_ht_read_humidity +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x858ffa85 ms_sensors_read_temp_and_pressure +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xaf06aa70 ms_sensors_ht_read_temperature +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xd082f2fa ms_sensors_write_heater +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xef05c447 ms_sensors_write_resolution +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xf4c30ed5 ms_sensors_show_battery_low +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x27ea518c ssp_change_delay +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x5998a171 ssp_get_sensor_delay +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xafece598 ssp_disable_sensor +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xc842900a ssp_register_consumer +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xd4c9ee0c ssp_enable_sensor +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x0a24e521 ssp_common_buffer_postenable +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x21c31ec0 ssp_common_process_data +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x9b060f64 ssp_common_buffer_postdisable EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x074d7047 st_sensors_trigger_handler -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x0b464ec7 st_sensors_read_info_raw -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x15156957 st_sensors_set_enable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x1c9c3e62 st_sensors_init_sensor -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x1e83db86 st_sensors_sysfs_scale_avail -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x2aa35e6a st_sensors_sysfs_sampling_frequency_avail -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x2bd39903 st_sensors_get_settings_index -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x30ea74e8 st_sensors_set_dataready_irq -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x55d4be54 st_sensors_set_odr -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x63082feb st_sensors_deallocate_trigger -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x808eb36c st_sensors_debugfs_reg_access -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x8a9cce37 st_sensors_dev_name_probe -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x8b8ac972 st_sensors_allocate_trigger -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xab43ff9c st_sensors_power_enable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xd942793d st_sensors_power_disable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xea21083c st_sensors_set_fullscale_by_gain -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xebe3a4fa st_sensors_validate_device -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xf0262fe6 st_sensors_verify_id -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xf5332beb st_sensors_set_axis_enable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0x7ced2f26 st_sensors_i2c_configure -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_spi 0x3fd9909a st_sensors_spi_configure -EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0x4f99e1ff mpu3050_dev_pm_ops -EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0xc254bbef mpu3050_common_probe -EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0xc714f678 mpu3050_common_remove -EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0xab1be1c2 st_gyro_common_probe -EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0xab46e605 st_gyro_common_remove -EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0xcba6a812 st_gyro_get_settings -EXPORT_SYMBOL drivers/iio/humidity/hts221 0x2de12b20 hts221_pm_ops -EXPORT_SYMBOL drivers/iio/humidity/hts221 0x821ccddd hts221_probe -EXPORT_SYMBOL drivers/iio/imu/adis_lib 0xde202780 adis_enable_irq -EXPORT_SYMBOL drivers/iio/imu/adis_lib 0xf5440c49 adis_debugfs_reg_access +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x16363747 st_sensors_deallocate_trigger +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x266f31fb st_sensors_allocate_trigger +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x329c9a5e st_sensors_set_fullscale_by_gain +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x44ed4c37 st_sensors_power_disable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x73077547 st_sensors_get_settings_index +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x8830b559 st_sensors_init_sensor +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x8d0e5596 st_sensors_sysfs_sampling_frequency_avail +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x91c9ef25 st_sensors_validate_device +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x91eb9ffb st_sensors_dev_name_probe +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x99465bb1 st_sensors_set_dataready_irq +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xa25a84ac st_sensors_verify_id +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xa9317896 st_sensors_power_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xaeb0672c st_sensors_sysfs_scale_avail +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xba5e9e34 st_sensors_set_axis_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xc480efba st_sensors_read_info_raw +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xe5ff4590 st_sensors_set_odr +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xef02ab3b st_sensors_debugfs_reg_access +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xf3fe91fe st_sensors_set_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0x244f01a9 st_sensors_i2c_configure +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_spi 0xfaf020ad st_sensors_spi_configure +EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0x0536a905 mpu3050_dev_pm_ops +EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0x8bae76e1 mpu3050_common_remove +EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0xc8db1cda mpu3050_common_probe +EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x8c98bdd2 st_gyro_get_settings +EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0xd0870f60 st_gyro_common_probe +EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0xdf2dc769 st_gyro_common_remove +EXPORT_SYMBOL drivers/iio/humidity/hts221 0x6a802558 hts221_pm_ops +EXPORT_SYMBOL drivers/iio/humidity/hts221 0x7bae6fd9 hts221_probe +EXPORT_SYMBOL drivers/iio/imu/adis_lib 0x4877b337 adis_enable_irq +EXPORT_SYMBOL drivers/iio/imu/adis_lib 0x99394a73 adis_debugfs_reg_access +EXPORT_SYMBOL drivers/iio/imu/bmi160/bmi160_core 0x27eb205a bmi160_regmap_config EXPORT_SYMBOL drivers/iio/imu/bmi160/bmi160_core 0xca19cfae bmi160_enable_irq -EXPORT_SYMBOL drivers/iio/imu/bmi160/bmi160_core 0xccf070d7 bmi160_regmap_config -EXPORT_SYMBOL drivers/iio/imu/fxos8700_core 0x7a995a09 fxos8700_regmap_config -EXPORT_SYMBOL drivers/iio/imu/st_lsm6dsx/st_lsm6dsx 0x047eb51a st_lsm6dsx_probe -EXPORT_SYMBOL drivers/iio/imu/st_lsm6dsx/st_lsm6dsx 0x43a9d9e3 st_lsm6dsx_pm_ops -EXPORT_SYMBOL drivers/iio/industrialio 0x1d87bc73 iio_read_const_attr -EXPORT_SYMBOL drivers/iio/industrialio 0x1fddc8bc iio_trigger_using_own -EXPORT_SYMBOL drivers/iio/industrialio 0x25ebe45e __iio_device_register +EXPORT_SYMBOL drivers/iio/imu/fxos8700_core 0x6ef76aeb fxos8700_regmap_config +EXPORT_SYMBOL drivers/iio/imu/st_lsm6dsx/st_lsm6dsx 0x703cf07e st_lsm6dsx_probe +EXPORT_SYMBOL drivers/iio/imu/st_lsm6dsx/st_lsm6dsx 0x73e2f24f st_lsm6dsx_pm_ops +EXPORT_SYMBOL drivers/iio/industrialio 0x11468c4b iio_trigger_notify_done +EXPORT_SYMBOL drivers/iio/industrialio 0x148e46e5 iio_device_free +EXPORT_SYMBOL drivers/iio/industrialio 0x18915ede iio_trigger_validate_own_device EXPORT_SYMBOL drivers/iio/industrialio 0x2d6bcdcb iio_trigger_generic_data_rdy_poll -EXPORT_SYMBOL drivers/iio/industrialio 0x3226a0cb __iio_trigger_register -EXPORT_SYMBOL drivers/iio/industrialio 0x32542040 iio_trigger_poll -EXPORT_SYMBOL drivers/iio/industrialio 0x382ae0d3 iio_device_unregister -EXPORT_SYMBOL drivers/iio/industrialio 0x3cf2a0ce iio_trigger_set_immutable -EXPORT_SYMBOL drivers/iio/industrialio 0x535e8d1c iio_trigger_poll_chained -EXPORT_SYMBOL drivers/iio/industrialio 0x569fd96d iio_device_alloc -EXPORT_SYMBOL drivers/iio/industrialio 0x6a877cb5 iio_bus_type -EXPORT_SYMBOL drivers/iio/industrialio 0x7241e74a iio_read_mount_matrix -EXPORT_SYMBOL drivers/iio/industrialio 0x7d679c3b iio_trigger_notify_done -EXPORT_SYMBOL drivers/iio/industrialio 0x7d9a0ab3 iio_buffer_init -EXPORT_SYMBOL drivers/iio/industrialio 0x85fd9e79 iio_device_set_clock -EXPORT_SYMBOL drivers/iio/industrialio 0x8b0a5ea2 iio_trigger_validate_own_device -EXPORT_SYMBOL drivers/iio/industrialio 0x9c2f35f4 iio_trigger_unregister -EXPORT_SYMBOL drivers/iio/industrialio 0xa93b6b51 iio_device_free -EXPORT_SYMBOL drivers/iio/industrialio 0xb9b2f2dc iio_push_event -EXPORT_SYMBOL drivers/iio/industrialio 0xbac7ef24 iio_get_time_res -EXPORT_SYMBOL drivers/iio/industrialio 0xc57f5e83 iio_device_get_clock -EXPORT_SYMBOL drivers/iio/industrialio 0xd449793d iio_trigger_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0x3270991e iio_read_const_attr +EXPORT_SYMBOL drivers/iio/industrialio 0x42dec3fd iio_buffer_init +EXPORT_SYMBOL drivers/iio/industrialio 0x478889e7 iio_device_get_clock +EXPORT_SYMBOL drivers/iio/industrialio 0x51d35add iio_device_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0x56b86ad3 iio_device_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0x676bf4e2 __iio_device_register +EXPORT_SYMBOL drivers/iio/industrialio 0x6e1d3f6b iio_trigger_poll +EXPORT_SYMBOL drivers/iio/industrialio 0x7bf6a1f1 iio_read_mount_matrix +EXPORT_SYMBOL drivers/iio/industrialio 0x81e210f4 iio_get_time_ns +EXPORT_SYMBOL drivers/iio/industrialio 0x8c2abb35 iio_get_time_res +EXPORT_SYMBOL drivers/iio/industrialio 0x8f0ff743 iio_trigger_poll_chained +EXPORT_SYMBOL drivers/iio/industrialio 0x908b8cb6 iio_trigger_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0x979e8740 __iio_trigger_register +EXPORT_SYMBOL drivers/iio/industrialio 0x9a6db908 iio_push_event +EXPORT_SYMBOL drivers/iio/industrialio 0xad82d3e9 iio_trigger_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0xb32e2f87 iio_trigger_set_immutable +EXPORT_SYMBOL drivers/iio/industrialio 0xbca50baa iio_bus_type +EXPORT_SYMBOL drivers/iio/industrialio 0xcef9441b iio_trigger_using_own +EXPORT_SYMBOL drivers/iio/industrialio 0xdee0d4f3 iio_trigger_free EXPORT_SYMBOL drivers/iio/industrialio 0xdf76bbeb iio_pollfunc_store_time -EXPORT_SYMBOL drivers/iio/industrialio 0xf03cf264 iio_get_time_ns -EXPORT_SYMBOL drivers/iio/industrialio 0xfed72067 iio_trigger_free -EXPORT_SYMBOL drivers/iio/industrialio-configfs 0x9ac33a98 iio_configfs_subsys -EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x0fc7a284 iio_register_sw_device_type -EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x1d589479 iio_sw_device_create -EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x9afedbd9 iio_unregister_sw_device_type -EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0xce45000c iio_sw_device_destroy -EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x074afb83 iio_register_sw_trigger_type -EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x1a7a9370 iio_unregister_sw_trigger_type -EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x31e78751 iio_sw_trigger_create -EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x4b0a26ee iio_sw_trigger_destroy -EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x2861d40f iio_triggered_event_setup -EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x4e806377 iio_triggered_event_cleanup -EXPORT_SYMBOL drivers/iio/light/st_uvis25_core 0x529f0175 st_uvis25_probe -EXPORT_SYMBOL drivers/iio/light/st_uvis25_core 0x7a4148ea st_uvis25_pm_ops -EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0x0f155617 bmc150_magn_remove -EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0x94e39464 bmc150_magn_probe -EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0xabef12f7 bmc150_magn_regmap_config -EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0xe2c404d4 bmc150_magn_pm_ops -EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0x102b7058 hmc5843_common_probe -EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0x3b110421 hmc5843_common_resume -EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0x7f8dc149 hmc5843_common_suspend -EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0xc7ec5c0c hmc5843_common_remove -EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x5a5263b3 st_magn_get_settings -EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x9450bdf7 st_magn_common_probe -EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0xfdca697a st_magn_common_remove -EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x127aee01 bmp280_common_probe -EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x192e290d bmp280_dev_pm_ops -EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x44846c3b bmp180_regmap_config -EXPORT_SYMBOL drivers/iio/pressure/bmp280 0xae02b159 bmp280_regmap_config -EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0x10c68e5e ms5611_remove -EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0xd8ddeb7f ms5611_probe -EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x16c8b7cc st_press_common_probe -EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0xbb921a56 st_press_common_remove -EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0xc4bda6c3 st_press_get_settings -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x06137ac6 ib_send_cm_sidr_rep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x08f49fb4 ib_send_cm_req -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x142b6a6b ib_send_cm_sidr_req -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x1c91217b ib_destroy_cm_id -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x373a7839 ib_send_cm_drep +EXPORT_SYMBOL drivers/iio/industrialio 0xeff37140 iio_device_set_clock +EXPORT_SYMBOL drivers/iio/industrialio-configfs 0x3c2be949 iio_configfs_subsys +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x27ccc64f iio_register_sw_device_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x591a1256 iio_unregister_sw_device_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x87b18f56 iio_sw_device_destroy +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0xe83add42 iio_sw_device_create +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0xc5f6351a iio_sw_trigger_create +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0xeb18a8cf iio_sw_trigger_destroy +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0xf2311c35 iio_unregister_sw_trigger_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0xf2a71032 iio_register_sw_trigger_type +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x37704246 iio_triggered_event_setup +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0xa816aaca iio_triggered_event_cleanup +EXPORT_SYMBOL drivers/iio/light/st_uvis25_core 0x25fcf8ec st_uvis25_pm_ops +EXPORT_SYMBOL drivers/iio/light/st_uvis25_core 0xfe7323ea st_uvis25_probe +EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0x05758abd bmc150_magn_remove +EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0x60ea51f4 bmc150_magn_probe +EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0x846d0fc0 bmc150_magn_regmap_config +EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0xa86b4c2e bmc150_magn_pm_ops +EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0x13e89ebf hmc5843_common_resume +EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0x27bad0fa hmc5843_common_remove +EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0xdc91566f hmc5843_common_probe +EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0xf9d45846 hmc5843_common_suspend +EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x1d363894 st_magn_common_probe +EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x1d6c7673 st_magn_get_settings +EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x6530405b st_magn_common_remove +EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x296502a1 bmp280_dev_pm_ops +EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x63cb2a21 bmp180_regmap_config +EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x894df743 bmp280_regmap_config +EXPORT_SYMBOL drivers/iio/pressure/bmp280 0xd2a25d94 bmp280_common_probe +EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0xb8cb8a36 ms5611_probe +EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0xe5975988 ms5611_remove +EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x1f498eda st_press_common_remove +EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x3029ecde st_press_common_probe +EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x5f9e5a66 st_press_get_settings +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x3106109d ib_cm_insert_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x36395c6b ib_send_cm_sidr_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x3d83ec90 ib_send_cm_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x5d669c9a ib_send_cm_drep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x6201bb38 ib_send_cm_mra +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x6957fc59 ib_destroy_cm_id EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x69824a14 ibcm_reject_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x6d532c07 ib_cm_insert_listen -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x94abb645 ib_cm_listen -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x97d86149 ib_send_cm_rej -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x9f054431 ib_send_cm_rep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xa18a2cb3 ib_send_cm_dreq -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xb478e7ad ib_send_cm_mra -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xb577f3d0 ib_send_cm_rtu -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xc3b262d6 ib_cm_notify -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xd28eb8ee ib_cm_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xd880b30e ib_create_cm_id -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0070db47 ib_alloc_mr_integrity -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0151cb66 rdma_resolve_ip -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x01fa540a rdma_restrack_count -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x023f7228 ib_mr_pool_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x05001e94 rdma_destroy_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x059811b6 ibnl_put_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0616327b ib_dealloc_pd_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x07c7a1f1 rdma_nl_put_driver_u64_hex -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x08c7b9b7 rdma_read_gid_hw_context -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0a9ee6be rdma_nl_stat_hwcounter_entry +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x81ea83ce ib_send_cm_dreq +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x88c61d83 ib_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xadd44a4f ib_send_cm_sidr_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xc79bf940 ib_send_cm_rej +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xc9655a8d ib_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xcc5b139e ib_send_cm_rtu +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xcd050d0f ib_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xda767b0d ib_cm_notify +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xe7a9f80f ib_send_cm_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x002cfcbf rdma_read_gid_l2_fields +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x00567171 rdma_replace_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x049b1a75 ib_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x05828e2b ib_create_srq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x093b3ba5 rdma_roce_rescan_device EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c86f5cb ib_sa_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0d582694 ib_unregister_device_and_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0e513cf1 ib_query_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0ffbeb86 ib_modify_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x10741c68 rdma_translate_ip -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1209b361 ib_query_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x13dec469 ib_create_qp_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1473d4c4 rdma_nl_register +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0d055538 ib_cq_pool_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0d9660d9 rdma_rw_ctx_wrs +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0db0c3e9 ib_set_device_ops +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0dc78f66 rdma_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x113be7a5 rdma_nl_put_driver_u32 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x11edd84e rdma_rw_ctx_signature_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x12419ef7 ib_query_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1296ceb3 ib_get_vf_config +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x145fc68e rdma_alloc_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x15b64d2d ib_mad_kernel_rmpp_agent EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x184621a4 ib_get_rdma_header_version -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x18991990 ib_mr_pool_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x19983f67 ib_modify_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1a76d92b ib_set_vf_link_state -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1ac4ddeb rdma_get_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x199622c1 ib_find_exact_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x19cf2517 ib_get_vf_stats +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1a14a88c ibdev_notice +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1aab806c ib_reg_user_mr EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1b037462 __rdma_block_iter_start -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1ba3546e ib_post_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1ccad841 rdma_user_mmap_entry_get_pgoff -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1d585ba1 ib_attach_mcast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1fa466ed ib_rdmacg_try_charge -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x202a20e7 rdma_restrack_new -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x215e1ca1 ib_set_device_ops +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1b1f260a ib_open_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1c412072 ib_register_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2039f397 ib_register_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x205971ba ibdev_emerg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x22f3cd66 ib_dereg_mr_user EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x22f3cf93 ib_pack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2736846e rdma_user_mmap_entry_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x281d1d3f rdma_init_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x28a324e1 rdma_roce_rescan_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x28e52ca6 ib_init_ah_from_mcmember -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x29e3eca6 ib_create_qp_kernel -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x29eaff1d rdma_restrack_get_byid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2a5ba148 rdma_destroy_ah_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2ed3eef4 rdma_link_register +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x23354764 ib_modify_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x23b6c16e rdma_modify_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x27dc37b3 ib_dealloc_xrcd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x28b4fc03 ibdev_printk +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x29024809 rdma_query_gid_table +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2b2e4d72 rdma_nl_put_driver_u32_hex +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2b5f1aab rdma_rw_ctx_post +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2c115d85 rdma_rw_mr_factor +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2cbd5153 rdma_nl_put_driver_u64_hex +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2eb5f44c ib_sg_to_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2f909c29 ib_qp_usecnt_dec EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2fc70b9e ib_get_gids_from_rdma_hdr EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x305e5701 rdma_addr_size_kss -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x30ec4548 ib_init_ah_attr_from_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x31255eca ib_modify_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x386a2390 ib_find_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x39be5ccd rdma_nl_unicast_wait -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3c5c95a8 ib_port_register_client_groups -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3cb32d7b rdma_restrack_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3d1a7424 ib_get_device_fw_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x32c9b60b ib_free_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x32efb925 ib_set_vf_link_state +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x32fa55d0 ib_port_register_client_groups +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x33e21bbd ib_get_eth_speed +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x34ebd6cf ib_query_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3702442b rdma_rw_ctx_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3d4a3df3 ib_free_recv_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3d4fe0a6 rdma_user_mmap_entry_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3f3aceae ib_sa_path_rec_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3f8794e4 ib_sa_get_mcmember_rec EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3fc2387c ib_ud_header_unpack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x405874b2 ib_rdmacg_uncharge -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x418da27a ib_modify_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x400edef3 rdma_get_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x40b2be0d ib_free_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x40c16c6c ib_rdmacg_try_charge +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x42d7611e rdma_set_cq_moderation +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x43145853 rdma_nl_multicast 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 0x440c8bca rdma_restrack_parent_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4498a9d2 rdma_rw_ctx_destroy EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x45fb8985 rdma_nl_chk_listeners -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4773d24f ib_get_vf_guid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x47cb400b ib_mr_pool_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4ad4a696 ib_drain_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4bda9435 rdma_put_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x48429399 rdma_query_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x48d1a488 ib_unregister_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4ad7b9ec rdma_restrack_del +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4b625e45 ib_advise_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4c657814 rdma_user_mmap_entry_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4cd61694 ib_create_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 0x4ebbd1ca rdma_find_gid_by_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4f30c063 rdma_restrack_set_name -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4f5d4b88 ib_alloc_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4fa8d1b3 ib_device_get_by_name -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5206d8e5 ib_destroy_srq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x55315d64 ib_dealloc_xrcd_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x558949b2 ib_get_rmpp_segment +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4f93d1c0 ib_modify_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4ff9660a ibdev_alert +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x54036c06 rdma_nl_register +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x54557625 rdma_nl_stat_hwcounter_entry +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x548e6e4c ibdev_info +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x549cf93b ib_mr_pool_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x55ae66b3 ib_check_mr_status EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x55bb02f3 ib_cache_gid_type_str -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x561df82e rdma_query_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x58c3906f ib_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x59c29792 ib_mr_pool_destroy -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x59d93b47 ib_detach_mcast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5cb28f71 rdma_user_mmap_entry_insert -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5d7616f0 ib_free_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5e3e9a8f ib_modify_qp_with_udata -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5f2bb4ba rdma_query_gid_table -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x60e086b0 rdma_rw_ctx_signature_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x572323ed ib_init_ah_from_mcmember +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x58e040e8 ib_sa_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x59b7d72b ib_detach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5a308a48 rdma_nl_put_driver_u64 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5ae64578 ib_port_sysfs_get_ibdev_kobj +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5c4dd5d6 __ib_alloc_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5cd1e8bc rdma_find_gid_by_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5e590c5e ib_close_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5eaa1c4b _ib_alloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5ffe700b rdma_translate_ip EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x613b1e2e ib_is_mad_class_rmpp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x61784ad5 ib_dereg_mr_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x61786b36 rdma_restrack_parent_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6144fa72 ibdev_err EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x61d24c52 ib_rate_to_mbps -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x623c16b8 rdma_move_grh_sgid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x652991a1 ib_open_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x658456cd ib_set_client_data -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x663f9c96 ib_get_cached_lmc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x671cbdea rdma_user_mmap_entry_insert_range -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x692a2cc6 ib_get_cached_port_state -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x69b17dfc rdma_alloc_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b2654e0 rdma_link_unregister -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b32ea27 rdma_create_user_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x628cae1b rdma_user_mmap_entry_remove +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x636e6088 ib_destroy_cq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x64216791 roce_gid_type_mask_support +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x666bc4da ib_mr_pool_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x68018275 ib_mr_pool_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x69bbde12 rdma_addr_cancel +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b7773fa ibdev_crit EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b958320 ib_ud_ip4_csum -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6c6747f4 ib_free_recv_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6d2a9106 ib_close_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6db038fd rdma_nl_put_driver_u64 -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6df8c3d2 ib_modify_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6e91c818 ib_dma_virt_map_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6cba3774 ib_dma_virt_map_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6d646f00 ibdev_warn +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6d91f4e3 rdma_create_user_ah EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f3614b6 rdma_is_zero_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7075ac93 ib_check_mr_status -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x71bad01d ib_process_cq_direct -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x72763298 ibdev_printk EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x73baf9a2 ib_modify_qp_is_ok -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x73e45172 rdma_user_mmap_entry_remove -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x73ec6607 ib_destroy_qp_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x750c68b8 rdma_query_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x754ff64e ib_unregister_device_queued +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x74094b4b ib_create_qp_kernel +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x753e6acb ib_drain_rq EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x75a729a0 rdma_nl_unregister -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x772ba50b ib_sg_to_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x761e6131 rdma_destroy_ah_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x76d65a00 __ib_create_cq EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x787ccc4c ib_get_mad_data_offset -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7a747e1c ibdev_alert -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7d18632b rdma_find_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8178f0eb ib_mad_kernel_rmpp_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x81df84f9 rdma_copy_src_l2_addr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x83fa2e99 ib_unregister_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x78d98992 rdma_restrack_get_byid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7c6424a6 ib_alloc_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7f059b5b ib_port_unregister_client_groups +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7faaebe2 ib_create_qp_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x803e7c5c ibnl_put_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x82e07989 ib_cq_pool_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x835a002f ib_modify_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x83df71dd ib_modify_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x84c33d65 ib_rdmacg_uncharge +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x86958e44 rdma_nl_unicast_wait EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x86cef180 rdma_addr_size -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x874fd9db rdma_replace_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x895ad864 ib_device_get_by_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x89734638 __ib_alloc_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8b1d1e8b ib_qp_usecnt_inc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8b4bc09a ib_drain_rq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8b8b1e9e ib_drain_sq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8dd9c442 rdma_umap_priv_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x887f7ebf ib_get_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8aaf1b54 ibnl_put_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8da672e9 rdma_init_netdev EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8e7528da __rdma_block_iter_next -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8ef42087 ib_find_exact_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8f590472 ib_create_wq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8fe578d0 rdma_read_gid_attr_ndev_rcu -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9001c0d3 rdma_modify_ah EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90e807c7 ib_cache_gid_parse_type_str -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x91136d54 rdma_port_get_link_layer -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x945995ef ib_create_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x951814d5 ib_reg_user_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x962894a9 roce_gid_type_mask_support -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x96c67685 ib_query_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x978a568c _ib_alloc_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x98a4c5f1 ib_get_cached_subnet_prefix -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9bbecf63 ib_get_vf_config -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9c4bd231 ib_unregister_mad_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9d20bf31 ib_free_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9f8296e5 rdma_user_mmap_io -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa0601bbc ibdev_err -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa19593a4 ibdev_emerg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90ec4e01 ib_destroy_qp_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x926e2685 rdma_restrack_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x95831671 ib_dealloc_pd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x96a289c6 ib_dispatch_event +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x96fb215e rdma_rw_ctx_destroy_signature +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x97397363 rdma_hold_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x97830729 ib_unregister_device_and_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x97bf90d6 ib_port_immutable_read +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x989cd9b7 rdma_copy_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9907e0f3 rdma_move_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x99b30511 rdma_link_unregister +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9ad13e80 ib_get_cached_port_state +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9c4c3336 rdma_restrack_set_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9d2916bf ib_sa_guid_info_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9dd1189e ib_create_qp_security +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9e5e371d rdma_link_register EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa432baf6 ib_unpack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa495a9fe ib_map_mr_sg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa552b6b4 ib_device_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa63fa720 ib_map_mr_sg_pi -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa6e6494e __ib_alloc_cq_any -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa7ab4d92 ib_get_net_dev_by_params -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa80e0203 ib_advise_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa902fdac ib_query_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa96283fd ib_destroy_cq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xac945cd5 ib_create_ah_from_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xadebbd44 ib_qp_usecnt_dec -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae550006 rdma_restrack_add +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa449a59c ib_destroy_wq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa54a1815 ib_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa6d4e60e rdma_copy_src_l2_addr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa7240926 ib_get_vf_guid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa8223c86 rdma_port_get_link_layer +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa875cb1f ib_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaa156536 __ib_alloc_cq_any EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae956dce ib_rate_to_mult -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaff7d329 rdma_hold_gid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb1c66650 rdma_restrack_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb2f69117 rdma_nl_unicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb182f26f ib_dealloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb1f1cd39 rdma_query_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb2532a24 rdma_nl_unicast EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb36e4148 ib_sa_pack_path -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb5fd366c ib_set_vf_guid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb6338bcd ibdev_notice -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb678f30a rdma_create_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb5310be4 ib_get_device_fw_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb6150ecc ib_post_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb62f6a0a ib_get_cached_subnet_prefix +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb6821cb0 ib_query_port EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb7852a05 ib_ud_header_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb99f45c9 rdma_rw_ctx_destroy_signature -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbaeb151d rdma_addr_cancel -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbb10ab17 ib_create_srq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbb37ba9a ib_destroy_wq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbc0f3451 rdma_nl_put_driver_u32 -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbe18b575 ib_sa_get_mcmember_rec -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc36ea857 __ib_alloc_pd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc4d48e5f ib_unregister_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc6dbaf03 __ib_create_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc71355b4 ib_dealloc_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc77b9a89 ib_device_set_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc961a513 ib_find_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcb79dc4c ib_resize_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcb96eb9c ibdev_info -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xccf31cd6 ib_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcdeecc3b rdma_dev_access_netns -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xce2d2a4d ib_cq_pool_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb8843c5c ib_destroy_srq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb98efe94 rdma_umap_priv_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbae95901 ib_find_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbc0864f9 rdma_dev_access_netns +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc174bc1c rdma_user_mmap_entry_insert +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc1a83f84 rdma_user_mmap_entry_insert_range +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc1d56cf1 ib_get_net_dev_by_params +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc4650bc9 ib_get_cached_lmc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc5570635 ib_create_wq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc5aee686 rdma_user_mmap_io +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc5fd0f76 ib_map_mr_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc7ea7826 ib_alloc_mr_integrity +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xca8ee3e7 ib_modify_qp_with_udata +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcb69c018 ib_get_rmpp_segment +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcb913aa7 rdma_move_grh_sgid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcb959022 ib_find_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcdbca7fb rdma_restrack_count +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xce4f3078 ib_unregister_device EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcfbc053b ib_unregister_driver -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcff5b5a7 rdma_restrack_del -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd085b92a rdma_user_mmap_entry_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd091dcb8 ibdev_crit -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd0dba76b rdma_rw_ctx_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd1286a93 ib_get_vf_stats -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd18000f2 ib_register_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd313d67e ibnl_put_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd4bcb744 rdma_nl_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd171a49e rdma_restrack_add +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd1721fc3 rdma_user_mmap_entry_get_pgoff +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd28ae724 ib_init_ah_attr_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd34d3b71 rdma_read_gid_hw_context +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd61b2046 ib_attach_mcast EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd6636ca6 rdma_addr_size_in6 -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd67c2eaf rdma_set_cq_moderation -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd738a60d ib_dispatch_event -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd968f8ad ib_create_qp_security +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd9bbb63b rdma_destroy_ah_attr EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda0d50ec ib_sa_cancel_query -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda175440 ib_find_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda38878a ib_get_eth_speed -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda555916 rdma_rw_ctx_post -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdbc13b5e ib_init_ah_attr_from_path -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdc86b48b ib_sa_path_rec_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdc87c2f0 ib_sa_guid_info_rec_query -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdd7ff504 ibdev_warn -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xddb379dd ib_register_mad_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe0f6beb2 rdma_rw_mr_factor -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe53f78aa ib_port_unregister_client_groups +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda82dfae ib_drain_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe1d828d4 ib_set_vf_guid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe23a5aa3 ib_device_get_by_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe39c2a59 ib_set_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe427180e rdma_restrack_put EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5840ec6 ib_wc_status_msg EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5a78c1e ib_sa_unpack_path -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe6adecf9 rdma_nl_put_driver_string -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe75fc002 ib_cq_pool_put EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe7b52e5f mult_to_ib_rate -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe95721a5 rdma_move_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9ba7ac6 ib_port_immutable_read -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9d77c32 ib_sa_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe870bc70 rdma_nl_put_driver_string +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9bfa50a ib_mr_pool_init EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9e799fc ib_ud_header_pack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xee004849 ib_register_event_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xef6b3eab rdma_rw_ctx_destroy -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf0ef8013 ib_port_sysfs_get_ibdev_kobj -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf1373415 rdma_copy_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf23dadd6 ib_alloc_xrcd_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf3f1abbc rdma_rw_ctx_wrs +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeb3f5cf6 rdma_read_gid_attr_ndev_rcu +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeb66d030 ib_register_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeb8ad16e rdma_restrack_new +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xebb94c69 ib_unregister_device_queued +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xef307c63 ib_query_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeff9e289 ib_unregister_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf0e4fbe4 ib_qp_usecnt_inc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf10bb739 ib_process_cq_direct +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf160dfd4 rdma_put_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf3770f56 ib_device_set_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf3bfaa0f ib_alloc_xrcd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf4cfeef9 rdma_resolve_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf5295101 ib_resize_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf53af94b rdma_create_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf55e91e2 ib_device_put EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf5dedb30 rdma_node_get_transport -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf6e990d0 rdma_read_gid_l2_fields +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf61e66bc ib_device_get_by_netdev EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf6ed3334 ib_event_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfa73babd ib_get_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfa9a3279 rdma_nl_put_driver_u32_hex -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x051d53e2 ib_umem_get -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1a1fdf5e ib_umem_odp_alloc_implicit +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf74d1f27 ib_map_mr_sg_pi +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf7c55ee5 ib_drain_sq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf7e7a278 __ib_alloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfd1f67ea ib_init_ah_attr_from_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfde7e781 ib_modify_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfed0beb8 ib_create_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x02fb9459 ib_umem_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x075c4b34 ib_umem_dmabuf_unmap_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x10ab1ca5 _uverbs_get_const_signed +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1242b311 ib_uverbs_get_ucontext_file EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1b54bd5d ib_copy_path_rec_from_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x223bee16 ib_umem_copy_from -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x266b69de flow_resources_add -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x28f11ddc ib_register_peer_memory_client -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x304184c7 uverbs_copy_to -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x328b36bc ib_umem_odp_alloc_child -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x343c205c ib_copy_qp_attr_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x368da79f uverbs_get_flags32 -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x47a1341e ib_copy_ah_attr_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x534402a4 ib_umem_activate_invalidation_notifier -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x567035ef flow_resources_alloc +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1cce04b8 ib_copy_ah_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x215a06a6 ib_umem_dmabuf_map_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x2ac9acd3 flow_resources_add +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x2d8feaaa _uverbs_get_const_unsigned +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x406ecf48 ib_umem_stop_invalidation_notifier +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x427ca142 _uverbs_alloc +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x48fea115 uverbs_copy_to_struct_or_zero +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x54e364d8 ib_umem_odp_alloc_child +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5c069f44 ib_umem_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x6170b8c6 uverbs_destroy_def_handler EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x63057f4b ib_copy_path_rec_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x6c2b8978 ib_umem_dmabuf_get -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x6d1866d3 ib_umem_odp_unmap_dma_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x82ad0f03 ib_umem_odp_map_dma_and_lock -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x84151213 ib_umem_odp_get -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x85d191db uverbs_uobject_put -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x88605ac7 uverbs_idr_class -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x8e4d90bc uverbs_copy_to_struct_or_zero -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x9d77f52c ib_umem_dmabuf_map_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x9ff15808 ib_umem_release -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa4ed7632 uverbs_get_flags64 -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xab9a3174 _uverbs_alloc -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb1534c48 ib_umem_stop_invalidation_notifier -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb39f249a uverbs_destroy_def_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb7bc10a2 ib_umem_find_best_pgsz -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xbb024ee3 _uverbs_get_const_signed +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x64d00bd7 uverbs_get_flags32 +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x6a6bac56 ib_umem_get_peer +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x73a66548 ib_copy_qp_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x8e312ba5 uverbs_fd_class +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x8eae6003 uverbs_copy_to +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x90b36fab ib_umem_odp_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x94ae161c uverbs_uobject_put +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xadf50ddb flow_resources_alloc +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb88fac6d uverbs_uobject_fd_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb996a578 uverbs_finalize_uobj_create EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xbde5c050 ib_unregister_peer_memory_client -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xca517054 uverbs_uobject_fd_release -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xcfffb701 ib_uverbs_flow_resources_free -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe64810ab _uverbs_get_const_unsigned -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe83a88e6 ib_umem_get_peer -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xedc60f4b ib_umem_odp_release -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf4f2d39a ib_umem_dmabuf_unmap_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf8fb39d9 uverbs_fd_class -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf9fb1b29 ib_uverbs_get_ucontext_file -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xffcf41d5 uverbs_finalize_uobj_create -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x2f45c227 iw_cm_listen -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x3e671dec iw_cm_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x47f9f51b iw_cm_accept -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x5ae8663e iw_cm_disconnect -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x60e0513d iw_create_cm_id -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x9f9dd2ed iw_cm_connect -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xbeb915c0 iw_cm_reject -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xeafa5ede iw_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xbe1cf6b3 ib_uverbs_flow_resources_free +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc3c0f369 ib_register_peer_memory_client +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xcd4ae81a ib_umem_dmabuf_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd0b42555 ib_umem_odp_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd1915c40 ib_umem_copy_from +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd1a5adc2 uverbs_idr_class +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd75b0f7e uverbs_get_flags64 +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe410cfe3 ib_umem_odp_alloc_implicit +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe5aa9e24 ib_umem_find_best_pgsz +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe5be0ff1 ib_umem_odp_unmap_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe9d80475 ib_umem_activate_invalidation_notifier +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xebaa14be ib_umem_odp_map_dma_and_lock +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x11a8454f iw_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x11f711d9 iw_cm_reject +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x3f22d8c0 iw_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x71f1ceaa iw_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xafb88ef0 iw_cm_disconnect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xb3514624 iw_cm_connect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xca5afd74 iw_cm_accept +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xcfb516c5 iw_cm_listen EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf3df871f iwcm_reject_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x08ef18cd rdma_consumer_reject_data -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x12d816ce rdma_accept_ece -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1ca48834 rdma_set_afonly -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x231fd5f2 rdma_unlock_handler -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2cfcc758 rdma_bind_addr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x36626c17 rdma_resolve_addr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x41d69999 rdma_destroy_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x46c76b4d rdma_res_to_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x528c196b rdma_lock_handler -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6b61a45b rdma_set_ack_timeout -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x80705504 rdma_set_min_rnr_timer -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x83cc16b6 rdma_disconnect -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x840b60f4 rdma_create_user_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x84a3c5f4 rdma_set_service_type +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x06df5d82 rdma_read_gids +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x13ad27bf rdma_leave_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x166c7a89 rdma_set_reuseaddr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1bcdbb82 rdma_set_afonly +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1d82ab6c rdma_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3254624c rdma_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3482a3d9 rdma_res_to_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3c08ebab rdma_lock_handler +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x562472bc rdma_destroy_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x634414b3 rdma_create_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6aded8c1 rdma_get_service_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x71272cd7 rdma_consumer_reject_data +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x784988dc rdma_accept_ece +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7fddd49a rdma_notify +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x80842738 rdma_resolve_route +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8989e7db rdma_set_ack_timeout +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8de44505 rdma_bind_addr EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x93432978 rdma_destroy_qp -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x94421698 rdma_leave_multicast -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9b4698b1 rdma_reject_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa34cebab rdma_iw_cm_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb74a6431 rdma_join_multicast -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xbad07521 __rdma_create_kernel_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xbafe9aa3 rdma_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc74732b2 rdma_get_service_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc74e734b rdma_accept -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc99d050a rdma_notify -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd0e790b9 rdma_resolve_route -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd97ae4d7 rdma_connect_locked -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xda7b425d rdma_create_qp -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xdad7585d rdma_listen -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xdb16f222 rdma_set_ib_path -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xde00b757 rdma_read_gids -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xecfe6027 rdma_set_reuseaddr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf87c6e0e rdma_reject -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xfb87ccbb rdma_connect -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xffe10417 rdma_connect_ece -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x057442d4 rvt_mcast_find -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x0b498162 rvt_init_port +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x93ac8057 rdma_unlock_handler +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9a1c2b99 rdma_connect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb5141dcd rdma_set_ib_path +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb53e43d8 rdma_iw_cm_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb99f4a7c rdma_listen +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xbc6ec400 rdma_create_user_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xbc9058fa __rdma_create_kernel_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc3e790b1 rdma_connect_ece +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xcc06e40b rdma_resolve_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd0eb0644 rdma_accept +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd8cf8f30 rdma_set_min_rnr_timer +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd9586701 rdma_disconnect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xdb0a5f13 rdma_connect_locked +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xdfb74177 rdma_set_service_type +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf092246f rdma_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf52ae931 rdma_reject_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xfbaacedd rdma_reject +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x04d99bc9 rvt_register_device EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x0e385842 ib_rvt_state_ops -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x1422a3f9 rvt_lkey_ok -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x158ead16 rvt_unregister_device -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x1da76f2f rvt_restart_sge -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x1fd945c3 rvt_add_rnr_timer -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x2745542d rvt_get_credit -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x27d57df6 rvt_rkey_ok -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x3328ed49 rvt_qp_iter_next -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x33992384 rvt_register_device -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x352f6efa rvt_alloc_device -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x3e2da482 rvt_send_complete -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x46fdabf3 rvt_fast_reg_mr -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x4df94819 rvt_check_ah -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x5181ebd3 rvt_cq_enter -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x5af3f78f rvt_del_timers_sync -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x678518be rvt_invalidate_rkey -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x6ef49c14 rvt_error_qp -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x7c15968a rvt_dealloc_device -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x7c94bb95 rvt_compute_aeth -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x816fd828 rvt_qp_iter_init -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x928bca13 rvt_stop_rc_timers -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x944545ca rvt_get_rwqe -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xa2bb5e96 rvt_rc_error -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xaf2719f1 rvt_comm_est -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xb51a9744 rvt_ruc_loopback +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x119cfb31 rvt_unregister_device +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x14a55cce rvt_get_credit +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x181bd0eb rvt_ruc_loopback +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x1b80b6b3 rvt_qp_iter +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x242fdf35 rvt_rc_error +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x4aa75be5 rvt_qp_iter_next +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x5388dd76 rvt_error_qp +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x62ad4505 rvt_alloc_device +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x699f54ee rvt_rkey_ok +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x854c36c5 rvt_dealloc_device +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x8ce2935a rvt_compute_aeth +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x9bf9c1b2 rvt_init_port +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xa3026a1b rvt_check_ah +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xa855cb78 rvt_fast_reg_mr +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xa900675f rvt_cq_enter +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xa93e0c4e rvt_send_complete +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xb173c23e rvt_lkey_ok +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xb4b38c71 rvt_restart_sge EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xb7ee98b2 rvt_rc_rnr_retry -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xc3278b75 rvt_copy_sge -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xe37714ac rvt_add_retry_timer_ext -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xe42b14e8 rvt_qp_iter +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xcb06f2c9 rvt_qp_iter_init +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xcb0ff32b rvt_stop_rc_timers +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xce393e87 rvt_invalidate_rkey +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xce8ecde6 rvt_del_timers_sync +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xd63d2b96 rvt_add_rnr_timer +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xd71535e5 rvt_mcast_find +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xdba8d277 rvt_comm_est +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xe929550e rvt_add_retry_timer_ext EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xe9cf3e43 rvt_rnr_tbl_to_usec -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x155795a3 rtrs_clt_put_permit -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x18233677 rtrs_clt_open -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x39982192 rtrs_clt_get_permit -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x74abde7a rtrs_clt_close -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x81c47379 rtrs_clt_query -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x9e15a45a rtrs_clt_request -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xa0c17418 rtrs_clt_rdma_cq_direct +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xf617a19c rvt_copy_sge +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xf6e09f5f rvt_get_rwqe +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x183e5bbd rtrs_clt_query +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x24d230cc rtrs_clt_close +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x428b07c3 rtrs_clt_request +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x73ba0639 rtrs_clt_open +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x7408af60 rtrs_clt_rdma_cq_direct +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xb7f38349 rtrs_clt_put_permit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xb94ce340 rtrs_clt_get_permit EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x242a8646 rtrs_addr_to_str -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x2e278d58 rtrs_ib_dev_find_or_add -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x418739d4 rtrs_rdma_dev_pd_deinit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x5ae97c44 rtrs_rdma_dev_pd_deinit EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x5b01e41d sockaddr_to_str -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x681c2025 rtrs_ib_dev_put +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x6535977c rtrs_rdma_dev_pd_init +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x6b46981e rtrs_ib_dev_find_or_add EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x887302f3 rtrs_addr_to_sockaddr -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xc3a7feff rtrs_rdma_dev_pd_init -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x10d71e94 rtrs_srv_open -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x8f4ec279 rtrs_srv_get_sess_name -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x9a7145a2 rtrs_srv_get_queue_depth -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xa0f3ab82 rtrs_srv_set_sess_priv -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xd7c9206c rtrs_srv_close -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xdbb3545a rtrs_srv_resp_rdma -EXPORT_SYMBOL drivers/input/gameport/gameport 0x0064300a __gameport_register_port -EXPORT_SYMBOL drivers/input/gameport/gameport 0x06d854f0 gameport_open -EXPORT_SYMBOL drivers/input/gameport/gameport 0x1d9f6af5 gameport_stop_polling -EXPORT_SYMBOL drivers/input/gameport/gameport 0x3b507446 gameport_unregister_driver -EXPORT_SYMBOL drivers/input/gameport/gameport 0x4d941627 gameport_close -EXPORT_SYMBOL drivers/input/gameport/gameport 0x69e2d397 gameport_set_phys -EXPORT_SYMBOL drivers/input/gameport/gameport 0x80ab8302 gameport_start_polling -EXPORT_SYMBOL drivers/input/gameport/gameport 0xd7da57d0 gameport_unregister_port -EXPORT_SYMBOL drivers/input/gameport/gameport 0xf2d7cd7e __gameport_register_driver -EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x10dc4b82 iforce_process_packet -EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x386e96ca iforce_init_device -EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0xe0158e04 iforce_send_packet -EXPORT_SYMBOL drivers/input/matrix-keymap 0x80ee02c7 matrix_keypad_build_keymap -EXPORT_SYMBOL drivers/input/misc/ad714x 0x0a579705 ad714x_probe -EXPORT_SYMBOL drivers/input/misc/ad714x 0x8e52182b ad714x_enable -EXPORT_SYMBOL drivers/input/misc/ad714x 0xa6240eee ad714x_disable -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x1d2f26b2 cma3000_init +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xfcefbf7c rtrs_ib_dev_put +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x080f450d rtrs_srv_get_queue_depth +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x09cf551a rtrs_srv_close +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x4ef45591 rtrs_srv_set_sess_priv +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x83af2521 rtrs_srv_open +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xaf031434 rtrs_srv_get_sess_name +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xb41a17d2 rtrs_srv_resp_rdma +EXPORT_SYMBOL drivers/input/gameport/gameport 0x41963511 gameport_set_phys +EXPORT_SYMBOL drivers/input/gameport/gameport 0x44989120 gameport_unregister_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0x617ca43c gameport_start_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0x839e2899 __gameport_register_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0x95948d5a gameport_unregister_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0x998af767 gameport_open +EXPORT_SYMBOL drivers/input/gameport/gameport 0x9a7ef437 gameport_stop_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0xb1cb18ff gameport_close +EXPORT_SYMBOL drivers/input/gameport/gameport 0xf9f54ccd __gameport_register_port +EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x434ed501 iforce_send_packet +EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x5f0f4c47 iforce_process_packet +EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x7a43e6f3 iforce_init_device +EXPORT_SYMBOL drivers/input/matrix-keymap 0x7cb5d7b1 matrix_keypad_build_keymap +EXPORT_SYMBOL drivers/input/misc/ad714x 0x659d5c82 ad714x_enable +EXPORT_SYMBOL drivers/input/misc/ad714x 0x6d5ab998 ad714x_disable +EXPORT_SYMBOL drivers/input/misc/ad714x 0xb64a53a5 ad714x_probe +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x771d1996 cma3000_init EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x892d76b2 cma3000_resume EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x89d9444e cma3000_exit EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0xca3f100a cma3000_suspend -EXPORT_SYMBOL drivers/input/rmi4/rmi_core 0x0608b025 rmi_unregister_transport_device -EXPORT_SYMBOL drivers/input/sparse-keymap 0x25ce52b7 sparse_keymap_report_entry -EXPORT_SYMBOL drivers/input/sparse-keymap 0x4e8524e7 sparse_keymap_entry_from_scancode -EXPORT_SYMBOL drivers/input/sparse-keymap 0x846226c9 sparse_keymap_entry_from_keycode -EXPORT_SYMBOL drivers/input/sparse-keymap 0xcfa98420 sparse_keymap_setup -EXPORT_SYMBOL drivers/input/sparse-keymap 0xeaad855a sparse_keymap_report_event -EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x4e9c5f14 ad7879_pm_ops -EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0xca50bd87 ad7879_probe -EXPORT_SYMBOL drivers/iommu/amd/iommu_v2 0x34e1c2f6 amd_iommu_free_device -EXPORT_SYMBOL drivers/iommu/amd/iommu_v2 0x5a3be475 amd_iommu_set_invalidate_ctx_cb -EXPORT_SYMBOL drivers/iommu/amd/iommu_v2 0x70169e64 amd_iommu_init_device -EXPORT_SYMBOL drivers/iommu/amd/iommu_v2 0xc079f18c amd_iommu_unbind_pasid -EXPORT_SYMBOL drivers/iommu/amd/iommu_v2 0xd35862ae amd_iommu_set_invalid_ppr_cb -EXPORT_SYMBOL drivers/iommu/amd/iommu_v2 0xd365a748 amd_iommu_bind_pasid -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x14456af4 capi_ctr_handle_message -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x41176ecd attach_capi_ctr -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7db0acf3 capi_ctr_down -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xcaa6d29b capi_ctr_ready -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe948346b detach_capi_ctr +EXPORT_SYMBOL drivers/input/rmi4/rmi_core 0x264df546 rmi_unregister_transport_device +EXPORT_SYMBOL drivers/input/sparse-keymap 0x0907477a sparse_keymap_entry_from_keycode +EXPORT_SYMBOL drivers/input/sparse-keymap 0x0fde9bfd sparse_keymap_setup +EXPORT_SYMBOL drivers/input/sparse-keymap 0x4c755654 sparse_keymap_entry_from_scancode +EXPORT_SYMBOL drivers/input/sparse-keymap 0x5a024a5f sparse_keymap_report_event +EXPORT_SYMBOL drivers/input/sparse-keymap 0xb33d5483 sparse_keymap_report_entry +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x0fa6da88 ad7879_probe +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x28b6f031 ad7879_pm_ops +EXPORT_SYMBOL drivers/iommu/amd/iommu_v2 0x6ca6ee11 amd_iommu_bind_pasid +EXPORT_SYMBOL drivers/iommu/amd/iommu_v2 0xbe885079 amd_iommu_unbind_pasid +EXPORT_SYMBOL drivers/iommu/amd/iommu_v2 0xbf74b885 amd_iommu_init_device +EXPORT_SYMBOL drivers/iommu/amd/iommu_v2 0xcd38e50e amd_iommu_free_device +EXPORT_SYMBOL drivers/iommu/amd/iommu_v2 0xd0e22f66 amd_iommu_set_invalidate_ctx_cb +EXPORT_SYMBOL drivers/iommu/amd/iommu_v2 0xef98e734 amd_iommu_set_invalid_ppr_cb +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x1a95d195 capi_ctr_handle_message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x456d6ad3 detach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x925e92d3 capi_ctr_down +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xc14641e5 attach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xc5cef13d 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 0x030759a8 mISDNisac_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x74454513 mISDNipac_irq -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x82848828 mISDNisac_irq -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xdee714e1 mISDNipac_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x5083d85e mISDNisar_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0xaeb60184 mISDNisar_irq -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x03944b94 bchannel_get_rxbuf +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x9bee8f49 mISDNisac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xa7450272 mISDNipac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xc269a152 mISDNisac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xffcff59c mISDNipac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x0719df00 mISDNisar_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0xb1af2557 mISDNisar_init EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x03a68066 mISDN_FsmRestartTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x196190e0 mISDN_clear_bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x22523b66 recv_Bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x11eb8fc6 mISDNDevName4ch +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x186ae9d9 recv_Dchannel_skb 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 0x2b0d9803 recv_Dchannel EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x30d25b0d mISDN_FsmDelTimer EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x313b1fde mISDN_FsmAddTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x3b5268f9 mISDN_freebchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x3b544b79 mISDN_unregister_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x3f09558e create_l1 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x4525a832 bchannel_get_rxbuf EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x50c2230c mISDN_FsmChangeState -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x526a4887 bchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x51543307 mISDN_clear_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x5299e0d4 mISDN_unregister_device EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x588886a6 l1_event +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x5e6eae5e bchannel_senddata EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6047df40 mISDN_FsmInitTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7ae74cc1 recv_Echannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x82bc712e mISDN_unregister_device -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8c742788 mISDN_unregister_Bprotocol -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x90f9c816 recv_Bchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7ee6b27c get_next_bframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x818ee6ca queue_ch_frame +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x84917d3d mISDN_initbchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x939146b1 recv_Echannel EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9c928457 mISDN_FsmNew -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa56d2ba3 mISDN_register_Bprotocol -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xab1b4ec2 get_next_dframe -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xac691266 mISDN_initdchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb1a672dc mISDN_ctrl_bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb664662c mISDN_initbchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9ee58b13 get_next_dframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9f95dfe0 mISDN_ctrl_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb0371f42 mISDN_initdchannel EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc3401729 mISDN_register_clock -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xcc8e23a5 queue_ch_frame -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd130a1d5 get_next_bframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc45e8771 mISDN_freebchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd19457ca mISDN_freedchannel EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd285995f mISDN_clock_get +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd3b02768 mISDN_register_Bprotocol EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd5145151 mISDN_FsmEvent -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd5b99436 recv_Dchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd8c4c932 create_l1 EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe8f617eb mISDN_unregister_clock -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe9a96dab mISDNDevName4ch -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xea3b7acf recv_Dchannel_skb -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xeb85d3de dchannel_senddata -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf9429e11 mISDN_freedchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xfb5c75a9 mISDN_register_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xea3d8073 mISDN_register_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf3d17e98 recv_Bchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf6aaec94 recv_Bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xfee758e6 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 EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xb98308d8 mISDN_dsp_element_register EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0x54a12ec4 ti_lmu_common_set_ramp -EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0x9727028b ti_lmu_common_get_ramp_params -EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0xab954f93 ti_lmu_common_get_brt_res +EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0x78fc9b3b ti_lmu_common_get_ramp_params +EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0xaf26f646 ti_lmu_common_get_brt_res EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0xced72aae ti_lmu_common_set_brightness -EXPORT_SYMBOL drivers/md/dm-log 0x0ef47162 dm_dirty_log_destroy -EXPORT_SYMBOL drivers/md/dm-log 0x1a3cb69c dm_dirty_log_create -EXPORT_SYMBOL drivers/md/dm-log 0x669edbfa dm_dirty_log_type_register -EXPORT_SYMBOL drivers/md/dm-log 0xaf6b52dd dm_dirty_log_type_unregister -EXPORT_SYMBOL drivers/md/dm-snapshot 0x1edcd6d0 dm_exception_store_create -EXPORT_SYMBOL drivers/md/dm-snapshot 0x55e12f51 dm_exception_store_destroy -EXPORT_SYMBOL drivers/md/dm-snapshot 0x60a4b099 dm_exception_store_type_unregister -EXPORT_SYMBOL drivers/md/dm-snapshot 0x9a2f806d dm_snap_cow -EXPORT_SYMBOL drivers/md/dm-snapshot 0xd15c37f5 dm_snap_origin -EXPORT_SYMBOL drivers/md/dm-snapshot 0xd558087b dm_exception_store_type_register -EXPORT_SYMBOL drivers/md/raid456 0x2fa1e206 r5c_journal_mode_set -EXPORT_SYMBOL drivers/md/raid456 0x60f4920e raid5_set_cache_size -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x05cf51b7 flexcop_device_exit -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x1260632c flexcop_device_kmalloc -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x3089b663 flexcop_device_kfree -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x44ef984c flexcop_device_initialize -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x4f4f9f00 flexcop_dump_reg -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x52d278ed flexcop_sram_set_dest -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x774e143f flexcop_sram_ctrl -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x9b350bfa flexcop_i2c_request -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x9f588db5 flexcop_pid_feed_control -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xa276d38c flexcop_wan_set_speed -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xc4f2e79a flexcop_pass_dmx_packets -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xcbb70b07 flexcop_eeprom_check_mac_addr -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xfb26ff0c flexcop_pass_dmx_data +EXPORT_SYMBOL drivers/md/dm-log 0x39026bbf dm_dirty_log_create +EXPORT_SYMBOL drivers/md/dm-log 0x8b5a63e1 dm_dirty_log_destroy +EXPORT_SYMBOL drivers/md/dm-log 0xb48eb628 dm_dirty_log_type_register +EXPORT_SYMBOL drivers/md/dm-log 0xf775254d dm_dirty_log_type_unregister +EXPORT_SYMBOL drivers/md/dm-snapshot 0x2e2a8017 dm_snap_cow +EXPORT_SYMBOL drivers/md/dm-snapshot 0x9d989cba dm_exception_store_destroy +EXPORT_SYMBOL drivers/md/dm-snapshot 0xce09455f dm_exception_store_create +EXPORT_SYMBOL drivers/md/dm-snapshot 0xd4767d6f dm_exception_store_type_unregister +EXPORT_SYMBOL drivers/md/dm-snapshot 0xf69d2968 dm_exception_store_type_register +EXPORT_SYMBOL drivers/md/dm-snapshot 0xf8502e48 dm_snap_origin +EXPORT_SYMBOL drivers/md/raid456 0x2abdceac r5c_journal_mode_set +EXPORT_SYMBOL drivers/md/raid456 0xe3b05caf raid5_set_cache_size +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x1f2d9620 flexcop_i2c_request +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x226b8e0f flexcop_pass_dmx_packets +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x36971da5 flexcop_device_exit +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x52ba43c2 flexcop_dump_reg +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x7a063869 flexcop_wan_set_speed +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x8555c617 flexcop_eeprom_check_mac_addr +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x98bb6d77 flexcop_pass_dmx_data +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xa5432651 flexcop_device_kfree +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xaf4aec7f flexcop_device_initialize +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xc03136f6 flexcop_sram_set_dest +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xf82e0461 flexcop_sram_ctrl +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xfbf29f01 flexcop_pid_feed_control +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xff3f6368 flexcop_device_kmalloc EXPORT_SYMBOL drivers/media/common/cx2341x 0x15ac1bd0 cx2341x_ctrl_query -EXPORT_SYMBOL drivers/media/common/cx2341x 0x1b0b683f cx2341x_handler_set_busy +EXPORT_SYMBOL drivers/media/common/cx2341x 0x270b9e23 cx2341x_handler_set_50hz EXPORT_SYMBOL drivers/media/common/cx2341x 0x28240e61 cx2341x_ctrl_get_menu EXPORT_SYMBOL drivers/media/common/cx2341x 0x55aa7c5f cx2341x_mpeg_ctrls EXPORT_SYMBOL drivers/media/common/cx2341x 0x7b4dd2cb cx2341x_fill_defaults -EXPORT_SYMBOL drivers/media/common/cx2341x 0xa1ab58de cx2341x_handler_set_50hz +EXPORT_SYMBOL drivers/media/common/cx2341x 0xa9576d47 cx2341x_handler_setup EXPORT_SYMBOL drivers/media/common/cx2341x 0xb2b9efb7 cx2341x_ext_ctrls -EXPORT_SYMBOL drivers/media/common/cx2341x 0xbae267b1 cx2341x_handler_init +EXPORT_SYMBOL drivers/media/common/cx2341x 0xd0edb0d2 cx2341x_handler_set_busy EXPORT_SYMBOL drivers/media/common/cx2341x 0xdbc5583a cx2341x_update EXPORT_SYMBOL drivers/media/common/cx2341x 0xe1fe1432 cx2341x_log_status -EXPORT_SYMBOL drivers/media/common/cx2341x 0xfea12f0a cx2341x_handler_setup -EXPORT_SYMBOL drivers/media/common/cypress_firmware 0x44419628 cypress_load_firmware +EXPORT_SYMBOL drivers/media/common/cx2341x 0xe570e16f cx2341x_handler_init +EXPORT_SYMBOL drivers/media/common/cypress_firmware 0x62aca872 cypress_load_firmware +EXPORT_SYMBOL drivers/media/common/ttpci-eeprom 0x11838100 ttpci_eeprom_parse_mac EXPORT_SYMBOL drivers/media/common/ttpci-eeprom 0x693e74ba ttpci_eeprom_decode_mac -EXPORT_SYMBOL drivers/media/common/ttpci-eeprom 0xc4851922 ttpci_eeprom_parse_mac EXPORT_SYMBOL drivers/media/common/tveeprom 0x0dbf0296 tveeprom_hauppauge_analog -EXPORT_SYMBOL drivers/media/common/tveeprom 0xb86fad46 tveeprom_read +EXPORT_SYMBOL drivers/media/common/tveeprom 0x52e0f89e tveeprom_read EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x065246b8 frame_vector_create -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x08489392 vb2_verify_memory_type -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x0c91b92a 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 0x20428021 vb2_verify_memory_type +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0xb531d2a0 vb2_buffer_in_use EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0xc2d9e090 get_vaddr_frames 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-dvb 0x181a3f28 vb2_dvb_register_bus -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x20005470 vb2_dvb_dealloc_frontends -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x29ac85c9 vb2_dvb_alloc_frontend -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x89b34f74 vb2_dvb_find_frontend -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x96bee90c vb2_dvb_get_frontend -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xf3173d5c vb2_dvb_unregister_bus +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x129e4fc9 vb2_dvb_get_frontend +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x5ec4c76d vb2_dvb_find_frontend +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xa094243f vb2_dvb_alloc_frontend +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xf5b5a034 vb2_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xf8a9cbf4 vb2_dvb_unregister_bus +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xfce70917 vb2_dvb_register_bus EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-memops 0xa21fa765 vb2_create_framevec EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-memops 0xccd197c7 vb2_destroy_framevec -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-v4l2 0xd004e7e4 vb2_querybuf -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x05e09bd4 dvb_unregister_device +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-v4l2 0xd26616ea vb2_querybuf EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x08733236 intlog10 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x09a1b7b1 dvb_generic_release EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x18acd31f dvb_dmx_swfilter_packets -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1e92f61b dvb_unregister_adapter -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2672cab7 dvb_net_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2a48414c dvb_dmxdev_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1dc8f018 dvb_dmxdev_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2059fba8 dvb_frontend_resume +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x23c0c02f 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 0x36438093 dvb_dmxdev_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3b8ba238 dvb_net_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2f5e4532 dvb_remove_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x30803818 dvb_unregister_frontend EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3b93d71a dvb_frontend_sleep_until -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x486c09c7 dvb_generic_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4d223732 dvb_ca_en50221_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x525bfada dvb_dmxdev_init EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x54abe4ff dvb_dmx_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5e451f58 dvb_frontend_detach 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 0x63980d1f dvb_ca_en50221_camready_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6a0e47b2 dvb_frontend_detach EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6a9f708a dvb_dmx_swfilter_204 -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x77043d1a dvb_remove_device -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x77b6983d dvb_register_adapter -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x79de5dd3 dvb_generic_ioctl +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6ace3e33 dvb_generic_open +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x78588669 dvb_free_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x818d7005 dvb_net_release EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8c54b0f8 dvb_dmx_swfilter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x91577b1b dvb_frontend_reinitialise 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 0x983db6e5 dvb_frontend_resume -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x98426e2a dvb_ca_en50221_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9d9df009 dvb_frontend_suspend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x971fae86 dvb_register_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x99a72b1f dvb_ca_en50221_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9e4f4cd0 dvb_ca_en50221_camready_irq EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa4235824 dvb_dmx_swfilter_raw -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa77a647b dvb_register_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa6578b60 dvb_frontend_suspend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb325cbcf dvb_register_adapter EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb3352dd2 dvb_ringbuffer_empty +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb5584573 dvb_ca_en50221_frda_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb622e50d dvb_generic_ioctl EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc3f679f9 dvb_ringbuffer_write_user -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xcda07a7e dvb_frontend_reinitialise -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd869f904 dvb_unregister_frontend -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xdee501e1 dvb_register_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xdd06ced2 dvb_unregister_device EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe138ce6b dvb_ringbuffer_avail -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe75becfc dvb_ca_en50221_camchange_irq -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xeb221b0c dvb_free_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe2c70737 dvb_ca_en50221_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xea16e25a dvb_net_init EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xebbc2d9b dvb_ringbuffer_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf539a753 dvb_generic_open -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf7fbf9d3 dvb_ca_en50221_frda_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xec2f6750 dvb_register_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xedc418d6 dvb_unregister_adapter 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 0xc05dc1df ascot2e_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/atbm8830 0x2e56d7a0 atbm8830_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x2cec18e9 au8522_get_state -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x3b535a14 au8522_init -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x44d29794 au8522_i2c_gate_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x6f4c6f7e au8522_sleep -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x70805bbf au8522_analog_i2c_gate_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x7fcbc215 au8522_led_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xa30126ba au8522_readreg -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xcea0ea57 au8522_release_state -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xe727a5f0 au8522_writereg -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_dig 0x7a9e217c au8522_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/bcm3510 0x274450de bcm3510_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx22700 0x06047e17 cx22700_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx22702 0x8d2519f1 cx22702_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24110 0xa20ae9b8 cx24110_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x985f729e cx24113_agc_callback -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0xc4ddbc68 cx24113_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24116 0x5609a041 cx24116_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24120 0x3498e442 cx24120_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x199ebb42 cx24123_get_tuner_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x2f98d4ec cx24123_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2820r 0x529ea5fd cxd2820r_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x33f95362 cxd2841er_attach_t_c -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x7a454ec3 cxd2841er_attach_s -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2880/cxd2880 0x144cd956 cxd2880_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x0ee34a40 dib0070_ctrl_agc_filter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x9b2d0fbd dib0070_wbd_offset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x9b728e83 dib0070_set_rf_output -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xa38bcdbf dib0070_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xa50fedcd dib0070_get_rf_output -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x181eca08 dib0090_gain_control -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x3516b8d0 dib0090_get_current_gain -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x4f56fc1f dib0090_register -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x53b502e7 dib0090_update_rframp_7090 -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x5b259f82 dib0090_update_tuning_table_7090 -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x6caec359 dib0090_set_dc_servo -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x7b503e76 dib0090_set_tune_state -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x7d36025b dib0090_pwm_gain_reset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x8f3b2673 dib0090_get_wbd_offset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xc07500e9 dib0090_set_switch -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xc41a25a4 dib0090_dcc_freq -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xca1220f9 dib0090_get_wbd_target -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xca5a2313 dib0090_set_vga -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xcf98caa2 dib0090_get_tune_state -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xf491eb16 dib0090_fw_register -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mb 0x387f3367 dib3000mb_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x651e30ea dib3000mc_pid_control -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x6f2c6499 dib3000mc_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x81b95c48 dib3000mc_get_tuner_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x81c71b52 dib3000mc_i2c_enumeration -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xca13137d dib3000mc_pid_parse -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xf939a43f dib3000mc_set_config -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x3722f3dd dib7000m_get_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x4f74f84a dib7000m_pid_filter_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x7efda8d5 dib7000m_pid_filter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xfb7b9002 dib7000m_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000p 0x07451e64 dib7000p_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib8000 0x453d8609 dib8000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x1efaef5d dib9000_fw_set_component_bus_speed -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x20d20e2d dib9000_set_gpio -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x2ad2fed0 dib9000_fw_pid_filter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x2d8409c4 dib9000_i2c_enumeration -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x343ad0f4 dib9000_get_tuner_interface -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x534efc96 dib9000_firmware_post_pll_init -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x7a70160d dib9000_get_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x818892d9 dib9000_get_slave_frontend -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x8a0c348f dib9000_fw_pid_filter_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x8ca468c4 dib9000_set_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x9c125f22 dib9000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xa94319b3 dib9000_set_slave_frontend -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xbafa6c96 dib9000_get_component_bus_interface -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x174d3249 dibx000_get_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x1e6d9f48 dibx000_i2c_set_speed -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x2c05daa2 dibx000_reset_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x8e49be3b dibx000_exit_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xa2792b96 dibx000_init_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0x3d912151 drx39xxj_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/drxd 0x033e30e7 drxd_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/drxk 0xf2e1a33e drxk_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ds3000 0x2fbe59fb ds3000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dvb-pll 0xe81c55d1 dvb_pll_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x70f03685 dvb_dummy_fe_qpsk_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0xcf1ae7bd dvb_dummy_fe_qam_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0xdb3e12ed dvb_dummy_fe_ofdm_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ec100 0x3e8d8db3 ec100_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0x31d58bd3 helene_attach_s -EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0xf08c6d0b helene_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/horus3a 0x45de3697 horus3a_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/isl6405 0x00909d0f isl6405_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/isl6421 0x7779405f isl6421_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/isl6423 0x5ff6a026 isl6423_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/itd1000 0xacc8f12d itd1000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ix2505v 0x152f9b02 ix2505v_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/l64781 0x30aba6be l64781_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lg2160 0xd24fd247 lg2160_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3305 0x19927c78 lgdt3305_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3306a 0xa409b0ad lgdt3306a_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt330x 0x19892e32 lgdt330x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gl5 0x4cacf56d lgs8gl5_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gxx 0xb741ba54 lgs8gxx_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh25 0x95528490 lnbh25_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh29 0x83e46e3c lnbh29_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0xd2fb48af lnbh24_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0xfe36ec94 lnbp21_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp22 0x4f2f4bd0 lnbp22_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x76fb084d m88ds3103_get_agc_pwm -EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0xfa934ed9 m88ds3103_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/m88rs2000 0x44aedc90 m88rs2000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a16 0x47b1bfba mb86a16_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a20s 0x3c6bf9c3 mb86a20s_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mt312 0x713dfe5e mt312_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mt352 0x825a6881 mt352_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/nxt200x 0x4790e849 nxt200x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/nxt6000 0x21892c14 nxt6000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/or51132 0xb11c209f or51132_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/or51211 0x9b4e997a or51211_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1409 0x7d066379 s5h1409_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1411 0x06bf48dd s5h1411_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0xc0e0d7c5 s5h1420_get_tuner_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0xe0591531 s5h1420_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1432 0x88bd0442 s5h1432_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s921 0x9e244318 s921_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/si21xx 0x8c684421 si21xx_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/sp887x 0xc7ab1fdb sp887x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stb0899 0x4a1f3091 stb0899_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stb6000 0x4fa5819f stb6000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stb6100 0x0ad7d235 stb6100_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0288 0xe7e6ce29 stv0288_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0297 0xa8f07311 stv0297_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0299 0x852238a1 stv0299_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x0a05f67e stv0367ter_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0xadcd1059 stv0367ddb_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0xdeb9433c stv0367cab_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0900 0x156ffd67 stv0900_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv090x 0x2beeb408 stv090x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110 0x882a5cfa stv6110_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110x 0xba69c447 stv6110x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10021 0xaeceee64 tda10021_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10023 0x4384e913 tda10023_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10048 0xadc18f90 tda10048_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x1d3c42d7 tda10045_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0xe95f948d tda10046_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10086 0xfaa6ea83 tda10086_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda665x 0x5c647f30 tda665x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda8083 0x1975a6c6 tda8083_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda8261 0xf89a16b5 tda8261_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda826x 0xe84f64b0 tda826x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ts2020 0x003b3912 ts2020_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tua6100 0xe99f74fa tua6100_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ves1820 0xbab30056 ves1820_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ves1x93 0x74b007a1 ves1x93_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0x0aa9b15c zd1301_demod_get_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0xb12822ed zd1301_demod_get_dvb_frontend -EXPORT_SYMBOL drivers/media/dvb-frontends/zl10036 0xb997da0b zl10036_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/zl10039 0x18a114a3 zl10039_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/zl10353 0xbaa5352b zl10353_attach -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x34e51ad5 flexcop_dma_free -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x52c2e416 flexcop_dma_allocate -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x97228569 flexcop_dma_control_timer_irq -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xb79b781a flexcop_dma_control_size_irq -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xc83dec94 flexcop_dma_xfer_control -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xd134a6d3 flexcop_dma_config_timer -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xd1e5cca5 flexcop_dma_config -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x8155a1ac bt878 -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x931bc892 bt878_start -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xb469a4ff bt878_device_control +EXPORT_SYMBOL drivers/media/dvb-frontends/ascot2e 0x6fa2eb22 ascot2e_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/atbm8830 0xec49c1df atbm8830_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x45a0e2ac au8522_writereg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x575fc0ef au8522_analog_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x6473a977 au8522_get_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x7f7cc68b au8522_readreg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x85f3bffb au8522_init +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x85f9680d au8522_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xafe46d2a au8522_sleep +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xbaffc7a3 au8522_led_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xe488c626 au8522_release_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_dig 0x65999b83 au8522_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/bcm3510 0xd0d4f56d bcm3510_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22700 0x875b64fe cx22700_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22702 0xf303ac43 cx22702_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24110 0x2355f351 cx24110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0xb0399896 cx24113_agc_callback +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0xcfe83568 cx24113_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24116 0xe66f1be5 cx24116_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24120 0xc5e3e0cd cx24120_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x76579f11 cx24123_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0xa4a48095 cx24123_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2820r 0x84a5162b cxd2820r_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x796a4b4e cxd2841er_attach_s +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0xcdbe42c4 cxd2841er_attach_t_c +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2880/cxd2880 0x7b30359d cxd2880_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x57e85a74 dib0070_get_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x5ca3a910 dib0070_ctrl_agc_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x717b0b46 dib0070_set_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x76c5034c dib0070_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xcc2c50c2 dib0070_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x134f2da1 dib0090_update_tuning_table_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x4ba4225c dib0090_get_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x52934a29 dib0090_get_wbd_target +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x5f8f019e dib0090_update_rframp_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x6cf8db8d dib0090_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x6f0ee767 dib0090_set_switch +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x7bb92636 dib0090_set_dc_servo +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x80bdd739 dib0090_pwm_gain_reset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x823fba09 dib0090_set_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xa86144f0 dib0090_set_vga +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xae4876f4 dib0090_dcc_freq +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xc7c09349 dib0090_get_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xc9bc27d3 dib0090_gain_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xd4675d20 dib0090_get_current_gain +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xe1adbb21 dib0090_fw_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mb 0xbcfb465e dib3000mb_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x56089e9e dib3000mc_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x88f985bd dib3000mc_get_tuner_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x916538e8 dib3000mc_pid_parse +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xcb73d5fe dib3000mc_pid_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xce21947b dib3000mc_set_config +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xd3d353c5 dib3000mc_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x373c9d38 dib7000m_pid_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x6d7f82a4 dib7000m_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xc55f8443 dib7000m_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xe5ad4af3 dib7000m_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000p 0x365d8f12 dib7000p_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib8000 0x03eacb3d dib8000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x1b51e838 dib9000_fw_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x1fb5224f dib9000_get_slave_frontend +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x41310f8f dib9000_set_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x44b1c7f3 dib9000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x4c6fb29a dib9000_get_component_bus_interface +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x5c991578 dib9000_fw_set_component_bus_speed +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x607dfd9f dib9000_set_gpio +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x6dd3957f dib9000_fw_pid_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x953f5f0c dib9000_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xa6a5a2a8 dib9000_set_slave_frontend +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xb3e219cf dib9000_firmware_post_pll_init +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xbb30a2fd dib9000_get_tuner_interface +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xf84cc52b dib9000_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x172e7c9d dibx000_get_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x8629cfab dibx000_reset_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x9706ae79 dibx000_init_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xa188f8f5 dibx000_exit_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xc42d140c dibx000_i2c_set_speed +EXPORT_SYMBOL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0xead64c9c drx39xxj_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxd 0x9d25a704 drxd_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxk 0xe0df7542 drxk_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ds3000 0x2ce5673f ds3000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb-pll 0x039d526c dvb_pll_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x25be29cf dvb_dummy_fe_qam_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x65dfa633 dvb_dummy_fe_ofdm_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0xce11825b dvb_dummy_fe_qpsk_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ec100 0xdaabbf17 ec100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0x1c7ba176 helene_attach_s +EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0x895dd220 helene_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/horus3a 0xea211c6a horus3a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6405 0x0791b964 isl6405_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6421 0xc2420e69 isl6421_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6423 0x7fe1a13f isl6423_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/itd1000 0x3b01fe20 itd1000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ix2505v 0x94996969 ix2505v_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/l64781 0x32176af5 l64781_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lg2160 0x440f79ad lg2160_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3305 0x8f755311 lgdt3305_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3306a 0x65c7cc19 lgdt3306a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt330x 0xad1a4344 lgdt330x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gl5 0xcdf3ef84 lgs8gl5_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gxx 0x978ca7a1 lgs8gxx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh25 0xcd126792 lnbh25_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh29 0xab4b7d01 lnbh29_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x0a91baa2 lnbp21_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0xbe1b3aab lnbh24_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp22 0xa9679cde lnbp22_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0xc02b80df m88ds3103_get_agc_pwm +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0xc30ee68c m88ds3103_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88rs2000 0x7be59d5c m88rs2000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a16 0xa8e35f0a mb86a16_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a20s 0x91c05afb mb86a20s_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt312 0x297d1d5c mt312_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt352 0x60ebaf6c mt352_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt200x 0xe3c3d70c nxt200x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt6000 0x5000254c nxt6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51132 0x154f1fda or51132_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51211 0x9decff9b or51211_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1409 0x0f410e4d s5h1409_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1411 0x0d0aaad1 s5h1411_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x70809c76 s5h1420_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0xaf29f396 s5h1420_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1432 0x8308e64e s5h1432_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s921 0x61335120 s921_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/si21xx 0xf24ef193 si21xx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/sp887x 0x5745c588 sp887x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb0899 0xa1682796 stb0899_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6000 0x8b36db39 stb6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6100 0x5bd2d534 stb6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0288 0x19a1df8f stv0288_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0297 0x2a0b5b77 stv0297_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0299 0x16052cb0 stv0299_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x31eba38c stv0367cab_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x429ff0e9 stv0367ddb_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0xe55716ce stv0367ter_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0900 0xc0b4d7ed stv0900_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv090x 0x7abf3b2b stv090x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110 0x7bf6fbac stv6110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110x 0xe8a1b69a stv6110x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10021 0xc3361b7b tda10021_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10023 0x7ccfa8df tda10023_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10048 0x41fbdcb5 tda10048_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x12337071 tda10046_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0xe650a62b tda10045_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10086 0x7b1018e8 tda10086_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda665x 0x8e4ea3d8 tda665x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8083 0x982abc2f tda8083_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8261 0xd1c8e379 tda8261_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda826x 0x6cfa31ff tda826x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ts2020 0x1205ef6e ts2020_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tua6100 0x2d0c2e5c tua6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1820 0xe600498e ves1820_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1x93 0xd91ba499 ves1x93_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0x6e17b032 zd1301_demod_get_dvb_frontend +EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0x93167d56 zd1301_demod_get_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10036 0x9a4b610b zl10036_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10039 0xeab10a5a zl10039_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10353 0x52897a56 zl10353_attach +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x02ac4fc8 flexcop_dma_config_timer +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x3053b116 flexcop_dma_control_size_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xb677e6d4 flexcop_dma_config +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xc4efa86f flexcop_dma_xfer_control +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xd8f94f75 flexcop_dma_allocate +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xef3abf3e flexcop_dma_control_timer_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xfe68b640 flexcop_dma_free +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x7dca58ed bt878_start +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x8b28d654 bt878_stop +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xd1e3121e bt878 EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xd5d0bdef bt878_num -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xe8510b5e bt878_stop -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x08d5fbe6 bttv_get_pcidev +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xe1a88ff0 bt878_device_control EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x11dc4b6d bttv_gpio_enable -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x12c150e9 bttv_sub_register -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x191c954c bttv_sub_unregister +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x7f444def bttv_sub_unregister +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x85dd6a22 bttv_get_pcidev EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x8ecf4acc bttv_write_gpio +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xa0eb82e1 bttv_sub_register EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xbcf2d2fb bttv_read_gpio -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x0ea44cf3 write_dst -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x1eb6b5bb dst_attach -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x343e8c66 read_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x223eb5f4 dst_pio_disable +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x253cfbd1 dst_comm_init EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x43a983fd dst_check_sum -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x85a14734 dst_comm_init -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x9057c958 dst_error_recovery -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xaed667a1 dst_error_bailout -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xb43fda3f dst_pio_disable -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xc8b81056 dst_wait_dst_ready -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xd85f6023 rdc_reset_state -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst_ca 0x273fb837 dst_ca_attach -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x06abf252 cx18_start_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x29e8c8d5 cx18_release_stream +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x59c10041 dst_attach +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x59c3754c dst_wait_dst_ready +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x7f8ab87d read_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xc34088f3 rdc_reset_state +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xdc4fd588 dst_error_bailout +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xdc71839e dst_error_recovery +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xdf891374 write_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst_ca 0xfd530bc9 dst_ca_attach +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x182a516a cx18_claim_stream EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2cdea06d cx18_reset_ir_gpio -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x58d040c2 cx18_ext_init -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xa328ae31 cx18_claim_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xd917c35b cx18_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x4c62e976 cx18_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x8be5033e cx18_ext_init +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xaa55f93c cx18_release_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xfaff8148 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 0x208045d3 cx25821_sram_channel_setup_audio -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x3797cda1 cx25821_dev_unregister +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x048b0624 cx25821_set_gpiopin_direction +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x3852f591 cx25821_dev_get EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x44b517f5 cx25821_print_irqbits -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x79a8ba66 cx25821_risc_databuffer_audio -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x8635ce59 cx25821_set_gpiopin_direction -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x867d5dc8 cx25821_riscmem_alloc -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xa4aab0c2 cx25821_dev_get -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xe0f76336 cx25821_sram_channel_dump_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x576bc74f cx25821_risc_databuffer_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x5b7bc06e cx25821_dev_unregister +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x7920259c cx25821_sram_channel_dump_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xa20e4c1a cx25821_sram_channel_setup_audio EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xe9050411 cx25821_sram_channels -EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x7bbc2a74 vp3054_i2c_remove -EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0xb47924e2 vp3054_i2c_probe -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x7f38a8db cx88_set_freq -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xaa97ca9e cx88_querycap -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xc103d29b cx88_video_mux -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xc7ba56fe cx88_enum_input -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x11961d90 cx8802_cancel_buffers -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x56cba64a cx8802_register_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xa6982bc4 cx8802_unregister_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xb39c4b3b cx8802_buf_queue -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xbea653f4 cx8802_start_dma -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xc0890ef7 cx8802_get_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xd0ca66b4 cx8802_buf_prepare -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x12eec069 cx88_newstation -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x14a34e61 cx88_core_irq -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x171dbb6f cx88_get_stereo -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x1d3fc17d cx88_set_scale -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x1d470fa9 cx88_reset -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x2d8ea45a cx88_ir_start -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x38d6603c cx88_ir_stop -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4bf011fd cx88_core_get +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xebc1f898 cx25821_riscmem_alloc +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0xced480fc vp3054_i2c_probe +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0xd78dfc60 vp3054_i2c_remove +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x15bd6241 cx88_set_freq +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x21c2e89d cx88_video_mux +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x32d14f64 cx88_querycap +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x77ca80c1 cx88_enum_input +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x218240be cx8802_buf_queue +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x2b35fba2 cx8802_unregister_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x5d97cd7e cx8802_cancel_buffers +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x75bbfc77 cx8802_register_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x8e2c1b23 cx8802_get_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xe43fc42e cx8802_start_dma +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xe9de04ba cx8802_buf_prepare +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x0926c1de cx88_risc_buffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x09ff6edd cx88_shutdown +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x13450ced cx88_wakeup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x31b8a5be cx88_ir_stop +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x348814cc cx88_set_tvaudio +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x40390cb1 cx88_vdev_init +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x43ee5893 cx88_get_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x54bface6 cx88_sram_channel_setup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x57b33760 cx88_core_put 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 0x6d568e74 cx88_wakeup -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x72a23968 cx88_sram_channel_dump -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7acf1beb cx88_set_tvnorm -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7cda460e cx88_risc_databuffer -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x8427854a cx88_core_put +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6753ab1f cx88_sram_channel_dump +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x752c004a cx88_risc_databuffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7ea556e5 cx88_core_get +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7f1ef0bb cx88_set_scale +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7fe4eee5 cx88_ir_start EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x8d88137a cx88_sram_channels EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x904b8696 cx88_audio_thread -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x999cd00a cx88_set_tvaudio -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x9dfa4966 cx88_risc_buffer -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xaa832e49 cx88_set_stereo -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xac808186 cx88_shutdown -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xc04d4cfb cx88_dsp_detect_stereo_sap -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xd3ae7646 cx88_sram_channel_setup -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xee1736fd cx88_vdev_init -EXPORT_SYMBOL drivers/media/pci/ddbridge/ddbridge-dummy-fe 0xe9f0d866 ddbridge_dummy_fe_qam_attach -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x10004290 ivtv_vapi +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x970c3e5a cx88_core_irq +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x9b512dc4 cx88_set_tvnorm +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xa17fa681 cx88_newstation +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xe4b15b95 cx88_set_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xed1731e3 cx88_dsp_detect_stereo_sap +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xf30c2669 cx88_reset +EXPORT_SYMBOL drivers/media/pci/ddbridge/ddbridge-dummy-fe 0x86901c26 ddbridge_dummy_fe_qam_attach +EXPORT_SYMBOL drivers/media/pci/intel/ipu6/intel-ipu6 0x0fe08bb1 ipu_fw_authenticate +EXPORT_SYMBOL drivers/media/pci/intel/ipu6/intel-ipu6 0x278dd5cd ipu_mmu_hw_cleanup +EXPORT_SYMBOL drivers/media/pci/intel/ipu6/intel-ipu6 0x671fa275 ipu_mmu_hw_init +EXPORT_SYMBOL drivers/media/pci/intel/ipu6/intel-ipu6 0x6bba531e ipu_bus_unregister_driver +EXPORT_SYMBOL drivers/media/pci/intel/ipu6/intel-ipu6 0xb061455a ipu_buttress_start_tsc_sync +EXPORT_SYMBOL drivers/media/pci/intel/ipu6/intel-ipu6 0xb5567213 ipu_configure_spc +EXPORT_SYMBOL drivers/media/pci/intel/ipu6/intel-ipu6 0xc26892d4 ipu_bus_register_driver +EXPORT_SYMBOL drivers/media/pci/intel/ipu6/intel-ipu6 0xc4551629 ipu_buttress_auth_done +EXPORT_SYMBOL drivers/media/pci/intel/ipu6/intel-ipu6 0xc7231f03 ipu_ver +EXPORT_SYMBOL drivers/media/pci/intel/ipu6/intel-ipu6 0xee33fbe5 request_cpd_fw EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x14f67530 ivtv_debug -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x180471d5 ivtv_clear_irq_mask -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x1919f0f3 ivtv_udma_setup -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x2d0a6779 ivtv_vapi_result -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x36a43872 ivtv_udma_alloc -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x41ec6365 ivtv_claim_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x46350786 ivtv_firmware_check -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x47360065 ivtv_reset_ir_gpio -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x5da6171a ivtv_set_irq_mask -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x5e0a4d74 ivtv_udma_prepare -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x69d95247 ivtv_init_on_first_open -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x6ff4bee7 ivtv_api -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x81541e3d ivtv_udma_unmap -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x8b5318fe ivtv_ext_init -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x9899dd01 ivtv_stop_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xb13a0e7d ivtv_start_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xd5054198 ivtv_release_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x3101d03f ivtv_api +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x393544a1 ivtv_udma_prepare +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x3c1412d5 ivtv_claim_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x3e44474b ivtv_clear_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x5c90ab87 ivtv_release_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x5d057a68 ivtv_udma_unmap +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x6aa1075f ivtv_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x79e8b2ff ivtv_vapi_result +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x7dd34747 ivtv_ext_init +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xa7a5e039 ivtv_init_on_first_open +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xa7d64842 ivtv_set_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xb4a111bd ivtv_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xbda874c5 ivtv_firmware_check +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xbf92a10f ivtv_udma_alloc +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xe669ecd5 ivtv_udma_setup +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xf14410af ivtv_vapi +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xff4e5058 ivtv_start_v4l2_encode_stream EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x04e83446 saa7134_tuner_callback -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x093dd6ec saa7134_pgtable_free EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x1211df5d saa7134_devlist -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x21b93f64 saa_dsp_writel -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x2336e67b saa7134_dmasound_exit -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x3528b4ff saa7134_ts_unregister -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x46815691 saa7134_pgtable_alloc -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x5bac30df saa7134_set_gpio -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x628e7b05 saa7134_ts_register +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x634c0625 saa7134_ts_unregister +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x7307f850 saa7134_pgtable_free EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x730c4be3 saa7134_boards +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x75e2a1fc saa7134_dmasound_init +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x782d1990 saa7134_set_dmabits +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x790ca89c saa7134_pgtable_build +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x7973d7bf saa7134_ts_register +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x7c3d6243 saa7134_dmasound_exit +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x8831deb4 saa7134_tvaudio_setmute +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x8a10d335 saa7134_pgtable_alloc EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x8f1ad46b saa7134_devlist_lock -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xa48f7a65 saa7134_set_dmabits -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xabe296ed saa7134_pgtable_build -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xb74ae5e8 saa7134_dmasound_init -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xb9312c78 saa7134_tvaudio_setmute -EXPORT_SYMBOL drivers/media/radio/tea575x 0x3d5113ce snd_tea575x_set_freq -EXPORT_SYMBOL drivers/media/radio/tea575x 0x52bcf9a9 snd_tea575x_g_tuner -EXPORT_SYMBOL drivers/media/radio/tea575x 0x5ec65cf3 snd_tea575x_enum_freq_bands -EXPORT_SYMBOL drivers/media/radio/tea575x 0x6f75f4ea snd_tea575x_exit -EXPORT_SYMBOL drivers/media/radio/tea575x 0x7d9f334c snd_tea575x_init -EXPORT_SYMBOL drivers/media/radio/tea575x 0xa8874598 snd_tea575x_s_hw_freq_seek -EXPORT_SYMBOL drivers/media/radio/tea575x 0xb5eb8e5b snd_tea575x_hw_init +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xd9270656 saa_dsp_writel +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xdd1947a8 saa7134_set_gpio +EXPORT_SYMBOL drivers/media/radio/tea575x 0x50870505 snd_tea575x_exit +EXPORT_SYMBOL drivers/media/radio/tea575x 0x628ca410 snd_tea575x_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0x658fbd58 snd_tea575x_hw_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0x69207094 snd_tea575x_g_tuner +EXPORT_SYMBOL drivers/media/radio/tea575x 0x8407810a snd_tea575x_enum_freq_bands +EXPORT_SYMBOL drivers/media/radio/tea575x 0xa9977c38 snd_tea575x_set_freq +EXPORT_SYMBOL drivers/media/radio/tea575x 0xb0e01f7c snd_tea575x_s_hw_freq_seek EXPORT_SYMBOL drivers/media/rc/rc-core 0x2ad91f6e ir_raw_gen_pl -EXPORT_SYMBOL drivers/media/rc/rc-core 0x6596b8dd ir_raw_handler_register +EXPORT_SYMBOL drivers/media/rc/rc-core 0x38835500 ir_raw_handler_register EXPORT_SYMBOL drivers/media/rc/rc-core 0x7cf52901 ir_raw_gen_manchester +EXPORT_SYMBOL drivers/media/rc/rc-core 0x961138ce ir_raw_handler_unregister EXPORT_SYMBOL drivers/media/rc/rc-core 0x9e12e343 ir_raw_gen_pd EXPORT_SYMBOL drivers/media/rc/rc-core 0xb5516017 ir_raw_encode_carrier -EXPORT_SYMBOL drivers/media/rc/rc-core 0xd9c1d283 ir_raw_handler_unregister EXPORT_SYMBOL drivers/media/rc/rc-core 0xf446074f ir_raw_encode_scancode -EXPORT_SYMBOL drivers/media/tuners/fc0011 0xba052319 fc0011_attach -EXPORT_SYMBOL drivers/media/tuners/fc0012 0x03aedfa8 fc0012_attach -EXPORT_SYMBOL drivers/media/tuners/fc0013 0x8dbc7971 fc0013_rc_cal_add -EXPORT_SYMBOL drivers/media/tuners/fc0013 0xa92f5287 fc0013_attach -EXPORT_SYMBOL drivers/media/tuners/fc0013 0xeb7095a3 fc0013_rc_cal_reset -EXPORT_SYMBOL drivers/media/tuners/max2165 0x388a22fa max2165_attach -EXPORT_SYMBOL drivers/media/tuners/mc44s803 0x16898b25 mc44s803_attach -EXPORT_SYMBOL drivers/media/tuners/mt2060 0xbd05c6c8 mt2060_attach -EXPORT_SYMBOL drivers/media/tuners/mt2131 0x32caa761 mt2131_attach -EXPORT_SYMBOL drivers/media/tuners/mt2266 0xc548ace0 mt2266_attach -EXPORT_SYMBOL drivers/media/tuners/mxl5005s 0x39da08ea mxl5005s_attach -EXPORT_SYMBOL drivers/media/tuners/qt1010 0xe8e26990 qt1010_attach -EXPORT_SYMBOL drivers/media/tuners/tda18218 0x6523713b tda18218_attach +EXPORT_SYMBOL drivers/media/tuners/fc0011 0x3760d619 fc0011_attach +EXPORT_SYMBOL drivers/media/tuners/fc0012 0xe3e8f174 fc0012_attach +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x4467b243 fc0013_rc_cal_reset +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x924760a9 fc0013_attach +EXPORT_SYMBOL drivers/media/tuners/fc0013 0xc8399546 fc0013_rc_cal_add +EXPORT_SYMBOL drivers/media/tuners/max2165 0xf4a15c90 max2165_attach +EXPORT_SYMBOL drivers/media/tuners/mc44s803 0x3e269818 mc44s803_attach +EXPORT_SYMBOL drivers/media/tuners/mt2060 0xbd0ef341 mt2060_attach +EXPORT_SYMBOL drivers/media/tuners/mt2131 0x32c192e8 mt2131_attach +EXPORT_SYMBOL drivers/media/tuners/mt2266 0x1268dcb5 mt2266_attach +EXPORT_SYMBOL drivers/media/tuners/mxl5005s 0x2be4de96 mxl5005s_attach +EXPORT_SYMBOL drivers/media/tuners/qt1010 0x3fc219c5 qt1010_attach +EXPORT_SYMBOL drivers/media/tuners/tda18218 0x96ffd66d 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/tuner-xc2028 0x529cfe31 xc2028_attach -EXPORT_SYMBOL drivers/media/tuners/xc4000 0x45641558 xc4000_attach -EXPORT_SYMBOL drivers/media/tuners/xc5000 0x78cef525 xc5000_attach -EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x137b01ac cx231xx_register_extension -EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0xf96c905e cx231xx_unregister_extension -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x0294b52b dvb_usbv2_generic_rw_locked -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x380bea14 dvb_usbv2_generic_write -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x956b669a dvb_usbv2_probe -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x99f4bd3c dvb_usbv2_generic_rw -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x9a392504 dvb_usbv2_disconnect -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x9efedd97 dvb_usbv2_resume -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xc34f14b4 dvb_usbv2_reset_resume -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xc97e91e1 dvb_usbv2_suspend -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xd1803d79 dvb_usbv2_generic_write_locked -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x660c5617 usb_cypress_load_firmware +EXPORT_SYMBOL drivers/media/tuners/tuner-xc2028 0x4345c80c xc2028_attach +EXPORT_SYMBOL drivers/media/tuners/xc4000 0x4ed1f754 xc4000_attach +EXPORT_SYMBOL drivers/media/tuners/xc5000 0xe8177c62 xc5000_attach +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x47b1811d cx231xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x8452f9a5 cx231xx_register_extension +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x04f5781e dvb_usbv2_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x2e5d4887 dvb_usbv2_generic_rw_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x74140e05 dvb_usbv2_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x759c4bcd dvb_usbv2_generic_write_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x8628cd67 dvb_usbv2_reset_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x9ad557ee dvb_usbv2_disconnect +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xa223040b dvb_usbv2_probe +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xbb021e7e dvb_usbv2_suspend +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xd7714ee6 dvb_usbv2_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x1daffb2d usb_cypress_load_firmware EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x8b6f5395 dvb_usb_get_hexline -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x920aa591 dvb_usb_device_init -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xb8ce3772 dvb_usb_nec_rc_key_to_event -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xc9dc67f1 dvb_usb_generic_rw -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xcf4835ab dvb_usb_device_exit -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xd6c66aee dvb_usb_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xa908db18 dvb_usb_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xcd8df6e4 dvb_usb_nec_rc_key_to_event +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xd4c0873d dvb_usb_device_init +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xdc752878 dvb_usb_device_exit +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xe5f0fdf1 dvb_usb_generic_rw EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x341530cb rc_map_af9005_table -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0xbd253f9f af9005_rc_decode +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x46d2f74c 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 0x0a5af713 dibusb_pid_filter_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x1c0ff288 dibusb_pid_filter -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x284d64f8 dibusb_power_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x350dfb5d dibusb2_0_streaming_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x8976095d dibusb_read_eeprom_byte -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x92fb9b0f dibusb2_0_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x179523e8 dibusb_read_eeprom_byte +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x264b022a dibusb_pid_filter +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x323bbe8e dibusb_rc_query +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x43b6bcbb dibusb2_0_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x9150e058 dibusb_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 0xcee5b571 dibusb_streaming_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xdf6b2b73 dibusb_rc_query -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xec1f8837 dibusb_i2c_algo -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0x05001bda dibusb_dib3000mc_tuner_attach -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0x947d4883 dibusb_dib3000mc_frontend_attach -EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x9e5d8e00 em28xx_unregister_extension -EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0xfe5b52a8 em28xx_register_extension -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x16006a08 go7007_register_encoder -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x4caba7d3 go7007_snd_remove -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x6ce3ba59 go7007_parse_video_stream -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x76084cc1 go7007_read_interrupt -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x796044ab go7007_boot_encoder -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x9e52d628 go7007_update_board -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xb3e93467 go7007_read_addr -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xb9eaacfd go7007_alloc -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xf5032b97 go7007_snd_init -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x189956fd gspca_coarse_grained_expo_autogain -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x4cfbd3fb gspca_resume -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x5e951096 gspca_disconnect +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x97651b24 dibusb_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xbfe0c442 dibusb2_0_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xc8537247 dibusb_i2c_algo +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xcf531f65 dibusb_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0xb9ac8487 dibusb_dib3000mc_frontend_attach +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0xded5a209 dibusb_dib3000mc_tuner_attach +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x33ae5d6a em28xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0xf3f4ffc6 em28xx_register_extension +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x23ae459c go7007_register_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x2eeb75c5 go7007_update_board +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x678c02d2 go7007_alloc +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x683de1de go7007_read_interrupt +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x95ca22c7 go7007_parse_video_stream +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xc7c92294 go7007_snd_remove +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xc7cbdd68 go7007_boot_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xddab65af go7007_snd_init +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xf721989a go7007_read_addr +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x0d857acc gspca_dev_probe2 +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x13c511ea gspca_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x6785ed25 gspca_frame_add +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x91496da6 gspca_coarse_grained_expo_autogain EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9670af2c gspca_debug -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xb39f3324 gspca_dev_probe2 -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xb8d26e62 gspca_frame_add -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xd384c479 gspca_expo_autogain -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xe8e0a04b gspca_suspend -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xf7d1bec6 gspca_dev_probe -EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x064d7509 tm6000_unregister_extension -EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x83c9c62c tm6000_register_extension -EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0xdc02e6d8 tm6000_init_digital_mode -EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x9c43d089 ttusbdecfe_dvbt_attach -EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0xb784d143 ttusbdecfe_dvbs_attach -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x2d0edf4a v4l2_async_subdev_notifier_register -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x4cab1ba6 v4l2_async_unregister_subdev -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xb4d05942 v4l2_async_notifier_unregister -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xbb0b9e68 v4l2_async_notifier_init -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xf1e1614d v4l2_async_notifier_register -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xfdd9fc7a v4l2_async_register_subdev -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x3eefc113 v4l2_m2m_get_vq +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xa4fe5e6f gspca_dev_probe +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xa9e77553 gspca_resume +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xd688382d gspca_suspend +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xf1fda41f gspca_disconnect +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x2f672bd6 tm6000_register_extension +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x79c9d552 tm6000_unregister_extension +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0xd8e06a34 tm6000_init_digital_mode +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x961a736b ttusbdecfe_dvbs_attach +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0xbddd72a1 ttusbdecfe_dvbt_attach +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x80534c94 v4l2_async_register_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x9f292d07 v4l2_async_unregister_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xa69214c3 v4l2_async_notifier_init +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xb79ede08 v4l2_async_subdev_notifier_register +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xd6c58334 v4l2_async_notifier_unregister +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xff33ca87 v4l2_async_notifier_register EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x459e133f v4l2_m2m_get_curr_priv EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x5352d022 v4l2_m2m_resume -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x6573a04e v4l2_m2m_mmap -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xb18e009f v4l2_m2m_buf_done_and_job_finish -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xc19ab662 v4l2_m2m_job_finish +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xce81cb79 v4l2_m2m_job_finish +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xd397e60d v4l2_m2m_get_vq +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xf1f0af83 v4l2_m2m_mmap EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xf626dd03 v4l2_m2m_suspend +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xf779d855 v4l2_m2m_buf_done_and_job_finish EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0614dd5a v4l2_video_std_frame_period EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x082737e8 v4l2_ctrl_merge -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x09692a5e __v4l2_ctrl_s_ctrl_string +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0f4bef96 v4l2_ctrl_handler_free EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x123959a1 v4l2_type_names -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x12c14ad7 v4l2_subdev_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x14ebdee7 v4l2_ctrl_request_complete +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x15e44910 v4l2_try_ext_ctrls EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x16244fe5 v4l2_prio_check -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x17f90211 v4l2_g_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1bdaa1bb v4l2_ctrl_activate -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1f3e6596 __video_register_device -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x21e4a451 v4l2_ctrl_request_complete +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x19503477 v4l2_ctrl_radio_filter +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x19ed7eee video_ioctl2 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1f916f78 __v4l2_ctrl_s_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x20c32ac1 video_device_release_empty EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2342f1ae v4l2_prio_open -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x27544c37 v4l2_ctrl_subdev_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x25654aab v4l2_ctrl_find EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x28b12cc9 v4l2_format_info -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x28d35c56 v4l2_ctrl_g_ctrl_int64 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2eff0f63 v4l2_ctrl_handler_init_class +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x314a144b v4l2_ctrl_new_int_menu EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x315de2cf v4l2_ctrl_get_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x31d8ba67 v4l2_ctrl_handler_free EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x32d43420 v4l2_ctrl_get_name -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x39616374 __v4l2_ctrl_modify_range -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x39b8980f video_unregister_device -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3a489dca v4l2_querymenu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3a79bb3b video_device_release_empty +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3381a6d4 v4l2_ctrl_new_custom +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x370540c9 video_device_alloc +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x37d84d32 v4l2_ctrl_auto_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x38753d5d v4l2_ctrl_new_std_menu_items EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3adbd595 v4l2_field_names -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3b21ca85 __v4l2_ctrl_s_ctrl_int64 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3b5d6d08 v4l2_ctrl_auto_cluster EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3bdd0f94 v4l2_prio_change -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3c57c6e4 v4l2_ctrl_notify -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3d0383d3 v4l2_ctrl_handler_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3df02dbd video_devdata -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3ef69e09 v4l2_ctrl_g_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x448f2bed v4l2_ctrl_new_std_menu_items -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4dd5c153 __v4l2_ctrl_s_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x50bdec4d v4l2_ctrl_sub_ev_ops -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x57e000ab v4l2_try_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x581961cc v4l2_ctrl_radio_filter -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6d799d51 v4l2_ctrl_poll -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6e7c0773 v4l2_ctrl_new_int_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x782d2a7d v4l2_ctrl_find +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3dce3418 video_devdata +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4526bae2 v4l2_ctrl_handler_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x498fff53 v4l2_ctrl_subdev_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x57604c21 __v4l2_ctrl_grab +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5b36e1ee v4l2_ctrl_handler_init_class +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5dce844e __v4l2_ctrl_s_ctrl_compound +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6091c468 v4l2_ctrl_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6c4a156f v4l2_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x76055ad3 v4l2_ctrl_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x777e068e v4l2_subdev_init EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8106095a v4l2_prio_max -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x897133c0 v4l2_ctrl_request_setup +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8617dbd2 v4l2_ctrl_subscribe_event EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x89e3897d v4l2_ctrl_query_fill -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8b8bfb6d v4l2_ctrl_new_fwnode_properties -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8f3a0c7c v4l2_ctrl_handler_setup -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x915ba4d5 v4l2_g_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9ac25343 v4l2_ctrl_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa4cf9ef0 v4l2_ctrl_cluster -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa91a1a0a v4l2_s_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb4d4a44c v4l2_queryctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb6fc791d v4l2_s_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8b224be4 v4l2_ctrl_poll +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8caac977 v4l2_ctrl_sub_ev_ops +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x99013656 v4l2_ctrl_subdev_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9d036834 __v4l2_ctrl_s_ctrl_string +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9f8e219f video_device_release +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa0f2f80e __v4l2_ctrl_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa7ca845d v4l2_g_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xade10396 v4l2_ctrl_activate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb0ffb8eb v4l2_queryctrl EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb77b0159 v4l2_prio_init -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb82278b8 v4l2_ctrl_subdev_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb8fdd4a4 v4l2_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xba6b6a92 v4l2_s_ext_ctrls EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbc5671dc v4l_printk_ioctl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbdfb221e v4l2_ctrl_new_std_compound -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcd886d66 v4l2_ctrl_new_std_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbee72d59 v4l2_ctrl_new_std_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc61ca021 v4l2_ctrl_handler_setup +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcae77071 v4l2_subdev_call_wrappers +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcc08d5e8 v4l2_ctrl_cluster EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcda04a5b v4l2_prio_close EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd16d9c01 v4l2_ctrl_get_int_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd3d92901 v4l2_ctrl_add_handler -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd6c1ad1d video_device_alloc -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd9eb7ee9 __v4l2_ctrl_grab +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd46fe5c7 __video_register_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd4e684d3 v4l2_ctrl_g_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd585502f v4l2_ctrl_new_std_compound +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd7796c17 video_unregister_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xda96f113 v4l2_ctrl_new_fwnode_properties EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdc7e0128 v4l2_ctrl_fill +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe04790f8 v4l2_ctrl_add_handler EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2b92059 v4l2_video_std_construct -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe3981ee8 v4l2_query_ext_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe8a58467 v4l2_ctrl_new_custom -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe8cb056d v4l2_ctrl_new_std -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe9cb59b1 v4l2_subdev_call_wrappers -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xed07957f video_ioctl2 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe3e3e58a v4l2_ctrl_request_setup +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe80167d2 v4l2_query_ext_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xea88947f v4l2_ctrl_new_std +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xeb81fbf0 __v4l2_ctrl_modify_range +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xef75a20f v4l2_querymenu 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 0xfa167b43 video_device_release -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfa1a45b8 __v4l2_ctrl_s_ctrl_compound -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xffd4d2ca v4l2_ctrl_subscribe_event -EXPORT_SYMBOL drivers/memstick/core/memstick 0x006c284a memstick_next_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0x26a30f1a memstick_detect_change -EXPORT_SYMBOL drivers/memstick/core/memstick 0x296affaf memstick_register_driver -EXPORT_SYMBOL drivers/memstick/core/memstick 0x3674beac memstick_add_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x3c110587 memstick_free_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x3f4ffa9d memstick_resume_host +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfa04e869 v4l2_ctrl_notify +EXPORT_SYMBOL drivers/memstick/core/memstick 0x120f43ee memstick_free_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x12e7d54e memstick_remove_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x1a865c3f memstick_alloc_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x42e583bd memstick_suspend_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x495d6ac2 memstick_resume_host EXPORT_SYMBOL drivers/memstick/core/memstick 0x4a4e5778 memstick_init_req_sg -EXPORT_SYMBOL drivers/memstick/core/memstick 0x88dee530 memstick_unregister_driver -EXPORT_SYMBOL drivers/memstick/core/memstick 0xa05d7559 memstick_remove_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0xa358ad4e memstick_set_rw_addr +EXPORT_SYMBOL drivers/memstick/core/memstick 0x62dd8b79 memstick_unregister_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0x6c34cf1f memstick_detect_change +EXPORT_SYMBOL drivers/memstick/core/memstick 0x803473ab memstick_next_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0x8f19a24b memstick_register_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0x95da204c memstick_new_req EXPORT_SYMBOL drivers/memstick/core/memstick 0xae50437c memstick_init_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0xb3b3c50a memstick_new_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0xc25c1e00 memstick_alloc_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0xec03bc1e memstick_suspend_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xf94a6700 memstick_add_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xfda6b4cb memstick_set_rw_addr EXPORT_SYMBOL drivers/memstick/host/r592 0x52f1b23b memstick_debug_get_tpc_name -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x05a70574 mpt_detach -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0bc4db69 mpt_raid_phys_disk_get_num_paths -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0dd7442f mpt_event_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x18c35fc1 mpt_alloc_fw_memory -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x20ef67d2 mpt_halt_firmware -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x26e41138 mpt_verify_adapter -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x337e266a mpt_print_ioc_summary -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x36238ac7 mpt_GetIocState -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x3c7af8dd mpt_suspend -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4ad504f5 mpt_raid_phys_disk_pg1 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x023df300 mpt_clear_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x04230262 mpt_raid_phys_disk_pg0 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0779af2b mpt_reset_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x08f098b4 mpt_attach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0a089c11 mpt_set_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x302efa1e mpt_put_msg_frame_hi_pri +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x3b9e6498 mpt_get_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4862dd06 mpt_alloc_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x499476e1 mptbase_sas_persist_operation EXPORT_SYMBOL drivers/message/fusion/mptbase 0x502108d0 mpt_fwfault_debug -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x606ba71d mpt_config -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x60e607ad mpt_free_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x51d3d45b mpt_free_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x5b0bf7cd mpt_HardResetHandler EXPORT_SYMBOL drivers/message/fusion/mptbase 0x610b257e mpt_reset_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x666a38c1 mpt_Soft_Hard_ResetHandler -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x6790595c mpt_HardResetHandler -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x68aea8e0 mpt_raid_phys_disk_pg0 -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x6a91d3c6 mpt_reset_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x6d30e385 mptbase_sas_persist_operation -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x71740ff3 mpt_clear_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x6edadeec mpt_suspend EXPORT_SYMBOL drivers/message/fusion/mptbase 0x74a0134a mpt_device_driver_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7d34fa38 mpt_free_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x869fa272 mpt_resume -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x8716f0dc mpt_attach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x75e8fbda mpt_raid_phys_disk_pg1 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x88c7445c mpt_GetIocState +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x8d555eac mpt_halt_firmware EXPORT_SYMBOL drivers/message/fusion/mptbase 0x981efe92 mpt_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x9f0ff4aa mpt_put_msg_frame_hi_pri -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa10250b9 mpt_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa3d62adb mpt_findImVolumes -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa4c0a033 mpt_put_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xbdf4e124 mpt_device_driver_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc4cb6be1 mpt_set_taskmgmt_in_progress_flag -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc7f7628f mpt_get_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x9bc32b7e mpt_resume +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x9e0911d4 mpt_print_ioc_summary +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa1da13a8 mpt_free_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa91c8750 mpt_verify_adapter +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc329ae82 mpt_Soft_Hard_ResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc368e984 mpt_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc4492fd5 mpt_config +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc693e4b1 mpt_event_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd5525642 mpt_send_handshake_request +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd762a59e mpt_device_driver_register EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdd805159 ioc_list +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe5c0a69c mpt_raid_phys_disk_get_num_paths EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe6c1e126 mpt_event_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xfe4c2022 mpt_send_handshake_request -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x0c60768e mptscsih_dev_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x32e66089 mptscsih_abort -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x358463d4 mptscsih_flush_running_cmds -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x36425b50 mptscsih_show_info -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x419398f8 mptscsih_taskmgmt_response_code -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x44e37be8 mptscsih_slave_destroy -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x45d3c3aa mptscsih_scandv_complete -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x4b68ef48 mptscsih_shutdown -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x69850f1b mptscsih_bios_param -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7a40d8b9 mptscsih_info -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x80e921d9 mptscsih_resume -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x858695de mptscsih_ioc_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x8db48c1f mptscsih_raid_id_to_num -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x93880820 mptscsih_slave_configure -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x9450ddb5 mptscsih_taskmgmt_complete -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x95704767 mptscsih_is_phys_disk -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x9b0e85e0 mptscsih_change_queue_depth -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa1caefbb mptscsih_remove -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xbf5f27b5 mptscsih_IssueTaskMgmt -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc0d1f805 mptscsih_suspend -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd40513d6 mptscsih_get_scsi_lookup -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd438d586 mptscsih_io_done -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd48fc74c mptscsih_bus_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xdcd61538 mptscsih_host_attrs -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf6238c45 mptscsih_event_process -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf6964426 mptscsih_host_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xfe9feba7 mptscsih_qcmd -EXPORT_SYMBOL drivers/mfd/axp20x 0x427caf35 axp20x_device_remove -EXPORT_SYMBOL drivers/mfd/axp20x 0xe1125a66 axp20x_device_probe -EXPORT_SYMBOL drivers/mfd/axp20x 0xe63a1c47 axp20x_match_device -EXPORT_SYMBOL drivers/mfd/dln2 0x04f3bb8d dln2_unregister_event_cb -EXPORT_SYMBOL drivers/mfd/dln2 0xbecce8b8 dln2_register_event_cb -EXPORT_SYMBOL drivers/mfd/dln2 0xcbd79eb0 dln2_transfer -EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x759ada39 pasic3_write_register -EXPORT_SYMBOL drivers/mfd/htc-pasic3 0xaa8fd20c pasic3_read_register -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x0e45e79c mc13xxx_reg_rmw -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x1979dc5f mc13xxx_irq_unmask -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x332b0969 mc13xxx_irq_request -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x428c80f3 mc13xxx_irq_mask -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x4f644585 mc13xxx_unlock -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x5dd3ef44 mc13xxx_reg_write -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x6ff31e96 mc13xxx_get_flags -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x8840812e mc13xxx_irq_status -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x8922edf9 mc13xxx_irq_free -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x9af76f61 mc13xxx_lock -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xcea4b4d1 mc13xxx_reg_read +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xed181c8d mpt_detach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf926d487 mpt_put_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xfa7c3074 mpt_findImVolumes +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x0154b5be mptscsih_abort +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x03a0dbcd mptscsih_ioc_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x0a7d1a88 mptscsih_taskmgmt_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x0f75c6c2 mptscsih_resume +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x1fe52c46 mptscsih_slave_destroy +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x39e5b2c3 mptscsih_is_phys_disk +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3b88d78c mptscsih_remove +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x4354854c mptscsih_bios_param +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x6bfab9f1 mptscsih_dev_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x6eb8114f mptscsih_IssueTaskMgmt +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x6f7ff84d mptscsih_qcmd +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x70a49d57 mptscsih_taskmgmt_response_code +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x849e802b mptscsih_change_queue_depth +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x8c6e4e78 mptscsih_shutdown +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x90196bdc mptscsih_suspend +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x989da466 mptscsih_show_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa369ca6c mptscsih_bus_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xbae0b402 mptscsih_host_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc745265a mptscsih_flush_running_cmds +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xcb8be40f mptscsih_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd1701da5 mptscsih_raid_id_to_num +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd5f3964a mptscsih_scandv_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe140138d mptscsih_event_process +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe87b787d mptscsih_host_attrs +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xed196a67 mptscsih_get_scsi_lookup +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xedcea250 mptscsih_slave_configure +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xfa69e30e mptscsih_io_done +EXPORT_SYMBOL drivers/mfd/axp20x 0x586da430 axp20x_device_remove +EXPORT_SYMBOL drivers/mfd/axp20x 0xca07008b axp20x_device_probe +EXPORT_SYMBOL drivers/mfd/axp20x 0xde0684a2 axp20x_match_device +EXPORT_SYMBOL drivers/mfd/dln2 0x782016f5 dln2_unregister_event_cb +EXPORT_SYMBOL drivers/mfd/dln2 0x7cb0a651 dln2_register_event_cb +EXPORT_SYMBOL drivers/mfd/dln2 0xb3bff0c5 dln2_transfer +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x3fa36220 pasic3_write_register +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0xdd09551b pasic3_read_register +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x19001060 mc13xxx_irq_unmask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x28961924 mc13xxx_get_flags +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x46f65e26 mc13xxx_reg_rmw +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x638c42a3 mc13xxx_irq_status +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xaf3ac71b mc13xxx_reg_write +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xc2378028 mc13xxx_reg_read +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xcaea6350 mc13xxx_lock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xd0021d55 mc13xxx_irq_request +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xd4addbe1 mc13xxx_irq_mask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xe668f152 mc13xxx_irq_free +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xf0420f73 mc13xxx_unlock EXPORT_SYMBOL drivers/mfd/tps65010 0x02d4ad0f tps65013_set_low_pwr EXPORT_SYMBOL drivers/mfd/tps65010 0x0c6ad2cf tps65010_config_vdcdc2 EXPORT_SYMBOL drivers/mfd/tps65010 0x28485130 tps65010_config_vregs1 @@ -2424,209 +2433,216 @@ 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 0x1dfe1395 wm8994_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994 0x2fc4a80c wm8958_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994 0x3caa38c1 wm8994_irq_exit -EXPORT_SYMBOL drivers/mfd/wm8994 0x7da1c657 wm8994_base_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994 0x9f3d731f wm8994_irq_init -EXPORT_SYMBOL drivers/mfd/wm8994 0xb0a6aa21 wm1811_regmap_config -EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x7bdf1d63 ad_dpot_probe -EXPORT_SYMBOL drivers/misc/ad525x_dpot 0xf34a33d7 ad_dpot_remove +EXPORT_SYMBOL drivers/mfd/wm8994 0x1d04d5e7 wm8994_base_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0x5c86f3d3 wm8958_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0x6ebc484a wm8994_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0xb2bb0d9a wm8994_irq_init +EXPORT_SYMBOL drivers/mfd/wm8994 0xc3e4f1fe wm1811_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0xf6f91cd4 wm8994_irq_exit +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x6ce76509 ad_dpot_probe +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0xb1945d02 ad_dpot_remove EXPORT_SYMBOL drivers/misc/altera-stapl/altera-stapl 0x5bafa76e altera_init -EXPORT_SYMBOL drivers/misc/c2port/core 0x52ad1826 c2port_device_register -EXPORT_SYMBOL drivers/misc/c2port/core 0xc2183df6 c2port_device_unregister +EXPORT_SYMBOL drivers/misc/c2port/core 0x20629d5d c2port_device_register +EXPORT_SYMBOL drivers/misc/c2port/core 0x44a24891 c2port_device_unregister +EXPORT_SYMBOL drivers/misc/mei/dal/mei_dal 0x47777412 dal_create_session +EXPORT_SYMBOL drivers/misc/mei/dal/mei_dal 0x4c25c999 dal_close_session +EXPORT_SYMBOL drivers/misc/mei/dal/mei_dal 0x69a47046 dal_unset_ta_exclusive_access +EXPORT_SYMBOL drivers/misc/mei/dal/mei_dal 0x722a5d1e dal_get_version_info +EXPORT_SYMBOL drivers/misc/mei/dal/mei_dal 0x8937fe9a dal_uuid_parse +EXPORT_SYMBOL drivers/misc/mei/dal/mei_dal 0x9624881b dal_set_ta_exclusive_access +EXPORT_SYMBOL drivers/misc/mei/dal/mei_dal 0xe40bb920 dal_send_and_receive 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 0x2b7593ed __traceiter_mei_reg_read -EXPORT_SYMBOL drivers/misc/mei/mei 0x2d6b2360 __SCK__tp_func_mei_pci_cfg_read +EXPORT_SYMBOL drivers/misc/mei/mei 0x1cd15ab5 __SCK__tp_func_mei_reg_write +EXPORT_SYMBOL drivers/misc/mei/mei 0x2ca42956 __tracepoint_mei_reg_read +EXPORT_SYMBOL drivers/misc/mei/mei 0x2fe1bfc0 __traceiter_mei_reg_write +EXPORT_SYMBOL drivers/misc/mei/mei 0x335d86c3 __traceiter_mei_reg_read EXPORT_SYMBOL drivers/misc/mei/mei 0x3b0a488d __SCT__tp_func_mei_reg_read -EXPORT_SYMBOL drivers/misc/mei/mei 0x7182811f __SCK__tp_func_mei_reg_write -EXPORT_SYMBOL drivers/misc/mei/mei 0x7b27f0e2 __SCK__tp_func_mei_reg_read -EXPORT_SYMBOL drivers/misc/mei/mei 0x7baafe03 __tracepoint_mei_reg_read -EXPORT_SYMBOL drivers/misc/mei/mei 0xa11a6eed __traceiter_mei_pci_cfg_read -EXPORT_SYMBOL drivers/misc/mei/mei 0xa68fdeff __tracepoint_mei_reg_write -EXPORT_SYMBOL drivers/misc/mei/mei 0xc71bce31 __tracepoint_mei_pci_cfg_read -EXPORT_SYMBOL drivers/misc/mei/mei 0xfade4270 __traceiter_mei_reg_write +EXPORT_SYMBOL drivers/misc/mei/mei 0x692ae721 __SCK__tp_func_mei_pci_cfg_read +EXPORT_SYMBOL drivers/misc/mei/mei 0x7cfe7216 __traceiter_mei_pci_cfg_read +EXPORT_SYMBOL drivers/misc/mei/mei 0xbdd97553 __tracepoint_mei_reg_write +EXPORT_SYMBOL drivers/misc/mei/mei 0xd882fbcd __tracepoint_mei_pci_cfg_read +EXPORT_SYMBOL drivers/misc/mei/mei 0xf518b1f7 __SCK__tp_func_mei_reg_read +EXPORT_SYMBOL drivers/misc/tifm_core 0x01c74adb tifm_free_adapter EXPORT_SYMBOL drivers/misc/tifm_core 0x0ffb277f tifm_queue_work -EXPORT_SYMBOL drivers/misc/tifm_core 0x1e1d5063 tifm_free_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0x261334a8 tifm_eject -EXPORT_SYMBOL drivers/misc/tifm_core 0x387f3d35 tifm_add_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0x77f2cc53 tifm_register_driver -EXPORT_SYMBOL drivers/misc/tifm_core 0x7de6d03a tifm_has_ms_pif -EXPORT_SYMBOL drivers/misc/tifm_core 0xbc159248 tifm_alloc_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0xc7e3fe27 tifm_unmap_sg -EXPORT_SYMBOL drivers/misc/tifm_core 0xcec9ae86 tifm_alloc_device -EXPORT_SYMBOL drivers/misc/tifm_core 0xdc2aec18 tifm_map_sg -EXPORT_SYMBOL drivers/misc/tifm_core 0xe1584832 tifm_unregister_driver -EXPORT_SYMBOL drivers/misc/tifm_core 0xf3e5a452 tifm_free_device -EXPORT_SYMBOL drivers/misc/tifm_core 0xf4bb479c tifm_remove_adapter -EXPORT_SYMBOL drivers/mmc/host/cqhci 0x3093e237 cqhci_init -EXPORT_SYMBOL drivers/mmc/host/cqhci 0x4abd158e cqhci_resume -EXPORT_SYMBOL drivers/mmc/host/cqhci 0x5c5f31c5 cqhci_pltfm_init -EXPORT_SYMBOL drivers/mmc/host/cqhci 0x6a8aa85b cqhci_deactivate -EXPORT_SYMBOL drivers/mmc/host/cqhci 0xa3ab5828 cqhci_irq -EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0x0f0b75a1 mmc_spi_put_pdata -EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0xc448c95a mmc_spi_get_pdata -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x0846caba cfi_build_cmd -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x34dbbf9c cfi_merge_status -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xb610f13d cfi_build_cmd_addr -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xc063d635 cfi_send_gen_cmd -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xd0aa114d cfi_varsize_frob -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xd2420259 cfi_read_pri -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xff6b4fbc cfi_fixup +EXPORT_SYMBOL drivers/misc/tifm_core 0x146dac76 tifm_unmap_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0x149e6e96 tifm_map_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0x16bb8c8d tifm_alloc_device +EXPORT_SYMBOL drivers/misc/tifm_core 0x1cda5e7c tifm_add_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x2070589d tifm_register_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0x29a43db0 tifm_unregister_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0x2c2c8561 tifm_alloc_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x41f0a6a8 tifm_eject +EXPORT_SYMBOL drivers/misc/tifm_core 0x55a37d35 tifm_remove_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x77279b5e tifm_has_ms_pif +EXPORT_SYMBOL drivers/misc/tifm_core 0x828d0b78 tifm_free_device +EXPORT_SYMBOL drivers/mmc/host/cqhci 0x3aa6619d cqhci_init +EXPORT_SYMBOL drivers/mmc/host/cqhci 0x3be042b5 cqhci_deactivate +EXPORT_SYMBOL drivers/mmc/host/cqhci 0x59ba9ba0 cqhci_resume +EXPORT_SYMBOL drivers/mmc/host/cqhci 0x88b0a663 cqhci_irq +EXPORT_SYMBOL drivers/mmc/host/cqhci 0xa4cdef9a cqhci_pltfm_init +EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0x5c0e2034 mmc_spi_put_pdata +EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0x5db4209f mmc_spi_get_pdata +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x29fce718 cfi_build_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x2ea515a0 cfi_fixup +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x32ab0868 cfi_merge_status +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xc3b51175 cfi_varsize_frob +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xccbf5cd1 cfi_read_pri +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xd0c441cd cfi_build_cmd_addr +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xf0367f47 cfi_send_gen_cmd EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xff9fa623 cfi_udelay -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x07362ded map_destroy -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x6ccaef07 register_mtd_chip_driver -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x71ba324f do_map_probe -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xd9bdefd3 unregister_mtd_chip_driver -EXPORT_SYMBOL drivers/mtd/chips/gen_probe 0xccb3fc96 mtd_do_chip_probe -EXPORT_SYMBOL drivers/mtd/lpddr/lpddr_cmds 0xcf247d40 lpddr_cmdset +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x49fd7bd7 do_map_probe +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x9e565d44 map_destroy +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xab81b89e register_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xe2a8d40d unregister_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/gen_probe 0x465944ed mtd_do_chip_probe +EXPORT_SYMBOL drivers/mtd/lpddr/lpddr_cmds 0x3fe87c56 lpddr_cmdset EXPORT_SYMBOL drivers/mtd/maps/map_funcs 0xfef2bb24 simple_map_init -EXPORT_SYMBOL drivers/mtd/mtd 0x342581c0 mtd_concat_destroy -EXPORT_SYMBOL drivers/mtd/mtd 0x85e2af3b mtd_concat_create -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x0e9aee84 nand_ecc_init_ctx -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x0f7058b2 nand_ecc_sw_bch_correct -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x104abe4b of_get_nand_ecc_user_config -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x1c43aa4b nand_ecc_sw_hamming_calculate -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x355c6ec0 nand_ecc_sw_hamming_get_engine -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x3f9480b9 nand_ecc_cleanup_ctx -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x5a76a807 nand_ecc_sw_bch_init_ctx -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x5b52035c nand_ecc_sw_bch_calculate -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x5be477d3 nand_ecc_get_sw_engine -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x7c57669d nand_ecc_sw_bch_cleanup_ctx -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x90ee05c8 nand_ecc_sw_hamming_cleanup_ctx -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x94e5c2f5 nand_ecc_sw_hamming_init_ctx -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x9fc3afcd nand_ecc_sw_bch_get_engine -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xb3b88cd6 nand_ecc_sw_hamming_correct -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xc3a21999 nand_ecc_get_on_die_hw_engine -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xd76441a1 nand_ecc_prepare_io_req +EXPORT_SYMBOL drivers/mtd/mtd 0x352fde3e mtd_concat_destroy +EXPORT_SYMBOL drivers/mtd/mtd 0x84429400 mtd_concat_create +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x0dfaffdc nand_ecc_sw_hamming_init_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x18ad40a3 nand_ecc_cleanup_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x2877c616 nand_ecc_finish_io_req +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x35437286 of_get_nand_ecc_user_config +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x36acf5a1 nand_ecc_sw_bch_get_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x5ed5bffe nand_ecc_sw_bch_cleanup_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x677a56fd nand_ecc_sw_hamming_calculate +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x685d81a3 nand_ecc_init_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x68e8e139 nand_ecc_sw_hamming_get_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x76ce0343 nand_ecc_is_strong_enough +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x8446b8b0 nand_ecc_get_sw_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x93f7ce41 nand_ecc_sw_hamming_cleanup_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x9db0afce nand_ecc_sw_bch_correct +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xb7a9bef0 nand_ecc_sw_bch_calculate +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xcaf17537 nand_ecc_sw_hamming_correct +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xd0b91936 nand_ecc_prepare_io_req EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xe6db989b ecc_sw_hamming_correct -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xe76f04a5 nand_ecc_finish_io_req -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xfbc695e1 nand_ecc_is_strong_enough +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xed9286b9 nand_ecc_get_on_die_hw_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xf9d7cf84 nand_ecc_sw_bch_init_ctx EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xff4351b0 ecc_sw_hamming_calculate -EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0xa883feb3 flexonenand_region -EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0xb5b1bf9e onenand_addr -EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x05f1d441 denali_init +EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0x26d95eb4 flexonenand_region +EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0x8112265a onenand_addr +EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x06e3dbdd denali_init EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x30db096f denali_calc_ecc_bytes -EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0xe1368ccc denali_remove -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x10e966c8 nand_read_oob_std -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x2a91d5bd rawnand_sw_hamming_calculate -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x3a1fcfdf rawnand_sw_bch_init -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x58b37255 nand_scan_with_ids -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x5b6e59c2 rawnand_sw_bch_cleanup -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x7afff59d nand_write_page_raw -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x7d375535 nand_get_set_features_notsupp -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x831e79a9 nand_create_bbt -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x84367cbd rawnand_sw_hamming_cleanup +EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x8f6ad436 denali_remove +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x005e8d59 rawnand_sw_hamming_correct +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x19badf1a nand_read_page_raw +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x1eb6d17d nand_create_bbt +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x2cdd7760 nand_scan_with_ids +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x4ea2767b nand_read_oob_std +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x63f6f49e rawnand_sw_bch_init +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x640cd424 rawnand_sw_bch_correct +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x780e31e5 nand_monolithic_write_page_raw EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x8ecbb3b8 nand_check_erased_ecc_chunk -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x9622ddf0 nand_monolithic_read_page_raw -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xa4dedcc2 nand_monolithic_write_page_raw -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xaf380237 rawnand_sw_bch_correct -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xc388bfda rawnand_sw_hamming_init -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xce041adf rawnand_dt_parse_gpio_cs -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xe170311a rawnand_sw_hamming_correct -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xf067f7ff nand_read_page_raw -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xfae4a09b nand_write_oob_std -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x50e7e4b7 arcnet_close -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x5d936e74 arcnet_unregister_proto +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x8efed294 nand_monolithic_read_page_raw +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x915d9400 nand_write_page_raw +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x959a42e9 nand_write_oob_std +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xb8a6bcfe rawnand_sw_hamming_calculate +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xc088d60c rawnand_sw_hamming_init +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xd267f41f rawnand_sw_bch_cleanup +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xd6f9db61 rawnand_dt_parse_gpio_cs +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xde54bab9 nand_get_set_features_notsupp +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xe13f9af0 rawnand_sw_hamming_cleanup +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x1c2d941e arcnet_unregister_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x1ca0e370 arcnet_open +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x2448ce43 arc_proto_map +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x265febc3 arcnet_close +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x4066377d arc_raw_proto EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x76639833 arc_raw_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x7e38caeb arcnet_send_packet -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x9633fa02 arc_proto_default -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xb1b52461 alloc_arcdev -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xb4390c7b arc_bcast_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xce160488 arcnet_open -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xd710618e arc_proto_map -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xe680865b arcnet_timeout +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x8d11ae8d arc_proto_default +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x9a8aea88 free_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x9caae68c arc_bcast_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xad68ba3d alloc_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xc0ebb961 arcnet_send_packet EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecb730b0 arcnet_interrupt -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xef87694c free_arcdev -EXPORT_SYMBOL drivers/net/arcnet/com20020 0x24869c00 com20020_netdev_ops -EXPORT_SYMBOL drivers/net/arcnet/com20020 0x3b78af6f com20020_found -EXPORT_SYMBOL drivers/net/arcnet/com20020 0x9a3a8b07 com20020_check -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x0195401d b53_mirror_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x08a32228 b53_enable_port -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x090945ab b53_phylink_mac_link_state -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x092985f4 b53_disable_port -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x0d3cd2b4 b53_phylink_mac_link_down -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x197aab62 b53_fdb_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x1b8e9668 b53_get_mac_eee -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x1bcd6ed0 b53_mdb_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x1c08298d b53_br_join -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x31dc7976 b53_eee_enable_set -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x3a25a068 b53_get_strings -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x4abc4f8c b53_phylink_mac_link_up -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x5340b00e b53_switch_alloc -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x572f1fb9 b53_phylink_mac_an_restart -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x5a397e7f b53_switch_detect -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x65e71d0a b53_switch_register -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x683e1e4d b53_eee_init -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x68765260 b53_vlan_filtering -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x692e6d49 b53_configure_vlan -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x6e642b46 b53_port_event -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x70e139cd b53_phylink_mac_config -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x74a54ad5 b53_vlan_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x87140818 b53_get_tag_protocol -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x8c867327 b53_get_ethtool_stats -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x9a78ce7d b53_br_fast_age -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x9c626b46 b53_setup_devlink_resources -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa5d2cd27 b53_br_leave -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa8a272f3 b53_fdb_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xaba5e391 b53_brcm_hdr_setup -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb040da8f b53_get_sset_count -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb50d0663 b53_set_mac_eee -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xbc1bc4ad b53_imp_vlan_setup -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xca3591ff b53_get_ethtool_phy_stats -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xcc7ee8f3 b53_phylink_validate -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd56dcce6 b53_br_set_stp_state -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xdcde8810 b53_mirror_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xdefa53d8 b53_mdb_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xeb7617a8 b53_br_flags -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf14fa04b b53_br_flags_pre -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf2fc44fe b53_vlan_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf4cd4fa1 b53_fdb_dump -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x2f32d959 b53_serdes_link_state -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x3a0c3f70 b53_serdes_init -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xb41cfb99 b53_serdes_an_restart -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xe6f64f48 b53_serdes_phylink_validate -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xf000263f b53_serdes_config -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xfa9f75f8 b53_serdes_link_set -EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x12ac8567 lan9303_probe -EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x40d9bed8 lan9303_remove +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xf92c003c arcnet_timeout +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x3c0d5be6 com20020_netdev_ops +EXPORT_SYMBOL drivers/net/arcnet/com20020 0xe0c6c5de com20020_found +EXPORT_SYMBOL drivers/net/arcnet/com20020 0xfdc42e81 com20020_check +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x0bf1aecd b53_port_event +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x1b73bb49 b53_get_tag_protocol +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x1d28c5a2 b53_br_leave +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x26c93151 b53_imp_vlan_setup +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x26f84a50 b53_br_set_stp_state +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x2b4d7c6a b53_get_ethtool_stats +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x2b4f035a b53_phylink_mac_link_state +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x3816f23c b53_fdb_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x40e95924 b53_br_flags_pre +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x43e447ba b53_get_strings +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x495354ef b53_br_fast_age +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x53a117b1 b53_mdb_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x592edbaa b53_phylink_mac_config +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x6b435135 b53_configure_vlan +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x6c7fc9c7 b53_eee_init +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x704e250e b53_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x74b2160c b53_phylink_mac_an_restart +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x769e0aac b53_phylink_mac_link_down +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x76e8f5f8 b53_eee_enable_set +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x78b4d0e1 b53_fdb_dump +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x92ca4f47 b53_phylink_mac_link_up +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x98fdd48f b53_mdb_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x9ae5100c b53_vlan_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x9bb83d9b b53_phylink_validate +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa0b9562b b53_get_mac_eee +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa10302a7 b53_brcm_hdr_setup +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa9a1299a b53_setup_devlink_resources +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb1b5aef2 b53_fdb_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb6cdd717 b53_switch_register +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xba52a76c b53_mirror_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xba5e114c b53_vlan_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xbb1e1b68 b53_get_sset_count +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xbb8f9cc4 b53_br_flags +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xbb92bcfa b53_set_mac_eee +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc0673477 b53_get_ethtool_phy_stats +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc4e7e9b3 b53_vlan_filtering +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc9804e46 b53_br_join +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd025bbba b53_enable_port +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd74919bf b53_mirror_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xe03b8142 b53_disable_port +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xfdd79e16 b53_switch_detect +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x188d12cc b53_serdes_an_restart +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xadc0670b b53_serdes_link_state +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xaffbd81d b53_serdes_link_set +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xbd1f8490 b53_serdes_phylink_validate +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xd2a85d43 b53_serdes_init +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xd8555c77 b53_serdes_config +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x1869811f lan9303_shutdown +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xa5b812c3 lan9303_probe EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xada83f40 lan9303_register_set -EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xbf1a3e2b lan9303_shutdown -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz8795 0xe4e324c5 ksz8_switch_register -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz9477 0xc720064e ksz9477_switch_register -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0x2dcc2a6f ksz_switch_register -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0x8e54e9eb ksz_switch_alloc -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0xdb4e8177 ksz_switch_remove -EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x09a414b8 vsc73xx_remove -EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x5eb46d32 vsc73xx_probe +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xc6a7b627 lan9303_remove +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz8795 0x799b1b82 ksz8_switch_register +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz9477 0xe2517a67 ksz9477_switch_register +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0x962a9214 ksz_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0xc754ebb3 ksz_switch_remove +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0xf8d0241c ksz_switch_register +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x4cfe2825 vsc73xx_shutdown +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x6051b357 vsc73xx_remove EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x99d242fe vsc73xx_is_addr_valid -EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0xb8576a5a vsc73xx_shutdown -EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x5e348bb7 xrs700x_switch_register +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0xe418e04f vsc73xx_probe +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x04d5d69e xrs700x_switch_register +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x0d91fae2 xrs700x_switch_shutdown +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x4298c686 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 0xa2bc55e0 xrs700x_switch_shutdown -EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xaa8b4343 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 0xefae678c xrs700x_switch_remove -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x0c65359e ei_get_stats +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xd9c76873 xrs700x_switch_alloc EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x119721ac ei_interrupt -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x37a0fc22 ei_set_multicast_list -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x5425b44d __alloc_ei_netdev -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x682f09c6 ei_open -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x6c45296a NS8390_init -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x7346a709 ei_poll -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x7796b4ee ei_start_xmit -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x91ccc8ee ei_netdev_ops -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xa965a79a ei_close -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xe2a1cfad ei_tx_timeout -EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnxt/bnxt_en 0xd273a3ab bnxt_ulp_probe +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x11ecf0cb ei_close +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x2e9e7a3c ei_poll +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x3cc568af ei_netdev_ops +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x4bb9e867 ei_open +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x8e9dc758 ei_tx_timeout +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x90431a54 ei_get_stats +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x93c2ebe5 NS8390_init +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xaed2cf38 __alloc_ei_netdev +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xbb3be278 ei_start_xmit +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xd66f5874 ei_set_multicast_list +EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnxt/bnxt_en 0xe3915d4d bnxt_ulp_probe EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x636af174 cnic_unregister_driver -EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x77f900b3 cnic_register_driver -EXPORT_SYMBOL drivers/net/ethernet/cavium/common/cavium_ptp 0xb0b4f15f cavium_ptp_put -EXPORT_SYMBOL drivers/net/ethernet/cavium/common/cavium_ptp 0xcbde5d57 cavium_ptp_get +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0xb667580e cnic_register_driver +EXPORT_SYMBOL drivers/net/ethernet/cavium/common/cavium_ptp 0x03057665 cavium_ptp_put +EXPORT_SYMBOL drivers/net/ethernet/cavium/common/cavium_ptp 0xa65e1b71 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 @@ -2644,309 +2660,310 @@ 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 0x0275e2f0 cxgb3_queue_tid_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x1ab80c3c cxgb3_ofld_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x1db41631 cxgb3_free_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x290f0510 cxgb3_insert_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x3870011e cxgb3_remove_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x5150a4b4 dev2t3cdev -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x643bc2c9 cxgb3_alloc_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x68c7795a t3_l2e_free -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x72462fad t3_register_cpl_handler -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x86ffcbb6 t3_l2t_send_event -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x944f23f7 cxgb3_register_client -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x9d9f376c cxgb3_unregister_client -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xa9799787 t3_l2t_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xc1a7b5d4 cxgb3_alloc_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xe053a081 t3_l2t_send_slow -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xeaf5a17b cxgb3_free_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x02a3405b cxgb4_l2t_alloc_switching +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x16402ac7 cxgb3_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x1f239b30 cxgb3_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x23cee0a8 cxgb3_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x2772da47 cxgb3_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x649f4cc3 cxgb3_register_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x6d5c4005 cxgb3_insert_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x71d88d3e t3_l2t_send_event +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x7808f30a t3_register_cpl_handler +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x8da09d49 t3_l2e_free +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x9f52bab6 t3_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xb124e252 dev2t3cdev +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xbf04e3f9 t3_l2t_send_slow +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xc487ac02 cxgb3_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xd4ffe501 cxgb3_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xe3f8b747 cxgb3_queue_tid_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xfa4e55ee cxgb3_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x068a4f07 cxgb4_port_viid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x06c56f01 cxgb4_create_server6 +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x077d91f7 cxgb4_register_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x08ecd221 cxgb4_sync_txq_pidx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x09ce4da4 cxgb4_remove_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0abfb419 cxgb4_create_server_filter EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0f1a5528 cxgb4_unregister_uld -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x136d2eae cxgb4_dbfifo_count -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x17bffd80 cxgb4_get_srq_entry -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1a5adbd0 cxgb4_clip_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1c56c6cb cxgb4_ofld_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1e5b9c9d cxgb4_sync_txq_pidx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1f515218 cxgb4_l2t_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x33fca165 cxgb4_reclaim_completed_tx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x39b64b18 cxgb4_write_sgl -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4942db8a cxgb4_check_l2t_valid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4dd57525 cxgb4_l2t_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1179c996 cxgb4_map_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1f82934a cxgb4_port_idx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x239174da cxgb4_smt_alloc_switching +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x242f99ff cxgb4_ring_tx_db +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2fe04c70 cxgb4_crypto_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x32db6c51 cxgb4_get_srq_entry +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3a8fc251 cxgb4_port_chan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x48c9e3f2 cxgb4_write_partial_sgl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4c5ed38c cxgb4_update_root_dev_clip +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4fac23cd cxgb4_flush_eq_cache +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x50e4ea94 cxgb4_remove_tid EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x50ee5c07 cxgb4_best_aligned_mtu -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x526cbc24 cxgb4_create_server_filter -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x57439947 cxgb4_smt_alloc_switching -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5c302f11 cxgb4_crypto_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x61229bd7 cxgb4_clip_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6dab7758 cxgb4_map_skb -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x76e5d2ab cxgb4_inline_tx_skb -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x77bfe154 cxgb4_register_uld -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x780e09b3 cxgb4_read_tpte -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x79287671 cxgb4_create_server -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8201622f cxgb4_alloc_sftid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x871df2ae cxgb4_port_viid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8c510cb6 cxgb4_bar2_sge_qregs -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8d101c60 cxgb4_port_idx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8d2c3c67 cxgb4_immdata_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9235bc3d cxgb4_alloc_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9340c4a9 cxgb4_remove_server -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x937b956a cxgb4_remove_server_filter -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa119202b cxgb4_ring_tx_db -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa29450c7 cxgb4_alloc_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa485ec5b cxgb4_update_root_dev_clip +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x52b9a430 cxgb4_bar2_sge_qregs +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5e702265 cxgb4_reclaim_completed_tx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6556a565 cxgb4_iscsi_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x67f04333 cxgb4_read_sge_timestamp +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6c09c1ed cxgb4_l2t_alloc_switching +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6ff40464 cxgb4_write_sgl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7a4ea233 cxgb4_alloc_sftid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7cece8c5 cxgb4_inline_tx_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x829af92d cxgb4_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8b4b34cb cxgb4_check_l2t_valid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9ede291f cxgb4_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa0ca3a4d cxgb4_immdata_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa1c64c18 cxgb4_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa7b3ba4f cxgb4_get_tcp_stats EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa8db193f cxgb4_smt_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xaaabeced cxgb4_free_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xbf18d0ae cxgb4_port_e2cchan -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xbf5f63ae cxgb4_pktgl_to_skb -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc1c13954 cxgb4_port_chan -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc7f63f24 cxgb4_get_tcp_stats -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xcfed4bc1 cxgb4_l2t_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd175c549 cxgb4_remove_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd3183d78 cxgb4_read_sge_timestamp +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa94163de cxgb4_clip_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xaad4dd7f cxgb4_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xab764f44 cxgb4_read_tpte +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb84421fb cxgb4_dbfifo_count +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb888de57 cxgb4_l2t_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc088000f t4_cleanup_clip_tbl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xcb62faaa cxgb4_create_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd4eef81f cxgb4_clip_get EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd69a0294 cxgb4_best_mtu -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xdd23caf0 cxgb4_iscsi_init -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe013a1c6 t4_cleanup_clip_tbl -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe8ea92f7 cxgb4_free_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf21d5fa0 cxgb4_create_server6 -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf33a5c3a cxgb4_write_partial_sgl -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf61b1a35 cxgb4_flush_eq_cache -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf9e73974 cxgb4_select_ntuple +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xdbcba38d cxgb4_port_e2cchan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe1a4f7da cxgb4_l2t_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe8b0daf4 cxgb4_pktgl_to_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xef72c3ca cxgb4_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xefea0b40 cxgb4_select_ntuple +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf810ecbe cxgb4_remove_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xfb355027 cxgb4_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x0b251e12 cxgbi_ppm_ppods_reserve EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x1bdaafe1 cxgbi_tagmask_set -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x20e8a5f7 cxgb_find_route EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x255ab30f cxgb_get_4tuple -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x4d285dd6 cxgbi_ppm_ppods_reserve -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x55fad9ca cxgbi_ppm_ppod_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x5ab72237 cxgbi_ppm_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x5b40cce0 cxgbi_ppm_init -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x78511592 cxgbi_ppm_make_ppod_hdr -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xbbc447df cxgb_find_route6 -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x39677612 enic_api_devcmd_proxy_by_index -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x534b485f vnic_dev_get_res -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x57cf28ea vnic_dev_unregister -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xa222523c vnic_dev_get_pdev -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xd4d3683d vnic_dev_get_res_count -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xdd97bc54 vnic_dev_register -EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x2f8fea3c be_roce_register_driver +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x30345c33 cxgbi_ppm_make_ppod_hdr +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x725d89e4 cxgbi_ppm_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x8778e263 cxgbi_ppm_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xc1602dfa cxgb_find_route +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xea8e4db2 cxgbi_ppm_ppod_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xf54afef1 cxgb_find_route6 +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x3722b3ab vnic_dev_get_res +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x474a04d4 vnic_dev_get_pdev +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x5802bdd0 vnic_dev_unregister +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x8c9aa63e vnic_dev_get_res_count +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xae1035d3 vnic_dev_register +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xe40422bb enic_api_devcmd_proxy_by_index +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x2e470dad be_roce_unregister_driver EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x4e2e10d2 be_roce_mcc_cmd -EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x68dd93cb be_roce_unregister_driver -EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0x3899df45 iavf_register_client -EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0xf40b0aa9 iavf_unregister_client -EXPORT_SYMBOL drivers/net/ethernet/marvell/prestera/prestera 0x5b054202 prestera_device_unregister -EXPORT_SYMBOL drivers/net/ethernet/marvell/prestera/prestera 0x95e800e2 prestera_device_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x029f979f mlx4_is_eq_vector_valid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x085487a1 mlx4_gen_slaves_port_mgt_ev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1b70a9aa mlx4_SET_PORT_SCHEDULER -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1e0d8830 mlx4_gen_port_state_change_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1e1bf775 mlx4_ALLOCATE_VPP_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x23b75a14 mlx4_SET_PORT_PRIO2TC -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x27de2712 mlx4_test_interrupt -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x286e60ae mlx4_SET_PORT_general -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2d761042 mlx4_query_diag_counters -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x30577aa7 mlx4_gen_guid_change_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x34196c8a set_phv_bit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4186384f mlx4_SET_MCAST_FLTR -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4bb301b4 get_phv_bit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4db415ba mlx4_put_slave_node_guid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5c462f9d mlx4_release_eq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x60075071 mlx4_get_slave_node_guid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x625e7caf mlx4_SET_PORT_fcs_check -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6a165d5d mlx4_SET_PORT_qpn_calc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x74bd96a1 mlx4_get_module_info -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x758e6ff3 mlx4_is_slave_active -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x78c05758 mlx4_get_slave_port_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x79ceee9f mlx4_is_eq_shared -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7b4e7d04 mlx4_max_tc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7ea6ba58 mlx4_sync_pkey_table +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xcce5fd59 be_roce_register_driver +EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0xe1149282 iavf_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0xe768103b iavf_register_client +EXPORT_SYMBOL drivers/net/ethernet/marvell/prestera/prestera 0x1c4171f3 prestera_device_register +EXPORT_SYMBOL drivers/net/ethernet/marvell/prestera/prestera 0xa16c9feb prestera_device_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x099d0962 mlx4_gen_guid_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2fd32eb5 mlx4_SET_PORT_user_mtu +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3b33328f mlx4_get_slave_pkey_gid_tbl_len +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4369410f mlx4_eq_get_irq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4495713c mlx4_SET_PORT_PRIO2TC +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x457909ca mlx4_tunnel_steer_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x45caa753 mlx4_gen_slaves_port_mgt_ev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x46038fda mlx4_get_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x52b1644e mlx4_SET_PORT_BEACON +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x558b8e36 set_and_calc_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x64f44eb7 mlx4_gen_pkey_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x69f4e5b8 mlx4_query_diag_counters +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x776608d4 mlx4_SET_PORT_fcs_check +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x77800747 mlx4_sync_pkey_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7a6129af mlx4_assign_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7b718527 mlx4_SET_MCAST_FLTR +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7e66867c mlx4_get_is_vlan_offload_disabled EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fdde0b4 mlx4_handle_eth_header_mcast_prio -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x80cc40ab mlx4_gen_pkey_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x836ef4a0 mlx4_get_cpu_rmap -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x93352e5e mlx4_get_slave_pkey_gid_tbl_len -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x95a436fc mlx4_get_slave_from_roce_gid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x99f81b62 mlx4_eq_get_irq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9d994d44 mlx4_assign_eq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa9384f82 mlx4_SET_PORT_user_mtu -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xad19df8b mlx4_SET_PORT_user_mac -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xba559776 mlx4_SET_VPORT_QOS_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xba582d8c mlx4_SET_PORT_VXLAN -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xca057e5f mlx4_SET_PORT_BEACON -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcb7aac66 set_and_calc_slave_port_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcea99b02 mlx4_get_eqs_per_port -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcef3f714 mlx4_SET_VPORT_QOS_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd099ca02 mlx4_get_is_vlan_offload_disabled -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd2beaa66 mlx4_get_roce_gid_from_slave -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe48011c8 mlx4_test_async -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe6ef7308 mlx4_tunnel_steer_add -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xecc9500c mlx4_get_parav_qkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xffb3c943 mlx4_ALLOCATE_VPP_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x026439ba mlx5_fpga_sbu_conn_create -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x07135860 mlx5_rsc_dump_cmd_create -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x07a4dd5d mlx5_core_alloc_transport_domain -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0e83773a mlx5_get_fdb_sub_ns -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x10e91f37 __tracepoint_mlx5_fs_del_ft -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x11931375 mlx5_eq_update_ci -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x17d3f105 mlx5_get_uars_page -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1822d973 mlx5_debug_qp_remove -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x19b08af1 mlx5_fc_create -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x19cc0c22 mlx5_comp_irq_get_affinity_mask -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1b62246e mlx5_del_flow_rules -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1da323f9 mlx5_modify_header_alloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1e1ea10b mlx5_core_detach_mcg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1e4215c8 mlx5_cmd_exec_cb -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1f084461 mlx5_lag_is_sriov -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x20d5fbaf mlx5_fpga_sbu_conn_sendmsg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x21281d90 mlx5_eq_notifier_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2447280b __SCK__tp_func_mlx5_fs_add_ft -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x25ec55a9 mlx5_rl_add_rate_raw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x266f1610 mlx5_lag_get_roce_netdev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x27ce66d0 mlx5_lag_get_peer_mdev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x29208f0a mlx5_core_modify_cq_moderation -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2b0ff090 mlx5_eswitch_vport_match_metadata_enabled -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2b22a510 mlx5_free_bfreg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2b6e327e __tracepoint_mlx5_fs_del_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2db55b08 mlx5_core_query_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2dc3d5fb mlx5_add_flow_rules -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x31b42a0e mlx5_core_destroy_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x33118cac mlx5_fpga_mem_write -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x331fd113 mlx5_create_flow_group -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x34a5c4fa mlx5_lag_is_master -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x369ba525 __traceiter_mlx5_fs_del_fg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x39086ee2 mlx5_core_attach_mcg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3b9f9e4f mlx5_core_create_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3c5264f1 mlx5_core_query_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3c86bda2 mlx5_packet_reformat_dealloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3ccd8f37 mlx5_lag_get_slave_port -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3cd85e98 mlx5_cmd_init_async_ctx -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3dce6eb1 mlx5_cmd_exec -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3e4a3182 mlx5_destroy_flow_group -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4214e003 mlx5_core_destroy_tis -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x42f813c4 mlx5_eq_create_generic -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x438ffda3 mlx5_fs_remove_rx_underlay_qpn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x445b60d2 mlx5_core_create_tir -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x453480d1 __tracepoint_mlx5_fs_set_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x45a86999 __SCK__tp_func_mlx5_fs_add_fg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x465e28cd mlx5_get_flow_namespace +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x80034b2a mlx4_test_async +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x909b7fdc mlx4_test_interrupt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x92cf061c mlx4_get_slave_from_roce_gid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9704f33e mlx4_SET_PORT_user_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9c763903 mlx4_get_eqs_per_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa2cd65e0 mlx4_is_eq_shared +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa2d5f028 mlx4_ALLOCATE_VPP_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa6af32b0 mlx4_gen_port_state_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xabb17343 mlx4_get_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaf7cfbc8 mlx4_SET_PORT_SCHEDULER +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb6280167 mlx4_SET_PORT_general +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xba6416c7 mlx4_get_roce_gid_from_slave +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbcdf4c33 mlx4_max_tc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc5cb92e4 mlx4_release_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcc710fea mlx4_ALLOCATE_VPP_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd40918d3 set_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xda7f9dc5 mlx4_put_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe04a4a8e mlx4_SET_PORT_VXLAN +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe1523f4a mlx4_is_slave_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe40d40ea get_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe64d9758 mlx4_get_parav_qkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe7587807 mlx4_get_cpu_rmap +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe88944e6 mlx4_is_eq_vector_valid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xee2719f3 mlx4_SET_PORT_qpn_calc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xefa0c317 mlx4_SET_VPORT_QOS_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfaf24ac4 mlx4_SET_VPORT_QOS_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfb6e224e mlx4_get_module_info +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x019fd114 mlx5_core_create_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0203829e mlx5_eq_destroy_generic +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x032a38b2 __SCK__tp_func_mlx5_fs_del_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x03d5b88b mlx5_cmd_exec_polling +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0499c788 __tracepoint_mlx5_fs_del_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x06bb2519 mlx5_eswitch_vport_rep +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x06d2b2da mlx5_eswitch_add_send_to_vport_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x08828370 mlx5_eswitch_vport_match_metadata_enabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x08bda358 mlx5_core_alloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0a2aafdd mlx5_fc_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0ae0613d mlx5_rl_is_in_range +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0c2d8397 mlx5_rl_remove_rate_raw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x10415f2c mlx5_qp_debugfs_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x10da80ce __tracepoint_mlx5_fs_add_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x12467afe mlx5_qp_debugfs_cleanup +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x16e56066 mlx5_core_destroy_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x193e3a88 mlx5_core_query_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x19c8d29a mlx5_modify_header_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1bcc4bad mlx5_fc_create +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 0x219eb957 mlx5_fs_add_rx_underlay_qpn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x23275871 mlx5_packet_reformat_dealloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x23e63fd4 mlx5_modify_header_dealloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x260f25b0 mlx5_eq_get_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2621c717 mlx5_put_uars_page +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x271914b1 mlx5_debug_qp_remove +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2ad2190d __tracepoint_mlx5_fs_del_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2bf5c882 mlx5_lag_is_sriov +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2c466945 mlx5_vector2eqn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2e7986da mlx5_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2ea2bf2f mlx5_fpga_sbu_conn_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2ee78d61 mlx5_core_dealloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2f799a84 mlx5_eswitch_get_encap_mode +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3112ac52 mlx5_rsc_dump_next +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x33bdccab mlx5_eq_create_generic +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3644aaf5 mlx5_fpga_sbu_conn_sendmsg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x384c77ab mlx5_fc_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3a2874f6 mlx5_debugfs_root +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3defb00b mlx5_alloc_bfreg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3e16d617 mlx5_cmd_alloc_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x40cec4f8 mlx5_core_destroy_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x410e8c9d __SCK__tp_func_mlx5_fs_del_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x447cc817 mlx5_core_query_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x45c00cfa mlx5_notifier_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x49580652 mlx5_create_auto_grouped_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4a2eb5df mlx5_eswitch_unregister_vport_reps -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4f0f818c mlx5_fc_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x49b05d02 mlx5_fpga_sbu_conn_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4b3d589f __tracepoint_mlx5_fs_del_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4bff8680 __tracepoint_mlx5_fw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4ddd726b mlx5_eq_disable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4ffb4eb5 mlx5_core_modify_cq EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x503f3c9d __traceiter_mlx5_fs_add_ft -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x50f78b57 mlx5_notifier_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x53c5dc4e mlx5_qp_debugfs_init -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5537c042 mlx5_core_create_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x50c0406d mlx5_eq_update_ci +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x52ad74e5 __SCK__tp_func_mlx5_fw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x55410304 mlx5_core_create_psv EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x55b88c73 mlx5_create_lag_demux_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x55f2d196 __SCK__tp_func_mlx5_fs_del_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x56ba03f8 mlx5_vector2eqn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5acbede8 __traceiter_mlx5_fs_set_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5bbed3d2 mlx5_eq_disable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x584183d5 mlx5_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x609d9280 mlx5_core_attach_mcg EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x60ae791f __traceiter_mlx5_fs_del_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x60b9ca9c mlx5_comp_vectors_count 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 0x618d45bf mlx5_core_query_vendor_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x61e28e67 mlx5_core_query_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x62c57920 __SCK__tp_func_mlx5_fs_del_fg 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 0x6797ddc1 mlx5_eswitch_add_send_to_vport_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x67984ea1 mlx5_fs_add_rx_underlay_qpn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x68abd5dc __SCK__tp_func_mlx5_fs_set_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6c9224d5 mlx5_notifier_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6cd01dec mlx5_cmd_cleanup_async_ctx -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x71065ea5 __tracepoint_mlx5_fs_del_fg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x718e7f8c mlx5_cmd_exec_polling -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x731d0bb4 mlx5_cmd_destroy_vport_lag -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x73c8e237 mlx5_core_create_rqt -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x73f605a7 mlx5_eq_get_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x780377ed mlx5_core_destroy_rqt -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x79b24e6e mlx5_cmd_free_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7a056515 mlx5_eq_notifier_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7d1e3b3d mlx5_eswitch_get_vport_metadata_for_match -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8172d74d mlx5_alloc_bfreg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x82d8425b __traceiter_mlx5_fs_del_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8492206e mlx5_core_dealloc_pd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x84f7542d mlx5_nic_vport_disable_roce -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x85348e54 mlx5_rl_remove_rate -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x876ae6e7 mlx5_debugfs_root -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x88b88989 mlx5_core_modify_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x890b3e93 mlx5_lag_is_shared_fdb -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8d539fc8 __SCK__tp_func_mlx5_fs_del_ft -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9031f307 mlx5_core_destroy_tir -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x90904f4e __traceiter_mlx5_fs_add_fg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x90e37b2b mlx5_eswitch_get_encap_mode -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x90e52a26 mlx5_put_uars_page -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x91433f5c mlx5_eq_enable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x647e135d mlx5_core_destroy_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6484bd77 mlx5_mpfs_del_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x66c2618a mlx5_mpfs_add_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x69340ac0 mlx5_eswitch_unregister_vport_reps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6d100cc2 mlx5_lag_is_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7055bb70 mlx5_rl_remove_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x70a65c09 mlx5_query_ib_port_oper +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x737a2b2a mlx5_fpga_get_sbu_caps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x754abbb3 mlx5_core_create_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x76efa552 __traceiter_mlx5_fs_del_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x770e0505 mlx5_core_modify_cq_moderation +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x788ec4f1 mlx5_core_destroy_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7af92ba4 mlx5_fs_remove_rx_underlay_qpn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7b9c1cce mlx5_cmd_free_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7c2c935f mlx5_comp_irq_get_affinity_mask +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7c9eb1fc __traceiter_mlx5_fs_add_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7d42f36e __SCK__tp_func_mlx5_fs_add_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x81402df8 mlx5_cmd_init_async_ctx +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x81862934 mlx5_lag_get_peer_mdev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x819d8d69 mlx5_free_bfreg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x83c6aece __tracepoint_mlx5_fs_add_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x84513a63 mlx5_get_fdb_sub_ns +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8d02040d mlx5_rl_add_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8d4ba865 mlx5_cmd_create_vport_lag +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8d801215 mlx5_eswitch_register_vport_reps EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x91443f27 mlx5_create_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9201c3dc mlx5_lag_is_roce -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x941ade82 mlx5_core_query_sq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x945c197a mlx5_modify_header_dealloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x95062036 mlx5_fpga_mem_read +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x92a91430 mlx5_fpga_mem_read +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x93d6e96a mlx5_core_create_tir EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96eb2c99 mlx5_fc_id -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x974679e7 mlx5_eswitch_get_vport_metadata_for_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x98f5065e mlx5_eswitch_vport_rep -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x991859e8 mlx5_core_query_vendor_id -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9ab14c81 mlx5_eswitch_get_core_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9c5c7a9c mlx5_query_ib_port_oper +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x98dd1d41 mlx5_core_destroy_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9b5bb0b2 mlx5_lag_is_roce +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9b8a9111 mlx5_lag_is_master +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9cc6698f mlx5_eq_notifier_unregister 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 0x9dde81b4 mlx5_eswitch_get_proto_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9e6c2185 mlx5_core_create_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9ebc39c8 __tracepoint_mlx5_fs_add_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa1a71565 mlx5_eswitch_uplink_get_proto_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa5aaec82 mlx5_eq_destroy_generic -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa812363f __traceiter_mlx5_fs_del_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa944bfbd mlx5_rl_add_rate -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa9bf1f12 mlx5_rdma_rn_get_params -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaa3f3c2e mlx5_lag_query_cong_counters -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xab2dda24 mlx5_core_destroy_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9d627f4c __tracepoint_mlx5_fs_set_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa280f1ed mlx5_cmd_destroy_vport_lag +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa5088b78 __tracepoint_mlx5_fs_del_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa5794730 mlx5_add_flow_rules +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa6bb79b1 __traceiter_mlx5_fs_set_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa71aec20 mlx5_packet_reformat_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa735048f mlx5_create_flow_group +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaa3e8f71 __SCK__tp_func_mlx5_fs_add_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xac140384 mlx5_core_create_rqt 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 0xad5a0cd5 mlx5_rsc_dump_next +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xad05fbfd mlx5_rdma_rn_get_params 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 0xae8ae0ac __traceiter_mlx5_fs_del_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaeec282f mlx5_cmd_exec_cb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaf07bdd9 mlx5_eswitch_reg_c1_loopback_enabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb063d90b mlx5_lag_query_cong_counters 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 0xb49175db mlx5_eswitch_register_vport_reps +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 0xb31bf813 mlx5_debug_qp_add 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 0xb60d8619 mlx5_cmd_create_vport_lag -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb7233797 mlx5_debug_qp_add -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb86addae mlx5_fpga_get_sbu_caps -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb8f59185 mlx5_rl_remove_rate_raw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb9fda8f4 __tracepoint_mlx5_fs_add_ft -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc045def7 mlx5_rl_is_in_range -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc219abcb mlx5_cmd_alloc_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc2757600 mlx5_core_modify_tis -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc31c8b82 mlx5_eswitch_reg_c1_loopback_enabled -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc3500b97 mlx5_mpfs_del_mac -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc443dbd8 mlx5_core_destroy_psv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc5cc5bd2 mlx5_core_create_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc9448a43 mlx5_core_dealloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb4eb8741 mlx5_rsc_dump_cmd_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb5338b3b mlx5_del_flow_rules +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb65be970 mlx5_eswitch_uplink_get_proto_dev +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 0xbb0ab561 mlx5_lag_get_slave_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbceb902d mlx5_core_detach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbdef20fc __traceiter_mlx5_fw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbfc0410e mlx5_eswitch_get_proto_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbffca10f mlx5_eswitch_get_vport_metadata_for_match +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbffd083c mlx5_core_destroy_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc05fe803 mlx5_core_query_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc3f60610 mlx5_core_create_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc45614d4 mlx5_core_modify_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc890f8d8 __SCK__tp_func_mlx5_fs_del_rule 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 0xcdcfb507 mlx5_fpga_sbu_conn_destroy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcfb01acb mlx5_core_alloc_pd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd047e924 mlx5_core_roce_gid_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd523519b mlx5_fc_destroy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd812e966 __tracepoint_mlx5_fs_add_fg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd892661c mlx5_core_destroy_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcb64f6bf mlx5_get_uars_page +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcbd1cee3 __SCK__tp_func_mlx5_fs_add_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xce8cf08f mlx5_core_dealloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcf9f448b mlx5_core_alloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd2f63015 mlx5_cmd_cleanup_async_ctx +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd6a77620 mlx5_eswitch_get_vport_metadata_for_set EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd8a12a67 mlx5_destroy_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd90053c2 mlx5_packet_reformat_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd8d8f54c mlx5_eq_enable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd8f53459 __SCK__tp_func_mlx5_fs_set_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd923ab57 mlx5_buf_alloc 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 0xdccf3815 __tracepoint_mlx5_fs_del_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xddf2fe33 __traceiter_mlx5_fw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdf363e91 __SCK__tp_func_mlx5_fw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdc079238 mlx5_nic_vport_disable_roce 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 0xe020da20 __SCK__tp_func_mlx5_fs_add_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe1247e00 mlx5_comp_vectors_count -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe296aff6 mlx5_buf_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe1283a19 mlx5_core_roce_gid_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe1c852a4 mlx5_core_modify_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe229ef5c __tracepoint_mlx5_fs_add_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe2d6f15b mlx5_rl_add_rate_raw 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 0xe401e5bf mlx5_qp_debugfs_cleanup -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe5134552 mlx5_core_modify_sq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xecbcde5a __SCK__tp_func_mlx5_fs_del_fg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xee3e7368 mlx5_core_modify_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf1506d18 __SCK__tp_func_mlx5_fs_del_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf1cc9840 mlx5_lag_is_active -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf5b1bb55 __traceiter_mlx5_fs_add_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf9b11259 mlx5_core_query_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfb67693a mlx5_mpfs_add_mac -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfbba551f mlx5_core_create_psv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xff7a942a __tracepoint_mlx5_fw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxfw/mlxfw 0x54a6140b mlxfw_firmware_flash -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x00e34fa4 mlxsw_core_ptp_transmitted +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe33a2f4d mlx5_lag_get_roce_netdev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe7c84e09 mlx5_eq_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xedf8691a mlx5_fpga_mem_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xee31f40d mlx5_core_create_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xef640c9f mlx5_core_modify_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf354e826 mlx5_eswitch_get_core_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf50f4d60 mlx5_core_destroy_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf9967793 mlx5_lag_is_shared_fdb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfeae6cda mlx5_get_flow_namespace +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxfw/mlxfw 0xef973e77 mlxfw_firmware_flash 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 0x0a88a404 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 0x0e81c09c mlxsw_afk_destroy EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x120a1738 mlxsw_core_port_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x13d7a023 mlxsw_afa_block_append_mirror EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x15801382 mlxsw_afk_key_info_put +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x1876c067 mlxsw_core_driver_unregister EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x18b0ad00 mlxsw_afa_block_append_police +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x195873ea mlxsw_core_skb_transmit EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x19fa5852 mlxsw_core_flush_owq EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x1c6605f6 mlxsw_afa_block_append_qos_switch_prio EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x1cb8f858 mlxsw_reg_trans_query @@ -2954,28 +2971,32 @@ EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x21daf3af mlxsw_afa_block_append_qos_dsfield EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x23eddc68 mlxsw_core_cpu_port_init EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2c68ced3 mlxsw_core_read_frc_h +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2cbdfd1f mlxsw_core_port_devlink_port_get EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x30d72838 mlxsw_env_get_module_eeprom_by_page +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x356df5c9 mlxsw_core_trap_state_set EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x35ba2254 mlxsw_afk_values_add_u32 -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x36100d22 mlxsw_core_rx_listener_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x38185d87 mlxsw_afa_block_append_qos_ecn EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x406b4614 mlxsw_afa_block_append_counter -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4185a985 mlxsw_core_port_eth_set 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 0x484489a4 mlxsw_cmd_exec EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4a6ed376 mlxsw_core_port_fini EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4b0bae55 mlxsw_core_kvd_sizes_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x55cf260a mlxsw_core_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4d523c10 mlxsw_core_trap_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x540e1be8 mlxsw_afa_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x59b2b121 mlxsw_env_get_module_eeprom EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5a099407 mlxsw_afa_block_append_qos_dscp -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5b54d40d mlxsw_core_skb_receive 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 EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x618a30ab mlxsw_afa_block_commit EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x61ea9293 mlxsw_core_event_listener_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x63874d4c mlxsw_core_port_driver_priv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x639f6e0a mlxsw_core_port_eth_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x648fa112 mlxsw_core_skb_receive EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x65e16da4 mlxsw_afk_key_info_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x685d5286 mlxsw_core_trap_unregister EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x692ac04e mlxsw_afk_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x69c5a6a7 mlxsw_core_rx_listener_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x6fd557ee mlxsw_core_trap_unregister EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x71e1d813 mlxsw_core_port_clear EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x749556a2 mlxsw_afk_key_info_subset EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x74eb7c9e mlxsw_core_res_valid @@ -2984,21 +3005,19 @@ EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7f659d4c mlxsw_afa_block_append_vlan_modify 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 0x85893564 mlxsw_core_trap_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x858c30d0 mlxsw_afa_block_create EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x86a40342 mlxsw_core_res_get EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x87b88710 mlxsw_core_event_listener_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x8820a5cd mlxsw_core_rx_listener_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x8854d198 mlxsw_reg_write -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x8b95e94c mlxsw_afa_block_append_mirror EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x8ba5fa7e mlxsw_core_lag_mapping_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x8fa7178f mlxsw_core_trap_state_set EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x902c3533 mlxsw_core_schedule_dw EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x97035a9c mlxsw_afa_block_append_fid_set EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x97cf0ab9 mlxsw_core_port_is_xm EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x996c5d6d mlxsw_reg_trans_bulk_wait -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x99d81bc4 mlxsw_core_port_devlink_port_get 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 0xa1ab0ee3 mlxsw_core_driver_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa7765e88 mlxsw_reg_query EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb5e762fa mlxsw_afk_values_add_buf EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb6517b2e mlxsw_afa_block_append_trap_and_forward @@ -3007,14 +3026,12 @@ EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbbb7a867 mlxsw_afa_block_append_sampler EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbc222a8d mlxsw_afk_clear EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbe82d6cc mlxsw_env_get_module_info +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbe836404 mlxsw_core_bus_device_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbfb7df3c mlxsw_core_driver_priv EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbfd01f33 mlxsw_core_port_ib_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc2f91ac3 mlxsw_core_bus_device_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc9c2e4cc mlxsw_core_lag_mapping_clear EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xca257489 mlxsw_afa_block_append_fwd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xcb4299f7 mlxsw_core_skb_transmit EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xcbab836f mlxsw_core_fw_rev_minor_subminor_validate -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xcbadd287 mlxsw_core_driver_unregister EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd1a82f0b mlxsw_core_lag_mapping_get EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd252e62d mlxsw_core_skb_transmit_busy EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd28256cf mlxsw_afa_block_append_allocated_counter @@ -3028,98 +3045,97 @@ EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdeb1dc2e mlxsw_afa_block_first_kvdl_index EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe16986dd mlxsw_afa_block_activity_get EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xecab212a mlxsw_afa_cookie_lookup -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xed591267 mlxsw_afa_create EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf2ca3bae mlxsw_core_res_query_enabled EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf4909bea mlxsw_core_port_type_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf5b95a13 mlxsw_env_get_module_eeprom +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xfd1bf590 mlxsw_core_ptp_transmitted EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xff007c25 mlxsw_core_cpu_port_fini -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0x5448bc32 mlxsw_i2c_driver_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0xe3567c22 mlxsw_i2c_driver_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0x4365e0d0 mlxsw_pci_driver_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0x6c77b30f mlxsw_pci_driver_unregister -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x03084c35 ocelot_port_policer_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0781ad10 ocelot_ptp_adjfine -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0ae8ebf0 ocelot_ptp_verify -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0f9d5aa5 ocelot_deinit_port -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x15b36c46 ocelot_get_txtstamp -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1a4eaa88 ocelot_sb_occ_tc_port_bind_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1c95f1d9 ocelot_get_ts_info -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1d3f5c58 ocelot_apply_bridge_fwd_mask -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1ea48942 ocelot_fdb_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x24bef681 ocelot_vlan_del +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0x151d4d65 mlxsw_i2c_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0xe9bc9947 mlxsw_i2c_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0x276e1df4 mlxsw_pci_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0x89432cfb mlxsw_pci_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x019ad2e2 ocelot_sb_pool_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0632df8a ocelot_mrp_del_ring_role +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x08ac0e54 ocelot_get_ts_info +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x121a987e ocelot_devlink_sb_register +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x16507680 ocelot_mact_learn +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x195810b1 ocelot_port_policer_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1e37d5b8 ocelot_init_port +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x201d76e2 ocelot_sb_occ_max_clear EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x274a0e05 ocelot_port_fdb_do_dump -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x298f29e2 ocelot_devlink_sb_unregister -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2cacdf99 ocelot_port_lag_change -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2fc6ac39 ocelot_sb_occ_snapshot -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x327b385a ocelot_mrp_del_ring_role -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x34306655 ocelot_port_bridge_join -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x378ff314 ocelot_vlan_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3c0f2f5b ocelot_port_txtstamp_request -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x41a815d0 ocelot_mact_learn -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x43e216e6 ocelot_bridge_stp_state_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4eb7c8d7 ocelot_init_timestamp -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x530e7d5f ocelot_init -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5a84121d ocelot_sb_tc_pool_bind_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5b1c2baf ocelot_ptp_gettime64 -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5d19cc1c ocelot_port_bridge_leave -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5edb515f ocelot_drain_cpu_queue -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x60715066 ocelot_deinit -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6887e217 ocelot_port_set_maxlen -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6df70a77 ocelot_sb_port_pool_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7fd621c3 ocelot_deinit_timestamp -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x81eea3b5 ocelot_port_lag_join -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x83e81d9d ocelot_get_sset_count +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2811e4c7 ocelot_get_strings +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2a0b0343 ocelot_ptp_settime64 +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2c0c9b03 ocelot_mrp_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2ec59916 ocelot_port_lag_change +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2fc409f8 ocelot_get_sset_count +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x317fab3a ocelot_port_set_maxlen +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x351113df ocelot_can_inject +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4c178a87 ocelot_sb_pool_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x504b7a04 ocelot_port_bridge_join +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x528a13f7 ocelot_vlan_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x528b7505 ocelot_ptp_enable +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x556bb29f ocelot_mact_forget +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x56be5396 ocelot_mrp_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5f0d5de4 ocelot_port_mdb_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x606ae547 ocelot_sb_tc_pool_bind_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x61523b62 ocelot_ptp_gettime64 +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6308e6f9 ocelot_deinit_timestamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x74704a9e ocelot_port_policer_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x76bb9dac ocelot_sb_port_pool_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x79a78a22 ocelot_port_bridge_leave +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7a8e17a9 ocelot_port_txtstamp_request +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7ba8c077 ocelot_port_inject_frame +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7c9e9eef ocelot_vlan_prepare +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7d50046f ocelot_port_bridge_flags +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x83531933 ocelot_port_pre_bridge_flags +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8448efe1 ocelot_port_lag_join EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8a85c6a8 ocelot_vcap_block_find_filter_by_id -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8da49255 ocelot_ptp_enable -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x926f48b5 ocelot_can_inject -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x93a37b81 ocelot_port_vlan_filtering -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9a9e8e24 ocelot_sb_occ_max_clear -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9b8822bc ocelot_get_max_mtu -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa11cf4fa ocelot_get_ethtool_stats -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa6610e9a ocelot_devlink_sb_register -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa666d142 ocelot_get_strings -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa72edfab ocelot_port_policer_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa8148563 ocelot_sb_tc_pool_bind_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa8d927eb ocelot_port_bridge_flags -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xae59e3e7 ocelot_init_port -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb0b2ab8b ocelot_ptp_adjtime -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb1b20587 ocelot_sb_occ_port_pool_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb214bd3f ocelot_vcap_filter_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb5a57de8 ocelot_vlan_prepare -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb7f17435 ocelot_hwstamp_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc2b71551 ocelot_fdb_dump -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc4939615 ocelot_port_inject_frame -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc4a8eab3 ocelot_xtr_poll_frame -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc9caa6f7 ocelot_port_mdb_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd2089a6a ocelot_fdb_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd4f3c306 ocelot_ptp_settime64 -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd6786b63 ocelot_sb_port_pool_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xddac74c0 ocelot_vcap_filter_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe0fe3861 ocelot_mrp_add_ring_role -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xed0f9d73 ocelot_port_pre_bridge_flags -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xed600d18 ocelot_sb_pool_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xedb7b31c ocelot_set_ageing_time -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf32dccb2 ocelot_port_lag_leave -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf6529c5b ocelot_port_mdb_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf808b2ca ocelot_mrp_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfafba8ec ocelot_hwstamp_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfc381238 ocelot_mrp_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfdef31eb ocelot_sb_pool_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfe25c1e8 ocelot_mact_forget +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8d355151 ocelot_init +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x93ee9166 ocelot_fdb_dump +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x94896942 ocelot_port_lag_leave +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x97538502 ocelot_port_vlan_filtering +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9c0c7357 ocelot_sb_port_pool_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9c4d796c ocelot_set_ageing_time +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa0ab0160 ocelot_apply_bridge_fwd_mask +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa3a527e7 ocelot_init_timestamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa52baa01 ocelot_get_max_mtu +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa5a72913 ocelot_sb_occ_port_pool_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa935e941 ocelot_fdb_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa9936f1a ocelot_ptp_verify +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb93cd7bc ocelot_hwstamp_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb97cd61b ocelot_hwstamp_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbab5108e ocelot_vcap_filter_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbc6c2e4d ocelot_fdb_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbf84b4c1 ocelot_deinit_port +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc633acb2 ocelot_sb_occ_tc_port_bind_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xcb213e96 ocelot_get_ethtool_stats +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xcbd06fcc ocelot_vcap_filter_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xcdead52b ocelot_sb_tc_pool_bind_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xce9be898 ocelot_deinit +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd2dbe808 ocelot_drain_cpu_queue +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd638cb4e ocelot_get_txtstamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd8b9ef9b ocelot_sb_occ_snapshot +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xdf5d7043 ocelot_xtr_poll_frame +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe46bed69 ocelot_vlan_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe618886f ocelot_port_mdb_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe8ac6df4 ocelot_ptp_adjfine +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xea3f2ec8 ocelot_ptp_adjtime +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf6e50aa3 ocelot_devlink_sb_unregister +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf6f5b561 ocelot_mrp_add_ring_role +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfd729b04 ocelot_bridge_stp_state_set +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x16c02100 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 0x7711017e qed_get_iscsi_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x848f2dcb qed_get_rdma_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x7822e6a4 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 0xaf748580 qed_get_fcoe_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xe022627d qed_get_eth_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qede/qede 0x87ebeb91 qede_rdma_register_driver -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qede/qede 0xc47c774e qede_rdma_unregister_driver -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x19a801d7 hdlcdrv_receiver -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x1b6e9adf hdlcdrv_arbitrate -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x37965931 hdlcdrv_unregister -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x80868c0e hdlcdrv_transmitter -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xc40c77ef hdlcdrv_register +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xbd448964 qed_get_eth_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xd6499788 qed_get_rdma_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qede/qede 0x84ba11ab qede_rdma_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qede/qede 0xb78162da qede_rdma_register_driver +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x54747871 hdlcdrv_transmitter +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x736c2fae hdlcdrv_arbitrate +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x76841486 hdlcdrv_unregister +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x9a4cf97a hdlcdrv_register +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xe7c0ce5b hdlcdrv_receiver EXPORT_SYMBOL drivers/net/mdio 0x3e17f466 mdio_set_flag EXPORT_SYMBOL drivers/net/mdio 0x424a69a2 mdio45_ethtool_ksettings_get_npage EXPORT_SYMBOL drivers/net/mdio 0x60443957 mdio45_probe @@ -3127,831 +3143,831 @@ 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 0x2d08a967 free_mdio_bitbang -EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0x59de688e mdiobb_read -EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0x7affc784 mdiobb_write -EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0xf5e75854 alloc_mdio_bitbang -EXPORT_SYMBOL drivers/net/mdio/mdio-cavium 0x1c6e73a1 cavium_mdiobus_write -EXPORT_SYMBOL drivers/net/mdio/mdio-cavium 0xd01059b2 cavium_mdiobus_read -EXPORT_SYMBOL drivers/net/mii 0x0aa36ac6 mii_check_link -EXPORT_SYMBOL drivers/net/mii 0x1fce7ad5 mii_ethtool_sset -EXPORT_SYMBOL drivers/net/mii 0x22a15489 mii_nway_restart -EXPORT_SYMBOL drivers/net/mii 0x3649bff9 mii_check_gmii_support -EXPORT_SYMBOL drivers/net/mii 0x47d1e87e mii_ethtool_set_link_ksettings -EXPORT_SYMBOL drivers/net/mii 0x48448ab7 mii_ethtool_get_link_ksettings -EXPORT_SYMBOL drivers/net/mii 0x4e9a425a mii_link_ok -EXPORT_SYMBOL drivers/net/mii 0x7a232178 generic_mii_ioctl -EXPORT_SYMBOL drivers/net/mii 0x9cc69322 mii_ethtool_gset -EXPORT_SYMBOL drivers/net/mii 0xf32d8edd mii_check_media -EXPORT_SYMBOL drivers/net/pcs/pcs-lynx 0x2c4020b6 lynx_pcs_destroy -EXPORT_SYMBOL drivers/net/pcs/pcs-lynx 0x8b132688 lynx_pcs_create -EXPORT_SYMBOL drivers/net/phy/bcm-phy-lib 0x6fbbf310 bcm54xx_auxctl_write -EXPORT_SYMBOL drivers/net/ppp/pppox 0x4f13b285 register_pppox_proto -EXPORT_SYMBOL drivers/net/ppp/pppox 0x87f12200 pppox_ioctl -EXPORT_SYMBOL drivers/net/ppp/pppox 0xbee5c51f pppox_unbind_sock -EXPORT_SYMBOL drivers/net/ppp/pppox 0xc0d09622 pppox_compat_ioctl +EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0x01cb085b free_mdio_bitbang +EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0x91f21f69 mdiobb_write +EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0x925fcdd3 alloc_mdio_bitbang +EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0xb9b65131 mdiobb_read +EXPORT_SYMBOL drivers/net/mdio/mdio-cavium 0x5837c87d cavium_mdiobus_write +EXPORT_SYMBOL drivers/net/mdio/mdio-cavium 0x8557c57b cavium_mdiobus_read +EXPORT_SYMBOL drivers/net/mii 0x02d5c101 mii_check_media +EXPORT_SYMBOL drivers/net/mii 0x09f136c9 mii_ethtool_set_link_ksettings +EXPORT_SYMBOL drivers/net/mii 0x17aa6dab mii_nway_restart +EXPORT_SYMBOL drivers/net/mii 0x683dbc75 mii_ethtool_sset +EXPORT_SYMBOL drivers/net/mii 0x83822a55 generic_mii_ioctl +EXPORT_SYMBOL drivers/net/mii 0x92e78510 mii_link_ok +EXPORT_SYMBOL drivers/net/mii 0xc17cd7e3 mii_ethtool_get_link_ksettings +EXPORT_SYMBOL drivers/net/mii 0xccad95ac mii_check_link +EXPORT_SYMBOL drivers/net/mii 0xde146e39 mii_ethtool_gset +EXPORT_SYMBOL drivers/net/mii 0xe4120753 mii_check_gmii_support +EXPORT_SYMBOL drivers/net/pcs/pcs-lynx 0x34788854 lynx_pcs_destroy +EXPORT_SYMBOL drivers/net/pcs/pcs-lynx 0xd0dd41ae lynx_pcs_create +EXPORT_SYMBOL drivers/net/phy/bcm-phy-lib 0x4772bc55 bcm54xx_auxctl_write +EXPORT_SYMBOL drivers/net/ppp/pppox 0x0c07e20e pppox_ioctl +EXPORT_SYMBOL drivers/net/ppp/pppox 0x8833f0c8 pppox_compat_ioctl +EXPORT_SYMBOL drivers/net/ppp/pppox 0xcd90836c pppox_unbind_sock +EXPORT_SYMBOL drivers/net/ppp/pppox 0xcdd76d49 register_pppox_proto EXPORT_SYMBOL drivers/net/ppp/pppox 0xe0ff7a18 unregister_pppox_proto -EXPORT_SYMBOL drivers/net/sungem_phy 0xdb305de2 sungem_phy_probe -EXPORT_SYMBOL drivers/net/team/team 0x1cb553c5 team_modeop_port_enter -EXPORT_SYMBOL drivers/net/team/team 0x38b9e8ff team_options_unregister -EXPORT_SYMBOL drivers/net/team/team 0x64d8c2db team_option_inst_set_change -EXPORT_SYMBOL drivers/net/team/team 0xb59b779c team_options_register -EXPORT_SYMBOL drivers/net/team/team 0xb92acb6a team_modeop_port_change_dev_addr -EXPORT_SYMBOL drivers/net/team/team 0xd47d2764 team_mode_register -EXPORT_SYMBOL drivers/net/team/team 0xdec0999c team_mode_unregister -EXPORT_SYMBOL drivers/net/team/team 0xe762678e team_options_change_check -EXPORT_SYMBOL drivers/net/usb/usbnet 0x00802cd9 usbnet_device_suggests_idle -EXPORT_SYMBOL drivers/net/usb/usbnet 0x838bff1a usbnet_link_change -EXPORT_SYMBOL drivers/net/usb/usbnet 0x9e576a33 usbnet_manage_power -EXPORT_SYMBOL drivers/net/wan/hdlc 0x0590d08c hdlc_close -EXPORT_SYMBOL drivers/net/wan/hdlc 0x0e0f3049 alloc_hdlcdev -EXPORT_SYMBOL drivers/net/wan/hdlc 0x2948e151 hdlc_start_xmit -EXPORT_SYMBOL drivers/net/wan/hdlc 0x54c844ff register_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0x6ebdbd6a hdlc_ioctl -EXPORT_SYMBOL drivers/net/wan/hdlc 0x7285a37d unregister_hdlc_device -EXPORT_SYMBOL drivers/net/wan/hdlc 0xb2507c4a attach_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0xba129b3b unregister_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0xe18a58be hdlc_open -EXPORT_SYMBOL drivers/net/wan/hdlc 0xf8ad4667 detach_hdlc_protocol -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x00bee85f ath_hw_setbssidmask +EXPORT_SYMBOL drivers/net/sungem_phy 0x8a172872 sungem_phy_probe +EXPORT_SYMBOL drivers/net/team/team 0x10757ed1 team_mode_unregister +EXPORT_SYMBOL drivers/net/team/team 0x32dd1df2 team_options_unregister +EXPORT_SYMBOL drivers/net/team/team 0x3aa5e9af team_mode_register +EXPORT_SYMBOL drivers/net/team/team 0x9960cad0 team_options_register +EXPORT_SYMBOL drivers/net/team/team 0x9ad1c179 team_option_inst_set_change +EXPORT_SYMBOL drivers/net/team/team 0xb7cc906d team_modeop_port_change_dev_addr +EXPORT_SYMBOL drivers/net/team/team 0xeaac208d team_options_change_check +EXPORT_SYMBOL drivers/net/team/team 0xecde648b team_modeop_port_enter +EXPORT_SYMBOL drivers/net/usb/usbnet 0x060e9502 usbnet_manage_power +EXPORT_SYMBOL drivers/net/usb/usbnet 0x9f5a6f37 usbnet_device_suggests_idle +EXPORT_SYMBOL drivers/net/usb/usbnet 0xf8bf2acc usbnet_link_change +EXPORT_SYMBOL drivers/net/wan/hdlc 0x1c153f1f register_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x3263a66b hdlc_close +EXPORT_SYMBOL drivers/net/wan/hdlc 0x3674544f unregister_hdlc_device +EXPORT_SYMBOL drivers/net/wan/hdlc 0x36e8f17e hdlc_ioctl +EXPORT_SYMBOL drivers/net/wan/hdlc 0x4fa6223a hdlc_open +EXPORT_SYMBOL drivers/net/wan/hdlc 0x5711d4e4 unregister_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x59bb9ef3 alloc_hdlcdev +EXPORT_SYMBOL drivers/net/wan/hdlc 0x7e4acd17 detach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xa60a80d7 attach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xd51a7b2a hdlc_start_xmit EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x108b188f ath_is_49ghz_allowed -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x40d8e712 ath_hw_keysetmac +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x12bc86c5 ath_hw_keysetmac +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x365f839c ath_key_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x42fc359e ath_printk EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x4571aea8 ath_is_world_regd -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x4e53c1ea ath_key_delete -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x620f1b15 ath_rxbuf_alloc -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x672a7c0d ath_printk -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x7b4ae9ce dfs_pattern_detector_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x84d67ce4 ath_is_mybeacon -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x96903a39 ath_hw_cycle_counters_update +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x528729f3 ath_key_delete +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x58c493b1 ath_hw_keyreset +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x5e766c0a ath_rxbuf_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x7b5028e2 ath_regd_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x8b11500a ath_hw_get_listen_time +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x9d4c2582 ath_is_mybeacon EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xa18f224e ath_regd_find_country_by_name -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xa4231722 ath_hw_keyreset EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xb6588ba6 ath_bus_type_strings -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xb78c6447 ath_reg_notifier_apply -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xd28140e6 ath_regd_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xdfb751a7 ath_key_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xb77c6bff ath_hw_setbssidmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xbb55621e ath_hw_cycle_counters_update +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xc55def65 dfs_pattern_detector_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xe00b46af ath_reg_notifier_apply EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xf98605d5 ath_regd_get_band_ctl -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xffdefabe ath_hw_get_listen_time -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x012f43e5 ath10k_core_unregister EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x015e5db2 ath10k_debug_mask -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x049ebc1c ath10k_coredump_get_mem_layout -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x05ad2319 ath10k_ce_rx_update_write_idx -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x070134a7 ath10k_coredump_new -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x07db6fa3 ath10k_core_napi_sync_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x082738c4 ath10k_ce_completed_send_next_nolock -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0d6cbdb8 ath10k_htt_rx_pktlog_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x22e5cce4 ath10k_ce_alloc_rri -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x252e0be0 ath10k_ce_alloc_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2a356c5b ath10k_core_fetch_board_file -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2c27a3a6 ath10k_ce_init_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2d56018e __ath10k_ce_send_revert -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2d5cb1ce ath10k_htc_process_trailer -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2ef81f75 ath10k_core_create -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3058406f ath10k_core_register -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x31742d07 ath10k_mac_tx_push_pending -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x34cabd5a ath10k_ce_disable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3e0507c9 ath10k_print_driver_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4168ae40 ath10k_core_destroy -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x47863238 ath10k_bmi_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4a4e7446 ath10k_bmi_read_memory -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4c33dd55 ath10k_ce_dump_registers -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5104efb6 ath10k_core_free_board_files -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x58c1950c ath10k_core_check_dt -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5ceb917c ath10k_core_start_recovery -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6163e3f9 ath10k_ce_per_engine_service_any -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x693300f4 ath10k_ce_cancel_send_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6cb1eb74 ath10k_ce_revoke_recv_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x71a19ec6 ath10k_htt_t2h_msg_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x75c79391 ath10k_core_stop -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x78a2495a __ath10k_ce_rx_num_free_bufs -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7e04e7ca ath10k_ce_free_rri -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7f8ce581 ath10k_core_napi_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x802524ab ath10k_ce_enable_interrupt -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x87582fd4 ath10k_htc_notify_tx_completion -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x87fb4eee ath10k_htt_txrx_compl_task -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8ba4564e ath10k_ce_free_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9a66de57 ath10k_ce_deinit_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa08177f8 ath10k_htc_rx_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa77e1067 ath10k_ce_completed_recv_next_nolock -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa8888a7c ath10k_ce_num_free_src_entries -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa8d08d11 ath10k_ce_send_nolock -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb380022a ath10k_htt_rx_hl_indication -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb78a3c9f ath10k_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb806b14d ath10k_htt_hif_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc0bf077f ath10k_ce_per_engine_service -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc14b236f ath10k_warn -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc8f0d2b2 __tracepoint_ath10k_log_dbg -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xcb8c8192 ath10k_core_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xdd7ba217 ath10k_ce_send -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xded031bf ath10k_ce_disable_interrupt -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe728bad5 ath10k_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xecab1ab2 ath10k_ce_completed_recv_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf1de3f22 ath10k_ce_rx_post_buf -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf3bbba7c ath10k_htc_tx_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf6ade83c ath10k_ce_enable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf95f0b4b ath10k_ce_completed_send_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x175034ab ath11k_ce_cleanup_pipes -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x19fe6cc7 ath11k_ce_get_attr_flags -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x1e05b540 ath11k_qmi_deinit_service -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x25ece10d ath11k_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x2abc864d ath11k_core_alloc -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x39fb5054 ath11k_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x3b166d32 ath11k_warn -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x59d96f3c ath11k_ce_rx_post_buf -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x5b1b2ace ath11k_core_resume -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x60811853 ath11k_ce_per_engine_service -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x7f2308b2 ath11k_core_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x86d26b72 ath11k_core_pre_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x88c6c8e4 ath11k_hal_srng_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x92785dae ath11k_core_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x01e5afc8 ath10k_coredump_get_mem_layout +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x02633d3c ath10k_ce_rx_update_write_idx +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x060e8159 ath10k_ce_per_engine_service +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x12ac3917 ath10k_htc_tx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1ac459d1 ath10k_print_driver_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x24f5b616 ath10k_ce_free_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x257bcb9d ath10k_htc_rx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2bce57cc ath10k_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2e7ae651 ath10k_ce_dump_registers +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x30a03112 ath10k_coredump_new +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x34fa46bc ath10k_ce_alloc_rri +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x36bcf5c7 ath10k_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3da71ace ath10k_core_fetch_board_file +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x40b27998 ath10k_core_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x453553f9 ath10k_ce_send_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x46de1b04 ath10k_core_napi_sync_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4ff9df84 ath10k_core_napi_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5d44d28b ath10k_htc_process_trailer +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x692589db __tracepoint_ath10k_log_dbg +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6aee8e4e ath10k_ce_completed_recv_next_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x78591908 ath10k_ce_free_rri +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7972c91b ath10k_htt_txrx_compl_task +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7c9218e2 ath10k_htc_notify_tx_completion +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7d3136a5 ath10k_ce_completed_recv_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7fbab10b ath10k_ce_completed_send_next_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8385fc2b ath10k_core_register +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x92547dc4 ath10k_ce_deinit_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x95b6870d ath10k_bmi_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x95e5a07a ath10k_ce_cancel_send_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x96f0ac32 ath10k_ce_revoke_recv_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x98caddf8 ath10k_htt_hif_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa0ff2a5b ath10k_ce_disable_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa572afcc ath10k_core_check_dt +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa6af0763 ath10k_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xaab75423 ath10k_ce_enable_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xae049432 ath10k_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb5d2f073 ath10k_ce_init_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb83dd40b ath10k_ce_completed_send_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xbb4d90f0 ath10k_htt_t2h_msg_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xbbc4fb4d __ath10k_ce_send_revert +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xbe664d54 ath10k_ce_per_engine_service_any +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd1367a7b ath10k_ce_num_free_src_entries +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd33af3db ath10k_core_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd34051ab ath10k_ce_rx_post_buf +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd387eb33 ath10k_ce_send +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd6355c49 ath10k_mac_tx_push_pending +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd6ce2cb0 ath10k_bmi_read_memory +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd8f7ffa2 ath10k_htt_rx_pktlog_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xdb518b20 ath10k_core_unregister +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xdd7b5389 ath10k_core_start_recovery +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xdd9a6c96 ath10k_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xeffbbf31 ath10k_ce_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf2a8dc8e ath10k_ce_alloc_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf416610e __ath10k_ce_rx_num_free_bufs +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf66ff55e ath10k_core_free_board_files +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xfe55833d ath10k_htt_rx_hl_indication +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xff64b856 ath10k_ce_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x01b8de40 ath11k_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x1378c7d5 ath11k_core_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x181cb8eb ath11k_core_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x24c8df96 ath11k_ce_rx_post_buf +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x2ceefbf2 ath11k_ce_get_shadow_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x34fa1216 ath11k_hal_srng_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x490452b3 ath11k_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x4e872da7 ath11k_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x55f34b9a ath11k_hal_srng_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x624ef13c ath11k_debugfs_soc_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x6966f063 ath11k_ce_cleanup_pipes +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x6ed73eb5 ath11k_core_suspend +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x84439545 ath11k_ce_alloc_pipes +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x88734bad ath11k_dp_service_srng +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x897b36c8 ath11k_core_resume +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x918c8344 ath11k_ce_get_attr_flags EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x9c51bcc4 ath11k_debug_mask -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xa155acbf ath11k_ce_get_shadow_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xbb637e62 ath11k_debugfs_soc_destroy -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xd12453a2 ath11k_core_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xe48891c8 ath11k_ce_free_pipes -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xe94b52e5 ath11k_core_suspend -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xe95d9284 ath11k_dp_service_srng +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xa0579c6f ath11k_ce_per_engine_service +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xb3c4d38f ath11k_core_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xc2815e65 ath11k_core_pre_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xcdd93092 ath11k_ce_free_pipes +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xcff5c177 ath11k_core_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xe287a3c8 ath11k_qmi_deinit_service EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xf0197188 ath11k_cold_boot_cal -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xf834038f ath11k_ce_alloc_pipes -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xff29362e ath11k_hal_srng_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x0002b115 ath6kl_cfg80211_suspend -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x02c4194b ath6kl_core_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x08799563 ath6kl_stop_txrx EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x1354043d ath6kl_warn -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x17709fcb ath6kl_core_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x27e2cbd3 ath6kl_core_rx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x3058a908 ath6kl_core_cleanup -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x30dcbbb3 ath6kl_stop_txrx +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x183e0235 ath6kl_core_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x1cc88a3d ath6kl_core_cleanup EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x3502feef ath6kl_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x5c6a90af ath6kl_cfg80211_resume +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x4713faa7 ath6kl_read_tgt_stats +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x4f05450a ath6kl_hif_intr_bh_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x51d2e054 ath6kl_core_rx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x854a075f 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 0xb67d5907 ath6kl_core_create 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 0xc84ef3ad ath6kl_core_destroy -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xcafbb417 ath6kl_hif_intr_bh_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xdcc578c1 ath6kl_read_tgt_stats -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x102e00a6 ath9k_cmn_debug_modal_eeprom -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x113e29df ath9k_cmn_rx_accept -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x165775a2 ath9k_cmn_rx_skb_postprocess -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x178cd72d ath9k_cmn_debug_phy_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x18436a95 ath9k_cmn_debug_recv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x1ec37141 ath9k_cmn_process_rate -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x371f1abb ath9k_cmn_spectral_scan_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x49c83643 ath9k_cmn_get_channel -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x4aa4aa1c ath_cmn_process_fft -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x51e4841a ath9k_cmn_init_crypto -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x54060228 ath9k_cmn_beacon_config_ap -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x5fa7a91a ath9k_cmn_spectral_deinit_debug -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x69663405 ath9k_cmn_beacon_config_sta -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x8be68de3 ath9k_cmn_process_rssi -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x900320b1 ath9k_cmn_reload_chainmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xc1312596 ath6kl_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xd88b08dc ath6kl_core_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xdef1e6de ath6kl_cfg80211_suspend +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xdf3e60a5 ath6kl_cfg80211_resume +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x0d6644b6 ath9k_cmn_process_rate +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x1629faf6 ath9k_cmn_debug_recv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x1acdb366 ath_cmn_process_fft +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x1c96a153 ath9k_cmn_rx_skb_postprocess +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2b8ce276 ath9k_cmn_init_channels_rates +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x379dfd54 ath9k_cmn_beacon_config_sta +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x5bad65ba ath9k_cmn_setup_ht_cap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x5e5fa696 ath9k_cmn_get_hw_crypto_keytype +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x692f28bd ath9k_cmn_init_crypto +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x75065014 ath9k_cmn_beacon_config_ap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x7936f700 ath9k_cmn_get_channel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x7b0b476b ath9k_cmn_reload_chainmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x7d79ed19 ath9k_cmn_debug_base_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x89cb0229 ath9k_cmn_update_txpow +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x96c909ce ath9k_cmn_spectral_deinit_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x997e8f90 ath9k_cmn_beacon_config_adhoc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xa3f84a1f ath9k_cmn_spectral_scan_trigger +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb3ba280a ath9k_cmn_debug_phy_err EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb76fccc7 ath9k_cmn_debug_stat_rx -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xc12d8528 ath9k_cmn_spectral_scan_trigger -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xc3ff9dc0 ath9k_cmn_get_hw_crypto_keytype -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xcac027a9 ath9k_cmn_update_txpow +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xcbffe084 ath9k_cmn_rx_accept +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xccce2b71 ath9k_cmn_spectral_init_debug EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd2981357 ath9k_cmn_count_streams -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd6da2f82 ath9k_cmn_init_channels_rates -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xde593a51 ath9k_cmn_spectral_init_debug -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xe5dd5b4a ath9k_cmn_setup_ht_cap -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf20364eb ath9k_cmn_beacon_config_adhoc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xfc6b9a8c ath9k_cmn_debug_base_eeprom -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x02111296 ar9003_hw_bb_watchdog_dbg_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x04454158 ath9k_hw_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0563483e ath9k_hw_beaconinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x05a14d4f ar9003_is_paprd_enabled -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0662aaba ath9k_hw_puttxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0b1ff39c ath9k_hw_btcoex_set_concur_txprio -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0d9e14c0 ath9k_hw_updatetxtriglevel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xe4f5e065 ath9k_cmn_spectral_scan_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xe856ebb7 ath9k_cmn_process_rssi +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf324bd5a ath9k_cmn_debug_modal_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x007660d9 ath9k_hw_set_sta_beacon_timers +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x02436410 ath9k_hw_disable_mib_counters +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x054260ab ath9k_hw_set_tsfadjust +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x059c3553 ath9k_hw_reset_calvalid +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x07cb897b ath9k_hw_resume_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x08288536 ath9k_hw_setuprxdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x09921dde ar9003_paprd_is_done +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0a5bb503 ath9k_hw_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0a66825c ath9k_hw_check_nav +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0f6f7db1 ath9k_hw_gpio_free EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0f77dafc ath9k_hw_get_tsf_offset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x118787e2 ath9k_hw_wow_wakeup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x12c61d23 ath9k_hw_abort_tx_dma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x14473d98 ath9k_hw_wow_apply_pattern -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x144b3250 ath9k_hw_btcoex_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x187f15cf ath9k_hw_set_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1ce9a4a5 ath9k_hw_setup_statusring -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1fead748 ath9k_hw_reset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2164161c ath9k_hw_phy_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x27e6ca6f ath9k_hw_set_tx_filter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x28a21406 ath9k_hw_btcoex_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2af59448 ath9k_hw_intrpend -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3499f0a3 ath9k_hw_gettxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3678412f ath9k_hw_gpio_request_out -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x37648bbb ath9k_hw_putrxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3e299686 ath9k_hw_btcoex_init_mci -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3e738de5 ath9k_hw_write_associd -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x408f2cf2 ath9k_hw_setrxabort -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4128a59a ath_gen_timer_isr -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x414f6fc1 ath9k_hw_btcoex_set_weight -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x41e7d274 ath9k_hw_setuprxdesc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4b01e329 ar9003_paprd_is_done -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4b20e90f ath9k_hw_setrxfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4e839601 ath9k_hw_btcoex_init_scheme -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x527faafe ath9k_hw_releasetxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x534acf06 ath9k_hw_setopmode -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x57d9b47e ar9003_hw_bb_watchdog_check -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x59ffdbed ath9k_hw_btcoex_init_3wire -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5c24bd02 ar9003_paprd_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5cd4870a ath9k_hw_getnf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5d1e3795 ath9k_hw_getchan_noise -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5d59beef ath_gen_timer_alloc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5fbffaac ath9k_hw_gettsf64 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5fc92f29 ar9003_paprd_create_curve -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x629a91f0 ath9k_hw_gpio_free -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x63831c88 ath9k_hw_resume_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x649a6392 ath9k_hw_rxprocdesc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x665ec481 ath9k_hw_numtxpending -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7311682b ath9k_hw_loadnf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7353457c ath9k_hw_wait -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x736c4296 ath9k_hw_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x75e30d9f ar9003_hw_disable_phy_restart -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x784df341 ath9k_hw_gpio_get -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7a174339 ath9k_hw_btcoex_init_2wire -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7b94b720 ath9k_hw_set_tsfadjust -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7c450add ath9k_hw_gettsf32 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7d4d766b ath9k_hw_wow_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x843a52ac ar9003_mci_get_next_gpm_offset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x87d5df6e ath9k_hw_reset_calvalid -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x89445fb7 ar9003_mci_send_wlan_channels -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8966e997 ath9k_hw_gpio_request_in -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8d1e0265 ath9k_hw_name -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x91dbe347 ath9k_hw_setantenna -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x93820f45 ath9k_hw_startpcureceive -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x939cebbc ath9k_hw_init_btcoex_hw -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x965c9fa6 ath9k_hw_get_txq_props -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x974a7912 ath9k_hw_process_rxdesc_edma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x97b071ce ath9k_hw_setmcastfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9805ee77 ath9k_hw_settsf64 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x98930d1e ar9003_mci_set_bt_version -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9ad6fded ath9k_hw_disable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9c6867ea ath9k_hw_kill_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9d58d1ac ath9k_hw_btcoex_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9f5276ca ath9k_hw_btcoex_bt_stomp -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa61f7491 ath_gen_timer_free -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa62fb0f6 ath9k_hw_set_txq_props -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa9859960 ar9003_mci_cleanup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaaf12c98 ath9k_hw_set_sta_beacon_timers -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xae141bdb ath9k_hw_set_rx_bufsize -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaffb9614 ath9k_hw_init_global_settings -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb0da4e8e ath9k_hw_abortpcurecv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb1c1993b ar9003_mci_state -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb463e1ee ath9k_hw_stop_dma_queue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb6ab2097 ath9k_hw_enable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbcb7faf4 ath9k_hw_addrxbuf_edma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbe41926e ath9k_hw_bstuck_nfcal -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc1ae9f08 ar9003_paprd_setup_gain_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc3d78ce3 ath9k_hw_getrxfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc8ad1500 ath9k_hw_computetxtime -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcc00cc59 ath9k_hw_disable_mib_counters -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xce9672b0 ath9k_hw_reset_tsf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcf4822dc ath9k_hw_set_txpowerlimit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcf65bb97 ath9k_hw_set_gpio -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd2669954 ath9k_hw_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd8bc839a ar9003_paprd_populate_single_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdd1203e6 ath9k_hw_setpower -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe235432c ar9003_mci_setup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe3de3ff0 ar9003_paprd_init_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe403b3f3 ar9003_mci_get_interrupt -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe5928893 ath9k_hw_beaconq_setup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe661591e ath9k_hw_check_alive -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe7a4330a ath9k_hw_gen_timer_stop -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xeb8bbb2e ath9k_hw_check_nav -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xebbb061c ar9003_get_pll_sqsum_dvc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xee69e890 ath9k_hw_stopdmarecv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf2416968 ath9k_hw_gen_timer_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf520b035 ath9k_hw_setuptxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf981c40c ath9k_hw_ani_monitor -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf9a134e1 ar9003_mci_send_message -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfae5bb46 ath9k_hw_txstart -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfc54fff5 ath9k_hw_resettxqueue -EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x23b0a137 stop_atmel_card -EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x4e4ae6dc init_atmel_card -EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0xac912291 atmel_open -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x07aa3099 brcmu_pktq_pdeq_tail +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x100b9a8f ar9003_mci_set_bt_version +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x133256f7 ath9k_hw_name +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x176299b9 ath9k_hw_gen_timer_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x17f48860 ar9003_hw_bb_watchdog_dbg_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x182bd777 ath9k_hw_numtxpending +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x22cb6daa ath9k_hw_reset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x250e4ae9 ath9k_hw_abortpcurecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x25e0f8c6 ar9003_mci_send_wlan_channels +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x277c0cc3 ath9k_hw_write_associd +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2a1c8a37 ar9003_paprd_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2a6a0012 ath9k_hw_setpower +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2abb1fa2 ath9k_hw_btcoex_set_weight +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2b211232 ar9003_mci_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2b97c921 ath9k_hw_btcoex_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2ba570b9 ath9k_hw_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2d2118fd ath9k_hw_abort_tx_dma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2df8b684 ath9k_hw_process_rxdesc_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x31cfc962 ath9k_hw_setup_statusring +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x348d52d9 ath9k_hw_settsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x358fc72e ath9k_hw_resettxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3669b185 ath9k_hw_rxprocdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3a7d1751 ath9k_hw_gettsf32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x416244a9 ath9k_hw_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x44cebcfe ath9k_hw_loadnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x45129f5b ath9k_hw_setantenna +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4571fe3e ath9k_hw_set_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x46c95761 ar9003_mci_get_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x498e9c35 ath9k_hw_addrxbuf_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4d949828 ath9k_hw_releasetxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5133fabe ar9003_hw_bb_watchdog_check +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x56844425 ath9k_hw_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x58312e58 ath9k_hw_wow_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5b9f27c8 ar9003_is_paprd_enabled +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5c278bb4 ath9k_hw_btcoex_set_concur_txprio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5d7e739f ath9k_hw_btcoex_bt_stomp +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x61dcb428 ath_gen_timer_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x61f922e6 ath9k_hw_init_global_settings +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x63f8a385 ar9003_mci_send_message +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x65df7eec ath9k_hw_btcoex_init_scheme +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x67720ade ath9k_hw_phy_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x67ce6362 ath9k_hw_gettxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x69132e12 ath9k_hw_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6a2d787f ath_gen_timer_isr +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6aa9f6e2 ath9k_hw_setmcastfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6d7c96c4 ath9k_hw_puttxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x703fc661 ath9k_hw_beaconq_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x718b21b0 ath9k_hw_wow_wakeup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x762d10fa ath9k_hw_set_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x766bf791 ar9003_get_pll_sqsum_dvc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7dc1ccb5 ath9k_hw_gettsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7fbf7cb6 ath9k_hw_set_rx_bufsize +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x82a148fc ath9k_hw_ani_monitor +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x843719db ath9k_hw_set_gpio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x84426f31 ar9003_paprd_setup_gain_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8476763c ar9003_paprd_init_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x84882ac8 ar9003_mci_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x852c5a97 ath9k_hw_stopdmarecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x887bf908 ar9003_mci_get_next_gpm_offset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x92348afd ath9k_hw_setopmode +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x96d380c2 ath9k_hw_set_txpowerlimit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9b7c1655 ath9k_hw_kill_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9e7fd841 ath_gen_timer_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9ee67e99 ath9k_hw_wow_apply_pattern +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa5d2cfcd ath9k_hw_updatetxtriglevel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb1ec8edd ath9k_hw_btcoex_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb39ad95a ath9k_hw_txstart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb6cca456 ath9k_hw_btcoex_init_mci +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb9a8d114 ath9k_hw_gpio_get +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbcaf87b2 ath9k_hw_btcoex_init_3wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbcfa412f ath9k_hw_gpio_request_in +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbf52afcd ath9k_hw_getchan_noise +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc0c77988 ath9k_hw_intrpend +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc17ce664 ath9k_hw_computetxtime +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc1ee3660 ath9k_hw_wait +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc2b79ad0 ath9k_hw_stop_dma_queue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc577c6c9 ath9k_hw_putrxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcd6b1f8e ar9003_paprd_populate_single_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd116d05d ath9k_hw_setrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd1703c70 ath9k_hw_getrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd1c8b4d9 ath9k_hw_gen_timer_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xda6f70fb ath9k_hw_btcoex_init_2wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdd852a87 ar9003_mci_state +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xde69b9d0 ath9k_hw_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdf8f7d34 ar9003_hw_disable_phy_restart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe742ad35 ath9k_hw_bstuck_nfcal +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xeaeab624 ath9k_hw_beaconinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xebd4eaba ath9k_hw_setuptxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf0e336c8 ath9k_hw_gpio_request_out +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf0f91433 ath9k_hw_get_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf16f25b8 ath9k_hw_btcoex_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf2c319dd ath9k_hw_init_btcoex_hw +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf674b518 ar9003_paprd_create_curve +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf764614f ath9k_hw_set_tx_filter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf8170fe8 ath9k_hw_startpcureceive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf82a3ed4 ath9k_hw_check_alive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfa886b38 ath9k_hw_setrxabort +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfbb9634b ath9k_hw_getnf +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x5fc0aba2 atmel_open +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x85c42add stop_atmel_card +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0xf1b8837a init_atmel_card +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x051c54fc brcmu_pktq_penq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x0779080d brcmu_pkt_buf_get_skb EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x1906648e brcmu_boardrev_str -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x3f39aaf4 brcmu_pktq_peek_tail -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x543ff143 brcmu_pktq_init -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x5bb38967 brcmu_pkt_buf_free_skb -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x67a9d46c brcmu_pktq_pflush -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x6e928987 brcmu_pktq_pdeq_match -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x714ee823 brcmu_pkt_buf_get_skb -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x783f4568 brcmu_pktq_mlen -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x94b456f4 brcmu_pktq_penq_head +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x3651261b brcmu_pkt_buf_free_skb +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x5c59d3dc brcmu_pktq_flush +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x98ee991b brcmu_pktq_pdeq_match +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x9c3d1d3c brcmu_pktq_penq_head +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x9c95abab brcmu_pktq_init +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x9ff9dbbe brcmu_pktq_pdeq_tail +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xa1247640 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 0xccabb4f7 brcmu_pktq_flush -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xccd45ee3 brcmu_pktq_penq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xd224bb32 brcmu_pktq_peek_tail +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xd4b574f0 brcmu_pktq_mlen EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xd6217d91 brcmu_d11_attach -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xedfe2bc8 brcmu_pktq_mdeq -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xf58e90d3 brcmu_pktq_pdeq -EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0x486a45f7 init_airo_card -EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0xc3c111ba stop_airo_card -EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0xd3f753fd reset_airo_card -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x0deba1b4 libipw_wx_set_encode -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x2432a9ba libipw_txb_free -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x2d6bdf8b libipw_is_valid_channel -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x35d42013 libipw_set_geo -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x59b6c092 libipw_rx -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x60f5c502 libipw_networks_age -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x69474d31 libipw_wx_get_encode -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x6f0cc800 libipw_freq_to_channel -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x70118f28 libipw_rx_mgt -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x78a9eb7e libipw_wx_set_encodeext -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x8947dcc3 libipw_channel_to_freq -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xa1858d4e alloc_libipw -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xb2fc6152 libipw_wx_get_encodeext -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xb42e8322 libipw_get_channel_flags -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xbe5fd317 libipw_wx_get_scan -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xc01306f0 libipw_get_geo -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xc035cbbb libipw_xmit -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xec8df04e libipw_get_channel -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xf24f737e free_libipw -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xfce55aeb libipw_channel_to_index -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0386fa63 il_power_initialize -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x04f165f4 il_eeprom_query_addr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x04fcb305 il_leds_exit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x05700008 il_hdl_error -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0790f355 _il_poll_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0b8883c0 il_set_tx_power -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0e967f6f il_apm_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x12190d2b il_free_txq_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x126caba3 il_mac_sta_remove -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x139bc801 il_rx_queue_alloc -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1783a999 il_hdl_spectrum_measurement -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1a92b803 il_send_cmd_pdu_async -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1fca680b il_tx_queue_free -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1fe9c78b il_get_passive_dwell_time -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x21a0b433 il_eeprom_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x23c9a36a il_is_ht40_tx_allowed -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x257b19e5 il_dbgfs_unregister -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2bce014f il_mac_bss_info_changed +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xf4701a5a brcmu_pktq_pdeq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xfa0911b5 brcmu_pktq_pflush +EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0x01b876b1 reset_airo_card +EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0x375f835b init_airo_card +EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0x60b77f0a stop_airo_card +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x00ee2224 libipw_channel_to_index +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x0a57dca5 alloc_libipw +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x11cc5368 libipw_is_valid_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x26e34f7f libipw_get_geo +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x2834aec7 libipw_rx_mgt +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x463545fd libipw_wx_get_encode +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x48b051c9 libipw_set_geo +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x6a8aae5e libipw_channel_to_freq +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x9a03d5bb libipw_rx +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xa85d0b62 libipw_xmit +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xbc8a2ebb libipw_networks_age +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xc07b884a libipw_wx_set_encode +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xd65d4ec9 libipw_wx_get_encodeext +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xd93ac550 libipw_txb_free +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xe22f1ae8 libipw_get_channel_flags +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xe53686e3 libipw_wx_get_scan +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xedd2fabc libipw_get_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xf03d917a free_libipw +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xf6819ef3 libipw_freq_to_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xf97c634e libipw_wx_set_encodeext +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x05822a64 il_scan_cancel_timeout +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x08779ead il_rd_prph +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x087dcc6f il_send_stats_request +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x09abfea0 il_send_cmd_sync +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1025dac7 il_get_free_ucode_key_idx +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x13486544 il_hdl_pm_sleep +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1966f058 il_eeprom_query_addr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1a1399fa _il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1bae7dc2 il_rx_queue_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1e8afdce il_leds_exit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1ee0c011 il_power_update_mode +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2832efc9 il_send_add_sta +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x29dceee3 il_init_scan_params +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2abfb1b6 il_eeprom_query16 EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2bf7eea6 il_queue_space -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x30862c94 il_get_single_channel_number -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x32190572 il_fill_probe_req -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x34793dce il_eeprom_query16 -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3510f52b il_set_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x38f804af il_set_rxon_channel -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3b0cc010 il_get_lowest_plcp +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2c49db6c il_hdl_pm_debug_stats +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x33e71aec il_fill_probe_req +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x37433b1a _il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3e4be658 il_mac_add_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x40ba68d6 il_set_decrypted_flag EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x416bd26a il_debug_level -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4175889a il_connection_init_rx_config -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4364c0d2 il_tx_cmd_complete -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x468abd5a il_scan_cancel_timeout -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x46a8e114 il_send_cmd_sync -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x48f34031 il_mac_remove_interface -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4dbae813 il_update_stats -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x51af3a72 il_alloc_txq_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x52b8e6ec il_restore_stations -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x53da13fb il_txq_update_write_ptr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5ab0cf32 il_force_reset -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5d0c52ab il_poll_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x62f5ada3 il_send_bt_config -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x64e9f83c il_send_add_sta -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x69e24ff5 il_dbgfs_register -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6a253fc2 il_send_lq_cmd -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6b5383f5 il_irq_handle_error -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6b86ce22 il_get_free_ucode_key_idx -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6c56ca90 il_add_station_common -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6dfe9971 il_set_flags_for_band -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6fd73e94 il_send_stats_request -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x72789005 il_cmd_queue_free -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7483f0d8 il_init_scan_params -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7ac20c94 il_add_beacon_time -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7d0b0d76 il_hdl_csa -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8492be25 il_write_targ_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8c85cf5c il_apm_stop -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8f46bbe9 il_pm_ops -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x92dfd28d il_free_channel_map -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9818f980 il_init_geos -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9ba933c4 il_get_active_dwell_time -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9ca4d8b4 il_init_channel_map +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x43a0d2a3 il_tx_queue_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x45d58319 il_cancel_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4bee4294 il_hdl_error +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4d6cee40 il_eeprom_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x516935cc il_add_station_common +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x532d6958 il_connection_init_rx_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5338a32d il_clear_ucode_stations +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x533f90f2 il_rx_queue_space +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5423300b il_init_geos +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x54d393cd il_cmd_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x57890fec il_get_single_channel_number +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x58af122d il_restore_stations +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5c6a0620 il_free_geos +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5ccef8a0 il_get_channel_info +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6010df5e il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x60f63fe8 il_tx_queue_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x616ad533 il_clear_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x61e2b8da il_mac_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x62453e0c il_tx_cmd_protection +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x64f54ad0 il_setup_rx_scan_handlers +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x654cd939 il_set_rxon_ht +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x664e88f0 il_init_channel_map +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x677fe1ac il_irq_handle_error +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x680118c2 il_mac_conf_tx +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x698a4881 il_usecs_to_beacons +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6abc9ada il_set_tx_power +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6b7fe4f6 il_chswitch_done +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7175fb24 il_apm_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x745a8942 il_send_lq_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7d910c1d il_set_rxon_hwcrypto +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7ff82802 il_get_active_dwell_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x81507a68 il_dbgfs_register +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8935e2e1 il_mac_hw_scan +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x897a0c28 il_check_rxon_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8a57e7b2 il_send_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8b48245b il_wr_prph +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8ccbe870 il_power_initialize +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8f9d5f2c il_add_beacon_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9055a89f il_read_targ_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x90dd4167 il_update_stats +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9465fbea il_eeprom_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x94ac68f0 il_cmd_queue_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x97741b1e il_mac_bss_info_changed +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x99a78bb7 il_leds_init EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9cc714af il_bg_watchdog -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9d27d1dc il_set_rate -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9f147721 il_setup_rx_scan_handlers -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa63bcf8f il_set_rxon_ht -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa8f99f98 il_tx_queue_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xad88fe70 il_clear_ucode_stations -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb2b1637c il_mac_conf_tx -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb40c3416 il_usecs_to_beacons +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa0321f89 il_hdl_spectrum_measurement +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa0e6cef9 il_mac_flush +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa1dbbd53 il_set_rxon_channel +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xaf3c5621 il_get_lowest_plcp +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xaf4b48ea il_set_flags_for_band +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb2c816a3 il_send_rxon_timing +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb4be00ee il_rx_queue_alloc +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb4d71fcb il_txq_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb508c5b8 il_hdl_csa EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb65510a3 il_get_cmd_string -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb6be4efb il_leds_init EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb7bd33ff il_isr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xba23a946 il_rx_queue_update_write_ptr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbaf9a7a4 il_cmd_queue_unmap -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbbc16fdd il_full_rxon_required -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc07d8c55 il_eeprom_free -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc4e8551e il_setup_watchdog -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc5da0595 il_mac_flush -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc6db3e68 il_read_targ_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc705e541 _il_apm_stop -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc8787e01 il_chswitch_done -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcdba3c17 il_mac_change_interface -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcf9d7975 il_send_rxon_timing -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd1976405 il_check_rxon_cmd -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd237c987 il_mac_reset_tsf -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd41c0bc9 il_mac_add_interface -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd4282299 il_clear_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd700713b il_setup_scan_deferred_work -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd70612cd il_hdl_pm_sleep -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd7988fa5 il_tx_queue_unmap -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd7d9dd77 il_hdl_pm_debug_stats -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdc233250 il_get_channel_info -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdf09d862 il_mac_config -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe36d674a il_power_update_mode -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe8643a4b il_free_geos -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe9cd5bb7 il_mac_hw_scan -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xea8c2b25 il_rx_queue_space -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xeb0208ed il_send_cmd_pdu -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xee224f73 il_tx_cmd_protection -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf256c5e9 il_send_cmd -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf4aa2859 il_wr_prph -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf4f7a092 il_tx_queue_reset -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf6610ca8 il_scan_cancel +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb9abbb63 il_tx_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbbc63f67 il_mac_remove_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbca6bb61 il_set_rate +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbe3970de il_dbgfs_unregister +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbeee6abb il_send_bt_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc3bc1c38 il_setup_watchdog +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xca3b1641 il_mac_sta_remove +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcc691935 il_is_ht40_tx_allowed +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcdecefb7 il_send_cmd_pdu +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd610c1c6 il_write_targ_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd6d4ae6a il_alloc_txq_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdabc1c94 il_get_passive_dwell_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdd403a99 il_set_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe12e108b il_scan_cancel +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe3227e05 il_tx_queue_reset +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe8012c8c il_force_reset +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe98013f1 il_free_channel_map +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xec528a73 il_mac_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf0ae526b il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf48b50df il_setup_scan_deferred_work EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf70a693b il_bcast_addr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf892ccc3 il_set_decrypted_flag -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf8fd8769 il_set_rxon_hwcrypto -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf9d5c9db il_rd_prph -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfacc9a50 il_cancel_scan_deferred_work -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x23729c7d __traceiter_iwlwifi_dev_ucode_cont_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2ffb02ce __traceiter_iwlwifi_dev_ucode_wrap_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf915c377 il_free_txq_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf9196171 il_full_rxon_required +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf97c8cb1 il_mac_change_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfa3c5f6f il_pm_ops +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfc22a099 il_tx_cmd_complete +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfcdb5105 il_send_cmd_pdu_async +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x18e5c241 __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 0x40b30828 __traceiter_iwlwifi_dev_ucode_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x4a52bd6f __tracepoint_iwlwifi_dev_ucode_cont_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x50c0dca7 __SCK__tp_func_iwlwifi_dev_ucode_cont_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8fc50574 __SCK__tp_func_iwlwifi_dev_ucode_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc74ca09d __SCK__tp_func_iwlwifi_dev_ucode_wrap_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x435a1be9 __tracepoint_iwlwifi_dev_ucode_wrap_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x70b585f3 __SCK__tp_func_iwlwifi_dev_ucode_cont_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x9b879a4c __traceiter_iwlwifi_dev_ucode_wrap_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb9738ddc __SCK__tp_func_iwlwifi_dev_ucode_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd1834e64 __traceiter_iwlwifi_dev_ucode_cont_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd4d667d3 __tracepoint_iwlwifi_dev_ucode_cont_event EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd81e2f28 __SCT__tp_func_iwlwifi_dev_ucode_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xdddec155 __tracepoint_iwlwifi_dev_ucode_wrap_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xefa785bc __tracepoint_iwlwifi_dev_ucode_event -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x0b0f2220 hostap_set_string +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe739f9c9 __SCK__tp_func_iwlwifi_dev_ucode_wrap_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xfd853b2e __traceiter_iwlwifi_dev_ucode_event +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x11bba5d2 hostap_info_init EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x13abdd5a hostap_dump_tx_header -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x166ab129 hostap_handle_sta_tx_exc -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x233d519a hostap_init_data -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x2962b912 hostap_80211_rx -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x3bff1aea hostap_add_interface -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x68ce4553 hostap_set_word -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x743e8ab6 hostap_remove_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x1fc7497d hostap_info_process +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x259f3803 hostap_set_string +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x2691d903 hostap_set_hostapd_sta +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x3db5a527 prism2_update_comms_qual +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x4e063b3b hostap_80211_ops +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x517a0a7c hostap_add_interface +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x5237cdb5 hostap_init_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x544b2324 hostap_set_auth_algs +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x571fd10a hostap_init_ap_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x707786ad 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 0x785e6b49 hostap_handle_sta_tx_exc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7d1809f6 hostap_check_sta_fw_version EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7fb75891 hostap_dump_rx_header -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x971e57ea hostap_set_hostapd_sta -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x99fcb03c hostap_set_antsel -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x9b0ba620 hostap_set_auth_algs -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x9cc3a49b hostap_set_encryption -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xa502f4fd hostap_setup_dev -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb1cb6268 prism2_update_comms_qual +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x80735131 hostap_init_data +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x9b4a0d21 hostap_get_porttype +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xa25caa58 hostap_set_roaming +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xa8300bdf hostap_remove_interface +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xaae437a4 hostap_master_start_xmit +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb325c013 hostap_free_data EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb4b77c8b hostap_80211_get_hdrlen -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb85aaef1 hostap_init_proc -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb981b078 hostap_80211_ops -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xbfc23581 hostap_init_ap_proc -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xd2acbdf4 hostap_info_process -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xd305c772 hostap_get_porttype -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xdec2d54c hostap_info_init -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xeb980b18 hostap_master_start_xmit -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xed611093 hostap_set_roaming -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xf70ba166 hostap_check_sta_fw_version -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xf925be0e hostap_set_hostapd -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xfb37b62e hostap_free_data -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xfb4387eb hostap_remove_interface -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x05c7f04e __orinoco_ev_info -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x0febde5b orinoco_open -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x107e9f2f orinoco_if_del -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x351874f2 orinoco_down -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x38b7e363 orinoco_stop -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x77b24d01 orinoco_init -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x7f114db7 free_orinocodev -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x82577b12 orinoco_change_mtu -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x84082e16 orinoco_process_xmit_skb -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x99b6bcac alloc_orinocodev +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb85843d4 hostap_set_hostapd +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xcc076ef9 hostap_set_word +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xd3954869 hostap_set_antsel +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xe7da54b9 hostap_setup_dev +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xf06a99a3 hostap_set_encryption +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xf5dd176d hostap_80211_rx +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x07bb93b2 orinoco_set_multicast_list +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x3641b579 orinoco_up +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x5c6cea2a orinoco_tx_timeout +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x63fe1d90 orinoco_down +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x7f2c5bc7 orinoco_if_add +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x88f076f5 orinoco_init +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x91fea55f orinoco_stop +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x94ab9149 orinoco_open +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xa62c642d orinoco_change_mtu EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xa74c2dc5 hermes_struct_init -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xce1c9bd0 __orinoco_ev_rx -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xcfc9f266 orinoco_set_multicast_list -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xebdf767e orinoco_if_add -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xf27ab636 orinoco_tx_timeout -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xf6098502 orinoco_up +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xafc6226b __orinoco_ev_rx +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xd29d6dbf orinoco_if_del +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xe383114b free_orinocodev +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xe6252db3 alloc_orinocodev +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xe65a8baf orinoco_process_xmit_skb +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xe7c6c3f0 __orinoco_ev_info EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xffe27bca orinoco_interrupt -EXPORT_SYMBOL drivers/net/wireless/mediatek/mt76/mt76 0x4837cf03 mt76_wcid_key_setup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0x8dc31832 rtl_btc_get_ops_pointer -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x13c5a727 _rtl92c_phy_txpwr_idx_to_dbm -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x161e09b9 rtl92c_phy_sw_chnl -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1b10119a rtl92c_firmware_selfreset -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1c90b289 _rtl92c_store_pwrindex_diffrate_offset -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1ceec09f rtl92c_dm_write_dig -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1f3bd1df rtl92c_phy_query_bb_reg +EXPORT_SYMBOL drivers/net/wireless/mediatek/mt76/mt76 0x97528b67 mt76_wcid_key_setup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0xc3a4b990 rtl_btc_get_ops_pointer +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0f7f4c76 rtl92c_dm_write_dig +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1173b105 rtl92c_dm_watchdog +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x11e5c721 rtl92c_set_fw_pwrmode_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1587aea3 _rtl92c_phy_dbm_to_txpwr_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1b6c0234 _rtl92c_phy_set_rf_sleep 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 0x266cad41 rtl92c_phy_set_bb_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x308ee2c2 rtl92c_phy_iq_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3132226e rtl92c_phy_set_io -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3e140dac rtl92c_phy_lc_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3e31cef6 rtl92c_dm_init_rate_adaptive_mask -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4485fc68 rtl92c_phy_sw_chnl_callback -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4d80ccef _rtl92c_phy_bb8192c_config_parafile -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x50d97619 rtl92c_dm_watchdog -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5a7aa6f6 _rtl92c_phy_fw_rf_serial_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x60779836 rtl92c_dm_bt_coexist -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x69ec03ed rtl8192_phy_check_is_legal_rfpath -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6fa34be6 rtl92c_bt_rssi_state_change -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x721fcda6 rtl92c_download_fw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x723ee379 rtl92c_dm_init_edca_turbo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x73840a47 rtl92c_phy_set_txpower_level -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7450bc9d _rtl92c_phy_dbm_to_txpwr_idx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x799b7bcb _rtl92c_phy_set_rf_sleep -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7cbe3734 _rtl92c_phy_fw_rf_serial_write -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8209a196 rtl92c_phy_set_rfpath_switch -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8f6924de _rtl92c_phy_init_bb_rf_register_definition -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x903d18d4 rtl92c_set_fw_joinbss_report_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x99b28ed8 _rtl92c_phy_rf_serial_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9af28036 _rtl92c_phy_rf_serial_write -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa0f43587 rtl92c_phy_rf_config -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa230afc2 rtl92c_fill_h2c_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa71fa132 rtl92ce_phy_set_rf_on -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xad4e7503 rtl92c_set_fw_rsvdpagepkt -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb17c46d4 rtl92c_phy_update_txpower_dbm -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc71c9d03 rtl92c_phy_ap_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd381ccc9 rtl92c_phy_set_bw_mode -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd4954e05 rtl92c_dm_rf_saving -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xdd601dbb rtl92c_dm_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xeb5f4b78 rtl92c_set_fw_pwrmode_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf6378cfc rtl92c_dm_check_txpower_tracking -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf9a1636b rtl92c_phy_set_io_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x4a2ea24b rtl_pci_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x6f9ee314 rtl_pci_disconnect -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xdeb63eb9 rtl_pci_resume -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xefaf3566 rtl_pci_suspend -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x08d86d4e rtl_usb_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x1af05eee rtl_usb_disconnect -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x2734cd0f rtl_usb_suspend -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x3bcad87b rtl_usb_resume -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0470a6c3 efuse_one_byte_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2fd41133 rtl92c_phy_query_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x30dac641 _rtl92c_phy_fw_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x41055a8c _rtl92c_store_pwrindex_diffrate_offset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x43f10554 _rtl92c_phy_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x44a4626b rtl92c_phy_rf_config +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x494a399e rtl92c_phy_set_bw_mode +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4bd8a1b4 rtl92c_dm_rf_saving +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4c064835 _rtl92c_phy_fw_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4f76f141 rtl92c_firmware_selfreset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5d6805b3 rtl92c_phy_iq_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x60828e80 rtl92c_dm_init_edca_turbo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6381233d rtl92c_phy_lc_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x63c67aa5 rtl92c_phy_set_io_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6890a1d7 _rtl92c_phy_init_bb_rf_register_definition +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6a8f244b rtl92c_set_fw_rsvdpagepkt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7a513d0e rtl92c_phy_sw_chnl_callback +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7b8906dc rtl92c_phy_set_txpower_level +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7c3944c3 rtl92c_dm_bt_coexist +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x866e1bda _rtl92c_phy_bb8192c_config_parafile +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x867007a1 rtl92c_dm_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x87b52b78 rtl92c_dm_init_rate_adaptive_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8aae7b29 rtl92c_phy_set_rfpath_switch +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9107089b rtl92ce_phy_set_rf_on +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x96c57259 rtl92c_set_fw_joinbss_report_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa0fcffa8 rtl92c_phy_sw_chnl +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa4e26a1d rtl92c_phy_update_txpower_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa99386d6 rtl92c_download_fw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb71c7973 _rtl92c_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xbc5f1ba4 rtl92c_dm_check_txpower_tracking +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc8d336e8 rtl92c_phy_ap_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc941583b rtl92c_fill_h2c_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xcccc6c40 rtl92c_phy_set_io +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd70dfc02 rtl8192_phy_check_is_legal_rfpath +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd9d7736c _rtl92c_phy_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe92311cb rtl92c_phy_set_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xfd0d0bef rtl92c_bt_rssi_state_change +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x5e1dd1f5 rtl_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x8070c3d9 rtl_pci_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xa1b1b47f rtl_pci_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xb48c8ad4 rtl_pci_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x672f2d64 rtl_usb_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x71768696 rtl_usb_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xb52deb52 rtl_usb_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xeeea8e2e rtl_usb_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x024696c8 rtl_cam_add_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x05cb6a63 rtl_cam_delete_one_entry EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0b038e24 channel5g_80m -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x12c48aba rtl_init_rfkill -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x18538ccc rtl_cam_delete_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x188f397b rtl_cam_empty_entry EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1b945315 rtl_addr_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1d78072d rtl_rx_ampdu_apply -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1f2caac8 rtl_process_phyinfo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x20e65ce6 rtl_rfreg_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2309f282 efuse_read_1byte -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2e2463da rtl_dm_diginit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2f281e2d rtl_cam_get_free_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1be06003 rtl_bb_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1f8dd97d rtl_c2hcmd_enqueue +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2e7bae66 rtl_mrate_idx_to_arfr_id EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x30a956d7 rtl_query_rxpwrpercentage -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x389dbbe3 rtl_collect_scan_list -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x488d01a1 rtl_cam_reset_all_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x324fde9e rtl_cmd_send_packet +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3420d826 rtl_cam_mark_invalid +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3773bbec rtl_send_smps_action +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x47d06f2d rtl_signal_scale_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4b6686b4 rtl_rx_ampdu_apply EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x54824f58 channel5g -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5b81deed efuse_shadow_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5f5d2c3d rtl_cam_add_one_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x73e9ce07 rtl_cam_mark_invalid -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8ab11731 rtl_cmd_send_packet +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x708494fd rtl_collect_scan_list +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x73a5072b rtl_efuse_shadow_map_update +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x765ea61a rtl_ps_disable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7ecc9374 efuse_one_byte_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x874805ba rtl_init_rfkill EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8ea60059 rtl_fw_cb -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x92357b8b rtl_cam_del_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9658628e rtl_hal_pwrseqcmdparsing -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9839dc37 rtl_signal_scale_mapping -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9d6b589b rtl_send_smps_action -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa432c5d4 rtl_phy_scan_operation_backup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xaf926ddf rtl_ps_disable_nic -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbb75fa5e rtlwifi_rate_mapping -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc1a472d3 rtl_bb_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc2e3ded7 rtl_ps_enable_nic -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xcbd5ca5f rtl_efuse_shadow_map_update -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd9301e9c rtl_get_tcb_desc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xdcb750dd rtl_cam_empty_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe9080f70 rtl_mrate_idx_to_arfr_id +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9c79082a rtl_ps_enable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xadc9e06c rtl_get_tcb_desc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbb9364d4 rtl_cam_del_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbd0f63a4 rtl_hal_pwrseqcmdparsing +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbd876b58 rtl_cam_get_free_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc0ec852b rtl_rfreg_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc3579170 rtl_cam_reset_all_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xcd276eb5 efuse_shadow_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xce8f36cd rtl_process_phyinfo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd08ac3e1 rtl_dm_diginit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd4ceab1d rtlwifi_rate_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xde0395b2 efuse_read_1byte EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xebedfe5f rtl_wowlan_fw_cb EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xed7c8cf2 rtl_evm_db_to_percentage -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf3af0a01 rtl_c2hcmd_enqueue -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xfc2bf86d efuse_power_switch -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8723d 0xd585f2fe rtw8723d_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8821c 0x48458573 rtw8821c_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822b 0x3e65884c rtw8822b_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822c 0xd1a7e372 rtw8822c_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x01b4081d rtw_tx_fill_tx_desc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x0592f791 rtw_rx_fill_rx_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x06076835 rtw_read8_physical_efuse -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x0c3f0655 rtw_phy_pwrtrack_need_lck -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x0ccb3597 rtw_rx_stats -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x0d97e587 rtw_core_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x2028d29c rtw_fw_do_iqk -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x2e7d5df5 rtw_bf_cfg_csi_rate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf545d019 efuse_power_switch +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf834bd7e rtl_phy_scan_operation_backup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8723d 0x0e84ec16 rtw8723d_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8821c 0x93449b9b rtw8821c_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822b 0xe56496a4 rtw8822b_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822c 0x0aa6fd9a rtw8822c_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x02cd80af rtw_fw_c2h_cmd_rx_irqsafe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1295de96 check_hw_ready +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x12ee44fe rtw_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1af93188 rtw_tx_report_enqueue +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1e8d487a rtw_phy_pwrtrack_avg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x2b8c0fa8 rtw_phy_cfg_agc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x30a0206b rtw_set_channel_mac +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x31bb47c6 rtw_phy_pwrtrack_get_pwridx 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 0x37f657ce rtw_dump_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x3ab07e11 rtw_phy_pwrtrack_get_pwridx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x3bf8bb65 rtw_power_mode_change -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x3ea0014b rtw_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x36e9f438 rtw_phy_pwrtrack_need_lck +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x38ec1b59 rtw_phy_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x3e7d150c rtw_rx_fill_rx_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x43373220 rtw_bf_cfg_csi_rate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x44015d94 rtw_bf_enable_bfee_mu 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 0x47e079ba rtw_phy_pwrtrack_thermal_changed -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x4f893d97 check_hw_ready +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x459a53be rtw_dump_fw EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x519c8ba9 rtw_rate_size -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x554afa2b rtw_core_deinit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x555274f3 rtw_chip_info_setup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x56594188 rtw_parse_tbl_txpwr_lmt EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x58210e60 rtw_rate_section -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x60387aa5 rtw_phy_write_rf_reg_mix -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6589e257 __rtw_dbg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x66a20f3c rtw_restore_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6b75e1e4 rtw_phy_get_tx_power_index -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7888b47b rtw_fw_c2h_cmd_isr -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x78bad977 rtw_tx_report_enqueue -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7baa0eb0 rtw_bf_enable_bfee_mu -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x824811d7 rtw_fw_inform_rfk_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x85bd2c90 rtw_parse_tbl_phy_cond -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x8922e476 rtw_unregister_hw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x8f6aa202 rtw_tx_write_data_rsvd_page_get -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9b5f0f13 rtw_parse_tbl_bb_pg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9e9b790f rtw_phy_cfg_bb -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa07b2463 rtw_bf_phy_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xaa1b3c67 rtw_bf_remove_bfee_mu -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xac9271aa rtw_phy_read_rf_sipi -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xaf3d863d rtw_coex_write_indirect_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb36d6d33 rtw_phy_cfg_agc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xbaa2407e rtw_coex_write_scbd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xbad2fa03 rtw_fw_c2h_cmd_rx_irqsafe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc0730ff8 rtw_phy_cfg_mac -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc5d9649d rtw_phy_pwrtrack_need_iqk -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc92b9e11 rtw_set_channel_mac -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xcbd195fc rtw_tx_write_data_h2c_get -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xcd2aa6e1 rtw_phy_load_tables -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xcd99e8e8 rtw_phy_cfg_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd1437dd3 rtw_phy_config_swing_table -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd71e4c54 rtw_phy_write_rf_reg_sipi -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd974d86a rtw_dump_fw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xdca56b27 rtw_phy_read_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xdda1e875 rtw_phy_parsing_cfo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe656953a rtw_phy_set_tx_power_level -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe7a5ae3f rtw_phy_pwrtrack_get_delta -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe7f791ad rtw_phy_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe82783c7 rtw_bf_remove_bfee_su -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe9fa167a rtw_bf_enable_bfee_su -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xec050380 rtw_register_hw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf95c0cc0 rtw_coex_read_indirect_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xfa297fcd rtw_phy_pwrtrack_avg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xfef3f35a rtw_bf_set_gid_table -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x1eac5dac rtw_pci_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x408cb33f rtw_pci_remove -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x82afe7d5 rtw_pci_shutdown -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0xe5d415d9 rtw_pm_ops -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x0084a70f rtw89_core_rx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x04a2ec78 rtw89_core_unregister -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x0bddebdd rtw89_mac_get_err_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x127f7b12 rtw89_core_deinit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x1b04ea6e rtw89_core_register -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x20dccdcc rtw89_core_query_rxdesc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x38ddd4f9 rtw89_chip_info_setup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x408ac674 __rtw89_debug -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x40c92ebd rtw89_phy_write_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x53057001 rtw89_core_napi_stop -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x5bfc9392 rtw89_phy_read_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x716e2caa rtw89_core_napi_deinit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xa3c9896d rtw89_core_napi_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xac3b207a rtw8852a_chip_info -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xaea07e9e rtw89_mac_set_err_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xbb0b6739 rtw89_ops -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xcc18a8dd rtw89_core_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xccb39e49 rtw89_core_napi_start -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xd169c48a rtw89_core_fill_txdesc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe261d8dd rtw89_ser_notify +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5dc28093 rtw_parse_tbl_phy_cond +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5e6e7f75 rtw_phy_pwrtrack_thermal_changed +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x633c8cc7 rtw_register_hw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x67db4d54 rtw_dump_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x69e99093 rtw_phy_cfg_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x70d0aaa1 rtw_phy_write_rf_reg_sipi +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x73a70132 rtw_phy_pwrtrack_get_delta +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7aada8ef rtw_phy_set_tx_power_level +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7eb1f68f rtw_tx_write_data_h2c_get +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x8a07e366 rtw_phy_pwrtrack_need_iqk +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x93c00f29 rtw_phy_load_tables +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x990249d1 rtw_tx_fill_tx_desc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9b1e638d rtw_phy_cfg_bb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9d172e2a rtw_phy_write_rf_reg_mix +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa12562cd rtw_core_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa350dc78 rtw_parse_tbl_txpwr_lmt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa61336b0 rtw_phy_config_swing_table +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xadd0534e __rtw_dbg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb02ee00f rtw_bf_remove_bfee_su +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb5a24b41 rtw_phy_cfg_mac +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb9beb0be rtw_unregister_hw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb9ddfe95 rtw_phy_read_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb9fc5ac9 rtw_core_deinit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xbc7ceb19 rtw_bf_phy_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xbf2e57de rtw_bf_remove_bfee_mu +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc024d481 rtw_fw_inform_rfk_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc3088859 rtw_restore_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc37cb566 rtw_coex_write_scbd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc7f78ab4 rtw_coex_read_indirect_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc8345c23 rtw_power_mode_change +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd1514a96 rtw_bf_set_gid_table +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd73d541f rtw_chip_info_setup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd74871ab rtw_rx_stats +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd8515791 rtw_fw_c2h_cmd_isr +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd9e94237 rtw_tx_write_data_rsvd_page_get +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xdc1927ac rtw_phy_get_tx_power_index +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe1752094 rtw_coex_write_indirect_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe3149886 rtw_phy_parsing_cfo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe5f2bd49 rtw_bf_enable_bfee_su +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf1ea33c9 rtw_fw_do_iqk +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf268bfd1 rtw_read8_physical_efuse +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf37ca492 rtw_phy_read_rf_sipi +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xfb0fba8d rtw_parse_tbl_bb_pg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x2eb1c8e3 rtw_pci_remove +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x93bf0fa0 rtw_pci_shutdown +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0xe17a4928 rtw_pm_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0xf5f8afaf rtw_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x01a6601a rtw89_mac_set_err_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x09541fba rtw89_phy_read_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x0dd5da89 rtw89_core_napi_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x240fa495 rtw89_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x24303ce3 rtw89_core_napi_stop +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x3a78a95d rtw89_core_napi_start +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x3bb16474 rtw89_chip_info_setup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x450edb97 __rtw89_debug +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x48ded1bf rtw89_core_unregister +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x4954cf79 rtw89_core_rx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x4c0d1987 rtw89_core_deinit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x4c1e67ec rtw89_phy_write_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x5faf9893 rtw89_core_fill_txdesc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x70a6d3da rtw89_core_register +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x75ee1604 rtw8852a_chip_info +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xab913da2 rtw89_ser_notify +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xc2316a5d rtw89_core_napi_deinit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xc97eb4c0 rtw89_mac_get_err_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xd2fbee89 rtw89_core_init EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe3f57b04 rtw89_debug_mask -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x84bf0f02 rtw89_pm_ops -EXPORT_SYMBOL drivers/net/wireless/rsi/rsi_91x 0xe79d2beb rsi_config_wowlan -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x0908af90 wlcore_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x107da91c wl12xx_is_dummy_packet -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x11ad9d61 wl1271_free_tx_id -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x3356983a wlcore_calc_packet_alignment -EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x1603be4d fdp_nci_remove -EXPORT_SYMBOL drivers/nfc/fdp/fdp 0xd9a8e17d fdp_nci_probe -EXPORT_SYMBOL drivers/nfc/microread/microread 0x2603d531 microread_probe -EXPORT_SYMBOL drivers/nfc/microread/microread 0xc7ef997b microread_remove -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x24f8ddb6 nxp_nci_probe -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x2c32f5fc nxp_nci_remove -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xfb7e35af nxp_nci_fw_recv_frame -EXPORT_SYMBOL drivers/nfc/pn533/pn533 0xd2690509 pn533_recv_frame -EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x4d0b115b pn544_hci_remove -EXPORT_SYMBOL drivers/nfc/pn544/pn544 0xebb0a5aa pn544_hci_probe -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x4e562180 s3fwrn5_remove -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x567ff2f1 s3fwrn5_phy_power_ctrl +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xeda1f5d6 rtw89_core_query_rxdesc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xebc5c68f rtw89_pm_ops +EXPORT_SYMBOL drivers/net/wireless/rsi/rsi_91x 0x7f05c9b3 rsi_config_wowlan +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x29aba65c wl12xx_is_dummy_packet +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x65642a01 wlcore_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x7f3b5881 wlcore_calc_packet_alignment +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xfaf23e71 wl1271_free_tx_id +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x3a469638 fdp_nci_probe +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x69220054 fdp_nci_remove +EXPORT_SYMBOL drivers/nfc/microread/microread 0x4144ca97 microread_probe +EXPORT_SYMBOL drivers/nfc/microread/microread 0x5530f157 microread_remove +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x50b59d00 nxp_nci_fw_recv_frame +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x80c3d6bc nxp_nci_probe +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xde075644 nxp_nci_remove +EXPORT_SYMBOL drivers/nfc/pn533/pn533 0xdfba0ad4 pn533_recv_frame +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x59998b2b pn544_hci_probe +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x753a5cda pn544_hci_remove +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x4451488f s3fwrn5_phy_power_ctrl EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x774203fc s3fwrn5_phy_set_wake -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xae8dad80 s3fwrn5_probe -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xd3df6c00 s3fwrn5_recv_frame +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x967232ac s3fwrn5_probe +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xc119569a s3fwrn5_remove +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xc71b09a9 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 0x049c3d0a ndlc_probe -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x1a5b38b3 st_nci_vendor_cmds_init -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x1f7135cd st_nci_se_init -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x2a2e87a2 ndlc_close -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x4d4a7743 ndlc_remove -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x793ce8d9 ndlc_open -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xa25d1fc6 st_nci_se_deinit -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xc05124a3 st_nci_se_io -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xcfab8bbe ndlc_send -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xdb6ff007 ndlc_recv -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x0172d98c st21nfca_apdu_reader_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x0abb0af0 st21nfca_im_send_dep_req -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x18508fdd st21nfca_se_deinit -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x2418bc6d st21nfca_vendor_cmds_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x38b54b9a st21nfca_hci_loopback_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x49b39f0e st21nfca_hci_probe -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x4e21acdc st21nfca_tm_send_dep_res -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x4e2cfb3d st21nfca_dep_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x4fbf75fa st21nfca_dep_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x5a0b1244 st21nfca_hci_discover_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x681ee6aa st21nfca_se_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x7c588297 st21nfca_connectivity_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x906c7e27 st21nfca_hci_remove -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x95097103 st21nfca_hci_disable_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xa01aa620 st21nfca_im_send_atr_req -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xcbed37d6 st21nfca_dep_deinit -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xd85f4b0c st21nfca_hci_se_io -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xea21157b st21nfca_hci_enable_se -EXPORT_SYMBOL drivers/ntb/ntb 0x09a60131 ntb_default_port_number -EXPORT_SYMBOL drivers/ntb/ntb 0x0afe8e0a ntb_msg_event -EXPORT_SYMBOL drivers/ntb/ntb 0x0db88710 ntb_set_ctx -EXPORT_SYMBOL drivers/ntb/ntb 0x1ad5bbc3 ntb_msi_peer_addr -EXPORT_SYMBOL drivers/ntb/ntb 0x21cee949 ntb_clear_ctx -EXPORT_SYMBOL drivers/ntb/ntb 0x26c1a5f2 ntb_register_device -EXPORT_SYMBOL drivers/ntb/ntb 0x4263d144 ntb_msi_peer_trigger -EXPORT_SYMBOL drivers/ntb/ntb 0x45ed4620 ntb_msi_setup_mws -EXPORT_SYMBOL drivers/ntb/ntb 0x6b23e05a ntb_unregister_device -EXPORT_SYMBOL drivers/ntb/ntb 0x82d844bf ntb_msi_clear_mws -EXPORT_SYMBOL drivers/ntb/ntb 0x8d90d097 ntb_db_event -EXPORT_SYMBOL drivers/ntb/ntb 0x979f1eff ntb_default_peer_port_number -EXPORT_SYMBOL drivers/ntb/ntb 0xae9b3090 ntbm_msi_request_threaded_irq -EXPORT_SYMBOL drivers/ntb/ntb 0xc1f14c4e ntb_unregister_client -EXPORT_SYMBOL drivers/ntb/ntb 0xe3495ea1 ntb_msi_init -EXPORT_SYMBOL drivers/ntb/ntb 0xeaa56cc2 ntb_default_peer_port_idx -EXPORT_SYMBOL drivers/ntb/ntb 0xeed24e0f ntbm_msi_free_irq -EXPORT_SYMBOL drivers/ntb/ntb 0xf2f53c92 ntb_link_event -EXPORT_SYMBOL drivers/ntb/ntb 0xf972e832 __ntb_register_client -EXPORT_SYMBOL drivers/ntb/ntb 0xf9bf637e ntb_default_peer_port_count -EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x97420657 nvdimm_namespace_detach_btt -EXPORT_SYMBOL drivers/nvdimm/nd_btt 0xacbe1ca0 nvdimm_namespace_attach_btt -EXPORT_SYMBOL drivers/parport/parport 0x071b7d79 parport_ieee1284_epp_write_addr -EXPORT_SYMBOL drivers/parport/parport 0x204e9eb7 parport_ieee1284_read_nibble -EXPORT_SYMBOL drivers/parport/parport 0x21270ea2 parport_ieee1284_epp_read_addr -EXPORT_SYMBOL drivers/parport/parport 0x21d47292 parport_remove_port -EXPORT_SYMBOL drivers/parport/parport 0x25e885f4 parport_read -EXPORT_SYMBOL drivers/parport/parport 0x27a11024 parport_ieee1284_write_compat -EXPORT_SYMBOL drivers/parport/parport 0x28bb854e parport_ieee1284_ecp_write_addr -EXPORT_SYMBOL drivers/parport/parport 0x4351aa62 parport_find_base -EXPORT_SYMBOL drivers/parport/parport 0x474b08e2 parport_ieee1284_epp_write_data +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x15a94487 ndlc_open +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x3ce1185d st_nci_se_io +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x45899b61 ndlc_probe +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x6775c07f ndlc_recv +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x8851d2e6 ndlc_close +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x90b272a5 ndlc_send +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x93fc0951 st_nci_se_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xb2f07269 st_nci_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xd44787f5 st_nci_se_deinit +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xfd7285bc ndlc_remove +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x104fdd88 st21nfca_tm_send_dep_res +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x13c2e587 st21nfca_hci_probe +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x348136b8 st21nfca_se_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x35c8dc89 st21nfca_im_send_dep_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x36ba9301 st21nfca_hci_remove +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x44890111 st21nfca_connectivity_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x47857368 st21nfca_hci_disable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x7448a02a st21nfca_hci_discover_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x8198e4e4 st21nfca_dep_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xa101c46f st21nfca_dep_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xa37da006 st21nfca_hci_se_io +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xa6a88ad2 st21nfca_apdu_reader_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xa9e1eba4 st21nfca_hci_loopback_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xbf8d55cb st21nfca_dep_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xc793b6d6 st21nfca_se_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xc9331ea4 st21nfca_hci_enable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xdd448057 st21nfca_im_send_atr_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xfda2e4f7 st21nfca_vendor_cmds_init +EXPORT_SYMBOL drivers/ntb/ntb 0x1193cde0 ntb_msi_init +EXPORT_SYMBOL drivers/ntb/ntb 0x17fe3a19 ntb_set_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0x18243e2b ntbm_msi_request_threaded_irq +EXPORT_SYMBOL drivers/ntb/ntb 0x27043bc3 ntb_db_event +EXPORT_SYMBOL drivers/ntb/ntb 0x3060c6dd ntb_msi_peer_trigger +EXPORT_SYMBOL drivers/ntb/ntb 0x3d00f7ab ntb_register_device +EXPORT_SYMBOL drivers/ntb/ntb 0x58def49a ntb_msi_peer_addr +EXPORT_SYMBOL drivers/ntb/ntb 0x9f5be6c8 ntb_unregister_device +EXPORT_SYMBOL drivers/ntb/ntb 0xa5b7648e __ntb_register_client +EXPORT_SYMBOL drivers/ntb/ntb 0xc793f221 ntb_clear_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0xc93087f8 ntb_msi_clear_mws +EXPORT_SYMBOL drivers/ntb/ntb 0xd66cde46 ntb_msi_setup_mws +EXPORT_SYMBOL drivers/ntb/ntb 0xe07d5bf4 ntbm_msi_free_irq +EXPORT_SYMBOL drivers/ntb/ntb 0xe17c8323 ntb_link_event +EXPORT_SYMBOL drivers/ntb/ntb 0xe3379f2e ntb_default_port_number +EXPORT_SYMBOL drivers/ntb/ntb 0xe89a50a2 ntb_default_peer_port_idx +EXPORT_SYMBOL drivers/ntb/ntb 0xe9a54dd4 ntb_default_peer_port_count +EXPORT_SYMBOL drivers/ntb/ntb 0xedaa836a ntb_msg_event +EXPORT_SYMBOL drivers/ntb/ntb 0xefa54b5d ntb_default_peer_port_number +EXPORT_SYMBOL drivers/ntb/ntb 0xf564e513 ntb_unregister_client +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x65bf2715 nvdimm_namespace_detach_btt +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x7e1a9872 nvdimm_namespace_attach_btt +EXPORT_SYMBOL drivers/parport/parport 0x006b8c55 parport_register_dev_model +EXPORT_SYMBOL drivers/parport/parport 0x0527e098 parport_ieee1284_ecp_write_data +EXPORT_SYMBOL drivers/parport/parport 0x0f110841 parport_announce_port +EXPORT_SYMBOL drivers/parport/parport 0x16afd0cb parport_unregister_driver +EXPORT_SYMBOL drivers/parport/parport 0x2b9c5d11 parport_ieee1284_write_compat +EXPORT_SYMBOL drivers/parport/parport 0x3b742a3d parport_remove_port +EXPORT_SYMBOL drivers/parport/parport 0x3db2d8a3 parport_ieee1284_ecp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0x4ba6085a parport_unregister_device +EXPORT_SYMBOL drivers/parport/parport 0x4bb32596 parport_wait_peripheral EXPORT_SYMBOL drivers/parport/parport 0x4d2a941b parport_ieee1284_interrupt +EXPORT_SYMBOL drivers/parport/parport 0x58e3d18b parport_get_port +EXPORT_SYMBOL drivers/parport/parport 0x5b990803 parport_ieee1284_epp_read_data EXPORT_SYMBOL drivers/parport/parport 0x5e3a3912 parport_irq_handler -EXPORT_SYMBOL drivers/parport/parport 0x5e7a48c8 parport_claim_or_block -EXPORT_SYMBOL drivers/parport/parport 0x64d14303 parport_unregister_device -EXPORT_SYMBOL drivers/parport/parport 0x68ebf0d5 parport_ieee1284_ecp_write_data -EXPORT_SYMBOL drivers/parport/parport 0x7546cf64 parport_write -EXPORT_SYMBOL drivers/parport/parport 0x8da037d1 parport_announce_port -EXPORT_SYMBOL drivers/parport/parport 0x8fe77211 parport_claim -EXPORT_SYMBOL drivers/parport/parport 0x92dad739 parport_ieee1284_epp_read_data -EXPORT_SYMBOL drivers/parport/parport 0x93fe63d1 parport_register_dev_model -EXPORT_SYMBOL drivers/parport/parport 0x96c156b8 parport_put_port -EXPORT_SYMBOL drivers/parport/parport 0x99f37c99 parport_ieee1284_ecp_read_data -EXPORT_SYMBOL drivers/parport/parport 0x9abacc6b parport_negotiate -EXPORT_SYMBOL drivers/parport/parport 0xa7ec7c50 parport_set_timeout -EXPORT_SYMBOL drivers/parport/parport 0xad3f1f46 parport_find_number -EXPORT_SYMBOL drivers/parport/parport 0xc2fc34d7 parport_unregister_driver -EXPORT_SYMBOL drivers/parport/parport 0xcb380e3c parport_ieee1284_read_byte -EXPORT_SYMBOL drivers/parport/parport 0xd0192cc7 parport_wait_peripheral -EXPORT_SYMBOL drivers/parport/parport 0xd1522df5 __parport_register_driver -EXPORT_SYMBOL drivers/parport/parport 0xd88ab847 parport_get_port -EXPORT_SYMBOL drivers/parport/parport 0xdb083876 parport_release -EXPORT_SYMBOL drivers/parport/parport 0xdd65bbdf parport_wait_event -EXPORT_SYMBOL drivers/parport/parport 0xe730b627 parport_del_port -EXPORT_SYMBOL drivers/parport/parport 0xeeffc295 parport_register_port -EXPORT_SYMBOL drivers/parport/parport_pc 0x2f08dab6 parport_pc_probe_port -EXPORT_SYMBOL drivers/parport/parport_pc 0x4abebf25 parport_pc_unregister_port -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x072db129 pcmcia_get_mac_from_cis -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x11d81af7 pcmcia_loop_tuple -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x23223bdf pcmcia_request_io -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x2f9660ad pcmcia_get_tuple -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x351402b9 pcmcia_register_driver -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x3d884f65 pcmcia_loop_config -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x4899c15c pcmcia_dev_present -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x66b1e0bd pcmcia_fixup_vpp -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x6da1db9f pcmcia_release_window -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x7b4f6137 pcmcia_request_irq -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x892638b9 pcmcia_request_window -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xa579b4bc pcmcia_fixup_iowidth -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xad766348 pcmcia_disable_device -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xb024148b pcmcia_read_config_byte -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xb8311dd4 pcmcia_map_mem_page -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xba8ad312 pcmcia_unregister_driver +EXPORT_SYMBOL drivers/parport/parport 0x5fa44d40 parport_ieee1284_epp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0x639ba17e parport_claim_or_block +EXPORT_SYMBOL drivers/parport/parport 0x66388d42 parport_claim +EXPORT_SYMBOL drivers/parport/parport 0x6731757b parport_ieee1284_epp_write_data +EXPORT_SYMBOL drivers/parport/parport 0x742bd433 parport_release +EXPORT_SYMBOL drivers/parport/parport 0x745c7101 parport_ieee1284_ecp_read_data +EXPORT_SYMBOL drivers/parport/parport 0x7ca73425 parport_negotiate +EXPORT_SYMBOL drivers/parport/parport 0x8c55f2da parport_ieee1284_read_byte +EXPORT_SYMBOL drivers/parport/parport 0x8eb8fa8c __parport_register_driver +EXPORT_SYMBOL drivers/parport/parport 0x955bac5d parport_set_timeout +EXPORT_SYMBOL drivers/parport/parport 0x981a3bb4 parport_find_number +EXPORT_SYMBOL drivers/parport/parport 0x9c964856 parport_ieee1284_read_nibble +EXPORT_SYMBOL drivers/parport/parport 0xa859f7f7 parport_register_port +EXPORT_SYMBOL drivers/parport/parport 0xd1962157 parport_del_port +EXPORT_SYMBOL drivers/parport/parport 0xdb9b76c0 parport_read +EXPORT_SYMBOL drivers/parport/parport 0xdf088f81 parport_write +EXPORT_SYMBOL drivers/parport/parport 0xea19b4d5 parport_ieee1284_epp_read_addr +EXPORT_SYMBOL drivers/parport/parport 0xf0ecdac3 parport_wait_event +EXPORT_SYMBOL drivers/parport/parport 0xf2a8f8b2 parport_put_port +EXPORT_SYMBOL drivers/parport/parport 0xfb4d07a9 parport_find_base +EXPORT_SYMBOL drivers/parport/parport_pc 0x01c38d9e parport_pc_unregister_port +EXPORT_SYMBOL drivers/parport/parport_pc 0x4ebda6b6 parport_pc_probe_port +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x3a330832 pcmcia_request_irq +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x3e5610ea pcmcia_fixup_vpp +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x48df087e pcmcia_register_driver +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x5d6747bc pcmcia_read_config_byte +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x5de03fe0 pcmcia_disable_device +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x636de3d7 pcmcia_unregister_driver +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x6477e777 pcmcia_loop_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x6d2f17ad pcmcia_map_mem_page +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x86df56f7 pcmcia_fixup_iowidth +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x917c7cf3 pcmcia_request_window +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x95fe78b5 pcmcia_request_io +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xa6dfd4e0 pcmcia_release_window +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xa743ff2e pcmcia_get_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xab56aa56 pcmcia_loop_config EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xbb312663 pcmcia_parse_tuple -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xc410f986 pcmcia_enable_device -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xd90e718d pcmcia_write_config_byte -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x06259f7d pcmcia_socket_class +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xdf850268 pcmcia_dev_present +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xe36cb4cb pcmcia_enable_device +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xec337e9f pcmcia_get_mac_from_cis +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xf57df6f3 pcmcia_write_config_byte EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x212db8d2 pcmcia_socket_list -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x2a05cf0a pcmcia_register_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x63075abf pcmcia_parse_events -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x82feae4b pcmcia_unregister_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xb08fa07c pcmcia_parse_uevents -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xb894162d pcmcia_get_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xcbd1c9c6 pcmcia_put_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x5411c2a1 pcmcia_socket_class +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x5945b90b pcmcia_reset_card +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x6f7dadd6 pcmcia_get_socket_by_nr +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x8845295e pcmcia_parse_events +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x8a1d3a66 pccard_register_pcmcia +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x8a898d9e pcmcia_parse_uevents +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xc2ad25b5 pcmcia_put_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xc390ed37 pcmcia_unregister_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xcc5a7497 pcmcia_register_socket EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xcf97f3bd dead_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xd3444847 pcmcia_get_socket_by_nr -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xec8e2a4a pccard_register_pcmcia -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xf15750ce pcmcia_reset_card +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xde12f0ba pcmcia_get_socket EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xf942709b pcmcia_socket_list_rwsem -EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0xa5aa58e6 pccard_static_ops -EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0xdd85c6a1 pccard_nonstatic_ops -EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x0defe621 cros_ec_resume -EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x13ee500e cros_ec_suspend -EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x983afa71 cros_ec_register -EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0xbd1568d3 cros_ec_unregister +EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0x09f97c3e pccard_nonstatic_ops +EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0x1866211c pccard_static_ops +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x025ff211 cros_ec_unregister +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x1bb7c1fb cros_ec_resume +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x7f3ea6ab cros_ec_suspend +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0xbb0d7df0 cros_ec_register EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0xf25aacf5 cros_ec_irq_thread EXPORT_SYMBOL drivers/platform/chrome/cros_ec_lpcs 0xaa1c36de cros_ec_lpc_io_bytes_mec EXPORT_SYMBOL drivers/platform/chrome/cros_ec_lpcs 0xc4ebc6b3 cros_ec_lpc_mec_init @@ -3959,601 +3975,601 @@ 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 0x754e36f4 __wmi_driver_register -EXPORT_SYMBOL drivers/platform/x86/wmi 0xc4190930 wmi_driver_unregister -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x024a748e unregister_rpmsg_driver -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x0c06c8ba rpmsg_find_device -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x132dbcb8 rpmsg_send -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x253fda97 rpmsg_trysend -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x2af7bf97 rpmsg_unregister_device -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x2bb56836 __register_rpmsg_driver -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x3264d2b6 rpmsg_sendto -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x5699f52b rpmsg_register_device -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x622cb09f rpmsg_send_offchannel -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x70d8d58f rpmsg_create_channel -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x83bf472d rpmsg_release_channel -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x933a8be5 rpmsg_poll -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x9a2b3525 rpmsg_trysendto -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xcf832e2d rpmsg_destroy_ept -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xd0069243 rpmsg_create_ept -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xf7d0f961 rpmsg_trysend_offchannel -EXPORT_SYMBOL drivers/rpmsg/rpmsg_ns 0x748bb06a rpmsg_ns_register_device -EXPORT_SYMBOL drivers/rtc/rtc-ds1685 0xbfc07acb ds1685_rtc_poweroff +EXPORT_SYMBOL drivers/platform/x86/wmi 0x6ef679f7 wmi_driver_unregister +EXPORT_SYMBOL drivers/platform/x86/wmi 0x8bf6003a __wmi_driver_register +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x35a0189a rpmsg_send_offchannel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x42a9138c rpmsg_destroy_ept +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x4b6474d5 rpmsg_register_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x5165134b rpmsg_create_channel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x5a0eb5e3 rpmsg_release_channel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x5cd9985f __register_rpmsg_driver +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x61184d55 rpmsg_trysendto +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x63591ce2 rpmsg_unregister_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x6fd47e7f rpmsg_create_ept +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x7254d4fc rpmsg_trysend +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x7366d601 rpmsg_find_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x92bfceac rpmsg_trysend_offchannel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x943758a9 rpmsg_sendto +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x9fbc8de2 rpmsg_send +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xb2682316 rpmsg_poll +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xdbd238bf unregister_rpmsg_driver +EXPORT_SYMBOL drivers/rpmsg/rpmsg_ns 0x37be9015 rpmsg_ns_register_device +EXPORT_SYMBOL drivers/rtc/rtc-ds1685 0x8a6525c0 ds1685_rtc_poweroff +EXPORT_SYMBOL drivers/scsi/53c700 0x095ed03f NCR_700_detect EXPORT_SYMBOL drivers/scsi/53c700 0x3d9cece0 NCR_700_intr -EXPORT_SYMBOL drivers/scsi/53c700 0xa79fc0ec NCR_700_detect -EXPORT_SYMBOL drivers/scsi/53c700 0xc3f0ef17 NCR_700_release -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x41d83a32 scsi_esp_template +EXPORT_SYMBOL drivers/scsi/53c700 0xc4600374 NCR_700_release +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x3282cfb0 scsi_esp_unregister EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4a29ab38 scsi_esp_intr -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x7a838cfc scsi_esp_register -EXPORT_SYMBOL drivers/scsi/esp_scsi 0xb55b23f4 scsi_esp_cmd -EXPORT_SYMBOL drivers/scsi/esp_scsi 0xe2c5a634 scsi_esp_unregister -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x00bc9836 fcoe_ctlr_link_up -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x0951f1a5 fcoe_ctlr_link_down -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x14e78740 fcoe_ctlr_recv -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x40c79542 fcoe_fcf_get_selected -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x43c67aa6 fcoe_ctlr_set_fip_mode -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x683f17d4 fcoe_ctlr_recv_flogi -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x6d417542 fcoe_transport_detach -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x9c01f972 fcoe_transport_attach -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xb7efb5a8 fcoe_ctlr_destroy -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xc48e3bea fcoe_ctlr_init -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xc6677a48 fcoe_ctlr_els_send -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x01aeda60 fc_lport_bsg_request -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0c8df138 fc_disc_config -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0d49e44b fc_exch_mgr_list_clone -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x107f845f fc_elsct_send -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x11436644 fc_fabric_login -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1360c8a7 fc_queuecommand -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x144bbb2e fc_set_rport_loss_tmo -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1c3525dc fc_eh_abort -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1e9e75c2 fc_get_host_stats +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x9c1d6518 scsi_esp_register +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xaabba61b scsi_esp_cmd +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xee14a472 scsi_esp_template +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x044da4fb fcoe_fcf_get_selected +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x1bcfa19d fcoe_ctlr_destroy +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x51e7a928 fcoe_ctlr_els_send +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x5bcf3a28 fcoe_ctlr_set_fip_mode +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x750512b3 fcoe_transport_detach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x7ed9a3d4 fcoe_ctlr_link_down +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xb18563d9 fcoe_ctlr_recv_flogi +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xc99fc963 fcoe_ctlr_recv +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xd637d8e5 fcoe_ctlr_init +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xdfe8392b fcoe_transport_attach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xecefdd0c fcoe_ctlr_link_up +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x008ca42e fc_seq_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x09d81b0d fc_exch_mgr_free +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0d607b65 fc_eh_device_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x12ce3544 libfc_vport_create EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22b90986 fc_exch_mgr_del -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x236e2288 fc_exch_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x25fea018 fc_lport_destroy -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x269070b5 fc_seq_assign -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2c0a562e fc_exch_update_stats -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2d95ab6f fc_lport_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x24469719 fc_rport_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x24c649e1 fc_fc4_deregister_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x25ecb5a8 fc_exch_init EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2eccbfa6 fc_lport_flogi_resp -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2edbe888 fc_rport_create -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x31c857f1 fc_rport_lookup -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x33bdbec3 fc_lport_iterate -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3abc533a fc_lport_recv -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3d0608fa fc_fcp_destroy -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3d1b8ed6 fc_disc_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4dd2dc4c fc_elsct_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5eeb0b9e fc_rport_terminate_io -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x67c01bd1 fc_rport_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x35827ec3 fc_rport_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x41191b2d fc_exch_mgr_list_clone +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4c282d51 fc_lport_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4de60950 fc_eh_abort +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x529b8a93 fc_fcp_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x560108ce fc_exch_mgr_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6a99285c fc_exch_mgr_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6cbd00f3 fc_elsct_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6e547c34 fc_vport_id_lookup EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x731837c4 fc_lport_logo_resp -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7a4425ef fc_vport_setlink +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x74cea1b6 fc_lport_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7808ee6b fc_lport_bsg_request +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7e6bd94f fc_rport_terminate_io EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7f3407a7 fc_seq_start_next -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x805899ef fc_lport_reset EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x80e34c44 fc_frame_alloc_fill EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x811811e0 fc_exch_done EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8264d30a _fc_frame_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8a524df5 fc_exch_seq_send -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8b332aa1 fc_eh_device_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8b540085 fc_eh_host_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x90762538 fc_exch_mgr_free -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x996f8891 fc_fcp_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9aaf178c fc_seq_send -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9cf20310 fc_fc4_register_provider -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9d444974 fc_lport_set_local_id +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x851c01d6 fc_get_host_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8ac58888 fc_rport_recv_req +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8d21f339 fc_rport_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8dc03040 fc_fc4_register_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8e88bc2e fc_get_host_port_state +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x94b62fd8 fc_lport_init EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9d50ed7e fc_rport_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9d86db03 fc_exch_mgr_add +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa0ad9629 fc_disc_config EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa1bcd198 fc_cpu_mask -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa73c5b6a fc_linkdown -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa888a298 fc_slave_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa90f2720 fc_vport_id_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa25fc9dd fc_set_mfs +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xafdb0ba7 fc_get_host_speed +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb0971ec5 fc_slave_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb0aeefac fc_lport_reset EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb0ddd5a1 fc_rport_flush_queue -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb5c272a5 fc_set_mfs +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb458e8f8 fc_rport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb50a6ca3 fc_elsct_send EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb689cd32 fc_frame_crc_check +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb7009910 fc_lport_set_local_id +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc059291c fc_exch_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc10d32b7 fc_lport_config EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc2dd8cd4 fc_fill_reply_hdr -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc4284816 fc_get_host_speed -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc5c56b0e fc_linkup -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc6df5054 fc_lport_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc7d6ed9d fc_exch_recv -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc9adfc57 fc_exch_mgr_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcc3e5141 fc_exch_mgr_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd37c7178 fc_get_host_port_state -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd5956e50 libfc_vport_create -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe0bab4f9 fc_fabric_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcbeb026c fc_disc_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xda940792 fc_fabric_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xdaa66a46 fc_lport_iterate +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xdf3d2598 fc_exch_update_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe084ade2 fc_linkup EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe3b928e9 fc_fill_hdr -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe5a922d6 fc_rport_recv_req -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe5c530ed fc_exch_mgr_add EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe5cf06b5 fc_lport_notifier_head -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf88a7415 fc_fc4_deregister_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xeb2d5aea fc_linkdown +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xeba2f0a0 fc_vport_setlink +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xeda49b35 fc_eh_host_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xee4fe452 fc_set_rport_loss_tmo +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf1507776 fc_fcp_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf1c197eb fc_exch_seq_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf32191ba fc_fabric_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf4841e50 fc_queuecommand EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfa4667d1 fc_seq_release +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfadc5618 fc_seq_assign EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfeb5a73f fc_seq_set_resp -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xffb29834 fc_rport_logoff -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x0f0e44d7 sas_prep_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x0814b35d sas_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x164b58bc sas_suspend_ha EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x4a8e3d34 try_test_sas_gpio_gp_bit -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x93090df9 sas_resume_ha -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xd00de70a sas_suspend_ha -EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x5e463e2d mraid_mm_register_adp +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x54a8509b sas_prep_resume_ha +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x65708550 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 0x2cad5b9c qlt_lport_register -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x37b1bcf1 qlt_unreg_sess -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x5097f41f qlt_stop_phase1 -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x518287ba qlt_rdy_to_xfer -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x591e6a34 qlt_xmit_tm_rsp -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x7675d78e qlt_free_mcmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x7b1f5822 qlt_abort_cmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x7ff27a91 qlt_enable_vha -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xb14af834 qlt_lport_deregister -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xcdb73cd1 qlt_xmit_response -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xdc7c2680 qlt_free_cmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xe8066a6a qlt_stop_phase2 -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x0f7e8c2d qlogicfas408_disable_ints -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x1a9185d8 qlogicfas408_abort +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x5c46af29 qlt_abort_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x73c17f85 qlt_xmit_tm_rsp +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x7ec1969e qlt_lport_register +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x86241bc9 qlt_free_mcmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x8d3228ec qlt_rdy_to_xfer +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x9a341218 qlt_stop_phase1 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xa5697640 qlt_xmit_response +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xa6777889 qlt_unreg_sess +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xb0a9f706 qlt_free_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xb1811bd5 qlt_enable_vha +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xe1314088 qlt_lport_deregister +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xec9a9ca8 qlt_stop_phase2 EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x1f55cd70 qlogicfas408_ihandl +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x2a5bbb31 qlogicfas408_queuecommand EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x3fd8cd71 qlogicfas408_detect -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x79a526b1 qlogicfas408_queuecommand -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x99e53c94 qlogicfas408_info -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xb2a839be qlogicfas408_biosparam -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xc7c2f803 qlogicfas408_host_reset +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x457e6f15 qlogicfas408_disable_ints +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x949cf998 qlogicfas408_abort +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xd706a74b qlogicfas408_info +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xddb0ff42 qlogicfas408_biosparam +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xdf3b7c51 qlogicfas408_host_reset EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xe76b3b20 qlogicfas408_get_chip_type EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xf2b95199 qlogicfas408_setup -EXPORT_SYMBOL drivers/scsi/raid_class 0x123eb633 raid_component_add -EXPORT_SYMBOL drivers/scsi/raid_class 0x8e8eff58 raid_class_attach -EXPORT_SYMBOL drivers/scsi/raid_class 0xa5ca31c3 raid_class_release -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x0322d650 fc_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x310fe4a4 fc_remove_host +EXPORT_SYMBOL drivers/scsi/raid_class 0x27ab1a3d raid_component_add +EXPORT_SYMBOL drivers/scsi/raid_class 0x78a8d063 raid_class_release +EXPORT_SYMBOL drivers/scsi/raid_class 0xfce53dcf raid_class_attach +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x17a28bbd fc_block_scsi_eh +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x2d82dc19 fc_remove_host EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x375f8bbd fc_get_event_number -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x540f3df1 fc_find_rport_by_wwpn -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x62942bf3 fc_block_scsi_eh -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7e6143e9 fc_host_fpin_rcv -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x95ff8e16 fc_vport_create -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xa18d35da fc_remote_port_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xa5e9cf1e fc_host_post_fc_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xa6af3345 fc_remote_port_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xb7edaf6d fc_block_rport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xbaa58b8c fc_remote_port_rolechg -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xbf5f3813 fc_eh_timed_out -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xed2ed3c5 fc_host_post_vendor_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xed7a5f09 fc_vport_terminate -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xefd6a857 fc_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xfbfd72cb scsi_is_fc_rport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xfda7e6a2 fc_host_post_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x005d2684 sas_phy_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x01e86c2d sas_phy_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0de3e13f sas_expander_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1633d4bd sas_phy_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1a39be1b sas_port_mark_backlink -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1b9e3aef sas_port_add_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2dbf1c9a sas_rphy_unlink -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2e2c3cc7 sas_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x345b11c8 sas_remove_children -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x36532638 sas_port_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3ab9c22a sas_port_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4bf0ceb7 sas_rphy_remove -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x528548e0 sas_port_alloc_num -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5a76aff3 sas_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x63f73cb9 sas_rphy_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6416d36a scsi_is_sas_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6cff8b73 scsi_is_sas_rphy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7c355dd0 sas_rphy_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x93772eed sas_rphy_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa05c48ff sas_port_delete_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa29bc360 sas_port_get_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb0366bbc sas_remove_host -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb2db6e1d sas_phy_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc0038e59 sas_get_address -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc3af01b5 sas_read_port_mode_page -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc4a7b924 sas_port_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd53a5071 scsi_is_sas_port -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd7fe6198 sas_port_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf88e8c5b sas_end_device_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x1efc2b4c spi_dv_device -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x23624b83 spi_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x41caac92 fc_eh_timed_out +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x4ec72a31 fc_host_post_vendor_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x52482971 fc_host_fpin_rcv +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x53132bea fc_host_post_fc_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x77d1970b fc_block_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x8a2af663 fc_remote_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x966f7909 scsi_is_fc_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x9688bd43 fc_find_rport_by_wwpn +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x9fd3202a fc_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xac392559 fc_host_post_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xb7c48e2a fc_vport_terminate +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xb8ddbfb6 fc_remote_port_rolechg +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xbb5dee1a fc_remote_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xe5539681 fc_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xea165761 fc_vport_create +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x06788c8f scsi_is_sas_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0a0d3f82 sas_port_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0e88273c sas_port_delete_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1a770074 sas_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1cd5afed sas_phy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2b4206e2 sas_port_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x37729fe4 sas_rphy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3a965664 sas_read_port_mode_page +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3bb8a177 sas_rphy_unlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x41df83fb sas_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4369cb39 sas_port_get_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4f9165bb sas_port_mark_backlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x51b09f1c sas_end_device_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x53cf2785 sas_get_address +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6845e3c7 sas_phy_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6db1e724 sas_phy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x751fd1ad sas_expander_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x79266d9b sas_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x85ad4091 sas_port_add_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x891366c3 sas_remove_children +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8fbdd0cd sas_rphy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x922cf0fe sas_port_alloc_num +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x9a123cc1 sas_phy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa07f293a sas_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb64cad50 scsi_is_sas_rphy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb74c74d1 sas_rphy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xdad1369a sas_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe838602a scsi_is_sas_port +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xedd02601 sas_rphy_remove +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x1dac9bd3 spi_attach_transport EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x6ec4fd5a spi_schedule_dv_device -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xa69a737d spi_display_xfer_agreement -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xfaea6fc6 spi_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x133d851e srp_start_tl_fail_timers +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3f7834ca spi_schedule_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x5391a514 spi_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x85aa8345 spi_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x9feb6dcb spi_display_xfer_agreement +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x2bb8f4e4 srp_timed_out EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x405b6e05 srp_parse_tmo -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x646192fc srp_rport_put -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x9ce67bd1 srp_rport_get -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xf21be1a9 srp_timed_out -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xfd85378f srp_reconnect_rport -EXPORT_SYMBOL drivers/scsi/ufs/tc-dwc-g210 0x075bf16d tc_dwc_g210_config_40_bit -EXPORT_SYMBOL drivers/scsi/ufs/tc-dwc-g210 0xd90e4352 tc_dwc_g210_config_20_bit -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x133e6d47 ufshcd_system_suspend -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x1871ec13 ufshcd_runtime_suspend -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x36f520f0 ufshcd_map_desc_id_to_length -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x60e7925e ufshcd_system_resume -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0xb8c2c9f4 ufshcd_alloc_host -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0xebceea42 ufshcd_get_local_unipro_ver -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0xedb4a5e1 ufshcd_shutdown -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0xf4b9e791 ufshcd_runtime_resume -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-dwc 0x0bf90dc3 ufshcd_dwc_link_startup_notify -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-dwc 0xb71a4aa5 ufshcd_dwc_dme_set_attrs -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x05ea3e40 qmi_handle_release +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x999f5e11 srp_start_tl_fail_timers +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xa0fd68d0 srp_reconnect_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xacf17ea9 srp_rport_put +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xe19e3f7f srp_rport_get +EXPORT_SYMBOL drivers/scsi/ufs/tc-dwc-g210 0x74738ec0 tc_dwc_g210_config_20_bit +EXPORT_SYMBOL drivers/scsi/ufs/tc-dwc-g210 0xd2e0e8a4 tc_dwc_g210_config_40_bit +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x00f0e18b ufshcd_runtime_suspend +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x5160c78d ufshcd_map_desc_id_to_length +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x68656101 ufshcd_system_suspend +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x8fe160e8 ufshcd_get_local_unipro_ver +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x9e4b101b ufshcd_alloc_host +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0xb1602b1b ufshcd_system_resume +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0xd910042e ufshcd_shutdown +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0xf95359c9 ufshcd_runtime_resume +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-dwc 0xac4e0b0d ufshcd_dwc_link_startup_notify +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-dwc 0xe5ba4c01 ufshcd_dwc_dme_set_attrs EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x0ef12cc9 qmi_encode_message -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x211ce05f qmi_txn_init +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x10d588fb qmi_add_lookup EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x21ce5888 qmi_response_type_v01_ei -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x3d1d23e3 qmi_send_indication -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x66f54e59 qmi_send_response +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x34e9844b qmi_txn_cancel +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x36feb821 qmi_handle_init +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x551567e0 qmi_txn_wait +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x59b569c5 qmi_txn_init EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x68772745 qmi_decode_message -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x7225c31f qmi_txn_cancel -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x95bf6315 qmi_handle_init -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xa49e34a9 qmi_txn_wait -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xb10b45e2 qmi_add_server -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xb375b522 qmi_send_request -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xed2b03da qmi_add_lookup -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x11991f7e sdw_extract_slave_id +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x75388427 qmi_send_indication +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xbe5fd035 qmi_add_server +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xc9ee16cb qmi_handle_release +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xcd6237ca qmi_send_request +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xd668d26c qmi_send_response +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x05870a3a sdw_bus_master_delete +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x0c0edc7e sdw_stream_add_slave +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x0efa7156 sdw_write +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x117ddfde sdw_update EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x16d1706b sdw_prepare_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x1d36acb9 sdw_stream_remove_master EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x1deee061 sdw_find_row_index -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x2c00e51a sdw_stream_remove_slave -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x2eb7a306 sdw_stream_add_slave +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x2bebae4b sdw_slave_add EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x3b0a8582 sdw_startup_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x3e3b9db4 sdw_slave_read_prop -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x3f41633a sdw_nwrite +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x3b62e649 sdw_bread_no_pm_unlocked +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x4a09d120 sdw_read EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x4cde88bf sdw_disable_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x4e74469a sdw_stream_add_master -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x5b126496 sdw_bus_master_add EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x60e31fbb sdw_find_col_index -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x6147badc sdw_bus_exit_clk_stop -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x61e44793 sdw_read -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x623ef83c sdw_master_read_prop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x6671455a sdw_extract_slave_id +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x692debb1 sdw_stream_remove_master EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x6f95b16b sdw_shutdown_stream EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x71891d59 sdw_deprepare_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x7a5dc837 sdw_bread_no_pm_unlocked -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x805bcbc1 sdw_handle_slave_status -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x8803dfbc sdw_bwrite_no_pm_unlocked -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x93e219a7 sdw_nread +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x71b62be3 sdw_bus_exit_clk_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x725f9c5b sdw_write_no_pm +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x72c2fb0c sdw_bus_master_add +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x78f49bc0 sdw_stream_remove_slave +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x823c74ae sdw_compare_devid +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x8f4dfece sdw_master_read_prop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x9c703b0e sdw_nwrite EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x9e122d79 sdw_alloc_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xa0f5f9e5 sdw_write -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xb50edb5c sdw_update -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xb9292c6f sdw_write_no_pm -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xb9982a3c sdw_bus_master_delete +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xafa35a86 sdw_bus_clk_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xb2fa6aff sdw_bus_prep_clk_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xb5d297f2 sdw_update_no_pm 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 0xc561736c sdw_read_no_pm -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xd6b55f8c sdw_update_no_pm +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xbd0aac7e sdw_bwrite_no_pm_unlocked +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xc1cf8460 sdw_slave_read_prop EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xda5bce09 sdw_release_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xdbead4fa sdw_bus_clk_stop -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xde7c5d45 sdw_bus_prep_clk_stop -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xe4dc8d86 sdw_slave_add -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xef8e848c sdw_compare_devid -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xf260a7e6 sdw_clear_slave_status +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xdaa01d9d sdw_stream_add_master +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xe9f52428 sdw_read_no_pm +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xf3ed055e sdw_clear_slave_status EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xf53ba0b8 sdw_rows -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x0905226b cdns_xfer_msg -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x1e05676f sdw_cdns_init -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x2811e836 sdw_cdns_config_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x2f2ec5b5 sdw_cdns_probe +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xf5dbfcfa sdw_nread +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xfc241ed6 sdw_handle_slave_status +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x08b9e353 sdw_cdns_pdi_init +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x0aa17d35 cdns_bus_conf +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x0c36b1d0 sdw_cdns_is_clock_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x0e5df260 sdw_cdns_config_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x1c04ef90 sdw_cdns_enable_interrupt +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x1d967fe0 sdw_cdns_exit_reset +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x2e20d8d1 sdw_cdns_alloc_pdi EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x34712074 sdw_cdns_irq -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x35197d99 sdw_cdns_alloc_pdi -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x48e073ac cdns_set_sdw_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x4a3a987f sdw_cdns_check_self_clearing_bits -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x727d0cca sdw_cdns_is_clock_stop -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x7df986d9 cdns_xfer_msg_defer -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x804d3a41 sdw_cdns_exit_reset -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x83da20e6 cdns_reset_page_addr -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xcf74e2f5 sdw_cdns_clock_stop -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xcff56ec4 sdw_cdns_enable_interrupt -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xd43b9f88 sdw_cdns_clock_restart -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xd5755556 sdw_cdns_pdi_init -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xdced8ae1 cdns_bus_conf -EXPORT_SYMBOL drivers/soundwire/soundwire-generic-allocation 0xb96558cf sdw_compute_params -EXPORT_SYMBOL drivers/ssb/ssb 0x2e95e45a ssb_pmu_set_ldo_voltage -EXPORT_SYMBOL drivers/ssb/ssb 0x3aa50756 ssb_bus_may_powerdown -EXPORT_SYMBOL drivers/ssb/ssb 0x3d3eecad ssb_bus_unregister -EXPORT_SYMBOL drivers/ssb/ssb 0x50337f00 ssb_bus_sdiobus_register -EXPORT_SYMBOL drivers/ssb/ssb 0x60a8c2f2 ssb_commit_settings -EXPORT_SYMBOL drivers/ssb/ssb 0x6578fe75 ssb_clockspeed -EXPORT_SYMBOL drivers/ssb/ssb 0x65faa076 ssb_bus_suspend -EXPORT_SYMBOL drivers/ssb/ssb 0x86df0052 ssb_device_is_enabled -EXPORT_SYMBOL drivers/ssb/ssb 0x870542f2 __ssb_driver_register -EXPORT_SYMBOL drivers/ssb/ssb 0x8cc260e7 ssb_device_disable -EXPORT_SYMBOL drivers/ssb/ssb 0xa6753c15 ssb_bus_powerup -EXPORT_SYMBOL drivers/ssb/ssb 0xba5b296d ssb_set_devtypedata -EXPORT_SYMBOL drivers/ssb/ssb 0xbc89973b ssb_bus_resume -EXPORT_SYMBOL drivers/ssb/ssb 0xc8cc6181 ssb_driver_unregister +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x40ed4d5f sdw_cdns_init +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x5cf37924 cdns_xfer_msg_defer +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x6585463d cdns_set_sdw_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x75e0341e sdw_cdns_clock_restart +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x89140a69 cdns_reset_page_addr +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x8a6cba8c sdw_cdns_probe +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xb1938cd4 sdw_cdns_clock_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xec412674 sdw_cdns_check_self_clearing_bits +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xf34480e3 cdns_xfer_msg +EXPORT_SYMBOL drivers/soundwire/soundwire-generic-allocation 0x4991e1ef sdw_compute_params +EXPORT_SYMBOL drivers/ssb/ssb 0x024f3088 __ssb_driver_register +EXPORT_SYMBOL drivers/ssb/ssb 0x05c45914 ssb_device_disable +EXPORT_SYMBOL drivers/ssb/ssb 0x17290d8e ssb_bus_may_powerdown +EXPORT_SYMBOL drivers/ssb/ssb 0x2376a7ad ssb_pcihost_register +EXPORT_SYMBOL drivers/ssb/ssb 0x26f8010b ssb_clockspeed +EXPORT_SYMBOL drivers/ssb/ssb 0x372996b9 ssb_driver_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0x3da0fb73 ssb_pcicore_dev_irqvecs_enable +EXPORT_SYMBOL drivers/ssb/ssb 0x403067cf ssb_device_is_enabled +EXPORT_SYMBOL drivers/ssb/ssb 0x4546397f ssb_commit_settings +EXPORT_SYMBOL drivers/ssb/ssb 0x4b9d97e3 ssb_chipco_gpio_control +EXPORT_SYMBOL drivers/ssb/ssb 0x63f9c5d4 ssb_pmu_set_ldo_voltage +EXPORT_SYMBOL drivers/ssb/ssb 0x6536eef6 ssb_bus_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0x7661efc7 ssb_dma_translation +EXPORT_SYMBOL drivers/ssb/ssb 0x8e553162 ssb_set_devtypedata +EXPORT_SYMBOL drivers/ssb/ssb 0x8f2efcc0 ssb_bus_powerup +EXPORT_SYMBOL drivers/ssb/ssb 0x93b9211d ssb_bus_sdiobus_register +EXPORT_SYMBOL drivers/ssb/ssb 0xac6a3aa0 ssb_device_enable EXPORT_SYMBOL drivers/ssb/ssb 0xcb17f1cb ssb_admatch_base -EXPORT_SYMBOL drivers/ssb/ssb 0xcbd71024 ssb_device_enable -EXPORT_SYMBOL drivers/ssb/ssb 0xd9630353 ssb_chipco_gpio_control +EXPORT_SYMBOL drivers/ssb/ssb 0xcb457de2 ssb_bus_suspend +EXPORT_SYMBOL drivers/ssb/ssb 0xdda930f8 ssb_pmu_set_ldo_paref EXPORT_SYMBOL drivers/ssb/ssb 0xdfc7c6ef ssb_admatch_size -EXPORT_SYMBOL drivers/ssb/ssb 0xf06aebf2 ssb_pcicore_dev_irqvecs_enable -EXPORT_SYMBOL drivers/ssb/ssb 0xfb258768 ssb_pcihost_register -EXPORT_SYMBOL drivers/ssb/ssb 0xfd87ff2d ssb_pmu_set_ldo_paref -EXPORT_SYMBOL drivers/ssb/ssb 0xff2344b7 ssb_dma_translation -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x10cff2af fbtft_unregister_backlight -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x1ff91efa fbtft_write_vmem16_bus16 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x32a78fba fbtft_write_reg16_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x38e52ac7 fbtft_write_reg16_bus16 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x396a2196 fbtft_probe_common -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x48dd8995 fbtft_write_vmem16_bus9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x4cabf20e fbtft_write_gpio16_wr_latched -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x553d3b2d fbtft_framebuffer_release -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x56e81927 fbtft_write_gpio8_wr -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x5948273c fbtft_register_framebuffer -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x5cb9f048 fbtft_read_spi -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x5d634a0d fbtft_framebuffer_alloc -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x5f59b46e fbtft_remove_common -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x680b0293 fbtft_write_buf_dc -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x86dff2a9 fbtft_write_gpio16_wr -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x8f612deb fbtft_write_spi -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x9f5f5eb6 fbtft_init_display -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xa88e6556 fbtft_register_backlight -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xb4c316a2 fbtft_write_spi_emulate_9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xbbc379fe fbtft_write_vmem16_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xcb2241be fbtft_write_reg8_bus9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xd6221086 fbtft_dbg_hex -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xeaa421ba fbtft_write_reg8_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xfaa594ec fbtft_unregister_framebuffer -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xfc5e8664 fbtft_write_vmem8_bus8 -EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x1786005c gbaudio_register_module -EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x2355dbfd gbaudio_unregister_module -EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x30b7cb68 gbaudio_module_update -EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0x71b696bb adt7316_probe -EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0x86977d68 ade7854_probe -EXPORT_SYMBOL drivers/staging/media/av7110/sp8870 0xa1046f1b sp8870_attach -EXPORT_SYMBOL drivers/staging/media/zoran/videocodec 0x6c220fe9 videocodec_unregister -EXPORT_SYMBOL drivers/staging/media/zoran/videocodec 0x6f557114 videocodec_register -EXPORT_SYMBOL drivers/staging/media/zoran/videocodec 0x93b6450e videocodec_attach -EXPORT_SYMBOL drivers/staging/media/zoran/videocodec 0x95db2034 videocodec_detach -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x08f6814c rtllib_wx_get_rate -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x096af502 rtllib_wx_set_encode_ext -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0b83a5a1 rtllib_sta_ps_send_null_frame -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0ec21df1 rtllib_start_send_beacons -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0f323f04 dot11d_init -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1ade7e3d rtllib_wx_get_freq +EXPORT_SYMBOL drivers/ssb/ssb 0xecda4800 ssb_bus_resume +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x17111c28 fbtft_write_gpio16_wr_latched +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x25b91f44 fbtft_write_reg8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x2b377077 fbtft_unregister_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x3ad1b796 fbtft_write_buf_dc +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x3cfee397 fbtft_write_reg16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x4b070a09 fbtft_remove_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x4d4c0b71 fbtft_init_display +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x5e9d8baa fbtft_write_reg8_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x5ee7fb12 fbtft_register_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x6d101dbd fbtft_write_spi_emulate_9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x6d529d62 fbtft_probe_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x6fa500a6 fbtft_write_gpio8_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x7f539fbe fbtft_dbg_hex +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x852eb9ad fbtft_write_vmem16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x916a2f86 fbtft_framebuffer_release +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x974dd0b5 fbtft_register_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x97fbc7bc fbtft_write_vmem16_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x9bed2809 fbtft_write_reg16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x9f1db9e4 fbtft_read_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xbc62f529 fbtft_write_gpio16_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc72d72e9 fbtft_write_vmem8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xe002781a fbtft_write_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xe4537596 fbtft_framebuffer_alloc +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xe88c612f fbtft_unregister_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xe8c78346 fbtft_write_vmem16_bus8 +EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x9d14e368 gbaudio_unregister_module +EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0xd3fc0460 gbaudio_module_update +EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0xd4e009bd gbaudio_register_module +EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0x1608b71a adt7316_probe +EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0x96f3c283 ade7854_probe +EXPORT_SYMBOL drivers/staging/media/av7110/sp8870 0x31eab548 sp8870_attach +EXPORT_SYMBOL drivers/staging/media/zoran/videocodec 0x0a5a2f10 videocodec_register +EXPORT_SYMBOL drivers/staging/media/zoran/videocodec 0x7a7259ec videocodec_unregister +EXPORT_SYMBOL drivers/staging/media/zoran/videocodec 0xcbcb9684 videocodec_attach +EXPORT_SYMBOL drivers/staging/media/zoran/videocodec 0xe6b0ea50 videocodec_detach +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x010f2679 rtllib_wx_get_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0a592e3f rtllib_wx_set_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1769b505 rtllib_wx_get_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1a3d004c rtllib_softmac_start_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1b4023dc rtllib_wx_get_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x22000956 rtllib_wx_set_wap EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x22166084 rt_global_debug_component -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x247f30da rtllib_wx_set_rate -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2e5cf682 rtllib_start_scan_syncro -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x32ad6007 rtllib_act_scanning -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3657cfab rtllib_wx_set_freq -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3fcdfd30 rtllib_wx_set_rts -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x41138da2 RemovePeerTS -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x519af951 rtllib_DisableIntelPromiscuousMode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x52606e62 rtllib_EnableIntelPromiscuousMode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x620291e5 rtllib_wx_set_gen_ie -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6c71c5ad rtllib_MgntDisconnect -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6c8a1dba rtllib_wx_set_encode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6fe2e08e rtllib_wx_get_rts -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8119e0c9 rtllib_wx_set_auth -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8b573d4c rtllib_wx_get_name -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8dd59498 rtllib_wx_set_mode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8e192c16 rtllib_wx_get_power -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x975993d6 rtllib_wx_set_power -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9ec4c719 rtllib_rx -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa15c250e rtllib_wx_get_mode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa22fa3ed rtllib_stop_scan_syncro -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa4bfd2fd rtllib_legal_channel -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb03c345f alloc_rtllib -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb171675f notify_wx_assoc_event -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbcc878ae rtllib_get_beacon -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbd60fc2f rtllib_wx_set_wap -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbffda933 free_rtllib -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc5b05695 rtllib_stop_send_beacons -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc7b9ae8f rtllib_reset_queue -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc828c145 dot11d_channel_map -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xcb5996ce rtllib_xmit -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd787cb8f rtllib_wx_set_rawtx -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdb52cb2b rtllib_wx_get_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x243e2b73 alloc_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x30f780cf rtllib_start_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x33c93202 rtllib_wx_set_encode_ext +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x370ab836 rtllib_reset_queue +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3f16654f rtllib_start_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x423b5d02 rtllib_rx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x42b3a35a rtllib_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x473e8d30 rtllib_wx_set_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4affa670 rtllib_stop_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4bcb4c04 RemovePeerTS +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4d198837 rtllib_wx_set_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x517268e8 rtllib_act_scanning +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x525211af rtllib_wx_set_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x59aff274 rtllib_DisableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5b1bed7c rtllib_wx_get_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5f449fe2 rtllib_xmit +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x72fe0634 rtllib_stop_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7d0bb9a5 notify_wx_assoc_event +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7e613533 rtllib_wx_get_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8264c3c1 rtllib_wx_get_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x85fb7421 HT_update_self_and_peer_setting +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x864f6e76 rtllib_stop_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x87835aed rtllib_wx_set_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x879f2d78 free_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x93dae56a rtllib_wx_set_mlme +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x93f15493 rtllib_sta_ps_send_null_frame +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9494d8d8 rtllib_get_beacon +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x982d896b rtllib_wx_get_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9d4497ff rtllib_MgntDisconnect +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb014fc1e dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb41eadf7 rtllib_wx_set_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbe6185aa rtllib_ps_tx_ack +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbfe4473f dot11d_channel_map +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc4dda951 rtllib_EnableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc5e41d05 rtllib_softmac_stop_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xca6faeee rtllib_wx_set_gen_ie +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xcb70bebd rtllib_wx_set_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd1daf106 rtllib_wx_get_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd61288ca rtllib_wx_set_rawtx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdd162dc1 rtllib_wx_set_rate EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdf78f620 rtllib_wlan_frequencies -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe1f3aee1 rtllib_wx_set_essid -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe3d38d4f rtllib_softmac_start_protocol -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe8bd99dd rtllib_stop_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xec812914 rtllib_softmac_stop_protocol -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xed4fe191 rtllib_wx_get_wap -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf2eee861 HT_update_self_and_peer_setting -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf365c42d rtllib_ps_tx_ack -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf7db7abd rtllib_wx_set_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf7f79fb5 rtllib_wx_get_encode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf8b31121 rtllib_wx_get_essid -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xfb8df1ea rtllib_wx_set_mlme -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x01c79166 ieee80211_rx_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x09a77348 ieee80211_wx_get_encode_ext_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0c1582be ieee80211_wx_get_rate_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0cad6228 dot11d_update_country_ie -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0dd7df82 rtl8192u_dot11d_init -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0f12a3b9 ieee80211_wx_get_freq_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0f6b9187 dot11d_get_max_tx_pwr_in_dbm -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x169c2655 ieee80211_txb_free_rsl +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe75a47a7 rtllib_wx_get_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe925bea5 rtllib_wx_set_auth +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xed58e287 rtllib_wx_get_name +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0940cfd7 dot11d_get_max_tx_pwr_in_dbm +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1593630f ieee80211_wx_set_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x15d5a53b ieee80211_wx_get_encode_ext_rsl EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1d66a0ff ieee80211_is_shortslot_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1db7ee59 ieee80211_wx_get_mode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x228386c0 ieee80211_wx_set_essid_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x230e943b ieee80211_stop_send_beacons_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x24187d57 ieee80211_wx_get_power_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2aa57b6e ieee80211_wx_set_mode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x37bb41b0 ieee80211_wx_get_name_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3800368e ieee80211_wx_set_freq_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3b071789 ieee80211_wx_set_rate_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4fbd6ad5 ieee80211_rx_mgt_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5135f26e ieee80211_softmac_start_protocol_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x52f64ec9 ieee80211_softmac_scan_syncro_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x598ac786 SendDisassociation_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x59ce81e5 ieee80211_wx_get_scan_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x61a71cbb dot11d_scan_complete -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6758d13a ieee80211_stop_scan_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6edc14d2 ieee80211_wx_set_scan_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x714cbc06 is_legal_channel -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x740a4090 ieee80211_wx_set_rts_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x750ed3ab ieee80211_reset_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7c4e8234 ieee80211_wx_set_wap_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x818e07b9 ieee80211_disassociate_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8d9af45d ieee80211_wx_set_mlme_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x995f10db ieee80211_wake_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9a09315a ieee80211_wx_get_essid_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9c92cacd ieee80211_wx_set_power_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa64fe4c8 ieee80211_wx_get_encode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb0fdcf28 notify_wx_assoc_event_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb2f129a0 ieee80211_stop_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb62d1425 ieee80211_wx_set_encode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb6e045df ieee80211_wx_get_wap_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb8fa0fb2 HTUpdateSelfAndPeerSetting -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbea4877b ieee80211_wx_get_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1dc8839e ieee80211_wx_get_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1ef6eb84 ieee80211_wx_get_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x27f34026 notify_wx_assoc_event_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x28ae48df ieee80211_wx_set_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2cd0a52a ieee80211_wx_get_name_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2cf88f97 ieee80211_wpa_supplicant_ioctl_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3523441f ieee80211_rx_mgt_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x36b55817 ieee80211_softmac_xmit_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3f0d6a9c ieee80211_wx_set_mlme_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x49e3a14f ieee80211_stop_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4c24c7f9 dot11d_scan_complete +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4ec87a46 ieee80211_wx_set_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x518ca9db ieee80211_wx_get_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x540b7636 ieee80211_ps_tx_ack_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5744f066 ieee80211_softmac_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5ae92150 ieee80211_wx_set_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x65e08c51 ieee80211_start_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x68466831 ieee80211_wx_set_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x73a1cf5d ieee80211_wx_get_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7d78d1b8 ieee80211_wx_set_gen_ie_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7e19338d HTUpdateSelfAndPeerSetting +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x880b7a86 ieee80211_wake_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x887b59e1 ieee80211_softmac_start_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x92f94391 ieee80211_start_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x941bd1bc SendDisassociation_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x94fafbff ieee80211_rx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x99522fcc rtl8192u_dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9d82d30a dot11d_update_country_ie +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa0ad1c35 ieee80211_wx_set_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa2747e7f ieee80211_wx_get_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa740abe8 dot11d_reset +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa8362fa7 ieee80211_wx_set_rawtx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa8ca6d13 ieee80211_wx_get_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa95441d8 ieee80211_wx_get_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb993d913 ieee80211_wx_set_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbb4abb59 ieee80211_wx_get_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbe1fb10c ieee80211_stop_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbf3765d8 ieee80211_get_beacon_rsl EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc370a43e ieee80211_wlan_frequencies_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcb3a7522 ieee80211_start_send_beacons_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd20a803c ieee80211_wx_set_encode_ext_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd5d24ef9 to_legal_channel -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd99b7f2c ieee80211_get_beacon_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xdbb6cb34 ieee80211_wx_set_rawtx_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xdcdfc8dc ieee80211_softmac_xmit_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe23bd438 ieee80211_wpa_supplicant_ioctl_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe5ffd017 ieee80211_softmac_stop_protocol_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe8fdae67 ieee80211_wx_set_gen_ie_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xebbe6940 ieee80211_ps_tx_ack_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc5ab78d0 ieee80211_wx_set_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcc334dca ieee80211_stop_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcf9b869a to_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd8422ea2 ieee80211_disassociate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xdcac9f9d ieee80211_softmac_stop_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xdd7d1439 is_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xde4cdfbc ieee80211_wx_get_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe1ea9134 ieee80211_reset_queue_rsl EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xecc5fb1b ieee80211_is_54g_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf9c3cb80 dot11d_reset -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfca6c314 ieee80211_start_scan_syncro_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfe6f8a83 ieee80211_wx_set_auth_rsl -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x05a30693 iscsit_free_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x10c35f77 iscsit_handle_task_mgt_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x113c6488 iscsit_build_nopin_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x143afea3 iscsit_build_r2ts_for_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x17bc7a21 iscsit_tmr_post_handler -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1bae2204 iscsit_build_reject -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1baff54e iscsit_stop_dataout_timer -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2dbedb65 iscsit_process_scsi_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x40c15157 iscsit_unregister_transport -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x43ca3f1c iscsit_sequence_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4740b946 iscsit_check_dataout_payload -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x58f391ef iscsi_target_check_login_request -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5f0579b9 iscsit_find_cmd_from_itt_or_dump -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6187cc8d iscsit_setup_text_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x61c0ea81 iscsit_reject_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x661b0227 iscsit_build_task_mgt_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x672587e4 iscsit_register_transport -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6bc98fff iscsit_immediate_queue -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x70b56027 iscsit_add_cmd_to_immediate_queue -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x74829919 iscsit_build_text_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x79ff2b64 iscsit_response_queue -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7ae47e96 iscsit_increment_maxcmdsn -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7e64126d iscsi_change_param_sprintf -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7ef756d4 iscsit_logout_post_handler -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x806a29dc iscsit_aborted_task -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8a35a8c0 iscsit_build_datain_pdu -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9d1b38f2 iscsit_allocate_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9df179d3 iscsit_build_logout_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xac93b7de iscsit_find_cmd_from_itt -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xafcc862c iscsit_queue_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb61530cc iscsit_handle_snack -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbdd341c7 iscsit_setup_scsi_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc344055a iscsit_process_nop_out -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc3dba066 iscsit_get_datain_values -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc53fd23e iscsit_release_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd29d518f iscsit_process_text_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd34fb057 iscsit_check_dataout_hdr -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd632f782 iscsit_add_reject -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd74ade51 iscsit_cause_connection_reinstatement -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd98b91a4 __iscsit_check_dataout_hdr -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xdb673203 iscsit_build_rsp_pdu -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xdd80e4d6 iscsit_handle_logout_cmd +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf33f1c8c ieee80211_wx_set_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfbca94cb ieee80211_wx_set_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfe6cb973 ieee80211_txb_free_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfefd7f95 ieee80211_wx_set_auth_rsl +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x040b437c iscsit_cause_connection_reinstatement +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x15619546 iscsit_increment_maxcmdsn +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1f79e33c iscsit_free_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2365bc7a iscsit_unregister_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2886e1d2 iscsit_build_task_mgt_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x298f30e9 iscsi_target_check_login_request +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2c253ab0 iscsit_process_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2f4fdaa2 iscsit_sequence_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x378dad3f iscsit_build_datain_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3bdfb7bc iscsit_find_cmd_from_itt_or_dump +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3e6fef8a iscsit_handle_task_mgt_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3f0d3fba __iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3fba098f iscsit_add_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x417b9e03 iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4536bd00 iscsit_release_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4c570156 iscsit_logout_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4c94e3af iscsit_process_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5421a2cd iscsit_setup_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x54c4888b iscsit_build_rsp_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5cc64d54 iscsit_reject_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5ffb1902 iscsit_set_unsolicited_dataout +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x722a4773 iscsit_queue_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x802596a8 iscsit_setup_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8606a099 iscsit_build_nopin_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8ec7a2f6 iscsit_build_r2ts_for_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8f3028fa iscsit_aborted_task +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x95416c8e iscsit_tmr_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9591613c iscsit_handle_logout_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xae70f2d8 iscsit_build_text_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xba3ddd50 iscsit_get_datain_values +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbb249945 iscsit_find_cmd_from_itt +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbce972b6 iscsit_register_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc0a884a4 iscsit_add_cmd_to_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc58176bc iscsit_stop_dataout_timer +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc79e665a iscsit_check_dataout_payload +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xcdd74298 iscsit_handle_snack +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd3746582 iscsi_change_param_sprintf +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd6b793bf iscsit_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd9c43c6b iscsit_response_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe0c0cff0 iscsit_build_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe11acde3 iscsit_setup_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xea213193 iscsit_allocate_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xeccf8aac iscsit_process_nop_out EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf34332f0 iscsi_find_param_from_key -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf83a20ff iscsit_setup_nop_out -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xfaa34b24 iscsit_set_unsolicited_dataout -EXPORT_SYMBOL drivers/target/target_core_mod 0x01fc5da7 sbc_get_device_type -EXPORT_SYMBOL drivers/target/target_core_mod 0x038f2728 __transport_register_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x04c4de5e target_nacl_find_deve +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xfb1febc2 iscsit_build_logout_rsp +EXPORT_SYMBOL drivers/target/target_core_mod 0x042e8f1a transport_deregister_session_configfs EXPORT_SYMBOL drivers/target/target_core_mod 0x0871ffd6 transport_set_vpd_ident -EXPORT_SYMBOL drivers/target/target_core_mod 0x0d74acfa sbc_dif_verify -EXPORT_SYMBOL drivers/target/target_core_mod 0x0fcc265a transport_generic_new_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x1185b611 transport_send_check_condition_and_sense -EXPORT_SYMBOL drivers/target/target_core_mod 0x138f5d32 passthrough_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x089a0b70 target_set_cmd_data_length +EXPORT_SYMBOL drivers/target/target_core_mod 0x08e7746b target_put_nacl +EXPORT_SYMBOL drivers/target/target_core_mod 0x0bd4cec5 target_submit_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x10e6897c passthrough_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x115b598d __transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x13b1ce31 core_tpg_register EXPORT_SYMBOL drivers/target/target_core_mod 0x142072c0 transport_set_vpd_assoc -EXPORT_SYMBOL drivers/target/target_core_mod 0x181b1b94 transport_alloc_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x1d5cbc04 target_set_cmd_data_length -EXPORT_SYMBOL drivers/target/target_core_mod 0x1e997a21 transport_free_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x1ed27af3 target_unregister_template -EXPORT_SYMBOL drivers/target/target_core_mod 0x20a46034 transport_backend_register -EXPORT_SYMBOL drivers/target/target_core_mod 0x284add0f transport_deregister_session_configfs -EXPORT_SYMBOL drivers/target/target_core_mod 0x2fd7db22 core_tpg_deregister -EXPORT_SYMBOL drivers/target/target_core_mod 0x34236235 target_setup_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x349654ed target_depend_item -EXPORT_SYMBOL drivers/target/target_core_mod 0x36ebd71f sbc_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0x37e7f76f target_put_nacl +EXPORT_SYMBOL drivers/target/target_core_mod 0x1bb13556 target_cmd_init_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x231d3596 target_show_dynamic_sessions +EXPORT_SYMBOL drivers/target/target_core_mod 0x2504c145 spc_emulate_evpd_83 +EXPORT_SYMBOL drivers/target/target_core_mod 0x255538b6 transport_lookup_tmr_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x261e278e target_backend_unregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x2c393635 transport_deregister_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x2ca108f2 transport_handle_cdb_direct +EXPORT_SYMBOL drivers/target/target_core_mod 0x2e9ca2db __target_init_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x30cd8a5e target_submit_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x3116920b transport_alloc_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x347be3ed passthrough_attrib_attrs EXPORT_SYMBOL drivers/target/target_core_mod 0x3a20a9d7 transport_set_vpd_ident_type -EXPORT_SYMBOL drivers/target/target_core_mod 0x3b3db94d transport_kunmap_data_sg -EXPORT_SYMBOL drivers/target/target_core_mod 0x42335c3c target_send_busy -EXPORT_SYMBOL drivers/target/target_core_mod 0x44c08818 spc_emulate_evpd_83 -EXPORT_SYMBOL drivers/target/target_core_mod 0x4550634f target_submit_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x456c8060 target_undepend_item -EXPORT_SYMBOL drivers/target/target_core_mod 0x4a9f591f transport_init_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x4b8657db target_backend_unregister -EXPORT_SYMBOL drivers/target/target_core_mod 0x4c1c3733 target_cmd_init_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x4cb53906 core_tpg_get_initiator_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0x4e899316 core_tpg_set_initiator_node_queue_depth -EXPORT_SYMBOL drivers/target/target_core_mod 0x61264398 transport_alloc_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0x3accbc7e transport_generic_request_failure +EXPORT_SYMBOL drivers/target/target_core_mod 0x3b7d5ec7 transport_kmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x4374e5ec target_to_linux_sector +EXPORT_SYMBOL drivers/target/target_core_mod 0x4a051fd6 transport_alloc_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0x4d79a546 target_unregister_template +EXPORT_SYMBOL drivers/target/target_core_mod 0x4f5923d1 target_lun_is_rdonly +EXPORT_SYMBOL drivers/target/target_core_mod 0x548e9043 target_setup_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x54907388 target_complete_cmd_with_length +EXPORT_SYMBOL drivers/target/target_core_mod 0x54e3c7f6 target_depend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0x57684a90 spc_emulate_report_luns +EXPORT_SYMBOL drivers/target/target_core_mod 0x59070c1a transport_backend_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x5c6d677b target_undepend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0x5f872756 core_alua_check_nonop_delay +EXPORT_SYMBOL drivers/target/target_core_mod 0x614dcd0b core_tpg_get_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x628cc6b6 transport_generic_handle_tmr EXPORT_SYMBOL drivers/target/target_core_mod 0x638bffb7 target_free_sgl -EXPORT_SYMBOL drivers/target/target_core_mod 0x63bf9e81 passthrough_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x66c2f11f target_complete_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x6805a413 target_to_linux_sector -EXPORT_SYMBOL drivers/target/target_core_mod 0x6b39113a target_put_sess_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x6ce29d49 target_get_sess_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x6ebffbfd core_alua_check_nonop_delay -EXPORT_SYMBOL drivers/target/target_core_mod 0x742a30ac target_stop_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x79863a30 target_remove_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x6c16a798 target_remove_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x6d4052bb transport_free_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x6e04c0f3 target_send_busy +EXPORT_SYMBOL drivers/target/target_core_mod 0x77ab9b23 transport_generic_new_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x78f1e9e0 core_tpg_set_initiator_node_tag EXPORT_SYMBOL drivers/target/target_core_mod 0x7a1d0d3c target_alloc_sgl -EXPORT_SYMBOL drivers/target/target_core_mod 0x7c0d438d target_complete_cmd_with_length -EXPORT_SYMBOL drivers/target/target_core_mod 0x860a300c transport_copy_sense_to_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x890e7df5 core_tpg_set_initiator_node_tag -EXPORT_SYMBOL drivers/target/target_core_mod 0x8abdee81 transport_lookup_tmr_lun -EXPORT_SYMBOL drivers/target/target_core_mod 0x9652ff51 transport_generic_free_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x96df98a6 core_tpg_check_initiator_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0x9ba11203 __target_init_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xa0abf949 target_show_dynamic_sessions -EXPORT_SYMBOL drivers/target/target_core_mod 0xa18a8141 passthrough_pr_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0xa37b96ad core_allocate_nexus_loss_ua -EXPORT_SYMBOL drivers/target/target_core_mod 0xa54ee6a9 transport_deregister_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x80b90682 transport_kunmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x823431f6 target_wait_for_sess_cmds +EXPORT_SYMBOL drivers/target/target_core_mod 0x882dc529 transport_generic_free_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x8b9de8cd target_complete_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x93f2805f target_nacl_find_deve +EXPORT_SYMBOL drivers/target/target_core_mod 0x95a5326b target_configure_unmap_from_queue +EXPORT_SYMBOL drivers/target/target_core_mod 0x99a1fd16 core_tpg_check_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x9e1445b0 target_execute_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xa2da7095 target_complete_cmd_with_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0xa85a18e4 sbc_attrib_attrs EXPORT_SYMBOL drivers/target/target_core_mod 0xa897a9ce core_tmr_alloc_req -EXPORT_SYMBOL drivers/target/target_core_mod 0xa9509af3 target_complete_cmd_with_sense -EXPORT_SYMBOL drivers/target/target_core_mod 0xae0797ca target_configure_unmap_from_queue -EXPORT_SYMBOL drivers/target/target_core_mod 0xb3e60bbb core_tpg_register -EXPORT_SYMBOL drivers/target/target_core_mod 0xb73068fe target_tpg_has_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0xc35c4bc4 target_submit_tmr -EXPORT_SYMBOL drivers/target/target_core_mod 0xc41a52d0 transport_generic_handle_tmr -EXPORT_SYMBOL drivers/target/target_core_mod 0xcc728daa spc_emulate_inquiry_std -EXPORT_SYMBOL drivers/target/target_core_mod 0xcdd08ee7 target_register_template -EXPORT_SYMBOL drivers/target/target_core_mod 0xcead11fe target_show_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xcfacb4ad target_lun_is_rdonly -EXPORT_SYMBOL drivers/target/target_core_mod 0xd637b54d spc_emulate_report_luns -EXPORT_SYMBOL drivers/target/target_core_mod 0xdc2e1479 transport_wait_for_tasks -EXPORT_SYMBOL drivers/target/target_core_mod 0xdc5d52f0 transport_generic_request_failure -EXPORT_SYMBOL drivers/target/target_core_mod 0xe3916599 sbc_get_write_same_sectors -EXPORT_SYMBOL drivers/target/target_core_mod 0xe61b4612 target_execute_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xe6a81ea5 target_wait_for_sess_cmds -EXPORT_SYMBOL drivers/target/target_core_mod 0xea674050 transport_register_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xeba3361f transport_handle_cdb_direct -EXPORT_SYMBOL drivers/target/target_core_mod 0xebbd81af sbc_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0xf1f15e16 target_cmd_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0xf2fdbb38 sbc_dif_copy_prot -EXPORT_SYMBOL drivers/target/target_core_mod 0xf3325262 spc_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0xf3662bd5 transport_lookup_cmd_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0xab112b87 target_get_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xb0fca9f0 sbc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xb47aaf63 transport_wait_for_tasks +EXPORT_SYMBOL drivers/target/target_core_mod 0xbd70b652 sbc_dif_verify +EXPORT_SYMBOL drivers/target/target_core_mod 0xc027a041 target_tpg_has_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0xc146a116 sbc_get_write_same_sectors +EXPORT_SYMBOL drivers/target/target_core_mod 0xc92739f6 transport_send_check_condition_and_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0xd47a7fb7 transport_init_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xd4916786 core_tpg_set_initiator_node_queue_depth +EXPORT_SYMBOL drivers/target/target_core_mod 0xd81ad5c5 spc_emulate_inquiry_std +EXPORT_SYMBOL drivers/target/target_core_mod 0xd84a04e3 core_tpg_deregister +EXPORT_SYMBOL drivers/target/target_core_mod 0xe15996b5 core_allocate_nexus_loss_ua +EXPORT_SYMBOL drivers/target/target_core_mod 0xe1dfc9d4 transport_lookup_cmd_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0xe608526d transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xe6275c2b sbc_get_device_type +EXPORT_SYMBOL drivers/target/target_core_mod 0xe7c94658 passthrough_pr_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0xeeef685b target_register_template +EXPORT_SYMBOL drivers/target/target_core_mod 0xf0281b13 target_stop_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xf1b84c06 spc_parse_cdb EXPORT_SYMBOL drivers/target/target_core_mod 0xf3c2dfe0 transport_set_vpd_proto_id -EXPORT_SYMBOL drivers/target/target_core_mod 0xfa671072 transport_kmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0xf4860779 transport_copy_sense_to_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xf6cbccc4 sbc_dif_copy_prot +EXPORT_SYMBOL drivers/target/target_core_mod 0xfbcc92d1 target_put_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xfc558621 target_show_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xfd71e698 target_cmd_parse_cdb EXPORT_SYMBOL drivers/thermal/intel/int340x_thermal/acpi_thermal_rel 0x111eefed acpi_parse_art 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 0xf0f9fe0d acpi_parse_trt -EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0xce851b3e usb_cdc_wdm_register -EXPORT_SYMBOL drivers/usb/gadget/libcomposite 0x265e2dd9 usb_os_desc_prepare_interf_dir -EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0x7111b4db sl811h_driver -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x13874bce usb_wwan_write -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x1f5cdbed usb_wwan_open -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x68fc5796 usb_wwan_write_room -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x6afa622c usb_wwan_tiocmget -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x7345fbce usb_wwan_tiocmset -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x8d235c5c usb_wwan_port_remove -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x9f726ba9 usb_wwan_suspend -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xab9a4f6c usb_wwan_chars_in_buffer -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xad910d7d usb_wwan_dtr_rts -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xd080a5b1 usb_wwan_close -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xdbb6fdb4 usb_wwan_resume -EXPORT_SYMBOL drivers/usb/serial/usbserial 0x5b2124a3 usb_serial_suspend -EXPORT_SYMBOL drivers/usb/serial/usbserial 0x6e2d6632 usb_serial_resume -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x26282588 mdev_parent_dev -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x2eec27b5 mtype_get_parent_dev -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x4f9883b9 mdev_get_type_group_id -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x7cd6563c mdev_register_driver -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x90c17141 mdev_unregister_driver -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xa25a0fb1 mtype_get_type_group_id -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xacf33c19 mdev_register_device -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xb873ec88 mdev_unregister_device -EXPORT_SYMBOL drivers/vhost/vhost 0xcfe06e35 vhost_chr_write_iter -EXPORT_SYMBOL drivers/vhost/vhost 0xf70c7089 vhost_chr_poll +EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0xafe056ce usb_cdc_wdm_register +EXPORT_SYMBOL drivers/usb/gadget/libcomposite 0xc08faa60 usb_os_desc_prepare_interf_dir +EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0x5ef32a10 sl811h_driver +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x455a8bdc usb_wwan_open +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x82d054fd usb_wwan_close +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xa44502ed usb_wwan_dtr_rts +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xc23cc1c7 usb_wwan_write +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xd30d6f7f usb_wwan_tiocmget +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xd417dd8b usb_wwan_tiocmset +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xda8c9742 usb_wwan_write_room +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xdc9a25f6 usb_wwan_chars_in_buffer +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xe1b56ca9 usb_wwan_suspend +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xefa5ef89 usb_wwan_port_remove +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xfc6a97e3 usb_wwan_resume +EXPORT_SYMBOL drivers/usb/serial/usbserial 0x87693343 usb_serial_resume +EXPORT_SYMBOL drivers/usb/serial/usbserial 0xbd8bf694 usb_serial_suspend +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x58a9163e mdev_parent_dev +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x5bba70de mtype_get_type_group_id +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x8024e0a7 mdev_register_device +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x8064b3da mdev_unregister_device +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x81eb73ef mtype_get_parent_dev +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x8b2ea0ef mdev_unregister_driver +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xf6ada828 mdev_get_type_group_id +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xfbc52e91 mdev_register_driver +EXPORT_SYMBOL drivers/vhost/vhost 0x69bbef3a vhost_chr_write_iter +EXPORT_SYMBOL drivers/vhost/vhost 0xfad5e568 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 @@ -4584,60 +4600,60 @@ 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 0x22109158 devm_lcd_device_register -EXPORT_SYMBOL drivers/video/backlight/lcd 0x37be275f lcd_device_register -EXPORT_SYMBOL drivers/video/backlight/lcd 0x4c3b1824 lcd_device_unregister -EXPORT_SYMBOL drivers/video/backlight/lcd 0x8f7d94fc devm_lcd_device_unregister -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x0d541d51 svga_tilefill +EXPORT_SYMBOL drivers/video/backlight/lcd 0x200606cb devm_lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0x2844059d lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0x32f54a42 lcd_device_unregister +EXPORT_SYMBOL drivers/video/backlight/lcd 0x6bdcaceb devm_lcd_device_unregister EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x17f3f471 svga_set_default_seq_regs EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x1be6dc30 svga_set_textmode_vga_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x374ebd79 svga_get_tilemax +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x309caf2f svga_tileblit EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x4ab38ef2 svga_set_default_crt_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x7a41f57f svga_tileblit +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x6f91089e svga_get_caps +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x6fd34189 svga_get_tilemax EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x83a41489 svga_set_timings EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x84c337c2 svga_wcrt_multi EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x84c97d2a svga_match_format -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x91cd56e7 svga_settile -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xa59eca7b svga_get_caps +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xa078468c svga_tilecopy +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xa07a3e19 svga_tilecursor EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xb0ab2b2e svga_check_timings -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xcce5629c svga_tilecursor +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xbdf2ae5e svga_tilefill 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 0xdbd0468e svga_tilecopy 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 0x69c6d68e sys_copyarea -EXPORT_SYMBOL drivers/video/fbdev/core/sysfillrect 0x7bccd21c sys_fillrect -EXPORT_SYMBOL drivers/video/fbdev/core/sysimgblt 0x3712faee sys_imageblit +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xf6540e43 svga_settile +EXPORT_SYMBOL drivers/video/fbdev/core/syscopyarea 0x99dcc474 sys_copyarea +EXPORT_SYMBOL drivers/video/fbdev/core/sysfillrect 0xcb724156 sys_fillrect +EXPORT_SYMBOL drivers/video/fbdev/core/sysimgblt 0x7ca1d2a4 sys_imageblit EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x0cc3ede5 cyber2000fb_detach -EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x0fdd164e 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 0xfda0ae22 cyber2000fb_attach EXPORT_SYMBOL drivers/video/fbdev/macmodes 0x233917d1 mac_vmode_to_var -EXPORT_SYMBOL drivers/video/fbdev/macmodes 0xa5e55883 mac_find_mode +EXPORT_SYMBOL drivers/video/fbdev/macmodes 0x9e865406 mac_find_mode EXPORT_SYMBOL drivers/video/fbdev/macmodes 0xe2304303 mac_map_monitor_sense -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x887aeb37 matroxfb_g450_setclk -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x8c20751a g450_mnp2f -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xf4c5db86 matroxfb_g450_setpll_cond -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x47cf5bc0 matrox_G100 -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x6809f152 matrox_mystique -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x6e42a95a DAC1064_global_init -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xdabc885f DAC1064_global_restore -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_Ti3026 0x11ebbb14 matrox_millennium -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_accel 0xff96d71e matrox_cfbX_init -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x00b0f997 matroxfb_register_driver -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x409dda92 matroxfb_enable_irq -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x49eb9590 matroxfb_unregister_driver -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x53244caf matroxfb_wait_for_sync -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x0456528d matroxfb_g450_shutdown -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0xfd9e177a matroxfb_g450_connect -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x13cd3f27 matroxfb_DAC_out -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x257b87b4 matroxfb_vgaHWrestore +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x2604dca5 matroxfb_g450_setpll_cond +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x2a2b934b g450_mnp2f +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x370075dc matroxfb_g450_setclk +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x507a22fd DAC1064_global_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x55711127 matrox_G100 +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x5d456cd7 DAC1064_global_restore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xd75372bb matrox_mystique +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_Ti3026 0xeae69e71 matrox_millennium +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_accel 0xb70622bc matrox_cfbX_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x7ff23f20 matroxfb_wait_for_sync +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x9465b564 matroxfb_register_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xa03c4f7b matroxfb_unregister_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xba15e5d7 matroxfb_enable_irq +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x526dd3da matroxfb_g450_connect +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x8e5e93c6 matroxfb_g450_shutdown +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x0181e007 matroxfb_vgaHWrestore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x1e774d10 matroxfb_read_pins EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x25cf8049 matroxfb_PLL_calcclock -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x67f6557a matroxfb_DAC_in -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x838b9b2e matroxfb_vgaHWinit -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x9dcc7086 matroxfb_read_pins +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x807e7969 matroxfb_vgaHWinit +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xb11a7d78 matroxfb_DAC_in EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xcdc90c64 matroxfb_var2my +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xf9872f51 matroxfb_DAC_out EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0x3037658e sis_malloc EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0xfe963115 sis_free EXPORT_SYMBOL drivers/video/vgastate 0x686de290 restore_vga @@ -4649,86 +4665,86 @@ EXPORT_SYMBOL drivers/virt/acrn/acrn 0xaff5c6be sbuf_free EXPORT_SYMBOL drivers/virt/acrn/acrn 0xb4fa127d sbuf_allocate EXPORT_SYMBOL drivers/virt/acrn/acrn 0xba8e68d3 sbuf_share_setup -EXPORT_SYMBOL drivers/virt/vboxguest/vboxguest 0x1045a0e0 vbg_put_gdev +EXPORT_SYMBOL drivers/virt/vboxguest/vboxguest 0x163ea618 vbg_put_gdev EXPORT_SYMBOL drivers/virt/vboxguest/vboxguest 0x260590c0 vbg_err +EXPORT_SYMBOL drivers/virt/vboxguest/vboxguest 0x467d3a07 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 0x73e28b95 vbg_hgcm_call -EXPORT_SYMBOL drivers/virt/vboxguest/vboxguest 0x7f1a4ef5 vbg_hgcm_connect -EXPORT_SYMBOL drivers/virt/vboxguest/vboxguest 0x836e4bbd vbg_hgcm_disconnect -EXPORT_SYMBOL drivers/virt/vboxguest/vboxguest 0x96cd0ae0 vbg_get_gdev +EXPORT_SYMBOL drivers/virt/vboxguest/vboxguest 0x83067c5b vbg_hgcm_call EXPORT_SYMBOL drivers/virt/vboxguest/vboxguest 0x9c072aa8 vbg_status_code_to_errno -EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x28d687fa virtio_dma_buf_get_uuid -EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x31cb4818 is_virtio_dma_buf -EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x56803362 virtio_dma_buf_export -EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0xdfb5fd9e virtio_dma_buf_attach -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x029c6691 w1_ds2780_eeprom_cmd -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x15ffea62 w1_ds2780_io -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x0d842967 w1_ds2781_eeprom_cmd -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x5090801d w1_ds2781_io -EXPORT_SYMBOL drivers/w1/wire 0x4892c964 w1_register_family -EXPORT_SYMBOL drivers/w1/wire 0x9e319d6a w1_remove_master_device -EXPORT_SYMBOL drivers/w1/wire 0xb87d6a24 w1_unregister_family -EXPORT_SYMBOL drivers/w1/wire 0xbbd194fb w1_add_master_device +EXPORT_SYMBOL drivers/virt/vboxguest/vboxguest 0xb6bde18c vbg_hgcm_connect +EXPORT_SYMBOL drivers/virt/vboxguest/vboxguest 0xff5c79fd vbg_get_gdev +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x2382e5da is_virtio_dma_buf +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x7c401161 virtio_dma_buf_attach +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x8f624f4e virtio_dma_buf_export +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0xc2b8801b virtio_dma_buf_get_uuid +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x7b14707f w1_ds2780_eeprom_cmd +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0xb00756ab w1_ds2780_io +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x8da77697 w1_ds2781_io +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0xf855e505 w1_ds2781_eeprom_cmd +EXPORT_SYMBOL drivers/w1/wire 0x0876f272 w1_remove_master_device +EXPORT_SYMBOL drivers/w1/wire 0x376e0ec0 w1_unregister_family +EXPORT_SYMBOL drivers/w1/wire 0x39858c9a w1_register_family +EXPORT_SYMBOL drivers/w1/wire 0x6c0e518a w1_add_master_device 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 0x01d2fe8b __fscache_check_consistency -EXPORT_SYMBOL fs/fscache/fscache 0x05893fb5 fscache_object_retrying_stale -EXPORT_SYMBOL fs/fscache/fscache 0x05caf6c5 __fscache_enable_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x0b11be23 __fscache_relinquish_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x0b787244 __fscache_uncache_page -EXPORT_SYMBOL fs/fscache/fscache 0x2b859e28 __fscache_register_netfs -EXPORT_SYMBOL fs/fscache/fscache 0x2efb83a5 fscache_init_cache -EXPORT_SYMBOL fs/fscache/fscache 0x2fea1b4d __fscache_disable_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x35e9f8a1 fscache_enqueue_operation -EXPORT_SYMBOL fs/fscache/fscache 0x4083294a fscache_object_mark_killed -EXPORT_SYMBOL fs/fscache/fscache 0x5648ba83 fscache_fsdef_index -EXPORT_SYMBOL fs/fscache/fscache 0x697aab05 fscache_object_lookup_negative +EXPORT_SYMBOL fs/fscache/fscache 0x09e70433 __fscache_register_netfs +EXPORT_SYMBOL fs/fscache/fscache 0x0c977e0b fscache_fsdef_index +EXPORT_SYMBOL fs/fscache/fscache 0x16272139 fscache_obtained_object +EXPORT_SYMBOL fs/fscache/fscache 0x19df2df1 __fscache_write_page +EXPORT_SYMBOL fs/fscache/fscache 0x22b58c22 fscache_io_error +EXPORT_SYMBOL fs/fscache/fscache 0x22bdb02d __fscache_wait_on_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0x27fa37db fscache_object_mark_killed +EXPORT_SYMBOL fs/fscache/fscache 0x308b3ee4 fscache_object_init +EXPORT_SYMBOL fs/fscache/fscache 0x3262ff01 __fscache_uncache_page +EXPORT_SYMBOL fs/fscache/fscache 0x34c09a35 __fscache_uncache_all_inode_pages +EXPORT_SYMBOL fs/fscache/fscache 0x3e84916e __fscache_read_or_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0x3f699971 fscache_op_complete +EXPORT_SYMBOL fs/fscache/fscache 0x45680b97 fscache_init_cache +EXPORT_SYMBOL fs/fscache/fscache 0x4f641648 __fscache_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0x524bcdc3 __fscache_maybe_release_page +EXPORT_SYMBOL fs/fscache/fscache 0x561951f6 fscache_object_retrying_stale EXPORT_SYMBOL fs/fscache/fscache 0x6acefa42 fscache_cache_cleared_wq EXPORT_SYMBOL fs/fscache/fscache 0x74530ecd fscache_op_debug_id -EXPORT_SYMBOL fs/fscache/fscache 0x78f71231 fscache_mark_page_cached -EXPORT_SYMBOL fs/fscache/fscache 0x7a9b5fa8 fscache_operation_init -EXPORT_SYMBOL fs/fscache/fscache 0x80e31630 fscache_obtained_object -EXPORT_SYMBOL fs/fscache/fscache 0x8dc36417 fscache_put_operation -EXPORT_SYMBOL fs/fscache/fscache 0x8efce92e fscache_check_aux -EXPORT_SYMBOL fs/fscache/fscache 0x95cf808f __fscache_maybe_release_page -EXPORT_SYMBOL fs/fscache/fscache 0x973926ab fscache_mark_pages_cached -EXPORT_SYMBOL fs/fscache/fscache 0x9fccd851 __fscache_wait_on_page_write -EXPORT_SYMBOL fs/fscache/fscache 0xa8b35c51 fscache_op_complete -EXPORT_SYMBOL fs/fscache/fscache 0xb2fa0a44 __fscache_alloc_page -EXPORT_SYMBOL fs/fscache/fscache 0xb6b89a7c __fscache_write_page -EXPORT_SYMBOL fs/fscache/fscache 0xbb8ad5a5 __fscache_acquire_cookie -EXPORT_SYMBOL fs/fscache/fscache 0xbdb401dc __fscache_attr_changed -EXPORT_SYMBOL fs/fscache/fscache 0xc48ec268 __fscache_readpages_cancel -EXPORT_SYMBOL fs/fscache/fscache 0xc678d346 __fscache_unregister_netfs -EXPORT_SYMBOL fs/fscache/fscache 0xca09a525 fscache_withdraw_cache -EXPORT_SYMBOL fs/fscache/fscache 0xcc6556a4 __fscache_invalidate -EXPORT_SYMBOL fs/fscache/fscache 0xcca1d1e4 __fscache_update_cookie -EXPORT_SYMBOL fs/fscache/fscache 0xcccfed89 __fscache_read_or_alloc_page -EXPORT_SYMBOL fs/fscache/fscache 0xd10533c2 fscache_object_destroy -EXPORT_SYMBOL fs/fscache/fscache 0xdfaa944f fscache_object_init -EXPORT_SYMBOL fs/fscache/fscache 0xdfdcb1f4 __fscache_check_page_write -EXPORT_SYMBOL fs/fscache/fscache 0xe06e94c4 __fscache_begin_read_operation -EXPORT_SYMBOL fs/fscache/fscache 0xe5725d13 fscache_io_error -EXPORT_SYMBOL fs/fscache/fscache 0xe639b4b9 __fscache_uncache_all_inode_pages -EXPORT_SYMBOL fs/fscache/fscache 0xeba89590 fscache_add_cache -EXPORT_SYMBOL fs/fscache/fscache 0xfafd67f0 __fscache_wait_on_invalidate -EXPORT_SYMBOL fs/fscache/fscache 0xfcd5414b __fscache_read_or_alloc_pages -EXPORT_SYMBOL fs/netfs/netfs 0x098308d5 netfs_subreq_terminated -EXPORT_SYMBOL fs/netfs/netfs 0x0d13523e netfs_readpage -EXPORT_SYMBOL fs/netfs/netfs 0x2c7c8555 netfs_write_begin -EXPORT_SYMBOL fs/netfs/netfs 0x80d203ee netfs_stats_show -EXPORT_SYMBOL fs/netfs/netfs 0x91a05c40 netfs_readahead +EXPORT_SYMBOL fs/fscache/fscache 0x7bb0efc3 fscache_operation_init +EXPORT_SYMBOL fs/fscache/fscache 0x8dc9f42d fscache_mark_pages_cached +EXPORT_SYMBOL fs/fscache/fscache 0x917b2d92 __fscache_check_page_write +EXPORT_SYMBOL fs/fscache/fscache 0x95ecdb3c __fscache_enable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xa0ab0f54 fscache_object_lookup_negative +EXPORT_SYMBOL fs/fscache/fscache 0xa30131c0 __fscache_disable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xab225c83 __fscache_read_or_alloc_pages +EXPORT_SYMBOL fs/fscache/fscache 0xaeffded1 __fscache_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0xb8516d6a __fscache_unregister_netfs +EXPORT_SYMBOL fs/fscache/fscache 0xb935f02c fscache_object_destroy +EXPORT_SYMBOL fs/fscache/fscache 0xb97fb789 fscache_enqueue_operation +EXPORT_SYMBOL fs/fscache/fscache 0xbbe7b847 fscache_put_operation +EXPORT_SYMBOL fs/fscache/fscache 0xbc98bb94 __fscache_wait_on_page_write +EXPORT_SYMBOL fs/fscache/fscache 0xc54261bb __fscache_update_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xc8d55698 __fscache_begin_read_operation +EXPORT_SYMBOL fs/fscache/fscache 0xdb7c3c08 fscache_add_cache +EXPORT_SYMBOL fs/fscache/fscache 0xdbb11882 __fscache_attr_changed +EXPORT_SYMBOL fs/fscache/fscache 0xe4bd1e29 fscache_withdraw_cache +EXPORT_SYMBOL fs/fscache/fscache 0xe7bbb8a2 __fscache_relinquish_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xed779569 __fscache_check_consistency +EXPORT_SYMBOL fs/fscache/fscache 0xf0bf2ae4 fscache_mark_page_cached +EXPORT_SYMBOL fs/fscache/fscache 0xf4c955c6 __fscache_acquire_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xf4cb2461 fscache_check_aux +EXPORT_SYMBOL fs/fscache/fscache 0xff802d32 __fscache_readpages_cancel +EXPORT_SYMBOL fs/netfs/netfs 0x60290ff2 netfs_stats_show +EXPORT_SYMBOL fs/netfs/netfs 0x6cf4d7a1 netfs_readahead +EXPORT_SYMBOL fs/netfs/netfs 0x7a37b53a netfs_subreq_terminated +EXPORT_SYMBOL fs/netfs/netfs 0xa6b5b55d netfs_readpage +EXPORT_SYMBOL fs/netfs/netfs 0xec81fa86 netfs_write_begin EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active -EXPORT_SYMBOL fs/quota/quota_tree 0x02e1d213 qtree_entry_unused -EXPORT_SYMBOL fs/quota/quota_tree 0x1162f739 qtree_delete_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0x6079beb2 qtree_read_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0x77e83dab qtree_get_next_id -EXPORT_SYMBOL fs/quota/quota_tree 0xb49948b4 qtree_write_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0xb4de26b8 qtree_release_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x58195cf5 qtree_release_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x63b9280e qtree_read_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x792585cb qtree_delete_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xbf07c66f qtree_get_next_id +EXPORT_SYMBOL fs/quota/quota_tree 0xd1efd085 qtree_write_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xe53686ad qtree_entry_unused 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 @@ -4738,10 +4754,6 @@ EXPORT_SYMBOL lib/crc8 0xc3cd034d crc8_populate_lsb EXPORT_SYMBOL lib/crypto/libarc4 0x2bb32ad1 arc4_setkey EXPORT_SYMBOL lib/crypto/libarc4 0xcd47fcc4 arc4_crypt -EXPORT_SYMBOL lib/crypto/libblake2s 0x7bcc24fd blake2s256_hmac -EXPORT_SYMBOL lib/crypto/libblake2s 0xa3cefaa0 blake2s_update -EXPORT_SYMBOL lib/crypto/libblake2s 0xadae6df8 blake2s_final -EXPORT_SYMBOL lib/crypto/libblake2s-generic 0x755f4ba3 blake2s_compress_generic EXPORT_SYMBOL lib/crypto/libchacha 0xcec122d7 chacha_crypt_generic EXPORT_SYMBOL lib/crypto/libchacha20poly1305 0x147c3f2e chacha20poly1305_encrypt EXPORT_SYMBOL lib/crypto/libchacha20poly1305 0x37b34b92 chacha20poly1305_encrypt_sg_inplace @@ -4764,10 +4776,10 @@ EXPORT_SYMBOL lib/lru_cache 0x4522d82a lc_reset EXPORT_SYMBOL lib/lru_cache 0x4cf5f5a8 lc_is_used EXPORT_SYMBOL lib/lru_cache 0x5752f31b lc_del -EXPORT_SYMBOL lib/lru_cache 0x70c2dfd6 lc_seq_printf_stats EXPORT_SYMBOL lib/lru_cache 0x7257beee lc_element_by_index EXPORT_SYMBOL lib/lru_cache 0x9134feb7 lc_get -EXPORT_SYMBOL lib/lru_cache 0x92caa961 lc_seq_dump_details +EXPORT_SYMBOL lib/lru_cache 0xaa292708 lc_seq_printf_stats +EXPORT_SYMBOL lib/lru_cache 0xab4aee46 lc_seq_dump_details EXPORT_SYMBOL lib/lru_cache 0xb672aa97 lc_create EXPORT_SYMBOL lib/lru_cache 0xbfbe53d5 lc_get_cumulative EXPORT_SYMBOL lib/lru_cache 0xc3a98c1d lc_try_lock @@ -4841,815 +4853,816 @@ EXPORT_SYMBOL lib/zstd/zstd_compress 0xefe4f679 ZSTD_CCtxWorkspaceBound EXPORT_SYMBOL lib/zstd/zstd_compress 0xfdf70093 ZSTD_CStreamOutSize EXPORT_SYMBOL lib/zstd/zstd_compress 0xff9c4b56 ZSTD_compressBound -EXPORT_SYMBOL net/6lowpan/6lowpan 0x251037e0 lowpan_nhc_add -EXPORT_SYMBOL net/6lowpan/6lowpan 0x31399565 lowpan_unregister_netdevice -EXPORT_SYMBOL net/6lowpan/6lowpan 0xcab75711 lowpan_unregister_netdev -EXPORT_SYMBOL net/6lowpan/6lowpan 0xda9d4beb lowpan_nhc_del -EXPORT_SYMBOL net/6lowpan/6lowpan 0xecf56982 lowpan_register_netdev -EXPORT_SYMBOL net/6lowpan/6lowpan 0xf221bfe1 lowpan_register_netdevice -EXPORT_SYMBOL net/802/p8022 0x1b6f77c2 unregister_8022_client -EXPORT_SYMBOL net/802/p8022 0xf2524c30 register_8022_client -EXPORT_SYMBOL net/802/psnap 0x67ddc83c unregister_snap_client -EXPORT_SYMBOL net/802/psnap 0xb7aabb58 register_snap_client -EXPORT_SYMBOL net/9p/9pnet 0x0b6af013 p9_show_client_options -EXPORT_SYMBOL net/9p/9pnet 0x0dc3cbc3 p9_client_create -EXPORT_SYMBOL net/9p/9pnet 0x0ea82cf4 p9_client_attach -EXPORT_SYMBOL net/9p/9pnet 0x12095fe1 p9_client_clunk -EXPORT_SYMBOL net/9p/9pnet 0x131d909c p9_client_create_dotl +EXPORT_SYMBOL net/6lowpan/6lowpan 0x00bbd4df lowpan_register_netdevice +EXPORT_SYMBOL net/6lowpan/6lowpan 0x0f50a772 lowpan_nhc_del +EXPORT_SYMBOL net/6lowpan/6lowpan 0x912b78df lowpan_register_netdev +EXPORT_SYMBOL net/6lowpan/6lowpan 0x95631371 lowpan_nhc_add +EXPORT_SYMBOL net/6lowpan/6lowpan 0xb8475f77 lowpan_unregister_netdevice +EXPORT_SYMBOL net/6lowpan/6lowpan 0xdd894b3b lowpan_unregister_netdev +EXPORT_SYMBOL net/802/p8022 0x2f6547e2 unregister_8022_client +EXPORT_SYMBOL net/802/p8022 0xac9748db register_8022_client +EXPORT_SYMBOL net/802/psnap 0x4c48d180 unregister_snap_client +EXPORT_SYMBOL net/802/psnap 0x5b5958d1 register_snap_client +EXPORT_SYMBOL net/9p/9pnet 0x03adc536 p9_client_open +EXPORT_SYMBOL net/9p/9pnet 0x0c614e4f p9_is_proto_dotl EXPORT_SYMBOL net/9p/9pnet 0x1430723c p9_req_put -EXPORT_SYMBOL net/9p/9pnet 0x14db8ef8 p9_client_walk -EXPORT_SYMBOL net/9p/9pnet 0x188c1b2d p9_is_proto_dotl -EXPORT_SYMBOL net/9p/9pnet 0x19292456 p9_client_getattr_dotl -EXPORT_SYMBOL net/9p/9pnet 0x1d9a31d1 p9_client_read_once -EXPORT_SYMBOL net/9p/9pnet 0x1e53db0e p9_client_lock_dotl -EXPORT_SYMBOL net/9p/9pnet 0x200fca04 p9_client_link -EXPORT_SYMBOL net/9p/9pnet 0x2ae4bdf3 p9_client_mknod_dotl -EXPORT_SYMBOL net/9p/9pnet 0x2e1360ca p9_client_setattr -EXPORT_SYMBOL net/9p/9pnet 0x2efe3427 p9_client_cb -EXPORT_SYMBOL net/9p/9pnet 0x2f148245 p9_client_renameat -EXPORT_SYMBOL net/9p/9pnet 0x31519448 p9_client_read -EXPORT_SYMBOL net/9p/9pnet 0x39d7618a p9_client_open -EXPORT_SYMBOL net/9p/9pnet 0x3a4da141 p9_client_readdir +EXPORT_SYMBOL net/9p/9pnet 0x18365550 p9_client_wstat +EXPORT_SYMBOL net/9p/9pnet 0x215632be v9fs_register_trans +EXPORT_SYMBOL net/9p/9pnet 0x27082ad8 p9_client_clunk EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno +EXPORT_SYMBOL net/9p/9pnet 0x3f5463ad p9_client_create_dotl +EXPORT_SYMBOL net/9p/9pnet 0x404d04b4 p9_client_stat +EXPORT_SYMBOL net/9p/9pnet 0x41662d5a p9_client_readdir EXPORT_SYMBOL net/9p/9pnet 0x41ce9823 p9stat_read -EXPORT_SYMBOL net/9p/9pnet 0x41d32251 p9_client_rename -EXPORT_SYMBOL net/9p/9pnet 0x48e1ccde p9_client_fcreate -EXPORT_SYMBOL net/9p/9pnet 0x5217847e v9fs_register_trans -EXPORT_SYMBOL net/9p/9pnet 0x5224550c v9fs_get_default_trans -EXPORT_SYMBOL net/9p/9pnet 0x5a9ad064 p9_client_unlinkat -EXPORT_SYMBOL net/9p/9pnet 0x633a5e83 p9_client_remove -EXPORT_SYMBOL net/9p/9pnet 0x75baa6ad p9_client_wstat -EXPORT_SYMBOL net/9p/9pnet 0x7a009f11 p9_client_mkdir_dotl -EXPORT_SYMBOL net/9p/9pnet 0x83cf280b p9_client_statfs -EXPORT_SYMBOL net/9p/9pnet 0x91445fc4 p9_client_getlock_dotl +EXPORT_SYMBOL net/9p/9pnet 0x520f87e5 p9_client_symlink +EXPORT_SYMBOL net/9p/9pnet 0x5edc70ed p9_client_begin_disconnect +EXPORT_SYMBOL net/9p/9pnet 0x65690570 p9_client_read_once +EXPORT_SYMBOL net/9p/9pnet 0x656c1985 p9_client_remove +EXPORT_SYMBOL net/9p/9pnet 0x6997778e p9_release_pages +EXPORT_SYMBOL net/9p/9pnet 0x6d629a10 p9_client_disconnect +EXPORT_SYMBOL net/9p/9pnet 0x71964f1a p9_client_rename +EXPORT_SYMBOL net/9p/9pnet 0x7c41563d p9_is_proto_dotu +EXPORT_SYMBOL net/9p/9pnet 0x8aec13c8 p9_client_renameat +EXPORT_SYMBOL net/9p/9pnet 0x8ba7f1cd p9_client_fcreate +EXPORT_SYMBOL net/9p/9pnet 0x90a623bf p9_client_link EXPORT_SYMBOL net/9p/9pnet 0x95bd8f96 p9dirent_read EXPORT_SYMBOL net/9p/9pnet 0x984c5e73 p9_fcall_fini -EXPORT_SYMBOL net/9p/9pnet 0x9a646f11 p9_client_symlink -EXPORT_SYMBOL net/9p/9pnet 0x9c461403 p9_client_write -EXPORT_SYMBOL net/9p/9pnet 0xa0665fbb v9fs_unregister_trans -EXPORT_SYMBOL net/9p/9pnet 0xa3b7db99 p9_tag_lookup -EXPORT_SYMBOL net/9p/9pnet 0xa9b2f9f7 p9_client_disconnect -EXPORT_SYMBOL net/9p/9pnet 0xa9cafe47 p9_is_proto_dotu -EXPORT_SYMBOL net/9p/9pnet 0xacab0528 p9_client_destroy -EXPORT_SYMBOL net/9p/9pnet 0xb0f342e9 p9_client_stat -EXPORT_SYMBOL net/9p/9pnet 0xb228a3ab p9_client_readlink +EXPORT_SYMBOL net/9p/9pnet 0x9af106c9 p9_client_write +EXPORT_SYMBOL net/9p/9pnet 0x9d9ca6a1 p9_client_destroy +EXPORT_SYMBOL net/9p/9pnet 0xa16b2649 v9fs_get_default_trans +EXPORT_SYMBOL net/9p/9pnet 0xa1c49ea4 p9_client_read +EXPORT_SYMBOL net/9p/9pnet 0xa5e28c00 v9fs_get_trans_by_name +EXPORT_SYMBOL net/9p/9pnet 0xa5f1cd2c p9_client_getattr_dotl +EXPORT_SYMBOL net/9p/9pnet 0xb0e87e3f p9_client_cb +EXPORT_SYMBOL net/9p/9pnet 0xb1964a7c p9_client_setattr EXPORT_SYMBOL net/9p/9pnet 0xb79f25fd p9_parse_header -EXPORT_SYMBOL net/9p/9pnet 0xd23d30bd p9_client_begin_disconnect +EXPORT_SYMBOL net/9p/9pnet 0xbd83d22f p9_client_mkdir_dotl +EXPORT_SYMBOL net/9p/9pnet 0xbde9810f p9_client_fsync +EXPORT_SYMBOL net/9p/9pnet 0xc2d45c0f p9_client_mknod_dotl +EXPORT_SYMBOL net/9p/9pnet 0xc46ca88e p9_client_create +EXPORT_SYMBOL net/9p/9pnet 0xcf30a32d p9_client_attach EXPORT_SYMBOL net/9p/9pnet 0xd384c683 p9stat_free -EXPORT_SYMBOL net/9p/9pnet 0xd4b3a956 p9_release_pages -EXPORT_SYMBOL net/9p/9pnet 0xdb7d937c p9_client_fsync -EXPORT_SYMBOL net/9p/9pnet 0xe1e0e489 v9fs_get_trans_by_name +EXPORT_SYMBOL net/9p/9pnet 0xd5858ff7 p9_client_lock_dotl +EXPORT_SYMBOL net/9p/9pnet 0xd6e25952 p9_client_getlock_dotl +EXPORT_SYMBOL net/9p/9pnet 0xdb6f4866 p9_client_statfs +EXPORT_SYMBOL net/9p/9pnet 0xdd7d49df p9_show_client_options +EXPORT_SYMBOL net/9p/9pnet 0xe4bad8d2 p9_client_readlink EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init -EXPORT_SYMBOL net/appletalk/appletalk 0x4fac7ddb aarp_send_ddp -EXPORT_SYMBOL net/appletalk/appletalk 0x6cff2315 atrtr_get_dev -EXPORT_SYMBOL net/appletalk/appletalk 0xa7093a1c alloc_ltalkdev -EXPORT_SYMBOL net/appletalk/appletalk 0xf2e17ecf atalk_find_dev_addr -EXPORT_SYMBOL net/atm/atm 0x08e9bcf6 atm_dev_deregister -EXPORT_SYMBOL net/atm/atm 0x17bb6071 atm_dev_signal_change -EXPORT_SYMBOL net/atm/atm 0x24fe486f atm_dev_register +EXPORT_SYMBOL net/9p/9pnet 0xe74cae85 v9fs_unregister_trans +EXPORT_SYMBOL net/9p/9pnet 0xed49fcc6 p9_client_walk +EXPORT_SYMBOL net/9p/9pnet 0xf989c526 p9_client_unlinkat +EXPORT_SYMBOL net/9p/9pnet 0xffd7d79d p9_tag_lookup +EXPORT_SYMBOL net/appletalk/appletalk 0x2fa9934f aarp_send_ddp +EXPORT_SYMBOL net/appletalk/appletalk 0x72a88620 atrtr_get_dev +EXPORT_SYMBOL net/appletalk/appletalk 0xabdd41ef alloc_ltalkdev +EXPORT_SYMBOL net/appletalk/appletalk 0xc0cc006b atalk_find_dev_addr +EXPORT_SYMBOL net/atm/atm 0x2738ea69 atm_dev_release_vccs EXPORT_SYMBOL net/atm/atm 0x2cc2d52d vcc_hash -EXPORT_SYMBOL net/atm/atm 0x41682a19 atm_charge +EXPORT_SYMBOL net/atm/atm 0x2f9be744 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 0x454e1990 atm_init_aal5 -EXPORT_SYMBOL net/atm/atm 0x570f0d8c deregister_atm_ioctl -EXPORT_SYMBOL net/atm/atm 0x682dac4e vcc_insert_socket -EXPORT_SYMBOL net/atm/atm 0x6d4f3930 vcc_release_async -EXPORT_SYMBOL net/atm/atm 0x96c94edc vcc_process_recv_queue +EXPORT_SYMBOL net/atm/atm 0x46366393 atm_charge +EXPORT_SYMBOL net/atm/atm 0x49491cfd atm_dev_lookup +EXPORT_SYMBOL net/atm/atm 0x5ed7121c vcc_process_recv_queue +EXPORT_SYMBOL net/atm/atm 0x7b54f918 atm_dev_signal_change +EXPORT_SYMBOL net/atm/atm 0x7c0cf53d atm_alloc_charge +EXPORT_SYMBOL net/atm/atm 0x94db9c12 vcc_insert_socket EXPORT_SYMBOL net/atm/atm 0x9feaf287 sonet_subtract_stats -EXPORT_SYMBOL net/atm/atm 0xa5eb4f60 atm_alloc_charge +EXPORT_SYMBOL net/atm/atm 0xa03dea9c atm_init_aal5 EXPORT_SYMBOL net/atm/atm 0xaa024146 sonet_copy_stats -EXPORT_SYMBOL net/atm/atm 0xb2dbe4cc register_atm_ioctl -EXPORT_SYMBOL net/atm/atm 0xc42b3980 atm_dev_release_vccs -EXPORT_SYMBOL net/atm/atm 0xcf69afa5 atm_dev_lookup +EXPORT_SYMBOL net/atm/atm 0xad6f57ef vcc_release_async +EXPORT_SYMBOL net/atm/atm 0xb54cc1ca atm_dev_deregister +EXPORT_SYMBOL net/atm/atm 0xb55e2cd8 deregister_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0xe997d9ad atm_dev_register EXPORT_SYMBOL net/atm/atm 0xf49bc67a atm_pcr_goal EXPORT_SYMBOL net/ax25/ax25 0x14cecd59 ax25_display_timer +EXPORT_SYMBOL net/ax25/ax25 0x1a8f7a06 ax25_linkfail_release EXPORT_SYMBOL net/ax25/ax25 0x242852b9 ax25_uid_policy -EXPORT_SYMBOL net/ax25/ax25 0x31503416 ax25_linkfail_release +EXPORT_SYMBOL net/ax25/ax25 0x24703619 ax25_ip_xmit +EXPORT_SYMBOL net/ax25/ax25 0x2473cec3 ax25_linkfail_register +EXPORT_SYMBOL net/ax25/ax25 0x3d514f9e ax25_listen_release EXPORT_SYMBOL net/ax25/ax25 0x4502c65a asc2ax -EXPORT_SYMBOL net/ax25/ax25 0x4f2c341c ax25_linkfail_register -EXPORT_SYMBOL net/ax25/ax25 0x501ac4a7 ax25_send_frame +EXPORT_SYMBOL net/ax25/ax25 0x4d873e39 ax25_listen_register EXPORT_SYMBOL net/ax25/ax25 0x53dea1ff ax2asc -EXPORT_SYMBOL net/ax25/ax25 0x5c722887 ax25_ip_xmit -EXPORT_SYMBOL net/ax25/ax25 0x838ba5d5 ax25_listen_register +EXPORT_SYMBOL net/ax25/ax25 0x7134bac7 ax25_send_frame +EXPORT_SYMBOL net/ax25/ax25 0x7f7e3dc3 ax25_find_cb EXPORT_SYMBOL net/ax25/ax25 0x8ede9e26 ax25_protocol_release -EXPORT_SYMBOL net/ax25/ax25 0xa4e2bad6 ax25_listen_release -EXPORT_SYMBOL net/ax25/ax25 0xa6e2e2e0 ax25_header_ops EXPORT_SYMBOL net/ax25/ax25 0xc1444946 ax25cmp -EXPORT_SYMBOL net/ax25/ax25 0xc1e9c051 ax25_find_cb +EXPORT_SYMBOL net/ax25/ax25 0xd2b83705 ax25_header_ops EXPORT_SYMBOL net/ax25/ax25 0xd43ecbf1 null_ax25_address EXPORT_SYMBOL net/ax25/ax25 0xee02e420 ax25_findbyuid EXPORT_SYMBOL net/bluetooth/bluetooth 0x0718b8b7 bt_info -EXPORT_SYMBOL net/bluetooth/bluetooth 0x07c05202 hci_get_route -EXPORT_SYMBOL net/bluetooth/bluetooth 0x0afcbee5 bt_sock_poll -EXPORT_SYMBOL net/bluetooth/bluetooth 0x18e828db bt_sock_ioctl -EXPORT_SYMBOL net/bluetooth/bluetooth 0x1c9b04c3 __hci_cmd_sync -EXPORT_SYMBOL net/bluetooth/bluetooth 0x1e8340c1 bt_procfs_cleanup -EXPORT_SYMBOL net/bluetooth/bluetooth 0x209631e4 hci_suspend_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0e4e1b94 l2cap_register_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0f896e6d l2cap_is_socket +EXPORT_SYMBOL net/bluetooth/bluetooth 0x100216cf bt_sock_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0x1310ae1d hci_conn_check_secure +EXPORT_SYMBOL net/bluetooth/bluetooth 0x1587d6b6 hci_conn_security +EXPORT_SYMBOL net/bluetooth/bluetooth 0x16765f40 hci_release_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x172a2ff8 hci_register_dev EXPORT_SYMBOL net/bluetooth/bluetooth 0x214e4265 bt_warn -EXPORT_SYMBOL net/bluetooth/bluetooth 0x281658f5 hci_recv_diag -EXPORT_SYMBOL net/bluetooth/bluetooth 0x29c41f18 l2cap_chan_close -EXPORT_SYMBOL net/bluetooth/bluetooth 0x2d218893 hci_reset_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x4b0c6faa bt_accept_dequeue -EXPORT_SYMBOL net/bluetooth/bluetooth 0x4c152be4 hci_free_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x4fd852fc hci_cmd_sync -EXPORT_SYMBOL net/bluetooth/bluetooth 0x53de89da hci_recv_frame -EXPORT_SYMBOL net/bluetooth/bluetooth 0x5ca38d5e __hci_cmd_sync_ev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x6cd85d14 bt_sock_recvmsg -EXPORT_SYMBOL net/bluetooth/bluetooth 0x6ea02b3f l2cap_conn_get +EXPORT_SYMBOL net/bluetooth/bluetooth 0x245d9ab8 bt_sock_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0x27c75b67 l2cap_conn_get +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2b224aec hci_register_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2e1f5502 hci_free_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x36b4ec9e bt_accept_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0x39e6d1d8 hci_unregister_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3c661bb6 hci_reset_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3e405fd6 hci_alloc_dev_priv +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3fdd45a5 hci_set_hw_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0x506582b6 bt_sock_ioctl +EXPORT_SYMBOL net/bluetooth/bluetooth 0x53ea960f bt_procfs_init +EXPORT_SYMBOL net/bluetooth/bluetooth 0x59752009 hci_mgmt_chan_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0x59b23dad __hci_cmd_sync_ev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5fb2b055 l2cap_conn_put +EXPORT_SYMBOL net/bluetooth/bluetooth 0x6194e178 __hci_cmd_send +EXPORT_SYMBOL net/bluetooth/bluetooth 0x65c2bc5d bt_sock_stream_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0x6d101dcd bt_accept_enqueue +EXPORT_SYMBOL net/bluetooth/bluetooth 0x74a62a47 bt_sock_register EXPORT_SYMBOL net/bluetooth/bluetooth 0x7aad008b bt_to_errno -EXPORT_SYMBOL net/bluetooth/bluetooth 0x7b035340 hci_unregister_cb EXPORT_SYMBOL net/bluetooth/bluetooth 0x7b5ce5c3 baswap EXPORT_SYMBOL net/bluetooth/bluetooth 0x7b8c32f1 bt_err -EXPORT_SYMBOL net/bluetooth/bluetooth 0x7e6d94f7 l2cap_conn_put -EXPORT_SYMBOL net/bluetooth/bluetooth 0x809f5975 hci_alloc_dev_priv -EXPORT_SYMBOL net/bluetooth/bluetooth 0x88d80c9a bt_sock_unlink -EXPORT_SYMBOL net/bluetooth/bluetooth 0x8a3ea1cd hci_conn_security -EXPORT_SYMBOL net/bluetooth/bluetooth 0x8ae219de hci_conn_check_secure +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7e6989d4 bt_sock_wait_state +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7f10c388 hci_conn_switch_role +EXPORT_SYMBOL net/bluetooth/bluetooth 0x86aef0a1 hci_unregister_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x891a56fc bt_procfs_cleanup +EXPORT_SYMBOL net/bluetooth/bluetooth 0x89326482 bt_sock_poll +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8d9ec9df l2cap_chan_close EXPORT_SYMBOL net/bluetooth/bluetooth 0x8fea24bd bt_sock_unregister -EXPORT_SYMBOL net/bluetooth/bluetooth 0x90d73c7b bt_sock_stream_recvmsg -EXPORT_SYMBOL net/bluetooth/bluetooth 0x9322ea48 __hci_cmd_send -EXPORT_SYMBOL net/bluetooth/bluetooth 0x992e59a7 hci_conn_switch_role -EXPORT_SYMBOL net/bluetooth/bluetooth 0x9fd4f356 hci_set_hw_info -EXPORT_SYMBOL net/bluetooth/bluetooth 0xa816b33f hci_set_fw_info -EXPORT_SYMBOL net/bluetooth/bluetooth 0xa899c9f1 l2cap_is_socket -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb5315259 hci_resume_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xba07f437 hci_mgmt_chan_register -EXPORT_SYMBOL net/bluetooth/bluetooth 0xc01cba83 hci_register_cb -EXPORT_SYMBOL net/bluetooth/bluetooth 0xc0e2e0bd hci_release_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xc15e13bf l2cap_register_user -EXPORT_SYMBOL net/bluetooth/bluetooth 0xc445eaae hci_register_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xcaee09c0 hci_mgmt_chan_unregister -EXPORT_SYMBOL net/bluetooth/bluetooth 0xce158696 bt_accept_enqueue -EXPORT_SYMBOL net/bluetooth/bluetooth 0xd3137a07 bt_procfs_init +EXPORT_SYMBOL net/bluetooth/bluetooth 0x98268000 hci_resume_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa7b5407f l2cap_unregister_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa7fdbf1a bt_sock_link +EXPORT_SYMBOL net/bluetooth/bluetooth 0xaed9e014 hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0xbe4f25ae hci_mgmt_chan_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc3943c3e __hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0xcb5b7646 bt_sock_wait_ready +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd3bc9f48 hci_suspend_dev EXPORT_SYMBOL net/bluetooth/bluetooth 0xd7613212 bt_err_ratelimited -EXPORT_SYMBOL net/bluetooth/bluetooth 0xd932d2fe bt_sock_reclassify_lock -EXPORT_SYMBOL net/bluetooth/bluetooth 0xdaa6ca2a l2cap_unregister_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0xdc2c4329 bt_sock_reclassify_lock EXPORT_SYMBOL net/bluetooth/bluetooth 0xddacccf6 bt_warn_ratelimited -EXPORT_SYMBOL net/bluetooth/bluetooth 0xddfc58f1 bt_sock_wait_ready -EXPORT_SYMBOL net/bluetooth/bluetooth 0xdea08b31 hci_unregister_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xdfc28f5e bt_accept_unlink -EXPORT_SYMBOL net/bluetooth/bluetooth 0xe38b0be7 bt_sock_link -EXPORT_SYMBOL net/bluetooth/bluetooth 0xe50200e4 bt_sock_wait_state -EXPORT_SYMBOL net/bluetooth/bluetooth 0xea6b2934 bt_sock_register -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x062a847f ebt_register_template -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x13d1f311 ebt_unregister_table_pre_exit -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x5b61903a ebt_unregister_template -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x73ae890d ebt_register_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xc76ba8b3 ebt_unregister_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xcbfd7a65 ebt_do_table +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe82fa0ec hci_recv_diag +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf17fbff1 hci_set_fw_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf3640716 bt_accept_dequeue +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf4127169 hci_recv_frame +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf876816e hci_get_route +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x05c476f6 ebt_register_template +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x0ad584a8 ebt_unregister_template +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x0f49ef47 ebt_unregister_table_pre_exit +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x4c960d9a ebt_do_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xee82855f ebt_register_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xf61562f3 ebt_unregister_table EXPORT_SYMBOL net/caif/caif 0x1446b60a caif_client_register_refcnt -EXPORT_SYMBOL net/caif/caif 0x16332341 caif_disconnect_client +EXPORT_SYMBOL net/caif/caif 0x251cec16 caif_disconnect_client EXPORT_SYMBOL net/caif/caif 0x2a09f713 cfpkt_fromnative EXPORT_SYMBOL net/caif/caif 0x329dbd06 cfpkt_info EXPORT_SYMBOL net/caif/caif 0x38701a7c cfcnfg_del_phy_layer EXPORT_SYMBOL net/caif/caif 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 0x6fe0a9f7 get_cfcnfg +EXPORT_SYMBOL net/caif/caif 0x80afee01 caif_enroll_dev EXPORT_SYMBOL net/caif/caif 0x839ddb7b cfcnfg_set_phy_state -EXPORT_SYMBOL net/caif/caif 0x9b97b551 caif_enroll_dev +EXPORT_SYMBOL net/caif/caif 0x87e14337 cfcnfg_add_phy_layer EXPORT_SYMBOL net/caif/caif 0x9e3e305d cfpkt_set_prio EXPORT_SYMBOL net/caif/caif 0xb7b6874e caif_free_client -EXPORT_SYMBOL net/caif/caif 0xc6d9cc64 cfcnfg_add_phy_layer -EXPORT_SYMBOL net/caif/caif 0xfb0f610e caif_connect_client -EXPORT_SYMBOL net/can/can 0x39c0cd0d can_proto_register -EXPORT_SYMBOL net/can/can 0x4e1bbe5c can_sock_destruct -EXPORT_SYMBOL net/can/can 0x6dc591c1 can_proto_unregister -EXPORT_SYMBOL net/can/can 0x8e8a25cc can_rx_register -EXPORT_SYMBOL net/can/can 0xf4b799bc can_rx_unregister -EXPORT_SYMBOL net/can/can 0xff1dcb63 can_send -EXPORT_SYMBOL net/ceph/libceph 0x0322fa52 ceph_auth_handle_svc_reply_more -EXPORT_SYMBOL net/ceph/libceph 0x04a11b2f ceph_osdc_cancel_request +EXPORT_SYMBOL net/caif/caif 0xf474b013 caif_connect_client +EXPORT_SYMBOL net/caif/caif 0xffdb1d07 get_cfcnfg +EXPORT_SYMBOL net/can/can 0x22f30fdd can_rx_register +EXPORT_SYMBOL net/can/can 0x842d1e60 can_sock_destruct +EXPORT_SYMBOL net/can/can 0x91653d50 can_proto_unregister +EXPORT_SYMBOL net/can/can 0xd4bdd234 can_rx_unregister +EXPORT_SYMBOL net/can/can 0xde3288f9 can_proto_register +EXPORT_SYMBOL net/can/can 0xf0de8fe2 can_send +EXPORT_SYMBOL net/ceph/libceph 0x0079b2f6 ceph_parse_mon_ips +EXPORT_SYMBOL net/ceph/libceph 0x01409e27 ceph_msg_new2 EXPORT_SYMBOL net/ceph/libceph 0x04cad6f0 ceph_pg_poolid_by_name -EXPORT_SYMBOL net/ceph/libceph 0x0a64b132 ceph_cls_lock -EXPORT_SYMBOL net/ceph/libceph 0x0cbd4be0 ceph_open_session -EXPORT_SYMBOL net/ceph/libceph 0x0ccaf62d ceph_con_init -EXPORT_SYMBOL net/ceph/libceph 0x107f9156 ceph_osdc_unwatch -EXPORT_SYMBOL net/ceph/libceph 0x116a8498 ceph_osdc_alloc_messages -EXPORT_SYMBOL net/ceph/libceph 0x12725f2f ceph_reset_client_addr +EXPORT_SYMBOL net/ceph/libceph 0x06ff5ac3 ceph_monc_got_map +EXPORT_SYMBOL net/ceph/libceph 0x085d5188 ceph_cls_unlock +EXPORT_SYMBOL net/ceph/libceph 0x08b56b58 ceph_auth_handle_svc_reply_more +EXPORT_SYMBOL net/ceph/libceph 0x08c3a120 ceph_con_keepalive +EXPORT_SYMBOL net/ceph/libceph 0x0b7bdd55 ceph_monc_init +EXPORT_SYMBOL net/ceph/libceph 0x0f850ec2 osd_req_op_extent_osd_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x133978f1 ceph_cls_lock EXPORT_SYMBOL net/ceph/libceph 0x1378aba3 ceph_pg_pool_name_by_id -EXPORT_SYMBOL net/ceph/libceph 0x138fbd91 ceph_msg_new -EXPORT_SYMBOL net/ceph/libceph 0x14b478c8 ceph_destroy_client -EXPORT_SYMBOL net/ceph/libceph 0x15856aa4 ceph_osdc_new_request 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 0x1d657f3c ceph_monc_open_session -EXPORT_SYMBOL net/ceph/libceph 0x1e5ed9a7 ceph_msg_put +EXPORT_SYMBOL net/ceph/libceph 0x1e2b42fc ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x1f4cf5ea ceph_cls_set_cookie +EXPORT_SYMBOL net/ceph/libceph 0x1fcdb21a ceph_osdc_start_request +EXPORT_SYMBOL net/ceph/libceph 0x2038ea24 ceph_wait_for_latest_osdmap EXPORT_SYMBOL net/ceph/libceph 0x2087719e ceph_oid_copy EXPORT_SYMBOL net/ceph/libceph 0x2101cbc9 ceph_oid_destroy -EXPORT_SYMBOL net/ceph/libceph 0x226c4c61 ceph_osdc_sync -EXPORT_SYMBOL net/ceph/libceph 0x2278811f ceph_cls_assert_locked +EXPORT_SYMBOL net/ceph/libceph 0x2977d2e8 ceph_msg_put EXPORT_SYMBOL net/ceph/libceph 0x2a983d26 ceph_pagelist_release -EXPORT_SYMBOL net/ceph/libceph 0x2dd511d0 osd_req_op_extent_osd_data_bvec_pos -EXPORT_SYMBOL net/ceph/libceph 0x2f8af6a1 osd_req_op_alloc_hint_init -EXPORT_SYMBOL net/ceph/libceph 0x3072be93 ceph_cls_set_cookie -EXPORT_SYMBOL net/ceph/libceph 0x3525f8bd ceph_osdc_put_request -EXPORT_SYMBOL net/ceph/libceph 0x35f9b252 osd_req_op_cls_request_data_pagelist -EXPORT_SYMBOL net/ceph/libceph 0x372a8b51 ceph_msg_data_add_bio +EXPORT_SYMBOL net/ceph/libceph 0x2e7db691 ceph_monc_renew_subs +EXPORT_SYMBOL net/ceph/libceph 0x31bb3b72 ceph_auth_handle_bad_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x34ad7605 ceph_osdc_notify_ack +EXPORT_SYMBOL net/ceph/libceph 0x38b22cfe ceph_auth_invalidate_authorizer EXPORT_SYMBOL net/ceph/libceph 0x38f2d94e ceph_file_to_extents -EXPORT_SYMBOL net/ceph/libceph 0x3963c4af osd_req_op_cls_request_data_bvecs -EXPORT_SYMBOL net/ceph/libceph 0x3a256d3c ceph_msg_data_add_bvecs +EXPORT_SYMBOL net/ceph/libceph 0x3a31a256 ceph_check_fsid EXPORT_SYMBOL net/ceph/libceph 0x3c8d7111 ceph_get_num_objects -EXPORT_SYMBOL net/ceph/libceph 0x400f79a0 osd_req_op_extent_update -EXPORT_SYMBOL net/ceph/libceph 0x4082e7c1 ceph_monc_blocklist_add +EXPORT_SYMBOL net/ceph/libceph 0x3f401861 osd_req_op_cls_init +EXPORT_SYMBOL net/ceph/libceph 0x401a0e50 osd_req_op_extent_osd_data EXPORT_SYMBOL net/ceph/libceph 0x417a9131 ceph_oloc_destroy -EXPORT_SYMBOL net/ceph/libceph 0x42583ae2 ceph_create_client +EXPORT_SYMBOL net/ceph/libceph 0x4242f24f ceph_con_send EXPORT_SYMBOL net/ceph/libceph 0x466b85b8 libceph_compatible -EXPORT_SYMBOL net/ceph/libceph 0x4cb73c14 ceph_monc_want_map -EXPORT_SYMBOL net/ceph/libceph 0x4cccf770 osd_req_op_extent_osd_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x4810cc0e ceph_osdc_maybe_request_map +EXPORT_SYMBOL net/ceph/libceph 0x4b42a9f1 ceph_osdc_watch +EXPORT_SYMBOL net/ceph/libceph 0x4fdb33f9 __ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x50195b2b ceph_msg_data_add_pagelist EXPORT_SYMBOL net/ceph/libceph 0x50603ce3 ceph_decode_entity_addrvec -EXPORT_SYMBOL net/ceph/libceph 0x50abfc94 ceph_copy_from_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x5740460d ceph_put_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x50f6b786 ceph_put_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x5479e861 __ceph_auth_get_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x5501c160 ceph_copy_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x5650c457 ceph_monc_stop EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash -EXPORT_SYMBOL net/ceph/libceph 0x58661e83 ceph_check_fsid -EXPORT_SYMBOL net/ceph/libceph 0x5ac2ff6a ceph_client_gid EXPORT_SYMBOL net/ceph/libceph 0x5aeeee62 ceph_oid_aprintf -EXPORT_SYMBOL net/ceph/libceph 0x5b260684 ceph_release_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x5e660f41 ceph_con_keepalive +EXPORT_SYMBOL net/ceph/libceph 0x5f2a3f4a osd_req_op_cls_request_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x5fdbf636 osd_req_op_cls_response_data_pages EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name -EXPORT_SYMBOL net/ceph/libceph 0x658a211e ceph_parse_mon_ips -EXPORT_SYMBOL net/ceph/libceph 0x65a3bca9 ceph_monc_get_version_async -EXPORT_SYMBOL net/ceph/libceph 0x66cbbf86 ceph_osdc_notify_ack -EXPORT_SYMBOL net/ceph/libceph 0x6a0b226d ceph_auth_handle_svc_reply_done +EXPORT_SYMBOL net/ceph/libceph 0x66cb8725 ceph_osdc_new_request +EXPORT_SYMBOL net/ceph/libceph 0x69ad6082 ceph_copy_user_to_page_vector EXPORT_SYMBOL net/ceph/libceph 0x6a7a38a0 ceph_pr_addr -EXPORT_SYMBOL net/ceph/libceph 0x6c15cb2a ceph_auth_verify_authorizer_reply -EXPORT_SYMBOL net/ceph/libceph 0x7168ff79 osd_req_op_init -EXPORT_SYMBOL net/ceph/libceph 0x7292b5ba ceph_msg_data_add_pages -EXPORT_SYMBOL net/ceph/libceph 0x75826c27 osd_req_op_extent_dup_last -EXPORT_SYMBOL net/ceph/libceph 0x760decbb ceph_zero_page_vector_range -EXPORT_SYMBOL net/ceph/libceph 0x767839c5 ceph_cls_unlock -EXPORT_SYMBOL net/ceph/libceph 0x784a081d ceph_msg_new2 -EXPORT_SYMBOL net/ceph/libceph 0x7a478cba osd_req_op_cls_init -EXPORT_SYMBOL net/ceph/libceph 0x7c35038c ceph_auth_add_authorizer_challenge -EXPORT_SYMBOL net/ceph/libceph 0x7f540b33 ceph_monc_validate_auth -EXPORT_SYMBOL net/ceph/libceph 0x81e643e2 osd_req_op_extent_osd_data_pages -EXPORT_SYMBOL net/ceph/libceph 0x827387f6 ceph_monc_wait_osdmap -EXPORT_SYMBOL net/ceph/libceph 0x84727a95 osd_req_op_extent_init -EXPORT_SYMBOL net/ceph/libceph 0x85d11ed6 ceph_msg_get -EXPORT_SYMBOL net/ceph/libceph 0x85d7968b ceph_monc_got_map +EXPORT_SYMBOL net/ceph/libceph 0x6a8bf873 ceph_osdc_sync +EXPORT_SYMBOL net/ceph/libceph 0x6aeff907 ceph_osdc_get_request +EXPORT_SYMBOL net/ceph/libceph 0x6b589209 ceph_zero_page_vector_range +EXPORT_SYMBOL net/ceph/libceph 0x6b83d5c8 ceph_osdc_put_request +EXPORT_SYMBOL net/ceph/libceph 0x6fdad15e ceph_cls_lock_info +EXPORT_SYMBOL net/ceph/libceph 0x6ff8823c ceph_compare_options +EXPORT_SYMBOL net/ceph/libceph 0x757ccb8d ceph_osdc_call +EXPORT_SYMBOL net/ceph/libceph 0x766fddfe ceph_monc_wait_osdmap +EXPORT_SYMBOL net/ceph/libceph 0x79e29c62 ceph_auth_handle_svc_reply_done +EXPORT_SYMBOL net/ceph/libceph 0x7a04a97e ceph_msg_get +EXPORT_SYMBOL net/ceph/libceph 0x7b21161e ceph_monc_get_version +EXPORT_SYMBOL net/ceph/libceph 0x7dace694 ceph_client_gid +EXPORT_SYMBOL net/ceph/libceph 0x7e33581e ceph_osdc_list_watchers +EXPORT_SYMBOL net/ceph/libceph 0x858f9a2e ceph_osdc_wait_request +EXPORT_SYMBOL net/ceph/libceph 0x85b4c830 ceph_monc_validate_auth EXPORT_SYMBOL net/ceph/libceph 0x86fca7e4 ceph_put_snap_context -EXPORT_SYMBOL net/ceph/libceph 0x8bc2d546 ceph_print_client_options -EXPORT_SYMBOL net/ceph/libceph 0x8c23d826 ceph_osdc_maybe_request_map +EXPORT_SYMBOL net/ceph/libceph 0x8c78e6ff osd_req_op_xattr_init +EXPORT_SYMBOL net/ceph/libceph 0x8d9511b1 osd_req_op_init EXPORT_SYMBOL net/ceph/libceph 0x92b7b4ce ceph_pg_pool_flags -EXPORT_SYMBOL net/ceph/libceph 0x967345cb ceph_auth_is_authenticated -EXPORT_SYMBOL net/ceph/libceph 0x97160440 osd_req_op_raw_data_in_pages -EXPORT_SYMBOL net/ceph/libceph 0x97975217 ceph_osdc_abort_requests +EXPORT_SYMBOL net/ceph/libceph 0x953fac57 osd_req_op_extent_osd_data_bvecs +EXPORT_SYMBOL net/ceph/libceph 0x969a9679 ceph_osdc_copy_from +EXPORT_SYMBOL net/ceph/libceph 0x9797d76a ceph_auth_is_authenticated +EXPORT_SYMBOL net/ceph/libceph 0x979aa058 ceph_msg_dump EXPORT_SYMBOL net/ceph/libceph 0x987d3968 ceph_alloc_options -EXPORT_SYMBOL net/ceph/libceph 0x98bdd937 osd_req_op_extent_osd_data_bio -EXPORT_SYMBOL net/ceph/libceph 0x9af0ae4e ceph_copy_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x99aff63b ceph_osdc_alloc_request +EXPORT_SYMBOL net/ceph/libceph 0x99cc9c21 ceph_osdc_cancel_request EXPORT_SYMBOL net/ceph/libceph 0x9bc6b539 ceph_find_or_create_string +EXPORT_SYMBOL net/ceph/libceph 0x9bdaebe1 ceph_release_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x9c089f26 ceph_cls_assert_locked EXPORT_SYMBOL net/ceph/libceph 0x9ca95932 ceph_create_snap_context -EXPORT_SYMBOL net/ceph/libceph 0x9e44d75c ceph_cls_lock_info -EXPORT_SYMBOL net/ceph/libceph 0x9e6250eb ceph_osdc_alloc_request +EXPORT_SYMBOL net/ceph/libceph 0x9e1442aa ceph_alloc_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x9f9fb3cd ceph_destroy_client 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 0xa57cbb97 ceph_client_addr +EXPORT_SYMBOL net/ceph/libceph 0xa0b46211 ceph_auth_get_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xa12757da osd_req_op_extent_osd_data_pages +EXPORT_SYMBOL net/ceph/libceph 0xa2512d3b osd_req_op_extent_update +EXPORT_SYMBOL net/ceph/libceph 0xa25af5ad ceph_create_client +EXPORT_SYMBOL net/ceph/libceph 0xa5088240 ceph_msg_data_add_bvecs +EXPORT_SYMBOL net/ceph/libceph 0xa62051c1 ceph_monc_open_session EXPORT_SYMBOL net/ceph/libceph 0xa698f998 ceph_free_lockers -EXPORT_SYMBOL net/ceph/libceph 0xa69d4fea osd_req_op_xattr_init -EXPORT_SYMBOL net/ceph/libceph 0xa8617b1f ceph_con_open -EXPORT_SYMBOL net/ceph/libceph 0xa8818563 ceph_osdc_list_watchers -EXPORT_SYMBOL net/ceph/libceph 0xabb2aa7c ceph_compare_options -EXPORT_SYMBOL net/ceph/libceph 0xabcdc16f ceph_monc_do_statfs EXPORT_SYMBOL net/ceph/libceph 0xad703657 ceph_auth_destroy_authorizer -EXPORT_SYMBOL net/ceph/libceph 0xae8c18aa ceph_osdc_copy_from +EXPORT_SYMBOL net/ceph/libceph 0xae33cf22 ceph_monc_get_version_async EXPORT_SYMBOL net/ceph/libceph 0xafb8a407 ceph_msgr_flush -EXPORT_SYMBOL net/ceph/libceph 0xb36441b5 ceph_con_send +EXPORT_SYMBOL net/ceph/libceph 0xb03f7bfa ceph_print_client_options +EXPORT_SYMBOL net/ceph/libceph 0xb0d36fe2 ceph_con_open +EXPORT_SYMBOL net/ceph/libceph 0xb1abe972 ceph_osdc_alloc_messages EXPORT_SYMBOL net/ceph/libceph 0xb54676fa ceph_msg_type_name -EXPORT_SYMBOL net/ceph/libceph 0xb698e533 ceph_auth_handle_bad_authorizer EXPORT_SYMBOL net/ceph/libceph 0xb72c162e ceph_buffer_release -EXPORT_SYMBOL net/ceph/libceph 0xb840b578 ceph_monc_init -EXPORT_SYMBOL net/ceph/libceph 0xba371da2 ceph_monc_stop -EXPORT_SYMBOL net/ceph/libceph 0xbcad948d ceph_cls_break_lock +EXPORT_SYMBOL net/ceph/libceph 0xbbc8d47b ceph_monc_want_map EXPORT_SYMBOL net/ceph/libceph 0xbd2f79ae ceph_oloc_copy +EXPORT_SYMBOL net/ceph/libceph 0xbdc06b75 ceph_osdc_unwatch EXPORT_SYMBOL net/ceph/libceph 0xbe3879aa ceph_get_snap_context -EXPORT_SYMBOL net/ceph/libceph 0xbfe531a4 ceph_osdc_wait_request -EXPORT_SYMBOL net/ceph/libceph 0xc199655a ceph_msg_data_add_pagelist +EXPORT_SYMBOL net/ceph/libceph 0xbf375d8f ceph_msg_data_add_pages +EXPORT_SYMBOL net/ceph/libceph 0xc16fcabc osd_req_op_extent_init EXPORT_SYMBOL net/ceph/libceph 0xc366bfa1 ceph_pagelist_truncate -EXPORT_SYMBOL net/ceph/libceph 0xc49e70cc ceph_parse_param -EXPORT_SYMBOL net/ceph/libceph 0xc7f2d384 ceph_con_close -EXPORT_SYMBOL net/ceph/libceph 0xc867a499 ceph_osdc_start_request -EXPORT_SYMBOL net/ceph/libceph 0xc9aba7b8 osd_req_op_cls_response_data_pages +EXPORT_SYMBOL net/ceph/libceph 0xc4428f36 osd_req_op_extent_dup_last +EXPORT_SYMBOL net/ceph/libceph 0xc4ae789d ceph_osdc_update_epoch_barrier +EXPORT_SYMBOL net/ceph/libceph 0xc857ca9b ceph_auth_add_authorizer_challenge EXPORT_SYMBOL net/ceph/libceph 0xca80437b ceph_extent_to_file -EXPORT_SYMBOL net/ceph/libceph 0xcaaae7ff ceph_monc_get_version -EXPORT_SYMBOL net/ceph/libceph 0xd3cb1e87 ceph_osdc_get_request -EXPORT_SYMBOL net/ceph/libceph 0xd4a63231 ceph_osdc_update_epoch_barrier +EXPORT_SYMBOL net/ceph/libceph 0xca903875 osd_req_op_extent_osd_data_bio +EXPORT_SYMBOL net/ceph/libceph 0xcaa4cc14 ceph_auth_verify_authorizer_reply +EXPORT_SYMBOL net/ceph/libceph 0xcb10d470 ceph_osdc_clear_abort_err +EXPORT_SYMBOL net/ceph/libceph 0xcb18d3fc ceph_client_addr +EXPORT_SYMBOL net/ceph/libceph 0xcb8807f2 ceph_monc_blocklist_add +EXPORT_SYMBOL net/ceph/libceph 0xcc085b2c osd_req_op_raw_data_in_pages EXPORT_SYMBOL net/ceph/libceph 0xd4d736db ceph_destroy_options EXPORT_SYMBOL net/ceph/libceph 0xd4eb7735 ceph_decode_entity_addr -EXPORT_SYMBOL net/ceph/libceph 0xd772634e __ceph_open_session -EXPORT_SYMBOL net/ceph/libceph 0xd8e1fd9a ceph_alloc_page_vector -EXPORT_SYMBOL net/ceph/libceph 0xd917293b osd_req_op_extent_osd_data_bvecs -EXPORT_SYMBOL net/ceph/libceph 0xd9a7485c ceph_auth_invalidate_authorizer -EXPORT_SYMBOL net/ceph/libceph 0xdabfcd21 osd_req_op_extent_osd_data -EXPORT_SYMBOL net/ceph/libceph 0xdd661055 ceph_auth_get_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xd5737b45 ceph_osdc_abort_requests +EXPORT_SYMBOL net/ceph/libceph 0xd652a221 ceph_osdc_notify +EXPORT_SYMBOL net/ceph/libceph 0xd6f6e726 ceph_con_close +EXPORT_SYMBOL net/ceph/libceph 0xd864f57b ceph_cls_break_lock +EXPORT_SYMBOL net/ceph/libceph 0xdd1f1623 ceph_monc_do_statfs EXPORT_SYMBOL net/ceph/libceph 0xdf6ef4a1 ceph_oid_printf -EXPORT_SYMBOL net/ceph/libceph 0xdfbf19e9 ceph_osdc_flush_notifies +EXPORT_SYMBOL net/ceph/libceph 0xdfa3cde8 osd_req_op_alloc_hint_init EXPORT_SYMBOL net/ceph/libceph 0xdfc091f9 ceph_entity_type_name -EXPORT_SYMBOL net/ceph/libceph 0xe2626a19 __ceph_auth_get_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xe16f71e1 ceph_copy_from_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xe1891876 ceph_reset_client_addr EXPORT_SYMBOL net/ceph/libceph 0xe34a59f2 ceph_object_locator_to_pg -EXPORT_SYMBOL net/ceph/libceph 0xe43e6d44 ceph_osdc_notify +EXPORT_SYMBOL net/ceph/libceph 0xe665ddf3 ceph_msg_data_add_bio EXPORT_SYMBOL net/ceph/libceph 0xe76e7226 ceph_pagelist_alloc -EXPORT_SYMBOL net/ceph/libceph 0xeb25a7ee ceph_msg_dump +EXPORT_SYMBOL net/ceph/libceph 0xea3e13fb ceph_con_init +EXPORT_SYMBOL net/ceph/libceph 0xea9c4be5 osd_req_op_cls_request_data_pages 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 0xf02a44b8 ceph_copy_user_to_page_vector EXPORT_SYMBOL net/ceph/libceph 0xf03fe862 ceph_pagelist_set_cursor -EXPORT_SYMBOL net/ceph/libceph 0xf48fd932 ceph_osdc_clear_abort_err -EXPORT_SYMBOL net/ceph/libceph 0xf52c158f ceph_osdc_watch -EXPORT_SYMBOL net/ceph/libceph 0xf65d1715 ceph_monc_renew_subs -EXPORT_SYMBOL net/ceph/libceph 0xfa1184bf osd_req_op_cls_request_data_pages -EXPORT_SYMBOL net/ceph/libceph 0xfbda1f2f ceph_wait_for_latest_osdmap -EXPORT_SYMBOL net/ceph/libceph 0xffedc585 ceph_osdc_call -EXPORT_SYMBOL net/dccp/dccp_ipv4 0x99366ebd dccp_syn_ack_timeout -EXPORT_SYMBOL net/dccp/dccp_ipv4 0xffd41aee dccp_req_err -EXPORT_SYMBOL net/hsr/hsr 0x6e027483 hsr_get_version -EXPORT_SYMBOL net/hsr/hsr 0xca7ae3fe is_hsr_master -EXPORT_SYMBOL net/ieee802154/ieee802154 0x008d228d wpan_phy_register -EXPORT_SYMBOL net/ieee802154/ieee802154 0x56bc334a wpan_phy_new -EXPORT_SYMBOL net/ieee802154/ieee802154 0x69902343 wpan_phy_for_each -EXPORT_SYMBOL net/ieee802154/ieee802154 0x948b2ec6 wpan_phy_find -EXPORT_SYMBOL net/ieee802154/ieee802154 0xe94c058f wpan_phy_free -EXPORT_SYMBOL net/ieee802154/ieee802154 0xec9aea42 wpan_phy_unregister +EXPORT_SYMBOL net/ceph/libceph 0xfa2d5ff4 osd_req_op_cls_request_data_bvecs +EXPORT_SYMBOL net/ceph/libceph 0xfc1d7028 ceph_osdc_flush_notifies +EXPORT_SYMBOL net/ceph/libceph 0xfe45c8e6 osd_req_op_extent_osd_data_bvec_pos +EXPORT_SYMBOL net/ceph/libceph 0xfe67e15c ceph_parse_param +EXPORT_SYMBOL net/ceph/libceph 0xff14f58d ceph_msg_new +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x39c7d187 dccp_syn_ack_timeout +EXPORT_SYMBOL net/dccp/dccp_ipv4 0xe7ef3938 dccp_req_err +EXPORT_SYMBOL net/hsr/hsr 0xc561629c is_hsr_master +EXPORT_SYMBOL net/hsr/hsr 0xfbfbe111 hsr_get_version +EXPORT_SYMBOL net/ieee802154/ieee802154 0x216523ea wpan_phy_unregister +EXPORT_SYMBOL net/ieee802154/ieee802154 0x2ee1fb4c wpan_phy_find +EXPORT_SYMBOL net/ieee802154/ieee802154 0xa0572e3f wpan_phy_new +EXPORT_SYMBOL net/ieee802154/ieee802154 0xe7fffe76 wpan_phy_free +EXPORT_SYMBOL net/ieee802154/ieee802154 0xed3eadb2 wpan_phy_register +EXPORT_SYMBOL net/ieee802154/ieee802154 0xfc153e9e wpan_phy_for_each EXPORT_SYMBOL net/ipv4/fou 0x1757d1a4 fou_encap_hlen -EXPORT_SYMBOL net/ipv4/fou 0xb0df1fda __gue_build_header -EXPORT_SYMBOL net/ipv4/fou 0xd2d9bdad __fou_build_header +EXPORT_SYMBOL net/ipv4/fou 0x784aeb63 __fou_build_header +EXPORT_SYMBOL net/ipv4/fou 0xe8828994 __gue_build_header EXPORT_SYMBOL net/ipv4/fou 0xf13914b3 gue_encap_hlen -EXPORT_SYMBOL net/ipv4/gre 0x24047f27 gre_parse_header -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x76c12f33 ip_tunnel_get_link_net -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x91f8a9f7 ip_tunnel_encap_add_ops -EXPORT_SYMBOL net/ipv4/ip_tunnel 0xae3eff0e ip_tunnel_encap_del_ops -EXPORT_SYMBOL net/ipv4/ip_tunnel 0xaf8cd6b6 ip_tunnel_get_iflink -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x59996b31 arpt_unregister_table_pre_exit -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x6b52a692 arpt_unregister_table -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x9cdcc946 arpt_do_table -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xd08a6165 arpt_register_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x02883785 ipt_do_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x2745ec13 ipt_unregister_table_pre_exit -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x5f275085 ipt_register_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xdd8439da ipt_unregister_table_exit -EXPORT_SYMBOL net/ipv4/tunnel4 0x0e1e2123 xfrm4_tunnel_register -EXPORT_SYMBOL net/ipv4/tunnel4 0x59197433 xfrm4_tunnel_deregister -EXPORT_SYMBOL net/ipv4/udp_tunnel 0x1aa31344 udp_sock_create4 -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x18d4ac95 ip6_tnl_xmit -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x6b673054 ip6_tnl_rcv -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x7f60ac52 ip6_tnl_change_mtu -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x8900144f ip6_tnl_get_iflink -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x90c03561 ip6_tnl_encap_add_ops -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xc65465b1 ip6_tnl_get_cap -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xcbaeb4f5 ip6_tnl_get_link_net -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xd1b603ed ip6_tnl_parse_tlv_enc_lim -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xd80947ec ip6_tnl_encap_del_ops -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x1d380efa ip6t_unregister_table_exit -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x3891d204 ip6t_register_table -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x662594d6 ip6t_do_table -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x880ffe71 ip6t_unregister_table_pre_exit -EXPORT_SYMBOL net/ipv6/tunnel6 0x27c27694 xfrm6_tunnel_register -EXPORT_SYMBOL net/ipv6/tunnel6 0x78a3cc10 xfrm6_tunnel_deregister -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x4108e8e7 xfrm6_tunnel_spi_lookup -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x50e7c302 xfrm6_tunnel_alloc_spi -EXPORT_SYMBOL net/lapb/lapb 0x07682cd8 lapb_register -EXPORT_SYMBOL net/lapb/lapb 0x1d244a33 lapb_setparms -EXPORT_SYMBOL net/lapb/lapb 0x88671029 lapb_connect_request -EXPORT_SYMBOL net/lapb/lapb 0xb29e6039 lapb_data_received -EXPORT_SYMBOL net/lapb/lapb 0xbe3ab077 lapb_unregister -EXPORT_SYMBOL net/lapb/lapb 0xcd86a9cd lapb_disconnect_request -EXPORT_SYMBOL net/lapb/lapb 0xe781b68f lapb_data_request -EXPORT_SYMBOL net/lapb/lapb 0xefec0304 lapb_getparms -EXPORT_SYMBOL net/llc/llc 0x306603eb llc_sap_close -EXPORT_SYMBOL net/llc/llc 0x3291da30 llc_mac_hdr_init +EXPORT_SYMBOL net/ipv4/gre 0x9b746151 gre_parse_header +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x030a055a ip_tunnel_get_link_net +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x1428689b ip_tunnel_encap_del_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x8a59f501 ip_tunnel_get_iflink +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xfd0b1577 ip_tunnel_encap_add_ops +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x1bee9f68 arpt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x703555b2 arpt_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xa36c398a arpt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xc5ebd399 arpt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x111987d3 ipt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x9fcc2c15 ipt_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xc2226061 ipt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xe4dfbe10 ipt_unregister_table_exit +EXPORT_SYMBOL net/ipv4/tunnel4 0x02f275a2 xfrm4_tunnel_register +EXPORT_SYMBOL net/ipv4/tunnel4 0x28ee315b xfrm4_tunnel_deregister +EXPORT_SYMBOL net/ipv4/udp_tunnel 0x5f797a26 udp_sock_create4 +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x1d26b145 ip6_tnl_get_cap +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x659e0c5b ip6_tnl_rcv +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x6e5d0858 ip6_tnl_parse_tlv_enc_lim +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x7be7aeb5 ip6_tnl_encap_add_ops +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x995cdd82 ip6_tnl_get_iflink +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xb5ba81f8 ip6_tnl_get_link_net +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xc9fc966a ip6_tnl_xmit +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xdc200ec9 ip6_tnl_change_mtu +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xf793a137 ip6_tnl_encap_del_ops +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x14d1547a ip6t_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x27926340 ip6t_unregister_table_exit +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x5d735ce6 ip6t_do_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x8262670c ip6t_register_table +EXPORT_SYMBOL net/ipv6/tunnel6 0x361c972d xfrm6_tunnel_deregister +EXPORT_SYMBOL net/ipv6/tunnel6 0x80802e10 xfrm6_tunnel_register +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x02eeba66 xfrm6_tunnel_alloc_spi +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x26c7409c xfrm6_tunnel_spi_lookup +EXPORT_SYMBOL net/lapb/lapb 0x15ca039d lapb_setparms +EXPORT_SYMBOL net/lapb/lapb 0x5d81523c lapb_getparms +EXPORT_SYMBOL net/lapb/lapb 0x608e4827 lapb_data_request +EXPORT_SYMBOL net/lapb/lapb 0x8c3e5e27 lapb_data_received +EXPORT_SYMBOL net/lapb/lapb 0x94427dd1 lapb_unregister +EXPORT_SYMBOL net/lapb/lapb 0xa3509cce lapb_register +EXPORT_SYMBOL net/lapb/lapb 0xcec7260f lapb_connect_request +EXPORT_SYMBOL net/lapb/lapb 0xf5d0ada7 lapb_disconnect_request +EXPORT_SYMBOL net/llc/llc 0x0c67b9ea llc_sap_find +EXPORT_SYMBOL net/llc/llc 0x1010e5ed llc_mac_hdr_init EXPORT_SYMBOL net/llc/llc 0x38b92846 llc_remove_pack -EXPORT_SYMBOL net/llc/llc 0x3f7c0a08 llc_build_and_send_ui_pkt +EXPORT_SYMBOL net/llc/llc 0x4ba324ab llc_add_pack EXPORT_SYMBOL net/llc/llc 0x52d7b2fd llc_sap_list -EXPORT_SYMBOL net/llc/llc 0x82ddd956 llc_set_station_handler -EXPORT_SYMBOL net/llc/llc 0x99e0ef12 llc_sap_find -EXPORT_SYMBOL net/llc/llc 0xab779253 llc_sap_open -EXPORT_SYMBOL net/llc/llc 0xf807cd9e llc_add_pack -EXPORT_SYMBOL net/mac80211/mac80211 0x05370eb2 ieee80211_tx_status -EXPORT_SYMBOL net/mac80211/mac80211 0x0629983b ieee80211_stop_queues +EXPORT_SYMBOL net/llc/llc 0xa5a8fc87 llc_set_station_handler +EXPORT_SYMBOL net/llc/llc 0xb4d4ac11 llc_sap_close +EXPORT_SYMBOL net/llc/llc 0xcc16871e llc_build_and_send_ui_pkt +EXPORT_SYMBOL net/llc/llc 0xfb857d9a llc_sap_open +EXPORT_SYMBOL net/mac80211/mac80211 0x022b3b47 ieee80211_beacon_loss +EXPORT_SYMBOL net/mac80211/mac80211 0x0586d225 __ieee80211_get_assoc_led_name EXPORT_SYMBOL net/mac80211/mac80211 0x063f5308 ieee80211_get_tkip_p1k_iv -EXPORT_SYMBOL net/mac80211/mac80211 0x0673595c ieee80211_start_tx_ba_cb_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x06ee101c ieee80211_get_unsol_bcast_probe_resp_tmpl -EXPORT_SYMBOL net/mac80211/mac80211 0x0860a343 ieee80211_generic_frame_duration -EXPORT_SYMBOL net/mac80211/mac80211 0x094fb2f8 ieee80211_scan_completed -EXPORT_SYMBOL net/mac80211/mac80211 0x09c834b8 __ieee80211_get_radio_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x0a550727 ieee80211_stop_tx_ba_cb_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x1354f348 ieee80211_rx_ba_timer_expired -EXPORT_SYMBOL net/mac80211/mac80211 0x152994d0 ieee80211_report_wowlan_wakeup +EXPORT_SYMBOL net/mac80211/mac80211 0x07262cde ieee80211_manage_rx_ba_offl +EXPORT_SYMBOL net/mac80211/mac80211 0x09de4ef4 ieee80211_sta_ps_transition +EXPORT_SYMBOL net/mac80211/mac80211 0x120f335a ieee80211_scan_completed +EXPORT_SYMBOL net/mac80211/mac80211 0x12753392 ieee80211_connection_loss +EXPORT_SYMBOL net/mac80211/mac80211 0x16682a05 ieee80211_queue_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0x167b1455 __ieee80211_get_radio_led_name EXPORT_SYMBOL net/mac80211/mac80211 0x183dcd3b ieee80211_get_key_rx_seq EXPORT_SYMBOL net/mac80211/mac80211 0x19f37f0d ieee80211_update_p2p_noa EXPORT_SYMBOL net/mac80211/mac80211 0x1a66fc17 ieee80211_get_tkip_rx_p1k -EXPORT_SYMBOL net/mac80211/mac80211 0x1bd1aaf3 ieee80211_find_sta -EXPORT_SYMBOL net/mac80211/mac80211 0x1cc4ba91 ieee80211_rx_list -EXPORT_SYMBOL net/mac80211/mac80211 0x2630a141 ieee80211_enable_rssi_reports -EXPORT_SYMBOL net/mac80211/mac80211 0x2c1c6305 ieee80211_connection_loss -EXPORT_SYMBOL net/mac80211/mac80211 0x2da39e1d ieee80211_sta_register_airtime -EXPORT_SYMBOL net/mac80211/mac80211 0x31269997 ieee80211_restart_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x33013ef4 ieee80211_sched_scan_results -EXPORT_SYMBOL net/mac80211/mac80211 0x35d4b414 ieee80211_sta_uapsd_trigger -EXPORT_SYMBOL net/mac80211/mac80211 0x3723cfee ieee80211_start_tx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0x380a55bd __ieee80211_get_rx_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x383049a4 ieee80211_stop_rx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0x394ed3d2 ieee80211_rate_control_register -EXPORT_SYMBOL net/mac80211/mac80211 0x3b1f59ab __ieee80211_get_assoc_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x3cd3429f wiphy_to_ieee80211_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x3e1db959 ieee80211_tdls_oper_request -EXPORT_SYMBOL net/mac80211/mac80211 0x41f96c0d ieee80211_get_tx_rates -EXPORT_SYMBOL net/mac80211/mac80211 0x44ef43f0 ieee80211_sta_eosp -EXPORT_SYMBOL net/mac80211/mac80211 0x47167e2b ieee80211_sta_pspoll -EXPORT_SYMBOL net/mac80211/mac80211 0x4839b85f ieee80211_send_eosp_nullfunc -EXPORT_SYMBOL net/mac80211/mac80211 0x49ca4ff1 ieee80211_alloc_hw_nm -EXPORT_SYMBOL net/mac80211/mac80211 0x49d61928 ieee80211_radar_detected -EXPORT_SYMBOL net/mac80211/mac80211 0x4dfcf39b ieee80211_unreserve_tid -EXPORT_SYMBOL net/mac80211/mac80211 0x4e5e14a6 ieee80211_sta_block_awake -EXPORT_SYMBOL net/mac80211/mac80211 0x4ff18bd0 ieee80211_txq_may_transmit -EXPORT_SYMBOL net/mac80211/mac80211 0x52610f3f ieee80211_disconnect -EXPORT_SYMBOL net/mac80211/mac80211 0x56ee3a52 ieee80211_ctstoself_duration -EXPORT_SYMBOL net/mac80211/mac80211 0x57f1c081 ieee80211_probereq_get -EXPORT_SYMBOL net/mac80211/mac80211 0x59443ec3 ieee80211_tx_dequeue -EXPORT_SYMBOL net/mac80211/mac80211 0x61365b18 ieee80211_queue_work -EXPORT_SYMBOL net/mac80211/mac80211 0x6a88723a ieee80211_nan_func_terminated -EXPORT_SYMBOL net/mac80211/mac80211 0x6f0fb34e ieee80211_ap_probereq_get -EXPORT_SYMBOL net/mac80211/mac80211 0x750a9021 ieee80211_chswitch_done -EXPORT_SYMBOL net/mac80211/mac80211 0x76ab6ccc ieee80211_txq_schedule_start -EXPORT_SYMBOL net/mac80211/mac80211 0x79fb902b ieee80211_send_bar -EXPORT_SYMBOL net/mac80211/mac80211 0x7f926696 ieee80211_reserve_tid -EXPORT_SYMBOL net/mac80211/mac80211 0x85378b6a ieee80211_manage_rx_ba_offl -EXPORT_SYMBOL net/mac80211/mac80211 0x884b7e13 ieee80211_mark_rx_ba_filtered_frames -EXPORT_SYMBOL net/mac80211/mac80211 0x8c00d63f rate_control_set_rates -EXPORT_SYMBOL net/mac80211/mac80211 0x9044dceb ieee80211_csa_finish -EXPORT_SYMBOL net/mac80211/mac80211 0x95fad6fe ieee80211_tx_prepare_skb -EXPORT_SYMBOL net/mac80211/mac80211 0x96104b0c ieee80211_rts_get -EXPORT_SYMBOL net/mac80211/mac80211 0x96af5d38 ieee80211_tx_status_ext -EXPORT_SYMBOL net/mac80211/mac80211 0x984c4007 ieee80211_pspoll_get -EXPORT_SYMBOL net/mac80211/mac80211 0x986199c7 ieee80211_tx_status_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x1bc72392 ieee80211_schedule_txq +EXPORT_SYMBOL net/mac80211/mac80211 0x1dbf4ff2 ieee80211_pspoll_get +EXPORT_SYMBOL net/mac80211/mac80211 0x2125ee23 __ieee80211_get_rx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x222740ea ieee80211_txq_schedule_start +EXPORT_SYMBOL net/mac80211/mac80211 0x235c2efd ieee80211_ctstoself_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x256b1da5 __ieee80211_get_tx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x2cd08206 ieee80211_restart_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x32d9fcfe ieee80211_rx_ba_timer_expired +EXPORT_SYMBOL net/mac80211/mac80211 0x33b0c4a1 ieee80211_stop_rx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x35e20361 ieee80211_reserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0x37a04e35 ieee80211_rts_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x38b452df ieee80211_send_eosp_nullfunc +EXPORT_SYMBOL net/mac80211/mac80211 0x3bb4500d ieee80211_tx_status_ext +EXPORT_SYMBOL net/mac80211/mac80211 0x3ec76a5e ieee80211_tx_status_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x3f13ca7a ieee80211_txq_get_depth +EXPORT_SYMBOL net/mac80211/mac80211 0x4027e856 ieee80211_beacon_cntdwn_is_complete +EXPORT_SYMBOL net/mac80211/mac80211 0x463a985c ieee80211_tx_status_8023 +EXPORT_SYMBOL net/mac80211/mac80211 0x46a99c06 ieee80211_unregister_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x46ceddb2 ieee80211_ap_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0x4a62ca8a ieee80211_unreserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0x4ee482fc wiphy_to_ieee80211_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x5041c5d0 ieee80211_ctstoself_get +EXPORT_SYMBOL net/mac80211/mac80211 0x595d01a2 ieee80211_iter_keys_rcu +EXPORT_SYMBOL net/mac80211/mac80211 0x5af88f0e ieee80211_get_tx_rates +EXPORT_SYMBOL net/mac80211/mac80211 0x5b07d24b ieee80211_cqm_rssi_notify +EXPORT_SYMBOL net/mac80211/mac80211 0x5ea366e6 ieee80211_rx_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x5fa1b4d2 ieee80211_stop_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x631a8379 ieee80211_wake_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x6351bb02 ieee80211_generic_frame_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x635e5047 ieee80211_tx_prepare_skb +EXPORT_SYMBOL net/mac80211/mac80211 0x65d206f7 ieee80211_sta_set_buffered +EXPORT_SYMBOL net/mac80211/mac80211 0x6835c536 ieee80211_alloc_hw_nm +EXPORT_SYMBOL net/mac80211/mac80211 0x6a9ab10d ieee80211_nan_func_match +EXPORT_SYMBOL net/mac80211/mac80211 0x6b643438 ieee80211_txq_may_transmit +EXPORT_SYMBOL net/mac80211/mac80211 0x6c44762f ieee80211_start_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x6ca52f48 ieee80211_queue_delayed_work +EXPORT_SYMBOL net/mac80211/mac80211 0x6f9d8810 ieee80211_report_wowlan_wakeup +EXPORT_SYMBOL net/mac80211/mac80211 0x6fd2cce5 ieee80211_free_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x78cde30b ieee80211_report_low_ack +EXPORT_SYMBOL net/mac80211/mac80211 0x7a9482a5 ieee80211_tx_status +EXPORT_SYMBOL net/mac80211/mac80211 0x7e560013 ieee80211_sta_pspoll +EXPORT_SYMBOL net/mac80211/mac80211 0x84ad43f5 ieee80211_get_buffered_bc +EXPORT_SYMBOL net/mac80211/mac80211 0x892bc8e1 ieee80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/mac80211/mac80211 0x8bb656dd ieee80211_sta_register_airtime +EXPORT_SYMBOL net/mac80211/mac80211 0x901ff6b8 ieee80211_free_txskb +EXPORT_SYMBOL net/mac80211/mac80211 0x90b13d8d ieee80211_rate_control_register +EXPORT_SYMBOL net/mac80211/mac80211 0x96e3dc08 ieee80211_beacon_set_cntdwn +EXPORT_SYMBOL net/mac80211/mac80211 0x9861d5a9 ieee80211_radar_detected EXPORT_SYMBOL net/mac80211/mac80211 0x991a0ca0 ieee80211_parse_p2p_noa -EXPORT_SYMBOL net/mac80211/mac80211 0xa2865af5 ieee80211_nullfunc_get -EXPORT_SYMBOL net/mac80211/mac80211 0xa4331489 ieee80211_get_fils_discovery_tmpl -EXPORT_SYMBOL net/mac80211/mac80211 0xa74e4bad ieee80211_rx_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0xa779b0d8 ieee80211_sched_scan_stopped -EXPORT_SYMBOL net/mac80211/mac80211 0xa826e9be ieee80211_sta_ps_transition -EXPORT_SYMBOL net/mac80211/mac80211 0xaa855f93 ieee80211_wake_queue -EXPORT_SYMBOL net/mac80211/mac80211 0xad6c2d09 ieee80211_get_buffered_bc -EXPORT_SYMBOL net/mac80211/mac80211 0xb0bcf70d ieee80211_rts_duration -EXPORT_SYMBOL net/mac80211/mac80211 0xb0e7cbce ieee80211_nan_func_match -EXPORT_SYMBOL net/mac80211/mac80211 0xb4c79b4c ieee80211_beacon_cntdwn_is_complete -EXPORT_SYMBOL net/mac80211/mac80211 0xba052bd5 ieee80211_cqm_beacon_loss_notify -EXPORT_SYMBOL net/mac80211/mac80211 0xbe788471 ieee80211_stop_tx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0xc2ad805b ieee80211_txq_airtime_check -EXPORT_SYMBOL net/mac80211/mac80211 0xc99e0b75 ieee80211_disable_rssi_reports -EXPORT_SYMBOL net/mac80211/mac80211 0xcc052dfa ieee80211_tx_status_8023 -EXPORT_SYMBOL net/mac80211/mac80211 0xcd38e355 ieee80211_beacon_loss -EXPORT_SYMBOL net/mac80211/mac80211 0xcd54409f ieee80211_free_hw -EXPORT_SYMBOL net/mac80211/mac80211 0xceb0492d ieee80211_rate_control_unregister -EXPORT_SYMBOL net/mac80211/mac80211 0xcf6b3c5a ieee80211_ctstoself_get -EXPORT_SYMBOL net/mac80211/mac80211 0xcf98bb62 ieee80211_wake_queues -EXPORT_SYMBOL net/mac80211/mac80211 0xd2bb47e3 ieee80211_free_txskb -EXPORT_SYMBOL net/mac80211/mac80211 0xd67dc416 ieee80211_schedule_txq -EXPORT_SYMBOL net/mac80211/mac80211 0xd6a85601 ieee80211_next_txq -EXPORT_SYMBOL net/mac80211/mac80211 0xd7547fe9 ieee80211_iter_keys -EXPORT_SYMBOL net/mac80211/mac80211 0xd8d85b73 ieee80211_return_txq -EXPORT_SYMBOL net/mac80211/mac80211 0xd9f48d1c ieee80211_queue_stopped -EXPORT_SYMBOL net/mac80211/mac80211 0xda920d28 ieee80211_get_tkip_p2k -EXPORT_SYMBOL net/mac80211/mac80211 0xdb8f7074 ieee80211_tx_rate_update -EXPORT_SYMBOL net/mac80211/mac80211 0xdd8cba60 __ieee80211_create_tpt_led_trigger -EXPORT_SYMBOL net/mac80211/mac80211 0xdeef9985 ieee80211_iter_keys_rcu -EXPORT_SYMBOL net/mac80211/mac80211 0xdfe402ff ieee80211_beacon_update_cntdwn -EXPORT_SYMBOL net/mac80211/mac80211 0xe0a2d8b6 ieee80211_txq_get_depth -EXPORT_SYMBOL net/mac80211/mac80211 0xe324c38d __ieee80211_get_tx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x9e28bddd ieee80211_rx_list +EXPORT_SYMBOL net/mac80211/mac80211 0xa1abb964 ieee80211_rts_get +EXPORT_SYMBOL net/mac80211/mac80211 0xa5c9a61b ieee80211_sta_uapsd_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0xa760dfcb ieee80211_next_txq +EXPORT_SYMBOL net/mac80211/mac80211 0xb210fb45 ieee80211_tdls_oper_request +EXPORT_SYMBOL net/mac80211/mac80211 0xb3e3bf21 ieee80211_csa_finish +EXPORT_SYMBOL net/mac80211/mac80211 0xb502b748 ieee80211_enable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0xb662c49d ieee80211_txq_airtime_check +EXPORT_SYMBOL net/mac80211/mac80211 0xb7b7be20 ieee80211_stop_queue +EXPORT_SYMBOL net/mac80211/mac80211 0xb7da74c4 ieee80211_nan_func_terminated +EXPORT_SYMBOL net/mac80211/mac80211 0xbc2c6ba3 ieee80211_nullfunc_get +EXPORT_SYMBOL net/mac80211/mac80211 0xbccefd11 ieee80211_sta_block_awake +EXPORT_SYMBOL net/mac80211/mac80211 0xbd1b7d38 ieee80211_sched_scan_results +EXPORT_SYMBOL net/mac80211/mac80211 0xbfec4163 ieee80211_send_bar +EXPORT_SYMBOL net/mac80211/mac80211 0xc0b83bcf ieee80211_wake_queue +EXPORT_SYMBOL net/mac80211/mac80211 0xc11ba250 ieee80211_get_fils_discovery_tmpl +EXPORT_SYMBOL net/mac80211/mac80211 0xc7b9e6f7 ieee80211_chswitch_done +EXPORT_SYMBOL net/mac80211/mac80211 0xc971009c ieee80211_beacon_get_template +EXPORT_SYMBOL net/mac80211/mac80211 0xcc5b8f69 ieee80211_return_txq +EXPORT_SYMBOL net/mac80211/mac80211 0xd256c964 ieee80211_queue_work +EXPORT_SYMBOL net/mac80211/mac80211 0xd276d039 ieee80211_sta_eosp +EXPORT_SYMBOL net/mac80211/mac80211 0xd7d02de9 ieee80211_find_sta +EXPORT_SYMBOL net/mac80211/mac80211 0xd8f982ee ieee80211_stop_queues +EXPORT_SYMBOL net/mac80211/mac80211 0xda17a6c0 ieee80211_rate_control_unregister +EXPORT_SYMBOL net/mac80211/mac80211 0xda72e31a ieee80211_start_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0xdbba8282 ieee80211_disable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0xdcb73136 ieee80211_tx_dequeue +EXPORT_SYMBOL net/mac80211/mac80211 0xdcc56fc5 ieee80211_register_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xdcec5c3e ieee80211_get_tkip_p2k +EXPORT_SYMBOL net/mac80211/mac80211 0xdcef3e86 ieee80211_stop_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xdf8bb9d8 ieee80211_mark_rx_ba_filtered_frames +EXPORT_SYMBOL net/mac80211/mac80211 0xe420ff7c ieee80211_rx_napi +EXPORT_SYMBOL net/mac80211/mac80211 0xe4c45bbe ieee80211_tx_rate_update EXPORT_SYMBOL net/mac80211/mac80211 0xe5752af3 ieee80211_get_bssid -EXPORT_SYMBOL net/mac80211/mac80211 0xe886e6fa ieee80211_proberesp_get -EXPORT_SYMBOL net/mac80211/mac80211 0xe93ac9b6 ieee80211_beacon_set_cntdwn -EXPORT_SYMBOL net/mac80211/mac80211 0xec8f42f9 ieee80211_sta_set_buffered -EXPORT_SYMBOL net/mac80211/mac80211 0xeeb07f6d ieee80211_register_hw -EXPORT_SYMBOL net/mac80211/mac80211 0xef64824d ieee80211_rx_napi -EXPORT_SYMBOL net/mac80211/mac80211 0xf0624d51 ieee80211_unregister_hw -EXPORT_SYMBOL net/mac80211/mac80211 0xf297e815 ieee80211_cqm_rssi_notify -EXPORT_SYMBOL net/mac80211/mac80211 0xf3599ee8 ieee80211_queue_delayed_work -EXPORT_SYMBOL net/mac80211/mac80211 0xf3a50ad9 ieee80211_stop_queue -EXPORT_SYMBOL net/mac80211/mac80211 0xf6d2a208 ieee80211_report_low_ack -EXPORT_SYMBOL net/mac80211/mac80211 0xfcb433dc ieee80211_beacon_get_template -EXPORT_SYMBOL net/mac80211/mac80211 0xfcf91a95 ieee80211_beacon_get_tim -EXPORT_SYMBOL net/mac802154/mac802154 0x35b1de2c ieee802154_stop_queue -EXPORT_SYMBOL net/mac802154/mac802154 0x4718630f ieee802154_wake_queue -EXPORT_SYMBOL net/mac802154/mac802154 0x4d5ae395 ieee802154_rx_irqsafe -EXPORT_SYMBOL net/mac802154/mac802154 0x82181cd5 ieee802154_free_hw -EXPORT_SYMBOL net/mac802154/mac802154 0x881d7ea0 ieee802154_xmit_complete -EXPORT_SYMBOL net/mac802154/mac802154 0x8b1655bc ieee802154_register_hw -EXPORT_SYMBOL net/mac802154/mac802154 0xb0f3e5cb ieee802154_unregister_hw -EXPORT_SYMBOL net/mac802154/mac802154 0xf728cefe ieee802154_alloc_hw -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x07211dff ip_vs_conn_new -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x12cee78a ip_vs_proto_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x559871bd register_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x69cd1b80 ip_vs_new_conn_out -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x6a29ee1c ip_vs_conn_put -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x6d05b3a7 ip_vs_scheduler_err -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x6ecd5f52 unregister_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x75ee54b8 ip_vs_conn_in_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x8b5af9d1 unregister_ip_vs_app -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x8f9d69b7 ip_vs_proto_data_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x9eace2ce register_ip_vs_app_inc -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xcdce0c43 ip_vs_tcp_conn_listen +EXPORT_SYMBOL net/mac80211/mac80211 0xe63478d7 ieee80211_get_unsol_bcast_probe_resp_tmpl +EXPORT_SYMBOL net/mac80211/mac80211 0xed7b102d ieee80211_beacon_update_cntdwn +EXPORT_SYMBOL net/mac80211/mac80211 0xef1407c1 ieee80211_sched_scan_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0xf378cf9f ieee80211_beacon_get_tim +EXPORT_SYMBOL net/mac80211/mac80211 0xf463ad70 ieee80211_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0xf5fd253c __ieee80211_create_tpt_led_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0xf8a5e82d ieee80211_proberesp_get +EXPORT_SYMBOL net/mac80211/mac80211 0xfac31a3a ieee80211_iter_keys +EXPORT_SYMBOL net/mac80211/mac80211 0xfb58b112 rate_control_set_rates +EXPORT_SYMBOL net/mac80211/mac80211 0xff688c53 ieee80211_disconnect +EXPORT_SYMBOL net/mac802154/mac802154 0x25b0542c ieee802154_register_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x2f291714 ieee802154_wake_queue +EXPORT_SYMBOL net/mac802154/mac802154 0x46dcfb5e ieee802154_unregister_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x7e72d425 ieee802154_free_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x886a044b ieee802154_rx_irqsafe +EXPORT_SYMBOL net/mac802154/mac802154 0x8c84a7c5 ieee802154_xmit_complete +EXPORT_SYMBOL net/mac802154/mac802154 0x916c2813 ieee802154_alloc_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xb634901a ieee802154_stop_queue +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x0624f1c1 ip_vs_scheduler_err +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x0e5ef22f ip_vs_nfct_expect_related +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x28c733f7 register_ip_vs_app_inc +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x33651c50 ip_vs_conn_in_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x4bfef822 ip_vs_conn_out_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x4c3abd85 register_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x4f3dab3d unregister_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x770d19eb ip_vs_new_conn_out +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x7f27d17a ip_vs_conn_new +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x91acee6d ip_vs_proto_data_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x977280fb ip_vs_proto_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xa896a512 unregister_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xc06f1afa ip_vs_tcp_conn_listen EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xdfba1068 ip_vs_nfct_expect_related -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xe5691920 ip_vs_conn_out_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xe91be3e3 register_ip_vs_app -EXPORT_SYMBOL net/netfilter/nf_conntrack 0xd5ab9ac9 nf_ct_ext_add +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xdb49560f register_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xf6e61a6e ip_vs_conn_put +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x3b08a8f0 nf_ct_destroy +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x54e279eb nf_ct_ext_add EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0xf2a36612 pptp_msg_name -EXPORT_SYMBOL net/netfilter/nf_nat 0x2711e41a __nf_nat_mangle_tcp_packet -EXPORT_SYMBOL net/netfilter/nf_nat 0x60f17425 nf_nat_follow_master -EXPORT_SYMBOL net/netfilter/nf_nat 0x7f9760ac nf_nat_mangle_udp_packet -EXPORT_SYMBOL net/netfilter/nf_nat 0x893133c8 nf_nat_setup_info +EXPORT_SYMBOL net/netfilter/nf_nat 0x3cef5e1d nf_nat_follow_master +EXPORT_SYMBOL net/netfilter/nf_nat 0x469484e6 __nf_nat_mangle_tcp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0xa8a7a857 nf_nat_setup_info +EXPORT_SYMBOL net/netfilter/nf_nat 0xf0a28da0 nf_nat_mangle_udp_packet EXPORT_SYMBOL net/netfilter/nft_fib 0xb3c36947 nft_fib_policy EXPORT_SYMBOL net/netfilter/x_tables 0x0d7f5fcd xt_alloc_entry_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0x26e1d7ae xt_register_target -EXPORT_SYMBOL net/netfilter/x_tables 0x333039a9 xt_find_match +EXPORT_SYMBOL net/netfilter/x_tables 0x290329e6 xt_register_target +EXPORT_SYMBOL net/netfilter/x_tables 0x29baecb4 xt_unregister_targets EXPORT_SYMBOL net/netfilter/x_tables 0x3bf9d084 xt_check_table_hooks -EXPORT_SYMBOL net/netfilter/x_tables 0x4102e5d7 xt_register_matches +EXPORT_SYMBOL net/netfilter/x_tables 0x43982982 xt_unregister_match EXPORT_SYMBOL net/netfilter/x_tables 0x48012e28 xt_check_proc_name EXPORT_SYMBOL net/netfilter/x_tables 0x50873741 xt_compat_init_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0x5145360c xt_register_targets -EXPORT_SYMBOL net/netfilter/x_tables 0x6e3cbb0f xt_unregister_targets -EXPORT_SYMBOL net/netfilter/x_tables 0x8d893b71 xt_unregister_matches -EXPORT_SYMBOL net/netfilter/x_tables 0x8d9b04d9 xt_unregister_target +EXPORT_SYMBOL net/netfilter/x_tables 0x6836bc7b xt_register_matches +EXPORT_SYMBOL net/netfilter/x_tables 0x6c0ca944 xt_unregister_matches +EXPORT_SYMBOL net/netfilter/x_tables 0x905896c1 xt_find_match EXPORT_SYMBOL net/netfilter/x_tables 0x977fd4bf xt_alloc_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0x9fd8fb9c xt_register_targets EXPORT_SYMBOL net/netfilter/x_tables 0xa25fc115 xt_compat_check_entry_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0xb0e9b0fd xt_find_table +EXPORT_SYMBOL net/netfilter/x_tables 0xb0f94a8c xt_unregister_target +EXPORT_SYMBOL net/netfilter/x_tables 0xbac62dad xt_find_table +EXPORT_SYMBOL net/netfilter/x_tables 0xc8396290 xt_register_match EXPORT_SYMBOL net/netfilter/x_tables 0xcb3e91cc xt_counters_alloc -EXPORT_SYMBOL net/netfilter/x_tables 0xce4bb3b6 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 0xf158c599 xt_unregister_match EXPORT_SYMBOL net/netfilter/x_tables 0xfef779fa xt_find_jump_offset -EXPORT_SYMBOL net/nfc/hci/hci 0x2949b051 nfc_hci_unregister_device -EXPORT_SYMBOL net/nfc/hci/hci 0x32966f53 nfc_hci_disconnect_all_gates -EXPORT_SYMBOL net/nfc/hci/hci 0x3e6d306e nfc_hci_get_param -EXPORT_SYMBOL net/nfc/hci/hci 0x57b0b2e6 nfc_hci_get_clientdata -EXPORT_SYMBOL net/nfc/hci/hci 0x5e027a6e nfc_llc_start -EXPORT_SYMBOL net/nfc/hci/hci 0x663a0d9e nfc_hci_reset_pipes_per_host -EXPORT_SYMBOL net/nfc/hci/hci 0x6a166d40 nfc_hci_register_device -EXPORT_SYMBOL net/nfc/hci/hci 0x6b984b93 nfc_hci_driver_failure -EXPORT_SYMBOL net/nfc/hci/hci 0x6d98f05f nfc_hci_reset_pipes +EXPORT_SYMBOL net/nfc/hci/hci 0x00bd748f nfc_hci_send_cmd_async +EXPORT_SYMBOL net/nfc/hci/hci 0x07aae015 nfc_hci_allocate_device +EXPORT_SYMBOL net/nfc/hci/hci 0x08d0e1ca nfc_hci_send_event +EXPORT_SYMBOL net/nfc/hci/hci 0x0e0522b8 nfc_hci_send_cmd +EXPORT_SYMBOL net/nfc/hci/hci 0x1fa13ece nfc_llc_start +EXPORT_SYMBOL net/nfc/hci/hci 0x3c43dc75 nfc_hci_get_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0x400d8f30 nfc_llc_stop +EXPORT_SYMBOL net/nfc/hci/hci 0x40901234 nfc_hci_disconnect_all_gates +EXPORT_SYMBOL net/nfc/hci/hci 0x42a72b4a nfc_hci_reset_pipes_per_host +EXPORT_SYMBOL net/nfc/hci/hci 0x4513ef54 nfc_hci_target_discovered +EXPORT_SYMBOL net/nfc/hci/hci 0x46675dcc nfc_hci_set_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0x4c33d235 nfc_hci_register_device EXPORT_SYMBOL net/nfc/hci/hci 0x74fe3670 nfc_hci_result_to_errno -EXPORT_SYMBOL net/nfc/hci/hci 0x856b16e6 nfc_llc_stop -EXPORT_SYMBOL net/nfc/hci/hci 0x868b7f65 nfc_hci_allocate_device -EXPORT_SYMBOL net/nfc/hci/hci 0xbf5bdbbb nfc_hci_set_clientdata -EXPORT_SYMBOL net/nfc/hci/hci 0xc8ca7b16 nfc_hci_recv_frame -EXPORT_SYMBOL net/nfc/hci/hci 0xca186d3f nfc_hci_send_cmd -EXPORT_SYMBOL net/nfc/hci/hci 0xce686a77 nfc_hci_free_device -EXPORT_SYMBOL net/nfc/hci/hci 0xce8b7802 nfc_hci_target_discovered -EXPORT_SYMBOL net/nfc/hci/hci 0xd81ed75f nfc_hci_connect_gate -EXPORT_SYMBOL net/nfc/hci/hci 0xd9388211 nfc_hci_disconnect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0xaa51bcb4 nfc_hci_get_param +EXPORT_SYMBOL net/nfc/hci/hci 0xac53e3a1 nfc_hci_unregister_device +EXPORT_SYMBOL net/nfc/hci/hci 0xb59fb46d nfc_hci_connect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0xc6001e06 nfc_hci_reset_pipes +EXPORT_SYMBOL net/nfc/hci/hci 0xc6c7804e nfc_hci_free_device +EXPORT_SYMBOL net/nfc/hci/hci 0xca7ea4c1 nfc_hci_set_param +EXPORT_SYMBOL net/nfc/hci/hci 0xd8f1bf1f nfc_hci_disconnect_gate EXPORT_SYMBOL net/nfc/hci/hci 0xdd231c55 nfc_hci_sak_to_protocol -EXPORT_SYMBOL net/nfc/hci/hci 0xe1db0628 nfc_hci_send_event -EXPORT_SYMBOL net/nfc/hci/hci 0xec9a979c nfc_hci_send_cmd_async -EXPORT_SYMBOL net/nfc/hci/hci 0xf3c2c40e nfc_hci_set_param -EXPORT_SYMBOL net/nfc/nci/nci 0x029f25ad nci_conn_max_data_pkt_payload_size -EXPORT_SYMBOL net/nfc/nci/nci 0x0e542156 nci_set_config -EXPORT_SYMBOL net/nfc/nci/nci 0x20532b37 nci_allocate_device -EXPORT_SYMBOL net/nfc/nci/nci 0x219a0d0c nci_hci_send_event -EXPORT_SYMBOL net/nfc/nci/nci 0x22958cdd nci_hci_connect_gate -EXPORT_SYMBOL net/nfc/nci/nci 0x49b525d3 nci_send_data -EXPORT_SYMBOL net/nfc/nci/nci 0x49c84ac9 nci_unregister_device -EXPORT_SYMBOL net/nfc/nci/nci 0x52e91e8e nci_free_device -EXPORT_SYMBOL net/nfc/nci/nci 0x5610ca76 nci_prop_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0x57add93e nci_core_conn_close -EXPORT_SYMBOL net/nfc/nci/nci 0x58c7b458 nci_hci_send_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0x58e5fa5f nci_core_reset -EXPORT_SYMBOL net/nfc/nci/nci 0x6b81bdc3 nci_req_complete -EXPORT_SYMBOL net/nfc/nci/nci 0x6dd6da3b nci_nfcee_mode_set -EXPORT_SYMBOL net/nfc/nci/nci 0x745b0ee5 nci_core_init -EXPORT_SYMBOL net/nfc/nci/nci 0x775316a5 nci_hci_get_param -EXPORT_SYMBOL net/nfc/nci/nci 0x7fe1008e nci_hci_clear_all_pipes -EXPORT_SYMBOL net/nfc/nci/nci 0x895e351f nci_core_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0x929e3be1 nci_recv_frame -EXPORT_SYMBOL net/nfc/nci/nci 0xa8c842f9 nci_nfcee_discover -EXPORT_SYMBOL net/nfc/nci/nci 0xb0eccff1 nci_send_frame -EXPORT_SYMBOL net/nfc/nci/nci 0xb164e0c1 nci_send_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0xb2ec01a0 nci_register_device +EXPORT_SYMBOL net/nfc/hci/hci 0xf76d697e nfc_hci_recv_frame +EXPORT_SYMBOL net/nfc/hci/hci 0xfbf9a358 nfc_hci_driver_failure +EXPORT_SYMBOL net/nfc/nci/nci 0x013ee6b3 nci_hci_open_pipe +EXPORT_SYMBOL net/nfc/nci/nci 0x0c053c8f nci_unregister_device +EXPORT_SYMBOL net/nfc/nci/nci 0x0e2f2c8f nci_hci_set_param +EXPORT_SYMBOL net/nfc/nci/nci 0x1107960b nci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x1150b14e nci_core_reset +EXPORT_SYMBOL net/nfc/nci/nci 0x123c395e nci_hci_connect_gate +EXPORT_SYMBOL net/nfc/nci/nci 0x1640a134 nci_req_complete +EXPORT_SYMBOL net/nfc/nci/nci 0x21ad351f nci_free_device +EXPORT_SYMBOL net/nfc/nci/nci 0x32e61899 nci_prop_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x382ddea2 nci_recv_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x38a1d97d nci_hci_clear_all_pipes +EXPORT_SYMBOL net/nfc/nci/nci 0x38fec8f9 nci_send_data +EXPORT_SYMBOL net/nfc/nci/nci 0x5c074712 nci_hci_dev_session_init +EXPORT_SYMBOL net/nfc/nci/nci 0x665d8fda nci_core_conn_create +EXPORT_SYMBOL net/nfc/nci/nci 0x71b0e262 nci_conn_max_data_pkt_payload_size +EXPORT_SYMBOL net/nfc/nci/nci 0x75edec10 nci_core_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x81d8ad9f nci_get_conn_info_by_dest_type_params +EXPORT_SYMBOL net/nfc/nci/nci 0x8dd5c0be nci_hci_get_param +EXPORT_SYMBOL net/nfc/nci/nci 0x916b88a9 nci_hci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x9a7ce274 nci_send_frame +EXPORT_SYMBOL net/nfc/nci/nci 0xa9a404e7 nci_allocate_device EXPORT_SYMBOL net/nfc/nci/nci 0xba490602 nci_to_errno -EXPORT_SYMBOL net/nfc/nci/nci 0xc1c1ff97 nci_hci_open_pipe -EXPORT_SYMBOL net/nfc/nci/nci 0xe1691213 nci_hci_dev_session_init -EXPORT_SYMBOL net/nfc/nci/nci 0xea28947a nci_hci_set_param -EXPORT_SYMBOL net/nfc/nci/nci 0xeaf7e765 nci_nfcc_loopback -EXPORT_SYMBOL net/nfc/nci/nci 0xee116aa4 nci_get_conn_info_by_dest_type_params -EXPORT_SYMBOL net/nfc/nci/nci 0xf5c768e4 nci_core_conn_create -EXPORT_SYMBOL net/nfc/nfc 0x0a3df779 nfc_get_local_general_bytes -EXPORT_SYMBOL net/nfc/nfc 0x1376cc54 nfc_tm_data_received -EXPORT_SYMBOL net/nfc/nfc 0x1c61a50a nfc_target_lost -EXPORT_SYMBOL net/nfc/nfc 0x27b2cac4 nfc_se_transaction -EXPORT_SYMBOL net/nfc/nfc 0x283d93d8 nfc_proto_register -EXPORT_SYMBOL net/nfc/nfc 0x42aa3ad1 nfc_tm_deactivated -EXPORT_SYMBOL net/nfc/nfc 0x4ae1ddcb __nfc_alloc_vendor_cmd_reply_skb -EXPORT_SYMBOL net/nfc/nfc 0x5bbe97ff nfc_tm_activated -EXPORT_SYMBOL net/nfc/nfc 0x64b86c47 nfc_se_connectivity -EXPORT_SYMBOL net/nfc/nfc 0x754a6999 nfc_vendor_cmd_reply -EXPORT_SYMBOL net/nfc/nfc 0x7ccba8ae nfc_allocate_device -EXPORT_SYMBOL net/nfc/nfc 0x865b1369 nfc_register_device -EXPORT_SYMBOL net/nfc/nfc 0x90a1f32d nfc_driver_failure -EXPORT_SYMBOL net/nfc/nfc 0xa57c38bd nfc_fw_download_done -EXPORT_SYMBOL net/nfc/nfc 0xa800835d nfc_targets_found -EXPORT_SYMBOL net/nfc/nfc 0xb22e2b2d nfc_add_se -EXPORT_SYMBOL net/nfc/nfc 0xbc2edb78 nfc_class -EXPORT_SYMBOL net/nfc/nfc 0xcf1bbc7e nfc_set_remote_general_bytes -EXPORT_SYMBOL net/nfc/nfc 0xd398a550 nfc_unregister_device -EXPORT_SYMBOL net/nfc/nfc 0xd45bd4b4 nfc_dep_link_is_up -EXPORT_SYMBOL net/nfc/nfc 0xd461b58d nfc_find_se -EXPORT_SYMBOL net/nfc/nfc 0xd6d08425 nfc_send_to_raw_sock -EXPORT_SYMBOL net/nfc/nfc 0xd83fa5d2 nfc_proto_unregister -EXPORT_SYMBOL net/nfc/nfc 0xf68ffe62 nfc_alloc_recv_skb -EXPORT_SYMBOL net/nfc/nfc 0xfc9b9b12 nfc_remove_se -EXPORT_SYMBOL net/nfc/nfc_digital 0x1bec773d nfc_digital_free_device -EXPORT_SYMBOL net/nfc/nfc_digital 0x365ab1d7 nfc_digital_allocate_device -EXPORT_SYMBOL net/nfc/nfc_digital 0xb2aa8fdf nfc_digital_unregister_device -EXPORT_SYMBOL net/nfc/nfc_digital 0xe84b6536 nfc_digital_register_device -EXPORT_SYMBOL net/phonet/phonet 0x038d57de pn_skb_send -EXPORT_SYMBOL net/phonet/phonet 0x196f454d phonet_proto_register -EXPORT_SYMBOL net/phonet/phonet 0x240338c9 phonet_header_ops -EXPORT_SYMBOL net/phonet/phonet 0x3923e067 phonet_stream_ops -EXPORT_SYMBOL net/phonet/phonet 0x771bf429 pn_sock_unhash -EXPORT_SYMBOL net/phonet/phonet 0x854c4f9a pn_sock_hash -EXPORT_SYMBOL net/phonet/phonet 0x94c9c03c phonet_proto_unregister -EXPORT_SYMBOL net/phonet/phonet 0xb32f0444 pn_sock_get_port -EXPORT_SYMBOL net/rxrpc/rxrpc 0x18f7004b rxrpc_kernel_charge_accept -EXPORT_SYMBOL net/rxrpc/rxrpc 0x1fccb6cb rxrpc_kernel_get_peer +EXPORT_SYMBOL net/nfc/nci/nci 0xbeffdc39 nci_nfcee_discover +EXPORT_SYMBOL net/nfc/nci/nci 0xbf2caeb4 nci_nfcee_mode_set +EXPORT_SYMBOL net/nfc/nci/nci 0xc9f8b321 nci_set_config +EXPORT_SYMBOL net/nfc/nci/nci 0xd5a7925d nci_register_device +EXPORT_SYMBOL net/nfc/nci/nci 0xe0133057 nci_hci_send_event +EXPORT_SYMBOL net/nfc/nci/nci 0xe6af0de1 nci_core_conn_close +EXPORT_SYMBOL net/nfc/nci/nci 0xf7623415 nci_core_init +EXPORT_SYMBOL net/nfc/nci/nci 0xff861df0 nci_nfcc_loopback +EXPORT_SYMBOL net/nfc/nfc 0x074d03b4 nfc_tm_data_received +EXPORT_SYMBOL net/nfc/nfc 0x0f912438 nfc_unregister_device +EXPORT_SYMBOL net/nfc/nfc 0x10f2094c nfc_proto_unregister +EXPORT_SYMBOL net/nfc/nfc 0x1e32ad6a nfc_driver_failure +EXPORT_SYMBOL net/nfc/nfc 0x2be2674e nfc_send_to_raw_sock +EXPORT_SYMBOL net/nfc/nfc 0x2dee53af nfc_add_se +EXPORT_SYMBOL net/nfc/nfc 0x37c4a298 nfc_get_local_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0x3d45f278 nfc_tm_deactivated +EXPORT_SYMBOL net/nfc/nfc 0x42ec7345 nfc_targets_found +EXPORT_SYMBOL net/nfc/nfc 0x50f3abaf nfc_register_device +EXPORT_SYMBOL net/nfc/nfc 0x57ae5557 nfc_dep_link_is_up +EXPORT_SYMBOL net/nfc/nfc 0x59a21e72 nfc_find_se +EXPORT_SYMBOL net/nfc/nfc 0x5b9a547f nfc_proto_register +EXPORT_SYMBOL net/nfc/nfc 0x63eb9fac nfc_tm_activated +EXPORT_SYMBOL net/nfc/nfc 0x72515541 nfc_fw_download_done +EXPORT_SYMBOL net/nfc/nfc 0x753d3308 nfc_se_connectivity +EXPORT_SYMBOL net/nfc/nfc 0xc6a3fc9b nfc_se_transaction +EXPORT_SYMBOL net/nfc/nfc 0xcbc0c8a6 nfc_set_remote_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0xd045f642 nfc_target_lost +EXPORT_SYMBOL net/nfc/nfc 0xd348113d nfc_vendor_cmd_reply +EXPORT_SYMBOL net/nfc/nfc 0xdbc17809 nfc_allocate_device +EXPORT_SYMBOL net/nfc/nfc 0xe0b266bc __nfc_alloc_vendor_cmd_reply_skb +EXPORT_SYMBOL net/nfc/nfc 0xe6abe5fe nfc_remove_se +EXPORT_SYMBOL net/nfc/nfc 0xf693a71d nfc_class +EXPORT_SYMBOL net/nfc/nfc 0xf99cac28 nfc_alloc_recv_skb +EXPORT_SYMBOL net/nfc/nfc_digital 0x607152ee nfc_digital_free_device +EXPORT_SYMBOL net/nfc/nfc_digital 0xa482de8c nfc_digital_unregister_device +EXPORT_SYMBOL net/nfc/nfc_digital 0xdda2d997 nfc_digital_register_device +EXPORT_SYMBOL net/nfc/nfc_digital 0xec52b0c4 nfc_digital_allocate_device +EXPORT_SYMBOL net/phonet/phonet 0x05222860 pn_sock_get_port +EXPORT_SYMBOL net/phonet/phonet 0x0709a9fd phonet_proto_unregister +EXPORT_SYMBOL net/phonet/phonet 0x2d1a74b2 phonet_proto_register +EXPORT_SYMBOL net/phonet/phonet 0x44c13cbd pn_skb_send +EXPORT_SYMBOL net/phonet/phonet 0x560f6b59 phonet_header_ops +EXPORT_SYMBOL net/phonet/phonet 0x7093f370 pn_sock_hash +EXPORT_SYMBOL net/phonet/phonet 0x8bdf2d24 phonet_stream_ops +EXPORT_SYMBOL net/phonet/phonet 0xc203832f pn_sock_unhash +EXPORT_SYMBOL net/rxrpc/rxrpc 0x01115cfb rxrpc_kernel_recv_data +EXPORT_SYMBOL net/rxrpc/rxrpc 0x18db5d4a rxrpc_kernel_begin_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0x2b335435 rxrpc_kernel_abort_call EXPORT_SYMBOL net/rxrpc/rxrpc 0x31bf3ca3 rxrpc_debug_id -EXPORT_SYMBOL net/rxrpc/rxrpc 0x45132da1 rxrpc_get_null_key -EXPORT_SYMBOL net/rxrpc/rxrpc 0x57b2c37c rxrpc_kernel_new_call_notification -EXPORT_SYMBOL net/rxrpc/rxrpc 0x658d3b0a rxrpc_kernel_abort_call -EXPORT_SYMBOL net/rxrpc/rxrpc 0x6dff181c rxrpc_kernel_set_max_life -EXPORT_SYMBOL net/rxrpc/rxrpc 0x6f4cca82 rxrpc_kernel_begin_call -EXPORT_SYMBOL net/rxrpc/rxrpc 0x7ea5c2e3 rxrpc_get_server_data_key -EXPORT_SYMBOL net/rxrpc/rxrpc 0x842e22f5 rxrpc_kernel_recv_data -EXPORT_SYMBOL net/rxrpc/rxrpc 0x934016d2 key_type_rxrpc -EXPORT_SYMBOL net/rxrpc/rxrpc 0xa048135e rxrpc_kernel_end_call -EXPORT_SYMBOL net/rxrpc/rxrpc 0xafe61193 rxrpc_kernel_send_data -EXPORT_SYMBOL net/rxrpc/rxrpc 0xb43975e0 rxrpc_kernel_get_reply_time -EXPORT_SYMBOL net/rxrpc/rxrpc 0xc959362d rxrpc_sock_set_min_security_level -EXPORT_SYMBOL net/rxrpc/rxrpc 0xe2038a49 rxrpc_kernel_set_tx_length -EXPORT_SYMBOL net/rxrpc/rxrpc 0xf1116319 rxrpc_kernel_check_life -EXPORT_SYMBOL net/rxrpc/rxrpc 0xfb47a902 rxrpc_kernel_get_srtt -EXPORT_SYMBOL net/rxrpc/rxrpc 0xfc29a87a rxrpc_kernel_get_epoch -EXPORT_SYMBOL net/sctp/sctp 0xe3d8c064 sctp_do_peeloff -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x1c9704fd gss_pseudoflavor_to_service -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x34b85d37 gss_mech_put -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xa807ebb2 gss_mech_get -EXPORT_SYMBOL net/sunrpc/sunrpc 0x5f5f71fa xdr_restrict_buflen -EXPORT_SYMBOL net/sunrpc/sunrpc 0x981519f7 get_srcport -EXPORT_SYMBOL net/sunrpc/sunrpc 0xe53ac11e xdr_truncate_encode -EXPORT_SYMBOL net/sunrpc/sunrpc 0xe63ea9a6 svc_pool_stats_open -EXPORT_SYMBOL net/tipc/tipc 0x0d5fda86 tipc_sk_fill_sock_diag -EXPORT_SYMBOL net/tipc/tipc 0x3de0a14f tipc_nl_sk_walk -EXPORT_SYMBOL net/tipc/tipc 0x5a831a5f tipc_dump_start -EXPORT_SYMBOL net/tipc/tipc 0xaf12a449 tipc_dump_done -EXPORT_SYMBOL net/tls/tls 0x57504d0f tls_get_record -EXPORT_SYMBOL net/wireless/cfg80211 0x00e3d779 cfg80211_register_netdevice -EXPORT_SYMBOL net/wireless/cfg80211 0x0261cc76 cfg80211_get_drvinfo -EXPORT_SYMBOL net/wireless/cfg80211 0x0947285a cfg80211_sched_scan_stopped_locked -EXPORT_SYMBOL net/wireless/cfg80211 0x09ac5f02 ieee80211_get_num_supported_channels +EXPORT_SYMBOL net/rxrpc/rxrpc 0x3c0d9260 key_type_rxrpc +EXPORT_SYMBOL net/rxrpc/rxrpc 0x3d1cb2fa rxrpc_kernel_set_max_life +EXPORT_SYMBOL net/rxrpc/rxrpc 0x4e786c60 rxrpc_kernel_check_life +EXPORT_SYMBOL net/rxrpc/rxrpc 0x56eb2d1c rxrpc_kernel_get_peer +EXPORT_SYMBOL net/rxrpc/rxrpc 0x6b8be57e rxrpc_get_server_data_key +EXPORT_SYMBOL net/rxrpc/rxrpc 0x73defd4e rxrpc_kernel_send_data +EXPORT_SYMBOL net/rxrpc/rxrpc 0x79e34c7a rxrpc_kernel_set_tx_length +EXPORT_SYMBOL net/rxrpc/rxrpc 0x7e67162b rxrpc_kernel_get_reply_time +EXPORT_SYMBOL net/rxrpc/rxrpc 0x7f94174a rxrpc_kernel_get_epoch +EXPORT_SYMBOL net/rxrpc/rxrpc 0x86004ef6 rxrpc_kernel_get_srtt +EXPORT_SYMBOL net/rxrpc/rxrpc 0x94c37872 rxrpc_get_null_key +EXPORT_SYMBOL net/rxrpc/rxrpc 0xd37971f0 rxrpc_sock_set_min_security_level +EXPORT_SYMBOL net/rxrpc/rxrpc 0xdce93544 rxrpc_kernel_new_call_notification +EXPORT_SYMBOL net/rxrpc/rxrpc 0xe7bd6ba1 rxrpc_kernel_end_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0xe9dd6eeb rxrpc_kernel_charge_accept +EXPORT_SYMBOL net/sctp/sctp 0x28adca47 sctp_do_peeloff +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x51524b91 gss_mech_get +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x58b6c64a gss_pseudoflavor_to_service +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xda1b3770 gss_mech_put +EXPORT_SYMBOL net/sunrpc/sunrpc 0x147cda1c xdr_truncate_encode +EXPORT_SYMBOL net/sunrpc/sunrpc 0x3df1c4ac svc_pool_stats_open +EXPORT_SYMBOL net/sunrpc/sunrpc 0x823ee97b xdr_restrict_buflen +EXPORT_SYMBOL net/sunrpc/sunrpc 0xaded0fec get_srcport +EXPORT_SYMBOL net/tipc/tipc 0x381d5d40 tipc_nl_sk_walk +EXPORT_SYMBOL net/tipc/tipc 0x5a6dd962 tipc_sk_fill_sock_diag +EXPORT_SYMBOL net/tipc/tipc 0xb7fb8336 tipc_dump_done +EXPORT_SYMBOL net/tipc/tipc 0xf025d2e1 tipc_dump_start +EXPORT_SYMBOL net/tls/tls 0x46c6cced tls_get_record +EXPORT_SYMBOL net/wireless/cfg80211 0x03637d60 cfg80211_cac_event +EXPORT_SYMBOL net/wireless/cfg80211 0x083a71ec cfg80211_del_sta_sinfo +EXPORT_SYMBOL net/wireless/cfg80211 0x0cdf5b9a cfg80211_ch_switch_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x0e5a7dbd cfg80211_get_drvinfo +EXPORT_SYMBOL net/wireless/cfg80211 0x0fc15643 cfg80211_send_layer2_update EXPORT_SYMBOL net/wireless/cfg80211 0x117aca91 cfg80211_merge_profile -EXPORT_SYMBOL net/wireless/cfg80211 0x13b92deb freq_reg_info -EXPORT_SYMBOL net/wireless/cfg80211 0x14f50b11 cfg80211_check_station_change EXPORT_SYMBOL net/wireless/cfg80211 0x15a37cf3 cfg80211_calculate_bitrate -EXPORT_SYMBOL net/wireless/cfg80211 0x1718ac3f cfg80211_probe_status +EXPORT_SYMBOL net/wireless/cfg80211 0x164e29ce cfg80211_rx_control_port +EXPORT_SYMBOL net/wireless/cfg80211 0x185a8202 cfg80211_rx_spurious_frame EXPORT_SYMBOL net/wireless/cfg80211 0x1879fcbd bridge_tunnel_header -EXPORT_SYMBOL net/wireless/cfg80211 0x1882001f cfg80211_reg_can_beacon -EXPORT_SYMBOL net/wireless/cfg80211 0x18f5a93f cfg80211_michael_mic_failure -EXPORT_SYMBOL net/wireless/cfg80211 0x19c0968e cfg80211_unregister_wdev -EXPORT_SYMBOL net/wireless/cfg80211 0x1c7e535a __cfg80211_send_event_skb EXPORT_SYMBOL net/wireless/cfg80211 0x1ce2497f reg_query_regdb_wmm -EXPORT_SYMBOL net/wireless/cfg80211 0x1d82dec5 cfg80211_pmksa_candidate_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x216481e7 wiphy_rfkill_start_polling +EXPORT_SYMBOL net/wireless/cfg80211 0x205930e8 cfg80211_check_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0x212a226e cfg80211_tx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x21952322 cfg80211_sta_opmode_change_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x21fbaa10 cfg80211_cqm_txe_notify EXPORT_SYMBOL net/wireless/cfg80211 0x2310adee ieee80211_bss_get_elem -EXPORT_SYMBOL net/wireless/cfg80211 0x237fe05e cfg80211_inform_bss_frame_data -EXPORT_SYMBOL net/wireless/cfg80211 0x24840473 ieee80211_get_hdrlen_from_skb -EXPORT_SYMBOL net/wireless/cfg80211 0x25db0b16 cfg80211_rx_control_port -EXPORT_SYMBOL net/wireless/cfg80211 0x26ef48e0 cfg80211_abandon_assoc +EXPORT_SYMBOL net/wireless/cfg80211 0x2435b11f ieee80211_data_to_8023_exthdr +EXPORT_SYMBOL net/wireless/cfg80211 0x26ae2abc cfg80211_bss_flush +EXPORT_SYMBOL net/wireless/cfg80211 0x26b3f7a1 cfg80211_gtk_rekey_notify EXPORT_SYMBOL net/wireless/cfg80211 0x275269b3 ieee80211_ie_split_ric +EXPORT_SYMBOL net/wireless/cfg80211 0x2797cd70 cfg80211_ref_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x27b71338 ieee80211_get_hdrlen_from_skb EXPORT_SYMBOL net/wireless/cfg80211 0x27efff25 ieee80211_s1g_channel_width +EXPORT_SYMBOL net/wireless/cfg80211 0x28d0326b cfg80211_unregister_wdev EXPORT_SYMBOL net/wireless/cfg80211 0x2a5d816f cfg80211_chandef_valid -EXPORT_SYMBOL net/wireless/cfg80211 0x332ba27e cfg80211_ft_event -EXPORT_SYMBOL net/wireless/cfg80211 0x3341e071 cfg80211_crit_proto_stopped -EXPORT_SYMBOL net/wireless/cfg80211 0x343bad8a cfg80211_put_bss -EXPORT_SYMBOL net/wireless/cfg80211 0x35e07183 ieee80211_get_channel_khz -EXPORT_SYMBOL net/wireless/cfg80211 0x36a74cc7 cfg80211_chandef_dfs_required -EXPORT_SYMBOL net/wireless/cfg80211 0x37e716f5 wiphy_register -EXPORT_SYMBOL net/wireless/cfg80211 0x3b600b2c cfg80211_ch_switch_started_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x3bf36dcf cfg80211_reg_can_beacon_relax +EXPORT_SYMBOL net/wireless/cfg80211 0x2cdd954f cfg80211_disconnected +EXPORT_SYMBOL net/wireless/cfg80211 0x2e189dfb cfg80211_check_station_change +EXPORT_SYMBOL net/wireless/cfg80211 0x2e4e6ddd cfg80211_abandon_assoc +EXPORT_SYMBOL net/wireless/cfg80211 0x319f99c3 cfg80211_new_sta +EXPORT_SYMBOL net/wireless/cfg80211 0x32972e44 cfg80211_rx_unprot_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x32d405e2 ieee80211_get_num_supported_channels +EXPORT_SYMBOL net/wireless/cfg80211 0x346b386d cfg80211_auth_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0x38eabd93 ieee80211_get_channel_khz +EXPORT_SYMBOL net/wireless/cfg80211 0x3cad3744 cfg80211_bss_iter EXPORT_SYMBOL net/wireless/cfg80211 0x3d8e5894 cfg80211_chandef_compatible -EXPORT_SYMBOL net/wireless/cfg80211 0x409bac5c cfg80211_new_sta -EXPORT_SYMBOL net/wireless/cfg80211 0x435e768f cfg80211_scan_done +EXPORT_SYMBOL net/wireless/cfg80211 0x3e9cd81c cfg80211_michael_mic_failure +EXPORT_SYMBOL net/wireless/cfg80211 0x439ceaf9 cfg80211_connect_done EXPORT_SYMBOL net/wireless/cfg80211 0x43afadee ieee80211_radiotap_iterator_init -EXPORT_SYMBOL net/wireless/cfg80211 0x46d210f8 cfg80211_bss_flush -EXPORT_SYMBOL net/wireless/cfg80211 0x4c4d717b cfg80211_ch_switch_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x513f0afd cfg80211_iter_combinations -EXPORT_SYMBOL net/wireless/cfg80211 0x542506c7 cfg80211_report_obss_beacon_khz -EXPORT_SYMBOL net/wireless/cfg80211 0x54653111 cfg80211_cac_event -EXPORT_SYMBOL net/wireless/cfg80211 0x54c43c0e __cfg80211_alloc_reply_skb -EXPORT_SYMBOL net/wireless/cfg80211 0x5dafdba1 cfg80211_tx_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0x6033a73d cfg80211_ref_bss -EXPORT_SYMBOL net/wireless/cfg80211 0x6039e01e cfg80211_bss_color_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x6222a5b1 cfg80211_control_port_tx_status -EXPORT_SYMBOL net/wireless/cfg80211 0x64706619 cfg80211_tdls_oper_request +EXPORT_SYMBOL net/wireless/cfg80211 0x46424b51 cfg80211_classify8021d +EXPORT_SYMBOL net/wireless/cfg80211 0x4e2f4e47 wiphy_free +EXPORT_SYMBOL net/wireless/cfg80211 0x50353511 wiphy_unregister +EXPORT_SYMBOL net/wireless/cfg80211 0x536eabba cfg80211_rx_assoc_resp +EXPORT_SYMBOL net/wireless/cfg80211 0x564f365c cfg80211_rx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x57be175d cfg80211_tdls_oper_request +EXPORT_SYMBOL net/wireless/cfg80211 0x5813364a cfg80211_nan_match +EXPORT_SYMBOL net/wireless/cfg80211 0x581a0f67 cfg80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x5e2620b0 cfg80211_report_obss_beacon_khz +EXPORT_SYMBOL net/wireless/cfg80211 0x62adcc0d cfg80211_any_usable_channels +EXPORT_SYMBOL net/wireless/cfg80211 0x6448de73 cfg80211_bss_color_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x64a9b3d5 cfg80211_mgmt_tx_status EXPORT_SYMBOL net/wireless/cfg80211 0x652aeedf ieee80211_mandatory_rates -EXPORT_SYMBOL net/wireless/cfg80211 0x66169199 cfg80211_nan_func_terminated -EXPORT_SYMBOL net/wireless/cfg80211 0x686cb8f5 cfg80211_rx_assoc_resp -EXPORT_SYMBOL net/wireless/cfg80211 0x69a20f3f cfg80211_rx_spurious_frame EXPORT_SYMBOL net/wireless/cfg80211 0x69b18f43 rfc1042_header -EXPORT_SYMBOL net/wireless/cfg80211 0x6aac141d cfg80211_update_owe_info_event +EXPORT_SYMBOL net/wireless/cfg80211 0x6a977a28 cfg80211_sched_scan_stopped EXPORT_SYMBOL net/wireless/cfg80211 0x6bedf402 ieee80211_freq_khz_to_channel -EXPORT_SYMBOL net/wireless/cfg80211 0x703cffb3 regulatory_set_wiphy_regd -EXPORT_SYMBOL net/wireless/cfg80211 0x73e91612 cfg80211_any_usable_channels -EXPORT_SYMBOL net/wireless/cfg80211 0x76b3e0fb cfg80211_report_wowlan_wakeup -EXPORT_SYMBOL net/wireless/cfg80211 0x7876580d __cfg80211_alloc_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x6d0fba71 wiphy_register +EXPORT_SYMBOL net/wireless/cfg80211 0x6e95918a cfg80211_get_station +EXPORT_SYMBOL net/wireless/cfg80211 0x70ffaae4 cfg80211_port_authorized +EXPORT_SYMBOL net/wireless/cfg80211 0x7242c0b9 cfg80211_inform_bss_frame_data +EXPORT_SYMBOL net/wireless/cfg80211 0x76c2fe69 regulatory_hint +EXPORT_SYMBOL net/wireless/cfg80211 0x7831e532 cfg80211_probe_status 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 0x81874735 ieee80211_get_response_rate -EXPORT_SYMBOL net/wireless/cfg80211 0x84fedea2 cfg80211_bss_iter -EXPORT_SYMBOL net/wireless/cfg80211 0x879ed86a cfg80211_classify8021d -EXPORT_SYMBOL net/wireless/cfg80211 0x886b8ac9 ieee80211_amsdu_to_8023s -EXPORT_SYMBOL net/wireless/cfg80211 0x8e399bdd cfg80211_roamed -EXPORT_SYMBOL net/wireless/cfg80211 0x8f33ecc9 wiphy_rfkill_set_hw_state_reason +EXPORT_SYMBOL net/wireless/cfg80211 0x8735aadb cfg80211_chandef_dfs_required +EXPORT_SYMBOL net/wireless/cfg80211 0x8a3054bf regulatory_set_wiphy_regd_sync +EXPORT_SYMBOL net/wireless/cfg80211 0x8e2a5ccf cfg80211_ch_switch_started_notify EXPORT_SYMBOL net/wireless/cfg80211 0x8fa02936 cfg80211_free_nan_func -EXPORT_SYMBOL net/wireless/cfg80211 0x91eb33b0 get_wiphy_regdom -EXPORT_SYMBOL net/wireless/cfg80211 0x9249e6a0 cfg80211_external_auth_request -EXPORT_SYMBOL net/wireless/cfg80211 0x9315e5ef cfg80211_radar_event -EXPORT_SYMBOL net/wireless/cfg80211 0x9ad51c06 cfg80211_conn_failed -EXPORT_SYMBOL net/wireless/cfg80211 0x9bcbbf53 cfg80211_check_combinations -EXPORT_SYMBOL net/wireless/cfg80211 0x9cfadf43 cfg80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x90e15f74 __cfg80211_alloc_reply_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x932c823a cfg80211_cqm_rssi_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x970e073e cfg80211_register_netdevice +EXPORT_SYMBOL net/wireless/cfg80211 0x9802fffe cfg80211_assoc_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0x99c44f88 cfg80211_inform_bss_data +EXPORT_SYMBOL net/wireless/cfg80211 0x9c080775 cfg80211_stop_iface EXPORT_SYMBOL net/wireless/cfg80211 0x9d6cba30 cfg80211_find_elem_match -EXPORT_SYMBOL net/wireless/cfg80211 0x9f26e912 cfg80211_rx_unexpected_4addr_frame -EXPORT_SYMBOL net/wireless/cfg80211 0xa122c171 cfg80211_get_bss -EXPORT_SYMBOL net/wireless/cfg80211 0xa2f51662 regulatory_hint -EXPORT_SYMBOL net/wireless/cfg80211 0xa6da872d wiphy_new_nm -EXPORT_SYMBOL net/wireless/cfg80211 0xa7136f38 cfg80211_send_layer2_update -EXPORT_SYMBOL net/wireless/cfg80211 0xae42b5e7 cfg80211_ibss_joined -EXPORT_SYMBOL net/wireless/cfg80211 0xafc37c2b cfg80211_get_station -EXPORT_SYMBOL net/wireless/cfg80211 0xb0b95609 cfg80211_nan_match -EXPORT_SYMBOL net/wireless/cfg80211 0xb10c446b wiphy_free -EXPORT_SYMBOL net/wireless/cfg80211 0xb1e06ed3 cfg80211_stop_iface -EXPORT_SYMBOL net/wireless/cfg80211 0xb22ba85d cfg80211_rx_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0xb3472ec7 cfg80211_assoc_timeout -EXPORT_SYMBOL net/wireless/cfg80211 0xb4cb7f32 cfg80211_sta_opmode_change_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xb5a1128a wiphy_apply_custom_regulatory +EXPORT_SYMBOL net/wireless/cfg80211 0x9d7467d7 cfg80211_rx_unexpected_4addr_frame +EXPORT_SYMBOL net/wireless/cfg80211 0xa2b17c74 cfg80211_update_owe_info_event +EXPORT_SYMBOL net/wireless/cfg80211 0xa346fb52 cfg80211_scan_done +EXPORT_SYMBOL net/wireless/cfg80211 0xa59a2ef3 __cfg80211_alloc_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xa753fb90 cfg80211_nan_func_terminated +EXPORT_SYMBOL net/wireless/cfg80211 0xae823171 wiphy_new_nm +EXPORT_SYMBOL net/wireless/cfg80211 0xb04f291a wiphy_rfkill_set_hw_state_reason +EXPORT_SYMBOL net/wireless/cfg80211 0xb0e8ec1d cfg80211_remain_on_channel_expired +EXPORT_SYMBOL net/wireless/cfg80211 0xb243b1e6 cfg80211_notify_new_peer_candidate +EXPORT_SYMBOL net/wireless/cfg80211 0xb2f807ff cfg80211_get_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xb53171c8 cfg80211_radar_event EXPORT_SYMBOL net/wireless/cfg80211 0xb73aafb1 ieee80211_chandef_to_operating_class -EXPORT_SYMBOL net/wireless/cfg80211 0xb806b930 cfg80211_cqm_pktloss_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xbe540c84 cfg80211_port_authorized -EXPORT_SYMBOL net/wireless/cfg80211 0xc012af53 cfg80211_cqm_rssi_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xb7ab5ead cfg80211_external_auth_request +EXPORT_SYMBOL net/wireless/cfg80211 0xc0f98477 cfg80211_crit_proto_stopped EXPORT_SYMBOL net/wireless/cfg80211 0xc1b99792 ieee80211_channel_to_freq_khz +EXPORT_SYMBOL net/wireless/cfg80211 0xc3dab5e2 wiphy_rfkill_start_polling +EXPORT_SYMBOL net/wireless/cfg80211 0xc3dfbb72 cfg80211_reg_can_beacon EXPORT_SYMBOL net/wireless/cfg80211 0xc5dcacef ieee80211_operating_class_to_band -EXPORT_SYMBOL net/wireless/cfg80211 0xc65b3a4e cfg80211_connect_done -EXPORT_SYMBOL net/wireless/cfg80211 0xc7c9ca85 cfg80211_sched_scan_stopped -EXPORT_SYMBOL net/wireless/cfg80211 0xca8a1529 cfg80211_chandef_usable +EXPORT_SYMBOL net/wireless/cfg80211 0xc7ae33c4 cfg80211_ready_on_channel +EXPORT_SYMBOL net/wireless/cfg80211 0xc7af95db cfg80211_chandef_usable +EXPORT_SYMBOL net/wireless/cfg80211 0xc8250cdb __cfg80211_send_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xc95bc4b3 cfg80211_iter_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0xcb83e1c1 cfg80211_iftype_allowed EXPORT_SYMBOL net/wireless/cfg80211 0xcc1a7c48 cfg80211_is_element_inherited -EXPORT_SYMBOL net/wireless/cfg80211 0xcd4bdc70 cfg80211_inform_bss_data -EXPORT_SYMBOL net/wireless/cfg80211 0xcf93ead8 cfg80211_notify_new_peer_candidate -EXPORT_SYMBOL net/wireless/cfg80211 0xd3b8fb13 cfg80211_ready_on_channel +EXPORT_SYMBOL net/wireless/cfg80211 0xcd60e89d cfg80211_cqm_pktloss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xd1bcc2eb cfg80211_unlink_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xd3d01cd5 cfg80211_ibss_joined +EXPORT_SYMBOL net/wireless/cfg80211 0xd4ed0ebc cfg80211_sched_scan_stopped_locked EXPORT_SYMBOL net/wireless/cfg80211 0xd56d55f3 ieee80211_get_mesh_hdrlen -EXPORT_SYMBOL net/wireless/cfg80211 0xd814293a cfg80211_gtk_rekey_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xdac3d95c regulatory_set_wiphy_regd_sync +EXPORT_SYMBOL net/wireless/cfg80211 0xd8f32195 wiphy_apply_custom_regulatory +EXPORT_SYMBOL net/wireless/cfg80211 0xdab3abd7 cfg80211_tx_mgmt_expired EXPORT_SYMBOL net/wireless/cfg80211 0xdba126c1 reg_initiator_name -EXPORT_SYMBOL net/wireless/cfg80211 0xdbcf7271 ieee80211_data_to_8023_exthdr -EXPORT_SYMBOL net/wireless/cfg80211 0xdc48dc92 cfg80211_disconnected -EXPORT_SYMBOL net/wireless/cfg80211 0xdefc87f4 cfg80211_iftype_allowed -EXPORT_SYMBOL net/wireless/cfg80211 0xe09e9773 cfg80211_cqm_txe_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xdde245a0 cfg80211_ft_event +EXPORT_SYMBOL net/wireless/cfg80211 0xdebdfe41 cfg80211_put_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xe11cb129 cfg80211_control_port_tx_status +EXPORT_SYMBOL net/wireless/cfg80211 0xe184fbb3 get_wiphy_regdom EXPORT_SYMBOL net/wireless/cfg80211 0xe334e6df cfg80211_sinfo_alloc_tid_stats -EXPORT_SYMBOL net/wireless/cfg80211 0xe45be561 cfg80211_rx_unprot_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0xe9dfd822 cfg80211_tx_mgmt_expired -EXPORT_SYMBOL net/wireless/cfg80211 0xecadd200 cfg80211_rx_mgmt_khz -EXPORT_SYMBOL net/wireless/cfg80211 0xee381e4c cfg80211_auth_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0xe65f636b regulatory_set_wiphy_regd +EXPORT_SYMBOL net/wireless/cfg80211 0xe6e3f4d0 cfg80211_report_wowlan_wakeup +EXPORT_SYMBOL net/wireless/cfg80211 0xeeaa6abf freq_reg_info EXPORT_SYMBOL net/wireless/cfg80211 0xef265f27 cfg80211_chandef_create -EXPORT_SYMBOL net/wireless/cfg80211 0xf0d4a4aa cfg80211_sched_scan_results -EXPORT_SYMBOL net/wireless/cfg80211 0xf123c39c cfg80211_mgmt_tx_status -EXPORT_SYMBOL net/wireless/cfg80211 0xf253ea14 regulatory_pre_cac_allowed -EXPORT_SYMBOL net/wireless/cfg80211 0xf3689dbc cfg80211_remain_on_channel_expired +EXPORT_SYMBOL net/wireless/cfg80211 0xf0cf432b cfg80211_sched_scan_results +EXPORT_SYMBOL net/wireless/cfg80211 0xf49a6596 cfg80211_conn_failed +EXPORT_SYMBOL net/wireless/cfg80211 0xf4e9e3c1 cfg80211_reg_can_beacon_relax EXPORT_SYMBOL net/wireless/cfg80211 0xf5596d89 cfg80211_get_p2p_attr -EXPORT_SYMBOL net/wireless/cfg80211 0xf9fc1121 cfg80211_unlink_bss -EXPORT_SYMBOL net/wireless/cfg80211 0xfb13a9ad cfg80211_del_sta_sinfo -EXPORT_SYMBOL net/wireless/cfg80211 0xfd514a13 wiphy_unregister -EXPORT_SYMBOL net/wireless/lib80211 0x1c5d5ee0 lib80211_get_crypto_ops -EXPORT_SYMBOL net/wireless/lib80211 0x201abd69 lib80211_crypt_info_init -EXPORT_SYMBOL net/wireless/lib80211 0x66840e1f lib80211_unregister_crypto_ops -EXPORT_SYMBOL net/wireless/lib80211 0x8f5c310b lib80211_register_crypto_ops -EXPORT_SYMBOL net/wireless/lib80211 0xe2c2b77e lib80211_crypt_delayed_deinit -EXPORT_SYMBOL net/wireless/lib80211 0xfd243440 lib80211_crypt_info_free -EXPORT_SYMBOL sound/ac97_bus 0x8853f6e8 ac97_bus_type -EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0x18010f52 snd_mixer_oss_ioctl_card +EXPORT_SYMBOL net/wireless/cfg80211 0xf9e37e40 ieee80211_amsdu_to_8023s +EXPORT_SYMBOL net/wireless/cfg80211 0xfa059ad2 cfg80211_pmksa_candidate_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xfa96fbcd cfg80211_rx_mgmt_khz +EXPORT_SYMBOL net/wireless/cfg80211 0xfae5a8de regulatory_pre_cac_allowed +EXPORT_SYMBOL net/wireless/cfg80211 0xfe32f75d cfg80211_roamed +EXPORT_SYMBOL net/wireless/lib80211 0x22592e1a lib80211_crypt_delayed_deinit +EXPORT_SYMBOL net/wireless/lib80211 0x445e8ed7 lib80211_register_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x537fa6bd lib80211_unregister_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x659b453d lib80211_crypt_info_free +EXPORT_SYMBOL net/wireless/lib80211 0x6a60e34b lib80211_get_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x6ce1b333 lib80211_crypt_info_init +EXPORT_SYMBOL sound/ac97_bus 0x2019d3da ac97_bus_type +EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0x3d6532a9 snd_mixer_oss_ioctl_card +EXPORT_SYMBOL sound/core/seq/snd-seq 0x17bf1c4a snd_seq_create_kernel_client EXPORT_SYMBOL sound/core/seq/snd-seq 0x1a724fcc snd_seq_kernel_client_ctl EXPORT_SYMBOL sound/core/seq/snd-seq 0x3061c52d snd_use_lock_sync_helper EXPORT_SYMBOL sound/core/seq/snd-seq 0x3fb4d161 snd_seq_kernel_client_dispatch -EXPORT_SYMBOL sound/core/seq/snd-seq 0x568efefc snd_seq_kernel_client_enqueue +EXPORT_SYMBOL sound/core/seq/snd-seq 0x5318ee42 snd_seq_kernel_client_enqueue EXPORT_SYMBOL sound/core/seq/snd-seq 0x6bb71038 snd_seq_delete_kernel_client +EXPORT_SYMBOL sound/core/seq/snd-seq 0x779591ef snd_seq_event_port_attach 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 0xb4bb37f1 snd_seq_kernel_client_write_poll EXPORT_SYMBOL sound/core/seq/snd-seq 0xb8e448a0 snd_seq_set_queue_tempo -EXPORT_SYMBOL sound/core/seq/snd-seq 0xe8448e36 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 0xe9a4de07 snd_seq_kernel_client_write_poll -EXPORT_SYMBOL sound/core/seq/snd-seq 0xf5b5412f snd_seq_create_kernel_client EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x6ea09972 snd_midi_channel_alloc_set EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x833a3e07 snd_midi_channel_set_clear EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0xb9948d2c snd_midi_channel_free_set @@ -5661,434 +5674,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 0x24e8d336 snd_virmidi_new -EXPORT_SYMBOL sound/core/snd 0x081a4ad7 snd_ctl_add -EXPORT_SYMBOL sound/core/snd 0x0c7e87a3 snd_card_file_add -EXPORT_SYMBOL sound/core/snd 0x1134b8be snd_pci_quirk_lookup +EXPORT_SYMBOL sound/core/seq/snd-seq-virmidi 0x07fa8b73 snd_virmidi_new +EXPORT_SYMBOL sound/core/snd 0x01f53123 snd_unregister_device +EXPORT_SYMBOL sound/core/snd 0x064e1f6a snd_info_free_entry +EXPORT_SYMBOL sound/core/snd 0x085e4d32 snd_info_create_card_entry +EXPORT_SYMBOL sound/core/snd 0x086db270 snd_ctl_find_id +EXPORT_SYMBOL sound/core/snd 0x0ba3cc73 snd_ctl_unregister_ioctl +EXPORT_SYMBOL sound/core/snd 0x155db951 snd_ctl_free_one EXPORT_SYMBOL sound/core/snd 0x18e1683f snd_dma_program EXPORT_SYMBOL sound/core/snd 0x191e88cf snd_dma_pointer EXPORT_SYMBOL sound/core/snd 0x198788b4 snd_lookup_oss_minor_data -EXPORT_SYMBOL sound/core/snd 0x21f51f21 snd_card_free_when_closed -EXPORT_SYMBOL sound/core/snd 0x2206fa2e snd_card_new -EXPORT_SYMBOL sound/core/snd 0x2254665f _snd_ctl_add_follower +EXPORT_SYMBOL sound/core/snd 0x1c0e142d snd_ctl_replace +EXPORT_SYMBOL sound/core/snd 0x201e8d8e snd_ctl_register_ioctl +EXPORT_SYMBOL sound/core/snd 0x2200a0c7 snd_info_register EXPORT_SYMBOL sound/core/snd 0x24a94b26 snd_info_get_line -EXPORT_SYMBOL sound/core/snd 0x3264c2f1 snd_register_oss_device -EXPORT_SYMBOL sound/core/snd 0x331a6d4d snd_jack_new +EXPORT_SYMBOL sound/core/snd 0x2c2da073 snd_info_create_module_entry EXPORT_SYMBOL sound/core/snd 0x342a2354 copy_to_user_fromio EXPORT_SYMBOL sound/core/snd 0x3971b4df snd_ecards_limit -EXPORT_SYMBOL sound/core/snd 0x3bf58e69 snd_component_add -EXPORT_SYMBOL sound/core/snd 0x3ca9f9d0 snd_ctl_new1 -EXPORT_SYMBOL sound/core/snd 0x3ce27819 snd_ctl_register_ioctl_compat -EXPORT_SYMBOL sound/core/snd 0x3dc2a583 snd_card_disconnect -EXPORT_SYMBOL sound/core/snd 0x4565252a snd_ctl_find_numid -EXPORT_SYMBOL sound/core/snd 0x4815f057 snd_ctl_remove_id -EXPORT_SYMBOL sound/core/snd 0x4a02593a snd_device_register +EXPORT_SYMBOL sound/core/snd 0x3bcd4816 snd_ctl_register_ioctl_compat +EXPORT_SYMBOL sound/core/snd 0x3dc10c46 snd_card_free_when_closed +EXPORT_SYMBOL sound/core/snd 0x4031484f snd_jack_report +EXPORT_SYMBOL sound/core/snd 0x45b42625 snd_ctl_notify_one +EXPORT_SYMBOL sound/core/snd 0x49a12d34 snd_device_register EXPORT_SYMBOL sound/core/snd 0x4a3ea5c0 snd_request_card -EXPORT_SYMBOL sound/core/snd 0x50e0ad73 snd_ctl_remove -EXPORT_SYMBOL sound/core/snd 0x5132b1b6 snd_card_free -EXPORT_SYMBOL sound/core/snd 0x547dd8ee snd_card_set_id -EXPORT_SYMBOL sound/core/snd 0x628d1a2c snd_jack_set_key -EXPORT_SYMBOL sound/core/snd 0x63c77e5d snd_device_new -EXPORT_SYMBOL sound/core/snd 0x6ad64a36 snd_info_create_module_entry -EXPORT_SYMBOL sound/core/snd 0x6c59749d snd_ctl_unregister_ioctl_compat -EXPORT_SYMBOL sound/core/snd 0x6dd1a139 snd_ctl_register_ioctl +EXPORT_SYMBOL sound/core/snd 0x4be74049 snd_seq_root +EXPORT_SYMBOL sound/core/snd 0x57905623 snd_device_free +EXPORT_SYMBOL sound/core/snd 0x5c1fa798 snd_mixer_oss_notify_callback +EXPORT_SYMBOL sound/core/snd 0x6483be1f snd_card_file_remove +EXPORT_SYMBOL sound/core/snd 0x65042e5c snd_ctl_unregister_ioctl_compat +EXPORT_SYMBOL sound/core/snd 0x686edc9f snd_ctl_boolean_stereo_info +EXPORT_SYMBOL sound/core/snd 0x70afafbe snd_ctl_make_virtual_master EXPORT_SYMBOL sound/core/snd 0x70c15ac1 snd_dma_disable -EXPORT_SYMBOL sound/core/snd 0x723797ca snd_unregister_device EXPORT_SYMBOL sound/core/snd 0x73076315 snd_pci_quirk_lookup_id -EXPORT_SYMBOL sound/core/snd 0x765b3df4 snd_jack_add_new_kctl -EXPORT_SYMBOL sound/core/snd 0x767b7570 snd_device_free -EXPORT_SYMBOL sound/core/snd 0x79001fd0 snd_jack_set_parent -EXPORT_SYMBOL sound/core/snd 0x79ef6a83 snd_card_file_remove -EXPORT_SYMBOL sound/core/snd 0x7b809438 snd_info_free_entry -EXPORT_SYMBOL sound/core/snd 0x86500f1a snd_ctl_unregister_ioctl -EXPORT_SYMBOL sound/core/snd 0x8a8da39b snd_info_register +EXPORT_SYMBOL sound/core/snd 0x783183ce snd_jack_set_parent +EXPORT_SYMBOL sound/core/snd 0x7cb3d08d snd_card_file_add +EXPORT_SYMBOL sound/core/snd 0x7ce6f0da snd_card_set_id +EXPORT_SYMBOL sound/core/snd 0x7eddbe4e snd_card_new EXPORT_SYMBOL sound/core/snd 0x8df3789f snd_oss_info_register EXPORT_SYMBOL sound/core/snd 0x8f595b11 snd_major -EXPORT_SYMBOL sound/core/snd 0x91e10e8a snd_ctl_boolean_mono_info -EXPORT_SYMBOL sound/core/snd 0x94237661 snd_mixer_oss_notify_callback -EXPORT_SYMBOL sound/core/snd 0x96461859 snd_register_device -EXPORT_SYMBOL sound/core/snd 0x9968a471 snd_card_register -EXPORT_SYMBOL sound/core/snd 0x9cdf0ef5 snd_ctl_replace +EXPORT_SYMBOL sound/core/snd 0x97d9595c snd_component_add +EXPORT_SYMBOL sound/core/snd 0x9c1c3e95 snd_register_oss_device EXPORT_SYMBOL sound/core/snd 0x9e6d79f8 snd_info_get_str -EXPORT_SYMBOL sound/core/snd 0xa121b63c snd_ctl_boolean_stereo_info -EXPORT_SYMBOL sound/core/snd 0xa2425970 snd_jack_report -EXPORT_SYMBOL sound/core/snd 0xac74578e snd_seq_root +EXPORT_SYMBOL sound/core/snd 0xa7e8c03f snd_ctl_add EXPORT_SYMBOL sound/core/snd 0xb2e5ae4a snd_lookup_minor_data -EXPORT_SYMBOL sound/core/snd 0xb5088c82 snd_info_create_card_entry -EXPORT_SYMBOL sound/core/snd 0xbf2fc11d snd_ctl_free_one -EXPORT_SYMBOL sound/core/snd 0xc3059739 snd_ctl_make_virtual_master +EXPORT_SYMBOL sound/core/snd 0xb38a16bb snd_ctl_find_numid +EXPORT_SYMBOL sound/core/snd 0xb98b493f snd_ctl_notify +EXPORT_SYMBOL sound/core/snd 0xb9a22db6 snd_power_wait +EXPORT_SYMBOL sound/core/snd 0xc1c86251 snd_register_device EXPORT_SYMBOL sound/core/snd 0xc5a6d10b release_and_free_resource +EXPORT_SYMBOL sound/core/snd 0xc74edbb7 snd_ctl_rename_id +EXPORT_SYMBOL sound/core/snd 0xc9f0554e snd_card_free EXPORT_SYMBOL sound/core/snd 0xcc6a729f snd_ctl_enum_info -EXPORT_SYMBOL sound/core/snd 0xd2c918ec snd_power_wait -EXPORT_SYMBOL sound/core/snd 0xe7dddff8 snd_ctl_rename_id -EXPORT_SYMBOL sound/core/snd 0xe8e29c69 snd_ctl_find_id -EXPORT_SYMBOL sound/core/snd 0xf465b572 snd_unregister_oss_device -EXPORT_SYMBOL sound/core/snd 0xf8662151 snd_ctl_notify -EXPORT_SYMBOL sound/core/snd 0xfcdedefe snd_ctl_notify_one +EXPORT_SYMBOL sound/core/snd 0xd557dc4c _snd_ctl_add_follower +EXPORT_SYMBOL sound/core/snd 0xd719ff76 snd_jack_set_key +EXPORT_SYMBOL sound/core/snd 0xdc01e10a snd_ctl_remove_id +EXPORT_SYMBOL sound/core/snd 0xe1da4f52 snd_jack_add_new_kctl +EXPORT_SYMBOL sound/core/snd 0xe34885d5 snd_card_disconnect +EXPORT_SYMBOL sound/core/snd 0xf014c4ea snd_jack_new +EXPORT_SYMBOL sound/core/snd 0xf1ddec32 snd_ctl_boolean_mono_info +EXPORT_SYMBOL sound/core/snd 0xf40aadb2 snd_device_new +EXPORT_SYMBOL sound/core/snd 0xf526ad15 snd_ctl_remove +EXPORT_SYMBOL sound/core/snd 0xf5dc8299 snd_pci_quirk_lookup +EXPORT_SYMBOL sound/core/snd 0xf6e0d042 snd_ctl_new1 +EXPORT_SYMBOL sound/core/snd 0xf8ba0fe5 snd_unregister_oss_device +EXPORT_SYMBOL sound/core/snd 0xf9b4bcce snd_card_register EXPORT_SYMBOL sound/core/snd 0xfffd89db copy_from_user_toio -EXPORT_SYMBOL sound/core/snd-compress 0x695503d9 snd_compr_malloc_pages -EXPORT_SYMBOL sound/core/snd-compress 0x783f55e7 snd_compr_free_pages -EXPORT_SYMBOL sound/core/snd-hwdep 0x05c685af snd_hwdep_new -EXPORT_SYMBOL sound/core/snd-pcm 0x00201832 snd_dma_buffer_mmap -EXPORT_SYMBOL sound/core/snd-pcm 0x00fa1416 snd_pcm_hw_constraint_integer +EXPORT_SYMBOL sound/core/snd-compress 0x699a7f1f snd_compr_malloc_pages +EXPORT_SYMBOL sound/core/snd-compress 0x6ef1aa75 snd_compr_free_pages +EXPORT_SYMBOL sound/core/snd-hwdep 0x409804f3 snd_hwdep_new +EXPORT_SYMBOL sound/core/snd-pcm 0x003fc981 snd_sgbuf_get_page EXPORT_SYMBOL sound/core/snd-pcm 0x0283dfe3 _snd_pcm_hw_params_any +EXPORT_SYMBOL sound/core/snd-pcm 0x04198fa0 snd_pcm_lib_preallocate_free_for_all EXPORT_SYMBOL sound/core/snd-pcm 0x04cda566 snd_interval_refine +EXPORT_SYMBOL sound/core/snd-pcm 0x10ac159a snd_pcm_hw_param_last EXPORT_SYMBOL sound/core/snd-pcm 0x11eba48e snd_pcm_create_iec958_consumer_hw_params -EXPORT_SYMBOL sound/core/snd-pcm 0x195e5559 snd_pcm_suspend_all -EXPORT_SYMBOL sound/core/snd-pcm 0x1b16a081 snd_pcm_new_stream +EXPORT_SYMBOL sound/core/snd-pcm 0x187efbd7 snd_dma_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x18fce79a snd_pcm_hw_constraint_integer EXPORT_SYMBOL sound/core/snd-pcm 0x1d027e4b snd_pcm_format_signed -EXPORT_SYMBOL sound/core/snd-pcm 0x1da01aa3 snd_pcm_set_ops -EXPORT_SYMBOL sound/core/snd-pcm 0x1e2dc7a7 snd_pcm_hw_constraint_list -EXPORT_SYMBOL sound/core/snd-pcm 0x25108a3b snd_pcm_lib_free_pages -EXPORT_SYMBOL sound/core/snd-pcm 0x3040f962 snd_pcm_kernel_ioctl -EXPORT_SYMBOL sound/core/snd-pcm 0x32b2e904 snd_pcm_new +EXPORT_SYMBOL sound/core/snd-pcm 0x233bcf51 _snd_pcm_lib_alloc_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0x24ce0a65 snd_sgbuf_get_addr +EXPORT_SYMBOL sound/core/snd-pcm 0x28d7ec6d snd_pcm_lib_malloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x2cdc6020 snd_pcm_hw_refine +EXPORT_SYMBOL sound/core/snd-pcm 0x31828510 snd_pcm_lib_free_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0x3315a68c snd_pcm_hw_constraint_ranges EXPORT_SYMBOL sound/core/snd-pcm 0x3796bdcc snd_pcm_format_little_endian -EXPORT_SYMBOL sound/core/snd-pcm 0x37deb9b1 snd_pcm_hw_constraint_ratdens +EXPORT_SYMBOL sound/core/snd-pcm 0x37e4601b snd_dma_alloc_pages EXPORT_SYMBOL sound/core/snd-pcm 0x39bf9301 _snd_pcm_hw_param_setempty -EXPORT_SYMBOL sound/core/snd-pcm 0x3d568783 snd_sgbuf_get_page -EXPORT_SYMBOL sound/core/snd-pcm 0x3e250df0 snd_pcm_period_elapsed -EXPORT_SYMBOL sound/core/snd-pcm 0x4bcf81f1 snd_pcm_hw_param_last +EXPORT_SYMBOL sound/core/snd-pcm 0x3aa30f61 snd_pcm_lib_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x3d9c02bf snd_pcm_lib_preallocate_pages_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0x4482e8e5 snd_pcm_hw_constraint_minmax +EXPORT_SYMBOL sound/core/snd-pcm 0x463d289b snd_pcm_stop +EXPORT_SYMBOL sound/core/snd-pcm 0x47b4276d snd_pcm_kernel_ioctl EXPORT_SYMBOL sound/core/snd-pcm 0x4f816e9b snd_pcm_format_big_endian EXPORT_SYMBOL sound/core/snd-pcm 0x503bd137 snd_interval_ranges EXPORT_SYMBOL sound/core/snd-pcm 0x52e3e4a5 snd_pcm_hw_param_value -EXPORT_SYMBOL sound/core/snd-pcm 0x5ac594d6 snd_dma_free_pages EXPORT_SYMBOL sound/core/snd-pcm 0x5e7f4920 snd_pcm_format_set_silence +EXPORT_SYMBOL sound/core/snd-pcm 0x638ec2a1 snd_pcm_hw_constraint_step 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 0x69f96966 snd_pcm_hw_constraint_mask64 -EXPORT_SYMBOL sound/core/snd-pcm 0x6c1d9185 snd_pcm_hw_rule_noresample +EXPORT_SYMBOL sound/core/snd-pcm 0x6e36e122 snd_pcm_new_stream EXPORT_SYMBOL sound/core/snd-pcm 0x6ef8fcd8 snd_pcm_format_linear -EXPORT_SYMBOL sound/core/snd-pcm 0x6fa3d39a snd_pcm_new_internal -EXPORT_SYMBOL sound/core/snd-pcm 0x765203b4 snd_pcm_stop -EXPORT_SYMBOL sound/core/snd-pcm 0x768f4cf1 snd_pcm_lib_preallocate_pages_for_all -EXPORT_SYMBOL sound/core/snd-pcm 0x7ce8cc7d __snd_pcm_lib_xfer -EXPORT_SYMBOL sound/core/snd-pcm 0x7dd5d86c snd_pcm_hw_constraint_minmax +EXPORT_SYMBOL sound/core/snd-pcm 0x6f04b02a snd_pcm_set_managed_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0x712ea564 snd_dma_alloc_pages_fallback +EXPORT_SYMBOL sound/core/snd-pcm 0x77ea8ded snd_pcm_new +EXPORT_SYMBOL sound/core/snd-pcm 0x7e7800fd snd_pcm_open_substream +EXPORT_SYMBOL sound/core/snd-pcm 0x7ecbf8db snd_pcm_hw_constraint_msbits +EXPORT_SYMBOL sound/core/snd-pcm 0x7fc8c23d snd_pcm_create_iec958_consumer +EXPORT_SYMBOL sound/core/snd-pcm 0x81221724 snd_pcm_period_elapsed EXPORT_SYMBOL sound/core/snd-pcm 0x834dc955 snd_pcm_format_size -EXPORT_SYMBOL sound/core/snd-pcm 0x86fb72ba snd_pcm_mmap_data -EXPORT_SYMBOL sound/core/snd-pcm 0x87e9914e snd_pcm_lib_malloc_pages -EXPORT_SYMBOL sound/core/snd-pcm 0x8fb52299 snd_pcm_set_managed_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0x873c0d62 snd_pcm_new_internal +EXPORT_SYMBOL sound/core/snd-pcm 0x87678697 snd_pcm_lib_get_vmalloc_page EXPORT_SYMBOL sound/core/snd-pcm 0x94098ff8 snd_interval_list -EXPORT_SYMBOL sound/core/snd-pcm 0x97d456c5 snd_pcm_hw_constraint_ratnums -EXPORT_SYMBOL sound/core/snd-pcm 0x980adab3 snd_pcm_create_iec958_consumer -EXPORT_SYMBOL sound/core/snd-pcm 0x98bdfa81 snd_pcm_lib_get_vmalloc_page -EXPORT_SYMBOL sound/core/snd-pcm 0x98dbcf81 snd_pcm_hw_refine -EXPORT_SYMBOL sound/core/snd-pcm 0x9f59f2de snd_pcm_lib_free_vmalloc_buffer -EXPORT_SYMBOL sound/core/snd-pcm 0xa0b694eb snd_pcm_lib_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0x9bdcaa7c snd_sgbuf_get_chunk_size +EXPORT_SYMBOL sound/core/snd-pcm 0x9c49e182 snd_pcm_hw_rule_add +EXPORT_SYMBOL sound/core/snd-pcm 0xa244ac19 snd_pcm_hw_constraint_ratdens +EXPORT_SYMBOL sound/core/snd-pcm 0xa2d3eebc snd_pcm_set_ops +EXPORT_SYMBOL sound/core/snd-pcm 0xa308fcc4 snd_pcm_lib_preallocate_pages EXPORT_SYMBOL sound/core/snd-pcm 0xa61aa028 snd_pcm_format_unsigned -EXPORT_SYMBOL sound/core/snd-pcm 0xa67b6e96 snd_pcm_hw_param_first -EXPORT_SYMBOL sound/core/snd-pcm 0xab3f2060 snd_pcm_period_elapsed_under_stream_lock -EXPORT_SYMBOL sound/core/snd-pcm 0xac3489e4 snd_dma_alloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xa6528945 snd_pcm_hw_constraint_list +EXPORT_SYMBOL sound/core/snd-pcm 0xa6ad70e0 snd_pcm_mmap_data +EXPORT_SYMBOL sound/core/snd-pcm 0xa9260062 snd_pcm_hw_constraint_pow2 +EXPORT_SYMBOL sound/core/snd-pcm 0xaaebe1e2 snd_pcm_suspend_all EXPORT_SYMBOL sound/core/snd-pcm 0xac437f7b snd_interval_ratnum -EXPORT_SYMBOL sound/core/snd-pcm 0xad77b732 snd_pcm_lib_preallocate_pages -EXPORT_SYMBOL sound/core/snd-pcm 0xaf3d9cb8 snd_sgbuf_get_addr -EXPORT_SYMBOL sound/core/snd-pcm 0xb0245cf3 snd_dma_alloc_pages_fallback -EXPORT_SYMBOL sound/core/snd-pcm 0xb0f9c7f3 snd_pcm_hw_constraint_msbits +EXPORT_SYMBOL sound/core/snd-pcm 0xb23586f9 __snd_pcm_lib_xfer EXPORT_SYMBOL sound/core/snd-pcm 0xb9638db4 snd_pcm_rate_to_rate_bit -EXPORT_SYMBOL sound/core/snd-pcm 0xced374c5 snd_pcm_set_managed_buffer_all -EXPORT_SYMBOL sound/core/snd-pcm 0xd8d4cc10 snd_pcm_lib_preallocate_free_for_all -EXPORT_SYMBOL sound/core/snd-pcm 0xe10dc41a snd_pcm_hw_constraint_step -EXPORT_SYMBOL sound/core/snd-pcm 0xe3013a29 _snd_pcm_lib_alloc_vmalloc_buffer -EXPORT_SYMBOL sound/core/snd-pcm 0xe3493b1a snd_sgbuf_get_chunk_size -EXPORT_SYMBOL sound/core/snd-pcm 0xe4e81d7c snd_pcm_hw_rule_add +EXPORT_SYMBOL sound/core/snd-pcm 0xbd9480ed snd_pcm_hw_constraint_mask64 +EXPORT_SYMBOL sound/core/snd-pcm 0xc1eacf00 snd_dma_buffer_mmap +EXPORT_SYMBOL sound/core/snd-pcm 0xcabe8784 snd_pcm_lib_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0xd348040f snd_pcm_hw_param_first +EXPORT_SYMBOL sound/core/snd-pcm 0xe19c58c1 snd_pcm_hw_constraint_ratnums EXPORT_SYMBOL sound/core/snd-pcm 0xe56a9336 snd_pcm_format_width -EXPORT_SYMBOL sound/core/snd-pcm 0xed3dfbdb snd_pcm_hw_constraint_ranges -EXPORT_SYMBOL sound/core/snd-pcm 0xeea6e06e snd_pcm_release_substream -EXPORT_SYMBOL sound/core/snd-pcm 0xf3bdc653 snd_pcm_lib_mmap_iomem -EXPORT_SYMBOL sound/core/snd-pcm 0xf60b7184 snd_pcm_open_substream -EXPORT_SYMBOL sound/core/snd-pcm 0xfd8fc62f snd_pcm_hw_constraint_pow2 -EXPORT_SYMBOL sound/core/snd-pcm 0xfdc01c05 snd_pcm_set_sync +EXPORT_SYMBOL sound/core/snd-pcm 0xf10d8c39 snd_pcm_period_elapsed_under_stream_lock +EXPORT_SYMBOL sound/core/snd-pcm 0xf2be8a05 snd_pcm_set_managed_buffer_all +EXPORT_SYMBOL sound/core/snd-pcm 0xf5aa0a46 snd_pcm_release_substream +EXPORT_SYMBOL sound/core/snd-pcm 0xf7cb71f8 snd_pcm_hw_rule_noresample +EXPORT_SYMBOL sound/core/snd-pcm 0xf9dc69a4 snd_pcm_lib_mmap_iomem EXPORT_SYMBOL sound/core/snd-pcm 0xff6104d0 snd_pcm_rate_bit_to_rate -EXPORT_SYMBOL sound/core/snd-rawmidi 0x0af31e60 snd_rawmidi_receive -EXPORT_SYMBOL sound/core/snd-rawmidi 0x0b7afa1a snd_rawmidi_input_params -EXPORT_SYMBOL sound/core/snd-rawmidi 0x1df4c133 __snd_rawmidi_transmit_ack -EXPORT_SYMBOL sound/core/snd-rawmidi 0x31ac1d63 snd_rawmidi_new -EXPORT_SYMBOL sound/core/snd-rawmidi 0x5321a3df snd_rawmidi_kernel_read -EXPORT_SYMBOL sound/core/snd-rawmidi 0x63a8c29e snd_rawmidi_kernel_open -EXPORT_SYMBOL sound/core/snd-rawmidi 0x66b1e51a snd_rawmidi_transmit -EXPORT_SYMBOL sound/core/snd-rawmidi 0x73bb63e3 snd_rawmidi_kernel_release -EXPORT_SYMBOL sound/core/snd-rawmidi 0x7433c3bc snd_rawmidi_drain_output -EXPORT_SYMBOL sound/core/snd-rawmidi 0x81f90c71 snd_rawmidi_transmit_peek -EXPORT_SYMBOL sound/core/snd-rawmidi 0x85360768 snd_rawmidi_transmit_ack -EXPORT_SYMBOL sound/core/snd-rawmidi 0x95e118e5 __snd_rawmidi_transmit_peek -EXPORT_SYMBOL sound/core/snd-rawmidi 0x964feada snd_rawmidi_proceed -EXPORT_SYMBOL sound/core/snd-rawmidi 0xa2ff1f62 snd_rawmidi_info_select -EXPORT_SYMBOL sound/core/snd-rawmidi 0xaa3d29d8 snd_rawmidi_set_ops -EXPORT_SYMBOL sound/core/snd-rawmidi 0xd3d8cae1 snd_rawmidi_kernel_write -EXPORT_SYMBOL sound/core/snd-rawmidi 0xd55ff6f2 snd_rawmidi_output_params -EXPORT_SYMBOL sound/core/snd-rawmidi 0xdcb4f773 snd_rawmidi_drain_input -EXPORT_SYMBOL sound/core/snd-rawmidi 0xdd8e21e1 snd_rawmidi_transmit_empty -EXPORT_SYMBOL sound/core/snd-rawmidi 0xfbf338b5 snd_rawmidi_drop_output +EXPORT_SYMBOL sound/core/snd-pcm 0xff7c732a snd_pcm_set_sync +EXPORT_SYMBOL sound/core/snd-rawmidi 0x4240dfcc snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0x57039710 snd_rawmidi_kernel_open +EXPORT_SYMBOL sound/core/snd-rawmidi 0x72d8fa6d snd_rawmidi_set_ops +EXPORT_SYMBOL sound/core/snd-rawmidi 0x77956223 __snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0x80c0dfe2 snd_rawmidi_proceed +EXPORT_SYMBOL sound/core/snd-rawmidi 0x8650001f snd_rawmidi_new +EXPORT_SYMBOL sound/core/snd-rawmidi 0x8983b23e snd_rawmidi_transmit_empty +EXPORT_SYMBOL sound/core/snd-rawmidi 0x91566701 snd_rawmidi_kernel_release +EXPORT_SYMBOL sound/core/snd-rawmidi 0xaa2f0904 snd_rawmidi_transmit +EXPORT_SYMBOL sound/core/snd-rawmidi 0xb5770fc0 __snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0xb6bcf9f7 snd_rawmidi_drain_input +EXPORT_SYMBOL sound/core/snd-rawmidi 0xb9183c5c snd_rawmidi_input_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0xd1eb232b snd_rawmidi_kernel_read +EXPORT_SYMBOL sound/core/snd-rawmidi 0xe51b72a7 snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0xea409292 snd_rawmidi_info_select +EXPORT_SYMBOL sound/core/snd-rawmidi 0xed53bdc8 snd_rawmidi_kernel_write +EXPORT_SYMBOL sound/core/snd-rawmidi 0xf03de25d snd_rawmidi_receive +EXPORT_SYMBOL sound/core/snd-rawmidi 0xf38d2625 snd_rawmidi_drain_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0xf3f094b2 snd_rawmidi_output_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0xf801ab65 snd_rawmidi_drop_output 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 0x3c923527 snd_seq_device_new EXPORT_SYMBOL sound/core/snd-seq-device 0x6339b6d0 snd_seq_device_load_drivers -EXPORT_SYMBOL sound/core/snd-timer 0x0059b1f4 snd_timer_global_free -EXPORT_SYMBOL sound/core/snd-timer 0x1884bb83 snd_timer_global_register -EXPORT_SYMBOL sound/core/snd-timer 0x1b659347 snd_timer_instance_new -EXPORT_SYMBOL sound/core/snd-timer 0x447b3f97 snd_timer_open -EXPORT_SYMBOL sound/core/snd-timer 0x459fd8d9 snd_timer_close -EXPORT_SYMBOL sound/core/snd-timer 0x65e31517 snd_timer_notify -EXPORT_SYMBOL sound/core/snd-timer 0x6863c01d snd_timer_stop -EXPORT_SYMBOL sound/core/snd-timer 0xa3d15283 snd_timer_new -EXPORT_SYMBOL sound/core/snd-timer 0xb90bd6b3 snd_timer_instance_free -EXPORT_SYMBOL sound/core/snd-timer 0xbf3cc67d snd_timer_start -EXPORT_SYMBOL sound/core/snd-timer 0xc0558617 snd_timer_pause -EXPORT_SYMBOL sound/core/snd-timer 0xc19a01bd snd_timer_resolution -EXPORT_SYMBOL sound/core/snd-timer 0xdd68f0c4 snd_timer_global_new -EXPORT_SYMBOL sound/core/snd-timer 0xf6ef80e3 snd_timer_continue -EXPORT_SYMBOL sound/core/snd-timer 0xfe0b556a snd_timer_interrupt -EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x6875d466 snd_mpu401_uart_new +EXPORT_SYMBOL sound/core/snd-seq-device 0x7601021b snd_seq_device_new +EXPORT_SYMBOL sound/core/snd-timer 0x0d98a4d3 snd_timer_new +EXPORT_SYMBOL sound/core/snd-timer 0x1368b9db snd_timer_instance_new +EXPORT_SYMBOL sound/core/snd-timer 0x3aa7bd59 snd_timer_global_new +EXPORT_SYMBOL sound/core/snd-timer 0x46f9e23e snd_timer_interrupt +EXPORT_SYMBOL sound/core/snd-timer 0x54c6c3da snd_timer_open +EXPORT_SYMBOL sound/core/snd-timer 0x66ca5fa6 snd_timer_close +EXPORT_SYMBOL sound/core/snd-timer 0x671c986a snd_timer_stop +EXPORT_SYMBOL sound/core/snd-timer 0x7266d832 snd_timer_start +EXPORT_SYMBOL sound/core/snd-timer 0x860d50d4 snd_timer_global_free +EXPORT_SYMBOL sound/core/snd-timer 0x882924bc snd_timer_resolution +EXPORT_SYMBOL sound/core/snd-timer 0xc3420c45 snd_timer_continue +EXPORT_SYMBOL sound/core/snd-timer 0xc4062044 snd_timer_notify +EXPORT_SYMBOL sound/core/snd-timer 0xd3ca10a2 snd_timer_instance_free +EXPORT_SYMBOL sound/core/snd-timer 0xd40427d0 snd_timer_global_register +EXPORT_SYMBOL sound/core/snd-timer 0xf5333a0d snd_timer_pause +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x44d2a902 snd_mpu401_uart_new EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x6d629c59 snd_mpu401_uart_interrupt_tx EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0xc0fec227 snd_mpu401_uart_interrupt -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x032e4fbe snd_opl3_timer_new EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x05060a19 snd_opl3_regmap -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x0b7fdbe3 snd_opl3_create -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x1a18dbe6 snd_opl3_reset -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x1b434c03 snd_opl3_init -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x1ebdbd42 snd_opl3_load_patch -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x215fdaa1 snd_opl3_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xc8b925b7 snd_opl3_hwdep_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xd3be4962 snd_opl3_interrupt -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xfa567ad8 snd_opl3_find_patch -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x089db797 snd_vx_load_boot_image +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x057b2096 snd_opl3_timer_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x244d8ffd snd_opl3_interrupt +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x30de57da snd_opl3_load_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x45430e36 snd_opl3_find_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x542aabdd snd_opl3_reset +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x748120ec snd_opl3_init +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xa7d9ae39 snd_opl3_create +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xb7346b73 snd_opl3_hwdep_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xdc589fa0 snd_opl3_new +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x08000fb8 snd_vx_setup_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x1b335c6a 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 0x26b3f4a4 snd_vx_dsp_load -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x3c49acda snd_vx_suspend -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x6e508a4c snd_vx_resume -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x8e46656e snd_vx_check_reg_bit -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x8e7807c7 snd_vx_free_firmware -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xa4980306 snd_vx_dsp_boot -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xad439011 snd_vx_create -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xdb16918d snd_vx_setup_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x2be4dccc snd_vx_free_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x742bd8ce snd_vx_resume +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x8408154e snd_vx_suspend +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x9472b84d snd_vx_create +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xa818fb54 snd_vx_load_boot_image +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xb92482a4 snd_vx_check_reg_bit +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xe31ba951 snd_vx_dsp_load EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf1f04d23 snd_vx_irq_handler -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x09249750 fcp_bus_reset -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x0bd8f1a9 fw_iso_resources_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x0f2f3a3d amdtp_stream_set_parameters -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x183eb7e2 cmp_connection_release -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x1ca021bf cmp_connection_check_used -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x1f915f81 avc_general_set_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x0bbb7da6 amdtp_stream_add_pcm_hw_constraints +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x0e6f4fb9 iso_packets_buffer_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x1a39b287 fw_iso_resources_update EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x20254e45 amdtp_syt_intervals -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2119a9c0 snd_fw_transaction -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2f4a9eba amdtp_stream_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3340dbb3 fcp_avc_transaction -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x50a830f3 fw_iso_resources_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3197f501 amdtp_stream_pcm_prepare +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x32ec0dec avc_general_get_plug_info +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x35300d04 amdtp_stream_get_max_payload +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x42287f7f fw_iso_resources_free +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x431d8f62 cmp_connection_check_used +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x4617c98f amdtp_stream_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x46c7cc20 fw_iso_resources_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x4866644b fw_iso_resources_destroy EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x53ca18e8 amdtp_rate_table -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x59bda90a amdtp_stream_pcm_prepare -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x64531e8c amdtp_stream_get_max_payload -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x675138d2 amdtp_stream_update -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7a5b4307 cmp_connection_reserve -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7d5e48bf iso_packets_buffer_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x823fdd65 cmp_connection_update -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x9da42700 amdtp_stream_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa3ba825f iso_packets_buffer_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa4753b8d cmp_connection_break -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb4176ffe avc_general_get_sig_fmt -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb87a4f1a cmp_connection_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb90be43c fw_iso_resources_allocate -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xba6cf2c2 amdtp_stream_add_pcm_hw_constraints -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc1bb2011 fw_iso_resources_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd9bd9bf7 fw_iso_resources_free -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xdecce6fa avc_general_get_plug_info -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xebf24069 cmp_connection_establish -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xf16baaa4 amdtp_stream_pcm_abort -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xf3cc1b0c cmp_connection_destroy -EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x5061be3c snd_ak4113_resume -EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0xc057e647 snd_ak4113_suspend -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x2cd885c2 snd_ak4114_resume -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x366009a4 snd_ak4114_build -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x48c8ede6 snd_ak4114_create -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x62e1772e snd_ak4114_reinit -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x9de7ff7d snd_ak4114_suspend -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xaa250d1b snd_ak4114_external_rate -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xcce3739a snd_ak4114_check_rate_and_errors -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xdbe02f9a snd_ak4114_reg_write -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x27a0d128 snd_ak4117_check_rate_and_errors -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x2cb02e3b snd_ak4117_build -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x35fd4df4 snd_ak4117_create -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x3d60819b snd_ak4117_reinit -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xb9d841da snd_ak4117_external_rate -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xf255c648 snd_ak4117_reg_write -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x0f67ab10 snd_akm4xxx_build_controls -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x20ab8b3c snd_akm4xxx_write -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x28be9e61 snd_akm4xxx_init -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x96e5457f snd_akm4xxx_reset -EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0xaa30596b snd_pt2258_reset -EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0xd86ce81f snd_pt2258_build_controls -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x2db74234 snd_cs8427_create -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x519d0aae snd_cs8427_iec958_active -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x9e80c354 snd_cs8427_iec958_build -EXPORT_SYMBOL sound/i2c/snd-cs8427 0xbd5ac4c6 snd_cs8427_iec958_pcm -EXPORT_SYMBOL sound/i2c/snd-cs8427 0xce3d8caa snd_cs8427_init -EXPORT_SYMBOL sound/i2c/snd-cs8427 0xfca6d4de snd_cs8427_reg_write -EXPORT_SYMBOL sound/i2c/snd-i2c 0x1a0a8f96 snd_i2c_bus_create -EXPORT_SYMBOL sound/i2c/snd-i2c 0x496a0a59 snd_i2c_device_free -EXPORT_SYMBOL sound/i2c/snd-i2c 0x5d90f0b0 snd_i2c_probeaddr -EXPORT_SYMBOL sound/i2c/snd-i2c 0x8286fdc1 snd_i2c_readbytes -EXPORT_SYMBOL sound/i2c/snd-i2c 0xa99a87f8 snd_i2c_device_create -EXPORT_SYMBOL sound/i2c/snd-i2c 0xaab0c400 snd_i2c_sendbytes -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x46fdbf18 snd_sbdsp_reset -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x60307b22 snd_sbmixer_write -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x6320da4e snd_sbmixer_resume -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x70760e08 snd_sbdsp_get_byte -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x84db6e03 snd_sbmixer_suspend -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x8e27f39e snd_sbdsp_command -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x99d200df snd_sbmixer_add_ctl -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xbd8d8b27 snd_sbmixer_read -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xd4e2675a snd_sbmixer_new -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xf56e33ff snd_sbdsp_create -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x0bc6b232 snd_ac97_read -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x0fecbdea snd_ac97_pcm_close -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x246318d2 snd_ac97_mixer -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x3ecd6258 snd_ac97_update -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x405a9c49 snd_ac97_resume -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x4936d261 snd_ac97_pcm_open -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x8c1b77ec snd_ac97_bus -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xb5c78701 snd_ac97_set_rate -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xb71f9fe8 snd_ac97_suspend -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xb8859269 snd_ac97_update_power -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xc579da12 snd_ac97_pcm_assign -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xc96be606 snd_ac97_get_short_name -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xc97039e7 snd_ac97_write_cache -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xcfefb4fd snd_ac97_update_bits -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xe1d1722c snd_ac97_pcm_double_rate_rules -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xfdd51ea7 snd_ac97_write -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xffd4e3bd snd_ac97_tune_hardware -EXPORT_SYMBOL sound/pci/asihpi/snd-asihpi 0x69db89b9 hpi_send_recv -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x0c924472 snd_emu10k1_ptr_write -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x1fc94a5e snd_emu10k1_synth_copy_from_user -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x752592d2 snd_emu10k1_memblk_map -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x82f48c86 snd_emu10k1_voice_free -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x836ab4d5 snd_emu10k1_voice_alloc -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x84f469af snd_emu10k1_ptr_read -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xb6bf1dde snd_emu10k1_synth_alloc -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xe3e22755 snd_emu10k1_synth_bzero -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xf843354f snd_emu10k1_synth_free -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x0404fbef snd_ice1712_akm4xxx_init -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x1044dbb2 snd_ice1712_akm4xxx_free -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xb63827b2 snd_ice1712_akm4xxx_build_controls -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x118cd206 oxygen_reset_uart -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x196c13ad oxygen_read8 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x367d1c67 oxygen_write_uart -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x4bd15d66 oxygen_write32 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x4e5a27c3 oxygen_write8 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x5dfc4ab1 oxygen_read32 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x66301ca9 oxygen_pci_probe -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x7567b519 oxygen_pci_shutdown -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x7a6702c5 oxygen_write16 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x999f9a48 oxygen_write8_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x9c0e5ad2 oxygen_write_spi -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xacbeed87 oxygen_pci_pm -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xb0a059fe oxygen_read_ac97 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xba4b6fef oxygen_update_dac_routing -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xc59c18e4 oxygen_write32_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xc75b13b3 oxygen_write16_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xd318b198 oxygen_write_i2c -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xdfef4380 oxygen_write_ac97 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xf10a814d oxygen_read16 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xf36b72f1 oxygen_write_ac97_masked -EXPORT_SYMBOL sound/pci/trident/snd-trident 0x2638c93b snd_trident_alloc_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0x680a9160 snd_trident_stop_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0x8e8ed825 snd_trident_start_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0xc575fe68 snd_trident_free_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0xf556858b snd_trident_write_voice_regs +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x580bbd5a fw_iso_resources_allocate +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x61ad1cef iso_packets_buffer_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x6499291b amdtp_stream_set_parameters +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x6eb6b6d0 cmp_connection_break +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x79739fcf snd_fw_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x8c2ba2df cmp_connection_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x8f3dd14b amdtp_stream_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x98699589 cmp_connection_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x9d38fd36 amdtp_stream_pcm_abort +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa14204e6 fcp_bus_reset +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa98d847d amdtp_stream_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xad87b3ec cmp_connection_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb2a971bb cmp_connection_release +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb40dc232 fcp_avc_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb638ca81 avc_general_get_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb88ce309 cmp_connection_reserve +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb8e3b555 cmp_connection_establish +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xcf73ff93 avc_general_set_sig_fmt +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x9bcd5dd2 snd_ak4113_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0xa8947856 snd_ak4113_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x086068c1 snd_ak4114_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x25fb9427 snd_ak4114_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x45466bd5 snd_ak4114_reinit +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x6506e1b1 snd_ak4114_check_rate_and_errors +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x74dc605e snd_ak4114_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xb656ace4 snd_ak4114_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xc3443150 snd_ak4114_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xdde2dbab snd_ak4114_build +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x2ba47120 snd_ak4117_build +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x61308f60 snd_ak4117_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x6682273d snd_ak4117_reinit +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x92f5fb3e snd_ak4117_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xf609b622 snd_ak4117_check_rate_and_errors +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xff8245e3 snd_ak4117_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x20cb366b snd_akm4xxx_reset +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x7c574c81 snd_akm4xxx_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x9ff7f3ac snd_akm4xxx_init +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xda4d0f90 snd_akm4xxx_build_controls +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x5f87bf91 snd_pt2258_reset +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x71d2bda8 snd_pt2258_build_controls +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x1e5f2ae3 snd_cs8427_create +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x2af344ba snd_cs8427_iec958_build +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x66a77754 snd_cs8427_reg_write +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x7ac59c1c snd_cs8427_iec958_pcm +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xd1bae07e snd_cs8427_init +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xf9bc8600 snd_cs8427_iec958_active +EXPORT_SYMBOL sound/i2c/snd-i2c 0x0bb2eafb snd_i2c_device_free +EXPORT_SYMBOL sound/i2c/snd-i2c 0x0ee6359c snd_i2c_probeaddr +EXPORT_SYMBOL sound/i2c/snd-i2c 0x1703cda1 snd_i2c_readbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0x3a34f282 snd_i2c_sendbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0xaebe3888 snd_i2c_device_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0xc43b14d2 snd_i2c_bus_create +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x2e2fed76 snd_sbmixer_new +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x31e604b1 snd_sbdsp_get_byte +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x7dee4591 snd_sbmixer_add_ctl +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x8e92b4c1 snd_sbdsp_reset +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xa76388e7 snd_sbmixer_suspend +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xb9681173 snd_sbdsp_command +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xdd9f068b snd_sbmixer_read +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xe6330a9e snd_sbmixer_resume +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xf0e8af5c snd_sbdsp_create +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xf7fe3cbc snd_sbmixer_write +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x0165d6fc snd_ac97_update +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x1c1f9d5e snd_ac97_pcm_close +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x1f8c6a3b snd_ac97_write +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x2a8c8694 snd_ac97_update_power +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x3f6a2ed8 snd_ac97_pcm_open +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x4dd7ec8a snd_ac97_bus +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x4fd8cf4f snd_ac97_resume +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x59f3d2da snd_ac97_write_cache +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x87daea68 snd_ac97_mixer +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x92918874 snd_ac97_tune_hardware +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x9c4ce6fe snd_ac97_pcm_assign +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x9ca5af90 snd_ac97_read +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xa3d4e27f snd_ac97_update_bits +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xc23d4ea6 snd_ac97_suspend +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xdb55edf2 snd_ac97_pcm_double_rate_rules +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xe6303d0d snd_ac97_get_short_name +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xf86d1cda snd_ac97_set_rate +EXPORT_SYMBOL sound/pci/asihpi/snd-asihpi 0xd2d2f042 hpi_send_recv +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x05e66d39 snd_emu10k1_ptr_write +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x56b2158d snd_emu10k1_synth_copy_from_user +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xb650a369 snd_emu10k1_memblk_map +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xbf499fe6 snd_emu10k1_voice_alloc +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xc490c9b4 snd_emu10k1_synth_alloc +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xcd0baa44 snd_emu10k1_synth_bzero +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xd1664164 snd_emu10k1_voice_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xe16dc419 snd_emu10k1_synth_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xfd3840de snd_emu10k1_ptr_read +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x080378ae snd_ice1712_akm4xxx_free +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x1f30d880 snd_ice1712_akm4xxx_build_controls +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xb6d6643b snd_ice1712_akm4xxx_init +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x05a9e517 oxygen_pci_shutdown +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x0dc408b8 oxygen_read16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x24348227 oxygen_read8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x2ef19ff8 oxygen_update_dac_routing +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x54e7a6cf oxygen_pci_probe +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x6f244672 oxygen_write32_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x721559bc oxygen_read_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x76dc6a2a oxygen_write_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x7ac6092e oxygen_write_ac97_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x88aebd86 oxygen_write_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x8eeb591b oxygen_write_i2c +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x93773385 oxygen_write32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x95d96c73 oxygen_write8_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xa292f6a4 oxygen_write16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xaaf7b18d oxygen_pci_pm +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xc1192018 oxygen_read32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xc4f8caf9 oxygen_reset_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xc973ab13 oxygen_write8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xca610c21 oxygen_write16_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xe34c065e oxygen_write_spi +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x16dd1302 snd_trident_write_voice_regs +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x1c9d7150 snd_trident_stop_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x2d3f6074 snd_trident_free_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x4df7a3a4 snd_trident_alloc_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xc8e30fb8 snd_trident_start_voice EXPORT_SYMBOL sound/soc/amd/acp_audio_dma 0xea74f232 bt_uart_enable -EXPORT_SYMBOL sound/soc/codecs/snd-soc-adau1372 0xc5ae3592 adau1372_probe -EXPORT_SYMBOL sound/soc/codecs/snd-soc-lpass-wsa-macro 0x12963e9a wsa_macro_set_spkr_mode -EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0x20d53c5a pcm3060_probe -EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0xcdb04d91 pcm3060_regmap +EXPORT_SYMBOL sound/soc/codecs/snd-soc-adau1372 0x19364fc0 adau1372_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-lpass-wsa-macro 0xf6cc8129 wsa_macro_set_spkr_mode +EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0x7c4e0349 pcm3060_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0xc8761def pcm3060_regmap EXPORT_SYMBOL sound/soc/codecs/snd-soc-rt715 0xed2acb24 hda_to_sdw -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x387a70b4 tlv320aic23_regmap -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x579f7349 tlv320aic23_probe -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x4e9b9f64 aic32x4_regmap_config -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x6693fc3d aic32x4_probe -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x6cbd2119 aic32x4_remove -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic3x 0x4d79b23c aic3x_probe -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic3x 0xeae87b85 aic3x_remove +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x169e7aa0 tlv320aic23_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x32ec0dec tlv320aic23_regmap +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x202e05e3 aic32x4_remove +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x25490ae6 aic32x4_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x687d024d aic32x4_regmap_config +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic3x 0x1469dd5a aic3x_remove +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic3x 0x31eae990 aic3x_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x2638a110 wcd_mbhc_init EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x3a195ca9 wcd_mbhc_get_impedance -EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x48ce9eb5 wcd_mbhc_init -EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x7500a861 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 0xb16d7e60 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 0xda6878a8 wcd_dt_parse_mbhc_data +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0xe02f22ca wcd_mbhc_start EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0xe2beca26 wcd_mbhc_stop -EXPORT_SYMBOL sound/soc/snd-soc-core 0xcff57605 snd_soc_alloc_ac97_component -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x0210fc94 snd_sof_suspend -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x093149ee snd_sof_fw_unload -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x0a25c7b8 snd_sof_load_firmware -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x0f49819a sof_mailbox_read -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x11f3999d sof_machine_register -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x13f7f00b snd_sof_load_topology -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x1cd51de6 snd_sof_runtime_suspend +EXPORT_SYMBOL sound/soc/snd-soc-core 0xba05764a snd_soc_alloc_ac97_component +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x0150b8b5 snd_sof_device_remove +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x081ccffc sof_dai_get_bclk +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x0ac8031e snd_sof_fw_unload +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x12205655 snd_sof_device_probe_completed +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x14d89663 snd_sof_load_firmware_raw EXPORT_SYMBOL sound/soc/sof/snd-sof 0x1d22a5ea sof_ipc_tx_message_no_pm -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x22386e71 snd_sof_dsp_mailbox_init -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x229f9027 snd_sof_dsp_update_bits_forced -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x278d6c59 snd_sof_dsp_update_bits64_unlocked -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x34d23470 snd_sof_dsp_update_bits64 -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x39c42c64 snd_sof_parse_module_memcpy -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x407b435c snd_sof_get_status -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x426cd4ce snd_sof_ipc_msgs_rx -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x4471b740 snd_sof_runtime_resume -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x453995c3 snd_sof_device_probe_completed -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x497afb04 snd_sof_load_firmware_raw -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x52c78310 snd_sof_ipc_stream_posn -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x562865c2 sof_dai_get_mclk -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x57d4f034 sof_machine_unregister -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x5fcfe155 snd_sof_ipc_valid -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x60a5105b snd_sof_prepare -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x618551c5 sof_pcm_dai_link_fixup -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x627403b3 snd_sof_dsp_update_bits_unlocked -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x67f8c2a5 snd_sof_device_remove -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x6d22fab8 sof_machine_check -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x73518b61 snd_sof_dsp_panic -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x8062add2 snd_sof_resume -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x84f33db5 snd_sof_create_page_table -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x8936cffc snd_sof_pci_update_bits -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x8bad87e4 sof_io_write64 -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x8f709e09 snd_sof_free_trace -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x9495233d snd_sof_dsp_only_d0i3_compatible_stream_active -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa755043c sof_dai_get_bclk -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa8122ef7 snd_sof_device_shutdown -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa96b75f1 sof_block_read -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb2a7d9c7 snd_sof_ipc_reply -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb451a373 snd_sof_complete -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb594b96e snd_sof_fw_parse_ext_data -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb71b413d snd_sof_trace_notify_for_error -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb7b7f74b snd_sof_device_probe -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb8812da5 snd_sof_dsp_update_bits -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc57084fa snd_sof_init_trace -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc6c9fde2 snd_sof_ipc_init -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xcdac0424 snd_sof_ipc_free -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xce0168f5 snd_sof_run_firmware -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xcefa0723 sof_fw_ready +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x2805572f sof_io_write +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x2c6ace7d snd_sof_complete +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x3704ab04 sof_mailbox_write +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x386aceb6 sof_io_read64 +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x3d49947b snd_sof_runtime_idle +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x3d6edd1c snd_sof_dsp_only_d0i3_compatible_stream_active +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x3ef26c83 snd_sof_handle_fw_exception +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x40af31d6 sof_machine_check +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x481450a1 snd_sof_runtime_suspend +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x483c748a snd_sof_trace_notify_for_error +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x4ad8e0c2 snd_sof_load_topology +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x4d67a3b2 sof_dai_get_mclk +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x4f9264c5 sof_machine_register +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x509d2100 snd_sof_ipc_reply +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x5340c03b snd_sof_device_shutdown +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x5518894a snd_sof_ipc_msgs_rx +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x5572cb48 sof_mailbox_read +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x5e5b6a84 sof_io_read +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x5e77f1fc snd_sof_dsp_panic +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x6254797b snd_sof_suspend +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x639e4084 sof_io_write64 +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x63f01dc5 snd_sof_pci_update_bits +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x695ae5a8 snd_sof_pcm_period_elapsed +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x6be93b00 snd_sof_ipc_init +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x874cf2d5 snd_sof_ipc_set_get_comp_data +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x8fbf976e snd_sof_device_probe +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x92421697 sof_machine_unregister +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x936e54b0 snd_sof_dsp_update_bits +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x95093aa0 snd_sof_runtime_resume +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x973b70e5 snd_sof_dsp_update_bits_forced +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x9a6d7961 snd_sof_run_firmware +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x9b201574 sof_block_read +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xadcf591e snd_sof_dsp_mailbox_init +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb050d527 snd_sof_load_firmware_memcpy +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb22ce240 snd_sof_load_firmware +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb22e231d snd_sof_fw_parse_ext_data +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb9764f20 snd_sof_dsp_update_bits64_unlocked +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xba0b745b snd_sof_resume +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xba26c895 snd_sof_release_trace +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xbf459984 sof_block_write +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc377feff snd_sof_get_status +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc6807dcb snd_sof_free_trace +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xcb506996 snd_sof_dsp_update_bits_unlocked +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xcf0b8f7d snd_sof_ipc_valid EXPORT_SYMBOL sound/soc/sof/snd-sof 0xcfdc5f98 sof_ipc_tx_message -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd2c663de sof_mailbox_write -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd7ea1a1c snd_sof_runtime_idle -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xdafe7aed snd_sof_handle_fw_exception -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xdbd650e9 sof_block_write -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xdc913797 snd_sof_pcm_period_elapsed -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xe37c8b9d snd_sof_load_firmware_memcpy -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xee452056 sof_io_read64 -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf34ad2ed snd_sof_release_trace -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf5fc2242 sof_io_read -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf888fdd0 sof_io_write -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xfc9d580f snd_sof_ipc_set_get_comp_data -EXPORT_SYMBOL sound/soundcore 0x591af6f3 register_sound_special +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xdfe2051f snd_sof_ipc_free +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xe0d34a6b sof_fw_ready +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xe40b6a89 snd_sof_create_page_table +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xe4684b8a sof_pcm_dai_link_fixup +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf1aafc97 snd_sof_parse_module_memcpy +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf496afc3 snd_sof_init_trace +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xfbcaf23d snd_sof_prepare +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xfc547708 snd_sof_dsp_update_bits64 +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xfe267a8e snd_sof_ipc_stream_posn +EXPORT_SYMBOL sound/soundcore 0x1305a8b3 register_sound_mixer +EXPORT_SYMBOL sound/soundcore 0x3442f184 register_sound_special EXPORT_SYMBOL sound/soundcore 0x7afc9d8a unregister_sound_mixer -EXPORT_SYMBOL sound/soundcore 0x9323a420 register_sound_special_device EXPORT_SYMBOL sound/soundcore 0x99c95fa5 unregister_sound_special -EXPORT_SYMBOL sound/soundcore 0xcc73e712 sound_class +EXPORT_SYMBOL sound/soundcore 0xb70b3b91 register_sound_special_device EXPORT_SYMBOL sound/soundcore 0xcd083b10 unregister_sound_dsp -EXPORT_SYMBOL sound/soundcore 0xe774f3e8 register_sound_mixer -EXPORT_SYMBOL sound/soundcore 0xf23d6a0d register_sound_dsp -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x09975629 snd_emux_free -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x29af0922 snd_emux_unlock_voice -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x3ade8b4b snd_emux_lock_voice -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x47923b3b snd_emux_terminate_all +EXPORT_SYMBOL sound/soundcore 0xd4b9edbe register_sound_dsp +EXPORT_SYMBOL sound/soundcore 0xf1fc2a23 sound_class +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x13b5dca8 snd_emux_terminate_all +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x3316f195 snd_emux_lock_voice +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x3a347788 snd_emux_new EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x655cb202 snd_sf_linear_to_log -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x9734fa59 snd_emux_register -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xe8a4d194 snd_emux_new +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xcc0f2bf2 snd_emux_free +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xf268d8b0 snd_emux_register +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xfce63243 snd_emux_unlock_voice EXPORT_SYMBOL sound/synth/snd-util-mem 0x0eda33fa snd_util_memhdr_new EXPORT_SYMBOL sound/synth/snd-util-mem 0x2a48197f snd_util_mem_alloc EXPORT_SYMBOL sound/synth/snd-util-mem 0x6517719f __snd_util_mem_free @@ -6097,5668 +6110,5671 @@ EXPORT_SYMBOL sound/synth/snd-util-mem 0x9adc8c44 __snd_util_memblk_new 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 0x0a18195a __snd_usbmidi_create EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x16756dc0 snd_usbmidi_input_start EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x63343b1d snd_usbmidi_input_stop EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xb2af19e1 snd_usbmidi_resume EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xbed43a41 snd_usbmidi_suspend EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xd9d2bb03 snd_usbmidi_disconnect -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xfd8a92f2 __snd_usbmidi_create -EXPORT_SYMBOL vmlinux 0x000fcdf6 tcp_md5_do_add EXPORT_SYMBOL vmlinux 0x00148653 vsnprintf -EXPORT_SYMBOL vmlinux 0x002643f6 neigh_lookup -EXPORT_SYMBOL vmlinux 0x0030a958 cdev_add -EXPORT_SYMBOL vmlinux 0x0032c4f6 dm_io -EXPORT_SYMBOL vmlinux 0x003ccefb __devm_request_region -EXPORT_SYMBOL vmlinux 0x00591e9c ip_mc_check_igmp -EXPORT_SYMBOL vmlinux 0x00718e8f blk_pre_runtime_resume -EXPORT_SYMBOL vmlinux 0x0073e84a nobh_truncate_page -EXPORT_SYMBOL vmlinux 0x00938d0b inet_protos +EXPORT_SYMBOL vmlinux 0x001fd6b4 blk_mq_complete_request +EXPORT_SYMBOL vmlinux 0x004cfcdd pnp_register_card_driver +EXPORT_SYMBOL vmlinux 0x005d6a0f close_fd_get_file +EXPORT_SYMBOL vmlinux 0x006963b3 iommu_put_dma_cookie +EXPORT_SYMBOL vmlinux 0x00775480 remap_pfn_range +EXPORT_SYMBOL vmlinux 0x007d28cc from_kprojid +EXPORT_SYMBOL vmlinux 0x0080d933 pnp_activate_dev +EXPORT_SYMBOL vmlinux 0x00892b84 tcf_classify EXPORT_SYMBOL vmlinux 0x00a4b044 amd_iommu_deactivate_guest_mode EXPORT_SYMBOL vmlinux 0x00b4e615 posix_acl_equiv_mode EXPORT_SYMBOL vmlinux 0x00d7e722 vme_lm_count -EXPORT_SYMBOL vmlinux 0x00e15593 blk_queue_alignment_offset +EXPORT_SYMBOL vmlinux 0x00f37ec6 wait_on_page_private_2_killable +EXPORT_SYMBOL vmlinux 0x00f45b40 iterate_dir EXPORT_SYMBOL vmlinux 0x01000e51 schedule -EXPORT_SYMBOL vmlinux 0x010c1529 skb_orphan_partial +EXPORT_SYMBOL vmlinux 0x0114914e truncate_setsize +EXPORT_SYMBOL vmlinux 0x011b5b92 dma_pool_create EXPORT_SYMBOL vmlinux 0x011bab86 prepare_creds +EXPORT_SYMBOL vmlinux 0x01385002 migrate_vma_finalize EXPORT_SYMBOL vmlinux 0x013f26ae dma_fence_get_stub -EXPORT_SYMBOL vmlinux 0x01408db6 d_obtain_alias -EXPORT_SYMBOL vmlinux 0x01410d22 xfrm_state_add -EXPORT_SYMBOL vmlinux 0x0141ac26 iw_handler_set_spy -EXPORT_SYMBOL vmlinux 0x0147148e end_page_private_2 EXPORT_SYMBOL vmlinux 0x0147812c kblockd_mod_delayed_work_on +EXPORT_SYMBOL vmlinux 0x014cfcf5 pci_free_irq EXPORT_SYMBOL vmlinux 0x015af7f4 system_state -EXPORT_SYMBOL vmlinux 0x016e2024 pm860x_reg_read +EXPORT_SYMBOL vmlinux 0x015d0f89 agp_collect_device_status EXPORT_SYMBOL vmlinux 0x01757935 rdmacg_register_device -EXPORT_SYMBOL vmlinux 0x01773cc3 xsk_tx_peek_desc EXPORT_SYMBOL vmlinux 0x017de3d5 nr_cpu_ids -EXPORT_SYMBOL vmlinux 0x0184d7e0 security_old_inode_init_security EXPORT_SYMBOL vmlinux 0x018574a1 mb_cache_entry_delete EXPORT_SYMBOL vmlinux 0x0188cd88 vme_alloc_consistent EXPORT_SYMBOL vmlinux 0x0199c3bd ethtool_intersect_link_masks -EXPORT_SYMBOL vmlinux 0x01aec2ab mdio_bus_type -EXPORT_SYMBOL vmlinux 0x01b3a183 submit_bio_wait +EXPORT_SYMBOL vmlinux 0x01afafbc udp_gro_complete +EXPORT_SYMBOL vmlinux 0x01afcf21 security_inode_setsecctx EXPORT_SYMBOL vmlinux 0x01b6865c xa_get_mark EXPORT_SYMBOL vmlinux 0x01bf55fc paddr_vmcoreinfo_note -EXPORT_SYMBOL vmlinux 0x01eb7c25 iov_iter_pipe +EXPORT_SYMBOL vmlinux 0x01e0af05 reuseport_select_sock +EXPORT_SYMBOL vmlinux 0x01e4efae ilookup5 +EXPORT_SYMBOL vmlinux 0x01ea4c79 unpin_user_page +EXPORT_SYMBOL vmlinux 0x01fb2b6c watchdog_register_governor +EXPORT_SYMBOL vmlinux 0x01fd90c1 param_set_bool +EXPORT_SYMBOL vmlinux 0x0209f3a7 secure_ipv6_port_ephemeral +EXPORT_SYMBOL vmlinux 0x020c5b00 mark_buffer_async_write EXPORT_SYMBOL vmlinux 0x020dbf27 bitmap_alloc -EXPORT_SYMBOL vmlinux 0x021043ed __phy_read_mmd EXPORT_SYMBOL vmlinux 0x02124474 ip_send_check -EXPORT_SYMBOL vmlinux 0x021a5028 ip6_xmit EXPORT_SYMBOL vmlinux 0x0228925f iowrite64_hi_lo EXPORT_SYMBOL vmlinux 0x02293ac3 dma_fence_chain_ops -EXPORT_SYMBOL vmlinux 0x02322200 tcf_generic_walker +EXPORT_SYMBOL vmlinux 0x022bab5f kthread_create_on_node EXPORT_SYMBOL vmlinux 0x0237b57a arch_unregister_cpu -EXPORT_SYMBOL vmlinux 0x02390aa4 security_sb_remount -EXPORT_SYMBOL vmlinux 0x023ba1ec blk_mq_end_request +EXPORT_SYMBOL vmlinux 0x023a4e34 inet6_unregister_protosw EXPORT_SYMBOL vmlinux 0x023d1b90 wrmsr_on_cpu +EXPORT_SYMBOL vmlinux 0x023eb15b phy_get_pause EXPORT_SYMBOL vmlinux 0x0248efd3 kstrtobool_from_user -EXPORT_SYMBOL vmlinux 0x024933fb blk_integrity_compare -EXPORT_SYMBOL vmlinux 0x02567664 eisa_bus_type -EXPORT_SYMBOL vmlinux 0x0264cba6 arp_create -EXPORT_SYMBOL vmlinux 0x02664e36 ip_sock_set_recverr +EXPORT_SYMBOL vmlinux 0x0255ff77 pnp_stop_dev +EXPORT_SYMBOL vmlinux 0x02590dd9 agp_generic_destroy_pages EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues -EXPORT_SYMBOL vmlinux 0x0277de64 fb_is_primary_device -EXPORT_SYMBOL vmlinux 0x027b2e86 scsi_is_host_device -EXPORT_SYMBOL vmlinux 0x028bf3ce security_dentry_init_security +EXPORT_SYMBOL vmlinux 0x0282b901 pci_scan_bridge +EXPORT_SYMBOL vmlinux 0x0290ece0 xfrm6_rcv_tnl EXPORT_SYMBOL vmlinux 0x0296695f refcount_warn_saturate -EXPORT_SYMBOL vmlinux 0x02a18c74 nf_conntrack_destroy -EXPORT_SYMBOL vmlinux 0x02b54153 write_inode_now +EXPORT_SYMBOL vmlinux 0x02ae53f6 rtnl_set_sk_err EXPORT_SYMBOL vmlinux 0x02b8ab42 sg_copy_to_buffer -EXPORT_SYMBOL vmlinux 0x02bf5e18 bio_reset +EXPORT_SYMBOL vmlinux 0x02b8eee3 blk_pm_runtime_init EXPORT_SYMBOL vmlinux 0x02c656b6 acpi_enable_all_runtime_gpes -EXPORT_SYMBOL vmlinux 0x02cbb563 skb_ensure_writable -EXPORT_SYMBOL vmlinux 0x02cec435 find_get_pages_range_tag -EXPORT_SYMBOL vmlinux 0x02d5a8c5 pci_alloc_dev -EXPORT_SYMBOL vmlinux 0x02d64ad2 inet_csk_init_xmit_timers -EXPORT_SYMBOL vmlinux 0x02dc390d __inc_node_page_state -EXPORT_SYMBOL vmlinux 0x02ebea7d param_ops_uint -EXPORT_SYMBOL vmlinux 0x02fb00bf dns_query -EXPORT_SYMBOL vmlinux 0x02fd6fd4 flow_rule_alloc -EXPORT_SYMBOL vmlinux 0x030bb283 submit_bio_noacct -EXPORT_SYMBOL vmlinux 0x0314853c scm_detach_fds -EXPORT_SYMBOL vmlinux 0x0314dbcf dev_driver_string +EXPORT_SYMBOL vmlinux 0x02da2919 tty_driver_kref_put +EXPORT_SYMBOL vmlinux 0x02e02ae0 iw_handler_set_spy +EXPORT_SYMBOL vmlinux 0x02e836dc phy_find_first +EXPORT_SYMBOL vmlinux 0x02ffbec5 jbd2_journal_start_reserved +EXPORT_SYMBOL vmlinux 0x0307b60a generic_file_mmap +EXPORT_SYMBOL vmlinux 0x030dabe2 dquot_mark_dquot_dirty +EXPORT_SYMBOL vmlinux 0x030fc6dd __frontswap_load +EXPORT_SYMBOL vmlinux 0x0310e2b3 ata_std_end_eh +EXPORT_SYMBOL vmlinux 0x031c3089 d_add_ci +EXPORT_SYMBOL vmlinux 0x031c867f __SCK__tp_func_kmalloc_node EXPORT_SYMBOL vmlinux 0x0334795d icst307_s2div EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl -EXPORT_SYMBOL vmlinux 0x0341f28d elv_rb_find -EXPORT_SYMBOL vmlinux 0x03428e69 xfrm4_protocol_register -EXPORT_SYMBOL vmlinux 0x0349c212 xfrm_unregister_km -EXPORT_SYMBOL vmlinux 0x035832e3 scsi_add_device +EXPORT_SYMBOL vmlinux 0x035e28bf __SCK__tp_func_kmem_cache_alloc +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 0x0367b089 jbd2_journal_abort EXPORT_SYMBOL vmlinux 0x037a0cba kfree EXPORT_SYMBOL vmlinux 0x03815f35 ledtrig_disk_activity -EXPORT_SYMBOL vmlinux 0x0385227b phy_write_mmd -EXPORT_SYMBOL vmlinux 0x03972367 tty_chars_in_buffer -EXPORT_SYMBOL vmlinux 0x0397a4db tcp_time_wait +EXPORT_SYMBOL vmlinux 0x03972004 phy_init_eee EXPORT_SYMBOL vmlinux 0x0397edd5 fb_edid_to_monspecs -EXPORT_SYMBOL vmlinux 0x039ab6a3 seq_vprintf -EXPORT_SYMBOL vmlinux 0x03a17059 tcf_block_get_ext -EXPORT_SYMBOL vmlinux 0x03aca171 inet_csk_destroy_sock -EXPORT_SYMBOL vmlinux 0x03b1e5fc md_wakeup_thread -EXPORT_SYMBOL vmlinux 0x03becfbc __blk_mq_end_request +EXPORT_SYMBOL vmlinux 0x03b03819 sock_i_uid EXPORT_SYMBOL vmlinux 0x03bf0e5a acpi_walk_resource_buffer -EXPORT_SYMBOL vmlinux 0x03ca029e sock_alloc_send_skb -EXPORT_SYMBOL vmlinux 0x03cc16fa scsi_dma_unmap +EXPORT_SYMBOL vmlinux 0x03de62e7 pnp_is_active +EXPORT_SYMBOL vmlinux 0x03e0eaa9 blk_mq_start_hw_queues +EXPORT_SYMBOL vmlinux 0x03e50d3e neigh_table_clear +EXPORT_SYMBOL vmlinux 0x03fbeac0 param_ops_charp EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram -EXPORT_SYMBOL vmlinux 0x0402f58e phy_drivers_register -EXPORT_SYMBOL vmlinux 0x041d4cd1 touch_atime +EXPORT_SYMBOL vmlinux 0x03fe95df fscrypt_free_bounce_page +EXPORT_SYMBOL vmlinux 0x040180a3 netdev_master_upper_dev_get_rcu +EXPORT_SYMBOL vmlinux 0x0404bda3 devm_free_irq +EXPORT_SYMBOL vmlinux 0x0409ecfd scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x04164dd2 edac_mc_find +EXPORT_SYMBOL vmlinux 0x04375621 udp_set_csum +EXPORT_SYMBOL vmlinux 0x043a4b27 netdev_state_change EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator -EXPORT_SYMBOL vmlinux 0x0452ed8f find_vma -EXPORT_SYMBOL vmlinux 0x04622b30 put_fs_context +EXPORT_SYMBOL vmlinux 0x0450c206 remove_conflicting_pci_framebuffers +EXPORT_SYMBOL vmlinux 0x045e90ec dump_page EXPORT_SYMBOL vmlinux 0x0474edef kstrtou16_from_user -EXPORT_SYMBOL vmlinux 0x04817a5c free_task -EXPORT_SYMBOL vmlinux 0x04849e4b jbd2_journal_check_available_features EXPORT_SYMBOL vmlinux 0x0484c6c4 acpi_enter_sleep_state_prep -EXPORT_SYMBOL vmlinux 0x048522b0 task_work_add EXPORT_SYMBOL vmlinux 0x04863e28 hdmi_audio_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0x049307b0 cad_pid -EXPORT_SYMBOL vmlinux 0x049c6f4f fscrypt_encrypt_pagecache_blocks -EXPORT_SYMBOL vmlinux 0x04b3ea16 stop_tty -EXPORT_SYMBOL vmlinux 0x04bdd2e4 netlink_rcv_skb +EXPORT_SYMBOL vmlinux 0x048d59e4 pcim_iomap +EXPORT_SYMBOL vmlinux 0x048e92f0 vfs_create +EXPORT_SYMBOL vmlinux 0x049c4560 dquot_quotactl_sysfile_ops +EXPORT_SYMBOL vmlinux 0x04aa83aa vfs_mkobj +EXPORT_SYMBOL vmlinux 0x04c60cbb tc_setup_cb_call EXPORT_SYMBOL vmlinux 0x04c62fd7 __memset -EXPORT_SYMBOL vmlinux 0x04cd0cf3 dma_mmap_attrs -EXPORT_SYMBOL vmlinux 0x04d37b3c skb_eth_pop EXPORT_SYMBOL vmlinux 0x04d8c750 release_perfctr_nmi EXPORT_SYMBOL vmlinux 0x04d9bf4e blk_set_stacking_limits +EXPORT_SYMBOL vmlinux 0x04db3dc5 scsi_print_result EXPORT_SYMBOL vmlinux 0x04ea5d10 ksize -EXPORT_SYMBOL vmlinux 0x04f446c5 fb_blank -EXPORT_SYMBOL vmlinux 0x04f9a1f6 pci_reenable_device +EXPORT_SYMBOL vmlinux 0x04f89285 __hw_addr_unsync_dev EXPORT_SYMBOL vmlinux 0x050877b9 dmi_first_match -EXPORT_SYMBOL vmlinux 0x051bb0be tcf_action_exec +EXPORT_SYMBOL vmlinux 0x050e17fa skb_add_rx_frag EXPORT_SYMBOL vmlinux 0x051d58e8 dma_fence_wait_any_timeout +EXPORT_SYMBOL vmlinux 0x051e7c88 devm_clk_get EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch +EXPORT_SYMBOL vmlinux 0x053f7ed1 open_exec EXPORT_SYMBOL vmlinux 0x054496b4 schedule_timeout_interruptible +EXPORT_SYMBOL vmlinux 0x054e8d64 security_sb_remount EXPORT_SYMBOL vmlinux 0x055e77e8 jiffies_64 -EXPORT_SYMBOL vmlinux 0x0566731e netdev_has_any_upper_dev -EXPORT_SYMBOL vmlinux 0x05736297 security_unix_may_send -EXPORT_SYMBOL vmlinux 0x0580fc57 sock_set_mark -EXPORT_SYMBOL vmlinux 0x0581bf9f agp_bridge -EXPORT_SYMBOL vmlinux 0x05850a43 dput -EXPORT_SYMBOL vmlinux 0x0594ecb1 devm_clk_get +EXPORT_SYMBOL vmlinux 0x05641e3c igrab +EXPORT_SYMBOL vmlinux 0x05658139 __nlmsg_put +EXPORT_SYMBOL vmlinux 0x056bfd61 i2c_verify_adapter +EXPORT_SYMBOL vmlinux 0x05747799 input_mt_report_finger_count EXPORT_SYMBOL vmlinux 0x059e1482 __traceiter_dma_fence_emit -EXPORT_SYMBOL vmlinux 0x05a2f8fc path_is_mountpoint -EXPORT_SYMBOL vmlinux 0x05b63152 phy_support_asym_pause -EXPORT_SYMBOL vmlinux 0x05ccc501 kthread_stop -EXPORT_SYMBOL vmlinux 0x06019741 neigh_xmit +EXPORT_SYMBOL vmlinux 0x05aca993 __check_sticky +EXPORT_SYMBOL vmlinux 0x05f84112 __tcp_md5_do_lookup +EXPORT_SYMBOL vmlinux 0x05fbb6b6 generic_set_encrypted_ci_d_ops +EXPORT_SYMBOL vmlinux 0x06012e27 pfifo_fast_ops EXPORT_SYMBOL vmlinux 0x06052f8d __memmove -EXPORT_SYMBOL vmlinux 0x060ba668 misc_deregister EXPORT_SYMBOL vmlinux 0x060ba97c gen_pool_free_owner EXPORT_SYMBOL vmlinux 0x061651be strcat -EXPORT_SYMBOL vmlinux 0x061d91fc agp_create_memory -EXPORT_SYMBOL vmlinux 0x0633b468 d_instantiate +EXPORT_SYMBOL vmlinux 0x0620bdf0 sock_wfree +EXPORT_SYMBOL vmlinux 0x062794c4 genphy_handle_interrupt_no_ack EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user -EXPORT_SYMBOL vmlinux 0x0640812a pci_find_next_bus -EXPORT_SYMBOL vmlinux 0x0643837c register_qdisc -EXPORT_SYMBOL vmlinux 0x064b03ea vga_switcheroo_init_domain_pm_ops -EXPORT_SYMBOL vmlinux 0x0658d4ba pci_enable_wake +EXPORT_SYMBOL vmlinux 0x06365d0a __ip_dev_find +EXPORT_SYMBOL vmlinux 0x0649ab8a __sk_receive_skb +EXPORT_SYMBOL vmlinux 0x064b66b8 ethtool_op_get_ts_info +EXPORT_SYMBOL vmlinux 0x06535820 dev_addr_flush +EXPORT_SYMBOL vmlinux 0x0657aaf9 blk_rq_map_integrity_sg +EXPORT_SYMBOL vmlinux 0x06610b11 lock_sock_nested EXPORT_SYMBOL vmlinux 0x0668b595 _kstrtoul -EXPORT_SYMBOL vmlinux 0x068d1d45 iov_iter_advance -EXPORT_SYMBOL vmlinux 0x069129f5 __xfrm_route_forward +EXPORT_SYMBOL vmlinux 0x0672283b lookup_one +EXPORT_SYMBOL vmlinux 0x067a2b01 __cpuhp_remove_state_cpuslocked EXPORT_SYMBOL vmlinux 0x06a86bc1 iowrite16 -EXPORT_SYMBOL vmlinux 0x06ae3c6f sync_inode_metadata -EXPORT_SYMBOL vmlinux 0x06b9e1e3 fb_find_mode +EXPORT_SYMBOL vmlinux 0x06aed265 param_ops_int +EXPORT_SYMBOL vmlinux 0x06b414b1 netif_rx EXPORT_SYMBOL vmlinux 0x06bd88b5 ucs2_strnlen -EXPORT_SYMBOL vmlinux 0x06c03058 serial8250_do_pm -EXPORT_SYMBOL vmlinux 0x06c28e8f __tcf_em_tree_match +EXPORT_SYMBOL vmlinux 0x06c472d5 ptp_clock_unregister +EXPORT_SYMBOL vmlinux 0x06c62707 __skb_flow_dissect EXPORT_SYMBOL vmlinux 0x06c8f2de slhc_compress -EXPORT_SYMBOL vmlinux 0x06dc2cea kill_fasync -EXPORT_SYMBOL vmlinux 0x06e31897 fput -EXPORT_SYMBOL vmlinux 0x06f0ac3c tcf_idr_search -EXPORT_SYMBOL vmlinux 0x06f696bf lock_two_nondirectories -EXPORT_SYMBOL vmlinux 0x06f868c6 try_module_get -EXPORT_SYMBOL vmlinux 0x06fa2667 dquot_claim_space_nodirty -EXPORT_SYMBOL vmlinux 0x0700f325 find_get_pages_contig -EXPORT_SYMBOL vmlinux 0x070c960a seg6_push_hmac -EXPORT_SYMBOL vmlinux 0x07199f1a serio_open +EXPORT_SYMBOL vmlinux 0x06ca8e46 rtnl_create_link +EXPORT_SYMBOL vmlinux 0x06cb9068 tcp_v4_send_check +EXPORT_SYMBOL vmlinux 0x06cf9ba2 __cgroup_bpf_run_filter_sk +EXPORT_SYMBOL vmlinux 0x06f3d652 __blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0x070ad7f8 phy_ethtool_ksettings_get +EXPORT_SYMBOL vmlinux 0x07286b1a skb_vlan_untag +EXPORT_SYMBOL vmlinux 0x072cb108 kthread_create_worker_on_cpu EXPORT_SYMBOL vmlinux 0x072f901c vme_master_rmw -EXPORT_SYMBOL vmlinux 0x073e813f release_sock EXPORT_SYMBOL vmlinux 0x0745a981 xa_erase -EXPORT_SYMBOL vmlinux 0x0765c550 dcb_getapp -EXPORT_SYMBOL vmlinux 0x076a4587 sk_net_capable -EXPORT_SYMBOL vmlinux 0x076c6028 inet_pton_with_scope -EXPORT_SYMBOL vmlinux 0x079b799b __getblk_gfp -EXPORT_SYMBOL vmlinux 0x079b93ab vme_slot_num +EXPORT_SYMBOL vmlinux 0x0756f3d2 blk_mq_tagset_wait_completed_request +EXPORT_SYMBOL vmlinux 0x075db946 __skb_gso_segment +EXPORT_SYMBOL vmlinux 0x07784697 do_clone_file_range +EXPORT_SYMBOL vmlinux 0x07a35915 mipi_dsi_dcs_set_column_address EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap -EXPORT_SYMBOL vmlinux 0x07ac219d sock_no_ioctl -EXPORT_SYMBOL vmlinux 0x07c0fe90 tty_port_close_end -EXPORT_SYMBOL vmlinux 0x07c89279 param_get_ulong -EXPORT_SYMBOL vmlinux 0x07ca4c9d devm_clk_put +EXPORT_SYMBOL vmlinux 0x07b99920 d_set_d_op +EXPORT_SYMBOL vmlinux 0x07c59b1f set_create_files_as EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit EXPORT_SYMBOL vmlinux 0x07ceeac9 panic_notifier_list -EXPORT_SYMBOL vmlinux 0x07f3e207 xfrm_policy_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x07d700d7 audit_log +EXPORT_SYMBOL vmlinux 0x07e12ba8 __remove_inode_hash EXPORT_SYMBOL vmlinux 0x07f57478 pci_unmap_iospace +EXPORT_SYMBOL vmlinux 0x07fe5d6b nd_integrity_init EXPORT_SYMBOL vmlinux 0x0800473f __cond_resched EXPORT_SYMBOL vmlinux 0x0805f2c8 ecryptfs_get_auth_tok_key -EXPORT_SYMBOL vmlinux 0x08146d47 inode_dio_wait EXPORT_SYMBOL vmlinux 0x08162c74 free_bucket_spinlocks +EXPORT_SYMBOL vmlinux 0x081904b5 pnp_unregister_card_driver EXPORT_SYMBOL vmlinux 0x08249512 iwe_stream_add_point -EXPORT_SYMBOL vmlinux 0x0829704d genlmsg_multicast_allns EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses +EXPORT_SYMBOL vmlinux 0x082e7902 send_sig_mceerr +EXPORT_SYMBOL vmlinux 0x08302320 ipv6_chk_addr EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister -EXPORT_SYMBOL vmlinux 0x08407b7c rproc_elf_load_segments +EXPORT_SYMBOL vmlinux 0x08533111 fb_pan_display +EXPORT_SYMBOL vmlinux 0x08572599 mdio_driver_register +EXPORT_SYMBOL vmlinux 0x085d8e1c pagecache_write_end +EXPORT_SYMBOL vmlinux 0x0868648e phy_reset_after_clk_enable EXPORT_SYMBOL vmlinux 0x0882a449 security_xfrm_policy_alloc -EXPORT_SYMBOL vmlinux 0x088f30ea fscrypt_ioctl_get_policy -EXPORT_SYMBOL vmlinux 0x08ad07d1 sock_recv_errqueue -EXPORT_SYMBOL vmlinux 0x08af0075 buffer_migrate_page -EXPORT_SYMBOL vmlinux 0x08c8920b mr_table_alloc -EXPORT_SYMBOL vmlinux 0x08e27642 unlock_page -EXPORT_SYMBOL vmlinux 0x08e511b1 xfrm_policy_insert -EXPORT_SYMBOL vmlinux 0x08e89fb4 d_set_fallthru -EXPORT_SYMBOL vmlinux 0x08f181c8 pci_enable_device_mem -EXPORT_SYMBOL vmlinux 0x08f25ddf blk_queue_flag_set +EXPORT_SYMBOL vmlinux 0x088462ca dquot_commit_info +EXPORT_SYMBOL vmlinux 0x0891b084 dmaenginem_async_device_register +EXPORT_SYMBOL vmlinux 0x08b71a6e tty_insert_flip_string_flags +EXPORT_SYMBOL vmlinux 0x08bb1e64 pcim_iounmap +EXPORT_SYMBOL vmlinux 0x08dd54c3 i2c_transfer_buffer_flags +EXPORT_SYMBOL vmlinux 0x08de0221 d_find_any_alias +EXPORT_SYMBOL vmlinux 0x08f2bcc5 kernel_read +EXPORT_SYMBOL vmlinux 0x0908caef tty_port_alloc_xmit_buf +EXPORT_SYMBOL vmlinux 0x090cd04c __dst_destroy_metrics_generic EXPORT_SYMBOL vmlinux 0x092e26bf acpi_remove_address_space_handler -EXPORT_SYMBOL vmlinux 0x092ec188 phy_attach EXPORT_SYMBOL vmlinux 0x093712e5 acpi_purge_cached_objects -EXPORT_SYMBOL vmlinux 0x094343f1 mmc_cqe_post_req -EXPORT_SYMBOL vmlinux 0x096728f4 neigh_app_ns +EXPORT_SYMBOL vmlinux 0x094809a8 vlan_ioctl_set +EXPORT_SYMBOL vmlinux 0x0953d779 netdev_change_features +EXPORT_SYMBOL vmlinux 0x09732dad page_cache_prev_miss EXPORT_SYMBOL vmlinux 0x09769037 dmt_modes EXPORT_SYMBOL vmlinux 0x097af021 neigh_proc_dointvec_jiffies -EXPORT_SYMBOL vmlinux 0x098b17f4 dev_load +EXPORT_SYMBOL vmlinux 0x0982521a __skb_wait_for_more_packets EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap +EXPORT_SYMBOL vmlinux 0x098c8138 d_prune_aliases +EXPORT_SYMBOL vmlinux 0x098e1b5e get_user_pages_remote EXPORT_SYMBOL vmlinux 0x0998cc3c hdmi_infoframe_unpack -EXPORT_SYMBOL vmlinux 0x09a23210 cros_ec_get_host_event -EXPORT_SYMBOL vmlinux 0x09a3c999 ethtool_rx_flow_rule_create -EXPORT_SYMBOL vmlinux 0x09a6ee11 simple_dir_inode_operations -EXPORT_SYMBOL vmlinux 0x09a752ec seg6_hmac_info_add -EXPORT_SYMBOL vmlinux 0x09a7bbe4 rproc_boot -EXPORT_SYMBOL vmlinux 0x09c9cd18 phy_ethtool_ksettings_get +EXPORT_SYMBOL vmlinux 0x09a394be dmam_pool_create +EXPORT_SYMBOL vmlinux 0x09a97a75 genphy_read_abilities +EXPORT_SYMBOL vmlinux 0x09b3c774 skb_set_owner_w +EXPORT_SYMBOL vmlinux 0x09bd97c5 inet_dev_addr_type +EXPORT_SYMBOL vmlinux 0x09cbcf59 amd_iommu_complete_ppr EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions +EXPORT_SYMBOL vmlinux 0x09d7d0c4 arp_xmit EXPORT_SYMBOL vmlinux 0x09da0ba4 xa_set_mark -EXPORT_SYMBOL vmlinux 0x09da21dd unregister_md_personality -EXPORT_SYMBOL vmlinux 0x09dc7ec1 acpi_bus_get_device +EXPORT_SYMBOL vmlinux 0x09dfd2a5 udp_pre_connect +EXPORT_SYMBOL vmlinux 0x09eff057 fifo_set_limit +EXPORT_SYMBOL vmlinux 0x09f5e833 inc_zone_page_state EXPORT_SYMBOL vmlinux 0x0a0ebc08 __xa_cmpxchg +EXPORT_SYMBOL vmlinux 0x0a19b85e iw_handler_set_thrspy EXPORT_SYMBOL vmlinux 0x0a1dbc76 tcp_rx_skb_cache_key EXPORT_SYMBOL vmlinux 0x0a2a0bce nla_append -EXPORT_SYMBOL vmlinux 0x0a2a79c1 inet_addr_type_table -EXPORT_SYMBOL vmlinux 0x0a52988c netdev_lower_get_next_private +EXPORT_SYMBOL vmlinux 0x0a30467c tcp_mmap +EXPORT_SYMBOL vmlinux 0x0a30472e scsi_partsize +EXPORT_SYMBOL vmlinux 0x0a53470d input_set_timestamp +EXPORT_SYMBOL vmlinux 0x0a56d61f input_get_timestamp +EXPORT_SYMBOL vmlinux 0x0a67e331 param_ops_long EXPORT_SYMBOL vmlinux 0x0a770832 register_memory_notifier -EXPORT_SYMBOL vmlinux 0x0a8b6c47 max8998_bulk_read +EXPORT_SYMBOL vmlinux 0x0a7ca8f5 agp_generic_enable +EXPORT_SYMBOL vmlinux 0x0a80ce60 scsi_add_device EXPORT_SYMBOL vmlinux 0x0a92ec74 boot_cpu_data -EXPORT_SYMBOL vmlinux 0x0a962223 flow_rule_match_enc_control -EXPORT_SYMBOL vmlinux 0x0a9c4116 tcf_idr_cleanup +EXPORT_SYMBOL vmlinux 0x0a9ade32 simple_transaction_release +EXPORT_SYMBOL vmlinux 0x0a9d46d7 ata_scsi_cmd_error_handler EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq EXPORT_SYMBOL vmlinux 0x0aaccc92 pci_remap_iospace -EXPORT_SYMBOL vmlinux 0x0aca2e6d devfreq_recommended_opp EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all -EXPORT_SYMBOL vmlinux 0x0ad6a133 pci_enable_msi -EXPORT_SYMBOL vmlinux 0x0adbdcaa skb_clone -EXPORT_SYMBOL vmlinux 0x0adf81f2 sk_reset_timer -EXPORT_SYMBOL vmlinux 0x0ae3e287 key_move -EXPORT_SYMBOL vmlinux 0x0af71e75 inet_proto_csum_replace_by_diff +EXPORT_SYMBOL vmlinux 0x0adf7f64 drop_super +EXPORT_SYMBOL vmlinux 0x0af544f3 vlan_vids_add_by_dev +EXPORT_SYMBOL vmlinux 0x0af61bb4 reuseport_attach_prog +EXPORT_SYMBOL vmlinux 0x0b0022c0 netif_device_attach +EXPORT_SYMBOL vmlinux 0x0b0f954a phy_disconnect EXPORT_SYMBOL vmlinux 0x0b19b445 ioread8 EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user -EXPORT_SYMBOL vmlinux 0x0b23780b ptp_find_pin +EXPORT_SYMBOL vmlinux 0x0b1d5ffd jbd2_journal_extend +EXPORT_SYMBOL vmlinux 0x0b26af65 xfrm_state_lookup_byspi EXPORT_SYMBOL vmlinux 0x0b26b8c8 acpi_run_osc EXPORT_SYMBOL vmlinux 0x0b290ada dma_fence_chain_walk -EXPORT_SYMBOL vmlinux 0x0b539d98 rproc_report_crash +EXPORT_SYMBOL vmlinux 0x0b387c1b single_open +EXPORT_SYMBOL vmlinux 0x0b44b0cd eth_type_trans +EXPORT_SYMBOL vmlinux 0x0b4668bd pci_resize_resource EXPORT_SYMBOL vmlinux 0x0b637410 cr4_update_irqsoff -EXPORT_SYMBOL vmlinux 0x0b671caf dev_get_by_index_rcu -EXPORT_SYMBOL vmlinux 0x0b6e0875 amd_iommu_domain_set_gcr3 -EXPORT_SYMBOL vmlinux 0x0b6f5ee2 xfrm_if_register_cb -EXPORT_SYMBOL vmlinux 0x0b70a669 lookup_one_len_unlocked +EXPORT_SYMBOL vmlinux 0x0b69d9c4 pcie_relaxed_ordering_enabled EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol -EXPORT_SYMBOL vmlinux 0x0b790fd6 cros_ec_check_result -EXPORT_SYMBOL vmlinux 0x0b809ca0 from_kuid -EXPORT_SYMBOL vmlinux 0x0b885a33 request_key_rcu -EXPORT_SYMBOL vmlinux 0x0b980ed3 get_ipc_ns_exported +EXPORT_SYMBOL vmlinux 0x0b7fe866 cros_ec_get_host_event +EXPORT_SYMBOL vmlinux 0x0b8b4aa1 dev_graft_qdisc +EXPORT_SYMBOL vmlinux 0x0b90e33d __tracepoint_spi_transfer_start +EXPORT_SYMBOL vmlinux 0x0b928981 backlight_device_get_by_name +EXPORT_SYMBOL vmlinux 0x0b97a2b5 qdisc_reset +EXPORT_SYMBOL vmlinux 0x0b99ea1c sock_kzfree_s EXPORT_SYMBOL vmlinux 0x0ba0b938 vm_brk +EXPORT_SYMBOL vmlinux 0x0ba0de2a md_write_end EXPORT_SYMBOL vmlinux 0x0bbfa78c set_security_override_from_ctx +EXPORT_SYMBOL vmlinux 0x0bc39754 __dev_get_by_index EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type -EXPORT_SYMBOL vmlinux 0x0be33afa kernel_param_lock -EXPORT_SYMBOL vmlinux 0x0bf09255 pci_get_device +EXPORT_SYMBOL vmlinux 0x0bc57ec9 dma_map_resource +EXPORT_SYMBOL vmlinux 0x0bc99adb block_is_partially_uptodate +EXPORT_SYMBOL vmlinux 0x0bcac4bf set_capacity +EXPORT_SYMBOL vmlinux 0x0bde9f28 tcp_get_cookie_sock +EXPORT_SYMBOL vmlinux 0x0bef5dd2 __xfrm_init_state +EXPORT_SYMBOL vmlinux 0x0bf16b4f skb_mac_gso_segment EXPORT_SYMBOL vmlinux 0x0bfc1d1a check_zeroed_user -EXPORT_SYMBOL vmlinux 0x0bffe2df nd_dax_probe +EXPORT_SYMBOL vmlinux 0x0bfd3b13 configfs_register_subsystem +EXPORT_SYMBOL vmlinux 0x0bfef0f4 netpoll_send_skb +EXPORT_SYMBOL vmlinux 0x0c033d66 console_stop +EXPORT_SYMBOL vmlinux 0x0c03ab09 dev_deactivate EXPORT_SYMBOL vmlinux 0x0c0f79af ZSTD_getDictID_fromFrame -EXPORT_SYMBOL vmlinux 0x0c1c84a0 blk_mq_queue_stopped -EXPORT_SYMBOL vmlinux 0x0c1dbfbd unregister_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x0c139e4a pci_find_capability EXPORT_SYMBOL vmlinux 0x0c25ec48 secure_tcpv6_seq +EXPORT_SYMBOL vmlinux 0x0c2aaecc _copy_to_iter EXPORT_SYMBOL vmlinux 0x0c3690fc _raw_spin_lock_bh -EXPORT_SYMBOL vmlinux 0x0c44acd9 skb_find_text -EXPORT_SYMBOL vmlinux 0x0c4f6f89 __set_page_dirty_buffers -EXPORT_SYMBOL vmlinux 0x0c51f898 sock_no_accept -EXPORT_SYMBOL vmlinux 0x0c561005 pcie_port_service_register +EXPORT_SYMBOL vmlinux 0x0c389f40 input_get_poll_interval +EXPORT_SYMBOL vmlinux 0x0c524b52 proto_register EXPORT_SYMBOL vmlinux 0x0c575719 __cond_resched_rwlock_write +EXPORT_SYMBOL vmlinux 0x0c5bee22 ilookup +EXPORT_SYMBOL vmlinux 0x0c69eb1f __traceiter_module_get +EXPORT_SYMBOL vmlinux 0x0c6b1e98 kmem_cache_free EXPORT_SYMBOL vmlinux 0x0c6bdc3f vme_master_read -EXPORT_SYMBOL vmlinux 0x0c8af749 xfrm_lookup -EXPORT_SYMBOL vmlinux 0x0cabd366 tty_unlock +EXPORT_SYMBOL vmlinux 0x0caf973f vfs_setpos +EXPORT_SYMBOL vmlinux 0x0cba4bcc t10_pi_type3_ip EXPORT_SYMBOL vmlinux 0x0cc4b4b6 crc_ccitt_false +EXPORT_SYMBOL vmlinux 0x0ccd0a85 generic_update_time +EXPORT_SYMBOL vmlinux 0x0ccd4e2e input_close_device EXPORT_SYMBOL vmlinux 0x0cd5835b ipv6_flowlabel_exclusive EXPORT_SYMBOL vmlinux 0x0cdce87c rfkill_set_hw_state_reason +EXPORT_SYMBOL vmlinux 0x0ce02c02 tcp_openreq_init_rwin EXPORT_SYMBOL vmlinux 0x0ce19729 mb_cache_entry_touch -EXPORT_SYMBOL vmlinux 0x0ce2b73a qdisc_reset +EXPORT_SYMBOL vmlinux 0x0ce70e64 mipi_dsi_generic_write +EXPORT_SYMBOL vmlinux 0x0cea8362 tcp_create_openreq_child EXPORT_SYMBOL vmlinux 0x0d07f543 get_anon_bdev -EXPORT_SYMBOL vmlinux 0x0d35785a fwnode_mdiobus_register_phy -EXPORT_SYMBOL vmlinux 0x0d37aeab fs_param_is_u32 -EXPORT_SYMBOL vmlinux 0x0d3a0118 tcf_em_tree_validate -EXPORT_SYMBOL vmlinux 0x0d4ab99a mmc_wait_for_req_done +EXPORT_SYMBOL vmlinux 0x0d093ca2 __scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x0d13ea19 pci_select_bars +EXPORT_SYMBOL vmlinux 0x0d1b1fa8 dump_skip_to +EXPORT_SYMBOL vmlinux 0x0d259207 hash_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0x0d284b7a tcp_sendpage +EXPORT_SYMBOL vmlinux 0x0d2e008f mmc_unregister_driver +EXPORT_SYMBOL vmlinux 0x0d2e71a5 devm_pci_alloc_host_bridge +EXPORT_SYMBOL vmlinux 0x0d2f56cd mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0x0d42196b pcie_capability_write_word +EXPORT_SYMBOL vmlinux 0x0d4bcba3 blk_rq_unmap_user EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type -EXPORT_SYMBOL vmlinux 0x0d60b865 __xfrm_init_state +EXPORT_SYMBOL vmlinux 0x0d5fb7e4 iput EXPORT_SYMBOL vmlinux 0x0d61eeee __bitmap_subset -EXPORT_SYMBOL vmlinux 0x0d722f77 mmc_cqe_recovery -EXPORT_SYMBOL vmlinux 0x0d789ed3 phy_set_asym_pause -EXPORT_SYMBOL vmlinux 0x0d9642b8 inet_addr_type_dev_table -EXPORT_SYMBOL vmlinux 0x0d9829da ps2_end_command -EXPORT_SYMBOL vmlinux 0x0da0941a skb_ext_add -EXPORT_SYMBOL vmlinux 0x0da64903 vfs_copy_file_range -EXPORT_SYMBOL vmlinux 0x0dc91809 mark_info_dirty -EXPORT_SYMBOL vmlinux 0x0dca2710 mdiobus_unregister_device -EXPORT_SYMBOL vmlinux 0x0df7cdff pcim_iomap_regions +EXPORT_SYMBOL vmlinux 0x0d7f4fa3 param_get_invbool +EXPORT_SYMBOL vmlinux 0x0d80064f jbd2_journal_inode_ranged_wait +EXPORT_SYMBOL vmlinux 0x0d8e4647 i2c_clients_command +EXPORT_SYMBOL vmlinux 0x0d93afa7 __SCK__tp_func_write_msr +EXPORT_SYMBOL vmlinux 0x0dd31564 netdev_master_upper_dev_get +EXPORT_SYMBOL vmlinux 0x0dec2424 component_match_add_typed +EXPORT_SYMBOL vmlinux 0x0dece59d bio_integrity_trim +EXPORT_SYMBOL vmlinux 0x0deda0af phy_remove_link_mode +EXPORT_SYMBOL vmlinux 0x0e006781 netlink_broadcast +EXPORT_SYMBOL vmlinux 0x0e0594bd mdiobus_scan +EXPORT_SYMBOL vmlinux 0x0e1341b4 ps2_handle_ack EXPORT_SYMBOL vmlinux 0x0e17678a siphash_4u64 EXPORT_SYMBOL vmlinux 0x0e23b37f alloc_cpumask_var_node -EXPORT_SYMBOL vmlinux 0x0e3166c4 udp_skb_destructor -EXPORT_SYMBOL vmlinux 0x0e34e626 alloc_etherdev_mqs -EXPORT_SYMBOL vmlinux 0x0e35104f ptp_clock_register -EXPORT_SYMBOL vmlinux 0x0e36520a nd_pfn_validate +EXPORT_SYMBOL vmlinux 0x0e2d0a3a vfs_readlink +EXPORT_SYMBOL vmlinux 0x0e388a5a mmc_alloc_host EXPORT_SYMBOL vmlinux 0x0e4262c6 __siphash_unaligned -EXPORT_SYMBOL vmlinux 0x0e47547a cdev_device_add -EXPORT_SYMBOL vmlinux 0x0e5c4ed7 ip_ct_attach -EXPORT_SYMBOL vmlinux 0x0e66c367 dev_mc_add -EXPORT_SYMBOL vmlinux 0x0e6878a2 __mmap_lock_do_trace_acquire_returned +EXPORT_SYMBOL vmlinux 0x0e515604 __register_binfmt +EXPORT_SYMBOL vmlinux 0x0e64c2ec genphy_read_mmd_unsupported EXPORT_SYMBOL vmlinux 0x0e74ad2d utf8ncursor -EXPORT_SYMBOL vmlinux 0x0e767baa __dev_get_by_flags +EXPORT_SYMBOL vmlinux 0x0e75e4b7 sock_no_sendmsg_locked +EXPORT_SYMBOL vmlinux 0x0e7f6dbc ip_queue_xmit +EXPORT_SYMBOL vmlinux 0x0e7fabc8 ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0x0e8e46ea dm_register_target +EXPORT_SYMBOL vmlinux 0x0e9524ae bdi_set_max_ratio +EXPORT_SYMBOL vmlinux 0x0e9cb843 fb_set_var EXPORT_SYMBOL vmlinux 0x0ea3c74e tasklet_kill EXPORT_SYMBOL vmlinux 0x0ea593f6 hdmi_drm_infoframe_init +EXPORT_SYMBOL vmlinux 0x0eb11785 pcie_capability_read_word EXPORT_SYMBOL vmlinux 0x0eb6eb87 add_taint EXPORT_SYMBOL vmlinux 0x0ec5babe vme_dma_free -EXPORT_SYMBOL vmlinux 0x0ed6a34e __mark_inode_dirty -EXPORT_SYMBOL vmlinux 0x0eeec3f2 phy_print_status +EXPORT_SYMBOL vmlinux 0x0ecccb66 tty_port_close_start +EXPORT_SYMBOL vmlinux 0x0ed1448e i8042_remove_filter +EXPORT_SYMBOL vmlinux 0x0ed689cf generic_file_read_iter +EXPORT_SYMBOL vmlinux 0x0ee57b9b inet_select_addr +EXPORT_SYMBOL vmlinux 0x0ee59d08 qdisc_watchdog_init_clockid +EXPORT_SYMBOL vmlinux 0x0f01dc5a input_get_keycode +EXPORT_SYMBOL vmlinux 0x0f04bbba pci_pme_active +EXPORT_SYMBOL vmlinux 0x0f085d34 security_inet_conn_request EXPORT_SYMBOL vmlinux 0x0f09cc34 schedule_timeout_killable -EXPORT_SYMBOL vmlinux 0x0f1903f1 kthread_destroy_worker -EXPORT_SYMBOL vmlinux 0x0f2b4d2d xfrm_state_walk -EXPORT_SYMBOL vmlinux 0x0f369d7c __skb_checksum_complete +EXPORT_SYMBOL vmlinux 0x0f0dd6b9 scsi_ioctl +EXPORT_SYMBOL vmlinux 0x0f2d8d7d thermal_zone_device_critical +EXPORT_SYMBOL vmlinux 0x0f37877f sync_dirty_buffer EXPORT_SYMBOL vmlinux 0x0f37ca89 lockref_put_not_zero -EXPORT_SYMBOL vmlinux 0x0f521228 configfs_unregister_default_group -EXPORT_SYMBOL vmlinux 0x0f67725b tag_pages_for_writeback -EXPORT_SYMBOL vmlinux 0x0f82ea0a dev_set_threaded +EXPORT_SYMBOL vmlinux 0x0f836f28 ptp_clock_register EXPORT_SYMBOL vmlinux 0x0f86f560 kthread_delayed_work_timer_fn -EXPORT_SYMBOL vmlinux 0x0f95ba2f tcf_exts_change +EXPORT_SYMBOL vmlinux 0x0f87cd8c sock_no_sendpage +EXPORT_SYMBOL vmlinux 0x0f95ea35 skb_copy_datagram_from_iter EXPORT_SYMBOL vmlinux 0x0fab1ab0 hdmi_spd_infoframe_pack -EXPORT_SYMBOL vmlinux 0x0fad668b __set_page_dirty_nobuffers -EXPORT_SYMBOL vmlinux 0x0faf2559 proc_create_seq_private -EXPORT_SYMBOL vmlinux 0x0fb2381d vme_irq_generate EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 -EXPORT_SYMBOL vmlinux 0x0fd1b7f6 is_nvdimm_bus_locked -EXPORT_SYMBOL vmlinux 0x0fd4e709 mmc_unregister_driver +EXPORT_SYMBOL vmlinux 0x0fb4a8c8 stream_open +EXPORT_SYMBOL vmlinux 0x0fc08dcd padata_free +EXPORT_SYMBOL vmlinux 0x0fccfa27 sock_bind_add +EXPORT_SYMBOL vmlinux 0x0fcd0300 mpage_readpage EXPORT_SYMBOL vmlinux 0x0fd902db mb_cache_entry_create -EXPORT_SYMBOL vmlinux 0x0ff2ca59 genphy_read_mmd_unsupported +EXPORT_SYMBOL vmlinux 0x0fe4b82f __cpuhp_setup_state_cpuslocked +EXPORT_SYMBOL vmlinux 0x0fe965f3 devfreq_update_interval +EXPORT_SYMBOL vmlinux 0x0ff48406 blk_mq_start_stopped_hw_queues EXPORT_SYMBOL vmlinux 0x0ff80f59 zalloc_cpumask_var +EXPORT_SYMBOL vmlinux 0x0ff8f5dc mmc_can_discard EXPORT_SYMBOL vmlinux 0x0fff5afc time64_to_tm -EXPORT_SYMBOL vmlinux 0x0fffe771 tcf_block_put -EXPORT_SYMBOL vmlinux 0x1002b32b scsi_print_sense_hdr -EXPORT_SYMBOL vmlinux 0x1013af03 pnp_unregister_card_driver -EXPORT_SYMBOL vmlinux 0x101adb0d elv_rb_latter_request -EXPORT_SYMBOL vmlinux 0x1026cae9 dev_lstats_read -EXPORT_SYMBOL vmlinux 0x102a7eea md_check_no_bitmap -EXPORT_SYMBOL vmlinux 0x10346355 fget_raw +EXPORT_SYMBOL vmlinux 0x100f0d9f fb_firmware_edid +EXPORT_SYMBOL vmlinux 0x1027d20e key_put +EXPORT_SYMBOL vmlinux 0x10290b99 blk_queue_io_opt +EXPORT_SYMBOL vmlinux 0x102a8445 __tracepoint_dma_fence_emit +EXPORT_SYMBOL vmlinux 0x10330e44 generic_copy_file_range EXPORT_SYMBOL vmlinux 0x1035c7c2 __release_region -EXPORT_SYMBOL vmlinux 0x1035d41d __break_lease -EXPORT_SYMBOL vmlinux 0x103f431f filemap_page_mkwrite -EXPORT_SYMBOL vmlinux 0x103f90b0 inet_unregister_protosw -EXPORT_SYMBOL vmlinux 0x10413bdf mr_fill_mroute EXPORT_SYMBOL vmlinux 0x1057a279 bsearch +EXPORT_SYMBOL vmlinux 0x105dfbbb ipv6_chk_addr_and_flags +EXPORT_SYMBOL vmlinux 0x10625f63 tty_port_tty_set EXPORT_SYMBOL vmlinux 0x1068004b gf128mul_bbe EXPORT_SYMBOL vmlinux 0x107be0b0 percpu_counter_sync EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd -EXPORT_SYMBOL vmlinux 0x107ebb9e input_match_device_id -EXPORT_SYMBOL vmlinux 0x10ace84d dm_table_get_size +EXPORT_SYMBOL vmlinux 0x107f4f9c pagecache_write_begin +EXPORT_SYMBOL vmlinux 0x107fd013 netlink_ack +EXPORT_SYMBOL vmlinux 0x10881a2a tcp_recvmsg +EXPORT_SYMBOL vmlinux 0x108a678d get_tree_single_reconf +EXPORT_SYMBOL vmlinux 0x109439b3 nf_setsockopt +EXPORT_SYMBOL vmlinux 0x109517c0 tty_unthrottle +EXPORT_SYMBOL vmlinux 0x10a5cae6 unregister_framebuffer +EXPORT_SYMBOL vmlinux 0x10ace2ae bio_integrity_prep +EXPORT_SYMBOL vmlinux 0x10b0349b tcp_v4_conn_request +EXPORT_SYMBOL vmlinux 0x10b1258b dev_alloc_name EXPORT_SYMBOL vmlinux 0x10c3f57e __gnet_stats_copy_queue -EXPORT_SYMBOL vmlinux 0x10c9fa94 inet_stream_ops EXPORT_SYMBOL vmlinux 0x10d9f885 scsi_sense_desc_find -EXPORT_SYMBOL vmlinux 0x10dee847 dev_mc_add_excl +EXPORT_SYMBOL vmlinux 0x10e6dba6 __ip_mc_dec_group EXPORT_SYMBOL vmlinux 0x10e6f74a free_contig_range -EXPORT_SYMBOL vmlinux 0x10e9c7cb xfrm_register_type_offload +EXPORT_SYMBOL vmlinux 0x10f8b6ac __tracepoint_spi_transfer_stop EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype -EXPORT_SYMBOL vmlinux 0x111452e6 __put_page -EXPORT_SYMBOL vmlinux 0x11166266 flow_rule_match_vlan -EXPORT_SYMBOL vmlinux 0x111e7c48 sock_edemux -EXPORT_SYMBOL vmlinux 0x1130bec0 pci_scan_single_device -EXPORT_SYMBOL vmlinux 0x113f5988 unregister_framebuffer +EXPORT_SYMBOL vmlinux 0x11109ccc mmc_of_parse_voltage +EXPORT_SYMBOL vmlinux 0x112896e6 tcf_qevent_destroy +EXPORT_SYMBOL vmlinux 0x112ebf43 nvdimm_check_and_set_ro +EXPORT_SYMBOL vmlinux 0x11307007 skb_prepare_seq_read +EXPORT_SYMBOL vmlinux 0x11368b7f nexthop_res_grp_activity_update +EXPORT_SYMBOL vmlinux 0x1165f636 copy_string_kernel +EXPORT_SYMBOL vmlinux 0x116f10f7 blk_mq_run_hw_queue EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init -EXPORT_SYMBOL vmlinux 0x11873edb I_BDEV -EXPORT_SYMBOL vmlinux 0x11947156 bioset_init -EXPORT_SYMBOL vmlinux 0x119ef0f7 try_lookup_one_len -EXPORT_SYMBOL vmlinux 0x11be28ff __dynamic_netdev_dbg -EXPORT_SYMBOL vmlinux 0x11cdd4fd simple_fill_super -EXPORT_SYMBOL vmlinux 0x11cfdd60 __skb_pad +EXPORT_SYMBOL vmlinux 0x11760bf3 sock_no_ioctl +EXPORT_SYMBOL vmlinux 0x11789424 dev_close +EXPORT_SYMBOL vmlinux 0x117d32d0 ppp_dev_name +EXPORT_SYMBOL vmlinux 0x119c7e6f cookie_ecn_ok +EXPORT_SYMBOL vmlinux 0x11aeaf13 tcf_action_update_stats EXPORT_SYMBOL vmlinux 0x11e0ec41 dm_read_arg EXPORT_SYMBOL vmlinux 0x11e30762 chacha_block_generic -EXPORT_SYMBOL vmlinux 0x11eae533 mr_vif_seq_idx +EXPORT_SYMBOL vmlinux 0x11e5786e ptp_clock_index +EXPORT_SYMBOL vmlinux 0x11f179d3 file_modified EXPORT_SYMBOL vmlinux 0x11f47d8c utf8_strncmp -EXPORT_SYMBOL vmlinux 0x11f5bebc nobh_write_end -EXPORT_SYMBOL vmlinux 0x11f7ed4c hex_to_bin -EXPORT_SYMBOL vmlinux 0x1205084d ppp_dev_name +EXPORT_SYMBOL vmlinux 0x11fa10de devm_iounmap EXPORT_SYMBOL vmlinux 0x120b336a __rb_insert_augmented -EXPORT_SYMBOL vmlinux 0x1214c0ae xen_alloc_unpopulated_pages +EXPORT_SYMBOL vmlinux 0x1217321c find_inode_nowait +EXPORT_SYMBOL vmlinux 0x121d04f8 dquot_resume +EXPORT_SYMBOL vmlinux 0x123160dd __ip_options_compile EXPORT_SYMBOL vmlinux 0x124bad4d kstrtobool -EXPORT_SYMBOL vmlinux 0x12576483 pps_register_source -EXPORT_SYMBOL vmlinux 0x126d5544 free_netdev -EXPORT_SYMBOL vmlinux 0x12806518 filp_close -EXPORT_SYMBOL vmlinux 0x1284a71c do_SAK -EXPORT_SYMBOL vmlinux 0x12983482 vfs_tmpfile -EXPORT_SYMBOL vmlinux 0x129efe1c blk_queue_max_discard_sectors -EXPORT_SYMBOL vmlinux 0x12a9e3ba phy_disconnect +EXPORT_SYMBOL vmlinux 0x125b4fd7 dquot_disable +EXPORT_SYMBOL vmlinux 0x12684955 agp_create_memory +EXPORT_SYMBOL vmlinux 0x12785d85 dma_map_page_attrs +EXPORT_SYMBOL vmlinux 0x1295a4a3 netdev_notify_peers +EXPORT_SYMBOL vmlinux 0x129ddff6 no_llseek +EXPORT_SYMBOL vmlinux 0x12a088d3 dev_set_promiscuity +EXPORT_SYMBOL vmlinux 0x12a1efc9 devm_request_threaded_irq +EXPORT_SYMBOL vmlinux 0x12aac462 msi_desc_to_pci_dev +EXPORT_SYMBOL vmlinux 0x12ad812b starget_for_each_device +EXPORT_SYMBOL vmlinux 0x12c8a1f0 set_trace_device EXPORT_SYMBOL vmlinux 0x12cabc89 siphash_2u64 -EXPORT_SYMBOL vmlinux 0x12dc0ef0 amd_iommu_device_info -EXPORT_SYMBOL vmlinux 0x12e65b6f vlan_vids_add_by_dev -EXPORT_SYMBOL vmlinux 0x12ef961f __tracepoint_spi_transfer_stop +EXPORT_SYMBOL vmlinux 0x12d8286a pcim_pin_device +EXPORT_SYMBOL vmlinux 0x12e93a24 register_mii_tstamp_controller +EXPORT_SYMBOL vmlinux 0x12f05230 scsi_dma_unmap +EXPORT_SYMBOL vmlinux 0x12f1e834 blk_queue_dma_alignment EXPORT_SYMBOL vmlinux 0x12f6f69c fb_videomode_to_var EXPORT_SYMBOL vmlinux 0x130afd75 acpi_get_sleep_type_data EXPORT_SYMBOL vmlinux 0x13110126 request_resource -EXPORT_SYMBOL vmlinux 0x1312566c security_sctp_assoc_request -EXPORT_SYMBOL vmlinux 0x13136bcf genl_unregister_family EXPORT_SYMBOL vmlinux 0x131a6146 xa_clear_mark -EXPORT_SYMBOL vmlinux 0x131edc98 netdev_crit EXPORT_SYMBOL vmlinux 0x13243d4b wl1251_get_platform_data +EXPORT_SYMBOL vmlinux 0x13276f42 dev_mc_unsync +EXPORT_SYMBOL vmlinux 0x132d0b5e mmc_request_done EXPORT_SYMBOL vmlinux 0x1344d7e6 acpi_enable_gpe EXPORT_SYMBOL vmlinux 0x134cdd34 inet_frag_rbtree_purge -EXPORT_SYMBOL vmlinux 0x134ce9ff ex_handler_clear_fs -EXPORT_SYMBOL vmlinux 0x134ffdb7 skb_realloc_headroom -EXPORT_SYMBOL vmlinux 0x1382b365 mfd_remove_devices_late +EXPORT_SYMBOL vmlinux 0x1354f956 inet_csk_reqsk_queue_drop +EXPORT_SYMBOL vmlinux 0x13609039 param_set_invbool +EXPORT_SYMBOL vmlinux 0x136905f4 mdiobus_unregister +EXPORT_SYMBOL vmlinux 0x136e8c0e blk_mq_start_hw_queue +EXPORT_SYMBOL vmlinux 0x137745a1 phy_modify_paged_changed +EXPORT_SYMBOL vmlinux 0x138450ae seq_putc EXPORT_SYMBOL vmlinux 0x1389619c __max_die_per_package -EXPORT_SYMBOL vmlinux 0x139e3ff9 param_set_ulong +EXPORT_SYMBOL vmlinux 0x139b69f7 update_devfreq +EXPORT_SYMBOL vmlinux 0x139cd911 dev_get_stats EXPORT_SYMBOL vmlinux 0x139f2189 __kfifo_alloc -EXPORT_SYMBOL vmlinux 0x13b1bd32 shmem_aops -EXPORT_SYMBOL vmlinux 0x13b563bd get_watch_queue -EXPORT_SYMBOL vmlinux 0x13baf4be netpoll_cleanup +EXPORT_SYMBOL vmlinux 0x13a23f25 fget +EXPORT_SYMBOL vmlinux 0x13c2a9a6 mmc_detect_change EXPORT_SYMBOL vmlinux 0x13c49cc2 _copy_from_user EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out -EXPORT_SYMBOL vmlinux 0x13f283ee get_cached_acl EXPORT_SYMBOL vmlinux 0x13f42152 system_entering_hibernation -EXPORT_SYMBOL vmlinux 0x14056c8f md_cluster_ops -EXPORT_SYMBOL vmlinux 0x140905c8 tcp_sock_set_syncnt +EXPORT_SYMBOL vmlinux 0x140ff8c9 nf_log_unset EXPORT_SYMBOL vmlinux 0x141271bf acpi_dev_found -EXPORT_SYMBOL vmlinux 0x14127585 __tracepoint_mmap_lock_acquire_returned -EXPORT_SYMBOL vmlinux 0x141b8342 tcp_peek_len -EXPORT_SYMBOL vmlinux 0x144f49e7 set_capacity +EXPORT_SYMBOL vmlinux 0x14219d90 cdrom_mode_select +EXPORT_SYMBOL vmlinux 0x142a8b87 sock_i_ino +EXPORT_SYMBOL vmlinux 0x142d576a sched_autogroup_detach +EXPORT_SYMBOL vmlinux 0x14469f03 genphy_config_eee_advert EXPORT_SYMBOL vmlinux 0x14605535 dma_fence_context_alloc EXPORT_SYMBOL vmlinux 0x146289b7 crc16_table -EXPORT_SYMBOL vmlinux 0x146a19bb xfrm_register_km -EXPORT_SYMBOL vmlinux 0x1472f322 dmam_free_coherent +EXPORT_SYMBOL vmlinux 0x14743fb4 dma_alloc_attrs EXPORT_SYMBOL vmlinux 0x1486ded2 dma_fence_allocate_private_stub -EXPORT_SYMBOL vmlinux 0x149a5fd8 serial8250_set_isa_configurator -EXPORT_SYMBOL vmlinux 0x14b60726 jbd2_journal_clear_err -EXPORT_SYMBOL vmlinux 0x14b9cf0b sock_no_socketpair +EXPORT_SYMBOL vmlinux 0x14a5eef9 blk_mq_alloc_request +EXPORT_SYMBOL vmlinux 0x14af58c1 arp_create EXPORT_SYMBOL vmlinux 0x14c67e3e tcp_tx_delay_enabled -EXPORT_SYMBOL vmlinux 0x14cf32d9 devm_ioremap_wc -EXPORT_SYMBOL vmlinux 0x14e6076a tcp_v4_mtu_reduced -EXPORT_SYMBOL vmlinux 0x14f363d8 genphy_aneg_done -EXPORT_SYMBOL vmlinux 0x14f5a219 dcbnl_cee_notify +EXPORT_SYMBOL vmlinux 0x14cebc0f __netdev_alloc_skb +EXPORT_SYMBOL vmlinux 0x14ea674d xfrm_find_acq_byseq +EXPORT_SYMBOL vmlinux 0x14f4c77c __mod_node_page_state +EXPORT_SYMBOL vmlinux 0x14f8ffd5 phy_get_c45_ids +EXPORT_SYMBOL vmlinux 0x14fb73dd inet_rtx_syn_ack +EXPORT_SYMBOL vmlinux 0x1504e1a1 proc_create_mount_point +EXPORT_SYMBOL vmlinux 0x15072f9e tso_build_data +EXPORT_SYMBOL vmlinux 0x1516151e inet_add_offload +EXPORT_SYMBOL vmlinux 0x15185833 phy_drivers_register EXPORT_SYMBOL vmlinux 0x151f4898 schedule_timeout_uninterruptible -EXPORT_SYMBOL vmlinux 0x151f9667 pci_get_subsys EXPORT_SYMBOL vmlinux 0x1526b301 unix_tot_inflight +EXPORT_SYMBOL vmlinux 0x1540a815 address_space_init_once EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy -EXPORT_SYMBOL vmlinux 0x15603812 genphy_c37_read_status -EXPORT_SYMBOL vmlinux 0x156c88f5 devm_extcon_register_notifier -EXPORT_SYMBOL vmlinux 0x157b5b0b agp_generic_destroy_page -EXPORT_SYMBOL vmlinux 0x1592f30f alloc_fcdev -EXPORT_SYMBOL vmlinux 0x1597321b blk_dump_rq_flags +EXPORT_SYMBOL vmlinux 0x1552232e pci_claim_resource +EXPORT_SYMBOL vmlinux 0x155327e0 path_has_submounts +EXPORT_SYMBOL vmlinux 0x158effe1 seq_puts +EXPORT_SYMBOL vmlinux 0x15a31ad1 security_sctp_bind_connect EXPORT_SYMBOL vmlinux 0x15a66331 kobject_set_name -EXPORT_SYMBOL vmlinux 0x15aa02dd dma_sync_single_for_device -EXPORT_SYMBOL vmlinux 0x15ad8ce3 sock_queue_rcv_skb EXPORT_SYMBOL vmlinux 0x15ba50a6 jiffies EXPORT_SYMBOL vmlinux 0x15bafe29 unregister_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x15bd6243 napi_build_skb +EXPORT_SYMBOL vmlinux 0x15be5c27 unregister_netdev EXPORT_SYMBOL vmlinux 0x15bed7a5 LZ4_decompress_safe_partial -EXPORT_SYMBOL vmlinux 0x15c662d5 tcp_v4_send_check -EXPORT_SYMBOL vmlinux 0x15c8409e phy_driver_unregister +EXPORT_SYMBOL vmlinux 0x15c7f6ce udp_sendmsg EXPORT_SYMBOL vmlinux 0x15c85de3 mempool_init -EXPORT_SYMBOL vmlinux 0x15ce8333 ip6_dst_hoplimit -EXPORT_SYMBOL vmlinux 0x15dd6337 mmc_card_alternative_gpt_sector -EXPORT_SYMBOL vmlinux 0x15e322e6 is_nd_pfn -EXPORT_SYMBOL vmlinux 0x15f615ed block_write_full_page -EXPORT_SYMBOL vmlinux 0x15f99d3c seq_put_decimal_ull +EXPORT_SYMBOL vmlinux 0x15cb32b1 phy_do_ioctl +EXPORT_SYMBOL vmlinux 0x15d9804e mmc_calc_max_discard +EXPORT_SYMBOL vmlinux 0x15ece1a2 netdev_set_num_tc +EXPORT_SYMBOL vmlinux 0x15f27426 ip_mc_check_igmp EXPORT_SYMBOL vmlinux 0x16286538 iowrite64be_lo_hi EXPORT_SYMBOL vmlinux 0x162893fd hashlen_string -EXPORT_SYMBOL vmlinux 0x162988d5 sock_no_connect +EXPORT_SYMBOL vmlinux 0x1628b596 tcp_get_md5sig_pool +EXPORT_SYMBOL vmlinux 0x1629c6ec noop_qdisc EXPORT_SYMBOL vmlinux 0x16301b34 wrmsrl_on_cpu EXPORT_SYMBOL vmlinux 0x16316a10 ZSTD_getFrameContentSize EXPORT_SYMBOL vmlinux 0x1632bc21 kvasprintf_const -EXPORT_SYMBOL vmlinux 0x1637b30e generic_fillattr -EXPORT_SYMBOL vmlinux 0x163b7d5b inet_csk_delete_keepalive_timer -EXPORT_SYMBOL vmlinux 0x164cb0b2 genphy_loopback -EXPORT_SYMBOL vmlinux 0x165864fd xfrm6_rcv_encap -EXPORT_SYMBOL vmlinux 0x1660134e iommu_dma_get_resv_regions +EXPORT_SYMBOL vmlinux 0x164ab5fc ps2_drain +EXPORT_SYMBOL vmlinux 0x16737cb5 jbd2_journal_forget EXPORT_SYMBOL vmlinux 0x167c5967 print_hex_dump EXPORT_SYMBOL vmlinux 0x167e7f9d __get_user_1 -EXPORT_SYMBOL vmlinux 0x1694732e dma_map_page_attrs -EXPORT_SYMBOL vmlinux 0x1698f000 blk_queue_max_segments +EXPORT_SYMBOL vmlinux 0x168eb915 fb_blank EXPORT_SYMBOL vmlinux 0x169938c1 __sysfs_match_string -EXPORT_SYMBOL vmlinux 0x16ab84a8 fb_class -EXPORT_SYMBOL vmlinux 0x16abccd4 dcb_ieee_getapp_mask -EXPORT_SYMBOL vmlinux 0x16c81fc3 scsi_device_quiesce +EXPORT_SYMBOL vmlinux 0x16bb53ec __skb_checksum_complete +EXPORT_SYMBOL vmlinux 0x16bb92c8 ata_dev_printk +EXPORT_SYMBOL vmlinux 0x16bb936d shrink_dcache_sb EXPORT_SYMBOL vmlinux 0x16cdc340 acpi_get_table -EXPORT_SYMBOL vmlinux 0x16d0f883 tcp_seq_next -EXPORT_SYMBOL vmlinux 0x16d7f516 pci_find_bus +EXPORT_SYMBOL vmlinux 0x16d8e182 netpoll_poll_dev EXPORT_SYMBOL vmlinux 0x16dee44d dma_fence_init +EXPORT_SYMBOL vmlinux 0x16e24a01 get_user_pages EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait -EXPORT_SYMBOL vmlinux 0x1705b54a migrate_page +EXPORT_SYMBOL vmlinux 0x17056ca2 skb_dequeue_tail EXPORT_SYMBOL vmlinux 0x170ddf79 acpi_install_notify_handler -EXPORT_SYMBOL vmlinux 0x175c1a6f sock_sendmsg -EXPORT_SYMBOL vmlinux 0x175dfa09 neigh_seq_start +EXPORT_SYMBOL vmlinux 0x173dc680 vfs_rename EXPORT_SYMBOL vmlinux 0x175e33fb dma_spin_lock -EXPORT_SYMBOL vmlinux 0x175f7a16 posix_acl_chmod -EXPORT_SYMBOL vmlinux 0x178012ca del_gendisk -EXPORT_SYMBOL vmlinux 0x1783f8b5 xfrm_stateonly_find -EXPORT_SYMBOL vmlinux 0x17931792 drop_nlink -EXPORT_SYMBOL vmlinux 0x17a57452 i2c_smbus_write_byte_data -EXPORT_SYMBOL vmlinux 0x17bbb34a netlink_broadcast -EXPORT_SYMBOL vmlinux 0x17bc726d qdisc_warn_nonwc +EXPORT_SYMBOL vmlinux 0x1765f309 inet_register_protosw +EXPORT_SYMBOL vmlinux 0x1775d41c bio_integrity_alloc +EXPORT_SYMBOL vmlinux 0x177aaba5 __page_cache_alloc +EXPORT_SYMBOL vmlinux 0x177cf270 security_unix_stream_connect EXPORT_SYMBOL vmlinux 0x17be68ca acpi_clear_event -EXPORT_SYMBOL vmlinux 0x17e096b7 tty_port_carrier_raised +EXPORT_SYMBOL vmlinux 0x17ce7e3a __scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x17d27dd3 security_inode_init_security +EXPORT_SYMBOL vmlinux 0x17d5969c unlock_rename +EXPORT_SYMBOL vmlinux 0x17d632d3 pci_iounmap EXPORT_SYMBOL vmlinux 0x17f341a0 i8042_lock_chip -EXPORT_SYMBOL vmlinux 0x17f4f193 blk_get_queue -EXPORT_SYMBOL vmlinux 0x17f7eaff phy_error EXPORT_SYMBOL vmlinux 0x17f813a9 __SCT__tp_func_kmalloc -EXPORT_SYMBOL vmlinux 0x17fc1937 inet_accept -EXPORT_SYMBOL vmlinux 0x180e5eb0 mark_buffer_dirty_inode -EXPORT_SYMBOL vmlinux 0x1810d156 dev_uc_add_excl -EXPORT_SYMBOL vmlinux 0x18233c75 mipi_dsi_detach -EXPORT_SYMBOL vmlinux 0x18340b4a take_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0x1803df84 vme_dma_list_free +EXPORT_SYMBOL vmlinux 0x18186518 pcim_iomap_table +EXPORT_SYMBOL vmlinux 0x18191050 __bread_gfp +EXPORT_SYMBOL vmlinux 0x1831bdd9 amd_iommu_device_info EXPORT_SYMBOL vmlinux 0x18345b8e __bitmap_replace -EXPORT_SYMBOL vmlinux 0x184cda06 input_register_handle -EXPORT_SYMBOL vmlinux 0x1853cb0e tcf_classify -EXPORT_SYMBOL vmlinux 0x185ff0f3 devm_request_threaded_irq -EXPORT_SYMBOL vmlinux 0x18642457 __bio_clone_fast -EXPORT_SYMBOL vmlinux 0x1867b5a1 seq_dentry -EXPORT_SYMBOL vmlinux 0x1871fd5d vga_switcheroo_get_client_state -EXPORT_SYMBOL vmlinux 0x18722c9b netdev_next_lower_dev_rcu -EXPORT_SYMBOL vmlinux 0x18817c1b pcie_set_mps +EXPORT_SYMBOL vmlinux 0x184213c9 con_copy_unimap +EXPORT_SYMBOL vmlinux 0x18442509 alloc_anon_inode EXPORT_SYMBOL vmlinux 0x18888d00 downgrade_write -EXPORT_SYMBOL vmlinux 0x188c47be __find_get_block EXPORT_SYMBOL vmlinux 0x188ea314 jiffies_to_timespec64 -EXPORT_SYMBOL vmlinux 0x18909c33 pcie_bandwidth_available -EXPORT_SYMBOL vmlinux 0x189afaa8 bh_uptodate_or_lock -EXPORT_SYMBOL vmlinux 0x189b7d83 tcf_exts_dump_stats EXPORT_SYMBOL vmlinux 0x18b72573 register_kmmio_probe +EXPORT_SYMBOL vmlinux 0x18c0b8ec napi_consume_skb EXPORT_SYMBOL vmlinux 0x18d832e2 config_item_get -EXPORT_SYMBOL vmlinux 0x18e14926 mipi_dsi_driver_register_full EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start -EXPORT_SYMBOL vmlinux 0x18e6d836 ip_generic_getfrag -EXPORT_SYMBOL vmlinux 0x18efa572 mmc_remove_host -EXPORT_SYMBOL vmlinux 0x18f7e065 single_open -EXPORT_SYMBOL vmlinux 0x18fbfa60 flow_indr_dev_register -EXPORT_SYMBOL vmlinux 0x18fde342 dquot_get_next_id -EXPORT_SYMBOL vmlinux 0x19078ffb rtnl_configure_link -EXPORT_SYMBOL vmlinux 0x190836ea unix_attach_fds -EXPORT_SYMBOL vmlinux 0x190f3e5f param_ops_ulong -EXPORT_SYMBOL vmlinux 0x1911a260 __tcp_md5_do_lookup -EXPORT_SYMBOL vmlinux 0x1921b98a netdev_alert -EXPORT_SYMBOL vmlinux 0x19273081 backlight_device_unregister -EXPORT_SYMBOL vmlinux 0x192c055d init_task -EXPORT_SYMBOL vmlinux 0x192c1260 devm_backlight_device_unregister -EXPORT_SYMBOL vmlinux 0x192c51ba kernel_sendmsg +EXPORT_SYMBOL vmlinux 0x18f16498 dev_uc_add +EXPORT_SYMBOL vmlinux 0x1901cd86 reuseport_migrate_sock +EXPORT_SYMBOL vmlinux 0x1904f0c3 put_disk +EXPORT_SYMBOL vmlinux 0x190ca773 tcf_action_dump_1 +EXPORT_SYMBOL vmlinux 0x19189cfd release_sock +EXPORT_SYMBOL vmlinux 0x191db8b8 _dev_printk +EXPORT_SYMBOL vmlinux 0x192306ed ip_check_defrag EXPORT_SYMBOL vmlinux 0x192ea14f __SCT__tp_func_dma_fence_signaled -EXPORT_SYMBOL vmlinux 0x193f6567 vfs_fileattr_set -EXPORT_SYMBOL vmlinux 0x19480cef dma_async_device_register +EXPORT_SYMBOL vmlinux 0x1931eec8 param_get_hexint +EXPORT_SYMBOL vmlinux 0x193c34ce qdisc_tree_reduce_backlog +EXPORT_SYMBOL vmlinux 0x194a32ad phy_ethtool_get_strings +EXPORT_SYMBOL vmlinux 0x194cb4bb rt_dst_alloc EXPORT_SYMBOL vmlinux 0x1953c958 mempool_create EXPORT_SYMBOL vmlinux 0x19567d06 vfio_info_cap_shift -EXPORT_SYMBOL vmlinux 0x1961a5ed rproc_vq_interrupt -EXPORT_SYMBOL vmlinux 0x197582f2 jbd2_journal_init_dev +EXPORT_SYMBOL vmlinux 0x196c5fd2 dquot_alloc_inode EXPORT_SYMBOL vmlinux 0x1984d421 out_of_line_wait_on_bit +EXPORT_SYMBOL vmlinux 0x1984d438 scsi_report_opcode EXPORT_SYMBOL vmlinux 0x198620d7 security_add_mnt_opt +EXPORT_SYMBOL vmlinux 0x198e1cb0 __page_frag_cache_drain +EXPORT_SYMBOL vmlinux 0x198e2a17 pci_enable_wake +EXPORT_SYMBOL vmlinux 0x198faee5 pci_bus_assign_resources EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp +EXPORT_SYMBOL vmlinux 0x19b74104 vfs_iter_read +EXPORT_SYMBOL vmlinux 0x19ba9456 seg6_hmac_info_del EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec -EXPORT_SYMBOL vmlinux 0x19d14e45 input_set_abs_params +EXPORT_SYMBOL vmlinux 0x19c4b9d7 vm_mmap +EXPORT_SYMBOL vmlinux 0x19c5ffa4 get_acl +EXPORT_SYMBOL vmlinux 0x19cac581 md_check_no_bitmap EXPORT_SYMBOL vmlinux 0x19d200ec __SCT__tp_func_kmalloc_node EXPORT_SYMBOL vmlinux 0x19df99b9 acpi_finish_gpe -EXPORT_SYMBOL vmlinux 0x19eb1ec4 xfrm_policy_delete +EXPORT_SYMBOL vmlinux 0x19e6b119 set_cached_acl +EXPORT_SYMBOL vmlinux 0x19e856d7 iptun_encaps +EXPORT_SYMBOL vmlinux 0x19ee3320 iov_iter_zero +EXPORT_SYMBOL vmlinux 0x19eeb97b generic_listxattr +EXPORT_SYMBOL vmlinux 0x19fd5681 mmc_hw_reset +EXPORT_SYMBOL vmlinux 0x1a130261 vme_init_bridge +EXPORT_SYMBOL vmlinux 0x1a159ad4 build_skb +EXPORT_SYMBOL vmlinux 0x1a167375 jbd2_journal_destroy +EXPORT_SYMBOL vmlinux 0x1a16f100 blk_mq_end_request EXPORT_SYMBOL vmlinux 0x1a1bac9c ZSTD_decompressDCtx -EXPORT_SYMBOL vmlinux 0x1a21ec1c __cancel_dirty_page -EXPORT_SYMBOL vmlinux 0x1a2b708f wait_on_page_bit_killable -EXPORT_SYMBOL vmlinux 0x1a41b572 tcf_qevent_init +EXPORT_SYMBOL vmlinux 0x1a298f7a xfrm_user_policy +EXPORT_SYMBOL vmlinux 0x1a30d206 locks_init_lock EXPORT_SYMBOL vmlinux 0x1a45cb6c acpi_disabled -EXPORT_SYMBOL vmlinux 0x1a54f75e mmc_retune_unpause +EXPORT_SYMBOL vmlinux 0x1a4b7033 make_kuid EXPORT_SYMBOL vmlinux 0x1a63af34 vga_switcheroo_process_delayed_switch -EXPORT_SYMBOL vmlinux 0x1a679ead agp_generic_insert_memory +EXPORT_SYMBOL vmlinux 0x1a6782ff unlock_buffer +EXPORT_SYMBOL vmlinux 0x1a72bf03 nf_log_unregister +EXPORT_SYMBOL vmlinux 0x1a784cef invalidate_mapping_pages EXPORT_SYMBOL vmlinux 0x1a79c8e9 __x86_indirect_thunk_r13 -EXPORT_SYMBOL vmlinux 0x1a88c07c blk_queue_io_opt +EXPORT_SYMBOL vmlinux 0x1a836b83 blk_cleanup_disk +EXPORT_SYMBOL vmlinux 0x1a889d35 rproc_of_parse_firmware EXPORT_SYMBOL vmlinux 0x1a9a433c prandom_u32_state -EXPORT_SYMBOL vmlinux 0x1aa90bdd bdev_read_only EXPORT_SYMBOL vmlinux 0x1aa9fba0 vfio_dma_rw -EXPORT_SYMBOL vmlinux 0x1aaa7b07 tc_setup_flow_action -EXPORT_SYMBOL vmlinux 0x1ac245dc phy_attached_print +EXPORT_SYMBOL vmlinux 0x1ab1b16b scsi_vpd_tpg_id +EXPORT_SYMBOL vmlinux 0x1abaf772 cookie_timestamp_decode EXPORT_SYMBOL vmlinux 0x1ac5d3cb strcspn -EXPORT_SYMBOL vmlinux 0x1ae46ab1 blk_cleanup_disk -EXPORT_SYMBOL vmlinux 0x1aea7b17 __destroy_inode -EXPORT_SYMBOL vmlinux 0x1af74d7f jbd2_journal_blocks_per_page +EXPORT_SYMBOL vmlinux 0x1ad23c7e devfreq_update_status +EXPORT_SYMBOL vmlinux 0x1ad9a4f7 pcie_capability_clear_and_set_word +EXPORT_SYMBOL vmlinux 0x1ae53a86 inet_sk_rebuild_header +EXPORT_SYMBOL vmlinux 0x1af02925 unpin_user_pages_dirty_lock +EXPORT_SYMBOL vmlinux 0x1af0a21f netdev_bonding_info_change +EXPORT_SYMBOL vmlinux 0x1af52762 netdev_adjacent_change_prepare +EXPORT_SYMBOL vmlinux 0x1afa3cae submit_bio_wait +EXPORT_SYMBOL vmlinux 0x1afba0d7 fscrypt_free_inode EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist -EXPORT_SYMBOL vmlinux 0x1b025e09 phy_loopback -EXPORT_SYMBOL vmlinux 0x1b029ebc tcf_idr_create_from_flags -EXPORT_SYMBOL vmlinux 0x1b035f3b pci_read_config_byte -EXPORT_SYMBOL vmlinux 0x1b07dcb3 tty_vhangup -EXPORT_SYMBOL vmlinux 0x1b0d0af9 iw_handler_set_thrspy -EXPORT_SYMBOL vmlinux 0x1b0d8a76 fb_get_mode -EXPORT_SYMBOL vmlinux 0x1b3450f7 tcf_em_tree_dump -EXPORT_SYMBOL vmlinux 0x1b35e573 submit_bh +EXPORT_SYMBOL vmlinux 0x1b111ba6 dma_async_tx_descriptor_init +EXPORT_SYMBOL vmlinux 0x1b427ea4 tty_vhangup +EXPORT_SYMBOL vmlinux 0x1b4887e4 scsi_print_command EXPORT_SYMBOL vmlinux 0x1b597b7a swake_up_all EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton -EXPORT_SYMBOL vmlinux 0x1b73ead3 flow_rule_match_tcp EXPORT_SYMBOL vmlinux 0x1b777357 rdmacg_unregister_device -EXPORT_SYMBOL vmlinux 0x1b7fc31b unpin_user_pages EXPORT_SYMBOL vmlinux 0x1b8b95ad i8042_unlock_chip +EXPORT_SYMBOL vmlinux 0x1b8c59b4 compat_ptr_ioctl EXPORT_SYMBOL vmlinux 0x1ba59527 __kmalloc_node -EXPORT_SYMBOL vmlinux 0x1bb05ffc sock_gettstamp EXPORT_SYMBOL vmlinux 0x1bb51249 tcp_have_smc -EXPORT_SYMBOL vmlinux 0x1bbd5306 get_cached_acl_rcu -EXPORT_SYMBOL vmlinux 0x1bc12d7d sock_no_sendpage_locked +EXPORT_SYMBOL vmlinux 0x1bbb7ce2 serial8250_set_isa_configurator +EXPORT_SYMBOL vmlinux 0x1bbe1501 acpi_dev_get_first_match_dev +EXPORT_SYMBOL vmlinux 0x1bc7cf6f deactivate_locked_super EXPORT_SYMBOL vmlinux 0x1bd59dbe vme_free_consistent -EXPORT_SYMBOL vmlinux 0x1bf4df1b vfs_ioctl -EXPORT_SYMBOL vmlinux 0x1bfeb417 mdiobus_setup_mdiodev_from_board_info -EXPORT_SYMBOL vmlinux 0x1c01357b md_bitmap_end_sync -EXPORT_SYMBOL vmlinux 0x1c27b593 register_console -EXPORT_SYMBOL vmlinux 0x1c4306d1 dev_get_by_index -EXPORT_SYMBOL vmlinux 0x1c502e79 skb_copy_expand +EXPORT_SYMBOL vmlinux 0x1bf4dcf4 mr_table_dump +EXPORT_SYMBOL vmlinux 0x1c130b1f generic_cont_expand_simple +EXPORT_SYMBOL vmlinux 0x1c1f6822 lookup_one_positive_unlocked EXPORT_SYMBOL vmlinux 0x1c58427f acpi_remove_notify_handler -EXPORT_SYMBOL vmlinux 0x1c59af89 xp_dma_unmap EXPORT_SYMBOL vmlinux 0x1c5e3878 icst525_idx2s -EXPORT_SYMBOL vmlinux 0x1c706ed4 pps_event -EXPORT_SYMBOL vmlinux 0x1c8d12ec dcache_dir_open -EXPORT_SYMBOL vmlinux 0x1c988f1c dev_queue_xmit +EXPORT_SYMBOL vmlinux 0x1c6ad44a pci_bus_alloc_resource +EXPORT_SYMBOL vmlinux 0x1c6c398b inet_shutdown +EXPORT_SYMBOL vmlinux 0x1c6c5393 kmem_cache_destroy +EXPORT_SYMBOL vmlinux 0x1c72db3c phy_register_fixup_for_uid +EXPORT_SYMBOL vmlinux 0x1c76584f ip_fraglist_prepare +EXPORT_SYMBOL vmlinux 0x1c80a9b1 acpi_bus_register_driver +EXPORT_SYMBOL vmlinux 0x1c834d83 to_nd_pfn +EXPORT_SYMBOL vmlinux 0x1c8a9bed flow_rule_alloc +EXPORT_SYMBOL vmlinux 0x1c937e40 phy_drivers_unregister EXPORT_SYMBOL vmlinux 0x1ca527fa ioread64be_hi_lo -EXPORT_SYMBOL vmlinux 0x1cae97b2 eth_prepare_mac_addr_change +EXPORT_SYMBOL vmlinux 0x1ca80ba1 pci_bus_write_config_word +EXPORT_SYMBOL vmlinux 0x1caf4c66 fs_param_is_blockdev EXPORT_SYMBOL vmlinux 0x1cb11044 inetpeer_invalidate_tree -EXPORT_SYMBOL vmlinux 0x1cb7984f delete_from_page_cache -EXPORT_SYMBOL vmlinux 0x1cb80fb1 phy_get_internal_delay -EXPORT_SYMBOL vmlinux 0x1ccabb5b pcie_capability_clear_and_set_dword +EXPORT_SYMBOL vmlinux 0x1cb77915 phy_config_aneg +EXPORT_SYMBOL vmlinux 0x1cca22b8 invalidate_inode_buffers +EXPORT_SYMBOL vmlinux 0x1ccb5d7b kill_fasync +EXPORT_SYMBOL vmlinux 0x1ccf569e tcp_req_err +EXPORT_SYMBOL vmlinux 0x1cd429b7 migrate_vma_setup EXPORT_SYMBOL vmlinux 0x1cd8438b pxm_to_node -EXPORT_SYMBOL vmlinux 0x1ceb88d5 security_inet_conn_request -EXPORT_SYMBOL vmlinux 0x1ceb8aad secure_tcpv6_ts_off -EXPORT_SYMBOL vmlinux 0x1cf3d44d scsi_eh_restore_cmnd -EXPORT_SYMBOL vmlinux 0x1d00069b xfrm_state_lookup +EXPORT_SYMBOL vmlinux 0x1d05edff seq_release EXPORT_SYMBOL vmlinux 0x1d07e365 memdup_user_nul +EXPORT_SYMBOL vmlinux 0x1d0e61e6 nd_region_acquire_lane EXPORT_SYMBOL vmlinux 0x1d19f77b physical_mask EXPORT_SYMBOL vmlinux 0x1d1abdf0 acpi_get_physical_device_location -EXPORT_SYMBOL vmlinux 0x1d223ca1 dm_unregister_target EXPORT_SYMBOL vmlinux 0x1d24c881 ___ratelimit -EXPORT_SYMBOL vmlinux 0x1d25ab7e udp_seq_stop +EXPORT_SYMBOL vmlinux 0x1d2c05d0 inet6_add_offload EXPORT_SYMBOL vmlinux 0x1d2d6d15 wait_iff_congested EXPORT_SYMBOL vmlinux 0x1d40b6f3 idr_for_each -EXPORT_SYMBOL vmlinux 0x1d488df5 cdev_init -EXPORT_SYMBOL vmlinux 0x1d503989 nf_hook_slow_list -EXPORT_SYMBOL vmlinux 0x1d7ab103 pci_request_regions -EXPORT_SYMBOL vmlinux 0x1d97981c bio_chain +EXPORT_SYMBOL vmlinux 0x1d4e4102 iov_iter_xarray +EXPORT_SYMBOL vmlinux 0x1d67256f netdev_lower_get_next +EXPORT_SYMBOL vmlinux 0x1d8d53b8 may_umount +EXPORT_SYMBOL vmlinux 0x1da55349 find_inode_rcu +EXPORT_SYMBOL vmlinux 0x1daf8c33 clk_bulk_get +EXPORT_SYMBOL vmlinux 0x1dafd807 unix_attach_fds EXPORT_SYMBOL vmlinux 0x1db7706b __copy_user_nocache -EXPORT_SYMBOL vmlinux 0x1dbd9cc3 pci_resize_resource -EXPORT_SYMBOL vmlinux 0x1dc5f0ca napi_gro_receive +EXPORT_SYMBOL vmlinux 0x1dc65b32 seg6_hmac_net_init EXPORT_SYMBOL vmlinux 0x1dc6c93b lookup_user_key -EXPORT_SYMBOL vmlinux 0x1dce451a d_drop EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap -EXPORT_SYMBOL vmlinux 0x1ddd643c flow_hash_from_keys -EXPORT_SYMBOL vmlinux 0x1de4058f bio_alloc_bioset EXPORT_SYMBOL vmlinux 0x1de4ccb2 get_sg_io_hdr -EXPORT_SYMBOL vmlinux 0x1de5006d ip_output -EXPORT_SYMBOL vmlinux 0x1de5462b blk_pre_runtime_suspend -EXPORT_SYMBOL vmlinux 0x1dea8dd6 acpi_bus_register_driver -EXPORT_SYMBOL vmlinux 0x1df96796 skb_pull -EXPORT_SYMBOL vmlinux 0x1dfa03b4 iov_iter_get_pages_alloc -EXPORT_SYMBOL vmlinux 0x1e074c00 __neigh_for_each_release EXPORT_SYMBOL vmlinux 0x1e0a0c24 mod_timer_pending EXPORT_SYMBOL vmlinux 0x1e0cd7fe acpi_detach_data -EXPORT_SYMBOL vmlinux 0x1e1852a1 sock_cmsg_send EXPORT_SYMBOL vmlinux 0x1e1e140e ns_to_timespec64 -EXPORT_SYMBOL vmlinux 0x1e443b5c tcp_sock_set_keepcnt -EXPORT_SYMBOL vmlinux 0x1e5060df __scsi_execute -EXPORT_SYMBOL vmlinux 0x1e5351d0 __free_pages +EXPORT_SYMBOL vmlinux 0x1e378503 qdisc_offload_graft_helper +EXPORT_SYMBOL vmlinux 0x1e45b8c7 __block_write_begin +EXPORT_SYMBOL vmlinux 0x1e5410b8 jbd2_submit_inode_data +EXPORT_SYMBOL vmlinux 0x1e67b966 nd_device_register EXPORT_SYMBOL vmlinux 0x1e6adaa0 bitmap_print_bitmask_to_buf EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr -EXPORT_SYMBOL vmlinux 0x1e7b10a8 pci_bus_set_ops -EXPORT_SYMBOL vmlinux 0x1e8124db lock_page_memcg +EXPORT_SYMBOL vmlinux 0x1e6d5c9c dquot_release +EXPORT_SYMBOL vmlinux 0x1e80a2cd max8998_bulk_read +EXPORT_SYMBOL vmlinux 0x1e8f1efd kern_unmount_array +EXPORT_SYMBOL vmlinux 0x1e8fb031 dqput +EXPORT_SYMBOL vmlinux 0x1e9984dc eth_validate_addr EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu EXPORT_SYMBOL vmlinux 0x1eb922a3 IO_APIC_get_PCI_irq_vector -EXPORT_SYMBOL vmlinux 0x1ebba61f sock_create -EXPORT_SYMBOL vmlinux 0x1ebf9c5c amd_iommu_domain_enable_v2 -EXPORT_SYMBOL vmlinux 0x1ecb722f i2c_del_adapter -EXPORT_SYMBOL vmlinux 0x1ececc5d sk_alloc -EXPORT_SYMBOL vmlinux 0x1ed7cb3c serio_interrupt +EXPORT_SYMBOL vmlinux 0x1ec456f8 kernel_sock_shutdown +EXPORT_SYMBOL vmlinux 0x1eca5b55 param_set_byte +EXPORT_SYMBOL vmlinux 0x1ed2745a blk_execute_rq +EXPORT_SYMBOL vmlinux 0x1ed7a0f1 pci_unmap_rom EXPORT_SYMBOL vmlinux 0x1ed7eb60 __sg_free_table EXPORT_SYMBOL vmlinux 0x1edb69d6 ktime_get_raw_ts64 -EXPORT_SYMBOL vmlinux 0x1ee0e9b2 security_inode_notifysecctx -EXPORT_SYMBOL vmlinux 0x1ee706bb mipi_dsi_dcs_nop -EXPORT_SYMBOL vmlinux 0x1efa8a2e ip6_err_gen_icmpv6_unreach -EXPORT_SYMBOL vmlinux 0x1f08bb15 phy_init_hw -EXPORT_SYMBOL vmlinux 0x1f15811b inet_sendmsg +EXPORT_SYMBOL vmlinux 0x1ef041c8 inet_protos +EXPORT_SYMBOL vmlinux 0x1ef701b6 param_ops_ullong +EXPORT_SYMBOL vmlinux 0x1eff4a9a clocksource_change_rating +EXPORT_SYMBOL vmlinux 0x1f01d9ac simple_dentry_operations +EXPORT_SYMBOL vmlinux 0x1f10ca47 flow_block_cb_lookup +EXPORT_SYMBOL vmlinux 0x1f168089 xfrm_input +EXPORT_SYMBOL vmlinux 0x1f18bea4 vme_unregister_bridge EXPORT_SYMBOL vmlinux 0x1f199d24 copy_user_generic_string -EXPORT_SYMBOL vmlinux 0x1f42a6e2 eth_header_cache_update -EXPORT_SYMBOL vmlinux 0x1f47f71c blk_rq_count_integrity_sg +EXPORT_SYMBOL vmlinux 0x1f31555d dm_kcopyd_copy +EXPORT_SYMBOL vmlinux 0x1f365342 __SCK__tp_func_kmalloc +EXPORT_SYMBOL vmlinux 0x1f39d69a bio_integrity_clone +EXPORT_SYMBOL vmlinux 0x1f3e5f36 phy_start EXPORT_SYMBOL vmlinux 0x1f557414 gen_pool_has_addr -EXPORT_SYMBOL vmlinux 0x1f7597f8 skb_checksum_setup -EXPORT_SYMBOL vmlinux 0x1f907011 serio_reconnect -EXPORT_SYMBOL vmlinux 0x1fa2e4e0 neigh_direct_output -EXPORT_SYMBOL vmlinux 0x1fa9ea13 skb_put -EXPORT_SYMBOL vmlinux 0x1fba5f3e seg6_hmac_net_init +EXPORT_SYMBOL vmlinux 0x1f5aaa8d seq_read_iter +EXPORT_SYMBOL vmlinux 0x1f6f2590 inet_unregister_protosw +EXPORT_SYMBOL vmlinux 0x1f77e2f8 devm_request_resource +EXPORT_SYMBOL vmlinux 0x1f7f7896 tcf_idr_check_alloc +EXPORT_SYMBOL vmlinux 0x1f846fe1 pcie_port_service_unregister EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio EXPORT_SYMBOL vmlinux 0x1fc0cc7c intel_gtt_insert_sg_entries -EXPORT_SYMBOL vmlinux 0x1fc86817 mmc_alloc_host -EXPORT_SYMBOL vmlinux 0x1fcca885 simple_release_fs EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag -EXPORT_SYMBOL vmlinux 0x1fe1bae2 mmc_retune_timer_stop -EXPORT_SYMBOL vmlinux 0x1ff3a806 vm_map_ram +EXPORT_SYMBOL vmlinux 0x1fe2c3e5 pci_find_parent_resource +EXPORT_SYMBOL vmlinux 0x1ff38dc0 arp_tbl EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul -EXPORT_SYMBOL vmlinux 0x2001a5a2 tty_unregister_ldisc -EXPORT_SYMBOL vmlinux 0x200605fc udp6_set_csum -EXPORT_SYMBOL vmlinux 0x200a8599 __task_pid_nr_ns EXPORT_SYMBOL vmlinux 0x200b2041 in6addr_any -EXPORT_SYMBOL vmlinux 0x2030adf6 pcix_set_mmrbc -EXPORT_SYMBOL vmlinux 0x2043271f filemap_map_pages +EXPORT_SYMBOL vmlinux 0x201edaa7 lease_get_mtime +EXPORT_SYMBOL vmlinux 0x202ec10d blk_mq_unique_tag +EXPORT_SYMBOL vmlinux 0x202fa3f0 __sock_create EXPORT_SYMBOL vmlinux 0x20463df4 wait_for_completion_killable EXPORT_SYMBOL vmlinux 0x204af5b5 netlbl_audit_start EXPORT_SYMBOL vmlinux 0x204c19f5 tcp_alloc_md5sig_pool EXPORT_SYMBOL vmlinux 0x204c5067 scsi_dev_info_add_list -EXPORT_SYMBOL vmlinux 0x205ffea8 __netif_napi_del -EXPORT_SYMBOL vmlinux 0x20681893 __tty_alloc_driver -EXPORT_SYMBOL vmlinux 0x207e4507 pagecache_isize_extended -EXPORT_SYMBOL vmlinux 0x2081f937 mdiobus_write -EXPORT_SYMBOL vmlinux 0x2088a476 param_set_copystring -EXPORT_SYMBOL vmlinux 0x20a0dc0a __fs_parse -EXPORT_SYMBOL vmlinux 0x20a724f2 cdrom_number_of_slots +EXPORT_SYMBOL vmlinux 0x20512424 pci_bus_size_bridges +EXPORT_SYMBOL vmlinux 0x2074e566 bio_put +EXPORT_SYMBOL vmlinux 0x2086991a dcb_ieee_getapp_dscp_prio_mask_map EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data -EXPORT_SYMBOL vmlinux 0x20b828cc vme_dma_list_add EXPORT_SYMBOL vmlinux 0x20ba4f3e rdmsr_on_cpu +EXPORT_SYMBOL vmlinux 0x20bcbe4f blake2s_compress EXPORT_SYMBOL vmlinux 0x20cbb30a __percpu_counter_init -EXPORT_SYMBOL vmlinux 0x20d41367 give_up_console -EXPORT_SYMBOL vmlinux 0x20d5c498 rproc_elf_find_loaded_rsc_table EXPORT_SYMBOL vmlinux 0x20d65e40 fb_find_nearest_mode EXPORT_SYMBOL vmlinux 0x20eadeb6 ip_compute_csum EXPORT_SYMBOL vmlinux 0x20fff6ec ZSTD_DStreamInSize EXPORT_SYMBOL vmlinux 0x21059cd7 audit_log_task_context -EXPORT_SYMBOL vmlinux 0x2109330d __put_user_ns +EXPORT_SYMBOL vmlinux 0x210d0fca set_page_dirty_lock EXPORT_SYMBOL vmlinux 0x211130c1 alloc_cpumask_var EXPORT_SYMBOL vmlinux 0x21271fd0 copy_user_enhanced_fast_string -EXPORT_SYMBOL vmlinux 0x213355e8 fs_param_is_blockdev +EXPORT_SYMBOL vmlinux 0x212f806f nexthop_bucket_set_hw_flags +EXPORT_SYMBOL vmlinux 0x213207c5 devm_pci_remap_cfg_resource +EXPORT_SYMBOL vmlinux 0x2138dc29 block_commit_write EXPORT_SYMBOL vmlinux 0x213a738d memregion_alloc EXPORT_SYMBOL vmlinux 0x213e4965 ps2_is_keyboard_id -EXPORT_SYMBOL vmlinux 0x2143bc7f dquot_reclaim_space_nodirty -EXPORT_SYMBOL vmlinux 0x214b1121 nd_region_acquire_lane +EXPORT_SYMBOL vmlinux 0x21479d81 mmc_cqe_post_req EXPORT_SYMBOL vmlinux 0x215a8ec8 slhc_init EXPORT_SYMBOL vmlinux 0x2177bd71 acpi_disable_event EXPORT_SYMBOL vmlinux 0x218e600b pci_add_resource_offset -EXPORT_SYMBOL vmlinux 0x219a4d5f vme_unregister_bridge -EXPORT_SYMBOL vmlinux 0x219b34cd always_delete_dentry -EXPORT_SYMBOL vmlinux 0x219e56b6 param_get_invbool -EXPORT_SYMBOL vmlinux 0x21addb35 inet_dgram_connect -EXPORT_SYMBOL vmlinux 0x21bb4195 mmc_request_done -EXPORT_SYMBOL vmlinux 0x21bbbbe1 km_query +EXPORT_SYMBOL vmlinux 0x21a9e30d blk_mq_stop_hw_queues +EXPORT_SYMBOL vmlinux 0x21af9bee mfd_cell_enable +EXPORT_SYMBOL vmlinux 0x21b454f1 page_symlink_inode_operations EXPORT_SYMBOL vmlinux 0x21bdb523 errseq_check_and_advance EXPORT_SYMBOL vmlinux 0x21be37e1 hdmi_avi_infoframe_check -EXPORT_SYMBOL vmlinux 0x21cfbef8 console_stop -EXPORT_SYMBOL vmlinux 0x21e02b13 __ip_dev_find +EXPORT_SYMBOL vmlinux 0x21ce03df sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0x21d73f74 serio_reconnect EXPORT_SYMBOL vmlinux 0x21e13cb3 inet_peer_xrlim_allow -EXPORT_SYMBOL vmlinux 0x21e1b2ae iov_iter_single_seg_count -EXPORT_SYMBOL vmlinux 0x21eac0d1 xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x21e93491 security_sctp_sk_clone EXPORT_SYMBOL vmlinux 0x21ef374c try_wait_for_completion -EXPORT_SYMBOL vmlinux 0x21f1b858 set_user_nice -EXPORT_SYMBOL vmlinux 0x21f67329 register_mii_timestamper -EXPORT_SYMBOL vmlinux 0x21fb1a9a __hw_addr_sync_dev -EXPORT_SYMBOL vmlinux 0x21fe89ca import_iovec -EXPORT_SYMBOL vmlinux 0x2219d63b nf_ip6_checksum -EXPORT_SYMBOL vmlinux 0x221e4ab9 dev_trans_start +EXPORT_SYMBOL vmlinux 0x2200bad7 remove_proc_subtree EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq EXPORT_SYMBOL vmlinux 0x2234ca51 acpi_match_platform_list -EXPORT_SYMBOL vmlinux 0x2238a7ee deactivate_locked_super -EXPORT_SYMBOL vmlinux 0x224d83a3 pci_enable_device_io -EXPORT_SYMBOL vmlinux 0x224e125c serial8250_register_8250_port -EXPORT_SYMBOL vmlinux 0x225a3aa9 acpi_dev_get_next_match_dev -EXPORT_SYMBOL vmlinux 0x227d8f11 bio_put -EXPORT_SYMBOL vmlinux 0x22816cb3 d_alloc_name -EXPORT_SYMBOL vmlinux 0x2286cf3f phy_attached_info -EXPORT_SYMBOL vmlinux 0x228e62fe kmem_cache_shrink -EXPORT_SYMBOL vmlinux 0x22951231 input_mt_destroy_slots -EXPORT_SYMBOL vmlinux 0x22aa58d7 i2c_verify_client +EXPORT_SYMBOL vmlinux 0x2245cfe4 dev_printk_emit +EXPORT_SYMBOL vmlinux 0x22632579 scsi_unblock_requests EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound -EXPORT_SYMBOL vmlinux 0x22b96b23 make_bad_inode -EXPORT_SYMBOL vmlinux 0x22cace45 __qdisc_calculate_pkt_len -EXPORT_SYMBOL vmlinux 0x22d8f0b0 bioset_integrity_create -EXPORT_SYMBOL vmlinux 0x22dc4855 rt_dst_clone +EXPORT_SYMBOL vmlinux 0x22bc7ffb begin_new_exec +EXPORT_SYMBOL vmlinux 0x22c348e4 tty_port_block_til_ready +EXPORT_SYMBOL vmlinux 0x22d50092 reuseport_add_sock EXPORT_SYMBOL vmlinux 0x22de4931 amd_iommu_register_ga_log_notifier -EXPORT_SYMBOL vmlinux 0x2341c9e9 __dec_node_page_state -EXPORT_SYMBOL vmlinux 0x235d480f ip6_output +EXPORT_SYMBOL vmlinux 0x22e654b2 jbd2_journal_force_commit +EXPORT_SYMBOL vmlinux 0x230441b1 kill_anon_super +EXPORT_SYMBOL vmlinux 0x2313088c param_ops_uint +EXPORT_SYMBOL vmlinux 0x231657e8 user_revoke +EXPORT_SYMBOL vmlinux 0x2335e9d7 blk_queue_split +EXPORT_SYMBOL vmlinux 0x233bbe59 elevator_alloc +EXPORT_SYMBOL vmlinux 0x233ea001 pci_reenable_device +EXPORT_SYMBOL vmlinux 0x23449384 nvdimm_namespace_capacity +EXPORT_SYMBOL vmlinux 0x235c0d36 skb_vlan_push EXPORT_SYMBOL vmlinux 0x2364c85a tasklet_init -EXPORT_SYMBOL vmlinux 0x23675e5a pnp_request_card_device +EXPORT_SYMBOL vmlinux 0x23730fac scsi_target_resume +EXPORT_SYMBOL vmlinux 0x2374719d md_cluster_ops EXPORT_SYMBOL vmlinux 0x237a0b5c __traceiter_dma_fence_signaled -EXPORT_SYMBOL vmlinux 0x237fcd24 netif_schedule_queue -EXPORT_SYMBOL vmlinux 0x2382b090 register_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x237f1c8f param_set_charp EXPORT_SYMBOL vmlinux 0x238b099f mipi_dsi_packet_format_is_short -EXPORT_SYMBOL vmlinux 0x2396ebf0 vga_put -EXPORT_SYMBOL vmlinux 0x239930f0 pci_request_selected_regions -EXPORT_SYMBOL vmlinux 0x23b4bcaa open_with_fake_path +EXPORT_SYMBOL vmlinux 0x23b6362e ip6_route_me_harder EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path -EXPORT_SYMBOL vmlinux 0x23bfce4d param_set_bint EXPORT_SYMBOL vmlinux 0x23cabbb1 register_sysctl_paths EXPORT_SYMBOL vmlinux 0x23daa989 mipi_dsi_create_packet +EXPORT_SYMBOL vmlinux 0x23e618fd phy_advertise_supported +EXPORT_SYMBOL vmlinux 0x23e985b5 netdev_has_any_upper_dev +EXPORT_SYMBOL vmlinux 0x23eb1e91 xfrm_policy_bysel_ctx EXPORT_SYMBOL vmlinux 0x23ee13fd mb_cache_entry_find_first -EXPORT_SYMBOL vmlinux 0x23efe0fd pci_request_irq -EXPORT_SYMBOL vmlinux 0x23f2c1a1 md_done_sync -EXPORT_SYMBOL vmlinux 0x23fafb37 generic_listxattr EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node -EXPORT_SYMBOL vmlinux 0x24151a65 napi_disable -EXPORT_SYMBOL vmlinux 0x241540cb generic_file_fsync EXPORT_SYMBOL vmlinux 0x24212d86 __frontswap_invalidate_page -EXPORT_SYMBOL vmlinux 0x242c2ed9 migrate_page_copy -EXPORT_SYMBOL vmlinux 0x2442986b cdrom_release -EXPORT_SYMBOL vmlinux 0x244298bb end_buffer_read_sync -EXPORT_SYMBOL vmlinux 0x245376ad pci_iomap_range -EXPORT_SYMBOL vmlinux 0x2453ff15 jbd2_log_wait_commit +EXPORT_SYMBOL vmlinux 0x242f2af0 dev_mc_sync_multiple +EXPORT_SYMBOL vmlinux 0x2445dd09 dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0x24579aa1 param_get_uint EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline -EXPORT_SYMBOL vmlinux 0x245e438f param_get_int -EXPORT_SYMBOL vmlinux 0x246e6b12 inet_del_protocol +EXPORT_SYMBOL vmlinux 0x246376b0 skb_copy_datagram_iter +EXPORT_SYMBOL vmlinux 0x2467ebba nf_register_queue_handler +EXPORT_SYMBOL vmlinux 0x247c319a inet_csk_accept EXPORT_SYMBOL vmlinux 0x2484adc3 __kfifo_to_user_r -EXPORT_SYMBOL vmlinux 0x248a96b5 jbd2_journal_init_jbd_inode -EXPORT_SYMBOL vmlinux 0x24b5b34b phy_init_eee -EXPORT_SYMBOL vmlinux 0x24c28817 pci_release_selected_regions -EXPORT_SYMBOL vmlinux 0x24ca9cac phy_device_free +EXPORT_SYMBOL vmlinux 0x2495a339 remap_vmalloc_range +EXPORT_SYMBOL vmlinux 0x24b8cb21 tcp_mtu_to_mss EXPORT_SYMBOL vmlinux 0x24d273d1 add_timer +EXPORT_SYMBOL vmlinux 0x24ee4479 filemap_range_has_page +EXPORT_SYMBOL vmlinux 0x24f11544 cdev_del +EXPORT_SYMBOL vmlinux 0x24f85e10 clear_nlink +EXPORT_SYMBOL vmlinux 0x24fa03ec security_tun_dev_attach EXPORT_SYMBOL vmlinux 0x2505bf18 kstrtol_from_user -EXPORT_SYMBOL vmlinux 0x252662de mmc_get_card -EXPORT_SYMBOL vmlinux 0x252fbd8c eth_platform_get_mac_address -EXPORT_SYMBOL vmlinux 0x253cea1a mipi_dsi_dcs_exit_sleep_mode -EXPORT_SYMBOL vmlinux 0x25587c41 tso_start -EXPORT_SYMBOL vmlinux 0x256985fe pps_lookup_dev -EXPORT_SYMBOL vmlinux 0x256ea597 bio_integrity_add_page -EXPORT_SYMBOL vmlinux 0x25703e54 lease_modify -EXPORT_SYMBOL vmlinux 0x257777c9 mipi_dsi_attach -EXPORT_SYMBOL vmlinux 0x257db53e setup_arg_pages +EXPORT_SYMBOL vmlinux 0x25071057 seq_hex_dump +EXPORT_SYMBOL vmlinux 0x25150a1a ping_prot +EXPORT_SYMBOL vmlinux 0x251bf3e2 unregister_qdisc +EXPORT_SYMBOL vmlinux 0x251d32eb free_xenballooned_pages +EXPORT_SYMBOL vmlinux 0x25210c56 ata_link_printk +EXPORT_SYMBOL vmlinux 0x2559cd5d generic_iommu_put_resv_regions +EXPORT_SYMBOL vmlinux 0x25636a14 d_genocide +EXPORT_SYMBOL vmlinux 0x256c1daa pci_write_vpd EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid -EXPORT_SYMBOL vmlinux 0x2589bd46 sock_init_data EXPORT_SYMBOL vmlinux 0x258a2c02 _raw_write_trylock EXPORT_SYMBOL vmlinux 0x258d2f76 net_dim_get_tx_moderation -EXPORT_SYMBOL vmlinux 0x25905f46 blk_mq_delay_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x258ef2ea mipi_dsi_device_register_full EXPORT_SYMBOL vmlinux 0x25974000 wait_for_completion -EXPORT_SYMBOL vmlinux 0x25a661f2 xfrm_state_delete -EXPORT_SYMBOL vmlinux 0x25ab36f2 inet_proto_csum_replace16 -EXPORT_SYMBOL vmlinux 0x25d2fa35 cdrom_mode_select -EXPORT_SYMBOL vmlinux 0x25d68f1c simple_transaction_release +EXPORT_SYMBOL vmlinux 0x25abfdfd mipi_dsi_dcs_get_power_mode EXPORT_SYMBOL vmlinux 0x25db1577 do_trace_write_msr EXPORT_SYMBOL vmlinux 0x25e58a09 hdmi_avi_infoframe_init -EXPORT_SYMBOL vmlinux 0x25e7adef nf_unregister_net_hooks EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free -EXPORT_SYMBOL vmlinux 0x260416d8 clear_page_dirty_for_io +EXPORT_SYMBOL vmlinux 0x25f05ea9 _dev_info +EXPORT_SYMBOL vmlinux 0x26050f1b nf_log_register +EXPORT_SYMBOL vmlinux 0x26071b35 ipv4_specific EXPORT_SYMBOL vmlinux 0x260a095a __sg_alloc_table -EXPORT_SYMBOL vmlinux 0x26180d26 rproc_remove_subdev -EXPORT_SYMBOL vmlinux 0x261fcb91 __vfs_removexattr -EXPORT_SYMBOL vmlinux 0x26277080 file_ns_capable -EXPORT_SYMBOL vmlinux 0x2631982c writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0x260efdad simple_pin_fs +EXPORT_SYMBOL vmlinux 0x26222c5e sync_inodes_sb +EXPORT_SYMBOL vmlinux 0x262999ed jbd2_fc_begin_commit EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions EXPORT_SYMBOL vmlinux 0x263c3152 bcmp -EXPORT_SYMBOL vmlinux 0x263e5d9c seq_release_private -EXPORT_SYMBOL vmlinux 0x26486ff5 add_watch_to_object -EXPORT_SYMBOL vmlinux 0x266240eb proc_set_user -EXPORT_SYMBOL vmlinux 0x2671c790 rdmacg_uncharge -EXPORT_SYMBOL vmlinux 0x267c17a9 phy_device_create -EXPORT_SYMBOL vmlinux 0x26851723 scsi_ioctl +EXPORT_SYMBOL vmlinux 0x2645e7f7 dquot_free_inode +EXPORT_SYMBOL vmlinux 0x2659088d ethtool_rx_flow_rule_destroy +EXPORT_SYMBOL vmlinux 0x265dd3bb inode_sub_bytes +EXPORT_SYMBOL vmlinux 0x266e5c0f phy_stop +EXPORT_SYMBOL vmlinux 0x2682d503 jbd2_journal_init_inode EXPORT_SYMBOL vmlinux 0x2688ec10 bitmap_zalloc -EXPORT_SYMBOL vmlinux 0x268fed2b tcp_simple_retransmit -EXPORT_SYMBOL vmlinux 0x269e11e1 key_unlink -EXPORT_SYMBOL vmlinux 0x26b5c032 qdisc_class_hash_grow -EXPORT_SYMBOL vmlinux 0x26b72fa5 dump_emit -EXPORT_SYMBOL vmlinux 0x26bd1caf __hw_addr_unsync_dev +EXPORT_SYMBOL vmlinux 0x268ca948 eth_header_parse_protocol +EXPORT_SYMBOL vmlinux 0x269048ae phy_ethtool_set_eee +EXPORT_SYMBOL vmlinux 0x269eca69 tcf_generic_walker EXPORT_SYMBOL vmlinux 0x26cc73c3 complete_and_exit -EXPORT_SYMBOL vmlinux 0x26ccac39 fddi_type_trans -EXPORT_SYMBOL vmlinux 0x26d99738 udp_seq_next EXPORT_SYMBOL vmlinux 0x26e298e0 unregister_memory_notifier +EXPORT_SYMBOL vmlinux 0x26f336f2 dget_parent EXPORT_SYMBOL vmlinux 0x26f8f0b8 iowrite16be +EXPORT_SYMBOL vmlinux 0x2706cead eth_gro_complete EXPORT_SYMBOL vmlinux 0x270cf88f dump_stack_lvl -EXPORT_SYMBOL vmlinux 0x27161ef6 neigh_for_each EXPORT_SYMBOL vmlinux 0x271cba95 acpi_bus_private_data_handler -EXPORT_SYMBOL vmlinux 0x27251cb2 nd_btt_version EXPORT_SYMBOL vmlinux 0x272a8933 udp_memory_allocated -EXPORT_SYMBOL vmlinux 0x272b42b5 tcf_get_next_chain -EXPORT_SYMBOL vmlinux 0x2732a24e t10_pi_type3_ip +EXPORT_SYMBOL vmlinux 0x272f8555 tcf_exts_dump EXPORT_SYMBOL vmlinux 0x2733eaf7 scsi_dev_info_list_add_keyed +EXPORT_SYMBOL vmlinux 0x2739a640 bio_free_pages +EXPORT_SYMBOL vmlinux 0x273da631 rproc_report_crash EXPORT_SYMBOL vmlinux 0x27479d14 param_free_charp -EXPORT_SYMBOL vmlinux 0x274ed669 generic_delete_inode -EXPORT_SYMBOL vmlinux 0x2750e665 pm860x_page_bulk_read -EXPORT_SYMBOL vmlinux 0x275a3ee7 __sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0x2751b941 free_task EXPORT_SYMBOL vmlinux 0x275f3d49 hdmi_vendor_infoframe_check -EXPORT_SYMBOL vmlinux 0x27616a24 blk_mq_run_hw_queue -EXPORT_SYMBOL vmlinux 0x27635ce3 netdev_lower_get_next -EXPORT_SYMBOL vmlinux 0x27705c5f get_acl +EXPORT_SYMBOL vmlinux 0x276947c8 _dev_notice +EXPORT_SYMBOL vmlinux 0x276b72e3 nvdimm_namespace_common_probe 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 0x278ff9d6 inc_zone_page_state -EXPORT_SYMBOL vmlinux 0x27928dcf xfrm_policy_register_afinfo -EXPORT_SYMBOL vmlinux 0x2796bc91 in_dev_finish_destroy -EXPORT_SYMBOL vmlinux 0x27a1496b seq_hex_dump -EXPORT_SYMBOL vmlinux 0x27a163b4 register_nexthop_notifier -EXPORT_SYMBOL vmlinux 0x27a2a460 pcibios_resource_to_bus +EXPORT_SYMBOL vmlinux 0x27af5f8c set_anon_super_fc EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync -EXPORT_SYMBOL vmlinux 0x27c425c1 mipi_dsi_device_register_full +EXPORT_SYMBOL vmlinux 0x27bd4ecb find_vma +EXPORT_SYMBOL vmlinux 0x27c2f0b2 phy_error EXPORT_SYMBOL vmlinux 0x27cdca93 pci_add_resource -EXPORT_SYMBOL vmlinux 0x27d32a9d touchscreen_parse_properties -EXPORT_SYMBOL vmlinux 0x27e33eb6 xfrm_sad_getinfo -EXPORT_SYMBOL vmlinux 0x27eb9416 inet_csk_complete_hashdance -EXPORT_SYMBOL vmlinux 0x27ef8be7 i2c_smbus_read_i2c_block_data -EXPORT_SYMBOL vmlinux 0x2813ccf7 block_page_mkwrite -EXPORT_SYMBOL vmlinux 0x28159118 phy_attach_direct +EXPORT_SYMBOL vmlinux 0x27d6de24 kernel_write +EXPORT_SYMBOL vmlinux 0x27e1e3cb vme_irq_generate +EXPORT_SYMBOL vmlinux 0x27e75049 tty_port_lower_dtr_rts +EXPORT_SYMBOL vmlinux 0x280edbbd tcf_block_put_ext +EXPORT_SYMBOL vmlinux 0x2810bfd6 ipv6_dev_mc_inc EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek -EXPORT_SYMBOL vmlinux 0x28402fb4 eth_header -EXPORT_SYMBOL vmlinux 0x284733fa nf_setsockopt -EXPORT_SYMBOL vmlinux 0x284a94a7 iov_iter_zero +EXPORT_SYMBOL vmlinux 0x281be0ba padata_do_serial +EXPORT_SYMBOL vmlinux 0x2836abff inode_init_once EXPORT_SYMBOL vmlinux 0x284faa6b __x86_indirect_thunk_r11 -EXPORT_SYMBOL vmlinux 0x2851ce95 tso_count_descs -EXPORT_SYMBOL vmlinux 0x285377fe d_exact_alias -EXPORT_SYMBOL vmlinux 0x2858f4bb dev_vprintk_emit -EXPORT_SYMBOL vmlinux 0x285cf177 fs_param_is_s32 -EXPORT_SYMBOL vmlinux 0x2863262f xp_dma_sync_for_cpu_slow -EXPORT_SYMBOL vmlinux 0x2863a08a pci_unmap_rom +EXPORT_SYMBOL vmlinux 0x2862cd18 mdio_device_free +EXPORT_SYMBOL vmlinux 0x286e36b8 __tracepoint_kmalloc +EXPORT_SYMBOL vmlinux 0x287146ac blackhole_netdev EXPORT_SYMBOL vmlinux 0x2875a315 utf32_to_utf8 -EXPORT_SYMBOL vmlinux 0x287d476d netlink_unicast -EXPORT_SYMBOL vmlinux 0x288ab9e2 dev_get_by_name_rcu -EXPORT_SYMBOL vmlinux 0x2894cb1e tcp_init_sock -EXPORT_SYMBOL vmlinux 0x28ac8eb2 inet_offloads -EXPORT_SYMBOL vmlinux 0x28d5118e pcie_get_width_cap -EXPORT_SYMBOL vmlinux 0x28d5fb0d address_space_init_once -EXPORT_SYMBOL vmlinux 0x28d807fc tcp_set_rcvlowat +EXPORT_SYMBOL vmlinux 0x28b1b917 vme_unregister_driver +EXPORT_SYMBOL vmlinux 0x28c549e0 inet_csk_reqsk_queue_add +EXPORT_SYMBOL vmlinux 0x28c6f7cc phy_device_register EXPORT_SYMBOL vmlinux 0x28e09af1 iosf_mbi_available +EXPORT_SYMBOL vmlinux 0x28e4d655 agp_backend_acquire +EXPORT_SYMBOL vmlinux 0x28f68af3 kill_pid EXPORT_SYMBOL vmlinux 0x28f94604 __ubsan_handle_builtin_unreachable -EXPORT_SYMBOL vmlinux 0x290b55e0 tcp_sock_set_cork +EXPORT_SYMBOL vmlinux 0x28fa4fb8 clk_bulk_get_all +EXPORT_SYMBOL vmlinux 0x28fccf1e sockfd_lookup +EXPORT_SYMBOL vmlinux 0x290799b2 md_handle_request +EXPORT_SYMBOL vmlinux 0x2909d321 __mmap_lock_do_trace_start_locking +EXPORT_SYMBOL vmlinux 0x290a22ed register_netdevice_notifier_net EXPORT_SYMBOL vmlinux 0x291ee747 csum_and_copy_to_user EXPORT_SYMBOL vmlinux 0x29332499 __x86_indirect_thunk_rsi -EXPORT_SYMBOL vmlinux 0x29335f76 xp_alloc -EXPORT_SYMBOL vmlinux 0x29475df9 security_sctp_bind_connect -EXPORT_SYMBOL vmlinux 0x2948126b current_task -EXPORT_SYMBOL vmlinux 0x294c4f13 __brelse -EXPORT_SYMBOL vmlinux 0x2959dda2 reuseport_add_sock +EXPORT_SYMBOL vmlinux 0x29426974 dcb_ieee_getapp_default_prio_mask +EXPORT_SYMBOL vmlinux 0x294d4bcd truncate_inode_pages EXPORT_SYMBOL vmlinux 0x29604158 napi_busy_loop -EXPORT_SYMBOL vmlinux 0x296a217e skb_flow_dissect_hash -EXPORT_SYMBOL vmlinux 0x29945ec1 d_make_root -EXPORT_SYMBOL vmlinux 0x2997b3bc tcf_exts_validate -EXPORT_SYMBOL vmlinux 0x299abc31 add_to_pipe -EXPORT_SYMBOL vmlinux 0x299e80b8 simple_link -EXPORT_SYMBOL vmlinux 0x29a64410 tcp_filter -EXPORT_SYMBOL vmlinux 0x29a857ef scsi_target_quiesce +EXPORT_SYMBOL vmlinux 0x2963db5d iov_iter_kvec +EXPORT_SYMBOL vmlinux 0x29696c12 mroute6_is_socket +EXPORT_SYMBOL vmlinux 0x2969e8fd serio_bus +EXPORT_SYMBOL vmlinux 0x2988b703 inet_stream_connect EXPORT_SYMBOL vmlinux 0x29ad8e33 x86_hyper_type +EXPORT_SYMBOL vmlinux 0x29c00659 blk_rq_append_bio +EXPORT_SYMBOL vmlinux 0x29ca1b07 napi_gro_flush +EXPORT_SYMBOL vmlinux 0x29d5c816 sock_set_sndtimeo +EXPORT_SYMBOL vmlinux 0x29dffbf7 __bforget +EXPORT_SYMBOL vmlinux 0x29e03169 dm_kobject_release EXPORT_SYMBOL vmlinux 0x29e1e204 hdmi_audio_infoframe_pack -EXPORT_SYMBOL vmlinux 0x29ecc26d disk_end_io_acct -EXPORT_SYMBOL vmlinux 0x2a03520e dma_sync_sg_for_cpu -EXPORT_SYMBOL vmlinux 0x2a125dc8 pci_bus_write_config_word -EXPORT_SYMBOL vmlinux 0x2a12ddb6 md_bitmap_startwrite -EXPORT_SYMBOL vmlinux 0x2a27af2d pnp_disable_dev +EXPORT_SYMBOL vmlinux 0x29e2d84b register_quota_format +EXPORT_SYMBOL vmlinux 0x29f11904 I_BDEV +EXPORT_SYMBOL vmlinux 0x29f817d4 pnp_release_card_device +EXPORT_SYMBOL vmlinux 0x2a0b2a85 netif_set_real_num_rx_queues +EXPORT_SYMBOL vmlinux 0x2a10b274 d_instantiate EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature -EXPORT_SYMBOL vmlinux 0x2a487ec9 nd_region_release_lane -EXPORT_SYMBOL vmlinux 0x2a510d63 blkdev_issue_write_same -EXPORT_SYMBOL vmlinux 0x2a5b4e10 generic_file_open +EXPORT_SYMBOL vmlinux 0x2a35d6ff rawv6_mh_filter_register EXPORT_SYMBOL vmlinux 0x2a6fa0d0 __SCT__tp_func_module_get -EXPORT_SYMBOL vmlinux 0x2a76b184 vfs_get_super -EXPORT_SYMBOL vmlinux 0x2a773cef nobh_write_begin +EXPORT_SYMBOL vmlinux 0x2a7e0a56 pcie_get_mps +EXPORT_SYMBOL vmlinux 0x2a824f3c __lock_sock_fast +EXPORT_SYMBOL vmlinux 0x2a901685 iget_locked 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 0x2aa71a56 inet_dgram_ops -EXPORT_SYMBOL vmlinux 0x2ab8edcc elv_rb_former_request -EXPORT_SYMBOL vmlinux 0x2ad4408e iterate_dir -EXPORT_SYMBOL vmlinux 0x2adb796c sget_fc -EXPORT_SYMBOL vmlinux 0x2ae61701 dmaengine_get_unmap_data -EXPORT_SYMBOL vmlinux 0x2afbd425 ethtool_op_get_ts_info -EXPORT_SYMBOL vmlinux 0x2b07e84b ps2_begin_command -EXPORT_SYMBOL vmlinux 0x2b0ea4ba ata_print_version -EXPORT_SYMBOL vmlinux 0x2b110144 blk_mq_kick_requeue_list -EXPORT_SYMBOL vmlinux 0x2b21576d blk_queue_flag_clear -EXPORT_SYMBOL vmlinux 0x2b2d4af0 alloc_netdev_mqs -EXPORT_SYMBOL vmlinux 0x2b43fd4a pci_bus_find_capability -EXPORT_SYMBOL vmlinux 0x2b50e6d6 tcp_child_process +EXPORT_SYMBOL vmlinux 0x2aa963e7 __cleancache_init_fs +EXPORT_SYMBOL vmlinux 0x2ac92963 netdev_port_same_parent_id +EXPORT_SYMBOL vmlinux 0x2ad2263e security_task_getsecid_obj +EXPORT_SYMBOL vmlinux 0x2ad3113a seq_bprintf +EXPORT_SYMBOL vmlinux 0x2adb9270 inet_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0x2af8331f prepare_to_swait_event +EXPORT_SYMBOL vmlinux 0x2b2a0d1c md_flush_request +EXPORT_SYMBOL vmlinux 0x2b2dda0d mipi_dsi_host_register +EXPORT_SYMBOL vmlinux 0x2b2ecbec submit_bio +EXPORT_SYMBOL vmlinux 0x2b395e3c devm_extcon_unregister_notifier_all +EXPORT_SYMBOL vmlinux 0x2b54d7b2 vmf_insert_pfn_prot EXPORT_SYMBOL vmlinux 0x2b593aa8 gen_pool_alloc_algo_owner EXPORT_SYMBOL vmlinux 0x2b68bd2f del_timer EXPORT_SYMBOL vmlinux 0x2b6f0962 __cpu_dying_mask -EXPORT_SYMBOL vmlinux 0x2b7af7d3 sock_alloc_send_pskb -EXPORT_SYMBOL vmlinux 0x2b7ca09a generic_cont_expand_simple -EXPORT_SYMBOL vmlinux 0x2b993e7a __wait_on_buffer EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock -EXPORT_SYMBOL vmlinux 0x2b9f01c0 param_ops_long -EXPORT_SYMBOL vmlinux 0x2baa0545 ip_getsockopt -EXPORT_SYMBOL vmlinux 0x2baa402f dup_iter -EXPORT_SYMBOL vmlinux 0x2bb2f015 vme_register_driver -EXPORT_SYMBOL vmlinux 0x2bb3064f set_pages_array_wb +EXPORT_SYMBOL vmlinux 0x2ba17dbf dev_get_mac_address EXPORT_SYMBOL vmlinux 0x2bb6099e dq_data_lock -EXPORT_SYMBOL vmlinux 0x2bbab015 param_ops_string +EXPORT_SYMBOL vmlinux 0x2bb7aa6f pci_bus_claim_resources EXPORT_SYMBOL vmlinux 0x2bd60ab9 acpi_reset +EXPORT_SYMBOL vmlinux 0x2bdca637 xfrm_policy_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x2be31c50 scsi_device_resume +EXPORT_SYMBOL vmlinux 0x2be76dd0 pcim_enable_device EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar -EXPORT_SYMBOL vmlinux 0x2c34ec01 vfs_get_tree -EXPORT_SYMBOL vmlinux 0x2c418b78 file_update_time -EXPORT_SYMBOL vmlinux 0x2c45c4aa nd_device_unregister -EXPORT_SYMBOL vmlinux 0x2c4bee0e sg_miter_stop -EXPORT_SYMBOL vmlinux 0x2c4d15fd noop_llseek +EXPORT_SYMBOL vmlinux 0x2c28a8ef tcp_rcv_established +EXPORT_SYMBOL vmlinux 0x2c3668cf shmem_aops +EXPORT_SYMBOL vmlinux 0x2c40f19a skb_store_bits +EXPORT_SYMBOL vmlinux 0x2c4b6dea sk_stream_kill_queues EXPORT_SYMBOL vmlinux 0x2c541e7b radix_tree_next_chunk +EXPORT_SYMBOL vmlinux 0x2c5d084f dev_mc_del_global EXPORT_SYMBOL vmlinux 0x2c71fbfb proc_dobool +EXPORT_SYMBOL vmlinux 0x2c748f5f param_get_ushort +EXPORT_SYMBOL vmlinux 0x2c89f284 jbd2_journal_lock_updates +EXPORT_SYMBOL vmlinux 0x2cae7991 dma_sync_sg_for_cpu EXPORT_SYMBOL vmlinux 0x2caf63d1 topology_phys_to_logical_die -EXPORT_SYMBOL vmlinux 0x2cbfbc6a netdev_name_node_alt_destroy -EXPORT_SYMBOL vmlinux 0x2cc9c25f sock_no_sendpage +EXPORT_SYMBOL vmlinux 0x2cb11261 __blockdev_direct_IO EXPORT_SYMBOL vmlinux 0x2ccd059a dim_on_top +EXPORT_SYMBOL vmlinux 0x2cd93249 flow_rule_match_ip +EXPORT_SYMBOL vmlinux 0x2cdbadd2 __nd_driver_register EXPORT_SYMBOL vmlinux 0x2cdf87a1 proc_dointvec_minmax -EXPORT_SYMBOL vmlinux 0x2ce5014f vfs_path_lookup EXPORT_SYMBOL vmlinux 0x2cf0f2cc config_item_init_type_name -EXPORT_SYMBOL vmlinux 0x2d0c6fc4 mdio_device_remove +EXPORT_SYMBOL vmlinux 0x2cf51adf ip_defrag +EXPORT_SYMBOL vmlinux 0x2cf5867e rproc_resource_cleanup EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock -EXPORT_SYMBOL vmlinux 0x2d152563 d_find_alias +EXPORT_SYMBOL vmlinux 0x2d14c539 sock_set_reuseaddr EXPORT_SYMBOL vmlinux 0x2d192c70 sg_zero_buffer +EXPORT_SYMBOL vmlinux 0x2d1e6d01 vme_master_request +EXPORT_SYMBOL vmlinux 0x2d284817 ipv6_skip_exthdr EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged EXPORT_SYMBOL vmlinux 0x2d3385d3 system_wq EXPORT_SYMBOL vmlinux 0x2d39b0a7 kstrdup -EXPORT_SYMBOL vmlinux 0x2d3d5894 tty_schedule_flip +EXPORT_SYMBOL vmlinux 0x2d3dc35f qdisc_watchdog_cancel EXPORT_SYMBOL vmlinux 0x2d4c773a hdmi_spd_infoframe_init EXPORT_SYMBOL vmlinux 0x2d4daef5 find_font -EXPORT_SYMBOL vmlinux 0x2d5170e6 key_reject_and_link -EXPORT_SYMBOL vmlinux 0x2d631386 jbd2_journal_submit_inode_data_buffers -EXPORT_SYMBOL vmlinux 0x2d6aa4b3 sk_stream_wait_close -EXPORT_SYMBOL vmlinux 0x2d7b16a2 blk_rq_map_user_iov +EXPORT_SYMBOL vmlinux 0x2d6a83d9 icmp_ndo_send EXPORT_SYMBOL vmlinux 0x2d912bca dmi_get_bios_year EXPORT_SYMBOL vmlinux 0x2d994605 security_inode_copy_up_xattr -EXPORT_SYMBOL vmlinux 0x2d9b32cf blk_rq_init -EXPORT_SYMBOL vmlinux 0x2dad5b6c rproc_elf_load_rsc_table -EXPORT_SYMBOL vmlinux 0x2db68e61 blk_rq_map_user -EXPORT_SYMBOL vmlinux 0x2db9213d __SCK__tp_func_write_msr -EXPORT_SYMBOL vmlinux 0x2dbf0cb7 seq_file_path -EXPORT_SYMBOL vmlinux 0x2dc33213 pci_disable_msi +EXPORT_SYMBOL vmlinux 0x2dbf9a7b inode_owner_or_capable +EXPORT_SYMBOL vmlinux 0x2dc1d9b7 pm860x_reg_read EXPORT_SYMBOL vmlinux 0x2dd16564 arch_register_cpu -EXPORT_SYMBOL vmlinux 0x2dded32d dm_table_run_md_queue_async EXPORT_SYMBOL vmlinux 0x2de125c0 page_frag_alloc_align -EXPORT_SYMBOL vmlinux 0x2deaafef blk_mq_complete_request +EXPORT_SYMBOL vmlinux 0x2de63e4c lookup_one_len EXPORT_SYMBOL vmlinux 0x2def7f76 rtc_cmos_write +EXPORT_SYMBOL vmlinux 0x2dfd2843 pnp_device_attach +EXPORT_SYMBOL vmlinux 0x2e03a35b serio_unregister_child_port EXPORT_SYMBOL vmlinux 0x2e0b1deb dma_fence_get_status -EXPORT_SYMBOL vmlinux 0x2e0de7fa add_to_page_cache_locked EXPORT_SYMBOL vmlinux 0x2e1ca751 clk_put +EXPORT_SYMBOL vmlinux 0x2e22f0f5 dev_mc_add_excl +EXPORT_SYMBOL vmlinux 0x2e2572e7 twl6040_get_vibralr_status EXPORT_SYMBOL vmlinux 0x2e2b40d2 strncat -EXPORT_SYMBOL vmlinux 0x2e2d56be devfreq_monitor_stop -EXPORT_SYMBOL vmlinux 0x2e2f542b pci_scan_bridge -EXPORT_SYMBOL vmlinux 0x2e3afcca fs_lookup_param -EXPORT_SYMBOL vmlinux 0x2e3b7d1d prepare_kernel_cred EXPORT_SYMBOL vmlinux 0x2e3bcce2 wait_for_completion_interruptible EXPORT_SYMBOL vmlinux 0x2e439142 drm_get_panel_orientation_quirk -EXPORT_SYMBOL vmlinux 0x2e534619 __scm_destroy -EXPORT_SYMBOL vmlinux 0x2e5a105b write_one_page +EXPORT_SYMBOL vmlinux 0x2e5f5b12 bprm_change_interp EXPORT_SYMBOL vmlinux 0x2e5fe036 __skb_ext_put -EXPORT_SYMBOL vmlinux 0x2e722c78 bio_devname -EXPORT_SYMBOL vmlinux 0x2e7b5f82 end_page_writeback -EXPORT_SYMBOL vmlinux 0x2e8144d4 pci_write_config_byte -EXPORT_SYMBOL vmlinux 0x2e877eee param_ops_ushort +EXPORT_SYMBOL vmlinux 0x2e7632f9 free_netdev +EXPORT_SYMBOL vmlinux 0x2e8ba275 pci_clear_master EXPORT_SYMBOL vmlinux 0x2ea52d3e dma_fence_chain_init -EXPORT_SYMBOL vmlinux 0x2eb56e9c udp6_csum_init +EXPORT_SYMBOL vmlinux 0x2ea9a88c inet6_ioctl +EXPORT_SYMBOL vmlinux 0x2eae7906 vga_switcheroo_unlock_ddc +EXPORT_SYMBOL vmlinux 0x2eb84ac1 flow_block_cb_priv EXPORT_SYMBOL vmlinux 0x2ec6bba0 errseq_set -EXPORT_SYMBOL vmlinux 0x2ecaec2d nexthop_res_grp_activity_update -EXPORT_SYMBOL vmlinux 0x2ed29547 serio_close +EXPORT_SYMBOL vmlinux 0x2ec7561c pci_request_irq +EXPORT_SYMBOL vmlinux 0x2ec79b9e posix_test_lock EXPORT_SYMBOL vmlinux 0x2ee4c2b1 hdmi_avi_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0x2ef4b2c4 pcie_get_speed_cap +EXPORT_SYMBOL vmlinux 0x2eea912c get_random_bytes_arch +EXPORT_SYMBOL vmlinux 0x2eecce85 dquot_set_dqblk +EXPORT_SYMBOL vmlinux 0x2ef7bf45 sg_miter_skip +EXPORT_SYMBOL vmlinux 0x2ef94b3c dst_alloc +EXPORT_SYMBOL vmlinux 0x2efa4b6c write_cache_pages EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc -EXPORT_SYMBOL vmlinux 0x2f0582f6 tcp_v4_md5_lookup -EXPORT_SYMBOL vmlinux 0x2f144ba0 follow_pfn -EXPORT_SYMBOL vmlinux 0x2f1be98e loop_register_transfer -EXPORT_SYMBOL vmlinux 0x2f287085 seq_printf +EXPORT_SYMBOL vmlinux 0x2f07b8ef xfrm_register_type_offload +EXPORT_SYMBOL vmlinux 0x2f0d791a proc_mkdir_mode +EXPORT_SYMBOL vmlinux 0x2f13b1c9 nf_ip_checksum +EXPORT_SYMBOL vmlinux 0x2f14a052 tcp_md5_do_del +EXPORT_SYMBOL vmlinux 0x2f1b08c9 mpage_readahead EXPORT_SYMBOL vmlinux 0x2f2e91b2 security_ib_alloc_security +EXPORT_SYMBOL vmlinux 0x2f358950 reuseport_detach_prog EXPORT_SYMBOL vmlinux 0x2f384db3 acpi_is_video_device -EXPORT_SYMBOL vmlinux 0x2f38772a amd_iommu_complete_ppr -EXPORT_SYMBOL vmlinux 0x2f4a8f9b blk_mq_init_queue -EXPORT_SYMBOL vmlinux 0x2f5effe5 iov_iter_kvec -EXPORT_SYMBOL vmlinux 0x2f699fec ww_mutex_lock_interruptible -EXPORT_SYMBOL vmlinux 0x2f72c983 fwnode_get_phy_id +EXPORT_SYMBOL vmlinux 0x2f3ecefd sk_stream_wait_memory +EXPORT_SYMBOL vmlinux 0x2f42cf46 pci_enable_device_mem +EXPORT_SYMBOL vmlinux 0x2f49526e __quota_error +EXPORT_SYMBOL vmlinux 0x2f5573cf vfs_create_mount +EXPORT_SYMBOL vmlinux 0x2f67c0c3 tag_pages_for_writeback +EXPORT_SYMBOL vmlinux 0x2f6ed8da xen_free_unpopulated_pages EXPORT_SYMBOL vmlinux 0x2f7754a8 dma_pool_free -EXPORT_SYMBOL vmlinux 0x2f82fb8d vm_map_pages -EXPORT_SYMBOL vmlinux 0x2fa0aea3 neigh_seq_next -EXPORT_SYMBOL vmlinux 0x2fa8d514 get_user_pages -EXPORT_SYMBOL vmlinux 0x2faa21c0 __SCK__tp_func_rdpmc -EXPORT_SYMBOL vmlinux 0x2fb6de5d add_device_randomness -EXPORT_SYMBOL vmlinux 0x2fd3731d security_tun_dev_attach +EXPORT_SYMBOL vmlinux 0x2f7d4759 refresh_frequency_limits +EXPORT_SYMBOL vmlinux 0x2f83a518 __cleancache_put_page +EXPORT_SYMBOL vmlinux 0x2f8ea3b3 neigh_xmit +EXPORT_SYMBOL vmlinux 0x2faccb31 acpi_bus_get_status +EXPORT_SYMBOL vmlinux 0x2fad734b __filemap_set_wb_err +EXPORT_SYMBOL vmlinux 0x2faffb56 page_get_link +EXPORT_SYMBOL vmlinux 0x2fcb0a14 devm_request_any_context_irq EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier -EXPORT_SYMBOL vmlinux 0x2fed39c6 dev_set_alias -EXPORT_SYMBOL vmlinux 0x2feed7cb pci_free_host_bridge -EXPORT_SYMBOL vmlinux 0x2ff6fc96 set_nlink -EXPORT_SYMBOL vmlinux 0x3010d869 blk_queue_max_segment_size +EXPORT_SYMBOL vmlinux 0x2fefd91d netdev_bind_sb_channel_queue +EXPORT_SYMBOL vmlinux 0x300b408d gnet_stats_start_copy_compat +EXPORT_SYMBOL vmlinux 0x300dbcac ip6_dst_check EXPORT_SYMBOL vmlinux 0x301304c2 __get_user_nocheck_8 -EXPORT_SYMBOL vmlinux 0x30215d1b unregister_mii_tstamp_controller -EXPORT_SYMBOL vmlinux 0x30238596 eth_type_trans -EXPORT_SYMBOL vmlinux 0x305013e7 inet_getname +EXPORT_SYMBOL vmlinux 0x302f9a46 scsi_mode_sense EXPORT_SYMBOL vmlinux 0x3052fecd ptp_convert_timestamp EXPORT_SYMBOL vmlinux 0x305a916c __x86_indirect_thunk_rdi -EXPORT_SYMBOL vmlinux 0x3060eeda acpi_device_set_power -EXPORT_SYMBOL vmlinux 0x30744de5 sb_min_blocksize +EXPORT_SYMBOL vmlinux 0x308f1b61 simple_dir_operations EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep -EXPORT_SYMBOL vmlinux 0x30a2df2c account_page_redirty -EXPORT_SYMBOL vmlinux 0x30a5dbfd of_find_mipi_dsi_host_by_node EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user -EXPORT_SYMBOL vmlinux 0x30ac5d6a netdev_lower_get_first_private_rcu +EXPORT_SYMBOL vmlinux 0x30ab54d3 simple_fill_super EXPORT_SYMBOL vmlinux 0x30acfde9 hsiphash_2u32 -EXPORT_SYMBOL vmlinux 0x30b4730c ipv4_mtu -EXPORT_SYMBOL vmlinux 0x30c47945 sg_miter_start -EXPORT_SYMBOL vmlinux 0x30cd7fac skb_expand_head +EXPORT_SYMBOL vmlinux 0x30bdc4d6 dquot_commit +EXPORT_SYMBOL vmlinux 0x30e12d0d pci_disable_link_state_locked EXPORT_SYMBOL vmlinux 0x30e74134 tty_termios_copy_hw +EXPORT_SYMBOL vmlinux 0x30f2b4af sync_filesystem EXPORT_SYMBOL vmlinux 0x3100cff9 lockref_get_or_lock EXPORT_SYMBOL vmlinux 0x3102d70b frontswap_curr_pages -EXPORT_SYMBOL vmlinux 0x31187883 inet_frag_find -EXPORT_SYMBOL vmlinux 0x31256619 phy_advertise_supported -EXPORT_SYMBOL vmlinux 0x3126435f pci_disable_msix +EXPORT_SYMBOL vmlinux 0x310894f1 nf_unregister_net_hook +EXPORT_SYMBOL vmlinux 0x310facd1 tcf_em_tree_destroy EXPORT_SYMBOL vmlinux 0x3126a9e8 siphash_1u64 -EXPORT_SYMBOL vmlinux 0x3139cf8e rproc_free +EXPORT_SYMBOL vmlinux 0x312ae9d9 ethtool_virtdev_set_link_ksettings +EXPORT_SYMBOL vmlinux 0x312afd7d skb_trim EXPORT_SYMBOL vmlinux 0x31549b2a __x86_indirect_thunk_r10 -EXPORT_SYMBOL vmlinux 0x3165f133 __blk_alloc_disk -EXPORT_SYMBOL vmlinux 0x31662382 discard_new_inode -EXPORT_SYMBOL vmlinux 0x317d2da5 input_setup_polling -EXPORT_SYMBOL vmlinux 0x3189d861 dump_page +EXPORT_SYMBOL vmlinux 0x31750f0a netdev_has_upper_dev_all_rcu +EXPORT_SYMBOL vmlinux 0x318bf077 ip6mr_rule_default EXPORT_SYMBOL vmlinux 0x319d493d proc_dostring -EXPORT_SYMBOL vmlinux 0x31a8077e get_unmapped_area -EXPORT_SYMBOL vmlinux 0x31b76d89 neigh_connected_output -EXPORT_SYMBOL vmlinux 0x31cc4d02 sb_set_blocksize -EXPORT_SYMBOL vmlinux 0x31e6df27 mmc_gpio_get_ro -EXPORT_SYMBOL vmlinux 0x32036fcc secpath_set -EXPORT_SYMBOL vmlinux 0x32076736 tcp_release_cb +EXPORT_SYMBOL vmlinux 0x31a5145d sg_miter_next +EXPORT_SYMBOL vmlinux 0x31cf2ad6 filemap_invalidate_lock_two +EXPORT_SYMBOL vmlinux 0x31d216a6 phy_write_paged +EXPORT_SYMBOL vmlinux 0x31e062f0 tcp_rtx_synack +EXPORT_SYMBOL vmlinux 0x31e7b0a4 skb_tx_error +EXPORT_SYMBOL vmlinux 0x31ee5ab3 bdev_read_only +EXPORT_SYMBOL vmlinux 0x31ff6185 filemap_fdatawrite_wbc +EXPORT_SYMBOL vmlinux 0x3210e1e6 elv_rb_del EXPORT_SYMBOL vmlinux 0x3213f038 mutex_unlock -EXPORT_SYMBOL vmlinux 0x32267b2d ipv6_select_ident -EXPORT_SYMBOL vmlinux 0x322a4d20 bpf_prog_get_type_path -EXPORT_SYMBOL vmlinux 0x322a71dd flow_rule_match_ip -EXPORT_SYMBOL vmlinux 0x322be207 mnt_set_expiry -EXPORT_SYMBOL vmlinux 0x323e8437 udp_sendmsg -EXPORT_SYMBOL vmlinux 0x3248753d __sock_create -EXPORT_SYMBOL vmlinux 0x3253bb89 pfifo_fast_ops -EXPORT_SYMBOL vmlinux 0x32642268 netpoll_parse_options +EXPORT_SYMBOL vmlinux 0x32294a23 acpi_bus_unregister_driver +EXPORT_SYMBOL vmlinux 0x32297734 rproc_vq_interrupt +EXPORT_SYMBOL vmlinux 0x3233cd1a uart_get_divisor +EXPORT_SYMBOL vmlinux 0x3235be66 alloc_file_pseudo +EXPORT_SYMBOL vmlinux 0x325205f7 input_mt_report_slot_state EXPORT_SYMBOL vmlinux 0x326425ca pci_unmap_biosrom +EXPORT_SYMBOL vmlinux 0x3271e48e ram_aops EXPORT_SYMBOL vmlinux 0x327c84bf vme_lm_attach -EXPORT_SYMBOL vmlinux 0x327c9d1b nonseekable_open +EXPORT_SYMBOL vmlinux 0x32818bb1 __cleancache_invalidate_page EXPORT_SYMBOL vmlinux 0x3283e6b0 prandom_seed_full_state -EXPORT_SYMBOL vmlinux 0x328e985f sg_alloc_append_table_from_pages -EXPORT_SYMBOL vmlinux 0x3290e042 flow_rule_match_eth_addrs -EXPORT_SYMBOL vmlinux 0x329309ff __nlmsg_put -EXPORT_SYMBOL vmlinux 0x3293d031 input_mt_report_finger_count -EXPORT_SYMBOL vmlinux 0x329c1627 devm_clk_hw_register_clkdev -EXPORT_SYMBOL vmlinux 0x32a7d476 mr_table_dump -EXPORT_SYMBOL vmlinux 0x32b2367a skb_copy_datagram_from_iter +EXPORT_SYMBOL vmlinux 0x328a4a0b dev_set_alias +EXPORT_SYMBOL vmlinux 0x32bd7dff ip_generic_getfrag EXPORT_SYMBOL vmlinux 0x32ce3777 radix_tree_preload -EXPORT_SYMBOL vmlinux 0x32d8894c get_agp_version -EXPORT_SYMBOL vmlinux 0x32d89432 security_dentry_create_files_as +EXPORT_SYMBOL vmlinux 0x32d3c12d __inode_add_bytes +EXPORT_SYMBOL vmlinux 0x32dcf1f9 acpi_get_hp_hw_control_from_firmware +EXPORT_SYMBOL vmlinux 0x32dd93a8 phy_device_free +EXPORT_SYMBOL vmlinux 0x32e39af8 fput EXPORT_SYMBOL vmlinux 0x32e6f1a0 acpi_video_backlight_string -EXPORT_SYMBOL vmlinux 0x32fe776a tty_hung_up_p -EXPORT_SYMBOL vmlinux 0x330bf65b set_pages_uc -EXPORT_SYMBOL vmlinux 0x331a9189 ipv6_chk_addr +EXPORT_SYMBOL vmlinux 0x32ed27ae simple_get_link +EXPORT_SYMBOL vmlinux 0x32fe5af4 __lock_buffer +EXPORT_SYMBOL vmlinux 0x3307c64f param_get_string EXPORT_SYMBOL vmlinux 0x3324ef3b acpi_set_firmware_waking_vector -EXPORT_SYMBOL vmlinux 0x332e12b1 jbd2_journal_begin_ordered_truncate -EXPORT_SYMBOL vmlinux 0x333a5d95 _copy_from_iter -EXPORT_SYMBOL vmlinux 0x333b26b7 skb_checksum_help -EXPORT_SYMBOL vmlinux 0x333f4ee3 capable_wrt_inode_uidgid -EXPORT_SYMBOL vmlinux 0x33648391 mmc_retune_pause +EXPORT_SYMBOL vmlinux 0x33353723 security_locked_down +EXPORT_SYMBOL vmlinux 0x333626ee page_mapping +EXPORT_SYMBOL vmlinux 0x333ddddb dev_mc_init +EXPORT_SYMBOL vmlinux 0x33434d8e devm_clk_put +EXPORT_SYMBOL vmlinux 0x3344f20c fwnode_mdio_find_device +EXPORT_SYMBOL vmlinux 0x33619273 iommu_dma_get_resv_regions EXPORT_SYMBOL vmlinux 0x33736a1d __genradix_ptr_alloc -EXPORT_SYMBOL vmlinux 0x33934a4e twl6040_set_bits -EXPORT_SYMBOL vmlinux 0x3398397c node_data -EXPORT_SYMBOL vmlinux 0x33a1702e get_user_pages_remote +EXPORT_SYMBOL vmlinux 0x3384ef04 fib6_info_hw_flags_set +EXPORT_SYMBOL vmlinux 0x33a24371 __scm_send +EXPORT_SYMBOL vmlinux 0x33b21ad5 dev_uc_unsync +EXPORT_SYMBOL vmlinux 0x33b36b37 __i2c_transfer EXPORT_SYMBOL vmlinux 0x33b84f74 copy_page -EXPORT_SYMBOL vmlinux 0x33b89695 __neigh_set_probe_once -EXPORT_SYMBOL vmlinux 0x33ba7d46 xfrm_state_walk_done -EXPORT_SYMBOL vmlinux 0x33bb2731 do_clone_file_range -EXPORT_SYMBOL vmlinux 0x33d3d4f8 tcf_action_dump_1 -EXPORT_SYMBOL vmlinux 0x33e645a0 register_netdev +EXPORT_SYMBOL vmlinux 0x33c7fb4b devm_alloc_etherdev_mqs EXPORT_SYMBOL vmlinux 0x33f0768c cpufreq_quick_get_max -EXPORT_SYMBOL vmlinux 0x33f5c5d6 sock_no_recvmsg EXPORT_SYMBOL vmlinux 0x33fc2a31 get_user_ifreq EXPORT_SYMBOL vmlinux 0x33fcf44a __kfifo_out_r EXPORT_SYMBOL vmlinux 0x33fd9da4 acpi_get_gpe_device -EXPORT_SYMBOL vmlinux 0x3406fe54 flow_block_cb_free -EXPORT_SYMBOL vmlinux 0x3407b2c0 skb_headers_offset_update -EXPORT_SYMBOL vmlinux 0x3407e1c2 vme_init_bridge -EXPORT_SYMBOL vmlinux 0x340bf99a fb_set_var +EXPORT_SYMBOL vmlinux 0x340a7765 ppp_channel_index EXPORT_SYMBOL vmlinux 0x3424daf8 __traceiter_dma_fence_enable_signal -EXPORT_SYMBOL vmlinux 0x34261319 pin_user_pages_locked -EXPORT_SYMBOL vmlinux 0x3438292b phy_attached_info_irq -EXPORT_SYMBOL vmlinux 0x343b3a5d sock_dequeue_err_skb +EXPORT_SYMBOL vmlinux 0x342ad3de is_acpi_device_node +EXPORT_SYMBOL vmlinux 0x342da4f4 _dev_crit +EXPORT_SYMBOL vmlinux 0x343875ec inet_listen +EXPORT_SYMBOL vmlinux 0x343a4b38 scsi_scan_host EXPORT_SYMBOL vmlinux 0x3441445f msrs_free -EXPORT_SYMBOL vmlinux 0x3473f6e1 vfs_symlink +EXPORT_SYMBOL vmlinux 0x344539ce __alloc_skb +EXPORT_SYMBOL vmlinux 0x344c4a82 nd_region_to_nstype +EXPORT_SYMBOL vmlinux 0x3460e205 pci_remove_bus +EXPORT_SYMBOL vmlinux 0x34617d0e __scsi_print_sense +EXPORT_SYMBOL vmlinux 0x346d4f15 scsi_rescan_device +EXPORT_SYMBOL vmlinux 0x348978af cdrom_get_media_event EXPORT_SYMBOL vmlinux 0x3489859f acpi_enter_sleep_state_s4bios -EXPORT_SYMBOL vmlinux 0x348ab65c qdisc_create_dflt EXPORT_SYMBOL vmlinux 0x349cba85 strchr -EXPORT_SYMBOL vmlinux 0x349d9666 netdev_upper_get_next_dev_rcu -EXPORT_SYMBOL vmlinux 0x34a1ef49 inode_set_bytes EXPORT_SYMBOL vmlinux 0x34a1f7e3 acpi_processor_get_psd -EXPORT_SYMBOL vmlinux 0x34a7e225 pci_bus_add_devices EXPORT_SYMBOL vmlinux 0x34c7cdbc lookup_bdev -EXPORT_SYMBOL vmlinux 0x34cb24b2 mr_dump -EXPORT_SYMBOL vmlinux 0x34d00fb9 tcp_initialize_rcv_mss -EXPORT_SYMBOL vmlinux 0x34d5c420 mmc_can_gpio_ro EXPORT_SYMBOL vmlinux 0x34db050b _raw_spin_lock_irqsave -EXPORT_SYMBOL vmlinux 0x34e09742 neigh_ifdown EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue EXPORT_SYMBOL vmlinux 0x34f89363 acpi_terminate_debugger +EXPORT_SYMBOL vmlinux 0x34fac765 ip6_frag_next +EXPORT_SYMBOL vmlinux 0x34fbee2f set_blocksize +EXPORT_SYMBOL vmlinux 0x3506b702 dquot_load_quota_sb +EXPORT_SYMBOL vmlinux 0x350e7e71 cros_ec_cmd_xfer EXPORT_SYMBOL vmlinux 0x350ea558 dma_fence_default_wait -EXPORT_SYMBOL vmlinux 0x35141df4 jbd2_journal_get_undo_access +EXPORT_SYMBOL vmlinux 0x35113a8e i2c_smbus_read_i2c_block_data EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier -EXPORT_SYMBOL vmlinux 0x352e957f __neigh_create -EXPORT_SYMBOL vmlinux 0x3530c042 vfs_get_fsid -EXPORT_SYMBOL vmlinux 0x35370e39 __dquot_free_space +EXPORT_SYMBOL vmlinux 0x3523aa68 request_partial_firmware_into_buf +EXPORT_SYMBOL vmlinux 0x35265d3e mipi_dsi_picture_parameter_set +EXPORT_SYMBOL vmlinux 0x352ed0e2 seg6_hmac_info_lookup +EXPORT_SYMBOL vmlinux 0x353345c7 blk_mq_run_hw_queues EXPORT_SYMBOL vmlinux 0x3539f11b match_strlcpy -EXPORT_SYMBOL vmlinux 0x353d40bf from_kgid_munged -EXPORT_SYMBOL vmlinux 0x35447359 get_user_pages_locked EXPORT_SYMBOL vmlinux 0x354b4a1e acpi_ut_trace +EXPORT_SYMBOL vmlinux 0x355dcc9c pm860x_bulk_write EXPORT_SYMBOL vmlinux 0x356461c8 rtc_time64_to_tm -EXPORT_SYMBOL vmlinux 0x357e8c2a input_mt_sync_frame -EXPORT_SYMBOL vmlinux 0x35a10c4c xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0x3578bae9 param_set_short +EXPORT_SYMBOL vmlinux 0x3582aafe vfs_mkdir +EXPORT_SYMBOL vmlinux 0x35833dac security_sb_set_mnt_opts +EXPORT_SYMBOL vmlinux 0x359d627d get_watch_queue EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 -EXPORT_SYMBOL vmlinux 0x35ae76a6 seq_lseek -EXPORT_SYMBOL vmlinux 0x35bf3db7 processors +EXPORT_SYMBOL vmlinux 0x35c93bdf devm_of_iomap +EXPORT_SYMBOL vmlinux 0x35d0d1ff mark_buffer_write_io_error +EXPORT_SYMBOL vmlinux 0x35db776f security_skb_classify_flow +EXPORT_SYMBOL vmlinux 0x35e0a37e del_gendisk +EXPORT_SYMBOL vmlinux 0x35f5ed3c mmc_add_host EXPORT_SYMBOL vmlinux 0x360b1afe probe_irq_mask -EXPORT_SYMBOL vmlinux 0x362accfd set_bdi_congested -EXPORT_SYMBOL vmlinux 0x36315fb1 security_path_mkdir +EXPORT_SYMBOL vmlinux 0x360d9fec __mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x36379df3 mfd_remove_devices_late +EXPORT_SYMBOL vmlinux 0x36449c72 pneigh_enqueue +EXPORT_SYMBOL vmlinux 0x3647978d md_reload_sb EXPORT_SYMBOL vmlinux 0x364850b1 down_write_killable -EXPORT_SYMBOL vmlinux 0x36489017 request_firmware_into_buf EXPORT_SYMBOL vmlinux 0x364c23ad mutex_is_locked EXPORT_SYMBOL vmlinux 0x365acda7 set_normalized_timespec64 EXPORT_SYMBOL vmlinux 0x365e7911 kstrdup_const -EXPORT_SYMBOL vmlinux 0x3664501f blk_mq_start_request -EXPORT_SYMBOL vmlinux 0x36711709 framebuffer_alloc -EXPORT_SYMBOL vmlinux 0x36809d77 remove_proc_entry -EXPORT_SYMBOL vmlinux 0x368bbb2f rproc_coredump_add_custom_segment -EXPORT_SYMBOL vmlinux 0x36a585d2 dcb_setapp -EXPORT_SYMBOL vmlinux 0x36ac2f7b md_integrity_add_rdev -EXPORT_SYMBOL vmlinux 0x36acc663 tc_setup_cb_call -EXPORT_SYMBOL vmlinux 0x36ae5167 netif_receive_skb_core -EXPORT_SYMBOL vmlinux 0x36b4d87f fwnode_phy_find_device +EXPORT_SYMBOL vmlinux 0x366e520e generic_file_fsync EXPORT_SYMBOL vmlinux 0x36b6ebbf down_killable -EXPORT_SYMBOL vmlinux 0x36cc38d2 phy_ethtool_set_eee -EXPORT_SYMBOL vmlinux 0x37014a37 make_kprojid -EXPORT_SYMBOL vmlinux 0x3705804a pci_release_regions +EXPORT_SYMBOL vmlinux 0x36c69847 __SCK__tp_func_dma_fence_signaled +EXPORT_SYMBOL vmlinux 0x36e8ccf0 seq_open_private +EXPORT_SYMBOL vmlinux 0x36f0c3fc neigh_update +EXPORT_SYMBOL vmlinux 0x36f747d4 device_get_mac_address +EXPORT_SYMBOL vmlinux 0x36f87f71 dev_change_proto_down +EXPORT_SYMBOL vmlinux 0x36fd1194 skb_flow_get_icmp_tci +EXPORT_SYMBOL vmlinux 0x3703b5ff kmalloc_caches +EXPORT_SYMBOL vmlinux 0x3704ed20 kernel_sock_ip_overhead +EXPORT_SYMBOL vmlinux 0x370b878f tcp_check_req EXPORT_SYMBOL vmlinux 0x37110088 remove_wait_queue -EXPORT_SYMBOL vmlinux 0x3720b79f pci_alloc_irq_vectors_affinity +EXPORT_SYMBOL vmlinux 0x3713ba5d pci_alloc_dev +EXPORT_SYMBOL vmlinux 0x371ca57d is_nd_dax +EXPORT_SYMBOL vmlinux 0x3727d269 block_write_end +EXPORT_SYMBOL vmlinux 0x372cb297 pci_match_id +EXPORT_SYMBOL vmlinux 0x372d553d pci_msix_vec_count EXPORT_SYMBOL vmlinux 0x3737d9a9 ZSTD_DStreamWorkspaceBound +EXPORT_SYMBOL vmlinux 0x373bbdef rtnl_link_get_net +EXPORT_SYMBOL vmlinux 0x373d7ded padata_alloc_shell +EXPORT_SYMBOL vmlinux 0x3742d9c5 amd_iommu_flush_page EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn -EXPORT_SYMBOL vmlinux 0x374ad5ad unregister_filesystem -EXPORT_SYMBOL vmlinux 0x3754a63e pm8606_osc_enable +EXPORT_SYMBOL vmlinux 0x3753dfce pci_bus_type EXPORT_SYMBOL vmlinux 0x3755f990 gf128mul_init_64k_bbe -EXPORT_SYMBOL vmlinux 0x375e89b6 mount_nodev -EXPORT_SYMBOL vmlinux 0x37608b38 cros_ec_cmd_xfer_status -EXPORT_SYMBOL vmlinux 0x37636bbe dev_set_promiscuity +EXPORT_SYMBOL vmlinux 0x3761e1e8 acpi_dev_hid_uid_match EXPORT_SYMBOL vmlinux 0x37746fde ZSTD_initDStream -EXPORT_SYMBOL vmlinux 0x377b2363 fasync_helper +EXPORT_SYMBOL vmlinux 0x3778f0fe tc_setup_flow_action EXPORT_SYMBOL vmlinux 0x377d8004 acpi_error -EXPORT_SYMBOL vmlinux 0x3782f1bf skb_mac_gso_segment -EXPORT_SYMBOL vmlinux 0x3785d1d0 i2c_del_driver -EXPORT_SYMBOL vmlinux 0x37b04998 filemap_invalidate_lock_two -EXPORT_SYMBOL vmlinux 0x37b708ad backlight_force_update +EXPORT_SYMBOL vmlinux 0x37a18157 try_to_writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0x37a3f7a8 wake_up_process +EXPORT_SYMBOL vmlinux 0x37a88690 hmm_range_fault +EXPORT_SYMBOL vmlinux 0x37ae0de1 inet_twsk_deschedule_put EXPORT_SYMBOL vmlinux 0x37b8b39e screen_info EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs -EXPORT_SYMBOL vmlinux 0x37c4eba3 ip_queue_xmit -EXPORT_SYMBOL vmlinux 0x37d4f771 agp_generic_alloc_page +EXPORT_SYMBOL vmlinux 0x37c0e431 jbd2_journal_get_undo_access +EXPORT_SYMBOL vmlinux 0x37d6b012 cdrom_get_last_written EXPORT_SYMBOL vmlinux 0x37db8f19 dmi_get_date -EXPORT_SYMBOL vmlinux 0x37f12b49 mipi_dsi_generic_write -EXPORT_SYMBOL vmlinux 0x37fe778f rps_may_expire_flow -EXPORT_SYMBOL vmlinux 0x381586a3 inode_update_time +EXPORT_SYMBOL vmlinux 0x37fcea0e cleancache_register_ops +EXPORT_SYMBOL vmlinux 0x37ff9f09 register_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x3805affb jbd2_journal_ack_err +EXPORT_SYMBOL vmlinux 0x380f35ab ethtool_get_phc_vclocks EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus -EXPORT_SYMBOL vmlinux 0x381af4be __dquot_alloc_space -EXPORT_SYMBOL vmlinux 0x381cec01 crypto_sha256_update -EXPORT_SYMBOL vmlinux 0x383bd5ef rio_query_mport +EXPORT_SYMBOL vmlinux 0x382dbca4 dev_change_flags +EXPORT_SYMBOL vmlinux 0x384d34f6 __hw_addr_ref_sync_dev EXPORT_SYMBOL vmlinux 0x3854774b kstrtoll -EXPORT_SYMBOL vmlinux 0x386e04d0 sk_stop_timer_sync +EXPORT_SYMBOL vmlinux 0x38687953 tcp_initialize_rcv_mss EXPORT_SYMBOL vmlinux 0x38869d88 kstat -EXPORT_SYMBOL vmlinux 0x3887dbc2 __page_symlink EXPORT_SYMBOL vmlinux 0x388aa3c9 neigh_proc_dointvec_ms_jiffies EXPORT_SYMBOL vmlinux 0x3891ffc8 ecryptfs_fill_auth_tok +EXPORT_SYMBOL vmlinux 0x38938c60 blkdev_get_by_path EXPORT_SYMBOL vmlinux 0x389617b0 LZ4_decompress_fast_continue EXPORT_SYMBOL vmlinux 0x38a71b7e pci_free_resource_list EXPORT_SYMBOL vmlinux 0x38a9f7c5 in6addr_loopback -EXPORT_SYMBOL vmlinux 0x38adf9fe devm_devfreq_unregister_notifier -EXPORT_SYMBOL vmlinux 0x38c7fc61 tty_port_alloc_xmit_buf -EXPORT_SYMBOL vmlinux 0x38d7d21d input_get_timestamp -EXPORT_SYMBOL vmlinux 0x38de3078 amd_iommu_flush_page +EXPORT_SYMBOL vmlinux 0x38ac1cae input_open_device +EXPORT_SYMBOL vmlinux 0x38b0e1fe netdev_class_remove_file_ns +EXPORT_SYMBOL vmlinux 0x38c621c0 mmc_gpiod_request_ro EXPORT_SYMBOL vmlinux 0x38e46431 mempool_exit -EXPORT_SYMBOL vmlinux 0x38e59989 security_sb_mnt_opts_compat -EXPORT_SYMBOL vmlinux 0x38ea7277 iov_iter_fault_in_readable EXPORT_SYMBOL vmlinux 0x38f48af7 put_user_ifreq -EXPORT_SYMBOL vmlinux 0x3904edd6 pci_ep_cfs_add_epc_group +EXPORT_SYMBOL vmlinux 0x390249d5 netdev_notice +EXPORT_SYMBOL vmlinux 0x3902f172 finish_no_open EXPORT_SYMBOL vmlinux 0x39081193 __max_logical_packages -EXPORT_SYMBOL vmlinux 0x3919ec83 pci_find_parent_resource +EXPORT_SYMBOL vmlinux 0x3915694b vme_register_driver +EXPORT_SYMBOL vmlinux 0x391eeb1d netif_receive_skb_core +EXPORT_SYMBOL vmlinux 0x39237a99 pnp_device_detach EXPORT_SYMBOL vmlinux 0x392b1fea wait_for_completion_io +EXPORT_SYMBOL vmlinux 0x3935346f tcp_splice_read +EXPORT_SYMBOL vmlinux 0x3937358c key_unlink EXPORT_SYMBOL vmlinux 0x3939f8f0 rfkill_pause_polling EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p EXPORT_SYMBOL vmlinux 0x394a1e11 phy_sfp_attach EXPORT_SYMBOL vmlinux 0x3955fcf6 __kfifo_in_r -EXPORT_SYMBOL vmlinux 0x396bc8e8 i2c_get_adapter -EXPORT_SYMBOL vmlinux 0x39758131 skb_clone_sk -EXPORT_SYMBOL vmlinux 0x397a7159 tcp_conn_request -EXPORT_SYMBOL vmlinux 0x398cbe4b mipi_dsi_dcs_get_power_mode +EXPORT_SYMBOL vmlinux 0x3989279b __f_setown +EXPORT_SYMBOL vmlinux 0x3998690f pcie_bandwidth_available EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow EXPORT_SYMBOL vmlinux 0x399ad043 __kfifo_dma_out_finish_r +EXPORT_SYMBOL vmlinux 0x39a96a8e tcp_sendmsg +EXPORT_SYMBOL vmlinux 0x39aa94c9 vfs_get_tree EXPORT_SYMBOL vmlinux 0x39b52d19 __bitmap_and -EXPORT_SYMBOL vmlinux 0x39d0bd44 mmc_retune_release +EXPORT_SYMBOL vmlinux 0x39b73b8e proc_create +EXPORT_SYMBOL vmlinux 0x39c8260b dev_uc_sync EXPORT_SYMBOL vmlinux 0x39e3c030 do_trace_read_msr -EXPORT_SYMBOL vmlinux 0x39e9896d sk_dst_check -EXPORT_SYMBOL vmlinux 0x39f9257a key_put -EXPORT_SYMBOL vmlinux 0x3a07b787 tcp_v4_conn_request +EXPORT_SYMBOL vmlinux 0x39e64939 dev_activate +EXPORT_SYMBOL vmlinux 0x39fa8cf4 filemap_map_pages +EXPORT_SYMBOL vmlinux 0x3a021b44 prepare_to_swait_exclusive EXPORT_SYMBOL vmlinux 0x3a08475f platform_thermal_notify EXPORT_SYMBOL vmlinux 0x3a099605 __get_user_nocheck_4 EXPORT_SYMBOL vmlinux 0x3a13f54a sgl_alloc -EXPORT_SYMBOL vmlinux 0x3a1f32ab agp_alloc_bridge -EXPORT_SYMBOL vmlinux 0x3a2414f0 sync_dirty_buffer EXPORT_SYMBOL vmlinux 0x3a2d1dfa rdmsr_safe_regs_on_cpu EXPORT_SYMBOL vmlinux 0x3a2f6702 sg_alloc_table +EXPORT_SYMBOL vmlinux 0x3a306bce serio_unregister_driver EXPORT_SYMBOL vmlinux 0x3a32839e intel_gtt_chipset_flush -EXPORT_SYMBOL vmlinux 0x3a334dbe xfrm4_protocol_deregister -EXPORT_SYMBOL vmlinux 0x3a341926 fuse_mount_destroy -EXPORT_SYMBOL vmlinux 0x3a3f85d7 is_subdir -EXPORT_SYMBOL vmlinux 0x3a45497a pldmfw_op_pci_match_record +EXPORT_SYMBOL vmlinux 0x3a4189a2 get_task_cred +EXPORT_SYMBOL vmlinux 0x3a42c239 dmam_alloc_attrs EXPORT_SYMBOL vmlinux 0x3a4f9d28 rng_is_initialized -EXPORT_SYMBOL vmlinux 0x3a5932d3 generic_file_write_iter -EXPORT_SYMBOL vmlinux 0x3a662c70 pci_set_master -EXPORT_SYMBOL vmlinux 0x3a77234e ipv6_dev_mc_dec -EXPORT_SYMBOL vmlinux 0x3a774386 genphy_update_link -EXPORT_SYMBOL vmlinux 0x3a966a26 __devm_release_region -EXPORT_SYMBOL vmlinux 0x3aa757da max8925_reg_read +EXPORT_SYMBOL vmlinux 0x3a5fdf14 pm_vt_switch_required +EXPORT_SYMBOL vmlinux 0x3a61f10b nvdimm_bus_lock +EXPORT_SYMBOL vmlinux 0x3a63f62c key_alloc +EXPORT_SYMBOL vmlinux 0x3a6666b2 sock_set_rcvbuf +EXPORT_SYMBOL vmlinux 0x3a8dec31 genphy_aneg_done +EXPORT_SYMBOL vmlinux 0x3a9219bf blk_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x3aa40cc3 mntget +EXPORT_SYMBOL vmlinux 0x3aab3e1f __cleancache_get_page EXPORT_SYMBOL vmlinux 0x3ab7b1cc scsi_set_sense_field_pointer +EXPORT_SYMBOL vmlinux 0x3abee171 pci_set_master EXPORT_SYMBOL vmlinux 0x3aca0190 _raw_write_lock_irq -EXPORT_SYMBOL vmlinux 0x3acd2bb2 __tracepoint_kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0x3ad1e703 bd_abort_claiming +EXPORT_SYMBOL vmlinux 0x3acea794 jbd2_journal_finish_inode_data_buffers EXPORT_SYMBOL vmlinux 0x3ad5cda3 lockref_get_not_zero EXPORT_SYMBOL vmlinux 0x3ad7a5d5 acpi_evaluate_reference +EXPORT_SYMBOL vmlinux 0x3ada3ada netdev_update_features EXPORT_SYMBOL vmlinux 0x3ada9e06 acpi_check_region -EXPORT_SYMBOL vmlinux 0x3af6f5be blk_put_request +EXPORT_SYMBOL vmlinux 0x3af14ce0 nf_hook_slow_list +EXPORT_SYMBOL vmlinux 0x3afbf4e9 put_fs_context +EXPORT_SYMBOL vmlinux 0x3afd006b file_fdatawait_range EXPORT_SYMBOL vmlinux 0x3aff3200 acpi_evaluate_object_typed EXPORT_SYMBOL vmlinux 0x3b029f48 acpi_install_fixed_event_handler +EXPORT_SYMBOL vmlinux 0x3b0df4ea wait_on_page_bit +EXPORT_SYMBOL vmlinux 0x3b1f2693 __mdiobus_read EXPORT_SYMBOL vmlinux 0x3b20fb95 dma_fence_remove_callback -EXPORT_SYMBOL vmlinux 0x3b2b4426 tcp_timewait_state_process +EXPORT_SYMBOL vmlinux 0x3b2338e9 phy_resume +EXPORT_SYMBOL vmlinux 0x3b267724 set_anon_super +EXPORT_SYMBOL vmlinux 0x3b26de83 pci_irq_get_affinity +EXPORT_SYMBOL vmlinux 0x3b2e93fe tcf_block_get +EXPORT_SYMBOL vmlinux 0x3b30d21c ip4_datagram_connect EXPORT_SYMBOL vmlinux 0x3b321462 LZ4_setStreamDecode -EXPORT_SYMBOL vmlinux 0x3b5a56c2 pci_disable_link_state -EXPORT_SYMBOL vmlinux 0x3b5cbb41 kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0x3b41c8ef acpi_mdiobus_register +EXPORT_SYMBOL vmlinux 0x3b43c567 __skb_try_recv_datagram +EXPORT_SYMBOL vmlinux 0x3b5fc115 consume_skb EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left EXPORT_SYMBOL vmlinux 0x3b6c41ea kstrtouint -EXPORT_SYMBOL vmlinux 0x3b81e975 dev_get_flags +EXPORT_SYMBOL vmlinux 0x3b70ee68 con_is_visible +EXPORT_SYMBOL vmlinux 0x3b70f3b9 tty_register_ldisc +EXPORT_SYMBOL vmlinux 0x3b7113bb blkdev_issue_write_same +EXPORT_SYMBOL vmlinux 0x3b7e6611 seq_read EXPORT_SYMBOL vmlinux 0x3b83610f cpu_sibling_map -EXPORT_SYMBOL vmlinux 0x3b8b8168 simple_empty EXPORT_SYMBOL vmlinux 0x3b9144c9 acpi_get_current_resources -EXPORT_SYMBOL vmlinux 0x3b9a4e09 pci_assign_resource -EXPORT_SYMBOL vmlinux 0x3bca4acb tcp_select_initial_window -EXPORT_SYMBOL vmlinux 0x3bd555ce xfrm_policy_walk_done -EXPORT_SYMBOL vmlinux 0x3be4e0b3 qdisc_offload_dump_helper -EXPORT_SYMBOL vmlinux 0x3be6dceb pagecache_get_page +EXPORT_SYMBOL vmlinux 0x3b95b752 netpoll_poll_disable +EXPORT_SYMBOL vmlinux 0x3b9ad03a devfreq_resume_device +EXPORT_SYMBOL vmlinux 0x3bc2be25 user_path_at_empty EXPORT_SYMBOL vmlinux 0x3be7643e security_xfrm_policy_free -EXPORT_SYMBOL vmlinux 0x3be7e014 skb_csum_hwoffload_help -EXPORT_SYMBOL vmlinux 0x3c05b9e0 km_new_mapping +EXPORT_SYMBOL vmlinux 0x3beb0ad1 crypto_sha256_finup +EXPORT_SYMBOL vmlinux 0x3c128d06 sock_bindtoindex +EXPORT_SYMBOL vmlinux 0x3c1657b1 dcb_ieee_getapp_prio_dscp_mask_map EXPORT_SYMBOL vmlinux 0x3c185c61 page_put_link -EXPORT_SYMBOL vmlinux 0x3c3729e9 __lock_page +EXPORT_SYMBOL vmlinux 0x3c2da6ea vga_switcheroo_init_domain_pm_ops +EXPORT_SYMBOL vmlinux 0x3c2fd687 dev_set_mac_address_user +EXPORT_SYMBOL vmlinux 0x3c364c2e xp_free EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip EXPORT_SYMBOL vmlinux 0x3c3ff9fd sprintf EXPORT_SYMBOL vmlinux 0x3c427f67 cpu_die_map -EXPORT_SYMBOL vmlinux 0x3c48e19f bdi_register -EXPORT_SYMBOL vmlinux 0x3c61e37f debugfs_create_automount -EXPORT_SYMBOL vmlinux 0x3c944f52 jbd2_fc_release_bufs -EXPORT_SYMBOL vmlinux 0x3c9ddd19 try_to_free_buffers -EXPORT_SYMBOL vmlinux 0x3cb00977 eth_gro_receive -EXPORT_SYMBOL vmlinux 0x3cc8df92 netdev_get_xmit_slave -EXPORT_SYMBOL vmlinux 0x3cd6e09b md_reload_sb -EXPORT_SYMBOL vmlinux 0x3cda1dc5 nvdimm_namespace_capacity +EXPORT_SYMBOL vmlinux 0x3c47d9c0 flow_rule_match_ipv6_addrs +EXPORT_SYMBOL vmlinux 0x3c6365e5 tcp_seq_start +EXPORT_SYMBOL vmlinux 0x3c722407 neigh_seq_start +EXPORT_SYMBOL vmlinux 0x3c924bf0 xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x3c92cf53 flow_indr_dev_unregister +EXPORT_SYMBOL vmlinux 0x3ccb33ae fb_is_primary_device +EXPORT_SYMBOL vmlinux 0x3ccf1486 tcf_em_register +EXPORT_SYMBOL vmlinux 0x3cd876a7 configfs_unregister_group +EXPORT_SYMBOL vmlinux 0x3ce46fd7 __tracepoint_kmem_cache_alloc_node EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq -EXPORT_SYMBOL vmlinux 0x3cefb09d phy_stop -EXPORT_SYMBOL vmlinux 0x3cf4289e dquot_resume -EXPORT_SYMBOL vmlinux 0x3cfa183c vme_dma_list_exec +EXPORT_SYMBOL vmlinux 0x3cf1df41 pci_find_bus +EXPORT_SYMBOL vmlinux 0x3d020f47 vfs_getattr_nosec EXPORT_SYMBOL vmlinux 0x3d02cd70 dma_fence_signal_locked -EXPORT_SYMBOL vmlinux 0x3d0db683 tty_port_open +EXPORT_SYMBOL vmlinux 0x3d0721f1 xp_dma_sync_for_cpu_slow EXPORT_SYMBOL vmlinux 0x3d210724 gen_pool_dma_zalloc_align -EXPORT_SYMBOL vmlinux 0x3d2a1ef6 bfifo_qdisc_ops -EXPORT_SYMBOL vmlinux 0x3d3f59b0 tcp_close +EXPORT_SYMBOL vmlinux 0x3d29ccd7 page_pool_update_nid +EXPORT_SYMBOL vmlinux 0x3d442174 __ClearPageMovable +EXPORT_SYMBOL vmlinux 0x3d45c26c ip_route_input_noref EXPORT_SYMBOL vmlinux 0x3d56e7b3 utf8_unload -EXPORT_SYMBOL vmlinux 0x3d634038 phy_drivers_unregister -EXPORT_SYMBOL vmlinux 0x3d670837 inet_csk_reqsk_queue_add +EXPORT_SYMBOL vmlinux 0x3d587393 flow_rule_match_control +EXPORT_SYMBOL vmlinux 0x3d6228d3 get_thermal_instance +EXPORT_SYMBOL vmlinux 0x3d644e22 xfrm_state_walk +EXPORT_SYMBOL vmlinux 0x3d656086 pci_prepare_to_sleep +EXPORT_SYMBOL vmlinux 0x3d8f4d3f mipi_dsi_dcs_soft_reset +EXPORT_SYMBOL vmlinux 0x3d9b6ae8 dec_zone_page_state EXPORT_SYMBOL vmlinux 0x3da171f9 pci_mem_start 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 0x3daec955 nf_log_set +EXPORT_SYMBOL vmlinux 0x3dae106d generic_remap_file_range_prep +EXPORT_SYMBOL vmlinux 0x3db7ebac twl6040_set_bits +EXPORT_SYMBOL vmlinux 0x3dc1401c __hw_addr_ref_unsync_dev +EXPORT_SYMBOL vmlinux 0x3dc5e4fd bio_kmalloc EXPORT_SYMBOL vmlinux 0x3dc619d3 swake_up_locked EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data EXPORT_SYMBOL vmlinux 0x3dd9b230 proc_dointvec_userhz_jiffies EXPORT_SYMBOL vmlinux 0x3ddc6c04 x86_bios_cpu_apicid -EXPORT_SYMBOL vmlinux 0x3ddc94b6 pci_read_vpd -EXPORT_SYMBOL vmlinux 0x3df94cc4 dmam_alloc_attrs +EXPORT_SYMBOL vmlinux 0x3de20bee kmem_cache_size EXPORT_SYMBOL vmlinux 0x3dfb86b9 resource_list_create_entry EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head -EXPORT_SYMBOL vmlinux 0x3e38a763 tcf_exts_num_actions +EXPORT_SYMBOL vmlinux 0x3dff9f04 ppp_register_net_channel +EXPORT_SYMBOL vmlinux 0x3e11df65 kill_litter_super +EXPORT_SYMBOL vmlinux 0x3e16d699 __traceiter_mmap_lock_start_locking +EXPORT_SYMBOL vmlinux 0x3e22ae37 rawv6_mh_filter_unregister +EXPORT_SYMBOL vmlinux 0x3e3aebb1 sync_file_create EXPORT_SYMBOL vmlinux 0x3e3bad0a __tasklet_hi_schedule -EXPORT_SYMBOL vmlinux 0x3e4ef13a vlan_vid_del -EXPORT_SYMBOL vmlinux 0x3e52461e dev_get_mac_address -EXPORT_SYMBOL vmlinux 0x3e66e2cb pnp_unregister_driver -EXPORT_SYMBOL vmlinux 0x3e700565 blk_queue_split -EXPORT_SYMBOL vmlinux 0x3e7598a9 phy_ethtool_get_stats -EXPORT_SYMBOL vmlinux 0x3e7e4f0f pci_alloc_host_bridge -EXPORT_SYMBOL vmlinux 0x3e7eefb0 pci_fixup_cardbus -EXPORT_SYMBOL vmlinux 0x3e8c10e0 pcie_set_readrq -EXPORT_SYMBOL vmlinux 0x3eac2464 fs_param_is_string -EXPORT_SYMBOL vmlinux 0x3eacb3d0 ethtool_virtdev_set_link_ksettings -EXPORT_SYMBOL vmlinux 0x3eb6bc4b __tracepoint_dma_fence_signaled -EXPORT_SYMBOL vmlinux 0x3ee4895f napi_schedule_prep -EXPORT_SYMBOL vmlinux 0x3eea0a8a dst_alloc +EXPORT_SYMBOL vmlinux 0x3e7abf04 dump_skip +EXPORT_SYMBOL vmlinux 0x3e8bad31 ppp_output_wakeup +EXPORT_SYMBOL vmlinux 0x3e924399 pci_scan_slot +EXPORT_SYMBOL vmlinux 0x3e927ccf account_page_redirty +EXPORT_SYMBOL vmlinux 0x3ea95c62 mipi_dsi_set_maximum_return_packet_size +EXPORT_SYMBOL vmlinux 0x3eb10e74 neigh_sysctl_unregister +EXPORT_SYMBOL vmlinux 0x3ec48d54 inet_dgram_connect +EXPORT_SYMBOL vmlinux 0x3ed58bcc md_wakeup_thread +EXPORT_SYMBOL vmlinux 0x3ee1aa9b vfs_fadvise +EXPORT_SYMBOL vmlinux 0x3ee4b9be request_key_tag +EXPORT_SYMBOL vmlinux 0x3ee6d704 input_grab_device EXPORT_SYMBOL vmlinux 0x3eeb2322 __wake_up -EXPORT_SYMBOL vmlinux 0x3eef5c99 ps2_handle_response +EXPORT_SYMBOL vmlinux 0x3eef486d pci_bus_find_capability EXPORT_SYMBOL vmlinux 0x3efe1703 phy_unregister_fixup_for_id -EXPORT_SYMBOL vmlinux 0x3f09c058 netif_tx_wake_queue EXPORT_SYMBOL vmlinux 0x3f0eabd2 xxh64_update -EXPORT_SYMBOL vmlinux 0x3f0fc6f0 tcp_mtup_init -EXPORT_SYMBOL vmlinux 0x3f1f4299 fscrypt_free_bounce_page -EXPORT_SYMBOL vmlinux 0x3f292ae5 __ip_options_compile -EXPORT_SYMBOL vmlinux 0x3f3d3931 file_path -EXPORT_SYMBOL vmlinux 0x3f3d59d1 jbd2__journal_restart +EXPORT_SYMBOL vmlinux 0x3f181d39 vga_set_legacy_decoding +EXPORT_SYMBOL vmlinux 0x3f433739 unregister_tcf_proto_ops EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd EXPORT_SYMBOL vmlinux 0x3f4bd846 gen_pool_first_fit_order_align -EXPORT_SYMBOL vmlinux 0x3f4cd44d pmem_should_map_pages -EXPORT_SYMBOL vmlinux 0x3f653613 generic_update_time +EXPORT_SYMBOL vmlinux 0x3f4dc044 ip_sock_set_freebind +EXPORT_SYMBOL vmlinux 0x3f626fa9 devm_register_netdev EXPORT_SYMBOL vmlinux 0x3f89071b security_ib_pkey_access -EXPORT_SYMBOL vmlinux 0x3f963595 tcp_ioctl -EXPORT_SYMBOL vmlinux 0x3f97167b rproc_elf_sanity_check -EXPORT_SYMBOL vmlinux 0x3fa7534d devm_memremap +EXPORT_SYMBOL vmlinux 0x3f943287 netpoll_cleanup +EXPORT_SYMBOL vmlinux 0x3f954eaf pci_scan_bus +EXPORT_SYMBOL vmlinux 0x3f9a1bff xfrm6_rcv_encap +EXPORT_SYMBOL vmlinux 0x3fa68c5b dev_uc_del EXPORT_SYMBOL vmlinux 0x3fbf3c89 vme_slave_set +EXPORT_SYMBOL vmlinux 0x3fd137cd mmc_get_card +EXPORT_SYMBOL vmlinux 0x3fd3631e skb_put EXPORT_SYMBOL vmlinux 0x3fd78f3b register_chrdev_region -EXPORT_SYMBOL vmlinux 0x3fde2877 follow_up -EXPORT_SYMBOL vmlinux 0x3fe27161 pci_get_domain_bus_and_slot EXPORT_SYMBOL vmlinux 0x3fe2ccbe memweight EXPORT_SYMBOL vmlinux 0x3fe8173f config_group_init_type_name -EXPORT_SYMBOL vmlinux 0x3ffa1b65 netif_carrier_on -EXPORT_SYMBOL vmlinux 0x3ffc3078 mipi_dsi_device_unregister -EXPORT_SYMBOL vmlinux 0x4008a371 arp_send -EXPORT_SYMBOL vmlinux 0x400a7ea7 param_set_invbool -EXPORT_SYMBOL vmlinux 0x401d3b1d vfs_mkdir -EXPORT_SYMBOL vmlinux 0x40508083 tcp_v4_connect +EXPORT_SYMBOL vmlinux 0x400d4db6 udp_disconnect +EXPORT_SYMBOL vmlinux 0x40185676 mark_info_dirty +EXPORT_SYMBOL vmlinux 0x4042fb2b __pskb_copy_fclone +EXPORT_SYMBOL vmlinux 0x404bd2ad __vfs_getxattr +EXPORT_SYMBOL vmlinux 0x405561aa cros_ec_check_result EXPORT_SYMBOL vmlinux 0x4055a920 acpi_remove_fixed_event_handler -EXPORT_SYMBOL vmlinux 0x407962c8 vmf_insert_pfn_prot +EXPORT_SYMBOL vmlinux 0x4055bbfb __pskb_pull_tail +EXPORT_SYMBOL vmlinux 0x405cedc9 __tracepoint_rdpmc +EXPORT_SYMBOL vmlinux 0x406d808c scm_detach_fds +EXPORT_SYMBOL vmlinux 0x407aac17 gnet_stats_finish_copy +EXPORT_SYMBOL vmlinux 0x407ae3d5 __blk_rq_map_sg EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem EXPORT_SYMBOL vmlinux 0x409873e3 tty_termios_baud_rate +EXPORT_SYMBOL vmlinux 0x409b28f0 submit_bio_noacct EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc -EXPORT_SYMBOL vmlinux 0x40c36ecf seg6_hmac_info_lookup +EXPORT_SYMBOL vmlinux 0x40ab5596 pci_set_mwi +EXPORT_SYMBOL vmlinux 0x40b9bb5e would_dump +EXPORT_SYMBOL vmlinux 0x40b9e630 tcp_enter_quickack_mode +EXPORT_SYMBOL vmlinux 0x40ba1ed5 bio_clone_fast +EXPORT_SYMBOL vmlinux 0x40c13c77 bioset_init_from_src EXPORT_SYMBOL vmlinux 0x40c7247c si_meminfo EXPORT_SYMBOL vmlinux 0x40d04664 console_trylock EXPORT_SYMBOL vmlinux 0x40d59096 unregister_restart_handler EXPORT_SYMBOL vmlinux 0x40d84a37 ZSTD_getFrameParams -EXPORT_SYMBOL vmlinux 0x40f32828 inet_frag_reasm_prepare -EXPORT_SYMBOL vmlinux 0x412b8945 remap_pfn_range +EXPORT_SYMBOL vmlinux 0x40dc2dad uart_update_timeout +EXPORT_SYMBOL vmlinux 0x40f7196b discard_new_inode +EXPORT_SYMBOL vmlinux 0x40fd6fb2 phy_connect_direct +EXPORT_SYMBOL vmlinux 0x410ab817 udp_lib_setsockopt +EXPORT_SYMBOL vmlinux 0x411d03ce sync_mapping_buffers +EXPORT_SYMBOL vmlinux 0x4126ab4b pci_set_power_state +EXPORT_SYMBOL vmlinux 0x412cd244 backlight_device_register EXPORT_SYMBOL vmlinux 0x412f893c page_offline_begin +EXPORT_SYMBOL vmlinux 0x4130066d generic_pipe_buf_release +EXPORT_SYMBOL vmlinux 0x4143408c dev_add_offload EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user -EXPORT_SYMBOL vmlinux 0x41487032 skb_copy -EXPORT_SYMBOL vmlinux 0x4158df15 msi_desc_to_pci_dev -EXPORT_SYMBOL vmlinux 0x41765b2b inet_sk_set_state -EXPORT_SYMBOL vmlinux 0x41807caa fscrypt_setup_filename +EXPORT_SYMBOL vmlinux 0x414f824e netdev_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0x41559337 pagevec_lookup_range_tag +EXPORT_SYMBOL vmlinux 0x415d2dfa xen_alloc_unpopulated_pages +EXPORT_SYMBOL vmlinux 0x415e3bbf truncate_inode_pages_range +EXPORT_SYMBOL vmlinux 0x41640cf6 netif_rx_any_context +EXPORT_SYMBOL vmlinux 0x416c9e98 fscrypt_encrypt_block_inplace +EXPORT_SYMBOL vmlinux 0x41763414 dquot_initialize EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time -EXPORT_SYMBOL vmlinux 0x41a98eff mipi_dsi_dcs_soft_reset -EXPORT_SYMBOL vmlinux 0x41aa6985 seq_escape +EXPORT_SYMBOL vmlinux 0x41aa2cd8 scsicam_bios_param +EXPORT_SYMBOL vmlinux 0x41c0713a module_refcount +EXPORT_SYMBOL vmlinux 0x41c58a07 framebuffer_alloc +EXPORT_SYMBOL vmlinux 0x41cf7875 mntput EXPORT_SYMBOL vmlinux 0x41d7b6d2 load_nls_default -EXPORT_SYMBOL vmlinux 0x41dc3c40 udp_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0x41e84b25 pci_pme_capable +EXPORT_SYMBOL vmlinux 0x41ed3709 get_random_bytes EXPORT_SYMBOL vmlinux 0x41efdeaf radix_tree_lookup_slot +EXPORT_SYMBOL vmlinux 0x41f0c5bd sock_no_connect EXPORT_SYMBOL vmlinux 0x420964e3 __nla_parse EXPORT_SYMBOL vmlinux 0x42160169 flush_workqueue -EXPORT_SYMBOL vmlinux 0x422716c2 phy_write_paged EXPORT_SYMBOL vmlinux 0x4230a8d7 sg_nents_for_len -EXPORT_SYMBOL vmlinux 0x4233dd22 tty_port_init -EXPORT_SYMBOL vmlinux 0x423cd59f dma_alloc_attrs +EXPORT_SYMBOL vmlinux 0x4247ddb0 file_path EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp EXPORT_SYMBOL vmlinux 0x42578e80 acpi_get_type +EXPORT_SYMBOL vmlinux 0x425854cb devfreq_monitor_start EXPORT_SYMBOL vmlinux 0x42595e58 vgacon_text_force -EXPORT_SYMBOL vmlinux 0x4272a96d dcb_ieee_getapp_dscp_prio_mask_map -EXPORT_SYMBOL vmlinux 0x4278d2e8 __napi_alloc_skb -EXPORT_SYMBOL vmlinux 0x427d5aaf _dev_err -EXPORT_SYMBOL vmlinux 0x42a4f788 jbd2_journal_forget -EXPORT_SYMBOL vmlinux 0x42aacd92 md_bitmap_close_sync -EXPORT_SYMBOL vmlinux 0x42b72896 acpi_processor_notify_smm +EXPORT_SYMBOL vmlinux 0x425ea61d alloc_skb_with_frags +EXPORT_SYMBOL vmlinux 0x4272e714 sk_send_sigurg +EXPORT_SYMBOL vmlinux 0x4280a882 pci_msi_vec_count +EXPORT_SYMBOL vmlinux 0x429df63e nexthop_set_hw_flags +EXPORT_SYMBOL vmlinux 0x429ec8ab of_find_mipi_dsi_device_by_node +EXPORT_SYMBOL vmlinux 0x42a6e9fa bio_add_pc_page +EXPORT_SYMBOL vmlinux 0x42be2174 vm_iomap_memory EXPORT_SYMBOL vmlinux 0x42bed8d4 unix_gc_lock -EXPORT_SYMBOL vmlinux 0x42c5e1d4 agp_generic_mask_memory +EXPORT_SYMBOL vmlinux 0x42e71e63 xfrm_stateonly_find EXPORT_SYMBOL vmlinux 0x42f1b900 fb_pad_unaligned_buffer -EXPORT_SYMBOL vmlinux 0x42f7d825 scsi_eh_prep_cmnd +EXPORT_SYMBOL vmlinux 0x42fc7730 blk_put_queue EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages -EXPORT_SYMBOL vmlinux 0x43136614 twl6040_reg_read +EXPORT_SYMBOL vmlinux 0x43090b8c input_free_device +EXPORT_SYMBOL vmlinux 0x43176dd3 disk_end_io_acct EXPORT_SYMBOL vmlinux 0x431ec3a9 __nla_validate -EXPORT_SYMBOL vmlinux 0x432bbc78 jbd2_journal_load +EXPORT_SYMBOL vmlinux 0x4324868f ip_getsockopt +EXPORT_SYMBOL vmlinux 0x432aa35a __cgroup_bpf_run_filter_sock_addr +EXPORT_SYMBOL vmlinux 0x432b7f09 xp_raw_get_dma EXPORT_SYMBOL vmlinux 0x4336fcca ucs2_as_utf8 -EXPORT_SYMBOL vmlinux 0x433abdf8 unpin_user_page +EXPORT_SYMBOL vmlinux 0x433998d0 nf_log_unbind_pf +EXPORT_SYMBOL vmlinux 0x433bf245 mmc_erase_group_aligned EXPORT_SYMBOL vmlinux 0x433cabfb acpi_decode_pld_buffer +EXPORT_SYMBOL vmlinux 0x434b7214 pci_ep_cfs_remove_epc_group +EXPORT_SYMBOL vmlinux 0x434f1c8d __dev_remove_pack +EXPORT_SYMBOL vmlinux 0x4350442f vmf_insert_mixed_prot EXPORT_SYMBOL vmlinux 0x4351577a fb_parse_edid -EXPORT_SYMBOL vmlinux 0x4352fe13 posix_test_lock -EXPORT_SYMBOL vmlinux 0x435c9cd5 d_alloc_parallel -EXPORT_SYMBOL vmlinux 0x4369c5ca tcp_md5_hash_key +EXPORT_SYMBOL vmlinux 0x435eeae2 sock_enable_timestamps +EXPORT_SYMBOL vmlinux 0x43626559 put_cmsg_scm_timestamping64 EXPORT_SYMBOL vmlinux 0x437a0d6d __sock_tx_timestamp +EXPORT_SYMBOL vmlinux 0x437fb4b8 __neigh_event_send EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security -EXPORT_SYMBOL vmlinux 0x43ada4eb __SCK__tp_func_dma_fence_signaled -EXPORT_SYMBOL vmlinux 0x43adc928 pci_msi_vec_count -EXPORT_SYMBOL vmlinux 0x43aeb0b4 rproc_alloc +EXPORT_SYMBOL vmlinux 0x439cc67a input_set_keycode +EXPORT_SYMBOL vmlinux 0x43c8e29a udp_flush_pending_frames +EXPORT_SYMBOL vmlinux 0x43ca938c d_lookup EXPORT_SYMBOL vmlinux 0x43d22fb9 groups_alloc -EXPORT_SYMBOL vmlinux 0x43d74e37 regset_get -EXPORT_SYMBOL vmlinux 0x43dcc3a4 __blk_rq_map_sg -EXPORT_SYMBOL vmlinux 0x43e4cf9e mmc_register_driver -EXPORT_SYMBOL vmlinux 0x43ea28b2 devm_pci_remap_iospace -EXPORT_SYMBOL vmlinux 0x43ebd4c4 tcp_openreq_init_rwin -EXPORT_SYMBOL vmlinux 0x43f8c4a9 simple_transaction_get -EXPORT_SYMBOL vmlinux 0x440addca remap_vmalloc_range -EXPORT_SYMBOL vmlinux 0x44321dc8 mpage_readpage +EXPORT_SYMBOL vmlinux 0x43d966b4 ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0x44162c1d PDE_DATA +EXPORT_SYMBOL vmlinux 0x443dcd26 skb_tunnel_check_pmtu EXPORT_SYMBOL vmlinux 0x44414ff2 iosf_mbi_unblock_punit_i2c_access EXPORT_SYMBOL vmlinux 0x44469a76 crc_ccitt_false_table -EXPORT_SYMBOL vmlinux 0x4457528d pci_request_region +EXPORT_SYMBOL vmlinux 0x4449bc88 eth_header_cache_update +EXPORT_SYMBOL vmlinux 0x4451c68e pci_write_config_word EXPORT_SYMBOL vmlinux 0x4462d35e cpufreq_get_hw_max_freq -EXPORT_SYMBOL vmlinux 0x4463819e eth_gro_complete -EXPORT_SYMBOL vmlinux 0x4484815a user_path_at_empty +EXPORT_SYMBOL vmlinux 0x446dc2c9 inet_addr_type_dev_table +EXPORT_SYMBOL vmlinux 0x447133ce scsi_vpd_lun_id +EXPORT_SYMBOL vmlinux 0x4480f279 pcim_set_mwi +EXPORT_SYMBOL vmlinux 0x448147a0 security_inode_notifysecctx +EXPORT_SYMBOL vmlinux 0x44858ca0 disk_stack_limits +EXPORT_SYMBOL vmlinux 0x4486b966 dcb_setapp EXPORT_SYMBOL vmlinux 0x44902cff acpi_enable_event +EXPORT_SYMBOL vmlinux 0x44964f00 pci_read_vpd EXPORT_SYMBOL vmlinux 0x449ad0a7 memcmp +EXPORT_SYMBOL vmlinux 0x449b4c9a fs_context_for_reconfigure +EXPORT_SYMBOL vmlinux 0x449e81d2 file_update_time +EXPORT_SYMBOL vmlinux 0x44a6a9be udp6_seq_ops EXPORT_SYMBOL vmlinux 0x44a6e90a irq_cpu_rmap_add EXPORT_SYMBOL vmlinux 0x44aaf30f tsc_khz +EXPORT_SYMBOL vmlinux 0x44ac9b2e clear_bdi_congested +EXPORT_SYMBOL vmlinux 0x44b8ad5b __breadahead_gfp +EXPORT_SYMBOL vmlinux 0x44bd37d2 blk_integrity_compare EXPORT_SYMBOL vmlinux 0x44e9a829 match_token -EXPORT_SYMBOL vmlinux 0x44ee5c29 mmc_gpio_set_cd_wake -EXPORT_SYMBOL vmlinux 0x44f792de input_set_keycode -EXPORT_SYMBOL vmlinux 0x450050d7 scsi_set_medium_removal +EXPORT_SYMBOL vmlinux 0x44fb6a9c blk_queue_max_write_same_sectors EXPORT_SYMBOL vmlinux 0x45006cee default_red EXPORT_SYMBOL vmlinux 0x45081703 ec_get_handle -EXPORT_SYMBOL vmlinux 0x4508683e invalidate_bdev EXPORT_SYMBOL vmlinux 0x452ba683 ipv6_ext_hdr EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled -EXPORT_SYMBOL vmlinux 0x45505ede jbd2_journal_flush -EXPORT_SYMBOL vmlinux 0x45518ebd inet_csk_clear_xmit_timers EXPORT_SYMBOL vmlinux 0x45535485 xxh32_update -EXPORT_SYMBOL vmlinux 0x456d9343 kthread_associate_blkcg +EXPORT_SYMBOL vmlinux 0x4555aaa1 security_sock_graft +EXPORT_SYMBOL vmlinux 0x4555edca add_watch_to_object +EXPORT_SYMBOL vmlinux 0x45743e10 reuseport_detach_sock EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user EXPORT_SYMBOL vmlinux 0x457c5f77 convert_tsc_ns_to_art -EXPORT_SYMBOL vmlinux 0x459e953e km_report -EXPORT_SYMBOL vmlinux 0x45af1423 d_rehash -EXPORT_SYMBOL vmlinux 0x45bfe675 dm_table_get_md -EXPORT_SYMBOL vmlinux 0x45c680fe mount_bdev +EXPORT_SYMBOL vmlinux 0x45820fdc devm_memremap +EXPORT_SYMBOL vmlinux 0x458de9af __neigh_create +EXPORT_SYMBOL vmlinux 0x45948083 pci_bus_write_config_byte +EXPORT_SYMBOL vmlinux 0x45951f9b flow_rule_match_cvlan +EXPORT_SYMBOL vmlinux 0x4599790f lock_page_memcg +EXPORT_SYMBOL vmlinux 0x45b16bd7 vmf_insert_mixed EXPORT_SYMBOL vmlinux 0x45d246da node_to_cpumask_map -EXPORT_SYMBOL vmlinux 0x45e2691e __scsi_print_sense -EXPORT_SYMBOL vmlinux 0x45e39627 find_inode_rcu EXPORT_SYMBOL vmlinux 0x45e8d7b5 native_write_cr0 -EXPORT_SYMBOL vmlinux 0x46067b31 fscrypt_put_encryption_info +EXPORT_SYMBOL vmlinux 0x45ef7f1f xfrm_lookup +EXPORT_SYMBOL vmlinux 0x45f0b88b sock_alloc_send_pskb +EXPORT_SYMBOL vmlinux 0x45f8a7fa pci_setup_cardbus +EXPORT_SYMBOL vmlinux 0x45f8cf70 jbd2_journal_check_available_features +EXPORT_SYMBOL vmlinux 0x460df514 twl6040_get_sysclk +EXPORT_SYMBOL vmlinux 0x460f4a34 flow_hash_from_keys EXPORT_SYMBOL vmlinux 0x461d16ca sg_nents +EXPORT_SYMBOL vmlinux 0x461d220d inet_dgram_ops EXPORT_SYMBOL vmlinux 0x4629334c __preempt_count -EXPORT_SYMBOL vmlinux 0x46310c0d pci_enable_device +EXPORT_SYMBOL vmlinux 0x46300cf7 unpin_user_pages EXPORT_SYMBOL vmlinux 0x463219fb tcp_hashinfo -EXPORT_SYMBOL vmlinux 0x46532f9e __cleancache_put_page +EXPORT_SYMBOL vmlinux 0x463f6b19 gro_find_complete_by_type +EXPORT_SYMBOL vmlinux 0x46451733 fscrypt_ioctl_get_policy +EXPORT_SYMBOL vmlinux 0x46458704 inet_proto_csum_replace16 +EXPORT_SYMBOL vmlinux 0x465c7ed5 mnt_set_expiry EXPORT_SYMBOL vmlinux 0x465e24ff ucs2_utf8size -EXPORT_SYMBOL vmlinux 0x46634fb5 nvdimm_bus_lock EXPORT_SYMBOL vmlinux 0x466c14a7 __delay +EXPORT_SYMBOL vmlinux 0x466eb41a agp_generic_destroy_page EXPORT_SYMBOL vmlinux 0x467df16d netdev_rss_key_fill -EXPORT_SYMBOL vmlinux 0x46844a07 filemap_fdatawait_range EXPORT_SYMBOL vmlinux 0x469a6ec7 tcp_parse_md5sig_option -EXPORT_SYMBOL vmlinux 0x469dd7f9 kernel_read -EXPORT_SYMBOL vmlinux 0x46ab44e6 inet_add_offload -EXPORT_SYMBOL vmlinux 0x46ae662c phy_modify_paged -EXPORT_SYMBOL vmlinux 0x46b12c9e __netlink_ns_capable EXPORT_SYMBOL vmlinux 0x46c47fb6 __node_distance +EXPORT_SYMBOL vmlinux 0x46c86c50 task_work_add +EXPORT_SYMBOL vmlinux 0x46ce0df5 simple_recursive_removal EXPORT_SYMBOL vmlinux 0x46cf10eb cachemode2protval -EXPORT_SYMBOL vmlinux 0x4703f7c9 get_fs_type -EXPORT_SYMBOL vmlinux 0x4707e997 logfc +EXPORT_SYMBOL vmlinux 0x46d9bb01 dquot_get_next_id +EXPORT_SYMBOL vmlinux 0x46e8e232 devfreq_suspend_device +EXPORT_SYMBOL vmlinux 0x47118fdf stop_tty EXPORT_SYMBOL vmlinux 0x4715a909 acpi_load_table -EXPORT_SYMBOL vmlinux 0x472d4376 forget_cached_acl -EXPORT_SYMBOL vmlinux 0x47345695 input_mt_report_pointer_emulation -EXPORT_SYMBOL vmlinux 0x47390870 pnp_start_dev +EXPORT_SYMBOL vmlinux 0x47171a33 inet_csk_reset_keepalive_timer +EXPORT_SYMBOL vmlinux 0x47177489 devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0x471f203b shrink_dcache_parent +EXPORT_SYMBOL vmlinux 0x473f7a14 key_type_keyring EXPORT_SYMBOL vmlinux 0x4740b3bc xen_arch_unregister_cpu -EXPORT_SYMBOL vmlinux 0x474a7a3d d_prune_aliases -EXPORT_SYMBOL vmlinux 0x475283d6 pcim_set_mwi -EXPORT_SYMBOL vmlinux 0x475fba01 dma_sync_sg_for_device +EXPORT_SYMBOL vmlinux 0x47487fe1 dm_table_get_mode +EXPORT_SYMBOL vmlinux 0x475b8dd1 eth_get_headlen +EXPORT_SYMBOL vmlinux 0x476485c1 mfd_add_devices EXPORT_SYMBOL vmlinux 0x47709e42 free_anon_bdev +EXPORT_SYMBOL vmlinux 0x4783a6cd flow_rule_match_vlan EXPORT_SYMBOL vmlinux 0x47960bc4 proc_do_large_bitmap +EXPORT_SYMBOL vmlinux 0x47960e65 __napi_schedule_irqoff EXPORT_SYMBOL vmlinux 0x47a0cdcb mb_cache_entry_find_next -EXPORT_SYMBOL vmlinux 0x47c0884b blk_mq_start_hw_queues EXPORT_SYMBOL vmlinux 0x47c20f8a refcount_dec_not_one EXPORT_SYMBOL vmlinux 0x47c65bfc unregister_inet6addr_validator_notifier -EXPORT_SYMBOL vmlinux 0x47c68c55 kernel_param_unlock EXPORT_SYMBOL vmlinux 0x47cfd825 kstrtouint_from_user EXPORT_SYMBOL vmlinux 0x47d8d301 __cond_resched_rwlock_read -EXPORT_SYMBOL vmlinux 0x4810af1e mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0x47f09ce4 blk_queue_virt_boundary +EXPORT_SYMBOL vmlinux 0x47f8d635 __get_hash_from_flowi6 +EXPORT_SYMBOL vmlinux 0x47f95705 rproc_da_to_va EXPORT_SYMBOL vmlinux 0x48112d76 _raw_read_lock_irq EXPORT_SYMBOL vmlinux 0x48193639 acpi_lid_open +EXPORT_SYMBOL vmlinux 0x481da1f8 netif_skb_features +EXPORT_SYMBOL vmlinux 0x481e80d4 pci_enable_msi +EXPORT_SYMBOL vmlinux 0x48216386 sock_kmalloc EXPORT_SYMBOL vmlinux 0x4829cf6b fscrypt_enqueue_decrypt_work -EXPORT_SYMBOL vmlinux 0x482b0166 vlan_filter_push_vids -EXPORT_SYMBOL vmlinux 0x48386a38 padata_do_parallel EXPORT_SYMBOL vmlinux 0x4841bdee strnchr EXPORT_SYMBOL vmlinux 0x48476bcb intel_gtt_insert_page +EXPORT_SYMBOL vmlinux 0x484794e6 skb_flow_dissect_tunnel_info EXPORT_SYMBOL vmlinux 0x484f6edf ktime_get_coarse_real_ts64 -EXPORT_SYMBOL vmlinux 0x48598298 send_sig_info -EXPORT_SYMBOL vmlinux 0x4859b55e phy_device_register +EXPORT_SYMBOL vmlinux 0x48512404 zpool_unregister_driver EXPORT_SYMBOL vmlinux 0x4859b8bb rtc_year_days EXPORT_SYMBOL vmlinux 0x486075c8 gen_pool_dma_alloc EXPORT_SYMBOL vmlinux 0x4871d75d clk_hw_register_clkdev -EXPORT_SYMBOL vmlinux 0x489bb171 __module_put_and_exit +EXPORT_SYMBOL vmlinux 0x489b43d4 setup_new_exec EXPORT_SYMBOL vmlinux 0x489f6e0b rdma_dim EXPORT_SYMBOL vmlinux 0x48a81d7e vfio_group_pin_pages EXPORT_SYMBOL vmlinux 0x48a91171 string_get_size EXPORT_SYMBOL vmlinux 0x48b99a13 vme_lm_free +EXPORT_SYMBOL vmlinux 0x48bb02d6 iov_iter_discard EXPORT_SYMBOL vmlinux 0x48c093fb _atomic_dec_and_lock_irqsave -EXPORT_SYMBOL vmlinux 0x48c095c4 blk_mq_free_tag_set EXPORT_SYMBOL vmlinux 0x48c5dd72 config_group_find_item -EXPORT_SYMBOL vmlinux 0x48c8218e rproc_add_subdev -EXPORT_SYMBOL vmlinux 0x48ca9cd0 agp_bind_memory -EXPORT_SYMBOL vmlinux 0x48cfeac5 tcp_parse_options EXPORT_SYMBOL vmlinux 0x48d50e79 amd_iommu_register_ppr_notifier -EXPORT_SYMBOL vmlinux 0x48e36c83 mr_mfc_seq_idx -EXPORT_SYMBOL vmlinux 0x48e98297 keyring_alloc -EXPORT_SYMBOL vmlinux 0x48e9bce9 max8998_bulk_write +EXPORT_SYMBOL vmlinux 0x48e60dba ethtool_rx_flow_rule_create +EXPORT_SYMBOL vmlinux 0x48f1cccd rio_query_mport +EXPORT_SYMBOL vmlinux 0x48fa5e24 vfs_tmpfile EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert +EXPORT_SYMBOL vmlinux 0x493073e2 unix_get_socket +EXPORT_SYMBOL vmlinux 0x4936bb25 sock_create +EXPORT_SYMBOL vmlinux 0x4937f2cf udp_skb_destructor +EXPORT_SYMBOL vmlinux 0x493c0502 dev_trans_start +EXPORT_SYMBOL vmlinux 0x493c80fd pm860x_set_bits EXPORT_SYMBOL vmlinux 0x494e3393 vm_get_page_prot EXPORT_SYMBOL vmlinux 0x495e378d __pv_queued_spin_lock_slowpath +EXPORT_SYMBOL vmlinux 0x495f69d4 arp_send +EXPORT_SYMBOL vmlinux 0x49639687 simple_getattr EXPORT_SYMBOL vmlinux 0x4967e79f radix_tree_iter_resume -EXPORT_SYMBOL vmlinux 0x496f8351 ipv6_dev_find -EXPORT_SYMBOL vmlinux 0x497d9a96 input_register_handler -EXPORT_SYMBOL vmlinux 0x4985b469 neigh_sysctl_unregister -EXPORT_SYMBOL vmlinux 0x49894c62 pci_ep_cfs_remove_epf_group -EXPORT_SYMBOL vmlinux 0x498d84df param_get_hexint EXPORT_SYMBOL vmlinux 0x498e9128 ZSTD_findDecompressedSize -EXPORT_SYMBOL vmlinux 0x49958984 skb_get_hash_perturb -EXPORT_SYMBOL vmlinux 0x499e1636 rc5t583_ext_power_req_config EXPORT_SYMBOL vmlinux 0x499f0ecf nd_sb_checksum -EXPORT_SYMBOL vmlinux 0x49af50d8 passthru_features_check EXPORT_SYMBOL vmlinux 0x49b163b8 acpi_bus_scan -EXPORT_SYMBOL vmlinux 0x49db1e5c jbd2_journal_put_journal_head -EXPORT_SYMBOL vmlinux 0x4a110c55 xfrm_input_register_afinfo +EXPORT_SYMBOL vmlinux 0x49f2ce5a jbd2_complete_transaction +EXPORT_SYMBOL vmlinux 0x49f3b671 seq_release_private +EXPORT_SYMBOL vmlinux 0x49fa92e8 param_get_ulong +EXPORT_SYMBOL vmlinux 0x49fe86f6 sock_no_socketpair +EXPORT_SYMBOL vmlinux 0x4a014ba8 d_set_fallthru EXPORT_SYMBOL vmlinux 0x4a165127 kobject_put -EXPORT_SYMBOL vmlinux 0x4a24574e page_pool_destroy -EXPORT_SYMBOL vmlinux 0x4a335013 sk_page_frag_refill +EXPORT_SYMBOL vmlinux 0x4a1ac329 phy_mac_interrupt +EXPORT_SYMBOL vmlinux 0x4a1cddcc fwnode_get_mac_address EXPORT_SYMBOL vmlinux 0x4a3ad70e wait_for_completion_timeout -EXPORT_SYMBOL vmlinux 0x4a3e3703 flow_block_cb_incref EXPORT_SYMBOL vmlinux 0x4a453f53 iowrite32 -EXPORT_SYMBOL vmlinux 0x4a4d155c pci_free_irq_vectors -EXPORT_SYMBOL vmlinux 0x4a6882da dma_resv_fini -EXPORT_SYMBOL vmlinux 0x4a6c58ac md_unregister_thread -EXPORT_SYMBOL vmlinux 0x4a8a6949 get_random_bytes_arch -EXPORT_SYMBOL vmlinux 0x4a8df7d6 mmc_of_parse +EXPORT_SYMBOL vmlinux 0x4a5d8018 __SCK__tp_func_module_get +EXPORT_SYMBOL vmlinux 0x4a6f0039 devm_memunmap EXPORT_SYMBOL vmlinux 0x4a96a8eb xxh32_digest -EXPORT_SYMBOL vmlinux 0x4ab89651 param_ops_int +EXPORT_SYMBOL vmlinux 0x4aa2095b dm_io +EXPORT_SYMBOL vmlinux 0x4aadee0f inet_proto_csum_replace4 +EXPORT_SYMBOL vmlinux 0x4ab61140 rproc_add EXPORT_SYMBOL vmlinux 0x4abb7d10 cpu_rmap_update -EXPORT_SYMBOL vmlinux 0x4ad679b2 inet_del_offload -EXPORT_SYMBOL vmlinux 0x4ad81445 xattr_full_name -EXPORT_SYMBOL vmlinux 0x4adafa42 iw_handler_get_thrspy +EXPORT_SYMBOL vmlinux 0x4ad482c5 dev_get_flags EXPORT_SYMBOL vmlinux 0x4aea463f crc32_le_shift EXPORT_SYMBOL vmlinux 0x4af6ddf0 kstrtou16 -EXPORT_SYMBOL vmlinux 0x4af78826 inode_set_flags EXPORT_SYMBOL vmlinux 0x4afb2238 add_wait_queue EXPORT_SYMBOL vmlinux 0x4b085dbf agp3_generic_configure -EXPORT_SYMBOL vmlinux 0x4b0990ca d_obtain_root -EXPORT_SYMBOL vmlinux 0x4b3fac17 __mdiobus_read -EXPORT_SYMBOL vmlinux 0x4b445a75 seq_pad +EXPORT_SYMBOL vmlinux 0x4b3a2c9e __xfrm_policy_check +EXPORT_SYMBOL vmlinux 0x4b56e77a bio_copy_data_iter EXPORT_SYMBOL vmlinux 0x4b5e3a47 __get_user_nocheck_1 EXPORT_SYMBOL vmlinux 0x4b5fd49e dm_kcopyd_do_callback -EXPORT_SYMBOL vmlinux 0x4b63de37 ipv6_chk_prefix EXPORT_SYMBOL vmlinux 0x4b6df007 acpi_evaluate_reg -EXPORT_SYMBOL vmlinux 0x4bbdd245 migrate_page_states -EXPORT_SYMBOL vmlinux 0x4bc4f04b readahead_expand +EXPORT_SYMBOL vmlinux 0x4b8d0fe7 tty_port_free_xmit_buf +EXPORT_SYMBOL vmlinux 0x4b9fa2a2 netdev_adjacent_change_commit +EXPORT_SYMBOL vmlinux 0x4bb82931 tcp_seq_next +EXPORT_SYMBOL vmlinux 0x4bcb6a60 filemap_fdatawrite EXPORT_SYMBOL vmlinux 0x4bcc2662 mempool_init_node -EXPORT_SYMBOL vmlinux 0x4bcc5c25 ptp_clock_index -EXPORT_SYMBOL vmlinux 0x4bd27666 inode_insert5 +EXPORT_SYMBOL vmlinux 0x4bd97ea9 pcie_get_width_cap +EXPORT_SYMBOL vmlinux 0x4bde309b devm_ioremap_wc +EXPORT_SYMBOL vmlinux 0x4be4f87d drop_super_exclusive +EXPORT_SYMBOL vmlinux 0x4be59261 i2c_smbus_read_block_data EXPORT_SYMBOL vmlinux 0x4bef1c67 empty_name -EXPORT_SYMBOL vmlinux 0x4bf1e7a1 fib_notifier_ops_unregister +EXPORT_SYMBOL vmlinux 0x4bf383e1 unlock_page EXPORT_SYMBOL vmlinux 0x4c07a7e0 acpi_processor_unregister_performance +EXPORT_SYMBOL vmlinux 0x4c0a2c81 __SCK__tp_func_mmap_lock_released EXPORT_SYMBOL vmlinux 0x4c0e0fdc convert_art_to_tsc_ns_duration -EXPORT_SYMBOL vmlinux 0x4c109c52 uart_match_port -EXPORT_SYMBOL vmlinux 0x4c1201d2 generic_read_dir -EXPORT_SYMBOL vmlinux 0x4c17d3b1 set_page_dirty_lock +EXPORT_SYMBOL vmlinux 0x4c154d36 genlmsg_put +EXPORT_SYMBOL vmlinux 0x4c1ad354 pci_enable_device_io EXPORT_SYMBOL vmlinux 0x4c236f6f __x86_indirect_thunk_r15 -EXPORT_SYMBOL vmlinux 0x4c289482 blk_mq_tagset_wait_completed_request -EXPORT_SYMBOL vmlinux 0x4c345b19 vfs_fileattr_get +EXPORT_SYMBOL vmlinux 0x4c2a683c phy_modify_paged EXPORT_SYMBOL vmlinux 0x4c38d4e0 utf8_strncasecmp_folded EXPORT_SYMBOL vmlinux 0x4c416eb9 LZ4_decompress_fast -EXPORT_SYMBOL vmlinux 0x4c4386a3 dma_resv_copy_fences -EXPORT_SYMBOL vmlinux 0x4c4d9e1f touch_buffer -EXPORT_SYMBOL vmlinux 0x4c523bdc md_bitmap_free -EXPORT_SYMBOL vmlinux 0x4c52d765 set_bh_page -EXPORT_SYMBOL vmlinux 0x4c8551ab blk_mq_rq_cpu -EXPORT_SYMBOL vmlinux 0x4c8a4670 scsi_block_when_processing_errors -EXPORT_SYMBOL vmlinux 0x4c985f14 submit_bio +EXPORT_SYMBOL vmlinux 0x4c4e373a tso_count_descs +EXPORT_SYMBOL vmlinux 0x4c62a91e udp_prot EXPORT_SYMBOL vmlinux 0x4c9d28b0 phys_base -EXPORT_SYMBOL vmlinux 0x4cafb2c4 input_flush_device +EXPORT_SYMBOL vmlinux 0x4cad0f52 blk_integrity_unregister +EXPORT_SYMBOL vmlinux 0x4cae62bd fscrypt_ioctl_set_policy EXPORT_SYMBOL vmlinux 0x4cba441d iwe_stream_add_event -EXPORT_SYMBOL vmlinux 0x4cbb6706 dquot_commit -EXPORT_SYMBOL vmlinux 0x4cc5d369 gnet_stats_copy_queue +EXPORT_SYMBOL vmlinux 0x4cba64b7 dma_set_coherent_mask +EXPORT_SYMBOL vmlinux 0x4ccecfa8 inetdev_by_index +EXPORT_SYMBOL vmlinux 0x4cd0bd69 mdiobus_is_registered_device EXPORT_SYMBOL vmlinux 0x4cd5bc5e rdmsr_safe_regs EXPORT_SYMBOL vmlinux 0x4ceae601 get_cpu_entry_area -EXPORT_SYMBOL vmlinux 0x4cf3628c tcf_em_tree_destroy -EXPORT_SYMBOL vmlinux 0x4d074f8d __breadahead -EXPORT_SYMBOL vmlinux 0x4d0af80b __pagevec_release +EXPORT_SYMBOL vmlinux 0x4cf82133 mmc_gpio_get_cd +EXPORT_SYMBOL vmlinux 0x4d098f3a rproc_get_by_phandle +EXPORT_SYMBOL vmlinux 0x4d16ba66 skb_queue_tail +EXPORT_SYMBOL vmlinux 0x4d1d5c4e mmc_can_trim EXPORT_SYMBOL vmlinux 0x4d2c7133 acpi_info -EXPORT_SYMBOL vmlinux 0x4d36fead fs_param_is_path -EXPORT_SYMBOL vmlinux 0x4d39b9e6 max8925_reg_write -EXPORT_SYMBOL vmlinux 0x4d47fdb1 unregister_netdev -EXPORT_SYMBOL vmlinux 0x4d690cc7 sk_mc_loop -EXPORT_SYMBOL vmlinux 0x4d6b3bc3 phy_register_fixup -EXPORT_SYMBOL vmlinux 0x4d8b0cc8 eth_mac_addr -EXPORT_SYMBOL vmlinux 0x4d8cb423 con_is_visible -EXPORT_SYMBOL vmlinux 0x4d8cef0b dquot_writeback_dquots -EXPORT_SYMBOL vmlinux 0x4d8d427e fs_param_is_fd +EXPORT_SYMBOL vmlinux 0x4d3f4907 tty_hangup +EXPORT_SYMBOL vmlinux 0x4d5b4071 vfs_path_lookup +EXPORT_SYMBOL vmlinux 0x4d742825 fuse_mount_destroy +EXPORT_SYMBOL vmlinux 0x4d794015 sock_no_getname EXPORT_SYMBOL vmlinux 0x4d924f20 memremap -EXPORT_SYMBOL vmlinux 0x4d93f063 amd_iommu_domain_direct_map -EXPORT_SYMBOL vmlinux 0x4d981bf1 __cleancache_init_fs +EXPORT_SYMBOL vmlinux 0x4d96f30e simple_transaction_read EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase -EXPORT_SYMBOL vmlinux 0x4da8cf9e cont_write_begin -EXPORT_SYMBOL vmlinux 0x4dab030b to_ndd +EXPORT_SYMBOL vmlinux 0x4d9d56ed flow_rule_match_enc_ipv6_addrs +EXPORT_SYMBOL vmlinux 0x4daf34bf dst_dev_put EXPORT_SYMBOL vmlinux 0x4dca08ee sync_file_get_fence -EXPORT_SYMBOL vmlinux 0x4dd24c9a __skb_try_recv_datagram -EXPORT_SYMBOL vmlinux 0x4dd44c81 pci_claim_resource -EXPORT_SYMBOL vmlinux 0x4dda4fe3 inet_rtx_syn_ack -EXPORT_SYMBOL vmlinux 0x4de8d2a0 d_add_ci +EXPORT_SYMBOL vmlinux 0x4dd15cd3 sock_rfree +EXPORT_SYMBOL vmlinux 0x4dd557e8 iov_iter_single_seg_count EXPORT_SYMBOL vmlinux 0x4de995ec gen_pool_dma_alloc_algo EXPORT_SYMBOL vmlinux 0x4df02057 crc32_be -EXPORT_SYMBOL vmlinux 0x4df247ce _dev_alert EXPORT_SYMBOL vmlinux 0x4df2ea84 gen_estimator_read EXPORT_SYMBOL vmlinux 0x4dfa8d4b mutex_lock -EXPORT_SYMBOL vmlinux 0x4e056004 param_ops_short -EXPORT_SYMBOL vmlinux 0x4e19b781 vlan_uses_dev -EXPORT_SYMBOL vmlinux 0x4e1babc6 jbd2_journal_get_write_access +EXPORT_SYMBOL vmlinux 0x4e09ef52 fd_install EXPORT_SYMBOL vmlinux 0x4e20bcf8 radix_tree_tag_set +EXPORT_SYMBOL vmlinux 0x4e264ebe __sock_queue_rcv_skb EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int EXPORT_SYMBOL vmlinux 0x4e36cdc4 __ubsan_handle_divrem_overflow -EXPORT_SYMBOL vmlinux 0x4e4e1f30 ps2_init +EXPORT_SYMBOL vmlinux 0x4e3d85c2 mmc_erase EXPORT_SYMBOL vmlinux 0x4e4f0f16 dma_fence_chain_find_seqno EXPORT_SYMBOL vmlinux 0x4e547048 __kmalloc_node_track_caller +EXPORT_SYMBOL vmlinux 0x4e5a0e17 d_alloc_name +EXPORT_SYMBOL vmlinux 0x4e5eb40b acpi_pm_device_sleep_state EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder EXPORT_SYMBOL vmlinux 0x4e6e4b41 radix_tree_delete EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console -EXPORT_SYMBOL vmlinux 0x4e7d33a3 key_link -EXPORT_SYMBOL vmlinux 0x4e82e6f8 napi_gro_frags -EXPORT_SYMBOL vmlinux 0x4e926210 fscrypt_has_permitted_context -EXPORT_SYMBOL vmlinux 0x4e9a3a2b clk_get -EXPORT_SYMBOL vmlinux 0x4e9c804b copy_page_from_iter -EXPORT_SYMBOL vmlinux 0x4ea1ceaa rawv6_mh_filter_register +EXPORT_SYMBOL vmlinux 0x4e6f40c9 __qdisc_calculate_pkt_len +EXPORT_SYMBOL vmlinux 0x4e7014e6 skb_copy_header +EXPORT_SYMBOL vmlinux 0x4e7e6460 twl6040_reg_write +EXPORT_SYMBOL vmlinux 0x4e84ab84 blk_mq_queue_stopped +EXPORT_SYMBOL vmlinux 0x4e851804 nf_ip6_checksum +EXPORT_SYMBOL vmlinux 0x4ea10fcb rproc_coredump_set_elf_info EXPORT_SYMBOL vmlinux 0x4ea25709 dql_reset -EXPORT_SYMBOL vmlinux 0x4eabba63 mmc_wait_for_req EXPORT_SYMBOL vmlinux 0x4eada8f7 security_secid_to_secctx -EXPORT_SYMBOL vmlinux 0x4ec35d79 mdio_device_create +EXPORT_SYMBOL vmlinux 0x4ec342ac __ip_select_ident EXPORT_SYMBOL vmlinux 0x4ec54e78 bitmap_to_arr32 -EXPORT_SYMBOL vmlinux 0x4ec6d06b tcp_v4_md5_hash_skb -EXPORT_SYMBOL vmlinux 0x4ed39e4b dqget -EXPORT_SYMBOL vmlinux 0x4ed55cf4 __scsi_iterate_devices -EXPORT_SYMBOL vmlinux 0x4f076f8b phy_register_fixup_for_id -EXPORT_SYMBOL vmlinux 0x4f0d630f jbd2_journal_invalidatepage -EXPORT_SYMBOL vmlinux 0x4f12434d netdev_emerg -EXPORT_SYMBOL vmlinux 0x4f18cb51 mount_single -EXPORT_SYMBOL vmlinux 0x4f1aca91 mmc_gpiod_request_cd_irq +EXPORT_SYMBOL vmlinux 0x4ed70d19 udp6_set_csum +EXPORT_SYMBOL vmlinux 0x4edcdbf8 inode_insert5 +EXPORT_SYMBOL vmlinux 0x4ee96646 __skb_flow_get_ports +EXPORT_SYMBOL vmlinux 0x4eeb3346 devm_rproc_add +EXPORT_SYMBOL vmlinux 0x4f161921 mr_fill_mroute +EXPORT_SYMBOL vmlinux 0x4f1846d0 __d_drop +EXPORT_SYMBOL vmlinux 0x4f1afbf4 jbd2_wait_inode_data EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create EXPORT_SYMBOL vmlinux 0x4f2250ba rtc_tm_to_time64 -EXPORT_SYMBOL vmlinux 0x4f29f243 unregister_quota_format +EXPORT_SYMBOL vmlinux 0x4f24b61f sk_stop_timer +EXPORT_SYMBOL vmlinux 0x4f264500 sk_stream_error +EXPORT_SYMBOL vmlinux 0x4f411b2e bh_uptodate_or_lock +EXPORT_SYMBOL vmlinux 0x4f422824 get_vm_area +EXPORT_SYMBOL vmlinux 0x4f4bf7a6 ip_sock_set_mtu_discover +EXPORT_SYMBOL vmlinux 0x4f500e24 devm_ioport_map EXPORT_SYMBOL vmlinux 0x4f55166f acpi_set_current_resources +EXPORT_SYMBOL vmlinux 0x4f56e152 pci_release_selected_regions +EXPORT_SYMBOL vmlinux 0x4f5aee3b pv_ops +EXPORT_SYMBOL vmlinux 0x4f5d4083 dev_mc_flush EXPORT_SYMBOL vmlinux 0x4f709989 security_binder_transfer_binder EXPORT_SYMBOL vmlinux 0x4f711f84 intel_scu_ipc_dev_iowrite8 -EXPORT_SYMBOL vmlinux 0x4fa22a8a pci_scan_slot -EXPORT_SYMBOL vmlinux 0x4fa4aeef __inet_hash -EXPORT_SYMBOL vmlinux 0x4fbdcdaa ppp_register_compressor -EXPORT_SYMBOL vmlinux 0x4fcc8ad2 ex_handler_uaccess +EXPORT_SYMBOL vmlinux 0x4f756f83 mdio_device_reset +EXPORT_SYMBOL vmlinux 0x4f778c54 __zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0x4fd3870b pci_dev_driver +EXPORT_SYMBOL vmlinux 0x4fd65ef1 __serio_register_port EXPORT_SYMBOL vmlinux 0x4fdee897 i8042_command -EXPORT_SYMBOL vmlinux 0x4fe04689 fs_param_is_blob -EXPORT_SYMBOL vmlinux 0x4fe1416b blk_post_runtime_suspend -EXPORT_SYMBOL vmlinux 0x4feb4f98 xfrm6_rcv +EXPORT_SYMBOL vmlinux 0x4fed73c7 input_set_min_poll_interval +EXPORT_SYMBOL vmlinux 0x50015aba devm_mdiobus_alloc_size EXPORT_SYMBOL vmlinux 0x50097088 security_tun_dev_free_security EXPORT_SYMBOL vmlinux 0x5009c71d glob_match -EXPORT_SYMBOL vmlinux 0x501d476e dm_table_event -EXPORT_SYMBOL vmlinux 0x5021b9fe alloc_pages_vma +EXPORT_SYMBOL vmlinux 0x5017c4fe md_unregister_thread +EXPORT_SYMBOL vmlinux 0x501ea2c3 udplite_prot EXPORT_SYMBOL vmlinux 0x5021bd81 _raw_write_lock_irqsave EXPORT_SYMBOL vmlinux 0x5027bde2 acpi_acquire_mutex -EXPORT_SYMBOL vmlinux 0x502e93a9 __inc_zone_page_state -EXPORT_SYMBOL vmlinux 0x5030a7fd dev_pick_tx_zero -EXPORT_SYMBOL vmlinux 0x50310a13 generic_write_end -EXPORT_SYMBOL vmlinux 0x505e6996 xp_dma_map +EXPORT_SYMBOL vmlinux 0x5031228e locks_delete_block +EXPORT_SYMBOL vmlinux 0x50571235 fwnode_graph_parse_endpoint +EXPORT_SYMBOL vmlinux 0x5061a46e __xfrm_dst_lookup EXPORT_SYMBOL vmlinux 0x50624917 sha1_init +EXPORT_SYMBOL vmlinux 0x50645f2c unregister_netdevice_queue +EXPORT_SYMBOL vmlinux 0x50655e12 jbd2_trans_will_send_data_barrier EXPORT_SYMBOL vmlinux 0x506dff1a __genradix_free -EXPORT_SYMBOL vmlinux 0x507bf14a netlink_broadcast_filtered -EXPORT_SYMBOL vmlinux 0x50876a30 cfb_imageblit +EXPORT_SYMBOL vmlinux 0x50739459 ip_route_me_harder +EXPORT_SYMBOL vmlinux 0x507ebcda phy_do_ioctl_running +EXPORT_SYMBOL vmlinux 0x508c7ef7 vmf_insert_mixed_mkwrite +EXPORT_SYMBOL vmlinux 0x509a2afd lookup_one_unlocked EXPORT_SYMBOL vmlinux 0x509b64ea acpi_has_method EXPORT_SYMBOL vmlinux 0x50a4698c fb_videomode_to_modelist +EXPORT_SYMBOL vmlinux 0x50a9836f flow_rule_match_enc_keyid +EXPORT_SYMBOL vmlinux 0x50b2f695 locks_remove_posix EXPORT_SYMBOL vmlinux 0x50b73ce2 rfkill_find_type EXPORT_SYMBOL vmlinux 0x50be748d security_ib_free_security +EXPORT_SYMBOL vmlinux 0x50c641c1 ip6_mtu EXPORT_SYMBOL vmlinux 0x50cf7585 hex2bin +EXPORT_SYMBOL vmlinux 0x50cf954d mmc_free_host EXPORT_SYMBOL vmlinux 0x50d035c2 vsscanf EXPORT_SYMBOL vmlinux 0x50d68377 arch_phys_wc_del +EXPORT_SYMBOL vmlinux 0x50ecd5fb twl6040_clear_bits EXPORT_SYMBOL vmlinux 0x50f91491 __genradix_ptr +EXPORT_SYMBOL vmlinux 0x50f9a582 dm_table_get_size EXPORT_SYMBOL vmlinux 0x5102a30b do_wait_intr_irq -EXPORT_SYMBOL vmlinux 0x5105e6f9 __sk_receive_skb EXPORT_SYMBOL vmlinux 0x5107701c __do_once_done -EXPORT_SYMBOL vmlinux 0x511c653c md_write_start +EXPORT_SYMBOL vmlinux 0x5109df42 ata_print_version +EXPORT_SYMBOL vmlinux 0x5111801a page_readlink +EXPORT_SYMBOL vmlinux 0x51187dd0 mark_buffer_dirty EXPORT_SYMBOL vmlinux 0x512afb54 nla_put_nohdr -EXPORT_SYMBOL vmlinux 0x514518f6 tcf_exts_dump -EXPORT_SYMBOL vmlinux 0x514a2d17 pci_bus_read_config_word +EXPORT_SYMBOL vmlinux 0x51307383 md_set_array_sectors +EXPORT_SYMBOL vmlinux 0x5145c043 tcf_em_tree_dump EXPORT_SYMBOL vmlinux 0x515083bf acpi_release_mutex -EXPORT_SYMBOL vmlinux 0x51511f42 unregister_qdisc EXPORT_SYMBOL vmlinux 0x51641162 opal_unlock_from_suspend -EXPORT_SYMBOL vmlinux 0x518ae98d sock_i_uid -EXPORT_SYMBOL vmlinux 0x51a4d06d mini_qdisc_pair_swap +EXPORT_SYMBOL vmlinux 0x516888db scmd_printk +EXPORT_SYMBOL vmlinux 0x5172b114 tcp_child_process +EXPORT_SYMBOL vmlinux 0x518507b5 fs_param_is_enum +EXPORT_SYMBOL vmlinux 0x519ad508 register_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x51a138e1 inode_dio_wait EXPORT_SYMBOL vmlinux 0x51a511eb _raw_write_lock_bh -EXPORT_SYMBOL vmlinux 0x51a7bb12 generic_write_checks -EXPORT_SYMBOL vmlinux 0x51cf52e6 register_shrinker +EXPORT_SYMBOL vmlinux 0x51c649a1 ip6tun_encaps EXPORT_SYMBOL vmlinux 0x51d12d4e acpi_pci_disabled -EXPORT_SYMBOL vmlinux 0x51d857f5 skb_vlan_push +EXPORT_SYMBOL vmlinux 0x51d2721d jbd2_journal_inode_ranged_write +EXPORT_SYMBOL vmlinux 0x51dd14ac tcp_ioctl EXPORT_SYMBOL vmlinux 0x51f298e0 intel_scu_ipc_dev_ioread8 -EXPORT_SYMBOL vmlinux 0x51f398fc page_pool_alloc_frag +EXPORT_SYMBOL vmlinux 0x51f6ac90 bd_abort_claiming EXPORT_SYMBOL vmlinux 0x51f86a1a blk_limits_io_opt -EXPORT_SYMBOL vmlinux 0x51fc2f8a hash_and_copy_to_iter -EXPORT_SYMBOL vmlinux 0x520524f1 set_create_files_as -EXPORT_SYMBOL vmlinux 0x520b558d bio_free_pages +EXPORT_SYMBOL vmlinux 0x5206f56b __inc_zone_page_state EXPORT_SYMBOL vmlinux 0x52185192 __nla_reserve_nohdr -EXPORT_SYMBOL vmlinux 0x521ca552 uart_get_divisor -EXPORT_SYMBOL vmlinux 0x522c4d5f vmf_insert_pfn -EXPORT_SYMBOL vmlinux 0x523384cc dev_get_stats -EXPORT_SYMBOL vmlinux 0x52561ccd blk_mq_start_stopped_hw_queues -EXPORT_SYMBOL vmlinux 0x52595b23 sock_enable_timestamps -EXPORT_SYMBOL vmlinux 0x525f7098 __skb_wait_for_more_packets +EXPORT_SYMBOL vmlinux 0x5240c5d9 skb_checksum +EXPORT_SYMBOL vmlinux 0x5249960c ipv6_find_hdr +EXPORT_SYMBOL vmlinux 0x525368f1 acpi_device_set_power +EXPORT_SYMBOL vmlinux 0x525c1cdf ipmi_platform_add EXPORT_SYMBOL vmlinux 0x526eef2c hdmi_vendor_infoframe_pack -EXPORT_SYMBOL vmlinux 0x52708262 pci_set_mwi -EXPORT_SYMBOL vmlinux 0x5279c0ef mfd_cell_enable -EXPORT_SYMBOL vmlinux 0x52860fa9 filemap_fdatawrite_wbc +EXPORT_SYMBOL vmlinux 0x527483b9 kmem_cache_create +EXPORT_SYMBOL vmlinux 0x5274e162 cros_ec_get_next_event +EXPORT_SYMBOL vmlinux 0x52834a7c xfrm_state_lookup +EXPORT_SYMBOL vmlinux 0x52911ad6 tcf_chain_put_by_act +EXPORT_SYMBOL vmlinux 0x52952360 phy_set_sym_pause EXPORT_SYMBOL vmlinux 0x52983a4f vme_master_write -EXPORT_SYMBOL vmlinux 0x52ba6325 __cpuhp_setup_state -EXPORT_SYMBOL vmlinux 0x52bf5720 sock_i_ino -EXPORT_SYMBOL vmlinux 0x52c69794 __splice_from_pipe +EXPORT_SYMBOL vmlinux 0x52c6a507 vme_dma_request +EXPORT_SYMBOL vmlinux 0x52d5d434 vfs_fsync_range EXPORT_SYMBOL vmlinux 0x52d717da xz_dec_init EXPORT_SYMBOL vmlinux 0x52dcb85b __traceiter_kmalloc -EXPORT_SYMBOL vmlinux 0x52e1862c qdisc_tree_reduce_backlog +EXPORT_SYMBOL vmlinux 0x52e7a029 ipv6_chk_custom_prefix +EXPORT_SYMBOL vmlinux 0x52e88e04 tcp_select_initial_window EXPORT_SYMBOL vmlinux 0x52ecbc75 crc_ccitt -EXPORT_SYMBOL vmlinux 0x5309a780 vm_insert_page -EXPORT_SYMBOL vmlinux 0x530a8df7 grab_cache_page_write_begin +EXPORT_SYMBOL vmlinux 0x52f8cc3e flow_rule_match_icmp +EXPORT_SYMBOL vmlinux 0x5306f191 d_obtain_root EXPORT_SYMBOL vmlinux 0x530b1e98 pm_suspend EXPORT_SYMBOL vmlinux 0x53126ecc __percpu_counter_sum -EXPORT_SYMBOL vmlinux 0x53170aa4 nf_hook_slow +EXPORT_SYMBOL vmlinux 0x5315278b blk_queue_alignment_offset EXPORT_SYMBOL vmlinux 0x531b604e __virt_addr_valid +EXPORT_SYMBOL vmlinux 0x5325f360 ip6_output EXPORT_SYMBOL vmlinux 0x533206b5 sort_r -EXPORT_SYMBOL vmlinux 0x5335f081 sock_wake_async EXPORT_SYMBOL vmlinux 0x5338184f ethtool_sprintf -EXPORT_SYMBOL vmlinux 0x53540746 mpage_readahead +EXPORT_SYMBOL vmlinux 0x5339e470 blk_queue_max_write_zeroes_sectors EXPORT_SYMBOL vmlinux 0x53569707 this_cpu_off -EXPORT_SYMBOL vmlinux 0x5387ca3a __frontswap_test -EXPORT_SYMBOL vmlinux 0x5391e5a2 kernel_connect -EXPORT_SYMBOL vmlinux 0x53a6d6d3 mmc_wait_for_cmd -EXPORT_SYMBOL vmlinux 0x53b13efe alloc_xenballooned_pages -EXPORT_SYMBOL vmlinux 0x53b32b74 mroute6_is_socket +EXPORT_SYMBOL vmlinux 0x53754a29 remove_proc_entry +EXPORT_SYMBOL vmlinux 0x537aa204 in6_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x53978b8a blk_mq_free_tag_set +EXPORT_SYMBOL vmlinux 0x53a08e85 mdiobus_get_phy +EXPORT_SYMBOL vmlinux 0x53a2ceeb dev_loopback_xmit +EXPORT_SYMBOL vmlinux 0x53aa3efa register_key_type +EXPORT_SYMBOL vmlinux 0x53ad8e0e cdev_set_parent +EXPORT_SYMBOL vmlinux 0x53b3ab27 fs_param_is_bool EXPORT_SYMBOL vmlinux 0x53b954a2 up_read -EXPORT_SYMBOL vmlinux 0x53be21a0 vme_bus_type -EXPORT_SYMBOL vmlinux 0x53cc0eb5 pci_request_selected_regions_exclusive -EXPORT_SYMBOL vmlinux 0x53d2a759 device_add_disk +EXPORT_SYMBOL vmlinux 0x53bac547 genphy_loopback EXPORT_SYMBOL vmlinux 0x53e50ffa first_ec +EXPORT_SYMBOL vmlinux 0x53eab9e7 tcf_idr_release +EXPORT_SYMBOL vmlinux 0x53f1f056 pci_disable_msix +EXPORT_SYMBOL vmlinux 0x53f76d2c follow_pfn EXPORT_SYMBOL vmlinux 0x53fa36d1 ZSTD_decompressBlock -EXPORT_SYMBOL vmlinux 0x53feef95 dm_get_device -EXPORT_SYMBOL vmlinux 0x540981ca page_pool_return_skb_page EXPORT_SYMBOL vmlinux 0x54175c5f acpi_read_bit_register +EXPORT_SYMBOL vmlinux 0x5423104b d_alloc_parallel +EXPORT_SYMBOL vmlinux 0x542700ef tcf_action_check_ctrlact +EXPORT_SYMBOL vmlinux 0x542c75af iov_iter_revert +EXPORT_SYMBOL vmlinux 0x54383df0 get_user_pages_locked +EXPORT_SYMBOL vmlinux 0x543b49f0 get_cached_acl_rcu EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start -EXPORT_SYMBOL vmlinux 0x54480a50 pcie_capability_write_dword -EXPORT_SYMBOL vmlinux 0x544d695a pci_remove_bus -EXPORT_SYMBOL vmlinux 0x545136b6 phy_do_ioctl +EXPORT_SYMBOL vmlinux 0x54563080 alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0x54580a64 input_register_handler +EXPORT_SYMBOL vmlinux 0x54695253 device_match_acpi_dev +EXPORT_SYMBOL vmlinux 0x546d8519 vga_switcheroo_client_probe_defer EXPORT_SYMBOL vmlinux 0x547e3344 acpi_disable -EXPORT_SYMBOL vmlinux 0x548efe64 tcp_make_synack -EXPORT_SYMBOL vmlinux 0x549474ae blk_integrity_unregister -EXPORT_SYMBOL vmlinux 0x549c03cc key_instantiate_and_link +EXPORT_SYMBOL vmlinux 0x54876e02 md_check_recovery +EXPORT_SYMBOL vmlinux 0x54a46cbe vfs_dedupe_file_range_one EXPORT_SYMBOL vmlinux 0x54b1fac6 __ubsan_handle_load_invalid_value EXPORT_SYMBOL vmlinux 0x54b22bb1 __SCT__tp_func_mmap_lock_acquire_returned -EXPORT_SYMBOL vmlinux 0x54ba9013 dma_async_tx_descriptor_init -EXPORT_SYMBOL vmlinux 0x54c1394a mr_mfc_find_any -EXPORT_SYMBOL vmlinux 0x54cc6746 pci_choose_state -EXPORT_SYMBOL vmlinux 0x54def422 netdev_features_change -EXPORT_SYMBOL vmlinux 0x54e5ae41 xp_raw_get_dma +EXPORT_SYMBOL vmlinux 0x54be8648 dma_async_device_register +EXPORT_SYMBOL vmlinux 0x54c60d9f scsi_set_medium_removal +EXPORT_SYMBOL vmlinux 0x54cc4ba2 proc_create_data EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp EXPORT_SYMBOL vmlinux 0x54ea6dfe xen_start_flags EXPORT_SYMBOL vmlinux 0x5506b8f7 netlbl_bitmap_setbit -EXPORT_SYMBOL vmlinux 0x550ae44f drop_super +EXPORT_SYMBOL vmlinux 0x550ff4bb iov_iter_get_pages_alloc +EXPORT_SYMBOL vmlinux 0x5518e954 jbd2_journal_invalidatepage EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color -EXPORT_SYMBOL vmlinux 0x551f6e35 __SCK__tp_func_kmalloc -EXPORT_SYMBOL vmlinux 0x55235d3d __mdiobus_write +EXPORT_SYMBOL vmlinux 0x5520ab9e genphy_check_and_restart_aneg EXPORT_SYMBOL vmlinux 0x55385e2e __x86_indirect_thunk_r14 -EXPORT_SYMBOL vmlinux 0x5547fe39 ppp_output_wakeup +EXPORT_SYMBOL vmlinux 0x554a56af vfs_dedupe_file_range EXPORT_SYMBOL vmlinux 0x554ae3a4 irq_poll_sched -EXPORT_SYMBOL vmlinux 0x554d1fec d_path -EXPORT_SYMBOL vmlinux 0x555c9d1a sock_kfree_s -EXPORT_SYMBOL vmlinux 0x555dec1f amd_iommu_flush_tlb +EXPORT_SYMBOL vmlinux 0x555462f5 netdev_lower_get_next_private EXPORT_SYMBOL vmlinux 0x556422b3 ioremap_cache +EXPORT_SYMBOL vmlinux 0x5566d6d1 dm_table_run_md_queue_async EXPORT_SYMBOL vmlinux 0x556b5d62 __kfifo_dma_in_prepare_r EXPORT_SYMBOL vmlinux 0x556cca46 x86_apple_machine -EXPORT_SYMBOL vmlinux 0x557210a8 ___pskb_trim EXPORT_SYMBOL vmlinux 0x558b281d aes_expandkey -EXPORT_SYMBOL vmlinux 0x5595e54a con_is_bound -EXPORT_SYMBOL vmlinux 0x55a72d4a csum_and_copy_from_iter -EXPORT_SYMBOL vmlinux 0x55b42f2a reuseport_alloc -EXPORT_SYMBOL vmlinux 0x55be2a0d key_invalidate +EXPORT_SYMBOL vmlinux 0x55abfddc phy_set_asym_pause +EXPORT_SYMBOL vmlinux 0x55b8e7ea tty_schedule_flip +EXPORT_SYMBOL vmlinux 0x55cdaf07 inet_sock_destruct +EXPORT_SYMBOL vmlinux 0x55d1223f skb_queue_purge EXPORT_SYMBOL vmlinux 0x55e31703 ethtool_convert_link_mode_to_legacy_u32 -EXPORT_SYMBOL vmlinux 0x55e45daf mr_vif_seq_next -EXPORT_SYMBOL vmlinux 0x55eae228 cdrom_check_events -EXPORT_SYMBOL vmlinux 0x55ee1a36 param_set_ullong -EXPORT_SYMBOL vmlinux 0x55f2df8b sg_miter_skip +EXPORT_SYMBOL vmlinux 0x55f7a0a7 pps_unregister_source EXPORT_SYMBOL vmlinux 0x55f95e07 ioremap_prot -EXPORT_SYMBOL vmlinux 0x560308bb seq_path -EXPORT_SYMBOL vmlinux 0x5633f458 security_socket_getpeersec_dgram EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user EXPORT_SYMBOL vmlinux 0x56470118 __warn_printk EXPORT_SYMBOL vmlinux 0x564f7608 acpi_reconfig_notifier_register EXPORT_SYMBOL vmlinux 0x56555401 nla_put_64bit -EXPORT_SYMBOL vmlinux 0x5663df87 __dev_set_mtu -EXPORT_SYMBOL vmlinux 0x56768899 ip_check_defrag EXPORT_SYMBOL vmlinux 0x56802ae8 rps_cpu_mask -EXPORT_SYMBOL vmlinux 0x568d8e6f inet_frag_destroy -EXPORT_SYMBOL vmlinux 0x569470a7 thread_group_exited -EXPORT_SYMBOL vmlinux 0x56c84b59 finalize_exec +EXPORT_SYMBOL vmlinux 0x5680592f padata_do_parallel +EXPORT_SYMBOL vmlinux 0x56b1a1eb fb_class +EXPORT_SYMBOL vmlinux 0x56b9d5d2 jbd2_journal_load EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg -EXPORT_SYMBOL vmlinux 0x56de5ace __cpuhp_remove_state -EXPORT_SYMBOL vmlinux 0x56f0aa0c flow_rule_match_meta -EXPORT_SYMBOL vmlinux 0x56f36f6a cdev_del -EXPORT_SYMBOL vmlinux 0x56f44436 uart_write_wakeup -EXPORT_SYMBOL vmlinux 0x5702ffc8 tc_setup_cb_reoffload -EXPORT_SYMBOL vmlinux 0x57268f9b fiemap_prep -EXPORT_SYMBOL vmlinux 0x574b6d66 __napi_schedule_irqoff +EXPORT_SYMBOL vmlinux 0x56e64e12 mdiobus_read +EXPORT_SYMBOL vmlinux 0x56fc9416 security_inode_copy_up +EXPORT_SYMBOL vmlinux 0x573a0d46 agp_bridge +EXPORT_SYMBOL vmlinux 0x57429acb simple_rename EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region -EXPORT_SYMBOL vmlinux 0x574f8064 blk_queue_max_hw_sectors -EXPORT_SYMBOL vmlinux 0x574fc783 mmc_cqe_start_req -EXPORT_SYMBOL vmlinux 0x5752369e blk_queue_max_write_zeroes_sectors -EXPORT_SYMBOL vmlinux 0x57532bd5 no_seek_end_llseek +EXPORT_SYMBOL vmlinux 0x57571563 nd_device_notify EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put -EXPORT_SYMBOL vmlinux 0x575cacd0 nvdimm_namespace_common_probe -EXPORT_SYMBOL vmlinux 0x57608b6a tc_cleanup_flow_action -EXPORT_SYMBOL vmlinux 0x57647e69 phy_device_remove -EXPORT_SYMBOL vmlinux 0x5773a966 devfreq_update_target -EXPORT_SYMBOL vmlinux 0x57750e81 xfrm_input_unregister_afinfo -EXPORT_SYMBOL vmlinux 0x577c5e81 blk_mq_stop_hw_queues -EXPORT_SYMBOL vmlinux 0x577f5d15 kern_path_create -EXPORT_SYMBOL vmlinux 0x5787b48e flow_rule_match_mpls +EXPORT_SYMBOL vmlinux 0x5761eeac param_ops_bool +EXPORT_SYMBOL vmlinux 0x5763fe77 inet_sendmsg +EXPORT_SYMBOL vmlinux 0x57643ce2 sock_kfree_s EXPORT_SYMBOL vmlinux 0x578a408b ZSTD_initDCtx -EXPORT_SYMBOL vmlinux 0x578b10ae jbd2_journal_finish_inode_data_buffers EXPORT_SYMBOL vmlinux 0x57900416 gen_pool_fixed_alloc EXPORT_SYMBOL vmlinux 0x5792f848 strlcpy -EXPORT_SYMBOL vmlinux 0x57a0cddb __skb_ext_del -EXPORT_SYMBOL vmlinux 0x57a2f083 vme_master_mmap -EXPORT_SYMBOL vmlinux 0x57bad0a6 i2c_transfer +EXPORT_SYMBOL vmlinux 0x57a15a2c tty_register_device +EXPORT_SYMBOL vmlinux 0x57b3aa9b jbd2_journal_dirty_metadata EXPORT_SYMBOL vmlinux 0x57bc19d2 down_write -EXPORT_SYMBOL vmlinux 0x57cbff77 ip_tunnel_parse_protocol -EXPORT_SYMBOL vmlinux 0x57e26e98 filemap_fdatawrite +EXPORT_SYMBOL vmlinux 0x57c1c4aa xfrm_alloc_spi +EXPORT_SYMBOL vmlinux 0x57c8a06f softnet_data +EXPORT_SYMBOL vmlinux 0x57ef3b61 __tracepoint_write_msr +EXPORT_SYMBOL vmlinux 0x580e3bca nvdimm_namespace_locked EXPORT_SYMBOL vmlinux 0x58125fbb nla_reserve_64bit EXPORT_SYMBOL vmlinux 0x5818fe3c posix_acl_from_mode EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate +EXPORT_SYMBOL vmlinux 0x5825a1c7 file_remove_privs +EXPORT_SYMBOL vmlinux 0x58271810 dcache_dir_open EXPORT_SYMBOL vmlinux 0x582b6275 xfrm_if_unregister_cb +EXPORT_SYMBOL vmlinux 0x58307f5c ppp_register_compressor EXPORT_SYMBOL vmlinux 0x5838f6c9 rtc_valid_tm -EXPORT_SYMBOL vmlinux 0x584d9161 dev_change_proto_down_reason -EXPORT_SYMBOL vmlinux 0x586aa659 __mmc_claim_host -EXPORT_SYMBOL vmlinux 0x58707285 ndo_dflt_fdb_del +EXPORT_SYMBOL vmlinux 0x5866d5a3 sb_min_blocksize +EXPORT_SYMBOL vmlinux 0x587191b8 blk_mq_stop_hw_queue +EXPORT_SYMBOL vmlinux 0x58719887 __starget_for_each_device +EXPORT_SYMBOL vmlinux 0x587a91c7 cad_pid EXPORT_SYMBOL vmlinux 0x587b0954 kvasprintf EXPORT_SYMBOL vmlinux 0x587f22d7 devmap_managed_key -EXPORT_SYMBOL vmlinux 0x587f8c5d skb_dump -EXPORT_SYMBOL vmlinux 0x5881630a xp_raw_get_data -EXPORT_SYMBOL vmlinux 0x58880e46 splice_direct_to_actor -EXPORT_SYMBOL vmlinux 0x588f3dcc xfrm_trans_queue_net +EXPORT_SYMBOL vmlinux 0x588139e7 acpi_processor_notify_smm +EXPORT_SYMBOL vmlinux 0x588e1892 sock_no_bind +EXPORT_SYMBOL vmlinux 0x589c92b2 md_update_sb +EXPORT_SYMBOL vmlinux 0x589e0fa3 agp_backend_release EXPORT_SYMBOL vmlinux 0x58acf24b mdiobus_register_board_info +EXPORT_SYMBOL vmlinux 0x58afe647 bdi_alloc EXPORT_SYMBOL vmlinux 0x58b4645c dev_close_many EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard -EXPORT_SYMBOL vmlinux 0x58bd808f deactivate_super -EXPORT_SYMBOL vmlinux 0x58c67f20 jbd2_trans_will_send_data_barrier -EXPORT_SYMBOL vmlinux 0x58ce0661 agp_alloc_page_array -EXPORT_SYMBOL vmlinux 0x58e26ba5 devm_memunmap +EXPORT_SYMBOL vmlinux 0x58ba9741 get_unmapped_area +EXPORT_SYMBOL vmlinux 0x58d27f6d sk_stop_timer_sync EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io -EXPORT_SYMBOL vmlinux 0x5904cc5f mmc_of_parse_voltage -EXPORT_SYMBOL vmlinux 0x590c11d9 ip6_fraglist_init -EXPORT_SYMBOL vmlinux 0x59106027 sock_wfree -EXPORT_SYMBOL vmlinux 0x5914fc82 netdev_name_node_alt_create -EXPORT_SYMBOL vmlinux 0x592284db xsk_set_tx_need_wakeup -EXPORT_SYMBOL vmlinux 0x5924b4c9 sock_no_sendmsg_locked -EXPORT_SYMBOL vmlinux 0x5936d4a0 __dev_get_by_name +EXPORT_SYMBOL vmlinux 0x58e97f43 serial8250_do_pm +EXPORT_SYMBOL vmlinux 0x58f221f1 pci_bus_set_ops +EXPORT_SYMBOL vmlinux 0x59150cb9 dev_get_iflink +EXPORT_SYMBOL vmlinux 0x591cd657 skb_dump +EXPORT_SYMBOL vmlinux 0x5930d89b bdevname EXPORT_SYMBOL vmlinux 0x593edc4b cpu_tlbstate_shared +EXPORT_SYMBOL vmlinux 0x59444a50 fs_lookup_param EXPORT_SYMBOL vmlinux 0x594bf15b ioport_map -EXPORT_SYMBOL vmlinux 0x59510955 scm_fp_dup +EXPORT_SYMBOL vmlinux 0x5954914a xfrm6_rcv_spi EXPORT_SYMBOL vmlinux 0x595d8002 hdmi_infoframe_pack -EXPORT_SYMBOL vmlinux 0x5974492c vga_switcheroo_register_client -EXPORT_SYMBOL vmlinux 0x597e66db flow_block_cb_lookup -EXPORT_SYMBOL vmlinux 0x598f2169 inet_sendpage +EXPORT_SYMBOL vmlinux 0x598ff43a cdrom_dummy_generic_packet EXPORT_SYMBOL vmlinux 0x599fb41c kvmalloc_node EXPORT_SYMBOL vmlinux 0x59a2f0ee packing -EXPORT_SYMBOL vmlinux 0x59a312c4 inc_nlink +EXPORT_SYMBOL vmlinux 0x59a70181 dns_query +EXPORT_SYMBOL vmlinux 0x59ad0839 flow_block_cb_alloc EXPORT_SYMBOL vmlinux 0x59b4ac3e tcp_memory_allocated -EXPORT_SYMBOL vmlinux 0x59fa162b __tracepoint_spi_transfer_start -EXPORT_SYMBOL vmlinux 0x59fa7456 ip_sock_set_mtu_discover -EXPORT_SYMBOL vmlinux 0x5a02405c __sk_mem_reduce_allocated -EXPORT_SYMBOL vmlinux 0x5a07e303 devm_nvmem_unregister -EXPORT_SYMBOL vmlinux 0x5a09fd1a blk_mq_tagset_busy_iter +EXPORT_SYMBOL vmlinux 0x59d55925 netif_receive_skb +EXPORT_SYMBOL vmlinux 0x59db707b dup_iter +EXPORT_SYMBOL vmlinux 0x59dfcbc5 dev_pre_changeaddr_notify +EXPORT_SYMBOL vmlinux 0x59e2cb27 __SCK__tp_func_dma_fence_emit +EXPORT_SYMBOL vmlinux 0x59e3f14a phy_set_max_speed +EXPORT_SYMBOL vmlinux 0x59f8f9c7 __scsi_add_device +EXPORT_SYMBOL vmlinux 0x5a02ce2d d_drop EXPORT_SYMBOL vmlinux 0x5a0b73d0 zlib_deflateInit2 -EXPORT_SYMBOL vmlinux 0x5a105bd7 vfs_link -EXPORT_SYMBOL vmlinux 0x5a284c7b mmc_put_card EXPORT_SYMBOL vmlinux 0x5a290250 hdmi_drm_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0x5a37e3ce configfs_register_subsystem +EXPORT_SYMBOL vmlinux 0x5a32695d ipv6_mc_check_mld +EXPORT_SYMBOL vmlinux 0x5a3581cd skb_flow_dissect_ct EXPORT_SYMBOL vmlinux 0x5a44f8cb __crypto_memneq EXPORT_SYMBOL vmlinux 0x5a4896a8 __put_user_2 EXPORT_SYMBOL vmlinux 0x5a4d313e gf128mul_4k_lle -EXPORT_SYMBOL vmlinux 0x5a4e6580 uart_update_timeout EXPORT_SYMBOL vmlinux 0x5a5a2271 __cpu_online_mask -EXPORT_SYMBOL vmlinux 0x5a609858 rproc_mem_entry_init -EXPORT_SYMBOL vmlinux 0x5a64be52 netif_set_real_num_rx_queues -EXPORT_SYMBOL vmlinux 0x5a6629a3 jbd2_journal_set_features -EXPORT_SYMBOL vmlinux 0x5a6b8876 inet_ioctl -EXPORT_SYMBOL vmlinux 0x5a750a5d neigh_parms_alloc -EXPORT_SYMBOL vmlinux 0x5a7df6d9 hmm_range_fault -EXPORT_SYMBOL vmlinux 0x5a82b686 cdrom_open -EXPORT_SYMBOL vmlinux 0x5a865791 dquot_free_inode +EXPORT_SYMBOL vmlinux 0x5a663a95 pmem_sector_size EXPORT_SYMBOL vmlinux 0x5a8ae15a ZSTD_initDDict -EXPORT_SYMBOL vmlinux 0x5a8ec87c inet_proto_csum_replace4 -EXPORT_SYMBOL vmlinux 0x5a90a38d unpin_user_page_range_dirty_lock +EXPORT_SYMBOL vmlinux 0x5a913556 ptp_schedule_worker +EXPORT_SYMBOL vmlinux 0x5a916244 inet_bind EXPORT_SYMBOL vmlinux 0x5a921311 strncmp -EXPORT_SYMBOL vmlinux 0x5aa2509d dma_set_mask -EXPORT_SYMBOL vmlinux 0x5ab64285 devm_free_irq -EXPORT_SYMBOL vmlinux 0x5acec008 register_framebuffer +EXPORT_SYMBOL vmlinux 0x5a99a0d7 flow_get_u32_dst +EXPORT_SYMBOL vmlinux 0x5ab06dbb blk_queue_update_dma_alignment +EXPORT_SYMBOL vmlinux 0x5ab44267 tc_setup_cb_add +EXPORT_SYMBOL vmlinux 0x5ab4d8fc send_sig +EXPORT_SYMBOL vmlinux 0x5abec2a7 blk_rq_map_kern +EXPORT_SYMBOL vmlinux 0x5acf9310 mipi_dsi_dcs_nop EXPORT_SYMBOL vmlinux 0x5ae1154b __traceiter_kfree -EXPORT_SYMBOL vmlinux 0x5ae2d083 security_inode_invalidate_secctx -EXPORT_SYMBOL vmlinux 0x5b21e35b phy_support_sym_pause +EXPORT_SYMBOL vmlinux 0x5ae7f790 fscrypt_fname_disk_to_usr +EXPORT_SYMBOL vmlinux 0x5b1f7790 fb_prepare_logo EXPORT_SYMBOL vmlinux 0x5b2f27fb do_wait_intr +EXPORT_SYMBOL vmlinux 0x5b30d4b6 tcp_read_sock EXPORT_SYMBOL vmlinux 0x5b36d5dd utf8agemax +EXPORT_SYMBOL vmlinux 0x5b3ba5a3 notify_change EXPORT_SYMBOL vmlinux 0x5b3e282f xa_store -EXPORT_SYMBOL vmlinux 0x5b40556b con_set_default_unimap -EXPORT_SYMBOL vmlinux 0x5b4362d5 ipv6_getsockopt EXPORT_SYMBOL vmlinux 0x5b56860c vm_munmap EXPORT_SYMBOL vmlinux 0x5b641283 arch_phys_wc_add -EXPORT_SYMBOL vmlinux 0x5b6783e4 phy_mac_interrupt -EXPORT_SYMBOL vmlinux 0x5b76985e i8042_install_filter -EXPORT_SYMBOL vmlinux 0x5b983cd2 dev_addr_add -EXPORT_SYMBOL vmlinux 0x5ba7ea89 jbd2_journal_check_used_features -EXPORT_SYMBOL vmlinux 0x5bab4c28 devm_devfreq_add_device -EXPORT_SYMBOL vmlinux 0x5babec11 serio_unregister_child_port -EXPORT_SYMBOL vmlinux 0x5bad3628 d_instantiate_new -EXPORT_SYMBOL vmlinux 0x5bb03216 sock_common_setsockopt -EXPORT_SYMBOL vmlinux 0x5bc74b93 security_inode_getsecctx -EXPORT_SYMBOL vmlinux 0x5bd11daa block_commit_write +EXPORT_SYMBOL vmlinux 0x5b7aee6d crypto_sha256_update +EXPORT_SYMBOL vmlinux 0x5b8239ca __x86_return_thunk +EXPORT_SYMBOL vmlinux 0x5b83f322 md_write_inc +EXPORT_SYMBOL vmlinux 0x5b8460be devm_backlight_device_unregister +EXPORT_SYMBOL vmlinux 0x5b85fd07 skb_copy_and_csum_datagram_msg +EXPORT_SYMBOL vmlinux 0x5b9be5e3 writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0x5bd18d6a pci_free_host_bridge EXPORT_SYMBOL vmlinux 0x5bd4ff88 flow_action_cookie_create -EXPORT_SYMBOL vmlinux 0x5bde0f09 locks_free_lock -EXPORT_SYMBOL vmlinux 0x5bde6ebe acpi_dev_hid_uid_match -EXPORT_SYMBOL vmlinux 0x5be29a2a sock_alloc_file EXPORT_SYMBOL vmlinux 0x5be63c5b crc32c_csum_stub -EXPORT_SYMBOL vmlinux 0x5bea3276 pci_stop_and_remove_bus_device +EXPORT_SYMBOL vmlinux 0x5bf42e54 tcp_v4_syn_recv_sock +EXPORT_SYMBOL vmlinux 0x5c20eb31 fscrypt_setup_filename EXPORT_SYMBOL vmlinux 0x5c26a53b wait_for_completion_io_timeout -EXPORT_SYMBOL vmlinux 0x5c3b5fe3 pci_try_set_mwi +EXPORT_SYMBOL vmlinux 0x5c28bca7 inet_confirm_addr EXPORT_SYMBOL vmlinux 0x5c3c7387 kstrtoull -EXPORT_SYMBOL vmlinux 0x5c595296 unlock_page_memcg -EXPORT_SYMBOL vmlinux 0x5c60e1b9 open_exec -EXPORT_SYMBOL vmlinux 0x5c90072e file_fdatawait_range -EXPORT_SYMBOL vmlinux 0x5c9b553c vfs_dup_fs_context -EXPORT_SYMBOL vmlinux 0x5cad050b pfifo_qdisc_ops -EXPORT_SYMBOL vmlinux 0x5cc2cc67 find_inode_nowait -EXPORT_SYMBOL vmlinux 0x5ccd8369 phy_request_interrupt -EXPORT_SYMBOL vmlinux 0x5cee09b3 rawv6_mh_filter_unregister -EXPORT_SYMBOL vmlinux 0x5cf1da9e security_sk_classify_flow +EXPORT_SYMBOL vmlinux 0x5c6cbbf2 inet_frags_fini +EXPORT_SYMBOL vmlinux 0x5c771c35 tcp_v4_md5_lookup +EXPORT_SYMBOL vmlinux 0x5c9ad982 blkdev_get_by_dev +EXPORT_SYMBOL vmlinux 0x5ca23ac7 tcp_v4_connect +EXPORT_SYMBOL vmlinux 0x5ca27d7d wait_on_page_bit_killable +EXPORT_SYMBOL vmlinux 0x5ca3e308 bioset_integrity_create +EXPORT_SYMBOL vmlinux 0x5cb5807d filp_close +EXPORT_SYMBOL vmlinux 0x5cb71219 dmaengine_get_unmap_data +EXPORT_SYMBOL vmlinux 0x5cde3e41 acpi_notifier_call_chain +EXPORT_SYMBOL vmlinux 0x5cde8a58 vlan_for_each EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor EXPORT_SYMBOL vmlinux 0x5cfb26a0 acpi_enter_sleep_state -EXPORT_SYMBOL vmlinux 0x5cfcc4d2 i2c_put_adapter -EXPORT_SYMBOL vmlinux 0x5d0d6c70 pin_user_pages +EXPORT_SYMBOL vmlinux 0x5cfbb9fd ihold +EXPORT_SYMBOL vmlinux 0x5d09a7a5 unregister_filesystem EXPORT_SYMBOL vmlinux 0x5d3bae9c textsearch_prepare -EXPORT_SYMBOL vmlinux 0x5d45c39c get_tree_single_reconf +EXPORT_SYMBOL vmlinux 0x5d426523 unregister_fib_notifier EXPORT_SYMBOL vmlinux 0x5d49aabc init_wait_var_entry -EXPORT_SYMBOL vmlinux 0x5d5473e6 param_ops_ullong -EXPORT_SYMBOL vmlinux 0x5d5c0b7e mmc_detect_card_removed -EXPORT_SYMBOL vmlinux 0x5d7162a0 d_hash_and_lookup -EXPORT_SYMBOL vmlinux 0x5d8d79ae flow_rule_match_ports -EXPORT_SYMBOL vmlinux 0x5d8ef42f page_symlink_inode_operations -EXPORT_SYMBOL vmlinux 0x5d90faab inet6_offloads -EXPORT_SYMBOL vmlinux 0x5da6cbc6 fs_param_is_u64 -EXPORT_SYMBOL vmlinux 0x5daf47a7 cdrom_ioctl -EXPORT_SYMBOL vmlinux 0x5db39d0f block_write_end -EXPORT_SYMBOL vmlinux 0x5db4c930 genphy_resume -EXPORT_SYMBOL vmlinux 0x5dc467bb fget -EXPORT_SYMBOL vmlinux 0x5dc705b6 jbd2_fc_wait_bufs -EXPORT_SYMBOL vmlinux 0x5df2f12e t10_pi_type1_ip +EXPORT_SYMBOL vmlinux 0x5d5ec08b jbd2__journal_restart +EXPORT_SYMBOL vmlinux 0x5d6337b4 sock_recv_errqueue +EXPORT_SYMBOL vmlinux 0x5d7efdb7 scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x5db52392 blk_sync_queue +EXPORT_SYMBOL vmlinux 0x5dcff533 ppp_input +EXPORT_SYMBOL vmlinux 0x5dec39fc netdev_features_change +EXPORT_SYMBOL vmlinux 0x5dee0cab inet_frag_reasm_finish EXPORT_SYMBOL vmlinux 0x5dffb495 ZSTD_decompress_usingDDict -EXPORT_SYMBOL vmlinux 0x5e05300c md_reap_sync_thread -EXPORT_SYMBOL vmlinux 0x5e05c213 phy_validate_pause EXPORT_SYMBOL vmlinux 0x5e06bc5c refcount_dec_and_lock -EXPORT_SYMBOL vmlinux 0x5e08d0b5 unregister_shrinker -EXPORT_SYMBOL vmlinux 0x5e096e3a input_mt_assign_slots -EXPORT_SYMBOL vmlinux 0x5e09a657 notify_change EXPORT_SYMBOL vmlinux 0x5e0ccb9f sha1_transform -EXPORT_SYMBOL vmlinux 0x5e215759 arp_xmit -EXPORT_SYMBOL vmlinux 0x5e298363 skb_copy_header EXPORT_SYMBOL vmlinux 0x5e332b52 __var_waitqueue +EXPORT_SYMBOL vmlinux 0x5e351258 udp_lib_rehash EXPORT_SYMBOL vmlinux 0x5e373fb4 gf128mul_64k_bbe +EXPORT_SYMBOL vmlinux 0x5e4edbdc sk_stream_wait_connect EXPORT_SYMBOL vmlinux 0x5e52fc9a ethtool_frag_size_to_mult -EXPORT_SYMBOL vmlinux 0x5e6b10b8 phy_start_cable_test_tdr -EXPORT_SYMBOL vmlinux 0x5e6b31dc phy_ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0x5e6b68a0 phy_ethtool_set_link_ksettings +EXPORT_SYMBOL vmlinux 0x5e712b6f default_qdisc_ops EXPORT_SYMBOL vmlinux 0x5e855e56 gen_pool_first_fit_align -EXPORT_SYMBOL vmlinux 0x5e8af5c9 zero_fill_bio +EXPORT_SYMBOL vmlinux 0x5e8738d3 vm_map_pages_zero +EXPORT_SYMBOL vmlinux 0x5e8c490f from_kgid_munged EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask +EXPORT_SYMBOL vmlinux 0x5e9a2e34 __cgroup_bpf_run_filter_sock_ops +EXPORT_SYMBOL vmlinux 0x5eaa489b vme_dma_list_add +EXPORT_SYMBOL vmlinux 0x5eb0ca82 register_netdevice_notifier_dev_net EXPORT_SYMBOL vmlinux 0x5eb24829 dm_shift_arg -EXPORT_SYMBOL vmlinux 0x5ebc1a80 devm_rproc_alloc EXPORT_SYMBOL vmlinux 0x5ec4aee6 put_sg_io_hdr EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch +EXPORT_SYMBOL vmlinux 0x5ed2ae9c xfrm_init_state EXPORT_SYMBOL vmlinux 0x5ed90adc int_to_scsilun -EXPORT_SYMBOL vmlinux 0x5ee16721 flow_get_u32_src +EXPORT_SYMBOL vmlinux 0x5eddc846 bio_alloc_bioset EXPORT_SYMBOL vmlinux 0x5ef6a672 gen_pool_for_each_chunk +EXPORT_SYMBOL vmlinux 0x5efc2257 skb_clone +EXPORT_SYMBOL vmlinux 0x5efdab84 bpf_prog_get_type_path EXPORT_SYMBOL vmlinux 0x5efde8e6 proc_doulongvec_ms_jiffies_minmax -EXPORT_SYMBOL vmlinux 0x5efe7172 __d_drop +EXPORT_SYMBOL vmlinux 0x5f08d824 fc_mount EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters -EXPORT_SYMBOL vmlinux 0x5f255ef9 blk_queue_dma_alignment -EXPORT_SYMBOL vmlinux 0x5f2d75ae dev_addr_init -EXPORT_SYMBOL vmlinux 0x5f3e4a35 padata_alloc_shell +EXPORT_SYMBOL vmlinux 0x5f18a864 rproc_put +EXPORT_SYMBOL vmlinux 0x5f2ad215 xfrm_input_register_afinfo +EXPORT_SYMBOL vmlinux 0x5f3f4ce0 mount_nodev EXPORT_SYMBOL vmlinux 0x5f5441c8 __ubsan_handle_alignment_assumption EXPORT_SYMBOL vmlinux 0x5f56663b rdmsrl_on_cpu -EXPORT_SYMBOL vmlinux 0x5f639aab thermal_zone_device_critical +EXPORT_SYMBOL vmlinux 0x5f622608 dev_pm_opp_unregister_notifier +EXPORT_SYMBOL vmlinux 0x5f6a9d15 fs_param_is_fd EXPORT_SYMBOL vmlinux 0x5f6b889c rproc_va_to_pa -EXPORT_SYMBOL vmlinux 0x5f713da0 input_release_device +EXPORT_SYMBOL vmlinux 0x5f789ed5 inode_permission +EXPORT_SYMBOL vmlinux 0x5f7b5003 devfreq_monitor_resume EXPORT_SYMBOL vmlinux 0x5f93525c acpi_extract_package +EXPORT_SYMBOL vmlinux 0x5f9488eb ppp_register_channel EXPORT_SYMBOL vmlinux 0x5f99383a ioread64_hi_lo +EXPORT_SYMBOL vmlinux 0x5fab2915 twl6040_reg_read +EXPORT_SYMBOL vmlinux 0x5fb38ddd nvmem_get_mac_address +EXPORT_SYMBOL vmlinux 0x5fba1e01 end_page_private_2 EXPORT_SYMBOL vmlinux 0x5fc67252 ioread16_rep EXPORT_SYMBOL vmlinux 0x5fc72f0e alloc_pages_exact -EXPORT_SYMBOL vmlinux 0x5fdf7d8a ppp_channel_index +EXPORT_SYMBOL vmlinux 0x5fca726c mipi_dsi_generic_read +EXPORT_SYMBOL vmlinux 0x5fd555b8 devm_mfd_add_devices +EXPORT_SYMBOL vmlinux 0x5fdddfc1 vga_switcheroo_register_client +EXPORT_SYMBOL vmlinux 0x5fe00362 default_llseek EXPORT_SYMBOL vmlinux 0x5fe13529 __SCT__tp_func_spi_transfer_start -EXPORT_SYMBOL vmlinux 0x5feeda2e lock_rename -EXPORT_SYMBOL vmlinux 0x5ff43938 configfs_depend_item +EXPORT_SYMBOL vmlinux 0x5fe9d1fa scsi_eh_restore_cmnd EXPORT_SYMBOL vmlinux 0x5ff9eb0e lockref_mark_dead -EXPORT_SYMBOL vmlinux 0x5ffaee55 scsi_is_sdev_device EXPORT_SYMBOL vmlinux 0x5ffedf63 __nla_put_nohdr -EXPORT_SYMBOL vmlinux 0x5fffac36 __devm_mdiobus_register +EXPORT_SYMBOL vmlinux 0x6002ebe4 i2c_smbus_write_block_data +EXPORT_SYMBOL vmlinux 0x60046b9d csum_and_copy_from_iter EXPORT_SYMBOL vmlinux 0x6005c351 zpool_has_pool EXPORT_SYMBOL vmlinux 0x600683d3 do_unblank_screen -EXPORT_SYMBOL vmlinux 0x6011c5c1 disk_start_io_acct +EXPORT_SYMBOL vmlinux 0x601cc4a0 sock_dequeue_err_skb EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create +EXPORT_SYMBOL vmlinux 0x60272c28 nf_getsockopt EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier -EXPORT_SYMBOL vmlinux 0x60387e82 kthread_create_on_node -EXPORT_SYMBOL vmlinux 0x6056e701 ip_do_fragment +EXPORT_SYMBOL vmlinux 0x604b129a neigh_lookup_nodev +EXPORT_SYMBOL vmlinux 0x604cc779 scsi_host_get +EXPORT_SYMBOL vmlinux 0x6052c34c dma_sync_single_for_cpu EXPORT_SYMBOL vmlinux 0x605790dc fiemap_fill_next_extent -EXPORT_SYMBOL vmlinux 0x606ecac3 tcp_mtu_to_mss +EXPORT_SYMBOL vmlinux 0x6063e252 inet_sendpage +EXPORT_SYMBOL vmlinux 0x606e8430 uart_unregister_driver +EXPORT_SYMBOL vmlinux 0x6077075c iw_handler_get_spy +EXPORT_SYMBOL vmlinux 0x60781b13 input_register_device +EXPORT_SYMBOL vmlinux 0x608308d8 simple_open EXPORT_SYMBOL vmlinux 0x608741b5 __init_swait_queue_head -EXPORT_SYMBOL vmlinux 0x608963db end_buffer_async_write +EXPORT_SYMBOL vmlinux 0x60874f1b input_allocate_device EXPORT_SYMBOL vmlinux 0x6091b333 unregister_chrdev_region -EXPORT_SYMBOL vmlinux 0x6096dc8d xfrm4_rcv -EXPORT_SYMBOL vmlinux 0x60973250 netdev_set_tc_queue +EXPORT_SYMBOL vmlinux 0x609506e8 mipi_dsi_dcs_set_display_off EXPORT_SYMBOL vmlinux 0x609bcd98 in6_pton EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net +EXPORT_SYMBOL vmlinux 0x60a2f746 dev_addr_del EXPORT_SYMBOL vmlinux 0x60a32ea9 pm_power_off -EXPORT_SYMBOL vmlinux 0x60a9a940 jbd2_journal_unlock_updates EXPORT_SYMBOL vmlinux 0x60b3071f neigh_proc_dointvec -EXPORT_SYMBOL vmlinux 0x60bce566 set_pages_wb -EXPORT_SYMBOL vmlinux 0x60c55e13 dcb_ieee_delapp -EXPORT_SYMBOL vmlinux 0x60ce4dd4 watchdog_unregister_governor +EXPORT_SYMBOL vmlinux 0x60c1ce2f tty_port_carrier_raised +EXPORT_SYMBOL vmlinux 0x60c37849 ilookup5_nowait +EXPORT_SYMBOL vmlinux 0x60d30fdf set_pages_array_wc EXPORT_SYMBOL vmlinux 0x60d8ab30 vme_lm_get -EXPORT_SYMBOL vmlinux 0x60ee5add nf_log_bind_pf +EXPORT_SYMBOL vmlinux 0x60ee9938 nd_dev_to_uuid +EXPORT_SYMBOL vmlinux 0x60f64c0d kmem_cache_alloc_trace EXPORT_SYMBOL vmlinux 0x61073e4a acpi_os_map_generic_address +EXPORT_SYMBOL vmlinux 0x610dd8d2 phy_write_mmd +EXPORT_SYMBOL vmlinux 0x6117777e kernel_getsockname +EXPORT_SYMBOL vmlinux 0x611aa4cb netif_device_detach EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit -EXPORT_SYMBOL vmlinux 0x6132f0c0 tcp_sock_set_keepidle -EXPORT_SYMBOL vmlinux 0x6144ab41 vfs_parse_fs_param -EXPORT_SYMBOL vmlinux 0x614c60ff xfrm_find_acq_byseq +EXPORT_SYMBOL vmlinux 0x61484d73 pnp_unregister_driver +EXPORT_SYMBOL vmlinux 0x614d1e5d pci_restore_state EXPORT_SYMBOL vmlinux 0x615911d7 __bitmap_set -EXPORT_SYMBOL vmlinux 0x6166d715 ipv6_find_hdr +EXPORT_SYMBOL vmlinux 0x6163530c mipi_dsi_dcs_read EXPORT_SYMBOL vmlinux 0x6167e72c vmalloc_no_huge -EXPORT_SYMBOL vmlinux 0x6177e9bb register_fib_notifier +EXPORT_SYMBOL vmlinux 0x61745b97 pci_get_class 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 0x618aac7f tcp_syn_ack_timeout -EXPORT_SYMBOL vmlinux 0x619bed90 unregister_nexthop_notifier +EXPORT_SYMBOL vmlinux 0x619685f2 jbd2_journal_init_jbd_inode EXPORT_SYMBOL vmlinux 0x619cb7dd simple_read_from_buffer EXPORT_SYMBOL vmlinux 0x619dfcdc intel_scu_ipc_dev_readv -EXPORT_SYMBOL vmlinux 0x619f51c1 filemap_fdatawait_range_keep_errors EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull -EXPORT_SYMBOL vmlinux 0x61c20fb1 xfrm6_protocol_deregister -EXPORT_SYMBOL vmlinux 0x61cbe14e kmem_cache_alloc_node_trace -EXPORT_SYMBOL vmlinux 0x61d24400 cookie_timestamp_decode -EXPORT_SYMBOL vmlinux 0x61d93ade module_put -EXPORT_SYMBOL vmlinux 0x61dfc520 clk_bulk_get +EXPORT_SYMBOL vmlinux 0x61d2fc8e xfrm_policy_register_afinfo +EXPORT_SYMBOL vmlinux 0x61e1fa2d inet_accept EXPORT_SYMBOL vmlinux 0x61e272c9 sha256_final +EXPORT_SYMBOL vmlinux 0x61e29d5e md_bitmap_cond_end_sync +EXPORT_SYMBOL vmlinux 0x61e7735c mr_vif_seq_next EXPORT_SYMBOL vmlinux 0x61ea189b fb_pad_aligned_buffer -EXPORT_SYMBOL vmlinux 0x61f462f2 vfs_getattr_nosec -EXPORT_SYMBOL vmlinux 0x61f81570 inet_frags_fini -EXPORT_SYMBOL vmlinux 0x62049297 tty_do_resize -EXPORT_SYMBOL vmlinux 0x6211f1f0 fifo_set_limit +EXPORT_SYMBOL vmlinux 0x61f1143f netif_carrier_off +EXPORT_SYMBOL vmlinux 0x61fd373a udp_lib_get_port +EXPORT_SYMBOL vmlinux 0x6208cf07 pci_scan_single_device EXPORT_SYMBOL vmlinux 0x6214aef2 cpufreq_unregister_notifier -EXPORT_SYMBOL vmlinux 0x621f664f kernel_sendpage +EXPORT_SYMBOL vmlinux 0x62221ddc crypto_sha512_finup +EXPORT_SYMBOL vmlinux 0x6225a11a cdev_alloc EXPORT_SYMBOL vmlinux 0x6226b9fa machine_to_phys_mapping EXPORT_SYMBOL vmlinux 0x6228c21f smp_call_function_single -EXPORT_SYMBOL vmlinux 0x6236ab1a devm_clk_release_clkdev -EXPORT_SYMBOL vmlinux 0x6256621b write_cache_pages +EXPORT_SYMBOL vmlinux 0x62336271 release_pages +EXPORT_SYMBOL vmlinux 0x623e72c1 register_filesystem +EXPORT_SYMBOL vmlinux 0x6247052d unregister_mii_timestamper +EXPORT_SYMBOL vmlinux 0x62582ba4 __generic_file_fsync EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister +EXPORT_SYMBOL vmlinux 0x6273e9c6 tcf_register_action EXPORT_SYMBOL vmlinux 0x62849ac7 dev_valid_name +EXPORT_SYMBOL vmlinux 0x628db51a mmc_release_host EXPORT_SYMBOL vmlinux 0x629079b3 dma_fence_signal_timestamp EXPORT_SYMBOL vmlinux 0x62949074 acpi_buffer_to_resource -EXPORT_SYMBOL vmlinux 0x62adc6df jbd2_transaction_committed -EXPORT_SYMBOL vmlinux 0x62b3bf63 inet6_csk_route_req +EXPORT_SYMBOL vmlinux 0x6294e4f8 pci_dev_get EXPORT_SYMBOL vmlinux 0x62bf6edf utf8agemin -EXPORT_SYMBOL vmlinux 0x62c74c14 skb_copy_and_csum_bits -EXPORT_SYMBOL vmlinux 0x62ca7107 xfrm_trans_queue -EXPORT_SYMBOL vmlinux 0x62f4ab22 devm_devfreq_register_opp_notifier -EXPORT_SYMBOL vmlinux 0x62f5858f agp_generic_alloc_user +EXPORT_SYMBOL vmlinux 0x62c896f6 gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0x62d06912 security_inode_invalidate_secctx +EXPORT_SYMBOL vmlinux 0x62d9cafa get_phy_device +EXPORT_SYMBOL vmlinux 0x62da637b vme_irq_request EXPORT_SYMBOL vmlinux 0x62f7e207 down_read_killable -EXPORT_SYMBOL vmlinux 0x630f8a2b timestamp_truncate +EXPORT_SYMBOL vmlinux 0x6300b6a7 phy_connect +EXPORT_SYMBOL vmlinux 0x630686fd dm_put_device +EXPORT_SYMBOL vmlinux 0x6314d1db finalize_exec EXPORT_SYMBOL vmlinux 0x63187451 pcie_aspm_support_enabled EXPORT_SYMBOL vmlinux 0x631d06aa cpu_rmap_put -EXPORT_SYMBOL vmlinux 0x631eeb08 dev_get_by_napi_id -EXPORT_SYMBOL vmlinux 0x6332cc3b pneigh_enqueue -EXPORT_SYMBOL vmlinux 0x6336d0d4 __skb_vlan_pop -EXPORT_SYMBOL vmlinux 0x63408dfb mmc_is_req_done +EXPORT_SYMBOL vmlinux 0x632313e5 seq_pad +EXPORT_SYMBOL vmlinux 0x6323b2ec mmc_card_alternative_gpt_sector +EXPORT_SYMBOL vmlinux 0x6337995c pldmfw_flash_image +EXPORT_SYMBOL vmlinux 0x633ad945 skb_flow_dissect_hash +EXPORT_SYMBOL vmlinux 0x633e6174 generic_fillattr +EXPORT_SYMBOL vmlinux 0x633eefa3 blk_mq_init_allocated_queue +EXPORT_SYMBOL vmlinux 0x6344c252 register_cdrom EXPORT_SYMBOL vmlinux 0x636257f7 get_ibs_caps +EXPORT_SYMBOL vmlinux 0x637649bb tcp_setsockopt +EXPORT_SYMBOL vmlinux 0x637ad6f2 sock_queue_err_skb EXPORT_SYMBOL vmlinux 0x6383b27c __x86_indirect_thunk_rdx -EXPORT_SYMBOL vmlinux 0x638a52d3 input_set_min_poll_interval +EXPORT_SYMBOL vmlinux 0x63880947 tcf_qevent_dump EXPORT_SYMBOL vmlinux 0x63a58370 flow_action_cookie_destroy EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region +EXPORT_SYMBOL vmlinux 0x63b19c6d sock_pfree +EXPORT_SYMBOL vmlinux 0x63bce454 is_subdir EXPORT_SYMBOL vmlinux 0x63c4d61f __bitmap_weight +EXPORT_SYMBOL vmlinux 0x63e767a9 pci_request_region EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink -EXPORT_SYMBOL vmlinux 0x63f39dc5 sock_no_mmap EXPORT_SYMBOL vmlinux 0x63f835ba on_each_cpu_cond_mask +EXPORT_SYMBOL vmlinux 0x6401fb91 agp_generic_type_to_mask_type EXPORT_SYMBOL vmlinux 0x6405dcd3 slhc_toss -EXPORT_SYMBOL vmlinux 0x640e3d8b mpage_writepage +EXPORT_SYMBOL vmlinux 0x640f2d7d vmalloc_to_page EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off -EXPORT_SYMBOL vmlinux 0x6420fc98 __dev_get_by_index -EXPORT_SYMBOL vmlinux 0x64290869 balance_dirty_pages_ratelimited EXPORT_SYMBOL vmlinux 0x642eb5c6 xen_poll_irq_timeout -EXPORT_SYMBOL vmlinux 0x64390221 skb_dequeue -EXPORT_SYMBOL vmlinux 0x644a5dee inet_twsk_deschedule_put -EXPORT_SYMBOL vmlinux 0x6456e38c __dev_kfree_skb_irq -EXPORT_SYMBOL vmlinux 0x646b5678 jbd2_journal_release_jbd_inode -EXPORT_SYMBOL vmlinux 0x646c4387 xfrm_register_type -EXPORT_SYMBOL vmlinux 0x646ddd7c reuseport_detach_prog -EXPORT_SYMBOL vmlinux 0x6478b740 flow_rule_match_ct +EXPORT_SYMBOL vmlinux 0x644ee7cd input_match_device_id +EXPORT_SYMBOL vmlinux 0x6456f7a9 tcp_md5_hash_key EXPORT_SYMBOL vmlinux 0x6481ffe0 hsiphash_1u32 +EXPORT_SYMBOL vmlinux 0x648c8ea9 vfs_statfs EXPORT_SYMBOL vmlinux 0x648eb59d gc_inflight_list EXPORT_SYMBOL vmlinux 0x64999478 congestion_wait EXPORT_SYMBOL vmlinux 0x64a9c928 default_blu +EXPORT_SYMBOL vmlinux 0x64b501b1 netlink_ns_capable EXPORT_SYMBOL vmlinux 0x64bbc288 string_unescape -EXPORT_SYMBOL vmlinux 0x64cd4a41 sock_setsockopt -EXPORT_SYMBOL vmlinux 0x64e38213 dev_getfirstbyhwtype -EXPORT_SYMBOL vmlinux 0x64e4f9ea file_check_and_advance_wb_err -EXPORT_SYMBOL vmlinux 0x64ece22f reuseport_detach_sock -EXPORT_SYMBOL vmlinux 0x650884fc __tracepoint_module_get EXPORT_SYMBOL vmlinux 0x6513a3fa fb_get_color_depth -EXPORT_SYMBOL vmlinux 0x6514ee9f pm860x_bulk_read +EXPORT_SYMBOL vmlinux 0x6514c1e6 flow_get_u32_src EXPORT_SYMBOL vmlinux 0x651a4139 test_taint +EXPORT_SYMBOL vmlinux 0x651b01ce pci_iomap +EXPORT_SYMBOL vmlinux 0x651b69c5 pci_request_selected_regions_exclusive +EXPORT_SYMBOL vmlinux 0x651f821b reuseport_alloc EXPORT_SYMBOL vmlinux 0x652032cb mac_pton +EXPORT_SYMBOL vmlinux 0x6528fcbf registered_fb EXPORT_SYMBOL vmlinux 0x652ce9aa nla_memcmp -EXPORT_SYMBOL vmlinux 0x6538628c read_cache_page_gfp +EXPORT_SYMBOL vmlinux 0x653010d4 km_query EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob EXPORT_SYMBOL vmlinux 0x65464c16 clkdev_drop EXPORT_SYMBOL vmlinux 0x65487097 __x86_indirect_thunk_rax -EXPORT_SYMBOL vmlinux 0x655c85c2 bio_add_pc_page EXPORT_SYMBOL vmlinux 0x656c1a0e string_escape_mem EXPORT_SYMBOL vmlinux 0x656e4a6e snprintf +EXPORT_SYMBOL vmlinux 0x65882a24 generic_file_llseek EXPORT_SYMBOL vmlinux 0x658ce1a8 xxh64_reset +EXPORT_SYMBOL vmlinux 0x65912b4f uart_remove_one_port EXPORT_SYMBOL vmlinux 0x659ded26 xfrm_flush_gc -EXPORT_SYMBOL vmlinux 0x65a2e1fc igrab -EXPORT_SYMBOL vmlinux 0x65a437d7 inet_frag_queue_insert -EXPORT_SYMBOL vmlinux 0x65aed350 generic_error_remove_page -EXPORT_SYMBOL vmlinux 0x65b07c51 pci_find_capability EXPORT_SYMBOL vmlinux 0x65b992ac xen_alloc_p2m_entry -EXPORT_SYMBOL vmlinux 0x65cd470e generic_key_instantiate +EXPORT_SYMBOL vmlinux 0x65bf1879 rproc_free +EXPORT_SYMBOL vmlinux 0x65cd1c03 invalidate_bdev EXPORT_SYMBOL vmlinux 0x65cf8831 ZSTD_decompress_usingDict EXPORT_SYMBOL vmlinux 0x65d1bab2 acpi_bios_warning +EXPORT_SYMBOL vmlinux 0x65d38c63 __genphy_config_aneg EXPORT_SYMBOL vmlinux 0x65d9e877 cpufreq_register_notifier EXPORT_SYMBOL vmlinux 0x65dccf13 xz_dec_end +EXPORT_SYMBOL vmlinux 0x65dd06c6 __kfree_skb EXPORT_SYMBOL vmlinux 0x65df35ca __put_user_nocheck_2 EXPORT_SYMBOL vmlinux 0x65e0d6d7 memory_read_from_buffer -EXPORT_SYMBOL vmlinux 0x65e37be7 shrink_dcache_parent -EXPORT_SYMBOL vmlinux 0x65ef48bd ptp_cancel_worker_sync -EXPORT_SYMBOL vmlinux 0x65f4b096 sync_filesystem -EXPORT_SYMBOL vmlinux 0x661e3c26 acpi_bus_unregister_driver -EXPORT_SYMBOL vmlinux 0x662643ba pci_disable_link_state_locked +EXPORT_SYMBOL vmlinux 0x65e6fdd9 input_unregister_device +EXPORT_SYMBOL vmlinux 0x660062ce tc_setup_cb_replace +EXPORT_SYMBOL vmlinux 0x66045c25 fwnode_mdiobus_register_phy +EXPORT_SYMBOL vmlinux 0x661192be generic_delete_inode EXPORT_SYMBOL vmlinux 0x6626afca down +EXPORT_SYMBOL vmlinux 0x662fbe34 kernel_param_lock +EXPORT_SYMBOL vmlinux 0x663033de udp_lib_getsockopt EXPORT_SYMBOL vmlinux 0x663182c9 acpi_get_gpe_status -EXPORT_SYMBOL vmlinux 0x663c670c dev_remove_offload +EXPORT_SYMBOL vmlinux 0x6647a148 i2c_register_driver EXPORT_SYMBOL vmlinux 0x66628bf3 ip_tunnel_metadata_cnt -EXPORT_SYMBOL vmlinux 0x667253c6 vga_switcheroo_fini_domain_pm_ops +EXPORT_SYMBOL vmlinux 0x666877b0 __dec_zone_page_state +EXPORT_SYMBOL vmlinux 0x6673487e __inode_sub_bytes EXPORT_SYMBOL vmlinux 0x6673f96d xxh32_reset -EXPORT_SYMBOL vmlinux 0x667e709b migrate_vma_setup EXPORT_SYMBOL vmlinux 0x668b19a1 down_read -EXPORT_SYMBOL vmlinux 0x668f50d4 crypto_sha256_finup -EXPORT_SYMBOL vmlinux 0x669aabed proc_mkdir_mode +EXPORT_SYMBOL vmlinux 0x66a5a3a0 sock_from_file EXPORT_SYMBOL vmlinux 0x66af1fd1 lockref_put_or_lock +EXPORT_SYMBOL vmlinux 0x66b01bc6 __cpuhp_setup_state +EXPORT_SYMBOL vmlinux 0x66b212ec gro_cells_receive EXPORT_SYMBOL vmlinux 0x66b4cc41 kmemdup +EXPORT_SYMBOL vmlinux 0x66bb6212 xfrm_policy_walk +EXPORT_SYMBOL vmlinux 0x66c4875a current_task EXPORT_SYMBOL vmlinux 0x66cca4f9 __x86_indirect_thunk_rcx -EXPORT_SYMBOL vmlinux 0x66e4a057 truncate_inode_pages_final -EXPORT_SYMBOL vmlinux 0x66f9b216 sk_stream_error +EXPORT_SYMBOL vmlinux 0x66df132f inet_getname +EXPORT_SYMBOL vmlinux 0x66f25753 scsi_is_sdev_device +EXPORT_SYMBOL vmlinux 0x67024074 update_region EXPORT_SYMBOL vmlinux 0x670ecece __x86_indirect_thunk_rbx -EXPORT_SYMBOL vmlinux 0x671b4d84 bio_copy_data -EXPORT_SYMBOL vmlinux 0x671dd03e flow_rule_match_enc_keyid -EXPORT_SYMBOL vmlinux 0x6721eda0 mnt_drop_write_file +EXPORT_SYMBOL vmlinux 0x671a613f netdev_upper_dev_link +EXPORT_SYMBOL vmlinux 0x671c1866 vfs_get_fsid EXPORT_SYMBOL vmlinux 0x6721fc7c security_cred_getsecid +EXPORT_SYMBOL vmlinux 0x6727ce66 phy_attach EXPORT_SYMBOL vmlinux 0x6729d3df __get_user_4 -EXPORT_SYMBOL vmlinux 0x672c3987 cookie_ecn_ok -EXPORT_SYMBOL vmlinux 0x67323723 pci_ep_cfs_add_epf_group -EXPORT_SYMBOL vmlinux 0x67386670 pnp_possible_config +EXPORT_SYMBOL vmlinux 0x672ff5dd zpool_register_driver EXPORT_SYMBOL vmlinux 0x673f815e agp_bridges -EXPORT_SYMBOL vmlinux 0x6743004f dev_disable_lro +EXPORT_SYMBOL vmlinux 0x67468c40 __set_page_dirty_nobuffers +EXPORT_SYMBOL vmlinux 0x67497aee nd_dax_probe EXPORT_SYMBOL vmlinux 0x6749d53f hdmi_vendor_infoframe_init -EXPORT_SYMBOL vmlinux 0x674be70c padata_free_shell +EXPORT_SYMBOL vmlinux 0x67513ede pci_save_state EXPORT_SYMBOL vmlinux 0x676a14c6 convert_tsc_ns_to_art_duration -EXPORT_SYMBOL vmlinux 0x6783e8b0 sk_free -EXPORT_SYMBOL vmlinux 0x678a193e pci_bus_write_config_byte +EXPORT_SYMBOL vmlinux 0x6777b320 blk_set_runtime_active EXPORT_SYMBOL vmlinux 0x678b96ec dma_pool_alloc EXPORT_SYMBOL vmlinux 0x67a3757e flow_block_cb_is_busy -EXPORT_SYMBOL vmlinux 0x67a7fbba get_bitmap_from_slot -EXPORT_SYMBOL vmlinux 0x67b2134d __alloc_disk_node +EXPORT_SYMBOL vmlinux 0x67a41ffa poll_freewait +EXPORT_SYMBOL vmlinux 0x67a5e6db remove_arg_zero EXPORT_SYMBOL vmlinux 0x67b27ec1 tty_std_termios -EXPORT_SYMBOL vmlinux 0x67b74d5f skb_copy_and_csum_dev EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu EXPORT_SYMBOL vmlinux 0x67c13ea0 acpi_read -EXPORT_SYMBOL vmlinux 0x67e72745 drop_super_exclusive -EXPORT_SYMBOL vmlinux 0x67ea6519 skb_copy_datagram_iter -EXPORT_SYMBOL vmlinux 0x67f487ff __sk_queue_drop_skb -EXPORT_SYMBOL vmlinux 0x67f78f59 i2c_smbus_write_block_data +EXPORT_SYMBOL vmlinux 0x67efee1d xfrm_policy_delete +EXPORT_SYMBOL vmlinux 0x67f8bc00 bio_copy_data +EXPORT_SYMBOL vmlinux 0x6811fa5e processors +EXPORT_SYMBOL vmlinux 0x6819c245 param_ops_string EXPORT_SYMBOL vmlinux 0x681b6670 is_firmware_framebuffer -EXPORT_SYMBOL vmlinux 0x681f8f11 validate_slab_cache -EXPORT_SYMBOL vmlinux 0x6823280a dm_kcopyd_copy -EXPORT_SYMBOL vmlinux 0x682d54a2 inode_owner_or_capable -EXPORT_SYMBOL vmlinux 0x683425e4 dquot_initialize -EXPORT_SYMBOL vmlinux 0x68382f83 pci_biosrom_size +EXPORT_SYMBOL vmlinux 0x681f23e0 mark_page_accessed +EXPORT_SYMBOL vmlinux 0x68363b77 dev_pick_tx_cpu_id EXPORT_SYMBOL vmlinux 0x683a9560 __gnet_stats_copy_basic -EXPORT_SYMBOL vmlinux 0x683dfc0e trace_event_printf +EXPORT_SYMBOL vmlinux 0x684882ad bio_devname +EXPORT_SYMBOL vmlinux 0x684ec6d4 devfreq_register_opp_notifier EXPORT_SYMBOL vmlinux 0x6851664e wrmsrl_safe_on_cpu -EXPORT_SYMBOL vmlinux 0x6863f7c7 sock_rfree -EXPORT_SYMBOL vmlinux 0x6865d40b input_free_device +EXPORT_SYMBOL vmlinux 0x6855949f __frontswap_test +EXPORT_SYMBOL vmlinux 0x685f779d lru_cache_add EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval -EXPORT_SYMBOL vmlinux 0x6885fb72 vme_bus_error_handler -EXPORT_SYMBOL vmlinux 0x68c1d5e6 hdmi_infoframe_log -EXPORT_SYMBOL vmlinux 0x68c28e40 bio_advance +EXPORT_SYMBOL vmlinux 0x689284f0 phy_start_cable_test_tdr +EXPORT_SYMBOL vmlinux 0x689a02d3 ip_mc_leave_group +EXPORT_SYMBOL vmlinux 0x689d1e9d netif_tx_stop_all_queues EXPORT_SYMBOL vmlinux 0x68c4b824 cpumask_any_but -EXPORT_SYMBOL vmlinux 0x68ef40e8 proc_create +EXPORT_SYMBOL vmlinux 0x68dd1379 security_sk_classify_flow +EXPORT_SYMBOL vmlinux 0x68e443cc netpoll_send_udp EXPORT_SYMBOL vmlinux 0x68fb581a icst307_idx2s EXPORT_SYMBOL vmlinux 0x69049cd2 radix_tree_replace_slot +EXPORT_SYMBOL vmlinux 0x6909f5c5 put_devmap_managed_page EXPORT_SYMBOL vmlinux 0x6917a77e __traceiter_kmem_cache_free -EXPORT_SYMBOL vmlinux 0x693cdf33 vm_iomap_memory -EXPORT_SYMBOL vmlinux 0x694f838a tcf_get_next_proto -EXPORT_SYMBOL vmlinux 0x69570484 __skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x691a1b02 block_write_full_page +EXPORT_SYMBOL vmlinux 0x692926b8 generic_write_end +EXPORT_SYMBOL vmlinux 0x6933e8ad skb_copy_and_hash_datagram_iter +EXPORT_SYMBOL vmlinux 0x69443c32 dev_get_port_parent_id EXPORT_SYMBOL vmlinux 0x69585523 __ksize -EXPORT_SYMBOL vmlinux 0x69590378 serial8250_do_set_termios EXPORT_SYMBOL vmlinux 0x69668826 netdev_increment_features EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days -EXPORT_SYMBOL vmlinux 0x6975e451 vlan_vid_add EXPORT_SYMBOL vmlinux 0x697ed5f0 memcpy_and_pad EXPORT_SYMBOL vmlinux 0x6988d0ca cpu_dr7 -EXPORT_SYMBOL vmlinux 0x69a8801f iput -EXPORT_SYMBOL vmlinux 0x69aa6343 agp_find_bridge EXPORT_SYMBOL vmlinux 0x69acdf38 memcpy -EXPORT_SYMBOL vmlinux 0x69b88bd2 vfs_iter_read -EXPORT_SYMBOL vmlinux 0x69c92d3f inet_sk_rebuild_header EXPORT_SYMBOL vmlinux 0x69d53cbc posix_acl_from_xattr -EXPORT_SYMBOL vmlinux 0x69dbb632 pci_write_vpd EXPORT_SYMBOL vmlinux 0x69dd3b5b crc32_le EXPORT_SYMBOL vmlinux 0x69de8757 vme_check_window -EXPORT_SYMBOL vmlinux 0x69e63c05 kthread_blkcg +EXPORT_SYMBOL vmlinux 0x69f82cad proto_unregister EXPORT_SYMBOL vmlinux 0x6a03751f sgl_free_order EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree -EXPORT_SYMBOL vmlinux 0x6a102001 __inode_add_bytes -EXPORT_SYMBOL vmlinux 0x6a1b4a90 request_partial_firmware_into_buf +EXPORT_SYMBOL vmlinux 0x6a0cf4f3 dm_table_get_md EXPORT_SYMBOL vmlinux 0x6a261b78 irq_stat -EXPORT_SYMBOL vmlinux 0x6a39802c mdio_device_free +EXPORT_SYMBOL vmlinux 0x6a35a203 pcie_capability_clear_and_set_dword EXPORT_SYMBOL vmlinux 0x6a449c4f register_sysctl_table -EXPORT_SYMBOL vmlinux 0x6a4c9693 d_genocide +EXPORT_SYMBOL vmlinux 0x6a5378fc phy_loopback EXPORT_SYMBOL vmlinux 0x6a5cb5ee __get_free_pages EXPORT_SYMBOL vmlinux 0x6a5ecb18 unregister_module_notifier EXPORT_SYMBOL vmlinux 0x6a5fa363 sigprocmask -EXPORT_SYMBOL vmlinux 0x6a635ae0 finish_swait -EXPORT_SYMBOL vmlinux 0x6a6769c8 mem_cgroup_from_task -EXPORT_SYMBOL vmlinux 0x6a67cca6 shrink_dcache_sb EXPORT_SYMBOL vmlinux 0x6a6e05bf kstrtou8 -EXPORT_SYMBOL vmlinux 0x6a727642 md_flush_request -EXPORT_SYMBOL vmlinux 0x6a764c45 forget_all_cached_acls -EXPORT_SYMBOL vmlinux 0x6a79b9a5 con_copy_unimap -EXPORT_SYMBOL vmlinux 0x6a90db8a skb_dequeue_tail +EXPORT_SYMBOL vmlinux 0x6a7e78e4 vlan_vid_add +EXPORT_SYMBOL vmlinux 0x6a8601ba vm_insert_page +EXPORT_SYMBOL vmlinux 0x6a9853b2 tcf_block_get_ext EXPORT_SYMBOL vmlinux 0x6aa11aa6 sgl_free_n_order EXPORT_SYMBOL vmlinux 0x6aa8cddf config_item_set_name -EXPORT_SYMBOL vmlinux 0x6aac3e5c agp_backend_release -EXPORT_SYMBOL vmlinux 0x6ab20a89 set_anon_super_fc -EXPORT_SYMBOL vmlinux 0x6ac313f0 input_mt_get_slot_by_key -EXPORT_SYMBOL vmlinux 0x6ac89251 phy_connect_direct -EXPORT_SYMBOL vmlinux 0x6ad5f3cb path_has_submounts +EXPORT_SYMBOL vmlinux 0x6ab8cb6b set_bdi_congested EXPORT_SYMBOL vmlinux 0x6add5c9a dmi_find_device -EXPORT_SYMBOL vmlinux 0x6ae70eaa kill_litter_super EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset -EXPORT_SYMBOL vmlinux 0x6b074344 no_seek_end_llseek_size +EXPORT_SYMBOL vmlinux 0x6af62101 inet6_getname +EXPORT_SYMBOL vmlinux 0x6afa2041 netdev_lower_get_first_private_rcu EXPORT_SYMBOL vmlinux 0x6b10bee1 _copy_to_user -EXPORT_SYMBOL vmlinux 0x6b18f49a seg6_hmac_validate_skb EXPORT_SYMBOL vmlinux 0x6b27729b radix_tree_gang_lookup EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack -EXPORT_SYMBOL vmlinux 0x6b345af6 get_tree_nodev -EXPORT_SYMBOL vmlinux 0x6b3afe76 fb_pan_display -EXPORT_SYMBOL vmlinux 0x6b3e458b vme_dma_list_free +EXPORT_SYMBOL vmlinux 0x6b4a44c0 dump_emit +EXPORT_SYMBOL vmlinux 0x6b4fbcab xfrm_state_alloc EXPORT_SYMBOL vmlinux 0x6b55acd0 rtnl_lock_killable -EXPORT_SYMBOL vmlinux 0x6b597374 netdev_lower_dev_get_private +EXPORT_SYMBOL vmlinux 0x6b695cf1 zen_untrain_ret EXPORT_SYMBOL vmlinux 0x6b853d06 ns_to_kernel_old_timeval +EXPORT_SYMBOL vmlinux 0x6b877a0e build_skb_around +EXPORT_SYMBOL vmlinux 0x6b8b8796 xfrm_input_unregister_afinfo EXPORT_SYMBOL vmlinux 0x6b8bf149 netif_receive_skb_list EXPORT_SYMBOL vmlinux 0x6b9d1c95 security_req_classify_flow -EXPORT_SYMBOL vmlinux 0x6ba32877 fib6_info_hw_flags_set -EXPORT_SYMBOL vmlinux 0x6badbf7b __xfrm_decode_session -EXPORT_SYMBOL vmlinux 0x6badce97 generic_ro_fops +EXPORT_SYMBOL vmlinux 0x6ba284f3 blk_get_queue +EXPORT_SYMBOL vmlinux 0x6ba9aa60 tcp_v4_mtu_reduced EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev -EXPORT_SYMBOL vmlinux 0x6bcb013d __cleancache_init_shared_fs EXPORT_SYMBOL vmlinux 0x6bd0e573 down_interruptible -EXPORT_SYMBOL vmlinux 0x6bd322d4 vm_insert_pages -EXPORT_SYMBOL vmlinux 0x6bdf86d8 __dst_destroy_metrics_generic +EXPORT_SYMBOL vmlinux 0x6bd7ddc4 dev_uc_add_excl +EXPORT_SYMBOL vmlinux 0x6bde40ef serio_rescan +EXPORT_SYMBOL vmlinux 0x6be13dc1 tcf_idr_cleanup EXPORT_SYMBOL vmlinux 0x6be1c1f8 acpi_install_method -EXPORT_SYMBOL vmlinux 0x6bf204df pskb_extract -EXPORT_SYMBOL vmlinux 0x6bfe419c tcf_qevent_dump -EXPORT_SYMBOL vmlinux 0x6c05d93c generic_block_bmap -EXPORT_SYMBOL vmlinux 0x6c224abe alloc_skb_with_frags +EXPORT_SYMBOL vmlinux 0x6bec8a07 mmc_is_req_done +EXPORT_SYMBOL vmlinux 0x6bf2318a sk_ns_capable +EXPORT_SYMBOL vmlinux 0x6c01cbb6 max8925_bulk_read +EXPORT_SYMBOL vmlinux 0x6c074bca proc_remove +EXPORT_SYMBOL vmlinux 0x6c0ccc71 __cleancache_invalidate_inode +EXPORT_SYMBOL vmlinux 0x6c2135a2 tcf_block_netif_keep_dst +EXPORT_SYMBOL vmlinux 0x6c214f31 linkwatch_fire_event EXPORT_SYMBOL vmlinux 0x6c224cda gen_pool_destroy EXPORT_SYMBOL vmlinux 0x6c257ac0 tty_termios_hw_change EXPORT_SYMBOL vmlinux 0x6c28be5a vfio_info_add_capability -EXPORT_SYMBOL vmlinux 0x6c366707 fwnode_irq_get -EXPORT_SYMBOL vmlinux 0x6c5c6517 request_key_with_auxdata +EXPORT_SYMBOL vmlinux 0x6c4b59cb md_finish_reshape EXPORT_SYMBOL vmlinux 0x6c5dae23 scsi_kmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x6c6029c1 security_socket_getpeersec_dgram EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb -EXPORT_SYMBOL vmlinux 0x6c96dc8d vga_switcheroo_client_fb_set -EXPORT_SYMBOL vmlinux 0x6cae3cfa cpufreq_get_policy +EXPORT_SYMBOL vmlinux 0x6c683eac unlock_new_inode +EXPORT_SYMBOL vmlinux 0x6c7b21d4 d_delete +EXPORT_SYMBOL vmlinux 0x6c8d14cc genl_unregister_family +EXPORT_SYMBOL vmlinux 0x6ca600da skb_copy_expand +EXPORT_SYMBOL vmlinux 0x6cb1f5d0 dquot_scan_active EXPORT_SYMBOL vmlinux 0x6cb2f5a1 cpumask_next_and EXPORT_SYMBOL vmlinux 0x6cb46525 netlbl_catmap_walk -EXPORT_SYMBOL vmlinux 0x6cbb21f5 free_buffer_head EXPORT_SYMBOL vmlinux 0x6cc09945 ioread32_rep -EXPORT_SYMBOL vmlinux 0x6cd3b733 mipi_dsi_dcs_set_display_on -EXPORT_SYMBOL vmlinux 0x6cd9b5c7 tcf_unregister_action -EXPORT_SYMBOL vmlinux 0x6ce8aa3e input_mt_drop_unused -EXPORT_SYMBOL vmlinux 0x6ceb779d devfreq_update_interval -EXPORT_SYMBOL vmlinux 0x6d048e38 __netif_schedule -EXPORT_SYMBOL vmlinux 0x6d069a3e eisa_driver_unregister +EXPORT_SYMBOL vmlinux 0x6cc62328 start_tty +EXPORT_SYMBOL vmlinux 0x6ccf02d3 rproc_get_by_child +EXPORT_SYMBOL vmlinux 0x6cdf4b4b rt_mutex_base_init +EXPORT_SYMBOL vmlinux 0x6cf2ab5e napi_enable +EXPORT_SYMBOL vmlinux 0x6cf4f3a9 md_wait_for_blocked_rdev +EXPORT_SYMBOL vmlinux 0x6d024f99 kmem_cache_alloc_node EXPORT_SYMBOL vmlinux 0x6d16c104 mutex_lock_killable +EXPORT_SYMBOL vmlinux 0x6d1ebb98 key_reject_and_link +EXPORT_SYMBOL vmlinux 0x6d2351bb __traceiter_spi_transfer_stop +EXPORT_SYMBOL vmlinux 0x6d240cbe param_ops_ushort +EXPORT_SYMBOL vmlinux 0x6d241a66 always_delete_dentry EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies EXPORT_SYMBOL vmlinux 0x6d334118 __get_user_8 EXPORT_SYMBOL vmlinux 0x6d340f64 tty_termios_input_baud_rate -EXPORT_SYMBOL vmlinux 0x6d358a9c blk_queue_max_write_same_sectors -EXPORT_SYMBOL vmlinux 0x6d363d4a free_xenballooned_pages -EXPORT_SYMBOL vmlinux 0x6d37e101 netpoll_print_options -EXPORT_SYMBOL vmlinux 0x6d400c45 vga_remove_vgacon EXPORT_SYMBOL vmlinux 0x6d58f69e agp3_generic_sizes -EXPORT_SYMBOL vmlinux 0x6d592932 blk_queue_logical_block_size EXPORT_SYMBOL vmlinux 0x6d5f5b91 radix_tree_tagged +EXPORT_SYMBOL vmlinux 0x6d6cabee pcie_get_speed_cap EXPORT_SYMBOL vmlinux 0x6d7c7dcc bitmap_cut -EXPORT_SYMBOL vmlinux 0x6d91a62b ip_cmsg_recv_offset -EXPORT_SYMBOL vmlinux 0x6da42308 security_path_unlink -EXPORT_SYMBOL vmlinux 0x6db8d0a9 iov_iter_revert -EXPORT_SYMBOL vmlinux 0x6dc08d9a seq_write -EXPORT_SYMBOL vmlinux 0x6dc0ba65 eth_commit_mac_addr_change +EXPORT_SYMBOL vmlinux 0x6d932aa1 ipv6_push_frag_opts +EXPORT_SYMBOL vmlinux 0x6d9e6416 read_cache_pages +EXPORT_SYMBOL vmlinux 0x6dbd7ae0 pcie_set_mps EXPORT_SYMBOL vmlinux 0x6dc35b25 radix_tree_iter_delete -EXPORT_SYMBOL vmlinux 0x6dc95ea2 __napi_schedule +EXPORT_SYMBOL vmlinux 0x6dc704e8 netdev_printk +EXPORT_SYMBOL vmlinux 0x6dc7fa3a sock_common_recvmsg EXPORT_SYMBOL vmlinux 0x6dcf857f uuid_null EXPORT_SYMBOL vmlinux 0x6dd17e7b acpi_get_table_header +EXPORT_SYMBOL vmlinux 0x6ddc8345 mmc_can_secure_erase_trim +EXPORT_SYMBOL vmlinux 0x6de42225 _dev_emerg +EXPORT_SYMBOL vmlinux 0x6dea330f eisa_bus_type EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction -EXPORT_SYMBOL vmlinux 0x6e0631f7 __get_hash_from_flowi6 -EXPORT_SYMBOL vmlinux 0x6e0dd9cb jbd2_journal_inode_ranged_wait -EXPORT_SYMBOL vmlinux 0x6e133cff arp_tbl -EXPORT_SYMBOL vmlinux 0x6e1cc62f fwnode_get_mac_address -EXPORT_SYMBOL vmlinux 0x6e37caec ip_defrag -EXPORT_SYMBOL vmlinux 0x6e3ccd1d kern_unmount_array -EXPORT_SYMBOL vmlinux 0x6e41b789 mipi_dsi_generic_read +EXPORT_SYMBOL vmlinux 0x6df5429f writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0x6e002e6d __frontswap_store +EXPORT_SYMBOL vmlinux 0x6e03b5c8 seq_put_decimal_ull +EXPORT_SYMBOL vmlinux 0x6e160d64 page_pool_put_page_bulk +EXPORT_SYMBOL vmlinux 0x6e23ac77 __skb_ext_del +EXPORT_SYMBOL vmlinux 0x6e29484e md_integrity_register +EXPORT_SYMBOL vmlinux 0x6e2d6d5c touchscreen_parse_properties +EXPORT_SYMBOL vmlinux 0x6e58108a netpoll_setup +EXPORT_SYMBOL vmlinux 0x6e595082 balance_dirty_pages_ratelimited EXPORT_SYMBOL vmlinux 0x6e5b8651 xz_dec_run +EXPORT_SYMBOL vmlinux 0x6e5c4b89 __mmap_lock_do_trace_released +EXPORT_SYMBOL vmlinux 0x6e6525c7 vlan_dev_real_dev +EXPORT_SYMBOL vmlinux 0x6e6f4fc4 pid_task +EXPORT_SYMBOL vmlinux 0x6e7177dc vm_map_pages EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock EXPORT_SYMBOL vmlinux 0x6e841389 cpu_info -EXPORT_SYMBOL vmlinux 0x6e8496e2 ipv6_dev_mc_inc -EXPORT_SYMBOL vmlinux 0x6e97f9cb ppp_input +EXPORT_SYMBOL vmlinux 0x6e8b3981 eth_platform_get_mac_address +EXPORT_SYMBOL vmlinux 0x6e8ff3ed ip_setsockopt +EXPORT_SYMBOL vmlinux 0x6e93afc0 phy_register_fixup_for_id EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put EXPORT_SYMBOL vmlinux 0x6ea7575d acpi_dispatch_gpe EXPORT_SYMBOL vmlinux 0x6ea9363b force_sig -EXPORT_SYMBOL vmlinux 0x6eefeb53 __ip4_datagram_connect -EXPORT_SYMBOL vmlinux 0x6f1ccadb jbd2_journal_errno -EXPORT_SYMBOL vmlinux 0x6f1d33f4 __tracepoint_kmem_cache_free -EXPORT_SYMBOL vmlinux 0x6f1f5b1c sk_wait_data -EXPORT_SYMBOL vmlinux 0x6f25f246 max8998_update_reg -EXPORT_SYMBOL vmlinux 0x6f2ae5f2 blk_put_queue -EXPORT_SYMBOL vmlinux 0x6f3e04b8 param_set_ushort -EXPORT_SYMBOL vmlinux 0x6f3e7ca0 skb_coalesce_rx_frag -EXPORT_SYMBOL vmlinux 0x6f40ec14 alloc_pages +EXPORT_SYMBOL vmlinux 0x6eb98a6e blk_post_runtime_resume +EXPORT_SYMBOL vmlinux 0x6eb9daf8 misc_deregister +EXPORT_SYMBOL vmlinux 0x6eba5d7d rproc_boot +EXPORT_SYMBOL vmlinux 0x6edda743 tcp_md5_do_add +EXPORT_SYMBOL vmlinux 0x6ef446b9 is_nvdimm_bus_locked +EXPORT_SYMBOL vmlinux 0x6f1dc937 super_setup_bdi +EXPORT_SYMBOL vmlinux 0x6f2a9eae xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0x6f35ede9 d_invalidate EXPORT_SYMBOL vmlinux 0x6f41a428 acpi_get_vendor_resource -EXPORT_SYMBOL vmlinux 0x6f5023b7 insert_inode_locked -EXPORT_SYMBOL vmlinux 0x6f548bd9 ipmr_rule_default +EXPORT_SYMBOL vmlinux 0x6f501fe6 vfs_clone_file_range EXPORT_SYMBOL vmlinux 0x6f5ab52f acpi_get_local_address -EXPORT_SYMBOL vmlinux 0x6f65d34a tcp_sendpage -EXPORT_SYMBOL vmlinux 0x6f83f4b6 get_mem_cgroup_from_mm -EXPORT_SYMBOL vmlinux 0x6f8cd20a __SCK__tp_func_dma_fence_emit +EXPORT_SYMBOL vmlinux 0x6f5e993f clear_inode +EXPORT_SYMBOL vmlinux 0x6f68a4e3 unregister_netdevice_notifier_dev_net +EXPORT_SYMBOL vmlinux 0x6f87a24a blk_mq_delay_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x6f89830a devm_ioremap_resource +EXPORT_SYMBOL vmlinux 0x6f8d058d jbd2_fc_end_commit_fallback EXPORT_SYMBOL vmlinux 0x6f8f674a bpf_dispatcher_xdp_func EXPORT_SYMBOL vmlinux 0x6f915a45 dqstats -EXPORT_SYMBOL vmlinux 0x6f9f8495 twl6030_mmc_card_detect +EXPORT_SYMBOL vmlinux 0x6fa1f897 clear_page_dirty_for_io +EXPORT_SYMBOL vmlinux 0x6fa4b347 sk_common_release EXPORT_SYMBOL vmlinux 0x6fb49676 queue_rcu_work +EXPORT_SYMBOL vmlinux 0x6fb4f5b3 phy_sfp_probe +EXPORT_SYMBOL vmlinux 0x6fb56f63 current_in_userns +EXPORT_SYMBOL vmlinux 0x6fb817f3 set_posix_acl EXPORT_SYMBOL vmlinux 0x6fbc6a00 radix_tree_insert -EXPORT_SYMBOL vmlinux 0x6fbcb636 xfrm_init_state +EXPORT_SYMBOL vmlinux 0x6fc4a511 phy_driver_unregister EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog +EXPORT_SYMBOL vmlinux 0x6fd17d88 inet_rcv_saddr_equal +EXPORT_SYMBOL vmlinux 0x6fd6e87b pps_lookup_dev EXPORT_SYMBOL vmlinux 0x6fd9c35a __clzdi2 -EXPORT_SYMBOL vmlinux 0x6fe26c72 __fib6_flush_trees +EXPORT_SYMBOL vmlinux 0x6fea83c1 nd_btt_version EXPORT_SYMBOL vmlinux 0x70002fe8 siphash_1u32 -EXPORT_SYMBOL vmlinux 0x700cbe45 sk_filter_trim_cap -EXPORT_SYMBOL vmlinux 0x70124a3b pci_ep_cfs_remove_epc_group +EXPORT_SYMBOL vmlinux 0x7012cb83 __traceiter_mmap_lock_released +EXPORT_SYMBOL vmlinux 0x70158cd2 dma_resv_add_shared_fence +EXPORT_SYMBOL vmlinux 0x70180c8a generic_parse_monolithic +EXPORT_SYMBOL vmlinux 0x701f80fe register_md_personality EXPORT_SYMBOL vmlinux 0x7023bea8 unregister_acpi_notifier EXPORT_SYMBOL vmlinux 0x702946da ucs2_strlen -EXPORT_SYMBOL vmlinux 0x702c1ba0 nf_log_unregister -EXPORT_SYMBOL vmlinux 0x703c6dea xfrm_find_acq EXPORT_SYMBOL vmlinux 0x7040fff9 rtc_lock -EXPORT_SYMBOL vmlinux 0x704ba695 vmalloc_to_page +EXPORT_SYMBOL vmlinux 0x704615c5 __insert_inode_hash EXPORT_SYMBOL vmlinux 0x7054a3e4 request_dma -EXPORT_SYMBOL vmlinux 0x70586132 dev_mc_del_global -EXPORT_SYMBOL vmlinux 0x707e71ab netdev_state_change -EXPORT_SYMBOL vmlinux 0x708daeb9 xfrm_spd_getinfo +EXPORT_SYMBOL vmlinux 0x705b1580 xfrm_policy_flush +EXPORT_SYMBOL vmlinux 0x705c62ae vga_switcheroo_fini_domain_pm_ops +EXPORT_SYMBOL vmlinux 0x7067cb44 dst_release_immediate +EXPORT_SYMBOL vmlinux 0x70751a94 udp_read_sock +EXPORT_SYMBOL vmlinux 0x707dbef2 md_bitmap_unplug +EXPORT_SYMBOL vmlinux 0x70a3f803 get_tree_single EXPORT_SYMBOL vmlinux 0x70ad75fb radix_tree_lookup -EXPORT_SYMBOL vmlinux 0x70b46bb5 agp_collect_device_status -EXPORT_SYMBOL vmlinux 0x70b66a1f vfio_unpin_pages -EXPORT_SYMBOL vmlinux 0x70bf8efb sock_create_lite -EXPORT_SYMBOL vmlinux 0x70c64b41 devm_alloc_etherdev_mqs -EXPORT_SYMBOL vmlinux 0x70d375be phy_modify_paged_changed -EXPORT_SYMBOL vmlinux 0x70d3bca5 skb_abort_seq_read -EXPORT_SYMBOL vmlinux 0x70dfd067 mipi_dsi_dcs_set_pixel_format -EXPORT_SYMBOL vmlinux 0x70e84311 jbd2_journal_set_triggers -EXPORT_SYMBOL vmlinux 0x70e851cd dma_map_resource -EXPORT_SYMBOL vmlinux 0x70f8a86d from_kprojid -EXPORT_SYMBOL vmlinux 0x7110499c tty_check_change -EXPORT_SYMBOL vmlinux 0x7113b1b0 scsi_block_requests -EXPORT_SYMBOL vmlinux 0x7116169f dquot_load_quota_sb -EXPORT_SYMBOL vmlinux 0x71192ba9 mr_rtm_dumproute +EXPORT_SYMBOL vmlinux 0x70b585fa phy_ethtool_ksettings_set +EXPORT_SYMBOL vmlinux 0x70b94ed7 phy_ethtool_set_wol +EXPORT_SYMBOL vmlinux 0x70ba1af6 da903x_query_status +EXPORT_SYMBOL vmlinux 0x70bd8358 try_module_get +EXPORT_SYMBOL vmlinux 0x70c8060c ip_sock_set_recverr +EXPORT_SYMBOL vmlinux 0x7120ce79 dst_init +EXPORT_SYMBOL vmlinux 0x7125f7fc dev_uc_init EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc -EXPORT_SYMBOL vmlinux 0x71309728 nf_register_net_hook -EXPORT_SYMBOL vmlinux 0x71314242 rproc_set_firmware -EXPORT_SYMBOL vmlinux 0x7131aa68 kfree_skb -EXPORT_SYMBOL vmlinux 0x714563d1 mini_qdisc_pair_block_init +EXPORT_SYMBOL vmlinux 0x7136c6b0 md_write_start +EXPORT_SYMBOL vmlinux 0x713ba75b devm_release_resource EXPORT_SYMBOL vmlinux 0x715a5ed0 vprintk -EXPORT_SYMBOL vmlinux 0x715b2956 tcf_idrinfo_destroy -EXPORT_SYMBOL vmlinux 0x716ca0fa mmc_can_secure_erase_trim EXPORT_SYMBOL vmlinux 0x7171121c overflowgid EXPORT_SYMBOL vmlinux 0x718a4693 __SCT__tp_func_mmap_lock_start_locking -EXPORT_SYMBOL vmlinux 0x718f4b75 dquot_quota_on_mount -EXPORT_SYMBOL vmlinux 0x719ccdfa vfs_create_mount -EXPORT_SYMBOL vmlinux 0x719d1739 page_pool_put_page_bulk -EXPORT_SYMBOL vmlinux 0x71a5b93d mdiobus_get_phy +EXPORT_SYMBOL vmlinux 0x71a08621 truncate_pagecache EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy -EXPORT_SYMBOL vmlinux 0x71a9f426 xfrm_parse_spi -EXPORT_SYMBOL vmlinux 0x71aa12b3 jbd2_fc_end_commit -EXPORT_SYMBOL vmlinux 0x71c93b5e nf_log_register -EXPORT_SYMBOL vmlinux 0x71d3908f uart_get_baud_rate +EXPORT_SYMBOL vmlinux 0x71b3d97b phy_support_sym_pause +EXPORT_SYMBOL vmlinux 0x71c922d8 __netif_napi_del +EXPORT_SYMBOL vmlinux 0x71cecf6f csum_and_copy_to_iter EXPORT_SYMBOL vmlinux 0x71dfc095 acpi_walk_resources -EXPORT_SYMBOL vmlinux 0x71f343b5 phy_read_paged -EXPORT_SYMBOL vmlinux 0x71fcb74b inode_sub_bytes -EXPORT_SYMBOL vmlinux 0x72068cc7 csum_and_copy_to_iter -EXPORT_SYMBOL vmlinux 0x7206d2a6 fscrypt_decrypt_block_inplace +EXPORT_SYMBOL vmlinux 0x71f973cf secure_tcpv6_ts_off +EXPORT_SYMBOL vmlinux 0x72091fea ip6_err_gen_icmpv6_unreach EXPORT_SYMBOL vmlinux 0x720a27a7 __register_blkdev -EXPORT_SYMBOL vmlinux 0x7234fffa dev_queue_xmit_accel -EXPORT_SYMBOL vmlinux 0x72356f20 __skb_warn_lro_forwarding -EXPORT_SYMBOL vmlinux 0x723e4d22 input_handler_for_each_handle +EXPORT_SYMBOL vmlinux 0x72137ae0 blk_pre_runtime_resume +EXPORT_SYMBOL vmlinux 0x721b6bb4 ip_local_deliver +EXPORT_SYMBOL vmlinux 0x723d11e8 dev_get_phys_port_id EXPORT_SYMBOL vmlinux 0x724ddac7 utf8version_is_supported -EXPORT_SYMBOL vmlinux 0x725191b9 ptp_find_pin_unlocked +EXPORT_SYMBOL vmlinux 0x726b0799 _dev_alert EXPORT_SYMBOL vmlinux 0x726bc3c7 wait_for_completion_killable_timeout -EXPORT_SYMBOL vmlinux 0x72b00551 skb_queue_tail +EXPORT_SYMBOL vmlinux 0x728ba681 iov_iter_init +EXPORT_SYMBOL vmlinux 0x7291b078 jbd2_journal_grab_journal_head +EXPORT_SYMBOL vmlinux 0x72a2b5ef ps2_command +EXPORT_SYMBOL vmlinux 0x72a636de phy_attach_direct +EXPORT_SYMBOL vmlinux 0x72af12e6 noop_fsync EXPORT_SYMBOL vmlinux 0x72b243d4 free_dma +EXPORT_SYMBOL vmlinux 0x72b7499d tcp_shutdown EXPORT_SYMBOL vmlinux 0x72b9d287 default_grn -EXPORT_SYMBOL vmlinux 0x72be7901 sync_blockdev -EXPORT_SYMBOL vmlinux 0x72c0fc12 mipi_dsi_host_unregister -EXPORT_SYMBOL vmlinux 0x72c420bb setattr_prepare -EXPORT_SYMBOL vmlinux 0x72d39057 dmaenginem_async_device_register -EXPORT_SYMBOL vmlinux 0x72d47209 rproc_add +EXPORT_SYMBOL vmlinux 0x72c235ae tty_unregister_ldisc EXPORT_SYMBOL vmlinux 0x72d79d83 pgdir_shift +EXPORT_SYMBOL vmlinux 0x72dc99a9 ipv6_sock_mc_drop EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type EXPORT_SYMBOL vmlinux 0x72f14ff7 acpi_get_object_info -EXPORT_SYMBOL vmlinux 0x7301c698 sock_from_file -EXPORT_SYMBOL vmlinux 0x7307c3e5 iterate_fd -EXPORT_SYMBOL vmlinux 0x7314f297 dev_activate -EXPORT_SYMBOL vmlinux 0x73150512 dquot_acquire +EXPORT_SYMBOL vmlinux 0x72f7b75d rtnetlink_put_metrics +EXPORT_SYMBOL vmlinux 0x72faae3a iommu_get_dma_cookie +EXPORT_SYMBOL vmlinux 0x72fd5ae8 inode_add_bytes EXPORT_SYMBOL vmlinux 0x7315a4e9 twl6030_mmc_card_detect_config EXPORT_SYMBOL vmlinux 0x731c4a9c dma_fence_signal +EXPORT_SYMBOL vmlinux 0x7328c240 iget_failed +EXPORT_SYMBOL vmlinux 0x732a7c48 configfs_remove_default_groups EXPORT_SYMBOL vmlinux 0x732dd326 groups_free -EXPORT_SYMBOL vmlinux 0x7339fa4f __alloc_pages +EXPORT_SYMBOL vmlinux 0x73363e70 agp_generic_create_gatt_table +EXPORT_SYMBOL vmlinux 0x733d6c51 pagecache_isize_extended EXPORT_SYMBOL vmlinux 0x735a0bd5 native_io_delay EXPORT_SYMBOL vmlinux 0x735e6a81 acpi_evaluate_integer -EXPORT_SYMBOL vmlinux 0x73617982 sk_error_report +EXPORT_SYMBOL vmlinux 0x73608a65 eth_header_cache EXPORT_SYMBOL vmlinux 0x7380dffa argv_split -EXPORT_SYMBOL vmlinux 0x738104a2 xattr_supported_namespace -EXPORT_SYMBOL vmlinux 0x738fe28d get_thermal_instance -EXPORT_SYMBOL vmlinux 0x7394fa2f dev_set_group -EXPORT_SYMBOL vmlinux 0x73977c37 sock_set_priority -EXPORT_SYMBOL vmlinux 0x73a1554a dquot_commit_info +EXPORT_SYMBOL vmlinux 0x7391b771 get_mem_cgroup_from_mm EXPORT_SYMBOL vmlinux 0x73abb180 alloc_contig_range +EXPORT_SYMBOL vmlinux 0x73b0dc20 mini_qdisc_pair_init EXPORT_SYMBOL vmlinux 0x73bc5522 kobject_add -EXPORT_SYMBOL vmlinux 0x73c3f243 inet_frag_kill -EXPORT_SYMBOL vmlinux 0x73caf889 to_nd_pfn -EXPORT_SYMBOL vmlinux 0x73d5b05a kernel_sock_ip_overhead EXPORT_SYMBOL vmlinux 0x73dd54eb irq_fpu_usable -EXPORT_SYMBOL vmlinux 0x73f31d7b proc_mkdir +EXPORT_SYMBOL vmlinux 0x73dd791c sk_wait_data +EXPORT_SYMBOL vmlinux 0x73f46e4d iommu_get_msi_cookie +EXPORT_SYMBOL vmlinux 0x73fc7dd8 vfs_rmdir +EXPORT_SYMBOL vmlinux 0x74013e76 blk_mq_tagset_busy_iter EXPORT_SYMBOL vmlinux 0x740a1b95 reserve_evntsel_nmi +EXPORT_SYMBOL vmlinux 0x740ad3a9 noop_llseek EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace +EXPORT_SYMBOL vmlinux 0x74120d95 dev_addr_add EXPORT_SYMBOL vmlinux 0x7412ed5b kvfree_sensitive EXPORT_SYMBOL vmlinux 0x7413793a EISA_bus -EXPORT_SYMBOL vmlinux 0x742058dc ipv6_skip_exthdr EXPORT_SYMBOL vmlinux 0x742578a5 wait_for_random_bytes -EXPORT_SYMBOL vmlinux 0x74278e4c set_blocksize EXPORT_SYMBOL vmlinux 0x7429e20c kstrtos8 +EXPORT_SYMBOL vmlinux 0x744ea3a0 filp_open EXPORT_SYMBOL vmlinux 0x7453d3e8 security_release_secctx +EXPORT_SYMBOL vmlinux 0x74577073 pipe_lock EXPORT_SYMBOL vmlinux 0x74754435 acpi_bus_generate_netlink_event +EXPORT_SYMBOL vmlinux 0x74804d7f skb_copy EXPORT_SYMBOL vmlinux 0x7483dc59 pci_dev_present -EXPORT_SYMBOL vmlinux 0x7488ebb3 dev_open -EXPORT_SYMBOL vmlinux 0x74a9b5ce _copy_to_iter -EXPORT_SYMBOL vmlinux 0x74b5fbf5 dev_getbyhwaddr_rcu -EXPORT_SYMBOL vmlinux 0x74ba463c crypto_sha1_update +EXPORT_SYMBOL vmlinux 0x74863c2b phy_mii_ioctl +EXPORT_SYMBOL vmlinux 0x7489e461 __getblk_gfp +EXPORT_SYMBOL vmlinux 0x748a57ea mmc_put_card EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 -EXPORT_SYMBOL vmlinux 0x74c57157 vme_irq_request -EXPORT_SYMBOL vmlinux 0x74da0a64 dquot_scan_active -EXPORT_SYMBOL vmlinux 0x74e1f996 __dev_remove_pack +EXPORT_SYMBOL vmlinux 0x74de622a fwnode_phy_find_device EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable -EXPORT_SYMBOL vmlinux 0x74e6ecc2 genl_register_family -EXPORT_SYMBOL vmlinux 0x74e72134 current_in_userns -EXPORT_SYMBOL vmlinux 0x74f74391 mmc_gpio_set_cd_isr -EXPORT_SYMBOL vmlinux 0x750b5e6b __xfrm_dst_lookup -EXPORT_SYMBOL vmlinux 0x75107ce6 netdev_change_features +EXPORT_SYMBOL vmlinux 0x74e8eeb4 vme_bus_num +EXPORT_SYMBOL vmlinux 0x74ef5c22 dqget +EXPORT_SYMBOL vmlinux 0x750660ba dev_set_mac_address EXPORT_SYMBOL vmlinux 0x7530bb0c __SCT__tp_func_write_msr +EXPORT_SYMBOL vmlinux 0x753317d7 netlink_rcv_skb EXPORT_SYMBOL vmlinux 0x7538b132 agp_off -EXPORT_SYMBOL vmlinux 0x7545656a dma_resv_add_excl_fence +EXPORT_SYMBOL vmlinux 0x753afefb param_get_byte EXPORT_SYMBOL vmlinux 0x754d539c strlen -EXPORT_SYMBOL vmlinux 0x755cdff4 md_integrity_register -EXPORT_SYMBOL vmlinux 0x758307bc netdev_sk_get_lowest_dev +EXPORT_SYMBOL vmlinux 0x755f4ba3 blake2s_compress_generic +EXPORT_SYMBOL vmlinux 0x75629efe __serio_register_driver EXPORT_SYMBOL vmlinux 0x75871f5e acpi_get_next_object EXPORT_SYMBOL vmlinux 0x75943e25 i8253_lock +EXPORT_SYMBOL vmlinux 0x75a54164 configfs_register_default_group 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 0x75e1f885 kernel_getpeername -EXPORT_SYMBOL vmlinux 0x75e3969e key_alloc -EXPORT_SYMBOL vmlinux 0x75eadfb0 jbd2_journal_extend -EXPORT_SYMBOL vmlinux 0x75f81274 ip_mc_inc_group -EXPORT_SYMBOL vmlinux 0x75ffad34 init_special_inode -EXPORT_SYMBOL vmlinux 0x76043205 sdev_prefix_printk +EXPORT_SYMBOL vmlinux 0x75d8606b dcbnl_ieee_notify EXPORT_SYMBOL vmlinux 0x760a0f4f yield EXPORT_SYMBOL vmlinux 0x7618af39 hdmi_infoframe_check -EXPORT_SYMBOL vmlinux 0x761a9a1b __sk_mem_raise_allocated -EXPORT_SYMBOL vmlinux 0x76230abd default_llseek +EXPORT_SYMBOL vmlinux 0x761be208 __mdiobus_register +EXPORT_SYMBOL vmlinux 0x76227361 skb_get_hash_perturb EXPORT_SYMBOL vmlinux 0x7624249e dim_park_tired -EXPORT_SYMBOL vmlinux 0x763a2352 nlmsg_notify -EXPORT_SYMBOL vmlinux 0x7646b08f phy_mii_ioctl +EXPORT_SYMBOL vmlinux 0x763bcffe vmap +EXPORT_SYMBOL vmlinux 0x763c1777 __dev_get_by_name EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq -EXPORT_SYMBOL vmlinux 0x765bbfcb inet_frag_pull_head +EXPORT_SYMBOL vmlinux 0x7654fbb7 node_data EXPORT_SYMBOL vmlinux 0x765ff474 crc_t10dif_generic +EXPORT_SYMBOL vmlinux 0x76607e19 sock_gettstamp EXPORT_SYMBOL vmlinux 0x766a0927 mempool_alloc_pages -EXPORT_SYMBOL vmlinux 0x76751f60 skb_copy_and_hash_datagram_iter +EXPORT_SYMBOL vmlinux 0x76752a0f mem_cgroup_from_task +EXPORT_SYMBOL vmlinux 0x7678cef6 netpoll_poll_enable +EXPORT_SYMBOL vmlinux 0x767a18ac t10_pi_type1_ip +EXPORT_SYMBOL vmlinux 0x767bd327 rproc_elf_sanity_check EXPORT_SYMBOL vmlinux 0x767dce4b acpi_disable_all_gpes EXPORT_SYMBOL vmlinux 0x767ddb02 set_memory_wc -EXPORT_SYMBOL vmlinux 0x76990c5d param_ops_bool EXPORT_SYMBOL vmlinux 0x769f6e64 errseq_check -EXPORT_SYMBOL vmlinux 0x76a56118 dev_get_phys_port_name +EXPORT_SYMBOL vmlinux 0x76a20cb3 audit_log_start +EXPORT_SYMBOL vmlinux 0x76a8e3ed framebuffer_release +EXPORT_SYMBOL vmlinux 0x76aa987e kern_path +EXPORT_SYMBOL vmlinux 0x76aaf267 genphy_soft_reset EXPORT_SYMBOL vmlinux 0x76c30af9 unregister_nls +EXPORT_SYMBOL vmlinux 0x76c664c5 seg6_hmac_validate_skb EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode -EXPORT_SYMBOL vmlinux 0x76d8cd38 sock_alloc -EXPORT_SYMBOL vmlinux 0x76e4fc13 pcie_capability_clear_and_set_word +EXPORT_SYMBOL vmlinux 0x76dffeae vme_bus_error_handler EXPORT_SYMBOL vmlinux 0x76fb08a7 amd_iommu_unregister_ppr_notifier -EXPORT_SYMBOL vmlinux 0x76fcf23f xsk_clear_rx_need_wakeup -EXPORT_SYMBOL vmlinux 0x770e0fc3 seq_release +EXPORT_SYMBOL vmlinux 0x76fb5543 neigh_parms_release +EXPORT_SYMBOL vmlinux 0x77029267 get_tree_nodev +EXPORT_SYMBOL vmlinux 0x7710e185 i2c_transfer +EXPORT_SYMBOL vmlinux 0x771132d8 genl_register_family EXPORT_SYMBOL vmlinux 0x7732159c free_irq_cpu_rmap EXPORT_SYMBOL vmlinux 0x77358855 iomem_resource +EXPORT_SYMBOL vmlinux 0x77383013 nvdimm_namespace_disk_name EXPORT_SYMBOL vmlinux 0x773fa409 __kfifo_dma_in_finish_r -EXPORT_SYMBOL vmlinux 0x773fdd05 jbd2__journal_start EXPORT_SYMBOL vmlinux 0x77456e0a acpi_root_dir -EXPORT_SYMBOL vmlinux 0x77535ff9 dquot_quota_sync -EXPORT_SYMBOL vmlinux 0x775d4977 mmc_command_done -EXPORT_SYMBOL vmlinux 0x776f987d fscrypt_encrypt_block_inplace +EXPORT_SYMBOL vmlinux 0x77636124 blk_queue_max_segments +EXPORT_SYMBOL vmlinux 0x77674e74 dma_resv_init +EXPORT_SYMBOL vmlinux 0x776d76a0 vfs_iocb_iter_write EXPORT_SYMBOL vmlinux 0x777a47ff override_creds -EXPORT_SYMBOL vmlinux 0x778aaed1 dev_uc_add -EXPORT_SYMBOL vmlinux 0x778c451e netpoll_poll_disable -EXPORT_SYMBOL vmlinux 0x778f7f2f udp_prot +EXPORT_SYMBOL vmlinux 0x7781729f scsi_report_bus_reset +EXPORT_SYMBOL vmlinux 0x778bfe34 tcp_make_synack +EXPORT_SYMBOL vmlinux 0x77907209 xfrm_state_register_afinfo EXPORT_SYMBOL vmlinux 0x7791193f icst525_s2div -EXPORT_SYMBOL vmlinux 0x77a5403c __SCK__tp_func_kmalloc_node +EXPORT_SYMBOL vmlinux 0x77927386 fscrypt_has_permitted_context EXPORT_SYMBOL vmlinux 0x77b0fed9 __next_node_in EXPORT_SYMBOL vmlinux 0x77bc13a0 strim EXPORT_SYMBOL vmlinux 0x77be46b2 config_item_put -EXPORT_SYMBOL vmlinux 0x77da27a7 twl6040_power -EXPORT_SYMBOL vmlinux 0x77dec61f inet_recvmsg +EXPORT_SYMBOL vmlinux 0x77d325b3 d_splice_alias +EXPORT_SYMBOL vmlinux 0x77db9b5d complete_request_key +EXPORT_SYMBOL vmlinux 0x77ddd54f request_firmware +EXPORT_SYMBOL vmlinux 0x77e6d4aa bio_integrity_add_page EXPORT_SYMBOL vmlinux 0x77e9eb37 aes_encrypt -EXPORT_SYMBOL vmlinux 0x77f92178 __tracepoint_write_msr -EXPORT_SYMBOL vmlinux 0x77fadc5e tty_unthrottle +EXPORT_SYMBOL vmlinux 0x77fce5cd rproc_detach +EXPORT_SYMBOL vmlinux 0x7804804b iget5_locked EXPORT_SYMBOL vmlinux 0x7807f0f8 schedule_timeout_idle -EXPORT_SYMBOL vmlinux 0x780886dd jbd2_fc_get_buf EXPORT_SYMBOL vmlinux 0x780fdfd1 intel_enable_gtt -EXPORT_SYMBOL vmlinux 0x7813854b __register_binfmt -EXPORT_SYMBOL vmlinux 0x782cff33 skb_checksum EXPORT_SYMBOL vmlinux 0x7834defd vfio_group_unpin_pages +EXPORT_SYMBOL vmlinux 0x783fb7b7 udp6_csum_init EXPORT_SYMBOL vmlinux 0x7846af3e __kfifo_len_r -EXPORT_SYMBOL vmlinux 0x784b662c __vfs_getxattr -EXPORT_SYMBOL vmlinux 0x7854cff2 __tracepoint_kmalloc -EXPORT_SYMBOL vmlinux 0x78697f96 sock_common_recvmsg -EXPORT_SYMBOL vmlinux 0x786dfa32 mmc_of_parse_clk_phase -EXPORT_SYMBOL vmlinux 0x78722d2b bio_kmalloc -EXPORT_SYMBOL vmlinux 0x787e140b __skb_checksum_complete_head +EXPORT_SYMBOL vmlinux 0x78593528 devfreq_remove_governor +EXPORT_SYMBOL vmlinux 0x7867a6ca ps2_sendbyte +EXPORT_SYMBOL vmlinux 0x786aa405 inet6_release EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback -EXPORT_SYMBOL vmlinux 0x788c85bc dcache_readdir -EXPORT_SYMBOL vmlinux 0x78989eea sched_autogroup_create_attach -EXPORT_SYMBOL vmlinux 0x78998dcf pcie_capability_write_word EXPORT_SYMBOL vmlinux 0x789affb1 frontswap_tmem_exclusive_gets EXPORT_SYMBOL vmlinux 0x78a16f48 aes_decrypt -EXPORT_SYMBOL vmlinux 0x78a47f1a ip_setsockopt -EXPORT_SYMBOL vmlinux 0x78a96a42 dm_put_device +EXPORT_SYMBOL vmlinux 0x78b20702 request_firmware_into_buf EXPORT_SYMBOL vmlinux 0x78b887ed vsprintf -EXPORT_SYMBOL vmlinux 0x78cde170 ipv6_mc_check_mld -EXPORT_SYMBOL vmlinux 0x78deb413 rproc_coredump_set_elf_info +EXPORT_SYMBOL vmlinux 0x78d89766 sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0x78dda1c2 mdiobus_free EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices -EXPORT_SYMBOL vmlinux 0x78ea8c3e devm_pci_remap_cfg_resource +EXPORT_SYMBOL vmlinux 0x78ea50c5 __scm_destroy +EXPORT_SYMBOL vmlinux 0x78ea88a1 inet_put_port EXPORT_SYMBOL vmlinux 0x790bafd4 blk_stack_limits -EXPORT_SYMBOL vmlinux 0x796e7106 dev_graft_qdisc +EXPORT_SYMBOL vmlinux 0x792896a3 kernel_connect +EXPORT_SYMBOL vmlinux 0x792e5821 __tracepoint_module_get +EXPORT_SYMBOL vmlinux 0x79475f04 __mod_lruvec_page_state +EXPORT_SYMBOL vmlinux 0x794fcc4f peernet2id EXPORT_SYMBOL vmlinux 0x79739c3c utf8nagemin -EXPORT_SYMBOL vmlinux 0x797dec1e pci_match_id EXPORT_SYMBOL vmlinux 0x7984eefc key_update -EXPORT_SYMBOL vmlinux 0x798874f1 fwnode_mdio_find_device -EXPORT_SYMBOL vmlinux 0x798911c5 sock_wmalloc -EXPORT_SYMBOL vmlinux 0x798fb8fc gro_cells_init EXPORT_SYMBOL vmlinux 0x79a33f85 vme_get_size -EXPORT_SYMBOL vmlinux 0x79aa04a2 get_random_bytes -EXPORT_SYMBOL vmlinux 0x79b4e656 call_netdevice_notifiers -EXPORT_SYMBOL vmlinux 0x79c1b341 is_acpi_data_node -EXPORT_SYMBOL vmlinux 0x79c9a47e simple_transaction_read -EXPORT_SYMBOL vmlinux 0x79d54395 dquot_set_dqblk +EXPORT_SYMBOL vmlinux 0x79bdf167 devm_input_allocate_device +EXPORT_SYMBOL vmlinux 0x79cb2373 write_dirty_buffer EXPORT_SYMBOL vmlinux 0x79df9633 ioremap_encrypted -EXPORT_SYMBOL vmlinux 0x79e21db3 netdev_bonding_info_change EXPORT_SYMBOL vmlinux 0x79ec8f93 blk_start_plug +EXPORT_SYMBOL vmlinux 0x79edff66 rt6_lookup +EXPORT_SYMBOL vmlinux 0x7a02d054 md_register_thread EXPORT_SYMBOL vmlinux 0x7a09a064 seg6_hmac_compute +EXPORT_SYMBOL vmlinux 0x7a119fdb netlink_unicast +EXPORT_SYMBOL vmlinux 0x7a162079 dquot_writeback_dquots EXPORT_SYMBOL vmlinux 0x7a1bcd59 gf128mul_x8_ble -EXPORT_SYMBOL vmlinux 0x7a1f9817 tcp_recvmsg -EXPORT_SYMBOL vmlinux 0x7a24b6cf dcb_ieee_setapp EXPORT_SYMBOL vmlinux 0x7a2af7b4 cpu_number -EXPORT_SYMBOL vmlinux 0x7a389f8e devfreq_add_governor -EXPORT_SYMBOL vmlinux 0x7a47b005 wait_for_key_construction -EXPORT_SYMBOL vmlinux 0x7a4c955f kmem_cache_free_bulk -EXPORT_SYMBOL vmlinux 0x7a53370d max8925_set_bits -EXPORT_SYMBOL vmlinux 0x7a57447a param_get_string -EXPORT_SYMBOL vmlinux 0x7a5777ca unlock_new_inode -EXPORT_SYMBOL vmlinux 0x7a6cba19 tcf_action_update_stats -EXPORT_SYMBOL vmlinux 0x7a814879 pneigh_lookup +EXPORT_SYMBOL vmlinux 0x7a35c08e inode_nohighmem +EXPORT_SYMBOL vmlinux 0x7a58cd91 pipe_unlock +EXPORT_SYMBOL vmlinux 0x7a6213ae disk_start_io_acct +EXPORT_SYMBOL vmlinux 0x7a646595 input_unregister_handle +EXPORT_SYMBOL vmlinux 0x7a69fe40 netdev_next_lower_dev_rcu +EXPORT_SYMBOL vmlinux 0x7a7b2bd8 __register_chrdev +EXPORT_SYMBOL vmlinux 0x7a7f4440 netdev_emerg EXPORT_SYMBOL vmlinux 0x7a88da87 iosf_mbi_write -EXPORT_SYMBOL vmlinux 0x7a8d9716 iommu_get_msi_cookie +EXPORT_SYMBOL vmlinux 0x7a912b6b dev_open EXPORT_SYMBOL vmlinux 0x7a95e5ae do_settimeofday64 EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree -EXPORT_SYMBOL vmlinux 0x7aa5043e dma_sync_single_for_cpu EXPORT_SYMBOL vmlinux 0x7ab45d25 dma_fence_array_create EXPORT_SYMBOL vmlinux 0x7ab88a45 system_freezing_cnt EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt +EXPORT_SYMBOL vmlinux 0x7ad48ba1 register_console EXPORT_SYMBOL vmlinux 0x7adc0fbf rb_replace_node_rcu -EXPORT_SYMBOL vmlinux 0x7ae2511a __check_sticky -EXPORT_SYMBOL vmlinux 0x7aea1968 zerocopy_sg_from_iter -EXPORT_SYMBOL vmlinux 0x7aef1fc8 unregister_mii_timestamper +EXPORT_SYMBOL vmlinux 0x7ae22f97 pnp_start_dev +EXPORT_SYMBOL vmlinux 0x7aecaf7c twl6040_get_pll +EXPORT_SYMBOL vmlinux 0x7aede400 pmem_should_map_pages +EXPORT_SYMBOL vmlinux 0x7afc43dd blk_rq_map_user EXPORT_SYMBOL vmlinux 0x7aff77a3 __cpu_present_mask -EXPORT_SYMBOL vmlinux 0x7b03c03c skb_queue_head +EXPORT_SYMBOL vmlinux 0x7aff7d86 __skb_get_hash +EXPORT_SYMBOL vmlinux 0x7b0fb05b ip6_frag_init +EXPORT_SYMBOL vmlinux 0x7b336df9 md_bitmap_free +EXPORT_SYMBOL vmlinux 0x7b33c9ac blk_mq_tag_to_rq EXPORT_SYMBOL vmlinux 0x7b37d4a7 _find_first_zero_bit EXPORT_SYMBOL vmlinux 0x7b4da6ff __init_rwsem -EXPORT_SYMBOL vmlinux 0x7b573d47 ppp_unregister_compressor -EXPORT_SYMBOL vmlinux 0x7b5a06b0 _dev_info EXPORT_SYMBOL vmlinux 0x7b5b8f31 sha256_update -EXPORT_SYMBOL vmlinux 0x7b6d1fd1 mipi_dsi_dcs_get_display_brightness -EXPORT_SYMBOL vmlinux 0x7b72648d dst_release_immediate -EXPORT_SYMBOL vmlinux 0x7b7c3b7d mipi_dsi_picture_parameter_set -EXPORT_SYMBOL vmlinux 0x7b7c51e6 ndisc_mc_map -EXPORT_SYMBOL vmlinux 0x7b7e3c30 xfrm_input_resume +EXPORT_SYMBOL vmlinux 0x7b5fca10 param_set_uint +EXPORT_SYMBOL vmlinux 0x7b615d51 backlight_device_unregister EXPORT_SYMBOL vmlinux 0x7b82b9a1 idr_replace -EXPORT_SYMBOL vmlinux 0x7b8a2902 pci_wait_for_pending_transaction -EXPORT_SYMBOL vmlinux 0x7b8ec915 __d_lookup_done -EXPORT_SYMBOL vmlinux 0x7b9f7a29 clear_inode +EXPORT_SYMBOL vmlinux 0x7b90d095 sock_no_mmap +EXPORT_SYMBOL vmlinux 0x7b9c314c fasync_helper +EXPORT_SYMBOL vmlinux 0x7ba78d34 request_firmware_nowait +EXPORT_SYMBOL vmlinux 0x7bab13db lookup_one_len_unlocked +EXPORT_SYMBOL vmlinux 0x7babba07 forget_cached_acl +EXPORT_SYMBOL vmlinux 0x7bb4a2ef skb_checksum_trimmed EXPORT_SYMBOL vmlinux 0x7bb50b88 acpi_write EXPORT_SYMBOL vmlinux 0x7bbccd05 nr_node_ids -EXPORT_SYMBOL vmlinux 0x7bc12fff udp_lib_getsockopt -EXPORT_SYMBOL vmlinux 0x7bc97d76 fscrypt_fname_disk_to_usr -EXPORT_SYMBOL vmlinux 0x7bd46f47 agp_allocate_memory -EXPORT_SYMBOL vmlinux 0x7be75515 devm_release_resource -EXPORT_SYMBOL vmlinux 0x7bf6995d nosteal_pipe_buf_ops -EXPORT_SYMBOL vmlinux 0x7bfae290 start_tty +EXPORT_SYMBOL vmlinux 0x7bcb1e30 __free_pages +EXPORT_SYMBOL vmlinux 0x7bcb62c8 touch_atime +EXPORT_SYMBOL vmlinux 0x7bd6f0cc netdev_reset_tc +EXPORT_SYMBOL vmlinux 0x7c070457 mdio_driver_unregister EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement +EXPORT_SYMBOL vmlinux 0x7c19ec64 inet_pton_with_scope EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get -EXPORT_SYMBOL vmlinux 0x7c816988 dst_init -EXPORT_SYMBOL vmlinux 0x7c8f8f81 component_match_add_typed -EXPORT_SYMBOL vmlinux 0x7c94052a skb_add_rx_frag +EXPORT_SYMBOL vmlinux 0x7c4bc456 netdev_upper_dev_unlink +EXPORT_SYMBOL vmlinux 0x7c77be7e filemap_fdatawait_range_keep_errors +EXPORT_SYMBOL vmlinux 0x7c89d74e set_disk_ro EXPORT_SYMBOL vmlinux 0x7c9ca58f __sg_page_iter_next -EXPORT_SYMBOL vmlinux 0x7ca41d7c user_revoke EXPORT_SYMBOL vmlinux 0x7cb1aea1 devlink_dpipe_header_ethernet -EXPORT_SYMBOL vmlinux 0x7ccc9146 xfrm_dst_ifdown -EXPORT_SYMBOL vmlinux 0x7cd3d93f vm_map_pages_zero EXPORT_SYMBOL vmlinux 0x7cd8d75e page_offset_base EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid +EXPORT_SYMBOL vmlinux 0x7ce4664e init_pseudo EXPORT_SYMBOL vmlinux 0x7ce58981 kvrealloc -EXPORT_SYMBOL vmlinux 0x7cef7091 md_bitmap_update_sb +EXPORT_SYMBOL vmlinux 0x7ce77c75 skb_pull EXPORT_SYMBOL vmlinux 0x7cf35220 vme_master_free -EXPORT_SYMBOL vmlinux 0x7cfbd18a scsi_host_busy EXPORT_SYMBOL vmlinux 0x7cfe368d net_dim_get_def_tx_moderation +EXPORT_SYMBOL vmlinux 0x7d0a7f7f vfs_get_link EXPORT_SYMBOL vmlinux 0x7d0ba682 gen_pool_virt_to_phys EXPORT_SYMBOL vmlinux 0x7d0db45c jiffies_to_clock_t EXPORT_SYMBOL vmlinux 0x7d12d76d acpi_get_parent -EXPORT_SYMBOL vmlinux 0x7d132ab0 bio_integrity_alloc -EXPORT_SYMBOL vmlinux 0x7d1c7dea nf_unregister_sockopt -EXPORT_SYMBOL vmlinux 0x7d213bc7 kernel_getsockname -EXPORT_SYMBOL vmlinux 0x7d2449be rproc_detach -EXPORT_SYMBOL vmlinux 0x7d287d2e netdev_master_upper_dev_link -EXPORT_SYMBOL vmlinux 0x7d445f3c scsi_device_lookup_by_target -EXPORT_SYMBOL vmlinux 0x7d47c1a8 xfrm_state_free +EXPORT_SYMBOL vmlinux 0x7d2a72a3 tcp_sock_set_syncnt +EXPORT_SYMBOL vmlinux 0x7d3ab8f9 __skb_checksum_complete_head +EXPORT_SYMBOL vmlinux 0x7d41344f kmem_cache_alloc_bulk EXPORT_SYMBOL vmlinux 0x7d4b176a netlbl_catmap_setbit -EXPORT_SYMBOL vmlinux 0x7d54c704 param_get_uint -EXPORT_SYMBOL vmlinux 0x7d5b76c3 scsi_host_put +EXPORT_SYMBOL vmlinux 0x7d4ce45a simple_nosetlease +EXPORT_SYMBOL vmlinux 0x7d5c8289 dev_addr_init EXPORT_SYMBOL vmlinux 0x7d5e1008 __crc32c_le_shift EXPORT_SYMBOL vmlinux 0x7d628444 memcpy_fromio EXPORT_SYMBOL vmlinux 0x7d74d522 kstrtoull_from_user -EXPORT_SYMBOL vmlinux 0x7d861d05 kill_anon_super -EXPORT_SYMBOL vmlinux 0x7da6267e security_skb_classify_flow -EXPORT_SYMBOL vmlinux 0x7da9e247 ip6_dst_alloc +EXPORT_SYMBOL vmlinux 0x7d7b2087 locks_lock_inode_wait +EXPORT_SYMBOL vmlinux 0x7da7697a of_find_mipi_dsi_host_by_node EXPORT_SYMBOL vmlinux 0x7daece67 quota_send_warning -EXPORT_SYMBOL vmlinux 0x7db2954a __SCK__tp_func_kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0x7db78fea blkdev_compat_ptr_ioctl -EXPORT_SYMBOL vmlinux 0x7dc98b93 security_task_getsecid_subj -EXPORT_SYMBOL vmlinux 0x7dcaece8 unlock_two_nondirectories +EXPORT_SYMBOL vmlinux 0x7db2efc5 jbd2_log_start_commit +EXPORT_SYMBOL vmlinux 0x7db69337 pcibios_bus_to_resource +EXPORT_SYMBOL vmlinux 0x7dc9a869 dma_async_device_unregister +EXPORT_SYMBOL vmlinux 0x7dcb6a43 kthread_bind EXPORT_SYMBOL vmlinux 0x7dcf4135 __xa_insert EXPORT_SYMBOL vmlinux 0x7dd554fc unregister_kmmio_probe +EXPORT_SYMBOL vmlinux 0x7dde8157 in_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x7defa82b __netdev_notify_peers EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args EXPORT_SYMBOL vmlinux 0x7df44163 textsearch_find_continuous -EXPORT_SYMBOL vmlinux 0x7dfbc255 param_get_long -EXPORT_SYMBOL vmlinux 0x7e051ca2 sget -EXPORT_SYMBOL vmlinux 0x7e07aecd frontswap_register_ops -EXPORT_SYMBOL vmlinux 0x7e199980 xfrm_policy_hash_rebuild -EXPORT_SYMBOL vmlinux 0x7e2ec227 vga_switcheroo_unregister_client +EXPORT_SYMBOL vmlinux 0x7dfe3ec7 kern_path_create +EXPORT_SYMBOL vmlinux 0x7dff3fad flow_rule_match_meta +EXPORT_SYMBOL vmlinux 0x7e089991 param_array_ops +EXPORT_SYMBOL vmlinux 0x7e1f5d3a xfrm4_rcv +EXPORT_SYMBOL vmlinux 0x7e2d5f30 jbd2_journal_set_triggers +EXPORT_SYMBOL vmlinux 0x7e30cadc set_pages_wb EXPORT_SYMBOL vmlinux 0x7e3191f6 try_to_del_timer_sync -EXPORT_SYMBOL vmlinux 0x7e444f93 max8925_bulk_read -EXPORT_SYMBOL vmlinux 0x7e4eb9ad jbd2_complete_transaction -EXPORT_SYMBOL vmlinux 0x7e55547e fb_validate_mode -EXPORT_SYMBOL vmlinux 0x7e560b55 fb_firmware_edid -EXPORT_SYMBOL vmlinux 0x7e5b6dc5 padata_do_serial -EXPORT_SYMBOL vmlinux 0x7e63b81b devm_pci_remap_cfgspace -EXPORT_SYMBOL vmlinux 0x7e749d12 nf_register_net_hooks -EXPORT_SYMBOL vmlinux 0x7e77662f save_fpregs_to_fpstate +EXPORT_SYMBOL vmlinux 0x7e34c0f0 dma_resv_add_excl_fence +EXPORT_SYMBOL vmlinux 0x7e37e567 mmc_set_data_timeout +EXPORT_SYMBOL vmlinux 0x7e386bc2 inet_get_local_port_range +EXPORT_SYMBOL vmlinux 0x7e621d30 memory_cgrp_subsys +EXPORT_SYMBOL vmlinux 0x7e739bcb end_page_writeback EXPORT_SYMBOL vmlinux 0x7e7bcf26 acpi_map_cpu -EXPORT_SYMBOL vmlinux 0x7e85b1fe netdev_err -EXPORT_SYMBOL vmlinux 0x7e980228 kmem_cache_size -EXPORT_SYMBOL vmlinux 0x7e986737 xfrm_state_insert -EXPORT_SYMBOL vmlinux 0x7ec0da9d pnp_stop_dev -EXPORT_SYMBOL vmlinux 0x7ec3e16f tty_driver_flush_buffer -EXPORT_SYMBOL vmlinux 0x7ec56044 pci_irq_vector -EXPORT_SYMBOL vmlinux 0x7ed7f820 phy_start -EXPORT_SYMBOL vmlinux 0x7eed6528 devm_devfreq_remove_device -EXPORT_SYMBOL vmlinux 0x7ef62025 inet_release -EXPORT_SYMBOL vmlinux 0x7efbed55 ip_sock_set_freebind +EXPORT_SYMBOL vmlinux 0x7e81ddb7 __SCK__tp_func_rdpmc +EXPORT_SYMBOL vmlinux 0x7e9b2093 nvdimm_bus_unlock +EXPORT_SYMBOL vmlinux 0x7ec807e2 pci_enable_device +EXPORT_SYMBOL vmlinux 0x7ed8a331 lock_rename +EXPORT_SYMBOL vmlinux 0x7eed684a tcp_sock_set_keepintvl EXPORT_SYMBOL vmlinux 0x7f02188f __msecs_to_jiffies EXPORT_SYMBOL vmlinux 0x7f03b6a9 crc_ccitt_table EXPORT_SYMBOL vmlinux 0x7f07418b __SCT__tp_func_kmem_cache_alloc_node EXPORT_SYMBOL vmlinux 0x7f14ac73 config_group_init -EXPORT_SYMBOL vmlinux 0x7f1af13b inet_frags_init +EXPORT_SYMBOL vmlinux 0x7f19701c gro_find_receive_by_type +EXPORT_SYMBOL vmlinux 0x7f1be724 vme_bus_type EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs -EXPORT_SYMBOL vmlinux 0x7f4979af seq_read_iter +EXPORT_SYMBOL vmlinux 0x7f4f1719 kfree_skb_list EXPORT_SYMBOL vmlinux 0x7f52071a net_dim EXPORT_SYMBOL vmlinux 0x7f5b4fe4 sg_free_table -EXPORT_SYMBOL vmlinux 0x7f6740c6 backlight_device_get_by_type -EXPORT_SYMBOL vmlinux 0x7f6ea8bd netif_device_attach +EXPORT_SYMBOL vmlinux 0x7f6025ef dcb_ieee_getapp_mask +EXPORT_SYMBOL vmlinux 0x7f63bf74 skb_abort_seq_read EXPORT_SYMBOL vmlinux 0x7f7f7bb4 irq_poll_disable -EXPORT_SYMBOL vmlinux 0x7f84f610 neigh_table_init -EXPORT_SYMBOL vmlinux 0x7f96c0a3 blk_post_runtime_resume -EXPORT_SYMBOL vmlinux 0x7fa1e00a tc_setup_cb_add -EXPORT_SYMBOL vmlinux 0x7fabde3d netdev_warn -EXPORT_SYMBOL vmlinux 0x7fceda30 i2c_smbus_read_block_data -EXPORT_SYMBOL vmlinux 0x7fd1208b d_mark_dontcache +EXPORT_SYMBOL vmlinux 0x7f892e83 pci_try_set_mwi +EXPORT_SYMBOL vmlinux 0x7fa45fd4 sk_dst_check +EXPORT_SYMBOL vmlinux 0x7fad373e serio_unregister_port +EXPORT_SYMBOL vmlinux 0x7fc8a3ca uart_suspend_port EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node -EXPORT_SYMBOL vmlinux 0x7fe4d437 kthread_bind -EXPORT_SYMBOL vmlinux 0x7ffc0b4a iunique -EXPORT_SYMBOL vmlinux 0x80038685 blkdev_issue_flush -EXPORT_SYMBOL vmlinux 0x800fd0d5 vlan_dev_real_dev -EXPORT_SYMBOL vmlinux 0x80179e75 xsk_clear_tx_need_wakeup -EXPORT_SYMBOL vmlinux 0x801b7878 xp_dma_sync_for_device_slow +EXPORT_SYMBOL vmlinux 0x7fe5f22b inet6_add_protocol +EXPORT_SYMBOL vmlinux 0x800c2b0f param_set_ulong +EXPORT_SYMBOL vmlinux 0x80284b8c phy_attached_print +EXPORT_SYMBOL vmlinux 0x80377eff sock_efree EXPORT_SYMBOL vmlinux 0x803ddbb6 __posix_acl_create +EXPORT_SYMBOL vmlinux 0x803de409 i2c_smbus_read_word_data +EXPORT_SYMBOL vmlinux 0x804090b7 __dquot_alloc_space EXPORT_SYMBOL vmlinux 0x804af87c wrmsr_safe_on_cpu -EXPORT_SYMBOL vmlinux 0x805525f7 sync_inodes_sb -EXPORT_SYMBOL vmlinux 0x805e155a vlan_for_each -EXPORT_SYMBOL vmlinux 0x808e6843 pv_ops +EXPORT_SYMBOL vmlinux 0x805b4a3f xfrm_state_check_expire +EXPORT_SYMBOL vmlinux 0x80606c29 phy_attached_info +EXPORT_SYMBOL vmlinux 0x8063247b inet_recvmsg +EXPORT_SYMBOL vmlinux 0x806d0420 mr_vif_seq_idx +EXPORT_SYMBOL vmlinux 0x8074aafd qdisc_offload_dump_helper +EXPORT_SYMBOL vmlinux 0x80762cdf touch_buffer +EXPORT_SYMBOL vmlinux 0x8076d0fa tcp_seq_stop +EXPORT_SYMBOL vmlinux 0x807da76f page_symlink EXPORT_SYMBOL vmlinux 0x809712ff hdmi_avi_infoframe_pack -EXPORT_SYMBOL vmlinux 0x809dcdf7 param_get_byte -EXPORT_SYMBOL vmlinux 0x80a6f192 dquot_disable EXPORT_SYMBOL vmlinux 0x80a717a8 __percpu_counter_compare -EXPORT_SYMBOL vmlinux 0x80b6e447 clean_bdev_aliases -EXPORT_SYMBOL vmlinux 0x80c2b502 register_md_personality -EXPORT_SYMBOL vmlinux 0x80c2f057 mipi_dsi_dcs_set_tear_scanline -EXPORT_SYMBOL vmlinux 0x80c4e637 sock_no_listen +EXPORT_SYMBOL vmlinux 0x80b052db ip6_xmit +EXPORT_SYMBOL vmlinux 0x80b05cad ipv6_dev_get_saddr EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd EXPORT_SYMBOL vmlinux 0x80d68d3e fb_register_client -EXPORT_SYMBOL vmlinux 0x80d6dbc6 jbd2_journal_clear_features -EXPORT_SYMBOL vmlinux 0x80d704a8 __cleancache_invalidate_page -EXPORT_SYMBOL vmlinux 0x80dd7f57 __hw_addr_ref_unsync_dev -EXPORT_SYMBOL vmlinux 0x80de3f36 vfs_mkobj -EXPORT_SYMBOL vmlinux 0x80e1984b elv_rb_add -EXPORT_SYMBOL vmlinux 0x80e360e1 inode_needs_sync -EXPORT_SYMBOL vmlinux 0x80e59c85 dst_destroy -EXPORT_SYMBOL vmlinux 0x80e5e7cc filemap_check_errors +EXPORT_SYMBOL vmlinux 0x80d79b7e tcp_init_sock EXPORT_SYMBOL vmlinux 0x80e5f86f fscrypt_fname_alloc_buffer -EXPORT_SYMBOL vmlinux 0x80efd4fd rproc_add_carveout -EXPORT_SYMBOL vmlinux 0x80f331ed mmc_free_host -EXPORT_SYMBOL vmlinux 0x80f5caf0 unpin_user_pages_dirty_lock EXPORT_SYMBOL vmlinux 0x810bef7e sg_free_append_table -EXPORT_SYMBOL vmlinux 0x810c4e43 try_to_release_page EXPORT_SYMBOL vmlinux 0x8112b3d2 scsi_build_sense_buffer +EXPORT_SYMBOL vmlinux 0x81177252 t10_pi_type1_crc EXPORT_SYMBOL vmlinux 0x81188c30 match_string -EXPORT_SYMBOL vmlinux 0x81193a96 neigh_update -EXPORT_SYMBOL vmlinux 0x8138c74a udp_gro_receive -EXPORT_SYMBOL vmlinux 0x813d4e71 rtnl_set_sk_err -EXPORT_SYMBOL vmlinux 0x813d6eea pci_request_regions_exclusive -EXPORT_SYMBOL vmlinux 0x81424872 skb_prepare_seq_read -EXPORT_SYMBOL vmlinux 0x8145e95e d_set_d_op +EXPORT_SYMBOL vmlinux 0x811d07a8 md_bitmap_startwrite EXPORT_SYMBOL vmlinux 0x81533963 sysfs_format_mac EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal -EXPORT_SYMBOL vmlinux 0x815e76ab rproc_get_by_child EXPORT_SYMBOL vmlinux 0x815f2897 empty_zero_page EXPORT_SYMBOL vmlinux 0x816347c6 agp_device_command -EXPORT_SYMBOL vmlinux 0x816771ab generic_file_readonly_mmap -EXPORT_SYMBOL vmlinux 0x81683f37 netif_set_real_num_tx_queues -EXPORT_SYMBOL vmlinux 0x8168be04 __SCK__tp_func_mmap_lock_released -EXPORT_SYMBOL vmlinux 0x816f255b netdev_info +EXPORT_SYMBOL vmlinux 0x817f9af0 path_is_mountpoint +EXPORT_SYMBOL vmlinux 0x8181e3ae jbd2__journal_start EXPORT_SYMBOL vmlinux 0x818416e1 scsi_set_sense_information -EXPORT_SYMBOL vmlinux 0x8184e323 skb_store_bits -EXPORT_SYMBOL vmlinux 0x81922125 backlight_device_get_by_name -EXPORT_SYMBOL vmlinux 0x8193cd7d pci_get_slot -EXPORT_SYMBOL vmlinux 0x8194749f serio_rescan -EXPORT_SYMBOL vmlinux 0x81a97b9e blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0x818b67c6 tcp_conn_request +EXPORT_SYMBOL vmlinux 0x81971e33 redraw_screen +EXPORT_SYMBOL vmlinux 0x81a3ebc0 fscrypt_zeroout_range EXPORT_SYMBOL vmlinux 0x81ac5e33 trace_print_hex_dump_seq -EXPORT_SYMBOL vmlinux 0x81aea78d __register_chrdev +EXPORT_SYMBOL vmlinux 0x81c5d293 posix_lock_file +EXPORT_SYMBOL vmlinux 0x81c9509d inet6_offloads EXPORT_SYMBOL vmlinux 0x81ce9941 intel_scu_ipc_dev_writev EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset -EXPORT_SYMBOL vmlinux 0x81e26c0b netlink_kernel_release +EXPORT_SYMBOL vmlinux 0x81e122a6 blk_queue_update_dma_pad EXPORT_SYMBOL vmlinux 0x81e6b37f dmi_get_system_info -EXPORT_SYMBOL vmlinux 0x81f1efb0 skb_flow_dissect_ct -EXPORT_SYMBOL vmlinux 0x82151e95 vmap +EXPORT_SYMBOL vmlinux 0x821e3931 pci_assign_resource +EXPORT_SYMBOL vmlinux 0x82285bb8 tty_write_room +EXPORT_SYMBOL vmlinux 0x822a829d tcp_set_rcvlowat +EXPORT_SYMBOL vmlinux 0x82370b05 has_capability EXPORT_SYMBOL vmlinux 0x823c19ea iosf_mbi_unregister_pmic_bus_access_notifier_unlocked -EXPORT_SYMBOL vmlinux 0x824416e9 truncate_setsize -EXPORT_SYMBOL vmlinux 0x82482d00 nexthop_bucket_set_hw_flags -EXPORT_SYMBOL vmlinux 0x8262d4f5 mmc_calc_max_discard +EXPORT_SYMBOL vmlinux 0x824d2792 xfrm_replay_seqhi EXPORT_SYMBOL vmlinux 0x8263a6d9 proc_douintvec -EXPORT_SYMBOL vmlinux 0x827e5463 nvmem_get_mac_address +EXPORT_SYMBOL vmlinux 0x82772e89 mmc_card_is_blockaddr EXPORT_SYMBOL vmlinux 0x828062b1 __frontswap_init -EXPORT_SYMBOL vmlinux 0x828a18b7 t10_pi_type1_crc -EXPORT_SYMBOL vmlinux 0x82983a67 md_handle_request +EXPORT_SYMBOL vmlinux 0x82818bd0 alloc_xenballooned_pages EXPORT_SYMBOL vmlinux 0x82c87ad5 nr_online_nodes -EXPORT_SYMBOL vmlinux 0x82d23bb9 md_check_recovery -EXPORT_SYMBOL vmlinux 0x82d59e7a udp6_seq_ops -EXPORT_SYMBOL vmlinux 0x82fa3a19 nf_ct_get_tuple_skb -EXPORT_SYMBOL vmlinux 0x8301ee96 __SCK__tp_func_read_msr -EXPORT_SYMBOL vmlinux 0x831fd89e tcf_action_check_ctrlact -EXPORT_SYMBOL vmlinux 0x832893fc inc_node_page_state -EXPORT_SYMBOL vmlinux 0x8332c9db cleancache_register_ops +EXPORT_SYMBOL vmlinux 0x82cae276 inet6_del_offload +EXPORT_SYMBOL vmlinux 0x82e750bc current_time +EXPORT_SYMBOL vmlinux 0x83097b0a pcie_get_readrq +EXPORT_SYMBOL vmlinux 0x831203a4 mipi_dsi_dcs_set_display_on +EXPORT_SYMBOL vmlinux 0x83523a92 devfreq_monitor_stop EXPORT_SYMBOL vmlinux 0x83581089 gf128mul_init_4k_lle -EXPORT_SYMBOL vmlinux 0x83676825 to_nd_btt -EXPORT_SYMBOL vmlinux 0x836a6b0c security_sb_clone_mnt_opts -EXPORT_SYMBOL vmlinux 0x8379f220 ip_fraglist_prepare +EXPORT_SYMBOL vmlinux 0x8364f838 delete_from_page_cache +EXPORT_SYMBOL vmlinux 0x836bfed9 datagram_poll +EXPORT_SYMBOL vmlinux 0x8370838f call_netdevice_notifiers +EXPORT_SYMBOL vmlinux 0x8372097b mfd_cell_disable +EXPORT_SYMBOL vmlinux 0x8377f942 __generic_file_write_iter EXPORT_SYMBOL vmlinux 0x837b7b09 __dynamic_pr_debug -EXPORT_SYMBOL vmlinux 0x8381a0d3 md_bitmap_cond_end_sync +EXPORT_SYMBOL vmlinux 0x8383cd6f blk_queue_bounce_limit EXPORT_SYMBOL vmlinux 0x838d2bc8 siphash_3u32 -EXPORT_SYMBOL vmlinux 0x839d2073 inet_put_port -EXPORT_SYMBOL vmlinux 0x83c240f8 block_invalidatepage +EXPORT_SYMBOL vmlinux 0x838eac08 __lock_page +EXPORT_SYMBOL vmlinux 0x83a624a4 tty_register_driver +EXPORT_SYMBOL vmlinux 0x83b99a8b generic_fadvise EXPORT_SYMBOL vmlinux 0x83c52fba xfrm4_protocol_init -EXPORT_SYMBOL vmlinux 0x83cbf26f udp_lib_unhash -EXPORT_SYMBOL vmlinux 0x83d479f9 vfs_parse_fs_param_source -EXPORT_SYMBOL vmlinux 0x83e23efc flow_block_cb_decref -EXPORT_SYMBOL vmlinux 0x83fdf635 try_to_writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0x83fc05db inet_csk_init_xmit_timers EXPORT_SYMBOL vmlinux 0x840342c6 sgl_free +EXPORT_SYMBOL vmlinux 0x841815be serio_open +EXPORT_SYMBOL vmlinux 0x84204d49 dcb_ieee_delapp +EXPORT_SYMBOL vmlinux 0x84251889 xfrm_lookup_route EXPORT_SYMBOL vmlinux 0x8427cc7b _raw_spin_lock_irq -EXPORT_SYMBOL vmlinux 0x842c3dbf generic_copy_file_range EXPORT_SYMBOL vmlinux 0x842c8e9d ioread16 -EXPORT_SYMBOL vmlinux 0x843fb5c3 vmf_insert_mixed_prot -EXPORT_SYMBOL vmlinux 0x84423b60 qdisc_watchdog_schedule_range_ns -EXPORT_SYMBOL vmlinux 0x844b8375 nd_device_notify +EXPORT_SYMBOL vmlinux 0x84423194 sock_no_accept +EXPORT_SYMBOL vmlinux 0x844855a2 __dev_kfree_skb_irq EXPORT_SYMBOL vmlinux 0x8455e3a7 dma_fence_signal_timestamp_locked -EXPORT_SYMBOL vmlinux 0x84659d2f bmap -EXPORT_SYMBOL vmlinux 0x846e6f5a device_get_mac_address -EXPORT_SYMBOL vmlinux 0x846e841f d_find_any_alias -EXPORT_SYMBOL vmlinux 0x84716f2f dquot_get_dqblk -EXPORT_SYMBOL vmlinux 0x8471cc4e __starget_for_each_device -EXPORT_SYMBOL vmlinux 0x84753f2a __inet6_lookup_established +EXPORT_SYMBOL vmlinux 0x845d6b19 pnp_disable_dev +EXPORT_SYMBOL vmlinux 0x846fec9a intel_gmch_probe +EXPORT_SYMBOL vmlinux 0x8477bbce md_done_sync +EXPORT_SYMBOL vmlinux 0x84804ce2 ip6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0x8481066f pm8606_osc_disable EXPORT_SYMBOL vmlinux 0x84823cf3 nla_strscpy +EXPORT_SYMBOL vmlinux 0x848b7a4c generic_writepages EXPORT_SYMBOL vmlinux 0x848d372e iowrite8 -EXPORT_SYMBOL vmlinux 0x848ec261 blk_sync_queue -EXPORT_SYMBOL vmlinux 0x8490009d bio_uninit -EXPORT_SYMBOL vmlinux 0x8498c0ec mmc_set_blocklen -EXPORT_SYMBOL vmlinux 0x849b6a24 mmc_add_host -EXPORT_SYMBOL vmlinux 0x84a2e2c5 vfs_dedupe_file_range_one -EXPORT_SYMBOL vmlinux 0x84a5ae56 __vlan_find_dev_deep_rcu -EXPORT_SYMBOL vmlinux 0x84a8eefc fuse_dequeue_forget -EXPORT_SYMBOL vmlinux 0x84b47d85 peernet2id +EXPORT_SYMBOL vmlinux 0x8498979d pci_request_regions_exclusive +EXPORT_SYMBOL vmlinux 0x849e5a6c param_ops_short +EXPORT_SYMBOL vmlinux 0x84a3fc12 __napi_schedule +EXPORT_SYMBOL vmlinux 0x84a99553 tty_unlock EXPORT_SYMBOL vmlinux 0x84c03e9a rtnl_nla_parse_ifla EXPORT_SYMBOL vmlinux 0x84c1c552 proc_dointvec_ms_jiffies EXPORT_SYMBOL vmlinux 0x84c4040c security_binder_set_context_mgr -EXPORT_SYMBOL vmlinux 0x84fed18a devm_pci_alloc_host_bridge -EXPORT_SYMBOL vmlinux 0x8500fc16 xfrm6_rcv_spi +EXPORT_SYMBOL vmlinux 0x84ca1464 ethtool_op_get_link +EXPORT_SYMBOL vmlinux 0x84caed6d dm_unregister_target +EXPORT_SYMBOL vmlinux 0x84cba552 iterate_supers_type +EXPORT_SYMBOL vmlinux 0x84d6c8da pci_wait_for_pending_transaction +EXPORT_SYMBOL vmlinux 0x84eb9293 blk_put_request +EXPORT_SYMBOL vmlinux 0x84f3b808 file_ns_capable +EXPORT_SYMBOL vmlinux 0x84f66777 pci_dev_put +EXPORT_SYMBOL vmlinux 0x850e5b43 fscrypt_decrypt_bio EXPORT_SYMBOL vmlinux 0x8518a4a6 _raw_spin_trylock_bh -EXPORT_SYMBOL vmlinux 0x8519e8d7 devm_register_reboot_notifier +EXPORT_SYMBOL vmlinux 0x8521d316 security_d_instantiate EXPORT_SYMBOL vmlinux 0x8522d6bc strncpy_from_user -EXPORT_SYMBOL vmlinux 0x853b8e3b tcp_sendmsg -EXPORT_SYMBOL vmlinux 0x85486876 unlock_rename -EXPORT_SYMBOL vmlinux 0x85532264 md_write_end -EXPORT_SYMBOL vmlinux 0x856629d4 fb_show_logo +EXPORT_SYMBOL vmlinux 0x854272ed tcp_ld_RTO_revert +EXPORT_SYMBOL vmlinux 0x854e5c73 mipi_dsi_turn_on_peripheral +EXPORT_SYMBOL vmlinux 0x8562e8b6 inet_frag_find +EXPORT_SYMBOL vmlinux 0x856634e3 rdmacg_try_charge EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked -EXPORT_SYMBOL vmlinux 0x858720b4 simple_statfs +EXPORT_SYMBOL vmlinux 0x856ec4dd __sk_mem_reclaim EXPORT_SYMBOL vmlinux 0x8591d7d5 ledtrig_mtd_activity -EXPORT_SYMBOL vmlinux 0x859504f0 dma_supported -EXPORT_SYMBOL vmlinux 0x85a23259 __tracepoint_kmalloc_node +EXPORT_SYMBOL vmlinux 0x85b411b0 ndo_dflt_fdb_dump EXPORT_SYMBOL vmlinux 0x85b4cf2f utf8nlen -EXPORT_SYMBOL vmlinux 0x85b4e1d0 devm_get_clk_from_child EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states EXPORT_SYMBOL vmlinux 0x85bd1608 __request_region -EXPORT_SYMBOL vmlinux 0x85dea92b flow_block_cb_alloc +EXPORT_SYMBOL vmlinux 0x85c9e6ce kernel_sendmsg_locked +EXPORT_SYMBOL vmlinux 0x85cfcad2 can_nice EXPORT_SYMBOL vmlinux 0x85df9b6c strsep -EXPORT_SYMBOL vmlinux 0x85eef856 dcbnl_ieee_notify +EXPORT_SYMBOL vmlinux 0x85e88702 __netlink_kernel_create EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn EXPORT_SYMBOL vmlinux 0x85fbc931 slhc_uncompress -EXPORT_SYMBOL vmlinux 0x86043eec pcie_port_service_unregister -EXPORT_SYMBOL vmlinux 0x86057d85 fs_bio_set -EXPORT_SYMBOL vmlinux 0x8606ca87 vfs_clone_file_range -EXPORT_SYMBOL vmlinux 0x860b44a6 pnp_release_card_device -EXPORT_SYMBOL vmlinux 0x86139556 i2c_smbus_write_byte -EXPORT_SYMBOL vmlinux 0x861677d6 migrate_page_move_mapping +EXPORT_SYMBOL vmlinux 0x860e296f sock_wake_async +EXPORT_SYMBOL vmlinux 0x86115387 ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0x861371a0 vga_switcheroo_unregister_client +EXPORT_SYMBOL vmlinux 0x86193b47 kthread_create_worker +EXPORT_SYMBOL vmlinux 0x862567d4 security_path_unlink EXPORT_SYMBOL vmlinux 0x863a276a color_table -EXPORT_SYMBOL vmlinux 0x863db293 udp_lib_get_port -EXPORT_SYMBOL vmlinux 0x864fecfd xfrm_unregister_type -EXPORT_SYMBOL vmlinux 0x8672cace cfb_copyarea +EXPORT_SYMBOL vmlinux 0x867239aa sdev_enable_disk_events +EXPORT_SYMBOL vmlinux 0x8688b995 mmc_retune_timer_stop EXPORT_SYMBOL vmlinux 0x868acba5 get_options -EXPORT_SYMBOL vmlinux 0x868ec06b __remove_inode_hash -EXPORT_SYMBOL vmlinux 0x86ab5f15 vme_register_bridge -EXPORT_SYMBOL vmlinux 0x86b385cf amd_iommu_domain_clear_gcr3 -EXPORT_SYMBOL vmlinux 0x86c40711 phy_suspend +EXPORT_SYMBOL vmlinux 0x869dfbe5 netdev_lower_dev_get_private +EXPORT_SYMBOL vmlinux 0x869f7b8e blk_queue_flag_set +EXPORT_SYMBOL vmlinux 0x86a6abb4 dev_remove_offload +EXPORT_SYMBOL vmlinux 0x86b23f92 pci_irq_vector +EXPORT_SYMBOL vmlinux 0x86bc92e1 make_kgid +EXPORT_SYMBOL vmlinux 0x86c44376 agp_free_memory EXPORT_SYMBOL vmlinux 0x86c7272b iosf_mbi_read -EXPORT_SYMBOL vmlinux 0x86d35933 agp_generic_alloc_by_type EXPORT_SYMBOL vmlinux 0x86d52ba5 lookup_constant +EXPORT_SYMBOL vmlinux 0x86d92ea2 sk_free +EXPORT_SYMBOL vmlinux 0x86da80a1 flow_rule_match_enc_ip +EXPORT_SYMBOL vmlinux 0x86e04070 acpi_register_debugger +EXPORT_SYMBOL vmlinux 0x86e11bfa mmc_detect_card_removed EXPORT_SYMBOL vmlinux 0x86f27420 iosf_mbi_block_punit_i2c_access +EXPORT_SYMBOL vmlinux 0x86f32507 xfrm_dev_state_flush EXPORT_SYMBOL vmlinux 0x86fb4536 cpumask_any_and_distribute +EXPORT_SYMBOL vmlinux 0x86fb7d65 pci_bus_read_config_dword EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user +EXPORT_SYMBOL vmlinux 0x8705d2f3 dquot_quota_on +EXPORT_SYMBOL vmlinux 0x87078269 inode_newsize_ok EXPORT_SYMBOL vmlinux 0x8714563b csum_and_copy_from_user -EXPORT_SYMBOL vmlinux 0x8756978d __pci_register_driver +EXPORT_SYMBOL vmlinux 0x8728955a ipv6_select_ident +EXPORT_SYMBOL vmlinux 0x8755564d seg6_hmac_info_add +EXPORT_SYMBOL vmlinux 0x875e197d ip6_fraglist_init EXPORT_SYMBOL vmlinux 0x8761c87b rps_needed EXPORT_SYMBOL vmlinux 0x87706d4e __put_user_nocheck_8 +EXPORT_SYMBOL vmlinux 0x8771bc03 pcie_print_link_status EXPORT_SYMBOL vmlinux 0x87761528 __traceiter_kmem_cache_alloc EXPORT_SYMBOL vmlinux 0x878469bd ZSTD_decompressStream EXPORT_SYMBOL vmlinux 0x87a21cb3 __ubsan_handle_out_of_bounds EXPORT_SYMBOL vmlinux 0x87b8798d sg_next -EXPORT_SYMBOL vmlinux 0x87baeac7 __sk_dst_check -EXPORT_SYMBOL vmlinux 0x87d8f30c nf_getsockopt -EXPORT_SYMBOL vmlinux 0x87f87d38 ps2_sendbyte -EXPORT_SYMBOL vmlinux 0x88067c4c filemap_fault -EXPORT_SYMBOL vmlinux 0x880aa477 netdev_adjacent_change_prepare +EXPORT_SYMBOL vmlinux 0x87bafc6a param_set_hexint +EXPORT_SYMBOL vmlinux 0x87d494c9 fs_param_is_u64 +EXPORT_SYMBOL vmlinux 0x87d796fd __ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0x87d9ec69 fib_notifier_ops_register +EXPORT_SYMBOL vmlinux 0x87dd2324 eth_gro_receive +EXPORT_SYMBOL vmlinux 0x87e6fe9a blk_mq_init_queue +EXPORT_SYMBOL vmlinux 0x880979d9 simple_statfs EXPORT_SYMBOL vmlinux 0x8810754a _find_first_bit -EXPORT_SYMBOL vmlinux 0x881668d5 bio_integrity_trim EXPORT_SYMBOL vmlinux 0x881c4413 gen_pool_first_fit -EXPORT_SYMBOL vmlinux 0x882b02ce devm_of_iomap -EXPORT_SYMBOL vmlinux 0x8847ba4f dev_add_offload -EXPORT_SYMBOL vmlinux 0x8867dfb1 request_firmware_nowait -EXPORT_SYMBOL vmlinux 0x887e3114 pci_release_resource +EXPORT_SYMBOL vmlinux 0x881ce340 iw_handler_get_thrspy +EXPORT_SYMBOL vmlinux 0x881f6272 dev_change_proto_down_generic +EXPORT_SYMBOL vmlinux 0x88232278 __invalidate_device +EXPORT_SYMBOL vmlinux 0x8825719b pci_get_device +EXPORT_SYMBOL vmlinux 0x887cd93d xfrm6_input_addr EXPORT_SYMBOL vmlinux 0x88822d38 unregister_blocking_lsm_notifier +EXPORT_SYMBOL vmlinux 0x88843d8e scsi_track_queue_full +EXPORT_SYMBOL vmlinux 0x8886dda2 locks_copy_lock EXPORT_SYMBOL vmlinux 0x8888f1fe xxh32 -EXPORT_SYMBOL vmlinux 0x888ccb50 ilookup +EXPORT_SYMBOL vmlinux 0x888ca367 i2c_smbus_write_i2c_block_data EXPORT_SYMBOL vmlinux 0x889b1370 _raw_read_trylock -EXPORT_SYMBOL vmlinux 0x889ee1e3 generic_permission +EXPORT_SYMBOL vmlinux 0x88a86b8c netdev_lower_get_next_private_rcu EXPORT_SYMBOL vmlinux 0x88abb78b ZSTD_insertBlock -EXPORT_SYMBOL vmlinux 0x88b103a2 mdio_driver_unregister -EXPORT_SYMBOL vmlinux 0x88c07e7d flow_rule_match_enc_ip -EXPORT_SYMBOL vmlinux 0x88ccb533 neigh_carrier_down -EXPORT_SYMBOL vmlinux 0x88ce4233 skb_page_frag_refill +EXPORT_SYMBOL vmlinux 0x88c74d8f inet6_del_protocol EXPORT_SYMBOL vmlinux 0x88db9f48 __check_object_size -EXPORT_SYMBOL vmlinux 0x88dc6bf2 bdev_check_media_change -EXPORT_SYMBOL vmlinux 0x88dec159 inet6_del_protocol EXPORT_SYMBOL vmlinux 0x88e1d0f0 page_frag_free -EXPORT_SYMBOL vmlinux 0x89231493 simple_dentry_operations -EXPORT_SYMBOL vmlinux 0x8932c5f6 vfio_unregister_notifier +EXPORT_SYMBOL vmlinux 0x88eaeb34 vif_device_init +EXPORT_SYMBOL vmlinux 0x88fea74b __cancel_dirty_page +EXPORT_SYMBOL vmlinux 0x890aa01e xfrm_lookup_with_ifid +EXPORT_SYMBOL vmlinux 0x8920eb02 pci_enable_ptm +EXPORT_SYMBOL vmlinux 0x892e7019 scsi_dma_map +EXPORT_SYMBOL vmlinux 0x893d29d2 alloc_fddidev EXPORT_SYMBOL vmlinux 0x89434b4b radix_tree_tag_clear -EXPORT_SYMBOL vmlinux 0x8945bbcc ip_sock_set_pktinfo -EXPORT_SYMBOL vmlinux 0x8950c946 tcp_seq_stop -EXPORT_SYMBOL vmlinux 0x8965da2a dev_mc_unsync -EXPORT_SYMBOL vmlinux 0x8968b8e5 unregister_fib_notifier -EXPORT_SYMBOL vmlinux 0x896ebe58 tty_port_free_xmit_buf -EXPORT_SYMBOL vmlinux 0x89750fdd read_cache_page -EXPORT_SYMBOL vmlinux 0x8982b353 flow_rule_match_ipv4_addrs -EXPORT_SYMBOL vmlinux 0x898d1e17 skb_seq_read -EXPORT_SYMBOL vmlinux 0x8991873e dev_get_port_parent_id +EXPORT_SYMBOL vmlinux 0x8955804f jbd2_journal_start_commit +EXPORT_SYMBOL vmlinux 0x8957e409 ip_frag_init +EXPORT_SYMBOL vmlinux 0x8967cca7 kernel_sendpage +EXPORT_SYMBOL vmlinux 0x8973b522 uart_add_one_port +EXPORT_SYMBOL vmlinux 0x8985cbe4 __blk_mq_end_request +EXPORT_SYMBOL vmlinux 0x8988ebc1 hdmi_infoframe_log +EXPORT_SYMBOL vmlinux 0x89892724 xfrm_sad_getinfo EXPORT_SYMBOL vmlinux 0x89940875 mutex_lock_interruptible -EXPORT_SYMBOL vmlinux 0x899d3825 skb_vlan_pop -EXPORT_SYMBOL vmlinux 0x89b07f03 tcf_em_unregister -EXPORT_SYMBOL vmlinux 0x89cf3814 mmc_gpiod_request_cd +EXPORT_SYMBOL vmlinux 0x89a6a176 rproc_remove_subdev +EXPORT_SYMBOL vmlinux 0x89b64146 pci_release_region +EXPORT_SYMBOL vmlinux 0x89bc279a cdev_device_add +EXPORT_SYMBOL vmlinux 0x89c12889 path_put +EXPORT_SYMBOL vmlinux 0x89c3fee6 tcp_peek_len EXPORT_SYMBOL vmlinux 0x89d93ef7 __nla_reserve_64bit -EXPORT_SYMBOL vmlinux 0x8a0089ec update_region -EXPORT_SYMBOL vmlinux 0x8a0376d6 mdio_device_reset -EXPORT_SYMBOL vmlinux 0x8a04dbe0 set_cached_acl -EXPORT_SYMBOL vmlinux 0x8a0db3f5 seg6_hmac_net_exit -EXPORT_SYMBOL vmlinux 0x8a1d7443 tcp_seq_start -EXPORT_SYMBOL vmlinux 0x8a220428 security_task_getsecid_obj -EXPORT_SYMBOL vmlinux 0x8a3515dc input_mt_init_slots +EXPORT_SYMBOL vmlinux 0x89e022e8 show_init_ipc_ns +EXPORT_SYMBOL vmlinux 0x89f8620a dev_set_threaded +EXPORT_SYMBOL vmlinux 0x8a01b202 import_iovec +EXPORT_SYMBOL vmlinux 0x8a060e2c phy_queue_state_machine EXPORT_SYMBOL vmlinux 0x8a35b432 sme_me_mask -EXPORT_SYMBOL vmlinux 0x8a443f4f tty_register_device +EXPORT_SYMBOL vmlinux 0x8a368f92 ipv6_dev_find +EXPORT_SYMBOL vmlinux 0x8a3ef9e9 __skb_warn_lro_forwarding +EXPORT_SYMBOL vmlinux 0x8a441758 ip6_dst_hoplimit EXPORT_SYMBOL vmlinux 0x8a47043d LZ4_decompress_safe_continue EXPORT_SYMBOL vmlinux 0x8a490c90 rfkill_set_sw_state -EXPORT_SYMBOL vmlinux 0x8a495e8f truncate_inode_pages_range -EXPORT_SYMBOL vmlinux 0x8a652ef2 fscrypt_zeroout_range +EXPORT_SYMBOL vmlinux 0x8a59c9eb xsk_tx_peek_release_desc_batch +EXPORT_SYMBOL vmlinux 0x8a681f98 padata_free_shell EXPORT_SYMBOL vmlinux 0x8a6c7139 acpi_mask_gpe EXPORT_SYMBOL vmlinux 0x8a7094ba vm_brk_flags EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory -EXPORT_SYMBOL vmlinux 0x8a947751 pci_write_config_word +EXPORT_SYMBOL vmlinux 0x8a8acf84 qdisc_create_dflt +EXPORT_SYMBOL vmlinux 0x8a93a787 input_mt_init_slots +EXPORT_SYMBOL vmlinux 0x8a959124 tcp_sock_set_keepidle EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab -EXPORT_SYMBOL vmlinux 0x8ab0c987 generic_file_llseek_size -EXPORT_SYMBOL vmlinux 0x8ab67902 buffer_check_dirty_writeback +EXPORT_SYMBOL vmlinux 0x8a9bbacf secpath_set +EXPORT_SYMBOL vmlinux 0x8ac210ea security_unix_may_send EXPORT_SYMBOL vmlinux 0x8ac3334b net_dim_get_def_rx_moderation -EXPORT_SYMBOL vmlinux 0x8ac3ec45 is_bad_inode +EXPORT_SYMBOL vmlinux 0x8ac4bfa7 xfrm_trans_queue EXPORT_SYMBOL vmlinux 0x8ac743de sg_copy_buffer -EXPORT_SYMBOL vmlinux 0x8ac7c0ae no_llseek +EXPORT_SYMBOL vmlinux 0x8ae78b57 mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x8ae7c4d1 xfrm_init_replay +EXPORT_SYMBOL vmlinux 0x8af0f2b8 inet_del_offload EXPORT_SYMBOL vmlinux 0x8b0088d1 LZ4_decompress_safe_usingDict -EXPORT_SYMBOL vmlinux 0x8b019e49 blk_pm_runtime_init -EXPORT_SYMBOL vmlinux 0x8b29d74e pnp_device_detach -EXPORT_SYMBOL vmlinux 0x8b37fc28 mark_buffer_dirty -EXPORT_SYMBOL vmlinux 0x8b3a2e48 __dev_kfree_skb_any -EXPORT_SYMBOL vmlinux 0x8b401610 agp_copy_info -EXPORT_SYMBOL vmlinux 0x8b41acb7 from_kprojid_munged -EXPORT_SYMBOL vmlinux 0x8b474cb2 netlink_ns_capable -EXPORT_SYMBOL vmlinux 0x8b5c249f jbd2_submit_inode_data +EXPORT_SYMBOL vmlinux 0x8b02fcbe netdev_class_create_file_ns +EXPORT_SYMBOL vmlinux 0x8b44bfeb dcb_ieee_setapp +EXPORT_SYMBOL vmlinux 0x8b4bc7ea scsi_print_sense +EXPORT_SYMBOL vmlinux 0x8b54572d unix_detach_fds +EXPORT_SYMBOL vmlinux 0x8b5a7df3 page_pool_alloc_frag +EXPORT_SYMBOL vmlinux 0x8b611ea2 key_move EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid -EXPORT_SYMBOL vmlinux 0x8b6b8495 twl6040_get_sysclk -EXPORT_SYMBOL vmlinux 0x8b7e5b35 da903x_query_status +EXPORT_SYMBOL vmlinux 0x8b63e2bb kthread_destroy_worker EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p +EXPORT_SYMBOL vmlinux 0x8b81c29a vfs_symlink +EXPORT_SYMBOL vmlinux 0x8b8b1538 poll_initwait +EXPORT_SYMBOL vmlinux 0x8b8f7966 param_get_short EXPORT_SYMBOL vmlinux 0x8b910be2 errseq_sample -EXPORT_SYMBOL vmlinux 0x8b93a13b _copy_from_iter_nocache EXPORT_SYMBOL vmlinux 0x8b966b63 sn_rtc_cycles_per_second -EXPORT_SYMBOL vmlinux 0x8b97d240 ethtool_op_get_link EXPORT_SYMBOL vmlinux 0x8b989cf9 acpi_bus_can_wakeup EXPORT_SYMBOL vmlinux 0x8b9ea582 ZSTD_copyDCtx -EXPORT_SYMBOL vmlinux 0x8bbe23b7 cros_ec_get_next_event -EXPORT_SYMBOL vmlinux 0x8bcc4b8a blk_mq_unique_tag -EXPORT_SYMBOL vmlinux 0x8bd23843 blk_execute_rq +EXPORT_SYMBOL vmlinux 0x8bc0dec2 fqdir_exit EXPORT_SYMBOL vmlinux 0x8bd577d0 acpi_ut_exit -EXPORT_SYMBOL vmlinux 0x8bf94fa6 path_get -EXPORT_SYMBOL vmlinux 0x8bff1500 netdev_adjacent_change_commit -EXPORT_SYMBOL vmlinux 0x8c238879 fscrypt_decrypt_pagecache_blocks +EXPORT_SYMBOL vmlinux 0x8be4d870 phy_get_eee_err +EXPORT_SYMBOL vmlinux 0x8beca192 __dev_direct_xmit EXPORT_SYMBOL vmlinux 0x8c26d495 prepare_to_wait_event -EXPORT_SYMBOL vmlinux 0x8c320c4b vlan_dev_vlan_proto -EXPORT_SYMBOL vmlinux 0x8c468d21 scsi_device_put -EXPORT_SYMBOL vmlinux 0x8c50e7b0 sock_set_sndtimeo -EXPORT_SYMBOL vmlinux 0x8c5e39df show_init_ipc_ns -EXPORT_SYMBOL vmlinux 0x8c5f2810 tcp_connect +EXPORT_SYMBOL vmlinux 0x8c2e623d cont_write_begin +EXPORT_SYMBOL vmlinux 0x8c3350e5 vfs_fileattr_get +EXPORT_SYMBOL vmlinux 0x8c404926 tcp_parse_options +EXPORT_SYMBOL vmlinux 0x8c479e15 netdev_warn +EXPORT_SYMBOL vmlinux 0x8c4a6dbe dma_unmap_page_attrs +EXPORT_SYMBOL vmlinux 0x8c51ffe7 pnp_get_resource +EXPORT_SYMBOL vmlinux 0x8c53b6a9 ppp_unregister_compressor +EXPORT_SYMBOL vmlinux 0x8c6112bf dev_add_pack EXPORT_SYMBOL vmlinux 0x8c683fcd posix_acl_to_xattr +EXPORT_SYMBOL vmlinux 0x8c6f657e mr_table_alloc EXPORT_SYMBOL vmlinux 0x8c8569cb kstrtoint -EXPORT_SYMBOL vmlinux 0x8c9ab21c wait_on_page_bit +EXPORT_SYMBOL vmlinux 0x8c856eeb dm_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x8c9619a9 d_hash_and_lookup EXPORT_SYMBOL vmlinux 0x8c9e338f acpi_bios_error EXPORT_SYMBOL vmlinux 0x8caf9305 uuid_is_valid EXPORT_SYMBOL vmlinux 0x8cc79cab iowrite16_rep -EXPORT_SYMBOL vmlinux 0x8ccfa891 sk_common_release -EXPORT_SYMBOL vmlinux 0x8cd5f922 pci_get_class +EXPORT_SYMBOL vmlinux 0x8cca3a66 devm_devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0x8ccc0a4c netif_rx_ni +EXPORT_SYMBOL vmlinux 0x8cd0793d pskb_extract EXPORT_SYMBOL vmlinux 0x8cda8029 xen_clear_irq_pending -EXPORT_SYMBOL vmlinux 0x8ce0828e tty_port_put -EXPORT_SYMBOL vmlinux 0x8cee331c page_readlink -EXPORT_SYMBOL vmlinux 0x8cf6733f vfs_dedupe_file_range -EXPORT_SYMBOL vmlinux 0x8cf8cff5 page_get_link -EXPORT_SYMBOL vmlinux 0x8cff1258 skb_flow_get_icmp_tci -EXPORT_SYMBOL vmlinux 0x8d2be0a4 vfs_statfs -EXPORT_SYMBOL vmlinux 0x8d31301a pcie_capability_read_word -EXPORT_SYMBOL vmlinux 0x8d3edc36 __SCK__tp_func_mmap_lock_start_locking -EXPORT_SYMBOL vmlinux 0x8d408612 ndo_dflt_fdb_add +EXPORT_SYMBOL vmlinux 0x8ce6075c ethtool_notify +EXPORT_SYMBOL vmlinux 0x8ce8cac8 dcache_dir_lseek +EXPORT_SYMBOL vmlinux 0x8d2a18ac __netlink_dump_start +EXPORT_SYMBOL vmlinux 0x8d330b10 inet_frag_pull_head +EXPORT_SYMBOL vmlinux 0x8d35ff57 wireless_send_event +EXPORT_SYMBOL vmlinux 0x8d411102 inode_get_bytes +EXPORT_SYMBOL vmlinux 0x8d4a893b twl6040_power +EXPORT_SYMBOL vmlinux 0x8d52692a seg6_push_hmac EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq +EXPORT_SYMBOL vmlinux 0x8d56211b elv_rb_former_request +EXPORT_SYMBOL vmlinux 0x8d5e91be pci_ep_cfs_remove_epf_group EXPORT_SYMBOL vmlinux 0x8d60652c __SCT__tp_func_mmap_lock_released EXPORT_SYMBOL vmlinux 0x8d6aff89 __put_user_nocheck_4 EXPORT_SYMBOL vmlinux 0x8d73278e hex_asc_upper -EXPORT_SYMBOL vmlinux 0x8d80313b __block_write_full_page -EXPORT_SYMBOL vmlinux 0x8d838e55 path_put +EXPORT_SYMBOL vmlinux 0x8d7da845 xsk_clear_rx_need_wakeup EXPORT_SYMBOL vmlinux 0x8d9ca0e6 dma_fence_enable_sw_signaling +EXPORT_SYMBOL vmlinux 0x8d9cdf6d xfrm_policy_byid +EXPORT_SYMBOL vmlinux 0x8d9e6388 neigh_lookup +EXPORT_SYMBOL vmlinux 0x8da216a6 inode_update_time EXPORT_SYMBOL vmlinux 0x8db22efe acpi_setup_gpe_for_wake -EXPORT_SYMBOL vmlinux 0x8dc5c7f7 scsi_remove_target +EXPORT_SYMBOL vmlinux 0x8dc72a7c fget_raw +EXPORT_SYMBOL vmlinux 0x8dcec8a8 skb_csum_hwoffload_help +EXPORT_SYMBOL vmlinux 0x8dcfdb13 set_bh_page +EXPORT_SYMBOL vmlinux 0x8ddb686a cros_ec_query_all EXPORT_SYMBOL vmlinux 0x8ddd8aad schedule_timeout +EXPORT_SYMBOL vmlinux 0x8de0e978 blk_cleanup_queue +EXPORT_SYMBOL vmlinux 0x8de2ed76 kmem_cache_create_usercopy EXPORT_SYMBOL vmlinux 0x8dee722d _raw_read_lock_bh +EXPORT_SYMBOL vmlinux 0x8df511cd xfrm_policy_destroy EXPORT_SYMBOL vmlinux 0x8df92f66 memchr_inv EXPORT_SYMBOL vmlinux 0x8df9dd10 guid_null -EXPORT_SYMBOL vmlinux 0x8e0c5026 jbd2_journal_wipe +EXPORT_SYMBOL vmlinux 0x8e093338 ps2_init +EXPORT_SYMBOL vmlinux 0x8e138545 input_unregister_handler EXPORT_SYMBOL vmlinux 0x8e17b3ae idr_destroy -EXPORT_SYMBOL vmlinux 0x8e201701 genphy_c37_config_aneg EXPORT_SYMBOL vmlinux 0x8e21c9a1 dma_fence_add_callback -EXPORT_SYMBOL vmlinux 0x8e2d1236 ex_handler_wrmsr_unsafe -EXPORT_SYMBOL vmlinux 0x8e385d3f jbd2_journal_stop -EXPORT_SYMBOL vmlinux 0x8e492d22 mipi_dsi_turn_on_peripheral +EXPORT_SYMBOL vmlinux 0x8e2bf352 agp_generic_free_by_type +EXPORT_SYMBOL vmlinux 0x8e3b153a devm_pci_remap_cfgspace +EXPORT_SYMBOL vmlinux 0x8e3e0f7d fault_in_readable +EXPORT_SYMBOL vmlinux 0x8e3fd838 security_inode_getsecctx +EXPORT_SYMBOL vmlinux 0x8e4144fa inet_csk_complete_hashdance +EXPORT_SYMBOL vmlinux 0x8e4c8512 rproc_add_subdev EXPORT_SYMBOL vmlinux 0x8e663d0f zalloc_cpumask_var_node -EXPORT_SYMBOL vmlinux 0x8e677803 dev_get_phys_port_id +EXPORT_SYMBOL vmlinux 0x8e6cf60a flow_rule_match_enc_opts +EXPORT_SYMBOL vmlinux 0x8e6ecfff __dynamic_dev_dbg +EXPORT_SYMBOL vmlinux 0x8e70f58c configfs_unregister_default_group +EXPORT_SYMBOL vmlinux 0x8e792e88 dquot_quota_on_mount EXPORT_SYMBOL vmlinux 0x8e93bd24 security_secctx_to_secid +EXPORT_SYMBOL vmlinux 0x8e94a3ac vc_cons EXPORT_SYMBOL vmlinux 0x8eaf2a5f vga_switcheroo_unregister_handler -EXPORT_SYMBOL vmlinux 0x8eecd44a ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0x8eba188b input_mt_get_slot_by_key +EXPORT_SYMBOL vmlinux 0x8eba65f1 sock_set_priority +EXPORT_SYMBOL vmlinux 0x8ee669ec skb_checksum_help +EXPORT_SYMBOL vmlinux 0x8efb166a tcp_poll EXPORT_SYMBOL vmlinux 0x8f01afd6 twl6030_interrupt_mask -EXPORT_SYMBOL vmlinux 0x8f176efe xfrm_policy_flush -EXPORT_SYMBOL vmlinux 0x8f1879f4 vlan_filter_drop_vids -EXPORT_SYMBOL vmlinux 0x8f1dee96 registered_fb -EXPORT_SYMBOL vmlinux 0x8f1ee7ba vfs_setpos EXPORT_SYMBOL vmlinux 0x8f2703b7 wbinvd_on_all_cpus -EXPORT_SYMBOL vmlinux 0x8f2b5ecd mmc_gpio_get_cd -EXPORT_SYMBOL vmlinux 0x8f2bae0e vfs_iocb_iter_read -EXPORT_SYMBOL vmlinux 0x8f38d383 ex_handler_default -EXPORT_SYMBOL vmlinux 0x8f3a1064 iov_iter_alignment -EXPORT_SYMBOL vmlinux 0x8f645375 security_unix_stream_connect -EXPORT_SYMBOL vmlinux 0x8f806b77 vga_set_legacy_decoding +EXPORT_SYMBOL vmlinux 0x8f37d087 clean_bdev_aliases +EXPORT_SYMBOL vmlinux 0x8f427444 devm_gen_pool_create +EXPORT_SYMBOL vmlinux 0x8f50bbd3 inet_del_protocol +EXPORT_SYMBOL vmlinux 0x8f540031 mr_dump +EXPORT_SYMBOL vmlinux 0x8f6b6f83 d_tmpfile EXPORT_SYMBOL vmlinux 0x8f80bf11 acpi_install_gpe_raw_handler -EXPORT_SYMBOL vmlinux 0x8f974f98 mipi_dsi_driver_unregister +EXPORT_SYMBOL vmlinux 0x8f8c6591 neigh_seq_stop +EXPORT_SYMBOL vmlinux 0x8f925fc5 rps_may_expire_flow EXPORT_SYMBOL vmlinux 0x8f996a30 ethtool_convert_legacy_u32_to_link_mode EXPORT_SYMBOL vmlinux 0x8f9c199c __get_user_2 EXPORT_SYMBOL vmlinux 0x8fa25c24 xa_find -EXPORT_SYMBOL vmlinux 0x8fae6984 seq_puts -EXPORT_SYMBOL vmlinux 0x8fb630d1 mipi_dsi_set_maximum_return_packet_size -EXPORT_SYMBOL vmlinux 0x8fba7c3a tty_port_destroy -EXPORT_SYMBOL vmlinux 0x8fbb933f inet6_getname -EXPORT_SYMBOL vmlinux 0x8fbbeafe refresh_frequency_limits -EXPORT_SYMBOL vmlinux 0x8fc2dd9b tcp_v4_syn_recv_sock -EXPORT_SYMBOL vmlinux 0x8fd652db i2c_transfer_buffer_flags -EXPORT_SYMBOL vmlinux 0x8fd6d1b3 locks_lock_inode_wait +EXPORT_SYMBOL vmlinux 0x8fa7b668 key_invalidate +EXPORT_SYMBOL vmlinux 0x8fbb2a40 xp_dma_map +EXPORT_SYMBOL vmlinux 0x8fc33178 keyring_alloc EXPORT_SYMBOL vmlinux 0x8fdb0752 abort_creds +EXPORT_SYMBOL vmlinux 0x8fdd3ec5 pcie_set_readrq EXPORT_SYMBOL vmlinux 0x8ff89ed0 seg6_hmac_exit EXPORT_SYMBOL vmlinux 0x90006be6 dm_kcopyd_client_flush -EXPORT_SYMBOL vmlinux 0x9002ebff put_cmsg_scm_timestamping64 -EXPORT_SYMBOL vmlinux 0x900c3aa3 register_mii_tstamp_controller -EXPORT_SYMBOL vmlinux 0x90290143 __netdev_alloc_skb +EXPORT_SYMBOL vmlinux 0x90057f5a ether_setup +EXPORT_SYMBOL vmlinux 0x901f3488 vm_map_ram EXPORT_SYMBOL vmlinux 0x902d8722 vme_slave_get EXPORT_SYMBOL vmlinux 0x9034a696 mempool_destroy +EXPORT_SYMBOL vmlinux 0x9046887e xfrm_policy_insert +EXPORT_SYMBOL vmlinux 0x90491936 __skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x904bc845 ppp_input_error +EXPORT_SYMBOL vmlinux 0x904dae1a eth_header_parse EXPORT_SYMBOL vmlinux 0x905695ab sg_copy_from_buffer EXPORT_SYMBOL vmlinux 0x90576ec4 vmemdup_user -EXPORT_SYMBOL vmlinux 0x90597ce5 gro_find_complete_by_type -EXPORT_SYMBOL vmlinux 0x9075d91e __xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x906dc86b __blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0x9070d507 udp_poll +EXPORT_SYMBOL vmlinux 0x90783bc8 to_nd_dax EXPORT_SYMBOL vmlinux 0x907ea00e set_security_override -EXPORT_SYMBOL vmlinux 0x90967403 skb_flow_dissect_meta -EXPORT_SYMBOL vmlinux 0x90974e8d poll_freewait -EXPORT_SYMBOL vmlinux 0x90996840 tty_port_close -EXPORT_SYMBOL vmlinux 0x909afcd2 wait_on_page_private_2_killable -EXPORT_SYMBOL vmlinux 0x90ab3247 param_set_int +EXPORT_SYMBOL vmlinux 0x90badea1 netpoll_print_options +EXPORT_SYMBOL vmlinux 0x90d6353e serial8250_register_8250_port EXPORT_SYMBOL vmlinux 0x90e273e2 cred_fscmp -EXPORT_SYMBOL vmlinux 0x91089de6 devm_register_netdev -EXPORT_SYMBOL vmlinux 0x910d521c xfrm_policy_bysel_ctx +EXPORT_SYMBOL vmlinux 0x91090675 vlan_filter_drop_vids EXPORT_SYMBOL vmlinux 0x9114b616 __xa_alloc -EXPORT_SYMBOL vmlinux 0x913430da md_update_sb -EXPORT_SYMBOL vmlinux 0x9155b660 proto_register +EXPORT_SYMBOL vmlinux 0x911902e4 devfreq_add_governor +EXPORT_SYMBOL vmlinux 0x911d6129 vme_register_error_handler +EXPORT_SYMBOL vmlinux 0x91241eb0 tcp_timewait_state_process EXPORT_SYMBOL vmlinux 0x91607d95 set_memory_wb -EXPORT_SYMBOL vmlinux 0x91629c28 vme_dma_request EXPORT_SYMBOL vmlinux 0x9166fada strncpy -EXPORT_SYMBOL vmlinux 0x9171df7d key_type_keyring EXPORT_SYMBOL vmlinux 0x9176145b acpi_install_global_event_handler EXPORT_SYMBOL vmlinux 0x919c58f3 __clzsi2 -EXPORT_SYMBOL vmlinux 0x919e8978 tty_port_raise_dtr_rts 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 0x91b96a27 vfs_getattr -EXPORT_SYMBOL vmlinux 0x91bc9797 vfs_create +EXPORT_SYMBOL vmlinux 0x91bb6205 vlan_filter_push_vids EXPORT_SYMBOL vmlinux 0x91c0980e icst_hz -EXPORT_SYMBOL vmlinux 0x91c6f44b gro_cells_receive -EXPORT_SYMBOL vmlinux 0x91c84b6b skb_checksum_trimmed +EXPORT_SYMBOL vmlinux 0x91c3df3d md_reap_sync_thread +EXPORT_SYMBOL vmlinux 0x91c85fa1 __tracepoint_kmem_cache_alloc EXPORT_SYMBOL vmlinux 0x91f44510 idr_alloc_cyclic EXPORT_SYMBOL vmlinux 0x91f68ea1 __hw_addr_sync -EXPORT_SYMBOL vmlinux 0x9209f02a kernel_recvmsg -EXPORT_SYMBOL vmlinux 0x920eaddd ip_mc_leave_group -EXPORT_SYMBOL vmlinux 0x92111604 generic_fill_statx_attr +EXPORT_SYMBOL vmlinux 0x91f809bd set_pages_array_wb +EXPORT_SYMBOL vmlinux 0x9211766e kfree_skb_partial +EXPORT_SYMBOL vmlinux 0x9218b718 mipi_dsi_dcs_get_pixel_format EXPORT_SYMBOL vmlinux 0x922f45a6 __bitmap_clear -EXPORT_SYMBOL vmlinux 0x92361ec8 __neigh_event_send EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get -EXPORT_SYMBOL vmlinux 0x924ac9c8 arch_debugfs_dir -EXPORT_SYMBOL vmlinux 0x925061c9 dst_cow_metrics_generic EXPORT_SYMBOL vmlinux 0x92540fbf finish_wait +EXPORT_SYMBOL vmlinux 0x9257233f pci_choose_state EXPORT_SYMBOL vmlinux 0x9258c776 hdmi_vendor_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0x926b5cba block_write_begin -EXPORT_SYMBOL vmlinux 0x92774cf8 __kfence_pool -EXPORT_SYMBOL vmlinux 0x9278b68e mark_page_accessed -EXPORT_SYMBOL vmlinux 0x927ee065 netdev_unbind_sb_channel -EXPORT_SYMBOL vmlinux 0x92852a04 acpi_mdiobus_register +EXPORT_SYMBOL vmlinux 0x9264ff4b xfrm4_protocol_register +EXPORT_SYMBOL vmlinux 0x9272837b free_buffer_head +EXPORT_SYMBOL vmlinux 0x92799ecb seq_dentry +EXPORT_SYMBOL vmlinux 0x9283c774 prepare_kernel_cred EXPORT_SYMBOL vmlinux 0x92897e3d default_idle EXPORT_SYMBOL vmlinux 0x9291cd3b memdup_user EXPORT_SYMBOL vmlinux 0x92997ed8 _printk +EXPORT_SYMBOL vmlinux 0x92a257b7 sync_blockdev EXPORT_SYMBOL vmlinux 0x92a51e56 acpi_debug_print_raw -EXPORT_SYMBOL vmlinux 0x92a5ad5c vmf_insert_mixed_mkwrite +EXPORT_SYMBOL vmlinux 0x92a5c8c3 sget_fc +EXPORT_SYMBOL vmlinux 0x92afe706 pci_ep_cfs_add_epc_group +EXPORT_SYMBOL vmlinux 0x92b262a7 dma_unmap_resource +EXPORT_SYMBOL vmlinux 0x92b67908 blk_queue_max_hw_sectors EXPORT_SYMBOL vmlinux 0x92b99a33 acpi_put_table EXPORT_SYMBOL vmlinux 0x92b9b180 slash_name +EXPORT_SYMBOL vmlinux 0x92c45385 scsi_bios_ptable EXPORT_SYMBOL vmlinux 0x92d5838e request_threaded_irq -EXPORT_SYMBOL vmlinux 0x92e3e869 register_quota_format EXPORT_SYMBOL vmlinux 0x92e683f5 down_timeout EXPORT_SYMBOL vmlinux 0x92ec510d jiffies64_to_msecs EXPORT_SYMBOL vmlinux 0x92fa5abb vme_lm_detach -EXPORT_SYMBOL vmlinux 0x92ffcae0 km_policy_expired EXPORT_SYMBOL vmlinux 0x93022ba6 __scsi_format_command EXPORT_SYMBOL vmlinux 0x9305f8e6 cpufreq_get -EXPORT_SYMBOL vmlinux 0x932240c2 vfs_iter_write -EXPORT_SYMBOL vmlinux 0x93337b49 dev_pm_opp_register_notifier -EXPORT_SYMBOL vmlinux 0x933604fc vfs_unlink -EXPORT_SYMBOL vmlinux 0x933978bc sock_create_kern -EXPORT_SYMBOL vmlinux 0x936857ef __pskb_copy_fclone -EXPORT_SYMBOL vmlinux 0x936e6c2c follow_down +EXPORT_SYMBOL vmlinux 0x93098c18 dm_table_event +EXPORT_SYMBOL vmlinux 0x932c48c0 devm_extcon_register_notifier +EXPORT_SYMBOL vmlinux 0x932fa416 input_event +EXPORT_SYMBOL vmlinux 0x932fe719 page_pool_destroy +EXPORT_SYMBOL vmlinux 0x93588160 unregister_cdrom +EXPORT_SYMBOL vmlinux 0x9358b509 mmc_gpio_set_cd_isr +EXPORT_SYMBOL vmlinux 0x9360c215 ip_mc_join_group +EXPORT_SYMBOL vmlinux 0x93655795 tcp_disconnect +EXPORT_SYMBOL vmlinux 0x9376d699 path_is_under EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid +EXPORT_SYMBOL vmlinux 0x9379ebb2 rtc_add_group +EXPORT_SYMBOL vmlinux 0x937e4684 phy_ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0x9386d5fe jbd2_journal_get_write_access +EXPORT_SYMBOL vmlinux 0x938d30ed path_get +EXPORT_SYMBOL vmlinux 0x938f2a9b dma_resv_reserve_shared +EXPORT_SYMBOL vmlinux 0x9392ae1c pin_user_pages_locked +EXPORT_SYMBOL vmlinux 0x9398102e flow_rule_match_enc_ports +EXPORT_SYMBOL vmlinux 0x939cc9c7 mipi_dsi_dcs_exit_sleep_mode EXPORT_SYMBOL vmlinux 0x93a6e0b2 io_schedule EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier -EXPORT_SYMBOL vmlinux 0x93b96132 skb_flow_dissect_tunnel_info -EXPORT_SYMBOL vmlinux 0x93ba0d6f phy_queue_state_machine -EXPORT_SYMBOL vmlinux 0x93c1f057 set_binfmt -EXPORT_SYMBOL vmlinux 0x93ca90d9 tcf_exts_destroy -EXPORT_SYMBOL vmlinux 0x93cfa690 xfrm6_protocol_register +EXPORT_SYMBOL vmlinux 0x93d43f53 ip6_dst_alloc EXPORT_SYMBOL vmlinux 0x93d6dd8c complete_all -EXPORT_SYMBOL vmlinux 0x93e0e1a5 page_pool_create -EXPORT_SYMBOL vmlinux 0x93e4f158 nd_dev_to_uuid -EXPORT_SYMBOL vmlinux 0x93eb2cae gnet_stats_start_copy +EXPORT_SYMBOL vmlinux 0x93e606b7 pin_user_pages_remote +EXPORT_SYMBOL vmlinux 0x93ea8ab4 inc_nlink +EXPORT_SYMBOL vmlinux 0x93eb3ce5 vme_irq_handler EXPORT_SYMBOL vmlinux 0x93f12561 nla_put -EXPORT_SYMBOL vmlinux 0x940bf49b kernel_bind -EXPORT_SYMBOL vmlinux 0x941a3f88 filemap_flush -EXPORT_SYMBOL vmlinux 0x94261939 inet_register_protosw -EXPORT_SYMBOL vmlinux 0x9427605e iov_iter_init +EXPORT_SYMBOL vmlinux 0x93fc7564 tcf_action_exec +EXPORT_SYMBOL vmlinux 0x940de981 component_match_add_release +EXPORT_SYMBOL vmlinux 0x941bc9a6 clocksource_unregister EXPORT_SYMBOL vmlinux 0x9428f816 dim_turn -EXPORT_SYMBOL vmlinux 0x94365bd1 tty_wait_until_sent -EXPORT_SYMBOL vmlinux 0x943728f9 nf_log_unbind_pf EXPORT_SYMBOL vmlinux 0x944375db _totalram_pages EXPORT_SYMBOL vmlinux 0x944a564d is_console_locked -EXPORT_SYMBOL vmlinux 0x944baed9 __i2c_transfer +EXPORT_SYMBOL vmlinux 0x944e4b0b _copy_from_iter +EXPORT_SYMBOL vmlinux 0x944f4d12 kmem_cache_shrink +EXPORT_SYMBOL vmlinux 0x945faf13 __tracepoint_mmap_lock_acquire_returned +EXPORT_SYMBOL vmlinux 0x946fd466 rproc_elf_find_loaded_rsc_table EXPORT_SYMBOL vmlinux 0x947243c9 convert_art_to_tsc_ns -EXPORT_SYMBOL vmlinux 0x9474da40 tcp_shutdown -EXPORT_SYMBOL vmlinux 0x9478ce5c cfb_fillrect +EXPORT_SYMBOL vmlinux 0x94751d8d tcp_getsockopt EXPORT_SYMBOL vmlinux 0x9487d3e1 ns_capable -EXPORT_SYMBOL vmlinux 0x9487db54 __ClearPageMovable EXPORT_SYMBOL vmlinux 0x9493fc86 node_states EXPORT_SYMBOL vmlinux 0x94961283 vunmap -EXPORT_SYMBOL vmlinux 0x949dfff7 dev_set_mtu -EXPORT_SYMBOL vmlinux 0x94b2a3ae uart_resume_port +EXPORT_SYMBOL vmlinux 0x94a6d18f block_page_mkwrite EXPORT_SYMBOL vmlinux 0x94bb7ec3 gen_pool_dma_zalloc_algo EXPORT_SYMBOL vmlinux 0x94bf03ca utf8_to_utf32 -EXPORT_SYMBOL vmlinux 0x94dcd53b vfs_readlink +EXPORT_SYMBOL vmlinux 0x94bf6f9f proc_symlink +EXPORT_SYMBOL vmlinux 0x94c43936 dev_load +EXPORT_SYMBOL vmlinux 0x94c6ffef simple_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0x94e0d44a security_binder_transfer_file EXPORT_SYMBOL vmlinux 0x94e50ad4 call_fib_notifier -EXPORT_SYMBOL vmlinux 0x94ff2b15 md_bitmap_sync_with_cluster +EXPORT_SYMBOL vmlinux 0x94e9e7c2 mdiobus_write +EXPORT_SYMBOL vmlinux 0x94eb877c __vlan_find_dev_deep_rcu +EXPORT_SYMBOL vmlinux 0x94f1b84a xsk_set_rx_need_wakeup EXPORT_SYMBOL vmlinux 0x9507c90f copy_fsxattr_to_user -EXPORT_SYMBOL vmlinux 0x950b47b9 ip_options_rcv_srr -EXPORT_SYMBOL vmlinux 0x95123238 security_sock_rcv_skb -EXPORT_SYMBOL vmlinux 0x951bad73 mipi_dsi_dcs_enter_sleep_mode -EXPORT_SYMBOL vmlinux 0x952e77ed inetdev_by_index -EXPORT_SYMBOL vmlinux 0x953d5440 dev_uc_init -EXPORT_SYMBOL vmlinux 0x95449e58 scsi_dma_map +EXPORT_SYMBOL vmlinux 0x9509d1bf ndo_dflt_fdb_add +EXPORT_SYMBOL vmlinux 0x950dfc7c iov_iter_npages +EXPORT_SYMBOL vmlinux 0x95177181 sk_mc_loop +EXPORT_SYMBOL vmlinux 0x9517af53 flow_rule_match_basic +EXPORT_SYMBOL vmlinux 0x9524a6a2 vmf_insert_pfn +EXPORT_SYMBOL vmlinux 0x953309b4 d_find_alias EXPORT_SYMBOL vmlinux 0x954cef6f init_on_alloc EXPORT_SYMBOL vmlinux 0x954f099c idr_preload -EXPORT_SYMBOL vmlinux 0x955540be devm_ioremap -EXPORT_SYMBOL vmlinux 0x9570f06c tty_register_driver -EXPORT_SYMBOL vmlinux 0x95787976 blk_rq_map_kern -EXPORT_SYMBOL vmlinux 0x957fe2be empty_aops -EXPORT_SYMBOL vmlinux 0x959311be flow_indr_block_cb_alloc +EXPORT_SYMBOL vmlinux 0x956b5d73 param_get_bool +EXPORT_SYMBOL vmlinux 0x957b7d6f __test_set_page_writeback +EXPORT_SYMBOL vmlinux 0x9590b782 trace_event_printf +EXPORT_SYMBOL vmlinux 0x959b422c iov_iter_bvec +EXPORT_SYMBOL vmlinux 0x959c7b4a mdiobus_write_nested +EXPORT_SYMBOL vmlinux 0x95a24cd9 jbd2_journal_flush EXPORT_SYMBOL vmlinux 0x95a67b07 udp_table -EXPORT_SYMBOL vmlinux 0x95ce1a55 pci_bus_read_config_byte -EXPORT_SYMBOL vmlinux 0x95ea0e25 ether_setup -EXPORT_SYMBOL vmlinux 0x95ea4d66 inode_nohighmem -EXPORT_SYMBOL vmlinux 0x95f91623 max8925_bulk_write -EXPORT_SYMBOL vmlinux 0x961f80de inet_csk_accept +EXPORT_SYMBOL vmlinux 0x95d138e7 mini_qdisc_pair_swap +EXPORT_SYMBOL vmlinux 0x95f1a9d8 agp_generic_insert_memory +EXPORT_SYMBOL vmlinux 0x960178d3 skb_seq_read +EXPORT_SYMBOL vmlinux 0x96047a9d alloc_pages EXPORT_SYMBOL vmlinux 0x9625695d acpi_install_gpe_block +EXPORT_SYMBOL vmlinux 0x9626c9da console_start EXPORT_SYMBOL vmlinux 0x962c4977 clkdev_add -EXPORT_SYMBOL vmlinux 0x963a5831 dqput -EXPORT_SYMBOL vmlinux 0x963d02f6 register_filesystem -EXPORT_SYMBOL vmlinux 0x9654cb7b xp_set_rxq_info -EXPORT_SYMBOL vmlinux 0x9657fc74 xsk_tx_completed -EXPORT_SYMBOL vmlinux 0x96675583 bdevname +EXPORT_SYMBOL vmlinux 0x963da7d5 dev_remove_pack +EXPORT_SYMBOL vmlinux 0x964479ff skb_free_datagram +EXPORT_SYMBOL vmlinux 0x9647338a __xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x9654ec66 ps2_handle_response +EXPORT_SYMBOL vmlinux 0x96682acd serio_close +EXPORT_SYMBOL vmlinux 0x966f41ad blk_get_request +EXPORT_SYMBOL vmlinux 0x967e2392 vm_insert_pages EXPORT_SYMBOL vmlinux 0x96848186 scnprintf +EXPORT_SYMBOL vmlinux 0x968ccc31 acpi_bus_get_device EXPORT_SYMBOL vmlinux 0x96b29254 strncasecmp -EXPORT_SYMBOL vmlinux 0x96bd2551 security_inode_listsecurity +EXPORT_SYMBOL vmlinux 0x96b7871b __phy_write_mmd EXPORT_SYMBOL vmlinux 0x96c17136 fb_var_to_videomode -EXPORT_SYMBOL vmlinux 0x96caa963 audit_log EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string -EXPORT_SYMBOL vmlinux 0x96d6995e wake_up_process -EXPORT_SYMBOL vmlinux 0x96da559e block_truncate_page +EXPORT_SYMBOL vmlinux 0x96e3c5f3 tcp_v4_md5_hash_skb EXPORT_SYMBOL vmlinux 0x96e5d30f gen_pool_set_algo EXPORT_SYMBOL vmlinux 0x96eab78b iosf_mbi_modify EXPORT_SYMBOL vmlinux 0x96fab350 dim_park_on_top -EXPORT_SYMBOL vmlinux 0x96fd1b7b alloc_anon_inode -EXPORT_SYMBOL vmlinux 0x9727f88f sock_kzfree_s -EXPORT_SYMBOL vmlinux 0x9734b0d6 pci_restore_state +EXPORT_SYMBOL vmlinux 0x97070f37 finish_swait +EXPORT_SYMBOL vmlinux 0x970f0d1f inet_release +EXPORT_SYMBOL vmlinux 0x97124d04 scsi_device_quiesce +EXPORT_SYMBOL vmlinux 0x973471a5 __tracepoint_dma_fence_enable_signal EXPORT_SYMBOL vmlinux 0x973fa82e register_acpi_notifier EXPORT_SYMBOL vmlinux 0x9746eb89 ZSTD_decompressBegin_usingDict -EXPORT_SYMBOL vmlinux 0x9747034e __scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x974b6ea5 xfrm_state_flush EXPORT_SYMBOL vmlinux 0x97651e6c vmemmap_base -EXPORT_SYMBOL vmlinux 0x9774b1e5 netdev_lower_get_next_private_rcu -EXPORT_SYMBOL vmlinux 0x97846594 intel_gmch_probe -EXPORT_SYMBOL vmlinux 0x9784d77b __sock_cmsg_send -EXPORT_SYMBOL vmlinux 0x97919293 rt6_lookup -EXPORT_SYMBOL vmlinux 0x9791fada copy_page_to_iter +EXPORT_SYMBOL vmlinux 0x978214f4 simple_link +EXPORT_SYMBOL vmlinux 0x978d22b2 pci_alloc_irq_vectors_affinity EXPORT_SYMBOL vmlinux 0x97934ecf del_timer_sync -EXPORT_SYMBOL vmlinux 0x97a3d5f1 tcp_fastopen_defer_connect +EXPORT_SYMBOL vmlinux 0x97950b07 tcp_sock_set_user_timeout +EXPORT_SYMBOL vmlinux 0x979728ec blkdev_issue_discard EXPORT_SYMBOL vmlinux 0x97a57333 crc_t10dif_update EXPORT_SYMBOL vmlinux 0x97a841aa textsearch_unregister EXPORT_SYMBOL vmlinux 0x97adb487 utf8s_to_utf16s -EXPORT_SYMBOL vmlinux 0x97b0f585 page_pool_put_page +EXPORT_SYMBOL vmlinux 0x97b28050 iov_iter_advance EXPORT_SYMBOL vmlinux 0x97bdfa60 scsi_dev_info_remove_list -EXPORT_SYMBOL vmlinux 0x97c34bed dm_mq_kick_requeue_list -EXPORT_SYMBOL vmlinux 0x97cc95fc d_move -EXPORT_SYMBOL vmlinux 0x97e1b36b tcp_mmap +EXPORT_SYMBOL vmlinux 0x97e241e2 migrate_page_states EXPORT_SYMBOL vmlinux 0x97e2789a commit_creds -EXPORT_SYMBOL vmlinux 0x97e78b71 dm_table_get_mode -EXPORT_SYMBOL vmlinux 0x9828b0d1 get_tree_bdev +EXPORT_SYMBOL vmlinux 0x97ed1f5b fault_in_iov_iter_readable +EXPORT_SYMBOL vmlinux 0x97ede805 uart_resume_port +EXPORT_SYMBOL vmlinux 0x97fe9431 simple_transaction_set +EXPORT_SYMBOL vmlinux 0x980dafb4 dma_sync_sg_for_device +EXPORT_SYMBOL vmlinux 0x9824ff20 tcp_v4_do_rcv EXPORT_SYMBOL vmlinux 0x9829fc11 __kfifo_out_peek_r -EXPORT_SYMBOL vmlinux 0x9835ea10 input_set_max_poll_interval -EXPORT_SYMBOL vmlinux 0x9855cc9f proc_create_single_data -EXPORT_SYMBOL vmlinux 0x9868613b vme_irq_free -EXPORT_SYMBOL vmlinux 0x98688f10 rproc_put -EXPORT_SYMBOL vmlinux 0x987078f9 vfs_get_link -EXPORT_SYMBOL vmlinux 0x98839392 nvdimm_check_and_set_ro -EXPORT_SYMBOL vmlinux 0x98875472 inet_stream_connect -EXPORT_SYMBOL vmlinux 0x989f6c41 set_disk_ro -EXPORT_SYMBOL vmlinux 0x98b2da24 simple_get_link -EXPORT_SYMBOL vmlinux 0x98bc5751 tcf_register_action +EXPORT_SYMBOL vmlinux 0x982a8655 input_mt_assign_slots +EXPORT_SYMBOL vmlinux 0x982e62b8 skb_split +EXPORT_SYMBOL vmlinux 0x984f5cee rt_dst_clone +EXPORT_SYMBOL vmlinux 0x985185d7 blk_post_runtime_suspend +EXPORT_SYMBOL vmlinux 0x985ecefb __module_put_and_exit +EXPORT_SYMBOL vmlinux 0x98614b39 vc_resize +EXPORT_SYMBOL vmlinux 0x9862b6ac unregister_console +EXPORT_SYMBOL vmlinux 0x98659c49 mipi_dsi_device_unregister +EXPORT_SYMBOL vmlinux 0x989312ef param_set_ullong +EXPORT_SYMBOL vmlinux 0x98a15a64 phy_ethtool_nway_reset +EXPORT_SYMBOL vmlinux 0x98b258fd pci_get_slot +EXPORT_SYMBOL vmlinux 0x98b433fa tcp_enter_cwr EXPORT_SYMBOL vmlinux 0x98c039dc dma_fence_wait_timeout EXPORT_SYMBOL vmlinux 0x98c89ade security_xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x98deee34 inet_frag_destroy EXPORT_SYMBOL vmlinux 0x98e508ef ignore_console_lock_warning -EXPORT_SYMBOL vmlinux 0x98e5e8ad rtc_add_group +EXPORT_SYMBOL vmlinux 0x98e84963 seq_write +EXPORT_SYMBOL vmlinux 0x98f2df97 ip_tunnel_header_ops +EXPORT_SYMBOL vmlinux 0x98fcf76e gnet_stats_start_copy EXPORT_SYMBOL vmlinux 0x99078b39 trace_print_flags_seq -EXPORT_SYMBOL vmlinux 0x9911650e sk_stop_timer -EXPORT_SYMBOL vmlinux 0x99263ba4 skb_try_coalesce -EXPORT_SYMBOL vmlinux 0x99360eec netdev_notify_peers +EXPORT_SYMBOL vmlinux 0x990bbd89 unlock_page_memcg +EXPORT_SYMBOL vmlinux 0x990d0a88 dquot_file_open +EXPORT_SYMBOL vmlinux 0x990fad1a sget +EXPORT_SYMBOL vmlinux 0x9910158d sdev_disable_disk_events +EXPORT_SYMBOL vmlinux 0x991c6ce5 bmap +EXPORT_SYMBOL vmlinux 0x99262b08 nf_register_sockopt EXPORT_SYMBOL vmlinux 0x9939eba0 backlight_unregister_notifier +EXPORT_SYMBOL vmlinux 0x9948e062 rproc_shutdown EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable -EXPORT_SYMBOL vmlinux 0x995c31ff __xfrm_policy_check -EXPORT_SYMBOL vmlinux 0x9973e15f __netdev_notify_peers +EXPORT_SYMBOL vmlinux 0x995d5d9d call_fib_notifiers EXPORT_SYMBOL vmlinux 0x9975dc22 acpi_get_handle -EXPORT_SYMBOL vmlinux 0x997e2064 napi_enable -EXPORT_SYMBOL vmlinux 0x9987062b phy_connect -EXPORT_SYMBOL vmlinux 0x9991d5c8 nd_btt_arena_is_valid +EXPORT_SYMBOL vmlinux 0x9976d65b kthread_blkcg +EXPORT_SYMBOL vmlinux 0x9987b0ba filemap_fdatawait_range EXPORT_SYMBOL vmlinux 0x999e8297 vfree -EXPORT_SYMBOL vmlinux 0x99a61ec1 mdiobus_register_device -EXPORT_SYMBOL vmlinux 0x99b6082d bio_add_page -EXPORT_SYMBOL vmlinux 0x99c26544 ipv4_specific -EXPORT_SYMBOL vmlinux 0x99ca83bc rproc_coredump_add_segment +EXPORT_SYMBOL vmlinux 0x99b4109e sock_set_keepalive EXPORT_SYMBOL vmlinux 0x99d472b1 net_dim_get_rx_moderation -EXPORT_SYMBOL vmlinux 0x99d8cb6f pagevec_lookup_range EXPORT_SYMBOL vmlinux 0x99daa9bf try_offline_node -EXPORT_SYMBOL vmlinux 0x99dbaf0e security_socket_socketpair -EXPORT_SYMBOL vmlinux 0x99ec25b2 page_cache_prev_miss EXPORT_SYMBOL vmlinux 0x99f068d5 x86_cpu_to_node_map +EXPORT_SYMBOL vmlinux 0x99f06dc5 qdisc_hash_del +EXPORT_SYMBOL vmlinux 0x99f55891 bfifo_qdisc_ops EXPORT_SYMBOL vmlinux 0x99f7371c refcount_dec_and_mutex_lock EXPORT_SYMBOL vmlinux 0x99f9638f __napi_alloc_frag_align EXPORT_SYMBOL vmlinux 0x9a0c3a18 vme_unregister_error_handler -EXPORT_SYMBOL vmlinux 0x9a19ec50 make_flow_keys_digest EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk -EXPORT_SYMBOL vmlinux 0x9a2235d5 dev_uc_flush EXPORT_SYMBOL vmlinux 0x9a22391e radix_tree_gang_lookup_tag_slot -EXPORT_SYMBOL vmlinux 0x9a533f62 flow_block_cb_priv +EXPORT_SYMBOL vmlinux 0x9a36b339 i2c_smbus_read_byte_data +EXPORT_SYMBOL vmlinux 0x9a3c9c40 tcf_exts_terse_dump EXPORT_SYMBOL vmlinux 0x9a583306 netlbl_bitmap_walk -EXPORT_SYMBOL vmlinux 0x9a5c1f49 kernel_listen -EXPORT_SYMBOL vmlinux 0x9a5e05b2 __blk_mq_alloc_disk -EXPORT_SYMBOL vmlinux 0x9a64ea2b km_state_expired EXPORT_SYMBOL vmlinux 0x9a73b032 ZSTD_initDStream_usingDDict -EXPORT_SYMBOL vmlinux 0x9a8a9d63 request_firmware -EXPORT_SYMBOL vmlinux 0x9a98f0c9 configfs_unregister_group -EXPORT_SYMBOL vmlinux 0x9aace15d rfkill_alloc +EXPORT_SYMBOL vmlinux 0x9a8c96e3 i2c_smbus_write_word_data +EXPORT_SYMBOL vmlinux 0x9aa1b60a i2c_add_adapter +EXPORT_SYMBOL vmlinux 0x9aa723e5 find_inode_by_ino_rcu EXPORT_SYMBOL vmlinux 0x9aaeefce sysctl_nf_log_all_netns -EXPORT_SYMBOL vmlinux 0x9ab15fdd tty_insert_flip_string_flags -EXPORT_SYMBOL vmlinux 0x9acc4363 scsi_scan_target +EXPORT_SYMBOL vmlinux 0x9abd6070 mmc_retune_unpause +EXPORT_SYMBOL vmlinux 0x9ac6922e mmc_start_request +EXPORT_SYMBOL vmlinux 0x9ac7ef1b tso_start EXPORT_SYMBOL vmlinux 0x9ad7a582 iosf_mbi_assert_punit_acquired +EXPORT_SYMBOL vmlinux 0x9ae3b53d fs_bio_set EXPORT_SYMBOL vmlinux 0x9ae47436 _find_last_bit -EXPORT_SYMBOL vmlinux 0x9b101294 ethtool_notify +EXPORT_SYMBOL vmlinux 0x9aeb1d76 new_inode +EXPORT_SYMBOL vmlinux 0x9af3d5cd pskb_expand_head +EXPORT_SYMBOL vmlinux 0x9b064bca scsi_is_host_device +EXPORT_SYMBOL vmlinux 0x9b097b91 qdisc_warn_nonwc +EXPORT_SYMBOL vmlinux 0x9b1c8260 mipi_dsi_dcs_set_tear_on +EXPORT_SYMBOL vmlinux 0x9b24b406 netif_tx_wake_queue EXPORT_SYMBOL vmlinux 0x9b2560b9 gf128mul_init_4k_bbe -EXPORT_SYMBOL vmlinux 0x9b29948c fs_context_for_submount -EXPORT_SYMBOL vmlinux 0x9b309b8c netlink_set_err +EXPORT_SYMBOL vmlinux 0x9b257939 mmc_gpio_get_ro EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier EXPORT_SYMBOL vmlinux 0x9b420478 utf8_strncasecmp EXPORT_SYMBOL vmlinux 0x9b496b21 posix_acl_alloc -EXPORT_SYMBOL vmlinux 0x9b4d478a ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0x9b55d46a jbd2_journal_revoke +EXPORT_SYMBOL vmlinux 0x9b58d577 skb_find_text +EXPORT_SYMBOL vmlinux 0x9b6b4f1d xfrm_spd_getinfo +EXPORT_SYMBOL vmlinux 0x9b71b443 open_with_fake_path EXPORT_SYMBOL vmlinux 0x9b72478f acpi_unload_parent_table -EXPORT_SYMBOL vmlinux 0x9b9521ae inet_get_local_port_range EXPORT_SYMBOL vmlinux 0x9b9eb858 unload_nls -EXPORT_SYMBOL vmlinux 0x9ba69fa1 bio_init -EXPORT_SYMBOL vmlinux 0x9ba84739 ram_aops -EXPORT_SYMBOL vmlinux 0x9bb310d6 clk_add_alias -EXPORT_SYMBOL vmlinux 0x9bb41b26 user_path_create EXPORT_SYMBOL vmlinux 0x9bb4e317 ioread32be -EXPORT_SYMBOL vmlinux 0x9bc2ba3a xp_free -EXPORT_SYMBOL vmlinux 0x9bc2ff5a simple_open -EXPORT_SYMBOL vmlinux 0x9bc534cc from_kgid -EXPORT_SYMBOL vmlinux 0x9bc61907 tcp_sock_set_keepintvl -EXPORT_SYMBOL vmlinux 0x9bc99c07 mmc_can_erase -EXPORT_SYMBOL vmlinux 0x9be3052d kthread_create_worker_on_cpu -EXPORT_SYMBOL vmlinux 0x9be449c0 pci_free_irq -EXPORT_SYMBOL vmlinux 0x9bf396ec rproc_del +EXPORT_SYMBOL vmlinux 0x9bdbaf8c dev_change_carrier +EXPORT_SYMBOL vmlinux 0x9be3acc8 xsk_tx_release +EXPORT_SYMBOL vmlinux 0x9be73288 unregister_netdevice_notifier_net EXPORT_SYMBOL vmlinux 0x9c122bcf mempool_create_node -EXPORT_SYMBOL vmlinux 0x9c1b4179 max8998_write_reg -EXPORT_SYMBOL vmlinux 0x9c469782 blk_queue_chunk_sectors -EXPORT_SYMBOL vmlinux 0x9c540aa9 pm860x_bulk_write -EXPORT_SYMBOL vmlinux 0x9c611f5f xfrm_dev_state_flush -EXPORT_SYMBOL vmlinux 0x9c6208db devm_extcon_register_notifier_all -EXPORT_SYMBOL vmlinux 0x9c641dc9 new_inode +EXPORT_SYMBOL vmlinux 0x9c265d21 phy_read_paged +EXPORT_SYMBOL vmlinux 0x9c386e8c i2c_del_adapter EXPORT_SYMBOL vmlinux 0x9c65b78a csum_partial_copy_nocheck -EXPORT_SYMBOL vmlinux 0x9c701e47 d_alloc +EXPORT_SYMBOL vmlinux 0x9c6990ea dev_mc_add_global +EXPORT_SYMBOL vmlinux 0x9c75f2bc __pci_register_driver EXPORT_SYMBOL vmlinux 0x9c86b9ab fileattr_fill_flags -EXPORT_SYMBOL vmlinux 0x9ca66fad devm_devfreq_register_notifier EXPORT_SYMBOL vmlinux 0x9cab34a6 rfkill_set_led_trigger_name -EXPORT_SYMBOL vmlinux 0x9cb91b4e sock_diag_put_filterinfo +EXPORT_SYMBOL vmlinux 0x9cacf5b8 dev_disable_lro +EXPORT_SYMBOL vmlinux 0x9cad6bd4 rproc_elf_get_boot_addr EXPORT_SYMBOL vmlinux 0x9cb986f2 vmalloc_base -EXPORT_SYMBOL vmlinux 0x9cbaf24d devfreq_monitor_resume -EXPORT_SYMBOL vmlinux 0x9cc2a556 qdisc_put -EXPORT_SYMBOL vmlinux 0x9cc3ad82 sockfd_lookup +EXPORT_SYMBOL vmlinux 0x9cbafeb4 tcf_block_put +EXPORT_SYMBOL vmlinux 0x9ccc7dda no_seek_end_llseek EXPORT_SYMBOL vmlinux 0x9ccf7171 vme_dma_pci_attribute -EXPORT_SYMBOL vmlinux 0x9cd01e2f ip_route_input_noref EXPORT_SYMBOL vmlinux 0x9cd91791 register_sysctl -EXPORT_SYMBOL vmlinux 0x9cddea94 dma_find_channel +EXPORT_SYMBOL vmlinux 0x9cdb40b8 __inc_node_page_state EXPORT_SYMBOL vmlinux 0x9cdfb3f7 sysctl_fb_tunnels_only_for_init_net EXPORT_SYMBOL vmlinux 0x9ced41ad __SCT__tp_func_read_msr -EXPORT_SYMBOL vmlinux 0x9d00cb02 __insert_inode_hash +EXPORT_SYMBOL vmlinux 0x9d04f7de filemap_fdatawrite_range EXPORT_SYMBOL vmlinux 0x9d099a39 acpi_remove_gpe_handler -EXPORT_SYMBOL vmlinux 0x9d09dd3c vc_resize -EXPORT_SYMBOL vmlinux 0x9d0a9a7b mmc_detect_change EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier -EXPORT_SYMBOL vmlinux 0x9d0ea2a7 touchscreen_report_pos +EXPORT_SYMBOL vmlinux 0x9d168552 __skb_gro_checksum_complete EXPORT_SYMBOL vmlinux 0x9d250156 __nla_put EXPORT_SYMBOL vmlinux 0x9d2ab8ac __tasklet_schedule EXPORT_SYMBOL vmlinux 0x9d2e7707 unregister_sysrq_key -EXPORT_SYMBOL vmlinux 0x9d375a3b io_uring_get_socket -EXPORT_SYMBOL vmlinux 0x9d5254bc sock_bind_add +EXPORT_SYMBOL vmlinux 0x9d2fae8f take_dentry_name_snapshot EXPORT_SYMBOL vmlinux 0x9d61e994 ucs2_strncmp EXPORT_SYMBOL vmlinux 0x9d70541a native_save_fl -EXPORT_SYMBOL vmlinux 0x9d749425 register_key_type +EXPORT_SYMBOL vmlinux 0x9d7ef88c phy_print_status +EXPORT_SYMBOL vmlinux 0x9d90d6d7 skb_dequeue EXPORT_SYMBOL vmlinux 0x9d92f3ad __wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0x9d94880e reuseport_stop_listen_sock +EXPORT_SYMBOL vmlinux 0x9d953c78 sock_release EXPORT_SYMBOL vmlinux 0x9d97ab2c audit_log_object_context -EXPORT_SYMBOL vmlinux 0x9da1c9f2 dst_release -EXPORT_SYMBOL vmlinux 0x9da4a874 dquot_quotactl_sysfile_ops -EXPORT_SYMBOL vmlinux 0x9df1d3a7 mmc_can_gpio_cd -EXPORT_SYMBOL vmlinux 0x9df37121 xfrm_user_policy -EXPORT_SYMBOL vmlinux 0x9df9923c pci_bus_size_bridges -EXPORT_SYMBOL vmlinux 0x9e0bbada devm_of_find_backlight +EXPORT_SYMBOL vmlinux 0x9dc1f067 fb_set_cmap +EXPORT_SYMBOL vmlinux 0x9dc32f2e ppp_unregister_channel +EXPORT_SYMBOL vmlinux 0x9dc8bbe7 inet_sk_set_state +EXPORT_SYMBOL vmlinux 0x9dd205e4 devm_rproc_alloc +EXPORT_SYMBOL vmlinux 0x9dd33742 rproc_elf_load_rsc_table +EXPORT_SYMBOL vmlinux 0x9df69755 tty_wait_until_sent +EXPORT_SYMBOL vmlinux 0x9e07bb72 dquot_drop EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node EXPORT_SYMBOL vmlinux 0x9e0fa5ae hsiphash_3u32 EXPORT_SYMBOL vmlinux 0x9e13f6f6 gf128mul_lle +EXPORT_SYMBOL vmlinux 0x9e159ead dquot_alloc EXPORT_SYMBOL vmlinux 0x9e2737f0 acpi_install_interface_handler -EXPORT_SYMBOL vmlinux 0x9e2b1958 tcp_getsockopt -EXPORT_SYMBOL vmlinux 0x9e3a6b4a proto_unregister -EXPORT_SYMBOL vmlinux 0x9e4db58f jbd2_journal_init_inode +EXPORT_SYMBOL vmlinux 0x9e3ced4f fsync_bdev +EXPORT_SYMBOL vmlinux 0x9e4807b9 flow_rule_match_tcp EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy -EXPORT_SYMBOL vmlinux 0x9e5da7ae twl6040_clear_bits +EXPORT_SYMBOL vmlinux 0x9e5822c5 _copy_from_iter_nocache EXPORT_SYMBOL vmlinux 0x9e61bb05 set_freezable EXPORT_SYMBOL vmlinux 0x9e64fbfe rtc_cmos_read EXPORT_SYMBOL vmlinux 0x9e683f75 __cpu_possible_mask -EXPORT_SYMBOL vmlinux 0x9e70fa9e kill_pgrp -EXPORT_SYMBOL vmlinux 0x9e78975a __skb_flow_dissect +EXPORT_SYMBOL vmlinux 0x9e7338e0 neigh_table_init EXPORT_SYMBOL vmlinux 0x9e7d6bd0 __udelay -EXPORT_SYMBOL vmlinux 0x9e80e3fa __SCK__tp_func_spi_transfer_start -EXPORT_SYMBOL vmlinux 0x9e854f09 pci_msix_vec_count -EXPORT_SYMBOL vmlinux 0x9e87dc24 __i2c_smbus_xfer -EXPORT_SYMBOL vmlinux 0x9e95e7d4 filemap_fdatawrite_range +EXPORT_SYMBOL vmlinux 0x9e892c70 pps_register_source EXPORT_SYMBOL vmlinux 0x9e99837e __nla_put_64bit EXPORT_SYMBOL vmlinux 0x9e9eab95 devcgroup_check_permission EXPORT_SYMBOL vmlinux 0x9e9fdd9d memunmap -EXPORT_SYMBOL vmlinux 0x9ea47e92 qdisc_hash_del EXPORT_SYMBOL vmlinux 0x9eacf8a5 kstrndup +EXPORT_SYMBOL vmlinux 0x9eb02eb1 mdiobus_register_device +EXPORT_SYMBOL vmlinux 0x9eb6fc78 jbd2_journal_unlock_updates +EXPORT_SYMBOL vmlinux 0x9ebd69fe max8925_set_bits EXPORT_SYMBOL vmlinux 0x9ec0e639 twl6030_interrupt_unmask EXPORT_SYMBOL vmlinux 0x9ec6ca96 ktime_get_real_ts64 -EXPORT_SYMBOL vmlinux 0x9ed51a25 dget_parent +EXPORT_SYMBOL vmlinux 0x9ecf410f posix_acl_chmod +EXPORT_SYMBOL vmlinux 0x9ed2ea6c set_page_dirty EXPORT_SYMBOL vmlinux 0x9ed978de vme_lm_set +EXPORT_SYMBOL vmlinux 0x9eebc7d7 phy_register_fixup +EXPORT_SYMBOL vmlinux 0x9eed9ce1 ptp_find_pin_unlocked EXPORT_SYMBOL vmlinux 0x9ef0eee7 __SCT__tp_func_spi_transfer_stop -EXPORT_SYMBOL vmlinux 0x9f12630d vlan_dev_vlan_id -EXPORT_SYMBOL vmlinux 0x9f30031a regset_get_alloc +EXPORT_SYMBOL vmlinux 0x9ef7b3cd copy_page_to_iter +EXPORT_SYMBOL vmlinux 0x9eff0ab6 devm_extcon_register_notifier_all +EXPORT_SYMBOL vmlinux 0x9f27bda4 seq_escape +EXPORT_SYMBOL vmlinux 0x9f34bf4e xfrm_state_walk_done EXPORT_SYMBOL vmlinux 0x9f46ced8 __sw_hweight64 -EXPORT_SYMBOL vmlinux 0x9f4d7448 __cgroup_bpf_run_filter_sock_addr EXPORT_SYMBOL vmlinux 0x9f4f2aa3 acpi_gbl_FADT EXPORT_SYMBOL vmlinux 0x9f50b770 keyring_restrict +EXPORT_SYMBOL vmlinux 0x9f50d006 pagecache_get_page EXPORT_SYMBOL vmlinux 0x9f54ead7 gro_cells_destroy -EXPORT_SYMBOL vmlinux 0x9f65ccd3 mmc_erase_group_aligned -EXPORT_SYMBOL vmlinux 0x9f769033 i2c_clients_command -EXPORT_SYMBOL vmlinux 0x9f8642e3 __SCK__tp_func_module_get -EXPORT_SYMBOL vmlinux 0x9f8f2af6 ata_port_printk +EXPORT_SYMBOL vmlinux 0x9f560c65 security_sb_mnt_opts_compat +EXPORT_SYMBOL vmlinux 0x9f719a0b blk_queue_segment_boundary +EXPORT_SYMBOL vmlinux 0x9f7449b5 iov_iter_get_pages +EXPORT_SYMBOL vmlinux 0x9f7b241c vfs_dup_fs_context +EXPORT_SYMBOL vmlinux 0x9f84c9b7 tcp_release_cb +EXPORT_SYMBOL vmlinux 0x9f86ba9d crypto_sha1_finup EXPORT_SYMBOL vmlinux 0x9f984513 strrchr EXPORT_SYMBOL vmlinux 0x9fa7184a cancel_delayed_work_sync -EXPORT_SYMBOL vmlinux 0x9fcc0767 phy_driver_register -EXPORT_SYMBOL vmlinux 0x9fd8b5dd __tracepoint_mmap_lock_released -EXPORT_SYMBOL vmlinux 0x9fddd55e ip_fraglist_init +EXPORT_SYMBOL vmlinux 0x9fb388c5 jbd2_journal_clear_features +EXPORT_SYMBOL vmlinux 0x9fc7595b qdisc_class_hash_grow +EXPORT_SYMBOL vmlinux 0x9fc78b03 dcache_readdir +EXPORT_SYMBOL vmlinux 0x9fd1c780 genl_notify EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many EXPORT_SYMBOL vmlinux 0x9feed7ce timer_reduce +EXPORT_SYMBOL vmlinux 0x9ff11c23 input_set_capability +EXPORT_SYMBOL vmlinux 0x9ff29b83 sb_set_blocksize EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog +EXPORT_SYMBOL vmlinux 0xa006c59e bdev_dax_pgoff EXPORT_SYMBOL vmlinux 0xa00aca2a dql_completed -EXPORT_SYMBOL vmlinux 0xa01634a6 gnet_stats_copy_app -EXPORT_SYMBOL vmlinux 0xa01895de tcp_enter_cwr EXPORT_SYMBOL vmlinux 0xa01d3df6 font_vga_8x16 -EXPORT_SYMBOL vmlinux 0xa01fbc7e nf_register_queue_handler EXPORT_SYMBOL vmlinux 0xa022c739 call_usermodehelper_setup -EXPORT_SYMBOL vmlinux 0xa022e457 kernel_sendpage_locked -EXPORT_SYMBOL vmlinux 0xa0280d76 dev_uc_sync_multiple EXPORT_SYMBOL vmlinux 0xa02aa74a __cond_resched_lock EXPORT_SYMBOL vmlinux 0xa033d747 next_arg -EXPORT_SYMBOL vmlinux 0xa03a6f7d jbd2_journal_force_commit +EXPORT_SYMBOL vmlinux 0xa03be013 scsi_free_host_dev EXPORT_SYMBOL vmlinux 0xa0436e98 in6addr_linklocal_allnodes +EXPORT_SYMBOL vmlinux 0xa044c371 send_sig_info EXPORT_SYMBOL vmlinux 0xa057df8f twl_set_regcache_bypass -EXPORT_SYMBOL vmlinux 0xa05ab060 __nd_driver_register EXPORT_SYMBOL vmlinux 0xa05b6be2 psched_ppscfg_precompute EXPORT_SYMBOL vmlinux 0xa07a37f0 memchr EXPORT_SYMBOL vmlinux 0xa07d1b3c tasklet_setup +EXPORT_SYMBOL vmlinux 0xa07fd7a6 scsi_device_put EXPORT_SYMBOL vmlinux 0xa084749a __bitmap_or EXPORT_SYMBOL vmlinux 0xa084f79f cpumask_next_wrap +EXPORT_SYMBOL vmlinux 0xa08f6675 vlan_dev_vlan_proto +EXPORT_SYMBOL vmlinux 0xa0941bcc i2c_put_adapter EXPORT_SYMBOL vmlinux 0xa095e02e generic_check_addressable -EXPORT_SYMBOL vmlinux 0xa09efb53 blk_mq_alloc_request +EXPORT_SYMBOL vmlinux 0xa09fe52f tty_kref_put EXPORT_SYMBOL vmlinux 0xa0ae1e73 siphash_3u64 EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 -EXPORT_SYMBOL vmlinux 0xa0b48991 dev_deactivate -EXPORT_SYMBOL vmlinux 0xa0b89fad inode_init_owner +EXPORT_SYMBOL vmlinux 0xa0b2525d xfrm_if_register_cb +EXPORT_SYMBOL vmlinux 0xa0c65eb8 sock_alloc +EXPORT_SYMBOL vmlinux 0xa0c6e86c mmc_wait_for_req +EXPORT_SYMBOL vmlinux 0xa0ca1e37 jbd2_fc_get_buf +EXPORT_SYMBOL vmlinux 0xa0d330bf __mark_inode_dirty EXPORT_SYMBOL vmlinux 0xa0d87339 qdisc_get_rtab EXPORT_SYMBOL vmlinux 0xa0dad88e netdev_adjacent_get_private -EXPORT_SYMBOL vmlinux 0xa0dc9bad clear_nlink 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 0xa0f79d34 tty_port_lower_dtr_rts EXPORT_SYMBOL vmlinux 0xa0fbac79 wake_up_bit -EXPORT_SYMBOL vmlinux 0xa10017b2 qdisc_watchdog_cancel EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max -EXPORT_SYMBOL vmlinux 0xa10962d7 phy_get_pause -EXPORT_SYMBOL vmlinux 0xa12acc3d inet6_protos -EXPORT_SYMBOL vmlinux 0xa1331427 ll_rw_block +EXPORT_SYMBOL vmlinux 0xa11713f4 acpi_dev_get_next_match_dev +EXPORT_SYMBOL vmlinux 0xa1289342 mipi_dsi_dcs_set_pixel_format EXPORT_SYMBOL vmlinux 0xa13e780a gen_replace_estimator -EXPORT_SYMBOL vmlinux 0xa1439c7c pci_select_bars -EXPORT_SYMBOL vmlinux 0xa15c5e95 clear_bdi_congested -EXPORT_SYMBOL vmlinux 0xa1688ebd sk_capable -EXPORT_SYMBOL vmlinux 0xa16faa07 write_dirty_buffer -EXPORT_SYMBOL vmlinux 0xa172b90a disk_stack_limits -EXPORT_SYMBOL vmlinux 0xa189f4f7 unregister_netdevice_queue -EXPORT_SYMBOL vmlinux 0xa1a1de81 __lock_buffer -EXPORT_SYMBOL vmlinux 0xa1a86e2a dentry_path_raw -EXPORT_SYMBOL vmlinux 0xa1aa47a5 xfrm_lookup_with_ifid -EXPORT_SYMBOL vmlinux 0xa1acb8c0 pcix_get_max_mmrbc -EXPORT_SYMBOL vmlinux 0xa1b3406a configfs_undepend_item -EXPORT_SYMBOL vmlinux 0xa1bca4cd twl6040_get_vibralr_status +EXPORT_SYMBOL vmlinux 0xa159afa8 xfrm_state_unregister_afinfo +EXPORT_SYMBOL vmlinux 0xa15d6c9a flow_rule_match_mpls +EXPORT_SYMBOL vmlinux 0xa169b028 ip_do_fragment +EXPORT_SYMBOL vmlinux 0xa1b076e0 param_set_bint +EXPORT_SYMBOL vmlinux 0xa1b31023 block_write_begin EXPORT_SYMBOL vmlinux 0xa1bedd72 amd_iommu_pc_get_max_counters -EXPORT_SYMBOL vmlinux 0xa1c073f1 ps2_command -EXPORT_SYMBOL vmlinux 0xa1ebe7b0 pci_map_rom +EXPORT_SYMBOL vmlinux 0xa1ccf7a9 nobh_truncate_page +EXPORT_SYMBOL vmlinux 0xa1e158d0 seq_printf +EXPORT_SYMBOL vmlinux 0xa1e38018 tty_port_init +EXPORT_SYMBOL vmlinux 0xa1e404ee blk_rq_map_user_iov +EXPORT_SYMBOL vmlinux 0xa1ec0db5 scsi_is_target_device +EXPORT_SYMBOL vmlinux 0xa1f87a9f inet_frags_init +EXPORT_SYMBOL vmlinux 0xa1fcabb1 inode_set_bytes EXPORT_SYMBOL vmlinux 0xa2060911 inet_current_timestamp -EXPORT_SYMBOL vmlinux 0xa213f0c2 genphy_read_status +EXPORT_SYMBOL vmlinux 0xa22ff955 dma_map_sg_attrs EXPORT_SYMBOL vmlinux 0xa2326c49 acpi_remove_table_handler EXPORT_SYMBOL vmlinux 0xa23ffc04 groups_sort -EXPORT_SYMBOL vmlinux 0xa24c0ba2 kmem_cache_create EXPORT_SYMBOL vmlinux 0xa24f23d8 __request_module +EXPORT_SYMBOL vmlinux 0xa251eebb cpufreq_get_policy +EXPORT_SYMBOL vmlinux 0xa2550b48 thaw_super +EXPORT_SYMBOL vmlinux 0xa2566538 nf_register_net_hook +EXPORT_SYMBOL vmlinux 0xa258f712 zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0xa259d714 pcim_iomap_regions EXPORT_SYMBOL vmlinux 0xa25b90ab utf8byte +EXPORT_SYMBOL vmlinux 0xa25d6451 phy_start_cable_test EXPORT_SYMBOL vmlinux 0xa263892b fscrypt_fname_free_buffer -EXPORT_SYMBOL vmlinux 0xa26cb41a __SCK__tp_func_kmem_cache_free -EXPORT_SYMBOL vmlinux 0xa28469ef ip_local_deliver -EXPORT_SYMBOL vmlinux 0xa285004f dquot_destroy +EXPORT_SYMBOL vmlinux 0xa27ca876 input_set_abs_params +EXPORT_SYMBOL vmlinux 0xa27e7064 xp_set_rxq_info +EXPORT_SYMBOL vmlinux 0xa2822610 cdev_init EXPORT_SYMBOL vmlinux 0xa28cfcc0 gen_estimator_active -EXPORT_SYMBOL vmlinux 0xa29e5da4 get_tree_keyed -EXPORT_SYMBOL vmlinux 0xa2ae1ab4 vga_con -EXPORT_SYMBOL vmlinux 0xa2b56318 dec_node_page_state -EXPORT_SYMBOL vmlinux 0xa2b8900b i2c_smbus_write_i2c_block_data -EXPORT_SYMBOL vmlinux 0xa2b9b95c flow_block_cb_setup_simple -EXPORT_SYMBOL vmlinux 0xa2bace9c mdiobus_scan -EXPORT_SYMBOL vmlinux 0xa2d6ef83 devm_gen_pool_create -EXPORT_SYMBOL vmlinux 0xa315b4c9 __sk_backlog_rcv -EXPORT_SYMBOL vmlinux 0xa324132a complete_request_key -EXPORT_SYMBOL vmlinux 0xa35b20fb mipi_dsi_dcs_set_tear_off -EXPORT_SYMBOL vmlinux 0xa35fee41 i2c_smbus_write_word_data +EXPORT_SYMBOL vmlinux 0xa29652b7 jbd2_journal_check_used_features +EXPORT_SYMBOL vmlinux 0xa298a4a7 uart_get_baud_rate +EXPORT_SYMBOL vmlinux 0xa2a17075 eth_mac_addr +EXPORT_SYMBOL vmlinux 0xa2e1bea4 sk_filter_trim_cap +EXPORT_SYMBOL vmlinux 0xa2ffbe1e scsi_alloc_sgtables +EXPORT_SYMBOL vmlinux 0xa30d09f6 nf_reinject +EXPORT_SYMBOL vmlinux 0xa3140cfa input_mt_drop_unused +EXPORT_SYMBOL vmlinux 0xa35a259e md_bitmap_end_sync +EXPORT_SYMBOL vmlinux 0xa360b9f0 inode_init_owner +EXPORT_SYMBOL vmlinux 0xa3722f88 vme_new_dma_list EXPORT_SYMBOL vmlinux 0xa38f21b9 amd_iommu_update_ga -EXPORT_SYMBOL vmlinux 0xa390d668 blk_mq_stop_hw_queue -EXPORT_SYMBOL vmlinux 0xa3af869b inet6_unregister_protosw +EXPORT_SYMBOL vmlinux 0xa3a44be2 adjust_managed_page_count +EXPORT_SYMBOL vmlinux 0xa3a862fe vga_get EXPORT_SYMBOL vmlinux 0xa3b6c0d8 kobject_del EXPORT_SYMBOL vmlinux 0xa3be8342 __ubsan_handle_type_mismatch -EXPORT_SYMBOL vmlinux 0xa3bef98a __blockdev_direct_IO -EXPORT_SYMBOL vmlinux 0xa3e0cd80 pnpacpi_protocol +EXPORT_SYMBOL vmlinux 0xa3cab9ec devm_ioremap +EXPORT_SYMBOL vmlinux 0xa3cefaa0 blake2s_update +EXPORT_SYMBOL vmlinux 0xa3d8744c generic_file_write_iter EXPORT_SYMBOL vmlinux 0xa3e4f871 acpi_initialize_debugger -EXPORT_SYMBOL vmlinux 0xa3ec8fcf rtnl_link_get_net -EXPORT_SYMBOL vmlinux 0xa3f3c65d __module_get EXPORT_SYMBOL vmlinux 0xa3fb735a blk_set_default_limits EXPORT_SYMBOL vmlinux 0xa3fea172 sha224_final -EXPORT_SYMBOL vmlinux 0xa40e22ac dev_set_mac_address_user EXPORT_SYMBOL vmlinux 0xa40ff01b acpi_dbg_layer EXPORT_SYMBOL vmlinux 0xa4191c0b memset_io -EXPORT_SYMBOL vmlinux 0xa42da08d mpage_writepages -EXPORT_SYMBOL vmlinux 0xa42f76b1 mod_zone_page_state -EXPORT_SYMBOL vmlinux 0xa4336263 pci_enable_ptm -EXPORT_SYMBOL vmlinux 0xa433c806 skb_split -EXPORT_SYMBOL vmlinux 0xa43d20f4 devm_request_any_context_irq -EXPORT_SYMBOL vmlinux 0xa44dabda phy_sfp_probe -EXPORT_SYMBOL vmlinux 0xa4593b29 netif_rx_ni -EXPORT_SYMBOL vmlinux 0xa4626512 icmp_ndo_send +EXPORT_SYMBOL vmlinux 0xa41cdfef nf_unregister_net_hooks +EXPORT_SYMBOL vmlinux 0xa424998e sock_wmalloc +EXPORT_SYMBOL vmlinux 0xa425b021 irq_set_chip +EXPORT_SYMBOL vmlinux 0xa4280f71 register_qdisc +EXPORT_SYMBOL vmlinux 0xa434b198 mipi_dsi_detach +EXPORT_SYMBOL vmlinux 0xa43d1e7a kfree_skb +EXPORT_SYMBOL vmlinux 0xa45fde5b inet_addr_type_table +EXPORT_SYMBOL vmlinux 0xa475dbd2 generic_setlease EXPORT_SYMBOL vmlinux 0xa47a31c8 security_binder_transaction -EXPORT_SYMBOL vmlinux 0xa47c15ce sg_alloc_table_from_pages_segment -EXPORT_SYMBOL vmlinux 0xa47f6a57 super_setup_bdi -EXPORT_SYMBOL vmlinux 0xa4ac467f security_path_mknod -EXPORT_SYMBOL vmlinux 0xa4b17608 netif_set_real_num_queues +EXPORT_SYMBOL vmlinux 0xa47fbc0f pci_rebar_get_possible_sizes +EXPORT_SYMBOL vmlinux 0xa48cf291 __ps2_command +EXPORT_SYMBOL vmlinux 0xa494da62 d_alloc_anon +EXPORT_SYMBOL vmlinux 0xa4950b71 mipi_dsi_dcs_set_display_brightness +EXPORT_SYMBOL vmlinux 0xa4974383 bio_init +EXPORT_SYMBOL vmlinux 0xa4a9af48 freeze_super EXPORT_SYMBOL vmlinux 0xa4b94fea iowrite8_rep -EXPORT_SYMBOL vmlinux 0xa4c107d1 vfs_mknod +EXPORT_SYMBOL vmlinux 0xa4c0f466 pci_enable_msix_range EXPORT_SYMBOL vmlinux 0xa4c6afdf kset_unregister -EXPORT_SYMBOL vmlinux 0xa4cd0be0 acpi_device_hid EXPORT_SYMBOL vmlinux 0xa4d4f0e6 global_cache_flush -EXPORT_SYMBOL vmlinux 0xa4e6feb3 clk_hw_get_clk +EXPORT_SYMBOL vmlinux 0xa4e2c6ff kthread_associate_blkcg +EXPORT_SYMBOL vmlinux 0xa4eb3bed cdc_parse_cdc_header +EXPORT_SYMBOL vmlinux 0xa4efc40c netdev_alert EXPORT_SYMBOL vmlinux 0xa4faf62a acpi_disable_gpe -EXPORT_SYMBOL vmlinux 0xa4fb9ae3 register_netdevice -EXPORT_SYMBOL vmlinux 0xa4fbf2fb pci_dev_driver EXPORT_SYMBOL vmlinux 0xa507125e acpi_clear_gpe EXPORT_SYMBOL vmlinux 0xa50a3da7 _find_next_bit EXPORT_SYMBOL vmlinux 0xa50bcff0 x86_cpu_to_apicid -EXPORT_SYMBOL vmlinux 0xa521d3c6 mmc_can_discard +EXPORT_SYMBOL vmlinux 0xa50c4ee4 phy_ethtool_get_stats +EXPORT_SYMBOL vmlinux 0xa51f08d5 vga_switcheroo_client_fb_set +EXPORT_SYMBOL vmlinux 0xa524fa76 read_cache_page_gfp +EXPORT_SYMBOL vmlinux 0xa529e7eb security_sock_rcv_skb EXPORT_SYMBOL vmlinux 0xa52bedf6 xenbus_dev_request_and_reply EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color -EXPORT_SYMBOL vmlinux 0xa58bc523 acpi_register_debugger -EXPORT_SYMBOL vmlinux 0xa592769b can_nice EXPORT_SYMBOL vmlinux 0xa5976e4f dev_base_lock EXPORT_SYMBOL vmlinux 0xa5ac3e33 ZSTD_DCtxWorkspaceBound -EXPORT_SYMBOL vmlinux 0xa5ad1c9a rproc_elf_get_boot_addr -EXPORT_SYMBOL vmlinux 0xa5adc718 posix_lock_file -EXPORT_SYMBOL vmlinux 0xa5bf5d8b eisa_driver_register -EXPORT_SYMBOL vmlinux 0xa5c22650 netlink_capable -EXPORT_SYMBOL vmlinux 0xa5e04aad netif_tx_stop_all_queues +EXPORT_SYMBOL vmlinux 0xa5b8d527 tty_flip_buffer_push +EXPORT_SYMBOL vmlinux 0xa5cd7b65 finish_open +EXPORT_SYMBOL vmlinux 0xa5ce7ad1 __wait_on_buffer +EXPORT_SYMBOL vmlinux 0xa5dd8a8a vfs_parse_fs_param_source EXPORT_SYMBOL vmlinux 0xa5e55057 rdmsrl_safe_on_cpu -EXPORT_SYMBOL vmlinux 0xa5e5d989 iw_handler_get_spy -EXPORT_SYMBOL vmlinux 0xa5f28302 thermal_cdev_update -EXPORT_SYMBOL vmlinux 0xa5f9d198 alloc_fddidev -EXPORT_SYMBOL vmlinux 0xa606eb39 __ps2_command -EXPORT_SYMBOL vmlinux 0xa616c617 devm_ioremap_np +EXPORT_SYMBOL vmlinux 0xa5fe9da4 dquot_quota_sync +EXPORT_SYMBOL vmlinux 0xa610f58a dma_find_channel +EXPORT_SYMBOL vmlinux 0xa61b7b2d should_remove_suid EXPORT_SYMBOL vmlinux 0xa61ced89 qdisc_put_rtab +EXPORT_SYMBOL vmlinux 0xa61ed20d tcf_exts_destroy EXPORT_SYMBOL vmlinux 0xa6257a2f complete -EXPORT_SYMBOL vmlinux 0xa64246d3 kernel_sock_shutdown -EXPORT_SYMBOL vmlinux 0xa642db0c iov_iter_bvec +EXPORT_SYMBOL vmlinux 0xa6266fdf netdev_adjacent_change_abort +EXPORT_SYMBOL vmlinux 0xa63165a4 security_path_mkdir +EXPORT_SYMBOL vmlinux 0xa63367a0 __xfrm_route_forward +EXPORT_SYMBOL vmlinux 0xa6421929 get_tree_keyed EXPORT_SYMBOL vmlinux 0xa648e561 __ubsan_handle_shift_out_of_bounds -EXPORT_SYMBOL vmlinux 0xa64c172c qdisc_put_unlocked -EXPORT_SYMBOL vmlinux 0xa64f1f23 thaw_super -EXPORT_SYMBOL vmlinux 0xa66c807c tcp_create_openreq_child -EXPORT_SYMBOL vmlinux 0xa6708233 __invalidate_device +EXPORT_SYMBOL vmlinux 0xa6511c10 dump_align +EXPORT_SYMBOL vmlinux 0xa66166d7 tcp_filter +EXPORT_SYMBOL vmlinux 0xa67da54c mark_buffer_dirty_inode EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid -EXPORT_SYMBOL vmlinux 0xa69564e5 xen_free_unpopulated_pages -EXPORT_SYMBOL vmlinux 0xa698433e sock_no_sendmsg -EXPORT_SYMBOL vmlinux 0xa6b968c5 netdev_notice -EXPORT_SYMBOL vmlinux 0xa6cd9eaa inet_listen -EXPORT_SYMBOL vmlinux 0xa6ec21d0 netdev_class_remove_file_ns -EXPORT_SYMBOL vmlinux 0xa70f1663 phy_do_ioctl_running +EXPORT_SYMBOL vmlinux 0xa6abf8cd xfrm_policy_walk_done +EXPORT_SYMBOL vmlinux 0xa6bc2d00 xfrm_state_free +EXPORT_SYMBOL vmlinux 0xa6ce7e4b twl6030_mmc_card_detect +EXPORT_SYMBOL vmlinux 0xa6ebab1d __destroy_inode +EXPORT_SYMBOL vmlinux 0xa70b779c inet_offloads EXPORT_SYMBOL vmlinux 0xa70fabbe release_evntsel_nmi EXPORT_SYMBOL vmlinux 0xa70fb761 flow_keys_basic_dissector EXPORT_SYMBOL vmlinux 0xa71d2e2c ioread16be EXPORT_SYMBOL vmlinux 0xa72035f9 xa_get_order EXPORT_SYMBOL vmlinux 0xa72cfb7d ioremap_wt -EXPORT_SYMBOL vmlinux 0xa73b2cdf __bforget -EXPORT_SYMBOL vmlinux 0xa74bca5a sock_no_linger EXPORT_SYMBOL vmlinux 0xa74c9877 refcount_dec_and_rtnl_lock -EXPORT_SYMBOL vmlinux 0xa769d17a uart_add_one_port +EXPORT_SYMBOL vmlinux 0xa75dc519 tty_port_tty_get +EXPORT_SYMBOL vmlinux 0xa76f0d0d blkdev_compat_ptr_ioctl EXPORT_SYMBOL vmlinux 0xa77bfd29 register_inet6addr_validator_notifier -EXPORT_SYMBOL vmlinux 0xa77f44c4 kernel_accept +EXPORT_SYMBOL vmlinux 0xa77fdbda generic_perform_write +EXPORT_SYMBOL vmlinux 0xa783858f fwnode_irq_get +EXPORT_SYMBOL vmlinux 0xa78a611a init_net EXPORT_SYMBOL vmlinux 0xa78af5f3 ioread32 EXPORT_SYMBOL vmlinux 0xa796679d __SCT__tp_func_dma_fence_emit -EXPORT_SYMBOL vmlinux 0xa79fe28a proc_symlink -EXPORT_SYMBOL vmlinux 0xa7b51a42 ppp_unregister_channel -EXPORT_SYMBOL vmlinux 0xa7b8578a netif_set_xps_queue -EXPORT_SYMBOL vmlinux 0xa7ca0b10 vme_register_error_handler -EXPORT_SYMBOL vmlinux 0xa7d32b2e tty_port_close_start -EXPORT_SYMBOL vmlinux 0xa7d5bef8 vga_switcheroo_unlock_ddc +EXPORT_SYMBOL vmlinux 0xa7a2456e devm_clk_get_optional +EXPORT_SYMBOL vmlinux 0xa7a38191 inet_addr_type +EXPORT_SYMBOL vmlinux 0xa7b4823a __bio_clone_fast +EXPORT_SYMBOL vmlinux 0xa7b5f677 simple_setattr +EXPORT_SYMBOL vmlinux 0xa7bfae19 __cpuhp_remove_state EXPORT_SYMBOL vmlinux 0xa7d5f92e ida_destroy +EXPORT_SYMBOL vmlinux 0xa7e2d078 kmem_cache_alloc EXPORT_SYMBOL vmlinux 0xa7eedcc4 call_usermodehelper +EXPORT_SYMBOL vmlinux 0xa7f521a9 put_watch_queue +EXPORT_SYMBOL vmlinux 0xa80112b7 devm_devfreq_register_notifier +EXPORT_SYMBOL vmlinux 0xa801f1db __SCK__tp_func_spi_transfer_stop EXPORT_SYMBOL vmlinux 0xa805ecfc acpi_release_global_lock +EXPORT_SYMBOL vmlinux 0xa80e4a90 migrate_page EXPORT_SYMBOL vmlinux 0xa8181adf proc_dointvec +EXPORT_SYMBOL vmlinux 0xa81ea040 proc_mkdir +EXPORT_SYMBOL vmlinux 0xa82cff32 jbd2_journal_clear_err EXPORT_SYMBOL vmlinux 0xa836ba02 wrmsr_safe_regs -EXPORT_SYMBOL vmlinux 0xa83e6042 kern_path -EXPORT_SYMBOL vmlinux 0xa83ecf4b pci_scan_root_bus_bridge EXPORT_SYMBOL vmlinux 0xa843805a get_unused_fd_flags +EXPORT_SYMBOL vmlinux 0xa84a8477 tcp_simple_retransmit EXPORT_SYMBOL vmlinux 0xa84ce9e0 crypto_aes_inv_sbox EXPORT_SYMBOL vmlinux 0xa85300fe kobject_get_unless_zero EXPORT_SYMBOL vmlinux 0xa853396b xa_extract EXPORT_SYMBOL vmlinux 0xa85a3e6d xa_load -EXPORT_SYMBOL vmlinux 0xa85befe8 __breadahead_gfp -EXPORT_SYMBOL vmlinux 0xa865a4cc dev_remove_pack +EXPORT_SYMBOL vmlinux 0xa85b9203 block_invalidatepage +EXPORT_SYMBOL vmlinux 0xa85cc722 bdev_check_media_change +EXPORT_SYMBOL vmlinux 0xa862c468 gnet_stats_copy_rate_est EXPORT_SYMBOL vmlinux 0xa8694ecd kblockd_schedule_work -EXPORT_SYMBOL vmlinux 0xa88954da pcim_iomap_regions_request_all -EXPORT_SYMBOL vmlinux 0xa8974ef0 phy_find_first EXPORT_SYMBOL vmlinux 0xa897e3e7 mempool_free +EXPORT_SYMBOL vmlinux 0xa8987964 dquot_acquire EXPORT_SYMBOL vmlinux 0xa89a1cf1 ipmi_dmi_get_slave_addr -EXPORT_SYMBOL vmlinux 0xa8a30e66 agp_free_memory -EXPORT_SYMBOL vmlinux 0xa8b1f6d1 tty_unregister_driver -EXPORT_SYMBOL vmlinux 0xa8ca66a3 ww_mutex_unlock +EXPORT_SYMBOL vmlinux 0xa8a341b1 rtc_add_groups +EXPORT_SYMBOL vmlinux 0xa8c93064 end_buffer_write_sync EXPORT_SYMBOL vmlinux 0xa8caa845 clk_bulk_put_all -EXPORT_SYMBOL vmlinux 0xa8cd5566 xfrm_init_replay -EXPORT_SYMBOL vmlinux 0xa8d0d33b dquot_load_quota_inode EXPORT_SYMBOL vmlinux 0xa8e6933a qdf2400_e44_present EXPORT_SYMBOL vmlinux 0xa8f6c843 ip_frag_ecn_table -EXPORT_SYMBOL vmlinux 0xa8f769f5 netif_rx_any_context -EXPORT_SYMBOL vmlinux 0xa900a73c inode_init_always -EXPORT_SYMBOL vmlinux 0xa90bc80c input_open_device +EXPORT_SYMBOL vmlinux 0xa8f93ddd sock_no_recvmsg +EXPORT_SYMBOL vmlinux 0xa8fb916d empty_aops EXPORT_SYMBOL vmlinux 0xa90ca0de flush_rcu_work +EXPORT_SYMBOL vmlinux 0xa9127648 vme_dma_list_exec EXPORT_SYMBOL vmlinux 0xa916b694 strnlen -EXPORT_SYMBOL vmlinux 0xa91ad5d2 devfreq_monitor_start +EXPORT_SYMBOL vmlinux 0xa91da18f fwnode_get_phy_id EXPORT_SYMBOL vmlinux 0xa924b4aa __traceiter_kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0xa92e4bfe alloc_buffer_head EXPORT_SYMBOL vmlinux 0xa931af8a asm_load_gs_index -EXPORT_SYMBOL vmlinux 0xa931d317 blk_mq_run_hw_queues -EXPORT_SYMBOL vmlinux 0xa934bc4b flow_get_u32_dst -EXPORT_SYMBOL vmlinux 0xa940af18 km_policy_notify +EXPORT_SYMBOL vmlinux 0xa9413e28 nf_log_trace EXPORT_SYMBOL vmlinux 0xa94a09bb mem_section -EXPORT_SYMBOL vmlinux 0xa95ca9a4 generic_perform_write +EXPORT_SYMBOL vmlinux 0xa955072f proc_set_size EXPORT_SYMBOL vmlinux 0xa965ca81 reciprocal_value +EXPORT_SYMBOL vmlinux 0xa96db08f tcf_idrinfo_destroy EXPORT_SYMBOL vmlinux 0xa976957d bitmap_remap EXPORT_SYMBOL vmlinux 0xa9785b49 cpu_core_map -EXPORT_SYMBOL vmlinux 0xa97f6617 tty_lock +EXPORT_SYMBOL vmlinux 0xa9852558 agp3_generic_tlbflush +EXPORT_SYMBOL vmlinux 0xa98b36f1 jbd2_journal_free_reserved +EXPORT_SYMBOL vmlinux 0xa997995f jbd2_log_wait_commit EXPORT_SYMBOL vmlinux 0xa99b39c2 prandom_bytes EXPORT_SYMBOL vmlinux 0xa9c72303 amd_iommu_pc_get_max_banks -EXPORT_SYMBOL vmlinux 0xa9dc1b69 generic_setlease -EXPORT_SYMBOL vmlinux 0xa9e4ca53 netpoll_send_skb -EXPORT_SYMBOL vmlinux 0xa9fcb225 security_inode_copy_up +EXPORT_SYMBOL vmlinux 0xa9cbd756 mnt_drop_write_file +EXPORT_SYMBOL vmlinux 0xa9cc7cf6 tty_lock +EXPORT_SYMBOL vmlinux 0xa9de32d0 mdiobus_read_nested +EXPORT_SYMBOL vmlinux 0xa9e81241 ip_options_rcv_srr +EXPORT_SYMBOL vmlinux 0xa9f0b86d fuse_dequeue_forget +EXPORT_SYMBOL vmlinux 0xa9f50115 write_inode_now EXPORT_SYMBOL vmlinux 0xaa00fdc0 ec_transaction EXPORT_SYMBOL vmlinux 0xaa0c318b vscnprintf +EXPORT_SYMBOL vmlinux 0xaa0d4ef9 rproc_coredump_add_custom_segment EXPORT_SYMBOL vmlinux 0xaa19e4aa _kstrtol -EXPORT_SYMBOL vmlinux 0xaa22eb25 param_set_uint -EXPORT_SYMBOL vmlinux 0xaa2a66c3 clocksource_unregister +EXPORT_SYMBOL vmlinux 0xaa1d4e14 skb_page_frag_refill EXPORT_SYMBOL vmlinux 0xaa341905 acpi_bios_exception +EXPORT_SYMBOL vmlinux 0xaa3d48ed __seq_open_private +EXPORT_SYMBOL vmlinux 0xaa3f542e input_register_handle EXPORT_SYMBOL vmlinux 0xaa44a707 cpumask_next +EXPORT_SYMBOL vmlinux 0xaa53a8c6 dev_set_allmulti EXPORT_SYMBOL vmlinux 0xaa6f23ad rfkill_get_led_trigger_name -EXPORT_SYMBOL vmlinux 0xaa7a9d4a mipi_dsi_dcs_read -EXPORT_SYMBOL vmlinux 0xaa83c9a5 scsi_report_bus_reset -EXPORT_SYMBOL vmlinux 0xaa868b3c seq_put_decimal_ll -EXPORT_SYMBOL vmlinux 0xaa8dbf78 skb_recv_datagram +EXPORT_SYMBOL vmlinux 0xaa6f3533 mmc_run_bkops +EXPORT_SYMBOL vmlinux 0xaa72d60e dma_sync_single_for_device +EXPORT_SYMBOL vmlinux 0xaa80280d i2c_del_driver +EXPORT_SYMBOL vmlinux 0xaa981319 scsi_host_lookup EXPORT_SYMBOL vmlinux 0xaaa4b9bc hchacha_block_generic -EXPORT_SYMBOL vmlinux 0xaaa80134 neigh_parms_release +EXPORT_SYMBOL vmlinux 0xaac76bc7 devm_nvmem_unregister EXPORT_SYMBOL vmlinux 0xaad0ae78 __bitmap_shift_right +EXPORT_SYMBOL vmlinux 0xaad455bd __hw_addr_sync_dev EXPORT_SYMBOL vmlinux 0xaad6d92f rfkill_init_sw_state EXPORT_SYMBOL vmlinux 0xaad8c7d6 default_wake_function -EXPORT_SYMBOL vmlinux 0xaae81ae6 _dev_notice -EXPORT_SYMBOL vmlinux 0xaae838d2 mfd_cell_disable EXPORT_SYMBOL vmlinux 0xaae8ab0e acpi_bus_power_manageable -EXPORT_SYMBOL vmlinux 0xaaee6893 security_inode_setsecctx +EXPORT_SYMBOL vmlinux 0xaaf66bd3 max8998_update_reg EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp -EXPORT_SYMBOL vmlinux 0xab116b1b release_pages -EXPORT_SYMBOL vmlinux 0xab146063 mipi_dsi_host_register -EXPORT_SYMBOL vmlinux 0xab178923 invalidate_mapping_pages -EXPORT_SYMBOL vmlinux 0xab1e20fe dev_uc_unsync -EXPORT_SYMBOL vmlinux 0xab245a14 fwnode_mdiobus_phy_device_register -EXPORT_SYMBOL vmlinux 0xab26269a ata_link_printk +EXPORT_SYMBOL vmlinux 0xab184957 rproc_alloc +EXPORT_SYMBOL vmlinux 0xab19883b inet6_protos +EXPORT_SYMBOL vmlinux 0xab230f86 dentry_open EXPORT_SYMBOL vmlinux 0xab3697e4 irq_poll_init +EXPORT_SYMBOL vmlinux 0xab385341 get_user_pages_unlocked EXPORT_SYMBOL vmlinux 0xab3b75ea vme_dma_pattern_attribute -EXPORT_SYMBOL vmlinux 0xab4c8e10 input_set_timestamp +EXPORT_SYMBOL vmlinux 0xab5afe50 sock_edemux EXPORT_SYMBOL vmlinux 0xab600421 probe_irq_off -EXPORT_SYMBOL vmlinux 0xab624ba5 ps2_cmd_aborted +EXPORT_SYMBOL vmlinux 0xab623b9d tcf_qevent_handle EXPORT_SYMBOL vmlinux 0xab63baa5 unregister_inetaddr_validator_notifier -EXPORT_SYMBOL vmlinux 0xab6495b4 tcp_poll EXPORT_SYMBOL vmlinux 0xab65ed80 set_memory_uc -EXPORT_SYMBOL vmlinux 0xab65ee58 gnet_stats_start_copy_compat +EXPORT_SYMBOL vmlinux 0xab67662c kernel_recvmsg EXPORT_SYMBOL vmlinux 0xab67a0ac dql_init +EXPORT_SYMBOL vmlinux 0xab6d5b3b hex_to_bin EXPORT_SYMBOL vmlinux 0xab781570 fb_get_options -EXPORT_SYMBOL vmlinux 0xaba24133 scsi_get_host_dev -EXPORT_SYMBOL vmlinux 0xabbdaeaf ip_frag_init -EXPORT_SYMBOL vmlinux 0xabbe894f unregister_console -EXPORT_SYMBOL vmlinux 0xabbf0e00 inet6_ioctl -EXPORT_SYMBOL vmlinux 0xabe12780 param_set_hexint -EXPORT_SYMBOL vmlinux 0xabe2c194 skb_udp_tunnel_segment -EXPORT_SYMBOL vmlinux 0xabe635b7 __f_setown -EXPORT_SYMBOL vmlinux 0xabea8004 __alloc_skb +EXPORT_SYMBOL vmlinux 0xab7e7ea5 setup_arg_pages +EXPORT_SYMBOL vmlinux 0xab838678 skb_unlink +EXPORT_SYMBOL vmlinux 0xab91e36e get_tz_trend +EXPORT_SYMBOL vmlinux 0xab974e6b sock_create_kern +EXPORT_SYMBOL vmlinux 0xaba0e905 iter_file_splice_write +EXPORT_SYMBOL vmlinux 0xabab1f08 page_pool_release_page +EXPORT_SYMBOL vmlinux 0xabaf5678 pci_enable_atomic_ops_to_root +EXPORT_SYMBOL vmlinux 0xabbf1ebd sg_miter_start +EXPORT_SYMBOL vmlinux 0xabe6cd02 gnet_stats_copy_app +EXPORT_SYMBOL vmlinux 0xabea689d flow_rule_match_ipv4_addrs +EXPORT_SYMBOL vmlinux 0xabeb160e ps2_end_command EXPORT_SYMBOL vmlinux 0xabeb9438 skb_flow_dissector_init EXPORT_SYMBOL vmlinux 0xabf32f29 utf16s_to_utf8s -EXPORT_SYMBOL vmlinux 0xac00f553 bio_split +EXPORT_SYMBOL vmlinux 0xac052632 seq_file_path +EXPORT_SYMBOL vmlinux 0xac18b4f5 nf_log_packet EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier -EXPORT_SYMBOL vmlinux 0xac295608 scsi_host_get -EXPORT_SYMBOL vmlinux 0xac2af313 filemap_fdatawait_keep_errors +EXPORT_SYMBOL vmlinux 0xac245791 napi_schedule_prep EXPORT_SYMBOL vmlinux 0xac3201b0 udp_flow_hashrnd -EXPORT_SYMBOL vmlinux 0xac4b1465 devfreq_resume_device +EXPORT_SYMBOL vmlinux 0xac3f61d8 unregister_md_personality +EXPORT_SYMBOL vmlinux 0xac4dd727 alloc_pages_vma EXPORT_SYMBOL vmlinux 0xac537ac2 percpu_counter_destroy EXPORT_SYMBOL vmlinux 0xac5fcec0 in4_pton -EXPORT_SYMBOL vmlinux 0xac6d3aae param_ops_invbool -EXPORT_SYMBOL vmlinux 0xac8192cc acpi_notifier_call_chain +EXPORT_SYMBOL vmlinux 0xac648c42 __xfrm_decode_session +EXPORT_SYMBOL vmlinux 0xac681568 bioset_init +EXPORT_SYMBOL vmlinux 0xac6b68b9 tcf_idr_search +EXPORT_SYMBOL vmlinux 0xac6dd884 xfrm6_rcv EXPORT_SYMBOL vmlinux 0xac8597d5 mb_cache_entry_get -EXPORT_SYMBOL vmlinux 0xac87726f security_d_instantiate -EXPORT_SYMBOL vmlinux 0xac87f4f8 tty_devnum -EXPORT_SYMBOL vmlinux 0xac8e3119 inet_csk_prepare_forced_close +EXPORT_SYMBOL vmlinux 0xac8f01d2 netif_stacked_transfer_operstate EXPORT_SYMBOL vmlinux 0xacaa4c72 dma_fence_match_context EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu -EXPORT_SYMBOL vmlinux 0xacac1f43 dev_change_flags -EXPORT_SYMBOL vmlinux 0xacaf154b security_path_rename -EXPORT_SYMBOL vmlinux 0xacb2b7d1 redraw_screen -EXPORT_SYMBOL vmlinux 0xacc9697e ip6_mtu -EXPORT_SYMBOL vmlinux 0xaccfd44c __mod_zone_page_state -EXPORT_SYMBOL vmlinux 0xacd7b94e xfrm_lookup_route +EXPORT_SYMBOL vmlinux 0xacb18bfe genphy_suspend +EXPORT_SYMBOL vmlinux 0xacb23cad skb_copy_and_csum_bits +EXPORT_SYMBOL vmlinux 0xacd4987c nobh_write_begin EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache -EXPORT_SYMBOL vmlinux 0xacda50d8 sock_recvmsg EXPORT_SYMBOL vmlinux 0xacddd806 ptp_get_vclocks_index +EXPORT_SYMBOL vmlinux 0xacdde316 devm_ioremap_np EXPORT_SYMBOL vmlinux 0xacea8173 acpi_debug_print +EXPORT_SYMBOL vmlinux 0xaced6023 udp_seq_next EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup EXPORT_SYMBOL vmlinux 0xacf649bf audit_log_task_info EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex -EXPORT_SYMBOL vmlinux 0xad065cf9 generic_parse_monolithic +EXPORT_SYMBOL vmlinux 0xad0cef71 ppp_unit_number EXPORT_SYMBOL vmlinux 0xad1036a2 amd_iommu_activate_guest_mode -EXPORT_SYMBOL vmlinux 0xad2951a9 ex_handler_rdmsr_unsafe +EXPORT_SYMBOL vmlinux 0xad21f13b ip_sock_set_pktinfo +EXPORT_SYMBOL vmlinux 0xad272c41 create_empty_buffers EXPORT_SYMBOL vmlinux 0xad357133 __traceiter_kmalloc_node +EXPORT_SYMBOL vmlinux 0xad35f47c phy_detach +EXPORT_SYMBOL vmlinux 0xad42a40e input_handler_for_each_handle +EXPORT_SYMBOL vmlinux 0xad4497ed mr_mfc_find_parent +EXPORT_SYMBOL vmlinux 0xad4b7e9e regset_get_alloc EXPORT_SYMBOL vmlinux 0xad536c91 x86_cpu_to_acpiid -EXPORT_SYMBOL vmlinux 0xad655e54 __dquot_transfer EXPORT_SYMBOL vmlinux 0xad6ba40e radix_tree_tag_get +EXPORT_SYMBOL vmlinux 0xad6c3095 vfs_copy_file_range EXPORT_SYMBOL vmlinux 0xad73041f autoremove_wake_function -EXPORT_SYMBOL vmlinux 0xad8a7206 is_acpi_device_node -EXPORT_SYMBOL vmlinux 0xad8fd7d6 pci_bus_write_config_dword EXPORT_SYMBOL vmlinux 0xad9901ae bit_waitqueue EXPORT_SYMBOL vmlinux 0xad995dac netdev_stats_to_stats64 -EXPORT_SYMBOL vmlinux 0xad9ccab3 netdev_printk EXPORT_SYMBOL vmlinux 0xada31e57 gen_pool_dma_alloc_align -EXPORT_SYMBOL vmlinux 0xadb6f02c param_ops_hexint +EXPORT_SYMBOL vmlinux 0xadae6df8 blake2s_final EXPORT_SYMBOL vmlinux 0xadbeed61 mipi_dsi_packet_format_is_long EXPORT_SYMBOL vmlinux 0xadc044b7 vfio_set_irqs_validate_and_prepare EXPORT_SYMBOL vmlinux 0xadcba50b ZSTD_findFrameCompressedSize -EXPORT_SYMBOL vmlinux 0xadcc1ac1 d_invalidate EXPORT_SYMBOL vmlinux 0xadd139d4 rfs_needed -EXPORT_SYMBOL vmlinux 0xaddee789 simple_write_begin -EXPORT_SYMBOL vmlinux 0xadf70af3 mini_qdisc_pair_init +EXPORT_SYMBOL vmlinux 0xadd37c7b phy_ethtool_get_sset_count +EXPORT_SYMBOL vmlinux 0xadd3ab93 seq_put_decimal_ll +EXPORT_SYMBOL vmlinux 0xade10b18 param_set_ushort +EXPORT_SYMBOL vmlinux 0xadf6060e sk_net_capable EXPORT_SYMBOL vmlinux 0xadfdfcef __bitmap_andnot +EXPORT_SYMBOL vmlinux 0xae006f99 tcp_mtup_init EXPORT_SYMBOL vmlinux 0xae04012c __vmalloc -EXPORT_SYMBOL vmlinux 0xae2ccd55 netif_napi_add EXPORT_SYMBOL vmlinux 0xae316c11 icmpv6_err_convert -EXPORT_SYMBOL vmlinux 0xae3e22af blk_mq_requeue_request -EXPORT_SYMBOL vmlinux 0xae4109ad dentry_open -EXPORT_SYMBOL vmlinux 0xae494844 netdev_pick_tx -EXPORT_SYMBOL vmlinux 0xae53ec45 set_posix_acl +EXPORT_SYMBOL vmlinux 0xae45afbc timestamp_truncate +EXPORT_SYMBOL vmlinux 0xae462575 dma_free_attrs +EXPORT_SYMBOL vmlinux 0xae4ef4b5 vfio_unregister_notifier +EXPORT_SYMBOL vmlinux 0xae54f7a4 generic_pipe_buf_try_steal EXPORT_SYMBOL vmlinux 0xae5a04bb acpi_evaluate_dsm -EXPORT_SYMBOL vmlinux 0xae6880a3 i2c_add_adapter -EXPORT_SYMBOL vmlinux 0xae78034e unregister_netdevice_notifier_dev_net -EXPORT_SYMBOL vmlinux 0xaea75138 begin_new_exec +EXPORT_SYMBOL vmlinux 0xae6de7ea devm_backlight_device_register +EXPORT_SYMBOL vmlinux 0xae711f4e inet6_csk_route_req +EXPORT_SYMBOL vmlinux 0xae94fe09 flow_block_cb_setup_simple +EXPORT_SYMBOL vmlinux 0xae97945f skb_eth_push +EXPORT_SYMBOL vmlinux 0xae9d1bfd nf_log_set EXPORT_SYMBOL vmlinux 0xaeac049a generate_random_guid EXPORT_SYMBOL vmlinux 0xaeb082ad _raw_read_unlock_bh -EXPORT_SYMBOL vmlinux 0xaebacfd4 to_nd_dax EXPORT_SYMBOL vmlinux 0xaebd12f0 acpi_get_name -EXPORT_SYMBOL vmlinux 0xaec315f6 seq_escape_mem -EXPORT_SYMBOL vmlinux 0xaec7a564 twl6040_get_pll -EXPORT_SYMBOL vmlinux 0xaecaa908 security_lock_kernel_down -EXPORT_SYMBOL vmlinux 0xaed38585 vme_unregister_driver -EXPORT_SYMBOL vmlinux 0xaee7d163 mntget -EXPORT_SYMBOL vmlinux 0xaf0d7c80 security_sock_graft -EXPORT_SYMBOL vmlinux 0xaf136b8f single_open_size -EXPORT_SYMBOL vmlinux 0xaf24a5c7 __udp_disconnect -EXPORT_SYMBOL vmlinux 0xaf2885ec file_remove_privs -EXPORT_SYMBOL vmlinux 0xaf33f207 mdiobus_read_nested +EXPORT_SYMBOL vmlinux 0xaee3ab44 genphy_restart_aneg +EXPORT_SYMBOL vmlinux 0xaeecbf76 tcp_close +EXPORT_SYMBOL vmlinux 0xaefd1367 key_link +EXPORT_SYMBOL vmlinux 0xaeff889a input_mt_sync_frame +EXPORT_SYMBOL vmlinux 0xaf18ba77 pci_bus_read_config_word +EXPORT_SYMBOL vmlinux 0xaf31061a freeze_bdev EXPORT_SYMBOL vmlinux 0xaf354bbe cpu_tss_rw +EXPORT_SYMBOL vmlinux 0xaf35f2cb __SCK__tp_func_kmem_cache_alloc_node EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level -EXPORT_SYMBOL vmlinux 0xaf4d1097 bio_copy_data_iter -EXPORT_SYMBOL vmlinux 0xaf505d19 __icmp_send -EXPORT_SYMBOL vmlinux 0xaf516365 memory_cgrp_subsys -EXPORT_SYMBOL vmlinux 0xaf53df9a udp_ioctl -EXPORT_SYMBOL vmlinux 0xaf72c504 bdi_set_max_ratio -EXPORT_SYMBOL vmlinux 0xaf74820d netdev_bind_sb_channel_queue -EXPORT_SYMBOL vmlinux 0xaf8a6a30 vma_set_file -EXPORT_SYMBOL vmlinux 0xaf8cf881 ata_scsi_cmd_error_handler -EXPORT_SYMBOL vmlinux 0xaf8f3f46 tcp_md5_hash_skb_data -EXPORT_SYMBOL vmlinux 0xafa90a57 phy_ethtool_get_sset_count +EXPORT_SYMBOL vmlinux 0xaf49f751 dev_getbyhwaddr_rcu +EXPORT_SYMBOL vmlinux 0xaf52d29c follow_down +EXPORT_SYMBOL vmlinux 0xaf5cebec dev_lstats_read +EXPORT_SYMBOL vmlinux 0xaf653578 copy_page_from_iter +EXPORT_SYMBOL vmlinux 0xaf808f9a rtnl_kfree_skbs +EXPORT_SYMBOL vmlinux 0xaf8ef7d1 cfb_copyarea +EXPORT_SYMBOL vmlinux 0xaf9e9dd5 ip_sock_set_tos +EXPORT_SYMBOL vmlinux 0xafa0b883 neigh_app_ns +EXPORT_SYMBOL vmlinux 0xafa9448d ps2_cmd_aborted +EXPORT_SYMBOL vmlinux 0xafb2f1dc _dev_err EXPORT_SYMBOL vmlinux 0xafb864c1 refcount_dec_and_lock_irqsave EXPORT_SYMBOL vmlinux 0xafc08054 dotdot_name -EXPORT_SYMBOL vmlinux 0xafc9e891 xsk_set_rx_need_wakeup +EXPORT_SYMBOL vmlinux 0xafd52f33 ww_mutex_lock_interruptible EXPORT_SYMBOL vmlinux 0xafd5ff2c amd_iommu_v2_supported EXPORT_SYMBOL vmlinux 0xafd744c6 __x86_indirect_thunk_rbp -EXPORT_SYMBOL vmlinux 0xafe17efa mdio_find_bus -EXPORT_SYMBOL vmlinux 0xafe9da55 dquot_file_open -EXPORT_SYMBOL vmlinux 0xafec871c elv_bio_merge_ok -EXPORT_SYMBOL vmlinux 0xb018b654 param_set_long +EXPORT_SYMBOL vmlinux 0xaff10d1b scsi_remove_device +EXPORT_SYMBOL vmlinux 0xaff1ec66 eisa_driver_unregister +EXPORT_SYMBOL vmlinux 0xaffd40e9 inet_proto_csum_replace_by_diff EXPORT_SYMBOL vmlinux 0xb01bebf9 xfrm_get_acqseq +EXPORT_SYMBOL vmlinux 0xb02a2512 to_nd_btt EXPORT_SYMBOL vmlinux 0xb02df2d6 __traceiter_rdpmc -EXPORT_SYMBOL vmlinux 0xb0437bf0 dump_skip_to +EXPORT_SYMBOL vmlinux 0xb0308faf udp_seq_ops +EXPORT_SYMBOL vmlinux 0xb031ab4b pin_user_pages +EXPORT_SYMBOL vmlinux 0xb033f5b5 pnpacpi_protocol +EXPORT_SYMBOL vmlinux 0xb03cc345 sock_no_sendpage_locked +EXPORT_SYMBOL vmlinux 0xb0406a17 xfrm_register_km +EXPORT_SYMBOL vmlinux 0xb040de33 __set_page_dirty_buffers EXPORT_SYMBOL vmlinux 0xb04a43ad __xa_alloc_cyclic -EXPORT_SYMBOL vmlinux 0xb0549baa kmalloc_caches EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max -EXPORT_SYMBOL vmlinux 0xb0655c56 page_symlink -EXPORT_SYMBOL vmlinux 0xb071648a pci_rebar_get_possible_sizes -EXPORT_SYMBOL vmlinux 0xb076618a lru_cache_add -EXPORT_SYMBOL vmlinux 0xb0902e58 devm_ioport_unmap -EXPORT_SYMBOL vmlinux 0xb0963994 page_cache_next_miss +EXPORT_SYMBOL vmlinux 0xb0608891 vme_register_bridge +EXPORT_SYMBOL vmlinux 0xb06bdf63 mipi_dsi_compression_mode +EXPORT_SYMBOL vmlinux 0xb07ec26d mdio_find_bus +EXPORT_SYMBOL vmlinux 0xb084cd78 blk_queue_logical_block_size +EXPORT_SYMBOL vmlinux 0xb09ab15e agp_generic_alloc_page +EXPORT_SYMBOL vmlinux 0xb09eea13 neigh_carrier_down EXPORT_SYMBOL vmlinux 0xb0a0da0c rational_best_approximation -EXPORT_SYMBOL vmlinux 0xb0a87560 jbd2_journal_force_commit_nested -EXPORT_SYMBOL vmlinux 0xb0b6f4cd dquot_get_state +EXPORT_SYMBOL vmlinux 0xb0b59d9b pci_iomap_range +EXPORT_SYMBOL vmlinux 0xb0b8ccdf dma_unmap_sg_attrs +EXPORT_SYMBOL vmlinux 0xb0b932ad pcim_iounmap_regions EXPORT_SYMBOL vmlinux 0xb0c5e247 lockref_put_return EXPORT_SYMBOL vmlinux 0xb0e10781 get_option +EXPORT_SYMBOL vmlinux 0xb0e1d20b __scsi_iterate_devices EXPORT_SYMBOL vmlinux 0xb0e602eb memmove +EXPORT_SYMBOL vmlinux 0xb0e88057 d_exact_alias +EXPORT_SYMBOL vmlinux 0xb0ed1c1e ip_tunnel_parse_protocol EXPORT_SYMBOL vmlinux 0xb0f389ee utf8_normalize -EXPORT_SYMBOL vmlinux 0xb0f803ed unix_get_socket +EXPORT_SYMBOL vmlinux 0xb0f472c5 scsi_remove_host +EXPORT_SYMBOL vmlinux 0xb0f880e5 devm_devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0xb0fdcc4e blk_queue_max_discard_sectors +EXPORT_SYMBOL vmlinux 0xb107bfe6 security_task_getsecid_subj +EXPORT_SYMBOL vmlinux 0xb10b88e4 rtnl_configure_link EXPORT_SYMBOL vmlinux 0xb10e7df4 __kfifo_dma_in_prepare -EXPORT_SYMBOL vmlinux 0xb11c0b31 inet_csk_reqsk_queue_drop_and_put EXPORT_SYMBOL vmlinux 0xb121390a probe_irq_on +EXPORT_SYMBOL vmlinux 0xb1231179 netdev_refcnt_read EXPORT_SYMBOL vmlinux 0xb12cbacb fb_unregister_client EXPORT_SYMBOL vmlinux 0xb1342cdb _raw_read_lock_irqsave -EXPORT_SYMBOL vmlinux 0xb1355224 __skb_recv_udp -EXPORT_SYMBOL vmlinux 0xb13dfb9b vfs_fsync -EXPORT_SYMBOL vmlinux 0xb1449a7c __vfs_setxattr +EXPORT_SYMBOL vmlinux 0xb13578f4 user_path_create +EXPORT_SYMBOL vmlinux 0xb13c5d23 backlight_force_update +EXPORT_SYMBOL vmlinux 0xb13eee8b jbd2_journal_release_jbd_inode EXPORT_SYMBOL vmlinux 0xb14ab1ef hdmi_audio_infoframe_init EXPORT_SYMBOL vmlinux 0xb14fc46a find_next_clump8 -EXPORT_SYMBOL vmlinux 0xb161315a tcf_idr_release -EXPORT_SYMBOL vmlinux 0xb18000e3 pcie_ptm_enabled +EXPORT_SYMBOL vmlinux 0xb15337ce try_lookup_one_len +EXPORT_SYMBOL vmlinux 0xb16ceb5b xp_alloc +EXPORT_SYMBOL vmlinux 0xb17b1a6b dquot_reclaim_space_nodirty +EXPORT_SYMBOL vmlinux 0xb199c44b get_bitmap_from_slot EXPORT_SYMBOL vmlinux 0xb19a5453 __per_cpu_offset +EXPORT_SYMBOL vmlinux 0xb1a00d05 pci_request_selected_regions +EXPORT_SYMBOL vmlinux 0xb1a785d4 put_ipc_ns +EXPORT_SYMBOL vmlinux 0xb1aa01fb __traceiter_spi_transfer_start +EXPORT_SYMBOL vmlinux 0xb1b13bf0 __dec_node_page_state +EXPORT_SYMBOL vmlinux 0xb1baf120 mipi_dsi_dcs_set_page_address +EXPORT_SYMBOL vmlinux 0xb1c32ce6 set_pages_uc EXPORT_SYMBOL vmlinux 0xb1c3a01a oops_in_progress -EXPORT_SYMBOL vmlinux 0xb1d39101 eth_validate_addr +EXPORT_SYMBOL vmlinux 0xb1c3c22b sg_miter_stop EXPORT_SYMBOL vmlinux 0xb1d3a15c blk_finish_plug +EXPORT_SYMBOL vmlinux 0xb1d77cfe nf_unregister_sockopt EXPORT_SYMBOL vmlinux 0xb1ddf995 jiffies_64_to_clock_t -EXPORT_SYMBOL vmlinux 0xb1e6c5b3 phy_start_aneg -EXPORT_SYMBOL vmlinux 0xb2053dd4 register_tcf_proto_ops -EXPORT_SYMBOL vmlinux 0xb207de87 register_cdrom -EXPORT_SYMBOL vmlinux 0xb21340e1 mmc_sw_reset +EXPORT_SYMBOL vmlinux 0xb1e1cafe dquot_transfer +EXPORT_SYMBOL vmlinux 0xb1eb207a mmc_of_parse_clk_phase +EXPORT_SYMBOL vmlinux 0xb1f68235 iunique +EXPORT_SYMBOL vmlinux 0xb2014828 xfrm_dst_ifdown +EXPORT_SYMBOL vmlinux 0xb2140a03 kern_unmount EXPORT_SYMBOL vmlinux 0xb219d56c wbinvd_on_cpu -EXPORT_SYMBOL vmlinux 0xb21fa756 xsk_get_pool_from_qid +EXPORT_SYMBOL vmlinux 0xb21d86f6 d_make_root +EXPORT_SYMBOL vmlinux 0xb2295ac2 key_validate 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 0xb23638c8 ihold -EXPORT_SYMBOL vmlinux 0xb247ec02 dmam_pool_create +EXPORT_SYMBOL vmlinux 0xb24bdbce handle_edge_irq EXPORT_SYMBOL vmlinux 0xb2601486 __SCT__tp_func_dma_fence_enable_signal -EXPORT_SYMBOL vmlinux 0xb263183e vc_cons -EXPORT_SYMBOL vmlinux 0xb2695d0f security_sk_clone -EXPORT_SYMBOL vmlinux 0xb26dec80 dev_mc_flush -EXPORT_SYMBOL vmlinux 0xb2708afb set_anon_super -EXPORT_SYMBOL vmlinux 0xb272a3ba iov_iter_get_pages -EXPORT_SYMBOL vmlinux 0xb27fe846 ps2_drain -EXPORT_SYMBOL vmlinux 0xb295949f super_setup_bdi_name -EXPORT_SYMBOL vmlinux 0xb2ab53ee __skb_get_hash -EXPORT_SYMBOL vmlinux 0xb2b93ba5 flow_rule_match_enc_opts +EXPORT_SYMBOL vmlinux 0xb28f19ec jbd2_journal_restart +EXPORT_SYMBOL vmlinux 0xb2afee13 nf_ct_attach +EXPORT_SYMBOL vmlinux 0xb2b19959 flow_block_cb_incref EXPORT_SYMBOL vmlinux 0xb2bcb088 acpi_current_gpe_count -EXPORT_SYMBOL vmlinux 0xb2bed059 noop_fsync EXPORT_SYMBOL vmlinux 0xb2c96edc convert_art_ns_to_tsc +EXPORT_SYMBOL vmlinux 0xb2df7c98 bdi_register EXPORT_SYMBOL vmlinux 0xb2dfdf3c kset_register EXPORT_SYMBOL vmlinux 0xb2f35c6a xxh64 -EXPORT_SYMBOL vmlinux 0xb2f579c7 __cpuhp_remove_state_cpuslocked EXPORT_SYMBOL vmlinux 0xb2f74fb6 intel_gmch_remove EXPORT_SYMBOL vmlinux 0xb2fabf63 efi EXPORT_SYMBOL vmlinux 0xb2fcb56d queue_delayed_work_on EXPORT_SYMBOL vmlinux 0xb2fd5ceb __put_user_4 EXPORT_SYMBOL vmlinux 0xb308c97d wait_woken -EXPORT_SYMBOL vmlinux 0xb3092a57 skb_trim EXPORT_SYMBOL vmlinux 0xb30b9822 vme_master_set -EXPORT_SYMBOL vmlinux 0xb31fe737 update_devfreq +EXPORT_SYMBOL vmlinux 0xb3197c7d xsk_uses_need_wakeup EXPORT_SYMBOL vmlinux 0xb320cc0e sg_init_one -EXPORT_SYMBOL vmlinux 0xb3231c70 skb_free_datagram EXPORT_SYMBOL vmlinux 0xb3258f79 __ubsan_handle_type_mismatch_v1 EXPORT_SYMBOL vmlinux 0xb32a5973 acpi_ut_status_exit -EXPORT_SYMBOL vmlinux 0xb32f9e29 kmem_cache_destroy -EXPORT_SYMBOL vmlinux 0xb33192a9 dev_mc_add_global -EXPORT_SYMBOL vmlinux 0xb33c3bbd jbd2_journal_try_to_free_buffers -EXPORT_SYMBOL vmlinux 0xb33f6d39 netif_skb_features -EXPORT_SYMBOL vmlinux 0xb35f4ec3 skb_eth_push +EXPORT_SYMBOL vmlinux 0xb33337ce inet_csk_delete_keepalive_timer +EXPORT_SYMBOL vmlinux 0xb34187cd filemap_page_mkwrite +EXPORT_SYMBOL vmlinux 0xb351600f __tracepoint_mmap_lock_released EXPORT_SYMBOL vmlinux 0xb3687850 out_of_line_wait_on_bit_lock -EXPORT_SYMBOL vmlinux 0xb3692a48 invalidate_inode_buffers +EXPORT_SYMBOL vmlinux 0xb3749b20 simple_release_fs +EXPORT_SYMBOL vmlinux 0xb37b64e1 xp_can_alloc EXPORT_SYMBOL vmlinux 0xb3863a67 acpi_set_gpe_wake_mask -EXPORT_SYMBOL vmlinux 0xb39225d4 vfs_llseek +EXPORT_SYMBOL vmlinux 0xb3868904 blk_queue_max_segment_size +EXPORT_SYMBOL vmlinux 0xb3916dd7 setattr_copy EXPORT_SYMBOL vmlinux 0xb3a2dfdf nmi_panic -EXPORT_SYMBOL vmlinux 0xb3aaa0be dma_resv_init +EXPORT_SYMBOL vmlinux 0xb3a3c9ae serial8250_do_set_termios +EXPORT_SYMBOL vmlinux 0xb3b76ddd get_ipc_ns_exported EXPORT_SYMBOL vmlinux 0xb3bd68cc security_secmark_relabel_packet EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string -EXPORT_SYMBOL vmlinux 0xb3eeee1c devm_ioport_map +EXPORT_SYMBOL vmlinux 0xb3d6a1d4 put_cmsg +EXPORT_SYMBOL vmlinux 0xb3f08053 nobh_write_end EXPORT_SYMBOL vmlinux 0xb3f49446 kstrtos8_from_user EXPORT_SYMBOL vmlinux 0xb3f548ad kmemdup_nul EXPORT_SYMBOL vmlinux 0xb3f7646e kthread_should_stop -EXPORT_SYMBOL vmlinux 0xb3f9e0ab security_locked_down +EXPORT_SYMBOL vmlinux 0xb3fde023 dev_get_by_index EXPORT_SYMBOL vmlinux 0xb4043948 acpi_execute_simple_method -EXPORT_SYMBOL vmlinux 0xb422e9bd jbd2_wait_inode_data +EXPORT_SYMBOL vmlinux 0xb41feb99 mmc_register_driver EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked -EXPORT_SYMBOL vmlinux 0xb431b5be __tracepoint_dma_fence_enable_signal -EXPORT_SYMBOL vmlinux 0xb45754c4 i2c_verify_adapter +EXPORT_SYMBOL vmlinux 0xb42c456c scsi_host_alloc +EXPORT_SYMBOL vmlinux 0xb447372f fqdir_init EXPORT_SYMBOL vmlinux 0xb4577003 acpi_dev_present +EXPORT_SYMBOL vmlinux 0xb45e4705 vme_master_mmap +EXPORT_SYMBOL vmlinux 0xb47163e1 elv_rb_add EXPORT_SYMBOL vmlinux 0xb47cca30 csum_ipv6_magic +EXPORT_SYMBOL vmlinux 0xb486b8b8 sock_create_lite +EXPORT_SYMBOL vmlinux 0xb48b1bbe register_framebuffer EXPORT_SYMBOL vmlinux 0xb48d4d22 security_sb_eat_lsm_opts -EXPORT_SYMBOL vmlinux 0xb493a3f9 param_array_ops -EXPORT_SYMBOL vmlinux 0xb4bb46a8 dcb_ieee_getapp_default_prio_mask -EXPORT_SYMBOL vmlinux 0xb4c11287 __tracepoint_kmem_cache_alloc_node -EXPORT_SYMBOL vmlinux 0xb4c9acf7 pnp_is_active -EXPORT_SYMBOL vmlinux 0xb4d2141c ps2_handle_ack -EXPORT_SYMBOL vmlinux 0xb4db4947 tcp_setsockopt -EXPORT_SYMBOL vmlinux 0xb4e1eb72 uart_register_driver -EXPORT_SYMBOL vmlinux 0xb4e5bd2c sync_mapping_buffers +EXPORT_SYMBOL vmlinux 0xb4959caf __dev_kfree_skb_any +EXPORT_SYMBOL vmlinux 0xb49bc4fc nf_hook_slow +EXPORT_SYMBOL vmlinux 0xb4ab97ea inet_csk_clear_xmit_timers +EXPORT_SYMBOL vmlinux 0xb4b1137e devm_of_find_backlight +EXPORT_SYMBOL vmlinux 0xb4b21a65 xfrm_state_lookup_byaddr +EXPORT_SYMBOL vmlinux 0xb4cb8c35 unmap_mapping_range +EXPORT_SYMBOL vmlinux 0xb4ec081b netif_set_xps_queue EXPORT_SYMBOL vmlinux 0xb4f13d2a abort -EXPORT_SYMBOL vmlinux 0xb50d68b4 blk_queue_physical_block_size -EXPORT_SYMBOL vmlinux 0xb516164b tty_port_hangup -EXPORT_SYMBOL vmlinux 0xb5180b08 input_close_device +EXPORT_SYMBOL vmlinux 0xb4f698d1 tso_build_hdr EXPORT_SYMBOL vmlinux 0xb52ee8be intel_gtt_clear_range -EXPORT_SYMBOL vmlinux 0xb52fd81b devfreq_remove_governor EXPORT_SYMBOL vmlinux 0xb53f2810 tcp_sockets_allocated -EXPORT_SYMBOL vmlinux 0xb566bfce devfreq_suspend_device -EXPORT_SYMBOL vmlinux 0xb57164e0 current_time +EXPORT_SYMBOL vmlinux 0xb5686fc0 devm_get_clk_from_child EXPORT_SYMBOL vmlinux 0xb57343c2 frontswap_shrink -EXPORT_SYMBOL vmlinux 0xb57b3b32 mipi_dsi_dcs_set_page_address -EXPORT_SYMBOL vmlinux 0xb57c0ea7 pm_vt_switch_required +EXPORT_SYMBOL vmlinux 0xb5791249 ip_ct_attach EXPORT_SYMBOL vmlinux 0xb58aeaab kernel_cpustat -EXPORT_SYMBOL vmlinux 0xb591e506 phy_ethtool_get_strings -EXPORT_SYMBOL vmlinux 0xb59f5049 __dec_zone_page_state +EXPORT_SYMBOL vmlinux 0xb58c295c tty_hung_up_p +EXPORT_SYMBOL vmlinux 0xb58e9fe0 is_bad_inode +EXPORT_SYMBOL vmlinux 0xb58f96b5 twl6040_set_pll +EXPORT_SYMBOL vmlinux 0xb5a0b0b3 xfrm_policy_hash_rebuild EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev -EXPORT_SYMBOL vmlinux 0xb5a8a611 mdio_driver_register EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy EXPORT_SYMBOL vmlinux 0xb5ab892d uv_undefined -EXPORT_SYMBOL vmlinux 0xb5ae7d3a input_register_device +EXPORT_SYMBOL vmlinux 0xb5b3f2c0 cdrom_number_of_slots EXPORT_SYMBOL vmlinux 0xb5b63711 fileattr_fill_xflags -EXPORT_SYMBOL vmlinux 0xb5bab009 dm_kcopyd_zero -EXPORT_SYMBOL vmlinux 0xb5d1e4cd __traceiter_mmap_lock_acquire_returned +EXPORT_SYMBOL vmlinux 0xb5c59613 filemap_fault +EXPORT_SYMBOL vmlinux 0xb5d26a99 migrate_vma_pages +EXPORT_SYMBOL vmlinux 0xb5e31202 mr_mfc_find_any EXPORT_SYMBOL vmlinux 0xb5e73116 flush_delayed_work -EXPORT_SYMBOL vmlinux 0xb5fb8009 scsi_rescan_device -EXPORT_SYMBOL vmlinux 0xb612eafd ata_dev_printk +EXPORT_SYMBOL vmlinux 0xb5f14015 inet_add_protocol +EXPORT_SYMBOL vmlinux 0xb5f15f1e __tty_insert_flip_char +EXPORT_SYMBOL vmlinux 0xb600b2e4 tty_port_destroy +EXPORT_SYMBOL vmlinux 0xb603edab migrate_page_copy +EXPORT_SYMBOL vmlinux 0xb607a757 skb_ext_add +EXPORT_SYMBOL vmlinux 0xb6195ff9 may_umount_tree EXPORT_SYMBOL vmlinux 0xb61d6fc2 down_read_interruptible -EXPORT_SYMBOL vmlinux 0xb63084ac md_error EXPORT_SYMBOL vmlinux 0xb633f115 irq_poll_enable -EXPORT_SYMBOL vmlinux 0xb63a1414 __genphy_config_aneg -EXPORT_SYMBOL vmlinux 0xb63bbe5d wireless_send_event -EXPORT_SYMBOL vmlinux 0xb646238d __post_watch_notification +EXPORT_SYMBOL vmlinux 0xb63898d4 pci_release_resource +EXPORT_SYMBOL vmlinux 0xb63b128f cdrom_check_events +EXPORT_SYMBOL vmlinux 0xb63e7b74 tty_insert_flip_string_fixed_flag +EXPORT_SYMBOL vmlinux 0xb64853de dev_get_by_index_rcu +EXPORT_SYMBOL vmlinux 0xb64b9658 blk_pre_runtime_suspend EXPORT_SYMBOL vmlinux 0xb654ef65 acpi_os_read_port -EXPORT_SYMBOL vmlinux 0xb65cee0b generic_file_mmap -EXPORT_SYMBOL vmlinux 0xb6708638 truncate_inode_pages +EXPORT_SYMBOL vmlinux 0xb65aeab1 rproc_of_resm_mem_entry_init EXPORT_SYMBOL vmlinux 0xb674a534 acpi_unmap_cpu EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt +EXPORT_SYMBOL vmlinux 0xb679b9a0 __devm_mdiobus_register EXPORT_SYMBOL vmlinux 0xb67c9280 utf8cursor -EXPORT_SYMBOL vmlinux 0xb67cf224 napi_get_frags EXPORT_SYMBOL vmlinux 0xb67fec0e uuid_parse -EXPORT_SYMBOL vmlinux 0xb6842f19 flow_rule_match_icmp -EXPORT_SYMBOL vmlinux 0xb689b912 neigh_destroy +EXPORT_SYMBOL vmlinux 0xb6884766 xp_dma_unmap +EXPORT_SYMBOL vmlinux 0xb692b0ba mmc_gpiod_request_cd_irq EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin EXPORT_SYMBOL vmlinux 0xb6acaa13 phy_sfp_detach -EXPORT_SYMBOL vmlinux 0xb6b1fd8d simple_setattr -EXPORT_SYMBOL vmlinux 0xb6b2cdb1 set_page_dirty -EXPORT_SYMBOL vmlinux 0xb6b3fa8b __pskb_pull_tail -EXPORT_SYMBOL vmlinux 0xb6bfed2f configfs_register_default_group -EXPORT_SYMBOL vmlinux 0xb6c4a2d0 phy_get_eee_err EXPORT_SYMBOL vmlinux 0xb6cd5c4c kobject_init -EXPORT_SYMBOL vmlinux 0xb6d96c66 vga_switcheroo_register_audio_client +EXPORT_SYMBOL vmlinux 0xb6d58658 regset_get +EXPORT_SYMBOL vmlinux 0xb6d83208 fs_param_is_string EXPORT_SYMBOL vmlinux 0xb6e36ce2 psched_ratecfg_precompute -EXPORT_SYMBOL vmlinux 0xb6f0d5a7 tcp_v4_destroy_sock +EXPORT_SYMBOL vmlinux 0xb6e5fdcb udp_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0xb6ee564e security_inet_conn_established EXPORT_SYMBOL vmlinux 0xb6fde909 close_fd -EXPORT_SYMBOL vmlinux 0xb7100c30 fd_install +EXPORT_SYMBOL vmlinux 0xb6fea05a sync_inode_metadata EXPORT_SYMBOL vmlinux 0xb71589f0 skip_spaces +EXPORT_SYMBOL vmlinux 0xb71cc902 jbd2_journal_begin_ordered_truncate EXPORT_SYMBOL vmlinux 0xb71ed69f __hw_addr_unsync -EXPORT_SYMBOL vmlinux 0xb736607d genphy_suspend +EXPORT_SYMBOL vmlinux 0xb72093c3 dma_mmap_attrs +EXPORT_SYMBOL vmlinux 0xb724c6c2 copy_page_from_iter_atomic +EXPORT_SYMBOL vmlinux 0xb7275522 pci_fixup_cardbus EXPORT_SYMBOL vmlinux 0xb737b185 gen_pool_best_fit -EXPORT_SYMBOL vmlinux 0xb73b1628 reuseport_migrate_sock -EXPORT_SYMBOL vmlinux 0xb74586e4 blk_integrity_register +EXPORT_SYMBOL vmlinux 0xb74f5b15 skb_try_coalesce EXPORT_SYMBOL vmlinux 0xb7593ddc iosf_mbi_unregister_pmic_bus_access_notifier -EXPORT_SYMBOL vmlinux 0xb77dbeea inet6_add_offload +EXPORT_SYMBOL vmlinux 0xb769e4e0 max8998_bulk_write +EXPORT_SYMBOL vmlinux 0xb7722d29 vfs_ioctl EXPORT_SYMBOL vmlinux 0xb784154f utf8_casefold_hash EXPORT_SYMBOL vmlinux 0xb78debe3 LZ4_decompress_fast_usingDict -EXPORT_SYMBOL vmlinux 0xb79e7731 xfrm_alloc_spi -EXPORT_SYMBOL vmlinux 0xb7b44e4d rproc_of_parse_firmware +EXPORT_SYMBOL vmlinux 0xb79de8c0 pm860x_page_reg_write +EXPORT_SYMBOL vmlinux 0xb7a61c10 vga_switcheroo_register_handler EXPORT_SYMBOL vmlinux 0xb7c0f443 sort EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags -EXPORT_SYMBOL vmlinux 0xb7d18ca4 vlan_vids_del_by_dev -EXPORT_SYMBOL vmlinux 0xb7e05ce6 __skb_gro_checksum_complete -EXPORT_SYMBOL vmlinux 0xb7ec2cd1 generic_writepages -EXPORT_SYMBOL vmlinux 0xb7f64e19 nvdimm_namespace_locked -EXPORT_SYMBOL vmlinux 0xb8057d6f sched_autogroup_detach -EXPORT_SYMBOL vmlinux 0xb8312646 tcp_rtx_synack +EXPORT_SYMBOL vmlinux 0xb7d40bb4 vma_set_file +EXPORT_SYMBOL vmlinux 0xb7e6d2a7 agp_allocate_memory +EXPORT_SYMBOL vmlinux 0xb7f417da elv_rb_latter_request +EXPORT_SYMBOL vmlinux 0xb8138a67 __dev_set_mtu +EXPORT_SYMBOL vmlinux 0xb81c08be vme_irq_free +EXPORT_SYMBOL vmlinux 0xb82f9997 pcix_get_max_mmrbc EXPORT_SYMBOL vmlinux 0xb83129db ZSTD_decompressContinue -EXPORT_SYMBOL vmlinux 0xb83e41f5 __serio_register_driver -EXPORT_SYMBOL vmlinux 0xb8404f23 nf_reinject -EXPORT_SYMBOL vmlinux 0xb8405dbc pmem_sector_size -EXPORT_SYMBOL vmlinux 0xb841d479 fs_context_for_mount +EXPORT_SYMBOL vmlinux 0xb8483646 __xfrm_state_destroy EXPORT_SYMBOL vmlinux 0xb868ac5c register_sysrq_key EXPORT_SYMBOL vmlinux 0xb86f74c5 free_cpumask_var -EXPORT_SYMBOL vmlinux 0xb87676a6 phy_detach +EXPORT_SYMBOL vmlinux 0xb87167f4 page_cache_next_miss +EXPORT_SYMBOL vmlinux 0xb87dabd5 fib_default_rule_add EXPORT_SYMBOL vmlinux 0xb88fd035 set_groups -EXPORT_SYMBOL vmlinux 0xb8962d6a sock_queue_err_skb +EXPORT_SYMBOL vmlinux 0xb89143a0 find_get_pages_contig EXPORT_SYMBOL vmlinux 0xb89b6e6b guid_parse +EXPORT_SYMBOL vmlinux 0xb8a113ed tcf_get_next_proto +EXPORT_SYMBOL vmlinux 0xb8a14780 put_cmsg_scm_timestamping EXPORT_SYMBOL vmlinux 0xb8b043f2 kfree_link EXPORT_SYMBOL vmlinux 0xb8b9f817 kmalloc_order_trace -EXPORT_SYMBOL vmlinux 0xb8c351c2 devm_input_allocate_device -EXPORT_SYMBOL vmlinux 0xb8c70658 rtc_add_groups -EXPORT_SYMBOL vmlinux 0xb8cd1d23 kmem_cache_create_usercopy -EXPORT_SYMBOL vmlinux 0xb8d0472d __skb_gso_segment +EXPORT_SYMBOL vmlinux 0xb8e3f799 uart_register_driver EXPORT_SYMBOL vmlinux 0xb8e7ce2c __put_user_8 -EXPORT_SYMBOL vmlinux 0xb8ef7003 devm_clk_get_optional +EXPORT_SYMBOL vmlinux 0xb8f23e68 devm_nvmem_cell_put EXPORT_SYMBOL vmlinux 0xb9056bb6 remove_conflicting_framebuffers EXPORT_SYMBOL vmlinux 0xb907513f unpoison_memory EXPORT_SYMBOL vmlinux 0xb911bb58 minmax_running_max -EXPORT_SYMBOL vmlinux 0xb9135489 genphy_restart_aneg -EXPORT_SYMBOL vmlinux 0xb9156797 iov_iter_npages -EXPORT_SYMBOL vmlinux 0xb919179a napi_consume_skb -EXPORT_SYMBOL vmlinux 0xb92e20cb md_finish_reshape +EXPORT_SYMBOL vmlinux 0xb91335d9 scsi_get_device_flags_keyed +EXPORT_SYMBOL vmlinux 0xb92068d1 tcf_idr_create_from_flags +EXPORT_SYMBOL vmlinux 0xb92b147b netdev_set_tc_queue +EXPORT_SYMBOL vmlinux 0xb931b89f nd_btt_arena_is_valid +EXPORT_SYMBOL vmlinux 0xb933ab0d unlock_two_nondirectories EXPORT_SYMBOL vmlinux 0xb94339c4 qdisc_put_stab EXPORT_SYMBOL vmlinux 0xb9478d90 hdmi_drm_infoframe_unpack_only -EXPORT_SYMBOL vmlinux 0xb94c4c50 gnet_stats_copy_basic_hw -EXPORT_SYMBOL vmlinux 0xb96bf327 xfrm6_input_addr EXPORT_SYMBOL vmlinux 0xb97220ff bitmap_parse +EXPORT_SYMBOL vmlinux 0xb9754e4d ip6_fraglist_prepare EXPORT_SYMBOL vmlinux 0xb97f7045 acpi_install_gpe_handler -EXPORT_SYMBOL vmlinux 0xb9806c89 sync_file_create -EXPORT_SYMBOL vmlinux 0xb983e30a inet_bind -EXPORT_SYMBOL vmlinux 0xb99014f3 tcp_gro_complete -EXPORT_SYMBOL vmlinux 0xb9a493c6 vga_switcheroo_register_handler +EXPORT_SYMBOL vmlinux 0xb994d9d0 kernel_bind +EXPORT_SYMBOL vmlinux 0xb9a6b7ad mod_node_page_state EXPORT_SYMBOL vmlinux 0xb9af1d0d __xa_clear_mark -EXPORT_SYMBOL vmlinux 0xb9bf725b nf_unregister_net_hook -EXPORT_SYMBOL vmlinux 0xb9d248f4 dev_uc_del +EXPORT_SYMBOL vmlinux 0xb9b1c60f security_dentry_create_files_as +EXPORT_SYMBOL vmlinux 0xb9d3c6c3 key_payload_reserve EXPORT_SYMBOL vmlinux 0xb9e276cf wrmsr_safe_regs_on_cpu EXPORT_SYMBOL vmlinux 0xb9e7429c memcpy_toio EXPORT_SYMBOL vmlinux 0xb9e8e2cc in6addr_sitelocal_allrouters +EXPORT_SYMBOL vmlinux 0xb9f28b43 n_tty_ioctl_helper +EXPORT_SYMBOL vmlinux 0xba0181b8 blkdev_issue_zeroout EXPORT_SYMBOL vmlinux 0xba0676e2 vm_zone_stat -EXPORT_SYMBOL vmlinux 0xba06b9df scsi_add_host_with_dma +EXPORT_SYMBOL vmlinux 0xba0ef37c xp_dma_sync_for_device_slow EXPORT_SYMBOL vmlinux 0xba1008c8 __crc32c_le -EXPORT_SYMBOL vmlinux 0xba16ab81 dma_set_coherent_mask -EXPORT_SYMBOL vmlinux 0xba311732 pagevec_lookup_range_tag -EXPORT_SYMBOL vmlinux 0xba4968bd __serio_register_port EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy -EXPORT_SYMBOL vmlinux 0xba4c4e69 tcp_md5_do_del EXPORT_SYMBOL vmlinux 0xba53adab nla_policy_len -EXPORT_SYMBOL vmlinux 0xba5485fb pci_iounmap -EXPORT_SYMBOL vmlinux 0xba56efdb mmc_can_trim -EXPORT_SYMBOL vmlinux 0xba5c45cf inode_permission -EXPORT_SYMBOL vmlinux 0xba5d790a md_register_thread -EXPORT_SYMBOL vmlinux 0xba641bb5 pci_write_config_dword -EXPORT_SYMBOL vmlinux 0xba8aa31f ip6tun_encaps +EXPORT_SYMBOL vmlinux 0xba712c85 i2c_smbus_write_byte_data EXPORT_SYMBOL vmlinux 0xba8fbd64 _raw_spin_lock -EXPORT_SYMBOL vmlinux 0xbac3f73d scsi_track_queue_full -EXPORT_SYMBOL vmlinux 0xbafbf3d3 get_phy_device -EXPORT_SYMBOL vmlinux 0xbb0083be inet6_del_offload -EXPORT_SYMBOL vmlinux 0xbb042cd9 fc_mount +EXPORT_SYMBOL vmlinux 0xbab50920 file_open_root +EXPORT_SYMBOL vmlinux 0xbae9b1fb d_path +EXPORT_SYMBOL vmlinux 0xbae9e98d f_setown +EXPORT_SYMBOL vmlinux 0xbaf4059d pcix_get_mmrbc EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset +EXPORT_SYMBOL vmlinux 0xbb0743ac pci_bus_read_dev_vendor_id EXPORT_SYMBOL vmlinux 0xbb13595e smp_call_function_many EXPORT_SYMBOL vmlinux 0xbb1bac24 acpi_unregister_debugger +EXPORT_SYMBOL vmlinux 0xbb1bc98a inet_reqsk_alloc EXPORT_SYMBOL vmlinux 0xbb24f607 init_cdrom_command -EXPORT_SYMBOL vmlinux 0xbb26b5f4 pci_unregister_driver -EXPORT_SYMBOL vmlinux 0xbb33ec7c ip6mr_rule_default +EXPORT_SYMBOL vmlinux 0xbb287267 backlight_device_get_by_type +EXPORT_SYMBOL vmlinux 0xbb28c2c2 phy_get_internal_delay EXPORT_SYMBOL vmlinux 0xbb35675b __bitmap_intersects -EXPORT_SYMBOL vmlinux 0xbb44c6e1 tcp_check_req EXPORT_SYMBOL vmlinux 0xbb4f4766 simple_write_to_buffer -EXPORT_SYMBOL vmlinux 0xbb62622e seg6_hmac_info_del -EXPORT_SYMBOL vmlinux 0xbb628843 scsi_test_unit_ready -EXPORT_SYMBOL vmlinux 0xbb7303b7 generic_file_splice_read -EXPORT_SYMBOL vmlinux 0xbb75de52 blk_mq_alloc_tag_set -EXPORT_SYMBOL vmlinux 0xbb771f31 dma_map_sg_attrs -EXPORT_SYMBOL vmlinux 0xbb804fa6 netdev_upper_dev_unlink -EXPORT_SYMBOL vmlinux 0xbb822ce5 fscrypt_free_inode +EXPORT_SYMBOL vmlinux 0xbb5479db __tracepoint_kmem_cache_free +EXPORT_SYMBOL vmlinux 0xbb5fbc81 __inet_hash +EXPORT_SYMBOL vmlinux 0xbb717159 dst_cow_metrics_generic +EXPORT_SYMBOL vmlinux 0xbb8c5e65 blkdev_issue_flush EXPORT_SYMBOL vmlinux 0xbb8e169a vga_switcheroo_handler_flags -EXPORT_SYMBOL vmlinux 0xbb8fbf62 jbd2_journal_restart -EXPORT_SYMBOL vmlinux 0xbb96d11e netpoll_setup +EXPORT_SYMBOL vmlinux 0xbb93a270 scsi_block_when_processing_errors +EXPORT_SYMBOL vmlinux 0xbb93e552 __skb_pad +EXPORT_SYMBOL vmlinux 0xbb9de20c agp_bind_memory EXPORT_SYMBOL vmlinux 0xbb9ed3bf mutex_trylock -EXPORT_SYMBOL vmlinux 0xbba97cf9 inet_dev_addr_type -EXPORT_SYMBOL vmlinux 0xbbb752e5 scsi_device_resume -EXPORT_SYMBOL vmlinux 0xbbb798f4 __inet_stream_connect -EXPORT_SYMBOL vmlinux 0xbbd118b4 pagecache_write_begin +EXPORT_SYMBOL vmlinux 0xbba062c3 __sk_queue_drop_skb +EXPORT_SYMBOL vmlinux 0xbbb89d4d __vfs_setxattr +EXPORT_SYMBOL vmlinux 0xbbcaafde skb_flow_dissect_meta +EXPORT_SYMBOL vmlinux 0xbbd97ad4 validate_slab_cache +EXPORT_SYMBOL vmlinux 0xbbe1f0ea mipi_dsi_driver_register_full EXPORT_SYMBOL vmlinux 0xbbe80fdb kmalloc_order -EXPORT_SYMBOL vmlinux 0xbc099542 agp_unbind_memory -EXPORT_SYMBOL vmlinux 0xbc1ed761 blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0xbbeb977b locks_free_lock +EXPORT_SYMBOL vmlinux 0xbbec608d __icmp_send +EXPORT_SYMBOL vmlinux 0xbbed6761 xfrm_register_type +EXPORT_SYMBOL vmlinux 0xbbf08898 __put_user_ns +EXPORT_SYMBOL vmlinux 0xbbfa4528 pci_free_irq_vectors +EXPORT_SYMBOL vmlinux 0xbc063bc5 tcf_exts_change +EXPORT_SYMBOL vmlinux 0xbc09edac __splice_from_pipe EXPORT_SYMBOL vmlinux 0xbc2031de acpi_processor_get_bios_limit -EXPORT_SYMBOL vmlinux 0xbc445ba0 pci_read_config_word -EXPORT_SYMBOL vmlinux 0xbc474be0 blk_mq_tag_to_rq -EXPORT_SYMBOL vmlinux 0xbc570fd7 mntput -EXPORT_SYMBOL vmlinux 0xbc5f87de blk_queue_update_dma_alignment -EXPORT_SYMBOL vmlinux 0xbc6e3305 blk_cleanup_queue -EXPORT_SYMBOL vmlinux 0xbc86b3e1 rdmacg_try_charge -EXPORT_SYMBOL vmlinux 0xbc9bf38e pci_clear_mwi -EXPORT_SYMBOL vmlinux 0xbca1cd38 simple_rename +EXPORT_SYMBOL vmlinux 0xbc3792af pci_get_domain_bus_and_slot +EXPORT_SYMBOL vmlinux 0xbc93ff2f blk_queue_io_min +EXPORT_SYMBOL vmlinux 0xbca7e831 eth_commit_mac_addr_change EXPORT_SYMBOL vmlinux 0xbcab6ee6 sscanf -EXPORT_SYMBOL vmlinux 0xbcb7e2b6 setattr_copy -EXPORT_SYMBOL vmlinux 0xbcd53711 dquot_set_dqinfo -EXPORT_SYMBOL vmlinux 0xbce10b35 pci_fixup_device -EXPORT_SYMBOL vmlinux 0xbce41ef9 dump_skip +EXPORT_SYMBOL vmlinux 0xbcb67ce1 dput +EXPORT_SYMBOL vmlinux 0xbcc357aa fddi_type_trans +EXPORT_SYMBOL vmlinux 0xbcf02c23 setattr_prepare +EXPORT_SYMBOL vmlinux 0xbcfa9a61 pci_bus_add_devices +EXPORT_SYMBOL vmlinux 0xbd286fd8 blk_mq_rq_cpu +EXPORT_SYMBOL vmlinux 0xbd30fabf proc_create_single_data EXPORT_SYMBOL vmlinux 0xbd393ca3 ioread64be_lo_hi EXPORT_SYMBOL vmlinux 0xbd462b55 __kfifo_init -EXPORT_SYMBOL vmlinux 0xbd50e39d filemap_range_has_page -EXPORT_SYMBOL vmlinux 0xbd5b9de2 d_add -EXPORT_SYMBOL vmlinux 0xbd5ed7d5 tty_flip_buffer_push -EXPORT_SYMBOL vmlinux 0xbd615581 configfs_depend_item_unlocked +EXPORT_SYMBOL vmlinux 0xbd558314 scsi_host_put +EXPORT_SYMBOL vmlinux 0xbd5fe5a0 rfkill_alloc EXPORT_SYMBOL vmlinux 0xbd6841d4 crc16 -EXPORT_SYMBOL vmlinux 0xbd6fdbb2 simple_lookup -EXPORT_SYMBOL vmlinux 0xbd77d30d vfs_fsync_range -EXPORT_SYMBOL vmlinux 0xbd7cdae7 sock_efree -EXPORT_SYMBOL vmlinux 0xbd8782cd mr_mfc_find_parent -EXPORT_SYMBOL vmlinux 0xbd8e7a9c inet6_register_protosw -EXPORT_SYMBOL vmlinux 0xbd97ff2e is_nd_btt -EXPORT_SYMBOL vmlinux 0xbdd63de1 nf_log_trace -EXPORT_SYMBOL vmlinux 0xbde716d1 device_match_acpi_dev -EXPORT_SYMBOL vmlinux 0xbde9eb33 mfd_add_devices -EXPORT_SYMBOL vmlinux 0xbdeee22e xfrm_state_update +EXPORT_SYMBOL vmlinux 0xbd6d377e dev_get_by_napi_id +EXPORT_SYMBOL vmlinux 0xbd8a5cac __neigh_for_each_release +EXPORT_SYMBOL vmlinux 0xbdb0d98c mipi_dsi_dcs_set_tear_scanline +EXPORT_SYMBOL vmlinux 0xbdb386c4 single_open_size +EXPORT_SYMBOL vmlinux 0xbdce9fa1 fib_notifier_ops_unregister +EXPORT_SYMBOL vmlinux 0xbdd2a418 mmc_cqe_start_req EXPORT_SYMBOL vmlinux 0xbdfb6dbb __fentry__ +EXPORT_SYMBOL vmlinux 0xbdfc958b padata_alloc EXPORT_SYMBOL vmlinux 0xbe0110e7 acpi_set_gpe EXPORT_SYMBOL vmlinux 0xbe1427af __printk_cpu_unlock -EXPORT_SYMBOL vmlinux 0xbe1794d4 __zerocopy_sg_from_iter -EXPORT_SYMBOL vmlinux 0xbe302d6a reuseport_stop_listen_sock -EXPORT_SYMBOL vmlinux 0xbe334435 d_delete -EXPORT_SYMBOL vmlinux 0xbe3b6b41 udp_read_sock +EXPORT_SYMBOL vmlinux 0xbe29d704 dquot_operations +EXPORT_SYMBOL vmlinux 0xbe31c5d7 insert_inode_locked EXPORT_SYMBOL vmlinux 0xbe49252c acpi_os_write_port +EXPORT_SYMBOL vmlinux 0xbe4c8f51 generic_write_checks EXPORT_SYMBOL vmlinux 0xbe4eb6ed secure_dccpv6_sequence_number EXPORT_SYMBOL vmlinux 0xbe5a24e9 xxh32_copy_state +EXPORT_SYMBOL vmlinux 0xbe5dff0e key_revoke +EXPORT_SYMBOL vmlinux 0xbe60897c tcp_sock_set_cork EXPORT_SYMBOL vmlinux 0xbe6a866f __wait_on_bit -EXPORT_SYMBOL vmlinux 0xbe6c88f7 audit_log_start -EXPORT_SYMBOL vmlinux 0xbe6f2081 netlink_ack -EXPORT_SYMBOL vmlinux 0xbe71e9ab make_kgid +EXPORT_SYMBOL vmlinux 0xbe76b36d flow_indr_dev_register EXPORT_SYMBOL vmlinux 0xbe7e05a8 acpi_tb_install_and_load_table -EXPORT_SYMBOL vmlinux 0xbe851c9c security_sctp_sk_clone -EXPORT_SYMBOL vmlinux 0xbe8af63a security_inet_conn_established -EXPORT_SYMBOL vmlinux 0xbe9cea97 i2c_smbus_read_byte -EXPORT_SYMBOL vmlinux 0xbe9cfdb5 md_write_inc -EXPORT_SYMBOL vmlinux 0xbea0d1f6 inode_newsize_ok -EXPORT_SYMBOL vmlinux 0xbebe7f34 d_lookup -EXPORT_SYMBOL vmlinux 0xbecf7f73 genphy_read_lpa -EXPORT_SYMBOL vmlinux 0xbed634ac scsi_device_set_state -EXPORT_SYMBOL vmlinux 0xbef13c15 set_trace_device -EXPORT_SYMBOL vmlinux 0xbef2ff6b pcibios_bus_to_resource +EXPORT_SYMBOL vmlinux 0xbeecbff8 xfrm4_protocol_deregister EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule EXPORT_SYMBOL vmlinux 0xbefa51a3 gen_pool_add_owner EXPORT_SYMBOL vmlinux 0xbf3193ec acpi_unregister_ioapic +EXPORT_SYMBOL vmlinux 0xbf3abef2 __cleancache_invalidate_fs +EXPORT_SYMBOL vmlinux 0xbf3b27ff tcf_em_tree_validate +EXPORT_SYMBOL vmlinux 0xbf411a1d __tracepoint_read_msr EXPORT_SYMBOL vmlinux 0xbf59c419 posix_acl_init -EXPORT_SYMBOL vmlinux 0xbf627796 key_payload_reserve -EXPORT_SYMBOL vmlinux 0xbf7903a7 kill_block_super +EXPORT_SYMBOL vmlinux 0xbf5cbac7 vga_con +EXPORT_SYMBOL vmlinux 0xbf60697c tcf_qevent_validate_change +EXPORT_SYMBOL vmlinux 0xbf6b82c3 clk_get +EXPORT_SYMBOL vmlinux 0xbf722181 vfs_getattr +EXPORT_SYMBOL vmlinux 0xbf733d0c inet_frag_kill +EXPORT_SYMBOL vmlinux 0xbf7a4d4a amd_iommu_domain_direct_map +EXPORT_SYMBOL vmlinux 0xbf8b93f3 mdiobus_setup_mdiodev_from_board_info EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set -EXPORT_SYMBOL vmlinux 0xbfb2f364 __SCK__tp_func_spi_transfer_stop -EXPORT_SYMBOL vmlinux 0xbfb71f34 twl6040_reg_write -EXPORT_SYMBOL vmlinux 0xbfbde92b block_is_partially_uptodate +EXPORT_SYMBOL vmlinux 0xbfa811f5 phy_driver_register +EXPORT_SYMBOL vmlinux 0xbfaf1210 inet_ioctl EXPORT_SYMBOL vmlinux 0xbfc177bc iowrite32_rep +EXPORT_SYMBOL vmlinux 0xbfc90b30 flow_block_cb_free +EXPORT_SYMBOL vmlinux 0xbfe415b5 jbd2_journal_get_create_access +EXPORT_SYMBOL vmlinux 0xbfece636 pm860x_bulk_read EXPORT_SYMBOL vmlinux 0xbfee3ad5 loop_unregister_transfer -EXPORT_SYMBOL vmlinux 0xc00f11bd iommu_get_dma_cookie +EXPORT_SYMBOL vmlinux 0xbff34ade nf_register_net_hooks +EXPORT_SYMBOL vmlinux 0xc0027af6 neigh_for_each +EXPORT_SYMBOL vmlinux 0xc006f232 dst_discard_out EXPORT_SYMBOL vmlinux 0xc0243ea6 nla_reserve_nohdr -EXPORT_SYMBOL vmlinux 0xc03e2542 dev_mc_del -EXPORT_SYMBOL vmlinux 0xc03f8ecd agp_put_bridge -EXPORT_SYMBOL vmlinux 0xc041fcd6 netpoll_poll_dev -EXPORT_SYMBOL vmlinux 0xc049db0a __seq_open_private -EXPORT_SYMBOL vmlinux 0xc054d84f vme_master_request -EXPORT_SYMBOL vmlinux 0xc0645777 input_unregister_handler -EXPORT_SYMBOL vmlinux 0xc066401f ndo_dflt_fdb_dump -EXPORT_SYMBOL vmlinux 0xc068d008 proc_remove -EXPORT_SYMBOL vmlinux 0xc06900a5 __mod_lruvec_page_state +EXPORT_SYMBOL vmlinux 0xc0336909 ww_mutex_lock +EXPORT_SYMBOL vmlinux 0xc0364007 fault_in_writeable +EXPORT_SYMBOL vmlinux 0xc05410bb unregister_mii_tstamp_controller +EXPORT_SYMBOL vmlinux 0xc059e908 input_mt_destroy_slots +EXPORT_SYMBOL vmlinux 0xc062a078 dm_kcopyd_zero +EXPORT_SYMBOL vmlinux 0xc071d91c udp_seq_start EXPORT_SYMBOL vmlinux 0xc0763484 rfkill_blocked +EXPORT_SYMBOL vmlinux 0xc0764d9f blk_dump_rq_flags EXPORT_SYMBOL vmlinux 0xc07b0863 fb_destroy_modedb -EXPORT_SYMBOL vmlinux 0xc07bd6f1 linkwatch_fire_event -EXPORT_SYMBOL vmlinux 0xc07f4e12 tcp_add_backlog -EXPORT_SYMBOL vmlinux 0xc09523e2 pnp_device_attach -EXPORT_SYMBOL vmlinux 0xc0995ade locks_copy_conflock -EXPORT_SYMBOL vmlinux 0xc09e6e40 would_dump -EXPORT_SYMBOL vmlinux 0xc0ad2ad8 xfrm6_rcv_tnl +EXPORT_SYMBOL vmlinux 0xc07d9ddb misc_register +EXPORT_SYMBOL vmlinux 0xc0ac02f8 netif_schedule_queue EXPORT_SYMBOL vmlinux 0xc0afb5d7 cgroup_bpf_enabled_key EXPORT_SYMBOL vmlinux 0xc0b2664d devlink_dpipe_header_ipv4 +EXPORT_SYMBOL vmlinux 0xc0bb989c i2c_smbus_read_i2c_block_data_or_emulated EXPORT_SYMBOL vmlinux 0xc0bca0f1 ZSTD_nextSrcSizeToDecompress -EXPORT_SYMBOL vmlinux 0xc0c0aea0 configfs_remove_default_groups -EXPORT_SYMBOL vmlinux 0xc0e87289 read_cache_pages -EXPORT_SYMBOL vmlinux 0xc0f3ab94 finish_no_open +EXPORT_SYMBOL vmlinux 0xc0cd0348 netdev_sk_get_lowest_dev +EXPORT_SYMBOL vmlinux 0xc0cda443 rproc_elf_load_segments +EXPORT_SYMBOL vmlinux 0xc0fa0b68 jbd2_fc_wait_bufs EXPORT_SYMBOL vmlinux 0xc0ff12fb nla_strdup EXPORT_SYMBOL vmlinux 0xc0ff21c1 input_get_new_minor -EXPORT_SYMBOL vmlinux 0xc100687a dev_uc_sync -EXPORT_SYMBOL vmlinux 0xc1023168 ethtool_get_phc_vclocks -EXPORT_SYMBOL vmlinux 0xc10537e7 vga_switcheroo_lock_ddc +EXPORT_SYMBOL vmlinux 0xc10860c8 jbd2_journal_init_dev EXPORT_SYMBOL vmlinux 0xc111ae64 intel_gtt_get -EXPORT_SYMBOL vmlinux 0xc12af7c8 nd_region_to_nstype -EXPORT_SYMBOL vmlinux 0xc1315c12 xfrm_state_check_expire EXPORT_SYMBOL vmlinux 0xc1365323 acpi_enable_all_wakeup_gpes -EXPORT_SYMBOL vmlinux 0xc14611a6 iov_iter_discard +EXPORT_SYMBOL vmlinux 0xc136ada2 scsi_device_set_state EXPORT_SYMBOL vmlinux 0xc14dc168 acpi_get_data EXPORT_SYMBOL vmlinux 0xc1514a3b free_irq -EXPORT_SYMBOL vmlinux 0xc15c44a6 mdiobus_is_registered_device -EXPORT_SYMBOL vmlinux 0xc15d4a9e phy_resume -EXPORT_SYMBOL vmlinux 0xc161ab4e mmc_set_data_timeout EXPORT_SYMBOL vmlinux 0xc16410b9 ZSTD_getDictID_fromDDict -EXPORT_SYMBOL vmlinux 0xc16480e5 misc_register -EXPORT_SYMBOL vmlinux 0xc1652759 devm_extcon_unregister_notifier -EXPORT_SYMBOL vmlinux 0xc1682f60 unmap_mapping_range EXPORT_SYMBOL vmlinux 0xc16be39d iter_div_u64_rem -EXPORT_SYMBOL vmlinux 0xc1800f88 netdev_has_upper_dev_all_rcu -EXPORT_SYMBOL vmlinux 0xc18a4e5a jbd2_journal_update_sb_errno -EXPORT_SYMBOL vmlinux 0xc18fa023 mipi_dsi_dcs_set_display_brightness -EXPORT_SYMBOL vmlinux 0xc1b3cf3a fqdir_init -EXPORT_SYMBOL vmlinux 0xc1c7fabc netdev_master_upper_dev_get -EXPORT_SYMBOL vmlinux 0xc1d2a938 sock_pfree +EXPORT_SYMBOL vmlinux 0xc17543e7 ll_rw_block +EXPORT_SYMBOL vmlinux 0xc17db837 migrate_page_move_mapping +EXPORT_SYMBOL vmlinux 0xc1876e1e pneigh_lookup +EXPORT_SYMBOL vmlinux 0xc197589a input_alloc_absinfo +EXPORT_SYMBOL vmlinux 0xc1c217f1 input_flush_device +EXPORT_SYMBOL vmlinux 0xc1c35856 skb_checksum_setup +EXPORT_SYMBOL vmlinux 0xc1c5006b xfrm6_protocol_deregister EXPORT_SYMBOL vmlinux 0xc1d5d504 scsi_cmd_allowed EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget -EXPORT_SYMBOL vmlinux 0xc1d8e4ef cdev_device_del -EXPORT_SYMBOL vmlinux 0xc1e0687b fs_param_is_enum -EXPORT_SYMBOL vmlinux 0xc20a13c1 iommu_put_dma_cookie -EXPORT_SYMBOL vmlinux 0xc2332d4b locks_copy_lock -EXPORT_SYMBOL vmlinux 0xc2365577 mount_subtree -EXPORT_SYMBOL vmlinux 0xc23e3a36 dec_zone_page_state +EXPORT_SYMBOL vmlinux 0xc1ffea0b d_add +EXPORT_SYMBOL vmlinux 0xc21e319d netdev_txq_to_tc +EXPORT_SYMBOL vmlinux 0xc238ad4a mipi_dsi_driver_unregister EXPORT_SYMBOL vmlinux 0xc2424641 agp3_generic_cleanup -EXPORT_SYMBOL vmlinux 0xc251d9c9 tc_setup_cb_destroy -EXPORT_SYMBOL vmlinux 0xc25af3c6 param_ops_byte -EXPORT_SYMBOL vmlinux 0xc25f7e32 ata_std_end_eh +EXPORT_SYMBOL vmlinux 0xc25174a4 mdio_device_remove EXPORT_SYMBOL vmlinux 0xc267960e utf8_validate -EXPORT_SYMBOL vmlinux 0xc27102fb clk_bulk_get_all +EXPORT_SYMBOL vmlinux 0xc269bf0a xattr_supported_namespace +EXPORT_SYMBOL vmlinux 0xc26fbc8e generic_permission EXPORT_SYMBOL vmlinux 0xc278c965 cpu_all_bits +EXPORT_SYMBOL vmlinux 0xc278ed12 mmc_retune_pause +EXPORT_SYMBOL vmlinux 0xc27aaec7 jbd2_fc_end_commit +EXPORT_SYMBOL vmlinux 0xc27ed752 __sk_mem_schedule +EXPORT_SYMBOL vmlinux 0xc289c0ad simple_transaction_get +EXPORT_SYMBOL vmlinux 0xc2948832 agp_generic_remove_memory EXPORT_SYMBOL vmlinux 0xc29bf967 strspn EXPORT_SYMBOL vmlinux 0xc2a17ebe seqno_fence_ops -EXPORT_SYMBOL vmlinux 0xc2cb3929 mmc_hw_reset -EXPORT_SYMBOL vmlinux 0xc2dd7352 mfd_remove_devices -EXPORT_SYMBOL vmlinux 0xc2e00e16 phy_aneg_done +EXPORT_SYMBOL vmlinux 0xc2b9828e __SCK__tp_func_dma_fence_enable_signal +EXPORT_SYMBOL vmlinux 0xc2c37be2 tcf_unregister_action +EXPORT_SYMBOL vmlinux 0xc2cd8c51 skb_copy_and_csum_dev +EXPORT_SYMBOL vmlinux 0xc2d24e7e flow_rule_match_ports +EXPORT_SYMBOL vmlinux 0xc2d4e6c9 __dynamic_ibdev_dbg +EXPORT_SYMBOL vmlinux 0xc2e0d891 try_to_free_buffers EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices -EXPORT_SYMBOL vmlinux 0xc2e823f2 pci_set_power_state -EXPORT_SYMBOL vmlinux 0xc2f30fbf generic_pipe_buf_get +EXPORT_SYMBOL vmlinux 0xc2fb68be __ip4_datagram_connect EXPORT_SYMBOL vmlinux 0xc3055d20 usleep_range_state EXPORT_SYMBOL vmlinux 0xc310b981 strnstr EXPORT_SYMBOL vmlinux 0xc31db0ce is_vmalloc_addr -EXPORT_SYMBOL vmlinux 0xc321a022 has_capability -EXPORT_SYMBOL vmlinux 0xc32285ba tty_name -EXPORT_SYMBOL vmlinux 0xc3295fe5 simple_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0xc3275060 mount_bdev EXPORT_SYMBOL vmlinux 0xc32c71af register_inetaddr_validator_notifier -EXPORT_SYMBOL vmlinux 0xc33ffd68 dev_set_allmulti -EXPORT_SYMBOL vmlinux 0xc344d242 dev_loopback_xmit +EXPORT_SYMBOL vmlinux 0xc32e46f6 i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0xc3439ed1 km_state_expired +EXPORT_SYMBOL vmlinux 0xc363bcd9 vfs_llseek EXPORT_SYMBOL vmlinux 0xc36a3bd4 __acpi_handle_debug -EXPORT_SYMBOL vmlinux 0xc36c5ea9 serio_unregister_port -EXPORT_SYMBOL vmlinux 0xc36ccdbd dev_change_carrier -EXPORT_SYMBOL vmlinux 0xc3715864 pm860x_page_reg_write -EXPORT_SYMBOL vmlinux 0xc371d19b netdev_set_sb_channel -EXPORT_SYMBOL vmlinux 0xc373103e PageMovable +EXPORT_SYMBOL vmlinux 0xc36ea974 vme_slave_request EXPORT_SYMBOL vmlinux 0xc3762aec mempool_alloc -EXPORT_SYMBOL vmlinux 0xc37ef7ad scsi_host_lookup EXPORT_SYMBOL vmlinux 0xc37f9c6e cpufreq_update_policy -EXPORT_SYMBOL vmlinux 0xc3805cd1 fbcon_update_vcs EXPORT_SYMBOL vmlinux 0xc38c83b8 mod_timer +EXPORT_SYMBOL vmlinux 0xc3978f0f dma_get_sgtable_attrs +EXPORT_SYMBOL vmlinux 0xc39797ce netif_carrier_on +EXPORT_SYMBOL vmlinux 0xc39d4870 dentry_path_raw +EXPORT_SYMBOL vmlinux 0xc39fde21 i8042_install_filter EXPORT_SYMBOL vmlinux 0xc3aaf0a9 __put_user_1 -EXPORT_SYMBOL vmlinux 0xc3b056d8 simple_dir_operations -EXPORT_SYMBOL vmlinux 0xc3b10060 scsi_report_opcode +EXPORT_SYMBOL vmlinux 0xc3adf150 pcie_capability_read_dword +EXPORT_SYMBOL vmlinux 0xc3ba2087 scsi_add_host_with_dma EXPORT_SYMBOL vmlinux 0xc3bc72ad trace_print_array_seq -EXPORT_SYMBOL vmlinux 0xc3cf37bb end_buffer_write_sync -EXPORT_SYMBOL vmlinux 0xc3d6c4e9 fs_param_is_bool -EXPORT_SYMBOL vmlinux 0xc3dc1f10 md_set_array_sectors -EXPORT_SYMBOL vmlinux 0xc3de821f copy_page_from_iter_atomic -EXPORT_SYMBOL vmlinux 0xc3ea3a65 devm_devfreq_unregister_opp_notifier -EXPORT_SYMBOL vmlinux 0xc3ed889e tty_write_room -EXPORT_SYMBOL vmlinux 0xc3f63bb5 tcp_mss_to_mtu +EXPORT_SYMBOL vmlinux 0xc3d6cf95 scsi_test_unit_ready +EXPORT_SYMBOL vmlinux 0xc3f346ae uart_match_port +EXPORT_SYMBOL vmlinux 0xc3fe5c1c unregister_nexthop_notifier EXPORT_SYMBOL vmlinux 0xc3ff38c2 down_read_trylock -EXPORT_SYMBOL vmlinux 0xc40d00b4 vmf_insert_mixed -EXPORT_SYMBOL vmlinux 0xc41106a0 wait_on_page_private_2 EXPORT_SYMBOL vmlinux 0xc41bc980 iwe_stream_add_value EXPORT_SYMBOL vmlinux 0xc4212ab9 qdisc_class_hash_insert -EXPORT_SYMBOL vmlinux 0xc4268992 page_mapped EXPORT_SYMBOL vmlinux 0xc42dcb99 acpi_evaluate_ost -EXPORT_SYMBOL vmlinux 0xc43f4831 rproc_resource_cleanup -EXPORT_SYMBOL vmlinux 0xc45e4f93 tty_register_ldisc +EXPORT_SYMBOL vmlinux 0xc42f54af request_key_with_auxdata +EXPORT_SYMBOL vmlinux 0xc431b82b jbd2_journal_errno +EXPORT_SYMBOL vmlinux 0xc438be52 ptp_cancel_worker_sync +EXPORT_SYMBOL vmlinux 0xc46aa789 icmp6_send +EXPORT_SYMBOL vmlinux 0xc46de7c1 sock_register EXPORT_SYMBOL vmlinux 0xc4777aa9 __ctzsi2 +EXPORT_SYMBOL vmlinux 0xc489f490 xsk_clear_tx_need_wakeup +EXPORT_SYMBOL vmlinux 0xc49243ef dev_pick_tx_zero +EXPORT_SYMBOL vmlinux 0xc49a8066 clk_add_alias +EXPORT_SYMBOL vmlinux 0xc4ab1b84 pci_find_next_bus EXPORT_SYMBOL vmlinux 0xc4ae915e arch_touch_nmi_watchdog -EXPORT_SYMBOL vmlinux 0xc4c4b024 pci_bus_type -EXPORT_SYMBOL vmlinux 0xc4df676b agp_generic_free_gatt_table -EXPORT_SYMBOL vmlinux 0xc4e0f7e0 page_pool_release_page -EXPORT_SYMBOL vmlinux 0xc4eb1964 sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0xc4ba9dd1 input_release_device +EXPORT_SYMBOL vmlinux 0xc4cf865d zap_page_range +EXPORT_SYMBOL vmlinux 0xc4f46f46 xfrm_state_delete_tunnel +EXPORT_SYMBOL vmlinux 0xc50b0088 iov_iter_alignment +EXPORT_SYMBOL vmlinux 0xc50d2562 mount_subtree +EXPORT_SYMBOL vmlinux 0xc525e05b sock_init_data +EXPORT_SYMBOL vmlinux 0xc526f4f3 kernel_param_unlock EXPORT_SYMBOL vmlinux 0xc528a49a queued_write_lock_slowpath -EXPORT_SYMBOL vmlinux 0xc5356802 pci_bus_assign_resources -EXPORT_SYMBOL vmlinux 0xc53c46f2 blk_mq_start_hw_queue -EXPORT_SYMBOL vmlinux 0xc5479e88 console_start -EXPORT_SYMBOL vmlinux 0xc5580a17 fb_set_suspend +EXPORT_SYMBOL vmlinux 0xc536f345 __netlink_ns_capable +EXPORT_SYMBOL vmlinux 0xc549fee5 __SCK__tp_func_spi_transfer_start +EXPORT_SYMBOL vmlinux 0xc54fd04d input_set_max_poll_interval +EXPORT_SYMBOL vmlinux 0xc553af46 ata_port_printk +EXPORT_SYMBOL vmlinux 0xc556a82e dev_mc_del EXPORT_SYMBOL vmlinux 0xc558530d profile_pc -EXPORT_SYMBOL vmlinux 0xc5590c0a tty_unregister_device -EXPORT_SYMBOL vmlinux 0xc55b428c finish_open -EXPORT_SYMBOL vmlinux 0xc56481a7 sock_no_getname -EXPORT_SYMBOL vmlinux 0xc574f2d4 ip6_dst_check +EXPORT_SYMBOL vmlinux 0xc57102dc mmc_set_blocklen EXPORT_SYMBOL vmlinux 0xc57c48a3 idr_get_next -EXPORT_SYMBOL vmlinux 0xc5821786 i2c_register_driver EXPORT_SYMBOL vmlinux 0xc58d5a90 kstrtoll_from_user EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete -EXPORT_SYMBOL vmlinux 0xc5b1c148 scsi_get_device_flags_keyed +EXPORT_SYMBOL vmlinux 0xc5a3ab3c set_user_nice +EXPORT_SYMBOL vmlinux 0xc5a4cac1 fscrypt_put_encryption_info +EXPORT_SYMBOL vmlinux 0xc5a96adf flush_signals +EXPORT_SYMBOL vmlinux 0xc5b5086a __d_lookup_done EXPORT_SYMBOL vmlinux 0xc5b6f236 queue_work_on -EXPORT_SYMBOL vmlinux 0xc5bcceee param_get_bool -EXPORT_SYMBOL vmlinux 0xc5c4c719 ip_sock_set_tos -EXPORT_SYMBOL vmlinux 0xc5cdd93c param_set_byte +EXPORT_SYMBOL vmlinux 0xc5bce0d1 md_bitmap_start_sync EXPORT_SYMBOL vmlinux 0xc5d9c46c agp_try_unsupported_boot -EXPORT_SYMBOL vmlinux 0xc5e55c98 set_pages_array_uc +EXPORT_SYMBOL vmlinux 0xc5e4d18c bio_chain EXPORT_SYMBOL vmlinux 0xc5e74216 release_resource +EXPORT_SYMBOL vmlinux 0xc5e9e797 jbd2_journal_abort +EXPORT_SYMBOL vmlinux 0xc5eced81 blkdev_put +EXPORT_SYMBOL vmlinux 0xc5f05ec9 __SetPageMovable EXPORT_SYMBOL vmlinux 0xc5f7e801 sg_last +EXPORT_SYMBOL vmlinux 0xc6056187 add_to_page_cache_locked +EXPORT_SYMBOL vmlinux 0xc606b659 flow_block_cb_decref +EXPORT_SYMBOL vmlinux 0xc60ac7e3 __SCK__tp_func_read_msr EXPORT_SYMBOL vmlinux 0xc60d0620 __num_online_cpus -EXPORT_SYMBOL vmlinux 0xc61685a8 pci_pme_active EXPORT_SYMBOL vmlinux 0xc61ca65e iowrite64be_hi_lo -EXPORT_SYMBOL vmlinux 0xc61f0c7b seq_putc EXPORT_SYMBOL vmlinux 0xc622556f prepare_to_wait_exclusive +EXPORT_SYMBOL vmlinux 0xc62a2fff tcp_connect +EXPORT_SYMBOL vmlinux 0xc62e9bd4 __pagevec_release EXPORT_SYMBOL vmlinux 0xc631580a console_unlock EXPORT_SYMBOL vmlinux 0xc633d82d phy_unregister_fixup -EXPORT_SYMBOL vmlinux 0xc63c03f9 generic_pipe_buf_release -EXPORT_SYMBOL vmlinux 0xc649b714 tcp_enter_quickack_mode +EXPORT_SYMBOL vmlinux 0xc6434c98 dcbnl_cee_notify +EXPORT_SYMBOL vmlinux 0xc64cc5d2 dev_pm_opp_register_notifier +EXPORT_SYMBOL vmlinux 0xc65d4924 fb_show_logo EXPORT_SYMBOL vmlinux 0xc65e4e97 secure_dccp_sequence_number EXPORT_SYMBOL vmlinux 0xc666a132 crc_t10dif EXPORT_SYMBOL vmlinux 0xc66a8304 cpu_rmap_add -EXPORT_SYMBOL vmlinux 0xc67f9175 flow_rule_match_enc_ipv6_addrs -EXPORT_SYMBOL vmlinux 0xc68289fd configfs_unregister_subsystem -EXPORT_SYMBOL vmlinux 0xc6863eba bioset_exit -EXPORT_SYMBOL vmlinux 0xc68b3761 pci_save_state -EXPORT_SYMBOL vmlinux 0xc690f60f xfrm_policy_byid +EXPORT_SYMBOL vmlinux 0xc678efe0 bio_add_page EXPORT_SYMBOL vmlinux 0xc6910aa0 do_trace_rdpmc -EXPORT_SYMBOL vmlinux 0xc6a83232 module_layout -EXPORT_SYMBOL vmlinux 0xc6b154a0 genphy_read_status_fixed -EXPORT_SYMBOL vmlinux 0xc6b44d40 inet_select_addr -EXPORT_SYMBOL vmlinux 0xc6be79c5 rproc_da_to_va -EXPORT_SYMBOL vmlinux 0xc6c459e7 nf_ip_checksum -EXPORT_SYMBOL vmlinux 0xc6c8cb42 netdev_lower_state_changed +EXPORT_SYMBOL vmlinux 0xc6ca3273 __sk_mem_raise_allocated EXPORT_SYMBOL vmlinux 0xc6cb465a __kfifo_max_r EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable EXPORT_SYMBOL vmlinux 0xc6d09aa9 release_firmware -EXPORT_SYMBOL vmlinux 0xc6d90e50 phy_start_cable_test -EXPORT_SYMBOL vmlinux 0xc6deb068 __tracepoint_read_msr -EXPORT_SYMBOL vmlinux 0xc6ee139a nf_log_unset -EXPORT_SYMBOL vmlinux 0xc6ee2598 input_allocate_device +EXPORT_SYMBOL vmlinux 0xc6d13015 dev_mc_sync +EXPORT_SYMBOL vmlinux 0xc6d1da82 __sk_backlog_rcv EXPORT_SYMBOL vmlinux 0xc6f3b3fc refcount_dec_if_one EXPORT_SYMBOL vmlinux 0xc6f46339 init_timer_key +EXPORT_SYMBOL vmlinux 0xc6f4c8b6 udp_gro_receive EXPORT_SYMBOL vmlinux 0xc708f1fe ec_write EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port -EXPORT_SYMBOL vmlinux 0xc74d1227 sock_set_reuseport -EXPORT_SYMBOL vmlinux 0xc74d13a8 blkdev_get_by_path -EXPORT_SYMBOL vmlinux 0xc7558191 prepare_to_swait_exclusive -EXPORT_SYMBOL vmlinux 0xc765011d __traceiter_spi_transfer_stop -EXPORT_SYMBOL vmlinux 0xc76b8716 lookup_one_len -EXPORT_SYMBOL vmlinux 0xc76d70db jbd2_journal_start_reserved -EXPORT_SYMBOL vmlinux 0xc78195a8 jbd2_journal_ack_err +EXPORT_SYMBOL vmlinux 0xc7235490 jbd2_journal_set_features +EXPORT_SYMBOL vmlinux 0xc745c828 param_ops_invbool +EXPORT_SYMBOL vmlinux 0xc762059b alloc_fcdev EXPORT_SYMBOL vmlinux 0xc781bd9f rfkill_resume_polling EXPORT_SYMBOL vmlinux 0xc7856a3d inet6addr_notifier_call_chain -EXPORT_SYMBOL vmlinux 0xc796ecb5 ipv6_chk_custom_prefix +EXPORT_SYMBOL vmlinux 0xc788f683 tcp_md5_hash_skb_data EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock -EXPORT_SYMBOL vmlinux 0xc7b9b0ac __traceiter_module_get -EXPORT_SYMBOL vmlinux 0xc7ba1de3 flow_rule_match_cvlan +EXPORT_SYMBOL vmlinux 0xc7b4f0e9 skb_recv_datagram EXPORT_SYMBOL vmlinux 0xc7c1107a LZ4_decompress_safe -EXPORT_SYMBOL vmlinux 0xc7cce75f zpool_register_driver -EXPORT_SYMBOL vmlinux 0xc7cfd7fb key_task_permission -EXPORT_SYMBOL vmlinux 0xc7d03164 input_mt_report_slot_state +EXPORT_SYMBOL vmlinux 0xc7c535f5 inode_needs_sync +EXPORT_SYMBOL vmlinux 0xc7cab729 xfrm_parse_spi +EXPORT_SYMBOL vmlinux 0xc7cc9500 capable_wrt_inode_uidgid EXPORT_SYMBOL vmlinux 0xc7d094b5 dm_read_arg_group -EXPORT_SYMBOL vmlinux 0xc7d6a53f consume_skb -EXPORT_SYMBOL vmlinux 0xc7d743e9 phy_read_mmd -EXPORT_SYMBOL vmlinux 0xc7d7ce39 kfree_skb_list -EXPORT_SYMBOL vmlinux 0xc7e51097 fifo_create_dflt -EXPORT_SYMBOL vmlinux 0xc7ed6491 jbd2_fc_end_commit_fallback -EXPORT_SYMBOL vmlinux 0xc7f89645 inet_frag_reasm_finish -EXPORT_SYMBOL vmlinux 0xc7fa5d64 param_set_short -EXPORT_SYMBOL vmlinux 0xc7fe57fc trace_raw_output_prep -EXPORT_SYMBOL vmlinux 0xc800dc3c devfreq_add_device +EXPORT_SYMBOL vmlinux 0xc7d46b25 blk_rq_count_integrity_sg +EXPORT_SYMBOL vmlinux 0xc7f852b9 fiemap_prep +EXPORT_SYMBOL vmlinux 0xc80376c3 uart_write_wakeup EXPORT_SYMBOL vmlinux 0xc80ab559 swake_up_one -EXPORT_SYMBOL vmlinux 0xc82b3f0a starget_for_each_device +EXPORT_SYMBOL vmlinux 0xc823ae9d block_read_full_page +EXPORT_SYMBOL vmlinux 0xc8299715 __phy_read_mmd +EXPORT_SYMBOL vmlinux 0xc840513c xattr_full_name EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu -EXPORT_SYMBOL vmlinux 0xc85e6442 mmc_gpiod_request_ro -EXPORT_SYMBOL vmlinux 0xc86122fc create_empty_buffers -EXPORT_SYMBOL vmlinux 0xc86a2c17 fqdir_exit -EXPORT_SYMBOL vmlinux 0xc86b65ed add_random_ready_callback -EXPORT_SYMBOL vmlinux 0xc86b77cf param_set_bool -EXPORT_SYMBOL vmlinux 0xc86fbe9a sock_kmalloc +EXPORT_SYMBOL vmlinux 0xc85e46f0 phy_init_hw +EXPORT_SYMBOL vmlinux 0xc8621f5c pci_disable_device +EXPORT_SYMBOL vmlinux 0xc86a3f25 jbd2_journal_blocks_per_page +EXPORT_SYMBOL vmlinux 0xc86d672c kill_pgrp EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes EXPORT_SYMBOL vmlinux 0xc8827b75 sysctl_vals EXPORT_SYMBOL vmlinux 0xc890c008 zlib_deflateEnd -EXPORT_SYMBOL vmlinux 0xc8994c59 qdisc_watchdog_init_clockid EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread -EXPORT_SYMBOL vmlinux 0xc8cf98d9 seq_open_private -EXPORT_SYMBOL vmlinux 0xc8d8597d input_get_keycode +EXPORT_SYMBOL vmlinux 0xc8c85269 pnp_possible_config EXPORT_SYMBOL vmlinux 0xc8dcc62a krealloc -EXPORT_SYMBOL vmlinux 0xc910acf3 __phy_resume -EXPORT_SYMBOL vmlinux 0xc9142b03 __tracepoint_rdpmc +EXPORT_SYMBOL vmlinux 0xc901ac8d i2c_smbus_write_byte +EXPORT_SYMBOL vmlinux 0xc913b491 neigh_changeaddr EXPORT_SYMBOL vmlinux 0xc9216a82 recalibrate_cpu_khz -EXPORT_SYMBOL vmlinux 0xc924ee6c vfs_rename +EXPORT_SYMBOL vmlinux 0xc92ade81 security_lock_kernel_down EXPORT_SYMBOL vmlinux 0xc93e8461 acpi_get_event_resources -EXPORT_SYMBOL vmlinux 0xc94248df uart_remove_one_port -EXPORT_SYMBOL vmlinux 0xc960d0a8 param_ops_charp +EXPORT_SYMBOL vmlinux 0xc961346b d_rehash EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters -EXPORT_SYMBOL vmlinux 0xc96503c3 single_release -EXPORT_SYMBOL vmlinux 0xc967c254 framebuffer_release EXPORT_SYMBOL vmlinux 0xc972449f mempool_alloc_slab -EXPORT_SYMBOL vmlinux 0xc973a70f tc_setup_cb_replace +EXPORT_SYMBOL vmlinux 0xc9757b3f dcache_dir_close +EXPORT_SYMBOL vmlinux 0xc980a8ff devfreq_recommended_opp EXPORT_SYMBOL vmlinux 0xc9822234 clk_register_clkdev EXPORT_SYMBOL vmlinux 0xc9831ad7 flow_keys_dissector -EXPORT_SYMBOL vmlinux 0xc9867991 udp_seq_ops -EXPORT_SYMBOL vmlinux 0xc988a82b inode_io_list_del +EXPORT_SYMBOL vmlinux 0xc9976526 km_new_mapping +EXPORT_SYMBOL vmlinux 0xc99ccdf6 filemap_fdatawait_keep_errors EXPORT_SYMBOL vmlinux 0xc99e2a55 twl_rev -EXPORT_SYMBOL vmlinux 0xc9adb29e tty_port_block_til_ready -EXPORT_SYMBOL vmlinux 0xc9adfd85 tcf_qevent_destroy -EXPORT_SYMBOL vmlinux 0xc9b0efc3 __generic_file_fsync +EXPORT_SYMBOL vmlinux 0xc9b168d2 blk_mq_alloc_tag_set EXPORT_SYMBOL vmlinux 0xc9b33111 cpumask_any_distribute -EXPORT_SYMBOL vmlinux 0xc9d37ad6 truncate_pagecache +EXPORT_SYMBOL vmlinux 0xc9b599c6 km_policy_notify +EXPORT_SYMBOL vmlinux 0xc9b822eb pci_unregister_driver EXPORT_SYMBOL vmlinux 0xc9df055a xfrm_policy_walk_init EXPORT_SYMBOL vmlinux 0xc9f34c1d acpi_acquire_global_lock +EXPORT_SYMBOL vmlinux 0xc9f4af64 devm_devfreq_remove_device +EXPORT_SYMBOL vmlinux 0xc9fee1d6 serio_interrupt EXPORT_SYMBOL vmlinux 0xca15413f ZSTD_resetDStream -EXPORT_SYMBOL vmlinux 0xca1bba13 ethtool_rx_flow_rule_destroy EXPORT_SYMBOL vmlinux 0xca21ebd3 bitmap_free -EXPORT_SYMBOL vmlinux 0xca2c808d netdev_update_features -EXPORT_SYMBOL vmlinux 0xca2d7626 blkdev_put +EXPORT_SYMBOL vmlinux 0xca26814f agp_unbind_memory +EXPORT_SYMBOL vmlinux 0xca311026 rtnl_notify +EXPORT_SYMBOL vmlinux 0xca319cf7 inet_frag_queue_insert EXPORT_SYMBOL vmlinux 0xca431c05 wake_bit_function -EXPORT_SYMBOL vmlinux 0xca57f414 __sock_queue_rcv_skb -EXPORT_SYMBOL vmlinux 0xca5cf836 mdiobus_read -EXPORT_SYMBOL vmlinux 0xca5d76de __SCK__tp_func_mmap_lock_acquire_returned -EXPORT_SYMBOL vmlinux 0xca60e3fb __cleancache_invalidate_inode -EXPORT_SYMBOL vmlinux 0xca62e926 xsk_tx_peek_release_desc_batch -EXPORT_SYMBOL vmlinux 0xca86b7b6 scsi_remove_device -EXPORT_SYMBOL vmlinux 0xca9172d3 ilookup5_nowait +EXPORT_SYMBOL vmlinux 0xca693a3a acpi_device_hid +EXPORT_SYMBOL vmlinux 0xca6c0dab vfs_parse_fs_param +EXPORT_SYMBOL vmlinux 0xca7391e5 tty_port_close_end +EXPORT_SYMBOL vmlinux 0xca76581a neigh_resolve_output +EXPORT_SYMBOL vmlinux 0xca772fa4 rproc_mem_entry_init +EXPORT_SYMBOL vmlinux 0xca7d1d5e genphy_write_mmd_unsupported EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next -EXPORT_SYMBOL vmlinux 0xca953295 elv_rb_del +EXPORT_SYMBOL vmlinux 0xca9a2f9f security_sctp_assoc_request EXPORT_SYMBOL vmlinux 0xca9beaa4 __xa_store -EXPORT_SYMBOL vmlinux 0xcaa227a5 uart_suspend_port -EXPORT_SYMBOL vmlinux 0xcabbf5bd unlock_buffer +EXPORT_SYMBOL vmlinux 0xcaa03067 bio_split +EXPORT_SYMBOL vmlinux 0xcaa4c001 buffer_check_dirty_writeback +EXPORT_SYMBOL vmlinux 0xcaab06f3 tty_unregister_device EXPORT_SYMBOL vmlinux 0xcad1aca8 acpi_exception -EXPORT_SYMBOL vmlinux 0xcadff7ab devm_rproc_add +EXPORT_SYMBOL vmlinux 0xcad2d93c from_kuid +EXPORT_SYMBOL vmlinux 0xcae386cd iov_iter_gap_alignment +EXPORT_SYMBOL vmlinux 0xcae52f32 inet_csk_reqsk_queue_drop_and_put +EXPORT_SYMBOL vmlinux 0xcae8d318 ipmr_rule_default EXPORT_SYMBOL vmlinux 0xcaf2c603 scsi_sd_pm_domain EXPORT_SYMBOL vmlinux 0xcb0288ea ledtrig_cpu -EXPORT_SYMBOL vmlinux 0xcb04578d tcp_read_sock -EXPORT_SYMBOL vmlinux 0xcb0f091e udp_set_csum -EXPORT_SYMBOL vmlinux 0xcb115957 neigh_changeaddr -EXPORT_SYMBOL vmlinux 0xcb2a907c unix_detach_fds -EXPORT_SYMBOL vmlinux 0xcb302295 __dev_direct_xmit -EXPORT_SYMBOL vmlinux 0xcb33b4ea file_write_and_wait_range +EXPORT_SYMBOL vmlinux 0xcb2beac2 tcf_chain_get_by_act +EXPORT_SYMBOL vmlinux 0xcb2d2953 unpin_user_page_range_dirty_lock EXPORT_SYMBOL vmlinux 0xcb3ae215 call_blocking_lsm_notifier -EXPORT_SYMBOL vmlinux 0xcb3c8b1b __cleancache_invalidate_fs -EXPORT_SYMBOL vmlinux 0xcb5e6181 inet_rcv_saddr_equal -EXPORT_SYMBOL vmlinux 0xcb72a0ef udp_disconnect +EXPORT_SYMBOL vmlinux 0xcb628acb qdisc_put +EXPORT_SYMBOL vmlinux 0xcb68fef7 get_agp_version EXPORT_SYMBOL vmlinux 0xcb733bf2 acpi_bus_set_power -EXPORT_SYMBOL vmlinux 0xcb8267fe lookup_positive_unlocked -EXPORT_SYMBOL vmlinux 0xcb831f4b param_get_short -EXPORT_SYMBOL vmlinux 0xcb94f06d kern_unmount -EXPORT_SYMBOL vmlinux 0xcbacf3aa inet_sk_rx_dst_set -EXPORT_SYMBOL vmlinux 0xcbc5afca ip6_frag_init +EXPORT_SYMBOL vmlinux 0xcb73f400 generic_splice_sendpage +EXPORT_SYMBOL vmlinux 0xcb998d25 gnet_stats_copy_basic_hw +EXPORT_SYMBOL vmlinux 0xcb9d664d param_set_long +EXPORT_SYMBOL vmlinux 0xcb9de556 tcf_exts_validate +EXPORT_SYMBOL vmlinux 0xcb9fb710 phy_attached_info_irq +EXPORT_SYMBOL vmlinux 0xcba79a88 page_mapped +EXPORT_SYMBOL vmlinux 0xcbb4b194 device_add_disk EXPORT_SYMBOL vmlinux 0xcbc88a23 ZSTD_isFrame -EXPORT_SYMBOL vmlinux 0xcbd0f0cd flow_indr_dev_setup_offload +EXPORT_SYMBOL vmlinux 0xcbcc4aa1 netdev_lower_state_changed EXPORT_SYMBOL vmlinux 0xcbd4898c fortify_panic -EXPORT_SYMBOL vmlinux 0xcbd9a395 xfrm_state_delete_tunnel EXPORT_SYMBOL vmlinux 0xcbe53c46 convert_art_to_tsc -EXPORT_SYMBOL vmlinux 0xcbf65c4e build_skb -EXPORT_SYMBOL vmlinux 0xcbf6690c rtnl_notify -EXPORT_SYMBOL vmlinux 0xcbf6ef47 ps2_sliced_command -EXPORT_SYMBOL vmlinux 0xcbf8c5b8 pci_bus_read_config_dword EXPORT_SYMBOL vmlinux 0xcbfb33e4 init_opal_dev +EXPORT_SYMBOL vmlinux 0xcc0411c6 ww_mutex_unlock +EXPORT_SYMBOL vmlinux 0xcc07857b md_error +EXPORT_SYMBOL vmlinux 0xcc09f620 brioctl_set +EXPORT_SYMBOL vmlinux 0xcc0e3b32 inet_csk_prepare_forced_close EXPORT_SYMBOL vmlinux 0xcc1b882a idr_get_next_ul +EXPORT_SYMBOL vmlinux 0xcc226e54 skb_coalesce_rx_frag EXPORT_SYMBOL vmlinux 0xcc23002a hdmi_infoframe_pack_only EXPORT_SYMBOL vmlinux 0xcc248d26 serial8250_suspend_port -EXPORT_SYMBOL vmlinux 0xcc2c3d4d tso_build_hdr +EXPORT_SYMBOL vmlinux 0xcc2a0749 pci_find_resource EXPORT_SYMBOL vmlinux 0xcc328a5c reservation_ww_class -EXPORT_SYMBOL vmlinux 0xcc40c9d3 put_devmap_managed_page -EXPORT_SYMBOL vmlinux 0xcc40e392 i8042_remove_filter +EXPORT_SYMBOL vmlinux 0xcc434609 vfs_fileattr_set EXPORT_SYMBOL vmlinux 0xcc445ceb __sg_page_iter_dma_next -EXPORT_SYMBOL vmlinux 0xcc473faf netif_rx +EXPORT_SYMBOL vmlinux 0xcc4c6025 agp_put_bridge EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible -EXPORT_SYMBOL vmlinux 0xcc5667f1 dquot_operations +EXPORT_SYMBOL vmlinux 0xcc5bd188 scsi_print_sense_hdr EXPORT_SYMBOL vmlinux 0xcc5c2df4 trace_print_symbols_seq EXPORT_SYMBOL vmlinux 0xcc5d22d9 can_do_mlock -EXPORT_SYMBOL vmlinux 0xcc729038 bio_integrity_clone -EXPORT_SYMBOL vmlinux 0xcc7a7d1d generic_file_direct_write -EXPORT_SYMBOL vmlinux 0xcc82b963 __SetPageMovable -EXPORT_SYMBOL vmlinux 0xcc8bb045 scsi_remove_host +EXPORT_SYMBOL vmlinux 0xcc6d2868 xfrm_find_acq +EXPORT_SYMBOL vmlinux 0xcc993df3 pci_ep_cfs_add_epf_group +EXPORT_SYMBOL vmlinux 0xcca205c0 mmc_remove_host EXPORT_SYMBOL vmlinux 0xcca5839d xen_vcpu_id -EXPORT_SYMBOL vmlinux 0xccb95415 jbd2_journal_free_reserved +EXPORT_SYMBOL vmlinux 0xccbc9d33 pci_write_config_byte EXPORT_SYMBOL vmlinux 0xccd4c999 __sg_page_iter_start -EXPORT_SYMBOL vmlinux 0xcce812e4 blk_queue_update_dma_pad +EXPORT_SYMBOL vmlinux 0xccddc834 frontswap_register_ops +EXPORT_SYMBOL vmlinux 0xccdf3597 __task_pid_nr_ns +EXPORT_SYMBOL vmlinux 0xccdfd359 t10_pi_type3_crc EXPORT_SYMBOL vmlinux 0xccef37e4 ZSTD_DStreamOutSize -EXPORT_SYMBOL vmlinux 0xccf5a124 tcp_rcv_established EXPORT_SYMBOL vmlinux 0xccfb9e07 dst_default_metrics +EXPORT_SYMBOL vmlinux 0xccfbf5e3 dcb_getapp EXPORT_SYMBOL vmlinux 0xccfd2ebc scsi_dev_info_list_del_keyed EXPORT_SYMBOL vmlinux 0xcd01b8e6 acpi_attach_data +EXPORT_SYMBOL vmlinux 0xcd0758be __mmc_claim_host EXPORT_SYMBOL vmlinux 0xcd256667 tcp_md5_needed EXPORT_SYMBOL vmlinux 0xcd279169 nla_find -EXPORT_SYMBOL vmlinux 0xcd5a346d napi_complete_done -EXPORT_SYMBOL vmlinux 0xcd614ea0 key_revoke -EXPORT_SYMBOL vmlinux 0xcd62d607 poll_initwait -EXPORT_SYMBOL vmlinux 0xcd7d6467 pci_map_biosrom -EXPORT_SYMBOL vmlinux 0xcd81b082 vme_lm_request +EXPORT_SYMBOL vmlinux 0xcd2a28ce ip_options_compile +EXPORT_SYMBOL vmlinux 0xcd37e6df pci_bus_write_config_dword +EXPORT_SYMBOL vmlinux 0xcd3e6aa0 dev_change_proto_down_reason +EXPORT_SYMBOL vmlinux 0xcd4329b3 dquot_load_quota_inode +EXPORT_SYMBOL vmlinux 0xcd4a530e splice_direct_to_actor +EXPORT_SYMBOL vmlinux 0xcd785e55 mount_single +EXPORT_SYMBOL vmlinux 0xcd7a5fd8 add_to_pipe +EXPORT_SYMBOL vmlinux 0xcd7b2ca3 fb_find_mode EXPORT_SYMBOL vmlinux 0xcd8ce890 acpi_format_exception -EXPORT_SYMBOL vmlinux 0xcd8f6ae5 brioctl_set -EXPORT_SYMBOL vmlinux 0xcd974d00 netpoll_poll_enable -EXPORT_SYMBOL vmlinux 0xcda4c699 wireless_spy_update -EXPORT_SYMBOL vmlinux 0xcdb23b45 fwnode_graph_parse_endpoint +EXPORT_SYMBOL vmlinux 0xcdad9e7c udp_seq_stop +EXPORT_SYMBOL vmlinux 0xcdb1457d con_is_bound +EXPORT_SYMBOL vmlinux 0xcdb1e074 phy_support_asym_pause +EXPORT_SYMBOL vmlinux 0xcdc2665b pcie_capability_write_dword EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel -EXPORT_SYMBOL vmlinux 0xcdc69e1c skb_set_owner_w +EXPORT_SYMBOL vmlinux 0xcdd6b68f skb_eth_pop EXPORT_SYMBOL vmlinux 0xcde77bcc free_opal_dev -EXPORT_SYMBOL vmlinux 0xcdf1963b ppp_input_error -EXPORT_SYMBOL vmlinux 0xce01c5da pci_bus_alloc_resource +EXPORT_SYMBOL vmlinux 0xcdfa1393 __traceiter_mmap_lock_acquire_returned +EXPORT_SYMBOL vmlinux 0xce16c81b tcp_add_backlog +EXPORT_SYMBOL vmlinux 0xce176594 mfd_remove_devices EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake -EXPORT_SYMBOL vmlinux 0xce43f693 __traceiter_spi_transfer_start -EXPORT_SYMBOL vmlinux 0xce4c2618 input_get_poll_interval +EXPORT_SYMBOL vmlinux 0xce4391ee fscrypt_decrypt_block_inplace +EXPORT_SYMBOL vmlinux 0xce4694aa dquot_claim_space_nodirty EXPORT_SYMBOL vmlinux 0xce4cdb8e fb_find_best_mode -EXPORT_SYMBOL vmlinux 0xce4cf09f remove_arg_zero EXPORT_SYMBOL vmlinux 0xce4e47b6 __kfifo_skip_r -EXPORT_SYMBOL vmlinux 0xce4eba99 phy_set_sym_pause +EXPORT_SYMBOL vmlinux 0xce500d28 __alloc_disk_node EXPORT_SYMBOL vmlinux 0xce5ac24f zlib_inflate_workspacesize -EXPORT_SYMBOL vmlinux 0xce5cf824 page_mapping -EXPORT_SYMBOL vmlinux 0xce5e0ef4 dma_resv_add_shared_fence -EXPORT_SYMBOL vmlinux 0xce66432b get_vm_area -EXPORT_SYMBOL vmlinux 0xce719039 __frontswap_store -EXPORT_SYMBOL vmlinux 0xce752f42 posix_acl_update_mode EXPORT_SYMBOL vmlinux 0xce76c257 acpi_get_irq_routing_table +EXPORT_SYMBOL vmlinux 0xce78325b devm_ioport_unmap +EXPORT_SYMBOL vmlinux 0xce7ad4e4 pci_read_config_word EXPORT_SYMBOL vmlinux 0xce807a25 up_write +EXPORT_SYMBOL vmlinux 0xce887ba8 ipv4_dst_check +EXPORT_SYMBOL vmlinux 0xce917777 tty_chars_in_buffer EXPORT_SYMBOL vmlinux 0xcea381dd x86_match_cpu EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul +EXPORT_SYMBOL vmlinux 0xcec0e777 inet_csk_destroy_sock EXPORT_SYMBOL vmlinux 0xced0f4d4 gen_pool_create +EXPORT_SYMBOL vmlinux 0xced67ab3 max8998_read_reg +EXPORT_SYMBOL vmlinux 0xcee1bd8f neigh_sysctl_register +EXPORT_SYMBOL vmlinux 0xcee2e9dc xfrm_state_insert EXPORT_SYMBOL vmlinux 0xceec8abd __mb_cache_entry_free -EXPORT_SYMBOL vmlinux 0xceef1e59 ip6_frag_next -EXPORT_SYMBOL vmlinux 0xceef7f5e blk_rq_map_integrity_sg +EXPORT_SYMBOL vmlinux 0xceec9f60 input_setup_polling EXPORT_SYMBOL vmlinux 0xcefb0c9f __mutex_init EXPORT_SYMBOL vmlinux 0xcefcd99a serial8250_unregister_port -EXPORT_SYMBOL vmlinux 0xcf17da2c page_pool_update_nid -EXPORT_SYMBOL vmlinux 0xcf245a14 xfrm_policy_destroy +EXPORT_SYMBOL vmlinux 0xcf0294a8 sock_set_reuseport +EXPORT_SYMBOL vmlinux 0xcf0765fc pnp_request_card_device +EXPORT_SYMBOL vmlinux 0xcf241651 dma_set_mask EXPORT_SYMBOL vmlinux 0xcf2a6966 up -EXPORT_SYMBOL vmlinux 0xcf34665c blk_queue_bounce_limit -EXPORT_SYMBOL vmlinux 0xcf3b27f1 simple_transaction_set -EXPORT_SYMBOL vmlinux 0xcf42b9bc t10_pi_type3_crc +EXPORT_SYMBOL vmlinux 0xcf2ba7c6 simple_unlink +EXPORT_SYMBOL vmlinux 0xcf3a1de4 devm_pci_remap_iospace +EXPORT_SYMBOL vmlinux 0xcf4828a1 nd_btt_probe +EXPORT_SYMBOL vmlinux 0xcf4e20da skb_append +EXPORT_SYMBOL vmlinux 0xcf4f428b tty_driver_flush_buffer EXPORT_SYMBOL vmlinux 0xcf4fdd4d _atomic_dec_and_lock -EXPORT_SYMBOL vmlinux 0xcf513d2d __tracepoint_dma_fence_emit -EXPORT_SYMBOL vmlinux 0xcf63c595 generic_pipe_buf_try_steal -EXPORT_SYMBOL vmlinux 0xcf7646ef udp_flush_pending_frames -EXPORT_SYMBOL vmlinux 0xcf77fcb3 d_instantiate_anon -EXPORT_SYMBOL vmlinux 0xcf7af416 file_open_root -EXPORT_SYMBOL vmlinux 0xcf94a634 dev_mc_sync_multiple +EXPORT_SYMBOL vmlinux 0xcf6cee54 scsi_change_queue_depth +EXPORT_SYMBOL vmlinux 0xcf71993c do_splice_direct +EXPORT_SYMBOL vmlinux 0xcf7bfd13 follow_down_one +EXPORT_SYMBOL vmlinux 0xcf806338 follow_up +EXPORT_SYMBOL vmlinux 0xcf8fb98c keyring_clear EXPORT_SYMBOL vmlinux 0xcf9b558d touchscreen_set_mt_pos -EXPORT_SYMBOL vmlinux 0xcf9f22ba tcp_disconnect EXPORT_SYMBOL vmlinux 0xcfa7e913 posix_acl_valid -EXPORT_SYMBOL vmlinux 0xcfad64bc gro_find_receive_by_type -EXPORT_SYMBOL vmlinux 0xcfbf1c33 dev_addr_flush -EXPORT_SYMBOL vmlinux 0xcfc587d0 __tracepoint_mmap_lock_start_locking +EXPORT_SYMBOL vmlinux 0xcfaca864 bdi_put EXPORT_SYMBOL vmlinux 0xcfc9deaf atomic_dec_and_mutex_lock +EXPORT_SYMBOL vmlinux 0xcfd24c8c tcf_idr_create EXPORT_SYMBOL vmlinux 0xcfd884a8 __hsiphash_unaligned -EXPORT_SYMBOL vmlinux 0xcff1e3ba netlbl_calipso_ops_register -EXPORT_SYMBOL vmlinux 0xcff55f8d fb_get_buffer_offset -EXPORT_SYMBOL vmlinux 0xd000afcd dm_kobject_release -EXPORT_SYMBOL vmlinux 0xd00f45f5 xfrm_state_flush -EXPORT_SYMBOL vmlinux 0xd01ea647 mark_buffer_write_io_error -EXPORT_SYMBOL vmlinux 0xd02726ef input_reset_device -EXPORT_SYMBOL vmlinux 0xd0297ef5 mipi_dsi_dcs_write -EXPORT_SYMBOL vmlinux 0xd02ba1ef param_ops_bint -EXPORT_SYMBOL vmlinux 0xd0417d4a jbd2_journal_start_commit -EXPORT_SYMBOL vmlinux 0xd04bba08 ppp_register_channel +EXPORT_SYMBOL vmlinux 0xcfe54a7e agp_generic_alloc_pages +EXPORT_SYMBOL vmlinux 0xd00cc940 __tracepoint_dma_fence_signaled +EXPORT_SYMBOL vmlinux 0xd00da4f8 vga_switcheroo_register_audio_client +EXPORT_SYMBOL vmlinux 0xd0235727 inode_init_always +EXPORT_SYMBOL vmlinux 0xd027439d single_release +EXPORT_SYMBOL vmlinux 0xd047ef18 cdev_add EXPORT_SYMBOL vmlinux 0xd04c1a64 sysctl_devconf_inherit_init_net -EXPORT_SYMBOL vmlinux 0xd05b2736 gnet_stats_copy_rate_est -EXPORT_SYMBOL vmlinux 0xd061eb49 dev_change_proto_down_generic +EXPORT_SYMBOL vmlinux 0xd061173c mr_mfc_seq_idx EXPORT_SYMBOL vmlinux 0xd0654aba woken_wake_function -EXPORT_SYMBOL vmlinux 0xd06575fc tcp_sock_set_nodelay -EXPORT_SYMBOL vmlinux 0xd0669985 neigh_lookup_nodev -EXPORT_SYMBOL vmlinux 0xd06e3e90 input_grab_device -EXPORT_SYMBOL vmlinux 0xd072c6eb vme_irq_handler +EXPORT_SYMBOL vmlinux 0xd0657e94 sock_alloc_file +EXPORT_SYMBOL vmlinux 0xd06a2fda tcp_time_wait EXPORT_SYMBOL vmlinux 0xd0760fc0 kfree_sensitive -EXPORT_SYMBOL vmlinux 0xd0843d75 vm_mmap +EXPORT_SYMBOL vmlinux 0xd07e2c2b __module_get +EXPORT_SYMBOL vmlinux 0xd089ab91 netif_set_real_num_tx_queues EXPORT_SYMBOL vmlinux 0xd08adb2b trace_seq_hex_dump -EXPORT_SYMBOL vmlinux 0xd08b77ba zpool_unregister_driver -EXPORT_SYMBOL vmlinux 0xd08e2a63 xsk_tx_release -EXPORT_SYMBOL vmlinux 0xd0a31b8b md_wait_for_blocked_rdev +EXPORT_SYMBOL vmlinux 0xd08b7d11 mipi_dsi_dcs_enter_sleep_mode EXPORT_SYMBOL vmlinux 0xd0ae5f55 __printk_cpu_trylock +EXPORT_SYMBOL vmlinux 0xd0ae776f blk_mq_delay_run_hw_queue EXPORT_SYMBOL vmlinux 0xd0b74705 acpi_install_interface -EXPORT_SYMBOL vmlinux 0xd0b88067 pm860x_set_bits -EXPORT_SYMBOL vmlinux 0xd0d4293a free_cgroup_ns +EXPORT_SYMBOL vmlinux 0xd0c69911 cros_ec_cmd_xfer_status EXPORT_SYMBOL vmlinux 0xd0da656b __stack_chk_fail -EXPORT_SYMBOL vmlinux 0xd0eb3695 find_inode_by_ino_rcu -EXPORT_SYMBOL vmlinux 0xd0ebb14c rtnl_create_link +EXPORT_SYMBOL vmlinux 0xd0db1c78 xfrm4_rcv_encap EXPORT_SYMBOL vmlinux 0xd0f284b8 mmiotrace_printk -EXPORT_SYMBOL vmlinux 0xd0fdc6eb lease_get_mtime +EXPORT_SYMBOL vmlinux 0xd0f77ecf genphy_setup_forced EXPORT_SYMBOL vmlinux 0xd0fe8d51 sg_pcopy_from_buffer EXPORT_SYMBOL vmlinux 0xd0fef3b2 agp_free_key -EXPORT_SYMBOL vmlinux 0xd11a8bc8 unregister_netdevice_notifier_net -EXPORT_SYMBOL vmlinux 0xd121d95f bio_integrity_prep -EXPORT_SYMBOL vmlinux 0xd124c852 pci_add_new_bus -EXPORT_SYMBOL vmlinux 0xd12c8a2d acpi_pm_device_sleep_state +EXPORT_SYMBOL vmlinux 0xd11c9f44 logfc +EXPORT_SYMBOL vmlinux 0xd12759e9 simple_empty +EXPORT_SYMBOL vmlinux 0xd129f94d napi_get_frags EXPORT_SYMBOL vmlinux 0xd1363cc1 ucs2_strsize -EXPORT_SYMBOL vmlinux 0xd144a42a filemap_invalidate_unlock_two -EXPORT_SYMBOL vmlinux 0xd14d9bda put_disk -EXPORT_SYMBOL vmlinux 0xd1581bb4 __page_frag_cache_drain -EXPORT_SYMBOL vmlinux 0xd15add00 tcp_get_cookie_sock +EXPORT_SYMBOL vmlinux 0xd13d8aca __cleancache_init_shared_fs +EXPORT_SYMBOL vmlinux 0xd14d14ae tty_check_change +EXPORT_SYMBOL vmlinux 0xd1580282 register_netdevice +EXPORT_SYMBOL vmlinux 0xd1598b9e tcp_sock_set_keepcnt EXPORT_SYMBOL vmlinux 0xd15eada0 nla_reserve +EXPORT_SYMBOL vmlinux 0xd1733631 simple_dir_inode_operations +EXPORT_SYMBOL vmlinux 0xd175dc00 pin_user_pages_unlocked EXPORT_SYMBOL vmlinux 0xd1769161 kobject_get +EXPORT_SYMBOL vmlinux 0xd17e4dd7 d_mark_dontcache EXPORT_SYMBOL vmlinux 0xd1816f32 frontswap_writethrough +EXPORT_SYMBOL vmlinux 0xd1873275 agp_generic_free_gatt_table EXPORT_SYMBOL vmlinux 0xd194ddf9 acpi_gpe_count -EXPORT_SYMBOL vmlinux 0xd19fba6a pipe_unlock -EXPORT_SYMBOL vmlinux 0xd1bdc61d __SCK__tp_func_kmem_cache_alloc_node -EXPORT_SYMBOL vmlinux 0xd1d836de pm8606_osc_disable +EXPORT_SYMBOL vmlinux 0xd198c7a3 scsi_scan_target +EXPORT_SYMBOL vmlinux 0xd19ffccb phy_ethtool_get_wol +EXPORT_SYMBOL vmlinux 0xd1d21da4 __fib6_flush_trees EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string -EXPORT_SYMBOL vmlinux 0xd1f0eda9 cdrom_get_last_written EXPORT_SYMBOL vmlinux 0xd1f60a89 arch_io_free_memtype_wc EXPORT_SYMBOL vmlinux 0xd1f6c5f3 smp_num_siblings -EXPORT_SYMBOL vmlinux 0xd1f83986 module_refcount -EXPORT_SYMBOL vmlinux 0xd203931f vga_switcheroo_client_probe_defer -EXPORT_SYMBOL vmlinux 0xd2172aa4 udp_gro_complete +EXPORT_SYMBOL vmlinux 0xd1fa3e8c iterate_fd +EXPORT_SYMBOL vmlinux 0xd200bd48 blk_mq_delay_run_hw_queues +EXPORT_SYMBOL vmlinux 0xd212e745 mdiobus_unregister_device EXPORT_SYMBOL vmlinux 0xd21c5139 iowrite64_lo_hi EXPORT_SYMBOL vmlinux 0xd2237016 radix_tree_delete_item -EXPORT_SYMBOL vmlinux 0xd23fbe34 pldmfw_flash_image -EXPORT_SYMBOL vmlinux 0xd2540746 uart_unregister_driver +EXPORT_SYMBOL vmlinux 0xd2379540 _dev_warn +EXPORT_SYMBOL vmlinux 0xd2479641 __mdiobus_write +EXPORT_SYMBOL vmlinux 0xd24e921e __break_lease +EXPORT_SYMBOL vmlinux 0xd257775e make_kprojid EXPORT_SYMBOL vmlinux 0xd25d4f74 console_blank_hook -EXPORT_SYMBOL vmlinux 0xd26cfacb __mmap_lock_do_trace_released +EXPORT_SYMBOL vmlinux 0xd26b3570 generic_file_open +EXPORT_SYMBOL vmlinux 0xd26e7d5a page_pool_put_page EXPORT_SYMBOL vmlinux 0xd2779731 blk_limits_io_min +EXPORT_SYMBOL vmlinux 0xd27a7cba security_path_rename EXPORT_SYMBOL vmlinux 0xd27b25dd blk_check_plugged -EXPORT_SYMBOL vmlinux 0xd2823fda follow_down_one -EXPORT_SYMBOL vmlinux 0xd283b558 request_key_tag +EXPORT_SYMBOL vmlinux 0xd2800691 nf_conntrack_destroy EXPORT_SYMBOL vmlinux 0xd2bc5c46 __get_user_nocheck_2 EXPORT_SYMBOL vmlinux 0xd2c99738 __kmalloc_track_caller -EXPORT_SYMBOL vmlinux 0xd2c9fcae pci_bus_read_dev_vendor_id +EXPORT_SYMBOL vmlinux 0xd2cd377f unregister_key_type +EXPORT_SYMBOL vmlinux 0xd2d6a96b con_set_default_unimap EXPORT_SYMBOL vmlinux 0xd2d7a581 __register_nls EXPORT_SYMBOL vmlinux 0xd2da1048 register_netdevice_notifier -EXPORT_SYMBOL vmlinux 0xd2e29c88 proc_create_mount_point +EXPORT_SYMBOL vmlinux 0xd2e22851 cdrom_open EXPORT_SYMBOL vmlinux 0xd2e2a9d0 hdmi_spd_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0xd2e44712 netif_stacked_transfer_operstate -EXPORT_SYMBOL vmlinux 0xd2e4d5fd locks_remove_posix EXPORT_SYMBOL vmlinux 0xd2ea49b8 acpi_leave_sleep_state_prep -EXPORT_SYMBOL vmlinux 0xd2f277d0 genphy_setup_forced +EXPORT_SYMBOL vmlinux 0xd31dcc5b input_reset_device EXPORT_SYMBOL vmlinux 0xd338ea7e __SCT__tp_func_kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0xd339ee3a iptun_encaps -EXPORT_SYMBOL vmlinux 0xd34206d5 _dev_printk +EXPORT_SYMBOL vmlinux 0xd33f6ef4 set_nlink +EXPORT_SYMBOL vmlinux 0xd34fe5cc mipi_dsi_dcs_get_display_brightness EXPORT_SYMBOL vmlinux 0xd3543063 memcg_kmem_enabled_key +EXPORT_SYMBOL vmlinux 0xd3598f94 skb_udp_tunnel_segment EXPORT_SYMBOL vmlinux 0xd35a6d31 mempool_kmalloc EXPORT_SYMBOL vmlinux 0xd35cce70 _raw_spin_unlock_irqrestore -EXPORT_SYMBOL vmlinux 0xd3629d72 tcf_em_register EXPORT_SYMBOL vmlinux 0xd36dc10c get_random_u32 EXPORT_SYMBOL vmlinux 0xd36e3d59 prandom_bytes_state -EXPORT_SYMBOL vmlinux 0xd37a8340 netdev_set_num_tc EXPORT_SYMBOL vmlinux 0xd38cd261 __default_kernel_pte_mask -EXPORT_SYMBOL vmlinux 0xd3aa48de del_random_ready_callback -EXPORT_SYMBOL vmlinux 0xd3d6bf70 iter_file_splice_write -EXPORT_SYMBOL vmlinux 0xd3dcd065 flow_rule_match_basic -EXPORT_SYMBOL vmlinux 0xd3ddd043 bdev_dax_pgoff -EXPORT_SYMBOL vmlinux 0xd3e20642 vme_new_dma_list +EXPORT_SYMBOL vmlinux 0xd3916d53 agp_generic_alloc_user +EXPORT_SYMBOL vmlinux 0xd39366cf nd_pfn_probe +EXPORT_SYMBOL vmlinux 0xd3940437 param_ops_ulong +EXPORT_SYMBOL vmlinux 0xd39f9a54 md_bitmap_sync_with_cluster +EXPORT_SYMBOL vmlinux 0xd3e2f230 do_SAK +EXPORT_SYMBOL vmlinux 0xd3e6e2d8 generic_fill_statx_attr EXPORT_SYMBOL vmlinux 0xd3eaf1ed devlink_dpipe_entry_clear -EXPORT_SYMBOL vmlinux 0xd3f237b7 scsi_print_result +EXPORT_SYMBOL vmlinux 0xd3f33269 configfs_depend_item_unlocked +EXPORT_SYMBOL vmlinux 0xd3f9a289 fscrypt_decrypt_pagecache_blocks EXPORT_SYMBOL vmlinux 0xd406d266 fb_mode_is_equal -EXPORT_SYMBOL vmlinux 0xd40aa876 qdisc_hash_add -EXPORT_SYMBOL vmlinux 0xd410ed46 __traceiter_mmap_lock_released -EXPORT_SYMBOL vmlinux 0xd424a65b inet_csk_reqsk_queue_drop -EXPORT_SYMBOL vmlinux 0xd42e3ff7 devm_kvasprintf -EXPORT_SYMBOL vmlinux 0xd43db854 xfrm_state_register_afinfo -EXPORT_SYMBOL vmlinux 0xd4441ce7 __ip_mc_dec_group -EXPORT_SYMBOL vmlinux 0xd449ac0b xfrm_policy_walk -EXPORT_SYMBOL vmlinux 0xd4512abc dma_get_sgtable_attrs -EXPORT_SYMBOL vmlinux 0xd452dade zap_page_range -EXPORT_SYMBOL vmlinux 0xd453e392 netdev_txq_to_tc -EXPORT_SYMBOL vmlinux 0xd45a851b kernel_sendmsg_locked +EXPORT_SYMBOL vmlinux 0xd41c6414 phy_start_aneg +EXPORT_SYMBOL vmlinux 0xd4243769 __block_write_full_page +EXPORT_SYMBOL vmlinux 0xd430edb6 __put_page +EXPORT_SYMBOL vmlinux 0xd454aea1 get_cached_acl EXPORT_SYMBOL vmlinux 0xd45cc6ca bin2hex -EXPORT_SYMBOL vmlinux 0xd471255e max8998_read_reg -EXPORT_SYMBOL vmlinux 0xd471ef49 dst_discard_out +EXPORT_SYMBOL vmlinux 0xd47c2dc9 vga_client_register EXPORT_SYMBOL vmlinux 0xd4835ef8 dmi_check_system +EXPORT_SYMBOL vmlinux 0xd4b67209 tcf_em_unregister EXPORT_SYMBOL vmlinux 0xd4bb4a82 inet6addr_validator_notifier_call_chain EXPORT_SYMBOL vmlinux 0xd4d1983c udplite_table -EXPORT_SYMBOL vmlinux 0xd4d488fb jbd2_journal_revoke -EXPORT_SYMBOL vmlinux 0xd4e97092 prepare_to_swait_event -EXPORT_SYMBOL vmlinux 0xd4f8a131 scsi_register_driver +EXPORT_SYMBOL vmlinux 0xd4dddf66 nobh_writepage EXPORT_SYMBOL vmlinux 0xd4fa2b69 textsearch_destroy EXPORT_SYMBOL vmlinux 0xd4fa5a87 __kfifo_dma_out_prepare -EXPORT_SYMBOL vmlinux 0xd4fb7302 km_state_notify -EXPORT_SYMBOL vmlinux 0xd50314f1 netdev_reset_tc -EXPORT_SYMBOL vmlinux 0xd50b7656 backlight_device_register -EXPORT_SYMBOL vmlinux 0xd511aff4 noop_qdisc -EXPORT_SYMBOL vmlinux 0xd519f090 path_is_under -EXPORT_SYMBOL vmlinux 0xd51b6627 mmc_cqe_request_done +EXPORT_SYMBOL vmlinux 0xd508d05d blk_mq_start_request +EXPORT_SYMBOL vmlinux 0xd517812f netpoll_parse_options +EXPORT_SYMBOL vmlinux 0xd51ddc9d eisa_driver_register +EXPORT_SYMBOL vmlinux 0xd522edbe agp_alloc_bridge +EXPORT_SYMBOL vmlinux 0xd52385ac devfreq_remove_device +EXPORT_SYMBOL vmlinux 0xd5259533 pcibios_resource_to_bus +EXPORT_SYMBOL vmlinux 0xd5260096 dma_supported EXPORT_SYMBOL vmlinux 0xd5263820 mb_cache_destroy +EXPORT_SYMBOL vmlinux 0xd52aca0c param_get_long +EXPORT_SYMBOL vmlinux 0xd5332a93 rproc_add_carveout EXPORT_SYMBOL vmlinux 0xd5346bfc acpi_get_possible_resources -EXPORT_SYMBOL vmlinux 0xd5370f97 sock_set_rcvbuf -EXPORT_SYMBOL vmlinux 0xd537b839 genl_notify -EXPORT_SYMBOL vmlinux 0xd53b6ebe tcp_req_err -EXPORT_SYMBOL vmlinux 0xd54216e4 __hw_addr_ref_sync_dev -EXPORT_SYMBOL vmlinux 0xd5439ad2 flow_rule_match_enc_ipv4_addrs -EXPORT_SYMBOL vmlinux 0xd5567188 rproc_of_resm_mem_entry_init -EXPORT_SYMBOL vmlinux 0xd55e2160 ppp_register_net_channel -EXPORT_SYMBOL vmlinux 0xd56457bf iget_failed -EXPORT_SYMBOL vmlinux 0xd56c5646 pci_pme_capable -EXPORT_SYMBOL vmlinux 0xd56df17e fb_prepare_logo -EXPORT_SYMBOL vmlinux 0xd57f36ac acpi_get_hp_hw_control_from_firmware +EXPORT_SYMBOL vmlinux 0xd5511368 kthread_stop +EXPORT_SYMBOL vmlinux 0xd5542b35 pci_scan_root_bus +EXPORT_SYMBOL vmlinux 0xd583abdb seq_escape_mem EXPORT_SYMBOL vmlinux 0xd58e70dd net_rand_noise -EXPORT_SYMBOL vmlinux 0xd59b0219 cdev_alloc +EXPORT_SYMBOL vmlinux 0xd592d301 napi_gro_frags +EXPORT_SYMBOL vmlinux 0xd59574e6 is_nd_btt EXPORT_SYMBOL vmlinux 0xd5b3d0d5 xxh64_copy_state -EXPORT_SYMBOL vmlinux 0xd5c3ccdf nf_ct_attach -EXPORT_SYMBOL vmlinux 0xd5d9d54e cdrom_dummy_generic_packet -EXPORT_SYMBOL vmlinux 0xd5fc6c1d __skb_flow_get_ports +EXPORT_SYMBOL vmlinux 0xd5c1a63d tcp_fastopen_defer_connect +EXPORT_SYMBOL vmlinux 0xd5cdb54c flow_rule_match_eth_addrs +EXPORT_SYMBOL vmlinux 0xd5e0b27e amd_iommu_domain_set_gcr3 +EXPORT_SYMBOL vmlinux 0xd5ed1b75 crypto_sha1_update +EXPORT_SYMBOL vmlinux 0xd5f6567e flow_rule_match_enc_ipv4_addrs EXPORT_SYMBOL vmlinux 0xd5fd90f1 prepare_to_wait EXPORT_SYMBOL vmlinux 0xd60736ec gf128mul_free_64k -EXPORT_SYMBOL vmlinux 0xd60dd061 sg_miter_next -EXPORT_SYMBOL vmlinux 0xd61294c6 generic_remap_file_range_prep -EXPORT_SYMBOL vmlinux 0xd6169415 pin_user_pages_unlocked -EXPORT_SYMBOL vmlinux 0xd618589f dma_resv_reserve_shared -EXPORT_SYMBOL vmlinux 0xd6203960 ipv6_dev_get_saddr +EXPORT_SYMBOL vmlinux 0xd610d9ba from_kgid +EXPORT_SYMBOL vmlinux 0xd621ccfd mipi_dsi_dcs_write +EXPORT_SYMBOL vmlinux 0xd62788e4 generic_key_instantiate EXPORT_SYMBOL vmlinux 0xd62ecd49 rps_sock_flow_table -EXPORT_SYMBOL vmlinux 0xd636d447 xfrm_unregister_type_offload +EXPORT_SYMBOL vmlinux 0xd6312ccd dquot_quota_off EXPORT_SYMBOL vmlinux 0xd63fd8d1 utf8nagemax +EXPORT_SYMBOL vmlinux 0xd6418f67 pci_request_regions EXPORT_SYMBOL vmlinux 0xd643239a acpi_leave_sleep_state -EXPORT_SYMBOL vmlinux 0xd6476ad8 ipv6_sock_mc_join -EXPORT_SYMBOL vmlinux 0xd64a0d73 genphy_soft_reset -EXPORT_SYMBOL vmlinux 0xd683b7af phy_remove_link_mode +EXPORT_SYMBOL vmlinux 0xd652dd90 unregister_binfmt +EXPORT_SYMBOL vmlinux 0xd65b9a7e pskb_trim_rcsum_slow +EXPORT_SYMBOL vmlinux 0xd6648d29 ipv6_sock_mc_join +EXPORT_SYMBOL vmlinux 0xd6687c18 tcp_mss_to_mtu +EXPORT_SYMBOL vmlinux 0xd66c8184 add_device_randomness +EXPORT_SYMBOL vmlinux 0xd6767cb6 __SCK__tp_func_mmap_lock_start_locking EXPORT_SYMBOL vmlinux 0xd688716b dm_kcopyd_client_create +EXPORT_SYMBOL vmlinux 0xd68958da deactivate_super +EXPORT_SYMBOL vmlinux 0xd689ccf1 md_bitmap_update_sb +EXPORT_SYMBOL vmlinux 0xd68b05d1 dquot_destroy EXPORT_SYMBOL vmlinux 0xd68c5a1f adjust_resource +EXPORT_SYMBOL vmlinux 0xd6918b40 sock_diag_put_filterinfo EXPORT_SYMBOL vmlinux 0xd691c6a9 unregister_sysctl_table -EXPORT_SYMBOL vmlinux 0xd69269d7 __bread_gfp -EXPORT_SYMBOL vmlinux 0xd69552e4 tty_port_tty_set EXPORT_SYMBOL vmlinux 0xd6a91f54 twl_i2c_read -EXPORT_SYMBOL vmlinux 0xd6af6f19 ptp_schedule_worker EXPORT_SYMBOL vmlinux 0xd6b2ed5f generate_pm_trace EXPORT_SYMBOL vmlinux 0xd6b33026 cpu_khz -EXPORT_SYMBOL vmlinux 0xd6c3bb84 scsi_print_command -EXPORT_SYMBOL vmlinux 0xd6c8905f mmc_run_bkops -EXPORT_SYMBOL vmlinux 0xd6cbad80 skb_vlan_untag -EXPORT_SYMBOL vmlinux 0xd6d27d43 key_validate -EXPORT_SYMBOL vmlinux 0xd6d41bd8 pm_vt_switch_unregister -EXPORT_SYMBOL vmlinux 0xd6d79296 pcie_print_link_status +EXPORT_SYMBOL vmlinux 0xd6d21fd2 filemap_write_and_wait_range +EXPORT_SYMBOL vmlinux 0xd6db86aa zero_fill_bio EXPORT_SYMBOL vmlinux 0xd6eaaea1 full_name_hash EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc -EXPORT_SYMBOL vmlinux 0xd6f31647 tcf_block_put_ext +EXPORT_SYMBOL vmlinux 0xd6fcbc7c inode_set_flags EXPORT_SYMBOL vmlinux 0xd6fde043 is_module_sig_enforced EXPORT_SYMBOL vmlinux 0xd70d35a1 gf128mul_4k_bbe EXPORT_SYMBOL vmlinux 0xd70f62b6 acpi_os_execute -EXPORT_SYMBOL vmlinux 0xd70ffd86 agp3_generic_tlbflush -EXPORT_SYMBOL vmlinux 0xd7290d36 generic_file_llseek -EXPORT_SYMBOL vmlinux 0xd735fa6c devfreq_update_status +EXPORT_SYMBOL vmlinux 0xd713c2c2 simple_rmdir +EXPORT_SYMBOL vmlinux 0xd716ab3c __skb_vlan_pop EXPORT_SYMBOL vmlinux 0xd738ca1b phy_unregister_fixup_for_uid -EXPORT_SYMBOL vmlinux 0xd73ccdb1 alloc_file_pseudo -EXPORT_SYMBOL vmlinux 0xd74db7a8 pci_scan_bus -EXPORT_SYMBOL vmlinux 0xd74e330b agp_enable -EXPORT_SYMBOL vmlinux 0xd77ddc8b tcf_exts_terse_dump -EXPORT_SYMBOL vmlinux 0xd7942769 sk_ns_capable -EXPORT_SYMBOL vmlinux 0xd795ef2b cdev_set_parent -EXPORT_SYMBOL vmlinux 0xd7a055bd crypto_sha512_update -EXPORT_SYMBOL vmlinux 0xd7a31af6 i2c_smbus_xfer -EXPORT_SYMBOL vmlinux 0xd7b3085c sk_stream_kill_queues -EXPORT_SYMBOL vmlinux 0xd7b976d0 agp_backend_acquire -EXPORT_SYMBOL vmlinux 0xd7cfa1f7 sock_bindtoindex +EXPORT_SYMBOL vmlinux 0xd7445a44 rproc_coredump_add_segment +EXPORT_SYMBOL vmlinux 0xd745f1a4 fs_param_is_u32 +EXPORT_SYMBOL vmlinux 0xd747e9ce genphy_update_link +EXPORT_SYMBOL vmlinux 0xd74a5eaa forget_all_cached_acls +EXPORT_SYMBOL vmlinux 0xd772c8d8 devfreq_update_target +EXPORT_SYMBOL vmlinux 0xd77449e1 neigh_destroy +EXPORT_SYMBOL vmlinux 0xd77cc5df inc_node_page_state +EXPORT_SYMBOL vmlinux 0xd78cde38 max8925_reg_read +EXPORT_SYMBOL vmlinux 0xd79b1c9e tcp_sync_mss +EXPORT_SYMBOL vmlinux 0xd7b37e94 kill_block_super +EXPORT_SYMBOL vmlinux 0xd7c48cc3 filemap_invalidate_unlock_two +EXPORT_SYMBOL vmlinux 0xd7ce0fa9 from_kprojid_munged EXPORT_SYMBOL vmlinux 0xd7d280ad irq_poll_complete -EXPORT_SYMBOL vmlinux 0xd7dd4c43 generic_iommu_put_resv_regions EXPORT_SYMBOL vmlinux 0xd7dd777b reserve_perfctr_nmi +EXPORT_SYMBOL vmlinux 0xd7e43915 read_cache_page EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll EXPORT_SYMBOL vmlinux 0xd7ea7094 nf_unregister_queue_handler -EXPORT_SYMBOL vmlinux 0xd7f6d606 handle_edge_irq -EXPORT_SYMBOL vmlinux 0xd8022e22 input_unregister_device -EXPORT_SYMBOL vmlinux 0xd81d4a61 ipv6_sock_mc_drop -EXPORT_SYMBOL vmlinux 0xd8270efe tcp_get_md5sig_pool -EXPORT_SYMBOL vmlinux 0xd8368747 __xfrm_state_destroy -EXPORT_SYMBOL vmlinux 0xd83a484d unregister_binfmt -EXPORT_SYMBOL vmlinux 0xd8418508 d_splice_alias -EXPORT_SYMBOL vmlinux 0xd84300ba __tty_insert_flip_char +EXPORT_SYMBOL vmlinux 0xd7fe30d6 pnp_register_driver +EXPORT_SYMBOL vmlinux 0xd800616b sk_alloc +EXPORT_SYMBOL vmlinux 0xd8347951 trace_raw_output_prep +EXPORT_SYMBOL vmlinux 0xd836a291 max8925_bulk_write +EXPORT_SYMBOL vmlinux 0xd83f3a1e genphy_c37_read_status +EXPORT_SYMBOL vmlinux 0xd844db00 mmc_retune_release EXPORT_SYMBOL vmlinux 0xd846c315 acpi_write_bit_register -EXPORT_SYMBOL vmlinux 0xd85c9f78 dev_mc_init -EXPORT_SYMBOL vmlinux 0xd85e570c stream_open -EXPORT_SYMBOL vmlinux 0xd861d131 input_unregister_handle -EXPORT_SYMBOL vmlinux 0xd887d290 fscrypt_ioctl_set_policy +EXPORT_SYMBOL vmlinux 0xd87cc6bf pm_vt_switch_unregister EXPORT_SYMBOL vmlinux 0xd89da37f movable_zone -EXPORT_SYMBOL vmlinux 0xd8a121da __test_set_page_writeback -EXPORT_SYMBOL vmlinux 0xd8a4d098 __sk_mem_reclaim -EXPORT_SYMBOL vmlinux 0xd8a5d176 fib_default_rule_add +EXPORT_SYMBOL vmlinux 0xd8a48ce3 configfs_undepend_item EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format EXPORT_SYMBOL vmlinux 0xd8b61304 get_default_font -EXPORT_SYMBOL vmlinux 0xd8c6d4ee iov_iter_gap_alignment EXPORT_SYMBOL vmlinux 0xd8cef6e1 clear_user EXPORT_SYMBOL vmlinux 0xd8df08ac acpi_handle_printk -EXPORT_SYMBOL vmlinux 0xd8f414ed vif_device_init -EXPORT_SYMBOL vmlinux 0xd8f7d363 nexthop_set_hw_flags -EXPORT_SYMBOL vmlinux 0xd8fc789b jbd2_journal_destroy -EXPORT_SYMBOL vmlinux 0xd8fc7ec5 nf_register_sockopt -EXPORT_SYMBOL vmlinux 0xd90beb41 default_qdisc_ops -EXPORT_SYMBOL vmlinux 0xd91011e6 eth_header_cache -EXPORT_SYMBOL vmlinux 0xd913afcd blackhole_netdev -EXPORT_SYMBOL vmlinux 0xd91b3a14 skb_tunnel_check_pmtu +EXPORT_SYMBOL vmlinux 0xd9176a4b pci_disable_link_state EXPORT_SYMBOL vmlinux 0xd91f6ab6 strnlen_user -EXPORT_SYMBOL vmlinux 0xd921be5c __page_cache_alloc +EXPORT_SYMBOL vmlinux 0xd92035da eth_prepare_mac_addr_change +EXPORT_SYMBOL vmlinux 0xd92937bd inet6_bind +EXPORT_SYMBOL vmlinux 0xd92a4dc0 genphy_read_status_fixed +EXPORT_SYMBOL vmlinux 0xd92c7acc scsi_device_get +EXPORT_SYMBOL vmlinux 0xd92d30f3 netdev_crit EXPORT_SYMBOL vmlinux 0xd92deb6b acpi_evaluate_object +EXPORT_SYMBOL vmlinux 0xd92fcad8 skb_vlan_pop EXPORT_SYMBOL vmlinux 0xd933f209 __SCT__tp_func_rdpmc -EXPORT_SYMBOL vmlinux 0xd941dc49 skb_copy_and_csum_datagram_msg EXPORT_SYMBOL vmlinux 0xd9491c14 xa_destroy -EXPORT_SYMBOL vmlinux 0xd9505b45 redirty_page_for_writepage -EXPORT_SYMBOL vmlinux 0xd96a0592 dev_get_iflink +EXPORT_SYMBOL vmlinux 0xd9623ea9 d_instantiate_anon +EXPORT_SYMBOL vmlinux 0xd96fab53 jbd2_journal_wipe EXPORT_SYMBOL vmlinux 0xd971c6c4 xen_arch_register_cpu -EXPORT_SYMBOL vmlinux 0xd979cec0 ping_prot -EXPORT_SYMBOL vmlinux 0xd98243d6 dev_pick_tx_cpu_id EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages -EXPORT_SYMBOL vmlinux 0xd987d7ff keyring_search +EXPORT_SYMBOL vmlinux 0xd9965f0e jbd2_journal_submit_inode_data_buffers EXPORT_SYMBOL vmlinux 0xd9a5ea54 __init_waitqueue_head EXPORT_SYMBOL vmlinux 0xd9b85ef6 lockref_get -EXPORT_SYMBOL vmlinux 0xd9cd42eb input_event +EXPORT_SYMBOL vmlinux 0xd9cb190a security_socket_socketpair +EXPORT_SYMBOL vmlinux 0xd9d021d8 locks_copy_conflock EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler EXPORT_SYMBOL vmlinux 0xd9d952d1 crypto_aes_sbox -EXPORT_SYMBOL vmlinux 0xd9def775 flow_indr_dev_unregister -EXPORT_SYMBOL vmlinux 0xd9e448d7 inode_init_once -EXPORT_SYMBOL vmlinux 0xd9f0f0bd dquot_initialize_needed -EXPORT_SYMBOL vmlinux 0xd9fc7f88 skb_append -EXPORT_SYMBOL vmlinux 0xda0a70f1 scsi_host_alloc +EXPORT_SYMBOL vmlinux 0xd9e9f8bc phy_free_interrupt +EXPORT_SYMBOL vmlinux 0xd9ff865d qdisc_watchdog_init EXPORT_SYMBOL vmlinux 0xda1ddef1 acpi_mark_gpe_for_wake EXPORT_SYMBOL vmlinux 0xda26b8ea __irq_regs +EXPORT_SYMBOL vmlinux 0xda29af06 agp_copy_info +EXPORT_SYMBOL vmlinux 0xda36142c __fs_parse +EXPORT_SYMBOL vmlinux 0xda38545b key_instantiate_and_link EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open -EXPORT_SYMBOL vmlinux 0xda406d1b skb_copy_bits -EXPORT_SYMBOL vmlinux 0xda468672 simple_nosetlease -EXPORT_SYMBOL vmlinux 0xda57a01e tcf_block_netif_keep_dst -EXPORT_SYMBOL vmlinux 0xda5fd252 __cleancache_get_page -EXPORT_SYMBOL vmlinux 0xda6cd211 do_splice_direct -EXPORT_SYMBOL vmlinux 0xda6d3880 edac_mc_find +EXPORT_SYMBOL vmlinux 0xda400176 mmc_of_parse +EXPORT_SYMBOL vmlinux 0xda488c50 grab_cache_page_write_begin +EXPORT_SYMBOL vmlinux 0xda575532 dst_release +EXPORT_SYMBOL vmlinux 0xda61ac50 __post_watch_notification +EXPORT_SYMBOL vmlinux 0xda6b9140 vlan_uses_dev +EXPORT_SYMBOL vmlinux 0xda6bb9c1 cdrom_ioctl EXPORT_SYMBOL vmlinux 0xda72a7ec ZSTD_nextInputType -EXPORT_SYMBOL vmlinux 0xda769f7d mod_node_page_state -EXPORT_SYMBOL vmlinux 0xda76d106 agp_generic_enable -EXPORT_SYMBOL vmlinux 0xda7da889 netdev_upper_dev_link +EXPORT_SYMBOL vmlinux 0xda79796f pci_read_config_byte +EXPORT_SYMBOL vmlinux 0xda7fb9b9 netlink_net_capable EXPORT_SYMBOL vmlinux 0xda89ea3b ip_idents_reserve -EXPORT_SYMBOL vmlinux 0xda907541 phy_ethtool_set_wol -EXPORT_SYMBOL vmlinux 0xdaa5eeed param_get_charp -EXPORT_SYMBOL vmlinux 0xdabd24a9 input_alloc_absinfo -EXPORT_SYMBOL vmlinux 0xdac4665b tcf_idr_create +EXPORT_SYMBOL vmlinux 0xda9bdb8b tcp_syn_ack_timeout +EXPORT_SYMBOL vmlinux 0xdaaac6fe scsi_register_driver EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region -EXPORT_SYMBOL vmlinux 0xdac90ce8 in6_dev_finish_destroy EXPORT_SYMBOL vmlinux 0xdad13544 ptrs_per_p4d -EXPORT_SYMBOL vmlinux 0xdae57bd5 ip_route_me_harder -EXPORT_SYMBOL vmlinux 0xdb019d19 cdc_parse_cdc_header +EXPORT_SYMBOL vmlinux 0xdaf06940 __sock_cmsg_send +EXPORT_SYMBOL vmlinux 0xdafe1ee0 rtnl_unicast EXPORT_SYMBOL vmlinux 0xdb16b170 topology_phys_to_logical_pkg -EXPORT_SYMBOL vmlinux 0xdb17c3c0 netif_device_detach -EXPORT_SYMBOL vmlinux 0xdb41a296 inet6_release -EXPORT_SYMBOL vmlinux 0xdb591e72 __SCK__tp_func_dma_fence_enable_signal -EXPORT_SYMBOL vmlinux 0xdb602517 pci_read_config_dword +EXPORT_SYMBOL vmlinux 0xdb19c46b blk_set_queue_depth +EXPORT_SYMBOL vmlinux 0xdb1b969f pci_disable_msi +EXPORT_SYMBOL vmlinux 0xdb272616 nd_region_release_lane +EXPORT_SYMBOL vmlinux 0xdb31a26a __SCK__tp_func_kfree +EXPORT_SYMBOL vmlinux 0xdb3e550c kernel_getpeername EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy -EXPORT_SYMBOL vmlinux 0xdb6c4a33 sk_stream_wait_connect EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free -EXPORT_SYMBOL vmlinux 0xdb877526 xfrm_state_unregister_afinfo -EXPORT_SYMBOL vmlinux 0xdb8fdeef nd_btt_probe -EXPORT_SYMBOL vmlinux 0xdb93137d acpi_dev_get_first_match_dev +EXPORT_SYMBOL vmlinux 0xdb850b52 genphy_read_status +EXPORT_SYMBOL vmlinux 0xdb8dbddb scsi_register_interface +EXPORT_SYMBOL vmlinux 0xdb92b7f8 import_single_range EXPORT_SYMBOL vmlinux 0xdb95e185 intel_scu_ipc_dev_command_with_size -EXPORT_SYMBOL vmlinux 0xdba7ab50 fscrypt_decrypt_bio -EXPORT_SYMBOL vmlinux 0xdbc6c162 pci_enable_msix_range +EXPORT_SYMBOL vmlinux 0xdb9da12d vga_put +EXPORT_SYMBOL vmlinux 0xdbae76d3 sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0xdbb8bdf8 md_bitmap_endwrite +EXPORT_SYMBOL vmlinux 0xdbce042a insert_inode_locked4 EXPORT_SYMBOL vmlinux 0xdbcf041a acpi_install_address_space_handler +EXPORT_SYMBOL vmlinux 0xdbdc447c vfio_unpin_pages EXPORT_SYMBOL vmlinux 0xdbdf6c92 ioport_resource -EXPORT_SYMBOL vmlinux 0xdc0f461c pnp_activate_dev +EXPORT_SYMBOL vmlinux 0xdbf24295 cfb_imageblit +EXPORT_SYMBOL vmlinux 0xdbf6e547 km_state_notify +EXPORT_SYMBOL vmlinux 0xdc0eb93d neigh_parms_alloc EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems -EXPORT_SYMBOL vmlinux 0xdc17ca7b skb_kill_datagram -EXPORT_SYMBOL vmlinux 0xdc21a611 tcf_qevent_validate_change -EXPORT_SYMBOL vmlinux 0xdc2b00ac mmc_erase -EXPORT_SYMBOL vmlinux 0xdc2d5218 cpufreq_generic_suspend -EXPORT_SYMBOL vmlinux 0xdc3418a3 dcache_dir_lseek -EXPORT_SYMBOL vmlinux 0xdc385e4d vfs_fadvise -EXPORT_SYMBOL vmlinux 0xdc3d6e5d agp_generic_free_by_type -EXPORT_SYMBOL vmlinux 0xdc416f7f md_bitmap_start_sync +EXPORT_SYMBOL vmlinux 0xdc26d5ad mr_mfc_find_any_parent EXPORT_SYMBOL vmlinux 0xdc49c198 reciprocal_value_adv +EXPORT_SYMBOL vmlinux 0xdc4aca20 i2c_verify_client EXPORT_SYMBOL vmlinux 0xdc512134 backlight_register_notifier +EXPORT_SYMBOL vmlinux 0xdc52f52e rdmacg_uncharge EXPORT_SYMBOL vmlinux 0xdc5736d5 acpi_register_ioapic -EXPORT_SYMBOL vmlinux 0xdc5b0bf4 kernel_write -EXPORT_SYMBOL vmlinux 0xdc712564 devfreq_unregister_notifier -EXPORT_SYMBOL vmlinux 0xdc8f1f70 pcix_get_mmrbc -EXPORT_SYMBOL vmlinux 0xdc98db19 may_setattr -EXPORT_SYMBOL vmlinux 0xdc9f3999 inet_csk_reset_keepalive_timer -EXPORT_SYMBOL vmlinux 0xdced683b datagram_poll +EXPORT_SYMBOL vmlinux 0xdc89667c ndo_dflt_fdb_del +EXPORT_SYMBOL vmlinux 0xdcadbd09 nlmsg_notify +EXPORT_SYMBOL vmlinux 0xdcb2cc7b seq_open +EXPORT_SYMBOL vmlinux 0xdcb580d1 bio_endio +EXPORT_SYMBOL vmlinux 0xdcde7579 devm_devfreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0xdcf39d64 phy_read_mmd +EXPORT_SYMBOL vmlinux 0xdcf558e0 proc_create_seq_private EXPORT_SYMBOL vmlinux 0xdd00447a acpi_resource_to_address64 -EXPORT_SYMBOL vmlinux 0xdd04818d mipi_dsi_compression_mode +EXPORT_SYMBOL vmlinux 0xdd05e49f xsk_set_tx_need_wakeup +EXPORT_SYMBOL vmlinux 0xdd0dacd3 tty_port_open +EXPORT_SYMBOL vmlinux 0xdd0dce9a __sk_dst_check EXPORT_SYMBOL vmlinux 0xdd18a993 acpi_check_dsm -EXPORT_SYMBOL vmlinux 0xdd2919e5 freeze_super +EXPORT_SYMBOL vmlinux 0xdd1f3206 __devm_request_region EXPORT_SYMBOL vmlinux 0xdd2c169b mb_cache_create -EXPORT_SYMBOL vmlinux 0xdd2c2f59 __tracepoint_kfree -EXPORT_SYMBOL vmlinux 0xdd3007c8 iterate_supers_type -EXPORT_SYMBOL vmlinux 0xdd49b59a flow_rule_match_control -EXPORT_SYMBOL vmlinux 0xdd602d54 mipi_dsi_shutdown_peripheral -EXPORT_SYMBOL vmlinux 0xdd623969 simple_pin_fs +EXPORT_SYMBOL vmlinux 0xdd34a1c2 gro_cells_init +EXPORT_SYMBOL vmlinux 0xdd42f231 blk_integrity_register +EXPORT_SYMBOL vmlinux 0xdd45f955 posix_acl_update_mode +EXPORT_SYMBOL vmlinux 0xdd50a3c7 tty_unregister_driver +EXPORT_SYMBOL vmlinux 0xdd539163 fs_param_is_path +EXPORT_SYMBOL vmlinux 0xdd58eb86 __ip_queue_xmit +EXPORT_SYMBOL vmlinux 0xdd5ae7ea tcp_prot EXPORT_SYMBOL vmlinux 0xdd64e639 strscpy EXPORT_SYMBOL vmlinux 0xdd8166a1 dma_fence_free EXPORT_SYMBOL vmlinux 0xdd849d51 scsi_get_sense_info_fld -EXPORT_SYMBOL vmlinux 0xddac1a3d dst_dev_put +EXPORT_SYMBOL vmlinux 0xdd8e5251 generic_file_direct_write +EXPORT_SYMBOL vmlinux 0xdd917f9e xfrm6_protocol_register +EXPORT_SYMBOL vmlinux 0xdda05f3a tcf_action_set_ctrlact +EXPORT_SYMBOL vmlinux 0xdda9f561 devfreq_monitor_suspend EXPORT_SYMBOL vmlinux 0xddad7952 acpi_dbg_level EXPORT_SYMBOL vmlinux 0xddafdd31 vm_node_stat -EXPORT_SYMBOL vmlinux 0xddb1389d filemap_write_and_wait_range -EXPORT_SYMBOL vmlinux 0xddbe3f0f dquot_alloc_inode +EXPORT_SYMBOL vmlinux 0xddc2334e __dquot_transfer EXPORT_SYMBOL vmlinux 0xddcbe1f3 acpi_ut_value_exit -EXPORT_SYMBOL vmlinux 0xddd6a6da fsync_bdev -EXPORT_SYMBOL vmlinux 0xddf14a2d page_zero_new_buffers -EXPORT_SYMBOL vmlinux 0xddf35640 should_remove_suid +EXPORT_SYMBOL vmlinux 0xddcc3baa __tty_alloc_driver +EXPORT_SYMBOL vmlinux 0xdde7ae4b xfrm_input_resume +EXPORT_SYMBOL vmlinux 0xddeb9d5c md_bitmap_close_sync +EXPORT_SYMBOL vmlinux 0xddf5504e mr_mfc_seq_next EXPORT_SYMBOL vmlinux 0xddf6ad7a completion_done -EXPORT_SYMBOL vmlinux 0xde026b6b of_find_mipi_dsi_device_by_node -EXPORT_SYMBOL vmlinux 0xde05cac1 netdev_class_create_file_ns -EXPORT_SYMBOL vmlinux 0xde18f536 send_sig -EXPORT_SYMBOL vmlinux 0xde28852f lock_sock_nested +EXPORT_SYMBOL vmlinux 0xddfd316c sock_no_shutdown +EXPORT_SYMBOL vmlinux 0xde0a198b cdrom_release +EXPORT_SYMBOL vmlinux 0xde2213c0 blk_queue_physical_block_size EXPORT_SYMBOL vmlinux 0xde293f9e add_wait_queue_exclusive -EXPORT_SYMBOL vmlinux 0xde2b1e3b phy_ethtool_nway_reset -EXPORT_SYMBOL vmlinux 0xde33231b pcie_capability_read_dword -EXPORT_SYMBOL vmlinux 0xde3e43e9 dma_async_device_unregister +EXPORT_SYMBOL vmlinux 0xde384973 agp_generic_alloc_by_type EXPORT_SYMBOL vmlinux 0xde4d4ace dim_calc_stats -EXPORT_SYMBOL vmlinux 0xde4e8a2b md_bitmap_unplug EXPORT_SYMBOL vmlinux 0xde4eeab5 __register_nmi_handler -EXPORT_SYMBOL vmlinux 0xde58066b ww_mutex_lock -EXPORT_SYMBOL vmlinux 0xde66214e xfrm_state_lookup_byspi -EXPORT_SYMBOL vmlinux 0xde6d2b3b i2c_smbus_read_i2c_block_data_or_emulated +EXPORT_SYMBOL vmlinux 0xde6a3d09 generic_pipe_buf_get +EXPORT_SYMBOL vmlinux 0xde7ad3c5 inet_frag_reasm_prepare EXPORT_SYMBOL vmlinux 0xde80cd09 ioremap -EXPORT_SYMBOL vmlinux 0xde83aebe freeze_bdev -EXPORT_SYMBOL vmlinux 0xde9757b6 __blkdev_issue_discard -EXPORT_SYMBOL vmlinux 0xde991f34 dquot_alloc +EXPORT_SYMBOL vmlinux 0xde821da2 tcf_exts_num_actions +EXPORT_SYMBOL vmlinux 0xde90992e cdev_device_del EXPORT_SYMBOL vmlinux 0xde9b17ed agp3_generic_fetch_size -EXPORT_SYMBOL vmlinux 0xdec77f51 irq_set_chip +EXPORT_SYMBOL vmlinux 0xdea03b16 mmc_can_gpio_ro +EXPORT_SYMBOL vmlinux 0xdeb2cb8a scsi_target_quiesce +EXPORT_SYMBOL vmlinux 0xdeb8a58f netlink_broadcast_filtered +EXPORT_SYMBOL vmlinux 0xdecdc362 __skb_recv_udp EXPORT_SYMBOL vmlinux 0xded39a6b gen_kill_estimator -EXPORT_SYMBOL vmlinux 0xdeda01ad iget5_locked -EXPORT_SYMBOL vmlinux 0xdeedabde tcp_sock_set_quickack -EXPORT_SYMBOL vmlinux 0xdef2d410 kmem_cache_alloc_bulk +EXPORT_SYMBOL vmlinux 0xdeee4d1a vfs_link EXPORT_SYMBOL vmlinux 0xdef7c893 fb_match_mode EXPORT_SYMBOL vmlinux 0xdef8d0ae __SCT__tp_func_kfree -EXPORT_SYMBOL vmlinux 0xdf0a5832 padata_free -EXPORT_SYMBOL vmlinux 0xdf22f585 phy_reset_after_clk_enable +EXPORT_SYMBOL vmlinux 0xdf12ae3f d_move +EXPORT_SYMBOL vmlinux 0xdf16e057 __dev_get_by_flags EXPORT_SYMBOL vmlinux 0xdf256037 kstrtou8_from_user -EXPORT_SYMBOL vmlinux 0xdf2affc7 inet_add_protocol EXPORT_SYMBOL vmlinux 0xdf2c2742 rb_last EXPORT_SYMBOL vmlinux 0xdf2ebb87 _raw_read_unlock_irqrestore EXPORT_SYMBOL vmlinux 0xdf36914b xa_find_after -EXPORT_SYMBOL vmlinux 0xdf3b669c __cgroup_bpf_run_filter_sk -EXPORT_SYMBOL vmlinux 0xdf4fe790 reuseport_attach_prog +EXPORT_SYMBOL vmlinux 0xdf4a1d59 vfs_parse_fs_string EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier -EXPORT_SYMBOL vmlinux 0xdf5c53e4 pci_release_region EXPORT_SYMBOL vmlinux 0xdf6b082f proc_dointvec_jiffies -EXPORT_SYMBOL vmlinux 0xdf74af91 tcf_chain_get_by_act +EXPORT_SYMBOL vmlinux 0xdf852947 fs_param_is_blob EXPORT_SYMBOL vmlinux 0xdf8c695a __ndelay EXPORT_SYMBOL vmlinux 0xdf8d781f acpi_update_all_gpes -EXPORT_SYMBOL vmlinux 0xdf8f3ca1 tcf_idr_check_alloc EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid EXPORT_SYMBOL vmlinux 0xdf93b9d8 timespec64_to_jiffies -EXPORT_SYMBOL vmlinux 0xdf949fda configfs_register_group -EXPORT_SYMBOL vmlinux 0xdfadbe67 clocksource_change_rating -EXPORT_SYMBOL vmlinux 0xdfafc6d3 jbd2_journal_inode_ranged_write -EXPORT_SYMBOL vmlinux 0xdfc60f18 vfio_pin_pages +EXPORT_SYMBOL vmlinux 0xdf9bc72d skb_expand_head +EXPORT_SYMBOL vmlinux 0xdfa0b2e6 ptp_clock_event +EXPORT_SYMBOL vmlinux 0xdfa8a140 seg6_hmac_net_exit +EXPORT_SYMBOL vmlinux 0xdfc51031 mpage_writepages +EXPORT_SYMBOL vmlinux 0xdfc86145 jbd2_transaction_committed +EXPORT_SYMBOL vmlinux 0xdfc9d7b2 qdisc_put_unlocked EXPORT_SYMBOL vmlinux 0xdfca1c71 load_nls -EXPORT_SYMBOL vmlinux 0xdfca4f31 pnp_register_card_driver EXPORT_SYMBOL vmlinux 0xdfcc992c current_work -EXPORT_SYMBOL vmlinux 0xdfd0b80c dma_ops -EXPORT_SYMBOL vmlinux 0xdfd4b07b flow_rule_match_ipv6_addrs +EXPORT_SYMBOL vmlinux 0xdfcf611f skb_push EXPORT_SYMBOL vmlinux 0xdfdfa9e7 utf8nfdi -EXPORT_SYMBOL vmlinux 0xdfe48add scsicam_bios_param -EXPORT_SYMBOL vmlinux 0xdfe51dfa agp_generic_type_to_mask_type -EXPORT_SYMBOL vmlinux 0xdfec5f38 tcp_v4_do_rcv +EXPORT_SYMBOL vmlinux 0xdfecff5f scm_fp_dup EXPORT_SYMBOL vmlinux 0xdff905e5 vme_slave_free -EXPORT_SYMBOL vmlinux 0xdffb6331 dev_pm_opp_unregister_notifier EXPORT_SYMBOL vmlinux 0xdffc80fc vesa_modes -EXPORT_SYMBOL vmlinux 0xe00bb377 scsi_target_resume -EXPORT_SYMBOL vmlinux 0xe00c6805 scsi_partsize +EXPORT_SYMBOL vmlinux 0xe0092a69 sock_no_listen +EXPORT_SYMBOL vmlinux 0xe00fac65 input_set_poll_interval EXPORT_SYMBOL vmlinux 0xe0112fc4 __x86_indirect_thunk_r9 -EXPORT_SYMBOL vmlinux 0xe0215cfb qdisc_watchdog_init -EXPORT_SYMBOL vmlinux 0xe0240916 __lock_sock_fast +EXPORT_SYMBOL vmlinux 0xe0122dc9 set_binfmt 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 0xe03a689d dma_fence_array_ops EXPORT_SYMBOL vmlinux 0xe0419ac4 kstrtos16 -EXPORT_SYMBOL vmlinux 0xe050f1f3 pin_user_pages_remote -EXPORT_SYMBOL vmlinux 0xe05ba290 cdrom_mode_sense -EXPORT_SYMBOL vmlinux 0xe06a71cf vme_bus_num +EXPORT_SYMBOL vmlinux 0xe05c82ff __tracepoint_kfree EXPORT_SYMBOL vmlinux 0xe07e5f44 acpi_reconfig_notifier_unregister EXPORT_SYMBOL vmlinux 0xe080e8f0 set_current_groups EXPORT_SYMBOL vmlinux 0xe082e88d acpi_check_address_range EXPORT_SYMBOL vmlinux 0xe091c977 list_sort EXPORT_SYMBOL vmlinux 0xe0955f76 utf8_casefold -EXPORT_SYMBOL vmlinux 0xe0964a7b kfree_skb_partial -EXPORT_SYMBOL vmlinux 0xe0987476 devfreq_remove_device -EXPORT_SYMBOL vmlinux 0xe0aa27f0 inet_reqsk_alloc +EXPORT_SYMBOL vmlinux 0xe09b2ea3 agp_alloc_page_array +EXPORT_SYMBOL vmlinux 0xe0a530e0 param_get_charp +EXPORT_SYMBOL vmlinux 0xe0a9539a pldmfw_op_pci_match_record EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free EXPORT_SYMBOL vmlinux 0xe0bef318 icst_hz_to_vco -EXPORT_SYMBOL vmlinux 0xe0c0e4be mmc_card_is_blockaddr -EXPORT_SYMBOL vmlinux 0xe0c8d0ac pci_back_from_sleep -EXPORT_SYMBOL vmlinux 0xe0d7818a dquot_release -EXPORT_SYMBOL vmlinux 0xe0e7024e mipi_dsi_dcs_set_column_address -EXPORT_SYMBOL vmlinux 0xe106ff24 agp_generic_destroy_pages -EXPORT_SYMBOL vmlinux 0xe1089c44 blk_mq_init_allocated_queue -EXPORT_SYMBOL vmlinux 0xe1106588 ipmi_platform_add +EXPORT_SYMBOL vmlinux 0xe0dc4c76 dst_destroy +EXPORT_SYMBOL vmlinux 0xe0ee0fe6 __ip_mc_inc_group EXPORT_SYMBOL vmlinux 0xe113bbbc csum_partial EXPORT_SYMBOL vmlinux 0xe11ca997 ZSTD_getDictID_fromDict -EXPORT_SYMBOL vmlinux 0xe120e9f1 __kfree_skb -EXPORT_SYMBOL vmlinux 0xe12273b2 i2c_smbus_read_byte_data EXPORT_SYMBOL vmlinux 0xe123f3d9 dma_fence_release EXPORT_SYMBOL vmlinux 0xe12bda79 vme_dma_free_attribute -EXPORT_SYMBOL vmlinux 0xe133083e pnp_get_resource -EXPORT_SYMBOL vmlinux 0xe134dfed udplite_prot EXPORT_SYMBOL vmlinux 0xe138fb8c percpu_counter_add_batch EXPORT_SYMBOL vmlinux 0xe13cd8a7 dmi_name_in_vendors -EXPORT_SYMBOL vmlinux 0xe14cb175 register_netdevice_notifier_dev_net -EXPORT_SYMBOL vmlinux 0xe1668519 irq_domain_set_info -EXPORT_SYMBOL vmlinux 0xe16fda62 legacy_pic -EXPORT_SYMBOL vmlinux 0xe182072f scsi_bios_ptable -EXPORT_SYMBOL vmlinux 0xe1876604 get_tree_single -EXPORT_SYMBOL vmlinux 0xe18a6bba d_alloc_anon -EXPORT_SYMBOL vmlinux 0xe18ddf50 rtnl_unicast -EXPORT_SYMBOL vmlinux 0xe1a4f16a secure_ipv6_port_ephemeral -EXPORT_SYMBOL vmlinux 0xe1a6b511 pci_clear_master -EXPORT_SYMBOL vmlinux 0xe1b60306 skb_push +EXPORT_SYMBOL vmlinux 0xe16339a8 fb_get_mode +EXPORT_SYMBOL vmlinux 0xe188c9cf kernel_accept +EXPORT_SYMBOL vmlinux 0xe18a8fae skb_kill_datagram +EXPORT_SYMBOL vmlinux 0xe18f19ce skb_ensure_writable +EXPORT_SYMBOL vmlinux 0xe1a44c58 ip_frag_next +EXPORT_SYMBOL vmlinux 0xe1bbb9bd iov_iter_pipe EXPORT_SYMBOL vmlinux 0xe1bee700 __traceiter_read_msr -EXPORT_SYMBOL vmlinux 0xe1c78a9b get_tz_trend -EXPORT_SYMBOL vmlinux 0xe1d21214 filp_open -EXPORT_SYMBOL vmlinux 0xe1d6fcb3 xfrm_state_lookup_byaddr +EXPORT_SYMBOL vmlinux 0xe1c6d2ae redirty_page_for_writepage +EXPORT_SYMBOL vmlinux 0xe1d5c3de nf_ct_get_tuple_skb EXPORT_SYMBOL vmlinux 0xe1dcf64a audit_log_format -EXPORT_SYMBOL vmlinux 0xe1e07ca4 scsi_vpd_tpg_id +EXPORT_SYMBOL vmlinux 0xe1e5b1bc bio_advance +EXPORT_SYMBOL vmlinux 0xe1f70bac sk_capable +EXPORT_SYMBOL vmlinux 0xe20140ed dev_mc_add EXPORT_SYMBOL vmlinux 0xe21f18ac __genradix_iter_peek -EXPORT_SYMBOL vmlinux 0xe2391771 PDE_DATA -EXPORT_SYMBOL vmlinux 0xe26518c0 inode_get_bytes -EXPORT_SYMBOL vmlinux 0xe26d8721 input_inject_event +EXPORT_SYMBOL vmlinux 0xe2306101 ip_cmsg_recv_offset +EXPORT_SYMBOL vmlinux 0xe23f08ed genlmsg_multicast_allns +EXPORT_SYMBOL vmlinux 0xe2461691 tcp_stream_memory_free +EXPORT_SYMBOL vmlinux 0xe25c3f4a __blk_alloc_disk +EXPORT_SYMBOL vmlinux 0xe26cb315 mini_qdisc_pair_block_init EXPORT_SYMBOL vmlinux 0xe273d75d alloc_cpu_rmap -EXPORT_SYMBOL vmlinux 0xe280e4e6 agp_generic_remove_memory -EXPORT_SYMBOL vmlinux 0xe29921ae unregister_cdrom -EXPORT_SYMBOL vmlinux 0xe2af5193 devm_backlight_device_register +EXPORT_SYMBOL vmlinux 0xe284fbf2 amd_iommu_domain_clear_gcr3 +EXPORT_SYMBOL vmlinux 0xe29fee25 napi_disable +EXPORT_SYMBOL vmlinux 0xe2ad5cbb keyring_search +EXPORT_SYMBOL vmlinux 0xe2bd1335 netdev_info +EXPORT_SYMBOL vmlinux 0xe2bf38ac dev_queue_xmit +EXPORT_SYMBOL vmlinux 0xe2c6f6e9 pcie_port_service_register +EXPORT_SYMBOL vmlinux 0xe2c8755e nf_log_bind_pf +EXPORT_SYMBOL vmlinux 0xe2c98958 register_fib_notifier EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp EXPORT_SYMBOL vmlinux 0xe2e28fc0 __traceiter_write_msr -EXPORT_SYMBOL vmlinux 0xe2fbe744 netdev_has_upper_dev -EXPORT_SYMBOL vmlinux 0xe30575bb blk_mq_delay_run_hw_queues -EXPORT_SYMBOL vmlinux 0xe30df9d2 scsi_unblock_requests -EXPORT_SYMBOL vmlinux 0xe311cfb0 nf_log_packet +EXPORT_SYMBOL vmlinux 0xe2f8503c tcf_qevent_init +EXPORT_SYMBOL vmlinux 0xe312d02c xsk_tx_completed +EXPORT_SYMBOL vmlinux 0xe32a0d8c passthru_features_check EXPORT_SYMBOL vmlinux 0xe32ab4d8 xxh64_digest -EXPORT_SYMBOL vmlinux 0xe34a8f00 crypto_sha512_finup -EXPORT_SYMBOL vmlinux 0xe35a9daf devm_ioremap_resource -EXPORT_SYMBOL vmlinux 0xe3619636 tso_build_data -EXPORT_SYMBOL vmlinux 0xe3981531 backlight_device_set_brightness +EXPORT_SYMBOL vmlinux 0xe33ac98a __udp_disconnect +EXPORT_SYMBOL vmlinux 0xe3459560 nosteal_pipe_buf_ops +EXPORT_SYMBOL vmlinux 0xe34678bd cros_ec_prepare_tx +EXPORT_SYMBOL vmlinux 0xe34c8002 pci_get_subsys +EXPORT_SYMBOL vmlinux 0xe34cfbe1 phy_trigger_machine +EXPORT_SYMBOL vmlinux 0xe356a1e8 devm_extcon_unregister_notifier +EXPORT_SYMBOL vmlinux 0xe381a7db register_netdev EXPORT_SYMBOL vmlinux 0xe39b2ea5 sha256 -EXPORT_SYMBOL vmlinux 0xe3a6e3a2 kiocb_set_cancel_fn -EXPORT_SYMBOL vmlinux 0xe3bdf767 vfio_register_notifier -EXPORT_SYMBOL vmlinux 0xe3cb70ea put_cmsg_scm_timestamping +EXPORT_SYMBOL vmlinux 0xe3a21137 param_ops_byte +EXPORT_SYMBOL vmlinux 0xe3ac028d dev_driver_string +EXPORT_SYMBOL vmlinux 0xe3babec8 touchscreen_report_pos +EXPORT_SYMBOL vmlinux 0xe3bf44b4 tty_port_raise_dtr_rts +EXPORT_SYMBOL vmlinux 0xe3cffb7d wireless_spy_update EXPORT_SYMBOL vmlinux 0xe3d857ea __cpu_active_mask +EXPORT_SYMBOL vmlinux 0xe3dacfdc ___pskb_trim EXPORT_SYMBOL vmlinux 0xe3ec2f2b alloc_chrdev_region -EXPORT_SYMBOL vmlinux 0xe3fa91f3 __inode_sub_bytes EXPORT_SYMBOL vmlinux 0xe3feba56 tasklet_unlock_spin_wait EXPORT_SYMBOL vmlinux 0xe3ff2c41 get_random_u64 -EXPORT_SYMBOL vmlinux 0xe4026c31 writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0xe3ffd75b dev_get_phys_port_name EXPORT_SYMBOL vmlinux 0xe40976c0 pnp_range_reserved EXPORT_SYMBOL vmlinux 0xe40c37ea down_write_trylock EXPORT_SYMBOL vmlinux 0xe419bc99 iowrite32be -EXPORT_SYMBOL vmlinux 0xe41fdd02 phy_free_interrupt EXPORT_SYMBOL vmlinux 0xe4329092 __ctzdi2 -EXPORT_SYMBOL vmlinux 0xe432fd5d truncate_pagecache_range -EXPORT_SYMBOL vmlinux 0xe43ac569 gnet_stats_finish_copy -EXPORT_SYMBOL vmlinux 0xe4480569 sock_set_reuseaddr -EXPORT_SYMBOL vmlinux 0xe4496ed9 scsi_scan_host +EXPORT_SYMBOL vmlinux 0xe4424b29 mmput_async +EXPORT_SYMBOL vmlinux 0xe443302d dm_get_device +EXPORT_SYMBOL vmlinux 0xe4540e67 block_truncate_page EXPORT_SYMBOL vmlinux 0xe46021ca _raw_spin_unlock_bh -EXPORT_SYMBOL vmlinux 0xe48964c4 dev_set_mac_address -EXPORT_SYMBOL vmlinux 0xe4abe241 phy_ethtool_get_wol -EXPORT_SYMBOL vmlinux 0xe4b07539 pci_bus_claim_resources -EXPORT_SYMBOL vmlinux 0xe4b1c1b3 remove_watch_from_object +EXPORT_SYMBOL vmlinux 0xe47ccd73 jbd2_fc_release_bufs +EXPORT_SYMBOL vmlinux 0xe484d27a pci_scan_root_bus_bridge +EXPORT_SYMBOL vmlinux 0xe49ba09c nd_device_unregister +EXPORT_SYMBOL vmlinux 0xe49bb82b module_layout +EXPORT_SYMBOL vmlinux 0xe49e563a dev_get_by_name_rcu +EXPORT_SYMBOL vmlinux 0xe49fa4ba vga_remove_vgacon +EXPORT_SYMBOL vmlinux 0xe4a4c08f xfrm_state_add +EXPORT_SYMBOL vmlinux 0xe4b619ae __cgroup_bpf_run_filter_skb EXPORT_SYMBOL vmlinux 0xe4bc2c2f hdmi_drm_infoframe_pack -EXPORT_SYMBOL vmlinux 0xe4c95bb2 xsk_uses_need_wakeup +EXPORT_SYMBOL vmlinux 0xe4d745ee scsi_block_requests EXPORT_SYMBOL vmlinux 0xe4d80bf4 acpi_enable -EXPORT_SYMBOL vmlinux 0xe5041d61 tty_hangup +EXPORT_SYMBOL vmlinux 0xe4da5ef4 pci_add_new_bus +EXPORT_SYMBOL vmlinux 0xe4dcced4 pci_alloc_host_bridge +EXPORT_SYMBOL vmlinux 0xe4df0fe9 elv_bio_merge_ok +EXPORT_SYMBOL vmlinux 0xe4e79bc4 i2c_smbus_read_byte +EXPORT_SYMBOL vmlinux 0xe507bd2e mmc_cqe_request_done +EXPORT_SYMBOL vmlinux 0xe51220ad pagevec_lookup_range +EXPORT_SYMBOL vmlinux 0xe5136b41 vme_slot_num +EXPORT_SYMBOL vmlinux 0xe5173adf netdev_name_node_alt_destroy +EXPORT_SYMBOL vmlinux 0xe51af1e7 mdio_device_create +EXPORT_SYMBOL vmlinux 0xe5209f52 filemap_check_errors EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq -EXPORT_SYMBOL vmlinux 0xe528869c netlink_net_capable -EXPORT_SYMBOL vmlinux 0xe52a3e02 scsi_register_interface -EXPORT_SYMBOL vmlinux 0xe53c1f86 sock_no_bind -EXPORT_SYMBOL vmlinux 0xe556efdf param_set_charp -EXPORT_SYMBOL vmlinux 0xe565005e component_match_add_release -EXPORT_SYMBOL vmlinux 0xe5792944 generic_set_encrypted_ci_d_ops +EXPORT_SYMBOL vmlinux 0xe53ca67d fbcon_update_vcs +EXPORT_SYMBOL vmlinux 0xe56afb09 __dquot_free_space +EXPORT_SYMBOL vmlinux 0xe57b4ab8 super_setup_bdi_name EXPORT_SYMBOL vmlinux 0xe58090ca security_ib_endport_manage_subnet -EXPORT_SYMBOL vmlinux 0xe58185f6 flush_signals -EXPORT_SYMBOL vmlinux 0xe58c3ef9 devm_request_resource +EXPORT_SYMBOL vmlinux 0xe589e6f2 napi_gro_receive EXPORT_SYMBOL vmlinux 0xe590dea3 sk_busy_loop_end -EXPORT_SYMBOL vmlinux 0xe5a5c7a3 mdiobus_unregister +EXPORT_SYMBOL vmlinux 0xe5ac9a30 pci_write_config_dword EXPORT_SYMBOL vmlinux 0xe5bc9a53 slhc_free EXPORT_SYMBOL vmlinux 0xe5c60bd2 percpu_counter_set EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen +EXPORT_SYMBOL vmlinux 0xe5cbb8d8 max8998_write_reg +EXPORT_SYMBOL vmlinux 0xe5d37547 unregister_shrinker +EXPORT_SYMBOL vmlinux 0xe5dbcf7e lock_two_nondirectories +EXPORT_SYMBOL vmlinux 0xe6011447 dma_resv_fini EXPORT_SYMBOL vmlinux 0xe613a798 inet_addr_is_any -EXPORT_SYMBOL vmlinux 0xe61edddc init_pseudo -EXPORT_SYMBOL vmlinux 0xe62cf07c sdev_disable_disk_events -EXPORT_SYMBOL vmlinux 0xe6393f51 inet_shutdown -EXPORT_SYMBOL vmlinux 0xe644e00f bio_clone_fast -EXPORT_SYMBOL vmlinux 0xe64873a7 pcie_get_mps -EXPORT_SYMBOL vmlinux 0xe65aec77 pm860x_reg_write -EXPORT_SYMBOL vmlinux 0xe683ee21 eth_header_parse_protocol +EXPORT_SYMBOL vmlinux 0xe616c7e2 sock_no_sendmsg +EXPORT_SYMBOL vmlinux 0xe62c6429 __scsi_execute +EXPORT_SYMBOL vmlinux 0xe6333f0c genphy_read_lpa +EXPORT_SYMBOL vmlinux 0xe64198c9 i2c_get_adapter +EXPORT_SYMBOL vmlinux 0xe64623ef blk_queue_flag_clear +EXPORT_SYMBOL vmlinux 0xe6573ed6 simple_write_begin +EXPORT_SYMBOL vmlinux 0xe6584f62 flow_rule_match_enc_control +EXPORT_SYMBOL vmlinux 0xe6652b8c pps_event +EXPORT_SYMBOL vmlinux 0xe689b2a7 proc_set_user EXPORT_SYMBOL vmlinux 0xe68efe41 _raw_write_lock +EXPORT_SYMBOL vmlinux 0xe68f9e3f PageMovable +EXPORT_SYMBOL vmlinux 0xe6901f1e fs_context_for_mount EXPORT_SYMBOL vmlinux 0xe691ac7f ZSTD_decompressBegin -EXPORT_SYMBOL vmlinux 0xe6b2f681 nd_namespace_blk_validate +EXPORT_SYMBOL vmlinux 0xe69491ac vfs_iter_write +EXPORT_SYMBOL vmlinux 0xe6b6d869 __napi_alloc_skb +EXPORT_SYMBOL vmlinux 0xe6b95df3 buffer_migrate_page +EXPORT_SYMBOL vmlinux 0xe6ce847a key_task_permission EXPORT_SYMBOL vmlinux 0xe6d2458e do_trace_netlink_extack -EXPORT_SYMBOL vmlinux 0xe6deced1 inet_addr_type -EXPORT_SYMBOL vmlinux 0xe6f6002b __set_page_dirty_no_writeback +EXPORT_SYMBOL vmlinux 0xe6d3ac05 mdio_bus_type +EXPORT_SYMBOL vmlinux 0xe6d9355d mipi_dsi_shutdown_peripheral +EXPORT_SYMBOL vmlinux 0xe6ead66c is_acpi_data_node +EXPORT_SYMBOL vmlinux 0xe6edc564 pci_read_config_dword EXPORT_SYMBOL vmlinux 0xe6fa06a2 rename_lock +EXPORT_SYMBOL vmlinux 0xe702af3f skb_queue_head EXPORT_SYMBOL vmlinux 0xe70877d4 acpi_remove_sci_handler -EXPORT_SYMBOL vmlinux 0xe71025ce kmem_cache_alloc_trace +EXPORT_SYMBOL vmlinux 0xe70a2746 bio_reset EXPORT_SYMBOL vmlinux 0xe7257ab8 xa_store_range -EXPORT_SYMBOL vmlinux 0xe727828b blkdev_get_by_dev -EXPORT_SYMBOL vmlinux 0xe72a9a0a padata_set_cpumask -EXPORT_SYMBOL vmlinux 0xe72de1a4 ip_tunnel_header_ops EXPORT_SYMBOL vmlinux 0xe7324b9a utf8nfdicf -EXPORT_SYMBOL vmlinux 0xe743301c vga_client_register -EXPORT_SYMBOL vmlinux 0xe746ab1d blk_queue_virt_boundary -EXPORT_SYMBOL vmlinux 0xe74b9496 may_umount -EXPORT_SYMBOL vmlinux 0xe76f2256 __generic_file_write_iter -EXPORT_SYMBOL vmlinux 0xe784dd0f tcp_prot -EXPORT_SYMBOL vmlinux 0xe786069a tcp_stream_memory_free +EXPORT_SYMBOL vmlinux 0xe732a6c6 __inet_stream_connect +EXPORT_SYMBOL vmlinux 0xe7498f8f pm8606_osc_enable +EXPORT_SYMBOL vmlinux 0xe74d509e seq_vprintf +EXPORT_SYMBOL vmlinux 0xe750c741 phy_aneg_done +EXPORT_SYMBOL vmlinux 0xe7854823 md_integrity_add_rdev EXPORT_SYMBOL vmlinux 0xe787698f acpi_processor_register_performance -EXPORT_SYMBOL vmlinux 0xe78dbdc2 pnp_register_driver -EXPORT_SYMBOL vmlinux 0xe7978836 qdisc_offload_graft_helper EXPORT_SYMBOL vmlinux 0xe7a02573 ida_alloc_range -EXPORT_SYMBOL vmlinux 0xe7a96f18 __mmap_lock_do_trace_start_locking +EXPORT_SYMBOL vmlinux 0xe7a14453 dev_get_by_name +EXPORT_SYMBOL vmlinux 0xe7a4835d vfio_register_notifier EXPORT_SYMBOL vmlinux 0xe7ab1ecc _raw_write_unlock_bh -EXPORT_SYMBOL vmlinux 0xe7b13eaf genphy_read_abilities EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next -EXPORT_SYMBOL vmlinux 0xe803c1ac __cgroup_bpf_run_filter_sock_ops -EXPORT_SYMBOL vmlinux 0xe80af0b5 pci_dev_get -EXPORT_SYMBOL vmlinux 0xe8186814 seq_read -EXPORT_SYMBOL vmlinux 0xe828be0b dev_get_by_name -EXPORT_SYMBOL vmlinux 0xe82b9f05 simple_getattr +EXPORT_SYMBOL vmlinux 0xe7ff55d5 arch_debugfs_dir EXPORT_SYMBOL vmlinux 0xe8330a5a call_usermodehelper_exec -EXPORT_SYMBOL vmlinux 0xe838e9a3 dev_close -EXPORT_SYMBOL vmlinux 0xe854ab08 nvdimm_namespace_disk_name +EXPORT_SYMBOL vmlinux 0xe837ea21 bio_uninit +EXPORT_SYMBOL vmlinux 0xe858a190 mmc_can_gpio_cd EXPORT_SYMBOL vmlinux 0xe85f2123 acpi_tb_unload_table -EXPORT_SYMBOL vmlinux 0xe882c8ed devm_iounmap -EXPORT_SYMBOL vmlinux 0xe886212c agp_generic_alloc_pages -EXPORT_SYMBOL vmlinux 0xe88e94c1 file_modified -EXPORT_SYMBOL vmlinux 0xe88fc5b2 mmc_release_host -EXPORT_SYMBOL vmlinux 0xe890d4af tcf_action_set_ctrlact -EXPORT_SYMBOL vmlinux 0xe891d5d0 netif_receive_skb -EXPORT_SYMBOL vmlinux 0xe89b2eaa udp_lib_setsockopt -EXPORT_SYMBOL vmlinux 0xe8cb479c phy_ethtool_set_link_ksettings -EXPORT_SYMBOL vmlinux 0xe8e790dc ipv6_push_frag_opts +EXPORT_SYMBOL vmlinux 0xe8774639 inode_io_list_del +EXPORT_SYMBOL vmlinux 0xe8a64d00 dquot_get_dqblk +EXPORT_SYMBOL vmlinux 0xe8d74a80 register_shrinker +EXPORT_SYMBOL vmlinux 0xe8d7afe2 fs_context_for_submount +EXPORT_SYMBOL vmlinux 0xe8dea832 fifo_create_dflt +EXPORT_SYMBOL vmlinux 0xe8f30cc3 dquot_initialize_needed +EXPORT_SYMBOL vmlinux 0xe8f75eca devfreq_add_device EXPORT_SYMBOL vmlinux 0xe8fbf4fa __alloc_bucket_spinlocks -EXPORT_SYMBOL vmlinux 0xe9026cde dma_pool_create +EXPORT_SYMBOL vmlinux 0xe907e002 sk_page_frag_refill EXPORT_SYMBOL vmlinux 0xe909997a bitmap_print_list_to_buf EXPORT_SYMBOL vmlinux 0xe914e41e strcpy -EXPORT_SYMBOL vmlinux 0xe933c508 ilookup5 -EXPORT_SYMBOL vmlinux 0xe9340c16 kmem_cache_free -EXPORT_SYMBOL vmlinux 0xe9360f88 security_sb_set_mnt_opts -EXPORT_SYMBOL vmlinux 0xe9455a82 mdiobus_write_nested -EXPORT_SYMBOL vmlinux 0xe94cc9a3 tcf_chain_put_by_act +EXPORT_SYMBOL vmlinux 0xe9250e95 may_setattr +EXPORT_SYMBOL vmlinux 0xe932b603 configfs_register_group EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino -EXPORT_SYMBOL vmlinux 0xe95817ab ex_handler_copy -EXPORT_SYMBOL vmlinux 0xe970c9ff ip6_find_1stfragopt -EXPORT_SYMBOL vmlinux 0xe98b7b9f dma_sync_wait -EXPORT_SYMBOL vmlinux 0xe99f0bd6 done_path_create +EXPORT_SYMBOL vmlinux 0xe99bf2c0 tcp_sock_set_nodelay EXPORT_SYMBOL vmlinux 0xe9a5e67f intel_graphics_stolen_res -EXPORT_SYMBOL vmlinux 0xe9a92a0a simple_unlink EXPORT_SYMBOL vmlinux 0xe9aaf799 vm_event_states EXPORT_SYMBOL vmlinux 0xe9af7397 __xa_set_mark -EXPORT_SYMBOL vmlinux 0xe9d988c2 neigh_table_clear +EXPORT_SYMBOL vmlinux 0xe9bb5d28 phy_suspend EXPORT_SYMBOL vmlinux 0xe9e8faeb efi_tpm_final_log_size -EXPORT_SYMBOL vmlinux 0xe9f46fd3 genphy_handle_interrupt_no_ack EXPORT_SYMBOL vmlinux 0xe9f7149c zlib_deflate_workspacesize -EXPORT_SYMBOL vmlinux 0xe9fee8d4 pcie_relaxed_ordering_enabled +EXPORT_SYMBOL vmlinux 0xe9fbd5bd ipv6_dev_mc_dec EXPORT_SYMBOL vmlinux 0xe9ffc063 down_trylock -EXPORT_SYMBOL vmlinux 0xea06e46c nd_integrity_init -EXPORT_SYMBOL vmlinux 0xea22bbbc devm_mfd_add_devices +EXPORT_SYMBOL vmlinux 0xea15edc2 dev_uc_flush EXPORT_SYMBOL vmlinux 0xea3c8e4e scsilun_to_int -EXPORT_SYMBOL vmlinux 0xea4790d9 generic_splice_sendpage -EXPORT_SYMBOL vmlinux 0xea4ba1b3 param_get_ullong -EXPORT_SYMBOL vmlinux 0xea5d3335 pci_setup_cardbus +EXPORT_SYMBOL vmlinux 0xea493afd qdisc_hash_add EXPORT_SYMBOL vmlinux 0xea6f9a36 zlib_deflate_dfltcc_enabled EXPORT_SYMBOL vmlinux 0xea778fab sg_pcopy_to_buffer -EXPORT_SYMBOL vmlinux 0xea8a4353 acpi_match_device_ids -EXPORT_SYMBOL vmlinux 0xeaa30741 remove_conflicting_pci_framebuffers -EXPORT_SYMBOL vmlinux 0xeaafac27 import_single_range +EXPORT_SYMBOL vmlinux 0xea77d1d1 phy_validate_pause +EXPORT_SYMBOL vmlinux 0xea787ce7 dquot_set_dqinfo +EXPORT_SYMBOL vmlinux 0xea815388 tty_port_put +EXPORT_SYMBOL vmlinux 0xea8629df module_put +EXPORT_SYMBOL vmlinux 0xea90e571 lease_modify +EXPORT_SYMBOL vmlinux 0xeaa27071 to_ndd +EXPORT_SYMBOL vmlinux 0xeab2ef3d generic_ro_fops EXPORT_SYMBOL vmlinux 0xeab6f4c4 acpi_check_resource_conflict -EXPORT_SYMBOL vmlinux 0xeac6ef46 blk_rq_append_bio -EXPORT_SYMBOL vmlinux 0xead011ab dcache_dir_close -EXPORT_SYMBOL vmlinux 0xead621f6 dcb_ieee_getapp_prio_dscp_mask_map -EXPORT_SYMBOL vmlinux 0xeadc72f0 pcim_enable_device +EXPORT_SYMBOL vmlinux 0xead37bcc netdev_set_sb_channel +EXPORT_SYMBOL vmlinux 0xead3cacc seq_lseek +EXPORT_SYMBOL vmlinux 0xead7e9e6 sched_autogroup_create_attach EXPORT_SYMBOL vmlinux 0xeae3dfd6 __const_udelay +EXPORT_SYMBOL vmlinux 0xeaea7de0 security_inode_listsecurity +EXPORT_SYMBOL vmlinux 0xeaee15ce clk_hw_get_clk EXPORT_SYMBOL vmlinux 0xeafc141f __posix_acl_chmod -EXPORT_SYMBOL vmlinux 0xeb0186b4 sock_set_keepalive -EXPORT_SYMBOL vmlinux 0xeb028e4d pps_unregister_source EXPORT_SYMBOL vmlinux 0xeb078aee _raw_write_unlock_irqrestore -EXPORT_SYMBOL vmlinux 0xeb1e9f62 icmpv6_ndo_send +EXPORT_SYMBOL vmlinux 0xeb0ee476 no_seek_end_llseek_size +EXPORT_SYMBOL vmlinux 0xeb20df9f __breadahead EXPORT_SYMBOL vmlinux 0xeb233a45 __kmalloc EXPORT_SYMBOL vmlinux 0xeb2391c9 gen_new_estimator -EXPORT_SYMBOL vmlinux 0xeb311293 __ip_select_ident EXPORT_SYMBOL vmlinux 0xeb31aee8 acpi_trace_point -EXPORT_SYMBOL vmlinux 0xeb3359d1 __ethtool_get_link_ksettings EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end +EXPORT_SYMBOL vmlinux 0xeb43e7f9 jbd2_journal_put_journal_head EXPORT_SYMBOL vmlinux 0xeb44339a free_pages_exact -EXPORT_SYMBOL vmlinux 0xeb59a651 pipe_lock -EXPORT_SYMBOL vmlinux 0xeb684dbf nobh_writepage -EXPORT_SYMBOL vmlinux 0xeb6bd2ca pskb_expand_head -EXPORT_SYMBOL vmlinux 0xeb7f59d6 get_task_cred +EXPORT_SYMBOL vmlinux 0xeb4ce044 param_set_copystring +EXPORT_SYMBOL vmlinux 0xeb4d3478 __netif_schedule +EXPORT_SYMBOL vmlinux 0xeb542c7b acpi_match_device_ids +EXPORT_SYMBOL vmlinux 0xeb5b0168 mpage_writepage +EXPORT_SYMBOL vmlinux 0xeb6830de sdev_prefix_printk +EXPORT_SYMBOL vmlinux 0xeb76dd08 sock_set_mark +EXPORT_SYMBOL vmlinux 0xeb7e67cd netlink_set_err EXPORT_SYMBOL vmlinux 0xeb7f6046 acpi_get_devices EXPORT_SYMBOL vmlinux 0xeb9e913d sgl_alloc_order EXPORT_SYMBOL vmlinux 0xeb9eef52 match_uint -EXPORT_SYMBOL vmlinux 0xeba462f2 flow_rule_match_enc_ports -EXPORT_SYMBOL vmlinux 0xeba63525 scsi_free_host_dev -EXPORT_SYMBOL vmlinux 0xebce4265 bprm_change_interp -EXPORT_SYMBOL vmlinux 0xebe36464 nd_pfn_probe -EXPORT_SYMBOL vmlinux 0xebe78269 input_enable_softrepeat -EXPORT_SYMBOL vmlinux 0xebee96b4 dev_addr_del -EXPORT_SYMBOL vmlinux 0xebfaa472 block_read_full_page -EXPORT_SYMBOL vmlinux 0xec1e6fc2 twl6040_set_pll -EXPORT_SYMBOL vmlinux 0xec2838f8 pcim_iounmap +EXPORT_SYMBOL vmlinux 0xebac8fcb sock_alloc_send_skb +EXPORT_SYMBOL vmlinux 0xebaf4534 is_nd_pfn +EXPORT_SYMBOL vmlinux 0xebede064 dquot_get_state +EXPORT_SYMBOL vmlinux 0xec0dd4df find_get_pages_range_tag +EXPORT_SYMBOL vmlinux 0xec1cc8d0 inet_stream_ops EXPORT_SYMBOL vmlinux 0xec2b8a42 acpi_walk_namespace EXPORT_SYMBOL vmlinux 0xec2e1c8f proc_doulongvec_minmax -EXPORT_SYMBOL vmlinux 0xec3c562a bh_submit_read -EXPORT_SYMBOL vmlinux 0xec444834 security_binder_transfer_file -EXPORT_SYMBOL vmlinux 0xec446305 mdio_device_register +EXPORT_SYMBOL vmlinux 0xec475f0e get_tree_bdev +EXPORT_SYMBOL vmlinux 0xec4a9bc4 security_sb_clone_mnt_opts EXPORT_SYMBOL vmlinux 0xec4d9e3a clk_get_sys -EXPORT_SYMBOL vmlinux 0xec58b579 phy_get_c45_ids -EXPORT_SYMBOL vmlinux 0xec7efc1d vfs_parse_fs_string -EXPORT_SYMBOL vmlinux 0xeca2777d __scm_send +EXPORT_SYMBOL vmlinux 0xec61e0ff phy_device_remove +EXPORT_SYMBOL vmlinux 0xec6966be dev_set_group +EXPORT_SYMBOL vmlinux 0xec73ad26 __i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0xec7b338b cdrom_mode_sense +EXPORT_SYMBOL vmlinux 0xec7bf96e dev_uc_sync_multiple +EXPORT_SYMBOL vmlinux 0xec822ccc give_up_console +EXPORT_SYMBOL vmlinux 0xec9e917f kmem_cache_free_bulk +EXPORT_SYMBOL vmlinux 0xecabef2f inet6_register_protosw EXPORT_SYMBOL vmlinux 0xecac8407 __memcpy -EXPORT_SYMBOL vmlinux 0xecb17191 inet6_add_protocol -EXPORT_SYMBOL vmlinux 0xecc3d136 eth_get_headlen -EXPORT_SYMBOL vmlinux 0xecd8b3e3 from_kuid_munged EXPORT_SYMBOL vmlinux 0xecdcabd2 copy_user_generic_unrolled -EXPORT_SYMBOL vmlinux 0xece658fd jbd2_journal_dirty_metadata EXPORT_SYMBOL vmlinux 0xece784c2 rb_first -EXPORT_SYMBOL vmlinux 0xece7d2a1 scsi_eh_finish_cmd -EXPORT_SYMBOL vmlinux 0xecf242f9 security_inode_init_security +EXPORT_SYMBOL vmlinux 0xecfba84d pci_release_regions EXPORT_SYMBOL vmlinux 0xecfd68ef acpi_get_node EXPORT_SYMBOL vmlinux 0xed00c4fb acpi_os_printf -EXPORT_SYMBOL vmlinux 0xed087357 seq_bprintf -EXPORT_SYMBOL vmlinux 0xed0f9e3c tcp_sync_mss -EXPORT_SYMBOL vmlinux 0xed122c5e skb_queue_purge +EXPORT_SYMBOL vmlinux 0xed111086 dev_vprintk_emit +EXPORT_SYMBOL vmlinux 0xed1798ab wait_on_page_private_2 EXPORT_SYMBOL vmlinux 0xed238617 __put_cred -EXPORT_SYMBOL vmlinux 0xed2511c2 devm_extcon_unregister_notifier_all -EXPORT_SYMBOL vmlinux 0xed27cda7 copy_string_kernel -EXPORT_SYMBOL vmlinux 0xed2a794d generic_file_read_iter -EXPORT_SYMBOL vmlinux 0xed3489a4 generic_fadvise EXPORT_SYMBOL vmlinux 0xed34ebbc acpi_any_gpe_status_set -EXPORT_SYMBOL vmlinux 0xed36341c md_bitmap_endwrite -EXPORT_SYMBOL vmlinux 0xed3a5312 _dev_warn -EXPORT_SYMBOL vmlinux 0xed533686 mipi_dsi_dcs_get_pixel_format +EXPORT_SYMBOL vmlinux 0xed405855 page_pool_return_skb_page +EXPORT_SYMBOL vmlinux 0xed53043b thermal_cdev_update EXPORT_SYMBOL vmlinux 0xed5376c5 __printk_wait_on_cpu_lock EXPORT_SYMBOL vmlinux 0xed55f929 acpi_os_unmap_generic_address +EXPORT_SYMBOL vmlinux 0xed5fbf67 udp_push_pending_frames EXPORT_SYMBOL vmlinux 0xed656e30 udp_encap_disable -EXPORT_SYMBOL vmlinux 0xed6c2c97 __phy_write_mmd -EXPORT_SYMBOL vmlinux 0xed8c7fb1 fb_set_cmap -EXPORT_SYMBOL vmlinux 0xed90990d udp_push_pending_frames +EXPORT_SYMBOL vmlinux 0xed658577 netlbl_calipso_ops_register +EXPORT_SYMBOL vmlinux 0xed6dbf10 fb_set_suspend +EXPORT_SYMBOL vmlinux 0xed8084f4 nd_namespace_blk_validate +EXPORT_SYMBOL vmlinux 0xed91dd22 sock_setsockopt +EXPORT_SYMBOL vmlinux 0xed965d49 devm_kvasprintf +EXPORT_SYMBOL vmlinux 0xeda924d5 simple_lookup +EXPORT_SYMBOL vmlinux 0xedae1a76 generic_block_bmap +EXPORT_SYMBOL vmlinux 0xedafc413 __devm_release_region +EXPORT_SYMBOL vmlinux 0xedb5ac4c vfs_unlink +EXPORT_SYMBOL vmlinux 0xedb8986e scsi_host_busy EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp EXPORT_SYMBOL vmlinux 0xedc03953 iounmap -EXPORT_SYMBOL vmlinux 0xedd49f1b phy_set_max_speed -EXPORT_SYMBOL vmlinux 0xedd7ddf3 bioset_init_from_src -EXPORT_SYMBOL vmlinux 0xeddc599a inet_confirm_addr -EXPORT_SYMBOL vmlinux 0xede97189 __filemap_set_wb_err -EXPORT_SYMBOL vmlinux 0xee0916d9 pci_find_resource -EXPORT_SYMBOL vmlinux 0xee23205f vga_get +EXPORT_SYMBOL vmlinux 0xedda602b xp_raw_get_data +EXPORT_SYMBOL vmlinux 0xede3c984 tcp_gro_complete +EXPORT_SYMBOL vmlinux 0xee15827c param_ops_hexint +EXPORT_SYMBOL vmlinux 0xee18d2d0 sock_no_linger +EXPORT_SYMBOL vmlinux 0xee1c8586 vme_lm_request EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable -EXPORT_SYMBOL vmlinux 0xee4aa0a3 xfrm_replay_seqhi -EXPORT_SYMBOL vmlinux 0xee4b7e7d migrate_vma_finalize -EXPORT_SYMBOL vmlinux 0xee514326 netdev_refcnt_read -EXPORT_SYMBOL vmlinux 0xee54c832 make_kuid +EXPORT_SYMBOL vmlinux 0xee36c9c2 readahead_expand EXPORT_SYMBOL vmlinux 0xee58e970 fb_add_videomode -EXPORT_SYMBOL vmlinux 0xee6d67de __block_write_begin +EXPORT_SYMBOL vmlinux 0xee6726c8 generic_file_splice_read +EXPORT_SYMBOL vmlinux 0xee7d33c3 fwnode_mdiobus_phy_device_register EXPORT_SYMBOL vmlinux 0xee7d7deb gen_pool_dma_zalloc EXPORT_SYMBOL vmlinux 0xee7eb9e1 pnp_platform_devices +EXPORT_SYMBOL vmlinux 0xee8624ff ptp_find_pin +EXPORT_SYMBOL vmlinux 0xee87be97 io_uring_get_socket EXPORT_SYMBOL vmlinux 0xee8c02e9 vprintk_emit EXPORT_SYMBOL vmlinux 0xee8d74d6 jiffies64_to_nsecs EXPORT_SYMBOL vmlinux 0xee91879b rb_first_postorder +EXPORT_SYMBOL vmlinux 0xee9d6eeb lookup_positive_unlocked +EXPORT_SYMBOL vmlinux 0xeea6696c xfrm_trans_queue_net +EXPORT_SYMBOL vmlinux 0xeea99bc4 genphy_resume EXPORT_SYMBOL vmlinux 0xeea9dbaf bitmap_bitremap -EXPORT_SYMBOL vmlinux 0xeeaa768f napi_build_skb EXPORT_SYMBOL vmlinux 0xeeb35212 get_tsc_ns_now -EXPORT_SYMBOL vmlinux 0xeec52e92 sock_no_shutdown -EXPORT_SYMBOL vmlinux 0xeec752c6 dev_change_proto_down -EXPORT_SYMBOL vmlinux 0xeecac237 genphy_config_eee_advert -EXPORT_SYMBOL vmlinux 0xeecbbdc4 f_setown -EXPORT_SYMBOL vmlinux 0xeeeb8748 agp_generic_create_gatt_table -EXPORT_SYMBOL vmlinux 0xef16da88 __ip_mc_inc_group -EXPORT_SYMBOL vmlinux 0xef19f591 udp_pre_connect +EXPORT_SYMBOL vmlinux 0xeebdae2d register_nexthop_notifier +EXPORT_SYMBOL vmlinux 0xeebf7f16 truncate_inode_pages_final +EXPORT_SYMBOL vmlinux 0xeec36aae mdio_device_register +EXPORT_SYMBOL vmlinux 0xeec6cf35 param_set_int +EXPORT_SYMBOL vmlinux 0xeece58e4 submit_bh +EXPORT_SYMBOL vmlinux 0xeed13ab0 tty_name +EXPORT_SYMBOL vmlinux 0xeed77c20 phy_request_interrupt +EXPORT_SYMBOL vmlinux 0xeeed9d9a sock_cmsg_send +EXPORT_SYMBOL vmlinux 0xeef30a28 page_pool_alloc_pages +EXPORT_SYMBOL vmlinux 0xeef94460 __brelse EXPORT_SYMBOL vmlinux 0xef209413 textsearch_register -EXPORT_SYMBOL vmlinux 0xef2e61db sk_send_sigurg -EXPORT_SYMBOL vmlinux 0xef76652a __netlink_kernel_create -EXPORT_SYMBOL vmlinux 0xef7e7527 is_nd_dax -EXPORT_SYMBOL vmlinux 0xef830b7b __scsi_add_device -EXPORT_SYMBOL vmlinux 0xef8b90f9 pci_enable_atomic_ops_to_root -EXPORT_SYMBOL vmlinux 0xef932021 ip_mc_join_group +EXPORT_SYMBOL vmlinux 0xef24aa6a tty_devnum +EXPORT_SYMBOL vmlinux 0xef321035 try_to_release_page +EXPORT_SYMBOL vmlinux 0xef50dda0 ps2_sliced_command +EXPORT_SYMBOL vmlinux 0xef5c05aa generic_error_remove_page +EXPORT_SYMBOL vmlinux 0xef715f00 udp_ioctl +EXPORT_SYMBOL vmlinux 0xef7b3987 tc_setup_cb_destroy +EXPORT_SYMBOL vmlinux 0xef7da339 request_key_rcu +EXPORT_SYMBOL vmlinux 0xef829ded tcp_v4_destroy_sock +EXPORT_SYMBOL vmlinux 0xef8ec75c icmpv6_ndo_send EXPORT_SYMBOL vmlinux 0xef9aedfc boot_option_idle_override -EXPORT_SYMBOL vmlinux 0xefa31427 __quota_error -EXPORT_SYMBOL vmlinux 0xefa61c77 tcp_splice_read -EXPORT_SYMBOL vmlinux 0xefa80af4 pci_disable_device +EXPORT_SYMBOL vmlinux 0xefa0b621 udp_lib_unhash +EXPORT_SYMBOL vmlinux 0xefa0f26c fscrypt_encrypt_pagecache_blocks +EXPORT_SYMBOL vmlinux 0xefaebbd3 mmc_gpio_set_cd_wake EXPORT_SYMBOL vmlinux 0xefaf2e4f tcf_queue_work -EXPORT_SYMBOL vmlinux 0xefb20a31 rproc_coredump_using_sections +EXPORT_SYMBOL vmlinux 0xefb4a41b dma_resv_copy_fences EXPORT_SYMBOL vmlinux 0xefb80ad6 config_item_get_unless_zero -EXPORT_SYMBOL vmlinux 0xefc48920 dma_unmap_resource -EXPORT_SYMBOL vmlinux 0xefccd369 neigh_sysctl_register EXPORT_SYMBOL vmlinux 0xefcea2e7 acpi_warning -EXPORT_SYMBOL vmlinux 0xefd44e3b sk_stream_wait_memory EXPORT_SYMBOL vmlinux 0xefee932c acpi_get_data_full -EXPORT_SYMBOL vmlinux 0xf00047ab locks_delete_block +EXPORT_SYMBOL vmlinux 0xeff580ff xsk_get_pool_from_qid EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list -EXPORT_SYMBOL vmlinux 0xf004a451 scsi_change_queue_depth -EXPORT_SYMBOL vmlinux 0xf0074e16 neigh_event_ns +EXPORT_SYMBOL vmlinux 0xf0025020 thaw_bdev EXPORT_SYMBOL vmlinux 0xf008a885 seg6_hmac_init -EXPORT_SYMBOL vmlinux 0xf00c80c0 pcie_get_readrq +EXPORT_SYMBOL vmlinux 0xf01da266 kernel_sendpage_locked +EXPORT_SYMBOL vmlinux 0xf02007c4 mmc_wait_for_cmd EXPORT_SYMBOL vmlinux 0xf02aa937 wait_for_completion_interruptible_timeout -EXPORT_SYMBOL vmlinux 0xf040139f ip_frag_next -EXPORT_SYMBOL vmlinux 0xf0497ea0 rt_mutex_base_init -EXPORT_SYMBOL vmlinux 0xf05b3d55 jbd2_journal_get_create_access +EXPORT_SYMBOL vmlinux 0xf0473511 generic_shutdown_super +EXPORT_SYMBOL vmlinux 0xf052340c skb_clone_sk EXPORT_SYMBOL vmlinux 0xf05c32ad rdmsr_on_cpus -EXPORT_SYMBOL vmlinux 0xf083099c put_cmsg -EXPORT_SYMBOL vmlinux 0xf0894698 input_set_capability -EXPORT_SYMBOL vmlinux 0xf098802d adjust_managed_page_count +EXPORT_SYMBOL vmlinux 0xf05ef07d netdev_unbind_sb_channel +EXPORT_SYMBOL vmlinux 0xf079e17d scsi_eh_prep_cmnd +EXPORT_SYMBOL vmlinux 0xf07e6e73 generic_read_dir +EXPORT_SYMBOL vmlinux 0xf07f56f3 flow_rule_match_ct EXPORT_SYMBOL vmlinux 0xf09b5d9a get_zeroed_page +EXPORT_SYMBOL vmlinux 0xf0a34093 __vfs_removexattr EXPORT_SYMBOL vmlinux 0xf0a71b1b revert_creds -EXPORT_SYMBOL vmlinux 0xf0a86188 blk_set_queue_depth -EXPORT_SYMBOL vmlinux 0xf0c6974c pcim_pin_device -EXPORT_SYMBOL vmlinux 0xf0dcdfbe scsi_command_normalize_sense -EXPORT_SYMBOL vmlinux 0xf0f187cb kthread_create_worker +EXPORT_SYMBOL vmlinux 0xf0aca8ff truncate_pagecache_range +EXPORT_SYMBOL vmlinux 0xf0acbc12 neigh_direct_output +EXPORT_SYMBOL vmlinux 0xf0fa0b70 d_instantiate_new EXPORT_SYMBOL vmlinux 0xf102033e slhc_remember -EXPORT_SYMBOL vmlinux 0xf1020a19 sock_register -EXPORT_SYMBOL vmlinux 0xf10859cd mipi_dsi_dcs_set_tear_on +EXPORT_SYMBOL vmlinux 0xf10c60c8 cpufreq_generic_suspend EXPORT_SYMBOL vmlinux 0xf11dd46e _page_poisoning_enabled_early -EXPORT_SYMBOL vmlinux 0xf12c0eb4 mark_buffer_async_write -EXPORT_SYMBOL vmlinux 0xf139a95b i2c_smbus_read_word_data -EXPORT_SYMBOL vmlinux 0xf1440a3b __skb_checksum -EXPORT_SYMBOL vmlinux 0xf14d7d4d devfreq_register_opp_notifier -EXPORT_SYMBOL vmlinux 0xf14eda5e mr_mfc_seq_next -EXPORT_SYMBOL vmlinux 0xf1781e52 genphy_write_mmd_unsupported -EXPORT_SYMBOL vmlinux 0xf18174db udp_seq_start +EXPORT_SYMBOL vmlinux 0xf14207c5 jbd2_journal_try_to_free_buffers +EXPORT_SYMBOL vmlinux 0xf14dc6b0 tcp_sock_set_quickack +EXPORT_SYMBOL vmlinux 0xf14dd64b free_inode_nonrcu +EXPORT_SYMBOL vmlinux 0xf14e5bec netdev_rx_csum_fault +EXPORT_SYMBOL vmlinux 0xf154c599 bh_submit_read +EXPORT_SYMBOL vmlinux 0xf15dbdb3 __inet6_lookup_established +EXPORT_SYMBOL vmlinux 0xf15e4696 __neigh_set_probe_once +EXPORT_SYMBOL vmlinux 0xf15eca92 mr_rtm_dumproute +EXPORT_SYMBOL vmlinux 0xf182bfeb mipi_dsi_attach EXPORT_SYMBOL vmlinux 0xf1848ee2 acpi_install_sci_handler -EXPORT_SYMBOL vmlinux 0xf1867ddb nvdimm_bus_unlock -EXPORT_SYMBOL vmlinux 0xf18cee78 iget_locked -EXPORT_SYMBOL vmlinux 0xf18e7337 __scsi_device_lookup +EXPORT_SYMBOL vmlinux 0xf18bc94f thread_group_exited EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps EXPORT_SYMBOL vmlinux 0xf1969a8e __usecs_to_jiffies EXPORT_SYMBOL vmlinux 0xf1a68107 acpi_processor_preregister_performance -EXPORT_SYMBOL vmlinux 0xf1c5910a ptp_clock_unregister -EXPORT_SYMBOL vmlinux 0xf1c9b6a5 cros_ec_query_all -EXPORT_SYMBOL vmlinux 0xf1c9bba1 bdi_alloc -EXPORT_SYMBOL vmlinux 0xf1ca686a mr_mfc_find_any_parent -EXPORT_SYMBOL vmlinux 0xf1d062af unregister_key_type -EXPORT_SYMBOL vmlinux 0xf1d57a73 dev_mc_sync +EXPORT_SYMBOL vmlinux 0xf1be17ee netif_set_real_num_queues +EXPORT_SYMBOL vmlinux 0xf1d3431e param_ops_bint +EXPORT_SYMBOL vmlinux 0xf1d78026 sg_alloc_table_from_pages_segment EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy +EXPORT_SYMBOL vmlinux 0xf1dd301f max8925_reg_write EXPORT_SYMBOL vmlinux 0xf1e046cc panic -EXPORT_SYMBOL vmlinux 0xf1e45adb set_pages_array_wc +EXPORT_SYMBOL vmlinux 0xf1e8862b xfrm_unregister_type_offload EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun -EXPORT_SYMBOL vmlinux 0xf1f1963e dma_unmap_page_attrs -EXPORT_SYMBOL vmlinux 0xf1fb3145 dev_printk_emit -EXPORT_SYMBOL vmlinux 0xf1fcb2c0 pci_iomap -EXPORT_SYMBOL vmlinux 0xf217676b scsi_mode_sense -EXPORT_SYMBOL vmlinux 0xf227c6eb dev_alloc_name +EXPORT_SYMBOL vmlinux 0xf1f8f13a xfrm_unregister_km +EXPORT_SYMBOL vmlinux 0xf220b0f1 netlink_capable +EXPORT_SYMBOL vmlinux 0xf22ccd44 phy_device_create +EXPORT_SYMBOL vmlinux 0xf22eae78 fs_param_is_s32 EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in -EXPORT_SYMBOL vmlinux 0xf248dd2a dquot_mark_dquot_dirty -EXPORT_SYMBOL vmlinux 0xf26676f0 blk_set_runtime_active -EXPORT_SYMBOL vmlinux 0xf270c7d9 serio_bus -EXPORT_SYMBOL vmlinux 0xf271ebca phy_ethtool_get_eee -EXPORT_SYMBOL vmlinux 0xf27b1c1b jbd2_journal_start -EXPORT_SYMBOL vmlinux 0xf2804052 tty_insert_flip_string_fixed_flag +EXPORT_SYMBOL vmlinux 0xf2430bd4 napi_complete_done EXPORT_SYMBOL vmlinux 0xf28404cf devlink_dpipe_header_ipv6 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 0xf29f8515 __kfifo_dma_out_prepare_r -EXPORT_SYMBOL vmlinux 0xf2afb02a dquot_quota_on EXPORT_SYMBOL vmlinux 0xf2b81b64 arch_io_reserve_memtype_wc +EXPORT_SYMBOL vmlinux 0xf2c300e0 netdev_has_upper_dev EXPORT_SYMBOL vmlinux 0xf2c43f3f zlib_deflate EXPORT_SYMBOL vmlinux 0xf2e5bd87 security_free_mnt_opts -EXPORT_SYMBOL vmlinux 0xf2e723fc __mdiobus_register -EXPORT_SYMBOL vmlinux 0xf2e73990 locks_init_lock +EXPORT_SYMBOL vmlinux 0xf2e6c4b0 netdev_name_node_alt_create EXPORT_SYMBOL vmlinux 0xf2f53617 memregion_free -EXPORT_SYMBOL vmlinux 0xf2f7e7ce pskb_trim_rcsum_slow -EXPORT_SYMBOL vmlinux 0xf2f8ebb5 scsi_print_sense +EXPORT_SYMBOL vmlinux 0xf3067596 bioset_exit +EXPORT_SYMBOL vmlinux 0xf308aaff mipi_dsi_dcs_set_tear_off EXPORT_SYMBOL vmlinux 0xf30965ac iosf_mbi_register_pmic_bus_access_notifier -EXPORT_SYMBOL vmlinux 0xf30b4321 bio_endio EXPORT_SYMBOL vmlinux 0xf3107926 sha224_update -EXPORT_SYMBOL vmlinux 0xf31269d3 __ip_queue_xmit -EXPORT_SYMBOL vmlinux 0xf3422378 pcim_iomap_table +EXPORT_SYMBOL vmlinux 0xf32a7e57 init_task +EXPORT_SYMBOL vmlinux 0xf334986e configfs_depend_item EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head +EXPORT_SYMBOL vmlinux 0xf34bc112 unregister_quota_format EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier -EXPORT_SYMBOL vmlinux 0xf363de72 pci_dev_put -EXPORT_SYMBOL vmlinux 0xf371548b cros_ec_prepare_tx +EXPORT_SYMBOL vmlinux 0xf35662be register_mii_timestamper +EXPORT_SYMBOL vmlinux 0xf3654110 make_bad_inode +EXPORT_SYMBOL vmlinux 0xf3654738 vfs_fsync +EXPORT_SYMBOL vmlinux 0xf36ae572 amd_iommu_domain_enable_v2 +EXPORT_SYMBOL vmlinux 0xf36b7233 from_kuid_munged EXPORT_SYMBOL vmlinux 0xf3916987 global_cursor_default -EXPORT_SYMBOL vmlinux 0xf39e8b18 __blkdev_issue_zeroout -EXPORT_SYMBOL vmlinux 0xf39f24d1 ppp_unit_number +EXPORT_SYMBOL vmlinux 0xf397d4c0 kmem_cache_alloc_node_trace +EXPORT_SYMBOL vmlinux 0xf39c8a15 fb_validate_mode +EXPORT_SYMBOL vmlinux 0xf39fd845 ip_output EXPORT_SYMBOL vmlinux 0xf3a57892 release_dentry_name_snapshot EXPORT_SYMBOL vmlinux 0xf3b30a06 utf8version_latest -EXPORT_SYMBOL vmlinux 0xf3c121ae neigh_resolve_output -EXPORT_SYMBOL vmlinux 0xf3cf53de pcim_iomap -EXPORT_SYMBOL vmlinux 0xf3d0b9e4 scsi_vpd_lun_id -EXPORT_SYMBOL vmlinux 0xf3d3d61a simple_recursive_removal -EXPORT_SYMBOL vmlinux 0xf3dc491a mmc_start_request +EXPORT_SYMBOL vmlinux 0xf3bacbd6 pci_map_biosrom +EXPORT_SYMBOL vmlinux 0xf3cfe9ac vfio_pin_pages +EXPORT_SYMBOL vmlinux 0xf3d9bbdd legacy_pic EXPORT_SYMBOL vmlinux 0xf3e0e1df allocate_resource EXPORT_SYMBOL vmlinux 0xf3e6402e __bitmap_equal -EXPORT_SYMBOL vmlinux 0xf3ecb3c3 proc_set_size -EXPORT_SYMBOL vmlinux 0xf3f23414 scsi_report_device_reset +EXPORT_SYMBOL vmlinux 0xf3e850d8 devm_register_reboot_notifier +EXPORT_SYMBOL vmlinux 0xf3fb45a1 pm860x_page_bulk_read EXPORT_SYMBOL vmlinux 0xf3fc8a70 ns_capable_noaudit -EXPORT_SYMBOL vmlinux 0xf412784e serio_unregister_driver -EXPORT_SYMBOL vmlinux 0xf4158bd0 ip6_fraglist_prepare -EXPORT_SYMBOL vmlinux 0xf42fe1ec eth_header_parse -EXPORT_SYMBOL vmlinux 0xf434c569 neigh_seq_stop +EXPORT_SYMBOL vmlinux 0xf405150a flow_indr_dev_setup_offload +EXPORT_SYMBOL vmlinux 0xf406435f nd_pfn_validate EXPORT_SYMBOL vmlinux 0xf43d2caa acpi_remove_interface -EXPORT_SYMBOL vmlinux 0xf444dec7 blk_queue_segment_boundary EXPORT_SYMBOL vmlinux 0xf44a904a net_ns_barrier -EXPORT_SYMBOL vmlinux 0xf44de752 alloc_buffer_head -EXPORT_SYMBOL vmlinux 0xf451451b pcim_iounmap_regions -EXPORT_SYMBOL vmlinux 0xf46097a2 dquot_quota_off -EXPORT_SYMBOL vmlinux 0xf46c9413 icmp6_send -EXPORT_SYMBOL vmlinux 0xf472b52e freezing_slow_path -EXPORT_SYMBOL vmlinux 0xf4735ef8 __sk_mem_schedule +EXPORT_SYMBOL vmlinux 0xf44b7cd5 remove_watch_from_object +EXPORT_SYMBOL vmlinux 0xf460d301 file_write_and_wait_range +EXPORT_SYMBOL vmlinux 0xf46c05e5 pci_fixup_device +EXPORT_SYMBOL vmlinux 0xf473387a watchdog_unregister_governor EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const -EXPORT_SYMBOL vmlinux 0xf48b1b4d watchdog_register_governor +EXPORT_SYMBOL vmlinux 0xf47507c3 security_old_inode_init_security EXPORT_SYMBOL vmlinux 0xf4a565fd wrmsr_on_cpus -EXPORT_SYMBOL vmlinux 0xf4a8f53d xfrm4_rcv_encap +EXPORT_SYMBOL vmlinux 0xf4a6e4b9 padata_set_cpumask EXPORT_SYMBOL vmlinux 0xf4b754fd acpi_resources_are_enforced +EXPORT_SYMBOL vmlinux 0xf4bdb271 backlight_device_set_brightness EXPORT_SYMBOL vmlinux 0xf4bdbeb9 __frontswap_invalidate_area -EXPORT_SYMBOL vmlinux 0xf4c2c039 blk_rq_unmap_user -EXPORT_SYMBOL vmlinux 0xf4d2ae0e tcp_ld_RTO_revert EXPORT_SYMBOL vmlinux 0xf4db35bc stpcpy -EXPORT_SYMBOL vmlinux 0xf4e07d50 scsi_device_lookup -EXPORT_SYMBOL vmlinux 0xf4eea953 mipi_dsi_dcs_write_buffer +EXPORT_SYMBOL vmlinux 0xf4ea8e38 mipi_dsi_host_unregister +EXPORT_SYMBOL vmlinux 0xf4ef6816 tty_port_close EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock -EXPORT_SYMBOL vmlinux 0xf4f94fd0 tcp_sock_set_user_timeout -EXPORT_SYMBOL vmlinux 0xf515d296 ptp_clock_event -EXPORT_SYMBOL vmlinux 0xf51725a8 pci_wake_from_d3 -EXPORT_SYMBOL vmlinux 0xf51e096a may_umount_tree -EXPORT_SYMBOL vmlinux 0xf51f159a _dev_emerg -EXPORT_SYMBOL vmlinux 0xf539b2b9 dquot_transfer +EXPORT_SYMBOL vmlinux 0xf51068dc file_check_and_advance_wb_err EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy -EXPORT_SYMBOL vmlinux 0xf54416be devfreq_register_notifier -EXPORT_SYMBOL vmlinux 0xf5454677 __frontswap_load -EXPORT_SYMBOL vmlinux 0xf57cf1ed crypto_sha1_finup +EXPORT_SYMBOL vmlinux 0xf5495643 jbd2_journal_force_commit_nested +EXPORT_SYMBOL vmlinux 0xf575b4ff mmc_can_erase +EXPORT_SYMBOL vmlinux 0xf58d0871 pci_biosrom_size EXPORT_SYMBOL vmlinux 0xf591753d nf_hooks_needed +EXPORT_SYMBOL vmlinux 0xf592476e elv_rb_find +EXPORT_SYMBOL vmlinux 0xf59f2458 skb_orphan_partial EXPORT_SYMBOL vmlinux 0xf5a20ed2 __genradix_prealloc EXPORT_SYMBOL vmlinux 0xf5a5c84c msrs_alloc +EXPORT_SYMBOL vmlinux 0xf5a70b05 d_alloc EXPORT_SYMBOL vmlinux 0xf5add0ae ns_capable_setid -EXPORT_SYMBOL vmlinux 0xf5b1e171 dev_add_pack -EXPORT_SYMBOL vmlinux 0xf5c230bc phy_register_fixup_for_uid -EXPORT_SYMBOL vmlinux 0xf5d5ec31 gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0xf5d675b4 pcim_iomap_regions_request_all EXPORT_SYMBOL vmlinux 0xf5e7ea40 ktime_get_coarse_ts64 -EXPORT_SYMBOL vmlinux 0xf5edb8b2 d_tmpfile -EXPORT_SYMBOL vmlinux 0xf6060c65 vlan_ioctl_set +EXPORT_SYMBOL vmlinux 0xf5e85a4a devfreq_register_notifier +EXPORT_SYMBOL vmlinux 0xf5f48819 __find_get_block +EXPORT_SYMBOL vmlinux 0xf6018f7b dquot_get_next_dqblk EXPORT_SYMBOL vmlinux 0xf60ab926 acpi_get_event_status -EXPORT_SYMBOL vmlinux 0xf61e7ad2 page_pool_alloc_pages -EXPORT_SYMBOL vmlinux 0xf6246da7 dm_register_target -EXPORT_SYMBOL vmlinux 0xf6253f77 padata_alloc +EXPORT_SYMBOL vmlinux 0xf63875ab security_path_mknod EXPORT_SYMBOL vmlinux 0xf643d104 hsiphash_4u32 +EXPORT_SYMBOL vmlinux 0xf645e25f devm_clk_hw_register_clkdev EXPORT_SYMBOL vmlinux 0xf665f74f sock_load_diag_module -EXPORT_SYMBOL vmlinux 0xf66722fd __dynamic_dev_dbg -EXPORT_SYMBOL vmlinux 0xf67d306d keyring_clear +EXPORT_SYMBOL vmlinux 0xf6762635 __skb_free_datagram_locked +EXPORT_SYMBOL vmlinux 0xf67c1d5e __page_symlink +EXPORT_SYMBOL vmlinux 0xf6821426 unix_destruct_scm EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier -EXPORT_SYMBOL vmlinux 0xf682ae0d mipi_dsi_dcs_set_display_off -EXPORT_SYMBOL vmlinux 0xf69b51fb remove_proc_subtree -EXPORT_SYMBOL vmlinux 0xf6af6b06 __skb_free_datagram_locked -EXPORT_SYMBOL vmlinux 0xf6bb1d04 scsi_is_target_device -EXPORT_SYMBOL vmlinux 0xf6ca155c __mod_node_page_state -EXPORT_SYMBOL vmlinux 0xf6ccbc5b kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0xf6d83da3 seq_open +EXPORT_SYMBOL vmlinux 0xf6903c56 rc5t583_ext_power_req_config +EXPORT_SYMBOL vmlinux 0xf6a7106e devfreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0xf6b7ed80 pci_map_rom +EXPORT_SYMBOL vmlinux 0xf6bbc4d3 devm_clk_release_clkdev +EXPORT_SYMBOL vmlinux 0xf6d8934a netdev_master_upper_dev_link +EXPORT_SYMBOL vmlinux 0xf6d8bfc1 skb_realloc_headroom +EXPORT_SYMBOL vmlinux 0xf6eb6a6f xfrm_unregister_type EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit +EXPORT_SYMBOL vmlinux 0xf6f0d8e9 tc_setup_cb_reoffload EXPORT_SYMBOL vmlinux 0xf6f9d58d init_on_free EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor -EXPORT_SYMBOL vmlinux 0xf72e0f5c inet_sock_destruct +EXPORT_SYMBOL vmlinux 0xf71bff91 scsi_report_device_reset +EXPORT_SYMBOL vmlinux 0xf725a696 vlan_vids_del_by_dev EXPORT_SYMBOL vmlinux 0xf738d1be register_blocking_lsm_notifier -EXPORT_SYMBOL vmlinux 0xf74791db lookup_one -EXPORT_SYMBOL vmlinux 0xf75be66d ip_options_compile -EXPORT_SYMBOL vmlinux 0xf75d560b build_skb_around +EXPORT_SYMBOL vmlinux 0xf74c5a42 pci_wake_from_d3 +EXPORT_SYMBOL vmlinux 0xf7558844 sock_sendmsg EXPORT_SYMBOL vmlinux 0xf77337a1 hdmi_audio_infoframe_check -EXPORT_SYMBOL vmlinux 0xf775d2ed ipv4_dst_check -EXPORT_SYMBOL vmlinux 0xf77cf51e dev_pre_changeaddr_notify -EXPORT_SYMBOL vmlinux 0xf7822a8b ip6_route_me_harder -EXPORT_SYMBOL vmlinux 0xf79b8120 dma_unmap_sg_attrs +EXPORT_SYMBOL vmlinux 0xf776c545 tcf_exts_dump_stats +EXPORT_SYMBOL vmlinux 0xf777306c rproc_del +EXPORT_SYMBOL vmlinux 0xf7780b75 xsk_tx_peek_desc +EXPORT_SYMBOL vmlinux 0xf785d2f4 init_special_inode +EXPORT_SYMBOL vmlinux 0xf787ceb4 neigh_seq_next +EXPORT_SYMBOL vmlinux 0xf79a49a4 end_buffer_read_sync EXPORT_SYMBOL vmlinux 0xf79ca3bb acpi_remove_gpe_block -EXPORT_SYMBOL vmlinux 0xf79ec31b phy_trigger_machine -EXPORT_SYMBOL vmlinux 0xf7a8cb1e _dev_crit -EXPORT_SYMBOL vmlinux 0xf7c3369b devm_nvmem_cell_put -EXPORT_SYMBOL vmlinux 0xf7cbee2e devm_mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0xf7a06cc0 kernel_listen +EXPORT_SYMBOL vmlinux 0xf7a30859 sk_reset_timer +EXPORT_SYMBOL vmlinux 0xf7a4d3dc get_fs_type EXPORT_SYMBOL vmlinux 0xf7d31de9 kstrtoul_from_user +EXPORT_SYMBOL vmlinux 0xf7da10ff phy_ethtool_get_eee EXPORT_SYMBOL vmlinux 0xf7da6e6f acpi_unload_table +EXPORT_SYMBOL vmlinux 0xf7e61383 sock_recvmsg EXPORT_SYMBOL vmlinux 0xf7ef9a79 iosf_mbi_punit_release +EXPORT_SYMBOL vmlinux 0xf7f2a364 km_report +EXPORT_SYMBOL vmlinux 0xf7f3ac9d vlan_dev_vlan_id +EXPORT_SYMBOL vmlinux 0xf7f5f825 param_get_ullong +EXPORT_SYMBOL vmlinux 0xf80a8f6e tty_do_resize 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 0xf81606b9 inode_add_bytes +EXPORT_SYMBOL vmlinux 0xf8152612 sk_error_report +EXPORT_SYMBOL vmlinux 0xf822d6b7 blk_queue_chunk_sectors EXPORT_SYMBOL vmlinux 0xf82abc1d isa_dma_bridge_buggy EXPORT_SYMBOL vmlinux 0xf82ec573 rb_prev -EXPORT_SYMBOL vmlinux 0xf84b8da8 migrate_vma_pages EXPORT_SYMBOL vmlinux 0xf84bd6ee bpf_stats_enabled_key -EXPORT_SYMBOL vmlinux 0xf86f9a56 compat_ptr_ioctl -EXPORT_SYMBOL vmlinux 0xf880ebcf __dynamic_ibdev_dbg +EXPORT_SYMBOL vmlinux 0xf84c69d7 security_dentry_init_security +EXPORT_SYMBOL vmlinux 0xf8547d93 kernel_sendmsg +EXPORT_SYMBOL vmlinux 0xf868688d vfs_mknod +EXPORT_SYMBOL vmlinux 0xf872436c pfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0xf8796a12 jbd2_journal_stop EXPORT_SYMBOL vmlinux 0xf888ca21 sg_init_table -EXPORT_SYMBOL vmlinux 0xf8928b6e __traceiter_mmap_lock_start_locking -EXPORT_SYMBOL vmlinux 0xf89694eb jbd2_log_start_commit -EXPORT_SYMBOL vmlinux 0xf8a5f0de pci_irq_get_affinity -EXPORT_SYMBOL vmlinux 0xf8aea4d8 scsi_device_get +EXPORT_SYMBOL vmlinux 0xf8a48778 input_enable_softrepeat +EXPORT_SYMBOL vmlinux 0xf8a8998c skb_headers_offset_update EXPORT_SYMBOL vmlinux 0xf8b05467 __nla_reserve -EXPORT_SYMBOL vmlinux 0xf8b430d2 send_sig_mceerr -EXPORT_SYMBOL vmlinux 0xf8ba1038 fixed_size_llseek EXPORT_SYMBOL vmlinux 0xf8bf8e22 ZSTD_DDictWorkspaceBound -EXPORT_SYMBOL vmlinux 0xf8c3e7f7 simple_rmdir -EXPORT_SYMBOL vmlinux 0xf8cd7f42 softnet_data -EXPORT_SYMBOL vmlinux 0xf8ce9751 dquot_get_next_dqblk EXPORT_SYMBOL vmlinux 0xf8d07858 bitmap_from_arr32 +EXPORT_SYMBOL vmlinux 0xf8e9f52d pcie_ptm_enabled EXPORT_SYMBOL vmlinux 0xf8f61ebc wake_up_var -EXPORT_SYMBOL vmlinux 0xf8fab5b6 tty_driver_kref_put -EXPORT_SYMBOL vmlinux 0xf9093b92 vme_slave_request +EXPORT_SYMBOL vmlinux 0xf8ff478e kiocb_set_cancel_fn EXPORT_SYMBOL vmlinux 0xf90a1e85 __x86_indirect_thunk_r8 -EXPORT_SYMBOL vmlinux 0xf90b71eb tcf_qevent_handle -EXPORT_SYMBOL vmlinux 0xf916906e pci_prepare_to_sleep -EXPORT_SYMBOL vmlinux 0xf92140f8 param_get_ushort -EXPORT_SYMBOL vmlinux 0xf923df86 netdev_master_upper_dev_get_rcu -EXPORT_SYMBOL vmlinux 0xf93ab1aa tcf_block_get +EXPORT_SYMBOL vmlinux 0xf93f5dee __phy_resume EXPORT_SYMBOL vmlinux 0xf93fd09c fb_find_mode_cvt -EXPORT_SYMBOL vmlinux 0xf9498c11 init_net -EXPORT_SYMBOL vmlinux 0xf95c1d6a n_tty_ioctl_helper +EXPORT_SYMBOL vmlinux 0xf953ac70 input_mt_report_pointer_emulation EXPORT_SYMBOL vmlinux 0xf971cea8 utf8len EXPORT_SYMBOL vmlinux 0xf9722676 twl_i2c_write +EXPORT_SYMBOL vmlinux 0xf98853f8 agp_find_bridge +EXPORT_SYMBOL vmlinux 0xf99b3951 nonseekable_open EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep -EXPORT_SYMBOL vmlinux 0xf9a7b4da put_ipc_ns +EXPORT_SYMBOL vmlinux 0xf9ac0d9e dma_sync_wait +EXPORT_SYMBOL vmlinux 0xf9ad6216 page_zero_new_buffers EXPORT_SYMBOL vmlinux 0xf9c0b663 strlcat EXPORT_SYMBOL vmlinux 0xf9ca2eb4 kstrtoint_from_user -EXPORT_SYMBOL vmlinux 0xf9caf03e xfrm_input -EXPORT_SYMBOL vmlinux 0xf9f213f1 setup_new_exec -EXPORT_SYMBOL vmlinux 0xf9f3696e __cpuhp_setup_state_cpuslocked -EXPORT_SYMBOL vmlinux 0xf9f51196 netif_carrier_off -EXPORT_SYMBOL vmlinux 0xfa074338 call_fib_notifiers +EXPORT_SYMBOL vmlinux 0xf9fde733 configfs_unregister_subsystem +EXPORT_SYMBOL vmlinux 0xfa0232bf pcix_set_mmrbc +EXPORT_SYMBOL vmlinux 0xfa07dbce netdev_get_xmit_slave EXPORT_SYMBOL vmlinux 0xfa08c34a page_offline_end -EXPORT_SYMBOL vmlinux 0xfa10ba2f reuseport_select_sock -EXPORT_SYMBOL vmlinux 0xfa1e099b phy_ethtool_ksettings_set -EXPORT_SYMBOL vmlinux 0xfa219dbf __SCK__tp_func_kfree -EXPORT_SYMBOL vmlinux 0xfa28f1c2 tty_port_tty_get +EXPORT_SYMBOL vmlinux 0xfa15193e netlink_kernel_release +EXPORT_SYMBOL vmlinux 0xfa16be97 dec_node_page_state +EXPORT_SYMBOL vmlinux 0xfa246a23 dmam_free_coherent EXPORT_SYMBOL vmlinux 0xfa297415 acpi_map_pxm_to_node EXPORT_SYMBOL vmlinux 0xfa2e5f32 i2c_smbus_pec -EXPORT_SYMBOL vmlinux 0xfa31422f iov_iter_xarray +EXPORT_SYMBOL vmlinux 0xfa324c15 genphy_c37_config_aneg +EXPORT_SYMBOL vmlinux 0xfa46bb99 scsi_remove_target EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier -EXPORT_SYMBOL vmlinux 0xfa6c5933 dma_free_attrs -EXPORT_SYMBOL vmlinux 0xfa84142b napi_gro_flush -EXPORT_SYMBOL vmlinux 0xfa85ad9e rproc_shutdown +EXPORT_SYMBOL vmlinux 0xfa5b9b01 qdisc_watchdog_schedule_range_ns +EXPORT_SYMBOL vmlinux 0xfa76bc02 jbd2_journal_update_sb_errno +EXPORT_SYMBOL vmlinux 0xfa827cb7 mipi_dsi_dcs_write_buffer EXPORT_SYMBOL vmlinux 0xfa873ad0 prandom_seed -EXPORT_SYMBOL vmlinux 0xfa8ec785 dump_align -EXPORT_SYMBOL vmlinux 0xfa9d297e blk_get_request -EXPORT_SYMBOL vmlinux 0xfaa0f226 rtnl_kfree_skbs +EXPORT_SYMBOL vmlinux 0xfa8a3bfa agp_generic_mask_memory +EXPORT_SYMBOL vmlinux 0xfa9abf8f __blk_mq_alloc_disk +EXPORT_SYMBOL vmlinux 0xfa9fb409 vfs_get_super EXPORT_SYMBOL vmlinux 0xfaaa12d0 _page_poisoning_enabled -EXPORT_SYMBOL vmlinux 0xfab35186 ipv6_chk_addr_and_flags +EXPORT_SYMBOL vmlinux 0xfaafa9e3 __tracepoint_mmap_lock_start_locking +EXPORT_SYMBOL vmlinux 0xfac098d2 netdev_pick_tx EXPORT_SYMBOL vmlinux 0xfac19588 __clear_user EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max -EXPORT_SYMBOL vmlinux 0xfad091f8 free_inode_nonrcu -EXPORT_SYMBOL vmlinux 0xfad27996 vfs_iocb_iter_write -EXPORT_SYMBOL vmlinux 0xfad55a88 blk_mq_delay_run_hw_queue -EXPORT_SYMBOL vmlinux 0xfadebd3d close_fd_get_file -EXPORT_SYMBOL vmlinux 0xfae54e53 skb_tx_error -EXPORT_SYMBOL vmlinux 0xfaf45e9a get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0xfafd036f ipv6_chk_prefix +EXPORT_SYMBOL vmlinux 0xfb069438 jbd2_journal_start +EXPORT_SYMBOL vmlinux 0xfb1a98dc dev_set_mtu +EXPORT_SYMBOL vmlinux 0xfb348fea fault_in_safe_writeable EXPORT_SYMBOL vmlinux 0xfb384d37 kasprintf -EXPORT_SYMBOL vmlinux 0xfb3b30ac thaw_bdev -EXPORT_SYMBOL vmlinux 0xfb4ff0ee genphy_check_and_restart_aneg -EXPORT_SYMBOL vmlinux 0xfb51c47e pid_task +EXPORT_SYMBOL vmlinux 0xfb387f13 write_one_page +EXPORT_SYMBOL vmlinux 0xfb4c48d7 filemap_flush EXPORT_SYMBOL vmlinux 0xfb578fc5 memset -EXPORT_SYMBOL vmlinux 0xfb5e07c7 elevator_alloc +EXPORT_SYMBOL vmlinux 0xfb5a13bf ipv4_mtu EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending -EXPORT_SYMBOL vmlinux 0xfb97d6c7 dquot_drop +EXPORT_SYMBOL vmlinux 0xfb71c563 drop_nlink +EXPORT_SYMBOL vmlinux 0xfb7f259f security_sk_clone +EXPORT_SYMBOL vmlinux 0xfb8e1a9e netdev_err +EXPORT_SYMBOL vmlinux 0xfb8f8662 __sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0xfb91096b vlan_vid_del +EXPORT_SYMBOL vmlinux 0xfb915003 dev_queue_xmit_accel EXPORT_SYMBOL vmlinux 0xfba7ddd2 match_u64 EXPORT_SYMBOL vmlinux 0xfbaaf01e console_lock EXPORT_SYMBOL vmlinux 0xfbab1bb1 ioread8_rep EXPORT_SYMBOL vmlinux 0xfbad3cf0 scsi_normalize_sense +EXPORT_SYMBOL vmlinux 0xfbb3379a vfs_iocb_iter_read EXPORT_SYMBOL vmlinux 0xfbb8a761 strscpy_pad +EXPORT_SYMBOL vmlinux 0xfbbe5512 generic_file_readonly_mmap EXPORT_SYMBOL vmlinux 0xfbc4f89e io_schedule_timeout -EXPORT_SYMBOL vmlinux 0xfbc616f1 inet6_bind -EXPORT_SYMBOL vmlinux 0xfbc6d9d8 netdev_port_same_parent_id -EXPORT_SYMBOL vmlinux 0xfbcab161 scmd_printk -EXPORT_SYMBOL vmlinux 0xfbddaa88 scsi_alloc_sgtables +EXPORT_SYMBOL vmlinux 0xfbe1233d neigh_ifdown EXPORT_SYMBOL vmlinux 0xfbe8ee28 acpi_get_table_by_index -EXPORT_SYMBOL vmlinux 0xfc0f92be netdev_adjacent_change_abort -EXPORT_SYMBOL vmlinux 0xfc16002d sdev_enable_disk_events -EXPORT_SYMBOL vmlinux 0xfc1f2653 pagecache_write_end -EXPORT_SYMBOL vmlinux 0xfc202c76 udp_lib_rehash -EXPORT_SYMBOL vmlinux 0xfc226614 input_set_poll_interval -EXPORT_SYMBOL vmlinux 0xfc239603 vfs_rmdir +EXPORT_SYMBOL vmlinux 0xfc31c7c0 scsi_eh_finish_cmd EXPORT_SYMBOL vmlinux 0xfc336d2e __wake_up_bit +EXPORT_SYMBOL vmlinux 0xfc35c491 rproc_coredump_using_sections +EXPORT_SYMBOL vmlinux 0xfc36b6f8 done_path_create EXPORT_SYMBOL vmlinux 0xfc399557 utf8_load EXPORT_SYMBOL vmlinux 0xfc39e32f ioport_unmap EXPORT_SYMBOL vmlinux 0xfc3d53cb __put_user_nocheck_1 +EXPORT_SYMBOL vmlinux 0xfc3d781b crypto_sha512_update EXPORT_SYMBOL vmlinux 0xfc4152fc ec_read -EXPORT_SYMBOL vmlinux 0xfc511283 pci_scan_root_bus -EXPORT_SYMBOL vmlinux 0xfc9c057f sock_release -EXPORT_SYMBOL vmlinux 0xfc9d5331 put_watch_queue -EXPORT_SYMBOL vmlinux 0xfca2de7b generic_shutdown_super -EXPORT_SYMBOL vmlinux 0xfca4c697 rt_dst_alloc -EXPORT_SYMBOL vmlinux 0xfcc2f156 phy_config_aneg +EXPORT_SYMBOL vmlinux 0xfc49e1e3 scsi_get_host_dev +EXPORT_SYMBOL vmlinux 0xfc5a240f __tcf_em_tree_match +EXPORT_SYMBOL vmlinux 0xfc6a6b4f __skb_checksum +EXPORT_SYMBOL vmlinux 0xfc6bc1ba flow_indr_block_cb_alloc +EXPORT_SYMBOL vmlinux 0xfca2db29 ip_fraglist_init EXPORT_SYMBOL vmlinux 0xfcd1819a hdmi_spd_infoframe_check -EXPORT_SYMBOL vmlinux 0xfcd1f691 ioc_lookup_icq +EXPORT_SYMBOL vmlinux 0xfcd89d54 pci_stop_and_remove_bus_device +EXPORT_SYMBOL vmlinux 0xfce190f2 __alloc_pages EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq -EXPORT_SYMBOL vmlinux 0xfcedc539 tty_kref_put -EXPORT_SYMBOL vmlinux 0xfcf12ff7 devfreq_monitor_suspend -EXPORT_SYMBOL vmlinux 0xfd2094ca jbd2_fc_begin_commit -EXPORT_SYMBOL vmlinux 0xfd34d3ba bdi_put -EXPORT_SYMBOL vmlinux 0xfd3bd14f jbd2_journal_grab_journal_head -EXPORT_SYMBOL vmlinux 0xfd6611e2 insert_inode_locked4 -EXPORT_SYMBOL vmlinux 0xfd7e2655 netpoll_send_udp -EXPORT_SYMBOL vmlinux 0xfd818153 devfreq_unregister_opp_notifier -EXPORT_SYMBOL vmlinux 0xfd867298 blk_queue_io_min -EXPORT_SYMBOL vmlinux 0xfd872470 rproc_get_by_phandle +EXPORT_SYMBOL vmlinux 0xfcfe22db mmc_cqe_recovery +EXPORT_SYMBOL vmlinux 0xfd05595a neigh_connected_output +EXPORT_SYMBOL vmlinux 0xfd09d765 param_get_int +EXPORT_SYMBOL vmlinux 0xfd0a2cae agp_enable +EXPORT_SYMBOL vmlinux 0xfd0a7c5b mmc_wait_for_req_done +EXPORT_SYMBOL vmlinux 0xfd0cb5aa mmc_command_done +EXPORT_SYMBOL vmlinux 0xfd126f57 __set_page_dirty_no_writeback +EXPORT_SYMBOL vmlinux 0xfd2072f3 cfb_fillrect +EXPORT_SYMBOL vmlinux 0xfd385f7a set_pages_array_uc +EXPORT_SYMBOL vmlinux 0xfd3e6539 ioc_lookup_icq +EXPORT_SYMBOL vmlinux 0xfd68184e __SCK__tp_func_mmap_lock_acquire_returned +EXPORT_SYMBOL vmlinux 0xfd6cf238 mmc_sw_reset +EXPORT_SYMBOL vmlinux 0xfd6f0a8f tcp_rcv_state_process +EXPORT_SYMBOL vmlinux 0xfd6f5f69 rproc_set_firmware +EXPORT_SYMBOL vmlinux 0xfd795641 sg_alloc_append_table_from_pages +EXPORT_SYMBOL vmlinux 0xfd8ce0c3 __sk_mem_reduce_allocated EXPORT_SYMBOL vmlinux 0xfd93ee35 ioremap_wc EXPORT_SYMBOL vmlinux 0xfda9581f prandom_u32 +EXPORT_SYMBOL vmlinux 0xfdb19be7 debugfs_create_automount +EXPORT_SYMBOL vmlinux 0xfdb1afd6 dma_ops EXPORT_SYMBOL vmlinux 0xfdb6576f acpi_set_debugger_thread_id -EXPORT_SYMBOL vmlinux 0xfdca77a1 skb_unlink +EXPORT_SYMBOL vmlinux 0xfdc3e5ea page_pool_create EXPORT_SYMBOL vmlinux 0xfdcb4ed3 acpi_os_get_line EXPORT_SYMBOL vmlinux 0xfdcc8a0e fb_find_best_display +EXPORT_SYMBOL vmlinux 0xfdcf06ce wait_for_key_construction EXPORT_SYMBOL vmlinux 0xfdd4216d pcibios_align_resource +EXPORT_SYMBOL vmlinux 0xfde10aab d_obtain_alias +EXPORT_SYMBOL vmlinux 0xfdf36ada xfrm_state_update +EXPORT_SYMBOL vmlinux 0xfdf4bf1a pm860x_reg_write EXPORT_SYMBOL vmlinux 0xfdfb792f amd_iommu_pc_supported -EXPORT_SYMBOL vmlinux 0xfdfbcaa1 mmput_async EXPORT_SYMBOL vmlinux 0xfe029963 unregister_inetaddr_notifier EXPORT_SYMBOL vmlinux 0xfe052363 ioread64_lo_hi -EXPORT_SYMBOL vmlinux 0xfe0e3091 udp_poll +EXPORT_SYMBOL vmlinux 0xfe05bc52 end_buffer_async_write EXPORT_SYMBOL vmlinux 0xfe1d2e94 key_create_or_update +EXPORT_SYMBOL vmlinux 0xfe2feab1 seq_path +EXPORT_SYMBOL vmlinux 0xfe36e90b fault_in_iov_iter_writeable +EXPORT_SYMBOL vmlinux 0xfe42dbaa pci_back_from_sleep EXPORT_SYMBOL vmlinux 0xfe487975 init_wait_entry -EXPORT_SYMBOL vmlinux 0xfe4b05f9 cdrom_get_media_event -EXPORT_SYMBOL vmlinux 0xfe528a2c unix_destruct_scm +EXPORT_SYMBOL vmlinux 0xfe5614dd neigh_event_ns +EXPORT_SYMBOL vmlinux 0xfe58ec21 km_policy_expired EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz -EXPORT_SYMBOL vmlinux 0xfe73ef88 nd_device_register -EXPORT_SYMBOL vmlinux 0xfe882c18 register_netdevice_notifier_net +EXPORT_SYMBOL vmlinux 0xfe7355ac mmc_gpiod_request_cd +EXPORT_SYMBOL vmlinux 0xfe788742 freezing_slow_path +EXPORT_SYMBOL vmlinux 0xfe80d692 devm_devfreq_add_device +EXPORT_SYMBOL vmlinux 0xfe8ad6a5 blk_mq_requeue_request EXPORT_SYMBOL vmlinux 0xfe8c61f0 _raw_read_lock EXPORT_SYMBOL vmlinux 0xfe916dc6 hex_dump_to_buffer EXPORT_SYMBOL vmlinux 0xfe9ebbbb acpi_osi_is_win8 -EXPORT_SYMBOL vmlinux 0xfea9620c proc_create_data -EXPORT_SYMBOL vmlinux 0xfeab0dc4 tcp_rcv_state_process +EXPORT_SYMBOL vmlinux 0xfe9ff1c1 eth_header +EXPORT_SYMBOL vmlinux 0xfea8d19a tcf_get_next_chain EXPORT_SYMBOL vmlinux 0xfeb5d0aa verify_spi_info -EXPORT_SYMBOL vmlinux 0xfebfe718 fib_notifier_ops_register +EXPORT_SYMBOL vmlinux 0xfecd473e __dynamic_netdev_dbg +EXPORT_SYMBOL vmlinux 0xfed44a8f pci_clear_mwi EXPORT_SYMBOL vmlinux 0xfedcdb60 seq_hlist_next_percpu +EXPORT_SYMBOL vmlinux 0xfedeb225 netif_napi_add +EXPORT_SYMBOL vmlinux 0xfee81c5b tty_port_hangup EXPORT_SYMBOL vmlinux 0xfeebc7c4 __kfifo_from_user_r EXPORT_SYMBOL vmlinux 0xfef216eb _raw_spin_trylock -EXPORT_SYMBOL vmlinux 0xfefb8ef9 fs_context_for_reconfigure -EXPORT_SYMBOL vmlinux 0xfefc626b jbd2_journal_lock_updates EXPORT_SYMBOL vmlinux 0xfefcb98e vme_dma_vme_attribute -EXPORT_SYMBOL vmlinux 0xff09ce04 mdiobus_free -EXPORT_SYMBOL vmlinux 0xff130ced kill_pid -EXPORT_SYMBOL vmlinux 0xff1b66c8 rtnetlink_put_metrics +EXPORT_SYMBOL vmlinux 0xff01fc07 skb_copy_bits +EXPORT_SYMBOL vmlinux 0xff032379 gnet_stats_copy_queue +EXPORT_SYMBOL vmlinux 0xff0926b7 scsi_command_normalize_sense +EXPORT_SYMBOL vmlinux 0xff0bde33 fixed_size_llseek +EXPORT_SYMBOL vmlinux 0xff0dc157 free_cgroup_ns +EXPORT_SYMBOL vmlinux 0xff1e2e5c alloc_netdev_mqs EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start +EXPORT_SYMBOL vmlinux 0xff27d58d tc_cleanup_flow_action EXPORT_SYMBOL vmlinux 0xff282521 rfkill_register -EXPORT_SYMBOL vmlinux 0xff3c94bc __cgroup_bpf_run_filter_skb +EXPORT_SYMBOL vmlinux 0xff2a9938 blk_rq_init +EXPORT_SYMBOL vmlinux 0xff35d816 fb_get_buffer_offset +EXPORT_SYMBOL vmlinux 0xff3cd159 vga_switcheroo_lock_ddc EXPORT_SYMBOL vmlinux 0xff52848a __SCT__tp_func_kmem_cache_free +EXPORT_SYMBOL vmlinux 0xff64dc76 __mmap_lock_do_trace_acquire_returned EXPORT_SYMBOL vmlinux 0xff6878cf fb_default_cmap -EXPORT_SYMBOL vmlinux 0xff7d199a __netlink_dump_start EXPORT_SYMBOL vmlinux 0xff87cd18 lockref_get_not_dead -EXPORT_SYMBOL vmlinux 0xff9bfe02 netdev_rx_csum_fault +EXPORT_SYMBOL vmlinux 0xffa002ad generic_file_llseek_size +EXPORT_SYMBOL vmlinux 0xffa2b66c pci_bus_read_config_byte +EXPORT_SYMBOL vmlinux 0xffadfc17 __SCK__tp_func_kmem_cache_free EXPORT_SYMBOL vmlinux 0xffb7c514 ida_free +EXPORT_SYMBOL vmlinux 0xffb97f0a loop_register_transfer +EXPORT_SYMBOL vmlinux 0xffbd8c51 sk_stream_wait_close +EXPORT_SYMBOL vmlinux 0xffbda7fd ps2_begin_command EXPORT_SYMBOL vmlinux 0xffc30c3a acpi_processor_power_init_bm_check +EXPORT_SYMBOL vmlinux 0xffc8168e __tracepoint_kmalloc_node +EXPORT_SYMBOL vmlinux 0xffcb98e6 vga_switcheroo_get_client_state +EXPORT_SYMBOL vmlinux 0xffcbcfd5 amd_iommu_flush_tlb +EXPORT_SYMBOL vmlinux 0xffcbd419 irq_domain_set_info EXPORT_SYMBOL vmlinux 0xffcc4ec7 tcp_bpf_bypass_getsockopt -EXPORT_SYMBOL vmlinux 0xffccc245 acpi_bus_get_status EXPORT_SYMBOL vmlinux 0xffcd7f49 iosf_mbi_punit_acquire -EXPORT_SYMBOL vmlinux 0xffd02e18 genlmsg_put -EXPORT_SYMBOL vmlinux 0xffda4ea1 xp_can_alloc +EXPORT_SYMBOL vmlinux 0xffcf0ab0 input_inject_event +EXPORT_SYMBOL vmlinux 0xffd8f59b ndisc_mc_map 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 @@ -11784,407 +11800,406 @@ 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 0x021f7307 kvm_unmap_gfn -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x02a25582 gfn_to_page_many_atomic -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0422d91f kvm_lapic_find_highest_irr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x017ae75b kvm_sev_es_string_io EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x053614ec kvm_set_user_return_msr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x06249cbb kvm_mtrr_valid -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x06a45fd9 kvm_emulate_as_nop +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x059d6b2f kvm_apic_update_ppr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x05e95bd1 __SCK__kvm_x86_tlb_flush_current EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x06cdc8d1 kvm_configure_mmu -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x07f14ddc __kvm_request_immediate_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x07335302 kvm_init EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0814dd11 __SCT__kvm_x86_tlb_flush_current -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x08818295 __tracepoint_kvm_exit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x099fc576 kvm_vcpu_gfn_to_hva +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x085b8f49 kvm_load_host_xsave_state +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x08ab2bcc __SCK__tp_func_kvm_cr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0abb1df6 kvm_can_use_hv_timer 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 0x0be60375 kvm_get_kvm +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0c169243 kvm_lapic_set_eoi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0c1c3ebe __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 0x0d8f4740 kvm_mce_cap_supported -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0da2364d kvm_release_page_dirty -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0e02ca62 __SCK__tp_func_kvm_nested_vmexit_inject -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0e533191 __SCK__tp_func_kvm_page_fault -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0edd426d kvm_is_valid_cr4 -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0f209d56 kvm_queue_exception_p -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0f7c0c31 __SCK__tp_func_kvm_cr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1029f28e kvm_mmu_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0efe263d kvm_gfn_to_hva_cache_init +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0f0fb279 kvm_handle_invpcid +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x10e22aea kvm_get_linear_rip +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x10fc70f0 kvm_vcpu_halt EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x114eb824 __traceiter_kvm_nested_vmexit_inject +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1226c827 __SCK__tp_func_kvm_msr EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1235000a kvm_tsc_scaling_ratio_frac_bits -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x12433029 kvm_vcpu_write_guest_page EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x130fd155 supported_xss -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x13515c99 kvm_lapic_expired_hv_timer EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1412f042 __traceiter_kvm_ple_window_update EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x159b8d5e host_efer -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1640bc87 kvm_arch_no_poll -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x16a83d2b kvm_mmu_gva_to_gpa_read -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x17404c74 kvm_handle_page_fault -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x17a07726 kvm_init_shadow_npt_mmu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x15e23f8b kvm_request_apicv_update EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x17f9cfe3 __traceiter_kvm_cr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1b08bac9 kvm_mmu_free_roots -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1bdc9a1e kvm_arch_has_assigned_device -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1c3ce0b8 __tracepoint_kvm_nested_vmexit_inject -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1c42c8ab __SCK__tp_func_kvm_invlpga +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x19042a5c kvm_set_cr3 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x195e9bb0 kvm_sev_es_mmio_read +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1b0c6255 __tracepoint_kvm_pml_full +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1b203f82 kvm_vcpu_gfn_to_pfn_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1bea64f4 kvm_x86_ops +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1c08d8b7 __tracepoint_kvm_nested_intercepts +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1c3adfc9 __SCK__tp_func_kvm_nested_vmrun EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1cf65ffc kvm_max_guest_tsc_khz 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 0x1d74c663 kvm_vcpu_gfn_to_hva EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1db1c372 enable_vmware_backdoor -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1dbe8163 __tracepoint_kvm_page_fault -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1ee31083 kvm_scale_tsc -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1f4af845 handle_ud -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1fb7dca6 __tracepoint_kvm_nested_vmenter_failed -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x20853f6a kvm_vcpu_read_guest_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x22ed314e kvm_vcpu_write_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1e112b8a kvm_clear_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1e252d73 kvm_queue_exception +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1ea7ac03 handle_fastpath_set_msr_irqoff +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1fbca07a kvm_write_guest_cached +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x213bf20e kvm_intr_is_single_vcpu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x214d830b kvm_vcpu_block +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2175c036 kvm_emulate_mwait +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2193e910 kvm_emulate_hypercall +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x22505fbd kvm_handle_memory_failure +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x22dc2e93 kvm_get_rflags +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x22e1ce04 kvm_init_shadow_npt_mmu EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x23263c0a __traceiter_kvm_nested_vmenter_failed +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2334ae8a kvm_msr_allowed +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x23a201f3 kvm_io_bus_get_dev +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x246d67fa kvm_fixup_and_inject_pf_error EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2510fc6d __SCT__tp_func_kvm_nested_vmexit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2528384a hv_remote_flush_tlb -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x25abb44e kvm_update_dr7 EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x25c07225 __traceiter_kvm_vmgexit_msr_protocol_exit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x267cdccb __SCK__tp_func_kvm_pml_full +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x26ce94d3 kvm_set_memory_region EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x26d4bb26 kvm_cpu_caps +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2700cf9d __tracepoint_kvm_msr EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x27046576 kvm_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x277b4db6 kvm_set_rflags EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x28411ed7 kvm_max_tsc_scaling_ratio -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x29157b37 kvm_queue_exception_e +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x28b04f8d kvm_vcpu_gfn_to_pfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x290480e0 kvm_post_set_cr4 EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2976b749 __gfn_to_pfn_memslot -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x29d8f8bf kvm_write_guest_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2c165ce9 kvm_emulate_instruction +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x298e6df6 __traceiter_kvm_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2bb2e0da __SCK__kvm_x86_cache_reg +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2d600c0e kvm_emulate_xsetbv EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2d82cc24 kvm_spec_ctrl_test_value -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2ebcc645 gfn_to_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2f5d4c79 kvm_set_cr3 -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x308cd8b7 kvm_get_dr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x30c87e94 kvm_emulate_cpuid -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3534e1bb kvm_vcpu_mark_page_dirty -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3547b9d2 kvm_x86_ops -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x36e0ca5e kvm_cpuid -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x37008ecc gfn_to_pfn -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3776662f kvm_read_guest_offset_cached -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3852f2fe kvm_request_apicv_update -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x388d1fb9 kvm_set_cr0 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2ea6f20d kvm_find_cpuid_entry +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2f23a293 kvm_vcpu_gfn_to_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2f546597 kvm_page_track_register_notifier +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2fb124c9 kvm_emulate_rdmsr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2fedc978 kvm_mtrr_get_guest_memory_type +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x314d69e5 kvm_flush_remote_tlbs +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3295b452 kvm_skip_emulated_instruction +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x336f066b __tracepoint_kvm_nested_vmrun +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x33c71ea4 kvm_emulate_monitor +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x340f17a8 kvm_put_kvm +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x341762a0 kvm_get_cr8 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x35d83664 __SCK__tp_func_kvm_nested_intercepts +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3618a921 gfn_to_memslot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x37c41680 __kvm_request_immediate_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x37fd57ec kvm_apicv_activated +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x386fd3f4 gfn_to_pfn_prot EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x388e0e10 __SCT__tp_func_kvm_pi_irte_update -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3963aad2 __SCK__tp_func_kvm_vmgexit_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x38d9e3a9 kvm_queue_exception_e +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x397a66a7 kvm_emulate_cpuid EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x39fd83db halt_poll_ns_shrink +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x39fe82ac kvm_apic_write_nodecode +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3a8ed502 kvm_require_dr EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3ab2794c kvm_find_user_return_msr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3b8c555f __tracepoint_kvm_nested_vmrun +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3b8b9251 kvm_get_msr_common EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3ba6c794 gfn_to_pfn_memslot -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3c884f3a kvm_arch_unregister_noncoherent_dma -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3c898d81 kvm_vcpu_gfn_to_pfn_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3c91a2a3 kvm_emulate_as_nop +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3c9ae98d __SCK__tp_func_kvm_inj_virq +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3dcf3114 __SCK__tp_func_kvm_nested_vmenter_failed +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3f12fb09 kvm_mmu_new_pgd EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3f510ff5 kvm_has_noapic_vcpu -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4025131f kvm_read_l1_tsc -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x40cc99bb kvm_emulate_rdmsr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x40f654d8 kvm_intr_is_single_vcpu -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x41c77a15 kvm_apic_has_interrupt -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x42738acb kvm_mmu_invlpg -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x450ec48a kvm_requeue_exception_e -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x45a2213d kvm_sev_es_mmio_read +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x41dbbec7 kvm_cpu_has_injectable_intr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x41e73433 kvm_arch_unregister_noncoherent_dma +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x42286dfe __SCK__tp_func_kvm_fast_mmio +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x425db2bd __SCK__tp_func_kvm_pml_full +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x42dcc0b7 kvm_map_gfn EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x45e80fdf __traceiter_kvm_pi_irte_update -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x46071cdd kvm_hv_assist_page_enabled +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x473e65a3 x86_decode_emulated_instruction 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 0x486d90b2 kvm_irq_has_notifier -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x48cb44d6 __tracepoint_kvm_cr EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4942be67 __SCT__tp_func_kvm_avic_incomplete_ipi -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x49502eb9 kvm_get_cr8 -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x49df8cf8 kvm_vcpu_on_spin +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x49431d52 kvm_vcpu_destroy EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4a1c261b __SCT__tp_func_kvm_invlpga -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4b265ec3 __tracepoint_kvm_entry -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4c5159d0 kvm_read_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4ba9497a kvm_init_mmu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4c117f4f hv_remote_flush_tlb +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4c4ac8cb __tracepoint_kvm_avic_ga_log +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4c6ba5b4 kvm_vcpu_write_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4c711b49 __tracepoint_kvm_apicv_update_request +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4e203872 __tracepoint_kvm_exit EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4e3fd1b4 kvm_release_pfn_clean -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4fab659b kvm_get_linear_rip -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x50755ed9 kvm_set_rflags -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x50ebfb38 kvm_get_apic_mode -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x529faa37 gfn_to_memslot -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x52d9dfaa kvm_deliver_exception_payload +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4f756689 __SCK__tp_func_kvm_ple_window_update +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4f8172c0 __tracepoint_kvm_vmgexit_msr_protocol_enter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5146d559 vcpu_put EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x53d9f927 __SCT__kvm_x86_get_cs_db_l_bits -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5461e797 kvm_vcpu_wake_up EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x54cd466b __traceiter_kvm_apicv_update_request -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x54dcf54c __SCK__kvm_x86_cache_reg -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5521f37b kvm_vcpu_gfn_to_pfn -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5583ff88 reprogram_counter -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x55b1d688 kvm_slot_page_track_add_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x55e96d5f kvm_can_use_hv_timer -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x55f96795 kvm_get_kvm_safe -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x56db2f70 kvm_cpu_has_interrupt -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x57301685 kvm_apic_set_eoi_accelerated -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x57955744 kvm_init_mmu -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x58bb87fb __SCK__tp_func_kvm_inj_virq -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x593204e6 __SCK__tp_func_kvm_vmgexit_enter -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5932fc2a kvm_mmu_free_guest_mode_roots +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x55309107 kvm_emulate_wbinvd +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x55bb6dc3 kvm_mmu_gva_to_gpa_write +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x55f1a719 gfn_to_hva +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x55f98178 kvm_apic_has_interrupt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5633320a kvm_get_running_vcpu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x56403df4 __kvm_set_memory_region +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x56847eb2 __SCK__tp_func_kvm_invlpga +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x56e120a7 kvm_read_l1_tsc +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5855862e kvm_arch_has_assigned_device +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x58e7281f kvm_set_dr EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x59387ba3 __SCT__kvm_x86_cache_reg EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x59e640c0 halt_poll_ns -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5b9a8b94 kvm_emulate_wrmsr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5a24de75 kvm_set_cr4 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5a566f2b kvm_update_cpuid_runtime 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 0x5c5b4be4 kvm_update_cpuid_runtime +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5d814e22 kvm_deliver_exception_payload EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5d996b31 kvm_set_cpu_caps EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5fb8848b halt_poll_ns_grow_start +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5fdad10c load_pdptrs EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x616e6c95 __SCT__tp_func_kvm_exit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x61b969ab __SCK__tp_func_kvm_exit EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6243ac82 __kvm_apic_update_irr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x627b301e mark_page_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x62a8bf0b kvm_lmsw EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6303c089 kvm_calc_nested_tsc_offset EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x63270977 kvm_default_tsc_scaling_ratio -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6497298c kvm_emulate_ap_reset_hold -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x658f853f __SCK__tp_func_kvm_nested_vmexit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x65aa38bd handle_fastpath_set_msr_irqoff -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x65c3eefe kvm_task_switch -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6688056a reprogram_gp_counter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x65a144e7 __SCK__tp_func_kvm_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x65cb3965 __tracepoint_kvm_inj_virq +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x66a5885a __tracepoint_kvm_ple_window_update +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x66c7eb0e __SCK__tp_func_kvm_nested_vmexit_inject +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x66dd9f9f kvm_slot_page_track_add_page EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6756347e __traceiter_kvm_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x675b26c7 kvm_slot_page_track_remove_page EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6892e3c3 kvm_set_pfn_accessed -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6a416b22 kvm_write_guest_virt_system +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x68a1fcda __SCK__tp_func_kvm_avic_incomplete_ipi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6900e15f __traceiter_kvm_nested_vmexit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x69c64a45 __traceiter_kvm_entry +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x69d887ba __tracepoint_kvm_nested_vmenter_failed +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6a4184ef kvm_fast_pio +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6a6a12c0 kvm_vcpu_deliver_sipi_vector +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6a982aaa kvm_queue_exception_p EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6ada8f59 kvm_mmu_set_mmio_spte_mask +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6b6222ac gfn_to_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6b6abbc2 kvm_vcpu_is_reset_bsp EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6becaded __SCT__tp_func_kvm_inj_virq +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6bed9e1b kvm_handle_invalid_op EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6c95726c host_xss -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6cdaddf1 kvm_lapic_hv_timer_in_use -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6fc7467a kvm_cpu_has_injectable_intr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6ff6e1aa kvm_requeue_exception +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6f68da15 kvm_mmu_free_guest_mode_roots +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7018d0b0 kvm_cpu_get_interrupt EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x70288943 __SCT__tp_func_kvm_nested_vmrun -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x70336808 __SCK__tp_func_kvm_avic_incomplete_ipi -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x703daeca __SCK__tp_func_kvm_pi_irte_update +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x708a6d29 kvm_get_msr EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x709cd8cb kvm_spurious_fault -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x71b3da75 vcpu_put +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7172cf62 current_vcpu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x71c51154 reprogram_fixed_counter EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7263ae77 __traceiter_kvm_nested_vmrun -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x728f1bf2 kvm_cpu_get_interrupt -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x73d842e2 kvm_release_page_clean -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7436170d kvm_read_guest_virt -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7499d171 kvm_emulate_invd -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x749d4ac0 kvm_msr_allowed +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x73bbba1f vcpu_load +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x73df2de9 kvm_lapic_reg_read +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x750e88a2 __tracepoint_kvm_entry EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x752c2b00 __traceiter_kvm_fast_mmio -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7639d7ac kvm_put_kvm_no_destroy -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x76c3f16b kvm_apic_update_apicv -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7748c1a0 kvm_hv_get_assist_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x768ea861 kvm_lapic_reg_write +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x76efedf7 __SCK__tp_func_kvm_avic_ga_log +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x777b39da kvm_complete_insn_gp +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x778b128a __SCK__kvm_x86_get_cs_db_l_bits EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x778e30b9 __SCT__tp_func_kvm_cr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x79a3d946 __SCK__tp_func_kvm_nested_vmenter_failed -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7a023c81 __tracepoint_kvm_fast_mmio -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7aa9a36c kvm_init +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7805687f kvm_debugfs_dir +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x78bc9c8e kvm_emulate_halt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x792cfb2f kvm_requeue_exception_e +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x792e08b3 kvm_write_guest_offset_cached +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7a1c4d17 kvm_is_linear_rip +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7afbe2f3 kvm_emulate_ap_reset_hold EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7afe324e halt_poll_ns_grow +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7b6d379c kvm_apic_update_irr EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7c94c99a kvm_release_pfn_dirty -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7d76e9fb kvm_skip_emulated_instruction -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7ea4cc26 kvm_set_msr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7f539536 kvm_inject_nmi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7d9f14df kvm_get_apic_mode +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7eb44f3d kvm_read_guest_cached +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7f316fd4 __SCK__tp_func_kvm_vmgexit_msr_protocol_enter EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7fe19488 kvm_add_user_return_msr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7fe20d97 kvm_emulate_monitor +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7fe2528a kvm_init_shadow_ept_mmu EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7ff2a104 __SCT__tp_func_kvm_page_fault -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x82cd5efc kvm_handle_memory_failure -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x82f7f85f kvm_load_guest_xsave_state -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x834fa08d __tracepoint_kvm_write_tsc_offset -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x835edbf1 __kvm_set_memory_region -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x83821095 kvm_set_memory_region -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8397d993 kvm_set_msi_irq -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x83e4293a kvm_find_cpuid_entry -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x85241883 kvm_load_host_xsave_state -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x86fc5d49 kvm_io_bus_write -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8767f4d8 kvm_emulate_instruction_from_buffer -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x87f0dfac kvm_map_gfn -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x88458e54 kvm_set_msr_common -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x88c1d2a1 __tracepoint_kvm_ple_window_update -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x89af41d6 __SCK__tp_func_kvm_nested_intercepts -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x89da8bd7 __SCK__tp_func_kvm_skinit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8a1d587f kvm_get_running_vcpu -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8a2e7b83 __SCK__tp_func_kvm_entry +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x809f1461 reprogram_gp_counter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x80c33dde kvm_vcpu_yield_to +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x85068ca9 __tracepoint_kvm_avic_incomplete_ipi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8529d7d5 kvm_page_track_unregister_notifier +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x85909cbf __SCK__tp_func_kvm_apicv_update_request +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x86a72bb1 kvm_emulate_rdpmc +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x89fbd13c __tracepoint_kvm_avic_unaccelerated_access EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8a7fe54a __SCT__tp_func_kvm_vmgexit_enter EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8b618aa6 __SCT__tp_func_kvm_nested_vmexit_inject +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8c192cd3 __SCK__tp_func_kvm_avic_unaccelerated_access EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8cc07ada gfn_to_hva_memslot -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8f0296d7 kvm_vcpu_block -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x909c4cfa __SCK__kvm_x86_tlb_flush_current -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x90d0d34c kvm_require_cpl +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8fb51b3a __kvm_request_apicv_update +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x90c9d3b3 __SCK__tp_func_kvm_skinit EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x912a9286 __traceiter_kvm_nested_intr_vmexit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x913668a5 kvm_post_set_cr4 -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x914a4911 kvm_service_local_tlb_flush_requests -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9184af06 __SCK__tp_func_kvm_avic_ga_log +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x916e3421 kvm_arch_end_assignment +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x92fbdb4c kvm_lapic_switch_to_hv_timer +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x93838dc4 hv_remote_flush_tlb_with_range EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x93a3e40e __SCT__tp_func_kvm_ple_window_update +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x93f3e02f kvm_read_guest_virt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9412bec8 kvm_vcpu_is_visible_gfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9418089c kvm_lapic_find_highest_irr EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x944882ed kvm_has_bus_lock_exit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x95bec89d hv_remote_flush_tlb_with_range -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x96e5b0be kvm_read_guest_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x970d4845 kvm_complete_insn_gp +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9628876f kvm_inject_nmi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x98047fd8 kvm_post_set_cr0 EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x98b40401 gfn_to_pfn_memslot_atomic -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x98f218a1 kvm_free_guest_fpu EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x98f9ad3b __SCT__tp_func_kvm_apicv_update_request +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9b046be4 __tracepoint_kvm_cr EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9cf59e7a allow_smaller_maxphyaddr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9d34d3f1 __SCK__tp_func_kvm_vmgexit_msr_protocol_exit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9d58f4e4 kvm_lapic_switch_to_sw_timer +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9cf902e4 kvm_hv_get_assist_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9d5438d5 mark_page_dirty_in_slot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9dd8eb5d kvm_get_kvm_safe EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9e20b2bc __traceiter_kvm_avic_incomplete_ipi -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9f31625b kvm_get_apic_base +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9e53a0eb kvm_mmu_gva_to_gpa_read +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9eb9c607 kvm_read_guest EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9f68faa3 __traceiter_kvm_avic_unaccelerated_access -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9fedf86a kvm_vcpu_is_visible_gfn -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa019e735 kvm_arch_has_noncoherent_dma -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa0adf08c __traceiter_kvm_exit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa1b82a02 __kvm_request_apicv_update +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9fa48cf2 kvm_set_apic_base EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa1c4231f kvm_set_pfn_dirty -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa3634946 kvm_emulate_wbinvd -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa3ec0b96 kvm_emulate_xsetbv -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa4a004c3 kvm_handle_invpcid -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa57023e9 kvm_lapic_reg_write -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa57d81f0 kvm_require_dr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa53aec99 kvm_write_guest_virt_system EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa588ef67 __SCT__tp_func_kvm_nested_intercepts EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa6a50230 __traceiter_kvm_nested_intercepts EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa7022320 __traceiter_kvm_avic_ga_log -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa73f92e1 __tracepoint_kvm_invlpga -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa79fe7d2 kvm_is_visible_gfn -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa7eff873 kvm_page_track_unregister_notifier EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa80595a6 __traceiter_kvm_inj_virq -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa810671c kvm_emulate_rdpmc +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa84489ef kvm_arch_no_poll EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa84a2e73 __SCT__tp_func_kvm_write_tsc_offset -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa880ff29 kvm_queue_exception -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa8b22f05 kvm_emulate_hypercall -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa8de5b2b __tracepoint_kvm_avic_unaccelerated_access -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa8f658d3 kvm_sev_es_mmio_write -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xaa8b6632 kvm_vcpu_update_apicv -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xac279c09 __traceiter_kvm_nested_vmexit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xac9cd2a0 kvm_vcpu_reset -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xae07846e gfn_to_pfn_prot -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xae1bf059 kvm_lmsw -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xaf051d98 kvm_write_guest_cached -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xafaeac4f kvm_emulate_mwait -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xafdd719d kvm_apicv_activated -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb03b05c6 kvm_mmu_new_pgd -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb0a0c8ec kvm_apic_clear_irr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb0ce091f __tracepoint_kvm_pml_full -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb1b4cf55 kvm_write_guest -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb1f6c833 kvm_vcpu_is_reset_bsp -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb270256b kvm_inject_realmode_interrupt -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb2c04899 load_pdptrs -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb4c0e8fb kvm_set_apic_base -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb5235344 kvm_post_set_cr0 -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb76d98c0 kvm_inject_emulated_page_fault -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb8610c1f kvm_gfn_to_hva_cache_init -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb8ee01dc kvm_put_kvm +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa85e42b8 kvm_wait_lapic_expire +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xade9aabc kvm_irq_has_notifier +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xadefdeae kvm_lapic_expired_hv_timer +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xae4d2d31 kvm_read_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xae5aaa6e kvm_emulate_invd +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xaed8a2fa kvm_set_cr8 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xaf266cf8 __tracepoint_kvm_nested_vmexit_inject +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb01dab17 kvm_vcpu_wake_up +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb066009a kvm_vcpu_update_apicv +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb16215d0 kvm_inject_emulated_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb29175fb kvm_task_switch +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb3981081 kvm_mmu_invlpg +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb46981ce __tracepoint_kvm_invlpga +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb47920d3 kvm_vcpu_write_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb5fa2d01 kvm_vcpu_read_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb60e76fb kvm_vcpu_read_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb8a5fa86 kvm_vcpu_read_guest_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb8acbd6a kvm_inject_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb95731e0 kvm_lapic_switch_to_sw_timer EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb96e9aa1 __traceiter_kvm_skinit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xba83cb8d kvm_page_track_register_notifier -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbb62d886 kvm_set_cr4 -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbb918b60 kvm_arch_end_assignment -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbd0ed1d3 kvm_fixup_and_inject_pf_error -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbdd6bb42 __SCK__kvm_x86_get_cs_db_l_bits -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbde77e2e kvm_read_guest_cached -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbe3d0d95 kvm_vcpu_read_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbd20bde4 kvm_service_local_tlb_flush_requests +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbda7fa9c kvm_is_valid_cr4 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbdd53e72 kvm_vcpu_reset +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbf2ab9d3 __tracepoint_kvm_pi_irte_update +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbf3a1476 kvm_apic_set_eoi_accelerated +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbf5ff7cf kvm_set_cr0 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbfa366a7 kvm_requeue_exception +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbfeb2572 kvm_emulate_instruction_from_buffer +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc01c06ef kvm_update_dr7 EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc071e99f __SCT__tp_func_kvm_entry -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc224d186 __tracepoint_kvm_avic_ga_log -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc2badfca kvm_arch_register_noncoherent_dma -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc445d45c current_vcpu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc1524f01 kvm_vcpu_on_spin +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc2820716 kvm_cpuid +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc3442725 gfn_to_pfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc39837d4 kvm_io_bus_write +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc3fcf0f8 kvm_emulate_instruction +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc51e423b kvm_mmu_reset_context +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc544a711 kvm_lapic_hv_timer_in_use +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc54cbb7a __tracepoint_kvm_skinit EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc60d7d0c __traceiter_kvm_pml_full -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc6d9784d kvm_get_msr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc7951323 vcpu_load -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc7fad6e7 kvm_mtrr_get_guest_memory_type -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc7ff431a __tracepoint_kvm_vmgexit_msr_protocol_exit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc823defb __tracepoint_kvm_nested_intr_vmexit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc8667718 kvm_mmu_gva_to_gpa_write -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc93e9a1d kvm_vcpu_read_guest_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc69b14cb kvm_vcpu_kick +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc80d0509 __tracepoint_kvm_nested_vmexit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc8f47b1e kvm_put_kvm_no_destroy EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc96d35f4 report_ignored_msrs -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcb8cb984 __traceiter_kvm_entry -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcc73d28d __tracepoint_kvm_vmgexit_msr_protocol_enter -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcda5c27b kvm_inject_page_fault -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xce09522f __tracepoint_kvm_inj_virq +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xca98541c gfn_to_page_many_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcc2baff2 kvm_arch_start_assignment +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcc4713cd __SCK__tp_func_kvm_vmgexit_enter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcd4835fe __tracepoint_kvm_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xce31ed91 kvm_inject_realmode_interrupt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xce32ff42 kvm_inject_pending_timer_irqs EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xce576a13 enable_apicv -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcea74077 kvm_get_cs_db_l_bits -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcebbb9f1 kvm_vcpu_gfn_to_page EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd0459e67 kvm_has_tsc_control EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd09da48b __SCT__tp_func_kvm_nested_intr_vmexit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd12d91a1 __SCK__tp_func_kvm_msr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd2a4c151 kvm_get_msr_common -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd35998c0 kvm_vcpu_unmap -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd488898c __tracepoint_kvm_vmgexit_exit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd50c9336 __tracepoint_kvm_vmgexit_enter -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd6677601 __SCK__tp_func_kvm_nested_vmrun -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd67f3db8 kvm_vcpu_kick -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd7756962 kvm_apic_match_dest -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd7d9d817 kvm_init_shadow_ept_mmu -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd8274a80 kvm_get_rflags -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd8826762 __SCK__tp_func_kvm_nested_intr_vmexit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd907a427 kvm_set_dr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd97d589d kvm_handle_invalid_op -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xda629dd1 kvm_arch_start_assignment -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdaf8b46e kvm_write_guest_offset_cached +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd33d1313 kvm_get_dr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd3ed0272 kvm_get_cs_db_l_bits +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd4360ea2 kvm_unmap_gfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd5c4fb58 handle_ud +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdc14229d __SCK__tp_func_kvm_pi_irte_update +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdc6bdab8 __tracepoint_kvm_vmgexit_exit EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdc7369fe __traceiter_kvm_msr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xde56055e kvm_vcpu_yield_to -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xde7f899d kvm_apic_write_nodecode -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xde99ff60 kvm_vcpu_halt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdcd6d4f0 kvm_write_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdd3cc79f __SCK__tp_func_kvm_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xddc95823 kvm_apic_clear_irr EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdf026a18 __traceiter_kvm_vmgexit_exit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe01d9e49 kvm_lapic_reg_read -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe0a7c5ae reprogram_fixed_counter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdf7c9d94 kvm_vcpu_mark_page_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdfc7565b kvm_set_msi_irq +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe0533cf6 __SCK__tp_func_kvm_write_tsc_offset +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe05e4bd2 kvm_handle_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe0b93652 kvm_get_kvm EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe0e786a7 __SCT__tp_func_kvm_skinit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe10e8f37 kvm_apic_update_ppr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe4239786 kvm_set_cr8 -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe477e69d kvm_lapic_switch_to_hv_timer -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe5765e9f kvm_valid_efer -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe58d3c48 kvm_wait_lapic_expire -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe8927692 kvm_clear_guest -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe937c3c1 x86_decode_emulated_instruction +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe1656eee kvm_apic_match_dest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe2a29135 __tracepoint_kvm_nested_intr_vmexit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe2eeb0d7 kvm_vcpu_map +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe2ff2abc kvm_mmu_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe33834e2 __SCK__tp_func_kvm_vmgexit_msr_protocol_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe3727c63 kvm_release_page_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe4139299 kvm_arch_has_noncoherent_dma +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe62dd725 reprogram_counter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe6965d97 kvm_scale_tsc +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe6dac90d __tracepoint_kvm_vmgexit_msr_protocol_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe7b61804 kvm_mtrr_valid EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe93dfc8c __SCT__tp_func_kvm_nested_vmenter_failed -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe94c4b16 kvm_inject_pending_timer_irqs EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe9674a16 supported_xcr0 -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe9b112ef __tracepoint_kvm_nested_vmexit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe9cd188f kvm_make_all_cpus_request -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xea129f8f kvm_mmu_reset_context -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xea22fa4e kvm_is_linear_rip -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xea28fcb9 kvm_io_bus_get_dev +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe974778f __tracepoint_kvm_write_tsc_offset +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe99d6034 kvm_make_all_cpus_request EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xea5cda33 __SCT__tp_func_kvm_fast_mmio -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xeb096bb0 kvm_vcpu_map -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xed55bdd3 __SCK__tp_func_kvm_apicv_update_request -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xedfa30f9 kvm_read_guest_page_mmu -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xee09bb14 kvm_fast_pio -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xef045132 __tracepoint_kvm_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xea83a346 kvm_read_guest_offset_cached +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xeca05664 __tracepoint_kvm_fast_mmio +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xecefb0ab kvm_arch_register_noncoherent_dma +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xeec1ce2b kvm_require_cpl EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xef14fd98 kvm_calc_nested_tsc_multiplier -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xef950db9 kvm_lapic_set_eoi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xefcd41c2 file_is_kvm EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf084b57d __SCT__tp_func_kvm_msr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf1356990 kvm_apic_update_irr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf1a79447 __SCK__tp_func_kvm_write_tsc_offset -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf1d2769d kvm_slot_page_track_remove_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf20b6bd3 kvm_emulate_halt -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf215cbc0 __SCK__tp_func_kvm_avic_unaccelerated_access -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf26c824c __tracepoint_kvm_nested_intercepts +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf0fa9214 __SCK__tp_func_kvm_nested_vmexit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf208c803 kvm_hv_assist_page_enabled +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf299b702 kvm_is_visible_gfn EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf2df48f3 __SCT__tp_func_kvm_pml_full -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf302113b __SCK__tp_func_kvm_ple_window_update EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf32dff97 __SCT__tp_func_kvm_avic_unaccelerated_access +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf33e031a __SCK__tp_func_kvm_vmgexit_exit EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf4668dfb __traceiter_kvm_vmgexit_enter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf4b084d0 __tracepoint_kvm_vmgexit_enter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf5406e15 __SCK__tp_func_kvm_entry EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf54e2886 __SCT__tp_func_kvm_vmgexit_msr_protocol_enter -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf6624289 __tracepoint_kvm_pi_irte_update -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf9f0e251 __tracepoint_kvm_avic_incomplete_ipi -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfb2a9899 __SCK__tp_func_kvm_fast_mmio -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfbf122ed __SCK__tp_func_kvm_vmgexit_msr_protocol_enter -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfc1b935c file_is_kvm -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfc54ea90 __x86_set_memory_region -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfd8b38b8 gfn_to_hva -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfe1ec498 kvm_sev_es_string_io -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfe4af439 kvm_vcpu_destroy -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfedb8924 kvm_debugfs_dir -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xff6b9709 __tracepoint_kvm_apicv_update_request -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xffa82567 kvm_vcpu_deliver_sipi_vector -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xffc7c262 __tracepoint_kvm_skinit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xffd883db kvm_flush_remote_tlbs -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xffff9440 mark_page_dirty_in_slot -EXPORT_SYMBOL_GPL crypto/af_alg 0x27abdffc af_alg_sendmsg -EXPORT_SYMBOL_GPL crypto/af_alg 0x2a74f149 af_alg_pull_tsgl -EXPORT_SYMBOL_GPL crypto/af_alg 0x40b5da79 af_alg_release_parent -EXPORT_SYMBOL_GPL crypto/af_alg 0x40cb229c af_alg_wait_for_data -EXPORT_SYMBOL_GPL crypto/af_alg 0x608c2cdf af_alg_free_sg -EXPORT_SYMBOL_GPL crypto/af_alg 0x627ef0f7 af_alg_sendpage -EXPORT_SYMBOL_GPL crypto/af_alg 0x71dae561 af_alg_release -EXPORT_SYMBOL_GPL crypto/af_alg 0x76c4261d af_alg_get_rsgl -EXPORT_SYMBOL_GPL crypto/af_alg 0x8c2a53e8 af_alg_unregister_type -EXPORT_SYMBOL_GPL crypto/af_alg 0x93168cf3 af_alg_accept -EXPORT_SYMBOL_GPL crypto/af_alg 0xa00f970b af_alg_free_resources -EXPORT_SYMBOL_GPL crypto/af_alg 0xaad002dd af_alg_wmem_wakeup -EXPORT_SYMBOL_GPL crypto/af_alg 0xb619afb8 af_alg_make_sg -EXPORT_SYMBOL_GPL crypto/af_alg 0xd5a1949a af_alg_poll -EXPORT_SYMBOL_GPL crypto/af_alg 0xe26aea21 af_alg_register_type -EXPORT_SYMBOL_GPL crypto/af_alg 0xe4256ccc af_alg_count_tsgl -EXPORT_SYMBOL_GPL crypto/af_alg 0xf27a5889 af_alg_alloc_areq -EXPORT_SYMBOL_GPL crypto/af_alg 0xf5f3502a af_alg_async_cb -EXPORT_SYMBOL_GPL crypto/asymmetric_keys/asym_tpm 0x4caddbeb asym_tpm_subtype +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf708db7f kvm_set_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf81fe55b kvm_release_page_clean +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf84b3fe1 kvm_sev_es_mmio_write +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf8848599 kvm_emulate_wrmsr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf8b08327 kvm_get_apic_base +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf9e37f71 mark_page_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfa149a1c kvm_apic_update_apicv +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfa9b12df kvm_cpu_has_interrupt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfb3ff4d0 kvm_valid_efer +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfc2cfe35 kvm_read_guest_page_mmu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfd51c2b5 __SCK__tp_func_kvm_nested_intr_vmexit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfd7369fc kvm_write_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfe63ad32 kvm_set_msr_common +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfeb555c0 kvm_vcpu_unmap +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xff82ef42 kvm_mmu_free_roots +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xff86b208 kvm_load_guest_xsave_state +EXPORT_SYMBOL_GPL crypto/af_alg 0x0ad4c6ca af_alg_alloc_areq +EXPORT_SYMBOL_GPL crypto/af_alg 0x0b99211c af_alg_poll +EXPORT_SYMBOL_GPL crypto/af_alg 0x23c22064 af_alg_accept +EXPORT_SYMBOL_GPL crypto/af_alg 0x4948b2d1 af_alg_free_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x55b5be86 af_alg_pull_tsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0x5a81e45c af_alg_wait_for_data +EXPORT_SYMBOL_GPL crypto/af_alg 0x70409e9a af_alg_sendpage +EXPORT_SYMBOL_GPL crypto/af_alg 0x8117cd4d af_alg_make_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x8fa75cc7 af_alg_free_resources +EXPORT_SYMBOL_GPL crypto/af_alg 0x92863b20 af_alg_sendmsg +EXPORT_SYMBOL_GPL crypto/af_alg 0x9ae89346 af_alg_release_parent +EXPORT_SYMBOL_GPL crypto/af_alg 0x9db9b2b8 af_alg_async_cb +EXPORT_SYMBOL_GPL crypto/af_alg 0xa1c98718 af_alg_count_tsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0xab2c7005 af_alg_unregister_type +EXPORT_SYMBOL_GPL crypto/af_alg 0xb248af4f af_alg_release +EXPORT_SYMBOL_GPL crypto/af_alg 0xbf489110 af_alg_register_type +EXPORT_SYMBOL_GPL crypto/af_alg 0xceb4517a af_alg_get_rsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0xeb8a08b6 af_alg_wmem_wakeup EXPORT_SYMBOL_GPL crypto/asymmetric_keys/asym_tpm 0x7430f97c tpm_key_create -EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0x5a2a33ff async_memcpy -EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x92f7cd79 async_gen_syndrome -EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0xc72a4d99 async_syndrome_val -EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x3560f43b async_raid6_datap_recov -EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0xe88e1836 async_raid6_2data_recov -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x176002e7 async_tx_submit -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x898a4a06 async_trigger_callback -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x9122f758 async_tx_quiesce -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xecfdc452 __async_tx_find_channel -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x0467dec6 async_xor_val -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x181329d0 async_xor -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x9bb1ce9c async_xor_val_offs -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xaa7c4995 async_xor_offs +EXPORT_SYMBOL_GPL crypto/asymmetric_keys/asym_tpm 0x903c210a asym_tpm_subtype +EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0x904adcfb async_memcpy +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x8af38cc7 async_syndrome_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0xa00e655a async_gen_syndrome +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x6d2c7609 async_raid6_datap_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0xd977c5ef async_raid6_2data_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x14ba9c70 async_tx_submit +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x6936e2c2 async_trigger_callback +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xb35fd499 __async_tx_find_channel +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xcb08578a async_tx_quiesce +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x58505cbe async_xor_val_offs +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x819b0151 async_xor +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xa705afb1 async_xor_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xe1b9a82d async_xor_offs EXPORT_SYMBOL_GPL crypto/authenc 0x2479193e crypto_authenc_extractkeys -EXPORT_SYMBOL_GPL crypto/blowfish_common 0x23a54986 blowfish_setkey +EXPORT_SYMBOL_GPL crypto/blowfish_common 0x1c26b3e1 blowfish_setkey EXPORT_SYMBOL_GPL crypto/cast5_generic 0x188d9d26 __cast5_decrypt EXPORT_SYMBOL_GPL crypto/cast5_generic 0x3b2dce97 cast5_setkey EXPORT_SYMBOL_GPL crypto/cast5_generic 0xef81a4af __cast5_encrypt @@ -12196,32 +12211,32 @@ 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 0x06bc225f cryptd_free_skcipher -EXPORT_SYMBOL_GPL crypto/cryptd 0x255c18df cryptd_alloc_skcipher -EXPORT_SYMBOL_GPL crypto/cryptd 0x38e04b8c cryptd_alloc_ahash -EXPORT_SYMBOL_GPL crypto/cryptd 0x3df1b885 cryptd_skcipher_child -EXPORT_SYMBOL_GPL crypto/cryptd 0x3f51bb6f cryptd_free_aead -EXPORT_SYMBOL_GPL crypto/cryptd 0x3f7ecff9 cryptd_aead_queued -EXPORT_SYMBOL_GPL crypto/cryptd 0x52eb5a1c cryptd_skcipher_queued -EXPORT_SYMBOL_GPL crypto/cryptd 0x71522226 cryptd_alloc_aead -EXPORT_SYMBOL_GPL crypto/cryptd 0x756e575f cryptd_aead_child -EXPORT_SYMBOL_GPL crypto/cryptd 0x7f8504f3 cryptd_shash_desc -EXPORT_SYMBOL_GPL crypto/cryptd 0x89af1489 cryptd_ahash_child -EXPORT_SYMBOL_GPL crypto/cryptd 0x9fed62cf cryptd_free_ahash -EXPORT_SYMBOL_GPL crypto/cryptd 0xc2fedeb7 cryptd_ahash_queued -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x08159314 crypto_engine_stop -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x36898342 crypto_transfer_skcipher_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x3e83db5f crypto_finalize_aead_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x42e6a139 crypto_transfer_aead_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x51a5c388 crypto_engine_exit -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x61491491 crypto_engine_start -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x7b7aac4b crypto_finalize_akcipher_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x8c8b3307 crypto_finalize_skcipher_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xa171b0c0 crypto_engine_alloc_init -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xa601f96d crypto_engine_alloc_init_and_set -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xc098d773 crypto_finalize_hash_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xe929f817 crypto_transfer_hash_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xec9ca629 crypto_transfer_akcipher_request_to_engine +EXPORT_SYMBOL_GPL crypto/cryptd 0x0802358a cryptd_free_skcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0x0c8a7a91 cryptd_ahash_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0x300afde6 cryptd_skcipher_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0x4ff0f94a cryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x6dbec378 cryptd_aead_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x799fd1ad cryptd_free_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0xa10dd30e cryptd_skcipher_child +EXPORT_SYMBOL_GPL crypto/cryptd 0xaaa9bf0f cryptd_alloc_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0xb85111a6 cryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/cryptd 0xbc4ec75a cryptd_alloc_skcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0xcf58e1cf cryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0xdc34d6d1 cryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0xf5a1c664 cryptd_aead_queued +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x0e78b1a7 crypto_transfer_aead_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x0f169f2d crypto_transfer_skcipher_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x0f35ecc5 crypto_finalize_aead_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x3ccb4246 crypto_transfer_akcipher_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x3e4a03eb crypto_engine_stop +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x42c13ca3 crypto_finalize_skcipher_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x5cea5ae8 crypto_engine_alloc_init +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x608ddc9e crypto_engine_exit +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x818c4717 crypto_finalize_hash_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x9fab1159 crypto_transfer_hash_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xb153cc21 crypto_finalize_akcipher_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xd045d782 crypto_engine_start +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xf63098ea crypto_engine_alloc_init_and_set EXPORT_SYMBOL_GPL crypto/crypto_simd 0x3f1e318f simd_register_aeads_compat EXPORT_SYMBOL_GPL crypto/crypto_simd 0x504cb053 simd_aead_create_compat EXPORT_SYMBOL_GPL crypto/crypto_simd 0x561b206c simd_unregister_aeads @@ -12242,13 +12257,13 @@ EXPORT_SYMBOL_GPL crypto/sm3_generic 0x0bddca87 sm3_zero_message_hash EXPORT_SYMBOL_GPL crypto/twofish_common 0x3db90ee2 twofish_setkey EXPORT_SYMBOL_GPL crypto/twofish_common 0xe22b7787 __twofish_setkey +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x2b93859d 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 0x5f5fa5ff acpi_nfit_ctl -EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x7ae49da0 acpi_nfit_init -EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x8f56d6ba __acpi_nvdimm_notify -EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0xc7a60497 __acpi_nfit_notify -EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0xeaeb7e18 acpi_nfit_desc_init +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x88797598 acpi_nfit_ctl +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0xf0181438 __acpi_nvdimm_notify +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0xf4fa1cd6 acpi_nfit_init +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0xf69c9cc5 __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 @@ -12256,48 +12271,48 @@ 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 0x037b62ac ahci_stop_engine -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x0af08293 ahci_do_hardreset -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x17b7206d ahci_init_controller -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x22b09c22 ahci_fill_cmd_slot -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x2cad54c8 ahci_host_activate -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x3057d931 ahci_error_handler -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x43b3b62e ahci_dev_classify -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x5fa9a133 ahci_start_engine -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x618e36dc ahci_reset_em -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x67352c30 ahci_set_em_messages -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x76728652 ahci_qc_issue -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x818d2d76 ahci_handle_port_intr -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xa5533e39 ahci_port_resume -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xa935e6a0 ahci_check_ready -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xaa95fe46 ahci_print_info -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xab0d9b10 ahci_ops -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xba2b43e2 ahci_do_softreset -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xcca0d0c4 ahci_reset_controller -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xd777d539 ahci_kick_engine -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xe096d866 ahci_save_initial_config -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xe14d12b3 ahci_sdev_attrs -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xe3d153a2 ahci_start_fis_rx +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x0844c7e9 ahci_reset_em +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x1363c7c1 ahci_shost_attrs +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x164c5dd6 ahci_dev_classify +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x1e996a79 ahci_handle_port_intr +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x3a6c23b1 ahci_sdev_attrs +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x45df329c ahci_port_resume +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x4d1f510d ahci_host_activate +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x5866ac59 ahci_error_handler +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x66797704 ahci_stop_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x683d9f97 ahci_start_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x6f1985da ahci_set_em_messages +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x79ac1fa2 ahci_do_hardreset +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x8268ff39 ahci_kick_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x929103e4 ahci_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xaf647ba4 ahci_start_fis_rx +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xcd214f0d ahci_init_controller +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xd0f4baf0 ahci_save_initial_config +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xdb33a88a ahci_do_softreset +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xdd1e3e99 ahci_qc_issue +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xe5f2ddc3 ahci_print_info +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xe78647a8 ahci_fill_cmd_slot EXPORT_SYMBOL_GPL drivers/ata/libahci 0xea50dad3 ahci_ignore_sss -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xf9c8b6fe ahci_pmp_retry_srst_ops -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xfdb687dc ahci_shost_attrs -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x25f219ba ahci_platform_init_host -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x4376a580 ahci_platform_enable_regulators -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x5969a844 ahci_platform_enable_phys -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x704528f9 ahci_platform_disable_phys -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x7aa73036 ahci_platform_resume -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x8308d827 ahci_platform_suspend -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x89bc7850 ahci_platform_disable_regulators -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x90e1d442 ahci_platform_disable_resources -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x992369e2 ahci_platform_ops -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xa656251f ahci_platform_suspend_host -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xd726b8a3 ahci_platform_enable_clks -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xddc301db ahci_platform_shutdown -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xdf44dd7c ahci_platform_get_resources -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xe0fe8eb3 ahci_platform_enable_resources -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xfe0a381e ahci_platform_disable_clks -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xff47b253 ahci_platform_resume_host -EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0x14fdbaf5 __pata_platform_probe +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xeaa00291 ahci_pmp_retry_srst_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xf135ec15 ahci_reset_controller +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xf760122b ahci_check_ready +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x00777af8 ahci_platform_enable_clks +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x1e8bb206 ahci_platform_enable_regulators +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x293e6fcc ahci_platform_enable_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x49ffa63e ahci_platform_init_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x6f014916 ahci_platform_disable_clks +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xa1f7512a ahci_platform_disable_phys +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xce8162c4 ahci_platform_enable_phys +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xd1331767 ahci_platform_suspend +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xd95ffb56 ahci_platform_get_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xd99b79ff ahci_platform_disable_regulators +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xdd366447 ahci_platform_resume +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xe5ffc31d ahci_platform_suspend_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xe8627610 ahci_platform_shutdown +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xee5d22b7 ahci_platform_disable_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xf7ca6e8c ahci_platform_resume_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xff3eb83f ahci_platform_ops +EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0x28645bfe __pata_platform_probe EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0x02ff9464 cfag12864b_isinited EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0x0ecb2e5d cfag12864b_disable EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0x305dc3c6 cfag12864b_isenabled @@ -12331,247 +12346,247 @@ EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xbf4774db ks0108_writecontrol EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xedde6df2 ks0108_page EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xfee8ef7b ks0108_address -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-i3c 0x02eaffca __devm_regmap_init_i3c -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0x478da3a3 __devm_regmap_init_sccb -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0x514c9270 __regmap_init_sccb -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw 0x2fc947d8 __regmap_init_sdw -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw 0xc64078f2 __devm_regmap_init_sdw -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw-mbq 0x2e253677 __regmap_init_sdw_mbq -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw-mbq 0xfd0aa25e __devm_regmap_init_sdw_mbq -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0x2efd3c06 __devm_regmap_init_slimbus -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0xcdd22c76 __regmap_init_slimbus -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spi-avmm 0xa402f792 __devm_regmap_init_spi_avmm -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spi-avmm 0xaf79c462 __regmap_init_spi_avmm -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x190a2bed __devm_regmap_init_spmi_base -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x293a3f1a __regmap_init_spmi_base -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x35e395ec __regmap_init_spmi_ext -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xb0088b03 __devm_regmap_init_spmi_ext -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0x5107d1ff __devm_regmap_init_w1 -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0x85e6c0c3 __regmap_init_w1 -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x0fe107ff bcma_chipco_b_mii_write -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x159533f2 __bcma_driver_register -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x1dbfaeb3 bcma_core_disable -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x240d6bda bcma_chipco_get_alp_clock -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x35d73eaa bcma_core_set_clockmode -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x3b833e48 bcma_chipco_pll_write -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x4c131f06 bcma_chipco_regctl_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x52a5d928 bcma_chipco_pll_read -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x6f9193aa bcma_core_pci_power_save -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x760ff339 bcma_host_pci_up -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x85ef48c9 bcma_find_core_unit -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x87065b09 bcma_pmu_get_bus_clock -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x8770b5e2 bcma_host_pci_irq_ctl -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x9686d78e bcma_host_pci_down -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa76779f5 bcma_core_is_enabled -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xad98ae2b bcma_driver_unregister -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc9e0b8e3 bcma_core_pll_ctl -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc9e26ed3 bcma_chipco_gpio_outen -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd96c9ddf bcma_chipco_gpio_control -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xdca698e6 bcma_chipco_pll_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe4d5fd48 bcma_core_enable -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xed31376c bcma_pmu_spuravoid_pllupdate -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xee6ca062 bcma_chipco_gpio_out -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xfcd13270 bcma_chipco_chipctl_maskset -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x1e66afaf btbcm_initialize -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x1fbd2970 btbcm_write_pcm_int_params -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x3ab215ae btbcm_setup_apple -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x48ab0fdc btbcm_setup_patchram -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x6706e3f8 btbcm_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x73a08a06 btbcm_finalize -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x797d0508 btbcm_read_pcm_int_params -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xc250b9a4 btbcm_check_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x49d03ac0 btintel_load_ddc_config -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x4bc31eea btintel_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x5d83cdc1 btintel_exit_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x620bac3c btintel_check_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x76f8f4d3 btintel_version_info -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x817cde41 btintel_read_boot_params -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x902ba403 btintel_bootup -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x90944df3 btintel_enter_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x9b765fea btintel_set_event_mask_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xa1fd675b btintel_secure_send_result -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xad4426ea btintel_configure_setup -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xb21e6e96 btintel_set_diag -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xb6fba388 btintel_send_intel_reset -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xe0653585 btintel_download_firmware -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xea2ad036 btintel_regmap_init -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xf2f20a63 btintel_read_version -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x108c65c0 btmrvl_send_hscfg_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x15c13cb0 btmrvl_interrupt -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x1ca23b5e btmrvl_pscan_window_reporting -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x25f6f9fb btmrvl_remove_card -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x2dc79057 btmrvl_process_event -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x5d5a3b09 btmrvl_register_hdev -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x5daf0387 btmrvl_check_evtpkt -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xb377be20 btmrvl_enable_hs -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xc052d855 btmrvl_send_module_cfg_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xc46c6825 btmrvl_add_card -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xce1382a0 btmrvl_enable_ps -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x16e31764 qca_send_pre_shutdown_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x504386d6 qca_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x5b440384 qca_read_soc_version -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x5f44d48a qca_uart_setup -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xf598e34d qca_set_bdaddr_rome -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x33902b95 btrtl_shutdown_realtek -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x3ca772de btrtl_set_quirks -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x410cc6e8 btrtl_setup_realtek -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x475e256b btrtl_download_firmware -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x651fced2 btrtl_get_uart_settings -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xa24dc1ae btrtl_initialize +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-i3c 0x3f4d26a9 __devm_regmap_init_i3c +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0x6a43b7a7 __devm_regmap_init_sccb +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0xd0a8aa19 __regmap_init_sccb +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw 0x3bbbe09d __regmap_init_sdw +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw 0xff34e51c __devm_regmap_init_sdw +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw-mbq 0x2a378b0c __devm_regmap_init_sdw_mbq +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw-mbq 0x590b1a94 __regmap_init_sdw_mbq +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0x135ea1bc __devm_regmap_init_slimbus +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0xe1e3d673 __regmap_init_slimbus +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spi-avmm 0x1c7800b1 __devm_regmap_init_spi_avmm +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spi-avmm 0x6ab51bf0 __regmap_init_spi_avmm +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x146162b6 __regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x2bedc1c5 __devm_regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x5710ba0c __regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x9e231629 __devm_regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0x54660b4c __regmap_init_w1 +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0xbaeb7065 __devm_regmap_init_w1 +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x025d7255 bcma_core_pll_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x06d6ae57 bcma_core_set_clockmode +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x102e0001 bcma_chipco_pll_read +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x189758d5 bcma_find_core_unit +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x1b0de26e bcma_chipco_gpio_out +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x2ddef745 bcma_chipco_regctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x31f86dcc bcma_chipco_get_alp_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x3776b1db bcma_core_disable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x38d00264 bcma_chipco_gpio_control +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x3d50d837 bcma_chipco_pll_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x3d9ecf9f bcma_core_enable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x45a63b5f bcma_core_pci_power_save +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x4c800911 __bcma_driver_register +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x54639173 bcma_host_pci_irq_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x6f2022a5 bcma_pmu_get_bus_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x8dd17141 bcma_host_pci_down +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xaeeae09a bcma_chipco_b_mii_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc674ac26 bcma_core_is_enabled +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd0931e5b bcma_chipco_gpio_outen +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd136e805 bcma_driver_unregister +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd5272e04 bcma_host_pci_up +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xead07a7b bcma_chipco_chipctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf6189d6b bcma_chipco_pll_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xfe3530b3 bcma_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x002e3e93 btbcm_write_pcm_int_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x1bd647f5 btbcm_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x645bb76d btbcm_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x81e7a66a btbcm_setup_patchram +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xb17bb552 btbcm_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xb8c1eb44 btbcm_read_pcm_int_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xcf38f79d btbcm_finalize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xe9337a59 btbcm_setup_apple +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x1113f818 btintel_regmap_init +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x324ff80d btintel_send_intel_reset +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x3f21c81b btintel_read_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x444e845d btintel_secure_send_result +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x45d5a72a btintel_exit_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x548fa44b btintel_bootup +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x87b6696b btintel_load_ddc_config +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x9d9243fa btintel_enter_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xa1c89c26 btintel_configure_setup +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xb067a481 btintel_read_boot_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xb77694a1 btintel_download_firmware +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xc48ddf49 btintel_set_diag +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xc9eac335 btintel_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xda112065 btintel_version_info +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xed36e852 btintel_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xeeecef23 btintel_set_event_mask_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x3a3dc5b5 btmrvl_interrupt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x3dc67374 btmrvl_process_event +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x527145cf btmrvl_send_hscfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x73094253 btmrvl_enable_ps +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x778e6a19 btmrvl_remove_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x8405b9d4 btmrvl_register_hdev +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x908aaf6b btmrvl_send_module_cfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xa4e7a9a1 btmrvl_pscan_window_reporting +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xc3a81261 btmrvl_add_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xd7698ac3 btmrvl_check_evtpkt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xe15cbf34 btmrvl_enable_hs +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x1e9fb64e qca_set_bdaddr_rome +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x3f88512f qca_send_pre_shutdown_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x738f7b74 qca_read_soc_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x7708be37 qca_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xe3ebf231 qca_uart_setup +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x21ba2c64 btrtl_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x6e96acb4 btrtl_shutdown_realtek EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xaf78f260 btrtl_free -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x0b3b0825 hci_uart_register_device -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x33149bf9 h4_recv_buf -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x6bdb73bf hci_uart_unregister_device -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0xdd37eee4 hci_uart_tx_wakeup -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x053804ec mhi_queue_is_full -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x0e768d8d mhi_free_controller -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x195c81cc mhi_prepare_for_power_up -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x1eecfd20 mhi_unprepare_after_power_down -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x2066d6cf mhi_device_put -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x2194dbc8 mhi_register_controller -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x232fc239 mhi_driver_unregister -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x259b27e9 mhi_download_rddm_image -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x39d048a8 mhi_queue_skb -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x3a041040 mhi_async_power_up -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x3a2de498 mhi_get_exec_env -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x4cba3e36 mhi_poll -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x4ddfe1b0 mhi_pm_resume -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x574e21af __mhi_driver_register -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x61ce5eb5 mhi_unregister_controller -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x696e5bc0 mhi_pm_suspend -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x73be0eb8 mhi_unprepare_from_transfer -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x78c73a5c mhi_get_free_desc_count -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x81b46f43 mhi_prepare_for_transfer -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x96149020 mhi_soc_reset -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x96d71066 mhi_pm_resume_force -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x9e72d98d mhi_notify -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x9f46f494 mhi_alloc_controller -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xa94d2a2e mhi_queue_dma -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xa985cdc2 mhi_force_rddm_mode -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xb5b78936 mhi_power_down -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xc29401b1 mhi_queue_buf -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xcd475c0b mhi_get_mhi_state -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xcff58ed0 mhi_device_get_sync -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xd03fa27a mhi_device_get -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x00531398 comedi_buf_read_n_available -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x012af7f3 comedi_set_hw_dev +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xd4b08fcb btrtl_setup_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xe1d8d76c btrtl_get_uart_settings +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xf3bf2198 btrtl_set_quirks +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xff74c6c6 btrtl_download_firmware +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x4d62d11a hci_uart_register_device +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x7c999161 h4_recv_buf +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x930ad2f4 hci_uart_unregister_device +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0xeaf7c744 hci_uart_tx_wakeup +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x02422368 mhi_poll +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x07d7082d mhi_get_free_desc_count +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x084f121d mhi_pm_resume +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x162cb57c mhi_get_exec_env +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x283a673b mhi_notify +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x2842172f mhi_force_rddm_mode +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x28be1412 mhi_unprepare_from_transfer +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x29385d9c __mhi_driver_register +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x30be26b4 mhi_queue_dma +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x3ded9973 mhi_device_get +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x66b4a94b mhi_alloc_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x68642935 mhi_queue_is_full +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x733dc4d2 mhi_driver_unregister +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x856caf04 mhi_pm_suspend +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x92c8cead mhi_get_mhi_state +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x96bea97d mhi_prepare_for_transfer +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x9d51878e mhi_free_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xaeba5e77 mhi_device_get_sync +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xb54b3e66 mhi_power_down +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xbd1c0c60 mhi_async_power_up +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xc7f9df89 mhi_prepare_for_power_up +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xc8611c17 mhi_pm_resume_force +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xc905b54c mhi_download_rddm_image +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xd022db59 mhi_unregister_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xd310d9d7 mhi_unprepare_after_power_down +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xe7c3dd3a mhi_queue_buf +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xe8f7b14b mhi_soc_reset +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xeb04349a mhi_device_put +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xefe2cf13 mhi_queue_skb +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xf217a27c mhi_register_controller +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x0555336d comedi_set_hw_dev +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x0a0d3152 comedi_bytes_per_scan EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x0cd330f4 range_unknown -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x1486bbb4 comedi_is_subdevice_running -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x15909fae comedi_request_region -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x19e5fc5b comedi_event +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x189c46ae comedi_alloc_devpriv +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x1bf3aa67 __comedi_request_region EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x21102f87 range_0_32mA -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x229e8e6b comedi_buf_read_free -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x2a6a3a30 comedi_timeout -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x2eedb411 comedi_inc_scan_progress EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x2f0ad9d3 range_bipolar5 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x31e93419 comedi_buf_write_free -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x3d47add9 comedi_alloc_subdevices -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x3e97489f comedi_handle_events -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x40e1311b comedi_driver_unregister +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x33a513dd comedi_alloc_subdev_readback +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x33be525b comedi_alloc_spriv +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x363a906f comedi_buf_write_free +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x41487d3a comedi_inc_scan_progress +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x422ae342 comedi_auto_config EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4236eaaf range_4_20mA -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4b845871 comedi_buf_write_samples -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4f504134 comedi_set_spriv_auto_free +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4b0805bb comedi_bytes_per_scan_cmd +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4da8fdb4 comedi_auto_unconfig EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4fe634f3 range_bipolar2_5 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x537f42d5 comedi_dio_update_state -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x5a3e81e0 comedi_nsamples_left -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x6532b8d9 __comedi_request_region -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x6aee9353 comedi_check_chanlist -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x70f55479 comedi_readback_insn_read -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x72ddfa26 comedi_buf_read_alloc -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x731c3678 comedi_bytes_per_scan_cmd +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x54d4a347 comedi_nsamples_left +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x5b2f8de8 comedi_buf_write_alloc +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x66094a92 comedi_buf_read_free +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x67164172 comedi_legacy_detach +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x6cf3c3eb comedi_driver_unregister EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x8113872c range_unipolar10 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x889f4efe comedi_dev_put -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x96699044 comedi_buf_read_samples -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x9f3cc1e2 comedi_auto_unconfig -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xa3323ed7 comedi_nscans_left -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xa95de98e comedi_alloc_devpriv -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xac335ae5 comedi_legacy_detach -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xb16d689e comedi_dio_insn_config -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xb4a3805f comedi_bytes_per_scan +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x85256039 comedi_check_chanlist +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x8c8adace comedi_set_spriv_auto_free +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x916ef303 comedi_alloc_subdevices +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x93c4a9ca comedi_nscans_left +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x968126b7 comedi_dev_put +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x98733093 comedi_buf_read_alloc +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x99a6af4b comedi_buf_read_n_available +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xa3646710 comedi_buf_read_samples +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xa47c07eb comedi_event +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xabb278c6 comedi_driver_register +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xb49793c5 comedi_handle_events +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xb50653d4 comedi_dio_insn_config EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xb679cebc range_0_20mA EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xbb52fc7f range_bipolar10 EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xbdbe75c6 range_unipolar2_5 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xc8b38b8f comedi_driver_register -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xcbad64d0 comedi_auto_config -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xccc59d8c comedi_buf_write_alloc -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xdb17059a comedi_alloc_subdev_readback +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xc7128c43 comedi_dev_get_from_minor +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xc78c2f79 comedi_request_region +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xd2577e6b comedi_dio_update_state EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xdb2044b2 range_unipolar5 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xdcf9e201 comedi_dev_get_from_minor -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xdfaa9233 comedi_alloc_spriv -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xf6710c24 comedi_load_firmware -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x2e2138d5 comedi_pci_auto_unconfig -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x33f25012 comedi_pci_disable -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x53c1f813 comedi_pci_detach -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x666deaac comedi_pci_enable -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x98db3189 comedi_pci_auto_config -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xc710695a comedi_to_pci_dev -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xd982334f comedi_pci_driver_unregister -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xde4b27c3 comedi_pci_driver_register -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pcmcia 0x054364c2 comedi_to_pcmcia_dev -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pcmcia 0x1fdc0e3a comedi_pcmcia_enable -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pcmcia 0x2ecc3cab comedi_pcmcia_disable -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pcmcia 0x5973581b comedi_pcmcia_driver_unregister -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pcmcia 0x8f78442b comedi_pcmcia_driver_register -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pcmcia 0x9a674638 comedi_pcmcia_auto_config -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pcmcia 0xee35592e comedi_pcmcia_auto_unconfig -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x1afba398 comedi_usb_auto_unconfig -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x1e7c54a4 comedi_usb_driver_register -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x4e84e834 comedi_to_usb_interface -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x80033679 comedi_usb_auto_config -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0xaf1c9883 comedi_usb_driver_unregister -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0xe3bc7b58 comedi_to_usb_dev +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xdf1e84a2 comedi_readback_insn_read +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xdfb89697 comedi_load_firmware +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xf96e930a comedi_timeout +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xfc7ddfe5 comedi_buf_write_samples +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xfca4334f comedi_is_subdevice_running +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x0dc47eaa comedi_to_pci_dev +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x35c08fdc comedi_pci_driver_unregister +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x58d699cb comedi_pci_driver_register +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x938eedc7 comedi_pci_detach +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xa230f347 comedi_pci_auto_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xb1af3372 comedi_pci_auto_unconfig +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xe42ad786 comedi_pci_enable +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xee1614d1 comedi_pci_disable +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pcmcia 0x09e33bc9 comedi_to_pcmcia_dev +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pcmcia 0x143026ef comedi_pcmcia_driver_unregister +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pcmcia 0x3f11c392 comedi_pcmcia_auto_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pcmcia 0x556ded50 comedi_pcmcia_auto_unconfig +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pcmcia 0x750f24a3 comedi_pcmcia_disable +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pcmcia 0xc7611542 comedi_pcmcia_enable +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pcmcia 0xf8e79737 comedi_pcmcia_driver_register +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x163e26b7 comedi_to_usb_interface +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x9a459cbc comedi_usb_auto_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0xa99c4dcd comedi_usb_driver_register +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0xb22bee01 comedi_usb_driver_unregister +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0xbe595984 comedi_to_usb_dev +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0xdefe4c16 comedi_usb_auto_unconfig EXPORT_SYMBOL_GPL drivers/comedi/drivers/addi_watchdog 0x79f4a6cf addi_watchdog_reset -EXPORT_SYMBOL_GPL drivers/comedi/drivers/addi_watchdog 0xb7f35c61 addi_watchdog_init -EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_dio200_common 0x077985ce amplc_dio200_common_attach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_dio200_common 0x434f75ed amplc_dio200_set_enhance -EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_pc236_common 0xc9e06d27 amplc_pc236_common_attach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x2fdbe1a9 comedi_8254_subdevice_init -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x365aa6f9 comedi_8254_read -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x398addf7 comedi_8254_mm_init -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x3eb94352 comedi_8254_init -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x549f51ed comedi_8254_pacer_enable -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x605ee8df comedi_8254_set_busy -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x69a635c0 comedi_8254_ns_to_timer -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x7c8ca5b3 comedi_8254_update_divisors -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xa267e44f comedi_8254_cascade_ns_to_timer -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xa946beed comedi_8254_load -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xdef38890 comedi_8254_status -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xf2ec77a3 comedi_8254_set_mode -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xff01c96c comedi_8254_write -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0xab0e6463 subdev_8255_regbase -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0xc874f6b7 subdev_8255_mm_init -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0xd4254409 subdev_8255_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/addi_watchdog 0xca9d7de8 addi_watchdog_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_dio200_common 0x219d5ccd amplc_dio200_common_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_dio200_common 0x570fa613 amplc_dio200_set_enhance +EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_pc236_common 0xddff857c amplc_pc236_common_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x0053355f comedi_8254_pacer_enable +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x128bed8f comedi_8254_set_mode +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x1cf097e1 comedi_8254_set_busy +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x215fcdcc comedi_8254_cascade_ns_to_timer +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x2538297a comedi_8254_mm_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x2bebf6fc comedi_8254_read +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x4db3d6fe comedi_8254_subdevice_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x51b566cd comedi_8254_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x79f120c1 comedi_8254_write +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x8a067101 comedi_8254_ns_to_timer +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xa7447471 comedi_8254_status +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xca552ab5 comedi_8254_update_divisors +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xecd37106 comedi_8254_load +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0x5db2257c subdev_8255_mm_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0x6cc8b9b7 subdev_8255_regbase +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0xb150612a subdev_8255_init EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_isadma 0x12fba874 comedi_isadma_disable -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_isadma 0x1df5298f comedi_isadma_alloc -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_isadma 0x20f7fda5 comedi_isadma_free -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_isadma 0x47b7dc84 comedi_isadma_poll +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_isadma 0x3fcb761e comedi_isadma_free +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_isadma 0x491d0fb7 comedi_isadma_poll EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_isadma 0x4a17474e comedi_isadma_disable_on_sample EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_isadma 0xca784d4b comedi_isadma_set_mode +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_isadma 0xe9698b76 comedi_isadma_alloc EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_isadma 0xea878430 comedi_isadma_program -EXPORT_SYMBOL_GPL drivers/comedi/drivers/das08 0xc28f7be5 das08_common_attach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x006fd044 mite_dma_disarm -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x0cfa0fd0 mite_prep_dma -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x1b610990 mite_request_channel_in_range -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x21c34a3b mite_done -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x2c19ac45 mite_free_ring -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x2eaeddbb mite_buf_change -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x63b068f9 mite_release_channel -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x6ea29a98 mite_detach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x94dcc28f mite_ack_linkc -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xb41df7fd mite_sync_dma -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xc8c2b0a6 mite_dma_arm -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xec44077f mite_attach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xf08c26ca mite_init_ring_descriptors -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xf2b7ab31 mite_alloc_ring -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xf6677408 mite_request_channel -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xf6d02310 mite_bytes_in_transit -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_common 0x956d9d7d labpc_common_attach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_common 0xc4902e84 labpc_common_detach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_isadma 0x621a7534 labpc_free_dma_chan -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_isadma 0x7174f338 labpc_init_dma_chan -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_isadma 0x8617e607 labpc_drain_dma -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_isadma 0xa0f50104 labpc_handle_dma_status -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_isadma 0xce8f76a5 labpc_setup_dma +EXPORT_SYMBOL_GPL drivers/comedi/drivers/das08 0x75ba5371 das08_common_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x0f8cd63a mite_prep_dma +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x2a9ecf64 mite_detach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x4ae59e0c mite_alloc_ring +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x51ceddf8 mite_done +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x7ef8f019 mite_buf_change +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x9650d6f3 mite_free_ring +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xaf29fa8e mite_ack_linkc +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xc2627574 mite_request_channel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xc9587e54 mite_release_channel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xcb880c01 mite_init_ring_descriptors +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xda277fec mite_request_channel_in_range +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xde47ecb1 mite_dma_disarm +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xe1d7a2f6 mite_dma_arm +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xf0a1e94a mite_bytes_in_transit +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xf21da67f mite_sync_dma +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xf48cbd7d mite_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_common 0x59d17b5d labpc_common_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_common 0xcb1c2702 labpc_common_detach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_isadma 0x0ff35065 labpc_setup_dma +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_isadma 0x61fe8243 labpc_free_dma_chan +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_isadma 0x81250747 labpc_init_dma_chan +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_isadma 0x9c8b74b4 labpc_drain_dma +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_isadma 0xd3898c36 labpc_handle_dma_status EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x076bc308 ni_find_route_source EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x0921123e ni_lookup_route_register EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x1facf7f8 ni_is_cmd_dest @@ -12582,934 +12597,933 @@ 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 0x138785c1 ni_gpct_device_construct -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x242cd1e8 ni_tio_init_counter -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x254a1a9e ni_tio_set_bits -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x25cdf32a ni_tio_unset_routing -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x2972a407 ni_gpct_device_destroy -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x3d12ec27 ni_tio_get_soft_copy -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x48f63ba2 ni_tio_read -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x5e46df31 ni_tio_set_routing -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x64f83f68 ni_tio_write -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x8109dab3 ni_tio_arm -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x837e7274 ni_tio_insn_write -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xaa1eb833 ni_tio_set_gate_src_raw -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xf60e8dff ni_tio_get_routing -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xfa66b4c8 ni_tio_insn_read -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xfbf61993 ni_tio_set_gate_src -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xfca5926b ni_tio_insn_config -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x5eb071b8 ni_tio_cmdtest -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x6a364196 ni_tio_cancel -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x7f133112 ni_tio_cmd -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xcffd18f0 ni_tio_set_mite_channel -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xe2d2c95e ni_tio_handle_interrupt -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xf5a83d65 ni_tio_acknowledge -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x017f0538 comedi_find_subdevice_by_type -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x3c1482ba comedi_dio_config -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x74ee3acc comedi_close -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x9677a155 comedi_dio_get_config -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xa42f2976 comedi_open -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xaeda4c21 comedi_dio_bitfield2 -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xf14ad51e comedi_get_n_channels +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x09c78ded ni_tio_set_routing +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x24559581 ni_tio_set_bits +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x3360289f ni_tio_init_counter +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x53e2ccc5 ni_tio_unset_routing +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x545e6e00 ni_tio_write +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x5a30b2ab ni_tio_get_soft_copy +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x6b30f897 ni_gpct_device_construct +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x80cd1100 ni_tio_insn_config +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x84e074e5 ni_tio_set_gate_src_raw +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x8a908a97 ni_tio_insn_read +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xc374dd8f ni_tio_set_gate_src +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xc8132ba0 ni_tio_insn_write +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xe2f2fdd4 ni_tio_arm +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xe431a5b7 ni_tio_read +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xe9b228ec ni_tio_get_routing +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xf129c902 ni_gpct_device_destroy +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x0e59dd56 ni_tio_cmd +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x268e8e15 ni_tio_set_mite_channel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x861644a6 ni_tio_cancel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x928c8e6e ni_tio_acknowledge +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xaf1d1ae3 ni_tio_cmdtest +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xb33593f3 ni_tio_handle_interrupt +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x38169020 comedi_get_n_channels +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x80ae00d9 comedi_open +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x8daeb709 comedi_dio_get_config +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xa6888c09 comedi_dio_bitfield2 +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xef22f2dd comedi_find_subdevice_by_type +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xf6fc83ad comedi_dio_config +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xf87cac38 comedi_close EXPORT_SYMBOL_GPL drivers/counter/counter 0x01aab51b counter_count_direction_str -EXPORT_SYMBOL_GPL drivers/counter/counter 0x258b6d9a counter_count_enum_available_read -EXPORT_SYMBOL_GPL drivers/counter/counter 0x25c09f7e counter_count_enum_write -EXPORT_SYMBOL_GPL drivers/counter/counter 0x3dfac2af counter_count_enum_read -EXPORT_SYMBOL_GPL drivers/counter/counter 0x406ee5b0 devm_counter_register -EXPORT_SYMBOL_GPL drivers/counter/counter 0x4c5dad78 counter_device_enum_available_read -EXPORT_SYMBOL_GPL drivers/counter/counter 0x551a6614 devm_counter_unregister -EXPORT_SYMBOL_GPL drivers/counter/counter 0x7b4ceddd counter_signal_enum_available_read -EXPORT_SYMBOL_GPL drivers/counter/counter 0x8c1d0b83 counter_register -EXPORT_SYMBOL_GPL drivers/counter/counter 0xc1cb60c6 counter_signal_enum_read -EXPORT_SYMBOL_GPL drivers/counter/counter 0xc438da64 counter_device_enum_write -EXPORT_SYMBOL_GPL drivers/counter/counter 0xc876ac62 counter_unregister -EXPORT_SYMBOL_GPL drivers/counter/counter 0xd0d57e04 counter_device_enum_read -EXPORT_SYMBOL_GPL drivers/counter/counter 0xe1677a9f counter_signal_enum_write +EXPORT_SYMBOL_GPL drivers/counter/counter 0x23c655b2 devm_counter_register +EXPORT_SYMBOL_GPL drivers/counter/counter 0x298455bf counter_device_enum_read +EXPORT_SYMBOL_GPL drivers/counter/counter 0x2e8ef5e4 counter_count_enum_write +EXPORT_SYMBOL_GPL drivers/counter/counter 0x30778ec9 devm_counter_unregister +EXPORT_SYMBOL_GPL drivers/counter/counter 0x6e3759a0 counter_signal_enum_read +EXPORT_SYMBOL_GPL drivers/counter/counter 0x6fc8f6ca counter_signal_enum_available_read +EXPORT_SYMBOL_GPL drivers/counter/counter 0x719c8cbd counter_signal_enum_write +EXPORT_SYMBOL_GPL drivers/counter/counter 0x72263417 counter_count_enum_read +EXPORT_SYMBOL_GPL drivers/counter/counter 0x96c47007 counter_device_enum_available_read +EXPORT_SYMBOL_GPL drivers/counter/counter 0xc1f7b74d counter_register +EXPORT_SYMBOL_GPL drivers/counter/counter 0xc59f6176 counter_count_enum_available_read +EXPORT_SYMBOL_GPL drivers/counter/counter 0xe30ec5bf counter_device_enum_write EXPORT_SYMBOL_GPL drivers/counter/counter 0xee526d0f counter_count_mode_str +EXPORT_SYMBOL_GPL drivers/counter/counter 0xf91e75ac counter_unregister 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 0x1b287275 ccp_enqueue_cmd EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x2e6a6147 psp_copy_user_blob EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x3a1a3979 ccp_version EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x3e059f28 sev_guest_activate EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x4073e924 sev_guest_deactivate -EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x5522976c sev_issue_cmd_external_user +EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x7a56fc86 sev_issue_cmd_external_user EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x843d6541 sev_guest_decommission EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x8fac14a2 sev_guest_df_flush EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x91722dce sev_platform_status +EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0xa4a37594 ccp_enqueue_cmd EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0xd02e197f sev_platform_init -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x01de3bc8 qat_crypto_dev_config -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x06c00ead adf_dev_in_use -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x0855b8f1 adf_disable_sriov -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x0a128931 adf_reset_sbr -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x0bd23e76 adf_devmgr_in_reset -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x1127a6a7 adf_dev_get -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x137e4d8c adf_reset_flr -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x252e2c58 adf_vf2pf_notify_init -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x2b8e5df1 adf_gen2_cfg_iov_thds +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x0234bdfa adf_vf_isr_resource_free +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x02e37a0b adf_enable_vf2pf_comms +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x086c8cf6 adf_devmgr_pci_to_accel_dev +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x106cedb2 adf_vf_isr_resource_alloc +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x1a897d56 qat_crypto_dev_config +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x231bd467 adf_reset_sbr +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x23e9a90a adf_dev_shutdown +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x268b4e1e 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 0x2d9b7e4b adf_dev_stop -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x31f57acf adf_cleanup_etr_data -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x338cb10c adf_cfg_dev_add -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x362753ba adf_dev_put -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x3b9edf86 adf_send_admin_init -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x3bd091d8 adf_exit_admin_comms +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x2e47642f adf_flush_vf_wq +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x31d03481 adf_dev_init +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x3a0b8171 adf_dev_start +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x3b5220d0 adf_dev_started +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x3b8cbf62 adf_cfg_dev_remove +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x3da03502 adf_disable_aer 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 0x47598350 adf_disable_aer -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x4d39a64e adf_devmgr_add_dev -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x663ec650 adf_isr_resource_free -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x669c9957 adf_flush_vf_wq -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x6f29b8b3 adf_devmgr_update_class_index -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x711c087f adf_enable_vf2pf_comms -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x748e1dd8 adf_init_etr_data -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x77d9911c adf_devmgr_rm_dev -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x79790e11 adf_gen2_get_accel_cap -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x84a74464 adf_dev_init -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x89efb8a4 adf_disable_pf2vf_interrupts -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x906af9ce adf_cfg_add_key_value_param -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x959db4aa adf_vf_isr_resource_alloc -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x9c562303 adf_enable_aer -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x9d193107 adf_devmgr_pci_to_accel_dev -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xb4e32432 adf_cfg_section_add -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xbe636c4b adf_init_arb -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xbec48290 adf_isr_resource_alloc -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xbfa5d0a0 adf_dev_started -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xc08813cb adf_gen4_set_ssm_wdtimer -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xc1cf3156 adf_exit_arb -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xc3bc151a adf_dev_start -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xc3f02fca adf_gen2_set_ssm_wdtimer +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x40a26a0a adf_reset_flr +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x4102b379 adf_vf2pf_notify_init +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x413ca4c3 adf_devmgr_update_class_index +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x51d71d19 adf_init_etr_data +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x5307694d adf_devmgr_rm_dev +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x56a7775a adf_init_arb +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x60b6b443 adf_exit_arb +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x61325685 adf_gen4_set_ssm_wdtimer +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x6962f398 adf_isr_resource_free +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x6d004d64 adf_exit_admin_comms +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x6daa9833 adf_cfg_dev_add +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x6ecb7f80 adf_devmgr_add_dev +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7809d779 adf_send_admin_init +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7cc235cb adf_disable_sriov +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7dcd31d2 adf_cleanup_etr_data +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x978540c4 adf_gen2_set_ssm_wdtimer +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x9a84c427 adf_init_admin_comms +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x9e80127b adf_dev_put +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xa730da97 adf_devmgr_in_reset +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xa8386fd9 adf_dev_stop +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xb242709e adf_dev_in_use +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xbb63bea3 adf_cfg_section_add 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 0xcc3b167a adf_clean_vf_map -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xcc4bed23 adf_vf_isr_resource_free +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xcd7d4563 adf_gen2_get_accel_cap +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xcdcf04b2 adf_dev_get +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xd0e61b05 adf_isr_resource_alloc +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xd29718dd adf_gen2_cfg_iov_thds 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 0xda1d3908 adf_init_admin_comms -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xe4e3679b adf_sriov_configure -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xec0b1ed9 adf_dev_shutdown -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xf57c31cc adf_vf2pf_notify_shutdown -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xf7392ec6 adf_cfg_dev_remove -EXPORT_SYMBOL_GPL drivers/dax/device_dax 0xe2cdb596 dev_dax_probe -EXPORT_SYMBOL_GPL drivers/dax/pmem/dax_pmem_core 0x1cbaadf8 __dax_pmem_probe +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xe2632fed adf_cfg_add_key_value_param +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xf42a8b6e adf_enable_aer +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xf8ec5a71 adf_sriov_configure +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xfab0de5d adf_disable_pf2vf_interrupts +EXPORT_SYMBOL_GPL drivers/dax/device_dax 0x4c6441d3 dev_dax_probe +EXPORT_SYMBOL_GPL drivers/dax/pmem/dax_pmem_core 0x7203895d __dax_pmem_probe EXPORT_SYMBOL_GPL drivers/dca/dca 0x01a33ab9 dca_unregister_notify -EXPORT_SYMBOL_GPL drivers/dca/dca 0x0b788004 free_dca_provider -EXPORT_SYMBOL_GPL drivers/dca/dca 0x25d0063c alloc_dca_provider -EXPORT_SYMBOL_GPL drivers/dca/dca 0x4f051d15 dca3_get_tag -EXPORT_SYMBOL_GPL drivers/dca/dca 0x6188155d dca_add_requester -EXPORT_SYMBOL_GPL drivers/dca/dca 0x62f19fa9 dca_remove_requester +EXPORT_SYMBOL_GPL drivers/dca/dca 0x10341f6b dca3_get_tag +EXPORT_SYMBOL_GPL drivers/dca/dca 0x28cfdb66 unregister_dca_provider +EXPORT_SYMBOL_GPL drivers/dca/dca 0x4e8ca1bd free_dca_provider +EXPORT_SYMBOL_GPL drivers/dca/dca 0x53562f8d register_dca_provider +EXPORT_SYMBOL_GPL drivers/dca/dca 0x828960e8 alloc_dca_provider +EXPORT_SYMBOL_GPL drivers/dca/dca 0x9e04a8d7 dca_add_requester 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 0xd4b83dc4 register_dca_provider -EXPORT_SYMBOL_GPL drivers/dca/dca 0xdc7155f2 unregister_dca_provider -EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0x7868e32d dw_edma_remove -EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0x939abddb dw_edma_probe -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x1adb82b6 dw_dma_acpi_controller_register -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x2f2d903c dw_dma_remove -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x4439f1f4 dw_dma_probe -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x49433607 dw_dma_filter -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x7eb04f0b do_dw_dma_disable -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x970b1390 idma32_dma_probe -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xce9b9b17 do_dw_dma_enable -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xd90ae5ed idma32_dma_remove -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xf4ca201c dw_dma_acpi_controller_free -EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x235018a4 hsu_dma_get_status -EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x6bed91bf hsu_dma_probe -EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0xb737fd4b hsu_dma_do_irq -EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0xe9fa3eb7 hsu_dma_remove -EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0x05b4c339 hidma_mgmt_init_sys -EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0x9f647af9 hidma_mgmt_setup +EXPORT_SYMBOL_GPL drivers/dca/dca 0xddaaaf91 dca_remove_requester +EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0x0ea4f013 dw_edma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0xfaf3c7b9 dw_edma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x0e4ff907 dw_dma_filter +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x457765ad idma32_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x7717e4f8 idma32_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x8379481a dw_dma_acpi_controller_register +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x8f4dc3bb dw_dma_acpi_controller_free +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xb7788480 dw_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xbfef6c10 do_dw_dma_enable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xc7f82460 do_dw_dma_disable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xeb5c867f dw_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x08b66e96 hsu_dma_get_status +EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x69c57efe hsu_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x74756722 hsu_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0xbec86b02 hsu_dma_do_irq +EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0x0210b2dc hidma_mgmt_setup +EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0x31ad5d5d 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/edac/igen6_edac 0x3c4385ca ibecc_err_unregister_notifer +EXPORT_SYMBOL_GPL drivers/edac/igen6_edac 0x7f961efb ibecc_err_register_notifer EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0xe86fb5c7 fw_card_release -EXPORT_SYMBOL_GPL drivers/fpga/altera-pr-ip-core 0x1236bf85 alt_pr_register -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x072cdaf1 dfl_fpga_cdev_assign_port -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x12a8472e dfl_fpga_enum_info_free -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x1beeca22 __dfl_fpga_cdev_find_port -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x24713321 dfl_fpga_cdev_release_port -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x453de757 dfl_fpga_port_ops_add -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x4aae63b7 dfl_feature_ioctl_set_irq -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x57997647 dfl_fpga_enum_info_alloc -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x5b5b939f dfl_fpga_feature_devs_remove -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x6fedbb16 dfl_fpga_enum_info_add_irq -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x75a3107c dfl_fpga_set_irq_triggers -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x83887176 dfl_fpga_dev_feature_init -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x862fafa2 dfl_fpga_dev_ops_register -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x97583f08 dfl_fpga_enum_info_add_dfl -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xaf48cde6 dfl_fpga_port_ops_put -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xaffaf3e7 dfl_fpga_dev_feature_uinit -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xb77fa3cb dfl_fpga_cdev_config_ports_pf -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xbb1596c2 dfl_fpga_check_port_id -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xca203916 dfl_fpga_dev_ops_unregister -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xd16f0015 dfl_fpga_cdev_config_ports_vf -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xe2d562d5 dfl_fpga_port_ops_get -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xe490d599 dfl_fpga_port_ops_del -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xf5c1f6ae dfl_feature_ioctl_get_num_irqs -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xf81463d8 dfl_fpga_feature_devs_enumerate -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x01e9b9cb fpga_bridge_get +EXPORT_SYMBOL_GPL drivers/fpga/altera-pr-ip-core 0xdb8597f0 alt_pr_register +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x0b60a7f0 dfl_feature_ioctl_get_num_irqs +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x12fdf3f6 dfl_fpga_port_ops_put +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x208f19a9 dfl_fpga_dev_ops_unregister +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x2202087b dfl_fpga_cdev_config_ports_pf +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x3d22d268 dfl_fpga_port_ops_del +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x49c9c257 dfl_fpga_feature_devs_remove +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x58470983 dfl_fpga_dev_feature_init +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x5e312145 dfl_fpga_port_ops_add +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x6315deb4 __dfl_fpga_cdev_find_port +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x66fa7c02 dfl_fpga_cdev_assign_port +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x699968e3 dfl_fpga_feature_devs_enumerate +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x79bd5171 dfl_fpga_enum_info_free +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x79d3d892 dfl_fpga_dev_feature_uinit +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x84a70e31 dfl_fpga_enum_info_alloc +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x9d512b1e dfl_fpga_enum_info_add_dfl +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xa9687512 dfl_fpga_cdev_config_ports_vf +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xb5c6b885 dfl_feature_ioctl_set_irq +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xbb10e588 dfl_fpga_check_port_id +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xbd72bd39 dfl_fpga_cdev_release_port +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xd796a7cd dfl_fpga_dev_ops_register +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xe383e30a dfl_fpga_enum_info_add_irq +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xeb3bdb57 dfl_fpga_port_ops_get +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xebbd8c1f dfl_fpga_set_irq_triggers 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 0x116a62b8 fpga_bridge_put -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x11d07404 devm_fpga_bridge_create -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x258c62e4 fpga_bridge_get_to_list -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x2acd03f3 fpga_bridge_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x18121188 fpga_bridge_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x1e597776 fpga_bridge_enable EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x2c8167cf fpga_bridges_disable -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x390bcd6e of_fpga_bridge_get_to_list -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x887ba33d fpga_bridge_unregister -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x9e34b3cf of_fpga_bridge_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xb6f47419 fpga_bridge_disable -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xd16953b6 fpga_bridge_create -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xec02bef2 fpga_bridge_free -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xf981f73d fpga_bridge_enable -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x0031f7dd fpga_mgr_lock -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x0522cbb5 fpga_mgr_register -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x0b275ab5 fpga_mgr_load -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x0e5f865e fpga_mgr_unlock -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x1d3f101c of_fpga_mgr_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x436bc7d2 fpga_image_info_free -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x533b2982 fpga_image_info_alloc -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x54e8bdba fpga_mgr_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x59d3418a devm_fpga_mgr_register -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x6981126e fpga_mgr_put -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x87f19fc2 devm_fpga_mgr_create -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x9edac14b fpga_mgr_create -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xaa705833 fpga_mgr_free -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xb33bbb29 fpga_mgr_unregister -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x2d7e9c4d fpga_region_unregister -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x3b1cd5c7 fpga_region_free -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x41562532 fpga_region_create -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x538724cf fpga_region_class_find -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x5dd11904 devm_fpga_region_create -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0xc86b03e3 fpga_region_register -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0xde06c1c0 fpga_region_program_fpga -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x42030de2 gnss_put_device -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x6b072f6e gnss_register_device -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x9118bff5 gnss_allocate_device -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0xe7b5ff01 gnss_insert_raw -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0xe97ac5e8 gnss_deregister_device -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x047a607e gnss_serial_register -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x5907c11f gnss_serial_deregister -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0xd29eb155 gnss_serial_pm_ops -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0xdbcab3e8 gnss_serial_free -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0xe47e7ddb gnss_serial_allocate -EXPORT_SYMBOL_GPL drivers/gpio/gpio-generic 0x417d0f35 bgpio_init -EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x890da4eb __max730x_remove -EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0xae06cc0b __max730x_probe -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x1bb7a05c analogix_dp_stop_crc +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x5fc7f7e1 of_fpga_bridge_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x6d8bca79 of_fpga_bridge_get_to_list +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x70c114ed fpga_bridge_get_to_list +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x73ab9f5b fpga_bridge_free +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x75ce5c04 fpga_bridge_disable +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x80ea18e0 fpga_bridge_create +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xaa45589f devm_fpga_bridge_create +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xc83b8e5f fpga_bridge_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xd71343e8 fpga_bridge_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xfc040daa fpga_bridge_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x1449b129 fpga_image_info_free +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x45f9e52c fpga_mgr_load +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x466a8a81 fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x54c38f17 fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x5718695b fpga_image_info_alloc +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x5c80a4ad fpga_mgr_unlock +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x5f2ee771 fpga_mgr_free +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x7ee0a3cf of_fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x805426e1 fpga_mgr_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xaa1f0215 devm_fpga_mgr_create +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xb225d2fa fpga_mgr_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xbf80f58d fpga_mgr_lock +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xc654cadc fpga_mgr_create +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xce0c4904 devm_fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x086f95b1 fpga_region_free +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x32282183 fpga_region_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x45a2db63 devm_fpga_region_create +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x4bf4e6a8 fpga_region_class_find +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x558f6e3f fpga_region_create +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x9868b5bb fpga_region_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0xa0e36b5e fpga_region_program_fpga +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x08644492 gnss_register_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x2cbaf39c gnss_put_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x50b370d8 gnss_deregister_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x8cc40865 gnss_insert_raw +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0xc8c7ea4c gnss_allocate_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x048087cb gnss_serial_pm_ops +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x40cc5476 gnss_serial_free +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x43a99900 gnss_serial_allocate +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x53af0df7 gnss_serial_deregister +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x7556400b gnss_serial_register +EXPORT_SYMBOL_GPL drivers/gpio/gpio-generic 0x03c6ba5c bgpio_init +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x300ca263 __max730x_probe +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0xeb0b390e __max730x_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x0f4ccf08 analogix_dp_start_crc +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x1222a8e9 analogix_dp_unbind +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x191ee602 analogix_dp_probe EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x3ee0dd60 anx_dp_aux_transfer -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x40dee489 analogix_dp_bind -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x5bbe746d analogix_dp_remove -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x6e9288a9 analogix_dp_start_crc -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x781b451b analogix_dp_resume -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x9622fbba analogix_dp_unbind -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x996a487b analogix_dp_suspend -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xd5210f47 analogix_dp_probe -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x0551dc1e drm_bridge_detect -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x084c3144 drm_bridge_hpd_enable -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x19d9278f drm_class_device_unregister -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x1ad6dd1c drm_bridge_hpd_notify -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x3bb44e8a drm_gem_dumb_map_offset -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x4759128c drm_gem_cma_vm_ops -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x5771de47 drm_gem_cma_dumb_create_internal -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x599d831c drm_gem_cma_free_object -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x5c2f8a2b drm_gem_cma_get_sg_table -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x5c311201 drm_bridge_get_modes -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x5d92e355 drm_gem_shmem_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x5fa48993 drm_gem_shmem_dumb_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x649d47b5 drm_bridge_hpd_disable -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x667eb687 drmm_kstrdup +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x8bffdc7d analogix_dp_bind +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x96ddaf1f analogix_dp_suspend +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xcb7bfec7 analogix_dp_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xe7f86c99 analogix_dp_resume +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xf05ff644 analogix_dp_stop_crc +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x0b900213 drm_hdcp_check_ksvs_revoked +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x13c8caca drm_gem_shmem_dumb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x145e4ff2 drm_gem_dumb_map_offset +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x176c745c drm_gem_shmem_prime_import_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x1b31475f drm_gem_cma_mmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x22db52ef drm_bridge_hpd_enable +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x2fd7ce7d drm_bridge_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x30770a53 drm_gem_shmem_get_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x404e55fe drm_gem_shmem_mmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x406d1153 drm_class_device_unregister +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x45d04420 drm_gem_shmem_get_pages_sgt +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x5b91ed8e drm_gem_cma_dumb_create_internal +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x61099dd1 drm_bridge_detect +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x64aa1058 drmm_kstrdup EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x66cf2f64 drm_display_mode_from_videomode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x7910b986 drm_get_unmapped_area -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x81635b3b drm_gem_cma_vmap -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x858f39a9 drm_class_device_register -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x89ac5e03 drm_hdcp_check_ksvs_revoked -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x8cc3df3a drm_crtc_add_crc_entry -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x9543aaf8 drm_gem_cma_mmap -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xa37268e1 drm_gem_cma_dumb_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xaa4ffcb4 drm_gem_shmem_get_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x70e4158e drm_bridge_get_modes +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x735c1886 drm_get_unmapped_area +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x74819a5c drm_gem_cma_free_object +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x77e170f2 drm_bridge_hpd_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x7cc30388 drm_gem_cma_prime_import_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x8602b71f drm_crtc_add_crc_entry +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x92fc3879 drm_gem_cma_vm_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x9adb75a6 drm_gem_cma_vmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x9d45bc5e drm_bridge_hpd_notify +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xa0871f43 drm_gem_cma_dumb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xa65c46b9 drm_gem_cma_get_sg_table EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xad885165 drm_bus_flags_from_videomode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xb668c381 drm_gem_cma_prime_import_sg_table -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xc3350262 drm_gem_shmem_prime_import_sg_table -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xcc0447bb drm_gem_shmem_get_pages_sgt -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xcec05b28 drm_gem_shmem_free_object -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xdad7330f drm_bridge_get_edid -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xddd767c8 drm_gem_shmem_mmap -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xe042e0f7 drm_gem_cma_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xe209e368 drm_do_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xad8de9d9 drm_do_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xb828dac7 drm_gem_cma_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xda9a64fc drm_class_device_register +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xefab35b4 drm_gem_shmem_free_object +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xf20935de drm_gem_shmem_create EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xfe9f72f3 drm_display_mode_to_videomode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x171f2e02 drm_gem_fb_get_obj -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x1ddd5943 drm_gem_fb_afbc_init -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x30834827 drm_fb_cma_get_gem_obj -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x3a4e341f drm_gem_fb_create_with_funcs -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x433fb918 drm_bridge_connector_enable_hpd -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x51075442 drm_bridge_connector_disable_hpd -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x8bc9a16c drm_fb_cma_get_gem_addr -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x8c1e9af3 drm_gem_plane_helper_prepare_fb -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x8c711ad4 drm_fb_cma_sync_non_coherent -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x8dffcfe1 drm_gem_fb_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xcc6512b2 drm_gem_fb_create_with_dirty -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xe94cd0ba drm_bridge_connector_init -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xee39cf57 drm_gem_fb_init_with_funcs +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x0ed95957 drm_fb_cma_get_gem_addr +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x111b830e drm_bridge_connector_enable_hpd +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x28231655 drm_gem_fb_create_with_funcs +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x4e7d1eed drm_gem_fb_create_with_dirty +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x4fb4b553 drm_gem_fb_afbc_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x8120f3e5 drm_fb_cma_get_gem_obj +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x8f859bdc drm_gem_fb_init_with_funcs +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x9a5fcccd drm_fb_cma_sync_non_coherent +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xae623f12 drm_gem_plane_helper_prepare_fb +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xaf207640 drm_gem_fb_get_obj +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xb7d60efc drm_bridge_connector_disable_hpd +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xcc92216d drm_bridge_connector_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xd3452071 drm_gem_fb_create 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 0x2be33e8c intel_gvt_register_hypervisor EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0x402468e9 i915_gpu_lower -EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0x455ba659 intel_gvt_register_hypervisor EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0x500858b9 i915_read_mch_val EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0x6fbc5503 intel_gvt_unregister_hypervisor EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0xe7237b0b i915_gpu_turbo_disable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x004e875a __SCK__tp_func_gb_hd_release +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x012a9c56 __tracepoint_gb_hd_add +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x025e8ae5 gb_hd_shutdown +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x074124c9 gb_svc_intf_set_power_mode +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x09cd8ef8 gb_operation_get EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x10d1b03e __SCT__tp_func_gb_hd_in -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x123aea97 gb_connection_create_flags -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x1321ec96 __tracepoint_gb_message_submit +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x1136e423 __SCK__tp_func_gb_hd_add +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x14713d0b __SCK__tp_func_gb_message_submit EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x15d1942f greybus_disabled -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x15d6a169 __tracepoint_gb_hd_del -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x1ab540d0 gb_operation_request_send -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x26f6a4e6 gb_svc_intf_set_power_mode -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x2b8b480e gb_operation_result -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x2e7246f9 gb_interface_request_mode_switch -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x331ca20c __SCK__tp_func_gb_hd_in -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x36888562 gb_hd_shutdown -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x3aa84bd2 gb_operation_response_alloc -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x421aa8f9 __SCK__tp_func_gb_hd_del -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x4520d0a0 __SCK__tp_func_gb_message_submit -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x4cd45355 gb_operation_request_send_sync_timeout -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x553b032f __traceiter_gb_hd_release -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x554d4f4c gb_connection_disable -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x5b3870b6 __SCK__tp_func_gb_hd_create -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6369a358 gb_connection_latency_tag_enable -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x68ba0511 gb_connection_latency_tag_disable -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x695ca2ed greybus_deregister_driver +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x1c261b2a __SCK__tp_func_gb_hd_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x1efb0d7b gb_connection_disable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x279fcf9d gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x2a0e7149 gb_operation_response_alloc +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x2dfc87bb gb_hd_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x335f91b2 gb_connection_create_flags +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x33b7849f gb_operation_unidirectional_timeout +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x3504c937 gb_hd_cport_release_reserved +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x3bb269d1 __tracepoint_gb_message_submit +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x457d90d4 greybus_register_driver +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x47d1cec9 __traceiter_gb_hd_add +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x5e707f94 __traceiter_gb_hd_release +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x602b9fe2 gb_debugfs_get +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x670ef624 gb_operation_result EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x78fedb98 __SCT__tp_func_gb_message_submit -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x79c3f8a1 greybus_message_sent -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7c77841f __traceiter_gb_hd_del -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x868e2b4e gb_connection_disable_forced -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x901be014 __traceiter_gb_message_submit -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x97a01778 __tracepoint_gb_hd_in -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xa3d91c9d gb_operation_put +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7bca1cfc __tracepoint_gb_hd_in +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7f43f171 __traceiter_gb_hd_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x80ddeab2 gb_connection_create_offloaded +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x82775314 __traceiter_gb_message_submit +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x83d487e9 __traceiter_gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x85ed8dcb gb_operation_put +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x8b43a03d gb_operation_get_payload_size_max +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x92e4e3f2 gb_connection_destroy +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x935da6c1 gb_operation_create_flags +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x9e60f997 greybus_deregister_driver +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xabadfe02 gb_connection_enable_tx +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xad0524e7 gb_hd_put EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xadd7926d __SCT__tp_func_gb_hd_create EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xae877457 __SCT__tp_func_gb_hd_release -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xafc64421 gb_operation_sync_timeout -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xb02f315d gb_operation_create_flags -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xb471ccb7 gb_hd_create -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xb94ec699 gb_hd_cport_reserve -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xbcdfb8f4 __SCK__tp_func_gb_hd_add -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xbd1a1259 greybus_register_driver -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xbf7ddd0a gb_hd_cport_release_reserved +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xb664af5b gb_hd_cport_reserve +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xbab6eebe gb_operation_request_send +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xbdc83366 __SCK__tp_func_gb_hd_in +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xbdfb1e30 __tracepoint_gb_hd_create EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xbfb52284 __SCT__tp_func_gb_hd_del -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xc0f240e8 gb_operation_unidirectional_timeout -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xc619a14e gb_hd_add -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xc8a6ff10 gb_hd_output -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xc8d088c0 __traceiter_gb_hd_create -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xcdadc66d gb_connection_create -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xcdd2c732 gb_hd_put -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xcee62ac6 __traceiter_gb_hd_in -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xcf7186fd gb_operation_cancel -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd74d1407 gb_hd_del -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd961c060 __tracepoint_gb_hd_release -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xda49347f gb_connection_create_offloaded -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe18d49b4 greybus_data_rcvd -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe53bfdc3 __tracepoint_gb_hd_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xc71d4e35 gb_connection_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xcad14ea5 gb_hd_add +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xccc3ae97 gb_operation_sync_timeout +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xcf04c0ec gb_interface_request_mode_switch +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd49648bb gb_connection_disable_forced +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd8aaf028 gb_hd_output +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xdcf42d44 gb_connection_disable_rx +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xdf03c30d gb_connection_latency_tag_enable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe1a87707 gb_connection_enable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe1f85f42 gb_operation_cancel EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe6b45fb6 __SCT__tp_func_gb_hd_add -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe900466f gb_connection_enable_tx -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe9485bab __traceiter_gb_hd_add -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xeb13b164 __tracepoint_gb_hd_add -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xefd179fa gb_operation_get_payload_size_max -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf0b6a289 gb_connection_enable -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf14e408a gb_connection_destroy -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf25d25df gb_debugfs_get -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf9b0465e __SCK__tp_func_gb_hd_release -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xfd4f65a9 gb_operation_get -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xff59c5f7 gb_connection_disable_rx +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xeab60e1f gb_operation_request_send_sync_timeout +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xed1b27ad greybus_data_rcvd +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xeff3f42e __SCK__tp_func_gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf17f7601 gb_connection_latency_tag_disable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xfaf566fa __traceiter_gb_hd_in +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xfd853729 greybus_message_sent +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xfd8da325 __tracepoint_gb_hd_release +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xffef8c5b __tracepoint_gb_hd_del +EXPORT_SYMBOL_GPL drivers/hid/hid 0x01e2bc17 hid_dump_report EXPORT_SYMBOL_GPL drivers/hid/hid 0x05495392 hid_debug -EXPORT_SYMBOL_GPL drivers/hid/hid 0x120ecf0c hid_add_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x05c422ce hid_output_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x1343d9a1 hid_unregister_driver EXPORT_SYMBOL_GPL drivers/hid/hid 0x19d52f1f hid_quirks_exit -EXPORT_SYMBOL_GPL drivers/hid/hid 0x1cb4a08e hid_debug_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0x1cb89ba7 hid_alloc_report_buf -EXPORT_SYMBOL_GPL drivers/hid/hid 0x1e35bbb5 hid_output_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x2a670152 hid_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x2f703417 hid_hw_open -EXPORT_SYMBOL_GPL drivers/hid/hid 0x348df325 hid_compare_device_paths -EXPORT_SYMBOL_GPL drivers/hid/hid 0x3757cb6c hid_dump_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0x3cf8145a hid_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x42ed46f0 hid_open_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x43826d54 hid_register_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x49e5fcc3 hidraw_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x4d8388f0 hid_check_keys_pressed -EXPORT_SYMBOL_GPL drivers/hid/hid 0x55549e49 hid_resolv_usage -EXPORT_SYMBOL_GPL drivers/hid/hid 0x5eec999c hidinput_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0x652fed8d hid_unregister_driver -EXPORT_SYMBOL_GPL drivers/hid/hid 0x667e9201 hid_hw_stop -EXPORT_SYMBOL_GPL drivers/hid/hid 0x6789ef6d hid_report_raw_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0x687bd516 hid_lookup_quirk -EXPORT_SYMBOL_GPL drivers/hid/hid 0x6a65a917 hidraw_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x6c78c3ea hid_destroy_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0x6d50c860 hidinput_get_led_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0x73d2704e hidinput_find_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0x79fb6016 hid_dump_input -EXPORT_SYMBOL_GPL drivers/hid/hid 0x81e04569 __hid_register_driver -EXPORT_SYMBOL_GPL drivers/hid/hid 0x84ef8f36 hidraw_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x23b95495 hid_open_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x26d93c23 hidinput_calc_abs_res +EXPORT_SYMBOL_GPL drivers/hid/hid 0x286e5bb8 hid_validate_values +EXPORT_SYMBOL_GPL drivers/hid/hid 0x2903a5da hidraw_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x296e17ac hid_input_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x2b974d67 hid_alloc_report_buf +EXPORT_SYMBOL_GPL drivers/hid/hid 0x2c1b7a75 hid_add_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x2f12423f hidinput_count_leds +EXPORT_SYMBOL_GPL drivers/hid/hid 0x31b82654 hid_report_raw_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x35a8fcbd hid_parse_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3750d0ea __hid_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3814d76e hid_hw_open +EXPORT_SYMBOL_GPL drivers/hid/hid 0x398ada8a hid_field_extract +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3c73af3c hid_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4366eafd hidinput_find_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4739e0a5 hid_debug_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x58f37c3c hid_match_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x5c21fa90 hidinput_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x60103e98 hid_destroy_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x62d81055 hid_ignore +EXPORT_SYMBOL_GPL drivers/hid/hid 0x63540296 hidinput_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x67b02d7d hid_hw_start +EXPORT_SYMBOL_GPL drivers/hid/hid 0x71865b40 hid_dump_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x80d4f86b hid_allocate_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x81e87b7d hid_disconnect EXPORT_SYMBOL_GPL drivers/hid/hid 0x8b13a8b8 hid_snto32 -EXPORT_SYMBOL_GPL drivers/hid/hid 0x8e97119b hid_ignore -EXPORT_SYMBOL_GPL drivers/hid/hid 0x93705b7c hid_setup_resolution_multiplier -EXPORT_SYMBOL_GPL drivers/hid/hid 0x9f1d9b48 hidinput_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0xae128c61 hid_dump_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0xb58e6408 hid_hw_close -EXPORT_SYMBOL_GPL drivers/hid/hid 0xb73eea5c hidinput_count_leds -EXPORT_SYMBOL_GPL drivers/hid/hid 0xbc40da61 hid_allocate_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0xc09091c3 hidinput_calc_abs_res -EXPORT_SYMBOL_GPL drivers/hid/hid 0xc34aee2c hid_parse_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0xc433590b hid_input_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0xc6b1c192 hid_match_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0xcc6b1673 hid_field_extract -EXPORT_SYMBOL_GPL drivers/hid/hid 0xcf88917d hid_set_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0xd287d44f __hid_request -EXPORT_SYMBOL_GPL drivers/hid/hid 0xd5235869 hid_dump_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0xdc7bc4fb hid_hw_start -EXPORT_SYMBOL_GPL drivers/hid/hid 0xee522f50 hidinput_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x90727849 hid_resolv_usage +EXPORT_SYMBOL_GPL drivers/hid/hid 0x916d20de hid_set_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x92667620 hid_setup_resolution_multiplier +EXPORT_SYMBOL_GPL drivers/hid/hid 0x96602882 hid_lookup_quirk +EXPORT_SYMBOL_GPL drivers/hid/hid 0x9a74161b hid_dump_input +EXPORT_SYMBOL_GPL drivers/hid/hid 0x9bbeaf07 hid_hw_stop +EXPORT_SYMBOL_GPL drivers/hid/hid 0xab657b42 hid_hw_close +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb0369d65 hid_dump_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc5e7f3e3 hidraw_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xda3dd8d8 hid_register_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xe0fa5368 hidinput_get_led_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xe3ae934d hidinput_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xe5c5cd4a hid_check_keys_pressed +EXPORT_SYMBOL_GPL drivers/hid/hid 0xeed57a71 __hid_register_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf2c59570 hidraw_report_event EXPORT_SYMBOL_GPL drivers/hid/hid 0xfa355613 hid_quirks_init -EXPORT_SYMBOL_GPL drivers/hid/hid 0xfe0f625c hid_validate_values +EXPORT_SYMBOL_GPL drivers/hid/hid 0xfca9ca48 hid_compare_device_paths 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 0x71c24cd5 roccat_connect -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x3955a3ce roccat_common2_send_with_status -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x55c0eb92 roccat_common2_send -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x706cb9d2 roccat_common2_sysfs_read -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x9febf431 roccat_common2_receive -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xa818ad84 roccat_common2_device_init_struct -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xbe9a9623 roccat_common2_sysfs_write -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x26c36e0b sensor_hub_remove_callback -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x2d61fc58 sensor_hub_device_close -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x33ffb2fa hid_sensor_get_usage_index -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x3db4d32a sensor_hub_input_get_attribute_info -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x94bb3539 sensor_hub_register_callback -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x980b17f2 sensor_hub_set_feature -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x9cd1d1de sensor_hub_input_attr_get_raw_value -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xb7cadfc9 sensor_hub_device_open -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xd5e17082 sensor_hub_get_feature -EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x34e4d9d0 i2c_hid_ll_driver -EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x3e6d215f i2c_hid_core_shutdown -EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0xa38e9291 i2c_hid_core_pm -EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0xad252ca1 i2c_hid_core_remove -EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0xed4724f3 i2c_hid_core_probe -EXPORT_SYMBOL_GPL drivers/hid/intel-ish-hid/intel-ishtp 0xefca4659 ishtp_wait_resume -EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0x1b571665 surface_hid_pm_ops -EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0x7376f668 surface_hid_device_destroy -EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0x81888cca surface_hid_device_add -EXPORT_SYMBOL_GPL drivers/hid/uhid 0xb044c684 uhid_hid_driver -EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0xa92d7176 usb_hid_driver -EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0xe55e87ac hiddev_hid_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x090dd8ea hsi_free_msg -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x39c15783 hsi_register_client_driver +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x4c7bcd78 roccat_connect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x01b60ae6 roccat_common2_receive +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x1f771ea1 roccat_common2_device_init_struct +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x23ca3078 roccat_common2_send +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x30098b5f roccat_common2_send_with_status +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x8bee6f51 roccat_common2_sysfs_read +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x8df06551 roccat_common2_sysfs_write +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x2572bd37 sensor_hub_device_close +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x2b8dc852 sensor_hub_remove_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x49e3de0f hid_sensor_get_usage_index +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x596ff5bd sensor_hub_set_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x70e40a54 sensor_hub_register_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x91e275ce sensor_hub_device_open +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xc9f100e0 sensor_hub_input_attr_get_raw_value +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xce404ee5 sensor_hub_input_get_attribute_info +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xe9fc0b0c sensor_hub_get_feature +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x2bbfe781 i2c_hid_core_probe +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x783f7f50 i2c_hid_ll_driver +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x93b37b5b i2c_hid_core_pm +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0xda492b4a i2c_hid_core_remove +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0xf574c5a1 i2c_hid_core_shutdown +EXPORT_SYMBOL_GPL drivers/hid/intel-ish-hid/intel-ishtp 0xdc6d0dbb ishtp_wait_resume +EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0x533dfd31 surface_hid_device_add +EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0x9430444b surface_hid_pm_ops +EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0xcd16abf2 surface_hid_device_destroy +EXPORT_SYMBOL_GPL drivers/hid/uhid 0x46113fa8 uhid_hid_driver +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x6a211445 hiddev_hid_event +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0xab66cebe usb_hid_driver +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x03b30872 hsi_put_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x127c6f2b hsi_new_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x1c650977 hsi_register_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x4c0a57a3 hsi_unregister_port_event EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5210a5bf hsi_board_list -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5444b132 hsi_get_channel_id_by_name -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5deb44c9 hsi_alloc_msg -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x61944166 hsi_release_port -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x6e1f9152 hsi_claim_port -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x7d541208 hsi_register_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x8c212da9 hsi_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x9f3f9ce5 hsi_unregister_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xa0c66927 hsi_put_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xa454e379 hsi_port_unregister_clients -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xc8b2770a hsi_unregister_port_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xdf56e5cf hsi_remove_client -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xdf815be2 hsi_alloc_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xe70c219c hsi_new_client -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xf50c63d1 hsi_register_port_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xffb3bcb6 hsi_async -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x11c352c5 hv_pkt_iter_first -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x135b1580 __hv_pkt_iter_next -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x1e148729 hv_pkt_iter_first_raw -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x237104a4 vmbus_sendpacket_pagebuffer +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x602e7365 hsi_register_client_driver +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x606e7908 hsi_free_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x61c51fc1 hsi_register_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xb16ffc8e hsi_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xc1335d84 hsi_release_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xc24b33f8 hsi_port_unregister_clients +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xc3918932 hsi_unregister_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xc9d8ad80 hsi_get_channel_id_by_name +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xd9395572 hsi_alloc_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xdb26d798 hsi_remove_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xddddb471 hsi_async +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xe203b795 hsi_alloc_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xf2837c18 hsi_claim_port +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x029501e3 hv_pkt_iter_first_raw +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x04af036d vmbus_set_sc_create_callback +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x0aa771af vmbus_sendpacket_pagebuffer +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x0b17b90a vmbus_teardown_gpadl +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x0f7d1e2f __hv_pkt_iter_next +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x151edaf7 vmbus_are_subchannels_present +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x2022ee94 vmbus_close +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x2d3d4db7 vmbus_set_event +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x31a910ce vmbus_free_ring 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 0x362aac17 vmbus_disconnect_ring -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x3afa69b9 vmbus_teardown_gpadl -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x3bb21360 vmbus_open -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x43eff819 vmbus_driver_unregister EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x46a417ca vmbus_proto_version +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x4906fd03 vmbus_recvpacket_raw EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x4b2210b8 vmbus_send_tl_connect_request -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x4b51a394 vmbus_alloc_ring -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x546b06c0 vmbus_free_ring -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x577cb26c vmbus_connect_ring -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x5c06c24b vmbus_connection -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x5c71fa32 vmbus_next_request_id +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x667e2a53 vmbus_open EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x674e657e hv_ringbuffer_get_debuginfo -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x6b5f6341 vmbus_setevent -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x7630d75c vmbus_sendpacket_mpb_desc -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x8145da7b vmbus_set_chn_rescind_callback -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x8e9796ad vmbus_are_subchannels_present -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x96523cd0 vmbus_set_sc_create_callback -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x97be3d94 vmbus_set_event -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xa9f809fa vmbus_hvsock_device_unregister -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xc0b61802 vmbus_send_modifychannel -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xcafe8eb9 vmbus_recvpacket_raw -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xcb5b3c45 vmbus_establish_gpadl -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xe87db032 vmbus_close -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xeca7208e vmbus_request_addr -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xf19b3859 __vmbus_driver_register -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xfcebc619 vmbus_allocate_mmio -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xfe13d6d7 hv_pkt_iter_close -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x58ea9b8b adt7x10_remove -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x5b0a3faf adt7x10_probe -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0xba234cf4 adt7x10_dev_pm_ops +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x68bc2cd1 vmbus_hvsock_device_unregister +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x716c35eb vmbus_connection +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x7b242419 vmbus_driver_unregister +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x8046410a vmbus_allocate_mmio +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x931480f6 vmbus_send_modifychannel +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x995a44f5 hv_pkt_iter_first +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x9e8cd35c vmbus_set_chn_rescind_callback +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xa3bc0380 vmbus_establish_gpadl +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xa8a60b52 vmbus_disconnect_ring +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xc15e92c6 hv_pkt_iter_close +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xc440d9c9 vmbus_connect_ring +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xc5759fd8 vmbus_next_request_id +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xdc87f053 __vmbus_driver_register +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xf524db7e vmbus_setevent +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xf5e5074a vmbus_request_addr +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xf8ddf6e5 vmbus_alloc_ring +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xfdaa48df vmbus_sendpacket_mpb_desc +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x1d68d40a adt7x10_remove +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x3636a481 adt7x10_probe +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0xf3573bb8 adt7x10_dev_pm_ops +EXPORT_SYMBOL_GPL drivers/hwmon/ltc2947-core 0x24ca6b0f ltc2947_pm_ops EXPORT_SYMBOL_GPL drivers/hwmon/ltc2947-core 0x5cbb5274 ltc2947_core_probe -EXPORT_SYMBOL_GPL drivers/hwmon/ltc2947-core 0x9fd24abd ltc2947_pm_ops EXPORT_SYMBOL_GPL drivers/hwmon/ltc2947-core 0xbc54f93e ltc2947_of_match -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x1dafc598 intel_th_driver_unregister -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x39af8d18 intel_th_driver_register -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x40a82cbc intel_th_trace_switch -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x5487a9c0 intel_th_output_enable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x5cf07b5d intel_th_trace_enable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x98650d81 intel_th_set_output -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xa2240967 intel_th_alloc -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xbdbbcd70 intel_th_free -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xd30190d7 intel_th_trace_disable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x13df8de8 intel_th_msu_buffer_register -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x9e7178f7 intel_th_msc_window_unlock -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0xde8e22cd intel_th_msu_buffer_unregister -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x33d2f2ca stm_unregister_protocol -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x4afa93f0 stm_data_write -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x7ee76cfb stm_source_register_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x9196bffb stm_source_write -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x9c238f45 stm_register_protocol -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xb91ea7d5 stm_register_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xc8ce15ef to_pdrv_policy_node -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xd3043820 stm_source_unregister_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xfaf44951 stm_unregister_device -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0x174a43ce amd_mp2_process_event -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0x27ae89b5 amd_mp2_bus_enable_set -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0x30709b7c amd_mp2_rw -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0x3767c705 amd_mp2_rw_timeout -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0x778af0f3 amd_mp2_find_device -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0xb48421e5 amd_mp2_register_cb -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0xf0b19359 amd_mp2_unregister_cb -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-nforce2 0x86cf9d5f nforce2_smbus -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x02e8ce8d i2c_mux_add_adapter -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x56020041 i2c_mux_del_adapters -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x6ced8831 i2c_root_adapter -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x73d50b22 i2c_mux_alloc -EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x6bf81936 i2c_register_spd -EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xc9cb090f i2c_handle_smbus_alert -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x13048744 i3c_master_get_free_addr -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x1e486ae5 i3c_device_enable_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x230e439e i3c_device_do_priv_xfers -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x27ca9f38 i3c_device_get_info -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x298e135d i3c_master_add_i3c_dev_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x3900ee79 i3c_driver_register_with_owner -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x4e7c77b0 i3c_device_disable_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x4e898af8 i3c_master_disec_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x5815a66f i3c_device_request_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x5d809743 i3c_master_unregister -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x6569b646 i3c_master_set_info -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x6e79b498 i3c_master_register +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x0f07eabe intel_th_trace_switch +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x0f94c95c intel_th_driver_register +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x29476db5 intel_th_set_output +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x5008d1d0 intel_th_driver_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x69196eb2 intel_th_output_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x77b88e60 intel_th_alloc +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xafa57e86 intel_th_trace_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xd5de33d7 intel_th_trace_disable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xda35fae5 intel_th_free +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x04979d53 intel_th_msc_window_unlock +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x871ad7e6 intel_th_msu_buffer_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0xa01ef9af intel_th_msu_buffer_register +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x1287cf95 stm_source_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x13a27681 stm_register_protocol +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x26bac1e2 stm_source_write +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x5031b07e stm_source_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x759c3a10 stm_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x80f43aff stm_data_write +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x871db481 stm_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x8737bf00 to_pdrv_policy_node +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xdebee294 stm_unregister_protocol +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0x0bef94c6 amd_mp2_bus_enable_set +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0x10a15d39 amd_mp2_find_device +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0x2110f18d amd_mp2_rw_timeout +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0x292fcf9b amd_mp2_rw +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0x4625b6cd amd_mp2_process_event +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0x4cbadc16 amd_mp2_register_cb +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0xc7cecdbd amd_mp2_unregister_cb +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-nforce2 0x795b0b6f nforce2_smbus +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x02702b62 i2c_mux_alloc +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x4893b32a i2c_root_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x4aae8467 i2c_mux_del_adapters +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xbeeefbe4 i2c_mux_add_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x3157a1cd i2c_handle_smbus_alert +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x8702ff6c i2c_register_spd +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x0f825625 i3c_master_disec_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x15e47541 i3c_generic_ibi_recycle_slot +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x1af49c68 i3c_device_disable_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x1ff78b03 i3c_master_queue_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x253000db i3c_device_match_id +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x3acaca47 i3c_driver_unregister +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x41e52b69 i3c_device_do_priv_xfers +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x4bef4a27 i3c_device_request_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x59aca0e2 i3c_driver_register_with_owner +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x6d56f9fb i3c_master_enec_locked EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x76fe3e05 i3c_generic_ibi_free_pool -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x7f37c00a i3c_master_defslvs_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x8d11cabe i3c_device_free_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xb11b861d i3c_master_do_daa -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xb2c205ea i3c_master_entdaa_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xc7aae837 i3c_generic_ibi_recycle_slot -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xca660ff5 i3c_device_match_id -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xd80eb8b2 i3c_master_enec_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xd8a71ad0 i3c_generic_ibi_alloc_pool -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xeb58c45e i3cdev_to_dev -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xef7f01eb i3c_driver_unregister -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xefcbf6ce i3c_generic_ibi_get_free_slot -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xfae96f2b dev_to_i3cdev -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xfdd1d2c5 i3c_master_queue_ibi -EXPORT_SYMBOL_GPL drivers/iio/accel/adxl372 0x8daf9485 adxl372_probe -EXPORT_SYMBOL_GPL drivers/iio/accel/adxl372 0xcd9061c7 adxl372_readable_noinc_reg -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x14522a59 bmc150_accel_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xa1860e9b bmc150_accel_core_probe -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xe2f870cd bmc150_accel_core_remove -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xf778c647 bmc150_regmap_conf -EXPORT_SYMBOL_GPL drivers/iio/accel/bmi088-accel-core 0x310e3fcc bmi088_accel_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/accel/bmi088-accel-core 0x4680e1f2 bmi088_regmap_conf -EXPORT_SYMBOL_GPL drivers/iio/accel/bmi088-accel-core 0x871ca1c1 bmi088_accel_core_remove -EXPORT_SYMBOL_GPL drivers/iio/accel/bmi088-accel-core 0xd0fd0f98 bmi088_accel_core_probe -EXPORT_SYMBOL_GPL drivers/iio/accel/fxls8962af-core 0x24580131 fxls8962af_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/accel/fxls8962af-core 0x5ba576d8 fxls8962af_i2c_regmap_conf -EXPORT_SYMBOL_GPL drivers/iio/accel/fxls8962af-core 0xa18c501e fxls8962af_core_probe -EXPORT_SYMBOL_GPL drivers/iio/accel/fxls8962af-core 0xf97be21d fxls8962af_spi_regmap_conf -EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0x1bb20a86 mma7455_core_regmap -EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0x63aed6ca mma7455_core_probe -EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0xaaac089c mma7455_core_remove -EXPORT_SYMBOL_GPL drivers/iio/adc/ad7091r-base 0xb0f3b5c4 ad7091r_regmap_config -EXPORT_SYMBOL_GPL drivers/iio/adc/ad7091r-base 0xb5c2a499 ad7091r_probe -EXPORT_SYMBOL_GPL drivers/iio/adc/ad7606 0x64552a5b ad7606_probe -EXPORT_SYMBOL_GPL drivers/iio/adc/ad7606 0xd4983043 ad7606_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x41dc2cfc devm_ad_sd_setup_buffer_and_trigger -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x467366c0 ad_sd_calibrate -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x4d9ce880 ad_sigma_delta_single_conversion -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x6e931fb6 ad_sd_reset -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x87f89a39 ad_sd_set_comm -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xa66b6298 ad_sd_write_reg -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xcb6a9f6d ad_sd_read_reg -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xd517fcf6 ad_sd_validate_trigger -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xd9584e7f ad_sd_init -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xf4023015 ad_sd_calibrate_all +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x8b4bc515 i3c_master_unregister +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x94881590 i3c_device_enable_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x97610b94 i3c_master_entdaa_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xa722cbcf i3c_master_get_free_addr +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xab30ee0c i3c_master_add_i3c_dev_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xac7ed9de i3c_device_free_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xb0cc1751 dev_to_i3cdev +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xc4b2c332 i3cdev_to_dev +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xd8a8181d i3c_generic_ibi_get_free_slot +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xdd0e6146 i3c_master_defslvs_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xe0956520 i3c_device_get_info +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xe6dccdee i3c_master_set_info +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xed308867 i3c_master_register +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xf25ef7e8 i3c_generic_ibi_alloc_pool +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xf6151b13 i3c_master_do_daa +EXPORT_SYMBOL_GPL drivers/iio/accel/adxl345_core 0xe9902ede adxl345_core_probe +EXPORT_SYMBOL_GPL drivers/iio/accel/adxl372 0xaa9be438 adxl372_readable_noinc_reg +EXPORT_SYMBOL_GPL drivers/iio/accel/adxl372 0xfc79ef7f adxl372_probe +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x49709e13 bmc150_accel_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x4be74a1a bmc150_regmap_conf +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xd0aa665e bmc150_accel_core_probe +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xff941bb3 bmc150_accel_core_remove +EXPORT_SYMBOL_GPL drivers/iio/accel/bmi088-accel-core 0x1efd4599 bmi088_accel_core_probe +EXPORT_SYMBOL_GPL drivers/iio/accel/bmi088-accel-core 0x351fe283 bmi088_regmap_conf +EXPORT_SYMBOL_GPL drivers/iio/accel/bmi088-accel-core 0x649622a8 bmi088_accel_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/accel/bmi088-accel-core 0xc4380408 bmi088_accel_core_remove +EXPORT_SYMBOL_GPL drivers/iio/accel/fxls8962af-core 0x3c6c6cab fxls8962af_core_probe +EXPORT_SYMBOL_GPL drivers/iio/accel/fxls8962af-core 0x41e9c50f fxls8962af_spi_regmap_conf +EXPORT_SYMBOL_GPL drivers/iio/accel/fxls8962af-core 0x54b5ba55 fxls8962af_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/accel/fxls8962af-core 0xe33751ca fxls8962af_i2c_regmap_conf +EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0x3cc3d42f mma7455_core_regmap +EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0x833f36dd mma7455_core_remove +EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0xa79c1447 mma7455_core_probe +EXPORT_SYMBOL_GPL drivers/iio/adc/ad7091r-base 0x6193f2f4 ad7091r_regmap_config +EXPORT_SYMBOL_GPL drivers/iio/adc/ad7091r-base 0x70de9c4f ad7091r_probe +EXPORT_SYMBOL_GPL drivers/iio/adc/ad7606 0x6ed95f93 ad7606_probe +EXPORT_SYMBOL_GPL drivers/iio/adc/ad7606 0x93f93e3b ad7606_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x328aeb4c devm_ad_sd_setup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x5630e73f ad_sd_read_reg +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x6cef1ad3 ad_sd_validate_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x6e4bce45 ad_sd_reset +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x7ee403fe ad_sigma_delta_single_conversion +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x82da6c70 ad_sd_set_comm +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x9b80fe13 ad_sd_calibrate_all +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xa7724142 ad_sd_init +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xd690d029 ad_sd_write_reg +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xf5ff8c2b ad_sd_calibrate 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 0x2f8f638c iio_channel_cb_get_channels -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x73d8cf53 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 0x9acf62ab iio_channel_cb_set_buffer_watermark -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x9af856cd iio_channel_cb_get_iio_dev -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x05c8080b iio_dma_buffer_release -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x0aa3e631 iio_dma_buffer_set_bytes_per_datum -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x36fd42f8 iio_dma_buffer_disable -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x590000c0 iio_dma_buffer_read -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x64041a59 iio_dma_buffer_request_update -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x65a5178c iio_dma_buffer_block_done -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x79eef0be iio_dma_buffer_init -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x9c4b07e4 iio_dma_buffer_enable -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xa775d621 iio_dma_buffer_set_length -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xcfaf408d iio_dma_buffer_data_available -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xdeb71835 iio_dma_buffer_exit -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xebbb7947 iio_dma_buffer_block_list_abort -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dmaengine 0x578eed03 devm_iio_dmaengine_buffer_setup -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x229f0f25 devm_iio_hw_consumer_alloc +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x9f3a5e3f iio_channel_cb_get_iio_dev +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0xc9c25227 iio_channel_get_all_cb +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0xcd144163 iio_channel_cb_get_channels +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x01f1ebad iio_dma_buffer_set_bytes_per_datum +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x47374948 iio_dma_buffer_enable +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x4a2fd5fe iio_dma_buffer_read +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x4eea6509 iio_dma_buffer_block_done +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x57b47e58 iio_dma_buffer_set_length +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x74ea16d7 iio_dma_buffer_disable +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x7acae70f iio_dma_buffer_exit +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x85726133 iio_dma_buffer_init +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xcc9ce156 iio_dma_buffer_release +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xcecbe2c1 iio_dma_buffer_data_available +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xdca504f5 iio_dma_buffer_request_update +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xe624ee0d iio_dma_buffer_block_list_abort +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dmaengine 0x560bba74 devm_iio_dmaengine_buffer_setup EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x3391543d iio_hw_consumer_disable +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x3714e115 devm_iio_hw_consumer_alloc +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x5f55a257 iio_hw_consumer_alloc EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x9671bc15 iio_hw_consumer_free EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0xbf358fa9 iio_hw_consumer_enable -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0xd3d91fbf iio_hw_consumer_alloc -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-triggered-buffer 0x7c1fcfa4 devm_iio_triggered_buffer_setup_ext -EXPORT_SYMBOL_GPL drivers/iio/buffer/kfifo_buf 0x4f7a686e devm_iio_kfifo_buffer_setup_ext -EXPORT_SYMBOL_GPL drivers/iio/chemical/bme680_core 0x0945f50a bme680_core_probe -EXPORT_SYMBOL_GPL drivers/iio/chemical/sps30 0x04d607d6 sps30_probe -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x10ae20e6 cros_ec_sensors_ext_info -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x66328f7c cros_ec_sensors_core_read_avail -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x68d65ee0 cros_ec_sensors_read_cmd -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x6becdea2 cros_ec_sensors_push_data -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x8eca6d3d cros_ec_sensors_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-triggered-buffer 0xe49eca21 devm_iio_triggered_buffer_setup_ext +EXPORT_SYMBOL_GPL drivers/iio/buffer/kfifo_buf 0x895d7894 devm_iio_kfifo_buffer_setup_ext +EXPORT_SYMBOL_GPL drivers/iio/chemical/bme680_core 0xbb49ee1c bme680_core_probe +EXPORT_SYMBOL_GPL drivers/iio/chemical/sps30 0x8685d744 sps30_probe +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x1d7eb4a3 cros_ec_sensors_core_init +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x371da200 cros_ec_sensors_core_write +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x4ed48cf9 cros_ec_motion_send_host_cmd +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x7d48a5c1 cros_ec_sensors_read_lpc 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 0xa511bbc6 cros_ec_sensors_core_read -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xb9582c70 cros_ec_sensors_core_init -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xc13e343c cros_ec_motion_send_host_cmd -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xdb8e9f5c cros_ec_sensors_read_lpc -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xff5a226b cros_ec_sensors_core_write -EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0x92c454d6 ad5592r_probe -EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0xe6363a2a ad5592r_remove -EXPORT_SYMBOL_GPL drivers/iio/dac/ad5686 0x6a2131f6 ad5686_probe -EXPORT_SYMBOL_GPL drivers/iio/dac/ad5686 0xcce3d03a ad5686_remove -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x35c812bf bmg160_core_remove -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x80ad27f1 bmg160_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x81f1afc3 bmg160_core_probe -EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0x0ac32ebb fxas21002c_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0x2fe5a78c fxas21002c_core_probe -EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0x7c25583a fxas21002c_core_remove -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x464ed863 devm_adis_setup_buffer_and_trigger -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x4a62ae95 __adis_initial_startup -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x58f95741 adis_update_scan_mode -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x6491dd28 adis_init -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x75eb3fbe __adis_check_status -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x80d4cddc __adis_update_bits_base -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xaf785056 __adis_reset -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xc8956a70 adis_single_conversion -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xdbce5199 __adis_read_reg -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xed0bee7a devm_adis_probe_trigger -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xfedabba7 __adis_write_reg -EXPORT_SYMBOL_GPL drivers/iio/imu/bmi160/bmi160_core 0x146480e2 bmi160_core_probe -EXPORT_SYMBOL_GPL drivers/iio/imu/fxos8700_core 0x54467d5e fxos8700_core_probe -EXPORT_SYMBOL_GPL drivers/iio/imu/inv_icm42600/inv-icm42600 0x2bbfe639 inv_icm42600_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/imu/inv_icm42600/inv-icm42600 0x60bb904b inv_icm42600_regmap_config -EXPORT_SYMBOL_GPL drivers/iio/imu/inv_icm42600/inv-icm42600 0xf260d80e inv_icm42600_core_probe -EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0x4dccdf8f inv_mpu_pmops -EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0xed3ee1ec inv_mpu_core_probe -EXPORT_SYMBOL_GPL drivers/iio/imu/st_lsm9ds0/st_lsm9ds0 0xb0e01cc6 st_lsm9ds0_probe -EXPORT_SYMBOL_GPL drivers/iio/imu/st_lsm9ds0/st_lsm9ds0 0xc183785f st_lsm9ds0_remove -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x00a39f4d iio_get_debugfs_dentry -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0c1fe3a2 iio_read_avail_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x101898c5 iio_device_id -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2052fc54 iio_read_max_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x24c99c9e iio_read_channel_offset +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xa9b68f29 cros_ec_sensors_ext_info +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xc0ac79fe cros_ec_sensors_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xcd2ac54a cros_ec_sensors_core_read_avail +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xd7381a2b cros_ec_sensors_core_read +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xeda6dfb9 cros_ec_sensors_read_cmd +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xf6dd234a cros_ec_sensors_push_data +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0x0ca6e740 ad5592r_probe +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0xf1d9fdcb ad5592r_remove +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5686 0x9b70b276 ad5686_remove +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5686 0xb88f34b8 ad5686_probe +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x551e4d74 bmg160_core_remove +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x634da312 bmg160_core_probe +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x977eaaef bmg160_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0x13b4c7de fxas21002c_core_probe +EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0x7a2e95df fxas21002c_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0xf14f0249 fxas21002c_core_remove +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x0213dc76 devm_adis_setup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x186db241 __adis_update_bits_base +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x3ae6c18c __adis_read_reg +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x4732028c adis_init +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x88a22c29 adis_update_scan_mode +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x8aad89d6 __adis_check_status +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x8ff4ca75 adis_single_conversion +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xb8f31db1 __adis_reset +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xdd5e9de3 devm_adis_probe_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xdec0d3d6 __adis_write_reg +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xfd1f5d46 __adis_initial_startup +EXPORT_SYMBOL_GPL drivers/iio/imu/bmi160/bmi160_core 0xda6039b0 bmi160_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/fxos8700_core 0x41f45039 fxos8700_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_icm42600/inv-icm42600 0x17ad7737 inv_icm42600_regmap_config +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_icm42600/inv-icm42600 0x3b908125 inv_icm42600_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_icm42600/inv-icm42600 0x85b1dcd7 inv_icm42600_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0x4053775f inv_mpu_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0x5a1f5291 inv_mpu_pmops +EXPORT_SYMBOL_GPL drivers/iio/imu/st_lsm9ds0/st_lsm9ds0 0x2da4efd7 st_lsm9ds0_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/st_lsm9ds0/st_lsm9ds0 0x8e0f9b57 st_lsm9ds0_remove +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0b0bd64a iio_read_channel_processed_scale +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x16b07f6a iio_enum_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x18abb1f4 iio_device_claim_direct_mode EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x26f6b499 iio_str_to_fixpoint -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x29334f78 iio_read_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2ce2beb8 iio_read_avail_channel_attribute -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x359b0e04 devm_iio_channel_get -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x44c57a50 devm_iio_trigger_alloc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x47bfeff2 iio_alloc_pollfunc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4c26378d iio_enum_available_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x271a382a iio_read_channel_average_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3575d569 devm_iio_trigger_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4081ac10 iio_map_array_unregister +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x42d3176b iio_channel_get_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x44c32e93 iio_alloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4ba30ac4 iio_write_channel_ext_info EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4dce7dd4 iio_format_value -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x52d9a65f iio_enum_read -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x54983a40 iio_read_channel_ext_info -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x558a156a iio_map_array_unregister -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5d40a18f iio_map_array_register -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5ec3b70c iio_device_attach_buffer -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x61fa3492 __devm_iio_device_register -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6427c93d iio_channel_get -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x66918c48 iio_write_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x690e05de iio_read_channel_attribute -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x77d48c4d iio_get_channel_type -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x78fb5137 iio_update_buffers -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x877a7992 iio_channel_release -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9381e612 iio_read_channel_processed -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x94660510 iio_enum_write -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x984595ac devm_iio_channel_get_all -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa4fbd3c2 devm_of_iio_channel_get_by_name -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa6ef37e1 iio_channel_get_all -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xacc7ff44 iio_dealloc_pollfunc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xaceb43be iio_push_to_buffers -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb0250c0f iio_read_channel_processed_scale -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb5913736 iio_show_mount_matrix -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb8d2dad3 iio_convert_raw_to_processed -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xbcd0c795 iio_read_channel_scale -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc3a12596 iio_buffer_put -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc54d72b7 iio_device_release_direct_mode -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc8d01e6c iio_channel_release_all -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc95a1d27 iio_validate_scan_mask_onehot -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xcd0db499 iio_write_channel_attribute -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xce5b3add __devm_iio_trigger_register -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xde3344fb iio_get_channel_ext_info_count -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xdf890bc1 iio_device_claim_direct_mode -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe8b1dfc0 iio_buffer_get -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf5560fe1 iio_read_channel_average_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf5619dbb iio_write_channel_ext_info -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xfd368b3d devm_iio_device_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x536fb967 iio_read_avail_channel_attribute +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x56619b4a iio_read_channel_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5a5ca5d2 iio_device_id +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x60048c59 devm_iio_device_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6519cc96 iio_device_attach_buffer +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6675255b iio_convert_raw_to_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6ab1105c iio_dealloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6fd87288 iio_push_to_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6fe0d43f __devm_iio_device_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x71abbfab iio_channel_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x78dc5c24 iio_update_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7b986131 iio_read_avail_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x812dd37e iio_read_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x83cd9dbf iio_write_channel_attribute +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x87abc499 __devm_iio_trigger_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8881f5f5 iio_read_channel_offset +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x89856b06 iio_buffer_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x943882cf iio_enum_write +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x943b3e77 iio_map_array_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9b8d9802 iio_read_channel_attribute +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9fc8333b iio_buffer_put +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa8ec3d47 iio_enum_available_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb109227b iio_get_channel_type +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb20b3bc0 iio_read_channel_scale +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb75bf9dc iio_validate_scan_mask_onehot +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb8e4204c iio_device_release_direct_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd1741528 devm_of_iio_channel_get_by_name +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd3ef9caa iio_channel_release +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd442b8bd devm_iio_channel_get_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd5469d27 iio_show_mount_matrix +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xdf030c47 iio_channel_release_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe185436c iio_get_debugfs_dentry +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe74459f5 iio_read_channel_ext_info +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf2ebca4f iio_read_max_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf5f79843 iio_get_channel_ext_info_count +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf7de5aae iio_write_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xfa132704 devm_iio_channel_get EXPORT_SYMBOL_GPL drivers/iio/magnetometer/rm3100-core 0x0a1424e0 rm3100_volatile_table -EXPORT_SYMBOL_GPL drivers/iio/magnetometer/rm3100-core 0x970145fe rm3100_common_probe EXPORT_SYMBOL_GPL drivers/iio/magnetometer/rm3100-core 0xaa911f08 rm3100_readable_table EXPORT_SYMBOL_GPL drivers/iio/magnetometer/rm3100-core 0xcc7209be rm3100_writable_table -EXPORT_SYMBOL_GPL drivers/iio/pressure/mpl115 0xfb91dff4 mpl115_probe -EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0x7c238b1d zpa2326_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0x8b251416 zpa2326_isreg_writeable -EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0xa3d7105b zpa2326_isreg_readable -EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0xaa8150a9 zpa2326_remove -EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0xaf868738 zpa2326_isreg_precious -EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0xc8f5107a zpa2326_probe +EXPORT_SYMBOL_GPL drivers/iio/magnetometer/rm3100-core 0xde6e6625 rm3100_common_probe +EXPORT_SYMBOL_GPL drivers/iio/pressure/mpl115 0x5db0b0dc mpl115_probe +EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0x01bdb93c zpa2326_remove +EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0x0da35397 zpa2326_probe +EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0x22ba131d zpa2326_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0x5a42bd5a zpa2326_isreg_writeable +EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0x97380fac zpa2326_isreg_precious +EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0x9e48c2f2 zpa2326_isreg_readable EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x028aa066 rtrs_cq_qp_destroy -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x0cba9cb8 rtrs_iu_post_send -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x139c49ba rtrs_init_hb -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x27f4e09d rtrs_iu_free -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x2d4b01e2 rtrs_send_hb_ack -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x2e997030 rtrs_start_hb -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x583d0374 rtrs_iu_post_recv -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x6703263e rtrs_post_recv_empty -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x8a54df77 rtrs_cq_qp_create -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x93f62a38 rtrs_stop_hb -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xd81e0efa rtrs_iu_post_rdma_write_imm -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xef9a016b rtrs_iu_alloc -EXPORT_SYMBOL_GPL drivers/input/ff-memless 0x2573cb26 input_ff_create_memless -EXPORT_SYMBOL_GPL drivers/input/matrix-keymap 0x8ec4358b matrix_keypad_parse_properties -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x49a4fcbd adxl34x_remove -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x5682579c 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/rmi4/rmi_core 0x3fb2507b rmi_of_property_read_u32 -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x4e0a2b93 rmi_2d_sensor_configure_input -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x63463c11 rmi_driver_suspend -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x7d4ed537 rmi_2d_sensor_abs_process -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x7e3d6435 rmi_2d_sensor_rel_report -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x8552a12e rmi_dbg -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x862c9e4d rmi_driver_resume -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x8ed7d3e9 rmi_2d_sensor_of_probe -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x9b0f8ac0 rmi_set_attn_data -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xa6ae8760 rmi_register_transport_device -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xbb2d721c rmi_unregister_function_handler -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xbc5bf6db rmi_2d_sensor_abs_report -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xd95705c6 __rmi_register_function_handler -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x30764078 cyttsp4_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x6a53bdaf cyttsp4_remove -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xfd888ca8 cyttsp4_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x509664aa cyttsp_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x8a4f77c5 cyttsp_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x42be5a3e cyttsp_i2c_read_block_data -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x4338d02a cyttsp_i2c_write_block_data -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x5addb328 tsc200x_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x784f0cc1 tsc200x_remove -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xce6cf39b tsc200x_regmap_config -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xe778854f tsc200x_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x12cb73a6 wm97xx_read_aux_adc -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x34da4567 wm97xx_set_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x3a0603de wm97xx_reg_write -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x3cc2206b wm9713_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x4a28c8df wm97xx_set_suspend_mode -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x4c09f14c wm97xx_get_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x69cc1a5f wm97xx_config_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xa71591ff wm97xx_register_mach_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xbaa7b27d wm97xx_unregister_mach_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xd797bf8e wm97xx_reg_read -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xedd63daf wm9705_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xf06820f5 wm9712_codec -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x1aad36df ipack_driver_register -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x3a624cfa ipack_device_init -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x3b02606b ipack_driver_unregister -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x44bab511 ipack_device_del -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x7eded6eb ipack_put_device -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x8f6b3adc ipack_get_device -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xbad1d996 ipack_bus_unregister -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xe0a0abd7 ipack_bus_register -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xf3795a39 ipack_device_add -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x2fab9345 led_set_flash_timeout -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x344f1f36 led_get_flash_fault -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x4de8640a led_classdev_flash_register_ext -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x91f9df6c led_set_flash_brightness -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x9c9b0ed3 devm_led_classdev_flash_register_ext -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xa4f3a474 led_update_flash_brightness -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xbf65c65d devm_led_classdev_flash_unregister -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xece4800c led_classdev_flash_unregister -EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x45060f61 devm_led_classdev_multicolor_unregister -EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x4b1986ff led_mc_calc_color_components -EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x79b860cc led_classdev_multicolor_unregister -EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x7d6ba7ab led_classdev_multicolor_register_ext -EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0xdf43a0dc devm_led_classdev_multicolor_register_ext +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x162e81d9 rtrs_post_recv_empty +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x1ce10ddc rtrs_init_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x22477eb3 rtrs_iu_post_recv +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x2f28bf45 rtrs_stop_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x3164c408 rtrs_cq_qp_destroy +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x6201c401 rtrs_start_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x7f14cb28 rtrs_iu_post_rdma_write_imm +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xa860a2b3 rtrs_send_hb_ack +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xacec47ce rtrs_iu_post_send +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xb5e3d8ad rtrs_iu_alloc +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xf08ea35e rtrs_iu_free +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xf141cf49 rtrs_cq_qp_create +EXPORT_SYMBOL_GPL drivers/input/ff-memless 0xd865134e input_ff_create_memless +EXPORT_SYMBOL_GPL drivers/input/matrix-keymap 0xcf324883 matrix_keypad_parse_properties +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x077c0c05 rmi_2d_sensor_abs_process +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x0edd8941 rmi_unregister_function_handler +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x22e5f92c rmi_of_property_read_u32 +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x5a996c9e rmi_driver_suspend +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x6f75ef01 __rmi_register_function_handler +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x7876801d rmi_2d_sensor_of_probe +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x97d713a0 rmi_dbg +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xbc4569fa rmi_2d_sensor_configure_input +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xc93d6825 rmi_2d_sensor_rel_report +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xe4121381 rmi_set_attn_data +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xed6bb68a rmi_2d_sensor_abs_report +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xf2744a70 rmi_register_transport_device +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xf40ed193 rmi_driver_resume +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x7b14be90 cyttsp4_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x9aee00fe cyttsp4_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xcccacd9e cyttsp4_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x22e098d8 cyttsp_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x9fd32e3d cyttsp_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x8a00b48b cyttsp_i2c_write_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0xb7135b08 cyttsp_i2c_read_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x44858960 tsc200x_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x661760eb tsc200x_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x8d3410d6 tsc200x_regmap_config +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xcc883fed tsc200x_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x1516affe wm97xx_config_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x2e9c44dd wm97xx_set_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x497cb0e9 wm97xx_reg_read +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x64bdd281 wm9705_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x715f7ffd wm97xx_get_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x7903cfdb wm9712_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xb5a9cf45 wm9713_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xbe903671 wm97xx_read_aux_adc +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xbea18d76 wm97xx_register_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xc6672d6a wm97xx_set_suspend_mode +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xca13c3d1 wm97xx_unregister_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xdb806def wm97xx_reg_write +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x121d4138 ipack_device_del +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x1ff35a9b ipack_bus_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x4b634508 ipack_bus_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x94c9a0bc ipack_driver_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xb403f98d ipack_device_init +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xde64f4d3 ipack_device_add +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xefe60c0d ipack_driver_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xf44873a1 ipack_put_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xf9f6a449 ipack_get_device +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x1ae622b0 led_update_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x26aa606e led_get_flash_fault +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x4e76e63b led_classdev_flash_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x7049dd2f led_classdev_flash_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x8ceda21c devm_led_classdev_flash_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x9d17fc6c led_set_flash_timeout +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xc8842b42 devm_led_classdev_flash_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xd86989ed led_set_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x273eec96 led_mc_calc_color_components +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x86faa109 led_classdev_multicolor_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x9f485402 led_classdev_multicolor_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0xedc1a5c9 devm_led_classdev_multicolor_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0xf33699d6 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 0x0049176e __SCK__tp_func_bcache_cache_insert -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x048c3f5f __traceiter_bcache_btree_node_alloc -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x05789d1e __SCK__tp_func_bcache_btree_gc_coalesce -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0804c9fa __SCK__tp_func_bcache_bypass_sequential -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0c8b5762 __SCK__tp_func_bcache_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x11d50373 __tracepoint_bcache_cache_insert -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x11f0782b __SCK__tp_func_bcache_btree_node_compact -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x12b351f4 __SCK__tp_func_bcache_bypass_congested -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x137fa50a __traceiter_bcache_gc_start -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x13a76471 __traceiter_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x05c31105 __tracepoint_bcache_bypass_congested +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x085c3734 __SCK__tp_func_bcache_writeback +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x089d2ea0 __traceiter_bcache_request_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0de2c250 __tracepoint_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x14f974bf __tracepoint_bcache_journal_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x16870de9 __traceiter_bcache_journal_entry_full EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x17a83e40 __traceiter_bcache_writeback -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x19f0ab61 __traceiter_bcache_alloc_fail EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1c599ebe __traceiter_bcache_btree_gc_coalesce -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1cab30fe __tracepoint_bcache_bypass_congested -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1d816ea5 __SCK__tp_func_bcache_btree_set_root +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1c8730eb __tracepoint_bcache_gc_copy EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x21b87a42 __SCT__tp_func_bcache_btree_node_alloc +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2255edfe __traceiter_bcache_btree_node_free +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x22792a67 __SCK__tp_func_bcache_gc_copy_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x22b635f5 __SCK__tp_func_bcache_journal_entry_full EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x25cacb14 __SCT__tp_func_bcache_btree_set_root +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x26951725 __traceiter_bcache_journal_write EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2766fb04 __traceiter_bcache_journal_replay_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2865371b __SCK__tp_func_bcache_request_end EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x287090dc __SCT__tp_func_bcache_journal_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x291118c9 __SCK__tp_func_bcache_bypass_congested EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x297e0da3 __SCT__tp_func_bcache_btree_node_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2ba538f9 __SCK__tp_func_bcache_read_retry +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2a2fc058 __traceiter_bcache_gc_start EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x300c8ff4 __SCT__tp_func_bcache_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x30d1c8a3 __traceiter_bcache_gc_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x30c92e41 __SCK__tp_func_bcache_btree_node_free +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x349b44de __tracepoint_bcache_btree_set_root EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x36f317a4 __SCT__tp_func_bcache_gc_copy -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3d602ce7 __SCK__tp_func_bcache_request_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3f49e369 __tracepoint_bcache_btree_node_free +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x39a73b8c __tracepoint_bcache_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3b5e69ff __tracepoint_bcache_btree_node_free +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3c2539c1 __tracepoint_bcache_journal_entry_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x40e75193 __SCK__tp_func_bcache_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x41dfaa24 __SCK__tp_func_bcache_gc_start EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4543b49b __SCT__tp_func_bcache_writeback_collision -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x475ebfdd __SCK__tp_func_bcache_journal_entry_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x503bd0a6 __SCK__tp_func_bcache_btree_node_split -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x52e7904b __tracepoint_bcache_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x536eea19 __traceiter_bcache_journal_entry_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5927c8c1 __traceiter_bcache_btree_cache_cannibalize -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5b2237bd __tracepoint_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x46e9025a __tracepoint_bcache_writeback +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x47045079 __tracepoint_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x474b9057 __tracepoint_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4922f665 __SCK__tp_func_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4ed84ffc __tracepoint_bcache_btree_cache_cannibalize +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4f8a176e __SCK__tp_func_bcache_journal_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4fd61000 __traceiter_bcache_btree_insert_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x505727a2 __SCK__tp_func_bcache_bypass_sequential +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x526493ed __traceiter_bcache_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x52ad8125 __traceiter_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x549b968d __tracepoint_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5d2b7346 __SCK__tp_func_bcache_btree_gc_coalesce +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5dacb703 __traceiter_bcache_btree_write EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5dd80bd5 __SCT__tp_func_bcache_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5e06a998 __SCK__tp_func_bcache_writeback -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5e23b1ac __tracepoint_bcache_btree_node_split -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6002d3d5 __tracepoint_bcache_btree_cache_cannibalize +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5ed774ce __tracepoint_bcache_read_retry +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x60e92cb8 __tracepoint_bcache_journal_write EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x629c9180 __SCT__tp_func_bcache_btree_write EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x64e39418 __traceiter_bcache_writeback_collision -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x65361fad __traceiter_bcache_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6531a417 __traceiter_bcache_read EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6677ebf0 __SCT__tp_func_bcache_gc_start -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6da34369 __tracepoint_bcache_journal_replay_key -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x70032291 __traceiter_bcache_btree_node_free -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x714c0015 __tracepoint_bcache_btree_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x71c288e1 __traceiter_bcache_bypass_congested +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x66862c1b __SCK__tp_func_bcache_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6a8bfe37 __tracepoint_bcache_btree_node_compact +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6b99999b __SCK__tp_func_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7418f203 __SCK__tp_func_bcache_btree_node_compact EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x752f7fa4 __SCT__tp_func_bcache_cache_insert -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x756f3c6d __SCK__tp_func_bcache_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x76d93d5d __tracepoint_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7803db11 __SCK__tp_func_bcache_btree_set_root +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x781b2fb9 __traceiter_bcache_bypass_sequential EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x787810b2 __SCT__tp_func_bcache_read_retry -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x78908e67 __SCK__tp_func_bcache_btree_read -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7a2ac43f __SCK__tp_func_bcache_gc_copy_collision -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7c446785 __tracepoint_bcache_read -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7db4d6cd __traceiter_bcache_btree_set_root +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7bbbd774 __SCK__tp_func_bcache_btree_cache_cannibalize +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7d55fd07 __traceiter_bcache_btree_node_split 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 0x8188a0b2 __traceiter_bcache_bypass_sequential -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x81e68f08 __tracepoint_bcache_btree_insert_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8199b8ac __SCK__tp_func_bcache_btree_node_alloc EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x822db771 __SCT__tp_func_bcache_btree_cache_cannibalize -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x86653234 __traceiter_bcache_journal_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x87040881 __tracepoint_bcache_journal_entry_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x87ca5d1f __SCK__tp_func_bcache_writeback_collision -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8dd8f4ff __traceiter_bcache_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8ea7c1bc __traceiter_bcache_btree_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8ffeee02 __SCK__tp_func_bcache_btree_insert_key -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9259c796 __traceiter_bcache_btree_insert_key -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x96144338 __SCK__tp_func_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x85a8fba4 __tracepoint_bcache_request_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8756ac7c __SCK__tp_func_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x89aea638 __traceiter_bcache_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9166bd99 __SCK__tp_func_bcache_journal_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x92bfd549 __SCK__tp_func_bcache_gc_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x93b07ad6 __tracepoint_bcache_writeback_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9556a60d __traceiter_bcache_btree_node_compact EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x972aa384 __SCT__tp_func_bcache_btree_insert_key -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x987ef6d6 __SCK__tp_func_bcache_gc_copy -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9af13540 __tracepoint_bcache_gc_copy_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x988eaef3 __tracepoint_bcache_btree_insert_key EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9d28d153 __SCT__tp_func_bcache_btree_node_split -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9fd1e4ce __SCK__tp_func_bcache_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa07f6d3c __tracepoint_bcache_request_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9ddaad63 __traceiter_bcache_gc_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa154f6d0 __SCK__tp_func_bcache_gc_copy EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa15bd7c4 __SCT__tp_func_bcache_btree_gc_coalesce -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa2531673 __tracepoint_bcache_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa30acfc1 __SCK__tp_func_bcache_journal_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa1d590d9 __SCK__tp_func_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa3088446 __traceiter_bcache_btree_read EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa784e073 __SCT__tp_func_bcache_btree_node_compact -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa8852511 __SCK__tp_func_bcache_gc_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa7a63b3a __SCK__tp_func_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xad4bb160 __tracepoint_bcache_btree_node_alloc EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xad6440b4 __traceiter_bcache_gc_copy -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xadf9f435 __SCK__tp_func_bcache_journal_replay_key -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb423909b __tracepoint_bcache_btree_node_alloc -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb53ade24 __SCK__tp_func_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xaf6d7f85 __traceiter_bcache_journal_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb08776f5 __tracepoint_bcache_gc_copy_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb21a1d6f __SCK__tp_func_bcache_writeback_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb3137d84 __traceiter_bcache_btree_cache_cannibalize +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb457ac42 __SCK__tp_func_bcache_cache_insert +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb45ca73f __SCK__tp_func_bcache_btree_insert_key EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb5a62a8c __traceiter_bcache_cache_insert -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb5a6fae2 __tracepoint_bcache_btree_read -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb693ee83 __traceiter_bcache_journal_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb795fb14 __SCK__tp_func_bcache_btree_cache_cannibalize EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb7e5379d __SCT__tp_func_bcache_journal_replay_key -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xba3bf191 __SCK__tp_func_bcache_btree_node_alloc -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xbb0c11aa __SCK__tp_func_bcache_gc_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xbdaacaee __tracepoint_bcache_btree_node_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xbf74bf6d __tracepoint_bcache_writeback -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc01d3f0c __tracepoint_bcache_journal_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc05e7bc1 __traceiter_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc2a97b30 __tracepoint_bcache_bypass_sequential EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc73e0c99 __SCT__tp_func_bcache_invalidate -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xca7c0a18 __tracepoint_bcache_gc_copy +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc8117e1d __SCK__tp_func_bcache_journal_replay_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc834b77c __SCK__tp_func_bcache_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xcca818cc __traceiter_bcache_request_start EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xce451ad8 __SCT__tp_func_bcache_btree_read -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd112e919 __tracepoint_bcache_gc_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd1609f2f __traceiter_bcache_btree_node_split -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd1aacf77 __tracepoint_bcache_btree_node_compact +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xcfd52fd4 __tracepoint_bcache_btree_gc_coalesce EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd30206ff __SCT__tp_func_bcache_gc_copy_collision -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd40bc85a __tracepoint_bcache_gc_start -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd62d2ee9 __tracepoint_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd5cd75d9 __traceiter_bcache_bypass_congested +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd6827229 __tracepoint_bcache_journal_replay_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 0xd9b3c216 __traceiter_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 0xdd21548f __traceiter_bcache_btree_node_compact -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe51c2f6a __traceiter_bcache_request_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe5a36c61 __tracepoint_bcache_btree_gc_coalesce -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe5d71a77 __tracepoint_bcache_writeback_collision -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe6934c7c __tracepoint_bcache_read_retry -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe8df3885 __tracepoint_bcache_bypass_sequential -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xea08b85f __tracepoint_bcache_journal_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xdc276168 __traceiter_bcache_btree_set_root +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe3660f0f __tracepoint_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe94d6aac __traceiter_bcache_read_retry +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xeaa3a8f9 __tracepoint_bcache_alloc_fail EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xec29e22a __traceiter_bcache_gc_copy_collision -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xec5341ce __SCK__tp_func_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xecab2845 __tracepoint_bcache_read EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xedf90bb3 __SCT__tp_func_bcache_read -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xee397939 __traceiter_bcache_read_retry +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xef24cf93 __tracepoint_bcache_cache_insert +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf06990c6 __tracepoint_bcache_gc_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf4938da4 __SCK__tp_func_bcache_read_retry EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf57f81ae __SCT__tp_func_bcache_bypass_sequential -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf74fd861 __traceiter_bcache_request_start EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf7a5edc7 __SCT__tp_func_bcache_journal_entry_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf8369d6f __SCK__tp_func_bcache_btree_node_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf837c758 __tracepoint_bcache_btree_set_root -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf9c9f248 __traceiter_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf9565a32 __SCK__tp_func_bcache_btree_write EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfb767f16 __SCT__tp_func_bcache_writeback -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfb94ac42 __SCK__tp_func_bcache_journal_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfca0db61 __SCK__tp_func_bcache_btree_node_free +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfc8bf2b9 __tracepoint_bcache_gc_end EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfce76b1e __SCT__tp_func_bcache_request_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xff0cda5a __traceiter_bcache_btree_read -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x10e1fe43 dm_cell_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x142d288f dm_bio_prison_free_cell EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x17dd39d6 dm_deferred_set_create -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x18466992 dm_cell_promote_or_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x1df14868 dm_cell_put_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x256f7661 dm_cell_lock_promote_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x1a128b16 dm_cell_error +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x21fbf7be 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 0x382f9404 dm_cell_lock_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x397fea24 dm_cell_get_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x3a158a02 dm_cell_error -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x3d6b842b dm_cell_visit_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x42a95f70 dm_bio_prison_alloc_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x59793c25 dm_get_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x5a1be1df dm_bio_prison_free_cell_v2 EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x6791a44e dm_deferred_entry_dec -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x68314b72 dm_bio_detain EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x753e20b2 dm_bio_prison_create -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x9b1085a1 dm_cell_unlock_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xa483791d dm_get_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x8eed610f dm_cell_get_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x9417f496 dm_bio_prison_free_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x9e88951c dm_cell_promote_or_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x9edf7f47 dm_cell_lock_promote_v2 EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xace9b57b dm_bio_prison_destroy_v2 EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb6d5c65d dm_deferred_set_add_work EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb70b342a dm_bio_prison_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xc3e3d2d1 dm_cell_quiesce_v2 EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xca2e3a88 dm_deferred_entry_inc -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xcd9751d0 dm_cell_quiesce_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xd36e96ff dm_cell_lock_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xd92dfbc5 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 0xdeb90f90 dm_cell_release_no_holder -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xe005236a dm_bio_prison_free_cell_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xfb475df2 dm_bio_prison_alloc_cell_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xda22d1b4 dm_cell_unlock_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xdc573446 dm_cell_release_no_holder +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xe1dcc4db dm_bio_prison_alloc_cell_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xe3f1567d dm_bio_detain +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xf43fb6e2 dm_bio_prison_alloc_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xf75a43ef dm_cell_visit_release EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x0ad0dc4f dm_bufio_mark_buffer_dirty EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x111ab12a dm_bufio_mark_partial_buffer_dirty +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x16471563 dm_bufio_client_create EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x24772bfe dm_bufio_get -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x2b519ea3 dm_bufio_client_create EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x2e0774dc dm_bufio_get_block_number EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6aebce95 dm_bufio_issue_discard EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6d3f57bd dm_bufio_get_client @@ -13532,7 +13546,7 @@ 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 0x0efbca4c btracker_promotion_already_present -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x2087b69c dm_cache_policy_register +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x3155e7a5 dm_cache_policy_register EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x5adc2807 btracker_destroy EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x5de611a9 btracker_nr_writebacks_queued EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x7890d535 dm_cache_policy_get_name @@ -13544,29 +13558,29 @@ EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xbf1a2968 btracker_create EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xccfe6409 btracker_nr_demotions_queued EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xcf8c2590 dm_cache_policy_get_hint_size -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xd9f85b1f dm_cache_policy_unregister EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xe1bdae47 dm_cache_policy_create -EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x057cbeaa dm_register_path_selector -EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0xdcebdc6c dm_unregister_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xec0a6154 dm_cache_policy_unregister +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x089af702 dm_register_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0xe9a12595 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 0x22940ca1 dm_rh_bio_to_region +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x22a70f16 dm_rh_dirty_log +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x2f268b7f 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 0x4fd187d6 dm_rh_bio_to_region +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x5196f13f dm_region_hash_create EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x57e16c3e dm_rh_get_state EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x5f4a6e61 dm_rh_dec -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x618752d9 dm_rh_delay EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7774620f dm_rh_stop_recovery EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7d053fc5 dm_rh_start_recovery EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7d5e1815 dm_rh_get_region_key -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x8276b0b1 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 0xb241206c dm_rh_mark_nosync +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xade6e668 dm_rh_inc_pending EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xbe38a431 dm_rh_recovery_prepare EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xd8aa4284 dm_rh_region_context -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xda91f0c9 dm_rh_inc_pending -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xf481e7b7 dm_rh_dirty_log +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xf179bcaf 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 @@ -13578,7 +13592,6 @@ EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x1e3f728d dm_block_data EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x243ce1ad dm_array_cursor_end EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x24507fbf dm_array_cursor_next -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x25ca5270 dm_block_manager_create EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2bc1a8d9 dm_tm_open_with_sm EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2c5a02df dm_btree_find_lowest_key EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2d38ecd9 dm_bitset_resize @@ -13639,79 +13652,80 @@ EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd237b9fb dm_array_walk EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd39c0246 dm_btree_cursor_get_value 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 0xe4ef937d 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 0xe8438eb5 dm_array_del EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf82dba90 dm_btree_empty EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xfce51d79 dm_array_empty -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x0afb03c8 cec_s_phys_addr -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x4757b334 cec_notifier_parse_hdmi_phandle -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x490aa634 cec_delete_adapter -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x5c7f9c82 cec_received_msg_ts -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x610e0943 cec_notifier_cec_adap_register -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x67e1dfdc cec_notifier_set_phys_addr_from_edid -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x82f49390 cec_allocate_adapter -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x9133e490 cec_s_conn_info -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x9b1a7aa4 cec_transmit_done_ts -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x9bbe4999 cec_transmit_attempt_done_ts +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x03f4a1f3 cec_received_msg_ts +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x0b0f5e35 cec_s_log_addrs +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x378635e5 cec_transmit_attempt_done_ts +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x48ef3d5f cec_notifier_cec_adap_register +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x509a1663 cec_s_phys_addr_from_edid +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x51eb8e4c cec_delete_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x70604462 cec_unregister_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x7c8485d6 cec_allocate_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x83c1924e cec_queue_pin_hpd_event +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x87a80bfe cec_fill_conn_info_from_drm +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x98024817 cec_queue_pin_cec_event +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x9d726bb7 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 0xa112900a cec_queue_pin_cec_event -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xad220d6d cec_notifier_conn_register -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xae897c89 cec_s_phys_addr_from_edid +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xa2253a3b cec_queue_pin_5v_event +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xa396dbed cec_notifier_cec_adap_unregister EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xaee236c6 cec_notifier_conn_unregister -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xb8fefd39 cec_unregister_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xb2cbc2e8 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 0xbf74a8a1 cec_s_log_addrs -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xc927e44a cec_fill_conn_info_from_drm -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xdc3e1ad8 cec_notifier_cec_adap_unregister -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xe8f38db4 cec_register_adapter -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xecfc2ac9 cec_transmit_msg -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xfb124a26 cec_queue_pin_5v_event -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xfea99060 cec_queue_pin_hpd_event +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xc16f2887 cec_notifier_set_phys_addr_from_edid +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xce0cb839 cec_transmit_msg +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xdbccdec7 cec_notifier_parse_hdmi_phandle +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xe1442faa cec_s_phys_addr +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xe9c6fc73 cec_notifier_conn_register +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xf1e7218a cec_s_conn_info EXPORT_SYMBOL_GPL drivers/media/common/b2c2/b2c2-flexcop 0x66c0289a b2c2_flexcop_debug -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x11897d52 saa7146_pgtable_alloc -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x1c9625a5 saa7146_pgtable_build_single -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x2c731455 saa7146_wait_for_debi_done -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x40295762 saa7146_pgtable_free -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x44b483df saa7146_i2c_adapter_prepare -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x5703be68 saa7146_vfree_destroy_pgtable -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xb7a0877c saa7146_vmalloc_build_pgtable -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xcbd21dc2 saa7146_setgpio +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x5c077dde saa7146_vfree_destroy_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x61b7bd79 saa7146_pgtable_build_single +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x89d1e951 saa7146_pgtable_free +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xabc800d8 saa7146_setgpio +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xb5f05525 saa7146_i2c_adapter_prepare +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xc90117a2 saa7146_pgtable_alloc +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xd287acbb saa7146_vmalloc_build_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xd7efecac saa7146_register_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xdb01d961 saa7146_wait_for_debi_done EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe3cd9b5c saa7146_debug -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xfa7ff050 saa7146_register_extension -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xfc87b57a saa7146_unregister_extension -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x03f24f80 saa7146_vv_release -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x3c3e6464 saa7146_stop_preview -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x832faead saa7146_register_device -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xa78e66ea saa7146_vv_init -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xc42402e1 saa7146_unregister_device -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xe27ec938 saa7146_start_preview -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xefc51f5d saa7146_set_hps_source_and_sync -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x0b2ca6ed sms_board_lna_control +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xeb3367a0 saa7146_unregister_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x147ec645 saa7146_register_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x3eacda2d saa7146_vv_init +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x5900a3f8 saa7146_vv_release +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x5b89a0d8 saa7146_start_preview +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xae8095fe saa7146_stop_preview +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xb778f68e saa7146_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xd38ec221 saa7146_set_hps_source_and_sync +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x00693f44 sms_board_setup EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x21e36bf2 smscore_registry_getmode 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 0x3fde0373 smscore_putbuffer EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x45284ae9 smsendian_handle_rx_message -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x45784f8a sms_board_setup -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x50cdf910 smscore_onresponse -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x632b8cba sms_board_event -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x67f05f41 smscore_register_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x46927480 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 0x78a5ae66 smscore_getbuffer EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7c576277 smsendian_handle_message_header -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x82a269d7 smscore_register_hotplug EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x844539ae sms_get_board -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x85d824df smscore_unregister_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x894782df smscore_start_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x8efc3845 smscore_set_board_id -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x98229d07 sms_board_led_feedback +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x9537fc5a sms_board_led_feedback +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x964aa73c smscore_onresponse EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x99a81ab3 smsclient_sendrequest +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xa062a71c smscore_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xacc8f254 smscore_getbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xb430999e smscore_unregister_hotplug EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbbdb5c42 smscore_unregister_client -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xc2a55969 smscore_register_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xc91a789a sms_board_power -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xcb6bd3c6 smscore_get_board_id -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xf756a534 smscore_get_device_mode -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xfc04ea8c smscore_unregister_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbcb4b7e0 smscore_start_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xc1c4692c smscore_register_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xc42ece74 smscore_get_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xc43e8469 sms_board_lna_control +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xc8596687 smscore_register_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xd313cfc1 smscore_set_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xda91c720 sms_board_event +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xe3c12ea5 smscore_putbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xeb97cd95 smscore_register_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xef1907c1 sms_board_power EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x03005a48 tpg_alloc EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x040dc7cd tpg_aspect_strings EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x4d1d285c tpg_init @@ -13729,309 +13743,336 @@ EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xce8159bb tpg_pattern_strings EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xf4aef3a4 tpg_gen_text EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xf65c5e46 tpg_fillbuffer -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x01b5a5f2 vb2_core_querybuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x03d71df5 __SCK__tp_func_vb2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x0cf2faf1 vb2_request_object_is_buffer -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x1d78c4c8 __SCK__tp_func_vb2_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x1e587c07 vb2_core_queue_release -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x1e86ba5e vb2_mmap -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x26feeef5 vb2_core_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x033bfd1e vb2_read +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x0cadb61e vb2_plane_vaddr +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x13362f16 vb2_discard_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x150c9fc2 vb2_request_buffer_cnt +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x1f70c810 vb2_core_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x2050ce87 vb2_core_create_bufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x2578fb07 __traceiter_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x28963bfd __traceiter_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x2b48119d vb2_core_queue_init 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 0x2db661e9 __traceiter_vb2_buf_done -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x335800bc __tracepoint_vb2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x478c6d49 __traceiter_vb2_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x4bb9bd6c vb2_plane_cookie +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x329524fd vb2_mmap +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x4208fdb7 __SCK__tp_func_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x4e4158bb vb2_plane_cookie 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 0x529c58e3 vb2_core_poll -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x5ec616fa __traceiter_vb2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x6400ae53 vb2_request_buffer_cnt -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x6c7da685 vb2_core_streamon -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x6e5de082 vb2_core_create_bufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x7431a036 vb2_core_queue_init -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x772a6ee0 vb2_core_reqbufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x7d1819f5 __SCK__tp_func_vb2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x7fab2965 vb2_discard_done -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x83212aa3 vb2_plane_vaddr -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x83f2cecd __tracepoint_vb2_buf_done -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x8bfd0ef3 vb2_buffer_done -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x9b96cb7d vb2_queue_error -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xb6da3b64 vb2_thread_stop -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xb9106e22 __SCK__tp_func_vb2_buf_done -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xba93c23e __traceiter_vb2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xbffbddf0 vb2_core_expbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x50ad985b vb2_core_queue_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x6085ca53 __SCK__tp_func_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x61b02a70 __traceiter_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x62c88c6c vb2_core_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x7251dae5 vb2_core_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x8bd89143 vb2_request_object_is_buffer +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x8f541d50 vb2_buffer_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x91c45c5e vb2_thread_stop +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x92cab1d8 __tracepoint_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x9d75af62 __tracepoint_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xa1bbe220 vb2_thread_start +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xa322480a vb2_core_expbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xa5274dc2 __tracepoint_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xa63021e1 vb2_wait_for_all_buffers +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xb89a5b6e __SCK__tp_func_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xc0d0d46c __tracepoint_vb2_buf_done 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 0xd872ea03 vb2_thread_start -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xd91cefc2 vb2_wait_for_all_buffers -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xdac1684d __tracepoint_vb2_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xe00dd7f6 __tracepoint_vb2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xe186b6de vb2_core_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xe2f740e8 vb2_write -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xf1b9c2b5 vb2_read -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xf1beeb33 vb2_core_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xfb81f438 vb2_core_streamoff -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0x6761a738 vb2_dma_contig_memops -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0x73b05eda vb2_dma_contig_set_max_seg_size -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-sg 0x92d4972d vb2_dma_sg_memops -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-memops 0x894cdbd5 vb2_common_vm_ops -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x056a280d vb2_queue_change_type -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x1313c37f vb2_request_queue -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x1b5899de vb2_create_bufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x1bf8bd5e vb2_ioctl_create_bufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x225e3297 vb2_streamoff -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x36e98f40 vb2_fop_read -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x3cc4b4c9 vb2_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x3d4b0004 vb2_ops_wait_prepare -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x40675611 vb2_fop_write -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x41899941 vb2_ioctl_streamon -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x4cd88937 vb2_fop_mmap -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x4f259168 vb2_request_validate -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x5f6d0ac2 vb2_ioctl_expbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x64db671a _vb2_fop_release -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x6b471ba6 vb2_ops_wait_finish -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x6ed8ee04 vb2_ioctl_reqbufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x747cf6a7 vb2_reqbufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x74d3ed03 vb2_poll -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x7e5d820b vb2_queue_release -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x9ca79935 vb2_fop_poll -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xb065bd56 vb2_ioctl_streamoff -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xb4b8c217 vb2_ioctl_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xb4c7b539 vb2_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xb5a905f4 vb2_ioctl_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xbb0c188e vb2_fop_release -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xc55f3e2d vb2_ioctl_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xcc4e5589 vb2_queue_init -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xcc80a55e vb2_video_unregister_device -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xd81946ec vb2_ioctl_querybuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xe9fb6ff8 vb2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xeaccdd29 vb2_expbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xf3f79255 vb2_find_timestamp -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xfb80d7cd vb2_queue_init_name -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xff45748f vb2_streamon -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-vmalloc 0x3c90f2df vb2_vmalloc_memops -EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0x21f56e89 dvb_module_probe -EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0xd832ac66 dvb_module_release -EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0xf6703541 dvb_create_media_graph -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/as102_fe 0x39f52904 as102_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24117 0x497a6dbf cx24117_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/gp8psk-fe 0xb1598ecf gp8psk_fe_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mxl5xx 0xd7d87ff6 mxl5xx_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0910 0xdcf6295a stv0910_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv6111 0x2b0bc39c stv6111_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0x4a7e8de4 tda18271c2dd_attach -EXPORT_SYMBOL_GPL drivers/media/i2c/aptina-pll 0x4c466767 aptina_pll_calculate -EXPORT_SYMBOL_GPL drivers/media/i2c/ccs-pll 0xb01a3edd ccs_pll_calculate -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x0f2ad2e3 max9271_enable_gpios -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x2b205247 max9271_set_gpios -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x3499ab9f max9271_clear_gpios -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x3c237aaf max9271_configure_gmsl_link -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x47dd7c5d max9271_set_deserializer_address -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x575514e7 max9271_configure_i2c -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x6004cb8f max9271_set_translation -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x6d628abb max9271_wake_up -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xa6010858 max9271_set_high_threshold -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xa936dd39 max9271_disable_gpios -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xc1471788 max9271_set_serial_link -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xd3971085 max9271_verify_id -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xf5cce8e0 max9271_set_address -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x0d619de1 media_request_object_bind -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x15405b6a media_devnode_remove -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x18b4886f media_create_pad_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x2249899b __media_pipeline_start -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x2d8378e4 media_create_pad_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x2d9d30c4 __media_pipeline_stop -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x30dc83f8 media_request_object_complete -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x362886bc media_device_delete -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x38e62b11 media_device_unregister_entity -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x390a0e74 media_request_object_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x3aa45527 media_graph_walk_next -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x3c84829e media_request_put -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x40ef30e4 media_device_unregister_entity_notify -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x4b2c6b49 media_entity_remove_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x50725415 __media_remove_intf_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x52c0697c __media_remove_intf_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x55952904 media_graph_walk_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x57a18262 media_entity_find_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x59fe3e3e media_remove_intf_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x5b4af1ce media_device_register_entity -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x613eac20 media_entity_setup_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x62d92077 __media_entity_setup_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x66ee087c __media_device_usb_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x6e5e5ada media_graph_walk_cleanup -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x6f0d943d media_request_object_put -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x719ce3dc media_device_cleanup -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x723a73da media_device_usb_allocate -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x762a9550 media_entity_pads_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x87bf8483 media_entity_get_fwnode_pad -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x9834178f media_pipeline_stop -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x98c3b023 __media_device_register -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xa42e13f7 media_device_unregister -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xaea40886 __media_entity_remove_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xafb441b6 media_device_pci_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xb1c9652a media_remove_intf_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xb2bbc375 media_request_object_find -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xb95f29ca media_request_object_unbind -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xbc00b84e media_get_pad_index -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc18f9f15 media_request_get_by_fd -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc31a1f0f media_devnode_create -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd724c761 media_device_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd9286c57 media_create_intf_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xde14a22f media_pipeline_start -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe1a71ab6 media_graph_walk_start +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xce120251 vb2_core_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xd6154c49 vb2_core_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xd6a89257 vb2_core_streamoff +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xd9197d99 __traceiter_vb2_buf_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xe34ed380 vb2_queue_error +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xedab113f __SCK__tp_func_vb2_buf_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xefd5d1c2 vb2_write +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xfae93be6 vb2_core_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xfd57bcb3 vb2_core_querybuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0xac3de0c2 vb2_dma_contig_memops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0xe795e1ee vb2_dma_contig_set_max_seg_size +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-sg 0xde6be74c vb2_dma_sg_memops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-memops 0x452f1f4b vb2_common_vm_ops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x068cda26 vb2_video_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x091a9785 vb2_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x1938076d vb2_ops_wait_finish +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x1f7f0871 vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x2a524c8f vb2_fop_read +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x2a5f0f40 vb2_fop_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x2d526e76 vb2_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x35189b48 _vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x3a2f7e69 vb2_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x45763318 vb2_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x469eff67 vb2_queue_init_name +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x51aa99d3 vb2_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x529f848c vb2_find_timestamp +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x655c020d vb2_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x666d8b1a vb2_queue_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x6c1ca49b vb2_streamoff +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x78d54910 vb2_create_bufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x79c6de98 vb2_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x882a981d vb2_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xa4e254d5 vb2_ops_wait_prepare +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xb32aec69 vb2_queue_init +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xb8d485f9 vb2_fop_write +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xc0d170b6 vb2_queue_change_type +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xc3bf3485 vb2_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xcafa0bcb vb2_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xd346ebd3 vb2_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xd7fc14b4 vb2_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xda064758 vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xdcc1f552 vb2_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xdcff68a8 vb2_expbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xe84f10c2 vb2_request_validate +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xec7f30aa vb2_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xee2aa1b3 vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xef9b6810 vb2_request_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-vmalloc 0x06691c61 vb2_vmalloc_memops +EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0x1671b48a dvb_module_release +EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0xb904b622 dvb_create_media_graph +EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0xd5981643 dvb_module_probe +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/as102_fe 0xbf2f376f as102_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24117 0xc8257756 cx24117_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/gp8psk-fe 0xa7195037 gp8psk_fe_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mxl5xx 0x8bab6d81 mxl5xx_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0910 0x54a2c0f5 stv0910_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv6111 0xd91bdd65 stv6111_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0x8530bf2b tda18271c2dd_attach +EXPORT_SYMBOL_GPL drivers/media/i2c/aptina-pll 0x90e5fe2c aptina_pll_calculate +EXPORT_SYMBOL_GPL drivers/media/i2c/ccs-pll 0x7c4cf1d4 ccs_pll_calculate +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x1ddff2aa max9271_wake_up +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x49c44a59 max9271_set_address +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x517e7ea8 max9271_set_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x6f002517 max9271_verify_id +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x77a3fd84 max9271_set_translation +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x8a82ed9f max9271_set_serial_link +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x8d23413f max9271_configure_gmsl_link +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x9e6a0f4a max9271_enable_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x9ed06391 max9271_disable_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xa4ecd70a max9271_set_deserializer_address +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xc57db264 max9271_configure_i2c +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xcb468ec8 max9271_set_high_threshold +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xe4668e5b max9271_clear_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/power_ctrl_logic 0x61e30e03 power_ctrl_logic_set_power +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x10bd97d5 __media_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x1e50984f __media_remove_intf_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x209d276f media_request_object_bind +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x23783298 media_device_delete +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x25da0163 media_entity_remote_pad +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x2a984b35 media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x2cb22787 media_create_pad_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x32b8a01a __media_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x38156b0d media_create_intf_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x394dbb30 media_request_object_complete +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x3a508ac5 media_get_pad_index +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x3ad6c87b media_entity_get_fwnode_pad +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x3e27feca media_request_put +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x4aa5fc47 media_request_get_by_fd +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x58026d84 media_devnode_create +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x599c1f86 media_request_object_find +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x66baed28 media_device_unregister_entity_notify +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x6d4758b1 media_graph_walk_cleanup +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x77b2189c media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7d927d8f media_request_object_unbind +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x98076b9a media_device_pci_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x9c9c8be6 media_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xa06bff25 media_device_unregister_entity +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xa700b206 media_device_register_entity_notify +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xad384136 __media_remove_intf_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xaf6923fd media_request_object_put +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xb8231bdf media_remove_intf_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xbb433f89 media_entity_pads_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xbf6496be media_graph_walk_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc04db46a media_remove_intf_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc6cd31c3 media_device_cleanup +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd100f871 __media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd1ca3788 media_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd6fd767d media_device_usb_allocate +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd9daaaf7 __media_device_usb_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xdab72d38 media_device_register_entity +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xdce556f1 media_graph_walk_next +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe2960aa8 media_device_unregister +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe52bdc92 media_entity_find_link EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe5ceecd6 media_entity_enum_cleanup -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xed7cd608 media_entity_remote_pad -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf02832a6 media_device_register_entity_notify +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe940d460 __media_device_register +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xeb7730a0 media_create_pad_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xebf8bc42 media_graph_walk_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf43dbf96 media_device_init EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xfc781c47 __media_entity_enum_init -EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0xa5b79863 cx88_setup_xc3028 -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x069913bd mantis_i2c_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x24d606db mantis_dma_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x25d56413 mantis_input_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x27dfd25b mantis_gpio_set_bits -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x32f04e79 mantis_pci_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x4037e640 mantis_frontend_power -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x51582dca mantis_input_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x52e956cb mantis_dvb_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x5979a81a mantis_pci_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x85b9293e mantis_ca_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x9aa14466 mantis_i2c_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xabfc9785 mantis_ca_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xac62a261 mantis_frontend_soft_reset -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xb75811e5 mantis_uart_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xb8803c53 mantis_get_mac -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xb8ee5100 mantis_dma_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xced10110 mantis_dvb_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xda3b0932 mantis_stream_control -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xee2dcc31 mantis_uart_exit -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x223d1eea saa7134_g_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x302f30e3 saa7134_s_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x368e5292 saa7134_ts_stop_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x3f4bcd61 saa7134_querystd -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x4f6540d0 saa7134_g_std -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x539ee7a8 saa7134_g_frequency -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x5cbb5916 saa7134_vb2_buffer_queue -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x76b023c2 saa7134_stop_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x81d3d2c1 saa7134_ts_buffer_prepare -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x83e9e63b saa7134_ts_buffer_init -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x873e356b saa7134_ts_queue_setup -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xa6a5c6f2 saa7134_s_tuner -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xaef0ac1c saa7134_enum_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xb05e6326 saa7134_s_frequency -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xb1e12aba saa7134_querycap -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xb7ebc096 saa7134_g_tuner -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xc45349ab saa7134_ts_start_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xcad7e85c saa7134_ts_qops -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xe5eadd2d saa7134_s_std -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x23176193 ttpci_budget_debiread +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xfc867463 media_devnode_remove +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xff33d0e5 __media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xffb7536b media_request_object_init +EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0xc8ef4d52 cx88_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/pci/intel/ipu6/intel-ipu6 0x01f75495 ipu_buttress_unmap_fw_image +EXPORT_SYMBOL_GPL drivers/media/pci/intel/ipu6/intel-ipu6 0x18c64bd9 ipu_cpd_free_pkg_dir +EXPORT_SYMBOL_GPL drivers/media/pci/intel/ipu6/intel-ipu6 0x2b42c6f7 ipu_cpd_pkg_dir_get_num_entries +EXPORT_SYMBOL_GPL drivers/media/pci/intel/ipu6/intel-ipu6 0x307cd99f ipu_buttress_add_psys_constraint +EXPORT_SYMBOL_GPL drivers/media/pci/intel/ipu6/intel-ipu6 0x3febfcd3 ipu_cpd_validate_cpd_file +EXPORT_SYMBOL_GPL drivers/media/pci/intel/ipu6/intel-ipu6 0x58745343 ipu_send_get_token +EXPORT_SYMBOL_GPL drivers/media/pci/intel/ipu6/intel-ipu6 0x5d5d2189 ipu_recv_put_token +EXPORT_SYMBOL_GPL drivers/media/pci/intel/ipu6/intel-ipu6 0x64aaeec2 ipu_cpd_pkg_dir_get_address +EXPORT_SYMBOL_GPL drivers/media/pci/intel/ipu6/intel-ipu6 0x7842c730 ipu_cpd_pkg_dir_get_type +EXPORT_SYMBOL_GPL drivers/media/pci/intel/ipu6/intel-ipu6 0x7c26600e ipu_fw_com_prepare +EXPORT_SYMBOL_GPL drivers/media/pci/intel/ipu6/intel-ipu6 0x9317aab9 ipu_trace_init +EXPORT_SYMBOL_GPL drivers/media/pci/intel/ipu6/intel-ipu6 0xa996e10f ipu_fw_com_release +EXPORT_SYMBOL_GPL drivers/media/pci/intel/ipu6/intel-ipu6 0xab3cab11 ipu_cpd_create_pkg_dir +EXPORT_SYMBOL_GPL drivers/media/pci/intel/ipu6/intel-ipu6 0xae0e1eb1 ipu_buttress_remove_psys_constraint +EXPORT_SYMBOL_GPL drivers/media/pci/intel/ipu6/intel-ipu6 0xb3a9f8cf ipu_trace_stop +EXPORT_SYMBOL_GPL drivers/media/pci/intel/ipu6/intel-ipu6 0xc76903d5 ipu_fw_com_close +EXPORT_SYMBOL_GPL drivers/media/pci/intel/ipu6/intel-ipu6 0xcfff394e ipu_fw_com_open +EXPORT_SYMBOL_GPL drivers/media/pci/intel/ipu6/intel-ipu6 0xd82eb3df ipu_cpd_pkg_dir_get_size +EXPORT_SYMBOL_GPL drivers/media/pci/intel/ipu6/intel-ipu6 0xe10e6751 ipu_fw_com_ready +EXPORT_SYMBOL_GPL drivers/media/pci/intel/ipu6/intel-ipu6 0xe3ae84b6 ipu_buttress_tsc_read +EXPORT_SYMBOL_GPL drivers/media/pci/intel/ipu6/intel-ipu6 0xe7e8dd88 ipu_buttress_map_fw_image +EXPORT_SYMBOL_GPL drivers/media/pci/intel/ipu6/intel-ipu6 0xea4c2cf3 ipu_buttress_tsc_ticks_to_ns +EXPORT_SYMBOL_GPL drivers/media/pci/intel/ipu6/intel-ipu6 0xf19708cf ipu_send_put_token +EXPORT_SYMBOL_GPL drivers/media/pci/intel/ipu6/intel-ipu6 0xf4be7a05 ipu_recv_get_token +EXPORT_SYMBOL_GPL drivers/media/pci/intel/ipu6/intel-ipu6 0xf500147a ipu_trace_uninit +EXPORT_SYMBOL_GPL drivers/media/pci/intel/ipu6/intel-ipu6 0xffc6eafb ipu_trace_restore +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x1e4c0e51 mantis_i2c_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x2ae3388a mantis_ca_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x2b04d6b0 mantis_stream_control +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x2fb82821 mantis_input_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x4aa96b63 mantis_dma_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x7391c525 mantis_ca_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x745f9e6b mantis_dvb_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x7fe32f6e mantis_get_mac +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x83d996d0 mantis_frontend_power +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x8af1ffe7 mantis_pci_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x8faa544f mantis_uart_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x90392b67 mantis_i2c_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xa3e23252 mantis_input_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xaca8e595 mantis_gpio_set_bits +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xba3f2724 mantis_uart_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xc4dc4e55 mantis_dma_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xdfade504 mantis_frontend_soft_reset +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xef958464 mantis_pci_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xfa2abb5d mantis_dvb_exit +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x05c4b95e saa7134_s_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x1a9817fd saa7134_vb2_buffer_queue +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x24442e1b saa7134_ts_queue_setup +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x359eef1f saa7134_ts_buffer_init +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x46fe2b3e saa7134_s_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x5e2914b0 saa7134_ts_start_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x64b2903f saa7134_g_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x7527338f saa7134_g_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x792a645c saa7134_ts_qops +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x8d77a2a5 saa7134_enum_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xad97a5ec saa7134_g_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xb279694f saa7134_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xbbdbe0a2 saa7134_g_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xcc660aad saa7134_querystd +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xd2d998d9 saa7134_s_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xd77cb97d saa7134_ts_buffer_prepare +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xe2575bdb saa7134_ts_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xefb1ac08 saa7134_s_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xf8784302 saa7134_querycap +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x06dbde93 ttpci_budget_set_video_port +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x5200285f ttpci_budget_deinit EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x7948c222 budget_debug -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x7c90bba2 ttpci_budget_deinit -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xb53114d2 ttpci_budget_init -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xb6e2f06f ttpci_budget_init_hooks -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xb9dfea2d ttpci_budget_irq10_handler -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xfa4a85e2 ttpci_budget_debiwrite -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xfe68576c ttpci_budget_set_video_port -EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0x121e1cae mccic_register -EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0x2faac7d4 mccic_suspend -EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0x33a4c2e5 mccic_resume -EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0x52ef911c mccic_irq -EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0xabf7ca23 mccic_shutdown -EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0xb746bd08 radio_tea5777_init -EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0xe1ff16c4 radio_tea5777_exit -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x09f35533 si470x_viddev_template -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x45a26819 si470x_set_freq -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x8dc8d309 si470x_stop -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xa4705373 si470x_ctrl_ops -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xedbaa2a4 si470x_start -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x03c50323 ir_raw_event_set_idle -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x107f4d8d rc_keyup -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x2b5b262a rc_keydown_notimeout -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x2e181735 ir_raw_event_store_edge +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x7c0aa080 ttpci_budget_init_hooks +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xa1fb4704 ttpci_budget_debiread +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xcaa3b7a2 ttpci_budget_irq10_handler +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xda414b1f ttpci_budget_debiwrite +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xe85c4c45 ttpci_budget_init +EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0x0866efb7 mccic_shutdown +EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0x604b96d1 mccic_irq +EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0x7c9f72d7 mccic_suspend +EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0x9be44e35 mccic_register +EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0xe13397e1 mccic_resume +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x043e5110 radio_tea5777_exit +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x31675371 radio_tea5777_init +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x906aaca9 si470x_ctrl_ops +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xe39ac622 si470x_viddev_template +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xe8bdcd26 si470x_set_freq +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xef89281b si470x_stop +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xf2975cc1 si470x_start +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x00a8a0b8 ir_raw_event_set_idle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x061e5fbc rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x1a61c8e8 ir_raw_event_store_with_timeout +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x1b651df0 devm_rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x2854792b rc_keydown EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x2ed90ced rc_map_unregister -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x32dec8c0 rc_free_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x540b1e04 rc_repeat -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x5bfbe757 devm_rc_register_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x6ea7dccd ir_raw_event_handle -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x87be95c6 lirc_scancode_event -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x88981790 rc_g_keycode_from_table +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x39288384 rc_repeat +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x3c4f4055 ir_raw_event_store +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x58114720 rc_g_keycode_from_table +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x7552da99 devm_rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x78eec653 rc_keyup +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x8c304746 ir_raw_event_store_edge +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x96fb710e ir_raw_event_store_with_filter +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x99085236 rc_free_device EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb960f15c rc_map_register -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xba148f95 rc_unregister_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xbd9edb3f rc_register_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xc63b419e devm_rc_allocate_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xd1c23e98 ir_raw_event_store -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xd2149e7c ir_raw_event_store_with_filter -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xdc0adc14 rc_allocate_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xe19bfe80 ir_raw_event_store_with_timeout +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xdff5c711 ir_raw_event_handle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xe8209bac rc_unregister_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xefc3ae79 rc_keydown_notimeout +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xf5e5431c lirc_scancode_event +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xf7584f7f rc_allocate_device EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xfc5d3079 rc_map_get -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xff30726a rc_keydown -EXPORT_SYMBOL_GPL drivers/media/tuners/mt2063 0xbfb942f6 mt2063_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/mt20xx 0xf96da741 microtune_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5007t 0x6487ab96 mxl5007t_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/r820t 0x9a5caf81 r820t_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda18271 0x6927538d tda18271_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda827x 0x75470137 tda827x_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x57a26bb4 tda829x_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x93377370 tda829x_probe -EXPORT_SYMBOL_GPL drivers/media/tuners/tda9887 0xac5f4399 tda9887_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x6a67a33f tea5761_autodetection -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x8abe4556 tea5761_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x4b51843b tea5767_autodetection -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x8afcee79 tea5767_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tuner-simple 0xd78333fd simple_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mt2063 0x971651cb mt2063_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mt20xx 0xc61c32c6 microtune_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5007t 0x9fa4c434 mxl5007t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/r820t 0xeab1bb43 r820t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda18271 0xdc75ea96 tda18271_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda827x 0x09a64a9d tda827x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x0791d25c tda829x_probe +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0xa98d28a8 tda829x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda9887 0x809f7c43 tda9887_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0xa67e7a8c tea5761_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0xbc20c1de tea5761_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x78ecf080 tea5767_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0xe5c40d0c tea5767_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tuner-simple 0xe75dcf46 simple_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x006d327c cx231xx_set_alt_setting EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x017ea7c7 cx231xx_tuner_callback -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x22908dc6 is_fw_load -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x3b6e3b47 cx231xx_send_gpio_cmd -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x41eff11f cx231xx_init_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x448e671f cx231xx_uninit_bulk -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x46459d08 cx231xx_set_mode -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x5f6b1979 cx231xx_dev_init -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x70db2248 cx231xx_demod_reset -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x8d349930 cx231xx_init_vbi_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x9193613a cx231xx_enable_i2c_port_3 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xa480dffc cx231xx_dev_uninit -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xa744fa71 cx231xx_uninit_vbi_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xb990124a cx231xx_send_usb_command -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xbee0b6d6 cx231xx_get_i2c_adap -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xc5800555 cx231xx_unmute_audio -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xc8b8fb0b cx231xx_init_bulk -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xd9eb4190 cx231xx_disable656 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xe6a55e71 cx231xx_set_alt_setting -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xe7560c01 cx231xx_enable656 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xe8a34ebf cx231xx_capture_start -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xfe8f553b cx231xx_uninit_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0x422af04e mxl111sf_demod_attach -EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0x95b45de3 mxl111sf_tuner_attach -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x0588ab76 em28xx_write_reg_bits -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x10058354 em28xx_find_led -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x15f67680 em28xx_gpio_set -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x1e960ee8 em28xx_read_reg -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x3a0aa0b0 em28xx_read_ac97 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x4abef24e em28xx_stop_urbs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x4c535a13 em28xx_audio_analog_set -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x4cf0a05d em28xx_set_mode -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x52cde56d em28xx_setup_xc3028 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x5f4bc7b6 em28xx_init_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x1fce9eed cx231xx_enable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x2028d55f cx231xx_disable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x2e6122c8 cx231xx_init_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x4c4f5a70 cx231xx_unmute_audio +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x64c79da8 cx231xx_dev_init +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x67b32543 cx231xx_uninit_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x6cad7f76 cx231xx_get_i2c_adap +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x750133ed cx231xx_init_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x77084f2f cx231xx_uninit_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x8e0e5c09 cx231xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x9d3e80cc cx231xx_send_gpio_cmd +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xa27a412c cx231xx_capture_start +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xac3ce6d5 cx231xx_demod_reset +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xb35907f2 cx231xx_dev_uninit +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xc1d8f1d0 cx231xx_send_usb_command +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xc58bbce7 cx231xx_init_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xe393455b cx231xx_enable_i2c_port_3 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xe94fa25d is_fw_load +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xf7369600 cx231xx_uninit_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0x7698192e mxl111sf_demod_attach +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0x2e51c265 mxl111sf_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x01d92f1e em28xx_write_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x0f3d3ed8 em28xx_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x18090d5f em28xx_toggle_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x1a8ef9d8 em28xx_init_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x1c0bc713 em28xx_init_camera +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x1d4d01fb em28xx_write_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x2d0347ab em28xx_read_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x2f3bef77 em28xx_uninit_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x3887d937 em28xx_audio_setup +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x4495678f em28xx_gpio_set EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x721f7cc7 em28xx_free_device -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7b7b335d em28xx_toggle_reg_bits -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7ebd062d em28xx_init_camera EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7fc8652c em28xx_tuner_callback EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x921d7c65 em28xx_boards -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x98c9a1f9 em28xx_uninit_usb_xfer -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xb1b73a9d em28xx_write_ac97 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xde321096 em28xx_write_reg -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xf02bc1c0 em28xx_write_regs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xf15f2f0b em28xx_alloc_urbs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xfcb8e7a9 em28xx_audio_setup +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xbb11a18a em28xx_audio_analog_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xca933216 em28xx_stop_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xd18ef0f9 em28xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xd6e94af3 em28xx_write_regs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xdfae8346 em28xx_write_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xe800d89b em28xx_alloc_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xe9b8a6db em28xx_find_led +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xf89bb15f em28xx_read_reg EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x2309a6d6 tm6000_xc5000_callback -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x7793400d tm6000_set_reg -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x7a4996c2 tm6000_get_reg +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x5738375e tm6000_set_reg EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x89b611dd tm6000_debug -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x9a20e26e tm6000_set_reg_mask +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x8f6983d2 tm6000_get_reg +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xb31072fb tm6000_set_reg_mask +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xbe1889fe tm6000_set_audio_bitrate EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xdff8e89d tm6000_tuner_callback -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xf477c072 tm6000_set_audio_bitrate -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x39f264f4 __v4l2_async_notifier_add_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x5614977a v4l2_async_notifier_cleanup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0xa2e8c5e1 __v4l2_async_notifier_add_fwnode_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0xab5020c0 __v4l2_async_notifier_add_fwnode_remote_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0xbcc676c7 __v4l2_async_notifier_add_i2c_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x07bb8876 __v4l2_async_notifier_add_fwnode_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x37ff2dec __v4l2_async_notifier_add_fwnode_remote_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x62a4c0bf __v4l2_async_notifier_add_i2c_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0xc67a4baa __v4l2_async_notifier_add_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0xda38dcf1 v4l2_async_notifier_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 @@ -14049,393 +14090,397 @@ EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xef15cc44 v4l2_hdmi_rx_colorimetry 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 0x1eebeebe v4l2_flash_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0xa7eac0f2 v4l2_flash_indicator_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0xd6089261 v4l2_flash_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x07d8e3b0 v4l2_fwnode_connector_add_link -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x10ebeb29 v4l2_fwnode_endpoint_parse -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x2dfed44c v4l2_fwnode_endpoint_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x5331fa47 v4l2_fwnode_connector_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x5991e38f v4l2_flash_indicator_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x6cea4dfe v4l2_flash_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x988c3856 v4l2_flash_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x012e706b v4l2_fwnode_connector_add_link +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x18ea9c2a v4l2_async_notifier_parse_fwnode_endpoints +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x24586fd6 v4l2_fwnode_endpoint_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x49f4da8f v4l2_fwnode_connector_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x5dccd343 v4l2_fwnode_device_parse EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x612ddce5 v4l2_fwnode_connector_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x6775130b v4l2_fwnode_endpoint_alloc_parse -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x6b33560a v4l2_fwnode_parse_link -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x7bfd53cb v4l2_async_notifier_parse_fwnode_endpoints -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xd1809796 v4l2_fwnode_device_parse -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xe3082e14 v4l2_fwnode_put_link -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xe43b78ff v4l2_async_register_subdev_sensor -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x025c5fc1 v4l2_m2m_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0b633048 v4l2_m2m_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0d81f217 v4l2_m2m_try_schedule -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x11c71fe1 v4l2_m2m_last_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x145d4368 v4l2_m2m_ioctl_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x15365834 v4l2_m2m_encoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1cbac35b v4l2_m2m_buf_remove_by_idx -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1f43889d v4l2_m2m_update_stop_streaming_state -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x219098c4 v4l2_m2m_register_media_controller -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x25a41ac4 v4l2_m2m_ioctl_stateless_decoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x33521724 v4l2_m2m_ioctl_encoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3b6bdfe6 v4l2_m2m_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x44963b70 v4l2_m2m_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x47cb406f v4l2_m2m_ioctl_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x47f2e9f0 v4l2_m2m_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x49677906 v4l2_m2m_ioctl_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x50d9f5bc v4l2_m2m_buf_remove -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x58d58785 v4l2_m2m_ioctl_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5a450321 v4l2_m2m_ioctl_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7191c417 v4l2_m2m_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x757aa501 v4l2_fwnode_endpoint_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x7a22a8c7 v4l2_fwnode_put_link +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x925c2c0c v4l2_async_register_subdev_sensor +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xb63534ee v4l2_fwnode_parse_link +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xf71a93e7 v4l2_fwnode_endpoint_alloc_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0ad18a57 v4l2_m2m_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x14d6a23c v4l2_m2m_encoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1b4fe708 v4l2_m2m_fop_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1dcab1f3 v4l2_m2m_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x274f0621 v4l2_m2m_ioctl_try_encoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x2d55bbd6 v4l2_m2m_update_stop_streaming_state +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x30058346 v4l2_m2m_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3669174c v4l2_m2m_buf_remove_by_idx +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x37352bde v4l2_m2m_register_media_controller +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3eea81f3 v4l2_m2m_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x46e258f1 v4l2_m2m_ioctl_stateless_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x61d472d4 v4l2_m2m_ioctl_try_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6d6cea95 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 0x734ed7c5 v4l2_m2m_ioctl_try_encoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7511a3b0 v4l2_m2m_ioctl_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x758961f0 v4l2_m2m_buf_copy_metadata -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7b246128 v4l2_m2m_request_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7dc2193b v4l2_m2m_decoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x84551013 v4l2_m2m_ioctl_stateless_try_decoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x868cf42c v4l2_m2m_ioctl_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8d2ca107 v4l2_m2m_ioctl_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa2de304e v4l2_m2m_fop_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xacb53c7d v4l2_m2m_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xad2535a1 v4l2_m2m_fop_mmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xae4bddef v4l2_m2m_ctx_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb1f7ee02 v4l2_m2m_last_buffer_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb24891c1 v4l2_m2m_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb301defb v4l2_m2m_update_start_streaming_state -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xbd668373 v4l2_m2m_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xbdf056a2 v4l2_m2m_next_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7333398d v4l2_m2m_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x74381cfc v4l2_m2m_ctx_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x74593342 v4l2_m2m_last_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x759ecc31 v4l2_m2m_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7a803b80 v4l2_m2m_buf_remove_by_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7c0ea994 v4l2_m2m_ioctl_stateless_try_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7efb7424 v4l2_m2m_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7fca9bd3 v4l2_m2m_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x80c092c6 v4l2_m2m_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8a2b6b71 v4l2_m2m_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x94c93225 v4l2_m2m_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa0b9e281 v4l2_m2m_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa5d4a8ba v4l2_m2m_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb0668da6 v4l2_m2m_request_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xbade2ba9 v4l2_m2m_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xbaffd7d0 v4l2_m2m_last_buffer_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xbd9d4448 v4l2_m2m_ctx_init EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc6fca5ad v4l2_m2m_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc80964ef v4l2_m2m_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd183f94a v4l2_m2m_buf_remove_by_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd21633c1 v4l2_m2m_ioctl_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xea333ec7 v4l2_m2m_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc8f61b8e v4l2_m2m_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xce4bc7da v4l2_m2m_ioctl_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd86e7a01 v4l2_m2m_next_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd9d0a048 v4l2_m2m_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe0b55d54 v4l2_m2m_buf_copy_metadata +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe16ced50 v4l2_m2m_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe3ccb5f8 v4l2_m2m_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe72b13eb v4l2_m2m_buf_remove +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xed1e8d3c v4l2_m2m_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf100f1a3 v4l2_m2m_try_schedule EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf13ff84d v4l2_m2m_unregister_media_controller -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf4d9795a v4l2_m2m_ioctl_decoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf59e2047 v4l2_m2m_ctx_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf81e1604 v4l2_m2m_ioctl_try_decoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x06911bfa videobuf_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x1948ebec videobuf_mmap_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x389a8dc9 videobuf_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x3aed4936 videobuf_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x56a6be9b videobuf_next_field -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x6245ad87 videobuf_iolock -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x63eaaf60 videobuf_read_start -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x728795c3 videobuf_queue_is_busy -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x74b521d1 videobuf_queue_core_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x83ad7f80 videobuf_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x84def8cd videobuf_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x8625483b videobuf_mmap_mapper -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x971697cf videobuf_poll_stream -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x9ae2da1a videobuf_queue_to_vaddr -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xa8806d8d videobuf_read_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xad7752be videobuf_read_stream -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xb8dea71e videobuf_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xbb37f579 __videobuf_mmap_setup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xbb511089 videobuf_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xbb6b02fe videobuf_mmap_setup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xbcc85131 videobuf_queue_cancel -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd842d25e videobuf_read_one -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xe45af06f videobuf_alloc_vb -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xfd88a5c8 videobuf_waiton -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x03b05ec8 videobuf_dma_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x423ef1f7 videobuf_queue_sg_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x49480bb7 videobuf_to_dma +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf1e2a59d v4l2_m2m_update_start_streaming_state +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf79025eb v4l2_m2m_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf838f352 v4l2_m2m_ioctl_encoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xfd0627de v4l2_m2m_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x042882bc videobuf_mmap_mapper +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x058b0dca videobuf_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x08b3f4dd videobuf_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x351ccd44 __videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x4197a8d0 videobuf_iolock +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x45cf36c4 videobuf_queue_cancel +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x4bf133f2 videobuf_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x4ca32217 videobuf_read_one +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x5aba4b9a videobuf_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x64b70c49 videobuf_mmap_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x800f01a6 videobuf_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x8367f97c videobuf_read_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x8ea76a33 videobuf_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x93ab02e9 videobuf_alloc_vb +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x9f90cdbd videobuf_queue_core_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xb0abe5cb videobuf_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xb8b5183b videobuf_queue_is_busy +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xba44dce5 videobuf_waiton +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xccbb8da8 videobuf_next_field +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xcdd7b701 videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd7c3a5b0 videobuf_queue_to_vaddr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xde147fd5 videobuf_read_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xe210e72e videobuf_poll_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xf775a7e3 videobuf_read_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x21369969 videobuf_dma_free EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x553a86d0 videobuf_sg_alloc -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xd48a94c1 videobuf_dma_unmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x2f026a34 videobuf_vmalloc_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x6d9b5dd8 videobuf_queue_vmalloc_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0xd9e78a8d videobuf_to_vmalloc -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x01d0a8d7 v4l2_create_fwnode_links -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x03c3c2b5 v4l2_s_parm_cap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0a4a6c42 __SCK__tp_func_vb2_v4l2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x12e7c122 v4l2_i2c_subdev_addr -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x18c157ec v4l2_spi_subdev_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x19a32f3f v4l2_subdev_get_fwnode_pad_1_to_1 -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1ddfd387 v4l2_event_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x24d76a70 v4l2_g_parm_cap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x27111396 v4l2_src_change_event_subdev_subscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x336b582d v4l2_fh_is_singular -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x38cb5e53 v4l2_i2c_subdev_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3955e282 v4l2_event_wake_all -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3aef2850 v4l_vb2q_enable_media_source -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3fdf82ea __tracepoint_vb2_v4l2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x43daf71e v4l2_create_fwnode_links_to_pad -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x45828a0d __traceiter_vb2_v4l2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x483de5c9 __SCK__tp_func_vb2_v4l2_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4c151f67 v4l2_compat_ioctl32 -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4cda05e0 v4l2_event_pending -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x50b25c39 v4l2_fh_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x53446fb8 v4l2_device_unregister_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5458e248 v4l2_subdev_link_validate_default -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x57aed66e __traceiter_vb2_v4l2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5b2219c6 v4l2_ctrl_request_hdl_ctrl_find -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x61d61bd9 v4l2_subdev_notify_event -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6cbf9087 __tracepoint_vb2_v4l2_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6ceac5a2 v4l2_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x983af7b5 videobuf_dma_unmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xb393019c videobuf_queue_sg_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xcec99c41 videobuf_to_dma +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x336be0be videobuf_vmalloc_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x5ab29a14 videobuf_queue_vmalloc_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0xe04574f1 videobuf_to_vmalloc +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x026b92ca v4l2_i2c_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x07522032 v4l2_spi_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x082bb2e1 v4l2_device_register +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1b2325bf v4l2_event_queue_fh +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1cb64d6b __SCK__tp_func_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x21293263 v4l2_pipeline_pm_put +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2147f5a5 v4l2_fh_del +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x22061b51 v4l2_subdev_link_validate +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x25d2b50c v4l2_g_parm_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x262b8b09 __SCK__tp_func_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2a543290 __SCK__tp_func_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2b53e925 v4l2_mc_create_media_graph +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x304a0ca5 v4l2_subdev_alloc_state +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x32c6252e __SCK__tp_func_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x32e59d6a v4l2_fh_exit +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x331157fe v4l_disable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x407570f9 v4l2_device_unregister +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4146d69d v4l2_device_put +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x42bc7827 v4l2_fh_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x43606d31 v4l2_event_dequeue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x43e0b641 __v4l2_ctrl_handler_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x50704702 v4l2_pipeline_link_notify +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5522af53 v4l2_event_unsubscribe_all +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x56d3f5f3 v4l2_subdev_link_validate_default +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5b6fe444 v4l_enable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5eeae5d8 v4l2_ctrl_request_hdl_ctrl_find +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6125e7a3 v4l2_i2c_subdev_addr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x665044cb v4l2_spi_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x68837697 v4l2_fh_add 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 0x6eccf844 v4l2_device_register_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7023185c __traceiter_vb2_v4l2_buf_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x737f2cc8 v4l2_event_unsubscribe_all -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x73d7a0b7 v4l2_pipeline_pm_get -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x75e51364 v4l2_i2c_new_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7ba8ee4d v4l2_event_subdev_unsubscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x808f25a5 v4l2_pipeline_pm_put -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x826e2687 v4l2_event_dequeue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x89a68529 v4l2_device_put -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8b61994b v4l2_fh_del -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x90a122e5 v4l2_fh_exit -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x97a41a24 __SCK__tp_func_vb2_v4l2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x97d79dcf v4l2_event_unsubscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x98db702a __v4l2_device_register_subdev_nodes -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9946d9eb v4l2_fh_add -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x99de3c04 v4l2_fh_open -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9ab54212 v4l2_spi_new_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9b0a82a0 __tracepoint_vb2_v4l2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9e6ce7cb v4l2_mc_create_media_graph +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7997b372 v4l2_create_fwnode_links_to_pad +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7d0fef14 v4l2_subdev_notify_event +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7e5f82e3 __tracepoint_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7f3ff54e __traceiter_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x81112526 v4l2_create_fwnode_links +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8d7b6d7a v4l2_i2c_new_subdev_board +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x97261559 v4l_vb2q_enable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x972b1c70 v4l2_device_register_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9f677ced v4l2_s_parm_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9f73044d __traceiter_vb2_v4l2_dqbuf 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 0xa2389aee v4l2_src_change_event_subscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa961250f v4l2_device_disconnect -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xae2c3bab __SCK__tp_func_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa1d2cadf __tracepoint_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa4f96068 __traceiter_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xafb5595b v4l2_get_link_freq +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xafe36d44 v4l2_fh_is_singular +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb0a9ee0d v4l2_device_set_name EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb13d41a0 v4l2_subdev_free_state -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb26ba006 __tracepoint_vb2_v4l2_buf_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbf09ca22 v4l_enable_media_source -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbf68c987 __traceiter_vb2_v4l2_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc35e961b v4l_disable_media_source -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc632d4c6 v4l2_pipeline_link_notify +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb62cb6d7 v4l2_event_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbe03528d v4l2_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbfaf0259 v4l2_ctrl_request_hdl_find +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc238eac2 v4l2_fh_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc712cd3d v4l2_i2c_subdev_set_name EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc8dd867f __SCT__tp_func_vb2_v4l2_buf_queue EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcc501597 v4l2_fill_pixfmt -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcd3bb31d v4l2_device_set_name -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcff7e3e8 v4l2_i2c_new_subdev_board -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd2affbb0 v4l2_event_queue_fh -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd352eb2f v4l2_device_unregister -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd4e82bb5 v4l2_i2c_subdev_set_name +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xce6227ee v4l2_device_disconnect +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd133a971 v4l2_compat_ioctl32 +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd53cc73c v4l2_device_unregister_subdev EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd541e31a __SCT__tp_func_vb2_v4l2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd54f92f5 __v4l2_ctrl_handler_setup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd7dcfa28 v4l2_get_link_freq -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xde0eaa22 v4l2_subdev_alloc_state +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd6f64f6d v4l2_event_subdev_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd8387c9e __v4l2_device_register_subdev_nodes +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xda646f95 v4l2_src_change_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xdbb63601 __tracepoint_vb2_v4l2_buf_done EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe2822320 __v4l2_find_nearest_size -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe282c8c2 v4l2_fh_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe3162cfe v4l2_ctrl_request_hdl_find +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe2e5136e v4l2_i2c_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe98890b7 v4l2_event_wake_all +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xec01de4a __tracepoint_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xec38e348 v4l2_event_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xec9273cf v4l2_event_pending +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xee591c31 v4l2_subdev_get_fwnode_pad_1_to_1 +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xee7a154a v4l2_src_change_event_subdev_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf1e603c4 v4l2_pipeline_pm_get 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 0xf87da230 v4l2_subdev_link_validate -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfe036c3c v4l2_device_register -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x7e24d62b pm80x_pm_ops -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xd2222d86 pm80x_regmap_config +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf954b508 v4l2_fh_open +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfd153ee0 __traceiter_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x4d52517c pm80x_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xa87d0109 pm80x_init EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xd99fd720 pm80x_deinit -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xf03a93b7 pm80x_init -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x1901d962 wm5102_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x24046eed wm8997_patch -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x2697ada3 cs47l24_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xeb778f0f pm80x_regmap_config +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x0c2067a5 wm8997_patch +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x1cc333e3 wm5110_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x1e2814d1 arizona_dev_exit EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x4048fbbc wm8997_aod -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x410be1ef arizona_set_irq_wake -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x49433ea1 wm5110_patch -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x4bcbceda wm8998_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x40cabe96 arizona_request_irq EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x4c087981 wm5110_aod -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x4d5a89e6 arizona_pm_ops -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x5a39182e wm5102_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x6222e557 arizona_clk32k_disable -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x6cbb1bef wm8997_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x6f9c68d8 cs47l24_patch -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x71090493 arizona_free_irq -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x746d2c90 arizona_clk32k_enable -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xa4956669 arizona_dev_exit +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x4db15224 cs47l24_patch +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x5ffbf2af wm5110_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x66aa3344 arizona_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x746817fb arizona_clk32k_enable +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x7501d0dd arizona_dev_init +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x782397ea arizona_free_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x942aa553 wm8997_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xa2a8a692 wm5102_spi_regmap EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xa6b70564 wm8997_irq EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xa727bd3b cs47l24_irq -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xa76a4c13 wm5110_spi_regmap EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xaaf78759 wm5110_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xb35a7066 wm8998_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xb99366f3 wm5110_patch EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xc81b43ab wm5110_revd_irq -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xd6a7fe93 arizona_request_irq -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xe4528d5f wm5110_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xfa13b252 arizona_dev_init -EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0x42641057 atc260x_device_probe -EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0xb904e874 atc260x_match_device -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x01bdfd3b da9150_bulk_write -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x2f01d741 da9150_write_qif -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x30475739 da9150_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x3be217b8 da9150_read_qif -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x4b9d579c da9150_set_bits -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x5340c287 da9150_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x671016d2 da9150_bulk_read -EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x1a8e1058 intel_lpss_probe -EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x68bec3c5 intel_lpss_suspend -EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0xbdf2497c intel_lpss_prepare -EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0xe2b3e9b8 intel_lpss_remove -EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0xed37729b intel_lpss_resume -EXPORT_SYMBOL_GPL drivers/mfd/intel_pmc_bxt 0x5e0a0fd5 intel_pmc_gcr_update -EXPORT_SYMBOL_GPL drivers/mfd/intel_pmc_bxt 0x64150286 intel_pmc_gcr_read64 -EXPORT_SYMBOL_GPL drivers/mfd/intel_pmc_bxt 0xf705fef8 intel_pmc_s0ix_counter_read +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xcd509392 arizona_clk32k_disable +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xe19067de wm5102_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xe4b8c3ba cs47l24_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xe6ba6d74 arizona_set_irq_wake +EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0x66d062ee atc260x_match_device +EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0x6b33d813 atc260x_device_probe +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x2846c9d0 da9150_bulk_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x3e5f6aee da9150_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x77e9bf9a da9150_write_qif +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x7ae85a3b da9150_read_qif +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x81306b3a da9150_bulk_read +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x94591f7c da9150_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x9c6af9ec da9150_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x03e7f025 intel_lpss_resume +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x672829c8 intel_lpss_suspend +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0xbad3312d intel_lpss_remove +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0xf6658001 intel_lpss_prepare +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0xf9231b37 intel_lpss_probe +EXPORT_SYMBOL_GPL drivers/mfd/intel_pmc_bxt 0x02b74407 intel_pmc_gcr_read64 +EXPORT_SYMBOL_GPL drivers/mfd/intel_pmc_bxt 0x21bc073f intel_pmc_gcr_update +EXPORT_SYMBOL_GPL drivers/mfd/intel_pmc_bxt 0x7bb941df intel_pmc_s0ix_counter_read EXPORT_SYMBOL_GPL drivers/mfd/iqs62x 0xa436f4de iqs62x_events -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x39d92a85 kempld_read8 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x52ce1532 kempld_write16 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x6d967afe kempld_release_mutex -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x790f8dfc kempld_read16 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x818fffca kempld_write8 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x967acd21 kempld_get_mutex -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xaf44c8cc kempld_write32 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xf972cc55 kempld_read32 -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x168313c4 lm3533_write -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x38bc406b lm3533_read -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x8d8ec6dd lm3533_update -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x72d246ee lm3533_ctrlbank_enable -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x82a7d4bd lm3533_ctrlbank_get_pwm -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x93b6e46e lm3533_ctrlbank_set_max_current -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xa8780ef9 lm3533_ctrlbank_disable -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xe534b4d0 lm3533_ctrlbank_set_brightness -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xf2e3c2db lm3533_ctrlbank_get_brightness -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xf99472b7 lm3533_ctrlbank_set_pwm -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x05b365e6 lp3943_write_byte -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x2ac9fabc lp3943_update_bits -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x35c41517 lp3943_read_byte -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x0193465a cs47l90_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x019e9a1a cs47l90_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x023d25ce kempld_read8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x05d3a492 kempld_read16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x0b6d44c4 kempld_release_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x31678f85 kempld_write16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x709bc852 kempld_read32 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x72efe285 kempld_get_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x83ed24a8 kempld_write8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x96cfcc7f kempld_write32 +EXPORT_SYMBOL_GPL drivers/mfd/ljca 0x521b8c4c ljca_register_event_cb +EXPORT_SYMBOL_GPL drivers/mfd/ljca 0x5e0fa4a7 ljca_transfer +EXPORT_SYMBOL_GPL drivers/mfd/ljca 0xb314ecbd ljca_transfer_noack +EXPORT_SYMBOL_GPL drivers/mfd/ljca 0xdd95fc08 ljca_unregister_event_cb +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x8d466198 lm3533_write +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x9e8bf28f lm3533_update +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xa167e740 lm3533_read +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x152eb6db lm3533_ctrlbank_get_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x2e443ca7 lm3533_ctrlbank_set_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x516d5615 lm3533_ctrlbank_disable +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x5d483366 lm3533_ctrlbank_get_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xc8dcade0 lm3533_ctrlbank_enable +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xe915eb6d lm3533_ctrlbank_set_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xf2f1cc53 lm3533_ctrlbank_set_max_current +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x6141df62 lp3943_write_byte +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x985ed524 lp3943_update_bits +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xc989b9c7 lp3943_read_byte +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x00a0d0a7 cs47l35_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x00ad0ce7 cs47l35_32bit_i2c_regmap EXPORT_SYMBOL_GPL drivers/mfd/madera 0x0f379262 madera_of_match -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x194631ea cs47l85_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x194bedaa cs47l85_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x20e3b37e madera_dev_exit -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x2b34aa92 cs47l35_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x2b3976d2 cs47l35_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x36125da7 cs47l92_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x361f81e7 cs47l92_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x42a65b56 cs47l90_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x42ab8716 cs47l90_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x49eee3c4 cs47l90_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x4a219434 madera_dev_init -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x58a10313 cs47l92_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x5a732ce6 cs47l85_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x5a7ef0a6 cs47l85_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x6801b79e cs47l35_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x680c6bde cs47l35_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x6f85d64a cs47l85_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x752740ab cs47l92_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x752a9ceb cs47l92_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x98c99c09 madera_pm_ops -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xa2c21d52 cs47l15_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xa2cfc112 cs47l15_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xe1f7005e cs47l15_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xe1fadc1e cs47l15_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x1d862792 cs47l92_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x1d8bfbd2 cs47l92_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x2a073c6f cs47l90_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x2a0ae02f cs47l90_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x32d24bdf cs47l85_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x32df979f cs47l85_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x3e0803d6 cs47l90_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x4395cdab cs47l35_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x439811eb cs47l35_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x5cf1435c cs47l15_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x5eb33a9e cs47l92_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x5ebee6de cs47l92_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x6272d800 cs47l85_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x69322163 cs47l90_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x693ffd23 cs47l90_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x69a59b90 madera_dev_init +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x6e6c282d cs47l35_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x71e756d3 cs47l85_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x71ea8a93 cs47l85_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x7b0f91fa cs47l92_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x87fbac84 madera_dev_exit +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x89566767 cs47l15_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x895bbb27 cs47l15_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x8d55c5f1 madera_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xca637a6b cs47l15_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xca6ea62b cs47l15_16bit_i2c_regmap EXPORT_SYMBOL_GPL drivers/mfd/madera 0xebe384cb madera_name_from_type -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xecf6737d cs47l15_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xf4507bea cs47l35_patch -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x87086282 mc13xxx_variant_mc13783 -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x8df46640 mc13xxx_adc_do_conversion -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x950797ea mc13xxx_variant_mc34708 -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x99a9acae mc13xxx_common_init -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xba7147c4 mc13xxx_common_exit -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xc7b229a2 mc13xxx_variant_mc13892 -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x1cf00831 pcf50633_read_block -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x3bc86884 pcf50633_reg_set_bit_mask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x8335578c pcf50633_irq_unmask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x92a8b5a2 pcf50633_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x938b8e6a pcf50633_irq_mask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x9aeed2f7 pcf50633_free_irq -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xa7da9458 pcf50633_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xad9bd58a pcf50633_irq_mask_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xc33a7515 pcf50633_write_block -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xc772b547 pcf50633_reg_clear_bits -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xf6b41b1a pcf50633_register_irq -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x13ede087 pcf50633_adc_sync_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x94c96ab1 pcf50633_adc_async_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x064069cc pcf50633_gpio_power_supply_set -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x36aee30e pcf50633_gpio_set -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xa4a2abf4 pcf50633_gpio_invert_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xabf94516 pcf50633_gpio_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xbdb82c8b pcf50633_gpio_invert_set +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x0f0c4071 mc13xxx_variant_mc34708 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x1d03b519 mc13xxx_variant_mc13783 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x5db9fe39 mc13xxx_variant_mc13892 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xb1ceaad3 mc13xxx_common_exit +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xc72a5eef mc13xxx_adc_do_conversion +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xdc593dd9 mc13xxx_common_init +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x0c412f52 pcf50633_irq_unmask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x142b2e97 pcf50633_register_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x26a30e25 pcf50633_write_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x299fe44c pcf50633_read_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x30d018f0 pcf50633_irq_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x5b7b65db pcf50633_reg_set_bit_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x629fc2e3 pcf50633_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x652c2810 pcf50633_reg_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x86c27757 pcf50633_irq_mask_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x89c40162 pcf50633_free_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xab2852c5 pcf50633_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0xb7856847 pcf50633_adc_sync_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0xf8f5ead2 pcf50633_adc_async_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x0a160291 pcf50633_gpio_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x5e041a2d pcf50633_gpio_invert_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x69322b83 pcf50633_gpio_invert_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x8598952c pcf50633_gpio_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xf968dead pcf50633_gpio_power_supply_set EXPORT_SYMBOL_GPL drivers/mfd/rave-sp 0x43e53ef9 rave_sp_exec -EXPORT_SYMBOL_GPL drivers/mfd/rave-sp 0xe6376aaa devm_rave_sp_register_event_notifier +EXPORT_SYMBOL_GPL drivers/mfd/rave-sp 0xb2887e96 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 0x1cda35b6 devm_regmap_init_si476x -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x27419413 si476x_core_has_am -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3627c020 si476x_core_cmd_fm_acf_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x376ced10 si476x_core_cmd_power_down -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x39c370dc si476x_core_stop -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3b024b13 si476x_core_is_in_am_receiver_mode -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3f00845f si476x_core_is_a_secondary_tuner -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x420f48b6 si476x_core_set_power_state -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x48741e16 si476x_core_cmd_fm_rds_blockcount -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4e447f3b si476x_core_cmd_set_property -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5305223c si476x_core_cmd_fm_phase_div_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x53fe4507 si476x_core_cmd_fm_tune_freq -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5e133d13 si476x_core_cmd_zif_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6777b3f6 si476x_core_cmd_intb_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8c1908c5 si476x_core_i2c_xfer -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8c681da1 si476x_core_cmd_fm_phase_diversity -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8cbd6b80 si476x_core_cmd_get_property -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8e437b6a si476x_core_cmd_am_acf_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x974e3699 si476x_core_cmd_func_info -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9a60416f si476x_core_cmd_ana_audio_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa046e078 si476x_core_cmd_fm_seek_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa1ddb7d9 si476x_core_cmd_agc_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb2ca3095 si476x_core_is_a_primary_tuner -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb5ababcb si476x_core_cmd_ic_link_gpo_ctl_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xbc3a73b7 si476x_core_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc76b770d si476x_core_is_powered_up -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xcef85e94 si476x_core_cmd_am_seek_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe418e6db si476x_core_cmd_dig_audio_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe84fdb49 si476x_core_has_diversity -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xef68eb92 si476x_core_cmd_am_rsq_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf0744bb7 si476x_core_cmd_fm_rds_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf0a00462 si476x_core_cmd_am_tune_freq -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf992fd3b si476x_core_cmd_power_up -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xfc56b807 si476x_core_cmd_fm_rsq_status -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x011d3e3b sm501_misc_control -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x1c58a301 sm501_find_clock -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x608d4593 sm501_set_clock -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x79d48bbc sm501_modify_reg -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xee215034 sm501_unit_power -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x0921db1f am335x_tsc_se_clr -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x4c3930eb am335x_tsc_se_set_once -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x6f607121 am335x_tsc_se_set_cache -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x7ccc3d0c am335x_tsc_se_adc_done -EXPORT_SYMBOL_GPL drivers/mfd/ucb1400_core 0xc962aa06 ucb1400_adc_read -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x0aec2da4 alcor_write32 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x63c0949b alcor_write32be -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x8c92d086 alcor_write16 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x97ec27df alcor_read32 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xcce8c928 alcor_write8 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xdc6085a8 alcor_read8 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xe7e015c1 alcor_read32be -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x06ae6786 rtsx_pci_read_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x0b8291e6 rtsx_pci_card_exist -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x20dfbed3 rtsx_pci_card_power_off -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x23e3ae60 rtsx_pci_dma_unmap_sg -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x308651af rtsx_pci_stop_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x39f6e8e5 rtsx_pci_complete_unfinished_transfer -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x3a81cd62 rtsx_pci_read_phy_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x738d8a4e rtsx_pci_read_ppbuf -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x779fb2b2 rtsx_pci_transfer_data -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x7b1b77d1 rtsx_pci_card_pull_ctl_enable -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x7d8de9bb rtsx_pci_write_ppbuf -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x7dd354ef rtsx_pci_dma_transfer -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x7de6f069 rtsx_pci_card_power_on -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x80bcc05e rtsx_pci_send_cmd_no_wait -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x8b7f26a2 rtsx_pci_write_phy_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x90df0923 rtsx_pci_send_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xa730f166 rtsx_pci_card_pull_ctl_disable -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xb44c9927 rtsx_pci_card_exclusive_check -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xb7777ab4 rtsx_pci_switch_output_voltage -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xc2ba9f9d rtsx_pci_add_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xc8548fe6 rtsx_pci_dma_map_sg -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xccda2847 rtsx_pci_switch_clock -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xdc83f4d7 rtsx_pci_write_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xeafe5e0f rtsx_pci_start_run -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x055cefb9 rtsx_usb_add_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x2d2f722a rtsx_usb_write_ppbuf -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x342cfb32 rtsx_usb_write_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x41458bc3 rtsx_usb_card_exclusive_check -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x628ebb72 rtsx_usb_switch_clock -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x655869b7 rtsx_usb_get_rsp -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x7da9c30d rtsx_usb_ep0_read_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x859fbae4 rtsx_usb_send_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xa3cec136 rtsx_usb_ep0_write_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xaf137857 rtsx_usb_transfer_data -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xd652f8e4 rtsx_usb_read_ppbuf -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xe1095b72 rtsx_usb_read_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xec7dcf08 rtsx_usb_get_card_status -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x0c299d67 cb710_pci_update_config_reg -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x19516c43 cb710_sg_dwiter_read_next_block -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x752110bc cb710_set_irq_handler -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x99714a8c cb710_sg_dwiter_write_next_block +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0a6dbbfd si476x_core_cmd_am_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0e2886b1 si476x_core_cmd_power_down +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x2066d5cf si476x_core_cmd_zif_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x2310d458 si476x_core_cmd_agc_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x29c5aeb4 si476x_core_cmd_fm_rds_blockcount +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3035febb si476x_core_set_power_state +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x34cb18d7 si476x_core_cmd_ana_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x393facda si476x_core_is_a_secondary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3fe50c4f devm_regmap_init_si476x +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x52b85517 si476x_core_stop +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x55ef3216 si476x_core_is_in_am_receiver_mode +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x56643e1f si476x_core_cmd_am_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5bcd6aab si476x_core_cmd_fm_phase_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5e277564 si476x_core_cmd_fm_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x61fe47fc si476x_core_cmd_am_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x62a78eb5 si476x_core_cmd_fm_rds_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6920071c si476x_core_cmd_dig_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7f7a7cbc si476x_core_cmd_fm_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x82aeed31 si476x_core_is_a_primary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x87a69491 si476x_core_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9f34bde3 si476x_core_cmd_power_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xab13155b si476x_core_cmd_ic_link_gpo_ctl_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xabc269bc si476x_core_cmd_intb_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xbe238ffb si476x_core_has_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc4022ecb si476x_core_cmd_am_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc4b27618 si476x_core_cmd_fm_phase_div_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc7a0b04c si476x_core_is_powered_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xca7a3f18 si476x_core_cmd_fm_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xcf545178 si476x_core_cmd_func_info +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd3d45eb2 si476x_core_cmd_set_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd539ef8d si476x_core_cmd_fm_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd88c6496 si476x_core_i2c_xfer +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe7325e2a si476x_core_has_am +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe9a222e1 si476x_core_cmd_get_property +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x100b27de sm501_set_clock +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x61f8649a sm501_modify_reg +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x7013c953 sm501_unit_power +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xc39fb185 sm501_find_clock +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xf1c1fade sm501_misc_control +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x7cddbb49 am335x_tsc_se_set_cache +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xc04ee74f am335x_tsc_se_adc_done +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xdff229be am335x_tsc_se_set_once +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xe11dd390 am335x_tsc_se_clr +EXPORT_SYMBOL_GPL drivers/mfd/ucb1400_core 0x6a19d9cd ucb1400_adc_read +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x1a6f3bf6 alcor_write32be +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x3157a444 alcor_read32 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x4ad8d339 alcor_write16 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x70cddd75 alcor_read8 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x7fbd20a5 alcor_write8 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xc2d81f85 alcor_write32 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xebaa3c6c alcor_read32be +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x0364e18f rtsx_pci_write_phy_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x1816afc6 rtsx_pci_read_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x3379d2f2 rtsx_pci_card_exist +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x33fc956c rtsx_pci_write_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x372024af rtsx_pci_send_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x3b040ef1 rtsx_pci_card_pull_ctl_disable +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x4c4943f0 rtsx_pci_card_pull_ctl_enable +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x5133076d rtsx_pci_add_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x5673e723 rtsx_pci_write_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x619986fc rtsx_pci_complete_unfinished_transfer +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x6e72448c rtsx_pci_send_cmd_no_wait +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x6f701914 rtsx_pci_switch_clock +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x73902212 rtsx_pci_transfer_data +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x774a0885 rtsx_pci_read_phy_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x8d85bc33 rtsx_pci_switch_output_voltage +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x8e3ba229 rtsx_pci_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x983aee05 rtsx_pci_dma_map_sg +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x9f43643b rtsx_pci_dma_unmap_sg +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xa70f90cb rtsx_pci_card_power_off +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xb14cb0d1 rtsx_pci_stop_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xb3057e8b rtsx_pci_dma_transfer +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xc96b9c15 rtsx_pci_card_power_on +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xd57c3ab3 rtsx_pci_start_run +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xfc621cfd rtsx_pci_read_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x03cfd507 rtsx_usb_write_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x07a9ab91 rtsx_usb_read_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x2eb1e2c4 rtsx_usb_write_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x4017b123 rtsx_usb_send_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x8399218d rtsx_usb_ep0_read_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x899de8d2 rtsx_usb_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x98ce98b4 rtsx_usb_transfer_data +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xad865f0a rtsx_usb_switch_clock +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xb207b13e rtsx_usb_get_rsp +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xc031d2bc rtsx_usb_ep0_write_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xdc974551 rtsx_usb_add_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xf32779a3 rtsx_usb_read_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xfc8bffac rtsx_usb_get_card_status +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x68992651 cb710_set_irq_handler +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x9901d4b1 cb710_pci_update_config_reg +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xc0f5c1e7 cb710_sg_dwiter_read_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xef01dc66 cb710_sg_dwiter_write_next_block EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x0b008db0 oslec_hpf_tx EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x296a8983 oslec_update EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x3115970d oslec_create @@ -14449,57 +14494,63 @@ 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 0x15790d31 enclosure_for_each_device -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x2246dee4 enclosure_component_alloc -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x2ca76de0 enclosure_add_device -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x462821e1 enclosure_find -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x6a44fc5b enclosure_unregister -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xb0c7ff1f enclosure_component_register -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xcf838ff1 enclosure_remove_device -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xd9d5ea38 enclosure_register -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x221e98b2 lis3lv02d_init_dt -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x5e60e1ad lis3lv02d_joystick_disable -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x9aa71fce lis3lv02d_init_device -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xa5427424 lis3lv02d_poweron -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xa8779e5c lis3lv02d_remove_fs -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xd321ed4f lis3lv02d_joystick_enable -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xe3fb9783 lis3lv02d_poweroff -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xeff29841 lis3_dev -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x0473e344 mei_deregister -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x08a87207 mei_start -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x099268e9 mei_irq_read_handler -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x114ad20f mei_device_init -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x1346536e mei_irq_write_handler -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x1c59bfa4 mei_reset -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x1f32dc32 mei_stop -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x1fa267ec mei_cldev_recv_nonblock_vtag -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x3083c583 mei_hbm_pg_resume -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x38bad13b mei_cldev_send -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x3a27554b mei_cldev_recv -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x3e81dc07 mei_hbm_pg -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x56ea7e5d mei_cldev_driver_unregister -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x658b266e mei_cldev_enable -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x79ca8ea3 __mei_cldev_driver_register -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x7f79581f mei_cldev_get_drvdata -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x8864c06d mei_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x14d89173 enclosure_remove_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x5e8c9004 enclosure_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x63f9e98e enclosure_add_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x7210990f enclosure_find +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xb08effc1 enclosure_for_each_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xb53f9331 enclosure_component_alloc +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xb691af24 enclosure_unregister +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xdb10dc99 enclosure_component_register +EXPORT_SYMBOL_GPL drivers/misc/ivsc/intel_vsc 0x11ec310c vsc_unregister_csi +EXPORT_SYMBOL_GPL drivers/misc/ivsc/intel_vsc 0x45138f90 vsc_register_csi +EXPORT_SYMBOL_GPL drivers/misc/ivsc/intel_vsc 0x5763033e vsc_acquire_camera_sensor +EXPORT_SYMBOL_GPL drivers/misc/ivsc/intel_vsc 0x6b97696c vsc_release_camera_sensor +EXPORT_SYMBOL_GPL drivers/misc/ivsc/intel_vsc 0x77b2fb7c vsc_unregister_ace +EXPORT_SYMBOL_GPL drivers/misc/ivsc/intel_vsc 0xfaaaa50d vsc_register_ace +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x14c9831d lis3lv02d_poweroff +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x1a7d48c2 lis3lv02d_joystick_enable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x2f786ada lis3lv02d_init_device +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x4cbfa3cb lis3lv02d_joystick_disable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x59941928 lis3_dev +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x8aa68297 lis3lv02d_poweron +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xdec2d229 lis3lv02d_init_dt +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xe1a52e87 lis3lv02d_remove_fs +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x0b600546 mei_write_is_idle +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x0c1a7c40 mei_hbm_pg +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x1bcf2089 mei_cldev_dma_map +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x23b63206 mei_hbm_pg_resume +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x27a9f9b4 mei_irq_read_handler +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x3f490dec mei_cldev_recv_vtag +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x454a5118 mei_cldev_enable +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x48a1b5b2 mei_cldev_register_notif_cb +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x5d4818ef mei_device_init +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x64a18368 mei_cldev_recv +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x668d5d6f mei_start +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x66c3b638 mei_cldev_ver +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x69b609f1 mei_deregister +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x6b2749e1 mei_cancel_work +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x744c8840 mei_cldev_enabled +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x77f13753 mei_cldev_dma_unmap +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x7e072cdd mei_cldev_get_drvdata +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x7eda7eae mei_cldev_register_rx_cb EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x90a24af4 mei_fw_status2str -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x956d331a mei_cldev_enabled -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x9a3c64ec mei_cldev_recv_vtag -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x9e866496 mei_cldev_disable -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xa3f775c6 mei_cldev_dma_unmap -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xa7710e2e mei_restart -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xaf1bddcd mei_cancel_work -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xb2959f5a mei_cldev_dma_map -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xb8f2b32e mei_cldev_register_rx_cb -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xbb85294e mei_irq_compl_handler -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xbd68e9d9 mei_cldev_uuid -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xbe832898 mei_cldev_recv_nonblock -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xbf46aea4 mei_write_is_idle -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xc421570c mei_cldev_set_drvdata -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xc6ca1096 mei_cldev_ver -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xcdccd35f mei_cldev_send_vtag -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xe385aa7e mei_cldev_register_notif_cb -EXPORT_SYMBOL_GPL drivers/misc/pvpanic/pvpanic 0xfd61c1db devm_pvpanic_probe +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x91535081 __mei_cldev_driver_register +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x953d6739 mei_restart +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x98f22195 mei_cldev_send +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xa9d9552d mei_register +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xb0e0fdf7 mei_cldev_recv_nonblock_vtag +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xb1454380 mei_cldev_recv_nonblock +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xb2934ca4 mei_cldev_uuid +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xb6449a8b mei_cldev_send_vtag +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xb7708b3c mei_reset +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xb98a6e49 mei_cldev_set_drvdata +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xc161d49e mei_cldev_disable +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xc46ffbee mei_irq_compl_handler +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xc5fda9c1 mei_irq_write_handler +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xcb25c1ea mei_cldev_driver_unregister +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xe24594c4 mei_stop +EXPORT_SYMBOL_GPL drivers/misc/pvpanic/pvpanic 0x1b523220 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 @@ -14523,9 +14574,9 @@ EXPORT_SYMBOL_GPL drivers/misc/sgi-xp/xp 0xf3b47f67 xp_partition_id EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0x472340b2 st_unregister EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0xc8e56e36 st_register -EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0x25af747c uacce_register -EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0x89a81d31 uacce_remove -EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0xcfad6322 uacce_alloc +EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0x8aded965 uacce_register +EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0x912e34a1 uacce_remove +EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0xc5f7da7c 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 @@ -14534,6 +14585,7 @@ EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x3a22fa8a vmci_datagram_destroy_handle EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x4ba5c46b vmci_qpair_peek EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x5591b58e vmci_context_get_priv_flags +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x5a9fe96b vmci_qpair_enquev 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 @@ -14541,825 +14593,824 @@ 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 0x9e8bfc0d vmci_qpair_dequev +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xacceefac 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 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 0xc4b04b53 vmci_qpair_enquev -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xc6772408 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 0xfa6959c0 vmci_qpair_peekv -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x0c2ed092 __sdhci_add_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x1427416b sdhci_remove_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x1a9c8ada sdhci_send_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x1c761365 __sdhci_set_timeout -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x28d047e5 sdhci_set_bus_width -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x2a97bda6 sdhci_request_atomic -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x334e0ef8 sdhci_set_power_noreg -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x35c7ca4b sdhci_add_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x36488b08 sdhci_switch_external_dma -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x36ef4587 sdhci_alloc_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x38d426e8 sdhci_set_uhs_signaling -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x3ad84df7 sdhci_free_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x49ff2146 sdhci_dumpregs -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x5b5466a2 sdhci_set_ios -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x5f181180 sdhci_runtime_suspend_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x62efd716 sdhci_reset_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x651ca5c3 sdhci_start_signal_voltage_switch -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x6723a3d0 sdhci_resume_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x706f86a8 sdhci_set_clock -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x7bf4c029 sdhci_end_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x8aa343d3 sdhci_cqe_enable -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x8d05fa05 sdhci_adma_write_desc -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x8fd6cfaa sdhci_start_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x94fa7ecd sdhci_execute_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x9dfa0145 sdhci_set_power -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa94363db sdhci_enable_clk -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xae88ff0e sdhci_enable_sdio_irq -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xb15b9a5e sdhci_reset -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xb6676769 sdhci_cqe_disable -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc0c27e7e sdhci_cleanup_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc1521d03 __sdhci_read_caps -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc1d28a36 sdhci_set_data_timeout_irq -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc6e585a0 sdhci_set_power_and_bus_voltage -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xcd46c69f sdhci_cqe_irq -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xcffd1110 sdhci_runtime_resume_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xd0a09d23 sdhci_request -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xd27d257a sdhci_calc_clk -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xd86805c4 sdhci_enable_v4_mode -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xde95be1d sdhci_setup_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe6f8376b sdhci_suspend_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xf64669bc sdhci_abort_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x01df4c16 sdhci_pltfm_pmops -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x1a33fb4d sdhci_pltfm_resume -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x832c4050 sdhci_pltfm_clk_get_max_clock -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x9d9de213 sdhci_pltfm_free -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xa743caf5 sdhci_get_property -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xa88ce938 sdhci_pltfm_init -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xcd1cc170 sdhci_pltfm_suspend -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xd519e8e8 sdhci_pltfm_unregister -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xf1735c48 sdhci_pltfm_register -EXPORT_SYMBOL_GPL drivers/most/most_core 0x01fc6ef5 most_deregister_interface -EXPORT_SYMBOL_GPL drivers/most/most_core 0x05e99664 most_put_mbo -EXPORT_SYMBOL_GPL drivers/most/most_core 0x07ed5604 most_start_channel -EXPORT_SYMBOL_GPL drivers/most/most_core 0x12a042ca most_stop_enqueue -EXPORT_SYMBOL_GPL drivers/most/most_core 0x1bc800e2 most_register_interface -EXPORT_SYMBOL_GPL drivers/most/most_core 0x278a9388 most_get_mbo -EXPORT_SYMBOL_GPL drivers/most/most_core 0x42b8e265 most_resume_enqueue -EXPORT_SYMBOL_GPL drivers/most/most_core 0x7105b0c8 most_register_configfs_subsys -EXPORT_SYMBOL_GPL drivers/most/most_core 0x83962f9c most_stop_channel -EXPORT_SYMBOL_GPL drivers/most/most_core 0x84d4deaf most_deregister_configfs_subsys -EXPORT_SYMBOL_GPL drivers/most/most_core 0xa0a47f85 channel_has_mbo -EXPORT_SYMBOL_GPL drivers/most/most_core 0xb3b4a190 most_register_component -EXPORT_SYMBOL_GPL drivers/most/most_core 0xbca10b1d most_submit_mbo -EXPORT_SYMBOL_GPL drivers/most/most_core 0xe4caff13 most_deregister_component -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x018da8bf cfi_cmdset_0001 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x3ea48d57 cfi_cmdset_0003 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xc3baa8c1 cfi_cmdset_0200 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x21301fa3 cfi_cmdset_0002 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x5f625473 cfi_cmdset_0006 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xd2c9d025 cfi_cmdset_0701 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0xb0f77924 cfi_cmdset_0020 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x9a987084 cfi_qry_mode_off -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xe216e3d8 cfi_qry_mode_on -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xe51b7e4c cfi_qry_present -EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0x59a72e76 hyperbus_register_device -EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0x879f9da7 hyperbus_unregister_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0306fc94 unregister_mtd_user -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x04c09882 mtd_is_locked -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x099ca3c9 mtd_erase_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0c331cb8 mtd_ooblayout_set_databytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0ce5310e get_mtd_device_nm -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1003ca5b mtd_kmalloc_up_to -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1605bd95 mtd_add_partition -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x26aab524 __get_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x39091c5d get_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x44fc39da mtd_ooblayout_get_databytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x482072ee kill_mtd_super -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x486716b7 mtd_get_device_size +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x016bd697 sdhci_start_signal_voltage_switch +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x05d942e1 sdhci_cqe_disable +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x09a67448 sdhci_setup_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x0a11f99d sdhci_reset +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x12cabf69 sdhci_request +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x2874bd59 sdhci_free_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x3273ed98 sdhci_adma_write_desc +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x378c6ea5 sdhci_enable_sdio_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x38c69478 sdhci_reset_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x41a194e4 sdhci_runtime_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x46e1ad84 sdhci_remove_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x4e019ead sdhci_cqe_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x4efcc3eb sdhci_cqe_enable +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x566ec150 sdhci_request_atomic +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x5d0139da sdhci_set_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x632d5df8 sdhci_dumpregs +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x70a6db00 sdhci_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x733c5d89 sdhci_alloc_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x78288ebd sdhci_calc_clk +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x835f0058 sdhci_start_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x8531297c sdhci_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x8c5903f8 sdhci_send_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x92411262 sdhci_set_data_timeout_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x9290a6d5 sdhci_switch_external_dma +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x96a920d3 __sdhci_read_caps +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x98ecbafe sdhci_set_uhs_signaling +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa388b5be __sdhci_add_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa408f992 sdhci_abort_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xaa59d994 sdhci_end_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xbf8773f0 sdhci_set_bus_width +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xbfec3cd8 sdhci_set_power_and_bus_voltage +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc82f3e32 sdhci_set_power +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc8544910 sdhci_set_power_noreg +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xcbbb792e __sdhci_set_timeout +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xd078ce8a sdhci_enable_v4_mode +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xd2a019e1 sdhci_runtime_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xdf21323d sdhci_enable_clk +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xf30d871a sdhci_set_ios +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xf59e55c4 sdhci_cleanup_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xfb8eeacb sdhci_add_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xff38771a sdhci_execute_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x1248ca91 sdhci_pltfm_clk_get_max_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x29c2656e sdhci_pltfm_free +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x558e1ea6 sdhci_pltfm_unregister +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x76609686 sdhci_pltfm_resume +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xd152784d sdhci_pltfm_pmops +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xd608379b sdhci_pltfm_init +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xe2c21fad sdhci_pltfm_suspend +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xf56cc97e sdhci_pltfm_register +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xf7004118 sdhci_get_property +EXPORT_SYMBOL_GPL drivers/most/most_core 0x0854e977 most_submit_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0x34c28481 most_register_configfs_subsys +EXPORT_SYMBOL_GPL drivers/most/most_core 0x43b6554e most_stop_channel +EXPORT_SYMBOL_GPL drivers/most/most_core 0x58eb766a most_resume_enqueue +EXPORT_SYMBOL_GPL drivers/most/most_core 0x5d3c96cf most_register_component +EXPORT_SYMBOL_GPL drivers/most/most_core 0x74790ec2 most_get_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0x81aacc9e most_stop_enqueue +EXPORT_SYMBOL_GPL drivers/most/most_core 0x9bc32924 most_start_channel +EXPORT_SYMBOL_GPL drivers/most/most_core 0xac93a719 channel_has_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0xaf26daa5 most_deregister_component +EXPORT_SYMBOL_GPL drivers/most/most_core 0xc4ae99b1 most_deregister_configfs_subsys +EXPORT_SYMBOL_GPL drivers/most/most_core 0xc6205251 most_put_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0xc68bf2a7 most_deregister_interface +EXPORT_SYMBOL_GPL drivers/most/most_core 0xfbf9e469 most_register_interface +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x3c44f5b9 cfi_cmdset_0200 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xc15ad02f cfi_cmdset_0003 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xfe73f5c7 cfi_cmdset_0001 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x2d378d5d cfi_cmdset_0701 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xa09c090b cfi_cmdset_0006 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xdece42db cfi_cmdset_0002 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0x4f09245c cfi_cmdset_0020 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x2ebcfcca cfi_qry_mode_off +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x4f1a6bb9 cfi_qry_present +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x97e4ceb0 cfi_qry_mode_on +EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0x4f7ca23e hyperbus_unregister_device +EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0xbc8955c4 hyperbus_register_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x008a12d9 mtd_block_isreserved +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x06779f0b mtd_ooblayout_set_eccbytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0790d6c7 __get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x08d2055b unregister_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x113ca031 mtd_unlock +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x19496aa5 mtd_panic_write +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1ac029f7 register_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1ee63211 mtd_read_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x284f2e47 mtd_ooblayout_get_databytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2e446be1 mtd_pairing_groups +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x38072e26 get_mtd_device_nm +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x40715130 mtd_block_isbad +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x40e316a7 mtd_lock_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x41b2f541 mtd_ooblayout_ecc +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x42bf084d __register_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x485af969 mtd_pairing_info_to_wunit EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x50dabc2f mtd_table_mutex -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x58b56578 mtd_write_oob -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x61ea5ba9 mtd_block_isreserved -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x61f65af4 mtd_writev -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x637dd2b0 mtd_ooblayout_free -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6a73516a put_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6d6b1d25 deregister_mtd_parser -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x71668a95 mtd_get_fact_prot_info -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x753abc93 mtd_pairing_groups -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x820e939d mtd_erase -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x95855dc8 mtd_ooblayout_count_eccbytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x97d18014 mtd_write -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x987dd831 mtd_write_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x998dd340 mtd_read_oob -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x99c6dd38 register_mtd_user -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa1ebb840 mtd_ooblayout_find_eccregion -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa93b7b56 mtd_read_fact_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xab73319c mtd_panic_write -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xacd3f61e mtd_point -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb3b7ca7e mtd_block_isbad -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb4f98215 __mtd_next_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xbdb5a118 mtd_read_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc52d2b26 mtd_del_partition -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc5dd14e4 mtd_pairing_info_to_wunit -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc9ee382f mtd_lock_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd48c763d __put_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd4fc0835 mtd_ooblayout_get_eccbytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xdfa8c64a mtd_ooblayout_ecc -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe01668d8 mtd_get_user_prot_info -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe09430d9 mtd_block_markbad -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe0ba5201 mtd_ooblayout_count_freebytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe511a2c7 mtd_read -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe5c0b5db mtd_device_unregister -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe6c8aa83 mtd_lock -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe7f1a972 mtd_unpoint -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe9b00ba2 mtd_ooblayout_set_eccbytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xee535b5f mtd_get_unmapped_area -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf1d8a390 mtd_wunit_to_pairing_info -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf27c05f3 mtd_device_parse_register -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf28dfd0d get_tree_mtd -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf8545b31 __register_mtd_parser -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xfd80dbf2 mtd_unlock -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x522d851b del_mtd_blktrans_dev -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x8a71b3c1 mtd_blktrans_cease_background -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x9610fa53 add_mtd_blktrans_dev -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xc0ddc89f deregister_mtd_blktrans -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xdeedf3c5 register_mtd_blktrans -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x1a62c752 nand_ecc_init_req_tweaking -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x1abc9812 nand_ecc_restore_req -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x1dd53554 nanddev_init -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x242554cb nand_get_large_page_hamming_ooblayout -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x2c57a82b nanddev_ecc_engine_cleanup -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x32ab6858 nanddev_mtd_erase -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x4146b2ed nanddev_erase -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x5101ac43 nanddev_bbt_set_block_status -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x5372bd7e nanddev_bbt_init -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x561c4530 nanddev_bbt_get_block_status -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x653d141f nanddev_mtd_max_bad_blocks -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x681a9c09 nand_get_large_page_ooblayout -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x7160ef5c nanddev_markbad -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x7375e6bc nand_ecc_tweak_req -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x74267b1f nanddev_cleanup -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x925c9bdd nand_ecc_cleanup_req_tweaking -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x94026242 nanddev_ecc_engine_init -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xaff09f8b nanddev_isbad -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xb6b316d4 nand_get_small_page_ooblayout -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xb7540735 nanddev_bbt_cleanup -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xd2f8fb08 nanddev_bbt_update -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xfc2c8d7b nanddev_isreserved -EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0x5ed3394a onenand_release -EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0x8a1a7006 onenand_scan -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/denali 0x83334f80 denali_chip_init -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x060c91a2 nand_cleanup +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5401d17a kill_mtd_super +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5b2723aa mtd_get_fact_prot_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x600cdfa8 mtd_read_fact_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6ac3d1ca mtd_del_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6d6fc003 mtd_wunit_to_pairing_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x717106a7 mtd_get_device_size +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x750a2759 mtd_ooblayout_count_freebytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7874548e put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7a945385 mtd_ooblayout_set_databytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x80419508 mtd_ooblayout_find_eccregion +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8138037a mtd_read_oob +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x81cf030a mtd_write +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x81d7e503 mtd_device_unregister +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x863d2acd mtd_write_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x86dc3917 mtd_block_markbad +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x89e3ed1f mtd_writev +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x89e3ff20 mtd_kmalloc_up_to +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8d212d56 get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x990a2984 mtd_lock +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9c1c5598 mtd_device_parse_register +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa042d790 mtd_unpoint +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xab7d50bb mtd_get_unmapped_area +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xabf7c256 deregister_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb286ac26 mtd_read +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb5a661c2 mtd_ooblayout_free +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc31cfaae mtd_add_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc3d69636 mtd_write_oob +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xcacbf49e __put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd65a1803 mtd_point +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xddeecba9 mtd_is_locked +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe00b8bb9 mtd_erase_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe7e1911a mtd_erase +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe87101a6 mtd_ooblayout_count_eccbytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe9e4c26f mtd_get_user_prot_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf1e4d9fe get_tree_mtd +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf5b74188 mtd_ooblayout_get_eccbytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xfec4e251 __mtd_next_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x024a1e05 deregister_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x0b11a096 register_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x72ad41c2 mtd_blktrans_cease_background +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x72d6789f del_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xf55e216d add_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x0620f42e nanddev_mtd_max_bad_blocks +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x1137d66a nanddev_cleanup +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x1b9fb889 nanddev_isreserved +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x21b31399 nanddev_bbt_set_block_status +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x2e74d370 nand_get_large_page_hamming_ooblayout +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x31fd902e nand_get_large_page_ooblayout +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x32911f2e nand_ecc_tweak_req +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x3c724c48 nanddev_mtd_erase +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x4d0288ea nanddev_ecc_engine_init +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x5d0322d1 nanddev_bbt_cleanup +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x69ac36a3 nand_ecc_cleanup_req_tweaking +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x76b48872 nand_ecc_init_req_tweaking +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x7ada2f52 nanddev_erase +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x8e23ebbf nanddev_ecc_engine_cleanup +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x914edbf9 nanddev_init +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x99c9fb97 nanddev_markbad +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xb2ecc93d nanddev_bbt_get_block_status +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xbbccbbd5 nanddev_bbt_init +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xd38d8703 nanddev_bbt_update +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xe0014386 nand_ecc_restore_req +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xef541af3 nand_get_small_page_ooblayout +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xf990e0a2 nanddev_isbad +EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0x4586aac3 onenand_release +EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0x80a16894 onenand_scan +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/denali 0xc47f87f8 denali_chip_init +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x04ef7993 nand_wait_ready +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x0a91f1e9 nand_deselect_target EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x11091291 nand_extract_bits -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x1446924c nand_ecc_choose_conf +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x1ed38927 nand_gpio_waitrdy +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x20367b3c nand_reset_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x282d308d nand_prog_page_end_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x2c31eadb nand_ecc_choose_conf EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x2d368c4c nand_subop_get_addr_start_off -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x2db2804f nand_read_page_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x3671affc nand_deselect_target +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x4154edd5 nand_write_data_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x42c34255 nand_prog_page_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x46102f8d nand_read_data_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x4af0279c nand_change_read_column_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x4b2566a8 nand_change_write_column_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x4d6f3128 nand_prog_page_begin_op EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x5632e63d nand_subop_get_num_addr_cyc -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x5936d1c6 nand_gpio_waitrdy -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x5cbd0eb6 nand_prog_page_end_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x7e35f6c7 nand_read_page_hwecc_oob_first -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x83322154 nand_prog_page_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x8b4ea2c5 nand_decode_ext_id -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x91ba0b61 nand_reset_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x93abb4c4 nand_prog_page_begin_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x9e689060 nand_status_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xa34ff069 nand_change_read_column_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xa5530549 nand_wait_ready -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xb62ebaf2 nand_read_data_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xc11d9560 nand_op_parser_exec_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xc13b4e47 nand_soft_waitrdy -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xc6eda38a nand_readid_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x5df25034 nand_readid_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x5f72e9fa nand_status_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x6f1bcfce nand_soft_waitrdy +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x919ce477 nand_select_target +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x9af665d2 nand_op_parser_exec_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xaf38c4e9 nand_read_page_hwecc_oob_first +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xafd89774 nand_read_page_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xc99ea459 nand_read_oob_op EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xd3c672b8 nand_subop_get_data_len EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xd41ff2ac nand_subop_get_data_start_off -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xdf7c92d7 nand_erase_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xdff48dff nand_change_write_column_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xe31f5abd nand_read_oob_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xe73e4ac9 nand_write_data_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xf9dbe4b6 nand_select_target -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xfb2e4bf6 nand_reset -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/sm_common 0x9161c9c1 sm_register_device -EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0x3229d7c5 spi_nor_restore -EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0x85a0c43d spi_nor_scan +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xd5670794 nand_reset +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xe26433c8 nand_erase_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xf674fa40 nand_cleanup +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xfc45e03c nand_decode_ext_id +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/sm_common 0x06e18ffd sm_register_device +EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0x154f45a8 spi_nor_scan +EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0xf6d1cc68 spi_nor_restore +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x135ed3d2 ubi_get_volume_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x1fb7ab9c ubi_leb_erase +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x2177aaa3 ubi_leb_read_sg EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x38e10c1d ubi_flush +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x3c0d12ea ubi_open_volume EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x42801d20 ubi_sync +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x4b33eb1d ubi_leb_unmap +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x575a4498 ubi_leb_map +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x63181a24 ubi_leb_write EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x66011ab6 ubi_get_device_info -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x7b741b68 ubi_get_volume_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x7de584f8 ubi_close_volume EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x85a8ee76 ubi_unregister_volume_notifier -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x87076371 ubi_leb_unmap -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x8a6b5c14 ubi_leb_erase -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xa05cd5de ubi_leb_map -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xb5a9417f ubi_leb_read -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xbe131965 ubi_leb_read_sg -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xc9745e16 ubi_open_volume_nm -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xcd5aea54 ubi_leb_change -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xd84017ad ubi_open_volume -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xda9373c0 ubi_leb_write -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xdb0c1a9d ubi_is_mapped -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xdb17a74a ubi_open_volume_path -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf32ea914 ubi_close_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x879dba7b ubi_do_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xb017fe6e ubi_is_mapped +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xc4e53bb4 ubi_open_volume_path +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xc63fbdad ubi_leb_change +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xeebd274c ubi_leb_read +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf046f0dc ubi_open_volume_nm EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf5ee9ba8 ubi_register_volume_notifier -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf793ef85 ubi_do_get_device_info -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x33ad5909 mux_control_try_select -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x565ddd71 mux_control_deselect -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x63c4cada devm_mux_chip_register -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xa5be0122 mux_chip_alloc -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xab21dccb mux_chip_unregister -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xaf70b6d5 mux_chip_register -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xc37b956b mux_control_states -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xc4c59bf9 mux_control_select -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xc8782f81 mux_control_put -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xcb96e624 devm_mux_control_get -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xd5e11c89 devm_mux_chip_alloc -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xf0584d4b mux_chip_free -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xf08fc623 mux_control_get -EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x759c6bf3 devm_arcnet_led_init -EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0xb82b7cc9 arcnet_led_event -EXPORT_SYMBOL_GPL drivers/net/bareudp 0xb25a7500 bareudp_dev_create -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x0f8f3aa7 unregister_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x2471fa66 c_can_power_up -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x4514f2bb register_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xb350cd1f alloc_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xb40b51be c_can_power_down -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xbe5a1800 free_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x1a06f04f register_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x2a8c871d free_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x2b913667 alloc_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x5a15e936 unregister_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x02d70a1c can_put_echo_skb +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x29ff8a92 mux_chip_free +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x40aa7104 devm_mux_chip_register +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x4756daca mux_control_states +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x5a993ca9 devm_mux_control_get +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x623c145b mux_control_deselect +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x67a8b925 devm_mux_chip_alloc +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x7dab7e1e mux_control_put +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x81a36fa1 mux_chip_unregister +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xb3bd5376 mux_chip_alloc +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xc7dea1ce mux_control_select +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xd11e3f6b mux_chip_register +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xdd82258a mux_control_get +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xe327a4b3 mux_control_try_select +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x5419f12e arcnet_led_event +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x68af1615 devm_arcnet_led_init +EXPORT_SYMBOL_GPL drivers/net/bareudp 0x01cc5692 bareudp_dev_create +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x0aa03c7a alloc_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x389f822e c_can_power_down +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x6995be3c register_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x88b1f6bd free_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x915ab62b c_can_power_up +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xdd0d61e7 unregister_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x0e229474 free_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x299b3b3f register_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x871f1b6b unregister_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xf31ceb63 alloc_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x022350b9 alloc_can_err_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x046241df can_rx_offload_queue_sorted +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x058696dc alloc_can_skb EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x10d892eb can_get_state_str -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x192100fe can_rx_offload_add_manual -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x1a41d56e alloc_canfd_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x1b879bf0 can_rx_offload_threaded_irq_finish -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x23689028 can_bus_off -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x30ccf1b7 can_rx_offload_enable -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x38c054b9 can_rx_offload_add_timestamp -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x440ba4a7 can_rx_offload_irq_offload_fifo -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x4c9536ab can_skb_get_frame_len -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x54e52062 open_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x16ec000b can_rx_offload_add_fifo +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x1cf4285e can_bus_off +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x1eb0e71a can_skb_get_frame_len +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x2988e14c unregister_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x2c6bbb7d can_rx_offload_irq_offload_timestamp +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x3d85fd3c can_rx_offload_add_timestamp +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x45976843 can_change_state +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x47d4ff34 safe_candev_priv EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6047ede6 can_fd_len2dlc -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6f20c052 can_get_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x7be70233 alloc_candev_mqs -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x7f38fdbc can_rx_offload_del -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x8eaadc5e free_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x9b993226 can_change_state -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x9fc370f9 alloc_can_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xa0c630b6 can_rx_offload_queue_tail -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xa383592a register_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xa4ccc357 can_free_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xa57462bd alloc_can_err_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xabb77454 unregister_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xbd14eef0 close_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xc0a36d5c can_rx_offload_irq_offload_timestamp -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xda4e9c21 can_change_mtu -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xe806c849 can_rx_offload_irq_finish +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6063c2db free_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x68c49780 can_rx_offload_irq_offload_fifo +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6d6b71c3 can_rx_offload_threaded_irq_finish +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x7090e663 can_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x70c5b322 open_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x77b450ad alloc_candev_mqs +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x7c1345e4 can_put_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x7f90b775 can_rx_offload_queue_tail +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x8395e284 can_rx_offload_del +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x9d7b6c33 can_rx_offload_irq_finish +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xb306b41c alloc_canfd_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xbe96cc7e close_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xdb89ce57 can_rx_offload_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xe15237e9 can_change_mtu +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xe2e54fae can_free_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf0a75351 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 0xf48d9f0a can_rx_offload_get_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf6589cde can_rx_offload_add_fifo -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf7bc919d safe_candev_priv -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xfad1c36a can_rx_offload_queue_sorted -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x1a953567 m_can_class_allocate_dev -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x389762d1 m_can_class_resume -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x4d764830 m_can_class_register -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x880697eb m_can_class_free_dev -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xb504c6b9 m_can_class_get_clocks -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xdb5f424a m_can_class_unregister -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xed8b6a0a m_can_class_suspend -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xfe953a0d m_can_init_ram -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x000a2b2a register_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x46e6c0e9 free_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf1db696d can_rx_offload_enable +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf953ceaa register_candev +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x16a10798 m_can_init_ram +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x28ae6a80 m_can_class_suspend +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x2e0f1991 m_can_class_get_clocks +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x7026493d m_can_class_unregister +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x9e5ab6d6 m_can_class_allocate_dev +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xaf1af697 m_can_class_free_dev +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xb21eed7b m_can_class_register +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xd4e559a8 m_can_class_resume +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x04ce6984 register_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x48060042 alloc_sja1000dev EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x9a9c0146 unregister_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xd408b3a2 alloc_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/dsa/lan9303-core 0xc289b4aa lan9303_indirect_phy_ops -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x1401d512 ksz_update_port_member -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x31b75244 ksz_sset_count -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x4a88a5ba ksz_port_bridge_join -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x720762f5 ksz_port_fdb_dump -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x7d1360e4 ksz_mac_link_down -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x95ef19dc ksz_enable_port -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xa300c4f2 ksz_phy_read16 -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xb7adc066 ksz_port_mdb_del -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xbf8812a2 ksz_port_bridge_leave -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xc30c3c0e ksz_get_ethtool_stats -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xc5b20834 ksz_init_mib_timer -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xd04be332 ksz_port_mdb_add -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xf5b4ec33 ksz_port_fast_age -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xfc7a74a1 ksz_phy_write16 -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x09da0fbf rtl8366_vlan_add -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x109fc3aa rtl8366_set_pvid -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x21e40ee6 rtl8366_init_vlan -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x264d43fe rtl8366_set_vlan -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x3d91d4e5 rtl8366rb_variant -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x3dfd095a rtl8366_vlan_filtering -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x45a11198 rtl8366_get_strings -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x46d4db18 rtl8366_get_ethtool_stats -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x4fc33f30 rtl8366_reset_vlan -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x63367aeb rtl8366_get_sset_count -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x6dfdde2f rtl8366_vlan_del -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x9126f985 rtl8366_enable_vlan4k -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x94b80568 realtek_smi_write_reg_noack -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xd0336bb7 rtl8366_mc_is_used -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xe35380f9 rtl8366_enable_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0x6c917770 i40e_client_device_register -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0xb63bc227 i40e_client_device_unregister -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x0579cc0b ice_add_rdma_qset -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x4b1efb0d ice_rdma_update_vsi_filter -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x4e121a7b ice_del_rdma_qset -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x8032a25a ice_get_qos_params -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xc63aa174 ice_rdma_request_reset -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x006ac294 mlx4_counter_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x01cd22e3 mlx4_config_roce_v2_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0509fcba mlx4_get_devlink_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x07230384 mlx4_register_interface -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x084f9244 mlx4_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x09978301 mlx4_set_admin_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0c6f44c4 mlx4_config_dev_retrieval -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0cd140d8 mlx4_config_vxlan_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0ce1bed4 mlx4_unregister_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0d6dd37d mlx4_get_protocol_dev -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0f6456a8 mlx4_slave_convert_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0fc95621 mlx4_CLOSE_PORT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x11f1577d mlx4_unicast_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x139c275d mlx4_unbond -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x142c0d42 __mlx4_unregister_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x14d0043f mlx4_mr_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1914a24e mlx4_bond -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1e9a53ba mlx4_free_hwq_res -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1faebf4d mlx4_qp_release_range -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x24002971 mlx4_mtt_addr -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x27556255 mlx4_replace_zero_macs -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x292f533c mlx4_cq_resize -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2e65c418 mlx4_buf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2ef73cac mlx4_uar_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2f18f046 mlx4_get_vf_config -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3132bc2b mlx4_get_default_counter_index -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x35788635 mlx4_qp_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x36d4995e mlx4_set_vf_link_state -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3c989c9c mlx4_xrcd_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3e8b1d22 mlx4_alloc_cmd_mailbox -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3f0342f1 mlx4_unicast_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x416d9942 mlx4_qp_reserve_range -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4822542d mlx4_INIT_PORT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4b1bb538 mlx4_unregister_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4d28d88b mlx4_mr_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4f2b3dc7 mlx4_qp_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5217ed7b mlx4_cq_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x55831094 __mlx4_register_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x58737d85 mlx4_find_cached_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6069327c __mlx4_cmd -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x608d887d mlx4_vf_smi_enabled -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x61cb7893 mlx4_get_internal_clock_params -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x651c747f mlx4_cq_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x66b9d79d mlx4_set_vf_spoofchk -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x673cf566 mlx4_qp_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x67998248 mlx4_mtt_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6892b53d mlx4_xrcd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x68d9a2b2 mlx4_FLOW_STEERING_IB_UC_QP_RANGE -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6cb27160 mlx4_mr_rereg_mem_cleanup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6dfd3f10 mlx4_cq_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6f8ca04b mlx4_alloc_hwq_res -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6fdc655e mlx4_bf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6ffcd2bc mlx4_multicast_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x70a74782 mlx4_ACCESS_PTYS_REG -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x70aa6f41 mlx4_mw_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x759d2033 mlx4_srq_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x76259133 mlx4_register_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x78428a94 mlx4_free_cmd_mailbox -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7c1669b8 mlx4_unicast_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fe4962b mlx4_multicast_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x87818b24 mlx4_wol_read -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8de1e3de mlx4_phys_to_slaves_pport_actv -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8f19b8f1 mlx4_find_cached_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8f6e45ea mlx4_flow_steer_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x91c21e9e mlx4_qp_to_ready -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9566a03e mlx4_bf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x959f8c7b mlx4_get_base_gid_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x95e7467c mlx4_get_slave_default_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x96f64a63 __mlx4_replace_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9745847e mlx4_counter_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x97770fe8 mlx4_map_sw_to_hw_steering_mode -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x97fb0bf0 mlx4_flow_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9b5c7b0f mlx4_srq_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9dc93104 mlx4_mr_hw_change_access -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9fa16f57 mlx4_srq_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa195ffe0 mlx4_uar_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa968c3a0 mlx4_read_clock -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa9f43f11 mlx4_hw_rule_sz -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xab3b34d3 mlx4_set_vf_rate -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb1a52f68 mlx4_qp_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb8390130 mlx4_mr_hw_change_pd -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbb8189be mlx4_mr_rereg_mem_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbdc8dd83 mlx4_vf_set_enable_smi_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbe0e1341 mlx4_srq_arm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbe32d9dd mlx4_phys_to_slaves_pport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbe971a7c mlx4_phys_to_slave_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc003f467 mlx4_register_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc03cd77a mlx4_mtt_cleanup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc9079937 mlx4_buf_write_mtt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc98dfcc6 mlx4_update_qp -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcb1369d3 mlx4_map_sw_to_hw_steering_id -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcc7d08cc mlx4_db_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcd922385 mlx4_get_counter_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd06b4992 mlx4_multicast_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd2fee84f mlx4_get_active_ports -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd3a86a52 mlx4_get_base_qpn -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd979bfca mlx4_mr_hw_write_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdaab33ee mlx4_get_vf_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xde60c3b1 mlx4_set_vf_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdfe6415f mlx4_mw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdffc0e10 mlx4_db_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe16a46bf mlx4_write_mtt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe19a71d2 mlx4_mw_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe63f9697 mlx4_pd_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe7741339 mlx4_mr_hw_get_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe83b812d mlx4_mr_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe86c74f5 mlx4_srq_lookup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe871a3ac mlx4_SYNC_TPT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe89e7c9a mlx4_vf_get_enable_smi_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xecbb6325 mlx4_port_map_set -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeda8e1ff mlx4_mr_hw_put_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xedf7db96 mlx4_flow_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeeab877b mlx4_qp_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf256bbd4 mlx4_unicast_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf3da7c28 mlx4_set_vf_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf56f1ddc mlx4_wol_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf9bf4e4d mlx4_get_admin_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfa9dbb4b mlx4_flow_steer_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfc565a64 mlx4_pd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xff7e4f03 mlx4_multicast_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xffd26bb8 mlx4_unregister_interface -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x05b09ef4 mlx5_query_nic_vport_node_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x05cc7d05 mlx5_accel_esp_destroy_xfrm +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x512a668a free_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xe1777f98 unregister_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/dsa/lan9303-core 0xeb1b4ac4 lan9303_indirect_phy_ops +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x0095b80d ksz_update_port_member +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x170c160a ksz_init_mib_timer +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x519f551c ksz_enable_port +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x645eb456 ksz_port_fdb_dump +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x6856901a ksz_port_bridge_leave +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x891cfd25 ksz_port_fast_age +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x98469db5 ksz_phy_write16 +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xa0e3cd09 ksz_port_mdb_add +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xaac631a9 ksz_phy_read16 +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xaed4d146 ksz_mac_link_down +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xc34c58e1 ksz_get_ethtool_stats +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xc7a5fff4 ksz_sset_count +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xca43569e ksz_port_mdb_del +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xdba903cd ksz_port_bridge_join +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x06a404c7 rtl8366_vlan_del +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x1a9b1657 rtl8366_init_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x487a5802 rtl8366_mc_is_used +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x54ec1ada rtl8366_set_pvid +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x64f6404f rtl8366_get_sset_count +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x6630b30f rtl8366_enable_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x682742cc rtl8366_vlan_filtering +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x6d5fb10d rtl8366_set_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x8b6575a8 rtl8366_get_strings +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x8de68e30 rtl8366_vlan_add +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x9bb4d5a7 realtek_smi_write_reg_noack +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xcef7d69b rtl8366_get_ethtool_stats +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xd35afff1 rtl8366_enable_vlan4k +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xf29a9684 rtl8366_reset_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xf757d653 rtl8366rb_variant +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0x5b2ec4c8 i40e_client_device_register +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0xb22d0987 i40e_client_device_unregister +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x0c6cd22d ice_add_rdma_qset +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x949d41eb ice_del_rdma_qset +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xa4a9ab3d ice_rdma_update_vsi_filter +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xc19a88eb ice_rdma_request_reset +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xde0ebb6b ice_get_qos_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x02edff6a mlx4_config_vxlan_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0496d5fd mlx4_srq_lookup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x05ba4364 mlx4_vf_smi_enabled +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0bd565d4 mlx4_set_vf_link_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0c44569f mlx4_get_vf_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0fe2585d mlx4_mw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x18643fae mlx4_free_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x19dee4f9 mlx4_srq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1af97449 mlx4_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1b2907a0 mlx4_phys_to_slaves_pport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1cfc265f mlx4_find_cached_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1d60552f mlx4_mr_hw_write_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x20b8ef4d mlx4_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2147130d mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x25727edf mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x25ab58a2 mlx4_mtt_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x270a2f13 mlx4_get_vf_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2e603d61 mlx4_SYNC_TPT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x306912ba mlx4_counter_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x320e730f mlx4_flow_steer_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x323d7347 mlx4_set_vf_rate +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x33608b8e mlx4_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3384ba47 mlx4_ACCESS_PTYS_REG +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x33f43dc6 mlx4_qp_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x348dff93 mlx4_set_vf_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3792cb3a mlx4_pd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x38762805 mlx4_mr_hw_put_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3a0695df mlx4_unregister_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3b1893f5 mlx4_bond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3c43faf8 mlx4_free_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x413cf220 mlx4_buf_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x458ec902 mlx4_unregister_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x48e2c490 mlx4_qp_reserve_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4b634ab7 mlx4_mw_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4bf1532d mlx4_find_cached_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4e23fdae mlx4_vf_set_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5210e835 mlx4_set_vf_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x53cf2004 mlx4_mr_rereg_mem_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x543e2465 mlx4_mtt_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5450f1c1 mlx4_cq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x559366f7 mlx4_uar_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5760c3bd mlx4_cq_resize +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5b90597c mlx4_hw_rule_sz +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5dc61403 mlx4_alloc_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x642a0ddc mlx4_uar_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x681bb748 mlx4_unicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x685d31f3 mlx4_unicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x68c09d07 mlx4_mr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6e5809f2 mlx4_flow_steer_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6e98de23 mlx4_slave_convert_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6fbabd59 mlx4_mr_hw_change_pd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x717f4fe9 mlx4_get_slave_default_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x77d4630c mlx4_qp_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7d669d6e mlx4_multicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fb12cad mlx4_flow_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8021d928 mlx4_vf_get_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x825b30f6 mlx4_unbond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8a385366 mlx4_unicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8abf6a9c mlx4_mr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8b96236d mlx4_get_protocol_dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8ea279e9 mlx4_cq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8eb3a232 mlx4_get_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x90fdf31c mlx4_get_base_gid_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x941a4ba1 mlx4_FLOW_STEERING_IB_UC_QP_RANGE +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x947b588a mlx4_update_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9583ba2a mlx4_mr_hw_get_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x95ddd853 mlx4_get_active_ports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9addf673 mlx4_set_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9afe8fab __mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9b5612c7 mlx4_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9be3ef1b mlx4_multicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9c6f74bf mlx4_pd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9ceabc7c mlx4_qp_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9e31669c mlx4_CLOSE_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9f2fcb03 mlx4_INIT_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa07062c0 mlx4_srq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa3b90fbc mlx4_config_dev_retrieval +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa6b36997 mlx4_srq_arm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa869553c mlx4_mr_rereg_mem_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa87eb70e mlx4_flow_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa95b72c2 mlx4_mr_hw_change_access +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xad786df4 mlx4_qp_release_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb1674f98 mlx4_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb3e33d2b mlx4_bf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb4ca2684 mlx4_alloc_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb6c4cd15 mlx4_set_vf_spoofchk +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xba2318b0 mlx4_counter_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc1c9f1d5 mlx4_phys_to_slaves_pport_actv +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc2837658 mlx4_mr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc9376a3c mlx4_wol_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc9bc3407 mlx4_map_sw_to_hw_steering_id +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc9ddd4ab __mlx4_replace_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcae3dcfb mlx4_get_internal_clock_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcb35ae83 mlx4_register_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcc183893 mlx4_xrcd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xccfca7df mlx4_multicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcd4fb256 mlx4_config_roce_v2_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd02a72af mlx4_mtt_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd2530ca4 mlx4_get_default_counter_index +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd7f38691 mlx4_replace_zero_macs +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xda72c39b mlx4_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdfabaa9d mlx4_map_sw_to_hw_steering_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe1178f5d mlx4_mw_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe162c860 mlx4_bf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe199dabf mlx4_phys_to_slave_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe2e4e10d mlx4_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe46c3a6d mlx4_get_devlink_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe5faf35c mlx4_cq_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe71392c4 mlx4_multicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xea7f46f4 mlx4_srq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeb6978c3 mlx4_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeb864248 __mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xecc9b273 mlx4_get_base_qpn +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xee382f79 mlx4_port_map_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf0b5bc52 mlx4_read_clock +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf16225cd mlx4_register_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf792649f mlx4_qp_to_ready +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfb883a3e __mlx4_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfb9d4843 mlx4_wol_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfcc02b61 mlx4_get_counter_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfe0b454c mlx4_unicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x018ab94e mlx5_dm_sw_icm_dealloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x03cc44b9 mlx5_nic_vport_enable_roce +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x06105bfc 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 0x0c11e379 mlx5_core_query_sq_state -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x138fbcb1 mlx5_frag_buf_alloc_node -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1549017c mlx5_set_port_tc_bw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x17e3b8a1 mlx5_query_nic_vport_qkey_viol_cntr -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x18de1f56 mlx5_eswitch_mode -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1b7a4f1b mlx5_core_query_vport_counter -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1ed0dbce mlx5_query_module_eeprom -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1f1c855d mlx5_modify_nic_vport_promisc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x24165ae4 mlx5_eswitch_get_total_vports -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2ac881b9 mlx5_query_hca_vport_gid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2c3733dd mlx5_dm_sw_icm_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2f59f289 mlx5_modify_nic_vport_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x30ddd603 mlx5_query_nic_vport_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x36bf4994 mlx5_nic_vport_query_local_lb -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x394b4281 mlx5_core_query_ib_ppcnt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3a194d36 mlx5_nic_vport_update_local_lb -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3ca1bf76 mlx5_query_nic_vport_min_inline -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3d175fd5 mlx5_query_port_vl_hw_cap -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3ee06526 mlx5_query_port_oper_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4495878d mlx5_toggle_port_link -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x473ffd1b mlx5_query_min_inline -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x49c3eab7 mlx5_dm_sw_icm_dealloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4a6bc95a mlx5_db_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4b293319 mlx5_query_port_wol -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5199a872 mlx5_query_port_prio_tc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x588e7d57 mlx5_core_access_reg -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5d1f6c5a mlx5_frag_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5fa86d00 mlx5_query_hca_vport_node_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x60e67ab0 mlx5_query_nic_vport_promisc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6242d930 mlx5_db_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x66df98c6 mlx5_query_port_pfc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6a040cad mlx5_query_hca_vport_pkey -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6b58aa47 mlx5_modify_nic_vport_mac_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x71636768 mlx5_set_port_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x75f5d70d mlx5_set_port_prio_tc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x77f11055 mlx5_query_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0a122ef3 mlx5_query_port_vl_hw_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0acbfcfc mlx5_core_query_vport_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0e745fed mlx5_query_module_eeprom_by_page +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0f6d8114 mlx5_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1005e5a5 mlx5_query_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x12fe95d6 mlx5_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x223926f7 mlx5_nic_vport_unaffiliate_multiport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2b5d3df4 mlx5_modify_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2ec9e303 mlx5_core_query_sq_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x32e27622 mlx5_query_port_prio_tc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x372ccb8e mlx5_set_port_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x37d55a40 mlx5_query_hca_vport_gid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x395ea000 mlx5_modify_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3d2773a7 mlx5_set_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4411f8f1 mlx5_query_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x46f1d9dc mlx5_query_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4b00fa19 mlx5_modify_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4b987848 mlx5_query_hca_vport_pkey +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x53c05306 mlx5_core_modify_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5760abb3 mlx5_accel_ipsec_device_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5a23c8d5 mlx5_modify_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5dc18f0f mlx5_query_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5dcc8ff3 mlx5_toggle_port_link +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5f0e429e mlx5_set_port_tc_group +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5fab3849 mlx5_accel_esp_modify_xfrm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x694049db mlx5_query_port_max_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6a7a6ba8 mlx5_query_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6c6e8a0f mlx5_set_port_tc_bw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6d039bbe mlx5_eswitch_get_total_vports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6db680a7 mlx5_frag_buf_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6feafc27 mlx5_query_nic_vport_min_inline +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x71c3a314 mlx5_query_nic_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x72a47036 mlx5_set_port_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x74ff1ac7 mlx5_core_reserved_gids_count +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7538d4fb mlx5_query_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7ab94dc9 mlx5_query_port_ptys +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7d773f57 mlx5_accel_esp_create_xfrm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x80ca6f85 mlx5_core_query_ib_ppcnt 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 0x834cbb6b mlx5_query_hca_vport_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x835d4033 mlx5_modify_port_ets_rate_limit -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8acf161c mlx5_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8adb75bd mlx5_nic_vport_enable_roce -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x91f6c7f5 mlx5_query_port_max_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x93e1cf57 mlx5_accel_ipsec_device_caps -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9434990f mlx5_query_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x98270c9b mlx5_set_port_tc_group -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9c553a28 mlx5_query_nic_vport_mac_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa40f0e25 mlx5_accel_esp_modify_xfrm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa4c4f01b mlx5_query_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x83ba110f mlx5_nic_vport_affiliate_multiport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x92b445e5 mlx5_query_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x936378c1 mlx5_nic_vport_query_local_lb +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9729f929 mlx5_query_nic_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9eaeff3f mlx5_query_min_inline +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa07a8ee1 mlx5_modify_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa4b455b4 mlx5_nic_vport_update_local_lb EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa75f49d6 mlx5_fill_page_array -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaa4e348a mlx5_query_port_ets_rate_limit -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xac536686 mlx5_nic_vport_unaffiliate_multiport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb0db87df mlx5_db_alloc_node -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb663a023 mlx5_modify_nic_vport_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb694b19e mlx5_query_nic_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb898b57b mlx5_set_port_pfc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xba3c82ce mlx5_query_port_ptys -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc2aff29a mlx5_nic_vport_affiliate_multiport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc3a62269 mlx5_modify_nic_vport_vlans -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd65d703e mlx5_core_modify_hca_vport_context -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd85ccfe0 mlx5_set_port_caps -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdfc87326 mlx5_query_nic_vport_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe04ea288 mlx5_core_reserved_gids_count -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe08650e8 mlx5_set_port_wol -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe4e22fa4 mlx5_query_port_tc_bw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe59d6ac5 mlx5_set_port_admin_status -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe6cdb822 mlx5_query_module_eeprom_by_page -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe83f9834 mlx5_query_hca_vport_context -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xea278127 mlx5_set_port_pause -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf0487dff mlx5_accel_esp_create_xfrm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf37b56d9 mlx5_query_port_tc_group -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf87155de mlx5_query_port_pause -EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x0460b457 ks8851_suspend -EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x79b41374 ks8851_resume -EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0xb8234c4d ks8851_remove_common -EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0xf7784b52 ks8851_probe_common -EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0xc7c752d5 devm_regmap_init_encx24j600 +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaa115fc3 mlx5_query_port_oper_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaa2b4491 mlx5_query_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb247c98d mlx5_query_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb34aa384 mlx5_query_port_tc_group +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb57aecff mlx5_set_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xba573623 mlx5_dm_sw_icm_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbc82f52f mlx5_core_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbed34c94 mlx5_db_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc73d6ed4 mlx5_query_nic_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc8601531 mlx5_query_module_eeprom +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc916759d mlx5_query_nic_vport_qkey_viol_cntr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcb41ff02 mlx5_set_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcb434845 mlx5_query_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd804de4f mlx5_query_port_tc_bw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd8b6a8a6 mlx5_query_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd8f4aa55 mlx5_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe4a36217 mlx5_frag_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe7fce53b mlx5_accel_esp_destroy_xfrm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe8f69cd2 mlx5_set_port_prio_tc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf79b5c2b mlx5_query_hca_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf8af8c22 mlx5_eswitch_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfdb7629e mlx5_modify_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfea6c77e mlx5_set_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x1fb99487 ks8851_suspend +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x28764419 ks8851_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x67c269b2 ks8851_remove_common +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0xef55ed0b ks8851_probe_common EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0xcc4fa41a regmap_encx24j600_spi_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0xd6d9dc89 devm_regmap_init_encx24j600 EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0xe8c8c6c2 regmap_encx24j600_spi_read -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0c42c3a4 ocelot_port_rmwl -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0e908315 ocelot_regmap_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x125cc693 __ocelot_rmw_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x23a2c805 ocelot_phylink_mac_link_down -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x44e70746 ocelot_port_writel -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x69dfece4 ocelot_regfields_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7242c45b ocelot_cls_flower_replace -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x756db964 ocelot_port_readl -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7fdae9fd __ocelot_write_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x940db104 ocelot_cls_flower_destroy -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb5892495 ocelot_phylink_mac_link_up -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xde7b93d8 __ocelot_read_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf52e1106 ocelot_cls_flower_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x09ac90ed stmmac_suspend -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x1a1184cf stmmac_dvr_probe -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x386a9df0 stmmac_resume -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x4287c6b4 stmmac_bus_clks_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1e4acee1 ocelot_port_readl +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3438e446 ocelot_cls_flower_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x43ce237d ocelot_cls_flower_destroy +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4be88c70 __ocelot_rmw_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x51d8e0d4 __ocelot_write_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x66da6979 __ocelot_read_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6919adc3 ocelot_phylink_mac_link_down +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7e7c6e82 ocelot_regmap_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8282771b ocelot_port_rmwl +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8f1d13ab ocelot_regfields_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa275cea1 ocelot_port_writel +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc56ab559 ocelot_phylink_mac_link_up +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd77e1a15 ocelot_cls_flower_replace +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x29137f93 stmmac_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x4c68aac1 stmmac_dvr_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x5ab10ffb stmmac_dvr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x66db446a stmmac_bus_clks_config EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x92d778bb stmmac_get_mac_addr -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xad7d5a96 stmmac_dvr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xd1968b19 stmmac_init_tstamp_counter EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xd1cc24db stmmac_set_mac_addr -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xe5ab2aef stmmac_init_tstamp_counter -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x2261d410 stmmac_get_platform_resources -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x54741860 stmmac_pltfr_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x6ff44ed4 stmmac_pltfr_pm_ops -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x98928574 stmmac_remove_config_dt -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xd0f290fc stmmac_probe_config_dt -EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x27d3ea72 w5100_ops_priv -EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x30737f11 w5100_pm_ops -EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x8270893e w5100_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xf84ace76 w5100_probe -EXPORT_SYMBOL_GPL drivers/net/geneve 0x935b63d6 geneve_dev_create_fb -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x0727d7b6 ipvlan_link_delete -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xb29ac9b7 ipvlan_link_register -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xd5cfdffd ipvlan_count_rx -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xdf8dd63f ipvlan_link_setup -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xfc048ae0 ipvlan_link_new -EXPORT_SYMBOL_GPL drivers/net/macsec 0x6cffdabb macsec_pn_wrapped -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x4433e435 macvlan_dellink -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x8861a716 macvlan_link_register -EXPORT_SYMBOL_GPL drivers/net/macvlan 0xd2ae2c1f macvlan_common_setup -EXPORT_SYMBOL_GPL drivers/net/macvlan 0xf06ad175 macvlan_common_newlink -EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-i2c 0x5557ded8 mdio_i2c_alloc -EXPORT_SYMBOL_GPL drivers/net/net_failover 0x12a16682 net_failover_destroy -EXPORT_SYMBOL_GPL drivers/net/net_failover 0x914e05f1 net_failover_create -EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x65175646 xpcs_validate -EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xa7b894c4 xpcs_do_config -EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xa8b5def7 xpcs_destroy -EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xb89487f9 xpcs_config_eee +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xf7f23a46 stmmac_suspend +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x17124950 stmmac_pltfr_pm_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xad598440 stmmac_probe_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xbed2f87c stmmac_get_platform_resources +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xe65051d1 stmmac_remove_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xec35701a stmmac_pltfr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x5f756578 w5100_ops_priv +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xd74e1fa9 w5100_pm_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xf2b14952 w5100_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xf9e10418 w5100_remove +EXPORT_SYMBOL_GPL drivers/net/geneve 0x710708a9 geneve_dev_create_fb +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x10a175a6 ipvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x11512cb9 ipvlan_link_delete +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x33d50783 ipvlan_link_new +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x43cff385 ipvlan_count_rx +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xac9eca3a ipvlan_link_setup +EXPORT_SYMBOL_GPL drivers/net/macsec 0x5439c573 macsec_pn_wrapped +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x1b459c50 macvlan_common_setup +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x7f1248e8 macvlan_common_newlink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xe29fd6ff macvlan_dellink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xffd3e6d2 macvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-i2c 0x707b6d60 mdio_i2c_alloc +EXPORT_SYMBOL_GPL drivers/net/net_failover 0x9ef968dc net_failover_destroy +EXPORT_SYMBOL_GPL drivers/net/net_failover 0xbb21bf3e net_failover_create +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x3cc1a591 xpcs_do_config +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x8f8cd1bf xpcs_destroy +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x90fd163d xpcs_get_an_mode +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xb9573c78 xpcs_config_eee +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xda95b7d9 xpcs_create +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xdaefff1e xpcs_validate EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xe05362b0 xpcs_link_up -EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xf3f7bfe5 xpcs_get_an_mode -EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xfd28202c xpcs_create -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x01b08ab0 bcm_phy_get_sset_count -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x04e7c241 bcm_phy_read_misc -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x0768476c bcm_phy_cable_test_get_status -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x0ba87fe7 bcm_phy_modify_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x2afedbe6 bcm_phy_set_eee -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x3ba02759 bcm_phy_cable_test_get_status_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x3bbdfe8e bcm_phy_get_strings -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x3d54d719 bcm54xx_auxctl_read -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x43bdddb5 bcm_phy_enable_jumbo -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x4b24f56e bcm_phy_write_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x4c2392b1 bcm_phy_cable_test_start -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x521a71af bcm_phy_handle_interrupt -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x646cb77d bcm_phy_write_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x6717b825 bcm_phy_downshift_set -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x688c0a27 bcm_phy_read_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x6ca426de bcm_phy_cable_test_start_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x6dc49101 bcm_phy_read_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x72166867 __bcm_phy_modify_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x8627ba22 bcm_phy_write_shadow -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x8a9ec9cc __bcm_phy_write_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x9fb02796 bcm_phy_write_misc -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa5d68bdf __bcm_phy_write_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xab16c22d bcm_phy_ack_intr -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb5968d47 bcm_phy_get_stats -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb8d66274 __bcm_phy_modify_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc16875f4 bcm_phy_modify_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xcae2ff0b bcm_phy_config_intr -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xcf4dda12 bcm_phy_read_shadow -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xd63f2c4e bcm_phy_enable_apd -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xda2564ac bcm_phy_r_rc_cal_reset -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe2d9e555 __bcm_phy_read_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe7917e73 __bcm_phy_read_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xfc79c1a6 bcm_phy_downshift_get -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xfe192732 bcm_phy_28nm_a0b0_afe_config_init +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x007463f1 bcm_phy_write_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x045e43f1 bcm_phy_enable_apd +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x0ba20fd1 __bcm_phy_modify_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x129661ae bcm_phy_modify_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x14de8767 bcm_phy_set_eee +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x15bfe653 bcm_phy_write_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x1bccfbc0 bcm_phy_downshift_set +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x241cc0ec __bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x2ce9f81c bcm_phy_read_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x2ced9a7e bcm_phy_cable_test_start_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x386e8031 bcm_phy_cable_test_get_status_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x5e7f4d3c bcm54xx_auxctl_read +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x60c7fdf0 bcm_phy_get_stats +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x775b63b6 bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x8071af6b __bcm_phy_write_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x83a44e72 bcm_phy_r_rc_cal_reset +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x8aee0525 __bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x8cf2512f bcm_phy_get_sset_count +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x92ec6cfc bcm_phy_enable_jumbo +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x96158c02 __bcm_phy_read_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa1a8f489 bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa445e159 bcm_phy_read_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xab375ec7 bcm_phy_write_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xac3ad997 bcm_phy_handle_interrupt +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xad87bd30 bcm_phy_28nm_a0b0_afe_config_init +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc29e84b9 bcm_phy_cable_test_get_status +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc5522f58 bcm_phy_read_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc92545aa bcm_phy_cable_test_start +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xca8da67b bcm_phy_config_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xd4b66407 bcm_phy_downshift_get +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe39ae35e bcm_phy_get_strings +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xecd397de __bcm_phy_modify_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf5e7f9a1 bcm_phy_modify_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xffbe0f6c bcm_phy_ack_intr EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x08213956 phylink_ethtool_get_wol -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x0b4c7ae5 phylink_create -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x0e4bb287 phylink_mii_c22_pcs_get_state EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x12135396 phylink_mac_change EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x131e8b94 phylink_helper_basex_speed 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 0x1c5c8b3e phylink_of_phy_connect -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x1c62cc8a phylink_connect_phy -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x239f4917 phylink_mii_c45_pcs_get_state EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x2c8e28ee phylink_ethtool_get_eee -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x4c363aca phylink_mii_c22_pcs_config +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x38e96394 phylink_fwnode_phy_connect +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x49d08ce1 phylink_mii_c22_pcs_config 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 0x5a060949 phylink_mii_c22_pcs_set_advertisement EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x5d0c4dcc phylink_speed_up +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x5d5e3b91 phylink_mii_c22_pcs_an_restart EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x62104126 phylink_ethtool_set_wol EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x6831eccf phylink_ethtool_ksettings_get +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x6d9611c4 phylink_mii_c22_pcs_get_state EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x6fa426d2 phylink_ethtool_nway_reset -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x74b83add phylink_mii_c22_pcs_an_restart +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x71f65e32 phylink_create +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x761c5f8c phylink_connect_phy EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x825c7340 phylink_get_eee_err EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x911fcd6c phylink_start EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x983276da phylink_disconnect_phy EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x9ad6f36d phylink_decode_usxgmii_word +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xb9351c97 phylink_mii_c45_pcs_get_state EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xc0a8f4be phylink_resume EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xc1d15a4c phylink_set_port_modes EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xc3906c58 phylink_ethtool_ksettings_set -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xc747f327 phylink_mii_c22_pcs_set_advertisement +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xc681decc phylink_of_phy_connect EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xdcb0a2c0 phylink_stop -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xdd45472e phylink_fwnode_phy_connect EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xde66f4a7 phylink_mii_ioctl EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xe8c137ed phylink_set_pcs EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xec02ebe0 phylink_init_eee EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xf3083a1d phylink_destroy EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xf8fe5642 phylink_ethtool_get_pauseparam -EXPORT_SYMBOL_GPL drivers/net/tap 0x0c61cd62 tap_del_queues -EXPORT_SYMBOL_GPL drivers/net/tap 0x1ff2e023 tap_get_socket -EXPORT_SYMBOL_GPL drivers/net/tap 0x6e958baa tap_handle_frame -EXPORT_SYMBOL_GPL drivers/net/tap 0x6f525851 tap_get_ptr_ring -EXPORT_SYMBOL_GPL drivers/net/tap 0x74cc0fd5 tap_get_minor -EXPORT_SYMBOL_GPL drivers/net/tap 0x761e0e92 tap_destroy_cdev -EXPORT_SYMBOL_GPL drivers/net/tap 0x7ad89202 tap_queue_resize -EXPORT_SYMBOL_GPL drivers/net/tap 0x84245058 tap_free_minor -EXPORT_SYMBOL_GPL drivers/net/tap 0x8e9f69af tap_create_cdev -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x42fb304d usbnet_cdc_update_filter -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x7bb0c2db usbnet_ether_cdc_bind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xb3846a3c usbnet_cdc_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xc6cd739c usbnet_generic_cdc_bind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xd4351605 usbnet_cdc_bind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xfa40761d usbnet_cdc_status -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x085aa0e0 cdc_ncm_rx_verify_nth32 -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x1c23afc1 cdc_ncm_rx_verify_nth16 -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x34376dc1 cdc_ncm_rx_verify_ndp16 -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x518ba31c cdc_ncm_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x58acfa9b cdc_ncm_tx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x60c62a55 cdc_ncm_change_mtu -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x8d702320 cdc_ncm_rx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xb5a443d0 cdc_ncm_bind_common -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xbc478ca5 cdc_ncm_fill_tx_frame -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xf28093fc cdc_ncm_select_altsetting -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xf6a73a28 cdc_ncm_rx_verify_ndp32 -EXPORT_SYMBOL_GPL drivers/net/usb/r8152 0xa2a498da rtl8152_get_version -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x099c2655 generic_rndis_bind -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x6448fb7e rndis_rx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x67d46e80 rndis_status -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x7528e191 rndis_tx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x8af2ab96 rndis_command -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xb51c24fb rndis_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x05497bbe usbnet_purge_paused_rxq -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x05a1491a usbnet_set_rx_mode -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x12516b2d usbnet_write_cmd_nopm -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1ea6032b usbnet_write_cmd_async -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x33890b08 usbnet_change_mtu -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x375eb28e usbnet_get_link_ksettings_internal -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x37c6e0bc usbnet_get_drvinfo -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3f81e88b usbnet_defer_kevent -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x44fa4be0 usbnet_get_link_ksettings_mii -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x56fff9ac usbnet_set_msglevel -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5a5ddb54 usbnet_open -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x60431839 usbnet_read_cmd -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x681caa05 usbnet_skb_return -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x684c2664 usbnet_status_start -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6a39e49f usbnet_nway_reset -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x82053ec9 usbnet_disconnect -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x93d5342a usbnet_get_msglevel -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x97483448 usbnet_set_link_ksettings_mii -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9e968f63 usbnet_resume -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9f8dbc2b usbnet_read_cmd_nopm -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa079f8da usbnet_resume_rx -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xabe8e329 usbnet_suspend -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb4e490a0 usbnet_get_link -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb5e0758a usbnet_update_max_qlen -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc24e2ae3 usbnet_get_endpoints -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc55709e9 usbnet_stop -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc765497a usbnet_get_ethernet_addr -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd95a1339 usbnet_start_xmit -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe4a618a1 usbnet_probe -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe5d30a73 usbnet_unlink_rx_urbs -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe6449b77 usbnet_status_stop -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe8d2d2d4 usbnet_pause_rx -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xebe0031f usbnet_tx_timeout -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xee84122d usbnet_write_cmd -EXPORT_SYMBOL_GPL drivers/net/vxlan 0x02db4f97 vxlan_fdb_find_uc -EXPORT_SYMBOL_GPL drivers/net/vxlan 0x1cdf04e0 vxlan_fdb_clear_offload -EXPORT_SYMBOL_GPL drivers/net/vxlan 0x5dce287f vxlan_fdb_replay -EXPORT_SYMBOL_GPL drivers/net/vxlan 0x7f25d67f vxlan_dev_create -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/ipw2x00/libipw 0x074ed4b7 libipw_rx_any -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2f504f0a _il_grab_nic_access -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5a0aeb34 il_remove_station -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8bb877cb il_dealloc_bcast_stations -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd8790ea0 il_prep_station -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfa12c7b0 il_mac_tx_last_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x029f72d0 iwl_set_bits_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x104f8ecf iwl_parse_eeprom_data +EXPORT_SYMBOL_GPL drivers/net/tap 0x0bd27fc4 tap_handle_frame +EXPORT_SYMBOL_GPL drivers/net/tap 0x1f06eb1d tap_destroy_cdev +EXPORT_SYMBOL_GPL drivers/net/tap 0x87a2192f tap_get_minor +EXPORT_SYMBOL_GPL drivers/net/tap 0x9683d9cb tap_get_ptr_ring +EXPORT_SYMBOL_GPL drivers/net/tap 0xc0138810 tap_create_cdev +EXPORT_SYMBOL_GPL drivers/net/tap 0xd27003a9 tap_free_minor +EXPORT_SYMBOL_GPL drivers/net/tap 0xdd912961 tap_del_queues +EXPORT_SYMBOL_GPL drivers/net/tap 0xee6826dd tap_queue_resize +EXPORT_SYMBOL_GPL drivers/net/tap 0xfe074993 tap_get_socket +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x18bb95b0 usbnet_generic_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x1a421301 usbnet_cdc_status +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x3bc250a9 usbnet_cdc_update_filter +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x7ffe514b usbnet_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x9c30b108 usbnet_cdc_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xec501556 usbnet_ether_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x0ef3d0ca cdc_ncm_rx_verify_ndp32 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x23e54081 cdc_ncm_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x260cf180 cdc_ncm_select_altsetting +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x2d1a19f6 cdc_ncm_bind_common +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x31b91952 cdc_ncm_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x46881a51 cdc_ncm_rx_verify_nth16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x6f4b1915 cdc_ncm_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x85670c34 cdc_ncm_rx_verify_ndp16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x875fd3df cdc_ncm_rx_verify_nth32 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xe5a19b37 cdc_ncm_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xfac52deb cdc_ncm_fill_tx_frame +EXPORT_SYMBOL_GPL drivers/net/usb/r8152 0x90757113 rtl8152_get_version +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x1b944fae rndis_status +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x36002619 rndis_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x7115b9b9 generic_rndis_bind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x8632424c rndis_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x8f92003b rndis_command +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xf368a6e4 rndis_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x082a6ca3 usbnet_get_ethernet_addr +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x099f6a4f usbnet_resume +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x0b44e08b usbnet_pause_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x12a0cd49 usbnet_read_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1b437f12 usbnet_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2507bf56 usbnet_set_rx_mode +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2f02b350 usbnet_probe +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x353a9640 usbnet_nway_reset +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3b780a4c usbnet_get_link_ksettings_mii +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3f9a4da0 usbnet_get_endpoints +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x418f2af9 usbnet_tx_timeout +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x442b6c30 usbnet_purge_paused_rxq +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x47c39e9f usbnet_write_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4edd56d9 usbnet_suspend +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5074e8d3 usbnet_get_link +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5d1b1654 usbnet_get_drvinfo +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x656f2daf usbnet_unlink_rx_urbs +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6d490d88 usbnet_defer_kevent +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6e6a342d usbnet_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8521773c usbnet_read_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8a5e5944 usbnet_get_link_ksettings_internal +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8d22d5cc usbnet_set_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9a88d67f usbnet_start_xmit +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9dfd39fb usbnet_status_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9f4951c1 usbnet_resume_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa2fb939d usbnet_write_cmd_async +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa8d23194 usbnet_get_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xaf2baa9f usbnet_disconnect +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xcc61d60b usbnet_skb_return +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe366427a usbnet_set_link_ksettings_mii +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe907f3f0 usbnet_write_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xef8691b4 usbnet_status_start +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf4ba7284 usbnet_update_max_qlen +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf4e3bd9a usbnet_open +EXPORT_SYMBOL_GPL drivers/net/vxlan 0x2f8e7721 vxlan_fdb_replay +EXPORT_SYMBOL_GPL drivers/net/vxlan 0x3a16db9c vxlan_dev_create +EXPORT_SYMBOL_GPL drivers/net/vxlan 0xb7309403 vxlan_fdb_find_uc +EXPORT_SYMBOL_GPL drivers/net/vxlan 0xddd5651c vxlan_fdb_clear_offload +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/ipw2x00/libipw 0x221bbb55 libipw_rx_any +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0f183a76 il_remove_station +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2f69baa9 il_prep_station +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x83127bfd il_dealloc_bcast_stations +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xaace3133 il_mac_tx_last_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbab4cd37 _il_grab_nic_access +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x023c1371 iwl_init_paging +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x09509693 iwl_get_nvm +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x0c62b404 iwl_read_external_nvm +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x0e5c13c9 iwl_sar_get_ewrd_table EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1332e4de iwl_abort_notification_waits -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x16c2a979 iwl_fw_dbg_collect_desc -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2341bb96 iwl_poll_bit -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x270272d9 __iwl_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1533a586 iwl_fw_dbg_stop_restart_recording +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x184522d7 iwl_set_bits_mask_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1d6f6cad iwl_fw_dbg_collect_trig +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1fbc7cc9 __iwl_warn EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2710c362 iwl_dump_desc_assert -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2cd3f3d3 iwl_read_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x306910f3 iwl_dbg_tlv_del_timers -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x31197db8 iwl_finish_nic_init -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x319b830a iwl_sar_get_wgds_table -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x3353a96e iwl_acpi_get_dsm_u32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2ae6025e iwl_fw_dbg_read_d3_debug_data +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2b91259c iwl_fwrt_dump_error_logs +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2cfea9ab iwl_acpi_get_pwr_limit +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2f279a38 iwl_get_shared_mem_conf +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x34712f0c iwl_acpi_get_wifi_pkg EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x35033c81 iwl_phy_db_free -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x36a09c73 iwl_sar_geo_support -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x36d49dae iwl_write_direct64 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x3c92bdeb iwl_acpi_get_tas -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x3e1ca9fa _iwl_dbg_tlv_time_point -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x3edcee3b iwl_parse_mei_nvm_data -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x3f5c1c74 __iwl_info -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x43ad40bf iwl_phy_db_init +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x3771562e iwl_parse_nvm_mcc_info +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x37ef6770 iwl_free_fw_paging +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x38ef46f5 iwl_poll_direct_bit EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x43ccc4ac iwl_fw_lookup_notif_ver -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x493f6422 iwl_fw_dbg_stop_restart_recording -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x49f3caf7 iwl_read_prph_no_grab -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x4aaa02da iwl_write_prph_delay -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x4b79e2c5 iwl_get_nvm -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x4e227599 iwl_write64 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5193629f iwl_set_soc_latency -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x51eb1e07 iwl_read32 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x52abbb80 iwl_get_cmd_string +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x484b8d91 iwl_acpi_get_dsm_u8 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x4a9176d8 iwl_acpi_get_object +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x4b0d3ea0 iwl_read_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x4e9e467e __iwl_dbg EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5473f817 iwl_fw_lookup_cmd_ver EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5987fe45 iwl_fw_lookup_assert_desc EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5988395c iwl_notification_wait_init +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5c4b9151 iwl_trans_send_cmd EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5c52e109 iwl_opmode_deregister -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x617a9ed7 iwl_read_external_nvm -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x71285510 iwl_fw_dbg_collect -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x74367881 iwl_acpi_get_dsm_u8 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5d2cee63 iwl_fw_dbg_collect_desc +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x6258f4c7 __iwl_info +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x6671fffd iwl_sar_select_profile +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x6b3da791 iwl_set_soc_latency +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x6b9d31fa iwl_finish_nic_init +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x6ddeab31 iwl_write_prph_delay +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x6ee1c6dd iwl_sar_geo_init +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x74bd6aa8 iwl_parse_mei_nvm_data EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x776221bf iwl_send_phy_db_data -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x7a9e0613 iwl_get_shared_mem_conf -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x7f6a8e3d iwl_set_bits_mask_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x7f99c0f5 iwl_parse_nvm_data -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x81cd83ba iwl_trans_send_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8352da0c iwl_pnvm_load -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x84c87e68 iwl_sar_geo_init -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x88b0207a iwl_cmd_groups_verify_sorted -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8ae34f74 iwl_acpi_get_lari_config_bitmap -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8d91b4e2 iwl_fw_runtime_init -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8e39e0cb iwl_write32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x803c04ba iwl_sar_get_wrds_table +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8159f6d8 iwl_fw_dbg_error_collect +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x82ccf784 iwl_acpi_get_dsm_u32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x859b5bb7 iwl_write_direct32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8653d5c0 iwl_sar_geo_support +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x88faa3b0 iwl_sar_get_wgds_table EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x9038811a iwl_rfi_guid -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x929e448c __iwl_err -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x92b69023 iwl_clear_bits_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x932d7709 iwl_fw_start_dbg_conf -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x9836d5be iwl_fw_runtime_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x9d7884ab iwl_fwrt_dump_error_logs -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa7bf3698 iwl_poll_direct_bit +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x96191210 iwl_fw_start_dbg_conf +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x97b32c6e __iwl_err +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x99cebd22 iwl_configure_rxq +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x9fbe81b8 iwl_set_bits_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa1bdf3d4 iwl_acpi_get_tas +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa5bd0993 iwl_read_direct32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa639d780 iwl_dbg_tlv_del_timers +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa72e8b3c iwl_fw_runtime_resume EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa9f05394 iwlwifi_mod_params -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xaf3034bf iwl_fw_dbg_read_d3_debug_data -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xaf6b634e iwl_acpi_get_mcc -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb01b6902 __iwl_warn +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb0d106c6 iwl_read32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb6026660 iwl_acpi_get_eckv +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb7809aca iwl_write32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb8211fc2 iwl_pnvm_load EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xbafc8994 iwl_wait_notification -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xbc189488 iwl_fw_runtime_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xbc28b7a8 iwl_opmode_register -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xbcf73ecf iwl_sar_get_wrds_table -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xbf603c49 iwl_sar_select_profile -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xbffcb4d1 iwl_init_paging -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc0eba45f iwl_read_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc1f49358 iwl_fw_dbg_error_collect -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc2faac8c iwl_parse_nvm_mcc_info -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc6bcc84e iwl_force_nmi -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc76c8734 iwl_fw_dbg_stop_sync +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xbbaf41ed iwl_opmode_register +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xbc0b3cc0 iwl_fw_runtime_init +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc2b6e5d2 iwl_parse_eeprom_data +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc2fe15e6 iwl_poll_bit +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc6935126 iwl_acpi_get_lari_config_bitmap +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xcd8a3f7b iwl_write_direct64 EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xce0c6460 iwl_phy_db_set_section -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd2b8c15f iwl_fw_dbg_collect_trig -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd7956974 __iwl_crit -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xdc916682 iwl_configure_rxq +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xcec31241 iwl_fw_dbg_stop_sync +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd12bc124 iwl_write_prph64_no_grab +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd2770700 iwl_write8 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd8f6da6a iwl_phy_db_init +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xda4d6651 iwl_clear_bits_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xdaebde2b iwl_read_prph_no_grab +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xdceaadee iwl_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xde3cc710 iwl_fw_runtime_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xdf3e754e iwl_write_prph_no_grab EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe0eb5838 iwl_init_notification_wait -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe4233797 iwl_acpi_get_wifi_pkg -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe57b6e32 iwl_sar_get_ewrd_table -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe5f8b9e9 iwl_write_prph_no_grab EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe75b7e77 iwl_notification_wait -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe78dcea9 iwl_read_direct32 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe955cefc iwl_acpi_get_eckv +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe8bd8955 iwl_acpi_get_mcc +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe9eb7124 _iwl_dbg_tlv_time_point EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xea1b26fc iwl_nvm_fixups -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xee531e36 iwl_acpi_get_object -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf1864423 iwl_acpi_get_pwr_limit -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf47e82cf iwl_free_fw_paging -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf6cf08fc iwl_write_direct32 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf75bc65d iwl_write8 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xee534c53 iwl_cmd_groups_verify_sorted +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf0b99d4b iwl_parse_nvm_data +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf1ec2a40 __iwl_crit +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf2b3ad71 iwl_force_nmi +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf3ae7b35 iwl_get_cmd_string EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf88964e4 iwl_remove_notification +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xfad2484d iwl_fw_dbg_collect EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xfc1e6f41 iwl_guid -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xfe7c8fd4 iwl_write_prph64_no_grab +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xff91fe06 iwl_write64 EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/mei/iwlmei 0x1aca8c55 iwl_mei_host_disassociated EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/mei/iwlmei 0x27595f53 iwl_mei_set_rfkill_state EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/mei/iwlmei 0x2a6267b8 iwl_mei_get_ownership @@ -15367,820 +15418,821 @@ EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/mei/iwlmei 0x4e00000b iwl_mei_host_associated EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/mei/iwlmei 0x793ece1d iwl_mei_unregister_complete EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/mei/iwlmei 0x7d8730a9 iwl_mei_set_nic_info -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/mei/iwlmei 0xa367c5f1 iwl_mei_set_netdev +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/mei/iwlmei 0x881ba76d iwl_mei_set_netdev EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/mei/iwlmei 0xa571d81a iwl_mei_start_unregister -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/mei/iwlmei 0xba1679ae iwl_mei_tx_copy_to_csme +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/mei/iwlmei 0xa81b3975 iwl_mei_tx_copy_to_csme EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/mei/iwlmei 0xc30d8ba6 iwl_mei_get_nvm EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/mei/iwlmei 0xc76e7b8e iwl_mei_set_power_limit EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/mei/iwlmei 0xe3e860df iwl_mei_device_down EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/mei/iwlmei 0xe897851a iwl_mei_register EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/mei/iwlmei 0xee3e060e iwl_mei_set_country_code -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x0ec32555 p54_init_common -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x14d498b2 p54_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x3b282469 p54_parse_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x61b667e7 p54_register_common -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x69a3a5de p54_free_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x74a713b5 p54_parse_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x799e1209 p54_unregister_common -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xc684195a p54_read_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xca4432d4 p54_free_common -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x0345b495 lbs_host_to_card_done -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x05e84201 lbs_get_firmware_async -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x0f5224e9 __lbs_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x13ca29dc lbs_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x15bbd463 lbs_notify_command_response -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x1f8040ee lbs_stop_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x23b418d4 lbs_start_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x283f2ab5 lbs_queue_event -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x56b2c106 lbs_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x40b5c590 p54_parse_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x4516ace3 p54_init_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x46069346 p54_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x5476e0a3 p54_unregister_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x64822d68 p54_free_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x682779b1 p54_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x808fe62f p54_parse_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xa5665ada p54_free_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xc336b0c1 p54_register_common +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x00f77336 lbs_notify_command_response +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x3248c27f lbs_get_firmware_async +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x3c8f8bef lbs_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x493d92f9 lbs_start_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x4cfa1ca7 lbs_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x59447c07 lbs_resume EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x5fdf38b8 lbs_disablemesh -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x7387aad0 lbs_host_sleep_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xa795535e lbs_process_rxed_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xb3046fcc lbs_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xcc4f9449 lbs_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xce6afbc9 lbs_send_tx_feedback -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xd05dbb84 lbs_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x7d5922f8 lbs_queue_event +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x850886ff lbs_process_rxed_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xb596e1e9 lbs_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xc8795d13 lbs_host_to_card_done +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xcc72b6d2 lbs_host_sleep_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xd86912de __lbs_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xe29684e4 lbs_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xe5410288 lbs_stop_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xf32208d1 lbs_cmd_copyback EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xf64277de lbs_debug -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xfc267b4d lbs_get_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x42209646 __lbtf_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x423414ff lbtf_bcn_sent -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x47b96ab0 lbtf_cmd_copyback -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x62a27f58 lbtf_cmd_response_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x723dfb22 lbtf_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xfeb30e36 lbs_get_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x2448bdbc lbtf_cmd_response_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x532eefab lbtf_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x5666b308 lbtf_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x646d9eec lbtf_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x69f65efa lbtf_bcn_sent +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xba1cc801 __lbtf_cmd EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xc85e6899 lbtf_debug -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xe3140b40 lbtf_send_tx_feedback -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xe51c6863 lbtf_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xeed83156 lbtf_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x2c5acaca mwifiex_fw_dump_event -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x2cb2e880 mwifiex_process_hs_config -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x375e67bc mwifiex_deauthenticate_all -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x3f03a6f5 mwifiex_write_data_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x44a4582e mwifiex_queue_main_work -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x4b0c2b4c mwifiex_add_virtual_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x55abb635 mwifiex_reinit_sw -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x573fc9fa mwifiex_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x5d44696c mwifiex_prepare_fw_dump_info -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x67a37c23 mwifiex_handle_rx_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x87b24a46 mwifiex_init_shutdown_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x888330b7 mwifiex_shutdown_sw -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x8c9f5c10 mwifiex_process_sleep_confirm_resp -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x9e7ab27e mwifiex_dnld_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xac14e066 mwifiex_disable_auto_ds -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xac874ced mwifiex_multi_chan_resync -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xb018445b mwifiex_del_virtual_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xc66dd764 mwifiex_main_process -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xcb69e966 mwifiex_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xcbd52726 mwifiex_enable_hs -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xcded0627 mwifiex_drv_info_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xda36f90b lbtf_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xf6b0e51a lbtf_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x2351f6c7 mwifiex_disable_auto_ds +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x2f465447 mwifiex_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x3082c156 mwifiex_fw_dump_event +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x36b2ff44 mwifiex_process_sleep_confirm_resp +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x3fb6e09e _mwifiex_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x4a083b86 mwifiex_prepare_fw_dump_info +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x4d7c0a87 mwifiex_cancel_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x5a6fde54 mwifiex_main_process +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x5c214083 mwifiex_upload_device_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x5c4e2066 mwifiex_handle_rx_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x60c8fa1a mwifiex_queue_main_work +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x69294df2 mwifiex_add_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x72d1ce8a mwifiex_enable_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x85d4c685 mwifiex_drv_info_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x880bda55 mwifiex_shutdown_sw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x882c70d7 mwifiex_dnld_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x9baf839b mwifiex_del_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xa36847b0 mwifiex_deauthenticate_all +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xab5682ba mwifiex_process_hs_config +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xb1a520e9 mwifiex_multi_chan_resync +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xc5950c42 mwifiex_init_shutdown_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xca067fc9 mwifiex_add_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 0xdd5902f7 mwifiex_upload_device_dump -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xe8006e86 _mwifiex_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xf3e629ff mwifiex_cancel_hs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x05bc7cf5 mt76_txq_schedule -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x09af90ee mt76_unregister_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0a0f49ec mt76_csa_finish -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0b271271 mt76_tx_status_skb_add -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0be595fa mt76_seq_puts_array -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0c93ac23 mt76_set_irq_mask -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x10fb4930 mt76_mcu_send_and_get_msg +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xdd8b691a mwifiex_reinit_sw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xf953f7a4 mwifiex_write_data_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x00206dbd mt76_stop_tx_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x072cb8b6 mt76_csa_finish +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0935f2f2 mt76_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0f23d94f mt76_mcu_rx_event +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0ffd5531 mt76_dma_rx_poll EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x17f568e9 mt76_rates -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1d079bba mt76_mcu_skb_send_and_get_msg EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1ec57b4f __mt76_worker_fn -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x215c00fe mt76_get_rate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x22324ac0 mt76_csa_check -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x23379883 mt76_tx_check_agg_ssn -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x27a8f42e mt76_init_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2f11d027 mt76_put_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x35c62e91 mt76_register_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x369ec118 mt76_update_survey -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x37f79e56 mt76_pci_disable_aspm -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3f5332fa mt76_token_consume -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x43afad7c mt76_queue_tx_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4cff6ee6 mt76_sta_state -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x533c241f __traceiter_dev_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x573c02ab __mt76_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5b3eb9e1 mt76_tx_status_lock -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5daf3a86 mt76_eeprom_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x620786cf mt76_sw_scan_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x62950b14 mt76_tx_status_check -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x66edb542 mt76_skb_adjust_pad -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x67381056 mt76_mcu_rx_event -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6d5d2804 __SCK__tp_func_dev_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6f1a9987 mt76_alloc_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x70a4d256 mt76_get_survey -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7681f7f6 mt76_mmio_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x772817e8 mt76_tx_worker_run -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x791e26d8 mt76_tx_status_skb_done -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7937711b mt76_stop_tx_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x80724ff3 mt76_queues_read -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x82acee78 mt76_txq_schedule_all -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x84cdf62d mt76_get_of_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8976bc70 __SCK__tp_func_mac_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x897c50e7 __mt76_poll_msec -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8e2e954d mt76_dma_rx_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8f6f2d11 mt76_sta_pre_rcu_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8f9bf316 mt76_alloc_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x96ca2404 mt76_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x985af213 mt76_has_tx_pending -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9aa1b80d __tracepoint_mac_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9b6e0a30 __traceiter_mac_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9c0344cc mt76_set_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9ca16e9e mt76_set_stream_caps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9d03ba80 mt76_wake_tx_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9df17da9 mt76_sw_scan -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa957c674 mt76_rx_aggr_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xaa826fe0 mt76_release_buffered_frames -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xaf33560a mt76_free_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb0e7acb8 mt76_register_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb164bdf1 mt76_dma_attach -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb474d65f mt76_dma_cleanup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb5dbcd97 __mt76_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb6c010f5 mt76_set_tim -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb8e8576a mt76_mcu_get_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2096b8b0 mt76_queue_tx_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2128740a __SCK__tp_func_mac_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x21b6409f mt76_update_survey_active_time +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2255a677 mt76_tx_status_check +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x22a87973 mt76_sta_state +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x28c61d98 mt76_mcu_send_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2af3cb04 mt76_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2bafc82e mt76_sw_scan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2dd15e39 __traceiter_dev_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x380e3172 mt76_set_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3c0701e6 mt76_tx_worker_run +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3c25a13f mt76_tx_check_agg_ssn +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3ec91439 mt76_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3f6d75b9 mt76_rx_poll_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x45a9532b mt76_tx_status_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4e651e25 mt76_token_release +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5594f420 mt76_rx_aggr_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5756055b mt76_update_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5aba98f6 mt76_dma_attach +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x65e78cde mt76_mmio_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x683b7951 mt76_register_debugfs_fops +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6bf45a4d mt76_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6f4568db mt76_alloc_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x73e17fba mt76_eeprom_override +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x76715e2d __mt76_set_tx_blocked +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7b21d83f mt76_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7b7d1778 __mt76_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7e7aafc6 mt76_get_min_avg_rssi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x802fbaf1 __mt76_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x87920b1a mt76_mcu_get_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x884530c1 mt76_dma_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8b9cd78d mt76_rx_aggr_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8c301dfb mt76_csa_check +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8e4c5086 mt76_txq_schedule +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8e9c0959 mt76_free_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9091db8b mt76_set_stream_caps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x91645388 mt76_mcu_skb_send_and_get_msg +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9196e5ee __mt76_poll_msec +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x96e1a480 mt76_set_irq_mask +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9cc0b067 mt76_tx_status_unlock +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb2869b57 mt76_tx_status_skb_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb3a583ba mt76_get_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb8942630 mt76_pci_disable_aspm +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb9bd5316 mt76_seq_puts_array EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbb31a266 __SCT__tp_func_mac_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc01abd2d mt76_unregister_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc4c20b78 mt76_eeprom_override -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc5d6d7b8 mt76_get_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc60bdd01 mt76_rx_aggr_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbed9d260 mt76_mcu_msg_alloc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbf2b8867 mt76_register_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc190c856 mt76_tx_status_skb_get EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc6634315 mt76_ac_to_hwq -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc7f2518b mt76_tx_status_unlock -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc9fbc5a3 mt76_register_debugfs_fops -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xca2be90a mt76_update_survey_active_time -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd36e3e6c mt76_insert_ccmp_hdr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd39f150f __tracepoint_dev_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd7dd99ae mt76_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd878a101 mt76_mcu_send_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe27ff9c8 mt76_get_min_avg_rssi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc767d610 __tracepoint_dev_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc83d3e09 mt76_get_rate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xcb29ae52 mt76_get_of_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xcef3b669 mt76_sta_pre_rcu_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd23e9946 mt76_unregister_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd6e58fe1 mt76_insert_ccmp_hdr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd7558387 mt76_token_consume +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd8343d15 mt76_eeprom_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd8be7d69 mt76_get_rate_power_limits +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xda22652c mt76_queues_read +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xda7e85a9 mt76_skb_adjust_pad +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xde6aa2f7 __tracepoint_mac_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xdfa8c924 mt76_has_tx_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xdfb611b0 mt76_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xdfd58248 mt76_mcu_send_and_get_msg EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe40b66ef mt76_wcid_alloc EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe45628cb __SCT__tp_func_dev_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe9d7b818 mt76_get_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xecd433c2 mt76_get_rate_power_limits -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf0095ce3 mt76_tx_status_skb_get -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf0c76c42 __mt76_set_tx_blocked -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf32adc6a mt76_rx_poll_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf33b8933 mt76_mcu_msg_alloc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf8c8dba8 mt76_token_release -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xfa5d06ad __mt76_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x0a1c6dca mt76_connac_mcu_alloc_sta_req -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x0b747d8b mt76_connac_mcu_set_suspend_iter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x10256df9 mt76_connac_mcu_wtbl_hdr_trans_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x1c31d09a mt76_connac_mcu_chip_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x28093ae9 mt76_connac_mcu_alloc_wtbl_req -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x2fda4dad mt76_connac_mcu_sched_scan_req -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x3578eede mt76_connac_mcu_wtbl_generic_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x3c65f045 mt76_connac_mcu_update_gtk_rekey -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x3eccbecb mt76_connac_mcu_wtbl_ht_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x43725f45 mt76_connac_mcu_start_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4fae7774 mt76_connac_mcu_uni_add_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x51a8070e mt76_connac_mcu_set_rts_thresh -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x624956c2 mt76_connac_mcu_sched_scan_enable -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x65bbfabd mt76_connac_mcu_hw_scan -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x6aaab7be mt76_connac_mcu_sta_basic_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x6b857c45 mt76_connac_mcu_sta_ba -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x6e89797f mt76_connac_mcu_start_patch -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x720ce5cd mt76_connac_mcu_patch_sem_ctrl -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7524af63 mt76_connac_mcu_uni_add_bss -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x75a0dd8b mt76_connac_mcu_add_nested_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x76e24657 mt76_connac_mcu_set_deep_sleep -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x85c41d50 mt76_connac_pm_dequeue_skbs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x8bd312b2 mt76_connac_mcu_update_arp_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x8f65902b mt76_connac_mcu_cancel_hw_scan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe7c1d2f5 mt76_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe9a02fad __mt76_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xeaf1465a mt76_wake_tx_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf06e8418 __SCK__tp_func_dev_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf587c679 mt76_alloc_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf68b7cbd mt76_unregister_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf85fc802 __traceiter_mac_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf8bb9e0d mt76_tx_status_skb_done +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf97986a5 mt76_release_buffered_frames +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xfa93f289 mt76_txq_schedule_all +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xfd39be8b mt76_init_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xfec45e8e mt76_put_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x0c5f114b mt76_connac_mcu_set_vif_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x10038b69 mt76_connac_mcu_coredump_event +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x131ffcb5 mt76_connac_mcu_wtbl_generic_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x2034c941 mt76_connac_mcu_cancel_hw_scan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x2567082b mt76_connac_mcu_alloc_wtbl_req +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x26d231e8 mt76_connac_mcu_sta_ba_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x3ebdc26f mt76_connac_mcu_wtbl_ba_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x41fe851f mt76_connac_pm_wake +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4d919dae mt76_connac_mcu_update_gtk_rekey +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x5974252f mt76_connac_mcu_uni_add_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x5eb96713 mt76_connac_mcu_set_rate_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x681ac304 mt76_connac_mcu_uni_add_bss +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x6f562d72 mt76_connac_mcu_alloc_sta_req +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x85c8b24e mt76_connac_mcu_sta_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x8dce66d9 mt76_connac_mcu_start_patch +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x8e620a7c mt76_connac_mcu_wtbl_hdr_trans_tlv EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x908ca40c mt76_connac_wowlan_support -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x9288d68a mt76_connac_mcu_get_nic_capability -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x94f1b3cc mt76_connac_pm_queue_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x96d5c763 mt76_connac_mcu_set_rate_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x9c70e366 mt76_connac_mcu_sta_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x9da3b9fa mt76_connac_mcu_set_hif_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa0084423 mt76_connac_mcu_sta_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa2d0f527 mt76_connac_mcu_set_mac_enable -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xbb524940 mt76_connac_mcu_wtbl_ba_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xbc0fed41 mt76_connac_mcu_set_vif_ps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xbf34ab38 mt76_connac_mcu_init_download -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc4cc530b mt76_connac_mcu_beacon_loss_iter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc902a95c mt76_connac_mcu_sta_update_hdr_trans -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xcbec9f3a mt76_connac_free_pending_tx_skbs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xdd30a106 mt76_connac_sta_state_dp -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xdf40a395 mt76_connac_power_save_sched -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf32cea18 mt76_connac_mcu_sta_ba_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf6f6ba61 mt76_connac_mcu_coredump_event -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf888e4fc mt76_connac_mcu_set_channel_domain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xfc838540 mt76_connac_pm_wake -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x052a0e2b mt76s_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x107b45b8 mt76s_alloc_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xeb570d9e mt76s_deinit -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x2b1f711e mt76u_vendor_request -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x380766b8 mt76u_queues_deinit -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x421cf130 mt76u_stop_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x46ad5574 mt76u_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x6fd11f00 mt76u_alloc_mcu_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x98f654f8 mt76u_alloc_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xad1ba646 mt76u_stop_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xb6fe0d54 mt76u_resume_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xd3435ff4 mt76u_single_wr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x000260b4 mt7615_mcu_restart -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x04263679 mt7615_mcu_reg_rr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x1826f0b5 mt7615_init_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x2a02f832 mt7615_thermal_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x3020dcd7 mt7615_init_work -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x38fecb3c mt7615_mcu_reg_wr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x3917ed34 mt7615_mac_set_rates -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x5466c8bf mt7615_mac_write_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x54af9cce mt7615_txp_skb_unmap -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x5844f1d3 mt7615_queue_rx_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x5a0d98a0 __mt7663_load_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x5d76c585 mt7615_sta_ps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x69043624 mt7615_mcu_fill_msg -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x6a8155c7 mt7615_mcu_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x754aa655 mt7615_eeprom_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x7ac8c4af mt7615_tx_token_put -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x7bb9e7c6 mt7615_init_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x7f261c15 mt7615_mcu_exit -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x86fb8ee9 mt7622_trigger_hif_int -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x8ae81301 mt7615_update_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x8c88ea6d mt7615_register_ext_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x8da17173 mt7615_wait_for_mcu_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xafb6ade9 mt7615_unregister_ext_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xb2a7d075 mt7615_mac_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xd4756495 mt7615_mcu_parse_response -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xd78c8f55 mt7615_mac_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xe2bf4f7a mt7615_mac_sta_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xe8f17443 mt7615_init_debugfs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xeb58ebec mt7615_ops -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615e 0x25deef29 mt7615_dma_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x918cc6be mt76_connac_mcu_chip_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x94a7d2e6 mt76_connac_mcu_beacon_loss_iter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x9e722963 mt76_connac_mcu_set_hif_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa03a96a1 mt76_connac_mcu_wtbl_ht_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa04c716d mt76_connac_mcu_get_nic_capability +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xac6058df mt76_connac_mcu_sta_basic_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xae96e125 mt76_connac_mcu_set_suspend_iter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb0fd32ac mt76_connac_mcu_init_download +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb2d5330a mt76_connac_mcu_hw_scan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb3498ca1 mt76_connac_mcu_sched_scan_enable +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc29b8d3b mt76_connac_mcu_sta_update_hdr_trans +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc2ee04bf mt76_connac_mcu_set_deep_sleep +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc55d6223 mt76_connac_pm_dequeue_skbs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc8061b4e mt76_connac_free_pending_tx_skbs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc8117732 mt76_connac_mcu_sta_ba +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc86b94f4 mt76_connac_mcu_set_rts_thresh +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd1a2a0a5 mt76_connac_mcu_sched_scan_req +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd3fba2da mt76_connac_mcu_sta_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe0187447 mt76_connac_mcu_add_nested_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe5d25837 mt76_connac_power_save_sched +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe9048460 mt76_connac_sta_state_dp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xee7bdaf0 mt76_connac_mcu_set_mac_enable +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf545602c mt76_connac_mcu_start_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf7743476 mt76_connac_mcu_patch_sem_ctrl +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xfca65052 mt76_connac_mcu_update_arp_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xfe3b3288 mt76_connac_pm_queue_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xfe71bb9d mt76_connac_mcu_set_channel_domain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x09787a9b mt76s_alloc_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x434213d7 mt76s_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xf77fc640 mt76s_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x02980b9f mt76u_stop_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x2163d851 mt76u_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x378efb6f mt76u_alloc_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x7805eef3 mt76u_alloc_mcu_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x89a887af mt76u_queues_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xa3cea87d mt76u_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xb1bae8d5 mt76u_stop_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xb38af0fb mt76u_single_wr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xb6d048fb mt76u_resume_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x0d9526c6 mt7615_thermal_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x15556566 mt7615_wait_for_mcu_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x160df632 mt7615_init_work +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x1e64da17 mt7615_update_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x3b73611d mt7615_sta_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x3c431bc1 mt7615_mac_sta_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x42b68131 mt7615_mcu_reg_rr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x47656306 mt7615_mac_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x4932ddee mt7615_mcu_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x4e23977f mt7615_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x52e82459 mt7615_init_debugfs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x53bb3154 mt7615_mcu_reg_wr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x55cb6ee1 mt7615_mac_set_rates +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x5dbb93d3 mt7615_mcu_exit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x6c5b32eb mt7615_mac_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x6f5f85ee mt7615_queue_rx_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x7d7701cf mt7615_unregister_ext_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x90e0a023 mt7622_trigger_hif_int +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x94009b94 mt7615_mcu_fill_msg +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x95129d82 mt7615_register_ext_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xa70a33e4 mt7615_txp_skb_unmap +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xb35af8cd mt7615_mac_write_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xb60b628b mt7615_tx_token_put +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xc11ce207 mt7615_mcu_parse_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xc8b929ec mt7615_init_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xcd13b02c mt7615_mcu_restart +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xd7060716 mt7615_init_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xe83e4c2e mt7615_eeprom_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xebbb3a64 __mt7663_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615e 0x61b21495 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 0x330d43c2 mt7663_usb_sdio_register_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x449229d8 mt7663_usb_sdio_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0xc053d367 mt7663_usb_sdio_tx_status_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0xe5bc531a mt7663_usb_sdio_tx_prepare_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x0e1757db mt76x0_mac_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x2abb4c0d mt76x0_init_hardware -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x5db59c50 mt76x0_phy_calibrate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x7c1bb807 mt76x0_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xc17cc233 mt76x0_register_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xe54589f4 mt76x0_chip_onoff -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x034bc4b3 mt76x02_mac_shared_key_setup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x03b2a3f8 mt76x02_mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x7fe2e23f mt7663_usb_sdio_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x82b742d7 mt7663_usb_sdio_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0xd84bf5b7 mt7663_usb_sdio_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0xe6b71e2b mt7663_usb_sdio_tx_status_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x4d415ec7 mt76x0_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x62576066 mt76x0_phy_calibrate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x7f50c86d mt76x0_init_hardware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x95777c9d mt76x0_mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xc98bf8ed mt76x0_chip_onoff +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xcc372865 mt76x0_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x03396af4 mt76x02_phy_adjust_vga_gain EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0462ce68 mt76x02_add_rate_power_offset -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0bcda27b mt76x02_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0d05816e mt76x02_init_debugfs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x07190264 mt76x02_ampdu_action EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0d4023ec mt76x02_get_max_rate_power -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0ef395e8 mt76x02_mac_write_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x12476092 mt76x02_set_ethtool_fwver -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x184a6d81 mt76x02_eeprom_copy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x18b9ec5d mt76x02_phy_set_rxpath -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x20be1947 mt76x02_mac_cc_reset -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x227b81c8 mt76x02_enqueue_buffered_bc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x268989d0 mt76x02_sta_ps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x29c2c8a7 mt76x02_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2e0a2cbc mt76x02_dfs_init_params -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2f461add mt76x02_get_lna_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x30f6c659 mt76x02_ext_pa_enabled -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x319efc29 mt76x02_resync_beacon_timer +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0f00a865 mt76x02_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x10117c39 mt76x02_eeprom_parse_hw_cap +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x13cad8b5 mt76x02_dfs_init_params +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x18f8e99c mt76x02_mcu_parse_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1b5d9cb9 mt76x02_sta_rate_tbl_update +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1ca77b88 mt76x02_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1cb6e405 mt76x02_mac_shared_key_setup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x208e6759 mt76x02_mcu_set_radio_state +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2363984d mt76x02_resync_beacon_timer +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2b3a055a mt76x02_get_rx_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2d52d922 mt76x02_rx_poll_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2f1bbeaf mt76x02_mac_wcid_setup EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x35d2834d mt76x02_limit_rate_power -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3613bf89 mt76x02_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x378a5ad6 mt76x02_set_rts_threshold -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3e282277 mt76x02_phy_dfs_adjust_agc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3ff50303 mt76x02_remove_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4080c800 mt76x02_set_tx_ackto -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4567162d mt76x02_mac_setaddr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4a84d776 mt76x02_edcca_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x52e0ac53 mt76x02_queue_rx_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x42d2e91e mt76x02_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4347bcf4 mt76x02_phy_set_bw +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x447ad3b2 mt76x02_ext_pa_enabled +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x46431455 mt76x02_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5094cd31 mt76x02_init_agc_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x51aab17a 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 0x659767d9 mt76x02_phy_set_band -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x67bf1763 mt76x02_update_beacon_iter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x69a78c1b mt76x02_mcu_set_radio_state -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6a77436a mt76x02_ampdu_action -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6c0b4874 mt76x02_mcu_cleanup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6d2725f9 mt76x02_mac_reset_counters -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6e2eccec mt76x02_get_rx_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x74f0739a mt76x02_phy_set_bw -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x76953345 mt76x02_bss_info_changed -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x784ae2ff mt76x02_init_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x797ae94f mt76x02_add_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7c9f0553 mt76x02_get_efuse_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7df628f3 mt76x02_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x815606a2 mt76x02_config_mac_addr_list -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x822accdc mt76x02_mcu_calibrate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x88b1c106 mt76x02_remove_hdr_pad -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8a88086d mt76x02_mac_wcid_setup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8c427e07 mt76x02_reconfig_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8d89dc76 mt76x02_phy_adjust_vga_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6294e78b mt76x02_mcu_function_select +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6d0de474 mt76x02_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6f4c0db5 mt76x02_mac_set_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x70f617ee mt76x02_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x820bd5f4 mt76x02_mac_reset_counters +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x829c22d3 mt76x02_set_coverage_class +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x83bca9fa mt76x02_remove_hdr_pad +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x868cd188 mt76x02_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x88fa8ec5 mt76x02_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8d7d2f94 mt76x02_mac_cc_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8dbb9f0d mt76x02_phy_set_rxpath +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8f215e4a mt76x02_dma_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x91a2ddb6 mt76x02_tx EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x91d5b9ee mt76x02_irq_handler -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa544a586 mt76x02_mcu_function_select -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xaa98268d mt76x02_configure_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb081786c mt76x02_update_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb12bd351 mt76x02_init_agc_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xbd9cc2d6 mt76x02_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc2f8f6c3 mt76x02_tx_status_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc35b59c2 mt76x02_tx_prepare_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc38ffc06 mt76x02_mcu_msg_send -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc5ee23de mt76x02_mcu_parse_response -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xcd1ada19 mt76x02_init_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xce386997 mt76x02_mac_set_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd6372d43 mt76x02_phy_set_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd6cd3274 mt76x02_sta_rate_tbl_update -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd8019be2 mt76x02_dma_disable -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xdefcfecd mt76x02_sw_scan_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xea513df4 mt76x02_eeprom_parse_hw_cap -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xeb1d54b2 mt76x02_tx_set_txpwr_auto -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xeb4fea0f mt76x02_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf673a618 mt76x02_set_coverage_class -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf8836e6b mt76x02e_init_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf901bc17 mt76x02_rx_poll_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf944d09f mt76x02_dma_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xfa998b2e mt76x02_phy_set_txdac -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x27accefe mt76x02u_mcu_fw_send_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x52c1fb8b mt76x02u_tx_prepare_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x7704ac32 mt76x02u_mcu_fw_reset -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x86e680d3 mt76x02u_init_mcu -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x8bcf917c mt76x02u_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x9ace9ab0 mt76x02u_init_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xe53db9e1 mt76x02u_mac_start -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xee52c609 mt76x02u_exit_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x063b380d mt76_write_mac_initvals -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x0fd06171 mt76x2_apply_gain_adj -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x23b8a050 mt76x2_init_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x23cfab15 mt76x2_get_rate_power -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x286c31ac mt76x2_mcu_set_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x33fba3f3 mt76x2_get_temp_comp -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x3ad202a5 mt76x2_phy_tssi_compensate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x410ab1f7 mt76x2_configure_tx_delay -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x87cd1db6 mt76x2_mac_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x9ed8e7b3 mt76x2_mcu_load_cr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xa3442e1f mt76x2_eeprom_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xa8e3dad3 mt76x2_phy_set_txpower_regs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xaf85f17c mt76x2_mcu_init_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xb92b3924 mt76x2_read_rx_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xbf367d30 mt76x2_phy_set_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xce26d3f9 mt76x2_phy_update_channel_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xcff0d6b4 mt76x2_get_power_info -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xdf2d11ed mt76x2_reset_wlan -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xe8af78db mt76x2_mcu_tssi_comp -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x1b113f81 host_sleep_notify -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x2cfd510e wilc_handle_isr -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x47d5e78c host_wakeup_notify -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x4fe33e8b wilc_netdev_cleanup -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x83acba14 wilc_cfg80211_init -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xa6915350 chip_wakeup -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xef80ee1e chip_allow_sleep -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x0b357fa9 qtnf_get_debugfs_dir -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x0c0c504e qtnf_wake_all_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x95ce1fcd mt76x02_init_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa69ad387 mt76x02_phy_dfs_adjust_agc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xaa7afba1 mt76x02e_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xacdc9904 mt76x02_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xafe670be mt76x02_dma_disable +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb03e89c3 mt76x02_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb4580ded mt76x02_get_efuse_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb5ea3068 mt76x02_phy_set_txdac +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb8585e25 mt76x02_tx_status_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb92aafbe mt76x02_init_debugfs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xba75e631 mt76x02_update_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xbd975ceb mt76x02_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xbdfa1623 mt76x02_mcu_calibrate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc62a58c4 mt76x02_phy_set_band +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc74af011 mt76x02_reconfig_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc83060ff mt76x02_mac_write_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xcd930397 mt76x02_mcu_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd3b110ad mt76x02_get_lna_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd491847f mt76x02_eeprom_copy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xdbe77dbb mt76x02_edcca_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xde4425c3 mt76x02_tx_set_txpwr_auto +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe04bab90 mt76x02_update_beacon_iter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe1291aab mt76x02_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe18a5c39 mt76x02_enqueue_buffered_bc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe1cf5f13 mt76x02_set_ethtool_fwver +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe406f130 mt76x02_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe66286bc mt76x02_config_mac_addr_list +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xeb7c35fc mt76x02_phy_set_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf1687f46 mt76x02_set_tx_ackto +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf1dfa1de mt76x02_queue_rx_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf96cd78d mt76x02_mcu_msg_send +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xfa79956a mt76x02_sta_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xfba7f3b5 mt76x02_mac_setaddr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x78ca3a55 mt76x02u_exit_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x8d4aba31 mt76x02u_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x916b69d0 mt76x02u_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xa5e1dc46 mt76x02u_mcu_fw_send_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xcfdabbbe mt76x02u_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xd2dedff1 mt76x02u_mcu_fw_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xdb2571ef mt76x02u_mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xff8ed0f3 mt76x02u_init_mcu +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x01b65c09 mt76x2_get_temp_comp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x242767e9 mt76x2_mcu_load_cr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x3e05c0b8 mt76x2_configure_tx_delay +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x481926fc mt76x2_mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x59803df2 mt76x2_eeprom_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x60cd1ece mt76x2_reset_wlan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x780f76bb mt76x2_init_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x9c233a41 mt76x2_phy_set_txpower_regs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x9d3c1eae mt76x2_get_power_info +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xa4e8d5a6 mt76x2_phy_set_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xa9da0680 mt76x2_mcu_tssi_comp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xaca0d551 mt76_write_mac_initvals +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xaf18960e mt76x2_mcu_init_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xb5f1716f mt76x2_get_rate_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xb8d92047 mt76x2_phy_tssi_compensate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xc5b159c0 mt76x2_mcu_set_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xdff1fb2e mt76x2_phy_update_channel_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xe970a8f2 mt76x2_read_rx_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xedee88fa mt76x2_apply_gain_adj +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x4f6bb12a chip_allow_sleep +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x524b924e host_sleep_notify +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x88f49c58 wilc_handle_isr +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x90e2de9a chip_wakeup +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x9573c9af host_wakeup_notify +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xa070d010 wilc_cfg80211_init +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xc1cdc05a 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 0xcdb79bb8 qtnf_core_detach -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xd37a0e73 qtnf_trans_handle_rx_ctl_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xd82dfc8b qtnf_classify_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xda122ecb qtnf_core_attach -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x06955749 rt2800_config_erp -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x0835f184 rt2800_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x0ccf5188 rt2800_wait_csr_ready -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x0eba29d7 rt2800_txstatus_pending -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x18343058 rt2800_config_ant -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x1a05600e rt2800_rfkill_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x2371cb1b rt2800_get_txwi_rxwi_size -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x26af7dc2 rt2800_clear_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x2d7c6037 rt2800_get_key_seq -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x37f57f9a rt2800_txstatus_timeout -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x3a4a6317 rt2800_get_survey -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x3ae1d518 rt2800_set_rts_threshold -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x42305d03 rt2800_reset_tuner -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x45f3aa2e rt2800_enable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x5153f2fe rt2800_efuse_detect -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x53bdcd95 rt2800_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x60259b40 rt2800_txdone_nostatus -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x66cde0e7 rt2800_mcu_request -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6a24f945 rt2800_pre_reset_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7546be66 rt2800_config_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x89d0847d rt2800_watchdog -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x90c0e143 rt2800_config_shared_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x92d5df95 rt2800_load_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x93f65b8e rt2800_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x952bbb29 rt2800_read_eeprom_efuse -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x9cf06e0c rt2800_probe_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa42c476e rt2800_write_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb1749c2b rt2800_process_rxwi -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb18ee6b6 rt2800_disable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb6c1a77b rt2800_check_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb7a1f218 rt2800_get_tsf -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xbd5afe59 rt2800_disable_wpdma -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc8abe5cb rt2800_link_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xcfd7e695 rt2800_write_tx_data -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd0186c56 rt2800_wait_wpdma_ready -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd1661c9f rt2800_vco_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd211431e rt2800_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd677e457 rt2800_txdone_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd7d1075d rt2800_config_pairwise_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe7029cac rt2800_config_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xea093a77 rt2800_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf009080d rt2800_gain_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf7445a5d rt2800_ampdu_action -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xfb0b7bfa rt2800_link_tuner -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x0f1f29b2 rt2800mmio_get_entry_state -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x169eab48 rt2800mmio_queue_init -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x25609b26 rt2800mmio_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x3d4be037 qtnf_get_debugfs_dir +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x4cacaf5e qtnf_classify_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x53892e59 qtnf_core_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x775798be qtnf_wake_all_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xd0bcca75 qtnf_trans_handle_rx_ctl_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xf6d84445 qtnf_core_attach +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x0a622a28 rt2800_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x0b3710ff rt2800_check_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x122452c5 rt2800_read_eeprom_efuse +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x1d4dd368 rt2800_txstatus_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x2239f603 rt2800_wait_csr_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x23108f91 rt2800_pre_reset_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x280a9066 rt2800_mcu_request +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x2bb44245 rt2800_probe_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x2d304bac rt2800_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x340d25f6 rt2800_vco_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x3abfbb8c rt2800_config_erp +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x421836b9 rt2800_clear_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x4e57ad19 rt2800_config_pairwise_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x61f18509 rt2800_gain_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x649f4bc2 rt2800_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6918ca0b rt2800_txdone_nostatus +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6aab78f7 rt2800_write_tx_data +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x87f698b1 rt2800_link_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x88fb8053 rt2800_get_txwi_rxwi_size +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x9038e95c rt2800_txdone_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa15a5b81 rt2800_txstatus_timeout +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa21be0d2 rt2800_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa8ecf958 rt2800_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xab381d77 rt2800_get_key_seq +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xab74cc62 rt2800_config_ant +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xac6528d9 rt2800_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xadc1845a rt2800_disable_wpdma +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb532d9db rt2800_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb744a81d rt2800_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb9e8adb2 rt2800_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc6140446 rt2800_reset_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xca0e47eb rt2800_get_tsf +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xcaf039ab rt2800_config_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd1a5e340 rt2800_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd487a116 rt2800_write_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd95ee6c9 rt2800_config_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xdbf252ca rt2800_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xde0c6ff5 rt2800_link_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe18e8ffa rt2800_process_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xea6b7718 rt2800_config_shared_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf3ca7de1 rt2800_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf9b1af5b rt2800_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xfa344f4c rt2800_wait_wpdma_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xfc13e1a4 rt2800_efuse_detect +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x052e59bc rt2800mmio_get_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x2de894a8 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 0x3d741c87 rt2800mmio_pretbtt_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x4369fb42 rt2800mmio_init_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x4edf8396 rt2800mmio_fill_rxdone EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5028bbb2 rt2800mmio_tbtt_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5421d5b6 rt2800mmio_write_tx_desc +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5187a627 rt2800mmio_toggle_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5a13c20b rt2800mmio_clear_entry EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5fa4db64 rt2800mmio_interrupt -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x634cc8f1 rt2800mmio_clear_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x67ac5609 rt2800mmio_init_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x67fd2627 rt2800mmio_fill_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x8cbb0004 rt2800mmio_start_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x8e575265 rt2800mmio_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x737f4b44 rt2800mmio_queue_init +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x762fcec2 rt2800mmio_get_entry_state +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x79e4d605 rt2800mmio_write_tx_desc +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x7e41eb8a rt2800mmio_probe_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x802f0214 rt2800mmio_enable_radio 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 0xa2ddc4c2 rt2800mmio_enable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xb0fda3c8 rt2800mmio_probe_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xbd24b90c rt2800mmio_get_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xc1125902 rt2800mmio_stop_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xc7d2ca54 rt2800mmio_toggle_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xfaea02f1 rt2800mmio_get_dma_done -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x13010132 rt2x00queue_flush_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1661a9d1 rt2x00mac_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x24ba4bed rt2x00mac_set_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x2fdc9a8a rt2x00queue_unmap_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3053b0c6 rt2x00queue_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3881689b rt2x00queue_map_txskb -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3c58d334 rt2x00lib_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4972c513 rt2x00lib_probe_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4a23f5a5 rt2x00queue_pause_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x508c9836 rt2x00mac_get_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x5460ae6b rt2x00mac_rfkill_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x5be3f57b rt2x00mac_bss_info_changed -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x5fdd8188 rt2x00mac_get_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x728a1447 rt2x00mac_start -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7892a9c6 rt2x00lib_dmastart -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7cdf7b9f rt2x00mac_sw_scan_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x812eea0e rt2x00lib_beacondone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x8179f928 rt2x00lib_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x83051f97 rt2x00queue_unpause_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x85ff4c06 rt2x00mac_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x8e2873de rt2x00lib_txdone_nomatch -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x8ee28ac1 rt2x00queue_start_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x924353fe rt2x00mac_sw_scan_start -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x9d1d35c6 rt2x00lib_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x9d266637 rt2x00lib_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x9dd68651 rt2x00mac_remove_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa35b4a6b rt2x00lib_set_mac_address -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb775bf29 rt2x00queue_get_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xbbefe03d rt2x00mac_get_ringparam -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xbc7afb14 rt2x00lib_get_bssidx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xbc9a8099 rt2x00queue_start_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xbcd5a1a0 rt2x00lib_remove_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xbce16985 rt2x00queue_stop_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc14fb0e6 rt2x00mac_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc84a01db rt2x00mac_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc8eb69f9 rt2x00mac_reconfig_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc95c03e6 rt2x00lib_pretbtt -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xcbcaec32 rt2x00lib_dmadone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xcc023a7e rt2x00lib_txdone_noinfo -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd220dc92 rt2x00mac_flush -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xdc9f6472 rt2x00mac_configure_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xdd7415ba rt2x00mac_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe40c8dc9 rt2x00queue_for_each_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe776b85d rt2x00mac_set_tim -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf50b96c1 rt2x00queue_stop_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf5b43397 rt2x00mac_add_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xff7d51bf rt2x00mac_tx_frames_pending -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x2ff7a01e rt2x00mmio_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x7080c99a rt2x00mmio_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x77868d6c rt2x00mmio_initialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xabd46d51 rt2x00mmio_regbusy_read -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xf8d6ec15 rt2x00mmio_uninitialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x254ad601 rt2x00pci_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x347824a3 rt2x00pci_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0xe0b625e9 rt2x00pci_pm_ops -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x1f0ee3b4 rt2x00usb_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x2293420a rt2x00usb_disable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x250c2dcb rt2x00usb_uninitialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x34c9d476 rt2x00usb_vendor_request_buff -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x3617a46d rt2x00usb_register_read_async -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x3a8d30cf rt2x00usb_kick_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x75afa599 rt2x00usb_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x8671114c rt2x00usb_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x9d58b169 rt2x00usb_watchdog -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x9ea06328 rt2x00usb_disconnect -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xadf4e5d9 rt2x00usb_clear_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xb9a43f9f rt2x00usb_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xc8ec8f35 rt2x00usb_initialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xca4540a2 rt2x00usb_vendor_req_buff_lock -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xfa5fb30b rt2x00usb_vendor_request -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xfa929ffb rt2x00usb_regbusy_read -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x31a33e2f dm_restorepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x534d220f dm_savepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd55dddc4 dm_writepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf86bb282 rtl92c_set_p2p_ps_offload_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0af7f1d9 rtl8723_cmd_send_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x14b7af13 rtl8723ae_firmware_selfreset -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x296404de rtl8723_download_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x3bce82de rtl8723_phy_rf_serial_write +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x9f825159 rt2800mmio_init_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xb35d9749 rt2800mmio_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xb8aec920 rt2800mmio_init_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xc2d2d6f5 rt2800mmio_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xd2f5897d rt2800mmio_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xf8c39c6c rt2800mmio_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x09e0ece4 rt2x00lib_remove_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x0eacd4da rt2x00lib_get_bssidx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x0f0a74cd rt2x00lib_set_mac_address +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x13f0afe2 rt2x00queue_start_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1b3db975 rt2x00mac_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x2cbaad24 rt2x00queue_pause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x2d83643e rt2x00lib_txdone_nomatch +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x2fa6640c rt2x00mac_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x2fc55ae9 rt2x00mac_reconfig_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x31425c7f rt2x00mac_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x415f9a7c rt2x00mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x446a5fff rt2x00lib_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4612b1cc rt2x00mac_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4beff860 rt2x00queue_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4c4270ff rt2x00queue_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x55752657 rt2x00lib_dmastart +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x6238730e rt2x00lib_pretbtt +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x657a248c rt2x00mac_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x73b8a4be rt2x00queue_unpause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x77c9746a rt2x00lib_beacondone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x8641c337 rt2x00mac_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x86d8cb82 rt2x00mac_get_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x89c118c8 rt2x00lib_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x8a72ca8b rt2x00lib_txdone_noinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x90bfa37e rt2x00queue_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x9964a64c rt2x00mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa85447f9 rt2x00queue_flush_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb8714b00 rt2x00lib_dmadone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb9778aab rt2x00mac_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc036a3bf rt2x00lib_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc10f64de rt2x00mac_set_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc2159000 rt2x00queue_unmap_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc49fc0ae rt2x00mac_get_ringparam +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc978b8ff rt2x00lib_probe_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xcc3a7777 rt2x00mac_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xcd60b4b9 rt2x00lib_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd1b1c348 rt2x00mac_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd4fd4ae2 rt2x00queue_get_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xdeebd4e2 rt2x00mac_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe41d373f rt2x00queue_for_each_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe924c2da rt2x00queue_stop_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xeb0f44e5 rt2x00mac_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xeb27b3ba rt2x00queue_map_txskb +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xeb7f54df rt2x00mac_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf58b58fb rt2x00mac_sw_scan_start +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf646ecc6 rt2x00mac_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xfb93852b rt2x00mac_tx_frames_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x00747469 rt2x00mmio_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x4efc1cb8 rt2x00mmio_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x78382655 rt2x00mmio_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x83eda2fd rt2x00mmio_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x8cda8bdd rt2x00mmio_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x07c21b22 rt2x00pci_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x24ff859b rt2x00pci_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x69260b75 rt2x00pci_pm_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x126157f0 rt2x00usb_vendor_request_buff +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x18b9b81b rt2x00usb_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x19e49464 rt2x00usb_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x30f0568d rt2x00usb_vendor_req_buff_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x33126eb7 rt2x00usb_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x396829ae rt2x00usb_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x3c1685b0 rt2x00usb_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x42307a7a rt2x00usb_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x4a8b1bac rt2x00usb_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x4b74db40 rt2x00usb_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x61d0f908 rt2x00usb_register_read_async +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x62dae1b6 rt2x00usb_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x82dffce6 rt2x00usb_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x98beb618 rt2x00usb_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xbcdb5c1c rt2x00usb_disconnect +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xe0feea12 rt2x00usb_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3d04c100 dm_writepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x69131d54 dm_savepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xadcdb1bd dm_restorepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc043f172 rtl92c_set_p2p_ps_offload_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x02ffa20a rtl8723_dm_init_dynamic_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x04b31ec5 rtl8723_phy_path_a_standby +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0945baf2 rtl8723_dm_init_edca_turbo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x2a4778b8 rtl8723_phy_set_bb_reg EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x3f5bf9c0 rtl8723_phy_calculate_bit_shift -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x44bac8dc rtl8723_write_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x46255ae7 rtl8723_phy_init_bb_rf_reg_def -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x5b3957ff rtl8723be_firmware_selfreset -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6050ef8a rtl8723_phy_path_adda_on -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x7b8e98a6 rtl8723_phy_query_bb_reg -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x7daaf95e rtl8723_enable_fw_download -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8a3e6e39 rtl8723_phy_path_a_fill_iqk_matrix +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x3fbb3d2e rtl8723_fw_free_to_go +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x4911fb80 rtl8723_phy_init_bb_rf_reg_def +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x58657a53 rtl8723_save_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x62d269f6 rtl8723_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x63fbc60f rtl8723_phy_rf_serial_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x645d5740 rtl8723_phy_reload_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x69555e4f rtl8723_phy_query_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x7ca280ac rtl8723_phy_reload_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x88600b67 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 0xa91210df rtl8723_phy_pi_mode_switch -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb34601c0 rtl8723_phy_save_mac_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb4b5684c rtl8723_save_adda_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb8ebd2eb rtl8723_dm_init_dynamic_bb_powersaving -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xc0b853f4 rtl8723_fw_free_to_go -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xc2c5d5e4 rtl8723_phy_reload_adda_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xca951df7 rtl8723_phy_mac_setting_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xcc1577a1 rtl8723_phy_rf_serial_read -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xcc2fe2c8 rtl8723_dm_init_edca_turbo -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd410caf2 rtl8723_phy_set_bb_reg -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe8fc7ea0 rtl8723_dm_init_dynamic_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xebe8b9f2 rtl8723_phy_path_a_standby -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf2d2303b rtl8723_phy_txpwr_idx_to_dbm -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf5a8c0d6 rtl8723_phy_reload_mac_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x01a2a0c0 rtl_action_proc -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0c4a5464 rtl_swlps_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x195f5c2a rtl_get_hwinfo -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x229623e9 rtl_init_rx_config -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x244ccf65 rtl_lps_leave +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8bc4a988 rtl8723_download_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa11a815d rtl8723_phy_pi_mode_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xaf4a90d7 rtl8723_enable_fw_download +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb84021ef rtl8723_write_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xbf15896e rtl8723_dm_init_dynamic_bb_powersaving +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xbf5c0d15 rtl8723ae_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xc3e0b76b rtl8723_phy_save_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xc8d7067b rtl8723_phy_path_a_fill_iqk_matrix +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xcc54b996 rtl8723_phy_rf_serial_read +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xcd66c107 rtl8723_cmd_send_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xeec7bf65 rtl8723_phy_mac_setting_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf42f72c5 rtl8723be_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0c8c4313 rtl_tx_mgmt_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1678e140 rtl_init_core EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2921a4d4 rtl_btc_status_false -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x29e5741f rtl_set_tx_report -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x29ee1f4e read_efuse_byte 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 0x34fc4de2 rtl_deinit_core -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x35cd93fa rtl_beacon_statistic -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x37d3d1f1 rtl_ips_nic_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x35bc6e82 rtl_recognize_peer +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x431ea7ca rtl_deinit_deferred_work +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x48a27f79 rtl_ips_nic_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4e4b090a rtl_get_hwinfo EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4e94cd48 rtl_global_var +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6c6a4ca7 rtl_beacon_statistic EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6db3ba37 rtl_update_beacon_work_callback -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6e0d3077 rtl_p2p_info -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x71bb01c9 rtl_tx_mgmt_proc -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x79f5dfbb rtl_deinit_rfkill -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7d61c415 rtl_lps_enter -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7e54e437 rtl_tx_report_handler -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8f76cefc rtl_deinit_deferred_work +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7075c49f rtl_tx_report_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x781f4c24 rtl_init_rx_config +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7b130409 rtl_efuse_ops_init +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8f57504b 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 0x99f66c92 rtl_efuse_ops_init -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9c47d234 rtl_tx_ackqueue -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa50d9e72 rtl_fw_page_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa85b539a rtl_is_special_data -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb87da81c rtl_fw_block_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc01b801b rtl_get_hal_edca_param -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc72a59f1 rtl_init_core -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf2de5a91 rtl_recognize_peer -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf530b603 rtl_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb04ebc71 rtl_lps_leave +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb7567cd3 rtl_swlps_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb9e2dd83 rtl_deinit_rfkill +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xba333b9e rtl_tx_ackqueue +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc6d7d1a4 rtl_deinit_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc6f644b5 rtl_fw_page_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc915cbfa read_efuse_byte +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xca3d0160 rtl_lps_enter +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xcc7b3e58 rtl_is_special_data +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xcfae9a0f rtl_fw_block_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd352de1d rtl_action_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd501c4fd rtl_set_tx_report +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd5b260d1 rtl_p2p_info +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xdf5ea3c8 rtl_get_hal_edca_param EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x0f5c3ce9 rsi_zone_enabled -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x1cff4bcb rsi_hal_device_init -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x3c7c33f5 rsi_read_pkt -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x41d7148f rsi_91x_deinit -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x579661b9 rsi_mac80211_detach -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x71700612 rsi_91x_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x344feab2 rsi_mac80211_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x7bd8cc8d rsi_read_pkt +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xbbe01ff9 rsi_hal_device_init EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xcd173710 rsi_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x427f0dda cw1200_irq_handler -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x97866643 cw1200_core_release -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x9da98538 cw1200_core_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xc14b0506 cw1200_can_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x71eea77e wl1251_alloc_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xc88ede44 wl1251_init_ieee80211 -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xd16c540e wl1251_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xd91a151e rsi_91x_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xe5cfa21d rsi_91x_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x920ef30c cw1200_irq_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x996be49d cw1200_core_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xc588bc0f cw1200_can_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xca492cc1 cw1200_core_release +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x92b39d86 wl1251_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x977873da wl1251_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xbd6d1a15 wl1251_init_ieee80211 EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x06d3b27e wl12xx_debug_level -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x07fa1de2 wlcore_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x11266967 wlcore_boot_upload_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x17acfb9b wl1271_tx_flush -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x18bc3ee4 wl1271_acx_set_ht_capabilities -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1e830e34 wlcore_cmd_wait_for_event_or_timeout +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0a92e688 wl1271_acx_sleep_auth +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0c921f84 wlcore_event_inactive_sta +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0f580e9d wlcore_boot_upload_nvs +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x10f5ab04 wlcore_scan_sched_scan_results +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x134a095e wlcore_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1e8ee218 wlcore_event_beacon_loss EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x20351125 wlcore_get_native_channel_type -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x223f55ed wlcore_set_partition -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x296bf814 wl1271_debugfs_update_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2d980bd5 wlcore_event_channel_switch -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2e027d36 wl1271_acx_pm_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3107a2ca wlcore_event_ba_rx_constraint -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3e46f3f6 wlcore_event_inactive_sta -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x46ea42e6 wl1271_cmd_test -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x47f2f91b wlcore_event_rssi_trigger -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5446993a wlcore_enable_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x60d705dc wlcore_boot_upload_nvs -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x61ca2797 wlcore_alloc_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x638c8a12 wlcore_event_roc_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6694c52f wl1271_acx_init_mem_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6c0cee20 wlcore_free_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x753fd91e wl1271_cmd_send -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x82d172b3 wlcore_event_fw_logger +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2b4c9c8a wlcore_event_max_tx_failure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3212fa28 wl12xx_cmd_build_probe_req +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x36de991a wlcore_enable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x47d6c6db wlcore_set_scan_chan_params +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x595f633d wl12xx_acx_mem_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5b09293d wlcore_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x61927486 wlcore_event_roc_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x622cc39e wlcore_cmd_wait_for_event_or_timeout +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x665dce1f wl1271_cmd_configure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6823e3f8 wlcore_event_sched_scan_completed +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6ce241ab wlcore_set_partition +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7026a746 wlcore_scan_sched_scan_ssid_list +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x793225a5 wlcore_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7b53f724 wlcore_translate_addr +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x81e56870 wl1271_debugfs_update_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x84284de4 wlcore_boot_upload_firmware EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x85498cd1 wl1271_format_buffer -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x86c58859 wlcore_event_dummy_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9476e804 wlcore_event_max_tx_failure -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9bd1a204 wl1271_cmd_data_path -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9bfbac94 wl12xx_acx_mem_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9ecab9de wlcore_translate_addr -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa22ae61f wlcore_event_soft_gemini_sense -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa57f827d wlcore_cmd_generic_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa965ff26 wl1271_acx_sleep_auth -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xad4c09bd wlcore_set_scan_chan_params -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb8e51e44 wlcore_event_sched_scan_completed -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xba6849aa wlcore_disable_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xbfe537fe wlcore_disable_interrupts_nosync -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc78b04bb wl1271_tx_min_rate_get -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc872c4fb wl12xx_cmd_build_probe_req -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xca898ff9 wlcore_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd29f396e wlcore_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd80ef7c4 wlcore_boot_run_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe3d7bf4f wlcore_scan_sched_scan_ssid_list -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xeb177ba3 wlcore_scan_sched_scan_results -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xec26ab34 wlcore_event_beacon_loss -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xfbc2df2e wlcore_synchronize_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xfe1b6926 wl1271_cmd_configure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x86b81c6b wlcore_event_fw_logger +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8a58d560 wlcore_event_ba_rx_constraint +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8c9d832b wl1271_cmd_data_path +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8f298633 wlcore_disable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9ffbe8c8 wl1271_cmd_send +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xaada2298 wl1271_acx_set_ht_capabilities +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb4cb07c6 wlcore_event_channel_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb5ecd45d wlcore_event_dummy_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb9609607 wl1271_tx_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc2f60521 wl1271_acx_pm_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xcb4b2abd wl1271_tx_min_rate_get +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xcc8d3ff3 wlcore_event_soft_gemini_sense +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xdd21488b wlcore_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe7d61f53 wlcore_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xee66ea5e wlcore_boot_run_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xef574f9c wlcore_disable_interrupts_nosync +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xefe36d5a wl1271_cmd_test +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf2b509b9 wlcore_cmd_generic_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf57b2769 wlcore_event_rssi_trigger +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xfb9ec0d5 wl1271_acx_init_mem_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xfe1f6c20 wlcore_synchronize_interrupts EXPORT_SYMBOL_GPL drivers/nfc/mei_phy 0x14575c46 mei_phy_ops -EXPORT_SYMBOL_GPL drivers/nfc/mei_phy 0x3b26485f nfc_mei_phy_free -EXPORT_SYMBOL_GPL drivers/nfc/mei_phy 0x5698007a nfc_mei_phy_alloc -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x3782ff4f nfcmrvl_nci_recv_frame -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x4121b70f nfcmrvl_parse_dt -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xa598244d nfcmrvl_nci_unregister_dev -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xbe01a6b0 nfcmrvl_nci_register_dev -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x844e147b pn53x_common_init -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xbb426623 pn53x_common_clean -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xccfe7ae3 pn532_i2c_nfc_alloc -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xde7242f3 pn53x_register_nfc +EXPORT_SYMBOL_GPL drivers/nfc/mei_phy 0x46c49f24 nfc_mei_phy_free +EXPORT_SYMBOL_GPL drivers/nfc/mei_phy 0x7a08e1c0 nfc_mei_phy_alloc +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x1267bcd8 nfcmrvl_nci_recv_frame +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xaa90c43b nfcmrvl_parse_dt +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xe03fd3ae nfcmrvl_nci_register_dev +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xee09cc58 nfcmrvl_nci_unregister_dev +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x0685b94e pn53x_common_init +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x11c81518 pn533_finalize_setup +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x3fbbb151 pn53x_unregister_nfc +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x5b1f2825 pn533_rx_frame_is_cmd_response +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xae042b4e pn532_i2c_nfc_alloc EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xdecfd339 pn533_rx_frame_is_ack -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xdf9eeb77 pn533_finalize_setup -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xeec06525 pn53x_unregister_nfc -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xf4d3998b pn533_rx_frame_is_cmd_response -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x49954404 st_nci_hci_load_session -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x5e622309 st_nci_discover_se -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x6de93d57 st_nci_probe -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x74ed338b st_nci_hci_event_received -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x874620f6 st_nci_disable_se -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x8af92c11 st_nci_enable_se -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xd8026d6f st_nci_remove -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xea4e47bb st_nci_hci_cmd_received -EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x22ecdd66 st95hf_spi_recv_response -EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x6f85452f st95hf_spi_recv_echo_res -EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0xedcffa80 st95hf_spi_send +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xed83f4a8 pn53x_common_clean +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xf5fb18bb pn53x_register_nfc +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x00a7b8b9 st_nci_disable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x033e6ad8 st_nci_remove +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x0e19c8dc st_nci_hci_event_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x23e949fc st_nci_discover_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x531b9f06 st_nci_hci_cmd_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xa3d85088 st_nci_hci_load_session +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xa448ee54 st_nci_probe +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xe96dda47 st_nci_enable_se +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x466adb4c st95hf_spi_recv_response +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0xb559cf76 st95hf_spi_recv_echo_res +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0xddd27b8a st95hf_spi_send EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x0862001f ntb_transport_tx_free_entry EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x30934216 ntb_transport_max_size EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x32537aca ntb_transport_link_query EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x3d54dbfc ntb_transport_tx_enqueue -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x3f29181b ntb_transport_unregister_client +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x40525421 ntb_transport_register_client EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x436098aa ntb_transport_link_down -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x5063df52 ntb_transport_register_client +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x82c861b9 ntb_transport_create_queue EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x82e6c13d ntb_transport_qp_num EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x9c992c8f ntb_transport_link_up EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc270dc24 ntb_transport_free_queue EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc37d9036 ntb_transport_rx_remove -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xcff480e4 ntb_transport_create_queue EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xd40e7a02 ntb_transport_rx_enqueue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xe001d857 ntb_transport_unregister_client EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf55d6313 ntb_transport_register_client_dev EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf9eb813f ntb_transport_unregister_client_dev -EXPORT_SYMBOL_GPL drivers/nvdimm/nd_virtio 0x4fe985ba virtio_pmem_host_ack -EXPORT_SYMBOL_GPL drivers/nvdimm/nd_virtio 0x60c9fac3 async_pmem_flush -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x006b814b nvme_reset_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x02652104 nvme_change_ctrl_state +EXPORT_SYMBOL_GPL drivers/nvdimm/nd_virtio 0x78ea4ad6 virtio_pmem_host_ack +EXPORT_SYMBOL_GPL drivers/nvdimm/nd_virtio 0xf493b9ff async_pmem_flush +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x00b8e690 nvme_enable_ctrl EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x02fc8d7f __tracepoint_nvme_sq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x08dbc486 nvme_complete_rq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0c6985f4 nvme_delete_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x15c9442c nvme_fail_nonready_command -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x16660f0f nvme_cancel_tagset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1dc5a838 nvme_complete_async_event -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x216c1009 nvme_setup_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2a41ae01 nvme_cancel_admin_tagset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2a6b1123 nvme_start_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x34a79312 __traceiter_nvme_sq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x36365282 nvme_sync_io_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x07a438d8 nvme_stop_keep_alive +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x097891d3 nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x09b9aee7 nvme_disable_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0e6cabaa nvme_init_ctrl_finish +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x10ee8f2a nvme_wait_freeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1383ebc5 nvme_remove_namespaces +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x22ee4eea nvme_start_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x266cf669 nvme_fail_nonready_command EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3bf2393a __SCT__tp_func_nvme_sq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3ead55e7 nvme_unfreeze -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x40cfb544 nvme_submit_sync_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x416be482 nvme_init_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3e19a500 nvme_stop_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x47f2b4f6 nvme_wait_freeze_timeout EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x49224181 nvme_reset_wq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x505bb5e1 __nvme_check_ready -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x647d26e7 nvme_alloc_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x4fa395f1 nvme_complete_rq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x546c3762 nvme_kill_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x5d95b7c1 nvme_init_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x601c80cd nvme_complete_async_event EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x64b62862 nvme_wq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x6f0d93fd nvme_set_features -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x700e3479 nvme_init_ctrl_finish -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x72135b21 nvme_enable_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7430f2d1 nvme_kill_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x812fc3ad nvme_stop_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x6a3e824f nvme_change_ctrl_state +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x71163724 nvme_uninit_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x75475ba4 nvme_setup_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x75fc9b1c nvme_start_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7d67408f nvme_try_sched_reset EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x813cf212 nvme_io_timeout -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x81a7340a nvme_disable_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x839cfeda nvme_start_freeze -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x843fbecf nvme_uninit_ctrl EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8a9c70ed nvme_sec_submit -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8bac2a1b nvme_get_features -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x9539e70c nvme_wait_freeze_timeout -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa98296b5 nvme_try_sched_reset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb518d9f6 nvme_stop_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc2576b74 __nvme_submit_sync_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc338b959 nvme_cleanup_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8b3592ed __nvme_check_ready +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x930f9b4e nvme_shutdown_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x9bb67adc nvme_stop_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x9d5709d3 nvme_cancel_admin_tagset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa4b6a56d nvme_alloc_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xae865acf nvme_cancel_tagset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb1afb7af nvme_cancel_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb2c13d40 nvme_set_queue_count +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb35f2d3d nvme_get_features +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc125f835 nvme_reset_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc3036be9 nvme_delete_ctrl EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc991c03f __SCK__tp_func_nvme_sq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xcb3c26b2 nvme_set_queue_count -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd3ffbc30 nvme_wait_freeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xcaf1b839 __nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd2cba61f nvme_host_path_error 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 0xdd7b68d2 nvme_cancel_request -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe8df2706 nvme_start_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xea7ec478 nvme_sync_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xeb636686 nvme_stop_keep_alive -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xec8bd022 nvme_wait_reset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf48900b7 nvme_remove_namespaces -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf54cd34f nvme_shutdown_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xfa43e591 nvme_host_path_error -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x0ff1612d nvmf_unregister_transport -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x272919db nvmf_reg_read64 -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x41bb744c nvmf_ip_options_match -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x4efde4d8 nvmf_reg_read32 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xda939d77 nvme_start_freeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xdb06d39a nvme_sync_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xdf270de6 nvme_unfreeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf8c8c6d8 __traceiter_nvme_sq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xfd30a12e nvme_set_features +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xfd7033d1 nvme_sync_io_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xfe821c01 nvme_wait_reset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xfee5bc78 nvme_cleanup_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x0567f12c nvmf_connect_admin_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x35d53e05 nvmf_ip_options_match +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x39e48e90 nvmf_register_transport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x3e0448bc nvmf_reg_write32 EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x51c659eb nvmf_free_options -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x6b0e6d85 nvmf_connect_admin_queue -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x9877811f nvmf_connect_io_queue -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x9f46af1b nvmf_get_address -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xaf0bd2c9 nvmf_should_reconnect -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xe5fe196b nvmf_register_transport -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xe9ff7b31 nvmf_reg_write32 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x6342744c nvmf_reg_read64 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x6f6a212d nvmf_reg_read32 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xbcef80a8 nvmf_connect_io_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xcea56cfb nvmf_unregister_transport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xd1db6e90 nvmf_get_address +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xec6cadc1 nvmf_should_reconnect EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x0d12e564 nvme_fc_register_remoteport EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x3884f8b8 nvme_fc_unregister_localport EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x3e33ac54 nvme_fc_rescan_remoteport EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x8a9cf5a7 nvme_fc_set_remoteport_devloss -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x9a2dc1bb nvme_fc_register_localport EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0xbb0e18a6 nvme_fc_rcv_ls_req +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0xdbdae2b1 nvme_fc_register_localport EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0xfca9dc99 nvme_fc_unregister_remoteport -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x01f93fc8 nvmet_req_complete -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x12db4114 nvmet_sq_init -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x2881fcae nvmet_check_transfer_len -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x4a06e77e nvmet_req_alloc_sgls -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x7a03e22f nvmet_req_free_sgls -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x85abb1b6 nvmet_req_uninit -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x87f3e9a3 nvmet_sq_destroy -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xa9c1f1b3 nvmet_unregister_transport -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xb1113872 nvmet_req_init -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xfc6527d1 nvmet_register_transport -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xff552881 nvmet_ctrl_fatal_error +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x1904fbd7 nvmet_sq_destroy +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x1c1facdc nvmet_req_complete +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x3e0ef07a nvmet_wq +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x45daed82 nvmet_req_init +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x4f5eba46 nvmet_ctrl_fatal_error +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x69377436 nvmet_unregister_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x78b83fae nvmet_req_uninit +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x8adb8c57 nvmet_register_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xbdc8ad65 nvmet_req_alloc_sgls +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xd84f70f0 nvmet_check_transfer_len +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xd99c60d9 nvmet_sq_init +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xdc8f6466 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 0x1048b92a nvmet_fc_rcv_fcp_req -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x41ba9d87 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 0x75ab090e nvmet_fc_register_targetport EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x7fa5302a nvmet_fc_rcv_fcp_abort EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x9ef76d99 nvmet_fc_unregister_targetport EXPORT_SYMBOL_GPL drivers/pci/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 0x2f4b7ba2 switchtec_class -EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0x59a30a81 mcp23x08_regmap -EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0x69d8ae6e mcp23x17_regmap -EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0xb979afc4 mcp23s08_probe_one -EXPORT_SYMBOL_GPL drivers/platform/chrome/cros-ec-sensorhub 0x63af1bba cros_ec_sensorhub_unregister_push_data -EXPORT_SYMBOL_GPL drivers/platform/chrome/cros-ec-sensorhub 0xe361e59f cros_ec_sensorhub_register_push_data +EXPORT_SYMBOL_GPL drivers/pci/switch/switchtec 0x40866c92 switchtec_class +EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0x0a398138 mcp23s08_probe_one +EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0xdc841e85 mcp23x17_regmap +EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0xecffba6a mcp23x08_regmap +EXPORT_SYMBOL_GPL drivers/platform/chrome/cros-ec-sensorhub 0x6b5f332b cros_ec_sensorhub_unregister_push_data +EXPORT_SYMBOL_GPL drivers/platform/chrome/cros-ec-sensorhub 0xc1ad1221 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 0x1b279dab wilco_ec_mailbox +EXPORT_SYMBOL_GPL drivers/platform/chrome/wilco_ec/wilco_ec 0x16f6bc11 wilco_ec_mailbox EXPORT_SYMBOL_GPL drivers/platform/chrome/wilco_ec/wilco_ec 0x24eef51f wilco_ec_get_byte_property EXPORT_SYMBOL_GPL drivers/platform/chrome/wilco_ec/wilco_ec 0x75bf4d33 wilco_ec_get_property EXPORT_SYMBOL_GPL drivers/platform/chrome/wilco_ec/wilco_ec 0x8b8ae425 wilco_ec_set_byte_property -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x096d7179 ssam_device_get_match_data -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x113b6ecc ssam_device_type -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x1a9e767b ssam_request_sync -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x264a3932 __ssam_device_driver_register -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x30391902 ssam_notifier_register -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x3374add5 ssam_request_sync_with_buffer -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x3e7dc928 ssam_controller_event_enable -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x4382c67f ssam_controller_event_disable -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x45ec2672 ssam_device_get_match -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x4a2a7e35 ssam_request_sync_alloc -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x4aef5341 ssam_controller_put -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x5158f323 ssam_device_add -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x57b538c6 ssh_packet_put -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x600c7e71 ssam_device_driver_unregister -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x61e8cba0 ssam_controller_get -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x69fcddb8 ssam_device_alloc -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x75f9c42e ssam_get_controller -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x8900d347 ssam_controller_stateunlock -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x8b8cf595 ssam_device_remove -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x942a0a46 ssam_request_sync_free -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x98a033c8 ssam_request_sync_init -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x9a6dee2a ssam_client_link -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x9d92e234 ssam_controller_device +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x01b138c3 ssam_request_sync_alloc +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x028ce92b ssam_device_remove +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x1d7519e3 ssam_controller_put +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x2c37e33c ssam_request_write_data +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x4676552e ssam_controller_device +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x4bfd91db ssam_request_sync +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x4cba91c5 ssam_controller_event_disable +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x5b5efbac ssam_device_type +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x5e15e55c ssam_device_get_match_data +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x6f24e4e5 ssam_client_bind +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x7c2c1ca7 ssam_request_sync_free +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x8438e569 ssam_controller_statelock +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x853b38bb ssam_request_sync_init +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x8567c956 ssam_notifier_register +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x870bf078 ssam_controller_event_enable +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x89f63121 ssam_get_controller +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x8b562add __ssam_device_driver_register +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x9c4ee5c5 ssam_controller_get +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xb63bb781 ssh_packet_get +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xc0a36ec6 ssam_device_get_match EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xc2bd582d ssam_device_id_match -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xc4c37362 ssam_bus_type -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xc985560a ssam_request_write_data -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xe1d159ba ssam_request_sync_submit -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xe54f8b30 ssh_packet_get -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xf283a378 ssam_notifier_unregister -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xfc4a0962 ssam_controller_statelock -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xfcd0ecbe ssam_client_bind +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xcbceea5d ssam_request_sync_with_buffer +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xddc5157e ssam_device_add +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xdfead26c ssam_bus_type +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xe3e084e8 ssam_controller_stateunlock +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xeae57c25 ssam_device_alloc +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xf10b94e4 ssam_device_driver_unregister +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xf42c653d ssh_packet_put +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xf4483099 ssam_request_sync_submit +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xf7513f02 ssam_notifier_unregister +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xff8d843d ssam_client_link EXPORT_SYMBOL_GPL drivers/platform/surface/surface_acpi_notify 0x48cf4c48 san_dgpu_notifier_register +EXPORT_SYMBOL_GPL drivers/platform/surface/surface_acpi_notify 0x89db37be 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 0xdbf00818 san_client_link +EXPORT_SYMBOL_GPL drivers/platform/x86/asus-wmi 0x1646b17b asus_wmi_unregister_driver EXPORT_SYMBOL_GPL drivers/platform/x86/asus-wmi 0x57c46ceb asus_wmi_evaluate_method -EXPORT_SYMBOL_GPL drivers/platform/x86/asus-wmi 0x96bbff62 asus_wmi_register_driver -EXPORT_SYMBOL_GPL drivers/platform/x86/asus-wmi 0xa02098b7 asus_wmi_unregister_driver +EXPORT_SYMBOL_GPL drivers/platform/x86/asus-wmi 0xef49f3ca asus_wmi_register_driver 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 0x2e999ee4 dell_smbios_call_filter +EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-smbios 0x248d7587 dell_smbios_register_device +EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-smbios 0x39596c08 dell_smbios_unregister_device EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-smbios 0x45170471 dell_smbios_call +EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-smbios 0x54cba680 dell_smbios_call_filter EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-smbios 0x7fd2ce06 dell_smbios_find_token -EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-smbios 0x961bdddb dell_smbios_register_device EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-smbios 0xb9400dbf dell_laptop_call_notifier EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-smbios 0xc2871e79 dell_smbios_error -EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-smbios 0xd541fff4 dell_smbios_unregister_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 @@ -16190,15 +16242,15 @@ EXPORT_SYMBOL_GPL drivers/platform/x86/firmware_attributes_class 0x4f63c5af 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 0x22c9ec83 intel_pmt_is_early_client_hw -EXPORT_SYMBOL_GPL drivers/platform/x86/intel/pmt/pmt_class 0x2a32c56d intel_pmt_dev_create -EXPORT_SYMBOL_GPL drivers/platform/x86/intel/pmt/pmt_class 0xd0fe37c2 intel_pmt_dev_destroy +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/pmt/pmt_class 0x0cd00b64 intel_pmt_dev_destroy +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/pmt/pmt_class 0xc84145ff intel_pmt_dev_create +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/pmt/pmt_class 0xf47bab7d intel_pmt_is_early_client_hw 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 0x09a0d08e isst_if_get_pci_dev EXPORT_SYMBOL_GPL drivers/platform/x86/intel/speed_select_if/isst_if_common 0x58a8261f isst_if_mbox_cmd_invalid +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/speed_select_if/isst_if_common 0x65dd757d isst_if_get_pci_dev EXPORT_SYMBOL_GPL drivers/platform/x86/intel/speed_select_if/isst_if_common 0x861369f8 isst_resume_common EXPORT_SYMBOL_GPL drivers/platform/x86/intel/speed_select_if/isst_if_common 0x9a5c38f2 isst_store_cmd -EXPORT_SYMBOL_GPL drivers/platform/x86/intel/speed_select_if/isst_if_common 0xaefc3fa2 isst_if_cdev_register +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/speed_select_if/isst_if_common 0xbf1c2de3 isst_if_cdev_register EXPORT_SYMBOL_GPL drivers/platform/x86/intel/speed_select_if/isst_if_common 0xe18f42a5 isst_if_cdev_unregister EXPORT_SYMBOL_GPL drivers/platform/x86/intel/telemetry/intel_telemetry_core 0x1c7565c2 telemetry_read_events EXPORT_SYMBOL_GPL drivers/platform/x86/intel/telemetry/intel_telemetry_core 0x35db93a6 telemetry_get_trace_verbosity @@ -16222,106 +16274,106 @@ 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 0x2230a7d6 wmidev_evaluate_method +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0x37ae2917 set_required_buffer_size EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0x6068bedf wmi_evaluate_method EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0x76ae31fd wmi_remove_notify_handler -EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0x80a3a449 wmidev_evaluate_method -EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0x9fea9be4 wmidev_block_query 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 0xeb44c0b3 set_required_buffer_size EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xf18bdd75 wmi_install_notify_handler -EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0x137c4292 bq27xxx_battery_setup -EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0x2544205d bq27xxx_battery_teardown -EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0x5773c02d bq27xxx_battery_update -EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x4b3f5a32 pcf50633_mbc_get_status -EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x8421cc09 pcf50633_mbc_usb_curlim_set -EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0xc70c5c77 pcf50633_mbc_get_usb_online_status -EXPORT_SYMBOL_GPL drivers/powercap/intel_rapl_common 0x1e41f826 rapl_remove_package -EXPORT_SYMBOL_GPL drivers/powercap/intel_rapl_common 0x3252488e rapl_find_package_domain -EXPORT_SYMBOL_GPL drivers/powercap/intel_rapl_common 0xad611cb2 rapl_add_package -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xb8f19370 mc13xxx_fixed_regulator_ops -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xd30b4c7e mc13xxx_regulator_ops -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xfeec671e mc13xxx_fixed_regulator_set_voltage -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x447aa389 wm8350_dcdc_set_slot -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x4f9191b7 wm8350_dcdc25_set_mode -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x98f6a5c5 wm8350_ldo_set_slot -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x9bdd8b13 wm8350_register_regulator -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xd27b98fb wm8350_register_led -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xf98dd800 wm8350_isink_set_flash -EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0x4cf96a74 wm8400_register_regulator +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xfa9afbcc wmidev_block_query +EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0x2889b08e bq27xxx_battery_setup +EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0x715162d7 bq27xxx_battery_teardown +EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0xf35be6ef bq27xxx_battery_update +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x61532508 pcf50633_mbc_get_usb_online_status +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0xbb9b6865 pcf50633_mbc_usb_curlim_set +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0xd0f9c855 pcf50633_mbc_get_status +EXPORT_SYMBOL_GPL drivers/powercap/intel_rapl_common 0x8929e4d4 rapl_find_package_domain +EXPORT_SYMBOL_GPL drivers/powercap/intel_rapl_common 0x991e1aa5 rapl_add_package +EXPORT_SYMBOL_GPL drivers/powercap/intel_rapl_common 0xcd22a403 rapl_remove_package +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x67c9d3a2 mc13xxx_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x90488fa4 mc13xxx_fixed_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xe50a1010 mc13xxx_fixed_regulator_set_voltage +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x0d9685ed wm8350_dcdc25_set_mode +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x57c2ec88 wm8350_dcdc_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x630b3153 wm8350_ldo_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xc597ea54 wm8350_isink_set_flash +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xd86ceb34 wm8350_register_regulator +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xff0b32ad wm8350_register_led +EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0x97e9ae9a wm8400_register_regulator EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0x149236da qcom_glink_native_remove -EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0xe082b259 qcom_glink_native_probe +EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0x609d9132 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 0x076cdb9d cxgbi_device_find_by_lldev -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0bcf1eb4 cxgbi_sock_rcv_close_conn_rpl -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0e4e75d7 cxgbi_get_ep_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x12324452 cxgbi_parse_pdu_itt -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x17a5548f cxgbi_sock_closed -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1ad4384a cxgbi_cleanup_task -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x21da9db2 cxgbi_sock_act_open_req_arp_failure -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x29e275eb cxgbi_set_conn_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2a18d7f1 cxgbi_bind_conn -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x30e00217 cxgbi_set_host_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3b9f3c89 cxgbi_device_portmap_cleanup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3e27d9d4 cxgbi_sock_rcv_peer_close -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4aae7165 cxgbi_device_find_by_netdev -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4cceb803 cxgbi_ep_connect -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x54ee9738 cxgbi_conn_xmit_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5b48b444 cxgbi_hbas_add -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5cf49824 cxgbi_device_portmap_create -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5f02d6ab cxgbi_ep_disconnect -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x693ea8e9 cxgbi_sock_check_wr_invariants -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6a03fde8 cxgbi_device_register +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0a018e06 cxgbi_iscsi_init +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0c29244e cxgbi_sock_rcv_close_conn_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1473e95d cxgbi_hbas_remove +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1819aee4 cxgbi_sock_rcv_abort_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1dd50177 cxgbi_sock_act_open_req_arp_failure +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x25833bf0 cxgbi_hbas_add +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x36615c89 cxgbi_conn_pdu_ready +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x382a81b5 cxgbi_sock_free_cpl_skbs +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3a881817 cxgbi_sock_purge_wr_queue +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4ed64d2f cxgbi_device_find_by_lldev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4ee6812e cxgbi_parse_pdu_itt +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x501700db cxgbi_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x512259cb cxgbi_sock_select_mss +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x517ae67f cxgbi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x593f70b8 cxgbi_sock_established +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5b99387b cxgbi_sock_skb_entail +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x60c534ac cxgbi_sock_fail_act_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x65e1c06f cxgbi_device_find_by_netdev_rcu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x65f9255f cxgbi_conn_tx_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7765e15e cxgbi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x79f8ef82 cxgbi_get_ep_param EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fdb6004 cxgbi_device_unregister_all -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8046fd52 cxgbi_create_session -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8641511a cxgbi_sock_rcv_wr_ack -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8662e6cf cxgbi_iscsi_init -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8bd5fb47 cxgbi_ddp_ppm_setup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x96fe3bde cxgbi_device_unregister -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa96a843f cxgbi_sock_free_cpl_skbs -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xab219139 cxgbi_conn_init_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xae784ceb cxgbi_sock_fail_act_open -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb16ec2aa cxgbi_sock_skb_entail -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb29adb7e cxgbi_conn_alloc_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb5805457 cxgbi_sock_established +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x808388c7 cxgbi_device_portmap_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x86956481 cxgbi_device_portmap_create +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8da4352c cxgbi_get_conn_stats +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8f4332fe cxgbi_sock_rcv_wr_ack +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x94469ccb cxgbi_conn_init_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x99a13f38 cxgbi_ep_poll +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa8b8e48b cxgbi_conn_xmit_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa8d32114 cxgbi_device_register +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa926150b cxgbi_get_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb724da2d cxgbi_sock_rcv_peer_close +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbc635b3d cxgbi_set_host_param EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc011af75 cxgbi_ddp_set_one_ppod -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc03de6eb cxgbi_device_find_by_netdev_rcu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xce3c3d88 cxgbi_conn_pdu_ready -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd325a57c cxgbi_get_host_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe0a8b9a4 cxgbi_conn_tx_open -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xec77582b cxgbi_ep_poll +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc52f7a6d cxgbi_conn_alloc_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xce5eab88 cxgbi_ddp_ppm_setup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd084c1e8 cxgbi_device_find_by_netdev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd089f4e7 cxgbi_set_conn_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd48a90e8 cxgbi_device_unregister +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdae80f70 cxgbi_bind_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdbd2ef93 cxgbi_ep_disconnect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdbeadfb0 cxgbi_ep_connect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdd4ba357 cxgbi_sock_check_wr_invariants EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xef346615 cxgbi_attr_is_visible -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf0f61103 cxgbi_get_conn_stats -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf577977c cxgbi_iscsi_cleanup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf8d02f40 cxgbi_destroy_session -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf9296385 cxgbi_sock_rcv_abort_rpl -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xfa5ef5b7 cxgbi_sock_select_mss -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xfc380fee cxgbi_create_conn -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xfd096e96 cxgbi_sock_purge_wr_queue -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xfe203167 cxgbi_hbas_remove -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0b51614c fcoe_validate_vport_create -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x1d3259db fcoe_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x1d6b0956 fcoe_get_paged_crc_eof -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x2b4d5eb1 fcoe_ctlr_device_delete -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x4f69cca3 fcoe_ctlr_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x69e54810 fcoe_check_wait_queue -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x7aaae5da fcoe_libfc_config -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x7e92994b fcoe_wwn_from_mac -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x80cd0c74 fcoe_ctlr_device_add -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xa0be27c1 fcoe_link_speed_update +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xfd2d3905 cxgbi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xfd9194c9 cxgbi_sock_closed +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xffcde7b0 cxgbi_iscsi_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x03ab6f3e fcoe_get_wwn +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x1119a037 fcoe_fcf_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x13a0ab84 fcoe_validate_vport_create +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x27c24923 fcoe_fc_crc +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x3ff2bf4d fcoe_ctlr_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x41e1f054 fcoe_link_speed_update +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x4b943128 fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x66584df8 fcoe_libfc_config +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x77f6d08c fcoe_clean_pending_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x793d5d55 fcoe_fcf_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x85fb3440 fcoe_start_io +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x90cb3ac2 __fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x9e97152c fcoe_ctlr_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xa1e203d5 fcoe_get_paged_crc_eof EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xbac58840 fcoe_queue_timer -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xbf8a2761 fcoe_fcf_device_delete -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xc4c63f97 fcoe_clean_pending_queue -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xc5397116 __fcoe_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xd4287c71 fcoe_fc_crc -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xe7cff863 fcoe_fcf_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xc3f30cc0 fcoe_wwn_from_mac +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xe02c6d05 fcoe_check_wait_queue EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf167cb7a fcoe_wwn_to_str -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf627d97d fcoe_get_wwn -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xfe916a56 fcoe_start_io -EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0x93fb2996 fdomain_create -EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0xf5978da7 fdomain_destroy +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf8890a18 fcoe_ctlr_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0x198e05e4 fdomain_destroy +EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0xcd0a8c6a fdomain_create EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x16b11127 iscsi_boot_create_kset EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x1cad663e iscsi_boot_create_ethernet EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x748654c5 iscsi_boot_create_initiator @@ -16330,309 +16382,309 @@ EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xbefe618c iscsi_boot_destroy_kset EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xea29c8ae iscsi_boot_create_target EXPORT_SYMBOL_GPL drivers/scsi/libfc/libfc 0x66f43542 fc_seq_els_rsp_send -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x00fc5f53 iscsi_prep_data_out_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x043705b3 iscsi_eh_cmd_timed_out -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0cd685a7 iscsi_conn_unbind -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0fb6fa86 __iscsi_put_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1073095f iscsi_conn_queue_work +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x019708b8 iscsi_session_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x066e453d iscsi_eh_recover_target +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x06ff7ba2 iscsi_conn_send_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0ae443ee iscsi_eh_cmd_timed_out +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0fa73f2a iscsi_suspend_tx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1137260e iscsi_itt_to_task EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1bbc8ce5 iscsi_verify_itt -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1bf09eda iscsi_complete_scsi_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x228d5afd iscsi_put_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x294f3e48 iscsi_host_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3550b859 __iscsi_complete_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3785fac7 iscsi_conn_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3934e52b iscsi_session_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x15608990 iscsi_prep_data_out_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x15d05d65 iscsi_complete_scsi_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x17103c08 iscsi_session_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1cafc8b7 iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1ec5fe3f iscsi_eh_session_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x22b66bea iscsi_conn_start +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x26e679dd iscsi_update_cmdsn +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2ffac515 iscsi_session_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x39765db3 iscsi_conn_stop +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3acbc5be iscsi_queuecommand EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x46b8804c iscsi_itt_to_ctask -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4c6478de iscsi_host_set_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4fdf0da4 iscsi_conn_stop -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x51bd76e7 iscsi_conn_start -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x575669c2 iscsi_host_add -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5aa0b84f iscsi_session_failure -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x70bf075b iscsi_host_get_max_scsi_cmds -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x76257b11 iscsi_itt_to_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7d46a222 iscsi_host_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7ee5b44b iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x40da0b5f iscsi_suspend_queue +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x434107c7 iscsi_host_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x504628db iscsi_host_get_max_scsi_cmds +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x54d55457 iscsi_session_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5af2269f iscsi_conn_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x678c34c8 iscsi_conn_queue_work +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x67a08059 iscsi_host_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x74b26999 iscsi_host_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x78a6c9ef iscsi_conn_bind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8155f11b iscsi_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x816789f2 iscsi_session_recovery_timedout +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8537aa15 iscsi_eh_device_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8cb8133a iscsi_conn_teardown EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x934b34cb iscsi_conn_failure -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x936f1eb6 iscsi_target_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9de611ef __iscsi_get_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9f7e9d51 iscsi_update_cmdsn -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa78ca2d4 iscsi_session_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa7acddc5 iscsi_eh_recover_target -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xae392de7 iscsi_queuecommand -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb8469b82 iscsi_suspend_tx -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb85358c4 iscsi_host_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb9eb2e57 iscsi_session_recovery_timedout -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc28f9e2b iscsi_session_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc49070de iscsi_eh_abort -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc5797138 iscsi_conn_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc871ad26 iscsi_conn_send_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xceed841e iscsi_conn_bind -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd67a38f4 iscsi_eh_device_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe768bebc iscsi_eh_session_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x97bc137d iscsi_conn_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x98733bb1 iscsi_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa104b6e4 iscsi_host_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa88efe6c iscsi_host_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa9b85c99 __iscsi_get_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xad697cfa iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb1635223 iscsi_conn_unbind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb5e079ef __iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc8e7dce8 __iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcbd79fe4 iscsi_itt_to_ctask +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd3fef2cf iscsi_requeue_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd413a1d7 iscsi_verify_itt +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd60af5c7 iscsi_eh_abort EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeab9cbd5 iscsi_conn_get_addr_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xecc9eb68 iscsi_set_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf34a3d92 iscsi_requeue_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf516e213 iscsi_suspend_queue -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf84c7551 iscsi_conn_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfd424516 iscsi_host_remove -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x01e28d75 iscsi_tcp_segment_unmap -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x03786a31 iscsi_tcp_r2tpool_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x04326f88 iscsi_tcp_set_max_r2t -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x063c1a6e iscsi_tcp_hdr_recv_prep -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x0fa1cd89 iscsi_tcp_task_xmit -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x18da113c iscsi_tcp_segment_done -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x21c53abf iscsi_segment_seek_sg -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x366490f9 iscsi_tcp_task_init -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x55971ef2 iscsi_tcp_dgst_header -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x626f2b7b iscsi_tcp_recv_skb -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x7ebc535a iscsi_segment_init_linear -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xb8711338 iscsi_tcp_cleanup_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xbd32ab09 iscsi_tcp_conn_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xed001522 iscsi_tcp_conn_get_stats -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xed3f633b iscsi_tcp_conn_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xf3ed9ca6 iscsi_tcp_r2tpool_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xf6cbeba6 iscsi_tcp_recv_segment_is_hdr -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0ec0dd64 sas_eh_device_reset_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x13fc4bf1 sas_phy_reset -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1b1dfc4f sas_target_destroy -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x366d008e sas_register_ha -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3787cb5c sas_unregister_ha -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x39c47500 sas_get_local_phy -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3f5b6959 sas_ioctl -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3faa3152 sas_alloc_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x417ee2f7 sas_drain_work -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x44d0ce94 sas_notify_phy_event -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4d17a584 sas_alloc_slow_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4d77f756 sas_change_queue_depth -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5792d1b7 sas_bios_param -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x648564d8 sas_notify_port_event -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x686ef6ff sas_domain_attach_transport -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x768587a1 dev_attr_phy_event_threshold -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x76bb48a6 sas_slave_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7b17e968 sas_slave_configure -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x829d20c2 sas_eh_abort_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8a406a58 sas_task_abort -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9210883c sas_request_addr -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xaac02405 sas_eh_target_reset_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xcae45ba6 sas_ssp_task_response -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xda9d159f sas_free_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe3a4da78 sas_ata_schedule_reset -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe4f570d3 sas_queuecommand -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf1c496f1 sas_target_alloc -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_fc 0x57d8f746 fc_eh_should_retry_cmd -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x003dd43c __SCK__tp_func_iscsi_dbg_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x02e426c4 iscsi_destroy_iface -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x038c12bc iscsi_create_flashnode_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0da811c8 __SCK__tp_func_iscsi_dbg_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0df1d1af iscsi_destroy_all_flashnode -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x12a67591 iscsi_find_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf51aaa6f iscsi_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf6e0388c iscsi_host_add +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x023d8fe2 iscsi_tcp_set_max_r2t +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x2e4264a2 iscsi_tcp_dgst_header +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x374771d0 iscsi_tcp_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x4b2e9c48 iscsi_tcp_task_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x5347d261 iscsi_tcp_segment_done +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x53d38912 iscsi_segment_seek_sg +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x56e4ccb5 iscsi_tcp_r2tpool_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x5d5246ee iscsi_tcp_r2tpool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x7086e6ee iscsi_segment_init_linear +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x76ca1b22 iscsi_tcp_hdr_recv_prep +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x7ed90e5c iscsi_tcp_task_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x8b0765f0 iscsi_tcp_segment_unmap +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x929327e8 iscsi_tcp_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xaa2d4377 iscsi_tcp_recv_segment_is_hdr +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xc8ae25dd iscsi_tcp_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xe8b9e01f iscsi_tcp_conn_get_stats +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xedfc75ff iscsi_tcp_recv_skb +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0d8da56b sas_domain_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x18ee378b sas_slave_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x19eea680 sas_target_destroy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1dbd10a6 sas_eh_device_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3b3e307a sas_get_local_phy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4578320d sas_request_addr +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x46de2a60 sas_change_queue_depth +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5a423a61 sas_notify_phy_event +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x65fd690d sas_ata_schedule_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x679504aa sas_alloc_slow_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7175c683 sas_ssp_task_response +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x777a3831 sas_notify_port_event +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7f57b0ee sas_eh_target_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x90d5e1d2 sas_free_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x950a48c5 sas_bios_param +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa0209852 dev_attr_phy_event_threshold +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa24a7324 sas_alloc_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa33ce3ff sas_drain_work +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa3fd4030 sas_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xca8b1069 sas_eh_abort_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd2d858c8 sas_unregister_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd7582302 sas_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe112e2ef sas_ioctl +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xeba64ec7 sas_task_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xec6c336c sas_register_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf9fa6a65 sas_phy_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xfb62ac57 sas_slave_configure +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_fc 0x61d27114 fc_eh_should_retry_cmd EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x15dc8bab __SCT__tp_func_iscsi_dbg_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1b1776c2 __SCK__tp_func_iscsi_dbg_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x227a2e37 iscsi_lookup_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x250439cf __traceiter_iscsi_dbg_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2bb934dc iscsi_get_port_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2c14e9d4 __tracepoint_iscsi_dbg_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2eee738a iscsi_register_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x330f9637 iscsi_alloc_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x344e7961 iscsi_ping_comp_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x34d44c0a iscsi_scan_finished -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3bd79106 iscsi_host_for_each_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4036eb83 iscsi_unregister_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4c40387f __SCK__tp_func_iscsi_dbg_sw_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4fe3e8f0 iscsi_flashnode_bus_match +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1d529a26 __SCK__tp_func_iscsi_dbg_sw_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1f1e1138 iscsi_create_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1f4eea3a __SCK__tp_func_iscsi_dbg_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2124968e iscsi_destroy_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x238f0919 iscsi_lookup_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x29487f7c __traceiter_iscsi_dbg_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2dbccb10 iscsi_destroy_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3464007b __traceiter_iscsi_dbg_sw_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x358d9a23 __tracepoint_iscsi_dbg_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3a278de9 iscsi_post_host_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x400d480c iscsi_get_port_speed_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x418aae80 iscsi_session_chkready +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4905cc79 iscsi_unregister_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4df227d0 iscsi_create_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4fd4a032 iscsi_conn_error_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x50982af1 iscsi_add_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x50ead876 iscsi_scan_finished +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5181baab iscsi_find_flashnode_conn EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x52575134 __SCT__tp_func_iscsi_dbg_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x54ea5c15 iscsi_post_host_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5623eec5 iscsi_block_scsi_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x57666ec0 __tracepoint_iscsi_dbg_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5fa9ff11 iscsi_find_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x64927cdc iscsi_create_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x67291e47 iscsi_conn_error_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x67a11309 __traceiter_iscsi_dbg_sw_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x67b008a8 __tracepoint_iscsi_dbg_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x52afd928 iscsi_destroy_all_flashnode +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x56924cc5 iscsi_flashnode_bus_match +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5d86f2b1 __SCK__tp_func_iscsi_dbg_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x68be521b iscsi_find_flashnode_sess EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x699fe53e iscsi_get_discovery_parent_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x795750c7 iscsi_put_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7dadb476 __traceiter_iscsi_dbg_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6ae9df1a iscsi_alloc_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6c40c7de iscsi_block_scsi_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6e13c27a iscsi_free_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6e83f3cc iscsi_get_port_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x715f50ee iscsi_get_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7355ba06 iscsi_conn_login_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x74f88284 __SCK__tp_func_iscsi_dbg_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x78f69887 iscsi_put_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7995fe78 __tracepoint_iscsi_dbg_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x818363d9 iscsi_destroy_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x83ba54dd iscsi_host_for_each_session EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x84a005f1 iscsi_get_router_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x86bb9587 iscsi_dbg_trace -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x88aad5ba __tracepoint_iscsi_dbg_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8b65aed5 iscsi_recv_pdu -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8f0562c8 iscsi_destroy_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x98480c59 __SCK__tp_func_iscsi_dbg_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9d85e363 __traceiter_iscsi_dbg_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa262df79 iscsi_create_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa79e2e88 __traceiter_iscsi_dbg_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa7cb8adb iscsi_get_port_speed_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x857297dd iscsi_block_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8836026b iscsi_is_session_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8843d722 iscsi_session_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x90d08005 __tracepoint_iscsi_dbg_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa2d3e9c4 __traceiter_iscsi_dbg_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa2fc5fbf __traceiter_iscsi_dbg_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa397f857 iscsi_create_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa5a734d5 iscsi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa60d942c iscsi_create_flashnode_sess EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa8c4b5e1 __SCT__tp_func_iscsi_dbg_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xacdf20b6 iscsi_block_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xad935f43 iscsi_unblock_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb4be0e00 iscsi_is_session_dev -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb5f600f3 iscsi_destroy_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb8f1c653 iscsi_destroy_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xab062b4e iscsi_is_session_online +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xaf09e9b1 iscsi_recv_pdu +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb10917dd __tracepoint_iscsi_dbg_sw_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb503d276 __SCK__tp_func_iscsi_dbg_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb9760d61 __traceiter_iscsi_dbg_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb994cc16 iscsi_remove_session EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc071179 iscsi_get_ipaddress_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc86735b0 iscsi_create_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xca51385f iscsi_create_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xcc34efac iscsi_remove_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xcd1bbf29 iscsi_create_iface -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd06d669f iscsi_conn_login_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd1121cc4 iscsi_session_chkready -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdad242f7 iscsi_is_session_online +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbf1d3f0e iscsi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc0132faf iscsi_offload_mesg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc268142b iscsi_ping_comp_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc4fa3d8d iscsi_register_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc7dd6905 __tracepoint_iscsi_dbg_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xde0e33b7 iscsi_destroy_conn EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdf515c49 __SCT__tp_func_iscsi_dbg_sw_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe479aa6e __tracepoint_iscsi_dbg_sw_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe85abbec iscsi_session_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xed71cda6 iscsi_add_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf0d6e64f iscsi_put_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf20f3e52 iscsi_offload_mesg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf52d78f1 iscsi_get_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf76f1478 iscsi_free_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe0d0ed33 iscsi_dbg_trace +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe37bbad3 iscsi_unblock_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe50145b0 iscsi_put_conn EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf7e749fb __SCT__tp_func_iscsi_dbg_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x05c1a9c8 sas_disable_tlr -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x563259aa sas_is_tlr_enabled -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x84ecf3ac sas_tlr_supported -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xe1ba8c49 sas_enable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x0d448327 sas_enable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x47190501 sas_disable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x619cdc67 sas_is_tlr_enabled +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x8fddca43 sas_tlr_supported EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x0ef06974 spi_populate_ppr_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x5549cbbc spi_populate_tag_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x36ea2497 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 0x1902178a srp_tmo_valid -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x1a5f8aa6 srp_rport_add -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x5f6ff57c srp_attach_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x5f9d0440 srp_stop_rport_timers -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x93bb6d3c srp_rport_del -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xb9882e7c srp_remove_host -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xd2e8baa6 srp_release_transport -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x01e18373 ufshcd_dealloc_host -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x07f9764b ufshcd_dme_configure_adapt -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x3085365c ufshcd_hba_enable -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x3192a1ed ufshcd_config_pwr_mode -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x36fa756e ufshcd_init -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x43a65292 ufshcd_dme_get_attr -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x486c674d ufshcd_hba_stop -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x512a8912 ufshcd_make_hba_operational -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x51dcba2f ufshcd_fixup_dev_quirks -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x5efb404f ufshcd_dump_regs -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x6538d65a ufshcd_dme_set_attr -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x687b9942 ufshcd_link_recovery +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x277871f3 srp_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x89b9d6b8 srp_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xa85c7fdc srp_rport_del +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xa9cee150 srp_remove_host +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xb22b6d08 srp_stop_rport_timers +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xf3045735 srp_rport_add +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x0a3c8bb8 ufshcd_make_hba_operational +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x0a4ed609 ufshcd_hba_enable +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x17d35bed ufshcd_dealloc_host +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x2d11b490 ufshcd_hba_stop +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x2f0ac7b1 ufshcd_release +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x3616ca08 ufshcd_update_evt_hist +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x47865896 ufshcd_hold +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x4b17d690 ufshcd_config_pwr_mode +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x58c274a9 ufshcd_uic_hibern8_exit +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x6768ed1b ufshcd_remove +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x6da71cf7 ufshcd_init +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x71622a6e ufshcd_fixup_dev_quirks EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x723b1abf ufshcd_delay_us -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x75f582a7 ufshcd_resume_complete -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x7c8dd61b ufshcd_remove -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x9a95a2c3 ufshcd_release -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xc862c53c ufshcd_auto_hibern8_update -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xcdf760f2 ufshcd_update_evt_hist -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xd9ab2037 ufshcd_hold -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xdbb19634 ufshcd_suspend_prepare -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xfc2c51bb ufshcd_uic_hibern8_exit -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x2837f647 ufshcd_pltfrm_init +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x72a62b9f ufshcd_dme_get_attr +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x8990f852 ufshcd_suspend_prepare +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xaeb48620 ufshcd_resume_complete +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xaf017318 ufshcd_dme_set_attr +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xafb7d3df ufshcd_link_recovery +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xc813030b ufshcd_dump_regs +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xcbbae26e ufshcd_dme_configure_adapt +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xea2a2e44 ufshcd_auto_hibern8_update +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x47510ae4 ufshcd_pltfrm_init EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x54c946de ufshcd_init_pwr_dev_param -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xb5d99966 ufshcd_pltfrm_shutdown +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xabf6f345 ufshcd_pltfrm_shutdown EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xff85cd6b ufshcd_get_pwr_dev_param -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x29be7d5e siox_master_register -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x7d45e5fd siox_master_unregister -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x7f9e5ace __siox_driver_register -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xc0e6219b siox_device_synced -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xc1537235 siox_master_alloc -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xc4d8f4db siox_device_connected -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x025101d5 __slim_driver_register -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x07c6deb2 slim_msg_response -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x0c86a35f slim_ctrl_clk_pause -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x11cd6147 of_slim_get_device -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x222c7e9e slim_get_logical_addr -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x2ae560b5 slimbus_bus -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x3af55d3b slim_writeb -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x50aa6261 slim_free_txn_tid -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x5f72d06c slim_readb -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x63c127e5 slim_stream_enable -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x6641cee3 slim_driver_unregister -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x6b9dac23 slim_xfer_msg -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x6c37d591 slim_stream_unprepare -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x7f4c5010 slim_get_device -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x8f5a3119 slim_stream_free -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x8f933d33 slim_device_report_present -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x96f919ce slim_read -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xb267c01e slim_unregister_controller -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xb3e2e62d slim_stream_allocate -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xc9db0364 slim_stream_disable -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xd0fb85e6 slim_do_transfer -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xd4427e2b slim_write -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xe09cc579 slim_report_absent -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xed8bed1d slim_stream_prepare -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xf4c09f0a slim_alloc_txn_tid -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xfaa1d597 slim_register_controller -EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x41d1a0b2 __sdw_register_driver -EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x52c6666f sdw_bus_type -EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0xfebf2aa9 sdw_unregister_driver -EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-cadence 0x40965b59 sdw_cdns_debugfs_init -EXPORT_SYMBOL_GPL drivers/spi/spi-altera-core 0x32ec4589 altera_spi_init_master +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x00ff3ce5 siox_master_alloc +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x6688a2da __siox_driver_register +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x7a8250e6 siox_device_synced +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x96cbf5f9 siox_device_connected +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xcaebcc39 siox_master_register +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xf8c59e4b siox_master_unregister +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x0f99104d slim_msg_response +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x1c68015a slimbus_bus +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x2013737c slim_stream_allocate +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x3152e350 slim_stream_free +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x382a4a3b slim_writeb +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x406bd2fa slim_get_logical_addr +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x49eb6e16 __slim_driver_register +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x554e2c29 of_slim_get_device +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x5ebefd30 slim_alloc_txn_tid +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x63cdab7e slim_stream_prepare +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x6a9a26e8 slim_do_transfer +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x70bccefd slim_register_controller +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x73aa2bbf slim_unregister_controller +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x74495b0d slim_get_device +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x7cc37476 slim_driver_unregister +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x8aa7b5fa slim_read +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xa5015c49 slim_xfer_msg +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xa9ace01e slim_readb +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xb5a5f295 slim_write +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xc1d65665 slim_stream_unprepare +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xd95211df slim_device_report_present +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xda9f64ef slim_stream_disable +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xdbe0fe55 slim_report_absent +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xe66d13a8 slim_ctrl_clk_pause +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xf6bd7f0c slim_free_txn_tid +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xfeb31d5e slim_stream_enable +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x28dc7776 sdw_bus_type +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0xb51da347 sdw_unregister_driver +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0xc0f0db74 __sdw_register_driver +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-cadence 0xe999889b sdw_cdns_debugfs_init +EXPORT_SYMBOL_GPL drivers/spi/spi-altera-core 0x43fcfada altera_spi_init_master EXPORT_SYMBOL_GPL drivers/spi/spi-altera-core 0xb9edd149 altera_spi_irq -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x21d4419d spi_bitbang_init -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x34729188 spi_bitbang_stop -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xa52a55bf spi_bitbang_setup_transfer -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xda397122 spi_bitbang_cleanup -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xe0ac95cf spi_bitbang_setup -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xfe2f16e0 spi_bitbang_start -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x2f2f2cac dw_spi_remove_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x323babb7 dw_spi_set_cs -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x344297dc dw_spi_resume_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x42a1918c dw_spi_dma_setup_generic -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x54c8ff7a dw_spi_check_status -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x59a45e44 dw_spi_dma_setup_mfld -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x72b2ff3b dw_spi_suspend_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xa3fa5035 dw_spi_update_config -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xc52aae5e dw_spi_add_host -EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x79e9b4fc spi_test_execute_msg -EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0xaea8bc7c spi_test_run_tests -EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0xd725c3e5 spi_test_run_test -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x001933d5 __spmi_driver_register -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x0807173f spmi_register_read -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x0c5cee1b spmi_register_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x1540c3b0 spmi_ext_register_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x17ec3e44 spmi_controller_add -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x2b9ee4a9 spmi_device_remove -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x334523fb spmi_ext_register_readl -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x6b1d5d79 spmi_command_wakeup -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x724ed593 spmi_device_alloc -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x76deb04f spmi_command_reset -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x79c38618 spmi_ext_register_read -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x8493f739 spmi_controller_remove -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xa5b08bb0 spmi_command_sleep -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xac6fd13c spmi_ext_register_writel -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xbdc45967 spmi_command_shutdown -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xd29d77b1 spmi_register_zero_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xe5cd4899 spmi_controller_alloc -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xe8af9d7c spmi_device_add -EXPORT_SYMBOL_GPL drivers/ssb/ssb 0xd7111b09 ssb_pmu_spuravoid_pllupdate -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x6a982318 fieldbus_dev_area_updated -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0xab0563a3 fieldbus_dev_register -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0xaf1b843a fieldbus_dev_online_changed -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0xd9dc817e fieldbus_dev_unregister -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x3da53d1f gb_audio_apbridgea_set_rx_data_size -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x4337f7a5 gb_audio_apbridgea_prepare_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x4b82beb0 gb_audio_apbridgea_set_tx_data_size -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x5f555e08 gb_audio_apbridgea_stop_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x60056afc gb_audio_apbridgea_stop_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x6be5243f gb_audio_apbridgea_start_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x7c67c351 gb_audio_apbridgea_prepare_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x97415738 gb_audio_apbridgea_shutdown_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x9ee0a963 gb_audio_apbridgea_start_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xa81163cc gb_audio_apbridgea_shutdown_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xcd8fe1bf gb_audio_apbridgea_register_cport -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xeef069db gb_audio_apbridgea_set_config -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xf10b6b15 gb_audio_apbridgea_unregister_cport -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x0a1d0416 gb_audio_gb_disable_widget -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x1df2b59f gb_audio_gb_enable_widget -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x2faa3059 gb_audio_gb_activate_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x53aa30e6 gb_audio_gb_get_topology -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x69fc57fc gb_audio_gb_deactivate_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x6e67d61e gb_audio_gb_set_control -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x7526a213 gb_audio_gb_get_control -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x8e6bfc31 gb_audio_gb_deactivate_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x9d054c6d gb_audio_gb_set_rx_data_size -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xad9cfdbe gb_audio_gb_set_tx_data_size -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xc07c7da4 gb_audio_gb_set_pcm -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xc83d9b94 gb_audio_gb_activate_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xe324797a gb_audio_gb_get_pcm +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x03b5ef12 spi_bitbang_start +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x122f016d spi_bitbang_cleanup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x526b6524 spi_bitbang_stop +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x812d2d9e spi_bitbang_setup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xafaa0ac6 spi_bitbang_setup_transfer +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xdf2ad05f spi_bitbang_init +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x10e5946b dw_spi_dma_setup_generic +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x17c5c679 dw_spi_dma_setup_mfld +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x318ef50d dw_spi_resume_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x6a00d3d0 dw_spi_remove_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x71541098 dw_spi_suspend_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xa7210ca2 dw_spi_add_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xb9a78a6a dw_spi_update_config +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xbb7185a6 dw_spi_set_cs +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xf5f836a5 dw_spi_check_status +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x43a4ec01 spi_test_execute_msg +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x44a4f7e6 spi_test_run_tests +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0xbcc4143d spi_test_run_test +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x00c1d1bd spmi_controller_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x061719b0 spmi_controller_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x077c329d spmi_ext_register_readl +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x1c55ed63 spmi_device_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x360a2038 spmi_device_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x42919603 spmi_command_shutdown +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x5346cffe spmi_register_zero_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x78bc762f spmi_device_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x7c31a497 spmi_ext_register_writel +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x8fd29e04 spmi_ext_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x95b159bc spmi_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x981277c5 spmi_controller_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xb0c48ae4 spmi_command_wakeup +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xb0f521d3 spmi_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xbdb19126 spmi_ext_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xc9a9f4d0 __spmi_driver_register +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xf13fcccb spmi_command_sleep +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xfc52fbd4 spmi_command_reset +EXPORT_SYMBOL_GPL drivers/ssb/ssb 0x35a96e43 ssb_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x3f2fafc3 fieldbus_dev_unregister +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x92393918 fieldbus_dev_area_updated +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0xeb3e3b71 fieldbus_dev_online_changed +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0xebf3fdaa fieldbus_dev_register +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x141514dc gb_audio_apbridgea_shutdown_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x1ba84472 gb_audio_apbridgea_shutdown_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x36a6e2db gb_audio_apbridgea_set_config +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x6592a5a9 gb_audio_apbridgea_start_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x87e51b37 gb_audio_apbridgea_register_cport +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x8dbd54f9 gb_audio_apbridgea_unregister_cport +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x90eca2ab gb_audio_apbridgea_set_rx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x93deb81d gb_audio_apbridgea_start_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xc0dc3bc9 gb_audio_apbridgea_set_tx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xd0af9f13 gb_audio_apbridgea_stop_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xdf12cfbd gb_audio_apbridgea_stop_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xe723e77b gb_audio_apbridgea_prepare_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xe89eb7d5 gb_audio_apbridgea_prepare_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x27d29adb gb_audio_gb_deactivate_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x33bacf2b gb_audio_gb_deactivate_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x46fc4507 gb_audio_gb_activate_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x529410f7 gb_audio_gb_activate_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x52abae49 gb_audio_gb_get_topology +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x5728c9fd gb_audio_gb_set_pcm +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x76418288 gb_audio_gb_set_rx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x83fedb8f gb_audio_gb_set_tx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x8e909045 gb_audio_gb_set_control +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xa7f1324c gb_audio_gb_get_control +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xbe122f2d gb_audio_gb_disable_widget +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xcbfdc4d4 gb_audio_gb_get_pcm +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xf24978d5 gb_audio_gb_enable_widget EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x09bd7f9f gb_audio_manager_get_module EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x19e9e6b1 gb_audio_manager_remove_all EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x32e6391e gb_audio_manager_remove @@ -16640,533 +16692,533 @@ 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-gbphy 0x2c7adefd gb_gbphy_deregister_driver -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0x52318534 gb_gbphy_register_driver -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0x08a1d64c gb_spilib_master_init -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0x1af97973 gb_spilib_master_exit -EXPORT_SYMBOL_GPL drivers/staging/iio/addac/adt7316 0x25689325 adt7316_pm_ops -EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/i2c/atomisp-libmsrlisthelper 0x4d25899c apply_msr_data -EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/i2c/atomisp-libmsrlisthelper 0x72fc0f72 load_msr_list -EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/i2c/atomisp-libmsrlisthelper 0xc38dcc2e release_msr_list -EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/pci/atomisp_gmin_platform 0x02126507 atomisp_register_i2c_module -EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/pci/atomisp_gmin_platform 0x0ed2943f atomisp_gmin_find_subdev -EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/pci/atomisp_gmin_platform 0x283652fb atomisp_gmin_remove_subdev -EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/pci/atomisp_gmin_platform 0x491455f8 atomisp_get_platform_data -EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/pci/atomisp_gmin_platform 0x7f7974a0 gmin_camera_platform_data +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0x7b4256a7 gb_gbphy_register_driver +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0xe900b9d6 gb_gbphy_deregister_driver +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0x07116649 gb_spilib_master_init +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0x52ea16fa gb_spilib_master_exit +EXPORT_SYMBOL_GPL drivers/staging/iio/addac/adt7316 0x05555527 adt7316_pm_ops +EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/i2c/atomisp-libmsrlisthelper 0x2cb45199 load_msr_list +EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/i2c/atomisp-libmsrlisthelper 0x4ed2995a apply_msr_data +EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/i2c/atomisp-libmsrlisthelper 0xf470792e release_msr_list +EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/pci/atomisp_gmin_platform 0x0b667572 atomisp_gmin_register_vcm_control +EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/pci/atomisp_gmin_platform 0x17fe0cfa atomisp_get_platform_data +EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/pci/atomisp_gmin_platform 0x1dae54c5 atomisp_register_i2c_module +EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/pci/atomisp_gmin_platform 0x2145d0b3 atomisp_gmin_remove_subdev +EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/pci/atomisp_gmin_platform 0x332e9f4e gmin_get_var_int +EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/pci/atomisp_gmin_platform 0x45e8e688 camera_sensor_csi +EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/pci/atomisp_gmin_platform 0xa16e1c51 atomisp_gmin_find_subdev EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/pci/atomisp_gmin_platform 0xbae0e12f atomisp_get_default_camera_caps -EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/pci/atomisp_gmin_platform 0xccb94a78 camera_sensor_csi -EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/pci/atomisp_gmin_platform 0xe13c099b gmin_get_var_int -EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/pci/atomisp_gmin_platform 0xed1d9c9f atomisp_gmin_register_vcm_control -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x28bbdb8d target_init_cmd -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x2b79df90 target_submit -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x487bb4ed target_queue_submission -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x8ebfc64e target_submit_prep -EXPORT_SYMBOL_GPL drivers/tee/tee 0x030cf644 tee_client_get_version -EXPORT_SYMBOL_GPL drivers/tee/tee 0x0c5ff413 tee_shm_get_pa -EXPORT_SYMBOL_GPL drivers/tee/tee 0x0dc25501 tee_device_unregister -EXPORT_SYMBOL_GPL drivers/tee/tee 0x1194bf45 tee_shm_get_va -EXPORT_SYMBOL_GPL drivers/tee/tee 0x11c56798 tee_shm_alloc -EXPORT_SYMBOL_GPL drivers/tee/tee 0x142bd13c tee_client_open_context -EXPORT_SYMBOL_GPL drivers/tee/tee 0x25b59794 tee_shm_put -EXPORT_SYMBOL_GPL drivers/tee/tee 0x31fabacb tee_shm_alloc_kernel_buf -EXPORT_SYMBOL_GPL drivers/tee/tee 0x443dbdc7 tee_shm_get_from_id -EXPORT_SYMBOL_GPL drivers/tee/tee 0x6c9df157 tee_get_drvdata -EXPORT_SYMBOL_GPL drivers/tee/tee 0x75707422 tee_shm_pa2va -EXPORT_SYMBOL_GPL drivers/tee/tee 0x77b56d47 tee_shm_register -EXPORT_SYMBOL_GPL drivers/tee/tee 0x7aca0b2b teedev_close_context -EXPORT_SYMBOL_GPL drivers/tee/tee 0x7c52f248 tee_client_invoke_func +EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/pci/atomisp_gmin_platform 0xcbd8d1a5 gmin_camera_platform_data +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x589bea6d target_submit +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x7085a99e target_queue_submission +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x99c534a0 target_submit_prep +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xc7cf492e target_init_cmd +EXPORT_SYMBOL_GPL drivers/tee/tee 0x0d984653 tee_shm_alloc +EXPORT_SYMBOL_GPL drivers/tee/tee 0x0ec46e09 tee_get_drvdata +EXPORT_SYMBOL_GPL drivers/tee/tee 0x23805323 tee_device_register +EXPORT_SYMBOL_GPL drivers/tee/tee 0x2648c626 tee_client_get_version +EXPORT_SYMBOL_GPL drivers/tee/tee 0x35a24be4 tee_shm_alloc_kernel_buf +EXPORT_SYMBOL_GPL drivers/tee/tee 0x3bbacfd7 tee_shm_get_pa +EXPORT_SYMBOL_GPL drivers/tee/tee 0x4d02d52c tee_client_open_context +EXPORT_SYMBOL_GPL drivers/tee/tee 0x554f63c2 tee_shm_pa2va +EXPORT_SYMBOL_GPL drivers/tee/tee 0x71b46a77 tee_shm_free +EXPORT_SYMBOL_GPL drivers/tee/tee 0x77f9ea65 teedev_open +EXPORT_SYMBOL_GPL drivers/tee/tee 0x7ef185e8 tee_device_alloc +EXPORT_SYMBOL_GPL drivers/tee/tee 0x82f47460 tee_bus_type EXPORT_SYMBOL_GPL drivers/tee/tee 0x85fd9922 tee_session_calc_client_uuid -EXPORT_SYMBOL_GPL drivers/tee/tee 0x862b5f28 tee_shm_pool_mgr_alloc_res_mem -EXPORT_SYMBOL_GPL drivers/tee/tee 0x86342fac tee_shm_pool_alloc -EXPORT_SYMBOL_GPL drivers/tee/tee 0x8ac463ef tee_device_register -EXPORT_SYMBOL_GPL drivers/tee/tee 0x8def95bc tee_shm_va2pa -EXPORT_SYMBOL_GPL drivers/tee/tee 0x9caed1d3 tee_shm_pool_alloc_res_mem -EXPORT_SYMBOL_GPL drivers/tee/tee 0xab76f7be tee_client_close_session -EXPORT_SYMBOL_GPL drivers/tee/tee 0xad4666f9 tee_shm_pool_free -EXPORT_SYMBOL_GPL drivers/tee/tee 0xb126a26b tee_shm_free -EXPORT_SYMBOL_GPL drivers/tee/tee 0xb878168e tee_device_alloc -EXPORT_SYMBOL_GPL drivers/tee/tee 0xc54583dc tee_client_close_context -EXPORT_SYMBOL_GPL drivers/tee/tee 0xcc26172a tee_client_open_session -EXPORT_SYMBOL_GPL drivers/tee/tee 0xfa93a8f6 teedev_open -EXPORT_SYMBOL_GPL drivers/tee/tee 0xfee77ad7 tee_bus_type -EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/int340x_thermal_zone 0x6c8b2ca4 int340x_thermal_read_trips -EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/int340x_thermal_zone 0x7ebe25dc int340x_thermal_zone_remove -EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/int340x_thermal_zone 0xb8542eac int340x_thermal_zone_add -EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_device 0x118f6a70 proc_thermal_resume -EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_device 0x1de92765 proc_thermal_add -EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_device 0x29574b4c proc_thermal_remove -EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_device 0x82187fff proc_thermal_mmio_add -EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_device 0xe53e13ed proc_thermal_mmio_remove -EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_device 0xed67b134 proc_thermal_suspend -EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_mbox 0x29bc848f proc_thermal_mbox_add -EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_mbox 0xcc6dde4e proc_thermal_mbox_remove +EXPORT_SYMBOL_GPL drivers/tee/tee 0x937819ae tee_shm_pool_mgr_alloc_res_mem +EXPORT_SYMBOL_GPL drivers/tee/tee 0xa1e37e0f tee_shm_register +EXPORT_SYMBOL_GPL drivers/tee/tee 0xa8268bb1 tee_client_close_context +EXPORT_SYMBOL_GPL drivers/tee/tee 0xac91d781 tee_shm_pool_alloc_res_mem +EXPORT_SYMBOL_GPL drivers/tee/tee 0xb057c9da tee_shm_pool_free +EXPORT_SYMBOL_GPL drivers/tee/tee 0xccdf629b tee_client_invoke_func +EXPORT_SYMBOL_GPL drivers/tee/tee 0xce06543d tee_shm_get_va +EXPORT_SYMBOL_GPL drivers/tee/tee 0xd1fd15cc teedev_close_context +EXPORT_SYMBOL_GPL drivers/tee/tee 0xd78e92ba tee_shm_get_from_id +EXPORT_SYMBOL_GPL drivers/tee/tee 0xdb4530af tee_shm_pool_alloc +EXPORT_SYMBOL_GPL drivers/tee/tee 0xe0451a37 tee_shm_put +EXPORT_SYMBOL_GPL drivers/tee/tee 0xe05d2b00 tee_client_close_session +EXPORT_SYMBOL_GPL drivers/tee/tee 0xe41e06cb tee_shm_va2pa +EXPORT_SYMBOL_GPL drivers/tee/tee 0xee720406 tee_device_unregister +EXPORT_SYMBOL_GPL drivers/tee/tee 0xf6a74f0f tee_client_open_session +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/int340x_thermal_zone 0x11fb8ac6 int340x_thermal_zone_add +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/int340x_thermal_zone 0x1b89b408 int340x_thermal_zone_remove +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/int340x_thermal_zone 0xd0cb822d int340x_thermal_read_trips +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_device 0x644afa8d proc_thermal_remove +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_device 0x7cd55c57 proc_thermal_add +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_device 0x86a94cc6 proc_thermal_mmio_add +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_device 0x9e7383d1 proc_thermal_suspend +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_device 0xaee59e08 proc_thermal_mmio_remove +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_device 0xdc6b4775 proc_thermal_resume +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_mbox 0x01d6d335 proc_thermal_mbox_remove +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_mbox 0xe81afa60 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 0x95d95dc8 proc_thermal_rapl_add -EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_rfim 0x8acf813a proc_thermal_rfim_remove -EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_rfim 0x95d01c25 proc_thermal_rfim_add -EXPORT_SYMBOL_GPL drivers/thermal/intel/intel_soc_dts_iosf 0x45c3ae65 intel_soc_dts_iosf_exit -EXPORT_SYMBOL_GPL drivers/thermal/intel/intel_soc_dts_iosf 0xabd68d48 intel_soc_dts_iosf_init -EXPORT_SYMBOL_GPL drivers/thermal/intel/intel_soc_dts_iosf 0xc65b3c23 intel_soc_dts_iosf_add_read_only_critical_trip -EXPORT_SYMBOL_GPL drivers/thermal/intel/intel_soc_dts_iosf 0xf4391990 intel_soc_dts_iosf_interrupt_handler +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_rapl 0xae50d8db proc_thermal_rapl_add +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_rfim 0x3d0136c1 proc_thermal_rfim_remove +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_rfim 0x59297a5b proc_thermal_rfim_add +EXPORT_SYMBOL_GPL drivers/thermal/intel/intel_soc_dts_iosf 0x0742fe9d intel_soc_dts_iosf_add_read_only_critical_trip +EXPORT_SYMBOL_GPL drivers/thermal/intel/intel_soc_dts_iosf 0x2db6771a intel_soc_dts_iosf_init +EXPORT_SYMBOL_GPL drivers/thermal/intel/intel_soc_dts_iosf 0x3b5befdd intel_soc_dts_iosf_exit +EXPORT_SYMBOL_GPL drivers/thermal/intel/intel_soc_dts_iosf 0xe6b3d310 intel_soc_dts_iosf_interrupt_handler EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x01d23ee1 tb_property_create_dir -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x0490c91e tb_xdomain_request -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x0b107b55 tb_xdomain_find_by_route -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x111f3f0d tb_xdomain_enable_paths -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x15452539 tb_xdomain_release_out_hopid -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x1f27935f tb_xdomain_find_by_uuid -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x24239759 __tb_ring_enqueue -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x27eb0737 tb_service_type -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x363660b3 tb_unregister_service_driver +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x0b5d4111 tb_xdomain_enable_paths +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x103850f2 tb_xdomain_lane_bonding_enable +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x18caca9f tb_xdomain_find_by_uuid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x1b18a06e tb_xdomain_request +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x24d7b972 __tb_ring_enqueue +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x2e72f031 tb_ring_alloc_rx +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x2f5b6560 tb_xdomain_type +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x35400fc2 tb_xdomain_alloc_in_hopid EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x393b4f2f tb_property_free_dir -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x39c7019f tb_xdomain_alloc_in_hopid -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x433bdd60 tb_xdomain_disable_paths -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x470bd96f tb_xdomain_response -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x49bf74b5 tb_ring_alloc_tx 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 0x50499ee0 tb_ring_start -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x5ff09a19 tb_register_service_driver EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x603249ed tb_unregister_property_dir +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x6500c05a tb_xdomain_disable_paths EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x658e3d97 tb_property_add_immediate -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x6c6bc6bc tb_xdomain_release_in_hopid -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x72e9bbe6 tb_ring_poll_complete +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x67de7090 tb_ring_stop EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x73ad2acb tb_property_get_next -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x7587461b tb_xdomain_lane_bonding_enable EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x785eb82c tb_property_remove -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x794bcc82 tb_ring_stop +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x7bda60d7 tb_ring_start +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x8343b1a5 tb_xdomain_lane_bonding_disable +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x84324859 tb_unregister_service_driver EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x8b62f95e tb_property_add_dir +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x943bd615 tb_ring_alloc_tx EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xa3d2b403 tb_property_add_data -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xa453aa26 tb_ring_free -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xb777f88c tb_xdomain_alloc_out_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xb77d2c0a tb_ring_poll EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xb7c7cdce tb_property_add_text -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xc9b4ed02 tb_xdomain_type -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xce199a30 tb_ring_poll -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xd221fa11 tb_xdomain_lane_bonding_disable -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xe4bd82da tb_ring_alloc_rx +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xb7e54a90 tb_xdomain_release_out_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xba53a4cd tb_xdomain_alloc_out_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xc1048f55 tb_service_type +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xc1f3dfc9 tb_xdomain_find_by_route +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xc3036fec tb_ring_free +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xd45100b9 tb_xdomain_response +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xd7de7117 tb_ring_poll_complete +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xeec46c48 tb_xdomain_release_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/uio/uio 0xa4bb0d43 uio_event_notify -EXPORT_SYMBOL_GPL drivers/uio/uio 0xa907afdd __uio_register_device -EXPORT_SYMBOL_GPL drivers/uio/uio 0xb8a46024 uio_unregister_device -EXPORT_SYMBOL_GPL drivers/uio/uio 0xdba0368a __devm_uio_register_device -EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0xa2a281d3 usbatm_usb_disconnect -EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0xaa316554 usbatm_usb_probe -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x0cd82c8c cdns_resume -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x0fabc724 cdns_drd_gadget_on -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x143d3e6f cdns_remove -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x40ecb467 cdns_init -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x8eadeecb cdns_power_is_lost -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x9e630f9f cdns_clear_vbus -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xb1370a9b cdns_suspend -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xef283a9f cdns_drd_gadget_off -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xf36312f0 cdns_set_vbus -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x15196e9a ci_hdrc_add_device -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x56713473 ci_hdrc_remove_device -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x942c3bbe hw_phymode_configure -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xd6f7453f ci_hdrc_query_available_role -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x1d7d64cb __ulpi_register_driver -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x67b1dddb ulpi_register_interface -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x89c98eb6 ulpi_unregister_driver -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xa1b26eda ulpi_write -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xf6d5f491 ulpi_read -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xfd979b85 ulpi_unregister_interface -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x33bf0bac g_audio_setup -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x55c9413a u_audio_start_capture -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x68220c0e g_audio_cleanup -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x7789bb56 u_audio_set_volume -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x7d4a6fd8 u_audio_get_mute -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x7d746783 u_audio_stop_playback -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x8a6b3369 u_audio_set_mute -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xb1a938cb u_audio_stop_capture -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xb72ac570 u_audio_start_playback -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xe0e389f2 u_audio_get_volume -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x02aa7fbb gether_register_netdev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x0a6ad0ff gether_get_qmult -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x0c7efda8 gether_get_host_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x211cb91a gether_get_host_addr_u8 -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x3fb42b97 gether_setup_name -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x5488e325 gether_get_host_addr_cdc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x79a0f0c5 gether_set_qmult +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xf78f6d58 tb_register_service_driver +EXPORT_SYMBOL_GPL drivers/uio/uio 0x37738d91 uio_unregister_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0x4cd1955b __uio_register_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0x54a1bb1e uio_event_notify +EXPORT_SYMBOL_GPL drivers/uio/uio 0x80f60cf2 __devm_uio_register_device +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x9629603f usbatm_usb_disconnect +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0xedab59a9 usbatm_usb_probe +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x16eeadcc cdns_resume +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x2ad4b2f8 cdns_drd_gadget_on +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x3a051704 cdns_init +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x50df0a44 cdns_set_vbus +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x7f218a9e cdns_suspend +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x80727fc2 cdns_remove +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x97195b4b cdns_drd_gadget_off +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xa052ed8b cdns_power_is_lost +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xd420a9c4 cdns_clear_vbus +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x28149ba2 ci_hdrc_query_available_role +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x4d99dd67 ci_hdrc_add_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xb6e868ac ci_hdrc_remove_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xb8a4a07b hw_phymode_configure +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x12108cfd __ulpi_register_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x26143dae ulpi_unregister_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x30097860 ulpi_write +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x3b77b458 ulpi_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x67050752 ulpi_register_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x79a60d9a ulpi_read +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x09847140 u_audio_set_volume +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x1570235b u_audio_start_capture +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x166efe19 u_audio_get_mute +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x21945d6f u_audio_stop_capture +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x4699f416 g_audio_setup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x74a60b27 u_audio_get_volume +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x840a2bad g_audio_cleanup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xc4df2c49 u_audio_set_mute +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xcbd757c6 u_audio_stop_playback +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xea57470d u_audio_start_playback +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x153b7d71 gether_setup_name_default +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x1667cfa4 gether_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x180d7497 gether_setup_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x369ec097 gether_get_host_addr_cdc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x4abfba40 gether_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x59be8dc7 gether_set_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x696a9427 gether_register_netdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x876dafd5 gether_set_gadget EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8878cfa6 gether_cleanup -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x88ec6486 gether_set_ifname -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x9ad50bb0 gether_set_dev_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xa6d36d1c gether_setup_name_default -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xa94b180e gether_get_ifname -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xc8c4b85e gether_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xcaa9d718 gether_get_dev_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xcdd953c8 gether_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xd677e365 gether_set_host_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xdf0b13f2 gether_set_gadget -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x25a74718 gserial_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x274aef63 gserial_resume +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x94a03aa2 gether_get_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xbb41f9ad gether_set_ifname +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xc2b1f049 gether_get_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xc6c5c5a1 gether_set_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xca1b79f4 gether_get_host_addr_u8 +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xe5baefec gether_get_ifname +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xe9696bca gether_get_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xfff33ad2 gether_set_qmult EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x33bfdca2 gserial_alloc_line +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x3d9fb400 gserial_connect EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x4a3df9d0 gs_alloc_req EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x60db48f5 gserial_get_console EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x60ea48a0 gs_free_req -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x80a3260f gserial_suspend +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x861571fb gserial_resume +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x9ba4b63c gserial_suspend +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xabb1dbc8 gserial_disconnect EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xb6652875 gserial_free_line EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xc0a01527 gserial_set_console -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xda1e6a57 gserial_disconnect EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xe89dc424 gserial_alloc_line_no_console EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x6c825859 ffs_lock -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0xc29bb16b ffs_single_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0xd1700c20 ffs_name_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1260aa94 fsg_lun_open +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x704a34b3 ffs_name_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x9ea9ef2a ffs_single_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x091ecb11 fsg_store_removable EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x141fce2a fsg_common_remove_luns EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1710b539 fsg_fs_bulk_out_desc EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1ccb58f7 fsg_common_set_num_buffers -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x24197640 fsg_store_nofua EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2933ee1d fsg_ss_bulk_in_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2ef87a2c fsg_store_file EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x398778e1 fsg_ss_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x3aba9c0e fsg_store_cdrom +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x3b4c0508 fsg_common_remove_lun EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x3c6a07d0 fsg_common_create_lun EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x423845e4 fsg_ss_bulk_in_comp_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x49d21e47 fsg_show_file -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x509f8981 fsg_store_ro +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x4b9745fe fsg_show_nofua EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x56344daf fsg_hs_bulk_out_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x682dc03c fsg_show_nofua -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x68e778d7 fsg_show_removable +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x581a76e3 fsg_show_ro +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x5f3a8219 fsg_show_removable EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x6acb4179 fsg_common_set_inquiry_string -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x74e88107 fsg_lun_close -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7a0dffe9 fsg_show_inquiry_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x753b4df3 fsg_store_ro EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7e26d4a5 fsg_common_set_sysfs +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x857b04e4 fsg_store_inquiry_string EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x857b6dc2 fsg_hs_function EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x95cffb3e fsg_hs_bulk_in_desc EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x9a0221c7 fsg_common_free_buffers +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x9e24d5fd fsg_lun_fsync_sub +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x9e25add7 fsg_show_cdrom EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa5cae92f fsg_ss_bulk_out_comp_desc EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa5f99b69 fsg_fs_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa76adea2 fsg_store_nofua +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa9ddba67 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 0xab95f829 fsg_common_set_cdev 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 0xc17e5ca1 fsg_show_ro -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xc786f79f fsg_common_remove_lun +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xc2d38c91 fsg_show_inquiry_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xc65ba18a fsg_lun_close EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xd1a3e8e0 fsg_common_create_luns -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xdabea6b4 fsg_common_set_cdev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xe42d2708 fsg_store_inquiry_string -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xe860cb9f fsg_store_removable +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xd79fc433 fsg_store_file EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf4efc0c8 fsg_ss_bulk_out_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xfc2058cc fsg_show_cdrom -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xff3bd7aa fsg_lun_fsync_sub -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x0fae87d9 rndis_signal_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x1a2609bf rndis_rm_hdr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x1f266254 rndis_register -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x22e11395 rndis_deregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x320b51a1 rndis_set_host_mac -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x434cb4a0 rndis_signal_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x671893c4 rndis_set_param_vendor -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x6ffb8e25 rndis_set_param_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x75a1629f rndis_set_param_medium -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x9356eeb9 rndis_add_hdr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x9ce73e5d rndis_uninit -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xcb543c80 rndis_free_response -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xde7c7f68 rndis_msg_parser -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xe6381f2d rndis_get_next_response -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xfec5eaa7 rndis_borrow_net -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x01a323d3 usb_put_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0864ef56 usb_get_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf94ae948 fsg_store_cdrom +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xfb8267f2 fsg_show_file +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x01886687 rndis_set_param_vendor +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x0560b93a rndis_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x360584c7 rndis_rm_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x771a0ddd rndis_add_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x7bf3f876 rndis_get_next_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x802a18e1 rndis_set_param_medium +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x8df3c6dd rndis_deregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x9f24038b rndis_signal_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xa086c239 rndis_msg_parser +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xa60b18b8 rndis_signal_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xcc3af3cc rndis_free_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xce50c8fb rndis_borrow_net +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xe5a00522 rndis_uninit +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xf08119e7 rndis_set_param_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xf9a53dbf rndis_set_host_mac +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x027eb59e usb_string_ids_tab +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0562668c usb_ep_autoconfig_ss +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x05c3ff8b usb_ep_autoconfig +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x07462d4b unregister_gadget_item EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0c589aba usb_validate_langid EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0cb7e477 usb_ep_autoconfig_release -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0e7343e5 usb_remove_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x16246a93 usb_get_function_instance -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x1f41b946 usb_function_deactivate -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x28d4a6d7 usb_composite_unregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2b51de4b usb_composite_probe +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x14cf1de4 usb_add_config_only +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x25df322f usb_put_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2731d510 usb_composite_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2a24f1f4 usb_gstrings_attach +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2ac3c85d usb_otg_descriptor_init +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2ae0e0a5 usb_function_deactivate EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2e09263f usb_copy_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2e126877 usb_function_unregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x37b55ebd usb_put_function_instance -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x48b376c2 unregister_gadget_item +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3cc89b59 config_ep_by_speed_and_alt +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4389a4dc usb_assign_descriptors EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4beb505d usb_gadget_get_string -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x50e68c96 usb_composite_setup_continue -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x56809f5d usb_ep_autoconfig -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5e061948 usb_string_ids_tab -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x629ff7e2 usb_interface_id -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x656eab95 usb_free_all_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x67c41701 usb_composite_overwrite_options -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x67f20771 config_ep_by_speed_and_alt -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x69d415ae usb_otg_descriptor_alloc -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6b5b5eb9 usb_ep_autoconfig_reset -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x75be8c66 usb_assign_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7d545d95 usb_function_activate -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7f6e8d0f usb_add_config_only -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x91f10a5c usb_add_config -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x9a76c208 usb_gstrings_attach -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb5fed266 usb_add_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5988900a usb_otg_descriptor_alloc +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x660b7aca usb_free_all_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6f482130 usb_get_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x70f6c60b usb_function_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x73c024aa usb_function_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x75fb2d9b usb_string_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x81fc978a usb_get_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x936bf1a3 usb_add_config +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x96364bf9 usb_ep_autoconfig_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x98c23957 usb_add_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x992699fa usb_composite_probe +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x99c9d8d0 usb_remove_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa1a90151 usb_composite_overwrite_options +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa4ba4b95 usb_function_activate EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb775db55 alloc_ep_req -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc2a9ceb7 usb_function_register -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc323f9a2 usb_string_ids_n -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc7d75d09 usb_otg_descriptor_init +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc42f3703 usb_put_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xcea8240a usb_string_ids_n +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd0c91824 usb_composite_setup_continue EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd2ea2134 usb_descriptor_fillbuf -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xdff9ee4e usb_ep_autoconfig_ss -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe265e09b usb_string_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd389b493 usb_interface_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xde1e10c8 config_ep_by_speed EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf474a207 usb_gadget_config_buf -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xfd011f51 config_ep_by_speed -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x438e4cca udc_probe -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x4398770a udc_remove -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x4f3480ad udc_basic_init -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x5b105b6c free_dma_pools +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x0f226cb4 empty_req_queue +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x1355f625 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 0x6440ba3e empty_req_queue -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x67d57f15 udc_enable_dev_setup_interrupts -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x6cf462aa gadget_release -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xf71308c5 init_dma_pools -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xff18312a udc_mask_unused_interrupts +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x680804e2 udc_enable_dev_setup_interrupts +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x68844b33 gadget_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x90af549a udc_mask_unused_interrupts +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xb06e9955 udc_probe +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xcc294cb6 udc_remove +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xd4650f2e init_dma_pools +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xd9244cb1 udc_basic_init EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x01b12bfb usb_ep_free_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x0700bed2 usb_gadget_ep_match_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x08d6d249 usb_gadget_probe_driver EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x0a8c3b4b usb_ep_set_halt EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x0acfe2e7 usb_ep_set_wedge -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x0cd28e19 usb_del_gadget EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x0d90d784 usb_ep_fifo_flush -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x0e57f968 usb_add_gadget -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x11bf8425 usb_gadget_set_selfpowered -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x166853b4 usb_gadget_check_config -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x1994eefb usb_del_gadget_udc -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x216fe452 usb_udc_vbus_handler -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x2c6ca055 usb_gadget_clear_selfpowered -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x38ae1ef6 usb_gadget_vbus_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x496931a7 usb_add_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x22234ffb usb_gadget_clear_selfpowered +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x31655e01 usb_gadget_map_request_by_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x467b14f5 usb_gadget_unmap_request_by_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x49396e85 usb_gadget_disconnect EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x49d9f030 usb_ep_fifo_status -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x49fea3ac usb_gadget_unmap_request_by_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x4a6df7f6 usb_initialize_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x4b850d45 usb_gadget_udc_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x4d1985af usb_gadget_unmap_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x4d964637 usb_del_gadget_udc EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x506ab3a9 usb_ep_queue EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x50b88f41 usb_get_gadget_udc_name -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x5cbd2502 usb_gadget_probe_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x53e155f3 usb_gadget_deactivate +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x554159e0 usb_add_gadget_udc_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x557892eb usb_udc_vbus_handler +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x57acd4dd usb_gadget_set_state EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x5fc294ef usb_ep_clear_halt -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x61967fd8 usb_gadget_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x62e725a1 usb_gadget_set_state -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x64e6cd2d usb_gadget_map_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x6a4d6270 usb_gadget_vbus_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x752169a8 usb_gadget_activate EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x7a41b9f2 usb_ep_set_maxpacket_limit -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x7b77fbf1 usb_gadget_unregister_driver EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x7be89624 usb_gadget_giveback_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x81121978 usb_gadget_map_request_by_dev EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x882077d5 usb_ep_dequeue -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x8eb97e12 usb_gadget_wakeup -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x918c28b8 usb_gadget_udc_reset -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x98d5dcec usb_gadget_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x88329f7a usb_gadget_wakeup +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x88f5409e usb_gadget_vbus_draw +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x95235da6 usb_gadget_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x987920f5 usb_gadget_frame_number EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x9eb52803 usb_ep_disable -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa9ca9c84 usb_add_gadget_udc_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x9f3ce630 gadget_find_ep_by_name EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa9e74462 usb_ep_alloc_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xabb5877d usb_del_gadget EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xaf201fa6 usb_ep_enable -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xcf85bffb gadget_find_ep_by_name -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xdabdb8ba usb_gadget_unmap_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xeafcf328 usb_gadget_vbus_draw -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xef65253d usb_gadget_activate -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xf6452264 usb_gadget_frame_number -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xf9d1ff46 usb_gadget_deactivate -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xfee25527 usb_gadget_vbus_disconnect -EXPORT_SYMBOL_GPL drivers/usb/host/xhci-pci-renesas 0xefdf2e02 renesas_xhci_check_request_fw -EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x22acceef ezusb_fx1_ihex_firmware_download -EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x3e9e6260 ezusb_fx1_set_reset -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x060f8010 ftdi_elan_gone_away -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x2d3f45e0 usb_ftdi_elan_edset_empty -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x3c79f050 usb_ftdi_elan_edset_setup -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x4b8acb9f usb_ftdi_elan_edset_flush -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x615275e2 usb_ftdi_elan_read_pcimem -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xa6f6c591 usb_ftdi_elan_edset_input -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xb7165725 usb_ftdi_elan_edset_single -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xcd20a402 usb_ftdi_elan_write_pcimem -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xd885378f usb_ftdi_elan_edset_output -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x017f62e2 musb_get_mode -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x0737d9ac musb_interrupt +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc51086ea usb_add_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc7a876ed usb_gadget_map_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xcdc80597 usb_gadget_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xd14ad97f usb_initialize_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xdb433067 usb_add_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xe1890f6d usb_gadget_vbus_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xe224ef6a usb_gadget_check_config +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xe528be4a usb_gadget_ep_match_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xf7626594 usb_gadget_set_selfpowered +EXPORT_SYMBOL_GPL drivers/usb/host/xhci-pci-renesas 0x65a73c30 renesas_xhci_check_request_fw +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x0d4b6140 ezusb_fx1_set_reset +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x51ab7ef2 ezusb_fx1_ihex_firmware_download +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x034182c9 usb_ftdi_elan_read_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x03d08686 usb_ftdi_elan_edset_setup +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x1cc20d7a usb_ftdi_elan_edset_input +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x3e6b8bfb usb_ftdi_elan_edset_single +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x5409fe61 usb_ftdi_elan_edset_flush +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x74ba8345 ftdi_elan_gone_away +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x7efd1652 usb_ftdi_elan_edset_empty +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x82ca2b45 usb_ftdi_elan_write_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xd23e19b9 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 0x1cbc1cc3 musb_root_disconnect EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x2734197f musb_readb -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x4a7eac04 musb_queue_resume_work +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x4e208079 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 0xa2ef26b4 musb_set_host +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x7dc1f5ec musb_queue_resume_work +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xa42192c2 musb_get_mode EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xade3e56c musb_writew -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xd34d187a musb_set_peripheral +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xb19c7f79 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 0x0eef73ce usb_phy_generic_register -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x608cdfb0 usb_gen_phy_shutdown -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x6c5976cb usb_gen_phy_init -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x7dd9bc1d usb_phy_generic_unregister -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0xe1069b0d usb_phy_gen_create_phy -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-isp1301 0xa1ec2ab6 isp1301_get_client -EXPORT_SYMBOL_GPL drivers/usb/serial/usb_wwan 0xaab0516f usb_wwan_port_probe -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x10d53808 usb_serial_generic_chars_in_buffer -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x15866ec3 usb_serial_handle_dcd_change -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x1a7a274e usb_serial_generic_write_bulk_callback -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x1a842fcb usb_serial_deregister_drivers -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x3fc47a14 usb_serial_register_drivers -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x4bd84143 usb_serial_generic_open -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x50cf52c5 usb_serial_claim_interface -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x578f0fd1 usb_serial_generic_resume -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x73eb7656 usb_serial_generic_submit_read_urbs -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x77c86737 usb_serial_generic_get_icount -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x78fb2d5d usb_serial_generic_write_start -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x7afffd6f usb_serial_generic_wait_until_sent -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x8bba3e1d usb_serial_generic_throttle -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x9077675f usb_serial_generic_write -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xa90b758f usb_serial_port_softint -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xc79dbeaa usb_serial_generic_close -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xc8103521 usb_serial_generic_process_read_urb -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xd7ad9f39 usb_serial_generic_tiocmiwait -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xeab9f0e2 usb_serial_generic_read_bulk_callback -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xf4024490 usb_serial_generic_unthrottle -EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0x347341c4 dp_altmode_probe -EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0xebfb7963 dp_altmode_remove -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0x048b6465 tcpci_register_port +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xf0fe4c93 musb_root_disconnect +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xfb246edd musb_set_peripheral +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x1959891c usb_gen_phy_init +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x226cf154 usb_phy_generic_register +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0xafbf13f0 usb_gen_phy_shutdown +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0xc7d53824 usb_phy_gen_create_phy +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0xd61dfdc6 usb_phy_generic_unregister +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-isp1301 0x783af253 isp1301_get_client +EXPORT_SYMBOL_GPL drivers/usb/serial/usb_wwan 0x91e29cf5 usb_wwan_port_probe +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x02cd84f5 usb_serial_generic_write_start +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x0fb5e053 usb_serial_generic_write_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x1118383c usb_serial_port_softint +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x23936627 usb_serial_generic_write +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x38549101 usb_serial_deregister_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x5c57d60f usb_serial_generic_unthrottle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x5c639b7a usb_serial_handle_dcd_change +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x8a4a63d7 usb_serial_generic_tiocmiwait +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x90669baa usb_serial_generic_get_icount +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xabb4ae65 usb_serial_generic_close +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xb5b81d5a usb_serial_claim_interface +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xbf82bc3d usb_serial_generic_resume +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xc559896a usb_serial_generic_read_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xc5f6fa33 usb_serial_generic_submit_read_urbs +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xc76b786c usb_serial_generic_open +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xcbb1ec3c usb_serial_generic_process_read_urb +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xcdd06dac usb_serial_generic_chars_in_buffer +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xdc093b0e usb_serial_register_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xf89d8f0d usb_serial_generic_throttle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xfac9c6d3 usb_serial_generic_wait_until_sent +EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0x37edf685 dp_altmode_remove +EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0x6ada41ef dp_altmode_probe EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0x6f497a3c tcpci_irq EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0xbe111953 tcpci_get_tcpm_port EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0xc529e32e tcpci_unregister_port -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x00db31dc tcpm_register_port +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0xcf1afbe8 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 0x88ae16ce 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 0x07780eb5 typec_switch_register -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x0dc7a8a0 typec_get_orientation -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x17155774 typec_switch_set -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x18398f71 typec_set_data_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x1bffcec4 typec_partner_set_identity -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x21f87e91 typec_mux_get_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x24dbc31b typec_plug_register_altmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2681cd9d typec_partner_register_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x0a5ab92f typec_register_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x0b623aa9 typec_partner_set_pd_revision +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x0e281159 typec_register_cable +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x111c3b4c typec_unregister_cable +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x1cfa0c9a typec_set_pwr_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x203006bd typec_set_data_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x22aecd53 typec_register_port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2326fd59 typec_cable_get +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2c15aa29 typec_switch_put EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2d1e301d typec_find_power_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2dc131d4 typec_mux_put -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2eb293cb typec_link_port -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x32fe76ed typec_altmode_exit -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x3451e7df typec_cable_is_active -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x3ce77806 typec_set_mode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x44a4ede2 typec_unregister_partner -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x45da106a typec_get_negotiated_svdm_version -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x46de6282 typec_cable_put -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x49937a09 typec_altmode_unregister_driver -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x4af80391 typec_switch_get_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x4e29eb27 typec_port_register_altmodes -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x4e5bb14d typec_mux_unregister -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x4e77cea6 typec_unregister_altmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x50260623 typec_altmode_vdm -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x571a3ff6 typec_unregister_plug -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x61147d92 typec_cable_set_identity -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x63dcc8db __typec_altmode_register_driver -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x68df5116 typec_port_register_altmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6d074915 typec_partner_set_svdm_version -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x734a7418 typec_altmode_update_active -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x847e0383 fwnode_typec_switch_get +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2e592574 fwnode_typec_switch_get +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2f5db09c typec_mux_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x32bb6811 typec_unregister_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x332be26d typec_switch_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x39b871b9 typec_set_pwr_opmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x3dfb6d7f typec_unregister_partner +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x40c5b524 typec_get_negotiated_svdm_version +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x41418ba8 typec_switch_set +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x45375919 typec_partner_set_identity +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x463ab6b0 typec_cable_put +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x4af84c17 typec_altmode2port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x4f42e252 typec_set_mode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x56e17d3a typec_cable_set_identity +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5dd60c31 typec_unregister_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5f77e289 typec_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x602657ad __typec_altmode_register_driver +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x641f9270 typec_altmode_notify +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x64333b9b typec_match_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x67d08c7e typec_altmode_attention +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6ea1c938 typec_port_register_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7837c370 typec_set_orientation +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x789034f7 typec_mux_register +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x80c49dfe typec_switch_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x823fdf2c typec_partner_register_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x8d112c4c typec_link_port EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9049491e typec_find_port_data_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x90b7b785 typec_partner_set_num_altmodes -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x94da74e4 typec_set_pwr_opmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x992d260e typec_match_altmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9c6a567a typec_altmode_attention -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9d1b5e5d typec_mux_register +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x91980d96 typec_register_partner +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9240053a typec_mux_set_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x98c9b525 typec_altmode_get_partner +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x997c8e63 typec_altmode_update_active EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa254de98 typec_find_orientation -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa2d5940c typec_altmode_get_plug -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa4b93dfa typec_switch_unregister -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xac6a4dc6 typec_altmode_put_plug -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xade341c9 typec_register_cable -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb06fd8ea typec_mux_set_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb2d8df71 typec_cable_get -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb64dee6b typec_altmode_notify -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xba9f12e3 typec_unlink_port -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xbb6836a1 typec_set_orientation -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xbf2df6be typec_register_partner -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc070d8eb typec_altmode_enter -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc3505b8c typec_register_port -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc8eec2a4 typec_altmode_get_partner -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc9074040 typec_unregister_port -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xcc637630 typec_mux_set -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xdbcce893 typec_plug_set_num_altmodes -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xdcbb6f66 typec_altmode2port -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe0fdf80e typec_set_vconn_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe173ac45 typec_partner_set_pd_revision -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe2d7b773 typec_register_plug -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe89d987b typec_switch_set_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa7491fe7 typec_altmode_enter +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb500e867 typec_switch_register +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xbafbfb0d typec_altmode_exit +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xbb82f793 typec_unlink_port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xbc558aaa typec_mux_set +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xbdab3fff fwnode_typec_mux_get +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc656d37b typec_altmode_put_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc74a7661 typec_mux_put +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd18f9efc typec_partner_set_svdm_version +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd67dc89b typec_partner_set_num_altmodes +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd81424ec typec_altmode_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd867bf0b typec_unregister_port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe1a336bf typec_plug_register_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe406f0cd typec_set_vconn_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe8de729b typec_get_orientation EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xeafc1eb8 typec_find_port_power_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xed541c3c fwnode_typec_mux_get +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xecf63de3 typec_mux_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf0475bb9 typec_altmode_get_plug EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf1234a8b typec_find_pwr_opmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf688ad23 typec_set_pwr_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf6cdbc85 typec_switch_put -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xfe22772b typec_get_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xffc6e252 typec_unregister_cable -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x0b01c71e ucsi_set_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x226c7fcd ucsi_connector_change -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x249216eb ucsi_create -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x3e3c6d15 ucsi_register -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x6c823dab ucsi_get_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xafbf52c8 ucsi_unregister -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xb5720fb7 ucsi_resume -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xc8534dab ucsi_destroy -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xec619b2b ucsi_send_command -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x0a306f98 usbip_recv -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x23e4839e usbip_alloc_iso_desc_pdu -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x317ba925 usbip_dump_urb -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x348c444c usbip_event_add -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x5fde4b78 usbip_start_eh -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x6717798e dev_attr_usbip_debug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf6102c02 typec_switch_set_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf85ee7a6 typec_plug_set_num_altmodes +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf928439a typec_altmode_vdm +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xfa540a7a typec_cable_is_active +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xfd9ca6db typec_port_register_altmodes +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x03d5f458 ucsi_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x0f7583d5 ucsi_create +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x7910ddaf ucsi_resume +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xa4e42b32 ucsi_destroy +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xba2f4af8 ucsi_connector_change +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xc1f4715e ucsi_register +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xd046a7fd ucsi_send_command +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xd04f437f ucsi_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xd586d10a ucsi_set_drvdata +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x01ef6729 usbip_pack_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x17cb74a7 usbip_in_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x35e8d583 usbip_event_happened +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x4004c08c dev_attr_usbip_debug +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x426078fa usbip_recv +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x45993ceb usbip_pad_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x5544fe6a usbip_alloc_iso_desc_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x6f23f405 usbip_event_add EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x78b72f44 usbip_debug_flag -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x7d5b254e usbip_stop_eh -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x8906643a usbip_recv_iso -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x9a17803b usbip_recv_xbuff -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xa7937945 usbip_pack_pdu -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xacf0d5f0 usbip_event_happened -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xae87e5db usbip_pad_iso -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xbafcc4bb usbip_in_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x930975c3 usbip_recv_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xac23252e usbip_start_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xbca65d65 usbip_dump_urb +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xbe4ac81d usbip_stop_eh EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd02753dc usbip_header_correct_endian EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe1ea0586 usbip_dump_header -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x2f7e860b _vdpa_unregister_device -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x322e9dca _vdpa_register_device -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x374a6f27 __vdpa_alloc_device -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x6d24be37 __vdpa_register_driver -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x9d191cdb vdpa_unregister_driver -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xa46f491d vdpa_unregister_device -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xa7b67395 vdpa_mgmtdev_unregister -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xf129fa1c vdpa_register_device -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xffed9a99 vdpa_mgmtdev_register -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa_sim/vdpa_sim 0x631bf1e3 vdpasim_create -EXPORT_SYMBOL_GPL drivers/vfio/mdev/mdev 0xcc97c7ac mdev_bus_type -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x01a121a1 vhost_poll_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x046d5f41 vhost_add_used_and_signal_n -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0a9c2546 vhost_dev_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0c31da5b vhost_signal -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x15fb31a7 vhost_log_write -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x29d0b73e vhost_enqueue_msg -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2e4c02cd vhost_vring_ioctl -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x36927240 vhost_new_msg -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x36993bfe vhost_has_work -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x37bc0d38 vhost_dequeue_msg -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x38c2e87d vhost_log_access_ok -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3cbd5040 vhost_vq_init_access -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x46c2200b vhost_vq_avail_empty -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4d69ce44 vhost_dev_ioctl -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4f72bef6 vhost_work_queue -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x529ebe8a vhost_discard_vq_desc -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5e0133e7 vhost_add_used_n -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x627ef92a vhost_add_used_and_signal -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6b784b56 vhost_poll_start -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8797cb50 vhost_exceeds_weight -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x90d3004e vhost_add_used -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x91da9e3a vhost_poll_queue -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x947cc25e vq_meta_prefetch -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9b8f5643 vhost_chr_read_iter -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9f42715a vhost_init_device_iotlb -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9faaf67b vhost_set_backend_features -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa3ab9677 vhost_dev_cleanup -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa4b72de9 vhost_poll_stop -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa8ae132d vhost_work_dev_flush +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xf1e21385 usbip_recv_xbuff +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x60a6c1e4 vdpa_register_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xa71e794b __vdpa_register_driver +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xb166baf3 vdpa_unregister_driver +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xc0d5e8b3 vdpa_mgmtdev_register +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xc60c0c92 __vdpa_alloc_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xcd61f8a9 vdpa_mgmtdev_unregister +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xddc87df3 _vdpa_unregister_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xe1e75493 vdpa_unregister_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xf29e4a6b _vdpa_register_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa_sim/vdpa_sim 0x2a2f157a vdpasim_create +EXPORT_SYMBOL_GPL drivers/vfio/mdev/mdev 0xde83f229 mdev_bus_type +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x033ac556 vhost_dequeue_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x089be2a8 vhost_add_used +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1592a52d vhost_disable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x283df6af vhost_poll_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2c632be4 vhost_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2db7d051 vhost_dev_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2de9b29f vhost_log_write +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x33eb4d13 vhost_dev_cleanup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x354a299e vhost_enqueue_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x458b3213 vhost_log_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4a932db2 vhost_poll_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4ca1de9d vhost_poll_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4e63e781 vhost_get_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x56bd2e57 vhost_new_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x616cd331 vhost_set_backend_features +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x619cf3c1 vhost_add_used_and_signal_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6222d891 vhost_add_used_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x697ccb99 vhost_dev_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6b018f6a vhost_dev_has_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6df635df vhost_chr_read_iter +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x729816d1 vhost_vq_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x73a3d251 vhost_init_device_iotlb +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7758a23d vhost_enable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8410b3f2 vhost_poll_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8d7f4065 vhost_work_dev_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8f5d22ec vq_meta_prefetch +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x91258321 vhost_discard_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa8d2cab5 vhost_dev_check_owner EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa909cfc5 vhost_work_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xaa046cf4 vhost_disable_notify -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xabfe4dbf vhost_enable_notify -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xad581be6 vhost_vq_is_setup -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb0f56b04 vhost_poll_flush -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb6574290 vhost_dev_set_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xbae27b90 vhost_dev_check_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xbfad049f vhost_dev_reset_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc96a5e98 vhost_dev_has_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc9c63bcd vhost_vq_access_ok -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xea68a06e vhost_dev_stop -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xee56edb2 vhost_get_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb6036bb5 vhost_vq_is_setup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb86b12ed vhost_dev_set_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc27680b7 vhost_exceeds_weight +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc63b5cf2 vhost_vring_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc8f04db0 vhost_work_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd9d2e5bd vhost_poll_start +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe3286f56 vhost_dev_reset_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe62d3d25 vhost_vq_avail_empty +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe732d25b vhost_vq_init_access +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xedfe14af vhost_has_work +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf00f3233 vhost_add_used_and_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf5ab3c7e vhost_dev_init EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfd2b3e45 vhost_dev_reset_owner_prepare EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0x38ff875f vhost_iotlb_add_range EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0x5f4e5249 vhost_iotlb_reset @@ -17179,431 +17231,431 @@ 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 0x1002d74d ili9320_shutdown -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x35d1b023 ili9320_probe_spi -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x5d3b1871 ili9320_write_regs -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x60cd5a93 ili9320_write -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x6eadff43 ili9320_resume -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x96ca4cae ili9320_suspend -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xbfefef3f ili9320_remove -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0x673a4055 fb_ddc_read -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x4604dfe2 fb_sys_write -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x7a2f913a fb_sys_read -EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x4bfe5f9a sis_free_new -EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0xc0897851 sis_malloc_new +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x6337e417 ili9320_remove +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x7275ce10 ili9320_shutdown +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x892d5304 ili9320_write +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x93e95b2e ili9320_write_regs +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xb0321303 ili9320_suspend +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xdbc53946 ili9320_probe_spi +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xf40b3072 ili9320_resume +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0x6886a8f8 fb_ddc_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x8d4423fe fb_sys_write +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0xa55029f7 fb_sys_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x6e1a2d28 sis_malloc_new +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0xf964e162 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 0x0e1cee08 viafb_dma_copy_out_sg 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 0x478692b9 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 0xd9f1e46e viafb_find_i2c_adapter EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0xfff2dfd2 viafb_gpio_lookup EXPORT_SYMBOL_GPL drivers/visorbus/visorbus 0x0e338292 visorchannel_signalempty -EXPORT_SYMBOL_GPL drivers/visorbus/visorbus 0x14fa398e visorbus_read_channel -EXPORT_SYMBOL_GPL drivers/visorbus/visorbus 0x28826c4f visorbus_unregister_visor_driver +EXPORT_SYMBOL_GPL drivers/visorbus/visorbus 0x1943a525 visorbus_unregister_visor_driver +EXPORT_SYMBOL_GPL drivers/visorbus/visorbus 0x301a539b visorbus_disable_channel_interrupts +EXPORT_SYMBOL_GPL drivers/visorbus/visorbus 0x3622ae31 visorbus_enable_channel_interrupts +EXPORT_SYMBOL_GPL drivers/visorbus/visorbus 0x3b0f607d visorbus_register_visor_driver EXPORT_SYMBOL_GPL drivers/visorbus/visorbus 0x4de03230 visorchannel_signalinsert EXPORT_SYMBOL_GPL drivers/visorbus/visorbus 0x56401853 visorchannel_signalremove -EXPORT_SYMBOL_GPL drivers/visorbus/visorbus 0x60b5cd40 visorbus_register_visor_driver -EXPORT_SYMBOL_GPL drivers/visorbus/visorbus 0x733bfb42 visorbus_enable_channel_interrupts -EXPORT_SYMBOL_GPL drivers/visorbus/visorbus 0x89805347 visorbus_disable_channel_interrupts +EXPORT_SYMBOL_GPL drivers/visorbus/visorbus 0xa02791ae visorbus_write_channel EXPORT_SYMBOL_GPL drivers/visorbus/visorbus 0xc455c651 visorchannel_get_guid -EXPORT_SYMBOL_GPL drivers/visorbus/visorbus 0xce09ffb5 visorbus_write_channel -EXPORT_SYMBOL_GPL drivers/w1/wire 0x136c627b w1_reset_resume_command -EXPORT_SYMBOL_GPL drivers/w1/wire 0x2e6dd746 w1_write_block -EXPORT_SYMBOL_GPL drivers/w1/wire 0x35610551 w1_reset_bus -EXPORT_SYMBOL_GPL drivers/w1/wire 0x5e51b769 w1_write_8 +EXPORT_SYMBOL_GPL drivers/visorbus/visorbus 0xe4d9a6ea visorbus_read_channel +EXPORT_SYMBOL_GPL drivers/w1/wire 0x19a91b8f w1_reset_resume_command +EXPORT_SYMBOL_GPL drivers/w1/wire 0x2a1bdc5a w1_write_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x3689b75c w1_touch_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x5bdcffcb w1_reset_bus EXPORT_SYMBOL_GPL drivers/w1/wire 0x63757e92 w1_calc_crc8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0x6c89b702 w1_read_block -EXPORT_SYMBOL_GPL drivers/w1/wire 0x81bff1ee w1_touch_bit -EXPORT_SYMBOL_GPL drivers/w1/wire 0xa9b2d1bd w1_next_pullup -EXPORT_SYMBOL_GPL drivers/w1/wire 0xd7db6659 w1_read_8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0xdff90772 w1_reset_select_slave -EXPORT_SYMBOL_GPL drivers/w1/wire 0xecb5e0d2 w1_touch_block -EXPORT_SYMBOL_GPL drivers/w1/wire 0xf71e9647 w1_triplet -EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x0ad892c5 xen_front_pgdir_shbuf_unmap -EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x20034211 xen_front_pgdir_shbuf_map -EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x95903fb0 xen_front_pgdir_shbuf_alloc -EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0xb0348938 xen_front_pgdir_shbuf_free -EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0xc668412b xen_front_pgdir_shbuf_get_dir_start -EXPORT_SYMBOL_GPL drivers/xen/xen-privcmd 0x204552a7 xen_privcmdbuf_fops -EXPORT_SYMBOL_GPL drivers/xen/xen-privcmd 0xad231157 xen_privcmd_fops -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x1e9b9546 dlm_posix_lock +EXPORT_SYMBOL_GPL drivers/w1/wire 0x75004dd1 w1_write_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x954b62d1 w1_read_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0xaaf5b2bc w1_triplet +EXPORT_SYMBOL_GPL drivers/w1/wire 0xb6483d35 w1_touch_bit +EXPORT_SYMBOL_GPL drivers/w1/wire 0xda3f3248 w1_next_pullup +EXPORT_SYMBOL_GPL drivers/w1/wire 0xf8c04991 w1_reset_select_slave +EXPORT_SYMBOL_GPL drivers/w1/wire 0xff31e85f w1_read_8 +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x0b65312d xen_front_pgdir_shbuf_unmap +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x2d3173b5 xen_front_pgdir_shbuf_get_dir_start +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x70893059 xen_front_pgdir_shbuf_alloc +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x7b9e7544 xen_front_pgdir_shbuf_free +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x8ce8fc47 xen_front_pgdir_shbuf_map +EXPORT_SYMBOL_GPL drivers/xen/xen-privcmd 0x20b8aa0e xen_privcmd_fops +EXPORT_SYMBOL_GPL drivers/xen/xen-privcmd 0x2a948b63 xen_privcmdbuf_fops EXPORT_SYMBOL_GPL fs/dlm/dlm 0x4b62826c dlm_unlock EXPORT_SYMBOL_GPL fs/dlm/dlm 0x647d6170 dlm_lock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x90625f1a dlm_posix_get +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x6552b3e8 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 0xdf4a43b6 dlm_posix_unlock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xd4a5a2e8 dlm_posix_get +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xe4cbb003 dlm_posix_unlock EXPORT_SYMBOL_GPL fs/fscache/fscache 0x092cf98e fscache_object_sleep_till_congested -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x11122555 nlmclnt_proc -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x48b6dc96 lockd_up -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x6e164231 lockd_down +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x2d9698ac nlmclnt_init +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x3eadef73 nlmclnt_done +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x45222862 lockd_up EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77e35ccc nlmsvc_unlock_all_by_ip -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x85ee8793 nlmsvc_unlock_all_by_sb -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xcda53660 nlmclnt_done -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xdba08a06 nlmclnt_init -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xfb50d9b9 nlmsvc_ops -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0023def5 nfs_commit_free +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xaff90e0b nlmsvc_ops +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xcc06fe39 lockd_down +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xd1631f2e nlmsvc_unlock_all_by_sb +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xf636c957 nlmclnt_proc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x016a0032 alloc_nfs_open_context EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0294c6a2 nfs_callback_nr_threads -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x04acc587 nfs_set_cache_invalid -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x04f77d41 nfs_sb_deactive -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x06f13e7b nfs_getattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x098179b3 nfs_commitdata_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0a23306b alloc_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0ef05281 __traceiter_nfs_fsync_enter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0ef17f55 nfs_reconfigure -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0f85d317 unregister_nfs_version -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0fd5769d nfs_fhget +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x04765d30 nfs_alloc_fattr_with_label +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x060ec31a nfs_request_remove_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x06cdd7f8 __SCK__tp_func_nfs_xdr_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x09657379 nfs_instantiate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0ab3d1bf nfs4_label_alloc EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10962bc2 nfs_auth_info_match -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x12d27d06 nfs_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10ef8158 nfs_initiate_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x124090e3 nfs_sb_deactive EXPORT_SYMBOL_GPL fs/nfs/nfs 0x14feb109 nfs_access_set_mask -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x16a0fb83 nfs_filemap_write_and_wait_range -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1dbd08fd nfs_pgio_header_free -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1e02ebac nfs_show_devname -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x21b8e840 nfs_link +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1b93d30a __SCK__tp_func_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1be04e0a nfs_pageio_reset_write_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1c62c47a nfs_alloc_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1d10933b nfs_server_insert_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1e70b7b2 put_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1f0662a3 nfs_commit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1f49b489 nfs_server_copy_userdata EXPORT_SYMBOL_GPL fs/nfs/nfs 0x22d795a8 _nfs_display_fhandle_hash -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x264c6b33 nfs_fscache_open_file -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x266dd6ea nfs_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x25452cea nfs_getattr EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2821236a nfs_free_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x28422fcd __tracepoint_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2856cf50 nfs_mark_client_ready -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x28b79279 nfs_init_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2e0b40b2 nfs_rename -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2e830463 __SCK__tp_func_nfs_xdr_bad_filehandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2f79e01f nfs_clone_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x30b69490 nfs_wb_all -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x33f6627a nfs_generic_pg_test -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x351c2b3f __tracepoint_nfs_xdr_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2a2de823 nfs_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2a35b162 nfs_inode_attach_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2bd3ea38 nfs_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2bf5c4f5 nfs_request_add_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2c4b793e unregister_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2d88e94a nfs_setattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2f569c72 nfs_access_get_cached +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2fae6dc3 nfs_unlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2fb33da8 nfs_link +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x310f5468 __traceiter_nfs_xdr_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x31b6ef0a nfs_mknod +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3208a7cb nfs_free_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x347824d2 nfs_scan_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x34a7d63c nfs_init_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x362580dd nfs_wait_on_request EXPORT_SYMBOL_GPL fs/nfs/nfs 0x37239e6d __SCT__tp_func_nfs_xdr_bad_filehandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x397bcce0 nfs_client_init_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3852740d nfs_fhget +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x38781c84 nfs_file_set_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x387cd4d1 nfs_fs_type EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3e1f8ff8 nfs_try_get_tree +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3d9d690d nfs_get_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3da859c4 nfs_alloc_client EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f2690f2 nfs_check_flags -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f3f801d nfs_pageio_reset_write_mds EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40739385 nfs_wait_bit_killable -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x413173b0 nfs_do_submount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x41857d07 nfs_setsecurity -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x41e94d3d nfs_pageio_reset_read_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40b4a2f3 nfs_writeback_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4251d898 __SCK__tp_func_nfs_xdr_bad_filehandle EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f2c81f nfs4_client_id_uniquifier -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x445f9fd6 nfs_server_remove_lists -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x448e66cd nfs_invalidate_atime -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x46ad37b3 nfs_mknod -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x47be332e nfs_clear_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4856d5c7 nfs_create_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x48d8988b nfs4_dentry_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4af94c53 nfs_kill_super -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4bbaf93c nfs_file_llseek -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4c697b3c nfs_check_cache_invalid +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4412bf5b nfs_setattr_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x446307d4 nfs_file_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x44ab0d6d nfs_symlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x44bc879e nfs_clear_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x44ca92ce nfs_may_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4a43c0be nfs_add_or_obtain EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4ef51195 nfs_post_op_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x50acf081 get_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x50c11ffb nfs_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51684b83 __traceiter_nfs_fsync_exit EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x54511e85 nfs_sops -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x55de4cb4 nfs_show_stats -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x56f1e9dd nfs_umount_begin +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x52981768 nfs_access_zap_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x57d15654 nfs_clear_verifier_delegated EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584b8482 nfs_inc_attr_generation_counter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5895e06a nfs_set_verifier -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5b44a21f nfs_free_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5ba1a3ed nfs_commit_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5ccc646d nfs_commitdata_release -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5d2cb75d nfs_pageio_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5ebc5f28 nfs_setattr_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x60cb9e73 nfs_access_zap_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x639abaa8 __traceiter_nfs_xdr_bad_filehandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x675fadd6 nfs_put_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6a79942b nfs_atomic_open -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6bff435f nfs_pgheader_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6cceadbf nfs_init_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6de5c36a nfs_add_or_obtain -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6e15d033 __SCK__tp_func_nfs_fsync_enter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x70c52f9e nfs_get_lock_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x72bcd6db nfs_lookup -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x74b1b1c2 nfs_statfs -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x75ea9c97 nfs_revalidate_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x762ef281 nfs_pgio_header_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x77d84a3c nfs_rmdir -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x783552ce nfs_post_op_update_inode_force_wcc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x784c7f02 nfs_free_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x790d5965 __traceiter_nfs_xdr_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7b8d81cb nfs_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x587caef8 nfs_async_iocounter_wait +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x59c1eabc nfs_init_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5ae6705b nfs_lookup +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5c3f6011 nfs_commitdata_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5d93020e nfs_file_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x617983e0 nfs_sops +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x61e76d14 nfs_revalidate_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x64916145 nfs_reconfigure +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x67aece6d nfs_release_request +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x685de2c9 nfs_retry_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x69e00563 nfs_post_op_update_inode_force_wcc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6b21be04 nfs_pageio_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6b9fffef nfs_create_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6c56dee9 nfs_commit_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6cb87e24 nfs_pageio_resend +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6e471c51 nfs_initiate_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6e55501d nfs_file_mmap +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x71782aaa nfs_file_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x741ac1e0 nfs_free_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7aa97892 nfs_file_fsync EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7c9722ba nfs_dreq_bytes_left -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7d83dedb nfs_close_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7daba297 nfs_writeback_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7df1dc06 nfs_alloc_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7f60b130 nfs_access_get_cached +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7d98aa6a register_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7da592af nfs_server_remove_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7ededa8f nfs_alloc_server EXPORT_SYMBOL_GPL fs/nfs/nfs 0x832e8f0b nfs_alloc_fattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8461bf52 __traceiter_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x860f4c22 nfs_client_for_each_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x89de09ec nfs_probe_fsinfo -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8a767010 nfs_client_init_is_complete -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8a78ef13 nfs_generic_pgio -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8ca3d6a8 nfs_symlink -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8d02b21d nfs_file_mmap -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8fcda52b nfs_force_lookup_revalidate -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x903f59cd nfs_sync_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9063e924 nfs_scan_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8b4153df nfs_fscache_open_file +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8bcc3a4f nfs_client_for_each_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8be867b6 nfs_write_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8c3898b7 nfs_pageio_reset_read_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8d658308 nfs_invalidate_atime +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8f59f4b6 nfs_umount_begin EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90a5530f nfsiod_workqueue +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x915daf0d nfs_request_add_commit_list_locked EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91d1fe52 max_session_slots -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x97534fea nfs_create +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9259c697 nfs_wb_all +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9405c039 nfs_set_verifier +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x978e018c __traceiter_nfs_fsync_enter EXPORT_SYMBOL_GPL fs/nfs/nfs 0x98b0ece8 nfs_init_timeout_values -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x993cb143 nfs_request_add_commit_list_locked -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9952ac17 put_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x99838b9f nfs_get_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9bd61e46 nfs_file_set_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9d432a2b nfs_file_fsync +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9af2b95d nfs_atomic_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9c5d90cc nfs_client_init_is_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9d0e9e6f nfs4_dentry_operations EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9d919c44 __SCT__tp_func_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9dc3779b nfs_alloc_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9dbcf953 nfs_create +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9f414a03 nfs_pgheader_init EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa05ca625 nfs_fattr_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa4c13f6e nfs_write_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa89aff04 nfs_refresh_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e5ccac nfs_server_insert_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa1139d75 nfs_pgio_header_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa62e5702 nfs_show_stats +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa667eb71 nfs_access_add_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa7642c5e __tracepoint_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa772fc99 nfs_set_cache_invalid +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8622014 nfs_clone_server EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e9e1ae send_implementation_id -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa92b3bfb nfs_init_server_rpcclient EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaafd4acc max_session_cb_slots -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xac519ee2 nfs_wait_client_init_complete -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xac8feb59 nfs_retry_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xae0fcbc7 __tracepoint_nfs_xdr_bad_filehandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb1437133 register_nfs_version -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb1d6fbbb nfs_instantiate -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb420fc6e nfs_request_add_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb4ea5f47 nfs_flock -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb57a28ed nfs_permission -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb613d365 nfs_init_cinfo -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb6d57220 nfs_show_options -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb8555792 nfs_file_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbc40641e nfs_put_lock_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbcb0cadd nfs_release_request -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc0024aa2 nfs_inode_attach_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc21c6f9a nfs_file_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc2b49767 nfs_file_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xabb5b245 nfs_pgio_current_mirror +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xada75e3f nfs_mkdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaf5ac170 nfs_create_rpc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb47914af nfs_try_get_tree +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb61916cd nfs_rename +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb65aef7e nfs_put_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb763aa11 nfs_refresh_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xba3a28ac __tracepoint_nfs_xdr_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbaef206b nfs_free_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbca45b83 nfs_check_cache_invalid +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbda2cc6b __tracepoint_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbdc55778 nfs_show_devname +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbdcd3548 nfs_pgio_header_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbe0f07b8 nfs_client_init_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc13aa5be nfs_generic_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc13c3161 nfs_probe_fsinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc19d41f7 nfs_wait_client_init_complete EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3a2be67 nfs_net_id -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc4cf9f0b nfs_setattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc56ba9f3 nfs_wait_on_request -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc68c8f39 __SCK__tp_func_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc7abf2c0 nfs_request_remove_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xca9241ca nfs_async_iocounter_wait -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xceed75fe nfs_create_rpc_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd0e10697 nfs_sb_active -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd42b2896 __tracepoint_nfs_fsync_enter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd5560496 nfs_mkdir -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd9038a73 nfs_drop_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd95f70ef nfs_initiate_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc4f5b54f nfs_get_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc5431b95 nfs_mark_client_ready +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc5476d10 nfs_permission +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc7d9bc02 nfs_kill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc8166741 nfs_lock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc9e1bf26 nfs_rmdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcaeca6e0 nfs_setsecurity +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcb41b217 nfs_drop_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd118ae79 __SCK__tp_func_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd22d6dea nfs_commitdata_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd393f26b nfs_do_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd7d6fae2 nfs_file_llseek +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xda1262e7 nfs_sb_active EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdbcb6064 nfs_clear_verifier_delegated -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdbd28bcb __SCK__tp_func_nfs_xdr_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdd124c16 nfs_file_write -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xde56138e nfs4_label_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe09ea512 nfs_show_path -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe112d67c nfs_access_add_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe506626c nfs_server_copy_userdata -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe55c406c get_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe611b194 nfs_unlink -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe6861fd9 nfs_dentry_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe8def9b1 nfs4_fs_type -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe97686c9 nfs_open -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xed9b07d8 nfs_may_open -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xee5ce64e nfs_alloc_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xef3781ba nfs_pgio_current_mirror -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf06a241c nfs_pageio_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf3325901 nfs_lock -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf38cef74 nfs_zap_acl_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf3c85f15 nfs_pageio_resend -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf539933d nfs_initiate_pgio -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf6181133 nfs_post_op_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdc8fe353 __traceiter_nfs_xdr_bad_filehandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdcaba320 __tracepoint_nfs_xdr_bad_filehandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xddc95ddf nfs_file_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe008b2a6 nfs_statfs +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe1ce6bb3 nfs_force_lookup_revalidate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe5285c66 nfs_close_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe99677fa nfs_flock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xedb1cf22 nfs_init_cinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xedf35775 nfs_sync_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf043106f nfs4_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf05d5a3f nfs_pageio_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf51ccd76 nfs_zap_acl_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf8021aa7 nfs_show_options +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf8614d1c nfs_show_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfb3a0958 nfs_filemap_write_and_wait_range EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc619abd _nfs_display_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfd3a0c29 nfs_generic_pg_test EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfd3c0de6 __SCT__tp_func_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfd88fc31 nfs_init_server_rpcclient +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfe3245b8 nfs_put_client EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfeb42418 __SCT__tp_func_nfs_xdr_status -EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0x53bcfc44 nfs3_set_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x022eded4 nfs4_mark_deviceid_unavailable -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x038ab1e2 nfs4_pnfs_ds_put +EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0xee04bc99 nfs3_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x026ea94f __SCK__tp_func_pnfs_mds_fallback_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x03986d0d nfs4_schedule_lease_recovery EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x056c2e80 nfs4_test_deviceid_unavailable -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0aca1bd8 nfs4_schedule_lease_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0bb36675 nfs4_decode_mp_ds_addr -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0bee9e4a __tracepoint_nfs4_pnfs_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0d5f56fc nfs4_schedule_migration_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1346f436 pnfs_generic_layout_insert_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x05673fc1 pnfs_ld_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0a33d8b7 __SCK__tp_func_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0ae68c32 pnfs_generic_pg_check_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0f877f20 pnfs_read_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x114898b3 __traceiter_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x158303f1 pnfs_layoutcommit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x177044a8 nfs4_find_get_deviceid EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x18e75751 __SCT__tp_func_pnfs_mds_fallback_write_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1ade30e8 __SCK__tp_func_nfs4_pnfs_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1b3edbf3 pnfs_layout_mark_request_commit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1b9e246d pnfs_generic_prepare_to_resend_writes -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x20ae64ab nfs4_proc_getdeviceinfo -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x24a2cc76 pnfs_generic_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x270be9a6 __traceiter_pnfs_mds_fallback_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x28f4966d pnfs_generic_ds_cinfo_release_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x290356e2 pnfs_generic_clear_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x224b22f0 nfs4_delete_deviceid EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2b16e909 __SCT__tp_func_nfs4_pnfs_commit_ds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2c9a459a nfs4_setup_sequence -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2f7faf47 __tracepoint_pnfs_mds_fallback_pg_get_mirror_count -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2f8c6ef2 __SCK__tp_func_pnfs_mds_fallback_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x33c51bce __tracepoint_pnfs_mds_fallback_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3525eeb9 __tracepoint_ff_layout_read_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3c8b5785 nfs41_sequence_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3e61b6a8 nfs4_init_ds_session -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3ebbcf7c __traceiter_nfs4_pnfs_commit_ds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x40f8c50b pnfs_generic_pg_cleanup -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x412b3ac9 __SCK__tp_func_nfs4_pnfs_commit_ds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x43294e4d __SCK__tp_func_ff_layout_read_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4642a6e7 pnfs_generic_ds_cinfo_destroy -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x46867508 nfs4_put_deviceid_node -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x46bfd6f7 pnfs_put_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4b028558 pnfs_error_mark_layout_for_return -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x51a6ef43 pnfs_destroy_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x56708b4c __traceiter_pnfs_mds_fallback_pg_get_mirror_count -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x57502f77 pnfs_generic_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5b56d3e0 __traceiter_pnfs_mds_fallback_read_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5cb7027e nfs4_schedule_stateid_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5cfaefe2 pnfs_generic_recover_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x36dd3167 nfs4_schedule_lease_moved_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3717ae1b nfs_remove_bad_delegation +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x374a7839 nfs42_proc_layouterror +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3750a4b7 nfs4_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x38981c45 __tracepoint_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3bbbbb03 nfs4_mark_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3cf4107c pnfs_generic_layout_insert_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3e68ecc8 nfs4_pnfs_ds_put +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3e9deb4f __SCK__tp_func_pnfs_mds_fallback_write_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x40a8ef7e pnfs_set_layoutcommit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x41e830a8 nfs4_init_ds_session +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x44b18e78 __SCK__tp_func_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4681c79e pnfs_generic_clear_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x475a8bbe __tracepoint_pnfs_mds_fallback_pg_get_mirror_count +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x49aa07a7 pnfs_update_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4c1a0d2e pnfs_alloc_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4d71b335 nfs4_schedule_stateid_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4f43b64f __traceiter_ff_layout_commit_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4f4c960d pnfs_register_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x50d257aa __SCK__tp_func_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x51d65056 __tracepoint_ff_layout_write_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x53093195 nfs4_test_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x579d89f1 __SCK__tp_func_pnfs_mds_fallback_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x59da2ef3 __SCK__tp_func_ff_layout_commit_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5a15a3f4 pnfs_read_resend_pnfs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5c4b27af pnfs_generic_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5f75f8b6 nfs4_decode_mp_ds_addr EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6085edbd nfs_map_string_to_numeric +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x60bc8863 nfs41_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x61676d3b __SCK__tp_func_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x61b94075 __tracepoint_ff_layout_read_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x637d041f pnfs_generic_write_commit_done EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x63826d35 __SCT__tp_func_nfs4_pnfs_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x640aab89 pnfs_update_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6746a44b nfs4_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x645a69e6 pnfs_nfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x65080bf6 nfs4_test_session_trunk +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6578c142 pnfs_ld_write_done 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 0x6ba6b485 __tracepoint_pnfs_mds_fallback_read_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7334b4db pnfs_register_layoutdriver -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x73e27fb4 pnfs_generic_pg_check_range -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x77efc1b9 __SCK__tp_func_pnfs_mds_fallback_read_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x789162da __SCK__tp_func_ff_layout_commit_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x79f678c6 __SCK__tp_func_ff_layout_write_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7a235d26 nfs4_find_or_create_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7e129f19 nfs42_proc_layouterror +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6c6d22a9 pnfs_generic_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6f7097c8 pnfs_unregister_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6f759680 __tracepoint_pnfs_mds_fallback_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x704c407c __traceiter_pnfs_mds_fallback_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x70e11fe6 nfs4_init_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x721a88fe __traceiter_pnfs_mds_fallback_read_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7543694a pnfs_generic_ds_cinfo_destroy +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x771d2064 pnfs_generic_search_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x77848d72 pnfs_generic_pg_cleanup +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x79a586cd nfs4_schedule_session_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7ca6ac94 pnfs_generic_ds_cinfo_release_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7ce9c872 pnfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7d8125d1 pnfs_layout_mark_request_commit EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7e42bd3f __SCT__tp_func_ff_layout_read_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x81366075 pnfs_add_commit_array -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x81bcc950 pnfs_set_layoutcommit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x82e635b3 pnfs_generic_pg_writepages -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x873dea27 __tracepoint_pnfs_mds_fallback_write_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8b550974 pnfs_ld_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8d47fe1e __traceiter_ff_layout_commit_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8e254dcb __tracepoint_pnfs_mds_fallback_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x907e0dfc pnfs_generic_pg_readpages -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x913691c1 __SCK__tp_func_nfs4_pnfs_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x91ca5e89 __tracepoint_nfs4_pnfs_commit_ds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x92293f3a nfs4_find_get_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x817786ec __traceiter_pnfs_mds_fallback_write_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8522c0db nfs4_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x85b196e5 __tracepoint_pnfs_mds_fallback_write_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x85b50e5a __traceiter_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x864ee4f2 __SCK__tp_func_ff_layout_write_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x867d886e __traceiter_pnfs_mds_fallback_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x871a618f pnfs_destroy_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x88b6d1b6 __tracepoint_ff_layout_commit_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x89958957 pnfs_report_layoutstat +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8a497c46 __tracepoint_pnfs_mds_fallback_read_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8b922781 pnfs_generic_scan_commit_lists EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x930a94fd __SCT__tp_func_pnfs_mds_fallback_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x943ef5ca __traceiter_ff_layout_read_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x95c4efd6 pnfs_generic_scan_commit_lists -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x969293f9 pnfs_report_layoutstat +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9596be9d __tracepoint_pnfs_mds_fallback_read_done EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x96c4643f __SCT__tp_func_pnfs_mds_fallback_pg_get_mirror_count -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x98e845f7 __SCK__tp_func_pnfs_mds_fallback_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9c52953e pnfs_generic_pg_check_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9ed54a8d __SCK__tp_func_pnfs_mds_fallback_pg_get_mirror_count -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa00ae081 __traceiter_nfs4_pnfs_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa2c9c710 pnfs_generic_write_commit_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa46f1e6b pnfs_generic_pg_test -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa532593d __tracepoint_pnfs_mds_fallback_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa5726c39 nfs_remove_bad_delegation -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa58ed915 nfs4_mark_deviceid_available -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa78c5423 pnfs_free_commit_array -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa7a2d3f9 __traceiter_ff_layout_write_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa84edfd5 __SCK__tp_func_pnfs_mds_fallback_write_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa9ff63ab __tracepoint_nfs4_pnfs_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xab31139a __SCK__tp_func_pnfs_mds_fallback_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa3ceaf25 __traceiter_pnfs_mds_fallback_pg_get_mirror_count +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa92fa68d nfs4_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xaa72a65c nfs4_proc_getdeviceinfo +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xabb91b6d __traceiter_ff_layout_write_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xad73d5f3 __SCK__tp_func_pnfs_mds_fallback_read_pagelist EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xadeca730 __SCT__tp_func_nfs4_pnfs_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb27f9988 nfs4_delete_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb2a6cc67 pnfs_set_lo_fail -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb387dddb pnfs_generic_search_commit_reqs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb587c71c nfs4_pnfs_ds_connect -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb7948d6b __traceiter_pnfs_mds_fallback_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb8574c11 pnfs_nfs_generic_sync -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb8681419 pnfs_generic_sync -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb8ca85b3 __traceiter_pnfs_mds_fallback_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb8f64adc pnfs_unregister_layoutdriver -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb93dd9e3 nfs4_test_session_trunk -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb9ec1534 pnfs_layoutcommit_inode -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc3504263 __tracepoint_ff_layout_write_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xadf0f167 __tracepoint_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xaed726a0 nfs4_pnfs_ds_add +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb102eac0 pnfs_generic_recover_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb4656994 pnfs_generic_pg_writepages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbc9611fd __traceiter_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbd2700b5 pnfs_write_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbed6a276 pnfs_generic_pg_readpages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc16b98d3 __traceiter_pnfs_mds_fallback_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc31b75f1 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 0xc8e0ed15 pnfs_generic_commit_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc3f2d6b5 nfs4_find_or_create_ds_client EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcc21ce5c __SCT__tp_func_ff_layout_commit_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcd757ad5 nfs4_schedule_session_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcf0d2ed3 __traceiter_pnfs_mds_fallback_write_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcf604c82 pnfs_alloc_commit_array -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd1abdf58 nfs4_set_rw_stateid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd5f04c44 pnfs_read_resend_pnfs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdd8ea609 nfs4_init_deviceid_node -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xddd8f4a2 nfs4_set_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xde979387 __tracepoint_ff_layout_commit_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcdb424c8 nfs4_mark_deviceid_available +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcec2341a __traceiter_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd22ad30d __tracepoint_pnfs_mds_fallback_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd2febc3f __SCK__tp_func_pnfs_mds_fallback_pg_get_mirror_count +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd333bb7f __tracepoint_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd339fc34 pnfs_add_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd3e85547 nfs4_pnfs_ds_connect +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdb3fdcd8 pnfs_generic_pg_check_range +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdc5770f7 pnfs_generic_sync EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdeb5edce __SCT__tp_func_pnfs_mds_fallback_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdfe47b40 __traceiter_nfs4_pnfs_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xea4a9469 pnfs_read_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdf16f1f2 pnfs_generic_prepare_to_resend_writes +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdf5a47cc __tracepoint_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe0b443a6 nfs4_schedule_migration_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe6eeb426 pnfs_put_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe7b86592 pnfs_free_commit_array EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed15fb41 nfs4_print_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xeda46918 __tracepoint_pnfs_mds_fallback_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xede25e39 pnfs_ld_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xef2d747d __SCK__tp_func_pnfs_mds_fallback_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf13ca4a6 nfs4_schedule_lease_moved_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xefda0f61 nfs4_set_rw_stateid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf0ee6386 nfs4_put_deviceid_node EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf32fa2b7 __SCT__tp_func_ff_layout_write_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf6dbe0ba pnfs_write_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf4df0a94 __SCK__tp_func_ff_layout_read_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf5107ab8 __SCK__tp_func_pnfs_mds_fallback_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf6ae3728 pnfs_set_lo_fail EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf7801360 nfs41_maxgetdevinfo_overhead +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf846a229 pnfs_generic_commit_pagelist EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf999267e pnfs_generic_commit_release -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf9996ca7 __traceiter_pnfs_mds_fallback_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf9ec1c4d nfs4_pnfs_ds_add +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfe0f449f __traceiter_ff_layout_read_error EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fe1e1ad locks_end_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x552671d2 opens_in_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xbcd624cf locks_in_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xd30162da locks_start_grace -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x3bbb77c7 nfsacl_encode -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x9b37d982 nfsacl_decode -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xa861f3d6 nfs_stream_decode_acl -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xd09dff4f nfs_stream_encode_acl -EXPORT_SYMBOL_GPL fs/nfsd/nfsd 0x00ea4f67 nfsd4_ssc_init_umount_work -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x15569968 o2hb_setup_callback +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xa5a07f6c locks_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xb7c3f014 opens_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xe0fb2639 locks_start_grace +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x112f4a04 nfsacl_encode +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x158c7637 nfs_stream_decode_acl +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xa92f5401 nfs_stream_encode_acl +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xc3a99045 nfsacl_decode +EXPORT_SYMBOL_GPL fs/nfsd/nfsd 0xa9743ff1 nfsd4_ssc_init_umount_work EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1b89c6ee o2hb_fill_node_map -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x3b16d784 o2nm_get_node_by_num EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x4900035b o2hb_stop_all_regions -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x545334c8 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 0x5e95a4b2 o2net_send_message_vec -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x66b339bb o2hb_register_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x67a3f1c0 o2nm_node_get EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x6a0c3847 __mlog_printk EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x81a17396 mlog_and_bits EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa87bc9e7 o2nm_configured_node_map -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xacf29d76 o2nm_node_put -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xae6d0a4b o2nm_node_get +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xabe61529 o2nm_get_node_by_num +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xb34c44b1 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 0xc182bdbb o2nm_get_node_by_ip EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xc4d99852 o2hb_check_node_heartbeating_from_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xc73714e8 o2hb_unregister_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xc7cb9fb5 o2nm_node_put +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd3f2e9ec o2hb_setup_callback EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd859ac8c o2net_fill_node_map EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf1a5611d o2net_unregister_handler_list +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf2af9c29 o2hb_unregister_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 0x46a0302f dlm_print_one_lock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x4ccd97bc dlm_register_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x0c5f7ec9 dlm_register_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x392184fb dlmlock EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7a1211f8 dlm_setup_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xcd742136 dlmlock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd2aca0c1 dlm_register_domain -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd3818414 dlmunlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xb46cb1d9 dlmunlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xba549d7c dlm_unregister_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xbd117719 dlm_print_one_lock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xcf981d0e 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 0xfac179eb dlm_unregister_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 EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x1475f64b ocfs2_dlm_lvb_valid -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x359813d6 ocfs2_stack_glue_register +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x16bfca9e ocfs2_plock EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4d3af7fa ocfs2_cluster_hangup +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x551d43c7 ocfs2_stack_glue_register +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x756506b1 ocfs2_stack_glue_unregister EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x76f40744 ocfs2_dlm_lvb -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x8d9a36cf ocfs2_plock EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x9507547f ocfs2_cluster_disconnect EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xaf969565 ocfs2_dlm_lock -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xb1033e8b ocfs2_kset EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbbc4ef97 ocfs2_stack_supports_plocks EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xc5196999 ocfs2_dlm_unlock EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xc9fae756 ocfs2_cluster_connect EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xcafdd707 ocfs2_dlm_lock_status EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xd344e4ee ocfs2_stack_glue_set_max_proto_version EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xd806a273 ocfs2_dlm_dump_lksb -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xfedc46d2 ocfs2_stack_glue_unregister +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xfdda4c4b ocfs2_kset EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0x43cc3d4b pstore_blk_get_config -EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0x765311c4 unregister_pstore_device -EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0xd0a8ab5a register_pstore_device -EXPORT_SYMBOL_GPL fs/pstore/pstore_zone 0x36f80847 unregister_pstore_zone -EXPORT_SYMBOL_GPL fs/pstore/pstore_zone 0x6759da74 register_pstore_zone +EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0x806f67af unregister_pstore_device +EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0xa93bbbf8 register_pstore_device +EXPORT_SYMBOL_GPL fs/pstore/pstore_zone 0x9e0c160d unregister_pstore_zone +EXPORT_SYMBOL_GPL fs/pstore/pstore_zone 0xccf6c687 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 @@ -17628,8 +17680,8 @@ EXPORT_SYMBOL_GPL lib/crypto/libpoly1305 0xfa617389 poly1305_update_generic EXPORT_SYMBOL_GPL lib/crypto/libsm4 0x24e254e8 sm4_expandkey EXPORT_SYMBOL_GPL lib/crypto/libsm4 0xfa81970e sm4_crypt_block -EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x0321a757 notifier_err_inject_dir -EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x059a2c76 notifier_err_inject_init +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x90442c84 notifier_err_inject_dir +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0xec7ad549 notifier_err_inject_init EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x1803a6ed raid6_2data_recov EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x2b30f429 raid6_call EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0xe4b051cf raid6_datap_recov @@ -17639,1063 +17691,1064 @@ 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 0x473f265f lowpan_header_compress -EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0xb0fa5d29 lowpan_header_decompress -EXPORT_SYMBOL_GPL net/802/garp 0x39aaa395 garp_uninit_applicant -EXPORT_SYMBOL_GPL net/802/garp 0x7a26fa66 garp_register_application -EXPORT_SYMBOL_GPL net/802/garp 0x840939c3 garp_init_applicant -EXPORT_SYMBOL_GPL net/802/garp 0x9ec719fc garp_request_leave -EXPORT_SYMBOL_GPL net/802/garp 0xda55ce91 garp_unregister_application -EXPORT_SYMBOL_GPL net/802/garp 0xde3bc248 garp_request_join -EXPORT_SYMBOL_GPL net/802/mrp 0x4dfb0b26 mrp_request_join -EXPORT_SYMBOL_GPL net/802/mrp 0x59f5b047 mrp_request_leave -EXPORT_SYMBOL_GPL net/802/mrp 0x5bd378b3 mrp_init_applicant -EXPORT_SYMBOL_GPL net/802/mrp 0x736f18d5 mrp_uninit_applicant -EXPORT_SYMBOL_GPL net/802/mrp 0xb6a81b6a mrp_register_application -EXPORT_SYMBOL_GPL net/802/mrp 0xbc1d09a4 mrp_unregister_application -EXPORT_SYMBOL_GPL net/802/stp 0xcd4cc4e6 stp_proto_unregister -EXPORT_SYMBOL_GPL net/802/stp 0xf9829513 stp_proto_register -EXPORT_SYMBOL_GPL net/9p/9pnet 0xa0bae190 p9_client_xattrwalk -EXPORT_SYMBOL_GPL net/9p/9pnet 0xd6a76ae1 p9_client_xattrcreate +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x1160d335 lowpan_header_decompress +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x91dfb5da lowpan_header_compress +EXPORT_SYMBOL_GPL net/802/garp 0x04019142 garp_register_application +EXPORT_SYMBOL_GPL net/802/garp 0x239e4bce garp_init_applicant +EXPORT_SYMBOL_GPL net/802/garp 0x70d707d2 garp_request_join +EXPORT_SYMBOL_GPL net/802/garp 0x96ecc81d garp_request_leave +EXPORT_SYMBOL_GPL net/802/garp 0xbf5faa73 garp_unregister_application +EXPORT_SYMBOL_GPL net/802/garp 0xc2f77115 garp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0x09f2dd65 mrp_request_leave +EXPORT_SYMBOL_GPL net/802/mrp 0x2600d3a7 mrp_unregister_application +EXPORT_SYMBOL_GPL net/802/mrp 0x5b8d3251 mrp_request_join +EXPORT_SYMBOL_GPL net/802/mrp 0xd4012e9f mrp_init_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0xf50f0e53 mrp_register_application +EXPORT_SYMBOL_GPL net/802/mrp 0xfd05902e mrp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/stp 0x929c686c stp_proto_register +EXPORT_SYMBOL_GPL net/802/stp 0xf1ef0ac3 stp_proto_unregister +EXPORT_SYMBOL_GPL net/9p/9pnet 0x75fa1d2d p9_client_xattrwalk +EXPORT_SYMBOL_GPL net/9p/9pnet 0xbeacff64 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 0x046620ec 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 0x107ad41b l2cap_chan_del -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x162fc399 l2cap_chan_connect -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x48fc9cfc l2cap_chan_put -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x7472818c l2cap_chan_create -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x9fde747b l2cap_chan_send -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xbb0d4659 l2cap_chan_list -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xbf896584 l2cap_add_psm -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xf90b77fc bt_debugfs -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xfc6d842a l2cap_chan_set_defaults -EXPORT_SYMBOL_GPL net/bluetooth/hidp/hidp 0xe92c1d72 hidp_hid_driver -EXPORT_SYMBOL_GPL net/bridge/bridge 0x0a2184eb br_vlan_get_pvid -EXPORT_SYMBOL_GPL net/bridge/bridge 0x3804f766 br_multicast_has_querier_anywhere -EXPORT_SYMBOL_GPL net/bridge/bridge 0x3e2a8414 br_vlan_get_info_rcu -EXPORT_SYMBOL_GPL net/bridge/bridge 0x3e59ffd9 br_multicast_has_router_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0x46dd91ce br_handle_frame_finish -EXPORT_SYMBOL_GPL net/bridge/bridge 0x4b35b495 br_multicast_router -EXPORT_SYMBOL_GPL net/bridge/bridge 0x4dae2afa br_get_ageing_time -EXPORT_SYMBOL_GPL net/bridge/bridge 0x6b2bedc1 br_forward_finish -EXPORT_SYMBOL_GPL net/bridge/bridge 0x6f55063f br_vlan_get_pvid_rcu -EXPORT_SYMBOL_GPL net/bridge/bridge 0x6f63db57 br_multicast_enabled -EXPORT_SYMBOL_GPL net/bridge/bridge 0x75c1ae4b br_forward -EXPORT_SYMBOL_GPL net/bridge/bridge 0x855ab373 br_fdb_clear_offload -EXPORT_SYMBOL_GPL net/bridge/bridge 0x959b19a2 br_port_get_stp_state -EXPORT_SYMBOL_GPL net/bridge/bridge 0x95a052d0 br_multicast_list_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0x9e3d6ff3 br_fdb_find_port -EXPORT_SYMBOL_GPL net/bridge/bridge 0xa0839e4c br_port_flag_is_set -EXPORT_SYMBOL_GPL net/bridge/bridge 0xa670947a br_dev_queue_push_xmit -EXPORT_SYMBOL_GPL net/bridge/bridge 0xb0044982 br_vlan_get_proto -EXPORT_SYMBOL_GPL net/bridge/bridge 0xb923d941 br_multicast_has_querier_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0xe29307ef nf_br_ops -EXPORT_SYMBOL_GPL net/bridge/bridge 0xe68d9426 br_vlan_enabled -EXPORT_SYMBOL_GPL net/bridge/bridge 0xf3a0e91a br_vlan_get_info -EXPORT_SYMBOL_GPL net/core/failover 0x022d3562 failover_unregister -EXPORT_SYMBOL_GPL net/core/failover 0x1e923eb1 failover_slave_unregister -EXPORT_SYMBOL_GPL net/core/failover 0xa63ae9d5 failover_register -EXPORT_SYMBOL_GPL net/dccp/dccp 0x0836e06a dccp_send_sync -EXPORT_SYMBOL_GPL net/dccp/dccp 0x0a30641e dccp_poll -EXPORT_SYMBOL_GPL net/dccp/dccp 0x0c55f394 dccp_feat_nn_get +EXPORT_SYMBOL_GPL net/ax25/ax25 0xb5a071a3 ax25_register_pid +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x2b99e00b l2cap_chan_put +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x2d97d5c4 l2cap_chan_del +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x320b684b l2cap_chan_list +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x7fc72739 l2cap_chan_set_defaults +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x8fd03584 bt_debugfs +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xa7f464bb l2cap_chan_send +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xbe4167b9 l2cap_chan_create +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xe4643186 l2cap_chan_connect +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xef80a8ce l2cap_add_psm +EXPORT_SYMBOL_GPL net/bluetooth/hidp/hidp 0x79faba42 hidp_hid_driver +EXPORT_SYMBOL_GPL net/bridge/bridge 0x09269cf3 br_vlan_get_info_rcu +EXPORT_SYMBOL_GPL net/bridge/bridge 0x0bcc5967 br_vlan_get_info +EXPORT_SYMBOL_GPL net/bridge/bridge 0x1aef6334 br_port_flag_is_set +EXPORT_SYMBOL_GPL net/bridge/bridge 0x27672e9b br_get_ageing_time +EXPORT_SYMBOL_GPL net/bridge/bridge 0x37e89aec br_multicast_has_querier_anywhere +EXPORT_SYMBOL_GPL net/bridge/bridge 0x3c828e74 br_handle_frame_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0x45c2b1ca br_multicast_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0x4baa829a br_multicast_list_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x67f5383b br_fdb_clear_offload +EXPORT_SYMBOL_GPL net/bridge/bridge 0x72dd6cf2 br_dev_queue_push_xmit +EXPORT_SYMBOL_GPL net/bridge/bridge 0x756b3c0b br_multicast_has_querier_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x796033fa nf_br_ops +EXPORT_SYMBOL_GPL net/bridge/bridge 0x804401e0 br_multicast_has_router_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0xae6c7614 br_port_get_stp_state +EXPORT_SYMBOL_GPL net/bridge/bridge 0xcf4d0cb9 br_fdb_find_port +EXPORT_SYMBOL_GPL net/bridge/bridge 0xcfa1ab33 br_vlan_get_pvid +EXPORT_SYMBOL_GPL net/bridge/bridge 0xd34e2d1e br_forward_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0xe0993110 br_multicast_router +EXPORT_SYMBOL_GPL net/bridge/bridge 0xe1e7394e br_forward +EXPORT_SYMBOL_GPL net/bridge/bridge 0xe35db3f9 br_vlan_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0xe47d25ce br_vlan_get_proto +EXPORT_SYMBOL_GPL net/bridge/bridge 0xe6f5230e br_vlan_get_pvid_rcu +EXPORT_SYMBOL_GPL net/core/failover 0x28b78d56 failover_register +EXPORT_SYMBOL_GPL net/core/failover 0xb56e15c0 failover_unregister +EXPORT_SYMBOL_GPL net/core/failover 0xc92ccd8e failover_slave_unregister +EXPORT_SYMBOL_GPL net/dccp/dccp 0x020ea919 dccp_check_req +EXPORT_SYMBOL_GPL net/dccp/dccp 0x0dd49894 dccp_set_state +EXPORT_SYMBOL_GPL net/dccp/dccp 0x15a9a2c0 dccp_parse_options EXPORT_SYMBOL_GPL net/dccp/dccp 0x182ec2bf dccp_ackvec_parsed_add -EXPORT_SYMBOL_GPL net/dccp/dccp 0x1c26f406 dccp_check_req -EXPORT_SYMBOL_GPL net/dccp/dccp 0x281e8ef3 dccp_send_ack -EXPORT_SYMBOL_GPL net/dccp/dccp 0x40307fda dccp_ctl_make_reset -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4b21b05a dccp_parse_options +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1c2ec062 dccp_connect +EXPORT_SYMBOL_GPL net/dccp/dccp 0x3ad0048e dccp_ctl_make_reset +EXPORT_SYMBOL_GPL net/dccp/dccp 0x42292022 dccp_init_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x48f6c594 inet_dccp_listen +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4b344f65 dccp_reqsk_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4ca628f6 dccp_feat_signal_nn_change EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4fc43c1b dccp_feat_signal_nn_change -EXPORT_SYMBOL_GPL net/dccp/dccp 0x51cf5e5f dccp_ioctl -EXPORT_SYMBOL_GPL net/dccp/dccp 0x560a3353 dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5130ae5a dccp_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x540ea053 dccp_close +EXPORT_SYMBOL_GPL net/dccp/dccp 0x546df14a dccp_recvmsg EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics -EXPORT_SYMBOL_GPL net/dccp/dccp 0x5e4c07d8 dccp_shutdown +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5ef92795 dccp_send_sync EXPORT_SYMBOL_GPL net/dccp/dccp 0x722630de dccp_hashinfo -EXPORT_SYMBOL_GPL net/dccp/dccp 0x74d0f6b0 dccp_rcv_state_process -EXPORT_SYMBOL_GPL net/dccp/dccp 0x795a8dec inet_dccp_listen -EXPORT_SYMBOL_GPL net/dccp/dccp 0x7fa87343 dccp_init_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x74f98270 dccp_insert_option +EXPORT_SYMBOL_GPL net/dccp/dccp 0x77f5b164 dccp_poll +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7b8f73b7 dccp_feat_nn_get EXPORT_SYMBOL_GPL net/dccp/dccp 0x80993155 dccp_timestamp EXPORT_SYMBOL_GPL net/dccp/dccp 0x86be7924 dccp_packet_name EXPORT_SYMBOL_GPL net/dccp/dccp 0x884a32bd dccp_death_row -EXPORT_SYMBOL_GPL net/dccp/dccp 0x8fc416b7 dccp_connect -EXPORT_SYMBOL_GPL net/dccp/dccp 0x91dd8b7d dccp_child_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9144792b dccp_destroy_sock EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup -EXPORT_SYMBOL_GPL net/dccp/dccp 0x9971ecfa dccp_destroy_sock -EXPORT_SYMBOL_GPL net/dccp/dccp 0x9af5c300 dccp_insert_option -EXPORT_SYMBOL_GPL net/dccp/dccp 0xa8c89182 dccp_sendmsg -EXPORT_SYMBOL_GPL net/dccp/dccp 0xb81216ef dccp_sync_mss -EXPORT_SYMBOL_GPL net/dccp/dccp 0xc66a7fdf dccp_make_response -EXPORT_SYMBOL_GPL net/dccp/dccp 0xc9df74f1 dccp_create_openreq_child -EXPORT_SYMBOL_GPL net/dccp/dccp 0xd27baf86 dccp_close +EXPORT_SYMBOL_GPL net/dccp/dccp 0x98399135 dccp_sync_mss +EXPORT_SYMBOL_GPL net/dccp/dccp 0x98e046b5 dccp_done +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9dc1fc0f dccp_rcv_state_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9ebfab1d dccp_shutdown +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa7a26cec dccp_disconnect +EXPORT_SYMBOL_GPL net/dccp/dccp 0xadc33751 dccp_child_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0xb69a7dbf dccp_rcv_established +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc9ee611e dccp_sendmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd18e69af dccp_create_openreq_child EXPORT_SYMBOL_GPL net/dccp/dccp 0xd75b7072 dccp_orphan_count -EXPORT_SYMBOL_GPL net/dccp/dccp 0xd88f3465 dccp_reqsk_init -EXPORT_SYMBOL_GPL net/dccp/dccp 0xd8c43eb7 dccp_recvmsg -EXPORT_SYMBOL_GPL net/dccp/dccp 0xdf9657dc dccp_done -EXPORT_SYMBOL_GPL net/dccp/dccp 0xe13c2e06 dccp_reqsk_send_ack -EXPORT_SYMBOL_GPL net/dccp/dccp 0xe2f1aa36 dccp_rcv_established -EXPORT_SYMBOL_GPL net/dccp/dccp 0xed7c2b61 dccp_set_state -EXPORT_SYMBOL_GPL net/dccp/dccp 0xedba8e31 dccp_getsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0xf0138992 dccp_disconnect -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x28447d2a dccp_invalid_packet -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x7efee0b4 dccp_v4_connect -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x82e3acfd dccp_v4_send_check -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x86477e6a dccp_v4_request_recv_sock -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xe86a8754 dccp_v4_conn_request -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xe8886630 dccp_v4_do_rcv -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x0206293e dsa_devlink_params_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x0682eea5 dsa_8021q_tx_vid -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x0fcb175e dsa_devlink_resource_occ_get_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x126f91ca dsa_switch_resume -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x141db165 dsa_8021q_xmit -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x1cd7d1a2 dsa_port_get_phy_strings -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x1d66db89 dsa_port_get_phy_sset_count -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x1e7226e0 dsa_register_switch -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x265c2772 dsa_tag_drivers_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x2b70ba3a dsa_switch_find -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x30bb58ff dsa_devlink_region_create -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x324b98a2 dsa_tag_drivers_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x369755a0 dsa_dev_to_net_device -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x3bbf24fc dsa_unregister_switch +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe13319a3 dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe8f2acee dccp_ioctl +EXPORT_SYMBOL_GPL net/dccp/dccp 0xead998cf dccp_make_response +EXPORT_SYMBOL_GPL net/dccp/dccp 0xeb5a347d dccp_reqsk_init +EXPORT_SYMBOL_GPL net/dccp/dccp 0xfca54259 dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x0c659f8d dccp_v4_do_rcv +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x69eb9ca5 dccp_v4_request_recv_sock +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x6b2fa3a5 dccp_v4_conn_request +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xa7eb0b48 dccp_v4_connect +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xdd5ede98 dccp_invalid_packet +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xf0daec5d dccp_v4_send_check +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x09a0a15c dsa_tag_8021q_bridge_tx_fwd_unoffload +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x0ba2e0fd dsa_port_get_ethtool_phy_stats +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x1cfb933f dsa_port_get_phy_sset_count +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x23786767 dsa_8021q_xmit +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x23aee8c2 dsa_tag_drivers_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x27db5e09 dsa_devlink_region_create +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x27eea9eb dsa_devlink_resources_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x2fa860a6 dsa_devlink_resource_occ_get_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x30909c63 dsa_unregister_switch +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x35d2bedb dsa_switch_suspend +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x376a2121 dsa_port_phylink_mac_change EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x417d1fed dsa_8021q_rx_switch_id -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x41b095e8 dsa_tag_8021q_bridge_tx_fwd_unoffload -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x53e18dd1 dsa_port_from_netdev +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x495a4e2a dsa_devlink_resource_occ_get_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x4c0180fc dsa_port_get_phy_strings +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x528f1e86 dsa_slave_dev_check EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x5928bba7 vid_is_dsa_8021q_rxvlan -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x67036b9b dsa_8021q_rx_vid -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x777adb89 dsa_port_get_ethtool_phy_stats -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x7c26a701 dsa_devlink_port_region_create -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x828057cd dsa_tag_8021q_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x87b4ef0f dsa_devlink_params_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x88c26231 dsa_port_phylink_mac_change -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x97233b14 dsa_8021q_rcv -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x9c6d8f6b dsa_devlink_param_set +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x65440902 dsa_tag_8021q_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x680dbb91 dsa_tag_8021q_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x6832a9ec dsa_switch_find +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x7e3c69bd dsa_devlink_port_region_create +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x81b83d74 dsa_tag_drivers_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x988aec26 dsa_devlink_resource_register EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x9e59271d dsa_8021q_rx_source_port -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xa97c5a5b dsa_tag_8021q_bridge_tx_fwd_offload -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xbc165a02 dsa_enqueue_skb +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xa66d373a dsa_register_switch +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xaa87576c dsa_tag_8021q_bridge_tx_fwd_offload +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xb156c68c dsa_8021q_rcv +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xbd2df3bf dsa_port_from_netdev EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xbe3856fc dsa_8021q_bridge_tx_fwd_offload_vid +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xbf441f76 dsa_dev_to_net_device EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc23e8d5f dsa_devlink_region_destroy -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc3fbc74b dsa_devlink_param_get -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc5aad395 dsa_slave_dev_check -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xcd209561 dsa_devlink_resource_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xdbf3cef4 dsa_switch_shutdown -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xe0006d7e dsa_devlink_resources_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xe7e74838 dsa_switch_suspend -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xee572ee4 dsa_devlink_resource_occ_get_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc50af1e7 dsa_switch_resume +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc65a60d9 dsa_switch_shutdown +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc9ef8ad8 dsa_enqueue_skb +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xcd5fe563 dsa_devlink_params_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xd76c6e80 dsa_devlink_param_get +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xe88bfcc6 dsa_8021q_rx_vid +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xee754095 dsa_devlink_params_register EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf13e1803 vid_is_dsa_8021q +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf3041a9b dsa_devlink_param_set EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf6f3b5c8 vid_is_dsa_8021q_txvlan -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf89e7101 dsa_tag_8021q_unregister -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x16fec865 ieee802154_hdr_peek_addrs -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x514803d3 ieee802154_hdr_pull +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xfed4d851 dsa_8021q_tx_vid +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x045873dc ieee802154_hdr_pull +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x5f13980b ieee802154_hdr_peek_addrs +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x6732a8e3 ieee802154_hdr_push EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x87e2553b ieee802154_max_payload -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xd7507259 ieee802154_hdr_peek -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xffc124d4 ieee802154_hdr_push +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x8cf3bbdc ieee802154_hdr_peek +EXPORT_SYMBOL_GPL net/ife/ife 0x1165a64c ife_decode EXPORT_SYMBOL_GPL net/ife/ife 0x6210e871 ife_tlv_meta_next -EXPORT_SYMBOL_GPL net/ife/ife 0x668d5ca9 ife_encode EXPORT_SYMBOL_GPL net/ife/ife 0x67db2029 ife_tlv_meta_decode -EXPORT_SYMBOL_GPL net/ife/ife 0x97f22175 ife_decode +EXPORT_SYMBOL_GPL net/ife/ife 0x7f9058dd ife_encode EXPORT_SYMBOL_GPL net/ife/ife 0xe7888e98 ife_tlv_meta_encode -EXPORT_SYMBOL_GPL net/ipv4/esp4 0x45e54aaa esp_output_tail -EXPORT_SYMBOL_GPL net/ipv4/esp4 0xa1e59fec esp_input_done2 -EXPORT_SYMBOL_GPL net/ipv4/esp4 0xdc334283 esp_output_head -EXPORT_SYMBOL_GPL net/ipv4/gre 0x37a2a16f gre_del_protocol -EXPORT_SYMBOL_GPL net/ipv4/gre 0xd54a9c0c gre_add_protocol -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x07bad67e inet_diag_msg_attrs_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x20243cb7 inet_diag_unregister -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x56ef6610 inet_diag_bc_sk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x72c5cfe0 inet_diag_find_one_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x77013831 inet_sk_diag_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xbc1a3c3e inet_diag_register -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xc5935259 inet_diag_dump_one_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xfa14e911 inet_diag_msg_common_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xfe34b797 inet_diag_dump_icsk -EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0x9d103663 gretap_fb_dev_create -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x0f485e24 ip_tunnel_newlink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x115d89a0 ip_md_tunnel_xmit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x18aa6fda ip_tunnel_init -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x1a2537bb ip_tunnel_xmit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x290df33c ip_tunnel_uninit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x2a40051b ip_tunnel_lookup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x3048ab7e ip_tunnel_siocdevprivate -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x3e0b2796 __ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x55ec476a ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x5eaf6447 ip_tunnel_delete_nets -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x6da15e81 ip_tunnel_changelink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x7b421e01 ip_tunnel_setup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x8a5ccec9 ip_tunnel_encap_setup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x94205a26 ip_tunnel_init_net -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xa4fa8f5c ip_tunnel_dellink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xc1182feb ip_tunnel_ctl -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xc92aa02f ip_tunnel_rcv -EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0x89287cc3 arpt_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0x3a236da3 ipt_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0xbd7040ed nf_defrag_ipv4_enable -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0xd72c9c07 nf_defrag_ipv4_disable -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0x4db2f088 nf_dup_ipv4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x1541aacc nf_send_unreach -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x4ecbe027 nf_reject_ip_tcphdr_get -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x6014e4d1 nf_send_reset -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x91558e28 nf_reject_skb_v4_unreach -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x91e19ec6 nf_reject_iphdr_put -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x92445c76 nf_reject_skb_v4_tcp_reset -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xa374b90a nf_reject_ip_tcphdr_put -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_socket_ipv4 0x23ea5d53 nf_sk_lookup_slow_v4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x0ec13905 nf_tproxy_handle_time_wait4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0xa48d5852 nf_tproxy_laddr4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0xdbfc6d0f nf_tproxy_get_sock_v4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0x2840dc91 nft_fib4_eval -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0x4f7ae19b nft_fib4_eval_type -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x09662a0e tcp_vegas_cwnd_event -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x199d2f89 tcp_vegas_init -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x41380c16 tcp_vegas_get_info -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x9518fb41 tcp_vegas_state -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xf88a9c43 tcp_vegas_pkts_acked -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x00ae21a6 udp_tunnel_notify_del_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x193fb72f udp_tunnel_drop_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x24fe98cd udp_tunnel_push_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x337c3e15 udp_tun_rx_dst -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x6e9da9c5 setup_udp_tunnel_sock -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x9066c3f0 udp_tunnel_sock_release -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xc672a6e6 udp_tunnel_xmit_skb -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xefa7391b udp_tunnel_notify_add_rx_port -EXPORT_SYMBOL_GPL net/ipv6/esp6 0x17cfe045 esp6_output_tail -EXPORT_SYMBOL_GPL net/ipv6/esp6 0xc89e08fc esp6_output_head -EXPORT_SYMBOL_GPL net/ipv6/esp6 0xd58a5995 esp6_input_done2 -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x64fa816c ip6_tnl_encap_setup -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xd77b3a63 ip6_tnl_xmit_ctl -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xdeaaaecb ip6_tnl_rcv_ctl -EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0xb9d38466 udp_sock_create6 -EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0xfb5ac36e udp_tunnel6_xmit_skb -EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0x0b45fc2d ip6t_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x0160660e nf_defrag_ipv6_enable -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x26898fdb nf_defrag_ipv6_disable -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xa429f6b2 nf_ct_frag6_gather -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0x5f0bc9fb nf_dup_ipv6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x0ebfd337 nf_reject_skb_v6_unreach -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x2c56ddaf nf_reject_ip6hdr_put -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x4d220f61 nf_send_unreach6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x68aef1c7 nf_reject_skb_v6_tcp_reset -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x6b5341cf nf_reject_ip6_tcphdr_put -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x8ed75fa1 nf_send_reset6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xc1f7b16f nf_reject_ip6_tcphdr_get -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_socket_ipv6 0xa48dfc3a nf_sk_lookup_slow_v6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x05111b8d nf_tproxy_get_sock_v6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x68704eae nf_tproxy_handle_time_wait6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0xf5a96d46 nf_tproxy_laddr6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0x34cdb194 nft_fib6_eval -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0x5a7d0ff6 nft_fib6_eval_type -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x1ff57097 l2tp_session_register -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x203e8548 l2tp_tunnel_get -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x35a731b7 l2tp_tunnel_get_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x35f7ede7 l2tp_session_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x385aa303 l2tp_session_inc_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x3a224cf0 l2tp_tunnel_dec_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x3c17210d l2tp_session_set_header_len -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x53b0c979 l2tp_tunnel_register -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x5472e3c5 l2tp_session_get -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x5e8eb37a l2tp_session_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x6dadbd33 l2tp_session_dec_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x6e8b5c8a l2tp_session_get_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x770235c2 l2tp_sk_to_tunnel -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x7cf4272d l2tp_tunnel_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x8bc50b7d l2tp_tunnel_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x8bdbd930 l2tp_xmit_skb -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x92769609 l2tp_tunnel_inc_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x9b1acd7e l2tp_udp_encap_recv -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb4c24939 l2tp_session_get_by_ifname -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf5c4f169 l2tp_tunnel_get_session -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xfb793f00 l2tp_recv_common -EXPORT_SYMBOL_GPL net/l2tp/l2tp_ip 0x7a7d19ed l2tp_ioctl -EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x1f628578 l2tp_nl_register_ops +EXPORT_SYMBOL_GPL net/ipv4/esp4 0x35241039 esp_output_tail +EXPORT_SYMBOL_GPL net/ipv4/esp4 0x7d20526c esp_input_done2 +EXPORT_SYMBOL_GPL net/ipv4/esp4 0xa114746b esp_output_head +EXPORT_SYMBOL_GPL net/ipv4/gre 0x1aba3b20 gre_add_protocol +EXPORT_SYMBOL_GPL net/ipv4/gre 0x597a29de gre_del_protocol +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x2af861de inet_diag_msg_attrs_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x38676b6c inet_diag_dump_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x589efe5f inet_diag_dump_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x5cf9e2de inet_diag_unregister +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x6e404ca5 inet_sk_diag_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x88bff364 inet_diag_msg_common_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xbdc5f126 inet_diag_bc_sk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xc3bf7c64 inet_diag_find_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xd9b91e80 inet_diag_register +EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0xcd0ea688 gretap_fb_dev_create +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x141de945 ip_md_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x157458d9 ip_tunnel_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x187cf6a9 ip_tunnel_uninit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x1951d5af ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x3ca6f071 __ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x4053544b ip_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x42a4b2b3 ip_tunnel_changelink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x5066bfc1 ip_tunnel_ctl +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x50c4dcb1 ip_tunnel_lookup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x58619c75 ip_tunnel_delete_nets +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x5d2a94da ip_tunnel_init_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x7a024891 ip_tunnel_dellink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x7ca017aa ip_tunnel_siocdevprivate +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x80fe9f08 ip_tunnel_encap_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xae83b97b ip_tunnel_newlink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xd034e870 ip_tunnel_init +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xe2a9ec4d ip_tunnel_rcv +EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0xbd41bf92 arpt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0xa296e301 ipt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0xe3a42b97 nf_defrag_ipv4_enable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0xf3ce872f nf_defrag_ipv4_disable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0xe26f2c03 nf_dup_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x1bb8bdc8 nf_reject_ip_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x56ef0958 nf_reject_ip_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xb69c9d8e nf_reject_iphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xd38233d4 nf_reject_skb_v4_tcp_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xd60226e9 nf_send_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xdbcb178a nf_reject_skb_v4_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xdf40a5c4 nf_send_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_socket_ipv4 0xcd272568 nf_sk_lookup_slow_v4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x46f04db0 nf_tproxy_laddr4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x6ee0b2bd nf_tproxy_get_sock_v4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0xef747b45 nf_tproxy_handle_time_wait4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0x0b64fed5 nft_fib4_eval_type +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0x6666218e nft_fib4_eval +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x19326e12 tcp_vegas_state +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x3cfa3538 tcp_vegas_init +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x405c9527 tcp_vegas_cwnd_event +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x618848d2 tcp_vegas_pkts_acked +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xbbca09d5 tcp_vegas_get_info +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x2049536b udp_tunnel_xmit_skb +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x24b74b2e udp_tunnel_push_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x2774fc06 udp_tun_rx_dst +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x4eee0f7a udp_tunnel_notify_del_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xa9fd4c4d setup_udp_tunnel_sock +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xdb2429f3 udp_tunnel_sock_release +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xe891dcd3 udp_tunnel_drop_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xed6a75d4 udp_tunnel_notify_add_rx_port +EXPORT_SYMBOL_GPL net/ipv6/esp6 0x061bf6bd esp6_output_head +EXPORT_SYMBOL_GPL net/ipv6/esp6 0x41a86c65 esp6_output_tail +EXPORT_SYMBOL_GPL net/ipv6/esp6 0xd66797b6 esp6_input_done2 +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x27eb1e6a ip6_tnl_rcv_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x313dea2e ip6_tnl_xmit_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x87c62b85 ip6_tnl_encap_setup +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0xe6572d80 udp_tunnel6_xmit_skb +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0xe75020f5 udp_sock_create6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0x8ef0fb39 ip6t_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x3436dafb nf_defrag_ipv6_disable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x3b0a3f98 nf_ct_frag6_gather +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x64105aed nf_defrag_ipv6_enable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0x971f9c85 nf_dup_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x2f04715e nf_send_unreach6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x3a5044b3 nf_send_reset6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x68423141 nf_reject_ip6_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x68d6ac0e nf_reject_ip6_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x80fb9b9c nf_reject_skb_v6_tcp_reset +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xb7211936 nf_reject_ip6hdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xea4534d8 nf_reject_skb_v6_unreach +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_socket_ipv6 0x4a408401 nf_sk_lookup_slow_v6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x4a004292 nf_tproxy_get_sock_v6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x8a298401 nf_tproxy_laddr6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0xddeb80a4 nf_tproxy_handle_time_wait6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0x3c95b88b nft_fib6_eval +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0x4e4c4536 nft_fib6_eval_type +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x0f7cb800 l2tp_session_inc_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x19c981c1 l2tp_session_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x1fbd437e l2tp_session_register +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x254f08d1 l2tp_tunnel_get_session +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x485ba1c3 l2tp_udp_encap_recv +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x50417573 l2tp_session_get +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x5a4e9236 l2tp_recv_common +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x6b2791f3 l2tp_session_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x74fcc0de l2tp_tunnel_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x88012b26 l2tp_sk_to_tunnel +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x948f3bd8 l2tp_tunnel_inc_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x9540cbc5 l2tp_session_dec_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xa0368998 l2tp_tunnel_dec_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb6246dfc l2tp_session_get_by_ifname +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb78d4eee l2tp_tunnel_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xc60b2b9f l2tp_tunnel_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xeeb279b1 l2tp_session_set_header_len +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf3213ac9 l2tp_session_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xfbf9c7e7 l2tp_tunnel_get +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xfc1f1cde l2tp_xmit_skb +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xfc378e61 l2tp_tunnel_register +EXPORT_SYMBOL_GPL net/l2tp/l2tp_ip 0x03b10391 l2tp_ioctl EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x130cd34f ieee80211_find_sta_by_ifaddr -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x13546b8f ieeee80211_obss_color_collision_notify -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x2329272c ieee80211_gtk_rekey_notify -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x3197da6d ieee80211_update_mu_groups -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x3e6aebad ieee80211_iterate_active_interfaces_atomic +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0xe37607e1 l2tp_nl_register_ops +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x1559c2bc ieee80211_iterate_active_interfaces_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x16d26a58 ieee80211_ave_rssi +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x1b52d1cd ieee80211_calc_rx_airtime +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x200cfe26 ieee80211_gtk_rekey_notify +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x27338598 ieee80211_calc_tx_airtime +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x34b80bce ieee80211_iter_chan_contexts_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x38671f0b ieee80211_vif_to_wdev +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x485f3ea6 ieee80211_ready_on_channel +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x4f23a637 ieee80211_update_mu_groups EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x5250cf98 ieee80211_tkip_add_iv EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x59c13bed ieee80211_key_mic_failure -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x5c313301 ieee80211_iter_chan_contexts_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x6c1d12bb ieee80211_ready_on_channel -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7614ac03 wdev_to_ieee80211_vif -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x86ec03d7 ieee80211_iterate_active_interfaces_mtx -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x92296371 ieee80211_vif_to_wdev +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x5c94e4cc ieee80211_request_smps +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x6c450c08 ieee80211_find_sta_by_ifaddr +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x79bcb24e wdev_to_ieee80211_vif +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7a92c656 ieee80211_iterate_interfaces +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7b4c10e0 ieee80211_remain_on_channel_expired +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x9a117cdc ieee80211_iterate_active_interfaces_mtx +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x9ad76763 ieee80211_iterate_stations_atomic EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xa1247034 ieee80211_remove_key EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xa4b2b77e ieee80211_key_replay -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xa7461f94 ieee80211_iterate_stations_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xada2ef31 ieee80211_iterate_interfaces -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xc4f5217c ieee80211_color_change_finish -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xca8182c4 ieee80211_resume_disconnect -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xcbeb8b46 ieee80211_calc_rx_airtime -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd2ff649d ieee80211_calc_tx_airtime +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xb010bd7b ieee80211_gtk_rekey_add +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xc59ef9bb ieee80211_resume_disconnect +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd80b1d17 ieeee80211_obss_color_collision_notify EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd8e09da4 ieee80211_set_key_rx_seq -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xec96f8d7 ieee80211_gtk_rekey_add -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf5055c97 ieee80211_remain_on_channel_expired -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf6bdfca7 ieee80211_request_smps -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xff67ae01 ieee80211_ave_rssi -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x74135353 nla_put_labels +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xeb87e1fb ieee80211_color_change_finish +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x008e4308 nla_put_labels +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x5a5bec15 mpls_stats_inc_outucastpkts +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x622bdda4 mpls_pkt_too_big +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x6d9fa6ae mpls_output_possible EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x7670b536 nla_get_labels -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x77d3f290 mpls_output_possible -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x8c880f28 mpls_stats_inc_outucastpkts -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xeb09b29e mpls_pkt_too_big -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xf12900a5 mpls_dev_mtu -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x04a0228d ip_set_init_comment -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x0aa3b61c ip_set_type_register -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x0ad59f8b ip_set_put_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x1b1226b0 ip_set_get_ip4_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x1cd84b8c ip_set_get_byname +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xcf720ede mpls_dev_mtu +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x0382942e ip_set_elem_len +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x0bd50924 ip_set_name_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x15f0b394 ip_set_put_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x17696e3a ip_set_del +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x1b1a7bae ip_set_get_byname EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x22d966c6 ip_set_range_to_cidr EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x3b055052 ip_set_test -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x412f5ed1 ip_set_get_ip6_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x456d8b13 ip_set_type_unregister -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x5f7a7b5e ip_set_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x69b42ac1 ip_set_get_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x4a2cfbe2 ip_set_put_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x4dd9a807 ip_set_add +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x67d47edf ip_set_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x778a75eb ip_set_init_comment EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7924b6de ip_set_hostmask_map -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x8104d9b0 ip_set_name_byindex EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x81fff2d1 ip_set_netmask_map -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x8a19274e ip_set_nfnl_get_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x99b10671 ip_set_match_extensions EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9e98722b ip_set_get_ipaddr6 -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa1120db5 ip_set_elem_len +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa06c1aff ip_set_test EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa293f8a6 ip_set_get_ipaddr4 -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa9d9b324 ip_set_del -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xd53f0141 ip_set_put_flags -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xd8e91481 ip_set_nfnl_put -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xd9bc5c40 ip_set_add +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xb5b1e3e8 ip_set_nfnl_put +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xbfbc2bb9 ip_set_nfnl_get_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xc6fdb057 ip_set_type_unregister +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xd2a034da ip_set_get_ip4_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xdaa53e44 ip_set_put_flags +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xe6dd5a1a ip_set_get_ip6_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xee4c2fbe ip_set_get_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xef5ba169 ip_set_match_extensions EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf3b4d4ae ip_set_alloc -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xfe6cbfb7 ip_set_put_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x3350c01c ip_vs_conn_out_get_proto -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x5f422c30 register_ip_vs_pe -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x7d18af9c ip_vs_conn_in_get_proto -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xe0463450 unregister_ip_vs_pe -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x17f4b07d nf_conncount_gc_list +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf41c911f ip_set_type_register +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x4686c8ac ip_vs_conn_out_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xc1b3835e ip_vs_conn_in_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xe8522b33 unregister_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xf54d7cff register_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x11ff6587 nf_conncount_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x338c221b nf_conncount_destroy EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x3ff55ad3 nf_conncount_cache_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x62ccae6b nf_conncount_count EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x8c4cb9c3 nf_conncount_list_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x99023f01 nf_conncount_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xbdb65cd5 nf_conncount_count -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xbf88882b nf_conncount_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xe6b4489a nf_conncount_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0003a50d nf_conntrack_helper_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x07378eb7 nf_l4proto_log_invalid -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0a68f487 nf_ct_timeout_put_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0a943e0d nf_conntrack_count -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0a98adb6 nf_ct_port_tuple_to_nlattr +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xcf742bb1 nf_conncount_gc_list +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xf7dbece7 nf_conncount_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x01100a9f nf_conntrack_alter_reply +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0180cbf3 __nf_ct_try_assign_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0b8bc484 nf_conntrack_register_notifier EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0bc00f80 nf_nat_helper_try_module_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0e97c1fc nf_ct_seq_adjust -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x10997495 nf_connlabels_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x183e83ed nf_conntrack_helper_try_module_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x18925795 nf_ct_seqadj_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1957dcfd nf_ct_helper_expectfn_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1a0f54b6 nf_ct_helper_expectfn_find_by_name -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1a983088 nf_conntrack_helpers_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x222388b7 nf_ct_netns_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x27d6401b nf_conntrack_hash_check_insert -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x280af41c nf_conntrack_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0d0a8ab5 nf_conntrack_in +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0e8824f4 nf_ct_set_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0f9a7891 __nf_conntrack_helper_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x102cd9aa nf_ct_expect_related_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x15e0fe42 nf_ct_expect_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x16914af3 nf_ct_l4proto_log_invalid +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x16a61851 nf_conntrack_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x18c9fd42 nf_ct_iterate_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1f388714 nf_ct_extend_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2769d08d nf_ct_expect_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x289901e8 __nf_ct_expect_find 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 0x2e73e071 nf_ct_remove_expectations -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3067dcae nf_conntrack_alter_reply -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x311f8a34 nf_ct_tcp_seqadj_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x324fb1d3 nf_ct_l4proto_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x360e33a9 nf_ct_helper_log -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x36c3f979 nf_ct_gre_keymap_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x379f70bc nf_ct_seqadj_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3cec030e nf_connlabels_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4100ee6c __nf_ct_refresh_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4792cdfe __nf_conntrack_helper_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x48583aaf nf_ct_expect_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x48875bcb nf_ct_expect_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4b21823b nf_ct_get_id -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x510c4506 nf_nat_helper_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x513ed552 nf_ct_expect_related_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5358de49 nf_ct_helper_expectfn_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x55df2326 nf_ct_unexpect_related -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x569ca720 nf_ct_gre_keymap_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5822561c nf_nat_helper_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5fce420d nf_conntrack_tuple_taken -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x67440ca9 nf_ct_timeout_find_get_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x68ca70a2 nf_ct_expect_iterate_net +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2b7f1776 __nf_conntrack_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2daf009d nf_ct_timeout_put_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x32428814 nf_ct_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3318371f nf_ct_destroy_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x38810ccb nf_ct_iterate_cleanup_net +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x450278fa nf_nat_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x472dfbab nf_ct_unexpect_related +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4d4eab0a nf_ct_delete +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5b5c1cc7 nf_ct_gre_keymap_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5c4bf631 nf_ct_expect_iterate_net +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5d03f279 nf_ct_seq_offset +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5eeed55d __nf_ct_refresh_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x61362a29 nf_l4proto_log_invalid +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x61877e94 nf_ct_helper_expectfn_register EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x693c3961 nf_ct_helper_hash -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6e43818c nf_conntrack_helper_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x720c8585 nf_conntrack_register_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x72c5d7fe nf_ct_unconfirmed_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x74eded11 nf_conntrack_in -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x83bbd77a nf_ct_delete -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x85221250 nf_ct_extend_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x855fb05a nf_conntrack_helper_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x874a6f1a nf_ct_expect_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x885d7fc0 nf_ct_acct_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8d04de03 nf_ct_helper_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6b22f908 nf_ct_unconfirmed_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6cc50521 nf_ct_netns_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6e8d54d8 nf_ct_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6f0b5f68 nf_ct_netns_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7089c3e1 nf_connlabels_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x746b428c nf_conntrack_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x75974bab nf_ct_helper_log +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7ad8d8d5 nf_conntrack_helpers_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7c08e266 nf_connlabels_replace +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7fa76348 nf_ct_helper_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x811311f7 nf_ct_bridge_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8adcb684 nf_ct_extend_unregister EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ffe7e89 nf_conntrack_htable_size -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x925a130b nf_ct_tmpl_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x96e1567a nf_ct_helper_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x96f1540f nf_ct_acct_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x985ffb89 nf_conntrack_helper_register EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9adb7399 nf_conntrack_expect_lock -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9f1aff11 nf_ct_extend_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa08a4f99 nf_ct_expect_iterate_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa30ea038 nf_conntrack_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa7d542bc nf_ct_bridge_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa9cab32c nf_ct_bridge_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xab5386c2 nf_conntrack_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9ba3e69e nf_conntrack_hash_check_insert +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9cb51fab nf_ct_gre_keymap_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa559d314 nf_conntrack_count +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa579fe81 nf_conntrack_tuple_taken +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa7576765 nf_ct_kill_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa90e541e nf_ct_port_tuple_to_nlattr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xab752f86 nf_ct_helper_expectfn_find_by_name +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xadde4111 nf_ct_helper_expectfn_unregister 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 0xb52783d0 nf_ct_get_tuplepr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb57e9229 nf_ct_expect_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbc4a26ff nf_ct_remove_expect +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb062b8a8 nf_conntrack_helper_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb14d8599 nf_ct_expect_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb2fac040 nf_conntrack_eventmask_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbc992fe2 nf_ct_get_id +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbd973fd9 nf_ct_timeout_find_get_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbe0a0780 nf_conntrack_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbf13a9e5 nf_conntrack_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc1606516 nf_confirm EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc18ac88d nf_ct_expect_hsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc2dbfa90 nf_ct_tmpl_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc1b3933f nf_ct_deliver_cached_events +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc2d15cd0 nf_ct_remove_expectations +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc35da954 nf_ct_seq_adjust EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc40f284c nf_ct_helper_hsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc4199e3c nf_ct_deliver_cached_events -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc473c380 nf_ct_untimeout -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcbbc1001 nf_ct_netns_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcd3a3740 nf_conntrack_unregister_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcd61efea nf_ct_destroy_timeout -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xce61ff51 nf_ct_helper_expectfn_find_by_symbol -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd003ba06 nf_connlabels_replace -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd070ea3e nf_confirm -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd0aa8d66 nf_conntrack_helpers_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc7d2f226 nf_ct_get_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcb52e010 nf_nat_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xce86ddff nf_ct_set_auto_assign_helper_warned +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd1ab372b nf_ct_tcp_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd3392830 nf_ct_remove_expect EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd505c3e0 nf_ct_port_nlattr_tuple_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd6f0d06c nf_ct_helper_expectfn_find_by_symbol +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd72b7277 nf_ct_tmpl_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd92a1710 nf_nat_helper_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd9d6912f nf_conntrack_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xda2915a2 nf_ct_unlink_expect_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdb17617e nf_ct_bridge_unregister EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdba7326b nf_conntrack_lock -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdc307df3 nf_ct_iterate_destroy EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdf0aed48 nf_ct_port_nla_policy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe300d0d0 __nf_ct_try_assign_helper -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe9c42278 __nf_conntrack_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe2b42a54 nf_ct_untimeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe52ee7fe nf_conntrack_helpers_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe768c018 nf_conntrack_helper_try_module_get EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xec8beba6 nf_ct_expect_hash -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xed3978de nf_ct_helper_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xed91b826 nf_nat_helper_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xee3245d7 nf_ct_set_timeout -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xeebf53f9 nf_ct_iterate_cleanup_net -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf0056cc4 nf_ct_seq_offset EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf5b21e6f __nf_ct_expect_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf61cca71 nf_conntrack_eventmask_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf67d76c9 nf_ct_l4proto_log_invalid -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf7cc3d2f nf_ct_unlink_expect_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf82665b0 nf_connlabels_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfbd6f344 nf_ct_expect_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfded18ea nf_ct_expect_iterate_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfe6e082b nf_ct_seqadj_init EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfe731af8 nf_ct_invert_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfe8d85ae nf_ct_kill_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0xa5f4cdcf nf_nat_amanda_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0xd6766293 nf_conntrack_broadcast_help -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0x55d527c5 nf_nat_ftp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x0b0e7291 get_h225_addr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x59028ef1 nat_h245_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x652254d0 set_sig_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x7c717ba7 nat_callforwarding_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xb695f4b1 nat_q931_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xb8024738 set_ras_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xc4dcf80d nat_rtp_rtcp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xd5ad09f7 set_h225_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xfc487993 nat_t120_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xfeea0763 set_h245_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0x5726ea37 nf_nat_irc_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x7f2a34f5 nf_nat_pptp_hook_inbound -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x9143e8c8 nf_nat_pptp_hook_exp_gre -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xbfc9c6e7 nf_nat_pptp_hook_expectfn -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xe74f111f nf_nat_pptp_hook_outbound -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x2767a2f4 ct_sip_parse_header_uri -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x326db6f8 ct_sip_parse_request -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x6be83331 ct_sip_get_header -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x7eb1e08b ct_sip_get_sdp_header -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x8779bb24 ct_sip_parse_address_param -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xa6152d78 ct_sip_parse_numerical_param -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xa840e214 nf_nat_sip_hooks -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0xe51afbb7 nf_nat_snmp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0xae99bbba nf_nat_tftp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x1b8ab2ed nft_fwd_dup_netdev_offload -EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x2e61d29a nf_fwd_netdev_egress -EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x6083a7d7 nf_dup_netdev_egress -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x0a38e510 nf_flow_offload_ipv6_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x0e62c146 nf_flow_table_init -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x11c3020d flow_offload_teardown -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x13ff6e7a nf_flow_rule_route_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x3a523a36 nf_flow_offload_ip_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x46db1f46 flow_offload_refresh -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x5e73adfb nf_flow_dnat_port -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x616494c7 nf_flow_table_free -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x648df569 flow_offload_free -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x6d70d189 nf_flow_table_cleanup -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x733ff374 nf_flow_table_offload_setup -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x88dcd979 flow_offload_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x97df92bc nf_flow_snat_port -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xbdc3222b flow_offload_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xd0a47d98 flow_offload_add -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xd9fd765d nf_flow_rule_route_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xfece89fa flow_offload_route_init -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x00a2856b nf_nat_alloc_null_binding -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x15b995ac nf_nat_ipv6_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfe78ca02 nf_ct_tmpl_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0xe3f850b4 nf_nat_amanda_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0x6cb2091e nf_conntrack_broadcast_help +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0x473a8ca8 nf_nat_ftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x1d9d3c9f get_h225_addr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x1ee43ecf nat_callforwarding_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x4325c0c3 nat_q931_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x568b91b5 set_h225_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x73bd6f82 set_h245_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x76966907 nat_h245_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x84cbbfd8 set_ras_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x884e8d47 set_sig_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xb930243c nat_t120_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xedafd91d nat_rtp_rtcp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0x7607d925 nf_nat_irc_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x2e12d2a0 nf_nat_pptp_hook_outbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x3a8159be nf_nat_pptp_hook_inbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x7bdbbef6 nf_nat_pptp_hook_expectfn +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xec5f0cd0 nf_nat_pptp_hook_exp_gre +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x09d5af40 ct_sip_get_sdp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x792665cd ct_sip_get_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x895a0645 nf_nat_sip_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xaf08ba60 ct_sip_parse_numerical_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xc2e777cb ct_sip_parse_header_uri +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xdf7cd977 ct_sip_parse_address_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xe4af8eea ct_sip_parse_request +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0x3830d955 nf_nat_snmp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0xf085ab4e nf_nat_tftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0xb64bf82e nf_fwd_netdev_egress +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0xe2669dbc nft_fwd_dup_netdev_offload +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0xf2dc56e1 nf_dup_netdev_egress +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x24418b47 flow_offload_teardown +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x25163aa6 nf_flow_table_init +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x35079017 nf_flow_table_free +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x476b98e6 nf_flow_snat_port +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x5ea2e95c flow_offload_add +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x66352ea2 flow_offload_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x68eef178 flow_offload_free +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x755392c5 nf_flow_offload_ipv6_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x760a59f8 nf_flow_dnat_port +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x7ad850ff nf_flow_table_offload_setup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x8ae3dd92 nf_flow_rule_route_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x9427e014 nf_flow_offload_ip_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x9d715eec flow_offload_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xb15352c0 flow_offload_route_init +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xb288d32d nf_flow_table_cleanup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xbf0b6aba nf_flow_rule_route_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xf2a230c6 flow_offload_refresh +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x05742370 nf_nat_redirect_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x08d55680 nf_nat_packet +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x1b2a4cbb nf_nat_icmpv6_reply_translation +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x2fa91522 nf_nat_ipv6_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x32e77d6f nf_ct_nat_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x37c9734a 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 0x4b765530 nf_nat_ipv4_unregister_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x4d4663fc nf_ct_nat_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x4e42537e nf_nat_ipv4_register_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x76db77a5 nf_nat_ipv6_register_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x78385228 nf_nat_inet_register_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x8c548fa4 nf_nat_icmpv6_reply_translation -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x9649e087 nf_nat_masquerade_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xa2a99135 nf_nat_packet -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xb7977e5d nf_nat_redirect_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd090a90e nf_nat_inet_unregister_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd2851791 nf_nat_masquerade_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd5ea88f4 nf_nat_icmp_reply_translation +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x43addb10 nf_nat_icmp_reply_translation +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x4da60d3f nf_nat_masquerade_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x52a67047 nf_nat_ipv4_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x5ce042fc nf_nat_ipv6_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x654545d2 nf_nat_inet_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x702d7b1d nf_nat_inet_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x820c88ea nf_nat_alloc_null_binding +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x86293905 nf_nat_redirect_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xc31b9c42 nf_nat_masquerade_ipv6 EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd9c25654 nf_nat_masquerade_inet_unregister_notifiers -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xef3e030c nf_nat_inet_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xf86f75b7 nf_nat_redirect_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x022cd5cc nf_synproxy_ipv6_init +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xe04f3d97 nf_nat_ipv4_unregister_fn EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x1f099794 synproxy_init_timestamp_cookie -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x4853b573 synproxy_send_client_synack_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x52e6f7a1 nf_synproxy_ipv4_init -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x8356623d synproxy_send_client_synack -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xb69c4d2a nf_synproxy_ipv4_fini -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xc1e0213a ipv6_synproxy_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xc88fc7ac synproxy_parse_options +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x1f76c485 synproxy_send_client_synack +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x2f5ff950 nf_synproxy_ipv6_fini +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x5b56894b synproxy_send_client_synack_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x675fc7ae ipv4_synproxy_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x7275e189 nf_synproxy_ipv4_init +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x789dd8bb synproxy_recv_client_ack_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x7a300b92 synproxy_recv_client_ack +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x9f23874e synproxy_parse_options +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xaa41478f nf_synproxy_ipv4_fini EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xca9fc082 synproxy_net_id -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xdaed145b synproxy_recv_client_ack_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xdea6cdfa synproxy_recv_client_ack -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xe6566f47 nf_synproxy_ipv6_fini -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xfcffb004 ipv4_synproxy_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0128d779 nft_flowtable_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xf76b5f56 nf_synproxy_ipv6_init +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xfeab0b0c ipv6_synproxy_hook EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x06c6ca47 nft_meta_policy -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1c0df3c7 nft_register_obj -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2a51f010 nft_meta_set_init -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2c597135 nf_tables_deactivate_flowtable +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x09d2829d nft_meta_set_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0caeb112 nf_tables_deactivate_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0d98d208 nft_register_flowtable_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x29574e46 nft_flowtable_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2d8a3d99 nft_chain_validate EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3251d762 nf_tables_trans_destroy_flush_work -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x33f67e30 nft_meta_get_init -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x371c29fd nft_unregister_chain_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x40d87164 nf_tables_bind_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x329628b7 nft_meta_get_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x32d33184 nft_unregister_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x377b1d97 nft_register_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3c2e09ad __nft_release_basechain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3e18017c nft_unregister_obj +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x40eb9903 nft_set_catchall_gc EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x41b71e65 nft_trace_enabled -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4f7193b4 nft_register_expr -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x537ab4e1 nft_set_lookup_global -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x69dcfca1 nft_set_do_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6afe85b3 nft_meta_set_eval -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x714c0cfa nft_register_flowtable_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7202d655 nft_meta_set_dump -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x73beb56b nft_chain_validate -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7a72b117 nft_meta_get_dump -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8422a5a3 nft_meta_set_validate +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x45cc422c nft_unregister_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4a78f0a7 nft_data_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x50d386a1 nft_data_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x522a651b nft_set_elem_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x52549260 nft_meta_set_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x52648aa8 nft_meta_get_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6b390b57 nft_set_lookup_global +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x80b136a8 nft_unregister_flowtable_type EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8b5ae838 nft_chain_validate_dependency -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa13fe6cd nft_obj_notify -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa1eb8885 nft_do_chain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa6a452a6 __nft_release_basechain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa7526702 nft_dump_register -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa8aa3756 nft_meta_set_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xac6cbb63 nft_unregister_flowtable_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8cdda0c3 nft_meta_set_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8de08fc9 nf_tables_bind_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9012ec01 nft_meta_set_validate +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x90e2aa6d nft_meta_get_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x94ab2364 nft_meta_set_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9eb8e4a5 nft_set_do_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa04ffaf7 nft_request_module +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa20e281b nf_tables_destroy_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb30e632a nft_register_obj EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb3bd62b8 nft_data_release +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb6c216b2 nft_parse_register_store +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbf2ed323 nft_do_chain EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc23cd9bb nft_chain_validate_hooks -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc83f058b nft_register_chain_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcdb04964 nft_data_dump -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcf10f10d nft_set_catchall_gc -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd9447148 nft_request_module -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xdad47d71 nft_meta_get_eval -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xdb04bb32 nft_unregister_expr -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xdb79ace1 nft_obj_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcc167150 nft_obj_notify +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcf86c2c1 nft_obj_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd7bd09a4 nf_tables_deactivate_flowtable EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xde57b5f5 nft_parse_u32_check +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xde603aa3 nft_set_catchall_lookup EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe2b8cc13 nft_parse_register_load -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe5bb0c84 nf_tables_deactivate_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xed5b73e3 nf_tables_destroy_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xef33307d nft_unregister_obj -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf6f51bc0 nft_parse_register_store -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf7d17a54 nft_set_catchall_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf838fbb6 nft_data_init -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xff7c6a0f nft_set_elem_destroy -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x04a5227b nfnetlink_subsys_register -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x11fffdb3 nfnetlink_unicast -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x44359b31 nfnetlink_subsys_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xfa81fdef nft_register_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xfc5fbfc7 nft_dump_register EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x9a5144d4 nfnetlink_send -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xa31f30d4 nfnetlink_set_err -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xa729e4d0 nfnetlink_broadcast -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xbb5b089e nfnetlink_has_listeners +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5cfa0e86 nfnetlink_unicast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x689acec9 nfnetlink_has_listeners +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x779ac87c nfnetlink_send +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x9c1ad2aa nfnetlink_broadcast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xa1cdee0a nfnetlink_subsys_unregister +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xd6d4adc7 nfnetlink_set_err EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x35fe3507 nfnl_acct_find_get +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xecea32da nfnetlink_subsys_register +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x5f52fee3 nfnl_acct_find_get +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x706af758 nfnl_acct_update +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x79cf0087 nfnl_acct_overquota EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbecf5d14 nfnl_acct_put -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xce213672 nfnl_acct_overquota -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xf4a055ec nfnl_acct_update +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x35a68eaa nf_osf_match EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x35eff5e0 nf_osf_fingers -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x3d4104f8 nf_osf_match -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x7c6eecf6 nf_osf_find -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x7158f8bb nft_fib_init -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xcf1ff162 nft_fib_store_result -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xd210d8da nft_fib_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xd34843c3 nft_fib_validate -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x1b54a3f0 nft_reject_init +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x3d56ccf2 nf_osf_find +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x71313f57 nft_fib_store_result +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x904e5d94 nft_fib_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xb16a7fab nft_fib_init +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xfece895d nft_fib_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x03896ab9 nft_reject_validate EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x1de558c1 nft_reject_icmpv6_code -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x39f0fe05 nft_reject_dump EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x6081751d nft_reject_policy -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x632cf78c nft_reject_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x965fae6e nft_reject_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xb6468f6a nft_reject_init EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xe2c84666 nft_reject_icmp_code EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x04e27719 xt_compat_flush_offsets -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x24a40505 xt_request_find_match -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x25878a26 xt_compat_target_from_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x2f642635 xt_compat_match_from_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x481e81d6 xt_compat_match_offset -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x555a555a xt_table_unlock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x57a35f50 xt_proto_init -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7597d38c xt_request_find_table_lock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x77700991 xt_compat_match_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x217839d6 xt_compat_target_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3eca66a7 xt_register_template +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x442ccadf xt_request_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x456975fd xt_request_find_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x4e3cda82 xt_compat_target_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x50d0c50b xt_compat_target_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x622a10ca xt_compat_match_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x67489535 xt_check_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x6d9a925f xt_find_table_lock EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7bce4603 xt_data_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7c87cde7 xt_request_find_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7d424ad1 xt_proto_fini 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 0x8cb21943 xt_request_find_target -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x8e8049d0 xt_register_template -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x98de58fd xt_unregister_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9c7765b7 xt_match_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x90c09f13 xt_unregister_template +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9a4b20d6 xt_table_unlock EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9c995c69 xt_percpu_counter_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa659b59b xt_compat_match_offset EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa7c94f1d xt_compat_lock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xac19e691 xt_check_target -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xad449e54 xt_register_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xb15afe9b xt_target_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xb6753212 xt_proto_init EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbfacb837 xt_percpu_counter_free EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc7fae024 xt_compat_calc_jump -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc9147eb7 xt_hook_ops_alloc 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 0xd5e8cd26 xt_register_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd7fcea95 xt_compat_match_to_user EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd9bb821b xt_copy_counters EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xddf68fc6 xt_find_revision -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe295cb0c xt_proto_fini -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe330c371 xt_compat_target_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe7e6c12e xt_target_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xeadb4828 xt_replace_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xed5a226b xt_unregister_template -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xedf91d98 xt_find_table_lock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xf3feffb8 xt_check_match -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xfa6072c0 xt_compat_target_offset -EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x2bd9b513 xt_rateest_put -EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0xc3d97835 xt_rateest_lookup -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x6961c936 nci_spi_read -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x7ae9cfad nci_spi_send -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xb697e435 nci_spi_allocate_spi -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x27e0278c nci_uart_set_config -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x67cbfc63 nci_uart_unregister -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xcf5ee664 nci_uart_register -EXPORT_SYMBOL_GPL net/nsh/nsh 0x60a93bec nsh_push -EXPORT_SYMBOL_GPL net/nsh/nsh 0xa7f87e55 nsh_pop -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x3a7670c3 ovs_vport_alloc -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x467c231a ovs_netdev_link -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xb2e553bf ovs_vport_ops_unregister -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xd2bb33b8 ovs_netdev_tunnel_destroy -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xe16cc1e7 __ovs_vport_ops_register -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xf6a59a56 ovs_vport_free -EXPORT_SYMBOL_GPL net/psample/psample 0x475cb248 psample_sample_packet -EXPORT_SYMBOL_GPL net/psample/psample 0x726cbd0e psample_group_get -EXPORT_SYMBOL_GPL net/psample/psample 0xdcb9e5b6 psample_group_put -EXPORT_SYMBOL_GPL net/psample/psample 0xf9b97f71 psample_group_take +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xde02ff9d xt_match_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe88fdd34 xt_replace_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xeb57d463 xt_hook_ops_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xed221a42 xt_unregister_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xef9d7a50 xt_check_target +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x1578f01b xt_rateest_lookup +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0xda5e6935 xt_rateest_put +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x0477bdce nci_spi_read +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x8308effe nci_spi_send +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xfb0d5eba nci_spi_allocate_spi +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x83230980 nci_uart_unregister +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xae7911fa nci_uart_register +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xafe8bec8 nci_uart_set_config +EXPORT_SYMBOL_GPL net/nsh/nsh 0x46543ca0 nsh_push +EXPORT_SYMBOL_GPL net/nsh/nsh 0xcbb72cf5 nsh_pop +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x3d5434de ovs_vport_ops_unregister +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x534ab915 ovs_netdev_link +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x7d522c9b ovs_netdev_tunnel_destroy +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xbe0a1932 __ovs_vport_ops_register +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xcdbee7d4 ovs_vport_alloc +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xe5b4740e ovs_vport_free +EXPORT_SYMBOL_GPL net/psample/psample 0x6dfdb19c psample_group_get +EXPORT_SYMBOL_GPL net/psample/psample 0x734821c8 psample_group_take +EXPORT_SYMBOL_GPL net/psample/psample 0xc8ca1544 psample_group_put +EXPORT_SYMBOL_GPL net/psample/psample 0xfd3a9e69 psample_sample_packet EXPORT_SYMBOL_GPL net/qrtr/ns 0x8d25501f qrtr_ns_remove EXPORT_SYMBOL_GPL net/qrtr/ns 0xa47e91ba qrtr_ns_init -EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x323d599a qrtr_endpoint_unregister -EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x5c07ee49 qrtr_endpoint_register -EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x9b72b4af qrtr_endpoint_post +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x4c850249 qrtr_endpoint_register +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x6c3ac12b qrtr_endpoint_unregister +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x78bf46b8 qrtr_endpoint_post EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq -EXPORT_SYMBOL_GPL net/rds/rds 0x00ddcc79 rds_conn_drop -EXPORT_SYMBOL_GPL net/rds/rds 0x20d5d245 rds_conn_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0x1ad61966 rds_send_xmit +EXPORT_SYMBOL_GPL net/rds/rds 0x1ed79f4d rds_rdma_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x23a57fcd rds_message_unmapped EXPORT_SYMBOL_GPL net/rds/rds 0x2b0d543c rds_message_add_extension -EXPORT_SYMBOL_GPL net/rds/rds 0x2bd196c5 rds_conn_destroy +EXPORT_SYMBOL_GPL net/rds/rds 0x32b64470 rds_atomic_send_complete EXPORT_SYMBOL_GPL net/rds/rds 0x36087aa4 rds_stats -EXPORT_SYMBOL_GPL net/rds/rds 0x3a581500 rds_atomic_send_complete -EXPORT_SYMBOL_GPL net/rds/rds 0x400aae51 rds_trans_register +EXPORT_SYMBOL_GPL net/rds/rds 0x3d35584c rds_inc_path_init +EXPORT_SYMBOL_GPL net/rds/rds 0x3dd1e0e9 rds_trans_register +EXPORT_SYMBOL_GPL net/rds/rds 0x426fff9c rds_recv_incoming EXPORT_SYMBOL_GPL net/rds/rds 0x45a4781e rds_addr_cmp -EXPORT_SYMBOL_GPL net/rds/rds 0x544477c8 rds_send_xmit +EXPORT_SYMBOL_GPL net/rds/rds 0x460784de rds_trans_unregister +EXPORT_SYMBOL_GPL net/rds/rds 0x4a1f123f rds_message_put +EXPORT_SYMBOL_GPL net/rds/rds 0x4c445d1d rds_send_path_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0x526178e6 rds_conn_create_outgoing 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 0x61462c9e rds_message_addref -EXPORT_SYMBOL_GPL net/rds/rds 0x6207bd71 rds_inc_path_init -EXPORT_SYMBOL_GPL net/rds/rds 0x64f9410b rds_connect_path_complete -EXPORT_SYMBOL_GPL net/rds/rds 0x6cb78b49 rds_for_each_conn_info +EXPORT_SYMBOL_GPL net/rds/rds 0x5b95c343 rds_message_addref +EXPORT_SYMBOL_GPL net/rds/rds 0x729b12a3 rds_conn_create +EXPORT_SYMBOL_GPL net/rds/rds 0x767c157f rds_inc_put +EXPORT_SYMBOL_GPL net/rds/rds 0x7760f524 rds_for_each_conn_info EXPORT_SYMBOL_GPL net/rds/rds 0x7b399e66 rds_page_remainder_alloc EXPORT_SYMBOL_GPL net/rds/rds 0x85e4e520 rds_stats_info_copy -EXPORT_SYMBOL_GPL net/rds/rds 0x8610b982 rds_message_put -EXPORT_SYMBOL_GPL net/rds/rds 0x86613867 rds_send_ping -EXPORT_SYMBOL_GPL net/rds/rds 0x933ae425 rds_conn_path_drop -EXPORT_SYMBOL_GPL net/rds/rds 0x93ce90e0 rds_conn_path_connect_if_down -EXPORT_SYMBOL_GPL net/rds/rds 0x94c8ee60 rds_info_deregister_func -EXPORT_SYMBOL_GPL net/rds/rds 0x98d8b235 rds_send_path_reset -EXPORT_SYMBOL_GPL net/rds/rds 0x9a22231d rds_message_unmapped -EXPORT_SYMBOL_GPL net/rds/rds 0x9e62903c rds_trans_unregister -EXPORT_SYMBOL_GPL net/rds/rds 0xa3db696c rds_connect_complete -EXPORT_SYMBOL_GPL net/rds/rds 0xafd6980c rds_recv_incoming -EXPORT_SYMBOL_GPL net/rds/rds 0xb4fe0d0e rds_send_path_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0x8d37432e rds_send_path_reset +EXPORT_SYMBOL_GPL net/rds/rds 0x909d8f7c rds_conn_path_drop +EXPORT_SYMBOL_GPL net/rds/rds 0x95bb4a4a rds_inc_init +EXPORT_SYMBOL_GPL net/rds/rds 0x9d7163bd rds_conn_drop +EXPORT_SYMBOL_GPL net/rds/rds 0xa037bbb4 rds_connect_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xb4c433ce rds_info_deregister_func +EXPORT_SYMBOL_GPL net/rds/rds 0xc01d1de0 rds_send_ping +EXPORT_SYMBOL_GPL net/rds/rds 0xc0e5f3c8 rds_send_drop_acked EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy -EXPORT_SYMBOL_GPL net/rds/rds 0xce5d762c rds_conn_create_outgoing -EXPORT_SYMBOL_GPL net/rds/rds 0xd76af239 rds_info_register_func -EXPORT_SYMBOL_GPL net/rds/rds 0xe10d43c0 rds_send_drop_acked -EXPORT_SYMBOL_GPL net/rds/rds 0xe7df0f3d rds_inc_init -EXPORT_SYMBOL_GPL net/rds/rds 0xeec4b0b7 rds_rdma_send_complete -EXPORT_SYMBOL_GPL net/rds/rds 0xf845758f rds_inc_put +EXPORT_SYMBOL_GPL net/rds/rds 0xc5bc4ff1 rds_conn_path_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0xcf6b6930 rds_conn_destroy +EXPORT_SYMBOL_GPL net/rds/rds 0xdd69876e rds_info_register_func +EXPORT_SYMBOL_GPL net/rds/rds 0xe0b60542 rds_connect_path_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xeeedfca3 rds_conn_connect_if_down EXPORT_SYMBOL_GPL net/rds/rds 0xfd22dd56 rds_cong_map_updated -EXPORT_SYMBOL_GPL net/rds/rds 0xff697b3d rds_conn_create -EXPORT_SYMBOL_GPL net/sched/sch_pie 0x36cc22bc pie_process_dequeue EXPORT_SYMBOL_GPL net/sched/sch_pie 0x6ce9b467 pie_calculate_probability -EXPORT_SYMBOL_GPL net/sched/sch_pie 0x944636cc pie_drop_early +EXPORT_SYMBOL_GPL net/sched/sch_pie 0x6fb5fcfa pie_drop_early +EXPORT_SYMBOL_GPL net/sched/sch_pie 0xe9e0ca45 pie_process_dequeue EXPORT_SYMBOL_GPL net/sched/sch_taprio 0x5fc3c6ed taprio_offload_free EXPORT_SYMBOL_GPL net/sched/sch_taprio 0xa7f08102 taprio_offload_get -EXPORT_SYMBOL_GPL net/sctp/sctp 0x2b805d76 sctp_for_each_endpoint -EXPORT_SYMBOL_GPL net/sctp/sctp 0x4886e507 sctp_transport_lookup_process -EXPORT_SYMBOL_GPL net/sctp/sctp 0x4b84f68b sctp_get_sctp_info -EXPORT_SYMBOL_GPL net/sctp/sctp 0xb108d2bc sctp_transport_traverse_process -EXPORT_SYMBOL_GPL net/smc/smc 0x0f907eba smcd_register_dev -EXPORT_SYMBOL_GPL net/smc/smc 0x2a72adf8 smcd_handle_event -EXPORT_SYMBOL_GPL net/smc/smc 0x33a5211e smcd_alloc_dev -EXPORT_SYMBOL_GPL net/smc/smc 0xa4de04e6 smcd_handle_irq -EXPORT_SYMBOL_GPL net/smc/smc 0xa98da9b5 smcd_free_dev -EXPORT_SYMBOL_GPL net/smc/smc 0xd1ac1cc7 smc_proto -EXPORT_SYMBOL_GPL net/smc/smc 0xd62d5db3 smcd_unregister_dev -EXPORT_SYMBOL_GPL net/smc/smc 0xd9690008 smc_hash_sk -EXPORT_SYMBOL_GPL net/smc/smc 0xe184346f smc_unhash_sk -EXPORT_SYMBOL_GPL net/smc/smc 0xf025819d smc_proto6 -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x2e61ee62 gss_mech_register +EXPORT_SYMBOL_GPL net/sctp/sctp 0x844c5e14 sctp_for_each_endpoint +EXPORT_SYMBOL_GPL net/sctp/sctp 0xcbe9e880 sctp_get_sctp_info +EXPORT_SYMBOL_GPL net/sctp/sctp 0xd4fb1998 sctp_transport_lookup_process +EXPORT_SYMBOL_GPL net/sctp/sctp 0xdb59675b sctp_transport_traverse_process +EXPORT_SYMBOL_GPL net/smc/smc 0x105a0676 smcd_free_dev +EXPORT_SYMBOL_GPL net/smc/smc 0x1ddf3635 smc_proto6 +EXPORT_SYMBOL_GPL net/smc/smc 0x437b7cc8 smc_hash_sk +EXPORT_SYMBOL_GPL net/smc/smc 0x6cae957e smcd_handle_irq +EXPORT_SYMBOL_GPL net/smc/smc 0x79cb9778 smcd_alloc_dev +EXPORT_SYMBOL_GPL net/smc/smc 0x7e21d3bd smcd_register_dev +EXPORT_SYMBOL_GPL net/smc/smc 0x824d1d60 smc_unhash_sk +EXPORT_SYMBOL_GPL net/smc/smc 0x93989447 smc_proto +EXPORT_SYMBOL_GPL net/smc/smc 0xa68ef8bd smcd_unregister_dev +EXPORT_SYMBOL_GPL net/smc/smc 0xfa34bb9d smcd_handle_event +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x2303699f svcauth_gss_register_pseudoflavor EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x38d3dce5 g_make_token_header EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x482ac5a4 g_token_size -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x48506d50 svcauth_gss_register_pseudoflavor -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x59cd9e74 svcauth_gss_flavor -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xc99195d5 gss_mech_unregister +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x8c2b5e78 gss_mech_unregister +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x98f5a336 gss_mech_register EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xd7673035 g_verify_token_header -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x004e2765 rpc_put_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0422aca3 svc_generic_init_request -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x058a2334 xprt_wait_for_reply_request_rtt +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xf851bb00 svcauth_gss_flavor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00f0184a xprt_wait_for_reply_request_def +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0206aedb svc_sock_update_bufs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x026794ae xdr_encode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x03abfe8c rpc_sleep_on +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x053b83c3 xdr_stream_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05968984 auth_domain_find EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05e807a9 xdr_encode_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0616b3a0 sunrpc_cache_pipe_upcall_timeout EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x065994f1 xdr_encode_opaque_fixed -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x07ec190f xdr_page_pos -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x08c505d5 svc_reg_xprt_class -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0cf820e9 _copy_from_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0ed9af9f rpc_clnt_test_and_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x133fb61d xprt_request_get_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x134da775 svc_fill_write_vector -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x14053173 cache_seq_next_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1480eea7 xdr_reserve_space_vec -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x14f230ca rpc_max_bc_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x15238e1b rpc_clnt_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x15c77374 svc_authenticate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x164231c1 rpcauth_lookupcred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x18d64145 __rpc_wait_for_completion_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1992d458 svc_close_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1997ec9d rpc_sleep_on_priority -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1bcdc52a rpc_proc_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1c5216f2 sunrpc_cache_register_pipefs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1cbef0ab rpc_alloc_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1d7527e3 svc_seq_show +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x07159395 svcauth_unix_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x088f1390 rpc_restart_call_prepare +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x08b2efc3 svc_rqst_replace_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x099fbf83 xdr_page_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0abe1e3f svc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0b81da5d _copy_from_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0d9f31d0 svc_set_num_threads +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0fa19a3e bc_svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0fc6a7d5 svc_drop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x105c5cea rpc_get_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x10a4d7d1 xprt_register_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x12866898 xdr_decode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x13ed751a rpc_max_bc_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x144cd637 gssd_running +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x149151dd rpc_put_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1664f201 rpc_clnt_swap_deactivate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1702af5b svc_rqst_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x179e3024 xdr_expand_hole +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x17c1e449 xdr_enter_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x17c57ef3 svc_generic_rpcbind_set +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x18d3c246 auth_domain_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x18f6fa5e svc_seq_show +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x199eed3d xprt_unregister_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1b6404ee sunrpc_cache_register_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1b9ae859 sunrpc_cache_lookup_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1c80e1ac svc_authenticate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1cc78742 svc_generic_init_request +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1d16e94e put_rpccred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1de24bcc sunrpc_cache_unregister_pipefs EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e119a79 rpcauth_get_pseudoflavor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1ef7cd22 sunrpc_destroy_cache_detail EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f2a9970 rpc_ntop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x208078bc xdr_init_decode_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x20d15c2d rpc_count_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x20fc6194 rpc_count_iostats_metrics -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x211d379a xdr_init_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x22d1ce4b xdr_encode_word -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x235e6357 xdr_stream_decode_opaque_dup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x23f89ce5 xprt_complete_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2563970f rpcauth_lookup_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x273bbbe4 svc_process -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x28ae0807 xprt_force_disconnect -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x28affde3 rpc_num_bc_slots +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x20037337 rpc_destroy_pipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2014d776 svc_xprt_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x218db927 rpc_init_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2225c673 rpc_count_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x23426642 rpc_clone_client_set_auth +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x23a2424f __rpc_wait_for_completion_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x24394b2c rpc_unlink +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x27a46f8a rpc_wake_up_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x290ff74c xprt_destroy_backchannel EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x29be8400 rpc_init_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2aa6c786 unix_domain_find -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2c8a0f43 xdr_stream_decode_opaque -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2e4039bb svc_sock_update_bufs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2eeddca2 xprt_wait_for_reply_request_def -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2faa9fa7 svc_addsock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x309cbfd4 rpc_clnt_xprt_switch_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x312152f8 xdr_commit_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2a3316ed rpc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2ac104b3 rpc_num_bc_slots +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2b0a0d0f xprt_reconnect_backoff +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2d87fd16 auth_domain_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2ec9d7a3 svc_close_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f2eca43 cache_unregister_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2fd455b9 xprt_unpin_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x30d6ca3e sunrpc_init_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x312ebe86 rpc_call_sync EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x32a568b8 rpc_exit -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x33b8b1a3 rpc_force_rebind -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x345d282d xprt_setup_backchannel -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x34998060 svc_xprt_names +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x327cbbc7 xprt_lookup_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x32945a4f rpcauth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x343855d7 svc_xprt_deferred_close EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x34d184de rpc_wake_up_status -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x34d76ba0 rpc_call_sync -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x35f6d499 sunrpc_cache_update -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x381ea77e cache_check +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x358b4ae5 svc_reserve +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x37033108 read_bytes_from_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x37639f3f rpc_clnt_iterate_for_each_xprt EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3b166557 svc_create_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3b340aab svc_destroy -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3bb13fa3 rpc_clnt_show_stats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3c361634 rpcauth_init_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3d5046c9 xdr_stream_decode_string_dup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3df5274c xdr_shift_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3ef70b01 read_bytes_from_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3af89a38 xdr_read_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3b662f0b svc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3c09e500 xdr_stream_decode_opaque_dup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3c92a0a8 xprt_release_rqst_cong EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f9a2b0b rpcauth_get_gssinfo -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x41a3d076 xdr_expand_hole -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4353c8e4 svc_rpcb_setup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x438534bc xprt_unpin_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x44986ff3 xdr_stream_decode_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3fb7ef21 rpc_clone_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x403ea76a rpc_mkpipe_dentry +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x446d4e7a rpc_clnt_show_stats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x44a64e20 rpc_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x451813eb rpc_d_lookup_sb EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x453efa54 svc_pool_map -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x45ad8e35 xprt_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x488eddf1 gssd_running -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x494be1c6 rpc_delay -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4959913f rpc_malloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x49ac1ef1 xdr_init_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x47de9dcc rpc_run_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x48ca4c70 xprt_wait_for_buffer_space EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4afedab1 xprtiod_workqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4b13660e rpc_wake_up_first -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4b75ab7d rpc_d_lookup_sb -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4bdc4d94 rpc_sleep_on_priority_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4c2dfed3 rpc_peeraddr2str -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4d13728f xdr_inline_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4b7278fb rpc_clnt_xprt_switch_has_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4d26e0c9 svc_fill_symlink_pathname +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4d9a6a0d xprt_lock_connect EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4dac77f0 xdr_encode_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e2faa30 rpcauth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4dbe08ca sunrpc_cache_pipe_upcall_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e21cbe7 xdr_align_data EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e8f6ca7 sunrpc_net_id -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x501a8b3e rpc_call_null -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x50ef44a9 xdr_buf_subsegment -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x516ab7de cache_unregister_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x519c09fa svc_rpcbind_set_version -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x52481ebc rpc_add_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5303d04b rpc_shutdown_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4f0c1920 xprt_unlock_connect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x50ce6997 rpc_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x50d19134 rpcauth_unwrap_resp_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x50f33a70 svc_recv +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x51adc58e rpc_exit +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x52172fb5 rpc_setbufsize EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5431fa44 rpc_clnt_xprt_switch_has_addr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a060eb5 rpc_proc_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a09a778 svc_xprt_deferred_close +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53aa8729 xprt_release_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5629c2a9 rpc_killall_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x562a4de8 rpcauth_lookup_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x56652358 xprt_wait_for_reply_request_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x583b9e18 rpc_set_connect_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x58c17564 rpc_clnt_setup_test_and_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x58eeffb6 cache_seq_stop_rcu EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a45ba31 svc_auth_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5d2f53fe rpc_clnt_xprt_switch_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5d6760a7 rpc_killall_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5db111e4 rpcauth_wrap_req_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5f00a7d1 auth_domain_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x60a90843 svc_reserve -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x61c55fde svc_recv -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x624d6bfa xprt_pin_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x626c6936 rpc_clnt_swap_deactivate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x636984d2 sunrpc_cache_pipe_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6480f153 sunrpc_cache_unhash -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x64834835 csum_partial_copy_to_xdr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x64b9fce4 svc_xprt_enqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x662738b3 rpcb_getport_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x667389c3 xprt_wake_up_backlog -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66d13744 sunrpc_init_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5bb3fc4e rpc_call_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5c2dad38 rpc_task_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5d9fe7a5 xdr_inline_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5dc8a629 rpcauth_init_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5feaa76e xdr_buf_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x624c7cda write_bytes_to_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x64513cde xprt_wake_up_backlog +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x648f8b52 svc_xprt_names +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x64a40ead xprt_reserve_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x64fc8953 rpc_count_iostats_metrics +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6586afa5 rpc_add_pipe_dir_object EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66ed2439 rpc_destroy_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x676ca4b7 xprt_alloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x67cbc9f1 xprt_unregister_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x682dea64 xprt_write_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x68a9f4b7 svc_rqst_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x68ed051b auth_domain_lookup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6b0e6e1f svc_print_addr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6b4e881f rpc_put_task_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6e19c368 xdr_read_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71b2aba2 rpc_wake_up_queued_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x670f380f rpcauth_init_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6819b430 rpc_shutdown_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x68cf9957 svc_age_temp_xprts_now +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6953697f svc_create_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6b4def35 xprt_disconnect_done +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6d041bb9 xprt_reconnect_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6e4c2301 svc_print_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6f0c28e3 xdr_decode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x703e6d89 xprt_update_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x705def17 xprt_request_get_cong EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71bc40e3 rpc_wake_up EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fa908a cache_flush -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x72b80e43 xprt_reconnect_backoff -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x76d0ede3 xprt_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x775db31b xdr_buf_trim -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7838f12a rpc_release_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x794cd365 rpc_clnt_swap_activate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7b05405b svc_xprt_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7b40c85a rpc_clnt_iterate_for_each_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7db75806 xprt_update_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7ddd08e6 rpc_get_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x726ab7c2 cache_create_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x734f0da2 rpc_localaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x73631198 xprt_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x73b6361e xprt_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x757a4a65 csum_partial_copy_to_xdr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7716cc81 rpc_switch_client_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x77570d37 rpc_release_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7934a10a rpc_prepare_reply_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x79972ba6 svc_encode_result_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7cd17dae xdr_stream_decode_string_dup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7ce4e1cc svc_reg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7d26f626 rpc_peeraddr EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7eb6b32e svc_set_num_threads_sync -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7f870c37 rpc_put_sb_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80788c75 svc_exit_thread -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8098271a svc_set_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x81654ffb svc_rqst_replace_page -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x827ce819 rpcauth_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x82b4d4dc rpcauth_destroy_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x82c11b37 xprt_reserve_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8376283d rpc_wake_up_next -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x83854e85 rpc_unlink -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8748b3b1 xdr_stream_pos -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x882fd64e rpc_restart_call -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x883b0f34 rpc_set_connect_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8854f3b4 rpc_restart_call_prepare -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x88b53a66 rpc_remove_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8db38e7b xprt_adjust_cwnd -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8e8a4fe7 xdr_reserve_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8ef89fdc write_bytes_to_xdr_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8f97fdab rpcauth_unwrap_resp_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x906be255 svc_xprt_received -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9074212d rpc_call_start -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x93593dd9 rpc_uaddr2sockaddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x94acccbf rpc_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9532514c cache_seq_stop_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x966f402b svcauth_unix_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80f9ecd1 rpc_remove_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8361615f svc_find_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x85c92120 rpc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8a176f0f svc_addsock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8c5ebfb4 svc_xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8c9d255d svc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8d3c7c6c rpc_task_release_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8d69ca9a xprt_pin_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8d7ddb5e svc_xprt_init +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8f34f800 rpc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x92286c8c svc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x93a47278 xprt_complete_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x94f54e08 xdr_stream_pos EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9670b5a1 rpc_free_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x96df0eb8 rpc_pton -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x96e9934f xdr_inline_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9889cb44 xprt_disconnect_done -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98e09613 xdr_process_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x993a1ed2 svc_auth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x96bfa53a svc_unreg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x97c5a5d0 rpc_sleep_on_priority_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x990c71df rpc_alloc_iostats EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x99aee353 rpc_init_priority_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x99c0659c svc_create_pooled -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9a436b00 rpc_net_ns -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9b5f2c2d rpc_clnt_setup_test_and_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9cab3c19 bc_svc_process -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9cbe1a7c svc_find_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9d7cda6e rpc_sleep_on -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9e1c5681 rpc_prepare_reply_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9ee8ea27 rpc_sleep_on_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9f700523 rpc_pipe_generic_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa12645a4 rpc_clone_client_set_auth -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa12c039e xdr_decode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x99f7aee7 xprt_free_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9ada5330 rpcauth_stringify_acceptor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9be41a06 rpcauth_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9f5d1296 xdr_shift_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9fe8f23b rpc_uaddr2sockaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa0f35b02 xdr_reserve_space_vec +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa115e25e svc_xprt_do_enqueue EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa13acdb8 svc_pool_map_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa30f2fca xdr_terminate_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa4fe033e svcauth_unix_set_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa6b9df95 svc_unreg_xprt_class -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa6fa93a4 put_rpccred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa7cc6f41 xprt_reconnect_delay -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa97caa1e svc_proc_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xab16fad2 rpc_switch_client_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xad1f7d15 svc_prepare_thread -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xadfc84be rpc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xae6f0611 xdr_enter_page -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf2015c7 rpc_task_release_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa1ee6f2b xdr_init_decode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa20694f0 cache_destroy_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa231eeca rpc_malloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa278d150 svc_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa2ae0fd1 xdr_inline_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa59f9eb4 xprt_setup_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa79cbcac xdr_init_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa91c96bb rpc_bind_new_program +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa9d0b8fa xprt_wake_pending_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaa5e6949 xdr_encode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xab3fd4af rpc_restart_call +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xab819147 svc_exit_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf316005 svc_process EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb0c9097c svc_xprt_init -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb2ec2365 svc_set_num_threads +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb049f559 xdr_buf_from_iov +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb1580b6f xdr_stream_decode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb234c29b svc_bind EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb312d0c4 svc_pool_map_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb4052001 xprt_reserve_xprt_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb4b922b7 svc_proc_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb5038b0b rpc_init_pipe_dir_head +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb3c7f580 rpc_wake_up_queued_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb4386060 rpcb_getport_async EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb8c7b223 xprt_wait_for_buffer_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xba3cad63 svc_fill_symlink_pathname -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbbb13610 cache_seq_start_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbd71c44b auth_domain_find -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf89e4c0 rpc_mkpipe_dentry +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb7482aed rpc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb7d60b1d rpc_call_null +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb86a5c19 xdr_reserve_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb8ab9667 cache_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb98c2b4c svc_prepare_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbd965192 rpc_queue_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbddb24f7 xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbe7b486b rpc_wake_up_first +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbed746d3 rpcauth_lookupcred EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc02440c4 xdr_commit_encode EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12435e3 rpc_calc_rto -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc28fbaa3 rpc_find_or_alloc_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc32caf94 xprt_destroy_backchannel -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc36fad0e xprt_lock_connect -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3c892fc sunrpc_cache_lookup_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc4bf3e12 rpc_setbufsize -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc4d473ec svc_rqst_alloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc541a30b xdr_encode_array2 -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc5a6567c rpc_peeraddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc655209a xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3cd3a32 rpc_put_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc4d48b65 xprt_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc75444b3 rpc_pipe_generic_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc7b0bd3e xprt_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8860889 rpc_init_pipe_dir_head EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc93c5037 rpcauth_stringify_acceptor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xca0013ae xdr_write_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcc99b071 cache_create_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcd834a82 xprt_wake_pending_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce1c33ab xprt_free_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc964a72e sunrpc_cache_pipe_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc9b2d1a7 cache_register_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xca4e5d17 rpc_clnt_swap_activate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xca7565ab svc_rpcbind_set_version +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcd1dac48 rpc_sleep_on_priority EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce678a59 xdr_decode_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcefbbb19 svc_xprt_copy_addrs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcf125597 xdr_align_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcf3f4432 rpc_put_task_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd08918fa xprt_release_xprt EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd10d1d5b rpc_machine_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd1f0e468 rpc_run_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd2671583 rpc_bind_new_program -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd2c31f76 xprt_alloc_slot -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd3998709 rpc_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd47cce3b svc_age_temp_xprts_now -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd48991f6 xdr_stream_subsegment -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd4926dcf svc_drop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd4c62be1 rpc_localaddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd65a24aa xprt_lookup_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd6a95f72 cache_destroy_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd80f461d svc_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd87c34f9 rpc_queue_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd9177784 svc_wake_up -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdb9f7c3e xdr_decode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd1e0ec75 svc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd20f3074 rpcauth_wrap_req_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd2844431 rpc_net_ns +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd3284386 rpc_call_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd48a5603 svcauth_unix_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd5d0d34d xdr_write_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd7885924 svc_rqst_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd8148877 xdr_process_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd8319014 cache_seq_next_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdaeece15 rpcauth_destroy_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdcc5e979 xprt_adjust_cwnd EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd691402 xprt_find_transport_ident -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xddad683e rpc_clone_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdeea368c svc_xprt_do_enqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdfb37929 svc_shutdown_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe04eed82 svc_bind -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe27800ea rpc_mkpipe_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe35ad56e rpc_destroy_pipe_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe51fed2e sunrpc_cache_unregister_pipefs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe55a76eb xprt_release_rqst_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdea25e01 svc_xprt_copy_addrs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe0b24331 cache_check +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe248ff5c rpc_clnt_test_and_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe3c3b316 svc_auth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe48c3a0f xprt_reserve_xprt EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe67db833 svc_encode_result_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe922ac3e xprt_unlock_connect -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe9576201 rpcauth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe69f5619 rpc_peeraddr2str +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe744ec17 rpc_clnt_xprt_switch_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe786e875 rpc_force_rebind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe9760844 sunrpc_cache_update EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeaddd84c svc_alien_sock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xed0b6ea1 xprt_add_backlog +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xea13228a rpc_mkpipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xecf4122b rpcauth_register EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedcf6be4 qword_add -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xee0df5c9 svc_rpcb_cleanup EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeeacab69 rpc_update_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf00d1175 rpc_call_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xefd24cab xdr_init_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf0464f7a cache_seq_start_rcu EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf0b7775d rpc_init_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf0c363d0 rpcauth_init_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf359e1a0 svc_generic_rpcbind_set -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf514beff xprt_release_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf601a4e3 cache_purge -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf83e44a1 svc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfce972c6 xprt_release_xprt_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfcfa49eb xdr_buf_from_iov -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfda1dd9d rpc_task_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfdcb033a cache_register_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfe312968 xprt_register_transport -EXPORT_SYMBOL_GPL net/tls/tls 0x5115b038 tls_offload_tx_resync_request -EXPORT_SYMBOL_GPL net/tls/tls 0x716d50c2 tls_encrypt_skb -EXPORT_SYMBOL_GPL net/tls/tls 0xb259c59e tls_validate_xmit_skb -EXPORT_SYMBOL_GPL net/tls/tls 0xcb297a28 tls_device_sk_destruct -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x037065f3 virtio_transport_stream_is_active +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf1007509 svc_create_pooled +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf1fe2af2 svc_set_num_threads_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf20a3e1a svc_xprt_received +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf2782870 xprt_add_backlog +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf4500c83 rpc_find_or_alloc_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf570e3e7 unix_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf5ccf623 sunrpc_destroy_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf5ce6973 rpc_clnt_xprt_switch_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf647f118 xprt_write_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf747e9bc xdr_terminate_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf7bbf1f6 xprt_force_disconnect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf81e3312 xdr_stream_decode_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf8916405 rpc_sleep_on_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf8a889a0 svc_fill_write_vector +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf91d32ca rpc_pton +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfcc3d216 sunrpc_cache_unhash +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfce9d736 svc_alien_sock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfd54719c xdr_buf_trim +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfd9c987e rpc_clnt_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xff0cfbfd svc_shutdown_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xff52fa7b svc_rpcb_cleanup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xff827528 svc_destroy +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xff948f75 svc_rpcb_setup +EXPORT_SYMBOL_GPL net/tls/tls 0x166efe90 tls_device_sk_destruct +EXPORT_SYMBOL_GPL net/tls/tls 0x2acc27cd tls_encrypt_skb +EXPORT_SYMBOL_GPL net/tls/tls 0x3a84ed94 tls_validate_xmit_skb +EXPORT_SYMBOL_GPL net/tls/tls 0x4ea6d577 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 0x0a9b84a7 virtio_transport_release -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x15444698 virtio_transport_notify_recv_pre_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x1bae0b73 virtio_transport_connect -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x1ceaa0be virtio_transport_notify_send_post_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x1ed0d7b7 virtio_transport_recv_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2b0afada virtio_transport_dgram_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2e77cff4 virtio_transport_notify_poll_out -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2f54c419 virtio_transport_notify_send_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x3fd518d7 virtio_transport_dgram_bind -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x4cea5eae virtio_transport_notify_recv_pre_block -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x4dc8d9ef virtio_transport_seqpacket_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x551e9e37 virtio_transport_stream_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x55d278b1 virtio_transport_inc_tx_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x5da33091 virtio_transport_do_socket_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x67d91d1d virtio_transport_notify_send_pre_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7ef54d71 virtio_transport_notify_send_pre_block -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x84896703 virtio_transport_free_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x8a4ec1f1 virtio_transport_destruct -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x921373cf virtio_transport_seqpacket_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x9f94a366 virtio_transport_notify_poll_in -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xac607125 virtio_transport_seqpacket_has_data -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb3454c61 virtio_transport_notify_recv_post_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x0ace559e virtio_transport_dgram_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x176de17b virtio_transport_seqpacket_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x1b89e82e virtio_transport_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x22ee1674 virtio_transport_release +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x27e25639 virtio_transport_destruct +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x31d5912d virtio_transport_stream_rcvhiwat +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x3367bf32 virtio_transport_notify_poll_out +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x3c9de8f1 virtio_transport_dgram_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x3d62db3c virtio_transport_get_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x5118026d virtio_transport_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x5813a374 virtio_transport_notify_recv_pre_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x61e33d88 virtio_transport_seqpacket_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x64fd8a5f virtio_transport_free_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x65333563 virtio_transport_deliver_tap_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x6ec8df77 virtio_transport_shutdown +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x6fadde66 virtio_transport_put_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x84056905 virtio_transport_notify_recv_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x887970f1 virtio_transport_notify_send_post_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x91e0eff3 virtio_transport_notify_send_pre_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x92c46c4e virtio_transport_dgram_bind +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x98d1b022 virtio_transport_notify_send_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x992383f2 virtio_transport_notify_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa08f9ebc virtio_transport_notify_poll_in +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xac8eb974 virtio_transport_seqpacket_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb079661b virtio_transport_stream_is_active 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 0xbae203d5 virtio_transport_dgram_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xbd29b951 virtio_transport_stream_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xc5b514c0 virtio_transport_get_credit -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xcc5642ff virtio_transport_shutdown -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xcda7be7b virtio_transport_put_credit -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xda272798 virtio_transport_stream_has_space -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe0291d0c virtio_transport_stream_rcvhiwat -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe9298a50 virtio_transport_notify_buffer_size -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xec5e898b virtio_transport_stream_has_data -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf1ae8287 virtio_transport_deliver_tap_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xfb73655c virtio_transport_notify_recv_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x03eae9c0 vsock_find_bound_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0abe3b1c vsock_core_unregister +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xc1b35e0f virtio_transport_stream_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xc24f61ed virtio_transport_notify_recv_post_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xcc0eb6b8 virtio_transport_notify_send_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd48052b2 virtio_transport_notify_recv_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe0272b05 virtio_transport_recv_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe5be752b virtio_transport_stream_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xed9bdd5e virtio_transport_do_socket_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf77ca9d9 virtio_transport_connect +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xff895db4 virtio_transport_inc_tx_pkt EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0e9bc9b6 vsock_addr_unbind -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x10d1efc3 vsock_remove_connected -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x13c21531 vsock_insert_connected -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x25fddd80 vsock_remove_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x1817451c vsock_remove_sock EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x284e07d8 vsock_bind_table -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x378dc1aa vsock_stream_has_space EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x3d4b0fca vsock_addr_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x3da0b276 vsock_core_get_transport +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x43ba6af6 vsock_add_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x43eaa079 vsock_remove_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x49c93d49 vsock_core_register +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4a581617 vsock_core_unregister EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4b99648c vsock_addr_bound -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x565eb3bc vsock_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x52d29f1a vsock_find_bound_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x5e6d1f4a vsock_remove_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x631cb452 vsock_find_connected_socket EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x77c14317 vsock_addr_cast -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x77f2a2b9 vsock_create_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x86192dee vsock_remove_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x895d16bc vsock_remove_pending 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 0x9d808436 vsock_add_pending -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9e485f8b vsock_remove_bound -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xa19a1ef1 vsock_deliver_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xa12b71d6 vsock_assign_transport +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xa51f014e vsock_insert_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xa89325a6 vsock_create_connected EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xaf2674b5 vsock_addr_equals_addr -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xafdb07d4 vsock_assign_transport -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xb48d58a1 vsock_remove_sock +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc59c68f6 vsock_add_pending EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc92f7f50 vsock_table_lock -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xcdfd89a9 vsock_add_tap -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xdc444f80 vsock_find_connected_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xe5e3b4d5 vsock_core_register +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd2232cdf vsock_core_get_transport +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xe9076150 vsock_for_each_connected_socket EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xec96eadf vsock_addr_validate -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xece64c2e vsock_enqueue_accept -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xefc64f98 vsock_remove_pending -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf54a75c2 vsock_for_each_connected_socket -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x1451862c cfg80211_shutdown_all_interfaces -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x1ac59b84 cfg80211_wext_siwmode -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x1d21f870 cfg80211_wext_giwname -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x2b5f010c cfg80211_pmsr_report -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x2c5d2146 cfg80211_wext_giwrange -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x470fcc60 cfg80211_wext_giwmode -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x50145bf4 cfg80211_pmsr_complete -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x52d7bdbd cfg80211_wext_siwfrag -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x53294bc9 cfg80211_vendor_cmd_reply -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x9b45bfd9 cfg80211_wext_siwscan -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xa44175c4 cfg80211_wext_giwfrag -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xc3f3af76 cfg80211_vendor_cmd_get_sender -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xdbe6d26b cfg80211_wext_giwrts -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xef19ac98 cfg80211_wext_giwretry -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xf408f0be cfg80211_wext_siwrts -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xfbb58e20 cfg80211_wext_giwscan +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xed8160e3 vsock_enqueue_accept +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf6b045a4 vsock_deliver_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf7ade8bb vsock_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xfbbb7b0f vsock_stream_has_space +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x00fc193d cfg80211_wext_giwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x07efea5c cfg80211_wext_siwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x08c238df cfg80211_wext_giwname +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x09fd3a2f cfg80211_vendor_cmd_get_sender +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x0a2a9d71 cfg80211_pmsr_complete +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x584b21a6 cfg80211_wext_siwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x88340ca8 cfg80211_pmsr_report +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x8b274d72 cfg80211_wext_giwrange +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xa2ad7f3e cfg80211_wext_siwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xa9830916 cfg80211_wext_giwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xade22869 cfg80211_wext_giwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xb70dcefd cfg80211_vendor_cmd_reply +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xb817e6ec cfg80211_wext_siwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xb856a782 cfg80211_wext_giwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xc8af4189 cfg80211_shutdown_all_interfaces +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xd0828ae7 cfg80211_wext_giwretry EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x0049ca83 xfrm_aead_get_byname EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x00c80741 xfrm_ealg_get_byid EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x0a575945 xfrm_count_pfkey_auth_supported @@ -18711,7487 +18764,7507 @@ -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x2467960e ipcomp_init_state -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x3c8b1589 ipcomp_input -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x45a7550a ipcomp_destroy -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xab711862 ipcomp_output +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x5c85b5e6 ipcomp_destroy +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x8d4fc579 ipcomp_output +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x944e300a ipcomp_init_state +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xe7df15f5 ipcomp_input EXPORT_SYMBOL_GPL net/xfrm/xfrm_user 0x4a0c7516 xfrm_msg_min EXPORT_SYMBOL_GPL net/xfrm/xfrm_user 0xe2521b1c xfrma_policy -EXPORT_SYMBOL_GPL sound/ac97_bus 0x25a977bb snd_ac97_reset +EXPORT_SYMBOL_GPL sound/ac97_bus 0xd559d7e5 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 0x09afeff4 snd_devm_card_new -EXPORT_SYMBOL_GPL sound/core/snd 0x212eecd6 snd_ctl_apply_vmaster_followers -EXPORT_SYMBOL_GPL sound/core/snd 0x2d2a4826 snd_card_ref -EXPORT_SYMBOL_GPL sound/core/snd 0x40057176 snd_card_rw_proc_new -EXPORT_SYMBOL_GPL sound/core/snd 0x64c9e1fc snd_ctl_sync_vmaster -EXPORT_SYMBOL_GPL sound/core/snd 0x6d9423c1 snd_device_initialize -EXPORT_SYMBOL_GPL sound/core/snd 0x7122eb29 snd_ctl_disconnect_layer -EXPORT_SYMBOL_GPL sound/core/snd 0x85f0801e snd_ctl_add_vmaster_hook -EXPORT_SYMBOL_GPL sound/core/snd 0xb00be462 snd_devm_request_dma -EXPORT_SYMBOL_GPL sound/core/snd 0xb444a085 snd_ctl_activate_id -EXPORT_SYMBOL_GPL sound/core/snd 0xc0e95519 snd_card_disconnect_sync -EXPORT_SYMBOL_GPL sound/core/snd 0xc6ec2876 snd_card_add_dev_attr -EXPORT_SYMBOL_GPL sound/core/snd 0xc9fc9f50 snd_ctl_get_preferred_subdevice -EXPORT_SYMBOL_GPL sound/core/snd 0xd2c45aa4 snd_device_get_state -EXPORT_SYMBOL_GPL sound/core/snd 0xddfed4d1 snd_device_disconnect -EXPORT_SYMBOL_GPL sound/core/snd 0xf1fd8924 snd_power_ref_and_wait -EXPORT_SYMBOL_GPL sound/core/snd 0xf808655e snd_ctl_register_layer +EXPORT_SYMBOL_GPL sound/core/snd 0x12a32be8 snd_ctl_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/core/snd 0x25ada00b snd_card_rw_proc_new +EXPORT_SYMBOL_GPL sound/core/snd 0x28704d92 snd_devm_card_new +EXPORT_SYMBOL_GPL sound/core/snd 0x5a39c9c2 snd_card_free_on_error +EXPORT_SYMBOL_GPL sound/core/snd 0x62427370 snd_device_disconnect +EXPORT_SYMBOL_GPL sound/core/snd 0x663d6535 snd_devm_request_dma +EXPORT_SYMBOL_GPL sound/core/snd 0x6fd708c4 snd_ctl_activate_id +EXPORT_SYMBOL_GPL sound/core/snd 0x76d5055c snd_card_disconnect_sync +EXPORT_SYMBOL_GPL sound/core/snd 0xa92f3202 snd_ctl_get_preferred_subdevice +EXPORT_SYMBOL_GPL sound/core/snd 0xaf150f27 snd_ctl_apply_vmaster_followers +EXPORT_SYMBOL_GPL sound/core/snd 0xbe2bda40 snd_card_add_dev_attr +EXPORT_SYMBOL_GPL sound/core/snd 0xbed682c2 snd_ctl_disconnect_layer +EXPORT_SYMBOL_GPL sound/core/snd 0xc4e7a853 snd_power_ref_and_wait +EXPORT_SYMBOL_GPL sound/core/snd 0xc9792d3b snd_device_get_state +EXPORT_SYMBOL_GPL sound/core/snd 0xe2ece3d9 snd_card_ref +EXPORT_SYMBOL_GPL sound/core/snd 0xe8342f5c snd_device_initialize +EXPORT_SYMBOL_GPL sound/core/snd 0xf7d62776 snd_ctl_register_layer EXPORT_SYMBOL_GPL sound/core/snd 0xfaf598c6 snd_ctl_request_layer -EXPORT_SYMBOL_GPL sound/core/snd-compress 0x469a7784 snd_compress_new -EXPORT_SYMBOL_GPL sound/core/snd-compress 0x6d126ac2 snd_compr_stop_error +EXPORT_SYMBOL_GPL sound/core/snd 0xfb335db9 snd_ctl_sync_vmaster +EXPORT_SYMBOL_GPL sound/core/snd-compress 0x80dfafc3 snd_compr_stop_error +EXPORT_SYMBOL_GPL sound/core/snd-compress 0xbd4ce4d8 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 0x0ce903ff snd_pcm_stream_unlock -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x143b69be snd_pcm_stream_unlock_irq -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x2045ef22 snd_pcm_hw_constraint_eld -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x422bb648 snd_pcm_stream_unlock_irqrestore -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x4421593b snd_pcm_stream_lock +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x1e2a781e snd_devm_alloc_pages +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x1e630f5a snd_pcm_stop_xrun +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x1eda3d69 snd_pcm_add_chmap_ctls +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x259743d2 snd_pcm_fill_iec958_consumer +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x4ed89522 snd_pcm_lib_default_mmap EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x5c407196 snd_pcm_fill_iec958_consumer_hw_params +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x616d1d0c snd_pcm_hw_constraint_eld EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x649892e8 snd_pcm_create_iec958_consumer_default -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x6d2049f7 snd_devm_alloc_pages -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x7cb5f498 snd_pcm_add_chmap_ctls EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x8d864069 snd_pcm_rate_range_to_bits +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x99f1df8a snd_pcm_stream_lock_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 0xd52a3c09 snd_pcm_fill_iec958_consumer -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xdeb94e02 snd_pcm_lib_default_mmap -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xe7151ef2 snd_pcm_stop_xrun -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xf3092a4b _snd_pcm_stream_lock_irqsave -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xf71b2f6d snd_pcm_stream_lock_irq -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x0ac8944d snd_dmaengine_pcm_pointer -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x0fdbb669 snd_dmaengine_pcm_request_channel -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x1965fd65 snd_dmaengine_pcm_open -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x2bdb3ccf snd_dmaengine_pcm_trigger -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x67f1fc9f snd_dmaengine_pcm_close -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x7abcef92 snd_dmaengine_pcm_pointer_no_residue -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x7d6de836 snd_hwparams_to_dma_slave_config -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x8be61adc snd_dmaengine_pcm_set_config_from_dai_data -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xbb77e4f2 snd_dmaengine_pcm_refine_runtime_hwparams -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xdc2ccdbd snd_dmaengine_pcm_close_release_chan -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xe1b9baad snd_dmaengine_pcm_open_request_chan -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xf67a6119 snd_dmaengine_pcm_get_chan -EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0x7ad6d22c snd_seq_driver_unregister -EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0xdda48fd9 __snd_seq_driver_register -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x13005fe4 amdtp_domain_stream_pcm_ack -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x139368fd amdtp_domain_stream_pcm_pointer -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x23fb0f04 amdtp_domain_init -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x2724e6a8 amdtp_am824_add_pcm_hw_constraints -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x57a44915 amdtp_domain_add_stream -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x73ed217f amdtp_am824_set_pcm_position -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x76f04234 amdtp_am824_midi_trigger -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x9120663f amdtp_am824_set_parameters -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xb3777077 amdtp_am824_init -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xb9b4f6c4 amdtp_domain_start -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xd27396a0 amdtp_am824_set_midi_position -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xd88ba590 amdtp_domain_stop -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xde80a018 amdtp_domain_destroy -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x053dbcb7 snd_hdac_stream_free_all -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x0aeba9c9 snd_hdac_ext_stream_assign -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x0cc5d44b snd_hdac_ext_bus_link_power_up_all -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x125a344f snd_hdac_ext_stream_set_spib -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x1b284cf6 snd_hdac_ext_bus_link_power_up -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x2f59fb2d snd_hdac_ext_stream_init -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x38173f6b snd_hdac_ext_bus_get_ml_capabilities -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x3e9e611e snd_hdac_ext_link_stream_clear -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x3f297ab5 snd_hdac_ext_bus_ppcap_int_enable -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x3f2e6f0a snd_hdac_ext_stream_init_all -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x4c85e73f snd_hdac_ext_bus_link_power_down_all -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x5bedd60d snd_hdac_ext_link_stream_start -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x61ab3f32 snd_hdac_ext_stream_release -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x6329be73 snd_hdac_ext_link_clear_stream_id -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x65e5eed8 snd_hda_ext_driver_unregister -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x694a8a9e snd_hdac_ext_bus_get_link -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x6bf8b9cf snd_hdac_ext_link_stream_reset -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x7d8da863 snd_hdac_ext_bus_link_power_down -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x8372970e snd_hdac_ext_bus_ppcap_enable -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x853bd0fe snd_hdac_ext_bus_device_init -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x8847881c snd_hdac_ext_bus_link_get -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x8b0ae957 snd_hdac_ext_stream_set_lpib -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x909c61a6 snd_hdac_ext_stream_drsm_enable -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xa0665b7e snd_hdac_ext_stream_decouple -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xa13c8d87 snd_hdac_ext_bus_exit -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xa8792c25 snd_hdac_ext_bus_device_remove -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xaa973d2d snd_hdac_ext_bus_link_power -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xad1f5d4c snd_hdac_ext_stop_streams -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xc54cf664 snd_hdac_ext_stream_spbcap_enable -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xc5b7ab6f snd_hdac_ext_link_stream_setup -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xcb0c101f snd_hdac_ext_stream_set_dpibr -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xcf38b75e snd_hdac_link_free_all -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xcf7b0764 snd_hdac_ext_stream_get_spbmaxfifo -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xd430d202 snd_hdac_ext_link_set_stream_id -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xdc069210 snd_hdac_ext_stream_decouple_locked -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xe1405e03 snd_hdac_ext_bus_link_put -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xe353c92f snd_hdac_ext_bus_device_exit -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xe7c78f3b snd_hdac_ext_bus_init -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xec9fd9b2 snd_hda_ext_driver_register -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0817bf05 snd_hdac_bus_update_rirb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x08434a50 snd_hdac_get_sub_nodes -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x09ee5b0a snd_hdac_query_supported_pcm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x11bdf549 snd_hdac_stream_setup_periods -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x139451b4 snd_hdac_regmap_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x13c6256e snd_hdac_bus_exit_link_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1628e34c snd_hdac_bus_init_chip -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x19b62ef3 snd_hdac_bus_init_cmd_io -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2001b0f3 snd_hdac_bus_stop_cmd_io -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x30f9b719 snd_hdac_channel_allocation -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x34e83879 snd_hdac_refresh_widgets -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x35c35ae1 snd_hdac_stream_assign -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x365fea31 snd_hdac_bus_alloc_stream_pages -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3914e409 snd_hdac_codec_write +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xb0ac2fb7 _snd_pcm_stream_lock_irqsave +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xcff36330 snd_pcm_stream_unlock +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xd05d7675 snd_pcm_stream_unlock_irqrestore +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xec0940eb snd_pcm_stream_unlock_irq +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xf08dd0bf snd_pcm_stream_lock +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x0f264d50 snd_hwparams_to_dma_slave_config +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x29fb2699 snd_dmaengine_pcm_pointer +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x3ffc909a snd_dmaengine_pcm_get_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x4dcb8ca3 snd_dmaengine_pcm_refine_runtime_hwparams +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x61d51e30 snd_dmaengine_pcm_pointer_no_residue +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x71d8bf02 snd_dmaengine_pcm_open_request_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x9ffae5cd snd_dmaengine_pcm_request_channel +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xbd72754e snd_dmaengine_pcm_open +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xc0e5bf7e snd_dmaengine_pcm_close +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xd670284d snd_dmaengine_pcm_close_release_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xdbc6441b snd_dmaengine_pcm_set_config_from_dai_data +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xe4d5fb9e snd_dmaengine_pcm_trigger +EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0x1c9e19ee __snd_seq_driver_register +EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0x7e393c0c snd_seq_driver_unregister +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x1dad9438 amdtp_domain_destroy +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x3face802 amdtp_domain_stream_pcm_ack +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x5bfd3a2b amdtp_domain_add_stream +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x66ead2b3 amdtp_domain_stream_pcm_pointer +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x710216a9 amdtp_am824_set_pcm_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x7162c8ce amdtp_am824_add_pcm_hw_constraints +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x93a986db amdtp_domain_start +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xa78cb720 amdtp_am824_set_parameters +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xb1ccdede amdtp_domain_stop +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xcbf383e1 amdtp_am824_set_midi_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xdbf73e98 amdtp_am824_midi_trigger +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xe1b7427c amdtp_am824_init +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xf082bcc8 amdtp_domain_init +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x065b1987 snd_hdac_ext_bus_link_power_down_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x06b74ece snd_hdac_ext_bus_link_put +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x0ed97f21 snd_hdac_ext_bus_link_power +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x101e7c1a snd_hdac_ext_link_stream_start +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x1180fec3 snd_hdac_ext_link_stream_setup +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x121b6adf snd_hdac_ext_stream_init_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x2606399c snd_hdac_ext_bus_get_link +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x37dc9999 snd_hdac_ext_bus_init +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x3f655afa snd_hdac_ext_stream_get_spbmaxfifo +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x40dbb06b snd_hdac_ext_stop_streams +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x424e7545 snd_hdac_ext_bus_device_exit +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x47e0c02f snd_hdac_ext_stream_decouple +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x4f6af5a8 snd_hdac_ext_bus_link_get +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x50bafc93 snd_hdac_link_free_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x5383381b snd_hdac_ext_bus_device_remove +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x60022596 snd_hdac_ext_bus_get_ml_capabilities +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x6136cf45 snd_hdac_ext_link_stream_clear +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x64e37889 snd_hda_ext_driver_unregister +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x66acb113 snd_hdac_ext_stream_release +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x70a313fc snd_hdac_ext_link_set_stream_id +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x7dd98eb6 snd_hdac_ext_stream_set_spib +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x83bec8ea snd_hdac_ext_bus_link_power_up_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x8a9e7703 snd_hda_ext_driver_register +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x926a747a snd_hdac_ext_bus_exit +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x9a221ff9 snd_hdac_ext_bus_link_power_down +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x9a73674f snd_hdac_ext_stream_decouple_locked +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x9e5440bd snd_hdac_ext_link_stream_reset +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xa39ccade snd_hdac_ext_stream_init +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xa5a1f8ec snd_hdac_ext_bus_device_init +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xb659c2d4 snd_hdac_ext_stream_drsm_enable +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xbec5b1b7 snd_hdac_ext_bus_ppcap_enable +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xbfcacdaa snd_hdac_ext_stream_assign +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xc48f7e01 snd_hdac_ext_stream_set_lpib +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xc8bf6394 snd_hdac_ext_stream_set_dpibr +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xd4a7724e snd_hdac_ext_bus_ppcap_int_enable +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xe5bec215 snd_hdac_ext_bus_link_power_up +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xf61c9ef7 snd_hdac_stream_free_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xf966333c snd_hdac_ext_link_clear_stream_id +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xfa72e9e8 snd_hdac_ext_stream_spbcap_enable +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x00e0b1ed snd_hdac_stream_setup_periods +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x01ab12c9 snd_hdac_bus_stop_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x111333ef snd_hdac_add_chmap_ctls +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x141f0e09 snd_hdac_display_power +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1495d1e3 snd_hdac_bus_parse_capabilities +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x17815c23 snd_hdac_power_up_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x193c8c11 snd_hdac_bus_update_rirb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x219cf7ac snd_hdac_bus_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x240464be snd_hdac_device_unregister +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x24dcfcf5 snd_hdac_stream_release +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x27aa7c1e snd_hdac_stream_setup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x28ad2f79 snd_hdac_device_register +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x29f803e7 snd_hdac_sync_audio_rate +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2a9df693 snd_hda_bus_type +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2acd9ec3 snd_hdac_power_down +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x31c32114 snd_hdac_setup_channel_mapping +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x33fb96c3 snd_hdac_register_chmap_ops +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x37de688a snd_hdac_bus_send_cmd +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3a875c58 snd_hdac_refresh_widgets +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3b755a8c snd_hdac_i915_set_bclk EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3bd544c2 snd_hdac_get_active_channels -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3c348d65 snd_hdac_bus_reset_link -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3c8398f0 snd_hdac_regmap_update_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3dec105f snd_hdac_sync_power_state -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x44bd3183 snd_hdac_stream_sync_trigger -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x454ae4da snd_hdac_codec_read -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x49330bf1 snd_hdac_codec_modalias -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4a2289fa _snd_hdac_read_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3e09d040 snd_hdac_bus_reset_link +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3e4d0906 snd_hdac_bus_get_response +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x40bf955b hdac_get_device_id +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x43064e1b snd_hdac_bus_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x44020022 snd_hdac_bus_handle_stream_irq +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4460e225 snd_hdac_stream_set_params +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x450eb030 snd_hdac_regmap_read_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x45f1e05a snd_hdac_dsp_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4811d53e snd_hdac_set_codec_wakeup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4a176f48 snd_hdac_stream_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4bb401f1 snd_hdac_stream_timecounter_init EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4c7ec4b6 snd_hdac_get_ch_alloc_from_ca -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x56c8bb6f snd_hdac_power_down_pm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x58cc3965 snd_hdac_stream_set_params -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5aba35bb snd_hdac_add_chmap_ctls +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x531a9de4 snd_hdac_stream_start +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x554802cc snd_hdac_get_stream_stripe_ctl +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x57b081cc snd_hdac_stream_assign EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5c07cb49 snd_hdac_calc_stream_format -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5c65898a snd_hdac_bus_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5ecf2b40 snd_hdac_get_stream -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5efb0e09 snd_hdac_get_connections -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x651a31fb snd_hdac_device_register +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x601baaba snd_hdac_regmap_sync +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x620bcadf snd_hdac_get_stream +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x62510bca snd_hdac_codec_link_up EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x67bfe791 snd_hdac_spk_to_chmap -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6a49c46c snd_hdac_bus_send_cmd -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x73bb09bf snd_hdac_stream_setup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x74280bd8 snd_hdac_bus_parse_capabilities -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7775480a snd_hdac_bus_link_power +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7159db56 snd_hdac_bus_stop_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x71dc2616 snd_hdac_device_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x73060218 snd_hdac_get_sub_nodes +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7637437a _snd_hdac_read_parm EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x77c754a8 snd_hdac_chmap_to_spk_mask -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x77d430bf snd_hdac_power_up_pm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7b8991be snd_hdac_bus_handle_stream_irq -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8245afcb snd_hdac_set_codec_wakeup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x84862d0d snd_hdac_read -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x85724ba1 snd_hdac_regmap_add_vendor_verb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8812104a snd_hdac_is_supported_format -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8a1aa5cc snd_hdac_stream_cleanup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8b31174a snd_hdac_codec_link_down -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8e76156e snd_hdac_stream_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x936f4e66 snd_hdac_stream_stop -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x93edee0e snd_hdac_codec_link_up -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x950d5adb snd_hdac_read_parm_uncached -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x95a98158 snd_hdac_regmap_read_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x98481ef5 snd_hdac_device_set_chip_name -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x986b1265 snd_hdac_bus_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x988b0f76 snd_hdac_setup_channel_mapping +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7a0b222b snd_hdac_check_power_state +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7a281fa8 snd_hdac_bus_enter_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7a8a5bda snd_hdac_stream_stop +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7c4327b2 snd_hdac_stream_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7d1b3564 snd_hdac_bus_link_power +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7dc11c32 snd_hdac_regmap_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7dcb9b81 snd_hdac_bus_init_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8b0ce575 snd_hdac_is_supported_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8b5c3391 snd_hdac_acomp_register_notifier +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8b71595e snd_hdac_regmap_add_vendor_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8e1f9440 snd_hdac_dsp_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8eb21c3c snd_hdac_bus_exit_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8ef4af98 snd_hdac_sync_power_state +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x95f5d0bb snd_hdac_bus_init_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x96d91cd6 snd_hdac_power_down_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x97e98458 snd_hdac_acomp_get_eld +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x98137394 snd_hdac_regmap_update_raw_once EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9a8e1877 snd_array_free -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9bec3172 snd_hdac_stream_start -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9ede5efb snd_hdac_acomp_get_eld -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9fbf5eed snd_hdac_i915_set_bclk -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9fd1ab58 snd_hdac_bus_free_stream_pages -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa1f1f27f snd_hdac_device_unregister -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xaed7d15d snd_hdac_check_power_state -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xaf53afdb snd_hdac_bus_stop_chip -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb0a3b9b1 snd_hdac_regmap_update_raw_once -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb2474512 snd_hdac_dsp_trigger -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb4357194 snd_hdac_acomp_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb5c2eb0f snd_hdac_dsp_prepare -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb7dc1abc snd_hdac_register_chmap_ops -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe241b40 snd_hdac_device_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9df2ec46 snd_hdac_stream_sync +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa1de8ded snd_hdac_stream_clear +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xaa025d37 snd_hdac_override_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xaa59f45a snd_hdac_device_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xac1da52a snd_hdac_bus_free_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb1b6ad61 snd_hdac_regmap_update_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb1e2c09d snd_hdac_stream_sync_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb65e4004 snd_hdac_stream_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe2da2c1 snd_hdac_read_parm_uncached EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe7dd7dc snd_array_new -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc525749f snd_hdac_bus_enter_link_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xca8eb2f8 snd_hdac_acomp_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcdb9d3ad snd_hdac_regmap_sync -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd13b77a0 snd_hdac_power_up -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd1a9c5f6 snd_hdac_stream_timecounter_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd291ccc4 snd_hdac_i915_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd8536502 snd_hdac_sync_audio_rate -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdc1dad77 snd_hdac_power_down -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdc682d49 snd_hdac_stream_clear -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdd37e9de snd_hda_bus_type -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe18857b2 snd_hdac_override_parm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe1ac9994 snd_hdac_regmap_write_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc02ab333 snd_hdac_regmap_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc61eecc0 snd_hdac_device_set_chip_name +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc7cc7b13 snd_hdac_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcb321b01 snd_hdac_codec_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd2b3dfd5 snd_hdac_channel_allocation +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd2bba447 snd_hdac_regmap_write_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdc780dc0 snd_hdac_acomp_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdd37b97f snd_hdac_codec_modalias EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe4e07754 snd_hdac_print_channel_allocation -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xeb27d256 snd_hdac_device_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xeb73973e snd_hdac_bus_get_response -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xec80fdd9 snd_hdac_acomp_register_notifier -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xecc0e1c2 hdac_get_device_id -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xee300e05 snd_hdac_get_stream_stripe_ctl -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xee754495 snd_hdac_bus_exec_verb_unlocked -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xee953f60 snd_hdac_stream_release -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf41debde snd_hdac_stream_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf5d03769 snd_hdac_display_power -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf651f415 snd_hdac_dsp_cleanup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf93c85c8 snd_hdac_stream_sync -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfd187668 snd_hdac_regmap_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe94141ae snd_hdac_get_connections +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xea5dede7 snd_hdac_codec_write +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xeafd4f7b snd_hdac_acomp_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xec14e124 snd_hdac_query_supported_pcm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf2ad4605 snd_hdac_codec_link_down +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf2f117be snd_hdac_dsp_prepare +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf4da9a09 snd_hdac_bus_alloc_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfa265fe8 snd_hdac_i915_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfb75d9f4 snd_hdac_bus_exec_verb_unlocked +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfbb02beb snd_hdac_power_up +EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x24a1e19c 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 0x6903d08f snd_intel_dsp_driver_probe -EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x72d2a639 snd_intel_acpi_dsp_driver_probe -EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x84d606f2 intel_nhlt_init -EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0xd7714602 intel_nhlt_get_dmic_geo -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x140e76b5 snd_ak4113_build -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x3d4345c5 snd_ak4113_reg_write -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x68bddedf snd_ak4113_check_rate_and_errors -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x86115baf snd_ak4113_external_rate -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xe8510f52 snd_ak4113_reinit -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xfd72fad5 snd_ak4113_create -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x016a2c3d snd_hda_mixer_amp_tlv -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x031ba0d2 snd_hda_multi_out_dig_close -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x03e03885 snd_hda_pick_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x05c6a18f snd_hda_codec_set_power_to_all +EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x5157e31b intel_nhlt_get_dmic_geo +EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0xa2475cb7 snd_intel_dsp_driver_probe +EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0xde7e82f3 intel_nhlt_init +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x0a36ea74 snd_ak4113_create +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x0db91217 snd_ak4113_reinit +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x26e95da7 snd_ak4113_check_rate_and_errors +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x32eb57c8 snd_ak4113_external_rate +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x3d3b4ad7 snd_ak4113_reg_write +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xb386a4c4 snd_ak4113_build 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 0x0ce79294 snd_hda_spdif_out_of_nid -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x107e4ef2 azx_get_pos_posbuf -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x11424c06 snd_hda_codec_pcm_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1c158d1f snd_hda_get_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x23b7f4b2 snd_hda_codec_eapd_power_filter -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x26819627 snd_hda_override_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x26f4763f hda_codec_driver_unregister -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x291a45a4 snd_hda_add_nid -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x296e1501 snd_hda_set_vmaster_tlv -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2ab0562b snd_hda_jack_detect_enable_callback_mst -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2cae9a44 snd_hda_multi_out_dig_open -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2d8529b1 snd_hda_check_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3025fd41 snd_hda_jack_set_button_state -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3038539b is_jack_detectable -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3379c199 snd_hda_get_conn_list -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3692134a snd_hda_parse_pin_defcfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x07a08f9c azx_stop_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x07dae0eb __hda_codec_driver_register +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x08a71029 azx_init_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0beedcbd snd_hda_codec_update_widgets +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0c0c33fb snd_hda_codec_pcm_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0f60cf8e snd_hda_codec_load_dsp_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0f64b367 snd_hda_codec_get_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1924f290 __snd_hda_codec_cleanup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1ab07974 azx_free_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1b96ab6b snd_hda_jack_unsol_event +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1bc5d15a snd_hda_mixer_amp_switch_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1c43eb04 snd_hda_get_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1ccbb24a snd_hda_correct_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1ede73e2 snd_hda_mixer_amp_switch_get_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2075b023 snd_hda_get_pin_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x23274573 snd_hda_multi_out_dig_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x24528945 snd_hda_add_imux_item +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x25f73238 snd_hda_multi_out_dig_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2dd25d0f snd_hda_jack_poll_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2e2a505c hda_get_autocfg_input_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x33c9e2d8 snd_hda_multi_out_dig_close EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x38ce402b azx_interrupt -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3a99d970 snd_hda_mixer_amp_switch_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3b2b094b snd_hda_override_conn_list -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x401dc579 snd_hda_codec_device_new -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x40ed76f1 snd_hda_add_new_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x415a0f5d snd_hda_codec_amp_stereo -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x46b628d4 snd_hda_apply_verbs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x48d2811f snd_hda_codec_cleanup_for_unbind -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x49b283d0 snd_hda_mixer_amp_volume_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4c41b547 snd_hda_codec_update_widgets -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4ebbf2d2 snd_hda_jack_report_sync -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4ed03780 snd_hda_enum_helper_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5088d71f snd_hda_shutup_pins -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x52773aa1 snd_hda_jack_set_gating_jack -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x52cbb9aa snd_hda_jack_poll_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x55f93753 snd_hda_codec_amp_update -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x56b2b603 snd_hda_codec_get_pin_target -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x57c4cbda snd_hda_codec_build_controls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x61c59b8e azx_get_position -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x633dd5ce snd_hda_jack_tbl_get_mst -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x64dafb54 snd_hda_spdif_ctls_assign -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x672a0e2b snd_hda_ctl_add -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x686792f3 snd_hda_mixer_amp_switch_put_beep -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x695eae48 snd_hda_codec_pcm_new -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x69a95644 snd_hda_add_imux_item -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6afff4a9 snd_hda_multi_out_dig_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6b875c1c snd_hda_input_mux_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6e510751 snd_hda_multi_out_dig_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7032f342 snd_hda_load_patch -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x74f5fea7 snd_hda_codec_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x759c9909 snd_hda_attach_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7ac9abff snd_hda_jack_set_dirty_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7d5e104b azx_stop_all_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7ef1df78 _snd_hda_set_pin_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x832b9131 azx_init_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x852ba7bf snd_hda_set_power_save -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x863f34fc snd_hda_add_vmaster_hook -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x887770c4 snd_hda_codec_load_dsp_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8d0d6bd2 snd_hda_multi_out_analog_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8f687ada snd_hda_get_num_devices -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x93a9b250 snd_hda_codec_set_pincfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x956c29f3 snd_hda_pick_pin_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x967b6daf snd_hda_apply_pincfgs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x97d8b332 snd_hda_codec_parse_pcms -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x98118af7 snd_hda_jack_bind_keymap -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9853494c hda_get_autocfg_input_label -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x985a3749 snd_hda_detach_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x98cc92f5 snd_hda_codec_new -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9b29e001 snd_hda_get_int_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9c0352a4 snd_hda_enable_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9c672fc4 snd_hda_codec_set_name -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9c74421e snd_hda_correct_pin_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9d6ed775 snd_hda_mixer_amp_switch_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9e171dcb snd_hda_multi_out_analog_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9e717c44 snd_hda_apply_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9ed52c94 snd_hda_create_dig_out_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9f371393 azx_bus_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa277dbd7 snd_hda_spdif_ctls_unassign -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa28ffd5e snd_hda_sync_vmaster_hook -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa74d52b4 snd_hda_codec_amp_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa987ea74 __hda_codec_driver_register -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaa6e62ab __snd_hda_add_vmaster -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaadf6ac8 azx_stop_chip -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xab46860a snd_hda_mixer_amp_switch_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xab4890d8 azx_probe_codecs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xac9d2e9f snd_hda_get_dev_select -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaed884cb snd_hda_codec_configure -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xafba1d76 snd_hda_find_mixer_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb7890bb6 snd_hda_codec_set_pin_target -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb8a47fd7 snd_hda_jack_unsol_event -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbb6b7e3d snd_hda_codec_load_dsp_trigger -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbe4028cb snd_hda_sequence_write -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc2a6d7a5 azx_free_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc35ba1b6 snd_hda_multi_out_analog_open -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc6aebea9 snd_hda_codec_amp_init_stereo -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc6d6995a snd_hda_lock_devices -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc6d79fcd snd_hda_get_conn_index -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc93bdd3e __snd_hda_codec_cleanup_stream -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xce6f9502 azx_init_chip -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd22e625f snd_hda_add_verbs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd4215925 azx_codec_configure -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd5589da9 query_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd7670792 snd_hda_jack_detect_enable -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd86ddcaa snd_hda_mixer_amp_volume_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd8b6a2fc snd_hda_create_spdif_in_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xda01f5a8 snd_hda_check_amp_list_power -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe091dca7 snd_hda_get_bool_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe0c8a79d snd_hda_jack_detect_state_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x39aeee65 snd_hda_codec_set_power_to_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x39c359f3 snd_hda_codec_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3a1eff42 snd_hda_shutup_pins +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3ae9685b snd_hda_jack_tbl_get_from_tag +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3b83f2f3 snd_hda_jack_set_button_state +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3e843c2b snd_hda_codec_eapd_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x415494bc snd_hda_mixer_amp_switch_put_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x42217d1f snd_hda_jack_pin_sense +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x43f8d412 snd_hda_create_spdif_in_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x45615743 snd_hda_get_conn_index +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4686a8f5 snd_hda_codec_load_dsp_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x46d043cf snd_hda_unlock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4aa5a6fb snd_hda_jack_add_kctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4da205ac hda_codec_driver_unregister +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4f62ec4c azx_get_pos_posbuf +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5007de1b snd_hda_codec_build_controls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x52c8c675 snd_hda_jack_tbl_get_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x54a66e7d snd_hda_jack_detect_enable_callback_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x56359f9e snd_hda_get_default_vref +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x56dd17b7 snd_hda_check_amp_list_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x586b4722 snd_hda_mixer_amp_volume_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5990bcaa is_jack_detectable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5b34dcff azx_stop_all_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5b7afc7a snd_hda_parse_pin_defcfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5c821112 snd_hda_multi_out_analog_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x615a52ad snd_hda_jack_set_dirty_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x61721e36 snd_hda_input_mux_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x61ade2ee snd_hda_get_dev_select +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x64598589 snd_hda_mixer_amp_volume_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x693bf756 snd_hda_ctl_add +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x69642c74 snd_hda_mixer_amp_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6d007e67 snd_hda_detach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x71328b9d snd_hda_spdif_ctls_unassign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x78309f7c snd_hda_codec_get_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7b049ad3 snd_hda_codec_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7b7fe3f5 snd_hda_create_spdif_share_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7e745f34 snd_hda_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fcb0fb8 azx_get_pos_lpib +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x804f2b67 azx_bus_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x810a1d5f snd_hda_codec_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x82069828 snd_hda_set_dev_select +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8268accd snd_hda_codec_pcm_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x84d08903 snd_hda_multi_out_analog_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8bc026e3 snd_hda_override_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9046409c snd_hda_sync_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x93522361 snd_hda_enable_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x93f86fa4 snd_hda_codec_cleanup_for_unbind +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x940bf3ec snd_hda_get_int_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9758389d snd_hda_jack_bind_keymap +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x98acb063 snd_hda_codec_setup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x98ec985d azx_get_position +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9951db3d snd_hda_pick_pin_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9a23580e _snd_hda_set_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9d518a1e __snd_hda_add_vmaster +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9d54c2eb snd_hda_override_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa035d6e3 snd_hda_spdif_ctls_assign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa03a7af3 snd_hda_spdif_out_of_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa115c4de snd_hda_codec_amp_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa204b42e snd_hda_pick_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa31e606b snd_hda_attach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa4ba5ebd snd_hda_enum_helper_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa664db74 snd_hda_sequence_write +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa8d4a82e snd_hda_get_num_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xab9007bc snd_hda_set_vmaster_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb11f777d snd_hda_multi_out_analog_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb261960f snd_hda_codec_amp_update +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb4a16566 snd_hda_codec_device_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb4e87db3 snd_hda_mixer_amp_volume_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb665a0d2 snd_hda_get_connections +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb6ce5684 snd_hda_load_patch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xba6b056b snd_hda_apply_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xba9a76dd snd_hda_jack_detect_enable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbaabf3f1 snd_hda_jack_detect_state_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbe30f245 snd_hda_codec_set_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbe5372a3 snd_hda_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbf299180 azx_probe_codecs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc10ccee6 snd_hda_create_dig_out_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc8b5e306 snd_hda_jack_report_sync +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xca3890ca snd_hda_codec_parse_pcms +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xca912feb snd_hda_get_bool_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcae422ab snd_hda_get_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcb742960 snd_hda_mixer_amp_switch_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcd725fd7 snd_hda_jack_set_gating_jack +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd0cf53aa snd_hda_multi_out_dig_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd142b1fc snd_hda_apply_pincfgs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd49897c0 snd_hda_codec_amp_init_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd595c033 snd_hda_add_new_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd9e23cd0 azx_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdca180f5 snd_hda_codec_set_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xde0ab7a6 snd_hda_jack_add_kctl_mst EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe118de5d snd_pcm_2_1_chmaps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe33d54e5 snd_hda_get_default_vref -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe5b6f064 snd_hda_get_pin_label -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe8478e58 snd_hda_create_spdif_share_sw -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xea1bdae5 snd_hda_unlock_devices -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xea56401a snd_hda_codec_load_dsp_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeae03211 azx_get_pos_lpib -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeb2366cc snd_hda_codec_setup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe1316405 snd_hda_apply_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe21ad3a3 snd_hda_codec_set_name +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe2ba373f snd_hda_codec_load_dsp_trigger +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe3c6f104 snd_hda_add_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe8810cc6 snd_hda_add_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeaa7696b snd_hda_set_power_save EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeda3a721 snd_print_pcm_bits -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xee458dd5 snd_hda_mixer_amp_volume_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf16dc10b snd_hda_set_dev_select -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf464b241 snd_hda_codec_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf5414643 snd_hda_jack_pin_sense -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf5f2fe1e snd_hda_mixer_amp_switch_get_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf25f136a snd_hda_find_mixer_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf2bf9e5a snd_hda_codec_amp_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf4c15343 snd_hda_check_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf746ebcb snd_hda_mixer_amp_switch_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf7546984 snd_hda_lock_devices EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf8dc35ac snd_hda_input_mux_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf972d630 snd_hda_codec_get_pincfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfa4b0f11 snd_hda_get_connections -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfb8cc1a5 snd_hda_jack_tbl_get_from_tag -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfbb1516b snd_hda_jack_add_kctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfd582d56 snd_hda_jack_add_kctl_mst -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x03dba67d snd_hda_gen_free -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x13db0b3e snd_hda_add_new_path -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x220b5ab0 snd_hda_gen_build_controls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x388c76f0 snd_hda_gen_line_automute -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x3a324862 snd_hda_gen_update_outputs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x470bdeba snd_hda_gen_add_mute_led_cdev -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x5d2974d1 snd_hda_gen_add_micmute_led_cdev -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x67b3b256 snd_hda_gen_check_power_status -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x6ef6d8b9 snd_hda_gen_stream_pm -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x73d21f90 snd_hda_gen_build_pcms +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf985446a query_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfa039df0 azx_init_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x16867170 snd_hda_activate_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x481f88bc snd_hda_gen_line_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x4a8350e2 snd_hda_gen_add_kctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x4b7d7c09 snd_hda_gen_spec_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x4fc2758f snd_hda_gen_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x63d257a9 snd_hda_gen_path_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x67000b93 snd_hda_get_path_from_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x67e0d7ee snd_hda_gen_fix_pin_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x6d698f51 snd_hda_gen_free +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x71dab833 snd_hda_add_new_path EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x76dc6871 hda_main_out_badness -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x8195796d snd_hda_gen_parse_auto_config +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x7c91cf30 snd_hda_gen_check_power_status EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x871a6e44 hda_extra_out_badness -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x9528daf0 snd_hda_gen_path_power_filter -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x998c821c snd_hda_gen_hp_automute -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xa77e34f5 snd_hda_get_path_from_idx -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xb1cd4245 snd_hda_activate_path -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xb805fa80 snd_hda_gen_add_kctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xc36c928a snd_hda_gen_fix_pin_power -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xc7e603cc snd_hda_gen_mic_autoswitch -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xe6ad489a snd_hda_gen_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xf662bc00 snd_hda_gen_spec_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xfe7118dc snd_hda_get_path_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x8fc02030 snd_hda_gen_mic_autoswitch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x939fb5be snd_hda_gen_hp_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xa1e55ca6 snd_hda_gen_build_controls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xa859fac1 snd_hda_gen_parse_auto_config +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xb4b5a677 snd_hda_get_path_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xd4d4bcd3 snd_hda_gen_build_pcms +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xe10e081a snd_hda_gen_add_mute_led_cdev +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xe8914884 snd_hda_gen_stream_pm +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xe896805e snd_hda_gen_add_micmute_led_cdev +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xfcbae24d snd_hda_gen_update_outputs EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau-utils 0xae620be9 adau_calc_pll_cfg -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1372 0x1e888846 adau1372_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0x76247b2d adau1761_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0x83ac87bc adau1761_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x050cbebf adau17x1_resume -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x0d9333f7 adau17x1_precious_register -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x31bcd371 adau17x1_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x33c05525 adau17x1_set_micbias_voltage -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x35fff983 adau17x1_add_routes -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x3dbcc68e adau17x1_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x475f5217 adau17x1_add_widgets -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xc40b6193 adau17x1_dai_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xcc36bbc3 adau17x1_volatile_register -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xf9d91aa2 adau17x1_readable_register -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau7118 0x986815d3 adau7118_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x07232819 arizona_lhpf2_mode -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x195a0285 arizona_anc_ng_enum -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x1bc9d6e9 arizona_set_output_mode -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x1e273073 arizona_of_get_audio_pdata -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x20559c56 arizona_out_vi_ramp -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x2097fe33 arizona_in_vd_ramp -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x223cf897 arizona_dvfs_down -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x22af5285 arizona_jack_codec_dev_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x36cb3284 arizona_lhpf1_mode -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x39d9d4a0 arizona_adsp2_rate_controls -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x3df0f856 arizona_init_dvfs -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x3eab5508 arizona_isrc_fsl -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x3f062193 arizona_in_hpf_cut_enum -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x412f7e3b arizona_dvfs_sysclk_ev -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x41409ff3 arizona_in_vi_ramp -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x4182fd96 arizona_out_vd_ramp +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1372 0x8bd6908a adau1372_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0x3d38ed54 adau1761_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0xea302f9f adau1761_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x0680b6a2 adau17x1_readable_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x0bfa09d8 adau17x1_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x2c6a0f90 adau17x1_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x2fa465dd adau17x1_resume +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x57d369f7 adau17x1_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x93584300 adau17x1_add_routes +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xa3f236e1 adau17x1_precious_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xe1e79c00 adau17x1_set_micbias_voltage +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xe8b8b6e4 adau17x1_add_widgets +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xf5853c0f adau17x1_volatile_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau7118 0xc54c4eb6 adau7118_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x02faf64a arizona_out_vd_ramp +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x03493181 arizona_init_fll +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x03bf028a arizona_adsp2_rate_controls +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x07e4db5f arizona_in_dmic_osr +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x150d84e2 arizona_out_ev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x15241857 arizona_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x16796f73 arizona_eq_coeff_put +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x16c19e71 arizona_lhpf2_mode +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x1b2d7a40 arizona_dvfs_sysclk_ev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x272984ec arizona_lhpf1_mode +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x2a1cf1ea arizona_isrc_fsh +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x3175485b arizona_in_vd_ramp +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x366e3558 arizona_ng_hold +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x3f4c4783 arizona_input_analog +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x40d4e063 arizona_init_vol_limit +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x425b9c88 arizona_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x45d6d46a arizona_in_ev EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x46277216 arizona_rate_val -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x4b7f8b7c arizona_init_gpio -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x57dd05c5 arizona_clk_ev -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x62172095 arizona_init_mono -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x6294902c arizona_out_ev -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x64f31d23 arizona_lhpf4_mode +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x50a2299b arizona_in_vi_ramp +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x5294f51a arizona_jack_set_jack +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x562dee4a arizona_clk_ev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x57e22b87 arizona_in_hpf_cut_enum +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x5a220959 arizona_anc_ng_enum +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x632d978a arizona_out_vi_ramp EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x69102a20 arizona_sample_rate_text -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x6a10f827 arizona_init_common -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x6f00d14b arizona_in_dmic_osr -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x710987da arizona_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x6d9ce043 arizona_voice_trigger_switch EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x729a5ef3 arizona_mixer_values -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x77b39ece arizona_set_fll_refclk -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x7a9de749 arizona_init_dai -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x7b03f118 arizona_input_analog +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x749a013e arizona_free_spk_irqs +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x7511ab4b arizona_lhpf4_mode +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x764bbcd3 arizona_jack_codec_dev_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x7bd192c5 arizona_init_dvfs +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x7bf1623f arizona_dvfs_up 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 0x81fe1b16 arizona_jack_set_jack -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x8a70fc63 arizona_dvfs_up -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x9c7b01d5 arizona_init_spk_irqs -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xa15423ad arizona_lhpf3_mode -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xa16b0028 arizona_hp_ev -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xa53a171e arizona_isrc_fsh -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xa9c8911e arizona_in_ev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x7ffb2bad arizona_anc_input_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x9ce69de3 arizona_init_dai +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xa0fd5388 arizona_simple_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xa18d9d00 arizona_init_mono +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xa23845f6 arizona_set_fll +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xa8a37bbe arizona_asrc_rate1 EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xab4d845c arizona_rate_text -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xb1807d02 arizona_anc_input_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xb23978b5 arizona_ng_hold -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xb4618e5a arizona_init_fll -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xb61d4f43 arizona_voice_trigger_switch -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xb941cdd6 arizona_asrc_rate1 -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xc76790a9 arizona_dai_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xc815b6bd arizona_init_spk +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xac71d926 arizona_output_anc_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xb0b695c5 arizona_lhpf3_mode +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xb18602c4 arizona_init_gpio +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xb18db3fc arizona_isrc_fsl +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xb8825231 arizona_set_fll_refclk +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xb99dc185 arizona_hp_ev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xc2970dfd arizona_set_output_mode +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xc88d1bf3 arizona_init_common EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xc9c29637 arizona_mixer_tlv -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xd28133be arizona_eq_coeff_put -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xd4a61662 arizona_free_spk_irqs -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xdc7471b8 arizona_jack_codec_dev_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xd2d37770 arizona_jack_codec_dev_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xdb15c4bf arizona_init_spk EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xdfe804b8 arizona_sample_rate_val -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xe7c69e2a arizona_set_fll -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xead61c09 arizona_output_anc_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xeec783a2 arizona_init_vol_limit -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xf163fa73 arizona_anc_ev -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xf551d732 arizona_simple_dai_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xf83a1f8f arizona_lhpf_coeff_put -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x2cb58713 cs4271_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0xb2e4d573 cs4271_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xe84de29f arizona_init_spk_irqs +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xec0c7a84 arizona_dvfs_down +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xf358ce4d arizona_of_get_audio_pdata +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xf7342c62 arizona_anc_ev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xfee7bc50 arizona_lhpf_coeff_put +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0xbe2fe198 cs4271_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0xf67bbf3d cs4271_probe EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x375ad98c cs42l51_of_match -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x3c85cf00 cs42l51_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x42b760fb cs42l51_suspend -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x58fc0f56 cs42l51_resume -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x8aa2c2d0 cs42l51_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xaf1ce196 cs42l51_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x46b66677 cs42l51_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x5869c06b cs42l51_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x5c5d6484 cs42l51_resume +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x61f673b7 cs42l51_suspend +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x70b7cfee cs42l51_remove EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x0245c4f2 cs42xx8_of_match -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x34c03887 cs42xx8_pm -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x44b1c956 cs42xx8_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x0d418ad8 cs42xx8_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x49a68d3b cs42xx8_probe EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x7cac7292 cs42888_data -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x93eb4096 cs42xx8_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xa46940d0 cs42xx8_regmap_config EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xcd3794c9 cs42448_data -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0x0bc07172 da7219_aad_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0x2a0cb936 da7219_aad_jack_det -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0x4b02ec96 da7219_aad_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0x64576de6 da7219_aad_exit -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x2d45c6bb es8328_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x36438d22 es8328_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hdac-hda 0x2c696964 snd_soc_hdac_hda_get_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hdac-hdmi 0x14c3ba4a hdac_hdmi_jack_port_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hdac-hdmi 0xe9ff0e50 hdac_hdmi_jack_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98090 0x0429a7c2 max98090_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x39403a5b soc_codec_dev_max98373_sdw -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x8e292e75 max98373_slot_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x9c4b30cf max98373_reset -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0xe7d76364 soc_codec_dev_max98373 -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8824 0x5629956b nau8824_enable_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8825 0x0add40e6 nau8825_enable_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x6eac7ce1 pcm1789_common_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0xa2275b69 pcm1789_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0xb0ec240c pcm1789_common_exit -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0xa597f741 pcm179x_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0xd62a22d1 pcm179x_common_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0x2a497cba pcm186x_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0x3451675c pcm186x_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x0ccf4198 pcm3168a_pm_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x10ed03b8 pcm3168a_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x92bcbbda pcm3168a_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0xcfd14ff5 pcm3168a_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x45f1c2dc pcm512x_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x8902223a pcm512x_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xd1939ae3 pcm512x_pm_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xe22536d2 pcm512x_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0x33546f23 da7219_aad_exit +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0x6a2969f9 da7219_aad_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0xc02d837c da7219_aad_jack_det +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0xc4d854e8 da7219_aad_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x777e7050 es8328_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x86ce7829 es8328_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hdac-hda 0x041b972d snd_soc_hdac_hda_get_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hdac-hdmi 0x280e01c8 hdac_hdmi_jack_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hdac-hdmi 0x93f0adef hdac_hdmi_jack_port_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98090 0x71a777f4 max98090_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x815149d7 max98373_slot_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0xc5e8a6ba soc_codec_dev_max98373 +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0xd9badcbf max98373_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0xe511cb82 soc_codec_dev_max98373_sdw +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x24d80b50 mt6358_mtkaif_calibration_disable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x25274a9b mt6358_mtkaif_calibration_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x9961f701 mt6358_set_mtkaif_protocol +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0xae2d4a6f mt6358_set_mtkaif_calibration_phase +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8824 0xcc7c1c03 nau8824_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8825 0xead20f70 nau8825_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x437515a1 pcm1789_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x812e5b41 pcm1789_common_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x8e68c3d3 pcm1789_common_exit +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0x44c5b989 pcm179x_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0xdd1f36b0 pcm179x_common_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0x5e4494b6 pcm186x_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0xddfbe0bd pcm186x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x75ba396c pcm3168a_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0xbd5e36ca pcm3168a_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0xd29c3de8 pcm3168a_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0xe82d7b26 pcm3168a_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x5b168ff0 pcm512x_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xac5b453d pcm512x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xf54d1b42 pcm512x_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xf9ba8e6b 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-rl6347a 0xa7aa810f rl6347a_hw_write EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6347a 0xade4bf4c rl6347a_hw_read -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt286 0x6f2edb33 rt286_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt298 0x563e670e rt298_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt286 0x2aaca72f rt286_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt298 0x4f1394ca rt298_mic_detect 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 0x1cd4e4c4 rt5640_disable_micbias1_for_ovcd -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x1fa481f5 rt5640_enable_micbias1_for_ovcd -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x456cc035 rt5640_dmic_enable -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x48751c94 rt5640_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x872cd12b rt5640_detect_headset -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xfb4b9414 rt5640_set_ovcd_params -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0x0e3b0c09 rt5645_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0x1d25082d rt5645_set_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5659 0x87f16568 rt5659_set_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5663 0x6a8449e2 rt5663_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0x1fdc02ac rt5670_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x03e89649 rt5640_detect_headset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x21cac20a rt5640_enable_micbias1_for_ovcd +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x4cf1dde2 rt5640_dmic_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x78f02608 rt5640_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xc292a592 rt5640_set_ovcd_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xfde26d37 rt5640_disable_micbias1_for_ovcd +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0x11f6e452 rt5645_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0xa28e8403 rt5645_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5659 0x0e442410 rt5659_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5663 0x6f0e9f50 rt5663_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0x06c3ae74 rt5670_set_jack_detect EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0x2f5ee4db rt5670_components -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0x96435e1b rt5670_jack_resume -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0xc2486c73 rt5670_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0xdcb97d5c rt5670_jack_suspend -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677 0xc1912268 rt5677_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0x5f6e63e0 rt5670_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0x9e88de59 rt5670_jack_suspend +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0xa0e3a656 rt5670_jack_resume +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677 0x71f3b819 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 0x02c95a56 rt5682_apply_patch_list +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x078bd68c rt5682_parse_dt +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x10d931fa rt5682_volatile_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x15288c62 rt5682_aif1_dai_ops EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x28730696 rt5682_supply_names -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x3e936cae rt5682_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x4803a13e rt5682_headset_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x4b32c76e rt5682_parse_dt -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x57f5d57c 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 0x5e0fd7db rt5682_reset -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x653ce335 rt5682_volatile_register -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x69040792 rt5682_aif1_dai_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x8233bc91 rt5682_aif2_dai_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x930e1f74 rt5682_apply_patch_list -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xa4a96d97 rt5682_soc_component_dev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x607ae381 rt5682_readable_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x82ac5586 rt5682_headset_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x9cfeacd4 rt5682_soc_component_dev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xa7d7a027 rt5682_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xaac291dd rt5682_calibrate +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xb0335d87 rt5682_reset EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xb897de56 rt5682_reg -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xf97047ed rt5682_calibrate -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x218ee9bd devm_sigmadsp_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x67d6ef25 sigmadsp_reset -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xaa283d8c sigmadsp_restrict_params -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xc31cf13a sigmadsp_setup -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xefe24778 sigmadsp_attach -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-i2c 0x23e9efe9 devm_sigmadsp_init_i2c -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-regmap 0xb44bcb9f devm_sigmadsp_init_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x2074b0ae ssm2602_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x240c32c7 ssm2602_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic32x4 0x9b96be66 aic32x4_register_clocks -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic3x 0xd06b4382 aic3x_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0x0d6819fe ts3a227e_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xfe1f3761 rt5682_aif2_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x2f1b18d6 sigmadsp_restrict_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x384bbddc devm_sigmadsp_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x4aa1be33 sigmadsp_setup +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x8ee2723c sigmadsp_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x92d09f30 sigmadsp_attach +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-i2c 0x3dad1fc2 devm_sigmadsp_init_i2c +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-regmap 0x5504ab8d devm_sigmadsp_init_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x3a4f15b9 ssm2602_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0xc126fe66 ssm2602_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic32x4 0xf385c411 aic32x4_register_clocks +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic3x 0x319a503d aic3x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0x217ed932 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 0x30f765e3 wcd938x_sdw_device_get -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x41201158 wcd938x_sdw_set_sdw_stream -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0xbb15ff06 wcd938x_sdw_hw_params -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0xc77fae85 wcd938x_swr_get_current_bank -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0xe6c2ba09 wcd938x_sdw_free -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x0a143aed wm_adsp_compr_copy -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x120830b7 wm_adsp_compr_pointer -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x12da637e wm_adsp_early_event -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x141b0468 wm_adsp_event -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x1f3cb562 wm_adsp_read_ctl -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x212196c8 wm_adsp_fw_enum -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x260ed29b wm_adsp_compr_open -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x2a6ae839 wm_halo_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x2d96ab69 wm_adsp2_set_dspclk -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x37ef51b2 wm_adsp_compr_get_caps +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x02635bdf wcd938x_swr_get_current_bank +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x15610319 wcd938x_sdw_free +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x221bef58 wcd938x_sdw_hw_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x8c4e06a2 wcd938x_sdw_set_sdw_stream +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0xaa934b37 wcd938x_sdw_device_get +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x0d7770b6 wm_adsp2_set_dspclk +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x11c076bd wm_adsp1_event +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x23a72bc9 wm_halo_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x262d3f43 wm_adsp_compr_trigger +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x270fe70e wm_adsp1_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x27342267 wm_adsp2_preloader_put +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x34b6e89a wm_adsp_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 0x8253a0aa wm_adsp2_preloader_get -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x85822283 wm_adsp1_event -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x869b7d69 wm_adsp2_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x98c8136f wm_adsp_write_ctl -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xa1eb5262 wm_adsp_compr_trigger -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xa51ed81e wm_adsp2_component_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xa738e10e wm_adsp_fw_get -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xad904140 wm_adsp_compr_handle_irq -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xb6327575 wm_adsp2_component_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xbe705d2e wm_adsp_compr_free -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xcb182515 wm_adsp_fw_put -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xcb71badd wm_adsp_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x5e3e69db wm_adsp_compr_pointer +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x6dee844b wm_adsp_fw_put +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x70522b72 wm_adsp_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x72c270e2 wm_adsp2_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x829cdbd3 wm_adsp_compr_get_caps +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x9d22fd2f wm_adsp2_component_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x9df90081 wm_adsp_compr_free +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xa7154985 wm_adsp_compr_open +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xa9f33c54 wm_adsp_read_ctl +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xac71252c wm_adsp2_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xb6d00b30 wm_adsp2_preloader_get +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xba16a25b wm_adsp_fw_enum +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xc526e47b wm_adsp_early_event +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xccdacc2b 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 0xe7665256 wm_adsp2_component_remove 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 0xee7364b1 wm_adsp2_preloader_put -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xf6f528d9 wm_adsp1_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xfd5486db wm_adsp2_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x04fa5b00 wm8804_pm -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xce39125f wm8804_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xd7e7f748 wm8804_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xf5920509 wm8804_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0xb2c06c48 wm8903_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0x7bf565c8 wm8962_mic_detect -EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0xd640e897 fsl_asrc_component +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xefd0b09c wm_adsp_compr_handle_irq +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xf9763cee wm_adsp_compr_copy +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xfc0aad1c wm_adsp_fw_get +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x712d7c85 wm8804_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x86fbc6e3 wm8804_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xafa9b3e2 wm8804_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xbdfe48f1 wm8804_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0x74c1e074 wm8903_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0xd0c162cc wm8962_mic_detect +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0xad6854a1 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 0x006bb5e4 asoc_simple_remove -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x1449fdff asoc_simple_parse_clk -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x22a2cc2e asoc_simple_parse_routing -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x3bb9157a asoc_simple_shutdown -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x44c35f06 asoc_simple_set_dailink_name -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x5be79e29 asoc_simple_parse_pin_switches -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x5ca35dbb asoc_simple_dai_init -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x5cc0eb48 asoc_simple_startup -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x624acad3 asoc_simple_parse_widgets -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x6a99f196 asoc_simple_init_jack -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x72c30f96 asoc_simple_init_priv -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x78ed4237 asoc_simple_parse_daifmt -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xaf66fcde asoc_simple_be_hw_params_fixup -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xb0ddf928 asoc_simple_parse_convert -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xb50a4b28 asoc_simple_hw_params -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xcdb8bbf6 asoc_simple_parse_card_name -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xd1afe79c asoc_graph_card_probe -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xdd2f44c0 asoc_simple_canonicalize_platform +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x0198d301 asoc_simple_remove +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x0ccb4515 asoc_simple_parse_convert +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x2ff95e4c asoc_simple_parse_pin_switches +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x38808b16 asoc_simple_parse_daifmt +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x4c2cdc46 asoc_simple_init_priv +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x61ed17e6 asoc_simple_startup +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x68fc3da6 asoc_simple_parse_routing +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x69f2b3ac asoc_simple_parse_clk +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x7621a092 asoc_simple_be_hw_params_fixup +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x82778970 asoc_simple_shutdown +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x874a01a6 asoc_simple_canonicalize_cpu +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x94ff0887 asoc_simple_set_dailink_name +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x97aa410a asoc_simple_canonicalize_platform +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x986e70e2 asoc_simple_clean_reference +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xc561281b asoc_simple_init_jack +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xd10269f6 asoc_graph_card_probe +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xdd02938e asoc_simple_hw_params +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xde1093a5 asoc_simple_parse_card_name +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xea5bbc1f asoc_simple_parse_widgets EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xf3bafb75 asoc_simple_convert_fixup -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xf6192abf asoc_simple_clean_reference -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xff3fdfd6 asoc_simple_canonicalize_cpu -EXPORT_SYMBOL_GPL sound/soc/intel/atom/snd-soc-sst-atom-hifi2-platform 0x1b5b5503 sst_register_dsp -EXPORT_SYMBOL_GPL sound/soc/intel/atom/snd-soc-sst-atom-hifi2-platform 0x7063a863 sst_unregister_dsp -EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x40fd2ddb sst_configure_runtime_pm +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xfcbad3c3 asoc_simple_dai_init +EXPORT_SYMBOL_GPL sound/soc/intel/atom/snd-soc-sst-atom-hifi2-platform 0x403e2474 sst_register_dsp +EXPORT_SYMBOL_GPL sound/soc/intel/atom/snd-soc-sst-atom-hifi2-platform 0xd29340e1 sst_unregister_dsp +EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x5280c19d intel_sst_pm +EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x64c86c79 sst_context_cleanup +EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x66db4d31 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 0x8b133a76 intel_sst_pm -EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0xa3990b75 sst_context_init -EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0xb3893bb0 sst_alloc_drv_context -EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0xd387411b sst_context_cleanup +EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x731d147c sst_alloc_drv_context +EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0xb3ecccca sst_configure_runtime_pm EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x0281834b snd_soc_acpi_intel_cherrytrail_machines -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x0ee9d6a6 snd_soc_acpi_intel_ehl_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x12652a64 snd_soc_acpi_intel_ehl_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x14bbfc96 snd_soc_acpi_intel_cnl_sdw_machines EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x2c4fd0d6 snd_soc_acpi_intel_tgl_machines -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x477bd470 snd_soc_acpi_intel_hda_machines EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x482cc324 snd_soc_acpi_intel_jsl_machines EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x55eef082 snd_soc_acpi_intel_broadwell_machines EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x5add5149 snd_soc_acpi_intel_baytrail_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x5bf728b2 snd_soc_acpi_intel_hda_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x63dcf230 snd_soc_acpi_intel_icl_sdw_machines EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x7c617496 snd_soc_acpi_intel_haswell_machines EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x7f0cf4cf snd_soc_acpi_intel_bxt_machines -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x8071d501 snd_soc_acpi_intel_icl_sdw_machines EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x80e36ae3 snd_soc_acpi_intel_cfl_sdw_machines -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x97444c21 snd_soc_acpi_intel_skl_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x8bc8b0e3 snd_soc_acpi_intel_skl_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0xa7f268de snd_soc_acpi_intel_kbl_machines EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0xa95e3688 snd_soc_acpi_intel_glk_machines EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0xaee91d12 snd_soc_acpi_intel_adl_sdw_machines EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0xb291f19b snd_soc_acpi_intel_cml_sdw_machines EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0xb5e4a471 snd_soc_acpi_intel_cfl_machines -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0xbb7e941c snd_soc_acpi_intel_kbl_machines -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0xc12a954a snd_soc_acpi_intel_icl_machines EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0xc787c511 snd_soc_acpi_intel_tgl_sdw_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0xdda66988 snd_soc_acpi_intel_icl_machines EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0xe67811d5 snd_soc_acpi_intel_adl_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0xe6c0f488 snd_soc_acpi_intel_cnl_machines EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0xef3f8fcc snd_soc_acpi_intel_cml_machines -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0xf716dba7 snd_soc_acpi_intel_cnl_sdw_machines -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0xfa4c084a snd_soc_acpi_intel_cnl_machines -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x01db691a sst_dsp_inbox_read +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x05c1a85c sst_dsp_shim_write +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x14230ec5 sst_dsp_mailbox_init +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x14cca0c1 sst_dsp_outbox_write +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x14df2662 sst_dsp_shim_update_bits_forced 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 0x22e64db3 sst_dsp_inbox_write -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x39a7b4d8 sst_dsp_shim_update_bits_forced_unlocked -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x4feebdc3 sst_dsp_shim_update_bits_forced -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x5a0dbbea sst_dsp_shim_update_bits -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x5ae5e058 sst_dsp_shim_write -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x5b541e2c sst_dsp_outbox_write -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x67e04b4d sst_dsp_shim_read -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x6f305213 sst_dsp_outbox_read +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x1760b084 sst_dsp_shim_update_bits_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x17ec33f1 sst_dsp_inbox_write +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x31e9d0c9 sst_dsp_shim_update_bits +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x35065a1c sst_dsp_shim_write_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x35cc33d2 sst_dsp_shim_read_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x40b77784 sst_dsp_shim_read +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x43312f87 sst_dsp_inbox_read +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x4fe472be sst_dsp_register_poll 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 0x89b5d11f sst_dsp_mailbox_init -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xb0c9a605 sst_dsp_shim_update_bits_unlocked -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xb24ddbcb sst_dsp_shim_read_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xd447b595 sst_dsp_shim_update_bits_forced_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xd5401305 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 0xdf781d2c sst_dsp_shim_write_unlocked EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xe9c6de99 sst_shim32_write -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xf516841f sst_dsp_register_poll -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x07169942 sst_ipc_tx_msg_reply_complete -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x3e03fb6e sst_ipc_tx_message_nowait -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x77a301ea sst_ipc_fini -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x9836f9b3 sst_ipc_tx_message_wait -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x9fcc8708 sst_ipc_init -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0xd3060fde sst_ipc_reply_find_msg -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0xeb6c99fb sst_ipc_tx_message_nopm -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x01a53b0b skl_put_pvt_id -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x041aaa53 skl_ipc_bind_unbind -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x0821c486 skl_sst_ipc_load_library -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x0a060874 skl_dsp_wake -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x0a3ad07a skl_ipc_restore_pipeline -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x0a86c3cb skl_sst_dsp_init -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x0e23dc64 skl_dsp_get_core -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x10c033e8 is_skl_dsp_running -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x179ca59a skl_dsp_sleep -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x2b284a01 cnl_sst_init_fw -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x340f531f skl_dsp_free -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x348dc951 skl_ipc_create_pipeline -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x361090ff skl_ipc_set_pipeline_state -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x4b54f435 cnl_sst_dsp_init -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x5430d94b skl_clear_module_cnt -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x5afd1c8f skl_get_pvt_instance_id_map -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x5dcc263c cnl_sst_dsp_cleanup -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x5efe970d skl_ipc_get_large_config -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x6df3f23a skl_get_pvt_id -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x6ec1f597 bxt_sst_init_fw -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x7d377164 skl_ipc_set_d0ix -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x82efdcd3 bxt_sst_dsp_cleanup -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x841bcb48 bxt_sst_dsp_init -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x85acd74f skl_ipc_load_modules -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x8639687b skl_sst_dsp_cleanup -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x875d2f0c skl_ipc_set_large_config -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x9adc7cb4 skl_ipc_unload_modules -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xb110f63f skl_sst_init_fw -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xc3d08bef skl_ipc_init_instance -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xc4bcbc99 skl_ipc_save_pipeline -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xca7daf04 cnl_dsp_free -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xe7644b69 skl_ipc_delete_pipeline -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xe80b5b3e skl_dsp_set_dma_control -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xf383c400 skl_dsp_put_core -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xf9364bee skl_ipc_set_dx +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x219b14db sst_ipc_tx_message_nowait +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x4c1312b3 sst_ipc_tx_message_nopm +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x73647c2c sst_ipc_reply_find_msg +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x86c8272a sst_ipc_fini +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x9db1aae1 sst_ipc_tx_msg_reply_complete +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0xe1efd0fe sst_ipc_init +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0xf8e09cba sst_ipc_tx_message_wait +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x0236b63a skl_ipc_load_modules +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x0708861c skl_ipc_create_pipeline +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x0739598c cnl_dsp_free +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x0be31091 cnl_sst_dsp_init +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x0e02cb6b skl_ipc_bind_unbind +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x0fa010dc skl_get_pvt_id +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x104056f9 skl_ipc_set_dx +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x153913fa skl_dsp_sleep +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x1acc1b3e skl_get_pvt_instance_id_map +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x1b3dc7cb skl_ipc_save_pipeline +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x21a73921 skl_dsp_set_dma_control +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x28d71b1b cnl_sst_init_fw +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x2a8d71c5 skl_sst_dsp_init +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x30cbc43e skl_sst_dsp_cleanup +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x328716f2 skl_dsp_wake +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x5c1a26ef bxt_sst_dsp_init +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x5d1448c2 skl_ipc_set_d0ix +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x5ec62c17 skl_ipc_set_large_config +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x601cf17e bxt_sst_init_fw +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x62fe27f0 skl_dsp_free +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x6c2b9300 skl_ipc_get_large_config +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x72e5648a skl_put_pvt_id +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x73d606e3 skl_sst_init_fw +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x7ac1e608 bxt_sst_dsp_cleanup +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x7da66fb7 skl_dsp_get_core +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x82457368 cnl_sst_dsp_cleanup +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x8272c528 skl_ipc_unload_modules +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x8b3f8a43 skl_ipc_restore_pipeline +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x913c1908 skl_ipc_set_pipeline_state +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xaf8412fa skl_ipc_delete_pipeline +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xcf0fe0bf skl_sst_ipc_load_library +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xd03f815a is_skl_dsp_running +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xd0757a6f skl_ipc_init_instance +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xdcf1d001 skl_dsp_put_core +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xeb1f8382 skl_clear_module_cnt EXPORT_SYMBOL_GPL sound/soc/snd-soc-acpi 0x508e2567 snd_soc_acpi_codec_list EXPORT_SYMBOL_GPL sound/soc/snd-soc-acpi 0x6c5d2bcd snd_soc_acpi_find_package_from_hid EXPORT_SYMBOL_GPL sound/soc/snd-soc-acpi 0xe3a526be snd_soc_acpi_find_machine -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x019fbfdb snd_soc_dai_compr_get_metadata -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0229b865 snd_soc_component_initialize -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x022a7689 snd_soc_debugfs_root -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x02b080d8 snd_soc_component_update_bits -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x02eef89f snd_soc_component_compr_get_caps -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x04321639 snd_soc_dapm_get_pin_switch -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0652e6f0 snd_soc_of_get_dai_name -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x06881fa2 snd_soc_component_exit_regmap -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x06f64409 snd_soc_get_dai_name -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x08358cd4 snd_soc_jack_add_pins -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x08f2777a snd_soc_component_compr_ack -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0cdd2b5b snd_soc_dapm_weak_routes -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0dc67fd8 snd_soc_pm_ops -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x102c3241 snd_soc_dapm_get_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x10faf65c snd_soc_component_enable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x13ef8bbb snd_soc_find_dai_with_mutex -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x158ef56e snd_soc_dapm_get_pin_status -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x168a8233 snd_soc_get_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x170251ca snd_soc_dai_link_set_capabilities -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1859871f snd_soc_component_compr_trigger -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x18df0b28 snd_soc_cnew -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1978f032 snd_soc_card_add_dai_link -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1a9cc5b1 snd_soc_dai_action -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1bb57cb1 snd_soc_dapm_disable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1cadb07d snd_soc_daifmt_parse_format -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1cf005b0 snd_soc_component_compr_get_codec_caps -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1d208934 snd_soc_component_async_complete -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1f1badf7 snd_soc_put_xr_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x20149171 devm_snd_dmaengine_pcm_register -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2043772f snd_soc_get_dai_id -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x23e755bd snd_soc_dai_set_pll -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x24a11e3c snd_soc_lookup_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x250ba69b snd_soc_jack_notifier_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x016d3afc snd_soc_dpcm_runtime_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0394b993 snd_soc_component_compr_copy +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x04499d85 snd_soc_dpcm_can_be_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x08e21ff5 snd_soc_add_pcm_runtime +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0abe3e10 snd_soc_set_dmi_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0c81fa07 snd_soc_poweroff +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0cde7c59 snd_soc_component_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0ef33be3 snd_soc_dapm_free +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0f4b6c02 snd_soc_remove_pcm_runtime +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0f6a1716 snd_soc_dai_digital_mute +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x11a15b3f snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x131c5f19 snd_soc_new_compress +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x132b2302 snd_soc_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x141e0ab0 snd_soc_dapm_init +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x14a7b078 snd_soc_pm_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1568d261 snd_soc_get_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x17bf6688 snd_soc_component_force_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1a3415ad snd_soc_of_parse_card_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1c1bc90d snd_soc_dapm_force_bias_level +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1de0f5f4 snd_soc_component_write_field +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x21435d30 snd_soc_component_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2252731a snd_soc_component_read_field +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x23606346 snd_soc_new_ac97_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x23ebfe52 snd_soc_dai_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x24921889 snd_soc_dapm_sync EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2541a979 snd_soc_calc_frame_size -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2560cca6 snd_soc_component_read_field -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x25f032ff snd_soc_info_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x26145efd snd_soc_component_compr_get_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x26fe5038 snd_soc_dapm_free -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2833961f snd_soc_add_pcm_runtime -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2b10267c snd_soc_component_disable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2b76328d snd_soc_add_dai_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2cc6993d snd_soc_register_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2dce8d02 snd_soc_dai_set_sysclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2ebc7e8c snd_soc_component_compr_copy -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x30559175 dapm_regulator_event -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x323cf05f snd_soc_dapm_mixer_update_power -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x32ecc887 snd_soc_bytes_tlv_callback -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x33822e1c snd_soc_component_test_bits -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x33a89555 snd_soc_dai_set_tdm_slot -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x33d7154a snd_soc_card_remove_dai_link -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x36912a53 snd_soc_get_xr_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x376accf5 null_dailink_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3814389c snd_soc_add_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x39ff11c7 snd_soc_jack_report -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3b8eec2a snd_soc_rtdcom_lookup -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3e9a9ea0 snd_soc_bytes_put -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3eda922b snd_soc_component_compr_set_metadata -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3f000597 snd_soc_put_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x42632de2 snd_soc_dai_compr_shutdown -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x44463227 snd_soc_component_compr_get_metadata -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x44ffd773 snd_soc_dpcm_runtime_update -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x46adadeb snd_soc_dai_set_fmt -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x48280f13 snd_soc_dapm_del_routes -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4969420a snd_soc_add_card_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4ac3c5d2 snd_soc_jack_get_type -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4e303552 snd_soc_bytes_get -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4e363200 snd_soc_lookup_component_nolocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4e9b2a8d snd_soc_dapm_force_enable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5050b26c snd_soc_dpcm_can_be_free_stop -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x52c88c02 snd_soc_get_pcm_runtime -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x52f01073 snd_soc_dapm_nc_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x53804c4d snd_soc_dpcm_be_can_update -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x54662f6e snd_soc_link_compr_set_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x566c0092 snd_soc_tplg_widget_bind_event -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x57bf9e8b dpcm_be_dai_trigger -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x582a5077 snd_soc_dai_get_channel_map -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x592a2a8e snd_soc_put_volsw_range -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x59822f9b snd_soc_dai_set_tristate -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5afe1725 snd_soc_component_compr_open -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5be747be snd_soc_dai_digital_mute -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5ea35803 snd_soc_of_parse_audio_routing -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5f0f24c6 snd_soc_put_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x65dc751c snd_soc_bytes_info_ext -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x667c04ee snd_soc_dapm_get_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x67fd6410 snd_soc_get_volsw_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6b3c308c snd_soc_get_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6beb7108 snd_soc_dapm_update_dai -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6cadfb54 snd_soc_tplg_component_remove -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6cecfb86 devm_snd_soc_register_dai -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6d193ec4 snd_soc_get_volsw_range -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6ddd3dc4 dapm_mark_endpoints_dirty -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6dde83bb devm_snd_soc_register_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x71163296 snd_soc_dapm_mux_update_power -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x715924a9 soc_ac97_ops -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x72298006 snd_soc_dai_compr_get_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7256aa80 snd_soc_get_strobe -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x72e5e45d snd_soc_component_write -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7446dd7f snd_soc_dapm_new_widgets -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x744feaa6 snd_soc_add_component_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x749734e4 snd_soc_component_compr_free -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x760f47cc snd_soc_component_force_enable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7b2f866d snd_soc_close_delayed_work -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7c25a879 snd_soc_component_nc_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7ce12325 snd_soc_daifmt_parse_clock_provider_raw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2736aa2f snd_soc_of_parse_aux_devs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x28b1e8d5 snd_soc_dapm_mux_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x298d9c89 snd_soc_dapm_get_pin_status +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x29a0d426 dapm_regulator_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2c570163 snd_soc_dapm_kcontrol_widget +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2c820ce0 snd_soc_dapm_mixer_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2df90553 snd_soc_jack_get_type +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2e809261 snd_soc_dapm_disable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2ee59a0f dapm_mark_endpoints_dirty +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3027242d soc_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x30934a56 snd_soc_component_compr_get_caps +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x322dab07 snd_soc_dapm_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3276ef1a snd_soc_tplg_component_load +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x32d7c9e3 snd_soc_component_update_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3337b0be snd_soc_component_compr_pointer +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x34cf4a96 snd_soc_dapm_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x35a8f41c snd_soc_of_get_dai_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x362224e3 devm_snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x370b5159 snd_soc_component_disable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3873172c snd_soc_dai_compr_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x38869996 snd_soc_tplg_component_remove +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x39a7840d snd_soc_component_async_complete +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3da4c887 snd_soc_component_compr_ack +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3e1ed4b0 snd_soc_dapm_del_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3ea5bf8f snd_soc_debugfs_root +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3f8520df dapm_pinctrl_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x40655755 snd_soc_find_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x40adb5f6 snd_soc_bytes_info +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x40d7b739 snd_soc_component_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x41780edd snd_soc_dapm_update_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x41d0dfe5 snd_soc_dapm_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x44c715ae snd_soc_put_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x472c0e12 snd_soc_get_dai_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4bc5c66d snd_soc_component_disable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4c75406e snd_soc_dpcm_can_be_free_stop +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4d011918 snd_soc_component_get_pin_status +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x51ad23bc snd_soc_dapm_nc_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x52b420dc snd_soc_component_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x53ddd534 snd_soc_resume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x54d28282 snd_dmaengine_pcm_prepare_slave_config +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x56ef40a4 snd_soc_limit_volume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x59542c2e snd_soc_dapm_add_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x59899043 snd_soc_put_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5c72624b snd_soc_dai_set_bclk_ratio +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5e247b09 snd_soc_dai_compr_startup +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5f6e4485 devm_snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5f9704e1 snd_soc_link_compr_shutdown +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6047661b snd_soc_info_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x618b38f5 snd_soc_info_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x63e25fac snd_soc_dapm_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x65a5bedb snd_soc_component_nc_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x66184f50 snd_soc_bytes_put +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x67751bb1 snd_soc_info_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x689aff70 snd_soc_runtime_calc_hw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x68b822c6 snd_soc_jack_notifier_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x68e353b7 snd_soc_dai_set_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6942b706 snd_soc_dai_compr_set_metadata +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6cd45ad0 snd_soc_set_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6f88aa05 snd_soc_component_initialize +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x701be57d devm_snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x70db1507 snd_soc_dapm_new_control +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7194b1f8 snd_soc_close_delayed_work +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x720ec441 snd_soc_component_update_bits_async +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7689f46b snd_soc_component_compr_get_codec_caps +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7b727e64 snd_soc_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7baa705c snd_soc_dai_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7cf2b25c snd_soc_dai_set_tristate +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7d2c7ed3 dpcm_be_dai_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7daf90b8 snd_soc_component_exit_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e1d9a3c snd_soc_unregister_component_by_driver EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e606130 snd_soc_calc_bclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7f68d7de snd_soc_unregister_card -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x80137482 snd_soc_jack_notifier_unregister -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x80568e64 snd_soc_set_ac97_ops_of_reset -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x81179371 snd_soc_dapm_ignore_suspend -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8254a898 snd_soc_of_get_slot_mask -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x830845d8 snd_soc_dapm_disable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x84893946 snd_soc_dai_set_bclk_ratio -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8573de7c dapm_kcontrol_get_value -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x85bde236 snd_soc_link_compr_shutdown -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8b6ad77d snd_soc_dai_compr_pointer -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8d80469f snd_soc_of_parse_tdm_slot -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8e36928b snd_soc_dai_compr_startup -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8f58f900 snd_soc_dai_compr_set_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x90bbac64 snd_soc_jack_add_gpiods -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x948ff2dd snd_soc_runtime_calc_hw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x95472006 dapm_pinctrl_event -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x95526ade snd_soc_component_enable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x96679278 snd_soc_set_ac97_ops -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9695296d snd_soc_dapm_enable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x980bdafb snd_soc_set_runtime_hwparams -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x99d83b73 snd_dmaengine_pcm_unregister -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9bdf6ec8 snd_soc_dai_compr_ack +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7f939a3a snd_soc_dai_link_set_capabilities +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x80e41a40 snd_soc_dai_set_channel_map +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x81e218fa snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x825763b0 snd_soc_dai_active +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x86948f66 snd_soc_unregister_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8ac13c30 snd_dmaengine_pcm_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8b77f7db snd_soc_unregister_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8d829782 snd_soc_free_ac97_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8d931f04 snd_soc_component_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8eea56c6 snd_soc_of_get_dai_link_codecs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8f71f911 snd_soc_set_ac97_ops_of_reset +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x902fa261 snd_soc_get_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x918ae888 snd_soc_add_card_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x935a653f snd_soc_component_init_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x943a6ce9 snd_soc_tplg_widget_bind_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9499ab8f snd_soc_of_parse_audio_simple_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9606e238 snd_soc_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x967d1d00 snd_soc_card_jack_new +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x97995157 snd_soc_dai_get_channel_map +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9afcf221 snd_soc_rtdcom_lookup +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9b33123c snd_soc_dapm_new_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9bd51462 snd_soc_dapm_stream_stop EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9bfde704 snd_soc_daifmt_clock_provider_fliped -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9c305021 snd_soc_of_parse_aux_devs -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9c470c18 snd_soc_dapm_sync -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9dea795d snd_soc_info_volsw_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9eac9fd0 snd_soc_register_card -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9f298d28 snd_soc_link_compr_startup -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa06b42da snd_soc_dpcm_can_be_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa246db1a snd_soc_jack_add_zones -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa26c57b3 snd_soc_dpcm_fe_can_update -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa354878e snd_soc_unregister_component_by_driver -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa387add2 snd_soc_limit_volume -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa3c447f6 snd_soc_put_strobe -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa6dabe0a snd_soc_find_dai -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa7ae4a53 snd_soc_dapm_new_control -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa98d0ad0 snd_soc_dapm_info_pin_switch -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xabf0ba2f snd_soc_component_set_sysclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xad7007e0 snd_soc_component_force_enable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xadeaab89 snd_soc_dapm_put_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xae1ac90a snd_soc_dai_set_channel_map -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xae2bfe77 snd_soc_dai_active -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb0e3a5f2 snd_soc_dapm_force_enable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb18edcb0 snd_soc_info_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb19a353d snd_soc_component_set_pll -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb37668e8 snd_soc_remove_pcm_runtime -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb5142f08 snd_soc_tplg_component_load -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb5b17737 snd_soc_new_compress -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb64b65ba snd_soc_info_volsw_range -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb90a7b6b snd_soc_of_put_dai_link_codecs -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb9f553a0 snd_soc_dapm_sync_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbb88b590 snd_soc_jack_add_gpios -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbbe20dd2 snd_soc_dai_set_clkdiv -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbcb67907 snd_soc_runtime_set_dai_fmt -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbfbbea40 snd_soc_of_get_dai_link_codecs -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc023f537 snd_soc_put_volsw_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc0a77e89 snd_soc_set_dmi_name -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc3ed5d1d snd_soc_card_jack_new -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc5a30fc5 snd_soc_info_xr_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc795440d snd_soc_of_parse_card_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9ff5a305 snd_soc_dapm_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9ffb81c8 snd_soc_dapm_new_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa1386d95 snd_soc_card_add_dai_link +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa4e0d61b snd_soc_dai_compr_ack +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa559d4dc snd_soc_jack_free_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa604c92d snd_soc_dapm_put_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa7a4bdf7 snd_soc_link_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa7ed3d7f snd_soc_get_dai_id +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa80d0000 snd_soc_of_get_slot_mask +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa8ae9ace snd_soc_dai_compr_pointer +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa9223858 snd_soc_put_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa971c0cd snd_soc_jack_add_pins +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xadbebcd9 snd_soc_runtime_set_dai_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xadcdd772 snd_soc_dai_compr_get_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaee2acf0 snd_soc_dai_set_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb11e5f04 snd_soc_dai_set_clkdiv +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb12bbc4b snd_soc_of_parse_audio_routing +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb18defd2 null_dailink_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb2c39392 snd_soc_dapm_weak_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb34ca8a2 snd_soc_component_compr_get_metadata +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb44daab6 snd_soc_component_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb6e38691 snd_soc_dapm_get_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb71cb38d snd_soc_info_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb7ba31c3 snd_soc_jack_notifier_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbbb05b78 snd_soc_component_compr_set_metadata +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc015a971 snd_soc_component_test_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc085def1 snd_soc_bytes_get +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc0ac92ef snd_soc_set_runtime_hwparams +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc0cce8bf snd_soc_add_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc170b8f0 snd_soc_dapm_nc_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc5d04ac8 snd_soc_component_nc_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc80e8cbd snd_soc_put_volsw_range EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8269f94 snd_soc_params_to_frame_size -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xccc396cb snd_soc_component_compr_pointer -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xceca78fd snd_soc_dai_compr_trigger -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd0799671 snd_dmaengine_pcm_prepare_slave_config -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd18f3625 snd_soc_component_read -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd1e7433e snd_soc_dapm_kcontrol_dapm -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd3f67bad snd_soc_free_ac97_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd432e00c snd_soc_of_parse_node_prefix -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd682dc28 snd_soc_jack_free_gpios -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd7d930e0 snd_soc_dai_compr_set_metadata -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd8b3e231 snd_dmaengine_pcm_register -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd8d39056 snd_soc_component_disable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdc62d344 snd_soc_dapm_add_routes -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdcdec720 snd_soc_dapm_force_bias_level -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdf003611 snd_soc_component_set_jack -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe1804c17 snd_soc_dapm_kcontrol_widget -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe23bcc46 snd_soc_dapm_stream_stop -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe4a29039 devm_snd_soc_register_card -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe5465084 snd_soc_dpcm_get_substream -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe5949f64 snd_soc_dapm_enable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe6df29ad snd_soc_dapm_nc_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe97a5a7c snd_soc_component_write_field -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeafbe1ea snd_soc_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc9be3f4a snd_soc_jack_add_gpiods +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcce51b19 snd_soc_card_get_kcontrol +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcce68001 snd_soc_of_put_dai_link_codecs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xce27cce4 snd_soc_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xceba330b snd_soc_add_dai_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcebab977 snd_soc_card_remove_dai_link +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcf8e1f2a snd_soc_of_parse_node_prefix +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd02d9b73 snd_soc_dapm_force_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd0f98fde snd_soc_dpcm_be_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd187638f snd_soc_jack_report +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd1f48637 snd_soc_runtime_action +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd3b4a3fc snd_soc_dapm_kcontrol_dapm +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd3c40001 snd_soc_daifmt_parse_clock_provider_raw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd3c774a2 snd_soc_lookup_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd4913c25 snd_soc_dapm_disable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd5ca0a2d snd_soc_component_compr_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd78baa24 snd_soc_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd80d038a snd_soc_jack_add_zones +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd9d20252 dapm_kcontrol_get_value +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd9eca1d4 snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdc92f886 snd_soc_info_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdc958e09 snd_soc_component_set_jack +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdea2b3a2 snd_soc_dai_compr_shutdown +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdeb33598 snd_soc_component_force_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdf52801c snd_soc_get_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe0173fd1 snd_soc_unregister_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe0e8b680 snd_soc_component_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe13ca748 snd_soc_find_dai_with_mutex +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe1b51505 snd_soc_dai_compr_get_metadata +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe4a0f2bd snd_soc_component_compr_open +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe63810dc snd_soc_daifmt_parse_format +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe7e4e096 snd_soc_dapm_info_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe89bda08 snd_soc_dai_action +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe9b95c90 snd_soc_dpcm_get_substream EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb711ae7 snd_soc_params_to_bclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xebb87ef0 snd_soc_dapm_put_pin_switch -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xedae4f6b snd_soc_bytes_info -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf0bf0ea2 snd_soc_dapm_init -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf244a2e1 snd_soc_component_update_bits_async -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf2786000 snd_soc_component_compr_set_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf27bc23d snd_soc_dapm_put_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf3d49e98 snd_soc_component_nc_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf5d105dd snd_soc_card_get_kcontrol -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf5f2267b snd_soc_unregister_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf6322993 snd_soc_runtime_action -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf67be39b snd_soc_dapm_new_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf6f8f25a snd_soc_poweroff -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf90353ee snd_soc_new_ac97_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xebf1d10f snd_soc_bytes_info_ext +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xece5ade5 snd_soc_dapm_ignore_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xedbb47a1 snd_soc_lookup_component_nolocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf0eab3ef snd_soc_dapm_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf1a08217 devm_snd_soc_register_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf1bee543 snd_soc_dpcm_fe_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf2b92e9d snd_soc_jack_add_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf30423ca snd_soc_dapm_force_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf4618f01 snd_soc_of_parse_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf5704403 snd_soc_get_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf8151ebc snd_soc_component_compr_get_params EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf9622dd1 snd_soc_daifmt_clock_provider_from_bitmap -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfa02fa16 snd_soc_component_get_pin_status -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfaf56024 snd_soc_component_init_regmap -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfb99e892 snd_soc_resume -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfc9f7314 snd_soc_of_parse_audio_simple_widgets -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfe8feaa1 dapm_clock_event -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfed887fe snd_soc_unregister_dai -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x0a566d04 snd_sof_debugfs_buf_item -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x2ad7eb07 snd_sof_dbg_init -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x36f22267 snd_sof_free_debug -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x8becc3ed snd_sof_debugfs_io_item -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0xc09b46dc snd_sof_dbg_memory_info_init -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x13b4f812 line6_write_data -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x1a7acc09 line6_probe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf97423c5 snd_soc_dapm_sync_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf9f9af07 dapm_clock_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfa1ebb8b snd_soc_get_pcm_runtime +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfc3916ac snd_soc_component_compr_free +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfc95166c snd_soc_link_compr_startup +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfd36f134 snd_soc_add_component_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfd645694 snd_soc_cnew +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfdca1c25 snd_soc_dai_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xffbca088 snd_soc_bytes_tlv_callback +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x4fa56f0e snd_sof_debugfs_io_item +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x672d569f snd_sof_free_debug +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0xd56aa138 snd_sof_dbg_init +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0xed8c6896 snd_sof_dbg_memory_info_init +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0xf141dcfe snd_sof_debugfs_buf_item +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x0562660f line6_resume +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x0d455ca8 line6_pcm_release +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x15d75a6e line6_suspend EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x202a1b1b line6_midi_id -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x2316e7b7 line6_resume -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x5fd69f21 line6_version_request_async -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x729f2145 line6_read_serial_number -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x7b85fe6a line6_send_raw_message -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x7dae9529 line6_disconnect -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x7fe4ead2 line6_alloc_sysex_buffer -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x856d8f0b line6_suspend -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x85e76bab line6_send_sysex_message -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xa2b8870d line6_pcm_release -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xafeee4f2 line6_init_midi -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xd2c612cd line6_pcm_acquire -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xd41297c1 line6_read_data -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xd9dc2dcb line6_send_raw_message_async -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xddd878b0 line6_init_pcm -EXPORT_SYMBOL_GPL vmlinux 0x000d09eb iommu_map_sg -EXPORT_SYMBOL_GPL vmlinux 0x001790b6 file_ra_state_init +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x24049909 line6_version_request_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x3266477d line6_init_pcm +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x66a2b77b line6_send_raw_message_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x6a535339 line6_alloc_sysex_buffer +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x95e86051 line6_disconnect +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xaf7b4c7a line6_send_raw_message +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xb0cadbb2 line6_read_serial_number +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xb49dde33 line6_write_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xb7bdf299 line6_send_sysex_message +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xbc3e8733 line6_read_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xcd8efaf1 line6_probe +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xe938ea08 line6_init_midi +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xf59a234d line6_pcm_acquire EXPORT_SYMBOL_GPL vmlinux 0x001b074f mce_is_correctable -EXPORT_SYMBOL_GPL vmlinux 0x001f50bd devm_spi_register_controller -EXPORT_SYMBOL_GPL vmlinux 0x0029e87d relay_file_operations -EXPORT_SYMBOL_GPL vmlinux 0x0032c71a md_run +EXPORT_SYMBOL_GPL vmlinux 0x002da3b3 tpm_chip_alloc EXPORT_SYMBOL_GPL vmlinux 0x0034f3b6 xen_has_pv_nic_devices -EXPORT_SYMBOL_GPL vmlinux 0x003ac8ef skcipher_alloc_instance_simple -EXPORT_SYMBOL_GPL vmlinux 0x0042834d wm8400_reset_codec_reg_cache +EXPORT_SYMBOL_GPL vmlinux 0x0047b7b0 paste_selection EXPORT_SYMBOL_GPL vmlinux 0x00513f58 get_timespec64 EXPORT_SYMBOL_GPL vmlinux 0x00531a17 xen_xlate_map_ballooned_pages EXPORT_SYMBOL_GPL vmlinux 0x00565f18 pernet_ops_rwsem EXPORT_SYMBOL_GPL vmlinux 0x005f18a6 add_wait_queue_priority -EXPORT_SYMBOL_GPL vmlinux 0x0061011f led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0x007b256a devm_serdev_device_open +EXPORT_SYMBOL_GPL vmlinux 0x0084a611 hwspin_lock_request EXPORT_SYMBOL_GPL vmlinux 0x008539f0 klp_shadow_alloc -EXPORT_SYMBOL_GPL vmlinux 0x008c5fd3 wbt_disable_default -EXPORT_SYMBOL_GPL vmlinux 0x00915185 __SCK__tp_func_rpm_idle -EXPORT_SYMBOL_GPL vmlinux 0x009627ff fuse_mount_remove +EXPORT_SYMBOL_GPL vmlinux 0x009937db l3mdev_master_upper_ifindex_by_index_rcu +EXPORT_SYMBOL_GPL vmlinux 0x00a81a86 fib6_rule_default +EXPORT_SYMBOL_GPL vmlinux 0x00b2df7e shash_free_singlespawn_instance +EXPORT_SYMBOL_GPL vmlinux 0x00bb2070 tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x00bb77ce icc_std_aggregate +EXPORT_SYMBOL_GPL vmlinux 0x00bfe139 dma_request_chan EXPORT_SYMBOL_GPL vmlinux 0x00d4c500 usb_decode_interval EXPORT_SYMBOL_GPL vmlinux 0x00df9837 ioasid_register_allocator -EXPORT_SYMBOL_GPL vmlinux 0x00e2e6cc devlink_trap_groups_register -EXPORT_SYMBOL_GPL vmlinux 0x00e62dbe securityfs_create_file -EXPORT_SYMBOL_GPL vmlinux 0x00ee403a tcp_reno_undo_cwnd -EXPORT_SYMBOL_GPL vmlinux 0x00f3b0d0 gnttab_foreach_grant_in_range -EXPORT_SYMBOL_GPL vmlinux 0x01057032 pci_ioremap_wc_bar +EXPORT_SYMBOL_GPL vmlinux 0x00e245a5 phy_pm_runtime_get +EXPORT_SYMBOL_GPL vmlinux 0x00f58a33 gpiochip_populate_parent_fwspec_twocell +EXPORT_SYMBOL_GPL vmlinux 0x010d3aa8 acpi_device_update_power +EXPORT_SYMBOL_GPL vmlinux 0x011865fe pci_probe_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x01258c5e pm_runtime_autosuspend_expiration +EXPORT_SYMBOL_GPL vmlinux 0x012e6f08 devlink_dpipe_action_put EXPORT_SYMBOL_GPL vmlinux 0x012e730e apei_exec_noop -EXPORT_SYMBOL_GPL vmlinux 0x0152c821 regmap_can_raw_write -EXPORT_SYMBOL_GPL vmlinux 0x0154d8f8 mptcp_pm_get_add_addr_signal_max -EXPORT_SYMBOL_GPL vmlinux 0x0159ebc7 devres_get -EXPORT_SYMBOL_GPL vmlinux 0x0181968c gpiod_get_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x0183f310 linear_hugepage_index +EXPORT_SYMBOL_GPL vmlinux 0x014458e0 ata_sff_dev_select +EXPORT_SYMBOL_GPL vmlinux 0x01642779 regulator_map_voltage_iterate +EXPORT_SYMBOL_GPL vmlinux 0x01649609 yield_to +EXPORT_SYMBOL_GPL vmlinux 0x0178296f dma_buf_put +EXPORT_SYMBOL_GPL vmlinux 0x017b737e ata_host_activate EXPORT_SYMBOL_GPL vmlinux 0x01848a8e local_apic_timer_c2_ok EXPORT_SYMBOL_GPL vmlinux 0x01866a57 ezx_pcap_set_bits EXPORT_SYMBOL_GPL vmlinux 0x018b3d1e intel_pt_validate_cap -EXPORT_SYMBOL_GPL vmlinux 0x0194b014 pinctrl_lookup_state -EXPORT_SYMBOL_GPL vmlinux 0x019ee758 inet6_destroy_sock +EXPORT_SYMBOL_GPL vmlinux 0x018d02df palmas_ext_control_req_config +EXPORT_SYMBOL_GPL vmlinux 0x019234eb blkg_conf_finish +EXPORT_SYMBOL_GPL vmlinux 0x019a416b rio_release_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0x019ee6f6 ata_bmdma_error_handler EXPORT_SYMBOL_GPL vmlinux 0x01a0cb78 property_entries_free -EXPORT_SYMBOL_GPL vmlinux 0x01bd2052 dax_finish_sync_fault +EXPORT_SYMBOL_GPL vmlinux 0x01aa6518 da903x_writes +EXPORT_SYMBOL_GPL vmlinux 0x01abf858 usb_get_hcd +EXPORT_SYMBOL_GPL vmlinux 0x01ad0817 pci_epc_add_epf EXPORT_SYMBOL_GPL vmlinux 0x01c12c32 cpu_bit_bitmap -EXPORT_SYMBOL_GPL vmlinux 0x01c13b29 bpf_map_inc_with_uref -EXPORT_SYMBOL_GPL vmlinux 0x01cf7127 find_vpid -EXPORT_SYMBOL_GPL vmlinux 0x01d2462b acpi_initialize_hp_context -EXPORT_SYMBOL_GPL vmlinux 0x01d2eb8f devlink_is_reload_failed +EXPORT_SYMBOL_GPL vmlinux 0x01ca7cd6 __SCK__tp_func_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0x01caa9cc is_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x01d341f7 dm_table_set_type +EXPORT_SYMBOL_GPL vmlinux 0x01d82f6a dev_pm_domain_set EXPORT_SYMBOL_GPL vmlinux 0x01e1a8de kgdb_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x01e28800 pci_generic_config_write32 +EXPORT_SYMBOL_GPL vmlinux 0x01e3b67e dev_get_tstats64 EXPORT_SYMBOL_GPL vmlinux 0x01ee5532 smp_call_function_any -EXPORT_SYMBOL_GPL vmlinux 0x01ef63e5 sata_lpm_ignore_phy_events -EXPORT_SYMBOL_GPL vmlinux 0x01f4dc2c usb_phy_roothub_suspend -EXPORT_SYMBOL_GPL vmlinux 0x0207a499 devm_init_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x01f29897 tracing_snapshot_cond_disable +EXPORT_SYMBOL_GPL vmlinux 0x01fef75f crypto_unregister_rng EXPORT_SYMBOL_GPL vmlinux 0x0207a6c6 reset_control_bulk_acquire -EXPORT_SYMBOL_GPL vmlinux 0x0209f774 devm_platform_get_and_ioremap_resource +EXPORT_SYMBOL_GPL vmlinux 0x021c0271 regmap_read +EXPORT_SYMBOL_GPL vmlinux 0x022b7ca0 sock_prot_inuse_add EXPORT_SYMBOL_GPL vmlinux 0x02394899 play_idle_precise -EXPORT_SYMBOL_GPL vmlinux 0x0246d4ea crypto_unregister_template EXPORT_SYMBOL_GPL vmlinux 0x024d13dd request_free_mem_region -EXPORT_SYMBOL_GPL vmlinux 0x0257af79 __tracepoint_devlink_trap_report -EXPORT_SYMBOL_GPL vmlinux 0x025a31e0 skcipher_walk_virt -EXPORT_SYMBOL_GPL vmlinux 0x02729af6 dma_request_chan -EXPORT_SYMBOL_GPL vmlinux 0x027f2e22 device_driver_attach -EXPORT_SYMBOL_GPL vmlinux 0x02b6ede5 devlink_dpipe_headers_register -EXPORT_SYMBOL_GPL vmlinux 0x02e20d86 of_pm_clk_add_clk -EXPORT_SYMBOL_GPL vmlinux 0x02ffa164 regulator_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x026a657c __SCK__tp_func_br_fdb_external_learn_add +EXPORT_SYMBOL_GPL vmlinux 0x02996c53 sk_clear_memalloc +EXPORT_SYMBOL_GPL vmlinux 0x02b75ea1 msg_zerocopy_realloc +EXPORT_SYMBOL_GPL vmlinux 0x02c9c9c4 rio_route_add_entry +EXPORT_SYMBOL_GPL vmlinux 0x02d07ded pwm_lpss_probe +EXPORT_SYMBOL_GPL vmlinux 0x02e10e93 devlink_region_snapshot_id_put +EXPORT_SYMBOL_GPL vmlinux 0x02e9af7a irq_domain_simple_ops +EXPORT_SYMBOL_GPL vmlinux 0x02eff0d7 sata_link_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x0306cc60 regulator_bulk_disable EXPORT_SYMBOL_GPL vmlinux 0x0312b3b0 reset_controller_add_lookup -EXPORT_SYMBOL_GPL vmlinux 0x031407c8 irq_chip_ack_parent -EXPORT_SYMBOL_GPL vmlinux 0x031c2229 wakeup_source_add +EXPORT_SYMBOL_GPL vmlinux 0x03172526 to_nvdimm +EXPORT_SYMBOL_GPL vmlinux 0x031ae49a gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0x031c4188 devm_clk_bulk_get_all +EXPORT_SYMBOL_GPL vmlinux 0x032f24fa skb_consume_udp +EXPORT_SYMBOL_GPL vmlinux 0x03328db6 rtnl_link_unregister EXPORT_SYMBOL_GPL vmlinux 0x033832c7 usb_amd_hang_symptom_quirk -EXPORT_SYMBOL_GPL vmlinux 0x033f211e dev_pm_disable_wake_irq EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list -EXPORT_SYMBOL_GPL vmlinux 0x03476404 gpiod_set_consumer_name -EXPORT_SYMBOL_GPL vmlinux 0x0349e19e efivar_entry_get -EXPORT_SYMBOL_GPL vmlinux 0x034a0c0b crypto_unregister_templates -EXPORT_SYMBOL_GPL vmlinux 0x035f1804 pci_iomap_wc_range +EXPORT_SYMBOL_GPL vmlinux 0x0348466e blk_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0x034a4ca3 __traceiter_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0x03519884 udp_bpf_update_proto +EXPORT_SYMBOL_GPL vmlinux 0x03585a65 icmp_build_probe +EXPORT_SYMBOL_GPL vmlinux 0x035a4045 devlink_params_unpublish EXPORT_SYMBOL_GPL vmlinux 0x036de383 perf_event_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x0386e23e pinconf_generic_dump_config +EXPORT_SYMBOL_GPL vmlinux 0x037ea9a1 dev_pm_opp_get_suspend_opp_freq +EXPORT_SYMBOL_GPL vmlinux 0x0390bd51 pid_vnr EXPORT_SYMBOL_GPL vmlinux 0x03952887 ktime_add_safe -EXPORT_SYMBOL_GPL vmlinux 0x039ad4ce fuse_fill_super_common -EXPORT_SYMBOL_GPL vmlinux 0x03a41c94 skcipher_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x03a45d0b __tracepoint_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0x039e159a switchdev_handle_fdb_del_to_device +EXPORT_SYMBOL_GPL vmlinux 0x03a5af61 acpi_dev_get_dma_resources +EXPORT_SYMBOL_GPL vmlinux 0x03a6542c regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x03a780a4 posix_clock_register EXPORT_SYMBOL_GPL vmlinux 0x03c12dfe cancel_work_sync EXPORT_SYMBOL_GPL vmlinux 0x03c1c035 acrn_remove_intr_handler -EXPORT_SYMBOL_GPL vmlinux 0x03c538b6 input_ff_erase -EXPORT_SYMBOL_GPL vmlinux 0x03c6c2ef devm_power_supply_register EXPORT_SYMBOL_GPL vmlinux 0x03ce7234 sched_smt_present -EXPORT_SYMBOL_GPL vmlinux 0x03da929a devm_i2c_new_dummy_device +EXPORT_SYMBOL_GPL vmlinux 0x03db394d free_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x03e87bca vp_modern_queue_vector +EXPORT_SYMBOL_GPL vmlinux 0x03fa9cf7 __irq_alloc_domain_generic_chips EXPORT_SYMBOL_GPL vmlinux 0x0402cbbf preempt_notifier_inc -EXPORT_SYMBOL_GPL vmlinux 0x040d0050 pwm_get_chip_data -EXPORT_SYMBOL_GPL vmlinux 0x041343fc blkg_conf_prep -EXPORT_SYMBOL_GPL vmlinux 0x0413a642 syscon_regmap_lookup_by_phandle_optional +EXPORT_SYMBOL_GPL vmlinux 0x0416e4cf rio_alloc_net EXPORT_SYMBOL_GPL vmlinux 0x042522f2 sched_trace_rd_span +EXPORT_SYMBOL_GPL vmlinux 0x0425c1bb fuse_free_conn EXPORT_SYMBOL_GPL vmlinux 0x042c9a04 em_cpu_get -EXPORT_SYMBOL_GPL vmlinux 0x0442232f devfreq_cooling_em_register -EXPORT_SYMBOL_GPL vmlinux 0x04462b26 ata_sff_softreset +EXPORT_SYMBOL_GPL vmlinux 0x04421558 devlink_resource_size_get EXPORT_SYMBOL_GPL vmlinux 0x044a0f90 __tracepoint_xdp_bulk_tx +EXPORT_SYMBOL_GPL vmlinux 0x044b9f05 clean_acked_data_enable +EXPORT_SYMBOL_GPL vmlinux 0x044bba4f pci_assign_unassigned_bridge_resources EXPORT_SYMBOL_GPL vmlinux 0x04599779 kset_create_and_add -EXPORT_SYMBOL_GPL vmlinux 0x045b046a __irq_domain_alloc_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x045e001c rio_request_mport_dma EXPORT_SYMBOL_GPL vmlinux 0x0465a073 regmap_reg_in_ranges -EXPORT_SYMBOL_GPL vmlinux 0x0475524b nd_region_dev -EXPORT_SYMBOL_GPL vmlinux 0x04767105 pm_runtime_set_memalloc_noio -EXPORT_SYMBOL_GPL vmlinux 0x047b7d37 irq_chip_retrigger_hierarchy -EXPORT_SYMBOL_GPL vmlinux 0x04858902 _copy_mc_to_iter +EXPORT_SYMBOL_GPL vmlinux 0x0465f1f7 __SCK__tp_func_block_split +EXPORT_SYMBOL_GPL vmlinux 0x046c0dee __clk_hw_register_divider +EXPORT_SYMBOL_GPL vmlinux 0x0478bb3a debugfs_create_x8 EXPORT_SYMBOL_GPL vmlinux 0x048b5f8d twl4030_audio_get_mclk -EXPORT_SYMBOL_GPL vmlinux 0x04913ac4 device_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0x0494f1ea acpi_find_child_device EXPORT_SYMBOL_GPL vmlinux 0x049e5156 gnttab_try_end_foreign_access -EXPORT_SYMBOL_GPL vmlinux 0x04a807e8 usb_control_msg -EXPORT_SYMBOL_GPL vmlinux 0x04b4b1ae blk_clear_pm_only -EXPORT_SYMBOL_GPL vmlinux 0x04b74b8f cdrom_read_tocentry -EXPORT_SYMBOL_GPL vmlinux 0x04bc5509 __tracepoint_sched_util_est_cfs_tp -EXPORT_SYMBOL_GPL vmlinux 0x04be32c8 rio_lock_device +EXPORT_SYMBOL_GPL vmlinux 0x049eb08e debugfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x04a5a0df bpf_trace_run6 +EXPORT_SYMBOL_GPL vmlinux 0x04abecbc gnttab_dma_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x04b33030 preempt_notifier_unregister EXPORT_SYMBOL_GPL vmlinux 0x04bf0092 io_cgrp_subsys_enabled_key EXPORT_SYMBOL_GPL vmlinux 0x04c4f603 mpi_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0x04c5cedb __account_locked_vm EXPORT_SYMBOL_GPL vmlinux 0x04c8aebf console_verbose -EXPORT_SYMBOL_GPL vmlinux 0x04d64201 virtqueue_enable_cb +EXPORT_SYMBOL_GPL vmlinux 0x04cbd30d nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0x04d3f8ae blkdev_zone_mgmt +EXPORT_SYMBOL_GPL vmlinux 0x04db1643 dpm_for_each_dev EXPORT_SYMBOL_GPL vmlinux 0x04df8fbc lzo1x_decompress_safe -EXPORT_SYMBOL_GPL vmlinux 0x04e099c8 pci_dev_lock -EXPORT_SYMBOL_GPL vmlinux 0x04e5935d tty_standard_install -EXPORT_SYMBOL_GPL vmlinux 0x04f34c18 memremap_pages -EXPORT_SYMBOL_GPL vmlinux 0x04f7c0ed dev_pm_opp_add -EXPORT_SYMBOL_GPL vmlinux 0x050a23e0 xen_pci_frontend -EXPORT_SYMBOL_GPL vmlinux 0x050e3082 max8997_read_reg -EXPORT_SYMBOL_GPL vmlinux 0x0511df10 dm_copy_name_and_uuid -EXPORT_SYMBOL_GPL vmlinux 0x051ed30f rio_route_clr_table -EXPORT_SYMBOL_GPL vmlinux 0x0525c5a9 mmc_switch +EXPORT_SYMBOL_GPL vmlinux 0x04f0bd95 regmap_async_complete +EXPORT_SYMBOL_GPL vmlinux 0x051dd3bf __clk_determine_rate EXPORT_SYMBOL_GPL vmlinux 0x052c9aed ktime_get_real_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0x053d3369 hrtimer_init_sleeper -EXPORT_SYMBOL_GPL vmlinux 0x05485c20 ip_route_output_flow -EXPORT_SYMBOL_GPL vmlinux 0x054e046f gnttab_page_cache_get +EXPORT_SYMBOL_GPL vmlinux 0x0544bc81 usb_intf_get_dma_device +EXPORT_SYMBOL_GPL vmlinux 0x054a4827 blk_ksm_intersect_modes EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt -EXPORT_SYMBOL_GPL vmlinux 0x055982ce devm_hwrng_register -EXPORT_SYMBOL_GPL vmlinux 0x056b64a7 __page_file_index -EXPORT_SYMBOL_GPL vmlinux 0x0577ea7a tpm2_probe -EXPORT_SYMBOL_GPL vmlinux 0x057a89cb regulator_set_load +EXPORT_SYMBOL_GPL vmlinux 0x0574bd56 sata_scr_write EXPORT_SYMBOL_GPL vmlinux 0x05883efb __traceiter_suspend_resume -EXPORT_SYMBOL_GPL vmlinux 0x0589308a rio_dev_put +EXPORT_SYMBOL_GPL vmlinux 0x058c74b7 regulator_suspend_disable EXPORT_SYMBOL_GPL vmlinux 0x058f9366 apei_exec_collect_resources -EXPORT_SYMBOL_GPL vmlinux 0x0599963e misc_cg_uncharge -EXPORT_SYMBOL_GPL vmlinux 0x05a278dc pinctrl_pm_select_default_state -EXPORT_SYMBOL_GPL vmlinux 0x05c28462 spi_new_device -EXPORT_SYMBOL_GPL vmlinux 0x05c6b6b9 put_pid -EXPORT_SYMBOL_GPL vmlinux 0x05d53d3a bpf_prog_select_runtime -EXPORT_SYMBOL_GPL vmlinux 0x05d98c78 pm_genpd_remove_subdomain -EXPORT_SYMBOL_GPL vmlinux 0x05daf130 __pci_epc_create -EXPORT_SYMBOL_GPL vmlinux 0x05f6bac5 kgdb_unregister_io_module -EXPORT_SYMBOL_GPL vmlinux 0x05ff6794 uart_console_write -EXPORT_SYMBOL_GPL vmlinux 0x060abf0a __pm_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0x0612327a intel_pinctrl_probe_by_uid -EXPORT_SYMBOL_GPL vmlinux 0x06190abd crypto_register_aead -EXPORT_SYMBOL_GPL vmlinux 0x061d7ea7 wm831x_auxadc_read_uv +EXPORT_SYMBOL_GPL vmlinux 0x05c8f120 fscrypt_drop_inode +EXPORT_SYMBOL_GPL vmlinux 0x05dedba4 __fscrypt_prepare_setattr +EXPORT_SYMBOL_GPL vmlinux 0x05e2676f device_set_of_node_from_dev +EXPORT_SYMBOL_GPL vmlinux 0x05e3bdde ata_std_bios_param +EXPORT_SYMBOL_GPL vmlinux 0x06063566 uprobe_register EXPORT_SYMBOL_GPL vmlinux 0x06209f49 phy_lookup_setting EXPORT_SYMBOL_GPL vmlinux 0x0626da5f od_unregister_powersave_bias_handler -EXPORT_SYMBOL_GPL vmlinux 0x06311bc4 hwmon_device_register_with_groups -EXPORT_SYMBOL_GPL vmlinux 0x0633853e sdio_align_size -EXPORT_SYMBOL_GPL vmlinux 0x0645c801 extcon_get_property_capability -EXPORT_SYMBOL_GPL vmlinux 0x064a9cbb fsnotify_put_mark +EXPORT_SYMBOL_GPL vmlinux 0x06356c25 dev_attr_unload_heads +EXPORT_SYMBOL_GPL vmlinux 0x063b5017 crypto_alloc_tfm_node +EXPORT_SYMBOL_GPL vmlinux 0x064baa21 crypto_unregister_akcipher EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry -EXPORT_SYMBOL_GPL vmlinux 0x0659a220 icc_set_bw -EXPORT_SYMBOL_GPL vmlinux 0x0667882b cpufreq_driver_resolve_freq -EXPORT_SYMBOL_GPL vmlinux 0x06761fbb i2c_probe_func_quick_read -EXPORT_SYMBOL_GPL vmlinux 0x0676c656 shash_ahash_update -EXPORT_SYMBOL_GPL vmlinux 0x068f8ba3 crypto_create_tfm_node +EXPORT_SYMBOL_GPL vmlinux 0x0654226f gpiod_get_value +EXPORT_SYMBOL_GPL vmlinux 0x0654c26d serial8250_em485_config +EXPORT_SYMBOL_GPL vmlinux 0x065b4463 syscon_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0x06718d16 elv_register +EXPORT_SYMBOL_GPL vmlinux 0x0674100c anon_inode_getfd_secure +EXPORT_SYMBOL_GPL vmlinux 0x0685c1ef rtc_set_alarm EXPORT_SYMBOL_GPL vmlinux 0x069ce6c3 srcu_barrier -EXPORT_SYMBOL_GPL vmlinux 0x069f6ebc spi_mem_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0x06ac2ed9 synth_event_trace -EXPORT_SYMBOL_GPL vmlinux 0x06b03bf9 crypto_register_algs +EXPORT_SYMBOL_GPL vmlinux 0x069ece3a crypto_stats_akcipher_verify +EXPORT_SYMBOL_GPL vmlinux 0x06c75276 dev_pm_opp_find_freq_exact EXPORT_SYMBOL_GPL vmlinux 0x06cca30b ring_buffer_record_off -EXPORT_SYMBOL_GPL vmlinux 0x06d63152 phy_save_page -EXPORT_SYMBOL_GPL vmlinux 0x06eb5171 gpiod_get_raw_value -EXPORT_SYMBOL_GPL vmlinux 0x06f47cbf switchdev_handle_port_obj_add -EXPORT_SYMBOL_GPL vmlinux 0x06fb8599 devm_regulator_bulk_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x0704196c spi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x070cda9d ehci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x06cd8884 __SCK__tp_func_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0x06ce2ae8 scsi_internal_device_block_nowait +EXPORT_SYMBOL_GPL vmlinux 0x06dc2902 sk_detach_filter +EXPORT_SYMBOL_GPL vmlinux 0x06e5524f regulator_allow_bypass +EXPORT_SYMBOL_GPL vmlinux 0x0709710e task_active_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x0714a433 dev_pm_opp_get_opp_table +EXPORT_SYMBOL_GPL vmlinux 0x07208b2d xfrm_audit_state_icvfail EXPORT_SYMBOL_GPL vmlinux 0x07242d92 put_dax -EXPORT_SYMBOL_GPL vmlinux 0x07279be0 icc_link_create -EXPORT_SYMBOL_GPL vmlinux 0x073b0146 dm_start_time_ns_from_clone +EXPORT_SYMBOL_GPL vmlinux 0x0724d8cb __tracepoint_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0x072758d6 devm_add_action +EXPORT_SYMBOL_GPL vmlinux 0x0729ec2a fib_nh_common_init +EXPORT_SYMBOL_GPL vmlinux 0x07389210 badblocks_exit +EXPORT_SYMBOL_GPL vmlinux 0x0741b665 __platform_driver_probe EXPORT_SYMBOL_GPL vmlinux 0x07483e13 cn_del_callback EXPORT_SYMBOL_GPL vmlinux 0x074f98db synth_event_add_field -EXPORT_SYMBOL_GPL vmlinux 0x075ef247 sk_attach_filter -EXPORT_SYMBOL_GPL vmlinux 0x076221c8 blk_mq_update_nr_hw_queues +EXPORT_SYMBOL_GPL vmlinux 0x074ff848 devlink_port_type_ib_set +EXPORT_SYMBOL_GPL vmlinux 0x07525c6c crypto_stats_ahash_update EXPORT_SYMBOL_GPL vmlinux 0x076356e7 sfp_may_have_phy EXPORT_SYMBOL_GPL vmlinux 0x07646cee ata_tf_to_fis -EXPORT_SYMBOL_GPL vmlinux 0x076958b5 get_dev_pagemap -EXPORT_SYMBOL_GPL vmlinux 0x07876c4b crypto_alloc_tfm_node -EXPORT_SYMBOL_GPL vmlinux 0x078a3bf1 __tracepoint_neigh_update -EXPORT_SYMBOL_GPL vmlinux 0x078f27c1 blk_queue_max_discard_segments -EXPORT_SYMBOL_GPL vmlinux 0x07906645 ata_sas_port_stop -EXPORT_SYMBOL_GPL vmlinux 0x0796501e dev_pm_opp_put_clkname -EXPORT_SYMBOL_GPL vmlinux 0x079b5b6b user_destroy -EXPORT_SYMBOL_GPL vmlinux 0x079b6a36 __traceiter_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0x076fa573 pci_cfg_access_trylock +EXPORT_SYMBOL_GPL vmlinux 0x0783620f vring_create_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x07959213 trace_define_field +EXPORT_SYMBOL_GPL vmlinux 0x07adc545 gen_pool_get 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 0x07be6905 net_inc_egress_queue -EXPORT_SYMBOL_GPL vmlinux 0x07c40af6 reset_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x07d74474 usb_driver_claim_interface -EXPORT_SYMBOL_GPL vmlinux 0x07ef2ecb xhci_drop_endpoint -EXPORT_SYMBOL_GPL vmlinux 0x07f468e9 mmc_sanitize -EXPORT_SYMBOL_GPL vmlinux 0x08006fbf cpufreq_generic_init -EXPORT_SYMBOL_GPL vmlinux 0x08064920 fat_time_unix2fat +EXPORT_SYMBOL_GPL vmlinux 0x07dd173c usb_add_phy +EXPORT_SYMBOL_GPL vmlinux 0x07df41a4 spi_register_controller +EXPORT_SYMBOL_GPL vmlinux 0x07e21265 ata_scsi_unlock_native_capacity +EXPORT_SYMBOL_GPL vmlinux 0x07f63499 kgdb_unregister_io_module +EXPORT_SYMBOL_GPL vmlinux 0x07f6f6e0 uprobe_unregister +EXPORT_SYMBOL_GPL vmlinux 0x07fa5612 nvmem_device_find +EXPORT_SYMBOL_GPL vmlinux 0x07fae231 do_splice_from +EXPORT_SYMBOL_GPL vmlinux 0x0800d6a9 vchan_find_desc +EXPORT_SYMBOL_GPL vmlinux 0x08072a9c fuse_dev_release +EXPORT_SYMBOL_GPL vmlinux 0x080d8aac extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x08125df3 regmap_attach_dev EXPORT_SYMBOL_GPL vmlinux 0x08135613 dax_write_cache -EXPORT_SYMBOL_GPL vmlinux 0x0817b7b6 dev_pm_opp_put -EXPORT_SYMBOL_GPL vmlinux 0x081a2c2f sched_trace_rq_cpu -EXPORT_SYMBOL_GPL vmlinux 0x0820d62d clk_hw_get_parent_index -EXPORT_SYMBOL_GPL vmlinux 0x0825d2c0 regmap_mmio_detach_clk -EXPORT_SYMBOL_GPL vmlinux 0x0828d609 mc146818_get_time -EXPORT_SYMBOL_GPL vmlinux 0x0837356d pm_clk_resume -EXPORT_SYMBOL_GPL vmlinux 0x0843f102 perf_tp_event -EXPORT_SYMBOL_GPL vmlinux 0x084a56eb pci_probe_reset_bus -EXPORT_SYMBOL_GPL vmlinux 0x08744391 sata_pmp_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x0826d208 ipv6_dup_options +EXPORT_SYMBOL_GPL vmlinux 0x085b3071 led_trigger_unregister +EXPORT_SYMBOL_GPL vmlinux 0x085c3c03 sdio_writew +EXPORT_SYMBOL_GPL vmlinux 0x087b207a fixed_phy_change_carrier EXPORT_SYMBOL_GPL vmlinux 0x087f5dc5 wm831x_of_match -EXPORT_SYMBOL_GPL vmlinux 0x08810976 regulator_set_bypass_regmap -EXPORT_SYMBOL_GPL vmlinux 0x0882105b software_node_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x08867c19 usb_deregister_device_driver -EXPORT_SYMBOL_GPL vmlinux 0x0894a978 pm_clk_add -EXPORT_SYMBOL_GPL vmlinux 0x089db5b4 switchdev_bridge_port_offload -EXPORT_SYMBOL_GPL vmlinux 0x089f9848 mptcp_token_get_sock -EXPORT_SYMBOL_GPL vmlinux 0x08c0562b of_hwspin_lock_get_id -EXPORT_SYMBOL_GPL vmlinux 0x08c15073 regmap_read -EXPORT_SYMBOL_GPL vmlinux 0x08c59e6c pci_disable_ats +EXPORT_SYMBOL_GPL vmlinux 0x0885d4cd usb_hc_died +EXPORT_SYMBOL_GPL vmlinux 0x088a4887 blk_add_driver_data +EXPORT_SYMBOL_GPL vmlinux 0x088d5b8f vchan_tx_submit +EXPORT_SYMBOL_GPL vmlinux 0x088fb91c sdio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x0892278b device_store_bool +EXPORT_SYMBOL_GPL vmlinux 0x08a21e0d pm_runtime_force_resume +EXPORT_SYMBOL_GPL vmlinux 0x08b5dc28 dev_pm_qos_update_user_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x08b607f5 ima_file_hash +EXPORT_SYMBOL_GPL vmlinux 0x08c1c8cc da903x_write EXPORT_SYMBOL_GPL vmlinux 0x08c78cf7 offline_and_remove_memory -EXPORT_SYMBOL_GPL vmlinux 0x08cd9a97 fib_rules_dump -EXPORT_SYMBOL_GPL vmlinux 0x08dbb983 netif_carrier_event -EXPORT_SYMBOL_GPL vmlinux 0x08fe3107 l3mdev_update_flow +EXPORT_SYMBOL_GPL vmlinux 0x08cdbb39 blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0x08d4d871 xenbus_free_evtchn +EXPORT_SYMBOL_GPL vmlinux 0x08d98e5f screen_glyph +EXPORT_SYMBOL_GPL vmlinux 0x08de42c6 fscrypt_set_bio_crypt_ctx +EXPORT_SYMBOL_GPL vmlinux 0x08ed22d1 devres_find +EXPORT_SYMBOL_GPL vmlinux 0x08f8917c xhci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x08fc4e3f phy_reset EXPORT_SYMBOL_GPL vmlinux 0x0907d14d blocking_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0x090ebaa2 gnttab_unmap_refs -EXPORT_SYMBOL_GPL vmlinux 0x09143406 blkcg_policy_unregister +EXPORT_SYMBOL_GPL vmlinux 0x09144d63 regulator_map_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0x0919cac6 udp_abort +EXPORT_SYMBOL_GPL vmlinux 0x091a318b class_create_file_ns EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies EXPORT_SYMBOL_GPL vmlinux 0x0925493f clear_page_orig -EXPORT_SYMBOL_GPL vmlinux 0x092dda5c trace_array_init_printk -EXPORT_SYMBOL_GPL vmlinux 0x09332cef input_ff_flush EXPORT_SYMBOL_GPL vmlinux 0x09337cd0 __wake_up_locked_key EXPORT_SYMBOL_GPL vmlinux 0x093786cf synth_event_add_field_str -EXPORT_SYMBOL_GPL vmlinux 0x093d5aff nf_queue_nf_hook_drop +EXPORT_SYMBOL_GPL vmlinux 0x09387af2 xenbus_probe_devices +EXPORT_SYMBOL_GPL vmlinux 0x093abdb4 fat_scan +EXPORT_SYMBOL_GPL vmlinux 0x093f1f57 usb_reset_device EXPORT_SYMBOL_GPL vmlinux 0x096a7e6f x86_spec_ctrl_base -EXPORT_SYMBOL_GPL vmlinux 0x0971ee02 sysfs_remove_link_from_group -EXPORT_SYMBOL_GPL vmlinux 0x09730f19 dw_pcie_host_deinit -EXPORT_SYMBOL_GPL vmlinux 0x09abeae7 usb_hcd_is_primary_hcd -EXPORT_SYMBOL_GPL vmlinux 0x09ae15c8 fuse_free_conn +EXPORT_SYMBOL_GPL vmlinux 0x096b8da7 ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0x096cc8b8 rio_unmap_outb_region +EXPORT_SYMBOL_GPL vmlinux 0x096dbac5 tty_ldisc_receive_buf +EXPORT_SYMBOL_GPL vmlinux 0x096e445a crypto_shash_alg_has_setkey +EXPORT_SYMBOL_GPL vmlinux 0x097b2d83 ata_acpi_gtm_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x098cff35 subsys_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x099bf3fd dev_queue_xmit_nit +EXPORT_SYMBOL_GPL vmlinux 0x09a2e302 crypto_alg_mod_lookup +EXPORT_SYMBOL_GPL vmlinux 0x09a9dc6a netlink_add_tap EXPORT_SYMBOL_GPL vmlinux 0x09b53e14 interval_tree_remove -EXPORT_SYMBOL_GPL vmlinux 0x09b72d77 cpufreq_policy_transition_delay_us -EXPORT_SYMBOL_GPL vmlinux 0x09c233c0 regcache_sync_region -EXPORT_SYMBOL_GPL vmlinux 0x09d28252 clk_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0x09c5ff40 platform_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0x09cd9c26 dev_pm_opp_set_regulators +EXPORT_SYMBOL_GPL vmlinux 0x09cdb093 debugfs_file_get +EXPORT_SYMBOL_GPL vmlinux 0x09d5ebed usb_create_hcd EXPORT_SYMBOL_GPL vmlinux 0x09d63265 list_lru_count_node -EXPORT_SYMBOL_GPL vmlinux 0x09d817dd root_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x09fb9637 devm_create_dev_dax -EXPORT_SYMBOL_GPL vmlinux 0x0a09b8d1 wb_writeout_inc -EXPORT_SYMBOL_GPL vmlinux 0x0a107441 dma_alloc_noncontiguous -EXPORT_SYMBOL_GPL vmlinux 0x0a1aa18c virtqueue_add_outbuf -EXPORT_SYMBOL_GPL vmlinux 0x0a26b4f3 dev_pm_opp_unregister_set_opp_helper -EXPORT_SYMBOL_GPL vmlinux 0x0a30e9db devm_pm_opp_set_regulators -EXPORT_SYMBOL_GPL vmlinux 0x0a4fa77b unregister_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x09db89d0 mmc_switch +EXPORT_SYMBOL_GPL vmlinux 0x09e17b1e crypto_ahash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x09e3e0ac iommu_unregister_device_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0x09eeba90 crypto_shash_tfm_digest +EXPORT_SYMBOL_GPL vmlinux 0x09ff4448 usb_phy_get_charger_current +EXPORT_SYMBOL_GPL vmlinux 0x0a2efede genphy_c45_aneg_done +EXPORT_SYMBOL_GPL vmlinux 0x0a351674 pci_epc_remove_epf +EXPORT_SYMBOL_GPL vmlinux 0x0a41ffaa pci_iov_virtfn_devfn +EXPORT_SYMBOL_GPL vmlinux 0x0a4ee201 irq_chip_set_type_parent EXPORT_SYMBOL_GPL vmlinux 0x0a502c98 dmar_platform_optin EXPORT_SYMBOL_GPL vmlinux 0x0a52c511 hv_query_ext_cap -EXPORT_SYMBOL_GPL vmlinux 0x0a55a6d7 sk_msg_trim -EXPORT_SYMBOL_GPL vmlinux 0x0a643613 __cpufreq_driver_target -EXPORT_SYMBOL_GPL vmlinux 0x0a6aaabb vfs_cancel_lock EXPORT_SYMBOL_GPL vmlinux 0x0a6c4041 cn_netlink_send -EXPORT_SYMBOL_GPL vmlinux 0x0a7351d5 of_phy_provider_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0a800991 rio_dev_get -EXPORT_SYMBOL_GPL vmlinux 0x0a8ee498 devlink_param_driverinit_value_set -EXPORT_SYMBOL_GPL vmlinux 0x0a92d3f0 tcp_ca_openreq_child -EXPORT_SYMBOL_GPL vmlinux 0x0a9fb7da sk_set_peek_off -EXPORT_SYMBOL_GPL vmlinux 0x0aa61f08 tty_ldisc_flush -EXPORT_SYMBOL_GPL vmlinux 0x0ab37f46 usb_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x0a6d8533 ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0x0a7bf6e7 bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0a8fb90c phy_exit +EXPORT_SYMBOL_GPL vmlinux 0x0aa77084 irq_get_domain_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x0aaeb3d4 umd_unload_blob EXPORT_SYMBOL_GPL vmlinux 0x0abcbf05 pkcs7_parse_message -EXPORT_SYMBOL_GPL vmlinux 0x0ac0e04d ip6_datagram_connect EXPORT_SYMBOL_GPL vmlinux 0x0ad137d3 lpit_read_residency_count_address -EXPORT_SYMBOL_GPL vmlinux 0x0aea19ec add_page_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x0adb4bc5 debugfs_print_regs32 +EXPORT_SYMBOL_GPL vmlinux 0x0aee91e7 acpi_dma_simple_xlate EXPORT_SYMBOL_GPL vmlinux 0x0af40724 iommu_alloc_resv_region -EXPORT_SYMBOL_GPL vmlinux 0x0b02136b __devres_alloc_node +EXPORT_SYMBOL_GPL vmlinux 0x0afc1d1a fsnotify_find_mark EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct -EXPORT_SYMBOL_GPL vmlinux 0x0b217abf devm_pm_opp_set_supported_hw +EXPORT_SYMBOL_GPL vmlinux 0x0b086510 perf_pmu_migrate_context +EXPORT_SYMBOL_GPL vmlinux 0x0b0e01c4 fib_rules_register EXPORT_SYMBOL_GPL vmlinux 0x0b2db2d5 remove_resource -EXPORT_SYMBOL_GPL vmlinux 0x0b34d373 devm_release_action -EXPORT_SYMBOL_GPL vmlinux 0x0b36c456 devlink_port_attrs_pci_vf_set -EXPORT_SYMBOL_GPL vmlinux 0x0b45f3e0 dev_pm_put_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0x0b2f3025 devm_led_trigger_register EXPORT_SYMBOL_GPL vmlinux 0x0b4ed3f7 housekeeping_cpumask EXPORT_SYMBOL_GPL vmlinux 0x0b52e502 apei_resources_add -EXPORT_SYMBOL_GPL vmlinux 0x0b6fd265 ata_ehi_clear_desc -EXPORT_SYMBOL_GPL vmlinux 0x0b70d086 pci_epf_create -EXPORT_SYMBOL_GPL vmlinux 0x0b746a20 xdp_master_redirect -EXPORT_SYMBOL_GPL vmlinux 0x0b7dc3c0 __rio_local_read_config_16 -EXPORT_SYMBOL_GPL vmlinux 0x0b807995 dev_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x0b87d7f4 device_for_each_child_reverse -EXPORT_SYMBOL_GPL vmlinux 0x0bbcdf0d tty_set_termios +EXPORT_SYMBOL_GPL vmlinux 0x0b56a376 __pm_runtime_idle +EXPORT_SYMBOL_GPL vmlinux 0x0b70cfdf gpiod_set_debounce +EXPORT_SYMBOL_GPL vmlinux 0x0b7177ff mmu_interval_notifier_insert +EXPORT_SYMBOL_GPL vmlinux 0x0b755ae7 PageHuge +EXPORT_SYMBOL_GPL vmlinux 0x0b90d0e4 led_classdev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x0b9f5df2 power_supply_put +EXPORT_SYMBOL_GPL vmlinux 0x0bb2fcf1 devfreq_event_remove_edev EXPORT_SYMBOL_GPL vmlinux 0x0bbdc9b2 remove_memory EXPORT_SYMBOL_GPL vmlinux 0x0bbeaeba uv_bios_enum_ports -EXPORT_SYMBOL_GPL vmlinux 0x0bda703d pci_hp_add -EXPORT_SYMBOL_GPL vmlinux 0x0beef1dd adp5520_read -EXPORT_SYMBOL_GPL vmlinux 0x0bef8df8 regmap_field_read -EXPORT_SYMBOL_GPL vmlinux 0x0bfa0396 regcache_sync +EXPORT_SYMBOL_GPL vmlinux 0x0bbeead0 rtc_update_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0x0bc30423 irq_chip_set_vcpu_affinity_parent +EXPORT_SYMBOL_GPL vmlinux 0x0bda8054 __dev_forward_skb EXPORT_SYMBOL_GPL vmlinux 0x0bfa3a19 rcu_idle_exit -EXPORT_SYMBOL_GPL vmlinux 0x0c041210 vfio_init_group_dev -EXPORT_SYMBOL_GPL vmlinux 0x0c0e0efa gpiochip_is_requested -EXPORT_SYMBOL_GPL vmlinux 0x0c1adf47 ncsi_register_dev +EXPORT_SYMBOL_GPL vmlinux 0x0bfb0d83 disk_force_media_change +EXPORT_SYMBOL_GPL vmlinux 0x0c07f286 __xenbus_register_backend +EXPORT_SYMBOL_GPL vmlinux 0x0c1f85dd irq_get_irq_data EXPORT_SYMBOL_GPL vmlinux 0x0c2c5802 work_busy -EXPORT_SYMBOL_GPL vmlinux 0x0c2ce853 clone_private_mount +EXPORT_SYMBOL_GPL vmlinux 0x0c2e372c report_iommu_fault EXPORT_SYMBOL_GPL vmlinux 0x0c32ff8a edac_pci_alloc_index -EXPORT_SYMBOL_GPL vmlinux 0x0c387404 sata_link_hardreset -EXPORT_SYMBOL_GPL vmlinux 0x0c453a50 get_user_pages_fast -EXPORT_SYMBOL_GPL vmlinux 0x0c55c91d ping_rcv -EXPORT_SYMBOL_GPL vmlinux 0x0c57778a trace_put_event_file -EXPORT_SYMBOL_GPL vmlinux 0x0c65d3bf ipv4_sk_redirect -EXPORT_SYMBOL_GPL vmlinux 0x0c712cec phy_pm_runtime_forbid -EXPORT_SYMBOL_GPL vmlinux 0x0c74b074 usb_queue_reset_device -EXPORT_SYMBOL_GPL vmlinux 0x0c760331 crypto_stats_akcipher_verify +EXPORT_SYMBOL_GPL vmlinux 0x0c37bb3b ata_dummy_port_info +EXPORT_SYMBOL_GPL vmlinux 0x0c3bb30d is_software_node +EXPORT_SYMBOL_GPL vmlinux 0x0c46fa4c iomap_zero_range +EXPORT_SYMBOL_GPL vmlinux 0x0c699cbf crypto_dequeue_request EXPORT_SYMBOL_GPL vmlinux 0x0c805f93 clflush_cache_range -EXPORT_SYMBOL_GPL vmlinux 0x0c85d3fe dax_copy_to_iter EXPORT_SYMBOL_GPL vmlinux 0x0c88c1c3 pci_vpd_find_id_string -EXPORT_SYMBOL_GPL vmlinux 0x0c8de8f1 dma_vmap_noncontiguous -EXPORT_SYMBOL_GPL vmlinux 0x0c9989fa tcp_get_info -EXPORT_SYMBOL_GPL vmlinux 0x0cb6efa6 relay_late_setup_files -EXPORT_SYMBOL_GPL vmlinux 0x0cb8f5e7 fwnode_remove_software_node +EXPORT_SYMBOL_GPL vmlinux 0x0c95de81 nvdimm_pmem_region_create +EXPORT_SYMBOL_GPL vmlinux 0x0c975bf2 acpi_initialize_hp_context +EXPORT_SYMBOL_GPL vmlinux 0x0c9e8292 vfio_device_get_from_dev +EXPORT_SYMBOL_GPL vmlinux 0x0ca1411d edac_mc_del_mc +EXPORT_SYMBOL_GPL vmlinux 0x0cac1649 pci_ioremap_bar +EXPORT_SYMBOL_GPL vmlinux 0x0cae828c tcp_ca_openreq_child EXPORT_SYMBOL_GPL vmlinux 0x0cbe3ee2 software_node_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0ce51800 proc_create_net_single -EXPORT_SYMBOL_GPL vmlinux 0x0ce8743c kthread_mod_delayed_work -EXPORT_SYMBOL_GPL vmlinux 0x0ce997b2 dev_pm_domain_set -EXPORT_SYMBOL_GPL vmlinux 0x0ceee0b0 regulator_disable_deferred +EXPORT_SYMBOL_GPL vmlinux 0x0cbfdb60 ehci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0x0cc7d378 pin_user_pages_fast_only +EXPORT_SYMBOL_GPL vmlinux 0x0cd3867f clockevents_config_and_register +EXPORT_SYMBOL_GPL vmlinux 0x0ceb8e27 i2c_new_ancillary_device EXPORT_SYMBOL_GPL vmlinux 0x0cfe59cb hyperv_fill_flush_guest_mapping_list -EXPORT_SYMBOL_GPL vmlinux 0x0d05d2b3 fib6_get_table +EXPORT_SYMBOL_GPL vmlinux 0x0cfed0c7 rtnl_af_register +EXPORT_SYMBOL_GPL vmlinux 0x0d0ed832 pm_generic_freeze_late +EXPORT_SYMBOL_GPL vmlinux 0x0d15fecd kernfs_find_and_get_ns +EXPORT_SYMBOL_GPL vmlinux 0x0d2434f0 fsnotify_init_mark +EXPORT_SYMBOL_GPL vmlinux 0x0d2c89a0 fuse_dev_alloc +EXPORT_SYMBOL_GPL vmlinux 0x0d3444df tcp_ca_get_key_by_name +EXPORT_SYMBOL_GPL vmlinux 0x0d3d2b64 sata_sff_hardreset EXPORT_SYMBOL_GPL vmlinux 0x0d459213 work_on_cpu_safe EXPORT_SYMBOL_GPL vmlinux 0x0d4961de nf_log_buf_open -EXPORT_SYMBOL_GPL vmlinux 0x0d4d758e vp_modern_get_features EXPORT_SYMBOL_GPL vmlinux 0x0d4e3f8c iopf_queue_alloc -EXPORT_SYMBOL_GPL vmlinux 0x0d5127d4 serial8250_em485_config -EXPORT_SYMBOL_GPL vmlinux 0x0d55ae4b netdev_is_rx_handler_busy -EXPORT_SYMBOL_GPL vmlinux 0x0d57ccc9 pci_sriov_set_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0x0d51fd03 ata_scsi_port_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x0d58cb3b inet_csk_listen_stop EXPORT_SYMBOL_GPL vmlinux 0x0d5cecc6 ima_measure_critical_data -EXPORT_SYMBOL_GPL vmlinux 0x0d620440 iommu_enable_nesting -EXPORT_SYMBOL_GPL vmlinux 0x0d6fe561 pci_add_dynid -EXPORT_SYMBOL_GPL vmlinux 0x0d7d2da6 ip6_local_out -EXPORT_SYMBOL_GPL vmlinux 0x0d826d49 devm_regulator_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x0d88360b edac_pci_free_ctl_info -EXPORT_SYMBOL_GPL vmlinux 0x0d947e3e fwnode_gpiod_get_index -EXPORT_SYMBOL_GPL vmlinux 0x0dafd05d usb_register_device_driver +EXPORT_SYMBOL_GPL vmlinux 0x0d5daa31 crypto_register_shashes +EXPORT_SYMBOL_GPL vmlinux 0x0d6577e1 iommu_detach_device +EXPORT_SYMBOL_GPL vmlinux 0x0d6cb86c devm_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x0d74583f device_for_each_child_reverse +EXPORT_SYMBOL_GPL vmlinux 0x0d981159 spi_controller_resume +EXPORT_SYMBOL_GPL vmlinux 0x0da95e3e dev_pm_opp_set_prop_name EXPORT_SYMBOL_GPL vmlinux 0x0dcb3ee8 divider_recalc_rate -EXPORT_SYMBOL_GPL vmlinux 0x0dcc3aaf regulator_get_current_limit -EXPORT_SYMBOL_GPL vmlinux 0x0dd9c7a2 fwnode_graph_get_port_parent +EXPORT_SYMBOL_GPL vmlinux 0x0ddadea2 __SCT__tp_func_pelt_thermal_tp EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order -EXPORT_SYMBOL_GPL vmlinux 0x0ded2896 fib4_rule_default +EXPORT_SYMBOL_GPL vmlinux 0x0debde60 hwspin_lock_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0dec87f6 pci_intx +EXPORT_SYMBOL_GPL vmlinux 0x0dfb5bcb dst_cache_get_ip6 EXPORT_SYMBOL_GPL vmlinux 0x0e007edf xen_evtchn_nr_channels EXPORT_SYMBOL_GPL vmlinux 0x0e1194d5 hrtimer_try_to_cancel EXPORT_SYMBOL_GPL vmlinux 0x0e13cb4d apei_resources_release -EXPORT_SYMBOL_GPL vmlinux 0x0e19a459 lookup_address_in_mm +EXPORT_SYMBOL_GPL vmlinux 0x0e1d0ddf ping_init_sock +EXPORT_SYMBOL_GPL vmlinux 0x0e1f0101 tpm_put_ops EXPORT_SYMBOL_GPL vmlinux 0x0e1fc8ef __SCT__tp_func_non_standard_event -EXPORT_SYMBOL_GPL vmlinux 0x0e274085 usb_for_each_port -EXPORT_SYMBOL_GPL vmlinux 0x0e334a66 pci_user_write_config_byte -EXPORT_SYMBOL_GPL vmlinux 0x0e40c0ed serdev_controller_add -EXPORT_SYMBOL_GPL vmlinux 0x0e4bfb37 skcipher_walk_aead_decrypt -EXPORT_SYMBOL_GPL vmlinux 0x0e5a8c76 devm_hwmon_device_register_with_groups -EXPORT_SYMBOL_GPL vmlinux 0x0e5d2e8f class_compat_create_link -EXPORT_SYMBOL_GPL vmlinux 0x0e64313a ata_sff_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x0e22972d phy_set_speed +EXPORT_SYMBOL_GPL vmlinux 0x0e280ddb ohci_resume +EXPORT_SYMBOL_GPL vmlinux 0x0e556607 rtc_class_close +EXPORT_SYMBOL_GPL vmlinux 0x0e63f918 regulator_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0x0e64af13 debugfs_create_regset32 +EXPORT_SYMBOL_GPL vmlinux 0x0e65bdc1 bpf_prog_create_from_user +EXPORT_SYMBOL_GPL vmlinux 0x0e66d78c hvc_instantiate EXPORT_SYMBOL_GPL vmlinux 0x0e6b79af static_key_disable_cpuslocked -EXPORT_SYMBOL_GPL vmlinux 0x0e79f4af cpci_hp_unregister_controller -EXPORT_SYMBOL_GPL vmlinux 0x0e7c5cf8 inet_ctl_sock_create -EXPORT_SYMBOL_GPL vmlinux 0x0e973f3a devm_device_remove_group -EXPORT_SYMBOL_GPL vmlinux 0x0e9820d0 pci_epc_remove_epf -EXPORT_SYMBOL_GPL vmlinux 0x0e9d35b6 transport_remove_device -EXPORT_SYMBOL_GPL vmlinux 0x0ea1a10b vfio_pci_core_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x0e6c2633 class_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x0e72525d pm_generic_restore_noirq +EXPORT_SYMBOL_GPL vmlinux 0x0e744aa7 ip6_datagram_send_ctl +EXPORT_SYMBOL_GPL vmlinux 0x0e837bf4 da903x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x0e838dc1 __tracepoint_sched_util_est_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x0e927009 xdp_rxq_info_reg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0x0e9d0de5 tty_init_termios EXPORT_SYMBOL_GPL vmlinux 0x0ea5cbce xen_irq_lateeoi -EXPORT_SYMBOL_GPL vmlinux 0x0ea6b03d debugfs_create_file_size -EXPORT_SYMBOL_GPL vmlinux 0x0ead0ed7 addrconf_prefix_rcv_add_addr -EXPORT_SYMBOL_GPL vmlinux 0x0eae65d7 sock_diag_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0ea7e2a6 switchdev_handle_fdb_add_to_device +EXPORT_SYMBOL_GPL vmlinux 0x0eb1ae65 da9052_request_irq EXPORT_SYMBOL_GPL vmlinux 0x0ec096b0 hv_read_reference_counter -EXPORT_SYMBOL_GPL vmlinux 0x0eceeda9 ipv6_stub -EXPORT_SYMBOL_GPL vmlinux 0x0ed2c68f gpiod_direction_output_raw -EXPORT_SYMBOL_GPL vmlinux 0x0edcc48e regulator_map_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x0ee2fd64 rt_mutex_trylock EXPORT_SYMBOL_GPL vmlinux 0x0eeae3e8 key_type_encrypted +EXPORT_SYMBOL_GPL vmlinux 0x0f011671 devlink_free +EXPORT_SYMBOL_GPL vmlinux 0x0f02f1b7 bsg_job_done +EXPORT_SYMBOL_GPL vmlinux 0x0f0a70aa ping_err +EXPORT_SYMBOL_GPL vmlinux 0x0f0a9204 regulator_bulk_set_supply_names EXPORT_SYMBOL_GPL vmlinux 0x0f0b21fe pm_trace_rtc_abused EXPORT_SYMBOL_GPL vmlinux 0x0f180070 ring_buffer_free_read_page +EXPORT_SYMBOL_GPL vmlinux 0x0f2ce000 tracepoint_probe_register_prio_may_exist EXPORT_SYMBOL_GPL vmlinux 0x0f2d7d87 mce_unregister_decode_chain -EXPORT_SYMBOL_GPL vmlinux 0x0f3bd8ab led_sysfs_disable -EXPORT_SYMBOL_GPL vmlinux 0x0f616040 __tracepoint_wbc_writepage -EXPORT_SYMBOL_GPL vmlinux 0x0f6401a6 devlink_resources_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0f6f7505 platform_get_mem_or_io +EXPORT_SYMBOL_GPL vmlinux 0x0f363728 fib_info_nh_uses_dev +EXPORT_SYMBOL_GPL vmlinux 0x0f5c7579 __tracepoint_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x0f5e131c sysfs_unbreak_active_protection +EXPORT_SYMBOL_GPL vmlinux 0x0f6b0f34 rio_mport_chk_dev_access EXPORT_SYMBOL_GPL vmlinux 0x0f72ada1 acpi_dev_resource_io -EXPORT_SYMBOL_GPL vmlinux 0x0f761651 pci_iov_virtfn_devfn +EXPORT_SYMBOL_GPL vmlinux 0x0f75b91a pci_vpd_alloc +EXPORT_SYMBOL_GPL vmlinux 0x0f785aa6 input_class EXPORT_SYMBOL_GPL vmlinux 0x0f7ca236 dmi_memdev_name -EXPORT_SYMBOL_GPL vmlinux 0x0f843026 bpf_prog_inc_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x0f8e7f28 devm_gpiod_unhinge +EXPORT_SYMBOL_GPL vmlinux 0x0f902fd3 __tracepoint_tcp_bad_csum +EXPORT_SYMBOL_GPL vmlinux 0x0f96ddb2 hwspin_lock_free EXPORT_SYMBOL_GPL vmlinux 0x0f9fc04e uv_get_archtype -EXPORT_SYMBOL_GPL vmlinux 0x0facea59 kernel_kobj +EXPORT_SYMBOL_GPL vmlinux 0x0fae7b09 pci_disable_rom EXPORT_SYMBOL_GPL vmlinux 0x0fbb7344 memremap_compat_align EXPORT_SYMBOL_GPL vmlinux 0x0fc37562 amd_smn_read -EXPORT_SYMBOL_GPL vmlinux 0x0fca4385 klp_enable_patch EXPORT_SYMBOL_GPL vmlinux 0x0fcc1969 copy_from_user_nmi -EXPORT_SYMBOL_GPL vmlinux 0x0fd11513 __dma_request_channel -EXPORT_SYMBOL_GPL vmlinux 0x0fd1c7f4 pci_find_next_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x0fce44bd spi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x0fd0f06e wait_on_page_writeback_killable EXPORT_SYMBOL_GPL vmlinux 0x0fd4610e kmem_dump_obj -EXPORT_SYMBOL_GPL vmlinux 0x0fdc5856 extcon_get_state -EXPORT_SYMBOL_GPL vmlinux 0x0fde02bf dev_get_regmap -EXPORT_SYMBOL_GPL vmlinux 0x0ff8d89d spi_mem_dirmap_destroy -EXPORT_SYMBOL_GPL vmlinux 0x10017547 badblocks_show -EXPORT_SYMBOL_GPL vmlinux 0x1006086c inet_csk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x0ff73c5a pm_generic_freeze_noirq +EXPORT_SYMBOL_GPL vmlinux 0x0ff9487e tty_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0x0ffb4911 inet6_sk_rebuild_header +EXPORT_SYMBOL_GPL vmlinux 0x100916f6 handle_simple_irq +EXPORT_SYMBOL_GPL vmlinux 0x100fd397 pci_disable_pcie_error_reporting EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on -EXPORT_SYMBOL_GPL vmlinux 0x1014d41c ata_pci_shutdown_one -EXPORT_SYMBOL_GPL vmlinux 0x1036bac5 tty_kopen_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x1030e2bd usb_control_msg +EXPORT_SYMBOL_GPL vmlinux 0x1037970f ethnl_cable_test_step EXPORT_SYMBOL_GPL vmlinux 0x1038b96f adxl_get_component_names -EXPORT_SYMBOL_GPL vmlinux 0x103dd536 usb_autopm_get_interface_async -EXPORT_SYMBOL_GPL vmlinux 0x1055c3e4 inet_twsk_put +EXPORT_SYMBOL_GPL vmlinux 0x10399a1a ip_route_output_key_hash +EXPORT_SYMBOL_GPL vmlinux 0x10452342 dev_pm_opp_put_opp_table +EXPORT_SYMBOL_GPL vmlinux 0x10619481 dma_max_mapping_size +EXPORT_SYMBOL_GPL vmlinux 0x10668a65 __regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0x1072e561 fat_time_fat2unix +EXPORT_SYMBOL_GPL vmlinux 0x10889c54 device_store_int +EXPORT_SYMBOL_GPL vmlinux 0x1088c4e9 uart_handle_dcd_change EXPORT_SYMBOL_GPL vmlinux 0x1088ea76 ftrace_set_notrace EXPORT_SYMBOL_GPL vmlinux 0x108a0acd bstr_printf -EXPORT_SYMBOL_GPL vmlinux 0x1096c3a1 raw_seq_start -EXPORT_SYMBOL_GPL vmlinux 0x10a6906a page_cache_ra_unbounded -EXPORT_SYMBOL_GPL vmlinux 0x10a75320 udp4_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x10a89eef scsi_schedule_eh -EXPORT_SYMBOL_GPL vmlinux 0x10b02684 rio_release_outb_dbell -EXPORT_SYMBOL_GPL vmlinux 0x10b90027 xhci_reset_bandwidth -EXPORT_SYMBOL_GPL vmlinux 0x10c0e255 ata_link_online -EXPORT_SYMBOL_GPL vmlinux 0x10c90a88 dev_pm_qos_hide_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0x10e5d6da md_do_sync -EXPORT_SYMBOL_GPL vmlinux 0x10ea3065 acpi_pci_find_root +EXPORT_SYMBOL_GPL vmlinux 0x108dac58 acpi_subsys_suspend +EXPORT_SYMBOL_GPL vmlinux 0x109435a9 vfio_pci_core_read +EXPORT_SYMBOL_GPL vmlinux 0x10a7403c devres_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x10b64e66 i2c_new_smbus_alert_device +EXPORT_SYMBOL_GPL vmlinux 0x10bf4341 gpiod_direction_input +EXPORT_SYMBOL_GPL vmlinux 0x10d4767c cpufreq_dbs_governor_exit EXPORT_SYMBOL_GPL vmlinux 0x10ecc52c usb_amd_quirk_pll_enable -EXPORT_SYMBOL_GPL vmlinux 0x10fef704 crypto_grab_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x10f098fa __dma_request_channel EXPORT_SYMBOL_GPL vmlinux 0x110106c1 cper_severity_to_aer -EXPORT_SYMBOL_GPL vmlinux 0x110198d1 __hwspin_unlock -EXPORT_SYMBOL_GPL vmlinux 0x111d6db9 vmf_insert_pfn_pud_prot -EXPORT_SYMBOL_GPL vmlinux 0x1130e412 md_stop_writes -EXPORT_SYMBOL_GPL vmlinux 0x11334b1b nvdimm_name -EXPORT_SYMBOL_GPL vmlinux 0x1135e9b5 sysfs_remove_group -EXPORT_SYMBOL_GPL vmlinux 0x1136be02 xfer_to_guest_mode_handle_work -EXPORT_SYMBOL_GPL vmlinux 0x113ceabc blk_rq_err_bytes -EXPORT_SYMBOL_GPL vmlinux 0x1142ab6a xfrm_output_resume -EXPORT_SYMBOL_GPL vmlinux 0x1147f3ed dax_writeback_mapping_range -EXPORT_SYMBOL_GPL vmlinux 0x11568e8b __traceiter_block_rq_remap -EXPORT_SYMBOL_GPL vmlinux 0x1158de3e kthread_cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x110e272a perf_event_sysfs_show +EXPORT_SYMBOL_GPL vmlinux 0x1129eb8e device_remove_software_node +EXPORT_SYMBOL_GPL vmlinux 0x113086f0 __irq_set_handler +EXPORT_SYMBOL_GPL vmlinux 0x1135e37c cpufreq_freq_transition_begin +EXPORT_SYMBOL_GPL vmlinux 0x113681ae device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x113dfd97 devm_gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0x114d28e5 iomap_seek_data +EXPORT_SYMBOL_GPL vmlinux 0x11573f43 usb_ep0_reinit EXPORT_SYMBOL_GPL vmlinux 0x116180b5 hv_current_partition_id -EXPORT_SYMBOL_GPL vmlinux 0x116d8f79 virtqueue_get_vring -EXPORT_SYMBOL_GPL vmlinux 0x116f93c1 sk_msg_zerocopy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0x11655904 genphy_c45_pma_resume +EXPORT_SYMBOL_GPL vmlinux 0x117f9c34 gnttab_page_cache_put +EXPORT_SYMBOL_GPL vmlinux 0x11818070 devm_hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x1189645e devm_gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x118e512f udp_cmsg_send +EXPORT_SYMBOL_GPL vmlinux 0x1193a6b3 crypto_skcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x119c490f udp4_hwcsum EXPORT_SYMBOL_GPL vmlinux 0x11a2e0ac crypto_dh_key_len -EXPORT_SYMBOL_GPL vmlinux 0x11b28cf3 __traceiter_rpm_return_int -EXPORT_SYMBOL_GPL vmlinux 0x11b4632e regmap_field_bulk_free -EXPORT_SYMBOL_GPL vmlinux 0x11bda5a9 __netpoll_setup -EXPORT_SYMBOL_GPL vmlinux 0x11cb25ec pci_epc_set_msi +EXPORT_SYMBOL_GPL vmlinux 0x11a9f652 ata_std_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x11ab2ae0 dev_pm_opp_set_clkname +EXPORT_SYMBOL_GPL vmlinux 0x11b4c991 crypto_unregister_aead +EXPORT_SYMBOL_GPL vmlinux 0x11badb60 pci_get_dsn 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 0x11e4a9cb sata_sff_hardreset -EXPORT_SYMBOL_GPL vmlinux 0x11f09a4d __strp_unpause -EXPORT_SYMBOL_GPL vmlinux 0x11f90678 __udp6_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x11faf2cb bpf_prog_alloc -EXPORT_SYMBOL_GPL vmlinux 0x1206e1a9 iommu_device_sysfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x11e1294e shmem_zero_setup +EXPORT_SYMBOL_GPL vmlinux 0x1207f874 genphy_c45_read_status +EXPORT_SYMBOL_GPL vmlinux 0x121139fc cpci_hp_register_bus +EXPORT_SYMBOL_GPL vmlinux 0x12169237 file_ra_state_init EXPORT_SYMBOL_GPL vmlinux 0x12189359 __SCT__tp_func_block_unplug EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier -EXPORT_SYMBOL_GPL vmlinux 0x12266ba8 ata_host_put -EXPORT_SYMBOL_GPL vmlinux 0x1228bfe2 fib_info_nh_uses_dev -EXPORT_SYMBOL_GPL vmlinux 0x1231b45a dev_pm_opp_remove_all_dynamic EXPORT_SYMBOL_GPL vmlinux 0x1234e483 get_cpu_iowait_time_us EXPORT_SYMBOL_GPL vmlinux 0x1234ffa1 cper_estatus_check_header -EXPORT_SYMBOL_GPL vmlinux 0x12493bfc virtqueue_notify -EXPORT_SYMBOL_GPL vmlinux 0x12644fa0 vchan_tx_desc_free +EXPORT_SYMBOL_GPL vmlinux 0x123612c2 sfp_bus_add_upstream +EXPORT_SYMBOL_GPL vmlinux 0x1236d111 usb_free_coherent +EXPORT_SYMBOL_GPL vmlinux 0x125be311 __list_lru_init EXPORT_SYMBOL_GPL vmlinux 0x1268f357 resume_device_irqs -EXPORT_SYMBOL_GPL vmlinux 0x127a5f05 __regmap_init +EXPORT_SYMBOL_GPL vmlinux 0x126b40c2 regulator_unregister_supply_alias EXPORT_SYMBOL_GPL vmlinux 0x127c109b __SCT__tp_func_suspend_resume -EXPORT_SYMBOL_GPL vmlinux 0x128072d5 devlink_sb_register -EXPORT_SYMBOL_GPL vmlinux 0x12914c5b rtnl_register_module +EXPORT_SYMBOL_GPL vmlinux 0x127ec14b sysfs_update_group +EXPORT_SYMBOL_GPL vmlinux 0x127f2135 ata_sff_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x1280c4a8 tpm1_do_selftest +EXPORT_SYMBOL_GPL vmlinux 0x12833639 tty_set_termios +EXPORT_SYMBOL_GPL vmlinux 0x12905897 tpm_chip_start +EXPORT_SYMBOL_GPL vmlinux 0x12909ae5 bio_release_pages EXPORT_SYMBOL_GPL vmlinux 0x129334ae sfp_parse_support -EXPORT_SYMBOL_GPL vmlinux 0x12983b6f led_trigger_remove -EXPORT_SYMBOL_GPL vmlinux 0x129abb8c tty_set_ldisc -EXPORT_SYMBOL_GPL vmlinux 0x129b0b0e ata_wait_register -EXPORT_SYMBOL_GPL vmlinux 0x12a226c4 devm_pm_opp_set_clkname -EXPORT_SYMBOL_GPL vmlinux 0x12bcc8d0 do_take_over_console -EXPORT_SYMBOL_GPL vmlinux 0x12d6fea4 iopf_queue_flush_dev -EXPORT_SYMBOL_GPL vmlinux 0x12d82c51 nvdimm_provider_data -EXPORT_SYMBOL_GPL vmlinux 0x12d9cf14 nf_ip_route +EXPORT_SYMBOL_GPL vmlinux 0x12998265 dma_resv_get_fences +EXPORT_SYMBOL_GPL vmlinux 0x129b0589 inverse_translate +EXPORT_SYMBOL_GPL vmlinux 0x12a8b89b usb_remove_hcd +EXPORT_SYMBOL_GPL vmlinux 0x12aa4ec3 thermal_zone_get_offset +EXPORT_SYMBOL_GPL vmlinux 0x12b1cff1 pinctrl_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x12b62780 platform_irq_count +EXPORT_SYMBOL_GPL vmlinux 0x12bef345 crypto_stats_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x12c65334 blk_mq_update_nr_hw_queues +EXPORT_SYMBOL_GPL vmlinux 0x12c7e86d serdev_device_close EXPORT_SYMBOL_GPL vmlinux 0x12db3a8b kvm_clock EXPORT_SYMBOL_GPL vmlinux 0x12e285ec is_uv_system -EXPORT_SYMBOL_GPL vmlinux 0x12ea14a3 __fsnotify_parent -EXPORT_SYMBOL_GPL vmlinux 0x12ea53ad xen_xenbus_fops EXPORT_SYMBOL_GPL vmlinux 0x12ee1173 memory_group_unregister -EXPORT_SYMBOL_GPL vmlinux 0x12f94774 bpf_offload_dev_netdev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x1302dd0c irq_domain_alloc_irqs_parent +EXPORT_SYMBOL_GPL vmlinux 0x12f3b968 ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0x130da45c ata_std_qc_defer +EXPORT_SYMBOL_GPL vmlinux 0x1310c2a4 netdev_walk_all_lower_dev_rcu EXPORT_SYMBOL_GPL vmlinux 0x131a5ed7 regmap_del_irq_chip EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq +EXPORT_SYMBOL_GPL vmlinux 0x131f3873 vp_modern_get_driver_features +EXPORT_SYMBOL_GPL vmlinux 0x1328bb9a devlink_traps_unregister EXPORT_SYMBOL_GPL vmlinux 0x133969d7 __trace_printk -EXPORT_SYMBOL_GPL vmlinux 0x133b67a0 rio_mport_get_efb -EXPORT_SYMBOL_GPL vmlinux 0x134decb2 dst_cache_get_ip6 -EXPORT_SYMBOL_GPL vmlinux 0x134e6dc4 uart_get_rs485_mode -EXPORT_SYMBOL_GPL vmlinux 0x135f8907 netlink_remove_tap +EXPORT_SYMBOL_GPL vmlinux 0x133ed674 fwnode_get_next_parent +EXPORT_SYMBOL_GPL vmlinux 0x1343461f user_read EXPORT_SYMBOL_GPL vmlinux 0x136209db power_supply_reg_notifier -EXPORT_SYMBOL_GPL vmlinux 0x1372654c fscrypt_drop_inode -EXPORT_SYMBOL_GPL vmlinux 0x1372a720 __percpu_init_rwsem -EXPORT_SYMBOL_GPL vmlinux 0x13780f64 pci_enable_pasid -EXPORT_SYMBOL_GPL vmlinux 0x13787bb9 fscrypt_ioctl_remove_key +EXPORT_SYMBOL_GPL vmlinux 0x136885c3 vga_default_device EXPORT_SYMBOL_GPL vmlinux 0x138aff76 gnttab_init EXPORT_SYMBOL_GPL vmlinux 0x138e0957 dax_write_cache_enabled -EXPORT_SYMBOL_GPL vmlinux 0x1397886e dpm_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x13a45dc7 __tracepoint_sched_cpu_capacity_tp -EXPORT_SYMBOL_GPL vmlinux 0x13a8b137 ata_sas_tport_delete -EXPORT_SYMBOL_GPL vmlinux 0x13ac056b devm_i2c_add_adapter -EXPORT_SYMBOL_GPL vmlinux 0x13b15405 xdp_return_frame -EXPORT_SYMBOL_GPL vmlinux 0x13c5a34d power_supply_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x139853db gpiod_toggle_active_low +EXPORT_SYMBOL_GPL vmlinux 0x13a22100 device_set_wakeup_capable +EXPORT_SYMBOL_GPL vmlinux 0x13ae3b97 usb_alloc_urb +EXPORT_SYMBOL_GPL vmlinux 0x13b16460 __pm_runtime_set_status EXPORT_SYMBOL_GPL vmlinux 0x13ce87e8 asn1_ber_decoder -EXPORT_SYMBOL_GPL vmlinux 0x13d755f5 mmc_cmdq_disable +EXPORT_SYMBOL_GPL vmlinux 0x13d4c5ce sdio_enable_func EXPORT_SYMBOL_GPL vmlinux 0x13ed8784 sdev_evt_alloc +EXPORT_SYMBOL_GPL vmlinux 0x13f53aa9 to_nd_desc EXPORT_SYMBOL_GPL vmlinux 0x13fab921 cpuidle_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x13fb1a0a bpf_trace_run7 +EXPORT_SYMBOL_GPL vmlinux 0x13fbd614 device_create_managed_software_node EXPORT_SYMBOL_GPL vmlinux 0x1403ad09 cpufreq_add_update_util_hook +EXPORT_SYMBOL_GPL vmlinux 0x141b6671 pm_schedule_suspend EXPORT_SYMBOL_GPL vmlinux 0x141f38bf ktime_get_raw_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0x14208a30 shmem_file_setup -EXPORT_SYMBOL_GPL vmlinux 0x1442b690 ata_sff_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x145d27b5 skb_defer_rx_timestamp -EXPORT_SYMBOL_GPL vmlinux 0x145ec03e gpiod_set_raw_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x145ffa13 nd_tbl +EXPORT_SYMBOL_GPL vmlinux 0x14205337 pci_epc_linkup +EXPORT_SYMBOL_GPL vmlinux 0x142e5eb1 debugfs_write_file_bool +EXPORT_SYMBOL_GPL vmlinux 0x14334d45 rio_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x14427878 l3mdev_table_lookup_register +EXPORT_SYMBOL_GPL vmlinux 0x1448e0bc watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0x1449ca88 sdio_f0_writeb +EXPORT_SYMBOL_GPL vmlinux 0x144a2064 __traceiter_sched_util_est_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x146b64a9 sock_diag_put_meminfo EXPORT_SYMBOL_GPL vmlinux 0x146cc88f bpf_master_redirect_enabled_key EXPORT_SYMBOL_GPL vmlinux 0x146dc897 get_state_synchronize_srcu -EXPORT_SYMBOL_GPL vmlinux 0x14713220 fat_search_long -EXPORT_SYMBOL_GPL vmlinux 0x147d2b26 xdp_return_frame_rx_napi -EXPORT_SYMBOL_GPL vmlinux 0x14823ad2 attribute_container_classdev_to_container -EXPORT_SYMBOL_GPL vmlinux 0x149c0a34 thermal_zone_unbind_cooling_device -EXPORT_SYMBOL_GPL vmlinux 0x14a51f8d __fsnotify_inode_delete -EXPORT_SYMBOL_GPL vmlinux 0x14b5c54a device_property_present -EXPORT_SYMBOL_GPL vmlinux 0x14ba1ed9 auxiliary_find_device -EXPORT_SYMBOL_GPL vmlinux 0x14c5026a get_net_ns +EXPORT_SYMBOL_GPL vmlinux 0x146e7cb1 spi_mem_dirmap_read +EXPORT_SYMBOL_GPL vmlinux 0x1490865f __tracepoint_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0x14996047 aead_exit_geniv +EXPORT_SYMBOL_GPL vmlinux 0x149aead2 security_path_link +EXPORT_SYMBOL_GPL vmlinux 0x14a1826a blkcg_print_blkgs +EXPORT_SYMBOL_GPL vmlinux 0x14a1e89f query_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0x14a889c7 mmc_poll_for_busy +EXPORT_SYMBOL_GPL vmlinux 0x14be7351 rio_mport_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x14c8b763 regulator_get_drvdata EXPORT_SYMBOL_GPL vmlinux 0x14d01690 clk_mux_index_to_val -EXPORT_SYMBOL_GPL vmlinux 0x14d3062b regmap_get_max_register -EXPORT_SYMBOL_GPL vmlinux 0x14d6f230 devm_thermal_add_hwmon_sysfs -EXPORT_SYMBOL_GPL vmlinux 0x14d7c91f pm_generic_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x14d7ca38 nvdimm_badblocks_populate +EXPORT_SYMBOL_GPL vmlinux 0x14e962f1 i2c_adapter_depth EXPORT_SYMBOL_GPL vmlinux 0x14ec4fdb evtchn_put +EXPORT_SYMBOL_GPL vmlinux 0x14f092cb gnttab_page_cache_init +EXPORT_SYMBOL_GPL vmlinux 0x14fc4808 pci_sriov_set_totalvfs EXPORT_SYMBOL_GPL vmlinux 0x15021b4a xa_delete_node -EXPORT_SYMBOL_GPL vmlinux 0x1502447f devm_acpi_dma_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x1522ea2a pci_find_vsec_capability -EXPORT_SYMBOL_GPL vmlinux 0x15358a3f PageHuge +EXPORT_SYMBOL_GPL vmlinux 0x15085205 devm_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x150e9486 ata_cable_80wire +EXPORT_SYMBOL_GPL vmlinux 0x151a1d51 tty_buffer_unlock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x152ed097 ata_pci_sff_prepare_host EXPORT_SYMBOL_GPL vmlinux 0x153b60a6 klist_del +EXPORT_SYMBOL_GPL vmlinux 0x15406539 __traceiter_br_fdb_external_learn_add +EXPORT_SYMBOL_GPL vmlinux 0x15410b75 tps6586x_read +EXPORT_SYMBOL_GPL vmlinux 0x154c9bec key_set_timeout +EXPORT_SYMBOL_GPL vmlinux 0x154ce28d pci_dev_lock +EXPORT_SYMBOL_GPL vmlinux 0x154d3a08 __irq_resolve_mapping EXPORT_SYMBOL_GPL vmlinux 0x15510a89 devlink_fmsg_binary_put +EXPORT_SYMBOL_GPL vmlinux 0x15510e84 spi_mem_dirmap_destroy +EXPORT_SYMBOL_GPL vmlinux 0x1555d790 tcp_sendpage_locked +EXPORT_SYMBOL_GPL vmlinux 0x155f21b4 dst_blackhole_mtu +EXPORT_SYMBOL_GPL vmlinux 0x1569ed7e acpi_device_fix_up_power EXPORT_SYMBOL_GPL vmlinux 0x156e8afe __SCT__tp_func_fib6_table_lookup -EXPORT_SYMBOL_GPL vmlinux 0x157116f7 usb_autopm_get_interface -EXPORT_SYMBOL_GPL vmlinux 0x1574edf5 ima_inode_hash -EXPORT_SYMBOL_GPL vmlinux 0x1575efcd __SCK__tp_func_sched_overutilized_tp -EXPORT_SYMBOL_GPL vmlinux 0x1581e4ad regmap_noinc_write -EXPORT_SYMBOL_GPL vmlinux 0x158234d8 fwnode_get_next_available_child_node -EXPORT_SYMBOL_GPL vmlinux 0x15b7a90d __phy_modify_mmd -EXPORT_SYMBOL_GPL vmlinux 0x15c65901 pci_epc_put +EXPORT_SYMBOL_GPL vmlinux 0x15919e8f regulator_suspend_enable +EXPORT_SYMBOL_GPL vmlinux 0x15944644 dm_per_bio_data +EXPORT_SYMBOL_GPL vmlinux 0x15ade1cc filter_irq_stacks +EXPORT_SYMBOL_GPL vmlinux 0x15b0710e fsnotify EXPORT_SYMBOL_GPL vmlinux 0x15cc30f1 cc_platform_has -EXPORT_SYMBOL_GPL vmlinux 0x15e5690a event_triggers_post_call +EXPORT_SYMBOL_GPL vmlinux 0x15e1d675 devm_irq_alloc_generic_chip EXPORT_SYMBOL_GPL vmlinux 0x15ea2648 hwpoison_filter_flags_mask -EXPORT_SYMBOL_GPL vmlinux 0x160bf058 rdev_get_regmap -EXPORT_SYMBOL_GPL vmlinux 0x161d0703 bpf_verifier_log_write -EXPORT_SYMBOL_GPL vmlinux 0x163cde7d dma_buf_unmap_attachment -EXPORT_SYMBOL_GPL vmlinux 0x16451693 devm_platform_ioremap_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0x15f587db xenbus_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x15fcf894 __SCK__tp_func_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0x1607f35d tty_ldisc_ref +EXPORT_SYMBOL_GPL vmlinux 0x16099fe7 extcon_get_state +EXPORT_SYMBOL_GPL vmlinux 0x16228b0b elv_rqhash_add +EXPORT_SYMBOL_GPL vmlinux 0x162ded7a genphy_c45_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0x164c8916 tty_release_struct EXPORT_SYMBOL_GPL vmlinux 0x16516798 osc_pc_lpi_support_confirmed -EXPORT_SYMBOL_GPL vmlinux 0x16566859 usb_autopm_put_interface_no_suspend -EXPORT_SYMBOL_GPL vmlinux 0x165ceff1 __SCK__tp_func_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0x165a46c3 bpf_prog_inc_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x165e7362 sk_free_unlock_clone EXPORT_SYMBOL_GPL vmlinux 0x166db1b5 sched_clock_idle_wakeup_event -EXPORT_SYMBOL_GPL vmlinux 0x1674f0bd virtqueue_add_inbuf EXPORT_SYMBOL_GPL vmlinux 0x167d7113 acpi_bus_register_early_device -EXPORT_SYMBOL_GPL vmlinux 0x168574ad iommu_get_domain_for_dev +EXPORT_SYMBOL_GPL vmlinux 0x167efb4c usb_put_dev +EXPORT_SYMBOL_GPL vmlinux 0x167fcaa1 sk_msg_trim +EXPORT_SYMBOL_GPL vmlinux 0x16820a17 handle_untracked_irq +EXPORT_SYMBOL_GPL vmlinux 0x1686f48d devlink_dpipe_table_register EXPORT_SYMBOL_GPL vmlinux 0x1687ec20 tty_get_frame_size EXPORT_SYMBOL_GPL vmlinux 0x1690b503 usb_role_switch_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x16911a3c nd_blk_region_to_dimm -EXPORT_SYMBOL_GPL vmlinux 0x169b54b1 ata_std_qc_defer -EXPORT_SYMBOL_GPL vmlinux 0x16b39116 sdev_evt_send_simple +EXPORT_SYMBOL_GPL vmlinux 0x16936099 xfrm_local_error +EXPORT_SYMBOL_GPL vmlinux 0x16c393cb mmc_regulator_get_supply +EXPORT_SYMBOL_GPL vmlinux 0x16c81fb7 __traceiter_neigh_event_send_dead +EXPORT_SYMBOL_GPL vmlinux 0x16d3b181 crypto_register_shash EXPORT_SYMBOL_GPL vmlinux 0x16da1f88 devlink_fmsg_u32_put +EXPORT_SYMBOL_GPL vmlinux 0x16dfbf36 add_interrupt_randomness +EXPORT_SYMBOL_GPL vmlinux 0x16e37b67 fuse_dev_operations EXPORT_SYMBOL_GPL vmlinux 0x16e66b43 crypto_aes_set_key -EXPORT_SYMBOL_GPL vmlinux 0x16ea4a31 fscrypt_get_symlink EXPORT_SYMBOL_GPL vmlinux 0x16f15139 bind_evtchn_to_irq -EXPORT_SYMBOL_GPL vmlinux 0x1705ed2a sock_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0x16f61760 device_rename +EXPORT_SYMBOL_GPL vmlinux 0x1701d9a1 acpi_device_modalias +EXPORT_SYMBOL_GPL vmlinux 0x17032a99 dev_forward_skb EXPORT_SYMBOL_GPL vmlinux 0x170cc36c put_timespec64 -EXPORT_SYMBOL_GPL vmlinux 0x1711ecdc edac_pci_del_device -EXPORT_SYMBOL_GPL vmlinux 0x1713a83a addrconf_add_linklocal -EXPORT_SYMBOL_GPL vmlinux 0x1716f50e regmap_write_async -EXPORT_SYMBOL_GPL vmlinux 0x172d8d7c nvdimm_cmd_mask -EXPORT_SYMBOL_GPL vmlinux 0x172edbd2 pci_epc_get +EXPORT_SYMBOL_GPL vmlinux 0x170fdc91 spi_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x171af90d devm_pm_opp_set_regulators +EXPORT_SYMBOL_GPL vmlinux 0x172041d7 phy_save_page +EXPORT_SYMBOL_GPL vmlinux 0x173920f3 tty_buffer_lock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x173f36dd sfp_bus_find_fwnode EXPORT_SYMBOL_GPL vmlinux 0x1741ddee trace_seq_puts -EXPORT_SYMBOL_GPL vmlinux 0x17447e7c xhci_init_driver EXPORT_SYMBOL_GPL vmlinux 0x17480d56 x509_free_certificate -EXPORT_SYMBOL_GPL vmlinux 0x17492d30 dm_device_name +EXPORT_SYMBOL_GPL vmlinux 0x17494f65 raw_abort EXPORT_SYMBOL_GPL vmlinux 0x174c6274 ring_buffer_time_stamp -EXPORT_SYMBOL_GPL vmlinux 0x174f325c tpm1_getcap -EXPORT_SYMBOL_GPL vmlinux 0x175c9a19 palmas_ext_control_req_config +EXPORT_SYMBOL_GPL vmlinux 0x17560305 mmc_regulator_set_ocr EXPORT_SYMBOL_GPL vmlinux 0x176031a7 devlink_fmsg_string_put EXPORT_SYMBOL_GPL vmlinux 0x17614bf3 apei_resources_sub -EXPORT_SYMBOL_GPL vmlinux 0x176a5fa8 device_find_child_by_name EXPORT_SYMBOL_GPL vmlinux 0x176adf76 xenmem_reservation_decrease -EXPORT_SYMBOL_GPL vmlinux 0x17711dfc rio_request_dma +EXPORT_SYMBOL_GPL vmlinux 0x176ea750 iomap_swapfile_activate EXPORT_SYMBOL_GPL vmlinux 0x177c338d twl_get_version -EXPORT_SYMBOL_GPL vmlinux 0x1784218f unregister_virtio_device -EXPORT_SYMBOL_GPL vmlinux 0x178e5313 iommu_set_fault_handler -EXPORT_SYMBOL_GPL vmlinux 0x1791ec36 sysfs_remove_file_self -EXPORT_SYMBOL_GPL vmlinux 0x17979f26 generic_fsdax_supported -EXPORT_SYMBOL_GPL vmlinux 0x179ab5ed fuse_direct_io -EXPORT_SYMBOL_GPL vmlinux 0x179b06fe edac_pci_add_device -EXPORT_SYMBOL_GPL vmlinux 0x17a34874 hwspin_lock_free +EXPORT_SYMBOL_GPL vmlinux 0x1783a533 devlink_dpipe_entry_ctx_close +EXPORT_SYMBOL_GPL vmlinux 0x178647e6 kick_process +EXPORT_SYMBOL_GPL vmlinux 0x178c5075 tcp_sendmsg_locked +EXPORT_SYMBOL_GPL vmlinux 0x179949c0 pci_destroy_slot +EXPORT_SYMBOL_GPL vmlinux 0x17a34b78 fsnotify_add_mark EXPORT_SYMBOL_GPL vmlinux 0x17add64b gdt_page -EXPORT_SYMBOL_GPL vmlinux 0x17ba1138 acpi_pm_set_device_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x17c29e82 regulator_enable +EXPORT_SYMBOL_GPL vmlinux 0x17c777e2 serial8250_clear_and_reinit_fifos +EXPORT_SYMBOL_GPL vmlinux 0x17d1eacb blk_stat_enable_accounting +EXPORT_SYMBOL_GPL vmlinux 0x17d27fef replace_page_cache_page EXPORT_SYMBOL_GPL vmlinux 0x17e01f11 erst_clear -EXPORT_SYMBOL_GPL vmlinux 0x17e6c1fc regulator_register +EXPORT_SYMBOL_GPL vmlinux 0x17e1e488 wm831x_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x17f67d16 irq_chip_eoi_parent +EXPORT_SYMBOL_GPL vmlinux 0x17f6e452 pci_hp_create_module_link EXPORT_SYMBOL_GPL vmlinux 0x18008c59 ring_buffer_resize -EXPORT_SYMBOL_GPL vmlinux 0x180a0ff0 icc_node_add -EXPORT_SYMBOL_GPL vmlinux 0x182066ec rio_del_mport_pw_handler -EXPORT_SYMBOL_GPL vmlinux 0x1828a3e3 extcon_get_property -EXPORT_SYMBOL_GPL vmlinux 0x183a9b56 ata_sff_port_intr -EXPORT_SYMBOL_GPL vmlinux 0x184d5bb8 sdio_retune_crc_enable +EXPORT_SYMBOL_GPL vmlinux 0x18275d44 input_ff_erase +EXPORT_SYMBOL_GPL vmlinux 0x1827e9e5 crypto_stats_akcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x182bba66 usb_hcd_unmap_urb_setup_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x182e2dbc crypto_drop_spawn +EXPORT_SYMBOL_GPL vmlinux 0x1830f2e3 __traceiter_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0x18338816 spi_add_device +EXPORT_SYMBOL_GPL vmlinux 0x183680d6 device_destroy +EXPORT_SYMBOL_GPL vmlinux 0x183ff313 devm_phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0x18556358 devm_pinctrl_register_and_init +EXPORT_SYMBOL_GPL vmlinux 0x18565b92 kobject_uevent_env EXPORT_SYMBOL_GPL vmlinux 0x18582826 amd_pmu_disable_virt -EXPORT_SYMBOL_GPL vmlinux 0x18592a3a mnt_want_write_file -EXPORT_SYMBOL_GPL vmlinux 0x185c30f2 get_governor_parent_kobj EXPORT_SYMBOL_GPL vmlinux 0x18615d35 efivar_supports_writes -EXPORT_SYMBOL_GPL vmlinux 0x187fca5e blkdev_nr_zones -EXPORT_SYMBOL_GPL vmlinux 0x18867805 acpi_dev_gpio_irq_get_by -EXPORT_SYMBOL_GPL vmlinux 0x189a858c rio_request_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x1866b9d8 devm_spi_mem_dirmap_create +EXPORT_SYMBOL_GPL vmlinux 0x18a4dfff phy_pm_runtime_get_sync EXPORT_SYMBOL_GPL vmlinux 0x18b2790f uv_bios_obj_count -EXPORT_SYMBOL_GPL vmlinux 0x18c1a535 __nf_ip6_route -EXPORT_SYMBOL_GPL vmlinux 0x18d399da usb_reset_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x18b593b9 sdev_evt_send +EXPORT_SYMBOL_GPL vmlinux 0x18b913d2 usb_alloc_streams +EXPORT_SYMBOL_GPL vmlinux 0x18c3f1ef fb_deferred_io_fsync +EXPORT_SYMBOL_GPL vmlinux 0x18cd5e96 led_set_brightness_nosleep EXPORT_SYMBOL_GPL vmlinux 0x18e4f8aa swphy_read_reg -EXPORT_SYMBOL_GPL vmlinux 0x18ede825 acpi_dev_pm_attach +EXPORT_SYMBOL_GPL vmlinux 0x18e93d0f irq_domain_create_legacy +EXPORT_SYMBOL_GPL vmlinux 0x18ef0120 pci_rescan_bus +EXPORT_SYMBOL_GPL vmlinux 0x18f73659 of_icc_bulk_get EXPORT_SYMBOL_GPL vmlinux 0x18fb2caf cpus_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0x190fc756 tcp_unregister_ulp -EXPORT_SYMBOL_GPL vmlinux 0x191adea4 __reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0x1926c006 device_property_match_string -EXPORT_SYMBOL_GPL vmlinux 0x1934c580 regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x19014e82 ata_scsi_dma_need_drain +EXPORT_SYMBOL_GPL vmlinux 0x1905a9fa dev_pm_genpd_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0x190a48c7 bd_unlink_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0x191b6262 nvdimm_to_bus +EXPORT_SYMBOL_GPL vmlinux 0x19264ca5 phy_modify_changed +EXPORT_SYMBOL_GPL vmlinux 0x192d5d74 pci_user_write_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x1933618d eventfd_fget EXPORT_SYMBOL_GPL vmlinux 0x193dfdf6 klp_get_prev_state -EXPORT_SYMBOL_GPL vmlinux 0x1959d3dd xenbus_unmap_ring_vfree -EXPORT_SYMBOL_GPL vmlinux 0x195bd3f0 nf_nat_hook -EXPORT_SYMBOL_GPL vmlinux 0x19619960 rio_add_net EXPORT_SYMBOL_GPL vmlinux 0x196614ce hw_breakpoint_restore -EXPORT_SYMBOL_GPL vmlinux 0x1971d173 watchdog_register_device -EXPORT_SYMBOL_GPL vmlinux 0x19757ed6 devm_fwnode_gpiod_get_index -EXPORT_SYMBOL_GPL vmlinux 0x19982b1f spi_new_ancillary_device -EXPORT_SYMBOL_GPL vmlinux 0x199c9f6d of_pm_clk_add_clks +EXPORT_SYMBOL_GPL vmlinux 0x19721a39 __udp_enqueue_schedule_skb +EXPORT_SYMBOL_GPL vmlinux 0x198228c7 power_supply_class +EXPORT_SYMBOL_GPL vmlinux 0x199355ba phy_pm_runtime_put +EXPORT_SYMBOL_GPL vmlinux 0x199e8417 phy_pm_runtime_allow EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled -EXPORT_SYMBOL_GPL vmlinux 0x19a6a739 usb_wakeup_enabled_descendants -EXPORT_SYMBOL_GPL vmlinux 0x19b1513e dma_free_pages -EXPORT_SYMBOL_GPL vmlinux 0x19d49257 sdio_retune_crc_disable -EXPORT_SYMBOL_GPL vmlinux 0x19d7fba4 ata_cable_unknown -EXPORT_SYMBOL_GPL vmlinux 0x19d9f524 iommu_domain_alloc -EXPORT_SYMBOL_GPL vmlinux 0x19da57e8 intel_pinctrl_probe_by_hid +EXPORT_SYMBOL_GPL vmlinux 0x19a3710a sk_msg_zerocopy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0x19a8321a __tracepoint_arm_event +EXPORT_SYMBOL_GPL vmlinux 0x19c38a2e gpiod_set_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x19d193da ata_sff_data_xfer +EXPORT_SYMBOL_GPL vmlinux 0x19d2b092 __tracepoint_tcp_send_reset +EXPORT_SYMBOL_GPL vmlinux 0x19d32fde icc_node_create +EXPORT_SYMBOL_GPL vmlinux 0x19d8ec57 tty_port_register_device_attr EXPORT_SYMBOL_GPL vmlinux 0x19e0ae50 __SCT__tp_func_br_fdb_external_learn_add +EXPORT_SYMBOL_GPL vmlinux 0x19e16d14 pci_user_read_config_byte EXPORT_SYMBOL_GPL vmlinux 0x19e81304 btree_alloc EXPORT_SYMBOL_GPL vmlinux 0x19edd064 blkg_rwstat_exit -EXPORT_SYMBOL_GPL vmlinux 0x1a0226ab crypto_register_shashes -EXPORT_SYMBOL_GPL vmlinux 0x1a09b9ff subsys_interface_register +EXPORT_SYMBOL_GPL vmlinux 0x19f5b98a fwnode_count_parents EXPORT_SYMBOL_GPL vmlinux 0x1a10c32b crypto_ft_tab EXPORT_SYMBOL_GPL vmlinux 0x1a146ec3 usb_ep_type_string -EXPORT_SYMBOL_GPL vmlinux 0x1a254c49 skb_to_sgvec -EXPORT_SYMBOL_GPL vmlinux 0x1a2da6dc dw_pcie_wait_for_link -EXPORT_SYMBOL_GPL vmlinux 0x1a35ca8f devlink_health_reporter_create -EXPORT_SYMBOL_GPL vmlinux 0x1a47e854 verify_signature -EXPORT_SYMBOL_GPL vmlinux 0x1a614468 edac_mc_find_csrow_by_page -EXPORT_SYMBOL_GPL vmlinux 0x1a653ec1 phy_pm_runtime_put -EXPORT_SYMBOL_GPL vmlinux 0x1a670984 blk_queue_write_cache -EXPORT_SYMBOL_GPL vmlinux 0x1a69e671 dma_mmap_pages +EXPORT_SYMBOL_GPL vmlinux 0x1a257e16 shash_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0x1a4d2035 regulator_set_voltage_time +EXPORT_SYMBOL_GPL vmlinux 0x1a4dd5d8 dax_iomap_fault EXPORT_SYMBOL_GPL vmlinux 0x1a6bf28f fsnotify_get_cookie -EXPORT_SYMBOL_GPL vmlinux 0x1a886eb6 irq_domain_create_simple -EXPORT_SYMBOL_GPL vmlinux 0x1a8ec70c devm_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x1a6c5ebc ping_bind +EXPORT_SYMBOL_GPL vmlinux 0x1a81e0a6 bpf_trace_run3 +EXPORT_SYMBOL_GPL vmlinux 0x1a84ed03 devm_devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0x1a95e67b fscrypt_mergeable_bio EXPORT_SYMBOL_GPL vmlinux 0x1a9754cf sbitmap_queue_min_shallow_depth -EXPORT_SYMBOL_GPL vmlinux 0x1a994674 acpi_dev_add_driver_gpios -EXPORT_SYMBOL_GPL vmlinux 0x1aab7a79 devlink_reload_enable -EXPORT_SYMBOL_GPL vmlinux 0x1acc435c scsi_get_vpd_page +EXPORT_SYMBOL_GPL vmlinux 0x1a9d97c4 ata_host_alloc +EXPORT_SYMBOL_GPL vmlinux 0x1ac1f933 pci_num_vf EXPORT_SYMBOL_GPL vmlinux 0x1acd18c8 cpuset_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x1ad98bc4 devlink_region_snapshot_id_get -EXPORT_SYMBOL_GPL vmlinux 0x1ae6bbf1 preempt_notifier_register EXPORT_SYMBOL_GPL vmlinux 0x1af267f8 int_pow +EXPORT_SYMBOL_GPL vmlinux 0x1af89b3e regmap_bulk_write EXPORT_SYMBOL_GPL vmlinux 0x1aff3d55 mce_register_injector_chain -EXPORT_SYMBOL_GPL vmlinux 0x1b1016ca is_nvdimm_sync -EXPORT_SYMBOL_GPL vmlinux 0x1b298cff regulator_disable_regmap -EXPORT_SYMBOL_GPL vmlinux 0x1b475ca1 edac_device_alloc_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0x1b00bf13 devm_bitmap_alloc +EXPORT_SYMBOL_GPL vmlinux 0x1b118880 phy_set_mode_ext +EXPORT_SYMBOL_GPL vmlinux 0x1b290387 wm8350_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0x1b2ed213 gpiochip_line_is_open_source +EXPORT_SYMBOL_GPL vmlinux 0x1b39d3a9 ata_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0x1b449e76 pinctrl_utils_add_config +EXPORT_SYMBOL_GPL vmlinux 0x1b46714e virtio_check_driver_offered_feature EXPORT_SYMBOL_GPL vmlinux 0x1b5059ce ata_id_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x1b521da4 ata_pci_bmdma_init EXPORT_SYMBOL_GPL vmlinux 0x1b5f4377 trace_seq_putc -EXPORT_SYMBOL_GPL vmlinux 0x1b725351 dev_pm_opp_get_max_transition_latency -EXPORT_SYMBOL_GPL vmlinux 0x1b7901cd apei_get_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0x1b677bef dev_pm_opp_detach_genpd +EXPORT_SYMBOL_GPL vmlinux 0x1b7997e6 regcache_cache_bypass +EXPORT_SYMBOL_GPL vmlinux 0x1b7c07d5 iommu_page_response +EXPORT_SYMBOL_GPL vmlinux 0x1b7f65f3 crypto_unregister_ahashes +EXPORT_SYMBOL_GPL vmlinux 0x1b86ac09 lwtunnel_input EXPORT_SYMBOL_GPL vmlinux 0x1b8822d8 pinctrl_gpio_direction_output -EXPORT_SYMBOL_GPL vmlinux 0x1b919a99 init_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x1b8c1601 pcie_update_link_speed EXPORT_SYMBOL_GPL vmlinux 0x1b92e41d inet_putpeer -EXPORT_SYMBOL_GPL vmlinux 0x1b95abb7 __traceiter_block_unplug EXPORT_SYMBOL_GPL vmlinux 0x1ba237b0 default_cpu_present_to_apicid -EXPORT_SYMBOL_GPL vmlinux 0x1ba48adc ata_port_abort -EXPORT_SYMBOL_GPL vmlinux 0x1baa9ebc hwmon_notify_event -EXPORT_SYMBOL_GPL vmlinux 0x1bab5bfe mbox_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x1bc21b23 crypto_grab_spawn +EXPORT_SYMBOL_GPL vmlinux 0x1bc57c3d __cpuhp_state_remove_instance EXPORT_SYMBOL_GPL vmlinux 0x1bc5eebe pinctrl_gpio_direction_input -EXPORT_SYMBOL_GPL vmlinux 0x1bc63bc2 device_add -EXPORT_SYMBOL_GPL vmlinux 0x1be5534d dev_pm_opp_put_prop_name +EXPORT_SYMBOL_GPL vmlinux 0x1be0e49d __hwspin_trylock +EXPORT_SYMBOL_GPL vmlinux 0x1be513fc do_unbind_con_driver EXPORT_SYMBOL_GPL vmlinux 0x1bee4974 sg_alloc_table_chained -EXPORT_SYMBOL_GPL vmlinux 0x1bf02fb6 regcache_cache_bypass -EXPORT_SYMBOL_GPL vmlinux 0x1bfb0d85 tcp_set_keepalive -EXPORT_SYMBOL_GPL vmlinux 0x1c17ca72 fscrypt_prepare_new_inode -EXPORT_SYMBOL_GPL vmlinux 0x1c1aa218 __raw_v4_lookup -EXPORT_SYMBOL_GPL vmlinux 0x1c25453d platform_device_del -EXPORT_SYMBOL_GPL vmlinux 0x1c286f1b crypto_unregister_ahashes -EXPORT_SYMBOL_GPL vmlinux 0x1c363dc9 ping_get_port +EXPORT_SYMBOL_GPL vmlinux 0x1bfd35c6 dev_pm_opp_find_freq_floor +EXPORT_SYMBOL_GPL vmlinux 0x1c068d85 wwan_create_port +EXPORT_SYMBOL_GPL vmlinux 0x1c118770 __SCK__tp_func_devlink_hwerr +EXPORT_SYMBOL_GPL vmlinux 0x1c229e46 path_noexec +EXPORT_SYMBOL_GPL vmlinux 0x1c36cd71 xfer_to_guest_mode_handle_work +EXPORT_SYMBOL_GPL vmlinux 0x1c4b8c29 fwnode_graph_get_next_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x1c507e79 addrconf_prefix_rcv_add_addr EXPORT_SYMBOL_GPL vmlinux 0x1c5541bd cpufreq_boost_enabled -EXPORT_SYMBOL_GPL vmlinux 0x1c5b1d6d xhci_resume EXPORT_SYMBOL_GPL vmlinux 0x1c5b1f28 irq_free_descs EXPORT_SYMBOL_GPL vmlinux 0x1c5ff742 clk_get_phase -EXPORT_SYMBOL_GPL vmlinux 0x1c716601 crypto_comp_decompress +EXPORT_SYMBOL_GPL vmlinux 0x1c630330 nvmem_cell_read_u32 +EXPORT_SYMBOL_GPL vmlinux 0x1c7427af vfio_group_get_external_user EXPORT_SYMBOL_GPL vmlinux 0x1c764526 __SCT__tp_func_rpm_suspend EXPORT_SYMBOL_GPL vmlinux 0x1c80d27d btree_geo128 EXPORT_SYMBOL_GPL vmlinux 0x1c87a811 __round_jiffies_up -EXPORT_SYMBOL_GPL vmlinux 0x1c8e7ca7 pci_dev_trylock -EXPORT_SYMBOL_GPL vmlinux 0x1c998f5c ip_route_output_tunnel +EXPORT_SYMBOL_GPL vmlinux 0x1c933299 sata_std_hardreset EXPORT_SYMBOL_GPL vmlinux 0x1ca3aa97 alarm_forward +EXPORT_SYMBOL_GPL vmlinux 0x1ca3c5c3 acpi_cppc_processor_exit +EXPORT_SYMBOL_GPL vmlinux 0x1caf7a8e pci_epc_init_notify +EXPORT_SYMBOL_GPL vmlinux 0x1cb03126 vp_modern_probe +EXPORT_SYMBOL_GPL vmlinux 0x1cb75615 crypto_unregister_template EXPORT_SYMBOL_GPL vmlinux 0x1cb7c983 apei_exec_read_register_value EXPORT_SYMBOL_GPL vmlinux 0x1cb9a1c8 xenbus_gather -EXPORT_SYMBOL_GPL vmlinux 0x1cbb1128 iommu_aux_get_pasid EXPORT_SYMBOL_GPL vmlinux 0x1cbd92b0 cpu_mitigations_off -EXPORT_SYMBOL_GPL vmlinux 0x1ccc92f8 usb_remove_phy +EXPORT_SYMBOL_GPL vmlinux 0x1cbec2ab devres_add +EXPORT_SYMBOL_GPL vmlinux 0x1cbf124a sk_msg_memcopy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0x1cdc0a8d metadata_dst_free_percpu +EXPORT_SYMBOL_GPL vmlinux 0x1cdc30aa bpf_offload_dev_netdev_register +EXPORT_SYMBOL_GPL vmlinux 0x1ce08dc9 devm_regulator_bulk_get EXPORT_SYMBOL_GPL vmlinux 0x1cfe4101 clkdev_hw_create -EXPORT_SYMBOL_GPL vmlinux 0x1d085316 regulator_bulk_free -EXPORT_SYMBOL_GPL vmlinux 0x1d0b586d nd_blk_region_set_provider_data -EXPORT_SYMBOL_GPL vmlinux 0x1d0c4423 vp_modern_set_queue_enable -EXPORT_SYMBOL_GPL vmlinux 0x1d109723 i2c_dw_configure_master -EXPORT_SYMBOL_GPL vmlinux 0x1d1595d6 tty_port_register_device_attr -EXPORT_SYMBOL_GPL vmlinux 0x1d16d503 pwmchip_add -EXPORT_SYMBOL_GPL vmlinux 0x1d1cd205 scsi_host_block +EXPORT_SYMBOL_GPL vmlinux 0x1d0d259b input_ff_create +EXPORT_SYMBOL_GPL vmlinux 0x1d117dd8 intel_pinctrl_probe_by_hid +EXPORT_SYMBOL_GPL vmlinux 0x1d17dce4 devm_devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0x1d1d5738 iommu_uapi_sva_bind_gpasid EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state -EXPORT_SYMBOL_GPL vmlinux 0x1d315b97 ata_common_sdev_attrs -EXPORT_SYMBOL_GPL vmlinux 0x1d3520dd nf_queue_entry_free -EXPORT_SYMBOL_GPL vmlinux 0x1d36f905 security_path_chown -EXPORT_SYMBOL_GPL vmlinux 0x1d49f860 devlink_trap_report -EXPORT_SYMBOL_GPL vmlinux 0x1d5eddda tpm_tis_core_init +EXPORT_SYMBOL_GPL vmlinux 0x1d2be270 devm_clk_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x1d388d1a crypto_shash_update +EXPORT_SYMBOL_GPL vmlinux 0x1d3fbfb4 gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0x1d421d3d phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0x1d49da07 ata_sas_port_init +EXPORT_SYMBOL_GPL vmlinux 0x1d4de0b3 __tcp_send_ack +EXPORT_SYMBOL_GPL vmlinux 0x1d612566 acpi_subsys_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x1d6232ab usb_match_one_id +EXPORT_SYMBOL_GPL vmlinux 0x1d625042 __traceiter_neigh_cleanup_and_release +EXPORT_SYMBOL_GPL vmlinux 0x1d75dfcb regmap_field_alloc EXPORT_SYMBOL_GPL vmlinux 0x1d77b0f8 unix_socket_table -EXPORT_SYMBOL_GPL vmlinux 0x1d909c81 fwnode_graph_get_next_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x1d8442c8 regmap_field_read +EXPORT_SYMBOL_GPL vmlinux 0x1d9053b7 ping_rcv EXPORT_SYMBOL_GPL vmlinux 0x1d94a218 dmi_memdev_handle -EXPORT_SYMBOL_GPL vmlinux 0x1da43924 fsverity_verify_page -EXPORT_SYMBOL_GPL vmlinux 0x1ddaab46 pinctrl_utils_reserve_map +EXPORT_SYMBOL_GPL vmlinux 0x1daa08f2 devres_get +EXPORT_SYMBOL_GPL vmlinux 0x1db4512b xfrm_output_resume +EXPORT_SYMBOL_GPL vmlinux 0x1dd55164 regulator_put +EXPORT_SYMBOL_GPL vmlinux 0x1dd558c9 tracing_snapshot_cond_enable EXPORT_SYMBOL_GPL vmlinux 0x1ddd29fc __SCK__tp_func_xdp_bulk_tx EXPORT_SYMBOL_GPL vmlinux 0x1dfa5dbd mpi_invm -EXPORT_SYMBOL_GPL vmlinux 0x1dfc4a99 do_splice_to +EXPORT_SYMBOL_GPL vmlinux 0x1dfaeac7 iommu_domain_alloc EXPORT_SYMBOL_GPL vmlinux 0x1e0670c6 reset_control_release -EXPORT_SYMBOL_GPL vmlinux 0x1e168518 nvdimm_region_notify -EXPORT_SYMBOL_GPL vmlinux 0x1e21441c devres_destroy -EXPORT_SYMBOL_GPL vmlinux 0x1e237273 irq_domain_disconnect_hierarchy -EXPORT_SYMBOL_GPL vmlinux 0x1e305fcf fuse_conn_get -EXPORT_SYMBOL_GPL vmlinux 0x1e30e9e2 lwtunnel_cmp_encap -EXPORT_SYMBOL_GPL vmlinux 0x1e3c1e51 dev_attr_unload_heads +EXPORT_SYMBOL_GPL vmlinux 0x1e0e3761 pwm_adjust_config +EXPORT_SYMBOL_GPL vmlinux 0x1e21b559 crypto_mod_put +EXPORT_SYMBOL_GPL vmlinux 0x1e3408b3 spi_setup +EXPORT_SYMBOL_GPL vmlinux 0x1e345ce3 nfs_ssc_register +EXPORT_SYMBOL_GPL vmlinux 0x1e3adcc9 regulator_set_mode EXPORT_SYMBOL_GPL vmlinux 0x1e424d61 user_preparse -EXPORT_SYMBOL_GPL vmlinux 0x1e4ba5c4 dma_get_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0x1e4e2da4 phy_led_triggers_register EXPORT_SYMBOL_GPL vmlinux 0x1e4e98c0 acpi_dev_filter_resource_type -EXPORT_SYMBOL_GPL vmlinux 0x1e52aff6 is_swiotlb_active +EXPORT_SYMBOL_GPL vmlinux 0x1e4f08ca led_trigger_unregister_simple +EXPORT_SYMBOL_GPL vmlinux 0x1e4f37e6 nvmem_cell_read_u8 +EXPORT_SYMBOL_GPL vmlinux 0x1e50c84b vchan_dma_desc_free_list EXPORT_SYMBOL_GPL vmlinux 0x1e5a5f22 sn_partition_id -EXPORT_SYMBOL_GPL vmlinux 0x1e63f723 regulator_get_linear_step -EXPORT_SYMBOL_GPL vmlinux 0x1e766bc0 cgroup_path_ns +EXPORT_SYMBOL_GPL vmlinux 0x1e5c6755 pci_epc_set_msi +EXPORT_SYMBOL_GPL vmlinux 0x1e65cd7a tracepoint_probe_register EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart +EXPORT_SYMBOL_GPL vmlinux 0x1e83d287 tcp_slow_start +EXPORT_SYMBOL_GPL vmlinux 0x1e8a9780 cpufreq_generic_init EXPORT_SYMBOL_GPL vmlinux 0x1e8fac8e wireless_nlevent_flush EXPORT_SYMBOL_GPL vmlinux 0x1e912415 uv_bios_get_heapsize +EXPORT_SYMBOL_GPL vmlinux 0x1e9388fe irq_chip_release_resources_parent +EXPORT_SYMBOL_GPL vmlinux 0x1e95a5e8 regulator_bulk_enable EXPORT_SYMBOL_GPL vmlinux 0x1e9872f6 sbitmap_finish_wait EXPORT_SYMBOL_GPL vmlinux 0x1e9bc719 freq_qos_update_request EXPORT_SYMBOL_GPL vmlinux 0x1e9c590a usb_find_common_endpoints_reverse -EXPORT_SYMBOL_GPL vmlinux 0x1e9ed0d8 serial8250_rpm_get -EXPORT_SYMBOL_GPL vmlinux 0x1ea8a061 ethnl_cable_test_finished EXPORT_SYMBOL_GPL vmlinux 0x1eb9516e round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x1ebbabcd tpm_chip_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1ebc7a84 mnt_drop_write EXPORT_SYMBOL_GPL vmlinux 0x1ebf6c2a pci_power_names -EXPORT_SYMBOL_GPL vmlinux 0x1ecb7e6f bpfilter_umh_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x1ec49af0 devm_kfree +EXPORT_SYMBOL_GPL vmlinux 0x1ec50267 devlink_reload_enable +EXPORT_SYMBOL_GPL vmlinux 0x1ec77879 pci_epc_set_msix +EXPORT_SYMBOL_GPL vmlinux 0x1ec79966 devm_kmemdup EXPORT_SYMBOL_GPL vmlinux 0x1ed4d2eb percpu_ref_kill_and_confirm -EXPORT_SYMBOL_GPL vmlinux 0x1ed85da1 regcache_cache_only -EXPORT_SYMBOL_GPL vmlinux 0x1eddd3bb unwind_get_return_address -EXPORT_SYMBOL_GPL vmlinux 0x1ee2f053 xenbus_watch_path -EXPORT_SYMBOL_GPL vmlinux 0x1ee9d8ee inet_twsk_alloc -EXPORT_SYMBOL_GPL vmlinux 0x1efd5558 dev_pm_opp_remove_table +EXPORT_SYMBOL_GPL vmlinux 0x1edd9983 platform_device_del +EXPORT_SYMBOL_GPL vmlinux 0x1ee0f33e blk_rq_prep_clone +EXPORT_SYMBOL_GPL vmlinux 0x1efb7871 ata_sff_check_status +EXPORT_SYMBOL_GPL vmlinux 0x1f0af206 gpiochip_line_is_irq +EXPORT_SYMBOL_GPL vmlinux 0x1f0c10bc crypto_alloc_akcipher EXPORT_SYMBOL_GPL vmlinux 0x1f0cb5bf pm_power_off_prepare -EXPORT_SYMBOL_GPL vmlinux 0x1f17189c watchdog_set_last_hw_keepalive -EXPORT_SYMBOL_GPL vmlinux 0x1f179e74 init_uts_ns +EXPORT_SYMBOL_GPL vmlinux 0x1f2bd466 devm_regmap_field_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0x1f35e50c fscrypt_ioctl_get_nonce +EXPORT_SYMBOL_GPL vmlinux 0x1f36263b scsi_mode_select +EXPORT_SYMBOL_GPL vmlinux 0x1f366682 md_run EXPORT_SYMBOL_GPL vmlinux 0x1f38a4f6 mpi_set_highbit +EXPORT_SYMBOL_GPL vmlinux 0x1f3ea96a device_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0x1f41e7a6 scsi_register_device_handler EXPORT_SYMBOL_GPL vmlinux 0x1f449588 mctrl_gpio_disable_ms +EXPORT_SYMBOL_GPL vmlinux 0x1f52aedf vfio_virqfd_enable +EXPORT_SYMBOL_GPL vmlinux 0x1f53667a do_tcp_sendpages EXPORT_SYMBOL_GPL vmlinux 0x1f563160 bpf_offload_dev_priv EXPORT_SYMBOL_GPL vmlinux 0x1f5ece97 cond_wakeup_cpu0 -EXPORT_SYMBOL_GPL vmlinux 0x1f725690 fwnode_property_read_u8_array -EXPORT_SYMBOL_GPL vmlinux 0x1f7b98bf led_classdev_register_ext -EXPORT_SYMBOL_GPL vmlinux 0x1f7dcf8e dev_xdp_prog_count +EXPORT_SYMBOL_GPL vmlinux 0x1f771824 intel_pinctrl_resume_noirq EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout -EXPORT_SYMBOL_GPL vmlinux 0x1f8b3a8d vp_modern_get_queue_size -EXPORT_SYMBOL_GPL vmlinux 0x1f928b53 skb_mpls_push -EXPORT_SYMBOL_GPL vmlinux 0x1f96486f input_ff_create -EXPORT_SYMBOL_GPL vmlinux 0x1f9f51f5 bpf_trace_run7 +EXPORT_SYMBOL_GPL vmlinux 0x1f8d1c92 mmc_crypto_prepare_req +EXPORT_SYMBOL_GPL vmlinux 0x1f8ea58d gnttab_page_cache_get EXPORT_SYMBOL_GPL vmlinux 0x1fa1d95c sha256_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x1fb2db2c pci_create_slot EXPORT_SYMBOL_GPL vmlinux 0x1fb70eb9 gnttab_end_foreign_transfer_ref -EXPORT_SYMBOL_GPL vmlinux 0x1fceffb6 debugfs_rename -EXPORT_SYMBOL_GPL vmlinux 0x1fe60101 extcon_sync +EXPORT_SYMBOL_GPL vmlinux 0x1fd07a34 proc_get_parent_data EXPORT_SYMBOL_GPL vmlinux 0x1fe6e504 gpiod_add_hogs -EXPORT_SYMBOL_GPL vmlinux 0x1ff0202a __of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0x1feb08ef page_endio +EXPORT_SYMBOL_GPL vmlinux 0x20083f82 __tracepoint_pelt_rt_tp EXPORT_SYMBOL_GPL vmlinux 0x2009e400 devlink_info_board_serial_number_put -EXPORT_SYMBOL_GPL vmlinux 0x20132b93 fl6_merge_options EXPORT_SYMBOL_GPL vmlinux 0x202d4ed6 nvmem_cell_write +EXPORT_SYMBOL_GPL vmlinux 0x20318956 sched_trace_rq_cpu_capacity +EXPORT_SYMBOL_GPL vmlinux 0x2035cf9c ata_sff_busy_sleep +EXPORT_SYMBOL_GPL vmlinux 0x2037f792 devm_regulator_get_optional EXPORT_SYMBOL_GPL vmlinux 0x204f2c5c gnttab_free_grant_reference -EXPORT_SYMBOL_GPL vmlinux 0x2055a50f perf_event_sysfs_show -EXPORT_SYMBOL_GPL vmlinux 0x20606b12 component_unbind_all -EXPORT_SYMBOL_GPL vmlinux 0x206eb059 receive_fd +EXPORT_SYMBOL_GPL vmlinux 0x20522615 da9052_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0x20619177 fpu_alloc_guest_fpstate +EXPORT_SYMBOL_GPL vmlinux 0x20727b6e ipv6_find_tlv +EXPORT_SYMBOL_GPL vmlinux 0x207b3acf __SCK__tp_func_rpm_suspend EXPORT_SYMBOL_GPL vmlinux 0x20835a9f __xdp_release_frame -EXPORT_SYMBOL_GPL vmlinux 0x2083f46e usb_free_coherent +EXPORT_SYMBOL_GPL vmlinux 0x2085398f blk_clear_pm_only EXPORT_SYMBOL_GPL vmlinux 0x20899467 hv_stimer0_isr +EXPORT_SYMBOL_GPL vmlinux 0x208c70fc pm_generic_thaw_early EXPORT_SYMBOL_GPL vmlinux 0x20978fb9 idr_find -EXPORT_SYMBOL_GPL vmlinux 0x20979452 regulator_enable_regmap -EXPORT_SYMBOL_GPL vmlinux 0x20ab16a5 regulator_bulk_force_disable -EXPORT_SYMBOL_GPL vmlinux 0x20e2611e devfreq_get_devfreq_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x20a19910 __tracepoint_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0x20bd4b2f skb_mpls_pop +EXPORT_SYMBOL_GPL vmlinux 0x20e8c572 vp_modern_set_queue_size +EXPORT_SYMBOL_GPL vmlinux 0x20fb05d2 ncsi_stop_dev EXPORT_SYMBOL_GPL vmlinux 0x20fc44ac serdev_acpi_get_uart_resource -EXPORT_SYMBOL_GPL vmlinux 0x2100e6be regulator_count_voltages -EXPORT_SYMBOL_GPL vmlinux 0x2104d8e5 ping_getfrag -EXPORT_SYMBOL_GPL vmlinux 0x210742e7 devfreq_event_get_edev_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x210a4422 sk_msg_recvmsg -EXPORT_SYMBOL_GPL vmlinux 0x2111da16 pci_remove_root_bus -EXPORT_SYMBOL_GPL vmlinux 0x211dd79a pci_epf_add_vepf -EXPORT_SYMBOL_GPL vmlinux 0x212ca9d2 regmap_reinit_cache -EXPORT_SYMBOL_GPL vmlinux 0x2139aa67 regmap_raw_write_async -EXPORT_SYMBOL_GPL vmlinux 0x213bc8ec cpu_subsys -EXPORT_SYMBOL_GPL vmlinux 0x21498dc2 bio_start_io_acct_time -EXPORT_SYMBOL_GPL vmlinux 0x21552911 __devm_regmap_init_i2c -EXPORT_SYMBOL_GPL vmlinux 0x21630499 sysfs_rename_link_ns +EXPORT_SYMBOL_GPL vmlinux 0x21086c36 devm_remove_action +EXPORT_SYMBOL_GPL vmlinux 0x210a5958 phy_set_media +EXPORT_SYMBOL_GPL vmlinux 0x210e5aaa dev_pm_opp_put_clkname +EXPORT_SYMBOL_GPL vmlinux 0x213ce78f devres_close_group +EXPORT_SYMBOL_GPL vmlinux 0x215815b9 regmap_noinc_read +EXPORT_SYMBOL_GPL vmlinux 0x21596704 mptcp_token_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x215aff19 usb_disable_lpm EXPORT_SYMBOL_GPL vmlinux 0x216de4e1 rcu_get_gp_kthreads_prio -EXPORT_SYMBOL_GPL vmlinux 0x2175f8c3 virtio_config_changed EXPORT_SYMBOL_GPL vmlinux 0x2176e42a hwpoison_filter_memcg -EXPORT_SYMBOL_GPL vmlinux 0x217e0e17 do_truncate -EXPORT_SYMBOL_GPL vmlinux 0x218d4cf5 clk_mux_determine_rate_flags -EXPORT_SYMBOL_GPL vmlinux 0x219ed0d3 of_hwspin_lock_get_id_byname -EXPORT_SYMBOL_GPL vmlinux 0x219f2e83 mbox_free_channel -EXPORT_SYMBOL_GPL vmlinux 0x21a1f9d0 regulator_set_voltage_sel_pickable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x218484c3 vfs_test_lock +EXPORT_SYMBOL_GPL vmlinux 0x2197ed1d crypto_stats_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x21a2c301 ata_wait_register +EXPORT_SYMBOL_GPL vmlinux 0x21a46ade kill_pid_usb_asyncio EXPORT_SYMBOL_GPL vmlinux 0x21a563da clk_get_accuracy +EXPORT_SYMBOL_GPL vmlinux 0x21a86859 __devm_reset_control_get EXPORT_SYMBOL_GPL vmlinux 0x21ac8b77 iommu_group_get_by_id -EXPORT_SYMBOL_GPL vmlinux 0x21c28b04 pci_stop_and_remove_bus_device_locked +EXPORT_SYMBOL_GPL vmlinux 0x21ba7089 get_dev_pagemap EXPORT_SYMBOL_GPL vmlinux 0x21c34c8f gnttab_end_foreign_transfer EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher EXPORT_SYMBOL_GPL vmlinux 0x21ce3ed1 dev_fetch_sw_netstats -EXPORT_SYMBOL_GPL vmlinux 0x21d5dd0e kthread_park -EXPORT_SYMBOL_GPL vmlinux 0x21e98378 sock_diag_register -EXPORT_SYMBOL_GPL vmlinux 0x21f2c663 scsi_target_block -EXPORT_SYMBOL_GPL vmlinux 0x21f3638e __SCK__tp_func_pelt_se_tp -EXPORT_SYMBOL_GPL vmlinux 0x2203ad0a devlink_region_create -EXPORT_SYMBOL_GPL vmlinux 0x22076868 preempt_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0x22112fd7 sk_msg_alloc +EXPORT_SYMBOL_GPL vmlinux 0x21dbc9f1 crypto_register_acomp +EXPORT_SYMBOL_GPL vmlinux 0x21fbc695 extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0x21fe01fb iommu_unmap_fast +EXPORT_SYMBOL_GPL vmlinux 0x21fe8f94 fscrypt_set_bio_crypt_ctx_bh +EXPORT_SYMBOL_GPL vmlinux 0x2202521c vfio_pci_core_sriov_configure +EXPORT_SYMBOL_GPL vmlinux 0x2208ace6 blk_queue_max_discard_segments EXPORT_SYMBOL_GPL vmlinux 0x2211a4c0 blk_op_str +EXPORT_SYMBOL_GPL vmlinux 0x221b1e86 fsnotify_put_group EXPORT_SYMBOL_GPL vmlinux 0x221eab6d scatterwalk_copychunks -EXPORT_SYMBOL_GPL vmlinux 0x2228f5af skb_mpls_update_lse -EXPORT_SYMBOL_GPL vmlinux 0x222a02c7 encrypt_blob -EXPORT_SYMBOL_GPL vmlinux 0x2247159d __irq_set_handler -EXPORT_SYMBOL_GPL vmlinux 0x224e47b3 spi_alloc_device +EXPORT_SYMBOL_GPL vmlinux 0x2220ea6c skb_zerocopy_iter_stream +EXPORT_SYMBOL_GPL vmlinux 0x2225ef5d gpiod_get_direction +EXPORT_SYMBOL_GPL vmlinux 0x22283418 add_to_page_cache_lru +EXPORT_SYMBOL_GPL vmlinux 0x22438741 efivar_entry_size EXPORT_SYMBOL_GPL vmlinux 0x224f51bf nvmem_device_cell_read -EXPORT_SYMBOL_GPL vmlinux 0x2269fa57 tracing_snapshot_cond_enable -EXPORT_SYMBOL_GPL vmlinux 0x22786a40 debugfs_create_file -EXPORT_SYMBOL_GPL vmlinux 0x22882dc3 __restore_fpregs_from_fpstate -EXPORT_SYMBOL_GPL vmlinux 0x22957ab8 clk_register_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0x22a171b9 rio_get_comptag -EXPORT_SYMBOL_GPL vmlinux 0x22a465a8 usb_bulk_msg -EXPORT_SYMBOL_GPL vmlinux 0x22b5e970 d_exchange -EXPORT_SYMBOL_GPL vmlinux 0x22b73f74 __tracepoint_tcp_send_reset -EXPORT_SYMBOL_GPL vmlinux 0x22cd99df __spi_alloc_controller -EXPORT_SYMBOL_GPL vmlinux 0x22d02ee6 sata_std_hardreset -EXPORT_SYMBOL_GPL vmlinux 0x22d1a574 pinctrl_register +EXPORT_SYMBOL_GPL vmlinux 0x22542b8b ptp_classify_raw +EXPORT_SYMBOL_GPL vmlinux 0x226d0f31 __tracepoint_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0x226d6db3 ata_sas_async_probe +EXPORT_SYMBOL_GPL vmlinux 0x22715809 sk_msg_free_nocharge +EXPORT_SYMBOL_GPL vmlinux 0x227abfef exportfs_decode_fh_raw +EXPORT_SYMBOL_GPL vmlinux 0x228d361e sysfs_create_mount_point +EXPORT_SYMBOL_GPL vmlinux 0x2296ec7f da903x_update +EXPORT_SYMBOL_GPL vmlinux 0x229f0604 __blk_mq_debugfs_rq_show +EXPORT_SYMBOL_GPL vmlinux 0x22a0b3fe pci_stop_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x22a1f24a regmap_add_irq_chip EXPORT_SYMBOL_GPL vmlinux 0x22d60537 tcf_frag_xmit_count -EXPORT_SYMBOL_GPL vmlinux 0x22d7f518 __efivar_entry_delete +EXPORT_SYMBOL_GPL vmlinux 0x22d83d76 sdio_retune_crc_enable EXPORT_SYMBOL_GPL vmlinux 0x22d9409b iomap_sort_ioends -EXPORT_SYMBOL_GPL vmlinux 0x22d9c565 hvc_poll -EXPORT_SYMBOL_GPL vmlinux 0x22dab7ae dev_pm_opp_attach_genpd -EXPORT_SYMBOL_GPL vmlinux 0x22e9e0a6 efivar_entry_size EXPORT_SYMBOL_GPL vmlinux 0x22ec5205 cpu_latency_qos_remove_request -EXPORT_SYMBOL_GPL vmlinux 0x22f0a131 inode_sb_list_add -EXPORT_SYMBOL_GPL vmlinux 0x22f75fc0 fwnode_create_software_node +EXPORT_SYMBOL_GPL vmlinux 0x22f31abb add_hwgenerator_randomness +EXPORT_SYMBOL_GPL vmlinux 0x22f61fd9 dma_run_dependencies +EXPORT_SYMBOL_GPL vmlinux 0x22fc9c5b cgroup_get_from_path EXPORT_SYMBOL_GPL vmlinux 0x22fd08ba cpuacct_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x23072f2b pcie_update_link_speed -EXPORT_SYMBOL_GPL vmlinux 0x232829a5 pci_epc_map_msi_irq -EXPORT_SYMBOL_GPL vmlinux 0x232a174e device_set_wakeup_capable -EXPORT_SYMBOL_GPL vmlinux 0x232d537b pci_aer_clear_nonfatal_status -EXPORT_SYMBOL_GPL vmlinux 0x233325b9 tps6586x_writes +EXPORT_SYMBOL_GPL vmlinux 0x22fdf88f iommu_capable +EXPORT_SYMBOL_GPL vmlinux 0x2314dd61 irq_domain_set_hwirq_and_chip +EXPORT_SYMBOL_GPL vmlinux 0x231af369 acpi_spi_count_resources +EXPORT_SYMBOL_GPL vmlinux 0x2330e952 sched_trace_rq_avg_dl EXPORT_SYMBOL_GPL vmlinux 0x23412816 rtc_tm_to_ktime -EXPORT_SYMBOL_GPL vmlinux 0x234a7b13 usb_find_interface -EXPORT_SYMBOL_GPL vmlinux 0x234cad12 bd_prepare_to_claim +EXPORT_SYMBOL_GPL vmlinux 0x234331ea events_hybrid_sysfs_show EXPORT_SYMBOL_GPL vmlinux 0x234cf416 devlink_fmsg_string_pair_put -EXPORT_SYMBOL_GPL vmlinux 0x235ffcf9 device_get_dma_attr -EXPORT_SYMBOL_GPL vmlinux 0x237d78f9 fsstack_copy_inode_size +EXPORT_SYMBOL_GPL vmlinux 0x2352aba3 tps65912_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x235479f2 ata_sas_tport_delete +EXPORT_SYMBOL_GPL vmlinux 0x23666940 nvmem_cell_read_variable_le_u32 +EXPORT_SYMBOL_GPL vmlinux 0x236dd0e4 trace_get_event_file +EXPORT_SYMBOL_GPL vmlinux 0x23775752 d_exchange EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node EXPORT_SYMBOL_GPL vmlinux 0x2386c0ea __SCT__tp_func_cpu_frequency -EXPORT_SYMBOL_GPL vmlinux 0x23885081 rio_add_mport_pw_handler -EXPORT_SYMBOL_GPL vmlinux 0x238a3709 handle_irq_desc -EXPORT_SYMBOL_GPL vmlinux 0x2395904e pci_epc_mem_exit EXPORT_SYMBOL_GPL vmlinux 0x2396c7f0 clk_set_parent -EXPORT_SYMBOL_GPL vmlinux 0x239a2d6f gpiochip_enable_irq -EXPORT_SYMBOL_GPL vmlinux 0x239ebd4c vfs_write -EXPORT_SYMBOL_GPL vmlinux 0x23a68216 sk_free_unlock_clone -EXPORT_SYMBOL_GPL vmlinux 0x23b40015 nfs42_ssc_register +EXPORT_SYMBOL_GPL vmlinux 0x239aad7d register_acpi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x239ab6f5 trace_array_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0x239ab93a icc_link_destroy +EXPORT_SYMBOL_GPL vmlinux 0x23a691a8 pinctrl_pm_select_idle_state +EXPORT_SYMBOL_GPL vmlinux 0x23b26249 devm_kstrdup_const EXPORT_SYMBOL_GPL vmlinux 0x23b4e0d7 clear_page_rep -EXPORT_SYMBOL_GPL vmlinux 0x23d5c2e5 pci_cfg_access_lock -EXPORT_SYMBOL_GPL vmlinux 0x23d72a96 sk_msg_free_partial -EXPORT_SYMBOL_GPL vmlinux 0x23e62a8f kernfs_find_and_get_ns +EXPORT_SYMBOL_GPL vmlinux 0x23c01349 ping_close +EXPORT_SYMBOL_GPL vmlinux 0x23e6d74e clockevents_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0x23fc3ddd serdev_device_remove +EXPORT_SYMBOL_GPL vmlinux 0x240d48d2 raw_seq_stop EXPORT_SYMBOL_GPL vmlinux 0x2410c338 x86_virt_spec_ctrl -EXPORT_SYMBOL_GPL vmlinux 0x241d9bff crypto_register_ahash EXPORT_SYMBOL_GPL vmlinux 0x2421097b mpi_const -EXPORT_SYMBOL_GPL vmlinux 0x24295421 netdev_rx_handler_register -EXPORT_SYMBOL_GPL vmlinux 0x24301e5c __phy_modify_mmd_changed -EXPORT_SYMBOL_GPL vmlinux 0x24362ab3 crypto_alloc_aead -EXPORT_SYMBOL_GPL vmlinux 0x2437dedb irq_domain_create_legacy -EXPORT_SYMBOL_GPL vmlinux 0x24401f6b __udp_gso_segment -EXPORT_SYMBOL_GPL vmlinux 0x24513171 rtc_read_alarm -EXPORT_SYMBOL_GPL vmlinux 0x24544c8c devm_pm_opp_attach_genpd +EXPORT_SYMBOL_GPL vmlinux 0x24278c6e tcp_twsk_destructor +EXPORT_SYMBOL_GPL vmlinux 0x244cbf77 devlink_reload_disable +EXPORT_SYMBOL_GPL vmlinux 0x2451be0c nf_hook_entries_delete_raw +EXPORT_SYMBOL_GPL vmlinux 0x2454ae75 xfrm_dev_state_add +EXPORT_SYMBOL_GPL vmlinux 0x24594415 regcache_cache_only EXPORT_SYMBOL_GPL vmlinux 0x2464da17 gen_pool_size -EXPORT_SYMBOL_GPL vmlinux 0x24657925 regulator_get_mode EXPORT_SYMBOL_GPL vmlinux 0x24709b2f trace_seq_putmem -EXPORT_SYMBOL_GPL vmlinux 0x247ef866 regulator_set_voltage_time +EXPORT_SYMBOL_GPL vmlinux 0x247a07bf i2c_bus_type EXPORT_SYMBOL_GPL vmlinux 0x2484e789 vbin_printf -EXPORT_SYMBOL_GPL vmlinux 0x248b674f spi_take_timestamp_pre +EXPORT_SYMBOL_GPL vmlinux 0x248bb664 pinctrl_find_gpio_range_from_pin_nolock EXPORT_SYMBOL_GPL vmlinux 0x248bc867 raw_notifier_call_chain_robust EXPORT_SYMBOL_GPL vmlinux 0x248e1473 kfree_strarray -EXPORT_SYMBOL_GPL vmlinux 0x2491029d wbc_attach_and_unlock_inode -EXPORT_SYMBOL_GPL vmlinux 0x249fd392 tcp_sendpage_locked +EXPORT_SYMBOL_GPL vmlinux 0x249da91a devm_fwnode_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x249f6ac4 nd_blk_region_provider_data EXPORT_SYMBOL_GPL vmlinux 0x24ad11db wakeup_sources_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0x24b4f8d5 fwnode_graph_get_remote_port_parent -EXPORT_SYMBOL_GPL vmlinux 0x24bba54b ptp_parse_header -EXPORT_SYMBOL_GPL vmlinux 0x24d22869 tty_ldisc_receive_buf -EXPORT_SYMBOL_GPL vmlinux 0x24d9672c security_path_chmod +EXPORT_SYMBOL_GPL vmlinux 0x24beea25 iommu_domain_free EXPORT_SYMBOL_GPL vmlinux 0x24da0093 rcu_inkernel_boot_has_ended -EXPORT_SYMBOL_GPL vmlinux 0x24e36db9 tpm_tis_remove -EXPORT_SYMBOL_GPL vmlinux 0x24e9f0a5 tpm_pm_resume +EXPORT_SYMBOL_GPL vmlinux 0x24dc297a bus_find_device +EXPORT_SYMBOL_GPL vmlinux 0x24dc647d fscrypt_prepare_symlink +EXPORT_SYMBOL_GPL vmlinux 0x24e5a2ac syscon_regmap_lookup_by_phandle EXPORT_SYMBOL_GPL vmlinux 0x24eb7e32 leds_list EXPORT_SYMBOL_GPL vmlinux 0x24f39c39 reset_control_reset EXPORT_SYMBOL_GPL vmlinux 0x24f63dcf ata_xfer_mask2mode EXPORT_SYMBOL_GPL vmlinux 0x24fc50f4 kdb_unregister -EXPORT_SYMBOL_GPL vmlinux 0x24ff14f0 da903x_update -EXPORT_SYMBOL_GPL vmlinux 0x25027e0e ata_bmdma_qc_issue -EXPORT_SYMBOL_GPL vmlinux 0x2508c12d regmap_add_irq_chip_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x251e542c __traceiter_tcp_send_reset +EXPORT_SYMBOL_GPL vmlinux 0x24fcc3c1 crypto_shash_finup +EXPORT_SYMBOL_GPL vmlinux 0x2501d032 wm8350_block_read +EXPORT_SYMBOL_GPL vmlinux 0x25177e5b tps6586x_writes +EXPORT_SYMBOL_GPL vmlinux 0x2526d90a sk_msg_free_partial +EXPORT_SYMBOL_GPL vmlinux 0x2528e6ff usb_control_msg_send EXPORT_SYMBOL_GPL vmlinux 0x25301bc6 arch_wb_cache_pmem +EXPORT_SYMBOL_GPL vmlinux 0x25345f95 led_trigger_event EXPORT_SYMBOL_GPL vmlinux 0x25379e73 clk_set_min_rate -EXPORT_SYMBOL_GPL vmlinux 0x2548b3df rio_release_inb_pwrite -EXPORT_SYMBOL_GPL vmlinux 0x25699c35 platform_add_devices -EXPORT_SYMBOL_GPL vmlinux 0x257e0ac9 pm_clk_add_clk -EXPORT_SYMBOL_GPL vmlinux 0x25840666 mmu_notifier_put -EXPORT_SYMBOL_GPL vmlinux 0x258c21ad devm_memunmap_pages -EXPORT_SYMBOL_GPL vmlinux 0x258cdc8e i2c_recover_bus +EXPORT_SYMBOL_GPL vmlinux 0x2548e36a unregister_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x255ccdb8 rcuwait_wake_up +EXPORT_SYMBOL_GPL vmlinux 0x25741c87 fuse_conn_destroy +EXPORT_SYMBOL_GPL vmlinux 0x257caecb spi_slave_abort +EXPORT_SYMBOL_GPL vmlinux 0x2583f206 ethtool_set_ethtool_phy_ops EXPORT_SYMBOL_GPL vmlinux 0x2592fc6c console_printk -EXPORT_SYMBOL_GPL vmlinux 0x25a1c7c0 fwnode_get_named_child_node -EXPORT_SYMBOL_GPL vmlinux 0x25a4dc72 request_firmware_direct -EXPORT_SYMBOL_GPL vmlinux 0x25b1aa37 devm_pinctrl_register +EXPORT_SYMBOL_GPL vmlinux 0x25a3b403 shake_page +EXPORT_SYMBOL_GPL vmlinux 0x25b9947d pm_runtime_set_memalloc_noio +EXPORT_SYMBOL_GPL vmlinux 0x25b9ce2a wakeup_source_create EXPORT_SYMBOL_GPL vmlinux 0x25bbfa9a security_kernel_load_data -EXPORT_SYMBOL_GPL vmlinux 0x25c74cc9 mptcp_subflow_request_sock_ops -EXPORT_SYMBOL_GPL vmlinux 0x25d94ffa tty_mode_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x25db28cf __xdp_build_skb_from_frame -EXPORT_SYMBOL_GPL vmlinux 0x25e3e5bf rtnl_af_register -EXPORT_SYMBOL_GPL vmlinux 0x25efeff2 sched_trace_cfs_rq_avg +EXPORT_SYMBOL_GPL vmlinux 0x25e7501c usb_phy_roothub_alloc +EXPORT_SYMBOL_GPL vmlinux 0x25ea89a5 fat_dir_empty EXPORT_SYMBOL_GPL vmlinux 0x25f02c87 xen_p2m_addr -EXPORT_SYMBOL_GPL vmlinux 0x25f6cb92 irq_domain_pop_irq -EXPORT_SYMBOL_GPL vmlinux 0x26008202 perf_event_create_kernel_counter -EXPORT_SYMBOL_GPL vmlinux 0x261600ef serdev_device_add -EXPORT_SYMBOL_GPL vmlinux 0x26210ed5 bpf_trace_run3 -EXPORT_SYMBOL_GPL vmlinux 0x2622ac12 power_supply_class -EXPORT_SYMBOL_GPL vmlinux 0x2628d3fb crypto_unregister_rngs +EXPORT_SYMBOL_GPL vmlinux 0x26076502 devm_pm_opp_set_supported_hw EXPORT_SYMBOL_GPL vmlinux 0x262a7063 xen_start_info -EXPORT_SYMBOL_GPL vmlinux 0x263093d0 device_show_int -EXPORT_SYMBOL_GPL vmlinux 0x2635103b to_nd_blk_region +EXPORT_SYMBOL_GPL vmlinux 0x263bf036 fib6_get_table EXPORT_SYMBOL_GPL vmlinux 0x263f039e xas_nomem -EXPORT_SYMBOL_GPL vmlinux 0x264534f1 dev_pm_genpd_set_performance_state +EXPORT_SYMBOL_GPL vmlinux 0x264b7664 pci_add_dynid EXPORT_SYMBOL_GPL vmlinux 0x26520970 vm_memory_committed EXPORT_SYMBOL_GPL vmlinux 0x265b6e29 hyperv_flush_guest_mapping_range EXPORT_SYMBOL_GPL vmlinux 0x265bbef9 kexec_crash_loaded +EXPORT_SYMBOL_GPL vmlinux 0x26611793 vfio_pci_core_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x26688819 regmap_check_range_table EXPORT_SYMBOL_GPL vmlinux 0x266a4b08 tasklet_unlock -EXPORT_SYMBOL_GPL vmlinux 0x266b20fb crypto_spawn_tfm -EXPORT_SYMBOL_GPL vmlinux 0x266bb5b0 __vring_new_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0x26741a0a pm_wakeup_ws_event +EXPORT_SYMBOL_GPL vmlinux 0x266ab56c xfrm_audit_policy_add +EXPORT_SYMBOL_GPL vmlinux 0x266c4fc0 __skb_get_hash_symmetric +EXPORT_SYMBOL_GPL vmlinux 0x26736419 power_supply_register EXPORT_SYMBOL_GPL vmlinux 0x267df662 smp_call_on_cpu -EXPORT_SYMBOL_GPL vmlinux 0x268d2061 i2c_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x26a51ec2 bpf_sk_storage_diag_put +EXPORT_SYMBOL_GPL vmlinux 0x26808501 virtqueue_get_buf +EXPORT_SYMBOL_GPL vmlinux 0x268b9477 dm_set_target_max_io_len +EXPORT_SYMBOL_GPL vmlinux 0x269750b2 cpuidle_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x26975b46 crypto_unregister_scomp +EXPORT_SYMBOL_GPL vmlinux 0x269b0c58 fib_nl_newrule +EXPORT_SYMBOL_GPL vmlinux 0x26a80487 debugfs_lookup EXPORT_SYMBOL_GPL vmlinux 0x26a93eb2 verify_pkcs7_signature -EXPORT_SYMBOL_GPL vmlinux 0x26a98ee9 is_dock_device EXPORT_SYMBOL_GPL vmlinux 0x26ab4755 put_old_itimerspec32 -EXPORT_SYMBOL_GPL vmlinux 0x26c19409 aead_exit_geniv +EXPORT_SYMBOL_GPL vmlinux 0x26bb5726 usb_deregister_dev +EXPORT_SYMBOL_GPL vmlinux 0x26bd8a18 tpm1_getcap EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense +EXPORT_SYMBOL_GPL vmlinux 0x26ccb0b1 pcie_aspm_capable EXPORT_SYMBOL_GPL vmlinux 0x26cda94f e820__mapped_raw_any -EXPORT_SYMBOL_GPL vmlinux 0x26cdf77e dma_buf_dynamic_attach -EXPORT_SYMBOL_GPL vmlinux 0x26cff952 crypto_register_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x26d31c0b dev_pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x26d8f5bc debugfs_create_size_t +EXPORT_SYMBOL_GPL vmlinux 0x26df5b0a clk_register_divider_table EXPORT_SYMBOL_GPL vmlinux 0x26ed2186 register_vmap_purge_notifier -EXPORT_SYMBOL_GPL vmlinux 0x26f80776 pci_find_next_ht_capability -EXPORT_SYMBOL_GPL vmlinux 0x26faef22 tpm2_get_tpm_pt +EXPORT_SYMBOL_GPL vmlinux 0x26f7ec9f blk_mq_flush_busy_ctxs +EXPORT_SYMBOL_GPL vmlinux 0x26fc1325 crypto_register_rng EXPORT_SYMBOL_GPL vmlinux 0x26fd13e7 smca_banks -EXPORT_SYMBOL_GPL vmlinux 0x26ff20b5 sata_scr_write -EXPORT_SYMBOL_GPL vmlinux 0x2705ea80 ata_scsi_port_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x271848a1 dma_need_sync -EXPORT_SYMBOL_GPL vmlinux 0x272bb54e ata_ehi_push_desc -EXPORT_SYMBOL_GPL vmlinux 0x2733ea22 iommu_map +EXPORT_SYMBOL_GPL vmlinux 0x27101ea6 xen_remap_vma_range EXPORT_SYMBOL_GPL vmlinux 0x273aab74 xen_have_vector_callback EXPORT_SYMBOL_GPL vmlinux 0x273aff5c __SCT__tp_func_block_bio_remap -EXPORT_SYMBOL_GPL vmlinux 0x273f0356 inet6_hash_connect -EXPORT_SYMBOL_GPL vmlinux 0x274dc03b acpi_register_gsi +EXPORT_SYMBOL_GPL vmlinux 0x27428909 rio_dma_prep_xfer EXPORT_SYMBOL_GPL vmlinux 0x274dd1a3 sg_free_table_chained -EXPORT_SYMBOL_GPL vmlinux 0x27540565 pci_enable_sriov -EXPORT_SYMBOL_GPL vmlinux 0x27723bdb devm_namespace_disable EXPORT_SYMBOL_GPL vmlinux 0x2773c485 __wake_up_locked -EXPORT_SYMBOL_GPL vmlinux 0x277697ab serdev_device_get_tiocm -EXPORT_SYMBOL_GPL vmlinux 0x279764b7 __devm_of_phy_provider_register -EXPORT_SYMBOL_GPL vmlinux 0x279f74d3 n_tty_inherit_ops -EXPORT_SYMBOL_GPL vmlinux 0x27a7c24c usb_urb_ep_type_check -EXPORT_SYMBOL_GPL vmlinux 0x27b1b787 shash_ahash_digest -EXPORT_SYMBOL_GPL vmlinux 0x27cbfacc device_wakeup_disable -EXPORT_SYMBOL_GPL vmlinux 0x27cf4c89 fw_devlink_purge_absent_suppliers -EXPORT_SYMBOL_GPL vmlinux 0x27de1dc0 mmc_get_ext_csd -EXPORT_SYMBOL_GPL vmlinux 0x27df7401 usb_hub_claim_port -EXPORT_SYMBOL_GPL vmlinux 0x27e3e4cf trace_array_destroy -EXPORT_SYMBOL_GPL vmlinux 0x27e7c7a2 __devm_clk_hw_register_mux -EXPORT_SYMBOL_GPL vmlinux 0x27f01df9 synth_event_trace_end -EXPORT_SYMBOL_GPL vmlinux 0x27f42413 gpiod_get_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x277de6b8 bsg_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0x2798112a spi_controller_dma_unmap_mem_op_data +EXPORT_SYMBOL_GPL vmlinux 0x279d50f3 pci_find_vsec_capability +EXPORT_SYMBOL_GPL vmlinux 0x279fa40e regulator_register +EXPORT_SYMBOL_GPL vmlinux 0x27ba3c5d edac_device_free_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0x27bff48f sb800_prefetch +EXPORT_SYMBOL_GPL vmlinux 0x27c29335 acpi_storage_d3 +EXPORT_SYMBOL_GPL vmlinux 0x27d0b6bd ata_port_pbar_desc EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter +EXPORT_SYMBOL_GPL vmlinux 0x27f572ae fwnode_property_present EXPORT_SYMBOL_GPL vmlinux 0x27fa66e1 nr_free_buffer_pages -EXPORT_SYMBOL_GPL vmlinux 0x28066918 __traceiter_sched_util_est_se_tp -EXPORT_SYMBOL_GPL vmlinux 0x280797f9 fsnotify_alloc_group -EXPORT_SYMBOL_GPL vmlinux 0x2808b8e1 rio_mport_read_config_8 -EXPORT_SYMBOL_GPL vmlinux 0x28156c82 access_process_vm EXPORT_SYMBOL_GPL vmlinux 0x2817f7fd cppc_get_desired_perf -EXPORT_SYMBOL_GPL vmlinux 0x2818b970 __tracepoint_cpu_idle -EXPORT_SYMBOL_GPL vmlinux 0x282c7278 gnttab_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x282307d1 xdp_return_frame EXPORT_SYMBOL_GPL vmlinux 0x282cdabc usb_led_activity -EXPORT_SYMBOL_GPL vmlinux 0x2846f2d7 pci_load_saved_state -EXPORT_SYMBOL_GPL vmlinux 0x284bc30d sata_link_debounce -EXPORT_SYMBOL_GPL vmlinux 0x284db5a4 devm_gpiod_put_array -EXPORT_SYMBOL_GPL vmlinux 0x285a6874 gpiod_get_index_optional -EXPORT_SYMBOL_GPL vmlinux 0x2861fba9 mddev_suspend -EXPORT_SYMBOL_GPL vmlinux 0x2862338a udp_bpf_update_proto +EXPORT_SYMBOL_GPL vmlinux 0x283818a3 __SCK__tp_func_devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0x28402e69 dm_report_zones +EXPORT_SYMBOL_GPL vmlinux 0x28417f1e unregister_acpi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x2855d6e3 cookie_tcp_reqsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x285b7465 uhci_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0x285da031 iommu_sva_unbind_gpasid EXPORT_SYMBOL_GPL vmlinux 0x2864abc9 klist_node_attached EXPORT_SYMBOL_GPL vmlinux 0x286cc647 async_synchronize_cookie_domain -EXPORT_SYMBOL_GPL vmlinux 0x28773dd3 sfp_bus_find_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x287a743e bpf_trace_run9 +EXPORT_SYMBOL_GPL vmlinux 0x286f6b45 iomap_ioend_try_merge +EXPORT_SYMBOL_GPL vmlinux 0x287c2b17 dmaengine_unmap_put EXPORT_SYMBOL_GPL vmlinux 0x2882d40e usb_role_switch_unregister -EXPORT_SYMBOL_GPL vmlinux 0x28a885d0 pm_generic_freeze_noirq +EXPORT_SYMBOL_GPL vmlinux 0x289191e4 acpi_match_device EXPORT_SYMBOL_GPL vmlinux 0x28aa6a67 call_rcu EXPORT_SYMBOL_GPL vmlinux 0x28ab4fb9 pinctrl_gpio_free +EXPORT_SYMBOL_GPL vmlinux 0x28ad9204 balloon_page_enqueue +EXPORT_SYMBOL_GPL vmlinux 0x28ae0012 perf_event_enable EXPORT_SYMBOL_GPL vmlinux 0x28afbb08 cpu_latency_qos_add_request -EXPORT_SYMBOL_GPL vmlinux 0x28b1e5de cpufreq_driver_fast_switch EXPORT_SYMBOL_GPL vmlinux 0x28be0cef misc_cg_res_total_usage -EXPORT_SYMBOL_GPL vmlinux 0x28bf6cf2 devm_regmap_field_bulk_alloc -EXPORT_SYMBOL_GPL vmlinux 0x28d0194a crypto_skcipher_setkey -EXPORT_SYMBOL_GPL vmlinux 0x28db82ae dmaengine_desc_get_metadata_ptr -EXPORT_SYMBOL_GPL vmlinux 0x28df34f3 blk_queue_flag_test_and_set +EXPORT_SYMBOL_GPL vmlinux 0x28c85f79 blk_execute_rq_nowait +EXPORT_SYMBOL_GPL vmlinux 0x28d85f55 usb_clear_halt EXPORT_SYMBOL_GPL vmlinux 0x28e64c64 xen_has_pv_and_legacy_disk_devices -EXPORT_SYMBOL_GPL vmlinux 0x28f02b33 tpm_chip_unregister -EXPORT_SYMBOL_GPL vmlinux 0x28faf055 devlink_port_health_reporter_create -EXPORT_SYMBOL_GPL vmlinux 0x28fb83bd handle_simple_irq -EXPORT_SYMBOL_GPL vmlinux 0x28fcebe6 devm_gpiod_get_array_optional -EXPORT_SYMBOL_GPL vmlinux 0x2905c984 __pm_runtime_use_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0x29127212 device_link_del -EXPORT_SYMBOL_GPL vmlinux 0x29164369 tps6586x_clr_bits -EXPORT_SYMBOL_GPL vmlinux 0x29176c23 usb_phy_get_charger_current +EXPORT_SYMBOL_GPL vmlinux 0x28f160ed ip6_route_lookup +EXPORT_SYMBOL_GPL vmlinux 0x2903ba7c phy_create_lookup +EXPORT_SYMBOL_GPL vmlinux 0x29101110 nexthop_select_path +EXPORT_SYMBOL_GPL vmlinux 0x2913122b tpm_pcr_extend EXPORT_SYMBOL_GPL vmlinux 0x291876f3 mpi_ec_get_affine -EXPORT_SYMBOL_GPL vmlinux 0x291bc6db usb_create_hcd -EXPORT_SYMBOL_GPL vmlinux 0x2928bdad usb_get_dev EXPORT_SYMBOL_GPL vmlinux 0x29366b61 register_ftrace_direct -EXPORT_SYMBOL_GPL vmlinux 0x2944ba48 device_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x2937ff5e inet6_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x294aaf92 transport_class_register EXPORT_SYMBOL_GPL vmlinux 0x2951a872 trace_clock_local -EXPORT_SYMBOL_GPL vmlinux 0x29551bd1 regulator_bulk_disable -EXPORT_SYMBOL_GPL vmlinux 0x295d989e cpufreq_cpu_get -EXPORT_SYMBOL_GPL vmlinux 0x2960b7fb dst_cache_set_ip4 -EXPORT_SYMBOL_GPL vmlinux 0x2971ba7c ohci_init_driver -EXPORT_SYMBOL_GPL vmlinux 0x29865632 regmap_get_raw_write_max -EXPORT_SYMBOL_GPL vmlinux 0x2987db3c usb_kill_urb -EXPORT_SYMBOL_GPL vmlinux 0x298ba3e8 pci_walk_bus -EXPORT_SYMBOL_GPL vmlinux 0x2994e939 transport_destroy_device -EXPORT_SYMBOL_GPL vmlinux 0x2997cb78 dev_pm_clear_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0x2997cf1b iomap_seek_data -EXPORT_SYMBOL_GPL vmlinux 0x29a73394 usb_deregister -EXPORT_SYMBOL_GPL vmlinux 0x29b83fb7 clk_hw_get_parent -EXPORT_SYMBOL_GPL vmlinux 0x29bf9871 phy_set_speed -EXPORT_SYMBOL_GPL vmlinux 0x29bfce4f dw_pcie_upconfig_setup -EXPORT_SYMBOL_GPL vmlinux 0x29c9e454 debugfs_create_x16 -EXPORT_SYMBOL_GPL vmlinux 0x29d98098 __inode_attach_wb -EXPORT_SYMBOL_GPL vmlinux 0x29e3f16a devlink_sb_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2958a936 receive_fd +EXPORT_SYMBOL_GPL vmlinux 0x29606af5 tcp_get_info +EXPORT_SYMBOL_GPL vmlinux 0x29650f3c mptcp_token_get_sock +EXPORT_SYMBOL_GPL vmlinux 0x29785fad fsverity_ioctl_read_metadata +EXPORT_SYMBOL_GPL vmlinux 0x297a3140 synth_event_add_next_val +EXPORT_SYMBOL_GPL vmlinux 0x29af80d1 devm_hwspin_lock_free +EXPORT_SYMBOL_GPL vmlinux 0x29c44a5e restore_online_page_callback EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async -EXPORT_SYMBOL_GPL vmlinux 0x29f184c2 gpiod_export -EXPORT_SYMBOL_GPL vmlinux 0x29f1a5c7 i2c_acpi_new_device -EXPORT_SYMBOL_GPL vmlinux 0x29f23517 crypto_shash_update -EXPORT_SYMBOL_GPL vmlinux 0x29f4e9c8 __traceiter_block_split -EXPORT_SYMBOL_GPL vmlinux 0x2a0aa5b4 smp_ops -EXPORT_SYMBOL_GPL vmlinux 0x2a0e8737 md_start -EXPORT_SYMBOL_GPL vmlinux 0x2a10a4d2 __tracepoint_neigh_event_send_dead -EXPORT_SYMBOL_GPL vmlinux 0x2a13a9de usb_enable_ltm -EXPORT_SYMBOL_GPL vmlinux 0x2a1c63ae iommu_setup_dma_ops +EXPORT_SYMBOL_GPL vmlinux 0x2a088c43 rt_mutex_lock_interruptible +EXPORT_SYMBOL_GPL vmlinux 0x2a227a1d strp_data_ready +EXPORT_SYMBOL_GPL vmlinux 0x2a254fd7 led_trigger_blink_oneshot EXPORT_SYMBOL_GPL vmlinux 0x2a2aea17 clk_fixed_rate_ops -EXPORT_SYMBOL_GPL vmlinux 0x2a3308a6 gpiod_put_array -EXPORT_SYMBOL_GPL vmlinux 0x2a424e81 simple_attr_write +EXPORT_SYMBOL_GPL vmlinux 0x2a2fce72 devm_pm_clk_create +EXPORT_SYMBOL_GPL vmlinux 0x2a2fd9ea dev_pm_opp_get_max_volt_latency +EXPORT_SYMBOL_GPL vmlinux 0x2a43caa1 devfreq_get_devfreq_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x2a503696 strp_process +EXPORT_SYMBOL_GPL vmlinux 0x2a5caee4 dev_pm_qos_flags +EXPORT_SYMBOL_GPL vmlinux 0x2a5d3d56 pci_enable_sriov EXPORT_SYMBOL_GPL vmlinux 0x2a5ea9ef rhashtable_destroy EXPORT_SYMBOL_GPL vmlinux 0x2a62cb3a ring_buffer_overrun_cpu EXPORT_SYMBOL_GPL vmlinux 0x2a678a13 __suspend_report_result -EXPORT_SYMBOL_GPL vmlinux 0x2a7c7b93 wm8350_device_init -EXPORT_SYMBOL_GPL vmlinux 0x2a82ec23 devlink_param_publish +EXPORT_SYMBOL_GPL vmlinux 0x2a6d1787 tpm_try_get_ops +EXPORT_SYMBOL_GPL vmlinux 0x2a7fa872 clk_hw_rate_is_protected EXPORT_SYMBOL_GPL vmlinux 0x2a8af55a acpi_ec_add_query_handler -EXPORT_SYMBOL_GPL vmlinux 0x2a92a5e6 nvdimm_has_flush -EXPORT_SYMBOL_GPL vmlinux 0x2a939ed0 platform_device_register_full -EXPORT_SYMBOL_GPL vmlinux 0x2a99c183 nvmem_cell_get -EXPORT_SYMBOL_GPL vmlinux 0x2aa45676 inet_hash -EXPORT_SYMBOL_GPL vmlinux 0x2aabb2d2 pci_disable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0x2a9f1899 iommu_sva_get_pasid +EXPORT_SYMBOL_GPL vmlinux 0x2aa35d8a xhci_check_bandwidth +EXPORT_SYMBOL_GPL vmlinux 0x2aa98184 pci_epf_create EXPORT_SYMBOL_GPL vmlinux 0x2aadad1a efi_capsule_update -EXPORT_SYMBOL_GPL vmlinux 0x2af64d21 cpufreq_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x2af685ab ata_sff_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0x2aadfbb0 ip_route_output_tunnel +EXPORT_SYMBOL_GPL vmlinux 0x2aaecfa9 linear_hugepage_index +EXPORT_SYMBOL_GPL vmlinux 0x2aaf4da7 rio_route_clr_table +EXPORT_SYMBOL_GPL vmlinux 0x2ad3969f bpf_trace_run8 +EXPORT_SYMBOL_GPL vmlinux 0x2ad3c22c fwnode_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x2ad45612 xhci_drop_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x2ae0c84a gnttab_pages_clear_private +EXPORT_SYMBOL_GPL vmlinux 0x2ae7d45e regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x2aecb6a1 syscon_regmap_lookup_by_phandle_args +EXPORT_SYMBOL_GPL vmlinux 0x2aee2f9e perf_event_refresh +EXPORT_SYMBOL_GPL vmlinux 0x2afb4f3c __tracepoint_sched_util_est_cfs_tp EXPORT_SYMBOL_GPL vmlinux 0x2aff68f9 perf_guest_get_msrs -EXPORT_SYMBOL_GPL vmlinux 0x2aff8fb2 debugfs_create_size_t -EXPORT_SYMBOL_GPL vmlinux 0x2b033730 xdp_rxq_info_is_reg +EXPORT_SYMBOL_GPL vmlinux 0x2b0240be dma_buf_dynamic_attach +EXPORT_SYMBOL_GPL vmlinux 0x2b051709 efivars_register EXPORT_SYMBOL_GPL vmlinux 0x2b0765ca xen_store_interface -EXPORT_SYMBOL_GPL vmlinux 0x2b0cb8c6 debugfs_write_file_bool +EXPORT_SYMBOL_GPL vmlinux 0x2b0ef7bd crypto_stats_akcipher_decrypt EXPORT_SYMBOL_GPL vmlinux 0x2b0fe000 gnttab_cancel_free_callback -EXPORT_SYMBOL_GPL vmlinux 0x2b18dbc2 lp8788_update_bits -EXPORT_SYMBOL_GPL vmlinux 0x2b33bad0 of_css -EXPORT_SYMBOL_GPL vmlinux 0x2b3815e0 __sock_recv_wifi_status +EXPORT_SYMBOL_GPL vmlinux 0x2b343719 kstrdup_quotable_file EXPORT_SYMBOL_GPL vmlinux 0x2b3acc3b __SCT__tp_func_remove_device_from_group -EXPORT_SYMBOL_GPL vmlinux 0x2b3aeda5 netlink_has_listeners +EXPORT_SYMBOL_GPL vmlinux 0x2b41ae5e rdev_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x2b44b0dd pm_clk_add_clk EXPORT_SYMBOL_GPL vmlinux 0x2b4509dd devlink_health_reporter_state_update -EXPORT_SYMBOL_GPL vmlinux 0x2b4e08ac devm_device_remove_groups -EXPORT_SYMBOL_GPL vmlinux 0x2b5b2cdc vma_kernel_pagesize +EXPORT_SYMBOL_GPL vmlinux 0x2b5303df xenbus_switch_state EXPORT_SYMBOL_GPL vmlinux 0x2b6150fb power_supply_temp2resist_simple EXPORT_SYMBOL_GPL vmlinux 0x2b67b6b7 mds_idle_clear EXPORT_SYMBOL_GPL vmlinux 0x2b6d960d synth_event_cmd_init -EXPORT_SYMBOL_GPL vmlinux 0x2b6dfbc8 tps6586x_write +EXPORT_SYMBOL_GPL vmlinux 0x2b702a83 xfrm_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0x2b7063d6 gpiochip_irqchip_add_domain +EXPORT_SYMBOL_GPL vmlinux 0x2b7f64b0 extcon_register_notifier_all EXPORT_SYMBOL_GPL vmlinux 0x2b7fc385 hv_init_clocksource -EXPORT_SYMBOL_GPL vmlinux 0x2b804fe0 watchdog_init_timeout -EXPORT_SYMBOL_GPL vmlinux 0x2b89db2b devlink_param_unpublish -EXPORT_SYMBOL_GPL vmlinux 0x2b8fa488 xhci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x2b8de6dd xen_unregister_device_domain_owner +EXPORT_SYMBOL_GPL vmlinux 0x2b8eb431 xhci_dbg_trace EXPORT_SYMBOL_GPL vmlinux 0x2b952517 clk_has_parent EXPORT_SYMBOL_GPL vmlinux 0x2b9997fb atomic_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0x2ba7e6cc crypto_shash_digest -EXPORT_SYMBOL_GPL vmlinux 0x2bab5497 class_dev_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0x2bbe4f0d sock_diag_save_cookie -EXPORT_SYMBOL_GPL vmlinux 0x2be37c7e unregister_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x2be56483 mmu_interval_read_begin -EXPORT_SYMBOL_GPL vmlinux 0x2bf1e37b usb_get_dr_mode -EXPORT_SYMBOL_GPL vmlinux 0x2bf213c4 alloc_dax_region -EXPORT_SYMBOL_GPL vmlinux 0x2bf3a085 gpiod_toggle_active_low -EXPORT_SYMBOL_GPL vmlinux 0x2c036eb0 pinctrl_select_state -EXPORT_SYMBOL_GPL vmlinux 0x2c1fb34b fuse_abort_conn +EXPORT_SYMBOL_GPL vmlinux 0x2baab996 get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0x2bbf0e4a input_device_enabled +EXPORT_SYMBOL_GPL vmlinux 0x2bc1eeb2 crypto_alloc_kpp +EXPORT_SYMBOL_GPL vmlinux 0x2bc5fbb3 regulator_set_voltage_rdev +EXPORT_SYMBOL_GPL vmlinux 0x2bd46e8d __bio_crypt_clone +EXPORT_SYMBOL_GPL vmlinux 0x2bd4839b dma_buf_unpin +EXPORT_SYMBOL_GPL vmlinux 0x2bd6ee96 sock_diag_unregister_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0x2bdd90ee bus_get_kset +EXPORT_SYMBOL_GPL vmlinux 0x2be05e8a platform_get_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0x2be334d8 phy_validate +EXPORT_SYMBOL_GPL vmlinux 0x2c0ee98d irq_domain_free_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x2c164fd4 wm831x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x2c16da15 gnttab_page_cache_shrink EXPORT_SYMBOL_GPL vmlinux 0x2c208607 power_supply_is_system_supplied -EXPORT_SYMBOL_GPL vmlinux 0x2c21ed5f devm_of_led_get -EXPORT_SYMBOL_GPL vmlinux 0x2c2ab82e clockevents_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0x2c2540bb spi_controller_dma_map_mem_op_data EXPORT_SYMBOL_GPL vmlinux 0x2c2f5a09 x86_family EXPORT_SYMBOL_GPL vmlinux 0x2c3054f9 net_inc_ingress_queue -EXPORT_SYMBOL_GPL vmlinux 0x2c3a462a __SCK__tp_func_neigh_cleanup_and_release -EXPORT_SYMBOL_GPL vmlinux 0x2c483559 serial8250_rx_dma_flush -EXPORT_SYMBOL_GPL vmlinux 0x2c4fccfc fib_rules_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2c3ed84f pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2c50113b pci_find_host_bridge +EXPORT_SYMBOL_GPL vmlinux 0x2c5048fa spi_sync_locked EXPORT_SYMBOL_GPL vmlinux 0x2c61bb09 uv_bios_get_pci_topology EXPORT_SYMBOL_GPL vmlinux 0x2c635527 arch_invalidate_pmem EXPORT_SYMBOL_GPL vmlinux 0x2c66ac85 devlink_info_serial_number_put -EXPORT_SYMBOL_GPL vmlinux 0x2c77a37b xfrm_register_translator EXPORT_SYMBOL_GPL vmlinux 0x2c7c79ce srcu_torture_stats_print EXPORT_SYMBOL_GPL vmlinux 0x2c7db649 irq_dispose_mapping EXPORT_SYMBOL_GPL vmlinux 0x2c8dd6b8 edac_mem_types -EXPORT_SYMBOL_GPL vmlinux 0x2c91ed33 fib_rules_register -EXPORT_SYMBOL_GPL vmlinux 0x2c980d1a xenbus_register_driver_common -EXPORT_SYMBOL_GPL vmlinux 0x2ca00640 ima_file_check +EXPORT_SYMBOL_GPL vmlinux 0x2c9ab153 dev_get_regmap EXPORT_SYMBOL_GPL vmlinux 0x2ca41024 ioasid_get -EXPORT_SYMBOL_GPL vmlinux 0x2cc34eca genphy_c45_read_lpa -EXPORT_SYMBOL_GPL vmlinux 0x2cc6d3b0 fscrypt_symlink_getattr -EXPORT_SYMBOL_GPL vmlinux 0x2cc760ab fixup_user_fault -EXPORT_SYMBOL_GPL vmlinux 0x2cdc59a5 usb_hc_died -EXPORT_SYMBOL_GPL vmlinux 0x2ce860d9 gpiod_set_value +EXPORT_SYMBOL_GPL vmlinux 0x2ca6c6a8 gnttab_foreach_grant_in_range +EXPORT_SYMBOL_GPL vmlinux 0x2caa2fae ata_pci_remove_one +EXPORT_SYMBOL_GPL vmlinux 0x2cb25be7 thermal_zone_device_update +EXPORT_SYMBOL_GPL vmlinux 0x2ccfea79 trace_array_destroy EXPORT_SYMBOL_GPL vmlinux 0x2cea32ee unregister_oldmem_pfn_is_ram -EXPORT_SYMBOL_GPL vmlinux 0x2cf12e58 power_supply_put +EXPORT_SYMBOL_GPL vmlinux 0x2cf875b2 devm_kasprintf EXPORT_SYMBOL_GPL vmlinux 0x2cfbb2b5 __SCT__tp_func_pelt_dl_tp -EXPORT_SYMBOL_GPL vmlinux 0x2cffdf13 xenbus_dev_remove +EXPORT_SYMBOL_GPL vmlinux 0x2cfd93a7 ncsi_vlan_rx_kill_vid EXPORT_SYMBOL_GPL vmlinux 0x2d0684a9 hrtimer_init -EXPORT_SYMBOL_GPL vmlinux 0x2d14092e wm831x_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x2d098683 icc_node_add EXPORT_SYMBOL_GPL vmlinux 0x2d1b02d2 usermodehelper_read_lock_wait -EXPORT_SYMBOL_GPL vmlinux 0x2d1cb838 account_locked_vm -EXPORT_SYMBOL_GPL vmlinux 0x2d2c8d3a i2c_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x2d2aae88 device_bind_driver EXPORT_SYMBOL_GPL vmlinux 0x2d2dd36f kobj_ns_grab_current -EXPORT_SYMBOL_GPL vmlinux 0x2d333e8f fat_detach +EXPORT_SYMBOL_GPL vmlinux 0x2d2fe1e4 pm_generic_resume_noirq +EXPORT_SYMBOL_GPL vmlinux 0x2d315866 power_supply_get_property EXPORT_SYMBOL_GPL vmlinux 0x2d393f48 intel_soc_pmic_exec_mipi_pmic_seq_element EXPORT_SYMBOL_GPL vmlinux 0x2d41e6f5 __trace_puts EXPORT_SYMBOL_GPL vmlinux 0x2d44be3b __SCT__tp_func_br_fdb_add -EXPORT_SYMBOL_GPL vmlinux 0x2d4b37f7 pm_clk_remove -EXPORT_SYMBOL_GPL vmlinux 0x2d583081 rio_mport_write_config_8 -EXPORT_SYMBOL_GPL vmlinux 0x2d5bf205 extcon_set_property +EXPORT_SYMBOL_GPL vmlinux 0x2d4dc892 __devres_alloc_node +EXPORT_SYMBOL_GPL vmlinux 0x2d5e4e40 fib4_rule_default EXPORT_SYMBOL_GPL vmlinux 0x2d5f69b3 rcu_read_unlock_strict +EXPORT_SYMBOL_GPL vmlinux 0x2d5ffec0 devm_pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0x2d658b66 dw_pcie_ep_linkup +EXPORT_SYMBOL_GPL vmlinux 0x2d65fe42 devm_extcon_dev_allocate EXPORT_SYMBOL_GPL vmlinux 0x2d6aa0f0 arch_apei_enable_cmcff -EXPORT_SYMBOL_GPL vmlinux 0x2d72c563 regulator_force_disable -EXPORT_SYMBOL_GPL vmlinux 0x2d779475 acpi_get_pci_dev -EXPORT_SYMBOL_GPL vmlinux 0x2d77d980 phy_create -EXPORT_SYMBOL_GPL vmlinux 0x2d895b2f sdio_get_host_pm_caps EXPORT_SYMBOL_GPL vmlinux 0x2d89b1ad __SCT__tp_func_attach_device_to_domain -EXPORT_SYMBOL_GPL vmlinux 0x2d8c77b8 clockevent_delta2ns -EXPORT_SYMBOL_GPL vmlinux 0x2db14a42 genphy_c45_loopback -EXPORT_SYMBOL_GPL vmlinux 0x2de9844f ata_sff_tf_load -EXPORT_SYMBOL_GPL vmlinux 0x2df9e55e sched_set_fifo +EXPORT_SYMBOL_GPL vmlinux 0x2dadc3f5 md_account_bio +EXPORT_SYMBOL_GPL vmlinux 0x2db26164 gpiochip_lock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0x2dc7cd1e iomap_file_buffered_write +EXPORT_SYMBOL_GPL vmlinux 0x2e010082 amd_iommu_is_attach_deferred EXPORT_SYMBOL_GPL vmlinux 0x2e028ae6 rcutorture_get_gp_data EXPORT_SYMBOL_GPL vmlinux 0x2e08226d badrange_add -EXPORT_SYMBOL_GPL vmlinux 0x2e153f48 cpufreq_unregister_governor +EXPORT_SYMBOL_GPL vmlinux 0x2e0d1131 __SCK__tp_func_mc_event +EXPORT_SYMBOL_GPL vmlinux 0x2e176356 led_trigger_set_default EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace -EXPORT_SYMBOL_GPL vmlinux 0x2e238daf badblocks_clear -EXPORT_SYMBOL_GPL vmlinux 0x2e2836b5 power_supply_get_battery_info EXPORT_SYMBOL_GPL vmlinux 0x2e2df7f4 irq_remapping_cap -EXPORT_SYMBOL_GPL vmlinux 0x2e4f7237 phy_modify_mmd_changed -EXPORT_SYMBOL_GPL vmlinux 0x2e50ef38 xen_xlate_unmap_gfn_range +EXPORT_SYMBOL_GPL vmlinux 0x2e35922f tty_ldisc_flush +EXPORT_SYMBOL_GPL vmlinux 0x2e365ffb power_supply_set_property EXPORT_SYMBOL_GPL vmlinux 0x2e670427 sbitmap_queue_wake_all EXPORT_SYMBOL_GPL vmlinux 0x2e678211 xas_find_conflict -EXPORT_SYMBOL_GPL vmlinux 0x2e681ccf usb_hcd_platform_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x2e6d9b3b usb_disable_lpm -EXPORT_SYMBOL_GPL vmlinux 0x2e737c3e perf_aux_output_end -EXPORT_SYMBOL_GPL vmlinux 0x2e76106f iommu_aux_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x2e70de82 debugfs_create_file_unsafe EXPORT_SYMBOL_GPL vmlinux 0x2e7a17d4 vmap_pfn -EXPORT_SYMBOL_GPL vmlinux 0x2e8abfde input_ff_destroy -EXPORT_SYMBOL_GPL vmlinux 0x2e93a7c1 usb_mon_register -EXPORT_SYMBOL_GPL vmlinux 0x2ebac76f gpiochip_reqres_irq EXPORT_SYMBOL_GPL vmlinux 0x2ebb19fd execute_in_process_context -EXPORT_SYMBOL_GPL vmlinux 0x2ebb5345 devm_clk_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0x2ebbded2 usb_add_phy EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable -EXPORT_SYMBOL_GPL vmlinux 0x2ec7ed0e devm_kmemdup -EXPORT_SYMBOL_GPL vmlinux 0x2ed793af class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2eccc1b1 __sock_recv_ts_and_drops +EXPORT_SYMBOL_GPL vmlinux 0x2ed2472f devlink_net +EXPORT_SYMBOL_GPL vmlinux 0x2ed7f15d netdev_rx_handler_unregister EXPORT_SYMBOL_GPL vmlinux 0x2eda4807 is_uv_hubbed +EXPORT_SYMBOL_GPL vmlinux 0x2ee1e125 vfio_pci_core_mmap EXPORT_SYMBOL_GPL vmlinux 0x2ee7c52b btree_visitor -EXPORT_SYMBOL_GPL vmlinux 0x2ef9a85f usb_role_switch_register -EXPORT_SYMBOL_GPL vmlinux 0x2f0602e5 devlink_params_register +EXPORT_SYMBOL_GPL vmlinux 0x2f038516 crypto_mod_get EXPORT_SYMBOL_GPL vmlinux 0x2f0d9053 usb_otg_state_string -EXPORT_SYMBOL_GPL vmlinux 0x2f12322b dw_pcie_own_conf_map_bus -EXPORT_SYMBOL_GPL vmlinux 0x2f165cd0 mptcp_subflow_init_cookie_req -EXPORT_SYMBOL_GPL vmlinux 0x2f17797f pm_clk_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0x2f1c28a8 device_add_properties -EXPORT_SYMBOL_GPL vmlinux 0x2f225389 pinctrl_add_gpio_ranges -EXPORT_SYMBOL_GPL vmlinux 0x2f2b4857 wm831x_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x2f1ec1e4 skb_complete_wifi_ack EXPORT_SYMBOL_GPL vmlinux 0x2f2c95c4 flush_work -EXPORT_SYMBOL_GPL vmlinux 0x2f3042a1 rio_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x2f3c7c62 efivar_entry_remove +EXPORT_SYMBOL_GPL vmlinux 0x2f34a8a9 __clocksource_update_freq_scale +EXPORT_SYMBOL_GPL vmlinux 0x2f36a680 kernfs_get +EXPORT_SYMBOL_GPL vmlinux 0x2f4056a0 devm_blk_ksm_init EXPORT_SYMBOL_GPL vmlinux 0x2f4880df static_key_slow_dec -EXPORT_SYMBOL_GPL vmlinux 0x2f49e16c devm_of_phy_get_by_index -EXPORT_SYMBOL_GPL vmlinux 0x2f4ac68e regmap_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0x2f5d4c46 serdev_device_write_flush +EXPORT_SYMBOL_GPL vmlinux 0x2f608242 cpufreq_unregister_governor EXPORT_SYMBOL_GPL vmlinux 0x2f64415f unregister_acpi_hed_notifier -EXPORT_SYMBOL_GPL vmlinux 0x2f7c1053 gpiod_get -EXPORT_SYMBOL_GPL vmlinux 0x2f8016f0 xdp_rxq_info_reg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0x2f75130e sdio_get_host_pm_caps +EXPORT_SYMBOL_GPL vmlinux 0x2f827fd9 securityfs_create_symlink EXPORT_SYMBOL_GPL vmlinux 0x2f8fd89d xas_split_alloc -EXPORT_SYMBOL_GPL vmlinux 0x2fa41354 trace_event_buffer_reserve -EXPORT_SYMBOL_GPL vmlinux 0x2fa68f03 __xenmem_reservation_va_mapping_update -EXPORT_SYMBOL_GPL vmlinux 0x2fad41e9 ata_cable_ignore -EXPORT_SYMBOL_GPL vmlinux 0x2fb42a8e blk_mq_complete_request_remote +EXPORT_SYMBOL_GPL vmlinux 0x2f922af3 iomap_dio_iopoll +EXPORT_SYMBOL_GPL vmlinux 0x2f9e0ae7 perf_get_aux +EXPORT_SYMBOL_GPL vmlinux 0x2fa902f7 devlink_is_reload_failed +EXPORT_SYMBOL_GPL vmlinux 0x2fb29c2c pci_generic_config_write +EXPORT_SYMBOL_GPL vmlinux 0x2fb355c0 __kthread_should_park +EXPORT_SYMBOL_GPL vmlinux 0x2fb546f2 phy_restore_page EXPORT_SYMBOL_GPL vmlinux 0x2fc1e0fe kmem_valid_obj -EXPORT_SYMBOL_GPL vmlinux 0x2fc75493 raw_seq_next -EXPORT_SYMBOL_GPL vmlinux 0x2fcdf2d0 add_swap_extent -EXPORT_SYMBOL_GPL vmlinux 0x2ffbdd90 of_icc_get_from_provider -EXPORT_SYMBOL_GPL vmlinux 0x30023305 events_hybrid_sysfs_show -EXPORT_SYMBOL_GPL vmlinux 0x30086f7d __dax_driver_register -EXPORT_SYMBOL_GPL vmlinux 0x30097a1e scsi_autopm_put_device -EXPORT_SYMBOL_GPL vmlinux 0x300b09c1 __SCK__tp_func_block_unplug -EXPORT_SYMBOL_GPL vmlinux 0x30218827 fixed_phy_unregister -EXPORT_SYMBOL_GPL vmlinux 0x302a8b46 pm_generic_restore -EXPORT_SYMBOL_GPL vmlinux 0x3043e818 bpf_map_put -EXPORT_SYMBOL_GPL vmlinux 0x30609328 devm_of_icc_get +EXPORT_SYMBOL_GPL vmlinux 0x2fc99752 nvdimm_blk_region_create +EXPORT_SYMBOL_GPL vmlinux 0x2fd082ed ata_sff_drain_fifo +EXPORT_SYMBOL_GPL vmlinux 0x2ff162e1 gpiochip_line_is_valid +EXPORT_SYMBOL_GPL vmlinux 0x2ff41af2 ethnl_cable_test_alloc +EXPORT_SYMBOL_GPL vmlinux 0x2ff89870 open_related_ns +EXPORT_SYMBOL_GPL vmlinux 0x300e4e74 bpf_offload_dev_create +EXPORT_SYMBOL_GPL vmlinux 0x3026fb7a bus_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x3033e751 pm_generic_poweroff_noirq +EXPORT_SYMBOL_GPL vmlinux 0x304c9d0a iommu_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3052e9e9 dev_pm_opp_set_sharing_cpus EXPORT_SYMBOL_GPL vmlinux 0x3061cfce ring_buffer_entries_cpu -EXPORT_SYMBOL_GPL vmlinux 0x309e90fd devm_phy_package_join -EXPORT_SYMBOL_GPL vmlinux 0x30a3a865 gpiod_direction_output -EXPORT_SYMBOL_GPL vmlinux 0x30a867a8 pci_epc_linkup -EXPORT_SYMBOL_GPL vmlinux 0x30b59925 iomap_bmap -EXPORT_SYMBOL_GPL vmlinux 0x30c42d76 xfrm_audit_state_delete +EXPORT_SYMBOL_GPL vmlinux 0x3064d7ae rtnl_register_module +EXPORT_SYMBOL_GPL vmlinux 0x3087b732 dma_buf_end_cpu_access +EXPORT_SYMBOL_GPL vmlinux 0x308de205 mbox_client_peek_data EXPORT_SYMBOL_GPL vmlinux 0x30cf804f slow_virt_to_phys -EXPORT_SYMBOL_GPL vmlinux 0x30dc3db5 da9052_free_irq +EXPORT_SYMBOL_GPL vmlinux 0x30dc2585 __traceiter_pelt_cfs_tp EXPORT_SYMBOL_GPL vmlinux 0x30e1ec25 apei_map_generic_address -EXPORT_SYMBOL_GPL vmlinux 0x30f63eff __tracepoint_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x30e22a44 regmap_exit +EXPORT_SYMBOL_GPL vmlinux 0x30fd7175 of_phy_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0x30ffe7ec usb_hcd_check_unlink_urb EXPORT_SYMBOL_GPL vmlinux 0x31019477 __ftrace_vbprintk -EXPORT_SYMBOL_GPL vmlinux 0x3101c027 debugfs_create_x64 -EXPORT_SYMBOL_GPL vmlinux 0x3107035e extcon_dev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x3108f3ae gpiod_set_config EXPORT_SYMBOL_GPL vmlinux 0x31128b8e hv_remove_kexec_handler -EXPORT_SYMBOL_GPL vmlinux 0x311b23b9 transport_configure_device -EXPORT_SYMBOL_GPL vmlinux 0x311fc0e1 devlink_port_param_driverinit_value_set -EXPORT_SYMBOL_GPL vmlinux 0x311fe22f phy_resolve_aneg_pause EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave -EXPORT_SYMBOL_GPL vmlinux 0x31397003 led_classdev_resume -EXPORT_SYMBOL_GPL vmlinux 0x313bedc9 xenbus_dev_suspend -EXPORT_SYMBOL_GPL vmlinux 0x313f0541 inet6_csk_xmit -EXPORT_SYMBOL_GPL vmlinux 0x313f1e6d bind_interdomain_evtchn_to_irqhandler_lateeoi -EXPORT_SYMBOL_GPL vmlinux 0x314b92d6 blk_mq_alloc_sq_tag_set +EXPORT_SYMBOL_GPL vmlinux 0x313bb3c3 i2c_dw_validate_speed +EXPORT_SYMBOL_GPL vmlinux 0x314589a5 regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x3146ec1a __mdiobus_modify_changed +EXPORT_SYMBOL_GPL vmlinux 0x31579264 nvdimm_cmd_mask +EXPORT_SYMBOL_GPL vmlinux 0x3161f521 skb_pull_rcsum EXPORT_SYMBOL_GPL vmlinux 0x3165daa3 arbitrary_virt_to_machine -EXPORT_SYMBOL_GPL vmlinux 0x316fc154 tpm_send -EXPORT_SYMBOL_GPL vmlinux 0x316fff58 serdev_device_write_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x3168da32 lwtunnel_fill_encap +EXPORT_SYMBOL_GPL vmlinux 0x31702d02 usb_autopm_get_interface_no_resume EXPORT_SYMBOL_GPL vmlinux 0x31706316 __SCT__tp_func_error_report_end -EXPORT_SYMBOL_GPL vmlinux 0x3174d52e net_selftest -EXPORT_SYMBOL_GPL vmlinux 0x317840af __tracepoint_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0x31721518 iommu_register_device_fault_handler EXPORT_SYMBOL_GPL vmlinux 0x31839ad3 software_node_register_nodes -EXPORT_SYMBOL_GPL vmlinux 0x31848292 scsi_dh_attached_handler_name EXPORT_SYMBOL_GPL vmlinux 0x3192d768 cpufreq_remove_update_util_hook -EXPORT_SYMBOL_GPL vmlinux 0x3194a5d5 sata_scr_read +EXPORT_SYMBOL_GPL vmlinux 0x319591f7 crypto_unregister_acomp EXPORT_SYMBOL_GPL vmlinux 0x3198bd55 __SCT__tp_func_detach_device_from_domain -EXPORT_SYMBOL_GPL vmlinux 0x319a96a9 balloon_page_dequeue -EXPORT_SYMBOL_GPL vmlinux 0x319c77ab fib_nh_common_release +EXPORT_SYMBOL_GPL vmlinux 0x31a8d5a7 ata_noop_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x31a92c3e xhci_reset_bandwidth EXPORT_SYMBOL_GPL vmlinux 0x31a95e8b ring_buffer_record_enable_cpu -EXPORT_SYMBOL_GPL vmlinux 0x31ac3269 of_pwm_xlate_with_flags -EXPORT_SYMBOL_GPL vmlinux 0x31b91d93 subsys_virtual_register -EXPORT_SYMBOL_GPL vmlinux 0x31ba126d tty_buffer_space_avail -EXPORT_SYMBOL_GPL vmlinux 0x31bc2b9b __clk_mux_determine_rate -EXPORT_SYMBOL_GPL vmlinux 0x31c20568 usb_get_phy -EXPORT_SYMBOL_GPL vmlinux 0x31c33c13 md_allow_write +EXPORT_SYMBOL_GPL vmlinux 0x31ace70d blk_queue_required_elevator_features +EXPORT_SYMBOL_GPL vmlinux 0x31ad9b67 vfio_register_group_dev +EXPORT_SYMBOL_GPL vmlinux 0x31b841a8 vp_modern_get_features +EXPORT_SYMBOL_GPL vmlinux 0x31c489d4 usb_hcd_map_urb_for_dma EXPORT_SYMBOL_GPL vmlinux 0x31c7970f pciserial_suspend_ports -EXPORT_SYMBOL_GPL vmlinux 0x31c9aad2 skcipher_walk_aead_encrypt -EXPORT_SYMBOL_GPL vmlinux 0x31cbcaf3 __SCK__tp_func_arm_event +EXPORT_SYMBOL_GPL vmlinux 0x31d71c38 pci_find_next_capability EXPORT_SYMBOL_GPL vmlinux 0x31dca4d8 gnttab_claim_grant_reference -EXPORT_SYMBOL_GPL vmlinux 0x31dddba5 gpiochip_irqchip_irq_valid -EXPORT_SYMBOL_GPL vmlinux 0x31ddecb7 vfio_virqfd_disable -EXPORT_SYMBOL_GPL vmlinux 0x31df2afc vfs_getxattr_alloc -EXPORT_SYMBOL_GPL vmlinux 0x31e3a0d3 genphy_c45_read_status -EXPORT_SYMBOL_GPL vmlinux 0x3201fbd3 cpufreq_dbs_governor_exit +EXPORT_SYMBOL_GPL vmlinux 0x31e37172 ata_host_detach +EXPORT_SYMBOL_GPL vmlinux 0x31e6bf75 netif_carrier_event +EXPORT_SYMBOL_GPL vmlinux 0x31f45e7c of_devfreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x31fb94df pci_epc_mem_exit +EXPORT_SYMBOL_GPL vmlinux 0x3208577f ip6_dst_lookup_tunnel +EXPORT_SYMBOL_GPL vmlinux 0x320a304d skb_to_sgvec_nomark +EXPORT_SYMBOL_GPL vmlinux 0x3224471b tcp_leave_memory_pressure EXPORT_SYMBOL_GPL vmlinux 0x3224b2a9 mpi_read_raw_from_sgl -EXPORT_SYMBOL_GPL vmlinux 0x323033dc __SCK__tp_func_pelt_dl_tp -EXPORT_SYMBOL_GPL vmlinux 0x323d1056 fwnode_graph_get_remote_port -EXPORT_SYMBOL_GPL vmlinux 0x32469801 acpi_set_modalias -EXPORT_SYMBOL_GPL vmlinux 0x325498db device_property_read_string_array -EXPORT_SYMBOL_GPL vmlinux 0x3265a574 devlink_region_snapshot_id_put -EXPORT_SYMBOL_GPL vmlinux 0x32675067 rio_dma_prep_slave_sg +EXPORT_SYMBOL_GPL vmlinux 0x32260dd9 thermal_zone_unbind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0x322ccdd3 __SCK__tp_func_br_fdb_add +EXPORT_SYMBOL_GPL vmlinux 0x32336d15 br_ip6_fragment +EXPORT_SYMBOL_GPL vmlinux 0x3250fba6 devm_regmap_add_irq_chip_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x325f9b9d events_sysfs_show +EXPORT_SYMBOL_GPL vmlinux 0x326ba6a1 ata_bmdma_post_internal_cmd EXPORT_SYMBOL_GPL vmlinux 0x326cefe5 hwpoison_filter_dev_minor +EXPORT_SYMBOL_GPL vmlinux 0x326f8a07 smpboot_register_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0x32738bfb unmap_mapping_pages +EXPORT_SYMBOL_GPL vmlinux 0x3277b2ae pciserial_init_ports EXPORT_SYMBOL_GPL vmlinux 0x327a2687 bind_evtchn_to_irq_lateeoi +EXPORT_SYMBOL_GPL vmlinux 0x327b9e43 acpi_gpiochip_free_interrupts +EXPORT_SYMBOL_GPL vmlinux 0x3280171e crypto_aead_decrypt EXPORT_SYMBOL_GPL vmlinux 0x328e3354 __memcpy_flushcache +EXPORT_SYMBOL_GPL vmlinux 0x328f6bc9 devfreq_event_reset_event +EXPORT_SYMBOL_GPL vmlinux 0x329922bb ata_pci_bmdma_clear_simplex +EXPORT_SYMBOL_GPL vmlinux 0x32a0a0cb dequeue_signal +EXPORT_SYMBOL_GPL vmlinux 0x32a1ead9 to_nvdimm_bus EXPORT_SYMBOL_GPL vmlinux 0x32ab06cc irq_percpu_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x32b6343b fwnode_property_read_string_array EXPORT_SYMBOL_GPL vmlinux 0x32bc0fcf preempt_notifier_dec EXPORT_SYMBOL_GPL vmlinux 0x32c2bb04 list_lru_walk_node EXPORT_SYMBOL_GPL vmlinux 0x32c3cb4e class_compat_register +EXPORT_SYMBOL_GPL vmlinux 0x32cc27fe regulator_get_mode +EXPORT_SYMBOL_GPL vmlinux 0x32d4d245 sdio_readw +EXPORT_SYMBOL_GPL vmlinux 0x32dfb977 find_pid_ns EXPORT_SYMBOL_GPL vmlinux 0x32e3b076 mxcsr_feature_mask EXPORT_SYMBOL_GPL vmlinux 0x32e4d1e0 sgx_virt_ecreate -EXPORT_SYMBOL_GPL vmlinux 0x32f68720 crypto_lookup_template -EXPORT_SYMBOL_GPL vmlinux 0x32f8cf4c hwpoison_filter -EXPORT_SYMBOL_GPL vmlinux 0x32fcafd7 dmaengine_unmap_put -EXPORT_SYMBOL_GPL vmlinux 0x32fead50 acpi_pci_check_ejectable EXPORT_SYMBOL_GPL vmlinux 0x330010b6 cpuset_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x33037767 rdev_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x3304f745 __traceiter_neigh_timer_handler -EXPORT_SYMBOL_GPL vmlinux 0x33121e47 usb_get_hcd -EXPORT_SYMBOL_GPL vmlinux 0x331443be devm_platform_get_irqs_affinity -EXPORT_SYMBOL_GPL vmlinux 0x3336a393 pcie_bus_configure_settings -EXPORT_SYMBOL_GPL vmlinux 0x3339904c loop_backing_file -EXPORT_SYMBOL_GPL vmlinux 0x3341f0f3 dma_buf_unpin -EXPORT_SYMBOL_GPL vmlinux 0x33444fd6 serial8250_rpm_get_tx +EXPORT_SYMBOL_GPL vmlinux 0x332f682f fsverity_verify_page +EXPORT_SYMBOL_GPL vmlinux 0x33376125 device_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x3338cce5 usb_wakeup_notification +EXPORT_SYMBOL_GPL vmlinux 0x33448f1e param_set_bool_enable_only EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0x33620e50 __bio_try_merge_page +EXPORT_SYMBOL_GPL vmlinux 0x3361b343 regulator_set_soft_start_regmap EXPORT_SYMBOL_GPL vmlinux 0x3362b03c xen_p2m_size -EXPORT_SYMBOL_GPL vmlinux 0x336ad38c proc_mkdir_data -EXPORT_SYMBOL_GPL vmlinux 0x3374ab03 __traceiter_attach_device_to_domain -EXPORT_SYMBOL_GPL vmlinux 0x33792d06 __tracepoint_devlink_hwerr -EXPORT_SYMBOL_GPL vmlinux 0x3384a8a1 inet_send_prepare -EXPORT_SYMBOL_GPL vmlinux 0x338f3aad phy_get -EXPORT_SYMBOL_GPL vmlinux 0x33a804a2 __SCK__tp_func_neigh_event_send_dead -EXPORT_SYMBOL_GPL vmlinux 0x33abed03 ohci_setup -EXPORT_SYMBOL_GPL vmlinux 0x33c00a92 devlink_param_driverinit_value_get -EXPORT_SYMBOL_GPL vmlinux 0x33c7806d gpiod_get_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x33e2a068 __device_reset -EXPORT_SYMBOL_GPL vmlinux 0x33e39d0a usb_hcd_check_unlink_urb -EXPORT_SYMBOL_GPL vmlinux 0x33e3bb8b tpm_get_timeouts -EXPORT_SYMBOL_GPL vmlinux 0x33ea139e ata_scsi_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x33ea2da6 dst_blackhole_mtu -EXPORT_SYMBOL_GPL vmlinux 0x33f11e45 virtio_device_freeze -EXPORT_SYMBOL_GPL vmlinux 0x3402acd8 blk_mq_hctx_set_fq_lock_class -EXPORT_SYMBOL_GPL vmlinux 0x341a09e2 usb_acpi_power_manageable -EXPORT_SYMBOL_GPL vmlinux 0x3421a460 dm_bio_get_target_bio_nr +EXPORT_SYMBOL_GPL vmlinux 0x33697b90 device_init_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x336bce1a dev_xdp_prog_count +EXPORT_SYMBOL_GPL vmlinux 0x33809b4e bd_prepare_to_claim +EXPORT_SYMBOL_GPL vmlinux 0x338c08fc wwan_register_ops +EXPORT_SYMBOL_GPL vmlinux 0x338dab20 icc_get +EXPORT_SYMBOL_GPL vmlinux 0x33a6564e cgroup_path_ns +EXPORT_SYMBOL_GPL vmlinux 0x33a7d02d gpio_to_desc +EXPORT_SYMBOL_GPL vmlinux 0x33a83a72 i2c_recover_bus +EXPORT_SYMBOL_GPL vmlinux 0x33b2a480 gov_attr_set_put +EXPORT_SYMBOL_GPL vmlinux 0x33bd7893 iomap_file_unshare +EXPORT_SYMBOL_GPL vmlinux 0x33c170c4 balloon_page_alloc +EXPORT_SYMBOL_GPL vmlinux 0x33d9bb19 genphy_c45_loopback +EXPORT_SYMBOL_GPL vmlinux 0x33efa787 crypto_destroy_tfm +EXPORT_SYMBOL_GPL vmlinux 0x34069d8b sysfs_file_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x3415373f pci_bus_resource_n +EXPORT_SYMBOL_GPL vmlinux 0x341f8a9c gpiochip_irq_domain_activate +EXPORT_SYMBOL_GPL vmlinux 0x3428710c pci_user_read_config_dword EXPORT_SYMBOL_GPL vmlinux 0x34331f04 acpi_os_unmap_memory -EXPORT_SYMBOL_GPL vmlinux 0x34367f4d device_match_any EXPORT_SYMBOL_GPL vmlinux 0x343953c4 poll_state_synchronize_srcu EXPORT_SYMBOL_GPL vmlinux 0x34407691 crypto_has_ahash EXPORT_SYMBOL_GPL vmlinux 0x344361a1 kdb_register +EXPORT_SYMBOL_GPL vmlinux 0x3443d467 cpu_subsys +EXPORT_SYMBOL_GPL vmlinux 0x34446ad5 sbitmap_bitmap_show EXPORT_SYMBOL_GPL vmlinux 0x344a2c84 iomap_dio_complete -EXPORT_SYMBOL_GPL vmlinux 0x344daa16 device_destroy +EXPORT_SYMBOL_GPL vmlinux 0x344b21a7 dax_finish_sync_fault EXPORT_SYMBOL_GPL vmlinux 0x3450ad94 mpi_set_ui -EXPORT_SYMBOL_GPL vmlinux 0x345e884c anon_inode_getfd_secure -EXPORT_SYMBOL_GPL vmlinux 0x346cfcf7 acpi_subsys_suspend -EXPORT_SYMBOL_GPL vmlinux 0x34a6f36e scsi_free_sgtables -EXPORT_SYMBOL_GPL vmlinux 0x34cda16d unregister_virtio_driver -EXPORT_SYMBOL_GPL vmlinux 0x34d19b6b blk_mq_sched_try_merge -EXPORT_SYMBOL_GPL vmlinux 0x34d7731d relay_subbufs_consumed -EXPORT_SYMBOL_GPL vmlinux 0x34e4df55 usb_wakeup_notification -EXPORT_SYMBOL_GPL vmlinux 0x34e7d46c iommu_unregister_device_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0x34554b57 regcache_drop_region +EXPORT_SYMBOL_GPL vmlinux 0x346262ed clk_hw_get_flags +EXPORT_SYMBOL_GPL vmlinux 0x3466ce63 x86_msi_msg_get_destid +EXPORT_SYMBOL_GPL vmlinux 0x346f7aa5 rio_map_outb_region +EXPORT_SYMBOL_GPL vmlinux 0x348b1651 regmap_noinc_write +EXPORT_SYMBOL_GPL vmlinux 0x349854aa clk_hw_is_prepared +EXPORT_SYMBOL_GPL vmlinux 0x349e08cf irq_domain_free_irqs_common +EXPORT_SYMBOL_GPL vmlinux 0x34a66843 gpiochip_is_requested +EXPORT_SYMBOL_GPL vmlinux 0x34d335b8 clk_register +EXPORT_SYMBOL_GPL vmlinux 0x34e55002 crypto_skcipher_setkey EXPORT_SYMBOL_GPL vmlinux 0x34eab46d bind_evtchn_to_irqhandler -EXPORT_SYMBOL_GPL vmlinux 0x34fc1cd1 platform_device_add_data -EXPORT_SYMBOL_GPL vmlinux 0x3507f63c usb_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x34edcd31 debugfs_read_file_bool +EXPORT_SYMBOL_GPL vmlinux 0x34f923a0 acpi_subsys_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x34fedfe5 dma_buf_move_notify +EXPORT_SYMBOL_GPL vmlinux 0x35025c76 acpiphp_unregister_attention +EXPORT_SYMBOL_GPL vmlinux 0x350e07ad vfio_assign_device_set EXPORT_SYMBOL_GPL vmlinux 0x350f6ce5 tasklet_unlock_wait +EXPORT_SYMBOL_GPL vmlinux 0x351c512d __page_mapcount +EXPORT_SYMBOL_GPL vmlinux 0x35209f43 security_file_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x352a97fb crypto_alloc_rng EXPORT_SYMBOL_GPL vmlinux 0x352b3813 maxim_charger_calc_reg_current +EXPORT_SYMBOL_GPL vmlinux 0x352bc241 inet6_lookup +EXPORT_SYMBOL_GPL vmlinux 0x352d9658 udp_tunnel_nic_ops EXPORT_SYMBOL_GPL vmlinux 0x352ec68b bpf_offload_dev_destroy -EXPORT_SYMBOL_GPL vmlinux 0x353c88e3 seg6_do_srh_inline -EXPORT_SYMBOL_GPL vmlinux 0x353f7a4d sk_psock_tls_strp_read +EXPORT_SYMBOL_GPL vmlinux 0x35379b03 virtio_max_dma_size +EXPORT_SYMBOL_GPL vmlinux 0x35445651 register_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x3550487e __iptunnel_pull_header +EXPORT_SYMBOL_GPL vmlinux 0x355a54b0 get_device EXPORT_SYMBOL_GPL vmlinux 0x355bc89a klist_next +EXPORT_SYMBOL_GPL vmlinux 0x355e1221 pci_test_config_bits +EXPORT_SYMBOL_GPL vmlinux 0x3564855b ata_cable_unknown EXPORT_SYMBOL_GPL vmlinux 0x3567743b vfio_external_user_iommu_id EXPORT_SYMBOL_GPL vmlinux 0x356d09a1 unregister_kprobes -EXPORT_SYMBOL_GPL vmlinux 0x35724f01 cpci_hp_unregister_bus -EXPORT_SYMBOL_GPL vmlinux 0x357b1b32 rio_pw_enable +EXPORT_SYMBOL_GPL vmlinux 0x356ec20e fwnode_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0x3574a761 pci_host_probe +EXPORT_SYMBOL_GPL vmlinux 0x358396ca fib_rules_seq_read EXPORT_SYMBOL_GPL vmlinux 0x358ff60f twl_get_hfclk_rate -EXPORT_SYMBOL_GPL vmlinux 0x359578ce relay_buf_full -EXPORT_SYMBOL_GPL vmlinux 0x3598a8dd phy_package_join -EXPORT_SYMBOL_GPL vmlinux 0x35ad5924 rio_mport_class -EXPORT_SYMBOL_GPL vmlinux 0x35b91717 attribute_container_unregister -EXPORT_SYMBOL_GPL vmlinux 0x35c1729c irq_domain_simple_ops -EXPORT_SYMBOL_GPL vmlinux 0x35cabd29 xdp_rxq_info_reg +EXPORT_SYMBOL_GPL vmlinux 0x3593a282 xdp_return_frame_bulk +EXPORT_SYMBOL_GPL vmlinux 0x359a6de9 ping_getfrag +EXPORT_SYMBOL_GPL vmlinux 0x35b0c559 pci_probe_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0x35b2d192 device_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x35ba9e00 pm_wakeup_ws_event EXPORT_SYMBOL_GPL vmlinux 0x35d3dc46 crypto_alg_sem -EXPORT_SYMBOL_GPL vmlinux 0x35d72818 ip6_pol_route +EXPORT_SYMBOL_GPL vmlinux 0x35e52208 vring_transport_features +EXPORT_SYMBOL_GPL vmlinux 0x35ec9501 crypto_register_aead EXPORT_SYMBOL_GPL vmlinux 0x35f43770 __clk_hw_register_gate -EXPORT_SYMBOL_GPL vmlinux 0x35fb5e34 dev_get_tstats64 EXPORT_SYMBOL_GPL vmlinux 0x36075bb5 iommu_group_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x360d351a __devm_of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0x360e45db usb_disable_xhci_ports EXPORT_SYMBOL_GPL vmlinux 0x36173c1d phys_to_target_node -EXPORT_SYMBOL_GPL vmlinux 0x361e1069 dummy_con -EXPORT_SYMBOL_GPL vmlinux 0x3621ca1c dev_pm_opp_adjust_voltage -EXPORT_SYMBOL_GPL vmlinux 0x36227cdc fsnotify_add_mark +EXPORT_SYMBOL_GPL vmlinux 0x361d549f device_phy_find_device EXPORT_SYMBOL_GPL vmlinux 0x36242943 switchdev_deferred_process -EXPORT_SYMBOL_GPL vmlinux 0x363353db irq_gc_ack_set_bit -EXPORT_SYMBOL_GPL vmlinux 0x36388e86 crypto_stats_akcipher_sign -EXPORT_SYMBOL_GPL vmlinux 0x3646bb96 sched_setattr_nocheck -EXPORT_SYMBOL_GPL vmlinux 0x36498f0c genphy_c45_an_disable_aneg -EXPORT_SYMBOL_GPL vmlinux 0x365368a5 sdio_set_block_size -EXPORT_SYMBOL_GPL vmlinux 0x366225c1 dev_pm_qos_update_request -EXPORT_SYMBOL_GPL vmlinux 0x3663f2e8 crypto_inst_setname -EXPORT_SYMBOL_GPL vmlinux 0x366804a9 crypto_register_scomp -EXPORT_SYMBOL_GPL vmlinux 0x36763d2a bpf_trace_run8 -EXPORT_SYMBOL_GPL vmlinux 0x3690772a power_supply_set_input_current_limit_from_supplier -EXPORT_SYMBOL_GPL vmlinux 0x369f18de dw8250_setup_port +EXPORT_SYMBOL_GPL vmlinux 0x36341d9d __tracepoint_devlink_hwmsg +EXPORT_SYMBOL_GPL vmlinux 0x3640e047 nvdimm_security_setup_events +EXPORT_SYMBOL_GPL vmlinux 0x364684ba pm_clk_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x36496e11 mctrl_gpio_init +EXPORT_SYMBOL_GPL vmlinux 0x364e70fc dst_blackhole_redirect +EXPORT_SYMBOL_GPL vmlinux 0x3661d3cf clk_hw_get_num_parents +EXPORT_SYMBOL_GPL vmlinux 0x36641014 pci_ioremap_wc_bar +EXPORT_SYMBOL_GPL vmlinux 0x366c36c6 pci_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x366e6902 dma_need_sync +EXPORT_SYMBOL_GPL vmlinux 0x366f2f54 fsnotify_get_group +EXPORT_SYMBOL_GPL vmlinux 0x367ad2d4 intel_pinctrl_probe_by_uid +EXPORT_SYMBOL_GPL vmlinux 0x368b16ae led_blink_set +EXPORT_SYMBOL_GPL vmlinux 0x36994b45 regulator_enable_regmap EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot -EXPORT_SYMBOL_GPL vmlinux 0x36adf00a add_disk_randomness +EXPORT_SYMBOL_GPL vmlinux 0x36b47db4 xhci_init_driver EXPORT_SYMBOL_GPL vmlinux 0x36b5497e intel_iommu_enabled -EXPORT_SYMBOL_GPL vmlinux 0x36dea47e gpiod_set_debounce -EXPORT_SYMBOL_GPL vmlinux 0x3708c739 crypto_ahash_final -EXPORT_SYMBOL_GPL vmlinux 0x370c5826 __ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0x36be6ff1 i2c_parse_fw_timings +EXPORT_SYMBOL_GPL vmlinux 0x36d4832b sata_set_spd +EXPORT_SYMBOL_GPL vmlinux 0x36d67bc6 __spi_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x36e47ee0 genphy_c45_read_link +EXPORT_SYMBOL_GPL vmlinux 0x36f3170f sk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x36feb275 ata_sff_qc_fill_rtf +EXPORT_SYMBOL_GPL vmlinux 0x37059802 spi_finalize_current_message +EXPORT_SYMBOL_GPL vmlinux 0x370db32c sysfs_remove_link EXPORT_SYMBOL_GPL vmlinux 0x37169f79 cpu_latency_qos_update_request -EXPORT_SYMBOL_GPL vmlinux 0x3716b49d sk_clear_memalloc -EXPORT_SYMBOL_GPL vmlinux 0x371fae6f io_cgrp_subsys +EXPORT_SYMBOL_GPL vmlinux 0x3728e1e6 wm831x_reg_write EXPORT_SYMBOL_GPL vmlinux 0x372cfd6e gnttab_end_foreign_access -EXPORT_SYMBOL_GPL vmlinux 0x37413620 crypto_register_skciphers -EXPORT_SYMBOL_GPL vmlinux 0x374c481f regmap_raw_read +EXPORT_SYMBOL_GPL vmlinux 0x3732bff5 regulator_set_suspend_voltage EXPORT_SYMBOL_GPL vmlinux 0x374c53e1 ata_get_cmd_descript -EXPORT_SYMBOL_GPL vmlinux 0x374ef7bf devm_serdev_device_open +EXPORT_SYMBOL_GPL vmlinux 0x374ce2cb __spi_alloc_controller EXPORT_SYMBOL_GPL vmlinux 0x3750d770 erst_read -EXPORT_SYMBOL_GPL vmlinux 0x375449e9 xenbus_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0x37521ca3 switchdev_port_obj_del +EXPORT_SYMBOL_GPL vmlinux 0x375aae22 skcipher_register_instance EXPORT_SYMBOL_GPL vmlinux 0x3763f509 kobject_rename -EXPORT_SYMBOL_GPL vmlinux 0x3769ad63 __bio_add_page -EXPORT_SYMBOL_GPL vmlinux 0x376b8a83 xen_unregister_device_domain_owner -EXPORT_SYMBOL_GPL vmlinux 0x37726bb4 netdev_rx_handler_unregister -EXPORT_SYMBOL_GPL vmlinux 0x3777b4f7 transport_add_device -EXPORT_SYMBOL_GPL vmlinux 0x37792147 clk_bulk_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x376f7483 __mmdrop +EXPORT_SYMBOL_GPL vmlinux 0x376fa1a4 usb_get_from_anchor EXPORT_SYMBOL_GPL vmlinux 0x377bbcbc pm_suspend_target_state +EXPORT_SYMBOL_GPL vmlinux 0x377c6889 fuse_do_open +EXPORT_SYMBOL_GPL vmlinux 0x37813a2a fuse_init_fs_context_submount +EXPORT_SYMBOL_GPL vmlinux 0x378bd3a9 blk_ksm_init_passthrough EXPORT_SYMBOL_GPL vmlinux 0x37914025 xenbus_write -EXPORT_SYMBOL_GPL vmlinux 0x37a858ea iommu_attach_device -EXPORT_SYMBOL_GPL vmlinux 0x37b5b5ea bpfilter_ops -EXPORT_SYMBOL_GPL vmlinux 0x37bc26a2 devm_kmalloc +EXPORT_SYMBOL_GPL vmlinux 0x3796e415 ip6_append_data +EXPORT_SYMBOL_GPL vmlinux 0x379bff95 mmu_interval_notifier_remove +EXPORT_SYMBOL_GPL vmlinux 0x379eddfb espintcp_queue_out +EXPORT_SYMBOL_GPL vmlinux 0x37a14b62 usb_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x37a590ea debugfs_create_x64 +EXPORT_SYMBOL_GPL vmlinux 0x37a6412a regulator_enable +EXPORT_SYMBOL_GPL vmlinux 0x37a8c117 nvdimm_has_flush +EXPORT_SYMBOL_GPL vmlinux 0x37ab9e74 usb_amd_pt_check_port +EXPORT_SYMBOL_GPL vmlinux 0x37bd23ed hypervisor_kobj EXPORT_SYMBOL_GPL vmlinux 0x37bf7be3 percpu_ref_exit -EXPORT_SYMBOL_GPL vmlinux 0x37d633f9 blk_add_driver_data -EXPORT_SYMBOL_GPL vmlinux 0x37d82cbd tcpv6_prot -EXPORT_SYMBOL_GPL vmlinux 0x37df2062 modify_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x37c0bd9d is_swiotlb_active +EXPORT_SYMBOL_GPL vmlinux 0x37c25e70 spi_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0x37c5935a perf_event_read_value +EXPORT_SYMBOL_GPL vmlinux 0x37cbbef9 devm_nvmem_device_get +EXPORT_SYMBOL_GPL vmlinux 0x37e8aa06 regulator_set_drvdata EXPORT_SYMBOL_GPL vmlinux 0x37f292c4 pmc_atom_write -EXPORT_SYMBOL_GPL vmlinux 0x37fa7db8 device_match_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x37ff83cd usb_deregister_dev +EXPORT_SYMBOL_GPL vmlinux 0x37f6236c debugfs_create_u32 +EXPORT_SYMBOL_GPL vmlinux 0x37f6e418 serial8250_rpm_put_tx EXPORT_SYMBOL_GPL vmlinux 0x3801776b __ioread32_copy -EXPORT_SYMBOL_GPL vmlinux 0x380dfb25 bus_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x3812e3af xdp_attachment_setup -EXPORT_SYMBOL_GPL vmlinux 0x3814b4da synth_event_create -EXPORT_SYMBOL_GPL vmlinux 0x3822cb6a bio_end_io_acct_remapped +EXPORT_SYMBOL_GPL vmlinux 0x380c0743 get_net_ns_by_pid +EXPORT_SYMBOL_GPL vmlinux 0x3810bb37 relay_flush +EXPORT_SYMBOL_GPL vmlinux 0x381298a7 platform_device_add_data EXPORT_SYMBOL_GPL vmlinux 0x38268b62 icc_bulk_enable -EXPORT_SYMBOL_GPL vmlinux 0x38362df1 tpm_is_tpm2 -EXPORT_SYMBOL_GPL vmlinux 0x3836ba3c skb_segment +EXPORT_SYMBOL_GPL vmlinux 0x382d1d0a devm_request_pci_bus_resources EXPORT_SYMBOL_GPL vmlinux 0x38374815 clear_selection -EXPORT_SYMBOL_GPL vmlinux 0x383b8ab3 pm_runtime_barrier -EXPORT_SYMBOL_GPL vmlinux 0x384ffea3 bio_add_zone_append_page -EXPORT_SYMBOL_GPL vmlinux 0x385a6461 pci_intx +EXPORT_SYMBOL_GPL vmlinux 0x38418160 nf_queue_entry_free +EXPORT_SYMBOL_GPL vmlinux 0x384c6c14 fsstack_copy_inode_size +EXPORT_SYMBOL_GPL vmlinux 0x384d4055 gpiochip_enable_irq EXPORT_SYMBOL_GPL vmlinux 0x3866e217 nvmem_device_write -EXPORT_SYMBOL_GPL vmlinux 0x386e87c6 regulator_get -EXPORT_SYMBOL_GPL vmlinux 0x386f3a8e lwtunnel_encap_del_ops +EXPORT_SYMBOL_GPL vmlinux 0x387007e1 inet6_csk_xmit EXPORT_SYMBOL_GPL vmlinux 0x38708e25 inet_peer_base_init +EXPORT_SYMBOL_GPL vmlinux 0x3870ce08 __rt_mutex_init EXPORT_SYMBOL_GPL vmlinux 0x38722f80 kernel_fpu_end -EXPORT_SYMBOL_GPL vmlinux 0x38743a3f kernfs_put -EXPORT_SYMBOL_GPL vmlinux 0x38761284 fat_get_dotdot_entry +EXPORT_SYMBOL_GPL vmlinux 0x3883eeb9 device_remove_properties +EXPORT_SYMBOL_GPL vmlinux 0x389902cf __pm_runtime_disable EXPORT_SYMBOL_GPL vmlinux 0x389b64a2 static_key_count -EXPORT_SYMBOL_GPL vmlinux 0x38a4c3ff net_ns_get_ownership +EXPORT_SYMBOL_GPL vmlinux 0x389c10bd skcipher_walk_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x38a2399a bus_set_iommu EXPORT_SYMBOL_GPL vmlinux 0x38aa1397 gpiod_add_lookup_table -EXPORT_SYMBOL_GPL vmlinux 0x38af2bb4 xen_unmap_domain_gfn_range +EXPORT_SYMBOL_GPL vmlinux 0x38b255fc pci_user_write_config_byte EXPORT_SYMBOL_GPL vmlinux 0x38b6a890 __SCT__tp_func_sched_util_est_cfs_tp -EXPORT_SYMBOL_GPL vmlinux 0x38bda7ba transport_class_unregister EXPORT_SYMBOL_GPL vmlinux 0x38c3ff30 freq_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x38cec29b devm_nvmem_register EXPORT_SYMBOL_GPL vmlinux 0x38d324db srcu_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0x38d99c67 dma_wait_for_async_tx +EXPORT_SYMBOL_GPL vmlinux 0x38d38e7f perf_pmu_register +EXPORT_SYMBOL_GPL vmlinux 0x38d3fee6 devfreq_event_set_event EXPORT_SYMBOL_GPL vmlinux 0x38e1fde7 mpi_set +EXPORT_SYMBOL_GPL vmlinux 0x38e3bde2 skb_partial_csum_set EXPORT_SYMBOL_GPL vmlinux 0x38e5bc5a clk_set_rate_range -EXPORT_SYMBOL_GPL vmlinux 0x38ecf660 sysfs_remove_mount_point -EXPORT_SYMBOL_GPL vmlinux 0x38f9942d fwnode_find_reference -EXPORT_SYMBOL_GPL vmlinux 0x39078425 find_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0x39298cbb trace_event_reg -EXPORT_SYMBOL_GPL vmlinux 0x392f7402 ata_port_pbar_desc -EXPORT_SYMBOL_GPL vmlinux 0x393b4815 blk_lld_busy -EXPORT_SYMBOL_GPL vmlinux 0x395192f3 acpi_device_get_match_data -EXPORT_SYMBOL_GPL vmlinux 0x3975d82d crypto_unregister_shashes -EXPORT_SYMBOL_GPL vmlinux 0x397b6d7d __blkg_prfill_rwstat -EXPORT_SYMBOL_GPL vmlinux 0x397ed8c3 __tracepoint_mc_event -EXPORT_SYMBOL_GPL vmlinux 0x3984c44f iommu_dev_feature_enabled -EXPORT_SYMBOL_GPL vmlinux 0x3987b39c vp_modern_set_status +EXPORT_SYMBOL_GPL vmlinux 0x38e8ee99 handle_irq_desc +EXPORT_SYMBOL_GPL vmlinux 0x38f44cfe acpi_subsys_restore_early +EXPORT_SYMBOL_GPL vmlinux 0x3906d2f0 sch_frag_xmit_hook +EXPORT_SYMBOL_GPL vmlinux 0x3919bd94 devlink_register +EXPORT_SYMBOL_GPL vmlinux 0x39488831 ehci_adjust_port_wakeup_flags +EXPORT_SYMBOL_GPL vmlinux 0x394c5106 power_supply_powers +EXPORT_SYMBOL_GPL vmlinux 0x394d7f6e device_wakeup_disable +EXPORT_SYMBOL_GPL vmlinux 0x395900c3 sk_msg_return_zero +EXPORT_SYMBOL_GPL vmlinux 0x395f5dd5 devm_hwspin_lock_request_specific +EXPORT_SYMBOL_GPL vmlinux 0x396bd6b1 nvdimm_has_cache EXPORT_SYMBOL_GPL vmlinux 0x399eda0f sbitmap_add_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x39a0d1c5 device_property_read_string EXPORT_SYMBOL_GPL vmlinux 0x39a7affc driver_deferred_probe_timeout EXPORT_SYMBOL_GPL vmlinux 0x39aa4888 usb_role_string -EXPORT_SYMBOL_GPL vmlinux 0x39adb47b ip6_datagram_connect_v6_only -EXPORT_SYMBOL_GPL vmlinux 0x39d7747e devm_of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0x39ac3bac __vfs_removexattr_locked +EXPORT_SYMBOL_GPL vmlinux 0x39b24ccf misc_cg_try_charge +EXPORT_SYMBOL_GPL vmlinux 0x39b2fc4c bpf_offload_dev_netdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x39bfb03d ata_bmdma32_port_ops EXPORT_SYMBOL_GPL vmlinux 0x39ded098 rdma_cgrp_subsys_enabled_key EXPORT_SYMBOL_GPL vmlinux 0x39ded14f __SCT__tp_func_unmap -EXPORT_SYMBOL_GPL vmlinux 0x39f50f34 of_devfreq_cooling_register -EXPORT_SYMBOL_GPL vmlinux 0x39f6f376 ata_sff_freeze +EXPORT_SYMBOL_GPL vmlinux 0x39e30055 wm8350_device_init +EXPORT_SYMBOL_GPL vmlinux 0x39eda769 debugfs_create_blob +EXPORT_SYMBOL_GPL vmlinux 0x3a21947d fs_kobj EXPORT_SYMBOL_GPL vmlinux 0x3a24fb2f percpu_ref_resurrect -EXPORT_SYMBOL_GPL vmlinux 0x3a260714 crypto_destroy_tfm EXPORT_SYMBOL_GPL vmlinux 0x3a26ed11 sched_clock -EXPORT_SYMBOL_GPL vmlinux 0x3a3f738b sdio_disable_func -EXPORT_SYMBOL_GPL vmlinux 0x3a4335c6 devm_namespace_enable +EXPORT_SYMBOL_GPL vmlinux 0x3a29bbf6 pci_msi_mask_irq +EXPORT_SYMBOL_GPL vmlinux 0x3a2a6cb6 spi_res_add +EXPORT_SYMBOL_GPL vmlinux 0x3a47ea1f xfrm_dev_offload_ok +EXPORT_SYMBOL_GPL vmlinux 0x3a4b75ed is_nvdimm_sync +EXPORT_SYMBOL_GPL vmlinux 0x3a4c774f cgroup_attach_task_all +EXPORT_SYMBOL_GPL vmlinux 0x3a4d9ea3 scsi_unregister_device_handler EXPORT_SYMBOL_GPL vmlinux 0x3a4f6a32 ata_sff_interrupt EXPORT_SYMBOL_GPL vmlinux 0x3a536bd7 ring_buffer_read_finish -EXPORT_SYMBOL_GPL vmlinux 0x3a548726 virtio_break_device EXPORT_SYMBOL_GPL vmlinux 0x3a55981a static_key_enable_cpuslocked -EXPORT_SYMBOL_GPL vmlinux 0x3a7408ae devm_hwspin_lock_free +EXPORT_SYMBOL_GPL vmlinux 0x3a5bf16d usb_disable_ltm +EXPORT_SYMBOL_GPL vmlinux 0x3a5f5554 driver_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x3a79289e crypto_ahash_final EXPORT_SYMBOL_GPL vmlinux 0x3a7d80f9 xen_max_p2m_pfn -EXPORT_SYMBOL_GPL vmlinux 0x3a7db329 __netpoll_free -EXPORT_SYMBOL_GPL vmlinux 0x3a7df534 vfio_pci_core_mmap EXPORT_SYMBOL_GPL vmlinux 0x3a8bbb8e trace_clock_jiffies -EXPORT_SYMBOL_GPL vmlinux 0x3a8bfbb6 wbc_account_cgroup_owner EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial -EXPORT_SYMBOL_GPL vmlinux 0x3a9c367e device_del -EXPORT_SYMBOL_GPL vmlinux 0x3aa55fd8 ata_std_bios_param -EXPORT_SYMBOL_GPL vmlinux 0x3aae8459 usb_hcd_map_urb_for_dma -EXPORT_SYMBOL_GPL vmlinux 0x3aaf951c crypto_mod_put -EXPORT_SYMBOL_GPL vmlinux 0x3ab901c7 mmu_interval_notifier_insert -EXPORT_SYMBOL_GPL vmlinux 0x3abf468e regmap_get_device +EXPORT_SYMBOL_GPL vmlinux 0x3ab4018d i2c_new_dummy_device EXPORT_SYMBOL_GPL vmlinux 0x3ac3feba rhltable_init -EXPORT_SYMBOL_GPL vmlinux 0x3aca48f9 ata_sff_hsm_move -EXPORT_SYMBOL_GPL vmlinux 0x3acc12b7 balloon_page_list_enqueue +EXPORT_SYMBOL_GPL vmlinux 0x3acd4da5 gov_attr_set_init EXPORT_SYMBOL_GPL vmlinux 0x3acdf325 twl4030_audio_enable_resource +EXPORT_SYMBOL_GPL vmlinux 0x3ace5d57 edac_pci_add_device +EXPORT_SYMBOL_GPL vmlinux 0x3ad5e624 blk_queue_set_zoned +EXPORT_SYMBOL_GPL vmlinux 0x3aeaf274 ata_eh_analyze_ncq_error EXPORT_SYMBOL_GPL vmlinux 0x3af578f5 hyperv_report_panic -EXPORT_SYMBOL_GPL vmlinux 0x3afcb132 wbc_detach_inode -EXPORT_SYMBOL_GPL vmlinux 0x3b219ea7 __tracepoint_arm_event -EXPORT_SYMBOL_GPL vmlinux 0x3b393295 crypto_stats_kpp_generate_public_key -EXPORT_SYMBOL_GPL vmlinux 0x3b441a26 pci_find_next_capability -EXPORT_SYMBOL_GPL vmlinux 0x3b4c1261 nvmem_device_find +EXPORT_SYMBOL_GPL vmlinux 0x3b07aae1 free_io_pgtable_ops +EXPORT_SYMBOL_GPL vmlinux 0x3b07ed49 governor_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0x3b0c1ac5 scsi_host_complete_all_commands +EXPORT_SYMBOL_GPL vmlinux 0x3b0e7fef usb_alloc_coherent +EXPORT_SYMBOL_GPL vmlinux 0x3b13bc5e dev_attr_ncq_prio_supported +EXPORT_SYMBOL_GPL vmlinux 0x3b1cd12f extcon_set_property +EXPORT_SYMBOL_GPL vmlinux 0x3b1fbb75 usb_hcd_amd_remote_wakeup_quirk +EXPORT_SYMBOL_GPL vmlinux 0x3b2738e3 serdev_device_set_flow_control +EXPORT_SYMBOL_GPL vmlinux 0x3b30facc ata_sas_port_stop +EXPORT_SYMBOL_GPL vmlinux 0x3b45b5ea mbox_request_channel_byname EXPORT_SYMBOL_GPL vmlinux 0x3b4c240a display_timings_release -EXPORT_SYMBOL_GPL vmlinux 0x3b623360 __SCK__tp_func_neigh_update_done -EXPORT_SYMBOL_GPL vmlinux 0x3b734e94 sysfs_unbreak_active_protection -EXPORT_SYMBOL_GPL vmlinux 0x3b83a555 devm_platform_ioremap_resource +EXPORT_SYMBOL_GPL vmlinux 0x3b558f52 devlink_params_publish +EXPORT_SYMBOL_GPL vmlinux 0x3b6271b7 __reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x3b7a7163 __static_call_return0 EXPORT_SYMBOL_GPL vmlinux 0x3b8979ea gnttab_grant_foreign_transfer_ref +EXPORT_SYMBOL_GPL vmlinux 0x3b8b6462 devfreq_event_disable_edev +EXPORT_SYMBOL_GPL vmlinux 0x3b8bae15 regulator_set_ramp_delay_regmap EXPORT_SYMBOL_GPL vmlinux 0x3b91db5b intel_pt_handle_vmx EXPORT_SYMBOL_GPL vmlinux 0x3b95f543 klp_shadow_free EXPORT_SYMBOL_GPL vmlinux 0x3ba01b47 get_compat_sigset -EXPORT_SYMBOL_GPL vmlinux 0x3bae7645 fwnode_get_name -EXPORT_SYMBOL_GPL vmlinux 0x3bbded50 ata_cable_40wire -EXPORT_SYMBOL_GPL vmlinux 0x3bc03b7a fuse_simple_background -EXPORT_SYMBOL_GPL vmlinux 0x3bc530fd smpboot_register_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0x3bbf3b62 device_create_file +EXPORT_SYMBOL_GPL vmlinux 0x3bc4a403 vp_modern_queue_address +EXPORT_SYMBOL_GPL vmlinux 0x3bd9c70c uart_handle_cts_change EXPORT_SYMBOL_GPL vmlinux 0x3bdb5d28 alg_test -EXPORT_SYMBOL_GPL vmlinux 0x3be185b9 pinctrl_put -EXPORT_SYMBOL_GPL vmlinux 0x3bedaf7a rio_unmap_outb_region -EXPORT_SYMBOL_GPL vmlinux 0x3bf137d1 phy_pm_runtime_allow EXPORT_SYMBOL_GPL vmlinux 0x3bf17755 mpi_read_buffer -EXPORT_SYMBOL_GPL vmlinux 0x3bf8dfc3 ata_dev_pair -EXPORT_SYMBOL_GPL vmlinux 0x3bf9be3a dma_buf_attach -EXPORT_SYMBOL_GPL vmlinux 0x3c00c90d trace_event_buffer_commit +EXPORT_SYMBOL_GPL vmlinux 0x3c0a852b irq_chip_unmask_parent EXPORT_SYMBOL_GPL vmlinux 0x3c0e8050 hyperv_pcpu_input_arg +EXPORT_SYMBOL_GPL vmlinux 0x3c113a11 gpiod_direction_output_raw +EXPORT_SYMBOL_GPL vmlinux 0x3c11f495 fwnode_find_reference +EXPORT_SYMBOL_GPL vmlinux 0x3c15dbfd device_for_each_child EXPORT_SYMBOL_GPL vmlinux 0x3c1c3725 rcu_fwd_progress_check -EXPORT_SYMBOL_GPL vmlinux 0x3c1eba1c path_noexec -EXPORT_SYMBOL_GPL vmlinux 0x3c354d09 ptp_classify_raw -EXPORT_SYMBOL_GPL vmlinux 0x3c499bb3 of_devfreq_cooling_register_power -EXPORT_SYMBOL_GPL vmlinux 0x3c4dbf6d policy_has_boost_freq -EXPORT_SYMBOL_GPL vmlinux 0x3c545b63 ata_pci_device_resume +EXPORT_SYMBOL_GPL vmlinux 0x3c316a73 sdev_evt_send_simple +EXPORT_SYMBOL_GPL vmlinux 0x3c3d854a bpf_prog_put +EXPORT_SYMBOL_GPL vmlinux 0x3c3da454 key_type_user +EXPORT_SYMBOL_GPL vmlinux 0x3c425fd8 pwm_apply_state +EXPORT_SYMBOL_GPL vmlinux 0x3c5d24f7 fat_search_long EXPORT_SYMBOL_GPL vmlinux 0x3c5d543a hrtimer_start_range_ns -EXPORT_SYMBOL_GPL vmlinux 0x3c5ef5cc pci_epc_start -EXPORT_SYMBOL_GPL vmlinux 0x3c604960 vfio_pci_core_write EXPORT_SYMBOL_GPL vmlinux 0x3c681dc4 ring_buffer_record_disable -EXPORT_SYMBOL_GPL vmlinux 0x3c6b7de1 scsi_mode_select -EXPORT_SYMBOL_GPL vmlinux 0x3c84fe0f iommu_group_get -EXPORT_SYMBOL_GPL vmlinux 0x3cae1f79 __intel_scu_ipc_register -EXPORT_SYMBOL_GPL vmlinux 0x3cb42d95 wm8350_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x3cbf7665 dev_pm_opp_free_cpufreq_table +EXPORT_SYMBOL_GPL vmlinux 0x3c73cbb4 rio_mport_initialize +EXPORT_SYMBOL_GPL vmlinux 0x3c77f613 nvdimm_bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3c7acd2d devlink_param_driverinit_value_get +EXPORT_SYMBOL_GPL vmlinux 0x3c8689e5 rtc_read_alarm +EXPORT_SYMBOL_GPL vmlinux 0x3c89c48d pci_epc_mem_alloc_addr +EXPORT_SYMBOL_GPL vmlinux 0x3cb3bc29 dev_pm_opp_disable EXPORT_SYMBOL_GPL vmlinux 0x3cc07be9 pv_info -EXPORT_SYMBOL_GPL vmlinux 0x3cc2d639 usb_hub_release_port EXPORT_SYMBOL_GPL vmlinux 0x3cc4b494 key_type_trusted +EXPORT_SYMBOL_GPL vmlinux 0x3ccf1051 dev_pm_domain_attach_by_id EXPORT_SYMBOL_GPL vmlinux 0x3cd06035 add_input_randomness EXPORT_SYMBOL_GPL vmlinux 0x3cd1b510 trace_vbprintk -EXPORT_SYMBOL_GPL vmlinux 0x3cd646c2 cpci_hp_register_bus EXPORT_SYMBOL_GPL vmlinux 0x3ce650fd phy_10gbit_features -EXPORT_SYMBOL_GPL vmlinux 0x3d2bf34c devfreq_cooling_unregister -EXPORT_SYMBOL_GPL vmlinux 0x3d2ede58 regulator_bulk_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x3d367daa ethnl_cable_test_result +EXPORT_SYMBOL_GPL vmlinux 0x3ce840bd __fscrypt_prepare_readdir +EXPORT_SYMBOL_GPL vmlinux 0x3cfd7457 irq_domain_create_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0x3d2ff1b6 __pci_epc_create EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end +EXPORT_SYMBOL_GPL vmlinux 0x3d3b0e64 da9052_disable_irq_nosync +EXPORT_SYMBOL_GPL vmlinux 0x3d421d97 iopf_queue_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x3d428878 usb_lock_device_for_reset +EXPORT_SYMBOL_GPL vmlinux 0x3d4466d9 __SCK__tp_func_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0x3d458f22 crypto_unregister_alg EXPORT_SYMBOL_GPL vmlinux 0x3d510a7b rcu_jiffies_till_stall_check -EXPORT_SYMBOL_GPL vmlinux 0x3d5a85db pm_generic_suspend_late -EXPORT_SYMBOL_GPL vmlinux 0x3d6fa2f1 debugfs_create_devm_seqfile -EXPORT_SYMBOL_GPL vmlinux 0x3d732940 pm_generic_freeze -EXPORT_SYMBOL_GPL vmlinux 0x3d795566 crypto_stats_skcipher_encrypt -EXPORT_SYMBOL_GPL vmlinux 0x3d7b5efe ata_sas_sync_probe +EXPORT_SYMBOL_GPL vmlinux 0x3d5ea8d3 led_set_brightness +EXPORT_SYMBOL_GPL vmlinux 0x3d6a1c0e inet6_destroy_sock +EXPORT_SYMBOL_GPL vmlinux 0x3d8af3cf devm_platform_ioremap_resource_byname EXPORT_SYMBOL_GPL vmlinux 0x3d8baf3b zs_huge_class_size +EXPORT_SYMBOL_GPL vmlinux 0x3d8c4c81 platform_get_irq_optional EXPORT_SYMBOL_GPL vmlinux 0x3d8f29cc srcutorture_get_gp_data -EXPORT_SYMBOL_GPL vmlinux 0x3d98813e sdio_enable_func +EXPORT_SYMBOL_GPL vmlinux 0x3d976bb7 invalidate_inode_pages2 EXPORT_SYMBOL_GPL vmlinux 0x3d9bbf75 wwan_port_txon -EXPORT_SYMBOL_GPL vmlinux 0x3d9f9bf3 ata_pci_bmdma_clear_simplex +EXPORT_SYMBOL_GPL vmlinux 0x3d9da180 __SCK__tp_func_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x3da3190b synth_event_gen_cmd_array_start EXPORT_SYMBOL_GPL vmlinux 0x3daa2540 nf_hooks_lwtunnel_enabled +EXPORT_SYMBOL_GPL vmlinux 0x3db17d77 scsi_host_block EXPORT_SYMBOL_GPL vmlinux 0x3db48927 sbitmap_any_bit_set -EXPORT_SYMBOL_GPL vmlinux 0x3db57097 devres_find -EXPORT_SYMBOL_GPL vmlinux 0x3dbde26f sata_scr_write_flush -EXPORT_SYMBOL_GPL vmlinux 0x3dc75280 debugfs_real_fops -EXPORT_SYMBOL_GPL vmlinux 0x3dd1f36a xenbus_alloc_evtchn +EXPORT_SYMBOL_GPL vmlinux 0x3dd03ac5 nd_region_dev +EXPORT_SYMBOL_GPL vmlinux 0x3de347f2 __tracepoint_sched_cpu_capacity_tp EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final +EXPORT_SYMBOL_GPL vmlinux 0x3dede057 led_set_brightness_nopm +EXPORT_SYMBOL_GPL vmlinux 0x3df06df4 vfs_fallocate EXPORT_SYMBOL_GPL vmlinux 0x3df82d00 mce_log -EXPORT_SYMBOL_GPL vmlinux 0x3dfab8b1 crypto_remove_spawns -EXPORT_SYMBOL_GPL vmlinux 0x3dff3a31 ip6_datagram_recv_ctl -EXPORT_SYMBOL_GPL vmlinux 0x3e02eb19 spi_unregister_controller -EXPORT_SYMBOL_GPL vmlinux 0x3e093e99 blockdev_superblock -EXPORT_SYMBOL_GPL vmlinux 0x3e1da9ee init_dummy_netdev -EXPORT_SYMBOL_GPL vmlinux 0x3e2b0f52 gnttab_unmap_refs_async +EXPORT_SYMBOL_GPL vmlinux 0x3dfa8ec2 apply_to_page_range +EXPORT_SYMBOL_GPL vmlinux 0x3e0f27eb phy_get +EXPORT_SYMBOL_GPL vmlinux 0x3e265b83 regulator_set_current_limit_regmap +EXPORT_SYMBOL_GPL vmlinux 0x3e294bba dev_pm_genpd_set_performance_state +EXPORT_SYMBOL_GPL vmlinux 0x3e2e5e8d devm_pci_epc_destroy +EXPORT_SYMBOL_GPL vmlinux 0x3e304eb6 devm_pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0x3e318a09 led_trigger_rename_static +EXPORT_SYMBOL_GPL vmlinux 0x3e331827 fat_update_time +EXPORT_SYMBOL_GPL vmlinux 0x3e3c4fd1 pm_genpd_init EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer -EXPORT_SYMBOL_GPL vmlinux 0x3e8e0bd3 xenbus_probe_node +EXPORT_SYMBOL_GPL vmlinux 0x3e8334da generic_handle_domain_irq EXPORT_SYMBOL_GPL vmlinux 0x3ea5196d apei_osc_setup -EXPORT_SYMBOL_GPL vmlinux 0x3ea625ed iommu_sva_free_pasid -EXPORT_SYMBOL_GPL vmlinux 0x3eb6f2ec __devm_irq_alloc_descs -EXPORT_SYMBOL_GPL vmlinux 0x3ec2ae7b report_iommu_fault +EXPORT_SYMBOL_GPL vmlinux 0x3eaf5918 vfio_pci_core_uninit_device +EXPORT_SYMBOL_GPL vmlinux 0x3eb9e1b1 raw_unhash_sk +EXPORT_SYMBOL_GPL vmlinux 0x3ebd45ce pwm_get_chip_data +EXPORT_SYMBOL_GPL vmlinux 0x3ebec211 pm_runtime_suspended_time +EXPORT_SYMBOL_GPL vmlinux 0x3ec0c762 regulator_get_exclusive EXPORT_SYMBOL_GPL vmlinux 0x3ec93255 hv_get_isolation_type EXPORT_SYMBOL_GPL vmlinux 0x3ecbce4e find_iova -EXPORT_SYMBOL_GPL vmlinux 0x3ed6484e pm_runtime_autosuspend_expiration +EXPORT_SYMBOL_GPL vmlinux 0x3ed0ec97 blk_mq_rdma_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x3eed95c9 devm_spi_mem_dirmap_destroy EXPORT_SYMBOL_GPL vmlinux 0x3ef051c8 crypto_inc -EXPORT_SYMBOL_GPL vmlinux 0x3ef27ff7 wm831x_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x3ef70f0c call_switchdev_notifiers EXPORT_SYMBOL_GPL vmlinux 0x3efd1889 dax_direct_access -EXPORT_SYMBOL_GPL vmlinux 0x3f019985 pci_user_write_config_word -EXPORT_SYMBOL_GPL vmlinux 0x3f08e754 devm_ioremap_uc -EXPORT_SYMBOL_GPL vmlinux 0x3f133abe skb_partial_csum_set +EXPORT_SYMBOL_GPL vmlinux 0x3efec925 devm_extcon_dev_unregister EXPORT_SYMBOL_GPL vmlinux 0x3f2092e3 fl6_update_dst -EXPORT_SYMBOL_GPL vmlinux 0x3f346ac2 rtc_update_irq -EXPORT_SYMBOL_GPL vmlinux 0x3f45a05a devlink_param_unregister -EXPORT_SYMBOL_GPL vmlinux 0x3f45b183 platform_msi_domain_alloc_irqs +EXPORT_SYMBOL_GPL vmlinux 0x3f2a66f9 scsi_queue_work +EXPORT_SYMBOL_GPL vmlinux 0x3f314e26 ata_pci_sff_init_one +EXPORT_SYMBOL_GPL vmlinux 0x3f3cea04 kthread_use_mm +EXPORT_SYMBOL_GPL vmlinux 0x3f45f05b blkcg_root +EXPORT_SYMBOL_GPL vmlinux 0x3f489a8c __auxiliary_device_add EXPORT_SYMBOL_GPL vmlinux 0x3f491f49 reset_control_bulk_reset -EXPORT_SYMBOL_GPL vmlinux 0x3f577996 sysfs_group_change_owner -EXPORT_SYMBOL_GPL vmlinux 0x3f5c425d device_get_next_child_node -EXPORT_SYMBOL_GPL vmlinux 0x3f5ff95c blk_queue_rq_timeout -EXPORT_SYMBOL_GPL vmlinux 0x3f812625 __xenmem_reservation_va_mapping_reset -EXPORT_SYMBOL_GPL vmlinux 0x3f826f21 wm8350_block_read +EXPORT_SYMBOL_GPL vmlinux 0x3f5486d5 attribute_container_find_class_device +EXPORT_SYMBOL_GPL vmlinux 0x3f727ad0 device_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x3f7a251d wm8350_reg_write EXPORT_SYMBOL_GPL vmlinux 0x3f84bcd7 dax_alive EXPORT_SYMBOL_GPL vmlinux 0x3f8ab72e devlink_fmsg_bool_put -EXPORT_SYMBOL_GPL vmlinux 0x3f8e46c8 tty_buffer_unlock_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x3f94ddc5 sfp_bus_add_upstream -EXPORT_SYMBOL_GPL vmlinux 0x3fa547d3 gpiod_get_array_optional -EXPORT_SYMBOL_GPL vmlinux 0x3fa613d1 device_show_bool +EXPORT_SYMBOL_GPL vmlinux 0x3f991613 platform_bus +EXPORT_SYMBOL_GPL vmlinux 0x3f9b88b1 virtqueue_enable_cb_delayed +EXPORT_SYMBOL_GPL vmlinux 0x3f9d2890 vfio_iommu_group_get EXPORT_SYMBOL_GPL vmlinux 0x3fae6ab0 hv_vp_index -EXPORT_SYMBOL_GPL vmlinux 0x3fb58605 dma_get_any_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0x3fc0827f ipv4_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x3fc53449 thp_get_unmapped_area -EXPORT_SYMBOL_GPL vmlinux 0x3fc89e18 devm_nvmem_device_get +EXPORT_SYMBOL_GPL vmlinux 0x3fb6fea3 spi_replace_transfers +EXPORT_SYMBOL_GPL vmlinux 0x3fd2bc24 xenbus_match +EXPORT_SYMBOL_GPL vmlinux 0x3fd336c7 devm_thermal_of_cooling_device_register EXPORT_SYMBOL_GPL vmlinux 0x3fe35aea irq_bypass_unregister_consumer EXPORT_SYMBOL_GPL vmlinux 0x3fe6c346 devlink_fmsg_binary_pair_put -EXPORT_SYMBOL_GPL vmlinux 0x3ff47e62 usb_ifnum_to_if EXPORT_SYMBOL_GPL vmlinux 0x3ff82085 public_key_signature_free EXPORT_SYMBOL_GPL vmlinux 0x3ffdacf3 timerqueue_iterate_next -EXPORT_SYMBOL_GPL vmlinux 0x400238d6 class_find_device -EXPORT_SYMBOL_GPL vmlinux 0x40045ba1 dev_pm_opp_put_regulators -EXPORT_SYMBOL_GPL vmlinux 0x400748c3 blkg_conf_finish +EXPORT_SYMBOL_GPL vmlinux 0x40024eb8 relay_late_setup_files EXPORT_SYMBOL_GPL vmlinux 0x400a024b acpi_scan_lock_release -EXPORT_SYMBOL_GPL vmlinux 0x401135f2 devlink_dpipe_table_resource_set -EXPORT_SYMBOL_GPL vmlinux 0x401a4d56 inet_csk_listen_stop -EXPORT_SYMBOL_GPL vmlinux 0x40236417 xfrm_audit_state_notfound_simple +EXPORT_SYMBOL_GPL vmlinux 0x40143d67 powercap_unregister_control_type EXPORT_SYMBOL_GPL vmlinux 0x40267068 usb_anchor_resume_wakeups -EXPORT_SYMBOL_GPL vmlinux 0x402ab5f0 dev_forward_skb -EXPORT_SYMBOL_GPL vmlinux 0x402ec1e9 ip6_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x4027f281 ata_bmdma_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x40299fb4 sk_set_peek_off +EXPORT_SYMBOL_GPL vmlinux 0x4036b019 usb_queue_reset_device EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one EXPORT_SYMBOL_GPL vmlinux 0x4044ca16 pkcs7_verify -EXPORT_SYMBOL_GPL vmlinux 0x405cd78a ata_ncq_sdev_attrs +EXPORT_SYMBOL_GPL vmlinux 0x404fc4bd blk_update_request +EXPORT_SYMBOL_GPL vmlinux 0x40614006 nd_blk_region_to_dimm EXPORT_SYMBOL_GPL vmlinux 0x4065d168 pm_print_active_wakeup_sources +EXPORT_SYMBOL_GPL vmlinux 0x40677a55 dummy_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x4069a80e blk_mq_freeze_queue_wait EXPORT_SYMBOL_GPL vmlinux 0x406c4cb1 hrtimer_resolution -EXPORT_SYMBOL_GPL vmlinux 0x406e5f21 x86_vector_domain +EXPORT_SYMBOL_GPL vmlinux 0x40708672 pci_iomap_wc_range EXPORT_SYMBOL_GPL vmlinux 0x4071b517 out_of_line_wait_on_bit_timeout EXPORT_SYMBOL_GPL vmlinux 0x407af304 usb_wait_anchor_empty_timeout -EXPORT_SYMBOL_GPL vmlinux 0x407eff71 pingv6_prot -EXPORT_SYMBOL_GPL vmlinux 0x408f24c7 __netdev_watchdog_up +EXPORT_SYMBOL_GPL vmlinux 0x407de5a0 access_process_vm EXPORT_SYMBOL_GPL vmlinux 0x4099f919 tun_ptr_free -EXPORT_SYMBOL_GPL vmlinux 0x409f7149 dev_pm_opp_remove +EXPORT_SYMBOL_GPL vmlinux 0x409ecb7b devm_hwrng_register EXPORT_SYMBOL_GPL vmlinux 0x40a0aafc __flush_tlb_all -EXPORT_SYMBOL_GPL vmlinux 0x40a36839 vp_modern_get_queue_enable -EXPORT_SYMBOL_GPL vmlinux 0x40ab3edb sata_async_notification -EXPORT_SYMBOL_GPL vmlinux 0x40ab60b1 sched_trace_rq_avg_rt -EXPORT_SYMBOL_GPL vmlinux 0x40bbd56b devfreq_event_reset_event -EXPORT_SYMBOL_GPL vmlinux 0x40c861d0 dev_coredumpsg -EXPORT_SYMBOL_GPL vmlinux 0x40cc42bd thermal_of_cooling_device_register -EXPORT_SYMBOL_GPL vmlinux 0x40cea9be iomap_file_buffered_write +EXPORT_SYMBOL_GPL vmlinux 0x40a55f09 ata_pci_sff_activate_host +EXPORT_SYMBOL_GPL vmlinux 0x40b11ccf fb_bl_default_curve +EXPORT_SYMBOL_GPL vmlinux 0x40baf993 nvdimm_bus_register +EXPORT_SYMBOL_GPL vmlinux 0x40cfd1a9 ethnl_cable_test_result +EXPORT_SYMBOL_GPL vmlinux 0x40d19437 skb_send_sock_locked EXPORT_SYMBOL_GPL vmlinux 0x40d349b6 sbitmap_queue_resize -EXPORT_SYMBOL_GPL vmlinux 0x40d6d237 pm_genpd_add_device -EXPORT_SYMBOL_GPL vmlinux 0x40df4f50 power_supply_get_property -EXPORT_SYMBOL_GPL vmlinux 0x40e0c5b6 of_phy_simple_xlate -EXPORT_SYMBOL_GPL vmlinux 0x40ed1f43 gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0x40d820e2 __traceiter_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0x40ea8ed2 dm_table_device_name 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 0x40fa3796 sysfs_break_active_protection EXPORT_SYMBOL_GPL vmlinux 0x4100a662 clk_get_scaled_duty_cycle -EXPORT_SYMBOL_GPL vmlinux 0x41125b51 sk_msg_return +EXPORT_SYMBOL_GPL vmlinux 0x4113fe14 devres_destroy +EXPORT_SYMBOL_GPL vmlinux 0x41299214 ata_pci_device_do_resume EXPORT_SYMBOL_GPL vmlinux 0x4129f5ee kernel_fpu_begin_mask EXPORT_SYMBOL_GPL vmlinux 0x412bc681 ring_buffer_empty_cpu -EXPORT_SYMBOL_GPL vmlinux 0x412f22e2 __pci_reset_function_locked -EXPORT_SYMBOL_GPL vmlinux 0x413343cf crypto_stats_akcipher_encrypt -EXPORT_SYMBOL_GPL vmlinux 0x4133a18f __tracepoint_non_standard_event -EXPORT_SYMBOL_GPL vmlinux 0x41386985 cpufreq_freq_attr_scaling_available_freqs +EXPORT_SYMBOL_GPL vmlinux 0x41425ff2 vfio_init_group_dev EXPORT_SYMBOL_GPL vmlinux 0x414d119a videomode_from_timings -EXPORT_SYMBOL_GPL vmlinux 0x4151b5f2 dev_pm_genpd_resume -EXPORT_SYMBOL_GPL vmlinux 0x4156e080 clk_hw_set_rate_range -EXPORT_SYMBOL_GPL vmlinux 0x415b88ea fwnode_property_present -EXPORT_SYMBOL_GPL vmlinux 0x4161975e scsi_internal_device_unblock_nowait -EXPORT_SYMBOL_GPL vmlinux 0x4163d1a0 __SCK__tp_func_block_rq_remap -EXPORT_SYMBOL_GPL vmlinux 0x4163fdeb devlink_port_type_eth_set -EXPORT_SYMBOL_GPL vmlinux 0x417f06cc fwnode_device_is_available -EXPORT_SYMBOL_GPL vmlinux 0x41807b9b gpiod_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x414e5391 dma_request_chan_by_mask +EXPORT_SYMBOL_GPL vmlinux 0x414e81dd __static_call_update +EXPORT_SYMBOL_GPL vmlinux 0x416dc8f9 of_clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0x417401ae regmap_get_max_register +EXPORT_SYMBOL_GPL vmlinux 0x4176da84 dm_accept_partial_bio +EXPORT_SYMBOL_GPL vmlinux 0x4177bff4 __SCK__tp_func_tcp_send_reset EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval -EXPORT_SYMBOL_GPL vmlinux 0x41852545 i2c_client_type EXPORT_SYMBOL_GPL vmlinux 0x418873cc irq_bypass_register_producer EXPORT_SYMBOL_GPL vmlinux 0x419e7efd sfp_module_stop +EXPORT_SYMBOL_GPL vmlinux 0x41a270a0 __reset_control_bulk_get EXPORT_SYMBOL_GPL vmlinux 0x41b7e8e2 register_kretprobe EXPORT_SYMBOL_GPL vmlinux 0x41b9a6e6 bsg_unregister_queue EXPORT_SYMBOL_GPL vmlinux 0x41bce49a ghes_register_vendor_record_notifier -EXPORT_SYMBOL_GPL vmlinux 0x41ce998c gpiochip_add_pingroup_range -EXPORT_SYMBOL_GPL vmlinux 0x41d1d04e spi_register_controller -EXPORT_SYMBOL_GPL vmlinux 0x41d5c782 __auxiliary_device_add +EXPORT_SYMBOL_GPL vmlinux 0x41c0a893 class_destroy +EXPORT_SYMBOL_GPL vmlinux 0x41e0a915 mm_kobj EXPORT_SYMBOL_GPL vmlinux 0x41ed3cec eventfd_ctx_remove_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0x41f74b15 sysfs_groups_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x41f18a4a tcpv6_prot +EXPORT_SYMBOL_GPL vmlinux 0x420286cc sysfs_add_link_to_group EXPORT_SYMBOL_GPL vmlinux 0x42041512 i2c_get_dma_safe_msg_buf EXPORT_SYMBOL_GPL vmlinux 0x420f3d01 nvmem_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x421206b0 crypto_unregister_aeads +EXPORT_SYMBOL_GPL vmlinux 0x42102354 posix_acl_create +EXPORT_SYMBOL_GPL vmlinux 0x42132a6b edac_pci_alloc_ctl_info EXPORT_SYMBOL_GPL vmlinux 0x422e578a __SCT__tp_func_add_device_to_group -EXPORT_SYMBOL_GPL vmlinux 0x4233dd7d ohci_hub_status_data -EXPORT_SYMBOL_GPL vmlinux 0x423b168f percpu_down_write -EXPORT_SYMBOL_GPL vmlinux 0x424f76d4 pci_enable_rom +EXPORT_SYMBOL_GPL vmlinux 0x422fa465 ping_queue_rcv_skb +EXPORT_SYMBOL_GPL vmlinux 0x4235cdb9 serial8250_do_set_mctrl +EXPORT_SYMBOL_GPL vmlinux 0x42386d64 skcipher_alloc_instance_simple +EXPORT_SYMBOL_GPL vmlinux 0x424b3d3a __inet_twsk_schedule EXPORT_SYMBOL_GPL vmlinux 0x42635d55 pm_suspend_global_flags -EXPORT_SYMBOL_GPL vmlinux 0x426408c3 phy_led_triggers_unregister EXPORT_SYMBOL_GPL vmlinux 0x426452a3 acpi_evaluation_failure_warn -EXPORT_SYMBOL_GPL vmlinux 0x4269b784 usb_hcd_giveback_urb -EXPORT_SYMBOL_GPL vmlinux 0x426f99ca class_interface_register -EXPORT_SYMBOL_GPL vmlinux 0x427ddea8 phy_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0x4266e1e0 klp_enable_patch EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active -EXPORT_SYMBOL_GPL vmlinux 0x4299842a regmap_noinc_read -EXPORT_SYMBOL_GPL vmlinux 0x429f7337 usb_match_id -EXPORT_SYMBOL_GPL vmlinux 0x42bd639f tracepoint_probe_register_prio_may_exist -EXPORT_SYMBOL_GPL vmlinux 0x42cb5d94 clean_acked_data_enable +EXPORT_SYMBOL_GPL vmlinux 0x42841e7a __devm_spi_alloc_controller +EXPORT_SYMBOL_GPL vmlinux 0x42854f58 regulator_set_voltage_time_sel +EXPORT_SYMBOL_GPL vmlinux 0x4286372e intel_pinctrl_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0x42968696 usb_hub_find_child +EXPORT_SYMBOL_GPL vmlinux 0x429813ed raw_seq_start +EXPORT_SYMBOL_GPL vmlinux 0x42aa6a35 pci_hp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0x42aadcba device_get_match_data +EXPORT_SYMBOL_GPL vmlinux 0x42ac10e7 sata_lpm_ignore_phy_events +EXPORT_SYMBOL_GPL vmlinux 0x42b0b3a9 regulator_map_voltage_pickable_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x42b55f8f spi_mem_default_supports_op +EXPORT_SYMBOL_GPL vmlinux 0x42b8779a lookup_address_in_mm +EXPORT_SYMBOL_GPL vmlinux 0x42ba8754 synth_event_trace_array +EXPORT_SYMBOL_GPL vmlinux 0x42c371fd device_show_bool +EXPORT_SYMBOL_GPL vmlinux 0x42c44961 dma_buf_vmap +EXPORT_SYMBOL_GPL vmlinux 0x42c54a4d tpm_chip_stop +EXPORT_SYMBOL_GPL vmlinux 0x42d211a6 devm_regulator_register_notifier EXPORT_SYMBOL_GPL vmlinux 0x42de5b6b srcu_init_notifier_head EXPORT_SYMBOL_GPL vmlinux 0x42e445f6 clk_mux_val_to_index EXPORT_SYMBOL_GPL vmlinux 0x42e9d0da ring_buffer_unlock_commit -EXPORT_SYMBOL_GPL vmlinux 0x42ef2298 page_cache_async_ra +EXPORT_SYMBOL_GPL vmlinux 0x42ebc55b bio_alloc_kiocb +EXPORT_SYMBOL_GPL vmlinux 0x42f19685 pci_find_ht_capability EXPORT_SYMBOL_GPL vmlinux 0x42f728aa mctrl_gpio_get_outputs -EXPORT_SYMBOL_GPL vmlinux 0x42f8bfdf usb_asmedia_modifyflowcontrol EXPORT_SYMBOL_GPL vmlinux 0x430d88ec __traceiter_arm_event -EXPORT_SYMBOL_GPL vmlinux 0x43197ab8 perf_aux_output_skip -EXPORT_SYMBOL_GPL vmlinux 0x43203a55 zap_vma_ptes -EXPORT_SYMBOL_GPL vmlinux 0x4329a9b5 skb_copy_ubufs -EXPORT_SYMBOL_GPL vmlinux 0x432a2c1f xenbus_dev_groups -EXPORT_SYMBOL_GPL vmlinux 0x432a7ded gpiochip_unlock_as_irq -EXPORT_SYMBOL_GPL vmlinux 0x432e0078 gnttab_page_cache_init -EXPORT_SYMBOL_GPL vmlinux 0x434d7601 inet6_sk_rebuild_header -EXPORT_SYMBOL_GPL vmlinux 0x43519f58 usb_phy_set_charger_current +EXPORT_SYMBOL_GPL vmlinux 0x430d8f7c msg_zerocopy_alloc +EXPORT_SYMBOL_GPL vmlinux 0x432e3abc devm_regulator_register +EXPORT_SYMBOL_GPL vmlinux 0x432f8a89 tty_port_default_client_ops +EXPORT_SYMBOL_GPL vmlinux 0x4334b524 watchdog_init_timeout +EXPORT_SYMBOL_GPL vmlinux 0x4336c4e4 mmc_send_abort_tuning +EXPORT_SYMBOL_GPL vmlinux 0x4339d7f1 __hvc_resize +EXPORT_SYMBOL_GPL vmlinux 0x4357074b fpstate_clear_xstate_component +EXPORT_SYMBOL_GPL vmlinux 0x4358d8bb irq_domain_disconnect_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0x435bffcd kthread_cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x4361287e irq_create_of_mapping EXPORT_SYMBOL_GPL vmlinux 0x436d817f mpi_clear_bit -EXPORT_SYMBOL_GPL vmlinux 0x4378a4d8 gpiochip_add_data_with_key +EXPORT_SYMBOL_GPL vmlinux 0x437250b6 sched_setattr_nocheck EXPORT_SYMBOL_GPL vmlinux 0x437eb1df ipv6_mod_enabled -EXPORT_SYMBOL_GPL vmlinux 0x4383285e dma_request_chan_by_mask -EXPORT_SYMBOL_GPL vmlinux 0x43866a3b screen_glyph_unicode -EXPORT_SYMBOL_GPL vmlinux 0x438b992a iomap_page_mkwrite +EXPORT_SYMBOL_GPL vmlinux 0x43837aa7 sock_diag_save_cookie +EXPORT_SYMBOL_GPL vmlinux 0x4387159a pwm_request EXPORT_SYMBOL_GPL vmlinux 0x438d8df2 iova_cache_get -EXPORT_SYMBOL_GPL vmlinux 0x4397d796 of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x439873b0 blk_mq_debugfs_rq_show EXPORT_SYMBOL_GPL vmlinux 0x43aa319e lease_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x43b550cd led_set_brightness_sync -EXPORT_SYMBOL_GPL vmlinux 0x43c84aa0 xdp_rxq_info_unreg -EXPORT_SYMBOL_GPL vmlinux 0x43d9c7bb to_nvdimm_bus_dev -EXPORT_SYMBOL_GPL vmlinux 0x43e31aaf xdp_build_skb_from_frame -EXPORT_SYMBOL_GPL vmlinux 0x43e5032e __put_task_struct -EXPORT_SYMBOL_GPL vmlinux 0x43ec3bc7 __platform_create_bundle -EXPORT_SYMBOL_GPL vmlinux 0x43ed317f spi_add_device +EXPORT_SYMBOL_GPL vmlinux 0x43b563ef ipv6_stub +EXPORT_SYMBOL_GPL vmlinux 0x43cb5da5 sata_pmp_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x43daecf9 xfrm_unregister_translator +EXPORT_SYMBOL_GPL vmlinux 0x43eae7c3 device_find_child EXPORT_SYMBOL_GPL vmlinux 0x43f56e82 ata_xfer_mode2shift EXPORT_SYMBOL_GPL vmlinux 0x43f81957 clk_round_rate EXPORT_SYMBOL_GPL vmlinux 0x43f92edd wait_for_initramfs -EXPORT_SYMBOL_GPL vmlinux 0x4400b0bf pci_epc_raise_irq +EXPORT_SYMBOL_GPL vmlinux 0x43ff0f85 fs_dax_get_by_bdev EXPORT_SYMBOL_GPL vmlinux 0x4401e6c2 mpi_cmpabs -EXPORT_SYMBOL_GPL vmlinux 0x4418acd3 perf_event_update_userpage +EXPORT_SYMBOL_GPL vmlinux 0x4405b031 nvdimm_kobj +EXPORT_SYMBOL_GPL vmlinux 0x442ad4c5 crypto_spawn_tfm EXPORT_SYMBOL_GPL vmlinux 0x442deaa9 poll_state_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0x443ab7e6 debugfs_lookup -EXPORT_SYMBOL_GPL vmlinux 0x443afaea fib6_new_table -EXPORT_SYMBOL_GPL vmlinux 0x4442cc60 mddev_init -EXPORT_SYMBOL_GPL vmlinux 0x44441854 usb_poison_urb +EXPORT_SYMBOL_GPL vmlinux 0x443fa8b1 debugfs_create_bool +EXPORT_SYMBOL_GPL vmlinux 0x4441450b serdev_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0x444d1547 __xenbus_register_frontend EXPORT_SYMBOL_GPL vmlinux 0x445a09c0 nvmem_device_cell_write -EXPORT_SYMBOL_GPL vmlinux 0x445d1874 pcie_port_find_device -EXPORT_SYMBOL_GPL vmlinux 0x447aa570 extcon_get_edev_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x447b0962 of_icc_get_by_index +EXPORT_SYMBOL_GPL vmlinux 0x445aab3f node_to_amd_nb +EXPORT_SYMBOL_GPL vmlinux 0x445e181c call_switchdev_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x44634590 for_each_kernel_tracepoint EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe -EXPORT_SYMBOL_GPL vmlinux 0x448a3f62 switchdev_handle_port_obj_del -EXPORT_SYMBOL_GPL vmlinux 0x44a15a8a devlink_register -EXPORT_SYMBOL_GPL vmlinux 0x44a9c5e6 ata_pci_device_do_resume -EXPORT_SYMBOL_GPL vmlinux 0x44af3940 iommu_group_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x44b0a91b dev_pm_opp_get_required_pstate +EXPORT_SYMBOL_GPL vmlinux 0x4491f858 devm_led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x44b6ed6a ata_bmdma_port_start EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout -EXPORT_SYMBOL_GPL vmlinux 0x44c00581 pm_clk_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0x44c3bda2 crypto_alg_extsize +EXPORT_SYMBOL_GPL vmlinux 0x44beb85a iopf_queue_add_device EXPORT_SYMBOL_GPL vmlinux 0x44cf8cf0 blk_zone_cond_str EXPORT_SYMBOL_GPL vmlinux 0x44e1e9aa balloon_stats -EXPORT_SYMBOL_GPL vmlinux 0x44e6bbdd bpf_map_inc -EXPORT_SYMBOL_GPL vmlinux 0x44fd28bc vfs_read EXPORT_SYMBOL_GPL vmlinux 0x450110e8 perf_assign_events -EXPORT_SYMBOL_GPL vmlinux 0x450581f6 crypto_grab_akcipher EXPORT_SYMBOL_GPL vmlinux 0x4507f4a8 cpuhp_tasks_frozen -EXPORT_SYMBOL_GPL vmlinux 0x450be00a fwnode_get_nth_parent -EXPORT_SYMBOL_GPL vmlinux 0x45304d5b driver_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x450a5f9a tracing_snapshot_cond +EXPORT_SYMBOL_GPL vmlinux 0x4519fe2c power_supply_set_input_current_limit_from_supplier +EXPORT_SYMBOL_GPL vmlinux 0x452149e8 switchdev_port_obj_add +EXPORT_SYMBOL_GPL vmlinux 0x452f258a dev_coredumpv EXPORT_SYMBOL_GPL vmlinux 0x4531624f usb_decode_ctrl EXPORT_SYMBOL_GPL vmlinux 0x4531ab62 copy_from_kernel_nofault EXPORT_SYMBOL_GPL vmlinux 0x4541fe0d mtrr_state -EXPORT_SYMBOL_GPL vmlinux 0x45455977 pci_set_host_bridge_release +EXPORT_SYMBOL_GPL vmlinux 0x45553be5 gpiod_is_active_low EXPORT_SYMBOL_GPL vmlinux 0x45558f56 clk_unregister_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0x45579ebe ata_do_set_mode -EXPORT_SYMBOL_GPL vmlinux 0x455b17dd serdev_device_open -EXPORT_SYMBOL_GPL vmlinux 0x4568b33e handle_mm_fault +EXPORT_SYMBOL_GPL vmlinux 0x4562be2a security_kernel_read_file EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list -EXPORT_SYMBOL_GPL vmlinux 0x4576a743 devm_reset_control_array_get +EXPORT_SYMBOL_GPL vmlinux 0x4586fc80 usb_submit_urb +EXPORT_SYMBOL_GPL vmlinux 0x458969fb tcp_reno_cong_avoid +EXPORT_SYMBOL_GPL vmlinux 0x458a9795 iommu_group_get +EXPORT_SYMBOL_GPL vmlinux 0x458fbdd6 tracepoint_probe_unregister +EXPORT_SYMBOL_GPL vmlinux 0x45930362 sk_psock_drop EXPORT_SYMBOL_GPL vmlinux 0x459e6151 mm_unaccount_pinned_pages -EXPORT_SYMBOL_GPL vmlinux 0x45a87e92 watchdog_notify_pretimeout +EXPORT_SYMBOL_GPL vmlinux 0x45a67abb sched_trace_cfs_rq_avg +EXPORT_SYMBOL_GPL vmlinux 0x45a866e7 wb_writeout_inc +EXPORT_SYMBOL_GPL vmlinux 0x45ab642e __devm_clk_hw_register_mux +EXPORT_SYMBOL_GPL vmlinux 0x45c202d4 scsi_host_busy_iter +EXPORT_SYMBOL_GPL vmlinux 0x45cbdea9 wakeup_source_add +EXPORT_SYMBOL_GPL vmlinux 0x45cfb5c4 pci_epf_free_space EXPORT_SYMBOL_GPL vmlinux 0x45d14bdf hypercall_page -EXPORT_SYMBOL_GPL vmlinux 0x45d282d4 dev_pm_get_subsys_data -EXPORT_SYMBOL_GPL vmlinux 0x45defd80 platform_irq_count -EXPORT_SYMBOL_GPL vmlinux 0x45f24875 ndo_dflt_bridge_getlink -EXPORT_SYMBOL_GPL vmlinux 0x45fa01a4 hypervisor_kobj -EXPORT_SYMBOL_GPL vmlinux 0x45fc4b17 ata_sas_queuecmd -EXPORT_SYMBOL_GPL vmlinux 0x45fff2ba serial8250_do_startup +EXPORT_SYMBOL_GPL vmlinux 0x45f9bebc mptcp_subflow_init_cookie_req EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue EXPORT_SYMBOL_GPL vmlinux 0x46030074 __hrtimer_get_remaining -EXPORT_SYMBOL_GPL vmlinux 0x460bea15 ata_bmdma_setup -EXPORT_SYMBOL_GPL vmlinux 0x4627dbfa blk_queue_required_elevator_features -EXPORT_SYMBOL_GPL vmlinux 0x462999fc virtio_device_restore -EXPORT_SYMBOL_GPL vmlinux 0x462b9045 synth_event_trace_array -EXPORT_SYMBOL_GPL vmlinux 0x462e0b63 nvmem_cell_read_u16 +EXPORT_SYMBOL_GPL vmlinux 0x461b1f63 pm_generic_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x462525ad iommu_report_device_fault EXPORT_SYMBOL_GPL vmlinux 0x463d8290 __irq_alloc_descs -EXPORT_SYMBOL_GPL vmlinux 0x4641de21 rtc_class_open -EXPORT_SYMBOL_GPL vmlinux 0x46577f5e phy_pm_runtime_get -EXPORT_SYMBOL_GPL vmlinux 0x465788a1 pinctrl_remove_gpio_range -EXPORT_SYMBOL_GPL vmlinux 0x4670529b crypto_shash_final -EXPORT_SYMBOL_GPL vmlinux 0x4675a3c5 vp_modern_config_vector +EXPORT_SYMBOL_GPL vmlinux 0x4642e499 ipv4_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x464bacf2 dma_buf_map_attachment +EXPORT_SYMBOL_GPL vmlinux 0x465bb8a5 dax_region_put +EXPORT_SYMBOL_GPL vmlinux 0x4663aac1 devm_phy_package_join +EXPORT_SYMBOL_GPL vmlinux 0x46761abd sk_msg_alloc +EXPORT_SYMBOL_GPL vmlinux 0x4681dcd6 ehci_reset EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4694f9e0 bpf_trace_run11 -EXPORT_SYMBOL_GPL vmlinux 0x46a11590 devlink_trap_groups_unregister -EXPORT_SYMBOL_GPL vmlinux 0x46a1e2d0 ata_bmdma_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x469593bf bpf_trace_run5 EXPORT_SYMBOL_GPL vmlinux 0x46a4b118 hrtimer_cancel EXPORT_SYMBOL_GPL vmlinux 0x46a6c9ef hv_get_tsc_page -EXPORT_SYMBOL_GPL vmlinux 0x46b24fe0 usb_get_intf -EXPORT_SYMBOL_GPL vmlinux 0x46b3cbda ata_sff_qc_fill_rtf -EXPORT_SYMBOL_GPL vmlinux 0x46b8e6c5 ahash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x46ad43cd dm_get_queue_limits +EXPORT_SYMBOL_GPL vmlinux 0x46aebef3 tpm_tis_core_init +EXPORT_SYMBOL_GPL vmlinux 0x46c324e7 acpi_subsys_suspend_late EXPORT_SYMBOL_GPL vmlinux 0x46c5be22 clk_multiplier_ops -EXPORT_SYMBOL_GPL vmlinux 0x46cb2e9e fib_nh_common_init -EXPORT_SYMBOL_GPL vmlinux 0x46d05cdb inet_twsk_hashdance -EXPORT_SYMBOL_GPL vmlinux 0x46e0f0d8 fat_setattr EXPORT_SYMBOL_GPL vmlinux 0x46f42be0 devlink_fmsg_u8_put -EXPORT_SYMBOL_GPL vmlinux 0x470082e4 dm_table_device_name -EXPORT_SYMBOL_GPL vmlinux 0x471823a5 regmap_irq_get_domain +EXPORT_SYMBOL_GPL vmlinux 0x4720e528 ata_host_register EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request -EXPORT_SYMBOL_GPL vmlinux 0x472ab2ef shmem_truncate_range -EXPORT_SYMBOL_GPL vmlinux 0x473ef09b __clk_hw_register_divider -EXPORT_SYMBOL_GPL vmlinux 0x4748bea8 crypto_stats_compress -EXPORT_SYMBOL_GPL vmlinux 0x47536c58 acpi_unbind_one -EXPORT_SYMBOL_GPL vmlinux 0x47555cc0 i2c_acpi_client_count -EXPORT_SYMBOL_GPL vmlinux 0x475c454f kthread_queue_work -EXPORT_SYMBOL_GPL vmlinux 0x47614e13 user_describe +EXPORT_SYMBOL_GPL vmlinux 0x4727b604 ata_pci_bmdma_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0x47607bad regmap_bulk_read EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4772b841 crypto_stats_aead_decrypt -EXPORT_SYMBOL_GPL vmlinux 0x477ccfa3 blk_mq_debugfs_rq_show +EXPORT_SYMBOL_GPL vmlinux 0x4764a0fd devlink_port_params_register +EXPORT_SYMBOL_GPL vmlinux 0x4768a013 uart_xchar_out EXPORT_SYMBOL_GPL vmlinux 0x47884890 system_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0x478bf21e dev_pm_opp_set_rate EXPORT_SYMBOL_GPL vmlinux 0x478debf5 phy_10gbit_fec_features EXPORT_SYMBOL_GPL vmlinux 0x478e81f8 tcp_orphan_count EXPORT_SYMBOL_GPL vmlinux 0x4791cb91 apei_mce_report_mem_error EXPORT_SYMBOL_GPL vmlinux 0x479f7d4b clk_bulk_disable EXPORT_SYMBOL_GPL vmlinux 0x47aad3b9 have_governor_per_policy +EXPORT_SYMBOL_GPL vmlinux 0x47adce23 software_node_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x47ae1711 edac_mc_free +EXPORT_SYMBOL_GPL vmlinux 0x47b41aa8 __regmap_init +EXPORT_SYMBOL_GPL vmlinux 0x47c94065 pwmchip_add EXPORT_SYMBOL_GPL vmlinux 0x47d0eea2 acpi_lpat_temp_to_raw -EXPORT_SYMBOL_GPL vmlinux 0x47db3315 gpiod_get_value +EXPORT_SYMBOL_GPL vmlinux 0x47d5eaad sdio_writeb_readb EXPORT_SYMBOL_GPL vmlinux 0x47de0dc7 clk_unregister_mux -EXPORT_SYMBOL_GPL vmlinux 0x47e23fbb clk_hw_round_rate -EXPORT_SYMBOL_GPL vmlinux 0x4800f4ae unregister_wide_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x4802b89b device_create_file EXPORT_SYMBOL_GPL vmlinux 0x480305ca kmsg_dump_rewind +EXPORT_SYMBOL_GPL vmlinux 0x48099119 pcie_reset_flr +EXPORT_SYMBOL_GPL vmlinux 0x480ad5d5 pinctrl_add_gpio_ranges +EXPORT_SYMBOL_GPL vmlinux 0x480cad7d ata_sff_wait_after_reset EXPORT_SYMBOL_GPL vmlinux 0x481f9b7d mpi_mulm -EXPORT_SYMBOL_GPL vmlinux 0x4820f241 dax_inode +EXPORT_SYMBOL_GPL vmlinux 0x4826b679 devlink_port_type_clear EXPORT_SYMBOL_GPL vmlinux 0x4828e77b acpi_scan_lock_acquire -EXPORT_SYMBOL_GPL vmlinux 0x482bd651 __auxiliary_driver_register -EXPORT_SYMBOL_GPL vmlinux 0x48353c36 extcon_set_state -EXPORT_SYMBOL_GPL vmlinux 0x48485a4e __traceiter_detach_device_from_domain -EXPORT_SYMBOL_GPL vmlinux 0x484d2461 iommu_sva_alloc_pasid -EXPORT_SYMBOL_GPL vmlinux 0x4852fd62 virtqueue_poll -EXPORT_SYMBOL_GPL vmlinux 0x4854e2d5 devm_pinctrl_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4857e05f subsys_dev_iter_init -EXPORT_SYMBOL_GPL vmlinux 0x485d1c62 l3mdev_master_upper_ifindex_by_index_rcu -EXPORT_SYMBOL_GPL vmlinux 0x485f6e58 extcon_get_extcon_dev -EXPORT_SYMBOL_GPL vmlinux 0x4864f5df crypto_hash_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x482db343 __platform_register_drivers +EXPORT_SYMBOL_GPL vmlinux 0x482e1eae serdev_device_write_room +EXPORT_SYMBOL_GPL vmlinux 0x483af0c6 wbt_disable_default +EXPORT_SYMBOL_GPL vmlinux 0x4853096a devlink_port_attrs_pci_pf_set EXPORT_SYMBOL_GPL vmlinux 0x486dedc3 ghes_unregister_vendor_record_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4886dbcd mmc_crypto_prepare_req +EXPORT_SYMBOL_GPL vmlinux 0x487af786 __tracepoint_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0x48819bf5 wm8350_read_auxadc +EXPORT_SYMBOL_GPL vmlinux 0x488bbd80 fb_deferred_io_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x489726b6 __nf_ip6_route +EXPORT_SYMBOL_GPL vmlinux 0x489e4513 __phy_modify_mmd +EXPORT_SYMBOL_GPL vmlinux 0x48a09235 __raw_v4_lookup EXPORT_SYMBOL_GPL vmlinux 0x48a3a923 pkcs7_get_content_data EXPORT_SYMBOL_GPL vmlinux 0x48a3d20b mctrl_gpio_get -EXPORT_SYMBOL_GPL vmlinux 0x48a5de4d virtio_max_dma_size -EXPORT_SYMBOL_GPL vmlinux 0x48afa7fe dev_attr_ncq_prio_supported -EXPORT_SYMBOL_GPL vmlinux 0x48b83a47 crypto_shash_tfm_digest -EXPORT_SYMBOL_GPL vmlinux 0x48b989b9 debugfs_remove -EXPORT_SYMBOL_GPL vmlinux 0x48c7efb5 mbox_request_channel -EXPORT_SYMBOL_GPL vmlinux 0x48cbb970 usb_unpoison_urb -EXPORT_SYMBOL_GPL vmlinux 0x48e3a047 evict_inodes -EXPORT_SYMBOL_GPL vmlinux 0x48e7c760 dw_pcie_ep_init_complete -EXPORT_SYMBOL_GPL vmlinux 0x48e96d8b rio_map_inb_region +EXPORT_SYMBOL_GPL vmlinux 0x48b1ee92 devm_led_classdev_register_ext +EXPORT_SYMBOL_GPL vmlinux 0x48b957f4 tpm_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0x48c1e465 cpufreq_cpu_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x48ca2245 fwnode_graph_get_remote_node +EXPORT_SYMBOL_GPL vmlinux 0x48d22e9d spi_res_release +EXPORT_SYMBOL_GPL vmlinux 0x48d87fe6 wm8400_reset_codec_reg_cache +EXPORT_SYMBOL_GPL vmlinux 0x48e4b544 rtc_update_irq +EXPORT_SYMBOL_GPL vmlinux 0x48ee4182 unwind_get_return_address EXPORT_SYMBOL_GPL vmlinux 0x48f49400 apei_hest_parse -EXPORT_SYMBOL_GPL vmlinux 0x48faa91a mptcp_get_reset_option -EXPORT_SYMBOL_GPL vmlinux 0x49013ac1 power_supply_changed -EXPORT_SYMBOL_GPL vmlinux 0x49035d36 tpm_default_chip -EXPORT_SYMBOL_GPL vmlinux 0x4918adbc pci_disable_rom -EXPORT_SYMBOL_GPL vmlinux 0x49190271 trace_array_get_by_name -EXPORT_SYMBOL_GPL vmlinux 0x491fecee crypto_register_rngs +EXPORT_SYMBOL_GPL vmlinux 0x490398af tpm_send +EXPORT_SYMBOL_GPL vmlinux 0x49075c10 regulator_get_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0x490a692f ehci_handshake +EXPORT_SYMBOL_GPL vmlinux 0x490c9fb5 attribute_container_unregister EXPORT_SYMBOL_GPL vmlinux 0x49242bc7 freezer_cgrp_subsys_on_dfl_key EXPORT_SYMBOL_GPL vmlinux 0x4934bdd0 crypto_check_attr_type -EXPORT_SYMBOL_GPL vmlinux 0x4935ea6f inet6_lookup_listener EXPORT_SYMBOL_GPL vmlinux 0x4939ebcd numa_map_to_online_node -EXPORT_SYMBOL_GPL vmlinux 0x493b039c transport_class_register -EXPORT_SYMBOL_GPL vmlinux 0x495868ad do_tcp_sendpages +EXPORT_SYMBOL_GPL vmlinux 0x4951846b adp5520_unregister_notifier EXPORT_SYMBOL_GPL vmlinux 0x495a4221 __SCT__tp_func_rpm_return_int -EXPORT_SYMBOL_GPL vmlinux 0x495badbb rio_request_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x495b3323 devfreq_cooling_unregister EXPORT_SYMBOL_GPL vmlinux 0x49608959 migrate_disable -EXPORT_SYMBOL_GPL vmlinux 0x496678c5 bpf_preload_ops -EXPORT_SYMBOL_GPL vmlinux 0x4974c1ef regulator_is_equal -EXPORT_SYMBOL_GPL vmlinux 0x497584e4 aead_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x498358e0 __unwind_start +EXPORT_SYMBOL_GPL vmlinux 0x4968cfcc public_key_subtype +EXPORT_SYMBOL_GPL vmlinux 0x4982166f regulator_is_supported_voltage EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue EXPORT_SYMBOL_GPL vmlinux 0x49951708 sev_enable_key -EXPORT_SYMBOL_GPL vmlinux 0x4995207e sysfs_create_link -EXPORT_SYMBOL_GPL vmlinux 0x49955dcf iomap_writepage -EXPORT_SYMBOL_GPL vmlinux 0x4999eb43 regulator_allow_bypass -EXPORT_SYMBOL_GPL vmlinux 0x49b32443 pm_runtime_allow -EXPORT_SYMBOL_GPL vmlinux 0x49c117d2 kgdb_register_io_module -EXPORT_SYMBOL_GPL vmlinux 0x49c14a61 ex_handler_fault -EXPORT_SYMBOL_GPL vmlinux 0x49c31383 espintcp_push_skb +EXPORT_SYMBOL_GPL vmlinux 0x49beba6e relay_file_operations +EXPORT_SYMBOL_GPL vmlinux 0x49c5f49e devm_clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0x49c78d02 xdp_master_redirect +EXPORT_SYMBOL_GPL vmlinux 0x49c9cc26 ata_platform_remove_one EXPORT_SYMBOL_GPL vmlinux 0x49cd25ed alloc_workqueue -EXPORT_SYMBOL_GPL vmlinux 0x49cdd750 blkcg_print_blkgs -EXPORT_SYMBOL_GPL vmlinux 0x49cff463 uart_try_toggle_sysrq -EXPORT_SYMBOL_GPL vmlinux 0x49db6226 usb_set_configuration -EXPORT_SYMBOL_GPL vmlinux 0x49de71b0 regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x49cd90a0 dev_attr_em_message_type +EXPORT_SYMBOL_GPL vmlinux 0x49e18b33 pci_bus_add_device EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0x49eb25e0 syscon_node_to_regmap -EXPORT_SYMBOL_GPL vmlinux 0x49f1f435 led_classdev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x49fc57db serial8250_release_dma -EXPORT_SYMBOL_GPL vmlinux 0x4a0113d6 skb_send_sock_locked -EXPORT_SYMBOL_GPL vmlinux 0x4a033a02 device_set_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0x4a09b734 i2c_acpi_find_adapter_by_handle EXPORT_SYMBOL_GPL vmlinux 0x4a17ed66 sysrq_mask -EXPORT_SYMBOL_GPL vmlinux 0x4a19e05b uprobe_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4a326a1c gov_attr_set_put +EXPORT_SYMBOL_GPL vmlinux 0x4a182eaa serial8250_get_port +EXPORT_SYMBOL_GPL vmlinux 0x4a2a39fb gpiochip_disable_irq EXPORT_SYMBOL_GPL vmlinux 0x4a420d09 acpi_bus_detach_private_data -EXPORT_SYMBOL_GPL vmlinux 0x4a448250 proc_get_parent_data -EXPORT_SYMBOL_GPL vmlinux 0x4a4a9a13 pinctrl_dev_get_devname -EXPORT_SYMBOL_GPL vmlinux 0x4a64f73d icc_provider_del -EXPORT_SYMBOL_GPL vmlinux 0x4a72b17d device_dma_supported -EXPORT_SYMBOL_GPL vmlinux 0x4a842bd5 vfs_setlease -EXPORT_SYMBOL_GPL vmlinux 0x4ab090aa devres_open_group -EXPORT_SYMBOL_GPL vmlinux 0x4abeec82 power_supply_set_property -EXPORT_SYMBOL_GPL vmlinux 0x4ac7fe90 driver_attach -EXPORT_SYMBOL_GPL vmlinux 0x4acb7940 pm_generic_restore_noirq -EXPORT_SYMBOL_GPL vmlinux 0x4ad28174 acpi_dma_request_slave_chan_by_name -EXPORT_SYMBOL_GPL vmlinux 0x4ad356b9 pci_d3cold_enable -EXPORT_SYMBOL_GPL vmlinux 0x4add1f13 class_compat_remove_link -EXPORT_SYMBOL_GPL vmlinux 0x4addd291 fixed_phy_set_link_update -EXPORT_SYMBOL_GPL vmlinux 0x4ade66d1 ata_sff_qc_issue -EXPORT_SYMBOL_GPL vmlinux 0x4af4330a md_kick_rdev_from_array -EXPORT_SYMBOL_GPL vmlinux 0x4b004d18 dev_pm_opp_set_opp -EXPORT_SYMBOL_GPL vmlinux 0x4b066739 udp6_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x4b2a7ca6 scsi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x4b4a19b5 blk_req_zone_write_trylock +EXPORT_SYMBOL_GPL vmlinux 0x4a58ec47 __tracepoint_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0x4a6075e8 __phy_modify +EXPORT_SYMBOL_GPL vmlinux 0x4a6f6d0c rio_mport_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x4a739d67 ahash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x4a8d5c25 invalidate_inode_pages2_range +EXPORT_SYMBOL_GPL vmlinux 0x4a945228 bio_end_io_acct_remapped +EXPORT_SYMBOL_GPL vmlinux 0x4aa410b5 irq_create_fwspec_mapping +EXPORT_SYMBOL_GPL vmlinux 0x4ab1f7af preempt_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x4abe32d8 pm_genpd_remove +EXPORT_SYMBOL_GPL vmlinux 0x4ad6515e ip_route_output_flow +EXPORT_SYMBOL_GPL vmlinux 0x4af67cbf anon_inode_getfd +EXPORT_SYMBOL_GPL vmlinux 0x4af7d855 device_add_groups +EXPORT_SYMBOL_GPL vmlinux 0x4b08a1db irq_domain_alloc_irqs_parent +EXPORT_SYMBOL_GPL vmlinux 0x4b3e593e pci_epc_put EXPORT_SYMBOL_GPL vmlinux 0x4b51f74c ata_xfer_mode2mask EXPORT_SYMBOL_GPL vmlinux 0x4b56ce05 xenmem_reservation_increase EXPORT_SYMBOL_GPL vmlinux 0x4b5acf74 rhashtable_init -EXPORT_SYMBOL_GPL vmlinux 0x4b6045c0 nl_table +EXPORT_SYMBOL_GPL vmlinux 0x4b65ddb2 spi_bus_lock +EXPORT_SYMBOL_GPL vmlinux 0x4b6936dc ata_port_abort EXPORT_SYMBOL_GPL vmlinux 0x4b72009e dynamic_debug_exec_queries -EXPORT_SYMBOL_GPL vmlinux 0x4b753a65 br_fdb_test_addr_hook EXPORT_SYMBOL_GPL vmlinux 0x4b762828 start_thread -EXPORT_SYMBOL_GPL vmlinux 0x4b840969 synth_event_trace_start +EXPORT_SYMBOL_GPL vmlinux 0x4b80ed7f msg_zerocopy_callback +EXPORT_SYMBOL_GPL vmlinux 0x4b90573d ata_sas_scsi_ioctl EXPORT_SYMBOL_GPL vmlinux 0x4b931968 xen_features -EXPORT_SYMBOL_GPL vmlinux 0x4b9c8049 __mmu_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x4bc0831d __scsi_init_queue +EXPORT_SYMBOL_GPL vmlinux 0x4b93207c rio_enable_rx_tx_port +EXPORT_SYMBOL_GPL vmlinux 0x4b93de82 blk_mq_complete_request_remote +EXPORT_SYMBOL_GPL vmlinux 0x4b981986 skb_mpls_push +EXPORT_SYMBOL_GPL vmlinux 0x4bbe276f dw_pcie_ep_init_complete +EXPORT_SYMBOL_GPL vmlinux 0x4bc34ec1 gpiochip_generic_config EXPORT_SYMBOL_GPL vmlinux 0x4bc8727f xen_balloon_init +EXPORT_SYMBOL_GPL vmlinux 0x4bd3be7c __SCK__tp_func_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0x4bd45d9e mddev_unlock EXPORT_SYMBOL_GPL vmlinux 0x4bd6f08b misc_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x4bd9e3cf genphy_c45_read_mdix -EXPORT_SYMBOL_GPL vmlinux 0x4bf38838 ata_host_register -EXPORT_SYMBOL_GPL vmlinux 0x4c0a6b09 component_master_del -EXPORT_SYMBOL_GPL vmlinux 0x4c1e29c0 rt_mutex_trylock +EXPORT_SYMBOL_GPL vmlinux 0x4beef684 regulator_get_linear_step +EXPORT_SYMBOL_GPL vmlinux 0x4bf4108a blkdev_nr_zones +EXPORT_SYMBOL_GPL vmlinux 0x4c024761 dw_pcie_host_deinit +EXPORT_SYMBOL_GPL vmlinux 0x4c0fc64d vfio_group_iommu_domain +EXPORT_SYMBOL_GPL vmlinux 0x4c13038b icc_put +EXPORT_SYMBOL_GPL vmlinux 0x4c1a55e5 smp_ops EXPORT_SYMBOL_GPL vmlinux 0x4c2c0ea7 evtchn_make_refcounted -EXPORT_SYMBOL_GPL vmlinux 0x4c429fe9 pm_clk_remove_clk -EXPORT_SYMBOL_GPL vmlinux 0x4c48bcd7 debugfs_create_blob EXPORT_SYMBOL_GPL vmlinux 0x4c49f1de hv_clock_per_cpu +EXPORT_SYMBOL_GPL vmlinux 0x4c4c319b of_phy_get EXPORT_SYMBOL_GPL vmlinux 0x4c549b36 __traceiter_xhci_dbg_quirks -EXPORT_SYMBOL_GPL vmlinux 0x4c6abd66 gpiochip_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0x4c5ac6e3 class_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x4c613fda cpufreq_cpu_get EXPORT_SYMBOL_GPL vmlinux 0x4c762b5c x86_stepping -EXPORT_SYMBOL_GPL vmlinux 0x4c784fd3 pm_runtime_force_suspend -EXPORT_SYMBOL_GPL vmlinux 0x4c81551e vc_scrolldelta_helper -EXPORT_SYMBOL_GPL vmlinux 0x4c81603c xenbus_grant_ring +EXPORT_SYMBOL_GPL vmlinux 0x4c7b125e scsi_bus_type EXPORT_SYMBOL_GPL vmlinux 0x4c8adfe1 hv_root_partition -EXPORT_SYMBOL_GPL vmlinux 0x4c8c291a find_extend_vma -EXPORT_SYMBOL_GPL vmlinux 0x4c984d39 __traceiter_xdp_exception -EXPORT_SYMBOL_GPL vmlinux 0x4c98d30d fuse_conn_put -EXPORT_SYMBOL_GPL vmlinux 0x4cae6968 nvmem_cell_read_u8 -EXPORT_SYMBOL_GPL vmlinux 0x4cb007e0 con_debug_enter +EXPORT_SYMBOL_GPL vmlinux 0x4c936052 usb_get_dr_mode +EXPORT_SYMBOL_GPL vmlinux 0x4c9a8e21 cpuidle_get_cpu_driver +EXPORT_SYMBOL_GPL vmlinux 0x4c9b520a sata_link_scr_lpm +EXPORT_SYMBOL_GPL vmlinux 0x4c9ca2f6 platform_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0x4ca13e27 regulator_get_hardware_vsel_register EXPORT_SYMBOL_GPL vmlinux 0x4cb27100 ktime_get_snapshot -EXPORT_SYMBOL_GPL vmlinux 0x4cd46cc8 wm831x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x4cbe649f dmaengine_desc_attach_metadata +EXPORT_SYMBOL_GPL vmlinux 0x4cc7a975 unregister_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x4cd364d1 rtc_read_time +EXPORT_SYMBOL_GPL vmlinux 0x4cd5ba1f crypto_req_done +EXPORT_SYMBOL_GPL vmlinux 0x4cded72c irq_gc_mask_set_bit +EXPORT_SYMBOL_GPL vmlinux 0x4ce3ccf3 crypto_comp_decompress +EXPORT_SYMBOL_GPL vmlinux 0x4cf51396 devm_namespace_enable EXPORT_SYMBOL_GPL vmlinux 0x4cf699b8 vfio_pci_core_set_params EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable EXPORT_SYMBOL_GPL vmlinux 0x4d0b752f alloc_iova EXPORT_SYMBOL_GPL vmlinux 0x4d202b8c __xas_prev -EXPORT_SYMBOL_GPL vmlinux 0x4d254abd skb_splice_bits -EXPORT_SYMBOL_GPL vmlinux 0x4d32830b gpiochip_remove_pin_ranges -EXPORT_SYMBOL_GPL vmlinux 0x4d3c8da1 serdev_device_set_baudrate -EXPORT_SYMBOL_GPL vmlinux 0x4d4a56e2 phy_create_lookup +EXPORT_SYMBOL_GPL vmlinux 0x4d293401 power_supply_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0x4d2b537e pstore_register +EXPORT_SYMBOL_GPL vmlinux 0x4d2d20e0 ata_sas_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x4d36a297 regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x4d411957 da903x_register_notifier EXPORT_SYMBOL_GPL vmlinux 0x4d4d7b79 blk_mq_map_queues -EXPORT_SYMBOL_GPL vmlinux 0x4d547364 sched_trace_rq_avg_irq -EXPORT_SYMBOL_GPL vmlinux 0x4d64cf35 evm_inode_init_security -EXPORT_SYMBOL_GPL vmlinux 0x4d6bf4b0 devm_gpiochip_add_data_with_key +EXPORT_SYMBOL_GPL vmlinux 0x4d565985 __lock_page_killable +EXPORT_SYMBOL_GPL vmlinux 0x4d58d47b shmem_file_setup_with_mnt +EXPORT_SYMBOL_GPL vmlinux 0x4d5ab84c da9052_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0x4d5ba1d9 fuse_simple_background +EXPORT_SYMBOL_GPL vmlinux 0x4d5ff049 debugfs_create_u16 EXPORT_SYMBOL_GPL vmlinux 0x4d6d0bbc iommu_group_ref_get -EXPORT_SYMBOL_GPL vmlinux 0x4d6ef428 pci_enable_ats -EXPORT_SYMBOL_GPL vmlinux 0x4d6f2096 ip_fib_metrics_init +EXPORT_SYMBOL_GPL vmlinux 0x4d72257d set_task_ioprio EXPORT_SYMBOL_GPL vmlinux 0x4d7272e4 migrate_enable -EXPORT_SYMBOL_GPL vmlinux 0x4d82ecad iommu_fwspec_free EXPORT_SYMBOL_GPL vmlinux 0x4d8a96ab xas_set_mark -EXPORT_SYMBOL_GPL vmlinux 0x4d9666ae dm_path_uevent -EXPORT_SYMBOL_GPL vmlinux 0x4d9e4fa4 shmem_file_setup_with_mnt +EXPORT_SYMBOL_GPL vmlinux 0x4d91d30b fuse_abort_conn +EXPORT_SYMBOL_GPL vmlinux 0x4d954ff4 task_cls_state EXPORT_SYMBOL_GPL vmlinux 0x4da1f4a7 list_lru_del EXPORT_SYMBOL_GPL vmlinux 0x4dae16e4 i2c_put_dma_safe_msg_buf -EXPORT_SYMBOL_GPL vmlinux 0x4dae3139 gnttab_dma_free_pages -EXPORT_SYMBOL_GPL vmlinux 0x4dc1a0f5 __ip6_local_out -EXPORT_SYMBOL_GPL vmlinux 0x4dc62236 posix_clock_register -EXPORT_SYMBOL_GPL vmlinux 0x4dca2583 dev_attr_link_power_management_policy +EXPORT_SYMBOL_GPL vmlinux 0x4dd2c7ef blk_mq_hctx_set_fq_lock_class +EXPORT_SYMBOL_GPL vmlinux 0x4dd6ae9a __auxiliary_driver_register EXPORT_SYMBOL_GPL vmlinux 0x4dd9d14d cn_netlink_send_mult EXPORT_SYMBOL_GPL vmlinux 0x4de17ab3 usb_state_string +EXPORT_SYMBOL_GPL vmlinux 0x4dec2143 irq_domain_xlate_twocell EXPORT_SYMBOL_GPL vmlinux 0x4dff61e5 wwan_port_txoff 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 0x4e3617e2 device_property_read_u16_array -EXPORT_SYMBOL_GPL vmlinux 0x4e386938 fat_getattr -EXPORT_SYMBOL_GPL vmlinux 0x4e41a9de ata_bmdma_port_start32 +EXPORT_SYMBOL_GPL vmlinux 0x4e39f222 to_nvdimm_bus_dev +EXPORT_SYMBOL_GPL vmlinux 0x4e4aabd8 acpi_get_pci_dev EXPORT_SYMBOL_GPL vmlinux 0x4e4c37e2 freq_qos_remove_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4e4c4ff0 spi_res_release -EXPORT_SYMBOL_GPL vmlinux 0x4e5292ba __SCK__tp_func_neigh_event_send_done -EXPORT_SYMBOL_GPL vmlinux 0x4e5954db xenbus_dev_cancel -EXPORT_SYMBOL_GPL vmlinux 0x4e5b433b devm_free_percpu -EXPORT_SYMBOL_GPL vmlinux 0x4e8fdc9e pci_hp_create_module_link -EXPORT_SYMBOL_GPL vmlinux 0x4e93ffcf inet6_compat_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x4e9ff15b irq_set_default_host -EXPORT_SYMBOL_GPL vmlinux 0x4ea74d65 __reset_control_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x4e558c8e pwm_capture +EXPORT_SYMBOL_GPL vmlinux 0x4e7b1d34 iommu_group_add_device +EXPORT_SYMBOL_GPL vmlinux 0x4e8765f3 wbc_detach_inode +EXPORT_SYMBOL_GPL vmlinux 0x4e977247 regulator_get_voltage_rdev +EXPORT_SYMBOL_GPL vmlinux 0x4e9ab0d6 ethnl_cable_test_amplitude +EXPORT_SYMBOL_GPL vmlinux 0x4ea514d5 udp4_lib_lookup EXPORT_SYMBOL_GPL vmlinux 0x4eac5fc1 cpu_mitigations_auto_nosmt -EXPORT_SYMBOL_GPL vmlinux 0x4eb3e2b6 ata_sas_port_start -EXPORT_SYMBOL_GPL vmlinux 0x4ebcd284 thermal_zone_get_offset +EXPORT_SYMBOL_GPL vmlinux 0x4eb27e1d tty_put_char +EXPORT_SYMBOL_GPL vmlinux 0x4ebd58b7 mbox_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4ec0fdde pcie_port_bus_type EXPORT_SYMBOL_GPL vmlinux 0x4ece3615 blocking_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4ed6723b dax_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0x4ed735c2 screen_pos -EXPORT_SYMBOL_GPL vmlinux 0x4ef4d834 nf_hook_entries_insert_raw +EXPORT_SYMBOL_GPL vmlinux 0x4ed75662 ohci_suspend EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context -EXPORT_SYMBOL_GPL vmlinux 0x4ef8bfc5 crypto_aead_encrypt EXPORT_SYMBOL_GPL vmlinux 0x4efcf021 mpi_normalize -EXPORT_SYMBOL_GPL vmlinux 0x4eff2018 dma_alloc_pages -EXPORT_SYMBOL_GPL vmlinux 0x4f208c07 memunmap_pages +EXPORT_SYMBOL_GPL vmlinux 0x4f074247 sdio_writel +EXPORT_SYMBOL_GPL vmlinux 0x4f07c853 pci_set_pcie_reset_state +EXPORT_SYMBOL_GPL vmlinux 0x4f181d4f device_create_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x4f1d9894 rio_pw_enable +EXPORT_SYMBOL_GPL vmlinux 0x4f248387 hwspin_lock_request_specific EXPORT_SYMBOL_GPL vmlinux 0x4f2593f0 btree_update -EXPORT_SYMBOL_GPL vmlinux 0x4f298776 virtqueue_kick +EXPORT_SYMBOL_GPL vmlinux 0x4f2aaaee __tracepoint_rpm_return_int EXPORT_SYMBOL_GPL vmlinux 0x4f2c996d kmsg_dump_get_line -EXPORT_SYMBOL_GPL vmlinux 0x4f2ecc89 pci_bridge_secondary_bus_reset -EXPORT_SYMBOL_GPL vmlinux 0x4f419a57 mnt_drop_write -EXPORT_SYMBOL_GPL vmlinux 0x4f58221c driver_find -EXPORT_SYMBOL_GPL vmlinux 0x4f594e13 debugfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0x4f2f8f84 perf_event_release_kernel +EXPORT_SYMBOL_GPL vmlinux 0x4f453759 __page_file_mapping +EXPORT_SYMBOL_GPL vmlinux 0x4f567669 wakeup_sources_walk_next +EXPORT_SYMBOL_GPL vmlinux 0x4f5a8fe8 fat_remove_entries +EXPORT_SYMBOL_GPL vmlinux 0x4f611136 tpm2_get_tpm_pt EXPORT_SYMBOL_GPL vmlinux 0x4f6a07fe show_rcu_gp_kthreads EXPORT_SYMBOL_GPL vmlinux 0x4f722eb0 acpi_ec_remove_query_handler EXPORT_SYMBOL_GPL vmlinux 0x4f72a987 uart_parse_options -EXPORT_SYMBOL_GPL vmlinux 0x4f73c6e8 xhci_suspend -EXPORT_SYMBOL_GPL vmlinux 0x4f747b37 tps65912_device_exit -EXPORT_SYMBOL_GPL vmlinux 0x4f7d22b2 __traceiter_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0x4f77eb10 regmap_write_async +EXPORT_SYMBOL_GPL vmlinux 0x4f80c40f sched_trace_cfs_rq_cpu EXPORT_SYMBOL_GPL vmlinux 0x4f8546af cpuidle_poll_state_init -EXPORT_SYMBOL_GPL vmlinux 0x4fab3be4 regulator_bulk_set_supply_names -EXPORT_SYMBOL_GPL vmlinux 0x4fbc95f7 devm_pinctrl_get -EXPORT_SYMBOL_GPL vmlinux 0x4fc4adb5 spi_mem_driver_register_with_owner -EXPORT_SYMBOL_GPL vmlinux 0x4fcc90f8 irq_chip_disable_parent +EXPORT_SYMBOL_GPL vmlinux 0x4f94a09b ipv6_proxy_select_ident +EXPORT_SYMBOL_GPL vmlinux 0x4f96f8d8 __mmc_send_status +EXPORT_SYMBOL_GPL vmlinux 0x4f977436 __devm_rtc_register_device +EXPORT_SYMBOL_GPL vmlinux 0x4fb0bd4c pm_generic_thaw +EXPORT_SYMBOL_GPL vmlinux 0x4fbd0870 pstore_unregister EXPORT_SYMBOL_GPL vmlinux 0x4fdc945d sata_deb_timing_normal +EXPORT_SYMBOL_GPL vmlinux 0x4fe1a1eb phy_speed_down EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4ffa5e42 __tracepoint_pelt_rt_tp +EXPORT_SYMBOL_GPL vmlinux 0x4fe2a5d7 clk_hw_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x4fe36327 fw_devlink_purge_absent_suppliers +EXPORT_SYMBOL_GPL vmlinux 0x4fef564f gnttab_unmap_refs_sync +EXPORT_SYMBOL_GPL vmlinux 0x4ff68119 device_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0x50021c04 acpi_is_pnp_device EXPORT_SYMBOL_GPL vmlinux 0x500c768c apei_exec_read_register -EXPORT_SYMBOL_GPL vmlinux 0x501abb56 dev_pm_enable_wake_irq EXPORT_SYMBOL_GPL vmlinux 0x5026585c xen_irq_from_gsi -EXPORT_SYMBOL_GPL vmlinux 0x502e2cc8 acpi_device_fix_up_power -EXPORT_SYMBOL_GPL vmlinux 0x503bc842 spi_controller_dma_unmap_mem_op_data -EXPORT_SYMBOL_GPL vmlinux 0x5049da5e __fput_sync -EXPORT_SYMBOL_GPL vmlinux 0x504c5334 fscrypt_prepare_symlink +EXPORT_SYMBOL_GPL vmlinux 0x5048669e rio_release_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x5070fe53 extcon_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x507436d8 fscrypt_ioctl_remove_key_all_users EXPORT_SYMBOL_GPL vmlinux 0x50759163 kobject_init_and_add -EXPORT_SYMBOL_GPL vmlinux 0x507789d8 securityfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0x507cb95a thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x50805bf4 phy_led_trigger_change_speed EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start +EXPORT_SYMBOL_GPL vmlinux 0x509616e0 tpmm_chip_alloc EXPORT_SYMBOL_GPL vmlinux 0x509d5f55 clk_divider_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0x50aa047a vp_modern_set_queue_size -EXPORT_SYMBOL_GPL vmlinux 0x50ad5747 devm_remove_action +EXPORT_SYMBOL_GPL vmlinux 0x50ac3039 add_disk_randomness EXPORT_SYMBOL_GPL vmlinux 0x50b03f5d l1tf_vmx_mitigation -EXPORT_SYMBOL_GPL vmlinux 0x50c158c9 dev_fill_forward_path +EXPORT_SYMBOL_GPL vmlinux 0x50b1c755 __tracepoint_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0x50b35bf4 fscrypt_ioctl_get_key_status +EXPORT_SYMBOL_GPL vmlinux 0x50b42ba1 entry_ibpb +EXPORT_SYMBOL_GPL vmlinux 0x50b4ff64 crypto_unregister_acomps +EXPORT_SYMBOL_GPL vmlinux 0x50c1644a xfrm_get_translator +EXPORT_SYMBOL_GPL vmlinux 0x50c20ede iopf_queue_flush_dev EXPORT_SYMBOL_GPL vmlinux 0x50d1f870 pgprot_writecombine +EXPORT_SYMBOL_GPL vmlinux 0x50d27ee3 of_icc_get_from_provider EXPORT_SYMBOL_GPL vmlinux 0x50df94f5 btree_insert +EXPORT_SYMBOL_GPL vmlinux 0x50e405e6 pci_iomap_wc EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num -EXPORT_SYMBOL_GPL vmlinux 0x50e9fc85 serial8250_set_defaults -EXPORT_SYMBOL_GPL vmlinux 0x50f4423d __devm_rtc_register_device -EXPORT_SYMBOL_GPL vmlinux 0x50f5926e cgroup_attach_task_all EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up -EXPORT_SYMBOL_GPL vmlinux 0x50fe7331 dw_pcie_setup_rc -EXPORT_SYMBOL_GPL vmlinux 0x511bf5bd spi_mem_exec_op -EXPORT_SYMBOL_GPL vmlinux 0x511d406e dev_pm_opp_set_supported_hw +EXPORT_SYMBOL_GPL vmlinux 0x50fc547a ata_ncq_sdev_attrs +EXPORT_SYMBOL_GPL vmlinux 0x511484c5 vfio_unregister_iommu_driver EXPORT_SYMBOL_GPL vmlinux 0x51390c96 rcu_barrier_tasks_rude -EXPORT_SYMBOL_GPL vmlinux 0x5148b68e dev_pm_opp_get_opp_table -EXPORT_SYMBOL_GPL vmlinux 0x51742387 rio_request_outb_dbell -EXPORT_SYMBOL_GPL vmlinux 0x51747fcd inverse_translate +EXPORT_SYMBOL_GPL vmlinux 0x514d5d6c scsi_build_sense +EXPORT_SYMBOL_GPL vmlinux 0x514f144f vfio_virqfd_disable +EXPORT_SYMBOL_GPL vmlinux 0x5154d2da fscrypt_set_test_dummy_encryption +EXPORT_SYMBOL_GPL vmlinux 0x5159f6d8 percpu_free_rwsem EXPORT_SYMBOL_GPL vmlinux 0x5187ac4b xen_store_evtchn EXPORT_SYMBOL_GPL vmlinux 0x518c2fc6 hpet_rtc_dropped_irq -EXPORT_SYMBOL_GPL vmlinux 0x519e1f9b sdio_readw +EXPORT_SYMBOL_GPL vmlinux 0x518cc428 cpufreq_register_driver EXPORT_SYMBOL_GPL vmlinux 0x51a348cc usb_role_switch_set_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x51a484e0 xdp_do_redirect +EXPORT_SYMBOL_GPL vmlinux 0x51a81f4c rio_unmap_inb_region +EXPORT_SYMBOL_GPL vmlinux 0x51b21c9b devm_i2c_new_dummy_device +EXPORT_SYMBOL_GPL vmlinux 0x51b37a91 auxiliary_driver_unregister EXPORT_SYMBOL_GPL vmlinux 0x51d13875 nf_hooks_lwtunnel_sysctl_handler -EXPORT_SYMBOL_GPL vmlinux 0x51ddc3df rdev_get_id -EXPORT_SYMBOL_GPL vmlinux 0x51e17935 spi_mem_poll_status -EXPORT_SYMBOL_GPL vmlinux 0x51fd5f36 fat_remove_entries -EXPORT_SYMBOL_GPL vmlinux 0x520c68d7 irq_chip_release_resources_parent -EXPORT_SYMBOL_GPL vmlinux 0x521c56bb device_get_match_data +EXPORT_SYMBOL_GPL vmlinux 0x51daf554 regmap_field_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0x51e2aebd pci_hp_del +EXPORT_SYMBOL_GPL vmlinux 0x51f398ed __fat_fs_error +EXPORT_SYMBOL_GPL vmlinux 0x51f8e3e0 agp_remove_bridge +EXPORT_SYMBOL_GPL vmlinux 0x51fbfcb5 __devm_pci_epc_create +EXPORT_SYMBOL_GPL vmlinux 0x5200e6e4 fuse_fill_super_common +EXPORT_SYMBOL_GPL vmlinux 0x52107f9a __tracepoint_non_standard_event +EXPORT_SYMBOL_GPL vmlinux 0x52228b20 crypto_unregister_shashes +EXPORT_SYMBOL_GPL vmlinux 0x52235862 spi_take_timestamp_post +EXPORT_SYMBOL_GPL vmlinux 0x5224ecf3 perf_event_period EXPORT_SYMBOL_GPL vmlinux 0x52252316 clk_unregister_fixed_rate -EXPORT_SYMBOL_GPL vmlinux 0x522e2488 dev_pm_qos_add_request -EXPORT_SYMBOL_GPL vmlinux 0x523b928b iommu_group_add_device -EXPORT_SYMBOL_GPL vmlinux 0x523d1bc1 perf_aux_output_flag +EXPORT_SYMBOL_GPL vmlinux 0x522f272a rio_dev_get +EXPORT_SYMBOL_GPL vmlinux 0x5234ad88 icc_enable EXPORT_SYMBOL_GPL vmlinux 0x52431348 xenbus_transaction_start -EXPORT_SYMBOL_GPL vmlinux 0x5246f904 pm_generic_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0x52579036 kthread_cancel_delayed_work_sync EXPORT_SYMBOL_GPL vmlinux 0x525d0aa3 trace_seq_printf -EXPORT_SYMBOL_GPL vmlinux 0x5269edfb bio_associate_blkg EXPORT_SYMBOL_GPL vmlinux 0x526bcf2a wwan_port_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x52770b16 events_sysfs_show -EXPORT_SYMBOL_GPL vmlinux 0x527c6ce3 __percpu_down_read -EXPORT_SYMBOL_GPL vmlinux 0x52a36bbb acpi_match_device -EXPORT_SYMBOL_GPL vmlinux 0x52a44eba led_classdev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x528747e6 raw_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x52a7d3f2 __pci_hp_initialize +EXPORT_SYMBOL_GPL vmlinux 0x52aa601b rio_release_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x52aadcb8 ata_sff_tf_load EXPORT_SYMBOL_GPL vmlinux 0x52b1e3c7 pci_flags +EXPORT_SYMBOL_GPL vmlinux 0x52bc9606 rio_release_inb_mbox EXPORT_SYMBOL_GPL vmlinux 0x52c35e83 call_rcu_tasks_trace -EXPORT_SYMBOL_GPL vmlinux 0x52c570aa ethtool_set_ethtool_phy_ops -EXPORT_SYMBOL_GPL vmlinux 0x52cb3674 pci_epc_get_msix -EXPORT_SYMBOL_GPL vmlinux 0x52cd350d rio_attach_device -EXPORT_SYMBOL_GPL vmlinux 0x52d175b8 __traceiter_neigh_event_send_done EXPORT_SYMBOL_GPL vmlinux 0x52d54fce devlink_info_version_stored_put -EXPORT_SYMBOL_GPL vmlinux 0x52edc756 kernfs_get -EXPORT_SYMBOL_GPL vmlinux 0x5319e1a7 spi_get_next_queued_message +EXPORT_SYMBOL_GPL vmlinux 0x52d62bac security_file_permission +EXPORT_SYMBOL_GPL vmlinux 0x52e0c35e ata_pci_shutdown_one +EXPORT_SYMBOL_GPL vmlinux 0x52e15f8c nvdimm_region_notify +EXPORT_SYMBOL_GPL vmlinux 0x52e56344 crypto_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x52e83b62 check_move_unevictable_pages +EXPORT_SYMBOL_GPL vmlinux 0x53029ee0 serial8250_rx_dma_flush +EXPORT_SYMBOL_GPL vmlinux 0x5318da56 find_mci_by_dev EXPORT_SYMBOL_GPL vmlinux 0x5321d3d6 sbitmap_get EXPORT_SYMBOL_GPL vmlinux 0x532b90b5 kprobe_event_cmd_init -EXPORT_SYMBOL_GPL vmlinux 0x533f9d6e spi_finalize_current_transfer -EXPORT_SYMBOL_GPL vmlinux 0x534b8b4a gpiochip_line_is_irq +EXPORT_SYMBOL_GPL vmlinux 0x532d26ea pingv6_prot +EXPORT_SYMBOL_GPL vmlinux 0x532f0e85 cdrom_multisession +EXPORT_SYMBOL_GPL vmlinux 0x533c00eb pinctrl_pm_select_sleep_state +EXPORT_SYMBOL_GPL vmlinux 0x534c2331 devm_usb_get_phy_by_phandle EXPORT_SYMBOL_GPL vmlinux 0x5358864e devlink_fmsg_binary_pair_nest_end -EXPORT_SYMBOL_GPL vmlinux 0x535de0b1 usb_match_one_id -EXPORT_SYMBOL_GPL vmlinux 0x536009a0 tcp_bpf_update_proto +EXPORT_SYMBOL_GPL vmlinux 0x5362658c sysfs_create_groups EXPORT_SYMBOL_GPL vmlinux 0x536822e3 sfp_module_insert -EXPORT_SYMBOL_GPL vmlinux 0x537c44d2 thermal_zone_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x537f12de security_path_truncate -EXPORT_SYMBOL_GPL vmlinux 0x538939f2 dev_pm_opp_find_level_ceil +EXPORT_SYMBOL_GPL vmlinux 0x536bd593 inet_ehash_nolisten +EXPORT_SYMBOL_GPL vmlinux 0x53777a0f sched_set_fifo_low +EXPORT_SYMBOL_GPL vmlinux 0x537fc9cb irq_chip_enable_parent +EXPORT_SYMBOL_GPL vmlinux 0x5381f123 sysfs_groups_change_owner EXPORT_SYMBOL_GPL vmlinux 0x538d073d phy_duplex_to_str +EXPORT_SYMBOL_GPL vmlinux 0x538f069a xenbus_dev_probe EXPORT_SYMBOL_GPL vmlinux 0x5391f2c7 gnttab_end_foreign_access_ref +EXPORT_SYMBOL_GPL vmlinux 0x539ef4c1 regulator_list_voltage_pickable_linear_range EXPORT_SYMBOL_GPL vmlinux 0x539f157b pci_xen_swiotlb_init_late -EXPORT_SYMBOL_GPL vmlinux 0x53a1ba4b devlink_port_register -EXPORT_SYMBOL_GPL vmlinux 0x53c080a4 nd_region_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x53a70bb9 cpufreq_enable_fast_switch EXPORT_SYMBOL_GPL vmlinux 0x53c089f5 property_entries_dup -EXPORT_SYMBOL_GPL vmlinux 0x53cc303e set_pages_array_wt +EXPORT_SYMBOL_GPL vmlinux 0x53c5fc12 blk_ksm_init EXPORT_SYMBOL_GPL vmlinux 0x53d7c01e __traceiter_cpu_idle -EXPORT_SYMBOL_GPL vmlinux 0x53fa26ed klp_get_state -EXPORT_SYMBOL_GPL vmlinux 0x53fd59d6 inet_csk_route_child_sock -EXPORT_SYMBOL_GPL vmlinux 0x540fd429 __pm_relax -EXPORT_SYMBOL_GPL vmlinux 0x5415c698 tty_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0x53def1c3 class_interface_register +EXPORT_SYMBOL_GPL vmlinux 0x53e4619a tpm_tis_resume +EXPORT_SYMBOL_GPL vmlinux 0x53e4825a cros_ec_get_sensor_count +EXPORT_SYMBOL_GPL vmlinux 0x540e57e4 devm_pm_opp_attach_genpd EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run -EXPORT_SYMBOL_GPL vmlinux 0x54214d16 pcie_reset_flr +EXPORT_SYMBOL_GPL vmlinux 0x541ec3cc wm8350_block_write EXPORT_SYMBOL_GPL vmlinux 0x54215db5 visitor64 -EXPORT_SYMBOL_GPL vmlinux 0x542191da ata_port_schedule_eh -EXPORT_SYMBOL_GPL vmlinux 0x542734ae __tracepoint_unmap -EXPORT_SYMBOL_GPL vmlinux 0x542afe0a platform_device_unregister EXPORT_SYMBOL_GPL vmlinux 0x5435454c divider_ro_round_rate_parent -EXPORT_SYMBOL_GPL vmlinux 0x543665b7 filemap_read -EXPORT_SYMBOL_GPL vmlinux 0x544a0532 pci_ignore_hotplug EXPORT_SYMBOL_GPL vmlinux 0x545025e5 nvmem_add_cell_table +EXPORT_SYMBOL_GPL vmlinux 0x54553b82 dev_pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0x545917ee serdev_controller_alloc +EXPORT_SYMBOL_GPL vmlinux 0x546384e6 class_for_each_device EXPORT_SYMBOL_GPL vmlinux 0x54651f9b rhashtable_walk_next -EXPORT_SYMBOL_GPL vmlinux 0x54880f2c edac_pci_handle_pe -EXPORT_SYMBOL_GPL vmlinux 0x54898ff3 hvc_instantiate -EXPORT_SYMBOL_GPL vmlinux 0x549302ed spi_controller_suspend +EXPORT_SYMBOL_GPL vmlinux 0x54686280 icc_set_bw +EXPORT_SYMBOL_GPL vmlinux 0x547b55d6 __bio_add_page EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq -EXPORT_SYMBOL_GPL vmlinux 0x549d3012 gpiod_get_array_value -EXPORT_SYMBOL_GPL vmlinux 0x54b6df81 ping_common_sendmsg -EXPORT_SYMBOL_GPL vmlinux 0x54c86054 scsi_host_unblock -EXPORT_SYMBOL_GPL vmlinux 0x54dcd2dd xen_remap_pfn -EXPORT_SYMBOL_GPL vmlinux 0x54e76a57 vfio_pci_core_err_handlers -EXPORT_SYMBOL_GPL vmlinux 0x54ea1973 devm_hwmon_device_register_with_info -EXPORT_SYMBOL_GPL vmlinux 0x54ef4e4e xen_register_device_domain_owner -EXPORT_SYMBOL_GPL vmlinux 0x54f27300 spi_res_add -EXPORT_SYMBOL_GPL vmlinux 0x54f9e803 hwspin_lock_register -EXPORT_SYMBOL_GPL vmlinux 0x550a5c0c __tracepoint_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0x54a2d2d1 __blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0x54b3a898 firmware_request_cache +EXPORT_SYMBOL_GPL vmlinux 0x54ca3c4a devm_platform_get_irqs_affinity +EXPORT_SYMBOL_GPL vmlinux 0x54d274db ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0x54de18ce dev_set_name +EXPORT_SYMBOL_GPL vmlinux 0x54e7da47 pci_hp_destroy +EXPORT_SYMBOL_GPL vmlinux 0x54ee3ffe icc_node_del +EXPORT_SYMBOL_GPL vmlinux 0x54f298c0 thermal_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x54f550c6 set_secondary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x54f8d095 genphy_c45_pma_suspend EXPORT_SYMBOL_GPL vmlinux 0x550ce709 pat_enabled EXPORT_SYMBOL_GPL vmlinux 0x550f3e05 i2c_freq_mode_string -EXPORT_SYMBOL_GPL vmlinux 0x5517a93d sysfs_remove_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x55236f89 fat_add_entries +EXPORT_SYMBOL_GPL vmlinux 0x551843be pci_create_slot +EXPORT_SYMBOL_GPL vmlinux 0x551c95df fuse_direct_io +EXPORT_SYMBOL_GPL vmlinux 0x5520b685 bio_clone_blkg_association EXPORT_SYMBOL_GPL vmlinux 0x55339365 flush_delayed_fput +EXPORT_SYMBOL_GPL vmlinux 0x55347dc3 crypto_stats_ahash_final EXPORT_SYMBOL_GPL vmlinux 0x553b49a4 cpufreq_get_driver_data -EXPORT_SYMBOL_GPL vmlinux 0x553cd310 __netif_set_xps_queue +EXPORT_SYMBOL_GPL vmlinux 0x553d82ea gpiochip_add_data_with_key EXPORT_SYMBOL_GPL vmlinux 0x55417264 unregister_vt_notifier -EXPORT_SYMBOL_GPL vmlinux 0x55420513 netdev_walk_all_upper_dev_rcu -EXPORT_SYMBOL_GPL vmlinux 0x556a34b0 irq_domain_remove +EXPORT_SYMBOL_GPL vmlinux 0x554a09f8 sysfs_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0x555acd5a dev_pm_opp_get_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0x55684449 ip6_flush_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x556bf4d8 adp5520_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x556c5ff6 mbox_chan_received_data EXPORT_SYMBOL_GPL vmlinux 0x556e4390 clk_get_rate -EXPORT_SYMBOL_GPL vmlinux 0x5572f5e8 usb_disable_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0x556fd183 transport_setup_device +EXPORT_SYMBOL_GPL vmlinux 0x5570adf0 ata_host_put EXPORT_SYMBOL_GPL vmlinux 0x55784228 regmap_irq_get_virq -EXPORT_SYMBOL_GPL vmlinux 0x557daf65 nexthop_for_each_fib6_nh -EXPORT_SYMBOL_GPL vmlinux 0x55839faa devlink_params_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5587fc6d rio_route_add_entry -EXPORT_SYMBOL_GPL vmlinux 0x55989ce3 thermal_zone_get_temp -EXPORT_SYMBOL_GPL vmlinux 0x55b25da9 __SCK__tp_func_block_split -EXPORT_SYMBOL_GPL vmlinux 0x55c66663 regulator_list_hardware_vsel +EXPORT_SYMBOL_GPL vmlinux 0x557d9ca9 iomap_writepage +EXPORT_SYMBOL_GPL vmlinux 0x5581b8c6 device_add_software_node +EXPORT_SYMBOL_GPL vmlinux 0x55a995f9 crypto_shash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x55a9b1af regmap_multi_reg_write_bypassed EXPORT_SYMBOL_GPL vmlinux 0x55c76a23 ksys_sync_helper -EXPORT_SYMBOL_GPL vmlinux 0x55cad9c6 nvdimm_to_bus -EXPORT_SYMBOL_GPL vmlinux 0x55d9714f crypto_unregister_kpp -EXPORT_SYMBOL_GPL vmlinux 0x55ecfbcf dev_nit_active +EXPORT_SYMBOL_GPL vmlinux 0x55cedb21 bpf_map_put +EXPORT_SYMBOL_GPL vmlinux 0x55ded2bf iommu_uapi_cache_invalidate EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout EXPORT_SYMBOL_GPL vmlinux 0x56054c05 crypto_it_tab -EXPORT_SYMBOL_GPL vmlinux 0x561721d4 clockevents_config_and_register +EXPORT_SYMBOL_GPL vmlinux 0x5615d714 __tracepoint_map EXPORT_SYMBOL_GPL vmlinux 0x56173654 pcap_set_ts_bits -EXPORT_SYMBOL_GPL vmlinux 0x5623c01e invalidate_inode_pages2_range +EXPORT_SYMBOL_GPL vmlinux 0x56251a15 usb_phy_set_event EXPORT_SYMBOL_GPL vmlinux 0x56256e8a orderly_poweroff -EXPORT_SYMBOL_GPL vmlinux 0x562c728a sb800_prefetch -EXPORT_SYMBOL_GPL vmlinux 0x562ea078 vp_modern_get_driver_features EXPORT_SYMBOL_GPL vmlinux 0x56310925 regulator_mode_to_status +EXPORT_SYMBOL_GPL vmlinux 0x56333814 __serdev_device_driver_register EXPORT_SYMBOL_GPL vmlinux 0x56398615 mark_tsc_unstable -EXPORT_SYMBOL_GPL vmlinux 0x563aa19e blk_update_request -EXPORT_SYMBOL_GPL vmlinux 0x5640d2b1 gpiochip_remove EXPORT_SYMBOL_GPL vmlinux 0x5641485b tty_termios_encode_baud_rate -EXPORT_SYMBOL_GPL vmlinux 0x56493c13 usb_unlink_urb -EXPORT_SYMBOL_GPL vmlinux 0x56533329 dev_pm_opp_init_cpufreq_table -EXPORT_SYMBOL_GPL vmlinux 0x5662ade4 governor_sysfs_ops -EXPORT_SYMBOL_GPL vmlinux 0x566ce39c led_trigger_blink -EXPORT_SYMBOL_GPL vmlinux 0x56741d5b device_move -EXPORT_SYMBOL_GPL vmlinux 0x568a2eee i2c_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x5698db2e ohci_hub_control -EXPORT_SYMBOL_GPL vmlinux 0x569c1742 trace_define_field -EXPORT_SYMBOL_GPL vmlinux 0x56a2d544 __tracepoint_block_unplug -EXPORT_SYMBOL_GPL vmlinux 0x56a5c8df nexthop_select_path -EXPORT_SYMBOL_GPL vmlinux 0x56aaf318 devlink_remote_reload_actions_performed -EXPORT_SYMBOL_GPL vmlinux 0x56e68171 usb_init_urb -EXPORT_SYMBOL_GPL vmlinux 0x56ea05cb phy_speed_up +EXPORT_SYMBOL_GPL vmlinux 0x566aaa15 acpi_dma_request_slave_chan_by_name +EXPORT_SYMBOL_GPL vmlinux 0x56736899 blk_queue_can_use_dma_map_merging +EXPORT_SYMBOL_GPL vmlinux 0x56765769 dax_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x568bd0ec crypto_get_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x56948896 spec_ctrl_current +EXPORT_SYMBOL_GPL vmlinux 0x5694b311 skcipher_walk_virt +EXPORT_SYMBOL_GPL vmlinux 0x56a2f7b0 da903x_read +EXPORT_SYMBOL_GPL vmlinux 0x56aec236 sock_diag_destroy +EXPORT_SYMBOL_GPL vmlinux 0x56b7d7b9 ata_acpi_cbl_80wire +EXPORT_SYMBOL_GPL vmlinux 0x56bb6c70 verify_signature +EXPORT_SYMBOL_GPL vmlinux 0x56c5c72e cpuidle_get_driver +EXPORT_SYMBOL_GPL vmlinux 0x56c77c9a bus_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x56f39d09 debugfs_attr_write EXPORT_SYMBOL_GPL vmlinux 0x56fbb130 no_hash_pointers -EXPORT_SYMBOL_GPL vmlinux 0x5704ec29 fscrypt_d_revalidate +EXPORT_SYMBOL_GPL vmlinux 0x57090250 validate_xmit_skb_list +EXPORT_SYMBOL_GPL vmlinux 0x57134509 tpm_chip_register +EXPORT_SYMBOL_GPL vmlinux 0x5717df94 devm_gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0x57284ead blockdev_superblock +EXPORT_SYMBOL_GPL vmlinux 0x572c786a irq_chip_set_parent_state EXPORT_SYMBOL_GPL vmlinux 0x573b5453 ipv6_fixup_options +EXPORT_SYMBOL_GPL vmlinux 0x5741f3c8 regulator_unregister EXPORT_SYMBOL_GPL vmlinux 0x574609c5 apei_exec_write_register_value -EXPORT_SYMBOL_GPL vmlinux 0x5746e743 irq_create_of_mapping -EXPORT_SYMBOL_GPL vmlinux 0x574ffa97 netdev_set_default_ethtool_ops -EXPORT_SYMBOL_GPL vmlinux 0x575975d4 udp_destruct_sock -EXPORT_SYMBOL_GPL vmlinux 0x5763b69c syscon_regmap_lookup_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x576686c2 lwtunnel_fill_encap EXPORT_SYMBOL_GPL vmlinux 0x57719632 gnttab_grant_foreign_access EXPORT_SYMBOL_GPL vmlinux 0x57732438 inet_twsk_purge EXPORT_SYMBOL_GPL vmlinux 0x578eeb4d hugetlb_cgrp_subsys_enabled_key EXPORT_SYMBOL_GPL vmlinux 0x5790e7a0 pci_unlock_rescan_remove -EXPORT_SYMBOL_GPL vmlinux 0x579a6050 regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x5791dd3e phy_package_leave +EXPORT_SYMBOL_GPL vmlinux 0x57944ee4 dmi_kobj EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all -EXPORT_SYMBOL_GPL vmlinux 0x57a1363e device_property_read_u64_array -EXPORT_SYMBOL_GPL vmlinux 0x57b9f535 pm_genpd_add_subdomain -EXPORT_SYMBOL_GPL vmlinux 0x57bc5940 dm_suspended -EXPORT_SYMBOL_GPL vmlinux 0x57bf802e shake_page -EXPORT_SYMBOL_GPL vmlinux 0x57c4f2d4 devm_regmap_field_alloc -EXPORT_SYMBOL_GPL vmlinux 0x57c6723e irq_chip_enable_parent +EXPORT_SYMBOL_GPL vmlinux 0x57a13ca7 fuse_sync_release +EXPORT_SYMBOL_GPL vmlinux 0x57a6d997 dev_pm_qos_add_ancestor_request +EXPORT_SYMBOL_GPL vmlinux 0x57ae9efb clocksource_verify_percpu +EXPORT_SYMBOL_GPL vmlinux 0x57b4ca12 irq_chip_mask_parent +EXPORT_SYMBOL_GPL vmlinux 0x57b73e98 debugfs_create_file_size +EXPORT_SYMBOL_GPL vmlinux 0x57cb34fc __tracepoint_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0x57cbb9ba acpi_bind_one EXPORT_SYMBOL_GPL vmlinux 0x57d4050a xhci_get_endpoint_index -EXPORT_SYMBOL_GPL vmlinux 0x57dd2b33 mptcp_pm_get_local_addr_max -EXPORT_SYMBOL_GPL vmlinux 0x57e5a5cd ip6_route_output_flags -EXPORT_SYMBOL_GPL vmlinux 0x57ea32ca __tracepoint_neigh_event_send_done -EXPORT_SYMBOL_GPL vmlinux 0x57ed3012 acpiphp_register_attention -EXPORT_SYMBOL_GPL vmlinux 0x57f18ee9 dev_pm_opp_get_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0x57e48ada blk_abort_request +EXPORT_SYMBOL_GPL vmlinux 0x57ea24cf ata_port_wait_eh +EXPORT_SYMBOL_GPL vmlinux 0x57eaad0f crypto_enqueue_request EXPORT_SYMBOL_GPL vmlinux 0x57f576b9 mpi_ec_curve_point -EXPORT_SYMBOL_GPL vmlinux 0x57f70547 secure_ipv4_port_ephemeral -EXPORT_SYMBOL_GPL vmlinux 0x5804ced5 devm_gpio_request -EXPORT_SYMBOL_GPL vmlinux 0x58235aaf devm_clk_hw_unregister +EXPORT_SYMBOL_GPL vmlinux 0x58002d6a kernel_read_file +EXPORT_SYMBOL_GPL vmlinux 0x58213f06 xfrm_audit_state_notfound +EXPORT_SYMBOL_GPL vmlinux 0x58271cb1 devlink_rate_nodes_destroy EXPORT_SYMBOL_GPL vmlinux 0x58276f93 cper_next_record_id -EXPORT_SYMBOL_GPL vmlinux 0x582bc759 driver_register +EXPORT_SYMBOL_GPL vmlinux 0x58316fae blk_rq_unprep_clone EXPORT_SYMBOL_GPL vmlinux 0x5831e062 cpus_read_trylock -EXPORT_SYMBOL_GPL vmlinux 0x5835b966 bpf_trace_run10 -EXPORT_SYMBOL_GPL vmlinux 0x584de832 set_primary_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x584f867f __page_file_mapping -EXPORT_SYMBOL_GPL vmlinux 0x58641090 _copy_from_iter_flushcache -EXPORT_SYMBOL_GPL vmlinux 0x58696cdd max8997_write_reg +EXPORT_SYMBOL_GPL vmlinux 0x58466c8d nvdimm_in_overwrite +EXPORT_SYMBOL_GPL vmlinux 0x584d219d dm_device_name +EXPORT_SYMBOL_GPL vmlinux 0x585d801a pinctrl_find_and_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x585e409f request_firmware_direct +EXPORT_SYMBOL_GPL vmlinux 0x5864a46d fixed_phy_register_with_gpiod EXPORT_SYMBOL_GPL vmlinux 0x586bfc8a alarm_restart -EXPORT_SYMBOL_GPL vmlinux 0x586c621f eventfd_ctx_fileget EXPORT_SYMBOL_GPL vmlinux 0x5879a27d sfp_get_module_info -EXPORT_SYMBOL_GPL vmlinux 0x5888db1a dma_buf_move_notify -EXPORT_SYMBOL_GPL vmlinux 0x58a8a4e7 sk_set_memalloc +EXPORT_SYMBOL_GPL vmlinux 0x587b5e28 dev_pm_opp_get_max_transition_latency +EXPORT_SYMBOL_GPL vmlinux 0x58839ce6 regmap_can_raw_write +EXPORT_SYMBOL_GPL vmlinux 0x588a4dba virtqueue_is_broken +EXPORT_SYMBOL_GPL vmlinux 0x588b38bb pci_generic_config_read +EXPORT_SYMBOL_GPL vmlinux 0x58a3836f __tracepoint_extlog_mem_event +EXPORT_SYMBOL_GPL vmlinux 0x58b6ce76 __tracepoint_block_bio_complete EXPORT_SYMBOL_GPL vmlinux 0x58d6311d trace_clock -EXPORT_SYMBOL_GPL vmlinux 0x58dc8955 usb_block_urb EXPORT_SYMBOL_GPL vmlinux 0x58def6ca sfp_module_remove -EXPORT_SYMBOL_GPL vmlinux 0x58ef2f41 bpf_prog_free -EXPORT_SYMBOL_GPL vmlinux 0x58fa904b pm_generic_resume_early -EXPORT_SYMBOL_GPL vmlinux 0x58fff0bf devm_regulator_get -EXPORT_SYMBOL_GPL vmlinux 0x590adc5a usb_hcd_setup_local_mem -EXPORT_SYMBOL_GPL vmlinux 0x5913fde7 sched_show_task -EXPORT_SYMBOL_GPL vmlinux 0x59246f38 sock_diag_check_cookie -EXPORT_SYMBOL_GPL vmlinux 0x59263e32 int_active_memcg -EXPORT_SYMBOL_GPL vmlinux 0x594c2462 xenbus_match -EXPORT_SYMBOL_GPL vmlinux 0x5950ddce amd_iommu_is_attach_deferred -EXPORT_SYMBOL_GPL vmlinux 0x59566c2d crypto_shash_alg_has_setkey -EXPORT_SYMBOL_GPL vmlinux 0x595cd3dd ata_dev_next -EXPORT_SYMBOL_GPL vmlinux 0x596d1350 dev_attr_em_message_type +EXPORT_SYMBOL_GPL vmlinux 0x58f9023f usb_hcd_pci_remove +EXPORT_SYMBOL_GPL vmlinux 0x590cba77 tty_set_ldisc +EXPORT_SYMBOL_GPL vmlinux 0x591cad7f devres_for_each_res +EXPORT_SYMBOL_GPL vmlinux 0x5925de23 serial8250_rpm_put +EXPORT_SYMBOL_GPL vmlinux 0x5930502f device_show_ulong +EXPORT_SYMBOL_GPL vmlinux 0x59322e45 usb_put_intf +EXPORT_SYMBOL_GPL vmlinux 0x5949d408 pci_user_write_config_word +EXPORT_SYMBOL_GPL vmlinux 0x594f47ac exportfs_encode_inode_fh +EXPORT_SYMBOL_GPL vmlinux 0x5960aa43 irq_chip_set_wake_parent +EXPORT_SYMBOL_GPL vmlinux 0x59800791 vfs_lock_file EXPORT_SYMBOL_GPL vmlinux 0x5986d190 kdb_printf -EXPORT_SYMBOL_GPL vmlinux 0x59b118eb nfs_ssc_register +EXPORT_SYMBOL_GPL vmlinux 0x598d9d02 tcp_rate_check_app_limited +EXPORT_SYMBOL_GPL vmlinux 0x5991d038 usb_autopm_put_interface_no_suspend +EXPORT_SYMBOL_GPL vmlinux 0x59a68726 udp6_lib_lookup EXPORT_SYMBOL_GPL vmlinux 0x59b2adbf input_ff_effect_from_user -EXPORT_SYMBOL_GPL vmlinux 0x59b42632 pm_runtime_force_resume -EXPORT_SYMBOL_GPL vmlinux 0x59be6f94 regulator_bulk_enable -EXPORT_SYMBOL_GPL vmlinux 0x59bec61f __SCK__tp_func_devlink_hwmsg +EXPORT_SYMBOL_GPL vmlinux 0x59b69efa pci_ignore_hotplug +EXPORT_SYMBOL_GPL vmlinux 0x59b79e22 cpufreq_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x59bf6ffc sync_page_io +EXPORT_SYMBOL_GPL vmlinux 0x59c0d4c2 crypto_unregister_aeads EXPORT_SYMBOL_GPL vmlinux 0x59c43dc9 __traceiter_non_standard_event +EXPORT_SYMBOL_GPL vmlinux 0x59c5ce09 irq_create_mapping_affinity EXPORT_SYMBOL_GPL vmlinux 0x59c6aff4 irq_set_affinity_hint -EXPORT_SYMBOL_GPL vmlinux 0x59c927ea devm_regmap_add_irq_chip_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x59ca0368 blkdev_zone_mgmt +EXPORT_SYMBOL_GPL vmlinux 0x59da7499 fwnode_property_get_reference_args +EXPORT_SYMBOL_GPL vmlinux 0x59dcbc13 regulator_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x59e0f053 fpu_free_guest_fpstate EXPORT_SYMBOL_GPL vmlinux 0x59f32720 mpi_subm EXPORT_SYMBOL_GPL vmlinux 0x5a1d134a rcu_momentary_dyntick_idle -EXPORT_SYMBOL_GPL vmlinux 0x5a263303 bio_trim -EXPORT_SYMBOL_GPL vmlinux 0x5a2aeec6 ata_dummy_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x5a30778b device_show_int EXPORT_SYMBOL_GPL vmlinux 0x5a49dbc9 timerqueue_del +EXPORT_SYMBOL_GPL vmlinux 0x5a61dbde devm_pm_opp_register_set_opp_helper EXPORT_SYMBOL_GPL vmlinux 0x5a6cdb52 nf_ct_zone_dflt EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify -EXPORT_SYMBOL_GPL vmlinux 0x5a8dd475 acpi_dma_simple_xlate -EXPORT_SYMBOL_GPL vmlinux 0x5a972b79 xfrm_audit_state_notfound -EXPORT_SYMBOL_GPL vmlinux 0x5aa6f23f phy_modify +EXPORT_SYMBOL_GPL vmlinux 0x5a80f88e gpiochip_populate_parent_fwspec_fourcell +EXPORT_SYMBOL_GPL vmlinux 0x5a81ec2b gpiochip_remove_pin_ranges +EXPORT_SYMBOL_GPL vmlinux 0x5a890ab7 ip6_route_input_lookup EXPORT_SYMBOL_GPL vmlinux 0x5aa70984 acpi_reduced_hardware -EXPORT_SYMBOL_GPL vmlinux 0x5aaab28b skb_complete_tx_timestamp -EXPORT_SYMBOL_GPL vmlinux 0x5aae2a55 pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x5aaa969b nvdimm_setup_pfn +EXPORT_SYMBOL_GPL vmlinux 0x5ab01e88 page_cache_sync_ra EXPORT_SYMBOL_GPL vmlinux 0x5ab09745 edac_get_owner -EXPORT_SYMBOL_GPL vmlinux 0x5ab0c40d gen_pool_get -EXPORT_SYMBOL_GPL vmlinux 0x5ad20023 usb_disable_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0x5adcd540 powercap_unregister_zone -EXPORT_SYMBOL_GPL vmlinux 0x5ade039d crypto_register_alg -EXPORT_SYMBOL_GPL vmlinux 0x5adf01b6 dma_run_dependencies -EXPORT_SYMBOL_GPL vmlinux 0x5aedb710 dma_get_required_mask -EXPORT_SYMBOL_GPL vmlinux 0x5afc3d20 i2c_generic_scl_recovery -EXPORT_SYMBOL_GPL vmlinux 0x5afdbc49 blk_mq_sched_try_insert_merge -EXPORT_SYMBOL_GPL vmlinux 0x5b031a47 clk_hw_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0x5b0456aa rt_mutex_lock_interruptible -EXPORT_SYMBOL_GPL vmlinux 0x5b104442 pciserial_init_ports -EXPORT_SYMBOL_GPL vmlinux 0x5b216514 acpi_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0x5ab6056a set_cpus_allowed_ptr +EXPORT_SYMBOL_GPL vmlinux 0x5ace2a38 devm_regmap_field_bulk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x5af826f9 pinctrl_utils_add_map_configs +EXPORT_SYMBOL_GPL vmlinux 0x5b0c30e1 devm_of_led_get +EXPORT_SYMBOL_GPL vmlinux 0x5b1d776b usb_acpi_set_power_state EXPORT_SYMBOL_GPL vmlinux 0x5b21ceff ring_buffer_iter_peek -EXPORT_SYMBOL_GPL vmlinux 0x5b220b81 __traceiter_neigh_cleanup_and_release -EXPORT_SYMBOL_GPL vmlinux 0x5b2e4e65 ata_cable_80wire -EXPORT_SYMBOL_GPL vmlinux 0x5b32af6d dma_buf_detach -EXPORT_SYMBOL_GPL vmlinux 0x5b349427 balloon_page_list_dequeue +EXPORT_SYMBOL_GPL vmlinux 0x5b22b537 badblocks_store +EXPORT_SYMBOL_GPL vmlinux 0x5b2b3790 md_new_event +EXPORT_SYMBOL_GPL vmlinux 0x5b359573 tps80031_ext_power_req_config EXPORT_SYMBOL_GPL vmlinux 0x5b35c4f9 vfio_group_set_kvm -EXPORT_SYMBOL_GPL vmlinux 0x5b3d2e50 adp5520_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x5b500c58 l3mdev_table_lookup_register -EXPORT_SYMBOL_GPL vmlinux 0x5b68b6da devm_phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0x5b36c31a dma_mmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x5b488993 ping_get_port EXPORT_SYMBOL_GPL vmlinux 0x5b6b0329 swiotlb_max_segment -EXPORT_SYMBOL_GPL vmlinux 0x5b8b503d tcp_get_syncookie_mss -EXPORT_SYMBOL_GPL vmlinux 0x5b8de0a7 iommu_sva_bind_device -EXPORT_SYMBOL_GPL vmlinux 0x5b933f3c efivar_entry_add -EXPORT_SYMBOL_GPL vmlinux 0x5ba15573 dev_pm_opp_is_turbo -EXPORT_SYMBOL_GPL vmlinux 0x5bbc5164 device_get_named_child_node +EXPORT_SYMBOL_GPL vmlinux 0x5b7132b5 ping_hash +EXPORT_SYMBOL_GPL vmlinux 0x5b9123f7 gnttab_alloc_pages +EXPORT_SYMBOL_GPL vmlinux 0x5ba2bde5 __SCK__tp_func_sched_update_nr_running_tp +EXPORT_SYMBOL_GPL vmlinux 0x5ba681ce ip6_route_output_flags +EXPORT_SYMBOL_GPL vmlinux 0x5bada417 sdio_disable_func +EXPORT_SYMBOL_GPL vmlinux 0x5bb41706 fuse_request_end EXPORT_SYMBOL_GPL vmlinux 0x5bbdfa26 scatterwalk_ffwd EXPORT_SYMBOL_GPL vmlinux 0x5bc950fe regulator_irq_helper_cancel -EXPORT_SYMBOL_GPL vmlinux 0x5bc9d540 blkcg_activate_policy EXPORT_SYMBOL_GPL vmlinux 0x5bd0748f crypto_del_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x5bd44817 desc_to_gpio +EXPORT_SYMBOL_GPL vmlinux 0x5bd0cd57 bpf_trace_run1 +EXPORT_SYMBOL_GPL vmlinux 0x5bd97409 vfs_setlease EXPORT_SYMBOL_GPL vmlinux 0x5bdae35b usb_phy_roothub_set_mode EXPORT_SYMBOL_GPL vmlinux 0x5bdbac4e rcu_unexpedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x5bdf7df7 iommu_device_unlink +EXPORT_SYMBOL_GPL vmlinux 0x5be85331 iptunnel_handle_offloads +EXPORT_SYMBOL_GPL vmlinux 0x5bf5309f __traceiter_neigh_update EXPORT_SYMBOL_GPL vmlinux 0x5c0c165e __SCT__tp_func_neigh_update EXPORT_SYMBOL_GPL vmlinux 0x5c0eaf31 acpi_dev_resource_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x5c18e788 gpiod_get_direction +EXPORT_SYMBOL_GPL vmlinux 0x5c27e589 blk_bio_list_merge EXPORT_SYMBOL_GPL vmlinux 0x5c2bcd37 bpf_warn_invalid_xdp_action EXPORT_SYMBOL_GPL vmlinux 0x5c309e65 hibernate_quiet_exec -EXPORT_SYMBOL_GPL vmlinux 0x5c4d077a extcon_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5c3e6c30 __class_register +EXPORT_SYMBOL_GPL vmlinux 0x5c4a710f pfn_to_online_page +EXPORT_SYMBOL_GPL vmlinux 0x5c5402eb iommu_unmap EXPORT_SYMBOL_GPL vmlinux 0x5c5a1b16 tick_broadcast_control EXPORT_SYMBOL_GPL vmlinux 0x5c5c6826 phy_10gbit_full_features -EXPORT_SYMBOL_GPL vmlinux 0x5c6e775c xenbus_read_otherend_details -EXPORT_SYMBOL_GPL vmlinux 0x5c98f0b4 ipv6_bpf_stub +EXPORT_SYMBOL_GPL vmlinux 0x5c60d383 clk_gate_restore_context +EXPORT_SYMBOL_GPL vmlinux 0x5c6842a0 devm_memunmap_pages +EXPORT_SYMBOL_GPL vmlinux 0x5c6ed6bd edac_pci_del_device +EXPORT_SYMBOL_GPL vmlinux 0x5c7b8144 nf_checksum +EXPORT_SYMBOL_GPL vmlinux 0x5c7f3cc9 __class_create +EXPORT_SYMBOL_GPL vmlinux 0x5c8d9052 skb_zerocopy +EXPORT_SYMBOL_GPL vmlinux 0x5c8eb062 serdev_device_add EXPORT_SYMBOL_GPL vmlinux 0x5cab9945 unregister_xenbus_watch EXPORT_SYMBOL_GPL vmlinux 0x5cad8fc3 power_supply_ocv2cap_simple -EXPORT_SYMBOL_GPL vmlinux 0x5cb0e4dc spi_bus_lock -EXPORT_SYMBOL_GPL vmlinux 0x5cc0c698 __devm_clk_hw_register_divider -EXPORT_SYMBOL_GPL vmlinux 0x5cc202a1 gpiod_set_transitory -EXPORT_SYMBOL_GPL vmlinux 0x5cc2f181 inet_csk_route_req -EXPORT_SYMBOL_GPL vmlinux 0x5cca224d uart_set_options -EXPORT_SYMBOL_GPL vmlinux 0x5ccbf2e6 __SCK__tp_func_rpm_resume -EXPORT_SYMBOL_GPL vmlinux 0x5ccc4b39 kthread_cancel_delayed_work_sync -EXPORT_SYMBOL_GPL vmlinux 0x5cdd9a2f nfs_ssc_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5cb44246 serial8250_read_char +EXPORT_SYMBOL_GPL vmlinux 0x5cb8a382 devm_reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x5ce892a3 dma_wait_for_async_tx EXPORT_SYMBOL_GPL vmlinux 0x5cede0a7 xdp_flush_frame_bulk -EXPORT_SYMBOL_GPL vmlinux 0x5d07284f mbox_chan_txdone -EXPORT_SYMBOL_GPL vmlinux 0x5d09da0e __SCK__tp_func_fdb_delete -EXPORT_SYMBOL_GPL vmlinux 0x5d11c468 bsg_job_put +EXPORT_SYMBOL_GPL vmlinux 0x5cfbf183 set_capacity_and_notify +EXPORT_SYMBOL_GPL vmlinux 0x5d08b06d devlink_region_snapshot_id_get +EXPORT_SYMBOL_GPL vmlinux 0x5d0e21fa xdp_rxq_info_reg +EXPORT_SYMBOL_GPL vmlinux 0x5d1326aa do_splice_to EXPORT_SYMBOL_GPL vmlinux 0x5d17148b apei_write -EXPORT_SYMBOL_GPL vmlinux 0x5d1af537 ata_sff_data_xfer32 +EXPORT_SYMBOL_GPL vmlinux 0x5d194c2f ata_timing_compute EXPORT_SYMBOL_GPL vmlinux 0x5d2aa5fb rhashtable_walk_peek -EXPORT_SYMBOL_GPL vmlinux 0x5d2ae8f8 apply_to_existing_page_range EXPORT_SYMBOL_GPL vmlinux 0x5d2bc42a reset_control_rearm -EXPORT_SYMBOL_GPL vmlinux 0x5d4bacc9 __traceiter_pelt_dl_tp -EXPORT_SYMBOL_GPL vmlinux 0x5d607c87 pci_epc_get_features -EXPORT_SYMBOL_GPL vmlinux 0x5d653426 __rio_local_write_config_8 -EXPORT_SYMBOL_GPL vmlinux 0x5d69adfc bpf_prog_destroy -EXPORT_SYMBOL_GPL vmlinux 0x5d7d1d6c ata_sff_dev_select -EXPORT_SYMBOL_GPL vmlinux 0x5d80d6c4 pci_assign_unassigned_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0x5d2f5f83 unregister_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0x5d360f5c pci_ats_supported +EXPORT_SYMBOL_GPL vmlinux 0x5d4eba49 hwspin_lock_get_id +EXPORT_SYMBOL_GPL vmlinux 0x5d519681 cn_add_callback +EXPORT_SYMBOL_GPL vmlinux 0x5d59930c virtqueue_get_vring +EXPORT_SYMBOL_GPL vmlinux 0x5d5b42a4 mmu_notifier_put +EXPORT_SYMBOL_GPL vmlinux 0x5d654c49 shash_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0x5d6c3030 device_add EXPORT_SYMBOL_GPL vmlinux 0x5d8476d3 bpf_sk_storage_diag_alloc -EXPORT_SYMBOL_GPL vmlinux 0x5d88c4a3 blk_mq_rdma_map_queues -EXPORT_SYMBOL_GPL vmlinux 0x5d8bbb1b mnt_want_write -EXPORT_SYMBOL_GPL vmlinux 0x5d8bd8e0 usb_interrupt_msg EXPORT_SYMBOL_GPL vmlinux 0x5d9317d7 uv_teardown_irq +EXPORT_SYMBOL_GPL vmlinux 0x5d999b05 powercap_register_control_type EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact -EXPORT_SYMBOL_GPL vmlinux 0x5db1c526 serial8250_read_char -EXPORT_SYMBOL_GPL vmlinux 0x5db3cf61 devm_add_action -EXPORT_SYMBOL_GPL vmlinux 0x5db539a5 fsnotify_put_group EXPORT_SYMBOL_GPL vmlinux 0x5dbcfa4f boot_cpu_physical_apicid -EXPORT_SYMBOL_GPL vmlinux 0x5dd18426 edac_mc_handle_error -EXPORT_SYMBOL_GPL vmlinux 0x5dd40869 ata_pci_remove_one -EXPORT_SYMBOL_GPL vmlinux 0x5de2f097 pin_user_pages_fast_only -EXPORT_SYMBOL_GPL vmlinux 0x5df30aa6 pinctrl_find_and_add_gpio_range -EXPORT_SYMBOL_GPL vmlinux 0x5e0e3512 watchdog_set_restart_priority -EXPORT_SYMBOL_GPL vmlinux 0x5e170d53 vfio_pci_register_dev_region +EXPORT_SYMBOL_GPL vmlinux 0x5ddc55a3 handle_bad_irq +EXPORT_SYMBOL_GPL vmlinux 0x5ddf3cab efivar_entry_delete +EXPORT_SYMBOL_GPL vmlinux 0x5de817f2 regulator_get_current_limit +EXPORT_SYMBOL_GPL vmlinux 0x5df0ca9a led_classdev_resume EXPORT_SYMBOL_GPL vmlinux 0x5e173309 cpu_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x5e22c61a dev_pm_opp_detach_genpd -EXPORT_SYMBOL_GPL vmlinux 0x5e23e0f8 blk_revalidate_disk_zones -EXPORT_SYMBOL_GPL vmlinux 0x5e29b6d3 devlink_port_param_driverinit_value_get +EXPORT_SYMBOL_GPL vmlinux 0x5e17bb9c ping_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0x5e4eb596 nfs_ssc_client_tbl +EXPORT_SYMBOL_GPL vmlinux 0x5e50f21a hvc_alloc EXPORT_SYMBOL_GPL vmlinux 0x5e515be6 ktime_get_ts64 -EXPORT_SYMBOL_GPL vmlinux 0x5e5ba95e crypto_hash_walk_first -EXPORT_SYMBOL_GPL vmlinux 0x5e616015 debugfs_attr_write -EXPORT_SYMBOL_GPL vmlinux 0x5e6f5c48 acpi_data_fwnode_ops EXPORT_SYMBOL_GPL vmlinux 0x5e798ffb divider_get_val EXPORT_SYMBOL_GPL vmlinux 0x5e85415b ring_buffer_consume -EXPORT_SYMBOL_GPL vmlinux 0x5e85c103 xdp_rxq_info_unused -EXPORT_SYMBOL_GPL vmlinux 0x5e9d7635 device_create -EXPORT_SYMBOL_GPL vmlinux 0x5ea62a94 vchan_dma_desc_free_list +EXPORT_SYMBOL_GPL vmlinux 0x5e8bb7ae __percpu_init_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x5e8bfa0c debugfs_create_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x5e95c8a2 __SCK__tp_func_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0x5e9919c7 perf_aux_output_end +EXPORT_SYMBOL_GPL vmlinux 0x5e998464 dbs_update +EXPORT_SYMBOL_GPL vmlinux 0x5e9fea1f dma_buf_detach EXPORT_SYMBOL_GPL vmlinux 0x5eae5408 clk_is_enabled_when_prepared -EXPORT_SYMBOL_GPL vmlinux 0x5ec4f36c fsnotify_init_mark +EXPORT_SYMBOL_GPL vmlinux 0x5eb1ccbc wm8350_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x5ebf6d81 xenbus_alloc_evtchn +EXPORT_SYMBOL_GPL vmlinux 0x5ec1f334 pci_set_host_bridge_release EXPORT_SYMBOL_GPL vmlinux 0x5ec62549 ata_dev_classify -EXPORT_SYMBOL_GPL vmlinux 0x5ecaab6d ata_bmdma_qc_prep -EXPORT_SYMBOL_GPL vmlinux 0x5ee8cbe4 bsg_job_get +EXPORT_SYMBOL_GPL vmlinux 0x5ec67680 clean_acked_data_disable +EXPORT_SYMBOL_GPL vmlinux 0x5ec9bf27 akcipher_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x5ecf8e26 __platform_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x5ef91219 of_pm_clk_add_clk +EXPORT_SYMBOL_GPL vmlinux 0x5f0e35c6 fsverity_file_open +EXPORT_SYMBOL_GPL vmlinux 0x5f11a7f0 pci_dev_run_wake +EXPORT_SYMBOL_GPL vmlinux 0x5f133af2 skb_segment_list +EXPORT_SYMBOL_GPL vmlinux 0x5f23426d regmap_raw_read EXPORT_SYMBOL_GPL vmlinux 0x5f23e3fa insert_resource +EXPORT_SYMBOL_GPL vmlinux 0x5f285c64 user_describe EXPORT_SYMBOL_GPL vmlinux 0x5f2da8c4 check_tsc_unstable EXPORT_SYMBOL_GPL vmlinux 0x5f2fcc83 ioremap_uc -EXPORT_SYMBOL_GPL vmlinux 0x5f533d6a __clk_mux_determine_rate_closest -EXPORT_SYMBOL_GPL vmlinux 0x5f5832f6 __netpoll_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x5f5a614c xfrm_dev_state_add +EXPORT_SYMBOL_GPL vmlinux 0x5f32034b sdio_claim_irq +EXPORT_SYMBOL_GPL vmlinux 0x5f4967a2 crypto_unregister_algs +EXPORT_SYMBOL_GPL vmlinux 0x5f4a22cb fwnode_handle_put +EXPORT_SYMBOL_GPL vmlinux 0x5f4b20e1 alloc_dax_region +EXPORT_SYMBOL_GPL vmlinux 0x5f69f667 acpi_cppc_processor_probe EXPORT_SYMBOL_GPL vmlinux 0x5f6f1e9e dax_get_private -EXPORT_SYMBOL_GPL vmlinux 0x5f6fe337 devm_led_trigger_register -EXPORT_SYMBOL_GPL vmlinux 0x5f93b6af mbox_request_channel_byname -EXPORT_SYMBOL_GPL vmlinux 0x5fa5247a sata_link_scr_lpm +EXPORT_SYMBOL_GPL vmlinux 0x5f71d3fe blkg_rwstat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0x5f79172f thermal_zone_device_disable +EXPORT_SYMBOL_GPL vmlinux 0x5f79bbf4 devlink_flash_update_timeout_notify +EXPORT_SYMBOL_GPL vmlinux 0x5f851c97 wakeup_source_remove EXPORT_SYMBOL_GPL vmlinux 0x5fa625ed mpi_ec_mul_point -EXPORT_SYMBOL_GPL vmlinux 0x5fbbd377 tcp_register_congestion_control -EXPORT_SYMBOL_GPL vmlinux 0x5fc17535 vfs_listxattr -EXPORT_SYMBOL_GPL vmlinux 0x5fca6e16 fib6_rule_default -EXPORT_SYMBOL_GPL vmlinux 0x5fcec5e4 regulator_put +EXPORT_SYMBOL_GPL vmlinux 0x5fabab05 clk_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0x5fcc0b00 badblocks_clear +EXPORT_SYMBOL_GPL vmlinux 0x5fd14a1f powercap_register_zone +EXPORT_SYMBOL_GPL vmlinux 0x5fdf67b3 acpi_dma_controller_free EXPORT_SYMBOL_GPL vmlinux 0x5fdfa2c1 amd_pmu_enable_virt -EXPORT_SYMBOL_GPL vmlinux 0x5ff19619 thermal_zone_get_slope +EXPORT_SYMBOL_GPL vmlinux 0x5fed9b28 gpiochip_reqres_irq +EXPORT_SYMBOL_GPL vmlinux 0x5ff76dcd rio_del_mport_pw_handler EXPORT_SYMBOL_GPL vmlinux 0x60069ee1 inet_ehash_locks_alloc +EXPORT_SYMBOL_GPL vmlinux 0x60090af1 usb_urb_ep_type_check EXPORT_SYMBOL_GPL vmlinux 0x60091316 clk_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x60157ead irqd_cfg -EXPORT_SYMBOL_GPL vmlinux 0x6017d737 __class_create -EXPORT_SYMBOL_GPL vmlinux 0x6027ef74 __tracepoint_xhci_dbg_quirks +EXPORT_SYMBOL_GPL vmlinux 0x600ca028 unregister_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x602d0095 unix_inq_len EXPORT_SYMBOL_GPL vmlinux 0x603d0d51 acpi_os_map_iomem -EXPORT_SYMBOL_GPL vmlinux 0x60468160 spi_mem_default_supports_op +EXPORT_SYMBOL_GPL vmlinux 0x603f5d6c rio_route_get_entry +EXPORT_SYMBOL_GPL vmlinux 0x60411674 fat_detach EXPORT_SYMBOL_GPL vmlinux 0x604722fd devices_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x60531f77 fwnode_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0x605942c8 wm8350_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x605aad7d akcipher_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x6076c750 blk_steal_bios -EXPORT_SYMBOL_GPL vmlinux 0x6078103c dev_pm_domain_start -EXPORT_SYMBOL_GPL vmlinux 0x607add64 bsg_remove_queue +EXPORT_SYMBOL_GPL vmlinux 0x605a3745 serdev_device_set_parity +EXPORT_SYMBOL_GPL vmlinux 0x60694945 pm_clk_destroy +EXPORT_SYMBOL_GPL vmlinux 0x60721dc3 strp_check_rcv +EXPORT_SYMBOL_GPL vmlinux 0x607b024d pinctrl_get_group_pins EXPORT_SYMBOL_GPL vmlinux 0x607c4683 devlink_info_version_fixed_put -EXPORT_SYMBOL_GPL vmlinux 0x608dcea5 fuse_do_open +EXPORT_SYMBOL_GPL vmlinux 0x608a6b1a __SCK__tp_func_cpu_frequency EXPORT_SYMBOL_GPL vmlinux 0x6091797f synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0x6093ea7d fat_attach -EXPORT_SYMBOL_GPL vmlinux 0x609847d0 i2c_dw_adjust_bus_speed EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier EXPORT_SYMBOL_GPL vmlinux 0x60a634c4 vfio_info_cap_add -EXPORT_SYMBOL_GPL vmlinux 0x60ab5dbe cpuidle_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x60b04f99 hwmon_device_register_with_info -EXPORT_SYMBOL_GPL vmlinux 0x60bc3131 vfio_external_group_match_file -EXPORT_SYMBOL_GPL vmlinux 0x60c78c94 tty_get_pgrp -EXPORT_SYMBOL_GPL vmlinux 0x60c872af pfn_to_online_page -EXPORT_SYMBOL_GPL vmlinux 0x60d39283 lwtunnel_xmit -EXPORT_SYMBOL_GPL vmlinux 0x60e227a1 tpm2_flush_context +EXPORT_SYMBOL_GPL vmlinux 0x60b72c85 led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x60e4b4e5 devm_usb_get_phy EXPORT_SYMBOL_GPL vmlinux 0x60ebc96f ring_buffer_read_prepare EXPORT_SYMBOL_GPL vmlinux 0x60f99e1b cppc_set_perf -EXPORT_SYMBOL_GPL vmlinux 0x6104e999 da903x_write -EXPORT_SYMBOL_GPL vmlinux 0x61066dfa elv_rqhash_add -EXPORT_SYMBOL_GPL vmlinux 0x6110224f genphy_c45_pma_setup_forced +EXPORT_SYMBOL_GPL vmlinux 0x6108ab6a class_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0x61103923 vfio_pci_core_finish_enable +EXPORT_SYMBOL_GPL vmlinux 0x611046e1 vfs_truncate +EXPORT_SYMBOL_GPL vmlinux 0x61129040 tcp_is_ulp_esp +EXPORT_SYMBOL_GPL vmlinux 0x611c3ec6 adp5520_register_notifier EXPORT_SYMBOL_GPL vmlinux 0x611cfa85 klist_add_tail -EXPORT_SYMBOL_GPL vmlinux 0x611fc913 rt_mutex_lock -EXPORT_SYMBOL_GPL vmlinux 0x6125158e ehci_adjust_port_wakeup_flags EXPORT_SYMBOL_GPL vmlinux 0x6129fb93 sfp_remove_phy EXPORT_SYMBOL_GPL vmlinux 0x612bfd89 errno_to_blk_status -EXPORT_SYMBOL_GPL vmlinux 0x615beeb5 __cpuhp_state_add_instance +EXPORT_SYMBOL_GPL vmlinux 0x61492963 wbc_attach_and_unlock_inode +EXPORT_SYMBOL_GPL vmlinux 0x615aa4ea dma_buf_get EXPORT_SYMBOL_GPL vmlinux 0x615d3447 kernel_read_file_from_path -EXPORT_SYMBOL_GPL vmlinux 0x6161268a usb_enable_lpm -EXPORT_SYMBOL_GPL vmlinux 0x6178e697 iommu_device_sysfs_add +EXPORT_SYMBOL_GPL vmlinux 0x6169c717 sata_link_resume +EXPORT_SYMBOL_GPL vmlinux 0x616b441c __ndisc_fill_addr_option +EXPORT_SYMBOL_GPL vmlinux 0x616cceb0 fsnotify_alloc_user_group EXPORT_SYMBOL_GPL vmlinux 0x617b026c hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0x617e9023 iommu_map EXPORT_SYMBOL_GPL vmlinux 0x6181e79f timerqueue_add -EXPORT_SYMBOL_GPL vmlinux 0x618331c3 validate_xmit_skb_list -EXPORT_SYMBOL_GPL vmlinux 0x61843a64 phy_set_mode_ext EXPORT_SYMBOL_GPL vmlinux 0x6198dfea __ring_buffer_alloc EXPORT_SYMBOL_GPL vmlinux 0x6199ad5d crypto_has_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x619b14da fpstate_init EXPORT_SYMBOL_GPL vmlinux 0x619d2eca acpi_gpio_get_irq_resource -EXPORT_SYMBOL_GPL vmlinux 0x61a1acd0 spi_split_transfers_maxsize -EXPORT_SYMBOL_GPL vmlinux 0x61a3aaee iopf_queue_add_device +EXPORT_SYMBOL_GPL vmlinux 0x61a6559e wm8350_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0x61ad1aad ata_common_sdev_attrs EXPORT_SYMBOL_GPL vmlinux 0x61ae1d2d xas_pause -EXPORT_SYMBOL_GPL vmlinux 0x61cfef8a gpiochip_irq_unmap -EXPORT_SYMBOL_GPL vmlinux 0x61d281d2 i2c_adapter_depth +EXPORT_SYMBOL_GPL vmlinux 0x61b443f8 x86_spec_ctrl_current +EXPORT_SYMBOL_GPL vmlinux 0x61b62f4f generic_online_page +EXPORT_SYMBOL_GPL vmlinux 0x61b71582 ata_dev_pair EXPORT_SYMBOL_GPL vmlinux 0x61f67c92 phy_gbit_features_array -EXPORT_SYMBOL_GPL vmlinux 0x61f6e312 fib_nl_newrule -EXPORT_SYMBOL_GPL vmlinux 0x62061073 usb_hcd_amd_remote_wakeup_quirk -EXPORT_SYMBOL_GPL vmlinux 0x6221eae3 kthread_flush_worker +EXPORT_SYMBOL_GPL vmlinux 0x620442e0 modify_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x62103c2f crypto_aead_setauthsize +EXPORT_SYMBOL_GPL vmlinux 0x6220b459 platform_get_irq EXPORT_SYMBOL_GPL vmlinux 0x622c7922 register_oom_notifier -EXPORT_SYMBOL_GPL vmlinux 0x62306925 security_path_link EXPORT_SYMBOL_GPL vmlinux 0x62377a7b blk_io_schedule -EXPORT_SYMBOL_GPL vmlinux 0x62425acb generic_fh_to_dentry +EXPORT_SYMBOL_GPL vmlinux 0x62425884 ata_do_dev_read_id +EXPORT_SYMBOL_GPL vmlinux 0x62429434 pinctrl_lookup_state EXPORT_SYMBOL_GPL vmlinux 0x6246a629 synchronize_rcu_tasks_trace -EXPORT_SYMBOL_GPL vmlinux 0x6247b2a6 edac_get_sysfs_subsys -EXPORT_SYMBOL_GPL vmlinux 0x62541270 page_mkclean -EXPORT_SYMBOL_GPL vmlinux 0x62564087 pm_genpd_init EXPORT_SYMBOL_GPL vmlinux 0x6257dda7 clk_rate_exclusive_get EXPORT_SYMBOL_GPL vmlinux 0x6259d291 clk_restore_context -EXPORT_SYMBOL_GPL vmlinux 0x625a96ae dma_mmap_noncontiguous -EXPORT_SYMBOL_GPL vmlinux 0x625c852e max8997_bulk_write -EXPORT_SYMBOL_GPL vmlinux 0x625e07f2 dw_pcie_ep_init -EXPORT_SYMBOL_GPL vmlinux 0x6292de02 ip6_route_lookup +EXPORT_SYMBOL_GPL vmlinux 0x62869b12 edac_get_sysfs_subsys +EXPORT_SYMBOL_GPL vmlinux 0x62a29067 xen_register_device_domain_owner +EXPORT_SYMBOL_GPL vmlinux 0x62a87a2d genphy_c45_read_lpa +EXPORT_SYMBOL_GPL vmlinux 0x62b661d2 sysfs_merge_group +EXPORT_SYMBOL_GPL vmlinux 0x62baa66b xenbus_probe_node EXPORT_SYMBOL_GPL vmlinux 0x62bb09bf clocks_calc_mult_shift -EXPORT_SYMBOL_GPL vmlinux 0x62be09ee devm_kstrdup -EXPORT_SYMBOL_GPL vmlinux 0x62d22527 pci_bus_add_device -EXPORT_SYMBOL_GPL vmlinux 0x62d64e8c irq_domain_free_irqs_parent -EXPORT_SYMBOL_GPL vmlinux 0x62e674b0 uart_console_device +EXPORT_SYMBOL_GPL vmlinux 0x62e9ae9e xenbus_dev_error +EXPORT_SYMBOL_GPL vmlinux 0x62f3a95a dev_pm_disable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x62f79315 phy_create +EXPORT_SYMBOL_GPL vmlinux 0x62fdb30e crypto_register_scomps +EXPORT_SYMBOL_GPL vmlinux 0x6301546e dm_disk EXPORT_SYMBOL_GPL vmlinux 0x63026490 unregister_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x630b886a spi_new_device EXPORT_SYMBOL_GPL vmlinux 0x63150e06 clk_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x63176e09 iommu_fwspec_add_ids +EXPORT_SYMBOL_GPL vmlinux 0x6318f1dd kthread_mod_delayed_work EXPORT_SYMBOL_GPL vmlinux 0x63197685 s2idle_wake -EXPORT_SYMBOL_GPL vmlinux 0x63198477 spi_mem_dtr_supports_op +EXPORT_SYMBOL_GPL vmlinux 0x631a3f67 crypto_stats_kpp_compute_shared_secret +EXPORT_SYMBOL_GPL vmlinux 0x63215b31 of_phy_provider_unregister EXPORT_SYMBOL_GPL vmlinux 0x6340434e x86_model -EXPORT_SYMBOL_GPL vmlinux 0x6341b5d6 tpm_calc_ordinal_duration -EXPORT_SYMBOL_GPL vmlinux 0x6361d3dc cpufreq_dbs_governor_init -EXPORT_SYMBOL_GPL vmlinux 0x6369c511 pci_iomap_wc -EXPORT_SYMBOL_GPL vmlinux 0x636bf34a badblocks_init -EXPORT_SYMBOL_GPL vmlinux 0x6378aa6b sata_pmp_qc_defer_cmd_switch -EXPORT_SYMBOL_GPL vmlinux 0x637bce9c pci_user_read_config_word -EXPORT_SYMBOL_GPL vmlinux 0x638637b6 platform_device_register -EXPORT_SYMBOL_GPL vmlinux 0x63881f3c sync_page_io +EXPORT_SYMBOL_GPL vmlinux 0x6349b268 trace_array_put +EXPORT_SYMBOL_GPL vmlinux 0x635c5fd5 debugfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x635e7a9f acpi_dev_pm_attach +EXPORT_SYMBOL_GPL vmlinux 0x636d042e inet_send_prepare +EXPORT_SYMBOL_GPL vmlinux 0x637087eb devlink_port_register +EXPORT_SYMBOL_GPL vmlinux 0x63789108 blk_req_needs_zone_write_lock EXPORT_SYMBOL_GPL vmlinux 0x638a9653 memory_add_physaddr_to_nid EXPORT_SYMBOL_GPL vmlinux 0x638aff11 proc_douintvec_minmax -EXPORT_SYMBOL_GPL vmlinux 0x63982c9b ata_bmdma_post_internal_cmd -EXPORT_SYMBOL_GPL vmlinux 0x63a56b0d ata_scsi_slave_config -EXPORT_SYMBOL_GPL vmlinux 0x63a74bd5 usb_hcd_pci_probe -EXPORT_SYMBOL_GPL vmlinux 0x63aeecf6 to_nvdimm -EXPORT_SYMBOL_GPL vmlinux 0x63b18f15 ping_seq_start +EXPORT_SYMBOL_GPL vmlinux 0x638e2706 cpci_hp_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0x63985625 firmware_request_nowarn +EXPORT_SYMBOL_GPL vmlinux 0x639feb9b iommu_sva_free_pasid +EXPORT_SYMBOL_GPL vmlinux 0x63b07176 lwtunnel_build_state EXPORT_SYMBOL_GPL vmlinux 0x63c08029 clk_bulk_unprepare -EXPORT_SYMBOL_GPL vmlinux 0x63cb909b irq_chip_eoi_parent +EXPORT_SYMBOL_GPL vmlinux 0x63c60ea7 blk_mq_pci_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x63d627f7 ipv4_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x63dbb898 splice_to_pipe EXPORT_SYMBOL_GPL vmlinux 0x63ea80b3 cper_mem_err_type_str -EXPORT_SYMBOL_GPL vmlinux 0x63f13346 gpiochip_irqchip_add_domain -EXPORT_SYMBOL_GPL vmlinux 0x63fcba66 phy_optional_get -EXPORT_SYMBOL_GPL vmlinux 0x64096568 fat_build_inode -EXPORT_SYMBOL_GPL vmlinux 0x641d34b7 open_related_ns -EXPORT_SYMBOL_GPL vmlinux 0x642a17a0 __traceiter_block_rq_insert -EXPORT_SYMBOL_GPL vmlinux 0x642ee2dd set_online_page_callback -EXPORT_SYMBOL_GPL vmlinux 0x643c622a fscrypt_mergeable_bio_bh -EXPORT_SYMBOL_GPL vmlinux 0x646c1757 wwan_register_ops -EXPORT_SYMBOL_GPL vmlinux 0x648229e0 acpi_dev_remove_driver_gpios +EXPORT_SYMBOL_GPL vmlinux 0x63f04d5a __tracepoint_br_fdb_external_learn_add +EXPORT_SYMBOL_GPL vmlinux 0x63ff1f96 blk_mq_start_stopped_hw_queue +EXPORT_SYMBOL_GPL vmlinux 0x6402290e fscrypt_prepare_new_inode +EXPORT_SYMBOL_GPL vmlinux 0x6408d266 sk_setup_caps +EXPORT_SYMBOL_GPL vmlinux 0x64279789 ata_host_suspend +EXPORT_SYMBOL_GPL vmlinux 0x643e234c phy_pm_runtime_put_sync +EXPORT_SYMBOL_GPL vmlinux 0x645e9fd7 phy_init +EXPORT_SYMBOL_GPL vmlinux 0x64602f07 __SCK__tp_func_br_fdb_update +EXPORT_SYMBOL_GPL vmlinux 0x6463f173 crypto_register_acomps +EXPORT_SYMBOL_GPL vmlinux 0x646fe388 gpiod_set_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x6488df4a serdev_device_write +EXPORT_SYMBOL_GPL vmlinux 0x648f01e4 usb_match_id +EXPORT_SYMBOL_GPL vmlinux 0x64913bae __page_file_index EXPORT_SYMBOL_GPL vmlinux 0x64925270 __dax_synchronous +EXPORT_SYMBOL_GPL vmlinux 0x649fef58 alloc_page_buffers EXPORT_SYMBOL_GPL vmlinux 0x64a31445 mutex_lock_io EXPORT_SYMBOL_GPL vmlinux 0x64a62e11 acpi_processor_ffh_cstate_enter +EXPORT_SYMBOL_GPL vmlinux 0x64a77216 power_supply_set_battery_charged +EXPORT_SYMBOL_GPL vmlinux 0x64ab5b6f fwnode_usb_role_switch_get EXPORT_SYMBOL_GPL vmlinux 0x64b71173 reserve_iova -EXPORT_SYMBOL_GPL vmlinux 0x64c8a006 ata_bmdma_port_start -EXPORT_SYMBOL_GPL vmlinux 0x64c968c6 phy_destroy EXPORT_SYMBOL_GPL vmlinux 0x64d3cc4e xas_load -EXPORT_SYMBOL_GPL vmlinux 0x64d51193 devm_blk_ksm_init -EXPORT_SYMBOL_GPL vmlinux 0x64d7300b ata_acpi_gtm -EXPORT_SYMBOL_GPL vmlinux 0x64e01d66 irqchip_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0x64d77a4c devm_of_phy_get_by_index EXPORT_SYMBOL_GPL vmlinux 0x64e27c4f synth_event_delete EXPORT_SYMBOL_GPL vmlinux 0x64f36620 dax_flush +EXPORT_SYMBOL_GPL vmlinux 0x64f96418 __tracepoint_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0x64fe6bd5 xenbus_dev_suspend EXPORT_SYMBOL_GPL vmlinux 0x6502d9c2 xenbus_scanf -EXPORT_SYMBOL_GPL vmlinux 0x650b392b get_task_pid -EXPORT_SYMBOL_GPL vmlinux 0x651f146f usb_disable_ltm -EXPORT_SYMBOL_GPL vmlinux 0x65272655 virtqueue_get_buf +EXPORT_SYMBOL_GPL vmlinux 0x6526ca9b __udp4_lib_lookup EXPORT_SYMBOL_GPL vmlinux 0x6527a231 dbgp_external_startup -EXPORT_SYMBOL_GPL vmlinux 0x652f5430 tps80031_ext_power_req_config EXPORT_SYMBOL_GPL vmlinux 0x6531a37f mpi_add -EXPORT_SYMBOL_GPL vmlinux 0x65497ae2 __hwspin_lock_timeout -EXPORT_SYMBOL_GPL vmlinux 0x65585b9b inet6_csk_addr2sockaddr -EXPORT_SYMBOL_GPL vmlinux 0x656f3073 __traceiter_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0x653de741 rio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x654b6178 ata_scsi_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x656260d4 handle_level_irq +EXPORT_SYMBOL_GPL vmlinux 0x656db13d acpi_processor_get_performance_info EXPORT_SYMBOL_GPL vmlinux 0x65704d22 hv_stimer_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x657445d6 clk_hw_register_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0x659f8dac devm_spi_mem_dirmap_destroy -EXPORT_SYMBOL_GPL vmlinux 0x65bd419d tcp_leave_memory_pressure -EXPORT_SYMBOL_GPL vmlinux 0x65c768f1 dma_can_mmap -EXPORT_SYMBOL_GPL vmlinux 0x65c8aaaa irq_set_chip_and_handler_name +EXPORT_SYMBOL_GPL vmlinux 0x657751d1 perf_trace_run_bpf_submit +EXPORT_SYMBOL_GPL vmlinux 0x6581e026 pci_d3cold_disable +EXPORT_SYMBOL_GPL vmlinux 0x659de835 spi_write_then_read +EXPORT_SYMBOL_GPL vmlinux 0x65aa87ff xhci_get_ep_ctx +EXPORT_SYMBOL_GPL vmlinux 0x65ae177b usb_hcd_unmap_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x65af3d39 gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x65b0ac88 __tracepoint_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0x65c4d70e crypto_stats_init +EXPORT_SYMBOL_GPL vmlinux 0x65c8e3f0 __traceiter_fib6_table_lookup EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers -EXPORT_SYMBOL_GPL vmlinux 0x65d32e91 exportfs_encode_fh -EXPORT_SYMBOL_GPL vmlinux 0x65d4ef4f __SCK__tp_func_cpu_idle -EXPORT_SYMBOL_GPL vmlinux 0x65ec8e4e crypto_spawn_tfm2 -EXPORT_SYMBOL_GPL vmlinux 0x65ee67fd edac_mc_del_mc -EXPORT_SYMBOL_GPL vmlinux 0x66017b9e gpiod_set_raw_value -EXPORT_SYMBOL_GPL vmlinux 0x660b81af wwan_unregister_ops -EXPORT_SYMBOL_GPL vmlinux 0x6611c8e1 gov_attr_set_get -EXPORT_SYMBOL_GPL vmlinux 0x66121776 icc_node_create -EXPORT_SYMBOL_GPL vmlinux 0x66130697 led_trigger_set_default +EXPORT_SYMBOL_GPL vmlinux 0x65cf1797 mctrl_gpio_free +EXPORT_SYMBOL_GPL vmlinux 0x65e023b6 gpiod_get_raw_value +EXPORT_SYMBOL_GPL vmlinux 0x65e76a25 tps6586x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x6602aa7c regulator_set_current_limit +EXPORT_SYMBOL_GPL vmlinux 0x6602c39d da9055_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x6612d920 security_path_truncate +EXPORT_SYMBOL_GPL vmlinux 0x6615102d iomap_truncate_page EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol -EXPORT_SYMBOL_GPL vmlinux 0x6625a37b ata_dev_disable -EXPORT_SYMBOL_GPL vmlinux 0x662fb530 tcp_rate_check_app_limited +EXPORT_SYMBOL_GPL vmlinux 0x661c4fc5 sysfs_remove_link_from_group +EXPORT_SYMBOL_GPL vmlinux 0x66230a50 rdev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x6630595e bio_add_zone_append_page EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity EXPORT_SYMBOL_GPL vmlinux 0x663bb448 devlink_fmsg_obj_nest_end -EXPORT_SYMBOL_GPL vmlinux 0x66466c34 fat_dir_empty -EXPORT_SYMBOL_GPL vmlinux 0x665ac5b2 blk_next_bio +EXPORT_SYMBOL_GPL vmlinux 0x664a39c1 dev_pm_opp_find_freq_ceil_by_volt +EXPORT_SYMBOL_GPL vmlinux 0x664dbe4e sdio_readl +EXPORT_SYMBOL_GPL vmlinux 0x665376df da9052_free_irq EXPORT_SYMBOL_GPL vmlinux 0x665e92a0 clk_set_duty_cycle -EXPORT_SYMBOL_GPL vmlinux 0x6670d29e vga_default_device +EXPORT_SYMBOL_GPL vmlinux 0x66601267 irq_domain_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x6672333b dm_internal_resume +EXPORT_SYMBOL_GPL vmlinux 0x66774d29 usb_register_device_driver EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x668ad073 blk_freeze_queue_start -EXPORT_SYMBOL_GPL vmlinux 0x669800f4 device_wakeup_enable -EXPORT_SYMBOL_GPL vmlinux 0x669fb1a1 kthread_queue_delayed_work -EXPORT_SYMBOL_GPL vmlinux 0x66aa97a9 __fl6_sock_lookup +EXPORT_SYMBOL_GPL vmlinux 0x668fb724 crypto_comp_compress EXPORT_SYMBOL_GPL vmlinux 0x66ae4727 mdio_bus_init EXPORT_SYMBOL_GPL vmlinux 0x66b26b2b clk_hw_unregister_divider -EXPORT_SYMBOL_GPL vmlinux 0x66b78357 bus_set_iommu +EXPORT_SYMBOL_GPL vmlinux 0x66b80742 phy_put EXPORT_SYMBOL_GPL vmlinux 0x66b97421 sfp_link_up -EXPORT_SYMBOL_GPL vmlinux 0x66ba7aa1 vfio_pci_core_request EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr -EXPORT_SYMBOL_GPL vmlinux 0x66ef2867 pci_create_root_bus -EXPORT_SYMBOL_GPL vmlinux 0x66f01517 fscrypt_file_open -EXPORT_SYMBOL_GPL vmlinux 0x66f19f6d crypto_enqueue_request -EXPORT_SYMBOL_GPL vmlinux 0x66f812c6 restore_online_page_callback -EXPORT_SYMBOL_GPL vmlinux 0x670515b4 raw_abort -EXPORT_SYMBOL_GPL vmlinux 0x671152bf noop_direct_IO -EXPORT_SYMBOL_GPL vmlinux 0x67174e93 devm_nvmem_cell_get -EXPORT_SYMBOL_GPL vmlinux 0x67223910 dma_buf_end_cpu_access +EXPORT_SYMBOL_GPL vmlinux 0x66dfcb5d acomp_request_free +EXPORT_SYMBOL_GPL vmlinux 0x66e0a94a isa_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x66e119b7 uprobe_register_refctr +EXPORT_SYMBOL_GPL vmlinux 0x66e50b6b fwnode_device_is_available +EXPORT_SYMBOL_GPL vmlinux 0x66f11ea6 regmap_write +EXPORT_SYMBOL_GPL vmlinux 0x66f59c77 trace_seq_path +EXPORT_SYMBOL_GPL vmlinux 0x66f61f88 pin_get_name +EXPORT_SYMBOL_GPL vmlinux 0x66f7d0bb ip6_dst_lookup +EXPORT_SYMBOL_GPL vmlinux 0x66faa5d7 nf_route +EXPORT_SYMBOL_GPL vmlinux 0x66fab689 iptunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0x66fce697 dma_get_required_mask +EXPORT_SYMBOL_GPL vmlinux 0x6720fefb xhci_add_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x672bccc3 ata_ehi_clear_desc +EXPORT_SYMBOL_GPL vmlinux 0x672dffdc devlink_port_param_value_changed +EXPORT_SYMBOL_GPL vmlinux 0x67320a4a ip4_datagram_release_cb EXPORT_SYMBOL_GPL vmlinux 0x6735d56e tcp_ca_get_name_by_key -EXPORT_SYMBOL_GPL vmlinux 0x67364965 clk_hw_get_name EXPORT_SYMBOL_GPL vmlinux 0x6739a503 balloon_set_new_target -EXPORT_SYMBOL_GPL vmlinux 0x674cce2f serdev_device_remove +EXPORT_SYMBOL_GPL vmlinux 0x673f4429 acpi_bus_trim +EXPORT_SYMBOL_GPL vmlinux 0x67401090 pci_epc_get_features +EXPORT_SYMBOL_GPL vmlinux 0x675509a5 spi_alloc_device +EXPORT_SYMBOL_GPL vmlinux 0x675719f1 phy_remove_lookup EXPORT_SYMBOL_GPL vmlinux 0x6759bd00 __SCT__tp_func_rpm_idle -EXPORT_SYMBOL_GPL vmlinux 0x676d3100 sdio_set_host_pm_flags -EXPORT_SYMBOL_GPL vmlinux 0x6780f7f3 blk_ksm_register -EXPORT_SYMBOL_GPL vmlinux 0x6782f7f2 blk_mq_sched_mark_restart_hctx -EXPORT_SYMBOL_GPL vmlinux 0x6787f8fd pm_generic_suspend -EXPORT_SYMBOL_GPL vmlinux 0x678b6705 tty_port_link_device +EXPORT_SYMBOL_GPL vmlinux 0x675b65dc kthread_data +EXPORT_SYMBOL_GPL vmlinux 0x677d2d9a ata_acpi_gtm +EXPORT_SYMBOL_GPL vmlinux 0x678cfc44 dev_pm_genpd_suspend EXPORT_SYMBOL_GPL vmlinux 0x6790ebd3 mce_is_memory_error +EXPORT_SYMBOL_GPL vmlinux 0x67942fba iomap_is_partially_uptodate EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits -EXPORT_SYMBOL_GPL vmlinux 0x679ab7c6 pci_epf_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x67c4e699 sk_psock_init -EXPORT_SYMBOL_GPL vmlinux 0x67ce3efd pci_host_probe -EXPORT_SYMBOL_GPL vmlinux 0x67ce7c4f acpi_is_pnp_device -EXPORT_SYMBOL_GPL vmlinux 0x67d87005 tps6586x_update -EXPORT_SYMBOL_GPL vmlinux 0x67d930ad dev_pm_set_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x67a4a449 pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x67a9bb6b device_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0x67b62af7 devm_request_free_mem_region +EXPORT_SYMBOL_GPL vmlinux 0x67c6fb53 dev_pm_opp_unregister_set_opp_helper +EXPORT_SYMBOL_GPL vmlinux 0x67cd01b2 pcc_mbox_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x67d3f6d3 tps6586x_update EXPORT_SYMBOL_GPL vmlinux 0x67da9f7c sha512_zero_message_hash EXPORT_SYMBOL_GPL vmlinux 0x67dcd76b uv_setup_irq -EXPORT_SYMBOL_GPL vmlinux 0x67ec8f4e nvdimm_setup_pfn -EXPORT_SYMBOL_GPL vmlinux 0x67f200de devm_gpiod_get_optional -EXPORT_SYMBOL_GPL vmlinux 0x68061a66 extcon_set_state_sync -EXPORT_SYMBOL_GPL vmlinux 0x68074987 dax_supported -EXPORT_SYMBOL_GPL vmlinux 0x6816e231 unix_peer_get -EXPORT_SYMBOL_GPL vmlinux 0x681c0438 fat_truncate_time +EXPORT_SYMBOL_GPL vmlinux 0x67e36b4e platform_add_devices +EXPORT_SYMBOL_GPL vmlinux 0x67e3b907 usb_phy_set_charger_state +EXPORT_SYMBOL_GPL vmlinux 0x67e7a321 scsi_free_sgtables +EXPORT_SYMBOL_GPL vmlinux 0x67e97040 crypto_alloc_sync_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x67fe7773 usb_hcd_is_primary_hcd +EXPORT_SYMBOL_GPL vmlinux 0x68057bfe crypto_register_skciphers +EXPORT_SYMBOL_GPL vmlinux 0x6814b4d3 __SCK__tp_func_pelt_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x6822293c xenbus_unmap_ring_vfree +EXPORT_SYMBOL_GPL vmlinux 0x682292e5 pci_epf_destroy EXPORT_SYMBOL_GPL vmlinux 0x682ff057 ring_buffer_commit_overrun_cpu -EXPORT_SYMBOL_GPL vmlinux 0x683ea66f __blk_req_zone_write_unlock -EXPORT_SYMBOL_GPL vmlinux 0x6841eca2 ata_platform_remove_one -EXPORT_SYMBOL_GPL vmlinux 0x684b9174 vfs_setxattr -EXPORT_SYMBOL_GPL vmlinux 0x6868393b skb_gso_validate_network_len -EXPORT_SYMBOL_GPL vmlinux 0x686b6f8b devlink_dpipe_table_register -EXPORT_SYMBOL_GPL vmlinux 0x686e2a7a __tracepoint_error_report_end -EXPORT_SYMBOL_GPL vmlinux 0x68922b17 anon_transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x684f25ac ata_eh_freeze_port +EXPORT_SYMBOL_GPL vmlinux 0x685253b2 clk_hw_get_name +EXPORT_SYMBOL_GPL vmlinux 0x685d5c66 edac_device_handle_ce_count +EXPORT_SYMBOL_GPL vmlinux 0x685e233f tty_port_register_device +EXPORT_SYMBOL_GPL vmlinux 0x687e432d xfrm_audit_state_replay +EXPORT_SYMBOL_GPL vmlinux 0x68847f12 iterate_mounts +EXPORT_SYMBOL_GPL vmlinux 0x68857e5e __SCK__tp_func_arm_event +EXPORT_SYMBOL_GPL vmlinux 0x68888211 pm_generic_resume EXPORT_SYMBOL_GPL vmlinux 0x68952493 rcu_note_context_switch -EXPORT_SYMBOL_GPL vmlinux 0x689b8691 device_rename -EXPORT_SYMBOL_GPL vmlinux 0x68a4ee0c tty_port_default_client_ops -EXPORT_SYMBOL_GPL vmlinux 0x68b20ee9 pcie_aspm_enabled -EXPORT_SYMBOL_GPL vmlinux 0x68dc5931 __clk_hw_register_mux -EXPORT_SYMBOL_GPL vmlinux 0x68e9ab14 fscrypt_ioctl_get_policy_ex +EXPORT_SYMBOL_GPL vmlinux 0x689e33f1 devm_phy_put +EXPORT_SYMBOL_GPL vmlinux 0x68a55d80 platform_get_irq_byname +EXPORT_SYMBOL_GPL vmlinux 0x68ac0682 fwnode_remove_software_node +EXPORT_SYMBOL_GPL vmlinux 0x68b18b26 crypto_unregister_scomps +EXPORT_SYMBOL_GPL vmlinux 0x68b96067 __regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0x68db3be9 genphy_c45_pma_read_abilities +EXPORT_SYMBOL_GPL vmlinux 0x68e5669d usb_hcd_unlink_urb_from_ep +EXPORT_SYMBOL_GPL vmlinux 0x68f849b1 pci_vfs_assigned +EXPORT_SYMBOL_GPL vmlinux 0x6902318b put_pid_ns EXPORT_SYMBOL_GPL vmlinux 0x690f585e phy_basic_ports_array -EXPORT_SYMBOL_GPL vmlinux 0x691ccc11 ip6_dst_lookup_flow -EXPORT_SYMBOL_GPL vmlinux 0x6920472b __traceiter_block_bio_remap -EXPORT_SYMBOL_GPL vmlinux 0x692b2d8a vp_modern_map_vq_notify -EXPORT_SYMBOL_GPL vmlinux 0x69391bfe iommu_device_unlink -EXPORT_SYMBOL_GPL vmlinux 0x6941cd95 rio_mport_initialize -EXPORT_SYMBOL_GPL vmlinux 0x6948e490 crypto_type_has_alg -EXPORT_SYMBOL_GPL vmlinux 0x694c5641 __traceiter_tcp_bad_csum -EXPORT_SYMBOL_GPL vmlinux 0x6960e03b scsi_eh_ready_devs +EXPORT_SYMBOL_GPL vmlinux 0x692b1f13 em_dev_unregister_perf_domain +EXPORT_SYMBOL_GPL vmlinux 0x69306321 fib_rules_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6932e3bb bio_start_io_acct_time +EXPORT_SYMBOL_GPL vmlinux 0x6940b660 device_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x694d7f67 skb_zerocopy_headlen EXPORT_SYMBOL_GPL vmlinux 0x696340a5 __i2c_board_lock EXPORT_SYMBOL_GPL vmlinux 0x69637b2c __traceiter_powernv_throttle -EXPORT_SYMBOL_GPL vmlinux 0x6963f532 crypto_register_scomps +EXPORT_SYMBOL_GPL vmlinux 0x69698664 ata_sff_thaw EXPORT_SYMBOL_GPL vmlinux 0x696d7e0b l1tf_mitigation -EXPORT_SYMBOL_GPL vmlinux 0x6973bb77 pci_check_and_unmask_intx -EXPORT_SYMBOL_GPL vmlinux 0x6978e48f usb_remove_hcd +EXPORT_SYMBOL_GPL vmlinux 0x696db7a9 pcie_flr EXPORT_SYMBOL_GPL vmlinux 0x697c5d0d tracing_snapshot_alloc -EXPORT_SYMBOL_GPL vmlinux 0x6986fdcf clk_hw_get_flags -EXPORT_SYMBOL_GPL vmlinux 0x698723e2 __skb_get_hash_symmetric -EXPORT_SYMBOL_GPL vmlinux 0x698dcf03 pm_wakeup_dev_event -EXPORT_SYMBOL_GPL vmlinux 0x699daf6a noop_backing_dev_info -EXPORT_SYMBOL_GPL vmlinux 0x69a05dcc regulator_get_voltage_sel_pickable_regmap -EXPORT_SYMBOL_GPL vmlinux 0x69ac78af unregister_trace_event -EXPORT_SYMBOL_GPL vmlinux 0x69c2ee74 clk_hw_register_fractional_divider -EXPORT_SYMBOL_GPL vmlinux 0x69c89520 fscrypt_ioctl_get_key_status -EXPORT_SYMBOL_GPL vmlinux 0x69c91cd6 usb_add_hcd +EXPORT_SYMBOL_GPL vmlinux 0x69984b1f led_set_brightness_sync +EXPORT_SYMBOL_GPL vmlinux 0x69a7ee9d lwtunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0x69c8912f user_destroy EXPORT_SYMBOL_GPL vmlinux 0x69cf0632 mpi_fromstr +EXPORT_SYMBOL_GPL vmlinux 0x69d669b6 tps6586x_irq_get_virq EXPORT_SYMBOL_GPL vmlinux 0x69e683de uuid_gen -EXPORT_SYMBOL_GPL vmlinux 0x69e7d103 debugfs_file_put +EXPORT_SYMBOL_GPL vmlinux 0x69e83605 mc146818_get_time EXPORT_SYMBOL_GPL vmlinux 0x69ee2220 linear_range_get_selector_high -EXPORT_SYMBOL_GPL vmlinux 0x69f754b4 crypto_skcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x69ee5571 uart_insert_char +EXPORT_SYMBOL_GPL vmlinux 0x6a00d810 genphy_c45_read_pma EXPORT_SYMBOL_GPL vmlinux 0x6a05b65b fb_videomode_from_videomode -EXPORT_SYMBOL_GPL vmlinux 0x6a0bd249 dm_set_target_max_io_len -EXPORT_SYMBOL_GPL vmlinux 0x6a125622 nvdimm_security_setup_events +EXPORT_SYMBOL_GPL vmlinux 0x6a0b9a3e cgroup_get_e_css EXPORT_SYMBOL_GPL vmlinux 0x6a1733eb iommu_group_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6a39e21f tty_find_polling_driver +EXPORT_SYMBOL_GPL vmlinux 0x6a1eb9ee pci_disable_pri +EXPORT_SYMBOL_GPL vmlinux 0x6a21516f devlink_port_region_create +EXPORT_SYMBOL_GPL vmlinux 0x6a3eae7f virtqueue_get_used_addr EXPORT_SYMBOL_GPL vmlinux 0x6a421062 memory_failure_queue EXPORT_SYMBOL_GPL vmlinux 0x6a460dc5 schedule_hrtimeout -EXPORT_SYMBOL_GPL vmlinux 0x6a487e77 thermal_zone_device_disable EXPORT_SYMBOL_GPL vmlinux 0x6a4f623b mmu_notifier_synchronize -EXPORT_SYMBOL_GPL vmlinux 0x6a538699 iptunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0x6a53ac99 pci_epc_mem_free_addr +EXPORT_SYMBOL_GPL vmlinux 0x6a53ceef fat_getattr EXPORT_SYMBOL_GPL vmlinux 0x6a5e2bde __cookie_v6_init_sequence -EXPORT_SYMBOL_GPL vmlinux 0x6a612396 __audit_inode_child -EXPORT_SYMBOL_GPL vmlinux 0x6a632f14 cpufreq_cpu_put -EXPORT_SYMBOL_GPL vmlinux 0x6a6ae12b crypto_mod_get -EXPORT_SYMBOL_GPL vmlinux 0x6a6cf663 iommu_detach_device -EXPORT_SYMBOL_GPL vmlinux 0x6a8400ea screen_glyph +EXPORT_SYMBOL_GPL vmlinux 0x6a77a7f0 extcon_sync EXPORT_SYMBOL_GPL vmlinux 0x6a8441be cpci_hp_start -EXPORT_SYMBOL_GPL vmlinux 0x6a94f617 platform_device_alloc -EXPORT_SYMBOL_GPL vmlinux 0x6a9784c0 vchan_find_desc -EXPORT_SYMBOL_GPL vmlinux 0x6a986079 da903x_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6a87cecb cpufreq_dbs_governor_stop +EXPORT_SYMBOL_GPL vmlinux 0x6aa02008 skb_defer_rx_timestamp EXPORT_SYMBOL_GPL vmlinux 0x6aa2a877 xenbus_printf EXPORT_SYMBOL_GPL vmlinux 0x6aad9152 xen_set_callback_via -EXPORT_SYMBOL_GPL vmlinux 0x6ac10bda devm_gpiod_get -EXPORT_SYMBOL_GPL vmlinux 0x6ac69bec umd_load_blob -EXPORT_SYMBOL_GPL vmlinux 0x6ad07c50 i2c_add_numbered_adapter -EXPORT_SYMBOL_GPL vmlinux 0x6ad590d2 md_find_rdev_nr_rcu -EXPORT_SYMBOL_GPL vmlinux 0x6adda7cf sbitmap_show -EXPORT_SYMBOL_GPL vmlinux 0x6ae7bf0d spi_finalize_current_message -EXPORT_SYMBOL_GPL vmlinux 0x6af66cf6 platform_device_add -EXPORT_SYMBOL_GPL vmlinux 0x6b05267e sdio_writel -EXPORT_SYMBOL_GPL vmlinux 0x6b0c8c63 ata_host_alloc +EXPORT_SYMBOL_GPL vmlinux 0x6abb6ccd phy_driver_is_genphy +EXPORT_SYMBOL_GPL vmlinux 0x6ac9db25 netdev_rx_handler_register +EXPORT_SYMBOL_GPL vmlinux 0x6acdc0bd __rio_local_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x6ad4e6a9 devm_usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0x6ad87069 pin_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0x6adc188c pm_generic_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x6ade24bc crypto_hash_alg_has_setkey +EXPORT_SYMBOL_GPL vmlinux 0x6af1e8ba vfio_device_put +EXPORT_SYMBOL_GPL vmlinux 0x6afa27db ipv6_bpf_stub +EXPORT_SYMBOL_GPL vmlinux 0x6b0ab196 __alloc_pages_bulk EXPORT_SYMBOL_GPL vmlinux 0x6b0dc565 xen_set_irq_priority -EXPORT_SYMBOL_GPL vmlinux 0x6b10f87f trace_get_event_file +EXPORT_SYMBOL_GPL vmlinux 0x6b10b66d pci_epc_map_addr EXPORT_SYMBOL_GPL vmlinux 0x6b198c77 led_colors -EXPORT_SYMBOL_GPL vmlinux 0x6b1b1a82 led_trigger_event -EXPORT_SYMBOL_GPL vmlinux 0x6b20a1d4 uart_insert_char -EXPORT_SYMBOL_GPL vmlinux 0x6b257855 crypto_stats_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0x6b24c59c gpiochip_irq_domain_deactivate EXPORT_SYMBOL_GPL vmlinux 0x6b2b69f7 static_key_enable -EXPORT_SYMBOL_GPL vmlinux 0x6b30390a __platform_register_drivers +EXPORT_SYMBOL_GPL vmlinux 0x6b33b410 usb_sg_init EXPORT_SYMBOL_GPL vmlinux 0x6b35a16b intel_scu_ipc_dev_get -EXPORT_SYMBOL_GPL vmlinux 0x6b35c328 security_file_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x6b3a0e4d iommu_dev_disable_feature EXPORT_SYMBOL_GPL vmlinux 0x6b3ae022 acpi_os_unmap_iomem EXPORT_SYMBOL_GPL vmlinux 0x6b413c9b sfp_link_down -EXPORT_SYMBOL_GPL vmlinux 0x6b49fa1e wp_shared_mapping_range -EXPORT_SYMBOL_GPL vmlinux 0x6b4e5d8f blk_trace_remove -EXPORT_SYMBOL_GPL vmlinux 0x6b55a180 pci_assign_unassigned_bridge_resources -EXPORT_SYMBOL_GPL vmlinux 0x6b626108 __vfs_setxattr_locked +EXPORT_SYMBOL_GPL vmlinux 0x6b43d026 acct_bioset_init +EXPORT_SYMBOL_GPL vmlinux 0x6b73ab94 register_trace_event EXPORT_SYMBOL_GPL vmlinux 0x6b7a4335 hyperv_cleanup EXPORT_SYMBOL_GPL vmlinux 0x6b81c38b power_supply_unreg_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6b8aadea pci_num_vf -EXPORT_SYMBOL_GPL vmlinux 0x6b9153b3 sata_set_spd +EXPORT_SYMBOL_GPL vmlinux 0x6b874492 cpufreq_freq_transition_end +EXPORT_SYMBOL_GPL vmlinux 0x6b8a4435 bpf_prog_alloc +EXPORT_SYMBOL_GPL vmlinux 0x6b9cc615 gpiod_get_array_value_cansleep EXPORT_SYMBOL_GPL vmlinux 0x6ba36c6a hwpoison_filter_flags_value -EXPORT_SYMBOL_GPL vmlinux 0x6bb324d3 md_account_bio -EXPORT_SYMBOL_GPL vmlinux 0x6bca98c4 tpm_pcr_read +EXPORT_SYMBOL_GPL vmlinux 0x6bc08702 ip_icmp_error_rfc4884 +EXPORT_SYMBOL_GPL vmlinux 0x6bcb562d ping_seq_stop EXPORT_SYMBOL_GPL vmlinux 0x6bcdedc0 mpi_point_init +EXPORT_SYMBOL_GPL vmlinux 0x6bd05e48 debugfs_create_symlink EXPORT_SYMBOL_GPL vmlinux 0x6bd1aa56 stack_trace_save +EXPORT_SYMBOL_GPL vmlinux 0x6bd9895b platform_device_add_resources EXPORT_SYMBOL_GPL vmlinux 0x6bdef35c acpi_ec_mark_gpe_for_wake EXPORT_SYMBOL_GPL vmlinux 0x6be3a96b hv_remove_vmbus_handler -EXPORT_SYMBOL_GPL vmlinux 0x6be7fd29 __traceiter_rpm_resume -EXPORT_SYMBOL_GPL vmlinux 0x6bf95688 dev_pm_qos_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6c028386 ip6_redirect -EXPORT_SYMBOL_GPL vmlinux 0x6c075a9f phy_reset -EXPORT_SYMBOL_GPL vmlinux 0x6c08cbed nvmem_register -EXPORT_SYMBOL_GPL vmlinux 0x6c0bd3ed usb_hcd_poll_rh_status +EXPORT_SYMBOL_GPL vmlinux 0x6c091073 pm_runtime_enable EXPORT_SYMBOL_GPL vmlinux 0x6c205008 mpi_print -EXPORT_SYMBOL_GPL vmlinux 0x6c222490 perf_aux_output_begin EXPORT_SYMBOL_GPL vmlinux 0x6c389761 acpi_bus_get_private_data -EXPORT_SYMBOL_GPL vmlinux 0x6c3bd1a8 udp_tunnel_nic_ops +EXPORT_SYMBOL_GPL vmlinux 0x6c3cbeae ata_sas_port_start EXPORT_SYMBOL_GPL vmlinux 0x6c3f70e0 guid_gen -EXPORT_SYMBOL_GPL vmlinux 0x6c4703e4 wakeup_source_remove +EXPORT_SYMBOL_GPL vmlinux 0x6c442dde pcie_port_find_device EXPORT_SYMBOL_GPL vmlinux 0x6c4b6684 reset_control_assert -EXPORT_SYMBOL_GPL vmlinux 0x6c56a880 usb_get_role_switch_default_mode EXPORT_SYMBOL_GPL vmlinux 0x6c5ad0cd kmsg_dump_register -EXPORT_SYMBOL_GPL vmlinux 0x6c5fe7f0 ata_host_activate -EXPORT_SYMBOL_GPL vmlinux 0x6c61390a pwm_free +EXPORT_SYMBOL_GPL vmlinux 0x6c63d2ba dev_pm_genpd_set_next_wakeup EXPORT_SYMBOL_GPL vmlinux 0x6c655913 register_acpi_hed_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6c7b8428 serial8250_do_set_divisor -EXPORT_SYMBOL_GPL vmlinux 0x6c9b0673 ata_slave_link_init +EXPORT_SYMBOL_GPL vmlinux 0x6c7b435f mc146818_does_rtc_work +EXPORT_SYMBOL_GPL vmlinux 0x6c831ce6 regcache_sync +EXPORT_SYMBOL_GPL vmlinux 0x6c854496 crypto_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x6c8ac2aa lp8788_read_multi_bytes EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain -EXPORT_SYMBOL_GPL vmlinux 0x6ca796ab ip6_sk_redirect -EXPORT_SYMBOL_GPL vmlinux 0x6ca98f28 key_type_user -EXPORT_SYMBOL_GPL vmlinux 0x6cad0fe0 fb_deferred_io_fsync -EXPORT_SYMBOL_GPL vmlinux 0x6cb9a279 nvdimm_clear_poison -EXPORT_SYMBOL_GPL vmlinux 0x6cbe6eb1 pci_cfg_access_trylock -EXPORT_SYMBOL_GPL vmlinux 0x6cc7ff67 debugfs_read_file_bool -EXPORT_SYMBOL_GPL vmlinux 0x6cccf6c7 __SCK__tp_func_attach_device_to_domain -EXPORT_SYMBOL_GPL vmlinux 0x6cd4d9d2 iommu_group_remove_device -EXPORT_SYMBOL_GPL vmlinux 0x6cd7d316 regmap_multi_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x6cdbb1a7 blk_mq_quiesce_queue -EXPORT_SYMBOL_GPL vmlinux 0x6cf5b243 register_acpi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x6ceed0ad usb_store_new_id EXPORT_SYMBOL_GPL vmlinux 0x6d04891d inet_getpeer -EXPORT_SYMBOL_GPL vmlinux 0x6d056e55 devfreq_event_enable_edev -EXPORT_SYMBOL_GPL vmlinux 0x6d08ad74 ack_all_badblocks -EXPORT_SYMBOL_GPL vmlinux 0x6d08b66a get_net_ns_by_pid EXPORT_SYMBOL_GPL vmlinux 0x6d09843f copy_bpf_fprog_from_user EXPORT_SYMBOL_GPL vmlinux 0x6d0ae550 pinctrl_gpio_request -EXPORT_SYMBOL_GPL vmlinux 0x6d204536 regulator_get_optional EXPORT_SYMBOL_GPL vmlinux 0x6d2e899d mce_usable_address EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list -EXPORT_SYMBOL_GPL vmlinux 0x6d3b0bc1 regulator_set_voltage_sel_regmap -EXPORT_SYMBOL_GPL vmlinux 0x6d43be9f irq_chip_request_resources_parent -EXPORT_SYMBOL_GPL vmlinux 0x6d455b01 irq_domain_push_irq -EXPORT_SYMBOL_GPL vmlinux 0x6d4efdfc ata_sff_check_status +EXPORT_SYMBOL_GPL vmlinux 0x6d43d484 acpi_device_uevent_modalias +EXPORT_SYMBOL_GPL vmlinux 0x6d4d4c02 devm_of_icc_get EXPORT_SYMBOL_GPL vmlinux 0x6d6fec1f ktime_mono_to_any -EXPORT_SYMBOL_GPL vmlinux 0x6d76d585 watchdog_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x6d79a2c8 put_device EXPORT_SYMBOL_GPL vmlinux 0x6d7e951e rcu_exp_batches_completed -EXPORT_SYMBOL_GPL vmlinux 0x6d990667 devm_hwmon_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x6daa5b91 phy_validate -EXPORT_SYMBOL_GPL vmlinux 0x6db22bc6 dev_coredumpm +EXPORT_SYMBOL_GPL vmlinux 0x6d822dae usb_sg_wait +EXPORT_SYMBOL_GPL vmlinux 0x6d92eb91 sdio_set_block_size +EXPORT_SYMBOL_GPL vmlinux 0x6d97d745 task_cputime_adjusted +EXPORT_SYMBOL_GPL vmlinux 0x6da3f861 unregister_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x6da6debb vp_modern_map_vq_notify +EXPORT_SYMBOL_GPL vmlinux 0x6db51f08 platform_driver_unregister EXPORT_SYMBOL_GPL vmlinux 0x6dbaafd3 put_old_timespec32 +EXPORT_SYMBOL_GPL vmlinux 0x6dbc34ae kthread_queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0x6dd02c74 mbox_flush +EXPORT_SYMBOL_GPL vmlinux 0x6dd22978 rio_local_set_device_id EXPORT_SYMBOL_GPL vmlinux 0x6dd5680d sprint_symbol_build_id -EXPORT_SYMBOL_GPL vmlinux 0x6dda8038 __clocksource_register_scale -EXPORT_SYMBOL_GPL vmlinux 0x6de3fed1 vfio_pci_core_read +EXPORT_SYMBOL_GPL vmlinux 0x6dd6997b pci_disable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x6dea2346 spi_controller_suspend +EXPORT_SYMBOL_GPL vmlinux 0x6dead85d firmware_request_platform +EXPORT_SYMBOL_GPL vmlinux 0x6df8ec84 md_find_rdev_rcu +EXPORT_SYMBOL_GPL vmlinux 0x6dfbdb2a d_walk EXPORT_SYMBOL_GPL vmlinux 0x6e00fcfb modify_ftrace_direct -EXPORT_SYMBOL_GPL vmlinux 0x6e0a6ae5 i2c_dw_acpi_configure -EXPORT_SYMBOL_GPL vmlinux 0x6e1c8439 rcuwait_wake_up -EXPORT_SYMBOL_GPL vmlinux 0x6e1df492 acpi_subsys_freeze -EXPORT_SYMBOL_GPL vmlinux 0x6e22a4ad regmap_field_bulk_alloc -EXPORT_SYMBOL_GPL vmlinux 0x6e2a682a fsverity_ioctl_measure -EXPORT_SYMBOL_GPL vmlinux 0x6e3a288d fib_rule_matchall +EXPORT_SYMBOL_GPL vmlinux 0x6e1a1d16 __clk_mux_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0x6e1cf946 extcon_get_property_capability +EXPORT_SYMBOL_GPL vmlinux 0x6e364af0 driver_attach +EXPORT_SYMBOL_GPL vmlinux 0x6e37b02f devlink_param_value_changed +EXPORT_SYMBOL_GPL vmlinux 0x6e38660a hwmon_device_register_with_info EXPORT_SYMBOL_GPL vmlinux 0x6e3ff83a edac_device_alloc_index -EXPORT_SYMBOL_GPL vmlinux 0x6e4b86f3 driver_for_each_device EXPORT_SYMBOL_GPL vmlinux 0x6e4bc056 spi_res_free -EXPORT_SYMBOL_GPL vmlinux 0x6e662179 ptdump_walk_pgd_level_debugfs +EXPORT_SYMBOL_GPL vmlinux 0x6e4fdd9a pci_epc_multi_mem_init +EXPORT_SYMBOL_GPL vmlinux 0x6e52bd2f ncsi_register_dev +EXPORT_SYMBOL_GPL vmlinux 0x6e52c086 __xdp_build_skb_from_frame +EXPORT_SYMBOL_GPL vmlinux 0x6e5b08e2 crypto_stats_kpp_generate_public_key +EXPORT_SYMBOL_GPL vmlinux 0x6e632faf wm831x_reg_lock EXPORT_SYMBOL_GPL vmlinux 0x6e7943ec iommu_group_id -EXPORT_SYMBOL_GPL vmlinux 0x6e7949cc ip6_route_input_lookup +EXPORT_SYMBOL_GPL vmlinux 0x6e7c27ee devm_clk_unregister EXPORT_SYMBOL_GPL vmlinux 0x6e85b00b local_touch_nmi -EXPORT_SYMBOL_GPL vmlinux 0x6e88a9b6 crypto_ahash_finup EXPORT_SYMBOL_GPL vmlinux 0x6e89a560 regmap_irq_chip_get_base -EXPORT_SYMBOL_GPL vmlinux 0x6ea6f986 vfs_kern_mount -EXPORT_SYMBOL_GPL vmlinux 0x6ea7184e xfrm_dev_resume -EXPORT_SYMBOL_GPL vmlinux 0x6ea7c161 pci_vpd_alloc -EXPORT_SYMBOL_GPL vmlinux 0x6eb19377 __class_register +EXPORT_SYMBOL_GPL vmlinux 0x6e8dc9d0 vfio_group_get_external_user_from_dev +EXPORT_SYMBOL_GPL vmlinux 0x6e9f4f95 get_net_ns +EXPORT_SYMBOL_GPL vmlinux 0x6eb81fa1 filemap_range_needs_writeback +EXPORT_SYMBOL_GPL vmlinux 0x6eb9ad88 of_icc_get_by_index +EXPORT_SYMBOL_GPL vmlinux 0x6ebd0b3f __device_reset EXPORT_SYMBOL_GPL vmlinux 0x6ebe366f ktime_get_mono_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0x6ed02563 dev_pm_opp_set_regulators -EXPORT_SYMBOL_GPL vmlinux 0x6ed15e27 metadata_dst_free -EXPORT_SYMBOL_GPL vmlinux 0x6ee28212 usb_find_alt_setting +EXPORT_SYMBOL_GPL vmlinux 0x6ed3c3b1 devm_hwmon_device_register_with_info EXPORT_SYMBOL_GPL vmlinux 0x6ee8c94b sfp_get_module_eeprom EXPORT_SYMBOL_GPL vmlinux 0x6ef6b54f ktime_get_boot_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0x6ef7a6fa dev_pm_opp_get_voltage -EXPORT_SYMBOL_GPL vmlinux 0x6efc285d __tracepoint_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x6f04d86f fib6_new_table +EXPORT_SYMBOL_GPL vmlinux 0x6f075536 irq_domain_free_irqs_parent +EXPORT_SYMBOL_GPL vmlinux 0x6f104ed1 dev_coredumpsg EXPORT_SYMBOL_GPL vmlinux 0x6f12560a get_old_timespec32 -EXPORT_SYMBOL_GPL vmlinux 0x6f342dd1 acpi_device_modalias -EXPORT_SYMBOL_GPL vmlinux 0x6f429706 regulator_bulk_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x6f43911e crypto_enqueue_request_head -EXPORT_SYMBOL_GPL vmlinux 0x6f48fff9 iommu_page_response -EXPORT_SYMBOL_GPL vmlinux 0x6f4e2bfd is_current_mnt_ns -EXPORT_SYMBOL_GPL vmlinux 0x6f71782e bus_rescan_devices +EXPORT_SYMBOL_GPL vmlinux 0x6f1635b7 class_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x6f35ae26 dw_pcie_ep_init_notify +EXPORT_SYMBOL_GPL vmlinux 0x6f3ac36d pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0x6f3fa2f3 usb_hcd_pci_probe +EXPORT_SYMBOL_GPL vmlinux 0x6f7d04a1 switchdev_handle_port_obj_add EXPORT_SYMBOL_GPL vmlinux 0x6f7e6040 irq_has_action -EXPORT_SYMBOL_GPL vmlinux 0x6f85fe2b ipv4_sk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x6f87751b phy_put +EXPORT_SYMBOL_GPL vmlinux 0x6f82e4fb devm_krealloc EXPORT_SYMBOL_GPL vmlinux 0x6f935e35 ftrace_set_filter_ip EXPORT_SYMBOL_GPL vmlinux 0x6f95bb84 sbitmap_queue_init_node -EXPORT_SYMBOL_GPL vmlinux 0x6f9b29d9 __traceiter_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0x6f9a4ffe perf_event_disable EXPORT_SYMBOL_GPL vmlinux 0x6f9e763b timecounter_read EXPORT_SYMBOL_GPL vmlinux 0x6fabae87 kobject_create_and_add -EXPORT_SYMBOL_GPL vmlinux 0x6fb9e914 led_trigger_rename_static -EXPORT_SYMBOL_GPL vmlinux 0x6fcbaff7 phy_speed_down +EXPORT_SYMBOL_GPL vmlinux 0x6faced43 fwnode_graph_get_endpoint_by_id +EXPORT_SYMBOL_GPL vmlinux 0x6fb8ae3f of_pwm_xlate_with_flags +EXPORT_SYMBOL_GPL vmlinux 0x6fbb3d75 ping_common_sendmsg +EXPORT_SYMBOL_GPL vmlinux 0x6fcd61f2 tty_save_termios EXPORT_SYMBOL_GPL vmlinux 0x6fcef6ab ring_buffer_reset EXPORT_SYMBOL_GPL vmlinux 0x6fd6472c cleanup_srcu_struct -EXPORT_SYMBOL_GPL vmlinux 0x6fdd27da fib_new_table -EXPORT_SYMBOL_GPL vmlinux 0x6fe01a99 __traceiter_fib6_table_lookup -EXPORT_SYMBOL_GPL vmlinux 0x6feb9898 ata_sff_tf_read +EXPORT_SYMBOL_GPL vmlinux 0x6fd65a84 usb_bulk_msg +EXPORT_SYMBOL_GPL vmlinux 0x6fdb2a21 pci_epf_alloc_space +EXPORT_SYMBOL_GPL vmlinux 0x6feb535b nd_tbl EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng EXPORT_SYMBOL_GPL vmlinux 0x6ffce680 x86_cpu_has_min_microcode_rev -EXPORT_SYMBOL_GPL vmlinux 0x70033c23 pci_epc_init_notify EXPORT_SYMBOL_GPL vmlinux 0x7006586e iommu_get_group_resv_regions +EXPORT_SYMBOL_GPL vmlinux 0x70157dda icc_disable +EXPORT_SYMBOL_GPL vmlinux 0x702d4155 usb_hub_claim_port +EXPORT_SYMBOL_GPL vmlinux 0x70308603 clockevents_register_device +EXPORT_SYMBOL_GPL vmlinux 0x7035c6e5 fb_deferred_io_init +EXPORT_SYMBOL_GPL vmlinux 0x7046fc6d sdio_retune_crc_disable EXPORT_SYMBOL_GPL vmlinux 0x7055c56e __sbitmap_queue_get_shallow EXPORT_SYMBOL_GPL vmlinux 0x70576fee acpi_processor_ffh_cstate_probe -EXPORT_SYMBOL_GPL vmlinux 0x7058041a vfio_unregister_iommu_driver -EXPORT_SYMBOL_GPL vmlinux 0x7059452e xhci_ext_cap_init -EXPORT_SYMBOL_GPL vmlinux 0x70645303 virtqueue_detach_unused_buf -EXPORT_SYMBOL_GPL vmlinux 0x7065d6c8 fscrypt_show_test_dummy_encryption -EXPORT_SYMBOL_GPL vmlinux 0x706f6f29 devm_of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x706fa376 devres_release EXPORT_SYMBOL_GPL vmlinux 0x7073c04f phy_10_100_features_array -EXPORT_SYMBOL_GPL vmlinux 0x7079600d regcache_mark_dirty -EXPORT_SYMBOL_GPL vmlinux 0x709dcabd __fscrypt_prepare_rename -EXPORT_SYMBOL_GPL vmlinux 0x709f6826 dma_get_slave_caps -EXPORT_SYMBOL_GPL vmlinux 0x70ab71dc regulator_list_voltage_pickable_linear_range -EXPORT_SYMBOL_GPL vmlinux 0x70ae9a89 gpiochip_free_own_desc -EXPORT_SYMBOL_GPL vmlinux 0x70b43013 mmc_send_abort_tuning +EXPORT_SYMBOL_GPL vmlinux 0x7076558f crypto_remove_spawns +EXPORT_SYMBOL_GPL vmlinux 0x708b007b devfreq_event_get_edev_count +EXPORT_SYMBOL_GPL vmlinux 0x708b3dfb dev_pm_domain_start EXPORT_SYMBOL_GPL vmlinux 0x70b7c07a gnttab_grant_foreign_transfer +EXPORT_SYMBOL_GPL vmlinux 0x70ba6476 fwnode_get_next_available_child_node EXPORT_SYMBOL_GPL vmlinux 0x70c2c7ea pids_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x70c4fc87 blk_ksm_init_passthrough +EXPORT_SYMBOL_GPL vmlinux 0x70c46be0 generic_fh_to_parent 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 0x70e06e33 pkcs7_free_message -EXPORT_SYMBOL_GPL vmlinux 0x70e7cff7 regulator_get_voltage_sel_regmap -EXPORT_SYMBOL_GPL vmlinux 0x70f64fb1 tty_port_register_device_attr_serdev +EXPORT_SYMBOL_GPL vmlinux 0x70f4dc09 generic_device_group +EXPORT_SYMBOL_GPL vmlinux 0x70fb077a mmu_interval_notifier_insert_locked +EXPORT_SYMBOL_GPL vmlinux 0x71014093 cpufreq_driver_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0x710b4444 __SCK__tp_func_neigh_timer_handler EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x7112d849 i2c_acpi_find_adapter_by_handle -EXPORT_SYMBOL_GPL vmlinux 0x711bd1f0 housekeeping_affine +EXPORT_SYMBOL_GPL vmlinux 0x710d4947 devfreq_event_add_edev EXPORT_SYMBOL_GPL vmlinux 0x7129a6f4 osc_sb_native_usb4_support_confirmed -EXPORT_SYMBOL_GPL vmlinux 0x712a53ca rio_mport_read_config_32 -EXPORT_SYMBOL_GPL vmlinux 0x712ee864 __tracepoint_br_fdb_add -EXPORT_SYMBOL_GPL vmlinux 0x71604f31 disk_uevent +EXPORT_SYMBOL_GPL vmlinux 0x71516a45 ehci_init_driver EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized -EXPORT_SYMBOL_GPL vmlinux 0x71650819 add_bootloader_randomness -EXPORT_SYMBOL_GPL vmlinux 0x7165f662 devres_close_group -EXPORT_SYMBOL_GPL vmlinux 0x7171d655 ip6_push_pending_frames -EXPORT_SYMBOL_GPL vmlinux 0x7178fb0f blkcg_deactivate_policy -EXPORT_SYMBOL_GPL vmlinux 0x718004a7 spi_setup +EXPORT_SYMBOL_GPL vmlinux 0x7162f680 fsstack_copy_attr_all +EXPORT_SYMBOL_GPL vmlinux 0x717c73d0 bpf_trace_run11 EXPORT_SYMBOL_GPL vmlinux 0x7181db30 atomic_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0x71846c05 fwnode_handle_put -EXPORT_SYMBOL_GPL vmlinux 0x718556d1 pwm_put -EXPORT_SYMBOL_GPL vmlinux 0x719a43c3 clk_hw_set_parent +EXPORT_SYMBOL_GPL vmlinux 0x71885737 pci_msi_unmask_irq EXPORT_SYMBOL_GPL vmlinux 0x719e17ff clk_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0x71a69241 kthread_data EXPORT_SYMBOL_GPL vmlinux 0x71b15008 lwtunnel_valid_encap_type EXPORT_SYMBOL_GPL vmlinux 0x71b6cf94 dst_cache_reset_now EXPORT_SYMBOL_GPL vmlinux 0x71c059d8 __traceiter_map -EXPORT_SYMBOL_GPL vmlinux 0x71cee860 fwnode_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x71c752bb ata_sas_port_destroy +EXPORT_SYMBOL_GPL vmlinux 0x71c96fcd tpm_default_chip +EXPORT_SYMBOL_GPL vmlinux 0x71d77e3f power_supply_am_i_supplied +EXPORT_SYMBOL_GPL vmlinux 0x71db4306 spi_finalize_current_transfer +EXPORT_SYMBOL_GPL vmlinux 0x71f09f14 xhci_gen_setup EXPORT_SYMBOL_GPL vmlinux 0x71f6670b __cookie_v6_check -EXPORT_SYMBOL_GPL vmlinux 0x720734d0 mmu_interval_notifier_insert_locked -EXPORT_SYMBOL_GPL vmlinux 0x72182115 irq_set_chained_handler_and_data -EXPORT_SYMBOL_GPL vmlinux 0x72282559 ata_qc_complete_multiple -EXPORT_SYMBOL_GPL vmlinux 0x72311a02 metadata_dst_alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0x724610fb is_software_node -EXPORT_SYMBOL_GPL vmlinux 0x7246417b serial8250_request_dma -EXPORT_SYMBOL_GPL vmlinux 0x724e778c phy_select_page -EXPORT_SYMBOL_GPL vmlinux 0x72502b51 lwtunnel_input -EXPORT_SYMBOL_GPL vmlinux 0x7255eaec pci_epf_type_add_cfs -EXPORT_SYMBOL_GPL vmlinux 0x72590646 usb_put_phy -EXPORT_SYMBOL_GPL vmlinux 0x726222e8 pci_hp_destroy -EXPORT_SYMBOL_GPL vmlinux 0x726243cd tpm2_get_cc_attrs_tbl +EXPORT_SYMBOL_GPL vmlinux 0x71f92f02 regulator_disable_deferred +EXPORT_SYMBOL_GPL vmlinux 0x71fbcd44 cpufreq_dbs_governor_limits +EXPORT_SYMBOL_GPL vmlinux 0x7204f399 inet_hash +EXPORT_SYMBOL_GPL vmlinux 0x7206bfc5 net_selftest +EXPORT_SYMBOL_GPL vmlinux 0x720c559a vfs_getxattr +EXPORT_SYMBOL_GPL vmlinux 0x722a6ed5 __vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x725a0b17 __rtnl_link_register EXPORT_SYMBOL_GPL vmlinux 0x7262702b sfp_get_module_eeprom_by_page +EXPORT_SYMBOL_GPL vmlinux 0x72643b37 platform_msi_domain_alloc_irqs EXPORT_SYMBOL_GPL vmlinux 0x7265f2b0 pci_vpd_check_csum -EXPORT_SYMBOL_GPL vmlinux 0x72662982 pci_hp_del EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events EXPORT_SYMBOL_GPL vmlinux 0x7283161b percpu_ref_switch_to_percpu -EXPORT_SYMBOL_GPL vmlinux 0x728e4f80 serial8250_modem_status -EXPORT_SYMBOL_GPL vmlinux 0x7293a2b2 iomap_writepages -EXPORT_SYMBOL_GPL vmlinux 0x7297058f spi_res_alloc -EXPORT_SYMBOL_GPL vmlinux 0x72a856ec bpf_event_output +EXPORT_SYMBOL_GPL vmlinux 0x7299d007 input_ff_event +EXPORT_SYMBOL_GPL vmlinux 0x72abd56b devm_gpiochip_add_data_with_key +EXPORT_SYMBOL_GPL vmlinux 0x72c22743 acpi_kobj +EXPORT_SYMBOL_GPL vmlinux 0x72c8fec7 acpi_get_and_request_gpiod +EXPORT_SYMBOL_GPL vmlinux 0x72cd1628 iomap_readpage EXPORT_SYMBOL_GPL vmlinux 0x72d267dc nvmem_del_cell_lookups -EXPORT_SYMBOL_GPL vmlinux 0x72d744ca devfreq_cooling_register -EXPORT_SYMBOL_GPL vmlinux 0x72dfa1d6 sk_msg_memcopy_from_iter -EXPORT_SYMBOL_GPL vmlinux 0x72e0a5fd sched_trace_rq_cpu_capacity -EXPORT_SYMBOL_GPL vmlinux 0x72ea4e5f pci_store_saved_state -EXPORT_SYMBOL_GPL vmlinux 0x72f7cba5 strp_process -EXPORT_SYMBOL_GPL vmlinux 0x7301264e pci_hp_deregister -EXPORT_SYMBOL_GPL vmlinux 0x73089cdd __traceiter_sched_update_nr_running_tp +EXPORT_SYMBOL_GPL vmlinux 0x72d33714 regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x72f5bf01 rio_local_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x72fc94f3 vmf_insert_pfn_pmd_prot +EXPORT_SYMBOL_GPL vmlinux 0x73076cb5 pci_bus_max_busnr +EXPORT_SYMBOL_GPL vmlinux 0x73080051 synth_event_add_val +EXPORT_SYMBOL_GPL vmlinux 0x7317de3a __SCK__tp_func_sched_overutilized_tp EXPORT_SYMBOL_GPL vmlinux 0x731dba7a xen_domain_type -EXPORT_SYMBOL_GPL vmlinux 0x731e6c5b __fscrypt_prepare_setattr EXPORT_SYMBOL_GPL vmlinux 0x732852fe xenbus_transaction_end -EXPORT_SYMBOL_GPL vmlinux 0x732bf476 xdp_do_redirect -EXPORT_SYMBOL_GPL vmlinux 0x7338fdf9 trace_array_set_clr_event +EXPORT_SYMBOL_GPL vmlinux 0x732b45ac cpufreq_generic_attr EXPORT_SYMBOL_GPL vmlinux 0x733ec33e __SCT__tp_func_fdb_delete -EXPORT_SYMBOL_GPL vmlinux 0x734209b8 ncsi_unregister_dev -EXPORT_SYMBOL_GPL vmlinux 0x735d4674 sk_clone_lock -EXPORT_SYMBOL_GPL vmlinux 0x73644caa sdio_memcpy_fromio -EXPORT_SYMBOL_GPL vmlinux 0x7374040d tty_ldisc_ref -EXPORT_SYMBOL_GPL vmlinux 0x73760ebb debugfs_create_x8 -EXPORT_SYMBOL_GPL vmlinux 0x7379096b fscrypt_set_test_dummy_encryption -EXPORT_SYMBOL_GPL vmlinux 0x737d48e9 get_cpu_device +EXPORT_SYMBOL_GPL vmlinux 0x7348b2af posix_acl_default_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0x73638af3 pm_runtime_irq_safe +EXPORT_SYMBOL_GPL vmlinux 0x737438a6 dev_pm_enable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x737a2f8d regulator_set_voltage_sel_pickable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x737b3a3e __tracepoint_neigh_update EXPORT_SYMBOL_GPL vmlinux 0x7381287f trace_handle_return -EXPORT_SYMBOL_GPL vmlinux 0x7384b2df metadata_dst_alloc EXPORT_SYMBOL_GPL vmlinux 0x738fe32b amd_get_nodes_per_socket +EXPORT_SYMBOL_GPL vmlinux 0x7394d30a sysfs_chmod_file +EXPORT_SYMBOL_GPL vmlinux 0x7399e4cb devm_acpi_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x739fa129 driver_register EXPORT_SYMBOL_GPL vmlinux 0x73a48b4a ata_sff_std_ports -EXPORT_SYMBOL_GPL vmlinux 0x73b4f41d usb_clear_halt +EXPORT_SYMBOL_GPL vmlinux 0x73b08038 crypto_grab_skcipher EXPORT_SYMBOL_GPL vmlinux 0x73c2554f __iowrite64_copy EXPORT_SYMBOL_GPL vmlinux 0x73cc8631 oiap -EXPORT_SYMBOL_GPL vmlinux 0x73d307b8 strp_unpause -EXPORT_SYMBOL_GPL vmlinux 0x73d82cc0 vp_modern_queue_vector -EXPORT_SYMBOL_GPL vmlinux 0x740afed5 dw_pcie_write_dbi -EXPORT_SYMBOL_GPL vmlinux 0x742096b3 bpf_prog_create_from_user -EXPORT_SYMBOL_GPL vmlinux 0x742a4568 acpi_subsys_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x73d2be4f reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x73e0214e devm_nvmem_device_put +EXPORT_SYMBOL_GPL vmlinux 0x73f17702 get_user_pages_fast_only +EXPORT_SYMBOL_GPL vmlinux 0x740a1e2f of_css +EXPORT_SYMBOL_GPL vmlinux 0x742e02e9 __tracepoint_kfree_skb EXPORT_SYMBOL_GPL vmlinux 0x743a165e ata_pack_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x743a6a20 component_del EXPORT_SYMBOL_GPL vmlinux 0x74457e56 apei_resources_fini +EXPORT_SYMBOL_GPL vmlinux 0x7446e270 find_asymmetric_key EXPORT_SYMBOL_GPL vmlinux 0x7452adff user_return_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x7483bcd8 xfrm_output -EXPORT_SYMBOL_GPL vmlinux 0x748a013d ip6_dst_lookup -EXPORT_SYMBOL_GPL vmlinux 0x7491a7fd handle_fasteoi_nmi -EXPORT_SYMBOL_GPL vmlinux 0x74ad311e clean_record_shared_mapping_range +EXPORT_SYMBOL_GPL vmlinux 0x7458cfa4 unix_outq_len +EXPORT_SYMBOL_GPL vmlinux 0x7461bb04 kgdb_register_io_module +EXPORT_SYMBOL_GPL vmlinux 0x74637f2f noop_backing_dev_info +EXPORT_SYMBOL_GPL vmlinux 0x746b158f sata_scr_write_flush +EXPORT_SYMBOL_GPL vmlinux 0x74787c2c strp_init +EXPORT_SYMBOL_GPL vmlinux 0x747955b7 devlink_remote_reload_actions_performed +EXPORT_SYMBOL_GPL vmlinux 0x747a5af9 crypto_stats_rng_seed +EXPORT_SYMBOL_GPL vmlinux 0x74881a16 sock_gen_put +EXPORT_SYMBOL_GPL vmlinux 0x74aa890e i2c_dw_configure_master +EXPORT_SYMBOL_GPL vmlinux 0x74ae553c crypto_register_rngs 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 0x74e1787d pm_generic_thaw_early -EXPORT_SYMBOL_GPL vmlinux 0x74e6310d badblocks_exit +EXPORT_SYMBOL_GPL vmlinux 0x74e227e3 page_cache_ra_unbounded EXPORT_SYMBOL_GPL vmlinux 0x74e73871 housekeeping_overridden -EXPORT_SYMBOL_GPL vmlinux 0x74ebcb71 pcc_mbox_request_channel -EXPORT_SYMBOL_GPL vmlinux 0x750702b4 platform_msi_domain_free_irqs -EXPORT_SYMBOL_GPL vmlinux 0x750d0152 devm_pwmchip_add -EXPORT_SYMBOL_GPL vmlinux 0x750efc01 platform_device_add_resources +EXPORT_SYMBOL_GPL vmlinux 0x74f0b8b5 __traceiter_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0x75018bf5 hvc_poll +EXPORT_SYMBOL_GPL vmlinux 0x7511698e ata_std_sched_eh EXPORT_SYMBOL_GPL vmlinux 0x75133f6e visitor128 -EXPORT_SYMBOL_GPL vmlinux 0x7513a79b fat_fill_super -EXPORT_SYMBOL_GPL vmlinux 0x75217cff ethnl_cable_test_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7515205a gpiod_set_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x751a0992 wwan_port_rx EXPORT_SYMBOL_GPL vmlinux 0x7521afb6 leave_mm EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status -EXPORT_SYMBOL_GPL vmlinux 0x752dfdf2 __tracepoint_br_fdb_external_learn_add -EXPORT_SYMBOL_GPL vmlinux 0x753207d8 regulator_get_current_limit_regmap -EXPORT_SYMBOL_GPL vmlinux 0x7532a466 posix_acl_create -EXPORT_SYMBOL_GPL vmlinux 0x7544f932 iommu_attach_group -EXPORT_SYMBOL_GPL vmlinux 0x755108fd pci_load_and_free_saved_state -EXPORT_SYMBOL_GPL vmlinux 0x75522574 dev_pm_qos_hide_flags -EXPORT_SYMBOL_GPL vmlinux 0x75576ca0 debugfs_create_x32 -EXPORT_SYMBOL_GPL vmlinux 0x7559616c cpci_hp_register_controller -EXPORT_SYMBOL_GPL vmlinux 0x755c57de thermal_zone_device_register -EXPORT_SYMBOL_GPL vmlinux 0x75683132 pcie_port_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x7576b734 pwm_request_from_chip -EXPORT_SYMBOL_GPL vmlinux 0x7576d03d debugfs_create_bool -EXPORT_SYMBOL_GPL vmlinux 0x75792186 get_xsave_addr +EXPORT_SYMBOL_GPL vmlinux 0x75254443 usb_hcd_link_urb_to_ep +EXPORT_SYMBOL_GPL vmlinux 0x752c6a3b __SCK__tp_func_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0x752d51df __traceiter_br_fdb_add +EXPORT_SYMBOL_GPL vmlinux 0x75445667 serdev_device_set_tiocm +EXPORT_SYMBOL_GPL vmlinux 0x75460ada __platform_create_bundle +EXPORT_SYMBOL_GPL vmlinux 0x75500028 ethnl_cable_test_fault_length +EXPORT_SYMBOL_GPL vmlinux 0x755a0fd9 init_user_ns +EXPORT_SYMBOL_GPL vmlinux 0x755d1e2f fat_get_dotdot_entry +EXPORT_SYMBOL_GPL vmlinux 0x7571f1f4 inode_sb_list_add +EXPORT_SYMBOL_GPL vmlinux 0x7575cc02 extcon_unregister_notifier_all +EXPORT_SYMBOL_GPL vmlinux 0x758c06bc pci_walk_bus +EXPORT_SYMBOL_GPL vmlinux 0x7590269c devlink_port_health_reporter_create EXPORT_SYMBOL_GPL vmlinux 0x759bfe36 btree_destroy -EXPORT_SYMBOL_GPL vmlinux 0x75aeae64 irq_chip_mask_ack_parent -EXPORT_SYMBOL_GPL vmlinux 0x75c2e81a relay_close -EXPORT_SYMBOL_GPL vmlinux 0x75cbfb09 add_interrupt_randomness -EXPORT_SYMBOL_GPL vmlinux 0x75cc150d vp_modern_generation -EXPORT_SYMBOL_GPL vmlinux 0x75d0e95b sysfs_create_groups -EXPORT_SYMBOL_GPL vmlinux 0x75d940ba dev_pm_opp_set_sharing_cpus -EXPORT_SYMBOL_GPL vmlinux 0x75e80663 trace_event_ignore_this_pid +EXPORT_SYMBOL_GPL vmlinux 0x759c762a dm_copy_name_and_uuid +EXPORT_SYMBOL_GPL vmlinux 0x759fd623 gnttab_unmap_refs +EXPORT_SYMBOL_GPL vmlinux 0x75a1d605 usb_unanchor_urb +EXPORT_SYMBOL_GPL vmlinux 0x75af7d26 security_path_chmod +EXPORT_SYMBOL_GPL vmlinux 0x75b09d08 fixup_user_fault +EXPORT_SYMBOL_GPL vmlinux 0x75b43b5b __ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0x75bab000 shmem_file_setup +EXPORT_SYMBOL_GPL vmlinux 0x75c2a3cc rdev_get_regmap +EXPORT_SYMBOL_GPL vmlinux 0x75c4da98 vfs_listxattr +EXPORT_SYMBOL_GPL vmlinux 0x75c9767c virtqueue_get_avail_addr +EXPORT_SYMBOL_GPL vmlinux 0x75daf2d7 ata_bmdma_port_intr EXPORT_SYMBOL_GPL vmlinux 0x75e9c735 pci_ats_disabled +EXPORT_SYMBOL_GPL vmlinux 0x75eadfbf lp8788_update_bits EXPORT_SYMBOL_GPL vmlinux 0x75f0e875 xas_store -EXPORT_SYMBOL_GPL vmlinux 0x7601725c __tracepoint_pelt_irq_tp -EXPORT_SYMBOL_GPL vmlinux 0x760e0c43 usb_sg_cancel -EXPORT_SYMBOL_GPL vmlinux 0x761591ec da9055_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0x761e05e5 pm_generic_thaw -EXPORT_SYMBOL_GPL vmlinux 0x761e11ff ata_sff_postreset +EXPORT_SYMBOL_GPL vmlinux 0x75f9a628 __traceiter_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0x761fba1c ksm_madvise EXPORT_SYMBOL_GPL vmlinux 0x762640ab __SCT__tp_func_sched_cpu_capacity_tp -EXPORT_SYMBOL_GPL vmlinux 0x7628e5e3 acomp_request_free -EXPORT_SYMBOL_GPL vmlinux 0x762bd521 iterate_mounts +EXPORT_SYMBOL_GPL vmlinux 0x763d4c07 netdev_walk_all_lower_dev EXPORT_SYMBOL_GPL vmlinux 0x764ffefa page_reporting_register -EXPORT_SYMBOL_GPL vmlinux 0x765d596a bpf_prog_inc +EXPORT_SYMBOL_GPL vmlinux 0x76538556 usb_autopm_put_interface_async EXPORT_SYMBOL_GPL vmlinux 0x765f8830 __SCT__tp_func_neigh_event_send_dead EXPORT_SYMBOL_GPL vmlinux 0x7665a95b idr_remove EXPORT_SYMBOL_GPL vmlinux 0x7665ee72 crypto_dh_decode_key +EXPORT_SYMBOL_GPL vmlinux 0x766acd7e i2c_probe_func_quick_read +EXPORT_SYMBOL_GPL vmlinux 0x766d4978 xenbus_dev_fatal +EXPORT_SYMBOL_GPL vmlinux 0x767272e0 i2c_add_numbered_adapter +EXPORT_SYMBOL_GPL vmlinux 0x76728410 sata_pmp_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x767d0822 badblocks_show +EXPORT_SYMBOL_GPL vmlinux 0x767e90d0 virtqueue_add_inbuf EXPORT_SYMBOL_GPL vmlinux 0x7681946c unregister_pm_notifier -EXPORT_SYMBOL_GPL vmlinux 0x7686b185 tty_port_install -EXPORT_SYMBOL_GPL vmlinux 0x768e930a attribute_container_register +EXPORT_SYMBOL_GPL vmlinux 0x768fb27b __traceiter_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0x7692a465 pci_pr3_present +EXPORT_SYMBOL_GPL vmlinux 0x7699df34 sdio_register_driver EXPORT_SYMBOL_GPL vmlinux 0x769cefb5 percpu_ref_switch_to_atomic -EXPORT_SYMBOL_GPL vmlinux 0x769ff07a serial8250_do_set_mctrl -EXPORT_SYMBOL_GPL vmlinux 0x76a14ff5 regmap_add_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0x76b10344 dev_pm_opp_find_level_exact -EXPORT_SYMBOL_GPL vmlinux 0x76c676f0 ip6_flush_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x76a90f8b pwmchip_remove +EXPORT_SYMBOL_GPL vmlinux 0x76bf0103 kobject_uevent +EXPORT_SYMBOL_GPL vmlinux 0x76bf8bf3 crypto_register_ahashes EXPORT_SYMBOL_GPL vmlinux 0x76d680f6 acpi_dev_resource_memory EXPORT_SYMBOL_GPL vmlinux 0x76d9b876 clk_set_rate -EXPORT_SYMBOL_GPL vmlinux 0x76dbe73a devlink_params_unpublish +EXPORT_SYMBOL_GPL vmlinux 0x76d9c0a4 gpiod_count EXPORT_SYMBOL_GPL vmlinux 0x76dc031e asm_exc_nmi_noist EXPORT_SYMBOL_GPL vmlinux 0x76e85b92 gnttab_request_free_callback +EXPORT_SYMBOL_GPL vmlinux 0x76ea92bf pcie_aspm_enabled EXPORT_SYMBOL_GPL vmlinux 0x76eeeb0f sha384_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x76fe6d15 netlink_strict_get_check -EXPORT_SYMBOL_GPL vmlinux 0x7703dfe9 crypto_unregister_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x770caa5b device_find_child -EXPORT_SYMBOL_GPL vmlinux 0x770cf51b syscon_regmap_lookup_by_phandle_args +EXPORT_SYMBOL_GPL vmlinux 0x76f3f775 unix_peer_get +EXPORT_SYMBOL_GPL vmlinux 0x770617a0 __clk_mux_determine_rate_closest +EXPORT_SYMBOL_GPL vmlinux 0x7707efde iptunnel_metadata_reply EXPORT_SYMBOL_GPL vmlinux 0x7712771a unbind_from_irqhandler -EXPORT_SYMBOL_GPL vmlinux 0x771f7514 devm_clk_hw_get_clk +EXPORT_SYMBOL_GPL vmlinux 0x7718886e skb_append_pagefrags +EXPORT_SYMBOL_GPL vmlinux 0x77193fed __irq_domain_alloc_fwnode EXPORT_SYMBOL_GPL vmlinux 0x77222306 ring_buffer_read_page EXPORT_SYMBOL_GPL vmlinux 0x7729cbdd task_handoff_register EXPORT_SYMBOL_GPL vmlinux 0x772b0f64 __wake_up_pollfree +EXPORT_SYMBOL_GPL vmlinux 0x7734facc bpf_prog_get_type_dev +EXPORT_SYMBOL_GPL vmlinux 0x77379589 ipv4_sk_redirect EXPORT_SYMBOL_GPL vmlinux 0x773f2713 clk_hw_unregister_mux +EXPORT_SYMBOL_GPL vmlinux 0x774d7cb2 pwm_free EXPORT_SYMBOL_GPL vmlinux 0x7757b51a clk_unregister +EXPORT_SYMBOL_GPL vmlinux 0x775a1da0 bd_link_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0x775ff6f7 devlink_port_param_driverinit_value_set +EXPORT_SYMBOL_GPL vmlinux 0x7768c02f int_active_memcg EXPORT_SYMBOL_GPL vmlinux 0x776a2dc5 synchronize_srcu_expedited -EXPORT_SYMBOL_GPL vmlinux 0x776bf436 umd_unload_blob -EXPORT_SYMBOL_GPL vmlinux 0x777d0764 device_match_of_node -EXPORT_SYMBOL_GPL vmlinux 0x778037d4 gpiod_count EXPORT_SYMBOL_GPL vmlinux 0x7791e066 dw_pcie_read -EXPORT_SYMBOL_GPL vmlinux 0x779ef96a __xenbus_register_backend +EXPORT_SYMBOL_GPL vmlinux 0x77a6b442 dm_noflush_suspending +EXPORT_SYMBOL_GPL vmlinux 0x77ad0683 irq_chip_set_affinity_parent EXPORT_SYMBOL_GPL vmlinux 0x77ae495d usb_speed_string -EXPORT_SYMBOL_GPL vmlinux 0x77b0db06 wait_for_stable_page -EXPORT_SYMBOL_GPL vmlinux 0x77bdbb9f blk_mq_quiesce_queue_nowait -EXPORT_SYMBOL_GPL vmlinux 0x77deb3eb rio_unlock_device +EXPORT_SYMBOL_GPL vmlinux 0x77b663c9 perf_tp_event +EXPORT_SYMBOL_GPL vmlinux 0x77b943f9 pinctrl_pm_select_default_state +EXPORT_SYMBOL_GPL vmlinux 0x77bd77d3 skcipher_walk_complete +EXPORT_SYMBOL_GPL vmlinux 0x77c33bc2 __fsnotify_inode_delete +EXPORT_SYMBOL_GPL vmlinux 0x77c520e5 devm_mbox_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x77c9e5a0 xenbus_frontend_closed +EXPORT_SYMBOL_GPL vmlinux 0x77ca1eec __SCK__tp_func_map +EXPORT_SYMBOL_GPL vmlinux 0x77db23b3 dev_pm_domain_attach +EXPORT_SYMBOL_GPL vmlinux 0x77e62696 adp5520_read EXPORT_SYMBOL_GPL vmlinux 0x77e75be3 sfp_bus_put -EXPORT_SYMBOL_GPL vmlinux 0x77eb1cb2 devm_nvdimm_memremap -EXPORT_SYMBOL_GPL vmlinux 0x77ec59b8 usb_phy_set_event EXPORT_SYMBOL_GPL vmlinux 0x77ecf68d memalloc_socks_key -EXPORT_SYMBOL_GPL vmlinux 0x77ef1b95 ping_seq_next -EXPORT_SYMBOL_GPL vmlinux 0x77f635a2 ping_seq_stop -EXPORT_SYMBOL_GPL vmlinux 0x7803c6e6 security_file_permission +EXPORT_SYMBOL_GPL vmlinux 0x77eff322 noop_invalidatepage +EXPORT_SYMBOL_GPL vmlinux 0x77f71f86 __tracepoint_error_report_end +EXPORT_SYMBOL_GPL vmlinux 0x77fae11e iommu_map_atomic EXPORT_SYMBOL_GPL vmlinux 0x78041b8f byte_rev_table -EXPORT_SYMBOL_GPL vmlinux 0x78172487 usb_unanchor_urb EXPORT_SYMBOL_GPL vmlinux 0x782adb74 hpet_rtc_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x783a7039 __tracepoint_remove_device_from_group -EXPORT_SYMBOL_GPL vmlinux 0x783cbbac device_for_each_child -EXPORT_SYMBOL_GPL vmlinux 0x7849b0fa i2c_dw_prepare_clk -EXPORT_SYMBOL_GPL vmlinux 0x78509974 wakeup_source_create +EXPORT_SYMBOL_GPL vmlinux 0x782e6a47 acpi_pci_check_ejectable +EXPORT_SYMBOL_GPL vmlinux 0x785a67a7 sock_diag_check_cookie EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available +EXPORT_SYMBOL_GPL vmlinux 0x78673f6a phy_resolve_aneg_pause EXPORT_SYMBOL_GPL vmlinux 0x787c882b lzo1x_1_compress +EXPORT_SYMBOL_GPL vmlinux 0x78823e79 regulator_irq_helper +EXPORT_SYMBOL_GPL vmlinux 0x788477f8 is_skb_forwardable EXPORT_SYMBOL_GPL vmlinux 0x788bfbad ring_buffer_empty -EXPORT_SYMBOL_GPL vmlinux 0x788ea324 kthread_use_mm +EXPORT_SYMBOL_GPL vmlinux 0x7891f093 regmap_raw_write_async +EXPORT_SYMBOL_GPL vmlinux 0x78941b7e pm_generic_restore EXPORT_SYMBOL_GPL vmlinux 0x789c73d9 rcu_cpu_stall_suppress_at_boot -EXPORT_SYMBOL_GPL vmlinux 0x78a5e9e8 crypto_unregister_rng -EXPORT_SYMBOL_GPL vmlinux 0x78a9ad79 __traceiter_fdb_delete -EXPORT_SYMBOL_GPL vmlinux 0x78b3c149 virtqueue_get_avail_addr -EXPORT_SYMBOL_GPL vmlinux 0x78b8c776 rio_local_get_device_id -EXPORT_SYMBOL_GPL vmlinux 0x78ba877f devm_nvmem_device_put +EXPORT_SYMBOL_GPL vmlinux 0x78a9903b kernfs_put +EXPORT_SYMBOL_GPL vmlinux 0x78b86283 device_get_named_child_node EXPORT_SYMBOL_GPL vmlinux 0x78bab66b irq_force_affinity -EXPORT_SYMBOL_GPL vmlinux 0x78c2e1e2 regulator_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x78dda15d __mdiobus_modify_changed +EXPORT_SYMBOL_GPL vmlinux 0x78d4ad88 dev_pm_opp_get_max_clock_latency EXPORT_SYMBOL_GPL vmlinux 0x78ddb76b dmi_match -EXPORT_SYMBOL_GPL vmlinux 0x78e9fc06 pm_generic_poweroff_late +EXPORT_SYMBOL_GPL vmlinux 0x78f9615c dw_pcie_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x78fa64e2 fpu_copy_guest_fpstate_to_uabi +EXPORT_SYMBOL_GPL vmlinux 0x78fd1b43 perf_event_update_userpage EXPORT_SYMBOL_GPL vmlinux 0x790be0b9 usb_bus_idr EXPORT_SYMBOL_GPL vmlinux 0x7915cee5 do_machine_check EXPORT_SYMBOL_GPL vmlinux 0x791748c8 adxl_decode EXPORT_SYMBOL_GPL vmlinux 0x7918d817 memory_failure -EXPORT_SYMBOL_GPL vmlinux 0x793ad9c1 __hvc_resize -EXPORT_SYMBOL_GPL vmlinux 0x793e0a17 __platform_driver_probe +EXPORT_SYMBOL_GPL vmlinux 0x7938753a nd_cmd_out_size +EXPORT_SYMBOL_GPL vmlinux 0x793f7e3b dst_cache_get 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 0x7959123d pci_sriov_get_totalvfs -EXPORT_SYMBOL_GPL vmlinux 0x795b1147 xfrm_audit_state_replay_overflow -EXPORT_SYMBOL_GPL vmlinux 0x795b5c4f of_reset_control_array_get -EXPORT_SYMBOL_GPL vmlinux 0x795be164 regulator_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0x797a67ff dev_pm_domain_attach +EXPORT_SYMBOL_GPL vmlinux 0x795ef894 of_phy_put +EXPORT_SYMBOL_GPL vmlinux 0x79675762 device_match_any +EXPORT_SYMBOL_GPL vmlinux 0x79799541 ptp_parse_header +EXPORT_SYMBOL_GPL vmlinux 0x79832a27 dev_pm_qos_hide_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x7983e622 crypto_alloc_base EXPORT_SYMBOL_GPL vmlinux 0x798b7682 klist_prev -EXPORT_SYMBOL_GPL vmlinux 0x79916191 device_remove_software_node EXPORT_SYMBOL_GPL vmlinux 0x7991fd8d crash_vmclear_loaded_vmcss -EXPORT_SYMBOL_GPL vmlinux 0x799aee90 usb_create_shared_hcd -EXPORT_SYMBOL_GPL vmlinux 0x79b41ba4 disk_update_readahead +EXPORT_SYMBOL_GPL vmlinux 0x79982ebe irq_set_chip_and_handler_name +EXPORT_SYMBOL_GPL vmlinux 0x799ab37d thermal_zone_bind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0x799ed523 dev_pm_qos_expose_flags +EXPORT_SYMBOL_GPL vmlinux 0x79ad5dc2 __ip6_datagram_connect EXPORT_SYMBOL_GPL vmlinux 0x79bc842c usb_anchor_suspend_wakeups -EXPORT_SYMBOL_GPL vmlinux 0x79bf3648 bpf_trace_run4 -EXPORT_SYMBOL_GPL vmlinux 0x79cae74c tpm_pm_suspend -EXPORT_SYMBOL_GPL vmlinux 0x79cf1043 fpu_kernel_xstate_size +EXPORT_SYMBOL_GPL vmlinux 0x79beba0b crypto_unregister_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x79cec1bd fscrypt_symlink_getattr EXPORT_SYMBOL_GPL vmlinux 0x79daf4de __SCT__tp_func_tcp_send_reset EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park -EXPORT_SYMBOL_GPL vmlinux 0x79e1051c __clk_hw_register_fixed_rate EXPORT_SYMBOL_GPL vmlinux 0x79e69460 intel_iommu_gfx_mapped -EXPORT_SYMBOL_GPL vmlinux 0x79eacd66 acct_bioset_exit -EXPORT_SYMBOL_GPL vmlinux 0x79f378cb devm_regulator_register_supply_alias EXPORT_SYMBOL_GPL vmlinux 0x79f697e4 lzorle1x_1_compress -EXPORT_SYMBOL_GPL vmlinux 0x7a0470d5 fsstack_copy_attr_all -EXPORT_SYMBOL_GPL vmlinux 0x7a0cefd4 page_cache_sync_ra -EXPORT_SYMBOL_GPL vmlinux 0x7a1072d2 bpf_trace_run12 -EXPORT_SYMBOL_GPL vmlinux 0x7a19e3c5 regmap_async_complete_cb -EXPORT_SYMBOL_GPL vmlinux 0x7a2276bc genphy_c45_check_and_restart_aneg -EXPORT_SYMBOL_GPL vmlinux 0x7a317582 sk_msg_free EXPORT_SYMBOL_GPL vmlinux 0x7a33f504 power_supply_find_ocv2cap_table -EXPORT_SYMBOL_GPL vmlinux 0x7a3cd7c9 user_update -EXPORT_SYMBOL_GPL vmlinux 0x7a3f3db5 vfs_submount -EXPORT_SYMBOL_GPL vmlinux 0x7a3f8248 devlink_port_attrs_set +EXPORT_SYMBOL_GPL vmlinux 0x7a4acc29 __netif_set_xps_queue +EXPORT_SYMBOL_GPL vmlinux 0x7a56dea0 i2c_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x7a58f858 trace_array_set_clr_event +EXPORT_SYMBOL_GPL vmlinux 0x7a592302 devm_hwspin_lock_register +EXPORT_SYMBOL_GPL vmlinux 0x7a607b3d watchdog_set_last_hw_keepalive EXPORT_SYMBOL_GPL vmlinux 0x7a655f68 acpi_processor_claim_cst_control -EXPORT_SYMBOL_GPL vmlinux 0x7a6e5c59 inet_csk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x7a73e03a mbox_send_message EXPORT_SYMBOL_GPL vmlinux 0x7a73e605 wm831x_isinkv_values EXPORT_SYMBOL_GPL vmlinux 0x7a81541b async_synchronize_cookie +EXPORT_SYMBOL_GPL vmlinux 0x7a8f6f6a ata_host_alloc_pinfo +EXPORT_SYMBOL_GPL vmlinux 0x7a937d20 tty_ldisc_deref EXPORT_SYMBOL_GPL vmlinux 0x7a944007 rcu_idle_enter EXPORT_SYMBOL_GPL vmlinux 0x7a98f4b4 copy_from_user_nofault +EXPORT_SYMBOL_GPL vmlinux 0x7a9b0a19 crypto_register_algs +EXPORT_SYMBOL_GPL vmlinux 0x7a9b10a7 i2c_acpi_new_device EXPORT_SYMBOL_GPL vmlinux 0x7a9e4c23 software_node_register_node_group -EXPORT_SYMBOL_GPL vmlinux 0x7aa886b9 set_capacity_and_notify -EXPORT_SYMBOL_GPL vmlinux 0x7ab76556 xen_xlate_remap_gfn_array -EXPORT_SYMBOL_GPL vmlinux 0x7abf4100 rt_mutex_unlock +EXPORT_SYMBOL_GPL vmlinux 0x7aaf345e __SCK__tp_func_extlog_mem_event +EXPORT_SYMBOL_GPL vmlinux 0x7ab7ced0 devlink_param_publish +EXPORT_SYMBOL_GPL vmlinux 0x7ab8148a icc_provider_add +EXPORT_SYMBOL_GPL vmlinux 0x7ababff0 pm_relax EXPORT_SYMBOL_GPL vmlinux 0x7ac10ad8 icst_clk_register -EXPORT_SYMBOL_GPL vmlinux 0x7ac6b09b vfs_fallocate +EXPORT_SYMBOL_GPL vmlinux 0x7ac605a2 nd_blk_region_set_provider_data EXPORT_SYMBOL_GPL vmlinux 0x7ac722bd phy_all_ports_features_array EXPORT_SYMBOL_GPL vmlinux 0x7ad02a41 asn1_encode_tag +EXPORT_SYMBOL_GPL vmlinux 0x7ad1035d __traceiter_sched_update_nr_running_tp +EXPORT_SYMBOL_GPL vmlinux 0x7ad12b00 xfrm_audit_state_notfound_simple EXPORT_SYMBOL_GPL vmlinux 0x7ad1ded1 pinctrl_register_mappings -EXPORT_SYMBOL_GPL vmlinux 0x7ae2dd4f extcon_dev_register -EXPORT_SYMBOL_GPL vmlinux 0x7aefada6 fuse_dax_cancel_work -EXPORT_SYMBOL_GPL vmlinux 0x7af49168 devm_nvmem_register -EXPORT_SYMBOL_GPL vmlinux 0x7af5158b crypto_stats_get +EXPORT_SYMBOL_GPL vmlinux 0x7af5ecdd serial8250_rpm_get_tx EXPORT_SYMBOL_GPL vmlinux 0x7afcb7db __kprobe_event_add_fields -EXPORT_SYMBOL_GPL vmlinux 0x7b00fe98 tty_port_register_device_serdev -EXPORT_SYMBOL_GPL vmlinux 0x7b0af9d5 gpiod_is_active_low -EXPORT_SYMBOL_GPL vmlinux 0x7b154b23 regulator_sync_voltage +EXPORT_SYMBOL_GPL vmlinux 0x7b050238 bpf_event_output +EXPORT_SYMBOL_GPL vmlinux 0x7b06b9c1 dma_buf_export +EXPORT_SYMBOL_GPL vmlinux 0x7b156831 xen_pci_frontend +EXPORT_SYMBOL_GPL vmlinux 0x7b159893 powercap_unregister_zone EXPORT_SYMBOL_GPL vmlinux 0x7b178afe unlock_system_sleep -EXPORT_SYMBOL_GPL vmlinux 0x7b2b0778 device_remove_file_self -EXPORT_SYMBOL_GPL vmlinux 0x7b43b753 irq_domain_free_irqs_common -EXPORT_SYMBOL_GPL vmlinux 0x7b47f7bf __rt_mutex_init -EXPORT_SYMBOL_GPL vmlinux 0x7b4993be devm_reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x7b33c6d0 irq_chip_get_parent_state +EXPORT_SYMBOL_GPL vmlinux 0x7b3fc8fb devm_namespace_disable +EXPORT_SYMBOL_GPL vmlinux 0x7b434bee find_extend_vma +EXPORT_SYMBOL_GPL vmlinux 0x7b4693e2 fwnode_get_nth_parent EXPORT_SYMBOL_GPL vmlinux 0x7b5452b8 acpi_unregister_gsi EXPORT_SYMBOL_GPL vmlinux 0x7b5a4926 sha1_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x7b5f9466 devm_request_free_mem_region -EXPORT_SYMBOL_GPL vmlinux 0x7b612e1c __tracepoint_tcp_bad_csum EXPORT_SYMBOL_GPL vmlinux 0x7b6f9536 acpi_register_wakeup_handler +EXPORT_SYMBOL_GPL vmlinux 0x7b74c51f ata_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x7b851032 gpiod_set_consumer_name EXPORT_SYMBOL_GPL vmlinux 0x7b8ea197 ethtool_params_from_link_mode EXPORT_SYMBOL_GPL vmlinux 0x7b90d1a9 bind_virq_to_irqhandler -EXPORT_SYMBOL_GPL vmlinux 0x7b960560 acpi_driver_match_device EXPORT_SYMBOL_GPL vmlinux 0x7b9793a2 get_cpu_idle_time_us +EXPORT_SYMBOL_GPL vmlinux 0x7ba25082 x86_vector_domain +EXPORT_SYMBOL_GPL vmlinux 0x7ba35709 iomap_releasepage EXPORT_SYMBOL_GPL vmlinux 0x7bb045a7 __request_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0x7bc45547 wm831x_reg_lock -EXPORT_SYMBOL_GPL vmlinux 0x7bcf31b2 register_pernet_subsys -EXPORT_SYMBOL_GPL vmlinux 0x7c0b6c0e tracepoint_probe_register_prio -EXPORT_SYMBOL_GPL vmlinux 0x7c12c4a3 __sync_filesystem -EXPORT_SYMBOL_GPL vmlinux 0x7c165026 dev_pm_opp_get_suspend_opp_freq +EXPORT_SYMBOL_GPL vmlinux 0x7bd7e481 __SCK__tp_func_pelt_dl_tp +EXPORT_SYMBOL_GPL vmlinux 0x7bd9442b fsverity_ioctl_enable +EXPORT_SYMBOL_GPL vmlinux 0x7be4e98f iommu_sva_bind_device +EXPORT_SYMBOL_GPL vmlinux 0x7bedd50d blk_ksm_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7c049d02 vfio_pci_core_write +EXPORT_SYMBOL_GPL vmlinux 0x7c1ab42b evm_inode_init_security +EXPORT_SYMBOL_GPL vmlinux 0x7c1c546a device_property_present +EXPORT_SYMBOL_GPL vmlinux 0x7c1d7e57 fwnode_graph_get_remote_port_parent +EXPORT_SYMBOL_GPL vmlinux 0x7c1d9a48 compat_only_sysfs_link_entry_to_kobj EXPORT_SYMBOL_GPL vmlinux 0x7c20b6a0 load_direct_gdt EXPORT_SYMBOL_GPL vmlinux 0x7c291e86 show_rcu_tasks_trace_gp_kthread -EXPORT_SYMBOL_GPL vmlinux 0x7c342797 tty_init_termios +EXPORT_SYMBOL_GPL vmlinux 0x7c309c95 acpi_pm_set_device_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x7c30eace __SCK__tp_func_neigh_event_send_dead EXPORT_SYMBOL_GPL vmlinux 0x7c3d8a4b icc_bulk_put -EXPORT_SYMBOL_GPL vmlinux 0x7c417713 usb_choose_configuration +EXPORT_SYMBOL_GPL vmlinux 0x7c4db111 regulator_get_voltage_sel_pickable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x7c5872cd thermal_add_hwmon_sysfs EXPORT_SYMBOL_GPL vmlinux 0x7c5f3711 ioasid_unregister_allocator +EXPORT_SYMBOL_GPL vmlinux 0x7c5f75c8 fscrypt_file_open EXPORT_SYMBOL_GPL vmlinux 0x7c626556 list_lru_destroy -EXPORT_SYMBOL_GPL vmlinux 0x7c80826e crypto_stats_init +EXPORT_SYMBOL_GPL vmlinux 0x7c7be605 mmc_send_status +EXPORT_SYMBOL_GPL vmlinux 0x7c7dc14c regulator_get_current_limit_regmap +EXPORT_SYMBOL_GPL vmlinux 0x7c85626b ipv6_opt_accepted +EXPORT_SYMBOL_GPL vmlinux 0x7c86d603 aead_register_instance EXPORT_SYMBOL_GPL vmlinux 0x7c983a5d dmi_walk EXPORT_SYMBOL_GPL vmlinux 0x7c9a7371 clk_prepare -EXPORT_SYMBOL_GPL vmlinux 0x7c9cdae9 kick_process EXPORT_SYMBOL_GPL vmlinux 0x7ca85256 ms_hyperv -EXPORT_SYMBOL_GPL vmlinux 0x7cb4f7f1 devm_clk_bulk_get_all -EXPORT_SYMBOL_GPL vmlinux 0x7cb7e108 sata_scr_valid +EXPORT_SYMBOL_GPL vmlinux 0x7cada3b9 xhci_ext_cap_init EXPORT_SYMBOL_GPL vmlinux 0x7cb803de btree_grim_visitor -EXPORT_SYMBOL_GPL vmlinux 0x7cc26cd5 ata_pci_sff_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0x7cbdb608 fat_time_unix2fat +EXPORT_SYMBOL_GPL vmlinux 0x7cbfa957 dev_pm_opp_get_freq EXPORT_SYMBOL_GPL vmlinux 0x7cceaf92 zs_pool_stats +EXPORT_SYMBOL_GPL vmlinux 0x7cd30e94 pm_generic_poweroff_late EXPORT_SYMBOL_GPL vmlinux 0x7cd6f042 cpufreq_get_current_driver EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x7cf1cd4e iommu_get_domain_for_dev EXPORT_SYMBOL_GPL vmlinux 0x7d00c65b nd_synchronize -EXPORT_SYMBOL_GPL vmlinux 0x7d0596ed pci_acpi_set_companion_lookup_hook EXPORT_SYMBOL_GPL vmlinux 0x7d0e1d95 hv_setup_crash_handler EXPORT_SYMBOL_GPL vmlinux 0x7d1bb1d4 tnum_strn EXPORT_SYMBOL_GPL vmlinux 0x7d491683 free_iova_fast +EXPORT_SYMBOL_GPL vmlinux 0x7d4accaa fib_rules_dump +EXPORT_SYMBOL_GPL vmlinux 0x7d578654 spi_sync EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq -EXPORT_SYMBOL_GPL vmlinux 0x7d7318a7 platform_device_put -EXPORT_SYMBOL_GPL vmlinux 0x7d742f32 sdio_writeb_readb -EXPORT_SYMBOL_GPL vmlinux 0x7d8b827a bus_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x7d93b7ca devres_for_each_res -EXPORT_SYMBOL_GPL vmlinux 0x7da0a8a2 cpufreq_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x7dbd0990 vfio_pci_core_uninit_device -EXPORT_SYMBOL_GPL vmlinux 0x7dd92294 bus_for_each_drv +EXPORT_SYMBOL_GPL vmlinux 0x7d5bd350 sysfs_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x7d700d8e __tracepoint_br_fdb_add +EXPORT_SYMBOL_GPL vmlinux 0x7d8aafd4 bpf_prog_inc +EXPORT_SYMBOL_GPL vmlinux 0x7d8c69e9 serial8250_update_uartclk +EXPORT_SYMBOL_GPL vmlinux 0x7d9348a5 tty_standard_install +EXPORT_SYMBOL_GPL vmlinux 0x7d981ca7 inet_csk_get_port +EXPORT_SYMBOL_GPL vmlinux 0x7d9bd60c dev_pm_opp_find_freq_ceil +EXPORT_SYMBOL_GPL vmlinux 0x7daa3059 apei_get_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0x7dab4c42 ata_std_prereset +EXPORT_SYMBOL_GPL vmlinux 0x7dc14ffa devfreq_get_devfreq_by_node +EXPORT_SYMBOL_GPL vmlinux 0x7dc286a6 gpiochip_add_pingroup_range +EXPORT_SYMBOL_GPL vmlinux 0x7dc74f44 blk_queue_write_cache +EXPORT_SYMBOL_GPL vmlinux 0x7dd30ab6 rio_get_comptag EXPORT_SYMBOL_GPL vmlinux 0x7dda30af unregister_tracepoint_module_notifier 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 0x7e0566ce acpi_gpiochip_request_interrupts -EXPORT_SYMBOL_GPL vmlinux 0x7e06f53f __traceiter_pelt_se_tp -EXPORT_SYMBOL_GPL vmlinux 0x7e24e854 gpiochip_generic_request -EXPORT_SYMBOL_GPL vmlinux 0x7e270d6d vfio_pci_core_enable -EXPORT_SYMBOL_GPL vmlinux 0x7e307c7d trace_event_raw_init -EXPORT_SYMBOL_GPL vmlinux 0x7e36ecf0 virtqueue_kick_prepare +EXPORT_SYMBOL_GPL vmlinux 0x7e037c0a usb_get_intf +EXPORT_SYMBOL_GPL vmlinux 0x7e06f920 rio_mport_send_doorbell +EXPORT_SYMBOL_GPL vmlinux 0x7e0c6110 fwnode_handle_get +EXPORT_SYMBOL_GPL vmlinux 0x7e199744 tpm_get_random +EXPORT_SYMBOL_GPL vmlinux 0x7e354ba1 sata_pmp_qc_defer_cmd_switch +EXPORT_SYMBOL_GPL vmlinux 0x7e3a018a devm_kmalloc +EXPORT_SYMBOL_GPL vmlinux 0x7e3a60bc cpufreq_policy_transition_delay_us EXPORT_SYMBOL_GPL vmlinux 0x7e3bdecd __ftrace_vprintk -EXPORT_SYMBOL_GPL vmlinux 0x7e521f49 add_to_page_cache_lru -EXPORT_SYMBOL_GPL vmlinux 0x7e55290c dma_release_channel -EXPORT_SYMBOL_GPL vmlinux 0x7e597cf8 ata_link_next +EXPORT_SYMBOL_GPL vmlinux 0x7e42a81a pcie_bus_configure_settings +EXPORT_SYMBOL_GPL vmlinux 0x7e494350 vfio_pci_core_register_device +EXPORT_SYMBOL_GPL vmlinux 0x7e4d0853 ip6_sk_dst_lookup_flow EXPORT_SYMBOL_GPL vmlinux 0x7e5db80b pstore_name_to_type EXPORT_SYMBOL_GPL vmlinux 0x7e64181d usb_calc_bus_time -EXPORT_SYMBOL_GPL vmlinux 0x7e68e5f5 dax_region_put -EXPORT_SYMBOL_GPL vmlinux 0x7e70517d to_nvdimm_bus +EXPORT_SYMBOL_GPL vmlinux 0x7e6b1414 dma_resv_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x7e718a30 sk_psock_tls_strp_read +EXPORT_SYMBOL_GPL vmlinux 0x7e77c83d gpiod_put EXPORT_SYMBOL_GPL vmlinux 0x7e7a47c9 pci_acpi_clear_companion_lookup_hook EXPORT_SYMBOL_GPL vmlinux 0x7e7e3f58 ring_buffer_reset_cpu +EXPORT_SYMBOL_GPL vmlinux 0x7e7ec661 edac_mc_find_csrow_by_page +EXPORT_SYMBOL_GPL vmlinux 0x7e861921 ip_local_out +EXPORT_SYMBOL_GPL vmlinux 0x7e89b7b8 fat_sync_inode EXPORT_SYMBOL_GPL vmlinux 0x7e8d8619 usb_anchor_empty EXPORT_SYMBOL_GPL vmlinux 0x7e9043b8 synchronize_srcu -EXPORT_SYMBOL_GPL vmlinux 0x7e987ad6 nvmem_device_get EXPORT_SYMBOL_GPL vmlinux 0x7ea75c24 __wake_up_locked_key_bookmark +EXPORT_SYMBOL_GPL vmlinux 0x7eb20dfe devm_extcon_dev_free EXPORT_SYMBOL_GPL vmlinux 0x7eb808d0 add_cpu -EXPORT_SYMBOL_GPL vmlinux 0x7ebbb0f2 devm_extcon_dev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x7ebeb60f dma_resv_wait_timeout -EXPORT_SYMBOL_GPL vmlinux 0x7ec5ae91 __pci_hp_register -EXPORT_SYMBOL_GPL vmlinux 0x7ec7f0f2 tty_kclose EXPORT_SYMBOL_GPL vmlinux 0x7ec814de inet_hashinfo_init -EXPORT_SYMBOL_GPL vmlinux 0x7ec839d5 nvdimm_blk_region_create -EXPORT_SYMBOL_GPL vmlinux 0x7ec93e7b sysfs_remove_file_from_group -EXPORT_SYMBOL_GPL vmlinux 0x7edf1e9f fat_sync_inode +EXPORT_SYMBOL_GPL vmlinux 0x7edaba4f sk_msg_free EXPORT_SYMBOL_GPL vmlinux 0x7eea6b8b pcap_adc_async -EXPORT_SYMBOL_GPL vmlinux 0x7efc6f32 nf_ct_hook -EXPORT_SYMBOL_GPL vmlinux 0x7f18c9ac nvdimm_pmem_region_create -EXPORT_SYMBOL_GPL vmlinux 0x7f32bae9 __tracepoint_rpm_return_int -EXPORT_SYMBOL_GPL vmlinux 0x7f3834cf pinctrl_find_gpio_range_from_pin -EXPORT_SYMBOL_GPL vmlinux 0x7f42547e dev_pm_domain_attach_by_id -EXPORT_SYMBOL_GPL vmlinux 0x7f4b4f23 subsys_dev_iter_next -EXPORT_SYMBOL_GPL vmlinux 0x7f547e7e adp5520_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x7ef2f31d nd_blk_memremap_flags +EXPORT_SYMBOL_GPL vmlinux 0x7ef74519 pm_clk_remove +EXPORT_SYMBOL_GPL vmlinux 0x7efafb68 dma_alloc_pages +EXPORT_SYMBOL_GPL vmlinux 0x7f0b1c22 efivar_entry_set +EXPORT_SYMBOL_GPL vmlinux 0x7f13dbbf securityfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x7f14313e vfio_pci_core_enable +EXPORT_SYMBOL_GPL vmlinux 0x7f427c41 serdev_device_get_tiocm +EXPORT_SYMBOL_GPL vmlinux 0x7f612ed9 scsi_target_block +EXPORT_SYMBOL_GPL vmlinux 0x7f668905 inet_twsk_put EXPORT_SYMBOL_GPL vmlinux 0x7f6cee89 rhashtable_free_and_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7f6e0f39 regmap_raw_write +EXPORT_SYMBOL_GPL vmlinux 0x7f6f733d __efivar_entry_iter +EXPORT_SYMBOL_GPL vmlinux 0x7f71c925 cpufreq_table_index_unsorted +EXPORT_SYMBOL_GPL vmlinux 0x7f7a7828 dummy_con +EXPORT_SYMBOL_GPL vmlinux 0x7f7b9b6d fib_nl_delrule +EXPORT_SYMBOL_GPL vmlinux 0x7f7c9ce6 encrypt_blob EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata -EXPORT_SYMBOL_GPL vmlinux 0x7f870137 devm_pm_opp_register_set_opp_helper -EXPORT_SYMBOL_GPL vmlinux 0x7f99bc0c irq_domain_create_hierarchy -EXPORT_SYMBOL_GPL vmlinux 0x7fa548cb lp8788_read_byte -EXPORT_SYMBOL_GPL vmlinux 0x7fa5c66b fuse_dev_release +EXPORT_SYMBOL_GPL vmlinux 0x7f80a218 event_triggers_call +EXPORT_SYMBOL_GPL vmlinux 0x7f930544 crypto_stats_akcipher_sign EXPORT_SYMBOL_GPL vmlinux 0x7fa96509 erst_get_record_id_next -EXPORT_SYMBOL_GPL vmlinux 0x7fafcfb4 __tracepoint_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0x7faf4c14 nf_queue EXPORT_SYMBOL_GPL vmlinux 0x7fafdec9 clk_fixed_factor_ops -EXPORT_SYMBOL_GPL vmlinux 0x7fb3b043 regulator_set_ramp_delay_regmap -EXPORT_SYMBOL_GPL vmlinux 0x7fc08dba xenbus_switch_state -EXPORT_SYMBOL_GPL vmlinux 0x7fc79ad4 pci_msi_unmask_irq -EXPORT_SYMBOL_GPL vmlinux 0x7fee99c6 ata_acpi_gtm_xfermask -EXPORT_SYMBOL_GPL vmlinux 0x7ffa2dad ata_bmdma_dumb_qc_prep -EXPORT_SYMBOL_GPL vmlinux 0x8013d8fd vfio_assign_device_set -EXPORT_SYMBOL_GPL vmlinux 0x802506a4 device_phy_find_device -EXPORT_SYMBOL_GPL vmlinux 0x80260755 perf_pmu_unregister -EXPORT_SYMBOL_GPL vmlinux 0x80306c75 tpm_chip_stop -EXPORT_SYMBOL_GPL vmlinux 0x8044c6c5 led_trigger_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fb1654c usb_put_hcd +EXPORT_SYMBOL_GPL vmlinux 0x7fbc9717 __traceiter_br_fdb_update +EXPORT_SYMBOL_GPL vmlinux 0x7fcd2fa3 tty_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0x7fda9c2a __fsnotify_parent +EXPORT_SYMBOL_GPL vmlinux 0x7ff8d52e ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0x8001e0ec device_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x8002b0fe sock_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0x80183b72 pci_load_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x8026cd5f serial8250_release_dma EXPORT_SYMBOL_GPL vmlinux 0x805667cf devlink_fmsg_u64_put -EXPORT_SYMBOL_GPL vmlinux 0x80607721 fsnotify_alloc_user_group -EXPORT_SYMBOL_GPL vmlinux 0x806ef354 __kthread_init_worker -EXPORT_SYMBOL_GPL vmlinux 0x807468bf sched_trace_rq_avg_dl EXPORT_SYMBOL_GPL vmlinux 0x807766ea usb_scuttle_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x807e2d99 led_init_default_state_get EXPORT_SYMBOL_GPL vmlinux 0x807fdcc4 call_rcu_tasks_rude +EXPORT_SYMBOL_GPL vmlinux 0x80844f45 xfrm_audit_state_delete EXPORT_SYMBOL_GPL vmlinux 0x808a8088 handle_guest_split_lock EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested -EXPORT_SYMBOL_GPL vmlinux 0x80b0b16c gpiochip_populate_parent_fwspec_fourcell +EXPORT_SYMBOL_GPL vmlinux 0x808f929e iommu_map_sg +EXPORT_SYMBOL_GPL vmlinux 0x809aa4ac __pm_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x80a526cc pci_generic_config_read32 +EXPORT_SYMBOL_GPL vmlinux 0x80a98e65 register_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0x80b44fa0 mmu_interval_read_begin EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close -EXPORT_SYMBOL_GPL vmlinux 0x80caec9c device_add_groups -EXPORT_SYMBOL_GPL vmlinux 0x80ce7805 pci_find_ht_capability -EXPORT_SYMBOL_GPL vmlinux 0x80d213ab acpi_processor_get_performance_info -EXPORT_SYMBOL_GPL vmlinux 0x80d5595e net_ns_type_operations +EXPORT_SYMBOL_GPL vmlinux 0x80cb6806 task_cgroup_path EXPORT_SYMBOL_GPL vmlinux 0x80d5e57a mpi_free -EXPORT_SYMBOL_GPL vmlinux 0x80e7a28b irq_domain_translate_twocell -EXPORT_SYMBOL_GPL vmlinux 0x80ffefc7 regulator_get_hardware_vsel_register -EXPORT_SYMBOL_GPL vmlinux 0x811af826 pci_epf_bind -EXPORT_SYMBOL_GPL vmlinux 0x811d6bd7 serdev_device_write +EXPORT_SYMBOL_GPL vmlinux 0x81194edd tcp_bpf_update_proto EXPORT_SYMBOL_GPL vmlinux 0x811dc334 usb_unregister_notify EXPORT_SYMBOL_GPL vmlinux 0x81221cad amd_nb_num -EXPORT_SYMBOL_GPL vmlinux 0x8124f45a regulator_list_voltage -EXPORT_SYMBOL_GPL vmlinux 0x81302ce5 md_bitmap_resize -EXPORT_SYMBOL_GPL vmlinux 0x81375ece unix_outq_len -EXPORT_SYMBOL_GPL vmlinux 0x813a5f56 evm_verifyxattr +EXPORT_SYMBOL_GPL vmlinux 0x8125e9f8 usb_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0x812bb485 virtio_device_restore +EXPORT_SYMBOL_GPL vmlinux 0x812ceaf1 spi_split_transfers_maxsize EXPORT_SYMBOL_GPL vmlinux 0x813cdf4a __free_iova -EXPORT_SYMBOL_GPL vmlinux 0x814ed483 dev_attr_ncq_prio_enable -EXPORT_SYMBOL_GPL vmlinux 0x81552ed6 device_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x814f1174 fwnode_get_named_child_node EXPORT_SYMBOL_GPL vmlinux 0x815588a6 clk_enable -EXPORT_SYMBOL_GPL vmlinux 0x815a8eae virtio_add_status +EXPORT_SYMBOL_GPL vmlinux 0x8158ec2d nf_queue_entry_get_refs EXPORT_SYMBOL_GPL vmlinux 0x815fda83 sed_ioctl EXPORT_SYMBOL_GPL vmlinux 0x816a41ca cpufreq_update_limits +EXPORT_SYMBOL_GPL vmlinux 0x81731fc6 gpiochip_line_is_persistent EXPORT_SYMBOL_GPL vmlinux 0x8180cede asn1_encode_sequence -EXPORT_SYMBOL_GPL vmlinux 0x81873ba2 ata_std_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x8190a075 efivar_entry_remove +EXPORT_SYMBOL_GPL vmlinux 0x8193e377 sdio_release_host +EXPORT_SYMBOL_GPL vmlinux 0x8198f693 __devm_regmap_init_spi EXPORT_SYMBOL_GPL vmlinux 0x819d72cb klist_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0x81a5a40c sdio_release_irq EXPORT_SYMBOL_GPL vmlinux 0x81a7f541 percpu_ref_init -EXPORT_SYMBOL_GPL vmlinux 0x81aa7799 fwnode_property_get_reference_args -EXPORT_SYMBOL_GPL vmlinux 0x81afd7e9 phy_set_media EXPORT_SYMBOL_GPL vmlinux 0x81b03377 efivar_entry_set_safe -EXPORT_SYMBOL_GPL vmlinux 0x81c1566a devm_bitmap_alloc -EXPORT_SYMBOL_GPL vmlinux 0x81c87aaf rio_set_port_lockout -EXPORT_SYMBOL_GPL vmlinux 0x81caba34 ata_std_sched_eh -EXPORT_SYMBOL_GPL vmlinux 0x81cbb886 spi_busnum_to_master -EXPORT_SYMBOL_GPL vmlinux 0x81d7a900 tcp_set_state -EXPORT_SYMBOL_GPL vmlinux 0x81e6398a crypto_alloc_rng -EXPORT_SYMBOL_GPL vmlinux 0x81f13cd6 da9052_disable_irq -EXPORT_SYMBOL_GPL vmlinux 0x81f30a1d ping_close +EXPORT_SYMBOL_GPL vmlinux 0x81b055f5 exportfs_decode_fh +EXPORT_SYMBOL_GPL vmlinux 0x81d1be5a fat_flush_inodes +EXPORT_SYMBOL_GPL vmlinux 0x81dc0164 sysfs_create_link +EXPORT_SYMBOL_GPL vmlinux 0x81e00f3e __inet_lookup_listener EXPORT_SYMBOL_GPL vmlinux 0x81f372a2 unregister_ftrace_export EXPORT_SYMBOL_GPL vmlinux 0x82092899 badrange_forget -EXPORT_SYMBOL_GPL vmlinux 0x820ec1d1 device_match_devt -EXPORT_SYMBOL_GPL vmlinux 0x821ec72b __SCK__tp_func_error_report_end EXPORT_SYMBOL_GPL vmlinux 0x821ec7f1 clk_mux_ro_ops EXPORT_SYMBOL_GPL vmlinux 0x82226c53 pinctrl_unregister_mappings -EXPORT_SYMBOL_GPL vmlinux 0x82231ff7 skb_segment_list -EXPORT_SYMBOL_GPL vmlinux 0x82363392 rio_mport_send_doorbell +EXPORT_SYMBOL_GPL vmlinux 0x82235f6b scsi_dh_activate +EXPORT_SYMBOL_GPL vmlinux 0x822413a8 wm831x_auxadc_read_uv +EXPORT_SYMBOL_GPL vmlinux 0x82300dc3 sbitmap_show EXPORT_SYMBOL_GPL vmlinux 0x823eae06 blocking_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x826fc524 regulator_get_voltage -EXPORT_SYMBOL_GPL vmlinux 0x8277e92f adp5520_write +EXPORT_SYMBOL_GPL vmlinux 0x824c47ef spi_mem_adjust_op_size +EXPORT_SYMBOL_GPL vmlinux 0x826c3ef4 iommu_aux_detach_device +EXPORT_SYMBOL_GPL vmlinux 0x82785d4a tcp_reno_undo_cwnd EXPORT_SYMBOL_GPL vmlinux 0x827e61f8 acpi_has_watchdog +EXPORT_SYMBOL_GPL vmlinux 0x8288f27c pinctrl_enable +EXPORT_SYMBOL_GPL vmlinux 0x828a8e13 phy_resolve_aneg_linkmode EXPORT_SYMBOL_GPL vmlinux 0x828e22f4 hrtimer_forward -EXPORT_SYMBOL_GPL vmlinux 0x82a848d7 spi_async -EXPORT_SYMBOL_GPL vmlinux 0x82adc0d7 msg_zerocopy_alloc -EXPORT_SYMBOL_GPL vmlinux 0x82b97fc7 __tracepoint_block_bio_remap -EXPORT_SYMBOL_GPL vmlinux 0x82cca90b perf_get_aux -EXPORT_SYMBOL_GPL vmlinux 0x82cd85b0 usb_store_new_id -EXPORT_SYMBOL_GPL vmlinux 0x82ce0877 vfio_iommu_group_put +EXPORT_SYMBOL_GPL vmlinux 0x82ae6cc2 dev_pm_domain_detach +EXPORT_SYMBOL_GPL vmlinux 0x82b0f53c fuse_dev_fiq_ops +EXPORT_SYMBOL_GPL vmlinux 0x82bb228b register_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x82c5365c __kernel_write EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure -EXPORT_SYMBOL_GPL vmlinux 0x82d90a97 devm_clk_hw_register_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0x82ec21a3 xfrm_get_translator -EXPORT_SYMBOL_GPL vmlinux 0x82f84dfd ata_sas_port_suspend +EXPORT_SYMBOL_GPL vmlinux 0x82e75643 dw_pcie_find_capability EXPORT_SYMBOL_GPL vmlinux 0x82ff4b95 clk_hw_unregister_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0x83056361 spi_controller_dma_map_mem_op_data -EXPORT_SYMBOL_GPL vmlinux 0x8312889f acpi_find_child_device +EXPORT_SYMBOL_GPL vmlinux 0x830daeae usb_hcd_poll_rh_status EXPORT_SYMBOL_GPL vmlinux 0x83202334 alloc_iova_fast EXPORT_SYMBOL_GPL vmlinux 0x8328673f uv_bios_get_master_nasid -EXPORT_SYMBOL_GPL vmlinux 0x8328f2ae gpiochip_request_own_desc -EXPORT_SYMBOL_GPL vmlinux 0x83318a66 __SCK__tp_func_sched_cpu_capacity_tp -EXPORT_SYMBOL_GPL vmlinux 0x83331ded gpiochip_irq_map EXPORT_SYMBOL_GPL vmlinux 0x8335ca43 __SCT__tp_func_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0x83380b9c dma_buf_mmap EXPORT_SYMBOL_GPL vmlinux 0x8339df73 klist_add_behind -EXPORT_SYMBOL_GPL vmlinux 0x83471f61 register_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x834398a9 __devm_clk_hw_register_divider EXPORT_SYMBOL_GPL vmlinux 0x8349a895 nvmem_device_put -EXPORT_SYMBOL_GPL vmlinux 0x834f1936 da9052_request_irq EXPORT_SYMBOL_GPL vmlinux 0x8353dfff acpi_os_get_iomem -EXPORT_SYMBOL_GPL vmlinux 0x83691c80 max8997_update_reg -EXPORT_SYMBOL_GPL vmlinux 0x836cdd88 dm_report_zones -EXPORT_SYMBOL_GPL vmlinux 0x839d05de regulator_list_voltage_table -EXPORT_SYMBOL_GPL vmlinux 0x83a3e9f4 wm8350_reg_unlock -EXPORT_SYMBOL_GPL vmlinux 0x83c538bd wm8350_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0x836189e7 __tracepoint_block_rq_insert +EXPORT_SYMBOL_GPL vmlinux 0x8361c800 fwnode_create_software_node +EXPORT_SYMBOL_GPL vmlinux 0x8369b4b6 device_match_devt +EXPORT_SYMBOL_GPL vmlinux 0x836b0dce security_inode_setattr +EXPORT_SYMBOL_GPL vmlinux 0x837676e5 register_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x838231db dma_resv_test_signaled +EXPORT_SYMBOL_GPL vmlinux 0x83a8757b __clocksource_register_scale +EXPORT_SYMBOL_GPL vmlinux 0x83afb581 reset_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x83bf80ef md_rdev_clear EXPORT_SYMBOL_GPL vmlinux 0x83c6040d unregister_kretprobes -EXPORT_SYMBOL_GPL vmlinux 0x83f55b90 ata_bmdma_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x840743f1 usb_control_msg_recv +EXPORT_SYMBOL_GPL vmlinux 0x83c6ace3 __traceiter_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0x83e58ded regulator_list_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0x83f5bc8b class_compat_remove_link +EXPORT_SYMBOL_GPL vmlinux 0x8404b900 anon_transport_class_unregister EXPORT_SYMBOL_GPL vmlinux 0x84106f36 devlink_trap_ctx_priv -EXPORT_SYMBOL_GPL vmlinux 0x8425307b pci_disable_pri +EXPORT_SYMBOL_GPL vmlinux 0x841deeb1 register_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x841f765b xenbus_dev_is_online +EXPORT_SYMBOL_GPL vmlinux 0x84241d15 rio_add_device EXPORT_SYMBOL_GPL vmlinux 0x84264ced fs_umode_to_ftype -EXPORT_SYMBOL_GPL vmlinux 0x84281265 devm_kstrdup_const -EXPORT_SYMBOL_GPL vmlinux 0x842b6f31 dev_pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x8427034d fib_new_table EXPORT_SYMBOL_GPL vmlinux 0x842f046d usb_poison_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x8430dfeb icc_put +EXPORT_SYMBOL_GPL vmlinux 0x84385000 simple_attr_read EXPORT_SYMBOL_GPL vmlinux 0x843d70ef acpi_is_root_bridge -EXPORT_SYMBOL_GPL vmlinux 0x844378bb __SCK__tp_func_map -EXPORT_SYMBOL_GPL vmlinux 0x844d5552 usb_hub_clear_tt_buffer EXPORT_SYMBOL_GPL vmlinux 0x84502a47 blk_status_to_errno -EXPORT_SYMBOL_GPL vmlinux 0x84531faa __mmc_send_status -EXPORT_SYMBOL_GPL vmlinux 0x845a4b03 mptcp_token_iter_next EXPORT_SYMBOL_GPL vmlinux 0x845dbf3b scatterwalk_map_and_copy EXPORT_SYMBOL_GPL vmlinux 0x8462cb62 atapi_cmd_type EXPORT_SYMBOL_GPL vmlinux 0x84678725 __SCK__tp_func_xdp_exception -EXPORT_SYMBOL_GPL vmlinux 0x8472f8ac dmaengine_desc_attach_metadata -EXPORT_SYMBOL_GPL vmlinux 0x84773603 dev_pm_opp_sync_regulators -EXPORT_SYMBOL_GPL vmlinux 0x849c83d6 fwnode_property_match_string -EXPORT_SYMBOL_GPL vmlinux 0x84ac7f8d balloon_aops +EXPORT_SYMBOL_GPL vmlinux 0x847b19c6 skb_splice_bits +EXPORT_SYMBOL_GPL vmlinux 0x847c4dea pci_enable_ats +EXPORT_SYMBOL_GPL vmlinux 0x8485ee45 noop_direct_IO +EXPORT_SYMBOL_GPL vmlinux 0x848babcc usb_string +EXPORT_SYMBOL_GPL vmlinux 0x84a7cad6 mptcp_pm_get_add_addr_signal_max EXPORT_SYMBOL_GPL vmlinux 0x84b268cf sn_coherency_id -EXPORT_SYMBOL_GPL vmlinux 0x84b753da tracing_snapshot_cond -EXPORT_SYMBOL_GPL vmlinux 0x84c595e7 ata_std_prereset -EXPORT_SYMBOL_GPL vmlinux 0x84e82e65 bio_release_pages +EXPORT_SYMBOL_GPL vmlinux 0x84b8cbad fwnode_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x84bfd372 ata_sff_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x84c36cd8 cpufreq_freq_attr_scaling_available_freqs +EXPORT_SYMBOL_GPL vmlinux 0x84ebb4e5 iommu_sva_unbind_device EXPORT_SYMBOL_GPL vmlinux 0x84ef27f5 synth_event_add_fields -EXPORT_SYMBOL_GPL vmlinux 0x84ef9588 bpf_map_inc_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x8501fc2b wm831x_auxadc_read +EXPORT_SYMBOL_GPL vmlinux 0x8504ec76 xenbus_watch_pathfmt EXPORT_SYMBOL_GPL vmlinux 0x8506baa8 clk_unregister_gate +EXPORT_SYMBOL_GPL vmlinux 0x850adbe7 iommu_group_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x850b79af pci_epc_stop EXPORT_SYMBOL_GPL vmlinux 0x850bb6db devlink_health_reporter_destroy +EXPORT_SYMBOL_GPL vmlinux 0x85155d47 regmap_get_val_endian EXPORT_SYMBOL_GPL vmlinux 0x851e6003 usb_phy_roothub_calibrate -EXPORT_SYMBOL_GPL vmlinux 0x852d9a9b usb_get_status -EXPORT_SYMBOL_GPL vmlinux 0x85356d1a register_trace_event -EXPORT_SYMBOL_GPL vmlinux 0x85517299 crypto_unregister_shash +EXPORT_SYMBOL_GPL vmlinux 0x851fdc32 sysfs_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x852a6879 regmap_multi_reg_write EXPORT_SYMBOL_GPL vmlinux 0x85540ebc nvmem_cell_put -EXPORT_SYMBOL_GPL vmlinux 0x856c21b3 iommu_dev_disable_feature -EXPORT_SYMBOL_GPL vmlinux 0x85791dac iommu_present -EXPORT_SYMBOL_GPL vmlinux 0x857e2d69 crypto_unregister_alg +EXPORT_SYMBOL_GPL vmlinux 0x85558e0f scsi_flush_work +EXPORT_SYMBOL_GPL vmlinux 0x8562a6b7 fwnode_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x85666a1f dm_bio_from_per_bio_data +EXPORT_SYMBOL_GPL vmlinux 0x856ec29c br_fdb_test_addr_hook +EXPORT_SYMBOL_GPL vmlinux 0x856ff3d6 clk_hw_get_parent_by_index +EXPORT_SYMBOL_GPL vmlinux 0x857965a9 fwnode_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x85833877 efivars_unregister EXPORT_SYMBOL_GPL vmlinux 0x85862277 ioasid_find -EXPORT_SYMBOL_GPL vmlinux 0x858b8b53 inet_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0x858b5f97 get_task_mm EXPORT_SYMBOL_GPL vmlinux 0x85935a61 acpi_dev_irq_flags -EXPORT_SYMBOL_GPL vmlinux 0x8595b2bc usb_hcd_resume_root_hub +EXPORT_SYMBOL_GPL vmlinux 0x85936d1f spi_mem_exec_op +EXPORT_SYMBOL_GPL vmlinux 0x859b152d trace_array_init_printk EXPORT_SYMBOL_GPL vmlinux 0x85b15444 arch_set_max_freq_ratio +EXPORT_SYMBOL_GPL vmlinux 0x85b8f687 dev_pm_set_dedicated_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x85bdb1a0 mmc_crypto_setup_queue EXPORT_SYMBOL_GPL vmlinux 0x85bfc5f9 __SCT__tp_func_block_rq_insert +EXPORT_SYMBOL_GPL vmlinux 0x85c3625a crypto_alloc_acomp +EXPORT_SYMBOL_GPL vmlinux 0x85c37197 i2c_dw_acpi_configure EXPORT_SYMBOL_GPL vmlinux 0x85c54b61 efivar_validate EXPORT_SYMBOL_GPL vmlinux 0x85cb2c45 xen_has_pv_devices +EXPORT_SYMBOL_GPL vmlinux 0x85d2c4eb ata_scsi_slave_destroy EXPORT_SYMBOL_GPL vmlinux 0x85d7edfd hpet_set_periodic_freq -EXPORT_SYMBOL_GPL vmlinux 0x85d9e5a4 xhci_dbg_trace -EXPORT_SYMBOL_GPL vmlinux 0x85dca087 __blk_mq_debugfs_rq_show -EXPORT_SYMBOL_GPL vmlinux 0x85e0386c __tracepoint_sched_overutilized_tp +EXPORT_SYMBOL_GPL vmlinux 0x85e8dc35 pci_hp_remove_module_link +EXPORT_SYMBOL_GPL vmlinux 0x85eec61e mptcp_pm_get_local_addr_max EXPORT_SYMBOL_GPL vmlinux 0x85eed1be iopf_queue_discard_partial +EXPORT_SYMBOL_GPL vmlinux 0x85f2b0c9 acpi_subsys_freeze +EXPORT_SYMBOL_GPL vmlinux 0x85f6280f crypto_register_alg +EXPORT_SYMBOL_GPL vmlinux 0x85f8a072 do_xdp_generic +EXPORT_SYMBOL_GPL vmlinux 0x86032f08 device_match_name +EXPORT_SYMBOL_GPL vmlinux 0x86067a7b serdev_device_write_buf +EXPORT_SYMBOL_GPL vmlinux 0x860e3250 irq_domain_remove EXPORT_SYMBOL_GPL vmlinux 0x86169f3e amd_smn_write +EXPORT_SYMBOL_GPL vmlinux 0x86172fa4 acpi_data_fwnode_ops EXPORT_SYMBOL_GPL vmlinux 0x862258db timecounter_init -EXPORT_SYMBOL_GPL vmlinux 0x862af4ec gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x86278654 wakeup_sources_walk_start EXPORT_SYMBOL_GPL vmlinux 0x862bb17b linear_range_values_in_range_array -EXPORT_SYMBOL_GPL vmlinux 0x862d06ee __devm_intel_scu_ipc_register -EXPORT_SYMBOL_GPL vmlinux 0x862f6357 da903x_clr_bits -EXPORT_SYMBOL_GPL vmlinux 0x863177da skcipher_walk_done -EXPORT_SYMBOL_GPL vmlinux 0x86377099 page_endio -EXPORT_SYMBOL_GPL vmlinux 0x8637e5b6 regulator_desc_list_voltage_linear_range -EXPORT_SYMBOL_GPL vmlinux 0x8642f16f acpiphp_unregister_attention +EXPORT_SYMBOL_GPL vmlinux 0x86400aef irq_gc_set_wake +EXPORT_SYMBOL_GPL vmlinux 0x864841f0 page_cache_async_ra EXPORT_SYMBOL_GPL vmlinux 0x86585a33 devlink_fmsg_obj_nest_start EXPORT_SYMBOL_GPL vmlinux 0x86623fd7 notify_remote_via_irq +EXPORT_SYMBOL_GPL vmlinux 0x866c1013 devm_regulator_get_exclusive EXPORT_SYMBOL_GPL vmlinux 0x86700220 acpi_get_cpuid +EXPORT_SYMBOL_GPL vmlinux 0x8673c572 raw_hash_sk EXPORT_SYMBOL_GPL vmlinux 0x8677245d unregister_switchdev_blocking_notifier EXPORT_SYMBOL_GPL vmlinux 0x8677f369 pvclock_get_pvti_cpu0_va -EXPORT_SYMBOL_GPL vmlinux 0x867d8409 dev_pm_opp_find_freq_ceil_by_volt EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get -EXPORT_SYMBOL_GPL vmlinux 0x8696d41f spi_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0x8698c010 sdio_release_host -EXPORT_SYMBOL_GPL vmlinux 0x86a2b62a inet_unhash -EXPORT_SYMBOL_GPL vmlinux 0x86aa85a5 da903x_read -EXPORT_SYMBOL_GPL vmlinux 0x86ab12d8 tpmm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0x86984d49 sdio_readb +EXPORT_SYMBOL_GPL vmlinux 0x869dedd3 devlink_trap_groups_unregister +EXPORT_SYMBOL_GPL vmlinux 0x869f80e5 ata_std_postreset +EXPORT_SYMBOL_GPL vmlinux 0x86a917a7 tpm2_probe +EXPORT_SYMBOL_GPL vmlinux 0x86acff19 iommu_detach_group EXPORT_SYMBOL_GPL vmlinux 0x86b13d2a usb_unpoison_anchored_urbs EXPORT_SYMBOL_GPL vmlinux 0x86b427ce clkdev_create +EXPORT_SYMBOL_GPL vmlinux 0x86be3026 fat_attach +EXPORT_SYMBOL_GPL vmlinux 0x86bfe53e dma_mmap_pages EXPORT_SYMBOL_GPL vmlinux 0x86c43a8c cper_estatus_check EXPORT_SYMBOL_GPL vmlinux 0x86c961b3 __set_dax_synchronous -EXPORT_SYMBOL_GPL vmlinux 0x86d66867 usb_add_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0x86c9bf15 lwtunnel_cmp_encap EXPORT_SYMBOL_GPL vmlinux 0x86dda6ef rtm_getroute_parse_ip_proto -EXPORT_SYMBOL_GPL vmlinux 0x86e00a0d wm8350_block_write +EXPORT_SYMBOL_GPL vmlinux 0x86dfb81b agp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0x86e3dec4 subsys_system_register +EXPORT_SYMBOL_GPL vmlinux 0x86ebcaee __pci_epf_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x86eddb8b devm_fwnode_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x86f33085 umd_cleanup_helper EXPORT_SYMBOL_GPL vmlinux 0x86f6b99d synchronize_rcu_expedited EXPORT_SYMBOL_GPL vmlinux 0x86f85114 net_dec_egress_queue -EXPORT_SYMBOL_GPL vmlinux 0x86fdd7ae led_classdev_notify_brightness_hw_changed +EXPORT_SYMBOL_GPL vmlinux 0x86fe10c4 blk_mq_free_request +EXPORT_SYMBOL_GPL vmlinux 0x87032412 irq_chip_request_resources_parent +EXPORT_SYMBOL_GPL vmlinux 0x870ca8bb devm_of_phy_get EXPORT_SYMBOL_GPL vmlinux 0x870e16b7 xen_test_irq_shared -EXPORT_SYMBOL_GPL vmlinux 0x871b8bfd usb_lock_device_for_reset -EXPORT_SYMBOL_GPL vmlinux 0x871d0b93 crypto_stats_rng_seed -EXPORT_SYMBOL_GPL vmlinux 0x872890f3 serial8250_init_port +EXPORT_SYMBOL_GPL vmlinux 0x871176fe wakeup_source_destroy +EXPORT_SYMBOL_GPL vmlinux 0x8714c180 fuse_do_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x8719f4d7 __pm_relax EXPORT_SYMBOL_GPL vmlinux 0x872d4f7c __SCT__tp_func_xdp_bulk_tx EXPORT_SYMBOL_GPL vmlinux 0x8735ed3d irq_set_affinity_notifier -EXPORT_SYMBOL_GPL vmlinux 0x87468797 dax_copy_from_iter -EXPORT_SYMBOL_GPL vmlinux 0x87487f34 setfl -EXPORT_SYMBOL_GPL vmlinux 0x87519fc3 devlink_trap_policers_unregister +EXPORT_SYMBOL_GPL vmlinux 0x873a8321 pci_epc_unmap_addr +EXPORT_SYMBOL_GPL vmlinux 0x873bfb31 acpi_dev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x873edd8a gpiod_set_raw_value +EXPORT_SYMBOL_GPL vmlinux 0x874ac945 devlink_resource_register +EXPORT_SYMBOL_GPL vmlinux 0x874edeba ata_sff_tf_read EXPORT_SYMBOL_GPL vmlinux 0x875582b7 nvmem_del_cell_table -EXPORT_SYMBOL_GPL vmlinux 0x875dded5 __pm_runtime_idle -EXPORT_SYMBOL_GPL vmlinux 0x876db9f2 sdio_readb -EXPORT_SYMBOL_GPL vmlinux 0x878350dc i2c_parse_fw_timings -EXPORT_SYMBOL_GPL vmlinux 0x87b02eff __spi_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x87b0e84e firmware_request_nowarn -EXPORT_SYMBOL_GPL vmlinux 0x87b2869b vp_modern_get_num_queues -EXPORT_SYMBOL_GPL vmlinux 0x87bda741 switchdev_handle_port_attr_set +EXPORT_SYMBOL_GPL vmlinux 0x87558575 netdev_set_default_ethtool_ops +EXPORT_SYMBOL_GPL vmlinux 0x877bb816 fscrypt_ioctl_add_key +EXPORT_SYMBOL_GPL vmlinux 0x877c07c7 mmc_get_ext_csd +EXPORT_SYMBOL_GPL vmlinux 0x879365e7 extcon_set_state +EXPORT_SYMBOL_GPL vmlinux 0x87a19a9a regmap_register_patch +EXPORT_SYMBOL_GPL vmlinux 0x87a562da acpiphp_register_attention +EXPORT_SYMBOL_GPL vmlinux 0x87ae5485 fwnode_get_name +EXPORT_SYMBOL_GPL vmlinux 0x87b20c97 evm_verifyxattr +EXPORT_SYMBOL_GPL vmlinux 0x87b2c506 security_inode_permission +EXPORT_SYMBOL_GPL vmlinux 0x87c99636 vp_modern_set_status +EXPORT_SYMBOL_GPL vmlinux 0x87cd5293 dev_pm_get_subsys_data EXPORT_SYMBOL_GPL vmlinux 0x87ce0be2 free_iova -EXPORT_SYMBOL_GPL vmlinux 0x87cf5f65 spi_mem_dirmap_create -EXPORT_SYMBOL_GPL vmlinux 0x87e5bc11 iommu_unmap_fast EXPORT_SYMBOL_GPL vmlinux 0x87e64181 amd_nb_has_feature -EXPORT_SYMBOL_GPL vmlinux 0x87e87109 spi_mem_supports_op +EXPORT_SYMBOL_GPL vmlinux 0x87e86645 usb_hcd_pci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x87eda38c edac_device_handle_ue_count EXPORT_SYMBOL_GPL vmlinux 0x87f34e99 disable_kprobe -EXPORT_SYMBOL_GPL vmlinux 0x87f6588e usb_alloc_streams -EXPORT_SYMBOL_GPL vmlinux 0x8811de53 genphy_c45_restart_aneg -EXPORT_SYMBOL_GPL vmlinux 0x8813d497 dev_pm_opp_get_max_volt_latency -EXPORT_SYMBOL_GPL vmlinux 0x88235252 gpiod_get_array -EXPORT_SYMBOL_GPL vmlinux 0x88248c23 sysfs_notify +EXPORT_SYMBOL_GPL vmlinux 0x87f7fd11 perf_aux_output_flag +EXPORT_SYMBOL_GPL vmlinux 0x87fd1fa8 proc_mkdir_data +EXPORT_SYMBOL_GPL vmlinux 0x8813ce4b devlink_traps_register +EXPORT_SYMBOL_GPL vmlinux 0x881994d5 ata_acpi_stm +EXPORT_SYMBOL_GPL vmlinux 0x881e9016 pinctrl_utils_reserve_map +EXPORT_SYMBOL_GPL vmlinux 0x88347a2a acpi_device_get_match_data +EXPORT_SYMBOL_GPL vmlinux 0x88348e0e crypto_stats_skcipher_decrypt EXPORT_SYMBOL_GPL vmlinux 0x885528a6 ring_buffer_discard_commit -EXPORT_SYMBOL_GPL vmlinux 0x886809c6 regulator_unregister -EXPORT_SYMBOL_GPL vmlinux 0x886ac949 devm_phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0x886109d2 pci_platform_power_transition +EXPORT_SYMBOL_GPL vmlinux 0x8864e665 virtqueue_get_desc_addr +EXPORT_SYMBOL_GPL vmlinux 0x886b4281 devm_spi_register_controller +EXPORT_SYMBOL_GPL vmlinux 0x886f8dc5 pm_clk_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x88759677 virtqueue_get_vring_size +EXPORT_SYMBOL_GPL vmlinux 0x8875f0ce nf_ipv6_ops +EXPORT_SYMBOL_GPL vmlinux 0x88816e5e devm_gpiod_get_from_of_node +EXPORT_SYMBOL_GPL vmlinux 0x8888e14a icc_sync_state +EXPORT_SYMBOL_GPL vmlinux 0x888a8ef0 dev_pm_qos_expose_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x888b101d __raw_v6_lookup EXPORT_SYMBOL_GPL vmlinux 0x888c5be5 irq_bypass_register_consumer -EXPORT_SYMBOL_GPL vmlinux 0x888cb317 devlink_unregister -EXPORT_SYMBOL_GPL vmlinux 0x88a56032 __hwspin_trylock +EXPORT_SYMBOL_GPL vmlinux 0x889b767c sched_show_task +EXPORT_SYMBOL_GPL vmlinux 0x88a50b9f clk_register_fixed_rate EXPORT_SYMBOL_GPL vmlinux 0x88ab6fe3 kgdb_active -EXPORT_SYMBOL_GPL vmlinux 0x88b45762 cpuidle_register EXPORT_SYMBOL_GPL vmlinux 0x88b4ae92 ring_buffer_normalize_time_stamp -EXPORT_SYMBOL_GPL vmlinux 0x88ba87e3 pci_epf_free_space -EXPORT_SYMBOL_GPL vmlinux 0x88cf49bc spi_take_timestamp_post -EXPORT_SYMBOL_GPL vmlinux 0x88de405e __devm_regmap_init -EXPORT_SYMBOL_GPL vmlinux 0x88e76e55 irq_gc_set_wake -EXPORT_SYMBOL_GPL vmlinux 0x88ec023c serial8250_em485_start_tx -EXPORT_SYMBOL_GPL vmlinux 0x88ef1951 clk_hw_register -EXPORT_SYMBOL_GPL vmlinux 0x88efa9ed usb_put_hcd -EXPORT_SYMBOL_GPL vmlinux 0x88f245f8 __tracepoint_block_rq_remap -EXPORT_SYMBOL_GPL vmlinux 0x89020f5f gpiod_export_link +EXPORT_SYMBOL_GPL vmlinux 0x88cab027 mnt_want_write_file +EXPORT_SYMBOL_GPL vmlinux 0x88d8b7ee pinctrl_dev_get_name +EXPORT_SYMBOL_GPL vmlinux 0x88dace39 phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0x88eb8afe dev_pm_set_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x88f6d831 cpufreq_driver_resolve_freq EXPORT_SYMBOL_GPL vmlinux 0x890f4f97 __kprobe_event_gen_cmd_start EXPORT_SYMBOL_GPL vmlinux 0x890fa0fa btree_get_prev +EXPORT_SYMBOL_GPL vmlinux 0x8910b3a0 vp_modern_get_queue_size EXPORT_SYMBOL_GPL vmlinux 0x891a5a7f gnttab_max_grant_frames -EXPORT_SYMBOL_GPL vmlinux 0x891fabac clk_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x891cf33c sata_scr_valid EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state -EXPORT_SYMBOL_GPL vmlinux 0x89259248 dev_pm_opp_get_max_clock_latency -EXPORT_SYMBOL_GPL vmlinux 0x892b4698 irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x8925c43a nvdimm_bus_add_badrange EXPORT_SYMBOL_GPL vmlinux 0x892f9f04 __SCT__tp_func_devlink_hwerr EXPORT_SYMBOL_GPL vmlinux 0x893abbdd devlink_fmsg_u32_pair_put +EXPORT_SYMBOL_GPL vmlinux 0x8940a0ce battery_hook_unregister +EXPORT_SYMBOL_GPL vmlinux 0x89432f75 md_stop EXPORT_SYMBOL_GPL vmlinux 0x89485687 iommu_group_put -EXPORT_SYMBOL_GPL vmlinux 0x8954553f wm831x_reg_unlock -EXPORT_SYMBOL_GPL vmlinux 0x89562c29 dev_pm_opp_put_supported_hw -EXPORT_SYMBOL_GPL vmlinux 0x89645e46 acpi_device_fwnode_ops -EXPORT_SYMBOL_GPL vmlinux 0x896d972f cgroup_get_from_id -EXPORT_SYMBOL_GPL vmlinux 0x8970087a __irq_resolve_mapping -EXPORT_SYMBOL_GPL vmlinux 0x899e5b69 xenbus_dev_changed -EXPORT_SYMBOL_GPL vmlinux 0x89a660ab generic_handle_domain_irq +EXPORT_SYMBOL_GPL vmlinux 0x8950a9fe xhci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x897c822d usb_hub_release_port +EXPORT_SYMBOL_GPL vmlinux 0x899aa1ad iommu_device_link +EXPORT_SYMBOL_GPL vmlinux 0x89a19cce inet_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0x89adc4ae fwnode_property_match_string EXPORT_SYMBOL_GPL vmlinux 0x89ae7aa0 rsa_parse_pub_key -EXPORT_SYMBOL_GPL vmlinux 0x89b6ea22 crypto_larval_alloc +EXPORT_SYMBOL_GPL vmlinux 0x89b223cb xfrm_state_mtu +EXPORT_SYMBOL_GPL vmlinux 0x89ba3baf fscrypt_get_symlink EXPORT_SYMBOL_GPL vmlinux 0x89bbafc6 usb_register_notify +EXPORT_SYMBOL_GPL vmlinux 0x89bbd45f devlink_alloc_ns +EXPORT_SYMBOL_GPL vmlinux 0x89bc3186 __inode_attach_wb +EXPORT_SYMBOL_GPL vmlinux 0x89be1c0c led_get_default_pattern +EXPORT_SYMBOL_GPL vmlinux 0x89c214fe ata_bmdma_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x89dadb5e irqd_cfg EXPORT_SYMBOL_GPL vmlinux 0x89e340cf acpi_bus_get_ejd -EXPORT_SYMBOL_GPL vmlinux 0x89fbfdf3 pcie_flr -EXPORT_SYMBOL_GPL vmlinux 0x8a001552 __mnt_drop_write -EXPORT_SYMBOL_GPL vmlinux 0x8a08ac62 bpf_trace_run5 -EXPORT_SYMBOL_GPL vmlinux 0x8a0f661f vfio_group_iommu_domain -EXPORT_SYMBOL_GPL vmlinux 0x8a1aa3ec hrtimer_sleeper_start_expires +EXPORT_SYMBOL_GPL vmlinux 0x89e3de62 da903x_reads +EXPORT_SYMBOL_GPL vmlinux 0x89f05f72 bpf_preload_ops +EXPORT_SYMBOL_GPL vmlinux 0x89f930b3 security_path_rmdir +EXPORT_SYMBOL_GPL vmlinux 0x8a07d960 component_unbind_all +EXPORT_SYMBOL_GPL vmlinux 0x8a0d0876 pm_generic_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0x8a154d5f sysfs_rename_link_ns +EXPORT_SYMBOL_GPL vmlinux 0x8a236884 sched_trace_rq_cpu EXPORT_SYMBOL_GPL vmlinux 0x8a240bff __xas_next -EXPORT_SYMBOL_GPL vmlinux 0x8a2936a9 sfp_add_phy -EXPORT_SYMBOL_GPL vmlinux 0x8a3e7168 cpuidle_get_driver +EXPORT_SYMBOL_GPL vmlinux 0x8a2ed689 pci_sriov_get_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0x8a2f0ee6 __traceiter_neigh_timer_handler +EXPORT_SYMBOL_GPL vmlinux 0x8a31c398 usb_init_urb EXPORT_SYMBOL_GPL vmlinux 0x8a3f84ba linear_range_get_selector_low -EXPORT_SYMBOL_GPL vmlinux 0x8a402f70 __SCK__tp_func_pelt_irq_tp +EXPORT_SYMBOL_GPL vmlinux 0x8a44c53d tty_port_install EXPORT_SYMBOL_GPL vmlinux 0x8a45a555 acpi_unregister_wakeup_handler -EXPORT_SYMBOL_GPL vmlinux 0x8a4dd92e xhci_get_ep_ctx -EXPORT_SYMBOL_GPL vmlinux 0x8a5391e1 regulator_set_drvdata EXPORT_SYMBOL_GPL vmlinux 0x8a62b81b sfp_upstream_stop -EXPORT_SYMBOL_GPL vmlinux 0x8a6cc802 pci_rescan_bus -EXPORT_SYMBOL_GPL vmlinux 0x8a7319d6 usb_hcd_unmap_urb_setup_for_dma -EXPORT_SYMBOL_GPL vmlinux 0x8a77fe61 rtc_initialize_alarm -EXPORT_SYMBOL_GPL vmlinux 0x8a79e009 pinctrl_enable +EXPORT_SYMBOL_GPL vmlinux 0x8a6b35a0 dev_pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x8a6d482b devlink_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8a726349 usb_enable_ltm +EXPORT_SYMBOL_GPL vmlinux 0x8a7a8a99 regmap_get_device EXPORT_SYMBOL_GPL vmlinux 0x8a7cb9c4 platform_thermal_package_rate_control -EXPORT_SYMBOL_GPL vmlinux 0x8a831e62 rio_mport_chk_dev_access EXPORT_SYMBOL_GPL vmlinux 0x8a838ef6 intel_scu_ipc_dev_put EXPORT_SYMBOL_GPL vmlinux 0x8a83fb45 mpi_point_free_parts -EXPORT_SYMBOL_GPL vmlinux 0x8a899156 vp_modern_queue_address -EXPORT_SYMBOL_GPL vmlinux 0x8a9176a4 blk_mq_freeze_queue_wait_timeout -EXPORT_SYMBOL_GPL vmlinux 0x8a92672e iomap_truncate_page -EXPORT_SYMBOL_GPL vmlinux 0x8a9fde48 devfreq_event_disable_edev -EXPORT_SYMBOL_GPL vmlinux 0x8aafbd55 blkcg_root -EXPORT_SYMBOL_GPL vmlinux 0x8ab10b0d cros_ec_get_sensor_count -EXPORT_SYMBOL_GPL vmlinux 0x8ab39bce wm8350_read_auxadc -EXPORT_SYMBOL_GPL vmlinux 0x8ab9686f dma_vunmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x8a8f8155 __inet_lookup_established +EXPORT_SYMBOL_GPL vmlinux 0x8aa8c03e driver_find EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files -EXPORT_SYMBOL_GPL vmlinux 0x8ad4662f rio_del_device -EXPORT_SYMBOL_GPL vmlinux 0x8ad52cea irq_generic_chip_ops +EXPORT_SYMBOL_GPL vmlinux 0x8abb85e0 bdi_dev_name +EXPORT_SYMBOL_GPL vmlinux 0x8abf6cde devlink_port_attrs_set +EXPORT_SYMBOL_GPL vmlinux 0x8ac38808 pci_hp_add +EXPORT_SYMBOL_GPL vmlinux 0x8acbaf1e platform_get_mem_or_io EXPORT_SYMBOL_GPL vmlinux 0x8ad5ceb1 __uv_hub_info_list -EXPORT_SYMBOL_GPL vmlinux 0x8ae15089 led_trigger_unregister_simple -EXPORT_SYMBOL_GPL vmlinux 0x8aefd64f rtnl_link_register -EXPORT_SYMBOL_GPL vmlinux 0x8af8182c devfreq_get_devfreq_by_node -EXPORT_SYMBOL_GPL vmlinux 0x8b095fe2 blk_trace_setup +EXPORT_SYMBOL_GPL vmlinux 0x8aff355b dev_pm_qos_expose_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0x8b11d045 spi_statistics_add_transfer_stats EXPORT_SYMBOL_GPL vmlinux 0x8b149c36 clk_is_match -EXPORT_SYMBOL_GPL vmlinux 0x8b159c1e blk_mq_queue_inflight -EXPORT_SYMBOL_GPL vmlinux 0x8b217ef7 blk_stat_enable_accounting -EXPORT_SYMBOL_GPL vmlinux 0x8b2ef843 show_class_attr_string -EXPORT_SYMBOL_GPL vmlinux 0x8b300f84 uart_handle_dcd_change +EXPORT_SYMBOL_GPL vmlinux 0x8b2931c2 _proc_mkdir +EXPORT_SYMBOL_GPL vmlinux 0x8b447c15 dm_internal_suspend_fast EXPORT_SYMBOL_GPL vmlinux 0x8b47ea1d __SCT__tp_func_extlog_mem_event -EXPORT_SYMBOL_GPL vmlinux 0x8b4c6b2b sdio_writesb -EXPORT_SYMBOL_GPL vmlinux 0x8b563c21 l3mdev_link_scope_lookup -EXPORT_SYMBOL_GPL vmlinux 0x8b5a4c25 cpufreq_disable_fast_switch -EXPORT_SYMBOL_GPL vmlinux 0x8b605d32 dev_pm_genpd_suspend -EXPORT_SYMBOL_GPL vmlinux 0x8b6de664 md_rdev_init -EXPORT_SYMBOL_GPL vmlinux 0x8b6f42ff of_led_get -EXPORT_SYMBOL_GPL vmlinux 0x8b79f176 cgroup_get_e_css +EXPORT_SYMBOL_GPL vmlinux 0x8b6fbb72 phy_configure +EXPORT_SYMBOL_GPL vmlinux 0x8b71c6ca tty_get_pgrp +EXPORT_SYMBOL_GPL vmlinux 0x8b758054 pci_create_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x8b79708d devlink_port_type_eth_set +EXPORT_SYMBOL_GPL vmlinux 0x8b87a6d2 rio_request_outb_dbell EXPORT_SYMBOL_GPL vmlinux 0x8b8cc689 enable_kprobe EXPORT_SYMBOL_GPL vmlinux 0x8b9200fd lookup_address +EXPORT_SYMBOL_GPL vmlinux 0x8b95d88c __tracepoint_devlink_trap_report EXPORT_SYMBOL_GPL vmlinux 0x8b95e6a2 __SCT__tp_func_pelt_irq_tp -EXPORT_SYMBOL_GPL vmlinux 0x8b979788 mmc_send_tuning -EXPORT_SYMBOL_GPL vmlinux 0x8ba27127 fsl_mc_device_group -EXPORT_SYMBOL_GPL vmlinux 0x8ba5d7f1 pin_user_pages_fast -EXPORT_SYMBOL_GPL vmlinux 0x8bb3c9da dev_pm_set_dedicated_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0x8bc1ea99 irq_gc_mask_set_bit -EXPORT_SYMBOL_GPL vmlinux 0x8bc415e6 led_blink_set -EXPORT_SYMBOL_GPL vmlinux 0x8bc8f93f exportfs_encode_inode_fh -EXPORT_SYMBOL_GPL vmlinux 0x8bcf6d5f pci_device_group -EXPORT_SYMBOL_GPL vmlinux 0x8bd01f84 devlink_port_type_ib_set -EXPORT_SYMBOL_GPL vmlinux 0x8bdd40f3 ping_queue_rcv_skb -EXPORT_SYMBOL_GPL vmlinux 0x8bec6999 da9052_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0x8bf5e73b rio_register_mport -EXPORT_SYMBOL_GPL vmlinux 0x8bfa1547 devlink_alloc_ns -EXPORT_SYMBOL_GPL vmlinux 0x8bfe80af hwmon_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x8bffd540 irq_chip_set_vcpu_affinity_parent +EXPORT_SYMBOL_GPL vmlinux 0x8bd0a41b led_trigger_register_simple +EXPORT_SYMBOL_GPL vmlinux 0x8be8ced2 ata_sff_pause +EXPORT_SYMBOL_GPL vmlinux 0x8bf52895 blkg_conf_prep +EXPORT_SYMBOL_GPL vmlinux 0x8bf9708b thp_get_unmapped_area +EXPORT_SYMBOL_GPL vmlinux 0x8c00f746 regulator_get_voltage_sel_regmap EXPORT_SYMBOL_GPL vmlinux 0x8c0215f2 pm_system_wakeup EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue -EXPORT_SYMBOL_GPL vmlinux 0x8c03d934 sata_link_resume -EXPORT_SYMBOL_GPL vmlinux 0x8c08672a crypto_unregister_instance EXPORT_SYMBOL_GPL vmlinux 0x8c0ed103 rcu_check_boost_fail -EXPORT_SYMBOL_GPL vmlinux 0x8c143fa4 dev_pm_opp_get_freq -EXPORT_SYMBOL_GPL vmlinux 0x8c302d37 handle_untracked_irq +EXPORT_SYMBOL_GPL vmlinux 0x8c0fc882 set_selection_kernel +EXPORT_SYMBOL_GPL vmlinux 0x8c312a95 pm_genpd_add_device EXPORT_SYMBOL_GPL vmlinux 0x8c341c48 current_save_fsgs -EXPORT_SYMBOL_GPL vmlinux 0x8c435cd5 bind_interdomain_evtchn_to_irq_lateeoi -EXPORT_SYMBOL_GPL vmlinux 0x8c457d8a bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8c36ec5b pm_clk_init EXPORT_SYMBOL_GPL vmlinux 0x8c484409 gnttab_release_grant_reference -EXPORT_SYMBOL_GPL vmlinux 0x8c4b0833 device_attach -EXPORT_SYMBOL_GPL vmlinux 0x8c4e7193 __SCK__tp_func_extlog_mem_event +EXPORT_SYMBOL_GPL vmlinux 0x8c4f5f2c kern_mount EXPORT_SYMBOL_GPL vmlinux 0x8c4fded2 sgx_virt_einit -EXPORT_SYMBOL_GPL vmlinux 0x8c6bb04d icc_get_name +EXPORT_SYMBOL_GPL vmlinux 0x8c546545 hrtimer_sleeper_start_expires EXPORT_SYMBOL_GPL vmlinux 0x8c743fb6 reset_control_status +EXPORT_SYMBOL_GPL vmlinux 0x8c8490fe devm_hwmon_device_unregister EXPORT_SYMBOL_GPL vmlinux 0x8c89e3b8 usb_phy_roothub_power_off -EXPORT_SYMBOL_GPL vmlinux 0x8c9de751 netdev_walk_all_lower_dev -EXPORT_SYMBOL_GPL vmlinux 0x8cabbfce __regmap_init_i2c -EXPORT_SYMBOL_GPL vmlinux 0x8cbf4fea iommu_detach_group -EXPORT_SYMBOL_GPL vmlinux 0x8cc6ae6c usb_get_maximum_ssp_rate -EXPORT_SYMBOL_GPL vmlinux 0x8cf58342 device_register -EXPORT_SYMBOL_GPL vmlinux 0x8cf5dfac sysfs_remove_files -EXPORT_SYMBOL_GPL vmlinux 0x8d02c845 __fscrypt_prepare_lookup -EXPORT_SYMBOL_GPL vmlinux 0x8d170767 xfrm_local_error -EXPORT_SYMBOL_GPL vmlinux 0x8d172b4d phy_driver_is_genphy -EXPORT_SYMBOL_GPL vmlinux 0x8d1c3e64 i2c_new_client_device +EXPORT_SYMBOL_GPL vmlinux 0x8c9590ac pci_epf_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x8ca0fce9 wm831x_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0x8ca29f40 pm_genpd_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x8cab7c8b gpiochip_request_own_desc +EXPORT_SYMBOL_GPL vmlinux 0x8cc9ae45 devm_clk_bulk_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x8cef597f __devm_intel_scu_ipc_register +EXPORT_SYMBOL_GPL vmlinux 0x8d06000d phy_pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0x8d22732b dm_suspended EXPORT_SYMBOL_GPL vmlinux 0x8d22bb58 iommu_group_alloc -EXPORT_SYMBOL_GPL vmlinux 0x8d2308f9 fwnode_property_read_u64_array -EXPORT_SYMBOL_GPL vmlinux 0x8d25fa02 switchdev_handle_fdb_add_to_device -EXPORT_SYMBOL_GPL vmlinux 0x8d2d1ace paste_selection -EXPORT_SYMBOL_GPL vmlinux 0x8d2f569f da9052_disable_irq_nosync +EXPORT_SYMBOL_GPL vmlinux 0x8d282fbf devm_regulator_unregister_notifier EXPORT_SYMBOL_GPL vmlinux 0x8d3330b6 cpuacct_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x8d33f628 phy_pm_runtime_put_sync -EXPORT_SYMBOL_GPL vmlinux 0x8d3b2eba serdev_device_set_parity -EXPORT_SYMBOL_GPL vmlinux 0x8d5533e3 set_secondary_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x8d648f51 da903x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x8d6b0be7 __regmap_init_spi -EXPORT_SYMBOL_GPL vmlinux 0x8d717dc3 key_type_logon -EXPORT_SYMBOL_GPL vmlinux 0x8d720053 irq_chip_set_type_parent -EXPORT_SYMBOL_GPL vmlinux 0x8d72fd5c serdev_device_write_room +EXPORT_SYMBOL_GPL vmlinux 0x8d3d6edc power_supply_changed +EXPORT_SYMBOL_GPL vmlinux 0x8d624175 register_net_sysctl +EXPORT_SYMBOL_GPL vmlinux 0x8d76b327 xenbus_dev_cancel EXPORT_SYMBOL_GPL vmlinux 0x8d7e3373 hwpoison_filter_dev_major EXPORT_SYMBOL_GPL vmlinux 0x8d88ee64 sbitmap_queue_wake_up -EXPORT_SYMBOL_GPL vmlinux 0x8d8a27c7 devlink_port_params_register -EXPORT_SYMBOL_GPL vmlinux 0x8d978e1b relay_open +EXPORT_SYMBOL_GPL vmlinux 0x8d8ef9df __fscrypt_inode_uses_inline_crypto +EXPORT_SYMBOL_GPL vmlinux 0x8dabb5c2 devres_open_group EXPORT_SYMBOL_GPL vmlinux 0x8dafdded lwtunnel_valid_encap_type_attr -EXPORT_SYMBOL_GPL vmlinux 0x8db774d0 free_fib_info +EXPORT_SYMBOL_GPL vmlinux 0x8db1935e led_sysfs_disable +EXPORT_SYMBOL_GPL vmlinux 0x8dc0e5e0 usb_hcd_resume_root_hub +EXPORT_SYMBOL_GPL vmlinux 0x8dc8fff2 max8997_read_reg EXPORT_SYMBOL_GPL vmlinux 0x8dd218b0 icc_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0x8ddafef1 proc_create_net_single_write +EXPORT_SYMBOL_GPL vmlinux 0x8ddb27fb dma_can_mmap EXPORT_SYMBOL_GPL vmlinux 0x8de6817a acpi_dev_resource_address_space -EXPORT_SYMBOL_GPL vmlinux 0x8df10d6c devlink_port_param_value_changed -EXPORT_SYMBOL_GPL vmlinux 0x8e0a43ef usb_hcd_end_port_resume -EXPORT_SYMBOL_GPL vmlinux 0x8e237edf __traceiter_devlink_hwerr -EXPORT_SYMBOL_GPL vmlinux 0x8e2974b3 clk_hw_is_prepared -EXPORT_SYMBOL_GPL vmlinux 0x8e31cae8 cpufreq_dbs_governor_limits -EXPORT_SYMBOL_GPL vmlinux 0x8e37f5e5 shash_free_singlespawn_instance -EXPORT_SYMBOL_GPL vmlinux 0x8e38dab0 xenbus_dev_fatal +EXPORT_SYMBOL_GPL vmlinux 0x8deade9f regmap_add_irq_chip_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x8dee44c0 pci_aer_clear_nonfatal_status +EXPORT_SYMBOL_GPL vmlinux 0x8df3a1b5 dev_pm_opp_is_turbo +EXPORT_SYMBOL_GPL vmlinux 0x8e001e9a devlink_health_reporter_create +EXPORT_SYMBOL_GPL vmlinux 0x8e0262f7 relay_close +EXPORT_SYMBOL_GPL vmlinux 0x8e0b82b8 __tracepoint_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0x8e188655 pm_runtime_barrier +EXPORT_SYMBOL_GPL vmlinux 0x8e248864 dev_pm_opp_add +EXPORT_SYMBOL_GPL vmlinux 0x8e320f06 icc_nodes_remove EXPORT_SYMBOL_GPL vmlinux 0x8e3d911b arch_phys_wc_index +EXPORT_SYMBOL_GPL vmlinux 0x8e3dac81 sdio_retune_hold_now EXPORT_SYMBOL_GPL vmlinux 0x8e44823a sfp_select_interface +EXPORT_SYMBOL_GPL vmlinux 0x8e46900c spi_get_device_id EXPORT_SYMBOL_GPL vmlinux 0x8e4eb451 bpf_sk_storage_diag_free -EXPORT_SYMBOL_GPL vmlinux 0x8e5119d8 ata_sff_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x8e5a42ae cpufreq_dbs_governor_stop -EXPORT_SYMBOL_GPL vmlinux 0x8e60b016 dev_pm_qos_add_ancestor_request +EXPORT_SYMBOL_GPL vmlinux 0x8e5f0fd7 of_pm_clk_add_clks EXPORT_SYMBOL_GPL vmlinux 0x8e6b1a9e net_selftest_get_count -EXPORT_SYMBOL_GPL vmlinux 0x8e6c5c9f pci_set_pcie_reset_state -EXPORT_SYMBOL_GPL vmlinux 0x8e6c7e56 devm_mbox_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x8e6d53eb xfrm_state_afinfo_get_rcu EXPORT_SYMBOL_GPL vmlinux 0x8e6fa8b5 apei_exec_pre_map_gars -EXPORT_SYMBOL_GPL vmlinux 0x8e70c256 ata_host_alloc_pinfo -EXPORT_SYMBOL_GPL vmlinux 0x8e75ab55 ip6_sk_dst_lookup_flow -EXPORT_SYMBOL_GPL vmlinux 0x8e7b7731 cpufreq_frequency_table_get_index -EXPORT_SYMBOL_GPL vmlinux 0x8e7c58d0 fuse_dev_alloc_install +EXPORT_SYMBOL_GPL vmlinux 0x8e786792 serial8250_do_set_ldisc +EXPORT_SYMBOL_GPL vmlinux 0x8e8a21e0 iomap_invalidatepage EXPORT_SYMBOL_GPL vmlinux 0x8e92f7c4 static_key_slow_inc -EXPORT_SYMBOL_GPL vmlinux 0x8ea5ef0a ip_build_and_send_pkt +EXPORT_SYMBOL_GPL vmlinux 0x8e998237 ata_bmdma_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x8ea36989 edac_device_del_device +EXPORT_SYMBOL_GPL vmlinux 0x8eabf5e2 scsi_ioctl_block_when_processing_errors EXPORT_SYMBOL_GPL vmlinux 0x8ead800c user_free_preparse -EXPORT_SYMBOL_GPL vmlinux 0x8ebe45dd sk_msg_return_zero -EXPORT_SYMBOL_GPL vmlinux 0x8ec49829 xhci_check_bandwidth -EXPORT_SYMBOL_GPL vmlinux 0x8ec5877e device_property_read_string -EXPORT_SYMBOL_GPL vmlinux 0x8ec6c200 crypto_larval_kill -EXPORT_SYMBOL_GPL vmlinux 0x8ed535d3 iptunnel_metadata_reply -EXPORT_SYMBOL_GPL vmlinux 0x8ee09d03 yield_to +EXPORT_SYMBOL_GPL vmlinux 0x8eaeada5 __devm_regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0x8ebd8a7f ip6_push_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x8ecb8405 dw_pcie_own_conf_map_bus EXPORT_SYMBOL_GPL vmlinux 0x8eed0fa2 sbitmap_get_shallow EXPORT_SYMBOL_GPL vmlinux 0x8eee3399 dax_read_unlock EXPORT_SYMBOL_GPL vmlinux 0x8effb505 phy_gbit_features -EXPORT_SYMBOL_GPL vmlinux 0x8f06c1fe efivar_entry_delete +EXPORT_SYMBOL_GPL vmlinux 0x8f024144 __crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0x8f03a16a blk_mq_quiesce_queue +EXPORT_SYMBOL_GPL vmlinux 0x8f06d592 blk_mq_unquiesce_queue EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp -EXPORT_SYMBOL_GPL vmlinux 0x8f1d8c7e __SCK__tp_func_br_fdb_external_learn_add -EXPORT_SYMBOL_GPL vmlinux 0x8f28f9ff tps6586x_reads +EXPORT_SYMBOL_GPL vmlinux 0x8f18a5b4 uart_try_toggle_sysrq +EXPORT_SYMBOL_GPL vmlinux 0x8f248dd8 __traceiter_tcp_send_reset +EXPORT_SYMBOL_GPL vmlinux 0x8f296204 tcp_enter_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0x8f2b8da3 l3mdev_fib_table_rcu EXPORT_SYMBOL_GPL vmlinux 0x8f2eb429 kvm_arch_para_hints -EXPORT_SYMBOL_GPL vmlinux 0x8f35a40b serial8250_rpm_put -EXPORT_SYMBOL_GPL vmlinux 0x8f3c6b04 devm_gpiod_get_array -EXPORT_SYMBOL_GPL vmlinux 0x8f3db3d3 devres_add -EXPORT_SYMBOL_GPL vmlinux 0x8f3eef38 fixed_phy_register_with_gpiod +EXPORT_SYMBOL_GPL vmlinux 0x8f3d9477 __tracepoint_neigh_update_done EXPORT_SYMBOL_GPL vmlinux 0x8f3ef401 srcu_batches_completed -EXPORT_SYMBOL_GPL vmlinux 0x8f415091 crypto_get_default_null_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x8f4f70b6 tty_release_struct -EXPORT_SYMBOL_GPL vmlinux 0x8f568a3f dst_blackhole_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x8f60b07a efivar_entry_find -EXPORT_SYMBOL_GPL vmlinux 0x8f68792b mddev_unlock +EXPORT_SYMBOL_GPL vmlinux 0x8f5507aa sk_msg_is_readable +EXPORT_SYMBOL_GPL vmlinux 0x8f6951d6 ata_sff_irq_on EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x8f70e95c vfs_write EXPORT_SYMBOL_GPL vmlinux 0x8f786bee fs_umode_to_dtype -EXPORT_SYMBOL_GPL vmlinux 0x8f7aa35d devm_regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0x8f7b4130 pm_clk_resume +EXPORT_SYMBOL_GPL vmlinux 0x8f7bbdce usb_get_dev EXPORT_SYMBOL_GPL vmlinux 0x8f7bd0a6 btree_init_mempool -EXPORT_SYMBOL_GPL vmlinux 0x8f7d8e45 sysfs_create_group -EXPORT_SYMBOL_GPL vmlinux 0x8f8bd118 iommu_unmap -EXPORT_SYMBOL_GPL vmlinux 0x8f970026 mmu_notifier_range_update_to_read_only -EXPORT_SYMBOL_GPL vmlinux 0x8fa73f06 ping_unhash +EXPORT_SYMBOL_GPL vmlinux 0x8f864adb dw_pcie_ep_init +EXPORT_SYMBOL_GPL vmlinux 0x8fa04606 acpi_unbind_one +EXPORT_SYMBOL_GPL vmlinux 0x8fa5a2a0 xfrm_put_translator EXPORT_SYMBOL_GPL vmlinux 0x8fa9d9e8 __SCT__tp_func_xdp_exception EXPORT_SYMBOL_GPL vmlinux 0x8faa800d acpi_cpc_valid -EXPORT_SYMBOL_GPL vmlinux 0x8fadaa0a regulator_map_voltage_pickable_linear_range -EXPORT_SYMBOL_GPL vmlinux 0x8fae7136 skb_to_sgvec_nomark EXPORT_SYMBOL_GPL vmlinux 0x8fc12788 software_node_unregister_node_group -EXPORT_SYMBOL_GPL vmlinux 0x8fc91561 regulator_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0x8fc9aee0 clk_hw_get_parent_by_index -EXPORT_SYMBOL_GPL vmlinux 0x8fda2e72 shash_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x8fe22c12 tty_port_register_device -EXPORT_SYMBOL_GPL vmlinux 0x8ff0e070 get_kernel_pages +EXPORT_SYMBOL_GPL vmlinux 0x8fcb27ec sched_trace_rq_nr_running +EXPORT_SYMBOL_GPL vmlinux 0x8fcb2c5a clk_hw_register_composite +EXPORT_SYMBOL_GPL vmlinux 0x8fe4cf2b trace_event_raw_init +EXPORT_SYMBOL_GPL vmlinux 0x8ff10d66 rtnl_put_cacheinfo +EXPORT_SYMBOL_GPL vmlinux 0x8ff1bb87 mctrl_gpio_init_noauto +EXPORT_SYMBOL_GPL vmlinux 0x8ff1d573 lwtunnel_state_alloc EXPORT_SYMBOL_GPL vmlinux 0x8ff60436 mpi_ec_add_points +EXPORT_SYMBOL_GPL vmlinux 0x8ffa39c5 devm_of_phy_provider_unregister EXPORT_SYMBOL_GPL vmlinux 0x8ffb1df7 acpi_get_psd_map -EXPORT_SYMBOL_GPL vmlinux 0x8ffc76ad devfreq_event_set_event -EXPORT_SYMBOL_GPL vmlinux 0x90117d3c device_node_to_regmap -EXPORT_SYMBOL_GPL vmlinux 0x901bb903 pci_scan_child_bus -EXPORT_SYMBOL_GPL vmlinux 0x901d4e89 dmi_kobj +EXPORT_SYMBOL_GPL vmlinux 0x8ffb9fcc phy_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0x8ffd16e7 sysfs_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0x900dbeae of_led_get +EXPORT_SYMBOL_GPL vmlinux 0x90109f53 vmf_insert_pfn_pud_prot +EXPORT_SYMBOL_GPL vmlinux 0x901718ff rio_bus_type EXPORT_SYMBOL_GPL vmlinux 0x9024f443 mds_user_clear +EXPORT_SYMBOL_GPL vmlinux 0x902f5722 dax_inode +EXPORT_SYMBOL_GPL vmlinux 0x9031dc56 usb_find_interface EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move -EXPORT_SYMBOL_GPL vmlinux 0x904f64c2 trace_event_buffer_lock_reserve -EXPORT_SYMBOL_GPL vmlinux 0x9058feb5 msi_desc_to_pci_sysdata +EXPORT_SYMBOL_GPL vmlinux 0x903c686b ohci_setup +EXPORT_SYMBOL_GPL vmlinux 0x904c140e perf_aux_output_begin EXPORT_SYMBOL_GPL vmlinux 0x90688bcd devlink_info_driver_name_put -EXPORT_SYMBOL_GPL vmlinux 0x9068919f sysfs_add_file_to_group -EXPORT_SYMBOL_GPL vmlinux 0x906a083b ipv6_dup_options -EXPORT_SYMBOL_GPL vmlinux 0x906b84c9 fsnotify_destroy_mark -EXPORT_SYMBOL_GPL vmlinux 0x9077d92c device_initialize -EXPORT_SYMBOL_GPL vmlinux 0x907b9775 cpufreq_generic_attr -EXPORT_SYMBOL_GPL vmlinux 0x90831dfe dm_internal_resume_fast +EXPORT_SYMBOL_GPL vmlinux 0x906d25e7 fsnotify_destroy_mark +EXPORT_SYMBOL_GPL vmlinux 0x90722836 vchan_tx_desc_free EXPORT_SYMBOL_GPL vmlinux 0x9084b044 clear_page_erms -EXPORT_SYMBOL_GPL vmlinux 0x90895fb0 __fat_fs_error -EXPORT_SYMBOL_GPL vmlinux 0x9096e995 regulator_is_enabled_regmap -EXPORT_SYMBOL_GPL vmlinux 0x909ad89a usb_get_descriptor +EXPORT_SYMBOL_GPL vmlinux 0x908e9048 usb_hub_clear_tt_buffer +EXPORT_SYMBOL_GPL vmlinux 0x90959661 pm_runtime_force_suspend +EXPORT_SYMBOL_GPL vmlinux 0x9095be74 nf_queue_nf_hook_drop EXPORT_SYMBOL_GPL vmlinux 0x90a9d8cc hv_is_hyperv_initialized EXPORT_SYMBOL_GPL vmlinux 0x90ad66b1 software_node_unregister_nodes -EXPORT_SYMBOL_GPL vmlinux 0x90bf3a2b __devm_reset_control_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0x90c061c2 acpi_kobj -EXPORT_SYMBOL_GPL vmlinux 0x90c1dc21 pcc_mbox_free_channel +EXPORT_SYMBOL_GPL vmlinux 0x90b1c8a2 devm_bitmap_zalloc +EXPORT_SYMBOL_GPL vmlinux 0x90b82c87 devfreq_event_is_enabled EXPORT_SYMBOL_GPL vmlinux 0x90c8498c apei_exec_write_register +EXPORT_SYMBOL_GPL vmlinux 0x90d97a32 _copy_from_iter_flushcache +EXPORT_SYMBOL_GPL vmlinux 0x90db200e tpm_is_tpm2 EXPORT_SYMBOL_GPL vmlinux 0x90de0452 platform_thermal_package_notify EXPORT_SYMBOL_GPL vmlinux 0x90de72a9 register_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0x90e417aa nd_cmd_in_size +EXPORT_SYMBOL_GPL vmlinux 0x90f6979b led_trigger_write EXPORT_SYMBOL_GPL vmlinux 0x9107d224 __SCT__tp_func_arm_event -EXPORT_SYMBOL_GPL vmlinux 0x9109d67f gen10g_config_aneg EXPORT_SYMBOL_GPL vmlinux 0x910bdf6b trace_seq_vprintf -EXPORT_SYMBOL_GPL vmlinux 0x9115cb74 cpufreq_enable_fast_switch -EXPORT_SYMBOL_GPL vmlinux 0x911de32c dma_buf_mmap -EXPORT_SYMBOL_GPL vmlinux 0x9123d432 ata_pci_bmdma_prepare_host -EXPORT_SYMBOL_GPL vmlinux 0x912f02e5 devm_clk_bulk_get_optional -EXPORT_SYMBOL_GPL vmlinux 0x9140df14 device_reprobe -EXPORT_SYMBOL_GPL vmlinux 0x914741ab crypto_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x9153dd94 security_path_rmdir -EXPORT_SYMBOL_GPL vmlinux 0x91602ffc devm_regulator_register +EXPORT_SYMBOL_GPL vmlinux 0x91493732 scsi_eh_ready_devs +EXPORT_SYMBOL_GPL vmlinux 0x9158c110 dev_pm_genpd_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x916dc4fa devlink_param_register +EXPORT_SYMBOL_GPL vmlinux 0x917059f7 nl_table +EXPORT_SYMBOL_GPL vmlinux 0x91729b5d md_bitmap_copy_from_slot +EXPORT_SYMBOL_GPL vmlinux 0x91736d3d usb_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x91781bd9 sk_attach_filter EXPORT_SYMBOL_GPL vmlinux 0x917d953b __SCT__tp_func_wbc_writepage -EXPORT_SYMBOL_GPL vmlinux 0x91853ca1 cpuidle_get_cpu_driver -EXPORT_SYMBOL_GPL vmlinux 0x91907edc crypto_dequeue_request EXPORT_SYMBOL_GPL vmlinux 0x9194e18f xenbus_mkdir EXPORT_SYMBOL_GPL vmlinux 0x91955a9f start_poll_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0x919fb29f ata_sff_dma_pause -EXPORT_SYMBOL_GPL vmlinux 0x91a2d87c ata_bmdma_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x91aed265 lwtunnel_encap_del_ops EXPORT_SYMBOL_GPL vmlinux 0x91b774a1 mpi_scanval EXPORT_SYMBOL_GPL vmlinux 0x91b9a4ba e820__mapped_any -EXPORT_SYMBOL_GPL vmlinux 0x91bb965e alloc_dax +EXPORT_SYMBOL_GPL vmlinux 0x91c1cdd0 __cpuhp_state_add_instance +EXPORT_SYMBOL_GPL vmlinux 0x91c22741 rio_request_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x91c373e2 pci_enable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0x91c57c82 put_pid EXPORT_SYMBOL_GPL vmlinux 0x91c6e5b0 pcap_to_irq EXPORT_SYMBOL_GPL vmlinux 0x91c9313c acpi_gpio_get_io_resource -EXPORT_SYMBOL_GPL vmlinux 0x91d57d03 __SCK__tp_func_sched_update_nr_running_tp +EXPORT_SYMBOL_GPL vmlinux 0x91e92435 i2c_adapter_type EXPORT_SYMBOL_GPL vmlinux 0x91ea8726 asn1_encode_boolean -EXPORT_SYMBOL_GPL vmlinux 0x91ed88c1 nvmem_cell_read_variable_le_u64 -EXPORT_SYMBOL_GPL vmlinux 0x91f3f3cb sched_set_normal -EXPORT_SYMBOL_GPL vmlinux 0x9209cccd pm_stay_awake -EXPORT_SYMBOL_GPL vmlinux 0x920bbbf6 mmc_app_cmd +EXPORT_SYMBOL_GPL vmlinux 0x91ee5773 dev_attr_ncq_prio_enable +EXPORT_SYMBOL_GPL vmlinux 0x91f60a19 gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0x920a2c60 pm_generic_suspend_late EXPORT_SYMBOL_GPL vmlinux 0x920cc389 visitorl EXPORT_SYMBOL_GPL vmlinux 0x92141343 kvm_async_pf_task_wake -EXPORT_SYMBOL_GPL vmlinux 0x9216d96a device_add_software_node -EXPORT_SYMBOL_GPL vmlinux 0x921cff6f ata_dev_set_feature -EXPORT_SYMBOL_GPL vmlinux 0x9226bd72 gpiochip_get_desc EXPORT_SYMBOL_GPL vmlinux 0x92295424 clk_register_gate -EXPORT_SYMBOL_GPL vmlinux 0x922c68bc __traceiter_napi_poll -EXPORT_SYMBOL_GPL vmlinux 0x9236a5b1 dax_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0x92391d5d blk_mark_disk_dead +EXPORT_SYMBOL_GPL vmlinux 0x9238763d bio_trim EXPORT_SYMBOL_GPL vmlinux 0x9241b358 __static_key_slow_dec_deferred -EXPORT_SYMBOL_GPL vmlinux 0x92444605 to_software_node EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object -EXPORT_SYMBOL_GPL vmlinux 0x9255c004 power_supply_register -EXPORT_SYMBOL_GPL vmlinux 0x9255f6cc l3mdev_fib_table_by_index -EXPORT_SYMBOL_GPL vmlinux 0x926b3955 bsg_setup_queue -EXPORT_SYMBOL_GPL vmlinux 0x926bd7a0 power_supply_register_no_ws -EXPORT_SYMBOL_GPL vmlinux 0x9277ebc0 bd_link_disk_holder -EXPORT_SYMBOL_GPL vmlinux 0x927a43c8 sbitmap_queue_show -EXPORT_SYMBOL_GPL vmlinux 0x92a3dfbf gpiod_to_irq -EXPORT_SYMBOL_GPL vmlinux 0x92a9cf0c br_ip6_fragment -EXPORT_SYMBOL_GPL vmlinux 0x92afaed7 sysfs_remove_groups -EXPORT_SYMBOL_GPL vmlinux 0x92b17f87 phy_check_downshift +EXPORT_SYMBOL_GPL vmlinux 0x925b3938 nfnl_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0x9264cd1a fuse_send_init +EXPORT_SYMBOL_GPL vmlinux 0x9298919f dm_bio_get_target_bio_nr +EXPORT_SYMBOL_GPL vmlinux 0x92a793b0 max8997_write_reg +EXPORT_SYMBOL_GPL vmlinux 0x92a9f8b0 devm_gpio_request_one +EXPORT_SYMBOL_GPL vmlinux 0x92b41d30 iommu_attach_device EXPORT_SYMBOL_GPL vmlinux 0x92b8c78b hyperv_pcpu_output_arg -EXPORT_SYMBOL_GPL vmlinux 0x92c16447 sfp_register_socket -EXPORT_SYMBOL_GPL vmlinux 0x92d1afca usb_control_msg_send +EXPORT_SYMBOL_GPL vmlinux 0x92bd2984 validate_xmit_xfrm +EXPORT_SYMBOL_GPL vmlinux 0x92cb9e28 __tracepoint_neigh_timer_handler EXPORT_SYMBOL_GPL vmlinux 0x92d31cfb fixed_phy_add EXPORT_SYMBOL_GPL vmlinux 0x92db8f68 do_trace_rcu_torture_read -EXPORT_SYMBOL_GPL vmlinux 0x92e22e08 gpiod_get_optional -EXPORT_SYMBOL_GPL vmlinux 0x92e8e62d dma_free_noncontiguous EXPORT_SYMBOL_GPL vmlinux 0x92e8e9ab fsverity_enqueue_verify_work -EXPORT_SYMBOL_GPL vmlinux 0x92fa1391 __regmap_init_mmio_clk -EXPORT_SYMBOL_GPL vmlinux 0x93242ed6 ip_local_out +EXPORT_SYMBOL_GPL vmlinux 0x92fc2023 fscrypt_fname_siphash +EXPORT_SYMBOL_GPL vmlinux 0x92ff55d1 fuse_get_unique +EXPORT_SYMBOL_GPL vmlinux 0x93163d9e ata_link_abort +EXPORT_SYMBOL_GPL vmlinux 0x9320b86e md_submit_discard_bio EXPORT_SYMBOL_GPL vmlinux 0x93255b2b ring_buffer_lock_reserve EXPORT_SYMBOL_GPL vmlinux 0x932c8d7a linear_range_get_value_array -EXPORT_SYMBOL_GPL vmlinux 0x932f84b3 devlink_params_publish +EXPORT_SYMBOL_GPL vmlinux 0x9339927b devlink_param_unpublish EXPORT_SYMBOL_GPL vmlinux 0x933f75e0 usb_unlink_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x9357b9fd __SCK__tp_func_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0x93642058 devm_intel_scu_ipc_dev_get +EXPORT_SYMBOL_GPL vmlinux 0x938101bb crypto_ahash_finup EXPORT_SYMBOL_GPL vmlinux 0x9384cd49 ata_tf_from_fis -EXPORT_SYMBOL_GPL vmlinux 0x939d47bb iommu_register_device_fault_handler -EXPORT_SYMBOL_GPL vmlinux 0x93a2357f __SCK__tp_func_wbc_writepage -EXPORT_SYMBOL_GPL vmlinux 0x93a8d178 netdev_walk_all_lower_dev_rcu -EXPORT_SYMBOL_GPL vmlinux 0x93a918c7 irq_chip_unmask_parent +EXPORT_SYMBOL_GPL vmlinux 0x93854ab6 dev_pm_qos_hide_flags +EXPORT_SYMBOL_GPL vmlinux 0x93999242 crypto_grab_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x93a87884 dax_copy_to_iter +EXPORT_SYMBOL_GPL vmlinux 0x93af56f5 sdio_retune_release EXPORT_SYMBOL_GPL vmlinux 0x93c7edeb usb_find_common_endpoints EXPORT_SYMBOL_GPL vmlinux 0x93d1d424 gnttab_free_grant_references -EXPORT_SYMBOL_GPL vmlinux 0x93d21efb mmu_interval_notifier_remove EXPORT_SYMBOL_GPL vmlinux 0x93dc2586 pgprot_writethrough +EXPORT_SYMBOL_GPL vmlinux 0x93e4bb44 dma_buf_vunmap +EXPORT_SYMBOL_GPL vmlinux 0x93edd33b da9052_adc_manual_read EXPORT_SYMBOL_GPL vmlinux 0x93edef07 devlink_health_report -EXPORT_SYMBOL_GPL vmlinux 0x93f10561 iommu_device_register EXPORT_SYMBOL_GPL vmlinux 0x93f55fe0 power_supply_batinfo_ocv2cap -EXPORT_SYMBOL_GPL vmlinux 0x94041010 regmap_raw_write -EXPORT_SYMBOL_GPL vmlinux 0x940b62f6 metadata_dst_free_percpu -EXPORT_SYMBOL_GPL vmlinux 0x9410ccfc debugfs_create_u8 +EXPORT_SYMBOL_GPL vmlinux 0x940aff8d md_kick_rdev_from_array +EXPORT_SYMBOL_GPL vmlinux 0x940f0074 usb_block_urb +EXPORT_SYMBOL_GPL vmlinux 0x9413333e tty_kopen_shared EXPORT_SYMBOL_GPL vmlinux 0x941a3d4f clk_hw_unregister_fixed_rate EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put EXPORT_SYMBOL_GPL vmlinux 0x9424058f arch_haltpoll_disable EXPORT_SYMBOL_GPL vmlinux 0x9425bb34 nvmem_dev_name -EXPORT_SYMBOL_GPL vmlinux 0x942982a8 __SCK__tp_func_sched_util_est_cfs_tp -EXPORT_SYMBOL_GPL vmlinux 0x942da6e1 proc_create_net_single_write -EXPORT_SYMBOL_GPL vmlinux 0x942ff0ae ethnl_cable_test_fault_length EXPORT_SYMBOL_GPL vmlinux 0x9430b198 trace_dump_stack EXPORT_SYMBOL_GPL vmlinux 0x9436e405 memory_group_register_dynamic +EXPORT_SYMBOL_GPL vmlinux 0x943739af irq_domain_create_simple EXPORT_SYMBOL_GPL vmlinux 0x943fc708 xen_setup_shutdown_event -EXPORT_SYMBOL_GPL vmlinux 0x945e6528 nf_checksum -EXPORT_SYMBOL_GPL vmlinux 0x94661271 irq_setup_alt_chip +EXPORT_SYMBOL_GPL vmlinux 0x946bc94a __traceiter_add_device_to_group EXPORT_SYMBOL_GPL vmlinux 0x946dd559 sha224_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x947565c1 rio_mport_get_physefb +EXPORT_SYMBOL_GPL vmlinux 0x946eba71 usb_autopm_get_interface +EXPORT_SYMBOL_GPL vmlinux 0x9470cf7a usb_add_hcd EXPORT_SYMBOL_GPL vmlinux 0x947b40c6 cpu_smt_possible -EXPORT_SYMBOL_GPL vmlinux 0x949200d9 component_del +EXPORT_SYMBOL_GPL vmlinux 0x9485e1a5 devlink_port_attrs_pci_vf_set +EXPORT_SYMBOL_GPL vmlinux 0x9487c4f7 cpufreq_dbs_governor_start +EXPORT_SYMBOL_GPL vmlinux 0x9490e713 __traceiter_devlink_hwmsg +EXPORT_SYMBOL_GPL vmlinux 0x949563d6 rt_mutex_unlock EXPORT_SYMBOL_GPL vmlinux 0x949b5176 devlink_region_snapshot_create EXPORT_SYMBOL_GPL vmlinux 0x949f7342 __alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0x94a6f82e get_device -EXPORT_SYMBOL_GPL vmlinux 0x94a9ab8f pwm_get -EXPORT_SYMBOL_GPL vmlinux 0x94ae90ff spi_mem_get_name -EXPORT_SYMBOL_GPL vmlinux 0x94b6b8b4 sdev_evt_send -EXPORT_SYMBOL_GPL vmlinux 0x94cab782 sata_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x94cdf784 __SCK__tp_func_block_bio_complete -EXPORT_SYMBOL_GPL vmlinux 0x94e2d57b blk_mq_start_stopped_hw_queue -EXPORT_SYMBOL_GPL vmlinux 0x94e49f25 xhci_add_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x94a12b2e __SCK__tp_func_block_rq_insert +EXPORT_SYMBOL_GPL vmlinux 0x94acbc35 dw_pcie_setup_rc +EXPORT_SYMBOL_GPL vmlinux 0x94b9764d virtqueue_detach_unused_buf +EXPORT_SYMBOL_GPL vmlinux 0x94d51cb2 edac_mc_handle_error +EXPORT_SYMBOL_GPL vmlinux 0x94ead328 ping_seq_next EXPORT_SYMBOL_GPL vmlinux 0x94ef4d05 cpci_hp_stop EXPORT_SYMBOL_GPL vmlinux 0x9504df26 irq_wake_thread +EXPORT_SYMBOL_GPL vmlinux 0x9508549f __traceiter_pelt_thermal_tp +EXPORT_SYMBOL_GPL vmlinux 0x950c0b8a tpm_pm_resume +EXPORT_SYMBOL_GPL vmlinux 0x9518fd10 genphy_c45_an_disable_aneg EXPORT_SYMBOL_GPL vmlinux 0x951a2773 crypto_has_alg -EXPORT_SYMBOL_GPL vmlinux 0x951c9143 fsverity_prepare_setattr +EXPORT_SYMBOL_GPL vmlinux 0x951e4fdb ack_all_badblocks EXPORT_SYMBOL_GPL vmlinux 0x952664c5 do_exit +EXPORT_SYMBOL_GPL vmlinux 0x952a5767 aead_init_geniv EXPORT_SYMBOL_GPL vmlinux 0x953e1b9e ktime_get_real_seconds -EXPORT_SYMBOL_GPL vmlinux 0x9541cb41 set_task_ioprio -EXPORT_SYMBOL_GPL vmlinux 0x9554366c acomp_request_alloc +EXPORT_SYMBOL_GPL vmlinux 0x954e290b rio_dma_prep_slave_sg +EXPORT_SYMBOL_GPL vmlinux 0x954faca8 bpf_trace_run4 EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn -EXPORT_SYMBOL_GPL vmlinux 0x9565ca3a devm_pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0x955e61cf blk_steal_bios +EXPORT_SYMBOL_GPL vmlinux 0x955ed29a devlink_sb_unregister EXPORT_SYMBOL_GPL vmlinux 0x956ac400 ring_buffer_dropped_events_cpu -EXPORT_SYMBOL_GPL vmlinux 0x9572e1e0 pci_epc_clear_bar -EXPORT_SYMBOL_GPL vmlinux 0x9578489c clk_hw_get_num_parents -EXPORT_SYMBOL_GPL vmlinux 0x9578a721 iomap_ioend_try_merge +EXPORT_SYMBOL_GPL vmlinux 0x95726986 pci_slots_kset +EXPORT_SYMBOL_GPL vmlinux 0x95761afb gpiod_get_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x95796aff pci_epc_get_msix +EXPORT_SYMBOL_GPL vmlinux 0x957d320f __xenmem_reservation_va_mapping_reset +EXPORT_SYMBOL_GPL vmlinux 0x958423d1 crypto_ahash_digest EXPORT_SYMBOL_GPL vmlinux 0x95843030 mpi_ec_init +EXPORT_SYMBOL_GPL vmlinux 0x958c6214 crypto_grab_aead EXPORT_SYMBOL_GPL vmlinux 0x958df3ac zs_free -EXPORT_SYMBOL_GPL vmlinux 0x95904619 xfrm_audit_state_replay EXPORT_SYMBOL_GPL vmlinux 0x9593ef31 register_ftrace_export -EXPORT_SYMBOL_GPL vmlinux 0x95a576c8 vfio_group_get_external_user +EXPORT_SYMBOL_GPL vmlinux 0x959567da dw_pcie_read_dbi +EXPORT_SYMBOL_GPL vmlinux 0x95a02b29 fsverity_prepare_setattr +EXPORT_SYMBOL_GPL vmlinux 0x95ad7038 inet_csk_reqsk_queue_hash_add +EXPORT_SYMBOL_GPL vmlinux 0x95b1ca8e devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0x95b20710 security_path_chown EXPORT_SYMBOL_GPL vmlinux 0x95bc9078 btree_free -EXPORT_SYMBOL_GPL vmlinux 0x95c2d325 pci_reset_bus -EXPORT_SYMBOL_GPL vmlinux 0x95d12968 devres_release EXPORT_SYMBOL_GPL vmlinux 0x95d95a56 __srcu_read_lock -EXPORT_SYMBOL_GPL vmlinux 0x95dc8f93 serdev_device_close -EXPORT_SYMBOL_GPL vmlinux 0x95e2ecec vp_modern_get_status -EXPORT_SYMBOL_GPL vmlinux 0x95e94871 scsi_autopm_get_device +EXPORT_SYMBOL_GPL vmlinux 0x95db439c ncsi_start_dev +EXPORT_SYMBOL_GPL vmlinux 0x95de112d ata_link_offline +EXPORT_SYMBOL_GPL vmlinux 0x95e20966 iommu_aux_get_pasid EXPORT_SYMBOL_GPL vmlinux 0x95ef1ccc dmi_memdev_size -EXPORT_SYMBOL_GPL vmlinux 0x95fa4bed regmap_get_raw_read_max +EXPORT_SYMBOL_GPL vmlinux 0x95f48215 pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x95fb0b99 regulator_disable EXPORT_SYMBOL_GPL vmlinux 0x961286e0 ring_buffer_read_events_cpu EXPORT_SYMBOL_GPL vmlinux 0x9615b005 hv_map_ioapic_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x961e6436 inet6_lookup +EXPORT_SYMBOL_GPL vmlinux 0x961ee4b4 sched_trace_cfs_rq_path EXPORT_SYMBOL_GPL vmlinux 0x9621d738 alarm_start_relative EXPORT_SYMBOL_GPL vmlinux 0x962523b1 kobj_sysfs_ops -EXPORT_SYMBOL_GPL vmlinux 0x96257d3b dm_table_set_type -EXPORT_SYMBOL_GPL vmlinux 0x962b00b7 serial8250_update_uartclk EXPORT_SYMBOL_GPL vmlinux 0x962c8ae1 usb_kill_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x964c6215 virtqueue_is_broken +EXPORT_SYMBOL_GPL vmlinux 0x962e765f serial8250_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0x962fdcbf follow_pte +EXPORT_SYMBOL_GPL vmlinux 0x9635ed21 __clk_hw_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x9638dfa5 device_reprobe +EXPORT_SYMBOL_GPL vmlinux 0x96420235 __traceiter_block_split +EXPORT_SYMBOL_GPL vmlinux 0x964b73d1 relay_reset EXPORT_SYMBOL_GPL vmlinux 0x96554810 register_keyboard_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9667b84a acpi_subsys_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0x966a4912 gpiochip_relres_irq -EXPORT_SYMBOL_GPL vmlinux 0x96825217 pci_generic_config_read -EXPORT_SYMBOL_GPL vmlinux 0x96888444 pci_destroy_slot +EXPORT_SYMBOL_GPL vmlinux 0x9655b236 irq_domain_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0x96642982 bpf_prog_create +EXPORT_SYMBOL_GPL vmlinux 0x9672316c trace_event_reg EXPORT_SYMBOL_GPL vmlinux 0x9688b217 gnttab_batch_copy EXPORT_SYMBOL_GPL vmlinux 0x968f9a23 efivar_entry_iter_begin -EXPORT_SYMBOL_GPL vmlinux 0x96ac71c1 bpf_offload_dev_netdev_register -EXPORT_SYMBOL_GPL vmlinux 0x96ad897e platform_find_device_by_driver -EXPORT_SYMBOL_GPL vmlinux 0x96cc1522 mmu_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0x96eb642a genphy_c45_read_pma -EXPORT_SYMBOL_GPL vmlinux 0x96fc902e edac_pci_create_generic_ctl -EXPORT_SYMBOL_GPL vmlinux 0x96ffe9a2 of_icc_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0x969cf1ac component_bind_all +EXPORT_SYMBOL_GPL vmlinux 0x96b142f8 fat_fill_super +EXPORT_SYMBOL_GPL vmlinux 0x96b68f24 peernet2id_alloc +EXPORT_SYMBOL_GPL vmlinux 0x96defaa0 dev_attr_link_power_management_policy +EXPORT_SYMBOL_GPL vmlinux 0x96f31a7f xen_xenbus_fops +EXPORT_SYMBOL_GPL vmlinux 0x96f8d200 irq_domain_add_legacy EXPORT_SYMBOL_GPL vmlinux 0x9714e0bb ktime_get_raw EXPORT_SYMBOL_GPL vmlinux 0x9719bcfd pmc_atom_read -EXPORT_SYMBOL_GPL vmlinux 0x971ecb02 __blkg_prfill_u64 -EXPORT_SYMBOL_GPL vmlinux 0x9721f9db filemap_range_needs_writeback -EXPORT_SYMBOL_GPL vmlinux 0x9738a971 sched_trace_rq_nr_running -EXPORT_SYMBOL_GPL vmlinux 0x973d0f39 serdev_controller_alloc +EXPORT_SYMBOL_GPL vmlinux 0x971bdd25 devm_free_percpu +EXPORT_SYMBOL_GPL vmlinux 0x972b37fe sdio_release_irq +EXPORT_SYMBOL_GPL vmlinux 0x972ebcc7 ata_scsi_slave_config +EXPORT_SYMBOL_GPL vmlinux 0x97352230 nf_ip_route +EXPORT_SYMBOL_GPL vmlinux 0x97496484 balloon_page_list_enqueue +EXPORT_SYMBOL_GPL vmlinux 0x974af576 sk_msg_clone EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same -EXPORT_SYMBOL_GPL vmlinux 0x975ef4b1 iomap_migrate_page EXPORT_SYMBOL_GPL vmlinux 0x97623558 xas_create_range +EXPORT_SYMBOL_GPL vmlinux 0x976822cc scsi_target_unblock +EXPORT_SYMBOL_GPL vmlinux 0x9768dc6e anon_inode_getfile +EXPORT_SYMBOL_GPL vmlinux 0x9770a490 sock_diag_register_inet_compat EXPORT_SYMBOL_GPL vmlinux 0x977be5c7 klist_iter_init_node -EXPORT_SYMBOL_GPL vmlinux 0x9797a179 sched_set_fifo_low -EXPORT_SYMBOL_GPL vmlinux 0x979aa8a0 strp_init -EXPORT_SYMBOL_GPL vmlinux 0x97a7e73d crypto_alloc_sync_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x97c3107e generic_online_page -EXPORT_SYMBOL_GPL vmlinux 0x97c35c53 crypto_unregister_akcipher -EXPORT_SYMBOL_GPL vmlinux 0x97c6e615 eventfd_fget +EXPORT_SYMBOL_GPL vmlinux 0x977c11b5 inet_csk_listen_start +EXPORT_SYMBOL_GPL vmlinux 0x97a289fc __SCK__tp_func_napi_poll EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent -EXPORT_SYMBOL_GPL vmlinux 0x97eb5760 mbox_flush -EXPORT_SYMBOL_GPL vmlinux 0x97f1457c pci_set_cacheline_size -EXPORT_SYMBOL_GPL vmlinux 0x98075d6a __irq_alloc_domain_generic_chips -EXPORT_SYMBOL_GPL vmlinux 0x9813669d pci_msi_prepare -EXPORT_SYMBOL_GPL vmlinux 0x981cb041 iomap_is_partially_uptodate -EXPORT_SYMBOL_GPL vmlinux 0x982dc301 edac_pci_alloc_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0x97ee7319 __traceiter_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0x97fe36a0 ethnl_cable_test_free +EXPORT_SYMBOL_GPL vmlinux 0x982a5b57 netlink_strict_get_check +EXPORT_SYMBOL_GPL vmlinux 0x982d7710 pm_generic_restore_early +EXPORT_SYMBOL_GPL vmlinux 0x9832572c crypto_register_ahash EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick -EXPORT_SYMBOL_GPL vmlinux 0x98374cf1 usb_debug_root -EXPORT_SYMBOL_GPL vmlinux 0x983d6681 inode_dax -EXPORT_SYMBOL_GPL vmlinux 0x9840881d badblocks_check -EXPORT_SYMBOL_GPL vmlinux 0x984a44d2 ata_port_wait_eh -EXPORT_SYMBOL_GPL vmlinux 0x984c168b l3mdev_ifindex_lookup_by_table_id -EXPORT_SYMBOL_GPL vmlinux 0x984cc335 fsverity_file_open -EXPORT_SYMBOL_GPL vmlinux 0x984d2579 rio_register_scan -EXPORT_SYMBOL_GPL vmlinux 0x984d8a4c vchan_init +EXPORT_SYMBOL_GPL vmlinux 0x98391f4a devm_acpi_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0x984d230f cpufreq_disable_fast_switch EXPORT_SYMBOL_GPL vmlinux 0x98503a63 mpi_alloc EXPORT_SYMBOL_GPL vmlinux 0x985453e1 lease_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9854d287 ip6_append_data -EXPORT_SYMBOL_GPL vmlinux 0x98551af1 tty_prepare_flip_string -EXPORT_SYMBOL_GPL vmlinux 0x9859bb49 vfio_register_group_dev -EXPORT_SYMBOL_GPL vmlinux 0x98615482 wakeup_source_register +EXPORT_SYMBOL_GPL vmlinux 0x985a5504 inet_csk_route_req +EXPORT_SYMBOL_GPL vmlinux 0x9863a87b bpf_prog_select_runtime +EXPORT_SYMBOL_GPL vmlinux 0x98676d56 crypto_unregister_ahash +EXPORT_SYMBOL_GPL vmlinux 0x986c0316 skb_copy_ubufs EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9889f344 pinctrl_select_default_state +EXPORT_SYMBOL_GPL vmlinux 0x98836999 serdev_device_set_baudrate EXPORT_SYMBOL_GPL vmlinux 0x988a1a00 sn_region_size +EXPORT_SYMBOL_GPL vmlinux 0x988fb5d6 usb_reset_endpoint EXPORT_SYMBOL_GPL vmlinux 0x989074ff kmsg_dump_reason_str -EXPORT_SYMBOL_GPL vmlinux 0x98a7a1fb __traceiter_pelt_cfs_tp -EXPORT_SYMBOL_GPL vmlinux 0x98a8753a inet_csk_listen_start -EXPORT_SYMBOL_GPL vmlinux 0x98a8bd0b agp_remove_bridge +EXPORT_SYMBOL_GPL vmlinux 0x98955992 vfs_kern_mount +EXPORT_SYMBOL_GPL vmlinux 0x98a0c37d mptcp_pm_get_subflows_max EXPORT_SYMBOL_GPL vmlinux 0x98b142fa blk_fill_rwbs -EXPORT_SYMBOL_GPL vmlinux 0x98bbd50f crypto_unregister_ahash -EXPORT_SYMBOL_GPL vmlinux 0x98bf75db reset_control_get_count -EXPORT_SYMBOL_GPL vmlinux 0x98c4df55 usb_amd_pt_check_port -EXPORT_SYMBOL_GPL vmlinux 0x98cd3d83 __fscrypt_encrypt_symlink -EXPORT_SYMBOL_GPL vmlinux 0x98ed0427 ata_sas_port_init +EXPORT_SYMBOL_GPL vmlinux 0x98ba1c8b acpi_create_platform_device +EXPORT_SYMBOL_GPL vmlinux 0x98c0ef0c lp8788_read_byte +EXPORT_SYMBOL_GPL vmlinux 0x98c95992 acpi_pm_wakeup_event EXPORT_SYMBOL_GPL vmlinux 0x98ee62b2 ring_buffer_record_disable_cpu EXPORT_SYMBOL_GPL vmlinux 0x98f4d306 hyperv_flush_guest_mapping EXPORT_SYMBOL_GPL vmlinux 0x98fa1e20 dm_get_reserved_rq_based_ios -EXPORT_SYMBOL_GPL vmlinux 0x98fc4f09 vfio_pci_core_register_device -EXPORT_SYMBOL_GPL vmlinux 0x99026858 usb_intf_get_dma_device -EXPORT_SYMBOL_GPL vmlinux 0x990bd512 pm_genpd_remove_device -EXPORT_SYMBOL_GPL vmlinux 0x9913372d blk_ksm_is_superset -EXPORT_SYMBOL_GPL vmlinux 0x99165fbc __vfs_setxattr_noperm +EXPORT_SYMBOL_GPL vmlinux 0x98fd9430 led_classdev_register_ext +EXPORT_SYMBOL_GPL vmlinux 0x9904df2e xdp_build_skb_from_frame +EXPORT_SYMBOL_GPL vmlinux 0x991502f0 pci_sriov_configure_simple EXPORT_SYMBOL_GPL vmlinux 0x9930f8a3 uv_bios_change_memprotect -EXPORT_SYMBOL_GPL vmlinux 0x99322e40 nvdimm_kobj +EXPORT_SYMBOL_GPL vmlinux 0x99356018 devm_device_remove_groups EXPORT_SYMBOL_GPL vmlinux 0x99430ba2 acpi_get_phys_id -EXPORT_SYMBOL_GPL vmlinux 0x994b2ac4 rio_inb_pwrite_handler -EXPORT_SYMBOL_GPL vmlinux 0x9950b35a bpf_offload_dev_match +EXPORT_SYMBOL_GPL vmlinux 0x9949db61 ata_dev_next EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on EXPORT_SYMBOL_GPL vmlinux 0x9968aacb __audit_log_nfcfg -EXPORT_SYMBOL_GPL vmlinux 0x996c530b pci_epf_alloc_space -EXPORT_SYMBOL_GPL vmlinux 0x9980fde9 serdev_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0x9975052b ata_sff_data_xfer32 +EXPORT_SYMBOL_GPL vmlinux 0x99801f2d debugfs_create_x16 +EXPORT_SYMBOL_GPL vmlinux 0x9988ccb5 pci_epc_mem_init EXPORT_SYMBOL_GPL vmlinux 0x998d79d6 x509_decode_time -EXPORT_SYMBOL_GPL vmlinux 0x999b33b6 validate_xmit_xfrm -EXPORT_SYMBOL_GPL vmlinux 0x99b931bd crypto_alloc_acomp_node -EXPORT_SYMBOL_GPL vmlinux 0x99c633a3 blk_req_needs_zone_write_lock -EXPORT_SYMBOL_GPL vmlinux 0x99d3c8fb scsi_queue_work +EXPORT_SYMBOL_GPL vmlinux 0x99974d46 crypto_alloc_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x99c99fb0 __traceiter_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0x99d52331 irq_chip_mask_ack_parent EXPORT_SYMBOL_GPL vmlinux 0x99dd730c page_reporting_unregister -EXPORT_SYMBOL_GPL vmlinux 0x99e6b1f1 regulator_disable +EXPORT_SYMBOL_GPL vmlinux 0x99de965f regmap_mmio_detach_clk +EXPORT_SYMBOL_GPL vmlinux 0x99e15f19 em_pd_get +EXPORT_SYMBOL_GPL vmlinux 0x99e28ff9 dev_pm_put_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0x99ef58ae __SCK__tp_func_detach_device_from_domain EXPORT_SYMBOL_GPL vmlinux 0x99f018c4 nvmem_cell_read -EXPORT_SYMBOL_GPL vmlinux 0x99f1b6a9 clk_hw_register_composite EXPORT_SYMBOL_GPL vmlinux 0x99f2d00a sysfs_emit_at -EXPORT_SYMBOL_GPL vmlinux 0x9a03bbb1 serial8250_em485_stop_tx -EXPORT_SYMBOL_GPL vmlinux 0x9a053361 ncsi_start_dev -EXPORT_SYMBOL_GPL vmlinux 0x9a063106 call_switchdev_blocking_notifiers -EXPORT_SYMBOL_GPL vmlinux 0x9a0d2b2f regulator_map_voltage_iterate -EXPORT_SYMBOL_GPL vmlinux 0x9a0d2dc8 dev_attr_em_message -EXPORT_SYMBOL_GPL vmlinux 0x9a0dbb6a crypto_skcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x99f7212b device_get_dma_attr EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name +EXPORT_SYMBOL_GPL vmlinux 0x9a170a5a locks_release_private EXPORT_SYMBOL_GPL vmlinux 0x9a23ea6b alarm_expires_remaining -EXPORT_SYMBOL_GPL vmlinux 0x9a2ce442 class_for_each_device -EXPORT_SYMBOL_GPL vmlinux 0x9a3f49f1 pm_clk_suspend -EXPORT_SYMBOL_GPL vmlinux 0x9a5845a1 iomap_zero_range +EXPORT_SYMBOL_GPL vmlinux 0x9a2be545 __sock_recv_wifi_status +EXPORT_SYMBOL_GPL vmlinux 0x9a2be821 subsys_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9a3e40ea loop_backing_file +EXPORT_SYMBOL_GPL vmlinux 0x9a497851 wbc_account_cgroup_owner +EXPORT_SYMBOL_GPL vmlinux 0x9a56301c bus_for_each_drv EXPORT_SYMBOL_GPL vmlinux 0x9a58dd2d trace_print_bitmask_seq EXPORT_SYMBOL_GPL vmlinux 0x9a5dce5c rhashtable_walk_start_check -EXPORT_SYMBOL_GPL vmlinux 0x9a8c672a crypto_shash_setkey -EXPORT_SYMBOL_GPL vmlinux 0x9a99f8b2 mmu_notifier_get_locked -EXPORT_SYMBOL_GPL vmlinux 0x9a9e0c89 crypto_stats_aead_encrypt -EXPORT_SYMBOL_GPL vmlinux 0x9a9e5a21 devlink_dpipe_table_counter_enabled -EXPORT_SYMBOL_GPL vmlinux 0x9aa1b030 crypto_comp_compress +EXPORT_SYMBOL_GPL vmlinux 0x9a652c5b vfio_register_iommu_driver +EXPORT_SYMBOL_GPL vmlinux 0x9a6e0654 pci_max_pasids +EXPORT_SYMBOL_GPL vmlinux 0x9a76ed07 bpfilter_ops +EXPORT_SYMBOL_GPL vmlinux 0x9a97d38b devm_hwspin_lock_unregister EXPORT_SYMBOL_GPL vmlinux 0x9aa71c2a efi_query_variable_store EXPORT_SYMBOL_GPL vmlinux 0x9aaac699 dev_pm_opp_cpumask_remove_table -EXPORT_SYMBOL_GPL vmlinux 0x9aaf9123 nf_queue_entry_get_refs -EXPORT_SYMBOL_GPL vmlinux 0x9ab8f171 blk_bio_list_merge -EXPORT_SYMBOL_GPL vmlinux 0x9ac012ce bdev_disk_changed +EXPORT_SYMBOL_GPL vmlinux 0x9aab4c5d netdev_walk_all_upper_dev_rcu EXPORT_SYMBOL_GPL vmlinux 0x9ac11b74 suspend_set_ops -EXPORT_SYMBOL_GPL vmlinux 0x9accc02a crypto_alloc_kpp -EXPORT_SYMBOL_GPL vmlinux 0x9add0cf4 tun_get_tx_ring +EXPORT_SYMBOL_GPL vmlinux 0x9accbeed dev_pm_opp_remove_table EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty +EXPORT_SYMBOL_GPL vmlinux 0x9af142dd ata_link_online EXPORT_SYMBOL_GPL vmlinux 0x9af49514 icc_bulk_set_bw -EXPORT_SYMBOL_GPL vmlinux 0x9b063a07 device_bind_driver -EXPORT_SYMBOL_GPL vmlinux 0x9b070fa1 spi_statistics_add_transfer_stats -EXPORT_SYMBOL_GPL vmlinux 0x9b079574 sk_detach_filter -EXPORT_SYMBOL_GPL vmlinux 0x9b23f253 clean_acked_data_disable -EXPORT_SYMBOL_GPL vmlinux 0x9b2e2a87 irq_chip_set_affinity_parent -EXPORT_SYMBOL_GPL vmlinux 0x9b408124 devlink_port_unregister -EXPORT_SYMBOL_GPL vmlinux 0x9b41e621 dma_async_device_channel_unregister -EXPORT_SYMBOL_GPL vmlinux 0x9b449c19 acpi_gpiochip_free_interrupts -EXPORT_SYMBOL_GPL vmlinux 0x9b45f533 skb_zerocopy_headlen -EXPORT_SYMBOL_GPL vmlinux 0x9b4b18b8 sk_msg_is_readable -EXPORT_SYMBOL_GPL vmlinux 0x9b52d147 dma_buf_put +EXPORT_SYMBOL_GPL vmlinux 0x9b032e3f input_ff_destroy +EXPORT_SYMBOL_GPL vmlinux 0x9b052c8b dev_pm_opp_put_prop_name +EXPORT_SYMBOL_GPL vmlinux 0x9b173c8b dm_send_uevents +EXPORT_SYMBOL_GPL vmlinux 0x9b234858 usb_control_msg_recv +EXPORT_SYMBOL_GPL vmlinux 0x9b24561c nvmem_cell_read_u64 +EXPORT_SYMBOL_GPL vmlinux 0x9b42f286 uart_console_device +EXPORT_SYMBOL_GPL vmlinux 0x9b456b29 dev_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x9b485dc6 tps6586x_write +EXPORT_SYMBOL_GPL vmlinux 0x9b4df6d9 sysfs_create_file_ns EXPORT_SYMBOL_GPL vmlinux 0x9b555c8c pm_suspend_default_s2idle -EXPORT_SYMBOL_GPL vmlinux 0x9b5cd6e4 xfrm_audit_state_add +EXPORT_SYMBOL_GPL vmlinux 0x9b654d32 mddev_resume EXPORT_SYMBOL_GPL vmlinux 0x9b698c42 ioasid_set_data -EXPORT_SYMBOL_GPL vmlinux 0x9b6be3c2 component_master_add_with_match EXPORT_SYMBOL_GPL vmlinux 0x9b6ec967 ring_buffer_size -EXPORT_SYMBOL_GPL vmlinux 0x9b787ca3 handle_level_irq -EXPORT_SYMBOL_GPL vmlinux 0x9b78e895 devm_regulator_irq_helper EXPORT_SYMBOL_GPL vmlinux 0x9b896724 devlink_param_value_str_fill EXPORT_SYMBOL_GPL vmlinux 0x9b9071cb get_old_itimerspec32 EXPORT_SYMBOL_GPL vmlinux 0x9b92d16e pinctrl_gpio_set_config -EXPORT_SYMBOL_GPL vmlinux 0x9b98868a posix_acl_access_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0x9b956cdd ata_sff_softreset EXPORT_SYMBOL_GPL vmlinux 0x9b9f3648 pcibios_scan_specific_bus EXPORT_SYMBOL_GPL vmlinux 0x9ba2bb2b gpio_request_array EXPORT_SYMBOL_GPL vmlinux 0x9bad141d hv_hypercall_pg -EXPORT_SYMBOL_GPL vmlinux 0x9bb619f4 rio_release_inb_mbox -EXPORT_SYMBOL_GPL vmlinux 0x9bc881db tcp_slow_start +EXPORT_SYMBOL_GPL vmlinux 0x9bc73647 clk_bulk_get_optional EXPORT_SYMBOL_GPL vmlinux 0x9bcf9f7d housekeeping_enabled -EXPORT_SYMBOL_GPL vmlinux 0x9bddc4c9 pm_genpd_remove +EXPORT_SYMBOL_GPL vmlinux 0x9bdb8b95 pm_runtime_get_if_active +EXPORT_SYMBOL_GPL vmlinux 0x9be18126 __SCK__tp_func_tcp_bad_csum EXPORT_SYMBOL_GPL vmlinux 0x9be30d27 mhp_get_pluggable_range EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui -EXPORT_SYMBOL_GPL vmlinux 0x9bf1837e sk_msg_clone -EXPORT_SYMBOL_GPL vmlinux 0x9bfcbecd pm_clk_create -EXPORT_SYMBOL_GPL vmlinux 0x9c22800b devm_led_classdev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x9c399487 pinctrl_pm_select_idle_state -EXPORT_SYMBOL_GPL vmlinux 0x9c41ce3a sock_diag_destroy -EXPORT_SYMBOL_GPL vmlinux 0x9c4255f9 pci_platform_power_transition -EXPORT_SYMBOL_GPL vmlinux 0x9c6246dd sdio_memcpy_toio -EXPORT_SYMBOL_GPL vmlinux 0x9c678352 devm_usb_put_phy -EXPORT_SYMBOL_GPL vmlinux 0x9c6ae1a6 powercap_register_control_type +EXPORT_SYMBOL_GPL vmlinux 0x9bf293c0 ata_sas_port_suspend +EXPORT_SYMBOL_GPL vmlinux 0x9bf2ac07 adp5520_write +EXPORT_SYMBOL_GPL vmlinux 0x9bfaeefc usb_driver_claim_interface +EXPORT_SYMBOL_GPL vmlinux 0x9bfb3be8 da9052_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x9c0c4cea clk_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x9c110107 scsi_dh_attached_handler_name +EXPORT_SYMBOL_GPL vmlinux 0x9c170cb8 ip6_route_output_flags_noref +EXPORT_SYMBOL_GPL vmlinux 0x9c2217c9 __hwspin_unlock +EXPORT_SYMBOL_GPL vmlinux 0x9c25b957 memremap_pages +EXPORT_SYMBOL_GPL vmlinux 0x9c3019c1 rio_set_port_lockout +EXPORT_SYMBOL_GPL vmlinux 0x9c43a6c9 ata_pci_device_do_suspend +EXPORT_SYMBOL_GPL vmlinux 0x9c62d7a5 __SCK__tp_func_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0x9c645295 pci_dev_trylock +EXPORT_SYMBOL_GPL vmlinux 0x9c6f97ad led_trigger_read EXPORT_SYMBOL_GPL vmlinux 0x9c6febfc add_uevent_var -EXPORT_SYMBOL_GPL vmlinux 0x9c7efc72 skb_consume_udp EXPORT_SYMBOL_GPL vmlinux 0x9c803020 usb_phy_roothub_power_on -EXPORT_SYMBOL_GPL vmlinux 0x9c8f7e5c fsverity_ioctl_read_metadata +EXPORT_SYMBOL_GPL vmlinux 0x9c9955f7 iomap_bmap +EXPORT_SYMBOL_GPL vmlinux 0x9c9a78d9 generic_fsdax_supported EXPORT_SYMBOL_GPL vmlinux 0x9ca480cc clk_gate_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0x9ca4cf68 kill_pid_usb_asyncio -EXPORT_SYMBOL_GPL vmlinux 0x9cad70a0 inet6_csk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x9cadbc8a ping_err -EXPORT_SYMBOL_GPL vmlinux 0x9caedac3 __fscrypt_inode_uses_inline_crypto +EXPORT_SYMBOL_GPL vmlinux 0x9ca4b2fe cpci_hp_register_controller EXPORT_SYMBOL_GPL vmlinux 0x9cc4f70a register_pm_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9cc934ef pci_max_pasids -EXPORT_SYMBOL_GPL vmlinux 0x9cd0d022 __tracepoint_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0x9ccf3bd5 usb_anchor_urb +EXPORT_SYMBOL_GPL vmlinux 0x9cd2b1f6 __rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9cd3a215 add_page_wait_queue EXPORT_SYMBOL_GPL vmlinux 0x9cd7551a rhashtable_walk_stop EXPORT_SYMBOL_GPL vmlinux 0x9cdeca56 register_kretprobes -EXPORT_SYMBOL_GPL vmlinux 0x9cdff707 crypto_stats_akcipher_decrypt -EXPORT_SYMBOL_GPL vmlinux 0x9ce3a004 virtqueue_get_buf_ctx +EXPORT_SYMBOL_GPL vmlinux 0x9ce09a68 gnttab_dma_alloc_pages +EXPORT_SYMBOL_GPL vmlinux 0x9ce168e8 da903x_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9ce912b3 wm8350_gpio_config EXPORT_SYMBOL_GPL vmlinux 0x9cf37c44 __iowrite32_copy EXPORT_SYMBOL_GPL vmlinux 0x9d09e8ae ring_buffer_event_data EXPORT_SYMBOL_GPL vmlinux 0x9d14205c cr4_read_shadow -EXPORT_SYMBOL_GPL vmlinux 0x9d206b6c tty_kopen_shared -EXPORT_SYMBOL_GPL vmlinux 0x9d27ca06 bpf_prog_put -EXPORT_SYMBOL_GPL vmlinux 0x9d39a15e ehci_handshake -EXPORT_SYMBOL_GPL vmlinux 0x9d3c8003 nvdimm_bus_unregister EXPORT_SYMBOL_GPL vmlinux 0x9d4894c8 x2apic_mode -EXPORT_SYMBOL_GPL vmlinux 0x9d4c3452 fwnode_get_named_gpiod -EXPORT_SYMBOL_GPL vmlinux 0x9d50b891 vfio_pci_core_finish_enable -EXPORT_SYMBOL_GPL vmlinux 0x9d5ca8ee blk_execute_rq_nowait -EXPORT_SYMBOL_GPL vmlinux 0x9d784b79 perf_event_addr_filters_sync -EXPORT_SYMBOL_GPL vmlinux 0x9d7b9cee d_walk -EXPORT_SYMBOL_GPL vmlinux 0x9d8adef3 skb_tstamp_tx -EXPORT_SYMBOL_GPL vmlinux 0x9da08a8c __ata_change_queue_depth -EXPORT_SYMBOL_GPL vmlinux 0x9da87fc3 da9052_enable_irq -EXPORT_SYMBOL_GPL vmlinux 0x9da97fc6 pci_write_msi_msg -EXPORT_SYMBOL_GPL vmlinux 0x9db289c2 __SCK__tp_func_napi_poll -EXPORT_SYMBOL_GPL vmlinux 0x9dc3c9b0 tcp_reno_ssthresh -EXPORT_SYMBOL_GPL vmlinux 0x9deced58 sata_pmp_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x9dfaffb9 usb_role_switch_find_by_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x9dfbe335 do_unbind_con_driver +EXPORT_SYMBOL_GPL vmlinux 0x9d71373f device_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x9d7faa87 crypto_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x9d878e20 regcache_mark_dirty +EXPORT_SYMBOL_GPL vmlinux 0x9d88821f crypto_alloc_acomp_node +EXPORT_SYMBOL_GPL vmlinux 0x9db40e93 xenbus_dev_changed +EXPORT_SYMBOL_GPL vmlinux 0x9db93c00 tps6586x_get_version +EXPORT_SYMBOL_GPL vmlinux 0x9ddc36e9 addrconf_add_linklocal +EXPORT_SYMBOL_GPL vmlinux 0x9dfed9ef bsg_job_get EXPORT_SYMBOL_GPL vmlinux 0x9e005e6f cppc_get_perf_caps -EXPORT_SYMBOL_GPL vmlinux 0x9e1e6d0e usb_ep0_reinit -EXPORT_SYMBOL_GPL vmlinux 0x9e2b435c raw_unhash_sk -EXPORT_SYMBOL_GPL vmlinux 0x9e391dd5 __SCK__tp_func_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x9e011c96 metadata_dst_free +EXPORT_SYMBOL_GPL vmlinux 0x9e03ec19 tcp_unregister_ulp +EXPORT_SYMBOL_GPL vmlinux 0x9e164ece __pneigh_lookup +EXPORT_SYMBOL_GPL vmlinux 0x9e183135 sysfs_create_group +EXPORT_SYMBOL_GPL vmlinux 0x9e31009b edac_device_add_device +EXPORT_SYMBOL_GPL vmlinux 0x9e410713 usb_hcd_end_port_resume EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field EXPORT_SYMBOL_GPL vmlinux 0x9e523753 tracepoint_srcu -EXPORT_SYMBOL_GPL vmlinux 0x9e53e58e xdp_return_frame_bulk -EXPORT_SYMBOL_GPL vmlinux 0x9e5b3c8d tracepoint_probe_unregister -EXPORT_SYMBOL_GPL vmlinux 0x9e5b7a09 do_xdp_generic -EXPORT_SYMBOL_GPL vmlinux 0x9e679818 devm_phy_put -EXPORT_SYMBOL_GPL vmlinux 0x9e8444f5 hvc_remove -EXPORT_SYMBOL_GPL vmlinux 0x9e98e6d3 dm_accept_partial_bio -EXPORT_SYMBOL_GPL vmlinux 0x9ec8cae3 ehci_reset +EXPORT_SYMBOL_GPL vmlinux 0x9e68567d icc_get_name +EXPORT_SYMBOL_GPL vmlinux 0x9e6f98fc blk_req_zone_write_trylock +EXPORT_SYMBOL_GPL vmlinux 0x9e7f5ced iommu_device_sysfs_add +EXPORT_SYMBOL_GPL vmlinux 0x9eb81f48 platform_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9eb8a6e2 find_get_pid +EXPORT_SYMBOL_GPL vmlinux 0x9ecd336a sdio_memcpy_toio EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9ed701cb get_cpu_device EXPORT_SYMBOL_GPL vmlinux 0x9eebdde7 mpi_point_new -EXPORT_SYMBOL_GPL vmlinux 0x9ef21fce ata_sas_tport_add -EXPORT_SYMBOL_GPL vmlinux 0x9f01ee87 vfio_register_iommu_driver -EXPORT_SYMBOL_GPL vmlinux 0x9f0863be devm_clk_unregister -EXPORT_SYMBOL_GPL vmlinux 0x9f17c252 blk_mq_flush_busy_ctxs +EXPORT_SYMBOL_GPL vmlinux 0x9eec2055 acpi_set_modalias +EXPORT_SYMBOL_GPL vmlinux 0x9efb78a7 class_compat_create_link +EXPORT_SYMBOL_GPL vmlinux 0x9f0120c6 l3mdev_table_lookup_unregister EXPORT_SYMBOL_GPL vmlinux 0x9f223fe4 __tracepoint_xdp_exception -EXPORT_SYMBOL_GPL vmlinux 0x9f2b0f52 efivars_register -EXPORT_SYMBOL_GPL vmlinux 0x9f3fd7e4 nfnl_ct_hook -EXPORT_SYMBOL_GPL vmlinux 0x9f438043 devlink_resource_occ_get_register +EXPORT_SYMBOL_GPL vmlinux 0x9f29c261 netlink_remove_tap +EXPORT_SYMBOL_GPL vmlinux 0x9f3cfa80 serial8250_do_startup EXPORT_SYMBOL_GPL vmlinux 0x9f4c4aa0 spi_delay_to_ns -EXPORT_SYMBOL_GPL vmlinux 0x9f556b1d device_release_driver -EXPORT_SYMBOL_GPL vmlinux 0x9f58e161 irq_create_fwspec_mapping -EXPORT_SYMBOL_GPL vmlinux 0x9f7b7c63 fscrypt_ioctl_get_nonce -EXPORT_SYMBOL_GPL vmlinux 0x9f8cad9a sysfs_create_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x9f8d5aec regulator_set_mode -EXPORT_SYMBOL_GPL vmlinux 0x9f90e6d4 devm_request_pci_bus_resources -EXPORT_SYMBOL_GPL vmlinux 0x9f988c43 inet6_hash -EXPORT_SYMBOL_GPL vmlinux 0x9fa19945 crypto_unregister_acomp -EXPORT_SYMBOL_GPL vmlinux 0x9fb26676 usb_driver_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0x9f58177a __traceiter_xdp_bulk_tx +EXPORT_SYMBOL_GPL vmlinux 0x9f791b46 irq_set_chained_handler_and_data +EXPORT_SYMBOL_GPL vmlinux 0x9f88bd43 uhci_check_and_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0x9f8c230b pinctrl_register_and_init +EXPORT_SYMBOL_GPL vmlinux 0x9f95614b od_register_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0x9fb33e0c dev_pm_domain_attach_by_name +EXPORT_SYMBOL_GPL vmlinux 0x9fbc7af1 devm_regulator_register_supply_alias EXPORT_SYMBOL_GPL vmlinux 0x9fbfebab erst_write -EXPORT_SYMBOL_GPL vmlinux 0x9fc988f0 regulator_suspend_enable +EXPORT_SYMBOL_GPL vmlinux 0x9fc002f0 __traceiter_sched_util_est_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x9fcbae06 get_current_tty EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x9fd7bebe udp_abort +EXPORT_SYMBOL_GPL vmlinux 0x9fd3e5ee __SCK__tp_func_pelt_irq_tp +EXPORT_SYMBOL_GPL vmlinux 0x9fd55bb2 acpi_dma_configure_id +EXPORT_SYMBOL_GPL vmlinux 0x9fd5d570 dev_fill_forward_path EXPORT_SYMBOL_GPL vmlinux 0x9fe899b7 get_cpu_idle_time EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm -EXPORT_SYMBOL_GPL vmlinux 0x9febd5d7 crypto_stats_rng_generate -EXPORT_SYMBOL_GPL vmlinux 0xa003f234 pm_clk_destroy +EXPORT_SYMBOL_GPL vmlinux 0x9ff4c488 ata_sff_postreset +EXPORT_SYMBOL_GPL vmlinux 0x9fffa8df regulator_is_enabled EXPORT_SYMBOL_GPL vmlinux 0xa00624b5 srcu_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xa0157e06 devm_extcon_dev_free -EXPORT_SYMBOL_GPL vmlinux 0xa017c451 tty_buffer_lock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xa014e7c7 mbox_send_message EXPORT_SYMBOL_GPL vmlinux 0xa01a8d9b nd_cmd_bus_desc -EXPORT_SYMBOL_GPL vmlinux 0xa01caa26 iommu_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa02b4275 ata_sas_port_resume -EXPORT_SYMBOL_GPL vmlinux 0xa035f0df scsi_host_complete_all_commands -EXPORT_SYMBOL_GPL vmlinux 0xa04958cc crypto_register_acomps -EXPORT_SYMBOL_GPL vmlinux 0xa04c4631 devm_hwspin_lock_request +EXPORT_SYMBOL_GPL vmlinux 0xa0362b5f strp_unpause +EXPORT_SYMBOL_GPL vmlinux 0xa03ce148 acct_bioset_exit +EXPORT_SYMBOL_GPL vmlinux 0xa04a22b5 irq_domain_reset_irq_data +EXPORT_SYMBOL_GPL vmlinux 0xa04ec70b __nvdimm_create EXPORT_SYMBOL_GPL vmlinux 0xa04f945a cpus_read_lock -EXPORT_SYMBOL_GPL vmlinux 0xa0551ebb usb_get_urb +EXPORT_SYMBOL_GPL vmlinux 0xa051f6d2 devm_clk_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xa061fe10 ata_bmdma_stop +EXPORT_SYMBOL_GPL vmlinux 0xa0687234 gnttab_pages_set_private +EXPORT_SYMBOL_GPL vmlinux 0xa0717306 thermal_zone_device_enable EXPORT_SYMBOL_GPL vmlinux 0xa080c5e5 smp_call_function_single_async -EXPORT_SYMBOL_GPL vmlinux 0xa089e6c1 hwmon_device_register -EXPORT_SYMBOL_GPL vmlinux 0xa08a4935 fb_deferred_io_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xa0887a18 skb_gso_validate_network_len EXPORT_SYMBOL_GPL vmlinux 0xa090478a arch_has_restricted_virtio_memory_access -EXPORT_SYMBOL_GPL vmlinux 0xa0a54eae inet_csk_addr2sockaddr -EXPORT_SYMBOL_GPL vmlinux 0xa0b35ebe ping_recvmsg -EXPORT_SYMBOL_GPL vmlinux 0xa0b3e15b umd_cleanup_helper +EXPORT_SYMBOL_GPL vmlinux 0xa0956540 fib6_check_nexthop +EXPORT_SYMBOL_GPL vmlinux 0xa0a7dc09 iommu_fwspec_free +EXPORT_SYMBOL_GPL vmlinux 0xa0aeca70 mbox_free_channel +EXPORT_SYMBOL_GPL vmlinux 0xa0b96bd7 phy_led_triggers_register EXPORT_SYMBOL_GPL vmlinux 0xa0c0f1d7 __SCT__tp_func_neigh_timer_handler -EXPORT_SYMBOL_GPL vmlinux 0xa0c5e8ce tpm_put_ops -EXPORT_SYMBOL_GPL vmlinux 0xa0cbb810 dev_queue_xmit_nit +EXPORT_SYMBOL_GPL vmlinux 0xa0c69632 ipv4_redirect +EXPORT_SYMBOL_GPL vmlinux 0xa0c753f9 call_switchdev_blocking_notifiers EXPORT_SYMBOL_GPL vmlinux 0xa0d3456d nr_swap_pages -EXPORT_SYMBOL_GPL vmlinux 0xa0d7f758 xfrm_unregister_translator EXPORT_SYMBOL_GPL vmlinux 0xa0d81b76 __SCT__tp_func_devlink_hwmsg -EXPORT_SYMBOL_GPL vmlinux 0xa0da48e8 __traceiter_devlink_hwmsg -EXPORT_SYMBOL_GPL vmlinux 0xa0e3062a debugfs_file_get -EXPORT_SYMBOL_GPL vmlinux 0xa0e522b1 split_page EXPORT_SYMBOL_GPL vmlinux 0xa0e671d8 __SCT__tp_func_sched_update_nr_running_tp -EXPORT_SYMBOL_GPL vmlinux 0xa0f54036 pci_test_config_bits -EXPORT_SYMBOL_GPL vmlinux 0xa0f9826e edac_device_handle_ue_count -EXPORT_SYMBOL_GPL vmlinux 0xa104b33b ip6_input +EXPORT_SYMBOL_GPL vmlinux 0xa0ec3b73 crypto_grab_shash +EXPORT_SYMBOL_GPL vmlinux 0xa0f32875 fsverity_ioctl_measure +EXPORT_SYMBOL_GPL vmlinux 0xa10ae4fa crypto_rng_reset +EXPORT_SYMBOL_GPL vmlinux 0xa10b5b2c driver_deferred_probe_check_state EXPORT_SYMBOL_GPL vmlinux 0xa11216be xen_store_domain_type -EXPORT_SYMBOL_GPL vmlinux 0xa112a29c serial8250_em485_destroy -EXPORT_SYMBOL_GPL vmlinux 0xa1163467 icc_node_del -EXPORT_SYMBOL_GPL vmlinux 0xa11f0df4 serial8250_rx_chars +EXPORT_SYMBOL_GPL vmlinux 0xa13aef65 devm_get_free_pages +EXPORT_SYMBOL_GPL vmlinux 0xa13dd543 bus_rescan_devices +EXPORT_SYMBOL_GPL vmlinux 0xa1487ba8 spi_mem_dtr_supports_op +EXPORT_SYMBOL_GPL vmlinux 0xa14daf28 __SCK__tp_func_neigh_cleanup_and_release +EXPORT_SYMBOL_GPL vmlinux 0xa14e33e8 dax_writeback_mapping_range EXPORT_SYMBOL_GPL vmlinux 0xa156a1f2 erst_get_record_id_end EXPORT_SYMBOL_GPL vmlinux 0xa1691b63 xas_find_marked EXPORT_SYMBOL_GPL vmlinux 0xa16deb13 sbitmap_resize -EXPORT_SYMBOL_GPL vmlinux 0xa16fdb1e of_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0xa17ef5d6 fb_deferred_io_open -EXPORT_SYMBOL_GPL vmlinux 0xa1808014 devfreq_event_get_event -EXPORT_SYMBOL_GPL vmlinux 0xa1989894 devm_regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xa175e3d9 sysfs_unmerge_group +EXPORT_SYMBOL_GPL vmlinux 0xa18af31f devm_power_supply_register_no_ws EXPORT_SYMBOL_GPL vmlinux 0xa1a97623 start_poll_synchronize_srcu -EXPORT_SYMBOL_GPL vmlinux 0xa1bb687f check_move_unevictable_pages -EXPORT_SYMBOL_GPL vmlinux 0xa1d71ae7 iommu_report_device_fault +EXPORT_SYMBOL_GPL vmlinux 0xa1b29517 edac_pci_free_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0xa1b8d21c tty_perform_flush +EXPORT_SYMBOL_GPL vmlinux 0xa1beecd2 irq_chip_retrigger_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0xa1c4b59e serial8250_rx_chars +EXPORT_SYMBOL_GPL vmlinux 0xa1cda50d devlink_dpipe_entry_ctx_prepare EXPORT_SYMBOL_GPL vmlinux 0xa1d8004a videomode_from_timing -EXPORT_SYMBOL_GPL vmlinux 0xa1d98ab9 ata_sff_irq_on -EXPORT_SYMBOL_GPL vmlinux 0xa1ed9c8b add_hwgenerator_randomness -EXPORT_SYMBOL_GPL vmlinux 0xa1f1975e ima_file_hash -EXPORT_SYMBOL_GPL vmlinux 0xa2093b10 mctrl_gpio_init_noauto +EXPORT_SYMBOL_GPL vmlinux 0xa1e25238 ata_pci_sff_init_host +EXPORT_SYMBOL_GPL vmlinux 0xa1ff5e05 power_supply_put_battery_info EXPORT_SYMBOL_GPL vmlinux 0xa20d01ba __trace_bprintk -EXPORT_SYMBOL_GPL vmlinux 0xa211a048 ata_bmdma_irq_clear -EXPORT_SYMBOL_GPL vmlinux 0xa218bcfa irq_find_matching_fwspec -EXPORT_SYMBOL_GPL vmlinux 0xa24364f2 sock_map_unhash -EXPORT_SYMBOL_GPL vmlinux 0xa257c2f0 nvdimm_volatile_region_create +EXPORT_SYMBOL_GPL vmlinux 0xa2144a82 ata_cable_ignore +EXPORT_SYMBOL_GPL vmlinux 0xa2178db3 sock_diag_register +EXPORT_SYMBOL_GPL vmlinux 0xa220be0d ata_sas_port_alloc +EXPORT_SYMBOL_GPL vmlinux 0xa22db546 nf_hook_entries_insert_raw +EXPORT_SYMBOL_GPL vmlinux 0xa2319e44 crypto_alloc_aead +EXPORT_SYMBOL_GPL vmlinux 0xa23650f3 store_sampling_rate +EXPORT_SYMBOL_GPL vmlinux 0xa2495881 nfs42_ssc_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa258a742 __tracepoint_block_split +EXPORT_SYMBOL_GPL vmlinux 0xa25b4410 strp_done +EXPORT_SYMBOL_GPL vmlinux 0xa2665f32 skb_segment +EXPORT_SYMBOL_GPL vmlinux 0xa26b5ece ip6_sk_redirect EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested -EXPORT_SYMBOL_GPL vmlinux 0xa27dde68 usb_phy_set_charger_state -EXPORT_SYMBOL_GPL vmlinux 0xa280c67d dev_pm_opp_set_rate -EXPORT_SYMBOL_GPL vmlinux 0xa28c761a __tracepoint_br_fdb_update -EXPORT_SYMBOL_GPL vmlinux 0xa291b397 vp_modern_set_features -EXPORT_SYMBOL_GPL vmlinux 0xa2ae090e __tracepoint_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0xa28019c6 led_put +EXPORT_SYMBOL_GPL vmlinux 0xa281fa84 cpuidle_unregister EXPORT_SYMBOL_GPL vmlinux 0xa2af54b3 irq_from_evtchn -EXPORT_SYMBOL_GPL vmlinux 0xa2b39314 devm_bitmap_zalloc -EXPORT_SYMBOL_GPL vmlinux 0xa2b52fe8 __static_call_update EXPORT_SYMBOL_GPL vmlinux 0xa2b99209 alarm_start -EXPORT_SYMBOL_GPL vmlinux 0xa2bd0bb0 fscrypt_set_context -EXPORT_SYMBOL_GPL vmlinux 0xa2be05a4 __of_reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0xa2cbf9cc dev_pm_qos_expose_flags +EXPORT_SYMBOL_GPL vmlinux 0xa2c7a45a virtqueue_notify +EXPORT_SYMBOL_GPL vmlinux 0xa2cbd098 thermal_zone_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa2cdfb37 regulator_map_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0xa2d0b59d mmio_stale_data_clear +EXPORT_SYMBOL_GPL vmlinux 0xa2d1dd34 device_set_node EXPORT_SYMBOL_GPL vmlinux 0xa2e1b3ef trace_printk_init_buffers -EXPORT_SYMBOL_GPL vmlinux 0xa2f3c3b2 irq_domain_free_fwnode EXPORT_SYMBOL_GPL vmlinux 0xa2f7487f hv_is_hibernation_supported -EXPORT_SYMBOL_GPL vmlinux 0xa3077483 rtnl_put_cacheinfo -EXPORT_SYMBOL_GPL vmlinux 0xa33b8fec mctrl_gpio_free -EXPORT_SYMBOL_GPL vmlinux 0xa33c4519 ata_port_freeze -EXPORT_SYMBOL_GPL vmlinux 0xa34bc15d blkdev_report_zones -EXPORT_SYMBOL_GPL vmlinux 0xa34dc930 usb_put_dev -EXPORT_SYMBOL_GPL vmlinux 0xa35381a1 device_remove_properties -EXPORT_SYMBOL_GPL vmlinux 0xa35777b6 fat_flush_inodes -EXPORT_SYMBOL_GPL vmlinux 0xa358c884 security_inode_permission -EXPORT_SYMBOL_GPL vmlinux 0xa35e6aa5 md_new_event +EXPORT_SYMBOL_GPL vmlinux 0xa3131aeb __sock_recv_timestamp +EXPORT_SYMBOL_GPL vmlinux 0xa320ad69 class_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa3311b5a pinctrl_utils_free_map +EXPORT_SYMBOL_GPL vmlinux 0xa3581eab mmc_regulator_set_vqmmc +EXPORT_SYMBOL_GPL vmlinux 0xa3619385 crypto_alloc_shash EXPORT_SYMBOL_GPL vmlinux 0xa36f50fb is_binary_blacklisted -EXPORT_SYMBOL_GPL vmlinux 0xa37eee56 icc_disable +EXPORT_SYMBOL_GPL vmlinux 0xa36fb6c5 platform_unregister_drivers +EXPORT_SYMBOL_GPL vmlinux 0xa377f6ea blk_mq_quiesce_queue_nowait +EXPORT_SYMBOL_GPL vmlinux 0xa37a9034 __traceiter_devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0xa383efb5 input_ff_flush +EXPORT_SYMBOL_GPL vmlinux 0xa384eb56 efivar_entry_iter EXPORT_SYMBOL_GPL vmlinux 0xa38602cd drain_workqueue EXPORT_SYMBOL_GPL vmlinux 0xa389a49a profile_event_register EXPORT_SYMBOL_GPL vmlinux 0xa38a9f71 get_itimerspec64 -EXPORT_SYMBOL_GPL vmlinux 0xa391290d __tracepoint_neigh_update_done -EXPORT_SYMBOL_GPL vmlinux 0xa394b2e9 devm_gpiod_put -EXPORT_SYMBOL_GPL vmlinux 0xa39f3ce6 crypto_alloc_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xa38c8125 fsnotify_put_mark +EXPORT_SYMBOL_GPL vmlinux 0xa391cd56 regmap_async_complete_cb +EXPORT_SYMBOL_GPL vmlinux 0xa39688b1 inet6_csk_addr2sockaddr EXPORT_SYMBOL_GPL vmlinux 0xa3a04602 btree_geo64 -EXPORT_SYMBOL_GPL vmlinux 0xa3a12017 get_net_ns_by_fd -EXPORT_SYMBOL_GPL vmlinux 0xa3ad42ea dma_buf_pin -EXPORT_SYMBOL_GPL vmlinux 0xa3af36c9 pci_epc_map_addr EXPORT_SYMBOL_GPL vmlinux 0xa3b958ce reset_hung_task_detector -EXPORT_SYMBOL_GPL vmlinux 0xa3c9de4c smpboot_unregister_percpu_thread -EXPORT_SYMBOL_GPL vmlinux 0xa3e72aba __put_net -EXPORT_SYMBOL_GPL vmlinux 0xa3ebbea0 acpi_create_platform_device +EXPORT_SYMBOL_GPL vmlinux 0xa3bd0be7 ata_do_set_mode +EXPORT_SYMBOL_GPL vmlinux 0xa3d41fc1 blk_trace_setup +EXPORT_SYMBOL_GPL vmlinux 0xa3e09710 spi_mem_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa3eb2387 dw_pcie_upconfig_setup EXPORT_SYMBOL_GPL vmlinux 0xa3ece414 freezer_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xa3f065e3 css_next_descendant_pre EXPORT_SYMBOL_GPL vmlinux 0xa3f12f69 __crypto_xor -EXPORT_SYMBOL_GPL vmlinux 0xa3ff99a8 regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xa400bf3a tcp_cong_avoid_ai EXPORT_SYMBOL_GPL vmlinux 0xa4031b7f sfp_parse_port -EXPORT_SYMBOL_GPL vmlinux 0xa4108545 alloc_page_buffers EXPORT_SYMBOL_GPL vmlinux 0xa410a295 devlink_region_destroy -EXPORT_SYMBOL_GPL vmlinux 0xa42ac8d8 tps65912_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0xa4347bdc iomap_seek_hole -EXPORT_SYMBOL_GPL vmlinux 0xa43979d0 blk_mq_freeze_queue +EXPORT_SYMBOL_GPL vmlinux 0xa41d9220 anon_transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0xa41e2922 __efivar_entry_delete +EXPORT_SYMBOL_GPL vmlinux 0xa4209fcc ata_port_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0xa4213c6c nvmem_cell_read_variable_le_u64 +EXPORT_SYMBOL_GPL vmlinux 0xa42a6583 scsi_nl_sock +EXPORT_SYMBOL_GPL vmlinux 0xa42ca3b7 inet6_hash +EXPORT_SYMBOL_GPL vmlinux 0xa431c74e rio_add_mport_pw_handler EXPORT_SYMBOL_GPL vmlinux 0xa44a1307 interval_tree_iter_first 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 0xa45c9df2 clk_hw_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0xa45c9fb3 regulator_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0xa45f6cf3 genphy_c45_pma_setup_forced +EXPORT_SYMBOL_GPL vmlinux 0xa460323c devm_pinctrl_register +EXPORT_SYMBOL_GPL vmlinux 0xa461cb51 __traceiter_remove_device_from_group EXPORT_SYMBOL_GPL vmlinux 0xa462d5a6 __SCT__tp_func_sched_overutilized_tp -EXPORT_SYMBOL_GPL vmlinux 0xa4715234 adp5520_clr_bits -EXPORT_SYMBOL_GPL vmlinux 0xa4771082 pci_status_get_and_clear_errors +EXPORT_SYMBOL_GPL vmlinux 0xa46b66d1 pinctrl_force_default +EXPORT_SYMBOL_GPL vmlinux 0xa46fc0af wakeup_source_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa476274b rio_map_inb_region EXPORT_SYMBOL_GPL vmlinux 0xa48196c8 kdb_poll_idx -EXPORT_SYMBOL_GPL vmlinux 0xa4a5d26f dev_set_name +EXPORT_SYMBOL_GPL vmlinux 0xa4920cde rio_mport_read_config_8 EXPORT_SYMBOL_GPL vmlinux 0xa4ab7c1c ring_buffer_overruns EXPORT_SYMBOL_GPL vmlinux 0xa4b07fe7 ring_buffer_change_overwrite +EXPORT_SYMBOL_GPL vmlinux 0xa4b2d1f4 rio_mport_get_efb +EXPORT_SYMBOL_GPL vmlinux 0xa4b74f2a __vfs_removexattr_noperm EXPORT_SYMBOL_GPL vmlinux 0xa4c00324 asn1_encode_octet_string -EXPORT_SYMBOL_GPL vmlinux 0xa4c1d160 extcon_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xa4cc9af9 blk_queue_max_zone_append_sectors -EXPORT_SYMBOL_GPL vmlinux 0xa4cf233d tty_port_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0xa4e19d29 wbt_enable_default +EXPORT_SYMBOL_GPL vmlinux 0xa4c4d775 acpi_driver_match_device +EXPORT_SYMBOL_GPL vmlinux 0xa4cf483e dev_attr_sw_activity EXPORT_SYMBOL_GPL vmlinux 0xa4eb5793 sbitmap_weight -EXPORT_SYMBOL_GPL vmlinux 0xa4fda741 device_remove_bin_file -EXPORT_SYMBOL_GPL vmlinux 0xa5077e15 sysfs_remove_file_ns -EXPORT_SYMBOL_GPL vmlinux 0xa51c9bb6 __traceiter_rpm_idle -EXPORT_SYMBOL_GPL vmlinux 0xa52300de icc_set_tag -EXPORT_SYMBOL_GPL vmlinux 0xa52386df devm_hwspin_lock_register +EXPORT_SYMBOL_GPL vmlinux 0xa4ec627b dev_pm_opp_register_set_opp_helper +EXPORT_SYMBOL_GPL vmlinux 0xa4f18999 posix_acl_access_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0xa5170247 __tracepoint_pelt_dl_tp +EXPORT_SYMBOL_GPL vmlinux 0xa51a16c9 vp_modern_config_vector +EXPORT_SYMBOL_GPL vmlinux 0xa51c0b05 serial8250_request_dma +EXPORT_SYMBOL_GPL vmlinux 0xa52d8336 setfl +EXPORT_SYMBOL_GPL vmlinux 0xa52e9b20 kthread_func +EXPORT_SYMBOL_GPL vmlinux 0xa5304fb1 nvdimm_clear_poison EXPORT_SYMBOL_GPL vmlinux 0xa531471e clk_save_context -EXPORT_SYMBOL_GPL vmlinux 0xa537772c crypto_unregister_algs -EXPORT_SYMBOL_GPL vmlinux 0xa5434afc rio_release_dma -EXPORT_SYMBOL_GPL vmlinux 0xa557709a spi_controller_resume -EXPORT_SYMBOL_GPL vmlinux 0xa573c3cc iommu_fwspec_init -EXPORT_SYMBOL_GPL vmlinux 0xa5766d05 pci_enable_pcie_error_reporting -EXPORT_SYMBOL_GPL vmlinux 0xa57a5d33 sdio_f0_writeb -EXPORT_SYMBOL_GPL vmlinux 0xa57fbd73 lwtunnel_output -EXPORT_SYMBOL_GPL vmlinux 0xa582cf2a ata_sff_busy_sleep -EXPORT_SYMBOL_GPL vmlinux 0xa594c76f ata_scsi_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0xa54c3bb1 irq_chip_ack_parent +EXPORT_SYMBOL_GPL vmlinux 0xa562f5ad irq_chip_disable_parent +EXPORT_SYMBOL_GPL vmlinux 0xa57929d0 usb_mon_register +EXPORT_SYMBOL_GPL vmlinux 0xa58798b7 __mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0xa5926c1e security_path_symlink +EXPORT_SYMBOL_GPL vmlinux 0xa5971598 iommu_attach_group +EXPORT_SYMBOL_GPL vmlinux 0xa5989692 fib_alias_hw_flags_set EXPORT_SYMBOL_GPL vmlinux 0xa5a1793e unregister_ftrace_function -EXPORT_SYMBOL_GPL vmlinux 0xa5aa503c irq_get_irq_data -EXPORT_SYMBOL_GPL vmlinux 0xa5b2648c mptcp_pm_get_subflows_max -EXPORT_SYMBOL_GPL vmlinux 0xa5b3250b crypto_hash_alg_has_setkey +EXPORT_SYMBOL_GPL vmlinux 0xa5bcf4e5 list_lru_walk_one EXPORT_SYMBOL_GPL vmlinux 0xa5bda8a1 efi_capsule_supported -EXPORT_SYMBOL_GPL vmlinux 0xa5c6ccd8 elv_register -EXPORT_SYMBOL_GPL vmlinux 0xa5ca2573 blk_trace_startstop -EXPORT_SYMBOL_GPL vmlinux 0xa5cd454e gpiochip_populate_parent_fwspec_twocell +EXPORT_SYMBOL_GPL vmlinux 0xa5c42c64 dw_pcie_wait_for_link +EXPORT_SYMBOL_GPL vmlinux 0xa5c7caac tpm_pm_suspend EXPORT_SYMBOL_GPL vmlinux 0xa5d7c388 pstore_type_to_name -EXPORT_SYMBOL_GPL vmlinux 0xa5eea2bb virtqueue_enable_cb_prepare +EXPORT_SYMBOL_GPL vmlinux 0xa5db9fed sk_set_memalloc +EXPORT_SYMBOL_GPL vmlinux 0xa5e27e42 i2c_unregister_device EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full -EXPORT_SYMBOL_GPL vmlinux 0xa5f48d29 nf_hook_entries_delete_raw -EXPORT_SYMBOL_GPL vmlinux 0xa5fd3e1e skb_clone_tx_timestamp -EXPORT_SYMBOL_GPL vmlinux 0xa6053280 tpm_chip_start -EXPORT_SYMBOL_GPL vmlinux 0xa612c646 sysfs_update_groups -EXPORT_SYMBOL_GPL vmlinux 0xa61f3188 clk_gate_restore_context -EXPORT_SYMBOL_GPL vmlinux 0xa62137c6 transport_setup_device -EXPORT_SYMBOL_GPL vmlinux 0xa644d285 fuse_conn_destroy -EXPORT_SYMBOL_GPL vmlinux 0xa654c10b nf_queue -EXPORT_SYMBOL_GPL vmlinux 0xa658ffa3 ata_dummy_port_info -EXPORT_SYMBOL_GPL vmlinux 0xa65c9b83 vfio_device_get_from_dev -EXPORT_SYMBOL_GPL vmlinux 0xa662434f __vfs_removexattr_locked -EXPORT_SYMBOL_GPL vmlinux 0xa67f4752 dm_get_queue_limits +EXPORT_SYMBOL_GPL vmlinux 0xa5ffcd93 md_stop_writes +EXPORT_SYMBOL_GPL vmlinux 0xa61c8409 ata_port_desc +EXPORT_SYMBOL_GPL vmlinux 0xa623af15 elv_rqhash_del +EXPORT_SYMBOL_GPL vmlinux 0xa62c266d devm_clk_hw_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa640998b kthread_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xa6499c9f acpi_gpiochip_request_interrupts +EXPORT_SYMBOL_GPL vmlinux 0xa6576142 isa_unregister_driver EXPORT_SYMBOL_GPL vmlinux 0xa68bdef9 __srcu_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0xa6924e71 regcache_sync_region +EXPORT_SYMBOL_GPL vmlinux 0xa6930390 class_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0xa69e7d0a pinctrl_select_state EXPORT_SYMBOL_GPL vmlinux 0xa6a088b7 fscrypt_match_name +EXPORT_SYMBOL_GPL vmlinux 0xa6a4566e component_add EXPORT_SYMBOL_GPL vmlinux 0xa6b06f65 ata_sff_queue_work EXPORT_SYMBOL_GPL vmlinux 0xa6b21ef2 dpm_suspend_end -EXPORT_SYMBOL_GPL vmlinux 0xa6cb4947 devm_fwnode_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0xa6cd2df0 phy_modify_changed -EXPORT_SYMBOL_GPL vmlinux 0xa6d66021 mmc_poll_for_busy +EXPORT_SYMBOL_GPL vmlinux 0xa6b7bbb9 devm_pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa6c685d8 device_get_child_node_count +EXPORT_SYMBOL_GPL vmlinux 0xa6c74067 vp_modern_generation EXPORT_SYMBOL_GPL vmlinux 0xa6e1a69d kick_all_cpus_sync -EXPORT_SYMBOL_GPL vmlinux 0xa6f23fc0 genphy_c45_an_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0xa6f08152 edac_pci_release_generic_ctl +EXPORT_SYMBOL_GPL vmlinux 0xa6fbdf04 scsi_schedule_eh EXPORT_SYMBOL_GPL vmlinux 0xa709c835 fib6_info_destroy_rcu -EXPORT_SYMBOL_GPL vmlinux 0xa710c076 gpiochip_line_is_valid EXPORT_SYMBOL_GPL vmlinux 0xa7127da7 mce_unregister_injector_chain +EXPORT_SYMBOL_GPL vmlinux 0xa7162ff7 devlink_port_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa71a8efa blk_rq_err_bytes +EXPORT_SYMBOL_GPL vmlinux 0xa71aee2a rio_release_dma +EXPORT_SYMBOL_GPL vmlinux 0xa71c4b37 tpm_tis_remove EXPORT_SYMBOL_GPL vmlinux 0xa7218eba irq_set_affinity -EXPORT_SYMBOL_GPL vmlinux 0xa7310f0b tps6586x_read +EXPORT_SYMBOL_GPL vmlinux 0xa72789fa iomap_finish_ioends +EXPORT_SYMBOL_GPL vmlinux 0xa72f1380 dm_path_uevent EXPORT_SYMBOL_GPL vmlinux 0xa731f387 nl_table_lock -EXPORT_SYMBOL_GPL vmlinux 0xa73620c9 mptcp_pm_get_add_addr_accept_max -EXPORT_SYMBOL_GPL vmlinux 0xa73706c4 __traceiter_sched_util_est_cfs_tp -EXPORT_SYMBOL_GPL vmlinux 0xa742fd66 __kthread_should_park -EXPORT_SYMBOL_GPL vmlinux 0xa74870c9 acpi_dev_suspend -EXPORT_SYMBOL_GPL vmlinux 0xa767a457 thermal_zone_bind_cooling_device -EXPORT_SYMBOL_GPL vmlinux 0xa76f782f crypto_register_skcipher -EXPORT_SYMBOL_GPL vmlinux 0xa771ff4e vchan_tx_submit -EXPORT_SYMBOL_GPL vmlinux 0xa772216c set_cpus_allowed_ptr -EXPORT_SYMBOL_GPL vmlinux 0xa77cb5f4 pci_restore_msi_state -EXPORT_SYMBOL_GPL vmlinux 0xa77d31f9 pinctrl_dev_get_name -EXPORT_SYMBOL_GPL vmlinux 0xa79f48af devlink_resource_register -EXPORT_SYMBOL_GPL vmlinux 0xa7a45822 ipv4_redirect -EXPORT_SYMBOL_GPL vmlinux 0xa7aaf2ff spi_mem_adjust_op_size +EXPORT_SYMBOL_GPL vmlinux 0xa75f1af1 __put_net +EXPORT_SYMBOL_GPL vmlinux 0xa7606086 blk_trace_startstop +EXPORT_SYMBOL_GPL vmlinux 0xa7610e0e gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0xa7667218 transport_remove_device +EXPORT_SYMBOL_GPL vmlinux 0xa77908cc acpi_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0xa789e468 debugfs_rename +EXPORT_SYMBOL_GPL vmlinux 0xa7bb5cd1 __inet_inherit_port +EXPORT_SYMBOL_GPL vmlinux 0xa7bcbbdd acpi_pci_find_root +EXPORT_SYMBOL_GPL vmlinux 0xa7c10b0f gpiochip_free_own_desc EXPORT_SYMBOL_GPL vmlinux 0xa7cba284 housekeeping_any_cpu -EXPORT_SYMBOL_GPL vmlinux 0xa7ea8570 intel_pmic_install_opregion_handler -EXPORT_SYMBOL_GPL vmlinux 0xa806b0a2 ohci_suspend -EXPORT_SYMBOL_GPL vmlinux 0xa81c285c sdio_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0xa8405626 __traceiter_pelt_rt_tp +EXPORT_SYMBOL_GPL vmlinux 0xa7f0e533 pci_store_saved_state +EXPORT_SYMBOL_GPL vmlinux 0xa7f3d93e netlink_has_listeners +EXPORT_SYMBOL_GPL vmlinux 0xa807d67a crypto_unregister_instance +EXPORT_SYMBOL_GPL vmlinux 0xa80d2127 regulator_get_error_flags +EXPORT_SYMBOL_GPL vmlinux 0xa8156177 screen_pos +EXPORT_SYMBOL_GPL vmlinux 0xa8160bb5 ip6_redirect +EXPORT_SYMBOL_GPL vmlinux 0xa822dfa4 ncsi_vlan_rx_add_vid +EXPORT_SYMBOL_GPL vmlinux 0xa826309c tpm_transmit_cmd +EXPORT_SYMBOL_GPL vmlinux 0xa842bb6b sk_psock_init +EXPORT_SYMBOL_GPL vmlinux 0xa8456317 rtc_class_open EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xa87237c0 crypto_register_instance -EXPORT_SYMBOL_GPL vmlinux 0xa87b08e8 usb_hcd_pci_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xa88a83f4 strp_done -EXPORT_SYMBOL_GPL vmlinux 0xa88e12ea usb_altnum_to_altsetting -EXPORT_SYMBOL_GPL vmlinux 0xa8a29054 __SCK__tp_func_io_page_fault -EXPORT_SYMBOL_GPL vmlinux 0xa8a359d2 __SCK__tp_func_tcp_bad_csum -EXPORT_SYMBOL_GPL vmlinux 0xa8bc9cdf thermal_cooling_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa8bcf36b find_asymmetric_key -EXPORT_SYMBOL_GPL vmlinux 0xa8c30df8 sock_map_close -EXPORT_SYMBOL_GPL vmlinux 0xa8cfd412 regmap_update_bits_base -EXPORT_SYMBOL_GPL vmlinux 0xa8e18b7d tcp_is_ulp_esp -EXPORT_SYMBOL_GPL vmlinux 0xa904a09d devfreq_event_remove_edev -EXPORT_SYMBOL_GPL vmlinux 0xa9078185 sysfs_merge_group -EXPORT_SYMBOL_GPL vmlinux 0xa90a63a2 dst_cache_set_ip6 -EXPORT_SYMBOL_GPL vmlinux 0xa910ff71 scsi_host_busy_iter +EXPORT_SYMBOL_GPL vmlinux 0xa894756b pci_msi_create_irq_domain +EXPORT_SYMBOL_GPL vmlinux 0xa8afe938 create_signature +EXPORT_SYMBOL_GPL vmlinux 0xa8b98883 vfio_uninit_group_dev +EXPORT_SYMBOL_GPL vmlinux 0xa8be913d event_triggers_post_call +EXPORT_SYMBOL_GPL vmlinux 0xa8e88ce4 mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xa8f14b48 vfs_getxattr_alloc +EXPORT_SYMBOL_GPL vmlinux 0xa9078a0e __devm_irq_alloc_descs EXPORT_SYMBOL_GPL vmlinux 0xa9126bff hpet_set_rtc_irq_bit -EXPORT_SYMBOL_GPL vmlinux 0xa916708a devm_regmap_field_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0xa916a772 mmu_notifier_get_locked +EXPORT_SYMBOL_GPL vmlinux 0xa91ec208 fat_add_entries +EXPORT_SYMBOL_GPL vmlinux 0xa923583a __tracepoint_br_fdb_update +EXPORT_SYMBOL_GPL vmlinux 0xa92c58a6 dma_buf_attach EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds -EXPORT_SYMBOL_GPL vmlinux 0xa9452f76 sysfs_add_link_to_group -EXPORT_SYMBOL_GPL vmlinux 0xa9487748 pci_epc_multi_mem_init -EXPORT_SYMBOL_GPL vmlinux 0xa96b973c md_bitmap_copy_from_slot +EXPORT_SYMBOL_GPL vmlinux 0xa94489d9 acomp_request_alloc +EXPORT_SYMBOL_GPL vmlinux 0xa944c100 ip6_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0xa957adcd cpci_hp_unregister_bus +EXPORT_SYMBOL_GPL vmlinux 0xa969ed3b dev_pm_opp_put EXPORT_SYMBOL_GPL vmlinux 0xa96e8b4e hv_setup_vmbus_handler -EXPORT_SYMBOL_GPL vmlinux 0xa9731a6a mbox_client_txdone +EXPORT_SYMBOL_GPL vmlinux 0xa9841d46 relay_buf_full EXPORT_SYMBOL_GPL vmlinux 0xa9854364 umc_normaddr_to_sysaddr -EXPORT_SYMBOL_GPL vmlinux 0xa98e2c86 sysfs_break_active_protection +EXPORT_SYMBOL_GPL vmlinux 0xa99eef64 ata_msleep EXPORT_SYMBOL_GPL vmlinux 0xa99ef899 devlink_fmsg_bool_pair_put -EXPORT_SYMBOL_GPL vmlinux 0xa9c736f4 __vfs_removexattr_noperm -EXPORT_SYMBOL_GPL vmlinux 0xa9defbb0 uprobe_register_refctr +EXPORT_SYMBOL_GPL vmlinux 0xa9b2ef3f pci_epf_bind +EXPORT_SYMBOL_GPL vmlinux 0xa9b844c9 ip6_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0xa9ba30f9 debugfs_create_ulong +EXPORT_SYMBOL_GPL vmlinux 0xa9bfb0a8 device_store_ulong +EXPORT_SYMBOL_GPL vmlinux 0xa9d92118 wakeup_source_register EXPORT_SYMBOL_GPL vmlinux 0xa9e18049 task_handoff_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa9e856d3 sysfs_create_file_ns -EXPORT_SYMBOL_GPL vmlinux 0xa9eaa352 iommu_sva_unbind_device -EXPORT_SYMBOL_GPL vmlinux 0xaa0a9230 i2c_adapter_type -EXPORT_SYMBOL_GPL vmlinux 0xaa16c1d8 synth_event_add_next_val -EXPORT_SYMBOL_GPL vmlinux 0xaa198d79 fsnotify -EXPORT_SYMBOL_GPL vmlinux 0xaa1c0da3 ata_scsi_slave_destroy +EXPORT_SYMBOL_GPL vmlinux 0xa9ed2db6 iommu_sva_find +EXPORT_SYMBOL_GPL vmlinux 0xa9f6895a __ata_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0xaa16a28f __traceiter_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0xaa191032 dev_nit_active +EXPORT_SYMBOL_GPL vmlinux 0xaa195d8e crypto_type_has_alg EXPORT_SYMBOL_GPL vmlinux 0xaa230f88 perf_unregister_guest_info_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xaa28569e dev_pm_opp_register_set_opp_helper -EXPORT_SYMBOL_GPL vmlinux 0xaa28bda0 irq_gc_mask_clr_bit -EXPORT_SYMBOL_GPL vmlinux 0xaa403c18 l3mdev_fib_table_rcu +EXPORT_SYMBOL_GPL vmlinux 0xaa52095a blk_queue_rq_timeout +EXPORT_SYMBOL_GPL vmlinux 0xaa545cca l3mdev_fib_table_by_index EXPORT_SYMBOL_GPL vmlinux 0xaa5aee1c uv_bios_mq_watchlist_alloc -EXPORT_SYMBOL_GPL vmlinux 0xaa61e414 pm_generic_poweroff_noirq +EXPORT_SYMBOL_GPL vmlinux 0xaa60b2df usb_create_shared_hcd +EXPORT_SYMBOL_GPL vmlinux 0xaa632c6e devlink_port_attrs_pci_sf_set EXPORT_SYMBOL_GPL vmlinux 0xaa6a50f9 __static_key_deferred_flush -EXPORT_SYMBOL_GPL vmlinux 0xaa7d62c2 blk_mq_freeze_queue_wait -EXPORT_SYMBOL_GPL vmlinux 0xaa7d62d3 __SCK__tp_func_devlink_hwerr +EXPORT_SYMBOL_GPL vmlinux 0xaa6d3f64 blk_mq_sched_mark_restart_hctx +EXPORT_SYMBOL_GPL vmlinux 0xaa79357d rio_mport_get_feature +EXPORT_SYMBOL_GPL vmlinux 0xaa803e9f generic_access_phys EXPORT_SYMBOL_GPL vmlinux 0xaa86cfb5 uv_possible_blades -EXPORT_SYMBOL_GPL vmlinux 0xaa88b686 fwnode_get_next_child_node -EXPORT_SYMBOL_GPL vmlinux 0xaaa1b4d7 ata_std_postreset +EXPORT_SYMBOL_GPL vmlinux 0xaa954ca1 sysfs_remove_file_from_group +EXPORT_SYMBOL_GPL vmlinux 0xaaa2d236 pm_runtime_allow EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump -EXPORT_SYMBOL_GPL vmlinux 0xaab098ca ata_pio_need_iordy -EXPORT_SYMBOL_GPL vmlinux 0xaab591cc extcon_find_edev_by_node -EXPORT_SYMBOL_GPL vmlinux 0xaab81cae usb_set_device_state -EXPORT_SYMBOL_GPL vmlinux 0xaaca552e i2c_acpi_find_bus_speed -EXPORT_SYMBOL_GPL vmlinux 0xaae258c7 locks_release_private +EXPORT_SYMBOL_GPL vmlinux 0xaab8bd6a scsi_autopm_get_device +EXPORT_SYMBOL_GPL vmlinux 0xaac153d2 __SCK__tp_func_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0xaad0a479 fixed_phy_set_link_update EXPORT_SYMBOL_GPL vmlinux 0xaaebe644 init_srcu_struct -EXPORT_SYMBOL_GPL vmlinux 0xaaedb78a bpf_trace_run6 -EXPORT_SYMBOL_GPL vmlinux 0xab05fa59 __root_device_register +EXPORT_SYMBOL_GPL vmlinux 0xaaee79b1 mddev_init_writes_pending +EXPORT_SYMBOL_GPL vmlinux 0xab05ee3e __clk_get_hw +EXPORT_SYMBOL_GPL vmlinux 0xab09cb15 devm_phy_create +EXPORT_SYMBOL_GPL vmlinux 0xab0e3f87 extcon_unregister_notifier EXPORT_SYMBOL_GPL vmlinux 0xab1e0e93 hv_setup_kexec_handler -EXPORT_SYMBOL_GPL vmlinux 0xab1ec49a dummy_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0xab46085c phy_remove_lookup -EXPORT_SYMBOL_GPL vmlinux 0xab58d744 kstrdup_quotable_file -EXPORT_SYMBOL_GPL vmlinux 0xab60571d unregister_pernet_device -EXPORT_SYMBOL_GPL vmlinux 0xab613683 rtc_set_alarm -EXPORT_SYMBOL_GPL vmlinux 0xab7a8f1a input_ff_upload -EXPORT_SYMBOL_GPL vmlinux 0xab8d9471 devm_regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xab2fbeb0 mnt_want_write +EXPORT_SYMBOL_GPL vmlinux 0xab3a030b tty_prepare_flip_string +EXPORT_SYMBOL_GPL vmlinux 0xab6851d8 pci_epc_destroy +EXPORT_SYMBOL_GPL vmlinux 0xab77f5d6 skb_to_sgvec +EXPORT_SYMBOL_GPL vmlinux 0xab811e7e simple_attr_open +EXPORT_SYMBOL_GPL vmlinux 0xab821491 nfs_ssc_unregister +EXPORT_SYMBOL_GPL vmlinux 0xab8425af regmap_get_reg_stride +EXPORT_SYMBOL_GPL vmlinux 0xab862fe3 devm_gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0xab9732c7 gpiod_get_raw_array_value_cansleep EXPORT_SYMBOL_GPL vmlinux 0xab9bd884 perf_register_guest_info_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xab9beba9 rio_release_inb_dbell -EXPORT_SYMBOL_GPL vmlinux 0xaba385bb pci_slots_kset -EXPORT_SYMBOL_GPL vmlinux 0xaba7f7fe gpiochip_irq_domain_deactivate +EXPORT_SYMBOL_GPL vmlinux 0xaba72259 __tracepoint_sched_overutilized_tp +EXPORT_SYMBOL_GPL vmlinux 0xaba8e5e6 fsnotify_alloc_group +EXPORT_SYMBOL_GPL vmlinux 0xabb51d25 alloc_dax +EXPORT_SYMBOL_GPL vmlinux 0xabb5a4c5 pm_genpd_add_subdomain +EXPORT_SYMBOL_GPL vmlinux 0xabb7c7c2 get_cached_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0xabc1661d fpu_swap_kvm_fpstate EXPORT_SYMBOL_GPL vmlinux 0xabc298d0 intel_scu_ipc_unregister +EXPORT_SYMBOL_GPL vmlinux 0xabc4a3c8 vp_modern_get_queue_enable EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate -EXPORT_SYMBOL_GPL vmlinux 0xabd374de __fib_lookup -EXPORT_SYMBOL_GPL vmlinux 0xabd481e1 raw_hash_sk -EXPORT_SYMBOL_GPL vmlinux 0xabd7eb72 usb_reset_configuration -EXPORT_SYMBOL_GPL vmlinux 0xabdd792c iomap_dio_iopoll -EXPORT_SYMBOL_GPL vmlinux 0xabede6a9 __list_lru_init +EXPORT_SYMBOL_GPL vmlinux 0xabe114a0 virtqueue_enable_cb +EXPORT_SYMBOL_GPL vmlinux 0xabe21236 dax_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xabe525a9 devm_pm_opp_set_clkname +EXPORT_SYMBOL_GPL vmlinux 0xabef70f4 cpufreq_driver_target EXPORT_SYMBOL_GPL vmlinux 0xabf03fc3 __SCT__tp_func_xhci_dbg_quirks -EXPORT_SYMBOL_GPL vmlinux 0xabf77e43 md_stop -EXPORT_SYMBOL_GPL vmlinux 0xabfc464a extcon_register_notifier_all -EXPORT_SYMBOL_GPL vmlinux 0xabfc6bec cgrp_dfl_root -EXPORT_SYMBOL_GPL vmlinux 0xabfd4816 __traceiter_add_device_to_group -EXPORT_SYMBOL_GPL vmlinux 0xac023ef3 regmap_field_alloc -EXPORT_SYMBOL_GPL vmlinux 0xac08d1a9 cn_add_callback -EXPORT_SYMBOL_GPL vmlinux 0xac174df3 device_set_of_node_from_dev -EXPORT_SYMBOL_GPL vmlinux 0xac1f9fbc lwtunnel_get_encap_size -EXPORT_SYMBOL_GPL vmlinux 0xac22277a serdev_device_wait_until_sent -EXPORT_SYMBOL_GPL vmlinux 0xac3e85cf param_set_bool_enable_only -EXPORT_SYMBOL_GPL vmlinux 0xac4e2984 inet_csk_reqsk_queue_hash_add -EXPORT_SYMBOL_GPL vmlinux 0xac5b5e15 tcp_ca_get_key_by_name -EXPORT_SYMBOL_GPL vmlinux 0xac661fd0 fwnode_graph_get_remote_endpoint -EXPORT_SYMBOL_GPL vmlinux 0xac68547b serial8250_do_set_ldisc -EXPORT_SYMBOL_GPL vmlinux 0xac68dd33 ata_port_desc -EXPORT_SYMBOL_GPL vmlinux 0xac6971db perf_trace_run_bpf_submit -EXPORT_SYMBOL_GPL vmlinux 0xac6d2153 strp_data_ready -EXPORT_SYMBOL_GPL vmlinux 0xac7cd5be da903x_writes -EXPORT_SYMBOL_GPL vmlinux 0xac8518db vmf_insert_pfn_pmd_prot -EXPORT_SYMBOL_GPL vmlinux 0xacacf87c tps65912_device_init -EXPORT_SYMBOL_GPL vmlinux 0xacb45557 seg6_do_srh_encap +EXPORT_SYMBOL_GPL vmlinux 0xabf06802 acpi_subsys_complete +EXPORT_SYMBOL_GPL vmlinux 0xabf799eb of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xabfd0e2e __tracepoint_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0xac05d024 sock_map_close +EXPORT_SYMBOL_GPL vmlinux 0xac2be4f8 led_blink_set_oneshot +EXPORT_SYMBOL_GPL vmlinux 0xac4d8d2d perf_pmu_unregister +EXPORT_SYMBOL_GPL vmlinux 0xac507dcb crypto_hash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0xac5839a6 transport_add_device +EXPORT_SYMBOL_GPL vmlinux 0xac742719 dma_buf_unmap_attachment +EXPORT_SYMBOL_GPL vmlinux 0xac783445 synth_event_trace_end EXPORT_SYMBOL_GPL vmlinux 0xacb4d88c clk_rate_exclusive_put -EXPORT_SYMBOL_GPL vmlinux 0xacc78a9e perf_event_disable -EXPORT_SYMBOL_GPL vmlinux 0xacc7de12 tty_put_char +EXPORT_SYMBOL_GPL vmlinux 0xacbcb460 devlink_sb_register +EXPORT_SYMBOL_GPL vmlinux 0xacc2c347 usb_driver_release_interface +EXPORT_SYMBOL_GPL vmlinux 0xacc37e0a pinctrl_get EXPORT_SYMBOL_GPL vmlinux 0xacc977ac alarm_forward_now -EXPORT_SYMBOL_GPL vmlinux 0xacce917c sysfs_change_owner -EXPORT_SYMBOL_GPL vmlinux 0xacdf3d84 __devm_regmap_init_mmio_clk -EXPORT_SYMBOL_GPL vmlinux 0xacf8fd67 __inet_twsk_schedule -EXPORT_SYMBOL_GPL vmlinux 0xad002d2d perf_event_pause -EXPORT_SYMBOL_GPL vmlinux 0xad0273a5 pci_disable_pasid -EXPORT_SYMBOL_GPL vmlinux 0xad093d21 pinctrl_utils_free_map -EXPORT_SYMBOL_GPL vmlinux 0xad0a3247 i2c_dw_probe_master +EXPORT_SYMBOL_GPL vmlinux 0xaccf1e15 tcp_set_keepalive +EXPORT_SYMBOL_GPL vmlinux 0xace17eaf vfs_read +EXPORT_SYMBOL_GPL vmlinux 0xacf33d7d __root_device_register +EXPORT_SYMBOL_GPL vmlinux 0xad051bc2 phy_modify_mmd EXPORT_SYMBOL_GPL vmlinux 0xad0f2b6c unix_table_lock -EXPORT_SYMBOL_GPL vmlinux 0xad0fda86 spi_sync_locked -EXPORT_SYMBOL_GPL vmlinux 0xad11f53f devm_mbox_controller_unregister -EXPORT_SYMBOL_GPL vmlinux 0xad200868 regulator_list_voltage_linear -EXPORT_SYMBOL_GPL vmlinux 0xad33c5bb devm_acpi_dma_controller_free -EXPORT_SYMBOL_GPL vmlinux 0xad362569 sdio_f0_readb -EXPORT_SYMBOL_GPL vmlinux 0xad36db0f dm_internal_resume +EXPORT_SYMBOL_GPL vmlinux 0xad129f70 alloc_skb_for_msg +EXPORT_SYMBOL_GPL vmlinux 0xad24ba31 tty_buffer_request_room EXPORT_SYMBOL_GPL vmlinux 0xad395dd9 mm_account_pinned_pages +EXPORT_SYMBOL_GPL vmlinux 0xad3d51d1 devlink_resource_occ_get_register +EXPORT_SYMBOL_GPL vmlinux 0xad4c4732 tty_buffer_space_avail EXPORT_SYMBOL_GPL vmlinux 0xad4e6259 remove_cpu -EXPORT_SYMBOL_GPL vmlinux 0xad530dd8 ethnl_cable_test_step +EXPORT_SYMBOL_GPL vmlinux 0xad532e83 dma_alloc_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0xad55d7e5 iommu_group_for_each_dev EXPORT_SYMBOL_GPL vmlinux 0xad5737fc efivar_init -EXPORT_SYMBOL_GPL vmlinux 0xad5bbd17 iommu_device_link EXPORT_SYMBOL_GPL vmlinux 0xad5f0017 perf_trace_buf_alloc EXPORT_SYMBOL_GPL vmlinux 0xad645234 register_switchdev_notifier -EXPORT_SYMBOL_GPL vmlinux 0xad64dbde crypto_ahash_digest -EXPORT_SYMBOL_GPL vmlinux 0xad731556 power_supply_am_i_supplied -EXPORT_SYMBOL_GPL vmlinux 0xad770301 mbox_client_peek_data -EXPORT_SYMBOL_GPL vmlinux 0xad7fc9d9 follow_pte -EXPORT_SYMBOL_GPL vmlinux 0xad810950 vfs_removexattr -EXPORT_SYMBOL_GPL vmlinux 0xad825b81 irq_chip_set_parent_state -EXPORT_SYMBOL_GPL vmlinux 0xad87d3dc unmap_mapping_pages -EXPORT_SYMBOL_GPL vmlinux 0xad8e9dd5 fscrypt_fname_siphash -EXPORT_SYMBOL_GPL vmlinux 0xad9441a2 rtnl_get_net_ns_capable -EXPORT_SYMBOL_GPL vmlinux 0xad9a8e6c percpu_free_rwsem +EXPORT_SYMBOL_GPL vmlinux 0xad68b1e5 mptcp_subflow_request_sock_ops +EXPORT_SYMBOL_GPL vmlinux 0xad6efb8d blkcg_activate_policy +EXPORT_SYMBOL_GPL vmlinux 0xad708c49 spi_mem_dirmap_create +EXPORT_SYMBOL_GPL vmlinux 0xad7a65d5 crypto_register_scomp +EXPORT_SYMBOL_GPL vmlinux 0xad88b6d5 gpiochip_line_is_open_drain EXPORT_SYMBOL_GPL vmlinux 0xada38766 dst_cache_destroy -EXPORT_SYMBOL_GPL vmlinux 0xada3b44e mmc_crypto_setup_queue -EXPORT_SYMBOL_GPL vmlinux 0xada4410a vfio_unregister_group_dev -EXPORT_SYMBOL_GPL vmlinux 0xadbf29b5 mmc_cmdq_enable -EXPORT_SYMBOL_GPL vmlinux 0xadc8a782 platform_get_resource -EXPORT_SYMBOL_GPL vmlinux 0xadea08a4 pci_ioremap_bar +EXPORT_SYMBOL_GPL vmlinux 0xada7c0fd tracepoint_probe_register_prio +EXPORT_SYMBOL_GPL vmlinux 0xadab4165 device_dma_supported +EXPORT_SYMBOL_GPL vmlinux 0xadda6987 badblocks_init +EXPORT_SYMBOL_GPL vmlinux 0xade4737d pci_common_swizzle +EXPORT_SYMBOL_GPL vmlinux 0xade9dc39 phy_check_downshift +EXPORT_SYMBOL_GPL vmlinux 0xadf6c944 tcp_reno_ssthresh EXPORT_SYMBOL_GPL vmlinux 0xae0ecf40 usb_bus_idr_lock -EXPORT_SYMBOL_GPL vmlinux 0xae101c07 wakeup_sources_walk_start EXPORT_SYMBOL_GPL vmlinux 0xae1051b0 net_cls_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xae23dd6a rdev_get_dev -EXPORT_SYMBOL_GPL vmlinux 0xae2a6a47 nd_cmd_out_size -EXPORT_SYMBOL_GPL vmlinux 0xae2d175d x86_msi_msg_get_destid -EXPORT_SYMBOL_GPL vmlinux 0xae35e3fc dma_buf_fd -EXPORT_SYMBOL_GPL vmlinux 0xae39de83 devlink_flash_update_timeout_notify +EXPORT_SYMBOL_GPL vmlinux 0xae2b4306 da9052_adc_read_temp +EXPORT_SYMBOL_GPL vmlinux 0xae31ac48 ptdump_walk_pgd_level_debugfs +EXPORT_SYMBOL_GPL vmlinux 0xae32e1bb cgroup_get_from_fd EXPORT_SYMBOL_GPL vmlinux 0xae39f80e dst_cache_init -EXPORT_SYMBOL_GPL vmlinux 0xae40e52c tcp_cong_avoid_ai -EXPORT_SYMBOL_GPL vmlinux 0xae4198e9 subsys_find_device_by_id -EXPORT_SYMBOL_GPL vmlinux 0xae46f4d9 __udp4_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0xae5c99eb crypto_unregister_scomps -EXPORT_SYMBOL_GPL vmlinux 0xae633b43 device_remove_file +EXPORT_SYMBOL_GPL vmlinux 0xae42492d i2c_acpi_client_count +EXPORT_SYMBOL_GPL vmlinux 0xae4284d8 dst_blackhole_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xae47c666 nvdimm_volatile_region_create +EXPORT_SYMBOL_GPL vmlinux 0xae59280e crypto_register_kpp +EXPORT_SYMBOL_GPL vmlinux 0xae60d63e fwnode_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0xae65db3f __traceiter_devlink_hwerr EXPORT_SYMBOL_GPL vmlinux 0xae69b1c1 usermodehelper_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0xae730aaf regmap_fields_update_bits_base -EXPORT_SYMBOL_GPL vmlinux 0xae735c88 iommu_sva_get_pasid -EXPORT_SYMBOL_GPL vmlinux 0xae79f965 ip6_route_output_flags_noref -EXPORT_SYMBOL_GPL vmlinux 0xae7bef92 mmput +EXPORT_SYMBOL_GPL vmlinux 0xae6bfcd7 usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0xae7064cf tty_kclose +EXPORT_SYMBOL_GPL vmlinux 0xae71b300 acpi_dma_request_slave_chan_by_index +EXPORT_SYMBOL_GPL vmlinux 0xae78525b blk_mark_disk_dead EXPORT_SYMBOL_GPL vmlinux 0xae7c231d mpi_cmp -EXPORT_SYMBOL_GPL vmlinux 0xae82dbbf fwnode_property_read_string_array -EXPORT_SYMBOL_GPL vmlinux 0xae87fefc dev_pm_genpd_set_next_wakeup -EXPORT_SYMBOL_GPL vmlinux 0xae8e841d security_inode_create +EXPORT_SYMBOL_GPL vmlinux 0xae826059 dma_release_channel +EXPORT_SYMBOL_GPL vmlinux 0xae848077 __tracepoint_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0xae8c2596 __pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0xae96d75f pingv6_ops +EXPORT_SYMBOL_GPL vmlinux 0xae9d5f85 init_uts_ns EXPORT_SYMBOL_GPL vmlinux 0xaea83791 call_srcu -EXPORT_SYMBOL_GPL vmlinux 0xaeb07f93 __mmc_poll_for_busy -EXPORT_SYMBOL_GPL vmlinux 0xaeb6c695 md_submit_discard_bio -EXPORT_SYMBOL_GPL vmlinux 0xaed2173c vfio_device_put -EXPORT_SYMBOL_GPL vmlinux 0xaee19907 mctrl_gpio_init -EXPORT_SYMBOL_GPL vmlinux 0xaef17be1 dax_layout_busy_page -EXPORT_SYMBOL_GPL vmlinux 0xaefe83f9 regulator_get_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0xaea9ea34 crypto_enqueue_request_head +EXPORT_SYMBOL_GPL vmlinux 0xaeab8548 dev_pm_opp_attach_genpd +EXPORT_SYMBOL_GPL vmlinux 0xaebcbf13 sdio_align_size +EXPORT_SYMBOL_GPL vmlinux 0xaebe999a crypto_stats_decompress +EXPORT_SYMBOL_GPL vmlinux 0xaec5d2f3 ata_host_start +EXPORT_SYMBOL_GPL vmlinux 0xaec740a9 __of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0xaec742fa cpufreq_frequency_table_get_index +EXPORT_SYMBOL_GPL vmlinux 0xaed13d12 pktgen_xfrm_outer_mode_output +EXPORT_SYMBOL_GPL vmlinux 0xaef2e2f6 blk_mq_freeze_queue_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0xaeffa2b4 max8997_bulk_write EXPORT_SYMBOL_GPL vmlinux 0xaf076aec nd_fletcher64 EXPORT_SYMBOL_GPL vmlinux 0xaf0b6ba7 blkg_rwstat_init -EXPORT_SYMBOL_GPL vmlinux 0xaf13a0e0 __tcp_send_ack -EXPORT_SYMBOL_GPL vmlinux 0xaf1dfe9a phy_start_machine -EXPORT_SYMBOL_GPL vmlinux 0xaf264324 usb_root_hub_lost_power +EXPORT_SYMBOL_GPL vmlinux 0xaf0cf1c3 iomap_seek_hole +EXPORT_SYMBOL_GPL vmlinux 0xaf3bedc0 devm_rtc_nvmem_register EXPORT_SYMBOL_GPL vmlinux 0xaf4014ff usb_amd_quirk_pll_check -EXPORT_SYMBOL_GPL vmlinux 0xaf43d108 blk_rq_prep_clone -EXPORT_SYMBOL_GPL vmlinux 0xaf5605fd kill_device -EXPORT_SYMBOL_GPL vmlinux 0xaf5c2e69 devlink_trap_policers_register -EXPORT_SYMBOL_GPL vmlinux 0xaf5d8dcf simple_attr_release -EXPORT_SYMBOL_GPL vmlinux 0xaf5f68b9 skb_cow_data -EXPORT_SYMBOL_GPL vmlinux 0xaf6f05e7 vfs_getxattr +EXPORT_SYMBOL_GPL vmlinux 0xaf4c3f9a devfreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0xaf572f2d ip6_datagram_connect_v6_only +EXPORT_SYMBOL_GPL vmlinux 0xaf58fd43 skb_scrub_packet +EXPORT_SYMBOL_GPL vmlinux 0xaf592a6f mmc_send_tuning +EXPORT_SYMBOL_GPL vmlinux 0xaf6d6ff8 blk_queue_zone_write_granularity +EXPORT_SYMBOL_GPL vmlinux 0xaf6ef08f virtqueue_poll EXPORT_SYMBOL_GPL vmlinux 0xaf793668 __alloc_percpu_gfp -EXPORT_SYMBOL_GPL vmlinux 0xaf7a66f1 devm_watchdog_register_device EXPORT_SYMBOL_GPL vmlinux 0xaf852873 cpuidle_register_device -EXPORT_SYMBOL_GPL vmlinux 0xafa1ee8f tty_wakeup -EXPORT_SYMBOL_GPL vmlinux 0xafa27c3b pid_vnr -EXPORT_SYMBOL_GPL vmlinux 0xafa96156 pinctrl_force_default -EXPORT_SYMBOL_GPL vmlinux 0xafb3a61e irq_domain_update_bus_token -EXPORT_SYMBOL_GPL vmlinux 0xafb9bcc0 blk_ksm_destroy -EXPORT_SYMBOL_GPL vmlinux 0xafd00b56 skb_complete_wifi_ack +EXPORT_SYMBOL_GPL vmlinux 0xaf983cca component_add_typed +EXPORT_SYMBOL_GPL vmlinux 0xaf9ab965 rio_request_mport_dma +EXPORT_SYMBOL_GPL vmlinux 0xafc46f8d gpiod_to_chip EXPORT_SYMBOL_GPL vmlinux 0xafddd545 ata_id_c_string -EXPORT_SYMBOL_GPL vmlinux 0xafe3a3f6 spi_mem_dirmap_write -EXPORT_SYMBOL_GPL vmlinux 0xafef42f2 ethnl_cable_test_free -EXPORT_SYMBOL_GPL vmlinux 0xb0162965 ata_noop_qc_prep -EXPORT_SYMBOL_GPL vmlinux 0xb02856ee __pm_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0xaff214db pskb_put +EXPORT_SYMBOL_GPL vmlinux 0xb000a35a nvmem_device_get +EXPORT_SYMBOL_GPL vmlinux 0xb00b2818 pinctrl_select_default_state EXPORT_SYMBOL_GPL vmlinux 0xb02ac411 register_xenstore_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb0314d50 sk_psock_msg_verdict -EXPORT_SYMBOL_GPL vmlinux 0xb062f412 devm_irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xb038f842 devm_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xb039fe49 extcon_set_state_sync +EXPORT_SYMBOL_GPL vmlinux 0xb055a81e irq_domain_pop_irq +EXPORT_SYMBOL_GPL vmlinux 0xb0561823 debugfs_create_u8 EXPORT_SYMBOL_GPL vmlinux 0xb0747ed2 rcu_cpu_stall_suppress EXPORT_SYMBOL_GPL vmlinux 0xb077e70a clk_unprepare -EXPORT_SYMBOL_GPL vmlinux 0xb0799195 usb_hcd_unlink_urb_from_ep -EXPORT_SYMBOL_GPL vmlinux 0xb07f4c6a dm_post_suspending -EXPORT_SYMBOL_GPL vmlinux 0xb09340db gov_attr_set_init -EXPORT_SYMBOL_GPL vmlinux 0xb0a2cd82 pci_pr3_present -EXPORT_SYMBOL_GPL vmlinux 0xb0b4101f fuse_init_fs_context_submount -EXPORT_SYMBOL_GPL vmlinux 0xb0b5bf38 netlink_add_tap -EXPORT_SYMBOL_GPL vmlinux 0xb0b67780 xhci_gen_setup +EXPORT_SYMBOL_GPL vmlinux 0xb07aa871 serdev_device_write_flush +EXPORT_SYMBOL_GPL vmlinux 0xb0a42fcc cpufreq_freq_attr_scaling_boost_freqs EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset -EXPORT_SYMBOL_GPL vmlinux 0xb0be87cf device_store_bool -EXPORT_SYMBOL_GPL vmlinux 0xb0c9741a scsi_unregister_device_handler -EXPORT_SYMBOL_GPL vmlinux 0xb0ce8ffc register_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xb0c7a48f rio_mport_class EXPORT_SYMBOL_GPL vmlinux 0xb0d1656c gpio_free_array -EXPORT_SYMBOL_GPL vmlinux 0xb0de27bf input_class EXPORT_SYMBOL_GPL vmlinux 0xb0e8e671 xenbus_otherend_changed -EXPORT_SYMBOL_GPL vmlinux 0xb0f631f6 ata_timing_compute +EXPORT_SYMBOL_GPL vmlinux 0xb0ef733a tty_ldisc_ref_wait EXPORT_SYMBOL_GPL vmlinux 0xb0fbb722 clk_fractional_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0xb0fe7bce pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0xb0ff2ef6 exportfs_encode_fh EXPORT_SYMBOL_GPL vmlinux 0xb10d964d devlink_fmsg_pair_nest_end -EXPORT_SYMBOL_GPL vmlinux 0xb10e4562 auxiliary_device_init -EXPORT_SYMBOL_GPL vmlinux 0xb1183f27 tpm_tis_resume +EXPORT_SYMBOL_GPL vmlinux 0xb116d773 disk_uevent +EXPORT_SYMBOL_GPL vmlinux 0xb11aa548 pci_device_group EXPORT_SYMBOL_GPL vmlinux 0xb11cc43b __SCT__tp_func_br_fdb_update +EXPORT_SYMBOL_GPL vmlinux 0xb11ce8d9 regmap_update_bits_base EXPORT_SYMBOL_GPL vmlinux 0xb11d9000 tty_dev_name_to_number -EXPORT_SYMBOL_GPL vmlinux 0xb1297007 wakeup_sources_walk_next -EXPORT_SYMBOL_GPL vmlinux 0xb13cebff kthread_flush_work -EXPORT_SYMBOL_GPL vmlinux 0xb14717d1 sysfs_file_change_owner -EXPORT_SYMBOL_GPL vmlinux 0xb14ca1fc nf_ipv6_ops -EXPORT_SYMBOL_GPL vmlinux 0xb1509e04 rio_local_set_device_id -EXPORT_SYMBOL_GPL vmlinux 0xb15bda31 usb_unlocked_enable_lpm -EXPORT_SYMBOL_GPL vmlinux 0xb160d33b xfrm_state_afinfo_get_rcu +EXPORT_SYMBOL_GPL vmlinux 0xb12478eb to_nd_blk_region +EXPORT_SYMBOL_GPL vmlinux 0xb127c3ff evict_inodes +EXPORT_SYMBOL_GPL vmlinux 0xb12a919d dev_pm_opp_adjust_voltage +EXPORT_SYMBOL_GPL vmlinux 0xb131003a con_debug_enter +EXPORT_SYMBOL_GPL vmlinux 0xb14ce014 driver_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0xb151f90e rcu_read_unlock_trace_special EXPORT_SYMBOL_GPL vmlinux 0xb1647fc2 devlink_info_version_running_put -EXPORT_SYMBOL_GPL vmlinux 0xb16760ad list_lru_count_one -EXPORT_SYMBOL_GPL vmlinux 0xb16ab3f0 __rio_local_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0xb1748839 transport_destroy_device +EXPORT_SYMBOL_GPL vmlinux 0xb17e590e tcp_get_syncookie_mss EXPORT_SYMBOL_GPL vmlinux 0xb18429eb suspend_device_irqs -EXPORT_SYMBOL_GPL vmlinux 0xb185bed1 xen_find_device_domain_owner -EXPORT_SYMBOL_GPL vmlinux 0xb1a2369e acpi_pm_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0xb1a75d8e pci_dev_unlock +EXPORT_SYMBOL_GPL vmlinux 0xb1b3ac9d ehci_resume EXPORT_SYMBOL_GPL vmlinux 0xb1bed25d dpm_resume_start -EXPORT_SYMBOL_GPL vmlinux 0xb1c66668 nvdimm_in_overwrite -EXPORT_SYMBOL_GPL vmlinux 0xb1d1bd1a regmap_test_bits -EXPORT_SYMBOL_GPL vmlinux 0xb1d2d6b8 acpi_dev_get_dma_resources -EXPORT_SYMBOL_GPL vmlinux 0xb1d9d7ad __traceiter_neigh_update_done +EXPORT_SYMBOL_GPL vmlinux 0xb1c2fe69 kthread_flush_work +EXPORT_SYMBOL_GPL vmlinux 0xb1cd4e0b __traceiter_tcp_bad_csum +EXPORT_SYMBOL_GPL vmlinux 0xb1cde2d7 spi_async_locked +EXPORT_SYMBOL_GPL vmlinux 0xb1e23f31 devlink_trap_policers_register EXPORT_SYMBOL_GPL vmlinux 0xb1e25684 __trace_bputs +EXPORT_SYMBOL_GPL vmlinux 0xb1ef3497 tpm_pcr_read EXPORT_SYMBOL_GPL vmlinux 0xb1fc1782 pci_speed_string -EXPORT_SYMBOL_GPL vmlinux 0xb2019cf4 led_set_brightness_nopm +EXPORT_SYMBOL_GPL vmlinux 0xb1fd07f8 pwm_set_chip_data EXPORT_SYMBOL_GPL vmlinux 0xb202f0d7 rht_bucket_nested_insert -EXPORT_SYMBOL_GPL vmlinux 0xb208c065 fwnode_property_read_u16_array -EXPORT_SYMBOL_GPL vmlinux 0xb20c7a92 devm_free_pages -EXPORT_SYMBOL_GPL vmlinux 0xb21e2ae9 vfio_pci_core_close_device EXPORT_SYMBOL_GPL vmlinux 0xb2210d64 reset_control_deassert -EXPORT_SYMBOL_GPL vmlinux 0xb2231637 component_add -EXPORT_SYMBOL_GPL vmlinux 0xb2241281 power_supply_set_battery_charged -EXPORT_SYMBOL_GPL vmlinux 0xb2289015 inet_csk_get_port -EXPORT_SYMBOL_GPL vmlinux 0xb23752ec scsi_ioctl_block_when_processing_errors +EXPORT_SYMBOL_GPL vmlinux 0xb235adf4 regulator_set_load +EXPORT_SYMBOL_GPL vmlinux 0xb238cd6b usb_find_alt_setting +EXPORT_SYMBOL_GPL vmlinux 0xb23f8a6b hwmon_device_unregister EXPORT_SYMBOL_GPL vmlinux 0xb2405efc secure_tcp_seq -EXPORT_SYMBOL_GPL vmlinux 0xb24341fa led_get_default_pattern EXPORT_SYMBOL_GPL vmlinux 0xb26066fe ibft_phys_addr -EXPORT_SYMBOL_GPL vmlinux 0xb2644224 iomap_finish_ioends +EXPORT_SYMBOL_GPL vmlinux 0xb262936d i2c_new_client_device +EXPORT_SYMBOL_GPL vmlinux 0xb2662980 devm_hwspin_lock_request EXPORT_SYMBOL_GPL vmlinux 0xb26a1add elfcorehdr_addr +EXPORT_SYMBOL_GPL vmlinux 0xb278f3f2 synth_event_trace_start +EXPORT_SYMBOL_GPL vmlinux 0xb280201e page_mkclean EXPORT_SYMBOL_GPL vmlinux 0xb285b8f8 xen_in_preemptible_hcall -EXPORT_SYMBOL_GPL vmlinux 0xb2924001 gpiochip_line_is_open_source -EXPORT_SYMBOL_GPL vmlinux 0xb29499cb lp8788_read_multi_bytes +EXPORT_SYMBOL_GPL vmlinux 0xb2911561 __fscrypt_prepare_lookup EXPORT_SYMBOL_GPL vmlinux 0xb29533ee zs_malloc -EXPORT_SYMBOL_GPL vmlinux 0xb2993e6d __SCK__tp_func_unmap -EXPORT_SYMBOL_GPL vmlinux 0xb29b7818 dw_pcie_find_capability -EXPORT_SYMBOL_GPL vmlinux 0xb29ddf57 class_dev_iter_next -EXPORT_SYMBOL_GPL vmlinux 0xb29f4741 crypto_stats_kpp_set_secret -EXPORT_SYMBOL_GPL vmlinux 0xb2a57b23 uprobe_register +EXPORT_SYMBOL_GPL vmlinux 0xb298d069 md_rdev_init +EXPORT_SYMBOL_GPL vmlinux 0xb2a31a58 acpi_device_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0xb2a7260b battery_hook_register +EXPORT_SYMBOL_GPL vmlinux 0xb2bcf658 tty_kopen_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xb2bdc9df xfrm_audit_policy_delete EXPORT_SYMBOL_GPL vmlinux 0xb2c1732e rcu_gp_set_torture_wait -EXPORT_SYMBOL_GPL vmlinux 0xb2d6667e mddev_init_writes_pending -EXPORT_SYMBOL_GPL vmlinux 0xb2de4629 virtqueue_add_sgs +EXPORT_SYMBOL_GPL vmlinux 0xb2c4dc75 __tracepoint_mc_event +EXPORT_SYMBOL_GPL vmlinux 0xb2cf5451 irq_generic_chip_ops +EXPORT_SYMBOL_GPL vmlinux 0xb2d6f1d5 shmem_read_mapping_page_gfp EXPORT_SYMBOL_GPL vmlinux 0xb2de4cf2 clk_gate_ops EXPORT_SYMBOL_GPL vmlinux 0xb2e764e8 suspend_valid_only_mem -EXPORT_SYMBOL_GPL vmlinux 0xb2ecff42 led_init_core -EXPORT_SYMBOL_GPL vmlinux 0xb2f277c8 devm_device_add_groups -EXPORT_SYMBOL_GPL vmlinux 0xb2fd6432 ata_pci_bmdma_init_one -EXPORT_SYMBOL_GPL vmlinux 0xb3018af9 __pneigh_lookup -EXPORT_SYMBOL_GPL vmlinux 0xb302abf9 devlink_dpipe_match_put +EXPORT_SYMBOL_GPL vmlinux 0xb2e984f9 pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0xb300437f led_stop_software_blink +EXPORT_SYMBOL_GPL vmlinux 0xb302348b irq_domain_update_bus_token EXPORT_SYMBOL_GPL vmlinux 0xb307c909 devlink_fmsg_u64_pair_put -EXPORT_SYMBOL_GPL vmlinux 0xb31202ba regulator_is_supported_voltage -EXPORT_SYMBOL_GPL vmlinux 0xb313278a sdio_readl +EXPORT_SYMBOL_GPL vmlinux 0xb3145e6f usb_get_role_switch_default_mode +EXPORT_SYMBOL_GPL vmlinux 0xb316021f regmap_parse_val +EXPORT_SYMBOL_GPL vmlinux 0xb31b1ee0 vp_modern_remove +EXPORT_SYMBOL_GPL vmlinux 0xb31cd022 usb_root_hub_lost_power +EXPORT_SYMBOL_GPL vmlinux 0xb321bc62 clk_hw_unregister EXPORT_SYMBOL_GPL vmlinux 0xb3253ed9 hpet_rtc_timer_init -EXPORT_SYMBOL_GPL vmlinux 0xb32a6cb1 __mmdrop -EXPORT_SYMBOL_GPL vmlinux 0xb34d4ad1 fscrypt_ioctl_remove_key_all_users -EXPORT_SYMBOL_GPL vmlinux 0xb3681442 lwtunnel_build_state -EXPORT_SYMBOL_GPL vmlinux 0xb36aaa4b bus_find_device -EXPORT_SYMBOL_GPL vmlinux 0xb36fb5e4 ata_pci_sff_activate_host -EXPORT_SYMBOL_GPL vmlinux 0xb37ed397 tcp_unregister_congestion_control -EXPORT_SYMBOL_GPL vmlinux 0xb387eaab is_virtio_device -EXPORT_SYMBOL_GPL vmlinux 0xb38ee6b7 alloc_io_pgtable_ops -EXPORT_SYMBOL_GPL vmlinux 0xb391d652 dev_pm_qos_flags -EXPORT_SYMBOL_GPL vmlinux 0xb3938beb spi_mem_dirmap_read -EXPORT_SYMBOL_GPL vmlinux 0xb3a22aff devm_kfree -EXPORT_SYMBOL_GPL vmlinux 0xb3bbabed acpi_bind_one -EXPORT_SYMBOL_GPL vmlinux 0xb3d57527 extcon_get_edev_name -EXPORT_SYMBOL_GPL vmlinux 0xb3d74104 thermal_remove_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0xb33f0046 tracing_cond_snapshot_data +EXPORT_SYMBOL_GPL vmlinux 0xb345a868 platform_get_irq_byname_optional +EXPORT_SYMBOL_GPL vmlinux 0xb3543469 __SCK__tp_func_sched_util_est_se_tp +EXPORT_SYMBOL_GPL vmlinux 0xb36011a4 ip6_datagram_recv_ctl +EXPORT_SYMBOL_GPL vmlinux 0xb36b7964 wm831x_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0xb36e0268 bind_interdomain_evtchn_to_irq_lateeoi +EXPORT_SYMBOL_GPL vmlinux 0xb370600e fl6_merge_options +EXPORT_SYMBOL_GPL vmlinux 0xb37e2111 regmap_irq_get_domain +EXPORT_SYMBOL_GPL vmlinux 0xb3a7b82b spi_res_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb3cb0172 pci_epc_clear_bar +EXPORT_SYMBOL_GPL vmlinux 0xb3cc9c45 usb_phy_roothub_suspend +EXPORT_SYMBOL_GPL vmlinux 0xb3e0f32d usb_hcd_platform_shutdown EXPORT_SYMBOL_GPL vmlinux 0xb3e6e60a __traceiter_sched_overutilized_tp -EXPORT_SYMBOL_GPL vmlinux 0xb3f13b94 rio_request_outb_mbox -EXPORT_SYMBOL_GPL vmlinux 0xb400fbde nvdimm_bus_check_dimm_count -EXPORT_SYMBOL_GPL vmlinux 0xb41b2cca regmap_register_patch -EXPORT_SYMBOL_GPL vmlinux 0xb4235548 fuse_dev_install -EXPORT_SYMBOL_GPL vmlinux 0xb42693b7 sysfs_create_mount_point -EXPORT_SYMBOL_GPL vmlinux 0xb42df4ff dev_pm_opp_set_prop_name +EXPORT_SYMBOL_GPL vmlinux 0xb3e8395d dev_pm_opp_get_opp_count +EXPORT_SYMBOL_GPL vmlinux 0xb3ea86b6 subsys_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0xb40064f8 irq_find_matching_fwspec +EXPORT_SYMBOL_GPL vmlinux 0xb406cbc3 usb_choose_configuration +EXPORT_SYMBOL_GPL vmlinux 0xb40e6a7a rio_register_mport EXPORT_SYMBOL_GPL vmlinux 0xb43f9365 ktime_get -EXPORT_SYMBOL_GPL vmlinux 0xb4413cf1 fwnode_usb_role_switch_get EXPORT_SYMBOL_GPL vmlinux 0xb4429b64 acpi_dev_resource_ext_address_space -EXPORT_SYMBOL_GPL vmlinux 0xb4457b52 pci_ats_supported -EXPORT_SYMBOL_GPL vmlinux 0xb44791c8 trace_output_call EXPORT_SYMBOL_GPL vmlinux 0xb44e18ea audit_enabled -EXPORT_SYMBOL_GPL vmlinux 0xb4596f77 devm_clk_register -EXPORT_SYMBOL_GPL vmlinux 0xb45bdfc8 pci_generic_config_read32 -EXPORT_SYMBOL_GPL vmlinux 0xb45f3bbd vfio_pci_core_init_device -EXPORT_SYMBOL_GPL vmlinux 0xb4651765 clk_hw_get_rate -EXPORT_SYMBOL_GPL vmlinux 0xb4692f2c tty_port_tty_hangup -EXPORT_SYMBOL_GPL vmlinux 0xb475d362 proc_create_net_data -EXPORT_SYMBOL_GPL vmlinux 0xb47dc487 iommu_dev_enable_feature -EXPORT_SYMBOL_GPL vmlinux 0xb4841c0a edac_device_add_device -EXPORT_SYMBOL_GPL vmlinux 0xb485b112 ata_sff_pause -EXPORT_SYMBOL_GPL vmlinux 0xb4870018 __nvdimm_create +EXPORT_SYMBOL_GPL vmlinux 0xb4518a1e synth_event_create +EXPORT_SYMBOL_GPL vmlinux 0xb452698b fuse_conn_init +EXPORT_SYMBOL_GPL vmlinux 0xb4617819 devm_regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0xb4641364 inet_csk_route_child_sock +EXPORT_SYMBOL_GPL vmlinux 0xb47cd485 spi_mem_get_name +EXPORT_SYMBOL_GPL vmlinux 0xb48c5cde metadata_dst_alloc_percpu EXPORT_SYMBOL_GPL vmlinux 0xb48f0638 software_node_register -EXPORT_SYMBOL_GPL vmlinux 0xb49a93a3 devlink_resource_occ_get_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb4acd717 blk_mq_alloc_request_hctx -EXPORT_SYMBOL_GPL vmlinux 0xb4b08b65 disk_force_media_change +EXPORT_SYMBOL_GPL vmlinux 0xb49e5058 devm_gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0xb4a5de11 __traceiter_neigh_update_done +EXPORT_SYMBOL_GPL vmlinux 0xb4a89d21 vfs_cancel_lock EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb4c1e457 vfio_pci_core_disable -EXPORT_SYMBOL_GPL vmlinux 0xb4c50213 pm_clk_init -EXPORT_SYMBOL_GPL vmlinux 0xb4e81f77 platform_get_irq_optional +EXPORT_SYMBOL_GPL vmlinux 0xb4be935e uart_console_write +EXPORT_SYMBOL_GPL vmlinux 0xb4c0839f policy_has_boost_freq +EXPORT_SYMBOL_GPL vmlinux 0xb4c5e863 gpiod_get_array_value +EXPORT_SYMBOL_GPL vmlinux 0xb4c9625c __fib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xb4cc72d4 kthread_park +EXPORT_SYMBOL_GPL vmlinux 0xb4cf0a47 cpufreq_cpu_put +EXPORT_SYMBOL_GPL vmlinux 0xb4dd1a79 inet_twsk_hashdance +EXPORT_SYMBOL_GPL vmlinux 0xb4e79fe1 ata_qc_get_active EXPORT_SYMBOL_GPL vmlinux 0xb4ea7cf7 kgdb_connected -EXPORT_SYMBOL_GPL vmlinux 0xb4ecae69 efivar_entry_set EXPORT_SYMBOL_GPL vmlinux 0xb4eda0da ring_buffer_event_length -EXPORT_SYMBOL_GPL vmlinux 0xb4f4eb8c shmem_read_mapping_page_gfp -EXPORT_SYMBOL_GPL vmlinux 0xb4f8ebe0 rio_mport_get_feature +EXPORT_SYMBOL_GPL vmlinux 0xb4f304f7 blkdev_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xb4f76dfd xhci_resume EXPORT_SYMBOL_GPL vmlinux 0xb501b2df nd_cmd_dimm_desc EXPORT_SYMBOL_GPL vmlinux 0xb510c250 raw_v4_hashinfo -EXPORT_SYMBOL_GPL vmlinux 0xb5134386 spi_slave_abort +EXPORT_SYMBOL_GPL vmlinux 0xb516a75b l3mdev_link_scope_lookup EXPORT_SYMBOL_GPL vmlinux 0xb51fbd64 edac_op_state EXPORT_SYMBOL_GPL vmlinux 0xb520eb79 btree_merge -EXPORT_SYMBOL_GPL vmlinux 0xb524c0a8 sdio_retune_hold_now -EXPORT_SYMBOL_GPL vmlinux 0xb52efcc7 thermal_cooling_device_register -EXPORT_SYMBOL_GPL vmlinux 0xb5329e6e usb_role_switch_get -EXPORT_SYMBOL_GPL vmlinux 0xb54ce0f5 bpf_prog_sub -EXPORT_SYMBOL_GPL vmlinux 0xb564efbc dm_per_bio_data -EXPORT_SYMBOL_GPL vmlinux 0xb5738cc3 __rio_local_read_config_32 -EXPORT_SYMBOL_GPL vmlinux 0xb58919ce pci_check_and_mask_intx +EXPORT_SYMBOL_GPL vmlinux 0xb53974ac pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0xb54b46d9 skb_complete_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0xb559c29d crypto_alg_extsize +EXPORT_SYMBOL_GPL vmlinux 0xb56a2ecc usb_get_status +EXPORT_SYMBOL_GPL vmlinux 0xb56f6023 pci_load_and_free_saved_state +EXPORT_SYMBOL_GPL vmlinux 0xb57f395d rio_unregister_mport +EXPORT_SYMBOL_GPL vmlinux 0xb58c2966 pci_epc_get +EXPORT_SYMBOL_GPL vmlinux 0xb58f43a9 virtqueue_kick +EXPORT_SYMBOL_GPL vmlinux 0xb59aeee1 xfrm_audit_state_add EXPORT_SYMBOL_GPL vmlinux 0xb5a83e35 gnttab_setup_auto_xlat_frames EXPORT_SYMBOL_GPL vmlinux 0xb5a8c226 acpi_gsi_to_irq -EXPORT_SYMBOL_GPL vmlinux 0xb5adee22 __dev_forward_skb -EXPORT_SYMBOL_GPL vmlinux 0xb5d0fe8f crypto_unregister_scomp -EXPORT_SYMBOL_GPL vmlinux 0xb5d19004 bus_sort_breadthfirst -EXPORT_SYMBOL_GPL vmlinux 0xb5fdec2d devm_hwspin_lock_request_specific -EXPORT_SYMBOL_GPL vmlinux 0xb60326d5 kobject_uevent_env -EXPORT_SYMBOL_GPL vmlinux 0xb6235c5a fuse_conn_init +EXPORT_SYMBOL_GPL vmlinux 0xb5b0d80d sched_trace_rq_avg_irq +EXPORT_SYMBOL_GPL vmlinux 0xb5ccfc04 dev_pm_opp_sync_regulators +EXPORT_SYMBOL_GPL vmlinux 0xb5d9c04e pinctrl_dev_get_devname +EXPORT_SYMBOL_GPL vmlinux 0xb5dc3949 __traceiter_pelt_se_tp +EXPORT_SYMBOL_GPL vmlinux 0xb5fbf3c1 rdev_get_id +EXPORT_SYMBOL_GPL vmlinux 0xb6155017 pci_hp_deregister +EXPORT_SYMBOL_GPL vmlinux 0xb62038c1 pci_epf_unbind +EXPORT_SYMBOL_GPL vmlinux 0xb6207790 inet6_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0xb622bed3 __mmc_poll_for_busy EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb627784a __pci_epf_register_driver EXPORT_SYMBOL_GPL vmlinux 0xb6357e53 cpuidle_enable_device -EXPORT_SYMBOL_GPL vmlinux 0xb63e56e4 efivars_unregister EXPORT_SYMBOL_GPL vmlinux 0xb6410433 mpi_addm EXPORT_SYMBOL_GPL vmlinux 0xb655f91b pci_epc_get_next_free_bar -EXPORT_SYMBOL_GPL vmlinux 0xb65aac45 ata_sas_port_destroy -EXPORT_SYMBOL_GPL vmlinux 0xb66f0d83 nf_route +EXPORT_SYMBOL_GPL vmlinux 0xb6566a8f dma_buf_pin +EXPORT_SYMBOL_GPL vmlinux 0xb6575901 md_start +EXPORT_SYMBOL_GPL vmlinux 0xb6723654 clone_private_mount +EXPORT_SYMBOL_GPL vmlinux 0xb6725168 rio_mport_get_physefb EXPORT_SYMBOL_GPL vmlinux 0xb6787346 sfp_unregister_socket -EXPORT_SYMBOL_GPL vmlinux 0xb67ae404 blkg_prfill_rwstat -EXPORT_SYMBOL_GPL vmlinux 0xb67b0caf md_rdev_clear -EXPORT_SYMBOL_GPL vmlinux 0xb6818396 device_get_child_node_count -EXPORT_SYMBOL_GPL vmlinux 0xb681c335 kernel_read_file -EXPORT_SYMBOL_GPL vmlinux 0xb6885852 inet_ehash_nolisten +EXPORT_SYMBOL_GPL vmlinux 0xb68055d8 devlink_rate_leaf_destroy EXPORT_SYMBOL_GPL vmlinux 0xb6888188 klp_shadow_get_or_alloc -EXPORT_SYMBOL_GPL vmlinux 0xb6ace881 ipv6_find_tlv -EXPORT_SYMBOL_GPL vmlinux 0xb6c06740 acpi_dev_get_first_consumer_dev +EXPORT_SYMBOL_GPL vmlinux 0xb69bf9c0 dev_pm_opp_init_cpufreq_table +EXPORT_SYMBOL_GPL vmlinux 0xb6a5cdbe is_transparent_hugepage +EXPORT_SYMBOL_GPL vmlinux 0xb6b895aa vc_scrolldelta_helper EXPORT_SYMBOL_GPL vmlinux 0xb6c5e614 acpi_processor_evaluate_cst -EXPORT_SYMBOL_GPL vmlinux 0xb6dc02bc serial8250_rpm_put_tx +EXPORT_SYMBOL_GPL vmlinux 0xb6d355b1 pm_generic_thaw_noirq +EXPORT_SYMBOL_GPL vmlinux 0xb6d3a9ee usb_hcd_giveback_urb +EXPORT_SYMBOL_GPL vmlinux 0xb6d45215 __tracepoint_pelt_se_tp +EXPORT_SYMBOL_GPL vmlinux 0xb6dfe316 blk_trace_remove EXPORT_SYMBOL_GPL vmlinux 0xb6e6d99d clk_disable EXPORT_SYMBOL_GPL vmlinux 0xb6eabe37 register_kprobes -EXPORT_SYMBOL_GPL vmlinux 0xb6ee13f0 bio_alloc_kiocb -EXPORT_SYMBOL_GPL vmlinux 0xb703b3d5 usb_unlocked_disable_lpm -EXPORT_SYMBOL_GPL vmlinux 0xb70c5a9c __pci_hp_initialize -EXPORT_SYMBOL_GPL vmlinux 0xb7268339 class_destroy -EXPORT_SYMBOL_GPL vmlinux 0xb72f0e19 __SCK__tp_func_pelt_rt_tp +EXPORT_SYMBOL_GPL vmlinux 0xb6ed10a7 device_pm_wait_for_dev +EXPORT_SYMBOL_GPL vmlinux 0xb6fcbfbb vfio_pci_core_err_handlers +EXPORT_SYMBOL_GPL vmlinux 0xb7029284 cgrp_dfl_root EXPORT_SYMBOL_GPL vmlinux 0xb7329c06 clk_set_phase EXPORT_SYMBOL_GPL vmlinux 0xb73713d7 nvmem_add_cell_lookups -EXPORT_SYMBOL_GPL vmlinux 0xb737a3e7 iptunnel_handle_offloads -EXPORT_SYMBOL_GPL vmlinux 0xb739a424 debugfs_create_atomic_t -EXPORT_SYMBOL_GPL vmlinux 0xb73a0d06 devlink_port_params_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb73e0309 nvmem_cell_read_u64 +EXPORT_SYMBOL_GPL vmlinux 0xb74989e9 bind_interdomain_evtchn_to_irqhandler_lateeoi EXPORT_SYMBOL_GPL vmlinux 0xb74c31cd wwan_remove_port EXPORT_SYMBOL_GPL vmlinux 0xb75041d1 hv_stimer_legacy_init EXPORT_SYMBOL_GPL vmlinux 0xb761318b sev_active -EXPORT_SYMBOL_GPL vmlinux 0xb77050a2 devm_get_free_pages -EXPORT_SYMBOL_GPL vmlinux 0xb7709f60 pci_sriov_configure_simple -EXPORT_SYMBOL_GPL vmlinux 0xb77386c8 fsverity_cleanup_inode -EXPORT_SYMBOL_GPL vmlinux 0xb77d844f ata_sff_drain_fifo -EXPORT_SYMBOL_GPL vmlinux 0xb77da86d devm_gpiod_get_from_of_node -EXPORT_SYMBOL_GPL vmlinux 0xb7874943 gpiod_set_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xb7620080 devm_init_badblocks +EXPORT_SYMBOL_GPL vmlinux 0xb773d3ab gpiod_set_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0xb78b5f48 is_dock_device +EXPORT_SYMBOL_GPL vmlinux 0xb78c223b regmap_get_raw_write_max EXPORT_SYMBOL_GPL vmlinux 0xb7a387fc synchronize_rcu_tasks_rude -EXPORT_SYMBOL_GPL vmlinux 0xb7b2d13e gpiochip_add_pin_range -EXPORT_SYMBOL_GPL vmlinux 0xb7b4d61a pinctrl_force_sleep -EXPORT_SYMBOL_GPL vmlinux 0xb7c51e8d dw_pcie_host_init +EXPORT_SYMBOL_GPL vmlinux 0xb7c297f1 gpiod_export_link +EXPORT_SYMBOL_GPL vmlinux 0xb7c3443d dev_pm_opp_free_cpufreq_table EXPORT_SYMBOL_GPL vmlinux 0xb7c69a63 unregister_vmap_purge_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb7c97d79 pinctrl_utils_add_map_configs -EXPORT_SYMBOL_GPL vmlinux 0xb7cff060 lp8788_write_byte -EXPORT_SYMBOL_GPL vmlinux 0xb7d78379 ata_qc_get_active +EXPORT_SYMBOL_GPL vmlinux 0xb7ca0b44 pci_epf_remove_vepf +EXPORT_SYMBOL_GPL vmlinux 0xb7cd8f4d devm_platform_get_and_ioremap_resource +EXPORT_SYMBOL_GPL vmlinux 0xb7d0811f devres_remove EXPORT_SYMBOL_GPL vmlinux 0xb7d7c12e hpet_set_alarm_time -EXPORT_SYMBOL_GPL vmlinux 0xb7e34024 inode_congested -EXPORT_SYMBOL_GPL vmlinux 0xb7e40dd3 alarmtimer_get_rtcdev -EXPORT_SYMBOL_GPL vmlinux 0xb7f38fd9 devm_clk_hw_register EXPORT_SYMBOL_GPL vmlinux 0xb7f73ef8 xas_init_marks EXPORT_SYMBOL_GPL vmlinux 0xb7f990e9 rht_bucket_nested -EXPORT_SYMBOL_GPL vmlinux 0xb7fcf717 em_dev_unregister_perf_domain -EXPORT_SYMBOL_GPL vmlinux 0xb802106c fsnotify_get_group -EXPORT_SYMBOL_GPL vmlinux 0xb804ab64 gnttab_page_cache_put -EXPORT_SYMBOL_GPL vmlinux 0xb8242c7e intel_pinctrl_resume_noirq +EXPORT_SYMBOL_GPL vmlinux 0xb801c35e rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0xb80c2bb1 dev_pm_opp_xlate_required_opp +EXPORT_SYMBOL_GPL vmlinux 0xb811f130 account_locked_vm EXPORT_SYMBOL_GPL vmlinux 0xb8273d0b __wake_up_sync -EXPORT_SYMBOL_GPL vmlinux 0xb8294d3e devm_krealloc -EXPORT_SYMBOL_GPL vmlinux 0xb8353926 __lock_page_killable -EXPORT_SYMBOL_GPL vmlinux 0xb8354a89 battery_hook_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb838c114 device_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0xb82e694c skb_zerocopy_iter_dgram +EXPORT_SYMBOL_GPL vmlinux 0xb841d2a7 platform_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xb842d8df pci_cfg_access_lock +EXPORT_SYMBOL_GPL vmlinux 0xb844e6b3 cdrom_read_tocentry +EXPORT_SYMBOL_GPL vmlinux 0xb8472268 usb_deregister_device_driver EXPORT_SYMBOL_GPL vmlinux 0xb847585f is_hash_blacklisted -EXPORT_SYMBOL_GPL vmlinux 0xb871f6ff regulator_set_voltage_rdev -EXPORT_SYMBOL_GPL vmlinux 0xb8750fe1 dequeue_signal -EXPORT_SYMBOL_GPL vmlinux 0xb87d6f79 rtc_alarm_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0xb85dbac9 __vfs_setxattr_locked +EXPORT_SYMBOL_GPL vmlinux 0xb87f40fe cppc_set_enable +EXPORT_SYMBOL_GPL vmlinux 0xb882c4d8 ata_slave_link_init +EXPORT_SYMBOL_GPL vmlinux 0xb889a302 irq_setup_alt_chip EXPORT_SYMBOL_GPL vmlinux 0xb88bc47e arch_apei_report_mem_error +EXPORT_SYMBOL_GPL vmlinux 0xb88c566b dm_put EXPORT_SYMBOL_GPL vmlinux 0xb88dbfce irq_set_irqchip_state -EXPORT_SYMBOL_GPL vmlinux 0xb89168cf iommu_sva_find -EXPORT_SYMBOL_GPL vmlinux 0xb89439b5 percpu_up_write -EXPORT_SYMBOL_GPL vmlinux 0xb8996e00 acpi_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0xb88fdb80 __netpoll_setup +EXPORT_SYMBOL_GPL vmlinux 0xb89c731e rtc_alarm_irq_enable EXPORT_SYMBOL_GPL vmlinux 0xb89e69b1 jump_label_update_timeout -EXPORT_SYMBOL_GPL vmlinux 0xb8a59f53 phy_resolve_aneg_linkmode -EXPORT_SYMBOL_GPL vmlinux 0xb8af38bc param_set_uint_minmax +EXPORT_SYMBOL_GPL vmlinux 0xb8af7b48 devlink_params_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb8b0b86a to_nd_region +EXPORT_SYMBOL_GPL vmlinux 0xb8b24db4 device_del EXPORT_SYMBOL_GPL vmlinux 0xb8b2b1f7 mce_register_decode_chain -EXPORT_SYMBOL_GPL vmlinux 0xb8c2000b event_triggers_call EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put +EXPORT_SYMBOL_GPL vmlinux 0xb8d72021 ip6_input +EXPORT_SYMBOL_GPL vmlinux 0xb8eefa1a sata_scr_read +EXPORT_SYMBOL_GPL vmlinux 0xb8f0fb87 gpiod_export EXPORT_SYMBOL_GPL vmlinux 0xb8f11603 idr_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb8fdfc6c efivar_entry_add +EXPORT_SYMBOL_GPL vmlinux 0xb8fe67b8 gpiod_cansleep EXPORT_SYMBOL_GPL vmlinux 0xb912560d static_key_disable -EXPORT_SYMBOL_GPL vmlinux 0xb91716ae fwnode_handle_get -EXPORT_SYMBOL_GPL vmlinux 0xb929f245 em_dev_register_perf_domain -EXPORT_SYMBOL_GPL vmlinux 0xb9311c74 crypto_stats_ahash_update -EXPORT_SYMBOL_GPL vmlinux 0xb931ec51 phy_led_trigger_change_speed -EXPORT_SYMBOL_GPL vmlinux 0xb947d442 devm_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0xb966f59f pci_disable_sriov +EXPORT_SYMBOL_GPL vmlinux 0xb9162214 virtqueue_get_buf_ctx +EXPORT_SYMBOL_GPL vmlinux 0xb9184e6d pinctrl_utils_add_map_mux +EXPORT_SYMBOL_GPL vmlinux 0xb9237851 vfio_external_group_match_file +EXPORT_SYMBOL_GPL vmlinux 0xb92451eb kill_dev_dax +EXPORT_SYMBOL_GPL vmlinux 0xb92e397a dmaengine_desc_set_metadata_len +EXPORT_SYMBOL_GPL vmlinux 0xb941650a firmware_kobj +EXPORT_SYMBOL_GPL vmlinux 0xb946576e fib_nexthop_info EXPORT_SYMBOL_GPL vmlinux 0xb9681621 xdp_do_flush -EXPORT_SYMBOL_GPL vmlinux 0xb97cf950 pm_generic_freeze_late +EXPORT_SYMBOL_GPL vmlinux 0xb97e50fe crypto_register_templates +EXPORT_SYMBOL_GPL vmlinux 0xb984d3bb dev_pm_opp_get_voltage EXPORT_SYMBOL_GPL vmlinux 0xb9852d11 __traceiter_mc_event +EXPORT_SYMBOL_GPL vmlinux 0xb9899609 fat_truncate_time +EXPORT_SYMBOL_GPL vmlinux 0xb989dd38 bpf_trace_run2 EXPORT_SYMBOL_GPL vmlinux 0xb98bb315 phy_gbit_fibre_features -EXPORT_SYMBOL_GPL vmlinux 0xb99a0f8c pwm_capture -EXPORT_SYMBOL_GPL vmlinux 0xb9aa96f6 __SCK__tp_func_non_standard_event -EXPORT_SYMBOL_GPL vmlinux 0xb9aff2e9 __SCK__tp_func_tcp_send_reset +EXPORT_SYMBOL_GPL vmlinux 0xb9a5402b thermal_cooling_device_unregister EXPORT_SYMBOL_GPL vmlinux 0xb9b9df41 usb_amd_dev_put +EXPORT_SYMBOL_GPL vmlinux 0xb9bc49f7 ata_sff_exec_command +EXPORT_SYMBOL_GPL vmlinux 0xb9be3b5f tcp_register_congestion_control EXPORT_SYMBOL_GPL vmlinux 0xb9c16f51 hv_max_vp_index EXPORT_SYMBOL_GPL vmlinux 0xb9c425de register_syscore_ops EXPORT_SYMBOL_GPL vmlinux 0xb9d025c9 llist_del_first -EXPORT_SYMBOL_GPL vmlinux 0xb9e0bb1c iopf_queue_remove_device -EXPORT_SYMBOL_GPL vmlinux 0xb9fe84e7 pci_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0xb9d9d4d1 regmap_field_bulk_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb9eaa2dd __intel_scu_ipc_register EXPORT_SYMBOL_GPL vmlinux 0xba01ec83 hv_stimer_global_cleanup EXPORT_SYMBOL_GPL vmlinux 0xba057786 kernel_read_file_from_path_initns +EXPORT_SYMBOL_GPL vmlinux 0xba0998d9 ata_bmdma_port_start32 +EXPORT_SYMBOL_GPL vmlinux 0xba0b8840 fwnode_get_named_gpiod +EXPORT_SYMBOL_GPL vmlinux 0xba19772a umd_load_blob EXPORT_SYMBOL_GPL vmlinux 0xba220db7 __wake_up_sync_key +EXPORT_SYMBOL_GPL vmlinux 0xba278205 rio_request_dma +EXPORT_SYMBOL_GPL vmlinux 0xba2a90b8 devm_acpi_dev_add_driver_gpios EXPORT_SYMBOL_GPL vmlinux 0xba2b7f64 cpufreq_generic_get -EXPORT_SYMBOL_GPL vmlinux 0xba2dc013 icc_enable -EXPORT_SYMBOL_GPL vmlinux 0xba4982fc acpi_subsys_poweroff -EXPORT_SYMBOL_GPL vmlinux 0xba5114d6 bpf_trace_run2 -EXPORT_SYMBOL_GPL vmlinux 0xba6fd12a ata_host_start -EXPORT_SYMBOL_GPL vmlinux 0xba705c05 rdev_get_name -EXPORT_SYMBOL_GPL vmlinux 0xba7112de __phy_modify -EXPORT_SYMBOL_GPL vmlinux 0xba7d71e2 regulator_get_error_flags -EXPORT_SYMBOL_GPL vmlinux 0xba82b386 devlink_param_value_changed +EXPORT_SYMBOL_GPL vmlinux 0xba3b5d64 dm_post_suspending +EXPORT_SYMBOL_GPL vmlinux 0xba3bd7a3 cros_ec_check_features +EXPORT_SYMBOL_GPL vmlinux 0xba4a9998 sdio_readsb +EXPORT_SYMBOL_GPL vmlinux 0xba5c7f76 devfreq_event_get_event +EXPORT_SYMBOL_GPL vmlinux 0xba5edb7f __netdev_watchdog_up +EXPORT_SYMBOL_GPL vmlinux 0xba68b1ee nvdimm_delete +EXPORT_SYMBOL_GPL vmlinux 0xba6beede devm_phy_optional_get EXPORT_SYMBOL_GPL vmlinux 0xba82f246 uv_bios_install_heap -EXPORT_SYMBOL_GPL vmlinux 0xba90ac7e aead_geniv_alloc -EXPORT_SYMBOL_GPL vmlinux 0xba9b00bb platform_get_resource_byname -EXPORT_SYMBOL_GPL vmlinux 0xba9d8895 get_pid_task -EXPORT_SYMBOL_GPL vmlinux 0xbab12813 powercap_register_zone +EXPORT_SYMBOL_GPL vmlinux 0xba87e828 vfio_pci_core_match +EXPORT_SYMBOL_GPL vmlinux 0xba892ee6 crypto_stats_compress +EXPORT_SYMBOL_GPL vmlinux 0xba8ac2f0 dev_pm_clear_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xba946c3b sdio_writeb +EXPORT_SYMBOL_GPL vmlinux 0xbaa38885 tty_port_register_device_serdev EXPORT_SYMBOL_GPL vmlinux 0xbab9a9f0 maxim_charger_currents -EXPORT_SYMBOL_GPL vmlinux 0xbabdaa95 __traceiter_neigh_update -EXPORT_SYMBOL_GPL vmlinux 0xbac17997 battery_hook_register -EXPORT_SYMBOL_GPL vmlinux 0xbac9bc41 pci_epc_destroy -EXPORT_SYMBOL_GPL vmlinux 0xbacc3880 fsnotify_find_mark +EXPORT_SYMBOL_GPL vmlinux 0xbac819ef serdev_controller_add +EXPORT_SYMBOL_GPL vmlinux 0xbae26113 __percpu_down_read EXPORT_SYMBOL_GPL vmlinux 0xbaf22757 kvfree_call_rcu EXPORT_SYMBOL_GPL vmlinux 0xbaf6850c fsnotify_wait_marks_destroyed -EXPORT_SYMBOL_GPL vmlinux 0xbaf8b1e9 dma_async_device_channel_register EXPORT_SYMBOL_GPL vmlinux 0xbaf9d785 __tss_limit_invalid -EXPORT_SYMBOL_GPL vmlinux 0xbafb16ae crypto_register_kpp EXPORT_SYMBOL_GPL vmlinux 0xbb0ab47b debug_locks EXPORT_SYMBOL_GPL vmlinux 0xbb0b25d2 register_xenbus_watch -EXPORT_SYMBOL_GPL vmlinux 0xbb284f36 auxiliary_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0xbb36a07c sdio_retune_release +EXPORT_SYMBOL_GPL vmlinux 0xbb0bb931 regulator_map_voltage_ascend +EXPORT_SYMBOL_GPL vmlinux 0xbb1d9056 crypto_stats_skcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0xbb22fb40 gpiod_get_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xbb3b8240 blkcg_policy_register +EXPORT_SYMBOL_GPL vmlinux 0xbb472119 mbox_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xbb47b857 sata_port_ops EXPORT_SYMBOL_GPL vmlinux 0xbb5598ce get_llc_id -EXPORT_SYMBOL_GPL vmlinux 0xbb63e844 bsg_register_queue +EXPORT_SYMBOL_GPL vmlinux 0xbb644a8b virtqueue_enable_cb_prepare +EXPORT_SYMBOL_GPL vmlinux 0xbb6508da random_get_entropy_fallback EXPORT_SYMBOL_GPL vmlinux 0xbb6a3cbd devlink_fmsg_arr_pair_nest_start EXPORT_SYMBOL_GPL vmlinux 0xbb6f025a asymmetric_key_generate_id +EXPORT_SYMBOL_GPL vmlinux 0xbb70c4a9 pm_generic_resume_early EXPORT_SYMBOL_GPL vmlinux 0xbb7195a5 xdp_warn -EXPORT_SYMBOL_GPL vmlinux 0xbb8d4714 tpm_try_get_ops EXPORT_SYMBOL_GPL vmlinux 0xbb93eec5 ioasid_alloc -EXPORT_SYMBOL_GPL vmlinux 0xbba3c8c0 crypto_grab_shash -EXPORT_SYMBOL_GPL vmlinux 0xbbb017b1 synth_event_gen_cmd_array_start -EXPORT_SYMBOL_GPL vmlinux 0xbbb4089e hwspin_lock_request +EXPORT_SYMBOL_GPL vmlinux 0xbb973e39 iomap_readahead +EXPORT_SYMBOL_GPL vmlinux 0xbb9c3d73 led_classdev_notify_brightness_hw_changed +EXPORT_SYMBOL_GPL vmlinux 0xbb9f8d69 kthread_flush_worker +EXPORT_SYMBOL_GPL vmlinux 0xbba4795e ima_file_check +EXPORT_SYMBOL_GPL vmlinux 0xbbaa94bf ata_bmdma_irq_clear EXPORT_SYMBOL_GPL vmlinux 0xbbb98859 edid_info -EXPORT_SYMBOL_GPL vmlinux 0xbbd9ad38 fb_bl_default_curve -EXPORT_SYMBOL_GPL vmlinux 0xbbe2f9e5 skcipher_walk_complete +EXPORT_SYMBOL_GPL vmlinux 0xbbbcdccb show_class_attr_string +EXPORT_SYMBOL_GPL vmlinux 0xbbcfe88b dma_buf_fd EXPORT_SYMBOL_GPL vmlinux 0xbbe56404 sprint_OID -EXPORT_SYMBOL_GPL vmlinux 0xbbf46a3b ata_acpi_cbl_80wire EXPORT_SYMBOL_GPL vmlinux 0xbbf4dfbe phy_basic_t1_features -EXPORT_SYMBOL_GPL vmlinux 0xbbfbfa53 rio_map_outb_region -EXPORT_SYMBOL_GPL vmlinux 0xbc0e5e5f __usb_create_hcd -EXPORT_SYMBOL_GPL vmlinux 0xbc1f6ad0 subsys_system_register +EXPORT_SYMBOL_GPL vmlinux 0xbbff7c61 mbox_request_channel EXPORT_SYMBOL_GPL vmlinux 0xbc3f2cb0 timecounter_cyc2time +EXPORT_SYMBOL_GPL vmlinux 0xbc3f7cb5 usb_role_switch_find_by_fwnode EXPORT_SYMBOL_GPL vmlinux 0xbc4e24bb copy_mc_to_kernel +EXPORT_SYMBOL_GPL vmlinux 0xbc55cf6b __irq_domain_add EXPORT_SYMBOL_GPL vmlinux 0xbc60dc37 cpufreq_show_cpus -EXPORT_SYMBOL_GPL vmlinux 0xbc61af33 vfs_test_lock +EXPORT_SYMBOL_GPL vmlinux 0xbc63ef0b crypto_lookup_template EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0xbc766f82 unregister_acpi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0xbc777c0c mmc_regulator_set_vqmmc -EXPORT_SYMBOL_GPL vmlinux 0xbc835ec2 dev_coredumpv -EXPORT_SYMBOL_GPL vmlinux 0xbc989f06 __devm_spi_alloc_controller +EXPORT_SYMBOL_GPL vmlinux 0xbc89a29e __SCK__tp_func_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0xbc95731f gpiochip_irqchip_irq_valid EXPORT_SYMBOL_GPL vmlinux 0xbc9b8588 ehci_cf_port_reset_rwsem -EXPORT_SYMBOL_GPL vmlinux 0xbca101f2 __pm_runtime_disable -EXPORT_SYMBOL_GPL vmlinux 0xbca30f7d usb_get_maximum_speed +EXPORT_SYMBOL_GPL vmlinux 0xbc9bfc85 add_swap_extent +EXPORT_SYMBOL_GPL vmlinux 0xbca5074f __traceiter_sched_cpu_capacity_tp +EXPORT_SYMBOL_GPL vmlinux 0xbca82e39 usb_set_device_state EXPORT_SYMBOL_GPL vmlinux 0xbcb838a1 amd_flush_garts EXPORT_SYMBOL_GPL vmlinux 0xbcc15e75 ktime_get_coarse_with_offset -EXPORT_SYMBOL_GPL vmlinux 0xbcc632ab hwspin_lock_get_id EXPORT_SYMBOL_GPL vmlinux 0xbccfd4d8 register_oldmem_pfn_is_ram -EXPORT_SYMBOL_GPL vmlinux 0xbcdc722a dw_pcie_ep_init_notify EXPORT_SYMBOL_GPL vmlinux 0xbcdd5b99 iommu_group_set_name -EXPORT_SYMBOL_GPL vmlinux 0xbce03bb0 devm_hwspin_lock_unregister -EXPORT_SYMBOL_GPL vmlinux 0xbcf1cd7a pci_d3cold_disable EXPORT_SYMBOL_GPL vmlinux 0xbcf1f0e6 zs_create_pool -EXPORT_SYMBOL_GPL vmlinux 0xbd006c17 __sock_recv_ts_and_drops -EXPORT_SYMBOL_GPL vmlinux 0xbd04c501 __SCK__tp_func_block_rq_insert -EXPORT_SYMBOL_GPL vmlinux 0xbd328a5e fib_nexthop_info +EXPORT_SYMBOL_GPL vmlinux 0xbd003f36 get_net_ns_by_fd +EXPORT_SYMBOL_GPL vmlinux 0xbd1e4085 __trace_note_message +EXPORT_SYMBOL_GPL vmlinux 0xbd2e08fb do_truncate +EXPORT_SYMBOL_GPL vmlinux 0xbd32d4d7 ata_dev_set_feature +EXPORT_SYMBOL_GPL vmlinux 0xbd35cc82 input_ff_upload EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq -EXPORT_SYMBOL_GPL vmlinux 0xbd4941ef _proc_mkdir -EXPORT_SYMBOL_GPL vmlinux 0xbd6dac54 iomap_readahead +EXPORT_SYMBOL_GPL vmlinux 0xbd41efa0 kernfs_notify +EXPORT_SYMBOL_GPL vmlinux 0xbd5dcc32 usb_unpoison_urb +EXPORT_SYMBOL_GPL vmlinux 0xbd7008e2 device_initialize EXPORT_SYMBOL_GPL vmlinux 0xbd7aaaee add_memory -EXPORT_SYMBOL_GPL vmlinux 0xbd93bbe0 __inet_lookup_established +EXPORT_SYMBOL_GPL vmlinux 0xbd814f6a __blk_req_zone_write_unlock +EXPORT_SYMBOL_GPL vmlinux 0xbd81f5fa driver_find_device +EXPORT_SYMBOL_GPL vmlinux 0xbd828ddd regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0xbd8a5b06 devm_reset_control_array_get +EXPORT_SYMBOL_GPL vmlinux 0xbd8f0139 devm_regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xbd915bd1 init_pid_ns EXPORT_SYMBOL_GPL vmlinux 0xbd99e873 __SCT__tp_func_cpu_idle -EXPORT_SYMBOL_GPL vmlinux 0xbd9b52e7 blkg_lookup_slowpath -EXPORT_SYMBOL_GPL vmlinux 0xbd9efb87 skb_zerocopy -EXPORT_SYMBOL_GPL vmlinux 0xbd9f0fc2 dmaengine_desc_set_metadata_len -EXPORT_SYMBOL_GPL vmlinux 0xbda7148b fscrypt_ioctl_add_key -EXPORT_SYMBOL_GPL vmlinux 0xbdaaf73d list_lru_walk_one -EXPORT_SYMBOL_GPL vmlinux 0xbdb1f3a8 ip_route_output_key_hash EXPORT_SYMBOL_GPL vmlinux 0xbdb2217d hv_is_isolation_supported EXPORT_SYMBOL_GPL vmlinux 0xbdb2dfd5 uv_bios_reserved_page_pa -EXPORT_SYMBOL_GPL vmlinux 0xbdbb1726 cpufreq_table_index_unsorted -EXPORT_SYMBOL_GPL vmlinux 0xbdbb8477 __crypto_alloc_tfm -EXPORT_SYMBOL_GPL vmlinux 0xbdcf9072 usb_free_streams -EXPORT_SYMBOL_GPL vmlinux 0xbdf38a83 rio_mport_write_config_16 -EXPORT_SYMBOL_GPL vmlinux 0xbdfe125b regulator_irq_helper -EXPORT_SYMBOL_GPL vmlinux 0xbe014f79 securityfs_create_dir -EXPORT_SYMBOL_GPL vmlinux 0xbe0bd779 clk_register_mux_table -EXPORT_SYMBOL_GPL vmlinux 0xbe10011c ata_sff_lost_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xbe2bb1b6 __SCK__tp_func_rpm_return_int -EXPORT_SYMBOL_GPL vmlinux 0xbe2f33bf trace_seq_path -EXPORT_SYMBOL_GPL vmlinux 0xbe4bdf0f usb_register_dev -EXPORT_SYMBOL_GPL vmlinux 0xbe4dcce4 blkdev_ioctl -EXPORT_SYMBOL_GPL vmlinux 0xbe5117ca md_find_rdev_rcu -EXPORT_SYMBOL_GPL vmlinux 0xbe5912b5 sch_frag_xmit_hook +EXPORT_SYMBOL_GPL vmlinux 0xbdc7baba device_register +EXPORT_SYMBOL_GPL vmlinux 0xbdce92c6 ohci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0xbdceb90e ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0xbdd6cd5e unregister_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xbdea8179 crypto_stats_get +EXPORT_SYMBOL_GPL vmlinux 0xbdf49764 serial8250_do_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xbe037e99 iommu_present +EXPORT_SYMBOL_GPL vmlinux 0xbe264875 usb_poison_urb +EXPORT_SYMBOL_GPL vmlinux 0xbe315fae usb_deregister +EXPORT_SYMBOL_GPL vmlinux 0xbe39c12a thermal_zone_device_register EXPORT_SYMBOL_GPL vmlinux 0xbe5c888b crypto_chain -EXPORT_SYMBOL_GPL vmlinux 0xbe5e1509 regulator_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0xbe64b067 devlink_rate_leaf_create EXPORT_SYMBOL_GPL vmlinux 0xbe65e182 max_cswd_read_retries +EXPORT_SYMBOL_GPL vmlinux 0xbe67efeb rio_release_inb_dbell EXPORT_SYMBOL_GPL vmlinux 0xbe687e88 wake_up_all_idle_cpus EXPORT_SYMBOL_GPL vmlinux 0xbe6d43d7 ioasid_put -EXPORT_SYMBOL_GPL vmlinux 0xbe6f03ee badblocks_set -EXPORT_SYMBOL_GPL vmlinux 0xbe718149 usb_string EXPORT_SYMBOL_GPL vmlinux 0xbe744257 efi_get_embedded_fw -EXPORT_SYMBOL_GPL vmlinux 0xbe838e93 securityfs_remove +EXPORT_SYMBOL_GPL vmlinux 0xbe86eafc usb_interrupt_msg +EXPORT_SYMBOL_GPL vmlinux 0xbe8f83d3 smpboot_unregister_percpu_thread EXPORT_SYMBOL_GPL vmlinux 0xbe9a83d5 dw_pcie_write -EXPORT_SYMBOL_GPL vmlinux 0xbea03215 console_drivers EXPORT_SYMBOL_GPL vmlinux 0xbea5ff1e static_key_initialized -EXPORT_SYMBOL_GPL vmlinux 0xbeba3bf6 devm_gpiod_unhinge -EXPORT_SYMBOL_GPL vmlinux 0xbec308f1 blkg_rwstat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0xbeac17f0 devm_platform_ioremap_resource +EXPORT_SYMBOL_GPL vmlinux 0xbead60be iommu_uapi_sva_unbind_gpasid EXPORT_SYMBOL_GPL vmlinux 0xbec66c3a __apei_exec_run +EXPORT_SYMBOL_GPL vmlinux 0xbeca7b66 iommu_device_register +EXPORT_SYMBOL_GPL vmlinux 0xbecb87e0 fib_rule_matchall +EXPORT_SYMBOL_GPL vmlinux 0xbed46504 devm_rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0xbefd2c0f set_primary_fwnode EXPORT_SYMBOL_GPL vmlinux 0xbf041102 register_vt_notifier -EXPORT_SYMBOL_GPL vmlinux 0xbf05f198 debugfs_create_u32 -EXPORT_SYMBOL_GPL vmlinux 0xbf0b0ec8 kstrdup_quotable_cmdline EXPORT_SYMBOL_GPL vmlinux 0xbf165dec __SCT__tp_func_pelt_se_tp -EXPORT_SYMBOL_GPL vmlinux 0xbf2579da dm_disk -EXPORT_SYMBOL_GPL vmlinux 0xbf45fadc platform_get_irq_byname -EXPORT_SYMBOL_GPL vmlinux 0xbf4d3bb9 bsg_job_done -EXPORT_SYMBOL_GPL vmlinux 0xbf4e302b skb_morph -EXPORT_SYMBOL_GPL vmlinux 0xbf5ee72d blk_set_pm_only -EXPORT_SYMBOL_GPL vmlinux 0xbf9ba7c1 devm_pci_epc_destroy -EXPORT_SYMBOL_GPL vmlinux 0xbf9f0b7d rio_alloc_net +EXPORT_SYMBOL_GPL vmlinux 0xbf170516 tty_port_tty_hangup +EXPORT_SYMBOL_GPL vmlinux 0xbf1cda87 cpuidle_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xbf1ef801 usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0xbf258269 fscrypt_show_test_dummy_encryption +EXPORT_SYMBOL_GPL vmlinux 0xbf2a8c5d xen_xlate_unmap_gfn_range +EXPORT_SYMBOL_GPL vmlinux 0xbf31fe9c hwspin_lock_register +EXPORT_SYMBOL_GPL vmlinux 0xbf47dcdd percpu_up_write +EXPORT_SYMBOL_GPL vmlinux 0xbf5785ca phy_select_page +EXPORT_SYMBOL_GPL vmlinux 0xbf7c8cc2 udp_destruct_sock +EXPORT_SYMBOL_GPL vmlinux 0xbf7eb6a4 blk_mq_queue_inflight +EXPORT_SYMBOL_GPL vmlinux 0xbfa3da3b dma_free_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0xbfa3e7bf fwnode_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xbfa680e1 __rio_local_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0xbfafb41b thermal_remove_hwmon_sysfs EXPORT_SYMBOL_GPL vmlinux 0xbfbc5434 pciserial_resume_ports -EXPORT_SYMBOL_GPL vmlinux 0xbfd4745d skcipher_walk_async -EXPORT_SYMBOL_GPL vmlinux 0xbfe0fd65 pci_hp_add_bridge -EXPORT_SYMBOL_GPL vmlinux 0xbfe42eeb balloon_page_enqueue +EXPORT_SYMBOL_GPL vmlinux 0xbfc6a6ec md_bitmap_resize +EXPORT_SYMBOL_GPL vmlinux 0xbfd17dbc blk_mq_sched_try_merge +EXPORT_SYMBOL_GPL vmlinux 0xbfd1c017 crypto_inst_setname +EXPORT_SYMBOL_GPL vmlinux 0xbfdee073 dma_get_slave_caps EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control EXPORT_SYMBOL_GPL vmlinux 0xbfed2cd9 __wait_rcu_gp -EXPORT_SYMBOL_GPL vmlinux 0xbff1aa84 __traceiter_br_fdb_add -EXPORT_SYMBOL_GPL vmlinux 0xbff22a35 nvdimm_bus_register -EXPORT_SYMBOL_GPL vmlinux 0xc001bc77 dev_pm_opp_disable -EXPORT_SYMBOL_GPL vmlinux 0xc01cbf30 xfrm_audit_state_icvfail -EXPORT_SYMBOL_GPL vmlinux 0xc02cd2d4 xenbus_map_ring_valloc -EXPORT_SYMBOL_GPL vmlinux 0xc0343158 __traceiter_devlink_trap_report -EXPORT_SYMBOL_GPL vmlinux 0xc0612f2c xfrm_dev_offload_ok -EXPORT_SYMBOL_GPL vmlinux 0xc06e9c44 devm_gpiod_get_index_optional -EXPORT_SYMBOL_GPL vmlinux 0xc078882a __traceiter_sched_cpu_capacity_tp -EXPORT_SYMBOL_GPL vmlinux 0xc07fab53 virtqueue_add_inbuf_ctx -EXPORT_SYMBOL_GPL vmlinux 0xc0876e04 sdio_signal_irq -EXPORT_SYMBOL_GPL vmlinux 0xc08a32a6 xdp_rxq_info_unreg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0xc01993d0 spi_new_ancillary_device +EXPORT_SYMBOL_GPL vmlinux 0xc01bcf33 led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0xc0321857 __put_task_struct +EXPORT_SYMBOL_GPL vmlinux 0xc038e51e gpiod_set_array_value +EXPORT_SYMBOL_GPL vmlinux 0xc0391c25 edac_device_alloc_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0xc0490493 regmap_get_raw_read_max +EXPORT_SYMBOL_GPL vmlinux 0xc05338a6 crypto_stats_rng_generate +EXPORT_SYMBOL_GPL vmlinux 0xc057792e xen_xlate_remap_gfn_array +EXPORT_SYMBOL_GPL vmlinux 0xc063ac1c efivars_kobject +EXPORT_SYMBOL_GPL vmlinux 0xc063fcac virtqueue_add_sgs +EXPORT_SYMBOL_GPL vmlinux 0xc0749c37 gpiochip_add_pin_range +EXPORT_SYMBOL_GPL vmlinux 0xc07895ff fb_deferred_io_open +EXPORT_SYMBOL_GPL vmlinux 0xc07aec51 sfp_add_phy EXPORT_SYMBOL_GPL vmlinux 0xc08bbce6 irq_get_percpu_devid_partition EXPORT_SYMBOL_GPL vmlinux 0xc090c376 net_selftest_get_strings -EXPORT_SYMBOL_GPL vmlinux 0xc0925d2f nvdimm_badblocks_populate -EXPORT_SYMBOL_GPL vmlinux 0xc09b9001 wm8350_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0xc09a7a99 __pm_runtime_resume EXPORT_SYMBOL_GPL vmlinux 0xc0a96e14 rcu_gp_is_expedited -EXPORT_SYMBOL_GPL vmlinux 0xc0ad48fc pci_device_is_present -EXPORT_SYMBOL_GPL vmlinux 0xc0ba89ca __tracepoint_devlink_hwmsg +EXPORT_SYMBOL_GPL vmlinux 0xc0bee292 ehci_suspend +EXPORT_SYMBOL_GPL vmlinux 0xc0c3c640 trace_array_printk +EXPORT_SYMBOL_GPL vmlinux 0xc0c806ee __usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0xc0ce8c78 securityfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0xc0d6ae04 key_type_asymmetric +EXPORT_SYMBOL_GPL vmlinux 0xc0d7870e __tracepoint_neigh_cleanup_and_release +EXPORT_SYMBOL_GPL vmlinux 0xc0d86f69 ata_sff_dma_pause +EXPORT_SYMBOL_GPL vmlinux 0xc0db3c70 ata_sas_sync_probe EXPORT_SYMBOL_GPL vmlinux 0xc0dcb59e edac_layer_name -EXPORT_SYMBOL_GPL vmlinux 0xc0dd63bd kernfs_path_from_node -EXPORT_SYMBOL_GPL vmlinux 0xc0e85dfb mmc_regulator_get_supply EXPORT_SYMBOL_GPL vmlinux 0xc0f0458a ip_tunnel_unneed_metadata -EXPORT_SYMBOL_GPL vmlinux 0xc0f75701 __tracepoint_add_device_to_group -EXPORT_SYMBOL_GPL vmlinux 0xc0fa2212 do_unregister_con_driver -EXPORT_SYMBOL_GPL vmlinux 0xc0ffaab8 pci_msi_create_irq_domain -EXPORT_SYMBOL_GPL vmlinux 0xc0fffbdc acpi_storage_d3 -EXPORT_SYMBOL_GPL vmlinux 0xc1028806 acpi_dma_request_slave_chan_by_index +EXPORT_SYMBOL_GPL vmlinux 0xc0f62625 pci_device_is_present +EXPORT_SYMBOL_GPL vmlinux 0xc0f64705 ata_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0xc0fcdbfc xfrm_register_translator EXPORT_SYMBOL_GPL vmlinux 0xc1086e0c sysrq_toggle_support -EXPORT_SYMBOL_GPL vmlinux 0xc10f6112 __trace_note_message +EXPORT_SYMBOL_GPL vmlinux 0xc10b3a96 sfp_register_socket EXPORT_SYMBOL_GPL vmlinux 0xc10fddb8 name_to_dev_t -EXPORT_SYMBOL_GPL vmlinux 0xc112c9cc __tracepoint_extlog_mem_event -EXPORT_SYMBOL_GPL vmlinux 0xc114f5e9 platform_bus_type -EXPORT_SYMBOL_GPL vmlinux 0xc11e13f4 phy_exit -EXPORT_SYMBOL_GPL vmlinux 0xc1336fcc devlink_net -EXPORT_SYMBOL_GPL vmlinux 0xc1353ee7 pm_generic_resume -EXPORT_SYMBOL_GPL vmlinux 0xc14255e9 ping_init_sock -EXPORT_SYMBOL_GPL vmlinux 0xc1536cca ethnl_cable_test_amplitude -EXPORT_SYMBOL_GPL vmlinux 0xc15f55ba dev_pm_opp_put_opp_table -EXPORT_SYMBOL_GPL vmlinux 0xc15fcb80 cgroup_get_from_path +EXPORT_SYMBOL_GPL vmlinux 0xc11a13c1 ata_sff_prereset +EXPORT_SYMBOL_GPL vmlinux 0xc11bce91 regulator_list_voltage +EXPORT_SYMBOL_GPL vmlinux 0xc125db92 blk_mq_virtio_map_queues +EXPORT_SYMBOL_GPL vmlinux 0xc135bd0a of_icc_get +EXPORT_SYMBOL_GPL vmlinux 0xc1380158 blk_mq_alloc_request_hctx +EXPORT_SYMBOL_GPL vmlinux 0xc13eb862 ip_fib_metrics_init +EXPORT_SYMBOL_GPL vmlinux 0xc1487c0b __SCK__tp_func_non_standard_event +EXPORT_SYMBOL_GPL vmlinux 0xc14c1807 securityfs_remove +EXPORT_SYMBOL_GPL vmlinux 0xc15209cb trace_output_call +EXPORT_SYMBOL_GPL vmlinux 0xc16bc048 sysfs_notify EXPORT_SYMBOL_GPL vmlinux 0xc1743430 cpuidle_disable_device EXPORT_SYMBOL_GPL vmlinux 0xc17515d7 usb_hcds_loaded +EXPORT_SYMBOL_GPL vmlinux 0xc1771888 gnttab_free_pages EXPORT_SYMBOL_GPL vmlinux 0xc17e9946 usb_show_dynids +EXPORT_SYMBOL_GPL vmlinux 0xc18b83d2 usb_acpi_power_manageable EXPORT_SYMBOL_GPL vmlinux 0xc18cdf36 amd_df_indirect_read -EXPORT_SYMBOL_GPL vmlinux 0xc18e541c bio_iov_iter_get_pages -EXPORT_SYMBOL_GPL vmlinux 0xc1915cf0 wakeup_source_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc1ac253c sis_info133_for_sata -EXPORT_SYMBOL_GPL vmlinux 0xc1c21f71 xenbus_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0xc1d0fd29 devlink_port_attrs_pci_pf_set +EXPORT_SYMBOL_GPL vmlinux 0xc195540d device_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xc19d7f75 __SCK__tp_func_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0xc1aaba0b serial8250_tx_chars +EXPORT_SYMBOL_GPL vmlinux 0xc1bbae27 rio_register_scan +EXPORT_SYMBOL_GPL vmlinux 0xc1d0b8de i2c_match_id +EXPORT_SYMBOL_GPL vmlinux 0xc1d7f96c iomap_migrate_page EXPORT_SYMBOL_GPL vmlinux 0xc1d989c5 vfio_external_check_extension -EXPORT_SYMBOL_GPL vmlinux 0xc1dedc6d pm_runtime_get_if_active -EXPORT_SYMBOL_GPL vmlinux 0xc1e93503 pinctrl_find_gpio_range_from_pin_nolock -EXPORT_SYMBOL_GPL vmlinux 0xc1fbcadf cpufreq_register_governor -EXPORT_SYMBOL_GPL vmlinux 0xc2007017 splice_to_pipe +EXPORT_SYMBOL_GPL vmlinux 0xc1d9f313 serdev_device_open +EXPORT_SYMBOL_GPL vmlinux 0xc1dac318 ethnl_cable_test_pulse +EXPORT_SYMBOL_GPL vmlinux 0xc1fa4b90 fsl_mc_device_group +EXPORT_SYMBOL_GPL vmlinux 0xc1ffb471 regulator_get +EXPORT_SYMBOL_GPL vmlinux 0xc2022159 skb_clone_tx_timestamp EXPORT_SYMBOL_GPL vmlinux 0xc2033d9f amd_get_highest_perf -EXPORT_SYMBOL_GPL vmlinux 0xc2063aca pci_user_write_config_dword -EXPORT_SYMBOL_GPL vmlinux 0xc20a8e71 fixed_phy_register -EXPORT_SYMBOL_GPL vmlinux 0xc2225c94 bpf_prog_add -EXPORT_SYMBOL_GPL vmlinux 0xc22422f2 generic_fh_to_parent +EXPORT_SYMBOL_GPL vmlinux 0xc2075508 ip6_sk_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases -EXPORT_SYMBOL_GPL vmlinux 0xc22c363a regmap_parse_val -EXPORT_SYMBOL_GPL vmlinux 0xc22df6df pci_epc_set_msix +EXPORT_SYMBOL_GPL vmlinux 0xc22eb6a0 iommu_sva_alloc_pasid EXPORT_SYMBOL_GPL vmlinux 0xc23601c1 __SCT__tp_func_pelt_cfs_tp -EXPORT_SYMBOL_GPL vmlinux 0xc23c1026 usb_acpi_set_power_state -EXPORT_SYMBOL_GPL vmlinux 0xc244c1b6 adp5520_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0xc25b81cd tty_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0xc24328bd vma_kernel_pagesize +EXPORT_SYMBOL_GPL vmlinux 0xc24439e2 serial8250_modem_status +EXPORT_SYMBOL_GPL vmlinux 0xc2496654 dev_pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0xc24e55f7 devm_irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xc24f141e init_dummy_netdev EXPORT_SYMBOL_GPL vmlinux 0xc25b8971 hv_remove_crash_handler EXPORT_SYMBOL_GPL vmlinux 0xc2692173 wakeup_sources_read_lock -EXPORT_SYMBOL_GPL vmlinux 0xc2770509 fib6_check_nexthop -EXPORT_SYMBOL_GPL vmlinux 0xc280cc3a wakeup_source_destroy +EXPORT_SYMBOL_GPL vmlinux 0xc282da13 wm831x_reg_read EXPORT_SYMBOL_GPL vmlinux 0xc287d96a kvm_set_posted_intr_wakeup_handler EXPORT_SYMBOL_GPL vmlinux 0xc289e46d cpufreq_generic_frequency_table_verify -EXPORT_SYMBOL_GPL vmlinux 0xc2985e85 gpiochip_get_data -EXPORT_SYMBOL_GPL vmlinux 0xc29e1a0b ata_acpi_stm -EXPORT_SYMBOL_GPL vmlinux 0xc2a1cbaf __cpuhp_state_remove_instance -EXPORT_SYMBOL_GPL vmlinux 0xc2a3c907 agp_add_bridge EXPORT_SYMBOL_GPL vmlinux 0xc2a3e570 errata EXPORT_SYMBOL_GPL vmlinux 0xc2a814db tcp_memory_pressure -EXPORT_SYMBOL_GPL vmlinux 0xc2b75490 gpiochip_line_is_open_drain -EXPORT_SYMBOL_GPL vmlinux 0xc2bcdc47 usb_hcd_unmap_urb_for_dma EXPORT_SYMBOL_GPL vmlinux 0xc2c1c427 perf_event_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xc2d0c760 wm831x_reg_write -EXPORT_SYMBOL_GPL vmlinux 0xc2d24672 blk_ksm_reprogram_all_keys +EXPORT_SYMBOL_GPL vmlinux 0xc2c55259 dax_iomap_rw +EXPORT_SYMBOL_GPL vmlinux 0xc2d6c84b vp_modern_set_features +EXPORT_SYMBOL_GPL vmlinux 0xc2d874d9 usb_get_descriptor EXPORT_SYMBOL_GPL vmlinux 0xc2de27ca hest_disable -EXPORT_SYMBOL_GPL vmlinux 0xc2ee244c dma_buf_map_attachment -EXPORT_SYMBOL_GPL vmlinux 0xc2f003e4 acpi_subsys_prepare +EXPORT_SYMBOL_GPL vmlinux 0xc2e0769b dev_pm_opp_set_opp +EXPORT_SYMBOL_GPL vmlinux 0xc2e3b0c2 pinctrl_register +EXPORT_SYMBOL_GPL vmlinux 0xc2e4b2ea edac_mc_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc2f7c9fc task_user_regset_view EXPORT_SYMBOL_GPL vmlinux 0xc2fb483f __SCT__tp_func_tcp_bad_csum -EXPORT_SYMBOL_GPL vmlinux 0xc312e772 serdev_controller_remove -EXPORT_SYMBOL_GPL vmlinux 0xc31eae65 cookie_tcp_reqsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc31f511f nfs42_ssc_register +EXPORT_SYMBOL_GPL vmlinux 0xc32a7189 locks_alloc_lock EXPORT_SYMBOL_GPL vmlinux 0xc3329c64 apic -EXPORT_SYMBOL_GPL vmlinux 0xc33b7102 crypto_stats_decompress -EXPORT_SYMBOL_GPL vmlinux 0xc33d4438 da9052_adc_manual_read EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object -EXPORT_SYMBOL_GPL vmlinux 0xc34defd6 pktgen_xfrm_outer_mode_output -EXPORT_SYMBOL_GPL vmlinux 0xc355dfbf acpi_device_update_power -EXPORT_SYMBOL_GPL vmlinux 0xc3567e4a free_vm_area -EXPORT_SYMBOL_GPL vmlinux 0xc362d0ea iommu_fwspec_add_ids +EXPORT_SYMBOL_GPL vmlinux 0xc342e979 rio_del_device +EXPORT_SYMBOL_GPL vmlinux 0xc3554f73 hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0xc3560636 device_property_read_u32_array EXPORT_SYMBOL_GPL vmlinux 0xc3708747 trace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0xc37645ea sock_map_unhash +EXPORT_SYMBOL_GPL vmlinux 0xc37782b9 inet6_hash_connect EXPORT_SYMBOL_GPL vmlinux 0xc3805cd1 fs_ftype_to_dtype +EXPORT_SYMBOL_GPL vmlinux 0xc3868cdf __dax_driver_register +EXPORT_SYMBOL_GPL vmlinux 0xc39124ae sysfs_add_file_to_group +EXPORT_SYMBOL_GPL vmlinux 0xc39e4254 dev_pm_opp_remove_all_dynamic +EXPORT_SYMBOL_GPL vmlinux 0xc3ab528c ata_sas_tport_add +EXPORT_SYMBOL_GPL vmlinux 0xc3bc8a81 dev_pm_opp_find_level_ceil +EXPORT_SYMBOL_GPL vmlinux 0xc3bc9016 pwm_put +EXPORT_SYMBOL_GPL vmlinux 0xc3bcb11e skb_gso_validate_mac_len EXPORT_SYMBOL_GPL vmlinux 0xc3c4c6cc hash_algo_name -EXPORT_SYMBOL_GPL vmlinux 0xc3c9f3dc dm_send_uevents -EXPORT_SYMBOL_GPL vmlinux 0xc3d1c096 devlink_dpipe_table_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc3d5090b msg_zerocopy_put_abort +EXPORT_SYMBOL_GPL vmlinux 0xc3cc1d74 tps6586x_reads EXPORT_SYMBOL_GPL vmlinux 0xc3de65ff ring_buffer_bytes_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc3e4d98a extcon_register_notifier EXPORT_SYMBOL_GPL vmlinux 0xc3ea5305 iommu_default_passthrough -EXPORT_SYMBOL_GPL vmlinux 0xc3ef1f53 pci_epc_get_msi -EXPORT_SYMBOL_GPL vmlinux 0xc3f82205 exportfs_decode_fh_raw +EXPORT_SYMBOL_GPL vmlinux 0xc3f99b2d devres_release_group +EXPORT_SYMBOL_GPL vmlinux 0xc4049651 watchdog_set_restart_priority +EXPORT_SYMBOL_GPL vmlinux 0xc40e3ae4 irq_domain_push_irq +EXPORT_SYMBOL_GPL vmlinux 0xc415de43 sata_link_debounce +EXPORT_SYMBOL_GPL vmlinux 0xc41ce99a __netpoll_cleanup EXPORT_SYMBOL_GPL vmlinux 0xc426c51f klp_shadow_free_all EXPORT_SYMBOL_GPL vmlinux 0xc428068d sata_deb_timing_long -EXPORT_SYMBOL_GPL vmlinux 0xc42f8b15 relay_reset +EXPORT_SYMBOL_GPL vmlinux 0xc430d8d2 __traceiter_block_rq_insert +EXPORT_SYMBOL_GPL vmlinux 0xc434c6fb iommu_device_sysfs_remove EXPORT_SYMBOL_GPL vmlinux 0xc43e92b9 trace_seq_bprintf -EXPORT_SYMBOL_GPL vmlinux 0xc446d239 usb_phy_roothub_resume +EXPORT_SYMBOL_GPL vmlinux 0xc4469368 acpi_dev_add_driver_gpios EXPORT_SYMBOL_GPL vmlinux 0xc454fc7b twl_get_type EXPORT_SYMBOL_GPL vmlinux 0xc45d0d13 injectm EXPORT_SYMBOL_GPL vmlinux 0xc45e246f housekeeping_test_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc460b43c skb_morph EXPORT_SYMBOL_GPL vmlinux 0xc46324f6 dynevent_create +EXPORT_SYMBOL_GPL vmlinux 0xc466a401 usb_phy_roothub_resume +EXPORT_SYMBOL_GPL vmlinux 0xc46b05f5 sdio_claim_host EXPORT_SYMBOL_GPL vmlinux 0xc471c67a twl4030_audio_disable_resource +EXPORT_SYMBOL_GPL vmlinux 0xc4725f50 udp_init_sock EXPORT_SYMBOL_GPL vmlinux 0xc48b7ccf ata_mode_string -EXPORT_SYMBOL_GPL vmlinux 0xc48d72e3 sysfs_create_files EXPORT_SYMBOL_GPL vmlinux 0xc4913442 vfio_group_put_external_user -EXPORT_SYMBOL_GPL vmlinux 0xc49e21a7 tty_perform_flush EXPORT_SYMBOL_GPL vmlinux 0xc4a31146 rdma_cgrp_subsys_on_dfl_key EXPORT_SYMBOL_GPL vmlinux 0xc4a72936 trusted_tpm_send +EXPORT_SYMBOL_GPL vmlinux 0xc4afdacd pinctrl_force_sleep EXPORT_SYMBOL_GPL vmlinux 0xc4d022cb __SCT__tp_func_napi_poll -EXPORT_SYMBOL_GPL vmlinux 0xc4d9ad96 wwan_port_rx +EXPORT_SYMBOL_GPL vmlinux 0xc4e29486 pci_epf_add_vepf +EXPORT_SYMBOL_GPL vmlinux 0xc4e56507 blkdev_report_zones +EXPORT_SYMBOL_GPL vmlinux 0xc4ebfc97 bus_create_file EXPORT_SYMBOL_GPL vmlinux 0xc4f0da12 ktime_get_with_offset -EXPORT_SYMBOL_GPL vmlinux 0xc4ff9add __serdev_device_driver_register +EXPORT_SYMBOL_GPL vmlinux 0xc4f41a23 ohci_hub_status_data +EXPORT_SYMBOL_GPL vmlinux 0xc4f679bb ata_link_next +EXPORT_SYMBOL_GPL vmlinux 0xc4f8be7c tpm_get_timeouts +EXPORT_SYMBOL_GPL vmlinux 0xc5002337 subsys_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0xc501341c intel_pinctrl_get_soc_data +EXPORT_SYMBOL_GPL vmlinux 0xc507744f badblocks_check EXPORT_SYMBOL_GPL vmlinux 0xc50dca33 __SCT__tp_func_neigh_cleanup_and_release -EXPORT_SYMBOL_GPL vmlinux 0xc50f8adc regulator_set_pull_down_regmap EXPORT_SYMBOL_GPL vmlinux 0xc512626a __supported_pte_mask -EXPORT_SYMBOL_GPL vmlinux 0xc54375a9 dm_put -EXPORT_SYMBOL_GPL vmlinux 0xc54f0451 perf_event_refresh -EXPORT_SYMBOL_GPL vmlinux 0xc55bfad0 nd_blk_region_provider_data +EXPORT_SYMBOL_GPL vmlinux 0xc519839c hvc_remove +EXPORT_SYMBOL_GPL vmlinux 0xc51d6f15 mmc_cmdq_enable +EXPORT_SYMBOL_GPL vmlinux 0xc524d1bb pci_pasid_features +EXPORT_SYMBOL_GPL vmlinux 0xc53fa860 __tracepoint_sched_update_nr_running_tp +EXPORT_SYMBOL_GPL vmlinux 0xc541a94b pinctrl_dev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xc5488492 fat_alloc_new_dir +EXPORT_SYMBOL_GPL vmlinux 0xc54a2963 ata_sff_port_intr +EXPORT_SYMBOL_GPL vmlinux 0xc553f3d4 scsi_get_vpd_page EXPORT_SYMBOL_GPL vmlinux 0xc55ff962 phy_basic_t1_features_array EXPORT_SYMBOL_GPL vmlinux 0xc5604800 clk_set_rate_exclusive -EXPORT_SYMBOL_GPL vmlinux 0xc564eadd clk_register_divider_table +EXPORT_SYMBOL_GPL vmlinux 0xc565d5a1 irq_remove_generic_chip EXPORT_SYMBOL_GPL vmlinux 0xc569d8ce __clk_get_name -EXPORT_SYMBOL_GPL vmlinux 0xc56c4bb3 ata_bmdma32_port_ops -EXPORT_SYMBOL_GPL vmlinux 0xc5740298 device_match_name +EXPORT_SYMBOL_GPL vmlinux 0xc56a5796 rdev_get_name +EXPORT_SYMBOL_GPL vmlinux 0xc56d17b2 pm_clk_remove_clk EXPORT_SYMBOL_GPL vmlinux 0xc575c737 debug_locks_off EXPORT_SYMBOL_GPL vmlinux 0xc5777fca linear_range_get_selector_low_array -EXPORT_SYMBOL_GPL vmlinux 0xc582589a xenbus_dev_error +EXPORT_SYMBOL_GPL vmlinux 0xc57f839d led_sysfs_enable EXPORT_SYMBOL_GPL vmlinux 0xc58a3ee6 icc_node_destroy -EXPORT_SYMBOL_GPL vmlinux 0xc591aa13 devfreq_event_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0xc59d2023 mmc_regulator_set_ocr +EXPORT_SYMBOL_GPL vmlinux 0xc58dc88b virtqueue_disable_cb +EXPORT_SYMBOL_GPL vmlinux 0xc5974315 dev_pm_opp_get_required_pstate EXPORT_SYMBOL_GPL vmlinux 0xc5a5c678 uart_parse_earlycon -EXPORT_SYMBOL_GPL vmlinux 0xc5a89355 vring_new_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0xc5b5bc6d devm_acpi_dev_add_driver_gpios -EXPORT_SYMBOL_GPL vmlinux 0xc5bba70b register_virtio_device -EXPORT_SYMBOL_GPL vmlinux 0xc5c98148 tty_buffer_set_limit -EXPORT_SYMBOL_GPL vmlinux 0xc5d4234f fuse_get_unique -EXPORT_SYMBOL_GPL vmlinux 0xc5e66890 sock_prot_inuse_get -EXPORT_SYMBOL_GPL vmlinux 0xc5ebb88e nfs_ssc_client_tbl +EXPORT_SYMBOL_GPL vmlinux 0xc5c86eed fscrypt_mergeable_bio_bh +EXPORT_SYMBOL_GPL vmlinux 0xc5cbd30b __blkg_prfill_u64 +EXPORT_SYMBOL_GPL vmlinux 0xc5dae212 __of_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0xc5e05fb4 tcp_abort +EXPORT_SYMBOL_GPL vmlinux 0xc5f14bfe __SCK__tp_func_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0xc5f7b951 __tracepoint_devlink_hwerr +EXPORT_SYMBOL_GPL vmlinux 0xc60044c0 bpf_trace_run9 +EXPORT_SYMBOL_GPL vmlinux 0xc6010900 usb_get_maximum_speed EXPORT_SYMBOL_GPL vmlinux 0xc604ab28 __SCT__tp_func_kfree_skb -EXPORT_SYMBOL_GPL vmlinux 0xc6116acc register_net_sysctl +EXPORT_SYMBOL_GPL vmlinux 0xc60db0c8 dma_get_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0xc60e677e fuse_dax_cancel_work EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier -EXPORT_SYMBOL_GPL vmlinux 0xc618a97f irq_domain_xlate_onetwocell -EXPORT_SYMBOL_GPL vmlinux 0xc62411ef devm_gpio_request_one -EXPORT_SYMBOL_GPL vmlinux 0xc6260406 pwm_lpss_probe -EXPORT_SYMBOL_GPL vmlinux 0xc6262a9d regulator_map_voltage_linear -EXPORT_SYMBOL_GPL vmlinux 0xc62ca754 tcp_reno_cong_avoid -EXPORT_SYMBOL_GPL vmlinux 0xc63f9cfc fib_rules_lookup -EXPORT_SYMBOL_GPL vmlinux 0xc64b0f57 irq_domain_xlate_twocell +EXPORT_SYMBOL_GPL vmlinux 0xc63237a9 vfio_pci_core_close_device +EXPORT_SYMBOL_GPL vmlinux 0xc64fa31f bpf_prog_sub EXPORT_SYMBOL_GPL vmlinux 0xc6572a90 xenbus_read_unsigned +EXPORT_SYMBOL_GPL vmlinux 0xc6588156 pci_cfg_access_unlock +EXPORT_SYMBOL_GPL vmlinux 0xc65f036a __SCK__tp_func_error_report_end EXPORT_SYMBOL_GPL vmlinux 0xc66019cc xen_resume_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc661a406 crypto_rng_reset EXPORT_SYMBOL_GPL vmlinux 0xc66b77b1 iommu_group_set_iommudata EXPORT_SYMBOL_GPL vmlinux 0xc672a391 irq_work_sync -EXPORT_SYMBOL_GPL vmlinux 0xc6766e4d raw_seq_stop EXPORT_SYMBOL_GPL vmlinux 0xc6779093 ring_buffer_record_enable -EXPORT_SYMBOL_GPL vmlinux 0xc679a9ad pci_stop_root_bus EXPORT_SYMBOL_GPL vmlinux 0xc683da81 set_memory_decrypted EXPORT_SYMBOL_GPL vmlinux 0xc697b0f7 nvmem_device_read -EXPORT_SYMBOL_GPL vmlinux 0xc69b479e xenbus_probe_devices EXPORT_SYMBOL_GPL vmlinux 0xc69b7ee5 zs_destroy_pool +EXPORT_SYMBOL_GPL vmlinux 0xc69cb2bb scsi_internal_device_unblock_nowait EXPORT_SYMBOL_GPL vmlinux 0xc6a4a872 __clk_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0xc6b10427 ex_handler_fprestore -EXPORT_SYMBOL_GPL vmlinux 0xc6bff168 usb_free_urb -EXPORT_SYMBOL_GPL vmlinux 0xc6d4c127 gpiochip_irq_domain_activate -EXPORT_SYMBOL_GPL vmlinux 0xc6d5b830 find_get_pid +EXPORT_SYMBOL_GPL vmlinux 0xc6b239d5 crypto_unregister_kpp +EXPORT_SYMBOL_GPL vmlinux 0xc6b7eb62 tcp_unregister_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0xc6bb8eab tty_get_icount +EXPORT_SYMBOL_GPL vmlinux 0xc6bc0442 crypto_larval_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc6d1e598 __mnt_is_readonly +EXPORT_SYMBOL_GPL vmlinux 0xc6d52c99 __fscrypt_prepare_link +EXPORT_SYMBOL_GPL vmlinux 0xc6d9c622 ip6_pol_route EXPORT_SYMBOL_GPL vmlinux 0xc6def34b gnttab_empty_grant_references -EXPORT_SYMBOL_GPL vmlinux 0xc6df3e0d irq_chip_get_parent_state +EXPORT_SYMBOL_GPL vmlinux 0xc6e39223 serial8250_handle_irq EXPORT_SYMBOL_GPL vmlinux 0xc6e5bcf3 linear_range_get_selector_within -EXPORT_SYMBOL_GPL vmlinux 0xc6e980cb ipv6_recv_error -EXPORT_SYMBOL_GPL vmlinux 0xc6eb64ff of_icc_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0xc6eddd67 regcache_drop_region EXPORT_SYMBOL_GPL vmlinux 0xc6eec8f5 clk_divider_ops -EXPORT_SYMBOL_GPL vmlinux 0xc6f2a35d nvmem_cell_read_u32 -EXPORT_SYMBOL_GPL vmlinux 0xc6fcb146 switchdev_bridge_port_unoffload +EXPORT_SYMBOL_GPL vmlinux 0xc6f8e0df regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xc6fed099 irq_domain_xlate_onetwocell +EXPORT_SYMBOL_GPL vmlinux 0xc701689c usb_phy_set_charger_current EXPORT_SYMBOL_GPL vmlinux 0xc7061ef3 iova_cache_put -EXPORT_SYMBOL_GPL vmlinux 0xc70cf30c devm_power_supply_register_no_ws -EXPORT_SYMBOL_GPL vmlinux 0xc714c63a dst_blackhole_redirect +EXPORT_SYMBOL_GPL vmlinux 0xc707a64d blk_ksm_reprogram_all_keys +EXPORT_SYMBOL_GPL vmlinux 0xc71bc9a5 xen_remap_pfn EXPORT_SYMBOL_GPL vmlinux 0xc71e64a9 snmp_get_cpu_field -EXPORT_SYMBOL_GPL vmlinux 0xc72bfea5 hwspin_lock_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc7442df9 genphy_c45_config_aneg -EXPORT_SYMBOL_GPL vmlinux 0xc74c960e dev_fill_metadata_dst -EXPORT_SYMBOL_GPL vmlinux 0xc74d76f5 perf_event_release_kernel -EXPORT_SYMBOL_GPL vmlinux 0xc75bfaa7 debugfs_print_regs32 +EXPORT_SYMBOL_GPL vmlinux 0xc72e2322 usb_for_each_port +EXPORT_SYMBOL_GPL vmlinux 0xc740b65e free_fib_info +EXPORT_SYMBOL_GPL vmlinux 0xc74128f5 io_cgrp_subsys +EXPORT_SYMBOL_GPL vmlinux 0xc743b1d9 pci_restore_msi_state +EXPORT_SYMBOL_GPL vmlinux 0xc7462fe4 mdiobus_modify +EXPORT_SYMBOL_GPL vmlinux 0xc7515c75 led_trigger_set +EXPORT_SYMBOL_GPL vmlinux 0xc758d0e3 phy_modify_mmd_changed +EXPORT_SYMBOL_GPL vmlinux 0xc75cf1f9 devm_release_action +EXPORT_SYMBOL_GPL vmlinux 0xc761535f blk_poll EXPORT_SYMBOL_GPL vmlinux 0xc76f8048 __sbitmap_queue_get -EXPORT_SYMBOL_GPL vmlinux 0xc77c8b80 crypto_grab_spawn -EXPORT_SYMBOL_GPL vmlinux 0xc77e795b vp_modern_probe EXPORT_SYMBOL_GPL vmlinux 0xc7856e74 __wake_up_locked_sync_key EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch EXPORT_SYMBOL_GPL vmlinux 0xc7a7e770 clk_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0xc7bbc693 pm_clk_suspend EXPORT_SYMBOL_GPL vmlinux 0xc7c23ff0 xenbus_exists -EXPORT_SYMBOL_GPL vmlinux 0xc7de2a95 security_inode_setattr -EXPORT_SYMBOL_GPL vmlinux 0xc7e0bb6c pci_bus_resource_n +EXPORT_SYMBOL_GPL vmlinux 0xc7d1246f __SCK__tp_func_pelt_thermal_tp +EXPORT_SYMBOL_GPL vmlinux 0xc7d97d5f zap_vma_ptes +EXPORT_SYMBOL_GPL vmlinux 0xc7e59489 spi_mem_driver_register_with_owner EXPORT_SYMBOL_GPL vmlinux 0xc7e64fc2 asn1_encode_integer -EXPORT_SYMBOL_GPL vmlinux 0xc7e67cea pinctrl_dev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xc7ec9d5d extcon_get_property EXPORT_SYMBOL_GPL vmlinux 0xc7fa4aa9 kobj_ns_drop -EXPORT_SYMBOL_GPL vmlinux 0xc8021a05 ip6_datagram_release_cb -EXPORT_SYMBOL_GPL vmlinux 0xc82c6c97 blk_mq_pci_map_queues +EXPORT_SYMBOL_GPL vmlinux 0xc7ff725f xdp_attachment_setup +EXPORT_SYMBOL_GPL vmlinux 0xc8132018 xfrm_audit_state_replay_overflow +EXPORT_SYMBOL_GPL vmlinux 0xc81b816c iommu_dev_feature_enabled EXPORT_SYMBOL_GPL vmlinux 0xc82c721f klist_remove -EXPORT_SYMBOL_GPL vmlinux 0xc838ccad skb_append_pagefrags EXPORT_SYMBOL_GPL vmlinux 0xc839c1ce trace_seq_to_user -EXPORT_SYMBOL_GPL vmlinux 0xc83bf8c2 __tracepoint_rpm_resume -EXPORT_SYMBOL_GPL vmlinux 0xc84cdf46 unregister_asymmetric_key_parser -EXPORT_SYMBOL_GPL vmlinux 0xc84db02a crypto_register_templates +EXPORT_SYMBOL_GPL vmlinux 0xc842326d devm_rtc_allocate_device +EXPORT_SYMBOL_GPL vmlinux 0xc8492170 devm_of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xc84a3330 icc_link_create +EXPORT_SYMBOL_GPL vmlinux 0xc84a8118 __hwspin_lock_timeout +EXPORT_SYMBOL_GPL vmlinux 0xc852e053 debugfs_create_atomic_t EXPORT_SYMBOL_GPL vmlinux 0xc8594d3d reset_control_acquire -EXPORT_SYMBOL_GPL vmlinux 0xc866c52e virtqueue_get_used_addr -EXPORT_SYMBOL_GPL vmlinux 0xc86ef9ee sched_trace_cfs_rq_cpu -EXPORT_SYMBOL_GPL vmlinux 0xc873d7ec blk_mq_unquiesce_queue +EXPORT_SYMBOL_GPL vmlinux 0xc85d69cb crypto_shoot_alg +EXPORT_SYMBOL_GPL vmlinux 0xc86eac02 ip_build_and_send_pkt EXPORT_SYMBOL_GPL vmlinux 0xc874d710 hv_unmap_ioapic_interrupt EXPORT_SYMBOL_GPL vmlinux 0xc87e487a sched_clock_idle_sleep_event EXPORT_SYMBOL_GPL vmlinux 0xc87fb025 xas_get_mark -EXPORT_SYMBOL_GPL vmlinux 0xc8a1bd27 sysfs_create_link_nowarn -EXPORT_SYMBOL_GPL vmlinux 0xc8c4a182 acpi_device_uevent_modalias -EXPORT_SYMBOL_GPL vmlinux 0xc8c4e1d9 kernfs_notify -EXPORT_SYMBOL_GPL vmlinux 0xc8dd18cc iomap_releasepage +EXPORT_SYMBOL_GPL vmlinux 0xc88bc272 of_devfreq_cooling_register_power +EXPORT_SYMBOL_GPL vmlinux 0xc8969a64 cpufreq_dbs_governor_init +EXPORT_SYMBOL_GPL vmlinux 0xc8a7a400 pm_generic_suspend +EXPORT_SYMBOL_GPL vmlinux 0xc8bac17a __traceiter_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0xc8d2d8ba irqchip_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0xc8d8445b set_pages_array_wt +EXPORT_SYMBOL_GPL vmlinux 0xc8dae510 pid_nr_ns EXPORT_SYMBOL_GPL vmlinux 0xc8ddd5b5 kstrdup_quotable -EXPORT_SYMBOL_GPL vmlinux 0xc8ec7ea8 clk_hw_rate_is_protected -EXPORT_SYMBOL_GPL vmlinux 0xc8f62bee fwnode_count_parents -EXPORT_SYMBOL_GPL vmlinux 0xc8f81f32 sdio_register_driver -EXPORT_SYMBOL_GPL vmlinux 0xc8faba2c task_cputime_adjusted -EXPORT_SYMBOL_GPL vmlinux 0xc907045c irq_chip_set_wake_parent -EXPORT_SYMBOL_GPL vmlinux 0xc90e2bd8 virtqueue_get_desc_addr -EXPORT_SYMBOL_GPL vmlinux 0xc911fc75 gnttab_dma_alloc_pages -EXPORT_SYMBOL_GPL vmlinux 0xc91deed7 pinctrl_utils_add_config +EXPORT_SYMBOL_GPL vmlinux 0xc8eb1414 usb_add_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0xc8edc167 pci_msi_prepare +EXPORT_SYMBOL_GPL vmlinux 0xc8f19b2a dw8250_setup_port +EXPORT_SYMBOL_GPL vmlinux 0xc8f1f350 dst_cache_set_ip6 +EXPORT_SYMBOL_GPL vmlinux 0xc8fd975c __devm_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0xc8ff0e9c mbox_client_txdone EXPORT_SYMBOL_GPL vmlinux 0xc91ee1b5 __SCT__tp_func_mc_event EXPORT_SYMBOL_GPL vmlinux 0xc91fdf58 percpu_ref_is_zero -EXPORT_SYMBOL_GPL vmlinux 0xc9246ba7 is_skb_forwardable -EXPORT_SYMBOL_GPL vmlinux 0xc930eae0 pm_runtime_suspended_time EXPORT_SYMBOL_GPL vmlinux 0xc9345c0f digsig_verify EXPORT_SYMBOL_GPL vmlinux 0xc93ee1e7 usb_phy_roothub_init -EXPORT_SYMBOL_GPL vmlinux 0xc940f938 mbox_chan_received_data -EXPORT_SYMBOL_GPL vmlinux 0xc94af76a pci_bus_max_busnr +EXPORT_SYMBOL_GPL vmlinux 0xc9496b0e __SCK__tp_func_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0xc94dbbd1 alloc_empty_file EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist -EXPORT_SYMBOL_GPL vmlinux 0xc9618018 dma_max_mapping_size EXPORT_SYMBOL_GPL vmlinux 0xc9641b48 visitor32 -EXPORT_SYMBOL_GPL vmlinux 0xc96959ae task_cgroup_path -EXPORT_SYMBOL_GPL vmlinux 0xc9743ad5 driver_find_device +EXPORT_SYMBOL_GPL vmlinux 0xc964f602 netdev_is_rx_handler_busy +EXPORT_SYMBOL_GPL vmlinux 0xc96a9ea6 dma_buf_begin_cpu_access +EXPORT_SYMBOL_GPL vmlinux 0xc9713f86 pci_enable_pasid +EXPORT_SYMBOL_GPL vmlinux 0xc974a55c css_next_descendant_pre +EXPORT_SYMBOL_GPL vmlinux 0xc9795f1e rio_add_net EXPORT_SYMBOL_GPL vmlinux 0xc9827693 __bpf_call_base -EXPORT_SYMBOL_GPL vmlinux 0xc998c5e6 ksm_madvise -EXPORT_SYMBOL_GPL vmlinux 0xc99b9b75 device_create_bin_file -EXPORT_SYMBOL_GPL vmlinux 0xc99caa70 msg_zerocopy_callback +EXPORT_SYMBOL_GPL vmlinux 0xc9834080 acpi_spi_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc993613d icc_set_tag +EXPORT_SYMBOL_GPL vmlinux 0xc9a08e91 scsi_autopm_put_device EXPORT_SYMBOL_GPL vmlinux 0xc9a4b416 copy_to_user_nofault +EXPORT_SYMBOL_GPL vmlinux 0xc9a9dc74 ohci_restart EXPORT_SYMBOL_GPL vmlinux 0xc9c3f176 hpet_register_irq_handler -EXPORT_SYMBOL_GPL vmlinux 0xc9e658d6 ncsi_stop_dev EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu +EXPORT_SYMBOL_GPL vmlinux 0xc9edc62e fixed_phy_unregister EXPORT_SYMBOL_GPL vmlinux 0xc9fd634a usb_role_switch_put -EXPORT_SYMBOL_GPL vmlinux 0xca02ccc5 virtqueue_get_vring_size -EXPORT_SYMBOL_GPL vmlinux 0xca08f389 gpiod_get_raw_array_value -EXPORT_SYMBOL_GPL vmlinux 0xca21185e simple_attr_read -EXPORT_SYMBOL_GPL vmlinux 0xca2b0b4d tcf_dev_queue_xmit -EXPORT_SYMBOL_GPL vmlinux 0xca376a9f pm_runtime_irq_safe +EXPORT_SYMBOL_GPL vmlinux 0xca1139aa crypto_register_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xca1f8473 devlink_dpipe_headers_unregister +EXPORT_SYMBOL_GPL vmlinux 0xca222053 phy_led_triggers_unregister +EXPORT_SYMBOL_GPL vmlinux 0xca2a1c7a blkcg_root_css +EXPORT_SYMBOL_GPL vmlinux 0xca31bbb1 shash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xca402800 xdp_convert_zc_to_xdp_frame +EXPORT_SYMBOL_GPL vmlinux 0xca410149 devm_regulator_get EXPORT_SYMBOL_GPL vmlinux 0xca454a34 vt_get_leds EXPORT_SYMBOL_GPL vmlinux 0xca467318 hibernation_set_ops -EXPORT_SYMBOL_GPL vmlinux 0xca4e086d ata_scsi_queuecmd -EXPORT_SYMBOL_GPL vmlinux 0xca73d570 irq_chip_mask_parent +EXPORT_SYMBOL_GPL vmlinux 0xca48bef4 clk_hw_set_parent +EXPORT_SYMBOL_GPL vmlinux 0xca621829 dst_cache_get_ip4 +EXPORT_SYMBOL_GPL vmlinux 0xca6f9168 pm_clk_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0xca79ab06 usb_sg_cancel EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop -EXPORT_SYMBOL_GPL vmlinux 0xca8d15bb edac_device_free_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0xca7de380 pci_epc_raise_irq EXPORT_SYMBOL_GPL vmlinux 0xca9a1d5e ring_buffer_free +EXPORT_SYMBOL_GPL vmlinux 0xcaa2b9ec shmem_truncate_range +EXPORT_SYMBOL_GPL vmlinux 0xcaa4cf93 sysfs_create_files EXPORT_SYMBOL_GPL vmlinux 0xcaa68533 cpu_has_xfeatures -EXPORT_SYMBOL_GPL vmlinux 0xcaad73fd tracing_snapshot_cond_disable -EXPORT_SYMBOL_GPL vmlinux 0xcab5d2b7 genphy_c45_pma_resume +EXPORT_SYMBOL_GPL vmlinux 0xcab23170 __ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0xcab49619 __traceiter_block_bio_complete EXPORT_SYMBOL_GPL vmlinux 0xcabe04de cpuidle_resume_and_unlock -EXPORT_SYMBOL_GPL vmlinux 0xcac0fbba devm_intel_scu_ipc_dev_get -EXPORT_SYMBOL_GPL vmlinux 0xcad99e9f rtnl_af_unregister -EXPORT_SYMBOL_GPL vmlinux 0xcae56387 __tracepoint_pelt_dl_tp +EXPORT_SYMBOL_GPL vmlinux 0xcad41c07 rtc_initialize_alarm +EXPORT_SYMBOL_GPL vmlinux 0xcae3a9f7 aead_geniv_alloc EXPORT_SYMBOL_GPL vmlinux 0xcaf1d958 evtchn_get EXPORT_SYMBOL_GPL vmlinux 0xcb15eee9 sdhci_pci_get_data -EXPORT_SYMBOL_GPL vmlinux 0xcb17ca33 iomap_readpage -EXPORT_SYMBOL_GPL vmlinux 0xcb1dce42 iomap_dio_rw -EXPORT_SYMBOL_GPL vmlinux 0xcb1e8201 tpm1_do_selftest +EXPORT_SYMBOL_GPL vmlinux 0xcb1a3acf disk_update_readahead +EXPORT_SYMBOL_GPL vmlinux 0xcb22b219 bus_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xcb2b53ec __tracepoint_detach_device_from_domain EXPORT_SYMBOL_GPL vmlinux 0xcb2bfe2b nvmem_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xcb540dca mbox_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcb2f0ff0 crypto_register_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xcb35407d devm_thermal_add_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0xcb3b25f6 skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0xcb466b4c ata_sas_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0xcb46a80d usb_get_current_frame_number +EXPORT_SYMBOL_GPL vmlinux 0xcb5179bc gpiochip_get_data +EXPORT_SYMBOL_GPL vmlinux 0xcb53efd2 usb_unlocked_disable_lpm EXPORT_SYMBOL_GPL vmlinux 0xcb561441 mem_dump_obj -EXPORT_SYMBOL_GPL vmlinux 0xcb61b02d blk_rq_unprep_clone -EXPORT_SYMBOL_GPL vmlinux 0xcb801606 pci_common_swizzle +EXPORT_SYMBOL_GPL vmlinux 0xcb56370e acpi_dev_get_property +EXPORT_SYMBOL_GPL vmlinux 0xcb6585c0 blk_queue_flag_test_and_set EXPORT_SYMBOL_GPL vmlinux 0xcb8a461c hv_stimer_legacy_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xcb931de9 regulator_register_supply_alias EXPORT_SYMBOL_GPL vmlinux 0xcb970751 stop_machine -EXPORT_SYMBOL_GPL vmlinux 0xcb9aea6c devm_clk_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xcb9a85eb phy_driver_is_genphy_10g +EXPORT_SYMBOL_GPL vmlinux 0xcba38e78 devlink_trap_groups_register EXPORT_SYMBOL_GPL vmlinux 0xcbb46ca0 misc_cg_set_capacity -EXPORT_SYMBOL_GPL vmlinux 0xcbbef4a2 devm_device_add_group -EXPORT_SYMBOL_GPL vmlinux 0xcbcdb447 __devm_pci_epc_create -EXPORT_SYMBOL_GPL vmlinux 0xcbd0bb07 hvc_alloc -EXPORT_SYMBOL_GPL vmlinux 0xcbd6a366 misc_cg_try_charge +EXPORT_SYMBOL_GPL vmlinux 0xcbc9f7e0 pci_set_cacheline_size +EXPORT_SYMBOL_GPL vmlinux 0xcbdcae21 switchdev_bridge_port_offload +EXPORT_SYMBOL_GPL vmlinux 0xcbe219e6 devlink_param_unregister EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages -EXPORT_SYMBOL_GPL vmlinux 0xcbed001f gnttab_pages_clear_private -EXPORT_SYMBOL_GPL vmlinux 0xcc0b33a4 for_each_kernel_tracepoint -EXPORT_SYMBOL_GPL vmlinux 0xcc15bf35 gpiod_set_raw_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xcc2c5a17 phy_pm_runtime_get_sync +EXPORT_SYMBOL_GPL vmlinux 0xcbee0fab iomap_dio_rw +EXPORT_SYMBOL_GPL vmlinux 0xcc01c1ab device_match_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xcc08c85a dev_pm_opp_set_supported_hw +EXPORT_SYMBOL_GPL vmlinux 0xcc0cca5f __bio_try_merge_page +EXPORT_SYMBOL_GPL vmlinux 0xcc13e865 i2c_client_type +EXPORT_SYMBOL_GPL vmlinux 0xcc191e00 vfio_pci_core_request +EXPORT_SYMBOL_GPL vmlinux 0xcc1bb2e4 __tracepoint_xhci_dbg_quirks EXPORT_SYMBOL_GPL vmlinux 0xcc2dbfd8 irq_domain_check_msi_remap +EXPORT_SYMBOL_GPL vmlinux 0xcc2f9bd2 __rio_local_write_config_8 EXPORT_SYMBOL_GPL vmlinux 0xcc312197 clk_mux_ops EXPORT_SYMBOL_GPL vmlinux 0xcc39c03e nvmem_unregister -EXPORT_SYMBOL_GPL vmlinux 0xcc3bdcfe fsverity_verify_bio -EXPORT_SYMBOL_GPL vmlinux 0xcc4a4c71 regmap_multi_reg_write_bypassed -EXPORT_SYMBOL_GPL vmlinux 0xcc5a4c61 anon_transport_class_unregister -EXPORT_SYMBOL_GPL vmlinux 0xcc6781b5 devm_hwrng_unregister -EXPORT_SYMBOL_GPL vmlinux 0xcc6bcac7 mm_kobj -EXPORT_SYMBOL_GPL vmlinux 0xcc8d69e4 usb_get_current_frame_number -EXPORT_SYMBOL_GPL vmlinux 0xcc92339b devm_of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0xcc410b0e simple_attr_release +EXPORT_SYMBOL_GPL vmlinux 0xcc5d85d6 __tracepoint_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0xcc642a27 phy_power_off +EXPORT_SYMBOL_GPL vmlinux 0xcc64baa5 net_ns_type_operations +EXPORT_SYMBOL_GPL vmlinux 0xcc6dfd4c acpi_dev_clear_dependencies EXPORT_SYMBOL_GPL vmlinux 0xcc9268fc hwpoison_filter_enable EXPORT_SYMBOL_GPL vmlinux 0xcc935375 walk_iomem_res_desc -EXPORT_SYMBOL_GPL vmlinux 0xcc958506 devm_regulator_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0xcc9d328f pinctrl_get -EXPORT_SYMBOL_GPL vmlinux 0xcca329de led_trigger_set -EXPORT_SYMBOL_GPL vmlinux 0xcca8e202 pingv6_ops -EXPORT_SYMBOL_GPL vmlinux 0xccb57e0f vfio_pci_core_sriov_configure -EXPORT_SYMBOL_GPL vmlinux 0xccb763d3 __SCK__tp_func_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0xcc93aaa5 clk_hw_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0xcc997d2c acpi_dev_get_first_consumer_dev +EXPORT_SYMBOL_GPL vmlinux 0xccafc077 debugfs_file_put +EXPORT_SYMBOL_GPL vmlinux 0xccb184eb sched_trace_rq_avg_rt EXPORT_SYMBOL_GPL vmlinux 0xcccfb2fa sata_deb_timing_hotplug -EXPORT_SYMBOL_GPL vmlinux 0xccd2e736 rtnl_link_unregister EXPORT_SYMBOL_GPL vmlinux 0xccd86806 ata_id_string -EXPORT_SYMBOL_GPL vmlinux 0xcce18b98 gpiod_get_raw_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xcce27893 da9052_adc_read_temp EXPORT_SYMBOL_GPL vmlinux 0xccea4e34 perf_get_x86_pmu_capability EXPORT_SYMBOL_GPL vmlinux 0xccf396a3 x86_perf_get_lbr EXPORT_SYMBOL_GPL vmlinux 0xccf52bc9 sfp_upstream_start -EXPORT_SYMBOL_GPL vmlinux 0xccfee69d firmware_request_cache -EXPORT_SYMBOL_GPL vmlinux 0xcd03c571 rio_request_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0xccf6f5ba register_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0xcd005f8b sata_async_notification +EXPORT_SYMBOL_GPL vmlinux 0xcd07d7b2 xenbus_dev_remove +EXPORT_SYMBOL_GPL vmlinux 0xcd0d5602 iommu_dev_enable_feature +EXPORT_SYMBOL_GPL vmlinux 0xcd226e33 tcp_register_ulp EXPORT_SYMBOL_GPL vmlinux 0xcd24e146 hash_digest_size -EXPORT_SYMBOL_GPL vmlinux 0xcd2d27f0 __SCK__tp_func_fib6_table_lookup -EXPORT_SYMBOL_GPL vmlinux 0xcd343456 fib_rules_seq_read +EXPORT_SYMBOL_GPL vmlinux 0xcd282c30 usb_unlocked_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xcd2b5b9d acpi_subsys_prepare EXPORT_SYMBOL_GPL vmlinux 0xcd3e5c7c acpi_release_memory -EXPORT_SYMBOL_GPL vmlinux 0xcd47186a gpiochip_generic_config -EXPORT_SYMBOL_GPL vmlinux 0xcd4b2342 ata_link_abort -EXPORT_SYMBOL_GPL vmlinux 0xcd661252 spi_async_locked -EXPORT_SYMBOL_GPL vmlinux 0xcd6b5385 nf_checksum_partial +EXPORT_SYMBOL_GPL vmlinux 0xcd3e93a5 fat_free_clusters +EXPORT_SYMBOL_GPL vmlinux 0xcd4f9026 pci_check_and_mask_intx +EXPORT_SYMBOL_GPL vmlinux 0xcd50f96d pwm_request_from_chip +EXPORT_SYMBOL_GPL vmlinux 0xcd51c737 fuse_dev_alloc_install EXPORT_SYMBOL_GPL vmlinux 0xcd6f2dc9 nf_log_buf_add +EXPORT_SYMBOL_GPL vmlinux 0xcd776c74 device_wakeup_enable EXPORT_SYMBOL_GPL vmlinux 0xcd81a945 switch_fpu_return -EXPORT_SYMBOL_GPL vmlinux 0xcd8b18cd ata_sas_port_alloc +EXPORT_SYMBOL_GPL vmlinux 0xcd88f80b xdp_rxq_info_unused EXPORT_SYMBOL_GPL vmlinux 0xcd8e8f82 uv_bios_enum_objs +EXPORT_SYMBOL_GPL vmlinux 0xcd91afb1 badblocks_set EXPORT_SYMBOL_GPL vmlinux 0xcd91b127 system_highpri_wq EXPORT_SYMBOL_GPL vmlinux 0xcd974f00 rcu_all_qs +EXPORT_SYMBOL_GPL vmlinux 0xcd98d727 xdp_rxq_info_unreg EXPORT_SYMBOL_GPL vmlinux 0xcd9cd2ff wakeme_after_rcu -EXPORT_SYMBOL_GPL vmlinux 0xcd9e2020 rio_route_get_entry -EXPORT_SYMBOL_GPL vmlinux 0xcda8805d crypto_register_template -EXPORT_SYMBOL_GPL vmlinux 0xcdad298e vfio_group_get_external_user_from_dev -EXPORT_SYMBOL_GPL vmlinux 0xcdada484 dm_noflush_suspending +EXPORT_SYMBOL_GPL vmlinux 0xcd9e2c96 pci_enable_rom +EXPORT_SYMBOL_GPL vmlinux 0xcda0ad55 usb_altnum_to_altsetting +EXPORT_SYMBOL_GPL vmlinux 0xcdabe5f4 devm_mbox_controller_register EXPORT_SYMBOL_GPL vmlinux 0xcdb6adcc ras_userspace_consumers EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs -EXPORT_SYMBOL_GPL vmlinux 0xcddd4a43 ping_hash +EXPORT_SYMBOL_GPL vmlinux 0xcdd7eae1 fscrypt_ioctl_get_policy_ex +EXPORT_SYMBOL_GPL vmlinux 0xcddecc8d clk_hw_register EXPORT_SYMBOL_GPL vmlinux 0xcde26600 cppc_get_transition_latency +EXPORT_SYMBOL_GPL vmlinux 0xcdea253b __acpi_node_get_property_reference +EXPORT_SYMBOL_GPL vmlinux 0xcdf24b07 set_online_page_callback +EXPORT_SYMBOL_GPL vmlinux 0xcdf9d6d0 bpf_sk_storage_diag_put +EXPORT_SYMBOL_GPL vmlinux 0xcdff7e8e devm_i2c_add_adapter EXPORT_SYMBOL_GPL vmlinux 0xce0a4020 xenbus_directory -EXPORT_SYMBOL_GPL vmlinux 0xce105ea1 tcp_bpf_sendmsg_redir -EXPORT_SYMBOL_GPL vmlinux 0xce11c171 pci_pasid_features -EXPORT_SYMBOL_GPL vmlinux 0xce20301f lwtstate_free -EXPORT_SYMBOL_GPL vmlinux 0xce20318d bus_get_kset -EXPORT_SYMBOL_GPL vmlinux 0xce28414a fuse_dev_alloc -EXPORT_SYMBOL_GPL vmlinux 0xce309561 component_bind_all -EXPORT_SYMBOL_GPL vmlinux 0xce38f32c pwm_adjust_config -EXPORT_SYMBOL_GPL vmlinux 0xce4830df iommu_uapi_cache_invalidate +EXPORT_SYMBOL_GPL vmlinux 0xce0a8bb6 rio_unlock_device +EXPORT_SYMBOL_GPL vmlinux 0xce15b9ec regulator_list_hardware_vsel +EXPORT_SYMBOL_GPL vmlinux 0xce2af6c4 iommu_set_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0xce3f0a85 sis_info133_for_sata +EXPORT_SYMBOL_GPL vmlinux 0xce4c4549 device_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xce615d15 regulator_set_voltage +EXPORT_SYMBOL_GPL vmlinux 0xce65d9ba __SCK__tp_func_block_bio_remap EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching -EXPORT_SYMBOL_GPL vmlinux 0xce70195f fuse_dev_operations -EXPORT_SYMBOL_GPL vmlinux 0xce7843d1 __rio_local_read_config_8 -EXPORT_SYMBOL_GPL vmlinux 0xce831ea8 irq_get_default_host -EXPORT_SYMBOL_GPL vmlinux 0xce8f171c task_active_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xce723aa6 ping_seq_start +EXPORT_SYMBOL_GPL vmlinux 0xce87b803 inet_unhash +EXPORT_SYMBOL_GPL vmlinux 0xce929e64 devm_extcon_dev_register EXPORT_SYMBOL_GPL vmlinux 0xce985658 kset_find_obj -EXPORT_SYMBOL_GPL vmlinux 0xceab8cc2 cpufreq_cpu_get_raw +EXPORT_SYMBOL_GPL vmlinux 0xceabff99 __blk_req_zone_write_lock +EXPORT_SYMBOL_GPL vmlinux 0xceb0b70a of_reset_control_array_get EXPORT_SYMBOL_GPL vmlinux 0xceb1f126 mpi_read_raw_data EXPORT_SYMBOL_GPL vmlinux 0xceb66bec sched_clock_cpu -EXPORT_SYMBOL_GPL vmlinux 0xcebc0219 tty_get_icount -EXPORT_SYMBOL_GPL vmlinux 0xced000fe power_supply_external_power_changed -EXPORT_SYMBOL_GPL vmlinux 0xced9c91e __traceiter_br_fdb_external_learn_add +EXPORT_SYMBOL_GPL vmlinux 0xced6e442 regulator_list_voltage_table +EXPORT_SYMBOL_GPL vmlinux 0xcede9d80 lwtunnel_get_encap_size EXPORT_SYMBOL_GPL vmlinux 0xcee1641c kgdb_unregister_nmi_console -EXPORT_SYMBOL_GPL vmlinux 0xcef96761 iommu_map_atomic +EXPORT_SYMBOL_GPL vmlinux 0xcee2268d subsys_interface_register +EXPORT_SYMBOL_GPL vmlinux 0xceea3bf0 blk_insert_cloned_request +EXPORT_SYMBOL_GPL vmlinux 0xceec3ff8 fsverity_cleanup_inode +EXPORT_SYMBOL_GPL vmlinux 0xcefe1d61 iommu_fwspec_init EXPORT_SYMBOL_GPL vmlinux 0xcf02ab71 __SCT__tp_func_block_rq_remap -EXPORT_SYMBOL_GPL vmlinux 0xcf1c93da cdrom_multisession -EXPORT_SYMBOL_GPL vmlinux 0xcf468a37 unwind_next_frame -EXPORT_SYMBOL_GPL vmlinux 0xcf506aba regmap_field_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0xcf2cffa8 usb_asmedia_modifyflowcontrol +EXPORT_SYMBOL_GPL vmlinux 0xcf424748 rio_lock_device +EXPORT_SYMBOL_GPL vmlinux 0xcf47f22d balloon_page_dequeue +EXPORT_SYMBOL_GPL vmlinux 0xcf4b38c9 nexthop_for_each_fib6_nh EXPORT_SYMBOL_GPL vmlinux 0xcf540422 ftrace_set_filter -EXPORT_SYMBOL_GPL vmlinux 0xcf612f46 fuse_request_end -EXPORT_SYMBOL_GPL vmlinux 0xcf691ac1 serial8250_get_port -EXPORT_SYMBOL_GPL vmlinux 0xcf822866 spi_get_device_id -EXPORT_SYMBOL_GPL vmlinux 0xcf83b372 blk_ksm_intersect_modes -EXPORT_SYMBOL_GPL vmlinux 0xcf848dc9 thermal_zone_device_update -EXPORT_SYMBOL_GPL vmlinux 0xcf9ea1e3 attribute_container_find_class_device -EXPORT_SYMBOL_GPL vmlinux 0xcfab0c27 fixed_phy_change_carrier -EXPORT_SYMBOL_GPL vmlinux 0xcfb4b82a pwm_apply_state -EXPORT_SYMBOL_GPL vmlinux 0xcfb73157 strp_check_rcv -EXPORT_SYMBOL_GPL vmlinux 0xcfbbab89 ipv6_proxy_select_ident -EXPORT_SYMBOL_GPL vmlinux 0xcfbddd86 ata_eh_freeze_port -EXPORT_SYMBOL_GPL vmlinux 0xcfbf5c5a platform_get_irq +EXPORT_SYMBOL_GPL vmlinux 0xcf604cae __SCK__tp_func_xhci_dbg_quirks +EXPORT_SYMBOL_GPL vmlinux 0xcf634e18 tty_port_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xcf82e09d rtc_set_time +EXPORT_SYMBOL_GPL vmlinux 0xcf8591e2 extcon_find_edev_by_node +EXPORT_SYMBOL_GPL vmlinux 0xcf85dd8a virtqueue_add_inbuf_ctx +EXPORT_SYMBOL_GPL vmlinux 0xcf8bbf73 devm_kstrdup +EXPORT_SYMBOL_GPL vmlinux 0xcf8eba76 pci_bridge_secondary_bus_reset +EXPORT_SYMBOL_GPL vmlinux 0xcf989d90 phy_calibrate +EXPORT_SYMBOL_GPL vmlinux 0xcf997072 virtio_device_freeze +EXPORT_SYMBOL_GPL vmlinux 0xcfbf08a7 acpi_dev_resume EXPORT_SYMBOL_GPL vmlinux 0xcfc5108a devlink_fmsg_u8_pair_put EXPORT_SYMBOL_GPL vmlinux 0xcfc7b4e4 rcu_barrier_tasks_trace EXPORT_SYMBOL_GPL vmlinux 0xcfd30d71 acpi_os_map_memory -EXPORT_SYMBOL_GPL vmlinux 0xcfdd30c8 dm_get_md -EXPORT_SYMBOL_GPL vmlinux 0xcfdf419c task_cls_state -EXPORT_SYMBOL_GPL vmlinux 0xcfeafa80 espintcp_queue_out -EXPORT_SYMBOL_GPL vmlinux 0xd003483e ata_pci_device_suspend -EXPORT_SYMBOL_GPL vmlinux 0xd006aaa2 dev_attr_sw_activity -EXPORT_SYMBOL_GPL vmlinux 0xd0174725 device_set_node +EXPORT_SYMBOL_GPL vmlinux 0xcfd939b7 pci_status_get_and_clear_errors +EXPORT_SYMBOL_GPL vmlinux 0xcfe21e8e pci_disable_pasid +EXPORT_SYMBOL_GPL vmlinux 0xd005ee85 efivar_entry_find +EXPORT_SYMBOL_GPL vmlinux 0xd015af1a iomap_writepages EXPORT_SYMBOL_GPL vmlinux 0xd0177a65 acrn_setup_intr_handler +EXPORT_SYMBOL_GPL vmlinux 0xd02ae553 nvdimm_provider_data EXPORT_SYMBOL_GPL vmlinux 0xd03eaf4c schedule_hrtimeout_range -EXPORT_SYMBOL_GPL vmlinux 0xd043efea pm_runtime_forbid EXPORT_SYMBOL_GPL vmlinux 0xd0458ccb xenbus_strstate -EXPORT_SYMBOL_GPL vmlinux 0xd04d2344 ip_icmp_error_rfc4884 +EXPORT_SYMBOL_GPL vmlinux 0xd04d9f5e dma_vmap_noncontiguous EXPORT_SYMBOL_GPL vmlinux 0xd051d489 srcu_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xd05f8cc6 serial8250_em485_destroy EXPORT_SYMBOL_GPL vmlinux 0xd06524ba raw_notifier_chain_unregister EXPORT_SYMBOL_GPL vmlinux 0xd067d3c5 system_freezable_power_efficient_wq -EXPORT_SYMBOL_GPL vmlinux 0xd075f989 ata_wait_after_reset -EXPORT_SYMBOL_GPL vmlinux 0xd0806e4f power_supply_get_by_name -EXPORT_SYMBOL_GPL vmlinux 0xd0816b07 blk_crypto_evict_key -EXPORT_SYMBOL_GPL vmlinux 0xd0929366 devm_phy_create +EXPORT_SYMBOL_GPL vmlinux 0xd06ee820 cpufreq_register_governor +EXPORT_SYMBOL_GPL vmlinux 0xd076fa06 relay_open +EXPORT_SYMBOL_GPL vmlinux 0xd084126c gpiod_get_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0xd08d9f55 fwnode_graph_get_port_parent EXPORT_SYMBOL_GPL vmlinux 0xd09911a6 acpi_dev_get_irq_type -EXPORT_SYMBOL_GPL vmlinux 0xd0993fbc max8997_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0xd09e6dbe sdio_f0_readb EXPORT_SYMBOL_GPL vmlinux 0xd0a183cb kobject_get_path -EXPORT_SYMBOL_GPL vmlinux 0xd0a27eb4 regulator_desc_list_voltage_linear -EXPORT_SYMBOL_GPL vmlinux 0xd0a98503 acpi_subsys_complete -EXPORT_SYMBOL_GPL vmlinux 0xd0b7282d driver_create_file -EXPORT_SYMBOL_GPL vmlinux 0xd0b78335 __udp_enqueue_schedule_skb -EXPORT_SYMBOL_GPL vmlinux 0xd0bdde37 wm8350_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xd0a213d9 generic_fh_to_dentry +EXPORT_SYMBOL_GPL vmlinux 0xd0a42622 mmc_app_cmd +EXPORT_SYMBOL_GPL vmlinux 0xd0b0d7a0 pci_epf_type_add_cfs EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart -EXPORT_SYMBOL_GPL vmlinux 0xd0c3ecee uart_handle_cts_change -EXPORT_SYMBOL_GPL vmlinux 0xd0c415c7 __clocksource_update_freq_scale -EXPORT_SYMBOL_GPL vmlinux 0xd0cb8a77 pm_generic_thaw_noirq -EXPORT_SYMBOL_GPL vmlinux 0xd0ccde8c proc_create_net_data_write +EXPORT_SYMBOL_GPL vmlinux 0xd0c0f8e4 ata_qc_complete_multiple +EXPORT_SYMBOL_GPL vmlinux 0xd0c1dadd pci_epc_write_header EXPORT_SYMBOL_GPL vmlinux 0xd0d156e9 __rht_bucket_nested +EXPORT_SYMBOL_GPL vmlinux 0xd0d2c0ce devm_phy_get EXPORT_SYMBOL_GPL vmlinux 0xd0d3f0a4 gen_pool_avail EXPORT_SYMBOL_GPL vmlinux 0xd0db0f12 run_dax -EXPORT_SYMBOL_GPL vmlinux 0xd0dea79b debugfs_create_file_unsafe EXPORT_SYMBOL_GPL vmlinux 0xd0df12ba __SCT__tp_func_powernv_throttle -EXPORT_SYMBOL_GPL vmlinux 0xd0e47ea7 edac_pci_release_generic_ctl -EXPORT_SYMBOL_GPL vmlinux 0xd0ef3933 key_set_timeout -EXPORT_SYMBOL_GPL vmlinux 0xd0faf18c dev_pm_qos_remove_notifier -EXPORT_SYMBOL_GPL vmlinux 0xd11f1791 blk_queue_can_use_dma_map_merging -EXPORT_SYMBOL_GPL vmlinux 0xd125dd24 skb_zerocopy_iter_stream -EXPORT_SYMBOL_GPL vmlinux 0xd128e42d serial8250_do_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xd1292d05 ata_sff_queue_pio_task -EXPORT_SYMBOL_GPL vmlinux 0xd12c37d4 dma_buf_begin_cpu_access +EXPORT_SYMBOL_GPL vmlinux 0xd0e6a9b3 cpuidle_register +EXPORT_SYMBOL_GPL vmlinux 0xd102dde2 nvdimm_bus_check_dimm_count +EXPORT_SYMBOL_GPL vmlinux 0xd1044c73 nd_region_provider_data +EXPORT_SYMBOL_GPL vmlinux 0xd1081eae debugfs_create_devm_seqfile +EXPORT_SYMBOL_GPL vmlinux 0xd10bbb5f blk_queue_max_zone_append_sectors +EXPORT_SYMBOL_GPL vmlinux 0xd11405c4 regmap_fields_read +EXPORT_SYMBOL_GPL vmlinux 0xd133a41b irq_domain_associate EXPORT_SYMBOL_GPL vmlinux 0xd1386738 x509_cert_parse EXPORT_SYMBOL_GPL vmlinux 0xd13a94d1 __SCT__tp_func_devlink_trap_report -EXPORT_SYMBOL_GPL vmlinux 0xd146f92b irq_domain_associate_many +EXPORT_SYMBOL_GPL vmlinux 0xd147660d usb_remove_phy EXPORT_SYMBOL_GPL vmlinux 0xd1481de7 mpi_clear +EXPORT_SYMBOL_GPL vmlinux 0xd150f3f9 devlink_dpipe_table_unregister EXPORT_SYMBOL_GPL vmlinux 0xd159586c net_prio_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xd165479a wm831x_device_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xd1748eee i2c_new_dummy_device +EXPORT_SYMBOL_GPL vmlinux 0xd16d71f0 __netpoll_free EXPORT_SYMBOL_GPL vmlinux 0xd17d2a22 phy_basic_features -EXPORT_SYMBOL_GPL vmlinux 0xd18f7288 rtc_set_time -EXPORT_SYMBOL_GPL vmlinux 0xd1969d10 crypto_unregister_aead -EXPORT_SYMBOL_GPL vmlinux 0xd19aee96 gpiochip_lock_as_irq -EXPORT_SYMBOL_GPL vmlinux 0xd1a36065 __tracepoint_suspend_resume -EXPORT_SYMBOL_GPL vmlinux 0xd1ca8f68 genphy_c45_read_link +EXPORT_SYMBOL_GPL vmlinux 0xd1834934 fwnode_get_phy_node +EXPORT_SYMBOL_GPL vmlinux 0xd19497eb nvdimm_flush +EXPORT_SYMBOL_GPL vmlinux 0xd1c4cd70 sdio_memcpy_fromio EXPORT_SYMBOL_GPL vmlinux 0xd1cac7bf unregister_ftrace_direct EXPORT_SYMBOL_GPL vmlinux 0xd1cbc23c add_timer_on -EXPORT_SYMBOL_GPL vmlinux 0xd1ccb12b device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd1e71d2e l3mdev_master_ifindex_rcu -EXPORT_SYMBOL_GPL vmlinux 0xd1e8ed44 genphy_c45_pma_suspend +EXPORT_SYMBOL_GPL vmlinux 0xd1d69adf wait_on_page_writeback EXPORT_SYMBOL_GPL vmlinux 0xd1e9b2ad __SCT__tp_func_rpm_resume EXPORT_SYMBOL_GPL vmlinux 0xd1f2eee2 nf_logger_find_get -EXPORT_SYMBOL_GPL vmlinux 0xd20726dc __synth_event_gen_cmd_start -EXPORT_SYMBOL_GPL vmlinux 0xd20a0aa5 sdio_writew +EXPORT_SYMBOL_GPL vmlinux 0xd1f36bdd i2c_dw_adjust_bus_speed +EXPORT_SYMBOL_GPL vmlinux 0xd2083ce9 power_supply_external_power_changed EXPORT_SYMBOL_GPL vmlinux 0xd20c66ab __SCT__tp_func_sched_util_est_se_tp EXPORT_SYMBOL_GPL vmlinux 0xd217e9e6 trace_set_clr_event EXPORT_SYMBOL_GPL vmlinux 0xd21b61bd async_schedule_node_domain -EXPORT_SYMBOL_GPL vmlinux 0xd21daea5 mdiobus_modify -EXPORT_SYMBOL_GPL vmlinux 0xd2226ef3 ehci_resume -EXPORT_SYMBOL_GPL vmlinux 0xd22ab8be phy_restore_page +EXPORT_SYMBOL_GPL vmlinux 0xd21f01e5 devm_ioremap_uc +EXPORT_SYMBOL_GPL vmlinux 0xd2411dd8 get_governor_parent_kobj EXPORT_SYMBOL_GPL vmlinux 0xd2423f76 i2c_acpi_get_i2c_resource -EXPORT_SYMBOL_GPL vmlinux 0xd245ee65 devres_release_group -EXPORT_SYMBOL_GPL vmlinux 0xd24bb227 blk_insert_cloned_request EXPORT_SYMBOL_GPL vmlinux 0xd24e9e8c klist_init EXPORT_SYMBOL_GPL vmlinux 0xd260af0d ring_buffer_write -EXPORT_SYMBOL_GPL vmlinux 0xd26120f3 dev_pm_opp_find_freq_floor -EXPORT_SYMBOL_GPL vmlinux 0xd26ad0b2 register_asymmetric_key_parser -EXPORT_SYMBOL_GPL vmlinux 0xd26aeaf6 ip6_datagram_send_ctl -EXPORT_SYMBOL_GPL vmlinux 0xd26b132e crypto_register_rng -EXPORT_SYMBOL_GPL vmlinux 0xd27252d0 devlink_port_attrs_pci_sf_set +EXPORT_SYMBOL_GPL vmlinux 0xd2673c98 blk_next_bio EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative -EXPORT_SYMBOL_GPL vmlinux 0xd278aa4d usb_submit_urb -EXPORT_SYMBOL_GPL vmlinux 0xd27992cb wwan_create_port EXPORT_SYMBOL_GPL vmlinux 0xd27f215d gnttab_alloc_grant_references -EXPORT_SYMBOL_GPL vmlinux 0xd286e119 kern_mount -EXPORT_SYMBOL_GPL vmlinux 0xd2a37ea3 acpi_subsys_restore_early -EXPORT_SYMBOL_GPL vmlinux 0xd2ad7465 crypto_register_shash -EXPORT_SYMBOL_GPL vmlinux 0xd2b0d0be pci_dev_unlock +EXPORT_SYMBOL_GPL vmlinux 0xd288d041 dm_internal_resume_fast +EXPORT_SYMBOL_GPL vmlinux 0xd2988876 balloon_page_list_dequeue +EXPORT_SYMBOL_GPL vmlinux 0xd29daa29 cpu_device_create +EXPORT_SYMBOL_GPL vmlinux 0xd2a812e9 regmap_reinit_cache EXPORT_SYMBOL_GPL vmlinux 0xd2b10a05 ata_timing_find_mode -EXPORT_SYMBOL_GPL vmlinux 0xd2b2a4b3 aead_init_geniv -EXPORT_SYMBOL_GPL vmlinux 0xd2c5461f tracepoint_probe_register -EXPORT_SYMBOL_GPL vmlinux 0xd2d276eb devm_rtc_device_register -EXPORT_SYMBOL_GPL vmlinux 0xd2d7b2e2 ata_host_detach -EXPORT_SYMBOL_GPL vmlinux 0xd2e9d08c set_selection_kernel -EXPORT_SYMBOL_GPL vmlinux 0xd3025427 __pm_stay_awake -EXPORT_SYMBOL_GPL vmlinux 0xd30a4506 scsi_dh_set_params +EXPORT_SYMBOL_GPL vmlinux 0xd2c58d02 l3mdev_ifindex_lookup_by_table_id +EXPORT_SYMBOL_GPL vmlinux 0xd2c709af __synth_event_gen_cmd_start +EXPORT_SYMBOL_GPL vmlinux 0xd2cc36da ata_pci_bmdma_init_one +EXPORT_SYMBOL_GPL vmlinux 0xd3194bf4 __rio_local_read_config_16 EXPORT_SYMBOL_GPL vmlinux 0xd31a2ac5 ring_buffer_oldest_event_ts -EXPORT_SYMBOL_GPL vmlinux 0xd31f9a8f devlink_resource_size_get +EXPORT_SYMBOL_GPL vmlinux 0xd31ceb3b handle_fasteoi_nmi EXPORT_SYMBOL_GPL vmlinux 0xd320ebaf pci_epc_get_first_free_bar -EXPORT_SYMBOL_GPL vmlinux 0xd3244569 ata_sas_slave_configure -EXPORT_SYMBOL_GPL vmlinux 0xd32483ec cpuidle_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd33df075 node_to_amd_nb -EXPORT_SYMBOL_GPL vmlinux 0xd3409c80 bio_start_io_acct -EXPORT_SYMBOL_GPL vmlinux 0xd35263f5 usb_alloc_urb -EXPORT_SYMBOL_GPL vmlinux 0xd354ae7c led_init_default_state_get -EXPORT_SYMBOL_GPL vmlinux 0xd3649d1d extcon_unregister_notifier_all +EXPORT_SYMBOL_GPL vmlinux 0xd32d69f1 __traceiter_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0xd33df147 tcf_dev_queue_xmit +EXPORT_SYMBOL_GPL vmlinux 0xd33e17f8 __tracepoint_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0xd33fcfba pm_clk_add +EXPORT_SYMBOL_GPL vmlinux 0xd34fc6cf iomap_page_mkwrite EXPORT_SYMBOL_GPL vmlinux 0xd36760ef __usb_get_extra_descriptor -EXPORT_SYMBOL_GPL vmlinux 0xd36ca33b __devm_regmap_init_spi -EXPORT_SYMBOL_GPL vmlinux 0xd3704d6a devlink_dpipe_action_put +EXPORT_SYMBOL_GPL vmlinux 0xd3717a68 bsg_remove_queue EXPORT_SYMBOL_GPL vmlinux 0xd3752c27 atomic_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xd384ab4d __SCK__tp_func_mc_event -EXPORT_SYMBOL_GPL vmlinux 0xd396e435 regmap_exit +EXPORT_SYMBOL_GPL vmlinux 0xd37db35b blk_mq_unfreeze_queue +EXPORT_SYMBOL_GPL vmlinux 0xd37e166f __tracepoint_neigh_event_send_dead +EXPORT_SYMBOL_GPL vmlinux 0xd387d168 rio_unregister_scan +EXPORT_SYMBOL_GPL vmlinux 0xd3917ba2 pci_remove_root_bus +EXPORT_SYMBOL_GPL vmlinux 0xd3978b3b sysfs_remove_files EXPORT_SYMBOL_GPL vmlinux 0xd39e9848 put_itimerspec64 -EXPORT_SYMBOL_GPL vmlinux 0xd3a972ba led_set_brightness_nosleep -EXPORT_SYMBOL_GPL vmlinux 0xd3c03753 class_remove_file_ns -EXPORT_SYMBOL_GPL vmlinux 0xd3c33e6a devlink_free -EXPORT_SYMBOL_GPL vmlinux 0xd3cae06b regmap_get_val_endian -EXPORT_SYMBOL_GPL vmlinux 0xd3d74658 dma_resv_get_fences -EXPORT_SYMBOL_GPL vmlinux 0xd3d97c6c tcp_done +EXPORT_SYMBOL_GPL vmlinux 0xd3a816c0 dev_pm_opp_put_supported_hw +EXPORT_SYMBOL_GPL vmlinux 0xd3c87498 strp_stop +EXPORT_SYMBOL_GPL vmlinux 0xd3ccf260 devfreq_event_enable_edev EXPORT_SYMBOL_GPL vmlinux 0xd3ec851c __traceiter_unmap -EXPORT_SYMBOL_GPL vmlinux 0xd3f16106 dma_get_merge_boundary -EXPORT_SYMBOL_GPL vmlinux 0xd3f86fda fwnode_connection_find_match -EXPORT_SYMBOL_GPL vmlinux 0xd3feadc1 devm_led_classdev_register_ext -EXPORT_SYMBOL_GPL vmlinux 0xd3ff8830 dw_pcie_ep_linkup +EXPORT_SYMBOL_GPL vmlinux 0xd3f0794c rtnl_af_unregister EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq -EXPORT_SYMBOL_GPL vmlinux 0xd4035d58 acpi_get_first_physical_node -EXPORT_SYMBOL_GPL vmlinux 0xd413fb3f __traceiter_pelt_irq_tp -EXPORT_SYMBOL_GPL vmlinux 0xd4181fa0 vfio_virqfd_enable -EXPORT_SYMBOL_GPL vmlinux 0xd419e92b uhci_check_and_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0xd416a87a inet6_compat_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xd41e82b9 __traceiter_pelt_irq_tp +EXPORT_SYMBOL_GPL vmlinux 0xd41fe12b bio_associate_blkg_from_css EXPORT_SYMBOL_GPL vmlinux 0xd426dbc4 erst_get_record_count EXPORT_SYMBOL_GPL vmlinux 0xd42f1d4e show_rcu_tasks_rude_gp_kthread -EXPORT_SYMBOL_GPL vmlinux 0xd4336023 fwnode_get_phy_node -EXPORT_SYMBOL_GPL vmlinux 0xd4346024 pm_generic_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0xd43460b5 rtc_update_irq_enable EXPORT_SYMBOL_GPL vmlinux 0xd4404350 __SCT__tp_func_block_split -EXPORT_SYMBOL_GPL vmlinux 0xd4484c3f __SCK__tp_func_neigh_update EXPORT_SYMBOL_GPL vmlinux 0xd44a5eac kgdb_register_nmi_console -EXPORT_SYMBOL_GPL vmlinux 0xd44e4743 anon_inode_getfd -EXPORT_SYMBOL_GPL vmlinux 0xd468478d rtnl_delete_link +EXPORT_SYMBOL_GPL vmlinux 0xd44c93a4 tps6586x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xd4575c2f regmap_mmio_attach_clk +EXPORT_SYMBOL_GPL vmlinux 0xd466e63c crypto_shash_final EXPORT_SYMBOL_GPL vmlinux 0xd46af5ef cppc_get_perf_ctrs -EXPORT_SYMBOL_GPL vmlinux 0xd49cb9ce sysfs_remove_link -EXPORT_SYMBOL_GPL vmlinux 0xd49dc2de devfreq_event_add_edev -EXPORT_SYMBOL_GPL vmlinux 0xd4b388a4 tun_get_socket +EXPORT_SYMBOL_GPL vmlinux 0xd46d7117 gpiod_set_config +EXPORT_SYMBOL_GPL vmlinux 0xd47260fe ata_sff_freeze +EXPORT_SYMBOL_GPL vmlinux 0xd492d4ff key_type_logon +EXPORT_SYMBOL_GPL vmlinux 0xd4b4f6a6 sysfs_remove_file_ns EXPORT_SYMBOL_GPL vmlinux 0xd4b6157e devlink_health_reporter_recovery_done +EXPORT_SYMBOL_GPL vmlinux 0xd4b85789 usb_role_switch_register EXPORT_SYMBOL_GPL vmlinux 0xd4b9a616 reset_control_bulk_put -EXPORT_SYMBOL_GPL vmlinux 0xd4ba0c0b __iomap_dio_rw -EXPORT_SYMBOL_GPL vmlinux 0xd4bcebbc alloc_empty_file -EXPORT_SYMBOL_GPL vmlinux 0xd4bdc445 is_transparent_hugepage -EXPORT_SYMBOL_GPL vmlinux 0xd4c003e1 crypto_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0xd4c0d701 dev_pm_opp_enable EXPORT_SYMBOL_GPL vmlinux 0xd4c14632 system_unbound_wq -EXPORT_SYMBOL_GPL vmlinux 0xd4c1f960 switchdev_handle_fdb_del_to_device -EXPORT_SYMBOL_GPL vmlinux 0xd4c27954 devlink_reload_disable -EXPORT_SYMBOL_GPL vmlinux 0xd4c72def synth_event_add_val -EXPORT_SYMBOL_GPL vmlinux 0xd4cca1cd bus_register -EXPORT_SYMBOL_GPL vmlinux 0xd4db625a handle_bad_irq -EXPORT_SYMBOL_GPL vmlinux 0xd4deded3 phy_calibrate +EXPORT_SYMBOL_GPL vmlinux 0xd4c5b46d regulator_desc_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0xd4cc8762 pci_find_next_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0xd4d49911 to_software_node +EXPORT_SYMBOL_GPL vmlinux 0xd4e40275 _copy_mc_to_iter EXPORT_SYMBOL_GPL vmlinux 0xd4e6d7e0 linear_range_get_value -EXPORT_SYMBOL_GPL vmlinux 0xd4ea5c3f iommu_capable -EXPORT_SYMBOL_GPL vmlinux 0xd4ef7d1c gnttab_page_cache_shrink +EXPORT_SYMBOL_GPL vmlinux 0xd4ee30d2 switchdev_handle_port_obj_del EXPORT_SYMBOL_GPL vmlinux 0xd4f5bfa5 iommu_queue_iopf -EXPORT_SYMBOL_GPL vmlinux 0xd50561db ohci_resume +EXPORT_SYMBOL_GPL vmlinux 0xd4f991c3 irq_domain_translate_twocell +EXPORT_SYMBOL_GPL vmlinux 0xd50376d3 __efivar_entry_get +EXPORT_SYMBOL_GPL vmlinux 0xd504f9b9 bio_start_io_acct +EXPORT_SYMBOL_GPL vmlinux 0xd511eaae regulator_bulk_force_disable +EXPORT_SYMBOL_GPL vmlinux 0xd5261149 xenbus_read_otherend_details +EXPORT_SYMBOL_GPL vmlinux 0xd52843e8 device_link_add EXPORT_SYMBOL_GPL vmlinux 0xd5301b2c linear_range_get_max_value -EXPORT_SYMBOL_GPL vmlinux 0xd53a58e3 devm_devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0xd535c047 extcon_set_property_capability EXPORT_SYMBOL_GPL vmlinux 0xd53c67b3 unregister_net_sysctl_table -EXPORT_SYMBOL_GPL vmlinux 0xd542c354 gov_update_cpu_data EXPORT_SYMBOL_GPL vmlinux 0xd5474690 usb_role_switch_set_role -EXPORT_SYMBOL_GPL vmlinux 0xd55a8551 rio_unregister_scan +EXPORT_SYMBOL_GPL vmlinux 0xd54a6759 regulator_set_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0xd55240d2 bpf_prog_free EXPORT_SYMBOL_GPL vmlinux 0xd55ad93b iommu_group_get_iommudata +EXPORT_SYMBOL_GPL vmlinux 0xd563598b pci_epc_start +EXPORT_SYMBOL_GPL vmlinux 0xd575cc26 rdev_clear_badblocks EXPORT_SYMBOL_GPL vmlinux 0xd57fbd31 hwrng_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd58ed7ce wm831x_auxadc_read +EXPORT_SYMBOL_GPL vmlinux 0xd5851270 ohci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0xd588eb05 user_update +EXPORT_SYMBOL_GPL vmlinux 0xd58cab96 get_task_pid +EXPORT_SYMBOL_GPL vmlinux 0xd59389d7 sk_msg_return +EXPORT_SYMBOL_GPL vmlinux 0xd596b0b2 power_supply_get_battery_info EXPORT_SYMBOL_GPL vmlinux 0xd59a1587 linkmode_resolve_pause -EXPORT_SYMBOL_GPL vmlinux 0xd59b8fe9 gpiod_unexport -EXPORT_SYMBOL_GPL vmlinux 0xd5a7dc38 skb_mpls_pop -EXPORT_SYMBOL_GPL vmlinux 0xd5b00b38 devres_remove_group -EXPORT_SYMBOL_GPL vmlinux 0xd5b18cb9 regmap_write -EXPORT_SYMBOL_GPL vmlinux 0xd5d2076a dma_buf_vmap -EXPORT_SYMBOL_GPL vmlinux 0xd5ebac8b usb_pipe_type_check -EXPORT_SYMBOL_GPL vmlinux 0xd5f07c35 pinctrl_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0xd5af9e9b lwtstate_free +EXPORT_SYMBOL_GPL vmlinux 0xd5cf9004 blk_freeze_queue_start +EXPORT_SYMBOL_GPL vmlinux 0xd5e07690 usb_debug_root EXPORT_SYMBOL_GPL vmlinux 0xd5f3bb7b set_memory_encrypted -EXPORT_SYMBOL_GPL vmlinux 0xd5fd9935 clk_register -EXPORT_SYMBOL_GPL vmlinux 0xd60a37a6 __tracepoint_neigh_cleanup_and_release -EXPORT_SYMBOL_GPL vmlinux 0xd6195983 compat_only_sysfs_link_entry_to_kobj -EXPORT_SYMBOL_GPL vmlinux 0xd61d55f4 ip4_datagram_release_cb -EXPORT_SYMBOL_GPL vmlinux 0xd6312fd9 pstore_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd640dcd2 tty_ldisc_deref +EXPORT_SYMBOL_GPL vmlinux 0xd5ffb4c6 scsi_dh_attach +EXPORT_SYMBOL_GPL vmlinux 0xd6094b5b blk_mq_freeze_queue +EXPORT_SYMBOL_GPL vmlinux 0xd6192211 regulator_set_active_discharge_regmap +EXPORT_SYMBOL_GPL vmlinux 0xd61fdb0a fuse_file_poll +EXPORT_SYMBOL_GPL vmlinux 0xd621e29f ethnl_cable_test_finished +EXPORT_SYMBOL_GPL vmlinux 0xd62ec1ab crypto_stats_kpp_set_secret +EXPORT_SYMBOL_GPL vmlinux 0xd645537a __dev_change_net_namespace EXPORT_SYMBOL_GPL vmlinux 0xd64ed259 __memcat_p -EXPORT_SYMBOL_GPL vmlinux 0xd65812f6 vring_transport_features -EXPORT_SYMBOL_GPL vmlinux 0xd65a8c5e wait_on_page_writeback_killable -EXPORT_SYMBOL_GPL vmlinux 0xd66da55b subsys_interface_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd671533a dw_pcie_read_dbi +EXPORT_SYMBOL_GPL vmlinux 0xd64fa4f2 platform_device_put +EXPORT_SYMBOL_GPL vmlinux 0xd65ca756 gpiod_set_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xd65d6efb clk_mux_determine_rate_flags +EXPORT_SYMBOL_GPL vmlinux 0xd668f38c of_icc_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0xd66deb08 wm831x_device_shutdown EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget -EXPORT_SYMBOL_GPL vmlinux 0xd687f920 sched_trace_cfs_rq_path -EXPORT_SYMBOL_GPL vmlinux 0xd695d955 nexthop_find_by_id -EXPORT_SYMBOL_GPL vmlinux 0xd6b92930 edac_mc_add_mc_with_groups -EXPORT_SYMBOL_GPL vmlinux 0xd6ba49c1 debugfs_create_u32_array -EXPORT_SYMBOL_GPL vmlinux 0xd6f14936 scsi_dh_attach -EXPORT_SYMBOL_GPL vmlinux 0xd6fedae3 devm_regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xd67ff7b3 regmap_fields_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0xd6851b1a __regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0xd68e7b35 wwan_unregister_ops +EXPORT_SYMBOL_GPL vmlinux 0xd694b32f apply_to_existing_page_range +EXPORT_SYMBOL_GPL vmlinux 0xd6a3b921 devm_gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0xd6aed214 rio_mport_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0xd6c2d8b1 irq_get_default_host +EXPORT_SYMBOL_GPL vmlinux 0xd6d8b1c4 crypto_spawn_tfm2 EXPORT_SYMBOL_GPL vmlinux 0xd6feefa5 agp_num_entries -EXPORT_SYMBOL_GPL vmlinux 0xd702c719 nd_cmd_in_size -EXPORT_SYMBOL_GPL vmlinux 0xd705a05b __SCK__tp_func_suspend_resume -EXPORT_SYMBOL_GPL vmlinux 0xd708ddbf ata_qc_complete -EXPORT_SYMBOL_GPL vmlinux 0xd7132131 dev_pm_opp_get_level -EXPORT_SYMBOL_GPL vmlinux 0xd7194829 dev_pm_opp_set_clkname +EXPORT_SYMBOL_GPL vmlinux 0xd724dbb5 devlink_dpipe_table_counter_enabled EXPORT_SYMBOL_GPL vmlinux 0xd7269c64 osc_sb_native_usb4_control -EXPORT_SYMBOL_GPL vmlinux 0xd728f70e ata_sas_scsi_ioctl EXPORT_SYMBOL_GPL vmlinux 0xd7293ffc percpu_ref_reinit -EXPORT_SYMBOL_GPL vmlinux 0xd72b110f tps6586x_get_version +EXPORT_SYMBOL_GPL vmlinux 0xd72b71ef component_master_del EXPORT_SYMBOL_GPL vmlinux 0xd72feba2 xenbus_read_driver_state EXPORT_SYMBOL_GPL vmlinux 0xd7399d2a efivar_entry_iter_end -EXPORT_SYMBOL_GPL vmlinux 0xd747fa08 phy_init -EXPORT_SYMBOL_GPL vmlinux 0xd74ff7c6 relay_flush -EXPORT_SYMBOL_GPL vmlinux 0xd7596853 usb_alloc_dev EXPORT_SYMBOL_GPL vmlinux 0xd75b20aa rsa_parse_priv_key -EXPORT_SYMBOL_GPL vmlinux 0xd75e09b3 __SCK__tp_func_sched_util_est_se_tp +EXPORT_SYMBOL_GPL vmlinux 0xd75f80b3 bpf_offload_dev_match +EXPORT_SYMBOL_GPL vmlinux 0xd760c726 sched_set_fifo EXPORT_SYMBOL_GPL vmlinux 0xd768e985 regulator_has_full_constraints -EXPORT_SYMBOL_GPL vmlinux 0xd76e0ad8 trace_array_printk +EXPORT_SYMBOL_GPL vmlinux 0xd7705129 mmu_notifier_range_update_to_read_only EXPORT_SYMBOL_GPL vmlinux 0xd774957d mpi_write_to_sgl -EXPORT_SYMBOL_GPL vmlinux 0xd77eca2a xfrm_put_translator -EXPORT_SYMBOL_GPL vmlinux 0xd7a5c8e7 scsi_build_sense -EXPORT_SYMBOL_GPL vmlinux 0xd7b031ac fs_dax_get_by_bdev +EXPORT_SYMBOL_GPL vmlinux 0xd77f8dae devlink_flash_update_status_notify +EXPORT_SYMBOL_GPL vmlinux 0xd790caf0 acpi_dev_remove_driver_gpios EXPORT_SYMBOL_GPL vmlinux 0xd7b5dfee xas_split EXPORT_SYMBOL_GPL vmlinux 0xd7b7fb80 pkcs7_validate_trust EXPORT_SYMBOL_GPL vmlinux 0xd7cea889 edac_mod_work +EXPORT_SYMBOL_GPL vmlinux 0xd7d5913d ata_sas_slave_configure EXPORT_SYMBOL_GPL vmlinux 0xd7d7f2a7 devlink_port_health_reporter_destroy -EXPORT_SYMBOL_GPL vmlinux 0xd7d88b00 acpi_dev_clear_dependencies -EXPORT_SYMBOL_GPL vmlinux 0xd7dc8b8f spi_write_then_read -EXPORT_SYMBOL_GPL vmlinux 0xd7e14fb4 pwmchip_remove -EXPORT_SYMBOL_GPL vmlinux 0xd7e2912b class_interface_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd7e4b45b fat_time_fat2unix -EXPORT_SYMBOL_GPL vmlinux 0xd7e72727 dbs_update -EXPORT_SYMBOL_GPL vmlinux 0xd7ee2b1d platform_get_irq_byname_optional -EXPORT_SYMBOL_GPL vmlinux 0xd803838e ata_do_dev_read_id -EXPORT_SYMBOL_GPL vmlinux 0xd8163605 gpiochip_find -EXPORT_SYMBOL_GPL vmlinux 0xd8289d9a debugfs_create_symlink -EXPORT_SYMBOL_GPL vmlinux 0xd8303805 __blk_req_zone_write_lock +EXPORT_SYMBOL_GPL vmlinux 0xd7ee4c8e dm_start_time_ns_from_clone +EXPORT_SYMBOL_GPL vmlinux 0xd7ef5dde devm_regmap_del_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0xd7f023a0 md_do_sync +EXPORT_SYMBOL_GPL vmlinux 0xd7fe58b5 usb_alloc_dev +EXPORT_SYMBOL_GPL vmlinux 0xd80ece9f max8997_update_reg +EXPORT_SYMBOL_GPL vmlinux 0xd8135d33 security_inode_mkdir +EXPORT_SYMBOL_GPL vmlinux 0xd826f5e9 kthread_unpark +EXPORT_SYMBOL_GPL vmlinux 0xd83418e5 bus_remove_file EXPORT_SYMBOL_GPL vmlinux 0xd84d35bd dax_read_lock -EXPORT_SYMBOL_GPL vmlinux 0xd84ead25 bpf_prog_get_type_dev -EXPORT_SYMBOL_GPL vmlinux 0xd85f3090 __SCK__tp_func_detach_device_from_domain -EXPORT_SYMBOL_GPL vmlinux 0xd87d8d53 __tracepoint_block_rq_insert +EXPORT_SYMBOL_GPL vmlinux 0xd872a40a kernel_kobj EXPORT_SYMBOL_GPL vmlinux 0xd87fc0a0 usb_amd_prefetch_quirk -EXPORT_SYMBOL_GPL vmlinux 0xd883c96f bpf_offload_dev_create -EXPORT_SYMBOL_GPL vmlinux 0xd88d3373 noop_invalidatepage -EXPORT_SYMBOL_GPL vmlinux 0xd8b0d8fc __irq_domain_add -EXPORT_SYMBOL_GPL vmlinux 0xd8b1d5d8 tracing_cond_snapshot_data -EXPORT_SYMBOL_GPL vmlinux 0xd8b6b38a security_path_symlink -EXPORT_SYMBOL_GPL vmlinux 0xd8c441f7 dst_cache_get_ip4 -EXPORT_SYMBOL_GPL vmlinux 0xd8c98125 nfs42_ssc_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd8840179 __sync_filesystem +EXPORT_SYMBOL_GPL vmlinux 0xd8a283b6 espintcp_push_skb +EXPORT_SYMBOL_GPL vmlinux 0xd8bbb7b2 regulator_desc_list_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0xd8cd3e8b gpiod_get_index_optional EXPORT_SYMBOL_GPL vmlinux 0xd8d065dd hv_stimer_alloc EXPORT_SYMBOL_GPL vmlinux 0xd8d68ab1 dmi_memdev_type -EXPORT_SYMBOL_GPL vmlinux 0xd8e3de12 skb_gso_validate_mac_len -EXPORT_SYMBOL_GPL vmlinux 0xd8ee714f spi_replace_transfers +EXPORT_SYMBOL_GPL vmlinux 0xd8da22c4 led_trigger_remove +EXPORT_SYMBOL_GPL vmlinux 0xd8e5312a phy_start_machine +EXPORT_SYMBOL_GPL vmlinux 0xd8f293ea usb_pipe_type_check +EXPORT_SYMBOL_GPL vmlinux 0xd8f3100e tcp_done +EXPORT_SYMBOL_GPL vmlinux 0xd8f8f8a7 rtnl_get_net_ns_capable EXPORT_SYMBOL_GPL vmlinux 0xd8fbb14d net_cls_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xd900d396 ata_bmdma_stop -EXPORT_SYMBOL_GPL vmlinux 0xd90742ab generic_access_phys +EXPORT_SYMBOL_GPL vmlinux 0xd9067a78 screen_glyph_unicode +EXPORT_SYMBOL_GPL vmlinux 0xd90e0c42 __rio_local_write_config_16 EXPORT_SYMBOL_GPL vmlinux 0xd919806a amd_cache_northbridges EXPORT_SYMBOL_GPL vmlinux 0xd91dbd1f xdp_alloc_skb_bulk -EXPORT_SYMBOL_GPL vmlinux 0xd92633d5 __tracepoint_pelt_se_tp +EXPORT_SYMBOL_GPL vmlinux 0xd924a94d __SCK__tp_func_pelt_cfs_tp EXPORT_SYMBOL_GPL vmlinux 0xd92ef192 security_kernel_post_load_data EXPORT_SYMBOL_GPL vmlinux 0xd92f0791 leds_list_lock -EXPORT_SYMBOL_GPL vmlinux 0xd92f348d devm_devfreq_event_remove_edev -EXPORT_SYMBOL_GPL vmlinux 0xd9367e46 irq_domain_add_legacy +EXPORT_SYMBOL_GPL vmlinux 0xd937d389 skb_mpls_update_lse EXPORT_SYMBOL_GPL vmlinux 0xd93a5cb1 efivar_variable_is_removable -EXPORT_SYMBOL_GPL vmlinux 0xd9519c3c __traceiter_io_page_fault -EXPORT_SYMBOL_GPL vmlinux 0xd956833e __traceiter_xdp_bulk_tx +EXPORT_SYMBOL_GPL vmlinux 0xd96b648c __scsi_init_queue EXPORT_SYMBOL_GPL vmlinux 0xd96babb4 interval_tree_iter_next -EXPORT_SYMBOL_GPL vmlinux 0xd979ce9f dma_map_sgtable +EXPORT_SYMBOL_GPL vmlinux 0xd9815573 __traceiter_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0xd987c35f crypto_larval_kill +EXPORT_SYMBOL_GPL vmlinux 0xd98fe7fb crypto_shash_digest EXPORT_SYMBOL_GPL vmlinux 0xd9916c3a idr_alloc_u32 -EXPORT_SYMBOL_GPL vmlinux 0xd9945960 dm_bio_from_per_bio_data +EXPORT_SYMBOL_GPL vmlinux 0xd992191b switchdev_handle_port_attr_set EXPORT_SYMBOL_GPL vmlinux 0xd9992eb4 uv_bios_get_geoinfo -EXPORT_SYMBOL_GPL vmlinux 0xd9c22d1b usb_hcd_pci_remove -EXPORT_SYMBOL_GPL vmlinux 0xd9c55054 fuse_file_poll +EXPORT_SYMBOL_GPL vmlinux 0xd99b3f31 bsg_register_queue +EXPORT_SYMBOL_GPL vmlinux 0xd99e0d4f tpm2_get_cc_attrs_tbl +EXPORT_SYMBOL_GPL vmlinux 0xd99f6fb4 serial8250_do_set_divisor +EXPORT_SYMBOL_GPL vmlinux 0xd9a3bf85 pci_d3cold_enable +EXPORT_SYMBOL_GPL vmlinux 0xd9a57b73 __tracepoint_block_bio_remap EXPORT_SYMBOL_GPL vmlinux 0xd9e24457 ring_buffer_peek -EXPORT_SYMBOL_GPL vmlinux 0xd9e5e6bc isa_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0xd9f7681f lwtunnel_encap_add_ops +EXPORT_SYMBOL_GPL vmlinux 0xd9f4e7f2 vp_modern_get_num_queues EXPORT_SYMBOL_GPL vmlinux 0xd9ff2172 ezx_pcap_write -EXPORT_SYMBOL_GPL vmlinux 0xda064ff0 pci_user_read_config_dword EXPORT_SYMBOL_GPL vmlinux 0xda0947de kmsg_dump_unregister -EXPORT_SYMBOL_GPL vmlinux 0xda0effc8 acpi_dev_get_resources -EXPORT_SYMBOL_GPL vmlinux 0xda13d464 extcon_dev_free -EXPORT_SYMBOL_GPL vmlinux 0xda13e750 public_key_subtype -EXPORT_SYMBOL_GPL vmlinux 0xda14d90e devlink_port_region_create +EXPORT_SYMBOL_GPL vmlinux 0xda1e8b94 mptcp_get_reset_option EXPORT_SYMBOL_GPL vmlinux 0xda1f78ee clear_hv_tscchange_cb -EXPORT_SYMBOL_GPL vmlinux 0xda215de7 register_virtio_driver EXPORT_SYMBOL_GPL vmlinux 0xda320d31 sfp_module_start -EXPORT_SYMBOL_GPL vmlinux 0xda41b37b pci_pri_supported -EXPORT_SYMBOL_GPL vmlinux 0xda4c30a1 blk_ksm_update_capabilities -EXPORT_SYMBOL_GPL vmlinux 0xda5449a1 dm_hold -EXPORT_SYMBOL_GPL vmlinux 0xda55606e sock_diag_register_inet_compat -EXPORT_SYMBOL_GPL vmlinux 0xda575b64 power_supply_property_is_writeable -EXPORT_SYMBOL_GPL vmlinux 0xda6305b5 devm_irq_alloc_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0xda63452a pci_dev_run_wake -EXPORT_SYMBOL_GPL vmlinux 0xda66b876 pwm_request +EXPORT_SYMBOL_GPL vmlinux 0xda338f5c device_match_of_node +EXPORT_SYMBOL_GPL vmlinux 0xda3f1943 regulator_force_disable +EXPORT_SYMBOL_GPL vmlinux 0xda454a8a seg6_do_srh_encap +EXPORT_SYMBOL_GPL vmlinux 0xda6d05a4 sysfs_create_bin_file EXPORT_SYMBOL_GPL vmlinux 0xda7912d4 freq_qos_add_request -EXPORT_SYMBOL_GPL vmlinux 0xda82dec0 edac_mc_free +EXPORT_SYMBOL_GPL vmlinux 0xda81450c rio_mport_write_config_16 EXPORT_SYMBOL_GPL vmlinux 0xda8369a7 __traceiter_extlog_mem_event EXPORT_SYMBOL_GPL vmlinux 0xda8e1302 software_node_find_by_name -EXPORT_SYMBOL_GPL vmlinux 0xda963e71 ata_sas_async_probe +EXPORT_SYMBOL_GPL vmlinux 0xda905d37 crypto_alloc_ahash +EXPORT_SYMBOL_GPL vmlinux 0xda927e8c sdio_set_host_pm_flags EXPORT_SYMBOL_GPL vmlinux 0xdaa06dc1 acpi_lpat_raw_to_temp -EXPORT_SYMBOL_GPL vmlinux 0xdaa37725 gpiod_direction_input +EXPORT_SYMBOL_GPL vmlinux 0xdaa90baa cgroup_get_from_id +EXPORT_SYMBOL_GPL vmlinux 0xdaacd17b clk_hw_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0xdaafe819 edac_mc_add_mc_with_groups +EXPORT_SYMBOL_GPL vmlinux 0xdab42386 devm_gpiod_get_optional EXPORT_SYMBOL_GPL vmlinux 0xdab5a1eb interval_tree_insert -EXPORT_SYMBOL_GPL vmlinux 0xdac734cf edac_pci_handle_npe -EXPORT_SYMBOL_GPL vmlinux 0xdade58a0 crypto_alg_mod_lookup -EXPORT_SYMBOL_GPL vmlinux 0xdae0c1d4 register_pernet_device -EXPORT_SYMBOL_GPL vmlinux 0xdae9957b devlink_rate_nodes_destroy -EXPORT_SYMBOL_GPL vmlinux 0xdaef0cca usb_hcd_start_port_resume +EXPORT_SYMBOL_GPL vmlinux 0xdabef0ac virtio_break_device +EXPORT_SYMBOL_GPL vmlinux 0xdadf21ae hwmon_notify_event +EXPORT_SYMBOL_GPL vmlinux 0xdae1c5fc vp_modern_get_status +EXPORT_SYMBOL_GPL vmlinux 0xdaeb7cec fib_rules_lookup +EXPORT_SYMBOL_GPL vmlinux 0xdaf03570 sched_set_normal EXPORT_SYMBOL_GPL vmlinux 0xdaf4dfb3 fb_mode_option EXPORT_SYMBOL_GPL vmlinux 0xdaf5c16e __cookie_v4_check -EXPORT_SYMBOL_GPL vmlinux 0xdb19a66a nvdimm_delete -EXPORT_SYMBOL_GPL vmlinux 0xdb1a479e xenbus_dev_is_online -EXPORT_SYMBOL_GPL vmlinux 0xdb23eb62 wait_on_page_writeback -EXPORT_SYMBOL_GPL vmlinux 0xdb2e0c07 to_nd_desc -EXPORT_SYMBOL_GPL vmlinux 0xdb30061e dma_buf_export EXPORT_SYMBOL_GPL vmlinux 0xdb3498ab kobject_move -EXPORT_SYMBOL_GPL vmlinux 0xdb430dd4 virtqueue_enable_cb_delayed -EXPORT_SYMBOL_GPL vmlinux 0xdb436e03 rdev_clear_badblocks +EXPORT_SYMBOL_GPL vmlinux 0xdb40608c regmap_field_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0xdb41fdf8 dax_layout_busy_page +EXPORT_SYMBOL_GPL vmlinux 0xdb56c3f6 dma_async_device_channel_register EXPORT_SYMBOL_GPL vmlinux 0xdb62dc67 __SCT__tp_func_map EXPORT_SYMBOL_GPL vmlinux 0xdb63a944 acpi_lpat_get_conversion_table -EXPORT_SYMBOL_GPL vmlinux 0xdb6a5f6c irq_domain_get_irq_data -EXPORT_SYMBOL_GPL vmlinux 0xdb7267da iommu_sva_unbind_gpasid -EXPORT_SYMBOL_GPL vmlinux 0xdb7d80ad led_trigger_blink_oneshot -EXPORT_SYMBOL_GPL vmlinux 0xdb7ef336 pci_epc_write_header +EXPORT_SYMBOL_GPL vmlinux 0xdb65342f transport_configure_device +EXPORT_SYMBOL_GPL vmlinux 0xdb77c258 console_drivers +EXPORT_SYMBOL_GPL vmlinux 0xdb79e222 i2c_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0xdb7a5380 add_bootloader_randomness EXPORT_SYMBOL_GPL vmlinux 0xdb82f71f sbitmap_init_node +EXPORT_SYMBOL_GPL vmlinux 0xdb89f24d usb_kill_urb EXPORT_SYMBOL_GPL vmlinux 0xdb8a1b3f usermodehelper_read_trylock -EXPORT_SYMBOL_GPL vmlinux 0xdb9c5ef2 __iptunnel_pull_header -EXPORT_SYMBOL_GPL vmlinux 0xdb9d3fa8 bio_clone_blkg_association -EXPORT_SYMBOL_GPL vmlinux 0xdb9eae69 edac_device_del_device -EXPORT_SYMBOL_GPL vmlinux 0xdb9eddbe phy_configure -EXPORT_SYMBOL_GPL vmlinux 0xdb9fd95d subsys_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0xdb98b9d4 devlink_param_driverinit_value_set EXPORT_SYMBOL_GPL vmlinux 0xdba0e344 machine_check_poll -EXPORT_SYMBOL_GPL vmlinux 0xdbba7d86 fork_usermode_driver -EXPORT_SYMBOL_GPL vmlinux 0xdbbf5989 devm_regmap_del_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0xdbc65e60 serial8250_tx_chars -EXPORT_SYMBOL_GPL vmlinux 0xdbcadb35 regulator_set_soft_start_regmap -EXPORT_SYMBOL_GPL vmlinux 0xdbd48009 serdev_device_write_buf +EXPORT_SYMBOL_GPL vmlinux 0xdbaee489 device_link_del +EXPORT_SYMBOL_GPL vmlinux 0xdbaf019e blkcg_deactivate_policy +EXPORT_SYMBOL_GPL vmlinux 0xdbafa5ad inet_csk_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0xdbdb0e8b request_any_context_irq -EXPORT_SYMBOL_GPL vmlinux 0xdbe04f7c devm_pinctrl_register_and_init -EXPORT_SYMBOL_GPL vmlinux 0xdbe64018 i2c_new_scanned_device +EXPORT_SYMBOL_GPL vmlinux 0xdbe9a0ec ata_pci_device_suspend EXPORT_SYMBOL_GPL vmlinux 0xdbf7cb70 mpi_get_nbits -EXPORT_SYMBOL_GPL vmlinux 0xdbfdd34e gpiod_set_array_value +EXPORT_SYMBOL_GPL vmlinux 0xdbfa4c45 phy_power_on +EXPORT_SYMBOL_GPL vmlinux 0xdbfecfab rio_free_net EXPORT_SYMBOL_GPL vmlinux 0xdc02eb39 dmi_available +EXPORT_SYMBOL_GPL vmlinux 0xdc0d2303 devfreq_cooling_em_register EXPORT_SYMBOL_GPL vmlinux 0xdc14a211 xen_hvm_evtchn_do_upcall -EXPORT_SYMBOL_GPL vmlinux 0xdc2606f9 gpio_to_desc -EXPORT_SYMBOL_GPL vmlinux 0xdc291f66 dm_internal_suspend_noflush +EXPORT_SYMBOL_GPL vmlinux 0xdc322226 usb_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xdc357a0e irq_set_default_host +EXPORT_SYMBOL_GPL vmlinux 0xdc3647b6 crypto_hash_walk_done +EXPORT_SYMBOL_GPL vmlinux 0xdc3e99f1 devlink_resources_unregister EXPORT_SYMBOL_GPL vmlinux 0xdc43bdc6 pci_vpd_find_ro_info_keyword EXPORT_SYMBOL_GPL vmlinux 0xdc45a5db edac_stop_work -EXPORT_SYMBOL_GPL vmlinux 0xdc48e99d devlink_flash_update_status_notify +EXPORT_SYMBOL_GPL vmlinux 0xdc6220d6 decrypt_blob EXPORT_SYMBOL_GPL vmlinux 0xdc6596fa irq_set_parent EXPORT_SYMBOL_GPL vmlinux 0xdc6699cb acpi_dev_free_resource_list -EXPORT_SYMBOL_GPL vmlinux 0xdc681a0f dev_pm_domain_detach +EXPORT_SYMBOL_GPL vmlinux 0xdc682ba5 dm_internal_suspend_noflush EXPORT_SYMBOL_GPL vmlinux 0xdc719bcd ftrace_ops_set_global_filter 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 0xdc940d02 xenbus_free_evtchn +EXPORT_SYMBOL_GPL vmlinux 0xdc845921 __tracepoint_pelt_thermal_tp +EXPORT_SYMBOL_GPL vmlinux 0xdc932055 bpf_prog_add EXPORT_SYMBOL_GPL vmlinux 0xdc97af2e syscore_suspend EXPORT_SYMBOL_GPL vmlinux 0xdc9fa232 raw_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0xdca4bd7d spi_bus_unlock -EXPORT_SYMBOL_GPL vmlinux 0xdcc72397 regulator_get_voltage_rdev -EXPORT_SYMBOL_GPL vmlinux 0xdcf2f90a icc_link_destroy +EXPORT_SYMBOL_GPL vmlinux 0xdca001a5 msg_zerocopy_put_abort +EXPORT_SYMBOL_GPL vmlinux 0xdca58b1a bpf_prog_destroy +EXPORT_SYMBOL_GPL vmlinux 0xdcb5e702 bpf_trace_run12 +EXPORT_SYMBOL_GPL vmlinux 0xdcc19749 ehci_setup +EXPORT_SYMBOL_GPL vmlinux 0xdce741fb irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xdce86896 dmaengine_desc_get_metadata_ptr +EXPORT_SYMBOL_GPL vmlinux 0xdce8da76 component_master_add_with_match +EXPORT_SYMBOL_GPL vmlinux 0xdcf94d3c rio_request_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0xdd042211 xenbus_dev_groups EXPORT_SYMBOL_GPL vmlinux 0xdd0762df set_worker_desc -EXPORT_SYMBOL_GPL vmlinux 0xdd314997 i2c_dw_validate_speed +EXPORT_SYMBOL_GPL vmlinux 0xdd0c2ac5 sysfs_remove_group +EXPORT_SYMBOL_GPL vmlinux 0xdd114be0 relay_subbufs_consumed +EXPORT_SYMBOL_GPL vmlinux 0xdd20987c inode_congested EXPORT_SYMBOL_GPL vmlinux 0xdd391eff profile_event_unregister -EXPORT_SYMBOL_GPL vmlinux 0xdd3cd0fb debugfs_create_regset32 +EXPORT_SYMBOL_GPL vmlinux 0xdd39bee4 __fput_sync EXPORT_SYMBOL_GPL vmlinux 0xdd4253c7 unregister_kretprobe -EXPORT_SYMBOL_GPL vmlinux 0xdd5b1124 crypto_req_done +EXPORT_SYMBOL_GPL vmlinux 0xdd452009 hrtimer_init_sleeper +EXPORT_SYMBOL_GPL vmlinux 0xdd5bf9ba crypto_skcipher_decrypt EXPORT_SYMBOL_GPL vmlinux 0xdd626ee3 fuse_len_args -EXPORT_SYMBOL_GPL vmlinux 0xdd666b80 i2c_new_ancillary_device -EXPORT_SYMBOL_GPL vmlinux 0xdd6c6986 to_nd_region EXPORT_SYMBOL_GPL vmlinux 0xdd6ddcec __traceiter_error_report_end -EXPORT_SYMBOL_GPL vmlinux 0xdd70db04 tty_ldisc_ref_wait -EXPORT_SYMBOL_GPL vmlinux 0xdd810ed6 thermal_add_hwmon_sysfs -EXPORT_SYMBOL_GPL vmlinux 0xdd9b5fb6 blk_mq_unfreeze_queue +EXPORT_SYMBOL_GPL vmlinux 0xdd6ff264 __tracepoint_unmap +EXPORT_SYMBOL_GPL vmlinux 0xdd795b25 i2c_dw_probe_master +EXPORT_SYMBOL_GPL vmlinux 0xdd910f9b vfs_setxattr +EXPORT_SYMBOL_GPL vmlinux 0xdd923de5 dma_get_any_slave_channel EXPORT_SYMBOL_GPL vmlinux 0xdd9dd80d xen_pvh +EXPORT_SYMBOL_GPL vmlinux 0xdda99f70 inode_dax +EXPORT_SYMBOL_GPL vmlinux 0xddab94f7 tty_port_tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xddb1673c ata_port_freeze EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove -EXPORT_SYMBOL_GPL vmlinux 0xddcef757 tcp_twsk_destructor -EXPORT_SYMBOL_GPL vmlinux 0xdde58368 __rtnl_link_unregister -EXPORT_SYMBOL_GPL vmlinux 0xdde7f81b pci_msi_mask_irq -EXPORT_SYMBOL_GPL vmlinux 0xddf0157d led_stop_software_blink -EXPORT_SYMBOL_GPL vmlinux 0xde04393b decrypt_blob +EXPORT_SYMBOL_GPL vmlinux 0xde0453f1 acpi_dev_get_resources EXPORT_SYMBOL_GPL vmlinux 0xde09a94d xas_find -EXPORT_SYMBOL_GPL vmlinux 0xde1cf71c usb_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0xde31582c regulator_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xde40db94 pinctrl_get_group_pins -EXPORT_SYMBOL_GPL vmlinux 0xde492fd5 pci_hp_remove_module_link -EXPORT_SYMBOL_GPL vmlinux 0xde4d76db sysfs_unmerge_group -EXPORT_SYMBOL_GPL vmlinux 0xde6739b9 device_link_remove +EXPORT_SYMBOL_GPL vmlinux 0xde0db96d serdev_device_wait_until_sent +EXPORT_SYMBOL_GPL vmlinux 0xde0edc9a genphy_c45_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0xde111a56 usb_free_urb +EXPORT_SYMBOL_GPL vmlinux 0xde148d4a __get_task_comm +EXPORT_SYMBOL_GPL vmlinux 0xde3df5c0 xenbus_register_driver_common +EXPORT_SYMBOL_GPL vmlinux 0xde3f494b fib_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0xde51676a __pci_reset_function_locked EXPORT_SYMBOL_GPL vmlinux 0xde6f1851 TSS_checkhmac1 -EXPORT_SYMBOL_GPL vmlinux 0xde7cda50 scsi_target_unblock -EXPORT_SYMBOL_GPL vmlinux 0xde835bda __SCK__tp_func_br_fdb_update -EXPORT_SYMBOL_GPL vmlinux 0xde96b5b6 strp_stop EXPORT_SYMBOL_GPL vmlinux 0xde9ab8c7 xenbus_rm -EXPORT_SYMBOL_GPL vmlinux 0xdeb463a2 iomap_swapfile_activate -EXPORT_SYMBOL_GPL vmlinux 0xdece7055 iommu_aux_detach_device -EXPORT_SYMBOL_GPL vmlinux 0xded07ed5 thermal_zone_device_enable -EXPORT_SYMBOL_GPL vmlinux 0xded28b11 rio_register_driver -EXPORT_SYMBOL_GPL vmlinux 0xdedf72e2 usb_set_interface -EXPORT_SYMBOL_GPL vmlinux 0xdee1dc46 vfs_truncate -EXPORT_SYMBOL_GPL vmlinux 0xdee265a1 bpf_prog_create -EXPORT_SYMBOL_GPL vmlinux 0xdee9f53c fwnode_get_next_parent -EXPORT_SYMBOL_GPL vmlinux 0xdef44b4b create_signature -EXPORT_SYMBOL_GPL vmlinux 0xdefa160c bus_remove_file -EXPORT_SYMBOL_GPL vmlinux 0xdefe59cf rio_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xded6d1bc alarmtimer_get_rtcdev EXPORT_SYMBOL_GPL vmlinux 0xdeffa0a7 edac_raw_mc_handle_error EXPORT_SYMBOL_GPL vmlinux 0xdf0ca3f4 cpu_latency_qos_request_active EXPORT_SYMBOL_GPL vmlinux 0xdf0f75c6 eventfd_signal -EXPORT_SYMBOL_GPL vmlinux 0xdf185f27 bio_associate_blkg_from_css EXPORT_SYMBOL_GPL vmlinux 0xdf1882af dbgp_reset_prep +EXPORT_SYMBOL_GPL vmlinux 0xdf1b906c subsys_virtual_register EXPORT_SYMBOL_GPL vmlinux 0xdf2738bb cpu_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xdf2d6432 efivars_kobject -EXPORT_SYMBOL_GPL vmlinux 0xdf2e6d9f relay_switch_subbuf -EXPORT_SYMBOL_GPL vmlinux 0xdf417567 bdi_dev_name +EXPORT_SYMBOL_GPL vmlinux 0xdf2fa67a devm_gpiod_get_array EXPORT_SYMBOL_GPL vmlinux 0xdf448d1c fanout_mutex -EXPORT_SYMBOL_GPL vmlinux 0xdf4f41e6 mmu_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0xdf60f212 __tracepoint_fdb_delete -EXPORT_SYMBOL_GPL vmlinux 0xdf6fb1bf pci_try_reset_function +EXPORT_SYMBOL_GPL vmlinux 0xdf58d1df pci_check_and_unmask_intx +EXPORT_SYMBOL_GPL vmlinux 0xdf61d511 elv_unregister EXPORT_SYMBOL_GPL vmlinux 0xdf81924d uv_bios_mq_watchlist_free -EXPORT_SYMBOL_GPL vmlinux 0xdf8599c8 rio_release_outb_mbox -EXPORT_SYMBOL_GPL vmlinux 0xdf8aac0b cpu_device_create -EXPORT_SYMBOL_GPL vmlinux 0xdfb2784a dw_pcie_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0xdf88e4d7 wm8350_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0xdf88f515 rio_dev_put +EXPORT_SYMBOL_GPL vmlinux 0xdf8996d5 edac_pci_create_generic_ctl +EXPORT_SYMBOL_GPL vmlinux 0xdf8fc885 vring_del_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0xdfb420d5 unwind_next_frame EXPORT_SYMBOL_GPL vmlinux 0xdfcb6c90 mctrl_gpio_set -EXPORT_SYMBOL_GPL vmlinux 0xdfd59da0 skb_zerocopy_iter_dgram -EXPORT_SYMBOL_GPL vmlinux 0xdfebd3db __inet_lookup_listener -EXPORT_SYMBOL_GPL vmlinux 0xdffa98aa __SCK__tp_func_neigh_timer_handler -EXPORT_SYMBOL_GPL vmlinux 0xdffdfed4 __tracepoint_map -EXPORT_SYMBOL_GPL vmlinux 0xe00131a0 fsverity_ioctl_enable -EXPORT_SYMBOL_GPL vmlinux 0xe004f604 device_link_add -EXPORT_SYMBOL_GPL vmlinux 0xe01973da fat_free_clusters -EXPORT_SYMBOL_GPL vmlinux 0xe0212895 nvmem_cell_read_variable_le_u32 -EXPORT_SYMBOL_GPL vmlinux 0xe0290770 devm_spi_mem_dirmap_create +EXPORT_SYMBOL_GPL vmlinux 0xdfcce156 param_ops_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0xdfda338b handle_mm_fault +EXPORT_SYMBOL_GPL vmlinux 0xdff324ab regulator_is_equal +EXPORT_SYMBOL_GPL vmlinux 0xe012ea3a bpf_redirect_info EXPORT_SYMBOL_GPL vmlinux 0xe0313d71 rhashtable_insert_slow -EXPORT_SYMBOL_GPL vmlinux 0xe038cb48 shash_ahash_finup -EXPORT_SYMBOL_GPL vmlinux 0xe043b76f device_create_with_groups -EXPORT_SYMBOL_GPL vmlinux 0xe04439eb ethnl_cable_test_pulse +EXPORT_SYMBOL_GPL vmlinux 0xe0318bae virtqueue_add_outbuf EXPORT_SYMBOL_GPL vmlinux 0xe04c78db __SCT__tp_func_neigh_event_send_done -EXPORT_SYMBOL_GPL vmlinux 0xe05dff7b rcu_read_unlock_trace_special +EXPORT_SYMBOL_GPL vmlinux 0xe0592e95 skb_mpls_dec_ttl EXPORT_SYMBOL_GPL vmlinux 0xe05e2f85 nexthop_free_rcu -EXPORT_SYMBOL_GPL vmlinux 0xe05fc572 cpufreq_freq_attr_scaling_boost_freqs -EXPORT_SYMBOL_GPL vmlinux 0xe0798c3f led_blink_set_oneshot -EXPORT_SYMBOL_GPL vmlinux 0xe07ed3b9 cpufreq_freq_transition_begin +EXPORT_SYMBOL_GPL vmlinux 0xe05efd1e balloon_aops +EXPORT_SYMBOL_GPL vmlinux 0xe0614d99 fat_build_inode +EXPORT_SYMBOL_GPL vmlinux 0xe061bf10 dm_get_md +EXPORT_SYMBOL_GPL vmlinux 0xe064a24d platform_msi_domain_free_irqs EXPORT_SYMBOL_GPL vmlinux 0xe089cfcc agp_memory_reserved -EXPORT_SYMBOL_GPL vmlinux 0xe08a9c3c isa_register_driver -EXPORT_SYMBOL_GPL vmlinux 0xe095e1ae crypto_stats_skcipher_decrypt -EXPORT_SYMBOL_GPL vmlinux 0xe09c91e5 regulator_set_current_limit +EXPORT_SYMBOL_GPL vmlinux 0xe09e2f9a pci_epc_map_msi_irq +EXPORT_SYMBOL_GPL vmlinux 0xe0a077c6 of_hwspin_lock_get_id +EXPORT_SYMBOL_GPL vmlinux 0xe0a3e26c gpiod_direction_output +EXPORT_SYMBOL_GPL vmlinux 0xe0a9ca67 gpiod_to_irq EXPORT_SYMBOL_GPL vmlinux 0xe0b1c103 clk_set_max_rate -EXPORT_SYMBOL_GPL vmlinux 0xe0bda6e8 __platform_driver_register EXPORT_SYMBOL_GPL vmlinux 0xe0c77bb5 mce_notify_irq EXPORT_SYMBOL_GPL vmlinux 0xe0d39f1c sgx_set_attribute -EXPORT_SYMBOL_GPL vmlinux 0xe0df9e67 regmap_get_reg_stride -EXPORT_SYMBOL_GPL vmlinux 0xe0eb1527 virtqueue_disable_cb -EXPORT_SYMBOL_GPL vmlinux 0xe0f8968a crypto_alloc_ahash +EXPORT_SYMBOL_GPL vmlinux 0xe0e591b9 pci_find_next_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0xe0f75fdf sysfs_create_link_nowarn +EXPORT_SYMBOL_GPL vmlinux 0xe102a58c pci_disable_ats +EXPORT_SYMBOL_GPL vmlinux 0xe108a799 spi_mem_poll_status +EXPORT_SYMBOL_GPL vmlinux 0xe10974d0 devlink_trap_policers_unregister EXPORT_SYMBOL_GPL vmlinux 0xe10cd6ad erst_get_record_id_begin -EXPORT_SYMBOL_GPL vmlinux 0xe11838c0 fat_update_time -EXPORT_SYMBOL_GPL vmlinux 0xe12b3e73 usb_enable_intel_xhci_ports -EXPORT_SYMBOL_GPL vmlinux 0xe13a7780 led_sysfs_enable -EXPORT_SYMBOL_GPL vmlinux 0xe13dc5b3 __devm_reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0xe14338b0 fib_alias_hw_flags_set -EXPORT_SYMBOL_GPL vmlinux 0xe1446a8a debugfs_create_ulong -EXPORT_SYMBOL_GPL vmlinux 0xe1561f1a init_user_ns -EXPORT_SYMBOL_GPL vmlinux 0xe1738ced bpf_trace_run1 +EXPORT_SYMBOL_GPL vmlinux 0xe116a73e sock_diag_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe1225134 __rio_local_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0xe12c8e74 __pm_runtime_use_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0xe153d4e2 nf_checksum_partial EXPORT_SYMBOL_GPL vmlinux 0xe1775ee7 dm_get_reserved_bio_based_ios +EXPORT_SYMBOL_GPL vmlinux 0xe1778d3a blk_mq_alloc_sq_tag_set +EXPORT_SYMBOL_GPL vmlinux 0xe1862558 usb_reset_configuration +EXPORT_SYMBOL_GPL vmlinux 0xe1a56a5a ata_sff_qc_issue EXPORT_SYMBOL_GPL vmlinux 0xe1a8d7c9 net_rwsem EXPORT_SYMBOL_GPL vmlinux 0xe1aa2d62 set_hv_tscchange_cb -EXPORT_SYMBOL_GPL vmlinux 0xe1b8743f ata_pci_sff_init_one +EXPORT_SYMBOL_GPL vmlinux 0xe1b3d4b9 power_supply_property_is_writeable EXPORT_SYMBOL_GPL vmlinux 0xe1bd6c99 rio_init_mports +EXPORT_SYMBOL_GPL vmlinux 0xe1c0c201 i2c_generic_scl_recovery EXPORT_SYMBOL_GPL vmlinux 0xe1c63523 blk_ksm_get_slot_idx -EXPORT_SYMBOL_GPL vmlinux 0xe1e8a613 sysfs_chmod_file -EXPORT_SYMBOL_GPL vmlinux 0xe1f78b99 anon_inode_getfile -EXPORT_SYMBOL_GPL vmlinux 0xe1ff6bb2 get_cached_msi_msg -EXPORT_SYMBOL_GPL vmlinux 0xe20bf979 firmware_kobj -EXPORT_SYMBOL_GPL vmlinux 0xe21a60a6 __SCK__tp_func_xhci_dbg_quirks +EXPORT_SYMBOL_GPL vmlinux 0xe1dd5d31 perf_aux_output_skip +EXPORT_SYMBOL_GPL vmlinux 0xe1e0a0c5 pm_generic_freeze +EXPORT_SYMBOL_GPL vmlinux 0xe1e38c92 rdev_set_badblocks +EXPORT_SYMBOL_GPL vmlinux 0xe1fa7efc syscon_regmap_lookup_by_phandle_optional +EXPORT_SYMBOL_GPL vmlinux 0xe208b332 ncsi_unregister_dev +EXPORT_SYMBOL_GPL vmlinux 0xe218b5df gpiod_set_value +EXPORT_SYMBOL_GPL vmlinux 0xe230f484 klp_get_state EXPORT_SYMBOL_GPL vmlinux 0xe233762a input_event_from_user -EXPORT_SYMBOL_GPL vmlinux 0xe24ccf43 fs_kobj -EXPORT_SYMBOL_GPL vmlinux 0xe24e8cac __rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0xe235155b gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0xe23d2b4b dev_attr_em_message +EXPORT_SYMBOL_GPL vmlinux 0xe23f8c18 md_bitmap_load +EXPORT_SYMBOL_GPL vmlinux 0xe2426561 synth_event_trace +EXPORT_SYMBOL_GPL vmlinux 0xe2436815 __SCK__tp_func_neigh_update_done +EXPORT_SYMBOL_GPL vmlinux 0xe24bbf1e md_allow_write +EXPORT_SYMBOL_GPL vmlinux 0xe256a9e3 kstrdup_quotable_cmdline EXPORT_SYMBOL_GPL vmlinux 0xe25d23f3 blocking_notifier_call_chain_robust -EXPORT_SYMBOL_GPL vmlinux 0xe2663574 i2c_new_smbus_alert_device +EXPORT_SYMBOL_GPL vmlinux 0xe2694e56 device_create EXPORT_SYMBOL_GPL vmlinux 0xe271f20c __SCT__tp_func_pelt_rt_tp -EXPORT_SYMBOL_GPL vmlinux 0xe273d6c6 regmap_fields_read -EXPORT_SYMBOL_GPL vmlinux 0xe28154b3 fwnode_property_read_string -EXPORT_SYMBOL_GPL vmlinux 0xe291909c icc_nodes_remove +EXPORT_SYMBOL_GPL vmlinux 0xe274dcb0 rtnl_delete_link +EXPORT_SYMBOL_GPL vmlinux 0xe2767f19 device_remove_file +EXPORT_SYMBOL_GPL vmlinux 0xe2873d64 i2c_dw_prepare_clk +EXPORT_SYMBOL_GPL vmlinux 0xe294ff5f pm_genpd_remove_subdomain EXPORT_SYMBOL_GPL vmlinux 0xe295c0ff is_hpet_enabled -EXPORT_SYMBOL_GPL vmlinux 0xe29a3a5d rio_unregister_mport -EXPORT_SYMBOL_GPL vmlinux 0xe2a1cbe9 ata_sff_prereset -EXPORT_SYMBOL_GPL vmlinux 0xe2a67ae8 crypto_alloc_base +EXPORT_SYMBOL_GPL vmlinux 0xe2aa7e3c device_driver_attach +EXPORT_SYMBOL_GPL vmlinux 0xe2aad9bf spi_mem_supports_op +EXPORT_SYMBOL_GPL vmlinux 0xe2af463c memunmap_pages EXPORT_SYMBOL_GPL vmlinux 0xe2b3207a unregister_switchdev_notifier -EXPORT_SYMBOL_GPL vmlinux 0xe2c5bc6e clocksource_verify_percpu +EXPORT_SYMBOL_GPL vmlinux 0xe2ba2757 usb_driver_set_configuration EXPORT_SYMBOL_GPL vmlinux 0xe2ce2b4d evm_set_key -EXPORT_SYMBOL_GPL vmlinux 0xe2e8e31d shmem_zero_setup -EXPORT_SYMBOL_GPL vmlinux 0xe2ec275d do_splice_from -EXPORT_SYMBOL_GPL vmlinux 0xe2ed6618 scsi_flush_work -EXPORT_SYMBOL_GPL vmlinux 0xe2eecc43 led_set_brightness -EXPORT_SYMBOL_GPL vmlinux 0xe304e5f7 get_device_system_crosststamp -EXPORT_SYMBOL_GPL vmlinux 0xe3054e3a tcp_enter_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0xe2d760c2 vfio_pci_register_dev_region +EXPORT_SYMBOL_GPL vmlinux 0xe2d95df9 tcp_set_state +EXPORT_SYMBOL_GPL vmlinux 0xe2f89391 __xenmem_reservation_va_mapping_update +EXPORT_SYMBOL_GPL vmlinux 0xe2fd9ff2 i2c_new_scanned_device EXPORT_SYMBOL_GPL vmlinux 0xe31315a4 spi_delay_exec -EXPORT_SYMBOL_GPL vmlinux 0xe31bb839 devlink_rate_leaf_create -EXPORT_SYMBOL_GPL vmlinux 0xe330b543 ehci_hub_control -EXPORT_SYMBOL_GPL vmlinux 0xe3359b29 dst_cache_get -EXPORT_SYMBOL_GPL vmlinux 0xe337f1fd pci_generic_config_write +EXPORT_SYMBOL_GPL vmlinux 0xe31bea00 rio_mport_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0xe329cc08 debugfs_create_x32 EXPORT_SYMBOL_GPL vmlinux 0xe338c5ac inet_hashinfo2_init_mod -EXPORT_SYMBOL_GPL vmlinux 0xe349ddb2 switchdev_port_attr_set -EXPORT_SYMBOL_GPL vmlinux 0xe37714ac tpm_pcr_extend -EXPORT_SYMBOL_GPL vmlinux 0xe3830e2b tty_port_tty_wakeup -EXPORT_SYMBOL_GPL vmlinux 0xe38a010b devm_regmap_add_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0xe38a0824 icc_std_aggregate +EXPORT_SYMBOL_GPL vmlinux 0xe34e4372 dax_copy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0xe350940b edac_pci_handle_pe +EXPORT_SYMBOL_GPL vmlinux 0xe359538a serdev_device_write_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xe3687e4c lwtunnel_encap_add_ops +EXPORT_SYMBOL_GPL vmlinux 0xe372b318 dev_pm_opp_remove +EXPORT_SYMBOL_GPL vmlinux 0xe37a7f8e debugfs_create_u64 +EXPORT_SYMBOL_GPL vmlinux 0xe3840e18 secure_ipv4_port_ephemeral EXPORT_SYMBOL_GPL vmlinux 0xe397caf5 seq_buf_printf -EXPORT_SYMBOL_GPL vmlinux 0xe39b796c debugfs_create_u16 EXPORT_SYMBOL_GPL vmlinux 0xe39d0794 usb_phy_roothub_exit +EXPORT_SYMBOL_GPL vmlinux 0xe3a766a8 vfs_submount EXPORT_SYMBOL_GPL vmlinux 0xe3b09712 kprobe_event_delete +EXPORT_SYMBOL_GPL vmlinux 0xe3b2c21a __SCK__tp_func_unmap +EXPORT_SYMBOL_GPL vmlinux 0xe3bc7224 blk_set_pm_only EXPORT_SYMBOL_GPL vmlinux 0xe3bc7fd4 hpet_unregister_irq_handler +EXPORT_SYMBOL_GPL vmlinux 0xe3be477b tun_get_socket +EXPORT_SYMBOL_GPL vmlinux 0xe3c6f554 fuse_conn_put +EXPORT_SYMBOL_GPL vmlinux 0xe3ca0156 skcipher_walk_async +EXPORT_SYMBOL_GPL vmlinux 0xe3cacf3e root_device_unregister EXPORT_SYMBOL_GPL vmlinux 0xe3cd5fae klist_iter_init -EXPORT_SYMBOL_GPL vmlinux 0xe3d89e48 __ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0xe3cef50b nf_nat_hook +EXPORT_SYMBOL_GPL vmlinux 0xe3df1e2e pci_find_ext_capability EXPORT_SYMBOL_GPL vmlinux 0xe3e88acb __get_current_cr3_fast -EXPORT_SYMBOL_GPL vmlinux 0xe3ebefa6 acpi_subsys_suspend_late -EXPORT_SYMBOL_GPL vmlinux 0xe3ec92e0 regmap_bulk_write -EXPORT_SYMBOL_GPL vmlinux 0xe3f47404 vp_modern_remove -EXPORT_SYMBOL_GPL vmlinux 0xe4068d37 get_task_mm +EXPORT_SYMBOL_GPL vmlinux 0xe3eb74f9 vfio_iommu_group_put +EXPORT_SYMBOL_GPL vmlinux 0xe3f964ac bsg_job_put +EXPORT_SYMBOL_GPL vmlinux 0xe3ff3e80 __udp6_lib_lookup EXPORT_SYMBOL_GPL vmlinux 0xe40bb23e devlink_health_reporter_priv +EXPORT_SYMBOL_GPL vmlinux 0xe41a0889 switchdev_bridge_port_unoffload EXPORT_SYMBOL_GPL vmlinux 0xe4248980 cper_estatus_print EXPORT_SYMBOL_GPL vmlinux 0xe4309905 syscore_resume -EXPORT_SYMBOL_GPL vmlinux 0xe43f0ef9 devm_pm_clk_create -EXPORT_SYMBOL_GPL vmlinux 0xe442f6b7 acpi_get_and_request_gpiod -EXPORT_SYMBOL_GPL vmlinux 0xe44350d5 __get_task_comm -EXPORT_SYMBOL_GPL vmlinux 0xe4585895 __skb_tstamp_tx -EXPORT_SYMBOL_GPL vmlinux 0xe45c4f97 icmp_build_probe -EXPORT_SYMBOL_GPL vmlinux 0xe46abc18 fat_scan -EXPORT_SYMBOL_GPL vmlinux 0xe46e76f9 dev_pm_genpd_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0xe43a9d56 acpi_register_gsi +EXPORT_SYMBOL_GPL vmlinux 0xe445bd3d usb_enable_intel_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0xe4596773 pci_stop_and_remove_bus_device_locked +EXPORT_SYMBOL_GPL vmlinux 0xe45c28dd acpi_subsys_poweroff +EXPORT_SYMBOL_GPL vmlinux 0xe45d453c dev_coredumpm +EXPORT_SYMBOL_GPL vmlinux 0xe47b9246 usb_enable_autosuspend EXPORT_SYMBOL_GPL vmlinux 0xe48611ac trace_clock_global +EXPORT_SYMBOL_GPL vmlinux 0xe492aebc get_pid_task EXPORT_SYMBOL_GPL vmlinux 0xe4971ade tracing_alloc_snapshot -EXPORT_SYMBOL_GPL vmlinux 0xe4ad0e8b sdio_claim_irq +EXPORT_SYMBOL_GPL vmlinux 0xe49df4f6 fuse_dev_install +EXPORT_SYMBOL_GPL vmlinux 0xe4a01b4b devm_clk_hw_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0xe4a67f16 desc_to_gpio +EXPORT_SYMBOL_GPL vmlinux 0xe4a7258d devm_pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0xe4a8a8b4 msi_desc_to_pci_sysdata +EXPORT_SYMBOL_GPL vmlinux 0xe4ad4352 crypto_create_tfm_node EXPORT_SYMBOL_GPL vmlinux 0xe4b064f9 pcie_link_speed -EXPORT_SYMBOL_GPL vmlinux 0xe4b07668 crypto_aead_setauthsize EXPORT_SYMBOL_GPL vmlinux 0xe4b818c3 phy_speed_to_str EXPORT_SYMBOL_GPL vmlinux 0xe4b93f27 public_key_verify_signature -EXPORT_SYMBOL_GPL vmlinux 0xe4c23a5f unix_inq_len +EXPORT_SYMBOL_GPL vmlinux 0xe4bc19d1 serial8250_do_get_mctrl +EXPORT_SYMBOL_GPL vmlinux 0xe4c00d59 adp5520_set_bits EXPORT_SYMBOL_GPL vmlinux 0xe4c2c66c rtc_ktime_to_tm -EXPORT_SYMBOL_GPL vmlinux 0xe4d25293 devm_usb_get_phy_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0xe4d792e8 locks_alloc_lock +EXPORT_SYMBOL_GPL vmlinux 0xe4c6dee0 platform_device_register EXPORT_SYMBOL_GPL vmlinux 0xe4e48b12 swphy_validate_state -EXPORT_SYMBOL_GPL vmlinux 0xe51439ee pinctrl_utils_add_map_mux -EXPORT_SYMBOL_GPL vmlinux 0xe520b682 led_put -EXPORT_SYMBOL_GPL vmlinux 0xe52991e0 cpufreq_driver_target -EXPORT_SYMBOL_GPL vmlinux 0xe5541a15 elv_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe4f0875b max8997_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0xe4f62c36 trace_put_event_file +EXPORT_SYMBOL_GPL vmlinux 0xe4fa7ffa usb_ifnum_to_if +EXPORT_SYMBOL_GPL vmlinux 0xe502c182 efivar_entry_get +EXPORT_SYMBOL_GPL vmlinux 0xe5137284 fat_setattr +EXPORT_SYMBOL_GPL vmlinux 0xe532fb67 inet_csk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0xe5536913 proc_create_net_single +EXPORT_SYMBOL_GPL vmlinux 0xe553bb91 __SCK__tp_func_sched_cpu_capacity_tp +EXPORT_SYMBOL_GPL vmlinux 0xe557b69f ping_unhash +EXPORT_SYMBOL_GPL vmlinux 0xe57303ae iommu_enable_nesting EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe58c67d3 device_show_ulong -EXPORT_SYMBOL_GPL vmlinux 0xe5969662 devm_pm_runtime_enable -EXPORT_SYMBOL_GPL vmlinux 0xe5a4f76f pinctrl_register_and_init -EXPORT_SYMBOL_GPL vmlinux 0xe5bf4675 ata_sff_data_xfer +EXPORT_SYMBOL_GPL vmlinux 0xe595bfa8 misc_cg_uncharge +EXPORT_SYMBOL_GPL vmlinux 0xe59c4c6a nvmem_cell_get EXPORT_SYMBOL_GPL vmlinux 0xe5c02b64 freq_qos_remove_request -EXPORT_SYMBOL_GPL vmlinux 0xe5c9812e cros_ec_check_features -EXPORT_SYMBOL_GPL vmlinux 0xe5c9aaeb fuse_send_init +EXPORT_SYMBOL_GPL vmlinux 0xe5cd5556 genphy_c45_read_mdix EXPORT_SYMBOL_GPL vmlinux 0xe5ce1a56 rhashtable_walk_enter -EXPORT_SYMBOL_GPL vmlinux 0xe5cf532e regulator_set_suspend_voltage -EXPORT_SYMBOL_GPL vmlinux 0xe5dda02a xfrm_state_mtu -EXPORT_SYMBOL_GPL vmlinux 0xe5f8e80f pci_epf_unbind -EXPORT_SYMBOL_GPL vmlinux 0xe602e036 iomap_fiemap -EXPORT_SYMBOL_GPL vmlinux 0xe6039e12 crypto_unregister_skciphers +EXPORT_SYMBOL_GPL vmlinux 0xe5d64e60 devm_power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0xe5f94bb5 blk_mq_sched_try_insert_merge EXPORT_SYMBOL_GPL vmlinux 0xe60632a9 edac_queue_work EXPORT_SYMBOL_GPL vmlinux 0xe60a5e8d pids_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xe612acec pci_reset_function_locked -EXPORT_SYMBOL_GPL vmlinux 0xe61990c7 device_init_wakeup EXPORT_SYMBOL_GPL vmlinux 0xe628bb9f phy_fibre_port_array -EXPORT_SYMBOL_GPL vmlinux 0xe639a1b7 ata_pci_sff_init_host -EXPORT_SYMBOL_GPL vmlinux 0xe63a0bf3 crypto_alloc_shash -EXPORT_SYMBOL_GPL vmlinux 0xe63eecb5 power_supply_put_battery_info -EXPORT_SYMBOL_GPL vmlinux 0xe640f524 iomap_invalidatepage +EXPORT_SYMBOL_GPL vmlinux 0xe631e5de gpiochip_irq_map +EXPORT_SYMBOL_GPL vmlinux 0xe632bc31 devm_memremap_pages +EXPORT_SYMBOL_GPL vmlinux 0xe63689a3 devm_device_add_group +EXPORT_SYMBOL_GPL vmlinux 0xe63f4516 mptcp_pm_get_add_addr_accept_max +EXPORT_SYMBOL_GPL vmlinux 0xe6494fe7 __skb_tstamp_tx EXPORT_SYMBOL_GPL vmlinux 0xe64ad8ea unregister_nmi_handler -EXPORT_SYMBOL_GPL vmlinux 0xe6636be2 nvdimm_flush -EXPORT_SYMBOL_GPL vmlinux 0xe67e1c43 icc_provider_add -EXPORT_SYMBOL_GPL vmlinux 0xe6899bf7 acct_bioset_init +EXPORT_SYMBOL_GPL vmlinux 0xe64e1dd4 dma_get_merge_boundary +EXPORT_SYMBOL_GPL vmlinux 0xe65469cc sysfs_group_change_owner +EXPORT_SYMBOL_GPL vmlinux 0xe6571a7f fuse_conn_get +EXPORT_SYMBOL_GPL vmlinux 0xe661d1c4 usb_get_urb +EXPORT_SYMBOL_GPL vmlinux 0xe676a329 devlink_port_params_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe67d90f8 regmap_get_val_bytes +EXPORT_SYMBOL_GPL vmlinux 0xe6818986 gpiod_unexport +EXPORT_SYMBOL_GPL vmlinux 0xe6963ca1 mddev_init +EXPORT_SYMBOL_GPL vmlinux 0xe69e258a bpf_map_inc +EXPORT_SYMBOL_GPL vmlinux 0xe6a1da6a uart_set_options EXPORT_SYMBOL_GPL vmlinux 0xe6a257f1 divider_round_rate_parent -EXPORT_SYMBOL_GPL vmlinux 0xe6ac25dd scsi_dh_activate -EXPORT_SYMBOL_GPL vmlinux 0xe6bd8435 fb_deferred_io_init -EXPORT_SYMBOL_GPL vmlinux 0xe6bedf95 irq_domain_xlate_onecell -EXPORT_SYMBOL_GPL vmlinux 0xe6d67154 regulator_set_active_discharge_regmap +EXPORT_SYMBOL_GPL vmlinux 0xe6d545ed pm_runtime_no_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xe6df8868 sock_prot_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0xe6e0ab57 fuse_mount_remove EXPORT_SYMBOL_GPL vmlinux 0xe6e40502 rcu_get_gp_seq -EXPORT_SYMBOL_GPL vmlinux 0xe6f0efbe dev_pm_opp_find_freq_exact EXPORT_SYMBOL_GPL vmlinux 0xe6f52443 klist_add_head EXPORT_SYMBOL_GPL vmlinux 0xe6f5e6f5 xas_clear_mark EXPORT_SYMBOL_GPL vmlinux 0xe6f83837 acpi_bus_attach_private_data -EXPORT_SYMBOL_GPL vmlinux 0xe6fc464c usb_autopm_put_interface +EXPORT_SYMBOL_GPL vmlinux 0xe6fb0110 usb_free_streams EXPORT_SYMBOL_GPL vmlinux 0xe700d767 reset_control_bulk_deassert -EXPORT_SYMBOL_GPL vmlinux 0xe723115b mddev_resume +EXPORT_SYMBOL_GPL vmlinux 0xe7044f9e blk_revalidate_disk_zones +EXPORT_SYMBOL_GPL vmlinux 0xe709ad4b gpiochip_irq_unmap +EXPORT_SYMBOL_GPL vmlinux 0xe70a94cb __SCK__tp_func_neigh_update +EXPORT_SYMBOL_GPL vmlinux 0xe7146355 power_supply_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xe7164453 gnttab_map_refs EXPORT_SYMBOL_GPL vmlinux 0xe7232e0f user_return_notifier_unregister EXPORT_SYMBOL_GPL vmlinux 0xe740b58a hv_vp_assist_page -EXPORT_SYMBOL_GPL vmlinux 0xe7463520 fib_nl_delrule -EXPORT_SYMBOL_GPL vmlinux 0xe752c585 fscrypt_mergeable_bio +EXPORT_SYMBOL_GPL vmlinux 0xe746ecd4 pm_runtime_set_autosuspend_delay EXPORT_SYMBOL_GPL vmlinux 0xe753b68d devlink_fmsg_arr_pair_nest_end -EXPORT_SYMBOL_GPL vmlinux 0xe755978f crypto_unregister_acomps EXPORT_SYMBOL_GPL vmlinux 0xe769232e sprint_symbol_no_offset -EXPORT_SYMBOL_GPL vmlinux 0xe76bd62f tpm_get_random EXPORT_SYMBOL_GPL vmlinux 0xe783e261 sysfs_emit -EXPORT_SYMBOL_GPL vmlinux 0xe7974353 efivar_entry_set_get_size EXPORT_SYMBOL_GPL vmlinux 0xe79bf0c4 klp_shadow_get -EXPORT_SYMBOL_GPL vmlinux 0xe79e673e devm_regulator_put -EXPORT_SYMBOL_GPL vmlinux 0xe7a5617f xfrm_audit_policy_delete -EXPORT_SYMBOL_GPL vmlinux 0xe7a5d658 ata_bmdma_start -EXPORT_SYMBOL_GPL vmlinux 0xe7a72097 acpi_subsys_suspend_noirq -EXPORT_SYMBOL_GPL vmlinux 0xe7a7f955 __SCK__tp_func_devlink_trap_report -EXPORT_SYMBOL_GPL vmlinux 0xe7c03795 __SCK__tp_func_block_bio_remap -EXPORT_SYMBOL_GPL vmlinux 0xe7c53a03 perf_pmu_migrate_context +EXPORT_SYMBOL_GPL vmlinux 0xe7a0b679 bpfilter_umh_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xe7cc79c1 irq_gc_ack_set_bit +EXPORT_SYMBOL_GPL vmlinux 0xe7cd80c5 usb_autopm_get_interface_async +EXPORT_SYMBOL_GPL vmlinux 0xe7d48241 make_device_exclusive_range EXPORT_SYMBOL_GPL vmlinux 0xe7d6d2d4 filter_match_preds -EXPORT_SYMBOL_GPL vmlinux 0xe7e120ca l3mdev_table_lookup_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe7e87315 xen_find_device_domain_owner +EXPORT_SYMBOL_GPL vmlinux 0xe7ecf4e4 pinconf_generic_dump_config EXPORT_SYMBOL_GPL vmlinux 0xe7eee3d5 __cookie_v4_init_sequence -EXPORT_SYMBOL_GPL vmlinux 0xe7f248b7 blk_ksm_init +EXPORT_SYMBOL_GPL vmlinux 0xe8030ace fscrypt_ioctl_remove_key EXPORT_SYMBOL_GPL vmlinux 0xe818b32b ata_bmdma_interrupt EXPORT_SYMBOL_GPL vmlinux 0xe8199ff8 sbitmap_del_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0xe81a0995 devm_extcon_dev_register -EXPORT_SYMBOL_GPL vmlinux 0xe81b0318 crypto_find_alg -EXPORT_SYMBOL_GPL vmlinux 0xe81ec25f uhci_reset_hc -EXPORT_SYMBOL_GPL vmlinux 0xe823bde4 vfio_iommu_group_get -EXPORT_SYMBOL_GPL vmlinux 0xe824916b pstore_register +EXPORT_SYMBOL_GPL vmlinux 0xe81dc660 list_lru_count_one +EXPORT_SYMBOL_GPL vmlinux 0xe8327b97 serial8250_em485_stop_tx EXPORT_SYMBOL_GPL vmlinux 0xe83eba32 itlb_multihit_kvm_mitigation +EXPORT_SYMBOL_GPL vmlinux 0xe84bb518 bpf_verifier_log_write EXPORT_SYMBOL_GPL vmlinux 0xe84f6e5c pciserial_remove_ports -EXPORT_SYMBOL_GPL vmlinux 0xe854f4d4 rdev_set_badblocks -EXPORT_SYMBOL_GPL vmlinux 0xe860ac45 devm_extcon_dev_allocate +EXPORT_SYMBOL_GPL vmlinux 0xe8622368 clockevent_delta2ns EXPORT_SYMBOL_GPL vmlinux 0xe862c4b7 dpm_suspend_start -EXPORT_SYMBOL_GPL vmlinux 0xe86b4f29 icc_get +EXPORT_SYMBOL_GPL vmlinux 0xe86a98d5 extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0xe872834c devlink_params_register +EXPORT_SYMBOL_GPL vmlinux 0xe8811e85 serial8250_init_port EXPORT_SYMBOL_GPL vmlinux 0xe8874a05 irq_work_queue -EXPORT_SYMBOL_GPL vmlinux 0xe88c9a37 __traceiter_br_fdb_update +EXPORT_SYMBOL_GPL vmlinux 0xe8a2a577 mmu_notifier_unregister EXPORT_SYMBOL_GPL vmlinux 0xe8c0065d memory_group_register_static -EXPORT_SYMBOL_GPL vmlinux 0xe8c38abb xenbus_frontend_closed -EXPORT_SYMBOL_GPL vmlinux 0xe8d011d8 xenbus_dev_probe +EXPORT_SYMBOL_GPL vmlinux 0xe8c9e00b iommu_iova_to_phys EXPORT_SYMBOL_GPL vmlinux 0xe8e235c8 arch_static_call_transform -EXPORT_SYMBOL_GPL vmlinux 0xe8ff0725 xfeatures_mask_all -EXPORT_SYMBOL_GPL vmlinux 0xe9083b53 usb_anchor_urb +EXPORT_SYMBOL_GPL vmlinux 0xe901b71e fib_add_nexthop EXPORT_SYMBOL_GPL vmlinux 0xe911df29 eventfd_ctx_do_read -EXPORT_SYMBOL_GPL vmlinux 0xe9293c21 blk_mq_virtio_map_queues -EXPORT_SYMBOL_GPL vmlinux 0xe92f2c35 ip6_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xe921472d bpf_trace_run10 +EXPORT_SYMBOL_GPL vmlinux 0xe92d5036 fscrypt_set_context +EXPORT_SYMBOL_GPL vmlinux 0xe9322246 filemap_read EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free -EXPORT_SYMBOL_GPL vmlinux 0xe96b6d88 switchdev_port_obj_add -EXPORT_SYMBOL_GPL vmlinux 0xe96ff375 usb_hub_find_child -EXPORT_SYMBOL_GPL vmlinux 0xe97b81d9 usb_get_from_anchor -EXPORT_SYMBOL_GPL vmlinux 0xe98b6b2b tcp_register_ulp -EXPORT_SYMBOL_GPL vmlinux 0xe9900178 get_user_pages_fast_only -EXPORT_SYMBOL_GPL vmlinux 0xe994ca12 blk_mq_free_request -EXPORT_SYMBOL_GPL vmlinux 0xe99c3e46 __traceiter_neigh_event_send_dead -EXPORT_SYMBOL_GPL vmlinux 0xe9a4d097 phy_power_off -EXPORT_SYMBOL_GPL vmlinux 0xe9ac03c6 param_ops_bool_enable_only -EXPORT_SYMBOL_GPL vmlinux 0xe9adcc22 iommu_uapi_sva_bind_gpasid -EXPORT_SYMBOL_GPL vmlinux 0xe9befaea scsi_check_sense -EXPORT_SYMBOL_GPL vmlinux 0xe9cb0d26 bpf_redirect_info +EXPORT_SYMBOL_GPL vmlinux 0xe9425144 inet_ctl_sock_create +EXPORT_SYMBOL_GPL vmlinux 0xe94d9525 gpiochip_generic_free +EXPORT_SYMBOL_GPL vmlinux 0xe9532cea wm8350_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xe963108e get_device_system_crosststamp +EXPORT_SYMBOL_GPL vmlinux 0xe9661611 pci_user_read_config_word +EXPORT_SYMBOL_GPL vmlinux 0xe96c07c1 pci_acpi_set_companion_lookup_hook +EXPORT_SYMBOL_GPL vmlinux 0xe9872b29 xenbus_grant_ring +EXPORT_SYMBOL_GPL vmlinux 0xe9909aa4 __phy_modify_mmd_changed EXPORT_SYMBOL_GPL vmlinux 0xe9ce931a kvm_para_available EXPORT_SYMBOL_GPL vmlinux 0xe9d1b7cf irq_to_pcap -EXPORT_SYMBOL_GPL vmlinux 0xe9d44100 cpufreq_dbs_governor_start -EXPORT_SYMBOL_GPL vmlinux 0xe9eb2a67 input_device_enabled EXPORT_SYMBOL_GPL vmlinux 0xe9fadf16 __SCT__tp_func_neigh_update_done -EXPORT_SYMBOL_GPL vmlinux 0xea000f26 pci_cfg_access_unlock EXPORT_SYMBOL_GPL vmlinux 0xea018bbb mpi_test_bit -EXPORT_SYMBOL_GPL vmlinux 0xea121fb9 intel_pinctrl_get_soc_data +EXPORT_SYMBOL_GPL vmlinux 0xea0c8cd9 devm_clk_register EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd -EXPORT_SYMBOL_GPL vmlinux 0xea14e672 dax_iomap_fault +EXPORT_SYMBOL_GPL vmlinux 0xea36c087 devlink_dpipe_match_put EXPORT_SYMBOL_GPL vmlinux 0xea38036f ring_buffer_entries EXPORT_SYMBOL_GPL vmlinux 0xea3a23f3 public_key_free -EXPORT_SYMBOL_GPL vmlinux 0xea5c5810 crypto_register_acomp -EXPORT_SYMBOL_GPL vmlinux 0xea5e2f41 pci_get_dsn -EXPORT_SYMBOL_GPL vmlinux 0xea707180 trace_array_put -EXPORT_SYMBOL_GPL vmlinux 0xea7719bb irq_domain_set_hwirq_and_chip -EXPORT_SYMBOL_GPL vmlinux 0xea7c0e83 __account_locked_vm -EXPORT_SYMBOL_GPL vmlinux 0xea879609 __SCK__tp_func_remove_device_from_group -EXPORT_SYMBOL_GPL vmlinux 0xea8c01aa __tracepoint_block_bio_complete -EXPORT_SYMBOL_GPL vmlinux 0xeab6458b vfio_pci_core_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xea460f33 vchan_init +EXPORT_SYMBOL_GPL vmlinux 0xea694fd4 percpu_down_write +EXPORT_SYMBOL_GPL vmlinux 0xea6c83a4 l3mdev_master_ifindex_rcu +EXPORT_SYMBOL_GPL vmlinux 0xea77d611 crypto_register_aeads +EXPORT_SYMBOL_GPL vmlinux 0xea7d9ede bpf_map_inc_with_uref +EXPORT_SYMBOL_GPL vmlinux 0xea90ff0f rio_request_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0xeabd35d0 pci_scan_child_bus +EXPORT_SYMBOL_GPL vmlinux 0xeabd4c4c devm_device_remove_group +EXPORT_SYMBOL_GPL vmlinux 0xeacc0e7f extcon_get_extcon_dev +EXPORT_SYMBOL_GPL vmlinux 0xeacf42ff sk_msg_recvmsg 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 0xeadb3406 device_store_int EXPORT_SYMBOL_GPL vmlinux 0xeae0f496 clean_acked_data_flush +EXPORT_SYMBOL_GPL vmlinux 0xeae6f688 gpiochip_unlock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0xeaea56d7 crypto_aead_setkey EXPORT_SYMBOL_GPL vmlinux 0xeaf0a57c look_up_OID -EXPORT_SYMBOL_GPL vmlinux 0xeaf5a84f elv_rqhash_del -EXPORT_SYMBOL_GPL vmlinux 0xeafaa2e9 pin_get_name -EXPORT_SYMBOL_GPL vmlinux 0xeaff0d2f serial8250_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0xeb0a16d9 clockevents_register_device -EXPORT_SYMBOL_GPL vmlinux 0xeb2897fc acpi_dma_controller_register -EXPORT_SYMBOL_GPL vmlinux 0xeb3502e8 ata_sff_thaw -EXPORT_SYMBOL_GPL vmlinux 0xeb3d300f gpiochip_generic_free -EXPORT_SYMBOL_GPL vmlinux 0xeb55b400 scsi_internal_device_block_nowait -EXPORT_SYMBOL_GPL vmlinux 0xeb570a8b dev_pm_opp_get_opp_count -EXPORT_SYMBOL_GPL vmlinux 0xeb631da0 ata_host_resume -EXPORT_SYMBOL_GPL vmlinux 0xeb63d730 acpi_debugfs_dir -EXPORT_SYMBOL_GPL vmlinux 0xeb823f0a sk_psock_drop +EXPORT_SYMBOL_GPL vmlinux 0xeb0afd85 rio_request_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0xeb1076d0 debugfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0xeb381ce8 n_tty_inherit_ops +EXPORT_SYMBOL_GPL vmlinux 0xeb5b66ca irq_domain_associate_many +EXPORT_SYMBOL_GPL vmlinux 0xeb6b014b perf_event_create_kernel_counter +EXPORT_SYMBOL_GPL vmlinux 0xeb736443 virtio_config_changed +EXPORT_SYMBOL_GPL vmlinux 0xeb79f5ca ipv6_recv_error EXPORT_SYMBOL_GPL vmlinux 0xeb833c22 xen_has_pv_disk_devices -EXPORT_SYMBOL_GPL vmlinux 0xeb87ff67 __tracepoint_cpu_frequency -EXPORT_SYMBOL_GPL vmlinux 0xeb89c26a led_trigger_register_simple -EXPORT_SYMBOL_GPL vmlinux 0xeb8a7313 tpm_chip_alloc EXPORT_SYMBOL_GPL vmlinux 0xeb94536f x86_platform -EXPORT_SYMBOL_GPL vmlinux 0xeb9865b6 usb_driver_release_interface -EXPORT_SYMBOL_GPL vmlinux 0xeba764df sbitmap_bitmap_show -EXPORT_SYMBOL_GPL vmlinux 0xebb15349 __fscrypt_prepare_readdir -EXPORT_SYMBOL_GPL vmlinux 0xebb45f54 edac_mc_alloc +EXPORT_SYMBOL_GPL vmlinux 0xebc15970 ip6_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xebc594c8 driver_unregister EXPORT_SYMBOL_GPL vmlinux 0xebc9a09f lock_system_sleep +EXPORT_SYMBOL_GPL vmlinux 0xebd0634c virtio_add_status EXPORT_SYMBOL_GPL vmlinux 0xebd4cc11 mctrl_gpio_enable_ms -EXPORT_SYMBOL_GPL vmlinux 0xebd99fc4 __SCK__tp_func_powernv_throttle -EXPORT_SYMBOL_GPL vmlinux 0xebf719e0 of_icc_get -EXPORT_SYMBOL_GPL vmlinux 0xebface3c devm_thermal_of_cooling_device_register -EXPORT_SYMBOL_GPL vmlinux 0xec31a74e debugfs_attr_read -EXPORT_SYMBOL_GPL vmlinux 0xec383486 crypto_register_aeads -EXPORT_SYMBOL_GPL vmlinux 0xec431553 make_device_exclusive_range +EXPORT_SYMBOL_GPL vmlinux 0xec09f8a4 devm_usb_get_phy_by_node +EXPORT_SYMBOL_GPL vmlinux 0xec1e28f7 fixed_phy_register +EXPORT_SYMBOL_GPL vmlinux 0xec21f82c __fscrypt_encrypt_symlink +EXPORT_SYMBOL_GPL vmlinux 0xec2fb858 rio_inb_pwrite_handler +EXPORT_SYMBOL_GPL vmlinux 0xec3e1641 inet_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0xec4344d7 class_find_device +EXPORT_SYMBOL_GPL vmlinux 0xec4d2c61 crypto_unregister_skciphers EXPORT_SYMBOL_GPL vmlinux 0xec5668f6 dax_zero_page_range EXPORT_SYMBOL_GPL vmlinux 0xec5ad73b trace_seq_bitmask -EXPORT_SYMBOL_GPL vmlinux 0xec5d0e9f lwtunnel_state_alloc -EXPORT_SYMBOL_GPL vmlinux 0xec668440 genphy_c45_aneg_done +EXPORT_SYMBOL_GPL vmlinux 0xec5d49c3 tty_port_register_device_attr_serdev +EXPORT_SYMBOL_GPL vmlinux 0xec67dad7 ima_inode_hash EXPORT_SYMBOL_GPL vmlinux 0xec774acb cpufreq_frequency_table_verify EXPORT_SYMBOL_GPL vmlinux 0xec788566 acpi_target_system_state -EXPORT_SYMBOL_GPL vmlinux 0xec8586cb regulator_suspend_disable -EXPORT_SYMBOL_GPL vmlinux 0xeca1fc20 icc_sync_state -EXPORT_SYMBOL_GPL vmlinux 0xeca325da sk_setup_caps +EXPORT_SYMBOL_GPL vmlinux 0xec84840d ndo_dflt_bridge_getlink +EXPORT_SYMBOL_GPL vmlinux 0xec8cf88b acpi_subsys_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0xec9e1ff6 dm_hold +EXPORT_SYMBOL_GPL vmlinux 0xec9fb431 tun_get_tx_ring +EXPORT_SYMBOL_GPL vmlinux 0xecaffd4d pci_assign_unassigned_bus_resources EXPORT_SYMBOL_GPL vmlinux 0xecba68e3 gnttab_batch_map -EXPORT_SYMBOL_GPL vmlinux 0xecbc4cef ata_pci_device_do_suspend -EXPORT_SYMBOL_GPL vmlinux 0xecc12c57 kill_dev_dax -EXPORT_SYMBOL_GPL vmlinux 0xecc801e7 peernet2id_alloc -EXPORT_SYMBOL_GPL vmlinux 0xecc8dbae ncsi_vlan_rx_kill_vid EXPORT_SYMBOL_GPL vmlinux 0xecd8f23d xenbus_read -EXPORT_SYMBOL_GPL vmlinux 0xecdf9fd7 ata_sff_exec_command -EXPORT_SYMBOL_GPL vmlinux 0xed056293 crypto_register_ahashes +EXPORT_SYMBOL_GPL vmlinux 0xece28dd9 crypto_find_alg +EXPORT_SYMBOL_GPL vmlinux 0xecf56c11 __fl6_sock_lookup +EXPORT_SYMBOL_GPL vmlinux 0xed0a428d __tracepoint_pelt_irq_tp +EXPORT_SYMBOL_GPL vmlinux 0xed18d0de spi_mem_dirmap_write +EXPORT_SYMBOL_GPL vmlinux 0xed252be4 get_kernel_pages EXPORT_SYMBOL_GPL vmlinux 0xed39b7b8 parse_OID -EXPORT_SYMBOL_GPL vmlinux 0xed445d27 vfio_pci_core_match -EXPORT_SYMBOL_GPL vmlinux 0xed5c7905 ata_scsi_unlock_native_capacity +EXPORT_SYMBOL_GPL vmlinux 0xed46b1ef power_supply_unregister +EXPORT_SYMBOL_GPL vmlinux 0xed49fcf9 device_link_remove +EXPORT_SYMBOL_GPL vmlinux 0xed4b728a thermal_zone_get_temp +EXPORT_SYMBOL_GPL vmlinux 0xed5aab82 xenbus_watch_path +EXPORT_SYMBOL_GPL vmlinux 0xed5d8ecd security_inode_create EXPORT_SYMBOL_GPL vmlinux 0xed7c7b91 raw_v6_hashinfo -EXPORT_SYMBOL_GPL vmlinux 0xed88ba04 __tracepoint_sched_update_nr_running_tp -EXPORT_SYMBOL_GPL vmlinux 0xed9eaf92 vring_del_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0xeda5d12d efivar_entry_iter -EXPORT_SYMBOL_GPL vmlinux 0xedae657f dev_pm_opp_find_freq_ceil -EXPORT_SYMBOL_GPL vmlinux 0xedb20406 tcp_abort -EXPORT_SYMBOL_GPL vmlinux 0xedbf94ed scsi_register_device_handler +EXPORT_SYMBOL_GPL vmlinux 0xed7cc1dc bio_iov_iter_get_pages +EXPORT_SYMBOL_GPL vmlinux 0xed8009c1 da903x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xed8c498e __strp_unpause +EXPORT_SYMBOL_GPL vmlinux 0xed8d0577 __SCK__tp_func_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0xed984342 trace_event_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0xed9b8ef6 skcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0xedaea0ee __devm_regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0xedb6ef4e em_dev_register_perf_domain +EXPORT_SYMBOL_GPL vmlinux 0xedca606f device_set_wakeup_enable EXPORT_SYMBOL_GPL vmlinux 0xedd092d5 power_supply_notifier -EXPORT_SYMBOL_GPL vmlinux 0xede81f7e pci_epc_stop EXPORT_SYMBOL_GPL vmlinux 0xede98ec5 intel_pt_validate_hw_cap EXPORT_SYMBOL_GPL vmlinux 0xede9a09a btree_lookup -EXPORT_SYMBOL_GPL vmlinux 0xedeaad96 kobject_uevent +EXPORT_SYMBOL_GPL vmlinux 0xedee8ea6 __traceiter_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0xedf9b99b dax_supported EXPORT_SYMBOL_GPL vmlinux 0xee13e697 set_personality_ia32 -EXPORT_SYMBOL_GPL vmlinux 0xee13fa41 devm_rtc_allocate_device -EXPORT_SYMBOL_GPL vmlinux 0xee2ed237 __rio_local_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0xee172fc8 nexthop_find_by_id EXPORT_SYMBOL_GPL vmlinux 0xee38ef57 register_switchdev_blocking_notifier -EXPORT_SYMBOL_GPL vmlinux 0xee4b8dbb crypto_shoot_alg +EXPORT_SYMBOL_GPL vmlinux 0xee3c5471 pci_epc_get_msi +EXPORT_SYMBOL_GPL vmlinux 0xee5045de __fscrypt_prepare_rename EXPORT_SYMBOL_GPL vmlinux 0xee518148 kmsg_dump_get_buffer -EXPORT_SYMBOL_GPL vmlinux 0xee59e0ce skb_pull_rcsum -EXPORT_SYMBOL_GPL vmlinux 0xee5e24ef tps6586x_irq_get_virq 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 0xee88763a pci_epc_mem_init -EXPORT_SYMBOL_GPL vmlinux 0xee9e539b fwnode_graph_get_endpoint_by_id -EXPORT_SYMBOL_GPL vmlinux 0xeea171e5 spi_sync +EXPORT_SYMBOL_GPL vmlinux 0xee77887e tcp_twsk_unique +EXPORT_SYMBOL_GPL vmlinux 0xee77f3e1 device_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0xee90d76a regulator_set_pull_down_regmap +EXPORT_SYMBOL_GPL vmlinux 0xee95cb52 kernfs_path_from_node +EXPORT_SYMBOL_GPL vmlinux 0xeea28352 efivar_entry_set_get_size +EXPORT_SYMBOL_GPL vmlinux 0xeea49066 platform_device_add EXPORT_SYMBOL_GPL vmlinux 0xeeab8650 smca_get_long_name -EXPORT_SYMBOL_GPL vmlinux 0xeeae0eae devm_kasprintf -EXPORT_SYMBOL_GPL vmlinux 0xeeb348cf ehci_suspend -EXPORT_SYMBOL_GPL vmlinux 0xeebbf8f0 xdp_convert_zc_to_xdp_frame -EXPORT_SYMBOL_GPL vmlinux 0xeebf8c95 xen_remap_vma_range +EXPORT_SYMBOL_GPL vmlinux 0xeeb01cf7 dst_cache_set_ip4 EXPORT_SYMBOL_GPL vmlinux 0xeed0cea4 kernel_read_file_from_fd +EXPORT_SYMBOL_GPL vmlinux 0xeedc63c1 vring_new_virtqueue EXPORT_SYMBOL_GPL vmlinux 0xeedd987e phy_10gbit_features_array EXPORT_SYMBOL_GPL vmlinux 0xeedfcec3 task_work_run -EXPORT_SYMBOL_GPL vmlinux 0xeee05fe7 irq_create_mapping_affinity -EXPORT_SYMBOL_GPL vmlinux 0xeee18b4a pm_generic_restore_early +EXPORT_SYMBOL_GPL vmlinux 0xeee2272e blkcg_policy_unregister +EXPORT_SYMBOL_GPL vmlinux 0xeee45ea7 bus_sort_breadthfirst EXPORT_SYMBOL_GPL vmlinux 0xeee667d3 fpregs_assert_state_consistent -EXPORT_SYMBOL_GPL vmlinux 0xeef1d360 scsi_nl_sock -EXPORT_SYMBOL_GPL vmlinux 0xeef3d3f2 irq_remove_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0xeefdae08 irq_alloc_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0xef1599e3 fwnode_graph_get_remote_node +EXPORT_SYMBOL_GPL vmlinux 0xeeeb5db2 extcon_get_edev_name +EXPORT_SYMBOL_GPL vmlinux 0xeef61f37 clean_record_shared_mapping_range +EXPORT_SYMBOL_GPL vmlinux 0xef049b47 tps65912_device_exit +EXPORT_SYMBOL_GPL vmlinux 0xef05afc7 fork_usermode_driver +EXPORT_SYMBOL_GPL vmlinux 0xef15c8d4 tcp_bpf_sendmsg_redir EXPORT_SYMBOL_GPL vmlinux 0xef1f6e23 apei_resources_request EXPORT_SYMBOL_GPL vmlinux 0xef29fcdd clk_bulk_put +EXPORT_SYMBOL_GPL vmlinux 0xef2ce709 regulator_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xef335e0c gpiochip_relres_irq EXPORT_SYMBOL_GPL vmlinux 0xef34bf3e hrtimer_active -EXPORT_SYMBOL_GPL vmlinux 0xef3b357f regmap_get_val_bytes EXPORT_SYMBOL_GPL vmlinux 0xef464c28 getboottime64 EXPORT_SYMBOL_GPL vmlinux 0xef5db66d regulator_get_init_drvdata -EXPORT_SYMBOL_GPL vmlinux 0xef621fcf gnttab_map_refs -EXPORT_SYMBOL_GPL vmlinux 0xef673ea4 irq_domain_associate +EXPORT_SYMBOL_GPL vmlinux 0xef638450 do_unregister_con_driver +EXPORT_SYMBOL_GPL vmlinux 0xef656842 sdio_signal_irq +EXPORT_SYMBOL_GPL vmlinux 0xef6948a1 fwnode_graph_get_remote_port EXPORT_SYMBOL_GPL vmlinux 0xef6c3f70 round_jiffies_up_relative EXPORT_SYMBOL_GPL vmlinux 0xef70eb7e ring_buffer_iter_advance -EXPORT_SYMBOL_GPL vmlinux 0xef73d3d8 fib_table_lookup EXPORT_SYMBOL_GPL vmlinux 0xef744bb5 sbitmap_queue_clear +EXPORT_SYMBOL_GPL vmlinux 0xef7c3421 net_ns_get_ownership +EXPORT_SYMBOL_GPL vmlinux 0xef7f52dc sysfs_update_groups +EXPORT_SYMBOL_GPL vmlinux 0xef8a599d power_supply_register_no_ws EXPORT_SYMBOL_GPL vmlinux 0xef8fc95f kvm_async_pf_task_wait_schedule EXPORT_SYMBOL_GPL vmlinux 0xef92ef33 btree_last EXPORT_SYMBOL_GPL vmlinux 0xefa2c27d register_tracepoint_module_notifier -EXPORT_SYMBOL_GPL vmlinux 0xefa53286 ata_msleep -EXPORT_SYMBOL_GPL vmlinux 0xefcc39d2 blk_queue_set_zoned -EXPORT_SYMBOL_GPL vmlinux 0xefcf9960 sock_prot_inuse_add -EXPORT_SYMBOL_GPL vmlinux 0xefdffd2f bus_create_file +EXPORT_SYMBOL_GPL vmlinux 0xefb0eb7f mmput +EXPORT_SYMBOL_GPL vmlinux 0xefd223bc __SCK__tp_func_devlink_hwmsg +EXPORT_SYMBOL_GPL vmlinux 0xefe7c45c tty_buffer_set_limit +EXPORT_SYMBOL_GPL vmlinux 0xefe82242 bio_associate_blkg EXPORT_SYMBOL_GPL vmlinux 0xefeafcf1 edac_has_mcs -EXPORT_SYMBOL_GPL vmlinux 0xeff16834 pskb_put -EXPORT_SYMBOL_GPL vmlinux 0xeff96107 sdio_writeb -EXPORT_SYMBOL_GPL vmlinux 0xf00a2992 dev_pm_opp_xlate_required_opp -EXPORT_SYMBOL_GPL vmlinux 0xf032d12f fat_alloc_new_dir +EXPORT_SYMBOL_GPL vmlinux 0xf007725d sbitmap_queue_show +EXPORT_SYMBOL_GPL vmlinux 0xf00914dd fib_nh_common_release +EXPORT_SYMBOL_GPL vmlinux 0xf015c658 xenbus_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0xf01815f6 perf_event_pause +EXPORT_SYMBOL_GPL vmlinux 0xf0182cfb serdev_controller_remove +EXPORT_SYMBOL_GPL vmlinux 0xf01f278e ata_pci_device_resume +EXPORT_SYMBOL_GPL vmlinux 0xf02aa00b devm_watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0xf030a64e sdio_writesb +EXPORT_SYMBOL_GPL vmlinux 0xf0374dce regulator_is_enabled_regmap EXPORT_SYMBOL_GPL vmlinux 0xf04429b4 acpi_bus_get_status_handle -EXPORT_SYMBOL_GPL vmlinux 0xf0578db7 sk_msg_free_nocharge EXPORT_SYMBOL_GPL vmlinux 0xf05a52fe asn1_encode_oid -EXPORT_SYMBOL_GPL vmlinux 0xf05bde24 serial8250_clear_and_reinit_fifos +EXPORT_SYMBOL_GPL vmlinux 0xf05ea12d __devm_regmap_init EXPORT_SYMBOL_GPL vmlinux 0xf05fbf09 pci_pio_to_address -EXPORT_SYMBOL_GPL vmlinux 0xf068f4e7 pid_nr_ns +EXPORT_SYMBOL_GPL vmlinux 0xf0636862 dma_free_pages EXPORT_SYMBOL_GPL vmlinux 0xf0696401 acpi_pci_detect_ejectable -EXPORT_SYMBOL_GPL vmlinux 0xf06c2f24 iommu_uapi_sva_unbind_gpasid -EXPORT_SYMBOL_GPL vmlinux 0xf06e683e firmware_request_platform -EXPORT_SYMBOL_GPL vmlinux 0xf0807398 ata_cable_sata -EXPORT_SYMBOL_GPL vmlinux 0xf086a8ba ata_eh_analyze_ncq_error -EXPORT_SYMBOL_GPL vmlinux 0xf089c04d dev_pm_qos_hide_latency_limit -EXPORT_SYMBOL_GPL vmlinux 0xf08b7b81 regulator_set_current_limit_regmap +EXPORT_SYMBOL_GPL vmlinux 0xf07bebb6 scsi_dh_set_params +EXPORT_SYMBOL_GPL vmlinux 0xf07c3a7f serial8250_rpm_get EXPORT_SYMBOL_GPL vmlinux 0xf0910075 sfp_bus_del_upstream -EXPORT_SYMBOL_GPL vmlinux 0xf0925a24 usb_autopm_put_interface_async +EXPORT_SYMBOL_GPL vmlinux 0xf0921ee2 nvmem_cell_read_u16 +EXPORT_SYMBOL_GPL vmlinux 0xf093c078 scsi_host_unblock EXPORT_SYMBOL_GPL vmlinux 0xf0a0c69d init_iova_domain -EXPORT_SYMBOL_GPL vmlinux 0xf0c88ad0 pm_clk_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0xf0ca41a2 vring_create_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0xf0a46d23 __tracepoint_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0xf0aefc79 skcipher_walk_aead_encrypt EXPORT_SYMBOL_GPL vmlinux 0xf0d478c7 list_lru_add -EXPORT_SYMBOL_GPL vmlinux 0xf0d54b37 pci_probe_reset_slot -EXPORT_SYMBOL_GPL vmlinux 0xf0e072d6 pci_epf_remove_vepf -EXPORT_SYMBOL_GPL vmlinux 0xf10b154c sdio_readsb -EXPORT_SYMBOL_GPL vmlinux 0xf1212f43 thermal_zone_get_zone_by_name -EXPORT_SYMBOL_GPL vmlinux 0xf134736b iommu_domain_free -EXPORT_SYMBOL_GPL vmlinux 0xf143c413 kthread_unpark -EXPORT_SYMBOL_GPL vmlinux 0xf1441680 pwm_set_chip_data -EXPORT_SYMBOL_GPL vmlinux 0xf144b18b __sock_recv_timestamp -EXPORT_SYMBOL_GPL vmlinux 0xf1556d03 pm_relax -EXPORT_SYMBOL_GPL vmlinux 0xf16e63c2 gnttab_pages_set_private -EXPORT_SYMBOL_GPL vmlinux 0xf17bdc81 rio_enable_rx_tx_port -EXPORT_SYMBOL_GPL vmlinux 0xf181266b dev_pm_opp_enable +EXPORT_SYMBOL_GPL vmlinux 0xf0d9f7a0 vfs_removexattr +EXPORT_SYMBOL_GPL vmlinux 0xf0da38a0 dw_pcie_host_init +EXPORT_SYMBOL_GPL vmlinux 0xf0e0b979 of_hwspin_lock_get_id_byname +EXPORT_SYMBOL_GPL vmlinux 0xf0e7a82d iommu_set_pgtable_quirks +EXPORT_SYMBOL_GPL vmlinux 0xf0e8ce19 led_trigger_blink +EXPORT_SYMBOL_GPL vmlinux 0xf0f4ea16 tty_port_link_device +EXPORT_SYMBOL_GPL vmlinux 0xf0fb8689 dw_pcie_write_dbi +EXPORT_SYMBOL_GPL vmlinux 0xf11fde77 blkg_lookup_slowpath +EXPORT_SYMBOL_GPL vmlinux 0xf13097e0 bus_get_device_klist +EXPORT_SYMBOL_GPL vmlinux 0xf1358c6f xfrm_output +EXPORT_SYMBOL_GPL vmlinux 0xf14ab0b5 dev_pm_qos_hide_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0xf1672f02 xdp_rxq_info_unreg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0xf16aa5de tpm2_flush_context +EXPORT_SYMBOL_GPL vmlinux 0xf184b1cc virtqueue_kick_prepare EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off -EXPORT_SYMBOL_GPL vmlinux 0xf186abea acpi_dev_get_property EXPORT_SYMBOL_GPL vmlinux 0xf188a662 rhashtable_walk_exit -EXPORT_SYMBOL_GPL vmlinux 0xf18987a8 devm_phy_get -EXPORT_SYMBOL_GPL vmlinux 0xf196d17d serdev_device_set_tiocm -EXPORT_SYMBOL_GPL vmlinux 0xf1b66a21 sock_diag_put_meminfo -EXPORT_SYMBOL_GPL vmlinux 0xf1b6f8c6 fuse_dev_free +EXPORT_SYMBOL_GPL vmlinux 0xf18d1605 debugfs_attr_read +EXPORT_SYMBOL_GPL vmlinux 0xf19c538e clk_hw_get_parent_index +EXPORT_SYMBOL_GPL vmlinux 0xf1a516a3 vfio_pci_core_disable +EXPORT_SYMBOL_GPL vmlinux 0xf1a79b52 auxiliary_find_device +EXPORT_SYMBOL_GPL vmlinux 0xf1b0700b dev_fill_metadata_dst +EXPORT_SYMBOL_GPL vmlinux 0xf1b465ed tps65912_device_init EXPORT_SYMBOL_GPL vmlinux 0xf1cd8929 kvm_read_and_reset_apf_flags -EXPORT_SYMBOL_GPL vmlinux 0xf1d0388f ata_bmdma_status -EXPORT_SYMBOL_GPL vmlinux 0xf1d492d0 dm_internal_suspend_fast -EXPORT_SYMBOL_GPL vmlinux 0xf1df58fa pci_epc_mem_free_addr -EXPORT_SYMBOL_GPL vmlinux 0xf1df87cf ncsi_vlan_rx_add_vid -EXPORT_SYMBOL_GPL vmlinux 0xf1e18b3f gpiochip_line_is_persistent -EXPORT_SYMBOL_GPL vmlinux 0xf1e5fa63 dev_pm_qos_update_user_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0xf1f70b4b devlink_port_type_clear -EXPORT_SYMBOL_GPL vmlinux 0xf1f713b8 fib_add_nexthop -EXPORT_SYMBOL_GPL vmlinux 0xf1f77145 device_create_managed_software_node -EXPORT_SYMBOL_GPL vmlinux 0xf20d2f9b udp4_hwcsum +EXPORT_SYMBOL_GPL vmlinux 0xf1d81b3c __iomap_dio_rw +EXPORT_SYMBOL_GPL vmlinux 0xf1fdfb18 wp_shared_mapping_range +EXPORT_SYMBOL_GPL vmlinux 0xf20f9368 clk_hw_get_rate +EXPORT_SYMBOL_GPL vmlinux 0xf21478cc attribute_container_classdev_to_container EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0xf2336f23 tps6586x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xf24ae4c8 exportfs_decode_fh -EXPORT_SYMBOL_GPL vmlinux 0xf25195d0 udp_init_sock -EXPORT_SYMBOL_GPL vmlinux 0xf2675231 usb_autopm_get_interface_no_resume -EXPORT_SYMBOL_GPL vmlinux 0xf2703cff led_update_brightness -EXPORT_SYMBOL_GPL vmlinux 0xf277b889 dma_buf_vunmap -EXPORT_SYMBOL_GPL vmlinux 0xf27a5eda ata_host_init -EXPORT_SYMBOL_GPL vmlinux 0xf27c6dcd skb_scrub_packet +EXPORT_SYMBOL_GPL vmlinux 0xf24bb35f __SCK__tp_func_sched_util_est_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0xf24c9afc clk_hw_round_rate +EXPORT_SYMBOL_GPL vmlinux 0xf25413cb transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf2765dac uart_get_rs485_mode +EXPORT_SYMBOL_GPL vmlinux 0xf27a7b6f hwmon_device_register +EXPORT_SYMBOL_GPL vmlinux 0xf27cbc11 __tracepoint_remove_device_from_group EXPORT_SYMBOL_GPL vmlinux 0xf27d0a7b gnttab_grant_foreign_access_ref -EXPORT_SYMBOL_GPL vmlinux 0xf28c257a od_register_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0xf2807098 __traceiter_xdp_exception +EXPORT_SYMBOL_GPL vmlinux 0xf28990bb __devm_reset_control_bulk_get EXPORT_SYMBOL_GPL vmlinux 0xf2967796 ring_buffer_record_on -EXPORT_SYMBOL_GPL vmlinux 0xf296a144 vfs_lock_file -EXPORT_SYMBOL_GPL vmlinux 0xf2990064 component_add_typed -EXPORT_SYMBOL_GPL vmlinux 0xf2a0a672 usb_phy_roothub_alloc -EXPORT_SYMBOL_GPL vmlinux 0xf2a4065e em_pd_get +EXPORT_SYMBOL_GPL vmlinux 0xf2983aec proc_create_net_data +EXPORT_SYMBOL_GPL vmlinux 0xf299ed49 intel_pmic_install_opregion_handler +EXPORT_SYMBOL_GPL vmlinux 0xf2ad64fc devlink_dpipe_entry_ctx_append EXPORT_SYMBOL_GPL vmlinux 0xf2b33cb7 memory_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xf2be9d62 devlink_dpipe_entry_ctx_prepare -EXPORT_SYMBOL_GPL vmlinux 0xf2c06b15 led_trigger_read -EXPORT_SYMBOL_GPL vmlinux 0xf2c86b76 cpufreq_freq_transition_end -EXPORT_SYMBOL_GPL vmlinux 0xf2cbecc9 __tracepoint_neigh_timer_handler -EXPORT_SYMBOL_GPL vmlinux 0xf2dc977d irq_domain_translate_onecell -EXPORT_SYMBOL_GPL vmlinux 0xf2deb044 dev_pm_qos_expose_latency_limit -EXPORT_SYMBOL_GPL vmlinux 0xf2e136a4 udp_cmsg_send +EXPORT_SYMBOL_GPL vmlinux 0xf2b697fa dev_pm_opp_put_regulators +EXPORT_SYMBOL_GPL vmlinux 0xf2bd9e19 ata_bmdma_dumb_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0xf2bf2615 xhci_run +EXPORT_SYMBOL_GPL vmlinux 0xf2c53d53 pci_write_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0xf2ca5edf devm_pwmchip_add +EXPORT_SYMBOL_GPL vmlinux 0xf2df8681 wait_for_stable_page +EXPORT_SYMBOL_GPL vmlinux 0xf2f0385b __pci_hp_register +EXPORT_SYMBOL_GPL vmlinux 0xf2f8bf2d devm_nvmem_cell_get EXPORT_SYMBOL_GPL vmlinux 0xf2fb61bd vprintk_default -EXPORT_SYMBOL_GPL vmlinux 0xf2feda6c perf_event_enable -EXPORT_SYMBOL_GPL vmlinux 0xf306f9b1 sysfs_update_group -EXPORT_SYMBOL_GPL vmlinux 0xf3097ec7 regmap_field_free EXPORT_SYMBOL_GPL vmlinux 0xf30a5502 cpufreq_enable_boost_support +EXPORT_SYMBOL_GPL vmlinux 0xf30e73d8 crypto_unregister_shash EXPORT_SYMBOL_GPL vmlinux 0xf311e156 key_being_used_for -EXPORT_SYMBOL_GPL vmlinux 0xf31260a3 class_create_file_ns EXPORT_SYMBOL_GPL vmlinux 0xf31632e0 ezx_pcap_read +EXPORT_SYMBOL_GPL vmlinux 0xf317cad5 spi_bus_unlock EXPORT_SYMBOL_GPL vmlinux 0xf3189f7e __uv_cpu_info EXPORT_SYMBOL_GPL vmlinux 0xf31b3fd1 workqueue_set_max_active -EXPORT_SYMBOL_GPL vmlinux 0xf32055c3 usb_hcd_link_urb_to_ep +EXPORT_SYMBOL_GPL vmlinux 0xf31ed8d7 usb_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0xf3216fd8 irq_domain_translate_onecell +EXPORT_SYMBOL_GPL vmlinux 0xf323c47d ata_sff_wait_ready EXPORT_SYMBOL_GPL vmlinux 0xf32bdc5d unregister_xenstore_notifier +EXPORT_SYMBOL_GPL vmlinux 0xf3310cc4 param_set_uint_minmax EXPORT_SYMBOL_GPL vmlinux 0xf331236f btree_geo32 -EXPORT_SYMBOL_GPL vmlinux 0xf3320219 devfreq_event_get_edev_count -EXPORT_SYMBOL_GPL vmlinux 0xf3414599 devm_memremap_pages -EXPORT_SYMBOL_GPL vmlinux 0xf347c078 __SCK__tp_func_br_fdb_add -EXPORT_SYMBOL_GPL vmlinux 0xf3502af2 hwspin_lock_request_specific +EXPORT_SYMBOL_GPL vmlinux 0xf33d55a8 kthread_unuse_mm +EXPORT_SYMBOL_GPL vmlinux 0xf3494e6f __clk_hw_register_mux +EXPORT_SYMBOL_GPL vmlinux 0xf349b588 ata_scsi_queuecmd EXPORT_SYMBOL_GPL vmlinux 0xf352023f memory_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xf354baf3 input_ff_event -EXPORT_SYMBOL_GPL vmlinux 0xf35ba535 platform_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf36c2ca7 pinctrl_remove_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0xf36d7e38 fwnode_property_read_u64_array EXPORT_SYMBOL_GPL vmlinux 0xf3797506 mpi_ec_deinit -EXPORT_SYMBOL_GPL vmlinux 0xf37a6c4c rtc_read_time -EXPORT_SYMBOL_GPL vmlinux 0xf37b7708 find_mci_by_dev EXPORT_SYMBOL_GPL vmlinux 0xf3808cb1 get_state_synchronize_rcu EXPORT_SYMBOL_GPL vmlinux 0xf39aee75 perf_msr_probe -EXPORT_SYMBOL_GPL vmlinux 0xf3a14088 crypto_alloc_acomp -EXPORT_SYMBOL_GPL vmlinux 0xf3a953a4 regmap_check_range_table +EXPORT_SYMBOL_GPL vmlinux 0xf3a31d5a fwnode_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0xf3a94592 posix_clock_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf3b017fb devm_regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0xf3b30b50 bpf_map_inc_not_zero EXPORT_SYMBOL_GPL vmlinux 0xf3b451ca kdb_poll_funcs +EXPORT_SYMBOL_GPL vmlinux 0xf3b62de9 gpiod_set_transitory EXPORT_SYMBOL_GPL vmlinux 0xf3b95d79 btree_remove -EXPORT_SYMBOL_GPL vmlinux 0xf3bc6a0c ata_scsi_dma_need_drain -EXPORT_SYMBOL_GPL vmlinux 0xf3c32910 key_type_asymmetric -EXPORT_SYMBOL_GPL vmlinux 0xf3e4027e devlink_param_register -EXPORT_SYMBOL_GPL vmlinux 0xf3e6bd56 usb_sg_init -EXPORT_SYMBOL_GPL vmlinux 0xf41faa75 bus_get_device_klist -EXPORT_SYMBOL_GPL vmlinux 0xf42d5f78 regulator_set_voltage -EXPORT_SYMBOL_GPL vmlinux 0xf42e86d6 serial8250_do_get_mctrl -EXPORT_SYMBOL_GPL vmlinux 0xf439e23b pci_user_read_config_byte -EXPORT_SYMBOL_GPL vmlinux 0xf459f52b get_current_tty -EXPORT_SYMBOL_GPL vmlinux 0xf4630920 intel_pinctrl_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0xf3bd325e gpiochip_generic_request +EXPORT_SYMBOL_GPL vmlinux 0xf3cd78ff fwnode_graph_get_remote_endpoint +EXPORT_SYMBOL_GPL vmlinux 0xf3cf589a devlink_resource_occ_get_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf3d5b81a icc_provider_del +EXPORT_SYMBOL_GPL vmlinux 0xf3ddcee4 blk_ksm_update_capabilities +EXPORT_SYMBOL_GPL vmlinux 0xf3e66ef4 spi_async +EXPORT_SYMBOL_GPL vmlinux 0xf3e72323 xenbus_map_ring_valloc +EXPORT_SYMBOL_GPL vmlinux 0xf3ece711 alloc_io_pgtable_ops +EXPORT_SYMBOL_GPL vmlinux 0xf3f1d571 iommu_aux_attach_device +EXPORT_SYMBOL_GPL vmlinux 0xf3f5259b __tracepoint_cpu_frequency +EXPORT_SYMBOL_GPL vmlinux 0xf40ba769 devlink_dpipe_table_resource_set +EXPORT_SYMBOL_GPL vmlinux 0xf42048ed devm_regulator_put +EXPORT_SYMBOL_GPL vmlinux 0xf4242d99 __traceiter_pelt_dl_tp +EXPORT_SYMBOL_GPL vmlinux 0xf443301b relay_switch_subbuf +EXPORT_SYMBOL_GPL vmlinux 0xf4642b19 blk_crypto_evict_key EXPORT_SYMBOL_GPL vmlinux 0xf4689d50 linkmode_set_pause -EXPORT_SYMBOL_GPL vmlinux 0xf468abce pcie_aspm_capable +EXPORT_SYMBOL_GPL vmlinux 0xf468b5f1 pci_try_reset_function +EXPORT_SYMBOL_GPL vmlinux 0xf470a50b pci_pri_supported +EXPORT_SYMBOL_GPL vmlinux 0xf4738469 gpiochip_find EXPORT_SYMBOL_GPL vmlinux 0xf47654df irq_check_status_bit -EXPORT_SYMBOL_GPL vmlinux 0xf48fec2d acpi_dma_configure_id EXPORT_SYMBOL_GPL vmlinux 0xf4af35c2 rcu_gp_is_normal -EXPORT_SYMBOL_GPL vmlinux 0xf4bea86c dev_pm_qos_expose_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0xf4ca6cce badblocks_store +EXPORT_SYMBOL_GPL vmlinux 0xf4b8b77d housekeeping_affine EXPORT_SYMBOL_GPL vmlinux 0xf4cd9f8f reset_control_bulk_release -EXPORT_SYMBOL_GPL vmlinux 0xf4d85335 fscrypt_set_bio_crypt_ctx -EXPORT_SYMBOL_GPL vmlinux 0xf4d8cf5c __traceiter_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0xf4da4168 ata_host_init +EXPORT_SYMBOL_GPL vmlinux 0xf4db8bc4 vp_modern_set_queue_enable EXPORT_SYMBOL_GPL vmlinux 0xf4dd89bf uv_get_hubless_system EXPORT_SYMBOL_GPL vmlinux 0xf4e35e28 sbitmap_prepare_to_wait EXPORT_SYMBOL_GPL vmlinux 0xf4f69d1f clk_hw_unregister_gate -EXPORT_SYMBOL_GPL vmlinux 0xf4fdc249 generic_device_group -EXPORT_SYMBOL_GPL vmlinux 0xf502b7a6 ip_valid_fib_dump_req -EXPORT_SYMBOL_GPL vmlinux 0xf514b1b6 platform_unregister_drivers -EXPORT_SYMBOL_GPL vmlinux 0xf51c555a __acpi_node_get_property_reference -EXPORT_SYMBOL_GPL vmlinux 0xf523c964 __ndisc_fill_addr_option -EXPORT_SYMBOL_GPL vmlinux 0xf53ad167 apply_to_page_range -EXPORT_SYMBOL_GPL vmlinux 0xf5458070 skb_mpls_dec_ttl +EXPORT_SYMBOL_GPL vmlinux 0xf50bdff9 pm_clk_create +EXPORT_SYMBOL_GPL vmlinux 0xf52ada62 ata_dummy_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xf52c3f47 rio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xf53855a9 gen10g_config_aneg EXPORT_SYMBOL_GPL vmlinux 0xf548988d put_iova_domain EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm +EXPORT_SYMBOL_GPL vmlinux 0xf54fdc89 regulator_disable_regmap EXPORT_SYMBOL_GPL vmlinux 0xf553318d cpuidle_pause_and_lock -EXPORT_SYMBOL_GPL vmlinux 0xf55b42c2 msg_zerocopy_realloc -EXPORT_SYMBOL_GPL vmlinux 0xf57b260e devm_rtc_nvmem_register -EXPORT_SYMBOL_GPL vmlinux 0xf590bef5 device_pm_wait_for_dev +EXPORT_SYMBOL_GPL vmlinux 0xf55b9722 nf_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0xf579ce2f phy_modify +EXPORT_SYMBOL_GPL vmlinux 0xf580daf9 switchdev_port_attr_set +EXPORT_SYMBOL_GPL vmlinux 0xf59eb1c6 devm_create_dev_dax EXPORT_SYMBOL_GPL vmlinux 0xf5a3ba99 linear_range_values_in_range EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus -EXPORT_SYMBOL_GPL vmlinux 0xf5ca5f58 crypto_stats_kpp_compute_shared_secret -EXPORT_SYMBOL_GPL vmlinux 0xf5cb97fb regmap_mmio_attach_clk -EXPORT_SYMBOL_GPL vmlinux 0xf5e618e5 bus_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0xf5e6523c fuse_do_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xf5a70d13 security_kernel_post_read_file +EXPORT_SYMBOL_GPL vmlinux 0xf5ae966d usb_get_maximum_ssp_rate +EXPORT_SYMBOL_GPL vmlinux 0xf5d4c7ef fuse_dev_free +EXPORT_SYMBOL_GPL vmlinux 0xf5dc84d4 kill_device EXPORT_SYMBOL_GPL vmlinux 0xf5f370e0 async_schedule_node -EXPORT_SYMBOL_GPL vmlinux 0xf5fbb1a0 i2c_handle_smbus_host_notify -EXPORT_SYMBOL_GPL vmlinux 0xf60cbe61 cpuidle_register_driver -EXPORT_SYMBOL_GPL vmlinux 0xf6156992 rio_mport_read_config_16 -EXPORT_SYMBOL_GPL vmlinux 0xf61f7317 blk_poll -EXPORT_SYMBOL_GPL vmlinux 0xf6230e49 fpregs_mark_activate -EXPORT_SYMBOL_GPL vmlinux 0xf627f261 rio_free_net -EXPORT_SYMBOL_GPL vmlinux 0xf62d1770 ehci_setup +EXPORT_SYMBOL_GPL vmlinux 0xf608a92b device_release_driver +EXPORT_SYMBOL_GPL vmlinux 0xf60d9607 gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0xf6378ba3 subsys_find_device_by_id +EXPORT_SYMBOL_GPL vmlinux 0xf646472a crypto_unregister_rngs EXPORT_SYMBOL_GPL vmlinux 0xf64aaa25 alarm_init -EXPORT_SYMBOL_GPL vmlinux 0xf655f70c led_trigger_write -EXPORT_SYMBOL_GPL vmlinux 0xf6591f8e dev_err_probe -EXPORT_SYMBOL_GPL vmlinux 0xf65b646f rio_dma_prep_xfer +EXPORT_SYMBOL_GPL vmlinux 0xf64d6bf9 tty_find_polling_driver EXPORT_SYMBOL_GPL vmlinux 0xf663ee2f pcap_adc_sync -EXPORT_SYMBOL_GPL vmlinux 0xf671dd1b acpi_bus_trim -EXPORT_SYMBOL_GPL vmlinux 0xf688a036 regmap_attach_dev -EXPORT_SYMBOL_GPL vmlinux 0xf69e62e1 dev_pm_genpd_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0xf66c2e7a ata_sff_hsm_move +EXPORT_SYMBOL_GPL vmlinux 0xf686fa2e sk_psock_msg_verdict +EXPORT_SYMBOL_GPL vmlinux 0xf69f8a21 trace_event_ignore_this_pid EXPORT_SYMBOL_GPL vmlinux 0xf6a28554 region_intersects -EXPORT_SYMBOL_GPL vmlinux 0xf6afac33 reset_controller_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf6bb0f4d security_inode_mkdir +EXPORT_SYMBOL_GPL vmlinux 0xf6c2772b hwpoison_filter EXPORT_SYMBOL_GPL vmlinux 0xf6c71a25 cper_severity_str EXPORT_SYMBOL_GPL vmlinux 0xf6c8dc62 cpu_hotplug_enable -EXPORT_SYMBOL_GPL vmlinux 0xf6d92a8a perf_event_period -EXPORT_SYMBOL_GPL vmlinux 0xf6e5411e devlink_dpipe_entry_ctx_append +EXPORT_SYMBOL_GPL vmlinux 0xf6d435ec usb_role_switch_get EXPORT_SYMBOL_GPL vmlinux 0xf6e772c3 irq_bypass_unregister_producer EXPORT_SYMBOL_GPL vmlinux 0xf6e874f5 ata_timing_merge -EXPORT_SYMBOL_GPL vmlinux 0xf6e89f2f power_supply_powers -EXPORT_SYMBOL_GPL vmlinux 0xf6ef33eb xenbus_watch_pathfmt -EXPORT_SYMBOL_GPL vmlinux 0xf6f075ed ping_bind -EXPORT_SYMBOL_GPL vmlinux 0xf6f5d884 ohci_restart -EXPORT_SYMBOL_GPL vmlinux 0xf720305e i2c_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xf6f44289 tty_mode_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xf71c0d4a __SCK__tp_func_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0xf72172a2 blk_ksm_is_superset EXPORT_SYMBOL_GPL vmlinux 0xf72a65ea tty_get_char_size -EXPORT_SYMBOL_GPL vmlinux 0xf72f4869 devlink_traps_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf7449e1e da903x_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xf7340ed3 nvdimm_name 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 0xf74caf52 ata_sff_lost_interrupt EXPORT_SYMBOL_GPL vmlinux 0xf74e7c93 jump_label_rate_limit -EXPORT_SYMBOL_GPL vmlinux 0xf7500e70 pm_runtime_set_autosuspend_delay +EXPORT_SYMBOL_GPL vmlinux 0xf75c3a49 thermal_zone_get_zone_by_name +EXPORT_SYMBOL_GPL vmlinux 0xf761be10 vfio_unregister_group_dev EXPORT_SYMBOL_GPL vmlinux 0xf767ca35 fixed_percpu_data -EXPORT_SYMBOL_GPL vmlinux 0xf775a330 switchdev_port_obj_del -EXPORT_SYMBOL_GPL vmlinux 0xf7767730 pci_vfs_assigned -EXPORT_SYMBOL_GPL vmlinux 0xf776c426 xfrm_audit_policy_add -EXPORT_SYMBOL_GPL vmlinux 0xf777bae4 rio_add_device -EXPORT_SYMBOL_GPL vmlinux 0xf7817f87 phy_power_on +EXPORT_SYMBOL_GPL vmlinux 0xf76b51b1 watchdog_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xf76c8e2a devm_device_add_groups 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 0xf7886ce4 power_supply_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf78ca9cc usb_sg_wait -EXPORT_SYMBOL_GPL vmlinux 0xf79aa1d2 crypto_alloc_akcipher -EXPORT_SYMBOL_GPL vmlinux 0xf79d1427 dma_buf_get -EXPORT_SYMBOL_GPL vmlinux 0xf7a1df68 led_compose_name +EXPORT_SYMBOL_GPL vmlinux 0xf793673c rt_mutex_lock +EXPORT_SYMBOL_GPL vmlinux 0xf7a32f05 regulator_count_voltages +EXPORT_SYMBOL_GPL vmlinux 0xf7adaea6 pcc_mbox_free_channel EXPORT_SYMBOL_GPL vmlinux 0xf7afb369 btree_init +EXPORT_SYMBOL_GPL vmlinux 0xf7b62410 dma_vunmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0xf7bc0b85 simple_attr_write EXPORT_SYMBOL_GPL vmlinux 0xf7bc95b0 devlink_fmsg_pair_nest_start EXPORT_SYMBOL_GPL vmlinux 0xf7c3f273 xen_resume_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0xf7c7fbfa crypto_aead_setkey -EXPORT_SYMBOL_GPL vmlinux 0xf7c8c8d3 of_phy_put -EXPORT_SYMBOL_GPL vmlinux 0xf7c99a7e posix_acl_default_xattr_handler -EXPORT_SYMBOL_GPL vmlinux 0xf7d6f6d0 ata_pci_bmdma_init +EXPORT_SYMBOL_GPL vmlinux 0xf7cb085d thermal_zone_get_slope EXPORT_SYMBOL_GPL vmlinux 0xf7d961d8 clk_hw_unregister_composite -EXPORT_SYMBOL_GPL vmlinux 0xf7f4f6d9 genphy_c45_pma_read_abilities -EXPORT_SYMBOL_GPL vmlinux 0xf7f66eaa devlink_rate_leaf_destroy -EXPORT_SYMBOL_GPL vmlinux 0xf7f6d863 pci_epc_unmap_addr -EXPORT_SYMBOL_GPL vmlinux 0xf7fdd34f fscrypt_set_bio_crypt_ctx_bh -EXPORT_SYMBOL_GPL vmlinux 0xf801e5d4 phy_package_leave -EXPORT_SYMBOL_GPL vmlinux 0xf811c812 blkcg_root_css -EXPORT_SYMBOL_GPL vmlinux 0xf81995df iomap_file_unshare +EXPORT_SYMBOL_GPL vmlinux 0xf7dbd886 device_move +EXPORT_SYMBOL_GPL vmlinux 0xf7f2f894 __traceiter_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0xf80ae0e6 attribute_container_register +EXPORT_SYMBOL_GPL vmlinux 0xf82496b1 led_compose_name EXPORT_SYMBOL_GPL vmlinux 0xf82f3657 work_on_cpu -EXPORT_SYMBOL_GPL vmlinux 0xf8492c04 store_sampling_rate -EXPORT_SYMBOL_GPL vmlinux 0xf849b7a9 security_kernel_read_file -EXPORT_SYMBOL_GPL vmlinux 0xf85fb182 kthread_func -EXPORT_SYMBOL_GPL vmlinux 0xf86187eb __dev_change_net_namespace -EXPORT_SYMBOL_GPL vmlinux 0xf862abfe __kernel_write -EXPORT_SYMBOL_GPL vmlinux 0xf86e722b __clk_get_hw +EXPORT_SYMBOL_GPL vmlinux 0xf83d758c lwtunnel_output +EXPORT_SYMBOL_GPL vmlinux 0xf8411eab mddev_suspend +EXPORT_SYMBOL_GPL vmlinux 0xf84ba733 device_find_child_by_name +EXPORT_SYMBOL_GPL vmlinux 0xf84d3e7a iomap_fiemap +EXPORT_SYMBOL_GPL vmlinux 0xf853ac6b devm_clk_hw_get_clk +EXPORT_SYMBOL_GPL vmlinux 0xf873d4dc fpu_copy_uabi_to_guest_fpstate +EXPORT_SYMBOL_GPL vmlinux 0xf87580b3 __kthread_init_worker EXPORT_SYMBOL_GPL vmlinux 0xf881cecd load_fixmap_gdt -EXPORT_SYMBOL_GPL vmlinux 0xf88bf245 tpm_chip_register -EXPORT_SYMBOL_GPL vmlinux 0xf88dd87c gpiod_set_raw_array_value -EXPORT_SYMBOL_GPL vmlinux 0xf8a627a1 __fscrypt_prepare_link -EXPORT_SYMBOL_GPL vmlinux 0xf8aad57e regulator_map_voltage_ascend -EXPORT_SYMBOL_GPL vmlinux 0xf8cdb0d9 device_store_ulong -EXPORT_SYMBOL_GPL vmlinux 0xf8d4271b __inet_inherit_port -EXPORT_SYMBOL_GPL vmlinux 0xf8d90e6f sock_diag_unregister_inet_compat -EXPORT_SYMBOL_GPL vmlinux 0xf8d997bb phy_modify_mmd -EXPORT_SYMBOL_GPL vmlinux 0xf8e90226 sock_gen_put +EXPORT_SYMBOL_GPL vmlinux 0xf88d864a iommu_setup_dma_ops +EXPORT_SYMBOL_GPL vmlinux 0xf8953e78 debugfs_real_fops +EXPORT_SYMBOL_GPL vmlinux 0xf897b5cd devm_acpi_dev_remove_driver_gpios +EXPORT_SYMBOL_GPL vmlinux 0xf8989481 register_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0xf8a96c01 usb_register_dev +EXPORT_SYMBOL_GPL vmlinux 0xf8ba3fe6 usb_autopm_put_interface +EXPORT_SYMBOL_GPL vmlinux 0xf8c907db led_init_core +EXPORT_SYMBOL_GPL vmlinux 0xf8e26a90 mbox_chan_txdone EXPORT_SYMBOL_GPL vmlinux 0xf8f3a0fb ata_ratelimit -EXPORT_SYMBOL_GPL vmlinux 0xf8f806b5 posix_clock_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf8f97838 watchdog_notify_pretimeout EXPORT_SYMBOL_GPL vmlinux 0xf8fe3986 pat_pfn_immune_to_uc_mtrr -EXPORT_SYMBOL_GPL vmlinux 0xf913e572 pci_epc_add_epf -EXPORT_SYMBOL_GPL vmlinux 0xf91ce3bd blk_queue_zone_write_granularity -EXPORT_SYMBOL_GPL vmlinux 0xf91d5377 nvdimm_bus_add_badrange -EXPORT_SYMBOL_GPL vmlinux 0xf925f0f8 irq_get_domain_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0xf926b702 ata_host_suspend -EXPORT_SYMBOL_GPL vmlinux 0xf935618d alloc_skb_for_msg -EXPORT_SYMBOL_GPL vmlinux 0xf93b02b4 iommu_iova_to_phys -EXPORT_SYMBOL_GPL vmlinux 0xf94cced6 xhci_run -EXPORT_SYMBOL_GPL vmlinux 0xf94e7729 gpiod_to_chip +EXPORT_SYMBOL_GPL vmlinux 0xf902b307 seg6_do_srh_inline +EXPORT_SYMBOL_GPL vmlinux 0xf90ce720 i2c_acpi_find_bus_speed +EXPORT_SYMBOL_GPL vmlinux 0xf92730c5 ip_valid_fib_dump_req +EXPORT_SYMBOL_GPL vmlinux 0xf9336db5 is_current_mnt_ns +EXPORT_SYMBOL_GPL vmlinux 0xf93d6279 spi_take_timestamp_pre +EXPORT_SYMBOL_GPL vmlinux 0xf944d49b serial8250_em485_start_tx +EXPORT_SYMBOL_GPL vmlinux 0xf946cea3 regulator_sync_voltage EXPORT_SYMBOL_GPL vmlinux 0xf95322f4 kthread_parkme -EXPORT_SYMBOL_GPL vmlinux 0xf95485d1 irq_domain_reset_irq_data EXPORT_SYMBOL_GPL vmlinux 0xf955e9c5 bprintf -EXPORT_SYMBOL_GPL vmlinux 0xf95be29a __clk_determine_rate -EXPORT_SYMBOL_GPL vmlinux 0xf96023ba vfio_uninit_group_dev -EXPORT_SYMBOL_GPL vmlinux 0xf98e0fc9 __efivar_entry_get -EXPORT_SYMBOL_GPL vmlinux 0xf98e2a4d user_read -EXPORT_SYMBOL_GPL vmlinux 0xf991bb79 __xenbus_register_frontend -EXPORT_SYMBOL_GPL vmlinux 0xf999d3fb dma_resv_test_signaled +EXPORT_SYMBOL_GPL vmlinux 0xf966c3ac spi_busnum_to_master +EXPORT_SYMBOL_GPL vmlinux 0xf96be87d devm_regulator_irq_helper +EXPORT_SYMBOL_GPL vmlinux 0xf971de67 bus_register +EXPORT_SYMBOL_GPL vmlinux 0xf97575a1 unregister_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0xf97859a5 blk_ksm_register +EXPORT_SYMBOL_GPL vmlinux 0xf98ff931 ata_host_resume EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0xf9a3acd8 led_update_brightness +EXPORT_SYMBOL_GPL vmlinux 0xf9a44654 devlink_port_param_driverinit_value_get +EXPORT_SYMBOL_GPL vmlinux 0xf9a9971e wbt_enable_default EXPORT_SYMBOL_GPL vmlinux 0xf9b34a0b iopf_queue_free -EXPORT_SYMBOL_GPL vmlinux 0xf9c7794c perf_event_read_value -EXPORT_SYMBOL_GPL vmlinux 0xf9d4788a ip6_dst_lookup_tunnel -EXPORT_SYMBOL_GPL vmlinux 0xf9eacf31 __raw_v6_lookup -EXPORT_SYMBOL_GPL vmlinux 0xf9ec26db __efivar_entry_iter -EXPORT_SYMBOL_GPL vmlinux 0xfa06cd8d crypto_drop_spawn -EXPORT_SYMBOL_GPL vmlinux 0xfa1ab813 extcon_set_property_capability +EXPORT_SYMBOL_GPL vmlinux 0xf9b667c9 reset_control_get_count +EXPORT_SYMBOL_GPL vmlinux 0xf9b71df9 pm_wakeup_dev_event +EXPORT_SYMBOL_GPL vmlinux 0xf9dbef69 dev_pm_opp_get_level +EXPORT_SYMBOL_GPL vmlinux 0xf9dea8b1 irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xfa063fdb ata_dev_disable EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops -EXPORT_SYMBOL_GPL vmlinux 0xfa29be5d put_device -EXPORT_SYMBOL_GPL vmlinux 0xfa2cb27c kthread_unuse_mm EXPORT_SYMBOL_GPL vmlinux 0xfa349688 aer_recover_queue EXPORT_SYMBOL_GPL vmlinux 0xfa35044a alternatives_patched -EXPORT_SYMBOL_GPL vmlinux 0xfa3dc1b0 pci_epc_set_bar -EXPORT_SYMBOL_GPL vmlinux 0xfa551273 __tracepoint_block_split +EXPORT_SYMBOL_GPL vmlinux 0xfa4eefd1 handle_fasteoi_irq EXPORT_SYMBOL_GPL vmlinux 0xfa666974 queue_work_node EXPORT_SYMBOL_GPL vmlinux 0xfa690589 netdev_cmd_to_name -EXPORT_SYMBOL_GPL vmlinux 0xfa6bc534 devm_acpi_dev_remove_driver_gpios -EXPORT_SYMBOL_GPL vmlinux 0xfa6fb0a9 put_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0xfa97c72c free_io_pgtable_ops -EXPORT_SYMBOL_GPL vmlinux 0xfa9e474d mmc_send_status -EXPORT_SYMBOL_GPL vmlinux 0xfaa052c7 replace_page_cache_page -EXPORT_SYMBOL_GPL vmlinux 0xfaadcbca ata_link_offline +EXPORT_SYMBOL_GPL vmlinux 0xfa690a45 fscrypt_d_revalidate +EXPORT_SYMBOL_GPL vmlinux 0xfa751a55 trace_event_buffer_commit +EXPORT_SYMBOL_GPL vmlinux 0xfa8dc79d gov_update_cpu_data +EXPORT_SYMBOL_GPL vmlinux 0xfaae075c mmc_cmdq_disable +EXPORT_SYMBOL_GPL vmlinux 0xfaaed924 dev_err_probe EXPORT_SYMBOL_GPL vmlinux 0xfab30dc0 mdio_bus_exit EXPORT_SYMBOL_GPL vmlinux 0xfab53ed9 pinctrl_gpio_can_use_line +EXPORT_SYMBOL_GPL vmlinux 0xfab7f8f0 edac_pci_handle_npe +EXPORT_SYMBOL_GPL vmlinux 0xfab97f38 devlink_dpipe_headers_register +EXPORT_SYMBOL_GPL vmlinux 0xfad2b149 driver_create_file EXPORT_SYMBOL_GPL vmlinux 0xfad9c827 kill_dax -EXPORT_SYMBOL_GPL vmlinux 0xfb14f1c7 devlink_dpipe_headers_unregister -EXPORT_SYMBOL_GPL vmlinux 0xfb2e3f9d pci_generic_config_write32 +EXPORT_SYMBOL_GPL vmlinux 0xfae67142 lp8788_write_byte +EXPORT_SYMBOL_GPL vmlinux 0xfaecdecb pinctrl_find_gpio_range_from_pin +EXPORT_SYMBOL_GPL vmlinux 0xfb01c421 gnttab_unmap_refs_async +EXPORT_SYMBOL_GPL vmlinux 0xfb21b8a9 xdp_return_frame_rx_napi +EXPORT_SYMBOL_GPL vmlinux 0xfb26f718 ata_cable_40wire EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync -EXPORT_SYMBOL_GPL vmlinux 0xfb46f522 extcon_set_property_sync -EXPORT_SYMBOL_GPL vmlinux 0xfb535d1f debugfs_create_u64 -EXPORT_SYMBOL_GPL vmlinux 0xfb5ff4e4 nvdimm_has_cache +EXPORT_SYMBOL_GPL vmlinux 0xfb34eed7 fwnode_connection_find_match +EXPORT_SYMBOL_GPL vmlinux 0xfb39484c __udp_gso_segment +EXPORT_SYMBOL_GPL vmlinux 0xfb6255be md_find_rdev_nr_rcu +EXPORT_SYMBOL_GPL vmlinux 0xfb63b546 mmc_sanitize EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name -EXPORT_SYMBOL_GPL vmlinux 0xfb83d610 bd_unlink_disk_holder -EXPORT_SYMBOL_GPL vmlinux 0xfb9ca943 clk_hw_unregister +EXPORT_SYMBOL_GPL vmlinux 0xfb75bafa trace_event_buffer_reserve +EXPORT_SYMBOL_GPL vmlinux 0xfb78d3f4 devm_regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0xfb7d7a44 extcon_set_property_sync +EXPORT_SYMBOL_GPL vmlinux 0xfb7e0766 platform_get_resource +EXPORT_SYMBOL_GPL vmlinux 0xfb7e0bdb usb_hcd_setup_local_mem +EXPORT_SYMBOL_GPL vmlinux 0xfb83f3e6 usb_hcd_pci_pm_ops EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action -EXPORT_SYMBOL_GPL vmlinux 0xfbc0cebe fuse_sync_release -EXPORT_SYMBOL_GPL vmlinux 0xfbceffa8 platform_bus +EXPORT_SYMBOL_GPL vmlinux 0xfbbde8e1 dev_pm_genpd_resume +EXPORT_SYMBOL_GPL vmlinux 0xfbd9ba93 fsverity_verify_bio +EXPORT_SYMBOL_GPL vmlinux 0xfbee8c8c devfreq_event_get_edev_by_phandle EXPORT_SYMBOL_GPL vmlinux 0xfbeeb13c phy_gbit_all_ports_features -EXPORT_SYMBOL_GPL vmlinux 0xfbf2de22 __SCK__tp_func_cpu_frequency 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 0xfc0c0b45 __audit_inode_child EXPORT_SYMBOL_GPL vmlinux 0xfc14bb2e dm_get_dev_t +EXPORT_SYMBOL_GPL vmlinux 0xfc187c8d ata_sff_error_handler EXPORT_SYMBOL_GPL vmlinux 0xfc19bc45 crypto_dh_encode_key -EXPORT_SYMBOL_GPL vmlinux 0xfc1ec065 dev_pm_domain_attach_by_name +EXPORT_SYMBOL_GPL vmlinux 0xfc1fe14b dev_pm_opp_find_level_exact EXPORT_SYMBOL_GPL vmlinux 0xfc201b66 sprint_oid EXPORT_SYMBOL_GPL vmlinux 0xfc254d15 gnttab_free_auto_xlat_frames +EXPORT_SYMBOL_GPL vmlinux 0xfc342f74 __traceiter_pelt_rt_tp +EXPORT_SYMBOL_GPL vmlinux 0xfc389cc9 crypto_grab_ahash +EXPORT_SYMBOL_GPL vmlinux 0xfc38fb05 acpi_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xfc3a293d ata_cable_sata EXPORT_SYMBOL_GPL vmlinux 0xfc3b4246 acpi_bus_update_power -EXPORT_SYMBOL_GPL vmlinux 0xfc42eb68 rio_mport_write_config_32 -EXPORT_SYMBOL_GPL vmlinux 0xfc4defcf devlink_traps_register -EXPORT_SYMBOL_GPL vmlinux 0xfc4ef70a crypto_ahash_setkey -EXPORT_SYMBOL_GPL vmlinux 0xfc635178 query_asymmetric_key -EXPORT_SYMBOL_GPL vmlinux 0xfc652faa acpi_cppc_processor_exit -EXPORT_SYMBOL_GPL vmlinux 0xfc6e5494 __tracepoint_napi_poll -EXPORT_SYMBOL_GPL vmlinux 0xfc79f108 security_kernel_post_read_file -EXPORT_SYMBOL_GPL vmlinux 0xfc946d9b devm_usb_get_phy_by_node -EXPORT_SYMBOL_GPL vmlinux 0xfc971d61 __page_mapcount -EXPORT_SYMBOL_GPL vmlinux 0xfca3d8fe tpm_transmit_cmd -EXPORT_SYMBOL_GPL vmlinux 0xfcae086c handle_fasteoi_irq -EXPORT_SYMBOL_GPL vmlinux 0xfcbc8628 devm_usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0xfc3b8879 usb_hcd_start_port_resume +EXPORT_SYMBOL_GPL vmlinux 0xfc4b5739 regmap_test_bits +EXPORT_SYMBOL_GPL vmlinux 0xfc5a43e7 metadata_dst_alloc +EXPORT_SYMBOL_GPL vmlinux 0xfc87eaf3 usb_set_interface +EXPORT_SYMBOL_GPL vmlinux 0xfcad3015 vfio_pci_core_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xfcba2fd6 usb_wakeup_enabled_descendants +EXPORT_SYMBOL_GPL vmlinux 0xfcbcced9 vfio_pci_core_init_device EXPORT_SYMBOL_GPL vmlinux 0xfcbfec70 add_memory_driver_managed EXPORT_SYMBOL_GPL vmlinux 0xfcc1edd3 memory_block_size_bytes -EXPORT_SYMBOL_GPL vmlinux 0xfcc965df dax_iomap_rw EXPORT_SYMBOL_GPL vmlinux 0xfcca5424 register_kprobe -EXPORT_SYMBOL_GPL vmlinux 0xfcd06241 pm_generic_resume_noirq -EXPORT_SYMBOL_GPL vmlinux 0xfcd70e0e crypto_shash_finup -EXPORT_SYMBOL_GPL vmlinux 0xfce8ec84 gpiod_set_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xfcf0fe98 simple_attr_open +EXPORT_SYMBOL_GPL vmlinux 0xfcdba7b0 phy_package_join EXPORT_SYMBOL_GPL vmlinux 0xfcf9ef73 hw_protection_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xfd0c0d74 __SCK__tp_func_kfree_skb -EXPORT_SYMBOL_GPL vmlinux 0xfd0ed46f pci_epf_destroy -EXPORT_SYMBOL_GPL vmlinux 0xfd273218 wm8350_gpio_config -EXPORT_SYMBOL_GPL vmlinux 0xfd4db2e8 pm_runtime_no_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xfd517739 usb_hcd_pci_pm_ops -EXPORT_SYMBOL_GPL vmlinux 0xfd57b29f pm_schedule_suspend -EXPORT_SYMBOL_GPL vmlinux 0xfd6a039a tty_save_termios +EXPORT_SYMBOL_GPL vmlinux 0xfd038094 find_vpid +EXPORT_SYMBOL_GPL vmlinux 0xfd03e36b irq_gc_mask_clr_bit +EXPORT_SYMBOL_GPL vmlinux 0xfd087e02 phy_speed_up +EXPORT_SYMBOL_GPL vmlinux 0xfd11472b gpiochip_get_desc +EXPORT_SYMBOL_GPL vmlinux 0xfd21b324 usb_disable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0xfd3c225b auxiliary_device_init +EXPORT_SYMBOL_GPL vmlinux 0xfd6e5863 clk_register_mux_table +EXPORT_SYMBOL_GPL vmlinux 0xfd6ef271 eventfd_ctx_fileget EXPORT_SYMBOL_GPL vmlinux 0xfd7243c7 erst_disable -EXPORT_SYMBOL_GPL vmlinux 0xfd7db929 crypto_grab_ahash -EXPORT_SYMBOL_GPL vmlinux 0xfd81c054 pinctrl_pm_select_sleep_state -EXPORT_SYMBOL_GPL vmlinux 0xfd91ab56 crypto_grab_aead -EXPORT_SYMBOL_GPL vmlinux 0xfd93ac63 __alloc_pages_bulk -EXPORT_SYMBOL_GPL vmlinux 0xfd9439bc __tracepoint_sched_util_est_se_tp -EXPORT_SYMBOL_GPL vmlinux 0xfd9b2d80 __mnt_is_readonly -EXPORT_SYMBOL_GPL vmlinux 0xfd9cd17c virtio_check_driver_offered_feature -EXPORT_SYMBOL_GPL vmlinux 0xfda1c8ff ata_sff_wait_ready -EXPORT_SYMBOL_GPL vmlinux 0xfda3f47c edac_device_handle_ce_count -EXPORT_SYMBOL_GPL vmlinux 0xfda8b836 fwnode_get_parent -EXPORT_SYMBOL_GPL vmlinux 0xfda9b4b8 usb_alloc_coherent -EXPORT_SYMBOL_GPL vmlinux 0xfdad75ad devm_gpio_free -EXPORT_SYMBOL_GPL vmlinux 0xfdb04f8a ipv6_opt_accepted -EXPORT_SYMBOL_GPL vmlinux 0xfdb3d466 regmap_async_complete -EXPORT_SYMBOL_GPL vmlinux 0xfdb51f52 usb_enable_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0xfdbb338c task_user_regset_view +EXPORT_SYMBOL_GPL vmlinux 0xfd8529b7 device_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0xfd9df221 devm_gpio_free +EXPORT_SYMBOL_GPL vmlinux 0xfdac8f4c inet_twsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0xfdad5e77 xdp_rxq_info_is_reg +EXPORT_SYMBOL_GPL vmlinux 0xfdad8351 xen_unmap_domain_gfn_range +EXPORT_SYMBOL_GPL vmlinux 0xfdb9e947 devlink_region_create EXPORT_SYMBOL_GPL vmlinux 0xfdbd7a17 crypto_get_attr_type -EXPORT_SYMBOL_GPL vmlinux 0xfdcd91bf invalidate_inode_pages2 -EXPORT_SYMBOL_GPL vmlinux 0xfdda0b70 da903x_reads -EXPORT_SYMBOL_GPL vmlinux 0xfddb6633 serdev_device_set_flow_control -EXPORT_SYMBOL_GPL vmlinux 0xfddef6e3 rtc_class_close +EXPORT_SYMBOL_GPL vmlinux 0xfdc6b881 regulator_set_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0xfdcbdbb2 __cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0xfde224a3 clk_hw_get_parent +EXPORT_SYMBOL_GPL vmlinux 0xfde665f4 genphy_c45_an_config_aneg EXPORT_SYMBOL_GPL vmlinux 0xfdea2d04 alarm_cancel -EXPORT_SYMBOL_GPL vmlinux 0xfdf67d3e cgroup_get_from_fd -EXPORT_SYMBOL_GPL vmlinux 0xfdfaee0e sdio_claim_host -EXPORT_SYMBOL_GPL vmlinux 0xfe01890a __devm_alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0xfe07daae pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0xfdfc8cb0 sysfs_remove_mount_point +EXPORT_SYMBOL_GPL vmlinux 0xfe090988 bdev_disk_changed EXPORT_SYMBOL_GPL vmlinux 0xfe0e7cd3 apei_exec_post_unmap_gars -EXPORT_SYMBOL_GPL vmlinux 0xfe14bdda __tracepoint_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0xfe13ee9e dma_map_sgtable EXPORT_SYMBOL_GPL vmlinux 0xfe1a7a7b mpi_point_release -EXPORT_SYMBOL_GPL vmlinux 0xfe22ff4f tcp_twsk_unique -EXPORT_SYMBOL_GPL vmlinux 0xfe268b4a __pm_runtime_set_status -EXPORT_SYMBOL_GPL vmlinux 0xfe29c215 powercap_unregister_control_type -EXPORT_SYMBOL_GPL vmlinux 0xfe3621fb class_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0xfe2cfd85 crypto_register_template +EXPORT_SYMBOL_GPL vmlinux 0xfe347cd5 i2c_handle_smbus_host_notify EXPORT_SYMBOL_GPL vmlinux 0xfe3a6de3 alarm_try_to_cancel -EXPORT_SYMBOL_GPL vmlinux 0xfe3ac2bb balloon_page_alloc EXPORT_SYMBOL_GPL vmlinux 0xfe476039 ktime_get_resolution_ns EXPORT_SYMBOL_GPL vmlinux 0xfe5aad0c divider_ro_determine_rate -EXPORT_SYMBOL_GPL vmlinux 0xfe5dd702 usb_put_intf -EXPORT_SYMBOL_GPL vmlinux 0xfe6123d2 acpi_cppc_processor_probe +EXPORT_SYMBOL_GPL vmlinux 0xfe657d93 genphy_c45_check_and_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0xfe6b7a27 split_page +EXPORT_SYMBOL_GPL vmlinux 0xfe6eefa9 dma_async_device_channel_unregister EXPORT_SYMBOL_GPL vmlinux 0xfe727411 get_phys_to_machine -EXPORT_SYMBOL_GPL vmlinux 0xfe72a98a driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xfe7d0c89 pci_epc_set_bar +EXPORT_SYMBOL_GPL vmlinux 0xfe7dcec9 acpi_dev_gpio_irq_get_by EXPORT_SYMBOL_GPL vmlinux 0xfe8cdb84 ring_buffer_alloc_read_page -EXPORT_SYMBOL_GPL vmlinux 0xfe957de9 iommu_set_pgtable_quirks -EXPORT_SYMBOL_GPL vmlinux 0xfe96a0f4 devres_remove +EXPORT_SYMBOL_GPL vmlinux 0xfe913993 dev_pm_qos_update_request EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free -EXPORT_SYMBOL_GPL vmlinux 0xfea82539 of_clk_hw_register -EXPORT_SYMBOL_GPL vmlinux 0xfeb901a0 dax_layout_busy_page_range -EXPORT_SYMBOL_GPL vmlinux 0xfebfac71 pci_epc_mem_alloc_addr +EXPORT_SYMBOL_GPL vmlinux 0xfeae4d32 ata_pio_need_iordy EXPORT_SYMBOL_GPL vmlinux 0xfec3bf84 icst_clk_setup -EXPORT_SYMBOL_GPL vmlinux 0xfec69dc8 md_bitmap_load +EXPORT_SYMBOL_GPL vmlinux 0xfec8d944 __SCK__tp_func_pelt_rt_tp +EXPORT_SYMBOL_GPL vmlinux 0xfec99bfc pm_generic_poweroff EXPORT_SYMBOL_GPL vmlinux 0xfed11ed1 usb_mon_deregister EXPORT_SYMBOL_GPL vmlinux 0xfed561ff divider_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0xfeebe320 unregister_asymmetric_key_parser EXPORT_SYMBOL_GPL vmlinux 0xfeeecd05 apei_read -EXPORT_SYMBOL_GPL vmlinux 0xfeff8a89 tcp_sendmsg_locked +EXPORT_SYMBOL_GPL vmlinux 0xfeef20b7 __mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xfef6ad80 device_attach +EXPORT_SYMBOL_GPL vmlinux 0xfef77635 devm_nvdimm_memremap EXPORT_SYMBOL_GPL vmlinux 0xff05fa13 vring_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xff0614d3 scsi_check_sense +EXPORT_SYMBOL_GPL vmlinux 0xff089941 devm_hwrng_unregister EXPORT_SYMBOL_GPL vmlinux 0xff1666f3 reset_control_bulk_assert EXPORT_SYMBOL_GPL vmlinux 0xff1e67b9 setup_APIC_eilvt +EXPORT_SYMBOL_GPL vmlinux 0xff1fde4e shash_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0xff24ba78 ata_sff_queue_pio_task EXPORT_SYMBOL_GPL vmlinux 0xff291ecf clk_unregister_divider -EXPORT_SYMBOL_GPL vmlinux 0xff2d4576 pm_runtime_enable -EXPORT_SYMBOL_GPL vmlinux 0xff37d736 blkcg_policy_register +EXPORT_SYMBOL_GPL vmlinux 0xff2d4c48 perf_event_addr_filters_sync +EXPORT_SYMBOL_GPL vmlinux 0xff3b0481 spi_get_next_queued_message EXPORT_SYMBOL_GPL vmlinux 0xff42c374 usb_role_switch_get_role -EXPORT_SYMBOL_GPL vmlinux 0xff4965a8 tty_buffer_request_room -EXPORT_SYMBOL_GPL vmlinux 0xff4fc1f1 blk_abort_request -EXPORT_SYMBOL_GPL vmlinux 0xff5a57f8 phy_driver_is_genphy_10g -EXPORT_SYMBOL_GPL vmlinux 0xff5f791a rio_unmap_inb_region -EXPORT_SYMBOL_GPL vmlinux 0xff775c9f device_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0xff46a8ed skb_cow_data +EXPORT_SYMBOL_GPL vmlinux 0xff5eb912 __unwind_start +EXPORT_SYMBOL_GPL vmlinux 0xff5ec811 do_take_over_console +EXPORT_SYMBOL_GPL vmlinux 0xff66e9e0 device_add_properties EXPORT_SYMBOL_GPL vmlinux 0xff7e33bf mpi_sub_ui EXPORT_SYMBOL_GPL vmlinux 0xff81487d gpiod_remove_lookup_table EXPORT_SYMBOL_GPL vmlinux 0xff8e74e2 arch_haltpoll_enable -EXPORT_SYMBOL_GPL vmlinux 0xff915815 pci_find_host_bridge -EXPORT_SYMBOL_GPL vmlinux 0xff936fc5 __bio_crypt_clone -EXPORT_SYMBOL_GPL vmlinux 0xff9af322 gnttab_unmap_refs_sync +EXPORT_SYMBOL_GPL vmlinux 0xff9959fa l3mdev_update_flow +EXPORT_SYMBOL_GPL vmlinux 0xff9c6070 __SCK__tp_func_suspend_resume EXPORT_SYMBOL_GPL vmlinux 0xff9e23d1 hugetlb_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xffa3f953 gnttab_alloc_pages -EXPORT_SYMBOL_GPL vmlinux 0xffa8ab69 fuse_dev_fiq_ops -EXPORT_SYMBOL_GPL vmlinux 0xffac87b2 perf_pmu_register +EXPORT_SYMBOL_GPL vmlinux 0xffa45f10 platform_find_device_by_driver EXPORT_SYMBOL_GPL vmlinux 0xffae8e8b nsecs_to_jiffies -EXPORT_SYMBOL_GPL vmlinux 0xffbdd36c nd_blk_memremap_flags -EXPORT_SYMBOL_GPL vmlinux 0xffc033cb regulator_set_voltage_time_sel -EXPORT_SYMBOL_GPL vmlinux 0xffd52711 pm_generic_poweroff -EXPORT_SYMBOL_GPL vmlinux 0xffe8f667 i2c_match_id -EXPORT_SYMBOL_GPL vmlinux 0xfff8b58f devlink_dpipe_entry_ctx_close +EXPORT_SYMBOL_GPL vmlinux 0xffbe0cec proc_create_net_data_write +EXPORT_SYMBOL_GPL vmlinux 0xffcd585d crypto_unregister_templates +EXPORT_SYMBOL_GPL vmlinux 0xffcf03b3 dax_layout_busy_page_range +EXPORT_SYMBOL_GPL vmlinux 0xffd517f9 gov_attr_set_get +EXPORT_SYMBOL_GPL vmlinux 0xffd5d548 acpi_get_first_physical_node +EXPORT_SYMBOL_GPL vmlinux 0xfff32bd5 __vfs_setxattr_noperm FIRMWARE_LOADER_PRIVATE EXPORT_SYMBOL_GPL 0xd3ae7756 fw_fallback_config vmlinux -IDXD EXPORT_SYMBOL_GPL 0x030afc27 idxd_driver_unregister drivers/dma/idxd/idxd_bus -IDXD EXPORT_SYMBOL_GPL 0x328cd1ae __idxd_driver_register drivers/dma/idxd/idxd_bus -IDXD EXPORT_SYMBOL_GPL 0x43b20a62 idxd_dmaengine_drv drivers/dma/idxd/idxd -IDXD EXPORT_SYMBOL_GPL 0xaaa5bc42 idxd_drv drivers/dma/idxd/idxd -IDXD EXPORT_SYMBOL_GPL 0xbc89ead0 idxd_user_drv drivers/dma/idxd/idxd -IDXD EXPORT_SYMBOL_GPL 0xf83cead4 dsa_bus_type drivers/dma/idxd/idxd_bus -IIO_HID EXPORT_SYMBOL 0x056773cc hid_sensor_read_raw_hyst_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0x1666cfca hid_sensor_write_raw_hyst_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0x19dc11f1 hid_sensor_pm_ops drivers/iio/common/hid-sensors/hid-sensor-trigger -IIO_HID EXPORT_SYMBOL 0x387ef29d hid_sensor_read_raw_hyst_rel_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0x3ffd1eae hid_sensor_read_samp_freq_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0x43049bc3 hid_sensor_convert_timestamp drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0x4f3e889b hid_sensor_write_samp_freq_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0x636b81a2 hid_sensor_power_state drivers/iio/common/hid-sensors/hid-sensor-trigger -IIO_HID EXPORT_SYMBOL 0x6c7fb441 hid_sensor_parse_common_attributes drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0x7a5cf979 hid_sensor_write_raw_hyst_rel_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IDXD EXPORT_SYMBOL_GPL 0x4909016b dsa_bus_type drivers/dma/idxd/idxd_bus +IDXD EXPORT_SYMBOL_GPL 0x4c064a58 idxd_drv drivers/dma/idxd/idxd +IDXD EXPORT_SYMBOL_GPL 0x655fdeca idxd_dmaengine_drv drivers/dma/idxd/idxd +IDXD EXPORT_SYMBOL_GPL 0xa07f1f58 idxd_driver_unregister drivers/dma/idxd/idxd_bus +IDXD EXPORT_SYMBOL_GPL 0xb5c95786 __idxd_driver_register drivers/dma/idxd/idxd_bus +IDXD EXPORT_SYMBOL_GPL 0xe825d48c idxd_user_drv drivers/dma/idxd/idxd +IIO_HID EXPORT_SYMBOL 0x07fcc0af hid_sensor_remove_trigger drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0x499d5dea hid_sensor_write_raw_hyst_rel_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x4d8c64c5 hid_sensor_parse_common_attributes drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x4feafcfe hid_sensor_write_raw_hyst_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x52dca0f6 hid_sensor_write_samp_freq_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x65477a53 hid_sensor_pm_ops drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0x663c4b99 hid_sensor_read_raw_hyst_rel_value drivers/iio/common/hid-sensors/hid-sensor-iio-common IIO_HID EXPORT_SYMBOL 0x7f7621ec hid_sensor_format_scale drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0x9032afe9 hid_sensor_setup_trigger drivers/iio/common/hid-sensors/hid-sensor-trigger -IIO_HID EXPORT_SYMBOL 0x958129b5 hid_sensor_remove_trigger drivers/iio/common/hid-sensors/hid-sensor-trigger -IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x43533644 hid_sensor_batch_mode_supported drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0xac9895ba hid_sensor_get_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0xcd6a186a hid_sensor_read_poll_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0xf384120b hid_sensor_set_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common -INT340X_THERMAL EXPORT_SYMBOL_GPL 0x23249ec7 processor_thermal_send_mbox_read_cmd drivers/thermal/intel/int340x_thermal/processor_thermal_mbox -INT340X_THERMAL EXPORT_SYMBOL_GPL 0x9f6dded6 processor_thermal_send_mbox_write_cmd drivers/thermal/intel/int340x_thermal/processor_thermal_mbox -LTC2497 EXPORT_SYMBOL 0x62e415e3 ltc2497core_remove drivers/iio/adc/ltc2497-core -LTC2497 EXPORT_SYMBOL 0x704dae73 ltc2497core_probe drivers/iio/adc/ltc2497-core -MCB EXPORT_SYMBOL_GPL 0x1674f7a6 mcb_get_irq drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x1960a041 mcb_free_dev drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x34824642 chameleon_parse_cells drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x4a4424a5 mcb_alloc_dev drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x5f513b61 mcb_request_mem drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x6d2a4c7a mcb_bus_put drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x6d368040 __mcb_register_driver drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0xa815c053 mcb_alloc_bus drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0xa8d1ad6b mcb_device_register drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0xb204dcd2 mcb_unregister_driver drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0xbb8a2c97 mcb_bus_add_devices drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0xbb8bd18f mcb_bus_get drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0xc1982a25 mcb_release_bus drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0xd33e8098 mcb_get_resource drivers/mcb/mcb +IIO_HID EXPORT_SYMBOL 0x96f5d078 hid_sensor_power_state drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0x9c7dc295 hid_sensor_convert_timestamp drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0xbc9f4e37 hid_sensor_setup_trigger drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0xc3025123 hid_sensor_read_samp_freq_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0xcc13fd2f hid_sensor_read_raw_hyst_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x3324fe4e hid_sensor_set_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x85060dc2 hid_sensor_read_poll_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0xc5d77bea hid_sensor_get_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0xcde1b514 hid_sensor_batch_mode_supported drivers/iio/common/hid-sensors/hid-sensor-iio-common +INT340X_THERMAL EXPORT_SYMBOL_GPL 0xc6cc5c75 processor_thermal_send_mbox_write_cmd drivers/thermal/intel/int340x_thermal/processor_thermal_mbox +INT340X_THERMAL EXPORT_SYMBOL_GPL 0xea9f7f91 processor_thermal_send_mbox_read_cmd drivers/thermal/intel/int340x_thermal/processor_thermal_mbox +LTC2497 EXPORT_SYMBOL 0x0140f5f8 ltc2497core_probe drivers/iio/adc/ltc2497-core +LTC2497 EXPORT_SYMBOL 0xcfafc55d ltc2497core_remove drivers/iio/adc/ltc2497-core +MCB EXPORT_SYMBOL_GPL 0x089f086c mcb_get_resource drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x109347fc mcb_alloc_bus drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x2aa6b2d1 __mcb_register_driver drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x3a48be61 mcb_alloc_dev drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x3c07215d mcb_free_dev drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x532f69af mcb_get_irq drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x60583f0c mcb_release_bus drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x685f0d3b mcb_bus_add_devices drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x6f3f5c87 mcb_request_mem drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x80a971b8 mcb_bus_get drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x90f2da66 mcb_unregister_driver drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xb3900d99 chameleon_parse_cells drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xe46dedbc mcb_bus_put drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xe9e04ad9 mcb_device_register drivers/mcb/mcb MCB EXPORT_SYMBOL_GPL 0xeb2c8905 mcb_release_mem drivers/mcb/mcb -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x21c13309 nvme_find_get_ns drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x39b2a0d2 nvme_command_effects drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x41644ec7 nvme_execute_passthru_rq drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x5d685902 nvme_ctrl_from_file drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x96f921d4 nvme_put_ns drivers/nvme/host/nvme-core -PMBUS EXPORT_SYMBOL_GPL 0x0f9ec38e pmbus_get_debugfs_dir drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x205ff6fe pmbus_get_driver_info drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x33d80e38 pmbus_read_word_data drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x472df21e pmbus_set_page drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x550fc64d pmbus_update_fan drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x5b338be6 pmbus_get_fan_rate_device drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x788fdf97 pmbus_write_byte drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x8160f2ac pmbus_regulator_ops drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x81c21487 pmbus_clear_faults drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x89397f80 pmbus_clear_cache drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x8e52fe7a pmbus_do_probe drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x95ee9a63 pmbus_check_byte_register drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x98610d82 pmbus_get_fan_rate_cached drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xa3858e42 pmbus_write_word_data drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xa4d00e45 pmbus_read_byte_data drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xac12d290 pmbus_update_byte_data drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xb1ae3522 pmbus_write_byte_data drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xeda29122 pmbus_check_word_register drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xfb8a7fdf pmbus_set_update drivers/hwmon/pmbus/pmbus_core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x0a6cf4ec nvme_command_effects drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x60c877b7 nvme_find_get_ns drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x87af3cdf nvme_execute_passthru_rq drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xb68be179 nvme_put_ns drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xe3a58322 nvme_ctrl_from_file drivers/nvme/host/nvme-core +PMBUS EXPORT_SYMBOL_GPL 0x047f77d9 pmbus_get_fan_rate_device drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x10cd069a pmbus_update_fan drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x16f8f14a pmbus_get_debugfs_dir drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x2bed089f pmbus_read_byte_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x39a7224e pmbus_set_update drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x3d9f81a1 pmbus_read_word_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x3ec2baf6 pmbus_regulator_ops drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x3ffa56c7 pmbus_clear_faults drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x43f3f8fb pmbus_get_fan_rate_cached drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x511724d1 pmbus_check_word_register drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x6143c515 pmbus_update_byte_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x682a2b8c pmbus_clear_cache drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x8e0cbf45 pmbus_write_byte_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xaae6e182 pmbus_write_word_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xb8c52397 pmbus_set_page drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xbfdc6de6 pmbus_check_byte_register drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xd59117fe pmbus_write_byte drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xf13dbb68 pmbus_get_driver_info drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xff8e8d7b pmbus_do_probe drivers/hwmon/pmbus/pmbus_core SND_INTEL_SOUNDWIRE_ACPI EXPORT_SYMBOL 0xbb4f9d1f sdw_intel_acpi_scan sound/hda/snd-intel-sdw-acpi -SND_SOC_INTEL_HDA_DSP_COMMON EXPORT_SYMBOL 0x131e316d hda_dsp_hdmi_build_controls sound/soc/intel/boards/snd-soc-intel-hda-dsp-common -SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0x0886c52f max_98373_components sound/soc/intel/boards/snd-soc-intel-sof-maxim-common -SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0x0c85665e max_98357a_dai_link sound/soc/intel/boards/snd-soc-intel-sof-maxim-common -SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0x14b49460 max_98373_dapm_routes sound/soc/intel/boards/snd-soc-intel-sof-maxim-common -SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0x1c36ad83 max_98373_trigger sound/soc/intel/boards/snd-soc-intel-sof-maxim-common -SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0x306a48ea max_98360a_dai_link sound/soc/intel/boards/snd-soc-intel-sof-maxim-common -SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0x5a4bf755 max_98373_set_codec_conf sound/soc/intel/boards/snd-soc-intel-sof-maxim-common -SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0xbcffab23 max_98373_spk_codec_init sound/soc/intel/boards/snd-soc-intel-sof-maxim-common -SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0xc040a9b7 max_98373_ops sound/soc/intel/boards/snd-soc-intel-sof-maxim-common -SND_SOC_SOF_ACPI_DEV EXPORT_SYMBOL 0x8b90a6be sof_acpi_remove sound/soc/sof/snd-sof-acpi -SND_SOC_SOF_ACPI_DEV EXPORT_SYMBOL 0xd3394bf5 sof_acpi_probe sound/soc/sof/snd-sof-acpi -SND_SOC_SOF_ACPI_DEV EXPORT_SYMBOL 0xf62c7231 sof_acpi_pm sound/soc/sof/snd-sof-acpi -SND_SOC_SOF_HDA_AUDIO_CODEC EXPORT_SYMBOL 0x5bd2b230 hda_codec_probe_bus sound/soc/sof/intel/snd-sof-intel-hda -SND_SOC_SOF_HDA_AUDIO_CODEC EXPORT_SYMBOL 0x813d082b hda_codec_jack_check sound/soc/sof/intel/snd-sof-intel-hda -SND_SOC_SOF_HDA_AUDIO_CODEC EXPORT_SYMBOL 0xc0457b03 hda_codec_jack_wake_enable sound/soc/sof/intel/snd-sof-intel-hda -SND_SOC_SOF_HDA_AUDIO_CODEC_I915 EXPORT_SYMBOL 0x52788b4b hda_codec_i915_display_power sound/soc/sof/intel/snd-sof-intel-hda -SND_SOC_SOF_HDA_AUDIO_CODEC_I915 EXPORT_SYMBOL 0x702ab858 hda_codec_i915_exit sound/soc/sof/intel/snd-sof-intel-hda -SND_SOC_SOF_HDA_AUDIO_CODEC_I915 EXPORT_SYMBOL 0xa0fc8370 hda_codec_i915_init sound/soc/sof/intel/snd-sof-intel-hda +SND_SOC_INTEL_HDA_DSP_COMMON EXPORT_SYMBOL 0x68200033 hda_dsp_hdmi_build_controls sound/soc/intel/boards/snd-soc-intel-hda-dsp-common +SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0x009914ea max_98373_components sound/soc/intel/boards/snd-soc-intel-sof-maxim-common +SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0x4b34635c max_98373_set_codec_conf sound/soc/intel/boards/snd-soc-intel-sof-maxim-common +SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0x706bfaa4 max_98360a_dai_link sound/soc/intel/boards/snd-soc-intel-sof-maxim-common +SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0x9d590104 max_98373_trigger sound/soc/intel/boards/snd-soc-intel-sof-maxim-common +SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0xb2bd6cf3 max_98373_spk_codec_init sound/soc/intel/boards/snd-soc-intel-sof-maxim-common +SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0xb30da0a6 max_98373_ops sound/soc/intel/boards/snd-soc-intel-sof-maxim-common +SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0xcdeb78ef max_98373_dapm_routes sound/soc/intel/boards/snd-soc-intel-sof-maxim-common +SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0xd2f2d091 max_98357a_dai_link sound/soc/intel/boards/snd-soc-intel-sof-maxim-common +SND_SOC_SOF_ACPI_DEV EXPORT_SYMBOL 0xb38d45d8 sof_acpi_pm sound/soc/sof/snd-sof-acpi +SND_SOC_SOF_ACPI_DEV EXPORT_SYMBOL 0xbc877168 sof_acpi_remove sound/soc/sof/snd-sof-acpi +SND_SOC_SOF_ACPI_DEV EXPORT_SYMBOL 0xe6cff32b sof_acpi_probe sound/soc/sof/snd-sof-acpi +SND_SOC_SOF_HDA_AUDIO_CODEC EXPORT_SYMBOL 0x698c6d27 hda_codec_jack_wake_enable sound/soc/sof/intel/snd-sof-intel-hda +SND_SOC_SOF_HDA_AUDIO_CODEC EXPORT_SYMBOL 0xa4c0da75 hda_codec_jack_check sound/soc/sof/intel/snd-sof-intel-hda +SND_SOC_SOF_HDA_AUDIO_CODEC EXPORT_SYMBOL 0xeb0dbdfe hda_codec_probe_bus sound/soc/sof/intel/snd-sof-intel-hda +SND_SOC_SOF_HDA_AUDIO_CODEC_I915 EXPORT_SYMBOL 0x4fed1a04 hda_codec_i915_display_power sound/soc/sof/intel/snd-sof-intel-hda +SND_SOC_SOF_HDA_AUDIO_CODEC_I915 EXPORT_SYMBOL 0xc04b7d94 hda_codec_i915_exit sound/soc/sof/intel/snd-sof-intel-hda +SND_SOC_SOF_HDA_AUDIO_CODEC_I915 EXPORT_SYMBOL 0xe15303b9 hda_codec_i915_init sound/soc/sof/intel/snd-sof-intel-hda +SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0x1e01bd83 atom_reset sound/soc/sof/intel/snd-sof-intel-atom +SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0x2fdbf70f atom_run sound/soc/sof/intel/snd-sof-intel-atom +SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0x300976f6 atom_dump 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 0x44aaeb6b atom_set_mach_params sound/soc/sof/intel/snd-sof-intel-atom -SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0x578823f5 atom_dump sound/soc/sof/intel/snd-sof-intel-atom -SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0x5d4c6dc7 atom_reset sound/soc/sof/intel/snd-sof-intel-atom -SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0x7f32aeee atom_get_mailbox_offset sound/soc/sof/intel/snd-sof-intel-atom -SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0x9497f1dd atom_get_window_offset sound/soc/sof/intel/snd-sof-intel-atom -SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0xa10f2d1b atom_run sound/soc/sof/intel/snd-sof-intel-atom -SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0xc1ea3c47 atom_dai sound/soc/sof/intel/snd-sof-intel-atom -SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0xca126e05 atom_send_msg sound/soc/sof/intel/snd-sof-intel-atom +SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0x54b91ba3 atom_set_mach_params sound/soc/sof/intel/snd-sof-intel-atom +SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0x6790664e atom_dai sound/soc/sof/intel/snd-sof-intel-atom +SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0x8158969f atom_send_msg sound/soc/sof/intel/snd-sof-intel-atom +SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0xb22ee311 atom_machine_select sound/soc/sof/intel/snd-sof-intel-atom +SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0xd34255fc atom_get_mailbox_offset 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 0xf81ecdd7 atom_machine_select sound/soc/sof/intel/snd-sof-intel-atom -SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x0bd4b9ae tgl_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common -SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x1a259f0f icl_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common -SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x20b14b2d apl_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common -SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x326e48ad sof_cnl_ops sound/soc/sof/intel/snd-sof-intel-hda-common -SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x47aaa843 sof_apl_ops sound/soc/sof/intel/snd-sof-intel-hda-common -SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x84db2a65 adls_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common -SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x8880dd9f hda_pci_intel_probe sound/soc/sof/intel/snd-sof-intel-hda-common -SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x8f3e25ea cnl_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common -SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0xc27935a5 sof_icl_ops sound/soc/sof/intel/snd-sof-intel-hda-common -SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0xd188354c sof_tgl_ops sound/soc/sof/intel/snd-sof-intel-hda-common -SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0xd2431c0e jsl_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common -SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0xd719b181 ehl_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common -SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0xf2d56788 tglh_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common -SND_SOC_SOF_INTEL_HIFI_EP_IPC EXPORT_SYMBOL 0x07299be9 intel_pcm_open sound/soc/sof/intel/snd-sof-intel-ipc -SND_SOC_SOF_INTEL_HIFI_EP_IPC EXPORT_SYMBOL 0x39eabbc2 intel_ipc_pcm_params sound/soc/sof/intel/snd-sof-intel-ipc -SND_SOC_SOF_INTEL_HIFI_EP_IPC EXPORT_SYMBOL 0x5e590eb6 intel_pcm_close sound/soc/sof/intel/snd-sof-intel-ipc -SND_SOC_SOF_INTEL_HIFI_EP_IPC EXPORT_SYMBOL 0xce64e9f3 intel_ipc_msg_data sound/soc/sof/intel/snd-sof-intel-ipc -SND_SOC_SOF_PCI_DEV EXPORT_SYMBOL 0x0d095657 sof_pci_shutdown sound/soc/sof/snd-sof-pci -SND_SOC_SOF_PCI_DEV EXPORT_SYMBOL 0x27378fcb sof_pci_pm sound/soc/sof/snd-sof-pci -SND_SOC_SOF_PCI_DEV EXPORT_SYMBOL 0x7d70e6e3 sof_pci_probe sound/soc/sof/snd-sof-pci -SND_SOC_SOF_PCI_DEV EXPORT_SYMBOL 0xeee6a298 sof_pci_remove sound/soc/sof/snd-sof-pci -SND_SOC_SOF_XTENSA EXPORT_SYMBOL 0x2891243d sof_xtensa_arch_ops sound/soc/sof/xtensa/snd-sof-xtensa-dsp -SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0x5a5e804a sdw_intel_probe drivers/soundwire/soundwire-intel +SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0xf39befa7 atom_get_window_offset sound/soc/sof/intel/snd-sof-intel-atom +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x02b61d37 sof_icl_ops sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x09b8d670 adls_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x11471dde sof_tgl_ops sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x26d823c1 hda_pci_intel_probe sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x4b40ab32 apl_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x602559b1 tgl_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x71d47f10 icl_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x7fb69b9d tglh_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x876580d1 sof_apl_ops sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0xb9b2fc11 jsl_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0xbce8519e ehl_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0xe4cfc5f5 cnl_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0xf2a1603f sof_cnl_ops sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HIFI_EP_IPC EXPORT_SYMBOL 0x7d95c67f intel_pcm_open sound/soc/sof/intel/snd-sof-intel-ipc +SND_SOC_SOF_INTEL_HIFI_EP_IPC EXPORT_SYMBOL 0x85b4610a intel_pcm_close sound/soc/sof/intel/snd-sof-intel-ipc +SND_SOC_SOF_INTEL_HIFI_EP_IPC EXPORT_SYMBOL 0xc49da7f6 intel_ipc_pcm_params sound/soc/sof/intel/snd-sof-intel-ipc +SND_SOC_SOF_INTEL_HIFI_EP_IPC EXPORT_SYMBOL 0xf2564082 intel_ipc_msg_data sound/soc/sof/intel/snd-sof-intel-ipc +SND_SOC_SOF_PCI_DEV EXPORT_SYMBOL 0x2965c6d7 sof_pci_shutdown sound/soc/sof/snd-sof-pci +SND_SOC_SOF_PCI_DEV EXPORT_SYMBOL 0x595c13e6 sof_pci_pm sound/soc/sof/snd-sof-pci +SND_SOC_SOF_PCI_DEV EXPORT_SYMBOL 0x6a00e65c sof_pci_remove sound/soc/sof/snd-sof-pci +SND_SOC_SOF_PCI_DEV EXPORT_SYMBOL 0x88231181 sof_pci_probe sound/soc/sof/snd-sof-pci +SND_SOC_SOF_XTENSA EXPORT_SYMBOL 0xa00e7309 sof_xtensa_arch_ops sound/soc/sof/xtensa/snd-sof-xtensa-dsp +SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0x3b45e001 sdw_intel_process_wakeen_event drivers/soundwire/soundwire-intel SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0x5af438eb sdw_intel_enable_irq drivers/soundwire/soundwire-intel -SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0x7356fe46 sdw_intel_exit drivers/soundwire/soundwire-intel +SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0x8336b6a4 sdw_intel_startup drivers/soundwire/soundwire-intel SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0xaa52eba1 sdw_intel_thread drivers/soundwire/soundwire-intel -SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0xc48e8de9 sdw_intel_startup drivers/soundwire/soundwire-intel -SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0xec97949e sdw_intel_process_wakeen_event drivers/soundwire/soundwire-intel +SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0xc8eb15f9 sdw_intel_exit drivers/soundwire/soundwire-intel +SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0xd8ad2724 sdw_intel_probe drivers/soundwire/soundwire-intel 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 0x13c5b144 usb_stor_reset_resume drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x066c5b01 usb_stor_Bulk_transport drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x0b44366c usb_stor_CB_transport drivers/usb/storage/usb-storage USB_STORAGE EXPORT_SYMBOL_GPL 0x1bc3edc2 usb_stor_sense_invalidCDB drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x21a00998 usb_stor_CB_transport drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x48020efa usb_stor_Bulk_transport drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x535ce72f usb_stor_ctrl_transfer drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x5ca42acb usb_stor_clear_halt drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x8a16c5b2 usb_stor_CB_reset drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x94468189 usb_stor_suspend drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x98e9d7e1 usb_stor_disconnect drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x9e77aea9 usb_stor_set_xfer_buf drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x9eca3def usb_stor_transparent_scsi_command drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xaaad76dd usb_stor_bulk_srb drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xab8b9ca1 usb_stor_Bulk_reset drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xaded1cbe usb_stor_bulk_transfer_sg drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xb48f9cbd usb_stor_probe2 drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xb4f0ec04 usb_stor_probe1 drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xb7a43bee usb_stor_pre_reset drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xc51153ff fill_inquiry_response drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xcc41ef3f usb_stor_control_msg drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xd7dca388 usb_stor_bulk_transfer_buf drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xdc2899f8 usb_stor_access_xfer_buf drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xe278f88c usb_stor_adjust_quirks drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xe90bf8d5 usb_stor_host_template_init drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xeb4bd579 usb_stor_post_reset drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xfecf1a5b usb_stor_resume drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x33b91206 usb_stor_clear_halt drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x4c0b937e usb_stor_bulk_transfer_buf drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x4ca935ad usb_stor_pre_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x5007ffe0 usb_stor_bulk_srb drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x5eaf4ae7 usb_stor_host_template_init drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x7791fe2e usb_stor_control_msg drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x7a5a4a3b usb_stor_bulk_transfer_sg drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x926bfa15 usb_stor_ctrl_transfer drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x96e51ef3 usb_stor_post_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x9a74d86b usb_stor_reset_resume drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xa51e304b usb_stor_access_xfer_buf drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xa965bf80 usb_stor_CB_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xa9926ce8 usb_stor_probe1 drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xaa81fece usb_stor_resume drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xb4c9f860 usb_stor_probe2 drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xce78dbc2 usb_stor_adjust_quirks drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xd0de3800 usb_stor_set_xfer_buf drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xdb5fcedf fill_inquiry_response drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xe5dad0ac usb_stor_Bulk_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xe918bd63 usb_stor_disconnect drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xedd649d2 usb_stor_transparent_scsi_command drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xf2802378 usb_stor_suspend drivers/usb/storage/usb-storage diff -u linux-intel-iotg-5.15-5.15.0/debian.intel-iotg-5.15/abi/amd64/intel-iotg.modules linux-intel-iotg-5.15-5.15.0/debian.intel-iotg-5.15/abi/amd64/intel-iotg.modules --- linux-intel-iotg-5.15-5.15.0/debian.intel-iotg-5.15/abi/amd64/intel-iotg.modules +++ linux-intel-iotg-5.15-5.15.0/debian.intel-iotg-5.15/abi/amd64/intel-iotg.modules @@ -261,9 +261,9 @@ adv_swbutton advansys advantechwdt -adxl34x -adxl34x-i2c -adxl34x-spi +adxl345_core +adxl345_i2c +adxl345_spi adxl372 adxl372_i2c adxl372_spi @@ -1355,6 +1355,7 @@ et131x et8ek8 etas_es58x +eth-ishtp ethoc eurotechwdt evbug @@ -1610,6 +1611,7 @@ gpio-it87 gpio-janz-ttl gpio-kempld +gpio-ljca gpio-lp3943 gpio-lp873x gpio-madera @@ -1897,6 +1899,7 @@ hih6130 hinic hisi-spmi-controller +hm11b1 hmc425a hmc5843_core hmc5843_i2c @@ -1972,6 +1975,7 @@ i2c-isch i2c-ismt i2c-kempld +i2c-ljca i2c-matroxfb i2c-mlxcpld i2c-mux @@ -2064,6 +2068,7 @@ ieee802154 ieee802154_6lowpan ieee802154_socket +ieh_edac ifb ifcvf ife @@ -2139,6 +2144,9 @@ int51x1 intel-cstate intel-hid +intel-ipu6 +intel-ipu6-isys +intel-ipu6-psys intel-ish-ipc intel-ishtp intel-ishtp-hid @@ -2201,6 +2209,7 @@ intel_th_pti intel_th_sth intel_vr_nor +intel_vsc intelfb interact interrupt-cnt @@ -2564,8 +2573,6 @@ libahci libahci_platform libarc4 -libblake2s -libblake2s-generic libceph libchacha libchacha20poly1305 @@ -2597,6 +2604,7 @@ liquidio_vf lis3lv02d lis3lv02d_i2c +ljca lkkbd ll_temac llc @@ -2902,8 +2910,15 @@ mei mei-me mei-txe +mei-virtio +mei-vsc +mei_ace +mei_ace_debug +mei_csi +mei_dal mei_hdcp mei_phy +mei_pse mei_wdt melfas_mip4 memory-notifier-error-inject @@ -3454,7 +3469,10 @@ orinoco_usb oti6858 otm3225a +ov01a10 +ov01a1s ov02a10 +ov02c10 ov13858 ov2640 ov2659 @@ -3697,6 +3715,7 @@ poly1305-x86_64 poly1305_generic port100 +power_ctrl_logic powermate powr1220 ppa @@ -5017,6 +5036,7 @@ spi-dw-pci spi-gpio spi-lantiq-ssc +spi-ljca spi-lm70llp spi-loopback-test spi-mux diff -u linux-intel-iotg-5.15-5.15.0/debian.intel-iotg-5.15/abi/fwinfo linux-intel-iotg-5.15-5.15.0/debian.intel-iotg-5.15/abi/fwinfo --- linux-intel-iotg-5.15-5.15.0/debian.intel-iotg-5.15/abi/fwinfo +++ linux-intel-iotg-5.15-5.15.0/debian.intel-iotg-5.15/abi/fwinfo @@ -617,7 +617,9 @@ firmware: bnx2x/bnx2x-e2-7.13.21.0.fw firmware: brcm/bcm43xx-0.fw firmware: brcm/bcm43xx_hdr-0.fw +firmware: brcm/brcmfmac*-pcie.*.bin firmware: brcm/brcmfmac*-pcie.*.txt +firmware: brcm/brcmfmac*-pcie.txt firmware: brcm/brcmfmac*-sdio.*.bin firmware: brcm/brcmfmac*-sdio.*.txt firmware: brcm/brcmfmac43012-sdio.bin @@ -1024,6 +1026,8 @@ firmware: mellanox/mlxsw_spectrum-13.2008.2406.mfa2 firmware: mellanox/mlxsw_spectrum2-29.2008.2406.mfa2 firmware: mellanox/mlxsw_spectrum3-30.2008.2406.mfa2 +firmware: microchip/mscc_vsc8574_revb_int8051_29e8.bin +firmware: microchip/mscc_vsc8584_revb_int8051_fb48.bin firmware: mixart/miXart8.elf firmware: mixart/miXart8.xlx firmware: mixart/miXart8AES.xlx @@ -1657,6 +1661,8 @@ firmware: radeon/verde_pfp.bin firmware: radeon/verde_rlc.bin firmware: radeon/verde_smc.bin +firmware: regulatory.db +firmware: regulatory.db.p7s firmware: renesas_usb_fw.mem firmware: riptide.hex firmware: rp2.fw diff -u linux-intel-iotg-5.15-5.15.0/debian.intel-iotg-5.15/abi/version linux-intel-iotg-5.15-5.15.0/debian.intel-iotg-5.15/abi/version --- linux-intel-iotg-5.15-5.15.0/debian.intel-iotg-5.15/abi/version +++ linux-intel-iotg-5.15-5.15.0/debian.intel-iotg-5.15/abi/version @@ -1 +1 @@ -5.15.0-1005.7~20.04.1 +5.15.0-1015.20~20.04.1 diff -u linux-intel-iotg-5.15-5.15.0/debian.intel-iotg-5.15/changelog linux-intel-iotg-5.15-5.15.0/debian.intel-iotg-5.15/changelog --- linux-intel-iotg-5.15-5.15.0/debian.intel-iotg-5.15/changelog +++ linux-intel-iotg-5.15-5.15.0/debian.intel-iotg-5.15/changelog @@ -1,3 +1,2213 @@ +linux-intel-iotg-5.15 (5.15.0-1015.20~20.04.2) focal; urgency=medium + + * focal/linux-intel-iotg-5.15: 5.15.0-1015.20~20.04.2 -proposed tracker + (LP: #1983883) + + [ Ubuntu: 5.15.0-1015.20 ] + + * jammy/linux-intel-iotg: 5.15.0-1015.20 -proposed tracker (LP: #1983884) + + [ Ubuntu: 5.15.0-1014.19 ] + + * jammy/linux-intel-iotg: 5.15.0-1014.19 -proposed tracker (LP: #1983884) + * Jammy update: v5.15.46 upstream stable release (LP: #1981864) + - [Packaging] intel-iotg: Move python3-dev to build-depends + + -- Philip Cox Tue, 06 Sep 2022 10:48:33 -0400 + +linux-intel-iotg-5.15 (5.15.0-1015.20~20.04.1) focal; urgency=medium + + * focal/linux-intel-iotg-5.15: 5.15.0-1015.20~20.04.1 -proposed tracker + (LP: #1983883) + + -- Philip Cox Thu, 01 Sep 2022 14:10:24 -0400 + +linux-intel-iotg-5.15 (5.15.0-1014.18~20.04.2) focal; urgency=medium + + * focal/linux-intel-iotg-5.15: 5.15.0-1014.19~20.04.1 -proposed tracker + (LP: #1983883) + + * Jammy update: v5.15.46 upstream stable release (LP: #1981864) + - [Packaging] intel-iotg-5.15: Move python3-dev to build-depends + + -- Philip Cox Tue, 30 Aug 2022 11:22:30 -0400 + +linux-intel-iotg-5.15 (5.15.0-1014.18~20.04.1) focal; urgency=medium + + * focal/linux-intel-iotg-5.15: 5.15.0-1014.18~20.04.1 -proposed tracker + (LP: #1983883) + + * Jammy update: v5.15.44 upstream stable release (LP: #1981649) + - [Config] updateconfigs for CRYPTO_LIB_BLAKE2S + + * Add IIO sensors ID for ACPI based platform (LP: #1962674) + - [Config] updateconfigs for ADXL34x + + * Packaging resync (LP: #1786013) + - [Packaging] update variants + + [ Ubuntu: 5.15.0-1014.18 ] + + * jammy/linux-intel-iotg: 5.15.0-1014.18 -proposed tracker (LP: #1983884) + * Add IIO sensors ID for ACPI based platform (LP: #1962674) + - SAUCE: iio: accel: adxl345: Fix build errors + - [Config] updateconfigs for ADXL34x + - [Config] updateconfigs for ADXL34x + * GPIO character device v1 API not enabled in kernel (LP: #1953613) + - [Config] Enable CONFIG_GPIO_CDEV_V1 + * Jammy update: v5.15.46 upstream stable release (LP: #1981864) + - [Config] updateconfigs for IMA_TEMPLATE + * Jammy update: v5.15.44 upstream stable release (LP: #1981649) + - [Config] updateconfigs for CRYPTO_LIB_BLAKE2S + * [IOTG][EHL][ICL-D] Gstreamer media failures on Ubuntu 20.04 Desktop Alpha Image (LP: #1981971) + - SAUCE: drm/i915/gen11: Moving WAs to icl_gt_workarounds_init() + - SAUCE: (no-up) drm/i915: set enable_guc=2 for EHL, ICL, ADL-S platforms. + * [EHL] Implement PWM support for Elkhart Lake (out-of-tree patches). (LP: #1964770) + - pwm: Enable D0i3 flow for PSE IOs + * [TGL] EDAC support OOT patches (LP: #1964743) + - x86/mce: Add MCACOD code for generic I/O error + - EDAC/ieh: Add I/O device EDAC driver for Intel CPUs with IEH + - EDAC/ieh: Add I/O device EDAC support for Intel Tiger Lake-H SoC + - [Config] updateconfigs for EDAC IEH + * [iotg][22.04LTS][server][CBRD] call trace message for dwmac_intel module. (LP: #1972136) + - net: stmmac: fix dma queue left shift overflow issue + * jammy/linux: 5.15.0-47.51 -proposed tracker (LP: #1983903) + * Jammy update: v5.15.46 upstream stable release (LP: #1981864) + - UBUNTU: [Packaging] Move python3-dev to build-depends + * touchpad and touchscreen doesn't work at all on ACER Spin 5 (SP513-54N) + (LP: #1884232) + - x86/PCI: Eliminate remove_e820_regions() common subexpressions + - x86: Log resource clipping for E820 regions + - x86/PCI: Clip only host bridge windows for E820 regions + - x86/PCI: Add kernel cmdline options to use/ignore E820 reserved regions + - x86/PCI: Disable E820 reserved region clipping via quirks + - x86/PCI: Revert "x86/PCI: Clip only host bridge windows for E820 regions" + * [SRU][H/OEM-5.13/OEM-5.14/U][J/OEM-5.17/U] Fix invalid MAC address after + hotplug tbt dock (LP: #1942999) + - SAUCE: igc: wait for the MAC copy when enabled MAC passthrough + * Mass Storage Gadget driver truncates device >2TB (LP: #1981390) + - usb: gadget: storage: add support for media larger than 2T + * AMD Rembrandt: DP tunneling fails with Thunderbolt monitors (LP: #1983143) + - SAUCE: drm/amd: Fix DP Tunneling with Thunderbolt monitors + - drm/amd/display: Fix for dmub outbox notification enable + - Revert "drm/amd/display: Fix DPIA outbox timeout after S3/S4/reset" + - drm/amd/display: Reset link encoder assignments for GPU reset + - drm/amd/display: Fix DPIA outbox timeout after S3/S4/reset + - drm/amd/display: Fix new dmub notification enabling in DM + - SAUCE: thunderbolt: Add DP out resource when DP tunnel is discovered. + * Fix sub-optimal I210 network speed (LP: #1976438) + - igb: Make DMA faster when CPU is active on the PCIe link + * e1000e report hardware hang (LP: #1973104) + - e1000e: Enable GPT clock before sending message to CSME + - Revert "e1000e: Fix possible HW unit hang after an s0ix exit" + * ioam6.sh in net from ubuntu_kernel_selftests fails with 5.15 kernels in + Focal (LP: #1982930) + - selftests: net: fix IOAM test skip return code + * Additional fix for TGL + AUO panel flickering (LP: #1983297) + - Revert "UBUNTU: SAUCE: drm/i915/display/psr: Fix flicker on TGL + AUO panel" + - drm/i915/display: Fix sel fetch plane offset calculation + - drm/i915: Nuke ORIGIN_GTT + - drm/i915/display: Drop PSR support from HSW and BDW + - drm/i915/display/psr: Handle plane and pipe restrictions at every page flip + - drm/i915/display/psr: Do full fetch when handling multi-planar formats + - drm/i915/display: Drop unnecessary frontbuffer flushes + - drm/i915/display: Handle frontbuffer rendering when PSR2 selective fetch is + enabled + - drm/i915/display: Fix glitches when moving cursor with PSR2 selective fetch + enabled + - SAUCE: drm/i915/display/psr: Reinstate fix for TGL + AUO panel flicker + * AMD Yellow Carp DMCUB fw update for s0i3 B0 fixes (LP: #1957026) + - drm/amd/display: Optimize bandwidth on following fast update + - drm/amd/display: Fix surface optimization regression on Carrizo + - drm/amd/display: Reset DMCUB before HW init + * GPIO character device v1 API not enabled in kernel (LP: #1953613) + - [Config] Enable CONFIG_GPIO_CDEV_V1 + * intel_iommu: Fix enable intel_iommu, Ubuntu 22.04 installation crashes + (LP: #1982104) + - iommu/vt-d: Fix RID2PASID setup/teardown failure + * Headset mic with Cirrus logic codec doesn't work (LP: #1972815) + - ASoC: cs42l42: Move CS42L42 register descriptions to general include + - ALSA: hda/cs8409: Use general cs42l42 include in cs8409 hda driver + - ALSA: hda/cs8409: Support manual mode detection for CS42L42 + * Failed to resume from S3 blocked by atlantic driver[1d6a:94c0] + (LP: #1981950) + - net: atlantic: remove deep parameter on suspend/resume functions + - net: atlantic: remove aq_nic_deinit() when resume + * Make cm32181 sensor work after system suspend (LP: #1981773) + - iio: light: cm32181: Add PM support + * Clear PCI errors left from BIOS (LP: #1981173) + - PCI: Clear PCI_STATUS when setting up device + * Fix AMDGPU blank screen when Type-C DP alt is in use (LP: #1980060) + - drm/amd/display: Query DMCUB for dp alt status + - drm/amd/display: Add version check before using DP alt query interface + * Fix WD22TB4 suspend and resume, two external monitor can not output + (LP: #1979267) + - drm/dp/mst: Read the extended DPCD capabilities during system resume + * [SRU] bcache deadlock during read IO in writeback mode (LP: #1980925) + - bcache: memset on stack variables in bch_btree_check() and + bch_sectors_dirty_init() + * Audio mute key (f5) LED and Mic mute key (f8) LED are no function on HP + 440/450/640/650 G9 (LP: #1982716) + - ALSA: hda/realtek: fix mute/micmute LEDs for HP machines + * Enable WiFi hotspot feature for MediaTek MT7921 (LP: #1979173) + - mt76: mt7921: Add AP mode support + - mt76: mt7921: not support beacon offload disable command + - mt76: mt7921: fix command timeout in AP stop period + * Fix drm/amd/pm: enable ASPM by default (LP: #1966680) + - drm/amd: Refactor `amdgpu_aspm` to be evaluated per device + - drm/amd: Use amdgpu_device_should_use_aspm on navi umd pstate switching + - drm/amdgpu: vi: disable ASPM on Intel Alder Lake based systems + * Power cycle USB ports on shutdown/reboot (LP: #1976503) + - xhci: turn off port power in shutdown + * Jammy update: v5.15.46 upstream stable release (LP: #1981864) + - binfmt_flat: do not stop relocating GOT entries prematurely on riscv + - parisc/stifb: Implement fb_is_primary_device() + - parisc/stifb: Keep track of hardware path of graphics card + - RISC-V: Mark IORESOURCE_EXCLUSIVE for reserved mem instead of + IORESOURCE_BUSY + - riscv: Initialize thread pointer before calling C functions + - riscv: Fix irq_work when SMP is disabled + - riscv: Wire up memfd_secret in UAPI header + - riscv: Move alternative length validation into subsection + - ALSA: hda/realtek - Add new type for ALC245 + - ALSA: hda/realtek: Enable 4-speaker output for Dell XPS 15 9520 laptop + - ALSA: hda/realtek - Fix microphone noise on ASUS TUF B550M-PLUS + - ALSA: usb-audio: Cancel pending work at closing a MIDI substream + - USB: serial: option: add Quectel BG95 modem + - USB: new quirk for Dell Gen 2 devices + - usb: isp1760: Fix out-of-bounds array access + - usb: dwc3: gadget: Move null pinter check to proper place + - usb: core: hcd: Add support for deferring roothub registration + - fs/ntfs3: Update valid size if -EIOCBQUEUED + - fs/ntfs3: Fix fiemap + fix shrink file size (to remove preallocated space) + - fs/ntfs3: Keep preallocated only if option prealloc enabled + - fs/ntfs3: Check new size for limits + - fs/ntfs3: In function ntfs_set_acl_ex do not change inode->i_mode if called + from function ntfs_init_acl + - fs/ntfs3: Fix some memory leaks in an error handling path of 'log_replay()' + - fs/ntfs3: Update i_ctime when xattr is added + - fs/ntfs3: Restore ntfs_xattr_get_acl and ntfs_xattr_set_acl functions + - cifs: fix potential double free during failed mount + - cifs: when extending a file with falloc we should make files not-sparse + - xhci: Allow host runtime PM as default for Intel Alder Lake N xHCI + - platform/x86: intel-hid: fix _DSM function index handling + - x86/MCE/AMD: Fix memory leak when threshold_create_bank() fails + - perf/x86/intel: Fix event constraints for ICL + - x86/kexec: fix memory leak of elf header buffer + - x86/sgx: Set active memcg prior to shmem allocation + - ptrace/um: Replace PT_DTRACE with TIF_SINGLESTEP + - ptrace/xtensa: Replace PT_SINGLESTEP with TIF_SINGLESTEP + - ptrace: Reimplement PTRACE_KILL by always sending SIGKILL + - btrfs: add "0x" prefix for unsupported optional features + - btrfs: return correct error number for __extent_writepage_io() + - btrfs: repair super block num_devices automatically + - btrfs: fix the error handling for submit_extent_page() for + btrfs_do_readpage() + - iommu/vt-d: Add RPLS to quirk list to skip TE disabling + - drm/vmwgfx: validate the screen formats + - drm/virtio: fix NULL pointer dereference in virtio_gpu_conn_get_modes + - selftests/bpf: Fix vfs_link kprobe definition + - selftests/bpf: Fix parsing of prog types in UAPI hdr for bpftool sync + - mwifiex: add mutex lock for call in mwifiex_dfs_chan_sw_work_queue + - b43legacy: Fix assigning negative value to unsigned variable + - b43: Fix assigning negative value to unsigned variable + - ipw2x00: Fix potential NULL dereference in libipw_xmit() + - ipv6: fix locking issues with loops over idev->addr_list + - fbcon: Consistently protect deferred_takeover with console_lock() + - x86/platform/uv: Update TSC sync state for UV5 + - ACPICA: Avoid cache flush inside virtual machines + - mac80211: minstrel_ht: fix where rate stats are stored (fixes debugfs + output) + - drm/komeda: return early if drm_universal_plane_init() fails. + - drm/amd/display: Disabling Z10 on DCN31 + - rcu-tasks: Fix race in schedule and flush work + - rcu: Make TASKS_RUDE_RCU select IRQ_WORK + - sfc: ef10: Fix assigning negative value to unsigned variable + - ALSA: jack: Access input_dev under mutex + - spi: spi-rspi: Remove setting {src,dst}_{addr,addr_width} based on DMA + direction + - tools/power turbostat: fix ICX DRAM power numbers + - scsi: lpfc: Move cfg_log_verbose check before calling lpfc_dmp_dbg() + - scsi: lpfc: Fix SCSI I/O completion and abort handler deadlock + - scsi: lpfc: Fix call trace observed during I/O with CMF enabled + - cpuidle: PSCI: Improve support for suspend-to-RAM for PSCI OSI mode + - drm/amd/pm: fix double free in si_parse_power_table() + - ASoC: rsnd: care default case on rsnd_ssiu_busif_err_status_clear() + - ASoC: rsnd: care return value from rsnd_node_fixed_index() + - ath9k: fix QCA9561 PA bias level + - media: venus: hfi: avoid null dereference in deinit + - media: pci: cx23885: Fix the error handling in cx23885_initdev() + - media: cx25821: Fix the warning when removing the module + - md/bitmap: don't set sb values if can't pass sanity check + - mmc: jz4740: Apply DMA engine limits to maximum segment size + - drivers: mmc: sdhci_am654: Add the quirk to set TESTCD bit + - scsi: megaraid: Fix error check return value of register_chrdev() + - drm/amdgpu/sdma: Fix incorrect calculations of the wptr of the doorbells + - scsi: ufs: Use pm_runtime_resume_and_get() instead of pm_runtime_get_sync() + - scsi: lpfc: Fix resource leak in lpfc_sli4_send_seq_to_ulp() + - ath11k: disable spectral scan during spectral deinit + - ASoC: Intel: bytcr_rt5640: Add quirk for the HP Pro Tablet 408 + - drm/plane: Move range check for format_count earlier + - drm/amd/pm: fix the compile warning + - ath10k: skip ath10k_halt during suspend for driver state RESTARTING + - arm64: compat: Do not treat syscall number as ESR_ELx for a bad syscall + - drm: msm: fix error check return value of irq_of_parse_and_map() + - scsi: target: tcmu: Fix possible data corruption + - ipv6: Don't send rs packets to the interface of ARPHRD_TUNNEL + - net/mlx5: fs, delete the FTE when there are no rules attached to it + - ASoC: dapm: Don't fold register value changes into notifications + - mlxsw: spectrum_dcb: Do not warn about priority changes + - mlxsw: Treat LLDP packets as control + - drm/amdgpu/psp: move PSP memory alloc from hw_init to sw_init + - drm/amdgpu/ucode: Remove firmware load type check in amdgpu_ucode_free_bo + - regulator: mt6315: Enforce regulator-compatible, not name + - HID: bigben: fix slab-out-of-bounds Write in bigben_probe + - of: Support more than one crash kernel regions for kexec -s + - ASoC: tscs454: Add endianness flag in snd_soc_component_driver + - scsi: lpfc: Alter FPIN stat accounting logic + - net: remove two BUG() from skb_checksum_help() + - s390/preempt: disable __preempt_count_add() optimization for + PROFILE_ALL_BRANCHES + - perf/amd/ibs: Cascade pmu init functions' return value + - sched/core: Avoid obvious double update_rq_clock warning + - spi: stm32-qspi: Fix wait_cmd timeout in APM mode + - dma-debug: change allocation mode from GFP_NOWAIT to GFP_ATIOMIC + - ACPI: PM: Block ASUS B1400CEAE from suspend to idle by default + - ipmi:ssif: Check for NULL msg when handling events and messages + - ipmi: Fix pr_fmt to avoid compilation issues + - rtlwifi: Use pr_warn instead of WARN_ONCE + - mt76: mt7921: accept rx frames with non-standard VHT MCS10-11 + - mt76: fix encap offload ethernet type check + - media: rga: fix possible memory leak in rga_probe + - media: coda: limit frame interval enumeration to supported encoder frame + sizes + - media: hantro: HEVC: unconditionnaly set pps_{cb/cr}_qp_offset values + - media: ccs-core.c: fix failure to call clk_disable_unprepare + - media: imon: reorganize serialization + - media: cec-adap.c: fix is_configuring state + - usbnet: Run unregister_netdev() before unbind() again + - openrisc: start CPU timer early in boot + - nvme-pci: fix a NULL pointer dereference in nvme_alloc_admin_tags + - ASoC: rt5645: Fix errorenous cleanup order + - nbd: Fix hung on disconnect request if socket is closed before + - drm/amd/pm: update smartshift powerboost calc for smu12 + - drm/amd/pm: update smartshift powerboost calc for smu13 + - net: phy: micrel: Allow probing without .driver_data + - media: exynos4-is: Fix compile warning + - media: hantro: Stop using H.264 parameter pic_num + - ASoC: max98357a: remove dependency on GPIOLIB + - ASoC: rt1015p: remove dependency on GPIOLIB + - ACPI: CPPC: Assume no transition latency if no PCCT + - nvme: set non-mdts limits in nvme_scan_work + - can: mcp251xfd: silence clang's -Wunaligned-access warning + - x86/microcode: Add explicit CPU vendor dependency + - net: ipa: ignore endianness if there is no header + - m68k: atari: Make Atari ROM port I/O write macros return void + - rxrpc: Return an error to sendmsg if call failed + - rxrpc, afs: Fix selection of abort codes + - afs: Adjust ACK interpretation to try and cope with NAT + - eth: tg3: silence the GCC 12 array-bounds warning + - char: tpm: cr50_i2c: Suppress duplicated error message in .remove() + - selftests/bpf: fix btf_dump/btf_dump due to recent clang change + - gfs2: use i_lock spin_lock for inode qadata + - scsi: target: tcmu: Avoid holding XArray lock when calling lock_page + - IB/rdmavt: add missing locks in rvt_ruc_loopback + - ARM: dts: ox820: align interrupt controller node name with dtschema + - ARM: dts: socfpga: align interrupt controller node name with dtschema + - ARM: dts: s5pv210: align DMA channels with dtschema + - arm64: dts: qcom: msm8994: Fix the cont_splash_mem address + - arm64: dts: qcom: msm8994: Fix BLSP[12]_DMA channels count + - PM / devfreq: rk3399_dmc: Disable edev on remove() + - crypto: ccree - use fine grained DMA mapping dir + - soc: ti: ti_sci_pm_domains: Check for null return of devm_kcalloc + - fs: jfs: fix possible NULL pointer dereference in dbFree() + - arm64: dts: qcom: sdm845-xiaomi-beryllium: fix typo in panel's vddio-supply + property + - ALSA: usb-audio: Add quirk bits for enabling/disabling generic implicit fb + - ALSA: usb-audio: Move generic implicit fb quirk entries into quirks.c + - ARM: OMAP1: clock: Fix UART rate reporting algorithm + - powerpc/fadump: Fix fadump to work with a different endian capture kernel + - fat: add ratelimit to fat*_ent_bread() + - pinctrl: renesas: rzn1: Fix possible null-ptr-deref in + sh_pfc_map_resources() + - ARM: versatile: Add missing of_node_put in dcscb_init + - ARM: dts: exynos: add atmel,24c128 fallback to Samsung EEPROM + - ARM: hisi: Add missing of_node_put after of_find_compatible_node + - cpufreq: Avoid unnecessary frequency updates due to mismatch + - powerpc/rtas: Keep MSR[RI] set when calling RTAS + - PCI: Avoid pci_dev_lock() AB/BA deadlock with sriov_numvfs_store() + - KVM: PPC: Book3S HV Nested: L2 LPCR should inherit L1 LPES setting + - alpha: fix alloc_zeroed_user_highpage_movable() + - tracing: incorrect isolate_mote_t cast in mm_vmscan_lru_isolate + - powerpc/powernv/vas: Assign real address to rx_fifo in vas_rx_win_attr + - powerpc/xics: fix refcount leak in icp_opal_init() + - powerpc/powernv: fix missing of_node_put in uv_init() + - macintosh/via-pmu: Fix build failure when CONFIG_INPUT is disabled + - powerpc/iommu: Add missing of_node_put in iommu_init_early_dart + - smb3: check for null tcon + - RDMA/hfi1: Prevent panic when SDMA is disabled + - Input: gpio-keys - cancel delayed work only in case of GPIO + - drm: fix EDID struct for old ARM OABI format + - drm/bridge_connector: enable HPD by default if supported + - dt-bindings: display: sitronix, st7735r: Fix backlight in example + - drm/vmwgfx: Fix an invalid read + - ath11k: acquire ab->base_lock in unassign when finding the peer by addr + - drm: bridge: it66121: Fix the register page length + - ath9k: fix ar9003_get_eepmisc + - drm/edid: fix invalid EDID extension block filtering + - drm/bridge: adv7511: clean up CEC adapter when probe fails + - drm: bridge: icn6211: Fix register layout + - drm: bridge: icn6211: Fix HFP_HSW_HBP_HI and HFP_MIN handling + - mtd: spinand: gigadevice: fix Quad IO for GD5F1GQ5UExxG + - spi: qcom-qspi: Add minItems to interconnect-names + - ASoC: mediatek: Fix error handling in mt8173_max98090_dev_probe + - ASoC: mediatek: Fix missing of_node_put in mt2701_wm8960_machine_probe + - x86/delay: Fix the wrong asm constraint in delay_loop() + - drm/vc4: hvs: Fix frame count register readout + - drm/mediatek: Fix mtk_cec_mask() + - drm/vc4: hvs: Reset muxes at probe time + - drm/vc4: txp: Don't set TXP_VSTART_AT_EOF + - drm/vc4: txp: Force alpha to be 0xff if it's disabled + - libbpf: Don't error out on CO-RE relos for overriden weak subprogs + - x86/PCI: Fix ALi M1487 (IBC) PIRQ router link value interpretation + - mptcp: reset the packet scheduler on PRIO change + - nl80211: show SSID for P2P_GO interfaces + - drm/komeda: Fix an undefined behavior bug in komeda_plane_add() + - drm: mali-dp: potential dereference of null pointer + - spi: spi-ti-qspi: Fix return value handling of wait_for_completion_timeout + - scftorture: Fix distribution of short handler delays + - net: dsa: mt7530: 1G can also support 1000BASE-X link mode + - ixp4xx_eth: fix error check return value of platform_get_irq() + - NFC: NULL out the dev->rfkill to prevent UAF + - efi: Add missing prototype for efi_capsule_setup_info + - device property: Check fwnode->secondary when finding properties + - device property: Allow error pointer to be passed to fwnode APIs + - target: remove an incorrect unmap zeroes data deduction + - drbd: fix duplicate array initializer + - EDAC/dmc520: Don't print an error for each unconfigured interrupt line + - mtd: rawnand: denali: Use managed device resources + - HID: hid-led: fix maximum brightness for Dream Cheeky + - HID: elan: Fix potential double free in elan_input_configured + - drm/bridge: Fix error handling in analogix_dp_probe + - regulator: da9121: Fix uninit-value in da9121_assign_chip_model() + - drm/mediatek: dpi: Use mt8183 output formats for mt8192 + - signal: Deliver SIGTRAP on perf event asynchronously if blocked + - sched/fair: Fix cfs_rq_clock_pelt() for throttled cfs_rq + - sched/psi: report zeroes for CPU full at the system level + - spi: img-spfi: Fix pm_runtime_get_sync() error checking + - cpufreq: Fix possible race in cpufreq online error path + - printk: use atomic updates for klogd work + - printk: add missing memory barrier to wake_up_klogd() + - printk: wake waiters for safe and NMI contexts + - ath9k_htc: fix potential out of bounds access with invalid + rxstatus->rs_keyix + - media: i2c: max9286: Use dev_err_probe() helper + - media: i2c: max9286: Use "maxim,gpio-poc" property + - media: i2c: max9286: fix kernel oops when removing module + - media: hantro: Empty encoder capture buffers by default + - drm/panel: simple: Add missing bus flags for Innolux G070Y2-L01 + - ALSA: pcm: Check for null pointer of pointer substream before dereferencing + it + - mtdblock: warn if opened on NAND + - inotify: show inotify mask flags in proc fdinfo + - fsnotify: fix wrong lockdep annotations + - spi: rockchip: Stop spi slave dma receiver when cs inactive + - spi: rockchip: Preset cs-high and clk polarity in setup progress + - spi: rockchip: fix missing error on unsupported SPI_CS_HIGH + - of: overlay: do not break notify on NOTIFY_{OK|STOP} + - selftests/damon: add damon to selftests root Makefile + - drm/msm/dp: Modify prototype of encoder based API + - drm/msm/hdmi: switch to drm_bridge_connector + - drm/msm/dpu: adjust display_v_end for eDP and DP + - scsi: iscsi: Fix harmless double shift bug + - scsi: ufs: qcom: Fix ufs_qcom_resume() + - scsi: ufs: core: Exclude UECxx from SFR dump list + - drm/v3d: Fix null pointer dereference of pointer perfmon + - selftests/resctrl: Fix null pointer dereference on open failed + - libbpf: Fix logic for finding matching program for CO-RE relocation + - mtd: spi-nor: core: Check written SR value in + spi_nor_write_16bit_sr_and_check() + - x86/pm: Fix false positive kmemleak report in msr_build_context() + - mtd: rawnand: cadence: fix possible null-ptr-deref in + cadence_nand_dt_probe() + - mtd: rawnand: intel: fix possible null-ptr-deref in ebu_nand_probe() + - x86/speculation: Add missing prototype for unpriv_ebpf_notify() + - ASoC: rk3328: fix disabling mclk on pclk probe failure + - perf tools: Add missing headers needed by util/data.h + - drm/msm/disp/dpu1: set vbif hw config to NULL to avoid use after memory free + during pm runtime resume + - drm/msm/dp: stop event kernel thread when DP unbind + - drm/msm/dp: fix error check return value of irq_of_parse_and_map() + - drm/msm/dp: reset DP controller before transmit phy test pattern + - drm/msm/dp: do not stop transmitting phy test pattern during DP phy + compliance test + - drm/msm/dsi: fix error checks and return values for DSI xmit functions + - drm/msm/hdmi: check return value after calling + platform_get_resource_byname() + - drm/msm/hdmi: fix error check return value of irq_of_parse_and_map() + - drm/msm: add missing include to msm_drv.c + - drm/panel: panel-simple: Fix proper bpc for AM-1280800N3TZQW-T00H + - kunit: fix debugfs code to use enum kunit_status, not bool + - drm/rockchip: vop: fix possible null-ptr-deref in vop_bind() + - spi: cadence-quadspi: fix Direct Access Mode disable for SoCFPGA + - [Packaging] add python3-dev as build dependency + - perf tools: Use Python devtools for version autodetection rather than + runtime + - virtio_blk: fix the discard_granularity and discard_alignment queue limits + - nl80211: don't hold RTNL in color change request + - x86: Fix return value of __setup handlers + - irqchip/exiu: Fix acknowledgment of edge triggered interrupts + - irqchip/aspeed-i2c-ic: Fix irq_of_parse_and_map() return value + - irqchip/aspeed-scu-ic: Fix irq_of_parse_and_map() return value + - x86/mm: Cleanup the control_va_addr_alignment() __setup handler + - arm64: fix types in copy_highpage() + - regulator: core: Fix enable_count imbalance with EXCLUSIVE_GET + - drm/msm/dsi: fix address for second DSI PHY on SDM660 + - drm/msm/dp: fix event thread stuck in wait_event after kthread_stop() + - drm/msm/mdp5: Return error code in mdp5_pipe_release when deadlock is + detected + - drm/msm/mdp5: Return error code in mdp5_mixer_release when deadlock is + detected + - drm/msm: return an error pointer in msm_gem_prime_get_sg_table() + - media: uvcvideo: Fix missing check to determine if element is found in list + - arm64: stackleak: fix current_top_of_stack() + - iomap: iomap_write_failed fix + - spi: spi-fsl-qspi: check return value after calling + platform_get_resource_byname() + - Revert "cpufreq: Fix possible race in cpufreq online error path" + - regulator: qcom_smd: Fix up PM8950 regulator configuration + - samples: bpf: Don't fail for a missing VMLINUX_BTF when VMLINUX_H is + provided + - perf/amd/ibs: Use interrupt regs ip for stack unwinding + - ath11k: Don't check arvif->is_started before sending management frames + - wilc1000: fix crash observed in AP mode with cfg80211_register_netdevice() + - HID: amd_sfh: Modify the bus name + - HID: amd_sfh: Modify the hid name + - ASoC: fsl: Use dev_err_probe() helper + - ASoC: fsl: Fix refcount leak in imx_sgtl5000_probe + - ASoC: imx-hdmi: Fix refcount leak in imx_hdmi_probe + - ASoC: mxs-saif: Fix refcount leak in mxs_saif_probe + - regulator: pfuze100: Fix refcount leak in pfuze_parse_regulators_dt + - dma-direct: factor out a helper for DMA_ATTR_NO_KERNEL_MAPPING allocations + - dma-direct: don't fail on highmem CMA pages in dma_direct_alloc_pages + - ASoC: samsung: Use dev_err_probe() helper + - ASoC: samsung: Fix refcount leak in aries_audio_probe + - block: Fix the bio.bi_opf comment + - kselftest/cgroup: fix test_stress.sh to use OUTPUT dir + - scripts/faddr2line: Fix overlapping text section failures + - media: aspeed: Fix an error handling path in aspeed_video_probe() + - media: exynos4-is: Fix PM disable depth imbalance in fimc_is_probe + - mt76: mt7921: Fix the error handling path of mt7921_pci_probe() + - mt76: do not attempt to reorder received 802.3 packets without agg session + - media: st-delta: Fix PM disable depth imbalance in delta_probe + - media: atmel: atmel-isc: Fix PM disable depth imbalance in atmel_isc_probe + - media: i2c: rdacm2x: properly set subdev entity function + - media: exynos4-is: Change clk_disable to clk_disable_unprepare + - media: pvrusb2: fix array-index-out-of-bounds in pvr2_i2c_core_init + - media: vsp1: Fix offset calculation for plane cropping + - media: atmel: atmel-sama5d2-isc: fix wrong mask in YUYV format check + - media: hantro: HEVC: Fix tile info buffer value computation + - Bluetooth: fix dangling sco_conn and use-after-free in sco_sock_timeout + - Bluetooth: use hdev lock in activate_scan for hci_is_adv_monitoring + - Bluetooth: use hdev lock for accept_list and reject_list in conn req + - nvme: set dma alignment to dword + - m68k: math-emu: Fix dependencies of math emulation support + - sctp: read sk->sk_bound_dev_if once in sctp_rcv() + - net: hinic: add missing destroy_workqueue in hinic_pf_to_mgmt_init + - ASoC: ti: j721e-evm: Fix refcount leak in j721e_soc_probe_* + - kselftest/arm64: bti: force static linking + - media: ov7670: remove ov7670_power_off from ov7670_remove + - media: i2c: ov5648: fix wrong pointer passed to IS_ERR() and PTR_ERR() + - media: staging: media: rkvdec: Make use of the helper function + devm_platform_ioremap_resource() + - media: rkvdec: h264: Fix dpb_valid implementation + - media: rkvdec: h264: Fix bit depth wrap in pps packet + - regulator: scmi: Fix refcount leak in scmi_regulator_probe + - ext4: reject the 'commit' option on ext2 filesystems + - drm/msm/a6xx: Fix refcount leak in a6xx_gpu_init + - drm: msm: fix possible memory leak in mdp5_crtc_cursor_set() + - x86/sev: Annotate stack change in the #VC handler + - drm/msm: don't free the IRQ if it was not requested + - selftests/bpf: Add missed ima_setup.sh in Makefile + - drm/msm/dpu: handle pm_runtime_get_sync() errors in bind path + - drm/i915: Fix CFI violation with show_dynamic_id() + - thermal/drivers/bcm2711: Don't clamp temperature at zero + - thermal/drivers/broadcom: Fix potential NULL dereference in sr_thermal_probe + - thermal/core: Fix memory leak in __thermal_cooling_device_register() + - thermal/drivers/imx_sc_thermal: Fix refcount leak in imx_sc_thermal_probe + - bfq: Relax waker detection for shared queues + - bfq: Allow current waker to defend against a tentative one + - ASoC: wm2000: fix missing clk_disable_unprepare() on error in + wm2000_anc_transition() + - PM: domains: Fix initialization of genpd's next_wakeup + - net: macb: Fix PTP one step sync support + - NFC: hci: fix sleep in atomic context bugs in nfc_hci_hcp_message_tx + - ASoC: max98090: Move check for invalid values before casting in + max98090_put_enab_tlv() + - net: stmmac: selftests: Use kcalloc() instead of kzalloc() + - net: stmmac: fix out-of-bounds access in a selftest + - hv_netvsc: Fix potential dereference of NULL pointer + - hwmon: (pmbus) Check PEC support before reading other registers + - rxrpc: Fix listen() setting the bar too high for the prealloc rings + - rxrpc: Don't try to resend the request if we're receiving the reply + - rxrpc: Fix overlapping ACK accounting + - rxrpc: Don't let ack.previousPacket regress + - rxrpc: Fix decision on when to generate an IDLE ACK + - net: huawei: hinic: Use devm_kcalloc() instead of devm_kzalloc() + - hinic: Avoid some over memory allocation + - net: dsa: restrict SMSC_LAN9303_I2C kconfig + - net/smc: postpone sk_refcnt increment in connect() + - dma-direct: factor out dma_set_{de,en}crypted helpers + - dma-direct: don't call dma_set_decrypted for remapped allocations + - dma-direct: always leak memory that can't be re-encrypted + - dma-direct: don't over-decrypt memory + - arm64: dts: rockchip: Move drive-impedance-ohm to emmc phy on rk3399 + - arm64: dts: mt8192: Fix nor_flash status disable typo + - memory: samsung: exynos5422-dmc: Avoid some over memory allocation + - ARM: dts: BCM5301X: update CRU block description + - ARM: dts: BCM5301X: Update pin controller node name + - ARM: dts: suniv: F1C100: fix watchdog compatible + - soc: qcom: smp2p: Fix missing of_node_put() in smp2p_parse_ipc + - soc: qcom: smsm: Fix missing of_node_put() in smsm_parse_ipc + - PCI: cadence: Fix find_first_zero_bit() limit + - PCI: rockchip: Fix find_first_zero_bit() limit + - PCI: mediatek: Fix refcount leak in mtk_pcie_subsys_powerup() + - PCI: dwc: Fix setting error return on MSI DMA mapping failure + - ARM: dts: ci4x10: Adapt to changes in imx6qdl.dtsi regarding fec clocks + - soc: qcom: llcc: Add MODULE_DEVICE_TABLE() + - KVM: nVMX: Leave most VM-Exit info fields unmodified on failed VM-Entry + - KVM: nVMX: Clear IDT vectoring on nested VM-Exit for double/triple fault + - crypto: qat - set CIPHER capability for QAT GEN2 + - crypto: qat - set COMPRESSION capability for QAT GEN2 + - crypto: qat - set CIPHER capability for DH895XCC + - crypto: qat - set COMPRESSION capability for DH895XCC + - platform/chrome: cros_ec: fix error handling in cros_ec_register() + - ARM: dts: imx6dl-colibri: Fix I2C pinmuxing + - platform/chrome: Re-introduce cros_ec_cmd_xfer and use it for ioctls + - can: xilinx_can: mark bit timing constants as const + - ARM: dts: stm32: Fix PHY post-reset delay on Avenger96 + - ARM: dts: bcm2835-rpi-zero-w: Fix GPIO line name for Wifi/BT + - ARM: dts: bcm2837-rpi-cm3-io3: Fix GPIO line names for SMPS I2C + - ARM: dts: bcm2837-rpi-3-b-plus: Fix GPIO line name of power LED + - ARM: dts: bcm2835-rpi-b: Fix GPIO line names + - misc: ocxl: fix possible double free in ocxl_file_register_afu + - crypto: marvell/cesa - ECB does not IV + - gpiolib: of: Introduce hook for missing gpio-ranges + - pinctrl: bcm2835: implement hook for missing gpio-ranges + - arm: mediatek: select arch timer for mt7629 + - pinctrl/rockchip: support deferring other gpio params + - pinctrl: mediatek: mt8195: enable driver on mtk platforms + - arm64: dts: qcom: qrb5165-rb5: Fix can-clock node name + - Drivers: hv: vmbus: Fix handling of messages with transaction ID of zero + - powerpc/fadump: fix PT_LOAD segment for boot memory area + - mfd: ipaq-micro: Fix error check return value of platform_get_irq() + - scsi: fcoe: Fix Wstringop-overflow warnings in fcoe_wwn_from_mac() + - soc: bcm: Check for NULL return of devm_kzalloc() + - arm64: dts: ti: k3-am64-mcu: remove incorrect UART base clock rates + - ASoC: sh: rz-ssi: Check return value of pm_runtime_resume_and_get() + - ASoC: sh: rz-ssi: Propagate error codes returned from + platform_get_irq_byname() + - ASoC: sh: rz-ssi: Release the DMA channels in rz_ssi_probe() error path + - firmware: arm_scmi: Fix list protocols enumeration in the base protocol + - nvdimm: Fix firmware activation deadlock scenarios + - nvdimm: Allow overwrite in the presence of disabled dimms + - pinctrl: mvebu: Fix irq_of_parse_and_map() return value + - drivers/base/node.c: fix compaction sysfs file leak + - dax: fix cache flush on PMD-mapped pages + - drivers/base/memory: fix an unlikely reference counting issue in + __add_memory_block() + - firmware: arm_ffa: Fix uuid parameter to ffa_partition_probe + - firmware: arm_ffa: Remove incorrect assignment of driver_data + - list: introduce list_is_head() helper and re-use it in list.h + - list: fix a data-race around ep->rdllist + - drm/msm/dpu: fix error check return value of irq_of_parse_and_map() + - powerpc/8xx: export 'cpm_setbrg' for modules + - pinctrl: renesas: r8a779a0: Fix GPIO function on I2C-capable pins + - pinctrl: renesas: core: Fix possible null-ptr-deref in + sh_pfc_map_resources() + - powerpc/idle: Fix return value of __setup() handler + - powerpc/4xx/cpm: Fix return value of __setup() handler + - RDMA/hns: Add the detection for CMDQ status in the device initialization + process + - arm64: dts: marvell: espressobin-ultra: fix SPI-NOR config + - arm64: dts: marvell: espressobin-ultra: enable front USB3 port + - ASoC: atmel-pdmic: Remove endianness flag on pdmic component + - ASoC: atmel-classd: Remove endianness flag on class d component + - proc: fix dentry/inode overinstantiating under /proc/${pid}/net + - ipc/mqueue: use get_tree_nodev() in mqueue_get_tree() + - PCI: imx6: Fix PERST# start-up sequence + - tty: fix deadlock caused by calling printk() under tty_port->lock + - crypto: sun8i-ss - rework handling of IV + - crypto: sun8i-ss - handle zero sized sg + - crypto: cryptd - Protect per-CPU resource by disabling BH. + - ARM: dts: at91: sama7g5: remove interrupt-parent from gic node + - hugetlbfs: fix hugetlbfs_statfs() locking + - Input: sparcspkr - fix refcount leak in bbc_beep_probe + - PCI/AER: Clear MULTI_ERR_COR/UNCOR_RCV bits + - PCI: microchip: Fix potential race in interrupt handling + - hwrng: omap3-rom - fix using wrong clk_disable() in + omap_rom_rng_runtime_resume() + - powerpc/64: Only WARN if __pa()/__va() called with bad addresses + - powerpc/perf: Fix the threshold compare group constraint for power10 + - powerpc/perf: Fix the threshold compare group constraint for power9 + - macintosh: via-pmu and via-cuda need RTC_LIB + - powerpc/xive: Add some error handling code to 'xive_spapr_init()' + - powerpc/xive: Fix refcount leak in xive_spapr_init + - powerpc/fsl_rio: Fix refcount leak in fsl_rio_setup + - mfd: davinci_voicecodec: Fix possible null-ptr-deref davinci_vc_probe() + - nfsd: destroy percpu stats counters after reply cache shutdown + - mailbox: forward the hrtimer if not queued and under a lock + - RDMA/hfi1: Prevent use of lock before it is initialized + - KVM: LAPIC: Drop pending LAPIC timer injection when canceling the timer + - Input: stmfts - do not leave device disabled in stmfts_input_open + - OPP: call of_node_put() on error path in _bandwidth_supported() + - f2fs: support fault injection for dquot_initialize() + - f2fs: fix to do sanity check on inline_dots inode + - f2fs: fix dereference of stale list iterator after loop body + - iommu/amd: Enable swiotlb in all cases + - iommu/mediatek: Fix 2 HW sharing pgtable issue + - iommu/mediatek: Add list_del in mtk_iommu_remove + - iommu/mediatek: Remove clk_disable in mtk_iommu_remove + - iommu/mediatek: Add mutex for m4u_group and m4u_dom in data + - i2c: at91: use dma safe buffers + - cpufreq: mediatek: Use module_init and add module_exit + - cpufreq: mediatek: Unregister platform device on exit + - iommu/arm-smmu-v3-sva: Fix mm use-after-free + - MIPS: Loongson: Use hwmon_device_register_with_groups() to register hwmon + - iommu/mediatek: Fix NULL pointer dereference when printing dev_name + - i2c: at91: Initialize dma_buf in at91_twi_xfer() + - dmaengine: idxd: Fix the error handling path in idxd_cdev_register() + - NFS: Do not report EINTR/ERESTARTSYS as mapping errors + - NFS: fsync() should report filesystem errors over EINTR/ERESTARTSYS + - NFS: Don't report ENOSPC write errors twice + - NFS: Do not report flush errors in nfs_write_end() + - NFS: Don't report errors from nfs_pageio_complete() more than once + - NFSv4/pNFS: Do not fail I/O when we fail to allocate the pNFS layout + - NFS: Further fixes to the writeback error handling + - video: fbdev: clcdfb: Fix refcount leak in clcdfb_of_vram_setup + - dmaengine: stm32-mdma: remove GISR1 register + - dmaengine: stm32-mdma: fix chan initialization in stm32_mdma_irq_handler() + - iommu/amd: Increase timeout waiting for GA log enablement + - i2c: npcm: Fix timeout calculation + - i2c: npcm: Correct register access width + - i2c: npcm: Handle spurious interrupts + - i2c: rcar: fix PM ref counts in probe error paths + - perf build: Fix btf__load_from_kernel_by_id() feature check + - perf c2c: Use stdio interface if slang is not supported + - perf jevents: Fix event syntax error caused by ExtSel + - video: fbdev: vesafb: Fix a use-after-free due early fb_info cleanup + - NFS: Always initialise fattr->label in nfs_fattr_alloc() + - NFS: Create a new nfs_alloc_fattr_with_label() function + - NFS: Convert GFP_NOFS to GFP_KERNEL + - NFSv4.1 mark qualified async operations as MOVEABLE tasks + - f2fs: fix to avoid f2fs_bug_on() in dec_valid_node_count() + - f2fs: fix to do sanity check on block address in f2fs_do_zero_range() + - f2fs: fix to clear dirty inode in f2fs_evict_inode() + - f2fs: fix deadloop in foreground GC + - f2fs: don't need inode lock for system hidden quota + - f2fs: fix to do sanity check on total_data_blocks + - f2fs: don't use casefolded comparison for "." and ".." + - f2fs: fix fallocate to use file_modified to update permissions consistently + - f2fs: fix to do sanity check for inline inode + - wifi: mac80211: fix use-after-free in chanctx code + - iwlwifi: mvm: fix assert 1F04 upon reconfig + - fs-writeback: writeback_sb_inodes:Recalculate 'wrote' according skipped + pages + - efi: Do not import certificates from UEFI Secure Boot for T2 Macs + - bfq: Avoid false marking of bic as stably merged + - bfq: Avoid merging queues with different parents + - bfq: Split shared queues on move between cgroups + - bfq: Update cgroup information before merging bio + - bfq: Drop pointless unlock-lock pair + - bfq: Remove pointless bfq_init_rq() calls + - bfq: Track whether bfq_group is still online + - bfq: Get rid of __bio_blkcg() usage + - bfq: Make sure bfqg for which we are queueing requests is online + - ext4: mark group as trimmed only if it was fully scanned + - ext4: fix use-after-free in ext4_rename_dir_prepare + - ext4: fix race condition between ext4_write and ext4_convert_inline_data + - ext4: fix warning in ext4_handle_inode_extension + - ext4: fix bug_on in ext4_writepages + - ext4: filter out EXT4_FC_REPLAY from on-disk superblock field s_state + - ext4: fix bug_on in __es_tree_search + - ext4: verify dir block before splitting it + - ext4: avoid cycles in directory h-tree + - ACPI: property: Release subnode properties with data nodes + - tty: goldfish: Introduce gf_ioread32()/gf_iowrite32() + - tracing: Fix potential double free in create_var_ref() + - tracing: Initialize integer variable to prevent garbage return value + - drm/amdgpu: add beige goby PCI ID + - PCI/PM: Fix bridge_d3_blacklist[] Elo i2 overwrite of Gigabyte X299 + - PCI: qcom: Fix runtime PM imbalance on probe errors + - PCI: qcom: Fix unbalanced PHY init on probe errors + - staging: r8188eu: prevent ->Ssid overflow in rtw_wx_set_scan() + - mm, compaction: fast_find_migrateblock() should return pfn in the target + zone + - s390/perf: obtain sie_block from the right address + - s390/stp: clock_delta should be signed + - dlm: fix plock invalid read + - dlm: uninitialized variable on error in dlm_listen_for_all() + - dlm: fix missing lkb refcount handling + - ocfs2: dlmfs: fix error handling of user_dlm_destroy_lock + - scsi: dc395x: Fix a missing check on list iterator + - scsi: ufs: qcom: Add a readl() to make sure ref_clk gets enabled + - landlock: Add clang-format exceptions + - landlock: Format with clang-format + - selftests/landlock: Add clang-format exceptions + - selftests/landlock: Normalize array assignment + - selftests/landlock: Format with clang-format + - samples/landlock: Add clang-format exceptions + - samples/landlock: Format with clang-format + - landlock: Fix landlock_add_rule(2) documentation + - selftests/landlock: Make tests build with old libc + - selftests/landlock: Extend tests for minimal valid attribute size + - selftests/landlock: Add tests for unknown access rights + - selftests/landlock: Extend access right tests to directories + - selftests/landlock: Fully test file rename with "remove" access + - selftests/landlock: Add tests for O_PATH + - landlock: Change landlock_add_rule(2) argument check ordering + - landlock: Change landlock_restrict_self(2) check ordering + - selftests/landlock: Test landlock_create_ruleset(2) argument check ordering + - landlock: Define access_mask_t to enforce a consistent access mask size + - landlock: Reduce the maximum number of layers to 16 + - landlock: Create find_rule() from unmask_layers() + - landlock: Fix same-layer rule unions + - drm/amdgpu/cs: make commands with 0 chunks illegal behaviour. + - drm/nouveau/subdev/bus: Ratelimit logging for fault errors + - drm/etnaviv: check for reaped mapping in etnaviv_iommu_unmap_gem + - drm/nouveau/clk: Fix an incorrect NULL check on list iterator + - drm/nouveau/kms/nv50-: atom: fix an incorrect NULL check on list iterator + - drm/bridge: analogix_dp: Grab runtime PM reference for DP-AUX + - drm/i915/dsi: fix VBT send packet port selection for ICL+ + - md: fix an incorrect NULL check in does_sb_need_changing + - md: fix an incorrect NULL check in md_reload_sb + - mtd: cfi_cmdset_0002: Move and rename + chip_check/chip_ready/chip_good_for_write + - mtd: cfi_cmdset_0002: Use chip_ready() for write on S29GL064N + - media: coda: Fix reported H264 profile + - media: coda: Add more H264 levels for CODA960 + - ima: remove the IMA_TEMPLATE Kconfig option + - [Config] updateconfigs for IMA_TEMPLATE + - Kconfig: Add option for asm goto w/ tied outputs to workaround clang-13 bug + - RDMA/hfi1: Fix potential integer multiplication overflow errors + - mmc: core: Allows to override the timeout value for ioctl() path + - csky: patch_text: Fixup last cpu should be master + - irqchip/armada-370-xp: Do not touch Performance Counter Overflow on A375, + A38x, A39x + - irqchip: irq-xtensa-mx: fix initial IRQ affinity + - thermal: devfreq_cooling: use local ops instead of global ops + - cfg80211: declare MODULE_FIRMWARE for regulatory.db + - mac80211: upgrade passive scan to active scan on DFS channels after beacon + rx + - um: Use asm-generic/dma-mapping.h + - um: chan_user: Fix winch_tramp() return value + - um: Fix out-of-bounds read in LDT setup + - kexec_file: drop weak attribute from arch_kexec_apply_relocations[_add] + - ftrace: Clean up hash direct_functions on register failures + - ksmbd: fix outstanding credits related bugs + - iommu/msm: Fix an incorrect NULL check on list iterator + - iommu/dma: Fix iova map result check bug + - Revert "mm/cma.c: remove redundant cma_mutex lock" + - mm/page_alloc: always attempt to allocate at least one page during bulk + allocation + - nodemask.h: fix compilation error with GCC12 + - hugetlb: fix huge_pmd_unshare address update + - mm/memremap: fix missing call to untrack_pfn() in pagemap_range() + - xtensa/simdisk: fix proc_read_simdisk() + - rtl818x: Prevent using not initialized queues + - ASoC: rt5514: Fix event generation for "DSP Voice Wake Up" control + - carl9170: tx: fix an incorrect use of list iterator + - stm: ltdc: fix two incorrect NULL checks on list iterator + - bcache: remove incremental dirty sector counting for + bch_sectors_dirty_init() + - bcache: avoid journal no-space deadlock by reserving 1 journal bucket + - serial: pch: don't overwrite xmit->buf[0] by x_char + - tilcdc: tilcdc_external: fix an incorrect NULL check on list iterator + - gma500: fix an incorrect NULL check on list iterator + - arm64: dts: qcom: ipq8074: fix the sleep clock frequency + - arm64: tegra: Add missing DFLL reset on Tegra210 + - clk: tegra: Add missing reset deassertion + - phy: qcom-qmp: fix struct clk leak on probe errors + - ARM: dts: s5pv210: Remove spi-cs-high on panel in Aries + - ARM: pxa: maybe fix gpio lookup tables + - SMB3: EBADF/EIO errors in rename/open caused by race condition in + smb2_compound_op + - docs/conf.py: Cope with removal of language=None in Sphinx 5.0.0 + - dt-bindings: gpio: altera: correct interrupt-cells + - vdpasim: allow to enable a vq repeatedly + - blk-iolatency: Fix inflight count imbalances and IO hangs on offline + - coresight: core: Fix coresight device probe failure issue + - phy: qcom-qmp: fix reset-controller leak on probe errors + - net: ipa: fix page free in ipa_endpoint_trans_release() + - net: ipa: fix page free in ipa_endpoint_replenish_one() + - kseltest/cgroup: Make test_stress.sh work if run interactively + - list: test: Add a test for list_is_head() + - staging: r8188eu: delete rtw_wx_read/write32() + - RDMA/hns: Remove the num_cqc_timer variable + - RDMA/rxe: Generate a completion for unsupported/invalid opcode + - MIPS: IP27: Remove incorrect `cpu_has_fpu' override + - MIPS: IP30: Remove incorrect `cpu_has_fpu' override + - ext4: only allow test_dummy_encryption when supported + - interconnect: qcom: sc7180: Drop IP0 interconnects + - interconnect: qcom: icc-rpmh: Add BCMs to commit list in pre_aggregate + - fs: add two trivial lookup helpers + - exportfs: support idmapped mounts + - fs/ntfs3: Fix invalid free in log_replay + - md: Don't set mddev private to NULL in raid0 pers->free + - md: fix double free of io_acct_set bioset + - md: bcache: check the return value of kzalloc() in detached_dev_do_request() + - pinctrl/rockchip: support setting input-enable param + - block: fix bio_clone_blkg_association() to associate with proper blkcg_gq + - Linux 5.15.46 + * [SRU] bcache deadlock during read IO in writeback mode (LP: #1980925) // + Jammy update: v5.15.46 upstream stable release (LP: #1981864) + - bcache: improve multithreaded bch_btree_check() + - bcache: improve multithreaded bch_sectors_dirty_init() + * Jammy update: v5.15.45 upstream stable release (LP: #1981862) + - ALSA: usb-audio: Don't get sample rate for MCT Trigger 5 USB-to-HDMI + - pinctrl: sunxi: fix f1c100s uart2 function + - KVM: arm64: Don't hypercall before EL2 init + - percpu_ref_init(): clean ->percpu_count_ref on failure + - net: af_key: check encryption module availability consistency + - nfc: pn533: Fix buggy cleanup order + - net: ftgmac100: Disable hardware checksum on AST2600 + - i2c: ismt: Provide a DMA buffer for Interrupt Cause Logging + - drivers: i2c: thunderx: Allow driver to work with ACPI defined TWSI + controllers + - i2c: ismt: prevent memory corruption in ismt_access() + - assoc_array: Fix BUG_ON during garbage collect + - pipe: make poll_usage boolean and annotate its access + - pipe: Fix missing lock in pipe_resize_ring() + - net: ipa: compute proper aggregation limit + - drm/i915: Fix -Wstringop-overflow warning in call to intel_read_wm_latency() + - exfat: check if cluster num is valid + - lib/crypto: add prompts back to crypto libraries + - crypto: drbg - prepare for more fine-grained tracking of seeding state + - crypto: drbg - track whether DRBG was seeded with !rng_is_initialized() + - crypto: drbg - move dynamic ->reseed_threshold adjustments to __drbg_seed() + - crypto: drbg - make reseeding from get_random_bytes() synchronous + - netfilter: nf_tables: hold mutex on netns pre_exit path + - netfilter: nf_tables: double hook unregistration in netns path + - netfilter: conntrack: re-fetch conntrack after insertion + - KVM: PPC: Book3S HV: fix incorrect NULL check on list iterator + - x86/kvm: Alloc dummy async #PF token outside of raw spinlock + - x86, kvm: use correct GFP flags for preemption disabled + - KVM: x86: avoid calling x86 emulator without a decoded instruction + - KVM: x86: Drop WARNs that assert a triple fault never "escapes" from L2 + - KVM: SVM: Use kzalloc for sev ioctl interfaces to prevent kernel data leak + - crypto: caam - fix i.MX6SX entropy delay value + - crypto: ecrdsa - Fix incorrect use of vli_cmp + - zsmalloc: fix races between asynchronous zspage free and page migration + - ALSA: usb-audio: Workaround for clock setup on TEAC devices + - ALSA: usb-audio: Add missing ep_idx in fixed EP quirks + - ALSA: usb-audio: Configure sync endpoints before data + - Bluetooth: hci_qca: Use del_timer_sync() before freeing + - ARM: dts: s5pv210: Correct interrupt name for bluetooth in Aries + - dm integrity: fix error code in dm_integrity_ctr() + - dm crypt: make printing of the key constant-time + - dm stats: add cond_resched when looping over entries + - dm verity: set DM_TARGET_IMMUTABLE feature flag + - raid5: introduce MD_BROKEN + - fs/ntfs3: validate BOOT sectors_per_clusters + - HID: multitouch: Add support for Google Whiskers Touchpad + - HID: multitouch: add quirks to enable Lenovo X12 trackpoint + - x86/sgx: Disconnect backing page references from dirty status + - x86/sgx: Mark PCMD page as dirty when modifying contents + - x86/sgx: Obtain backing storage page with enclave mutex held + - x86/sgx: Fix race between reclaimer and page fault handler + - x86/sgx: Ensure no data in PCMD page after truncate + - media: i2c: imx412: Fix reset GPIO polarity + - media: i2c: imx412: Fix power_off ordering + - tpm: Fix buffer access in tpm2_get_tpm_pt() + - tpm: ibmvtpm: Correct the return value in tpm_ibmvtpm_probe() + - docs: submitting-patches: Fix crossref to 'The canonical patch format' + - NFS: Memory allocation failures are not server fatal errors + - NFSD: Fix possible sleep during nfsd4_release_lockowner() + - bpf: Fix potential array overflow in bpf_trampoline_get_progs() + - bpf: Enlarge offset check value to INT_MAX in bpf_skb_{load,store}_bytes + - bpf: Fix excessive memory allocation in stack_map_alloc() + - bpf: Reject writes for PTR_TO_MAP_KEY in check_helper_mem_access + - bpf: Check PTR_TO_MEM | MEM_RDONLY in check_helper_mem_access + - ALSA: usb-audio: Optimize TEAC clock quirk + - Linux 5.15.45 + * Jammy update: v5.15.44 upstream stable release (LP: #1981649) + - Revert "UBUNTU: SAUCE: random: Make getrandom() ready earlier" + - ice: fix crash at allocation failure + - ACPI: sysfs: Fix BERT error region memory mapping + - MAINTAINERS: co-maintain random.c + - MAINTAINERS: add git tree for random.c + - lib/crypto: blake2s: include as built-in + - [Config] updateconfigs for CRYPTO_LIB_BLAKE2S + - lib/crypto: blake2s: move hmac construction into wireguard + - lib/crypto: sha1: re-roll loops to reduce code size + - lib/crypto: blake2s: avoid indirect calls to compression function for Clang + CFI + - random: document add_hwgenerator_randomness() with other input functions + - random: remove unused irq_flags argument from add_interrupt_randomness() + - random: use BLAKE2s instead of SHA1 in extraction + - random: do not sign extend bytes for rotation when mixing + - random: do not re-init if crng_reseed completes before primary init + - random: mix bootloader randomness into pool + - random: harmonize "crng init done" messages + - random: use IS_ENABLED(CONFIG_NUMA) instead of ifdefs + - random: early initialization of ChaCha constants + - random: avoid superfluous call to RDRAND in CRNG extraction + - random: don't reset crng_init_cnt on urandom_read() + - random: fix typo in comments + - random: cleanup poolinfo abstraction + - random: cleanup integer types + - random: remove incomplete last_data logic + - random: remove unused extract_entropy() reserved argument + - random: rather than entropy_store abstraction, use global + - random: remove unused OUTPUT_POOL constants + - random: de-duplicate INPUT_POOL constants + - random: prepend remaining pool constants with POOL_ + - random: cleanup fractional entropy shift constants + - random: access input_pool_data directly rather than through pointer + - random: selectively clang-format where it makes sense + - random: simplify arithmetic function flow in account() + - random: continually use hwgenerator randomness + - random: access primary_pool directly rather than through pointer + - random: only call crng_finalize_init() for primary_crng + - random: use computational hash for entropy extraction + - random: simplify entropy debiting + - random: use linear min-entropy accumulation crediting + - random: always wake up entropy writers after extraction + - random: make credit_entropy_bits() always safe + - random: remove use_input_pool parameter from crng_reseed() + - random: remove batched entropy locking + - random: fix locking in crng_fast_load() + - random: use RDSEED instead of RDRAND in entropy extraction + - random: get rid of secondary crngs + - random: inline leaves of rand_initialize() + - random: ensure early RDSEED goes through mixer on init + - random: do not xor RDRAND when writing into /dev/random + - random: absorb fast pool into input pool after fast load + - random: use simpler fast key erasure flow on per-cpu keys + - random: use hash function for crng_slow_load() + - random: make more consistent use of integer types + - random: remove outdated INT_MAX >> 6 check in urandom_read() + - random: zero buffer after reading entropy from userspace + - random: fix locking for crng_init in crng_reseed() + - random: tie batched entropy generation to base_crng generation + - random: remove ifdef'd out interrupt bench + - random: remove unused tracepoints + - random: add proper SPDX header + - random: deobfuscate irq u32/u64 contributions + - random: introduce drain_entropy() helper to declutter crng_reseed() + - random: remove useless header comment + - random: remove whitespace and reorder includes + - random: group initialization wait functions + - random: group crng functions + - random: group entropy extraction functions + - random: group entropy collection functions + - random: group userspace read/write functions + - random: group sysctl functions + - random: rewrite header introductory comment + - random: defer fast pool mixing to worker + - random: do not take pool spinlock at boot + - random: unify early init crng load accounting + - random: check for crng_init == 0 in add_device_randomness() + - random: pull add_hwgenerator_randomness() declaration into random.h + - random: clear fast pool, crng, and batches in cpuhp bring up + - random: round-robin registers as ulong, not u32 + - random: only wake up writers after zap if threshold was passed + - random: cleanup UUID handling + - random: unify cycles_t and jiffies usage and types + - random: do crng pre-init loading in worker rather than irq + - random: give sysctl_random_min_urandom_seed a more sensible value + - random: don't let 644 read-only sysctls be written to + - random: replace custom notifier chain with standard one + - random: use SipHash as interrupt entropy accumulator + - random: make consistent usage of crng_ready() + - random: reseed more often immediately after booting + - random: check for signal and try earlier when generating entropy + - random: skip fast_init if hwrng provides large chunk of entropy + - random: treat bootloader trust toggle the same way as cpu trust toggle + - random: re-add removed comment about get_random_{u32,u64} reseeding + - random: mix build-time latent entropy into pool at init + - random: do not split fast init input in add_hwgenerator_randomness() + - random: do not allow user to keep crng key around on stack + - random: check for signal_pending() outside of need_resched() check + - random: check for signals every PAGE_SIZE chunk of /dev/[u]random + - random: allow partial reads if later user copies fail + - random: make random_get_entropy() return an unsigned long + - random: document crng_fast_key_erasure() destination possibility + - random: fix sysctl documentation nits + - init: call time_init() before rand_initialize() + - ia64: define get_cycles macro for arch-override + - s390: define get_cycles macro for arch-override + - parisc: define get_cycles macro for arch-override + - alpha: define get_cycles macro for arch-override + - powerpc: define get_cycles macro for arch-override + - timekeeping: Add raw clock fallback for random_get_entropy() + - m68k: use fallback for random_get_entropy() instead of zero + - riscv: use fallback for random_get_entropy() instead of zero + - mips: use fallback for random_get_entropy() instead of just c0 random + - arm: use fallback for random_get_entropy() instead of zero + - nios2: use fallback for random_get_entropy() instead of zero + - x86/tsc: Use fallback for random_get_entropy() instead of zero + - um: use fallback for random_get_entropy() instead of zero + - sparc: use fallback for random_get_entropy() instead of zero + - xtensa: use fallback for random_get_entropy() instead of zero + - random: insist on random_get_entropy() existing in order to simplify + - random: do not use batches when !crng_ready() + - random: use first 128 bits of input as fast init + - random: do not pretend to handle premature next security model + - random: order timer entropy functions below interrupt functions + - random: do not use input pool from hard IRQs + - random: help compiler out with fast_mix() by using simpler arguments + - siphash: use one source of truth for siphash permutations + - random: use symbolic constants for crng_init states + - random: avoid initializing twice in credit race + - random: move initialization out of reseeding hot path + - random: remove ratelimiting for in-kernel unseeded randomness + - random: use proper jiffies comparison macro + - random: handle latent entropy and command line from random_init() + - random: credit architectural init the exact amount + - random: use static branch for crng_ready() + - random: remove extern from functions in header + - random: use proper return types on get_random_{int,long}_wait() + - random: make consistent use of buf and len + - random: move initialization functions out of hot pages + - random: move randomize_page() into mm where it belongs + - random: unify batched entropy implementations + - random: convert to using fops->read_iter() + - random: convert to using fops->write_iter() + - random: wire up fops->splice_{read,write}_iter() + - random: check for signals after page of pool writes + - ALSA: ctxfi: Add SB046x PCI ID + - Linux 5.15.44 + - Revert "random: use static branch for crng_ready()" + * Jammy update: v5.15.43 upstream stable release (LP: #1981468) + - mptcp: Do TCP fallback on early DSS checksum failure + - Linux 5.15.43 + * Jammy update: v5.15.42 upstream stable release (LP: #1981375) + - usb: gadget: fix race when gadget driver register via ioctl + - io_uring: arm poll for non-nowait files + - kernel/resource: Introduce request_mem_region_muxed() + - i2c: piix4: Replace hardcoded memory map size with a #define + - i2c: piix4: Move port I/O region request/release code into functions + - i2c: piix4: Move SMBus controller base address detect into function + - i2c: piix4: Move SMBus port selection into function + - i2c: piix4: Add EFCH MMIO support to region request and release + - i2c: piix4: Add EFCH MMIO support to SMBus base address detect + - i2c: piix4: Add EFCH MMIO support for SMBus port select + - i2c: piix4: Enable EFCH MMIO for Family 17h+ + - Watchdog: sp5100_tco: Move timer initialization into function + - Watchdog: sp5100_tco: Refactor MMIO base address initialization + - Watchdog: sp5100_tco: Add initialization using EFCH MMIO + - Watchdog: sp5100_tco: Enable Family 17h+ CPUs + - mm/kfence: reset PG_slab and memcg_data before freeing __kfence_pool + - Revert "drm/i915/opregion: check port number bounds for SWSCI display power + state" + - rtc: fix use-after-free on device removal + - rtc: pcf2127: fix bug when reading alarm registers + - um: Cleanup syscall_handler_t definition/cast, fix warning + - Input: add bounds checking to input_set_capability() + - Input: stmfts - fix reference leak in stmfts_input_open + - nvme-pci: add quirks for Samsung X5 SSDs + - gfs2: Disable page faults during lockless buffered reads + - rtc: sun6i: Fix time overflow handling + - crypto: stm32 - fix reference leak in stm32_crc_remove + - crypto: x86/chacha20 - Avoid spurious jumps to other functions + - s390/traps: improve panic message for translation-specification exception + - s390/pci: improve zpci_dev reference counting + - vhost_vdpa: don't setup irq offloading when irq_num < 0 + - tools/virtio: compile with -pthread + - nvmet: use a private workqueue instead of the system workqueue + - nvme-multipath: fix hang when disk goes live over reconnect + - rtc: mc146818-lib: Fix the AltCentury for AMD platforms + - fs: fix an infinite loop in iomap_fiemap + - MIPS: lantiq: check the return value of kzalloc() + - drbd: remove usage of list iterator variable after loop + - platform/chrome: cros_ec_debugfs: detach log reader wq from devm + - ARM: 9191/1: arm/stacktrace, kasan: Silence KASAN warnings in unwind_frame() + - nilfs2: fix lockdep warnings in page operations for btree nodes + - nilfs2: fix lockdep warnings during disk space reclamation + - ALSA: usb-audio: Restore Rane SL-1 quirk + - ALSA: wavefront: Proper check of get_user() error + - ALSA: hda/realtek: Add quirk for TongFang devices with pop noise + - perf: Fix sys_perf_event_open() race against self + - selinux: fix bad cleanup on error in hashtab_duplicate() + - Fix double fget() in vhost_net_set_backend() + - PCI/PM: Avoid putting Elo i2 PCIe Ports in D3cold + - Revert "can: m_can: pci: use custom bit timings for Elkhart Lake" + - KVM: x86/mmu: Update number of zapped pages even if page list is stable + - arm64: paravirt: Use RCU read locks to guard stolen_time + - arm64: mte: Ensure the cleared tags are visible before setting the PTE + - crypto: qcom-rng - fix infinite loop on requests not multiple of WORD_SZ + - libceph: fix potential use-after-free on linger ping and resends + - drm/i915/dmc: Add MMIO range restrictions + - drm/dp/mst: fix a possible memory leak in fetch_monitor_name() + - dma-buf: fix use of DMA_BUF_SET_NAME_{A,B} in userspace + - dma-buf: ensure unique directory name for dmabuf stats + - ARM: dts: aspeed-g6: remove FWQSPID group in pinctrl dtsi + - pinctrl: pinctrl-aspeed-g6: remove FWQSPID group in pinctrl + - ARM: dts: aspeed-g6: fix SPI1/SPI2 quad pin group + - ARM: dts: aspeed: Add ADC for AST2600 and enable for Rainier and Everest + - ARM: dts: aspeed: Add secure boot controller node + - ARM: dts: aspeed: Add video engine to g6 + - pinctrl: mediatek: mt8365: fix IES control pins + - ALSA: hda - fix unused Realtek function when PM is not enabled + - net: ipa: record proper RX transaction count + - net: macb: Increment rx bd head after allocating skb and buffer + - xfrm: rework default policy structure + - xfrm: fix "disable_policy" flag use when arriving from different devices + - net/sched: act_pedit: sanitize shift argument before usage + - netfilter: flowtable: fix excessive hw offload attempts after failure + - netfilter: nft_flow_offload: skip dst neigh lookup for ppp devices + - net: fix dev_fill_forward_path with pppoe + bridge + - netfilter: nft_flow_offload: fix offload with pppoe + vlan + - net: systemport: Fix an error handling path in bcm_sysport_probe() + - net: vmxnet3: fix possible use-after-free bugs in vmxnet3_rq_alloc_rx_buf() + - net: vmxnet3: fix possible NULL pointer dereference in vmxnet3_rq_cleanup() + - ice: fix crash when writing timestamp on RX rings + - ice: fix possible under reporting of ethtool Tx and Rx statistics + - ice: move ice_container_type onto ice_ring_container + - ice: Fix interrupt moderation settings getting cleared + - clk: at91: generated: consider range when calculating best rate + - net/qla3xxx: Fix a test in ql_reset_work() + - NFC: nci: fix sleep in atomic context bugs caused by nci_skb_alloc + - net/mlx5: DR, Fix missing flow_source when creating multi-destination FW + table + - net/mlx5e: Properly block LRO when XDP is enabled + - ARM: 9196/1: spectre-bhb: enable for Cortex-A15 + - ARM: 9197/1: spectre-bhb: fix loop8 sequence for Thumb2 + - mptcp: change the parameter of __mptcp_make_csum + - mptcp: reuse __mptcp_make_csum in validate_data_csum + - mptcp: fix checksum byte order + - igb: skip phy status check where unavailable + - netfilter: flowtable: fix TCP flow teardown + - netfilter: flowtable: pass flowtable to nf_flow_table_iterate() + - netfilter: flowtable: move dst_check to packet path + - net: bridge: Clear offload_fwd_mark when passing frame up bridge interface. + - riscv: dts: sifive: fu540-c000: align dma node name with dtschema + - scsi: ufs: core: Fix referencing invalid rsp field + - perf build: Fix check for btf__load_from_kernel_by_id() in libbpf + - gpio: gpio-vf610: do not touch other bits when set the target bit + - gpio: mvebu/pwm: Refuse requests with inverted polarity + - perf regs x86: Fix arch__intr_reg_mask() for the hybrid platform + - perf bench numa: Address compiler error on s390 + - scsi: scsi_dh_alua: Properly handle the ALUA transitioning state + - scsi: qla2xxx: Fix missed DMA unmap for aborted commands + - mac80211: fix rx reordering with non explicit / psmp ack policy + - nl80211: validate S1G channel width + - selftests: add ping test with ping_group_range tuned + - fbdev: Prevent possible use-after-free in fb_release() + - net: fix wrong network header length + - nl80211: fix locking in nl80211_set_tx_bitrate_mask() + - ethernet: tulip: fix missing pci_disable_device() on error in + tulip_init_one() + - net: stmmac: fix missing pci_disable_device() on error in stmmac_pci_probe() + - net: atlantic: fix "frag[0] not initialized" + - net: atlantic: reduce scope of is_rsc_complete + - net: atlantic: add check for MAX_SKB_FRAGS + - net: atlantic: verify hw_head_ lies within TX buffer ring + - arm64: Enable repeat tlbi workaround on KRYO4XX gold CPUs + - Input: ili210x - fix reset timing + - dt-bindings: pinctrl: aspeed-g6: remove FWQSPID group + - i2c: mt7621: fix missing clk_disable_unprepare() on error in mtk_i2c_probe() + - afs: Fix afs_getattr() to refetch file status if callback break occurred + - Linux 5.15.42 + * CVE-2021-33061 + - ixgbe: add the ability for the PF to disable VF link state + - ixgbe: add improvement for MDD response functionality + - ixgbevf: add disable link state + * Fix PSR flickers on Intel TGL laptops + AUO panel (LP: #1980087) + - SAUCE: drm/i915/display/psr: Fix flicker on TGL + AUO panel + * Fix audio on Zbook Studio G9 (LP: #1966010) + - ALSA: hda/realtek: Fix LED on Zbook Studio G9 + * Support Cirrus audio codec configurations for Odin platform (LP: #1968861) + - ALSA: hda/cs8409: Support new Odin Variants + - ALSA: hda/cs8409: Add Speaker Playback Switch for Cyborg + * Fix beacon loss for rtl8821ce on certain platforms (LP: #1969771) + - rtw88: pci: 8821c: Disable 21ce completion timeout + * Suppress harmless warning from hp-wmi (LP: #1980307) + - platform/x86: hp-wmi: Ignore Sanitization Mode event + * Fix headset mic no sound on an HP desktop (LP: #1978925) + - ALSA: hda/realtek - ALC897 headset MIC no sound + * alsa/hda: mute led can't work on the lenovo machine with cs35l41 s-codec + (LP: #1978915) + - ALSA: hda/realtek: Fix mute led issue on thinkpad with cs35l41 s-codec + * Jammy update: v5.15.41 upstream stable release (LP: #1980278) + - batman-adv: Don't skb_split skbuffs with frag_list + - iwlwifi: iwl-dbg: Use del_timer_sync() before freeing + - hwmon: (tmp401) Add OF device ID table + - mac80211: Reset MBSSID parameters upon connection + - net: Fix features skip in for_each_netdev_feature() + - net: mscc: ocelot: fix last VCAP IS1/IS2 filter persisting in hardware when + deleted + - net: mscc: ocelot: fix VCAP IS2 filters matching on both lookups + - net: mscc: ocelot: restrict tc-trap actions to VCAP IS2 lookup 0 + - net: mscc: ocelot: avoid corrupting hardware counters when moving VCAP + filters + - fbdev: simplefb: Cleanup fb_info in .fb_destroy rather than .remove + - fbdev: efifb: Cleanup fb_info in .fb_destroy rather than .remove + - fbdev: vesafb: Cleanup fb_info in .fb_destroy rather than .remove + - platform/surface: aggregator: Fix initialization order when compiling as + builtin module + - ice: Fix race during aux device (un)plugging + - ice: fix PTP stale Tx timestamps cleanup + - ipv4: drop dst in multicast routing path + - drm/nouveau: Fix a potential theorical leak in nouveau_get_backlight_name() + - netlink: do not reset transport header in netlink_recvmsg() + - net: chelsio: cxgb4: Avoid potential negative array offset + - fbdev: efifb: Fix a use-after-free due early fb_info cleanup + - sfc: Use swap() instead of open coding it + - net: sfc: fix memory leak due to ptp channel + - mac80211_hwsim: call ieee80211_tx_prepare_skb under RCU protection + - nfs: fix broken handling of the softreval mount option + - ionic: fix missing pci_release_regions() on error in ionic_probe() + - dim: initialize all struct fields + - hwmon: (ltq-cputemp) restrict it to SOC_XWAY + - procfs: prevent unprivileged processes accessing fdinfo dir + - selftests: vm: Makefile: rename TARGETS to VMTARGETS + - arm64: vdso: fix makefile dependency on vdso.so + - virtio: fix virtio transitional ids + - s390/ctcm: fix variable dereferenced before check + - s390/ctcm: fix potential memory leak + - s390/lcs: fix variable dereferenced before check + - net/sched: act_pedit: really ensure the skb is writable + - net: ethernet: mediatek: ppe: fix wrong size passed to memset() + - net: bcmgenet: Check for Wake-on-LAN interrupt probe deferral + - drm/vc4: hdmi: Fix build error for implicit function declaration + - net: dsa: bcm_sf2: Fix Wake-on-LAN with mac_link_down() + - net/smc: non blocking recvmsg() return -EAGAIN when no data and + signal_pending + - net: sfc: ef10: fix memory leak in efx_ef10_mtd_probe() + - tls: Fix context leak on tls_device_down + - drm/vmwgfx: Fix fencing on SVGAv3 + - gfs2: Fix filesystem block deallocation for short writes + - hwmon: (f71882fg) Fix negative temperature + - RDMA/irdma: Fix deadlock in irdma_cleanup_cm_core() + - iommu: arm-smmu: disable large page mappings for Nvidia arm-smmu + - ASoC: max98090: Reject invalid values in custom control put() + - ASoC: max98090: Generate notifications on changes for custom control + - ASoC: ops: Validate input values in snd_soc_put_volsw_range() + - s390: disable -Warray-bounds + - ASoC: SOF: Fix NULL pointer exception in sof_pci_probe callback + - net: emaclite: Don't advertise 1000BASE-T and do auto negotiation + - net: sfp: Add tx-fault workaround for Huawei MA5671A SFP ONT + - secure_seq: use the 64 bits of the siphash for port offset calculation + - tcp: use different parts of the port_offset for index and offset + - tcp: resalt the secret every 10 seconds + - tcp: add small random increments to the source port + - tcp: dynamically allocate the perturb table used by source ports + - tcp: increase source port perturb table to 2^16 + - tcp: drop the hash_32() part from the index calculation + - interconnect: Restore sync state by ignoring ipa-virt in provider count + - firmware_loader: use kernel credentials when reading firmware + - KVM: PPC: Book3S PR: Enable MSR_DR for switch_mmu_context() + - usb: xhci-mtk: fix fs isoc's transfer error + - x86/mm: Fix marking of unused sub-pmd ranges + - tty/serial: digicolor: fix possible null-ptr-deref in digicolor_uart_probe() + - tty: n_gsm: fix buffer over-read in gsm_dlci_data() + - tty: n_gsm: fix mux activation issues in gsm_config() + - usb: cdc-wdm: fix reading stuck on device close + - usb: typec: tcpci: Don't skip cleanup in .remove() on error + - usb: typec: tcpci_mt6360: Update for BMC PHY setting + - USB: serial: pl2303: add device id for HP LM930 Display + - USB: serial: qcserial: add support for Sierra Wireless EM7590 + - USB: serial: option: add Fibocom L610 modem + - USB: serial: option: add Fibocom MA510 modem + - slimbus: qcom: Fix IRQ check in qcom_slim_probe + - fsl_lpuart: Don't enable interrupts too early + - serial: 8250_mtk: Fix UART_EFR register address + - serial: 8250_mtk: Fix register address for XON/XOFF character + - ceph: fix setting of xattrs on async created inodes + - Revert "mm/memory-failure.c: skip huge_zero_page in memory_failure()" + - mm/huge_memory: do not overkill when splitting huge_zero_page + - drm/vmwgfx: Disable command buffers on svga3 without gbobjects + - drm/nouveau/tegra: Stop using iommu_present() + - i40e: i40e_main: fix a missing check on list iterator + - net: atlantic: always deep reset on pm op, fixing up my null deref + regression + - net: phy: Fix race condition on link status change + - writeback: Avoid skipping inode writeback + - cgroup/cpuset: Remove cpus_allowed/mems_allowed setup in cpuset_init_smp() + - arm[64]/memremap: don't abuse pfn_valid() to ensure presence of linear map + - net: phy: micrel: Do not use kszphy_suspend/resume for KSZ8061 + - net: phy: micrel: Pass .probe for KS8737 + - SUNRPC: Ensure that the gssproxy client can start in a connected state + - drm/vmwgfx: Initialize drm_mode_fb_cmd2 + - dma-buf: call dma_buf_stats_setup after dmabuf is in valid list + - mm/hwpoison: use pr_err() instead of dump_page() in get_any_page() + - ping: fix address binding wrt vrf + - usb: gadget: uvc: rename function to be more consistent + - usb: gadget: uvc: allow for application to cleanly shutdown + - Linux 5.15.41 + * Jammy update: v5.15.40 upstream stable release (LP: #1980277) + - tools arch: Update arch/x86/lib/mem{cpy,set}_64.S copies used in 'perf bench + mem memcpy' + - Bluetooth: Fix the creation of hdev->name + - udf: Avoid using stale lengthOfImpUse + - mm: fix missing cache flush for all tail pages of compound page + - mm: hugetlb: fix missing cache flush in copy_huge_page_from_user() + - mm: shmem: fix missing cache flush in shmem_mfill_atomic_pte() + - mm: userfaultfd: fix missing cache flush in mcopy_atomic_pte() and + __mcopy_atomic() + - mm/hwpoison: fix error page recovered but reported "not recovered" + - mm/mlock: fix potential imbalanced rlimit ucounts adjustment + - mm: fix invalid page pointer returned with FOLL_PIN gups + - Linux 5.15.40 + + [ Ubuntu: 5.15.0-1013.17 ] + + * CVE-2022-29900 // CVE-2022-29901 + - [Config]: Enable speculation mitigations + * CVE-2022-2585 + - SAUCE: posix-cpu-timers: Cleanup CPU timers before freeing them during exec + * CVE-2022-2586 + - SAUCE: netfilter: nf_tables: do not allow SET_ID to refer to another table + - SAUCE: netfilter: nf_tables: do not allow CHAIN_ID to refer to another table + - SAUCE: netfilter: nf_tables: do not allow RULE_ID to refer to another chain + * CVE-2022-2588 + - SAUCE: net_sched: cls_route: remove from list when handle is 0 + * CVE-2022-29900 // CVE-2022-29901 + - x86/lib/atomic64_386_32: Rename things + - x86: Prepare asm files for straight-line-speculation + - x86: Prepare inline-asm for straight-line-speculation + - x86/alternative: Relax text_poke_bp() constraint + - kbuild: move objtool_args back to scripts/Makefile.build + - x86: Add straight-line-speculation mitigation + - kvm/emulate: Fix SETcc emulation function offsets with SLS + - crypto: x86/poly1305 - Fixup SLS + - objtool: Add straight-line-speculation validation + - objtool: Fix SLS validation for kcov tail-call replacement + - objtool: Fix objtool regression on x32 systems + - objtool: Fix symbol creation + - objtool: Introduce CFI hash + - objtool: Default ignore INT3 for unreachable + - x86, kvm: use proper ASM macros for kvm_vcpu_is_preempted + - x86/traps: Use pt_regs directly in fixup_bad_iret() + - x86/entry: Switch the stack after error_entry() returns + - x86/entry: Move PUSH_AND_CLEAR_REGS out of error_entry() + - x86/entry: Don't call error_entry() for XENPV + - x86/entry: Remove skip_r11rcx + - x86/realmode: build with -D__DISABLE_EXPORTS + - x86/ibt,ftrace: Make function-graph play nice + - x86/kvm/vmx: Make noinstr clean + - x86/cpufeatures: Move RETPOLINE flags to word 11 + - x86/retpoline: Cleanup some #ifdefery + - x86/retpoline: Swizzle retpoline thunk + - x86/retpoline: Use -mfunction-return + - x86: Undo return-thunk damage + - x86,objtool: Create .return_sites + - objtool: skip non-text sections when adding return-thunk sites + - x86,static_call: Use alternative RET encoding + - x86/ftrace: Use alternative RET encoding + - x86/bpf: Use alternative RET encoding + - x86/kvm: Fix SETcc emulation for return thunks + - x86/vsyscall_emu/64: Don't use RET in vsyscall emulation + - x86/sev: Avoid using __x86_return_thunk + - x86: Use return-thunk in asm code + - x86/entry: Avoid very early RET + - objtool: Treat .text.__x86.* as noinstr + - x86: Add magic AMD return-thunk + - x86/bugs: Report AMD retbleed vulnerability + - x86/bugs: Add AMD retbleed= boot parameter + - x86/bugs: Enable STIBP for JMP2RET + - x86/bugs: Keep a per-CPU IA32_SPEC_CTRL value + - x86/entry: Add kernel IBRS implementation + - x86/bugs: Optimize SPEC_CTRL MSR writes + - x86/speculation: Add spectre_v2=ibrs option to support Kernel IBRS + - x86/bugs: Split spectre_v2_select_mitigation() and + spectre_v2_user_select_mitigation() + - x86/bugs: Report Intel retbleed vulnerability + - intel_idle: Disable IBRS during long idle + - objtool: Update Retpoline validation + - x86/xen: Rename SYS* entry points + - x86/xen: Add UNTRAIN_RET + - x86/bugs: Add retbleed=ibpb + - x86/bugs: Do IBPB fallback check only once + - objtool: Add entry UNRET validation + - x86/cpu/amd: Add Spectral Chicken + - x86/speculation: Fix RSB filling with CONFIG_RETPOLINE=n + - x86/speculation: Fix firmware entry SPEC_CTRL handling + - x86/speculation: Fix SPEC_CTRL write on SMT state change + - x86/speculation: Use cached host SPEC_CTRL value for guest entry/exit + - x86/speculation: Remove x86_spec_ctrl_mask + - objtool: Re-add UNWIND_HINT_{SAVE_RESTORE} + - KVM: VMX: Flatten __vmx_vcpu_run() + - KVM: VMX: Convert launched argument to flags + - KVM: VMX: Prevent guest RSB poisoning attacks with eIBRS + - KVM: VMX: Fix IBRS handling after vmexit + - x86/speculation: Fill RSB on vmexit for IBRS + - KVM: VMX: Prevent RSB underflow before vmenter + - x86/common: Stamp out the stepping madness + - x86/cpu/amd: Enumerate BTC_NO + - x86/retbleed: Add fine grained Kconfig knobs + - x86/bugs: Add Cannon lake to RETBleed affected CPU list + - x86/entry: Move PUSH_AND_CLEAR_REGS() back into error_entry + - x86/bugs: Do not enable IBPB-on-entry when IBPB is not supported + - x86/kexec: Disable RET on kexec + - x86/speculation: Disable RRSBA behavior + - [Config]: Enable speculation mitigations + - x86/static_call: Serialize __static_call_fixup() properly + - x86/asm/32: Fix ANNOTATE_UNRET_SAFE use on 32-bit + - x86/bugs: Mark retbleed_strings static + - x86/entry: Remove UNTRAIN_RET from native_irq_return_ldt + - x86/kvm: fix FASTOP_SIZE when return thunks are enabled + - x86/speculation: Use DECLARE_PER_CPU for x86_spec_ctrl_current + - KVM: emulate: do not adjust size of fastop and setcc subroutines + - x86/bugs: Remove apostrophe typo + - efi/x86: use naked RET on mixed mode call wrapper + + [ Ubuntu: 5.15.0-1012.16 ] + + * jammy/linux-intel-iotg: 5.15.0-1012.16 -proposed tracker (LP: #1981226) + * CVE-2022-29900 // CVE-2022-29901 + - [Config] intel-iotg: Enable speculation mitigations + * Ubuntu 22.04 and 20.04 DPC Fixes for Failure Cases of DownPort Containment + events (LP: #1965241) + - [Config] intel-iotg: Enable config option CONFIG_PCIE_EDR + * AMD ACP 6.x DMIC Supports (LP: #1949245) + - [Config] intel-iotg: drop AMD ACP 6 DMIC Support + * jammy/linux: 5.15.0-43.46 -proposed tracker (LP: #1981243) + * Packaging resync (LP: #1786013) + - debian/dkms-versions -- update from kernel-versions (main/2022.07.11) + * nbd: requests can become stuck when disconnecting from server with qemu-nbd + (LP: #1896350) + - nbd: don't handle response without a corresponding request message + - nbd: make sure request completion won't concurrent + - nbd: don't clear 'NBD_CMD_INFLIGHT' flag if request is not completed + - nbd: fix io hung while disconnecting device + * Ubuntu 22.04 and 20.04 DPC Fixes for Failure Cases of DownPort Containment + events (LP: #1965241) + - PCI/portdrv: Rename pm_iter() to pcie_port_device_iter() + - PCI: pciehp: Ignore Link Down/Up caused by error-induced Hot Reset + - [Config] Enable config option CONFIG_PCIE_EDR + * [SRU] Ubuntu 22.04 Feature Request-Add support for a NVMe-oF-TCP CDC Client + - TP 8010 (LP: #1948626) + - nvme: add CNTRLTYPE definitions for 'identify controller' + - nvme: send uevent on connection up + - nvme: expose cntrltype and dctype through sysfs + * [UBUNTU 22.04] Kernel oops while removing device from cio_ignore list + (LP: #1980951) + - s390/cio: derive cdev information only for IO-subchannels + * Jammy Charmed OpenStack deployment fails over connectivity issues when using + converged OVS bridge for control and data planes (LP: #1978820) + - net/mlx5e: TC NIC mode, fix tc chains miss table + * Hairpin traffic does not work with centralized NAT gw (LP: #1967856) + - net: openvswitch: fix misuse of the cached connection on tuple changes + * alsa: asoc: amd: the internal mic can't be dedected on yellow carp machines + (LP: #1980700) + - ASoC: amd: Add driver data to acp6x machine driver + - ASoC: amd: Add support for enabling DMIC on acp6x via _DSD + * AMD ACP 6.x DMIC Supports (LP: #1949245) + - ASoC: amd: add Yellow Carp ACP6x IP register header + - ASoC: amd: add Yellow Carp ACP PCI driver + - ASoC: amd: add acp6x init/de-init functions + - ASoC: amd: add platform devices for acp6x pdm driver and dmic driver + - ASoC: amd: add acp6x pdm platform driver + - ASoC: amd: add acp6x irq handler + - ASoC: amd: add acp6x pdm driver dma ops + - ASoC: amd: add acp6x pci driver pm ops + - ASoC: amd: add acp6x pdm driver pm ops + - ASoC: amd: enable Yellow carp acp6x drivers build + - ASoC: amd: create platform device for acp6x machine driver + - ASoC: amd: add YC machine driver using dmic + - ASoC: amd: enable Yellow Carp platform machine driver build + - ASoC: amd: fix uninitialized variable in snd_acp6x_probe() + - [Config] Enable AMD ACP 6 DMIC Support + * [UBUNTU 20.04] Include patches to avoid self-detected stall with Secure + Execution (LP: #1979296) + - KVM: s390: pv: add macros for UVC CC values + - KVM: s390: pv: avoid stalls when making pages secure + * [22.04 FEAT] KVM: Attestation support for Secure Execution (crypto) + (LP: #1959973) + - drivers/s390/char: Add Ultravisor io device + - s390/uv_uapi: depend on CONFIG_S390 + - [Config] CONFIG_S390_UV_UAPI=y for s390x + * CVE-2022-1679 + - SAUCE: ath9k: fix use-after-free in ath9k_hif_usb_rx_cb + * CVE-2022-28893 + - SUNRPC: Ensure we flush any closed sockets before xs_xprt_free() + - SUNRPC: Don't leak sockets in xs_local_connect() + * CVE-2022-34918 + - netfilter: nf_tables: stricter validation of element data + * CVE-2022-1652 + - floppy: use a statically allocated error counter + + [ Ubuntu: 5.15.0-1011.15 ] + + * jammy/linux-intel-iotg: 5.15.0-1011.15 -proposed tracker (LP: #1979435) + * disable Intel DMA remapping by default (LP: #1971699) + - [Config] updateconfigs for Intel DMA remapping + * IPU6 camera has no function on Andrews MLK (LP: #1964983) + - [Config] updateconfigs for OV02C10 + * Support Intel IPU6 MIPI camera on Alder Lake platforms (LP: #1955383) + - [Config] updateconfigs for intel visual sensing controller(VSC) driver + - [Config] updateconfigs for IPU6 + * Jammy update: v5.15.37 upstream stable release (LP: #1976135) + - [Config] updateconfigs for BLK_DEV_FD_RAWCMD + * jammy/linux: 5.15.0-41.44 -proposed tracker (LP: #1979448) + * Fix can't boot up after change to vmd (LP: #1976587) + - PCI: vmd: Assign VMD IRQ domain before enumeration + - PCI: vmd: Revert 2565e5b69c44 ("PCI: vmd: Do not disable MSI-X remapping if + interrupt remapping is enabled by IOMMU.") + * [SRU][Jammy/OEM-5.17][PATCH 0/1] Fix calltrace in mac80211 (LP: #1978297) + - mac80211: fix struct ieee80211_tx_info size + * [SRU][Jammy][PATCH 0/1] Fix amd display corruption on s2idle resume + (LP: #1978244) + - drm/amd/display: Don't reinitialize DMCUB on s0ix resume + * pl2303 serial adapter not recognized (LP: #1967493) + - USB: serial: pl2303: fix type detection for odd device + * Remove SAUCE patches from test_vxlan_under_vrf.sh in net of + ubuntu_kernel_selftests (LP: #1975691) + - Revert "UBUNTU: SAUCE: selftests: net: Don't fail test_vxlan_under_vrf on + xfail" + - Revert "UBUNTU: SAUCE: selftests: net: Make test for VXLAN underlay in non- + default VRF an expected failure" + * Fix hp_wmi_read_int() reporting error (0x05) (LP: #1979051) + - platform/x86: hp-wmi: Fix hp_wmi_read_int() reporting error (0x05) + * Request to back port vmci patches to Ubuntu kernel (LP: #1978145) + - VMCI: dma dg: whitespace formatting change for vmci register defines + - VMCI: dma dg: add MMIO access to registers + - VMCI: dma dg: detect DMA datagram capability + - VMCI: dma dg: set OS page size + - VMCI: dma dg: register dummy IRQ handlers for DMA datagrams + - VMCI: dma dg: allocate send and receive buffers for DMA datagrams + - VMCI: dma dg: add support for DMA datagrams sends + - VMCI: dma dg: add support for DMA datagrams receive + - VMCI: Fix some error handling paths in vmci_guest_probe_device() + - VMCI: Release notification_bitmap in error path + - VMCI: Check exclusive_vectors when freeing interrupt 1 + - VMCI: Add support for ARM64 + - [Config] Update policies for VMWARE_VMCI and VMWARE_VMCI_VSOCKETS + * [UBUNTU 20.04] rcu stalls with many storage key guests (LP: #1975582) + - s390/gmap: voluntarily schedule during key setting + - s390/mm: use non-quiescing sske for KVM switch to keyed guest + * [SRU][OEM-5.14/OEM-5.17/Jammy][PATCH 0/1] Fix i915 calltrace on new ADL BIOS + (LP: #1976214) + - drm/i915: update new TMDS clock setting defined by VBT + * Revert PPC get_user workaround (LP: #1976248) + - powerpc: Export mmu_feature_keys[] as non-GPL + * Jammy update: v5.15.39 upstream stable release (LP: #1978240) + - MIPS: Fix CP0 counter erratum detection for R4k CPUs + - parisc: Merge model and model name into one line in /proc/cpuinfo + - ALSA: hda/realtek: Add quirk for Yoga Duet 7 13ITL6 speakers + - ALSA: fireworks: fix wrong return count shorter than expected by 4 bytes + - mmc: sdhci-msm: Reset GCC_SDCC_BCR register for SDHC + - mmc: sunxi-mmc: Fix DMA descriptors allocated above 32 bits + - mmc: core: Set HS clock speed before sending HS CMD13 + - gpiolib: of: fix bounds check for 'gpio-reserved-ranges' + - x86/fpu: Prevent FPU state corruption + - KVM: x86/svm: Account for family 17h event renumberings in + amd_pmc_perf_hw_id + - iommu/vt-d: Calculate mask for non-aligned flushes + - iommu/arm-smmu-v3: Fix size calculation in arm_smmu_mm_invalidate_range() + - drm/amd/display: Avoid reading audio pattern past AUDIO_CHANNELS_COUNT + - drm/amdgpu: do not use passthrough mode in Xen dom0 + - RISC-V: relocate DTB if it's outside memory region + - Revert "SUNRPC: attempt AF_LOCAL connect on setup" + - timekeeping: Mark NMI safe time accessors as notrace + - firewire: fix potential uaf in outbound_phy_packet_callback() + - firewire: remove check of list iterator against head past the loop body + - firewire: core: extend card->lock in fw_core_handle_bus_reset + - net: stmmac: disable Split Header (SPH) for Intel platforms + - genirq: Synchronize interrupt thread startup + - ASoC: da7219: Fix change notifications for tone generator frequency + - ASoC: wm8958: Fix change notifications for DSP controls + - ASoC: meson: Fix event generation for AUI ACODEC mux + - ASoC: meson: Fix event generation for G12A tohdmi mux + - ASoC: meson: Fix event generation for AUI CODEC mux + - s390/dasd: fix data corruption for ESE devices + - s390/dasd: prevent double format of tracks for ESE devices + - s390/dasd: Fix read for ESE with blksize < 4k + - s390/dasd: Fix read inconsistency for ESE DASD devices + - can: grcan: grcan_close(): fix deadlock + - can: isotp: remove re-binding of bound socket + - can: grcan: use ofdev->dev when allocating DMA memory + - can: grcan: grcan_probe(): fix broken system id check for errata workaround + needs + - can: grcan: only use the NAPI poll budget for RX + - nfc: replace improper check device_is_registered() in netlink related + functions + - nfc: nfcmrvl: main: reorder destructive operations in + nfcmrvl_nci_unregister_dev to avoid bugs + - NFC: netlink: fix sleep in atomic bug when firmware download timeout + - gpio: visconti: Fix fwnode of GPIO IRQ + - gpio: pca953x: fix irq_stat not updated when irq is disabled (irq_mask not + set) + - hwmon: (adt7470) Fix warning on module removal + - hwmon: (pmbus) disable PEC if not enabled + - ASoC: dmaengine: Restore NULL prepare_slave_config() callback + - ASoC: soc-ops: fix error handling + - iommu/vt-d: Drop stop marker messages + - iommu/dart: check return value after calling platform_get_resource() + - net/mlx5e: Fix trust state reset in reload + - net/mlx5e: Don't match double-vlan packets if cvlan is not set + - net/mlx5e: CT: Fix queued up restore put() executing after relevant ft + release + - net/mlx5e: Fix the calling of update_buffer_lossy() API + - net/mlx5: Avoid double clear or set of sync reset requested + - net/mlx5: Fix deadlock in sync reset flow + - selftests/seccomp: Don't call read() on TTY from background pgrp + - SUNRPC release the transport of a relocated task with an assigned transport + - RDMA/siw: Fix a condition race issue in MPA request processing + - RDMA/irdma: Flush iWARP QP if modified to ERR from RTR state + - RDMA/irdma: Reduce iWARP QP destroy time + - RDMA/irdma: Fix possible crash due to NULL netdev in notifier + - NFSv4: Don't invalidate inode attributes on delegation return + - net: ethernet: mediatek: add missing of_node_put() in mtk_sgmii_init() + - net: dsa: mt7530: add missing of_node_put() in mt7530_setup() + - net: stmmac: dwmac-sun8i: add missing of_node_put() in + sun8i_dwmac_register_mdio_mux() + - net: mdio: Fix ENOMEM return value in BCM6368 mux bus controller + - net: cpsw: add missing of_node_put() in cpsw_probe_dt() + - net: igmp: respect RCU rules in ip_mc_source() and ip_mc_msfilter() + - net: emaclite: Add error handling for of_address_to_resource() + - selftests/net: so_txtime: fix parsing of start time stamp on 32 bit systems + - selftests/net: so_txtime: usage(): fix documentation of default clock + - drm/msm/dp: remove fail safe mode related code + - btrfs: do not BUG_ON() on failure to update inode when setting xattr + - hinic: fix bug of wq out of bound access + - mld: respect RCU rules in ip6_mc_source() and ip6_mc_msfilter() + - rxrpc: Enable IPv6 checksums on transport socket + - selftests: mirror_gre_bridge_1q: Avoid changing PVID while interface is + operational + - bnxt_en: Fix possible bnxt_open() failure caused by wrong RFS flag + - bnxt_en: Fix unnecessary dropping of RX packets + - selftests: ocelot: tc_flower_chains: specify conform-exceed action for + policer + - smsc911x: allow using IRQ0 + - btrfs: force v2 space cache usage for subpage mount + - btrfs: always log symlinks in full mode + - gpio: mvebu: drop pwm base assignment + - kvm: x86/cpuid: Only provide CPUID leaf 0xA if host has architectural PMU + - net/mlx5: Fix slab-out-of-bounds while reading resource dump menu + - net/mlx5e: Lag, Fix use-after-free in fib event handler + - net/mlx5e: Lag, Fix fib_info pointer assignment + - net/mlx5e: Lag, Don't skip fib events on current dst + - iommu/dart: Add missing module owner to ops structure + - kvm: selftests: do not use bitfields larger than 32-bits for PTEs + - KVM: selftests: Silence compiler warning in the kvm_page_table_test + - x86/kvm: Preserve BSP MSR_KVM_POLL_CONTROL across suspend/resume + - KVM: x86: Do not change ICR on write to APIC_SELF_IPI + - KVM: x86/mmu: avoid NULL-pointer dereference on page freeing bugs + - KVM: LAPIC: Enable timer posted-interrupt only when mwait/hlt is advertised + - selftest/vm: verify mmap addr in mremap_test + - selftest/vm: verify remap destination address in mremap_test + - Revert "parisc: Mark sched_clock unstable only if clocks are not + syncronized" + - rcu: Fix callbacks processing time limit retaining cond_resched() + - rcu: Apply callbacks processing time limit only on softirq + - PCI: pci-bridge-emul: Add description for class_revision field + - PCI: pci-bridge-emul: Add definitions for missing capabilities registers + - PCI: aardvark: Add support for DEVCAP2, DEVCTL2, LNKCAP2 and LNKCTL2 + registers on emulated bridge + - PCI: aardvark: Clear all MSIs at setup + - PCI: aardvark: Comment actions in driver remove method + - PCI: aardvark: Disable bus mastering when unbinding driver + - PCI: aardvark: Mask all interrupts when unbinding driver + - PCI: aardvark: Fix memory leak in driver unbind + - PCI: aardvark: Assert PERST# when unbinding driver + - PCI: aardvark: Disable link training when unbinding driver + - PCI: aardvark: Disable common PHY when unbinding driver + - PCI: aardvark: Replace custom PCIE_CORE_INT_* macros with PCI_INTERRUPT_* + - PCI: aardvark: Check return value of generic_handle_domain_irq() when + processing INTx IRQ + - PCI: aardvark: Make MSI irq_chip structures static driver structures + - PCI: aardvark: Make msi_domain_info structure a static driver structure + - PCI: aardvark: Use dev_fwnode() instead of of_node_to_fwnode(dev->of_node) + - PCI: aardvark: Refactor unmasking summary MSI interrupt + - PCI: aardvark: Add support for masking MSI interrupts + - PCI: aardvark: Fix setting MSI address + - PCI: aardvark: Enable MSI-X support + - PCI: aardvark: Add support for ERR interrupt on emulated bridge + - PCI: aardvark: Optimize writing PCI_EXP_RTCTL_PMEIE and PCI_EXP_RTSTA_PME on + emulated bridge + - PCI: aardvark: Add support for PME interrupts + - PCI: aardvark: Fix support for PME requester on emulated bridge + - PCI: aardvark: Use separate INTA interrupt for emulated root bridge + - PCI: aardvark: Remove irq_mask_ack() callback for INTx interrupts + - PCI: aardvark: Don't mask irq when mapping + - PCI: aardvark: Drop __maybe_unused from advk_pcie_disable_phy() + - PCI: aardvark: Update comment about link going down after link-up + - Linux 5.15.39 + * Jammy update: v5.15.38 upstream stable release (LP: #1978234) + - usb: mtu3: fix USB 3.0 dual-role-switch from device to host + - USB: quirks: add a Realtek card reader + - USB: quirks: add STRING quirk for VCOM device + - USB: serial: whiteheat: fix heap overflow in WHITEHEAT_GET_DTR_RTS + - USB: serial: cp210x: add PIDs for Kamstrup USB Meter Reader + - USB: serial: option: add support for Cinterion MV32-WA/MV32-WB + - USB: serial: option: add Telit 0x1057, 0x1058, 0x1075 compositions + - usb: xhci: tegra:Fix PM usage reference leak of + tegra_xusb_unpowergate_partitions + - xhci: Enable runtime PM on second Alderlake controller + - xhci: stop polling roothubs after shutdown + - xhci: increase usb U3 -> U0 link resume timeout from 100ms to 500ms + - iio: dac: ad5592r: Fix the missing return value. + - iio: dac: ad5446: Fix read_raw not returning set value + - iio: magnetometer: ak8975: Fix the error handling in ak8975_power_on() + - iio: imu: inv_icm42600: Fix I2C init possible nack + - usb: misc: fix improper handling of refcount in uss720_probe() + - usb: core: Don't hold the device lock while sleeping in do_proc_control() + - usb: typec: ucsi: Fix reuse of completion structure + - usb: typec: ucsi: Fix role swapping + - usb: gadget: uvc: Fix crash when encoding data for usb request + - usb: gadget: configfs: clear deactivation flag in + configfs_composite_unbind() + - usb: dwc3: Try usb-role-switch first in dwc3_drd_init + - usb: dwc3: core: Fix tx/rx threshold settings + - usb: dwc3: core: Only handle soft-reset in DCTL + - usb: dwc3: gadget: Return proper request status + - usb: dwc3: pci: add support for the Intel Meteor Lake-P + - usb: cdns3: Fix issue for clear halt endpoint + - usb: phy: generic: Get the vbus supply + - serial: imx: fix overrun interrupts in DMA mode + - serial: amba-pl011: do not time out prematurely when draining tx fifo + - serial: 8250: Also set sticky MCR bits in console restoration + - serial: 8250: Correct the clock for EndRun PTP/1588 PCIe device + - arch_topology: Do not set llc_sibling if llc_id is invalid + - ceph: fix possible NULL pointer dereference for req->r_session + - bus: mhi: host: pci_generic: Add missing poweroff() PM callback + - bus: mhi: host: pci_generic: Flush recovery worker during freeze + - arm64: dts: imx8mm-venice: fix spi2 pin configuration + - pinctrl: samsung: fix missing GPIOLIB on ARM64 Exynos config + - hex2bin: make the function hex_to_bin constant-time + - hex2bin: fix access beyond string end + - riscv: patch_text: Fixup last cpu should be master + - x86/pci/xen: Disable PCI/MSI[-X] masking for XEN_HVM guests + - iocost: don't reset the inuse weight of under-weighted debtors + - virtio_net: fix wrong buf address calculation when using xdp + - cpufreq: qcom-hw: fix the race between LMH worker and cpuhp + - cpufreq: qcom-cpufreq-hw: Fix throttle frequency value on EPSS platforms + - video: fbdev: udlfb: properly check endpoint type + - arm64: dts: meson: remove CPU opps below 1GHz for G12B boards + - arm64: dts: meson: remove CPU opps below 1GHz for SM1 boards + - iio:imu:bmi160: disable regulator in error path + - mtd: rawnand: fix ecc parameters for mt7622 + - xsk: Fix l2fwd for copy mode + busy poll combo + - arm64: dts: imx8qm: Correct SCU clock controller's compatible property + - USB: Fix xhci event ring dequeue pointer ERDP update issue + - ARM: dts: imx6qdl-apalis: Fix sgtl5000 detection issue + - arm64: dts: imx8mn: Fix SAI nodes + - arm64: dts: meson-sm1-bananapi-m5: fix wrong GPIO pin labeling for CON1 + - phy: samsung: Fix missing of_node_put() in exynos_sata_phy_probe + - phy: samsung: exynos5250-sata: fix missing device put in probe error paths + - ARM: OMAP2+: Fix refcount leak in omap_gic_of_init + - bus: ti-sysc: Make omap3 gpt12 quirk handling SoC specific + - ARM: dts: dra7: Fix suspend warning for vpe powerdomain + - phy: ti: omap-usb2: Fix error handling in omap_usb2_enable_clocks + - ARM: dts: at91: Map MCLK for wm8731 on at91sam9g20ek + - ARM: dts: at91: sama5d4_xplained: fix pinctrl phandle name + - ARM: dts: at91: fix pinctrl phandles + - phy: mapphone-mdm6600: Fix PM error handling in phy_mdm6600_probe + - phy: ti: Add missing pm_runtime_disable() in serdes_am654_probe + - interconnect: qcom: sdx55: Drop IP0 interconnects + - ARM: dts: Fix mmc order for omap3-gta04 + - ARM: dts: am3517-evm: Fix misc pinmuxing + - ARM: dts: logicpd-som-lv: Fix wrong pinmuxing on OMAP35 + - ipvs: correctly print the memory size of ip_vs_conn_tab + - phy: amlogic: fix error path in phy_g12a_usb3_pcie_probe() + - pinctrl: mediatek: moore: Fix build error + - mtd: rawnand: Fix return value check of wait_for_completion_timeout + - mtd: fix 'part' field data corruption in mtd_info + - pinctrl: stm32: Do not call stm32_gpio_get() for edge triggered IRQs in EOI + - memory: renesas-rpc-if: Fix HF/OSPI data transfer in Manual Mode + - net: dsa: Add missing of_node_put() in dsa_port_link_register_of + - netfilter: nft_set_rbtree: overlap detection with element re-addition after + deletion + - bpf, lwt: Fix crash when using bpf_skb_set_tunnel_key() from bpf_xmit lwt + hook + - pinctrl: rockchip: fix RK3308 pinmux bits + - tcp: md5: incorrect tcp_header_len for incoming connections + - pinctrl: stm32: Keep pinctrl block clock enabled when LEVEL IRQ requested + - tcp: ensure to use the most recently sent skb when filling the rate sample + - wireguard: device: check for metadata_dst with skb_valid_dst() + - sctp: check asoc strreset_chunk in sctp_generate_reconf_event + - ARM: dts: imx6ull-colibri: fix vqmmc regulator + - arm64: dts: imx8mn-ddr4-evk: Describe the 32.768 kHz PMIC clock + - pinctrl: pistachio: fix use of irq_of_parse_and_map() + - cpufreq: fix memory leak in sun50i_cpufreq_nvmem_probe + - net: hns3: clear inited state and stop client after failed to register + netdev + - net: hns3: modify the return code of hclge_get_ring_chain_from_mbx + - net: hns3: add validity check for message data length + - net: hns3: add return value for mailbox handling in PF + - net/smc: sync err code when tcp connection was refused + - ip_gre: Make o_seqno start from 0 in native mode + - ip6_gre: Make o_seqno start from 0 in native mode + - ip_gre, ip6_gre: Fix race condition on o_seqno in collect_md mode + - tcp: fix potential xmit stalls caused by TCP_NOTSENT_LOWAT + - tcp: make sure treq->af_specific is initialized + - bus: sunxi-rsb: Fix the return value of sunxi_rsb_device_create() + - clk: sunxi: sun9i-mmc: check return value after calling + platform_get_resource() + - cpufreq: qcom-cpufreq-hw: Clear dcvs interrupts + - net: bcmgenet: hide status block before TX timestamping + - net: phy: marvell10g: fix return value on error + - net: dsa: mv88e6xxx: Fix port_hidden_wait to account for port_base_addr + - drm/sun4i: Remove obsolete references to PHYS_OFFSET + - net: dsa: lantiq_gswip: Don't set GSWIP_MII_CFG_RMII_CLK + - io_uring: check reserved fields for send/sendmsg + - io_uring: check reserved fields for recv/recvmsg + - netfilter: conntrack: fix udp offload timeout sysctl + - drm/amdkfd: Fix GWS queue count + - drm/amd/display: Fix memory leak in dcn21_clock_source_create + - tls: Skip tls_append_frag on zero copy size + - bnx2x: fix napi API usage sequence + - net: fec: add missing of_node_put() in fec_enet_init_stop_mode() + - gfs2: Prevent endless loops in gfs2_file_buffered_write + - gfs2: Minor retry logic cleanup + - gfs2: Make sure not to return short direct writes + - gfs2: No short reads or writes upon glock contention + - perf arm-spe: Fix addresses of synthesized SPE events + - ixgbe: ensure IPsec VF<->PF compatibility + - Revert "ibmvnic: Add ethtool private flag for driver-defined queue limits" + - tcp: fix F-RTO may not work correctly when receiving DSACK + - ASoC: Intel: soc-acpi: correct device endpoints for max98373 + - ASoC: wm8731: Disable the regulator when probing fails + - ext4: fix bug_on in start_this_handle during umount filesystem + - arch: xtensa: platforms: Fix deadlock in rs_close() + - ksmbd: increment reference count of parent fp + - ksmbd: set fixed sector size to FS_SECTOR_SIZE_INFORMATION + - bonding: do not discard lowest hash bit for non layer3+4 hashing + - x86: __memcpy_flushcache: fix wrong alignment if size > 2^32 + - cifs: destage any unwritten data to the server before calling + copychunk_write + - drivers: net: hippi: Fix deadlock in rr_close() + - powerpc/perf: Fix 32bit compile + - selftest/vm: verify mmap addr in mremap_test + - selftest/vm: verify remap destination address in mremap_test + - Revert "ACPI: processor: idle: fix lockup regression on 32-bit ThinkPad T40" + - zonefs: Fix management of open zones + - zonefs: Clear inode information flags on inode creation + - kasan: prevent cpu_quarantine corruption when CPU offline and cache shrink + occur at same time + - mtd: rawnand: qcom: fix memory corruption that causes panic + - netfilter: Update ip6_route_me_harder to consider L3 domain + - drm/i915: Check EDID for HDR static metadata when choosing blc + - drm/i915: Fix SEL_FETCH_PLANE_*(PIPE_B+) register addresses + - net: ethernet: stmmac: fix write to sgmii_adapter_base + - ACPI: processor: idle: Avoid falling back to C3 type C-states + - thermal: int340x: Fix attr.show callback prototype + - btrfs: fix leaked plug after failure syncing log on zoned filesystems + - ARM: dts: at91: sama7g5ek: enable pull-up on flexcom3 console lines + - ARM: dts: imx8mm-venice-gw{71xx,72xx,73xx}: fix OTG controller OC mode + - x86/cpu: Load microcode during restore_processor_state() + - perf symbol: Pass is_kallsyms to symbols__fixup_end() + - perf symbol: Update symbols__fixup_end() + - tty: n_gsm: fix restart handling via CLD command + - tty: n_gsm: fix decoupled mux resource + - tty: n_gsm: fix mux cleanup after unregister tty device + - tty: n_gsm: fix wrong signal octet encoding in convergence layer type 2 + - tty: n_gsm: fix malformed counter for out of frame data + - netfilter: nft_socket: only do sk lookups when indev is available + - tty: n_gsm: fix insufficient txframe size + - tty: n_gsm: fix wrong DLCI release order + - tty: n_gsm: fix missing explicit ldisc flush + - tty: n_gsm: fix wrong command retry handling + - tty: n_gsm: fix wrong command frame length field encoding + - tty: n_gsm: fix wrong signal octets encoding in MSC + - tty: n_gsm: fix missing tty wakeup in convergence layer type 2 + - tty: n_gsm: fix reset fifo race condition + - tty: n_gsm: fix incorrect UA handling + - tty: n_gsm: fix software flow control handling + - perf symbol: Remove arch__symbols__fixup_end() + - eeprom: at25: Use DMA safe buffers + - objtool: Fix code relocs vs weak symbols + - objtool: Fix type of reloc::addend + - powerpc/64: Add UADDR64 relocation support + - Linux 5.15.38 + * Jammy update: v5.15.37 upstream stable release (LP: #1976135) + - floppy: disable FDRAWCMD by default + - [Config] updateconfigs for BLK_DEV_FD_RAWCMD + - bpf: Introduce composable reg, ret and arg types. + - bpf: Replace ARG_XXX_OR_NULL with ARG_XXX | PTR_MAYBE_NULL + - bpf: Replace RET_XXX_OR_NULL with RET_XXX | PTR_MAYBE_NULL + - bpf: Replace PTR_TO_XXX_OR_NULL with PTR_TO_XXX | PTR_MAYBE_NULL + - bpf: Introduce MEM_RDONLY flag + - bpf: Convert PTR_TO_MEM_OR_NULL to composable types. + - bpf: Make per_cpu_ptr return rdonly PTR_TO_MEM. + - bpf: Add MEM_RDONLY for helper args that are pointers to rdonly mem. + - bpf/selftests: Test PTR_TO_RDONLY_MEM + - bpf: Fix crash due to out of bounds access into reg2btf_ids. + - spi: cadence-quadspi: fix write completion support + - ARM: dts: socfpga: change qspi to "intel,socfpga-qspi" + - mm: kfence: fix objcgs vector allocation + - gup: Turn fault_in_pages_{readable,writeable} into + fault_in_{readable,writeable} + - iov_iter: Turn iov_iter_fault_in_readable into fault_in_iov_iter_readable + - iov_iter: Introduce fault_in_iov_iter_writeable + - gfs2: Add wrapper for iomap_file_buffered_write + - gfs2: Clean up function may_grant + - gfs2: Introduce flag for glock holder auto-demotion + - gfs2: Move the inode glock locking to gfs2_file_buffered_write + - gfs2: Eliminate ip->i_gh + - gfs2: Fix mmap + page fault deadlocks for buffered I/O + - iomap: Fix iomap_dio_rw return value for user copies + - iomap: Support partial direct I/O on user copy failures + - iomap: Add done_before argument to iomap_dio_rw + - gup: Introduce FOLL_NOFAULT flag to disable page faults + - iov_iter: Introduce nofault flag to disable page faults + - gfs2: Fix mmap + page fault deadlocks for direct I/O + - btrfs: fix deadlock due to page faults during direct IO reads and writes + - btrfs: fallback to blocking mode when doing async dio over multiple extents + - mm: gup: make fault_in_safe_writeable() use fixup_user_fault() + - selftests/bpf: Add test for reg2btf_ids out of bounds access + - Linux 5.15.37 + * CVE-2022-1789 + - KVM: x86/mmu: fix NULL pointer dereference on guest INVPCID + * Jammy update: v5.15.36 upstream stable release (LP: #1972905) + - block: simplify the block device syncing code + - xfs: return errors in xfs_fs_sync_fs + - dma-mapping: remove bogus test for pfn_valid from dma_map_resource + - arm64/mm: drop HAVE_ARCH_PFN_VALID + - etherdevice: Adjust ether_addr* prototypes to silence -Wstringop-overead + - mm: page_alloc: fix building error on -Werror=array-compare + - perf tools: Fix segfault accessing sample_id xyarray + - mm, kfence: support kmem_dump_obj() for KFENCE objects + - gfs2: assign rgrp glock before compute_bitstructs + - scsi: ufs: core: scsi_get_lba() error fix + - ALSA: usb-audio: Clear MIDI port active flag after draining + - ALSA: hda/realtek: Add quirk for Clevo NP70PNP + - ASoC: atmel: Remove system clock tree configuration for at91sam9g20ek + - ASoC: topology: Correct error handling in soc_tplg_dapm_widget_create() + - ASoC: rk817: Use devm_clk_get() in rk817_platform_probe + - ASoC: msm8916-wcd-digital: Check failure for devm_snd_soc_register_component + - ASoC: codecs: wcd934x: do not switch off SIDO Buck when codec is in use + - dmaengine: idxd: fix device cleanup on disable + - dmaengine: imx-sdma: Fix error checking in sdma_event_remap + - dmaengine: mediatek:Fix PM usage reference leak of + mtk_uart_apdma_alloc_chan_resources + - dmaengine: dw-edma: Fix unaligned 64bit access + - spi: spi-mtk-nor: initialize spi controller after resume + - esp: limit skb_page_frag_refill use to a single page + - spi: cadence-quadspi: fix incorrect supports_op() return value + - igc: Fix infinite loop in release_swfw_sync + - igc: Fix BUG: scheduling while atomic + - igc: Fix suspending when PTM is active + - ALSA: hda/hdmi: fix warning about PCM count when used with SOF + - rxrpc: Restore removed timer deletion + - net/smc: Fix sock leak when release after smc_shutdown() + - net/packet: fix packet_sock xmit return value checking + - ip6_gre: Avoid updating tunnel->tun_hlen in __gre6_xmit() + - ip6_gre: Fix skb_under_panic in __gre6_xmit() + - net: restore alpha order to Ethernet devices in config + - net/sched: cls_u32: fix possible leak in u32_init_knode() + - l3mdev: l3mdev_master_upper_ifindex_by_index_rcu should be using + netdev_master_upper_dev_get_rcu + - ipv6: make ip6_rt_gc_expire an atomic_t + - can: isotp: stop timeout monitoring when no first frame was sent + - net: dsa: hellcreek: Calculate checksums in tagger + - net: mscc: ocelot: fix broken IP multicast flooding + - netlink: reset network and mac headers in netlink_dump() + - drm/i915/display/psr: Unset enable_psr2_sel_fetch if other checks in + intel_psr2_config_valid() fails + - net: stmmac: Use readl_poll_timeout_atomic() in atomic state + - dmaengine: idxd: add RO check for wq max_batch_size write + - dmaengine: idxd: add RO check for wq max_transfer_size write + - dmaengine: idxd: skip clearing device context when device is read-only + - selftests: mlxsw: vxlan_flooding: Prevent flooding of unwanted packets + - arm64: mm: fix p?d_leaf() + - ARM: vexpress/spc: Avoid negative array index when !SMP + - reset: renesas: Check return value of reset_control_deassert() + - reset: tegra-bpmp: Restore Handle errors in BPMP response + - platform/x86: samsung-laptop: Fix an unsigned comparison which can never be + negative + - ALSA: usb-audio: Fix undefined behavior due to shift overflowing the + constant + - drm/msm/disp: check the return value of kzalloc() + - arm64: dts: imx: Fix imx8*-var-som touchscreen property sizes + - vxlan: fix error return code in vxlan_fdb_append + - cifs: Check the IOCB_DIRECT flag, not O_DIRECT + - mt76: Fix undefined behavior due to shift overflowing the constant + - brcmfmac: sdio: Fix undefined behavior due to shift overflowing the constant + - dpaa_eth: Fix missing of_node_put in dpaa_get_ts_info() + - drm/msm/mdp5: check the return of kzalloc() + - net: macb: Restart tx only if queue pointer is lagging + - scsi: iscsi: Release endpoint ID when its freed + - scsi: iscsi: Merge suspend fields + - scsi: iscsi: Fix NOP handling during conn recovery + - scsi: qedi: Fix failed disconnect handling + - stat: fix inconsistency between struct stat and struct compat_stat + - VFS: filename_create(): fix incorrect intent. + - nvme: add a quirk to disable namespace identifiers + - nvme-pci: disable namespace identifiers for the MAXIO MAP1002/1202 + - nvme-pci: disable namespace identifiers for Qemu controllers + - EDAC/synopsys: Read the error count from the correct register + - mm/memory-failure.c: skip huge_zero_page in memory_failure() + - memcg: sync flush only if periodic flush is delayed + - mm, hugetlb: allow for "high" userspace addresses + - oom_kill.c: futex: delay the OOM reaper to allow time for proper futex + cleanup + - mm/mmu_notifier.c: fix race in mmu_interval_notifier_remove() + - ata: pata_marvell: Check the 'bmdma_addr' beforing reading + - dma: at_xdmac: fix a missing check on list iterator + - dmaengine: imx-sdma: fix init of uart scripts + - net: atlantic: invert deep par in pm functions, preventing null derefs + - Input: omap4-keypad - fix pm_runtime_get_sync() error checking + - scsi: sr: Do not leak information in ioctl + - sched/pelt: Fix attach_entity_load_avg() corner case + - perf/core: Fix perf_mmap fail when CONFIG_PERF_USE_VMALLOC enabled + - drm/panel/raspberrypi-touchscreen: Avoid NULL deref if not initialised + - drm/panel/raspberrypi-touchscreen: Initialise the bridge in prepare + - KVM: PPC: Fix TCE handling for VFIO + - drm/vc4: Use pm_runtime_resume_and_get to fix pm_runtime_get_sync() usage + - powerpc/perf: Fix power9 event alternatives + - powerpc/perf: Fix power10 event alternatives + - perf script: Always allow field 'data_src' for auxtrace + - perf report: Set PERF_SAMPLE_DATA_SRC bit for Arm SPE event + - xtensa: patch_text: Fixup last cpu should be master + - xtensa: fix a7 clobbering in coprocessor context load/store + - openvswitch: fix OOB access in reserve_sfa_size() + - ASoC: soc-dapm: fix two incorrect uses of list iterator + - e1000e: Fix possible overflow in LTR decoding + - ARC: entry: fix syscall_trace_exit argument + - arm_pmu: Validate single/group leader events + - KVM: x86/pmu: Update AMD PMC sample period to fix guest NMI-watchdog + - KVM: x86: Pend KVM_REQ_APICV_UPDATE during vCPU creation to fix a race + - KVM: nVMX: Defer APICv updates while L2 is active until L1 is active + - KVM: SVM: Flush when freeing encrypted pages even on SME_COHERENT CPUs + - netfilter: conntrack: convert to refcount_t api + - netfilter: conntrack: avoid useless indirection during conntrack destruction + - ext4: fix fallocate to use file_modified to update permissions consistently + - ext4: fix symlink file size not match to file content + - ext4: fix use-after-free in ext4_search_dir + - ext4, doc: fix incorrect h_reserved size + - ext4: fix overhead calculation to account for the reserved gdt blocks + - ext4: force overhead calculation if the s_overhead_cluster makes no sense + - netfilter: nft_ct: fix use after free when attaching zone template + - jbd2: fix a potential race while discarding reserved buffers after an abort + - spi: atmel-quadspi: Fix the buswidth adjustment between spi-mem and + controller + - block/compat_ioctl: fix range check in BLKGETSIZE + - arm64: dts: qcom: add IPA qcom,qmp property + - Linux 5.15.36 + * Aquantia GbE LAN driver causes UBSAN error during kernel boot + (LP: #1958770) // Jammy update: v5.15.36 upstream stable release + (LP: #1972905) + - net: atlantic: Avoid out-of-bounds indexing + * jammy/linux: 5.15.0-40.43 -proposed tracker (LP: #1978610) + * Packaging resync (LP: #1786013) + - debian/dkms-versions -- update from kernel-versions (main/2022.05.30) + * [SRU][OEM-5.14/OEM-5.17/J][PATCH 0/2] Fix system hangs after s2idle on AMD + A+A GPU (LP: #1975804) + - Revert "drm/amd/pm: keep the BACO feature enabled for suspend" + - drm/amd: Don't reset dGPUs if the system is going to s2idle + * [SRU][OEM-5.14/OEM-5.17/J][PATCH 0/1] Read the discovery registers for + AMD_SFH (LP: #1975798) + - HID: amd_sfh: Add support for sensor discovery + * [UBUNTU 20.04] CPU-MF: add extended counter set definitions for new IBM z16 + (LP: #1974433) + - s390/cpumf: add new extended counter set for IBM z16 + * [UBUNTU 20.04] KVM nesting support leaks too much memory, might result in + stalls during cleanup (LP: #1974017) + - KVM: s390: vsie/gmap: reduce gmap_rmap overhead + * [UBUNTU 20.04] Null Pointer issue in nfs code running Ubuntu on IBM Z + (LP: #1968096) + - NFS: Fix up nfs_ctx_key_to_expire() + * Fix REG_WAIT timeout for Yellow Carp (LP: #1971417) + - drm/amd/display: Clear encoder assignments when state cleared. + - drm/amd/display: fix stale info in link encoder assignment + - drm/amd/display: Query all entries in assignment table during updates. + - drm/amd/display: Initialise encoder assignment when initialising dc_state + * Enable hotspot feature for Realtek 8821CE (LP: #1969326) + - rtw88: Add update beacon flow for AP mode + - rtw88: 8821c: Enable TX report for management frames + - rtw88: do PHY calibration while starting AP + - rtw88: 8821c: fix debugfs rssi value + - rtw88: add ieee80211:sta_rc_update ops + * prevent kernel panic with overlayfs + shiftfs (LP: #1973620) + - SAUCE: overlayfs: prevent dereferencing struct file in ovl_vm_prfile_set() + * disable Intel DMA remapping by default (LP: #1971699) + - Revert "UBUNTU: [Config] enable Intel DMA remapping options by default" + * Mute/mic LEDs no function on Elitebook 630 (LP: #1974111) + - ALSA: hda/realtek: fix right sounds and mute/micmute LEDs for HP machine + * [Regression] Real-time Kernel Build Failure (LP: #1972899) + - x86/mm: Include spinlock_t definition in pgtable. + * build backport-iwlwifi-dkms as linux-modules-iwlwifi-ABI (LP: #1969434) + - [Packaging] support standalone dkms module builds + - [Packaging] drop do_ arch specific configs + * IPU6 camera has no function on Andrews MLK (LP: #1964983) + - SAUCE: IPU6: 2022-03-11 alpha release for Andrews MLK + - [Config] IPU6: enable OV02C10 sensor + - SAUCE: IPU6: 2022-04-01 Andrews MLK PV release + - SAUCE: spi: ljca: return when a sub-transaction first failed + - SACUE: ljca: disable parallelly stub write + - SAUCE: ljca: fix race condition issue in runtime PM + - SAUCE: i2c-ljca: fix a null pointer access issue on tgl + - SAUCE: ljca: fix a typo issue + - SAUCE: ljca: assume stub enum failed as a warning + - SAUCE: mei: cleanup header file including + - SAUCE: intel_ulpss: Replaced by LJCA and remove + - [Config] drop intel_ulpss in favor of by LJCA + * multiple UBSAN warnings in Intel IPU6 camera driver at boot (LP: #1958006) + - SAUCE: media: pci: intel: Avoid UBSAN warnings of index bound and shift + * Support Intel IPU6 MIPI camera on Alder Lake platforms (LP: #1955383) + - SAUCE: intel ipu drivers first release + - SAUCE: IPU driver release WW48 + - SAUCE: IPU driver release WW48 with MCU + - SAUCE: IPU driver release WW52 + - SAUCE: IPU driver release WW04 + - SAUCE: IPU driver release WW14 + - SAUCE: Fix ov01a1s output mirror issue + - SAUCE: integrate IPU6 builds + - [Config] updateconfigs for IPU6 driver + - SAUCE: Fix ov01a1s IQ issues + - SAUCE: intel/ipu6: Remove unnecessary video devices + - SAUCE: change power control driver to acpi driver + - SAUCE: IPU6 driver release for kernel 5.13 + - SAUCE: sensor HM11b1 brightness bugfix + - SAUCE: Fix build error on Kernel 5.13 + - SAUCE: IPU6 driver release for kernel 5.14 on 2021-11-01 + - [Config] IPU6: enable OV01A10 sensor + - SAUCE: Fix build error for kernel 5.15 + - SAUCE: intel visual sensing controller(VSC) driver first release + - [Config] ivsc: enable Intel VSC drivers + - SAUCE: ivsc: return error when device not ready + - SAUCE: ivsc: add soft dependencies for intel_vsc module + - SAUCE: ljca: switch wait event to uninterruptible + - SAUCE: mei-vsc: switch wait event to uninterruptible + - SAUCE: mei_vsc: add ACPI HID for ADL + - SAUCE: ljca: add multi ACPI HID support + - SAUCE: ivsc: add delay for acquire camera to wait firmware ready + - SAUCE: mei_vsc: distinguish platform with different camera sensor + - SAUCE: i2c-ljca: fix a potential issue + - SAUCE: ljca: disable autosuspend by default + - [Config] make Intel IPU6 modules amd64 only + - SAUCE: IPU6: drop unnecessary cflags manipulation + + -- Philip Cox Tue, 23 Aug 2022 16:49:25 -0400 + +linux-intel-iotg-5.15 (5.15.0-1010.14~20.04.1) focal; urgency=medium + + * re-apply missing overlayfs SAUCE patch (LP: #1967924) + - SAUCE: overlayfs: prevent dereferencing struct file in ovl_vm_prfile_set() + + [ Ubuntu: 5.15.0-1010.14 ] + + * CVE-2022-21123 // CVE-2022-21125 // CVE-2022-21166 + - Documentation: Add documentation for Processor MMIO Stale Data + - x86/speculation/mmio: Enumerate Processor MMIO Stale Data bug + - x86/speculation: Add a common function for MD_CLEAR mitigation update + - x86/speculation/mmio: Add mitigation for Processor MMIO Stale Data + - x86/bugs: Group MDS, TAA & Processor MMIO Stale Data mitigations + - x86/speculation/mmio: Enable CPU Fill buffer clearing on idle + - x86/speculation/mmio: Add sysfs reporting for Processor MMIO Stale Data + - x86/speculation/srbds: Update SRBDS mitigation selection + - x86/speculation/mmio: Reuse SRBDS mitigation for SBDS + - KVM: x86/speculation: Disable Fill buffer clear within guests + - x86/speculation/mmio: Print SMT warning + + -- Marcelo Henrique Cerri Tue, 14 Jun 2022 17:53:35 -0300 + +linux-intel-iotg-5.15 (5.15.0-1008.11~20.04.1) focal; urgency=medium + + [ Ubuntu: 5.15.0-1008.11 ] + + * netfilter newset OOB write (LP: #1976363) + - netfilter: nf_tables: sanitize nft_set_desc_concat_parse() + * CVE-2022-1966 + - netfilter: nf_tables: disallow non-stateful expression in sets earlier + + -- Thadeu Lima de Souza Cascardo Mon, 06 Jun 2022 15:23:21 -0300 + linux-intel-iotg-5.15 (5.15.0-1006.8~20.04.1) focal; urgency=medium * focal/linux-intel-iotg-5.15: 5.15.0-1006.8~20.04.1 -proposed tracker diff -u linux-intel-iotg-5.15-5.15.0/debian.intel-iotg-5.15/config/annotations linux-intel-iotg-5.15-5.15.0/debian.intel-iotg-5.15/config/annotations --- linux-intel-iotg-5.15-5.15.0/debian.intel-iotg-5.15/config/annotations +++ linux-intel-iotg-5.15-5.15.0/debian.intel-iotg-5.15/config/annotations @@ -45,6 +45,14 @@ +# Menu: Device Drivers >> Industrial I/O support >> Accelerometers +CONFIG_ADXL345 policy<{'amd64': 'm'}> +CONFIG_ADXL345_I2C policy<{'amd64': 'm'}> +CONFIG_ADXL345_SPI policy<{'amd64': 'm'}> +CONFIG_INPUT_ADXL34X policy<{'amd64': 'n'}> +CONFIG_INPUT_ADXL34X_I2C policy<{'amd64': '-'}> +CONFIG_INPUT_ADXL34X_SPI policy<{'amd64': '-'}> + # Menu: Kernel hacking >> Memory Debugging >> KFENCE: low-overhead sampling-based memory safety error detector CONFIG_KFENCE policy<{'amd64': 'n', 'arm64': 'n'}> CONFIG_KFENCE_STATIC_KEYS policy<{'amd64': '-', 'arm64': '-'}> @@ -53,6 +61,10 @@ CONFIG_KFENCE_STRESS_TEST_FAULTS policy<{'amd64': '-', 'arm64': '-'}> # CONFIG_KFENCE mark note + +# This build isn't intended to be run on the Yellow Carp AMD platform. +CONFIG_SND_SOC_AMD_YC_MACH policy<{'amd64': '-'}> +CONFIG_SND_SOC_AMD_ACP6x policy<{'amd64': 'n'}> CONFIG_AUFS_BDEV_LOOP policy<{'amd64': 'y',}> CONFIG_AUFS_BDEV_LOOP mark note CONFIG_AUFS_BRANCH_MAX_1023 policy<{'amd64': 'n',}> diff -u linux-intel-iotg-5.15-5.15.0/debian.intel-iotg-5.15/config/config.common.ubuntu linux-intel-iotg-5.15-5.15.0/debian.intel-iotg-5.15/config/config.common.ubuntu --- linux-intel-iotg-5.15-5.15.0/debian.intel-iotg-5.15/config/config.common.ubuntu +++ linux-intel-iotg-5.15-5.15.0/debian.intel-iotg-5.15/config/config.common.ubuntu @@ -200,6 +200,9 @@ CONFIG_ADVANTECH_WDT=m CONFIG_ADVISE_SYSCALLS=y CONFIG_ADV_SWBUTTON=m +CONFIG_ADXL345=m +CONFIG_ADXL345_I2C=m +CONFIG_ADXL345_SPI=m CONFIG_ADXL372=m CONFIG_ADXL372_I2C=m CONFIG_ADXL372_SPI=m @@ -734,6 +737,7 @@ CONFIG_BLK_DEV_DM_BUILTIN=y CONFIG_BLK_DEV_DRBD=m CONFIG_BLK_DEV_FD=m +# CONFIG_BLK_DEV_FD_RAWCMD is not set CONFIG_BLK_DEV_INITRD=y CONFIG_BLK_DEV_INTEGRITY=y CONFIG_BLK_DEV_INTEGRITY_T10=y @@ -1034,6 +1038,7 @@ CONFIG_CC_HAS_INT128=y CONFIG_CC_HAS_KASAN_GENERIC=y CONFIG_CC_HAS_NO_PROFILE_FN_ATTR=y +CONFIG_CC_HAS_RETURN_THUNK=y CONFIG_CC_HAS_SANCOV_TRACE_PC=y CONFIG_CC_HAS_SANE_STACKPROTECTOR=y CONFIG_CC_HAS_UBSAN_BOUNDS=y @@ -1383,6 +1388,8 @@ CONFIG_CPU_FREQ_GOV_USERSPACE=y CONFIG_CPU_FREQ_STAT=y # CONFIG_CPU_HOTPLUG_STATE_CONTROL is not set +CONFIG_CPU_IBPB_ENTRY=y +CONFIG_CPU_IBRS_ENTRY=y CONFIG_CPU_IDLE=y CONFIG_CPU_IDLE_GOV_HALTPOLL=y CONFIG_CPU_IDLE_GOV_LADDER=y @@ -1395,6 +1402,7 @@ CONFIG_CPU_SUP_HYGON=y CONFIG_CPU_SUP_INTEL=y CONFIG_CPU_SUP_ZHAOXIN=y +CONFIG_CPU_UNRET_ENTRY=y CONFIG_CRAMFS=m CONFIG_CRAMFS_BLOCKDEV=y CONFIG_CRAMFS_MTD=y @@ -1447,7 +1455,7 @@ CONFIG_CRYPTO_ALGAPI=y CONFIG_CRYPTO_ALGAPI2=y CONFIG_CRYPTO_ANSI_CPRNG=m -CONFIG_CRYPTO_ARCH_HAVE_LIB_BLAKE2S=m +CONFIG_CRYPTO_ARCH_HAVE_LIB_BLAKE2S=y CONFIG_CRYPTO_ARCH_HAVE_LIB_CHACHA=m CONFIG_CRYPTO_ARCH_HAVE_LIB_CURVE25519=m CONFIG_CRYPTO_ARCH_HAVE_LIB_POLY1305=m @@ -1545,8 +1553,7 @@ CONFIG_CRYPTO_KPP2=y CONFIG_CRYPTO_LIB_AES=y CONFIG_CRYPTO_LIB_ARC4=m -CONFIG_CRYPTO_LIB_BLAKE2S=m -CONFIG_CRYPTO_LIB_BLAKE2S_GENERIC=m +CONFIG_CRYPTO_LIB_BLAKE2S_GENERIC=y CONFIG_CRYPTO_LIB_CHACHA=m CONFIG_CRYPTO_LIB_CHACHA20POLY1305=m CONFIG_CRYPTO_LIB_CHACHA_GENERIC=m @@ -2219,6 +2226,7 @@ CONFIG_EDAC_I7CORE=m CONFIG_EDAC_I82975X=m CONFIG_EDAC_IE31200=m +CONFIG_EDAC_IEH=m CONFIG_EDAC_IGEN6=m # CONFIG_EDAC_LEGACY_SYSFS is not set CONFIG_EDAC_PND2=m @@ -2709,7 +2717,7 @@ CONFIG_GPIO_ARIZONA=m CONFIG_GPIO_BD9571MWV=m CONFIG_GPIO_CDEV=y -# CONFIG_GPIO_CDEV_V1 is not set +CONFIG_GPIO_CDEV_V1=y CONFIG_GPIO_CRYSTAL_COVE=y CONFIG_GPIO_DA9052=m CONFIG_GPIO_DA9055=m @@ -2724,6 +2732,7 @@ CONFIG_GPIO_IT87=m CONFIG_GPIO_JANZ_TTL=m CONFIG_GPIO_KEMPLD=m +CONFIG_GPIO_LJCA=m CONFIG_GPIO_LP3943=m CONFIG_GPIO_LP873X=m CONFIG_GPIO_MADERA=m @@ -3207,6 +3216,7 @@ CONFIG_I2C_ISCH=m CONFIG_I2C_ISMT=m CONFIG_I2C_KEMPLD=m +CONFIG_I2C_LJCA=m CONFIG_I2C_MLXCPLD=m CONFIG_I2C_MUX=m CONFIG_I2C_MUX_GPIO=m @@ -3368,7 +3378,6 @@ # CONFIG_IMA_READ_POLICY is not set # CONFIG_IMA_SECURE_AND_OR_TRUSTED_BOOT is not set # CONFIG_IMA_SIG_TEMPLATE is not set -# CONFIG_IMA_TEMPLATE is not set CONFIG_IMA_TRUSTED_KEYRING=y # CONFIG_IMA_WRITE_POLICY is not set CONFIG_IMG_ASCII_LCD=m @@ -3447,9 +3456,7 @@ CONFIG_INPUT_AD714X=m CONFIG_INPUT_AD714X_I2C=m CONFIG_INPUT_AD714X_SPI=m -CONFIG_INPUT_ADXL34X=m -CONFIG_INPUT_ADXL34X_I2C=m -CONFIG_INPUT_ADXL34X_SPI=m +# CONFIG_INPUT_ADXL34X is not set CONFIG_INPUT_APANEL=m CONFIG_INPUT_ARIZONA_HAPTICS=m CONFIG_INPUT_ATC260X_ONKEY=m @@ -3547,9 +3554,9 @@ CONFIG_INTEL_INT0002_VGPIO=m CONFIG_INTEL_IOATDMA=m CONFIG_INTEL_IOMMU=y -CONFIG_INTEL_IOMMU_DEFAULT_ON=y +# CONFIG_INTEL_IOMMU_DEFAULT_ON is not set CONFIG_INTEL_IOMMU_FLOPPY_WA=y -CONFIG_INTEL_IOMMU_SCALABLE_MODE_DEFAULT_ON=y +# CONFIG_INTEL_IOMMU_SCALABLE_MODE_DEFAULT_ON is not set CONFIG_INTEL_IOMMU_SVM=y CONFIG_INTEL_IPS=m CONFIG_INTEL_ISHTP_ECLITE=m @@ -3563,6 +3570,7 @@ CONFIG_INTEL_MEI_ME=m CONFIG_INTEL_MEI_TXE=m CONFIG_INTEL_MEI_VIRTIO=m +CONFIG_INTEL_MEI_VSC=m CONFIG_INTEL_MEI_WDT=m CONFIG_INTEL_MENLOW=m CONFIG_INTEL_MRFLD_ADC=m @@ -3609,6 +3617,11 @@ CONFIG_INTEL_TXT=y CONFIG_INTEL_UNCORE_FREQ_CONTROL=m CONFIG_INTEL_VBTN=m +CONFIG_INTEL_VSC=m +CONFIG_INTEL_VSC_ACE=m +CONFIG_INTEL_VSC_ACE_DEBUG=m +CONFIG_INTEL_VSC_CSI=m +CONFIG_INTEL_VSC_PSE=m CONFIG_INTEL_WMI=y CONFIG_INTEL_WMI_SBL_FW_UPDATE=m CONFIG_INTEL_WMI_THUNDERBOLT=m @@ -4487,6 +4500,7 @@ CONFIG_MFD_IQS62X=m CONFIG_MFD_JANZ_CMODIO=m CONFIG_MFD_KEMPLD=m +CONFIG_MFD_LJCA=m CONFIG_MFD_LM3533=m CONFIG_MFD_LP3943=m CONFIG_MFD_LP8788=y @@ -5785,7 +5799,7 @@ CONFIG_PCIE_DW_PLAT_EP=y CONFIG_PCIE_DW_PLAT_HOST=y # CONFIG_PCIE_ECRC is not set -# CONFIG_PCIE_EDR is not set +CONFIG_PCIE_EDR=y CONFIG_PCIE_PME=y CONFIG_PCIE_PTM=y CONFIG_PCIPCWATCHDOG=m @@ -5957,6 +5971,7 @@ CONFIG_POSIX_MQUEUE_SYSCTL=y CONFIG_POSIX_TIMERS=y CONFIG_POWERCAP=y +CONFIG_POWER_CTRL_LOGIC=m CONFIG_POWER_RESET=y CONFIG_POWER_RESET_ATC260X=m CONFIG_POWER_RESET_MT6323=y @@ -6330,6 +6345,7 @@ CONFIG_RESET_ATTACK_MITIGATION=y CONFIG_RESET_CONTROLLER=y CONFIG_RESET_TI_SYSCON=m +CONFIG_RETHUNK=y CONFIG_RETPOLINE=y CONFIG_RETU_WATCHDOG=m CONFIG_RFD77402=m @@ -7390,6 +7406,7 @@ CONFIG_SND_SOC_AMD_ACP=m CONFIG_SND_SOC_AMD_ACP3x=m CONFIG_SND_SOC_AMD_ACP5x=m +# CONFIG_SND_SOC_AMD_ACP6x is not set CONFIG_SND_SOC_AMD_CZ_DA7219MX98357_MACH=m CONFIG_SND_SOC_AMD_CZ_RT5645_MACH=m CONFIG_SND_SOC_AMD_RENOIR=m @@ -7788,6 +7805,7 @@ CONFIG_SPARSEMEM_VMEMMAP=y CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y CONFIG_SPARSE_IRQ=y +CONFIG_SPECULATION_MITIGATIONS=y CONFIG_SPI=y CONFIG_SPI_ALTERA=m CONFIG_SPI_ALTERA_CORE=m @@ -7808,6 +7826,7 @@ # CONFIG_SPI_INTEL_SPI_PCI is not set # CONFIG_SPI_INTEL_SPI_PLATFORM is not set CONFIG_SPI_LANTIQ_SSC=m +CONFIG_SPI_LJCA=m CONFIG_SPI_LM70_LLP=m CONFIG_SPI_LOOPBACK_TEST=m CONFIG_SPI_MASTER=y @@ -9014,6 +9033,7 @@ CONFIG_VIDEO_HEXIUM_GEMINI=m CONFIG_VIDEO_HEXIUM_ORION=m CONFIG_VIDEO_HI556=m +CONFIG_VIDEO_HM11B1=m CONFIG_VIDEO_I2C=m CONFIG_VIDEO_IMX208=m CONFIG_VIDEO_IMX214=m @@ -9023,6 +9043,7 @@ CONFIG_VIDEO_IMX290=m CONFIG_VIDEO_IMX319=m CONFIG_VIDEO_IMX355=m +CONFIG_VIDEO_INTEL_IPU6=m CONFIG_VIDEO_IPU3_CIO2=m CONFIG_VIDEO_IPU3_IMGU=m CONFIG_VIDEO_IR_I2C=m @@ -9049,7 +9070,10 @@ CONFIG_VIDEO_MT9V111=m CONFIG_VIDEO_MXB=m CONFIG_VIDEO_NOON010PC30=m +CONFIG_VIDEO_OV01A10=m +CONFIG_VIDEO_OV01A1S=m CONFIG_VIDEO_OV02A10=m +CONFIG_VIDEO_OV02C10=m CONFIG_VIDEO_OV13858=m CONFIG_VIDEO_OV2640=m CONFIG_VIDEO_OV2659=m diff -u linux-intel-iotg-5.15-5.15.0/debian.intel-iotg-5.15/control.stub.in linux-intel-iotg-5.15-5.15.0/debian.intel-iotg-5.15/control.stub.in --- linux-intel-iotg-5.15-5.15.0/debian.intel-iotg-5.15/control.stub.in +++ linux-intel-iotg-5.15-5.15.0/debian.intel-iotg-5.15/control.stub.in @@ -18,6 +18,7 @@ libdw-dev , libpci-dev , pkg-config , + python3-dev , flex , bison , libunwind8-dev [amd64 arm64 armhf ppc64el] , diff -u linux-intel-iotg-5.15-5.15.0/debian.intel-iotg-5.15/reconstruct linux-intel-iotg-5.15-5.15.0/debian.intel-iotg-5.15/reconstruct --- linux-intel-iotg-5.15-5.15.0/debian.intel-iotg-5.15/reconstruct +++ linux-intel-iotg-5.15-5.15.0/debian.intel-iotg-5.15/reconstruct @@ -2,11 +2,15 @@ # Remove any files deleted from the orig. rm -f 'arch/hexagon/include/asm/timer-regs.h' rm -f 'drivers/gpu/drm/amd/display/dc/dsc/qp_tables.h' +rm -f 'drivers/gpu/drm/msm/hdmi/hdmi_connector.c' rm -f 'drivers/gpu/drm/vmwgfx/vmwgfx_thp.c' rm -f 'drivers/of/of_net.c' rm -f 'drivers/platform/x86/i2c-multi-instantiate.c' rm -f 'drivers/staging/most/dim2/sysfs.c' +rm -f 'include/trace/events/random.h' rm -f 'tools/build/feature/test-libpython-version.c' +rm -f 'tools/perf/arch/arm64/util/machine.c' +rm -f 'tools/perf/arch/powerpc/util/machine.c' rm -f 'tools/perf/util/bpf_skel/bperf.h' chmod +x 'debian.intel-iotg-5.15/scripts/helpers/copy-files' chmod +x 'debian.intel-iotg-5.15/scripts/helpers/local-mangle' diff -u linux-intel-iotg-5.15-5.15.0/debian.intel-iotg-5.15/tracking-bug linux-intel-iotg-5.15-5.15.0/debian.intel-iotg-5.15/tracking-bug --- linux-intel-iotg-5.15-5.15.0/debian.intel-iotg-5.15/tracking-bug +++ linux-intel-iotg-5.15-5.15.0/debian.intel-iotg-5.15/tracking-bug @@ -1 +1 @@ -1976402 2022.05.09-5 +1983883 2022.08.08-1 diff -u linux-intel-iotg-5.15-5.15.0/debian.intel-iotg-5.15/variants linux-intel-iotg-5.15-5.15.0/debian.intel-iotg-5.15/variants --- linux-intel-iotg-5.15-5.15.0/debian.intel-iotg-5.15/variants +++ linux-intel-iotg-5.15-5.15.0/debian.intel-iotg-5.15/variants @@ -1 +1,2 @@ +-- -edge diff -u linux-intel-iotg-5.15-5.15.0/debian.intel-iotg/abi/abiname linux-intel-iotg-5.15-5.15.0/debian.intel-iotg/abi/abiname --- linux-intel-iotg-5.15-5.15.0/debian.intel-iotg/abi/abiname +++ linux-intel-iotg-5.15-5.15.0/debian.intel-iotg/abi/abiname @@ -1 +1 @@ -1005 +1014 diff -u linux-intel-iotg-5.15-5.15.0/debian.intel-iotg/abi/amd64/intel-iotg linux-intel-iotg-5.15-5.15.0/debian.intel-iotg/abi/amd64/intel-iotg --- linux-intel-iotg-5.15-5.15.0/debian.intel-iotg/abi/amd64/intel-iotg +++ linux-intel-iotg-5.15-5.15.0/debian.intel-iotg/abi/amd64/intel-iotg @@ -1,25 +1,24 @@ -CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x16ad7ac6 crypto_cipher_encrypt_one vmlinux -CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0xa85a549d crypto_cipher_decrypt_one vmlinux -CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0xad90f176 crypto_cipher_setkey vmlinux -CXL EXPORT_SYMBOL_GPL 0x1d02e85c is_root_decoder drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x2989224b cxl_driver_unregister drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x2d298ee4 cxl_bus_type drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x336940e1 devm_cxl_add_nvdimm_bridge drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x338e4e5f cxl_map_component_regs drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x38dc1e24 cxl_map_device_regs drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x3f096412 to_cxl_nvdimm_bridge drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x45813447 devm_cxl_add_decoder drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x6dd2bb0f cxl_add_dport drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x8208da24 devm_cxl_add_nvdimm drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x9484bb00 devm_cxl_add_memdev drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x95084e33 to_cxl_decoder drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xa13ca98d devm_cxl_add_port drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xb76e6502 cxl_probe_component_regs drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xb7c10188 __cxl_driver_register drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xc3ec4dc9 to_cxl_nvdimm drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xc623772f is_cxl_nvdimm drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xe6e988c1 cxl_probe_device_regs drivers/cxl/core/cxl_core -EXPORT_SYMBOL arch/x86/crypto/blake2s-x86_64 0x23aa18fe blake2s_compress_arch +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x08f3d531 crypto_cipher_decrypt_one vmlinux +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x3fb17889 crypto_cipher_setkey vmlinux +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x854c62dd crypto_cipher_encrypt_one vmlinux +CXL EXPORT_SYMBOL_GPL 0x00d951b0 to_cxl_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x0bd1989e cxl_bus_type drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x136bc29e cxl_driver_unregister drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x221afe1a is_cxl_nvdimm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x24f23c9d cxl_map_component_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x4e5461a2 devm_cxl_add_nvdimm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x607278e5 devm_cxl_add_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x62358d60 devm_cxl_add_port drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x71bdfe1c cxl_map_device_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x8cdf7529 cxl_probe_component_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x8f1771f4 cxl_add_dport drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x97f32210 devm_cxl_add_memdev drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xa2aa33bd __cxl_driver_register drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xb613355c to_cxl_nvdimm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xc92ad427 to_cxl_nvdimm_bridge drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xcc59c983 is_root_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xd8bf47cc devm_cxl_add_nvdimm_bridge drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xe4340369 cxl_probe_device_regs drivers/cxl/core/cxl_core EXPORT_SYMBOL arch/x86/crypto/chacha-x86_64 0x220b49ab chacha_crypt_arch EXPORT_SYMBOL arch/x86/crypto/chacha-x86_64 0xdc94f829 chacha_init_arch EXPORT_SYMBOL arch/x86/crypto/chacha-x86_64 0xdd8ec6bd hchacha_block_arch @@ -28,7 +27,7 @@ EXPORT_SYMBOL arch/x86/crypto/poly1305-x86_64 0xd9ec23eb poly1305_update_arch EXPORT_SYMBOL arch/x86/crypto/poly1305-x86_64 0xe1df0e1b poly1305_init_arch EXPORT_SYMBOL arch/x86/crypto/poly1305-x86_64 0xfaeb41b2 poly1305_final_arch -EXPORT_SYMBOL arch/x86/kvm/kvm 0xf2d7e583 kvm_cpu_has_pending_timer +EXPORT_SYMBOL arch/x86/kvm/kvm 0x050d6af4 kvm_cpu_has_pending_timer EXPORT_SYMBOL crypto/blake2b_generic 0x32e24c8a blake2b_compress_generic EXPORT_SYMBOL crypto/ecc 0x16e410ff vli_from_be64 EXPORT_SYMBOL crypto/ecc 0x188a1647 ecc_is_pubkey_valid_full @@ -55,1124 +54,1124 @@ EXPORT_SYMBOL crypto/sha3_generic 0x1f1f4407 crypto_sha3_update EXPORT_SYMBOL crypto/sha3_generic 0x492c9beb crypto_sha3_final EXPORT_SYMBOL crypto/sha3_generic 0xe5efeb6c crypto_sha3_init -EXPORT_SYMBOL crypto/sm2_generic 0x0339b982 sm2_compute_z_digest -EXPORT_SYMBOL crypto/sm3_generic 0x439193a9 crypto_sm3_update -EXPORT_SYMBOL crypto/sm3_generic 0x8c2feec6 crypto_sm3_final -EXPORT_SYMBOL crypto/sm3_generic 0xafd55d1e crypto_sm3_finup +EXPORT_SYMBOL crypto/sm2_generic 0x20e472ad sm2_compute_z_digest +EXPORT_SYMBOL crypto/sm3_generic 0x2501d596 crypto_sm3_update +EXPORT_SYMBOL crypto/sm3_generic 0x88b3b39f crypto_sm3_finup +EXPORT_SYMBOL crypto/sm3_generic 0xb4144d2a crypto_sm3_final EXPORT_SYMBOL crypto/xor 0x5b6c00e6 xor_blocks EXPORT_SYMBOL drivers/acpi/nfit/nfit 0x06848c60 to_nfit_uuid -EXPORT_SYMBOL drivers/acpi/video 0x35068f27 acpi_video_get_levels -EXPORT_SYMBOL drivers/acpi/video 0x5dadd7ed acpi_video_get_edid +EXPORT_SYMBOL drivers/acpi/video 0x5dd8269a acpi_video_get_edid EXPORT_SYMBOL drivers/acpi/video 0x6de7f7ff acpi_video_get_backlight_type EXPORT_SYMBOL drivers/acpi/video 0x7a45377b acpi_video_unregister EXPORT_SYMBOL drivers/acpi/video 0x7cc484a5 acpi_video_handles_brightness_key_presses +EXPORT_SYMBOL drivers/acpi/video 0x82b859e5 acpi_video_get_levels EXPORT_SYMBOL drivers/acpi/video 0x8826c13b acpi_video_register EXPORT_SYMBOL drivers/acpi/video 0xe92ca535 acpi_video_set_dmi_backlight_type -EXPORT_SYMBOL drivers/atm/suni 0xa8a2b084 suni_init -EXPORT_SYMBOL drivers/atm/uPD98402 0xabc25c9a uPD98402_init -EXPORT_SYMBOL drivers/bcma/bcma 0x18632abd bcma_core_dma_translation -EXPORT_SYMBOL drivers/bcma/bcma 0xf6ab2adc bcma_core_irq +EXPORT_SYMBOL drivers/atm/suni 0x07c5b8bf suni_init +EXPORT_SYMBOL drivers/atm/uPD98402 0xd3d71ce8 uPD98402_init +EXPORT_SYMBOL drivers/bcma/bcma 0x3baa0f4d bcma_core_irq +EXPORT_SYMBOL drivers/bcma/bcma 0xf57e55c2 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 0x0e8b31fb pi_do_claimed -EXPORT_SYMBOL drivers/block/paride/paride 0x29800632 pi_read_regr +EXPORT_SYMBOL drivers/block/paride/paride 0x1eecae35 pi_write_block EXPORT_SYMBOL drivers/block/paride/paride 0x4267110a pi_register_driver -EXPORT_SYMBOL drivers/block/paride/paride 0x64e7239a paride_register -EXPORT_SYMBOL drivers/block/paride/paride 0x98de4996 pi_disconnect -EXPORT_SYMBOL drivers/block/paride/paride 0x9e10ca5f paride_unregister -EXPORT_SYMBOL drivers/block/paride/paride 0xa0871d8c pi_connect -EXPORT_SYMBOL drivers/block/paride/paride 0xa5568c3e pi_read_block +EXPORT_SYMBOL drivers/block/paride/paride 0x545d57b3 paride_register +EXPORT_SYMBOL drivers/block/paride/paride 0x6fc5922f pi_do_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0x84ff62cd pi_read_block +EXPORT_SYMBOL drivers/block/paride/paride 0x8661c7a4 pi_disconnect +EXPORT_SYMBOL drivers/block/paride/paride 0x8f3e2734 paride_unregister +EXPORT_SYMBOL drivers/block/paride/paride 0x91158678 pi_connect +EXPORT_SYMBOL drivers/block/paride/paride 0x995fd1f5 pi_schedule_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0xa074c6e7 pi_read_regr EXPORT_SYMBOL drivers/block/paride/paride 0xb21ba07d pi_unregister_driver -EXPORT_SYMBOL drivers/block/paride/paride 0xc3d73e7d pi_release -EXPORT_SYMBOL drivers/block/paride/paride 0xc8dd2277 pi_write_regr -EXPORT_SYMBOL drivers/block/paride/paride 0xe4f4024f pi_init -EXPORT_SYMBOL drivers/block/paride/paride 0xeb83039b pi_schedule_claimed -EXPORT_SYMBOL drivers/block/paride/paride 0xf42fd2d2 pi_write_block -EXPORT_SYMBOL drivers/bluetooth/btbcm 0x8e419fa5 btbcm_patchram -EXPORT_SYMBOL drivers/bluetooth/btrsi 0xd4c8145b rsi_bt_ops -EXPORT_SYMBOL drivers/bus/mhi/core/mhi 0xb42d3f44 mhi_sync_power_up +EXPORT_SYMBOL drivers/block/paride/paride 0xbb25e380 pi_release +EXPORT_SYMBOL drivers/block/paride/paride 0xce7623f0 pi_write_regr +EXPORT_SYMBOL drivers/block/paride/paride 0xeb78773c pi_init +EXPORT_SYMBOL drivers/bluetooth/btbcm 0xfa4166e7 btbcm_patchram +EXPORT_SYMBOL drivers/bluetooth/btrsi 0x6ad1f14d rsi_bt_ops +EXPORT_SYMBOL drivers/bus/mhi/core/mhi 0x80365f9b mhi_sync_power_up EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x03bc993e ipmi_set_my_LUN +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x04bfea88 ipmi_smi_watcher_register 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 0x230094ac ipmi_smi_watchdog_pretimeout +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x2c5da8d7 ipmi_smi_watcher_unregister EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x31cab048 ipmi_smi_msg_received EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x40f2b10c ipmi_alloc_smi_msg -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x4248b5bf ipmi_smi_watcher_unregister +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x4ba0711e ipmi_add_smi EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x4c2054d7 ipmi_request_settime EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x50f65edf ipmi_set_gets_events EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x67369b42 ipmi_addr_src_to_str +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x6c76b2a6 ipmi_get_smi_info EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x74778a80 ipmi_get_my_LUN EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x804f922a ipmi_addr_length EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x80aa4656 ipmi_free_recv_msg EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x89a5279a ipmi_get_version -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x95ea0797 ipmi_smi_watcher_register EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xaca90ebd ipmi_request_supply_msgs EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xae71627d ipmi_create_user -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xcd4bd16d ipmi_add_smi EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xd54a5050 ipmi_unregister_for_cmd EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe4330a39 ipmi_unregister_smi EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe4f4665b ipmi_validate_addr 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 0xf894d653 ipmi_get_smi_info 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 0x122dbe61 st33zp24_pm_suspend -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x46f28bef st33zp24_probe -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x95bfd2ca st33zp24_pm_resume -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xe07d228f st33zp24_remove -EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0x1d8b79cd xillybus_find_inode -EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0xc8f2cfda xillybus_init_chrdev -EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0xf89a0add xillybus_cleanup_chrdev -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x23007d2f xillybus_endpoint_remove +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x19636ec4 st33zp24_probe +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x9cacb928 st33zp24_remove +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xce6f14fe st33zp24_pm_suspend +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xd9c3d005 st33zp24_pm_resume +EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0x10c91429 xillybus_find_inode +EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0x8cac1626 xillybus_init_chrdev +EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0xbf07df01 xillybus_cleanup_chrdev EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x25978d50 xillybus_isr -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x9a722824 xillybus_endpoint_discovery -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xb482688d xillybus_init_endpoint -EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x0c7c60a8 atmel_i2c_probe -EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x273eb405 atmel_i2c_send_receive +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x3f06c9a5 xillybus_endpoint_discovery +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x54e9c7f3 xillybus_init_endpoint +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xe68daf28 xillybus_endpoint_remove +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x02283be1 atmel_i2c_send_receive +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x04c2428f atmel_i2c_enqueue +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x4718ed04 atmel_i2c_probe EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x80a11b1d atmel_i2c_init_read_cmd -EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xb20b45d0 atmel_i2c_enqueue EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xc71ed50c atmel_i2c_init_genkey_cmd 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/ccp/ccp 0x47d3c97f psp_check_tee_status EXPORT_SYMBOL drivers/crypto/ccp/ccp 0xaa04056c psp_tee_process_cmd -EXPORT_SYMBOL drivers/firewire/firewire-core 0x0a72b092 fw_run_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0x03345d5c fw_iso_context_flush_completions +EXPORT_SYMBOL drivers/firewire/firewire-core 0x071338ca fw_core_remove_card EXPORT_SYMBOL drivers/firewire/firewire-core 0x0bc6094c fw_core_remove_descriptor -EXPORT_SYMBOL drivers/firewire/firewire-core 0x0ec62835 fw_iso_context_flush_completions -EXPORT_SYMBOL drivers/firewire/firewire-core 0x11ed5e00 fw_iso_context_queue +EXPORT_SYMBOL drivers/firewire/firewire-core 0x0d507dcc fw_send_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x11c3f7ac fw_fill_response EXPORT_SYMBOL drivers/firewire/firewire-core 0x2885fec5 fw_get_request_speed -EXPORT_SYMBOL drivers/firewire/firewire-core 0x2f3ad4f5 fw_device_enable_phys_dma -EXPORT_SYMBOL drivers/firewire/firewire-core 0x3265c504 fw_schedule_bus_reset -EXPORT_SYMBOL drivers/firewire/firewire-core 0x35bce826 fw_cancel_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0x289cc602 fw_iso_context_start +EXPORT_SYMBOL drivers/firewire/firewire-core 0x38142ada fw_run_transaction 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 0x3ce7516c fw_iso_context_stop -EXPORT_SYMBOL drivers/firewire/firewire-core 0x410d6082 fw_iso_resource_manage -EXPORT_SYMBOL drivers/firewire/firewire-core 0x48bebee5 fw_card_initialize -EXPORT_SYMBOL drivers/firewire/firewire-core 0x4dfe2b91 fw_iso_buffer_init -EXPORT_SYMBOL drivers/firewire/firewire-core 0x52926cbb fw_iso_context_queue_flush -EXPORT_SYMBOL drivers/firewire/firewire-core 0x56bd1234 fw_bus_type -EXPORT_SYMBOL drivers/firewire/firewire-core 0x5b094f0a fw_iso_context_create -EXPORT_SYMBOL drivers/firewire/firewire-core 0x5c6d24a1 fw_iso_context_start +EXPORT_SYMBOL drivers/firewire/firewire-core 0x64ed467a fw_iso_context_queue_flush +EXPORT_SYMBOL drivers/firewire/firewire-core 0x696f1af3 fw_device_enable_phys_dma +EXPORT_SYMBOL drivers/firewire/firewire-core 0x6a8de239 fw_iso_buffer_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0x6d180166 fw_core_handle_request EXPORT_SYMBOL drivers/firewire/firewire-core 0x6dc50487 fw_csr_string -EXPORT_SYMBOL drivers/firewire/firewire-core 0x798d5e87 fw_core_handle_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0x72fb6e08 fw_card_initialize +EXPORT_SYMBOL drivers/firewire/firewire-core 0x783f4f90 fw_send_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7c00bb01 fw_core_handle_response EXPORT_SYMBOL drivers/firewire/firewire-core 0x86468d44 fw_rcode_string -EXPORT_SYMBOL drivers/firewire/firewire-core 0x867bedde fw_core_remove_address_handler -EXPORT_SYMBOL drivers/firewire/firewire-core 0x8be42af5 fw_iso_context_destroy -EXPORT_SYMBOL drivers/firewire/firewire-core 0x952fb9df fw_core_handle_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0x9fa9dc65 fw_core_remove_card -EXPORT_SYMBOL drivers/firewire/firewire-core 0xa9104d2d fw_core_add_address_handler -EXPORT_SYMBOL drivers/firewire/firewire-core 0xab52f464 fw_send_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x8bef9166 fw_card_add +EXPORT_SYMBOL drivers/firewire/firewire-core 0x9609024e fw_core_add_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0x9b41d17e fw_iso_context_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0xa3741044 fw_iso_buffer_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0xadc68a3a fw_iso_context_queue EXPORT_SYMBOL drivers/firewire/firewire-core 0xaedf84ce fw_high_memory_region -EXPORT_SYMBOL drivers/firewire/firewire-core 0xb64378af fw_fill_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0xcb33878c fw_send_request -EXPORT_SYMBOL drivers/firewire/firewire-core 0xcfe70e25 fw_card_add -EXPORT_SYMBOL drivers/firewire/firewire-core 0xd8b39d5e fw_iso_buffer_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0xbfbafdfc fw_iso_context_create +EXPORT_SYMBOL drivers/firewire/firewire-core 0xccdf6b74 fw_iso_resource_manage +EXPORT_SYMBOL drivers/firewire/firewire-core 0xcd2b8061 fw_schedule_bus_reset EXPORT_SYMBOL drivers/firewire/firewire-core 0xe3fde125 fw_csr_iterator_next -EXPORT_SYMBOL drivers/firewire/firewire-core 0xe606b518 fw_core_handle_bus_reset EXPORT_SYMBOL drivers/firewire/firewire-core 0xe80e5087 fw_csr_iterator_init -EXPORT_SYMBOL drivers/fpga/dfl 0x0244b203 __dfl_driver_register -EXPORT_SYMBOL drivers/fpga/dfl 0x4efe44f8 dfl_driver_unregister +EXPORT_SYMBOL drivers/firewire/firewire-core 0xec1da9a1 fw_bus_type +EXPORT_SYMBOL drivers/firewire/firewire-core 0xf4a0253c fw_iso_context_stop +EXPORT_SYMBOL drivers/firewire/firewire-core 0xf58fd9b3 fw_cancel_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0xf7fd7913 fw_core_remove_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0xfd3c277a fw_core_handle_bus_reset +EXPORT_SYMBOL drivers/fpga/dfl 0x932e4d7a __dfl_driver_register +EXPORT_SYMBOL drivers/fpga/dfl 0xd4934e1e dfl_driver_unregister EXPORT_SYMBOL drivers/gpu/drm/drm 0x00738a74 drm_driver_legacy_fb_format -EXPORT_SYMBOL drivers/gpu/drm/drm 0x008baca3 drm_display_info_set_bus_formats -EXPORT_SYMBOL drivers/gpu/drm/drm 0x014bad98 drm_syncobj_get_handle -EXPORT_SYMBOL drivers/gpu/drm/drm 0x017429a5 drm_connector_set_path_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0176c1b8 drm_gem_prime_import_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x01ca525d drm_framebuffer_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0218f4b3 drm_atomic_bridge_chain_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0x02a45420 drm_bridge_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x032f1691 drm_writeback_connector_init EXPORT_SYMBOL drivers/gpu/drm/drm 0x03c63897 __drm_get_edid_firmware_path -EXPORT_SYMBOL drivers/gpu/drm/drm 0x04a23626 drm_bridge_chain_mode_set -EXPORT_SYMBOL drivers/gpu/drm/drm 0x05a1c029 drm_modeset_lock_single_interruptible -EXPORT_SYMBOL drivers/gpu/drm/drm 0x05c1032e drm_atomic_set_crtc_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0460609b drm_plane_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x051fcd9d drm_i2c_encoder_save +EXPORT_SYMBOL drivers/gpu/drm/drm 0x05cedaf4 drm_gem_object_lookup EXPORT_SYMBOL drivers/gpu/drm/drm 0x065e86ac drm_detect_hdmi_monitor -EXPORT_SYMBOL drivers/gpu/drm/drm 0x06c21b04 drm_connector_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0x06f54aee drm_dev_unregister EXPORT_SYMBOL drivers/gpu/drm/drm 0x070b28aa drm_ht_remove_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0x07adf4b8 drm_crtc_send_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x07c01217 drm_add_modes_noedid EXPORT_SYMBOL drivers/gpu/drm/drm 0x07fb449a drm_vma_offset_manager_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0898565d drm_bridge_chain_mode_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a410d9b drm_i2c_encoder_save EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a72f765 drm_clflush_virt_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ab475a3 drm_atomic_get_new_connector_for_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ab952f1 drm_panel_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ba17c21 drm_panel_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0cf49291 drm_client_modeset_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d83d29e drm_connector_attach_tv_margin_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0b2cc966 drm_connector_attach_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0b7cb830 drm_gem_shmem_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d11de79 drm_mode_create_hdmi_colorspace_property EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d9b4753 drm_mode_equal -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d9c92ff drm_atomic_get_old_connector_for_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0e5ee460 drm_mode_object_find -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0eb2a201 drm_gem_create_mmap_offset_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0eb74352 drm_framebuffer_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0eb0104f drm_client_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ed16566 drm_bridge_chain_post_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f17fd80 drm_panel_enable EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f7acb66 drm_mm_print +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fc88595 drm_connector_set_tile_property EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fd60df2 drm_get_connector_status_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x101c7326 drm_bridge_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x106ff94e drm_dev_unregister EXPORT_SYMBOL drivers/gpu/drm/drm 0x107742a9 drm_get_subpixel_order_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x107d1c65 drm_get_edid_switcheroo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1093ed77 drm_panel_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x11b9ea1c drm_connector_atomic_hdr_metadata_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x11bd6eaa drm_probe_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1217886b drm_mode_create_tv_margin_properties EXPORT_SYMBOL drivers/gpu/drm/drm 0x127a8c6b drm_flip_work_queue -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1322f144 drm_atomic_state_default_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1434cc86 drm_atomic_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x14473092 drm_any_plane_has_format -EXPORT_SYMBOL drivers/gpu/drm/drm 0x155f46b8 drm_connector_has_possible_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0x156c26da drm_vblank_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x16c1669b drm_modeset_lock_all_ctx -EXPORT_SYMBOL drivers/gpu/drm/drm 0x16dd3847 drm_hdmi_vendor_infoframe_from_display_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x178d6d6b drm_client_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x18b5ea3e drm_gem_dmabuf_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x18e62249 drm_master_internal_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x19609cd0 drm_handle_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x19bb9964 drm_file_get_master -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a0d5206 drm_gem_fence_array_add_implicit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x129589e2 drm_dev_dbg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x13733b5e drm_property_create_object +EXPORT_SYMBOL drivers/gpu/drm/drm 0x141a7db1 drm_mode_is_420 +EXPORT_SYMBOL drivers/gpu/drm/drm 0x143f24ab drm_crtc_vblank_count_and_time +EXPORT_SYMBOL drivers/gpu/drm/drm 0x144082db drm_dev_printk +EXPORT_SYMBOL drivers/gpu/drm/drm 0x15e03c46 drm_crtc_vblank_helper_get_vblank_timestamp +EXPORT_SYMBOL drivers/gpu/drm/drm 0x16d12f20 drm_mode_object_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0x18f94071 drm_framebuffer_unregister_private +EXPORT_SYMBOL drivers/gpu/drm/drm 0x19644480 drm_send_event_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x19e1af60 drm_panel_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a0cfe07 drm_atomic_state_default_clear EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a411479 drm_syncobj_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1b4ce2ff drm_hdmi_avi_infoframe_content_type -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1baa2cc4 drm_property_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c426ec6 __drmm_encoder_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c85e307 drm_gem_shmem_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d34bd03 drm_gem_get_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d3f10e9 drm_gem_vm_open -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1e548166 drm_ioctl_kernel -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1fd8d482 drm_syncobj_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x20243b44 drm_gem_dmabuf_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x202bdba8 drm_atomic_state_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c5643bc drm_gem_shmem_create_with_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d718c3b drm_syncobj_find_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1dd61863 drm_cvt_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1e8f7c5e drm_client_framebuffer_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1ec324de drm_crtc_vblank_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1f5f5afb drm_atomic_get_connector_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x20b1734a drm_universal_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x20fcd504 drm_modeset_lock_single_interruptible +EXPORT_SYMBOL drivers/gpu/drm/drm 0x217823ff drm_file_get_master EXPORT_SYMBOL drivers/gpu/drm/drm 0x2183c08c drm_mm_scan_add_block -EXPORT_SYMBOL drivers/gpu/drm/drm 0x21912d7c drm_gem_vunmap EXPORT_SYMBOL drivers/gpu/drm/drm 0x21d541eb drm_flip_work_queue_task -EXPORT_SYMBOL drivers/gpu/drm/drm 0x22186011 drm_mode_set_config_internal -EXPORT_SYMBOL drivers/gpu/drm/drm 0x227984ef drm_open -EXPORT_SYMBOL drivers/gpu/drm/drm 0x22bf74f8 drm_modeset_acquire_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2301b55d drm_client_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0x247a2efa __drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2267937d drm_framebuffer_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x236d499d drm_atomic_private_obj_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0x236e221f drm_hdmi_avi_infoframe_bars +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2390f561 drm_color_lut_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0x247c4f2e drm_gem_unmap_dma_buf 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 0x24d316db drm_connector_list_iter_begin -EXPORT_SYMBOL drivers/gpu/drm/drm 0x24d86507 drm_master_internal_acquire -EXPORT_SYMBOL drivers/gpu/drm/drm 0x258307f4 drm_noop +EXPORT_SYMBOL drivers/gpu/drm/drm 0x252a4fa4 drm_modeset_unlock_all EXPORT_SYMBOL drivers/gpu/drm/drm 0x25daad93 __drm_mm_interval_first -EXPORT_SYMBOL drivers/gpu/drm/drm 0x25ffafa5 drm_plane_create_zpos_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x274e61cc drm_mode_validate_driver EXPORT_SYMBOL drivers/gpu/drm/drm 0x2754dad8 drm_mm_reserve_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0x27ce732a drm_connector_attach_content_type_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x27d003fb drm_atomic_private_obj_fini -EXPORT_SYMBOL drivers/gpu/drm/drm 0x280d15ab drm_dev_set_unique +EXPORT_SYMBOL drivers/gpu/drm/drm 0x27b93cff drm_gem_unlock_reservations +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2827bd7b drm_gem_prime_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0x28403e7c drm_invalid_op EXPORT_SYMBOL drivers/gpu/drm/drm 0x28779e52 drm_printf -EXPORT_SYMBOL drivers/gpu/drm/drm 0x29da254d drm_mode_create_dp_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x288eff83 drm_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x29c1d733 drm_gem_cma_prime_import_sg_table_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x29dbfa15 drm_crtc_vblank_put EXPORT_SYMBOL drivers/gpu/drm/drm 0x29f078d1 drm_mode_legacy_fb_format -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a35e07f drm_warn_on_modeset_not_all_locked EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a962499 drm_mm_scan_init_with_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ca89b99 drm_modeset_acquire_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2b2916d5 drm_plane_create_color_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c42dd4a drm_gem_shmem_purge_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c5f5b28 drm_gem_shmem_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2cfc3ce7 drm_release_noglobal EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d50570f drm_rect_calc_hscale +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d9b3995 drm_hdmi_avi_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e186b2b drm_mode_create_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e334132 drm_client_buffer_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ea649ed drm_property_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2eb83adc drm_object_attach_property EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ed3c600 drm_mode_debug_printmodeline -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2fd2035c drm_connector_set_panel_orientation -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3076cc8f drm_writeback_cleanup_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f1315dd drm_crtc_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f2ebef7 drm_i2c_encoder_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f388f8f drm_gem_shmem_pin +EXPORT_SYMBOL drivers/gpu/drm/drm 0x308c14a1 drm_client_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x31118ae8 drm_display_info_set_bus_formats EXPORT_SYMBOL drivers/gpu/drm/drm 0x31b8a5e3 __drm_set_edid_firmware_path -EXPORT_SYMBOL drivers/gpu/drm/drm 0x32299bc4 drm_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x321b9db0 drm_vblank_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x324fc499 drm_i2c_encoder_dpms EXPORT_SYMBOL drivers/gpu/drm/drm 0x32a0cc37 drm_print_bits -EXPORT_SYMBOL drivers/gpu/drm/drm 0x32fa5941 drm_atomic_get_connector_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3698414e drm_gem_dmabuf_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x37ea8325 drm_framebuffer_plane_width -EXPORT_SYMBOL drivers/gpu/drm/drm 0x388df650 drm_crtc_vblank_count_and_time -EXPORT_SYMBOL drivers/gpu/drm/drm 0x39298179 drm_dev_unplug -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ab5afde drm_aperture_remove_conflicting_framebuffers +EXPORT_SYMBOL drivers/gpu/drm/drm 0x32b1b262 drm_writeback_get_out_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3363f761 drm_mode_put_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x33b8a92e drm_atomic_bridge_chain_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x34056b06 drm_gem_handle_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0x340716ad drm_property_create_bitmask +EXPORT_SYMBOL drivers/gpu/drm/drm 0x366d66b0 drm_print_regset32 +EXPORT_SYMBOL drivers/gpu/drm/drm 0x37c4cdc3 drm_client_modeset_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm 0x39c20550 drm_mode_crtc_set_gamma_size EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ab87110 drm_mode_equal_no_clocks -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3abc44b4 drm_gem_handle_create EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b0e5e9c __drm_puts_coredump -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b6d7f2a drm_mode_create_tv_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b83bc4f drm_atomic_check_only EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ba17eab drm_ht_insert_item -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3bac1699 drm_hdcp_update_content_protection +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3bbb1be0 drm_mode_validate_ycbcr420 +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c050d10 drm_i2c_encoder_init EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c22a4d8 drm_vma_offset_manager_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3cf830ad drm_property_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3d0e3fa6 drm_syncobj_find_fence -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3da38370 drm_atomic_bridge_chain_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c427864 drm_atomic_get_new_bridge_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3d78069e drm_property_blob_put EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e50b109 drm_gem_fence_array_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e62f718 drm_gem_map_detach -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f3cc0c1 drm_atomic_private_obj_init EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f405489 __drm_printfn_err -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f544a19 drm_invalid_op -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f8cb1ae drm_calc_timestamping_constants -EXPORT_SYMBOL drivers/gpu/drm/drm 0x409f5f8e drm_i2c_encoder_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x40cad1a4 drm_gem_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x40f48f91 drm_set_preferred_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x413e0657 drm_dev_enter -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4147ba0d drm_connector_attach_scaling_mode_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x41a4a541 drm_mode_find_dmt -EXPORT_SYMBOL drivers/gpu/drm/drm 0x41a6fb33 drm_i2c_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x43e167dc drm_plane_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x43faeac1 drm_property_replace_global_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f8034fd drm_atomic_bridge_chain_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3fed6108 drm_plane_create_zpos_immutable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x41a05bae drm_prime_pages_to_sg EXPORT_SYMBOL drivers/gpu/drm/drm 0x4403a9c3 drm_mode_get_hv_timing -EXPORT_SYMBOL drivers/gpu/drm/drm 0x441624d9 drm_connector_attach_hdr_output_metadata_property EXPORT_SYMBOL drivers/gpu/drm/drm 0x44a2cadb drm_prime_sg_to_dma_addr_array +EXPORT_SYMBOL drivers/gpu/drm/drm 0x44a95bd2 drm_modeset_unlock +EXPORT_SYMBOL drivers/gpu/drm/drm 0x44cb23e3 drm_gem_cma_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4510b9ea drm_connector_attach_dp_subconnector_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4532fe9b drm_gem_handle_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4559e22e drm_connector_attach_content_protection_property EXPORT_SYMBOL drivers/gpu/drm/drm 0x4575a0ca drm_mode_set_crtcinfo -EXPORT_SYMBOL drivers/gpu/drm/drm 0x474385f6 drm_client_buffer_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x47cee9b7 drm_gem_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x47e3472e drm_gem_shmem_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x45dd0191 drm_gem_lock_reservations +EXPORT_SYMBOL drivers/gpu/drm/drm 0x46d75b51 drm_dev_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x47510c7d drm_atomic_print_new_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4824d883 drm_connector_list_iter_next EXPORT_SYMBOL drivers/gpu/drm/drm 0x4831da6e drm_vma_offset_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x48cfba5f drm_display_mode_from_cea_vic -EXPORT_SYMBOL drivers/gpu/drm/drm 0x48d4a106 drm_atomic_get_private_obj_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x499f84c9 drm_release_noglobal -EXPORT_SYMBOL drivers/gpu/drm/drm 0x49abf316 drm_i2c_encoder_prepare EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a35d30d drm_mode_set_name EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a7d75b0 drm_memcpy_from_wc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ad52167 drm_syncobj_find EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b7ebf95 drm_mm_remove_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c1be567 devm_aperture_acquire_from_firmware -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c2dfc55 drm_vblank_work_cancel_sync -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c6a813e drm_gem_prime_import_dev -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4cd99d92 drm_client_dev_hotplug -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d04e600 drm_plane_force_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4dca7883 drm_mode_create_aspect_ratio_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ea1c75c drm_atomic_add_affected_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4efa211f drm_connector_update_edid_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f03c6f2 drm_gem_dmabuf_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4bb60326 drm_crtc_vblank_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4bdc6a64 drm_vblank_work_cancel_sync +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ccec922 drm_property_blob_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4cf6c2bc drm_is_current_master +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4dbac631 drm_event_cancel_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4df82a96 drm_object_property_set_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e3c3262 __drm_atomic_helper_set_config EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f18a150 __drm_debug -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4fec74f0 drm_crtc_from_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0x502bfb95 drm_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4fda2d0b drm_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x500d2a8d drm_dev_enter EXPORT_SYMBOL drivers/gpu/drm/drm 0x50674de7 drm_timeout_abs_to_jiffies -EXPORT_SYMBOL drivers/gpu/drm/drm 0x50e1b858 drm_syncobj_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50a2d1a4 drm_plane_get_damage_clips_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50a787f9 drm_property_create_signed_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50faaaf4 drm_connector_attach_edid_property EXPORT_SYMBOL drivers/gpu/drm/drm 0x513072fe __drm_puts_seq_file +EXPORT_SYMBOL drivers/gpu/drm/drm 0x51982621 drm_event_reserve_init EXPORT_SYMBOL drivers/gpu/drm/drm 0x521ad6d0 drm_puts -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5245f892 drm_dev_has_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x53c2edfa drm_bridge_chain_mode_fixup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x546031f9 drm_mode_create_hdmi_colorspace_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x55361255 drm_atomic_add_affected_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm 0x52e09394 drm_set_preferred_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x53675a41 drm_add_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x53c6b2dc drm_gem_dmabuf_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x53ecccaa drm_panel_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5456aff3 drm_i2c_encoder_mode_set EXPORT_SYMBOL drivers/gpu/drm/drm 0x5542443b drm_flip_work_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5695250a drm_modeset_lock 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 0x58c239e6 __drmm_add_action +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5831f041 drm_mode_create_aspect_ratio_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x58b03339 drm_crtc_arm_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x58bfb067 drm_bridge_chain_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x58f0a3b5 drm_crtc_vblank_count EXPORT_SYMBOL drivers/gpu/drm/drm 0x59056243 drm_mm_replace_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0x595c2337 drm_i2c_encoder_mode_set EXPORT_SYMBOL drivers/gpu/drm/drm 0x599dea05 drm_edid_is_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5b5e2e0a drm_i2c_encoder_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c69fbe2 drm_gem_cma_prime_import_sg_table_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c729f7c drm_mode_is_420_only -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c78b441 drm_connector_atomic_hdr_metadata_equal -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5cb6afdc drm_atomic_get_new_bridge_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5cd08aa7 drm_bridge_chain_post_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d6598c4 drm_crtc_set_max_vblank_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5effdf48 drmm_mode_config_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5af66d7f drm_atomic_state_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5b9440c5 drm_property_lookup_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5bc5d74b drm_atomic_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d80b787 drm_client_framebuffer_flush +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d9a8dae drm_connector_attach_content_type_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f105b58 drm_mode_create EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f7985a5 drm_mm_scan_remove_block -EXPORT_SYMBOL drivers/gpu/drm/drm 0x605a72ed drm_dev_printk -EXPORT_SYMBOL drivers/gpu/drm/drm 0x606fbb63 drm_syncobj_add_point -EXPORT_SYMBOL drivers/gpu/drm/drm 0x60e86f81 drm_atomic_state_default_clear -EXPORT_SYMBOL drivers/gpu/drm/drm 0x618f7018 drm_sysfs_connector_status_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x62668832 drm_panel_get_modes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6276f8ba drm_gtf_mode_complex -EXPORT_SYMBOL drivers/gpu/drm/drm 0x62cccd2d drm_bridge_chain_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x64165b7b drm_gem_cma_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f99a5dd drm_atomic_state_default_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f9fc880 drm_atomic_get_bridge_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5ff7f8df drm_sysfs_connector_status_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x615f7336 __drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6250f1f2 drm_writeback_queue_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0x62f89dd4 drm_client_modeset_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0x63a745bf drm_connector_attach_tv_margin_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x63aa443c drm_read +EXPORT_SYMBOL drivers/gpu/drm/drm 0x642c6ad4 drm_gem_create_mmap_offset_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x645befc6 drm_gem_prime_handle_to_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0x652efd4e drm_gem_dmabuf_export EXPORT_SYMBOL drivers/gpu/drm/drm 0x65702bd6 drm_default_rgb_quant_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x65a69a1d drm_crtc_handle_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x660562e0 drm_object_property_set_value -EXPORT_SYMBOL drivers/gpu/drm/drm 0x66cdc7f6 drm_ioctl_permit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x66d1adaa drm_object_attach_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x68ef4dab drm_property_create_bool -EXPORT_SYMBOL drivers/gpu/drm/drm 0x68f30a9c drm_client_framebuffer_flush +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6582d0cd drm_connector_list_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0x66515f59 drm_crtc_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x665aad4c drm_atomic_add_affected_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm 0x671fe3bd drm_modeset_acquire_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0x672a99ec drm_atomic_get_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x67befa70 drm_crtc_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x67e1c273 drm_gem_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x686beaa3 drm_client_modeset_probe EXPORT_SYMBOL drivers/gpu/drm/drm 0x6914a422 drm_edid_are_equal -EXPORT_SYMBOL drivers/gpu/drm/drm 0x694f1f68 drm_modeset_lock_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b2b257a drm_mode_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6c0d847f drm_gem_shmem_unpin -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6c95e2b0 drm_property_create_bitmask -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ca53f0b drm_plane_get_damage_clips_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6d09afba drm_crtc_vblank_on -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6d2dd4aa drm_framebuffer_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e21b5b0 drm_event_cancel_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x69710d64 drm_i2c_encoder_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6a603fc4 drm_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b6d4992 drm_gem_shmem_purge +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6bc1054b drm_panel_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6bce85bc drm_add_override_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6c210dc2 drm_vblank_work_schedule +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6cf8dccb drm_prime_sg_to_page_array +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6daa913c drm_crtc_vblank_helper_get_vblank_timestamp_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6dc3e051 drm_connector_set_panel_orientation_with_quirk EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e30ba8e drm_rect_rotate_inv -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e6c0008 drm_atomic_state_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e983847 drm_mode_create_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e6456eb drm_crtc_check_viewport +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ed84cf5 drm_atomic_get_crtc_state EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ef2f78e drm_format_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6f47616c drm_gem_dma_resv_wait -EXPORT_SYMBOL drivers/gpu/drm/drm 0x706d5012 drm_gem_shmem_purge_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x714967c9 drm_client_modeset_commit_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x71a185ae drm_crtc_arm_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x71accc16 drm_i2c_encoder_restore -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7253de28 drm_plane_create_rotation_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x738086b8 drm_mode_probed_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x73d1a262 drm_read -EXPORT_SYMBOL drivers/gpu/drm/drm 0x743b74e9 drm_send_event_timestamp_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x74f00ef8 drm_gem_object_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x74f80fea drm_atomic_nonblocking_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x75f47d01 drm_modeset_backoff -EXPORT_SYMBOL drivers/gpu/drm/drm 0x769b9c98 drm_atomic_state_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x77cce2cf drm_crtc_send_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x785c1430 drm_atomic_get_old_private_obj_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x78a4e021 drm_gem_shmem_madvise -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7951d82a drm_mode_validate_driver -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7a43d963 drm_gem_put_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7a949c47 drm_gem_prime_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6fa34ddd drm_crtc_enable_color_mgmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0x703db344 drm_mode_is_420_also +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7086a72c drm_gem_shmem_unpin +EXPORT_SYMBOL drivers/gpu/drm/drm 0x71731dbc drm_hdmi_avi_infoframe_colorspace +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7228619d drm_property_create_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0x72953062 drm_gem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x72e4f8e6 drm_plane_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7357864d drm_syncobj_get_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0x74f75258 drm_gem_object_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x75542c06 drm_client_modeset_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x76925fed drmm_kfree +EXPORT_SYMBOL drivers/gpu/drm/drm 0x771344f4 drm_connector_set_vrr_capable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x775bc559 drm_sysfs_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x78c74e6f drm_dev_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x795572a7 drm_gem_map_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x796bad07 drm_i2c_encoder_restore +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7983c0b8 drm_framebuffer_plane_width EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b2e2166 drm_vma_node_revoke -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b9474dc drm_hdmi_avi_infoframe_quant_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7ca7ca70 drm_gem_prime_import -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7cde658a __devm_drm_dev_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7cef3232 drm_gem_shmem_create_with_handle -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e2ef65d drm_event_reserve_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7ef0c817 drm_object_property_get_value -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7f74f36c drm_atomic_get_new_private_obj_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x81533fd3 drm_client_modeset_check -EXPORT_SYMBOL drivers/gpu/drm/drm 0x816f3b3a drm_hdmi_infoframe_set_hdr_metadata +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b5bc3a6 drm_writeback_prepare_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c7f6837 drm_panel_get_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c98eb6c drm_framebuffer_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7cc39b2a drm_mode_probed_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7edac4fe drm_hdmi_vendor_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7eed1915 drm_gem_vm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fa5cad9 drm_mode_is_420_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0x80e254e0 drm_property_replace_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x810336cf drm_modeset_lock +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8147a4d8 drm_gem_vmap EXPORT_SYMBOL drivers/gpu/drm/drm 0x81992424 drm_edid_header_is_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x825bf92d drm_ioctl -EXPORT_SYMBOL drivers/gpu/drm/drm 0x827e8975 drm_writeback_get_out_fence -EXPORT_SYMBOL drivers/gpu/drm/drm 0x828a6ebd drm_hdmi_avi_infoframe_from_display_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x83472219 drm_add_override_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8253bd72 drm_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8357e5e8 drm_encoder_cleanup EXPORT_SYMBOL drivers/gpu/drm/drm 0x842dd90c drm_flip_work_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x848105d1 drm_client_buffer_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x84591d83 drm_connector_attach_vrr_capable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x84b4ee9b __devm_drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x84e7c1ae drm_modeset_lock_init EXPORT_SYMBOL drivers/gpu/drm/drm 0x8563a554 drm_ht_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x860466b4 drm_gem_shmem_get_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8610c474 drm_atomic_get_old_bridge_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x86c1fe4f drm_client_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x86e54b93 drm_syncobj_get_fd -EXPORT_SYMBOL drivers/gpu/drm/drm 0x87173b79 drm_add_modes_noedid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x864f34fe drm_mode_create_from_cmdline_mode EXPORT_SYMBOL drivers/gpu/drm/drm 0x871ab41a drm_rect_intersect -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8774565b drm_writeback_signal_completion -EXPORT_SYMBOL drivers/gpu/drm/drm 0x88615d5b drm_mode_config_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x89f2282f drm_gem_create_mmap_offset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8a156ae4 drm_client_modeset_probe -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8a8268c8 drm_atomic_normalize_zpos -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ae49207 drm_panel_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8b9b3c70 drm_crtc_check_viewport -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c99bd25 drm_atomic_get_crtc_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ca4e157 drm_dev_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8cd877d3 drm_crtc_vblank_waitqueue -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8cfb1b60 drm_gem_unmap_dma_buf -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d43a0ff drmm_kmalloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8e15a5e7 drm_probe_ddc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8e967b24 drm_atomic_print_new_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x906b88af drm_connector_set_tile_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x90e05c3d drm_atomic_bridge_chain_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8728ea13 drm_mode_object_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x87aa0873 drm_gtf_mode_complex +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8861ebf3 drm_atomic_get_new_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x88a60802 drm_get_edid_switcheroo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x88df9895 drm_bridge_chain_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x890a39fb __drmm_encoder_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x891dd4fd drm_crtc_init_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x89b53d01 drm_connector_attach_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8a26482b drm_atomic_get_new_connector_for_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ad3be2e drm_connector_list_iter_begin +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8b202d3d drm_modeset_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8b6277de drm_connector_update_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8b96c1aa drm_crtc_accurate_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c34d0a5 drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c5adde7 drm_mode_prune_invalid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d0eaf77 drm_atomic_get_old_connector_for_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d11517f drm_connector_list_iter_end +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d4de0de drm_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d691f52 drm_send_event_timestamp_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8f490caf drm_atomic_get_old_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8f716cf1 drm_mode_create_dp_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8fa3319c drm_gem_private_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x90d61b73 drm_gem_fence_array_add_implicit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x91813641 drm_gem_dmabuf_mmap EXPORT_SYMBOL drivers/gpu/drm/drm 0x91fec1cc drm_rect_calc_vscale -EXPORT_SYMBOL drivers/gpu/drm/drm 0x924efc0e drm_sysfs_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x928f452a drm_hdmi_avi_infoframe_bars +EXPORT_SYMBOL drivers/gpu/drm/drm 0x92d19faa drm_poll EXPORT_SYMBOL drivers/gpu/drm/drm 0x92ee8a9d drm_get_format_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0x92f4cac6 drm_crtc_vblank_restore -EXPORT_SYMBOL drivers/gpu/drm/drm 0x94263683 drm_master_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x950162f5 drm_panel_unprepare -EXPORT_SYMBOL drivers/gpu/drm/drm 0x956111aa drm_i2c_encoder_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x957034c5 drm_writeback_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x930be000 drm_framebuffer_plane_height +EXPORT_SYMBOL drivers/gpu/drm/drm 0x936020a2 drm_gem_mmap_obj +EXPORT_SYMBOL drivers/gpu/drm/drm 0x94ded745 drm_syncobj_add_point +EXPORT_SYMBOL drivers/gpu/drm/drm 0x957fbe53 drm_gem_dmabuf_vunmap EXPORT_SYMBOL drivers/gpu/drm/drm 0x95dbc76d drm_ht_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9610fa06 drm_add_edid_modes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x961e3253 drm_gem_lock_reservations -EXPORT_SYMBOL drivers/gpu/drm/drm 0x974583d3 drm_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9756ce49 drm_state_dump -EXPORT_SYMBOL drivers/gpu/drm/drm 0x97b86c35 drm_modeset_drop_locks -EXPORT_SYMBOL drivers/gpu/drm/drm 0x984e683f drm_plane_from_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0x99c96310 drm_framebuffer_plane_height -EXPORT_SYMBOL drivers/gpu/drm/drm 0x99dec737 drm_property_replace_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0x99efffee drm_gem_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x966d334b drm_i2c_encoder_detect +EXPORT_SYMBOL drivers/gpu/drm/drm 0x979ed07b drmm_mode_config_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x97e383db drm_property_replace_global_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x98505d2d drm_aperture_remove_conflicting_framebuffers +EXPORT_SYMBOL drivers/gpu/drm/drm 0x98ca0a67 drm_bridge_chain_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x98df89c6 drm_gem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x98f9a2dd drm_gem_prime_fd_to_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9979ab04 drm_mode_object_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x99bb026f drm_gem_prime_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x99fa44ee drm_crtc_vblank_waitqueue EXPORT_SYMBOL drivers/gpu/drm/drm 0x99fd20aa drm_rect_clip_scaled -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9a401733 drm_plane_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9a286eb8 drm_atomic_get_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9a909b2f drm_i2c_encoder_mode_fixup EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b285573 drm_match_cea_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b73be66 drm_connector_register EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b8a53f5 drm_ht_just_insert_please -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b8d56d7 drm_atomic_set_mode_for_crtc EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b95c885 drm_mode_match +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9bfd5f85 drm_syncobj_get_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c035379 drm_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c094a75 drm_atomic_bridge_chain_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9cc614c3 __drmm_add_action_or_reset EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ce050be drm_mode_copy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9d5551ca drm_gem_unlock_reservations -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9e02615f drm_framebuffer_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ce21d30 drm_plane_create_blend_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9d4f3132 devm_aperture_acquire_from_firmware +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9d545f2c drm_mode_plane_set_obj_prop +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9e0a0a7c drm_atomic_state_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9e53c707 drm_master_get EXPORT_SYMBOL drivers/gpu/drm/drm 0x9e7e8009 drm_edid_to_sad -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9e8e3581 __drmm_crtc_alloc_with_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ef94821 drm_mode_create_content_type_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9f32602e drm_property_create_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9fdb4ac0 drm_gem_prime_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9f39ac23 drm_mode_config_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ffc4d05 drm_plane_create_rotation_property EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ffcdfdb drm_detect_monitor_audio -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0399d0f __drmm_add_action_or_reset EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0713087 drm_ht_find_item -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa186640b drm_panel_of_backlight -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1b8bf8f drm_property_blob_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1ba7a03 drm_is_current_master -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1ea354d drm_connector_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa21b67a2 drm_prime_pages_to_sg -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa2cc5178 drm_clflush_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa3de6f45 drm_gem_shmem_pin -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa49f49a3 drm_client_framebuffer_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa5fcfb6a drm_color_lut_check -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa632fcce drm_framebuffer_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa6f1c76f drm_writeback_queue_job -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa79911d5 drm_connector_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa7b50529 drm_atomic_set_fence_for_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa7fc527a drm_dev_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa8986e2c drm_atomic_check_only -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaa49acb8 drm_atomic_get_bridge_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaad38e06 drm_cvt_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0xab7a2c9c drm_atomic_set_fb_for_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0xabd5b6cc drm_property_create_object -EXPORT_SYMBOL drivers/gpu/drm/drm 0xac0d86b9 drm_connector_attach_colorspace_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xac4e4f44 drm_mode_create_scaling_mode_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaca2a8f0 drm_connector_attach_max_bpc_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xacf1fe95 drm_debugfs_remove_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0a99c27 drm_modeset_lock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa10e8ecd drm_atomic_nonblocking_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa135c0d0 drm_property_add_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1f19ddb drm_plane_enable_fb_damage_clips +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa249ada6 drm_atomic_add_encoder_bridges +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa2994704 drm_gem_dmabuf_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4d8b3fb drm_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4f36003 drm_mode_config_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa54c8f42 drm_bridge_chain_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa5e984a9 drm_mode_create_content_type_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa6b23713 drm_crtc_vblank_on +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa6bb17fe drm_gem_shmem_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa88199e9 drm_warn_on_modeset_not_all_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa9688391 drm_master_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaa6757a7 drm_syncobj_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xad165bd9 drm_mode_create_dvi_i_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xad211dc4 drm_any_plane_has_format EXPORT_SYMBOL drivers/gpu/drm/drm 0xad4e902b drm_color_ctm_s31_32_to_qm_n -EXPORT_SYMBOL drivers/gpu/drm/drm 0xad78cf1c drm_mode_is_420_also +EXPORT_SYMBOL drivers/gpu/drm/drm 0xadad55a7 __drmm_universal_plane_alloc EXPORT_SYMBOL drivers/gpu/drm/drm 0xae277372 __drm_crtc_commit_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0xae9862b7 drm_vblank_work_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaff129b2 drm_i2c_encoder_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xae75f163 drm_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaeea52f6 drm_mode_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf5d0e20 drm_mode_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb042d06e drm_plane_create_alpha_property EXPORT_SYMBOL drivers/gpu/drm/drm 0xb053adda drm_rect_rotate -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb0a02c0d drm_plane_create_alpha_property EXPORT_SYMBOL drivers/gpu/drm/drm 0xb0b05ff5 drm_clflush_sg -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb0f88e58 drm_compat_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb0d2e65d drm_gem_dma_resv_wait EXPORT_SYMBOL drivers/gpu/drm/drm 0xb11ac7a7 __drm_err EXPORT_SYMBOL drivers/gpu/drm/drm 0xb22dfd68 drm_format_info_min_pitch -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb23c4f9f drm_writeback_prepare_job -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb2f580c0 drm_mode_create_from_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb24325f0 drm_atomic_normalize_zpos +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb2ce302e drm_property_create_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb32fa7f3 drm_clflush_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb3897adc drm_property_create_bool EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4032484 drm_mm_insert_node_in_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4c05c14 drm_mode_prune_invalid -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb51aa822 drm_atomic_set_crtc_for_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5f4ed4a drm_print_regset32 +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb57bfb9e drm_prime_gem_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb602e511 drm_gem_map_dma_buf EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6127243 drm_need_swiotlb -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb7156c59 drm_gem_private_object_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb832360e drm_master_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb8c96cce drm_crtc_enable_color_mgmt -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9a8e6df drm_prime_gem_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb816e531 drm_mode_set_config_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb84ce061 drm_connector_set_panel_orientation +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb85a4458 drm_mode_find_dmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb8ce874c drm_writeback_cleanup_job EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9cad492 __drm_atomic_state_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0xba224ed8 __drmm_universal_plane_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbc0b72ed drm_prime_sg_to_page_array -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbcec29c0 drm_gem_shmem_print_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbd479402 drm_vblank_work_flush -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbda9bef9 drm_hdmi_avi_infoframe_colorspace -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbdaa1047 drm_gem_object_lookup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbdd5b536 drm_gem_handle_delete -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbe917115 drm_debugfs_create_files -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbe9ef6e7 drm_mode_put_tile_group -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbf0dce21 drm_crtc_accurate_vblank_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbf71da12 drm_gem_free_mmap_offset -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc1237ef9 drm_dev_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc182d950 drm_atomic_add_encoder_bridges -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc18dd68e drm_crtc_vblank_reset -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc1ce2cf1 drm_aperture_remove_conflicting_pci_framebuffers -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc214194e drm_encoder_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc2285fc0 drm_atomic_set_mode_prop_for_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc28178bd drm_plane_create_zpos_immutable_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc304d936 drm_gem_map_dma_buf -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc309bfe6 drm_panel_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc42f609a drm_gem_mmap_obj -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc50b909a drm_property_create_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc58cfb31 drm_crtc_create_scaling_filter_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc5b7563d drm_connector_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc5c53035 drm_crtc_commit_wait +EXPORT_SYMBOL drivers/gpu/drm/drm 0xba22849e drm_gem_shmem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0xba25fdf1 drm_connector_set_path_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xba387ea1 drm_panel_unprepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbb5a3a85 drm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbbeb705d drm_master_internal_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbc6751e9 drm_mode_create_tv_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbc780c8b drm_panel_of_backlight +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbd638de9 drm_writeback_signal_completion +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbd745c54 drm_mode_create_suggested_offset_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbd7feb71 drm_crtc_set_max_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbe1504ab drm_atomic_set_mode_prop_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbe98048d drm_dev_has_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbeeaa237 drm_connector_has_possible_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbf24e5c4 drm_atomic_state_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbf9ad948 drm_ioctl_kernel +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc0213109 drm_vblank_work_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc0bd39b9 drm_dev_set_unique +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc198bff9 drm_atomic_private_obj_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc260fcac drm_connector_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc2951fdb drm_av_sync_delay +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc31611d3 drm_connector_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc4d6f812 __drmm_add_action +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc5b7fdd9 drm_aperture_remove_conflicting_pci_framebuffers +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6080509 drmm_kmalloc EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6323239 drm_flip_work_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc68c0b2a drm_panel_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc70cd6c6 drm_crtc_init_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc671e605 drm_dev_unplug +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc693f77e drm_gem_objects_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6a44336 drm_atomic_set_fence_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6c4b545 drm_client_buffer_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc731c053 drm_gem_map_detach EXPORT_SYMBOL drivers/gpu/drm/drm 0xc7910e38 drm_vma_offset_lookup_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc7c69e22 drm_crtc_vblank_off EXPORT_SYMBOL drivers/gpu/drm/drm 0xc7d04fc5 drm_vma_node_allow -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc9329cc2 drm_gem_vm_close -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc97f50af drm_connector_attach_content_protection_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc9f77a8d drm_bridge_chain_pre_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc9f7ea47 drm_mode_create_tv_margin_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0xca036dd7 drm_connector_attach_vrr_capable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc954f556 drm_atomic_add_affected_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc9570280 drm_client_dev_hotplug EXPORT_SYMBOL drivers/gpu/drm/drm 0xca190085 drm_format_info_block_height EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb2340b8 drm_rect_debug_print -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcc7ed888 drm_crtc_vblank_helper_get_vblank_timestamp +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb7c8505 drm_atomic_set_crtc_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb86d948 drm_put_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcba36142 drm_debugfs_create_files EXPORT_SYMBOL drivers/gpu/drm/drm 0xccc59759 drm_format_info_block_width -EXPORT_SYMBOL drivers/gpu/drm/drm 0xccdb5168 drm_send_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd733496 drm_connector_init_with_ddc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xce1e8ba7 drm_client_framebuffer_delete -EXPORT_SYMBOL drivers/gpu/drm/drm 0xceb8f3e4 drm_property_blob_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd3f8bf7 drm_framebuffer_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd73b0bf drm_connector_attach_max_bpc_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcdd6a12a drm_crtc_vblank_restore +EXPORT_SYMBOL drivers/gpu/drm/drm 0xceb3642f drm_vblank_work_flush EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf11a549 drm_flip_work_allocate_task -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf27f559 drm_gem_prime_handle_to_fd -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf557fc8 drm_client_modeset_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf68730f drm_gem_prime_import +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcfbd48d1 drm_atomic_bridge_chain_post_disable EXPORT_SYMBOL drivers/gpu/drm/drm 0xd05fda43 drm_prime_get_contiguous_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd114764d drm_crtc_vblank_helper_get_vblank_timestamp_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd13a651a drm_plane_create_zpos_property EXPORT_SYMBOL drivers/gpu/drm/drm 0xd13f9985 drm_edid_block_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2ff9d01 drm_atomic_bridge_chain_pre_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd3d2eb9d drm_panel_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd43dcb62 __drm_atomic_helper_disable_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd52531d0 drm_mode_parse_command_line_for_connector -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd5804e18 drm_send_event_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd5c3f3ae drm_gem_shmem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd1d2df91 drm_hdmi_avi_infoframe_content_type +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd1ec98aa drm_bridge_chain_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2e3dcd8 drm_bridge_chain_mode_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd415de12 drm_modeset_lock_all_ctx +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd510ae6c drm_property_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd5c6fd7c drm_atomic_set_mode_for_crtc EXPORT_SYMBOL drivers/gpu/drm/drm 0xd60baf5a drm_edid_get_monitor_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd63d4010 drm_plane_get_damage_clips EXPORT_SYMBOL drivers/gpu/drm/drm 0xd680a377 drm_gem_object_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd78d8973 drm_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd6f9320b drm_plane_force_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7637414 drm_gem_shmem_get_pages EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7a9cf42 drm_mode_validate_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd901a9cc drmm_kfree -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd94f3236 drm_connector_list_iter_next -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd9d1c747 drm_mode_is_420 -EXPORT_SYMBOL drivers/gpu/drm/drm 0xda9cc730 drm_mode_validate_ycbcr420 -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb012056 drm_i2c_encoder_detect -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb5bf953 drm_vblank_work_schedule -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb5d5df9 drm_mode_crtc_set_gamma_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdc3a10a9 drm_mode_plane_set_obj_prop -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdc98ac85 drm_get_edid -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd414df1 drm_property_create_enum -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd8058d6 drm_modeset_lock_all -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdea7f3fb drm_dev_dbg -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf0f4938 drm_gem_objects_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7b03f08 drm_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7d1dcd9 drm_atomic_set_fb_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd9674393 drm_noop +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd978d3c4 drm_gem_create_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd9aab7f0 drm_client_modeset_commit_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdab09b24 drm_gem_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb8209cf drm_send_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdca54116 drm_object_property_get_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdddb9d7f drm_mode_create_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0xde594aef drm_gem_shmem_madvise +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf22249c drm_gtf_mode EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf3f760d drm_mm_scan_color_evict -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf608904 drm_dev_alloc EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf666902 drm_rotation_simplify -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdfd3e481 drm_atomic_bridge_chain_post_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe037beb3 drm_modeset_unlock -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe0585bbe drm_gem_dmabuf_export -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe0c9b0de drm_atomic_bridge_chain_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe0d95be6 drm_connector_list_update -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe144a978 drm_crtc_vblank_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe1a5eff2 drm_modeset_unlock_all -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe1b1c34d drm_plane_create_scaling_filter_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe1c63df3 drm_mode_duplicate -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe2ac234c drm_syncobj_replace_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdff9ec14 drm_hdmi_avi_infoframe_quant_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe0405d4e drm_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe161cefc drm_atomic_set_crtc_for_connector EXPORT_SYMBOL drivers/gpu/drm/drm 0xe317082a __drm_printfn_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe3395e48 drm_event_reserve_init_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe4441ab2 drm_mode_get_tile_group -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe46d18f4 drm_gem_map_attach -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe548ea74 drm_mode_object_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe651d0c2 drm_crtc_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe695e925 drm_gem_prime_fd_to_handle -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe77251c4 drm_av_sync_delay -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe78b2e36 drm_mode_create_dvi_i_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7c2be51 drm_plane_create_color_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe3986199 drm_connector_attach_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe40ac35f drm_debugfs_remove_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe4ce3645 drm_gem_vm_close +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe5d6e59f drm_hdmi_infoframe_set_hdr_metadata +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe6e413cc drm_atomic_get_old_bridge_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe786d400 drm_connector_attach_hdr_output_metadata_property EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8362900 drm_edid_duplicate -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe837cab4 drm_gem_shmem_purge +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8924f21 drm_ioctl_permit 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 0xe9215131 drm_connector_set_vrr_capable_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe975a376 drm_mode_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe9b97647 drm_dev_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe9c025ea drm_bridge_add EXPORT_SYMBOL drivers/gpu/drm/drm 0xea00fe81 __drm_printfn_coredump -EXPORT_SYMBOL drivers/gpu/drm/drm 0xea700894 drm_plane_create_blend_mode_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb9bbbf9 drm_connector_list_iter_end -EXPORT_SYMBOL drivers/gpu/drm/drm 0xebadd8f7 drm_connector_attach_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb2fccf1 drm_crtc_commit_wait EXPORT_SYMBOL drivers/gpu/drm/drm 0xec12af74 __drm_dbg -EXPORT_SYMBOL drivers/gpu/drm/drm 0xec681dc5 drm_connector_attach_dp_subconnector_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xed63ee20 drm_poll -EXPORT_SYMBOL drivers/gpu/drm/drm 0xed6e859d drm_crtc_wait_one_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0xef4ec4ed drm_property_create_signed_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0102a7b drm_crtc_vblank_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xed0fe0e4 drm_compat_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeda54f0f drm_panel_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xee2711c0 drm_crtc_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xefb3fa83 drm_modeset_acquire_init EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0517d7a drm_mm_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0848ac8 drm_mode_get_tile_group 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 0xf1fa3bbb drm_mode_object_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf214903d drm_property_lookup_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf2ebd690 drm_put_dev -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf3d95edd drm_framebuffer_unregister_private +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf223319a drm_crtc_create_scaling_filter_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf228c698 drm_i2c_encoder_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf2560e76 drm_modeset_drop_locks +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf273b52b drm_state_dump +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf3b235a8 drm_client_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf3fd678d drm_hdcp_update_content_protection EXPORT_SYMBOL drivers/gpu/drm/drm 0xf406e46a drm_get_connector_type_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf47fdc8c drm_property_add_enum -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf48e6561 drm_crtc_vblank_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf77c0034 drm_bridge_chain_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf7cb923c drm_gtf_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf464008d drm_syncobj_replace_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf7bcd5d9 drm_client_rotation +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf7e35151 drm_display_mode_from_cea_vic EXPORT_SYMBOL drivers/gpu/drm/drm 0xf824c7db __drm_printfn_debug -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa1829f6 drm_mode_config_reset -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa2ced45 drm_plane_enable_fb_damage_clips -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfcd3b773 drm_client_rotation -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd8621c4 drm_universal_plane_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd99569b drm_connector_set_link_status_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfde9219c drm_connector_set_panel_orientation_with_quirk -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfe2fc43e drm_wait_one_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfe303363 drm_atomic_get_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf8318378 drm_gem_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf83d8fcb drm_gem_free_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf94bdace drm_crtc_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa0cc4c9 drm_event_reserve_init_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb863b0c drm_property_create_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfbb4169e drm_plane_create_scaling_filter_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd561da0 __drmm_crtc_alloc_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfde7f9ea drm_client_framebuffer_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfe3d48e1 drm_mode_parse_command_line_for_connector EXPORT_SYMBOL drivers/gpu/drm/drm 0xfeb953b1 __drm_printfn_seq_file EXPORT_SYMBOL drivers/gpu/drm/drm 0xfecc8840 drm_edid_to_speaker_allocation -EXPORT_SYMBOL drivers/gpu/drm/drm 0xff3db350 drm_plane_get_damage_clips -EXPORT_SYMBOL drivers/gpu/drm/drm 0xff77d7bb drm_mode_create_suggested_offset_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0xffc4eb73 drm_connector_attach_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x00698600 __drm_atomic_helper_plane_state_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x012e9f8c drm_dp_dual_mode_set_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfeec4464 drm_master_internal_acquire +EXPORT_SYMBOL drivers/gpu/drm/drm 0xff149ddc drm_connector_set_link_status_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xffb20496 drm_connector_init_with_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0115f49d drm_self_refresh_helper_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x017e82c6 drm_fb_helper_fill_info +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x01939dec drm_scdc_write EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x01c4bba9 drm_dp_lttpr_max_link_rate -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x03385964 drm_primary_helper_funcs -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0436c56f drm_fb_helper_lastclose -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0442488d drm_fb_helper_sys_copyarea -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x044785df drm_helper_encoder_in_use -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x044b568d drm_dp_mst_topology_mgr_resume -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x05e3d268 drm_dp_mst_atomic_enable_dsc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x062663a5 drm_atomic_helper_commit_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x01c99bb2 drm_gem_simple_kms_cleanup_shadow_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x02a7b697 drm_fb_helper_lastclose EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x06c49551 drm_dp_dsc_sink_line_buf_depth -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x078a08d2 __drm_atomic_helper_private_obj_duplicate_state EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x07a00858 drm_fb_memcpy_dstclip -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x08c4026e drm_helper_mode_fill_fb_struct -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x08f7710b drm_dp_pcon_pps_default -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0cc1c11b drm_fb_helper_sys_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0e07cc3d drm_atomic_helper_wait_for_fences -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0e32901c drm_simple_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0e4ea970 drm_gem_fb_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0e775009 drm_atomic_helper_commit_hw_done -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0ecd2a22 drm_fb_helper_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0f73dbe7 drm_atomic_helper_shutdown -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0fa114ce drm_panel_bridge_connector -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x10783ec1 drm_helper_disable_unused_functions -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x12695b83 drm_atomic_helper_check_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1437048e drm_fb_helper_pan_display +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x07cd37de drm_atomic_helper_commit_duplicated_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x07e66486 drm_dp_pcon_convert_rgb_to_ycbcr +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x08291aed drm_atomic_helper_connector_tv_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x09763d48 drm_fb_helper_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x09e026a1 drm_dp_mst_dsc_aux_for_port +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x09f14fe9 drm_fb_helper_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0af8f235 __drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0c950758 drm_fb_helper_restore_fbdev_mode_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0ca52c8c drm_dp_link_train_clock_recovery_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0d3a08d4 drm_atomic_helper_prepare_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0dbab172 drm_dp_cec_irq +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0dcb7e6f drm_panel_bridge_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0e6f9d73 drm_atomic_helper_commit_modeset_enables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x14932552 drm_gem_destroy_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x153627e1 drm_primary_helper_funcs EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1605d0ed drm_dp_lttpr_max_lane_count -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x163b8031 drm_dp_dpcd_read_phy_link_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1696a28f drm_atomic_helper_suspend EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1709ddcf drm_dp_lttpr_link_train_clock_recovery_delay -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x17f5cf25 drm_gem_fb_create_handle -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1824c32b drm_dp_read_mst_cap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1a55d6dd __drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x186b0ac9 drm_gem_reset_shadow_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x189dbe7a drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x19922a87 drm_fb_helper_debug_leave EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1a5bf3ca drm_dsc_dp_rc_buffer_size -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1a6dec3b drm_gem_simple_kms_reset_shadow_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1b0046f5 drm_fbdev_generic_setup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1a6ba784 drm_kms_helper_poll_fini EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1b0a1fdc drm_dp_lttpr_voltage_swing_level_3_supported -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1c52995d drm_fb_helper_debug_leave -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1cce8285 drm_dp_pcon_frl_configure_2 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1cd3decd drm_dp_mst_dsc_aux_for_port -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1d7f8651 drm_dp_cec_register_connector -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1ea7e2bc drm_dp_remote_aux_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1ff68ae8 drm_simple_display_pipe_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2131a52b drm_dp_read_sink_count -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x23d04417 drm_kms_helper_poll_enable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x25f6f572 drm_panel_bridge_add_typed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1ce1defa drm_gem_fb_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1eb81fb7 drm_dp_mst_connector_early_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1ef9f47c drm_fb_helper_cfb_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x207e772b drm_atomic_helper_damage_merged +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2085fa5d drm_simple_display_pipe_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x208bf3cd drm_fb_helper_sys_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x20be358c drm_dp_cec_unregister_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x20e9b127 drm_crtc_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x21b53cd4 drm_dp_read_lttpr_phy_caps +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x235e019b drm_helper_probe_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2406ab78 drm_dp_mst_topology_mgr_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x24ac6d78 drm_kms_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x24d4fd89 drm_crtc_helper_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x256b4216 drm_atomic_helper_commit_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2603d41c drm_fb_helper_deferred_io +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x267547e5 drm_dp_dpcd_read_link_status EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x26815dbc drm_dp_link_rate_to_bw_code -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x26eb0b0e drm_fb_helper_cfb_imageblit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x287f3e48 drm_dp_vsc_sdp_log -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2a80de35 drm_fb_helper_set_par -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2b9722fa drm_fb_helper_setcmap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2c604e29 drm_dp_mst_reset_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2cb39291 __drm_gem_reset_shadow_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2da33e6f drm_dp_downstream_debug -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2e6e6873 drm_dp_dual_mode_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2eec4f0a drm_atomic_helper_setup_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x26f8ec80 drm_dp_downstream_id +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x275c842a drm_dp_mst_atomic_enable_dsc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2895916e drm_dp_read_dpcd_caps +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2a061d34 __drm_atomic_helper_connector_state_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2a57c1ff drm_crtc_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2b42c5b7 drm_atomic_helper_update_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2c346223 drm_helper_resume_force_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2c50cef4 drm_self_refresh_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2d1f088b drm_atomic_helper_check_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2d44e927 drm_dp_cec_register_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2dd39953 devm_drm_panel_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2eb5115a drm_dp_get_phy_test_pattern +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2edc0fd1 drm_gem_prepare_shadow_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2f071711 drm_atomic_helper_connector_destroy_state EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2fa94ef2 drm_dp_downstream_444_to_420_conversion -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x302ae327 drm_dp_downstream_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3102f5d5 drm_atomic_helper_crtc_destroy_state EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3117b63b drm_dp_downstream_max_bpc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3237f165 drm_atomic_helper_connector_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x33dee91d drm_fb_helper_check_var -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x34ac256a drm_fb_helper_unregister_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x35673ead drm_fb_helper_fini -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x35dc429f drm_atomic_helper_commit_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x37defb84 drm_dp_atomic_find_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3229486f drm_fb_helper_setcmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x328b784f drm_atomic_helper_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x33139d50 drm_atomic_helper_check_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x35508c38 drm_atomic_helper_check_plane_damage +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x36c03f4f drm_helper_probe_single_connector_modes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x373cd591 drm_helper_disable_unused_functions +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x37c4cbe9 drm_fb_helper_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x38eeeb22 drm_fb_helper_set_suspend EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x392a838b drm_dp_downstream_max_dotclock +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x39b70484 drm_dp_aux_register EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3a8063f3 drm_dp_dsc_sink_supported_input_bpcs -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3aa0ca9d drm_fb_helper_blank -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3ca02862 drm_fb_helper_output_poll_changed -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4154ccc6 drm_dp_dpcd_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x41d44479 drm_atomic_helper_update_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4277733b drm_helper_probe_single_connector_modes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x429c1af6 drm_dp_get_vc_payload_bw -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x444ff06f drm_atomic_helper_commit_modeset_disables -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x44b8a8ee drm_atomic_helper_page_flip_target -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x44f74e6f drm_dp_pcon_enc_is_dsc_1_2 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4569fed2 drm_helper_connector_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x45ae8c65 drm_helper_hpd_irq_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x45dec2bb drm_dp_pcon_frl_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x45e5ed9b drm_edp_backlight_set_level +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3b3e796a drm_gem_simple_kms_prepare_shadow_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3b43d10a drm_atomic_helper_bridge_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3bc7be0f drm_atomic_helper_setup_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3d831e54 __drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3eed8b2b drm_atomic_helper_wait_for_fences +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x40a81b1e __drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x41e527b8 drm_fb_helper_output_poll_changed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4409e9e1 drm_dp_dual_mode_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x44524a89 drm_dp_set_phy_test_pattern +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x44581777 drm_dp_mst_dump_topology +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x446374a1 drm_atomic_helper_disable_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x44a4f700 drm_dp_stop_crc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x44b808cb drm_dp_read_sink_count +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x45bca6df drm_helper_encoder_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x45e8e16d drm_dp_mst_atomic_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4603c416 drm_dp_pcon_dsc_bpp_incr EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4668c9dc drm_dp_downstream_min_tmds_clock -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x46d04a1c drm_panel_dp_aux_backlight -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x46e0b7d8 drm_dp_mst_allocate_vcpi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4866e298 drm_atomic_helper_crtc_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4a7e68c1 __drm_gem_duplicate_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4b4e08ec drm_dp_set_subconnector_property -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4bb334c9 drm_dp_check_act_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x46f0b6c7 drm_dp_send_real_edid_checksum +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x47b0ec38 drm_dp_get_vc_payload_bw +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4a33e8e5 drm_dp_aux_unregister EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4bb89424 drm_dp_downstream_max_tmds_clock -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4c0457af drm_dp_pcon_pps_override_param -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4c1e53a7 drm_atomic_get_mst_topology_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4c2bba6c drm_fb_helper_sys_fillrect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4ccb98e5 drm_crtc_helper_set_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4cd3663f drm_atomic_helper_bridge_propagate_bus_fmt +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4cb633b4 drm_atomic_helper_fake_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4d5a1f1c drm_dp_dpcd_write EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4e41ad5c drm_fb_xrgb8888_to_rgb565 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x50c18998 drm_dp_mst_get_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x50c92128 drm_dp_get_phy_test_pattern -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x52934d5a drm_fb_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4f232176 drm_dp_pcon_frl_configure_2 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x50a5efb8 __drm_atomic_helper_connector_destroy_state EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x537b8893 drm_fb_blit_rect_dstclip -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x53c18f63 drm_gem_cleanup_shadow_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x53a1717a drm_dp_pcon_frl_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x53cf2c96 __drmm_simple_encoder_alloc EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5407ae9e drm_dp_get_dual_mode_type_name -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x54e8653d drm_fb_helper_set_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5542355d devm_drm_panel_bridge_add_typed -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x555d70f6 __drmm_simple_encoder_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x548881c6 drm_dp_mst_topology_mgr_set_mst +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x56eb92f6 drm_fb_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x572e24c5 __drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5799c442 drm_simple_display_pipe_attach_bridge EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x582f248e drm_dp_get_adjust_request_pre_emphasis -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x58b27d48 drm_atomic_helper_bridge_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x58d36fa4 drm_dp_dual_mode_get_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x58d50055 drm_dp_mst_topology_mgr_resume EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x58d8fcaa drm_dsc_pps_payload_pack -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5a3bc486 drm_edp_backlight_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5915e2ff __drm_atomic_helper_bridge_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x59f27ed7 drm_dp_pcon_enc_is_dsc_1_2 EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5a4734d1 drm_kms_helper_is_poll_worker -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5a639e9b drm_atomic_helper_async_commit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5b06f4ae drm_dp_pcon_dsc_bpp_incr -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5bc527b6 drm_helper_crtc_in_use -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5bd03494 drm_dp_atomic_release_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5e91337d drm_dp_update_payload_part2 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5f47030f drm_dp_dpcd_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x61d54e44 drm_dp_link_train_clock_recovery_delay -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6244a68a drm_dp_mst_topology_mgr_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x624a50f1 drm_scdc_set_high_tmds_clock_ratio -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x62ee9851 drm_helper_resume_force_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6304d099 drm_gem_simple_display_pipe_prepare_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x637526f8 drm_fb_helper_debug_enter +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5ba39534 drm_fb_helper_initial_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5c24a44f drm_dp_read_downstream_info +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5d922d4b drm_dp_dual_mode_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5d9a7b44 drm_atomic_helper_update_legacy_modeset_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5e5ec39b drm_atomic_helper_page_flip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5f08634c drm_dp_cec_unset_edid +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5f58cb46 drm_dp_check_act_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x608a6a6c drm_atomic_helper_wait_for_dependencies +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x61358c21 drm_atomic_helper_async_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x636689bf drm_atomic_helper_wait_for_vblanks +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x64605037 drm_fb_helper_sys_write EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x648d953b drm_dsc_dp_pps_header_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x64fbc26e drm_fb_helper_sys_imageblit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x65e6a287 drm_fb_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x650f903c drm_dp_dual_mode_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x65168f9c drm_atomic_helper_shutdown +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x65706cf6 drm_fb_helper_unregister_fbi EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6615069e drm_dp_dsc_sink_max_slice_count -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x668ac5cf drm_mode_config_helper_resume -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6785bfc7 drm_kms_helper_poll_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x689f4fee drm_gem_simple_kms_cleanup_shadow_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6a0d6e40 drm_gem_simple_kms_destroy_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6a1ebae8 drm_atomic_helper_damage_merged +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x681097ba drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x688717a9 drm_dp_mst_get_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6a6784a5 drm_atomic_helper_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6ab6cffd drm_atomic_helper_commit_cleanup_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6ac3a517 drm_atomic_helper_bridge_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6b153c6f drm_edp_backlight_set_level +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6b1d6533 drm_gem_simple_kms_reset_shadow_plane EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6b5c2b06 drm_atomic_helper_damage_iter_next -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6f5dea13 drm_gem_destroy_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x70362e44 drm_atomic_helper_async_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6e6498db drm_dp_update_payload_part2 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6f277162 drm_dp_pcon_frl_configure_1 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6f2e7c85 drm_dp_pcon_is_frl_ready +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6fc7db09 drm_dp_pcon_pps_override_buf +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6feae2ba drm_gem_simple_kms_destroy_shadow_plane_state EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7053fa72 drm_dp_get_pcon_max_frl_bw -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x71773704 drm_atomic_helper_disable_planes_on_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x72ac92a6 drm_atomic_helper_update_legacy_modeset_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x70a9411a drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x72853d89 __drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x72f46d76 drm_dp_dual_mode_get_tmds_output EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x73011db0 drm_dp_bw_code_to_link_rate -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x74e96aa8 drm_crtc_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7519992f drm_panel_bridge_remove -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x753e9fee drm_primary_helper_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x74347352 drm_atomic_helper_dirtyfb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7489c833 devm_drm_panel_bridge_add_typed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x75a07451 __drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x75acbaf5 drm_simple_encoder_init EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x76ff6644 drm_dp_lttpr_pre_emphasis_level_3_supported -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x775df592 drm_atomic_helper_bridge_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x77d97adb drm_dp_dual_mode_detect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x78fb3726 drm_atomic_helper_check_modeset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x79bd5990 drm_atomic_helper_bridge_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7a52edf4 drm_scdc_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7aa1bc02 devm_drm_panel_bridge_add -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7ac4384f drm_dp_cec_unset_edid +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7829e5ce drm_dp_downstream_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7a51bc38 drm_dp_read_sink_count_cap EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7ae669d0 drm_fb_xrgb8888_to_gray8 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7b0f8218 __drm_gem_destroy_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7b8b24f1 __drm_atomic_helper_bridge_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7c4d8710 __drm_atomic_helper_plane_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7c5403b2 drm_dp_set_phy_test_pattern -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7dc895fc drm_edp_backlight_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8008f806 __drm_atomic_helper_connector_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x803112ee drm_dp_mst_topology_mgr_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x808fe1b4 __drm_atomic_helper_connector_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x812acb28 drm_dp_lttpr_link_train_channel_eq_delay -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x83071b2e drm_fb_helper_cfb_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7b0b6c95 __drm_gem_destroy_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7b2cd905 drm_fb_helper_sys_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7cd6ce1b __drm_atomic_helper_crtc_state_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7ecd49cd drm_atomic_helper_cleanup_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7f95630a drm_lspcon_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fddfe17 drm_atomic_helper_swap_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x801cda5e drm_dp_mst_deallocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x82640931 drm_dp_pcon_hdmi_link_active +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x82d9274b drm_dp_link_train_channel_eq_delay EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x838a8fa0 drm_fb_memcpy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8557faef drm_dp_read_desc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x86ff3361 drm_edp_backlight_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8406a127 drm_scdc_set_high_tmds_clock_ratio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x84de99ff drm_atomic_helper_commit_hw_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x862b887d drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x86ec9fb3 drm_mode_config_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x87215c02 drm_gem_fb_create_handle +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x886d5608 __drm_gem_reset_shadow_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x88f677c9 drm_panel_bridge_remove EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x894b1f57 drm_dp_get_adjust_request_post_cursor -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x89bfdefb drm_atomic_helper_connector_tv_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8982cf34 drm_gem_fb_destroy EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x89d100ba drm_fb_xrgb8888_to_rgb888_dstclip -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8a406bde drm_atomic_helper_damage_iter_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8c9dfae0 drm_self_refresh_helper_update_avg_times +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x89e63060 drm_fb_helper_check_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8bc1069d drm_dp_send_power_updown_phy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8bc6b86f __drm_atomic_helper_plane_duplicate_state EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8ca2d9e4 drm_dp_calc_pbn_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8d01f225 drm_fb_helper_alloc_fbi EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8d701329 drm_dp_clock_recovery_ok -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8eff7f59 drm_dp_mst_dump_topology -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8f81d6f0 drm_dp_read_sink_count_cap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9031279c drm_lspcon_set_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x924bb4d9 drm_dp_start_crc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x92683b8a drm_dp_stop_crc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x92bc4842 drm_dp_mst_hpd_irq -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x930b3de8 drm_dp_dual_mode_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x933c945f drm_atomic_helper_disable_all -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9524ae09 drm_dp_pcon_frl_configure_1 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x954c6ec3 drm_dp_mst_add_affected_dsc_crtcs -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x97bf5dd9 drm_fb_helper_set_suspend_unlocked -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x97eeb986 drm_atomic_helper_crtc_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x989f5101 drm_atomic_helper_resume -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x98f2c679 drm_gem_duplicate_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x99e240a6 drm_dp_dpcd_read_link_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9b4af576 drm_atomic_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9b657608 __drm_atomic_helper_connector_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9dc00ea3 drm_dp_pcon_frl_enable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9dc28867 drm_atomic_helper_wait_for_vblanks -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9deb3d84 drm_dp_send_query_stream_enc_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9ead2c68 drm_dp_mst_topology_mgr_set_mst -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa0b50b3b drm_atomic_helper_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa1978b80 drm_helper_move_panel_connectors_to_head -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa1ade20f __drm_atomic_helper_crtc_state_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8d8276f5 drm_dp_dpcd_read_phy_link_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x90b677a0 drm_dp_dual_mode_set_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x91414418 drm_dp_mst_get_port_malloc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9153d936 drm_helper_hpd_irq_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x91cb3196 drm_gem_duplicate_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x92392860 drm_scdc_set_scrambling +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x94a3ddf0 drm_panel_dp_aux_backlight +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x951991d2 drm_dp_send_query_stream_enc_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x95504117 __drm_atomic_helper_bridge_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x96620e9d drm_atomic_helper_damage_iter_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9781d890 drm_edp_backlight_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x97af271e drm_atomic_helper_commit_tail_rpm +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9a9d40f8 drm_dp_mst_connector_late_register +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9d781a6a drm_fb_helper_pan_display +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9d82fdc0 __drm_gem_duplicate_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9efc0f74 drm_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9f01448e drm_dp_read_lttpr_common_caps +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa13f7dc1 drm_dp_mst_topology_mgr_destroy EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa1fefe6a drm_dp_psr_setup_time -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa69e19be drm_dp_mst_deallocate_vcpi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa9158fb9 drm_dp_mst_atomic_check -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa9a2d0e6 drm_dp_find_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa9e6e519 drm_gem_fb_begin_cpu_access -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xab563a3d drm_atomic_helper_page_flip -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xabd98d8a drm_dp_read_downstream_info -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xac6548bd drm_dp_pcon_reset_frl_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaccae91c drm_gem_fb_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xad986609 drm_atomic_helper_wait_for_flip_done -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaed0cfc5 drm_dp_read_dpcd_caps +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa469aea3 drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa51475d6 drm_fb_helper_blank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa53ff6ae drm_edp_backlight_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa607707a drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa623d6f3 drm_helper_move_panel_connectors_to_head +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa6849586 drm_scdc_get_scrambling_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa81ac726 drm_dp_pcon_pps_override_param +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xae888b75 drm_helper_force_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaea14e29 drm_atomic_helper_resume EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaf267620 drm_dp_lttpr_count -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb079a18d drm_scdc_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb0848d86 drm_crtc_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb2875fcd drm_lspcon_get_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb3457f07 __drm_atomic_helper_crtc_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb3767f66 drm_gem_fb_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb4384792 drm_fb_helper_alloc_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb6a7a537 drm_dp_update_payload_part1 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb740c184 drm_self_refresh_helper_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb854a83e drm_atomic_helper_calc_timestamping_constants -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb8dea6c8 drm_atomic_helper_wait_for_dependencies -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb8ebc823 drm_atomic_helper_check_plane_damage -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb97cd065 drm_dp_dual_mode_max_tmds_clock -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xba7e93b8 drm_dp_mst_topology_state_funcs -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbcb03bf2 drm_atomic_helper_connector_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbd0a1016 drm_atomic_helper_plane_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbd6b2d7b drm_dp_mst_topology_mgr_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbde65efe drm_atomic_helper_commit_tail_rpm -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbe620cfc drm_fb_helper_restore_fbdev_mode_unlocked -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbf9edfc8 drm_dp_downstream_id -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc0e0cbb1 drm_dp_cec_unregister_connector -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc1499ad0 drm_scdc_set_scrambling -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc1a3521e drm_kms_helper_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc2eade78 drm_dp_pcon_pps_override_buf -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc2edcf4e drm_kms_helper_poll_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaf67a18b drm_dp_pcon_pps_default +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xafbc5dd0 __drm_atomic_helper_private_obj_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb0241dee drm_atomic_helper_check_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb1874fea drm_dp_update_payload_part1 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb1ae6e6e drm_dp_atomic_find_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb22ecae8 drm_dp_cec_set_edid +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb2b9190a drm_scdc_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb63f8bf3 drm_dp_mst_detect_port +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb87def3d drm_dp_atomic_release_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb906f795 drm_dp_aux_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbbc7b75a drm_dp_pcon_reset_frl_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbd555985 drm_dp_lttpr_link_train_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbd675c19 drm_gem_cleanup_shadow_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbdbe69b6 drm_dp_downstream_debug +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbf145dab drm_fb_helper_set_par +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbf4d7811 drm_lspcon_get_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbf81e344 drm_atomic_helper_commit_modeset_disables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc020c0c1 drm_dp_pcon_dsc_max_slice_width +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc0607acb drm_mode_config_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc19a9ce7 drm_dp_pcon_hdmi_link_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc1b2984d drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc4541a32 drm_atomic_helper_commit_tail +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc4c17d83 drm_dp_pcon_hdmi_frl_link_error_count EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc5c99a79 drm_dp_get_adjust_request_voltage -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc5f6a4fb drm_dp_mst_detect_port -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc6d24719 drm_dp_mst_connector_late_register +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc6715d78 drm_dp_vsc_sdp_log EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc79ecffb drm_dp_downstream_is_type EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc85e28e8 drm_fb_xrgb8888_to_rgb565_dstclip -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc8ccd7f4 drm_self_refresh_helper_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc8f75ce9 drm_dp_pcon_hdmi_link_active -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xca565bf8 drm_mode_config_helper_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcabfe665 drm_fb_helper_deferred_io -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcb1e3ced drm_dp_pcon_hdmi_link_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcb31dfdf drm_dp_mst_connector_early_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcb6ee9cf drm_fb_helper_cfb_fillrect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcbd24c0f __drm_atomic_helper_plane_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcc9bcdad drm_dp_read_lttpr_phy_caps -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xce592ff4 drm_dp_aux_register -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcee07534 drm_gem_reset_shadow_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd0af246b drm_gem_simple_kms_duplicate_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd2987b0b drm_atomic_helper_commit_duplicated_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd2b04c60 drm_kms_helper_poll_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc93662fd drm_atomic_helper_wait_for_flip_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcaa5f1a6 drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcb0b434e drm_dp_mst_add_affected_dsc_crtcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcb7f46bb drm_fb_helper_cfb_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcf76c65e drm_atomic_get_mst_topology_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcfc08cdb drm_dp_mst_topology_mgr_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcfc2dbb0 drm_fb_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcfe8c4c7 drm_primary_helper_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd0a08c6a drm_dp_mst_put_port_malloc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd0f96dec drm_dp_read_mst_cap EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd2b0c7e6 drm_dp_downstream_is_tmds -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd304cf6a drm_helper_probe_detect EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd4983d85 drm_fb_swab -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd6356cf5 drm_gem_prepare_shadow_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd8856cea drm_dp_cec_irq -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd9b0d65d drm_fb_helper_initial_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd9f84c36 drm_atomic_helper_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd4c0e468 drm_dp_mst_allocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd520a38c drm_self_refresh_helper_alter_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd5b22b50 drm_dp_read_desc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd646fae8 drm_edp_backlight_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd7eb523a drm_dp_start_crc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd8320bc5 drm_panel_bridge_add_typed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd9f22530 drm_self_refresh_helper_update_avg_times +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xda38af77 drm_dp_mst_topology_state_funcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdaab897d drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdb1dc2d3 drm_atomic_helper_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdb8782a7 drm_dp_find_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdb95d6d0 drm_gem_fb_begin_cpu_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdb95fafa drm_panel_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdbb3adfc drm_gem_simple_kms_duplicate_shadow_plane_state EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdbc3c128 drm_fb_blit_dstclip -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdc1c279c drm_atomic_helper_prepare_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdc539865 drm_fb_helper_fill_info -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdc5d4b9f drm_dp_mst_put_port_malloc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdc718258 drm_atomic_helper_check_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdd25f079 drm_dp_pcon_dsc_max_slice_width -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdd87b7df drm_dp_mst_get_port_malloc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdedc553e drm_dp_aux_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdf066f23 drm_dp_mst_get_edid -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdf82401c drm_atomic_helper_commit_tail -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdfd11963 drm_simple_display_pipe_attach_bridge -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe26afa2e __drm_atomic_helper_connector_state_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe2760d2b __drm_atomic_helper_crtc_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe4cb20fc drm_fb_helper_ioctl -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe55a3ef1 drm_atomic_helper_cleanup_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe57b748b drm_self_refresh_helper_alter_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe64bdfd7 drm_scdc_get_scrambling_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe8b1c82e drm_gem_fb_end_cpu_access -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe8d5f820 drm_atomic_helper_commit_cleanup_done -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe913e4ef drm_dp_pcon_hdmi_frl_link_error_count -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeb33f61f drm_dp_aux_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xec5f5450 drm_dp_pcon_is_frl_ready -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xed16ea9b drm_panel_bridge_add -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xed252d69 drm_gem_simple_kms_prepare_shadow_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xddc514db __drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdf4a52d4 drm_dp_mst_reset_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdf943367 drm_fb_helper_set_suspend_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe0d9c24e drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe29b3a70 drm_atomic_helper_bridge_propagate_bus_fmt +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe2dd3acb drm_fb_helper_debug_enter +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe5360b84 drm_dp_pcon_dsc_max_slices +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe542c3f7 drm_atomic_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe56cf845 drm_kms_helper_poll_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe6cc6a5a __drm_atomic_helper_plane_state_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe990ac97 drm_kms_helper_poll_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe9d38d47 drm_atomic_helper_bridge_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeae0845c drm_gem_simple_display_pipe_prepare_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeced3fed drm_dp_set_subconnector_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xedceccb7 drm_fb_helper_sys_imageblit EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xedcf81ce drm_dp_channel_eq_ok -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xedfe966d drm_atomic_helper_plane_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xee65af05 __drm_atomic_helper_bridge_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeeb672b6 drm_dp_send_power_updown_phy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf0a6fbc3 drm_dp_pcon_convert_rgb_to_ycbcr -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf38b02da drm_dp_link_train_channel_eq_delay -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf3b314da drm_dp_cec_set_edid -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf3d6b4c8 drm_atomic_helper_check -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf4cc98c2 drm_atomic_helper_connector_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf6244ddf drm_atomic_helper_commit_modeset_enables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xefc69104 drm_atomic_helper_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf1b6db63 drm_dp_pcon_frl_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf1c549e6 drm_fb_helper_cfb_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf2066a23 drm_helper_crtc_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf2294488 drm_atomic_helper_page_flip_target +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf3efcbdd drm_gem_fb_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf433a87e drm_atomic_helper_async_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf498154c drm_gem_fb_end_cpu_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf50d410a drm_fb_helper_sys_copyarea EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf68741fb drm_dp_subconnector_type EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf689ad25 drm_dp_downstream_420_passthrough -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf74eb52a drm_atomic_helper_plane_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf8333b3c drm_dp_pcon_dsc_max_slices -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf845c899 drm_atomic_helper_fake_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf8975fd6 drm_dp_read_lttpr_common_caps -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf8a52feb drm_helper_force_disable_all -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf8c425dd drm_atomic_helper_disable_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf8e4daae drm_atomic_helper_dirtyfb -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf9bb2aed drm_dp_send_real_edid_checksum -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf9d30991 drm_atomic_helper_swap_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf9d56396 drm_fbdev_generic_setup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfa7c708b drm_atomic_helper_commit_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfafb9ff8 drm_dp_dpcd_read EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfb1a7a5a drm_dp_downstream_rgb_to_ycbcr_conversion -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfd871c81 drm_fb_helper_sys_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfc8b7477 drm_dp_dual_mode_max_tmds_clock +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfd1aa707 drm_dp_remote_aux_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfd39746e drm_kms_helper_poll_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfd722d60 drm_dp_mst_hpd_irq +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfdb32ada drm_helper_mode_fill_fb_struct EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfe12bcb9 drm_dsc_compute_rc_parameters -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xff223437 __drm_atomic_helper_plane_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x05124588 mipi_dbi_enable_flush -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x0f840ae1 mipi_dbi_command_stackbuf -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x133a549c mipi_dbi_dev_init_with_formats -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x1bad42e2 mipi_dbi_spi_init -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x1e1c32f3 mipi_dbi_command_read -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x256c9e66 mipi_dbi_display_is_on -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x39c7a42a mipi_dbi_pipe_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x41cb8ae6 mipi_dbi_poweron_conditional_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x4416c129 mipi_dbi_poweron_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x58cb90b1 mipi_dbi_dev_init -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x6cefe998 mipi_dbi_debugfs_init -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x89ecc777 mipi_dbi_spi_cmd_max_speed -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xbdd115c3 mipi_dbi_pipe_update -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xdf096fc6 mipi_dbi_spi_transfer -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xebeb1b7a mipi_dbi_hw_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xee94e6b4 mipi_dbi_command_buf -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xeeb548bd mipi_dbi_buf_copy -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x189e9900 drm_gem_ttm_dumb_map_offset -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x9808beb1 drm_gem_ttm_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x9a8d9452 drm_gem_ttm_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0xf56926ed drm_gem_ttm_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0xf8395735 drm_gem_ttm_print_info -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x0b137a4f drm_gem_vram_fill_create_dumb -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x3ba25625 drm_gem_vram_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x40961ae7 drm_vram_mm_debugfs_init -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x5a89c1e9 drm_gem_vram_offset -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x5b8c7fa2 drm_gem_vram_plane_helper_cleanup_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x748b5937 drm_gem_vram_driver_dumb_create -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x9199eee2 drm_vram_helper_mode_valid -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x9a1b5705 drm_gem_vram_unpin -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x9fb4f697 drm_gem_vram_simple_display_pipe_prepare_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xac8cd2f9 drm_gem_vram_pin -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xafc44f25 drm_gem_vram_put -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xb73c5512 drmm_vram_helper_init -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xc2d1d71f drm_gem_vram_create -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xc605699e drm_gem_vram_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xcffbd266 drm_gem_vram_plane_helper_prepare_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xec3c8ec0 drm_gem_vram_simple_display_pipe_cleanup_fb -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x08a7de2b drm_sched_increase_karma -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x0e8d0660 drm_sched_entity_destroy -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x0f9619d4 drm_sched_entity_fini -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x2dd2a79a to_drm_sched_fence -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x388db654 drm_sched_fault -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x3a2acc98 drm_sched_pick_best -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x40f80adc drm_sched_entity_push_job -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x41bdbd89 drm_sched_stop -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x48f9ca12 drm_sched_entity_flush -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x4bfff22e drm_sched_job_cleanup -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x52165857 drm_sched_dependency_optimized -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x579aa5f0 drm_sched_entity_init -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x5dd11a9a drm_sched_job_init -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x671e053c drm_sched_entity_modify_sched -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x706ec1d3 drm_sched_start -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x711c4eaf drm_sched_fini -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x75375004 drm_sched_resubmit_jobs -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x8219cab8 drm_sched_init -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x98cff100 drm_sched_increase_karma_ext -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x993b79f1 drm_sched_reset_karma -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xaf49e4aa drm_sched_entity_set_priority -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xbeb8e49b drm_sched_resubmit_jobs_ext -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xc1020a3e drm_sched_resume_timeout -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xf3b707e6 drm_sched_suspend_timeout -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0039fd14 ttm_tt_destroy_common -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x06277eb6 ttm_resource_manager_evict_all -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x06df3f50 ttm_resource_free -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x09855775 ttm_bo_vm_close -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0a341ea8 ttm_bo_vmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0c58fc56 ttm_range_man_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0f5c09e2 ttm_eu_backoff_reservation -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x14517514 ttm_move_memcpy -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x150941ba ttm_bo_vm_fault_reserved -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1680dbc4 ttm_resource_manager_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x19065677 ttm_agp_bind -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1f9cb0a9 ttm_bo_mmap_obj -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1fa67e4d ttm_glob -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x225ad044 ttm_io_prot -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3e854a71 ttm_bo_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3ff257d2 ttm_agp_unbind -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x40a52516 ttm_sg_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x435a7c18 ttm_agp_is_bound -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4e34a847 ttm_device_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x59a89ca7 ttm_pool_alloc -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5f2c1ebf ttm_bo_move_to_lru_tail -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x604e4c26 ttm_pool_free +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfe850355 drm_dp_mst_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xff6da9d2 drm_atomic_helper_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x00dfe301 mipi_dbi_pipe_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x04a07cbc mipi_dbi_command_read +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x33054c96 mipi_dbi_poweron_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x50a7a428 mipi_dbi_spi_cmd_max_speed +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x514af55f mipi_dbi_spi_init +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x6114ecfa mipi_dbi_buf_copy +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x626bb733 mipi_dbi_hw_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x727c6697 mipi_dbi_poweron_conditional_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x8c639fd5 mipi_dbi_enable_flush +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x9aa76efb mipi_dbi_pipe_update +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xa35d4aa0 mipi_dbi_spi_transfer +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xb89534ee mipi_dbi_dev_init +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xd7e0c20f mipi_dbi_dev_init_with_formats +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xdacc0443 mipi_dbi_debugfs_init +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xeb5c6959 mipi_dbi_command_stackbuf +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xece33055 mipi_dbi_command_buf +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xed5e9ea6 mipi_dbi_display_is_on +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x29f55921 drm_gem_ttm_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x746b4d0f drm_gem_ttm_dumb_map_offset +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x758b8470 drm_gem_ttm_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x85db8cbb drm_gem_ttm_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0xac1def57 drm_gem_ttm_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x1321c8c9 drm_gem_vram_simple_display_pipe_prepare_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x37aff139 drm_gem_vram_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x54e14edb drm_gem_vram_put +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x5d71c848 drm_gem_vram_create +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x60bd5f19 drm_gem_vram_unpin +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x73f3a142 drm_gem_vram_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x7c4ff8db drm_vram_helper_mode_valid +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x894bb1da drm_gem_vram_simple_display_pipe_cleanup_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x8f0cedd5 drm_gem_vram_fill_create_dumb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xa5b401ff drm_gem_vram_plane_helper_cleanup_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xb4ef63de drm_gem_vram_pin +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xb8c940c7 drm_gem_vram_driver_dumb_create +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xc96e110c drm_gem_vram_offset +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xcc30c941 drm_vram_mm_debugfs_init +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xd4f07cb1 drmm_vram_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xe734dd3e drm_gem_vram_plane_helper_prepare_fb +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x088a5d0a drm_sched_increase_karma +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x1e52b099 drm_sched_stop +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x1ecbb304 drm_sched_fault +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x4619610c drm_sched_resubmit_jobs +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x46f147e2 drm_sched_increase_karma_ext +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x5f6ffd86 drm_sched_resume_timeout +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x6e4131f3 drm_sched_entity_fini +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x7ba62c5c drm_sched_entity_push_job +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x7cc1f23e to_drm_sched_fence +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x7e706fb8 drm_sched_entity_set_priority +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x80b3379a drm_sched_fini +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x92b355a3 drm_sched_start +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xaa85b628 drm_sched_reset_karma +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xb1163804 drm_sched_suspend_timeout +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xb58bb340 drm_sched_dependency_optimized +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xbf0f12f5 drm_sched_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xc446918f drm_sched_entity_flush +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xd92d4ee9 drm_sched_pick_best +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xe21b0ea2 drm_sched_entity_modify_sched +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xecf2efc4 drm_sched_entity_destroy +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xef531938 drm_sched_job_cleanup +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xf41b7f56 drm_sched_job_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xf66446e8 drm_sched_entity_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xf739a913 drm_sched_resubmit_jobs_ext +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x031e6562 ttm_kmap_iter_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x03589cc0 ttm_resource_manager_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0a4d76bf ttm_bo_vm_close +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0f0024d2 ttm_bo_vunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x104658f1 ttm_bo_mmap_obj +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x16c99690 ttm_bo_move_memcpy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1f6fcc6d ttm_io_prot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1f84b35c ttm_bo_mem_space +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x29ebd90c ttm_range_man_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2f7a625d ttm_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3a20781c ttm_bo_vmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x421c69d6 ttm_bo_unlock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4391d176 ttm_pool_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x44b1de87 ttm_bo_vm_reserve +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x469149c3 ttm_move_memcpy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4d0c4e1c ttm_tt_destroy_common +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4ddd7fba ttm_bo_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4f6cf733 ttm_bo_vm_dummy_page +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4f9be698 ttm_agp_destroy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x50546fce ttm_tt_populate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5153569f ttm_device_swapout +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5a04a850 ttm_bo_move_to_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5afe8271 ttm_resource_manager_debug +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x607f73f2 ttm_bo_vm_access EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6536031b ttm_kmap_iter_iomap_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x67b51f12 ttm_agp_tt_create -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6b21bcdd ttm_tt_populate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x735aa394 ttm_range_man_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x790f5271 ttm_eu_fence_buffer_objects -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7fac247c ttm_resource_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x95da1787 ttm_bo_vunmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x96498464 ttm_bo_put -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9d1d279d ttm_bo_move_memcpy -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa6c34c2b ttm_bo_vm_access -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa79f850a ttm_bo_vm_fault -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xad89d3a6 ttm_agp_destroy -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xae39eaca ttm_bo_kunmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xae72cac1 ttm_bo_vm_dummy_page -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xaf3cf82e ttm_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x687af801 ttm_bo_validate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x71b23454 ttm_bo_vm_open +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x729f4116 ttm_resource_manager_evict_all +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7484245c ttm_eu_fence_buffer_objects +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7e521bab ttm_bo_wait +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7f581dc0 ttm_glob +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8307be10 ttm_global_swapout +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x841306c6 ttm_bo_kmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8e9c0a7e ttm_agp_bind +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8ee465ca ttm_range_man_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8ee76137 ttm_bo_init_reserved +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x997f5e47 ttm_bo_move_accel_cleanup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9fb0b8a3 ttm_eu_backoff_reservation +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa3b88639 ttm_bo_bulk_move_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa3d6b043 ttm_resource_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa67477e7 ttm_agp_is_bound +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xab6de58d ttm_bo_unmap_virtual +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xaf39c682 ttm_eu_reserve_buffers +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb03580cc ttm_sg_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb4a680d9 ttm_bo_eviction_valuable +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb74d2713 ttm_resource_free EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb753ca08 ttm_bo_mem_compat -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb7618c03 ttm_bo_vm_reserve -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb7b81fad ttm_bo_kmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb813b6ae ttm_global_swapout -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbbe66481 ttm_bo_lock_delayed_workqueue -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc9eb5337 ttm_bo_unlock_delayed_workqueue -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcf63cbff ttm_tt_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd0b08837 ttm_bo_bulk_move_lru_tail -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd3d97b59 ttm_device_swapout -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd8a5938c ttm_bo_eviction_valuable -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xda55f3d5 ttm_eu_reserve_buffers -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xddc99fa7 ttm_bo_init_reserved -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdf258fd7 ttm_device_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe4b37c84 ttm_kmap_iter_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe9fb60bd ttm_resource_manager_debug -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xeac03fb3 ttm_bo_move_accel_cleanup -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf3372542 ttm_pool_debugfs -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf50f27a6 ttm_bo_wait -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf58addb2 ttm_bo_vm_open -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf787d31c ttm_bo_validate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf9181edc ttm_bo_unmap_virtual -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfe9007d7 ttm_bo_mem_space +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb972ef97 ttm_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbb0452b7 ttm_bo_lock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc79e4ca9 ttm_bo_vm_fault_reserved +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc9d63477 ttm_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xca7554a6 ttm_bo_kunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcf4af215 ttm_agp_unbind +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd3f54d78 ttm_pool_alloc +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdd09e5f8 ttm_bo_vm_fault +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe04369c4 ttm_pool_debugfs +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe04aebb9 ttm_bo_put +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf8261567 ttm_agp_tt_create +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xff877f3f ttm_device_fini +EXPORT_SYMBOL drivers/gpu/drm/vmwgfx/vmwgfx 0x077694f6 ttm_mem_global_alloc +EXPORT_SYMBOL drivers/gpu/drm/vmwgfx/vmwgfx 0x0b4a6fa1 ttm_mem_global_free EXPORT_SYMBOL drivers/gpu/drm/vmwgfx/vmwgfx 0x446c961c ttm_base_object_noref_lookup -EXPORT_SYMBOL drivers/gpu/drm/vmwgfx/vmwgfx 0x479cd6f8 ttm_mem_glob EXPORT_SYMBOL drivers/gpu/drm/vmwgfx/vmwgfx 0x6052860c ttm_round_pot -EXPORT_SYMBOL drivers/gpu/drm/vmwgfx/vmwgfx 0xad78d551 ttm_mem_global_alloc -EXPORT_SYMBOL drivers/gpu/drm/vmwgfx/vmwgfx 0xfd25a8d7 ttm_mem_global_free -EXPORT_SYMBOL drivers/hid/hid 0x38c4a0a2 hid_bus_type -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x04e2a163 ishtp_device -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x0fed1d9e ishtp_cl_tx_empty -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x15375b04 ishtp_cl_get_tx_free_rings -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x1983df82 ishtp_dev_to_cl_device -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x19fdf24a ishtp_get_pci_device -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x1d2e6377 ishtp_reset_compl_handler -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x1e0842c1 ishtp_cl_io_rb_recycle -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x2203dc8d ishtp_get_client_data -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x3a100eda ishtp_bus_remove_all_clients -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x3fee6075 ishtp_cl_get_tx_free_buffer_size -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x41822dfc ishtp_get_device -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x4617c63c ishtp_fw_cl_get_client -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x4698fdcc ishtp_set_tx_ring_size -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x51eb6981 ishtp_cl_set_fw_client_id -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x53cfa148 ishtp_set_client_data -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x559ca974 ishtp_register_event_cb -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x5a53cb06 ishtp_cl_disconnect -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x5db194a8 ishtp_fw_cl_by_uuid +EXPORT_SYMBOL drivers/gpu/drm/vmwgfx/vmwgfx 0x642be731 ttm_mem_glob +EXPORT_SYMBOL drivers/hid/hid 0xb81b67d2 hid_bus_type +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x045672fc ishtp_cl_link +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x0deed4e5 ishtp_cl_get_tx_free_rings +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x130bdde4 ishtp_fw_cl_get_client +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x14a1d12b ishtp_dev_to_cl_device +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x1650d0c5 ishtp_cl_rx_get_rb +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x1b8602c1 ishtp_bus_remove_all_clients +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x1f97e493 ishtp_cl_connect +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x20f2a907 ishtp_set_client_data +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x242d43ce ishtp_cl_io_rb_recycle +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x258ed598 ishtp_cl_get_tx_free_buffer_size +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x4c8d3a26 ishtp_cl_allocate +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x50cacf06 ishtp_get_client_data +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x571ba995 ishtp_start +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x5a82a883 ishtp_reset_compl_handler +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x5ed441b6 ishtp_trace_callback EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x5f9b0501 ishtp_get_fw_client_id -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x70b7825e ish_hw_reset -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x7307742c ishtp_trace_callback -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x7c03f2cd ishtp_send_suspend -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x7dc78fde ishtp_cl_rx_get_rb -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x81e56031 ishtp_cl_driver_unregister -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x860f7892 ishtp_cl_flush_queues -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x8671b88e ishtp_cl_unlink -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x893ebbca ishtp_recv -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x8f4fc94f ishtp_put_device -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x931f4504 ishtp_set_drvdata -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x965da913 ishtp_set_connection_state -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x9661b910 ishtp_cl_driver_register -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x9766c561 ishtp_set_rx_ring_size -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x9d1dcd34 ishtp_cl_link -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xb0e0f6cd ishtp_get_ishtp_device -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xb6697450 ishtp_start -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xbb784bd6 ishtp_reset_handler -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xbefe2aa5 ishtp_cl_allocate -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xc31292ad ishtp_cl_connect -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xdbe8309a ishtp_send_resume -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xe0c06335 ishtp_get_drvdata -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xf1996025 ishtp_device_init -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xf6758215 ishtp_cl_free -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xffd61969 ishtp_cl_send -EXPORT_SYMBOL drivers/hv/hv_vmbus 0xf6cd0055 vmbus_sendpacket -EXPORT_SYMBOL drivers/hv/hv_vmbus 0xfdfc8882 vmbus_recvpacket +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x60009e1b ishtp_device_init +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x68a9aa27 ishtp_device +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x7d2da345 ishtp_get_drvdata +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x7fbd62f7 ishtp_cl_tx_empty +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x8b9b1398 ishtp_reset_handler +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x8f700a44 ishtp_get_pci_device +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x9673cb48 ishtp_cl_driver_unregister +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x97a30f4a ishtp_set_tx_ring_size +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x9a427875 ishtp_fw_cl_by_uuid +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x9d55b907 ishtp_recv +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x9e163378 ishtp_register_event_cb +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x9ecb85f2 ishtp_set_drvdata +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x9ef2eba7 ish_hw_reset +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xa044b9fe ishtp_cl_free +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xa0e5a659 ishtp_set_connection_state +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xb273495c ishtp_get_device +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xbde96121 ishtp_cl_disconnect +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xc580483f ishtp_cl_send +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xd066a763 ishtp_send_suspend +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xd254f362 ishtp_cl_set_fw_client_id +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xd453909e ishtp_cl_flush_queues +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xd779900a ishtp_send_resume +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xdae0de6e ishtp_cl_driver_register +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xe1a22ed0 ishtp_set_rx_ring_size +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xe95a1c64 ishtp_cl_unlink +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xf6f8be3f ishtp_put_device +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xfe8aac15 ishtp_get_ishtp_device +EXPORT_SYMBOL drivers/hv/hv_vmbus 0x76f7df2e vmbus_sendpacket +EXPORT_SYMBOL drivers/hv/hv_vmbus 0xf8944742 vmbus_recvpacket EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x2f9e7f8e vid_which_vrm EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x446615bd vid_from_reg EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x01568393 sch56xx_read_virtual_reg -EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x2bc6da4f sch56xx_watchdog_register +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x4f3d72be sch56xx_watchdog_register EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x96ec3b26 sch56xx_read_virtual_reg12 EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xaa17a737 sch56xx_write_virtual_reg EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xb37b9b81 sch56xx_read_virtual_reg16 -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x28877b35 i2c_bit_algo -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x570ec4e4 i2c_bit_add_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x87485104 i2c_bit_add_numbered_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x0f2011a2 i2c_pca_add_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x1b629baa i2c_pca_add_numbered_bus -EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0x2f2e5bf0 amd756_smbus -EXPORT_SYMBOL drivers/iio/accel/bma400_core 0x0d4f48d1 bma400_probe -EXPORT_SYMBOL drivers/iio/accel/bma400_core 0x7dd3b35c bma400_regmap_config -EXPORT_SYMBOL drivers/iio/accel/bma400_core 0xdfa7a492 bma400_remove -EXPORT_SYMBOL drivers/iio/accel/kxsd9 0x0de6f773 kxsd9_dev_pm_ops -EXPORT_SYMBOL drivers/iio/accel/kxsd9 0x5375b253 kxsd9_common_remove -EXPORT_SYMBOL drivers/iio/accel/kxsd9 0x5e76edbf kxsd9_common_probe -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x0b6dd8f0 mma9551_read_status_words -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x11d226ba mma9551_app_reset -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x1b4f026a mma9551_write_config_word -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x1d1488ee mma9551_read_config_words -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x2102af46 mma9551_read_config_byte -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x30becbb8 mma9551_update_config_bits -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x37089f27 mma9551_read_status_byte +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x0fdacc9f i2c_bit_algo +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x6bdba45b i2c_bit_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xdccb4a0b i2c_bit_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x3f8c70fd i2c_pca_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0xb84f5453 i2c_pca_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0xc55812a4 amd756_smbus +EXPORT_SYMBOL drivers/iio/accel/bma400_core 0x06993fcf bma400_remove +EXPORT_SYMBOL drivers/iio/accel/bma400_core 0x29d5d197 bma400_probe +EXPORT_SYMBOL drivers/iio/accel/bma400_core 0x9bdd19ca bma400_regmap_config +EXPORT_SYMBOL drivers/iio/accel/kxsd9 0x9bbf7807 kxsd9_dev_pm_ops +EXPORT_SYMBOL drivers/iio/accel/kxsd9 0xc4ac0680 kxsd9_common_probe +EXPORT_SYMBOL drivers/iio/accel/kxsd9 0xe9877c43 kxsd9_common_remove +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x04a96564 mma9551_write_config_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x06c137bb mma9551_gpio_config +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x1108e710 mma9551_read_status_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x1fdb1e9a mma9551_set_device_state EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x41ef446c mma9551_read_accel_scale -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x5a01797b mma9551_set_device_state -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x801056aa mma9551_write_config_words -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x9cd47d53 mma9551_gpio_config -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xa6451041 mma9551_read_version +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x4812c7e2 mma9551_read_accel_chan +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x5f6b22d7 mma9551_read_version +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x6529256c mma9551_write_config_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x830b7da0 mma9551_read_status_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x87294549 mma9551_read_config_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x930d6cf5 mma9551_read_status_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xa012b722 mma9551_set_power_state +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xa4f0c16d mma9551_read_config_word EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xbcd7fe96 mma9551_sleep -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xcc99d7ad mma9551_read_accel_chan -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xcdad328e mma9551_set_power_state -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xd5275099 mma9551_read_config_word -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xef840b67 mma9551_read_status_word -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xf978426f mma9551_write_config_byte -EXPORT_SYMBOL drivers/iio/accel/st_accel 0x9f4bef43 st_accel_common_probe -EXPORT_SYMBOL drivers/iio/accel/st_accel 0xc2d98c8d st_accel_get_settings -EXPORT_SYMBOL drivers/iio/accel/st_accel 0xc61c07bf st_accel_common_remove +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xbfc06425 mma9551_update_config_bits +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xc2c2f199 mma9551_write_config_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xe8f58061 mma9551_read_config_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xefe3b870 mma9551_app_reset +EXPORT_SYMBOL drivers/iio/accel/st_accel 0x3769eadf st_accel_get_settings +EXPORT_SYMBOL drivers/iio/accel/st_accel 0x79e50736 st_accel_common_probe +EXPORT_SYMBOL drivers/iio/accel/st_accel 0xba37340f st_accel_common_remove EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x10a4c688 qcom_adc5_hw_scale EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x12402a0a qcom_vadc_scale EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x39885d6b qcom_adc_tm5_temp_volt_scale @@ -1181,1241 +1180,1251 @@ 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 0x1035530c iio_triggered_buffer_cleanup -EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0x1fadb3a0 iio_triggered_buffer_setup_ext -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x1bb1783c iio_kfifo_allocate -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x497e3558 iio_kfifo_free -EXPORT_SYMBOL drivers/iio/chemical/bme680_core 0x7a740984 bme680_regmap_config -EXPORT_SYMBOL drivers/iio/chemical/scd30_core 0x1552116a scd30_suspend -EXPORT_SYMBOL drivers/iio/chemical/scd30_core 0x194d7230 scd30_resume -EXPORT_SYMBOL drivers/iio/chemical/scd30_core 0xf64b552c scd30_probe +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0x1ea518ce iio_triggered_buffer_cleanup +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0xca6c0443 iio_triggered_buffer_setup_ext +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x48e68e1c iio_kfifo_free +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xe6e792dd iio_kfifo_allocate +EXPORT_SYMBOL drivers/iio/chemical/bme680_core 0x6e0fc4ee bme680_regmap_config +EXPORT_SYMBOL drivers/iio/chemical/scd30_core 0x262bc664 scd30_suspend +EXPORT_SYMBOL drivers/iio/chemical/scd30_core 0x871fa1ac scd30_resume +EXPORT_SYMBOL drivers/iio/chemical/scd30_core 0xf7c1e980 scd30_probe EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x045688dd ms_sensors_read_prom_word EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x2d2f5cd5 ms_sensors_reset +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x3f379fdc ms_sensors_ht_read_humidity +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x41dfc713 ms_sensors_write_heater EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x42b6a050 ms_sensors_convert_and_read -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x5e43edcb ms_sensors_show_battery_low -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x6d8ae67b ms_sensors_ht_read_humidity -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x8bbe1825 ms_sensors_write_resolution -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xb13614cb ms_sensors_read_serial -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xb2d1b807 ms_sensors_write_heater -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xb788f6e3 ms_sensors_ht_read_temperature -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xc6cf2c3d ms_sensors_tp_read_prom -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xd7db9712 ms_sensors_read_temp_and_pressure -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xe6825305 ms_sensors_show_heater -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x8039976a ssp_change_delay -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x9e981bdd ssp_get_sensor_delay -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xb9cdf9bc ssp_enable_sensor -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xec10d2ff ssp_disable_sensor -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xf840cc30 ssp_register_consumer -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x1718475c ssp_common_process_data -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x663e9e1c ssp_common_buffer_postdisable -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x7b641a10 ssp_common_buffer_postenable +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x560c0f3d ms_sensors_show_heater +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x6a557805 ms_sensors_read_serial +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x711bced9 ms_sensors_write_resolution +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x885f1510 ms_sensors_show_battery_low +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xa03f5ecf ms_sensors_read_temp_and_pressure +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xcd9579ea ms_sensors_tp_read_prom +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xea3d394e ms_sensors_ht_read_temperature +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x15933dd0 ssp_get_sensor_delay +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x4e3b4461 ssp_disable_sensor +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xd47850d0 ssp_change_delay +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xdb204564 ssp_register_consumer +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xf28e71bf ssp_enable_sensor +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x5367053d ssp_common_process_data +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x8f227692 ssp_common_buffer_postenable +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x9a2ee022 ssp_common_buffer_postdisable EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x074d7047 st_sensors_trigger_handler -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x0b464ec7 st_sensors_read_info_raw -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x15156957 st_sensors_set_enable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x1c9c3e62 st_sensors_init_sensor -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x1e83db86 st_sensors_sysfs_scale_avail -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x2aa35e6a st_sensors_sysfs_sampling_frequency_avail -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x2bd39903 st_sensors_get_settings_index -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x30ea74e8 st_sensors_set_dataready_irq -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x55d4be54 st_sensors_set_odr -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x63082feb st_sensors_deallocate_trigger -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x808eb36c st_sensors_debugfs_reg_access -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x8a9cce37 st_sensors_dev_name_probe -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x8b8ac972 st_sensors_allocate_trigger -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xab43ff9c st_sensors_power_enable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xd942793d st_sensors_power_disable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xea21083c st_sensors_set_fullscale_by_gain -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xebe3a4fa st_sensors_validate_device -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xf0262fe6 st_sensors_verify_id -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xf5332beb st_sensors_set_axis_enable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0x7ced2f26 st_sensors_i2c_configure -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_spi 0x3fd9909a st_sensors_spi_configure -EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0x4f99e1ff mpu3050_dev_pm_ops -EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0xc254bbef mpu3050_common_probe -EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0xc714f678 mpu3050_common_remove -EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0xab1be1c2 st_gyro_common_probe -EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0xab46e605 st_gyro_common_remove -EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0xcba6a812 st_gyro_get_settings -EXPORT_SYMBOL drivers/iio/humidity/hts221 0x2de12b20 hts221_pm_ops -EXPORT_SYMBOL drivers/iio/humidity/hts221 0x821ccddd hts221_probe -EXPORT_SYMBOL drivers/iio/imu/adis_lib 0xde202780 adis_enable_irq -EXPORT_SYMBOL drivers/iio/imu/adis_lib 0xf5440c49 adis_debugfs_reg_access +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x0db794fe st_sensors_init_sensor +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x2087b38a st_sensors_sysfs_scale_avail +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x2ef450e7 st_sensors_set_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x31ee3e58 st_sensors_verify_id +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x44a974e0 st_sensors_power_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x45e26e28 st_sensors_sysfs_sampling_frequency_avail +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x5df6fd50 st_sensors_get_settings_index +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x694ea250 st_sensors_read_info_raw +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x723503d6 st_sensors_debugfs_reg_access +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x7813f297 st_sensors_validate_device +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x80d946ef st_sensors_deallocate_trigger +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x811aa359 st_sensors_set_fullscale_by_gain +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xac8abf71 st_sensors_set_dataready_irq +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xbdf8b921 st_sensors_set_axis_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xc5975975 st_sensors_set_odr +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xc8a24ea2 st_sensors_dev_name_probe +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xcc14f713 st_sensors_allocate_trigger +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xcea218f0 st_sensors_power_disable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0x904ed069 st_sensors_i2c_configure +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_spi 0x164a34aa st_sensors_spi_configure +EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0x4943fb67 mpu3050_dev_pm_ops +EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0xd0b63251 mpu3050_common_remove +EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0xdf00b83c mpu3050_common_probe +EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x5421cb56 st_gyro_common_probe +EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x7404ad45 st_gyro_get_settings +EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x7fd88074 st_gyro_common_remove +EXPORT_SYMBOL drivers/iio/humidity/hts221 0x691a6ca9 hts221_probe +EXPORT_SYMBOL drivers/iio/humidity/hts221 0xa481e296 hts221_pm_ops +EXPORT_SYMBOL drivers/iio/imu/adis_lib 0x514ca852 adis_debugfs_reg_access +EXPORT_SYMBOL drivers/iio/imu/adis_lib 0x68e6d3e8 adis_enable_irq +EXPORT_SYMBOL drivers/iio/imu/bmi160/bmi160_core 0x9d065667 bmi160_regmap_config EXPORT_SYMBOL drivers/iio/imu/bmi160/bmi160_core 0xca19cfae bmi160_enable_irq -EXPORT_SYMBOL drivers/iio/imu/bmi160/bmi160_core 0xccf070d7 bmi160_regmap_config -EXPORT_SYMBOL drivers/iio/imu/fxos8700_core 0x7a995a09 fxos8700_regmap_config -EXPORT_SYMBOL drivers/iio/imu/st_lsm6dsx/st_lsm6dsx 0x047eb51a st_lsm6dsx_probe -EXPORT_SYMBOL drivers/iio/imu/st_lsm6dsx/st_lsm6dsx 0x43a9d9e3 st_lsm6dsx_pm_ops -EXPORT_SYMBOL drivers/iio/industrialio 0x1d87bc73 iio_read_const_attr -EXPORT_SYMBOL drivers/iio/industrialio 0x1fddc8bc iio_trigger_using_own -EXPORT_SYMBOL drivers/iio/industrialio 0x25ebe45e __iio_device_register +EXPORT_SYMBOL drivers/iio/imu/fxos8700_core 0x005e7352 fxos8700_regmap_config +EXPORT_SYMBOL drivers/iio/imu/st_lsm6dsx/st_lsm6dsx 0x14573549 st_lsm6dsx_pm_ops +EXPORT_SYMBOL drivers/iio/imu/st_lsm6dsx/st_lsm6dsx 0xa4c0f914 st_lsm6dsx_probe +EXPORT_SYMBOL drivers/iio/industrialio 0x02e07c21 iio_get_time_res +EXPORT_SYMBOL drivers/iio/industrialio 0x2093bfdd __iio_device_register +EXPORT_SYMBOL drivers/iio/industrialio 0x2a158d79 __iio_trigger_register EXPORT_SYMBOL drivers/iio/industrialio 0x2d6bcdcb iio_trigger_generic_data_rdy_poll -EXPORT_SYMBOL drivers/iio/industrialio 0x3226a0cb __iio_trigger_register -EXPORT_SYMBOL drivers/iio/industrialio 0x32542040 iio_trigger_poll -EXPORT_SYMBOL drivers/iio/industrialio 0x382ae0d3 iio_device_unregister -EXPORT_SYMBOL drivers/iio/industrialio 0x3cf2a0ce iio_trigger_set_immutable -EXPORT_SYMBOL drivers/iio/industrialio 0x535e8d1c iio_trigger_poll_chained -EXPORT_SYMBOL drivers/iio/industrialio 0x569fd96d iio_device_alloc -EXPORT_SYMBOL drivers/iio/industrialio 0x6a877cb5 iio_bus_type -EXPORT_SYMBOL drivers/iio/industrialio 0x7241e74a iio_read_mount_matrix -EXPORT_SYMBOL drivers/iio/industrialio 0x7d679c3b iio_trigger_notify_done -EXPORT_SYMBOL drivers/iio/industrialio 0x7d9a0ab3 iio_buffer_init -EXPORT_SYMBOL drivers/iio/industrialio 0x85fd9e79 iio_device_set_clock -EXPORT_SYMBOL drivers/iio/industrialio 0x8b0a5ea2 iio_trigger_validate_own_device -EXPORT_SYMBOL drivers/iio/industrialio 0x9c2f35f4 iio_trigger_unregister -EXPORT_SYMBOL drivers/iio/industrialio 0xa93b6b51 iio_device_free -EXPORT_SYMBOL drivers/iio/industrialio 0xb9b2f2dc iio_push_event -EXPORT_SYMBOL drivers/iio/industrialio 0xbac7ef24 iio_get_time_res -EXPORT_SYMBOL drivers/iio/industrialio 0xc57f5e83 iio_device_get_clock -EXPORT_SYMBOL drivers/iio/industrialio 0xd449793d iio_trigger_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0x3045754b iio_trigger_validate_own_device +EXPORT_SYMBOL drivers/iio/industrialio 0x392d410c iio_trigger_free +EXPORT_SYMBOL drivers/iio/industrialio 0x3c1319a2 iio_get_time_ns +EXPORT_SYMBOL drivers/iio/industrialio 0x4b8394e1 iio_read_const_attr +EXPORT_SYMBOL drivers/iio/industrialio 0x4e20bcdd iio_trigger_poll +EXPORT_SYMBOL drivers/iio/industrialio 0x5297d776 iio_trigger_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0x5634884c iio_device_free +EXPORT_SYMBOL drivers/iio/industrialio 0x6c383429 iio_bus_type +EXPORT_SYMBOL drivers/iio/industrialio 0x803a3896 iio_trigger_using_own +EXPORT_SYMBOL drivers/iio/industrialio 0x9cf4f929 iio_device_set_clock +EXPORT_SYMBOL drivers/iio/industrialio 0xa4005056 iio_read_mount_matrix +EXPORT_SYMBOL drivers/iio/industrialio 0xa6714965 iio_device_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0xa84d854d iio_trigger_poll_chained +EXPORT_SYMBOL drivers/iio/industrialio 0xc8140f59 iio_buffer_init +EXPORT_SYMBOL drivers/iio/industrialio 0xd680f12a iio_push_event +EXPORT_SYMBOL drivers/iio/industrialio 0xde2326fe iio_trigger_notify_done EXPORT_SYMBOL drivers/iio/industrialio 0xdf76bbeb iio_pollfunc_store_time -EXPORT_SYMBOL drivers/iio/industrialio 0xf03cf264 iio_get_time_ns -EXPORT_SYMBOL drivers/iio/industrialio 0xfed72067 iio_trigger_free -EXPORT_SYMBOL drivers/iio/industrialio-configfs 0x9ac33a98 iio_configfs_subsys -EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x0fc7a284 iio_register_sw_device_type -EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x1d589479 iio_sw_device_create -EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x9afedbd9 iio_unregister_sw_device_type -EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0xce45000c iio_sw_device_destroy -EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x074afb83 iio_register_sw_trigger_type -EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x1a7a9370 iio_unregister_sw_trigger_type -EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x31e78751 iio_sw_trigger_create -EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x4b0a26ee iio_sw_trigger_destroy -EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x2861d40f iio_triggered_event_setup -EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x4e806377 iio_triggered_event_cleanup -EXPORT_SYMBOL drivers/iio/light/st_uvis25_core 0x529f0175 st_uvis25_probe -EXPORT_SYMBOL drivers/iio/light/st_uvis25_core 0x7a4148ea st_uvis25_pm_ops -EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0x0f155617 bmc150_magn_remove -EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0x94e39464 bmc150_magn_probe -EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0xabef12f7 bmc150_magn_regmap_config -EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0xe2c404d4 bmc150_magn_pm_ops -EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0x102b7058 hmc5843_common_probe -EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0x3b110421 hmc5843_common_resume -EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0x7f8dc149 hmc5843_common_suspend -EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0xc7ec5c0c hmc5843_common_remove -EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x5a5263b3 st_magn_get_settings -EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x9450bdf7 st_magn_common_probe -EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0xfdca697a st_magn_common_remove -EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x127aee01 bmp280_common_probe -EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x192e290d bmp280_dev_pm_ops -EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x44846c3b bmp180_regmap_config -EXPORT_SYMBOL drivers/iio/pressure/bmp280 0xae02b159 bmp280_regmap_config -EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0x10c68e5e ms5611_remove -EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0xd8ddeb7f ms5611_probe -EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x16c8b7cc st_press_common_probe -EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0xbb921a56 st_press_common_remove -EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0xc4bda6c3 st_press_get_settings -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x06137ac6 ib_send_cm_sidr_rep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x08f49fb4 ib_send_cm_req -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x142b6a6b ib_send_cm_sidr_req -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x1c91217b ib_destroy_cm_id -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x373a7839 ib_send_cm_drep +EXPORT_SYMBOL drivers/iio/industrialio 0xe451d2bc iio_trigger_set_immutable +EXPORT_SYMBOL drivers/iio/industrialio 0xf3edc28d iio_device_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0xf4c8a614 iio_device_get_clock +EXPORT_SYMBOL drivers/iio/industrialio 0xf8523cc1 iio_trigger_unregister +EXPORT_SYMBOL drivers/iio/industrialio-configfs 0xe088e0e2 iio_configfs_subsys +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x2c357694 iio_sw_device_destroy +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0xc209f132 iio_unregister_sw_device_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0xf07f4ee4 iio_register_sw_device_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0xf419f05c iio_sw_device_create +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x75f9e437 iio_register_sw_trigger_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0xc02fcb8a iio_unregister_sw_trigger_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0xcf588080 iio_sw_trigger_destroy +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0xf80ca3c9 iio_sw_trigger_create +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0xc2e5ddc7 iio_triggered_event_cleanup +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0xc6766698 iio_triggered_event_setup +EXPORT_SYMBOL drivers/iio/light/st_uvis25_core 0x5ada858b st_uvis25_probe +EXPORT_SYMBOL drivers/iio/light/st_uvis25_core 0xd0224d54 st_uvis25_pm_ops +EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0x2c988976 bmc150_magn_regmap_config +EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0x529e3266 bmc150_magn_probe +EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0xa5c38373 bmc150_magn_remove +EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0xe41e1e4c bmc150_magn_pm_ops +EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0xda3af0a8 hmc5843_common_probe +EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0xdc31a7b2 hmc5843_common_remove +EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0xf1c9e4ba hmc5843_common_resume +EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0xfc811875 hmc5843_common_suspend +EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x68eb531b st_magn_common_probe +EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x778977c1 st_magn_common_remove +EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0xe5f066e4 st_magn_get_settings +EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x4ed0c5a7 bmp280_dev_pm_ops +EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x6af62781 bmp180_regmap_config +EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x8070fae3 bmp280_regmap_config +EXPORT_SYMBOL drivers/iio/pressure/bmp280 0xebe09e6f bmp280_common_probe +EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0x44483f55 ms5611_remove +EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0x68305d74 ms5611_probe +EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x310dc091 st_press_get_settings +EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x5a7d1d79 st_press_common_probe +EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x5c77f014 st_press_common_remove +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x2fa03876 ib_send_cm_sidr_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x35b82ef8 ib_send_cm_dreq +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x39e8c5a0 ib_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x3b23e09d ib_send_cm_rej +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x3d3d7401 ib_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x45d7429e ib_send_cm_sidr_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x5026f28f ib_send_cm_drep EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x69824a14 ibcm_reject_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x6d532c07 ib_cm_insert_listen -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x94abb645 ib_cm_listen -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x97d86149 ib_send_cm_rej -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x9f054431 ib_send_cm_rep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xa18a2cb3 ib_send_cm_dreq -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xb478e7ad ib_send_cm_mra -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xb577f3d0 ib_send_cm_rtu -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xc3b262d6 ib_cm_notify -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xd28eb8ee ib_cm_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xd880b30e ib_create_cm_id -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0070db47 ib_alloc_mr_integrity -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0151cb66 rdma_resolve_ip -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x01fa540a rdma_restrack_count -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x023f7228 ib_mr_pool_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x05001e94 rdma_destroy_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x059811b6 ibnl_put_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0616327b ib_dealloc_pd_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x07c7a1f1 rdma_nl_put_driver_u64_hex -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x08c7b9b7 rdma_read_gid_hw_context -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0a9ee6be rdma_nl_stat_hwcounter_entry +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x6d054e47 ib_send_cm_mra +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x8e449750 ib_send_cm_rtu +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xbfcfd0c4 ib_cm_notify +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xc2d3544e ib_send_cm_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xd7b4c080 ib_send_cm_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xd8fdd69c ib_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xe6212702 ib_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xeab26592 ib_cm_insert_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x00133893 ib_query_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x00246d03 ib_modify_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x01c86907 roce_gid_type_mask_support +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0279f387 ib_register_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0480f81f rdma_user_mmap_entry_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x056b6ab2 ib_unregister_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x05f30041 ib_device_get_by_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x07d7c0ca rdma_user_mmap_entry_insert_range +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x086031fe ib_port_sysfs_get_ibdev_kobj +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x090255ed ib_set_vf_guid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0a16bf40 __ib_alloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0ab881d2 rdma_read_gid_l2_fields +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0b07c8fa ib_modify_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0b6e89b3 ib_create_srq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0b8b8753 rdma_rw_ctx_signature_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0bab7223 ibdev_alert +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0bba92fb rdma_nl_stat_hwcounter_entry EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c86f5cb ib_sa_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0d582694 ib_unregister_device_and_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0e513cf1 ib_query_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0ffbeb86 ib_modify_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x10741c68 rdma_translate_ip -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1209b361 ib_query_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x13dec469 ib_create_qp_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1473d4c4 rdma_nl_register +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0d85a5e8 ib_post_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0e3d6e7e rdma_query_gid_table +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0f68f029 ib_create_wq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x14f07e22 ib_find_exact_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x15274834 ib_create_qp_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1620bd10 ib_mad_kernel_rmpp_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x16bcef76 ib_sg_to_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x16d622cb ib_get_cached_port_state EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x184621a4 ib_get_rdma_header_version -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x18991990 ib_mr_pool_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x19983f67 ib_modify_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1a76d92b ib_set_vf_link_state -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1ac4ddeb rdma_get_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x186a72d9 ib_dealloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1a2d45e4 rdma_restrack_put EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1b037462 __rdma_block_iter_start -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1ba3546e ib_post_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1ccad841 rdma_user_mmap_entry_get_pgoff -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1d585ba1 ib_attach_mcast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1fa466ed ib_rdmacg_try_charge -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x202a20e7 rdma_restrack_new -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x215e1ca1 ib_set_device_ops +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1fd23fd2 ib_port_unregister_client_groups +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x21f79881 rdma_find_gid EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x22f3cf93 ib_pack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2736846e rdma_user_mmap_entry_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x281d1d3f rdma_init_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x28a324e1 rdma_roce_rescan_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x28e52ca6 ib_init_ah_from_mcmember -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x29e3eca6 ib_create_qp_kernel -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x29eaff1d rdma_restrack_get_byid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2a5ba148 rdma_destroy_ah_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2ed3eef4 rdma_link_register +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x27004fce ib_resize_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x282fe99d ib_attach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x286eb0d5 ib_device_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x28dcd80b ib_dealloc_pd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2b63427d rdma_user_mmap_io +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2c1a5744 ib_dealloc_xrcd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2dbbd420 ib_dma_virt_map_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2e4d1d27 ib_get_vf_stats EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2fc70b9e ib_get_gids_from_rdma_hdr EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x305e5701 rdma_addr_size_kss -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x30ec4548 ib_init_ah_attr_from_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x31255eca ib_modify_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x386a2390 ib_find_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x39be5ccd rdma_nl_unicast_wait -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3c5c95a8 ib_port_register_client_groups -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3cb32d7b rdma_restrack_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3d1a7424 ib_get_device_fw_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x321c5369 ib_get_vf_config +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x32ac2a8a _ib_alloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x32f8dd2c rdma_modify_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x33187c82 ib_free_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x331dd7a4 ib_dereg_mr_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x33ac69c8 rdma_user_mmap_entry_insert +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x350243f0 ib_set_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x35ec8d35 rdma_dev_access_netns +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x38668c68 ib_close_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x393a7569 ib_mr_pool_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3b27eb45 rdma_link_register +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3c846e30 rdma_nl_put_driver_u32 EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3fc2387c ib_ud_header_unpack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x405874b2 ib_rdmacg_uncharge -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x418da27a ib_modify_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4087896e rdma_rw_ctx_wrs +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4088d769 ib_port_register_client_groups +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x40c72df3 ib_create_qp_security +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x40c7c1e8 ib_check_mr_status +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x40f2bb04 ib_mr_pool_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x417d0d17 rdma_read_gid_attr_ndev_rcu +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x42635de1 rdma_restrack_set_name EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x434c5d10 zgid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x43588350 rdma_restrack_add 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 0x4773d24f ib_get_vf_guid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x47cb400b ib_mr_pool_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4ad4a696 ib_drain_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4bda9435 rdma_put_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x478a0ef6 ib_find_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x48f01261 ib_set_device_ops +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x491406be ib_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x494fe818 rdma_set_cq_moderation +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4b5e3064 ib_qp_usecnt_dec +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4b7307aa ib_map_mr_sg_pi +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4cce0b08 rdma_move_grh_sgid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4cdf41d7 rdma_query_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4dedc787 rdma_rw_ctx_destroy 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 0x4ebbd1ca rdma_find_gid_by_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4f30c063 rdma_restrack_set_name -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4f5d4b88 ib_alloc_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4fa8d1b3 ib_device_get_by_name -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5206d8e5 ib_destroy_srq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x55315d64 ib_dealloc_xrcd_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x558949b2 ib_get_rmpp_segment +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4f04e176 __ib_alloc_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x50aecc4c rdma_create_user_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x51ef57a3 rdma_nl_register +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x544458c2 ib_unregister_event_handler EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x55bb02f3 ib_cache_gid_type_str -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x561df82e rdma_query_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x58c3906f ib_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x59c29792 ib_mr_pool_destroy -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x59d93b47 ib_detach_mcast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5cb28f71 rdma_user_mmap_entry_insert -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5d7616f0 ib_free_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5e3e9a8f ib_modify_qp_with_udata -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5f2bb4ba rdma_query_gid_table -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x60e086b0 rdma_rw_ctx_signature_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5695e92a rdma_destroy_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x570eb7fd rdma_restrack_del +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x57fcba69 rdma_user_mmap_entry_remove +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x599786ce rdma_umap_priv_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5b0e4f86 ib_qp_usecnt_inc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5e201e46 rdma_nl_put_driver_u64 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6047c984 ib_init_ah_from_mcmember +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6112c85b rdma_rw_ctx_destroy_signature EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x613b1e2e ib_is_mad_class_rmpp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x61784ad5 ib_dereg_mr_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x61786b36 rdma_restrack_parent_name EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x61d24c52 ib_rate_to_mbps -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x623c16b8 rdma_move_grh_sgid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x652991a1 ib_open_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x658456cd ib_set_client_data -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x663f9c96 ib_get_cached_lmc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x671cbdea rdma_user_mmap_entry_insert_range -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x692a2cc6 ib_get_cached_port_state -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x69b17dfc rdma_alloc_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b2654e0 rdma_link_unregister -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b32ea27 rdma_create_user_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x63d51bcd rdma_resolve_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6769a921 rdma_find_gid_by_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x68bd98a0 rdma_read_gid_hw_context +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x68d58097 ib_unregister_device_queued +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6931dd84 __ib_alloc_cq_any EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b958320 ib_ud_ip4_csum -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6c6747f4 ib_free_recv_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6d2a9106 ib_close_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6db038fd rdma_nl_put_driver_u64 -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6df8c3d2 ib_modify_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6e91c818 ib_dma_virt_map_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6d17a902 rdma_put_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6d94566e ibdev_info +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6db5eee8 rdma_restrack_parent_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6e89beca ib_sa_guid_info_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f0666a8 ib_unregister_mad_agent EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f3614b6 rdma_is_zero_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7075ac93 ib_check_mr_status -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x71bad01d ib_process_cq_direct -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x72763298 ibdev_printk +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x70639d72 ibdev_notice EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x73baf9a2 ib_modify_qp_is_ok -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x73e45172 rdma_user_mmap_entry_remove -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x73ec6607 ib_destroy_qp_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x750c68b8 rdma_query_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x754ff64e ib_unregister_device_queued +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x73d3b8a4 ibnl_put_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x74fcd1bd ib_device_get_by_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7529a4ee rdma_alloc_netdev EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x75a729a0 rdma_nl_unregister -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x772ba50b ib_sg_to_pages EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x787ccc4c ib_get_mad_data_offset -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7a747e1c ibdev_alert -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7d18632b rdma_find_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8178f0eb ib_mad_kernel_rmpp_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x81df84f9 rdma_copy_src_l2_addr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x83fa2e99 ib_unregister_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7957ea23 ib_init_ah_attr_from_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7a5983d4 ib_modify_qp_with_udata +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7cd5a8e9 ib_sa_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7ebc715c ib_rdmacg_try_charge +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7f0f1993 rdma_roce_rescan_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x850966a3 ib_get_cached_pkey EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x86cef180 rdma_addr_size -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x874fd9db rdma_replace_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x895ad864 ib_device_get_by_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x89734638 __ib_alloc_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8b1d1e8b ib_qp_usecnt_inc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8b4bc09a ib_drain_rq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8b8b1e9e ib_drain_sq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8dd9c442 rdma_umap_priv_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x88431ee7 ib_modify_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8b0c0168 ib_cq_pool_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8c170f7a rdma_hold_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8c33d790 ib_set_vf_link_state +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8d9ca8d1 rdma_init_netdev EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8e7528da __rdma_block_iter_next -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8ef42087 ib_find_exact_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8f590472 ib_create_wq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8fe578d0 rdma_read_gid_attr_ndev_rcu -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9001c0d3 rdma_modify_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8ec935a2 ib_device_set_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8f489a3e rdma_destroy_ah_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x905bb456 ib_advise_mr EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90e807c7 ib_cache_gid_parse_type_str -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x91136d54 rdma_port_get_link_layer -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x945995ef ib_create_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x951814d5 ib_reg_user_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x962894a9 roce_gid_type_mask_support -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x96c67685 ib_query_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x978a568c _ib_alloc_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x98a4c5f1 ib_get_cached_subnet_prefix -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9bbecf63 ib_get_vf_config -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9c4bd231 ib_unregister_mad_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9d20bf31 ib_free_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9f8296e5 rdma_user_mmap_io -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa0601bbc ibdev_err -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa19593a4 ibdev_emerg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x91a59ba6 ib_create_qp_kernel +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x926b51d6 ib_process_cq_direct +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x95a0bf14 rdma_link_unregister +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x972cb963 ibdev_crit +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9bafce75 rdma_rw_mr_factor +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9cb4e320 ib_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9d3c27ac rdma_restrack_count +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa02c9a69 ib_free_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa239a640 ib_port_immutable_read +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa3efa356 rdma_create_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa3f026c7 ib_unregister_device_and_put EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa432baf6 ib_unpack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa495a9fe ib_map_mr_sg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa552b6b4 ib_device_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa63fa720 ib_map_mr_sg_pi -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa6e6494e __ib_alloc_cq_any -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa7ab4d92 ib_get_net_dev_by_params -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa80e0203 ib_advise_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa902fdac ib_query_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa96283fd ib_destroy_cq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xac945cd5 ib_create_ah_from_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xadebbd44 ib_qp_usecnt_dec -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae550006 rdma_restrack_add +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa4769bb0 ib_free_recv_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa61b6744 ibdev_emerg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa633086d ib_create_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa6cb7746 ib_detach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa8c12640 ib_modify_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaa34e513 rdma_translate_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xab6c8068 ibdev_err +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xabbb9b7f ib_alloc_xrcd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae3a3ad8 ib_drain_sq EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae956dce ib_rate_to_mult -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaff7d329 rdma_hold_gid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb1c66650 rdma_restrack_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb2f69117 rdma_nl_unicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaf355f7d ib_destroy_wq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xafb22d42 rdma_nl_put_driver_u64_hex +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb1864053 rdma_nl_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb283c0ea ib_destroy_qp_user EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb36e4148 ib_sa_pack_path -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb5fd366c ib_set_vf_guid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb6338bcd ibdev_notice -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb678f30a rdma_create_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb4ad3de5 __ib_create_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb4b71a9b ib_mr_pool_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb54bdbd8 ib_modify_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb61ba045 rdma_move_ah_attr EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb7852a05 ib_ud_header_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb99f45c9 rdma_rw_ctx_destroy_signature -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbaeb151d rdma_addr_cancel -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbb10ab17 ib_create_srq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbb37ba9a ib_destroy_wq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbc0f3451 rdma_nl_put_driver_u32 -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbe18b575 ib_sa_get_mcmember_rec -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc36ea857 __ib_alloc_pd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc4d48e5f ib_unregister_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc6dbaf03 __ib_create_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc71355b4 ib_dealloc_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc77b9a89 ib_device_set_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc961a513 ib_find_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcb79dc4c ib_resize_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcb96eb9c ibdev_info -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xccf31cd6 ib_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcdeecc3b rdma_dev_access_netns -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xce2d2a4d ib_cq_pool_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb7b9f8c7 ib_get_vf_guid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbaaa27ab ib_dispatch_event +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbb4fad91 rdma_rw_ctx_post +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbce652a4 ib_cq_pool_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbd2c93a3 ib_destroy_srq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbd960c93 ib_get_eth_speed +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbdb35faf rdma_nl_put_driver_u32_hex +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbebc89a7 rdma_user_mmap_entry_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc26876f7 rdma_restrack_new +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc3199794 ib_get_net_dev_by_params +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc417b058 ib_query_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc41e31c0 rdma_nl_unicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc47b8ca0 rdma_restrack_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc51649a7 ib_get_rmpp_segment +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc52b6234 ib_map_mr_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc5688014 ib_drain_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc887819d ib_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc9e91b85 ib_destroy_cq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcda34868 ib_get_device_fw_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xce23cda2 ib_reg_user_mr EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcfbc053b ib_unregister_driver -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcff5b5a7 rdma_restrack_del -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd085b92a rdma_user_mmap_entry_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd091dcb8 ibdev_crit -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd0dba76b rdma_rw_ctx_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd1286a93 ib_get_vf_stats -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd18000f2 ib_register_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd313d67e ibnl_put_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd4bcb744 rdma_nl_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcfc84860 ib_alloc_mr_integrity +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd35168bd rdma_rw_ctx_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd3f62385 ib_open_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd4bdd5fb ib_register_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd4d09340 ibnl_put_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd630a317 rdma_query_ah EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd6636ca6 rdma_addr_size_in6 -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd67c2eaf rdma_set_cq_moderation -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd738a60d ib_dispatch_event -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd968f8ad ib_create_qp_security +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd666f4b4 ib_init_ah_attr_from_wc EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda0d50ec ib_sa_cancel_query -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda175440 ib_find_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda38878a ib_get_eth_speed -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda555916 rdma_rw_ctx_post -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdbc13b5e ib_init_ah_attr_from_path -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdc86b48b ib_sa_path_rec_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdc87c2f0 ib_sa_guid_info_rec_query -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdd7ff504 ibdev_warn -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xddb379dd ib_register_mad_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe0f6beb2 rdma_rw_mr_factor -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe53f78aa ib_port_unregister_client_groups +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdc6a9bb9 ib_mr_pool_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xde230462 ib_find_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe0c4539a rdma_get_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe173a90d ib_sa_get_mcmember_rec +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe19c678d ibdev_warn +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe29446ac rdma_addr_cancel +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe2a6ad20 ib_rdmacg_uncharge EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5840ec6 ib_wc_status_msg EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5a78c1e ib_sa_unpack_path -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe6adecf9 rdma_nl_put_driver_string -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe75fc002 ib_cq_pool_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe7310c26 ib_register_mad_agent EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe7b52e5f mult_to_ib_rate -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe95721a5 rdma_move_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9ba7ac6 ib_port_immutable_read -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9d77c32 ib_sa_join_multicast EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9e799fc ib_ud_header_pack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xee004849 ib_register_event_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xef6b3eab rdma_rw_ctx_destroy -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf0ef8013 ib_port_sysfs_get_ibdev_kobj -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf1373415 rdma_copy_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf23dadd6 ib_alloc_xrcd_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf3f1abbc rdma_rw_ctx_wrs +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9f1bf6d ibdev_printk +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeaf60f93 rdma_user_mmap_entry_get_pgoff +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeb2d8995 rdma_nl_unicast_wait +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xed4648c6 ib_query_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xef874d7c ib_get_cached_subnet_prefix +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf0e97bfb rdma_copy_src_l2_addr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf3b59fc3 ib_sa_path_rec_get EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf5dedb30 rdma_node_get_transport -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf6e990d0 rdma_read_gid_l2_fields EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf6ed3334 ib_event_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfa73babd ib_get_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfa9a3279 rdma_nl_put_driver_u32_hex -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x051d53e2 ib_umem_get -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1a1fdf5e ib_umem_odp_alloc_implicit +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf6fe9835 rdma_nl_put_driver_string +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf703590d ib_query_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf7508000 ib_drain_rq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf795c7b1 rdma_port_get_link_layer +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf7e744cf ib_get_cached_lmc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfa1eb9ef rdma_replace_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfac7e05e ib_create_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfc22c1c7 rdma_copy_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfc9ef4ab ib_alloc_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfcd1180a rdma_restrack_get_byid +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x08cb6ae4 ib_umem_dmabuf_unmap_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x0ddb1c5c uverbs_uobject_fd_release EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1b54bd5d ib_copy_path_rec_from_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x223bee16 ib_umem_copy_from -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x266b69de flow_resources_add -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x28f11ddc ib_register_peer_memory_client -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x304184c7 uverbs_copy_to -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x328b36bc ib_umem_odp_alloc_child -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x343c205c ib_copy_qp_attr_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x368da79f uverbs_get_flags32 -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x47a1341e ib_copy_ah_attr_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x534402a4 ib_umem_activate_invalidation_notifier -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x567035ef flow_resources_alloc +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1ca0b0f3 ib_umem_odp_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x220d276b ib_umem_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x3c9a8a53 uverbs_finalize_uobj_create +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x41e016be uverbs_get_flags32 +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x4ea4a692 ib_umem_get_peer +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x596ebf01 ib_umem_odp_alloc_child +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5d74ebf0 ib_umem_find_best_pgsz EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x63057f4b ib_copy_path_rec_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x6c2b8978 ib_umem_dmabuf_get -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x6d1866d3 ib_umem_odp_unmap_dma_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x82ad0f03 ib_umem_odp_map_dma_and_lock -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x84151213 ib_umem_odp_get -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x85d191db uverbs_uobject_put -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x88605ac7 uverbs_idr_class -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x8e4d90bc uverbs_copy_to_struct_or_zero -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x9d77f52c ib_umem_dmabuf_map_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x9ff15808 ib_umem_release -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa4ed7632 uverbs_get_flags64 -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xab9a3174 _uverbs_alloc -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb1534c48 ib_umem_stop_invalidation_notifier -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb39f249a uverbs_destroy_def_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb7bc10a2 ib_umem_find_best_pgsz -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xbb024ee3 _uverbs_get_const_signed +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x6715d9ee ib_umem_odp_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x748e3128 ib_copy_qp_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7c6ac965 ib_umem_odp_alloc_implicit +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7d6d589a uverbs_copy_to +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x81062097 ib_uverbs_flow_resources_free +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x83557c44 uverbs_uobject_put +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x8e238900 flow_resources_add +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x8e96adce ib_umem_dmabuf_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xaa4b0d10 _uverbs_get_const_unsigned +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xaa89041a ib_umem_stop_invalidation_notifier +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xaca2014d ib_umem_copy_from +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xaf83bd63 ib_umem_activate_invalidation_notifier +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb0a5cfa4 _uverbs_alloc +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb26c4804 ib_copy_ah_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb39dea0c ib_register_peer_memory_client +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb703c57c uverbs_destroy_def_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xbdad5807 ib_umem_odp_map_dma_and_lock EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xbde5c050 ib_unregister_peer_memory_client -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xca517054 uverbs_uobject_fd_release -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xcfffb701 ib_uverbs_flow_resources_free -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe64810ab _uverbs_get_const_unsigned -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe83a88e6 ib_umem_get_peer -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xedc60f4b ib_umem_odp_release -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf4f2d39a ib_umem_dmabuf_unmap_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf8fb39d9 uverbs_fd_class -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf9fb1b29 ib_uverbs_get_ucontext_file -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xffcf41d5 uverbs_finalize_uobj_create -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x2f45c227 iw_cm_listen -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x3e671dec iw_cm_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x47f9f51b iw_cm_accept -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x5ae8663e iw_cm_disconnect -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x60e0513d iw_create_cm_id -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x9f9dd2ed iw_cm_connect -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xbeb915c0 iw_cm_reject -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xeafa5ede iw_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xbfa02c4a uverbs_fd_class +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd25ada77 ib_umem_dmabuf_map_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd4b016e2 uverbs_copy_to_struct_or_zero +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe121c32c uverbs_idr_class +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe1e4d58c ib_umem_odp_unmap_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe598fb36 uverbs_get_flags64 +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf20c2799 ib_umem_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf315a0b5 _uverbs_get_const_signed +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf3531c2b ib_uverbs_get_ucontext_file +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf5d982d0 flow_resources_alloc +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x4db97e71 iw_cm_disconnect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x7f667a09 iw_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x90c0a13c iw_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x9792426e iw_cm_accept +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xa9ef0d9d iw_cm_connect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xcef7c4de iw_cm_reject +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd95b7102 iw_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xe0182e35 iw_create_cm_id EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf3df871f iwcm_reject_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x08ef18cd rdma_consumer_reject_data -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x12d816ce rdma_accept_ece -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1ca48834 rdma_set_afonly -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x231fd5f2 rdma_unlock_handler -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2cfcc758 rdma_bind_addr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x36626c17 rdma_resolve_addr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x41d69999 rdma_destroy_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x46c76b4d rdma_res_to_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x528c196b rdma_lock_handler -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6b61a45b rdma_set_ack_timeout -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x80705504 rdma_set_min_rnr_timer -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x83cc16b6 rdma_disconnect -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x840b60f4 rdma_create_user_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x84a3c5f4 rdma_set_service_type +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x04b14e3d rdma_create_user_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0c4cc620 rdma_destroy_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x106fde8f rdma_lock_handler +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1a3cb5db rdma_set_afonly +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1a45c5ab rdma_connect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1b5275bd rdma_iw_cm_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1c91590a rdma_notify +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2c297860 rdma_set_service_type +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3cfb9058 rdma_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x41fc79d4 rdma_bind_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x470f5ba0 rdma_create_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x52bbbe5f rdma_set_min_rnr_timer +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5a61ac15 rdma_connect_locked +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5d5ca204 rdma_disconnect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x62670b38 rdma_accept_ece +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6fe29eaa rdma_consumer_reject_data +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x89ec2def rdma_accept EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x93432978 rdma_destroy_qp -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x94421698 rdma_leave_multicast -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9b4698b1 rdma_reject_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa34cebab rdma_iw_cm_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb74a6431 rdma_join_multicast -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xbad07521 __rdma_create_kernel_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xbafe9aa3 rdma_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc74732b2 rdma_get_service_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc74e734b rdma_accept -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc99d050a rdma_notify -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd0e790b9 rdma_resolve_route -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd97ae4d7 rdma_connect_locked -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xda7b425d rdma_create_qp -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xdad7585d rdma_listen -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xdb16f222 rdma_set_ib_path -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xde00b757 rdma_read_gids -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xecfe6027 rdma_set_reuseaddr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf87c6e0e rdma_reject -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xfb87ccbb rdma_connect -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xffe10417 rdma_connect_ece -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x057442d4 rvt_mcast_find -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x0b498162 rvt_init_port +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x98bd2fd5 rdma_reject +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x99eed0a3 rdma_set_ib_path +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9efe2e1e rdma_unlock_handler +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9fa93ef8 rdma_resolve_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa6cd8ab1 rdma_resolve_route +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb93ee9c5 rdma_reject_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xbbc46853 __rdma_create_kernel_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xbee4af1f rdma_set_reuseaddr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc3e3c193 rdma_listen +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xccedd471 rdma_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xcf07f234 rdma_leave_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe48b58ab rdma_get_service_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe4c59041 rdma_connect_ece +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf48ac15c rdma_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xfcb4b43f rdma_res_to_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xfce21f3b rdma_set_ack_timeout +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xfe1ab108 rdma_read_gids +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x00d0cf37 rvt_invalidate_rkey +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x09d7ee6a rvt_fast_reg_mr EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x0e385842 ib_rvt_state_ops -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x1422a3f9 rvt_lkey_ok -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x158ead16 rvt_unregister_device -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x1da76f2f rvt_restart_sge -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x1fd945c3 rvt_add_rnr_timer -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x2745542d rvt_get_credit -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x27d57df6 rvt_rkey_ok -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x3328ed49 rvt_qp_iter_next -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x33992384 rvt_register_device -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x352f6efa rvt_alloc_device -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x3e2da482 rvt_send_complete -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x46fdabf3 rvt_fast_reg_mr -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x4df94819 rvt_check_ah -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x5181ebd3 rvt_cq_enter -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x5af3f78f rvt_del_timers_sync -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x678518be rvt_invalidate_rkey -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x6ef49c14 rvt_error_qp -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x7c15968a rvt_dealloc_device -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x7c94bb95 rvt_compute_aeth -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x816fd828 rvt_qp_iter_init -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x928bca13 rvt_stop_rc_timers -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x944545ca rvt_get_rwqe -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xa2bb5e96 rvt_rc_error -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xaf2719f1 rvt_comm_est -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xb51a9744 rvt_ruc_loopback +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x0e76fad5 rvt_error_qp +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x1a525fa1 rvt_qp_iter_next +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x1cb8b0ee rvt_add_retry_timer_ext +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x20450a41 rvt_dealloc_device +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x2426d32a rvt_get_rwqe +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x3630867a rvt_ruc_loopback +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x3a56f371 rvt_alloc_device +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x3d612117 rvt_rc_error +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x3df8acdb rvt_comm_est +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x453f175d rvt_cq_enter +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x479040da rvt_compute_aeth +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x5c27296d rvt_mcast_find +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x6fe3e3e5 rvt_restart_sge +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x71261bf9 rvt_stop_rc_timers +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x8b25b4ac rvt_get_credit +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x93125ffc rvt_lkey_ok +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xa403115d rvt_register_device +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xa6bfbca3 rvt_del_timers_sync +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xb4582844 rvt_rkey_ok EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xb7ee98b2 rvt_rc_rnr_retry -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xc3278b75 rvt_copy_sge -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xe37714ac rvt_add_retry_timer_ext -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xe42b14e8 rvt_qp_iter +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xb8951282 rvt_check_ah +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xc8677e49 rvt_qp_iter +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xca7cb6ae rvt_copy_sge +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xcacabc21 rvt_qp_iter_init +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xe23cd063 rvt_send_complete +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xe531c749 rvt_init_port EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xe9cf3e43 rvt_rnr_tbl_to_usec -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x155795a3 rtrs_clt_put_permit -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x18233677 rtrs_clt_open -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x39982192 rtrs_clt_get_permit -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x74abde7a rtrs_clt_close -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x81c47379 rtrs_clt_query -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x9e15a45a rtrs_clt_request -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xa0c17418 rtrs_clt_rdma_cq_direct +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xf2763a99 rvt_unregister_device +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xfbc4c325 rvt_add_rnr_timer +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x2231216e rtrs_clt_query +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x2b529a64 rtrs_clt_close +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x2f410826 rtrs_clt_put_permit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x3cc9c151 rtrs_clt_rdma_cq_direct +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x5f4e2314 rtrs_clt_request +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x8ea941b8 rtrs_clt_open +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xdf958339 rtrs_clt_get_permit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x222c6d22 rtrs_ib_dev_put EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x242a8646 rtrs_addr_to_str -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x2e278d58 rtrs_ib_dev_find_or_add -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x418739d4 rtrs_rdma_dev_pd_deinit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x5198f5c1 rtrs_ib_dev_find_or_add EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x5b01e41d sockaddr_to_str -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x681c2025 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 0xc3a7feff rtrs_rdma_dev_pd_init -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x10d71e94 rtrs_srv_open -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x8f4ec279 rtrs_srv_get_sess_name -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x9a7145a2 rtrs_srv_get_queue_depth -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xa0f3ab82 rtrs_srv_set_sess_priv -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xd7c9206c rtrs_srv_close -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xdbb3545a rtrs_srv_resp_rdma -EXPORT_SYMBOL drivers/input/gameport/gameport 0x0064300a __gameport_register_port -EXPORT_SYMBOL drivers/input/gameport/gameport 0x06d854f0 gameport_open -EXPORT_SYMBOL drivers/input/gameport/gameport 0x1d9f6af5 gameport_stop_polling -EXPORT_SYMBOL drivers/input/gameport/gameport 0x3b507446 gameport_unregister_driver -EXPORT_SYMBOL drivers/input/gameport/gameport 0x4d941627 gameport_close -EXPORT_SYMBOL drivers/input/gameport/gameport 0x69e2d397 gameport_set_phys -EXPORT_SYMBOL drivers/input/gameport/gameport 0x80ab8302 gameport_start_polling -EXPORT_SYMBOL drivers/input/gameport/gameport 0xd7da57d0 gameport_unregister_port -EXPORT_SYMBOL drivers/input/gameport/gameport 0xf2d7cd7e __gameport_register_driver -EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x10dc4b82 iforce_process_packet -EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x386e96ca iforce_init_device -EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0xe0158e04 iforce_send_packet -EXPORT_SYMBOL drivers/input/matrix-keymap 0x80ee02c7 matrix_keypad_build_keymap -EXPORT_SYMBOL drivers/input/misc/ad714x 0x0a579705 ad714x_probe -EXPORT_SYMBOL drivers/input/misc/ad714x 0x8e52182b ad714x_enable -EXPORT_SYMBOL drivers/input/misc/ad714x 0xa6240eee ad714x_disable -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x1d2f26b2 cma3000_init +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xa7ae677a rtrs_rdma_dev_pd_deinit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xbbecc1f9 rtrs_rdma_dev_pd_init +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x4e2c94ae rtrs_srv_close +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x63fe8770 rtrs_srv_resp_rdma +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x824d9017 rtrs_srv_open +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x88803178 rtrs_srv_set_sess_priv +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xb0443509 rtrs_srv_get_queue_depth +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xbd14762b rtrs_srv_get_sess_name +EXPORT_SYMBOL drivers/input/gameport/gameport 0x32a42930 gameport_set_phys +EXPORT_SYMBOL drivers/input/gameport/gameport 0x38e76efe gameport_open +EXPORT_SYMBOL drivers/input/gameport/gameport 0x3b9f8fb6 gameport_unregister_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0x4d7c7b67 __gameport_register_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0x68f6669b gameport_stop_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0x7d5f068e gameport_start_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0xa785db0c gameport_close +EXPORT_SYMBOL drivers/input/gameport/gameport 0xb4a65755 gameport_unregister_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0xdfd30f1b __gameport_register_port +EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x62bc727d iforce_init_device +EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x8e28e73f iforce_send_packet +EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0xe3603ecc iforce_process_packet +EXPORT_SYMBOL drivers/input/matrix-keymap 0x0ea1d6ba matrix_keypad_build_keymap +EXPORT_SYMBOL drivers/input/misc/ad714x 0x8dd5f5d7 ad714x_enable +EXPORT_SYMBOL drivers/input/misc/ad714x 0x9ec972f2 ad714x_disable +EXPORT_SYMBOL drivers/input/misc/ad714x 0x9f12d518 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 0x0608b025 rmi_unregister_transport_device -EXPORT_SYMBOL drivers/input/sparse-keymap 0x25ce52b7 sparse_keymap_report_entry -EXPORT_SYMBOL drivers/input/sparse-keymap 0x4e8524e7 sparse_keymap_entry_from_scancode -EXPORT_SYMBOL drivers/input/sparse-keymap 0x846226c9 sparse_keymap_entry_from_keycode -EXPORT_SYMBOL drivers/input/sparse-keymap 0xcfa98420 sparse_keymap_setup -EXPORT_SYMBOL drivers/input/sparse-keymap 0xeaad855a sparse_keymap_report_event -EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x4e9c5f14 ad7879_pm_ops -EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0xca50bd87 ad7879_probe -EXPORT_SYMBOL drivers/iommu/amd/iommu_v2 0x34e1c2f6 amd_iommu_free_device -EXPORT_SYMBOL drivers/iommu/amd/iommu_v2 0x5a3be475 amd_iommu_set_invalidate_ctx_cb -EXPORT_SYMBOL drivers/iommu/amd/iommu_v2 0x70169e64 amd_iommu_init_device -EXPORT_SYMBOL drivers/iommu/amd/iommu_v2 0xc079f18c amd_iommu_unbind_pasid -EXPORT_SYMBOL drivers/iommu/amd/iommu_v2 0xd35862ae amd_iommu_set_invalid_ppr_cb -EXPORT_SYMBOL drivers/iommu/amd/iommu_v2 0xd365a748 amd_iommu_bind_pasid -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x14456af4 capi_ctr_handle_message -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x41176ecd attach_capi_ctr -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7db0acf3 capi_ctr_down -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xcaa6d29b capi_ctr_ready -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe948346b detach_capi_ctr +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0xffff3fd3 cma3000_init +EXPORT_SYMBOL drivers/input/rmi4/rmi_core 0x53b14103 rmi_unregister_transport_device +EXPORT_SYMBOL drivers/input/sparse-keymap 0x18bf8d56 sparse_keymap_entry_from_scancode +EXPORT_SYMBOL drivers/input/sparse-keymap 0x360b5632 sparse_keymap_report_event +EXPORT_SYMBOL drivers/input/sparse-keymap 0x6061f4d3 sparse_keymap_report_entry +EXPORT_SYMBOL drivers/input/sparse-keymap 0x9edea0da sparse_keymap_setup +EXPORT_SYMBOL drivers/input/sparse-keymap 0xcd9e283c sparse_keymap_entry_from_keycode +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0xbf6496e6 ad7879_probe +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0xe13557eb ad7879_pm_ops +EXPORT_SYMBOL drivers/iommu/amd/iommu_v2 0x51799da6 amd_iommu_unbind_pasid +EXPORT_SYMBOL drivers/iommu/amd/iommu_v2 0x85c0de58 amd_iommu_set_invalid_ppr_cb +EXPORT_SYMBOL drivers/iommu/amd/iommu_v2 0x8f47e29b amd_iommu_init_device +EXPORT_SYMBOL drivers/iommu/amd/iommu_v2 0xab8761d4 amd_iommu_bind_pasid +EXPORT_SYMBOL drivers/iommu/amd/iommu_v2 0xdf4adbe8 amd_iommu_free_device +EXPORT_SYMBOL drivers/iommu/amd/iommu_v2 0xf134bb10 amd_iommu_set_invalidate_ctx_cb +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x44ca8106 capi_ctr_ready +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x93a7d909 capi_ctr_handle_message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xaf590fb4 attach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xc5e83cd0 detach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xc79307f5 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 0x030759a8 mISDNisac_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x74454513 mISDNipac_irq -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x82848828 mISDNisac_irq -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xdee714e1 mISDNipac_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x5083d85e mISDNisar_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0xaeb60184 mISDNisar_irq -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x03944b94 bchannel_get_rxbuf +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x033bdefe mISDNisac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x1660ec9b mISDNipac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xd51d2221 mISDNisac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xf2c62a48 mISDNipac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x47cf6435 mISDNisar_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0xf9157613 mISDNisar_init EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x03a68066 mISDN_FsmRestartTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x196190e0 mISDN_clear_bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x22523b66 recv_Bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x0537e0a6 mISDN_register_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x211314cc mISDNDevName4ch 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 0x2710b4d8 queue_ch_frame +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x304fadac mISDN_initbchannel 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 0x3b5268f9 mISDN_freebchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x37d76e06 mISDN_freedchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x4df34b11 mISDN_unregister_device EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x50c2230c mISDN_FsmChangeState -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x526a4887 bchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x51f781b0 bchannel_get_rxbuf +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x521f0a0c recv_Dchannel_skb EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x588886a6 l1_event EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6047df40 mISDN_FsmInitTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7ae74cc1 recv_Echannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x82bc712e mISDN_unregister_device -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8c742788 mISDN_unregister_Bprotocol -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x90f9c816 recv_Bchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x61085cdb recv_Bchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x66a54b33 mISDN_register_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x677e5f66 recv_Dchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x845c237f dchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x92e00fff mISDN_unregister_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9743d95b mISDN_clear_bchannel EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9c928457 mISDN_FsmNew -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa56d2ba3 mISDN_register_Bprotocol -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xab1b4ec2 get_next_dframe -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xac691266 mISDN_initdchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb1a672dc mISDN_ctrl_bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb664662c mISDN_initbchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa2001336 bchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa5ce381a mISDN_freebchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb18fe346 recv_Echannel EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc3401729 mISDN_register_clock -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xcc8e23a5 queue_ch_frame -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd130a1d5 get_next_bframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc826b884 create_l1 EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd285995f mISDN_clock_get +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd34dfb7a mISDN_initdchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd4440053 get_next_dframe EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd5145151 mISDN_FsmEvent -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd5b99436 recv_Dchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd8c4c932 create_l1 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xddf04358 get_next_bframe EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe8f617eb mISDN_unregister_clock -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe9a96dab mISDNDevName4ch -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xea3b7acf recv_Dchannel_skb -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xeb85d3de dchannel_senddata -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf9429e11 mISDN_freedchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xfb5c75a9 mISDN_register_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xeb7a647f recv_Bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf5df6ce9 mISDN_ctrl_bchannel EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x01087af0 mISDN_dsp_element_unregister EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x93df9e4b dsp_audio_law_to_s32 EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xb07a21b8 dsp_audio_s16_to_law EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xb98308d8 mISDN_dsp_element_register EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0x54a12ec4 ti_lmu_common_set_ramp -EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0x9727028b ti_lmu_common_get_ramp_params -EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0xab954f93 ti_lmu_common_get_brt_res +EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0x78e9b7b8 ti_lmu_common_get_ramp_params +EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0x8f8f20c0 ti_lmu_common_get_brt_res EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0xced72aae ti_lmu_common_set_brightness -EXPORT_SYMBOL drivers/md/dm-log 0x0ef47162 dm_dirty_log_destroy -EXPORT_SYMBOL drivers/md/dm-log 0x1a3cb69c dm_dirty_log_create -EXPORT_SYMBOL drivers/md/dm-log 0x669edbfa dm_dirty_log_type_register -EXPORT_SYMBOL drivers/md/dm-log 0xaf6b52dd dm_dirty_log_type_unregister -EXPORT_SYMBOL drivers/md/dm-snapshot 0x1edcd6d0 dm_exception_store_create -EXPORT_SYMBOL drivers/md/dm-snapshot 0x55e12f51 dm_exception_store_destroy -EXPORT_SYMBOL drivers/md/dm-snapshot 0x60a4b099 dm_exception_store_type_unregister -EXPORT_SYMBOL drivers/md/dm-snapshot 0x9a2f806d dm_snap_cow -EXPORT_SYMBOL drivers/md/dm-snapshot 0xd15c37f5 dm_snap_origin -EXPORT_SYMBOL drivers/md/dm-snapshot 0xd558087b dm_exception_store_type_register -EXPORT_SYMBOL drivers/md/raid456 0x2fa1e206 r5c_journal_mode_set -EXPORT_SYMBOL drivers/md/raid456 0x60f4920e raid5_set_cache_size -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x05cf51b7 flexcop_device_exit -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x1260632c flexcop_device_kmalloc -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x3089b663 flexcop_device_kfree -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x44ef984c flexcop_device_initialize -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x4f4f9f00 flexcop_dump_reg -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x52d278ed flexcop_sram_set_dest -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x774e143f flexcop_sram_ctrl -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x9b350bfa flexcop_i2c_request -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x9f588db5 flexcop_pid_feed_control -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xa276d38c flexcop_wan_set_speed -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xc4f2e79a flexcop_pass_dmx_packets -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xcbb70b07 flexcop_eeprom_check_mac_addr -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xfb26ff0c flexcop_pass_dmx_data +EXPORT_SYMBOL drivers/md/dm-log 0x0aaa6a7e dm_dirty_log_type_unregister +EXPORT_SYMBOL drivers/md/dm-log 0x0f0d6d6f dm_dirty_log_destroy +EXPORT_SYMBOL drivers/md/dm-log 0x2e3a9366 dm_dirty_log_type_register +EXPORT_SYMBOL drivers/md/dm-log 0xcb98980f dm_dirty_log_create +EXPORT_SYMBOL drivers/md/dm-snapshot 0x2fc63bee dm_exception_store_destroy +EXPORT_SYMBOL drivers/md/dm-snapshot 0x4c4c4313 dm_snap_cow +EXPORT_SYMBOL drivers/md/dm-snapshot 0x4e792b22 dm_exception_store_create +EXPORT_SYMBOL drivers/md/dm-snapshot 0xb73afe1c dm_exception_store_type_register +EXPORT_SYMBOL drivers/md/dm-snapshot 0xbb5fc616 dm_snap_origin +EXPORT_SYMBOL drivers/md/dm-snapshot 0xf8d7bf0f dm_exception_store_type_unregister +EXPORT_SYMBOL drivers/md/raid456 0x2787c954 raid5_set_cache_size +EXPORT_SYMBOL drivers/md/raid456 0x8363af55 r5c_journal_mode_set +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x152c0e97 flexcop_dump_reg +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x20bfc63d flexcop_i2c_request +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x4ae0dae1 flexcop_device_kfree +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x4e2c4a64 flexcop_device_exit +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x698017cb flexcop_device_kmalloc +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x75e121cb flexcop_device_initialize +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x8e6e6be2 flexcop_pass_dmx_packets +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xbc198863 flexcop_pass_dmx_data +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xc2ed9c1e flexcop_eeprom_check_mac_addr +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xce36c6b6 flexcop_pid_feed_control +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xd4708163 flexcop_sram_ctrl +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xdd9c3263 flexcop_sram_set_dest +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xe991890e flexcop_wan_set_speed EXPORT_SYMBOL drivers/media/common/cx2341x 0x15ac1bd0 cx2341x_ctrl_query -EXPORT_SYMBOL drivers/media/common/cx2341x 0x1b0b683f cx2341x_handler_set_busy +EXPORT_SYMBOL drivers/media/common/cx2341x 0x1c5f558f cx2341x_handler_set_50hz EXPORT_SYMBOL drivers/media/common/cx2341x 0x28240e61 cx2341x_ctrl_get_menu +EXPORT_SYMBOL drivers/media/common/cx2341x 0x355c0f10 cx2341x_handler_setup EXPORT_SYMBOL drivers/media/common/cx2341x 0x55aa7c5f cx2341x_mpeg_ctrls EXPORT_SYMBOL drivers/media/common/cx2341x 0x7b4dd2cb cx2341x_fill_defaults -EXPORT_SYMBOL drivers/media/common/cx2341x 0xa1ab58de cx2341x_handler_set_50hz +EXPORT_SYMBOL drivers/media/common/cx2341x 0x96047822 cx2341x_handler_init +EXPORT_SYMBOL drivers/media/common/cx2341x 0xa6209296 cx2341x_handler_set_busy EXPORT_SYMBOL drivers/media/common/cx2341x 0xb2b9efb7 cx2341x_ext_ctrls -EXPORT_SYMBOL drivers/media/common/cx2341x 0xbae267b1 cx2341x_handler_init EXPORT_SYMBOL drivers/media/common/cx2341x 0xdbc5583a cx2341x_update EXPORT_SYMBOL drivers/media/common/cx2341x 0xe1fe1432 cx2341x_log_status -EXPORT_SYMBOL drivers/media/common/cx2341x 0xfea12f0a cx2341x_handler_setup -EXPORT_SYMBOL drivers/media/common/cypress_firmware 0x44419628 cypress_load_firmware +EXPORT_SYMBOL drivers/media/common/cypress_firmware 0x2a479ab9 cypress_load_firmware EXPORT_SYMBOL drivers/media/common/ttpci-eeprom 0x693e74ba ttpci_eeprom_decode_mac -EXPORT_SYMBOL drivers/media/common/ttpci-eeprom 0xc4851922 ttpci_eeprom_parse_mac +EXPORT_SYMBOL drivers/media/common/ttpci-eeprom 0x9870db72 ttpci_eeprom_parse_mac +EXPORT_SYMBOL drivers/media/common/tveeprom 0x083ea863 tveeprom_read EXPORT_SYMBOL drivers/media/common/tveeprom 0x0dbf0296 tveeprom_hauppauge_analog -EXPORT_SYMBOL drivers/media/common/tveeprom 0xb86fad46 tveeprom_read +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x05da33d9 vb2_verify_memory_type EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x065246b8 frame_vector_create -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x08489392 vb2_verify_memory_type -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x0c91b92a 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 0x7e0a759f vb2_buffer_in_use EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0xc2d9e090 get_vaddr_frames 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-dvb 0x181a3f28 vb2_dvb_register_bus -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x20005470 vb2_dvb_dealloc_frontends -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x29ac85c9 vb2_dvb_alloc_frontend -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x89b34f74 vb2_dvb_find_frontend -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x96bee90c vb2_dvb_get_frontend -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xf3173d5c vb2_dvb_unregister_bus +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x1efcad66 vb2_dvb_unregister_bus +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x20c5e6c1 vb2_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x26f51cd5 vb2_dvb_alloc_frontend +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x45abb770 vb2_dvb_get_frontend +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x734b35f7 vb2_dvb_find_frontend +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xbad06e6f vb2_dvb_register_bus EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-memops 0xa21fa765 vb2_create_framevec EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-memops 0xccd197c7 vb2_destroy_framevec -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-v4l2 0xd004e7e4 vb2_querybuf -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x05e09bd4 dvb_unregister_device +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-v4l2 0xfa702d84 vb2_querybuf EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x08733236 intlog10 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x0f2c3d2d dvb_register_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x13f2a801 dvb_unregister_device EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x18acd31f dvb_dmx_swfilter_packets -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1e92f61b dvb_unregister_adapter -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2672cab7 dvb_net_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2a48414c dvb_dmxdev_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x28e73e14 dvb_net_release EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2f5cdf80 dvb_ringbuffer_write -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x36438093 dvb_dmxdev_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3b8ba238 dvb_net_init EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3b93d71a dvb_frontend_sleep_until -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x486c09c7 dvb_generic_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4d223732 dvb_ca_en50221_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x47e44ff1 dvb_frontend_suspend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4bf58f68 dvb_dmxdev_init EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x54abe4ff dvb_dmx_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5e451f58 dvb_frontend_detach +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x564b246c dvb_unregister_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x57ec224a dvb_register_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 0x63980d1f dvb_ca_en50221_camready_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x65db4c04 dvb_generic_release EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6a9f708a dvb_dmx_swfilter_204 -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x77043d1a dvb_remove_device -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x77b6983d dvb_register_adapter -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x79de5dd3 dvb_generic_ioctl +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7bb5ea72 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 0x91d0be81 dvb_frontend_resume EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9263a063 dvb_dmx_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x983db6e5 dvb_frontend_resume -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x98426e2a dvb_ca_en50221_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9d9df009 dvb_frontend_suspend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x99143865 dvb_ca_en50221_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa042cbc3 dvb_ca_en50221_camready_irq EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa4235824 dvb_dmx_swfilter_raw -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa77a647b dvb_register_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa50f1628 dvb_remove_device EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb3352dd2 dvb_ringbuffer_empty +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb941c1d7 dvb_ca_en50221_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc06b57a9 dvb_unregister_adapter EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc3f679f9 dvb_ringbuffer_write_user -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xcda07a7e dvb_frontend_reinitialise -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd869f904 dvb_unregister_frontend -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xdee501e1 dvb_register_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc46fc9a9 dvb_ca_en50221_camchange_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xcd1b2567 dvb_generic_ioctl +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xcef49fae dvb_frontend_reinitialise +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd0d6064a dvb_frontend_detach +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd9d6cebb dvb_register_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd9ea9b5b dvb_dmxdev_release EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe138ce6b dvb_ringbuffer_avail -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe75becfc dvb_ca_en50221_camchange_irq -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xeb221b0c dvb_free_device EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xebbc2d9b dvb_ringbuffer_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf539a753 dvb_generic_open -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf7fbf9d3 dvb_ca_en50221_frda_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xedd0ae14 dvb_generic_open +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xede3a233 dvb_free_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf879e9f0 dvb_ca_en50221_frda_irq EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfb09f39a dvb_ringbuffer_read EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfb9a826f dvb_ringbuffer_flush EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfc6380e5 dvb_ringbuffer_free -EXPORT_SYMBOL drivers/media/dvb-frontends/ascot2e 0xc05dc1df ascot2e_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/atbm8830 0x2e56d7a0 atbm8830_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x2cec18e9 au8522_get_state -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x3b535a14 au8522_init -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x44d29794 au8522_i2c_gate_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x6f4c6f7e au8522_sleep -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x70805bbf au8522_analog_i2c_gate_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x7fcbc215 au8522_led_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xa30126ba au8522_readreg -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xcea0ea57 au8522_release_state -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xe727a5f0 au8522_writereg -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_dig 0x7a9e217c au8522_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/bcm3510 0x274450de bcm3510_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx22700 0x06047e17 cx22700_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx22702 0x8d2519f1 cx22702_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24110 0xa20ae9b8 cx24110_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x985f729e cx24113_agc_callback -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0xc4ddbc68 cx24113_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24116 0x5609a041 cx24116_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24120 0x3498e442 cx24120_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x199ebb42 cx24123_get_tuner_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x2f98d4ec cx24123_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2820r 0x529ea5fd cxd2820r_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x33f95362 cxd2841er_attach_t_c -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x7a454ec3 cxd2841er_attach_s -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2880/cxd2880 0x144cd956 cxd2880_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x0ee34a40 dib0070_ctrl_agc_filter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x9b2d0fbd dib0070_wbd_offset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x9b728e83 dib0070_set_rf_output -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xa38bcdbf dib0070_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xa50fedcd dib0070_get_rf_output -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x181eca08 dib0090_gain_control -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x3516b8d0 dib0090_get_current_gain -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x4f56fc1f dib0090_register -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x53b502e7 dib0090_update_rframp_7090 -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x5b259f82 dib0090_update_tuning_table_7090 -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x6caec359 dib0090_set_dc_servo -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x7b503e76 dib0090_set_tune_state -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x7d36025b dib0090_pwm_gain_reset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x8f3b2673 dib0090_get_wbd_offset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xc07500e9 dib0090_set_switch -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xc41a25a4 dib0090_dcc_freq -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xca1220f9 dib0090_get_wbd_target -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xca5a2313 dib0090_set_vga -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xcf98caa2 dib0090_get_tune_state -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xf491eb16 dib0090_fw_register -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mb 0x387f3367 dib3000mb_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x651e30ea dib3000mc_pid_control -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x6f2c6499 dib3000mc_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x81b95c48 dib3000mc_get_tuner_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x81c71b52 dib3000mc_i2c_enumeration -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xca13137d dib3000mc_pid_parse -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xf939a43f dib3000mc_set_config -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x3722f3dd dib7000m_get_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x4f74f84a dib7000m_pid_filter_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x7efda8d5 dib7000m_pid_filter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xfb7b9002 dib7000m_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000p 0x07451e64 dib7000p_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib8000 0x453d8609 dib8000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x1efaef5d dib9000_fw_set_component_bus_speed -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x20d20e2d dib9000_set_gpio -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x2ad2fed0 dib9000_fw_pid_filter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x2d8409c4 dib9000_i2c_enumeration -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x343ad0f4 dib9000_get_tuner_interface -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x534efc96 dib9000_firmware_post_pll_init -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x7a70160d dib9000_get_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x818892d9 dib9000_get_slave_frontend -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x8a0c348f dib9000_fw_pid_filter_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x8ca468c4 dib9000_set_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x9c125f22 dib9000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xa94319b3 dib9000_set_slave_frontend -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xbafa6c96 dib9000_get_component_bus_interface -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x174d3249 dibx000_get_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x1e6d9f48 dibx000_i2c_set_speed -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x2c05daa2 dibx000_reset_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x8e49be3b dibx000_exit_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xa2792b96 dibx000_init_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0x3d912151 drx39xxj_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/drxd 0x033e30e7 drxd_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/drxk 0xf2e1a33e drxk_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ds3000 0x2fbe59fb ds3000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dvb-pll 0xe81c55d1 dvb_pll_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x70f03685 dvb_dummy_fe_qpsk_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0xcf1ae7bd dvb_dummy_fe_qam_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0xdb3e12ed dvb_dummy_fe_ofdm_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ec100 0x3e8d8db3 ec100_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0x31d58bd3 helene_attach_s -EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0xf08c6d0b helene_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/horus3a 0x45de3697 horus3a_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/isl6405 0x00909d0f isl6405_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/isl6421 0x7779405f isl6421_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/isl6423 0x5ff6a026 isl6423_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/itd1000 0xacc8f12d itd1000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ix2505v 0x152f9b02 ix2505v_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/l64781 0x30aba6be l64781_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lg2160 0xd24fd247 lg2160_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3305 0x19927c78 lgdt3305_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3306a 0xa409b0ad lgdt3306a_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt330x 0x19892e32 lgdt330x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gl5 0x4cacf56d lgs8gl5_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gxx 0xb741ba54 lgs8gxx_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh25 0x95528490 lnbh25_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh29 0x83e46e3c lnbh29_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0xd2fb48af lnbh24_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0xfe36ec94 lnbp21_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp22 0x4f2f4bd0 lnbp22_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x76fb084d m88ds3103_get_agc_pwm -EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0xfa934ed9 m88ds3103_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/m88rs2000 0x44aedc90 m88rs2000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a16 0x47b1bfba mb86a16_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a20s 0x3c6bf9c3 mb86a20s_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mt312 0x713dfe5e mt312_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mt352 0x825a6881 mt352_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/nxt200x 0x4790e849 nxt200x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/nxt6000 0x21892c14 nxt6000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/or51132 0xb11c209f or51132_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/or51211 0x9b4e997a or51211_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1409 0x7d066379 s5h1409_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1411 0x06bf48dd s5h1411_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0xc0e0d7c5 s5h1420_get_tuner_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0xe0591531 s5h1420_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1432 0x88bd0442 s5h1432_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s921 0x9e244318 s921_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/si21xx 0x8c684421 si21xx_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/sp887x 0xc7ab1fdb sp887x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stb0899 0x4a1f3091 stb0899_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stb6000 0x4fa5819f stb6000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stb6100 0x0ad7d235 stb6100_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0288 0xe7e6ce29 stv0288_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0297 0xa8f07311 stv0297_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0299 0x852238a1 stv0299_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x0a05f67e stv0367ter_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0xadcd1059 stv0367ddb_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0xdeb9433c stv0367cab_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0900 0x156ffd67 stv0900_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv090x 0x2beeb408 stv090x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110 0x882a5cfa stv6110_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110x 0xba69c447 stv6110x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10021 0xaeceee64 tda10021_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10023 0x4384e913 tda10023_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10048 0xadc18f90 tda10048_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x1d3c42d7 tda10045_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0xe95f948d tda10046_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10086 0xfaa6ea83 tda10086_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda665x 0x5c647f30 tda665x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda8083 0x1975a6c6 tda8083_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda8261 0xf89a16b5 tda8261_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda826x 0xe84f64b0 tda826x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ts2020 0x003b3912 ts2020_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tua6100 0xe99f74fa tua6100_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ves1820 0xbab30056 ves1820_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ves1x93 0x74b007a1 ves1x93_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0x0aa9b15c zd1301_demod_get_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0xb12822ed zd1301_demod_get_dvb_frontend -EXPORT_SYMBOL drivers/media/dvb-frontends/zl10036 0xb997da0b zl10036_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/zl10039 0x18a114a3 zl10039_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/zl10353 0xbaa5352b zl10353_attach -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x34e51ad5 flexcop_dma_free -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x52c2e416 flexcop_dma_allocate -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x97228569 flexcop_dma_control_timer_irq -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xb79b781a flexcop_dma_control_size_irq -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xc83dec94 flexcop_dma_xfer_control -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xd134a6d3 flexcop_dma_config_timer -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xd1e5cca5 flexcop_dma_config -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x8155a1ac bt878 -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x931bc892 bt878_start -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xb469a4ff bt878_device_control +EXPORT_SYMBOL drivers/media/dvb-frontends/ascot2e 0x5e1ec174 ascot2e_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/atbm8830 0x5d1f07c7 atbm8830_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x16e11c53 au8522_release_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x2d840a8f au8522_writereg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x3f84e5d2 au8522_led_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x3fe704d0 au8522_init +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x5c555d8d au8522_sleep +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x624da089 au8522_get_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x85d06a68 au8522_readreg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x9d8f2f53 au8522_analog_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xec67df69 au8522_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_dig 0x280099ec au8522_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/bcm3510 0x94457a51 bcm3510_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22700 0xf5d0b169 cx22700_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22702 0x0bc35bb6 cx22702_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24110 0x51de26c6 cx24110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x1c029300 cx24113_agc_callback +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x4525b3b0 cx24113_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24116 0xbe4210e5 cx24116_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24120 0xffcd4b8a cx24120_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x1d8b2bb9 cx24123_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x4c648672 cx24123_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2820r 0x7d73e0c9 cxd2820r_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x2ae13954 cxd2841er_attach_t_c +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x97d04240 cxd2841er_attach_s +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2880/cxd2880 0xb1900640 cxd2880_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x703be8d1 dib0070_ctrl_agc_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x82faa395 dib0070_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xaa5d1cdd dib0070_set_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xbe469858 dib0070_get_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xf2564009 dib0070_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x07535066 dib0090_get_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x0b46c987 dib0090_get_current_gain +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x1d206e2d dib0090_get_wbd_target +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x2625ebbd dib0090_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x4fa2c358 dib0090_update_tuning_table_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x70548ec2 dib0090_gain_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x97fe6b3d dib0090_get_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xbd7a87a4 dib0090_pwm_gain_reset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xe2e2c661 dib0090_fw_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xe3da663a dib0090_dcc_freq +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xe4d1c1d6 dib0090_update_rframp_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xe523003a dib0090_set_vga +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xeb1c9dca dib0090_set_dc_servo +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xfdc9fab4 dib0090_set_switch +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xfe882403 dib0090_set_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mb 0xcc615a11 dib3000mb_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x0069ce80 dib3000mc_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x1dde2b05 dib3000mc_pid_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x233d9323 dib3000mc_set_config +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x6f695a05 dib3000mc_get_tuner_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x7159c706 dib3000mc_pid_parse +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xe9d84963 dib3000mc_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x2d12c825 dib7000m_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x59b9dd58 dib7000m_pid_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x9d0efa17 dib7000m_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xb5e32b8f dib7000m_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000p 0xdb0effe4 dib7000p_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib8000 0x0da23789 dib8000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x1711baab dib9000_firmware_post_pll_init +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x204f172d dib9000_get_tuner_interface +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x23a2e382 dib9000_fw_pid_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x3bb938c5 dib9000_fw_set_component_bus_speed +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x3f7cd308 dib9000_set_slave_frontend +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x53ff701a dib9000_get_slave_frontend +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x5c9ee235 dib9000_fw_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x649d0d94 dib9000_get_component_bus_interface +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x9426d74e dib9000_set_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xb35c855b dib9000_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xbebbc548 dib9000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xc0bffae7 dib9000_set_gpio +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xf9e0847a dib9000_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x3704856e dibx000_init_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x790d0c7f dibx000_i2c_set_speed +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x8648410a dibx000_reset_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x91d4a5b3 dibx000_get_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xd21e9def dibx000_exit_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0x86e65af3 drx39xxj_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxd 0x4ea2c8b6 drxd_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxk 0x9275bf43 drxk_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ds3000 0xe20d4a7e ds3000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb-pll 0x784cab5e dvb_pll_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x0d31a1ab dvb_dummy_fe_qam_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x2f288cfa dvb_dummy_fe_ofdm_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x84e6a892 dvb_dummy_fe_qpsk_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ec100 0x107172d0 ec100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0x6057bb2a helene_attach_s +EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0x732558b0 helene_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/horus3a 0xdb9d363c horus3a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6405 0xba1b76b6 isl6405_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6421 0x0aee8e10 isl6421_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6423 0x5b2c6d00 isl6423_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/itd1000 0x995862fd itd1000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ix2505v 0x67d9448d ix2505v_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/l64781 0x53795fab l64781_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lg2160 0x991dd207 lg2160_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3305 0xf84e7bda lgdt3305_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3306a 0xd3d3c3ed lgdt3306a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt330x 0x4a0ea5ec lgdt330x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gl5 0xbf783a13 lgs8gl5_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gxx 0x6fd19231 lgs8gxx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh25 0xe5f9293f lnbh25_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh29 0x42bd4e39 lnbh29_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x1e3ec40a lnbp21_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x8926f45b lnbh24_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp22 0xfb8a53c5 lnbp22_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x8b8d8659 m88ds3103_get_agc_pwm +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0xe6b2b343 m88ds3103_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88rs2000 0x8b0d5163 m88rs2000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a16 0xba8b9df6 mb86a16_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a20s 0x045657fd mb86a20s_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt312 0x019653f1 mt312_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt352 0x867d04ed mt352_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt200x 0x4772fd2a nxt200x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt6000 0x2ffe3e1d nxt6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51132 0xb1fe35fc or51132_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51211 0xdcb69b33 or51211_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1409 0xb204e132 s5h1409_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1411 0xf54eb286 s5h1411_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x951aeaf5 s5h1420_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x9629cc23 s5h1420_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1432 0x7b4cfe19 s5h1432_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s921 0xdef075bf s921_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/si21xx 0x0a8e0666 si21xx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/sp887x 0x4a402b40 sp887x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb0899 0xda457c37 stb0899_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6000 0xbf117b2b stb6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6100 0x727e7d99 stb6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0288 0xfefea41f stv0288_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0297 0x4ae51011 stv0297_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0299 0x9b6ec13a stv0299_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x23836170 stv0367cab_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x50f73215 stv0367ddb_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0xf73fd432 stv0367ter_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0900 0x7f22d748 stv0900_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv090x 0x3a6c8f26 stv090x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110 0x25334833 stv6110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110x 0xb425f194 stv6110x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10021 0x892491fc tda10021_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10023 0x8c2764e0 tda10023_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10048 0x2351b4f0 tda10048_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x389de7e0 tda10045_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0xccfe31ba tda10046_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10086 0x8850350c tda10086_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda665x 0x3e7954af tda665x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8083 0xeaa169b8 tda8083_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8261 0xe3a9a031 tda8261_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda826x 0x4c44d732 tda826x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ts2020 0x60af256f ts2020_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tua6100 0x192b8e4e tua6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1820 0x0103ba3a ves1820_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1x93 0x4c8da99f ves1x93_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0x8bcc828d zd1301_demod_get_dvb_frontend +EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0xf4e2c662 zd1301_demod_get_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10036 0x4fbf6cbe zl10036_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10039 0xa3c8e433 zl10039_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10353 0x204c0fa1 zl10353_attach +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x14de1893 flexcop_dma_free +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x3d397101 flexcop_dma_config_timer +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x52e3446f flexcop_dma_xfer_control +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x63947951 flexcop_dma_control_size_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x79b3cccf flexcop_dma_allocate +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x8ff37970 flexcop_dma_config +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xb4db8e32 flexcop_dma_control_timer_irq +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x0f97c8f2 bt878_start +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x2e3ddfaa bt878_stop +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x5b217411 bt878_device_control +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xafc06bfa bt878 EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xd5d0bdef bt878_num -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xe8510b5e bt878_stop -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x08d5fbe6 bttv_get_pcidev EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x11dc4b6d bttv_gpio_enable -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x12c150e9 bttv_sub_register -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x191c954c bttv_sub_unregister +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x3442f1f9 bttv_get_pcidev +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x50b1c89e bttv_sub_unregister EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x8ecf4acc bttv_write_gpio EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xbcf2d2fb bttv_read_gpio -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x0ea44cf3 write_dst -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x1eb6b5bb dst_attach -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x343e8c66 read_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xdb54c240 bttv_sub_register +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x2bb3b2f3 read_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x42bce4b6 rdc_reset_state EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x43a983fd dst_check_sum -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x85a14734 dst_comm_init -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x9057c958 dst_error_recovery -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xaed667a1 dst_error_bailout -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xb43fda3f dst_pio_disable -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xc8b81056 dst_wait_dst_ready -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xd85f6023 rdc_reset_state -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst_ca 0x273fb837 dst_ca_attach -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x06abf252 cx18_start_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x29e8c8d5 cx18_release_stream +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x5ed027df dst_attach +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x6ac0ff6e write_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xb7d6fc0d dst_wait_dst_ready +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xd7533d91 dst_error_recovery +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xdc622212 dst_error_bailout +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xdf8e62d5 dst_comm_init +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xe755ea0c dst_pio_disable +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst_ca 0xbd717fcd dst_ca_attach EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2cdea06d cx18_reset_ir_gpio -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x58d040c2 cx18_ext_init -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xa328ae31 cx18_claim_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xd917c35b cx18_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x3fe9e597 cx18_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x51cb60bf cx18_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x77fc390d cx18_release_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xc5c3a597 cx18_ext_init +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xf07176d9 cx18_claim_stream EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0x1ab311dc altera_ci_init EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0x6ff7510d altera_ci_tuner_reset EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xdb3faf38 altera_ci_release EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xe66b9812 altera_ci_irq -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x208045d3 cx25821_sram_channel_setup_audio -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x3797cda1 cx25821_dev_unregister +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x03cd07ed cx25821_dev_unregister +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x2bf70017 cx25821_risc_databuffer_audio EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x44b517f5 cx25821_print_irqbits -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x79a8ba66 cx25821_risc_databuffer_audio -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x8635ce59 cx25821_set_gpiopin_direction -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x867d5dc8 cx25821_riscmem_alloc -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xa4aab0c2 cx25821_dev_get -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xe0f76336 cx25821_sram_channel_dump_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x57d0206d cx25821_sram_channel_dump_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x61789fc4 cx25821_riscmem_alloc +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x6ba5825a cx25821_set_gpiopin_direction +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xd3458c4d cx25821_dev_get EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xe9050411 cx25821_sram_channels -EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x7bbc2a74 vp3054_i2c_remove -EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0xb47924e2 vp3054_i2c_probe -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x7f38a8db cx88_set_freq -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xaa97ca9e cx88_querycap -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xc103d29b cx88_video_mux -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xc7ba56fe cx88_enum_input -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x11961d90 cx8802_cancel_buffers -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x56cba64a cx8802_register_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xa6982bc4 cx8802_unregister_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xb39c4b3b cx8802_buf_queue -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xbea653f4 cx8802_start_dma -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xc0890ef7 cx8802_get_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xd0ca66b4 cx8802_buf_prepare -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x12eec069 cx88_newstation -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x14a34e61 cx88_core_irq -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x171dbb6f cx88_get_stereo -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x1d3fc17d cx88_set_scale -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x1d470fa9 cx88_reset -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x2d8ea45a cx88_ir_start -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x38d6603c cx88_ir_stop -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4bf011fd cx88_core_get +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xf6ceb23c cx25821_sram_channel_setup_audio +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0xe46b3569 vp3054_i2c_remove +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0xee21d5ec vp3054_i2c_probe +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x04208f41 cx88_video_mux +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x3da8375f cx88_set_freq +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x4bf6f596 cx88_enum_input +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xb8af366f cx88_querycap +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x22138bbe cx8802_unregister_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x8358c9d3 cx8802_buf_queue +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x8c405187 cx8802_cancel_buffers +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xac2cce87 cx8802_register_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xb8212f40 cx8802_get_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xe749da20 cx8802_buf_prepare +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xf3f9cf87 cx8802_start_dma +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x05d7e943 cx88_reset +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x10bfe9d0 cx88_sram_channel_dump +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x2205f89e cx88_risc_databuffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x2f204d41 cx88_get_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x46b47668 cx88_shutdown +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x5c188363 cx88_newstation +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x5dd128f1 cx88_ir_start +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x5e7c6524 cx88_core_put EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x5edb7ae5 cx88_print_irqbits +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x5edef154 cx88_set_tvaudio EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6141c8c5 cx88_tuner_callback -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6d568e74 cx88_wakeup -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x72a23968 cx88_sram_channel_dump -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7acf1beb cx88_set_tvnorm -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7cda460e cx88_risc_databuffer -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x8427854a cx88_core_put +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7106f8bf cx88_core_get +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x8d37b975 cx88_wakeup EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x8d88137a cx88_sram_channels EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x904b8696 cx88_audio_thread -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x999cd00a cx88_set_tvaudio -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x9dfa4966 cx88_risc_buffer -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xaa832e49 cx88_set_stereo -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xac808186 cx88_shutdown -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xc04d4cfb cx88_dsp_detect_stereo_sap -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xd3ae7646 cx88_sram_channel_setup -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xee1736fd cx88_vdev_init -EXPORT_SYMBOL drivers/media/pci/ddbridge/ddbridge-dummy-fe 0xe9f0d866 ddbridge_dummy_fe_qam_attach -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x10004290 ivtv_vapi +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x90bf9c72 cx88_sram_channel_setup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x9946b56d cx88_vdev_init +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x9a4f88aa cx88_ir_stop +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xd44b6ebd cx88_set_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xe1c2372b cx88_dsp_detect_stereo_sap +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xec8c47b7 cx88_set_scale +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xed57e3fe cx88_risc_buffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xee919d13 cx88_set_tvnorm +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xfcd61c4f cx88_core_irq +EXPORT_SYMBOL drivers/media/pci/ddbridge/ddbridge-dummy-fe 0x75fba168 ddbridge_dummy_fe_qam_attach +EXPORT_SYMBOL drivers/media/pci/intel/ipu6/intel-ipu6 0x0fe08bb1 ipu_fw_authenticate +EXPORT_SYMBOL drivers/media/pci/intel/ipu6/intel-ipu6 0x12402166 ipu_bus_register_driver +EXPORT_SYMBOL drivers/media/pci/intel/ipu6/intel-ipu6 0x128973c3 ipu_bus_unregister_driver +EXPORT_SYMBOL drivers/media/pci/intel/ipu6/intel-ipu6 0x21f6b056 request_cpd_fw +EXPORT_SYMBOL drivers/media/pci/intel/ipu6/intel-ipu6 0x3db36ccb ipu_buttress_auth_done +EXPORT_SYMBOL drivers/media/pci/intel/ipu6/intel-ipu6 0x410d7235 ipu_buttress_start_tsc_sync +EXPORT_SYMBOL drivers/media/pci/intel/ipu6/intel-ipu6 0x9404f286 ipu_configure_spc +EXPORT_SYMBOL drivers/media/pci/intel/ipu6/intel-ipu6 0x9b8ea6d3 ipu_mmu_hw_cleanup +EXPORT_SYMBOL drivers/media/pci/intel/ipu6/intel-ipu6 0xc7231f03 ipu_ver +EXPORT_SYMBOL drivers/media/pci/intel/ipu6/intel-ipu6 0xf16e3c40 ipu_mmu_hw_init +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x0d7b4c2c ivtv_clear_irq_mask EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x14f67530 ivtv_debug -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x180471d5 ivtv_clear_irq_mask -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x1919f0f3 ivtv_udma_setup -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x2d0a6779 ivtv_vapi_result -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x36a43872 ivtv_udma_alloc -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x41ec6365 ivtv_claim_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x46350786 ivtv_firmware_check -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x47360065 ivtv_reset_ir_gpio -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x5da6171a ivtv_set_irq_mask -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x5e0a4d74 ivtv_udma_prepare -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x69d95247 ivtv_init_on_first_open -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x6ff4bee7 ivtv_api -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x81541e3d ivtv_udma_unmap -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x8b5318fe ivtv_ext_init -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x9899dd01 ivtv_stop_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xb13a0e7d ivtv_start_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xd5054198 ivtv_release_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x1746e4a8 ivtv_vapi_result +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x46f24341 ivtv_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x4ca1e5c4 ivtv_firmware_check +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x540bbeb1 ivtv_set_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x59ea1e1c ivtv_init_on_first_open +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x666a030b ivtv_udma_setup +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x70abd69c ivtv_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x75f8a93d ivtv_claim_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x78f624ed ivtv_ext_init +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x84f55d47 ivtv_udma_prepare +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x85288cba ivtv_api +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xb87037d6 ivtv_vapi +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xcb61b976 ivtv_udma_unmap +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xcbe51aea ivtv_release_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xde1566b7 ivtv_udma_alloc +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xefaad3ac ivtv_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x048bffcf saa_dsp_writel EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x04e83446 saa7134_tuner_callback -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x093dd6ec saa7134_pgtable_free EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x1211df5d saa7134_devlist -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x21b93f64 saa_dsp_writel -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x2336e67b saa7134_dmasound_exit -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x3528b4ff saa7134_ts_unregister -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x46815691 saa7134_pgtable_alloc -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x5bac30df saa7134_set_gpio -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x628e7b05 saa7134_ts_register +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x237d2aa7 saa7134_set_gpio +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x2d2e081b saa7134_ts_register +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x369a6842 saa7134_pgtable_alloc +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x3e8af26e saa7134_pgtable_build +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x46434b8d saa7134_tvaudio_setmute EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x730c4be3 saa7134_boards +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x7c31a698 saa7134_dmasound_exit +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x8607bb39 saa7134_pgtable_free +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x8dbf7538 saa7134_set_dmabits EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x8f1ad46b saa7134_devlist_lock -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xa48f7a65 saa7134_set_dmabits -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xabe296ed saa7134_pgtable_build -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xb74ae5e8 saa7134_dmasound_init -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xb9312c78 saa7134_tvaudio_setmute -EXPORT_SYMBOL drivers/media/radio/tea575x 0x3d5113ce snd_tea575x_set_freq -EXPORT_SYMBOL drivers/media/radio/tea575x 0x52bcf9a9 snd_tea575x_g_tuner -EXPORT_SYMBOL drivers/media/radio/tea575x 0x5ec65cf3 snd_tea575x_enum_freq_bands -EXPORT_SYMBOL drivers/media/radio/tea575x 0x6f75f4ea snd_tea575x_exit -EXPORT_SYMBOL drivers/media/radio/tea575x 0x7d9f334c snd_tea575x_init -EXPORT_SYMBOL drivers/media/radio/tea575x 0xa8874598 snd_tea575x_s_hw_freq_seek -EXPORT_SYMBOL drivers/media/radio/tea575x 0xb5eb8e5b snd_tea575x_hw_init +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xae05e7a6 saa7134_dmasound_init +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xf68846db saa7134_ts_unregister +EXPORT_SYMBOL drivers/media/radio/tea575x 0x072e336e snd_tea575x_enum_freq_bands +EXPORT_SYMBOL drivers/media/radio/tea575x 0x2931a380 snd_tea575x_exit +EXPORT_SYMBOL drivers/media/radio/tea575x 0x43270c7b snd_tea575x_hw_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0x91c77f8b snd_tea575x_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0x95bb639f snd_tea575x_s_hw_freq_seek +EXPORT_SYMBOL drivers/media/radio/tea575x 0x978d091c snd_tea575x_g_tuner +EXPORT_SYMBOL drivers/media/radio/tea575x 0x9bdf5340 snd_tea575x_set_freq EXPORT_SYMBOL drivers/media/rc/rc-core 0x2ad91f6e ir_raw_gen_pl -EXPORT_SYMBOL drivers/media/rc/rc-core 0x6596b8dd ir_raw_handler_register +EXPORT_SYMBOL drivers/media/rc/rc-core 0x70677c46 ir_raw_handler_register EXPORT_SYMBOL drivers/media/rc/rc-core 0x7cf52901 ir_raw_gen_manchester EXPORT_SYMBOL drivers/media/rc/rc-core 0x9e12e343 ir_raw_gen_pd EXPORT_SYMBOL drivers/media/rc/rc-core 0xb5516017 ir_raw_encode_carrier -EXPORT_SYMBOL drivers/media/rc/rc-core 0xd9c1d283 ir_raw_handler_unregister +EXPORT_SYMBOL drivers/media/rc/rc-core 0xba5caef3 ir_raw_handler_unregister EXPORT_SYMBOL drivers/media/rc/rc-core 0xf446074f ir_raw_encode_scancode -EXPORT_SYMBOL drivers/media/tuners/fc0011 0xba052319 fc0011_attach -EXPORT_SYMBOL drivers/media/tuners/fc0012 0x03aedfa8 fc0012_attach -EXPORT_SYMBOL drivers/media/tuners/fc0013 0x8dbc7971 fc0013_rc_cal_add -EXPORT_SYMBOL drivers/media/tuners/fc0013 0xa92f5287 fc0013_attach -EXPORT_SYMBOL drivers/media/tuners/fc0013 0xeb7095a3 fc0013_rc_cal_reset -EXPORT_SYMBOL drivers/media/tuners/max2165 0x388a22fa max2165_attach -EXPORT_SYMBOL drivers/media/tuners/mc44s803 0x16898b25 mc44s803_attach -EXPORT_SYMBOL drivers/media/tuners/mt2060 0xbd05c6c8 mt2060_attach -EXPORT_SYMBOL drivers/media/tuners/mt2131 0x32caa761 mt2131_attach -EXPORT_SYMBOL drivers/media/tuners/mt2266 0xc548ace0 mt2266_attach -EXPORT_SYMBOL drivers/media/tuners/mxl5005s 0x39da08ea mxl5005s_attach -EXPORT_SYMBOL drivers/media/tuners/qt1010 0xe8e26990 qt1010_attach -EXPORT_SYMBOL drivers/media/tuners/tda18218 0x6523713b tda18218_attach +EXPORT_SYMBOL drivers/media/tuners/fc0011 0x44f6d210 fc0011_attach +EXPORT_SYMBOL drivers/media/tuners/fc0012 0x75b15116 fc0012_attach +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x4a78f868 fc0013_rc_cal_add +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x8a228eea fc0013_attach +EXPORT_SYMBOL drivers/media/tuners/fc0013 0xbc47b100 fc0013_rc_cal_reset +EXPORT_SYMBOL drivers/media/tuners/max2165 0xdde6d858 max2165_attach +EXPORT_SYMBOL drivers/media/tuners/mc44s803 0xd7d0ab20 mc44s803_attach +EXPORT_SYMBOL drivers/media/tuners/mt2060 0x358c6421 mt2060_attach +EXPORT_SYMBOL drivers/media/tuners/mt2131 0xba430588 mt2131_attach +EXPORT_SYMBOL drivers/media/tuners/mt2266 0x91b02452 mt2266_attach +EXPORT_SYMBOL drivers/media/tuners/mxl5005s 0x594e1497 mxl5005s_attach +EXPORT_SYMBOL drivers/media/tuners/qt1010 0xbc1ae122 qt1010_attach +EXPORT_SYMBOL drivers/media/tuners/tda18218 0xc83a65f2 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/tuner-xc2028 0x529cfe31 xc2028_attach -EXPORT_SYMBOL drivers/media/tuners/xc4000 0x45641558 xc4000_attach -EXPORT_SYMBOL drivers/media/tuners/xc5000 0x78cef525 xc5000_attach -EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x137b01ac cx231xx_register_extension -EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0xf96c905e cx231xx_unregister_extension -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x0294b52b dvb_usbv2_generic_rw_locked -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x380bea14 dvb_usbv2_generic_write -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x956b669a dvb_usbv2_probe -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x99f4bd3c dvb_usbv2_generic_rw -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x9a392504 dvb_usbv2_disconnect -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x9efedd97 dvb_usbv2_resume -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xc34f14b4 dvb_usbv2_reset_resume -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xc97e91e1 dvb_usbv2_suspend -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xd1803d79 dvb_usbv2_generic_write_locked -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x660c5617 usb_cypress_load_firmware +EXPORT_SYMBOL drivers/media/tuners/tuner-xc2028 0x2bca9c0c xc2028_attach +EXPORT_SYMBOL drivers/media/tuners/xc4000 0xb695ef03 xc4000_attach +EXPORT_SYMBOL drivers/media/tuners/xc5000 0x0ebe2c37 xc5000_attach +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x797100c2 cx231xx_register_extension +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x7e6e9845 cx231xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x190f3b7d dvb_usbv2_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x2d726e69 dvb_usbv2_reset_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x3aea4db9 dvb_usbv2_probe +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x57cc6b38 dvb_usbv2_generic_write_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x7e54a385 dvb_usbv2_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x89c1e9d0 dvb_usbv2_suspend +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xbdfc06a9 dvb_usbv2_disconnect +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xc3fac062 dvb_usbv2_generic_rw_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xdb51305c dvb_usbv2_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x03c2d1cd dvb_usb_device_init +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x7cad14fc usb_cypress_load_firmware +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x878185dc dvb_usb_generic_write EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x8b6f5395 dvb_usb_get_hexline -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x920aa591 dvb_usb_device_init -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xb8ce3772 dvb_usb_nec_rc_key_to_event -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xc9dc67f1 dvb_usb_generic_rw -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xcf4835ab dvb_usb_device_exit -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xd6c66aee dvb_usb_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xa633d6ec dvb_usb_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xb9ad2306 dvb_usb_nec_rc_key_to_event +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xec8bcead dvb_usb_device_exit +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x2e76b84d af9005_rc_decode EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x341530cb rc_map_af9005_table -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0xbd253f9f 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 0x0a5af713 dibusb_pid_filter_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x1c0ff288 dibusb_pid_filter -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x284d64f8 dibusb_power_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x350dfb5d dibusb2_0_streaming_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x8976095d dibusb_read_eeprom_byte -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x92fb9b0f dibusb2_0_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x01f2fb6e dibusb_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x2e08627f dibusb2_0_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x5fe831d3 dibusb_pid_filter_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 0xcee5b571 dibusb_streaming_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xdf6b2b73 dibusb_rc_query -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xec1f8837 dibusb_i2c_algo -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0x05001bda dibusb_dib3000mc_tuner_attach -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0x947d4883 dibusb_dib3000mc_frontend_attach -EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x9e5d8e00 em28xx_unregister_extension -EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0xfe5b52a8 em28xx_register_extension -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x16006a08 go7007_register_encoder -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x4caba7d3 go7007_snd_remove -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x6ce3ba59 go7007_parse_video_stream -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x76084cc1 go7007_read_interrupt -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x796044ab go7007_boot_encoder -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x9e52d628 go7007_update_board -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xb3e93467 go7007_read_addr -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xb9eaacfd go7007_alloc -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xf5032b97 go7007_snd_init -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x189956fd gspca_coarse_grained_expo_autogain -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x4cfbd3fb gspca_resume -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x5e951096 gspca_disconnect +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x943f2c07 dibusb2_0_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xa3b8f270 dibusb_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xa416c462 dibusb_pid_filter +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xb81719e3 dibusb_i2c_algo +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xc7d9f826 dibusb_read_eeprom_byte +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xf763435f dibusb_rc_query +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0x1f15c196 dibusb_dib3000mc_tuner_attach +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0xa8d13578 dibusb_dib3000mc_frontend_attach +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x8ab7f6a5 em28xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0xf8f8bdd0 em28xx_register_extension +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x29e8a2f8 go7007_register_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x44f3e617 go7007_snd_init +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x735a7873 go7007_read_addr +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x79ddf82e go7007_parse_video_stream +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x8f87e514 go7007_snd_remove +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x9394934e go7007_boot_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x945d10db go7007_alloc +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xd0863b39 go7007_read_interrupt +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xf18473cc go7007_update_board +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x3554f1d5 gspca_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x4f08900b gspca_coarse_grained_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x5cd7e14a gspca_resume +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x7cca9a15 gspca_dev_probe EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9670af2c gspca_debug -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xb39f3324 gspca_dev_probe2 -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xb8d26e62 gspca_frame_add -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xd384c479 gspca_expo_autogain -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xe8e0a04b gspca_suspend -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xf7d1bec6 gspca_dev_probe -EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x064d7509 tm6000_unregister_extension -EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x83c9c62c tm6000_register_extension -EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0xdc02e6d8 tm6000_init_digital_mode -EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x9c43d089 ttusbdecfe_dvbt_attach -EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0xb784d143 ttusbdecfe_dvbs_attach -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x2d0edf4a v4l2_async_subdev_notifier_register -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x4cab1ba6 v4l2_async_unregister_subdev -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xb4d05942 v4l2_async_notifier_unregister -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xbb0b9e68 v4l2_async_notifier_init -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xf1e1614d v4l2_async_notifier_register -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xfdd9fc7a v4l2_async_register_subdev -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x3eefc113 v4l2_m2m_get_vq +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xaba5f780 gspca_dev_probe2 +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xae604d99 gspca_frame_add +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xbde4648f gspca_disconnect +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xec7369df gspca_suspend +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x11b49562 tm6000_unregister_extension +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x20d5eed5 tm6000_init_digital_mode +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0xd3df8572 tm6000_register_extension +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x8942796b ttusbdecfe_dvbs_attach +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0xa28578a1 ttusbdecfe_dvbt_attach +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x040bf0bd v4l2_async_notifier_unregister +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x20fd6fb8 v4l2_async_subdev_notifier_register +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x2567636d v4l2_async_unregister_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x5053b0bc v4l2_async_notifier_register +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x91638716 v4l2_async_notifier_init +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xf828b10a v4l2_async_register_subdev 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 0x6573a04e v4l2_m2m_mmap -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xb18e009f v4l2_m2m_buf_done_and_job_finish -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xc19ab662 v4l2_m2m_job_finish +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x9c8a8137 v4l2_m2m_get_vq +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xa9f80509 v4l2_m2m_mmap +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xe0aa8505 v4l2_m2m_job_finish +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xe4090240 v4l2_m2m_buf_done_and_job_finish EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xf626dd03 v4l2_m2m_suspend +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x03908979 __v4l2_ctrl_s_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0415f7ed v4l2_ctrl_subdev_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x05cb92e8 v4l2_ctrl_new_custom EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0614dd5a v4l2_video_std_frame_period +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x08140ebd v4l2_ctrl_radio_filter EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x082737e8 v4l2_ctrl_merge -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x09692a5e __v4l2_ctrl_s_ctrl_string +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x09ce9f3f __v4l2_ctrl_modify_range +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0a5985da v4l2_ctrl_poll EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x123959a1 v4l2_type_names -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x12c14ad7 v4l2_subdev_init EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x16244fe5 v4l2_prio_check -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x17f90211 v4l2_g_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1bdaa1bb v4l2_ctrl_activate -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1f3e6596 __video_register_device -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x21e4a451 v4l2_ctrl_request_complete +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x173b4d65 video_device_release_empty +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x17c59ac0 v4l2_ctrl_auto_cluster EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2342f1ae v4l2_prio_open -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x27544c37 v4l2_ctrl_subdev_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x243b13fe v4l2_ctrl_new_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x25f95486 v4l2_subdev_init EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x28b12cc9 v4l2_format_info -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x28d35c56 v4l2_ctrl_g_ctrl_int64 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2eff0f63 v4l2_ctrl_handler_init_class EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x315de2cf v4l2_ctrl_get_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x31d8ba67 v4l2_ctrl_handler_free EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x32d43420 v4l2_ctrl_get_name -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x39616374 __v4l2_ctrl_modify_range -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x39b8980f video_unregister_device -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3a489dca v4l2_querymenu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3a79bb3b video_device_release_empty EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3adbd595 v4l2_field_names -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3b21ca85 __v4l2_ctrl_s_ctrl_int64 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3b5d6d08 v4l2_ctrl_auto_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3b7863a5 v4l2_ctrl_handler_log_status EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3bdd0f94 v4l2_prio_change -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3c57c6e4 v4l2_ctrl_notify -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3d0383d3 v4l2_ctrl_handler_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3df02dbd video_devdata -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3ef69e09 v4l2_ctrl_g_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x448f2bed v4l2_ctrl_new_std_menu_items -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4dd5c153 __v4l2_ctrl_s_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x50bdec4d v4l2_ctrl_sub_ev_ops -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x57e000ab v4l2_try_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x581961cc v4l2_ctrl_radio_filter -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6d799d51 v4l2_ctrl_poll -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6e7c0773 v4l2_ctrl_new_int_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x782d2a7d v4l2_ctrl_find +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x46e322e7 v4l2_ctrl_g_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x484dd18c v4l2_query_ext_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x54d76ac7 v4l2_ctrl_find +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5f1052b3 v4l2_ctrl_new_std +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5f8c5430 v4l2_ctrl_sub_ev_ops +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x618aa094 video_devdata +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x635dd457 video_unregister_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x757bc5d6 v4l2_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x777c3c45 v4l2_ctrl_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7e5689ec v4l2_ctrl_new_std_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7e5767d4 v4l2_subdev_call_wrappers EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8106095a v4l2_prio_max -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x897133c0 v4l2_ctrl_request_setup +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x822a292f v4l2_ctrl_request_setup +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x833772f4 v4l2_ctrl_notify +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x893e1584 __v4l2_ctrl_s_ctrl EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x89e3897d v4l2_ctrl_query_fill -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8b8bfb6d v4l2_ctrl_new_fwnode_properties -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8f3a0c7c v4l2_ctrl_handler_setup -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x915ba4d5 v4l2_g_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9ac25343 v4l2_ctrl_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa4cf9ef0 v4l2_ctrl_cluster -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa91a1a0a v4l2_s_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb4d4a44c v4l2_queryctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb6fc791d v4l2_s_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8a3b2ee9 v4l2_ctrl_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8ae16951 v4l2_s_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x919fbd53 v4l2_try_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x91ac7eb9 video_ioctl2 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x91c714f3 v4l2_ctrl_subdev_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x95f5b96f video_device_alloc +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9a48ed98 v4l2_ctrl_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9fa369d8 v4l2_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa0a0fee6 v4l2_ctrl_add_handler +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb29d046e v4l2_queryctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb332194d __v4l2_ctrl_s_ctrl_string +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb3bea546 video_device_release +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb3cac03a v4l2_ctrl_request_complete +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb44fb6b7 v4l2_ctrl_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb698beb7 v4l2_querymenu EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb77b0159 v4l2_prio_init -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb82278b8 v4l2_ctrl_subdev_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbb34dcd0 v4l2_g_ext_ctrls EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbc5671dc v4l_printk_ioctl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbdfb221e v4l2_ctrl_new_std_compound -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcd886d66 v4l2_ctrl_new_std_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc535b427 v4l2_ctrl_activate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc7ee611c __v4l2_ctrl_s_ctrl_compound EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcda04a5b v4l2_prio_close +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcdb2d887 v4l2_ctrl_handler_init_class EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd16d9c01 v4l2_ctrl_get_int_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd3d92901 v4l2_ctrl_add_handler -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd6c1ad1d video_device_alloc -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd9eb7ee9 __v4l2_ctrl_grab EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdc7e0128 v4l2_ctrl_fill +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdd4342db __video_register_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdff8aaed v4l2_ctrl_new_std_menu_items EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2b92059 v4l2_video_std_construct -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe3981ee8 v4l2_query_ext_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe8a58467 v4l2_ctrl_new_custom -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe8cb056d v4l2_ctrl_new_std -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe9cb59b1 v4l2_subdev_call_wrappers -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xed07957f video_ioctl2 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe64a70f4 v4l2_ctrl_new_std_compound +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe6bf4bf3 v4l2_ctrl_handler_free +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xea55b686 __v4l2_ctrl_grab EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf3251e7b v4l2_norm_to_name +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf3cb139b v4l2_ctrl_new_fwnode_properties EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf50fecbc v4l2_ctrl_replace -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfa167b43 video_device_release -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfa1a45b8 __v4l2_ctrl_s_ctrl_compound -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xffd4d2ca v4l2_ctrl_subscribe_event -EXPORT_SYMBOL drivers/memstick/core/memstick 0x006c284a memstick_next_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0x26a30f1a memstick_detect_change -EXPORT_SYMBOL drivers/memstick/core/memstick 0x296affaf memstick_register_driver -EXPORT_SYMBOL drivers/memstick/core/memstick 0x3674beac memstick_add_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x3c110587 memstick_free_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x3f4ffa9d memstick_resume_host +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf8df03a8 v4l2_ctrl_handler_setup +EXPORT_SYMBOL drivers/memstick/core/memstick 0x13be8966 memstick_alloc_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x143857a2 memstick_unregister_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0x1e65175f memstick_free_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x24d33356 memstick_resume_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x37e0c2bd memstick_register_driver EXPORT_SYMBOL drivers/memstick/core/memstick 0x4a4e5778 memstick_init_req_sg -EXPORT_SYMBOL drivers/memstick/core/memstick 0x88dee530 memstick_unregister_driver -EXPORT_SYMBOL drivers/memstick/core/memstick 0xa05d7559 memstick_remove_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0xa358ad4e memstick_set_rw_addr +EXPORT_SYMBOL drivers/memstick/core/memstick 0x4a507388 memstick_add_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x54aa32fc memstick_detect_change +EXPORT_SYMBOL drivers/memstick/core/memstick 0x9bce7dd8 memstick_new_req EXPORT_SYMBOL drivers/memstick/core/memstick 0xae50437c memstick_init_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0xb3b3c50a memstick_new_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0xc25c1e00 memstick_alloc_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0xec03bc1e memstick_suspend_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xbb957e24 memstick_remove_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xc5bd096b memstick_set_rw_addr +EXPORT_SYMBOL drivers/memstick/core/memstick 0xc61a5648 memstick_next_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0xfbcad756 memstick_suspend_host EXPORT_SYMBOL drivers/memstick/host/r592 0x52f1b23b memstick_debug_get_tpc_name -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x05a70574 mpt_detach -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0bc4db69 mpt_raid_phys_disk_get_num_paths -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0dd7442f mpt_event_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x18c35fc1 mpt_alloc_fw_memory -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x20ef67d2 mpt_halt_firmware -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x26e41138 mpt_verify_adapter -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x337e266a mpt_print_ioc_summary -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x36238ac7 mpt_GetIocState -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x3c7af8dd mpt_suspend -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4ad504f5 mpt_raid_phys_disk_pg1 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0179057d mpt_event_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x03ead0d3 mpt_GetIocState +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1cadcc93 mpt_config +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1ef78f0e mpt_raid_phys_disk_get_num_paths +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x283b7288 mpt_halt_firmware +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2e1ed3d5 mpt_print_ioc_summary +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x3d4548d6 mpt_put_msg_frame_hi_pri +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x3d991eff mpt_free_fw_memory EXPORT_SYMBOL drivers/message/fusion/mptbase 0x502108d0 mpt_fwfault_debug -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x606ba71d mpt_config -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x60e607ad mpt_free_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x5a414c83 mpt_device_driver_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x5f775b8d mpt_register EXPORT_SYMBOL drivers/message/fusion/mptbase 0x610b257e mpt_reset_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x666a38c1 mpt_Soft_Hard_ResetHandler -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x6790595c mpt_HardResetHandler -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x68aea8e0 mpt_raid_phys_disk_pg0 -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x6a91d3c6 mpt_reset_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x6d30e385 mptbase_sas_persist_operation -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x71740ff3 mpt_clear_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x71aff377 mpt_findImVolumes EXPORT_SYMBOL drivers/message/fusion/mptbase 0x74a0134a mpt_device_driver_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7d34fa38 mpt_free_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x869fa272 mpt_resume -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x8716f0dc mpt_attach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x763d3cc5 mpt_detach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x772459fd mpt_raid_phys_disk_pg1 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x86b99ec9 mpt_put_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x8ec8a453 mpt_verify_adapter EXPORT_SYMBOL drivers/message/fusion/mptbase 0x981efe92 mpt_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x9f0ff4aa mpt_put_msg_frame_hi_pri -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa10250b9 mpt_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa3d62adb mpt_findImVolumes -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa4c0a033 mpt_put_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xbdf4e124 mpt_device_driver_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc4cb6be1 mpt_set_taskmgmt_in_progress_flag -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc7f7628f mpt_get_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa8bafdea mpt_alloc_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb0e8ce0f mpt_Soft_Hard_ResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb1cb587c mpt_send_handshake_request +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb666956e mpt_clear_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc1152cd1 mpt_raid_phys_disk_pg0 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc953fcd7 mpt_suspend +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd0964c3f mpt_attach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd5514fc2 mpt_free_msg_frame EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdd805159 ioc_list +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xde927295 mpt_set_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe5f21ced mptbase_sas_persist_operation EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe6c1e126 mpt_event_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xfe4c2022 mpt_send_handshake_request -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x0c60768e mptscsih_dev_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x32e66089 mptscsih_abort -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x358463d4 mptscsih_flush_running_cmds -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x36425b50 mptscsih_show_info -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x419398f8 mptscsih_taskmgmt_response_code -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x44e37be8 mptscsih_slave_destroy -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x45d3c3aa mptscsih_scandv_complete -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x4b68ef48 mptscsih_shutdown -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x69850f1b mptscsih_bios_param -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7a40d8b9 mptscsih_info -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x80e921d9 mptscsih_resume -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x858695de mptscsih_ioc_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x8db48c1f mptscsih_raid_id_to_num -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x93880820 mptscsih_slave_configure -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x9450ddb5 mptscsih_taskmgmt_complete -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x95704767 mptscsih_is_phys_disk -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x9b0e85e0 mptscsih_change_queue_depth -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa1caefbb mptscsih_remove -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xbf5f27b5 mptscsih_IssueTaskMgmt -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc0d1f805 mptscsih_suspend -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd40513d6 mptscsih_get_scsi_lookup -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd438d586 mptscsih_io_done -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd48fc74c mptscsih_bus_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xdcd61538 mptscsih_host_attrs -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf6238c45 mptscsih_event_process -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf6964426 mptscsih_host_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xfe9feba7 mptscsih_qcmd -EXPORT_SYMBOL drivers/mfd/axp20x 0x427caf35 axp20x_device_remove -EXPORT_SYMBOL drivers/mfd/axp20x 0xe1125a66 axp20x_device_probe -EXPORT_SYMBOL drivers/mfd/axp20x 0xe63a1c47 axp20x_match_device -EXPORT_SYMBOL drivers/mfd/dln2 0x04f3bb8d dln2_unregister_event_cb -EXPORT_SYMBOL drivers/mfd/dln2 0xbecce8b8 dln2_register_event_cb -EXPORT_SYMBOL drivers/mfd/dln2 0xcbd79eb0 dln2_transfer -EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x759ada39 pasic3_write_register -EXPORT_SYMBOL drivers/mfd/htc-pasic3 0xaa8fd20c pasic3_read_register -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x0e45e79c mc13xxx_reg_rmw -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x1979dc5f mc13xxx_irq_unmask -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x332b0969 mc13xxx_irq_request -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x428c80f3 mc13xxx_irq_mask -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x4f644585 mc13xxx_unlock -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x5dd3ef44 mc13xxx_reg_write -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x6ff31e96 mc13xxx_get_flags -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x8840812e mc13xxx_irq_status -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x8922edf9 mc13xxx_irq_free -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x9af76f61 mc13xxx_lock -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xcea4b4d1 mc13xxx_reg_read +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xecb3ce93 mpt_HardResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xeccf16ae mpt_get_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xfe64b041 mpt_reset_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xffceb96b mpt_resume +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x05124d0f mptscsih_scandv_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x0b10b59d mptscsih_suspend +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x10df1d42 mptscsih_taskmgmt_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x127970fa mptscsih_bios_param +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x177cfd26 mptscsih_event_process +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x20829aec mptscsih_slave_configure +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x21b74e50 mptscsih_host_attrs +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3aa9559f mptscsih_bus_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x4ad2b328 mptscsih_taskmgmt_response_code +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x56f723a2 mptscsih_remove +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x62e8f54e mptscsih_IssueTaskMgmt +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x70e2b1c4 mptscsih_show_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x751165be mptscsih_flush_running_cmds +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x791289e7 mptscsih_get_scsi_lookup +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x83643d4f mptscsih_qcmd +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x863f4967 mptscsih_change_queue_depth +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x8e03f512 mptscsih_abort +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa0df962e mptscsih_host_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa241e8fa mptscsih_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa4e19cb3 mptscsih_slave_destroy +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc2ebaefa mptscsih_resume +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc6bfbfe3 mptscsih_ioc_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc78ff06f mptscsih_shutdown +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd0aec1e1 mptscsih_dev_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xec48e3fb mptscsih_is_phys_disk +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf76b9814 mptscsih_io_done +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xfadccf72 mptscsih_raid_id_to_num +EXPORT_SYMBOL drivers/mfd/axp20x 0xb1a664d6 axp20x_match_device +EXPORT_SYMBOL drivers/mfd/axp20x 0xb7bbfbf3 axp20x_device_probe +EXPORT_SYMBOL drivers/mfd/axp20x 0xc41444eb axp20x_device_remove +EXPORT_SYMBOL drivers/mfd/dln2 0x815b6e63 dln2_unregister_event_cb +EXPORT_SYMBOL drivers/mfd/dln2 0xe3b4c3c1 dln2_register_event_cb +EXPORT_SYMBOL drivers/mfd/dln2 0xfcba7ab2 dln2_transfer +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0xd686d3b5 pasic3_read_register +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0xf0bde436 pasic3_write_register +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x12ed55b1 mc13xxx_irq_free +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x3553c92a mc13xxx_irq_request +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x3c8c9b26 mc13xxx_get_flags +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x4b61aa91 mc13xxx_reg_rmw +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x88174bc1 mc13xxx_reg_read +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x8c0f419a mc13xxx_unlock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x9053a0a5 mc13xxx_irq_mask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x972b3c2c mc13xxx_reg_write +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xb9716778 mc13xxx_irq_unmask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xce8e032b mc13xxx_lock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xf20823b3 mc13xxx_irq_status EXPORT_SYMBOL drivers/mfd/tps65010 0x02d4ad0f tps65013_set_low_pwr EXPORT_SYMBOL drivers/mfd/tps65010 0x0c6ad2cf tps65010_config_vdcdc2 EXPORT_SYMBOL drivers/mfd/tps65010 0x28485130 tps65010_config_vregs1 @@ -2424,209 +2433,216 @@ 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 0x1dfe1395 wm8994_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994 0x2fc4a80c wm8958_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994 0x3caa38c1 wm8994_irq_exit -EXPORT_SYMBOL drivers/mfd/wm8994 0x7da1c657 wm8994_base_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994 0x9f3d731f wm8994_irq_init -EXPORT_SYMBOL drivers/mfd/wm8994 0xb0a6aa21 wm1811_regmap_config -EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x7bdf1d63 ad_dpot_probe -EXPORT_SYMBOL drivers/misc/ad525x_dpot 0xf34a33d7 ad_dpot_remove +EXPORT_SYMBOL drivers/mfd/wm8994 0x02abb8e2 wm8994_base_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0x0c804ef5 wm8958_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0x28399514 wm8994_irq_init +EXPORT_SYMBOL drivers/mfd/wm8994 0x3ebaf56c wm8994_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0x93e24cd8 wm1811_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0xcea1f19d wm8994_irq_exit +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x95a97eca ad_dpot_probe +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x9b20d0dc ad_dpot_remove EXPORT_SYMBOL drivers/misc/altera-stapl/altera-stapl 0x5bafa76e altera_init -EXPORT_SYMBOL drivers/misc/c2port/core 0x52ad1826 c2port_device_register -EXPORT_SYMBOL drivers/misc/c2port/core 0xc2183df6 c2port_device_unregister +EXPORT_SYMBOL drivers/misc/c2port/core 0x4021b510 c2port_device_unregister +EXPORT_SYMBOL drivers/misc/c2port/core 0x5e550425 c2port_device_register +EXPORT_SYMBOL drivers/misc/mei/dal/mei_dal 0x47777412 dal_create_session +EXPORT_SYMBOL drivers/misc/mei/dal/mei_dal 0x4c25c999 dal_close_session +EXPORT_SYMBOL drivers/misc/mei/dal/mei_dal 0x69a47046 dal_unset_ta_exclusive_access +EXPORT_SYMBOL drivers/misc/mei/dal/mei_dal 0x722a5d1e dal_get_version_info +EXPORT_SYMBOL drivers/misc/mei/dal/mei_dal 0x8937fe9a dal_uuid_parse +EXPORT_SYMBOL drivers/misc/mei/dal/mei_dal 0x9624881b dal_set_ta_exclusive_access +EXPORT_SYMBOL drivers/misc/mei/dal/mei_dal 0xe40bb920 dal_send_and_receive +EXPORT_SYMBOL drivers/misc/mei/mei 0x076c393a __traceiter_mei_pci_cfg_read EXPORT_SYMBOL drivers/misc/mei/mei 0x0bb25295 __SCT__tp_func_mei_reg_write +EXPORT_SYMBOL drivers/misc/mei/mei 0x0fc8aa81 __SCK__tp_func_mei_pci_cfg_read EXPORT_SYMBOL drivers/misc/mei/mei 0x14dc7949 __SCT__tp_func_mei_pci_cfg_read -EXPORT_SYMBOL drivers/misc/mei/mei 0x2b7593ed __traceiter_mei_reg_read -EXPORT_SYMBOL drivers/misc/mei/mei 0x2d6b2360 __SCK__tp_func_mei_pci_cfg_read EXPORT_SYMBOL drivers/misc/mei/mei 0x3b0a488d __SCT__tp_func_mei_reg_read -EXPORT_SYMBOL drivers/misc/mei/mei 0x7182811f __SCK__tp_func_mei_reg_write -EXPORT_SYMBOL drivers/misc/mei/mei 0x7b27f0e2 __SCK__tp_func_mei_reg_read -EXPORT_SYMBOL drivers/misc/mei/mei 0x7baafe03 __tracepoint_mei_reg_read -EXPORT_SYMBOL drivers/misc/mei/mei 0xa11a6eed __traceiter_mei_pci_cfg_read -EXPORT_SYMBOL drivers/misc/mei/mei 0xa68fdeff __tracepoint_mei_reg_write -EXPORT_SYMBOL drivers/misc/mei/mei 0xc71bce31 __tracepoint_mei_pci_cfg_read -EXPORT_SYMBOL drivers/misc/mei/mei 0xfade4270 __traceiter_mei_reg_write +EXPORT_SYMBOL drivers/misc/mei/mei 0x5339145a __tracepoint_mei_reg_read +EXPORT_SYMBOL drivers/misc/mei/mei 0x7f541d63 __traceiter_mei_reg_write +EXPORT_SYMBOL drivers/misc/mei/mei 0x8a478bd4 __SCK__tp_func_mei_reg_read +EXPORT_SYMBOL drivers/misc/mei/mei 0xb410a445 __tracepoint_mei_reg_write +EXPORT_SYMBOL drivers/misc/mei/mei 0xbab2aa4c __tracepoint_mei_pci_cfg_read +EXPORT_SYMBOL drivers/misc/mei/mei 0xbec974fd __SCK__tp_func_mei_reg_write +EXPORT_SYMBOL drivers/misc/mei/mei 0xd93b91ef __traceiter_mei_reg_read EXPORT_SYMBOL drivers/misc/tifm_core 0x0ffb277f tifm_queue_work -EXPORT_SYMBOL drivers/misc/tifm_core 0x1e1d5063 tifm_free_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0x261334a8 tifm_eject -EXPORT_SYMBOL drivers/misc/tifm_core 0x387f3d35 tifm_add_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0x77f2cc53 tifm_register_driver -EXPORT_SYMBOL drivers/misc/tifm_core 0x7de6d03a tifm_has_ms_pif -EXPORT_SYMBOL drivers/misc/tifm_core 0xbc159248 tifm_alloc_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0xc7e3fe27 tifm_unmap_sg -EXPORT_SYMBOL drivers/misc/tifm_core 0xcec9ae86 tifm_alloc_device -EXPORT_SYMBOL drivers/misc/tifm_core 0xdc2aec18 tifm_map_sg -EXPORT_SYMBOL drivers/misc/tifm_core 0xe1584832 tifm_unregister_driver -EXPORT_SYMBOL drivers/misc/tifm_core 0xf3e5a452 tifm_free_device -EXPORT_SYMBOL drivers/misc/tifm_core 0xf4bb479c tifm_remove_adapter -EXPORT_SYMBOL drivers/mmc/host/cqhci 0x3093e237 cqhci_init -EXPORT_SYMBOL drivers/mmc/host/cqhci 0x4abd158e cqhci_resume -EXPORT_SYMBOL drivers/mmc/host/cqhci 0x5c5f31c5 cqhci_pltfm_init -EXPORT_SYMBOL drivers/mmc/host/cqhci 0x6a8aa85b cqhci_deactivate -EXPORT_SYMBOL drivers/mmc/host/cqhci 0xa3ab5828 cqhci_irq -EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0x0f0b75a1 mmc_spi_put_pdata -EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0xc448c95a mmc_spi_get_pdata -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x0846caba cfi_build_cmd -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x34dbbf9c cfi_merge_status -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xb610f13d cfi_build_cmd_addr -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xc063d635 cfi_send_gen_cmd -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xd0aa114d cfi_varsize_frob -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xd2420259 cfi_read_pri -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xff6b4fbc cfi_fixup +EXPORT_SYMBOL drivers/misc/tifm_core 0x16104ed5 tifm_remove_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x1a3b7165 tifm_eject +EXPORT_SYMBOL drivers/misc/tifm_core 0x3442bee4 tifm_register_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0x8d3c38a4 tifm_free_device +EXPORT_SYMBOL drivers/misc/tifm_core 0x94f03c50 tifm_free_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xac770f12 tifm_alloc_device +EXPORT_SYMBOL drivers/misc/tifm_core 0xc43e0339 tifm_unmap_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0xd9c10234 tifm_unregister_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0xdd6a986f tifm_has_ms_pif +EXPORT_SYMBOL drivers/misc/tifm_core 0xe99261a3 tifm_add_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xf3e24bb1 tifm_alloc_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xf3e93915 tifm_map_sg +EXPORT_SYMBOL drivers/mmc/host/cqhci 0x1769b61f cqhci_init +EXPORT_SYMBOL drivers/mmc/host/cqhci 0x58fd3855 cqhci_resume +EXPORT_SYMBOL drivers/mmc/host/cqhci 0x8c63ebd9 cqhci_deactivate +EXPORT_SYMBOL drivers/mmc/host/cqhci 0xb0949789 cqhci_irq +EXPORT_SYMBOL drivers/mmc/host/cqhci 0xe8ac1976 cqhci_pltfm_init +EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0x448bc2a3 mmc_spi_get_pdata +EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0x73676bc7 mmc_spi_put_pdata +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x222f2875 cfi_read_pri +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x3a8647a2 cfi_merge_status +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x4e31de81 cfi_build_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xc421cb7c cfi_varsize_frob +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xe1f0ffb0 cfi_fixup +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xe2f26fec cfi_send_gen_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xf2c3c36e cfi_build_cmd_addr EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xff9fa623 cfi_udelay -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x07362ded map_destroy -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x6ccaef07 register_mtd_chip_driver -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x71ba324f do_map_probe -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xd9bdefd3 unregister_mtd_chip_driver -EXPORT_SYMBOL drivers/mtd/chips/gen_probe 0xccb3fc96 mtd_do_chip_probe -EXPORT_SYMBOL drivers/mtd/lpddr/lpddr_cmds 0xcf247d40 lpddr_cmdset +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x03c82b58 register_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x2346f163 map_destroy +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x9da89d63 unregister_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xbd375504 do_map_probe +EXPORT_SYMBOL drivers/mtd/chips/gen_probe 0xc65cf6ce mtd_do_chip_probe +EXPORT_SYMBOL drivers/mtd/lpddr/lpddr_cmds 0x2b2ceb90 lpddr_cmdset EXPORT_SYMBOL drivers/mtd/maps/map_funcs 0xfef2bb24 simple_map_init -EXPORT_SYMBOL drivers/mtd/mtd 0x342581c0 mtd_concat_destroy -EXPORT_SYMBOL drivers/mtd/mtd 0x85e2af3b mtd_concat_create -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x0e9aee84 nand_ecc_init_ctx -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x0f7058b2 nand_ecc_sw_bch_correct -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x104abe4b of_get_nand_ecc_user_config -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x1c43aa4b nand_ecc_sw_hamming_calculate -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x355c6ec0 nand_ecc_sw_hamming_get_engine -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x3f9480b9 nand_ecc_cleanup_ctx -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x5a76a807 nand_ecc_sw_bch_init_ctx -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x5b52035c nand_ecc_sw_bch_calculate -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x5be477d3 nand_ecc_get_sw_engine -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x7c57669d nand_ecc_sw_bch_cleanup_ctx -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x90ee05c8 nand_ecc_sw_hamming_cleanup_ctx -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x94e5c2f5 nand_ecc_sw_hamming_init_ctx -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x9fc3afcd nand_ecc_sw_bch_get_engine -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xb3b88cd6 nand_ecc_sw_hamming_correct -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xc3a21999 nand_ecc_get_on_die_hw_engine -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xd76441a1 nand_ecc_prepare_io_req +EXPORT_SYMBOL drivers/mtd/mtd 0x4e31577f mtd_concat_destroy +EXPORT_SYMBOL drivers/mtd/mtd 0x74fce75b mtd_concat_create +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x01b7c437 nand_ecc_sw_bch_init_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x0aa070e8 nand_ecc_sw_bch_get_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x0f8f0df5 nand_ecc_sw_hamming_init_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x188cddc3 nand_ecc_sw_bch_calculate +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x25771365 nand_ecc_cleanup_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x2f6cdb8d nand_ecc_sw_hamming_cleanup_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x5918e211 nand_ecc_init_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x8a512e8f nand_ecc_is_strong_enough +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x93687a03 nand_ecc_sw_hamming_calculate +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x9dcee3e0 nand_ecc_sw_bch_cleanup_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xbd6ea96c nand_ecc_sw_bch_correct +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xc89fdd7b nand_ecc_sw_hamming_correct +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xdb467c0a nand_ecc_finish_io_req EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xe6db989b ecc_sw_hamming_correct -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xe76f04a5 nand_ecc_finish_io_req -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xfbc695e1 nand_ecc_is_strong_enough +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xead01c6e nand_ecc_sw_hamming_get_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xf76a8e50 nand_ecc_get_on_die_hw_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xf874486a nand_ecc_prepare_io_req +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xfc25889f of_get_nand_ecc_user_config +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xfd037f44 nand_ecc_get_sw_engine EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xff4351b0 ecc_sw_hamming_calculate -EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0xa883feb3 flexonenand_region -EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0xb5b1bf9e onenand_addr -EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x05f1d441 denali_init +EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0x348e0e9a onenand_addr +EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0x7009ddbe flexonenand_region EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x30db096f denali_calc_ecc_bytes -EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0xe1368ccc denali_remove -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x10e966c8 nand_read_oob_std -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x2a91d5bd rawnand_sw_hamming_calculate -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x3a1fcfdf rawnand_sw_bch_init -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x58b37255 nand_scan_with_ids -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x5b6e59c2 rawnand_sw_bch_cleanup -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x7afff59d nand_write_page_raw -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x7d375535 nand_get_set_features_notsupp -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x831e79a9 nand_create_bbt -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x84367cbd rawnand_sw_hamming_cleanup +EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x35a89ade denali_init +EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x5520e080 denali_remove +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x167aadc6 rawnand_sw_hamming_cleanup +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x263c8082 rawnand_sw_bch_cleanup +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x399d022c nand_scan_with_ids +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x586583c2 nand_read_page_raw +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x7d0908d6 nand_write_oob_std +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x7ecb3119 rawnand_sw_hamming_correct EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x8ecbb3b8 nand_check_erased_ecc_chunk -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x9622ddf0 nand_monolithic_read_page_raw -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xa4dedcc2 nand_monolithic_write_page_raw -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xaf380237 rawnand_sw_bch_correct -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xc388bfda rawnand_sw_hamming_init -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xce041adf rawnand_dt_parse_gpio_cs -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xe170311a rawnand_sw_hamming_correct -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xf067f7ff nand_read_page_raw -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xfae4a09b nand_write_oob_std -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x50e7e4b7 arcnet_close -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x5d936e74 arcnet_unregister_proto +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x97b90b78 rawnand_sw_bch_init +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x9aad6e92 nand_read_oob_std +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xadee9659 rawnand_sw_bch_correct +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xb1017ce7 rawnand_dt_parse_gpio_cs +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xbc2cef05 nand_create_bbt +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xc5aeff4b rawnand_sw_hamming_calculate +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xd636b042 nand_monolithic_write_page_raw +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xe0b18676 nand_monolithic_read_page_raw +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xf5a59c45 nand_get_set_features_notsupp +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xf672f5ae nand_write_page_raw +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xf7ffea2c rawnand_sw_hamming_init +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x11873496 arc_proto_map +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x305c43a9 arcnet_unregister_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x5737ad34 arcnet_close +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x594ace04 alloc_arcdev EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x76639833 arc_raw_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x7e38caeb arcnet_send_packet -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x9633fa02 arc_proto_default -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xb1b52461 alloc_arcdev -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xb4390c7b arc_bcast_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xce160488 arcnet_open -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xd710618e arc_proto_map -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xe680865b arcnet_timeout +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x71d01ab6 arcnet_timeout +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xa8d64ae7 arc_proto_default +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xbee2ddb9 arcnet_send_packet +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xc5f86468 free_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xc6428acd arc_raw_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xcdbf0121 arc_bcast_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xd900cd00 arcnet_open EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecb730b0 arcnet_interrupt -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xef87694c free_arcdev -EXPORT_SYMBOL drivers/net/arcnet/com20020 0x24869c00 com20020_netdev_ops -EXPORT_SYMBOL drivers/net/arcnet/com20020 0x3b78af6f com20020_found -EXPORT_SYMBOL drivers/net/arcnet/com20020 0x9a3a8b07 com20020_check -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x0195401d b53_mirror_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x08a32228 b53_enable_port -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x090945ab b53_phylink_mac_link_state -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x092985f4 b53_disable_port -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x0d3cd2b4 b53_phylink_mac_link_down -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x197aab62 b53_fdb_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x1b8e9668 b53_get_mac_eee -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x1bcd6ed0 b53_mdb_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x1c08298d b53_br_join -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x31dc7976 b53_eee_enable_set -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x3a25a068 b53_get_strings -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x4abc4f8c b53_phylink_mac_link_up -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x5340b00e b53_switch_alloc -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x572f1fb9 b53_phylink_mac_an_restart -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x5a397e7f b53_switch_detect -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x65e71d0a b53_switch_register -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x683e1e4d b53_eee_init -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x68765260 b53_vlan_filtering -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x692e6d49 b53_configure_vlan -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x6e642b46 b53_port_event -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x70e139cd b53_phylink_mac_config -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x74a54ad5 b53_vlan_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x87140818 b53_get_tag_protocol -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x8c867327 b53_get_ethtool_stats -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x9a78ce7d b53_br_fast_age -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x9c626b46 b53_setup_devlink_resources -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa5d2cd27 b53_br_leave -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa8a272f3 b53_fdb_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xaba5e391 b53_brcm_hdr_setup -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb040da8f b53_get_sset_count -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb50d0663 b53_set_mac_eee -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xbc1bc4ad b53_imp_vlan_setup -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xca3591ff b53_get_ethtool_phy_stats -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xcc7ee8f3 b53_phylink_validate -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd56dcce6 b53_br_set_stp_state -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xdcde8810 b53_mirror_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xdefa53d8 b53_mdb_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xeb7617a8 b53_br_flags -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf14fa04b b53_br_flags_pre -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf2fc44fe b53_vlan_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf4cd4fa1 b53_fdb_dump -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x2f32d959 b53_serdes_link_state -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x3a0c3f70 b53_serdes_init -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xb41cfb99 b53_serdes_an_restart -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xe6f64f48 b53_serdes_phylink_validate -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xf000263f b53_serdes_config -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xfa9f75f8 b53_serdes_link_set -EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x12ac8567 lan9303_probe -EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x40d9bed8 lan9303_remove +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x0d288de7 com20020_check +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x6e0a6c5a com20020_found +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x76458443 com20020_netdev_ops +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x07479f3e b53_get_ethtool_phy_stats +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x0b9ac0e4 b53_eee_enable_set +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x0f2636b5 b53_vlan_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x1af8f154 b53_configure_vlan +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x1bd37bb8 b53_br_join +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x238d68dd b53_set_mac_eee +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x23c1353a b53_phylink_mac_an_restart +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x2a6b9065 b53_get_tag_protocol +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x39fc6cf2 b53_fdb_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x3ca15a09 b53_disable_port +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x3d901d86 b53_mirror_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x4140c3e7 b53_get_ethtool_stats +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x50a4d64a b53_phylink_mac_config +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x61766a45 b53_switch_detect +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x651988b9 b53_br_leave +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x6b14c55b b53_br_set_stp_state +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x82730313 b53_br_fast_age +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x8321a573 b53_phylink_mac_link_state +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x84985240 b53_vlan_filtering +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x8c717133 b53_brcm_hdr_setup +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x91034c55 b53_phylink_mac_link_down +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x95ecdbcf b53_mirror_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x98b3ad65 b53_get_strings +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x9e830cbe b53_mdb_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x9f980e4f b53_get_sset_count +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa8e92102 b53_fdb_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xae3085a7 b53_fdb_dump +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xaf07990e b53_imp_vlan_setup +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xba999d7c b53_eee_init +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc4e7a527 b53_br_flags_pre +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xcd99f6f3 b53_phylink_mac_link_up +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xcdbebd25 b53_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd31494a5 b53_get_mac_eee +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xdcf626b0 b53_mdb_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xe62df1d0 b53_switch_register +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xe87aabb5 b53_br_flags +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xe9dbfe5c b53_port_event +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf3fd226a b53_phylink_validate +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf5f9a6e5 b53_setup_devlink_resources +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xfbc9345f b53_enable_port +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xfc14e587 b53_vlan_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x10731cc1 b53_serdes_link_set +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x5c45a579 b53_serdes_init +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x60f51c2c b53_serdes_phylink_validate +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xcba3d21a b53_serdes_an_restart +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xcfa89f98 b53_serdes_config +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xfec88d0d b53_serdes_link_state +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x08338dfe lan9303_shutdown +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x6dd5a71b lan9303_probe EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xada83f40 lan9303_register_set -EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xbf1a3e2b lan9303_shutdown -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz8795 0xe4e324c5 ksz8_switch_register -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz9477 0xc720064e ksz9477_switch_register -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0x2dcc2a6f ksz_switch_register -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0x8e54e9eb ksz_switch_alloc -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0xdb4e8177 ksz_switch_remove -EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x09a414b8 vsc73xx_remove -EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x5eb46d32 vsc73xx_probe +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xb2e13160 lan9303_remove +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz8795 0xe897960c ksz8_switch_register +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz9477 0xa9c6f06e ksz9477_switch_register +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0x479eecad ksz_switch_remove +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0x96bde37a ksz_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0xd139fc94 ksz_switch_register +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x4232dbef vsc73xx_remove +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x8437d947 vsc73xx_probe EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x99d242fe vsc73xx_is_addr_valid -EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0xb8576a5a vsc73xx_shutdown -EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x5e348bb7 xrs700x_switch_register +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0xad812407 vsc73xx_shutdown +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x11587c64 xrs700x_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x26972996 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 0xa2bc55e0 xrs700x_switch_shutdown -EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xaa8b4343 xrs700x_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xab445a50 xrs700x_switch_register EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xb25facfa xrs7003e_info EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xb89aa5e3 xrs7004e_info -EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xefae678c xrs700x_switch_remove -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x0c65359e ei_get_stats +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xc76dc9b4 xrs700x_switch_shutdown +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x04887816 ei_tx_timeout EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x119721ac ei_interrupt -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x37a0fc22 ei_set_multicast_list -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x5425b44d __alloc_ei_netdev -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x682f09c6 ei_open -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x6c45296a NS8390_init -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x7346a709 ei_poll -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x7796b4ee ei_start_xmit -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x91ccc8ee ei_netdev_ops -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xa965a79a ei_close -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xe2a1cfad ei_tx_timeout -EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnxt/bnxt_en 0xd273a3ab bnxt_ulp_probe +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x21320206 __alloc_ei_netdev +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x72257a26 NS8390_init +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x8b820fe3 ei_open +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x9d446ce4 ei_start_xmit +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xabb81767 ei_set_multicast_list +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xc1a82903 ei_close +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xc438c3b2 ei_poll +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xc83903f9 ei_netdev_ops +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xe9f605fc ei_get_stats +EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnxt/bnxt_en 0x1e4f146a bnxt_ulp_probe EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x636af174 cnic_unregister_driver -EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x77f900b3 cnic_register_driver -EXPORT_SYMBOL drivers/net/ethernet/cavium/common/cavium_ptp 0xb0b4f15f cavium_ptp_put -EXPORT_SYMBOL drivers/net/ethernet/cavium/common/cavium_ptp 0xcbde5d57 cavium_ptp_get +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0xdbae79b8 cnic_register_driver +EXPORT_SYMBOL drivers/net/ethernet/cavium/common/cavium_ptp 0x91926dfd cavium_ptp_get +EXPORT_SYMBOL drivers/net/ethernet/cavium/common/cavium_ptp 0xd30fccb9 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 @@ -2644,306 +2660,305 @@ 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 0x0275e2f0 cxgb3_queue_tid_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x1ab80c3c cxgb3_ofld_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x1db41631 cxgb3_free_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x290f0510 cxgb3_insert_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x3870011e cxgb3_remove_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x5150a4b4 dev2t3cdev -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x643bc2c9 cxgb3_alloc_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x68c7795a t3_l2e_free -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x72462fad t3_register_cpl_handler -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x86ffcbb6 t3_l2t_send_event -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x944f23f7 cxgb3_register_client -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x9d9f376c cxgb3_unregister_client -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xa9799787 t3_l2t_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xc1a7b5d4 cxgb3_alloc_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xe053a081 t3_l2t_send_slow -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xeaf5a17b cxgb3_free_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x02a3405b cxgb4_l2t_alloc_switching +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x1cce749d cxgb3_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x1dac582e cxgb3_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x25aea3e8 cxgb3_register_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x268b7f5b dev2t3cdev +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x29e4056b cxgb3_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x3ba062ed cxgb3_insert_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x51a03d29 t3_l2t_send_slow +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x60169b41 cxgb3_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x64a43517 cxgb3_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x7c350843 cxgb3_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x8ba867df t3_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x91e993d8 t3_register_cpl_handler +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xc167b624 t3_l2t_send_event +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xc5e10a80 cxgb3_queue_tid_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xc99859d2 cxgb3_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xcce2000b t3_l2e_free +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x02330762 cxgb4_port_viid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x02a31396 cxgb4_port_idx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0e973661 cxgb4_l2t_get EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0f1a5528 cxgb4_unregister_uld -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x136d2eae cxgb4_dbfifo_count -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x17bffd80 cxgb4_get_srq_entry -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1a5adbd0 cxgb4_clip_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1c56c6cb cxgb4_ofld_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1e5b9c9d cxgb4_sync_txq_pidx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1f515218 cxgb4_l2t_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x33fca165 cxgb4_reclaim_completed_tx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x39b64b18 cxgb4_write_sgl -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4942db8a cxgb4_check_l2t_valid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4dd57525 cxgb4_l2t_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x125665c5 cxgb4_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1273a422 cxgb4_bar2_sge_qregs +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x18edc912 cxgb4_remove_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x19c25410 cxgb4_reclaim_completed_tx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1c5a3850 cxgb4_l2t_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x34f1df15 cxgb4_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4a701228 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 0x526cbc24 cxgb4_create_server_filter -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x57439947 cxgb4_smt_alloc_switching -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5c302f11 cxgb4_crypto_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x61229bd7 cxgb4_clip_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6dab7758 cxgb4_map_skb -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x76e5d2ab cxgb4_inline_tx_skb -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x77bfe154 cxgb4_register_uld -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x780e09b3 cxgb4_read_tpte -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x79287671 cxgb4_create_server -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8201622f cxgb4_alloc_sftid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x871df2ae cxgb4_port_viid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8c510cb6 cxgb4_bar2_sge_qregs -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8d101c60 cxgb4_port_idx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8d2c3c67 cxgb4_immdata_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9235bc3d cxgb4_alloc_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9340c4a9 cxgb4_remove_server -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x937b956a cxgb4_remove_server_filter -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa119202b cxgb4_ring_tx_db -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa29450c7 cxgb4_alloc_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa485ec5b cxgb4_update_root_dev_clip +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x57bdad4d cxgb4_pktgl_to_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5ededf57 cxgb4_read_sge_timestamp +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x628ebef1 cxgb4_check_l2t_valid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6835d5a8 cxgb4_immdata_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x715b98ca cxgb4_read_tpte +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x808499f8 cxgb4_clip_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x84ab1570 t4_cleanup_clip_tbl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8649492b cxgb4_update_root_dev_clip +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8e665863 cxgb4_sync_txq_pidx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8f8d6d08 cxgb4_port_chan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x99a4c3cf cxgb4_remove_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa6a54cf9 cxgb4_get_srq_entry +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa7153570 cxgb4_write_sgl EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa8db193f cxgb4_smt_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xaaabeced cxgb4_free_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xbf18d0ae cxgb4_port_e2cchan -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xbf5f63ae cxgb4_pktgl_to_skb -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc1c13954 cxgb4_port_chan -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc7f63f24 cxgb4_get_tcp_stats -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xcfed4bc1 cxgb4_l2t_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd175c549 cxgb4_remove_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd3183d78 cxgb4_read_sge_timestamp +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xaaabfb2e cxgb4_flush_eq_cache +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb2cce72e cxgb4_select_ntuple +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb2e842a4 cxgb4_crypto_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb4a9d782 cxgb4_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb52cea16 cxgb4_clip_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb542c3f8 cxgb4_port_e2cchan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb6222407 cxgb4_map_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb807c955 cxgb4_l2t_alloc_switching +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xbc57144d cxgb4_get_tcp_stats +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc03bb925 cxgb4_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc1f932ad cxgb4_alloc_sftid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc427ea1b cxgb4_create_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc99cbbb4 cxgb4_l2t_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd1130c77 cxgb4_register_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd12bf0e4 cxgb4_remove_tid EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd69a0294 cxgb4_best_mtu -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xdd23caf0 cxgb4_iscsi_init -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe013a1c6 t4_cleanup_clip_tbl -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe8ea92f7 cxgb4_free_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf21d5fa0 cxgb4_create_server6 -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf33a5c3a cxgb4_write_partial_sgl -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf61b1a35 cxgb4_flush_eq_cache -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf9e73974 cxgb4_select_ntuple +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd87b1876 cxgb4_dbfifo_count +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe1178c00 cxgb4_create_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe71cc3fc cxgb4_create_server6 +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xecf7e7e3 cxgb4_smt_alloc_switching +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf3b8a483 cxgb4_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xfb047e34 cxgb4_ring_tx_db +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xfe00e6e8 cxgb4_iscsi_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xfe539049 cxgb4_write_partial_sgl EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x1bdaafe1 cxgbi_tagmask_set -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x20e8a5f7 cxgb_find_route EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x255ab30f cxgb_get_4tuple -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x4d285dd6 cxgbi_ppm_ppods_reserve -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x55fad9ca cxgbi_ppm_ppod_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x5ab72237 cxgbi_ppm_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x5b40cce0 cxgbi_ppm_init -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x78511592 cxgbi_ppm_make_ppod_hdr -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xbbc447df cxgb_find_route6 -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x39677612 enic_api_devcmd_proxy_by_index -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x534b485f vnic_dev_get_res -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x57cf28ea vnic_dev_unregister -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xa222523c vnic_dev_get_pdev -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xd4d3683d vnic_dev_get_res_count -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xdd97bc54 vnic_dev_register -EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x2f8fea3c be_roce_register_driver +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x29e3a55a cxgbi_ppm_make_ppod_hdr +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x44a891df cxgbi_ppm_ppods_reserve +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x6ad25702 cxgbi_ppm_ppod_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xe5ce4041 cxgb_find_route +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xefb3b3d5 cxgbi_ppm_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xf31f8b84 cxgbi_ppm_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xff3cfac8 cxgb_find_route6 +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x152755b5 vnic_dev_unregister +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x5e8381a2 vnic_dev_get_res +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x98278c85 vnic_dev_get_res_count +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x9b179c9a vnic_dev_get_pdev +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xbd32e319 vnic_dev_register +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xbf96cbf1 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 0x68dd93cb be_roce_unregister_driver -EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0x3899df45 iavf_register_client -EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0xf40b0aa9 iavf_unregister_client -EXPORT_SYMBOL drivers/net/ethernet/marvell/prestera/prestera 0x5b054202 prestera_device_unregister -EXPORT_SYMBOL drivers/net/ethernet/marvell/prestera/prestera 0x95e800e2 prestera_device_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x029f979f mlx4_is_eq_vector_valid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x085487a1 mlx4_gen_slaves_port_mgt_ev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1b70a9aa mlx4_SET_PORT_SCHEDULER -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1e0d8830 mlx4_gen_port_state_change_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1e1bf775 mlx4_ALLOCATE_VPP_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x23b75a14 mlx4_SET_PORT_PRIO2TC -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x27de2712 mlx4_test_interrupt -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x286e60ae mlx4_SET_PORT_general -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2d761042 mlx4_query_diag_counters -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x30577aa7 mlx4_gen_guid_change_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x34196c8a set_phv_bit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4186384f mlx4_SET_MCAST_FLTR -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4bb301b4 get_phv_bit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4db415ba mlx4_put_slave_node_guid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5c462f9d mlx4_release_eq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x60075071 mlx4_get_slave_node_guid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x625e7caf mlx4_SET_PORT_fcs_check -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6a165d5d mlx4_SET_PORT_qpn_calc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x74bd96a1 mlx4_get_module_info -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x758e6ff3 mlx4_is_slave_active -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x78c05758 mlx4_get_slave_port_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x79ceee9f mlx4_is_eq_shared -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7b4e7d04 mlx4_max_tc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7ea6ba58 mlx4_sync_pkey_table +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xc0750e77 be_roce_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xe6c8f6b6 be_roce_register_driver +EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0x8097371e iavf_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0xd67920bf iavf_register_client +EXPORT_SYMBOL drivers/net/ethernet/marvell/prestera/prestera 0x049a6500 prestera_device_unregister +EXPORT_SYMBOL drivers/net/ethernet/marvell/prestera/prestera 0xc28c3aff prestera_device_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x03d8c976 mlx4_SET_VPORT_QOS_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x04b3b370 mlx4_SET_PORT_SCHEDULER +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x094ec272 mlx4_is_eq_shared +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0b2d720a mlx4_get_eqs_per_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1594ff5d mlx4_SET_PORT_fcs_check +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x161583cb set_and_calc_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x18850ea8 mlx4_get_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1890b1a3 mlx4_SET_PORT_VXLAN +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x22503da4 mlx4_get_module_info +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2ed6ad28 mlx4_max_tc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x325ea94e mlx4_get_slave_from_roce_gid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3d69f677 mlx4_SET_PORT_qpn_calc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3f277340 mlx4_SET_PORT_BEACON +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4717e4b3 mlx4_ALLOCATE_VPP_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x55be7601 mlx4_is_eq_vector_valid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x61208d93 mlx4_gen_guid_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6139137a mlx4_test_interrupt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x670a32cf mlx4_get_slave_pkey_gid_tbl_len +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6d107ee2 mlx4_get_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x706789b7 mlx4_SET_PORT_user_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x720fc87a mlx4_assign_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x78f2d8bd set_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x79631b5d mlx4_release_eq 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 0x80cc40ab mlx4_gen_pkey_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x836ef4a0 mlx4_get_cpu_rmap -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x93352e5e mlx4_get_slave_pkey_gid_tbl_len -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x95a436fc mlx4_get_slave_from_roce_gid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x99f81b62 mlx4_eq_get_irq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9d994d44 mlx4_assign_eq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa9384f82 mlx4_SET_PORT_user_mtu -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xad19df8b mlx4_SET_PORT_user_mac -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xba559776 mlx4_SET_VPORT_QOS_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xba582d8c mlx4_SET_PORT_VXLAN -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xca057e5f mlx4_SET_PORT_BEACON -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcb7aac66 set_and_calc_slave_port_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcea99b02 mlx4_get_eqs_per_port -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcef3f714 mlx4_SET_VPORT_QOS_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd099ca02 mlx4_get_is_vlan_offload_disabled -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd2beaa66 mlx4_get_roce_gid_from_slave -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe48011c8 mlx4_test_async -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe6ef7308 mlx4_tunnel_steer_add -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xecc9500c mlx4_get_parav_qkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xffb3c943 mlx4_ALLOCATE_VPP_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x026439ba mlx5_fpga_sbu_conn_create -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x07135860 mlx5_rsc_dump_cmd_create -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x07a4dd5d mlx5_core_alloc_transport_domain -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0e83773a mlx5_get_fdb_sub_ns -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x10e91f37 __tracepoint_mlx5_fs_del_ft -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x11931375 mlx5_eq_update_ci -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x17d3f105 mlx5_get_uars_page -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1822d973 mlx5_debug_qp_remove -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x19b08af1 mlx5_fc_create -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x19cc0c22 mlx5_comp_irq_get_affinity_mask -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1b62246e mlx5_del_flow_rules -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1da323f9 mlx5_modify_header_alloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1e1ea10b mlx5_core_detach_mcg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1e4215c8 mlx5_cmd_exec_cb -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1f084461 mlx5_lag_is_sriov -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x20d5fbaf mlx5_fpga_sbu_conn_sendmsg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x21281d90 mlx5_eq_notifier_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2447280b __SCK__tp_func_mlx5_fs_add_ft -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x25ec55a9 mlx5_rl_add_rate_raw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x266f1610 mlx5_lag_get_roce_netdev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x27ce66d0 mlx5_lag_get_peer_mdev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x29208f0a mlx5_core_modify_cq_moderation -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2b0ff090 mlx5_eswitch_vport_match_metadata_enabled -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2b22a510 mlx5_free_bfreg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2b6e327e __tracepoint_mlx5_fs_del_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2db55b08 mlx5_core_query_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2dc3d5fb mlx5_add_flow_rules -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x31b42a0e mlx5_core_destroy_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x33118cac mlx5_fpga_mem_write -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x331fd113 mlx5_create_flow_group -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x34a5c4fa mlx5_lag_is_master -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x369ba525 __traceiter_mlx5_fs_del_fg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x39086ee2 mlx5_core_attach_mcg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3b9f9e4f mlx5_core_create_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3c5264f1 mlx5_core_query_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3c86bda2 mlx5_packet_reformat_dealloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3ccd8f37 mlx5_lag_get_slave_port -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3cd85e98 mlx5_cmd_init_async_ctx -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3dce6eb1 mlx5_cmd_exec -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3e4a3182 mlx5_destroy_flow_group -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4214e003 mlx5_core_destroy_tis -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x42f813c4 mlx5_eq_create_generic -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x438ffda3 mlx5_fs_remove_rx_underlay_qpn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x445b60d2 mlx5_core_create_tir -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x453480d1 __tracepoint_mlx5_fs_set_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x45a86999 __SCK__tp_func_mlx5_fs_add_fg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x465e28cd mlx5_get_flow_namespace +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x888bea4d mlx4_SET_PORT_PRIO2TC +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x928285ba mlx4_tunnel_steer_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9502e5a1 mlx4_gen_port_state_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9b7fe0e5 mlx4_ALLOCATE_VPP_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9e61806e mlx4_SET_PORT_user_mtu +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9ed3a66e mlx4_put_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9f42772c mlx4_SET_VPORT_QOS_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa455a88a mlx4_is_slave_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa5f83009 mlx4_sync_pkey_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xac59c0f1 mlx4_gen_pkey_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb4a8dfa3 mlx4_get_cpu_rmap +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbfe97487 mlx4_test_async +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc9d80c1a mlx4_get_is_vlan_offload_disabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd2441797 mlx4_SET_MCAST_FLTR +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe279ed6b mlx4_SET_PORT_general +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe6e7adae mlx4_eq_get_irq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe9f605f6 mlx4_get_parav_qkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf383362d mlx4_get_roce_gid_from_slave +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf7c0cd6e mlx4_gen_slaves_port_mgt_ev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfaa8b7f8 mlx4_query_diag_counters +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfda12f4b get_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x015b7c2d mlx5_core_destroy_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x01b696ae mlx5_rl_remove_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x02bab675 mlx5_eq_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x04d5f809 mlx5_core_create_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x05bac182 mlx5_eswitch_get_vport_metadata_for_match +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x07d5c5f8 mlx5_core_create_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0a8e1977 mlx5_core_destroy_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0b718b47 mlx5_mpfs_del_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0be85deb mlx5_lag_is_shared_fdb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0c101d3a mlx5_add_flow_rules +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0c8a07b9 mlx5_core_query_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0f201d5a mlx5_debug_qp_remove +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0f4032bb mlx5_lag_get_slave_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1221a3b0 mlx5_comp_irq_get_affinity_mask +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x18172a63 __tracepoint_mlx5_fs_del_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x19a00729 __SCK__tp_func_mlx5_fs_del_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x19b0d4be mlx5_core_modify_tis +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 0x1f5a6140 mlx5_core_modify_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x208d6d39 mlx5_fpga_mem_read +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x223c6eac mlx5_modify_header_dealloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x23b0895f mlx5_rl_add_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x259276e8 __SCK__tp_func_mlx5_fs_del_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x26cc1758 mlx5_get_flow_namespace +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x29d8c92e mlx5_comp_vectors_count +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2b965cdc mlx5_eq_create_generic +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x30464613 mlx5_lag_is_master +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x333ab0e1 mlx5_eswitch_add_send_to_vport_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x33b6f015 mlx5_core_modify_cq_moderation +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x34b141fb mlx5_core_destroy_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x360bdd1e mlx5_free_bfreg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x375af620 __tracepoint_mlx5_fs_set_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x37da7ec5 mlx5_put_uars_page +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3a785394 mlx5_get_uars_page +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3b623bc5 mlx5_fpga_sbu_conn_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3c43e639 mlx5_cmd_init_async_ctx +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x43b23525 mlx5_rsc_dump_cmd_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x447d377a __SCK__tp_func_mlx5_fs_del_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x48411a77 mlx5_debugfs_root +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x48b4bf75 mlx5_fs_remove_rx_underlay_qpn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x493fd3e4 mlx5_rl_remove_rate_raw EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x49580652 mlx5_create_auto_grouped_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4a2eb5df mlx5_eswitch_unregister_vport_reps -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4f0f818c mlx5_fc_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4a017338 mlx5_eswitch_get_proto_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4a4c2f73 mlx5_rsc_dump_next +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4abbb36d mlx5_packet_reformat_dealloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4addd0d6 mlx5_core_alloc_transport_domain EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x503f3c9d __traceiter_mlx5_fs_add_ft -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x50f78b57 mlx5_notifier_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x53c5dc4e mlx5_qp_debugfs_init -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5537c042 mlx5_core_create_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x536d34fd __SCK__tp_func_mlx5_fs_set_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x54749534 __tracepoint_mlx5_fs_add_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x54b47f99 mlx5_eq_enable EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x55b88c73 mlx5_create_lag_demux_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x55f2d196 __SCK__tp_func_mlx5_fs_del_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x56ba03f8 mlx5_vector2eqn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5acbede8 __traceiter_mlx5_fs_set_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5bbed3d2 mlx5_eq_disable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x56af1330 __tracepoint_mlx5_fw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5afa18cb mlx5_qp_debugfs_cleanup +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5e70ca8d mlx5_lag_query_cong_counters EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x60ae791f __traceiter_mlx5_fs_del_ft 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 0x62dc190a __SCT__tp_func_mlx5_fs_del_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6797ddc1 mlx5_eswitch_add_send_to_vport_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x67984ea1 mlx5_fs_add_rx_underlay_qpn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x68abd5dc __SCK__tp_func_mlx5_fs_set_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6c9224d5 mlx5_notifier_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6cd01dec mlx5_cmd_cleanup_async_ctx -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x71065ea5 __tracepoint_mlx5_fs_del_fg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x718e7f8c mlx5_cmd_exec_polling -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x731d0bb4 mlx5_cmd_destroy_vport_lag -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x73c8e237 mlx5_core_create_rqt -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x73f605a7 mlx5_eq_get_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x780377ed mlx5_core_destroy_rqt -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x79b24e6e mlx5_cmd_free_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7a056515 mlx5_eq_notifier_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7d1e3b3d mlx5_eswitch_get_vport_metadata_for_match -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8172d74d mlx5_alloc_bfreg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x82d8425b __traceiter_mlx5_fs_del_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8492206e mlx5_core_dealloc_pd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x84f7542d mlx5_nic_vport_disable_roce -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x85348e54 mlx5_rl_remove_rate -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x876ae6e7 mlx5_debugfs_root -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x88b88989 mlx5_core_modify_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x890b3e93 mlx5_lag_is_shared_fdb -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8d539fc8 __SCK__tp_func_mlx5_fs_del_ft -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9031f307 mlx5_core_destroy_tir -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x90904f4e __traceiter_mlx5_fs_add_fg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x90e37b2b mlx5_eswitch_get_encap_mode -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x90e52a26 mlx5_put_uars_page -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x91433f5c mlx5_eq_enable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x664bb633 mlx5_eswitch_register_vport_reps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x66705eb9 mlx5_eq_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x69764a2c mlx5_core_roce_gid_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6b03eb23 mlx5_rdma_rn_get_params +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6b2ac584 mlx5_core_dealloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6f56cc30 mlx5_core_create_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7076c56b mlx5_core_query_vendor_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7096853b __traceiter_mlx5_fw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x76efa552 __traceiter_mlx5_fs_del_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x79f86bf1 __tracepoint_mlx5_fs_del_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7a5a0957 mlx5_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7c9eb1fc __traceiter_mlx5_fs_add_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7ef36971 mlx5_core_attach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fcb1ff6 mlx5_lag_get_roce_netdev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fe6ceb1 mlx5_core_alloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8284da5f mlx5_eswitch_get_encap_mode +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x828fdc41 mlx5_cmd_free_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x83f2430a mlx5_vector2eqn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x854eceb3 mlx5_core_query_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x855f1f37 mlx5_fpga_get_sbu_caps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8c86c12b __SCK__tp_func_mlx5_fs_add_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8f0d6012 mlx5_core_dealloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8f3bb9ed mlx5_mpfs_add_mac EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x91443f27 mlx5_create_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9201c3dc mlx5_lag_is_roce -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x941ade82 mlx5_core_query_sq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x945c197a mlx5_modify_header_dealloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x95062036 mlx5_fpga_mem_read +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x91ca098e mlx5_core_create_cq EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96eb2c99 mlx5_fc_id -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x974679e7 mlx5_eswitch_get_vport_metadata_for_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x98f5065e mlx5_eswitch_vport_rep -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x991859e8 mlx5_core_query_vendor_id -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9ab14c81 mlx5_eswitch_get_core_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9c5c7a9c mlx5_query_ib_port_oper +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9c68ab6c mlx5_fc_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9c915d21 mlx5_fpga_mem_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9cf3b18a mlx5_cmd_create_vport_lag 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 0x9dde81b4 mlx5_eswitch_get_proto_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9e6c2185 mlx5_core_create_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9ebc39c8 __tracepoint_mlx5_fs_add_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa1a71565 mlx5_eswitch_uplink_get_proto_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa5aaec82 mlx5_eq_destroy_generic -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa812363f __traceiter_mlx5_fs_del_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa944bfbd mlx5_rl_add_rate -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa9bf1f12 mlx5_rdma_rn_get_params -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaa3f3c2e mlx5_lag_query_cong_counters -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xab2dda24 mlx5_core_destroy_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9da44a8f mlx5_fpga_sbu_conn_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9dc521ea __traceiter_mlx5_fs_del_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa0335f17 mlx5_cmd_exec_polling +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa05df6de mlx5_cmd_destroy_vport_lag +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa735048f mlx5_create_flow_group +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa81290bc mlx5_lag_is_roce +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa93a1a8f mlx5_eswitch_vport_rep +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xabcae22e mlx5_core_create_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xabf25a2d mlx5_eswitch_reg_c1_loopback_enabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xac720c9f __SCK__tp_func_mlx5_fs_add_rule 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 0xad5a0cd5 mlx5_rsc_dump_next EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xad6815cd mlx5_rsc_dump_cmd_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaea14ee4 __tracepoint_mlx5_fs_del_fte 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 0xb49175db mlx5_eswitch_register_vport_reps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb1039da0 __tracepoint_mlx5_fs_add_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb24e16b5 mlx5_lag_get_peer_mdev +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 0xb4e976bb __SCT__tp_func_mlx5_fs_add_ft -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb60d8619 mlx5_cmd_create_vport_lag -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb7233797 mlx5_debug_qp_add -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb86addae mlx5_fpga_get_sbu_caps -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb8f59185 mlx5_rl_remove_rate_raw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb9fda8f4 __tracepoint_mlx5_fs_add_ft -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc045def7 mlx5_rl_is_in_range -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc219abcb mlx5_cmd_alloc_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc2757600 mlx5_core_modify_tis -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc31c8b82 mlx5_eswitch_reg_c1_loopback_enabled -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc3500b97 mlx5_mpfs_del_mac -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc443dbd8 mlx5_core_destroy_psv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc5cc5bd2 mlx5_core_create_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc9448a43 mlx5_core_dealloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb5338b3b mlx5_del_flow_rules +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb7a0e7bb mlx5_core_detach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb7ea3abe mlx5_core_modify_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb971bd06 mlx5_fc_query +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 0xbf4510ee mlx5_core_destroy_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbf581c61 mlx5_rl_is_in_range +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc08ec19c __traceiter_mlx5_fs_set_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc290182b mlx5_core_create_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc2cf450d mlx5_core_destroy_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc58410de mlx5_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc62e99e6 mlx5_qp_debugfs_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc7e3b841 mlx5_eq_disable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc97a64bc mlx5_eq_update_ci +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xca968c39 __SCK__tp_func_mlx5_fs_del_fte EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcad019c3 __SCT__tp_func_mlx5_fs_del_fg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcdcfb507 mlx5_fpga_sbu_conn_destroy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcfb01acb mlx5_core_alloc_pd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd047e924 mlx5_core_roce_gid_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd523519b mlx5_fc_destroy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd812e966 __tracepoint_mlx5_fs_add_fg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd892661c mlx5_core_destroy_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcd9e1e1c mlx5_fs_add_rx_underlay_qpn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd0607b72 mlx5_fpga_sbu_conn_sendmsg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd0ecdc32 __tracepoint_mlx5_fs_add_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd1c593fb mlx5_core_destroy_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd305f8a4 mlx5_debug_qp_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd3928531 mlx5_eswitch_uplink_get_proto_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd5f2ff2a mlx5_lag_is_sriov +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd6dd93cd mlx5_lag_is_active EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd8a12a67 mlx5_destroy_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd90053c2 mlx5_packet_reformat_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd8b0676f mlx5_core_create_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd905e1d8 mlx5_get_fdb_sub_ns 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 0xdccf3815 __tracepoint_mlx5_fs_del_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xddf2fe33 __traceiter_mlx5_fw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdf363e91 __SCK__tp_func_mlx5_fw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xded560bd mlx5_eq_get_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdf398a63 mlx5_eswitch_get_vport_metadata_for_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdf43530d mlx5_packet_reformat_alloc 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 0xe020da20 __SCK__tp_func_mlx5_fs_add_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe1247e00 mlx5_comp_vectors_count -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe296aff6 mlx5_buf_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe0103f53 mlx5_rl_add_rate_raw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe18bc1d3 mlx5_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe1a69e82 __tracepoint_mlx5_fs_del_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe23ec7b9 mlx5_core_modify_sq 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 0xe401e5bf mlx5_qp_debugfs_cleanup -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe5134552 mlx5_core_modify_sq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xecbcde5a __SCK__tp_func_mlx5_fs_del_fg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xee3e7368 mlx5_core_modify_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf1506d18 __SCK__tp_func_mlx5_fs_del_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf1cc9840 mlx5_lag_is_active -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf5b1bb55 __traceiter_mlx5_fs_add_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf9b11259 mlx5_core_query_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfb67693a mlx5_mpfs_add_mac -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfbba551f mlx5_core_create_psv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xff7a942a __tracepoint_mlx5_fw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxfw/mlxfw 0x54a6140b mlxfw_firmware_flash -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x00e34fa4 mlxsw_core_ptp_transmitted +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe4b95c5a mlx5_cmd_exec_cb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe4ea6ff9 mlx5_core_destroy_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe98a0cf7 mlx5_cmd_alloc_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xed6980b9 __SCK__tp_func_mlx5_fs_add_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xed6deece mlx5_eswitch_unregister_vport_reps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xee601f05 mlx5_eswitch_get_core_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf1eea140 mlx5_core_query_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf3bc68fb mlx5_nic_vport_disable_roce +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf6fada9c mlx5_alloc_bfreg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf76dc7fd mlx5_core_query_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf85765f5 mlx5_eq_destroy_generic +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf98f509d mlx5_cmd_cleanup_async_ctx +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfa6737c6 mlx5_buf_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfb4729d9 mlx5_modify_header_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfbd4a3b6 mlx5_query_ib_port_oper +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfd618f22 __SCK__tp_func_mlx5_fw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfdb409fe mlx5_fc_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xffff9d62 mlx5_eswitch_vport_match_metadata_enabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxfw/mlxfw 0x24d7851a mlxfw_firmware_flash 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 0x0a88a404 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 0x0e81c09c mlxsw_afk_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x10053106 mlxsw_core_port_devlink_port_get EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x120a1738 mlxsw_core_port_init EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x15801382 mlxsw_afk_key_info_put EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x18b0ad00 mlxsw_afa_block_append_police @@ -2951,55 +2966,58 @@ EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x1c6605f6 mlxsw_afa_block_append_qos_switch_prio 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 0x20a4cfdd mlxsw_core_trap_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x21daf3af mlxsw_afa_block_append_qos_dsfield EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x23eddc68 mlxsw_core_cpu_port_init EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2c68ced3 mlxsw_core_read_frc_h +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2f09799c mlxsw_core_rx_listener_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2fc4ef21 mlxsw_core_driver_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x30d72838 mlxsw_env_get_module_eeprom_by_page EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x35ba2254 mlxsw_afk_values_add_u32 -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x36100d22 mlxsw_core_rx_listener_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x38185d87 mlxsw_afa_block_append_qos_ecn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x3835eb99 mlxsw_core_ptp_transmitted EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x406b4614 mlxsw_afa_block_append_counter -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4185a985 mlxsw_core_port_eth_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4355c1bb mlxsw_core_skb_receive EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x43a9b87e mlxsw_afa_block_terminate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x454183d4 mlxsw_afa_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x46432be4 mlxsw_core_port_eth_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x46fcc4ef mlxsw_core_rx_listener_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x47041e4e mlxsw_afk_key_info_blocks_count_get EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x484489a4 mlxsw_cmd_exec EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4a6ed376 mlxsw_core_port_fini EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4b0bae55 mlxsw_core_kvd_sizes_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x55cf260a mlxsw_core_driver_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5a099407 mlxsw_afa_block_append_qos_dscp -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5b54d40d mlxsw_core_skb_receive 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 EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x618a30ab mlxsw_afa_block_commit EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x61ea9293 mlxsw_core_event_listener_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x63874d4c mlxsw_core_port_driver_priv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x654e9e5a mlxsw_core_trap_state_set EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x65e16da4 mlxsw_afk_key_info_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x685d5286 mlxsw_core_trap_unregister EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x692ac04e mlxsw_afk_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x6abb81fb mlxsw_core_driver_unregister EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x71e1d813 mlxsw_core_port_clear EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x749556a2 mlxsw_afk_key_info_subset EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x74eb7c9e mlxsw_core_res_valid EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x77768221 mlxsw_core_module_max_width +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x77a52d58 mlxsw_core_trap_unregister EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x77d83398 mlxsw_core_read_frc_l EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7f659d4c mlxsw_afa_block_append_vlan_modify 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 0x85893564 mlxsw_core_trap_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x858c30d0 mlxsw_afa_block_create EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x86a40342 mlxsw_core_res_get EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x87b88710 mlxsw_core_event_listener_unregister EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x8854d198 mlxsw_reg_write -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x8b95e94c mlxsw_afa_block_append_mirror EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x8ba5fa7e mlxsw_core_lag_mapping_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x8fa7178f mlxsw_core_trap_state_set EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x902c3533 mlxsw_core_schedule_dw EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x97035a9c mlxsw_afa_block_append_fid_set EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x97cf0ab9 mlxsw_core_port_is_xm EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x996c5d6d mlxsw_reg_trans_bulk_wait -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x99d81bc4 mlxsw_core_port_devlink_port_get 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 0xa7765e88 mlxsw_reg_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa8236a6b mlxsw_afa_block_append_mirror EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb5e762fa mlxsw_afk_values_add_buf 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 0xb9f797a9 mlxsw_env_module_overheat_counter_get @@ -3009,12 +3027,11 @@ EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbe82d6cc mlxsw_env_get_module_info EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbfb7df3c mlxsw_core_driver_priv EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbfd01f33 mlxsw_core_port_ib_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc2f91ac3 mlxsw_core_bus_device_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc14b9956 mlxsw_env_get_module_eeprom EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc9c2e4cc mlxsw_core_lag_mapping_clear EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xca257489 mlxsw_afa_block_append_fwd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xcb4299f7 mlxsw_core_skb_transmit EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xcbab836f mlxsw_core_fw_rev_minor_subminor_validate -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xcbadd287 mlxsw_core_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xcf6e56b2 mlxsw_core_bus_device_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd1a82f0b mlxsw_core_lag_mapping_get EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd252e62d mlxsw_core_skb_transmit_busy EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd28256cf mlxsw_afa_block_append_allocated_counter @@ -3027,99 +3044,98 @@ EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xde4e211f mlxsw_afa_block_append_l4port EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdeb1dc2e mlxsw_afa_block_first_kvdl_index EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe16986dd mlxsw_afa_block_activity_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xea72f0f8 mlxsw_core_skb_transmit EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xecab212a mlxsw_afa_cookie_lookup -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xed591267 mlxsw_afa_create EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf2ca3bae mlxsw_core_res_query_enabled EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf4909bea mlxsw_core_port_type_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf5b95a13 mlxsw_env_get_module_eeprom EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xff007c25 mlxsw_core_cpu_port_fini -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0x5448bc32 mlxsw_i2c_driver_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0xe3567c22 mlxsw_i2c_driver_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0x4365e0d0 mlxsw_pci_driver_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0x6c77b30f mlxsw_pci_driver_unregister -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x03084c35 ocelot_port_policer_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0781ad10 ocelot_ptp_adjfine -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0ae8ebf0 ocelot_ptp_verify -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0f9d5aa5 ocelot_deinit_port -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x15b36c46 ocelot_get_txtstamp -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1a4eaa88 ocelot_sb_occ_tc_port_bind_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1c95f1d9 ocelot_get_ts_info -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1d3f5c58 ocelot_apply_bridge_fwd_mask -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1ea48942 ocelot_fdb_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x24bef681 ocelot_vlan_del +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0x1feec80d mlxsw_i2c_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0xe925141c mlxsw_i2c_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0xe0851063 mlxsw_pci_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0xe6ec2acf mlxsw_pci_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x01e09a97 ocelot_sb_occ_snapshot +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x09091495 ocelot_mact_learn +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0e748e60 ocelot_init_port +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x134ff1cb ocelot_bridge_stp_state_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1f4076ad ocelot_get_txtstamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x212694ac ocelot_port_lag_join +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x249fb6f7 ocelot_sb_pool_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x25d2c3aa ocelot_xtr_poll_frame +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x273a46c6 ocelot_vcap_filter_del EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x274a0e05 ocelot_port_fdb_do_dump -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x298f29e2 ocelot_devlink_sb_unregister -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2cacdf99 ocelot_port_lag_change -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2fc6ac39 ocelot_sb_occ_snapshot -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x327b385a ocelot_mrp_del_ring_role -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x34306655 ocelot_port_bridge_join -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x378ff314 ocelot_vlan_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3c0f2f5b ocelot_port_txtstamp_request -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x41a815d0 ocelot_mact_learn -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x43e216e6 ocelot_bridge_stp_state_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4eb7c8d7 ocelot_init_timestamp -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x530e7d5f ocelot_init -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5a84121d ocelot_sb_tc_pool_bind_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5b1c2baf ocelot_ptp_gettime64 -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5d19cc1c ocelot_port_bridge_leave -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5edb515f ocelot_drain_cpu_queue -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x60715066 ocelot_deinit -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6887e217 ocelot_port_set_maxlen -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6df70a77 ocelot_sb_port_pool_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7fd621c3 ocelot_deinit_timestamp -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x81eea3b5 ocelot_port_lag_join -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x83e81d9d ocelot_get_sset_count +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2afcffed ocelot_mrp_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2bf7d790 ocelot_ptp_enable +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2cc37b13 ocelot_port_bridge_flags +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3174e124 ocelot_hwstamp_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x325b3adb ocelot_sb_port_pool_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x342ab49a ocelot_apply_bridge_fwd_mask +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x354ab207 ocelot_port_mdb_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x361236ee ocelot_hwstamp_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3d8b38f1 ocelot_vlan_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3f1e3158 ocelot_ptp_adjtime +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x437e9cd5 ocelot_ptp_adjfine +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4dd37c6d ocelot_sb_tc_pool_bind_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x54d31c59 ocelot_port_policer_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x62145a06 ocelot_port_bridge_leave +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x638fd283 ocelot_init +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x640e2e84 ocelot_set_ageing_time +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6ddd1f8e ocelot_get_max_mtu +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6e3d4012 ocelot_mact_forget +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6e97fcf8 ocelot_deinit_timestamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6f099dd4 ocelot_vlan_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7388836c ocelot_deinit +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x78f88da2 ocelot_get_strings +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7a957fef ocelot_init_timestamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7dfdbf9f ocelot_port_set_maxlen +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x81433f85 ocelot_sb_pool_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8a5d510f ocelot_port_bridge_join EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8a85c6a8 ocelot_vcap_block_find_filter_by_id -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8da49255 ocelot_ptp_enable -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x926f48b5 ocelot_can_inject -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x93a37b81 ocelot_port_vlan_filtering -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9a9e8e24 ocelot_sb_occ_max_clear -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9b8822bc ocelot_get_max_mtu -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa11cf4fa ocelot_get_ethtool_stats -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa6610e9a ocelot_devlink_sb_register -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa666d142 ocelot_get_strings -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa72edfab ocelot_port_policer_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa8148563 ocelot_sb_tc_pool_bind_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa8d927eb ocelot_port_bridge_flags -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xae59e3e7 ocelot_init_port -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb0b2ab8b ocelot_ptp_adjtime -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb1b20587 ocelot_sb_occ_port_pool_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb214bd3f ocelot_vcap_filter_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb5a57de8 ocelot_vlan_prepare -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb7f17435 ocelot_hwstamp_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc2b71551 ocelot_fdb_dump -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc4939615 ocelot_port_inject_frame -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc4a8eab3 ocelot_xtr_poll_frame -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc9caa6f7 ocelot_port_mdb_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd2089a6a ocelot_fdb_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd4f3c306 ocelot_ptp_settime64 -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd6786b63 ocelot_sb_port_pool_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xddac74c0 ocelot_vcap_filter_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe0fe3861 ocelot_mrp_add_ring_role -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xed0f9d73 ocelot_port_pre_bridge_flags -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xed600d18 ocelot_sb_pool_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xedb7b31c ocelot_set_ageing_time -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf32dccb2 ocelot_port_lag_leave -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf6529c5b ocelot_port_mdb_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf808b2ca ocelot_mrp_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfafba8ec ocelot_hwstamp_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfc381238 ocelot_mrp_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfdef31eb ocelot_sb_pool_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfe25c1e8 ocelot_mact_forget +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8b82ba88 ocelot_get_ts_info +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8f13a2e0 ocelot_mrp_del_ring_role +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x91ec6dcf ocelot_vlan_prepare +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x92404ad7 ocelot_sb_tc_pool_bind_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x92b32b14 ocelot_ptp_settime64 +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9a4a65ec ocelot_mrp_add_ring_role +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa4cc0d25 ocelot_vcap_filter_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa8002fcd ocelot_devlink_sb_register +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xaa22d5f5 ocelot_devlink_sb_unregister +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xaaac9679 ocelot_fdb_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xac875a19 ocelot_ptp_gettime64 +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb231d5fc ocelot_get_ethtool_stats +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb4438733 ocelot_port_mdb_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb5b46dcd ocelot_port_pre_bridge_flags +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb7c4b169 ocelot_port_txtstamp_request +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbb488a47 ocelot_sb_occ_port_pool_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbbfffefb ocelot_sb_occ_tc_port_bind_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc866a169 ocelot_port_lag_change +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xccd5ff6f ocelot_fdb_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd3950092 ocelot_sb_occ_max_clear +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe6e8bbfd ocelot_port_lag_leave +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe92b63f6 ocelot_can_inject +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe9312391 ocelot_get_sset_count +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xea9afd21 ocelot_sb_port_pool_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xeb784f3a ocelot_port_policer_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xebf5bab8 ocelot_mrp_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xec5a91e9 ocelot_port_vlan_filtering +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xef402e00 ocelot_deinit_port +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf17bd607 ocelot_ptp_verify +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf1eb25eb ocelot_port_inject_frame +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf88d587d ocelot_fdb_dump +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xff9e60d8 ocelot_drain_cpu_queue +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x4c664129 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 0x7711017e qed_get_iscsi_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x848f2dcb qed_get_rdma_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x93a87c89 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 0x99949100 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 0xaf748580 qed_get_fcoe_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xe022627d qed_get_eth_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qede/qede 0x87ebeb91 qede_rdma_register_driver -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qede/qede 0xc47c774e qede_rdma_unregister_driver -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x19a801d7 hdlcdrv_receiver -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x1b6e9adf hdlcdrv_arbitrate -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x37965931 hdlcdrv_unregister -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x80868c0e hdlcdrv_transmitter -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xc40c77ef hdlcdrv_register +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xf89806fc qed_get_eth_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qede/qede 0x4e7e9322 qede_rdma_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qede/qede 0xae4c3585 qede_rdma_register_driver +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x4cb71e55 hdlcdrv_unregister +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x6a6ef343 hdlcdrv_arbitrate +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x7e20281d hdlcdrv_transmitter +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x9d2baad4 hdlcdrv_register +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xa7c1c17b hdlcdrv_receiver EXPORT_SYMBOL drivers/net/mdio 0x3e17f466 mdio_set_flag EXPORT_SYMBOL drivers/net/mdio 0x424a69a2 mdio45_ethtool_ksettings_get_npage EXPORT_SYMBOL drivers/net/mdio 0x60443957 mdio45_probe @@ -3127,831 +3143,831 @@ 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 0x2d08a967 free_mdio_bitbang -EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0x59de688e mdiobb_read -EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0x7affc784 mdiobb_write -EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0xf5e75854 alloc_mdio_bitbang -EXPORT_SYMBOL drivers/net/mdio/mdio-cavium 0x1c6e73a1 cavium_mdiobus_write -EXPORT_SYMBOL drivers/net/mdio/mdio-cavium 0xd01059b2 cavium_mdiobus_read -EXPORT_SYMBOL drivers/net/mii 0x0aa36ac6 mii_check_link -EXPORT_SYMBOL drivers/net/mii 0x1fce7ad5 mii_ethtool_sset -EXPORT_SYMBOL drivers/net/mii 0x22a15489 mii_nway_restart -EXPORT_SYMBOL drivers/net/mii 0x3649bff9 mii_check_gmii_support -EXPORT_SYMBOL drivers/net/mii 0x47d1e87e mii_ethtool_set_link_ksettings -EXPORT_SYMBOL drivers/net/mii 0x48448ab7 mii_ethtool_get_link_ksettings -EXPORT_SYMBOL drivers/net/mii 0x4e9a425a mii_link_ok -EXPORT_SYMBOL drivers/net/mii 0x7a232178 generic_mii_ioctl -EXPORT_SYMBOL drivers/net/mii 0x9cc69322 mii_ethtool_gset -EXPORT_SYMBOL drivers/net/mii 0xf32d8edd mii_check_media -EXPORT_SYMBOL drivers/net/pcs/pcs-lynx 0x2c4020b6 lynx_pcs_destroy -EXPORT_SYMBOL drivers/net/pcs/pcs-lynx 0x8b132688 lynx_pcs_create -EXPORT_SYMBOL drivers/net/phy/bcm-phy-lib 0x6fbbf310 bcm54xx_auxctl_write -EXPORT_SYMBOL drivers/net/ppp/pppox 0x4f13b285 register_pppox_proto -EXPORT_SYMBOL drivers/net/ppp/pppox 0x87f12200 pppox_ioctl -EXPORT_SYMBOL drivers/net/ppp/pppox 0xbee5c51f pppox_unbind_sock -EXPORT_SYMBOL drivers/net/ppp/pppox 0xc0d09622 pppox_compat_ioctl +EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0x1155af58 free_mdio_bitbang +EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0x28086b0b mdiobb_write +EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0x7d83b520 alloc_mdio_bitbang +EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0xe793cd70 mdiobb_read +EXPORT_SYMBOL drivers/net/mdio/mdio-cavium 0x14e9ff41 cavium_mdiobus_write +EXPORT_SYMBOL drivers/net/mdio/mdio-cavium 0xd117ff2c cavium_mdiobus_read +EXPORT_SYMBOL drivers/net/mii 0x0b6dbafd mii_ethtool_get_link_ksettings +EXPORT_SYMBOL drivers/net/mii 0x0c891878 mii_check_gmii_support +EXPORT_SYMBOL drivers/net/mii 0x3c5dc148 generic_mii_ioctl +EXPORT_SYMBOL drivers/net/mii 0x5c554727 mii_check_media +EXPORT_SYMBOL drivers/net/mii 0x6cec3ba2 mii_ethtool_gset +EXPORT_SYMBOL drivers/net/mii 0x76ff965c mii_nway_restart +EXPORT_SYMBOL drivers/net/mii 0x78db58ec mii_link_ok +EXPORT_SYMBOL drivers/net/mii 0xbf32887a mii_ethtool_set_link_ksettings +EXPORT_SYMBOL drivers/net/mii 0xcb1f76f0 mii_ethtool_sset +EXPORT_SYMBOL drivers/net/mii 0xcf9182a7 mii_check_link +EXPORT_SYMBOL drivers/net/pcs/pcs-lynx 0x393b7dbd lynx_pcs_destroy +EXPORT_SYMBOL drivers/net/pcs/pcs-lynx 0x6f109923 lynx_pcs_create +EXPORT_SYMBOL drivers/net/phy/bcm-phy-lib 0xe6e05e34 bcm54xx_auxctl_write +EXPORT_SYMBOL drivers/net/ppp/pppox 0x1107fa2a pppox_ioctl +EXPORT_SYMBOL drivers/net/ppp/pppox 0x810a36a7 register_pppox_proto +EXPORT_SYMBOL drivers/net/ppp/pppox 0xc4186921 pppox_unbind_sock +EXPORT_SYMBOL drivers/net/ppp/pppox 0xd6736463 pppox_compat_ioctl EXPORT_SYMBOL drivers/net/ppp/pppox 0xe0ff7a18 unregister_pppox_proto -EXPORT_SYMBOL drivers/net/sungem_phy 0xdb305de2 sungem_phy_probe -EXPORT_SYMBOL drivers/net/team/team 0x1cb553c5 team_modeop_port_enter -EXPORT_SYMBOL drivers/net/team/team 0x38b9e8ff team_options_unregister -EXPORT_SYMBOL drivers/net/team/team 0x64d8c2db team_option_inst_set_change -EXPORT_SYMBOL drivers/net/team/team 0xb59b779c team_options_register -EXPORT_SYMBOL drivers/net/team/team 0xb92acb6a team_modeop_port_change_dev_addr -EXPORT_SYMBOL drivers/net/team/team 0xd47d2764 team_mode_register -EXPORT_SYMBOL drivers/net/team/team 0xdec0999c team_mode_unregister -EXPORT_SYMBOL drivers/net/team/team 0xe762678e team_options_change_check -EXPORT_SYMBOL drivers/net/usb/usbnet 0x00802cd9 usbnet_device_suggests_idle -EXPORT_SYMBOL drivers/net/usb/usbnet 0x838bff1a usbnet_link_change -EXPORT_SYMBOL drivers/net/usb/usbnet 0x9e576a33 usbnet_manage_power -EXPORT_SYMBOL drivers/net/wan/hdlc 0x0590d08c hdlc_close -EXPORT_SYMBOL drivers/net/wan/hdlc 0x0e0f3049 alloc_hdlcdev -EXPORT_SYMBOL drivers/net/wan/hdlc 0x2948e151 hdlc_start_xmit -EXPORT_SYMBOL drivers/net/wan/hdlc 0x54c844ff register_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0x6ebdbd6a hdlc_ioctl -EXPORT_SYMBOL drivers/net/wan/hdlc 0x7285a37d unregister_hdlc_device -EXPORT_SYMBOL drivers/net/wan/hdlc 0xb2507c4a attach_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0xba129b3b unregister_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0xe18a58be hdlc_open -EXPORT_SYMBOL drivers/net/wan/hdlc 0xf8ad4667 detach_hdlc_protocol -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x00bee85f ath_hw_setbssidmask +EXPORT_SYMBOL drivers/net/sungem_phy 0x8c6b0f9e sungem_phy_probe +EXPORT_SYMBOL drivers/net/team/team 0x12d06584 team_options_change_check +EXPORT_SYMBOL drivers/net/team/team 0x1d44b119 team_options_register +EXPORT_SYMBOL drivers/net/team/team 0x4f2002c7 team_modeop_port_change_dev_addr +EXPORT_SYMBOL drivers/net/team/team 0x68ae6cdf team_option_inst_set_change +EXPORT_SYMBOL drivers/net/team/team 0x6b021c91 team_mode_register +EXPORT_SYMBOL drivers/net/team/team 0x7459940f team_mode_unregister +EXPORT_SYMBOL drivers/net/team/team 0x8c898339 team_modeop_port_enter +EXPORT_SYMBOL drivers/net/team/team 0xf649c2e3 team_options_unregister +EXPORT_SYMBOL drivers/net/usb/usbnet 0x0ad40494 usbnet_manage_power +EXPORT_SYMBOL drivers/net/usb/usbnet 0x18c2fc0c usbnet_device_suggests_idle +EXPORT_SYMBOL drivers/net/usb/usbnet 0xb959b465 usbnet_link_change +EXPORT_SYMBOL drivers/net/wan/hdlc 0x04077343 unregister_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x1914ec95 detach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x25a5352e hdlc_close +EXPORT_SYMBOL drivers/net/wan/hdlc 0x4f5701f4 hdlc_ioctl +EXPORT_SYMBOL drivers/net/wan/hdlc 0x771efe7d unregister_hdlc_device +EXPORT_SYMBOL drivers/net/wan/hdlc 0x8c697398 register_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x9fcd0309 attach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xa4c6d482 hdlc_start_xmit +EXPORT_SYMBOL drivers/net/wan/hdlc 0xa61285d0 hdlc_open +EXPORT_SYMBOL drivers/net/wan/hdlc 0xd073d3b5 alloc_hdlcdev EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x108b188f ath_is_49ghz_allowed -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x40d8e712 ath_hw_keysetmac EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x4571aea8 ath_is_world_regd -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x4e53c1ea ath_key_delete -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x620f1b15 ath_rxbuf_alloc -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x672a7c0d ath_printk -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x7b4ae9ce dfs_pattern_detector_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x84d67ce4 ath_is_mybeacon -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x96903a39 ath_hw_cycle_counters_update +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x4b7a34eb dfs_pattern_detector_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x6629bee0 ath_is_mybeacon +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x682c988f ath_hw_setbssidmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x6dfe81fe ath_hw_keyreset +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x79406677 ath_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x7fcb38d8 ath_reg_notifier_apply +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x810dba67 ath_rxbuf_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x92dbef53 ath_hw_keysetmac +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x95c7dd7f ath_regd_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x9d7bbbf6 ath_key_delete EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xa18f224e ath_regd_find_country_by_name -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xa4231722 ath_hw_keyreset +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xacc1f58d ath_hw_get_listen_time EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xb6588ba6 ath_bus_type_strings -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xb78c6447 ath_reg_notifier_apply -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xd28140e6 ath_regd_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xdfb751a7 ath_key_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xc59d5223 ath_hw_cycle_counters_update +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xf8d87f1d ath_key_config EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xf98605d5 ath_regd_get_band_ctl -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xffdefabe ath_hw_get_listen_time -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x012f43e5 ath10k_core_unregister EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x015e5db2 ath10k_debug_mask -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x049ebc1c ath10k_coredump_get_mem_layout -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x05ad2319 ath10k_ce_rx_update_write_idx -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x070134a7 ath10k_coredump_new -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x07db6fa3 ath10k_core_napi_sync_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x082738c4 ath10k_ce_completed_send_next_nolock -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0d6cbdb8 ath10k_htt_rx_pktlog_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x22e5cce4 ath10k_ce_alloc_rri -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x252e0be0 ath10k_ce_alloc_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2a356c5b ath10k_core_fetch_board_file -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2c27a3a6 ath10k_ce_init_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2d56018e __ath10k_ce_send_revert -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2d5cb1ce ath10k_htc_process_trailer -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2ef81f75 ath10k_core_create -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3058406f ath10k_core_register -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x31742d07 ath10k_mac_tx_push_pending -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x34cabd5a ath10k_ce_disable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3e0507c9 ath10k_print_driver_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4168ae40 ath10k_core_destroy -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x47863238 ath10k_bmi_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4a4e7446 ath10k_bmi_read_memory -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4c33dd55 ath10k_ce_dump_registers -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5104efb6 ath10k_core_free_board_files -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x58c1950c ath10k_core_check_dt -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5ceb917c ath10k_core_start_recovery -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6163e3f9 ath10k_ce_per_engine_service_any -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x693300f4 ath10k_ce_cancel_send_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6cb1eb74 ath10k_ce_revoke_recv_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x71a19ec6 ath10k_htt_t2h_msg_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x75c79391 ath10k_core_stop -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x78a2495a __ath10k_ce_rx_num_free_bufs -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7e04e7ca ath10k_ce_free_rri -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7f8ce581 ath10k_core_napi_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x802524ab ath10k_ce_enable_interrupt -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x87582fd4 ath10k_htc_notify_tx_completion -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x87fb4eee ath10k_htt_txrx_compl_task -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8ba4564e ath10k_ce_free_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9a66de57 ath10k_ce_deinit_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa08177f8 ath10k_htc_rx_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa77e1067 ath10k_ce_completed_recv_next_nolock -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa8888a7c ath10k_ce_num_free_src_entries -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa8d08d11 ath10k_ce_send_nolock -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb380022a ath10k_htt_rx_hl_indication -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb78a3c9f ath10k_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb806b14d ath10k_htt_hif_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc0bf077f ath10k_ce_per_engine_service -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc14b236f ath10k_warn -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc8f0d2b2 __tracepoint_ath10k_log_dbg -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xcb8c8192 ath10k_core_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xdd7ba217 ath10k_ce_send -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xded031bf ath10k_ce_disable_interrupt -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe728bad5 ath10k_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xecab1ab2 ath10k_ce_completed_recv_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf1de3f22 ath10k_ce_rx_post_buf -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf3bbba7c ath10k_htc_tx_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf6ade83c ath10k_ce_enable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf95f0b4b ath10k_ce_completed_send_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x175034ab ath11k_ce_cleanup_pipes -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x19fe6cc7 ath11k_ce_get_attr_flags -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x1e05b540 ath11k_qmi_deinit_service -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x25ece10d ath11k_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x2abc864d ath11k_core_alloc -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x39fb5054 ath11k_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x3b166d32 ath11k_warn -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x59d96f3c ath11k_ce_rx_post_buf -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x5b1b2ace ath11k_core_resume -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x60811853 ath11k_ce_per_engine_service -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x7f2308b2 ath11k_core_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x86d26b72 ath11k_core_pre_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x88c6c8e4 ath11k_hal_srng_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x92785dae ath11k_core_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x15348da0 ath10k_htt_hif_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1ad25dd0 ath10k_coredump_get_mem_layout +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1e7c4be6 ath10k_ce_disable_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2c1c4cb1 __ath10k_ce_send_revert +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2e2d20b2 ath10k_htc_notify_tx_completion +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x32291cad ath10k_ce_per_engine_service +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3316d226 ath10k_htt_t2h_msg_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x33282f43 ath10k_ce_cancel_send_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x34f3c6f8 ath10k_ce_enable_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x36dafae6 ath10k_htc_process_trailer +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x371dade9 ath10k_core_register +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x38ea1425 ath10k_ce_free_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4297753c __tracepoint_ath10k_log_dbg +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x43f4e785 ath10k_ce_deinit_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4e73391f ath10k_ce_completed_recv_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5dbe2f5a ath10k_htc_rx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5e078177 ath10k_mac_tx_push_pending +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5fcfc44f ath10k_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6262d344 ath10k_ce_free_rri +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x67abce10 ath10k_ce_dump_registers +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x69194c6a ath10k_core_free_board_files +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6f1a066c ath10k_core_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7390b195 ath10k_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x828b3eda ath10k_ce_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x84f87257 ath10k_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x87a6b07a ath10k_ce_alloc_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x87b62a31 ath10k_core_start_recovery +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8b9abc91 ath10k_core_check_dt +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x98162fb2 ath10k_ce_num_free_src_entries +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9907f4b9 ath10k_core_unregister +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9b9ee87a ath10k_print_driver_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa6898e7a ath10k_core_napi_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa7b7453c ath10k_ce_init_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xabec2842 ath10k_ce_per_engine_service_any +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xaf96d96c ath10k_bmi_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xafd7325f ath10k_ce_completed_send_next_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb04dfe66 ath10k_coredump_new +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb0539022 ath10k_ce_completed_recv_next_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb37db22d ath10k_ce_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb66ad494 ath10k_ce_send_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xba35233b ath10k_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xbd3c341a ath10k_htt_txrx_compl_task +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc446def2 ath10k_core_fetch_board_file +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc569ecad ath10k_ce_send +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc893d41a ath10k_ce_rx_update_write_idx +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xca45435c ath10k_ce_alloc_rri +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xca77b3ea ath10k_core_napi_sync_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd8c5c8b0 ath10k_ce_completed_send_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xda5384ba ath10k_htt_rx_hl_indication +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xda8224b4 ath10k_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xdcf55904 ath10k_ce_revoke_recv_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xdeb95df2 ath10k_core_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xebb98dbd __ath10k_ce_rx_num_free_bufs +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xee38fda9 ath10k_htt_rx_pktlog_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf8bab29b ath10k_htc_tx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xfcca39f9 ath10k_bmi_read_memory +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xffcd997f ath10k_ce_rx_post_buf +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x07d2927f ath11k_core_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x10252e68 ath11k_dp_service_srng +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x141253b2 ath11k_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x1fbe3a83 ath11k_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x58891089 ath11k_debugfs_soc_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x5ac5e7b7 ath11k_ce_free_pipes +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x78ef5847 ath11k_hal_srng_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x88577204 ath11k_core_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x89237faa ath11k_ce_get_shadow_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x96d8c836 ath11k_core_init EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x9c51bcc4 ath11k_debug_mask -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xa155acbf ath11k_ce_get_shadow_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xbb637e62 ath11k_debugfs_soc_destroy -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xd12453a2 ath11k_core_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xe48891c8 ath11k_ce_free_pipes -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xe94b52e5 ath11k_core_suspend -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xe95d9284 ath11k_dp_service_srng +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x9ceec933 ath11k_ce_alloc_pipes +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x9da1accd ath11k_ce_cleanup_pipes +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x9e18edb7 ath11k_ce_get_attr_flags +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x9fc6b4a1 ath11k_qmi_deinit_service +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xa287b2ab ath11k_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xa4deaf96 ath11k_hal_srng_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xa971f6f8 ath11k_core_suspend +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xb7a3c05b ath11k_core_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xc6ccd5b2 ath11k_core_pre_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xd67c8f13 ath11k_core_resume +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xdc20c1d5 ath11k_ce_per_engine_service EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xf0197188 ath11k_cold_boot_cal -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xf834038f ath11k_ce_alloc_pipes -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xff29362e ath11k_hal_srng_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x0002b115 ath6kl_cfg80211_suspend -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x02c4194b ath6kl_core_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xff3d4791 ath11k_ce_rx_post_buf EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x1354043d ath6kl_warn -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x17709fcb ath6kl_core_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x27e2cbd3 ath6kl_core_rx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x3058a908 ath6kl_core_cleanup -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x30dcbbb3 ath6kl_stop_txrx +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x24bca6ce ath6kl_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x25347276 ath6kl_cfg80211_resume +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x34b83d77 ath6kl_core_cleanup EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x3502feef ath6kl_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x5c6a90af ath6kl_cfg80211_resume +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x46a12ff0 ath6kl_read_tgt_stats +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x54e89e77 ath6kl_core_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x67077c31 ath6kl_hif_intr_bh_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x72a777fe 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 0xb67d5907 ath6kl_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xab5bf5e8 ath6kl_core_init EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xb881b1a9 ath6kl_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xb9811f9a ath6kl_cfg80211_suspend EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xb9a689dd ath6kl_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xc84ef3ad ath6kl_core_destroy -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xcafbb417 ath6kl_hif_intr_bh_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xdcc578c1 ath6kl_read_tgt_stats -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x102e00a6 ath9k_cmn_debug_modal_eeprom -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x113e29df ath9k_cmn_rx_accept -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x165775a2 ath9k_cmn_rx_skb_postprocess -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x178cd72d ath9k_cmn_debug_phy_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x18436a95 ath9k_cmn_debug_recv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x1ec37141 ath9k_cmn_process_rate -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x371f1abb ath9k_cmn_spectral_scan_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x49c83643 ath9k_cmn_get_channel -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x4aa4aa1c ath_cmn_process_fft -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x51e4841a ath9k_cmn_init_crypto -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x54060228 ath9k_cmn_beacon_config_ap -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x5fa7a91a ath9k_cmn_spectral_deinit_debug -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x69663405 ath9k_cmn_beacon_config_sta -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x8be68de3 ath9k_cmn_process_rssi -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x900320b1 ath9k_cmn_reload_chainmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xcfa3f327 ath6kl_core_rx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xe2ce4662 ath6kl_stop_txrx +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x01abd94d ath9k_cmn_rx_skb_postprocess +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x041cff66 ath9k_cmn_debug_phy_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x087bfa24 ath9k_cmn_beacon_config_ap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x291d8b13 ath9k_cmn_init_channels_rates +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x359e684d ath9k_cmn_rx_accept +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x5f90a6c5 ath9k_cmn_get_hw_crypto_keytype +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x66a9a7f9 ath9k_cmn_reload_chainmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x81b668da ath9k_cmn_init_crypto +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x846cef65 ath9k_cmn_beacon_config_sta +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x9a283d4f ath9k_cmn_debug_recv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x9bebce95 ath9k_cmn_beacon_config_adhoc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x9f8d03d9 ath9k_cmn_spectral_init_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xa636eeec ath9k_cmn_debug_base_eeprom EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb76fccc7 ath9k_cmn_debug_stat_rx -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xc12d8528 ath9k_cmn_spectral_scan_trigger -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xc3ff9dc0 ath9k_cmn_get_hw_crypto_keytype -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xcac027a9 ath9k_cmn_update_txpow +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb8a709d0 ath9k_cmn_update_txpow +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xba278a9c ath9k_cmn_spectral_scan_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xbac1b9f5 ath9k_cmn_debug_modal_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xc4a1911d ath9k_cmn_get_channel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xcecfcc52 ath9k_cmn_process_rssi EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd2981357 ath9k_cmn_count_streams -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd6da2f82 ath9k_cmn_init_channels_rates -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xde593a51 ath9k_cmn_spectral_init_debug -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xe5dd5b4a ath9k_cmn_setup_ht_cap -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf20364eb ath9k_cmn_beacon_config_adhoc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xfc6b9a8c ath9k_cmn_debug_base_eeprom -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x02111296 ar9003_hw_bb_watchdog_dbg_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x04454158 ath9k_hw_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0563483e ath9k_hw_beaconinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x05a14d4f ar9003_is_paprd_enabled -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0662aaba ath9k_hw_puttxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0b1ff39c ath9k_hw_btcoex_set_concur_txprio -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0d9e14c0 ath9k_hw_updatetxtriglevel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xdb54999b ath9k_cmn_setup_ht_cap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xe5ea2e0c ath_cmn_process_fft +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xee9b14a7 ath9k_cmn_spectral_scan_trigger +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf1ff2051 ath9k_cmn_process_rate +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf36aca6a ath9k_cmn_spectral_deinit_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x01308099 ath_gen_timer_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x05ab689f ath9k_hw_reset_calvalid +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x087d065b ar9003_mci_set_bt_version EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0f77dafc ath9k_hw_get_tsf_offset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x118787e2 ath9k_hw_wow_wakeup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x12c61d23 ath9k_hw_abort_tx_dma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x14473d98 ath9k_hw_wow_apply_pattern -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x144b3250 ath9k_hw_btcoex_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x187f15cf ath9k_hw_set_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1ce9a4a5 ath9k_hw_setup_statusring -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1fead748 ath9k_hw_reset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2164161c ath9k_hw_phy_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x27e6ca6f ath9k_hw_set_tx_filter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x28a21406 ath9k_hw_btcoex_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2af59448 ath9k_hw_intrpend -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3499f0a3 ath9k_hw_gettxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3678412f ath9k_hw_gpio_request_out -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x37648bbb ath9k_hw_putrxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3e299686 ath9k_hw_btcoex_init_mci -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3e738de5 ath9k_hw_write_associd -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x408f2cf2 ath9k_hw_setrxabort -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4128a59a ath_gen_timer_isr -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x414f6fc1 ath9k_hw_btcoex_set_weight -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x41e7d274 ath9k_hw_setuprxdesc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4b01e329 ar9003_paprd_is_done -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4b20e90f ath9k_hw_setrxfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4e839601 ath9k_hw_btcoex_init_scheme -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x527faafe ath9k_hw_releasetxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x534acf06 ath9k_hw_setopmode -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x57d9b47e ar9003_hw_bb_watchdog_check -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x59ffdbed ath9k_hw_btcoex_init_3wire -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5c24bd02 ar9003_paprd_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5cd4870a ath9k_hw_getnf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5d1e3795 ath9k_hw_getchan_noise -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5d59beef ath_gen_timer_alloc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5fbffaac ath9k_hw_gettsf64 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5fc92f29 ar9003_paprd_create_curve -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x629a91f0 ath9k_hw_gpio_free -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x63831c88 ath9k_hw_resume_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x649a6392 ath9k_hw_rxprocdesc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x665ec481 ath9k_hw_numtxpending -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7311682b ath9k_hw_loadnf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7353457c ath9k_hw_wait -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x736c4296 ath9k_hw_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x75e30d9f ar9003_hw_disable_phy_restart -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x784df341 ath9k_hw_gpio_get -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7a174339 ath9k_hw_btcoex_init_2wire -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7b94b720 ath9k_hw_set_tsfadjust -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7c450add ath9k_hw_gettsf32 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7d4d766b ath9k_hw_wow_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x843a52ac ar9003_mci_get_next_gpm_offset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x87d5df6e ath9k_hw_reset_calvalid -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x89445fb7 ar9003_mci_send_wlan_channels -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8966e997 ath9k_hw_gpio_request_in -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8d1e0265 ath9k_hw_name -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x91dbe347 ath9k_hw_setantenna -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x93820f45 ath9k_hw_startpcureceive -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x939cebbc ath9k_hw_init_btcoex_hw -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x965c9fa6 ath9k_hw_get_txq_props -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x974a7912 ath9k_hw_process_rxdesc_edma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x97b071ce ath9k_hw_setmcastfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9805ee77 ath9k_hw_settsf64 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x98930d1e ar9003_mci_set_bt_version -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9ad6fded ath9k_hw_disable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9c6867ea ath9k_hw_kill_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9d58d1ac ath9k_hw_btcoex_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9f5276ca ath9k_hw_btcoex_bt_stomp -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa61f7491 ath_gen_timer_free -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa62fb0f6 ath9k_hw_set_txq_props -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa9859960 ar9003_mci_cleanup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaaf12c98 ath9k_hw_set_sta_beacon_timers -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xae141bdb ath9k_hw_set_rx_bufsize -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaffb9614 ath9k_hw_init_global_settings -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb0da4e8e ath9k_hw_abortpcurecv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb1c1993b ar9003_mci_state -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb463e1ee ath9k_hw_stop_dma_queue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb6ab2097 ath9k_hw_enable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbcb7faf4 ath9k_hw_addrxbuf_edma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbe41926e ath9k_hw_bstuck_nfcal -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc1ae9f08 ar9003_paprd_setup_gain_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc3d78ce3 ath9k_hw_getrxfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc8ad1500 ath9k_hw_computetxtime -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcc00cc59 ath9k_hw_disable_mib_counters -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xce9672b0 ath9k_hw_reset_tsf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcf4822dc ath9k_hw_set_txpowerlimit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcf65bb97 ath9k_hw_set_gpio -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd2669954 ath9k_hw_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd8bc839a ar9003_paprd_populate_single_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdd1203e6 ath9k_hw_setpower -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe235432c ar9003_mci_setup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe3de3ff0 ar9003_paprd_init_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe403b3f3 ar9003_mci_get_interrupt -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe5928893 ath9k_hw_beaconq_setup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe661591e ath9k_hw_check_alive -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe7a4330a ath9k_hw_gen_timer_stop -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xeb8bbb2e ath9k_hw_check_nav -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xebbb061c ar9003_get_pll_sqsum_dvc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xee69e890 ath9k_hw_stopdmarecv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf2416968 ath9k_hw_gen_timer_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf520b035 ath9k_hw_setuptxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf981c40c ath9k_hw_ani_monitor -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf9a134e1 ar9003_mci_send_message -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfae5bb46 ath9k_hw_txstart -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfc54fff5 ath9k_hw_resettxqueue -EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x23b0a137 stop_atmel_card -EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x4e4ae6dc init_atmel_card -EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0xac912291 atmel_open -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x07aa3099 brcmu_pktq_pdeq_tail +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1069f803 ar9003_paprd_populate_single_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x11052d99 ath9k_hw_btcoex_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x125f37b9 ar9003_mci_send_message +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x183e3717 ath9k_hw_puttxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1a659623 ath9k_hw_beaconinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1ccc1585 ath9k_hw_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1d007ba4 ath9k_hw_btcoex_init_3wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x21dbd5dd ath9k_hw_check_nav +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x23f04f2f ath9k_hw_resume_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2644bf85 ath9k_hw_settsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2aaa0ddd ath9k_hw_getrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2d0a9805 ath9k_hw_setrxabort +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2e6a3f99 ath9k_hw_setuprxdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3060fe12 ath9k_hw_init_btcoex_hw +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x30e3e7b3 ath9k_hw_reset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x316e1739 ar9003_hw_disable_phy_restart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x31a80d94 ath9k_hw_getnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x372afcd1 ar9003_mci_get_next_gpm_offset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x386fdfcd ath9k_hw_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3a756cd6 ath9k_hw_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3e71d61c ath9k_hw_beaconq_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x42a4718e ath9k_hw_gettxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x42b1c87b ath9k_hw_stop_dma_queue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x430db68f ath9k_hw_set_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x48d4aa9e ath9k_hw_updatetxtriglevel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4e2458f8 ar9003_get_pll_sqsum_dvc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4e3e86d1 ar9003_paprd_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4f38c546 ath9k_hw_btcoex_set_concur_txprio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4fc6fc8b ar9003_paprd_setup_gain_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x50c53292 ath9k_hw_set_gpio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5256223d ath9k_hw_set_txpowerlimit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x52c188a0 ath9k_hw_set_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x593cac8c ath9k_hw_btcoex_set_weight +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5aa2060c ar9003_is_paprd_enabled +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5eff6fa0 ath9k_hw_txstart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x619eb305 ath9k_hw_wow_apply_pattern +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x634a5345 ath9k_hw_stopdmarecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x65c532b3 ath9k_hw_loadnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x66bef9f3 ath9k_hw_wait +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x68d10f3d ath9k_hw_gettsf32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6ab1f878 ath9k_hw_abort_tx_dma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6ad729ac ath9k_hw_bstuck_nfcal +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6dcd0ed5 ar9003_mci_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x700e2240 ath9k_hw_btcoex_init_mci +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x74eabeaf ar9003_mci_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x79ddb9f0 ath9k_hw_get_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7b4bc6c2 ath9k_hw_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7bdc4dec ar9003_mci_send_wlan_channels +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7bfee190 ath9k_hw_gen_timer_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7d1e4df7 ath9k_hw_process_rxdesc_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7d32a55d ath9k_hw_gen_timer_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7d6e4dce ath9k_hw_setopmode +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x81ae5a20 ath9k_hw_numtxpending +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x821226e5 ar9003_hw_bb_watchdog_dbg_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x83c38c6b ar9003_mci_get_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8a366cbb ath9k_hw_abortpcurecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8b4020b8 ath9k_hw_wow_wakeup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x90b5a4f8 ar9003_hw_bb_watchdog_check +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x93555df6 ath9k_hw_setpower +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x949b98f9 ath9k_hw_gettsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x95c02380 ar9003_paprd_init_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9837d082 ar9003_paprd_create_curve +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9890483e ath9k_hw_setuptxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x99e6f094 ath9k_hw_init_global_settings +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9b95bd3d ar9003_mci_state +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9e5dfbeb ath9k_hw_gpio_request_out +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa0d8b98a ath_gen_timer_isr +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa421627b ath9k_hw_btcoex_init_scheme +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa7ec7f48 ath9k_hw_getchan_noise +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xad4a3b36 ath_gen_timer_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xadc0ce57 ath9k_hw_gpio_get +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaf07a724 ath9k_hw_addrxbuf_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb0d5d077 ath9k_hw_resettxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb436ec90 ath9k_hw_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb442f586 ath9k_hw_wow_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb46ee9da ath9k_hw_intrpend +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbadb9266 ath9k_hw_releasetxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbd398bac ath9k_hw_set_sta_beacon_timers +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbd8e90af ath9k_hw_kill_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc3a1e1e8 ath9k_hw_computetxtime +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc4bdbee3 ath9k_hw_setrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc4e7d858 ath9k_hw_btcoex_bt_stomp +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcad8c04b ath9k_hw_check_alive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcda29a1c ar9003_paprd_is_done +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd01e16f8 ath9k_hw_btcoex_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd29c115a ath9k_hw_gpio_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd4558666 ath9k_hw_ani_monitor +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd643e813 ath9k_hw_btcoex_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd81c9d78 ath9k_hw_setantenna +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdd0e6977 ath9k_hw_setmcastfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdd2fd21a ath9k_hw_putrxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe83d0a4c ath9k_hw_phy_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe94c6395 ath9k_hw_set_tsfadjust +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xeaa03683 ath9k_hw_rxprocdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf0b93b26 ath9k_hw_gpio_request_in +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf1824c50 ath9k_hw_startpcureceive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf28215e6 ath9k_hw_set_tx_filter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf3244c5f ath9k_hw_set_rx_bufsize +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf4042683 ath9k_hw_disable_mib_counters +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf43f643b ath9k_hw_name +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf4feb435 ath9k_hw_write_associd +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfa5bb7d0 ath9k_hw_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfdbdd82a ath9k_hw_setup_statusring +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfec6657b ath9k_hw_btcoex_init_2wire +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x0f08fcda stop_atmel_card +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0xba03d553 atmel_open +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0xc5e8ae47 init_atmel_card +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x0129535a brcmu_pktq_mlen +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x11058632 brcmu_pktq_init +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x14d16ca8 brcmu_pktq_peek_tail +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x18874247 brcmu_pktq_pdeq_match EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x1906648e brcmu_boardrev_str -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x3f39aaf4 brcmu_pktq_peek_tail -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x543ff143 brcmu_pktq_init -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x5bb38967 brcmu_pkt_buf_free_skb -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x67a9d46c brcmu_pktq_pflush -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x6e928987 brcmu_pktq_pdeq_match -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x714ee823 brcmu_pkt_buf_get_skb -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x783f4568 brcmu_pktq_mlen -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x94b456f4 brcmu_pktq_penq_head +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x280e8e22 brcmu_pktq_pdeq_tail +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x2bc58a2c brcmu_pktq_penq_head +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x42175906 brcmu_pktq_mdeq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x47b3a35a brcmu_pkt_buf_free_skb +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x4a73d32b brcmu_pktq_pdeq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x4de71ff4 brcmu_pktq_pflush +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x65a2dd53 brcmu_pktq_flush +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x9828fea6 brcmu_pktq_penq EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xa17c0ccf brcmu_dotrev_str -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xccabb4f7 brcmu_pktq_flush -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xccd45ee3 brcmu_pktq_penq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xd5b221c8 brcmu_pkt_buf_get_skb EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xd6217d91 brcmu_d11_attach -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xedfe2bc8 brcmu_pktq_mdeq -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xf58e90d3 brcmu_pktq_pdeq -EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0x486a45f7 init_airo_card -EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0xc3c111ba stop_airo_card -EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0xd3f753fd reset_airo_card -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x0deba1b4 libipw_wx_set_encode -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x2432a9ba libipw_txb_free -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x2d6bdf8b libipw_is_valid_channel -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x35d42013 libipw_set_geo -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x59b6c092 libipw_rx -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x60f5c502 libipw_networks_age -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x69474d31 libipw_wx_get_encode -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x6f0cc800 libipw_freq_to_channel -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x70118f28 libipw_rx_mgt -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x78a9eb7e libipw_wx_set_encodeext -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x8947dcc3 libipw_channel_to_freq -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xa1858d4e alloc_libipw -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xb2fc6152 libipw_wx_get_encodeext -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xb42e8322 libipw_get_channel_flags -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xbe5fd317 libipw_wx_get_scan -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xc01306f0 libipw_get_geo -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xc035cbbb libipw_xmit -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xec8df04e libipw_get_channel -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xf24f737e free_libipw -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xfce55aeb libipw_channel_to_index -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0386fa63 il_power_initialize -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x04f165f4 il_eeprom_query_addr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x04fcb305 il_leds_exit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x05700008 il_hdl_error -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0790f355 _il_poll_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0b8883c0 il_set_tx_power -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0e967f6f il_apm_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x12190d2b il_free_txq_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x126caba3 il_mac_sta_remove -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x139bc801 il_rx_queue_alloc -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1783a999 il_hdl_spectrum_measurement -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1a92b803 il_send_cmd_pdu_async -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1fca680b il_tx_queue_free -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1fe9c78b il_get_passive_dwell_time -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x21a0b433 il_eeprom_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x23c9a36a il_is_ht40_tx_allowed -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x257b19e5 il_dbgfs_unregister -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2bce014f il_mac_bss_info_changed +EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0x138bbc39 reset_airo_card +EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0x4219bbaf stop_airo_card +EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0x97aed9d4 init_airo_card +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x019ab1af alloc_libipw +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x05fa9efa libipw_rx +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x085c866c libipw_channel_to_freq +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x19e441c2 libipw_get_geo +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x2702ad3b libipw_get_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x27fc0c80 libipw_channel_to_index +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x29b918de libipw_xmit +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x4ad6d049 free_libipw +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x7462fc28 libipw_wx_set_encodeext +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x8c00ce37 libipw_freq_to_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xa577ea25 libipw_wx_get_scan +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xa89521a7 libipw_networks_age +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xa9c89b64 libipw_wx_get_encode +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xb765ee4d libipw_wx_set_encode +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xb9d1d3bf libipw_wx_get_encodeext +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xd30f5965 libipw_set_geo +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xd51072e0 libipw_rx_mgt +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xe5c242d0 libipw_get_channel_flags +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xfb53388e libipw_txb_free +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xff088260 libipw_is_valid_channel +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x00e50f71 il_rx_queue_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0125f5e0 il_wr_prph +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0d5e3b7e il_rd_prph +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0de64c85 il_mac_hw_scan +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0dea5f29 il_cancel_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1b697f0d il_mac_flush +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1ca4fae0 il_hdl_csa +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1ff4e8ca il_chswitch_done +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2409d59f il_hdl_pm_sleep +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x24bb0bf6 il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x25853085 il_setup_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x294dc585 il_usecs_to_beacons EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2bf7eea6 il_queue_space -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x30862c94 il_get_single_channel_number -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x32190572 il_fill_probe_req -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x34793dce il_eeprom_query16 -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3510f52b il_set_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x38f804af il_set_rxon_channel -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3b0cc010 il_get_lowest_plcp +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2c3dcdf6 il_set_decrypted_flag +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2c677d00 il_init_geos +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2d3e26bc il_eeprom_query_addr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2e46fb24 il_pm_ops +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x30ae3997 il_free_txq_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x32591ab3 il_rx_queue_space +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x38bc0e92 il_mac_remove_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3e10dc06 il_send_cmd_pdu EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x416bd26a il_debug_level -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4175889a il_connection_init_rx_config -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4364c0d2 il_tx_cmd_complete -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x468abd5a il_scan_cancel_timeout -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x46a8e114 il_send_cmd_sync -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x48f34031 il_mac_remove_interface -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4dbae813 il_update_stats -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x51af3a72 il_alloc_txq_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x52b8e6ec il_restore_stations -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x53da13fb il_txq_update_write_ptr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5ab0cf32 il_force_reset -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5d0c52ab il_poll_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x62f5ada3 il_send_bt_config -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x64e9f83c il_send_add_sta -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x69e24ff5 il_dbgfs_register -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6a253fc2 il_send_lq_cmd -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6b5383f5 il_irq_handle_error -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6b86ce22 il_get_free_ucode_key_idx -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6c56ca90 il_add_station_common -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6dfe9971 il_set_flags_for_band -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6fd73e94 il_send_stats_request -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x72789005 il_cmd_queue_free -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7483f0d8 il_init_scan_params -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7ac20c94 il_add_beacon_time -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7d0b0d76 il_hdl_csa -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8492be25 il_write_targ_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8c85cf5c il_apm_stop -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8f46bbe9 il_pm_ops -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x92dfd28d il_free_channel_map -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9818f980 il_init_geos -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9ba933c4 il_get_active_dwell_time -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9ca4d8b4 il_init_channel_map +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x42292379 il_add_beacon_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x42417adf il_get_lowest_plcp +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x440f60ab il_free_channel_map +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x44553978 il_apm_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x45a9dc7a il_set_flags_for_band +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x461df909 il_mac_add_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4ad95543 il_mac_change_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4f97a3ea il_hdl_pm_debug_stats +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5143bf87 il_tx_cmd_complete +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x56e7be8b il_is_ht40_tx_allowed +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5d381f0b il_hdl_spectrum_measurement +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5ec2ca91 il_eeprom_query16 +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x61848107 il_check_rxon_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6221a8ce il_get_free_ucode_key_idx +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x64f7cf57 il_scan_cancel_timeout +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x68bd06ce il_free_geos +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6efbd1ed il_init_channel_map +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x70eec7cd il_scan_cancel +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x724f91ee il_set_tx_power +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x73a3fc00 il_hdl_error +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7766d93a il_write_targ_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7785c4b7 il_get_active_dwell_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x794ea171 il_set_rate +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7c1b9ec5 il_rx_queue_alloc +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7d3632fc il_clear_ucode_stations +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7e41e779 il_clear_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x80c03f22 il_alloc_txq_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x82c1579c il_tx_queue_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x86520a96 il_eeprom_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x89272285 il_cmd_queue_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x89d2d240 il_set_rxon_channel +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8ddcbc61 il_send_bt_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9125c642 il_eeprom_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x933b46db il_dbgfs_unregister +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x939fb633 il_update_stats +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x99d89654 il_send_stats_request +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9b78e4e8 il_force_reset EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9cc714af il_bg_watchdog -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9d27d1dc il_set_rate -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9f147721 il_setup_rx_scan_handlers -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa63bcf8f il_set_rxon_ht -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa8f99f98 il_tx_queue_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xad88fe70 il_clear_ucode_stations -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb2b1637c il_mac_conf_tx -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb40c3416 il_usecs_to_beacons +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa4df2bc7 il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa7c42073 il_send_cmd_pdu_async +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xacbc4d20 il_connection_init_rx_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xae3cf708 il_send_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xaff9efbc il_fill_probe_req +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb15fea7e il_cmd_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb36c277b il_mac_config EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb65510a3 il_get_cmd_string -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb6be4efb il_leds_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb6dc73eb il_mac_bss_info_changed EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb7bd33ff il_isr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xba23a946 il_rx_queue_update_write_ptr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbaf9a7a4 il_cmd_queue_unmap -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbbc16fdd il_full_rxon_required -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc07d8c55 il_eeprom_free -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc4e8551e il_setup_watchdog -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc5da0595 il_mac_flush -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc6db3e68 il_read_targ_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc705e541 _il_apm_stop -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc8787e01 il_chswitch_done -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcdba3c17 il_mac_change_interface -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcf9d7975 il_send_rxon_timing -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd1976405 il_check_rxon_cmd -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd237c987 il_mac_reset_tsf -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd41c0bc9 il_mac_add_interface -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd4282299 il_clear_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd700713b il_setup_scan_deferred_work -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd70612cd il_hdl_pm_sleep -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd7988fa5 il_tx_queue_unmap -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd7d9dd77 il_hdl_pm_debug_stats -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdc233250 il_get_channel_info -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdf09d862 il_mac_config -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe36d674a il_power_update_mode -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe8643a4b il_free_geos -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe9cd5bb7 il_mac_hw_scan -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xea8c2b25 il_rx_queue_space -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xeb0208ed il_send_cmd_pdu -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xee224f73 il_tx_cmd_protection -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf256c5e9 il_send_cmd -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf4aa2859 il_wr_prph -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf4f7a092 il_tx_queue_reset -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf6610ca8 il_scan_cancel +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb9f80e44 il_tx_queue_reset +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbcfcb9d8 il_tx_cmd_protection +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbf1176b3 il_tx_queue_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbf60ae0d il_txq_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc093bb38 il_send_cmd_sync +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc12c8838 il_leds_exit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc14ca239 il_read_targ_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc1cd43d1 il_mac_conf_tx +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc294c09b il_get_passive_dwell_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc2dd64da il_set_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc592a265 il_setup_watchdog +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc63ddabb il_full_rxon_required +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc850c61f il_power_initialize +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcd8b5a31 il_add_station_common +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcf0ab629 il_get_single_channel_number +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd0304db7 il_set_rxon_ht +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd1c5bff7 il_setup_rx_scan_handlers +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd27e6191 il_power_update_mode +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd66d0515 _il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd6eff318 _il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd84b106b il_send_add_sta +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd8d998c2 il_send_rxon_timing +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xddb3fa06 il_get_channel_info +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe094d0bb il_dbgfs_register +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe14b2812 il_restore_stations +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe578d41c il_irq_handle_error +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xec2ef5c5 il_mac_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xee0d8124 il_mac_sta_remove +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf098c1a1 il_init_scan_params +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf4e6b686 il_set_rxon_hwcrypto EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf70a693b il_bcast_addr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf892ccc3 il_set_decrypted_flag -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf8fd8769 il_set_rxon_hwcrypto -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf9d5c9db il_rd_prph -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfacc9a50 il_cancel_scan_deferred_work -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x23729c7d __traceiter_iwlwifi_dev_ucode_cont_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2ffb02ce __traceiter_iwlwifi_dev_ucode_wrap_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf7a5b9d7 il_leds_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfa668239 il_send_lq_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfacd19c4 il_tx_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x25f424cd __tracepoint_iwlwifi_dev_ucode_wrap_event EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x38688d65 __SCT__tp_func_iwlwifi_dev_ucode_wrap_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x3928e161 __tracepoint_iwlwifi_dev_ucode_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 0x40b30828 __traceiter_iwlwifi_dev_ucode_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x4a52bd6f __tracepoint_iwlwifi_dev_ucode_cont_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x50c0dca7 __SCK__tp_func_iwlwifi_dev_ucode_cont_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8fc50574 __SCK__tp_func_iwlwifi_dev_ucode_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc74ca09d __SCK__tp_func_iwlwifi_dev_ucode_wrap_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x44ddae45 __SCK__tp_func_iwlwifi_dev_ucode_wrap_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x640ae23c __traceiter_iwlwifi_dev_ucode_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb27858f7 __tracepoint_iwlwifi_dev_ucode_cont_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd351d27f __SCK__tp_func_iwlwifi_dev_ucode_cont_event EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd81e2f28 __SCT__tp_func_iwlwifi_dev_ucode_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xdddec155 __tracepoint_iwlwifi_dev_ucode_wrap_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xefa785bc __tracepoint_iwlwifi_dev_ucode_event -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x0b0f2220 hostap_set_string +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xdcfeeb46 __traceiter_iwlwifi_dev_ucode_wrap_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf9b98634 __SCK__tp_func_iwlwifi_dev_ucode_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xfd820807 __traceiter_iwlwifi_dev_ucode_cont_event +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x03444409 hostap_init_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x0d55614c hostap_set_encryption +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x0f2cf16f hostap_80211_rx EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x13abdd5a hostap_dump_tx_header -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x166ab129 hostap_handle_sta_tx_exc -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x233d519a hostap_init_data -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x2962b912 hostap_80211_rx -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x3bff1aea hostap_add_interface -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x68ce4553 hostap_set_word -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x743e8ab6 hostap_remove_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x1e767f34 hostap_handle_sta_tx_exc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x29c42d6c hostap_master_start_xmit +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x2f67c29b hostap_set_antsel +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x339bc520 prism2_update_comms_qual +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x33bf2642 hostap_free_data +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x37fc53d3 hostap_get_porttype +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x4ecff7d4 hostap_set_hostapd_sta +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x6e9f714f hostap_set_word +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x6eb7b670 hostap_remove_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x756cb97f hostap_set_hostapd EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x75934c58 hostap_set_multicast_list_queue EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7fb75891 hostap_dump_rx_header -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x971e57ea hostap_set_hostapd_sta -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x99fcb03c hostap_set_antsel -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x9b0ba620 hostap_set_auth_algs -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x9cc3a49b hostap_set_encryption -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xa502f4fd hostap_setup_dev -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb1cb6268 prism2_update_comms_qual +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x8673d023 hostap_info_process +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x89beffd6 hostap_init_data +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x8d3a0d82 hostap_80211_ops +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x92493bb8 hostap_info_init +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x9c150769 hostap_check_sta_fw_version EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb4b77c8b hostap_80211_get_hdrlen -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb85aaef1 hostap_init_proc -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb981b078 hostap_80211_ops -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xbfc23581 hostap_init_ap_proc -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xd2acbdf4 hostap_info_process -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xd305c772 hostap_get_porttype -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xdec2d54c hostap_info_init -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xeb980b18 hostap_master_start_xmit -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xed611093 hostap_set_roaming -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xf70ba166 hostap_check_sta_fw_version -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xf925be0e hostap_set_hostapd -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xfb37b62e hostap_free_data -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xfb4387eb hostap_remove_interface -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x05c7f04e __orinoco_ev_info -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x0febde5b orinoco_open -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x107e9f2f orinoco_if_del -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x351874f2 orinoco_down -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x38b7e363 orinoco_stop -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x77b24d01 orinoco_init -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x7f114db7 free_orinocodev -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x82577b12 orinoco_change_mtu -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x84082e16 orinoco_process_xmit_skb -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x99b6bcac alloc_orinocodev +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xc34bd41b hostap_add_interface +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xccc9c942 hostap_remove_interface +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xda2c50d4 hostap_set_string +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xe1e137cc hostap_set_auth_algs +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xe6e304d9 hostap_setup_dev +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xfa4e70a6 hostap_set_roaming +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xfc439707 hostap_init_ap_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x60a2436e orinoco_stop +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x684a448c orinoco_process_xmit_skb +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x721d0bb4 orinoco_up +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x7b3080ed __orinoco_ev_rx +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x7f4287a6 orinoco_init +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x80d3794e orinoco_down +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x88088d36 orinoco_set_multicast_list +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x9205ef22 orinoco_change_mtu +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xa5137bad __orinoco_ev_info EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xa74c2dc5 hermes_struct_init -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xce1c9bd0 __orinoco_ev_rx -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xcfc9f266 orinoco_set_multicast_list -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xebdf767e orinoco_if_add -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xf27ab636 orinoco_tx_timeout -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xf6098502 orinoco_up +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xac3f0f4f alloc_orinocodev +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xb8bc95e8 orinoco_if_del +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xc31c6db1 orinoco_tx_timeout +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xd454c56e orinoco_if_add +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xe87f951c orinoco_open +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xfe87d859 free_orinocodev EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xffe27bca orinoco_interrupt -EXPORT_SYMBOL drivers/net/wireless/mediatek/mt76/mt76 0x4837cf03 mt76_wcid_key_setup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0x8dc31832 rtl_btc_get_ops_pointer -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x13c5a727 _rtl92c_phy_txpwr_idx_to_dbm -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x161e09b9 rtl92c_phy_sw_chnl -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1b10119a rtl92c_firmware_selfreset -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1c90b289 _rtl92c_store_pwrindex_diffrate_offset -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1ceec09f rtl92c_dm_write_dig -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1f3bd1df rtl92c_phy_query_bb_reg +EXPORT_SYMBOL drivers/net/wireless/mediatek/mt76/mt76 0xbd4ee2b7 mt76_wcid_key_setup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0x7bbd4443 rtl_btc_get_ops_pointer +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x00924516 _rtl92c_phy_set_rf_sleep +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0889c79b rtl92c_set_fw_rsvdpagepkt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0b9b3077 rtl92c_phy_set_io_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1ab6af8e rtl92c_dm_init_edca_turbo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1b5629b9 rtl92c_phy_sw_chnl +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1dfc2a3e rtl92c_phy_ap_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x21c1b15e 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 0x266cad41 rtl92c_phy_set_bb_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x308ee2c2 rtl92c_phy_iq_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3132226e rtl92c_phy_set_io -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3e140dac rtl92c_phy_lc_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3e31cef6 rtl92c_dm_init_rate_adaptive_mask -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4485fc68 rtl92c_phy_sw_chnl_callback -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4d80ccef _rtl92c_phy_bb8192c_config_parafile -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x50d97619 rtl92c_dm_watchdog -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5a7aa6f6 _rtl92c_phy_fw_rf_serial_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x60779836 rtl92c_dm_bt_coexist -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x69ec03ed rtl8192_phy_check_is_legal_rfpath -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6fa34be6 rtl92c_bt_rssi_state_change -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x721fcda6 rtl92c_download_fw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x723ee379 rtl92c_dm_init_edca_turbo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x73840a47 rtl92c_phy_set_txpower_level -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7450bc9d _rtl92c_phy_dbm_to_txpwr_idx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x799b7bcb _rtl92c_phy_set_rf_sleep -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7cbe3734 _rtl92c_phy_fw_rf_serial_write -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8209a196 rtl92c_phy_set_rfpath_switch -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8f6924de _rtl92c_phy_init_bb_rf_register_definition -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x903d18d4 rtl92c_set_fw_joinbss_report_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x99b28ed8 _rtl92c_phy_rf_serial_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9af28036 _rtl92c_phy_rf_serial_write -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa0f43587 rtl92c_phy_rf_config -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa230afc2 rtl92c_fill_h2c_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa71fa132 rtl92ce_phy_set_rf_on -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xad4e7503 rtl92c_set_fw_rsvdpagepkt -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb17c46d4 rtl92c_phy_update_txpower_dbm -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc71c9d03 rtl92c_phy_ap_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd381ccc9 rtl92c_phy_set_bw_mode -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd4954e05 rtl92c_dm_rf_saving -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xdd601dbb rtl92c_dm_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xeb5f4b78 rtl92c_set_fw_pwrmode_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf6378cfc rtl92c_dm_check_txpower_tracking -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf9a1636b rtl92c_phy_set_io_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x4a2ea24b rtl_pci_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x6f9ee314 rtl_pci_disconnect -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xdeb63eb9 rtl_pci_resume -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xefaf3566 rtl_pci_suspend -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x08d86d4e rtl_usb_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x1af05eee rtl_usb_disconnect -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x2734cd0f rtl_usb_suspend -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x3bcad87b rtl_usb_resume -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0470a6c3 efuse_one_byte_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3074ec38 rtl92c_phy_set_io +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x31479064 rtl92c_dm_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x31c61748 rtl92c_fill_h2c_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3495015d rtl92c_bt_rssi_state_change +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3acc52a5 rtl92c_phy_sw_chnl_callback +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3d65b9e1 rtl92c_set_fw_pwrmode_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4528dc1d _rtl92c_phy_fw_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x468417a1 rtl92c_phy_rf_config +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4cbd0538 rtl92ce_phy_set_rf_on +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4f67466e rtl92c_dm_check_txpower_tracking +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6c5c3d81 rtl92c_dm_watchdog +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x740878b0 _rtl92c_phy_bb8192c_config_parafile +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7666c0c0 rtl92c_dm_write_dig +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x77cfc8e7 _rtl92c_store_pwrindex_diffrate_offset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x859909b0 _rtl92c_phy_fw_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8e4b0d92 rtl92c_download_fw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x92bcbf23 _rtl92c_phy_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9858c517 rtl92c_firmware_selfreset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa6ae7165 rtl92c_phy_set_bw_mode +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xaaa74006 rtl92c_phy_lc_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xab123299 rtl92c_phy_set_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xabeabab7 rtl92c_phy_set_rfpath_switch +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xad02c29f rtl92c_dm_bt_coexist +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xade01d5b rtl92c_dm_init_rate_adaptive_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb5280052 rtl92c_set_fw_joinbss_report_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb85a78da rtl92c_phy_set_txpower_level +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc1f6a5d9 rtl8192_phy_check_is_legal_rfpath +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc2cb7e78 _rtl92c_phy_init_bb_rf_register_definition +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xcafad830 _rtl92c_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xcd4a8c3a rtl92c_phy_iq_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd54e9e84 rtl92c_dm_rf_saving +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf0fe3d92 _rtl92c_phy_dbm_to_txpwr_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf2cb165c _rtl92c_phy_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf58aa7cd rtl92c_phy_query_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x89abc157 rtl_pci_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xb0201d62 rtl_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xc1be0cd4 rtl_pci_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xd09d8926 rtl_pci_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xbdf444a2 rtl_usb_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xedb57329 rtl_usb_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xeef0cdcf rtl_usb_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xf0b95bcd rtl_usb_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x00f6a2ce rtl_bb_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x05f2446b rtl_cam_mark_invalid +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x073db9ba rtl_c2hcmd_enqueue +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x084e25c1 rtl_collect_scan_list EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0b038e24 channel5g_80m -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x12c48aba rtl_init_rfkill -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x18538ccc rtl_cam_delete_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0bac8d32 rtl_init_rfkill +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x188de9af rtl_send_smps_action EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1b945315 rtl_addr_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1d78072d rtl_rx_ampdu_apply -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1f2caac8 rtl_process_phyinfo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x20e65ce6 rtl_rfreg_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2309f282 efuse_read_1byte -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2e2463da rtl_dm_diginit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2f281e2d rtl_cam_get_free_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2a1aabba efuse_shadow_read EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x30a956d7 rtl_query_rxpwrpercentage -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x389dbbe3 rtl_collect_scan_list -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x488d01a1 rtl_cam_reset_all_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x44fdf597 rtl_cam_add_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x499d3a97 efuse_power_switch +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x54001ffc rtl_mrate_idx_to_arfr_id EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x54824f58 channel5g -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5b81deed efuse_shadow_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5f5d2c3d rtl_cam_add_one_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x73e9ce07 rtl_cam_mark_invalid -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8ab11731 rtl_cmd_send_packet +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5bba537f rtl_cmd_send_packet +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5d900dd3 rtl_cam_empty_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5e397c76 rtl_cam_get_free_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x68c70449 rtl_cam_delete_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7816344c rtl_phy_scan_operation_backup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7d8f6100 efuse_read_1byte +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x806e614e rtl_signal_scale_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x81aee385 rtl_process_phyinfo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8491ce4e rtl_ps_disable_nic EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8ea60059 rtl_fw_cb -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x92357b8b rtl_cam_del_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9658628e rtl_hal_pwrseqcmdparsing -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9839dc37 rtl_signal_scale_mapping -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9d6b589b rtl_send_smps_action -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa432c5d4 rtl_phy_scan_operation_backup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xaf926ddf rtl_ps_disable_nic -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbb75fa5e rtlwifi_rate_mapping -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc1a472d3 rtl_bb_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc2e3ded7 rtl_ps_enable_nic -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xcbd5ca5f rtl_efuse_shadow_map_update -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd9301e9c rtl_get_tcb_desc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xdcb750dd rtl_cam_empty_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe9080f70 rtl_mrate_idx_to_arfr_id +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x92fe7da3 rtl_ps_enable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9dab1426 rtl_hal_pwrseqcmdparsing +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa824c0f0 rtl_dm_diginit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb25ff78e rtlwifi_rate_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb3f718be rtl_rfreg_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xcf6c1503 rtl_get_tcb_desc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd6cb528b rtl_cam_del_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe311bb1d rtl_cam_reset_all_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xeaa7cc0e rtl_rx_ampdu_apply +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xeac58c07 efuse_one_byte_read 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 0xf3af0a01 rtl_c2hcmd_enqueue -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xfc2bf86d efuse_power_switch -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8723d 0xd585f2fe rtw8723d_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8821c 0x48458573 rtw8821c_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822b 0x3e65884c rtw8822b_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822c 0xd1a7e372 rtw8822c_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x01b4081d rtw_tx_fill_tx_desc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x0592f791 rtw_rx_fill_rx_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x06076835 rtw_read8_physical_efuse -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x0c3f0655 rtw_phy_pwrtrack_need_lck -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x0ccb3597 rtw_rx_stats -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x0d97e587 rtw_core_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x2028d29c rtw_fw_do_iqk -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x2e7d5df5 rtw_bf_cfg_csi_rate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xee2a6c76 rtl_efuse_shadow_map_update +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8723d 0x6e6bbbe3 rtw8723d_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8821c 0xf3abcc6e rtw8821c_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822b 0x858bc151 rtw8822b_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822c 0x6a49aa6f rtw8822c_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x012dcc39 rtw_rx_stats +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x21a12abe rtw_phy_cfg_agc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x2689b2fa rtw_phy_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x29aabe21 rtw_restore_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x301639d3 rtw_phy_cfg_mac +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x329230fb rtw_phy_pwrtrack_get_delta EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x33b3f3c0 rtw_debug_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x34cb20eb rtw_fw_inform_rfk_status EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x36c5bfca rtw_disable_lps_deep_mode -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x37f657ce rtw_dump_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x3ab07e11 rtw_phy_pwrtrack_get_pwridx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x3bf8bb65 rtw_power_mode_change -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x3ea0014b rtw_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x38abf992 rtw_coex_write_indirect_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x3f9ae88a rtw_power_mode_change 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 0x47e079ba rtw_phy_pwrtrack_thermal_changed -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x4f893d97 check_hw_ready +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x44544722 rtw_chip_info_setup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x49539310 rtw_phy_config_swing_table +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x4e77aa29 rtw_phy_read_rf EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x519c8ba9 rtw_rate_size -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x554afa2b rtw_core_deinit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x555274f3 rtw_chip_info_setup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x56594188 rtw_parse_tbl_txpwr_lmt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5486c81d rtw_phy_cfg_bb EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x58210e60 rtw_rate_section -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x60387aa5 rtw_phy_write_rf_reg_mix -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6589e257 __rtw_dbg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x66a20f3c rtw_restore_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6b75e1e4 rtw_phy_get_tx_power_index -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7888b47b rtw_fw_c2h_cmd_isr -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x78bad977 rtw_tx_report_enqueue -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7baa0eb0 rtw_bf_enable_bfee_mu -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x824811d7 rtw_fw_inform_rfk_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x85bd2c90 rtw_parse_tbl_phy_cond -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x8922e476 rtw_unregister_hw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x8f6aa202 rtw_tx_write_data_rsvd_page_get -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9b5f0f13 rtw_parse_tbl_bb_pg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9e9b790f rtw_phy_cfg_bb -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa07b2463 rtw_bf_phy_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xaa1b3c67 rtw_bf_remove_bfee_mu -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xac9271aa rtw_phy_read_rf_sipi -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xaf3d863d rtw_coex_write_indirect_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb36d6d33 rtw_phy_cfg_agc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xbaa2407e rtw_coex_write_scbd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xbad2fa03 rtw_fw_c2h_cmd_rx_irqsafe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc0730ff8 rtw_phy_cfg_mac -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc5d9649d rtw_phy_pwrtrack_need_iqk -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc92b9e11 rtw_set_channel_mac -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xcbd195fc rtw_tx_write_data_h2c_get -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xcd2aa6e1 rtw_phy_load_tables -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xcd99e8e8 rtw_phy_cfg_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd1437dd3 rtw_phy_config_swing_table -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd71e4c54 rtw_phy_write_rf_reg_sipi -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd974d86a rtw_dump_fw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xdca56b27 rtw_phy_read_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xdda1e875 rtw_phy_parsing_cfo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe656953a rtw_phy_set_tx_power_level -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe7a5ae3f rtw_phy_pwrtrack_get_delta -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe7f791ad rtw_phy_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe82783c7 rtw_bf_remove_bfee_su -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe9fa167a rtw_bf_enable_bfee_su -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xec050380 rtw_register_hw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf95c0cc0 rtw_coex_read_indirect_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xfa297fcd rtw_phy_pwrtrack_avg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xfef3f35a rtw_bf_set_gid_table -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x1eac5dac rtw_pci_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x408cb33f rtw_pci_remove -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x82afe7d5 rtw_pci_shutdown -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0xe5d415d9 rtw_pm_ops -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x0084a70f rtw89_core_rx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x04a2ec78 rtw89_core_unregister -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x0bddebdd rtw89_mac_get_err_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x127f7b12 rtw89_core_deinit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x1b04ea6e rtw89_core_register -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x20dccdcc rtw89_core_query_rxdesc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x38ddd4f9 rtw89_chip_info_setup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x408ac674 __rtw89_debug -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x40c92ebd rtw89_phy_write_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x53057001 rtw89_core_napi_stop -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x5bfc9392 rtw89_phy_read_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x716e2caa rtw89_core_napi_deinit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xa3c9896d rtw89_core_napi_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xac3b207a rtw8852a_chip_info -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xaea07e9e rtw89_mac_set_err_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xbb0b6739 rtw89_ops -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xcc18a8dd rtw89_core_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xccb39e49 rtw89_core_napi_start -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xd169c48a rtw89_core_fill_txdesc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe261d8dd rtw89_ser_notify +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x59ec0f63 rtw_dump_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5bb654e3 rtw_fw_c2h_cmd_rx_irqsafe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x65fec3f1 rtw_parse_tbl_txpwr_lmt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x69187531 rtw_phy_get_tx_power_index +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6d0a430a rtw_set_channel_mac +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6e1a0d7f rtw_register_hw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x77d7c26c check_hw_ready +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7a3a1200 rtw_unregister_hw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7a3ac7d8 rtw_fw_c2h_cmd_isr +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7abaea06 rtw_bf_enable_bfee_su +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7c1fe82b rtw_rx_fill_rx_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x812069ea rtw_core_deinit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x87906f67 rtw_dump_fw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x8a6a2e29 __rtw_dbg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x8a9d4645 rtw_read8_physical_efuse +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x8bdce89b rtw_phy_write_rf_reg_mix +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x967b35be rtw_phy_pwrtrack_need_iqk +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9d7d8971 rtw_phy_pwrtrack_avg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa4804a2d rtw_parse_tbl_phy_cond +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa9e90648 rtw_parse_tbl_bb_pg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xadc1556c rtw_bf_enable_bfee_mu +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb01e7f37 rtw_phy_pwrtrack_get_pwridx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb3e54ee1 rtw_phy_set_tx_power_level +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb58e1ced rtw_core_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb86ad92d rtw_phy_cfg_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xbd4d1892 rtw_phy_parsing_cfo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xbe32dcad rtw_tx_report_enqueue +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xbff8f7db rtw_phy_pwrtrack_need_lck +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc3dbc668 rtw_tx_fill_tx_desc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc88378ef rtw_tx_write_data_rsvd_page_get +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xcb5fcd28 rtw_phy_read_rf_sipi +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd2bfed46 rtw_tx_write_data_h2c_get +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd5d70bd4 rtw_phy_pwrtrack_thermal_changed +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd60cb189 rtw_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd6d5ae77 rtw_phy_write_rf_reg_sipi +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd8936cff rtw_phy_load_tables +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe4307352 rtw_coex_read_indirect_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xef90b061 rtw_bf_phy_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf124bdf3 rtw_bf_set_gid_table +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf1f255fc rtw_bf_remove_bfee_mu +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf443adb1 rtw_fw_do_iqk +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf9ebf315 rtw_bf_remove_bfee_su +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xfbf809b4 rtw_bf_cfg_csi_rate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xfd3ad6a6 rtw_coex_write_scbd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x00a0ab94 rtw_pm_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x78b43bc5 rtw_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0xd3cf281e rtw_pci_shutdown +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0xe5d65d89 rtw_pci_remove +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x04443523 rtw89_core_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x0a976def rtw8852a_chip_info +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x23b62f0f rtw89_mac_set_err_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x3fc80d4c rtw89_core_napi_deinit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x47c4f835 rtw89_core_unregister +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x4bb5366f rtw89_ser_notify +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x666b57f8 rtw89_core_query_rxdesc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x675f1c1f rtw89_core_deinit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x6c789318 rtw89_core_fill_txdesc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x89a689d5 rtw89_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x93c5af9c rtw89_core_rx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xa9fb5f46 rtw89_phy_write_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xba368a6b rtw89_core_napi_stop +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xbc28e686 rtw89_core_napi_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xd01d144e rtw89_chip_info_setup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xdbbb63b0 rtw89_core_register EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe3f57b04 rtw89_debug_mask -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x84bf0f02 rtw89_pm_ops -EXPORT_SYMBOL drivers/net/wireless/rsi/rsi_91x 0xe79d2beb rsi_config_wowlan -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x0908af90 wlcore_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x107da91c wl12xx_is_dummy_packet -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x11ad9d61 wl1271_free_tx_id -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x3356983a wlcore_calc_packet_alignment -EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x1603be4d fdp_nci_remove -EXPORT_SYMBOL drivers/nfc/fdp/fdp 0xd9a8e17d fdp_nci_probe -EXPORT_SYMBOL drivers/nfc/microread/microread 0x2603d531 microread_probe -EXPORT_SYMBOL drivers/nfc/microread/microread 0xc7ef997b microread_remove -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x24f8ddb6 nxp_nci_probe -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x2c32f5fc nxp_nci_remove -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xfb7e35af nxp_nci_fw_recv_frame -EXPORT_SYMBOL drivers/nfc/pn533/pn533 0xd2690509 pn533_recv_frame -EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x4d0b115b pn544_hci_remove -EXPORT_SYMBOL drivers/nfc/pn544/pn544 0xebb0a5aa pn544_hci_probe -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x4e562180 s3fwrn5_remove -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x567ff2f1 s3fwrn5_phy_power_ctrl +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe4898191 rtw89_core_napi_start +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xf43591de rtw89_phy_read_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xf4504bcf rtw89_mac_get_err_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xf50380f7 __rtw89_debug +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xedb145b5 rtw89_pm_ops +EXPORT_SYMBOL drivers/net/wireless/rsi/rsi_91x 0xc6108e3c rsi_config_wowlan +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x0214cf27 wl12xx_is_dummy_packet +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x04e36cbd wlcore_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x8c23dab3 wlcore_calc_packet_alignment +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xea5abefc wl1271_free_tx_id +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x0c6b8fc8 fdp_nci_remove +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x701c3df9 fdp_nci_probe +EXPORT_SYMBOL drivers/nfc/microread/microread 0x1ab636b8 microread_remove +EXPORT_SYMBOL drivers/nfc/microread/microread 0x39f2cfee microread_probe +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x4408e8c9 nxp_nci_remove +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xcfe99776 nxp_nci_fw_recv_frame +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xf584eb7c nxp_nci_probe +EXPORT_SYMBOL drivers/nfc/pn533/pn533 0xc1b91e79 pn533_recv_frame +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x0c3f0e53 pn544_hci_remove +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x633b46e3 pn544_hci_probe +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x1ac960c0 s3fwrn5_probe +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x26e5ba0f s3fwrn5_recv_frame EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x774203fc s3fwrn5_phy_set_wake -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xae8dad80 s3fwrn5_probe -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xd3df6c00 s3fwrn5_recv_frame +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x8542c825 s3fwrn5_remove +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xd336b0f4 s3fwrn5_phy_power_ctrl EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xedb12f10 s3fwrn5_phy_set_mode EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xf2ab60da s3fwrn5_phy_get_mode -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x049c3d0a ndlc_probe -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x1a5b38b3 st_nci_vendor_cmds_init -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x1f7135cd st_nci_se_init -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x2a2e87a2 ndlc_close -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x4d4a7743 ndlc_remove -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x793ce8d9 ndlc_open -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xa25d1fc6 st_nci_se_deinit -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xc05124a3 st_nci_se_io -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xcfab8bbe ndlc_send -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xdb6ff007 ndlc_recv -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x0172d98c st21nfca_apdu_reader_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x0abb0af0 st21nfca_im_send_dep_req -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x18508fdd st21nfca_se_deinit -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x2418bc6d st21nfca_vendor_cmds_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x38b54b9a st21nfca_hci_loopback_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x49b39f0e st21nfca_hci_probe -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x4e21acdc st21nfca_tm_send_dep_res -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x4e2cfb3d st21nfca_dep_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x4fbf75fa st21nfca_dep_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x5a0b1244 st21nfca_hci_discover_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x681ee6aa st21nfca_se_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x7c588297 st21nfca_connectivity_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x906c7e27 st21nfca_hci_remove -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x95097103 st21nfca_hci_disable_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xa01aa620 st21nfca_im_send_atr_req -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xcbed37d6 st21nfca_dep_deinit -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xd85f4b0c st21nfca_hci_se_io -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xea21157b st21nfca_hci_enable_se -EXPORT_SYMBOL drivers/ntb/ntb 0x09a60131 ntb_default_port_number -EXPORT_SYMBOL drivers/ntb/ntb 0x0afe8e0a ntb_msg_event -EXPORT_SYMBOL drivers/ntb/ntb 0x0db88710 ntb_set_ctx -EXPORT_SYMBOL drivers/ntb/ntb 0x1ad5bbc3 ntb_msi_peer_addr -EXPORT_SYMBOL drivers/ntb/ntb 0x21cee949 ntb_clear_ctx -EXPORT_SYMBOL drivers/ntb/ntb 0x26c1a5f2 ntb_register_device -EXPORT_SYMBOL drivers/ntb/ntb 0x4263d144 ntb_msi_peer_trigger -EXPORT_SYMBOL drivers/ntb/ntb 0x45ed4620 ntb_msi_setup_mws -EXPORT_SYMBOL drivers/ntb/ntb 0x6b23e05a ntb_unregister_device -EXPORT_SYMBOL drivers/ntb/ntb 0x82d844bf ntb_msi_clear_mws -EXPORT_SYMBOL drivers/ntb/ntb 0x8d90d097 ntb_db_event -EXPORT_SYMBOL drivers/ntb/ntb 0x979f1eff ntb_default_peer_port_number -EXPORT_SYMBOL drivers/ntb/ntb 0xae9b3090 ntbm_msi_request_threaded_irq -EXPORT_SYMBOL drivers/ntb/ntb 0xc1f14c4e ntb_unregister_client -EXPORT_SYMBOL drivers/ntb/ntb 0xe3495ea1 ntb_msi_init -EXPORT_SYMBOL drivers/ntb/ntb 0xeaa56cc2 ntb_default_peer_port_idx -EXPORT_SYMBOL drivers/ntb/ntb 0xeed24e0f ntbm_msi_free_irq -EXPORT_SYMBOL drivers/ntb/ntb 0xf2f53c92 ntb_link_event -EXPORT_SYMBOL drivers/ntb/ntb 0xf972e832 __ntb_register_client -EXPORT_SYMBOL drivers/ntb/ntb 0xf9bf637e ntb_default_peer_port_count -EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x97420657 nvdimm_namespace_detach_btt -EXPORT_SYMBOL drivers/nvdimm/nd_btt 0xacbe1ca0 nvdimm_namespace_attach_btt -EXPORT_SYMBOL drivers/parport/parport 0x071b7d79 parport_ieee1284_epp_write_addr -EXPORT_SYMBOL drivers/parport/parport 0x204e9eb7 parport_ieee1284_read_nibble -EXPORT_SYMBOL drivers/parport/parport 0x21270ea2 parport_ieee1284_epp_read_addr -EXPORT_SYMBOL drivers/parport/parport 0x21d47292 parport_remove_port -EXPORT_SYMBOL drivers/parport/parport 0x25e885f4 parport_read -EXPORT_SYMBOL drivers/parport/parport 0x27a11024 parport_ieee1284_write_compat -EXPORT_SYMBOL drivers/parport/parport 0x28bb854e parport_ieee1284_ecp_write_addr -EXPORT_SYMBOL drivers/parport/parport 0x4351aa62 parport_find_base -EXPORT_SYMBOL drivers/parport/parport 0x474b08e2 parport_ieee1284_epp_write_data +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x0a825b49 st_nci_se_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x2effeb68 ndlc_remove +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x3c343d83 ndlc_send +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x44f2d332 st_nci_se_deinit +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x48e2f0eb ndlc_recv +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x513f000f ndlc_open +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x654419ef st_nci_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x65a7d603 ndlc_close +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x68834197 st_nci_se_io +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x925581d2 ndlc_probe +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x070c83f9 st21nfca_tm_send_dep_res +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x2319b7ee st21nfca_dep_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x252b1062 st21nfca_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x2575c894 st21nfca_hci_discover_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x28a39e8c st21nfca_im_send_atr_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x42737e7e st21nfca_hci_remove +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x5cbaa189 st21nfca_im_send_dep_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x7cb8af91 st21nfca_hci_se_io +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x9a22347f st21nfca_hci_disable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xb82502a8 st21nfca_hci_loopback_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xbf3bbb91 st21nfca_hci_probe +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xc18fe44c st21nfca_se_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xe148c189 st21nfca_connectivity_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xe3967b0e st21nfca_apdu_reader_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xe7613f92 st21nfca_hci_enable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xe9a13479 st21nfca_se_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xeca1d08c st21nfca_dep_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xed011f8f st21nfca_dep_init +EXPORT_SYMBOL drivers/ntb/ntb 0x0d49dbf3 ntb_clear_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0x1d9d2566 __ntb_register_client +EXPORT_SYMBOL drivers/ntb/ntb 0x2c6a1cfa ntb_db_event +EXPORT_SYMBOL drivers/ntb/ntb 0x3a362dc6 ntb_default_peer_port_idx +EXPORT_SYMBOL drivers/ntb/ntb 0x44eb676e ntb_msg_event +EXPORT_SYMBOL drivers/ntb/ntb 0x493a9060 ntbm_msi_request_threaded_irq +EXPORT_SYMBOL drivers/ntb/ntb 0x4c88dfc1 ntbm_msi_free_irq +EXPORT_SYMBOL drivers/ntb/ntb 0x4d4a3ad2 ntb_default_peer_port_count +EXPORT_SYMBOL drivers/ntb/ntb 0x53b22092 ntb_msi_init +EXPORT_SYMBOL drivers/ntb/ntb 0x57415ab3 ntb_unregister_device +EXPORT_SYMBOL drivers/ntb/ntb 0x599664b1 ntb_unregister_client +EXPORT_SYMBOL drivers/ntb/ntb 0x5e4b331f ntb_msi_peer_trigger +EXPORT_SYMBOL drivers/ntb/ntb 0x78b05e1b ntb_msi_setup_mws +EXPORT_SYMBOL drivers/ntb/ntb 0x799441c1 ntb_set_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0x826dfaaf ntb_register_device +EXPORT_SYMBOL drivers/ntb/ntb 0x88ff3c62 ntb_link_event +EXPORT_SYMBOL drivers/ntb/ntb 0x96ca1208 ntb_msi_clear_mws +EXPORT_SYMBOL drivers/ntb/ntb 0x9c85b811 ntb_default_port_number +EXPORT_SYMBOL drivers/ntb/ntb 0xfa7c30aa ntb_msi_peer_addr +EXPORT_SYMBOL drivers/ntb/ntb 0xfceae7c1 ntb_default_peer_port_number +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x3896c0ad nvdimm_namespace_attach_btt +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x4b85b1f3 nvdimm_namespace_detach_btt +EXPORT_SYMBOL drivers/parport/parport 0x032a21de parport_ieee1284_epp_read_addr +EXPORT_SYMBOL drivers/parport/parport 0x0c5e90e6 parport_release +EXPORT_SYMBOL drivers/parport/parport 0x0e2a4b1f parport_write +EXPORT_SYMBOL drivers/parport/parport 0x0e8f9b9d parport_ieee1284_epp_read_data +EXPORT_SYMBOL drivers/parport/parport 0x0ff66341 parport_negotiate +EXPORT_SYMBOL drivers/parport/parport 0x110b70e7 parport_unregister_driver +EXPORT_SYMBOL drivers/parport/parport 0x135ebd60 parport_set_timeout +EXPORT_SYMBOL drivers/parport/parport 0x1b325507 parport_announce_port +EXPORT_SYMBOL drivers/parport/parport 0x1cc21d00 parport_ieee1284_epp_write_data +EXPORT_SYMBOL drivers/parport/parport 0x227f72f0 parport_claim_or_block +EXPORT_SYMBOL drivers/parport/parport 0x40cd05b5 parport_register_dev_model +EXPORT_SYMBOL drivers/parport/parport 0x411f05a0 __parport_register_driver +EXPORT_SYMBOL drivers/parport/parport 0x433a472b parport_get_port +EXPORT_SYMBOL drivers/parport/parport 0x455e7c5b parport_find_number +EXPORT_SYMBOL drivers/parport/parport 0x47afb60a parport_ieee1284_ecp_write_data EXPORT_SYMBOL drivers/parport/parport 0x4d2a941b parport_ieee1284_interrupt EXPORT_SYMBOL drivers/parport/parport 0x5e3a3912 parport_irq_handler -EXPORT_SYMBOL drivers/parport/parport 0x5e7a48c8 parport_claim_or_block -EXPORT_SYMBOL drivers/parport/parport 0x64d14303 parport_unregister_device -EXPORT_SYMBOL drivers/parport/parport 0x68ebf0d5 parport_ieee1284_ecp_write_data -EXPORT_SYMBOL drivers/parport/parport 0x7546cf64 parport_write -EXPORT_SYMBOL drivers/parport/parport 0x8da037d1 parport_announce_port -EXPORT_SYMBOL drivers/parport/parport 0x8fe77211 parport_claim -EXPORT_SYMBOL drivers/parport/parport 0x92dad739 parport_ieee1284_epp_read_data -EXPORT_SYMBOL drivers/parport/parport 0x93fe63d1 parport_register_dev_model -EXPORT_SYMBOL drivers/parport/parport 0x96c156b8 parport_put_port -EXPORT_SYMBOL drivers/parport/parport 0x99f37c99 parport_ieee1284_ecp_read_data -EXPORT_SYMBOL drivers/parport/parport 0x9abacc6b parport_negotiate -EXPORT_SYMBOL drivers/parport/parport 0xa7ec7c50 parport_set_timeout -EXPORT_SYMBOL drivers/parport/parport 0xad3f1f46 parport_find_number -EXPORT_SYMBOL drivers/parport/parport 0xc2fc34d7 parport_unregister_driver -EXPORT_SYMBOL drivers/parport/parport 0xcb380e3c parport_ieee1284_read_byte -EXPORT_SYMBOL drivers/parport/parport 0xd0192cc7 parport_wait_peripheral -EXPORT_SYMBOL drivers/parport/parport 0xd1522df5 __parport_register_driver -EXPORT_SYMBOL drivers/parport/parport 0xd88ab847 parport_get_port -EXPORT_SYMBOL drivers/parport/parport 0xdb083876 parport_release -EXPORT_SYMBOL drivers/parport/parport 0xdd65bbdf parport_wait_event -EXPORT_SYMBOL drivers/parport/parport 0xe730b627 parport_del_port -EXPORT_SYMBOL drivers/parport/parport 0xeeffc295 parport_register_port -EXPORT_SYMBOL drivers/parport/parport_pc 0x2f08dab6 parport_pc_probe_port -EXPORT_SYMBOL drivers/parport/parport_pc 0x4abebf25 parport_pc_unregister_port -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x072db129 pcmcia_get_mac_from_cis -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x11d81af7 pcmcia_loop_tuple -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x23223bdf pcmcia_request_io -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x2f9660ad pcmcia_get_tuple -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x351402b9 pcmcia_register_driver -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x3d884f65 pcmcia_loop_config -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x4899c15c pcmcia_dev_present -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x66b1e0bd pcmcia_fixup_vpp -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x6da1db9f pcmcia_release_window -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x7b4f6137 pcmcia_request_irq -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x892638b9 pcmcia_request_window -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xa579b4bc pcmcia_fixup_iowidth -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xad766348 pcmcia_disable_device -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xb024148b pcmcia_read_config_byte -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xb8311dd4 pcmcia_map_mem_page -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xba8ad312 pcmcia_unregister_driver +EXPORT_SYMBOL drivers/parport/parport 0x6a9a3c7e parport_register_port +EXPORT_SYMBOL drivers/parport/parport 0x78a8b4ef parport_unregister_device +EXPORT_SYMBOL drivers/parport/parport 0x7ddfd23f parport_ieee1284_write_compat +EXPORT_SYMBOL drivers/parport/parport 0x830a7eba parport_read +EXPORT_SYMBOL drivers/parport/parport 0x8a0ef254 parport_del_port +EXPORT_SYMBOL drivers/parport/parport 0x8bb43096 parport_ieee1284_read_nibble +EXPORT_SYMBOL drivers/parport/parport 0xb948f0b0 parport_ieee1284_read_byte +EXPORT_SYMBOL drivers/parport/parport 0xba163d18 parport_ieee1284_ecp_read_data +EXPORT_SYMBOL drivers/parport/parport 0xbd140f13 parport_ieee1284_epp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0xc3f68102 parport_wait_peripheral +EXPORT_SYMBOL drivers/parport/parport 0xc5bd8801 parport_find_base +EXPORT_SYMBOL drivers/parport/parport 0xca72101f parport_remove_port +EXPORT_SYMBOL drivers/parport/parport 0xcd2454bb parport_put_port +EXPORT_SYMBOL drivers/parport/parport 0xd9f9bc65 parport_claim +EXPORT_SYMBOL drivers/parport/parport 0xe192dce2 parport_wait_event +EXPORT_SYMBOL drivers/parport/parport 0xe679a419 parport_ieee1284_ecp_write_addr +EXPORT_SYMBOL drivers/parport/parport_pc 0x2cd0e91a parport_pc_probe_port +EXPORT_SYMBOL drivers/parport/parport_pc 0xc06b2cee parport_pc_unregister_port +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x0ce2bfd8 pcmcia_map_mem_page +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x2234afaa pcmcia_register_driver +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x284e55af pcmcia_fixup_iowidth +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x33fb28d4 pcmcia_get_mac_from_cis +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x35c85a53 pcmcia_unregister_driver +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x48c2d3b6 pcmcia_enable_device +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x4a839281 pcmcia_get_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x54177742 pcmcia_dev_present +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x5704f1c7 pcmcia_request_window +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x6c5f21ca pcmcia_request_irq EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xbb312663 pcmcia_parse_tuple -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xc410f986 pcmcia_enable_device -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xd90e718d pcmcia_write_config_byte -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x06259f7d pcmcia_socket_class +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xc70dda12 pcmcia_loop_config +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xd80230d4 pcmcia_disable_device +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xdb380a1d pcmcia_read_config_byte +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xde51614b pcmcia_fixup_vpp +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xe3373510 pcmcia_write_config_byte +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xe6562105 pcmcia_release_window +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xeeb57145 pcmcia_loop_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xff98f98f pcmcia_request_io +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x08610446 pcmcia_put_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x0cfe53d8 pcmcia_get_socket EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x212db8d2 pcmcia_socket_list -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x2a05cf0a pcmcia_register_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x63075abf pcmcia_parse_events -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x82feae4b pcmcia_unregister_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xb08fa07c pcmcia_parse_uevents -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xb894162d pcmcia_get_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xcbd1c9c6 pcmcia_put_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x2f67ad40 pcmcia_register_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x41d43644 pcmcia_parse_uevents +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x90e3da36 pcmcia_socket_class +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x98e44fd0 pcmcia_parse_events EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xcf97f3bd dead_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xd3444847 pcmcia_get_socket_by_nr -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xec8e2a4a pccard_register_pcmcia -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xf15750ce pcmcia_reset_card +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xd5c6722c pcmcia_reset_card +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xd793cb8a pcmcia_unregister_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xe663515a pccard_register_pcmcia +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xe9ff8611 pcmcia_get_socket_by_nr EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xf942709b pcmcia_socket_list_rwsem -EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0xa5aa58e6 pccard_static_ops -EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0xdd85c6a1 pccard_nonstatic_ops -EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x0defe621 cros_ec_resume -EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x13ee500e cros_ec_suspend -EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x983afa71 cros_ec_register -EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0xbd1568d3 cros_ec_unregister +EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0x78f89301 pccard_nonstatic_ops +EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0xe6365ee8 pccard_static_ops +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x009ac41a cros_ec_register +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x3344175d cros_ec_unregister +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x5cdbfebc cros_ec_suspend +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x7fdfca6d 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 @@ -3959,601 +3975,601 @@ 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 0x754e36f4 __wmi_driver_register -EXPORT_SYMBOL drivers/platform/x86/wmi 0xc4190930 wmi_driver_unregister -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x024a748e unregister_rpmsg_driver -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x0c06c8ba rpmsg_find_device -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x132dbcb8 rpmsg_send -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x253fda97 rpmsg_trysend -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x2af7bf97 rpmsg_unregister_device -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x2bb56836 __register_rpmsg_driver -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x3264d2b6 rpmsg_sendto -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x5699f52b rpmsg_register_device -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x622cb09f rpmsg_send_offchannel -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x70d8d58f rpmsg_create_channel -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x83bf472d rpmsg_release_channel -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x933a8be5 rpmsg_poll -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x9a2b3525 rpmsg_trysendto -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xcf832e2d rpmsg_destroy_ept -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xd0069243 rpmsg_create_ept -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xf7d0f961 rpmsg_trysend_offchannel -EXPORT_SYMBOL drivers/rpmsg/rpmsg_ns 0x748bb06a rpmsg_ns_register_device -EXPORT_SYMBOL drivers/rtc/rtc-ds1685 0xbfc07acb ds1685_rtc_poweroff +EXPORT_SYMBOL drivers/platform/x86/wmi 0x5529b0a6 wmi_driver_unregister +EXPORT_SYMBOL drivers/platform/x86/wmi 0xbebd2225 __wmi_driver_register +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x121e70c1 rpmsg_create_ept +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x1a0f28e8 rpmsg_trysendto +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x2d9da4de rpmsg_register_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x46a350bc rpmsg_trysend_offchannel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x50057805 __register_rpmsg_driver +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x7ccfe50b rpmsg_unregister_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x8c303d15 rpmsg_sendto +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x9e664854 rpmsg_find_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xa40e5bda unregister_rpmsg_driver +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xa51e3998 rpmsg_send +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xa5e05406 rpmsg_release_channel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xad0682da rpmsg_trysend +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xb32625f7 rpmsg_poll +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xb38c4540 rpmsg_send_offchannel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xe40bb81e rpmsg_create_channel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xfe7c3992 rpmsg_destroy_ept +EXPORT_SYMBOL drivers/rpmsg/rpmsg_ns 0x0140ff75 rpmsg_ns_register_device +EXPORT_SYMBOL drivers/rtc/rtc-ds1685 0xf4348b8c ds1685_rtc_poweroff EXPORT_SYMBOL drivers/scsi/53c700 0x3d9cece0 NCR_700_intr -EXPORT_SYMBOL drivers/scsi/53c700 0xa79fc0ec NCR_700_detect -EXPORT_SYMBOL drivers/scsi/53c700 0xc3f0ef17 NCR_700_release -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x41d83a32 scsi_esp_template +EXPORT_SYMBOL drivers/scsi/53c700 0x653ad601 NCR_700_release +EXPORT_SYMBOL drivers/scsi/53c700 0xf6a440be NCR_700_detect EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4a29ab38 scsi_esp_intr -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x7a838cfc scsi_esp_register -EXPORT_SYMBOL drivers/scsi/esp_scsi 0xb55b23f4 scsi_esp_cmd -EXPORT_SYMBOL drivers/scsi/esp_scsi 0xe2c5a634 scsi_esp_unregister -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x00bc9836 fcoe_ctlr_link_up -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x0951f1a5 fcoe_ctlr_link_down -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x14e78740 fcoe_ctlr_recv -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x40c79542 fcoe_fcf_get_selected -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x43c67aa6 fcoe_ctlr_set_fip_mode -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x683f17d4 fcoe_ctlr_recv_flogi -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x6d417542 fcoe_transport_detach -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x9c01f972 fcoe_transport_attach -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xb7efb5a8 fcoe_ctlr_destroy -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xc48e3bea fcoe_ctlr_init -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xc6677a48 fcoe_ctlr_els_send -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x01aeda60 fc_lport_bsg_request -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0c8df138 fc_disc_config -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0d49e44b fc_exch_mgr_list_clone -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x107f845f fc_elsct_send -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x11436644 fc_fabric_login -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1360c8a7 fc_queuecommand -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x144bbb2e fc_set_rport_loss_tmo -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1c3525dc fc_eh_abort -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1e9e75c2 fc_get_host_stats +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x7306addb scsi_esp_unregister +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xb5740c70 scsi_esp_register +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xbda699be scsi_esp_template +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xfea346e4 scsi_esp_cmd +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x0162c798 fcoe_ctlr_set_fip_mode +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x43d0fea3 fcoe_ctlr_init +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x49eee114 fcoe_transport_attach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x5a5e116d fcoe_ctlr_recv +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x6f3d8c08 fcoe_ctlr_els_send +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x8193cf68 fcoe_ctlr_link_down +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x81e33941 fcoe_ctlr_destroy +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x9b45e844 fcoe_ctlr_recv_flogi +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xa63b24d0 fcoe_ctlr_link_up +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xae6c2523 fcoe_transport_detach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xdb9cee5a fcoe_fcf_get_selected +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x00b42764 fc_exch_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x017df85c fc_lport_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x12e51a8f fc_fc4_deregister_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x133f893f fc_rport_terminate_io +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1f816a0c fc_slave_alloc EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22b90986 fc_exch_mgr_del -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x236e2288 fc_exch_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x25fea018 fc_lport_destroy -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x269070b5 fc_seq_assign -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2c0a562e fc_exch_update_stats -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2d95ab6f fc_lport_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x241fde22 fc_vport_id_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x26002ff9 fc_rport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x290e1493 fc_exch_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2bb2a96c fc_fc4_register_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2c0b66e8 fc_get_host_port_state EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2eccbfa6 fc_lport_flogi_resp -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2edbe888 fc_rport_create -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x31c857f1 fc_rport_lookup -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x33bdbec3 fc_lport_iterate -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3abc533a fc_lport_recv -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3d0608fa fc_fcp_destroy -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3d1b8ed6 fc_disc_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4dd2dc4c fc_elsct_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5eeb0b9e fc_rport_terminate_io -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x67c01bd1 fc_rport_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3df487c8 fc_exch_seq_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3fc3521c fc_fabric_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x449ec781 fc_lport_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x48fd1c1b fc_linkdown +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4b038d46 fc_disc_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4c1199ee fc_fcp_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4f169417 fc_exch_mgr_free +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x503c4b0d fc_lport_bsg_request +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x55c5d27e fc_rport_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x55cf769d fc_lport_set_local_id +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x561ca4d5 fc_exch_mgr_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x58859752 libfc_vport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5f282980 fc_disc_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6c9dd2bf fc_set_mfs +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6d73d6a1 fc_get_host_speed +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x70ee39d2 fc_rport_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x71f6b5c7 fc_seq_send EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x731837c4 fc_lport_logo_resp -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7a4425ef fc_vport_setlink +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x782955b4 fc_vport_setlink EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7f3407a7 fc_seq_start_next -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x805899ef fc_lport_reset EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x80e34c44 fc_frame_alloc_fill EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x811811e0 fc_exch_done +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x821bfc7d fc_lport_recv EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8264d30a _fc_frame_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8a524df5 fc_exch_seq_send -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8b332aa1 fc_eh_device_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8b540085 fc_eh_host_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x90762538 fc_exch_mgr_free -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x996f8891 fc_fcp_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9aaf178c fc_seq_send -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9cf20310 fc_fc4_register_provider -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9d444974 fc_lport_set_local_id +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x83aef497 fc_queuecommand +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x94c9718e fc_fabric_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x94d86660 fc_exch_update_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9a2a97dc fc_eh_host_reset EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9d50ed7e fc_rport_destroy EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa1bcd198 fc_cpu_mask -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa73c5b6a fc_linkdown -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa888a298 fc_slave_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa90f2720 fc_vport_id_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa3a0ce84 fc_get_host_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa6cc9ee0 fc_elsct_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa7652309 fc_eh_abort +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xabee0f59 fc_rport_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xac39ea1b fc_exch_mgr_reset EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb0ddd5a1 fc_rport_flush_queue -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb5c272a5 fc_set_mfs EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb689cd32 fc_frame_crc_check +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbe5e0b13 fc_fcp_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbed1aa55 fc_lport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc04e6dcf fc_lport_iterate +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc0bda421 fc_exch_mgr_list_clone EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc2dd8cd4 fc_fill_reply_hdr -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc4284816 fc_get_host_speed -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc5c56b0e fc_linkup -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc6df5054 fc_lport_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc7d6ed9d fc_exch_recv -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc9adfc57 fc_exch_mgr_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcc3e5141 fc_exch_mgr_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd37c7178 fc_get_host_port_state -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd5956e50 libfc_vport_create -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe0bab4f9 fc_fabric_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc34fbe14 fc_seq_assign +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc8219ffd fc_exch_mgr_add +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd1c075d5 fc_lport_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd6f244be fc_eh_device_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd7fbbb26 fc_set_rport_loss_tmo +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe160d6fb fc_elsct_init EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe3b928e9 fc_fill_hdr -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe5a922d6 fc_rport_recv_req -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe5c530ed fc_exch_mgr_add EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe5cf06b5 fc_lport_notifier_head -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf88a7415 fc_fc4_deregister_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xede9aa66 fc_rport_recv_req +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf5db4164 fc_linkup EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfa4667d1 fc_seq_release EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfeb5a73f fc_seq_set_resp -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xffb29834 fc_rport_logoff -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x0f0e44d7 sas_prep_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x4935d4d8 sas_suspend_ha EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x4a8e3d34 try_test_sas_gpio_gp_bit -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x93090df9 sas_resume_ha -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xd00de70a sas_suspend_ha -EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x5e463e2d mraid_mm_register_adp +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x5e1b95b6 sas_prep_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xab65611f 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 0x2cad5b9c qlt_lport_register -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x37b1bcf1 qlt_unreg_sess -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x5097f41f qlt_stop_phase1 -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x518287ba qlt_rdy_to_xfer -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x591e6a34 qlt_xmit_tm_rsp -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x7675d78e qlt_free_mcmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x7b1f5822 qlt_abort_cmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x7ff27a91 qlt_enable_vha -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xb14af834 qlt_lport_deregister -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xcdb73cd1 qlt_xmit_response -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xdc7c2680 qlt_free_cmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xe8066a6a qlt_stop_phase2 -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x0f7e8c2d qlogicfas408_disable_ints -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x1a9185d8 qlogicfas408_abort +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0xb62aa00b mraid_mm_register_adp +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x1599ad14 qlt_free_mcmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x1b815be5 qlt_enable_vha +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x2aa1ae2d qlt_stop_phase2 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x443cb87d qlt_xmit_response +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x67f228fb qlt_abort_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x7d08b144 qlt_rdy_to_xfer +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x7eaf6693 qlt_stop_phase1 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x8d44bfd0 qlt_unreg_sess +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x9542bf39 qlt_lport_register +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xcfb4feb3 qlt_free_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xdfdc7274 qlt_lport_deregister +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xebff3b73 qlt_xmit_tm_rsp EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x1f55cd70 qlogicfas408_ihandl +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x34e6e397 qlogicfas408_info EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x3fd8cd71 qlogicfas408_detect -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x79a526b1 qlogicfas408_queuecommand -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x99e53c94 qlogicfas408_info -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xb2a839be qlogicfas408_biosparam -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xc7c2f803 qlogicfas408_host_reset +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x783991e9 qlogicfas408_abort +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x7fcbda9a qlogicfas408_disable_ints +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x881304ed qlogicfas408_biosparam +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xa8d6da62 qlogicfas408_host_reset +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xb0699b6b qlogicfas408_queuecommand EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xe76b3b20 qlogicfas408_get_chip_type EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xf2b95199 qlogicfas408_setup -EXPORT_SYMBOL drivers/scsi/raid_class 0x123eb633 raid_component_add -EXPORT_SYMBOL drivers/scsi/raid_class 0x8e8eff58 raid_class_attach -EXPORT_SYMBOL drivers/scsi/raid_class 0xa5ca31c3 raid_class_release -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x0322d650 fc_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x310fe4a4 fc_remove_host +EXPORT_SYMBOL drivers/scsi/raid_class 0x0fe7cfd9 raid_component_add +EXPORT_SYMBOL drivers/scsi/raid_class 0x665f5644 raid_class_release +EXPORT_SYMBOL drivers/scsi/raid_class 0xb0da1045 raid_class_attach +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x09c3ffe3 fc_block_scsi_eh +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x19b8ce4d fc_vport_terminate +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x21b12080 fc_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x32e4b240 fc_attach_transport EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x375f8bbd fc_get_event_number -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x540f3df1 fc_find_rport_by_wwpn -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x62942bf3 fc_block_scsi_eh -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7e6143e9 fc_host_fpin_rcv -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x95ff8e16 fc_vport_create -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xa18d35da fc_remote_port_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xa5e9cf1e fc_host_post_fc_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xa6af3345 fc_remote_port_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xb7edaf6d fc_block_rport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xbaa58b8c fc_remote_port_rolechg -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xbf5f3813 fc_eh_timed_out -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xed2ed3c5 fc_host_post_vendor_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xed7a5f09 fc_vport_terminate -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xefd6a857 fc_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xfbfd72cb scsi_is_fc_rport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xfda7e6a2 fc_host_post_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x005d2684 sas_phy_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x01e86c2d sas_phy_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0de3e13f sas_expander_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1633d4bd sas_phy_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1a39be1b sas_port_mark_backlink -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1b9e3aef sas_port_add_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2dbf1c9a sas_rphy_unlink -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2e2c3cc7 sas_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x345b11c8 sas_remove_children -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x36532638 sas_port_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3ab9c22a sas_port_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4bf0ceb7 sas_rphy_remove -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x528548e0 sas_port_alloc_num -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5a76aff3 sas_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x63f73cb9 sas_rphy_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6416d36a scsi_is_sas_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6cff8b73 scsi_is_sas_rphy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7c355dd0 sas_rphy_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x93772eed sas_rphy_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa05c48ff sas_port_delete_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa29bc360 sas_port_get_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb0366bbc sas_remove_host -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb2db6e1d sas_phy_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc0038e59 sas_get_address -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc3af01b5 sas_read_port_mode_page -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc4a7b924 sas_port_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd53a5071 scsi_is_sas_port -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd7fe6198 sas_port_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf88e8c5b sas_end_device_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x1efc2b4c spi_dv_device -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x23624b83 spi_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x3847072b fc_block_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x3f3e852d fc_host_post_vendor_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x5d65a6b5 fc_vport_create +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x717b4c2e fc_remote_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7da65ce7 scsi_is_fc_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x93c5ea00 fc_host_fpin_rcv +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x974ed72d fc_eh_timed_out +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xb3d8dae4 fc_remote_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xbff26ebc fc_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xd8853bd0 fc_find_rport_by_wwpn +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xdc0c627e fc_host_post_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xe3973db3 fc_remote_port_rolechg +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xf3c1ce8a fc_host_post_fc_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x01b20723 sas_port_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x04f6feed sas_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x055cb6fd sas_phy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0c539026 scsi_is_sas_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x140dba3c sas_port_alloc_num +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1627c14a sas_rphy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1942a29f sas_rphy_remove +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x258de957 sas_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x27b55f7e sas_port_add_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3b297091 sas_end_device_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x44879d81 sas_port_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x480fa83c sas_port_mark_backlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x53cfb2a1 sas_port_delete_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5d8eb21e sas_phy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5fc6a45e sas_read_port_mode_page +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x70ec91a0 sas_get_address +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x75497115 sas_expander_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x88ad4b54 sas_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8d15e2de sas_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x905cc7e5 sas_rphy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x97b01fff sas_port_get_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa172f46c scsi_is_sas_rphy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc3f6cd1c sas_phy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc6f8f6bd scsi_is_sas_port +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd2050339 sas_rphy_unlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xdd7d2597 sas_rphy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xea1053dd sas_remove_children +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf51b1a63 sas_phy_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf5a45aa4 sas_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x02ebc966 spi_dv_device EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x6ec4fd5a spi_schedule_dv_device -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xa69a737d spi_display_xfer_agreement -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xfaea6fc6 spi_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x133d851e srp_start_tl_fail_timers +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x84f179ca spi_display_xfer_agreement +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x9c693dfa spi_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xabd670fa spi_schedule_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xc46d83c0 spi_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x28f54184 srp_rport_put +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x3eb225e5 srp_rport_get EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x405b6e05 srp_parse_tmo -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x646192fc srp_rport_put -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x9ce67bd1 srp_rport_get -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xf21be1a9 srp_timed_out -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xfd85378f srp_reconnect_rport -EXPORT_SYMBOL drivers/scsi/ufs/tc-dwc-g210 0x075bf16d tc_dwc_g210_config_40_bit -EXPORT_SYMBOL drivers/scsi/ufs/tc-dwc-g210 0xd90e4352 tc_dwc_g210_config_20_bit -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x133e6d47 ufshcd_system_suspend -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x1871ec13 ufshcd_runtime_suspend -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x36f520f0 ufshcd_map_desc_id_to_length -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x60e7925e ufshcd_system_resume -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0xb8c2c9f4 ufshcd_alloc_host -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0xebceea42 ufshcd_get_local_unipro_ver -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0xedb4a5e1 ufshcd_shutdown -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0xf4b9e791 ufshcd_runtime_resume -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-dwc 0x0bf90dc3 ufshcd_dwc_link_startup_notify -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-dwc 0xb71a4aa5 ufshcd_dwc_dme_set_attrs -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x05ea3e40 qmi_handle_release +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x47f781d8 srp_timed_out +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x4827ec5a srp_start_tl_fail_timers +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xbbb09d11 srp_reconnect_rport +EXPORT_SYMBOL drivers/scsi/ufs/tc-dwc-g210 0x243966e1 tc_dwc_g210_config_40_bit +EXPORT_SYMBOL drivers/scsi/ufs/tc-dwc-g210 0x282f2025 tc_dwc_g210_config_20_bit +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x0a737338 ufshcd_system_suspend +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x1b5442e1 ufshcd_system_resume +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x43664981 ufshcd_shutdown +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x50563dd9 ufshcd_map_desc_id_to_length +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0xb24b872c ufshcd_runtime_resume +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0xc1fd9201 ufshcd_alloc_host +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0xd60809f2 ufshcd_get_local_unipro_ver +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0xef0fd2f0 ufshcd_runtime_suspend +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-dwc 0x03a1fae4 ufshcd_dwc_dme_set_attrs +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-dwc 0x7960def0 ufshcd_dwc_link_startup_notify EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x0ef12cc9 qmi_encode_message -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x211ce05f qmi_txn_init EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x21ce5888 qmi_response_type_v01_ei -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x3d1d23e3 qmi_send_indication -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x66f54e59 qmi_send_response +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x564e5e62 qmi_add_server +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x567139f2 qmi_handle_init EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x68772745 qmi_decode_message -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x7225c31f qmi_txn_cancel -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x95bf6315 qmi_handle_init -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xa49e34a9 qmi_txn_wait -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xb10b45e2 qmi_add_server -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xb375b522 qmi_send_request -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xed2b03da qmi_add_lookup -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x11991f7e sdw_extract_slave_id +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x9029a4b4 qmi_send_request +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x9afcdaa9 qmi_add_lookup +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xa3105458 qmi_send_response +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xb033036c qmi_txn_wait +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xb55f9a1e qmi_handle_release +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xbdb6d259 qmi_txn_cancel +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xda4a4f7e qmi_send_indication +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xf399c513 qmi_txn_init +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x03a253fb sdw_nread +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x0d81a747 sdw_update_no_pm +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x0f16edc3 sdw_bread_no_pm_unlocked +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x12ceee97 sdw_stream_remove_slave EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x16d1706b sdw_prepare_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x1d36acb9 sdw_stream_remove_master EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x1deee061 sdw_find_row_index -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x2c00e51a sdw_stream_remove_slave -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x2eb7a306 sdw_stream_add_slave +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x290ea594 sdw_read EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x3b0a8582 sdw_startup_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x3e3b9db4 sdw_slave_read_prop -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x3f41633a sdw_nwrite +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x3b4c54bb sdw_bus_prep_clk_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x3ebb6764 sdw_handle_slave_status +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x3ee79567 sdw_read_no_pm +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x3f85ef89 sdw_master_read_prop EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x4cde88bf sdw_disable_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x4e74469a sdw_stream_add_master -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x5b126496 sdw_bus_master_add +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x5970d389 sdw_stream_remove_master +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x5fa33b7b sdw_write EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x60e31fbb sdw_find_col_index -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x6147badc sdw_bus_exit_clk_stop -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x61e44793 sdw_read -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x623ef83c sdw_master_read_prop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x69da8f32 sdw_bus_master_delete EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x6f95b16b sdw_shutdown_stream EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x71891d59 sdw_deprepare_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x7a5dc837 sdw_bread_no_pm_unlocked -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x805bcbc1 sdw_handle_slave_status -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x8803dfbc sdw_bwrite_no_pm_unlocked -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x93e219a7 sdw_nread +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x772f1621 sdw_nwrite +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x7b6c980a sdw_slave_add +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x82d5c5d5 sdw_slave_read_prop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x8416ee27 sdw_write_no_pm +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x9722e532 sdw_bwrite_no_pm_unlocked EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x9e122d79 sdw_alloc_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xa0f5f9e5 sdw_write -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xb50edb5c sdw_update -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xb9292c6f sdw_write_no_pm -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xb9982a3c sdw_bus_master_delete +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x9f299b5e sdw_bus_exit_clk_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xaf462b2a sdw_stream_add_master +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xb198057a sdw_bus_master_add +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xb5e07ad1 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 0xc561736c sdw_read_no_pm -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xd6b55f8c sdw_update_no_pm +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xc6dd1895 sdw_update +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xd82a0b8b sdw_compare_devid EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xda5bce09 sdw_release_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xdbead4fa sdw_bus_clk_stop -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xde7c5d45 sdw_bus_prep_clk_stop -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xe4dc8d86 sdw_slave_add -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xef8e848c sdw_compare_devid -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xf260a7e6 sdw_clear_slave_status +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xe4adc376 sdw_stream_add_slave +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xe9193f00 sdw_extract_slave_id EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xf53ba0b8 sdw_rows -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x0905226b cdns_xfer_msg -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x1e05676f sdw_cdns_init -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x2811e836 sdw_cdns_config_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x2f2ec5b5 sdw_cdns_probe +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xfca504ea sdw_bus_clk_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x168f2449 sdw_cdns_alloc_pdi +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x2b4e707c sdw_cdns_pdi_init EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x34712074 sdw_cdns_irq -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x35197d99 sdw_cdns_alloc_pdi -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x48e073ac cdns_set_sdw_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x4a3a987f sdw_cdns_check_self_clearing_bits -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x727d0cca sdw_cdns_is_clock_stop -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x7df986d9 cdns_xfer_msg_defer -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x804d3a41 sdw_cdns_exit_reset -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x83da20e6 cdns_reset_page_addr -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xcf74e2f5 sdw_cdns_clock_stop -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xcff56ec4 sdw_cdns_enable_interrupt -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xd43b9f88 sdw_cdns_clock_restart -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xd5755556 sdw_cdns_pdi_init -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xdced8ae1 cdns_bus_conf -EXPORT_SYMBOL drivers/soundwire/soundwire-generic-allocation 0xb96558cf sdw_compute_params -EXPORT_SYMBOL drivers/ssb/ssb 0x2e95e45a ssb_pmu_set_ldo_voltage -EXPORT_SYMBOL drivers/ssb/ssb 0x3aa50756 ssb_bus_may_powerdown -EXPORT_SYMBOL drivers/ssb/ssb 0x3d3eecad ssb_bus_unregister -EXPORT_SYMBOL drivers/ssb/ssb 0x50337f00 ssb_bus_sdiobus_register -EXPORT_SYMBOL drivers/ssb/ssb 0x60a8c2f2 ssb_commit_settings -EXPORT_SYMBOL drivers/ssb/ssb 0x6578fe75 ssb_clockspeed -EXPORT_SYMBOL drivers/ssb/ssb 0x65faa076 ssb_bus_suspend -EXPORT_SYMBOL drivers/ssb/ssb 0x86df0052 ssb_device_is_enabled -EXPORT_SYMBOL drivers/ssb/ssb 0x870542f2 __ssb_driver_register -EXPORT_SYMBOL drivers/ssb/ssb 0x8cc260e7 ssb_device_disable -EXPORT_SYMBOL drivers/ssb/ssb 0xa6753c15 ssb_bus_powerup -EXPORT_SYMBOL drivers/ssb/ssb 0xba5b296d ssb_set_devtypedata -EXPORT_SYMBOL drivers/ssb/ssb 0xbc89973b ssb_bus_resume -EXPORT_SYMBOL drivers/ssb/ssb 0xc8cc6181 ssb_driver_unregister +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x3db49cf5 cdns_reset_page_addr +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x441fbe8e sdw_cdns_exit_reset +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x49591e07 cdns_bus_conf +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x55d73013 sdw_cdns_enable_interrupt +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x5981e73c sdw_cdns_check_self_clearing_bits +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x7bc47329 cdns_set_sdw_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x86edbc12 sdw_cdns_config_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xa9681ab9 sdw_cdns_is_clock_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xb560565f sdw_cdns_clock_restart +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xc009c807 sdw_cdns_init +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xcbe7d149 sdw_cdns_probe +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xdf335312 sdw_cdns_clock_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xefdb93e6 cdns_xfer_msg_defer +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xf3ebebfb cdns_xfer_msg +EXPORT_SYMBOL drivers/soundwire/soundwire-generic-allocation 0x8add9b94 sdw_compute_params +EXPORT_SYMBOL drivers/ssb/ssb 0x09d2e882 ssb_pcicore_dev_irqvecs_enable +EXPORT_SYMBOL drivers/ssb/ssb 0x1cf5b209 ssb_device_disable +EXPORT_SYMBOL drivers/ssb/ssb 0x26a4cd19 ssb_device_is_enabled +EXPORT_SYMBOL drivers/ssb/ssb 0x3424217a ssb_dma_translation +EXPORT_SYMBOL drivers/ssb/ssb 0x3b32a7b3 ssb_pmu_set_ldo_paref +EXPORT_SYMBOL drivers/ssb/ssb 0x3beadb4e ssb_bus_powerup +EXPORT_SYMBOL drivers/ssb/ssb 0x4868df3f ssb_set_devtypedata +EXPORT_SYMBOL drivers/ssb/ssb 0x88b7f8aa ssb_pcihost_register +EXPORT_SYMBOL drivers/ssb/ssb 0x8c925cd8 ssb_driver_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0x9b1f941e ssb_bus_suspend +EXPORT_SYMBOL drivers/ssb/ssb 0xae9cb05c ssb_bus_resume +EXPORT_SYMBOL drivers/ssb/ssb 0xb5f1ea0d ssb_chipco_gpio_control +EXPORT_SYMBOL drivers/ssb/ssb 0xb65b65c3 ssb_pmu_set_ldo_voltage +EXPORT_SYMBOL drivers/ssb/ssb 0xc03315a7 ssb_commit_settings +EXPORT_SYMBOL drivers/ssb/ssb 0xc2f4843c ssb_bus_unregister EXPORT_SYMBOL drivers/ssb/ssb 0xcb17f1cb ssb_admatch_base -EXPORT_SYMBOL drivers/ssb/ssb 0xcbd71024 ssb_device_enable -EXPORT_SYMBOL drivers/ssb/ssb 0xd9630353 ssb_chipco_gpio_control +EXPORT_SYMBOL drivers/ssb/ssb 0xd1dc2217 ssb_bus_may_powerdown EXPORT_SYMBOL drivers/ssb/ssb 0xdfc7c6ef ssb_admatch_size -EXPORT_SYMBOL drivers/ssb/ssb 0xf06aebf2 ssb_pcicore_dev_irqvecs_enable -EXPORT_SYMBOL drivers/ssb/ssb 0xfb258768 ssb_pcihost_register -EXPORT_SYMBOL drivers/ssb/ssb 0xfd87ff2d ssb_pmu_set_ldo_paref -EXPORT_SYMBOL drivers/ssb/ssb 0xff2344b7 ssb_dma_translation -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x10cff2af fbtft_unregister_backlight -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x1ff91efa fbtft_write_vmem16_bus16 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x32a78fba fbtft_write_reg16_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x38e52ac7 fbtft_write_reg16_bus16 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x396a2196 fbtft_probe_common -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x48dd8995 fbtft_write_vmem16_bus9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x4cabf20e fbtft_write_gpio16_wr_latched -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x553d3b2d fbtft_framebuffer_release -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x56e81927 fbtft_write_gpio8_wr -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x5948273c fbtft_register_framebuffer -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x5cb9f048 fbtft_read_spi -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x5d634a0d fbtft_framebuffer_alloc -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x5f59b46e fbtft_remove_common -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x680b0293 fbtft_write_buf_dc -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x86dff2a9 fbtft_write_gpio16_wr -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x8f612deb fbtft_write_spi -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x9f5f5eb6 fbtft_init_display -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xa88e6556 fbtft_register_backlight -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xb4c316a2 fbtft_write_spi_emulate_9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xbbc379fe fbtft_write_vmem16_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xcb2241be fbtft_write_reg8_bus9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xd6221086 fbtft_dbg_hex -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xeaa421ba fbtft_write_reg8_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xfaa594ec fbtft_unregister_framebuffer -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xfc5e8664 fbtft_write_vmem8_bus8 -EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x1786005c gbaudio_register_module -EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x2355dbfd gbaudio_unregister_module -EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x30b7cb68 gbaudio_module_update -EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0x71b696bb adt7316_probe -EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0x86977d68 ade7854_probe -EXPORT_SYMBOL drivers/staging/media/av7110/sp8870 0xa1046f1b sp8870_attach -EXPORT_SYMBOL drivers/staging/media/zoran/videocodec 0x6c220fe9 videocodec_unregister -EXPORT_SYMBOL drivers/staging/media/zoran/videocodec 0x6f557114 videocodec_register -EXPORT_SYMBOL drivers/staging/media/zoran/videocodec 0x93b6450e videocodec_attach -EXPORT_SYMBOL drivers/staging/media/zoran/videocodec 0x95db2034 videocodec_detach -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x08f6814c rtllib_wx_get_rate -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x096af502 rtllib_wx_set_encode_ext -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0b83a5a1 rtllib_sta_ps_send_null_frame -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0ec21df1 rtllib_start_send_beacons -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0f323f04 dot11d_init -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1ade7e3d rtllib_wx_get_freq +EXPORT_SYMBOL drivers/ssb/ssb 0xe3f7fd78 ssb_bus_sdiobus_register +EXPORT_SYMBOL drivers/ssb/ssb 0xf0277694 ssb_device_enable +EXPORT_SYMBOL drivers/ssb/ssb 0xf9f6bd40 ssb_clockspeed +EXPORT_SYMBOL drivers/ssb/ssb 0xfe1be053 __ssb_driver_register +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x052e9154 fbtft_register_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x0cb6b962 fbtft_write_buf_dc +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x0f5dee50 fbtft_framebuffer_release +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x15e1797d fbtft_write_reg8_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x17da2122 fbtft_write_vmem16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x20f96f4d fbtft_write_gpio16_wr_latched +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x3520ac26 fbtft_dbg_hex +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x42b36e28 fbtft_framebuffer_alloc +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x4b2802ed fbtft_write_gpio16_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x55269ecb fbtft_init_display +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x5a323863 fbtft_unregister_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x5a99ce80 fbtft_remove_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x74e99ef8 fbtft_read_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x826561e8 fbtft_write_vmem16_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x9e5b0098 fbtft_write_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xa9faf6e6 fbtft_register_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xaea96037 fbtft_write_vmem8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xb0077e21 fbtft_write_vmem16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xb618057c fbtft_probe_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xba30cb75 fbtft_write_reg16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xd3661c30 fbtft_unregister_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xd697a74d fbtft_write_gpio8_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xeae84513 fbtft_write_reg8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf5a1bcb0 fbtft_write_reg16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf9f0511e fbtft_write_spi_emulate_9 +EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x2b05ec84 gbaudio_register_module +EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x886f7f32 gbaudio_unregister_module +EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x999f2c68 gbaudio_module_update +EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0x89bb02b6 adt7316_probe +EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0xea236c1e ade7854_probe +EXPORT_SYMBOL drivers/staging/media/av7110/sp8870 0x2cef5b80 sp8870_attach +EXPORT_SYMBOL drivers/staging/media/zoran/videocodec 0x367b824d videocodec_detach +EXPORT_SYMBOL drivers/staging/media/zoran/videocodec 0x4ba5a409 videocodec_unregister +EXPORT_SYMBOL drivers/staging/media/zoran/videocodec 0x4c2966ea videocodec_register +EXPORT_SYMBOL drivers/staging/media/zoran/videocodec 0xa8b87c16 videocodec_attach +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x018b1916 rtllib_start_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x16238114 rtllib_ps_tx_ack EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x22166084 rt_global_debug_component -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x247f30da rtllib_wx_set_rate -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2e5cf682 rtllib_start_scan_syncro -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x32ad6007 rtllib_act_scanning -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3657cfab rtllib_wx_set_freq -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3fcdfd30 rtllib_wx_set_rts -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x41138da2 RemovePeerTS -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x519af951 rtllib_DisableIntelPromiscuousMode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x52606e62 rtllib_EnableIntelPromiscuousMode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x620291e5 rtllib_wx_set_gen_ie -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6c71c5ad rtllib_MgntDisconnect -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6c8a1dba rtllib_wx_set_encode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6fe2e08e rtllib_wx_get_rts -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8119e0c9 rtllib_wx_set_auth -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8b573d4c rtllib_wx_get_name -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8dd59498 rtllib_wx_set_mode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8e192c16 rtllib_wx_get_power -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x975993d6 rtllib_wx_set_power -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9ec4c719 rtllib_rx -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa15c250e rtllib_wx_get_mode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa22fa3ed rtllib_stop_scan_syncro -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa4bfd2fd rtllib_legal_channel -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb03c345f alloc_rtllib -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb171675f notify_wx_assoc_event -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbcc878ae rtllib_get_beacon -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbd60fc2f rtllib_wx_set_wap -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbffda933 free_rtllib -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc5b05695 rtllib_stop_send_beacons -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc7b9ae8f rtllib_reset_queue -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc828c145 dot11d_channel_map -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xcb5996ce rtllib_xmit -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd787cb8f rtllib_wx_set_rawtx -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdb52cb2b rtllib_wx_get_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2c10d701 rtllib_wx_set_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2d048c13 rtllib_EnableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3aa4db58 rtllib_wx_set_gen_ie +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3eb3b201 rtllib_wx_set_auth +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x435a0fbc rtllib_stop_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5292f803 rtllib_stop_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x54fe9671 rtllib_wx_set_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x573b122b rtllib_DisableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5a99f215 rtllib_softmac_start_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x609714c7 rtllib_get_beacon +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6969d377 free_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x69adb181 rtllib_wx_set_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6c395651 notify_wx_assoc_event +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6dba7bf6 rtllib_sta_ps_send_null_frame +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6ebb228f rtllib_stop_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x715ff872 rtllib_wx_set_mlme +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7414a837 rtllib_wx_get_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x76e139d1 rtllib_wx_get_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x796cfc76 RemovePeerTS +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x79dd0e24 rtllib_act_scanning +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x83284ac4 rtllib_wx_set_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9043f080 HT_update_self_and_peer_setting +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x91eb61d7 dot11d_channel_map +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9c4f413f rtllib_start_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9e915372 rtllib_wx_get_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa722c25a alloc_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa91052d4 dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa97eda29 rtllib_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xabb9e66c rtllib_wx_set_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb600ffda rtllib_wx_get_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc89eb08e rtllib_wx_get_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xcae84bfe rtllib_wx_get_name +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xcdff8645 rtllib_rx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xcf8dca04 rtllib_wx_set_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd234d3b2 rtllib_wx_get_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd457b758 rtllib_wx_set_rawtx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd4765529 rtllib_xmit +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd99b0776 rtllib_softmac_stop_protocol EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdf78f620 rtllib_wlan_frequencies -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe1f3aee1 rtllib_wx_set_essid -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe3d38d4f rtllib_softmac_start_protocol -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe8bd99dd rtllib_stop_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xec812914 rtllib_softmac_stop_protocol -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xed4fe191 rtllib_wx_get_wap -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf2eee861 HT_update_self_and_peer_setting -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf365c42d rtllib_ps_tx_ack -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf7db7abd rtllib_wx_set_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf7f79fb5 rtllib_wx_get_encode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf8b31121 rtllib_wx_get_essid -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xfb8df1ea rtllib_wx_set_mlme -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x01c79166 ieee80211_rx_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x09a77348 ieee80211_wx_get_encode_ext_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0c1582be ieee80211_wx_get_rate_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0cad6228 dot11d_update_country_ie -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0dd7df82 rtl8192u_dot11d_init -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0f12a3b9 ieee80211_wx_get_freq_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0f6b9187 dot11d_get_max_tx_pwr_in_dbm -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x169c2655 ieee80211_txb_free_rsl +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe19a2a2b rtllib_wx_set_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe6ab73d6 rtllib_reset_queue +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xea811f2e rtllib_wx_set_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xef93f83b rtllib_wx_get_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf2229a83 rtllib_wx_set_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf7b1cded rtllib_MgntDisconnect +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf8445ff9 rtllib_wx_set_encode_ext +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xfae46b46 rtllib_wx_get_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xfc2b4893 rtllib_wx_get_wap +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x01e2234a ieee80211_wx_get_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0597cacb rtl8192u_dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0f0b86be ieee80211_wx_set_gen_ie_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x10e0ca3e ieee80211_wx_set_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1a37f604 ieee80211_wx_get_wap_rsl EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1d66a0ff ieee80211_is_shortslot_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1db7ee59 ieee80211_wx_get_mode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x228386c0 ieee80211_wx_set_essid_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x230e943b ieee80211_stop_send_beacons_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x24187d57 ieee80211_wx_get_power_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2aa57b6e ieee80211_wx_set_mode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x37bb41b0 ieee80211_wx_get_name_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3800368e ieee80211_wx_set_freq_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3b071789 ieee80211_wx_set_rate_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4fbd6ad5 ieee80211_rx_mgt_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5135f26e ieee80211_softmac_start_protocol_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x52f64ec9 ieee80211_softmac_scan_syncro_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x598ac786 SendDisassociation_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x59ce81e5 ieee80211_wx_get_scan_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x61a71cbb dot11d_scan_complete -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6758d13a ieee80211_stop_scan_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6edc14d2 ieee80211_wx_set_scan_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x714cbc06 is_legal_channel -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x740a4090 ieee80211_wx_set_rts_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x750ed3ab ieee80211_reset_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7c4e8234 ieee80211_wx_set_wap_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x818e07b9 ieee80211_disassociate_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8d9af45d ieee80211_wx_set_mlme_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x995f10db ieee80211_wake_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9a09315a ieee80211_wx_get_essid_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9c92cacd ieee80211_wx_set_power_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa64fe4c8 ieee80211_wx_get_encode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb0fdcf28 notify_wx_assoc_event_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb2f129a0 ieee80211_stop_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb62d1425 ieee80211_wx_set_encode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb6e045df ieee80211_wx_get_wap_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb8fa0fb2 HTUpdateSelfAndPeerSetting -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbea4877b ieee80211_wx_get_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2a657eeb ieee80211_wx_get_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3416c60b ieee80211_start_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x346a6c41 ieee80211_wx_set_rawtx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x346ef9c3 ieee80211_softmac_xmit_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3685951c ieee80211_softmac_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x388cd121 ieee80211_wx_get_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x43aa75cb ieee80211_wx_set_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x47a8cf97 to_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x47aab40f ieee80211_wx_set_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4a6ed1b5 ieee80211_wpa_supplicant_ioctl_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4af523d5 ieee80211_wx_set_mlme_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4dcb80ef ieee80211_softmac_start_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5044e7fc ieee80211_wx_get_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5184e809 ieee80211_wx_set_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x527c08ee HTUpdateSelfAndPeerSetting +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5c47729f ieee80211_wx_get_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6275c036 ieee80211_disassociate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x65388e80 ieee80211_stop_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6a1dd3c3 ieee80211_reset_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x774945d6 ieee80211_wx_set_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7b85f20f ieee80211_wx_set_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7c4c086a ieee80211_wx_get_name_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x83b58c47 dot11d_reset +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x86543ad7 ieee80211_rx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9028e57e dot11d_scan_complete +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9cbb80ca ieee80211_get_beacon_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa0b95310 ieee80211_stop_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa25ddff0 ieee80211_stop_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa4c059a0 dot11d_update_country_ie +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa5141fbf ieee80211_rx_mgt_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa69912cd notify_wx_assoc_event_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb478fa09 ieee80211_wx_get_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb77c3c43 ieee80211_wx_set_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbdea3a21 ieee80211_wx_set_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc078e722 is_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc3376c6a ieee80211_softmac_stop_protocol_rsl EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc370a43e ieee80211_wlan_frequencies_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcb3a7522 ieee80211_start_send_beacons_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd20a803c ieee80211_wx_set_encode_ext_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd5d24ef9 to_legal_channel -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd99b7f2c ieee80211_get_beacon_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xdbb6cb34 ieee80211_wx_set_rawtx_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xdcdfc8dc ieee80211_softmac_xmit_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe23bd438 ieee80211_wpa_supplicant_ioctl_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe5ffd017 ieee80211_softmac_stop_protocol_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe8fdae67 ieee80211_wx_set_gen_ie_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xebbe6940 ieee80211_ps_tx_ack_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc5f456f1 ieee80211_wx_set_auth_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc93a661a ieee80211_wake_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcbc83655 ieee80211_wx_set_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcf5e5ee3 ieee80211_wx_set_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xdbadf4d7 ieee80211_txb_free_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe09273b6 SendDisassociation_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe0c6011c ieee80211_wx_get_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe6fff392 dot11d_get_max_tx_pwr_in_dbm +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xeae17e48 ieee80211_wx_get_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xec0ab6c5 ieee80211_wx_get_rate_rsl EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xecc5fb1b ieee80211_is_54g_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf9c3cb80 dot11d_reset -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfca6c314 ieee80211_start_scan_syncro_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfe6f8a83 ieee80211_wx_set_auth_rsl -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x05a30693 iscsit_free_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x10c35f77 iscsit_handle_task_mgt_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x113c6488 iscsit_build_nopin_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x143afea3 iscsit_build_r2ts_for_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x17bc7a21 iscsit_tmr_post_handler -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1bae2204 iscsit_build_reject -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1baff54e iscsit_stop_dataout_timer -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2dbedb65 iscsit_process_scsi_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x40c15157 iscsit_unregister_transport -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x43ca3f1c iscsit_sequence_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4740b946 iscsit_check_dataout_payload -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x58f391ef iscsi_target_check_login_request -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5f0579b9 iscsit_find_cmd_from_itt_or_dump -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6187cc8d iscsit_setup_text_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x61c0ea81 iscsit_reject_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x661b0227 iscsit_build_task_mgt_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x672587e4 iscsit_register_transport -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6bc98fff iscsit_immediate_queue -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x70b56027 iscsit_add_cmd_to_immediate_queue -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x74829919 iscsit_build_text_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x79ff2b64 iscsit_response_queue -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7ae47e96 iscsit_increment_maxcmdsn -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7e64126d iscsi_change_param_sprintf -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7ef756d4 iscsit_logout_post_handler -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x806a29dc iscsit_aborted_task -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8a35a8c0 iscsit_build_datain_pdu -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9d1b38f2 iscsit_allocate_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9df179d3 iscsit_build_logout_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xac93b7de iscsit_find_cmd_from_itt -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xafcc862c iscsit_queue_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb61530cc iscsit_handle_snack -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbdd341c7 iscsit_setup_scsi_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc344055a iscsit_process_nop_out -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc3dba066 iscsit_get_datain_values -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc53fd23e iscsit_release_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd29d518f iscsit_process_text_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd34fb057 iscsit_check_dataout_hdr -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd632f782 iscsit_add_reject -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd74ade51 iscsit_cause_connection_reinstatement -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd98b91a4 __iscsit_check_dataout_hdr -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xdb673203 iscsit_build_rsp_pdu -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xdd80e4d6 iscsit_handle_logout_cmd +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xeee4ebc8 ieee80211_ps_tx_ack_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf008c536 ieee80211_start_scan_syncro_rsl +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x02499e0b iscsit_stop_dataout_timer +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x09ba2a07 iscsit_register_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1489367b iscsit_sequence_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1549c84e iscsi_change_param_sprintf +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1ef1cfbe iscsit_reject_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x23ca8f1a iscsit_setup_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x255aabf0 iscsit_queue_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x257da40d iscsit_add_cmd_to_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2750083c iscsit_response_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2aa9ead7 iscsit_process_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x346bfb99 iscsit_process_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x495761f7 iscsit_unregister_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4bff4955 iscsit_build_r2ts_for_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4ede4aad iscsit_setup_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4ff38107 iscsit_get_datain_values +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x54e53ec2 iscsit_handle_snack +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5860e098 iscsit_free_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x59460f00 iscsit_allocate_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x623e8fe3 iscsit_build_datain_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x654fa39d iscsit_build_text_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x671ed4ea iscsit_check_dataout_payload +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x68a0f0f9 iscsit_build_rsp_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6f9bbb3e iscsit_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x77326667 iscsit_process_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7fa1d910 iscsit_find_cmd_from_itt +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8021f91e iscsit_build_logout_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x815db695 iscsit_aborted_task +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8f3b06f1 iscsit_logout_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x913b7d47 iscsit_handle_logout_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa026783d iscsit_handle_task_mgt_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa03a251c iscsit_release_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xaf80817b iscsit_add_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb2814e6d iscsit_build_task_mgt_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb70a67cc iscsit_build_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc6486e2c iscsit_set_unsolicited_dataout +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xcad985c7 iscsi_target_check_login_request +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xcceec4e5 iscsit_find_cmd_from_itt_or_dump +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd2d21f23 iscsit_increment_maxcmdsn +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xdea6cff9 iscsit_build_nopin_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe08d070e iscsit_setup_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xec707b51 iscsit_tmr_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xefa453d4 __iscsit_check_dataout_hdr EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf34332f0 iscsi_find_param_from_key -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf83a20ff iscsit_setup_nop_out -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xfaa34b24 iscsit_set_unsolicited_dataout -EXPORT_SYMBOL drivers/target/target_core_mod 0x01fc5da7 sbc_get_device_type -EXPORT_SYMBOL drivers/target/target_core_mod 0x038f2728 __transport_register_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x04c4de5e target_nacl_find_deve +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf731c638 iscsit_cause_connection_reinstatement +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xface5975 iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/target_core_mod 0x0769e04f spc_parse_cdb EXPORT_SYMBOL drivers/target/target_core_mod 0x0871ffd6 transport_set_vpd_ident -EXPORT_SYMBOL drivers/target/target_core_mod 0x0d74acfa sbc_dif_verify -EXPORT_SYMBOL drivers/target/target_core_mod 0x0fcc265a transport_generic_new_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x1185b611 transport_send_check_condition_and_sense -EXPORT_SYMBOL drivers/target/target_core_mod 0x138f5d32 passthrough_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x095948a5 target_wait_for_sess_cmds +EXPORT_SYMBOL drivers/target/target_core_mod 0x0d56cee6 sbc_dif_copy_prot +EXPORT_SYMBOL drivers/target/target_core_mod 0x10af81b9 target_complete_cmd_with_length EXPORT_SYMBOL drivers/target/target_core_mod 0x142072c0 transport_set_vpd_assoc -EXPORT_SYMBOL drivers/target/target_core_mod 0x181b1b94 transport_alloc_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x1d5cbc04 target_set_cmd_data_length -EXPORT_SYMBOL drivers/target/target_core_mod 0x1e997a21 transport_free_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x1ed27af3 target_unregister_template -EXPORT_SYMBOL drivers/target/target_core_mod 0x20a46034 transport_backend_register -EXPORT_SYMBOL drivers/target/target_core_mod 0x284add0f transport_deregister_session_configfs -EXPORT_SYMBOL drivers/target/target_core_mod 0x2fd7db22 core_tpg_deregister -EXPORT_SYMBOL drivers/target/target_core_mod 0x34236235 target_setup_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x349654ed target_depend_item -EXPORT_SYMBOL drivers/target/target_core_mod 0x36ebd71f sbc_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0x37e7f76f target_put_nacl +EXPORT_SYMBOL drivers/target/target_core_mod 0x2287eb8e spc_emulate_evpd_83 +EXPORT_SYMBOL drivers/target/target_core_mod 0x29f970df core_tpg_set_initiator_node_queue_depth +EXPORT_SYMBOL drivers/target/target_core_mod 0x2f18355e target_undepend_item EXPORT_SYMBOL drivers/target/target_core_mod 0x3a20a9d7 transport_set_vpd_ident_type -EXPORT_SYMBOL drivers/target/target_core_mod 0x3b3db94d transport_kunmap_data_sg -EXPORT_SYMBOL drivers/target/target_core_mod 0x42335c3c target_send_busy -EXPORT_SYMBOL drivers/target/target_core_mod 0x44c08818 spc_emulate_evpd_83 -EXPORT_SYMBOL drivers/target/target_core_mod 0x4550634f target_submit_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x456c8060 target_undepend_item -EXPORT_SYMBOL drivers/target/target_core_mod 0x4a9f591f transport_init_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x4b8657db target_backend_unregister -EXPORT_SYMBOL drivers/target/target_core_mod 0x4c1c3733 target_cmd_init_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x4cb53906 core_tpg_get_initiator_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0x4e899316 core_tpg_set_initiator_node_queue_depth -EXPORT_SYMBOL drivers/target/target_core_mod 0x61264398 transport_alloc_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0x463730a0 target_nacl_find_deve +EXPORT_SYMBOL drivers/target/target_core_mod 0x495bf1c6 transport_deregister_session_configfs +EXPORT_SYMBOL drivers/target/target_core_mod 0x52973282 target_unregister_template +EXPORT_SYMBOL drivers/target/target_core_mod 0x611b0c85 transport_handle_cdb_direct EXPORT_SYMBOL drivers/target/target_core_mod 0x638bffb7 target_free_sgl -EXPORT_SYMBOL drivers/target/target_core_mod 0x63bf9e81 passthrough_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x66c2f11f target_complete_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x6805a413 target_to_linux_sector -EXPORT_SYMBOL drivers/target/target_core_mod 0x6b39113a target_put_sess_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x6ce29d49 target_get_sess_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x6ebffbfd core_alua_check_nonop_delay -EXPORT_SYMBOL drivers/target/target_core_mod 0x742a30ac target_stop_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x79863a30 target_remove_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x65cc2904 transport_copy_sense_to_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x672fe91a sbc_dif_verify +EXPORT_SYMBOL drivers/target/target_core_mod 0x6ffffc26 target_submit_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x739806d2 target_configure_unmap_from_queue +EXPORT_SYMBOL drivers/target/target_core_mod 0x73e29d69 transport_backend_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x74436418 target_submit_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x748ffd0d target_remove_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x7496688f core_tpg_deregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x759dc1b0 core_tpg_check_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x785ff2fb target_stop_session EXPORT_SYMBOL drivers/target/target_core_mod 0x7a1d0d3c target_alloc_sgl -EXPORT_SYMBOL drivers/target/target_core_mod 0x7c0d438d target_complete_cmd_with_length -EXPORT_SYMBOL drivers/target/target_core_mod 0x860a300c transport_copy_sense_to_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x890e7df5 core_tpg_set_initiator_node_tag -EXPORT_SYMBOL drivers/target/target_core_mod 0x8abdee81 transport_lookup_tmr_lun -EXPORT_SYMBOL drivers/target/target_core_mod 0x9652ff51 transport_generic_free_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x96df98a6 core_tpg_check_initiator_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0x9ba11203 __target_init_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xa0abf949 target_show_dynamic_sessions -EXPORT_SYMBOL drivers/target/target_core_mod 0xa18a8141 passthrough_pr_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0xa37b96ad core_allocate_nexus_loss_ua -EXPORT_SYMBOL drivers/target/target_core_mod 0xa54ee6a9 transport_deregister_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x7e8037a4 transport_kmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x8118f96b transport_wait_for_tasks +EXPORT_SYMBOL drivers/target/target_core_mod 0x857f9d86 target_show_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x867404c0 target_setup_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x89fcd580 target_put_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x8b755948 core_tpg_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x8bbbb1b5 transport_alloc_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0x8fc8e960 target_register_template +EXPORT_SYMBOL drivers/target/target_core_mod 0x912925ad __transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x924b3fde transport_init_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x94acd461 target_lun_is_rdonly +EXPORT_SYMBOL drivers/target/target_core_mod 0x9a216195 target_depend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0x9badfad0 core_allocate_nexus_loss_ua +EXPORT_SYMBOL drivers/target/target_core_mod 0x9f459bc0 transport_lookup_tmr_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0xa46b172e sbc_get_write_same_sectors EXPORT_SYMBOL drivers/target/target_core_mod 0xa897a9ce core_tmr_alloc_req -EXPORT_SYMBOL drivers/target/target_core_mod 0xa9509af3 target_complete_cmd_with_sense -EXPORT_SYMBOL drivers/target/target_core_mod 0xae0797ca target_configure_unmap_from_queue -EXPORT_SYMBOL drivers/target/target_core_mod 0xb3e60bbb core_tpg_register -EXPORT_SYMBOL drivers/target/target_core_mod 0xb73068fe target_tpg_has_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0xc35c4bc4 target_submit_tmr -EXPORT_SYMBOL drivers/target/target_core_mod 0xc41a52d0 transport_generic_handle_tmr -EXPORT_SYMBOL drivers/target/target_core_mod 0xcc728daa spc_emulate_inquiry_std -EXPORT_SYMBOL drivers/target/target_core_mod 0xcdd08ee7 target_register_template -EXPORT_SYMBOL drivers/target/target_core_mod 0xcead11fe target_show_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xcfacb4ad target_lun_is_rdonly -EXPORT_SYMBOL drivers/target/target_core_mod 0xd637b54d spc_emulate_report_luns -EXPORT_SYMBOL drivers/target/target_core_mod 0xdc2e1479 transport_wait_for_tasks -EXPORT_SYMBOL drivers/target/target_core_mod 0xdc5d52f0 transport_generic_request_failure -EXPORT_SYMBOL drivers/target/target_core_mod 0xe3916599 sbc_get_write_same_sectors -EXPORT_SYMBOL drivers/target/target_core_mod 0xe61b4612 target_execute_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xe6a81ea5 target_wait_for_sess_cmds -EXPORT_SYMBOL drivers/target/target_core_mod 0xea674050 transport_register_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xeba3361f transport_handle_cdb_direct -EXPORT_SYMBOL drivers/target/target_core_mod 0xebbd81af sbc_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0xf1f15e16 target_cmd_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0xf2fdbb38 sbc_dif_copy_prot -EXPORT_SYMBOL drivers/target/target_core_mod 0xf3325262 spc_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0xf3662bd5 transport_lookup_cmd_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0xaa450432 core_tpg_get_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0xae8995f9 passthrough_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0xb42dd053 transport_free_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xb5f1db4b transport_generic_request_failure +EXPORT_SYMBOL drivers/target/target_core_mod 0xb74ef88e transport_generic_new_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xbbe71443 target_complete_cmd_with_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0xbf7811f2 transport_generic_handle_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0xc05536c8 target_cmd_init_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xc0631848 transport_lookup_cmd_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0xc5a8bae2 target_tpg_has_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0xc7eff236 sbc_get_device_type +EXPORT_SYMBOL drivers/target/target_core_mod 0xc9686d8c core_tpg_set_initiator_node_tag +EXPORT_SYMBOL drivers/target/target_core_mod 0xcf08fc51 target_set_cmd_data_length +EXPORT_SYMBOL drivers/target/target_core_mod 0xd06187ba target_show_dynamic_sessions +EXPORT_SYMBOL drivers/target/target_core_mod 0xd2197dcf transport_send_check_condition_and_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0xd2487056 transport_deregister_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xd4adc2cb core_alua_check_nonop_delay +EXPORT_SYMBOL drivers/target/target_core_mod 0xd630002e passthrough_pr_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0xd7349fe4 target_backend_unregister +EXPORT_SYMBOL drivers/target/target_core_mod 0xd8012373 transport_generic_free_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xd856a0fc transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xe02bc8d3 target_cmd_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xe0787095 target_get_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xe2c260d2 transport_kunmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0xe67841d2 target_put_nacl +EXPORT_SYMBOL drivers/target/target_core_mod 0xe85368b9 passthrough_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xec8582fe spc_emulate_inquiry_std +EXPORT_SYMBOL drivers/target/target_core_mod 0xee7723a2 sbc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xeff39600 target_send_busy +EXPORT_SYMBOL drivers/target/target_core_mod 0xf178d3dc spc_emulate_report_luns EXPORT_SYMBOL drivers/target/target_core_mod 0xf3c2dfe0 transport_set_vpd_proto_id -EXPORT_SYMBOL drivers/target/target_core_mod 0xfa671072 transport_kmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0xf854adfb target_to_linux_sector +EXPORT_SYMBOL drivers/target/target_core_mod 0xfa9acc65 target_complete_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xfee5d56c target_execute_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xff1984f5 transport_alloc_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xffa32e72 sbc_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0xffb3a745 __target_init_cmd EXPORT_SYMBOL drivers/thermal/intel/int340x_thermal/acpi_thermal_rel 0x111eefed acpi_parse_art 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 0xf0f9fe0d acpi_parse_trt -EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0xce851b3e usb_cdc_wdm_register -EXPORT_SYMBOL drivers/usb/gadget/libcomposite 0x265e2dd9 usb_os_desc_prepare_interf_dir -EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0x7111b4db sl811h_driver -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x13874bce usb_wwan_write -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x1f5cdbed usb_wwan_open -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x68fc5796 usb_wwan_write_room -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x6afa622c usb_wwan_tiocmget -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x7345fbce usb_wwan_tiocmset -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x8d235c5c usb_wwan_port_remove -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x9f726ba9 usb_wwan_suspend -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xab9a4f6c usb_wwan_chars_in_buffer -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xad910d7d usb_wwan_dtr_rts -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xd080a5b1 usb_wwan_close -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xdbb6fdb4 usb_wwan_resume -EXPORT_SYMBOL drivers/usb/serial/usbserial 0x5b2124a3 usb_serial_suspend -EXPORT_SYMBOL drivers/usb/serial/usbserial 0x6e2d6632 usb_serial_resume -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x26282588 mdev_parent_dev -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x2eec27b5 mtype_get_parent_dev -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x4f9883b9 mdev_get_type_group_id -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x7cd6563c mdev_register_driver -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x90c17141 mdev_unregister_driver -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xa25a0fb1 mtype_get_type_group_id -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xacf33c19 mdev_register_device -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xb873ec88 mdev_unregister_device -EXPORT_SYMBOL drivers/vhost/vhost 0xcfe06e35 vhost_chr_write_iter -EXPORT_SYMBOL drivers/vhost/vhost 0xf70c7089 vhost_chr_poll +EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0xc8aec044 usb_cdc_wdm_register +EXPORT_SYMBOL drivers/usb/gadget/libcomposite 0x4f38c96e usb_os_desc_prepare_interf_dir +EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0x1d0b0fa6 sl811h_driver +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x13d67a40 usb_wwan_tiocmget +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x17774384 usb_wwan_close +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x1bd3cd2c usb_wwan_open +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x2b0fa240 usb_wwan_port_remove +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x31f1f85d usb_wwan_suspend +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x33553af8 usb_wwan_write_room +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x8fc3e44b usb_wwan_write +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x949ac794 usb_wwan_dtr_rts +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xc2a3d049 usb_wwan_tiocmset +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xca668ef7 usb_wwan_chars_in_buffer +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xf38fcd06 usb_wwan_resume +EXPORT_SYMBOL drivers/usb/serial/usbserial 0x33eb5ee4 usb_serial_resume +EXPORT_SYMBOL drivers/usb/serial/usbserial 0x6e00ceaf usb_serial_suspend +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x0c14c0fc mdev_unregister_device +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x3d200d29 mdev_parent_dev +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x6bea64b9 mdev_register_device +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xa4b169f7 mdev_get_type_group_id +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xa5d03661 mtype_get_parent_dev +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xbd0ce564 mdev_register_driver +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xd2445387 mdev_unregister_driver +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xfed3bb6e mtype_get_type_group_id +EXPORT_SYMBOL drivers/vhost/vhost 0x0954f157 vhost_chr_write_iter +EXPORT_SYMBOL drivers/vhost/vhost 0x6173fd1f 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 @@ -4584,59 +4600,59 @@ 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 0x22109158 devm_lcd_device_register -EXPORT_SYMBOL drivers/video/backlight/lcd 0x37be275f lcd_device_register -EXPORT_SYMBOL drivers/video/backlight/lcd 0x4c3b1824 lcd_device_unregister -EXPORT_SYMBOL drivers/video/backlight/lcd 0x8f7d94fc devm_lcd_device_unregister -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x0d541d51 svga_tilefill +EXPORT_SYMBOL drivers/video/backlight/lcd 0x1e3737d4 devm_lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0x2a1188db devm_lcd_device_unregister +EXPORT_SYMBOL drivers/video/backlight/lcd 0xdee85383 lcd_device_unregister +EXPORT_SYMBOL drivers/video/backlight/lcd 0xf634a59a lcd_device_register EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x17f3f471 svga_set_default_seq_regs EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x1be6dc30 svga_set_textmode_vga_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x374ebd79 svga_get_tilemax EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x4ab38ef2 svga_set_default_crt_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x7a41f57f svga_tileblit +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x56ac581e svga_tileblit +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x63451858 svga_settile EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x83a41489 svga_set_timings EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x84c337c2 svga_wcrt_multi EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x84c97d2a svga_match_format -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x91cd56e7 svga_settile -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xa59eca7b svga_get_caps +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x8f58b256 svga_tilecopy +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xa345ab94 svga_get_caps +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xa73d04d7 svga_tilefill EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xb0ab2b2e svga_check_timings -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xcce5629c svga_tilecursor +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xb8712c40 svga_get_tilemax +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xc2772327 svga_tilecursor EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd22ca511 svga_set_default_atc_regs EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd6ec2c44 svga_compute_pll -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xdbd0468e svga_tilecopy 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 0x69c6d68e sys_copyarea -EXPORT_SYMBOL drivers/video/fbdev/core/sysfillrect 0x7bccd21c sys_fillrect -EXPORT_SYMBOL drivers/video/fbdev/core/sysimgblt 0x3712faee sys_imageblit +EXPORT_SYMBOL drivers/video/fbdev/core/syscopyarea 0x000075a2 sys_copyarea +EXPORT_SYMBOL drivers/video/fbdev/core/sysfillrect 0xcd9fea39 sys_fillrect +EXPORT_SYMBOL drivers/video/fbdev/core/sysimgblt 0xa4a5b2ec sys_imageblit EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x0cc3ede5 cyber2000fb_detach -EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x0fdd164e cyber2000fb_attach +EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x2aab0794 cyber2000fb_attach EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x534b6f18 cyber2000fb_disable_extregs EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0xb39f68d1 cyber2000fb_enable_extregs +EXPORT_SYMBOL drivers/video/fbdev/macmodes 0x0a741c3c mac_find_mode EXPORT_SYMBOL drivers/video/fbdev/macmodes 0x233917d1 mac_vmode_to_var -EXPORT_SYMBOL drivers/video/fbdev/macmodes 0xa5e55883 mac_find_mode EXPORT_SYMBOL drivers/video/fbdev/macmodes 0xe2304303 mac_map_monitor_sense -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x887aeb37 matroxfb_g450_setclk -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x8c20751a g450_mnp2f -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xf4c5db86 matroxfb_g450_setpll_cond -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x47cf5bc0 matrox_G100 -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x6809f152 matrox_mystique -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x6e42a95a DAC1064_global_init -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xdabc885f DAC1064_global_restore -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_Ti3026 0x11ebbb14 matrox_millennium -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_accel 0xff96d71e matrox_cfbX_init -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x00b0f997 matroxfb_register_driver -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x409dda92 matroxfb_enable_irq -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x49eb9590 matroxfb_unregister_driver -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x53244caf matroxfb_wait_for_sync -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x0456528d matroxfb_g450_shutdown -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0xfd9e177a matroxfb_g450_connect -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x13cd3f27 matroxfb_DAC_out -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x257b87b4 matroxfb_vgaHWrestore +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x9279ce81 g450_mnp2f +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xab03b9eb matroxfb_g450_setpll_cond +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xcd4604b1 matroxfb_g450_setclk +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x000c26bf matrox_G100 +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x0f13ea25 matrox_mystique +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xa5eee53f DAC1064_global_restore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xdf7e031d DAC1064_global_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_Ti3026 0xfbf0fad3 matrox_millennium +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_accel 0xfc080771 matrox_cfbX_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x0f8b3262 matroxfb_wait_for_sync +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x2c926ae7 matroxfb_unregister_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x2da1aef5 matroxfb_enable_irq +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x63fd1a06 matroxfb_register_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x69d09047 matroxfb_g450_connect +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0xa9cc14ce matroxfb_g450_shutdown +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x0049393f matroxfb_vgaHWinit +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x06b1fb37 matroxfb_read_pins +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x0bdf1d87 matroxfb_vgaHWrestore EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x25cf8049 matroxfb_PLL_calcclock -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x67f6557a matroxfb_DAC_in -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x838b9b2e matroxfb_vgaHWinit -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x9dcc7086 matroxfb_read_pins +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x41260d68 matroxfb_DAC_in +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xcb823a28 matroxfb_DAC_out 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 @@ -4649,86 +4665,86 @@ EXPORT_SYMBOL drivers/virt/acrn/acrn 0xaff5c6be sbuf_free EXPORT_SYMBOL drivers/virt/acrn/acrn 0xb4fa127d sbuf_allocate EXPORT_SYMBOL drivers/virt/acrn/acrn 0xba8e68d3 sbuf_share_setup -EXPORT_SYMBOL drivers/virt/vboxguest/vboxguest 0x1045a0e0 vbg_put_gdev +EXPORT_SYMBOL drivers/virt/vboxguest/vboxguest 0x21aed665 vbg_hgcm_disconnect EXPORT_SYMBOL drivers/virt/vboxguest/vboxguest 0x260590c0 vbg_err +EXPORT_SYMBOL drivers/virt/vboxguest/vboxguest 0x28971e57 vbg_hgcm_connect EXPORT_SYMBOL drivers/virt/vboxguest/vboxguest 0x569b312f vbg_info +EXPORT_SYMBOL drivers/virt/vboxguest/vboxguest 0x5abeabfe vbg_get_gdev 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 0x73e28b95 vbg_hgcm_call -EXPORT_SYMBOL drivers/virt/vboxguest/vboxguest 0x7f1a4ef5 vbg_hgcm_connect -EXPORT_SYMBOL drivers/virt/vboxguest/vboxguest 0x836e4bbd vbg_hgcm_disconnect -EXPORT_SYMBOL drivers/virt/vboxguest/vboxguest 0x96cd0ae0 vbg_get_gdev +EXPORT_SYMBOL drivers/virt/vboxguest/vboxguest 0x85a8cbc0 vbg_put_gdev EXPORT_SYMBOL drivers/virt/vboxguest/vboxguest 0x9c072aa8 vbg_status_code_to_errno -EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x28d687fa virtio_dma_buf_get_uuid -EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x31cb4818 is_virtio_dma_buf -EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x56803362 virtio_dma_buf_export -EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0xdfb5fd9e virtio_dma_buf_attach -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x029c6691 w1_ds2780_eeprom_cmd -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x15ffea62 w1_ds2780_io -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x0d842967 w1_ds2781_eeprom_cmd -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x5090801d w1_ds2781_io -EXPORT_SYMBOL drivers/w1/wire 0x4892c964 w1_register_family -EXPORT_SYMBOL drivers/w1/wire 0x9e319d6a w1_remove_master_device -EXPORT_SYMBOL drivers/w1/wire 0xb87d6a24 w1_unregister_family -EXPORT_SYMBOL drivers/w1/wire 0xbbd194fb w1_add_master_device +EXPORT_SYMBOL drivers/virt/vboxguest/vboxguest 0xbebb298d vbg_hgcm_call +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x20eaf108 virtio_dma_buf_attach +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x79785bab is_virtio_dma_buf +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x9289ecd1 virtio_dma_buf_get_uuid +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0xac6c9522 virtio_dma_buf_export +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x6a9cd7ac w1_ds2780_io +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0xf3a20be9 w1_ds2780_eeprom_cmd +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x9576839e w1_ds2781_eeprom_cmd +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0xc9b5ea23 w1_ds2781_io +EXPORT_SYMBOL drivers/w1/wire 0x79f98f04 w1_remove_master_device +EXPORT_SYMBOL drivers/w1/wire 0xb6530265 w1_add_master_device +EXPORT_SYMBOL drivers/w1/wire 0xd5ec0dd6 w1_register_family +EXPORT_SYMBOL drivers/w1/wire 0xe42a5edc w1_unregister_family EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0x04e133fc iTCO_vendor_check_noreboot_on EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0x75bec08d iTCO_vendor_pre_stop EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0xc8930f32 iTCO_vendor_pre_start EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0xed2a3373 iTCO_vendorsupport -EXPORT_SYMBOL fs/fscache/fscache 0x01d2fe8b __fscache_check_consistency -EXPORT_SYMBOL fs/fscache/fscache 0x05893fb5 fscache_object_retrying_stale -EXPORT_SYMBOL fs/fscache/fscache 0x05caf6c5 __fscache_enable_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x0b11be23 __fscache_relinquish_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x0b787244 __fscache_uncache_page -EXPORT_SYMBOL fs/fscache/fscache 0x2b859e28 __fscache_register_netfs -EXPORT_SYMBOL fs/fscache/fscache 0x2efb83a5 fscache_init_cache -EXPORT_SYMBOL fs/fscache/fscache 0x2fea1b4d __fscache_disable_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x35e9f8a1 fscache_enqueue_operation -EXPORT_SYMBOL fs/fscache/fscache 0x4083294a fscache_object_mark_killed -EXPORT_SYMBOL fs/fscache/fscache 0x5648ba83 fscache_fsdef_index -EXPORT_SYMBOL fs/fscache/fscache 0x697aab05 fscache_object_lookup_negative +EXPORT_SYMBOL fs/fscache/fscache 0x137d19d6 fscache_object_lookup_negative +EXPORT_SYMBOL fs/fscache/fscache 0x1e7fc807 __fscache_wait_on_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0x1fb467b5 fscache_put_operation +EXPORT_SYMBOL fs/fscache/fscache 0x2fcac71a fscache_io_error +EXPORT_SYMBOL fs/fscache/fscache 0x337da359 __fscache_update_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x363489bb __fscache_readpages_cancel +EXPORT_SYMBOL fs/fscache/fscache 0x37a7016c __fscache_begin_read_operation +EXPORT_SYMBOL fs/fscache/fscache 0x3f4eb238 __fscache_attr_changed +EXPORT_SYMBOL fs/fscache/fscache 0x4179130a __fscache_maybe_release_page +EXPORT_SYMBOL fs/fscache/fscache 0x47086d19 __fscache_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0x4c521b43 fscache_op_complete +EXPORT_SYMBOL fs/fscache/fscache 0x645af7ea __fscache_invalidate EXPORT_SYMBOL fs/fscache/fscache 0x6acefa42 fscache_cache_cleared_wq +EXPORT_SYMBOL fs/fscache/fscache 0x72bfc202 __fscache_register_netfs EXPORT_SYMBOL fs/fscache/fscache 0x74530ecd fscache_op_debug_id -EXPORT_SYMBOL fs/fscache/fscache 0x78f71231 fscache_mark_page_cached -EXPORT_SYMBOL fs/fscache/fscache 0x7a9b5fa8 fscache_operation_init -EXPORT_SYMBOL fs/fscache/fscache 0x80e31630 fscache_obtained_object -EXPORT_SYMBOL fs/fscache/fscache 0x8dc36417 fscache_put_operation -EXPORT_SYMBOL fs/fscache/fscache 0x8efce92e fscache_check_aux -EXPORT_SYMBOL fs/fscache/fscache 0x95cf808f __fscache_maybe_release_page -EXPORT_SYMBOL fs/fscache/fscache 0x973926ab fscache_mark_pages_cached -EXPORT_SYMBOL fs/fscache/fscache 0x9fccd851 __fscache_wait_on_page_write -EXPORT_SYMBOL fs/fscache/fscache 0xa8b35c51 fscache_op_complete -EXPORT_SYMBOL fs/fscache/fscache 0xb2fa0a44 __fscache_alloc_page -EXPORT_SYMBOL fs/fscache/fscache 0xb6b89a7c __fscache_write_page -EXPORT_SYMBOL fs/fscache/fscache 0xbb8ad5a5 __fscache_acquire_cookie -EXPORT_SYMBOL fs/fscache/fscache 0xbdb401dc __fscache_attr_changed -EXPORT_SYMBOL fs/fscache/fscache 0xc48ec268 __fscache_readpages_cancel -EXPORT_SYMBOL fs/fscache/fscache 0xc678d346 __fscache_unregister_netfs -EXPORT_SYMBOL fs/fscache/fscache 0xca09a525 fscache_withdraw_cache -EXPORT_SYMBOL fs/fscache/fscache 0xcc6556a4 __fscache_invalidate -EXPORT_SYMBOL fs/fscache/fscache 0xcca1d1e4 __fscache_update_cookie -EXPORT_SYMBOL fs/fscache/fscache 0xcccfed89 __fscache_read_or_alloc_page -EXPORT_SYMBOL fs/fscache/fscache 0xd10533c2 fscache_object_destroy -EXPORT_SYMBOL fs/fscache/fscache 0xdfaa944f fscache_object_init -EXPORT_SYMBOL fs/fscache/fscache 0xdfdcb1f4 __fscache_check_page_write -EXPORT_SYMBOL fs/fscache/fscache 0xe06e94c4 __fscache_begin_read_operation -EXPORT_SYMBOL fs/fscache/fscache 0xe5725d13 fscache_io_error -EXPORT_SYMBOL fs/fscache/fscache 0xe639b4b9 __fscache_uncache_all_inode_pages -EXPORT_SYMBOL fs/fscache/fscache 0xeba89590 fscache_add_cache -EXPORT_SYMBOL fs/fscache/fscache 0xfafd67f0 __fscache_wait_on_invalidate -EXPORT_SYMBOL fs/fscache/fscache 0xfcd5414b __fscache_read_or_alloc_pages -EXPORT_SYMBOL fs/netfs/netfs 0x098308d5 netfs_subreq_terminated -EXPORT_SYMBOL fs/netfs/netfs 0x0d13523e netfs_readpage -EXPORT_SYMBOL fs/netfs/netfs 0x2c7c8555 netfs_write_begin -EXPORT_SYMBOL fs/netfs/netfs 0x80d203ee netfs_stats_show -EXPORT_SYMBOL fs/netfs/netfs 0x91a05c40 netfs_readahead +EXPORT_SYMBOL fs/fscache/fscache 0x7475fc87 __fscache_wait_on_page_write +EXPORT_SYMBOL fs/fscache/fscache 0x75e6906b __fscache_disable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x7af9978b fscache_enqueue_operation +EXPORT_SYMBOL fs/fscache/fscache 0x7d1fce7a __fscache_write_page +EXPORT_SYMBOL fs/fscache/fscache 0x7fb81b7b fscache_object_retrying_stale +EXPORT_SYMBOL fs/fscache/fscache 0x86ed6aaa fscache_mark_page_cached +EXPORT_SYMBOL fs/fscache/fscache 0x8a7d13c7 __fscache_unregister_netfs +EXPORT_SYMBOL fs/fscache/fscache 0x8dfac9ae __fscache_read_or_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0x8f446bad fscache_add_cache +EXPORT_SYMBOL fs/fscache/fscache 0x93fcdb91 fscache_mark_pages_cached +EXPORT_SYMBOL fs/fscache/fscache 0x99bed44f __fscache_relinquish_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xa2ae53a2 fscache_operation_init +EXPORT_SYMBOL fs/fscache/fscache 0xab165dd9 __fscache_check_page_write +EXPORT_SYMBOL fs/fscache/fscache 0xb1f17bcc fscache_fsdef_index +EXPORT_SYMBOL fs/fscache/fscache 0xb97fecb1 fscache_check_aux +EXPORT_SYMBOL fs/fscache/fscache 0xbd514580 fscache_object_destroy +EXPORT_SYMBOL fs/fscache/fscache 0xc2a24591 fscache_object_init +EXPORT_SYMBOL fs/fscache/fscache 0xc8340d92 __fscache_uncache_all_inode_pages +EXPORT_SYMBOL fs/fscache/fscache 0xc9350909 fscache_withdraw_cache +EXPORT_SYMBOL fs/fscache/fscache 0xd4b4e4f3 fscache_init_cache +EXPORT_SYMBOL fs/fscache/fscache 0xd55b1d2f __fscache_enable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xdee03556 __fscache_uncache_page +EXPORT_SYMBOL fs/fscache/fscache 0xf025a634 fscache_obtained_object +EXPORT_SYMBOL fs/fscache/fscache 0xf6481d03 __fscache_read_or_alloc_pages +EXPORT_SYMBOL fs/fscache/fscache 0xfae70f44 __fscache_acquire_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xfb5156f6 fscache_object_mark_killed +EXPORT_SYMBOL fs/fscache/fscache 0xfc3b1025 __fscache_check_consistency +EXPORT_SYMBOL fs/netfs/netfs 0x3743631b netfs_readpage +EXPORT_SYMBOL fs/netfs/netfs 0x8a0b80a6 netfs_write_begin +EXPORT_SYMBOL fs/netfs/netfs 0xa08dd706 netfs_readahead +EXPORT_SYMBOL fs/netfs/netfs 0xcd687e6d netfs_subreq_terminated +EXPORT_SYMBOL fs/netfs/netfs 0xeb161e04 netfs_stats_show EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active -EXPORT_SYMBOL fs/quota/quota_tree 0x02e1d213 qtree_entry_unused -EXPORT_SYMBOL fs/quota/quota_tree 0x1162f739 qtree_delete_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0x6079beb2 qtree_read_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0x77e83dab qtree_get_next_id -EXPORT_SYMBOL fs/quota/quota_tree 0xb49948b4 qtree_write_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0xb4de26b8 qtree_release_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x1fb61768 qtree_read_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x294b4bae qtree_get_next_id +EXPORT_SYMBOL fs/quota/quota_tree 0x643028e5 qtree_delete_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xc0b2e71d qtree_write_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xcd8cd745 qtree_release_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xe5fff4cb qtree_entry_unused 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 @@ -4738,7 +4754,6 @@ EXPORT_SYMBOL lib/crc8 0xc3cd034d crc8_populate_lsb EXPORT_SYMBOL lib/crypto/libarc4 0x2bb32ad1 arc4_setkey EXPORT_SYMBOL lib/crypto/libarc4 0xcd47fcc4 arc4_crypt -EXPORT_SYMBOL lib/crypto/libblake2s 0x7bcc24fd blake2s256_hmac EXPORT_SYMBOL lib/crypto/libblake2s 0xa3cefaa0 blake2s_update EXPORT_SYMBOL lib/crypto/libblake2s 0xadae6df8 blake2s_final EXPORT_SYMBOL lib/crypto/libblake2s-generic 0x755f4ba3 blake2s_compress_generic @@ -4764,14 +4779,14 @@ EXPORT_SYMBOL lib/lru_cache 0x4522d82a lc_reset EXPORT_SYMBOL lib/lru_cache 0x4cf5f5a8 lc_is_used EXPORT_SYMBOL lib/lru_cache 0x5752f31b lc_del -EXPORT_SYMBOL lib/lru_cache 0x70c2dfd6 lc_seq_printf_stats +EXPORT_SYMBOL lib/lru_cache 0x5afd605a lc_seq_printf_stats EXPORT_SYMBOL lib/lru_cache 0x7257beee lc_element_by_index EXPORT_SYMBOL lib/lru_cache 0x9134feb7 lc_get -EXPORT_SYMBOL lib/lru_cache 0x92caa961 lc_seq_dump_details EXPORT_SYMBOL lib/lru_cache 0xb672aa97 lc_create EXPORT_SYMBOL lib/lru_cache 0xbfbe53d5 lc_get_cumulative EXPORT_SYMBOL lib/lru_cache 0xc3a98c1d lc_try_lock EXPORT_SYMBOL lib/lru_cache 0xcc979a91 lc_set +EXPORT_SYMBOL lib/lru_cache 0xcdc109d0 lc_seq_dump_details EXPORT_SYMBOL lib/lru_cache 0xefec290a lc_find EXPORT_SYMBOL lib/lru_cache 0xfd525ec7 lc_put EXPORT_SYMBOL lib/lz4/lz4_compress 0x4f4d78c5 LZ4_compress_default @@ -4841,815 +4856,816 @@ EXPORT_SYMBOL lib/zstd/zstd_compress 0xefe4f679 ZSTD_CCtxWorkspaceBound EXPORT_SYMBOL lib/zstd/zstd_compress 0xfdf70093 ZSTD_CStreamOutSize EXPORT_SYMBOL lib/zstd/zstd_compress 0xff9c4b56 ZSTD_compressBound -EXPORT_SYMBOL net/6lowpan/6lowpan 0x251037e0 lowpan_nhc_add -EXPORT_SYMBOL net/6lowpan/6lowpan 0x31399565 lowpan_unregister_netdevice -EXPORT_SYMBOL net/6lowpan/6lowpan 0xcab75711 lowpan_unregister_netdev -EXPORT_SYMBOL net/6lowpan/6lowpan 0xda9d4beb lowpan_nhc_del -EXPORT_SYMBOL net/6lowpan/6lowpan 0xecf56982 lowpan_register_netdev -EXPORT_SYMBOL net/6lowpan/6lowpan 0xf221bfe1 lowpan_register_netdevice -EXPORT_SYMBOL net/802/p8022 0x1b6f77c2 unregister_8022_client -EXPORT_SYMBOL net/802/p8022 0xf2524c30 register_8022_client -EXPORT_SYMBOL net/802/psnap 0x67ddc83c unregister_snap_client -EXPORT_SYMBOL net/802/psnap 0xb7aabb58 register_snap_client -EXPORT_SYMBOL net/9p/9pnet 0x0b6af013 p9_show_client_options -EXPORT_SYMBOL net/9p/9pnet 0x0dc3cbc3 p9_client_create -EXPORT_SYMBOL net/9p/9pnet 0x0ea82cf4 p9_client_attach -EXPORT_SYMBOL net/9p/9pnet 0x12095fe1 p9_client_clunk -EXPORT_SYMBOL net/9p/9pnet 0x131d909c p9_client_create_dotl +EXPORT_SYMBOL net/6lowpan/6lowpan 0x16c5cb70 lowpan_unregister_netdevice +EXPORT_SYMBOL net/6lowpan/6lowpan 0x36efd9df lowpan_register_netdevice +EXPORT_SYMBOL net/6lowpan/6lowpan 0x5dccb620 lowpan_register_netdev +EXPORT_SYMBOL net/6lowpan/6lowpan 0x6e3fedac lowpan_unregister_netdev +EXPORT_SYMBOL net/6lowpan/6lowpan 0xc7a1b746 lowpan_nhc_del +EXPORT_SYMBOL net/6lowpan/6lowpan 0xdeedd232 lowpan_nhc_add +EXPORT_SYMBOL net/802/p8022 0x05ad3c3b register_8022_client +EXPORT_SYMBOL net/802/p8022 0x5b792fe8 unregister_8022_client +EXPORT_SYMBOL net/802/psnap 0x187850a4 register_snap_client +EXPORT_SYMBOL net/802/psnap 0x7bbb8750 unregister_snap_client +EXPORT_SYMBOL net/9p/9pnet 0x01ef8e9a p9_client_mkdir_dotl +EXPORT_SYMBOL net/9p/9pnet 0x05083f5e p9_client_create +EXPORT_SYMBOL net/9p/9pnet 0x081a3e1b p9_client_getattr_dotl +EXPORT_SYMBOL net/9p/9pnet 0x0b25e72a p9_client_mknod_dotl +EXPORT_SYMBOL net/9p/9pnet 0x0f407ff5 p9_client_destroy +EXPORT_SYMBOL net/9p/9pnet 0x109dead9 p9_client_attach EXPORT_SYMBOL net/9p/9pnet 0x1430723c p9_req_put -EXPORT_SYMBOL net/9p/9pnet 0x14db8ef8 p9_client_walk -EXPORT_SYMBOL net/9p/9pnet 0x188c1b2d p9_is_proto_dotl -EXPORT_SYMBOL net/9p/9pnet 0x19292456 p9_client_getattr_dotl -EXPORT_SYMBOL net/9p/9pnet 0x1d9a31d1 p9_client_read_once -EXPORT_SYMBOL net/9p/9pnet 0x1e53db0e p9_client_lock_dotl -EXPORT_SYMBOL net/9p/9pnet 0x200fca04 p9_client_link -EXPORT_SYMBOL net/9p/9pnet 0x2ae4bdf3 p9_client_mknod_dotl -EXPORT_SYMBOL net/9p/9pnet 0x2e1360ca p9_client_setattr -EXPORT_SYMBOL net/9p/9pnet 0x2efe3427 p9_client_cb -EXPORT_SYMBOL net/9p/9pnet 0x2f148245 p9_client_renameat -EXPORT_SYMBOL net/9p/9pnet 0x31519448 p9_client_read -EXPORT_SYMBOL net/9p/9pnet 0x39d7618a p9_client_open -EXPORT_SYMBOL net/9p/9pnet 0x3a4da141 p9_client_readdir +EXPORT_SYMBOL net/9p/9pnet 0x18c14abb p9_client_open +EXPORT_SYMBOL net/9p/9pnet 0x1a89acb9 p9_client_lock_dotl +EXPORT_SYMBOL net/9p/9pnet 0x1aa5ff8e p9_client_link +EXPORT_SYMBOL net/9p/9pnet 0x1d32dfd4 p9_client_symlink +EXPORT_SYMBOL net/9p/9pnet 0x20efcb6a p9_client_walk +EXPORT_SYMBOL net/9p/9pnet 0x3906a0c2 p9_client_fcreate EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno EXPORT_SYMBOL net/9p/9pnet 0x41ce9823 p9stat_read -EXPORT_SYMBOL net/9p/9pnet 0x41d32251 p9_client_rename -EXPORT_SYMBOL net/9p/9pnet 0x48e1ccde p9_client_fcreate -EXPORT_SYMBOL net/9p/9pnet 0x5217847e v9fs_register_trans -EXPORT_SYMBOL net/9p/9pnet 0x5224550c v9fs_get_default_trans -EXPORT_SYMBOL net/9p/9pnet 0x5a9ad064 p9_client_unlinkat -EXPORT_SYMBOL net/9p/9pnet 0x633a5e83 p9_client_remove -EXPORT_SYMBOL net/9p/9pnet 0x75baa6ad p9_client_wstat -EXPORT_SYMBOL net/9p/9pnet 0x7a009f11 p9_client_mkdir_dotl -EXPORT_SYMBOL net/9p/9pnet 0x83cf280b p9_client_statfs -EXPORT_SYMBOL net/9p/9pnet 0x91445fc4 p9_client_getlock_dotl +EXPORT_SYMBOL net/9p/9pnet 0x4408bbe7 p9_is_proto_dotl +EXPORT_SYMBOL net/9p/9pnet 0x45dc85c2 v9fs_get_trans_by_name +EXPORT_SYMBOL net/9p/9pnet 0x4f81138c v9fs_get_default_trans +EXPORT_SYMBOL net/9p/9pnet 0x5546c18d p9_client_stat +EXPORT_SYMBOL net/9p/9pnet 0x5f9cd057 v9fs_unregister_trans +EXPORT_SYMBOL net/9p/9pnet 0x61096543 p9_client_cb +EXPORT_SYMBOL net/9p/9pnet 0x6a7e1ac6 p9_client_getlock_dotl +EXPORT_SYMBOL net/9p/9pnet 0x6c748295 p9_client_remove +EXPORT_SYMBOL net/9p/9pnet 0x7eb45164 p9_client_wstat +EXPORT_SYMBOL net/9p/9pnet 0x8fc9a230 p9_client_readlink EXPORT_SYMBOL net/9p/9pnet 0x95bd8f96 p9dirent_read EXPORT_SYMBOL net/9p/9pnet 0x984c5e73 p9_fcall_fini -EXPORT_SYMBOL net/9p/9pnet 0x9a646f11 p9_client_symlink -EXPORT_SYMBOL net/9p/9pnet 0x9c461403 p9_client_write -EXPORT_SYMBOL net/9p/9pnet 0xa0665fbb v9fs_unregister_trans -EXPORT_SYMBOL net/9p/9pnet 0xa3b7db99 p9_tag_lookup -EXPORT_SYMBOL net/9p/9pnet 0xa9b2f9f7 p9_client_disconnect -EXPORT_SYMBOL net/9p/9pnet 0xa9cafe47 p9_is_proto_dotu -EXPORT_SYMBOL net/9p/9pnet 0xacab0528 p9_client_destroy -EXPORT_SYMBOL net/9p/9pnet 0xb0f342e9 p9_client_stat -EXPORT_SYMBOL net/9p/9pnet 0xb228a3ab p9_client_readlink +EXPORT_SYMBOL net/9p/9pnet 0x9ccaa2ee p9_client_setattr +EXPORT_SYMBOL net/9p/9pnet 0x9e0982b7 p9_client_read +EXPORT_SYMBOL net/9p/9pnet 0x9f288a93 p9_client_read_once +EXPORT_SYMBOL net/9p/9pnet 0x9f42b602 p9_client_fsync +EXPORT_SYMBOL net/9p/9pnet 0xa59df7ff p9_client_create_dotl +EXPORT_SYMBOL net/9p/9pnet 0xa5e80160 p9_client_begin_disconnect +EXPORT_SYMBOL net/9p/9pnet 0xa7851877 p9_client_statfs +EXPORT_SYMBOL net/9p/9pnet 0xa8f02b47 v9fs_register_trans EXPORT_SYMBOL net/9p/9pnet 0xb79f25fd p9_parse_header -EXPORT_SYMBOL net/9p/9pnet 0xd23d30bd p9_client_begin_disconnect +EXPORT_SYMBOL net/9p/9pnet 0xb9f5c76c p9_client_renameat +EXPORT_SYMBOL net/9p/9pnet 0xc1688a4d p9_client_disconnect +EXPORT_SYMBOL net/9p/9pnet 0xc9bdeeb0 p9_client_unlinkat +EXPORT_SYMBOL net/9p/9pnet 0xd0417a73 p9_show_client_options +EXPORT_SYMBOL net/9p/9pnet 0xd3803be4 p9_is_proto_dotu EXPORT_SYMBOL net/9p/9pnet 0xd384c683 p9stat_free -EXPORT_SYMBOL net/9p/9pnet 0xd4b3a956 p9_release_pages -EXPORT_SYMBOL net/9p/9pnet 0xdb7d937c p9_client_fsync -EXPORT_SYMBOL net/9p/9pnet 0xe1e0e489 v9fs_get_trans_by_name +EXPORT_SYMBOL net/9p/9pnet 0xd4c119b7 p9_client_clunk EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init -EXPORT_SYMBOL net/appletalk/appletalk 0x4fac7ddb aarp_send_ddp -EXPORT_SYMBOL net/appletalk/appletalk 0x6cff2315 atrtr_get_dev -EXPORT_SYMBOL net/appletalk/appletalk 0xa7093a1c alloc_ltalkdev -EXPORT_SYMBOL net/appletalk/appletalk 0xf2e17ecf atalk_find_dev_addr -EXPORT_SYMBOL net/atm/atm 0x08e9bcf6 atm_dev_deregister -EXPORT_SYMBOL net/atm/atm 0x17bb6071 atm_dev_signal_change -EXPORT_SYMBOL net/atm/atm 0x24fe486f atm_dev_register +EXPORT_SYMBOL net/9p/9pnet 0xebe4f89c p9_client_write +EXPORT_SYMBOL net/9p/9pnet 0xf5785290 p9_client_readdir +EXPORT_SYMBOL net/9p/9pnet 0xf9810194 p9_tag_lookup +EXPORT_SYMBOL net/9p/9pnet 0xfc3ecf55 p9_client_rename +EXPORT_SYMBOL net/9p/9pnet 0xff945319 p9_release_pages +EXPORT_SYMBOL net/appletalk/appletalk 0x1a31d565 atalk_find_dev_addr +EXPORT_SYMBOL net/appletalk/appletalk 0x2f13451c atrtr_get_dev +EXPORT_SYMBOL net/appletalk/appletalk 0x5993e545 alloc_ltalkdev +EXPORT_SYMBOL net/appletalk/appletalk 0x904f4347 aarp_send_ddp +EXPORT_SYMBOL net/atm/atm 0x080bc549 atm_dev_deregister +EXPORT_SYMBOL net/atm/atm 0x0aed53b2 register_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0x1c0748ab atm_dev_lookup EXPORT_SYMBOL net/atm/atm 0x2cc2d52d vcc_hash -EXPORT_SYMBOL net/atm/atm 0x41682a19 atm_charge +EXPORT_SYMBOL net/atm/atm 0x4190ac19 vcc_process_recv_queue EXPORT_SYMBOL net/atm/atm 0x4443d399 atm_proc_root EXPORT_SYMBOL net/atm/atm 0x44c6e633 vcc_sklist_lock -EXPORT_SYMBOL net/atm/atm 0x454e1990 atm_init_aal5 -EXPORT_SYMBOL net/atm/atm 0x570f0d8c deregister_atm_ioctl -EXPORT_SYMBOL net/atm/atm 0x682dac4e vcc_insert_socket -EXPORT_SYMBOL net/atm/atm 0x6d4f3930 vcc_release_async -EXPORT_SYMBOL net/atm/atm 0x96c94edc vcc_process_recv_queue +EXPORT_SYMBOL net/atm/atm 0x6ede4a45 atm_charge +EXPORT_SYMBOL net/atm/atm 0x89e23058 deregister_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0x9690af63 atm_init_aal5 EXPORT_SYMBOL net/atm/atm 0x9feaf287 sonet_subtract_stats -EXPORT_SYMBOL net/atm/atm 0xa5eb4f60 atm_alloc_charge EXPORT_SYMBOL net/atm/atm 0xaa024146 sonet_copy_stats -EXPORT_SYMBOL net/atm/atm 0xb2dbe4cc register_atm_ioctl -EXPORT_SYMBOL net/atm/atm 0xc42b3980 atm_dev_release_vccs -EXPORT_SYMBOL net/atm/atm 0xcf69afa5 atm_dev_lookup +EXPORT_SYMBOL net/atm/atm 0xb8698468 vcc_release_async +EXPORT_SYMBOL net/atm/atm 0xe52ad194 atm_alloc_charge +EXPORT_SYMBOL net/atm/atm 0xeae6611e atm_dev_register +EXPORT_SYMBOL net/atm/atm 0xec792411 vcc_insert_socket +EXPORT_SYMBOL net/atm/atm 0xf21d836f atm_dev_release_vccs EXPORT_SYMBOL net/atm/atm 0xf49bc67a atm_pcr_goal +EXPORT_SYMBOL net/atm/atm 0xf9bbd38f atm_dev_signal_change EXPORT_SYMBOL net/ax25/ax25 0x14cecd59 ax25_display_timer EXPORT_SYMBOL net/ax25/ax25 0x242852b9 ax25_uid_policy -EXPORT_SYMBOL net/ax25/ax25 0x31503416 ax25_linkfail_release +EXPORT_SYMBOL net/ax25/ax25 0x3dadec0d ax25_find_cb +EXPORT_SYMBOL net/ax25/ax25 0x43560e72 ax25_linkfail_register EXPORT_SYMBOL net/ax25/ax25 0x4502c65a asc2ax -EXPORT_SYMBOL net/ax25/ax25 0x4f2c341c ax25_linkfail_register -EXPORT_SYMBOL net/ax25/ax25 0x501ac4a7 ax25_send_frame +EXPORT_SYMBOL net/ax25/ax25 0x52fce4d9 ax25_ip_xmit EXPORT_SYMBOL net/ax25/ax25 0x53dea1ff ax2asc -EXPORT_SYMBOL net/ax25/ax25 0x5c722887 ax25_ip_xmit -EXPORT_SYMBOL net/ax25/ax25 0x838ba5d5 ax25_listen_register +EXPORT_SYMBOL net/ax25/ax25 0x60dfc71a ax25_linkfail_release EXPORT_SYMBOL net/ax25/ax25 0x8ede9e26 ax25_protocol_release -EXPORT_SYMBOL net/ax25/ax25 0xa4e2bad6 ax25_listen_release -EXPORT_SYMBOL net/ax25/ax25 0xa6e2e2e0 ax25_header_ops +EXPORT_SYMBOL net/ax25/ax25 0xb173ff1f ax25_listen_release EXPORT_SYMBOL net/ax25/ax25 0xc1444946 ax25cmp -EXPORT_SYMBOL net/ax25/ax25 0xc1e9c051 ax25_find_cb EXPORT_SYMBOL net/ax25/ax25 0xd43ecbf1 null_ax25_address +EXPORT_SYMBOL net/ax25/ax25 0xd6db8bf9 ax25_header_ops +EXPORT_SYMBOL net/ax25/ax25 0xdee99612 ax25_send_frame EXPORT_SYMBOL net/ax25/ax25 0xee02e420 ax25_findbyuid +EXPORT_SYMBOL net/ax25/ax25 0xf682464c ax25_listen_register EXPORT_SYMBOL net/bluetooth/bluetooth 0x0718b8b7 bt_info -EXPORT_SYMBOL net/bluetooth/bluetooth 0x07c05202 hci_get_route -EXPORT_SYMBOL net/bluetooth/bluetooth 0x0afcbee5 bt_sock_poll -EXPORT_SYMBOL net/bluetooth/bluetooth 0x18e828db bt_sock_ioctl -EXPORT_SYMBOL net/bluetooth/bluetooth 0x1c9b04c3 __hci_cmd_sync -EXPORT_SYMBOL net/bluetooth/bluetooth 0x1e8340c1 bt_procfs_cleanup -EXPORT_SYMBOL net/bluetooth/bluetooth 0x209631e4 hci_suspend_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0ca0c01a __hci_cmd_sync_ev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x100dd9d7 hci_mgmt_chan_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0x13d29b98 hci_get_route +EXPORT_SYMBOL net/bluetooth/bluetooth 0x1797dda1 hci_register_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x1e770a7c bt_sock_wait_state EXPORT_SYMBOL net/bluetooth/bluetooth 0x214e4265 bt_warn -EXPORT_SYMBOL net/bluetooth/bluetooth 0x281658f5 hci_recv_diag -EXPORT_SYMBOL net/bluetooth/bluetooth 0x29c41f18 l2cap_chan_close -EXPORT_SYMBOL net/bluetooth/bluetooth 0x2d218893 hci_reset_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x4b0c6faa bt_accept_dequeue -EXPORT_SYMBOL net/bluetooth/bluetooth 0x4c152be4 hci_free_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x4fd852fc hci_cmd_sync -EXPORT_SYMBOL net/bluetooth/bluetooth 0x53de89da hci_recv_frame -EXPORT_SYMBOL net/bluetooth/bluetooth 0x5ca38d5e __hci_cmd_sync_ev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x6cd85d14 bt_sock_recvmsg -EXPORT_SYMBOL net/bluetooth/bluetooth 0x6ea02b3f l2cap_conn_get +EXPORT_SYMBOL net/bluetooth/bluetooth 0x22a4e6c3 l2cap_unregister_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0x24db5347 hci_set_fw_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0x27f79d88 hci_free_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2904f6a8 bt_procfs_cleanup +EXPORT_SYMBOL net/bluetooth/bluetooth 0x310e95d0 bt_sock_stream_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3589efd6 hci_resume_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x37e21aa6 bt_procfs_init +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3ab4c258 bt_sock_reclassify_lock +EXPORT_SYMBOL net/bluetooth/bluetooth 0x431b9c9a bt_sock_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0x51d1c72d hci_conn_check_secure +EXPORT_SYMBOL net/bluetooth/bluetooth 0x541bd02f bt_sock_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5b3b6ae5 bt_accept_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5deaacf2 l2cap_chan_close +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5e8b20dd hci_set_hw_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0x683540ee l2cap_conn_put +EXPORT_SYMBOL net/bluetooth/bluetooth 0x6a94eba3 hci_alloc_dev_priv +EXPORT_SYMBOL net/bluetooth/bluetooth 0x73bb50d2 hci_register_cb EXPORT_SYMBOL net/bluetooth/bluetooth 0x7aad008b bt_to_errno -EXPORT_SYMBOL net/bluetooth/bluetooth 0x7b035340 hci_unregister_cb EXPORT_SYMBOL net/bluetooth/bluetooth 0x7b5ce5c3 baswap EXPORT_SYMBOL net/bluetooth/bluetooth 0x7b8c32f1 bt_err -EXPORT_SYMBOL net/bluetooth/bluetooth 0x7e6d94f7 l2cap_conn_put -EXPORT_SYMBOL net/bluetooth/bluetooth 0x809f5975 hci_alloc_dev_priv -EXPORT_SYMBOL net/bluetooth/bluetooth 0x88d80c9a bt_sock_unlink -EXPORT_SYMBOL net/bluetooth/bluetooth 0x8a3ea1cd hci_conn_security -EXPORT_SYMBOL net/bluetooth/bluetooth 0x8ae219de hci_conn_check_secure +EXPORT_SYMBOL net/bluetooth/bluetooth 0x88301568 bt_accept_enqueue +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8b7ee7d8 hci_suspend_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8b8ad9f7 hci_conn_security +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8bf07aff hci_recv_diag +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8e1b61a0 hci_unregister_dev EXPORT_SYMBOL net/bluetooth/bluetooth 0x8fea24bd bt_sock_unregister -EXPORT_SYMBOL net/bluetooth/bluetooth 0x90d73c7b bt_sock_stream_recvmsg -EXPORT_SYMBOL net/bluetooth/bluetooth 0x9322ea48 __hci_cmd_send -EXPORT_SYMBOL net/bluetooth/bluetooth 0x992e59a7 hci_conn_switch_role -EXPORT_SYMBOL net/bluetooth/bluetooth 0x9fd4f356 hci_set_hw_info -EXPORT_SYMBOL net/bluetooth/bluetooth 0xa816b33f hci_set_fw_info -EXPORT_SYMBOL net/bluetooth/bluetooth 0xa899c9f1 l2cap_is_socket -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb5315259 hci_resume_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xba07f437 hci_mgmt_chan_register -EXPORT_SYMBOL net/bluetooth/bluetooth 0xc01cba83 hci_register_cb -EXPORT_SYMBOL net/bluetooth/bluetooth 0xc0e2e0bd hci_release_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xc15e13bf l2cap_register_user -EXPORT_SYMBOL net/bluetooth/bluetooth 0xc445eaae hci_register_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xcaee09c0 hci_mgmt_chan_unregister -EXPORT_SYMBOL net/bluetooth/bluetooth 0xce158696 bt_accept_enqueue -EXPORT_SYMBOL net/bluetooth/bluetooth 0xd3137a07 bt_procfs_init +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa8e1851b hci_reset_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa952b8fd hci_mgmt_chan_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0xadca3d1d bt_sock_wait_ready +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb25bdeef l2cap_register_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb295d385 hci_recv_frame +EXPORT_SYMBOL net/bluetooth/bluetooth 0xbeb044c7 hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc34fc323 bt_sock_ioctl +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc823b5fc __hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0xcdb4e270 bt_sock_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd6cae143 hci_release_dev EXPORT_SYMBOL net/bluetooth/bluetooth 0xd7613212 bt_err_ratelimited -EXPORT_SYMBOL net/bluetooth/bluetooth 0xd932d2fe bt_sock_reclassify_lock -EXPORT_SYMBOL net/bluetooth/bluetooth 0xdaa6ca2a l2cap_unregister_user EXPORT_SYMBOL net/bluetooth/bluetooth 0xddacccf6 bt_warn_ratelimited -EXPORT_SYMBOL net/bluetooth/bluetooth 0xddfc58f1 bt_sock_wait_ready -EXPORT_SYMBOL net/bluetooth/bluetooth 0xdea08b31 hci_unregister_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xdfc28f5e bt_accept_unlink -EXPORT_SYMBOL net/bluetooth/bluetooth 0xe38b0be7 bt_sock_link -EXPORT_SYMBOL net/bluetooth/bluetooth 0xe50200e4 bt_sock_wait_state -EXPORT_SYMBOL net/bluetooth/bluetooth 0xea6b2934 bt_sock_register -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x062a847f ebt_register_template -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x13d1f311 ebt_unregister_table_pre_exit -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x5b61903a ebt_unregister_template -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x73ae890d ebt_register_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xc76ba8b3 ebt_unregister_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xcbfd7a65 ebt_do_table +EXPORT_SYMBOL net/bluetooth/bluetooth 0xea5421e5 l2cap_is_socket +EXPORT_SYMBOL net/bluetooth/bluetooth 0xec48a7a1 bt_sock_link +EXPORT_SYMBOL net/bluetooth/bluetooth 0xeed51c3e hci_unregister_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf1a979cc hci_conn_switch_role +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf1f301bb bt_sock_poll +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf341ef76 __hci_cmd_send +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf9994d46 l2cap_conn_get +EXPORT_SYMBOL net/bluetooth/bluetooth 0xffe82dc0 bt_accept_dequeue +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x0f0573f6 ebt_unregister_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x769b78ef ebt_unregister_table_pre_exit +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xa985bd46 ebt_unregister_template +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xaea7d8e7 ebt_register_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xcd21e752 ebt_register_template +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xdec6a19f ebt_do_table EXPORT_SYMBOL net/caif/caif 0x1446b60a caif_client_register_refcnt -EXPORT_SYMBOL net/caif/caif 0x16332341 caif_disconnect_client EXPORT_SYMBOL net/caif/caif 0x2a09f713 cfpkt_fromnative +EXPORT_SYMBOL net/caif/caif 0x32486963 caif_connect_client EXPORT_SYMBOL net/caif/caif 0x329dbd06 cfpkt_info EXPORT_SYMBOL net/caif/caif 0x38701a7c cfcnfg_del_phy_layer EXPORT_SYMBOL net/caif/caif 0x3fa84493 cfpkt_add_head EXPORT_SYMBOL net/caif/caif 0x40babbe0 cfpkt_extr_head EXPORT_SYMBOL net/caif/caif 0x4a237e57 cfpkt_tonative -EXPORT_SYMBOL net/caif/caif 0x6fe0a9f7 get_cfcnfg EXPORT_SYMBOL net/caif/caif 0x839ddb7b cfcnfg_set_phy_state -EXPORT_SYMBOL net/caif/caif 0x9b97b551 caif_enroll_dev EXPORT_SYMBOL net/caif/caif 0x9e3e305d cfpkt_set_prio +EXPORT_SYMBOL net/caif/caif 0xa2597b59 caif_enroll_dev EXPORT_SYMBOL net/caif/caif 0xb7b6874e caif_free_client -EXPORT_SYMBOL net/caif/caif 0xc6d9cc64 cfcnfg_add_phy_layer -EXPORT_SYMBOL net/caif/caif 0xfb0f610e caif_connect_client -EXPORT_SYMBOL net/can/can 0x39c0cd0d can_proto_register -EXPORT_SYMBOL net/can/can 0x4e1bbe5c can_sock_destruct -EXPORT_SYMBOL net/can/can 0x6dc591c1 can_proto_unregister -EXPORT_SYMBOL net/can/can 0x8e8a25cc can_rx_register -EXPORT_SYMBOL net/can/can 0xf4b799bc can_rx_unregister -EXPORT_SYMBOL net/can/can 0xff1dcb63 can_send -EXPORT_SYMBOL net/ceph/libceph 0x0322fa52 ceph_auth_handle_svc_reply_more -EXPORT_SYMBOL net/ceph/libceph 0x04a11b2f ceph_osdc_cancel_request +EXPORT_SYMBOL net/caif/caif 0xd9655066 caif_disconnect_client +EXPORT_SYMBOL net/caif/caif 0xe321f7ab get_cfcnfg +EXPORT_SYMBOL net/caif/caif 0xeb9499b3 cfcnfg_add_phy_layer +EXPORT_SYMBOL net/can/can 0x3a347304 can_proto_unregister +EXPORT_SYMBOL net/can/can 0x51d463ca can_rx_register +EXPORT_SYMBOL net/can/can 0x7ca74d07 can_rx_unregister +EXPORT_SYMBOL net/can/can 0x89cbef32 can_send +EXPORT_SYMBOL net/can/can 0xd8e6cc97 can_sock_destruct +EXPORT_SYMBOL net/can/can 0xda4fa1ab can_proto_register +EXPORT_SYMBOL net/ceph/libceph 0x019a5004 ceph_osdc_start_request +EXPORT_SYMBOL net/ceph/libceph 0x037f30ce ceph_con_send +EXPORT_SYMBOL net/ceph/libceph 0x04661143 ceph_msg_get EXPORT_SYMBOL net/ceph/libceph 0x04cad6f0 ceph_pg_poolid_by_name -EXPORT_SYMBOL net/ceph/libceph 0x0a64b132 ceph_cls_lock -EXPORT_SYMBOL net/ceph/libceph 0x0cbd4be0 ceph_open_session -EXPORT_SYMBOL net/ceph/libceph 0x0ccaf62d ceph_con_init -EXPORT_SYMBOL net/ceph/libceph 0x107f9156 ceph_osdc_unwatch -EXPORT_SYMBOL net/ceph/libceph 0x116a8498 ceph_osdc_alloc_messages -EXPORT_SYMBOL net/ceph/libceph 0x12725f2f ceph_reset_client_addr +EXPORT_SYMBOL net/ceph/libceph 0x079ff139 ceph_auth_invalidate_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x08638e2c osd_req_op_cls_init +EXPORT_SYMBOL net/ceph/libceph 0x089e9d72 ceph_monc_open_session +EXPORT_SYMBOL net/ceph/libceph 0x1042db19 ceph_msg_data_add_pagelist EXPORT_SYMBOL net/ceph/libceph 0x1378aba3 ceph_pg_pool_name_by_id -EXPORT_SYMBOL net/ceph/libceph 0x138fbd91 ceph_msg_new -EXPORT_SYMBOL net/ceph/libceph 0x14b478c8 ceph_destroy_client -EXPORT_SYMBOL net/ceph/libceph 0x15856aa4 ceph_osdc_new_request +EXPORT_SYMBOL net/ceph/libceph 0x15db8142 ceph_client_addr EXPORT_SYMBOL net/ceph/libceph 0x165b1948 ceph_pagelist_free_reserve +EXPORT_SYMBOL net/ceph/libceph 0x165eb799 ceph_cls_unlock EXPORT_SYMBOL net/ceph/libceph 0x17c17611 ceph_pg_to_acting_primary -EXPORT_SYMBOL net/ceph/libceph 0x1d657f3c ceph_monc_open_session -EXPORT_SYMBOL net/ceph/libceph 0x1e5ed9a7 ceph_msg_put +EXPORT_SYMBOL net/ceph/libceph 0x1c2b0814 ceph_auth_add_authorizer_challenge +EXPORT_SYMBOL net/ceph/libceph 0x1ffe6f48 osd_req_op_extent_dup_last EXPORT_SYMBOL net/ceph/libceph 0x2087719e ceph_oid_copy EXPORT_SYMBOL net/ceph/libceph 0x2101cbc9 ceph_oid_destroy -EXPORT_SYMBOL net/ceph/libceph 0x226c4c61 ceph_osdc_sync -EXPORT_SYMBOL net/ceph/libceph 0x2278811f ceph_cls_assert_locked +EXPORT_SYMBOL net/ceph/libceph 0x21d92576 ceph_osdc_sync +EXPORT_SYMBOL net/ceph/libceph 0x2215d718 ceph_cls_break_lock +EXPORT_SYMBOL net/ceph/libceph 0x2276fb4b ceph_auth_is_authenticated +EXPORT_SYMBOL net/ceph/libceph 0x230d0d50 ceph_osdc_notify +EXPORT_SYMBOL net/ceph/libceph 0x23c2e621 ceph_monc_blocklist_add +EXPORT_SYMBOL net/ceph/libceph 0x259005e0 ceph_compare_options +EXPORT_SYMBOL net/ceph/libceph 0x26b1ec44 ceph_put_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x29a8f77f ceph_osdc_clear_abort_err +EXPORT_SYMBOL net/ceph/libceph 0x29e97b2b ceph_monc_got_map EXPORT_SYMBOL net/ceph/libceph 0x2a983d26 ceph_pagelist_release -EXPORT_SYMBOL net/ceph/libceph 0x2dd511d0 osd_req_op_extent_osd_data_bvec_pos -EXPORT_SYMBOL net/ceph/libceph 0x2f8af6a1 osd_req_op_alloc_hint_init -EXPORT_SYMBOL net/ceph/libceph 0x3072be93 ceph_cls_set_cookie -EXPORT_SYMBOL net/ceph/libceph 0x3525f8bd ceph_osdc_put_request -EXPORT_SYMBOL net/ceph/libceph 0x35f9b252 osd_req_op_cls_request_data_pagelist -EXPORT_SYMBOL net/ceph/libceph 0x372a8b51 ceph_msg_data_add_bio +EXPORT_SYMBOL net/ceph/libceph 0x2aea7639 __ceph_auth_get_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x2bf6006e osd_req_op_extent_osd_data_bio +EXPORT_SYMBOL net/ceph/libceph 0x2e7db234 ceph_osdc_update_epoch_barrier +EXPORT_SYMBOL net/ceph/libceph 0x3039de47 __ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x3259505f osd_req_op_init +EXPORT_SYMBOL net/ceph/libceph 0x36b8326b ceph_monc_get_version_async +EXPORT_SYMBOL net/ceph/libceph 0x36d830f8 osd_req_op_cls_request_data_bvecs EXPORT_SYMBOL net/ceph/libceph 0x38f2d94e ceph_file_to_extents -EXPORT_SYMBOL net/ceph/libceph 0x3963c4af osd_req_op_cls_request_data_bvecs -EXPORT_SYMBOL net/ceph/libceph 0x3a256d3c ceph_msg_data_add_bvecs EXPORT_SYMBOL net/ceph/libceph 0x3c8d7111 ceph_get_num_objects -EXPORT_SYMBOL net/ceph/libceph 0x400f79a0 osd_req_op_extent_update -EXPORT_SYMBOL net/ceph/libceph 0x4082e7c1 ceph_monc_blocklist_add EXPORT_SYMBOL net/ceph/libceph 0x417a9131 ceph_oloc_destroy -EXPORT_SYMBOL net/ceph/libceph 0x42583ae2 ceph_create_client +EXPORT_SYMBOL net/ceph/libceph 0x42e08a36 ceph_monc_renew_subs EXPORT_SYMBOL net/ceph/libceph 0x466b85b8 libceph_compatible -EXPORT_SYMBOL net/ceph/libceph 0x4cb73c14 ceph_monc_want_map -EXPORT_SYMBOL net/ceph/libceph 0x4cccf770 osd_req_op_extent_osd_data_pagelist EXPORT_SYMBOL net/ceph/libceph 0x50603ce3 ceph_decode_entity_addrvec -EXPORT_SYMBOL net/ceph/libceph 0x50abfc94 ceph_copy_from_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x5740460d ceph_put_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x54e5e28e ceph_osdc_maybe_request_map EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash -EXPORT_SYMBOL net/ceph/libceph 0x58661e83 ceph_check_fsid -EXPORT_SYMBOL net/ceph/libceph 0x5ac2ff6a ceph_client_gid +EXPORT_SYMBOL net/ceph/libceph 0x5837bca5 ceph_con_open +EXPORT_SYMBOL net/ceph/libceph 0x592ec30c ceph_cls_lock_info +EXPORT_SYMBOL net/ceph/libceph 0x5a07a2d0 ceph_msg_put +EXPORT_SYMBOL net/ceph/libceph 0x5a47e46c ceph_wait_for_latest_osdmap EXPORT_SYMBOL net/ceph/libceph 0x5aeeee62 ceph_oid_aprintf -EXPORT_SYMBOL net/ceph/libceph 0x5b260684 ceph_release_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x5e660f41 ceph_con_keepalive +EXPORT_SYMBOL net/ceph/libceph 0x5b959fc8 ceph_osdc_cancel_request +EXPORT_SYMBOL net/ceph/libceph 0x5bde7754 osd_req_op_raw_data_in_pages +EXPORT_SYMBOL net/ceph/libceph 0x5f3dfad2 ceph_msg_dump +EXPORT_SYMBOL net/ceph/libceph 0x60669c8e ceph_auth_handle_bad_authorizer EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name -EXPORT_SYMBOL net/ceph/libceph 0x658a211e ceph_parse_mon_ips -EXPORT_SYMBOL net/ceph/libceph 0x65a3bca9 ceph_monc_get_version_async -EXPORT_SYMBOL net/ceph/libceph 0x66cbbf86 ceph_osdc_notify_ack -EXPORT_SYMBOL net/ceph/libceph 0x6a0b226d ceph_auth_handle_svc_reply_done +EXPORT_SYMBOL net/ceph/libceph 0x63b74af6 osd_req_op_cls_response_data_pages EXPORT_SYMBOL net/ceph/libceph 0x6a7a38a0 ceph_pr_addr -EXPORT_SYMBOL net/ceph/libceph 0x6c15cb2a ceph_auth_verify_authorizer_reply -EXPORT_SYMBOL net/ceph/libceph 0x7168ff79 osd_req_op_init -EXPORT_SYMBOL net/ceph/libceph 0x7292b5ba ceph_msg_data_add_pages -EXPORT_SYMBOL net/ceph/libceph 0x75826c27 osd_req_op_extent_dup_last -EXPORT_SYMBOL net/ceph/libceph 0x760decbb ceph_zero_page_vector_range -EXPORT_SYMBOL net/ceph/libceph 0x767839c5 ceph_cls_unlock -EXPORT_SYMBOL net/ceph/libceph 0x784a081d ceph_msg_new2 -EXPORT_SYMBOL net/ceph/libceph 0x7a478cba osd_req_op_cls_init -EXPORT_SYMBOL net/ceph/libceph 0x7c35038c ceph_auth_add_authorizer_challenge -EXPORT_SYMBOL net/ceph/libceph 0x7f540b33 ceph_monc_validate_auth -EXPORT_SYMBOL net/ceph/libceph 0x81e643e2 osd_req_op_extent_osd_data_pages -EXPORT_SYMBOL net/ceph/libceph 0x827387f6 ceph_monc_wait_osdmap -EXPORT_SYMBOL net/ceph/libceph 0x84727a95 osd_req_op_extent_init -EXPORT_SYMBOL net/ceph/libceph 0x85d11ed6 ceph_msg_get -EXPORT_SYMBOL net/ceph/libceph 0x85d7968b ceph_monc_got_map +EXPORT_SYMBOL net/ceph/libceph 0x6bca8d3b ceph_osdc_watch +EXPORT_SYMBOL net/ceph/libceph 0x6c2dcb79 ceph_monc_do_statfs +EXPORT_SYMBOL net/ceph/libceph 0x6e303cbb osd_req_op_extent_osd_data_bvecs +EXPORT_SYMBOL net/ceph/libceph 0x6fc4150d ceph_msg_data_add_bio +EXPORT_SYMBOL net/ceph/libceph 0x70550af4 osd_req_op_extent_update +EXPORT_SYMBOL net/ceph/libceph 0x72d8b87b ceph_cls_set_cookie +EXPORT_SYMBOL net/ceph/libceph 0x73d67361 ceph_con_keepalive +EXPORT_SYMBOL net/ceph/libceph 0x75cbdcf1 ceph_parse_param +EXPORT_SYMBOL net/ceph/libceph 0x78db9e57 ceph_copy_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x7a56542b osd_req_op_xattr_init +EXPORT_SYMBOL net/ceph/libceph 0x7c2bfc31 ceph_monc_get_version +EXPORT_SYMBOL net/ceph/libceph 0x7c7139fc ceph_osdc_new_request +EXPORT_SYMBOL net/ceph/libceph 0x7cadf338 ceph_print_client_options +EXPORT_SYMBOL net/ceph/libceph 0x7f51d30c ceph_auth_handle_svc_reply_more EXPORT_SYMBOL net/ceph/libceph 0x86fca7e4 ceph_put_snap_context -EXPORT_SYMBOL net/ceph/libceph 0x8bc2d546 ceph_print_client_options -EXPORT_SYMBOL net/ceph/libceph 0x8c23d826 ceph_osdc_maybe_request_map +EXPORT_SYMBOL net/ceph/libceph 0x88413aff ceph_msg_new2 +EXPORT_SYMBOL net/ceph/libceph 0x8cde317f ceph_monc_stop +EXPORT_SYMBOL net/ceph/libceph 0x8d7752c9 ceph_osdc_put_request EXPORT_SYMBOL net/ceph/libceph 0x92b7b4ce ceph_pg_pool_flags -EXPORT_SYMBOL net/ceph/libceph 0x967345cb ceph_auth_is_authenticated -EXPORT_SYMBOL net/ceph/libceph 0x97160440 osd_req_op_raw_data_in_pages -EXPORT_SYMBOL net/ceph/libceph 0x97975217 ceph_osdc_abort_requests +EXPORT_SYMBOL net/ceph/libceph 0x938f23e5 ceph_create_client +EXPORT_SYMBOL net/ceph/libceph 0x94e5a65d ceph_con_close +EXPORT_SYMBOL net/ceph/libceph 0x958e2a85 ceph_con_init +EXPORT_SYMBOL net/ceph/libceph 0x9623d1b3 osd_req_op_extent_osd_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x96cb7fb2 ceph_msg_data_add_bvecs EXPORT_SYMBOL net/ceph/libceph 0x987d3968 ceph_alloc_options -EXPORT_SYMBOL net/ceph/libceph 0x98bdd937 osd_req_op_extent_osd_data_bio -EXPORT_SYMBOL net/ceph/libceph 0x9af0ae4e ceph_copy_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x98d4c101 ceph_osdc_call +EXPORT_SYMBOL net/ceph/libceph 0x99159ada ceph_copy_user_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x9979ac29 ceph_auth_get_authorizer EXPORT_SYMBOL net/ceph/libceph 0x9bc6b539 ceph_find_or_create_string +EXPORT_SYMBOL net/ceph/libceph 0x9c0c69af ceph_osdc_alloc_messages EXPORT_SYMBOL net/ceph/libceph 0x9ca95932 ceph_create_snap_context -EXPORT_SYMBOL net/ceph/libceph 0x9e44d75c ceph_cls_lock_info -EXPORT_SYMBOL net/ceph/libceph 0x9e6250eb ceph_osdc_alloc_request 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 0xa57cbb97 ceph_client_addr +EXPORT_SYMBOL net/ceph/libceph 0xa082c47f ceph_monc_init +EXPORT_SYMBOL net/ceph/libceph 0xa2eb0754 ceph_osdc_flush_notifies +EXPORT_SYMBOL net/ceph/libceph 0xa45be509 osd_req_op_cls_request_data_pages +EXPORT_SYMBOL net/ceph/libceph 0xa5b9fb2d ceph_msg_data_add_pages +EXPORT_SYMBOL net/ceph/libceph 0xa5f81429 osd_req_op_extent_osd_data_pagelist EXPORT_SYMBOL net/ceph/libceph 0xa698f998 ceph_free_lockers -EXPORT_SYMBOL net/ceph/libceph 0xa69d4fea osd_req_op_xattr_init -EXPORT_SYMBOL net/ceph/libceph 0xa8617b1f ceph_con_open -EXPORT_SYMBOL net/ceph/libceph 0xa8818563 ceph_osdc_list_watchers -EXPORT_SYMBOL net/ceph/libceph 0xabb2aa7c ceph_compare_options -EXPORT_SYMBOL net/ceph/libceph 0xabcdc16f ceph_monc_do_statfs +EXPORT_SYMBOL net/ceph/libceph 0xa7568c48 osd_req_op_alloc_hint_init +EXPORT_SYMBOL net/ceph/libceph 0xa82b5385 ceph_msg_new +EXPORT_SYMBOL net/ceph/libceph 0xab9bcf84 ceph_auth_handle_svc_reply_done EXPORT_SYMBOL net/ceph/libceph 0xad703657 ceph_auth_destroy_authorizer -EXPORT_SYMBOL net/ceph/libceph 0xae8c18aa ceph_osdc_copy_from EXPORT_SYMBOL net/ceph/libceph 0xafb8a407 ceph_msgr_flush -EXPORT_SYMBOL net/ceph/libceph 0xb36441b5 ceph_con_send EXPORT_SYMBOL net/ceph/libceph 0xb54676fa ceph_msg_type_name -EXPORT_SYMBOL net/ceph/libceph 0xb698e533 ceph_auth_handle_bad_authorizer EXPORT_SYMBOL net/ceph/libceph 0xb72c162e ceph_buffer_release -EXPORT_SYMBOL net/ceph/libceph 0xb840b578 ceph_monc_init -EXPORT_SYMBOL net/ceph/libceph 0xba371da2 ceph_monc_stop -EXPORT_SYMBOL net/ceph/libceph 0xbcad948d ceph_cls_break_lock +EXPORT_SYMBOL net/ceph/libceph 0xb8a0721c ceph_monc_wait_osdmap +EXPORT_SYMBOL net/ceph/libceph 0xb9d7cca6 ceph_osdc_list_watchers +EXPORT_SYMBOL net/ceph/libceph 0xbbc28882 ceph_release_page_vector EXPORT_SYMBOL net/ceph/libceph 0xbd2f79ae ceph_oloc_copy EXPORT_SYMBOL net/ceph/libceph 0xbe3879aa ceph_get_snap_context -EXPORT_SYMBOL net/ceph/libceph 0xbfe531a4 ceph_osdc_wait_request -EXPORT_SYMBOL net/ceph/libceph 0xc199655a ceph_msg_data_add_pagelist +EXPORT_SYMBOL net/ceph/libceph 0xbf3c367c ceph_osdc_alloc_request EXPORT_SYMBOL net/ceph/libceph 0xc366bfa1 ceph_pagelist_truncate -EXPORT_SYMBOL net/ceph/libceph 0xc49e70cc ceph_parse_param -EXPORT_SYMBOL net/ceph/libceph 0xc7f2d384 ceph_con_close -EXPORT_SYMBOL net/ceph/libceph 0xc867a499 ceph_osdc_start_request -EXPORT_SYMBOL net/ceph/libceph 0xc9aba7b8 osd_req_op_cls_response_data_pages +EXPORT_SYMBOL net/ceph/libceph 0xc7c4dcaf osd_req_op_extent_osd_data EXPORT_SYMBOL net/ceph/libceph 0xca80437b ceph_extent_to_file -EXPORT_SYMBOL net/ceph/libceph 0xcaaae7ff ceph_monc_get_version -EXPORT_SYMBOL net/ceph/libceph 0xd3cb1e87 ceph_osdc_get_request -EXPORT_SYMBOL net/ceph/libceph 0xd4a63231 ceph_osdc_update_epoch_barrier +EXPORT_SYMBOL net/ceph/libceph 0xcec02bb6 ceph_monc_want_map +EXPORT_SYMBOL net/ceph/libceph 0xd24ffb2a ceph_auth_verify_authorizer_reply EXPORT_SYMBOL net/ceph/libceph 0xd4d736db ceph_destroy_options +EXPORT_SYMBOL net/ceph/libceph 0xd4ddaa5e ceph_destroy_client EXPORT_SYMBOL net/ceph/libceph 0xd4eb7735 ceph_decode_entity_addr -EXPORT_SYMBOL net/ceph/libceph 0xd772634e __ceph_open_session -EXPORT_SYMBOL net/ceph/libceph 0xd8e1fd9a ceph_alloc_page_vector -EXPORT_SYMBOL net/ceph/libceph 0xd917293b osd_req_op_extent_osd_data_bvecs -EXPORT_SYMBOL net/ceph/libceph 0xd9a7485c ceph_auth_invalidate_authorizer -EXPORT_SYMBOL net/ceph/libceph 0xdabfcd21 osd_req_op_extent_osd_data -EXPORT_SYMBOL net/ceph/libceph 0xdd661055 ceph_auth_get_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xd661c827 ceph_parse_mon_ips +EXPORT_SYMBOL net/ceph/libceph 0xd67448f9 ceph_cls_lock +EXPORT_SYMBOL net/ceph/libceph 0xd9d9b28f osd_req_op_extent_osd_data_bvec_pos +EXPORT_SYMBOL net/ceph/libceph 0xdbab9899 ceph_osdc_copy_from EXPORT_SYMBOL net/ceph/libceph 0xdf6ef4a1 ceph_oid_printf -EXPORT_SYMBOL net/ceph/libceph 0xdfbf19e9 ceph_osdc_flush_notifies EXPORT_SYMBOL net/ceph/libceph 0xdfc091f9 ceph_entity_type_name -EXPORT_SYMBOL net/ceph/libceph 0xe2626a19 __ceph_auth_get_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xe1f51585 ceph_check_fsid EXPORT_SYMBOL net/ceph/libceph 0xe34a59f2 ceph_object_locator_to_pg -EXPORT_SYMBOL net/ceph/libceph 0xe43e6d44 ceph_osdc_notify +EXPORT_SYMBOL net/ceph/libceph 0xe45870ff ceph_alloc_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xe4871d7d ceph_reset_client_addr +EXPORT_SYMBOL net/ceph/libceph 0xe5891d2b osd_req_op_extent_init +EXPORT_SYMBOL net/ceph/libceph 0xe75796d7 ceph_cls_assert_locked EXPORT_SYMBOL net/ceph/libceph 0xe76e7226 ceph_pagelist_alloc -EXPORT_SYMBOL net/ceph/libceph 0xeb25a7ee ceph_msg_dump +EXPORT_SYMBOL net/ceph/libceph 0xe7781942 ceph_client_gid +EXPORT_SYMBOL net/ceph/libceph 0xea76dcc7 ceph_osdc_abort_requests 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 0xf02a44b8 ceph_copy_user_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xefebee13 ceph_zero_page_vector_range EXPORT_SYMBOL net/ceph/libceph 0xf03fe862 ceph_pagelist_set_cursor -EXPORT_SYMBOL net/ceph/libceph 0xf48fd932 ceph_osdc_clear_abort_err -EXPORT_SYMBOL net/ceph/libceph 0xf52c158f ceph_osdc_watch -EXPORT_SYMBOL net/ceph/libceph 0xf65d1715 ceph_monc_renew_subs -EXPORT_SYMBOL net/ceph/libceph 0xfa1184bf osd_req_op_cls_request_data_pages -EXPORT_SYMBOL net/ceph/libceph 0xfbda1f2f ceph_wait_for_latest_osdmap -EXPORT_SYMBOL net/ceph/libceph 0xffedc585 ceph_osdc_call -EXPORT_SYMBOL net/dccp/dccp_ipv4 0x99366ebd dccp_syn_ack_timeout -EXPORT_SYMBOL net/dccp/dccp_ipv4 0xffd41aee dccp_req_err -EXPORT_SYMBOL net/hsr/hsr 0x6e027483 hsr_get_version -EXPORT_SYMBOL net/hsr/hsr 0xca7ae3fe is_hsr_master -EXPORT_SYMBOL net/ieee802154/ieee802154 0x008d228d wpan_phy_register -EXPORT_SYMBOL net/ieee802154/ieee802154 0x56bc334a wpan_phy_new -EXPORT_SYMBOL net/ieee802154/ieee802154 0x69902343 wpan_phy_for_each -EXPORT_SYMBOL net/ieee802154/ieee802154 0x948b2ec6 wpan_phy_find -EXPORT_SYMBOL net/ieee802154/ieee802154 0xe94c058f wpan_phy_free -EXPORT_SYMBOL net/ieee802154/ieee802154 0xec9aea42 wpan_phy_unregister +EXPORT_SYMBOL net/ceph/libceph 0xf2d17d28 ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0xf3cd999f ceph_copy_from_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xf48d6220 ceph_monc_validate_auth +EXPORT_SYMBOL net/ceph/libceph 0xf6d028d9 ceph_osdc_get_request +EXPORT_SYMBOL net/ceph/libceph 0xf9d7994e ceph_osdc_unwatch +EXPORT_SYMBOL net/ceph/libceph 0xfbcb8c8a ceph_osdc_wait_request +EXPORT_SYMBOL net/ceph/libceph 0xfef45bf7 ceph_osdc_notify_ack +EXPORT_SYMBOL net/ceph/libceph 0xffdc219b osd_req_op_cls_request_data_pagelist +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x42c4149b dccp_syn_ack_timeout +EXPORT_SYMBOL net/dccp/dccp_ipv4 0xa1eab6ec dccp_req_err +EXPORT_SYMBOL net/hsr/hsr 0x89db0e09 hsr_get_version +EXPORT_SYMBOL net/hsr/hsr 0xad166053 is_hsr_master +EXPORT_SYMBOL net/ieee802154/ieee802154 0x1c4b41b9 wpan_phy_for_each +EXPORT_SYMBOL net/ieee802154/ieee802154 0x26043ad2 wpan_phy_free +EXPORT_SYMBOL net/ieee802154/ieee802154 0x8518d6f8 wpan_phy_new +EXPORT_SYMBOL net/ieee802154/ieee802154 0x906da8eb wpan_phy_register +EXPORT_SYMBOL net/ieee802154/ieee802154 0xc7b67acc wpan_phy_unregister +EXPORT_SYMBOL net/ieee802154/ieee802154 0xcb5cde5d wpan_phy_find EXPORT_SYMBOL net/ipv4/fou 0x1757d1a4 fou_encap_hlen -EXPORT_SYMBOL net/ipv4/fou 0xb0df1fda __gue_build_header -EXPORT_SYMBOL net/ipv4/fou 0xd2d9bdad __fou_build_header +EXPORT_SYMBOL net/ipv4/fou 0x4b04db81 __fou_build_header +EXPORT_SYMBOL net/ipv4/fou 0x81fa0d07 __gue_build_header EXPORT_SYMBOL net/ipv4/fou 0xf13914b3 gue_encap_hlen -EXPORT_SYMBOL net/ipv4/gre 0x24047f27 gre_parse_header -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x76c12f33 ip_tunnel_get_link_net -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x91f8a9f7 ip_tunnel_encap_add_ops -EXPORT_SYMBOL net/ipv4/ip_tunnel 0xae3eff0e ip_tunnel_encap_del_ops -EXPORT_SYMBOL net/ipv4/ip_tunnel 0xaf8cd6b6 ip_tunnel_get_iflink -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x59996b31 arpt_unregister_table_pre_exit -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x6b52a692 arpt_unregister_table -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x9cdcc946 arpt_do_table -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xd08a6165 arpt_register_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x02883785 ipt_do_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x2745ec13 ipt_unregister_table_pre_exit -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x5f275085 ipt_register_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xdd8439da ipt_unregister_table_exit -EXPORT_SYMBOL net/ipv4/tunnel4 0x0e1e2123 xfrm4_tunnel_register -EXPORT_SYMBOL net/ipv4/tunnel4 0x59197433 xfrm4_tunnel_deregister -EXPORT_SYMBOL net/ipv4/udp_tunnel 0x1aa31344 udp_sock_create4 -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x18d4ac95 ip6_tnl_xmit -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x6b673054 ip6_tnl_rcv -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x7f60ac52 ip6_tnl_change_mtu -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x8900144f ip6_tnl_get_iflink -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x90c03561 ip6_tnl_encap_add_ops -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xc65465b1 ip6_tnl_get_cap -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xcbaeb4f5 ip6_tnl_get_link_net -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xd1b603ed ip6_tnl_parse_tlv_enc_lim -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xd80947ec ip6_tnl_encap_del_ops -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x1d380efa ip6t_unregister_table_exit -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x3891d204 ip6t_register_table -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x662594d6 ip6t_do_table -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x880ffe71 ip6t_unregister_table_pre_exit -EXPORT_SYMBOL net/ipv6/tunnel6 0x27c27694 xfrm6_tunnel_register -EXPORT_SYMBOL net/ipv6/tunnel6 0x78a3cc10 xfrm6_tunnel_deregister -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x4108e8e7 xfrm6_tunnel_spi_lookup -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x50e7c302 xfrm6_tunnel_alloc_spi -EXPORT_SYMBOL net/lapb/lapb 0x07682cd8 lapb_register -EXPORT_SYMBOL net/lapb/lapb 0x1d244a33 lapb_setparms -EXPORT_SYMBOL net/lapb/lapb 0x88671029 lapb_connect_request -EXPORT_SYMBOL net/lapb/lapb 0xb29e6039 lapb_data_received -EXPORT_SYMBOL net/lapb/lapb 0xbe3ab077 lapb_unregister -EXPORT_SYMBOL net/lapb/lapb 0xcd86a9cd lapb_disconnect_request -EXPORT_SYMBOL net/lapb/lapb 0xe781b68f lapb_data_request -EXPORT_SYMBOL net/lapb/lapb 0xefec0304 lapb_getparms -EXPORT_SYMBOL net/llc/llc 0x306603eb llc_sap_close -EXPORT_SYMBOL net/llc/llc 0x3291da30 llc_mac_hdr_init +EXPORT_SYMBOL net/ipv4/gre 0x43313eed gre_parse_header +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x0b4ec8b7 ip_tunnel_get_link_net +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x1cb1488c ip_tunnel_encap_del_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x3bc2e59d ip_tunnel_encap_add_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xeb57acdd ip_tunnel_get_iflink +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x2b16bfa2 arpt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x544227f3 arpt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x7da2bdfa arpt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x8565eefa arpt_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x8bdfc36d ipt_unregister_table_exit +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xa0b6cdcf ipt_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xc2c9db84 ipt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xcaf1fbcd ipt_register_table +EXPORT_SYMBOL net/ipv4/tunnel4 0x4ac4b034 xfrm4_tunnel_deregister +EXPORT_SYMBOL net/ipv4/tunnel4 0xe66bd4b2 xfrm4_tunnel_register +EXPORT_SYMBOL net/ipv4/udp_tunnel 0xc63886bb udp_sock_create4 +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x1ee9146d ip6_tnl_xmit +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x2e2c0c1b ip6_tnl_get_iflink +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x6ca246b2 ip6_tnl_change_mtu +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x7b714d78 ip6_tnl_encap_add_ops +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x967fb700 ip6_tnl_encap_del_ops +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xac503ffd ip6_tnl_parse_tlv_enc_lim +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xbcc9e5b4 ip6_tnl_get_link_net +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xc143ab85 ip6_tnl_rcv +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xc7815745 ip6_tnl_get_cap +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x965e5de8 ip6t_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xac7866d1 ip6t_unregister_table_exit +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xc661a107 ip6t_do_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xd49269e0 ip6t_register_table +EXPORT_SYMBOL net/ipv6/tunnel6 0xa000478b xfrm6_tunnel_deregister +EXPORT_SYMBOL net/ipv6/tunnel6 0xdeb2ead0 xfrm6_tunnel_register +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x21e49f0a xfrm6_tunnel_spi_lookup +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xedeef29d xfrm6_tunnel_alloc_spi +EXPORT_SYMBOL net/lapb/lapb 0x2c033320 lapb_disconnect_request +EXPORT_SYMBOL net/lapb/lapb 0x3505f511 lapb_data_received +EXPORT_SYMBOL net/lapb/lapb 0x4cd01b21 lapb_register +EXPORT_SYMBOL net/lapb/lapb 0x4e775124 lapb_data_request +EXPORT_SYMBOL net/lapb/lapb 0x55a8ab60 lapb_unregister +EXPORT_SYMBOL net/lapb/lapb 0x8104199d lapb_setparms +EXPORT_SYMBOL net/lapb/lapb 0xd12aa696 lapb_connect_request +EXPORT_SYMBOL net/lapb/lapb 0xd5fddedd lapb_getparms +EXPORT_SYMBOL net/llc/llc 0x04ea162b llc_sap_find +EXPORT_SYMBOL net/llc/llc 0x06c4eca4 llc_sap_open +EXPORT_SYMBOL net/llc/llc 0x09a38fde llc_add_pack +EXPORT_SYMBOL net/llc/llc 0x1954ab08 llc_build_and_send_ui_pkt EXPORT_SYMBOL net/llc/llc 0x38b92846 llc_remove_pack -EXPORT_SYMBOL net/llc/llc 0x3f7c0a08 llc_build_and_send_ui_pkt EXPORT_SYMBOL net/llc/llc 0x52d7b2fd llc_sap_list -EXPORT_SYMBOL net/llc/llc 0x82ddd956 llc_set_station_handler -EXPORT_SYMBOL net/llc/llc 0x99e0ef12 llc_sap_find -EXPORT_SYMBOL net/llc/llc 0xab779253 llc_sap_open -EXPORT_SYMBOL net/llc/llc 0xf807cd9e llc_add_pack -EXPORT_SYMBOL net/mac80211/mac80211 0x05370eb2 ieee80211_tx_status -EXPORT_SYMBOL net/mac80211/mac80211 0x0629983b ieee80211_stop_queues +EXPORT_SYMBOL net/llc/llc 0x5ddb5c57 llc_set_station_handler +EXPORT_SYMBOL net/llc/llc 0xa66b92a6 llc_sap_close +EXPORT_SYMBOL net/llc/llc 0xb4b370eb llc_mac_hdr_init +EXPORT_SYMBOL net/mac80211/mac80211 0x05162b8c ieee80211_rts_duration EXPORT_SYMBOL net/mac80211/mac80211 0x063f5308 ieee80211_get_tkip_p1k_iv -EXPORT_SYMBOL net/mac80211/mac80211 0x0673595c ieee80211_start_tx_ba_cb_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x06ee101c ieee80211_get_unsol_bcast_probe_resp_tmpl -EXPORT_SYMBOL net/mac80211/mac80211 0x0860a343 ieee80211_generic_frame_duration -EXPORT_SYMBOL net/mac80211/mac80211 0x094fb2f8 ieee80211_scan_completed -EXPORT_SYMBOL net/mac80211/mac80211 0x09c834b8 __ieee80211_get_radio_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x0a550727 ieee80211_stop_tx_ba_cb_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x1354f348 ieee80211_rx_ba_timer_expired -EXPORT_SYMBOL net/mac80211/mac80211 0x152994d0 ieee80211_report_wowlan_wakeup +EXPORT_SYMBOL net/mac80211/mac80211 0x077751a3 __ieee80211_get_assoc_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x07a0dd6a ieee80211_send_bar +EXPORT_SYMBOL net/mac80211/mac80211 0x0bde9e51 ieee80211_sched_scan_results +EXPORT_SYMBOL net/mac80211/mac80211 0x0c2e3264 ieee80211_report_low_ack +EXPORT_SYMBOL net/mac80211/mac80211 0x11eba25e ieee80211_free_txskb +EXPORT_SYMBOL net/mac80211/mac80211 0x18138d9f ieee80211_connection_loss +EXPORT_SYMBOL net/mac80211/mac80211 0x18178906 rate_control_set_rates EXPORT_SYMBOL net/mac80211/mac80211 0x183dcd3b ieee80211_get_key_rx_seq EXPORT_SYMBOL net/mac80211/mac80211 0x19f37f0d ieee80211_update_p2p_noa EXPORT_SYMBOL net/mac80211/mac80211 0x1a66fc17 ieee80211_get_tkip_rx_p1k -EXPORT_SYMBOL net/mac80211/mac80211 0x1bd1aaf3 ieee80211_find_sta -EXPORT_SYMBOL net/mac80211/mac80211 0x1cc4ba91 ieee80211_rx_list -EXPORT_SYMBOL net/mac80211/mac80211 0x2630a141 ieee80211_enable_rssi_reports -EXPORT_SYMBOL net/mac80211/mac80211 0x2c1c6305 ieee80211_connection_loss -EXPORT_SYMBOL net/mac80211/mac80211 0x2da39e1d ieee80211_sta_register_airtime -EXPORT_SYMBOL net/mac80211/mac80211 0x31269997 ieee80211_restart_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x33013ef4 ieee80211_sched_scan_results -EXPORT_SYMBOL net/mac80211/mac80211 0x35d4b414 ieee80211_sta_uapsd_trigger -EXPORT_SYMBOL net/mac80211/mac80211 0x3723cfee ieee80211_start_tx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0x380a55bd __ieee80211_get_rx_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x383049a4 ieee80211_stop_rx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0x394ed3d2 ieee80211_rate_control_register -EXPORT_SYMBOL net/mac80211/mac80211 0x3b1f59ab __ieee80211_get_assoc_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x3cd3429f wiphy_to_ieee80211_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x3e1db959 ieee80211_tdls_oper_request -EXPORT_SYMBOL net/mac80211/mac80211 0x41f96c0d ieee80211_get_tx_rates -EXPORT_SYMBOL net/mac80211/mac80211 0x44ef43f0 ieee80211_sta_eosp -EXPORT_SYMBOL net/mac80211/mac80211 0x47167e2b ieee80211_sta_pspoll -EXPORT_SYMBOL net/mac80211/mac80211 0x4839b85f ieee80211_send_eosp_nullfunc -EXPORT_SYMBOL net/mac80211/mac80211 0x49ca4ff1 ieee80211_alloc_hw_nm -EXPORT_SYMBOL net/mac80211/mac80211 0x49d61928 ieee80211_radar_detected -EXPORT_SYMBOL net/mac80211/mac80211 0x4dfcf39b ieee80211_unreserve_tid -EXPORT_SYMBOL net/mac80211/mac80211 0x4e5e14a6 ieee80211_sta_block_awake -EXPORT_SYMBOL net/mac80211/mac80211 0x4ff18bd0 ieee80211_txq_may_transmit -EXPORT_SYMBOL net/mac80211/mac80211 0x52610f3f ieee80211_disconnect -EXPORT_SYMBOL net/mac80211/mac80211 0x56ee3a52 ieee80211_ctstoself_duration -EXPORT_SYMBOL net/mac80211/mac80211 0x57f1c081 ieee80211_probereq_get -EXPORT_SYMBOL net/mac80211/mac80211 0x59443ec3 ieee80211_tx_dequeue -EXPORT_SYMBOL net/mac80211/mac80211 0x61365b18 ieee80211_queue_work -EXPORT_SYMBOL net/mac80211/mac80211 0x6a88723a ieee80211_nan_func_terminated -EXPORT_SYMBOL net/mac80211/mac80211 0x6f0fb34e ieee80211_ap_probereq_get -EXPORT_SYMBOL net/mac80211/mac80211 0x750a9021 ieee80211_chswitch_done -EXPORT_SYMBOL net/mac80211/mac80211 0x76ab6ccc ieee80211_txq_schedule_start -EXPORT_SYMBOL net/mac80211/mac80211 0x79fb902b ieee80211_send_bar -EXPORT_SYMBOL net/mac80211/mac80211 0x7f926696 ieee80211_reserve_tid -EXPORT_SYMBOL net/mac80211/mac80211 0x85378b6a ieee80211_manage_rx_ba_offl -EXPORT_SYMBOL net/mac80211/mac80211 0x884b7e13 ieee80211_mark_rx_ba_filtered_frames -EXPORT_SYMBOL net/mac80211/mac80211 0x8c00d63f rate_control_set_rates -EXPORT_SYMBOL net/mac80211/mac80211 0x9044dceb ieee80211_csa_finish -EXPORT_SYMBOL net/mac80211/mac80211 0x95fad6fe ieee80211_tx_prepare_skb -EXPORT_SYMBOL net/mac80211/mac80211 0x96104b0c ieee80211_rts_get -EXPORT_SYMBOL net/mac80211/mac80211 0x96af5d38 ieee80211_tx_status_ext -EXPORT_SYMBOL net/mac80211/mac80211 0x984c4007 ieee80211_pspoll_get -EXPORT_SYMBOL net/mac80211/mac80211 0x986199c7 ieee80211_tx_status_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x1c3ab385 __ieee80211_get_tx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x206ef08d ieee80211_queue_work +EXPORT_SYMBOL net/mac80211/mac80211 0x247c0b06 ieee80211_unreserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0x249f7d59 ieee80211_stop_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x2c12349b ieee80211_cqm_rssi_notify +EXPORT_SYMBOL net/mac80211/mac80211 0x2fa3a186 ieee80211_disconnect +EXPORT_SYMBOL net/mac80211/mac80211 0x30b50f8d ieee80211_wake_queue +EXPORT_SYMBOL net/mac80211/mac80211 0x30cd0cbf ieee80211_enable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0x32428fcf ieee80211_ctstoself_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x32b7213b ieee80211_sta_set_buffered +EXPORT_SYMBOL net/mac80211/mac80211 0x340a8801 ieee80211_free_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x397cbf13 ieee80211_scan_completed +EXPORT_SYMBOL net/mac80211/mac80211 0x39c3d8f6 ieee80211_tx_status_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x3dabb4d9 ieee80211_disable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0x3f60b1e0 ieee80211_stop_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x46ca23df ieee80211_radar_detected +EXPORT_SYMBOL net/mac80211/mac80211 0x46f89eee ieee80211_iter_keys_rcu +EXPORT_SYMBOL net/mac80211/mac80211 0x48857513 ieee80211_tx_prepare_skb +EXPORT_SYMBOL net/mac80211/mac80211 0x498e796a __ieee80211_get_rx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x4ea654dd ieee80211_restart_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x558a152a ieee80211_beacon_cntdwn_is_complete +EXPORT_SYMBOL net/mac80211/mac80211 0x59c34aa5 ieee80211_tx_dequeue +EXPORT_SYMBOL net/mac80211/mac80211 0x5af69a94 ieee80211_start_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x60a952fd ieee80211_sta_uapsd_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0x63626463 ieee80211_alloc_hw_nm +EXPORT_SYMBOL net/mac80211/mac80211 0x64999ba4 ieee80211_find_sta +EXPORT_SYMBOL net/mac80211/mac80211 0x64bc3113 ieee80211_manage_rx_ba_offl +EXPORT_SYMBOL net/mac80211/mac80211 0x664c48e5 ieee80211_nan_func_match +EXPORT_SYMBOL net/mac80211/mac80211 0x6841492b ieee80211_next_txq +EXPORT_SYMBOL net/mac80211/mac80211 0x69f78577 ieee80211_rts_get +EXPORT_SYMBOL net/mac80211/mac80211 0x6a77872f ieee80211_nan_func_terminated +EXPORT_SYMBOL net/mac80211/mac80211 0x6c331481 ieee80211_rx_napi +EXPORT_SYMBOL net/mac80211/mac80211 0x6fd3efa6 ieee80211_chswitch_done +EXPORT_SYMBOL net/mac80211/mac80211 0x721e0d78 ieee80211_tx_status_8023 +EXPORT_SYMBOL net/mac80211/mac80211 0x73b38b9d ieee80211_get_fils_discovery_tmpl +EXPORT_SYMBOL net/mac80211/mac80211 0x769059e4 ieee80211_rx_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x76be7085 ieee80211_rx_list +EXPORT_SYMBOL net/mac80211/mac80211 0x795a0b6d ieee80211_ap_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0x7b443d52 ieee80211_csa_finish +EXPORT_SYMBOL net/mac80211/mac80211 0x7bcf5b29 ieee80211_stop_queue +EXPORT_SYMBOL net/mac80211/mac80211 0x7c643229 ieee80211_get_tkip_p2k +EXPORT_SYMBOL net/mac80211/mac80211 0x7ff35199 ieee80211_stop_rx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x80506b5b ieee80211_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0x84ddd7b7 ieee80211_queue_delayed_work +EXPORT_SYMBOL net/mac80211/mac80211 0x85334230 ieee80211_beacon_set_cntdwn +EXPORT_SYMBOL net/mac80211/mac80211 0x893d376c ieee80211_beacon_get_tim +EXPORT_SYMBOL net/mac80211/mac80211 0x903f9e1c ieee80211_reserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0x9048bb18 ieee80211_mark_rx_ba_filtered_frames +EXPORT_SYMBOL net/mac80211/mac80211 0x90c31e02 ieee80211_txq_schedule_start +EXPORT_SYMBOL net/mac80211/mac80211 0x9630dc37 ieee80211_beacon_get_template +EXPORT_SYMBOL net/mac80211/mac80211 0x98cb3461 ieee80211_pspoll_get EXPORT_SYMBOL net/mac80211/mac80211 0x991a0ca0 ieee80211_parse_p2p_noa -EXPORT_SYMBOL net/mac80211/mac80211 0xa2865af5 ieee80211_nullfunc_get -EXPORT_SYMBOL net/mac80211/mac80211 0xa4331489 ieee80211_get_fils_discovery_tmpl -EXPORT_SYMBOL net/mac80211/mac80211 0xa74e4bad ieee80211_rx_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0xa779b0d8 ieee80211_sched_scan_stopped -EXPORT_SYMBOL net/mac80211/mac80211 0xa826e9be ieee80211_sta_ps_transition -EXPORT_SYMBOL net/mac80211/mac80211 0xaa855f93 ieee80211_wake_queue -EXPORT_SYMBOL net/mac80211/mac80211 0xad6c2d09 ieee80211_get_buffered_bc -EXPORT_SYMBOL net/mac80211/mac80211 0xb0bcf70d ieee80211_rts_duration -EXPORT_SYMBOL net/mac80211/mac80211 0xb0e7cbce ieee80211_nan_func_match -EXPORT_SYMBOL net/mac80211/mac80211 0xb4c79b4c ieee80211_beacon_cntdwn_is_complete -EXPORT_SYMBOL net/mac80211/mac80211 0xba052bd5 ieee80211_cqm_beacon_loss_notify -EXPORT_SYMBOL net/mac80211/mac80211 0xbe788471 ieee80211_stop_tx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0xc2ad805b ieee80211_txq_airtime_check -EXPORT_SYMBOL net/mac80211/mac80211 0xc99e0b75 ieee80211_disable_rssi_reports -EXPORT_SYMBOL net/mac80211/mac80211 0xcc052dfa ieee80211_tx_status_8023 -EXPORT_SYMBOL net/mac80211/mac80211 0xcd38e355 ieee80211_beacon_loss -EXPORT_SYMBOL net/mac80211/mac80211 0xcd54409f ieee80211_free_hw -EXPORT_SYMBOL net/mac80211/mac80211 0xceb0492d ieee80211_rate_control_unregister -EXPORT_SYMBOL net/mac80211/mac80211 0xcf6b3c5a ieee80211_ctstoself_get -EXPORT_SYMBOL net/mac80211/mac80211 0xcf98bb62 ieee80211_wake_queues -EXPORT_SYMBOL net/mac80211/mac80211 0xd2bb47e3 ieee80211_free_txskb -EXPORT_SYMBOL net/mac80211/mac80211 0xd67dc416 ieee80211_schedule_txq -EXPORT_SYMBOL net/mac80211/mac80211 0xd6a85601 ieee80211_next_txq -EXPORT_SYMBOL net/mac80211/mac80211 0xd7547fe9 ieee80211_iter_keys -EXPORT_SYMBOL net/mac80211/mac80211 0xd8d85b73 ieee80211_return_txq -EXPORT_SYMBOL net/mac80211/mac80211 0xd9f48d1c ieee80211_queue_stopped -EXPORT_SYMBOL net/mac80211/mac80211 0xda920d28 ieee80211_get_tkip_p2k -EXPORT_SYMBOL net/mac80211/mac80211 0xdb8f7074 ieee80211_tx_rate_update -EXPORT_SYMBOL net/mac80211/mac80211 0xdd8cba60 __ieee80211_create_tpt_led_trigger -EXPORT_SYMBOL net/mac80211/mac80211 0xdeef9985 ieee80211_iter_keys_rcu -EXPORT_SYMBOL net/mac80211/mac80211 0xdfe402ff ieee80211_beacon_update_cntdwn -EXPORT_SYMBOL net/mac80211/mac80211 0xe0a2d8b6 ieee80211_txq_get_depth -EXPORT_SYMBOL net/mac80211/mac80211 0xe324c38d __ieee80211_get_tx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x9a2ba23b ieee80211_ctstoself_get +EXPORT_SYMBOL net/mac80211/mac80211 0x9a4cf49f ieee80211_return_txq +EXPORT_SYMBOL net/mac80211/mac80211 0x9c059fac ieee80211_unregister_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x9c53fb19 ieee80211_proberesp_get +EXPORT_SYMBOL net/mac80211/mac80211 0xa0d0218f ieee80211_beacon_update_cntdwn +EXPORT_SYMBOL net/mac80211/mac80211 0xa40281ae ieee80211_tx_status +EXPORT_SYMBOL net/mac80211/mac80211 0xa4449548 ieee80211_txq_get_depth +EXPORT_SYMBOL net/mac80211/mac80211 0xaab68cae ieee80211_register_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xac5bb433 ieee80211_schedule_txq +EXPORT_SYMBOL net/mac80211/mac80211 0xacd3f2ed ieee80211_rate_control_register +EXPORT_SYMBOL net/mac80211/mac80211 0xad5f760e ieee80211_beacon_loss +EXPORT_SYMBOL net/mac80211/mac80211 0xad97e742 ieee80211_start_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0xbb0cde60 ieee80211_stop_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xbb39952a ieee80211_get_buffered_bc +EXPORT_SYMBOL net/mac80211/mac80211 0xbf5c8414 ieee80211_sta_pspoll +EXPORT_SYMBOL net/mac80211/mac80211 0xbfdd131d ieee80211_tx_rate_update +EXPORT_SYMBOL net/mac80211/mac80211 0xc2fa9e89 ieee80211_get_unsol_bcast_probe_resp_tmpl +EXPORT_SYMBOL net/mac80211/mac80211 0xc6bf7a9e ieee80211_sta_ps_transition +EXPORT_SYMBOL net/mac80211/mac80211 0xc9fba6a0 ieee80211_rx_ba_timer_expired +EXPORT_SYMBOL net/mac80211/mac80211 0xce1b125a ieee80211_generic_frame_duration +EXPORT_SYMBOL net/mac80211/mac80211 0xcf40d75d ieee80211_sta_register_airtime +EXPORT_SYMBOL net/mac80211/mac80211 0xcf438f29 ieee80211_tx_status_ext +EXPORT_SYMBOL net/mac80211/mac80211 0xd42f0cdc wiphy_to_ieee80211_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xd61d9551 ieee80211_txq_may_transmit +EXPORT_SYMBOL net/mac80211/mac80211 0xd6a93a20 __ieee80211_get_radio_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xdd82b0ec ieee80211_txq_airtime_check +EXPORT_SYMBOL net/mac80211/mac80211 0xde0123c2 ieee80211_get_tx_rates +EXPORT_SYMBOL net/mac80211/mac80211 0xe072d68b ieee80211_rate_control_unregister +EXPORT_SYMBOL net/mac80211/mac80211 0xe337d052 ieee80211_sched_scan_stopped EXPORT_SYMBOL net/mac80211/mac80211 0xe5752af3 ieee80211_get_bssid -EXPORT_SYMBOL net/mac80211/mac80211 0xe886e6fa ieee80211_proberesp_get -EXPORT_SYMBOL net/mac80211/mac80211 0xe93ac9b6 ieee80211_beacon_set_cntdwn -EXPORT_SYMBOL net/mac80211/mac80211 0xec8f42f9 ieee80211_sta_set_buffered -EXPORT_SYMBOL net/mac80211/mac80211 0xeeb07f6d ieee80211_register_hw -EXPORT_SYMBOL net/mac80211/mac80211 0xef64824d ieee80211_rx_napi -EXPORT_SYMBOL net/mac80211/mac80211 0xf0624d51 ieee80211_unregister_hw -EXPORT_SYMBOL net/mac80211/mac80211 0xf297e815 ieee80211_cqm_rssi_notify -EXPORT_SYMBOL net/mac80211/mac80211 0xf3599ee8 ieee80211_queue_delayed_work -EXPORT_SYMBOL net/mac80211/mac80211 0xf3a50ad9 ieee80211_stop_queue -EXPORT_SYMBOL net/mac80211/mac80211 0xf6d2a208 ieee80211_report_low_ack -EXPORT_SYMBOL net/mac80211/mac80211 0xfcb433dc ieee80211_beacon_get_template -EXPORT_SYMBOL net/mac80211/mac80211 0xfcf91a95 ieee80211_beacon_get_tim -EXPORT_SYMBOL net/mac802154/mac802154 0x35b1de2c ieee802154_stop_queue -EXPORT_SYMBOL net/mac802154/mac802154 0x4718630f ieee802154_wake_queue -EXPORT_SYMBOL net/mac802154/mac802154 0x4d5ae395 ieee802154_rx_irqsafe -EXPORT_SYMBOL net/mac802154/mac802154 0x82181cd5 ieee802154_free_hw -EXPORT_SYMBOL net/mac802154/mac802154 0x881d7ea0 ieee802154_xmit_complete -EXPORT_SYMBOL net/mac802154/mac802154 0x8b1655bc ieee802154_register_hw -EXPORT_SYMBOL net/mac802154/mac802154 0xb0f3e5cb ieee802154_unregister_hw -EXPORT_SYMBOL net/mac802154/mac802154 0xf728cefe ieee802154_alloc_hw -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x07211dff ip_vs_conn_new -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x12cee78a ip_vs_proto_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x559871bd register_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x69cd1b80 ip_vs_new_conn_out -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x6a29ee1c ip_vs_conn_put -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x6d05b3a7 ip_vs_scheduler_err -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x6ecd5f52 unregister_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x75ee54b8 ip_vs_conn_in_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x8b5af9d1 unregister_ip_vs_app -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x8f9d69b7 ip_vs_proto_data_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x9eace2ce register_ip_vs_app_inc -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xcdce0c43 ip_vs_tcp_conn_listen +EXPORT_SYMBOL net/mac80211/mac80211 0xe72b658c ieee80211_report_wowlan_wakeup +EXPORT_SYMBOL net/mac80211/mac80211 0xe84745a9 ieee80211_sta_eosp +EXPORT_SYMBOL net/mac80211/mac80211 0xe854e9cd ieee80211_nullfunc_get +EXPORT_SYMBOL net/mac80211/mac80211 0xe873c75c ieee80211_wake_queues +EXPORT_SYMBOL net/mac80211/mac80211 0xee584e7d ieee80211_iter_keys +EXPORT_SYMBOL net/mac80211/mac80211 0xeeaa247e ieee80211_sta_block_awake +EXPORT_SYMBOL net/mac80211/mac80211 0xef1810a8 __ieee80211_create_tpt_led_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0xf030780f ieee80211_send_eosp_nullfunc +EXPORT_SYMBOL net/mac80211/mac80211 0xf06132b4 ieee80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/mac80211/mac80211 0xfe426750 ieee80211_tdls_oper_request +EXPORT_SYMBOL net/mac80211/mac80211 0xfeee5bf4 ieee80211_queue_stopped +EXPORT_SYMBOL net/mac802154/mac802154 0x1f1b3db1 ieee802154_xmit_complete +EXPORT_SYMBOL net/mac802154/mac802154 0x2949a562 ieee802154_register_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x3413050e ieee802154_wake_queue +EXPORT_SYMBOL net/mac802154/mac802154 0x650d0f86 ieee802154_rx_irqsafe +EXPORT_SYMBOL net/mac802154/mac802154 0xb174a884 ieee802154_alloc_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xb42d5007 ieee802154_stop_queue +EXPORT_SYMBOL net/mac802154/mac802154 0xb95a9530 ieee802154_unregister_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xfa0f8a22 ieee802154_free_hw +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x10b7ad87 ip_vs_conn_put +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x1e14ea35 ip_vs_conn_new +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x1fe231f4 ip_vs_nfct_expect_related +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x26abf411 ip_vs_new_conn_out +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x5607a903 ip_vs_conn_out_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x56287c7a unregister_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x5be490a1 register_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x697ee0ed ip_vs_proto_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x71f253c0 ip_vs_tcp_conn_listen +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x7d245940 ip_vs_conn_in_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x85a7f73a unregister_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xbd96f9f1 register_ip_vs_app_inc +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xbe533f88 ip_vs_scheduler_err +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xc7d9c1c6 register_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xce18ac8c ip_vs_proto_data_get EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xdfba1068 ip_vs_nfct_expect_related -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xe5691920 ip_vs_conn_out_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xe91be3e3 register_ip_vs_app -EXPORT_SYMBOL net/netfilter/nf_conntrack 0xd5ab9ac9 nf_ct_ext_add +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x3b08a8f0 nf_ct_destroy +EXPORT_SYMBOL net/netfilter/nf_conntrack 0xe6d503dd nf_ct_ext_add EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0xf2a36612 pptp_msg_name -EXPORT_SYMBOL net/netfilter/nf_nat 0x2711e41a __nf_nat_mangle_tcp_packet -EXPORT_SYMBOL net/netfilter/nf_nat 0x60f17425 nf_nat_follow_master -EXPORT_SYMBOL net/netfilter/nf_nat 0x7f9760ac nf_nat_mangle_udp_packet -EXPORT_SYMBOL net/netfilter/nf_nat 0x893133c8 nf_nat_setup_info +EXPORT_SYMBOL net/netfilter/nf_nat 0x326cb84c __nf_nat_mangle_tcp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0x5de27d23 nf_nat_follow_master +EXPORT_SYMBOL net/netfilter/nf_nat 0x5e2fe899 nf_nat_setup_info +EXPORT_SYMBOL net/netfilter/nf_nat 0x789ac6ba nf_nat_mangle_udp_packet EXPORT_SYMBOL net/netfilter/nft_fib 0xb3c36947 nft_fib_policy +EXPORT_SYMBOL net/netfilter/x_tables 0x02661eb7 xt_register_target EXPORT_SYMBOL net/netfilter/x_tables 0x0d7f5fcd xt_alloc_entry_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0x26e1d7ae xt_register_target -EXPORT_SYMBOL net/netfilter/x_tables 0x333039a9 xt_find_match +EXPORT_SYMBOL net/netfilter/x_tables 0x1e6ee94a xt_unregister_match +EXPORT_SYMBOL net/netfilter/x_tables 0x2246b57b xt_register_matches +EXPORT_SYMBOL net/netfilter/x_tables 0x24693fec xt_find_table +EXPORT_SYMBOL net/netfilter/x_tables 0x31abe4f2 xt_find_match EXPORT_SYMBOL net/netfilter/x_tables 0x3bf9d084 xt_check_table_hooks -EXPORT_SYMBOL net/netfilter/x_tables 0x4102e5d7 xt_register_matches EXPORT_SYMBOL net/netfilter/x_tables 0x48012e28 xt_check_proc_name EXPORT_SYMBOL net/netfilter/x_tables 0x50873741 xt_compat_init_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0x5145360c xt_register_targets -EXPORT_SYMBOL net/netfilter/x_tables 0x6e3cbb0f xt_unregister_targets -EXPORT_SYMBOL net/netfilter/x_tables 0x8d893b71 xt_unregister_matches -EXPORT_SYMBOL net/netfilter/x_tables 0x8d9b04d9 xt_unregister_target +EXPORT_SYMBOL net/netfilter/x_tables 0x60028fd6 xt_unregister_matches +EXPORT_SYMBOL net/netfilter/x_tables 0x794e4044 xt_register_targets EXPORT_SYMBOL net/netfilter/x_tables 0x977fd4bf xt_alloc_table_info EXPORT_SYMBOL net/netfilter/x_tables 0xa25fc115 xt_compat_check_entry_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0xb0e9b0fd xt_find_table EXPORT_SYMBOL net/netfilter/x_tables 0xcb3e91cc xt_counters_alloc -EXPORT_SYMBOL net/netfilter/x_tables 0xce4bb3b6 xt_register_match +EXPORT_SYMBOL net/netfilter/x_tables 0xd16bdb2b xt_unregister_targets EXPORT_SYMBOL net/netfilter/x_tables 0xd87ae60d xt_check_entry_offsets EXPORT_SYMBOL net/netfilter/x_tables 0xe204e042 xt_free_table_info -EXPORT_SYMBOL net/netfilter/x_tables 0xf158c599 xt_unregister_match +EXPORT_SYMBOL net/netfilter/x_tables 0xe5f80c49 xt_register_match +EXPORT_SYMBOL net/netfilter/x_tables 0xf92ba015 xt_unregister_target EXPORT_SYMBOL net/netfilter/x_tables 0xfef779fa xt_find_jump_offset -EXPORT_SYMBOL net/nfc/hci/hci 0x2949b051 nfc_hci_unregister_device -EXPORT_SYMBOL net/nfc/hci/hci 0x32966f53 nfc_hci_disconnect_all_gates -EXPORT_SYMBOL net/nfc/hci/hci 0x3e6d306e nfc_hci_get_param -EXPORT_SYMBOL net/nfc/hci/hci 0x57b0b2e6 nfc_hci_get_clientdata -EXPORT_SYMBOL net/nfc/hci/hci 0x5e027a6e nfc_llc_start -EXPORT_SYMBOL net/nfc/hci/hci 0x663a0d9e nfc_hci_reset_pipes_per_host -EXPORT_SYMBOL net/nfc/hci/hci 0x6a166d40 nfc_hci_register_device -EXPORT_SYMBOL net/nfc/hci/hci 0x6b984b93 nfc_hci_driver_failure -EXPORT_SYMBOL net/nfc/hci/hci 0x6d98f05f nfc_hci_reset_pipes +EXPORT_SYMBOL net/nfc/hci/hci 0x0ff840c4 nfc_hci_reset_pipes_per_host +EXPORT_SYMBOL net/nfc/hci/hci 0x1028562f nfc_hci_get_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0x107e8d4e nfc_hci_allocate_device +EXPORT_SYMBOL net/nfc/hci/hci 0x1dc083d0 nfc_hci_driver_failure +EXPORT_SYMBOL net/nfc/hci/hci 0x22b9073b nfc_hci_send_cmd +EXPORT_SYMBOL net/nfc/hci/hci 0x24fd9de5 nfc_hci_recv_frame +EXPORT_SYMBOL net/nfc/hci/hci 0x465507ea nfc_hci_send_event +EXPORT_SYMBOL net/nfc/hci/hci 0x51965444 nfc_hci_set_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0x55c63f60 nfc_llc_stop +EXPORT_SYMBOL net/nfc/hci/hci 0x588c55c5 nfc_hci_reset_pipes +EXPORT_SYMBOL net/nfc/hci/hci 0x5a967b57 nfc_hci_connect_gate EXPORT_SYMBOL net/nfc/hci/hci 0x74fe3670 nfc_hci_result_to_errno -EXPORT_SYMBOL net/nfc/hci/hci 0x856b16e6 nfc_llc_stop -EXPORT_SYMBOL net/nfc/hci/hci 0x868b7f65 nfc_hci_allocate_device -EXPORT_SYMBOL net/nfc/hci/hci 0xbf5bdbbb nfc_hci_set_clientdata -EXPORT_SYMBOL net/nfc/hci/hci 0xc8ca7b16 nfc_hci_recv_frame -EXPORT_SYMBOL net/nfc/hci/hci 0xca186d3f nfc_hci_send_cmd -EXPORT_SYMBOL net/nfc/hci/hci 0xce686a77 nfc_hci_free_device -EXPORT_SYMBOL net/nfc/hci/hci 0xce8b7802 nfc_hci_target_discovered -EXPORT_SYMBOL net/nfc/hci/hci 0xd81ed75f nfc_hci_connect_gate -EXPORT_SYMBOL net/nfc/hci/hci 0xd9388211 nfc_hci_disconnect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0x88c54095 nfc_llc_start +EXPORT_SYMBOL net/nfc/hci/hci 0x904ad683 nfc_hci_unregister_device +EXPORT_SYMBOL net/nfc/hci/hci 0x9abd177f nfc_hci_disconnect_all_gates +EXPORT_SYMBOL net/nfc/hci/hci 0xa4193122 nfc_hci_send_cmd_async +EXPORT_SYMBOL net/nfc/hci/hci 0xa5949aa2 nfc_hci_register_device +EXPORT_SYMBOL net/nfc/hci/hci 0xab3d4dd6 nfc_hci_free_device +EXPORT_SYMBOL net/nfc/hci/hci 0xc847d457 nfc_hci_set_param +EXPORT_SYMBOL net/nfc/hci/hci 0xd297a9ed nfc_hci_get_param EXPORT_SYMBOL net/nfc/hci/hci 0xdd231c55 nfc_hci_sak_to_protocol -EXPORT_SYMBOL net/nfc/hci/hci 0xe1db0628 nfc_hci_send_event -EXPORT_SYMBOL net/nfc/hci/hci 0xec9a979c nfc_hci_send_cmd_async -EXPORT_SYMBOL net/nfc/hci/hci 0xf3c2c40e nfc_hci_set_param -EXPORT_SYMBOL net/nfc/nci/nci 0x029f25ad nci_conn_max_data_pkt_payload_size -EXPORT_SYMBOL net/nfc/nci/nci 0x0e542156 nci_set_config -EXPORT_SYMBOL net/nfc/nci/nci 0x20532b37 nci_allocate_device -EXPORT_SYMBOL net/nfc/nci/nci 0x219a0d0c nci_hci_send_event -EXPORT_SYMBOL net/nfc/nci/nci 0x22958cdd nci_hci_connect_gate -EXPORT_SYMBOL net/nfc/nci/nci 0x49b525d3 nci_send_data -EXPORT_SYMBOL net/nfc/nci/nci 0x49c84ac9 nci_unregister_device -EXPORT_SYMBOL net/nfc/nci/nci 0x52e91e8e nci_free_device -EXPORT_SYMBOL net/nfc/nci/nci 0x5610ca76 nci_prop_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0x57add93e nci_core_conn_close -EXPORT_SYMBOL net/nfc/nci/nci 0x58c7b458 nci_hci_send_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0x58e5fa5f nci_core_reset -EXPORT_SYMBOL net/nfc/nci/nci 0x6b81bdc3 nci_req_complete -EXPORT_SYMBOL net/nfc/nci/nci 0x6dd6da3b nci_nfcee_mode_set -EXPORT_SYMBOL net/nfc/nci/nci 0x745b0ee5 nci_core_init -EXPORT_SYMBOL net/nfc/nci/nci 0x775316a5 nci_hci_get_param -EXPORT_SYMBOL net/nfc/nci/nci 0x7fe1008e nci_hci_clear_all_pipes -EXPORT_SYMBOL net/nfc/nci/nci 0x895e351f nci_core_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0x929e3be1 nci_recv_frame -EXPORT_SYMBOL net/nfc/nci/nci 0xa8c842f9 nci_nfcee_discover -EXPORT_SYMBOL net/nfc/nci/nci 0xb0eccff1 nci_send_frame -EXPORT_SYMBOL net/nfc/nci/nci 0xb164e0c1 nci_send_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0xb2ec01a0 nci_register_device +EXPORT_SYMBOL net/nfc/hci/hci 0xdee476bf nfc_hci_target_discovered +EXPORT_SYMBOL net/nfc/hci/hci 0xeaf009c2 nfc_hci_disconnect_gate +EXPORT_SYMBOL net/nfc/nci/nci 0x00a5b904 nci_core_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x0ded0d4b nci_nfcc_loopback +EXPORT_SYMBOL net/nfc/nci/nci 0x0ebd3bdf nci_conn_max_data_pkt_payload_size +EXPORT_SYMBOL net/nfc/nci/nci 0x17972ecd nci_send_data +EXPORT_SYMBOL net/nfc/nci/nci 0x21cced96 nci_free_device +EXPORT_SYMBOL net/nfc/nci/nci 0x2c27cf77 nci_allocate_device +EXPORT_SYMBOL net/nfc/nci/nci 0x48c60fb8 nci_nfcee_discover +EXPORT_SYMBOL net/nfc/nci/nci 0x4f6716d6 nci_unregister_device +EXPORT_SYMBOL net/nfc/nci/nci 0x50a967ae nci_core_conn_close +EXPORT_SYMBOL net/nfc/nci/nci 0x59b25cf5 nci_req_complete +EXPORT_SYMBOL net/nfc/nci/nci 0x6306bc10 nci_hci_clear_all_pipes +EXPORT_SYMBOL net/nfc/nci/nci 0x6662dedd nci_core_reset +EXPORT_SYMBOL net/nfc/nci/nci 0x8aa758ab nci_hci_get_param +EXPORT_SYMBOL net/nfc/nci/nci 0x9dd11b59 nci_hci_send_event +EXPORT_SYMBOL net/nfc/nci/nci 0xa251319d nci_hci_set_param +EXPORT_SYMBOL net/nfc/nci/nci 0xa4517817 nci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xa9d6bed6 nci_nfcee_mode_set +EXPORT_SYMBOL net/nfc/nci/nci 0xacac78e0 nci_recv_frame +EXPORT_SYMBOL net/nfc/nci/nci 0xb1b74c93 nci_send_frame EXPORT_SYMBOL net/nfc/nci/nci 0xba490602 nci_to_errno -EXPORT_SYMBOL net/nfc/nci/nci 0xc1c1ff97 nci_hci_open_pipe -EXPORT_SYMBOL net/nfc/nci/nci 0xe1691213 nci_hci_dev_session_init -EXPORT_SYMBOL net/nfc/nci/nci 0xea28947a nci_hci_set_param -EXPORT_SYMBOL net/nfc/nci/nci 0xeaf7e765 nci_nfcc_loopback -EXPORT_SYMBOL net/nfc/nci/nci 0xee116aa4 nci_get_conn_info_by_dest_type_params -EXPORT_SYMBOL net/nfc/nci/nci 0xf5c768e4 nci_core_conn_create -EXPORT_SYMBOL net/nfc/nfc 0x0a3df779 nfc_get_local_general_bytes -EXPORT_SYMBOL net/nfc/nfc 0x1376cc54 nfc_tm_data_received -EXPORT_SYMBOL net/nfc/nfc 0x1c61a50a nfc_target_lost -EXPORT_SYMBOL net/nfc/nfc 0x27b2cac4 nfc_se_transaction -EXPORT_SYMBOL net/nfc/nfc 0x283d93d8 nfc_proto_register -EXPORT_SYMBOL net/nfc/nfc 0x42aa3ad1 nfc_tm_deactivated -EXPORT_SYMBOL net/nfc/nfc 0x4ae1ddcb __nfc_alloc_vendor_cmd_reply_skb -EXPORT_SYMBOL net/nfc/nfc 0x5bbe97ff nfc_tm_activated -EXPORT_SYMBOL net/nfc/nfc 0x64b86c47 nfc_se_connectivity -EXPORT_SYMBOL net/nfc/nfc 0x754a6999 nfc_vendor_cmd_reply -EXPORT_SYMBOL net/nfc/nfc 0x7ccba8ae nfc_allocate_device -EXPORT_SYMBOL net/nfc/nfc 0x865b1369 nfc_register_device -EXPORT_SYMBOL net/nfc/nfc 0x90a1f32d nfc_driver_failure -EXPORT_SYMBOL net/nfc/nfc 0xa57c38bd nfc_fw_download_done -EXPORT_SYMBOL net/nfc/nfc 0xa800835d nfc_targets_found -EXPORT_SYMBOL net/nfc/nfc 0xb22e2b2d nfc_add_se -EXPORT_SYMBOL net/nfc/nfc 0xbc2edb78 nfc_class -EXPORT_SYMBOL net/nfc/nfc 0xcf1bbc7e nfc_set_remote_general_bytes -EXPORT_SYMBOL net/nfc/nfc 0xd398a550 nfc_unregister_device -EXPORT_SYMBOL net/nfc/nfc 0xd45bd4b4 nfc_dep_link_is_up -EXPORT_SYMBOL net/nfc/nfc 0xd461b58d nfc_find_se -EXPORT_SYMBOL net/nfc/nfc 0xd6d08425 nfc_send_to_raw_sock -EXPORT_SYMBOL net/nfc/nfc 0xd83fa5d2 nfc_proto_unregister -EXPORT_SYMBOL net/nfc/nfc 0xf68ffe62 nfc_alloc_recv_skb -EXPORT_SYMBOL net/nfc/nfc 0xfc9b9b12 nfc_remove_se -EXPORT_SYMBOL net/nfc/nfc_digital 0x1bec773d nfc_digital_free_device -EXPORT_SYMBOL net/nfc/nfc_digital 0x365ab1d7 nfc_digital_allocate_device -EXPORT_SYMBOL net/nfc/nfc_digital 0xb2aa8fdf nfc_digital_unregister_device -EXPORT_SYMBOL net/nfc/nfc_digital 0xe84b6536 nfc_digital_register_device -EXPORT_SYMBOL net/phonet/phonet 0x038d57de pn_skb_send -EXPORT_SYMBOL net/phonet/phonet 0x196f454d phonet_proto_register -EXPORT_SYMBOL net/phonet/phonet 0x240338c9 phonet_header_ops -EXPORT_SYMBOL net/phonet/phonet 0x3923e067 phonet_stream_ops -EXPORT_SYMBOL net/phonet/phonet 0x771bf429 pn_sock_unhash -EXPORT_SYMBOL net/phonet/phonet 0x854c4f9a pn_sock_hash -EXPORT_SYMBOL net/phonet/phonet 0x94c9c03c phonet_proto_unregister -EXPORT_SYMBOL net/phonet/phonet 0xb32f0444 pn_sock_get_port -EXPORT_SYMBOL net/rxrpc/rxrpc 0x18f7004b rxrpc_kernel_charge_accept -EXPORT_SYMBOL net/rxrpc/rxrpc 0x1fccb6cb rxrpc_kernel_get_peer +EXPORT_SYMBOL net/nfc/nci/nci 0xc81b9e86 nci_hci_dev_session_init +EXPORT_SYMBOL net/nfc/nci/nci 0xcee529be nci_core_init +EXPORT_SYMBOL net/nfc/nci/nci 0xd39106f3 nci_core_conn_create +EXPORT_SYMBOL net/nfc/nci/nci 0xd491728f nci_hci_connect_gate +EXPORT_SYMBOL net/nfc/nci/nci 0xde9c9dcb nci_prop_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xe6efe58f nci_hci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xf1033746 nci_hci_open_pipe +EXPORT_SYMBOL net/nfc/nci/nci 0xf311a849 nci_register_device +EXPORT_SYMBOL net/nfc/nci/nci 0xfa46aff9 nci_get_conn_info_by_dest_type_params +EXPORT_SYMBOL net/nfc/nci/nci 0xffbfabb6 nci_set_config +EXPORT_SYMBOL net/nfc/nfc 0x012bfa8e nfc_register_device +EXPORT_SYMBOL net/nfc/nfc 0x0fbbb9bc nfc_alloc_recv_skb +EXPORT_SYMBOL net/nfc/nfc 0x145ed83d nfc_proto_unregister +EXPORT_SYMBOL net/nfc/nfc 0x235376a0 nfc_se_connectivity +EXPORT_SYMBOL net/nfc/nfc 0x2a6b12b1 nfc_find_se +EXPORT_SYMBOL net/nfc/nfc 0x38b7ee6d nfc_set_remote_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0x40523e47 nfc_allocate_device +EXPORT_SYMBOL net/nfc/nfc 0x54c65b76 nfc_unregister_device +EXPORT_SYMBOL net/nfc/nfc 0x6ff6c1f2 nfc_class +EXPORT_SYMBOL net/nfc/nfc 0x84d103ab nfc_targets_found +EXPORT_SYMBOL net/nfc/nfc 0x88535be4 nfc_send_to_raw_sock +EXPORT_SYMBOL net/nfc/nfc 0x88d95eb5 nfc_vendor_cmd_reply +EXPORT_SYMBOL net/nfc/nfc 0x8d83b372 nfc_remove_se +EXPORT_SYMBOL net/nfc/nfc 0x8e4e610b nfc_get_local_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0xb2dd62a3 nfc_tm_data_received +EXPORT_SYMBOL net/nfc/nfc 0xb5a637e3 nfc_dep_link_is_up +EXPORT_SYMBOL net/nfc/nfc 0xb86c9292 __nfc_alloc_vendor_cmd_reply_skb +EXPORT_SYMBOL net/nfc/nfc 0xbf1d47c8 nfc_tm_deactivated +EXPORT_SYMBOL net/nfc/nfc 0xc00afc49 nfc_proto_register +EXPORT_SYMBOL net/nfc/nfc 0xd1faaa2d nfc_target_lost +EXPORT_SYMBOL net/nfc/nfc 0xd2f20d72 nfc_tm_activated +EXPORT_SYMBOL net/nfc/nfc 0xe18c337c nfc_fw_download_done +EXPORT_SYMBOL net/nfc/nfc 0xe2458a27 nfc_add_se +EXPORT_SYMBOL net/nfc/nfc 0xeee92a0b nfc_driver_failure +EXPORT_SYMBOL net/nfc/nfc 0xf8fd2e6b nfc_se_transaction +EXPORT_SYMBOL net/nfc/nfc_digital 0x3f1ef28b nfc_digital_allocate_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x5b662542 nfc_digital_unregister_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x90ad1084 nfc_digital_free_device +EXPORT_SYMBOL net/nfc/nfc_digital 0xeba02549 nfc_digital_register_device +EXPORT_SYMBOL net/phonet/phonet 0x32c68d9d phonet_proto_register +EXPORT_SYMBOL net/phonet/phonet 0x5d3c636f pn_sock_hash +EXPORT_SYMBOL net/phonet/phonet 0x6b6ed5a9 pn_sock_get_port +EXPORT_SYMBOL net/phonet/phonet 0x76457967 phonet_proto_unregister +EXPORT_SYMBOL net/phonet/phonet 0xa7621719 phonet_stream_ops +EXPORT_SYMBOL net/phonet/phonet 0xc1e1d982 pn_skb_send +EXPORT_SYMBOL net/phonet/phonet 0xead905f2 phonet_header_ops +EXPORT_SYMBOL net/phonet/phonet 0xf3e97192 pn_sock_unhash +EXPORT_SYMBOL net/rxrpc/rxrpc 0x07562894 rxrpc_kernel_charge_accept +EXPORT_SYMBOL net/rxrpc/rxrpc 0x09ba4248 rxrpc_kernel_new_call_notification +EXPORT_SYMBOL net/rxrpc/rxrpc 0x29a35a3d rxrpc_kernel_send_data +EXPORT_SYMBOL net/rxrpc/rxrpc 0x2ee6ed77 rxrpc_kernel_set_max_life EXPORT_SYMBOL net/rxrpc/rxrpc 0x31bf3ca3 rxrpc_debug_id -EXPORT_SYMBOL net/rxrpc/rxrpc 0x45132da1 rxrpc_get_null_key -EXPORT_SYMBOL net/rxrpc/rxrpc 0x57b2c37c rxrpc_kernel_new_call_notification -EXPORT_SYMBOL net/rxrpc/rxrpc 0x658d3b0a rxrpc_kernel_abort_call -EXPORT_SYMBOL net/rxrpc/rxrpc 0x6dff181c rxrpc_kernel_set_max_life -EXPORT_SYMBOL net/rxrpc/rxrpc 0x6f4cca82 rxrpc_kernel_begin_call -EXPORT_SYMBOL net/rxrpc/rxrpc 0x7ea5c2e3 rxrpc_get_server_data_key -EXPORT_SYMBOL net/rxrpc/rxrpc 0x842e22f5 rxrpc_kernel_recv_data -EXPORT_SYMBOL net/rxrpc/rxrpc 0x934016d2 key_type_rxrpc -EXPORT_SYMBOL net/rxrpc/rxrpc 0xa048135e rxrpc_kernel_end_call -EXPORT_SYMBOL net/rxrpc/rxrpc 0xafe61193 rxrpc_kernel_send_data -EXPORT_SYMBOL net/rxrpc/rxrpc 0xb43975e0 rxrpc_kernel_get_reply_time -EXPORT_SYMBOL net/rxrpc/rxrpc 0xc959362d rxrpc_sock_set_min_security_level -EXPORT_SYMBOL net/rxrpc/rxrpc 0xe2038a49 rxrpc_kernel_set_tx_length -EXPORT_SYMBOL net/rxrpc/rxrpc 0xf1116319 rxrpc_kernel_check_life -EXPORT_SYMBOL net/rxrpc/rxrpc 0xfb47a902 rxrpc_kernel_get_srtt -EXPORT_SYMBOL net/rxrpc/rxrpc 0xfc29a87a rxrpc_kernel_get_epoch -EXPORT_SYMBOL net/sctp/sctp 0xe3d8c064 sctp_do_peeloff -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x1c9704fd gss_pseudoflavor_to_service -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x34b85d37 gss_mech_put -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xa807ebb2 gss_mech_get -EXPORT_SYMBOL net/sunrpc/sunrpc 0x5f5f71fa xdr_restrict_buflen -EXPORT_SYMBOL net/sunrpc/sunrpc 0x981519f7 get_srcport -EXPORT_SYMBOL net/sunrpc/sunrpc 0xe53ac11e xdr_truncate_encode -EXPORT_SYMBOL net/sunrpc/sunrpc 0xe63ea9a6 svc_pool_stats_open -EXPORT_SYMBOL net/tipc/tipc 0x0d5fda86 tipc_sk_fill_sock_diag -EXPORT_SYMBOL net/tipc/tipc 0x3de0a14f tipc_nl_sk_walk -EXPORT_SYMBOL net/tipc/tipc 0x5a831a5f tipc_dump_start -EXPORT_SYMBOL net/tipc/tipc 0xaf12a449 tipc_dump_done -EXPORT_SYMBOL net/tls/tls 0x57504d0f tls_get_record -EXPORT_SYMBOL net/wireless/cfg80211 0x00e3d779 cfg80211_register_netdevice -EXPORT_SYMBOL net/wireless/cfg80211 0x0261cc76 cfg80211_get_drvinfo -EXPORT_SYMBOL net/wireless/cfg80211 0x0947285a cfg80211_sched_scan_stopped_locked -EXPORT_SYMBOL net/wireless/cfg80211 0x09ac5f02 ieee80211_get_num_supported_channels +EXPORT_SYMBOL net/rxrpc/rxrpc 0x3fdd4736 rxrpc_kernel_check_life +EXPORT_SYMBOL net/rxrpc/rxrpc 0x588e70ac rxrpc_kernel_end_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0x5ac43a21 rxrpc_kernel_get_peer +EXPORT_SYMBOL net/rxrpc/rxrpc 0x6893ec24 rxrpc_kernel_recv_data +EXPORT_SYMBOL net/rxrpc/rxrpc 0x70c2c2b5 rxrpc_kernel_get_epoch +EXPORT_SYMBOL net/rxrpc/rxrpc 0x799bdb8a rxrpc_kernel_begin_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0x799c2de2 key_type_rxrpc +EXPORT_SYMBOL net/rxrpc/rxrpc 0x87064a66 rxrpc_kernel_get_srtt +EXPORT_SYMBOL net/rxrpc/rxrpc 0xa260733f rxrpc_get_server_data_key +EXPORT_SYMBOL net/rxrpc/rxrpc 0xa8c3744f rxrpc_kernel_set_tx_length +EXPORT_SYMBOL net/rxrpc/rxrpc 0xa93c9391 rxrpc_kernel_abort_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0xc1d7ca2a rxrpc_kernel_get_reply_time +EXPORT_SYMBOL net/rxrpc/rxrpc 0xecaeae92 rxrpc_get_null_key +EXPORT_SYMBOL net/rxrpc/rxrpc 0xfa5e18b7 rxrpc_sock_set_min_security_level +EXPORT_SYMBOL net/sctp/sctp 0x427a3599 sctp_do_peeloff +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x4a7b1ac8 gss_pseudoflavor_to_service +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x6bdeb6ae gss_mech_get +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x96b2e16a gss_mech_put +EXPORT_SYMBOL net/sunrpc/sunrpc 0x06a00daf svc_pool_stats_open +EXPORT_SYMBOL net/sunrpc/sunrpc 0x64d92442 xdr_restrict_buflen +EXPORT_SYMBOL net/sunrpc/sunrpc 0xfa24cf49 get_srcport +EXPORT_SYMBOL net/sunrpc/sunrpc 0xfc6600e2 xdr_truncate_encode +EXPORT_SYMBOL net/tipc/tipc 0x217c33f9 tipc_nl_sk_walk +EXPORT_SYMBOL net/tipc/tipc 0xcc84d4e2 tipc_dump_done +EXPORT_SYMBOL net/tipc/tipc 0xda4132ff tipc_sk_fill_sock_diag +EXPORT_SYMBOL net/tipc/tipc 0xeea40544 tipc_dump_start +EXPORT_SYMBOL net/tls/tls 0x501661ab tls_get_record +EXPORT_SYMBOL net/wireless/cfg80211 0x012267ee cfg80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x0492fa6a cfg80211_rx_mgmt_khz +EXPORT_SYMBOL net/wireless/cfg80211 0x0797e134 wiphy_rfkill_start_polling +EXPORT_SYMBOL net/wireless/cfg80211 0x0a84fb66 cfg80211_get_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x0d7af070 ieee80211_amsdu_to_8023s +EXPORT_SYMBOL net/wireless/cfg80211 0x103c6ad9 cfg80211_probe_status +EXPORT_SYMBOL net/wireless/cfg80211 0x105ef8ae cfg80211_nan_match +EXPORT_SYMBOL net/wireless/cfg80211 0x11728756 cfg80211_notify_new_peer_candidate EXPORT_SYMBOL net/wireless/cfg80211 0x117aca91 cfg80211_merge_profile -EXPORT_SYMBOL net/wireless/cfg80211 0x13b92deb freq_reg_info -EXPORT_SYMBOL net/wireless/cfg80211 0x14f50b11 cfg80211_check_station_change +EXPORT_SYMBOL net/wireless/cfg80211 0x11cff1bc cfg80211_sched_scan_results EXPORT_SYMBOL net/wireless/cfg80211 0x15a37cf3 cfg80211_calculate_bitrate -EXPORT_SYMBOL net/wireless/cfg80211 0x1718ac3f cfg80211_probe_status EXPORT_SYMBOL net/wireless/cfg80211 0x1879fcbd bridge_tunnel_header -EXPORT_SYMBOL net/wireless/cfg80211 0x1882001f cfg80211_reg_can_beacon -EXPORT_SYMBOL net/wireless/cfg80211 0x18f5a93f cfg80211_michael_mic_failure -EXPORT_SYMBOL net/wireless/cfg80211 0x19c0968e cfg80211_unregister_wdev -EXPORT_SYMBOL net/wireless/cfg80211 0x1c7e535a __cfg80211_send_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x19774e1f cfg80211_scan_done +EXPORT_SYMBOL net/wireless/cfg80211 0x1bd983a8 cfg80211_disconnected EXPORT_SYMBOL net/wireless/cfg80211 0x1ce2497f reg_query_regdb_wmm -EXPORT_SYMBOL net/wireless/cfg80211 0x1d82dec5 cfg80211_pmksa_candidate_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x216481e7 wiphy_rfkill_start_polling +EXPORT_SYMBOL net/wireless/cfg80211 0x1ec16b3e __cfg80211_alloc_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x22754890 cfg80211_rx_spurious_frame EXPORT_SYMBOL net/wireless/cfg80211 0x2310adee ieee80211_bss_get_elem -EXPORT_SYMBOL net/wireless/cfg80211 0x237fe05e cfg80211_inform_bss_frame_data -EXPORT_SYMBOL net/wireless/cfg80211 0x24840473 ieee80211_get_hdrlen_from_skb -EXPORT_SYMBOL net/wireless/cfg80211 0x25db0b16 cfg80211_rx_control_port -EXPORT_SYMBOL net/wireless/cfg80211 0x26ef48e0 cfg80211_abandon_assoc +EXPORT_SYMBOL net/wireless/cfg80211 0x25acce91 wiphy_free EXPORT_SYMBOL net/wireless/cfg80211 0x275269b3 ieee80211_ie_split_ric +EXPORT_SYMBOL net/wireless/cfg80211 0x276f6482 cfg80211_assoc_timeout EXPORT_SYMBOL net/wireless/cfg80211 0x27efff25 ieee80211_s1g_channel_width +EXPORT_SYMBOL net/wireless/cfg80211 0x27f17d68 cfg80211_rx_mlme_mgmt EXPORT_SYMBOL net/wireless/cfg80211 0x2a5d816f cfg80211_chandef_valid -EXPORT_SYMBOL net/wireless/cfg80211 0x332ba27e cfg80211_ft_event -EXPORT_SYMBOL net/wireless/cfg80211 0x3341e071 cfg80211_crit_proto_stopped -EXPORT_SYMBOL net/wireless/cfg80211 0x343bad8a cfg80211_put_bss -EXPORT_SYMBOL net/wireless/cfg80211 0x35e07183 ieee80211_get_channel_khz -EXPORT_SYMBOL net/wireless/cfg80211 0x36a74cc7 cfg80211_chandef_dfs_required -EXPORT_SYMBOL net/wireless/cfg80211 0x37e716f5 wiphy_register -EXPORT_SYMBOL net/wireless/cfg80211 0x3b600b2c cfg80211_ch_switch_started_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x3bf36dcf cfg80211_reg_can_beacon_relax +EXPORT_SYMBOL net/wireless/cfg80211 0x2a8cf0be ieee80211_get_channel_khz +EXPORT_SYMBOL net/wireless/cfg80211 0x2d9d0e60 cfg80211_tdls_oper_request +EXPORT_SYMBOL net/wireless/cfg80211 0x2f9a67af cfg80211_sched_scan_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0x30704ae7 cfg80211_inform_bss_frame_data +EXPORT_SYMBOL net/wireless/cfg80211 0x359a6701 cfg80211_unregister_wdev +EXPORT_SYMBOL net/wireless/cfg80211 0x3853d0ba regulatory_pre_cac_allowed +EXPORT_SYMBOL net/wireless/cfg80211 0x3c90eb44 cfg80211_del_sta_sinfo EXPORT_SYMBOL net/wireless/cfg80211 0x3d8e5894 cfg80211_chandef_compatible -EXPORT_SYMBOL net/wireless/cfg80211 0x409bac5c cfg80211_new_sta -EXPORT_SYMBOL net/wireless/cfg80211 0x435e768f cfg80211_scan_done +EXPORT_SYMBOL net/wireless/cfg80211 0x3f2666f0 cfg80211_michael_mic_failure +EXPORT_SYMBOL net/wireless/cfg80211 0x3fe608ba cfg80211_auth_timeout EXPORT_SYMBOL net/wireless/cfg80211 0x43afadee ieee80211_radiotap_iterator_init -EXPORT_SYMBOL net/wireless/cfg80211 0x46d210f8 cfg80211_bss_flush -EXPORT_SYMBOL net/wireless/cfg80211 0x4c4d717b cfg80211_ch_switch_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x513f0afd cfg80211_iter_combinations -EXPORT_SYMBOL net/wireless/cfg80211 0x542506c7 cfg80211_report_obss_beacon_khz -EXPORT_SYMBOL net/wireless/cfg80211 0x54653111 cfg80211_cac_event -EXPORT_SYMBOL net/wireless/cfg80211 0x54c43c0e __cfg80211_alloc_reply_skb -EXPORT_SYMBOL net/wireless/cfg80211 0x5dafdba1 cfg80211_tx_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0x6033a73d cfg80211_ref_bss -EXPORT_SYMBOL net/wireless/cfg80211 0x6039e01e cfg80211_bss_color_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x6222a5b1 cfg80211_control_port_tx_status -EXPORT_SYMBOL net/wireless/cfg80211 0x64706619 cfg80211_tdls_oper_request +EXPORT_SYMBOL net/wireless/cfg80211 0x4bfe2dd2 wiphy_register +EXPORT_SYMBOL net/wireless/cfg80211 0x4db5476d cfg80211_sta_opmode_change_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x4f79b8d5 cfg80211_gtk_rekey_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x51ebdd3b cfg80211_inform_bss_data +EXPORT_SYMBOL net/wireless/cfg80211 0x529013e1 freq_reg_info +EXPORT_SYMBOL net/wireless/cfg80211 0x5539f0e4 wiphy_new_nm +EXPORT_SYMBOL net/wireless/cfg80211 0x55a4145c cfg80211_crit_proto_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0x56a312da cfg80211_roamed +EXPORT_SYMBOL net/wireless/cfg80211 0x5791d094 wiphy_unregister +EXPORT_SYMBOL net/wireless/cfg80211 0x62d98b39 cfg80211_bss_color_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x636de0c9 cfg80211_port_authorized +EXPORT_SYMBOL net/wireless/cfg80211 0x6416d707 cfg80211_chandef_dfs_required EXPORT_SYMBOL net/wireless/cfg80211 0x652aeedf ieee80211_mandatory_rates -EXPORT_SYMBOL net/wireless/cfg80211 0x66169199 cfg80211_nan_func_terminated -EXPORT_SYMBOL net/wireless/cfg80211 0x686cb8f5 cfg80211_rx_assoc_resp -EXPORT_SYMBOL net/wireless/cfg80211 0x69a20f3f cfg80211_rx_spurious_frame +EXPORT_SYMBOL net/wireless/cfg80211 0x67087a61 cfg80211_control_port_tx_status +EXPORT_SYMBOL net/wireless/cfg80211 0x696bf4a6 cfg80211_put_bss EXPORT_SYMBOL net/wireless/cfg80211 0x69b18f43 rfc1042_header -EXPORT_SYMBOL net/wireless/cfg80211 0x6aac141d cfg80211_update_owe_info_event +EXPORT_SYMBOL net/wireless/cfg80211 0x6a8e41ee cfg80211_cqm_rssi_notify EXPORT_SYMBOL net/wireless/cfg80211 0x6bedf402 ieee80211_freq_khz_to_channel -EXPORT_SYMBOL net/wireless/cfg80211 0x703cffb3 regulatory_set_wiphy_regd -EXPORT_SYMBOL net/wireless/cfg80211 0x73e91612 cfg80211_any_usable_channels -EXPORT_SYMBOL net/wireless/cfg80211 0x76b3e0fb cfg80211_report_wowlan_wakeup -EXPORT_SYMBOL net/wireless/cfg80211 0x7876580d __cfg80211_alloc_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x6c11b523 cfg80211_chandef_usable +EXPORT_SYMBOL net/wireless/cfg80211 0x6c2f2560 cfg80211_cqm_txe_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x6d97098f cfg80211_update_owe_info_event +EXPORT_SYMBOL net/wireless/cfg80211 0x73f8e21b ieee80211_data_to_8023_exthdr +EXPORT_SYMBOL net/wireless/cfg80211 0x74ddb0da cfg80211_ft_event +EXPORT_SYMBOL net/wireless/cfg80211 0x755c2e0e cfg80211_reg_can_beacon_relax +EXPORT_SYMBOL net/wireless/cfg80211 0x77c88f16 cfg80211_any_usable_channels +EXPORT_SYMBOL net/wireless/cfg80211 0x7962f637 cfg80211_rx_control_port EXPORT_SYMBOL net/wireless/cfg80211 0x79b82a71 cfg80211_find_vendor_elem +EXPORT_SYMBOL net/wireless/cfg80211 0x79d3c73a cfg80211_bss_iter +EXPORT_SYMBOL net/wireless/cfg80211 0x7ac5fcfd cfg80211_check_station_change 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 0x7ee33e2e cfg80211_ch_switch_notify EXPORT_SYMBOL net/wireless/cfg80211 0x7ef39823 ieee80211_hdrlen EXPORT_SYMBOL net/wireless/cfg80211 0x81874735 ieee80211_get_response_rate -EXPORT_SYMBOL net/wireless/cfg80211 0x84fedea2 cfg80211_bss_iter -EXPORT_SYMBOL net/wireless/cfg80211 0x879ed86a cfg80211_classify8021d -EXPORT_SYMBOL net/wireless/cfg80211 0x886b8ac9 ieee80211_amsdu_to_8023s -EXPORT_SYMBOL net/wireless/cfg80211 0x8e399bdd cfg80211_roamed -EXPORT_SYMBOL net/wireless/cfg80211 0x8f33ecc9 wiphy_rfkill_set_hw_state_reason +EXPORT_SYMBOL net/wireless/cfg80211 0x87abca64 cfg80211_get_drvinfo +EXPORT_SYMBOL net/wireless/cfg80211 0x8a60957b cfg80211_register_netdevice +EXPORT_SYMBOL net/wireless/cfg80211 0x8a9596bc cfg80211_connect_done EXPORT_SYMBOL net/wireless/cfg80211 0x8fa02936 cfg80211_free_nan_func -EXPORT_SYMBOL net/wireless/cfg80211 0x91eb33b0 get_wiphy_regdom -EXPORT_SYMBOL net/wireless/cfg80211 0x9249e6a0 cfg80211_external_auth_request -EXPORT_SYMBOL net/wireless/cfg80211 0x9315e5ef cfg80211_radar_event -EXPORT_SYMBOL net/wireless/cfg80211 0x9ad51c06 cfg80211_conn_failed -EXPORT_SYMBOL net/wireless/cfg80211 0x9bcbbf53 cfg80211_check_combinations -EXPORT_SYMBOL net/wireless/cfg80211 0x9cfadf43 cfg80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x92acbc80 cfg80211_sched_scan_stopped_locked +EXPORT_SYMBOL net/wireless/cfg80211 0x93b9b952 cfg80211_mgmt_tx_status +EXPORT_SYMBOL net/wireless/cfg80211 0x970a22b6 cfg80211_unlink_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x979a6dcf __cfg80211_send_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x9a1d8be8 cfg80211_abandon_assoc EXPORT_SYMBOL net/wireless/cfg80211 0x9d6cba30 cfg80211_find_elem_match -EXPORT_SYMBOL net/wireless/cfg80211 0x9f26e912 cfg80211_rx_unexpected_4addr_frame -EXPORT_SYMBOL net/wireless/cfg80211 0xa122c171 cfg80211_get_bss -EXPORT_SYMBOL net/wireless/cfg80211 0xa2f51662 regulatory_hint -EXPORT_SYMBOL net/wireless/cfg80211 0xa6da872d wiphy_new_nm -EXPORT_SYMBOL net/wireless/cfg80211 0xa7136f38 cfg80211_send_layer2_update -EXPORT_SYMBOL net/wireless/cfg80211 0xae42b5e7 cfg80211_ibss_joined -EXPORT_SYMBOL net/wireless/cfg80211 0xafc37c2b cfg80211_get_station -EXPORT_SYMBOL net/wireless/cfg80211 0xb0b95609 cfg80211_nan_match -EXPORT_SYMBOL net/wireless/cfg80211 0xb10c446b wiphy_free -EXPORT_SYMBOL net/wireless/cfg80211 0xb1e06ed3 cfg80211_stop_iface -EXPORT_SYMBOL net/wireless/cfg80211 0xb22ba85d cfg80211_rx_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0xb3472ec7 cfg80211_assoc_timeout -EXPORT_SYMBOL net/wireless/cfg80211 0xb4cb7f32 cfg80211_sta_opmode_change_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xb5a1128a wiphy_apply_custom_regulatory +EXPORT_SYMBOL net/wireless/cfg80211 0x9d9d4e79 cfg80211_iftype_allowed +EXPORT_SYMBOL net/wireless/cfg80211 0x9ec91a34 cfg80211_iter_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0x9f2fc942 cfg80211_radar_event +EXPORT_SYMBOL net/wireless/cfg80211 0xa0a4af53 cfg80211_reg_can_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0xa7613a60 cfg80211_rx_unexpected_4addr_frame +EXPORT_SYMBOL net/wireless/cfg80211 0xa7a75517 ieee80211_get_num_supported_channels +EXPORT_SYMBOL net/wireless/cfg80211 0xa8c4f356 cfg80211_report_obss_beacon_khz +EXPORT_SYMBOL net/wireless/cfg80211 0xa8c9633d cfg80211_stop_iface +EXPORT_SYMBOL net/wireless/cfg80211 0xa9d89551 cfg80211_remain_on_channel_expired +EXPORT_SYMBOL net/wireless/cfg80211 0xabe8ace1 get_wiphy_regdom +EXPORT_SYMBOL net/wireless/cfg80211 0xadddd009 wiphy_rfkill_set_hw_state_reason +EXPORT_SYMBOL net/wireless/cfg80211 0xaf2dcffb __cfg80211_alloc_reply_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xb159bf6f cfg80211_rx_assoc_resp EXPORT_SYMBOL net/wireless/cfg80211 0xb73aafb1 ieee80211_chandef_to_operating_class -EXPORT_SYMBOL net/wireless/cfg80211 0xb806b930 cfg80211_cqm_pktloss_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xbe540c84 cfg80211_port_authorized -EXPORT_SYMBOL net/wireless/cfg80211 0xc012af53 cfg80211_cqm_rssi_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xb804247a cfg80211_rx_unprot_mlme_mgmt EXPORT_SYMBOL net/wireless/cfg80211 0xc1b99792 ieee80211_channel_to_freq_khz +EXPORT_SYMBOL net/wireless/cfg80211 0xc25210b3 cfg80211_pmksa_candidate_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xc58eed20 cfg80211_nan_func_terminated EXPORT_SYMBOL net/wireless/cfg80211 0xc5dcacef ieee80211_operating_class_to_band -EXPORT_SYMBOL net/wireless/cfg80211 0xc65b3a4e cfg80211_connect_done -EXPORT_SYMBOL net/wireless/cfg80211 0xc7c9ca85 cfg80211_sched_scan_stopped -EXPORT_SYMBOL net/wireless/cfg80211 0xca8a1529 cfg80211_chandef_usable +EXPORT_SYMBOL net/wireless/cfg80211 0xc6760628 cfg80211_report_wowlan_wakeup +EXPORT_SYMBOL net/wireless/cfg80211 0xca61ceb5 cfg80211_ready_on_channel +EXPORT_SYMBOL net/wireless/cfg80211 0xcb9df4eb cfg80211_new_sta EXPORT_SYMBOL net/wireless/cfg80211 0xcc1a7c48 cfg80211_is_element_inherited -EXPORT_SYMBOL net/wireless/cfg80211 0xcd4bdc70 cfg80211_inform_bss_data -EXPORT_SYMBOL net/wireless/cfg80211 0xcf93ead8 cfg80211_notify_new_peer_candidate -EXPORT_SYMBOL net/wireless/cfg80211 0xd3b8fb13 cfg80211_ready_on_channel +EXPORT_SYMBOL net/wireless/cfg80211 0xcc76eddb regulatory_set_wiphy_regd +EXPORT_SYMBOL net/wireless/cfg80211 0xcf5cb45f cfg80211_check_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0xd344d4d6 cfg80211_ibss_joined +EXPORT_SYMBOL net/wireless/cfg80211 0xd3d908ed regulatory_hint +EXPORT_SYMBOL net/wireless/cfg80211 0xd4852e87 regulatory_set_wiphy_regd_sync EXPORT_SYMBOL net/wireless/cfg80211 0xd56d55f3 ieee80211_get_mesh_hdrlen -EXPORT_SYMBOL net/wireless/cfg80211 0xd814293a cfg80211_gtk_rekey_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xdac3d95c regulatory_set_wiphy_regd_sync +EXPORT_SYMBOL net/wireless/cfg80211 0xd932bdc0 wiphy_apply_custom_regulatory +EXPORT_SYMBOL net/wireless/cfg80211 0xd974f10e cfg80211_bss_flush EXPORT_SYMBOL net/wireless/cfg80211 0xdba126c1 reg_initiator_name -EXPORT_SYMBOL net/wireless/cfg80211 0xdbcf7271 ieee80211_data_to_8023_exthdr -EXPORT_SYMBOL net/wireless/cfg80211 0xdc48dc92 cfg80211_disconnected -EXPORT_SYMBOL net/wireless/cfg80211 0xdefc87f4 cfg80211_iftype_allowed -EXPORT_SYMBOL net/wireless/cfg80211 0xe09e9773 cfg80211_cqm_txe_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xe1863f0b cfg80211_ch_switch_started_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xe2cd9bc9 cfg80211_ref_bss EXPORT_SYMBOL net/wireless/cfg80211 0xe334e6df cfg80211_sinfo_alloc_tid_stats -EXPORT_SYMBOL net/wireless/cfg80211 0xe45be561 cfg80211_rx_unprot_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0xe9dfd822 cfg80211_tx_mgmt_expired -EXPORT_SYMBOL net/wireless/cfg80211 0xecadd200 cfg80211_rx_mgmt_khz -EXPORT_SYMBOL net/wireless/cfg80211 0xee381e4c cfg80211_auth_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0xe5c3304d cfg80211_tx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0xee0cce95 cfg80211_external_auth_request EXPORT_SYMBOL net/wireless/cfg80211 0xef265f27 cfg80211_chandef_create -EXPORT_SYMBOL net/wireless/cfg80211 0xf0d4a4aa cfg80211_sched_scan_results -EXPORT_SYMBOL net/wireless/cfg80211 0xf123c39c cfg80211_mgmt_tx_status -EXPORT_SYMBOL net/wireless/cfg80211 0xf253ea14 regulatory_pre_cac_allowed -EXPORT_SYMBOL net/wireless/cfg80211 0xf3689dbc cfg80211_remain_on_channel_expired +EXPORT_SYMBOL net/wireless/cfg80211 0xf3330322 cfg80211_tx_mgmt_expired +EXPORT_SYMBOL net/wireless/cfg80211 0xf3f92f03 cfg80211_classify8021d +EXPORT_SYMBOL net/wireless/cfg80211 0xf47c4a88 cfg80211_conn_failed EXPORT_SYMBOL net/wireless/cfg80211 0xf5596d89 cfg80211_get_p2p_attr -EXPORT_SYMBOL net/wireless/cfg80211 0xf9fc1121 cfg80211_unlink_bss -EXPORT_SYMBOL net/wireless/cfg80211 0xfb13a9ad cfg80211_del_sta_sinfo -EXPORT_SYMBOL net/wireless/cfg80211 0xfd514a13 wiphy_unregister -EXPORT_SYMBOL net/wireless/lib80211 0x1c5d5ee0 lib80211_get_crypto_ops -EXPORT_SYMBOL net/wireless/lib80211 0x201abd69 lib80211_crypt_info_init -EXPORT_SYMBOL net/wireless/lib80211 0x66840e1f lib80211_unregister_crypto_ops -EXPORT_SYMBOL net/wireless/lib80211 0x8f5c310b lib80211_register_crypto_ops -EXPORT_SYMBOL net/wireless/lib80211 0xe2c2b77e lib80211_crypt_delayed_deinit -EXPORT_SYMBOL net/wireless/lib80211 0xfd243440 lib80211_crypt_info_free -EXPORT_SYMBOL sound/ac97_bus 0x8853f6e8 ac97_bus_type -EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0x18010f52 snd_mixer_oss_ioctl_card +EXPORT_SYMBOL net/wireless/cfg80211 0xf6dea4cc cfg80211_cqm_pktloss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xfcfa95f6 cfg80211_send_layer2_update +EXPORT_SYMBOL net/wireless/cfg80211 0xfe2f9fc2 cfg80211_cac_event +EXPORT_SYMBOL net/wireless/cfg80211 0xffc7d4d9 cfg80211_get_station +EXPORT_SYMBOL net/wireless/cfg80211 0xffd518b8 ieee80211_get_hdrlen_from_skb +EXPORT_SYMBOL net/wireless/lib80211 0x00cc4026 lib80211_register_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x05ae8774 lib80211_crypt_delayed_deinit +EXPORT_SYMBOL net/wireless/lib80211 0x070e9182 lib80211_crypt_info_free +EXPORT_SYMBOL net/wireless/lib80211 0x44aa1b87 lib80211_unregister_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x7ec4745e lib80211_get_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0xaf640658 lib80211_crypt_info_init +EXPORT_SYMBOL sound/ac97_bus 0xec43662b ac97_bus_type +EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0x864c958b 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 0x355324a0 snd_seq_kernel_client_enqueue EXPORT_SYMBOL sound/core/seq/snd-seq 0x3fb4d161 snd_seq_kernel_client_dispatch -EXPORT_SYMBOL sound/core/seq/snd-seq 0x568efefc snd_seq_kernel_client_enqueue EXPORT_SYMBOL sound/core/seq/snd-seq 0x6bb71038 snd_seq_delete_kernel_client EXPORT_SYMBOL sound/core/seq/snd-seq 0x7ac2f329 snd_seq_expand_var_event EXPORT_SYMBOL sound/core/seq/snd-seq 0x7b8699eb snd_seq_event_port_detach +EXPORT_SYMBOL sound/core/seq/snd-seq 0xa0614f8d snd_seq_event_port_attach +EXPORT_SYMBOL sound/core/seq/snd-seq 0xad99f6ea snd_seq_kernel_client_write_poll EXPORT_SYMBOL sound/core/seq/snd-seq 0xb8e448a0 snd_seq_set_queue_tempo -EXPORT_SYMBOL sound/core/seq/snd-seq 0xe8448e36 snd_seq_event_port_attach +EXPORT_SYMBOL sound/core/seq/snd-seq 0xdbcb52b7 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 0xe9a4de07 snd_seq_kernel_client_write_poll -EXPORT_SYMBOL sound/core/seq/snd-seq 0xf5b5412f snd_seq_create_kernel_client EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x6ea09972 snd_midi_channel_alloc_set EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x833a3e07 snd_midi_channel_set_clear EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0xb9948d2c snd_midi_channel_free_set @@ -5661,434 +5677,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 0x24e8d336 snd_virmidi_new -EXPORT_SYMBOL sound/core/snd 0x081a4ad7 snd_ctl_add -EXPORT_SYMBOL sound/core/snd 0x0c7e87a3 snd_card_file_add -EXPORT_SYMBOL sound/core/snd 0x1134b8be snd_pci_quirk_lookup +EXPORT_SYMBOL sound/core/seq/snd-seq-virmidi 0xe6addaa6 snd_virmidi_new +EXPORT_SYMBOL sound/core/snd 0x01b21a9d snd_ctl_unregister_ioctl_compat +EXPORT_SYMBOL sound/core/snd 0x0202a80e snd_ctl_free_one +EXPORT_SYMBOL sound/core/snd 0x042e9e3d snd_card_file_add +EXPORT_SYMBOL sound/core/snd 0x09996840 snd_card_free_when_closed +EXPORT_SYMBOL sound/core/snd 0x0b640583 snd_info_free_entry +EXPORT_SYMBOL sound/core/snd 0x108c9f84 snd_jack_new +EXPORT_SYMBOL sound/core/snd 0x187d5586 snd_ctl_remove EXPORT_SYMBOL sound/core/snd 0x18e1683f snd_dma_program EXPORT_SYMBOL sound/core/snd 0x191e88cf snd_dma_pointer EXPORT_SYMBOL sound/core/snd 0x198788b4 snd_lookup_oss_minor_data -EXPORT_SYMBOL sound/core/snd 0x21f51f21 snd_card_free_when_closed -EXPORT_SYMBOL sound/core/snd 0x2206fa2e snd_card_new -EXPORT_SYMBOL sound/core/snd 0x2254665f _snd_ctl_add_follower +EXPORT_SYMBOL sound/core/snd 0x1fd7849f snd_mixer_oss_notify_callback +EXPORT_SYMBOL sound/core/snd 0x20227da4 snd_jack_add_new_kctl EXPORT_SYMBOL sound/core/snd 0x24a94b26 snd_info_get_line -EXPORT_SYMBOL sound/core/snd 0x3264c2f1 snd_register_oss_device -EXPORT_SYMBOL sound/core/snd 0x331a6d4d snd_jack_new +EXPORT_SYMBOL sound/core/snd 0x2d198c1a _snd_ctl_add_follower EXPORT_SYMBOL sound/core/snd 0x342a2354 copy_to_user_fromio +EXPORT_SYMBOL sound/core/snd 0x344c1500 snd_ctl_boolean_stereo_info +EXPORT_SYMBOL sound/core/snd 0x36972e7b snd_card_file_remove EXPORT_SYMBOL sound/core/snd 0x3971b4df snd_ecards_limit -EXPORT_SYMBOL sound/core/snd 0x3bf58e69 snd_component_add -EXPORT_SYMBOL sound/core/snd 0x3ca9f9d0 snd_ctl_new1 -EXPORT_SYMBOL sound/core/snd 0x3ce27819 snd_ctl_register_ioctl_compat -EXPORT_SYMBOL sound/core/snd 0x3dc2a583 snd_card_disconnect -EXPORT_SYMBOL sound/core/snd 0x4565252a snd_ctl_find_numid -EXPORT_SYMBOL sound/core/snd 0x4815f057 snd_ctl_remove_id -EXPORT_SYMBOL sound/core/snd 0x4a02593a snd_device_register +EXPORT_SYMBOL sound/core/snd 0x3b3a9c22 snd_component_add +EXPORT_SYMBOL sound/core/snd 0x3c9cae42 snd_ctl_find_numid +EXPORT_SYMBOL sound/core/snd 0x47e85c82 snd_ctl_register_ioctl EXPORT_SYMBOL sound/core/snd 0x4a3ea5c0 snd_request_card -EXPORT_SYMBOL sound/core/snd 0x50e0ad73 snd_ctl_remove -EXPORT_SYMBOL sound/core/snd 0x5132b1b6 snd_card_free -EXPORT_SYMBOL sound/core/snd 0x547dd8ee snd_card_set_id -EXPORT_SYMBOL sound/core/snd 0x628d1a2c snd_jack_set_key -EXPORT_SYMBOL sound/core/snd 0x63c77e5d snd_device_new -EXPORT_SYMBOL sound/core/snd 0x6ad64a36 snd_info_create_module_entry -EXPORT_SYMBOL sound/core/snd 0x6c59749d snd_ctl_unregister_ioctl_compat -EXPORT_SYMBOL sound/core/snd 0x6dd1a139 snd_ctl_register_ioctl +EXPORT_SYMBOL sound/core/snd 0x5891d22f snd_ctl_add +EXPORT_SYMBOL sound/core/snd 0x5e8a3113 snd_jack_set_parent +EXPORT_SYMBOL sound/core/snd 0x63d84646 snd_jack_set_key +EXPORT_SYMBOL sound/core/snd 0x6b046316 snd_ctl_notify +EXPORT_SYMBOL sound/core/snd 0x6cf6e29c snd_seq_root +EXPORT_SYMBOL sound/core/snd 0x6cfd094f snd_info_register EXPORT_SYMBOL sound/core/snd 0x70c15ac1 snd_dma_disable -EXPORT_SYMBOL sound/core/snd 0x723797ca snd_unregister_device EXPORT_SYMBOL sound/core/snd 0x73076315 snd_pci_quirk_lookup_id -EXPORT_SYMBOL sound/core/snd 0x765b3df4 snd_jack_add_new_kctl -EXPORT_SYMBOL sound/core/snd 0x767b7570 snd_device_free -EXPORT_SYMBOL sound/core/snd 0x79001fd0 snd_jack_set_parent -EXPORT_SYMBOL sound/core/snd 0x79ef6a83 snd_card_file_remove -EXPORT_SYMBOL sound/core/snd 0x7b809438 snd_info_free_entry -EXPORT_SYMBOL sound/core/snd 0x86500f1a snd_ctl_unregister_ioctl -EXPORT_SYMBOL sound/core/snd 0x8a8da39b snd_info_register +EXPORT_SYMBOL sound/core/snd 0x76caf4ee snd_unregister_device +EXPORT_SYMBOL sound/core/snd 0x773425a5 snd_jack_report +EXPORT_SYMBOL sound/core/snd 0x78672252 snd_ctl_rename_id +EXPORT_SYMBOL sound/core/snd 0x7da1e2fa snd_device_free +EXPORT_SYMBOL sound/core/snd 0x812594d6 snd_ctl_boolean_mono_info +EXPORT_SYMBOL sound/core/snd 0x8275a42e snd_ctl_new1 +EXPORT_SYMBOL sound/core/snd 0x85eea1a7 snd_info_create_module_entry +EXPORT_SYMBOL sound/core/snd 0x8815ee50 snd_pci_quirk_lookup +EXPORT_SYMBOL sound/core/snd 0x8a9b834c snd_ctl_replace EXPORT_SYMBOL sound/core/snd 0x8df3789f snd_oss_info_register EXPORT_SYMBOL sound/core/snd 0x8f595b11 snd_major -EXPORT_SYMBOL sound/core/snd 0x91e10e8a snd_ctl_boolean_mono_info -EXPORT_SYMBOL sound/core/snd 0x94237661 snd_mixer_oss_notify_callback -EXPORT_SYMBOL sound/core/snd 0x96461859 snd_register_device -EXPORT_SYMBOL sound/core/snd 0x9968a471 snd_card_register -EXPORT_SYMBOL sound/core/snd 0x9cdf0ef5 snd_ctl_replace +EXPORT_SYMBOL sound/core/snd 0x905a2f3f snd_card_set_id +EXPORT_SYMBOL sound/core/snd 0x93eefe4a snd_ctl_register_ioctl_compat EXPORT_SYMBOL sound/core/snd 0x9e6d79f8 snd_info_get_str -EXPORT_SYMBOL sound/core/snd 0xa121b63c snd_ctl_boolean_stereo_info -EXPORT_SYMBOL sound/core/snd 0xa2425970 snd_jack_report -EXPORT_SYMBOL sound/core/snd 0xac74578e snd_seq_root +EXPORT_SYMBOL sound/core/snd 0xa11fff93 snd_register_oss_device +EXPORT_SYMBOL sound/core/snd 0xa8c1176f snd_device_register +EXPORT_SYMBOL sound/core/snd 0xaa8611bf snd_card_register EXPORT_SYMBOL sound/core/snd 0xb2e5ae4a snd_lookup_minor_data -EXPORT_SYMBOL sound/core/snd 0xb5088c82 snd_info_create_card_entry -EXPORT_SYMBOL sound/core/snd 0xbf2fc11d snd_ctl_free_one -EXPORT_SYMBOL sound/core/snd 0xc3059739 snd_ctl_make_virtual_master +EXPORT_SYMBOL sound/core/snd 0xb569b965 snd_ctl_notify_one +EXPORT_SYMBOL sound/core/snd 0xb6c21530 snd_unregister_oss_device EXPORT_SYMBOL sound/core/snd 0xc5a6d10b release_and_free_resource EXPORT_SYMBOL sound/core/snd 0xcc6a729f snd_ctl_enum_info -EXPORT_SYMBOL sound/core/snd 0xd2c918ec snd_power_wait -EXPORT_SYMBOL sound/core/snd 0xe7dddff8 snd_ctl_rename_id -EXPORT_SYMBOL sound/core/snd 0xe8e29c69 snd_ctl_find_id -EXPORT_SYMBOL sound/core/snd 0xf465b572 snd_unregister_oss_device -EXPORT_SYMBOL sound/core/snd 0xf8662151 snd_ctl_notify -EXPORT_SYMBOL sound/core/snd 0xfcdedefe snd_ctl_notify_one +EXPORT_SYMBOL sound/core/snd 0xd408801a snd_card_disconnect +EXPORT_SYMBOL sound/core/snd 0xd57d00ed snd_card_new +EXPORT_SYMBOL sound/core/snd 0xdcc3055a snd_ctl_find_id +EXPORT_SYMBOL sound/core/snd 0xdf707983 snd_card_free +EXPORT_SYMBOL sound/core/snd 0xe0567cbd snd_info_create_card_entry +EXPORT_SYMBOL sound/core/snd 0xe129ca00 snd_ctl_remove_id +EXPORT_SYMBOL sound/core/snd 0xe2d3a609 snd_ctl_unregister_ioctl +EXPORT_SYMBOL sound/core/snd 0xe759f45e snd_register_device +EXPORT_SYMBOL sound/core/snd 0xee0d7b45 snd_ctl_make_virtual_master +EXPORT_SYMBOL sound/core/snd 0xf24de88f snd_device_new +EXPORT_SYMBOL sound/core/snd 0xfc7f686b snd_power_wait EXPORT_SYMBOL sound/core/snd 0xfffd89db copy_from_user_toio -EXPORT_SYMBOL sound/core/snd-compress 0x695503d9 snd_compr_malloc_pages -EXPORT_SYMBOL sound/core/snd-compress 0x783f55e7 snd_compr_free_pages -EXPORT_SYMBOL sound/core/snd-hwdep 0x05c685af snd_hwdep_new -EXPORT_SYMBOL sound/core/snd-pcm 0x00201832 snd_dma_buffer_mmap -EXPORT_SYMBOL sound/core/snd-pcm 0x00fa1416 snd_pcm_hw_constraint_integer +EXPORT_SYMBOL sound/core/snd-compress 0xe2159dfd snd_compr_free_pages +EXPORT_SYMBOL sound/core/snd-compress 0xee6c8b8f snd_compr_malloc_pages +EXPORT_SYMBOL sound/core/snd-hwdep 0xb331b38f snd_hwdep_new +EXPORT_SYMBOL sound/core/snd-pcm 0x012f0b1d snd_pcm_hw_constraint_list EXPORT_SYMBOL sound/core/snd-pcm 0x0283dfe3 _snd_pcm_hw_params_any EXPORT_SYMBOL sound/core/snd-pcm 0x04cda566 snd_interval_refine +EXPORT_SYMBOL sound/core/snd-pcm 0x04d5391d snd_pcm_lib_malloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x05e9add0 snd_pcm_lib_free_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0x06d7037e snd_pcm_lib_preallocate_pages_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0x0934b7be snd_sgbuf_get_addr +EXPORT_SYMBOL sound/core/snd-pcm 0x094f64bc snd_pcm_new +EXPORT_SYMBOL sound/core/snd-pcm 0x0fc238e7 snd_pcm_lib_get_vmalloc_page EXPORT_SYMBOL sound/core/snd-pcm 0x11eba48e snd_pcm_create_iec958_consumer_hw_params -EXPORT_SYMBOL sound/core/snd-pcm 0x195e5559 snd_pcm_suspend_all -EXPORT_SYMBOL sound/core/snd-pcm 0x1b16a081 snd_pcm_new_stream +EXPORT_SYMBOL sound/core/snd-pcm 0x14d35bf8 snd_pcm_set_managed_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0x1c55a6c0 snd_pcm_hw_constraint_mask64 EXPORT_SYMBOL sound/core/snd-pcm 0x1d027e4b snd_pcm_format_signed -EXPORT_SYMBOL sound/core/snd-pcm 0x1da01aa3 snd_pcm_set_ops -EXPORT_SYMBOL sound/core/snd-pcm 0x1e2dc7a7 snd_pcm_hw_constraint_list -EXPORT_SYMBOL sound/core/snd-pcm 0x25108a3b snd_pcm_lib_free_pages -EXPORT_SYMBOL sound/core/snd-pcm 0x3040f962 snd_pcm_kernel_ioctl -EXPORT_SYMBOL sound/core/snd-pcm 0x32b2e904 snd_pcm_new +EXPORT_SYMBOL sound/core/snd-pcm 0x2e27f9d0 snd_pcm_lib_preallocate_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x360a5e9f snd_pcm_release_substream +EXPORT_SYMBOL sound/core/snd-pcm 0x3738005f snd_dma_alloc_pages EXPORT_SYMBOL sound/core/snd-pcm 0x3796bdcc snd_pcm_format_little_endian -EXPORT_SYMBOL sound/core/snd-pcm 0x37deb9b1 snd_pcm_hw_constraint_ratdens +EXPORT_SYMBOL sound/core/snd-pcm 0x38716f21 snd_pcm_set_managed_buffer_all EXPORT_SYMBOL sound/core/snd-pcm 0x39bf9301 _snd_pcm_hw_param_setempty -EXPORT_SYMBOL sound/core/snd-pcm 0x3d568783 snd_sgbuf_get_page -EXPORT_SYMBOL sound/core/snd-pcm 0x3e250df0 snd_pcm_period_elapsed -EXPORT_SYMBOL sound/core/snd-pcm 0x4bcf81f1 snd_pcm_hw_param_last +EXPORT_SYMBOL sound/core/snd-pcm 0x49943366 snd_pcm_hw_constraint_step EXPORT_SYMBOL sound/core/snd-pcm 0x4f816e9b snd_pcm_format_big_endian EXPORT_SYMBOL sound/core/snd-pcm 0x503bd137 snd_interval_ranges EXPORT_SYMBOL sound/core/snd-pcm 0x52e3e4a5 snd_pcm_hw_param_value -EXPORT_SYMBOL sound/core/snd-pcm 0x5ac594d6 snd_dma_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x57e6515e snd_pcm_stop +EXPORT_SYMBOL sound/core/snd-pcm 0x59119b5a snd_pcm_mmap_data EXPORT_SYMBOL sound/core/snd-pcm 0x5e7f4920 snd_pcm_format_set_silence EXPORT_SYMBOL sound/core/snd-pcm 0x650f8603 snd_pcm_format_silence_64 EXPORT_SYMBOL sound/core/snd-pcm 0x68a24153 snd_pcm_format_physical_width EXPORT_SYMBOL sound/core/snd-pcm 0x69255f54 snd_pcm_hw_limit_rates -EXPORT_SYMBOL sound/core/snd-pcm 0x69f96966 snd_pcm_hw_constraint_mask64 -EXPORT_SYMBOL sound/core/snd-pcm 0x6c1d9185 snd_pcm_hw_rule_noresample EXPORT_SYMBOL sound/core/snd-pcm 0x6ef8fcd8 snd_pcm_format_linear -EXPORT_SYMBOL sound/core/snd-pcm 0x6fa3d39a snd_pcm_new_internal -EXPORT_SYMBOL sound/core/snd-pcm 0x765203b4 snd_pcm_stop -EXPORT_SYMBOL sound/core/snd-pcm 0x768f4cf1 snd_pcm_lib_preallocate_pages_for_all -EXPORT_SYMBOL sound/core/snd-pcm 0x7ce8cc7d __snd_pcm_lib_xfer -EXPORT_SYMBOL sound/core/snd-pcm 0x7dd5d86c snd_pcm_hw_constraint_minmax +EXPORT_SYMBOL sound/core/snd-pcm 0x6fe41c72 snd_pcm_hw_constraint_ratnums +EXPORT_SYMBOL sound/core/snd-pcm 0x744151bd snd_pcm_lib_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x761a12b7 snd_pcm_open_substream +EXPORT_SYMBOL sound/core/snd-pcm 0x7807ab01 snd_pcm_hw_constraint_ranges +EXPORT_SYMBOL sound/core/snd-pcm 0x7cb63146 snd_pcm_hw_constraint_ratdens EXPORT_SYMBOL sound/core/snd-pcm 0x834dc955 snd_pcm_format_size -EXPORT_SYMBOL sound/core/snd-pcm 0x86fb72ba snd_pcm_mmap_data -EXPORT_SYMBOL sound/core/snd-pcm 0x87e9914e snd_pcm_lib_malloc_pages -EXPORT_SYMBOL sound/core/snd-pcm 0x8fb52299 snd_pcm_set_managed_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0x83fc9f88 snd_pcm_new_internal +EXPORT_SYMBOL sound/core/snd-pcm 0x847aba3c snd_dma_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x85742036 snd_dma_alloc_pages_fallback +EXPORT_SYMBOL sound/core/snd-pcm 0x8a1f5fb4 snd_pcm_set_ops +EXPORT_SYMBOL sound/core/snd-pcm 0x8e554491 snd_pcm_hw_rule_noresample +EXPORT_SYMBOL sound/core/snd-pcm 0x90ddcf83 snd_pcm_set_sync +EXPORT_SYMBOL sound/core/snd-pcm 0x9101b729 snd_pcm_kernel_ioctl EXPORT_SYMBOL sound/core/snd-pcm 0x94098ff8 snd_interval_list -EXPORT_SYMBOL sound/core/snd-pcm 0x97d456c5 snd_pcm_hw_constraint_ratnums -EXPORT_SYMBOL sound/core/snd-pcm 0x980adab3 snd_pcm_create_iec958_consumer -EXPORT_SYMBOL sound/core/snd-pcm 0x98bdfa81 snd_pcm_lib_get_vmalloc_page -EXPORT_SYMBOL sound/core/snd-pcm 0x98dbcf81 snd_pcm_hw_refine -EXPORT_SYMBOL sound/core/snd-pcm 0x9f59f2de snd_pcm_lib_free_vmalloc_buffer -EXPORT_SYMBOL sound/core/snd-pcm 0xa0b694eb snd_pcm_lib_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0x9cf2c77c snd_pcm_create_iec958_consumer +EXPORT_SYMBOL sound/core/snd-pcm 0xa05c986c snd_sgbuf_get_page EXPORT_SYMBOL sound/core/snd-pcm 0xa61aa028 snd_pcm_format_unsigned -EXPORT_SYMBOL sound/core/snd-pcm 0xa67b6e96 snd_pcm_hw_param_first -EXPORT_SYMBOL sound/core/snd-pcm 0xab3f2060 snd_pcm_period_elapsed_under_stream_lock -EXPORT_SYMBOL sound/core/snd-pcm 0xac3489e4 snd_dma_alloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xa75387d7 _snd_pcm_lib_alloc_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0xa9920d03 snd_pcm_period_elapsed +EXPORT_SYMBOL sound/core/snd-pcm 0xac3387c7 snd_pcm_lib_ioctl EXPORT_SYMBOL sound/core/snd-pcm 0xac437f7b snd_interval_ratnum -EXPORT_SYMBOL sound/core/snd-pcm 0xad77b732 snd_pcm_lib_preallocate_pages -EXPORT_SYMBOL sound/core/snd-pcm 0xaf3d9cb8 snd_sgbuf_get_addr -EXPORT_SYMBOL sound/core/snd-pcm 0xb0245cf3 snd_dma_alloc_pages_fallback -EXPORT_SYMBOL sound/core/snd-pcm 0xb0f9c7f3 snd_pcm_hw_constraint_msbits +EXPORT_SYMBOL sound/core/snd-pcm 0xacc619d6 snd_dma_buffer_mmap +EXPORT_SYMBOL sound/core/snd-pcm 0xaf45ed02 snd_pcm_hw_constraint_integer +EXPORT_SYMBOL sound/core/snd-pcm 0xb08b6a64 snd_pcm_hw_param_last EXPORT_SYMBOL sound/core/snd-pcm 0xb9638db4 snd_pcm_rate_to_rate_bit -EXPORT_SYMBOL sound/core/snd-pcm 0xced374c5 snd_pcm_set_managed_buffer_all -EXPORT_SYMBOL sound/core/snd-pcm 0xd8d4cc10 snd_pcm_lib_preallocate_free_for_all -EXPORT_SYMBOL sound/core/snd-pcm 0xe10dc41a snd_pcm_hw_constraint_step -EXPORT_SYMBOL sound/core/snd-pcm 0xe3013a29 _snd_pcm_lib_alloc_vmalloc_buffer -EXPORT_SYMBOL sound/core/snd-pcm 0xe3493b1a snd_sgbuf_get_chunk_size -EXPORT_SYMBOL sound/core/snd-pcm 0xe4e81d7c snd_pcm_hw_rule_add +EXPORT_SYMBOL sound/core/snd-pcm 0xbb4cdb37 snd_sgbuf_get_chunk_size +EXPORT_SYMBOL sound/core/snd-pcm 0xc04f6c7c snd_pcm_lib_mmap_iomem +EXPORT_SYMBOL sound/core/snd-pcm 0xc3856377 __snd_pcm_lib_xfer +EXPORT_SYMBOL sound/core/snd-pcm 0xc739cbed snd_pcm_hw_constraint_minmax +EXPORT_SYMBOL sound/core/snd-pcm 0xc82c4348 snd_pcm_period_elapsed_under_stream_lock +EXPORT_SYMBOL sound/core/snd-pcm 0xc8c2cbaf snd_pcm_hw_constraint_msbits +EXPORT_SYMBOL sound/core/snd-pcm 0xcf4eab88 snd_pcm_new_stream +EXPORT_SYMBOL sound/core/snd-pcm 0xd1424993 snd_pcm_suspend_all +EXPORT_SYMBOL sound/core/snd-pcm 0xd9193734 snd_pcm_hw_rule_add +EXPORT_SYMBOL sound/core/snd-pcm 0xdc2bff0f snd_pcm_hw_param_first EXPORT_SYMBOL sound/core/snd-pcm 0xe56a9336 snd_pcm_format_width -EXPORT_SYMBOL sound/core/snd-pcm 0xed3dfbdb snd_pcm_hw_constraint_ranges -EXPORT_SYMBOL sound/core/snd-pcm 0xeea6e06e snd_pcm_release_substream -EXPORT_SYMBOL sound/core/snd-pcm 0xf3bdc653 snd_pcm_lib_mmap_iomem -EXPORT_SYMBOL sound/core/snd-pcm 0xf60b7184 snd_pcm_open_substream -EXPORT_SYMBOL sound/core/snd-pcm 0xfd8fc62f snd_pcm_hw_constraint_pow2 -EXPORT_SYMBOL sound/core/snd-pcm 0xfdc01c05 snd_pcm_set_sync +EXPORT_SYMBOL sound/core/snd-pcm 0xf910989d snd_pcm_hw_refine +EXPORT_SYMBOL sound/core/snd-pcm 0xf97c84ae snd_pcm_hw_constraint_pow2 +EXPORT_SYMBOL sound/core/snd-pcm 0xfdf47b9e snd_pcm_lib_preallocate_free_for_all EXPORT_SYMBOL sound/core/snd-pcm 0xff6104d0 snd_pcm_rate_bit_to_rate -EXPORT_SYMBOL sound/core/snd-rawmidi 0x0af31e60 snd_rawmidi_receive -EXPORT_SYMBOL sound/core/snd-rawmidi 0x0b7afa1a snd_rawmidi_input_params -EXPORT_SYMBOL sound/core/snd-rawmidi 0x1df4c133 __snd_rawmidi_transmit_ack -EXPORT_SYMBOL sound/core/snd-rawmidi 0x31ac1d63 snd_rawmidi_new -EXPORT_SYMBOL sound/core/snd-rawmidi 0x5321a3df snd_rawmidi_kernel_read -EXPORT_SYMBOL sound/core/snd-rawmidi 0x63a8c29e snd_rawmidi_kernel_open -EXPORT_SYMBOL sound/core/snd-rawmidi 0x66b1e51a snd_rawmidi_transmit -EXPORT_SYMBOL sound/core/snd-rawmidi 0x73bb63e3 snd_rawmidi_kernel_release -EXPORT_SYMBOL sound/core/snd-rawmidi 0x7433c3bc snd_rawmidi_drain_output -EXPORT_SYMBOL sound/core/snd-rawmidi 0x81f90c71 snd_rawmidi_transmit_peek -EXPORT_SYMBOL sound/core/snd-rawmidi 0x85360768 snd_rawmidi_transmit_ack -EXPORT_SYMBOL sound/core/snd-rawmidi 0x95e118e5 __snd_rawmidi_transmit_peek -EXPORT_SYMBOL sound/core/snd-rawmidi 0x964feada snd_rawmidi_proceed -EXPORT_SYMBOL sound/core/snd-rawmidi 0xa2ff1f62 snd_rawmidi_info_select -EXPORT_SYMBOL sound/core/snd-rawmidi 0xaa3d29d8 snd_rawmidi_set_ops -EXPORT_SYMBOL sound/core/snd-rawmidi 0xd3d8cae1 snd_rawmidi_kernel_write -EXPORT_SYMBOL sound/core/snd-rawmidi 0xd55ff6f2 snd_rawmidi_output_params -EXPORT_SYMBOL sound/core/snd-rawmidi 0xdcb4f773 snd_rawmidi_drain_input -EXPORT_SYMBOL sound/core/snd-rawmidi 0xdd8e21e1 snd_rawmidi_transmit_empty -EXPORT_SYMBOL sound/core/snd-rawmidi 0xfbf338b5 snd_rawmidi_drop_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0x02fd9c21 snd_rawmidi_kernel_release +EXPORT_SYMBOL sound/core/snd-rawmidi 0x07743474 snd_rawmidi_drain_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0x1260e488 snd_rawmidi_receive +EXPORT_SYMBOL sound/core/snd-rawmidi 0x16cc6652 snd_rawmidi_set_ops +EXPORT_SYMBOL sound/core/snd-rawmidi 0x1913846a snd_rawmidi_transmit +EXPORT_SYMBOL sound/core/snd-rawmidi 0x367de63a snd_rawmidi_kernel_write +EXPORT_SYMBOL sound/core/snd-rawmidi 0x3eb05492 snd_rawmidi_new +EXPORT_SYMBOL sound/core/snd-rawmidi 0x424b9de4 snd_rawmidi_output_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0x47ead4d6 snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0x520a08f1 snd_rawmidi_info_select +EXPORT_SYMBOL sound/core/snd-rawmidi 0x670c514d snd_rawmidi_transmit_empty +EXPORT_SYMBOL sound/core/snd-rawmidi 0x85dffb1a snd_rawmidi_kernel_open +EXPORT_SYMBOL sound/core/snd-rawmidi 0x8dcf21c8 __snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0x966407eb __snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0x995a13ca snd_rawmidi_drop_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0xa5feadee snd_rawmidi_input_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0xc15e3478 snd_rawmidi_proceed +EXPORT_SYMBOL sound/core/snd-rawmidi 0xce9f460d snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0xd3e604ec snd_rawmidi_drain_input +EXPORT_SYMBOL sound/core/snd-rawmidi 0xddaf0911 snd_rawmidi_kernel_read EXPORT_SYMBOL sound/core/snd-seq-device 0x091def1c snd_seq_autoload_exit +EXPORT_SYMBOL sound/core/snd-seq-device 0x0bafdde2 snd_seq_device_new EXPORT_SYMBOL sound/core/snd-seq-device 0x370a0736 snd_seq_autoload_init -EXPORT_SYMBOL sound/core/snd-seq-device 0x3c923527 snd_seq_device_new EXPORT_SYMBOL sound/core/snd-seq-device 0x6339b6d0 snd_seq_device_load_drivers -EXPORT_SYMBOL sound/core/snd-timer 0x0059b1f4 snd_timer_global_free -EXPORT_SYMBOL sound/core/snd-timer 0x1884bb83 snd_timer_global_register -EXPORT_SYMBOL sound/core/snd-timer 0x1b659347 snd_timer_instance_new -EXPORT_SYMBOL sound/core/snd-timer 0x447b3f97 snd_timer_open -EXPORT_SYMBOL sound/core/snd-timer 0x459fd8d9 snd_timer_close -EXPORT_SYMBOL sound/core/snd-timer 0x65e31517 snd_timer_notify -EXPORT_SYMBOL sound/core/snd-timer 0x6863c01d snd_timer_stop -EXPORT_SYMBOL sound/core/snd-timer 0xa3d15283 snd_timer_new -EXPORT_SYMBOL sound/core/snd-timer 0xb90bd6b3 snd_timer_instance_free -EXPORT_SYMBOL sound/core/snd-timer 0xbf3cc67d snd_timer_start -EXPORT_SYMBOL sound/core/snd-timer 0xc0558617 snd_timer_pause -EXPORT_SYMBOL sound/core/snd-timer 0xc19a01bd snd_timer_resolution -EXPORT_SYMBOL sound/core/snd-timer 0xdd68f0c4 snd_timer_global_new -EXPORT_SYMBOL sound/core/snd-timer 0xf6ef80e3 snd_timer_continue -EXPORT_SYMBOL sound/core/snd-timer 0xfe0b556a snd_timer_interrupt -EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x6875d466 snd_mpu401_uart_new +EXPORT_SYMBOL sound/core/snd-timer 0x00116f32 snd_timer_global_free +EXPORT_SYMBOL sound/core/snd-timer 0x4b5f79a6 snd_timer_pause +EXPORT_SYMBOL sound/core/snd-timer 0x4f461307 snd_timer_new +EXPORT_SYMBOL sound/core/snd-timer 0x51b5b448 snd_timer_interrupt +EXPORT_SYMBOL sound/core/snd-timer 0x52b748d6 snd_timer_start +EXPORT_SYMBOL sound/core/snd-timer 0x59e334b8 snd_timer_notify +EXPORT_SYMBOL sound/core/snd-timer 0x612c6669 snd_timer_global_new +EXPORT_SYMBOL sound/core/snd-timer 0x678a6fa5 snd_timer_instance_free +EXPORT_SYMBOL sound/core/snd-timer 0x70d192d3 snd_timer_global_register +EXPORT_SYMBOL sound/core/snd-timer 0x87c530d6 snd_timer_stop +EXPORT_SYMBOL sound/core/snd-timer 0x8cddc0a9 snd_timer_continue +EXPORT_SYMBOL sound/core/snd-timer 0x94400066 snd_timer_resolution +EXPORT_SYMBOL sound/core/snd-timer 0x9817f59a snd_timer_instance_new +EXPORT_SYMBOL sound/core/snd-timer 0xa5f204ae snd_timer_open +EXPORT_SYMBOL sound/core/snd-timer 0xd1a3db0b snd_timer_close +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x4ab66b46 snd_mpu401_uart_new EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x6d629c59 snd_mpu401_uart_interrupt_tx EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0xc0fec227 snd_mpu401_uart_interrupt -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x032e4fbe snd_opl3_timer_new EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x05060a19 snd_opl3_regmap -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x0b7fdbe3 snd_opl3_create -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x1a18dbe6 snd_opl3_reset -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x1b434c03 snd_opl3_init -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x1ebdbd42 snd_opl3_load_patch -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x215fdaa1 snd_opl3_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xc8b925b7 snd_opl3_hwdep_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xd3be4962 snd_opl3_interrupt -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xfa567ad8 snd_opl3_find_patch -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x089db797 snd_vx_load_boot_image +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x0ad1882f snd_opl3_timer_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x765ce3cd snd_opl3_hwdep_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x7cbb96e9 snd_opl3_init +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x8e2809f4 snd_opl3_load_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x9c677b4f snd_opl3_reset +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xa68b2c9d snd_opl3_create +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xbb14bef1 snd_opl3_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xbcf4582b snd_opl3_interrupt +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xe2e81237 snd_opl3_find_patch +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x055d85f5 snd_vx_check_reg_bit +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x0df29826 snd_vx_load_boot_image EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x226138b0 snd_vx_threaded_irq_handler -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x26b3f4a4 snd_vx_dsp_load -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x3c49acda snd_vx_suspend -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x6e508a4c snd_vx_resume -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x8e46656e snd_vx_check_reg_bit -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x8e7807c7 snd_vx_free_firmware -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xa4980306 snd_vx_dsp_boot -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xad439011 snd_vx_create -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xdb16918d snd_vx_setup_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x28a7b5b1 snd_vx_suspend +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x2e92c231 snd_vx_dsp_load +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x2fd6e79d snd_vx_setup_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x6ed2219c snd_vx_resume +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x82a80df4 snd_vx_create +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xb9e23234 snd_vx_dsp_boot EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf1f04d23 snd_vx_irq_handler -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x09249750 fcp_bus_reset -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x0bd8f1a9 fw_iso_resources_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x0f2f3a3d amdtp_stream_set_parameters -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x183eb7e2 cmp_connection_release -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x1ca021bf cmp_connection_check_used -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x1f915f81 avc_general_set_sig_fmt +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xfc9aae4d snd_vx_free_firmware +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x00105b46 fw_iso_resources_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x08928f72 cmp_connection_release +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x09438fe2 amdtp_stream_pcm_abort +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x0c7d2493 cmp_connection_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x0cdfd360 fw_iso_resources_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x0fd6c904 fw_iso_resources_allocate +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x14309a8e fcp_bus_reset +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x1aa01f5f avc_general_get_plug_info +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x1ad203ee amdtp_stream_set_parameters EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x20254e45 amdtp_syt_intervals -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2119a9c0 snd_fw_transaction -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2f4a9eba amdtp_stream_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3340dbb3 fcp_avc_transaction -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x50a830f3 fw_iso_resources_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x320e0cd2 amdtp_stream_pcm_prepare +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x4ecb333e cmp_connection_break +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x52a8736b avc_general_set_sig_fmt EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x53ca18e8 amdtp_rate_table -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x59bda90a amdtp_stream_pcm_prepare -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x64531e8c amdtp_stream_get_max_payload -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x675138d2 amdtp_stream_update -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7a5b4307 cmp_connection_reserve -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7d5e48bf iso_packets_buffer_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x823fdd65 cmp_connection_update -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x9da42700 amdtp_stream_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa3ba825f iso_packets_buffer_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa4753b8d cmp_connection_break -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb4176ffe avc_general_get_sig_fmt -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb87a4f1a cmp_connection_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb90be43c fw_iso_resources_allocate -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xba6cf2c2 amdtp_stream_add_pcm_hw_constraints -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc1bb2011 fw_iso_resources_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd9bd9bf7 fw_iso_resources_free -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xdecce6fa avc_general_get_plug_info -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xebf24069 cmp_connection_establish -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xf16baaa4 amdtp_stream_pcm_abort -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xf3cc1b0c cmp_connection_destroy -EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x5061be3c snd_ak4113_resume -EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0xc057e647 snd_ak4113_suspend -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x2cd885c2 snd_ak4114_resume -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x366009a4 snd_ak4114_build -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x48c8ede6 snd_ak4114_create -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x62e1772e snd_ak4114_reinit -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x9de7ff7d snd_ak4114_suspend -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xaa250d1b snd_ak4114_external_rate -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xcce3739a snd_ak4114_check_rate_and_errors -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xdbe02f9a snd_ak4114_reg_write -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x27a0d128 snd_ak4117_check_rate_and_errors -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x2cb02e3b snd_ak4117_build -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x35fd4df4 snd_ak4117_create -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x3d60819b snd_ak4117_reinit -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xb9d841da snd_ak4117_external_rate -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xf255c648 snd_ak4117_reg_write -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x0f67ab10 snd_akm4xxx_build_controls -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x20ab8b3c snd_akm4xxx_write -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x28be9e61 snd_akm4xxx_init -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x96e5457f snd_akm4xxx_reset -EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0xaa30596b snd_pt2258_reset -EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0xd86ce81f snd_pt2258_build_controls -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x2db74234 snd_cs8427_create -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x519d0aae snd_cs8427_iec958_active -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x9e80c354 snd_cs8427_iec958_build -EXPORT_SYMBOL sound/i2c/snd-cs8427 0xbd5ac4c6 snd_cs8427_iec958_pcm -EXPORT_SYMBOL sound/i2c/snd-cs8427 0xce3d8caa snd_cs8427_init -EXPORT_SYMBOL sound/i2c/snd-cs8427 0xfca6d4de snd_cs8427_reg_write -EXPORT_SYMBOL sound/i2c/snd-i2c 0x1a0a8f96 snd_i2c_bus_create -EXPORT_SYMBOL sound/i2c/snd-i2c 0x496a0a59 snd_i2c_device_free -EXPORT_SYMBOL sound/i2c/snd-i2c 0x5d90f0b0 snd_i2c_probeaddr -EXPORT_SYMBOL sound/i2c/snd-i2c 0x8286fdc1 snd_i2c_readbytes -EXPORT_SYMBOL sound/i2c/snd-i2c 0xa99a87f8 snd_i2c_device_create -EXPORT_SYMBOL sound/i2c/snd-i2c 0xaab0c400 snd_i2c_sendbytes -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x46fdbf18 snd_sbdsp_reset -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x60307b22 snd_sbmixer_write -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x6320da4e snd_sbmixer_resume -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x70760e08 snd_sbdsp_get_byte -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x84db6e03 snd_sbmixer_suspend -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x8e27f39e snd_sbdsp_command -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x99d200df snd_sbmixer_add_ctl -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xbd8d8b27 snd_sbmixer_read -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xd4e2675a snd_sbmixer_new -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xf56e33ff snd_sbdsp_create -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x0bc6b232 snd_ac97_read -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x0fecbdea snd_ac97_pcm_close -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x246318d2 snd_ac97_mixer -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x3ecd6258 snd_ac97_update -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x405a9c49 snd_ac97_resume -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x4936d261 snd_ac97_pcm_open -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x8c1b77ec snd_ac97_bus -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xb5c78701 snd_ac97_set_rate -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xb71f9fe8 snd_ac97_suspend -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xb8859269 snd_ac97_update_power -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xc579da12 snd_ac97_pcm_assign -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xc96be606 snd_ac97_get_short_name -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xc97039e7 snd_ac97_write_cache -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xcfefb4fd snd_ac97_update_bits -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xe1d1722c snd_ac97_pcm_double_rate_rules -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xfdd51ea7 snd_ac97_write -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xffd4e3bd snd_ac97_tune_hardware -EXPORT_SYMBOL sound/pci/asihpi/snd-asihpi 0x69db89b9 hpi_send_recv -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x0c924472 snd_emu10k1_ptr_write -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x1fc94a5e snd_emu10k1_synth_copy_from_user -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x752592d2 snd_emu10k1_memblk_map -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x82f48c86 snd_emu10k1_voice_free -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x836ab4d5 snd_emu10k1_voice_alloc -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x84f469af snd_emu10k1_ptr_read -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xb6bf1dde snd_emu10k1_synth_alloc -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xe3e22755 snd_emu10k1_synth_bzero -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xf843354f snd_emu10k1_synth_free -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x0404fbef snd_ice1712_akm4xxx_init -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x1044dbb2 snd_ice1712_akm4xxx_free -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xb63827b2 snd_ice1712_akm4xxx_build_controls -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x118cd206 oxygen_reset_uart -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x196c13ad oxygen_read8 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x367d1c67 oxygen_write_uart -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x4bd15d66 oxygen_write32 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x4e5a27c3 oxygen_write8 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x5dfc4ab1 oxygen_read32 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x66301ca9 oxygen_pci_probe -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x7567b519 oxygen_pci_shutdown -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x7a6702c5 oxygen_write16 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x999f9a48 oxygen_write8_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x9c0e5ad2 oxygen_write_spi -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xacbeed87 oxygen_pci_pm -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xb0a059fe oxygen_read_ac97 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xba4b6fef oxygen_update_dac_routing -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xc59c18e4 oxygen_write32_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xc75b13b3 oxygen_write16_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xd318b198 oxygen_write_i2c -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xdfef4380 oxygen_write_ac97 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xf10a814d oxygen_read16 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xf36b72f1 oxygen_write_ac97_masked -EXPORT_SYMBOL sound/pci/trident/snd-trident 0x2638c93b snd_trident_alloc_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0x680a9160 snd_trident_stop_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0x8e8ed825 snd_trident_start_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0xc575fe68 snd_trident_free_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0xf556858b snd_trident_write_voice_regs +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x65bcd825 amdtp_stream_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x66752060 fcp_avc_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x6bfaac26 cmp_connection_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7040f973 fw_iso_resources_free +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7bf997b5 iso_packets_buffer_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x8485bb43 cmp_connection_check_used +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x86ba2621 cmp_connection_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x8715b560 iso_packets_buffer_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x9a0ae8a4 amdtp_stream_add_pcm_hw_constraints +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x9e2c299d avc_general_get_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb6ec24cd cmp_connection_establish +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb9e62f89 amdtp_stream_get_max_payload +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xbbeebb0d cmp_connection_reserve +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc053ccd4 snd_fw_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc0db31ea fw_iso_resources_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd7657568 amdtp_stream_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe24de5ae amdtp_stream_destroy +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x7d41411a snd_ak4113_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x828f4ee7 snd_ak4113_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x0adc1464 snd_ak4114_check_rate_and_errors +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x4e829684 snd_ak4114_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x609b2e31 snd_ak4114_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x6f5181e4 snd_ak4114_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x769b94a5 snd_ak4114_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x97204715 snd_ak4114_build +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xb366ee74 snd_ak4114_reinit +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xd2a15498 snd_ak4114_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x02e6b90c snd_ak4117_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x114a9ea8 snd_ak4117_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x7f3ad292 snd_ak4117_check_rate_and_errors +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x84fd9058 snd_ak4117_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x93018790 snd_ak4117_build +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xa13b5ec2 snd_ak4117_reinit +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x1bb4e738 snd_akm4xxx_build_controls +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x2abb489d snd_akm4xxx_init +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x367e7ccc snd_akm4xxx_reset +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xec7e8eab snd_akm4xxx_write +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0xbc99cd82 snd_pt2258_reset +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0xd832a0c2 snd_pt2258_build_controls +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x430fa06d snd_cs8427_iec958_build +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x54e6fc84 snd_cs8427_reg_write +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x5f3b1510 snd_cs8427_init +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x6db5d16d snd_cs8427_create +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x73af2fc5 snd_cs8427_iec958_pcm +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x99925fb1 snd_cs8427_iec958_active +EXPORT_SYMBOL sound/i2c/snd-i2c 0x1f45f7f5 snd_i2c_sendbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0x46ecb028 snd_i2c_readbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0x4721abe3 snd_i2c_device_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0x5d2a82b4 snd_i2c_bus_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0x5d976492 snd_i2c_device_free +EXPORT_SYMBOL sound/i2c/snd-i2c 0xf2edd5e3 snd_i2c_probeaddr +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x31f73d87 snd_sbmixer_add_ctl +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x5d70475e snd_sbdsp_command +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x5efd2456 snd_sbmixer_suspend +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x7b45857c snd_sbmixer_resume +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x96dbfab8 snd_sbmixer_read +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xa218b3f0 snd_sbdsp_get_byte +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xb9039379 snd_sbmixer_write +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xcfe8570e snd_sbmixer_new +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xd2e22fdd snd_sbdsp_reset +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xd49c7d11 snd_sbdsp_create +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x11879e26 snd_ac97_pcm_open +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x3d3ee1ef snd_ac97_write_cache +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x58d0ccc7 snd_ac97_resume +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x59448a02 snd_ac97_mixer +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x5d14394d snd_ac97_update +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x5d63e219 snd_ac97_get_short_name +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x60f1b994 snd_ac97_suspend +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x653283c6 snd_ac97_read +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x7fdda4d1 snd_ac97_pcm_assign +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x80e48f31 snd_ac97_tune_hardware +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x8296267e snd_ac97_update_power +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x95fb4a7a snd_ac97_write +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x9db08a39 snd_ac97_pcm_double_rate_rules +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xa6717a48 snd_ac97_pcm_close +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xaf388536 snd_ac97_update_bits +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xb6a79817 snd_ac97_set_rate +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xf49ccd9e snd_ac97_bus +EXPORT_SYMBOL sound/pci/asihpi/snd-asihpi 0x061b93fa hpi_send_recv +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x3ff0b136 snd_emu10k1_ptr_write +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x408ac40c snd_emu10k1_voice_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x657cf995 snd_emu10k1_synth_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x69cb6163 snd_emu10k1_synth_bzero +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x6ddd7791 snd_emu10k1_ptr_read +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x9525d909 snd_emu10k1_synth_copy_from_user +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xa427b082 snd_emu10k1_voice_alloc +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xdef76929 snd_emu10k1_memblk_map +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xe767d210 snd_emu10k1_synth_alloc +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x1cd42158 snd_ice1712_akm4xxx_build_controls +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x37aba52f snd_ice1712_akm4xxx_init +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x7b852cce snd_ice1712_akm4xxx_free +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x0e7d90b8 oxygen_reset_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x11216683 oxygen_write_i2c +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x18ecd99a oxygen_write_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x19c05266 oxygen_write32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x221ef245 oxygen_read8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x2ce1912f oxygen_pci_pm +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x381ef7f8 oxygen_write8_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x417f7378 oxygen_write16_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x57a6e635 oxygen_write8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x5ffa776e oxygen_write_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x6c11048b oxygen_write16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x77c4fbc4 oxygen_write32_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x978d423b oxygen_write_ac97_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xa0ad57c4 oxygen_read_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xac8d10f9 oxygen_update_dac_routing +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xb65a6309 oxygen_read32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xc857f72b oxygen_write_spi +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xd857411f oxygen_read16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xe12755e7 oxygen_pci_shutdown +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xf3a1856e oxygen_pci_probe +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x245480bf snd_trident_start_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x25637e29 snd_trident_write_voice_regs +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x8b0a54f4 snd_trident_free_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x9b45f0f8 snd_trident_stop_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xcdce6110 snd_trident_alloc_voice EXPORT_SYMBOL sound/soc/amd/acp_audio_dma 0xea74f232 bt_uart_enable -EXPORT_SYMBOL sound/soc/codecs/snd-soc-adau1372 0xc5ae3592 adau1372_probe -EXPORT_SYMBOL sound/soc/codecs/snd-soc-lpass-wsa-macro 0x12963e9a wsa_macro_set_spkr_mode -EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0x20d53c5a pcm3060_probe -EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0xcdb04d91 pcm3060_regmap +EXPORT_SYMBOL sound/soc/codecs/snd-soc-adau1372 0xf883bf3d adau1372_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-lpass-wsa-macro 0x4081898f wsa_macro_set_spkr_mode +EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0x1b4df79d pcm3060_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0x78f4bddc pcm3060_regmap EXPORT_SYMBOL sound/soc/codecs/snd-soc-rt715 0xed2acb24 hda_to_sdw -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x387a70b4 tlv320aic23_regmap -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x579f7349 tlv320aic23_probe -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x4e9b9f64 aic32x4_regmap_config -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x6693fc3d aic32x4_probe -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x6cbd2119 aic32x4_remove -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic3x 0x4d79b23c aic3x_probe -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic3x 0xeae87b85 aic3x_remove +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x9417bdcd tlv320aic23_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0xcbde4e86 tlv320aic23_regmap +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x34d1009f aic32x4_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x645d04e0 aic32x4_remove +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0xe2835ab5 aic32x4_regmap_config +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic3x 0x98339f17 aic3x_remove +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic3x 0xeabe34c8 aic3x_probe EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x3a195ca9 wcd_mbhc_get_impedance -EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x48ce9eb5 wcd_mbhc_init -EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x7500a861 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 0x8b37905a wcd_mbhc_start +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x8ead8ea2 wcd_mbhc_init +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x9cb9223f wcd_dt_parse_mbhc_data EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0xa5758a49 wcd_mbhc_get_hph_type EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0xd094df47 wcd_mbhc_deinit -EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0xda6878a8 wcd_dt_parse_mbhc_data EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0xe2beca26 wcd_mbhc_stop -EXPORT_SYMBOL sound/soc/snd-soc-core 0xcff57605 snd_soc_alloc_ac97_component -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x0210fc94 snd_sof_suspend -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x093149ee snd_sof_fw_unload -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x0a25c7b8 snd_sof_load_firmware -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x0f49819a sof_mailbox_read -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x11f3999d sof_machine_register -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x13f7f00b snd_sof_load_topology -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x1cd51de6 snd_sof_runtime_suspend +EXPORT_SYMBOL sound/soc/snd-soc-core 0x121a152c snd_soc_alloc_ac97_component +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x00c0f347 sof_fw_ready +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x093bd6c9 sof_dai_get_bclk +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x0bb2be00 snd_sof_pci_update_bits +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x111669ce snd_sof_dsp_update_bits +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x12eb5e3d snd_sof_dsp_mailbox_init +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x14f232e5 snd_sof_device_shutdown +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x15bc5cf0 snd_sof_fw_unload +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x1d1e3508 sof_io_write EXPORT_SYMBOL sound/soc/sof/snd-sof 0x1d22a5ea sof_ipc_tx_message_no_pm -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x22386e71 snd_sof_dsp_mailbox_init -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x229f9027 snd_sof_dsp_update_bits_forced -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x278d6c59 snd_sof_dsp_update_bits64_unlocked -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x34d23470 snd_sof_dsp_update_bits64 -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x39c42c64 snd_sof_parse_module_memcpy -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x407b435c snd_sof_get_status -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x426cd4ce snd_sof_ipc_msgs_rx -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x4471b740 snd_sof_runtime_resume -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x453995c3 snd_sof_device_probe_completed -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x497afb04 snd_sof_load_firmware_raw -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x52c78310 snd_sof_ipc_stream_posn -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x562865c2 sof_dai_get_mclk -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x57d4f034 sof_machine_unregister -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x5fcfe155 snd_sof_ipc_valid -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x60a5105b snd_sof_prepare -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x618551c5 sof_pcm_dai_link_fixup -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x627403b3 snd_sof_dsp_update_bits_unlocked -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x67f8c2a5 snd_sof_device_remove -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x6d22fab8 sof_machine_check -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x73518b61 snd_sof_dsp_panic -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x8062add2 snd_sof_resume -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x84f33db5 snd_sof_create_page_table -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x8936cffc snd_sof_pci_update_bits -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x8bad87e4 sof_io_write64 -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x8f709e09 snd_sof_free_trace -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x9495233d snd_sof_dsp_only_d0i3_compatible_stream_active -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa755043c sof_dai_get_bclk -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa8122ef7 snd_sof_device_shutdown -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa96b75f1 sof_block_read -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb2a7d9c7 snd_sof_ipc_reply -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb451a373 snd_sof_complete -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb594b96e snd_sof_fw_parse_ext_data -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb71b413d snd_sof_trace_notify_for_error -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb7b7f74b snd_sof_device_probe -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb8812da5 snd_sof_dsp_update_bits -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc57084fa snd_sof_init_trace -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc6c9fde2 snd_sof_ipc_init -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xcdac0424 snd_sof_ipc_free -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xce0168f5 snd_sof_run_firmware -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xcefa0723 sof_fw_ready +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x282bd5d7 snd_sof_suspend +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x2c274a45 sof_machine_check +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x30f15196 snd_sof_device_probe_completed +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x3f5313dd snd_sof_ipc_set_get_comp_data +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x460a3de5 snd_sof_runtime_resume +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x4d7d35f3 sof_mailbox_read +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x4e2c0e4b snd_sof_ipc_stream_posn +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x5e1d311c snd_sof_create_page_table +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x5efc235a snd_sof_init_trace +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x60af41fb snd_sof_load_firmware_memcpy +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x61677b7c snd_sof_ipc_free +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x65a67be3 snd_sof_ipc_reply +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x69ed35a0 snd_sof_dsp_panic +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x709f82f3 sof_io_write64 +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x76f75c63 snd_sof_load_firmware_raw +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x7bcd5e7f snd_sof_trace_notify_for_error +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x7d9900c7 snd_sof_ipc_valid +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x7e047fca snd_sof_device_remove +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x7e986e7b sof_io_read64 +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x7ffebf81 snd_sof_free_trace +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x83a9576e snd_sof_runtime_idle +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x8818dde1 sof_block_read +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x8b467a59 snd_sof_dsp_update_bits_forced +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x8c076aa4 sof_block_write +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x923a1ef6 sof_io_read +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x92dcd5e1 snd_sof_dsp_update_bits64 +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x96723870 snd_sof_handle_fw_exception +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x9a068446 snd_sof_load_firmware +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa05a06b8 snd_sof_fw_parse_ext_data +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa7816c70 snd_sof_ipc_init +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa792bb1e sof_machine_unregister +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa8cf270f snd_sof_load_topology +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xaa83816c sof_dai_get_mclk +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb2cf1335 sof_mailbox_write +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xbc323e8d snd_sof_dsp_only_d0i3_compatible_stream_active +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc8462e33 snd_sof_dsp_update_bits_unlocked +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc94c183a sof_pcm_dai_link_fixup EXPORT_SYMBOL sound/soc/sof/snd-sof 0xcfdc5f98 sof_ipc_tx_message -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd2c663de sof_mailbox_write -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd7ea1a1c snd_sof_runtime_idle -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xdafe7aed snd_sof_handle_fw_exception -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xdbd650e9 sof_block_write -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xdc913797 snd_sof_pcm_period_elapsed -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xe37c8b9d snd_sof_load_firmware_memcpy -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xee452056 sof_io_read64 -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf34ad2ed snd_sof_release_trace -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf5fc2242 sof_io_read -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf888fdd0 sof_io_write -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xfc9d580f snd_sof_ipc_set_get_comp_data -EXPORT_SYMBOL sound/soundcore 0x591af6f3 register_sound_special +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd7fb2ef5 snd_sof_prepare +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xdc776abb snd_sof_parse_module_memcpy +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xdda07afb snd_sof_complete +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xddc0cd3d snd_sof_pcm_period_elapsed +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xe16bbde7 snd_sof_get_status +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xe58f42db snd_sof_resume +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xe7cc600f snd_sof_dsp_update_bits64_unlocked +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xe9e94d03 snd_sof_runtime_suspend +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf3c83136 snd_sof_ipc_msgs_rx +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf3ff9e5e snd_sof_release_trace +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf61a137c snd_sof_run_firmware +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xfa071979 sof_machine_register +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xfe20b878 snd_sof_device_probe +EXPORT_SYMBOL sound/soundcore 0x1c5f86f0 sound_class +EXPORT_SYMBOL sound/soundcore 0x767d9fcc register_sound_special_device EXPORT_SYMBOL sound/soundcore 0x7afc9d8a unregister_sound_mixer -EXPORT_SYMBOL sound/soundcore 0x9323a420 register_sound_special_device +EXPORT_SYMBOL sound/soundcore 0x87607ce8 register_sound_special EXPORT_SYMBOL sound/soundcore 0x99c95fa5 unregister_sound_special -EXPORT_SYMBOL sound/soundcore 0xcc73e712 sound_class EXPORT_SYMBOL sound/soundcore 0xcd083b10 unregister_sound_dsp -EXPORT_SYMBOL sound/soundcore 0xe774f3e8 register_sound_mixer -EXPORT_SYMBOL sound/soundcore 0xf23d6a0d register_sound_dsp -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x09975629 snd_emux_free -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x29af0922 snd_emux_unlock_voice -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x3ade8b4b snd_emux_lock_voice -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x47923b3b snd_emux_terminate_all +EXPORT_SYMBOL sound/soundcore 0xee875b0e register_sound_dsp +EXPORT_SYMBOL sound/soundcore 0xfb02e485 register_sound_mixer +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x0f5cb01b snd_emux_register EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x655cb202 snd_sf_linear_to_log -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x9734fa59 snd_emux_register -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xe8a4d194 snd_emux_new +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x7f9b60b4 snd_emux_lock_voice +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x864e33ce snd_emux_free +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xbe9e1bfd snd_emux_unlock_voice +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xdc849ea4 snd_emux_new +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xfc57a1df snd_emux_terminate_all 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 @@ -6098,5668 +6114,5664 @@ 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 0x4c403be0 __snd_usbmidi_create EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x63343b1d snd_usbmidi_input_stop EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xb2af19e1 snd_usbmidi_resume EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xbed43a41 snd_usbmidi_suspend EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xd9d2bb03 snd_usbmidi_disconnect -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xfd8a92f2 __snd_usbmidi_create -EXPORT_SYMBOL vmlinux 0x000fcdf6 tcp_md5_do_add EXPORT_SYMBOL vmlinux 0x00148653 vsnprintf -EXPORT_SYMBOL vmlinux 0x002643f6 neigh_lookup -EXPORT_SYMBOL vmlinux 0x0030a958 cdev_add -EXPORT_SYMBOL vmlinux 0x0032c4f6 dm_io -EXPORT_SYMBOL vmlinux 0x003ccefb __devm_request_region -EXPORT_SYMBOL vmlinux 0x00591e9c ip_mc_check_igmp -EXPORT_SYMBOL vmlinux 0x00718e8f blk_pre_runtime_resume -EXPORT_SYMBOL vmlinux 0x0073e84a nobh_truncate_page -EXPORT_SYMBOL vmlinux 0x00938d0b inet_protos +EXPORT_SYMBOL vmlinux 0x001b846f inet_sendpage +EXPORT_SYMBOL vmlinux 0x001c8f6d xfrm_lookup +EXPORT_SYMBOL vmlinux 0x00314ee6 __serio_register_port +EXPORT_SYMBOL vmlinux 0x0039a5c8 msi_desc_to_pci_dev +EXPORT_SYMBOL vmlinux 0x003f29c1 netdev_lower_state_changed +EXPORT_SYMBOL vmlinux 0x0040e71f skb_copy_datagram_iter +EXPORT_SYMBOL vmlinux 0x006a1195 qdisc_put +EXPORT_SYMBOL vmlinux 0x008312aa tcp_add_backlog +EXPORT_SYMBOL vmlinux 0x00850d78 tcp_time_wait EXPORT_SYMBOL vmlinux 0x00a4b044 amd_iommu_deactivate_guest_mode +EXPORT_SYMBOL vmlinux 0x00b4d10a bioset_init_from_src EXPORT_SYMBOL vmlinux 0x00b4e615 posix_acl_equiv_mode EXPORT_SYMBOL vmlinux 0x00d7e722 vme_lm_count -EXPORT_SYMBOL vmlinux 0x00e15593 blk_queue_alignment_offset +EXPORT_SYMBOL vmlinux 0x00e2454b reuseport_stop_listen_sock +EXPORT_SYMBOL vmlinux 0x00f406e3 pci_prepare_to_sleep +EXPORT_SYMBOL vmlinux 0x00f46902 udp_prot EXPORT_SYMBOL vmlinux 0x01000e51 schedule -EXPORT_SYMBOL vmlinux 0x010c1529 skb_orphan_partial +EXPORT_SYMBOL vmlinux 0x0112ea30 generic_cont_expand_simple EXPORT_SYMBOL vmlinux 0x011bab86 prepare_creds +EXPORT_SYMBOL vmlinux 0x0127466f generic_shutdown_super +EXPORT_SYMBOL vmlinux 0x01278b67 tcp_v4_mtu_reduced +EXPORT_SYMBOL vmlinux 0x012dee77 module_refcount EXPORT_SYMBOL vmlinux 0x013f26ae dma_fence_get_stub -EXPORT_SYMBOL vmlinux 0x01408db6 d_obtain_alias -EXPORT_SYMBOL vmlinux 0x01410d22 xfrm_state_add -EXPORT_SYMBOL vmlinux 0x0141ac26 iw_handler_set_spy -EXPORT_SYMBOL vmlinux 0x0147148e end_page_private_2 EXPORT_SYMBOL vmlinux 0x0147812c kblockd_mod_delayed_work_on +EXPORT_SYMBOL vmlinux 0x014fc2eb devm_devfreq_register_notifier EXPORT_SYMBOL vmlinux 0x015af7f4 system_state -EXPORT_SYMBOL vmlinux 0x016e2024 pm860x_reg_read +EXPORT_SYMBOL vmlinux 0x015e1e4b __wait_on_buffer +EXPORT_SYMBOL vmlinux 0x015f78f0 dev_get_iflink EXPORT_SYMBOL vmlinux 0x01757935 rdmacg_register_device -EXPORT_SYMBOL vmlinux 0x01773cc3 xsk_tx_peek_desc +EXPORT_SYMBOL vmlinux 0x01768976 request_key_rcu EXPORT_SYMBOL vmlinux 0x017de3d5 nr_cpu_ids -EXPORT_SYMBOL vmlinux 0x0184d7e0 security_old_inode_init_security +EXPORT_SYMBOL vmlinux 0x0183a9ac blk_rq_map_user +EXPORT_SYMBOL vmlinux 0x0183db6c kmem_cache_size EXPORT_SYMBOL vmlinux 0x018574a1 mb_cache_entry_delete EXPORT_SYMBOL vmlinux 0x0188cd88 vme_alloc_consistent +EXPORT_SYMBOL vmlinux 0x0192180b iov_iter_pipe EXPORT_SYMBOL vmlinux 0x0199c3bd ethtool_intersect_link_masks -EXPORT_SYMBOL vmlinux 0x01aec2ab mdio_bus_type -EXPORT_SYMBOL vmlinux 0x01b3a183 submit_bio_wait +EXPORT_SYMBOL vmlinux 0x01a1e635 genphy_setup_forced EXPORT_SYMBOL vmlinux 0x01b6865c xa_get_mark +EXPORT_SYMBOL vmlinux 0x01b82f92 mmc_set_blocklen EXPORT_SYMBOL vmlinux 0x01bf55fc paddr_vmcoreinfo_note -EXPORT_SYMBOL vmlinux 0x01eb7c25 iov_iter_pipe +EXPORT_SYMBOL vmlinux 0x01c1afa8 bio_copy_data +EXPORT_SYMBOL vmlinux 0x0209f3a7 secure_ipv6_port_ephemeral EXPORT_SYMBOL vmlinux 0x020dbf27 bitmap_alloc -EXPORT_SYMBOL vmlinux 0x021043ed __phy_read_mmd +EXPORT_SYMBOL vmlinux 0x020edc09 __pskb_pull_tail EXPORT_SYMBOL vmlinux 0x02124474 ip_send_check -EXPORT_SYMBOL vmlinux 0x021a5028 ip6_xmit EXPORT_SYMBOL vmlinux 0x0228925f iowrite64_hi_lo EXPORT_SYMBOL vmlinux 0x02293ac3 dma_fence_chain_ops -EXPORT_SYMBOL vmlinux 0x02322200 tcf_generic_walker +EXPORT_SYMBOL vmlinux 0x02319352 inet_dgram_connect +EXPORT_SYMBOL vmlinux 0x02371725 __alloc_disk_node EXPORT_SYMBOL vmlinux 0x0237b57a arch_unregister_cpu -EXPORT_SYMBOL vmlinux 0x02390aa4 security_sb_remount -EXPORT_SYMBOL vmlinux 0x023ba1ec blk_mq_end_request EXPORT_SYMBOL vmlinux 0x023d1b90 wrmsr_on_cpu EXPORT_SYMBOL vmlinux 0x0248efd3 kstrtobool_from_user -EXPORT_SYMBOL vmlinux 0x024933fb blk_integrity_compare -EXPORT_SYMBOL vmlinux 0x02567664 eisa_bus_type -EXPORT_SYMBOL vmlinux 0x0264cba6 arp_create -EXPORT_SYMBOL vmlinux 0x02664e36 ip_sock_set_recverr EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues -EXPORT_SYMBOL vmlinux 0x0277de64 fb_is_primary_device -EXPORT_SYMBOL vmlinux 0x027b2e86 scsi_is_host_device -EXPORT_SYMBOL vmlinux 0x028bf3ce security_dentry_init_security +EXPORT_SYMBOL vmlinux 0x028a7bd1 phy_init_hw +EXPORT_SYMBOL vmlinux 0x028b51d7 vga_set_legacy_decoding +EXPORT_SYMBOL vmlinux 0x02951c18 kmem_cache_create EXPORT_SYMBOL vmlinux 0x0296695f refcount_warn_saturate -EXPORT_SYMBOL vmlinux 0x02a18c74 nf_conntrack_destroy -EXPORT_SYMBOL vmlinux 0x02b54153 write_inode_now +EXPORT_SYMBOL vmlinux 0x02a6bec3 phy_register_fixup_for_uid EXPORT_SYMBOL vmlinux 0x02b8ab42 sg_copy_to_buffer -EXPORT_SYMBOL vmlinux 0x02bf5e18 bio_reset EXPORT_SYMBOL vmlinux 0x02c656b6 acpi_enable_all_runtime_gpes -EXPORT_SYMBOL vmlinux 0x02cbb563 skb_ensure_writable -EXPORT_SYMBOL vmlinux 0x02cec435 find_get_pages_range_tag -EXPORT_SYMBOL vmlinux 0x02d5a8c5 pci_alloc_dev -EXPORT_SYMBOL vmlinux 0x02d64ad2 inet_csk_init_xmit_timers -EXPORT_SYMBOL vmlinux 0x02dc390d __inc_node_page_state -EXPORT_SYMBOL vmlinux 0x02ebea7d param_ops_uint -EXPORT_SYMBOL vmlinux 0x02fb00bf dns_query -EXPORT_SYMBOL vmlinux 0x02fd6fd4 flow_rule_alloc -EXPORT_SYMBOL vmlinux 0x030bb283 submit_bio_noacct -EXPORT_SYMBOL vmlinux 0x0314853c scm_detach_fds -EXPORT_SYMBOL vmlinux 0x0314dbcf dev_driver_string +EXPORT_SYMBOL vmlinux 0x02cfd9ef devm_backlight_device_register +EXPORT_SYMBOL vmlinux 0x02ea5021 fwnode_irq_get +EXPORT_SYMBOL vmlinux 0x02fe82d7 netif_rx +EXPORT_SYMBOL vmlinux 0x031508d8 inode_set_bytes +EXPORT_SYMBOL vmlinux 0x031e6886 blk_mq_run_hw_queue +EXPORT_SYMBOL vmlinux 0x031e91f8 tcp_md5_hash_skb_data +EXPORT_SYMBOL vmlinux 0x0324cc99 fs_param_is_blockdev EXPORT_SYMBOL vmlinux 0x0334795d icst307_s2div EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl -EXPORT_SYMBOL vmlinux 0x0341f28d elv_rb_find -EXPORT_SYMBOL vmlinux 0x03428e69 xfrm4_protocol_register -EXPORT_SYMBOL vmlinux 0x0349c212 xfrm_unregister_km -EXPORT_SYMBOL vmlinux 0x035832e3 scsi_add_device +EXPORT_SYMBOL vmlinux 0x03391905 migrate_vma_setup +EXPORT_SYMBOL vmlinux 0x034f06b6 mmc_cqe_post_req +EXPORT_SYMBOL vmlinux 0x035c73fd sock_rfree +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 0x0367b089 jbd2_journal_abort EXPORT_SYMBOL vmlinux 0x037a0cba kfree EXPORT_SYMBOL vmlinux 0x03815f35 ledtrig_disk_activity -EXPORT_SYMBOL vmlinux 0x0385227b phy_write_mmd -EXPORT_SYMBOL vmlinux 0x03972367 tty_chars_in_buffer -EXPORT_SYMBOL vmlinux 0x0397a4db tcp_time_wait +EXPORT_SYMBOL vmlinux 0x0381662c d_alloc_parallel EXPORT_SYMBOL vmlinux 0x0397edd5 fb_edid_to_monspecs -EXPORT_SYMBOL vmlinux 0x039ab6a3 seq_vprintf -EXPORT_SYMBOL vmlinux 0x03a17059 tcf_block_get_ext -EXPORT_SYMBOL vmlinux 0x03aca171 inet_csk_destroy_sock -EXPORT_SYMBOL vmlinux 0x03b1e5fc md_wakeup_thread -EXPORT_SYMBOL vmlinux 0x03becfbc __blk_mq_end_request +EXPORT_SYMBOL vmlinux 0x03a40164 vm_map_pages_zero +EXPORT_SYMBOL vmlinux 0x03aa895c kernel_sock_shutdown +EXPORT_SYMBOL vmlinux 0x03b260f6 bio_kmalloc +EXPORT_SYMBOL vmlinux 0x03b9ef27 unregister_netdev EXPORT_SYMBOL vmlinux 0x03bf0e5a acpi_walk_resource_buffer -EXPORT_SYMBOL vmlinux 0x03ca029e sock_alloc_send_skb -EXPORT_SYMBOL vmlinux 0x03cc16fa scsi_dma_unmap +EXPORT_SYMBOL vmlinux 0x03cfe778 pci_release_regions +EXPORT_SYMBOL vmlinux 0x03dd6e8c done_path_create +EXPORT_SYMBOL vmlinux 0x03e4d581 blkdev_issue_zeroout EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram -EXPORT_SYMBOL vmlinux 0x0402f58e phy_drivers_register -EXPORT_SYMBOL vmlinux 0x041d4cd1 touch_atime +EXPORT_SYMBOL vmlinux 0x04037085 pcim_enable_device +EXPORT_SYMBOL vmlinux 0x042887ed devfreq_monitor_resume +EXPORT_SYMBOL vmlinux 0x042ff3c1 md_write_inc EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator -EXPORT_SYMBOL vmlinux 0x0452ed8f find_vma -EXPORT_SYMBOL vmlinux 0x04622b30 put_fs_context +EXPORT_SYMBOL vmlinux 0x046dd396 unregister_qdisc EXPORT_SYMBOL vmlinux 0x0474edef kstrtou16_from_user -EXPORT_SYMBOL vmlinux 0x04817a5c free_task -EXPORT_SYMBOL vmlinux 0x04849e4b jbd2_journal_check_available_features +EXPORT_SYMBOL vmlinux 0x04796361 kern_unmount +EXPORT_SYMBOL vmlinux 0x047b0839 dev_get_by_index EXPORT_SYMBOL vmlinux 0x0484c6c4 acpi_enter_sleep_state_prep -EXPORT_SYMBOL vmlinux 0x048522b0 task_work_add EXPORT_SYMBOL vmlinux 0x04863e28 hdmi_audio_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0x049307b0 cad_pid -EXPORT_SYMBOL vmlinux 0x049c6f4f fscrypt_encrypt_pagecache_blocks -EXPORT_SYMBOL vmlinux 0x04b3ea16 stop_tty -EXPORT_SYMBOL vmlinux 0x04bdd2e4 netlink_rcv_skb +EXPORT_SYMBOL vmlinux 0x0488541a eth_validate_addr +EXPORT_SYMBOL vmlinux 0x049ded71 uart_add_one_port EXPORT_SYMBOL vmlinux 0x04c62fd7 __memset -EXPORT_SYMBOL vmlinux 0x04cd0cf3 dma_mmap_attrs -EXPORT_SYMBOL vmlinux 0x04d37b3c skb_eth_pop +EXPORT_SYMBOL vmlinux 0x04c83dcd read_cache_pages EXPORT_SYMBOL vmlinux 0x04d8c750 release_perfctr_nmi EXPORT_SYMBOL vmlinux 0x04d9bf4e blk_set_stacking_limits EXPORT_SYMBOL vmlinux 0x04ea5d10 ksize -EXPORT_SYMBOL vmlinux 0x04f446c5 fb_blank -EXPORT_SYMBOL vmlinux 0x04f9a1f6 pci_reenable_device EXPORT_SYMBOL vmlinux 0x050877b9 dmi_first_match -EXPORT_SYMBOL vmlinux 0x051bb0be tcf_action_exec +EXPORT_SYMBOL vmlinux 0x05103521 mipi_dsi_dcs_get_power_mode EXPORT_SYMBOL vmlinux 0x051d58e8 dma_fence_wait_any_timeout +EXPORT_SYMBOL vmlinux 0x05226e16 bio_add_page EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch +EXPORT_SYMBOL vmlinux 0x052a49c1 __mmap_lock_do_trace_start_locking EXPORT_SYMBOL vmlinux 0x054496b4 schedule_timeout_interruptible EXPORT_SYMBOL vmlinux 0x055e77e8 jiffies_64 -EXPORT_SYMBOL vmlinux 0x0566731e netdev_has_any_upper_dev -EXPORT_SYMBOL vmlinux 0x05736297 security_unix_may_send -EXPORT_SYMBOL vmlinux 0x0580fc57 sock_set_mark -EXPORT_SYMBOL vmlinux 0x0581bf9f agp_bridge -EXPORT_SYMBOL vmlinux 0x05850a43 dput -EXPORT_SYMBOL vmlinux 0x0594ecb1 devm_clk_get +EXPORT_SYMBOL vmlinux 0x05615cd8 thread_group_exited +EXPORT_SYMBOL vmlinux 0x0561efda dev_mc_sync_multiple +EXPORT_SYMBOL vmlinux 0x0584b357 nd_region_acquire_lane +EXPORT_SYMBOL vmlinux 0x058c9502 pci_select_bars EXPORT_SYMBOL vmlinux 0x059e1482 __traceiter_dma_fence_emit -EXPORT_SYMBOL vmlinux 0x05a2f8fc path_is_mountpoint -EXPORT_SYMBOL vmlinux 0x05b63152 phy_support_asym_pause -EXPORT_SYMBOL vmlinux 0x05ccc501 kthread_stop -EXPORT_SYMBOL vmlinux 0x06019741 neigh_xmit +EXPORT_SYMBOL vmlinux 0x05aceb36 xfrm_find_acq +EXPORT_SYMBOL vmlinux 0x05baab09 file_update_time +EXPORT_SYMBOL vmlinux 0x05deddfb xfrm_state_add +EXPORT_SYMBOL vmlinux 0x05e31932 rproc_mem_entry_init +EXPORT_SYMBOL vmlinux 0x05eec3bc fs_param_is_s32 EXPORT_SYMBOL vmlinux 0x06052f8d __memmove -EXPORT_SYMBOL vmlinux 0x060ba668 misc_deregister +EXPORT_SYMBOL vmlinux 0x0605c93f try_lookup_one_len EXPORT_SYMBOL vmlinux 0x060ba97c gen_pool_free_owner EXPORT_SYMBOL vmlinux 0x061651be strcat -EXPORT_SYMBOL vmlinux 0x061d91fc agp_create_memory -EXPORT_SYMBOL vmlinux 0x0633b468 d_instantiate +EXPORT_SYMBOL vmlinux 0x06297603 generic_file_write_iter EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user -EXPORT_SYMBOL vmlinux 0x0640812a pci_find_next_bus -EXPORT_SYMBOL vmlinux 0x0643837c register_qdisc -EXPORT_SYMBOL vmlinux 0x064b03ea vga_switcheroo_init_domain_pm_ops -EXPORT_SYMBOL vmlinux 0x0658d4ba pci_enable_wake +EXPORT_SYMBOL vmlinux 0x0642568e dev_uc_del EXPORT_SYMBOL vmlinux 0x0668b595 _kstrtoul -EXPORT_SYMBOL vmlinux 0x068d1d45 iov_iter_advance -EXPORT_SYMBOL vmlinux 0x069129f5 __xfrm_route_forward +EXPORT_SYMBOL vmlinux 0x068b26b4 ip6_mtu EXPORT_SYMBOL vmlinux 0x06a86bc1 iowrite16 -EXPORT_SYMBOL vmlinux 0x06ae3c6f sync_inode_metadata -EXPORT_SYMBOL vmlinux 0x06b9e1e3 fb_find_mode EXPORT_SYMBOL vmlinux 0x06bd88b5 ucs2_strnlen -EXPORT_SYMBOL vmlinux 0x06c03058 serial8250_do_pm -EXPORT_SYMBOL vmlinux 0x06c28e8f __tcf_em_tree_match EXPORT_SYMBOL vmlinux 0x06c8f2de slhc_compress -EXPORT_SYMBOL vmlinux 0x06dc2cea kill_fasync -EXPORT_SYMBOL vmlinux 0x06e31897 fput -EXPORT_SYMBOL vmlinux 0x06f0ac3c tcf_idr_search -EXPORT_SYMBOL vmlinux 0x06f696bf lock_two_nondirectories -EXPORT_SYMBOL vmlinux 0x06f868c6 try_module_get -EXPORT_SYMBOL vmlinux 0x06fa2667 dquot_claim_space_nodirty -EXPORT_SYMBOL vmlinux 0x0700f325 find_get_pages_contig -EXPORT_SYMBOL vmlinux 0x070c960a seg6_push_hmac -EXPORT_SYMBOL vmlinux 0x07199f1a serio_open +EXPORT_SYMBOL vmlinux 0x06e6544c ip_options_rcv_srr +EXPORT_SYMBOL vmlinux 0x06fc4490 dentry_open +EXPORT_SYMBOL vmlinux 0x071e1bb9 dquot_claim_space_nodirty +EXPORT_SYMBOL vmlinux 0x071eb054 skb_headers_offset_update +EXPORT_SYMBOL vmlinux 0x072323e6 seq_read_iter EXPORT_SYMBOL vmlinux 0x072f901c vme_master_rmw -EXPORT_SYMBOL vmlinux 0x073e813f release_sock +EXPORT_SYMBOL vmlinux 0x0745117a devm_backlight_device_unregister EXPORT_SYMBOL vmlinux 0x0745a981 xa_erase -EXPORT_SYMBOL vmlinux 0x0765c550 dcb_getapp -EXPORT_SYMBOL vmlinux 0x076a4587 sk_net_capable -EXPORT_SYMBOL vmlinux 0x076c6028 inet_pton_with_scope -EXPORT_SYMBOL vmlinux 0x079b799b __getblk_gfp -EXPORT_SYMBOL vmlinux 0x079b93ab vme_slot_num +EXPORT_SYMBOL vmlinux 0x074afd02 dev_uc_add_excl +EXPORT_SYMBOL vmlinux 0x07563c64 buffer_migrate_page EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap -EXPORT_SYMBOL vmlinux 0x07ac219d sock_no_ioctl -EXPORT_SYMBOL vmlinux 0x07c0fe90 tty_port_close_end -EXPORT_SYMBOL vmlinux 0x07c89279 param_get_ulong -EXPORT_SYMBOL vmlinux 0x07ca4c9d devm_clk_put +EXPORT_SYMBOL vmlinux 0x07ac69f7 ptp_schedule_worker +EXPORT_SYMBOL vmlinux 0x07bee606 __neigh_create EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit EXPORT_SYMBOL vmlinux 0x07ceeac9 panic_notifier_list -EXPORT_SYMBOL vmlinux 0x07f3e207 xfrm_policy_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x07de6afe ptp_clock_unregister +EXPORT_SYMBOL vmlinux 0x07efdd4f generic_block_bmap +EXPORT_SYMBOL vmlinux 0x07f1ec52 dcb_ieee_getapp_default_prio_mask EXPORT_SYMBOL vmlinux 0x07f57478 pci_unmap_iospace EXPORT_SYMBOL vmlinux 0x0800473f __cond_resched EXPORT_SYMBOL vmlinux 0x0805f2c8 ecryptfs_get_auth_tok_key -EXPORT_SYMBOL vmlinux 0x08146d47 inode_dio_wait +EXPORT_SYMBOL vmlinux 0x08099b55 mmc_sw_reset +EXPORT_SYMBOL vmlinux 0x08120846 sock_wake_async +EXPORT_SYMBOL vmlinux 0x0815df82 mroute6_is_socket EXPORT_SYMBOL vmlinux 0x08162c74 free_bucket_spinlocks +EXPORT_SYMBOL vmlinux 0x081e5257 __inet_stream_connect EXPORT_SYMBOL vmlinux 0x08249512 iwe_stream_add_point -EXPORT_SYMBOL vmlinux 0x0829704d genlmsg_multicast_allns EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses +EXPORT_SYMBOL vmlinux 0x082d7446 tc_setup_cb_destroy +EXPORT_SYMBOL vmlinux 0x083579f0 skb_kill_datagram EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister -EXPORT_SYMBOL vmlinux 0x08407b7c rproc_elf_load_segments +EXPORT_SYMBOL vmlinux 0x08623c3b new_inode +EXPORT_SYMBOL vmlinux 0x0877430c param_get_charp EXPORT_SYMBOL vmlinux 0x0882a449 security_xfrm_policy_alloc -EXPORT_SYMBOL vmlinux 0x088f30ea fscrypt_ioctl_get_policy -EXPORT_SYMBOL vmlinux 0x08ad07d1 sock_recv_errqueue -EXPORT_SYMBOL vmlinux 0x08af0075 buffer_migrate_page -EXPORT_SYMBOL vmlinux 0x08c8920b mr_table_alloc -EXPORT_SYMBOL vmlinux 0x08e27642 unlock_page -EXPORT_SYMBOL vmlinux 0x08e511b1 xfrm_policy_insert -EXPORT_SYMBOL vmlinux 0x08e89fb4 d_set_fallthru -EXPORT_SYMBOL vmlinux 0x08f181c8 pci_enable_device_mem -EXPORT_SYMBOL vmlinux 0x08f25ddf blk_queue_flag_set +EXPORT_SYMBOL vmlinux 0x088c34c4 skb_dequeue_tail +EXPORT_SYMBOL vmlinux 0x08901491 tcp_make_synack +EXPORT_SYMBOL vmlinux 0x0892a69c twl6040_get_vibralr_status +EXPORT_SYMBOL vmlinux 0x0898cbfc __SCK__tp_func_spi_transfer_start +EXPORT_SYMBOL vmlinux 0x08b9518b inet_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0x08b9d861 ipv6_dev_mc_dec +EXPORT_SYMBOL vmlinux 0x08be3082 tcp_sock_set_quickack +EXPORT_SYMBOL vmlinux 0x08d24fd6 tcp_rtx_synack +EXPORT_SYMBOL vmlinux 0x08e970b1 bio_integrity_add_page +EXPORT_SYMBOL vmlinux 0x08ee7235 nvdimm_namespace_capacity +EXPORT_SYMBOL vmlinux 0x08fdce0b ipv6_find_hdr +EXPORT_SYMBOL vmlinux 0x08fe3c98 netdev_lower_get_next_private +EXPORT_SYMBOL vmlinux 0x091924ff netdev_set_num_tc +EXPORT_SYMBOL vmlinux 0x091992e1 uart_write_wakeup +EXPORT_SYMBOL vmlinux 0x091b981d mmc_card_alternative_gpt_sector EXPORT_SYMBOL vmlinux 0x092e26bf acpi_remove_address_space_handler -EXPORT_SYMBOL vmlinux 0x092ec188 phy_attach EXPORT_SYMBOL vmlinux 0x093712e5 acpi_purge_cached_objects -EXPORT_SYMBOL vmlinux 0x094343f1 mmc_cqe_post_req -EXPORT_SYMBOL vmlinux 0x096728f4 neigh_app_ns +EXPORT_SYMBOL vmlinux 0x0942305f tty_port_hangup +EXPORT_SYMBOL vmlinux 0x09425b91 simple_unlink +EXPORT_SYMBOL vmlinux 0x09483e69 cdrom_release +EXPORT_SYMBOL vmlinux 0x0955dcd3 device_match_acpi_dev +EXPORT_SYMBOL vmlinux 0x095b5105 __fib6_flush_trees +EXPORT_SYMBOL vmlinux 0x0967d27e tcp_v4_md5_hash_skb +EXPORT_SYMBOL vmlinux 0x0975a7c1 rproc_coredump_add_custom_segment EXPORT_SYMBOL vmlinux 0x09769037 dmt_modes EXPORT_SYMBOL vmlinux 0x097af021 neigh_proc_dointvec_jiffies -EXPORT_SYMBOL vmlinux 0x098b17f4 dev_load +EXPORT_SYMBOL vmlinux 0x097d2758 __sk_queue_drop_skb +EXPORT_SYMBOL vmlinux 0x0989b317 thermal_zone_device_critical EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap EXPORT_SYMBOL vmlinux 0x0998cc3c hdmi_infoframe_unpack -EXPORT_SYMBOL vmlinux 0x09a23210 cros_ec_get_host_event -EXPORT_SYMBOL vmlinux 0x09a3c999 ethtool_rx_flow_rule_create -EXPORT_SYMBOL vmlinux 0x09a6ee11 simple_dir_inode_operations -EXPORT_SYMBOL vmlinux 0x09a752ec seg6_hmac_info_add -EXPORT_SYMBOL vmlinux 0x09a7bbe4 rproc_boot -EXPORT_SYMBOL vmlinux 0x09c9cd18 phy_ethtool_ksettings_get +EXPORT_SYMBOL vmlinux 0x09bbb336 agp_backend_release +EXPORT_SYMBOL vmlinux 0x09be47f5 napi_gro_receive EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions +EXPORT_SYMBOL vmlinux 0x09d72bec phy_get_c45_ids EXPORT_SYMBOL vmlinux 0x09da0ba4 xa_set_mark -EXPORT_SYMBOL vmlinux 0x09da21dd unregister_md_personality -EXPORT_SYMBOL vmlinux 0x09dc7ec1 acpi_bus_get_device +EXPORT_SYMBOL vmlinux 0x09de6506 neigh_parms_alloc EXPORT_SYMBOL vmlinux 0x0a0ebc08 __xa_cmpxchg EXPORT_SYMBOL vmlinux 0x0a1dbc76 tcp_rx_skb_cache_key EXPORT_SYMBOL vmlinux 0x0a2a0bce nla_append -EXPORT_SYMBOL vmlinux 0x0a2a79c1 inet_addr_type_table -EXPORT_SYMBOL vmlinux 0x0a52988c netdev_lower_get_next_private +EXPORT_SYMBOL vmlinux 0x0a4e5941 mipi_dsi_dcs_soft_reset +EXPORT_SYMBOL vmlinux 0x0a4f674c key_validate +EXPORT_SYMBOL vmlinux 0x0a586311 phy_device_register +EXPORT_SYMBOL vmlinux 0x0a5a39a4 kernel_recvmsg +EXPORT_SYMBOL vmlinux 0x0a62c1e4 d_mark_dontcache EXPORT_SYMBOL vmlinux 0x0a770832 register_memory_notifier -EXPORT_SYMBOL vmlinux 0x0a8b6c47 max8998_bulk_read EXPORT_SYMBOL vmlinux 0x0a92ec74 boot_cpu_data -EXPORT_SYMBOL vmlinux 0x0a962223 flow_rule_match_enc_control -EXPORT_SYMBOL vmlinux 0x0a9c4116 tcf_idr_cleanup +EXPORT_SYMBOL vmlinux 0x0a9b43ce phy_free_interrupt +EXPORT_SYMBOL vmlinux 0x0a9ff11a seq_dentry +EXPORT_SYMBOL vmlinux 0x0aa01b60 nvdimm_bus_lock EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq EXPORT_SYMBOL vmlinux 0x0aaccc92 pci_remap_iospace -EXPORT_SYMBOL vmlinux 0x0aca2e6d devfreq_recommended_opp EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all -EXPORT_SYMBOL vmlinux 0x0ad6a133 pci_enable_msi -EXPORT_SYMBOL vmlinux 0x0adbdcaa skb_clone -EXPORT_SYMBOL vmlinux 0x0adf81f2 sk_reset_timer -EXPORT_SYMBOL vmlinux 0x0ae3e287 key_move -EXPORT_SYMBOL vmlinux 0x0af71e75 inet_proto_csum_replace_by_diff +EXPORT_SYMBOL vmlinux 0x0ae14a66 register_shrinker EXPORT_SYMBOL vmlinux 0x0b19b445 ioread8 EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user -EXPORT_SYMBOL vmlinux 0x0b23780b ptp_find_pin EXPORT_SYMBOL vmlinux 0x0b26b8c8 acpi_run_osc EXPORT_SYMBOL vmlinux 0x0b290ada dma_fence_chain_walk -EXPORT_SYMBOL vmlinux 0x0b539d98 rproc_report_crash +EXPORT_SYMBOL vmlinux 0x0b2bebfc dquot_drop +EXPORT_SYMBOL vmlinux 0x0b2c8752 dquot_get_next_id +EXPORT_SYMBOL vmlinux 0x0b452caf tcp_simple_retransmit +EXPORT_SYMBOL vmlinux 0x0b58a3fc account_page_redirty EXPORT_SYMBOL vmlinux 0x0b637410 cr4_update_irqsoff -EXPORT_SYMBOL vmlinux 0x0b671caf dev_get_by_index_rcu -EXPORT_SYMBOL vmlinux 0x0b6e0875 amd_iommu_domain_set_gcr3 -EXPORT_SYMBOL vmlinux 0x0b6f5ee2 xfrm_if_register_cb -EXPORT_SYMBOL vmlinux 0x0b70a669 lookup_one_len_unlocked +EXPORT_SYMBOL vmlinux 0x0b6f01c7 __mark_inode_dirty EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol -EXPORT_SYMBOL vmlinux 0x0b790fd6 cros_ec_check_result -EXPORT_SYMBOL vmlinux 0x0b809ca0 from_kuid -EXPORT_SYMBOL vmlinux 0x0b885a33 request_key_rcu -EXPORT_SYMBOL vmlinux 0x0b980ed3 get_ipc_ns_exported +EXPORT_SYMBOL vmlinux 0x0b79032b seq_lseek +EXPORT_SYMBOL vmlinux 0x0b7b91b2 max8925_bulk_write +EXPORT_SYMBOL vmlinux 0x0b94deba kmem_cache_free_bulk EXPORT_SYMBOL vmlinux 0x0ba0b938 vm_brk EXPORT_SYMBOL vmlinux 0x0bbfa78c set_security_override_from_ctx EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type -EXPORT_SYMBOL vmlinux 0x0be33afa kernel_param_lock -EXPORT_SYMBOL vmlinux 0x0bf09255 pci_get_device EXPORT_SYMBOL vmlinux 0x0bfc1d1a check_zeroed_user -EXPORT_SYMBOL vmlinux 0x0bffe2df nd_dax_probe +EXPORT_SYMBOL vmlinux 0x0c018434 fasync_helper +EXPORT_SYMBOL vmlinux 0x0c022331 uart_suspend_port EXPORT_SYMBOL vmlinux 0x0c0f79af ZSTD_getDictID_fromFrame -EXPORT_SYMBOL vmlinux 0x0c1c84a0 blk_mq_queue_stopped -EXPORT_SYMBOL vmlinux 0x0c1dbfbd unregister_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x0c1cbd13 __dev_set_mtu EXPORT_SYMBOL vmlinux 0x0c25ec48 secure_tcpv6_seq +EXPORT_SYMBOL vmlinux 0x0c29725c noop_qdisc +EXPORT_SYMBOL vmlinux 0x0c33a99c seg6_hmac_info_del EXPORT_SYMBOL vmlinux 0x0c3690fc _raw_spin_lock_bh -EXPORT_SYMBOL vmlinux 0x0c44acd9 skb_find_text -EXPORT_SYMBOL vmlinux 0x0c4f6f89 __set_page_dirty_buffers -EXPORT_SYMBOL vmlinux 0x0c51f898 sock_no_accept -EXPORT_SYMBOL vmlinux 0x0c561005 pcie_port_service_register +EXPORT_SYMBOL vmlinux 0x0c54536b netdev_lower_get_next EXPORT_SYMBOL vmlinux 0x0c575719 __cond_resched_rwlock_write EXPORT_SYMBOL vmlinux 0x0c6bdc3f vme_master_read -EXPORT_SYMBOL vmlinux 0x0c8af749 xfrm_lookup -EXPORT_SYMBOL vmlinux 0x0cabd366 tty_unlock +EXPORT_SYMBOL vmlinux 0x0c8c62d8 __bforget +EXPORT_SYMBOL vmlinux 0x0c947a66 get_tree_nodev +EXPORT_SYMBOL vmlinux 0x0c9fd908 mdio_device_remove +EXPORT_SYMBOL vmlinux 0x0cb69491 scsi_get_device_flags_keyed +EXPORT_SYMBOL vmlinux 0x0cb8bc5f devfreq_monitor_stop EXPORT_SYMBOL vmlinux 0x0cc4b4b6 crc_ccitt_false +EXPORT_SYMBOL vmlinux 0x0cc8dd75 __skb_try_recv_datagram EXPORT_SYMBOL vmlinux 0x0cd5835b ipv6_flowlabel_exclusive +EXPORT_SYMBOL vmlinux 0x0cd9b0bc scsi_target_resume EXPORT_SYMBOL vmlinux 0x0cdce87c rfkill_set_hw_state_reason +EXPORT_SYMBOL vmlinux 0x0cdf0b47 crypto_sha256_finup EXPORT_SYMBOL vmlinux 0x0ce19729 mb_cache_entry_touch -EXPORT_SYMBOL vmlinux 0x0ce2b73a qdisc_reset EXPORT_SYMBOL vmlinux 0x0d07f543 get_anon_bdev -EXPORT_SYMBOL vmlinux 0x0d35785a fwnode_mdiobus_register_phy -EXPORT_SYMBOL vmlinux 0x0d37aeab fs_param_is_u32 -EXPORT_SYMBOL vmlinux 0x0d3a0118 tcf_em_tree_validate -EXPORT_SYMBOL vmlinux 0x0d4ab99a mmc_wait_for_req_done +EXPORT_SYMBOL vmlinux 0x0d092edd key_type_keyring +EXPORT_SYMBOL vmlinux 0x0d1ec576 netdev_notify_peers +EXPORT_SYMBOL vmlinux 0x0d2126fc fuse_mount_destroy +EXPORT_SYMBOL vmlinux 0x0d212a7a netif_napi_add +EXPORT_SYMBOL vmlinux 0x0d2c529f unix_destruct_scm EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type -EXPORT_SYMBOL vmlinux 0x0d60b865 __xfrm_init_state +EXPORT_SYMBOL vmlinux 0x0d5b34db __phy_resume +EXPORT_SYMBOL vmlinux 0x0d5ea0c1 xfrm_unregister_km EXPORT_SYMBOL vmlinux 0x0d61eeee __bitmap_subset -EXPORT_SYMBOL vmlinux 0x0d722f77 mmc_cqe_recovery -EXPORT_SYMBOL vmlinux 0x0d789ed3 phy_set_asym_pause -EXPORT_SYMBOL vmlinux 0x0d9642b8 inet_addr_type_dev_table -EXPORT_SYMBOL vmlinux 0x0d9829da ps2_end_command -EXPORT_SYMBOL vmlinux 0x0da0941a skb_ext_add -EXPORT_SYMBOL vmlinux 0x0da64903 vfs_copy_file_range -EXPORT_SYMBOL vmlinux 0x0dc91809 mark_info_dirty -EXPORT_SYMBOL vmlinux 0x0dca2710 mdiobus_unregister_device -EXPORT_SYMBOL vmlinux 0x0df7cdff pcim_iomap_regions +EXPORT_SYMBOL vmlinux 0x0d6636a2 eth_gro_complete +EXPORT_SYMBOL vmlinux 0x0d674098 blk_mq_run_hw_queues +EXPORT_SYMBOL vmlinux 0x0d7134a2 jbd2_journal_clear_features +EXPORT_SYMBOL vmlinux 0x0d74a111 proc_create_mount_point +EXPORT_SYMBOL vmlinux 0x0d773bb9 may_setattr +EXPORT_SYMBOL vmlinux 0x0d8069aa set_page_dirty +EXPORT_SYMBOL vmlinux 0x0d88f88a agp_generic_destroy_pages +EXPORT_SYMBOL vmlinux 0x0dcf5be5 dquot_quotactl_sysfile_ops +EXPORT_SYMBOL vmlinux 0x0de37547 inet6_add_offload +EXPORT_SYMBOL vmlinux 0x0df3eac7 flow_rule_match_ipv4_addrs +EXPORT_SYMBOL vmlinux 0x0dfeabb1 pci_get_subsys +EXPORT_SYMBOL vmlinux 0x0e04e947 mipi_dsi_device_register_full EXPORT_SYMBOL vmlinux 0x0e17678a siphash_4u64 EXPORT_SYMBOL vmlinux 0x0e23b37f alloc_cpumask_var_node -EXPORT_SYMBOL vmlinux 0x0e3166c4 udp_skb_destructor -EXPORT_SYMBOL vmlinux 0x0e34e626 alloc_etherdev_mqs -EXPORT_SYMBOL vmlinux 0x0e35104f ptp_clock_register -EXPORT_SYMBOL vmlinux 0x0e36520a nd_pfn_validate +EXPORT_SYMBOL vmlinux 0x0e25cbda flow_block_cb_alloc EXPORT_SYMBOL vmlinux 0x0e4262c6 __siphash_unaligned -EXPORT_SYMBOL vmlinux 0x0e47547a cdev_device_add -EXPORT_SYMBOL vmlinux 0x0e5c4ed7 ip_ct_attach -EXPORT_SYMBOL vmlinux 0x0e66c367 dev_mc_add -EXPORT_SYMBOL vmlinux 0x0e6878a2 __mmap_lock_do_trace_acquire_returned +EXPORT_SYMBOL vmlinux 0x0e4f0832 devm_register_netdev +EXPORT_SYMBOL vmlinux 0x0e53a306 xsk_set_rx_need_wakeup +EXPORT_SYMBOL vmlinux 0x0e567224 __sk_receive_skb EXPORT_SYMBOL vmlinux 0x0e74ad2d utf8ncursor -EXPORT_SYMBOL vmlinux 0x0e767baa __dev_get_by_flags +EXPORT_SYMBOL vmlinux 0x0e778fb5 forget_all_cached_acls +EXPORT_SYMBOL vmlinux 0x0ea12bdf inode_add_bytes EXPORT_SYMBOL vmlinux 0x0ea3c74e tasklet_kill EXPORT_SYMBOL vmlinux 0x0ea593f6 hdmi_drm_infoframe_init EXPORT_SYMBOL vmlinux 0x0eb6eb87 add_taint EXPORT_SYMBOL vmlinux 0x0ec5babe vme_dma_free -EXPORT_SYMBOL vmlinux 0x0ed6a34e __mark_inode_dirty -EXPORT_SYMBOL vmlinux 0x0eeec3f2 phy_print_status +EXPORT_SYMBOL vmlinux 0x0edf8eaa pagecache_isize_extended +EXPORT_SYMBOL vmlinux 0x0ef8f61c discard_new_inode EXPORT_SYMBOL vmlinux 0x0f09cc34 schedule_timeout_killable -EXPORT_SYMBOL vmlinux 0x0f1903f1 kthread_destroy_worker -EXPORT_SYMBOL vmlinux 0x0f2b4d2d xfrm_state_walk -EXPORT_SYMBOL vmlinux 0x0f369d7c __skb_checksum_complete EXPORT_SYMBOL vmlinux 0x0f37ca89 lockref_put_not_zero -EXPORT_SYMBOL vmlinux 0x0f521228 configfs_unregister_default_group -EXPORT_SYMBOL vmlinux 0x0f67725b tag_pages_for_writeback -EXPORT_SYMBOL vmlinux 0x0f82ea0a dev_set_threaded +EXPORT_SYMBOL vmlinux 0x0f45dbc3 tcf_exts_validate +EXPORT_SYMBOL vmlinux 0x0f501c9c mipi_dsi_dcs_write_buffer +EXPORT_SYMBOL vmlinux 0x0f704312 jbd2_journal_clear_err EXPORT_SYMBOL vmlinux 0x0f86f560 kthread_delayed_work_timer_fn -EXPORT_SYMBOL vmlinux 0x0f95ba2f tcf_exts_change +EXPORT_SYMBOL vmlinux 0x0f9222f8 __xfrm_policy_check +EXPORT_SYMBOL vmlinux 0x0f97efcb ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0x0f9e10ad set_bh_page EXPORT_SYMBOL vmlinux 0x0fab1ab0 hdmi_spd_infoframe_pack -EXPORT_SYMBOL vmlinux 0x0fad668b __set_page_dirty_nobuffers -EXPORT_SYMBOL vmlinux 0x0faf2559 proc_create_seq_private -EXPORT_SYMBOL vmlinux 0x0fb2381d vme_irq_generate EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 -EXPORT_SYMBOL vmlinux 0x0fd1b7f6 is_nvdimm_bus_locked -EXPORT_SYMBOL vmlinux 0x0fd4e709 mmc_unregister_driver +EXPORT_SYMBOL vmlinux 0x0fc2420d phy_ethtool_ksettings_set +EXPORT_SYMBOL vmlinux 0x0fc9841e pci_add_new_bus EXPORT_SYMBOL vmlinux 0x0fd902db mb_cache_entry_create -EXPORT_SYMBOL vmlinux 0x0ff2ca59 genphy_read_mmd_unsupported +EXPORT_SYMBOL vmlinux 0x0fda4aef dmam_alloc_attrs +EXPORT_SYMBOL vmlinux 0x0ff49e6e kernel_sock_ip_overhead EXPORT_SYMBOL vmlinux 0x0ff80f59 zalloc_cpumask_var +EXPORT_SYMBOL vmlinux 0x0ff90c61 tso_build_hdr +EXPORT_SYMBOL vmlinux 0x0ffaed7c kill_pgrp EXPORT_SYMBOL vmlinux 0x0fff5afc time64_to_tm -EXPORT_SYMBOL vmlinux 0x0fffe771 tcf_block_put -EXPORT_SYMBOL vmlinux 0x1002b32b scsi_print_sense_hdr -EXPORT_SYMBOL vmlinux 0x1013af03 pnp_unregister_card_driver -EXPORT_SYMBOL vmlinux 0x101adb0d elv_rb_latter_request -EXPORT_SYMBOL vmlinux 0x1026cae9 dev_lstats_read -EXPORT_SYMBOL vmlinux 0x102a7eea md_check_no_bitmap -EXPORT_SYMBOL vmlinux 0x10346355 fget_raw +EXPORT_SYMBOL vmlinux 0x100079e3 md_bitmap_end_sync +EXPORT_SYMBOL vmlinux 0x10052304 netlbl_calipso_ops_register +EXPORT_SYMBOL vmlinux 0x101eca6f security_sk_clone +EXPORT_SYMBOL vmlinux 0x1023f12a bmap +EXPORT_SYMBOL vmlinux 0x10251eb2 devm_nvmem_cell_put EXPORT_SYMBOL vmlinux 0x1035c7c2 __release_region -EXPORT_SYMBOL vmlinux 0x1035d41d __break_lease -EXPORT_SYMBOL vmlinux 0x103f431f filemap_page_mkwrite -EXPORT_SYMBOL vmlinux 0x103f90b0 inet_unregister_protosw -EXPORT_SYMBOL vmlinux 0x10413bdf mr_fill_mroute +EXPORT_SYMBOL vmlinux 0x104b15e9 skb_copy_and_hash_datagram_iter EXPORT_SYMBOL vmlinux 0x1057a279 bsearch +EXPORT_SYMBOL vmlinux 0x105b279e agp_generic_alloc_user EXPORT_SYMBOL vmlinux 0x1068004b gf128mul_bbe +EXPORT_SYMBOL vmlinux 0x10734a19 generic_file_llseek EXPORT_SYMBOL vmlinux 0x107be0b0 percpu_counter_sync EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd -EXPORT_SYMBOL vmlinux 0x107ebb9e input_match_device_id -EXPORT_SYMBOL vmlinux 0x10ace84d dm_table_get_size +EXPORT_SYMBOL vmlinux 0x1095cb47 jbd2_journal_get_write_access EXPORT_SYMBOL vmlinux 0x10c3f57e __gnet_stats_copy_queue -EXPORT_SYMBOL vmlinux 0x10c9fa94 inet_stream_ops +EXPORT_SYMBOL vmlinux 0x10cc9a2c pci_request_irq EXPORT_SYMBOL vmlinux 0x10d9f885 scsi_sense_desc_find -EXPORT_SYMBOL vmlinux 0x10dee847 dev_mc_add_excl EXPORT_SYMBOL vmlinux 0x10e6f74a free_contig_range -EXPORT_SYMBOL vmlinux 0x10e9c7cb xfrm_register_type_offload +EXPORT_SYMBOL vmlinux 0x10fd1ce0 dev_mc_flush +EXPORT_SYMBOL vmlinux 0x1103d1b3 __vfs_removexattr EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype -EXPORT_SYMBOL vmlinux 0x111452e6 __put_page -EXPORT_SYMBOL vmlinux 0x11166266 flow_rule_match_vlan -EXPORT_SYMBOL vmlinux 0x111e7c48 sock_edemux -EXPORT_SYMBOL vmlinux 0x1130bec0 pci_scan_single_device -EXPORT_SYMBOL vmlinux 0x113f5988 unregister_framebuffer +EXPORT_SYMBOL vmlinux 0x11113c3c skb_dump +EXPORT_SYMBOL vmlinux 0x11167dce param_set_int +EXPORT_SYMBOL vmlinux 0x112efa3e skb_realloc_headroom +EXPORT_SYMBOL vmlinux 0x112f2bd0 mark_buffer_write_io_error +EXPORT_SYMBOL vmlinux 0x11433102 key_reject_and_link +EXPORT_SYMBOL vmlinux 0x1144f3c0 xp_dma_map +EXPORT_SYMBOL vmlinux 0x11469777 pci_free_irq EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init -EXPORT_SYMBOL vmlinux 0x11873edb I_BDEV -EXPORT_SYMBOL vmlinux 0x11947156 bioset_init -EXPORT_SYMBOL vmlinux 0x119ef0f7 try_lookup_one_len -EXPORT_SYMBOL vmlinux 0x11be28ff __dynamic_netdev_dbg -EXPORT_SYMBOL vmlinux 0x11cdd4fd simple_fill_super -EXPORT_SYMBOL vmlinux 0x11cfdd60 __skb_pad +EXPORT_SYMBOL vmlinux 0x11950761 phy_ethtool_get_sset_count +EXPORT_SYMBOL vmlinux 0x1196091f md_register_thread +EXPORT_SYMBOL vmlinux 0x11a0884f genphy_write_mmd_unsupported +EXPORT_SYMBOL vmlinux 0x11a75357 dma_resv_fini +EXPORT_SYMBOL vmlinux 0x11bc077a vfs_fileattr_set +EXPORT_SYMBOL vmlinux 0x11def606 xfrm_policy_byid EXPORT_SYMBOL vmlinux 0x11e0ec41 dm_read_arg EXPORT_SYMBOL vmlinux 0x11e30762 chacha_block_generic -EXPORT_SYMBOL vmlinux 0x11eae533 mr_vif_seq_idx EXPORT_SYMBOL vmlinux 0x11f47d8c utf8_strncmp -EXPORT_SYMBOL vmlinux 0x11f5bebc nobh_write_end -EXPORT_SYMBOL vmlinux 0x11f7ed4c hex_to_bin -EXPORT_SYMBOL vmlinux 0x1205084d ppp_dev_name EXPORT_SYMBOL vmlinux 0x120b336a __rb_insert_augmented -EXPORT_SYMBOL vmlinux 0x1214c0ae xen_alloc_unpopulated_pages +EXPORT_SYMBOL vmlinux 0x12348c6c mr_mfc_find_parent EXPORT_SYMBOL vmlinux 0x124bad4d kstrtobool -EXPORT_SYMBOL vmlinux 0x12576483 pps_register_source -EXPORT_SYMBOL vmlinux 0x126d5544 free_netdev -EXPORT_SYMBOL vmlinux 0x12806518 filp_close -EXPORT_SYMBOL vmlinux 0x1284a71c do_SAK -EXPORT_SYMBOL vmlinux 0x12983482 vfs_tmpfile -EXPORT_SYMBOL vmlinux 0x129efe1c blk_queue_max_discard_sectors -EXPORT_SYMBOL vmlinux 0x12a9e3ba phy_disconnect +EXPORT_SYMBOL vmlinux 0x12591633 __lock_page +EXPORT_SYMBOL vmlinux 0x1279966d pcie_set_readrq +EXPORT_SYMBOL vmlinux 0x127a024e follow_down_one +EXPORT_SYMBOL vmlinux 0x12baa06f d_alloc EXPORT_SYMBOL vmlinux 0x12cabc89 siphash_2u64 -EXPORT_SYMBOL vmlinux 0x12dc0ef0 amd_iommu_device_info -EXPORT_SYMBOL vmlinux 0x12e65b6f vlan_vids_add_by_dev -EXPORT_SYMBOL vmlinux 0x12ef961f __tracepoint_spi_transfer_stop +EXPORT_SYMBOL vmlinux 0x12f29f81 input_release_device EXPORT_SYMBOL vmlinux 0x12f6f69c fb_videomode_to_var EXPORT_SYMBOL vmlinux 0x130afd75 acpi_get_sleep_type_data EXPORT_SYMBOL vmlinux 0x13110126 request_resource -EXPORT_SYMBOL vmlinux 0x1312566c security_sctp_assoc_request -EXPORT_SYMBOL vmlinux 0x13136bcf genl_unregister_family EXPORT_SYMBOL vmlinux 0x131a6146 xa_clear_mark -EXPORT_SYMBOL vmlinux 0x131edc98 netdev_crit +EXPORT_SYMBOL vmlinux 0x131df7f7 tcp_req_err EXPORT_SYMBOL vmlinux 0x13243d4b wl1251_get_platform_data +EXPORT_SYMBOL vmlinux 0x132efbb4 jbd2_trans_will_send_data_barrier +EXPORT_SYMBOL vmlinux 0x13347e25 fb_class EXPORT_SYMBOL vmlinux 0x1344d7e6 acpi_enable_gpe EXPORT_SYMBOL vmlinux 0x134cdd34 inet_frag_rbtree_purge -EXPORT_SYMBOL vmlinux 0x134ce9ff ex_handler_clear_fs -EXPORT_SYMBOL vmlinux 0x134ffdb7 skb_realloc_headroom -EXPORT_SYMBOL vmlinux 0x1382b365 mfd_remove_devices_late +EXPORT_SYMBOL vmlinux 0x135b9cd0 submit_bh +EXPORT_SYMBOL vmlinux 0x13812143 xfrm_input_register_afinfo EXPORT_SYMBOL vmlinux 0x1389619c __max_die_per_package -EXPORT_SYMBOL vmlinux 0x139e3ff9 param_set_ulong +EXPORT_SYMBOL vmlinux 0x138e014c __dynamic_ibdev_dbg +EXPORT_SYMBOL vmlinux 0x1398c164 inet_frag_reasm_finish EXPORT_SYMBOL vmlinux 0x139f2189 __kfifo_alloc -EXPORT_SYMBOL vmlinux 0x13b1bd32 shmem_aops -EXPORT_SYMBOL vmlinux 0x13b563bd get_watch_queue -EXPORT_SYMBOL vmlinux 0x13baf4be netpoll_cleanup +EXPORT_SYMBOL vmlinux 0x13b5fc01 scsi_print_sense_hdr EXPORT_SYMBOL vmlinux 0x13c49cc2 _copy_from_user EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out -EXPORT_SYMBOL vmlinux 0x13f283ee get_cached_acl +EXPORT_SYMBOL vmlinux 0x13e1519a proc_create_single_data EXPORT_SYMBOL vmlinux 0x13f42152 system_entering_hibernation -EXPORT_SYMBOL vmlinux 0x14056c8f md_cluster_ops -EXPORT_SYMBOL vmlinux 0x140905c8 tcp_sock_set_syncnt EXPORT_SYMBOL vmlinux 0x141271bf acpi_dev_found -EXPORT_SYMBOL vmlinux 0x14127585 __tracepoint_mmap_lock_acquire_returned -EXPORT_SYMBOL vmlinux 0x141b8342 tcp_peek_len -EXPORT_SYMBOL vmlinux 0x144f49e7 set_capacity +EXPORT_SYMBOL vmlinux 0x1431d29b generic_setlease +EXPORT_SYMBOL vmlinux 0x1437dfe6 inet_add_offload +EXPORT_SYMBOL vmlinux 0x144572d1 audit_log_start +EXPORT_SYMBOL vmlinux 0x14510d60 logfc +EXPORT_SYMBOL vmlinux 0x14590ae0 timestamp_truncate +EXPORT_SYMBOL vmlinux 0x14591760 add_to_page_cache_locked +EXPORT_SYMBOL vmlinux 0x145b4e28 tcp_rcv_state_process +EXPORT_SYMBOL vmlinux 0x145be967 security_inet_conn_established EXPORT_SYMBOL vmlinux 0x14605535 dma_fence_context_alloc EXPORT_SYMBOL vmlinux 0x146289b7 crc16_table -EXPORT_SYMBOL vmlinux 0x146a19bb xfrm_register_km -EXPORT_SYMBOL vmlinux 0x1472f322 dmam_free_coherent EXPORT_SYMBOL vmlinux 0x1486ded2 dma_fence_allocate_private_stub -EXPORT_SYMBOL vmlinux 0x149a5fd8 serial8250_set_isa_configurator -EXPORT_SYMBOL vmlinux 0x14b60726 jbd2_journal_clear_err -EXPORT_SYMBOL vmlinux 0x14b9cf0b sock_no_socketpair +EXPORT_SYMBOL vmlinux 0x149a161f inet_csk_complete_hashdance +EXPORT_SYMBOL vmlinux 0x14a3111d phy_set_sym_pause EXPORT_SYMBOL vmlinux 0x14c67e3e tcp_tx_delay_enabled -EXPORT_SYMBOL vmlinux 0x14cf32d9 devm_ioremap_wc -EXPORT_SYMBOL vmlinux 0x14e6076a tcp_v4_mtu_reduced -EXPORT_SYMBOL vmlinux 0x14f363d8 genphy_aneg_done -EXPORT_SYMBOL vmlinux 0x14f5a219 dcbnl_cee_notify EXPORT_SYMBOL vmlinux 0x151f4898 schedule_timeout_uninterruptible -EXPORT_SYMBOL vmlinux 0x151f9667 pci_get_subsys +EXPORT_SYMBOL vmlinux 0x15232ab3 mmc_gpiod_request_cd EXPORT_SYMBOL vmlinux 0x1526b301 unix_tot_inflight +EXPORT_SYMBOL vmlinux 0x152aabfa locks_copy_lock +EXPORT_SYMBOL vmlinux 0x152be4fa jbd2_journal_wipe +EXPORT_SYMBOL vmlinux 0x153556c0 phy_write_paged +EXPORT_SYMBOL vmlinux 0x153b1153 devm_extcon_register_notifier_all +EXPORT_SYMBOL vmlinux 0x153bfd66 netdev_adjacent_change_commit +EXPORT_SYMBOL vmlinux 0x153fb043 __dev_get_by_index +EXPORT_SYMBOL vmlinux 0x15442368 pci_bus_write_config_word +EXPORT_SYMBOL vmlinux 0x15491558 cdrom_open EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy -EXPORT_SYMBOL vmlinux 0x15603812 genphy_c37_read_status -EXPORT_SYMBOL vmlinux 0x156c88f5 devm_extcon_register_notifier -EXPORT_SYMBOL vmlinux 0x157b5b0b agp_generic_destroy_page -EXPORT_SYMBOL vmlinux 0x1592f30f alloc_fcdev -EXPORT_SYMBOL vmlinux 0x1597321b blk_dump_rq_flags +EXPORT_SYMBOL vmlinux 0x154c820c flow_rule_match_enc_ipv6_addrs +EXPORT_SYMBOL vmlinux 0x1561e014 generic_listxattr +EXPORT_SYMBOL vmlinux 0x1565f8aa udp_lib_unhash +EXPORT_SYMBOL vmlinux 0x15664a49 submit_bio_wait +EXPORT_SYMBOL vmlinux 0x156716e7 agp_generic_free_gatt_table +EXPORT_SYMBOL vmlinux 0x1572ec2b scsi_device_get +EXPORT_SYMBOL vmlinux 0x15849457 blk_mq_alloc_tag_set +EXPORT_SYMBOL vmlinux 0x158b8353 xfrm6_rcv_tnl EXPORT_SYMBOL vmlinux 0x15a66331 kobject_set_name -EXPORT_SYMBOL vmlinux 0x15aa02dd dma_sync_single_for_device -EXPORT_SYMBOL vmlinux 0x15ad8ce3 sock_queue_rcv_skb EXPORT_SYMBOL vmlinux 0x15ba50a6 jiffies EXPORT_SYMBOL vmlinux 0x15bafe29 unregister_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x15bb49e5 vme_slave_request EXPORT_SYMBOL vmlinux 0x15bed7a5 LZ4_decompress_safe_partial -EXPORT_SYMBOL vmlinux 0x15c662d5 tcp_v4_send_check -EXPORT_SYMBOL vmlinux 0x15c8409e phy_driver_unregister EXPORT_SYMBOL vmlinux 0x15c85de3 mempool_init -EXPORT_SYMBOL vmlinux 0x15ce8333 ip6_dst_hoplimit -EXPORT_SYMBOL vmlinux 0x15dd6337 mmc_card_alternative_gpt_sector -EXPORT_SYMBOL vmlinux 0x15e322e6 is_nd_pfn -EXPORT_SYMBOL vmlinux 0x15f615ed block_write_full_page -EXPORT_SYMBOL vmlinux 0x15f99d3c seq_put_decimal_ull +EXPORT_SYMBOL vmlinux 0x15f3c7fa amd_iommu_domain_enable_v2 +EXPORT_SYMBOL vmlinux 0x15fc511e eth_header_parse +EXPORT_SYMBOL vmlinux 0x160dc378 finish_no_open +EXPORT_SYMBOL vmlinux 0x161bd817 __generic_file_write_iter EXPORT_SYMBOL vmlinux 0x16286538 iowrite64be_lo_hi EXPORT_SYMBOL vmlinux 0x162893fd hashlen_string -EXPORT_SYMBOL vmlinux 0x162988d5 sock_no_connect EXPORT_SYMBOL vmlinux 0x16301b34 wrmsrl_on_cpu EXPORT_SYMBOL vmlinux 0x16316a10 ZSTD_getFrameContentSize EXPORT_SYMBOL vmlinux 0x1632bc21 kvasprintf_const -EXPORT_SYMBOL vmlinux 0x1637b30e generic_fillattr -EXPORT_SYMBOL vmlinux 0x163b7d5b inet_csk_delete_keepalive_timer -EXPORT_SYMBOL vmlinux 0x164cb0b2 genphy_loopback -EXPORT_SYMBOL vmlinux 0x165864fd xfrm6_rcv_encap -EXPORT_SYMBOL vmlinux 0x1660134e iommu_dma_get_resv_regions +EXPORT_SYMBOL vmlinux 0x1632e2d4 skb_append +EXPORT_SYMBOL vmlinux 0x1636e833 devm_extcon_unregister_notifier_all +EXPORT_SYMBOL vmlinux 0x166e00c5 register_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x1679f13a inet6_register_protosw +EXPORT_SYMBOL vmlinux 0x167ab08f inode_init_once EXPORT_SYMBOL vmlinux 0x167c5967 print_hex_dump EXPORT_SYMBOL vmlinux 0x167e7f9d __get_user_1 -EXPORT_SYMBOL vmlinux 0x1694732e dma_map_page_attrs -EXPORT_SYMBOL vmlinux 0x1698f000 blk_queue_max_segments +EXPORT_SYMBOL vmlinux 0x168088d4 page_pool_destroy EXPORT_SYMBOL vmlinux 0x169938c1 __sysfs_match_string -EXPORT_SYMBOL vmlinux 0x16ab84a8 fb_class -EXPORT_SYMBOL vmlinux 0x16abccd4 dcb_ieee_getapp_mask -EXPORT_SYMBOL vmlinux 0x16c81fc3 scsi_device_quiesce +EXPORT_SYMBOL vmlinux 0x16b2d985 flow_block_cb_priv +EXPORT_SYMBOL vmlinux 0x16b514eb input_mt_get_slot_by_key +EXPORT_SYMBOL vmlinux 0x16c0bf36 sock_create +EXPORT_SYMBOL vmlinux 0x16c17cdf dev_get_by_index_rcu EXPORT_SYMBOL vmlinux 0x16cdc340 acpi_get_table -EXPORT_SYMBOL vmlinux 0x16d0f883 tcp_seq_next -EXPORT_SYMBOL vmlinux 0x16d7f516 pci_find_bus +EXPORT_SYMBOL vmlinux 0x16d95be9 netdev_state_change EXPORT_SYMBOL vmlinux 0x16dee44d dma_fence_init EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait -EXPORT_SYMBOL vmlinux 0x1705b54a migrate_page EXPORT_SYMBOL vmlinux 0x170ddf79 acpi_install_notify_handler -EXPORT_SYMBOL vmlinux 0x175c1a6f sock_sendmsg -EXPORT_SYMBOL vmlinux 0x175dfa09 neigh_seq_start +EXPORT_SYMBOL vmlinux 0x1719533d simple_transaction_release +EXPORT_SYMBOL vmlinux 0x174416b8 nvdimm_bus_unlock +EXPORT_SYMBOL vmlinux 0x174b5355 acpi_dev_get_next_match_dev +EXPORT_SYMBOL vmlinux 0x174b84a3 phy_attached_print EXPORT_SYMBOL vmlinux 0x175e33fb dma_spin_lock -EXPORT_SYMBOL vmlinux 0x175f7a16 posix_acl_chmod -EXPORT_SYMBOL vmlinux 0x178012ca del_gendisk -EXPORT_SYMBOL vmlinux 0x1783f8b5 xfrm_stateonly_find -EXPORT_SYMBOL vmlinux 0x17931792 drop_nlink -EXPORT_SYMBOL vmlinux 0x17a57452 i2c_smbus_write_byte_data -EXPORT_SYMBOL vmlinux 0x17bbb34a netlink_broadcast -EXPORT_SYMBOL vmlinux 0x17bc726d qdisc_warn_nonwc +EXPORT_SYMBOL vmlinux 0x1761754f pci_bus_set_ops +EXPORT_SYMBOL vmlinux 0x177124ca neigh_resolve_output +EXPORT_SYMBOL vmlinux 0x178347e1 tcp_seq_stop +EXPORT_SYMBOL vmlinux 0x1787282b truncate_pagecache_range +EXPORT_SYMBOL vmlinux 0x178e495f rproc_add_carveout +EXPORT_SYMBOL vmlinux 0x17a1f545 send_sig_info +EXPORT_SYMBOL vmlinux 0x17a896a3 dev_addr_init +EXPORT_SYMBOL vmlinux 0x17aaa68d serio_rescan +EXPORT_SYMBOL vmlinux 0x17ba2fd9 genphy_read_mmd_unsupported EXPORT_SYMBOL vmlinux 0x17be68ca acpi_clear_event -EXPORT_SYMBOL vmlinux 0x17e096b7 tty_port_carrier_raised +EXPORT_SYMBOL vmlinux 0x17cd4ba5 param_set_ulong +EXPORT_SYMBOL vmlinux 0x17d1cf93 thaw_bdev +EXPORT_SYMBOL vmlinux 0x17d1f371 skb_copy_expand +EXPORT_SYMBOL vmlinux 0x17dba886 __xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x17e954e3 mmc_hw_reset EXPORT_SYMBOL vmlinux 0x17f341a0 i8042_lock_chip -EXPORT_SYMBOL vmlinux 0x17f4f193 blk_get_queue -EXPORT_SYMBOL vmlinux 0x17f7eaff phy_error EXPORT_SYMBOL vmlinux 0x17f813a9 __SCT__tp_func_kmalloc -EXPORT_SYMBOL vmlinux 0x17fc1937 inet_accept -EXPORT_SYMBOL vmlinux 0x180e5eb0 mark_buffer_dirty_inode -EXPORT_SYMBOL vmlinux 0x1810d156 dev_uc_add_excl -EXPORT_SYMBOL vmlinux 0x18233c75 mipi_dsi_detach -EXPORT_SYMBOL vmlinux 0x18340b4a take_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0x1800378d __alloc_pages +EXPORT_SYMBOL vmlinux 0x18094600 mmc_wait_for_req +EXPORT_SYMBOL vmlinux 0x18237b7c phy_ethtool_ksettings_get EXPORT_SYMBOL vmlinux 0x18345b8e __bitmap_replace -EXPORT_SYMBOL vmlinux 0x184cda06 input_register_handle -EXPORT_SYMBOL vmlinux 0x1853cb0e tcf_classify -EXPORT_SYMBOL vmlinux 0x185ff0f3 devm_request_threaded_irq -EXPORT_SYMBOL vmlinux 0x18642457 __bio_clone_fast -EXPORT_SYMBOL vmlinux 0x1867b5a1 seq_dentry -EXPORT_SYMBOL vmlinux 0x1871fd5d vga_switcheroo_get_client_state -EXPORT_SYMBOL vmlinux 0x18722c9b netdev_next_lower_dev_rcu -EXPORT_SYMBOL vmlinux 0x18817c1b pcie_set_mps +EXPORT_SYMBOL vmlinux 0x18374c50 scsi_scan_host +EXPORT_SYMBOL vmlinux 0x1868bb65 locks_init_lock EXPORT_SYMBOL vmlinux 0x18888d00 downgrade_write -EXPORT_SYMBOL vmlinux 0x188c47be __find_get_block EXPORT_SYMBOL vmlinux 0x188ea314 jiffies_to_timespec64 -EXPORT_SYMBOL vmlinux 0x18909c33 pcie_bandwidth_available -EXPORT_SYMBOL vmlinux 0x189afaa8 bh_uptodate_or_lock -EXPORT_SYMBOL vmlinux 0x189b7d83 tcf_exts_dump_stats +EXPORT_SYMBOL vmlinux 0x18974aa0 nf_register_queue_handler +EXPORT_SYMBOL vmlinux 0x189c52c5 iov_iter_zero +EXPORT_SYMBOL vmlinux 0x18a7a275 netif_set_real_num_tx_queues +EXPORT_SYMBOL vmlinux 0x18aff2c5 cros_ec_query_all +EXPORT_SYMBOL vmlinux 0x18b289ad eth_mac_addr +EXPORT_SYMBOL vmlinux 0x18b3d262 skb_add_rx_frag EXPORT_SYMBOL vmlinux 0x18b72573 register_kmmio_probe +EXPORT_SYMBOL vmlinux 0x18b8fa91 kern_unmount_array +EXPORT_SYMBOL vmlinux 0x18cc694a ata_dev_printk +EXPORT_SYMBOL vmlinux 0x18cca498 serio_reconnect EXPORT_SYMBOL vmlinux 0x18d832e2 config_item_get -EXPORT_SYMBOL vmlinux 0x18e14926 mipi_dsi_driver_register_full EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start -EXPORT_SYMBOL vmlinux 0x18e6d836 ip_generic_getfrag -EXPORT_SYMBOL vmlinux 0x18efa572 mmc_remove_host -EXPORT_SYMBOL vmlinux 0x18f7e065 single_open -EXPORT_SYMBOL vmlinux 0x18fbfa60 flow_indr_dev_register -EXPORT_SYMBOL vmlinux 0x18fde342 dquot_get_next_id -EXPORT_SYMBOL vmlinux 0x19078ffb rtnl_configure_link -EXPORT_SYMBOL vmlinux 0x190836ea unix_attach_fds -EXPORT_SYMBOL vmlinux 0x190f3e5f param_ops_ulong -EXPORT_SYMBOL vmlinux 0x1911a260 __tcp_md5_do_lookup -EXPORT_SYMBOL vmlinux 0x1921b98a netdev_alert -EXPORT_SYMBOL vmlinux 0x19273081 backlight_device_unregister -EXPORT_SYMBOL vmlinux 0x192c055d init_task -EXPORT_SYMBOL vmlinux 0x192c1260 devm_backlight_device_unregister -EXPORT_SYMBOL vmlinux 0x192c51ba kernel_sendmsg +EXPORT_SYMBOL vmlinux 0x19178d85 mini_qdisc_pair_swap EXPORT_SYMBOL vmlinux 0x192ea14f __SCT__tp_func_dma_fence_signaled -EXPORT_SYMBOL vmlinux 0x193f6567 vfs_fileattr_set -EXPORT_SYMBOL vmlinux 0x19480cef dma_async_device_register +EXPORT_SYMBOL vmlinux 0x192fe06d vfs_getattr +EXPORT_SYMBOL vmlinux 0x1940fafb padata_free_shell +EXPORT_SYMBOL vmlinux 0x195082fa dev_load EXPORT_SYMBOL vmlinux 0x1953c958 mempool_create EXPORT_SYMBOL vmlinux 0x19567d06 vfio_info_cap_shift -EXPORT_SYMBOL vmlinux 0x1961a5ed rproc_vq_interrupt -EXPORT_SYMBOL vmlinux 0x197582f2 jbd2_journal_init_dev +EXPORT_SYMBOL vmlinux 0x196262d3 phy_start_cable_test_tdr +EXPORT_SYMBOL vmlinux 0x1967d8fe pci_scan_bridge +EXPORT_SYMBOL vmlinux 0x196b6d30 eth_header_parse_protocol +EXPORT_SYMBOL vmlinux 0x1976ed8e sb_min_blocksize EXPORT_SYMBOL vmlinux 0x1984d421 out_of_line_wait_on_bit EXPORT_SYMBOL vmlinux 0x198620d7 security_add_mnt_opt +EXPORT_SYMBOL vmlinux 0x199572b4 vfio_register_notifier EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec -EXPORT_SYMBOL vmlinux 0x19d14e45 input_set_abs_params +EXPORT_SYMBOL vmlinux 0x19c75959 request_key_with_auxdata +EXPORT_SYMBOL vmlinux 0x19cb1343 d_genocide EXPORT_SYMBOL vmlinux 0x19d200ec __SCT__tp_func_kmalloc_node +EXPORT_SYMBOL vmlinux 0x19d594f5 ip6_dst_check +EXPORT_SYMBOL vmlinux 0x19d99520 xfrm_policy_flush EXPORT_SYMBOL vmlinux 0x19df99b9 acpi_finish_gpe -EXPORT_SYMBOL vmlinux 0x19eb1ec4 xfrm_policy_delete +EXPORT_SYMBOL vmlinux 0x1a010761 agp_generic_alloc_page EXPORT_SYMBOL vmlinux 0x1a1bac9c ZSTD_decompressDCtx -EXPORT_SYMBOL vmlinux 0x1a21ec1c __cancel_dirty_page -EXPORT_SYMBOL vmlinux 0x1a2b708f wait_on_page_bit_killable -EXPORT_SYMBOL vmlinux 0x1a41b572 tcf_qevent_init +EXPORT_SYMBOL vmlinux 0x1a31b7e0 agp_find_bridge EXPORT_SYMBOL vmlinux 0x1a45cb6c acpi_disabled -EXPORT_SYMBOL vmlinux 0x1a54f75e mmc_retune_unpause EXPORT_SYMBOL vmlinux 0x1a63af34 vga_switcheroo_process_delayed_switch -EXPORT_SYMBOL vmlinux 0x1a679ead agp_generic_insert_memory +EXPORT_SYMBOL vmlinux 0x1a6b9596 pcie_port_service_register EXPORT_SYMBOL vmlinux 0x1a79c8e9 __x86_indirect_thunk_r13 -EXPORT_SYMBOL vmlinux 0x1a88c07c blk_queue_io_opt +EXPORT_SYMBOL vmlinux 0x1a7bef1f proc_set_user +EXPORT_SYMBOL vmlinux 0x1a8ce7ec mmc_is_req_done +EXPORT_SYMBOL vmlinux 0x1a96dc88 tcf_generic_walker EXPORT_SYMBOL vmlinux 0x1a9a433c prandom_u32_state -EXPORT_SYMBOL vmlinux 0x1aa90bdd bdev_read_only +EXPORT_SYMBOL vmlinux 0x1a9c8410 ip_sock_set_pktinfo EXPORT_SYMBOL vmlinux 0x1aa9fba0 vfio_dma_rw -EXPORT_SYMBOL vmlinux 0x1aaa7b07 tc_setup_flow_action -EXPORT_SYMBOL vmlinux 0x1ac245dc phy_attached_print +EXPORT_SYMBOL vmlinux 0x1abfb788 vme_bus_error_handler EXPORT_SYMBOL vmlinux 0x1ac5d3cb strcspn -EXPORT_SYMBOL vmlinux 0x1ae46ab1 blk_cleanup_disk -EXPORT_SYMBOL vmlinux 0x1aea7b17 __destroy_inode -EXPORT_SYMBOL vmlinux 0x1af74d7f jbd2_journal_blocks_per_page +EXPORT_SYMBOL vmlinux 0x1ad080ab i2c_del_adapter +EXPORT_SYMBOL vmlinux 0x1ae5d57c phy_attach +EXPORT_SYMBOL vmlinux 0x1aeca809 xfrm_init_state +EXPORT_SYMBOL vmlinux 0x1af3d059 __insert_inode_hash +EXPORT_SYMBOL vmlinux 0x1afdb987 flow_rule_match_eth_addrs EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist -EXPORT_SYMBOL vmlinux 0x1b025e09 phy_loopback -EXPORT_SYMBOL vmlinux 0x1b029ebc tcf_idr_create_from_flags -EXPORT_SYMBOL vmlinux 0x1b035f3b pci_read_config_byte -EXPORT_SYMBOL vmlinux 0x1b07dcb3 tty_vhangup -EXPORT_SYMBOL vmlinux 0x1b0d0af9 iw_handler_set_thrspy -EXPORT_SYMBOL vmlinux 0x1b0d8a76 fb_get_mode -EXPORT_SYMBOL vmlinux 0x1b3450f7 tcf_em_tree_dump -EXPORT_SYMBOL vmlinux 0x1b35e573 submit_bh +EXPORT_SYMBOL vmlinux 0x1b11009c fib6_info_hw_flags_set +EXPORT_SYMBOL vmlinux 0x1b1227c4 __dev_direct_xmit +EXPORT_SYMBOL vmlinux 0x1b1df15f sk_alloc +EXPORT_SYMBOL vmlinux 0x1b202934 iommu_get_dma_cookie +EXPORT_SYMBOL vmlinux 0x1b3c980d vme_new_dma_list +EXPORT_SYMBOL vmlinux 0x1b435954 cad_pid +EXPORT_SYMBOL vmlinux 0x1b50189a __tracepoint_mmap_lock_released EXPORT_SYMBOL vmlinux 0x1b597b7a swake_up_all EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton -EXPORT_SYMBOL vmlinux 0x1b73ead3 flow_rule_match_tcp +EXPORT_SYMBOL vmlinux 0x1b72299e hdmi_infoframe_log EXPORT_SYMBOL vmlinux 0x1b777357 rdmacg_unregister_device -EXPORT_SYMBOL vmlinux 0x1b7fc31b unpin_user_pages EXPORT_SYMBOL vmlinux 0x1b8b95ad i8042_unlock_chip +EXPORT_SYMBOL vmlinux 0x1b8c18b2 kernel_bind +EXPORT_SYMBOL vmlinux 0x1b944176 devm_pci_remap_cfg_resource +EXPORT_SYMBOL vmlinux 0x1b9456f7 truncate_inode_pages_range EXPORT_SYMBOL vmlinux 0x1ba59527 __kmalloc_node -EXPORT_SYMBOL vmlinux 0x1bb05ffc sock_gettstamp EXPORT_SYMBOL vmlinux 0x1bb51249 tcp_have_smc -EXPORT_SYMBOL vmlinux 0x1bbd5306 get_cached_acl_rcu -EXPORT_SYMBOL vmlinux 0x1bc12d7d sock_no_sendpage_locked +EXPORT_SYMBOL vmlinux 0x1bb9aad8 pci_iomap_range +EXPORT_SYMBOL vmlinux 0x1bbb8f5c mpage_readahead +EXPORT_SYMBOL vmlinux 0x1bd36833 i8042_remove_filter EXPORT_SYMBOL vmlinux 0x1bd59dbe vme_free_consistent -EXPORT_SYMBOL vmlinux 0x1bf4df1b vfs_ioctl -EXPORT_SYMBOL vmlinux 0x1bfeb417 mdiobus_setup_mdiodev_from_board_info -EXPORT_SYMBOL vmlinux 0x1c01357b md_bitmap_end_sync -EXPORT_SYMBOL vmlinux 0x1c27b593 register_console -EXPORT_SYMBOL vmlinux 0x1c4306d1 dev_get_by_index -EXPORT_SYMBOL vmlinux 0x1c502e79 skb_copy_expand +EXPORT_SYMBOL vmlinux 0x1be5a979 __neigh_set_probe_once +EXPORT_SYMBOL vmlinux 0x1c0fb4c6 i2c_register_driver +EXPORT_SYMBOL vmlinux 0x1c25ac1a dm_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x1c32e95c show_init_ipc_ns +EXPORT_SYMBOL vmlinux 0x1c3f9ffb block_write_begin +EXPORT_SYMBOL vmlinux 0x1c48af2e __xfrm_route_forward EXPORT_SYMBOL vmlinux 0x1c58427f acpi_remove_notify_handler -EXPORT_SYMBOL vmlinux 0x1c59af89 xp_dma_unmap EXPORT_SYMBOL vmlinux 0x1c5e3878 icst525_idx2s -EXPORT_SYMBOL vmlinux 0x1c706ed4 pps_event -EXPORT_SYMBOL vmlinux 0x1c8d12ec dcache_dir_open -EXPORT_SYMBOL vmlinux 0x1c988f1c dev_queue_xmit +EXPORT_SYMBOL vmlinux 0x1c621f96 input_mt_report_finger_count +EXPORT_SYMBOL vmlinux 0x1c6a2a88 unpin_user_page_range_dirty_lock +EXPORT_SYMBOL vmlinux 0x1c73218e dma_free_attrs +EXPORT_SYMBOL vmlinux 0x1c8927ca blk_mq_init_allocated_queue +EXPORT_SYMBOL vmlinux 0x1c934b87 flow_indr_block_cb_alloc EXPORT_SYMBOL vmlinux 0x1ca527fa ioread64be_hi_lo -EXPORT_SYMBOL vmlinux 0x1cae97b2 eth_prepare_mac_addr_change +EXPORT_SYMBOL vmlinux 0x1cad39b6 nf_unregister_net_hook EXPORT_SYMBOL vmlinux 0x1cb11044 inetpeer_invalidate_tree -EXPORT_SYMBOL vmlinux 0x1cb7984f delete_from_page_cache -EXPORT_SYMBOL vmlinux 0x1cb80fb1 phy_get_internal_delay -EXPORT_SYMBOL vmlinux 0x1ccabb5b pcie_capability_clear_and_set_dword +EXPORT_SYMBOL vmlinux 0x1cb9afc9 thermal_cdev_update +EXPORT_SYMBOL vmlinux 0x1cba434d devm_devfreq_unregister_opp_notifier EXPORT_SYMBOL vmlinux 0x1cd8438b pxm_to_node -EXPORT_SYMBOL vmlinux 0x1ceb88d5 security_inet_conn_request -EXPORT_SYMBOL vmlinux 0x1ceb8aad secure_tcpv6_ts_off -EXPORT_SYMBOL vmlinux 0x1cf3d44d scsi_eh_restore_cmnd -EXPORT_SYMBOL vmlinux 0x1d00069b xfrm_state_lookup +EXPORT_SYMBOL vmlinux 0x1ce53b87 path_is_under +EXPORT_SYMBOL vmlinux 0x1ce559bf __nlmsg_put +EXPORT_SYMBOL vmlinux 0x1ce8a437 security_unix_stream_connect +EXPORT_SYMBOL vmlinux 0x1ceda010 __SCK__tp_func_mmap_lock_released EXPORT_SYMBOL vmlinux 0x1d07e365 memdup_user_nul +EXPORT_SYMBOL vmlinux 0x1d161f84 pci_match_id +EXPORT_SYMBOL vmlinux 0x1d163471 phy_find_first EXPORT_SYMBOL vmlinux 0x1d19f77b physical_mask EXPORT_SYMBOL vmlinux 0x1d1abdf0 acpi_get_physical_device_location -EXPORT_SYMBOL vmlinux 0x1d223ca1 dm_unregister_target +EXPORT_SYMBOL vmlinux 0x1d1d37b0 ipv6_sock_mc_drop EXPORT_SYMBOL vmlinux 0x1d24c881 ___ratelimit -EXPORT_SYMBOL vmlinux 0x1d25ab7e udp_seq_stop EXPORT_SYMBOL vmlinux 0x1d2d6d15 wait_iff_congested EXPORT_SYMBOL vmlinux 0x1d40b6f3 idr_for_each -EXPORT_SYMBOL vmlinux 0x1d488df5 cdev_init -EXPORT_SYMBOL vmlinux 0x1d503989 nf_hook_slow_list -EXPORT_SYMBOL vmlinux 0x1d7ab103 pci_request_regions -EXPORT_SYMBOL vmlinux 0x1d97981c bio_chain +EXPORT_SYMBOL vmlinux 0x1d6815ba d_exact_alias +EXPORT_SYMBOL vmlinux 0x1d8a3fa9 udp_flush_pending_frames +EXPORT_SYMBOL vmlinux 0x1d92c77c blk_mq_delay_run_hw_queue +EXPORT_SYMBOL vmlinux 0x1d967436 pci_scan_root_bus +EXPORT_SYMBOL vmlinux 0x1da13955 pcim_iomap_table +EXPORT_SYMBOL vmlinux 0x1db1e9c2 nf_unregister_sockopt EXPORT_SYMBOL vmlinux 0x1db7706b __copy_user_nocache -EXPORT_SYMBOL vmlinux 0x1dbd9cc3 pci_resize_resource -EXPORT_SYMBOL vmlinux 0x1dc5f0ca napi_gro_receive EXPORT_SYMBOL vmlinux 0x1dc6c93b lookup_user_key -EXPORT_SYMBOL vmlinux 0x1dce451a d_drop EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap -EXPORT_SYMBOL vmlinux 0x1ddd643c flow_hash_from_keys -EXPORT_SYMBOL vmlinux 0x1de4058f bio_alloc_bioset +EXPORT_SYMBOL vmlinux 0x1dd85ded nobh_write_end EXPORT_SYMBOL vmlinux 0x1de4ccb2 get_sg_io_hdr -EXPORT_SYMBOL vmlinux 0x1de5006d ip_output -EXPORT_SYMBOL vmlinux 0x1de5462b blk_pre_runtime_suspend -EXPORT_SYMBOL vmlinux 0x1dea8dd6 acpi_bus_register_driver -EXPORT_SYMBOL vmlinux 0x1df96796 skb_pull -EXPORT_SYMBOL vmlinux 0x1dfa03b4 iov_iter_get_pages_alloc -EXPORT_SYMBOL vmlinux 0x1e074c00 __neigh_for_each_release +EXPORT_SYMBOL vmlinux 0x1e094a0e _dev_notice EXPORT_SYMBOL vmlinux 0x1e0a0c24 mod_timer_pending +EXPORT_SYMBOL vmlinux 0x1e0ba273 security_socket_socketpair EXPORT_SYMBOL vmlinux 0x1e0cd7fe acpi_detach_data -EXPORT_SYMBOL vmlinux 0x1e1852a1 sock_cmsg_send EXPORT_SYMBOL vmlinux 0x1e1e140e ns_to_timespec64 -EXPORT_SYMBOL vmlinux 0x1e443b5c tcp_sock_set_keepcnt -EXPORT_SYMBOL vmlinux 0x1e5060df __scsi_execute -EXPORT_SYMBOL vmlinux 0x1e5351d0 __free_pages +EXPORT_SYMBOL vmlinux 0x1e21f57b devfreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x1e288775 twl6040_get_pll +EXPORT_SYMBOL vmlinux 0x1e36ccef complete_request_key EXPORT_SYMBOL vmlinux 0x1e6adaa0 bitmap_print_bitmask_to_buf EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr -EXPORT_SYMBOL vmlinux 0x1e7b10a8 pci_bus_set_ops -EXPORT_SYMBOL vmlinux 0x1e8124db lock_page_memcg +EXPORT_SYMBOL vmlinux 0x1e70593a tcf_get_next_proto +EXPORT_SYMBOL vmlinux 0x1e7e1f8d init_net +EXPORT_SYMBOL vmlinux 0x1e99300b __test_set_page_writeback +EXPORT_SYMBOL vmlinux 0x1e9a380e configfs_depend_item +EXPORT_SYMBOL vmlinux 0x1e9cc913 xfrm_state_lookup EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu +EXPORT_SYMBOL vmlinux 0x1ea3d0d3 pci_bus_find_capability +EXPORT_SYMBOL vmlinux 0x1eb1e3a6 __mdiobus_read EXPORT_SYMBOL vmlinux 0x1eb922a3 IO_APIC_get_PCI_irq_vector -EXPORT_SYMBOL vmlinux 0x1ebba61f sock_create -EXPORT_SYMBOL vmlinux 0x1ebf9c5c amd_iommu_domain_enable_v2 -EXPORT_SYMBOL vmlinux 0x1ecb722f i2c_del_adapter -EXPORT_SYMBOL vmlinux 0x1ececc5d sk_alloc -EXPORT_SYMBOL vmlinux 0x1ed7cb3c serio_interrupt +EXPORT_SYMBOL vmlinux 0x1ece534c mmc_run_bkops +EXPORT_SYMBOL vmlinux 0x1ed5cc2e skb_page_frag_refill EXPORT_SYMBOL vmlinux 0x1ed7eb60 __sg_free_table EXPORT_SYMBOL vmlinux 0x1edb69d6 ktime_get_raw_ts64 -EXPORT_SYMBOL vmlinux 0x1ee0e9b2 security_inode_notifysecctx -EXPORT_SYMBOL vmlinux 0x1ee706bb mipi_dsi_dcs_nop -EXPORT_SYMBOL vmlinux 0x1efa8a2e ip6_err_gen_icmpv6_unreach -EXPORT_SYMBOL vmlinux 0x1f08bb15 phy_init_hw -EXPORT_SYMBOL vmlinux 0x1f15811b inet_sendmsg +EXPORT_SYMBOL vmlinux 0x1ee5de39 udp_lib_get_port EXPORT_SYMBOL vmlinux 0x1f199d24 copy_user_generic_string -EXPORT_SYMBOL vmlinux 0x1f42a6e2 eth_header_cache_update -EXPORT_SYMBOL vmlinux 0x1f47f71c blk_rq_count_integrity_sg +EXPORT_SYMBOL vmlinux 0x1f477d20 __dec_zone_page_state EXPORT_SYMBOL vmlinux 0x1f557414 gen_pool_has_addr -EXPORT_SYMBOL vmlinux 0x1f7597f8 skb_checksum_setup -EXPORT_SYMBOL vmlinux 0x1f907011 serio_reconnect -EXPORT_SYMBOL vmlinux 0x1fa2e4e0 neigh_direct_output -EXPORT_SYMBOL vmlinux 0x1fa9ea13 skb_put -EXPORT_SYMBOL vmlinux 0x1fba5f3e seg6_hmac_net_init +EXPORT_SYMBOL vmlinux 0x1f581caf vme_bus_type +EXPORT_SYMBOL vmlinux 0x1f7cb5bf ipv6_chk_addr_and_flags +EXPORT_SYMBOL vmlinux 0x1f934351 kill_block_super EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio +EXPORT_SYMBOL vmlinux 0x1fbd2352 xfrm6_protocol_deregister +EXPORT_SYMBOL vmlinux 0x1fbef312 pci_release_resource EXPORT_SYMBOL vmlinux 0x1fc0cc7c intel_gtt_insert_sg_entries -EXPORT_SYMBOL vmlinux 0x1fc86817 mmc_alloc_host -EXPORT_SYMBOL vmlinux 0x1fcca885 simple_release_fs +EXPORT_SYMBOL vmlinux 0x1fc249b2 keyring_alloc +EXPORT_SYMBOL vmlinux 0x1fcd69a4 tcf_idr_create_from_flags EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag -EXPORT_SYMBOL vmlinux 0x1fe1bae2 mmc_retune_timer_stop -EXPORT_SYMBOL vmlinux 0x1ff3a806 vm_map_ram +EXPORT_SYMBOL vmlinux 0x1fe634de mdio_driver_register EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul -EXPORT_SYMBOL vmlinux 0x2001a5a2 tty_unregister_ldisc -EXPORT_SYMBOL vmlinux 0x200605fc udp6_set_csum -EXPORT_SYMBOL vmlinux 0x200a8599 __task_pid_nr_ns EXPORT_SYMBOL vmlinux 0x200b2041 in6addr_any -EXPORT_SYMBOL vmlinux 0x2030adf6 pcix_set_mmrbc -EXPORT_SYMBOL vmlinux 0x2043271f filemap_map_pages +EXPORT_SYMBOL vmlinux 0x202e6d3c d_find_alias +EXPORT_SYMBOL vmlinux 0x202e7e0b pci_request_region +EXPORT_SYMBOL vmlinux 0x203c1bcf pci_enable_device EXPORT_SYMBOL vmlinux 0x20463df4 wait_for_completion_killable EXPORT_SYMBOL vmlinux 0x204af5b5 netlbl_audit_start EXPORT_SYMBOL vmlinux 0x204c19f5 tcp_alloc_md5sig_pool EXPORT_SYMBOL vmlinux 0x204c5067 scsi_dev_info_add_list -EXPORT_SYMBOL vmlinux 0x205ffea8 __netif_napi_del -EXPORT_SYMBOL vmlinux 0x20681893 __tty_alloc_driver -EXPORT_SYMBOL vmlinux 0x207e4507 pagecache_isize_extended -EXPORT_SYMBOL vmlinux 0x2081f937 mdiobus_write -EXPORT_SYMBOL vmlinux 0x2088a476 param_set_copystring -EXPORT_SYMBOL vmlinux 0x20a0dc0a __fs_parse -EXPORT_SYMBOL vmlinux 0x20a724f2 cdrom_number_of_slots +EXPORT_SYMBOL vmlinux 0x2052e9ce mdiobus_scan +EXPORT_SYMBOL vmlinux 0x20859c60 fs_param_is_u32 +EXPORT_SYMBOL vmlinux 0x2089e1a9 blk_execute_rq +EXPORT_SYMBOL vmlinux 0x209540ee netif_set_xps_queue EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data -EXPORT_SYMBOL vmlinux 0x20b828cc vme_dma_list_add EXPORT_SYMBOL vmlinux 0x20ba4f3e rdmsr_on_cpu +EXPORT_SYMBOL vmlinux 0x20bd7e68 eisa_driver_register +EXPORT_SYMBOL vmlinux 0x20c0aca3 __mod_node_page_state EXPORT_SYMBOL vmlinux 0x20cbb30a __percpu_counter_init -EXPORT_SYMBOL vmlinux 0x20d41367 give_up_console -EXPORT_SYMBOL vmlinux 0x20d5c498 rproc_elf_find_loaded_rsc_table EXPORT_SYMBOL vmlinux 0x20d65e40 fb_find_nearest_mode +EXPORT_SYMBOL vmlinux 0x20e52b26 sock_diag_put_filterinfo EXPORT_SYMBOL vmlinux 0x20eadeb6 ip_compute_csum +EXPORT_SYMBOL vmlinux 0x20edf6c2 __napi_schedule_irqoff +EXPORT_SYMBOL vmlinux 0x20f1a878 dev_get_stats EXPORT_SYMBOL vmlinux 0x20fff6ec ZSTD_DStreamInSize +EXPORT_SYMBOL vmlinux 0x21013503 file_write_and_wait_range EXPORT_SYMBOL vmlinux 0x21059cd7 audit_log_task_context -EXPORT_SYMBOL vmlinux 0x2109330d __put_user_ns EXPORT_SYMBOL vmlinux 0x211130c1 alloc_cpumask_var +EXPORT_SYMBOL vmlinux 0x21126970 phy_set_max_speed +EXPORT_SYMBOL vmlinux 0x211f8ab1 param_set_charp +EXPORT_SYMBOL vmlinux 0x21259460 agp_free_memory EXPORT_SYMBOL vmlinux 0x21271fd0 copy_user_enhanced_fast_string -EXPORT_SYMBOL vmlinux 0x213355e8 fs_param_is_blockdev +EXPORT_SYMBOL vmlinux 0x212c2331 file_remove_privs +EXPORT_SYMBOL vmlinux 0x2134d33e devfreq_register_notifier +EXPORT_SYMBOL vmlinux 0x2136111f i2c_smbus_read_word_data EXPORT_SYMBOL vmlinux 0x213a738d memregion_alloc EXPORT_SYMBOL vmlinux 0x213e4965 ps2_is_keyboard_id -EXPORT_SYMBOL vmlinux 0x2143bc7f dquot_reclaim_space_nodirty -EXPORT_SYMBOL vmlinux 0x214b1121 nd_region_acquire_lane +EXPORT_SYMBOL vmlinux 0x2143dd7e filemap_fdatawrite_range +EXPORT_SYMBOL vmlinux 0x2144d42e i2c_smbus_read_byte +EXPORT_SYMBOL vmlinux 0x21471aab __SCK__tp_func_dma_fence_emit EXPORT_SYMBOL vmlinux 0x215a8ec8 slhc_init +EXPORT_SYMBOL vmlinux 0x215c420d mpage_writepage EXPORT_SYMBOL vmlinux 0x2177bd71 acpi_disable_event +EXPORT_SYMBOL vmlinux 0x21788ff3 build_skb EXPORT_SYMBOL vmlinux 0x218e600b pci_add_resource_offset -EXPORT_SYMBOL vmlinux 0x219a4d5f vme_unregister_bridge -EXPORT_SYMBOL vmlinux 0x219b34cd always_delete_dentry -EXPORT_SYMBOL vmlinux 0x219e56b6 param_get_invbool -EXPORT_SYMBOL vmlinux 0x21addb35 inet_dgram_connect -EXPORT_SYMBOL vmlinux 0x21bb4195 mmc_request_done -EXPORT_SYMBOL vmlinux 0x21bbbbe1 km_query +EXPORT_SYMBOL vmlinux 0x21a5148c set_cached_acl +EXPORT_SYMBOL vmlinux 0x21b297f0 mipi_dsi_host_register EXPORT_SYMBOL vmlinux 0x21bdb523 errseq_check_and_advance EXPORT_SYMBOL vmlinux 0x21be37e1 hdmi_avi_infoframe_check -EXPORT_SYMBOL vmlinux 0x21cfbef8 console_stop -EXPORT_SYMBOL vmlinux 0x21e02b13 __ip_dev_find +EXPORT_SYMBOL vmlinux 0x21cb163d setup_new_exec +EXPORT_SYMBOL vmlinux 0x21d1d9b2 fb_find_mode EXPORT_SYMBOL vmlinux 0x21e13cb3 inet_peer_xrlim_allow -EXPORT_SYMBOL vmlinux 0x21e1b2ae iov_iter_single_seg_count -EXPORT_SYMBOL vmlinux 0x21eac0d1 xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x21e77b72 notify_change EXPORT_SYMBOL vmlinux 0x21ef374c try_wait_for_completion -EXPORT_SYMBOL vmlinux 0x21f1b858 set_user_nice -EXPORT_SYMBOL vmlinux 0x21f67329 register_mii_timestamper -EXPORT_SYMBOL vmlinux 0x21fb1a9a __hw_addr_sync_dev -EXPORT_SYMBOL vmlinux 0x21fe89ca import_iovec -EXPORT_SYMBOL vmlinux 0x2219d63b nf_ip6_checksum -EXPORT_SYMBOL vmlinux 0x221e4ab9 dev_trans_start +EXPORT_SYMBOL vmlinux 0x21f6d7c3 rproc_of_resm_mem_entry_init +EXPORT_SYMBOL vmlinux 0x2201f1f5 bioset_exit +EXPORT_SYMBOL vmlinux 0x221db308 backlight_device_get_by_type +EXPORT_SYMBOL vmlinux 0x222ddca8 device_add_disk EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq EXPORT_SYMBOL vmlinux 0x2234ca51 acpi_match_platform_list -EXPORT_SYMBOL vmlinux 0x2238a7ee deactivate_locked_super -EXPORT_SYMBOL vmlinux 0x224d83a3 pci_enable_device_io -EXPORT_SYMBOL vmlinux 0x224e125c serial8250_register_8250_port -EXPORT_SYMBOL vmlinux 0x225a3aa9 acpi_dev_get_next_match_dev -EXPORT_SYMBOL vmlinux 0x227d8f11 bio_put -EXPORT_SYMBOL vmlinux 0x22816cb3 d_alloc_name -EXPORT_SYMBOL vmlinux 0x2286cf3f phy_attached_info -EXPORT_SYMBOL vmlinux 0x228e62fe kmem_cache_shrink -EXPORT_SYMBOL vmlinux 0x22951231 input_mt_destroy_slots -EXPORT_SYMBOL vmlinux 0x22aa58d7 i2c_verify_client +EXPORT_SYMBOL vmlinux 0x223af750 tty_flip_buffer_push +EXPORT_SYMBOL vmlinux 0x223dd4ba jbd2_journal_begin_ordered_truncate +EXPORT_SYMBOL vmlinux 0x22422010 napi_enable +EXPORT_SYMBOL vmlinux 0x225afc69 inode_permission +EXPORT_SYMBOL vmlinux 0x2284f317 flow_block_cb_lookup +EXPORT_SYMBOL vmlinux 0x228c8d3f fb_set_var +EXPORT_SYMBOL vmlinux 0x228e4e38 input_mt_report_pointer_emulation +EXPORT_SYMBOL vmlinux 0x22abd4f5 tty_port_alloc_xmit_buf EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound -EXPORT_SYMBOL vmlinux 0x22b96b23 make_bad_inode -EXPORT_SYMBOL vmlinux 0x22cace45 __qdisc_calculate_pkt_len -EXPORT_SYMBOL vmlinux 0x22d8f0b0 bioset_integrity_create -EXPORT_SYMBOL vmlinux 0x22dc4855 rt_dst_clone +EXPORT_SYMBOL vmlinux 0x22c41af9 sock_set_keepalive EXPORT_SYMBOL vmlinux 0x22de4931 amd_iommu_register_ga_log_notifier -EXPORT_SYMBOL vmlinux 0x2341c9e9 __dec_node_page_state -EXPORT_SYMBOL vmlinux 0x235d480f ip6_output +EXPORT_SYMBOL vmlinux 0x22ec1cf7 qdisc_create_dflt +EXPORT_SYMBOL vmlinux 0x2311bd53 misc_register +EXPORT_SYMBOL vmlinux 0x232518a3 pci_unmap_rom EXPORT_SYMBOL vmlinux 0x2364c85a tasklet_init -EXPORT_SYMBOL vmlinux 0x23675e5a pnp_request_card_device +EXPORT_SYMBOL vmlinux 0x2369303b __inc_zone_page_state +EXPORT_SYMBOL vmlinux 0x2371d1c3 vfio_pin_pages +EXPORT_SYMBOL vmlinux 0x2372ef0e pm860x_page_reg_write EXPORT_SYMBOL vmlinux 0x237a0b5c __traceiter_dma_fence_signaled -EXPORT_SYMBOL vmlinux 0x237fcd24 netif_schedule_queue -EXPORT_SYMBOL vmlinux 0x2382b090 register_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x23848dc1 rproc_elf_load_rsc_table EXPORT_SYMBOL vmlinux 0x238b099f mipi_dsi_packet_format_is_short -EXPORT_SYMBOL vmlinux 0x2396ebf0 vga_put -EXPORT_SYMBOL vmlinux 0x239930f0 pci_request_selected_regions -EXPORT_SYMBOL vmlinux 0x23b4bcaa open_with_fake_path +EXPORT_SYMBOL vmlinux 0x23b4ca12 get_agp_version EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path -EXPORT_SYMBOL vmlinux 0x23bfce4d param_set_bint EXPORT_SYMBOL vmlinux 0x23cabbb1 register_sysctl_paths +EXPORT_SYMBOL vmlinux 0x23d29aaa filemap_write_and_wait_range +EXPORT_SYMBOL vmlinux 0x23d44269 uart_get_baud_rate +EXPORT_SYMBOL vmlinux 0x23d62b34 seq_bprintf EXPORT_SYMBOL vmlinux 0x23daa989 mipi_dsi_create_packet +EXPORT_SYMBOL vmlinux 0x23e57293 ppp_unregister_channel +EXPORT_SYMBOL vmlinux 0x23ecb8bd dquot_get_dqblk EXPORT_SYMBOL vmlinux 0x23ee13fd mb_cache_entry_find_first -EXPORT_SYMBOL vmlinux 0x23efe0fd pci_request_irq -EXPORT_SYMBOL vmlinux 0x23f2c1a1 md_done_sync -EXPORT_SYMBOL vmlinux 0x23fafb37 generic_listxattr EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node -EXPORT_SYMBOL vmlinux 0x24151a65 napi_disable -EXPORT_SYMBOL vmlinux 0x241540cb generic_file_fsync +EXPORT_SYMBOL vmlinux 0x24109533 sock_wmalloc +EXPORT_SYMBOL vmlinux 0x241d672a pci_assign_resource +EXPORT_SYMBOL vmlinux 0x241dc0ee fb_prepare_logo EXPORT_SYMBOL vmlinux 0x24212d86 __frontswap_invalidate_page -EXPORT_SYMBOL vmlinux 0x242c2ed9 migrate_page_copy -EXPORT_SYMBOL vmlinux 0x2442986b cdrom_release -EXPORT_SYMBOL vmlinux 0x244298bb end_buffer_read_sync -EXPORT_SYMBOL vmlinux 0x245376ad pci_iomap_range -EXPORT_SYMBOL vmlinux 0x2453ff15 jbd2_log_wait_commit +EXPORT_SYMBOL vmlinux 0x2423608b pcie_relaxed_ordering_enabled +EXPORT_SYMBOL vmlinux 0x2456aef9 hash_and_copy_to_iter EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline -EXPORT_SYMBOL vmlinux 0x245e438f param_get_int -EXPORT_SYMBOL vmlinux 0x246e6b12 inet_del_protocol +EXPORT_SYMBOL vmlinux 0x245e92cb setattr_copy +EXPORT_SYMBOL vmlinux 0x24746c74 udp_seq_stop EXPORT_SYMBOL vmlinux 0x2484adc3 __kfifo_to_user_r -EXPORT_SYMBOL vmlinux 0x248a96b5 jbd2_journal_init_jbd_inode -EXPORT_SYMBOL vmlinux 0x24b5b34b phy_init_eee -EXPORT_SYMBOL vmlinux 0x24c28817 pci_release_selected_regions -EXPORT_SYMBOL vmlinux 0x24ca9cac phy_device_free +EXPORT_SYMBOL vmlinux 0x24855ced inet6_csk_route_req +EXPORT_SYMBOL vmlinux 0x24a02746 vme_irq_free +EXPORT_SYMBOL vmlinux 0x24a0a594 posix_acl_update_mode +EXPORT_SYMBOL vmlinux 0x24b92048 mini_qdisc_pair_init EXPORT_SYMBOL vmlinux 0x24d273d1 add_timer +EXPORT_SYMBOL vmlinux 0x24d5b209 sock_no_linger +EXPORT_SYMBOL vmlinux 0x24e15244 ipv6_dev_mc_inc +EXPORT_SYMBOL vmlinux 0x24e32c78 tcp_enter_cwr +EXPORT_SYMBOL vmlinux 0x24e5fb7a dquot_alloc_inode +EXPORT_SYMBOL vmlinux 0x2504d6c3 dev_uc_unsync EXPORT_SYMBOL vmlinux 0x2505bf18 kstrtol_from_user -EXPORT_SYMBOL vmlinux 0x252662de mmc_get_card -EXPORT_SYMBOL vmlinux 0x252fbd8c eth_platform_get_mac_address -EXPORT_SYMBOL vmlinux 0x253cea1a mipi_dsi_dcs_exit_sleep_mode -EXPORT_SYMBOL vmlinux 0x25587c41 tso_start -EXPORT_SYMBOL vmlinux 0x256985fe pps_lookup_dev -EXPORT_SYMBOL vmlinux 0x256ea597 bio_integrity_add_page -EXPORT_SYMBOL vmlinux 0x25703e54 lease_modify -EXPORT_SYMBOL vmlinux 0x257777c9 mipi_dsi_attach -EXPORT_SYMBOL vmlinux 0x257db53e setup_arg_pages +EXPORT_SYMBOL vmlinux 0x25352553 unregister_quota_format +EXPORT_SYMBOL vmlinux 0x25546b2c stream_open +EXPORT_SYMBOL vmlinux 0x255ce15f agp_collect_device_status +EXPORT_SYMBOL vmlinux 0x2572b7c8 jbd2_journal_forget +EXPORT_SYMBOL vmlinux 0x257a1102 blk_mq_queue_stopped EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid -EXPORT_SYMBOL vmlinux 0x2589bd46 sock_init_data +EXPORT_SYMBOL vmlinux 0x2583ddb8 tty_lock +EXPORT_SYMBOL vmlinux 0x2587f690 i8042_install_filter EXPORT_SYMBOL vmlinux 0x258a2c02 _raw_write_trylock EXPORT_SYMBOL vmlinux 0x258d2f76 net_dim_get_tx_moderation -EXPORT_SYMBOL vmlinux 0x25905f46 blk_mq_delay_kick_requeue_list EXPORT_SYMBOL vmlinux 0x25974000 wait_for_completion -EXPORT_SYMBOL vmlinux 0x25a661f2 xfrm_state_delete -EXPORT_SYMBOL vmlinux 0x25ab36f2 inet_proto_csum_replace16 -EXPORT_SYMBOL vmlinux 0x25d2fa35 cdrom_mode_select -EXPORT_SYMBOL vmlinux 0x25d68f1c simple_transaction_release +EXPORT_SYMBOL vmlinux 0x25a182b7 bio_add_pc_page +EXPORT_SYMBOL vmlinux 0x25ba90a9 sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0x25d0812b alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0x25d810ff write_dirty_buffer EXPORT_SYMBOL vmlinux 0x25db1577 do_trace_write_msr +EXPORT_SYMBOL vmlinux 0x25e3f931 rproc_shutdown EXPORT_SYMBOL vmlinux 0x25e58a09 hdmi_avi_infoframe_init -EXPORT_SYMBOL vmlinux 0x25e7adef nf_unregister_net_hooks +EXPORT_SYMBOL vmlinux 0x25e6603a km_policy_expired EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free -EXPORT_SYMBOL vmlinux 0x260416d8 clear_page_dirty_for_io +EXPORT_SYMBOL vmlinux 0x2606cecd pagecache_write_end EXPORT_SYMBOL vmlinux 0x260a095a __sg_alloc_table -EXPORT_SYMBOL vmlinux 0x26180d26 rproc_remove_subdev -EXPORT_SYMBOL vmlinux 0x261fcb91 __vfs_removexattr -EXPORT_SYMBOL vmlinux 0x26277080 file_ns_capable -EXPORT_SYMBOL vmlinux 0x2631982c writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0x260e37ff register_md_cluster_operations EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions EXPORT_SYMBOL vmlinux 0x263c3152 bcmp -EXPORT_SYMBOL vmlinux 0x263e5d9c seq_release_private -EXPORT_SYMBOL vmlinux 0x26486ff5 add_watch_to_object -EXPORT_SYMBOL vmlinux 0x266240eb proc_set_user -EXPORT_SYMBOL vmlinux 0x2671c790 rdmacg_uncharge -EXPORT_SYMBOL vmlinux 0x267c17a9 phy_device_create -EXPORT_SYMBOL vmlinux 0x26851723 scsi_ioctl +EXPORT_SYMBOL vmlinux 0x26556bab pci_set_master +EXPORT_SYMBOL vmlinux 0x2663433d tcp_sock_set_keepintvl +EXPORT_SYMBOL vmlinux 0x266a1918 jbd2_wait_inode_data +EXPORT_SYMBOL vmlinux 0x2676b013 xfrm6_rcv_spi EXPORT_SYMBOL vmlinux 0x2688ec10 bitmap_zalloc -EXPORT_SYMBOL vmlinux 0x268fed2b tcp_simple_retransmit -EXPORT_SYMBOL vmlinux 0x269e11e1 key_unlink -EXPORT_SYMBOL vmlinux 0x26b5c032 qdisc_class_hash_grow -EXPORT_SYMBOL vmlinux 0x26b72fa5 dump_emit -EXPORT_SYMBOL vmlinux 0x26bd1caf __hw_addr_unsync_dev +EXPORT_SYMBOL vmlinux 0x26c3fd6b tty_unregister_ldisc EXPORT_SYMBOL vmlinux 0x26cc73c3 complete_and_exit -EXPORT_SYMBOL vmlinux 0x26ccac39 fddi_type_trans -EXPORT_SYMBOL vmlinux 0x26d99738 udp_seq_next EXPORT_SYMBOL vmlinux 0x26e298e0 unregister_memory_notifier EXPORT_SYMBOL vmlinux 0x26f8f0b8 iowrite16be +EXPORT_SYMBOL vmlinux 0x2706491a lease_modify EXPORT_SYMBOL vmlinux 0x270cf88f dump_stack_lvl -EXPORT_SYMBOL vmlinux 0x27161ef6 neigh_for_each EXPORT_SYMBOL vmlinux 0x271cba95 acpi_bus_private_data_handler -EXPORT_SYMBOL vmlinux 0x27251cb2 nd_btt_version +EXPORT_SYMBOL vmlinux 0x27206e8c fs_context_for_reconfigure EXPORT_SYMBOL vmlinux 0x272a8933 udp_memory_allocated -EXPORT_SYMBOL vmlinux 0x272b42b5 tcf_get_next_chain -EXPORT_SYMBOL vmlinux 0x2732a24e t10_pi_type3_ip +EXPORT_SYMBOL vmlinux 0x273344e3 jbd2_transaction_committed EXPORT_SYMBOL vmlinux 0x2733eaf7 scsi_dev_info_list_add_keyed +EXPORT_SYMBOL vmlinux 0x27407de3 proc_remove +EXPORT_SYMBOL vmlinux 0x2744b429 scsi_ioctl EXPORT_SYMBOL vmlinux 0x27479d14 param_free_charp -EXPORT_SYMBOL vmlinux 0x274ed669 generic_delete_inode -EXPORT_SYMBOL vmlinux 0x2750e665 pm860x_page_bulk_read -EXPORT_SYMBOL vmlinux 0x275a3ee7 __sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0x274803e9 inet6_offloads EXPORT_SYMBOL vmlinux 0x275f3d49 hdmi_vendor_infoframe_check -EXPORT_SYMBOL vmlinux 0x27616a24 blk_mq_run_hw_queue -EXPORT_SYMBOL vmlinux 0x27635ce3 netdev_lower_get_next -EXPORT_SYMBOL vmlinux 0x27705c5f get_acl +EXPORT_SYMBOL vmlinux 0x2766b7cc pci_enable_device_io +EXPORT_SYMBOL vmlinux 0x27690119 mdio_device_create +EXPORT_SYMBOL vmlinux 0x276f6d64 __mdiobus_write EXPORT_SYMBOL vmlinux 0x27756bc8 scsi_sanitize_inquiry_string +EXPORT_SYMBOL vmlinux 0x27810252 input_match_device_id 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 0x278ff9d6 inc_zone_page_state -EXPORT_SYMBOL vmlinux 0x27928dcf xfrm_policy_register_afinfo -EXPORT_SYMBOL vmlinux 0x2796bc91 in_dev_finish_destroy -EXPORT_SYMBOL vmlinux 0x27a1496b seq_hex_dump -EXPORT_SYMBOL vmlinux 0x27a163b4 register_nexthop_notifier -EXPORT_SYMBOL vmlinux 0x27a2a460 pcibios_resource_to_bus +EXPORT_SYMBOL vmlinux 0x27865bfb vlan_dev_real_dev +EXPORT_SYMBOL vmlinux 0x2789b180 __sk_backlog_rcv +EXPORT_SYMBOL vmlinux 0x2790291c param_ops_byte +EXPORT_SYMBOL vmlinux 0x27a0290c ptp_find_pin EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync -EXPORT_SYMBOL vmlinux 0x27c425c1 mipi_dsi_device_register_full +EXPORT_SYMBOL vmlinux 0x27bd670a input_set_capability +EXPORT_SYMBOL vmlinux 0x27c5d88a key_link EXPORT_SYMBOL vmlinux 0x27cdca93 pci_add_resource -EXPORT_SYMBOL vmlinux 0x27d32a9d touchscreen_parse_properties -EXPORT_SYMBOL vmlinux 0x27e33eb6 xfrm_sad_getinfo -EXPORT_SYMBOL vmlinux 0x27eb9416 inet_csk_complete_hashdance -EXPORT_SYMBOL vmlinux 0x27ef8be7 i2c_smbus_read_i2c_block_data -EXPORT_SYMBOL vmlinux 0x2813ccf7 block_page_mkwrite -EXPORT_SYMBOL vmlinux 0x28159118 phy_attach_direct +EXPORT_SYMBOL vmlinux 0x27d075d2 pldmfw_op_pci_match_record +EXPORT_SYMBOL vmlinux 0x27d47fa6 max8998_bulk_read +EXPORT_SYMBOL vmlinux 0x27d4eb5e sg_miter_start +EXPORT_SYMBOL vmlinux 0x27e49661 __free_pages +EXPORT_SYMBOL vmlinux 0x27f244c9 tty_port_close +EXPORT_SYMBOL vmlinux 0x27ff1079 vme_master_mmap EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek -EXPORT_SYMBOL vmlinux 0x28402fb4 eth_header -EXPORT_SYMBOL vmlinux 0x284733fa nf_setsockopt -EXPORT_SYMBOL vmlinux 0x284a94a7 iov_iter_zero +EXPORT_SYMBOL vmlinux 0x282c534e iw_handler_get_thrspy +EXPORT_SYMBOL vmlinux 0x2838468f skb_checksum_trimmed +EXPORT_SYMBOL vmlinux 0x28466e52 page_pool_put_page_bulk EXPORT_SYMBOL vmlinux 0x284faa6b __x86_indirect_thunk_r11 -EXPORT_SYMBOL vmlinux 0x2851ce95 tso_count_descs -EXPORT_SYMBOL vmlinux 0x285377fe d_exact_alias -EXPORT_SYMBOL vmlinux 0x2858f4bb dev_vprintk_emit -EXPORT_SYMBOL vmlinux 0x285cf177 fs_param_is_s32 -EXPORT_SYMBOL vmlinux 0x2863262f xp_dma_sync_for_cpu_slow -EXPORT_SYMBOL vmlinux 0x2863a08a pci_unmap_rom EXPORT_SYMBOL vmlinux 0x2875a315 utf32_to_utf8 -EXPORT_SYMBOL vmlinux 0x287d476d netlink_unicast -EXPORT_SYMBOL vmlinux 0x288ab9e2 dev_get_by_name_rcu -EXPORT_SYMBOL vmlinux 0x2894cb1e tcp_init_sock -EXPORT_SYMBOL vmlinux 0x28ac8eb2 inet_offloads -EXPORT_SYMBOL vmlinux 0x28d5118e pcie_get_width_cap -EXPORT_SYMBOL vmlinux 0x28d5fb0d address_space_init_once -EXPORT_SYMBOL vmlinux 0x28d807fc tcp_set_rcvlowat +EXPORT_SYMBOL vmlinux 0x2881b5a2 sock_recv_errqueue +EXPORT_SYMBOL vmlinux 0x289d687c eth_header +EXPORT_SYMBOL vmlinux 0x28a9f0c8 pci_request_selected_regions_exclusive +EXPORT_SYMBOL vmlinux 0x28b048f5 update_devfreq +EXPORT_SYMBOL vmlinux 0x28b6f8b5 rproc_add +EXPORT_SYMBOL vmlinux 0x28b88124 touchscreen_report_pos +EXPORT_SYMBOL vmlinux 0x28cb091e dev_activate EXPORT_SYMBOL vmlinux 0x28e09af1 iosf_mbi_available +EXPORT_SYMBOL vmlinux 0x28e69114 param_ops_short +EXPORT_SYMBOL vmlinux 0x28f1f8c2 __cgroup_bpf_run_filter_sock_ops EXPORT_SYMBOL vmlinux 0x28f94604 __ubsan_handle_builtin_unreachable -EXPORT_SYMBOL vmlinux 0x290b55e0 tcp_sock_set_cork +EXPORT_SYMBOL vmlinux 0x2906637f fget EXPORT_SYMBOL vmlinux 0x291ee747 csum_and_copy_to_user +EXPORT_SYMBOL vmlinux 0x2927248f kmem_cache_free EXPORT_SYMBOL vmlinux 0x29332499 __x86_indirect_thunk_rsi -EXPORT_SYMBOL vmlinux 0x29335f76 xp_alloc -EXPORT_SYMBOL vmlinux 0x29475df9 security_sctp_bind_connect -EXPORT_SYMBOL vmlinux 0x2948126b current_task -EXPORT_SYMBOL vmlinux 0x294c4f13 __brelse -EXPORT_SYMBOL vmlinux 0x2959dda2 reuseport_add_sock +EXPORT_SYMBOL vmlinux 0x293e5a7b mmc_free_host +EXPORT_SYMBOL vmlinux 0x2953c4e4 param_set_short +EXPORT_SYMBOL vmlinux 0x295a9c10 xsk_uses_need_wakeup +EXPORT_SYMBOL vmlinux 0x295d7ad8 netlink_broadcast_filtered EXPORT_SYMBOL vmlinux 0x29604158 napi_busy_loop -EXPORT_SYMBOL vmlinux 0x296a217e skb_flow_dissect_hash -EXPORT_SYMBOL vmlinux 0x29945ec1 d_make_root -EXPORT_SYMBOL vmlinux 0x2997b3bc tcf_exts_validate -EXPORT_SYMBOL vmlinux 0x299abc31 add_to_pipe -EXPORT_SYMBOL vmlinux 0x299e80b8 simple_link -EXPORT_SYMBOL vmlinux 0x29a64410 tcp_filter -EXPORT_SYMBOL vmlinux 0x29a857ef scsi_target_quiesce +EXPORT_SYMBOL vmlinux 0x296982df acpi_register_debugger EXPORT_SYMBOL vmlinux 0x29ad8e33 x86_hyper_type +EXPORT_SYMBOL vmlinux 0x29c0af7a inet6_unregister_protosw +EXPORT_SYMBOL vmlinux 0x29ca8bef cfb_copyarea +EXPORT_SYMBOL vmlinux 0x29dcf8be mmc_retune_timer_stop EXPORT_SYMBOL vmlinux 0x29e1e204 hdmi_audio_infoframe_pack -EXPORT_SYMBOL vmlinux 0x29ecc26d disk_end_io_acct -EXPORT_SYMBOL vmlinux 0x2a03520e dma_sync_sg_for_cpu -EXPORT_SYMBOL vmlinux 0x2a125dc8 pci_bus_write_config_word -EXPORT_SYMBOL vmlinux 0x2a12ddb6 md_bitmap_startwrite -EXPORT_SYMBOL vmlinux 0x2a27af2d pnp_disable_dev +EXPORT_SYMBOL vmlinux 0x29ea95d0 set_anon_super_fc +EXPORT_SYMBOL vmlinux 0x2a1417ae param_get_ullong +EXPORT_SYMBOL vmlinux 0x2a157cb5 input_handler_for_each_handle +EXPORT_SYMBOL vmlinux 0x2a19da37 pnp_request_card_device +EXPORT_SYMBOL vmlinux 0x2a20abaf flow_rule_match_tcp +EXPORT_SYMBOL vmlinux 0x2a267b54 pci_dev_get +EXPORT_SYMBOL vmlinux 0x2a2ded6f vfs_iocb_iter_read EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature -EXPORT_SYMBOL vmlinux 0x2a487ec9 nd_region_release_lane -EXPORT_SYMBOL vmlinux 0x2a510d63 blkdev_issue_write_same -EXPORT_SYMBOL vmlinux 0x2a5b4e10 generic_file_open +EXPORT_SYMBOL vmlinux 0x2a3d555e pcie_capability_clear_and_set_dword +EXPORT_SYMBOL vmlinux 0x2a4bf20e neigh_table_init +EXPORT_SYMBOL vmlinux 0x2a59485f amd_iommu_flush_page +EXPORT_SYMBOL vmlinux 0x2a5b4c4a input_set_keycode +EXPORT_SYMBOL vmlinux 0x2a5eb26e igrab EXPORT_SYMBOL vmlinux 0x2a6fa0d0 __SCT__tp_func_module_get -EXPORT_SYMBOL vmlinux 0x2a76b184 vfs_get_super -EXPORT_SYMBOL vmlinux 0x2a773cef nobh_write_begin +EXPORT_SYMBOL vmlinux 0x2a869b30 user_path_create +EXPORT_SYMBOL vmlinux 0x2a88bb34 skb_dequeue +EXPORT_SYMBOL vmlinux 0x2a8ce363 bio_reset +EXPORT_SYMBOL vmlinux 0x2a9477bf blk_mq_init_queue 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 0x2aa71a56 inet_dgram_ops -EXPORT_SYMBOL vmlinux 0x2ab8edcc elv_rb_former_request -EXPORT_SYMBOL vmlinux 0x2ad4408e iterate_dir -EXPORT_SYMBOL vmlinux 0x2adb796c sget_fc -EXPORT_SYMBOL vmlinux 0x2ae61701 dmaengine_get_unmap_data -EXPORT_SYMBOL vmlinux 0x2afbd425 ethtool_op_get_ts_info -EXPORT_SYMBOL vmlinux 0x2b07e84b ps2_begin_command -EXPORT_SYMBOL vmlinux 0x2b0ea4ba ata_print_version -EXPORT_SYMBOL vmlinux 0x2b110144 blk_mq_kick_requeue_list -EXPORT_SYMBOL vmlinux 0x2b21576d blk_queue_flag_clear -EXPORT_SYMBOL vmlinux 0x2b2d4af0 alloc_netdev_mqs -EXPORT_SYMBOL vmlinux 0x2b43fd4a pci_bus_find_capability -EXPORT_SYMBOL vmlinux 0x2b50e6d6 tcp_child_process +EXPORT_SYMBOL vmlinux 0x2ab3cf40 __ip_dev_find +EXPORT_SYMBOL vmlinux 0x2ac217f3 inet_proto_csum_replace16 +EXPORT_SYMBOL vmlinux 0x2ac6067b amd_iommu_domain_clear_gcr3 +EXPORT_SYMBOL vmlinux 0x2adb5b70 md_bitmap_close_sync +EXPORT_SYMBOL vmlinux 0x2aded526 __tracepoint_mmap_lock_start_locking +EXPORT_SYMBOL vmlinux 0x2aeec88f page_pool_alloc_frag +EXPORT_SYMBOL vmlinux 0x2b20affc scsi_change_queue_depth +EXPORT_SYMBOL vmlinux 0x2b389b5b phy_drivers_register +EXPORT_SYMBOL vmlinux 0x2b3d898d fb_get_mode +EXPORT_SYMBOL vmlinux 0x2b457862 serial8250_set_isa_configurator +EXPORT_SYMBOL vmlinux 0x2b46c933 pcie_capability_write_word +EXPORT_SYMBOL vmlinux 0x2b500394 ip6tun_encaps EXPORT_SYMBOL vmlinux 0x2b593aa8 gen_pool_alloc_algo_owner +EXPORT_SYMBOL vmlinux 0x2b5c3f1a ww_mutex_lock EXPORT_SYMBOL vmlinux 0x2b68bd2f del_timer EXPORT_SYMBOL vmlinux 0x2b6f0962 __cpu_dying_mask -EXPORT_SYMBOL vmlinux 0x2b7af7d3 sock_alloc_send_pskb -EXPORT_SYMBOL vmlinux 0x2b7ca09a generic_cont_expand_simple -EXPORT_SYMBOL vmlinux 0x2b993e7a __wait_on_buffer +EXPORT_SYMBOL vmlinux 0x2b7d9f9b security_inode_notifysecctx +EXPORT_SYMBOL vmlinux 0x2b8ad416 d_find_any_alias EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock -EXPORT_SYMBOL vmlinux 0x2b9f01c0 param_ops_long -EXPORT_SYMBOL vmlinux 0x2baa0545 ip_getsockopt -EXPORT_SYMBOL vmlinux 0x2baa402f dup_iter -EXPORT_SYMBOL vmlinux 0x2bb2f015 vme_register_driver -EXPORT_SYMBOL vmlinux 0x2bb3064f set_pages_array_wb EXPORT_SYMBOL vmlinux 0x2bb6099e dq_data_lock -EXPORT_SYMBOL vmlinux 0x2bbab015 param_ops_string EXPORT_SYMBOL vmlinux 0x2bd60ab9 acpi_reset +EXPORT_SYMBOL vmlinux 0x2bdbaa6e __tcf_em_tree_match +EXPORT_SYMBOL vmlinux 0x2be25fa0 ip_getsockopt +EXPORT_SYMBOL vmlinux 0x2bec7a0c get_acl +EXPORT_SYMBOL vmlinux 0x2bfddadb blkdev_compat_ptr_ioctl +EXPORT_SYMBOL vmlinux 0x2c158c96 param_ops_invbool +EXPORT_SYMBOL vmlinux 0x2c1afc1f prepare_to_swait_exclusive EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar -EXPORT_SYMBOL vmlinux 0x2c34ec01 vfs_get_tree -EXPORT_SYMBOL vmlinux 0x2c418b78 file_update_time -EXPORT_SYMBOL vmlinux 0x2c45c4aa nd_device_unregister -EXPORT_SYMBOL vmlinux 0x2c4bee0e sg_miter_stop -EXPORT_SYMBOL vmlinux 0x2c4d15fd noop_llseek +EXPORT_SYMBOL vmlinux 0x2c3df783 udp_ioctl +EXPORT_SYMBOL vmlinux 0x2c447a17 acpi_get_hp_hw_control_from_firmware EXPORT_SYMBOL vmlinux 0x2c541e7b radix_tree_next_chunk +EXPORT_SYMBOL vmlinux 0x2c6c7c80 sync_inodes_sb EXPORT_SYMBOL vmlinux 0x2c71fbfb proc_dobool +EXPORT_SYMBOL vmlinux 0x2c792d3d vme_slot_num +EXPORT_SYMBOL vmlinux 0x2c886f8f blk_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x2ca53a52 netdev_refcnt_read +EXPORT_SYMBOL vmlinux 0x2ca8b7f3 skb_checksum_help EXPORT_SYMBOL vmlinux 0x2caf63d1 topology_phys_to_logical_die -EXPORT_SYMBOL vmlinux 0x2cbfbc6a netdev_name_node_alt_destroy -EXPORT_SYMBOL vmlinux 0x2cc9c25f sock_no_sendpage +EXPORT_SYMBOL vmlinux 0x2cc847b7 xfrm_lookup_with_ifid EXPORT_SYMBOL vmlinux 0x2ccd059a dim_on_top +EXPORT_SYMBOL vmlinux 0x2ccddd3c rproc_free EXPORT_SYMBOL vmlinux 0x2cdf87a1 proc_dointvec_minmax -EXPORT_SYMBOL vmlinux 0x2ce5014f vfs_path_lookup +EXPORT_SYMBOL vmlinux 0x2cf0107e refresh_frequency_limits EXPORT_SYMBOL vmlinux 0x2cf0f2cc config_item_init_type_name -EXPORT_SYMBOL vmlinux 0x2d0c6fc4 mdio_device_remove +EXPORT_SYMBOL vmlinux 0x2cf1c111 serial8250_do_set_termios +EXPORT_SYMBOL vmlinux 0x2cff9e27 dev_get_phys_port_name +EXPORT_SYMBOL vmlinux 0x2d066a7d dma_resv_reserve_shared +EXPORT_SYMBOL vmlinux 0x2d1221ef blk_mq_stop_hw_queue EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock -EXPORT_SYMBOL vmlinux 0x2d152563 d_find_alias EXPORT_SYMBOL vmlinux 0x2d192c70 sg_zero_buffer +EXPORT_SYMBOL vmlinux 0x2d1a10f3 flow_rule_match_ip EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged EXPORT_SYMBOL vmlinux 0x2d3385d3 system_wq EXPORT_SYMBOL vmlinux 0x2d39b0a7 kstrdup -EXPORT_SYMBOL vmlinux 0x2d3d5894 tty_schedule_flip +EXPORT_SYMBOL vmlinux 0x2d43e417 skb_flow_get_icmp_tci EXPORT_SYMBOL vmlinux 0x2d4c773a hdmi_spd_infoframe_init EXPORT_SYMBOL vmlinux 0x2d4daef5 find_font -EXPORT_SYMBOL vmlinux 0x2d5170e6 key_reject_and_link -EXPORT_SYMBOL vmlinux 0x2d631386 jbd2_journal_submit_inode_data_buffers -EXPORT_SYMBOL vmlinux 0x2d6aa4b3 sk_stream_wait_close -EXPORT_SYMBOL vmlinux 0x2d7b16a2 blk_rq_map_user_iov +EXPORT_SYMBOL vmlinux 0x2d54a811 secure_tcpv6_ts_off +EXPORT_SYMBOL vmlinux 0x2d62c52d dma_resv_add_shared_fence +EXPORT_SYMBOL vmlinux 0x2d6a3ac8 pci_enable_ptm EXPORT_SYMBOL vmlinux 0x2d912bca dmi_get_bios_year EXPORT_SYMBOL vmlinux 0x2d994605 security_inode_copy_up_xattr -EXPORT_SYMBOL vmlinux 0x2d9b32cf blk_rq_init -EXPORT_SYMBOL vmlinux 0x2dad5b6c rproc_elf_load_rsc_table -EXPORT_SYMBOL vmlinux 0x2db68e61 blk_rq_map_user -EXPORT_SYMBOL vmlinux 0x2db9213d __SCK__tp_func_write_msr -EXPORT_SYMBOL vmlinux 0x2dbf0cb7 seq_file_path -EXPORT_SYMBOL vmlinux 0x2dc33213 pci_disable_msi +EXPORT_SYMBOL vmlinux 0x2d9b8351 reuseport_detach_sock +EXPORT_SYMBOL vmlinux 0x2da2f448 eth_platform_get_mac_address +EXPORT_SYMBOL vmlinux 0x2da76546 simple_nosetlease +EXPORT_SYMBOL vmlinux 0x2dbbaa46 tcp_sock_set_syncnt +EXPORT_SYMBOL vmlinux 0x2dbc71bf netdev_master_upper_dev_link +EXPORT_SYMBOL vmlinux 0x2dcf0fce scsi_unblock_requests EXPORT_SYMBOL vmlinux 0x2dd16564 arch_register_cpu -EXPORT_SYMBOL vmlinux 0x2dded32d dm_table_run_md_queue_async +EXPORT_SYMBOL vmlinux 0x2dd189ee dup_iter +EXPORT_SYMBOL vmlinux 0x2dd89b7a inode_needs_sync EXPORT_SYMBOL vmlinux 0x2de125c0 page_frag_alloc_align -EXPORT_SYMBOL vmlinux 0x2deaafef blk_mq_complete_request +EXPORT_SYMBOL vmlinux 0x2dec881b intel_gmch_probe EXPORT_SYMBOL vmlinux 0x2def7f76 rtc_cmos_write +EXPORT_SYMBOL vmlinux 0x2df5e83c arp_create +EXPORT_SYMBOL vmlinux 0x2df70158 ip_do_fragment EXPORT_SYMBOL vmlinux 0x2e0b1deb dma_fence_get_status -EXPORT_SYMBOL vmlinux 0x2e0de7fa add_to_page_cache_locked +EXPORT_SYMBOL vmlinux 0x2e11ddac __SCK__tp_func_kmalloc_node +EXPORT_SYMBOL vmlinux 0x2e1607df __blk_mq_alloc_disk EXPORT_SYMBOL vmlinux 0x2e1ca751 clk_put +EXPORT_SYMBOL vmlinux 0x2e1f8a71 ata_scsi_cmd_error_handler +EXPORT_SYMBOL vmlinux 0x2e22bd39 sock_release EXPORT_SYMBOL vmlinux 0x2e2b40d2 strncat -EXPORT_SYMBOL vmlinux 0x2e2d56be devfreq_monitor_stop -EXPORT_SYMBOL vmlinux 0x2e2f542b pci_scan_bridge -EXPORT_SYMBOL vmlinux 0x2e3afcca fs_lookup_param -EXPORT_SYMBOL vmlinux 0x2e3b7d1d prepare_kernel_cred +EXPORT_SYMBOL vmlinux 0x2e2c143e dev_uc_flush +EXPORT_SYMBOL vmlinux 0x2e2c694c jbd2_journal_errno +EXPORT_SYMBOL vmlinux 0x2e2f4e2f tcf_qevent_dump EXPORT_SYMBOL vmlinux 0x2e3bcce2 wait_for_completion_interruptible +EXPORT_SYMBOL vmlinux 0x2e4366c1 inet6_release EXPORT_SYMBOL vmlinux 0x2e439142 drm_get_panel_orientation_quirk -EXPORT_SYMBOL vmlinux 0x2e534619 __scm_destroy -EXPORT_SYMBOL vmlinux 0x2e5a105b write_one_page +EXPORT_SYMBOL vmlinux 0x2e48bb73 security_inode_init_security +EXPORT_SYMBOL vmlinux 0x2e545a59 brioctl_set EXPORT_SYMBOL vmlinux 0x2e5fe036 __skb_ext_put -EXPORT_SYMBOL vmlinux 0x2e722c78 bio_devname -EXPORT_SYMBOL vmlinux 0x2e7b5f82 end_page_writeback -EXPORT_SYMBOL vmlinux 0x2e8144d4 pci_write_config_byte -EXPORT_SYMBOL vmlinux 0x2e877eee param_ops_ushort +EXPORT_SYMBOL vmlinux 0x2e6a1dfb seq_pad +EXPORT_SYMBOL vmlinux 0x2e7ebd98 devfreq_update_status +EXPORT_SYMBOL vmlinux 0x2e87e7a8 sock_cmsg_send +EXPORT_SYMBOL vmlinux 0x2e94f669 simple_dir_inode_operations +EXPORT_SYMBOL vmlinux 0x2e959ad2 vlan_vid_add +EXPORT_SYMBOL vmlinux 0x2e95ef68 pci_clear_master +EXPORT_SYMBOL vmlinux 0x2e9f1c56 inode_insert5 EXPORT_SYMBOL vmlinux 0x2ea52d3e dma_fence_chain_init -EXPORT_SYMBOL vmlinux 0x2eb56e9c udp6_csum_init +EXPORT_SYMBOL vmlinux 0x2ea7ca1b inet_frag_reasm_prepare +EXPORT_SYMBOL vmlinux 0x2ea87189 blkdev_issue_write_same +EXPORT_SYMBOL vmlinux 0x2eb32b3d security_path_mkdir +EXPORT_SYMBOL vmlinux 0x2ec1438c t10_pi_type3_crc EXPORT_SYMBOL vmlinux 0x2ec6bba0 errseq_set -EXPORT_SYMBOL vmlinux 0x2ecaec2d nexthop_res_grp_activity_update -EXPORT_SYMBOL vmlinux 0x2ed29547 serio_close +EXPORT_SYMBOL vmlinux 0x2ec91f8d mdio_driver_unregister +EXPORT_SYMBOL vmlinux 0x2ed2cbea nf_reinject +EXPORT_SYMBOL vmlinux 0x2ee48375 phy_mac_interrupt EXPORT_SYMBOL vmlinux 0x2ee4c2b1 hdmi_avi_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0x2ef4b2c4 pcie_get_speed_cap +EXPORT_SYMBOL vmlinux 0x2eec7036 __cleancache_init_fs EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc -EXPORT_SYMBOL vmlinux 0x2f0582f6 tcp_v4_md5_lookup -EXPORT_SYMBOL vmlinux 0x2f144ba0 follow_pfn -EXPORT_SYMBOL vmlinux 0x2f1be98e loop_register_transfer -EXPORT_SYMBOL vmlinux 0x2f287085 seq_printf +EXPORT_SYMBOL vmlinux 0x2f12adb6 jbd2_journal_load +EXPORT_SYMBOL vmlinux 0x2f212f3d vme_register_bridge EXPORT_SYMBOL vmlinux 0x2f2e91b2 security_ib_alloc_security EXPORT_SYMBOL vmlinux 0x2f384db3 acpi_is_video_device -EXPORT_SYMBOL vmlinux 0x2f38772a amd_iommu_complete_ppr -EXPORT_SYMBOL vmlinux 0x2f4a8f9b blk_mq_init_queue -EXPORT_SYMBOL vmlinux 0x2f5effe5 iov_iter_kvec -EXPORT_SYMBOL vmlinux 0x2f699fec ww_mutex_lock_interruptible -EXPORT_SYMBOL vmlinux 0x2f72c983 fwnode_get_phy_id +EXPORT_SYMBOL vmlinux 0x2f587d70 md_update_sb +EXPORT_SYMBOL vmlinux 0x2f711446 __brelse EXPORT_SYMBOL vmlinux 0x2f7754a8 dma_pool_free -EXPORT_SYMBOL vmlinux 0x2f82fb8d vm_map_pages -EXPORT_SYMBOL vmlinux 0x2fa0aea3 neigh_seq_next -EXPORT_SYMBOL vmlinux 0x2fa8d514 get_user_pages -EXPORT_SYMBOL vmlinux 0x2faa21c0 __SCK__tp_func_rdpmc +EXPORT_SYMBOL vmlinux 0x2f96ee30 blkdev_issue_flush +EXPORT_SYMBOL vmlinux 0x2fa37508 vfs_rmdir EXPORT_SYMBOL vmlinux 0x2fb6de5d add_device_randomness -EXPORT_SYMBOL vmlinux 0x2fd3731d security_tun_dev_attach +EXPORT_SYMBOL vmlinux 0x2fbbdba5 backlight_device_get_by_name +EXPORT_SYMBOL vmlinux 0x2fc0e4aa dentry_path_raw +EXPORT_SYMBOL vmlinux 0x2fc2f5b4 km_new_mapping +EXPORT_SYMBOL vmlinux 0x2fc50c0b dev_uc_init EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier -EXPORT_SYMBOL vmlinux 0x2fed39c6 dev_set_alias -EXPORT_SYMBOL vmlinux 0x2feed7cb pci_free_host_bridge -EXPORT_SYMBOL vmlinux 0x2ff6fc96 set_nlink -EXPORT_SYMBOL vmlinux 0x3010d869 blk_queue_max_segment_size +EXPORT_SYMBOL vmlinux 0x2ff5fe48 netdev_lower_get_first_private_rcu EXPORT_SYMBOL vmlinux 0x301304c2 __get_user_nocheck_8 -EXPORT_SYMBOL vmlinux 0x30215d1b unregister_mii_tstamp_controller -EXPORT_SYMBOL vmlinux 0x30238596 eth_type_trans -EXPORT_SYMBOL vmlinux 0x305013e7 inet_getname +EXPORT_SYMBOL vmlinux 0x30135814 __netdev_alloc_skb +EXPORT_SYMBOL vmlinux 0x30231bde validate_slab_cache +EXPORT_SYMBOL vmlinux 0x30267875 lock_sock_nested +EXPORT_SYMBOL vmlinux 0x3027a55c vfs_create +EXPORT_SYMBOL vmlinux 0x30301b37 __blk_mq_end_request +EXPORT_SYMBOL vmlinux 0x304ad119 dquot_reclaim_space_nodirty EXPORT_SYMBOL vmlinux 0x3052fecd ptp_convert_timestamp EXPORT_SYMBOL vmlinux 0x305a916c __x86_indirect_thunk_rdi -EXPORT_SYMBOL vmlinux 0x3060eeda acpi_device_set_power -EXPORT_SYMBOL vmlinux 0x30744de5 sb_min_blocksize +EXPORT_SYMBOL vmlinux 0x3069c540 filemap_page_mkwrite +EXPORT_SYMBOL vmlinux 0x306cb10b pci_set_power_state +EXPORT_SYMBOL vmlinux 0x308a0289 scsi_bios_ptable +EXPORT_SYMBOL vmlinux 0x308aec87 dquot_get_next_dqblk +EXPORT_SYMBOL vmlinux 0x308e72e8 serio_unregister_driver +EXPORT_SYMBOL vmlinux 0x3094599a nd_pfn_probe EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep -EXPORT_SYMBOL vmlinux 0x30a2df2c account_page_redirty -EXPORT_SYMBOL vmlinux 0x30a5dbfd of_find_mipi_dsi_host_by_node EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user -EXPORT_SYMBOL vmlinux 0x30ac5d6a netdev_lower_get_first_private_rcu EXPORT_SYMBOL vmlinux 0x30acfde9 hsiphash_2u32 -EXPORT_SYMBOL vmlinux 0x30b4730c ipv4_mtu -EXPORT_SYMBOL vmlinux 0x30c47945 sg_miter_start -EXPORT_SYMBOL vmlinux 0x30cd7fac skb_expand_head +EXPORT_SYMBOL vmlinux 0x30b35b06 jbd2_journal_force_commit_nested +EXPORT_SYMBOL vmlinux 0x30d75539 balance_dirty_pages_ratelimited +EXPORT_SYMBOL vmlinux 0x30dd0809 ipv6_select_ident +EXPORT_SYMBOL vmlinux 0x30e531f6 pci_write_config_dword EXPORT_SYMBOL vmlinux 0x30e74134 tty_termios_copy_hw +EXPORT_SYMBOL vmlinux 0x30fdff68 __dst_destroy_metrics_generic EXPORT_SYMBOL vmlinux 0x3100cff9 lockref_get_or_lock EXPORT_SYMBOL vmlinux 0x3102d70b frontswap_curr_pages -EXPORT_SYMBOL vmlinux 0x31187883 inet_frag_find -EXPORT_SYMBOL vmlinux 0x31256619 phy_advertise_supported -EXPORT_SYMBOL vmlinux 0x3126435f pci_disable_msix +EXPORT_SYMBOL vmlinux 0x311a89e3 crypto_sha1_finup +EXPORT_SYMBOL vmlinux 0x311be8de seq_escape EXPORT_SYMBOL vmlinux 0x3126a9e8 siphash_1u64 -EXPORT_SYMBOL vmlinux 0x3139cf8e rproc_free +EXPORT_SYMBOL vmlinux 0x31411e5e agp_generic_enable +EXPORT_SYMBOL vmlinux 0x314605d0 netpoll_print_options +EXPORT_SYMBOL vmlinux 0x314b130b dquot_get_state EXPORT_SYMBOL vmlinux 0x31549b2a __x86_indirect_thunk_r10 -EXPORT_SYMBOL vmlinux 0x3165f133 __blk_alloc_disk -EXPORT_SYMBOL vmlinux 0x31662382 discard_new_inode -EXPORT_SYMBOL vmlinux 0x317d2da5 input_setup_polling -EXPORT_SYMBOL vmlinux 0x3189d861 dump_page +EXPORT_SYMBOL vmlinux 0x31635d6a jbd2_journal_ack_err +EXPORT_SYMBOL vmlinux 0x3164c5e5 nd_btt_probe +EXPORT_SYMBOL vmlinux 0x318422f4 netdev_unbind_sb_channel +EXPORT_SYMBOL vmlinux 0x3199259e follow_up EXPORT_SYMBOL vmlinux 0x319d493d proc_dostring -EXPORT_SYMBOL vmlinux 0x31a8077e get_unmapped_area -EXPORT_SYMBOL vmlinux 0x31b76d89 neigh_connected_output -EXPORT_SYMBOL vmlinux 0x31cc4d02 sb_set_blocksize -EXPORT_SYMBOL vmlinux 0x31e6df27 mmc_gpio_get_ro -EXPORT_SYMBOL vmlinux 0x32036fcc secpath_set -EXPORT_SYMBOL vmlinux 0x32076736 tcp_release_cb +EXPORT_SYMBOL vmlinux 0x31c6e7ac dquot_resume +EXPORT_SYMBOL vmlinux 0x31e7a65d __skb_get_hash +EXPORT_SYMBOL vmlinux 0x31f4f895 mpage_writepages EXPORT_SYMBOL vmlinux 0x3213f038 mutex_unlock -EXPORT_SYMBOL vmlinux 0x32267b2d ipv6_select_ident -EXPORT_SYMBOL vmlinux 0x322a4d20 bpf_prog_get_type_path -EXPORT_SYMBOL vmlinux 0x322a71dd flow_rule_match_ip -EXPORT_SYMBOL vmlinux 0x322be207 mnt_set_expiry -EXPORT_SYMBOL vmlinux 0x323e8437 udp_sendmsg -EXPORT_SYMBOL vmlinux 0x3248753d __sock_create -EXPORT_SYMBOL vmlinux 0x3253bb89 pfifo_fast_ops -EXPORT_SYMBOL vmlinux 0x32642268 netpoll_parse_options +EXPORT_SYMBOL vmlinux 0x321d74c5 __ClearPageMovable +EXPORT_SYMBOL vmlinux 0x323bb9d7 mmc_can_gpio_ro +EXPORT_SYMBOL vmlinux 0x32573c0f ps2_cmd_aborted +EXPORT_SYMBOL vmlinux 0x325e9bed dev_mc_del_global EXPORT_SYMBOL vmlinux 0x326425ca pci_unmap_biosrom +EXPORT_SYMBOL vmlinux 0x32759f3d d_path EXPORT_SYMBOL vmlinux 0x327c84bf vme_lm_attach -EXPORT_SYMBOL vmlinux 0x327c9d1b nonseekable_open EXPORT_SYMBOL vmlinux 0x3283e6b0 prandom_seed_full_state -EXPORT_SYMBOL vmlinux 0x328e985f sg_alloc_append_table_from_pages -EXPORT_SYMBOL vmlinux 0x3290e042 flow_rule_match_eth_addrs -EXPORT_SYMBOL vmlinux 0x329309ff __nlmsg_put -EXPORT_SYMBOL vmlinux 0x3293d031 input_mt_report_finger_count -EXPORT_SYMBOL vmlinux 0x329c1627 devm_clk_hw_register_clkdev -EXPORT_SYMBOL vmlinux 0x32a7d476 mr_table_dump -EXPORT_SYMBOL vmlinux 0x32b2367a skb_copy_datagram_from_iter +EXPORT_SYMBOL vmlinux 0x32a432d2 mmc_release_host +EXPORT_SYMBOL vmlinux 0x32a70a60 page_pool_return_skb_page +EXPORT_SYMBOL vmlinux 0x32c2015c sock_no_sendpage +EXPORT_SYMBOL vmlinux 0x32c35a94 __inc_node_page_state EXPORT_SYMBOL vmlinux 0x32ce3777 radix_tree_preload -EXPORT_SYMBOL vmlinux 0x32d8894c get_agp_version -EXPORT_SYMBOL vmlinux 0x32d89432 security_dentry_create_files_as +EXPORT_SYMBOL vmlinux 0x32cecab2 jbd2__journal_start EXPORT_SYMBOL vmlinux 0x32e6f1a0 acpi_video_backlight_string -EXPORT_SYMBOL vmlinux 0x32fe776a tty_hung_up_p -EXPORT_SYMBOL vmlinux 0x330bf65b set_pages_uc -EXPORT_SYMBOL vmlinux 0x331a9189 ipv6_chk_addr +EXPORT_SYMBOL vmlinux 0x32ee76f2 pnp_stop_dev +EXPORT_SYMBOL vmlinux 0x3302360d unlock_page_memcg +EXPORT_SYMBOL vmlinux 0x330c037c mntput +EXPORT_SYMBOL vmlinux 0x33154daa dma_find_channel +EXPORT_SYMBOL vmlinux 0x331dea1c neigh_lookup EXPORT_SYMBOL vmlinux 0x3324ef3b acpi_set_firmware_waking_vector -EXPORT_SYMBOL vmlinux 0x332e12b1 jbd2_journal_begin_ordered_truncate -EXPORT_SYMBOL vmlinux 0x333a5d95 _copy_from_iter -EXPORT_SYMBOL vmlinux 0x333b26b7 skb_checksum_help -EXPORT_SYMBOL vmlinux 0x333f4ee3 capable_wrt_inode_uidgid -EXPORT_SYMBOL vmlinux 0x33648391 mmc_retune_pause +EXPORT_SYMBOL vmlinux 0x332bb7a8 configfs_register_default_group +EXPORT_SYMBOL vmlinux 0x33353723 security_locked_down +EXPORT_SYMBOL vmlinux 0x33550739 __find_get_block +EXPORT_SYMBOL vmlinux 0x33568d7b param_ops_ushort +EXPORT_SYMBOL vmlinux 0x335c51ea dev_pick_tx_cpu_id +EXPORT_SYMBOL vmlinux 0x335cd955 vme_register_error_handler +EXPORT_SYMBOL vmlinux 0x33659451 tty_schedule_flip +EXPORT_SYMBOL vmlinux 0x3366e7c6 release_sock EXPORT_SYMBOL vmlinux 0x33736a1d __genradix_ptr_alloc -EXPORT_SYMBOL vmlinux 0x33934a4e twl6040_set_bits -EXPORT_SYMBOL vmlinux 0x3398397c node_data -EXPORT_SYMBOL vmlinux 0x33a1702e get_user_pages_remote +EXPORT_SYMBOL vmlinux 0x3375e52e blk_mq_tag_to_rq +EXPORT_SYMBOL vmlinux 0x337a5eb8 tc_setup_cb_replace +EXPORT_SYMBOL vmlinux 0x337afd21 d_instantiate_new +EXPORT_SYMBOL vmlinux 0x3386c180 blk_dump_rq_flags +EXPORT_SYMBOL vmlinux 0x3390f761 nobh_truncate_page +EXPORT_SYMBOL vmlinux 0x33a9c44a from_kprojid_munged +EXPORT_SYMBOL vmlinux 0x33b1dfea napi_disable EXPORT_SYMBOL vmlinux 0x33b84f74 copy_page -EXPORT_SYMBOL vmlinux 0x33b89695 __neigh_set_probe_once -EXPORT_SYMBOL vmlinux 0x33ba7d46 xfrm_state_walk_done -EXPORT_SYMBOL vmlinux 0x33bb2731 do_clone_file_range -EXPORT_SYMBOL vmlinux 0x33d3d4f8 tcf_action_dump_1 -EXPORT_SYMBOL vmlinux 0x33e645a0 register_netdev +EXPORT_SYMBOL vmlinux 0x33d93949 component_match_add_typed EXPORT_SYMBOL vmlinux 0x33f0768c cpufreq_quick_get_max -EXPORT_SYMBOL vmlinux 0x33f5c5d6 sock_no_recvmsg EXPORT_SYMBOL vmlinux 0x33fc2a31 get_user_ifreq EXPORT_SYMBOL vmlinux 0x33fcf44a __kfifo_out_r +EXPORT_SYMBOL vmlinux 0x33fd772b nexthop_res_grp_activity_update EXPORT_SYMBOL vmlinux 0x33fd9da4 acpi_get_gpe_device -EXPORT_SYMBOL vmlinux 0x3406fe54 flow_block_cb_free -EXPORT_SYMBOL vmlinux 0x3407b2c0 skb_headers_offset_update -EXPORT_SYMBOL vmlinux 0x3407e1c2 vme_init_bridge -EXPORT_SYMBOL vmlinux 0x340bf99a fb_set_var +EXPORT_SYMBOL vmlinux 0x341308bd xp_raw_get_dma +EXPORT_SYMBOL vmlinux 0x3415fe08 pcie_capability_write_dword EXPORT_SYMBOL vmlinux 0x3424daf8 __traceiter_dma_fence_enable_signal -EXPORT_SYMBOL vmlinux 0x34261319 pin_user_pages_locked -EXPORT_SYMBOL vmlinux 0x3438292b phy_attached_info_irq -EXPORT_SYMBOL vmlinux 0x343b3a5d sock_dequeue_err_skb +EXPORT_SYMBOL vmlinux 0x3426abb2 blk_queue_split EXPORT_SYMBOL vmlinux 0x3441445f msrs_free -EXPORT_SYMBOL vmlinux 0x3473f6e1 vfs_symlink +EXPORT_SYMBOL vmlinux 0x3457d7a5 mini_qdisc_pair_block_init +EXPORT_SYMBOL vmlinux 0x346bbbb6 bdev_dax_pgoff +EXPORT_SYMBOL vmlinux 0x347203ce write_one_page +EXPORT_SYMBOL vmlinux 0x3488736c udp_lib_setsockopt EXPORT_SYMBOL vmlinux 0x3489859f acpi_enter_sleep_state_s4bios -EXPORT_SYMBOL vmlinux 0x348ab65c qdisc_create_dflt +EXPORT_SYMBOL vmlinux 0x3493c00a pnp_possible_config +EXPORT_SYMBOL vmlinux 0x349aed3d mmc_gpio_set_cd_wake EXPORT_SYMBOL vmlinux 0x349cba85 strchr -EXPORT_SYMBOL vmlinux 0x349d9666 netdev_upper_get_next_dev_rcu -EXPORT_SYMBOL vmlinux 0x34a1ef49 inode_set_bytes +EXPORT_SYMBOL vmlinux 0x349de8ec sock_edemux EXPORT_SYMBOL vmlinux 0x34a1f7e3 acpi_processor_get_psd -EXPORT_SYMBOL vmlinux 0x34a7e225 pci_bus_add_devices +EXPORT_SYMBOL vmlinux 0x34c08a01 mdio_bus_type EXPORT_SYMBOL vmlinux 0x34c7cdbc lookup_bdev -EXPORT_SYMBOL vmlinux 0x34cb24b2 mr_dump -EXPORT_SYMBOL vmlinux 0x34d00fb9 tcp_initialize_rcv_mss -EXPORT_SYMBOL vmlinux 0x34d5c420 mmc_can_gpio_ro +EXPORT_SYMBOL vmlinux 0x34d5cd39 _dev_emerg EXPORT_SYMBOL vmlinux 0x34db050b _raw_spin_lock_irqsave -EXPORT_SYMBOL vmlinux 0x34e09742 neigh_ifdown +EXPORT_SYMBOL vmlinux 0x34dd40f9 console_start +EXPORT_SYMBOL vmlinux 0x34ee2f20 dm_table_event EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue +EXPORT_SYMBOL vmlinux 0x34f6058f max8925_reg_read EXPORT_SYMBOL vmlinux 0x34f89363 acpi_terminate_debugger +EXPORT_SYMBOL vmlinux 0x35045ebc unregister_shrinker EXPORT_SYMBOL vmlinux 0x350ea558 dma_fence_default_wait -EXPORT_SYMBOL vmlinux 0x35141df4 jbd2_journal_get_undo_access EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier -EXPORT_SYMBOL vmlinux 0x352e957f __neigh_create -EXPORT_SYMBOL vmlinux 0x3530c042 vfs_get_fsid -EXPORT_SYMBOL vmlinux 0x35370e39 __dquot_free_space EXPORT_SYMBOL vmlinux 0x3539f11b match_strlcpy -EXPORT_SYMBOL vmlinux 0x353d40bf from_kgid_munged -EXPORT_SYMBOL vmlinux 0x35447359 get_user_pages_locked +EXPORT_SYMBOL vmlinux 0x35483f4e security_sb_clone_mnt_opts EXPORT_SYMBOL vmlinux 0x354b4a1e acpi_ut_trace EXPORT_SYMBOL vmlinux 0x356461c8 rtc_time64_to_tm -EXPORT_SYMBOL vmlinux 0x357e8c2a input_mt_sync_frame -EXPORT_SYMBOL vmlinux 0x35a10c4c xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0x35652887 tcf_chain_get_by_act +EXPORT_SYMBOL vmlinux 0x35654ca9 scsi_device_put +EXPORT_SYMBOL vmlinux 0x356dabc2 bio_chain +EXPORT_SYMBOL vmlinux 0x35700ea6 security_task_getsecid_subj +EXPORT_SYMBOL vmlinux 0x3595c0c1 blk_set_queue_depth +EXPORT_SYMBOL vmlinux 0x35989a01 genphy_aneg_done EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 -EXPORT_SYMBOL vmlinux 0x35ae76a6 seq_lseek -EXPORT_SYMBOL vmlinux 0x35bf3db7 processors +EXPORT_SYMBOL vmlinux 0x35c91708 ipmr_rule_default +EXPORT_SYMBOL vmlinux 0x35d146f1 __SCK__tp_func_write_msr +EXPORT_SYMBOL vmlinux 0x35e17b35 param_ops_bint +EXPORT_SYMBOL vmlinux 0x35f0831a gro_find_complete_by_type +EXPORT_SYMBOL vmlinux 0x35fb5a34 dev_queue_xmit_accel +EXPORT_SYMBOL vmlinux 0x35fbb423 path_get +EXPORT_SYMBOL vmlinux 0x36064197 loop_register_transfer EXPORT_SYMBOL vmlinux 0x360b1afe probe_irq_mask -EXPORT_SYMBOL vmlinux 0x362accfd set_bdi_congested -EXPORT_SYMBOL vmlinux 0x36315fb1 security_path_mkdir +EXPORT_SYMBOL vmlinux 0x36119c27 scsi_block_when_processing_errors +EXPORT_SYMBOL vmlinux 0x3620a99c mipi_dsi_driver_unregister +EXPORT_SYMBOL vmlinux 0x36273c62 xfrm_policy_bysel_ctx +EXPORT_SYMBOL vmlinux 0x36346361 tc_setup_cb_reoffload +EXPORT_SYMBOL vmlinux 0x3637c312 ata_std_end_eh EXPORT_SYMBOL vmlinux 0x364850b1 down_write_killable -EXPORT_SYMBOL vmlinux 0x36489017 request_firmware_into_buf EXPORT_SYMBOL vmlinux 0x364c23ad mutex_is_locked EXPORT_SYMBOL vmlinux 0x365acda7 set_normalized_timespec64 EXPORT_SYMBOL vmlinux 0x365e7911 kstrdup_const -EXPORT_SYMBOL vmlinux 0x3664501f blk_mq_start_request -EXPORT_SYMBOL vmlinux 0x36711709 framebuffer_alloc -EXPORT_SYMBOL vmlinux 0x36809d77 remove_proc_entry -EXPORT_SYMBOL vmlinux 0x368bbb2f rproc_coredump_add_custom_segment -EXPORT_SYMBOL vmlinux 0x36a585d2 dcb_setapp -EXPORT_SYMBOL vmlinux 0x36ac2f7b md_integrity_add_rdev -EXPORT_SYMBOL vmlinux 0x36acc663 tc_setup_cb_call -EXPORT_SYMBOL vmlinux 0x36ae5167 netif_receive_skb_core -EXPORT_SYMBOL vmlinux 0x36b4d87f fwnode_phy_find_device +EXPORT_SYMBOL vmlinux 0x3668c082 agp_generic_alloc_by_type +EXPORT_SYMBOL vmlinux 0x366b4380 param_ops_string +EXPORT_SYMBOL vmlinux 0x366c5036 __check_sticky +EXPORT_SYMBOL vmlinux 0x3676ead9 max8998_update_reg +EXPORT_SYMBOL vmlinux 0x367f6588 dev_lstats_read +EXPORT_SYMBOL vmlinux 0x36917e04 fscrypt_decrypt_pagecache_blocks +EXPORT_SYMBOL vmlinux 0x36956194 mmc_of_parse_clk_phase +EXPORT_SYMBOL vmlinux 0x36973b96 fscrypt_fname_disk_to_usr +EXPORT_SYMBOL vmlinux 0x36a720bc lease_get_mtime +EXPORT_SYMBOL vmlinux 0x36b08000 agp_unbind_memory +EXPORT_SYMBOL vmlinux 0x36b52aed inet_add_protocol EXPORT_SYMBOL vmlinux 0x36b6ebbf down_killable -EXPORT_SYMBOL vmlinux 0x36cc38d2 phy_ethtool_set_eee -EXPORT_SYMBOL vmlinux 0x37014a37 make_kprojid -EXPORT_SYMBOL vmlinux 0x3705804a pci_release_regions +EXPORT_SYMBOL vmlinux 0x36c369af acpi_bus_unregister_driver +EXPORT_SYMBOL vmlinux 0x36ce719a devm_ioremap +EXPORT_SYMBOL vmlinux 0x36e35c4c dev_set_alias +EXPORT_SYMBOL vmlinux 0x36f139b4 flow_rule_alloc +EXPORT_SYMBOL vmlinux 0x36fafde5 __breadahead_gfp EXPORT_SYMBOL vmlinux 0x37110088 remove_wait_queue -EXPORT_SYMBOL vmlinux 0x3720b79f pci_alloc_irq_vectors_affinity +EXPORT_SYMBOL vmlinux 0x3715c46b pci_scan_slot +EXPORT_SYMBOL vmlinux 0x372f3c1d wake_up_process +EXPORT_SYMBOL vmlinux 0x3737830d mdio_device_reset EXPORT_SYMBOL vmlinux 0x3737d9a9 ZSTD_DStreamWorkspaceBound EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn -EXPORT_SYMBOL vmlinux 0x374ad5ad unregister_filesystem -EXPORT_SYMBOL vmlinux 0x3754a63e pm8606_osc_enable EXPORT_SYMBOL vmlinux 0x3755f990 gf128mul_init_64k_bbe -EXPORT_SYMBOL vmlinux 0x375e89b6 mount_nodev -EXPORT_SYMBOL vmlinux 0x37608b38 cros_ec_cmd_xfer_status -EXPORT_SYMBOL vmlinux 0x37636bbe dev_set_promiscuity +EXPORT_SYMBOL vmlinux 0x375e1de7 __mdiobus_register +EXPORT_SYMBOL vmlinux 0x375ec0b0 sg_miter_stop EXPORT_SYMBOL vmlinux 0x37746fde ZSTD_initDStream -EXPORT_SYMBOL vmlinux 0x377b2363 fasync_helper +EXPORT_SYMBOL vmlinux 0x37751c19 jbd2_journal_release_jbd_inode +EXPORT_SYMBOL vmlinux 0x3779cfdc proc_create_seq_private EXPORT_SYMBOL vmlinux 0x377d8004 acpi_error -EXPORT_SYMBOL vmlinux 0x3782f1bf skb_mac_gso_segment -EXPORT_SYMBOL vmlinux 0x3785d1d0 i2c_del_driver -EXPORT_SYMBOL vmlinux 0x37b04998 filemap_invalidate_lock_two -EXPORT_SYMBOL vmlinux 0x37b708ad backlight_force_update +EXPORT_SYMBOL vmlinux 0x37a2e20f uart_get_divisor EXPORT_SYMBOL vmlinux 0x37b8b39e screen_info EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs -EXPORT_SYMBOL vmlinux 0x37c4eba3 ip_queue_xmit -EXPORT_SYMBOL vmlinux 0x37d4f771 agp_generic_alloc_page EXPORT_SYMBOL vmlinux 0x37db8f19 dmi_get_date -EXPORT_SYMBOL vmlinux 0x37f12b49 mipi_dsi_generic_write -EXPORT_SYMBOL vmlinux 0x37fe778f rps_may_expire_flow -EXPORT_SYMBOL vmlinux 0x381586a3 inode_update_time +EXPORT_SYMBOL vmlinux 0x37e71815 blk_queue_dma_alignment +EXPORT_SYMBOL vmlinux 0x37edc444 simple_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0x37fd26e9 make_kuid +EXPORT_SYMBOL vmlinux 0x38097497 devm_rproc_add +EXPORT_SYMBOL vmlinux 0x3812e014 vfs_parse_fs_string EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus -EXPORT_SYMBOL vmlinux 0x381af4be __dquot_alloc_space -EXPORT_SYMBOL vmlinux 0x381cec01 crypto_sha256_update -EXPORT_SYMBOL vmlinux 0x383bd5ef rio_query_mport +EXPORT_SYMBOL vmlinux 0x381da148 writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0x383eb392 pm860x_bulk_read +EXPORT_SYMBOL vmlinux 0x38456707 pci_unregister_driver EXPORT_SYMBOL vmlinux 0x3854774b kstrtoll -EXPORT_SYMBOL vmlinux 0x386e04d0 sk_stop_timer_sync +EXPORT_SYMBOL vmlinux 0x388372af register_quota_format EXPORT_SYMBOL vmlinux 0x38869d88 kstat -EXPORT_SYMBOL vmlinux 0x3887dbc2 __page_symlink EXPORT_SYMBOL vmlinux 0x388aa3c9 neigh_proc_dointvec_ms_jiffies EXPORT_SYMBOL vmlinux 0x3891ffc8 ecryptfs_fill_auth_tok +EXPORT_SYMBOL vmlinux 0x38945e27 file_ns_capable EXPORT_SYMBOL vmlinux 0x389617b0 LZ4_decompress_fast_continue +EXPORT_SYMBOL vmlinux 0x38a1d493 bdi_put EXPORT_SYMBOL vmlinux 0x38a71b7e pci_free_resource_list EXPORT_SYMBOL vmlinux 0x38a9f7c5 in6addr_loopback -EXPORT_SYMBOL vmlinux 0x38adf9fe devm_devfreq_unregister_notifier -EXPORT_SYMBOL vmlinux 0x38c7fc61 tty_port_alloc_xmit_buf -EXPORT_SYMBOL vmlinux 0x38d7d21d input_get_timestamp -EXPORT_SYMBOL vmlinux 0x38de3078 amd_iommu_flush_page +EXPORT_SYMBOL vmlinux 0x38ac71ea cros_ec_get_host_event +EXPORT_SYMBOL vmlinux 0x38b1a251 mdiobus_read +EXPORT_SYMBOL vmlinux 0x38b8866f pci_iomap +EXPORT_SYMBOL vmlinux 0x38b8de24 devm_clk_put +EXPORT_SYMBOL vmlinux 0x38d30a82 ilookup5 +EXPORT_SYMBOL vmlinux 0x38e25ab1 get_tree_bdev EXPORT_SYMBOL vmlinux 0x38e46431 mempool_exit -EXPORT_SYMBOL vmlinux 0x38e59989 security_sb_mnt_opts_compat -EXPORT_SYMBOL vmlinux 0x38ea7277 iov_iter_fault_in_readable +EXPORT_SYMBOL vmlinux 0x38eb342a md_integrity_register +EXPORT_SYMBOL vmlinux 0x38ee6b4f blk_rq_unmap_user +EXPORT_SYMBOL vmlinux 0x38f05277 qdisc_tree_reduce_backlog EXPORT_SYMBOL vmlinux 0x38f48af7 put_user_ifreq -EXPORT_SYMBOL vmlinux 0x3904edd6 pci_ep_cfs_add_epc_group +EXPORT_SYMBOL vmlinux 0x38f97b16 make_kprojid +EXPORT_SYMBOL vmlinux 0x39069733 netif_device_attach EXPORT_SYMBOL vmlinux 0x39081193 __max_logical_packages -EXPORT_SYMBOL vmlinux 0x3919ec83 pci_find_parent_resource +EXPORT_SYMBOL vmlinux 0x39150db7 ata_print_version +EXPORT_SYMBOL vmlinux 0x3921ee3d mark_buffer_dirty_inode +EXPORT_SYMBOL vmlinux 0x39276e6e kmem_cache_create_usercopy EXPORT_SYMBOL vmlinux 0x392b1fea wait_for_completion_io +EXPORT_SYMBOL vmlinux 0x39385565 skb_flow_dissect_tunnel_info EXPORT_SYMBOL vmlinux 0x3939f8f0 rfkill_pause_polling EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p +EXPORT_SYMBOL vmlinux 0x3946fdda tty_port_tty_get EXPORT_SYMBOL vmlinux 0x394a1e11 phy_sfp_attach +EXPORT_SYMBOL vmlinux 0x394eeeb9 pneigh_lookup EXPORT_SYMBOL vmlinux 0x3955fcf6 __kfifo_in_r -EXPORT_SYMBOL vmlinux 0x396bc8e8 i2c_get_adapter -EXPORT_SYMBOL vmlinux 0x39758131 skb_clone_sk -EXPORT_SYMBOL vmlinux 0x397a7159 tcp_conn_request -EXPORT_SYMBOL vmlinux 0x398cbe4b mipi_dsi_dcs_get_power_mode +EXPORT_SYMBOL vmlinux 0x3980d9f2 eisa_bus_type +EXPORT_SYMBOL vmlinux 0x39884e19 ata_link_printk EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow EXPORT_SYMBOL vmlinux 0x399ad043 __kfifo_dma_out_finish_r +EXPORT_SYMBOL vmlinux 0x39a0c8d6 __pagevec_release EXPORT_SYMBOL vmlinux 0x39b52d19 __bitmap_and -EXPORT_SYMBOL vmlinux 0x39d0bd44 mmc_retune_release +EXPORT_SYMBOL vmlinux 0x39c27f92 __sk_mem_reduce_allocated +EXPORT_SYMBOL vmlinux 0x39c73e7c max8925_bulk_read +EXPORT_SYMBOL vmlinux 0x39e0561f try_to_free_buffers EXPORT_SYMBOL vmlinux 0x39e3c030 do_trace_read_msr -EXPORT_SYMBOL vmlinux 0x39e9896d sk_dst_check -EXPORT_SYMBOL vmlinux 0x39f9257a key_put -EXPORT_SYMBOL vmlinux 0x3a07b787 tcp_v4_conn_request +EXPORT_SYMBOL vmlinux 0x39e7fa90 insert_inode_locked4 +EXPORT_SYMBOL vmlinux 0x39fd098d buffer_check_dirty_writeback +EXPORT_SYMBOL vmlinux 0x3a034e36 tty_unregister_device EXPORT_SYMBOL vmlinux 0x3a08475f platform_thermal_notify EXPORT_SYMBOL vmlinux 0x3a099605 __get_user_nocheck_4 EXPORT_SYMBOL vmlinux 0x3a13f54a sgl_alloc -EXPORT_SYMBOL vmlinux 0x3a1f32ab agp_alloc_bridge -EXPORT_SYMBOL vmlinux 0x3a2414f0 sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0x3a1a69b3 param_set_ullong EXPORT_SYMBOL vmlinux 0x3a2d1dfa rdmsr_safe_regs_on_cpu EXPORT_SYMBOL vmlinux 0x3a2f6702 sg_alloc_table EXPORT_SYMBOL vmlinux 0x3a32839e intel_gtt_chipset_flush -EXPORT_SYMBOL vmlinux 0x3a334dbe xfrm4_protocol_deregister -EXPORT_SYMBOL vmlinux 0x3a341926 fuse_mount_destroy -EXPORT_SYMBOL vmlinux 0x3a3f85d7 is_subdir -EXPORT_SYMBOL vmlinux 0x3a45497a pldmfw_op_pci_match_record +EXPORT_SYMBOL vmlinux 0x3a4cc797 free_cgroup_ns EXPORT_SYMBOL vmlinux 0x3a4f9d28 rng_is_initialized -EXPORT_SYMBOL vmlinux 0x3a5932d3 generic_file_write_iter -EXPORT_SYMBOL vmlinux 0x3a662c70 pci_set_master -EXPORT_SYMBOL vmlinux 0x3a77234e ipv6_dev_mc_dec -EXPORT_SYMBOL vmlinux 0x3a774386 genphy_update_link -EXPORT_SYMBOL vmlinux 0x3a966a26 __devm_release_region -EXPORT_SYMBOL vmlinux 0x3aa757da max8925_reg_read +EXPORT_SYMBOL vmlinux 0x3a698b1e dquot_disable +EXPORT_SYMBOL vmlinux 0x3aa06e28 ptp_clock_index +EXPORT_SYMBOL vmlinux 0x3aa2c428 vmf_insert_mixed_prot +EXPORT_SYMBOL vmlinux 0x3aa6baeb phy_device_remove +EXPORT_SYMBOL vmlinux 0x3aa76eca vfs_create_mount EXPORT_SYMBOL vmlinux 0x3ab7b1cc scsi_set_sense_field_pointer EXPORT_SYMBOL vmlinux 0x3aca0190 _raw_write_lock_irq -EXPORT_SYMBOL vmlinux 0x3acd2bb2 __tracepoint_kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0x3ad1e703 bd_abort_claiming EXPORT_SYMBOL vmlinux 0x3ad5cda3 lockref_get_not_zero EXPORT_SYMBOL vmlinux 0x3ad7a5d5 acpi_evaluate_reference +EXPORT_SYMBOL vmlinux 0x3ad9d70f __mod_zone_page_state EXPORT_SYMBOL vmlinux 0x3ada9e06 acpi_check_region -EXPORT_SYMBOL vmlinux 0x3af6f5be blk_put_request +EXPORT_SYMBOL vmlinux 0x3ae59924 xfrm_input_resume +EXPORT_SYMBOL vmlinux 0x3aeff1b6 __traceiter_spi_transfer_stop +EXPORT_SYMBOL vmlinux 0x3af6d82e netdev_lower_get_next_private_rcu EXPORT_SYMBOL vmlinux 0x3aff3200 acpi_evaluate_object_typed EXPORT_SYMBOL vmlinux 0x3b029f48 acpi_install_fixed_event_handler +EXPORT_SYMBOL vmlinux 0x3b04292c i2c_smbus_read_i2c_block_data +EXPORT_SYMBOL vmlinux 0x3b1708ac inet_frags_fini +EXPORT_SYMBOL vmlinux 0x3b1a4535 invalidate_mapping_pages EXPORT_SYMBOL vmlinux 0x3b20fb95 dma_fence_remove_callback -EXPORT_SYMBOL vmlinux 0x3b2b4426 tcp_timewait_state_process +EXPORT_SYMBOL vmlinux 0x3b260b0c dev_getfirstbyhwtype EXPORT_SYMBOL vmlinux 0x3b321462 LZ4_setStreamDecode -EXPORT_SYMBOL vmlinux 0x3b5a56c2 pci_disable_link_state -EXPORT_SYMBOL vmlinux 0x3b5cbb41 kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0x3b482cec tty_port_raise_dtr_rts +EXPORT_SYMBOL vmlinux 0x3b50e95f seq_write +EXPORT_SYMBOL vmlinux 0x3b5a2eee nonseekable_open +EXPORT_SYMBOL vmlinux 0x3b5c61a7 jbd2_journal_submit_inode_data_buffers +EXPORT_SYMBOL vmlinux 0x3b5dc260 netdev_adjacent_change_prepare EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left EXPORT_SYMBOL vmlinux 0x3b6c41ea kstrtouint -EXPORT_SYMBOL vmlinux 0x3b81e975 dev_get_flags EXPORT_SYMBOL vmlinux 0x3b83610f cpu_sibling_map -EXPORT_SYMBOL vmlinux 0x3b8b8168 simple_empty +EXPORT_SYMBOL vmlinux 0x3b8faf93 netdev_pick_tx EXPORT_SYMBOL vmlinux 0x3b9144c9 acpi_get_current_resources -EXPORT_SYMBOL vmlinux 0x3b9a4e09 pci_assign_resource -EXPORT_SYMBOL vmlinux 0x3bca4acb tcp_select_initial_window -EXPORT_SYMBOL vmlinux 0x3bd555ce xfrm_policy_walk_done -EXPORT_SYMBOL vmlinux 0x3be4e0b3 qdisc_offload_dump_helper -EXPORT_SYMBOL vmlinux 0x3be6dceb pagecache_get_page +EXPORT_SYMBOL vmlinux 0x3bab7ddd simple_transaction_set +EXPORT_SYMBOL vmlinux 0x3bbf4fc9 elv_rb_add +EXPORT_SYMBOL vmlinux 0x3bc28c74 dma_sync_single_for_device +EXPORT_SYMBOL vmlinux 0x3bd1fc28 hmm_range_fault +EXPORT_SYMBOL vmlinux 0x3bdf604e eth_header_cache EXPORT_SYMBOL vmlinux 0x3be7643e security_xfrm_policy_free -EXPORT_SYMBOL vmlinux 0x3be7e014 skb_csum_hwoffload_help -EXPORT_SYMBOL vmlinux 0x3c05b9e0 km_new_mapping +EXPORT_SYMBOL vmlinux 0x3c09bb36 dquot_quota_off EXPORT_SYMBOL vmlinux 0x3c185c61 page_put_link -EXPORT_SYMBOL vmlinux 0x3c3729e9 __lock_page +EXPORT_SYMBOL vmlinux 0x3c219b42 dev_alloc_name EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip EXPORT_SYMBOL vmlinux 0x3c3ff9fd sprintf EXPORT_SYMBOL vmlinux 0x3c427f67 cpu_die_map -EXPORT_SYMBOL vmlinux 0x3c48e19f bdi_register -EXPORT_SYMBOL vmlinux 0x3c61e37f debugfs_create_automount -EXPORT_SYMBOL vmlinux 0x3c944f52 jbd2_fc_release_bufs -EXPORT_SYMBOL vmlinux 0x3c9ddd19 try_to_free_buffers -EXPORT_SYMBOL vmlinux 0x3cb00977 eth_gro_receive -EXPORT_SYMBOL vmlinux 0x3cc8df92 netdev_get_xmit_slave -EXPORT_SYMBOL vmlinux 0x3cd6e09b md_reload_sb -EXPORT_SYMBOL vmlinux 0x3cda1dc5 nvdimm_namespace_capacity +EXPORT_SYMBOL vmlinux 0x3c457e3d skb_vlan_untag +EXPORT_SYMBOL vmlinux 0x3c541dd2 tcp_mss_to_mtu +EXPORT_SYMBOL vmlinux 0x3c7eb8cd vlan_for_each +EXPORT_SYMBOL vmlinux 0x3c7ef1a7 blk_rq_count_integrity_sg +EXPORT_SYMBOL vmlinux 0x3c8a3269 napi_get_frags +EXPORT_SYMBOL vmlinux 0x3c911304 tcp_sock_set_nodelay +EXPORT_SYMBOL vmlinux 0x3c933a30 bpf_prog_get_type_path +EXPORT_SYMBOL vmlinux 0x3ca12c97 cdrom_number_of_slots +EXPORT_SYMBOL vmlinux 0x3cd6a6d7 super_setup_bdi_name +EXPORT_SYMBOL vmlinux 0x3cd739be dquot_file_open EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq -EXPORT_SYMBOL vmlinux 0x3cefb09d phy_stop -EXPORT_SYMBOL vmlinux 0x3cf4289e dquot_resume -EXPORT_SYMBOL vmlinux 0x3cfa183c vme_dma_list_exec +EXPORT_SYMBOL vmlinux 0x3cead61f pm860x_reg_read +EXPORT_SYMBOL vmlinux 0x3cf1f5f7 dm_io +EXPORT_SYMBOL vmlinux 0x3cf5c42b jbd2_journal_revoke +EXPORT_SYMBOL vmlinux 0x3cfd3162 mdiobus_write_nested EXPORT_SYMBOL vmlinux 0x3d02cd70 dma_fence_signal_locked -EXPORT_SYMBOL vmlinux 0x3d0db683 tty_port_open +EXPORT_SYMBOL vmlinux 0x3d0c313d clear_inode EXPORT_SYMBOL vmlinux 0x3d210724 gen_pool_dma_zalloc_align -EXPORT_SYMBOL vmlinux 0x3d2a1ef6 bfifo_qdisc_ops -EXPORT_SYMBOL vmlinux 0x3d3f59b0 tcp_close +EXPORT_SYMBOL vmlinux 0x3d366ed9 scsi_add_host_with_dma +EXPORT_SYMBOL vmlinux 0x3d3a4b9a pci_alloc_dev +EXPORT_SYMBOL vmlinux 0x3d3f011f scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x3d45db94 agp_generic_mask_memory EXPORT_SYMBOL vmlinux 0x3d56e7b3 utf8_unload -EXPORT_SYMBOL vmlinux 0x3d634038 phy_drivers_unregister -EXPORT_SYMBOL vmlinux 0x3d670837 inet_csk_reqsk_queue_add +EXPORT_SYMBOL vmlinux 0x3d5a2d4d seq_put_decimal_ull +EXPORT_SYMBOL vmlinux 0x3d674209 fscrypt_free_inode +EXPORT_SYMBOL vmlinux 0x3d75026d backlight_device_register +EXPORT_SYMBOL vmlinux 0x3d76791b vc_resize +EXPORT_SYMBOL vmlinux 0x3d7e2f4a pci_clear_mwi +EXPORT_SYMBOL vmlinux 0x3d8fb2d2 ip_generic_getfrag +EXPORT_SYMBOL vmlinux 0x3d92f5ee md_bitmap_sync_with_cluster +EXPORT_SYMBOL vmlinux 0x3d9e418c __bread_gfp EXPORT_SYMBOL vmlinux 0x3da171f9 pci_mem_start 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 0x3daec955 nf_log_set +EXPORT_SYMBOL vmlinux 0x3dbe48fb blk_integrity_register EXPORT_SYMBOL vmlinux 0x3dc619d3 swake_up_locked EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data +EXPORT_SYMBOL vmlinux 0x3dce4c3e has_capability +EXPORT_SYMBOL vmlinux 0x3dd2e7ea pci_set_mwi +EXPORT_SYMBOL vmlinux 0x3dd330bf d_delete EXPORT_SYMBOL vmlinux 0x3dd9b230 proc_dointvec_userhz_jiffies EXPORT_SYMBOL vmlinux 0x3ddc6c04 x86_bios_cpu_apicid -EXPORT_SYMBOL vmlinux 0x3ddc94b6 pci_read_vpd -EXPORT_SYMBOL vmlinux 0x3df94cc4 dmam_alloc_attrs +EXPORT_SYMBOL vmlinux 0x3deae395 irq_domain_set_info +EXPORT_SYMBOL vmlinux 0x3def4296 dev_driver_string +EXPORT_SYMBOL vmlinux 0x3df403af dm_register_target EXPORT_SYMBOL vmlinux 0x3dfb86b9 resource_list_create_entry EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head -EXPORT_SYMBOL vmlinux 0x3e38a763 tcf_exts_num_actions +EXPORT_SYMBOL vmlinux 0x3e2c4f03 param_get_short +EXPORT_SYMBOL vmlinux 0x3e3143c5 node_data +EXPORT_SYMBOL vmlinux 0x3e32fa61 security_unix_may_send EXPORT_SYMBOL vmlinux 0x3e3bad0a __tasklet_hi_schedule -EXPORT_SYMBOL vmlinux 0x3e4ef13a vlan_vid_del -EXPORT_SYMBOL vmlinux 0x3e52461e dev_get_mac_address -EXPORT_SYMBOL vmlinux 0x3e66e2cb pnp_unregister_driver -EXPORT_SYMBOL vmlinux 0x3e700565 blk_queue_split -EXPORT_SYMBOL vmlinux 0x3e7598a9 phy_ethtool_get_stats -EXPORT_SYMBOL vmlinux 0x3e7e4f0f pci_alloc_host_bridge -EXPORT_SYMBOL vmlinux 0x3e7eefb0 pci_fixup_cardbus -EXPORT_SYMBOL vmlinux 0x3e8c10e0 pcie_set_readrq -EXPORT_SYMBOL vmlinux 0x3eac2464 fs_param_is_string -EXPORT_SYMBOL vmlinux 0x3eacb3d0 ethtool_virtdev_set_link_ksettings -EXPORT_SYMBOL vmlinux 0x3eb6bc4b __tracepoint_dma_fence_signaled -EXPORT_SYMBOL vmlinux 0x3ee4895f napi_schedule_prep -EXPORT_SYMBOL vmlinux 0x3eea0a8a dst_alloc +EXPORT_SYMBOL vmlinux 0x3e3f069a page_symlink +EXPORT_SYMBOL vmlinux 0x3e5781d3 do_SAK +EXPORT_SYMBOL vmlinux 0x3e587b76 vfs_get_tree +EXPORT_SYMBOL vmlinux 0x3e5fde81 file_path +EXPORT_SYMBOL vmlinux 0x3e6aa3c8 __skb_gro_checksum_complete +EXPORT_SYMBOL vmlinux 0x3e7290d2 simple_setattr +EXPORT_SYMBOL vmlinux 0x3e7996af sk_reset_timer +EXPORT_SYMBOL vmlinux 0x3e7b63c2 inet_reqsk_alloc +EXPORT_SYMBOL vmlinux 0x3e981dea devm_ioremap_np +EXPORT_SYMBOL vmlinux 0x3ec4c831 write_cache_pages +EXPORT_SYMBOL vmlinux 0x3ed077cf pcix_set_mmrbc EXPORT_SYMBOL vmlinux 0x3eeb2322 __wake_up -EXPORT_SYMBOL vmlinux 0x3eef5c99 ps2_handle_response EXPORT_SYMBOL vmlinux 0x3efe1703 phy_unregister_fixup_for_id -EXPORT_SYMBOL vmlinux 0x3f09c058 netif_tx_wake_queue +EXPORT_SYMBOL vmlinux 0x3efe2376 simple_get_link EXPORT_SYMBOL vmlinux 0x3f0eabd2 xxh64_update -EXPORT_SYMBOL vmlinux 0x3f0fc6f0 tcp_mtup_init -EXPORT_SYMBOL vmlinux 0x3f1f4299 fscrypt_free_bounce_page -EXPORT_SYMBOL vmlinux 0x3f292ae5 __ip_options_compile -EXPORT_SYMBOL vmlinux 0x3f3d3931 file_path -EXPORT_SYMBOL vmlinux 0x3f3d59d1 jbd2__journal_restart +EXPORT_SYMBOL vmlinux 0x3f1e5841 shrink_dcache_sb +EXPORT_SYMBOL vmlinux 0x3f3ae608 netlink_unicast EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd +EXPORT_SYMBOL vmlinux 0x3f454dad pcim_iomap_regions EXPORT_SYMBOL vmlinux 0x3f4bd846 gen_pool_first_fit_order_align -EXPORT_SYMBOL vmlinux 0x3f4cd44d pmem_should_map_pages -EXPORT_SYMBOL vmlinux 0x3f653613 generic_update_time +EXPORT_SYMBOL vmlinux 0x3f746866 _dev_info EXPORT_SYMBOL vmlinux 0x3f89071b security_ib_pkey_access -EXPORT_SYMBOL vmlinux 0x3f963595 tcp_ioctl -EXPORT_SYMBOL vmlinux 0x3f97167b rproc_elf_sanity_check -EXPORT_SYMBOL vmlinux 0x3fa7534d devm_memremap +EXPORT_SYMBOL vmlinux 0x3fb255a6 zerocopy_sg_from_iter EXPORT_SYMBOL vmlinux 0x3fbf3c89 vme_slave_set +EXPORT_SYMBOL vmlinux 0x3fc05da0 fwnode_graph_parse_endpoint EXPORT_SYMBOL vmlinux 0x3fd78f3b register_chrdev_region -EXPORT_SYMBOL vmlinux 0x3fde2877 follow_up -EXPORT_SYMBOL vmlinux 0x3fe27161 pci_get_domain_bus_and_slot EXPORT_SYMBOL vmlinux 0x3fe2ccbe memweight EXPORT_SYMBOL vmlinux 0x3fe8173f config_group_init_type_name -EXPORT_SYMBOL vmlinux 0x3ffa1b65 netif_carrier_on -EXPORT_SYMBOL vmlinux 0x3ffc3078 mipi_dsi_device_unregister -EXPORT_SYMBOL vmlinux 0x4008a371 arp_send -EXPORT_SYMBOL vmlinux 0x400a7ea7 param_set_invbool -EXPORT_SYMBOL vmlinux 0x401d3b1d vfs_mkdir -EXPORT_SYMBOL vmlinux 0x40508083 tcp_v4_connect +EXPORT_SYMBOL vmlinux 0x3fea1b37 mipi_dsi_shutdown_peripheral +EXPORT_SYMBOL vmlinux 0x3ffcd7a3 napi_gro_flush +EXPORT_SYMBOL vmlinux 0x400086fc phy_ethtool_set_eee +EXPORT_SYMBOL vmlinux 0x40150546 dst_discard_out +EXPORT_SYMBOL vmlinux 0x401c7fbe md_handle_request +EXPORT_SYMBOL vmlinux 0x40277adc inet_proto_csum_replace4 +EXPORT_SYMBOL vmlinux 0x402dda72 dev_getbyhwaddr_rcu +EXPORT_SYMBOL vmlinux 0x40479e68 wait_for_key_construction +EXPORT_SYMBOL vmlinux 0x404aa673 proc_set_size EXPORT_SYMBOL vmlinux 0x4055a920 acpi_remove_fixed_event_handler -EXPORT_SYMBOL vmlinux 0x407962c8 vmf_insert_pfn_prot +EXPORT_SYMBOL vmlinux 0x405f0cb7 input_set_poll_interval +EXPORT_SYMBOL vmlinux 0x4079a63d mipi_dsi_dcs_set_tear_on +EXPORT_SYMBOL vmlinux 0x40824741 __module_get +EXPORT_SYMBOL vmlinux 0x40857cb6 qdisc_offload_graft_helper +EXPORT_SYMBOL vmlinux 0x40858073 param_ops_ullong EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem EXPORT_SYMBOL vmlinux 0x409873e3 tty_termios_baud_rate EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc -EXPORT_SYMBOL vmlinux 0x40c36ecf seg6_hmac_info_lookup +EXPORT_SYMBOL vmlinux 0x40acd126 pcim_iounmap_regions +EXPORT_SYMBOL vmlinux 0x40b6b231 fget_raw +EXPORT_SYMBOL vmlinux 0x40bb3d47 mdiobus_register_device EXPORT_SYMBOL vmlinux 0x40c7247c si_meminfo +EXPORT_SYMBOL vmlinux 0x40c8d5c3 _dev_err EXPORT_SYMBOL vmlinux 0x40d04664 console_trylock EXPORT_SYMBOL vmlinux 0x40d59096 unregister_restart_handler +EXPORT_SYMBOL vmlinux 0x40d6da1d datagram_poll EXPORT_SYMBOL vmlinux 0x40d84a37 ZSTD_getFrameParams -EXPORT_SYMBOL vmlinux 0x40f32828 inet_frag_reasm_prepare -EXPORT_SYMBOL vmlinux 0x412b8945 remap_pfn_range +EXPORT_SYMBOL vmlinux 0x40e03cd7 seq_release_private +EXPORT_SYMBOL vmlinux 0x40e101df sk_send_sigurg +EXPORT_SYMBOL vmlinux 0x40eeee70 __put_page +EXPORT_SYMBOL vmlinux 0x40f36d84 pci_disable_msi +EXPORT_SYMBOL vmlinux 0x40f5a45f is_bad_inode +EXPORT_SYMBOL vmlinux 0x410021cc tcf_action_check_ctrlact +EXPORT_SYMBOL vmlinux 0x410d0bac input_allocate_device EXPORT_SYMBOL vmlinux 0x412f893c page_offline_begin +EXPORT_SYMBOL vmlinux 0x413de095 jbd2_journal_inode_ranged_wait EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user -EXPORT_SYMBOL vmlinux 0x41487032 skb_copy -EXPORT_SYMBOL vmlinux 0x4158df15 msi_desc_to_pci_dev -EXPORT_SYMBOL vmlinux 0x41765b2b inet_sk_set_state -EXPORT_SYMBOL vmlinux 0x41807caa fscrypt_setup_filename +EXPORT_SYMBOL vmlinux 0x414fd8ce page_pool_put_page EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time -EXPORT_SYMBOL vmlinux 0x41a98eff mipi_dsi_dcs_soft_reset -EXPORT_SYMBOL vmlinux 0x41aa6985 seq_escape +EXPORT_SYMBOL vmlinux 0x418d80cf phy_device_free +EXPORT_SYMBOL vmlinux 0x419c5fbf sk_error_report +EXPORT_SYMBOL vmlinux 0x419d037a __mod_lruvec_page_state +EXPORT_SYMBOL vmlinux 0x419fefa9 netpoll_poll_enable +EXPORT_SYMBOL vmlinux 0x41ad57a7 fs_param_is_path +EXPORT_SYMBOL vmlinux 0x41adce0d vlan_vids_del_by_dev +EXPORT_SYMBOL vmlinux 0x41bd0a7c xsk_tx_peek_desc +EXPORT_SYMBOL vmlinux 0x41c539dd param_set_long EXPORT_SYMBOL vmlinux 0x41d7b6d2 load_nls_default -EXPORT_SYMBOL vmlinux 0x41dc3c40 udp_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0x41e13bbf md_set_array_sectors EXPORT_SYMBOL vmlinux 0x41efdeaf radix_tree_lookup_slot +EXPORT_SYMBOL vmlinux 0x41fb9182 set_trace_device +EXPORT_SYMBOL vmlinux 0x41fdd513 dma_pool_create EXPORT_SYMBOL vmlinux 0x420964e3 __nla_parse +EXPORT_SYMBOL vmlinux 0x420f6ff0 freezing_slow_path +EXPORT_SYMBOL vmlinux 0x42105d80 dev_set_group EXPORT_SYMBOL vmlinux 0x42160169 flush_workqueue -EXPORT_SYMBOL vmlinux 0x422716c2 phy_write_paged +EXPORT_SYMBOL vmlinux 0x4219cea2 free_inode_nonrcu +EXPORT_SYMBOL vmlinux 0x42228ef7 iov_iter_xarray +EXPORT_SYMBOL vmlinux 0x422292c4 vga_client_register EXPORT_SYMBOL vmlinux 0x4230a8d7 sg_nents_for_len -EXPORT_SYMBOL vmlinux 0x4233dd22 tty_port_init -EXPORT_SYMBOL vmlinux 0x423cd59f dma_alloc_attrs EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp +EXPORT_SYMBOL vmlinux 0x42569549 genlmsg_multicast_allns EXPORT_SYMBOL vmlinux 0x42578e80 acpi_get_type EXPORT_SYMBOL vmlinux 0x42595e58 vgacon_text_force -EXPORT_SYMBOL vmlinux 0x4272a96d dcb_ieee_getapp_dscp_prio_mask_map -EXPORT_SYMBOL vmlinux 0x4278d2e8 __napi_alloc_skb -EXPORT_SYMBOL vmlinux 0x427d5aaf _dev_err -EXPORT_SYMBOL vmlinux 0x42a4f788 jbd2_journal_forget -EXPORT_SYMBOL vmlinux 0x42aacd92 md_bitmap_close_sync -EXPORT_SYMBOL vmlinux 0x42b72896 acpi_processor_notify_smm +EXPORT_SYMBOL vmlinux 0x4276d5fc da903x_query_status +EXPORT_SYMBOL vmlinux 0x427caa5a sock_wfree +EXPORT_SYMBOL vmlinux 0x427f3c7a xp_raw_get_data +EXPORT_SYMBOL vmlinux 0x4293d376 i2c_transfer +EXPORT_SYMBOL vmlinux 0x4298b9b0 tcp_initialize_rcv_mss EXPORT_SYMBOL vmlinux 0x42bed8d4 unix_gc_lock -EXPORT_SYMBOL vmlinux 0x42c5e1d4 agp_generic_mask_memory +EXPORT_SYMBOL vmlinux 0x42c9e1c8 address_space_init_once +EXPORT_SYMBOL vmlinux 0x42cbc14d pci_bus_read_config_word +EXPORT_SYMBOL vmlinux 0x42e40161 dma_resv_add_excl_fence +EXPORT_SYMBOL vmlinux 0x42ea9d7c phy_sfp_probe +EXPORT_SYMBOL vmlinux 0x42ed049f xfrm_user_policy EXPORT_SYMBOL vmlinux 0x42f1b900 fb_pad_unaligned_buffer -EXPORT_SYMBOL vmlinux 0x42f7d825 scsi_eh_prep_cmnd EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages -EXPORT_SYMBOL vmlinux 0x43136614 twl6040_reg_read +EXPORT_SYMBOL vmlinux 0x4313a2b1 xfrm_init_replay EXPORT_SYMBOL vmlinux 0x431ec3a9 __nla_validate -EXPORT_SYMBOL vmlinux 0x432bbc78 jbd2_journal_load +EXPORT_SYMBOL vmlinux 0x4331d0fd remap_pfn_range EXPORT_SYMBOL vmlinux 0x4336fcca ucs2_as_utf8 -EXPORT_SYMBOL vmlinux 0x433abdf8 unpin_user_page EXPORT_SYMBOL vmlinux 0x433cabfb acpi_decode_pld_buffer +EXPORT_SYMBOL vmlinux 0x43407d96 vga_switcheroo_client_fb_set EXPORT_SYMBOL vmlinux 0x4351577a fb_parse_edid -EXPORT_SYMBOL vmlinux 0x4352fe13 posix_test_lock -EXPORT_SYMBOL vmlinux 0x435c9cd5 d_alloc_parallel -EXPORT_SYMBOL vmlinux 0x4369c5ca tcp_md5_hash_key +EXPORT_SYMBOL vmlinux 0x435af62e skb_eth_pop EXPORT_SYMBOL vmlinux 0x437a0d6d __sock_tx_timestamp +EXPORT_SYMBOL vmlinux 0x437bef83 fs_param_is_blob +EXPORT_SYMBOL vmlinux 0x437fdda8 jbd2_journal_init_jbd_inode EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security -EXPORT_SYMBOL vmlinux 0x43ada4eb __SCK__tp_func_dma_fence_signaled -EXPORT_SYMBOL vmlinux 0x43adc928 pci_msi_vec_count -EXPORT_SYMBOL vmlinux 0x43aeb0b4 rproc_alloc +EXPORT_SYMBOL vmlinux 0x4391c96f pci_map_rom +EXPORT_SYMBOL vmlinux 0x43a43e36 acpi_device_hid +EXPORT_SYMBOL vmlinux 0x43a54a87 rproc_elf_find_loaded_rsc_table +EXPORT_SYMBOL vmlinux 0x43ac1aeb ppp_channel_index +EXPORT_SYMBOL vmlinux 0x43ac3e83 fiemap_prep +EXPORT_SYMBOL vmlinux 0x43ae5886 rtnl_unicast +EXPORT_SYMBOL vmlinux 0x43b40f59 wireless_send_event +EXPORT_SYMBOL vmlinux 0x43bc4238 security_sock_graft EXPORT_SYMBOL vmlinux 0x43d22fb9 groups_alloc -EXPORT_SYMBOL vmlinux 0x43d74e37 regset_get -EXPORT_SYMBOL vmlinux 0x43dcc3a4 __blk_rq_map_sg -EXPORT_SYMBOL vmlinux 0x43e4cf9e mmc_register_driver -EXPORT_SYMBOL vmlinux 0x43ea28b2 devm_pci_remap_iospace -EXPORT_SYMBOL vmlinux 0x43ebd4c4 tcp_openreq_init_rwin -EXPORT_SYMBOL vmlinux 0x43f8c4a9 simple_transaction_get -EXPORT_SYMBOL vmlinux 0x440addca remap_vmalloc_range -EXPORT_SYMBOL vmlinux 0x44321dc8 mpage_readpage +EXPORT_SYMBOL vmlinux 0x43e1d23c i2c_verify_client +EXPORT_SYMBOL vmlinux 0x43e6cde6 dma_get_sgtable_attrs +EXPORT_SYMBOL vmlinux 0x43fe45f3 flow_block_cb_incref +EXPORT_SYMBOL vmlinux 0x440c7a8a mnt_set_expiry +EXPORT_SYMBOL vmlinux 0x441fb495 vm_mmap EXPORT_SYMBOL vmlinux 0x44414ff2 iosf_mbi_unblock_punit_i2c_access EXPORT_SYMBOL vmlinux 0x44469a76 crc_ccitt_false_table -EXPORT_SYMBOL vmlinux 0x4457528d pci_request_region EXPORT_SYMBOL vmlinux 0x4462d35e cpufreq_get_hw_max_freq -EXPORT_SYMBOL vmlinux 0x4463819e eth_gro_complete -EXPORT_SYMBOL vmlinux 0x4484815a user_path_at_empty +EXPORT_SYMBOL vmlinux 0x446408b4 d_obtain_alias +EXPORT_SYMBOL vmlinux 0x4464161a param_get_hexint +EXPORT_SYMBOL vmlinux 0x44661bf4 skb_tunnel_check_pmtu EXPORT_SYMBOL vmlinux 0x44902cff acpi_enable_event EXPORT_SYMBOL vmlinux 0x449ad0a7 memcmp EXPORT_SYMBOL vmlinux 0x44a6e90a irq_cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x44aa2bb7 pci_pme_active EXPORT_SYMBOL vmlinux 0x44aaf30f tsc_khz +EXPORT_SYMBOL vmlinux 0x44acdc67 cleancache_register_ops +EXPORT_SYMBOL vmlinux 0x44afa5cb napi_consume_skb +EXPORT_SYMBOL vmlinux 0x44b94fc5 __tracepoint_read_msr +EXPORT_SYMBOL vmlinux 0x44c11a1f vfs_setpos +EXPORT_SYMBOL vmlinux 0x44dfab06 configfs_depend_item_unlocked +EXPORT_SYMBOL vmlinux 0x44e0e9cc cdrom_ioctl +EXPORT_SYMBOL vmlinux 0x44e1e05c pagecache_get_page +EXPORT_SYMBOL vmlinux 0x44e45f40 vga_get EXPORT_SYMBOL vmlinux 0x44e9a829 match_token -EXPORT_SYMBOL vmlinux 0x44ee5c29 mmc_gpio_set_cd_wake -EXPORT_SYMBOL vmlinux 0x44f792de input_set_keycode -EXPORT_SYMBOL vmlinux 0x450050d7 scsi_set_medium_removal +EXPORT_SYMBOL vmlinux 0x44e9f252 rproc_alloc +EXPORT_SYMBOL vmlinux 0x44f902fe sock_pfree +EXPORT_SYMBOL vmlinux 0x44fd2f8c max8925_set_bits EXPORT_SYMBOL vmlinux 0x45006cee default_red EXPORT_SYMBOL vmlinux 0x45081703 ec_get_handle -EXPORT_SYMBOL vmlinux 0x4508683e invalidate_bdev EXPORT_SYMBOL vmlinux 0x452ba683 ipv6_ext_hdr EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled -EXPORT_SYMBOL vmlinux 0x45505ede jbd2_journal_flush -EXPORT_SYMBOL vmlinux 0x45518ebd inet_csk_clear_xmit_timers EXPORT_SYMBOL vmlinux 0x45535485 xxh32_update -EXPORT_SYMBOL vmlinux 0x456d9343 kthread_associate_blkcg +EXPORT_SYMBOL vmlinux 0x45587008 cdrom_dummy_generic_packet EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user EXPORT_SYMBOL vmlinux 0x457c5f77 convert_tsc_ns_to_art -EXPORT_SYMBOL vmlinux 0x459e953e km_report -EXPORT_SYMBOL vmlinux 0x45af1423 d_rehash -EXPORT_SYMBOL vmlinux 0x45bfe675 dm_table_get_md -EXPORT_SYMBOL vmlinux 0x45c680fe mount_bdev +EXPORT_SYMBOL vmlinux 0x458c7e3d rproc_vq_interrupt +EXPORT_SYMBOL vmlinux 0x458f3a71 mipi_dsi_dcs_set_display_on +EXPORT_SYMBOL vmlinux 0x45c9417d pin_user_pages +EXPORT_SYMBOL vmlinux 0x45cf0dd1 pnp_activate_dev EXPORT_SYMBOL vmlinux 0x45d246da node_to_cpumask_map -EXPORT_SYMBOL vmlinux 0x45e2691e __scsi_print_sense -EXPORT_SYMBOL vmlinux 0x45e39627 find_inode_rcu +EXPORT_SYMBOL vmlinux 0x45e5e2ee mmc_can_erase EXPORT_SYMBOL vmlinux 0x45e8d7b5 native_write_cr0 -EXPORT_SYMBOL vmlinux 0x46067b31 fscrypt_put_encryption_info +EXPORT_SYMBOL vmlinux 0x45e9d4ee rawv6_mh_filter_register +EXPORT_SYMBOL vmlinux 0x45fa4057 page_get_link +EXPORT_SYMBOL vmlinux 0x46019b22 amd_iommu_domain_direct_map +EXPORT_SYMBOL vmlinux 0x46038c54 genphy_read_lpa +EXPORT_SYMBOL vmlinux 0x46050236 pci_write_vpd +EXPORT_SYMBOL vmlinux 0x46065c15 mdiobus_setup_mdiodev_from_board_info +EXPORT_SYMBOL vmlinux 0x460f4a34 flow_hash_from_keys +EXPORT_SYMBOL vmlinux 0x46171970 end_buffer_write_sync +EXPORT_SYMBOL vmlinux 0x461ab870 inet_frag_pull_head EXPORT_SYMBOL vmlinux 0x461d16ca sg_nents EXPORT_SYMBOL vmlinux 0x4629334c __preempt_count -EXPORT_SYMBOL vmlinux 0x46310c0d pci_enable_device +EXPORT_SYMBOL vmlinux 0x462e8fa3 flow_rule_match_enc_opts EXPORT_SYMBOL vmlinux 0x463219fb tcp_hashinfo -EXPORT_SYMBOL vmlinux 0x46532f9e __cleancache_put_page +EXPORT_SYMBOL vmlinux 0x4641f041 dev_remove_pack +EXPORT_SYMBOL vmlinux 0x464ff95b dev_mc_add_excl EXPORT_SYMBOL vmlinux 0x465e24ff ucs2_utf8size -EXPORT_SYMBOL vmlinux 0x46634fb5 nvdimm_bus_lock +EXPORT_SYMBOL vmlinux 0x4662bc0a set_pages_uc +EXPORT_SYMBOL vmlinux 0x466321de blk_queue_max_discard_sectors +EXPORT_SYMBOL vmlinux 0x466776f6 get_task_cred EXPORT_SYMBOL vmlinux 0x466c14a7 __delay +EXPORT_SYMBOL vmlinux 0x467319f4 dquot_commit EXPORT_SYMBOL vmlinux 0x467df16d netdev_rss_key_fill -EXPORT_SYMBOL vmlinux 0x46844a07 filemap_fdatawait_range +EXPORT_SYMBOL vmlinux 0x468979ca dcache_readdir +EXPORT_SYMBOL vmlinux 0x468e9ae2 input_reset_device EXPORT_SYMBOL vmlinux 0x469a6ec7 tcp_parse_md5sig_option -EXPORT_SYMBOL vmlinux 0x469dd7f9 kernel_read -EXPORT_SYMBOL vmlinux 0x46ab44e6 inet_add_offload -EXPORT_SYMBOL vmlinux 0x46ae662c phy_modify_paged -EXPORT_SYMBOL vmlinux 0x46b12c9e __netlink_ns_capable +EXPORT_SYMBOL vmlinux 0x46a6b7ff gnet_stats_finish_copy +EXPORT_SYMBOL vmlinux 0x46ac383a vfs_mknod +EXPORT_SYMBOL vmlinux 0x46c411de consume_skb EXPORT_SYMBOL vmlinux 0x46c47fb6 __node_distance +EXPORT_SYMBOL vmlinux 0x46cc1485 security_sb_remount EXPORT_SYMBOL vmlinux 0x46cf10eb cachemode2protval -EXPORT_SYMBOL vmlinux 0x4703f7c9 get_fs_type -EXPORT_SYMBOL vmlinux 0x4707e997 logfc +EXPORT_SYMBOL vmlinux 0x46f00e56 devm_pci_remap_iospace +EXPORT_SYMBOL vmlinux 0x46f65036 twl6040_set_bits +EXPORT_SYMBOL vmlinux 0x47120dd1 vme_irq_request EXPORT_SYMBOL vmlinux 0x4715a909 acpi_load_table -EXPORT_SYMBOL vmlinux 0x472d4376 forget_cached_acl -EXPORT_SYMBOL vmlinux 0x47345695 input_mt_report_pointer_emulation -EXPORT_SYMBOL vmlinux 0x47390870 pnp_start_dev +EXPORT_SYMBOL vmlinux 0x4716fa57 i2c_smbus_read_i2c_block_data_or_emulated +EXPORT_SYMBOL vmlinux 0x472d4329 seg6_hmac_net_init EXPORT_SYMBOL vmlinux 0x4740b3bc xen_arch_unregister_cpu -EXPORT_SYMBOL vmlinux 0x474a7a3d d_prune_aliases -EXPORT_SYMBOL vmlinux 0x475283d6 pcim_set_mwi -EXPORT_SYMBOL vmlinux 0x475fba01 dma_sync_sg_for_device +EXPORT_SYMBOL vmlinux 0x474855a7 dev_add_pack +EXPORT_SYMBOL vmlinux 0x475896a3 rdmacg_uncharge EXPORT_SYMBOL vmlinux 0x47709e42 free_anon_bdev +EXPORT_SYMBOL vmlinux 0x477760e8 crypto_sha512_finup +EXPORT_SYMBOL vmlinux 0x478e6f17 set_pages_wb EXPORT_SYMBOL vmlinux 0x47960bc4 proc_do_large_bitmap +EXPORT_SYMBOL vmlinux 0x479923ca bh_submit_read +EXPORT_SYMBOL vmlinux 0x479ddda0 phy_attached_info_irq EXPORT_SYMBOL vmlinux 0x47a0cdcb mb_cache_entry_find_next -EXPORT_SYMBOL vmlinux 0x47c0884b blk_mq_start_hw_queues +EXPORT_SYMBOL vmlinux 0x47a76cd7 pagevec_lookup_range +EXPORT_SYMBOL vmlinux 0x47ba372e dump_align EXPORT_SYMBOL vmlinux 0x47c20f8a refcount_dec_not_one EXPORT_SYMBOL vmlinux 0x47c65bfc unregister_inet6addr_validator_notifier -EXPORT_SYMBOL vmlinux 0x47c68c55 kernel_param_unlock EXPORT_SYMBOL vmlinux 0x47cfd825 kstrtouint_from_user EXPORT_SYMBOL vmlinux 0x47d8d301 __cond_resched_rwlock_read -EXPORT_SYMBOL vmlinux 0x4810af1e mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0x47ee3cc2 netif_set_real_num_rx_queues +EXPORT_SYMBOL vmlinux 0x47eecc47 inet_sendmsg +EXPORT_SYMBOL vmlinux 0x47f28dad mr_table_alloc +EXPORT_SYMBOL vmlinux 0x47f8d635 __get_hash_from_flowi6 +EXPORT_SYMBOL vmlinux 0x47fb24da xfrm_state_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x4801f605 genphy_handle_interrupt_no_ack +EXPORT_SYMBOL vmlinux 0x48079dc3 sk_stream_wait_memory +EXPORT_SYMBOL vmlinux 0x480d8990 pci_dev_put EXPORT_SYMBOL vmlinux 0x48112d76 _raw_read_lock_irq +EXPORT_SYMBOL vmlinux 0x48128ea3 jbd2_journal_set_features +EXPORT_SYMBOL vmlinux 0x4814d2a4 sock_no_ioctl EXPORT_SYMBOL vmlinux 0x48193639 acpi_lid_open EXPORT_SYMBOL vmlinux 0x4829cf6b fscrypt_enqueue_decrypt_work -EXPORT_SYMBOL vmlinux 0x482b0166 vlan_filter_push_vids -EXPORT_SYMBOL vmlinux 0x48386a38 padata_do_parallel +EXPORT_SYMBOL vmlinux 0x483057c9 to_ndd EXPORT_SYMBOL vmlinux 0x4841bdee strnchr EXPORT_SYMBOL vmlinux 0x48476bcb intel_gtt_insert_page +EXPORT_SYMBOL vmlinux 0x484909d2 jbd2_journal_grab_journal_head EXPORT_SYMBOL vmlinux 0x484f6edf ktime_get_coarse_real_ts64 -EXPORT_SYMBOL vmlinux 0x48598298 send_sig_info -EXPORT_SYMBOL vmlinux 0x4859b55e phy_device_register +EXPORT_SYMBOL vmlinux 0x4855db28 fwnode_get_phy_id EXPORT_SYMBOL vmlinux 0x4859b8bb rtc_year_days +EXPORT_SYMBOL vmlinux 0x485d5c16 inet_sk_rebuild_header EXPORT_SYMBOL vmlinux 0x486075c8 gen_pool_dma_alloc EXPORT_SYMBOL vmlinux 0x4871d75d clk_hw_register_clkdev -EXPORT_SYMBOL vmlinux 0x489bb171 __module_put_and_exit +EXPORT_SYMBOL vmlinux 0x48766fd2 inet_csk_clear_xmit_timers +EXPORT_SYMBOL vmlinux 0x4876a933 deactivate_locked_super +EXPORT_SYMBOL vmlinux 0x487d8fd0 tcf_classify EXPORT_SYMBOL vmlinux 0x489f6e0b rdma_dim +EXPORT_SYMBOL vmlinux 0x48a0b6b8 pci_enable_msix_range +EXPORT_SYMBOL vmlinux 0x48a0c725 tcf_block_put_ext +EXPORT_SYMBOL vmlinux 0x48a202b3 vme_dma_list_add +EXPORT_SYMBOL vmlinux 0x48a78b94 i2c_verify_adapter EXPORT_SYMBOL vmlinux 0x48a81d7e vfio_group_pin_pages EXPORT_SYMBOL vmlinux 0x48a91171 string_get_size +EXPORT_SYMBOL vmlinux 0x48abe457 twl6040_clear_bits EXPORT_SYMBOL vmlinux 0x48b99a13 vme_lm_free EXPORT_SYMBOL vmlinux 0x48c093fb _atomic_dec_and_lock_irqsave -EXPORT_SYMBOL vmlinux 0x48c095c4 blk_mq_free_tag_set +EXPORT_SYMBOL vmlinux 0x48c4e200 jbd2_complete_transaction EXPORT_SYMBOL vmlinux 0x48c5dd72 config_group_find_item -EXPORT_SYMBOL vmlinux 0x48c8218e rproc_add_subdev -EXPORT_SYMBOL vmlinux 0x48ca9cd0 agp_bind_memory -EXPORT_SYMBOL vmlinux 0x48cfeac5 tcp_parse_options +EXPORT_SYMBOL vmlinux 0x48ca04e4 tcp_v4_conn_request +EXPORT_SYMBOL vmlinux 0x48d4a089 pm860x_set_bits EXPORT_SYMBOL vmlinux 0x48d50e79 amd_iommu_register_ppr_notifier -EXPORT_SYMBOL vmlinux 0x48e36c83 mr_mfc_seq_idx -EXPORT_SYMBOL vmlinux 0x48e98297 keyring_alloc -EXPORT_SYMBOL vmlinux 0x48e9bce9 max8998_bulk_write +EXPORT_SYMBOL vmlinux 0x48e6e4f0 open_with_fake_path EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert +EXPORT_SYMBOL vmlinux 0x490a03ab is_nd_dax +EXPORT_SYMBOL vmlinux 0x491d2541 tty_register_device +EXPORT_SYMBOL vmlinux 0x492997e0 simple_recursive_removal EXPORT_SYMBOL vmlinux 0x494e3393 vm_get_page_prot +EXPORT_SYMBOL vmlinux 0x49511c80 sync_dirty_buffer EXPORT_SYMBOL vmlinux 0x495e378d __pv_queued_spin_lock_slowpath EXPORT_SYMBOL vmlinux 0x4967e79f radix_tree_iter_resume -EXPORT_SYMBOL vmlinux 0x496f8351 ipv6_dev_find -EXPORT_SYMBOL vmlinux 0x497d9a96 input_register_handler -EXPORT_SYMBOL vmlinux 0x4985b469 neigh_sysctl_unregister -EXPORT_SYMBOL vmlinux 0x49894c62 pci_ep_cfs_remove_epf_group -EXPORT_SYMBOL vmlinux 0x498d84df param_get_hexint +EXPORT_SYMBOL vmlinux 0x49874daa file_modified EXPORT_SYMBOL vmlinux 0x498e9128 ZSTD_findDecompressedSize -EXPORT_SYMBOL vmlinux 0x49958984 skb_get_hash_perturb -EXPORT_SYMBOL vmlinux 0x499e1636 rc5t583_ext_power_req_config +EXPORT_SYMBOL vmlinux 0x498eccc5 netdev_txq_to_tc +EXPORT_SYMBOL vmlinux 0x4992cfaa nf_ip6_checksum EXPORT_SYMBOL vmlinux 0x499f0ecf nd_sb_checksum -EXPORT_SYMBOL vmlinux 0x49af50d8 passthru_features_check EXPORT_SYMBOL vmlinux 0x49b163b8 acpi_bus_scan -EXPORT_SYMBOL vmlinux 0x49db1e5c jbd2_journal_put_journal_head -EXPORT_SYMBOL vmlinux 0x4a110c55 xfrm_input_register_afinfo +EXPORT_SYMBOL vmlinux 0x49b6c158 skb_queue_purge +EXPORT_SYMBOL vmlinux 0x49b7a669 pci_resize_resource +EXPORT_SYMBOL vmlinux 0x49c7a6a1 pci_get_device +EXPORT_SYMBOL vmlinux 0x49d0054b udp6_seq_ops +EXPORT_SYMBOL vmlinux 0x49e85e7e fuse_dequeue_forget +EXPORT_SYMBOL vmlinux 0x49e98b87 __inet6_lookup_established +EXPORT_SYMBOL vmlinux 0x49e9c408 ppp_input +EXPORT_SYMBOL vmlinux 0x4a0cd2f7 agp_enable EXPORT_SYMBOL vmlinux 0x4a165127 kobject_put -EXPORT_SYMBOL vmlinux 0x4a24574e page_pool_destroy -EXPORT_SYMBOL vmlinux 0x4a335013 sk_page_frag_refill +EXPORT_SYMBOL vmlinux 0x4a1cdb35 create_empty_buffers +EXPORT_SYMBOL vmlinux 0x4a39038a sk_stream_error EXPORT_SYMBOL vmlinux 0x4a3ad70e wait_for_completion_timeout -EXPORT_SYMBOL vmlinux 0x4a3e3703 flow_block_cb_incref +EXPORT_SYMBOL vmlinux 0x4a3b442b __seq_open_private +EXPORT_SYMBOL vmlinux 0x4a3b5145 ethtool_virtdev_set_link_ksettings EXPORT_SYMBOL vmlinux 0x4a453f53 iowrite32 -EXPORT_SYMBOL vmlinux 0x4a4d155c pci_free_irq_vectors -EXPORT_SYMBOL vmlinux 0x4a6882da dma_resv_fini -EXPORT_SYMBOL vmlinux 0x4a6c58ac md_unregister_thread +EXPORT_SYMBOL vmlinux 0x4a499fc4 ppp_input_error +EXPORT_SYMBOL vmlinux 0x4a66ddee __page_frag_cache_drain +EXPORT_SYMBOL vmlinux 0x4a6873a6 lookup_one_len +EXPORT_SYMBOL vmlinux 0x4a6911b8 ps2_sliced_command +EXPORT_SYMBOL vmlinux 0x4a784719 ethtool_op_get_link +EXPORT_SYMBOL vmlinux 0x4a7db206 tcf_exts_change +EXPORT_SYMBOL vmlinux 0x4a8229ac xfrm4_protocol_deregister EXPORT_SYMBOL vmlinux 0x4a8a6949 get_random_bytes_arch -EXPORT_SYMBOL vmlinux 0x4a8df7d6 mmc_of_parse +EXPORT_SYMBOL vmlinux 0x4a91042a tcp_mtu_to_mss EXPORT_SYMBOL vmlinux 0x4a96a8eb xxh32_digest -EXPORT_SYMBOL vmlinux 0x4ab89651 param_ops_int +EXPORT_SYMBOL vmlinux 0x4aa38480 neigh_parms_release +EXPORT_SYMBOL vmlinux 0x4aba39ea phy_read_paged EXPORT_SYMBOL vmlinux 0x4abb7d10 cpu_rmap_update -EXPORT_SYMBOL vmlinux 0x4ad679b2 inet_del_offload -EXPORT_SYMBOL vmlinux 0x4ad81445 xattr_full_name -EXPORT_SYMBOL vmlinux 0x4adafa42 iw_handler_get_thrspy +EXPORT_SYMBOL vmlinux 0x4abc9a0e dst_cow_metrics_generic EXPORT_SYMBOL vmlinux 0x4aea463f crc32_le_shift +EXPORT_SYMBOL vmlinux 0x4aed1d1c try_to_release_page EXPORT_SYMBOL vmlinux 0x4af6ddf0 kstrtou16 -EXPORT_SYMBOL vmlinux 0x4af78826 inode_set_flags EXPORT_SYMBOL vmlinux 0x4afb2238 add_wait_queue EXPORT_SYMBOL vmlinux 0x4b085dbf agp3_generic_configure -EXPORT_SYMBOL vmlinux 0x4b0990ca d_obtain_root -EXPORT_SYMBOL vmlinux 0x4b3fac17 __mdiobus_read -EXPORT_SYMBOL vmlinux 0x4b445a75 seq_pad +EXPORT_SYMBOL vmlinux 0x4b3b4857 xattr_full_name +EXPORT_SYMBOL vmlinux 0x4b550d20 generic_fillattr EXPORT_SYMBOL vmlinux 0x4b5e3a47 __get_user_nocheck_1 EXPORT_SYMBOL vmlinux 0x4b5fd49e dm_kcopyd_do_callback -EXPORT_SYMBOL vmlinux 0x4b63de37 ipv6_chk_prefix +EXPORT_SYMBOL vmlinux 0x4b6a83f0 filemap_range_has_page EXPORT_SYMBOL vmlinux 0x4b6df007 acpi_evaluate_reg -EXPORT_SYMBOL vmlinux 0x4bbdd245 migrate_page_states -EXPORT_SYMBOL vmlinux 0x4bc4f04b readahead_expand +EXPORT_SYMBOL vmlinux 0x4b940daa in6_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x4b986543 tcf_qevent_destroy +EXPORT_SYMBOL vmlinux 0x4b98e043 dma_sync_sg_for_device +EXPORT_SYMBOL vmlinux 0x4ba29a53 generic_file_open +EXPORT_SYMBOL vmlinux 0x4ba82f3d iget5_locked +EXPORT_SYMBOL vmlinux 0x4ba8a144 agp_generic_free_by_type +EXPORT_SYMBOL vmlinux 0x4bac6a2f rproc_set_firmware +EXPORT_SYMBOL vmlinux 0x4bc590b2 end_buffer_async_write +EXPORT_SYMBOL vmlinux 0x4bcb3dab generic_file_fsync EXPORT_SYMBOL vmlinux 0x4bcc2662 mempool_init_node -EXPORT_SYMBOL vmlinux 0x4bcc5c25 ptp_clock_index -EXPORT_SYMBOL vmlinux 0x4bd27666 inode_insert5 EXPORT_SYMBOL vmlinux 0x4bef1c67 empty_name -EXPORT_SYMBOL vmlinux 0x4bf1e7a1 fib_notifier_ops_unregister +EXPORT_SYMBOL vmlinux 0x4bf98093 blk_pm_runtime_init +EXPORT_SYMBOL vmlinux 0x4c00702c scsi_mode_sense EXPORT_SYMBOL vmlinux 0x4c07a7e0 acpi_processor_unregister_performance EXPORT_SYMBOL vmlinux 0x4c0e0fdc convert_art_to_tsc_ns_duration -EXPORT_SYMBOL vmlinux 0x4c109c52 uart_match_port -EXPORT_SYMBOL vmlinux 0x4c1201d2 generic_read_dir -EXPORT_SYMBOL vmlinux 0x4c17d3b1 set_page_dirty_lock +EXPORT_SYMBOL vmlinux 0x4c18481e netdev_port_same_parent_id EXPORT_SYMBOL vmlinux 0x4c236f6f __x86_indirect_thunk_r15 -EXPORT_SYMBOL vmlinux 0x4c289482 blk_mq_tagset_wait_completed_request -EXPORT_SYMBOL vmlinux 0x4c345b19 vfs_fileattr_get +EXPORT_SYMBOL vmlinux 0x4c2f7170 inet_rcv_saddr_equal EXPORT_SYMBOL vmlinux 0x4c38d4e0 utf8_strncasecmp_folded EXPORT_SYMBOL vmlinux 0x4c416eb9 LZ4_decompress_fast -EXPORT_SYMBOL vmlinux 0x4c4386a3 dma_resv_copy_fences -EXPORT_SYMBOL vmlinux 0x4c4d9e1f touch_buffer -EXPORT_SYMBOL vmlinux 0x4c523bdc md_bitmap_free -EXPORT_SYMBOL vmlinux 0x4c52d765 set_bh_page -EXPORT_SYMBOL vmlinux 0x4c8551ab blk_mq_rq_cpu -EXPORT_SYMBOL vmlinux 0x4c8a4670 scsi_block_when_processing_errors -EXPORT_SYMBOL vmlinux 0x4c985f14 submit_bio +EXPORT_SYMBOL vmlinux 0x4c64c9c4 ppp_register_net_channel +EXPORT_SYMBOL vmlinux 0x4c75eeab cdev_add +EXPORT_SYMBOL vmlinux 0x4c81f80d kernel_getpeername EXPORT_SYMBOL vmlinux 0x4c9d28b0 phys_base -EXPORT_SYMBOL vmlinux 0x4cafb2c4 input_flush_device +EXPORT_SYMBOL vmlinux 0x4ca4b25b __page_cache_alloc +EXPORT_SYMBOL vmlinux 0x4cb1f317 clocksource_unregister +EXPORT_SYMBOL vmlinux 0x4cb20bb3 dev_deactivate EXPORT_SYMBOL vmlinux 0x4cba441d iwe_stream_add_event -EXPORT_SYMBOL vmlinux 0x4cbb6706 dquot_commit -EXPORT_SYMBOL vmlinux 0x4cc5d369 gnet_stats_copy_queue +EXPORT_SYMBOL vmlinux 0x4cbcc37e inet_csk_reqsk_queue_drop_and_put +EXPORT_SYMBOL vmlinux 0x4cc8a740 pm860x_bulk_write +EXPORT_SYMBOL vmlinux 0x4cd5b127 tcp_sync_mss EXPORT_SYMBOL vmlinux 0x4cd5bc5e rdmsr_safe_regs EXPORT_SYMBOL vmlinux 0x4ceae601 get_cpu_entry_area -EXPORT_SYMBOL vmlinux 0x4cf3628c tcf_em_tree_destroy -EXPORT_SYMBOL vmlinux 0x4d074f8d __breadahead -EXPORT_SYMBOL vmlinux 0x4d0af80b __pagevec_release +EXPORT_SYMBOL vmlinux 0x4cf8f2a4 jbd2_journal_stop +EXPORT_SYMBOL vmlinux 0x4d081280 sock_setsockopt +EXPORT_SYMBOL vmlinux 0x4d2201c6 block_is_partially_uptodate EXPORT_SYMBOL vmlinux 0x4d2c7133 acpi_info -EXPORT_SYMBOL vmlinux 0x4d36fead fs_param_is_path -EXPORT_SYMBOL vmlinux 0x4d39b9e6 max8925_reg_write -EXPORT_SYMBOL vmlinux 0x4d47fdb1 unregister_netdev -EXPORT_SYMBOL vmlinux 0x4d690cc7 sk_mc_loop -EXPORT_SYMBOL vmlinux 0x4d6b3bc3 phy_register_fixup -EXPORT_SYMBOL vmlinux 0x4d8b0cc8 eth_mac_addr -EXPORT_SYMBOL vmlinux 0x4d8cb423 con_is_visible -EXPORT_SYMBOL vmlinux 0x4d8cef0b dquot_writeback_dquots -EXPORT_SYMBOL vmlinux 0x4d8d427e fs_param_is_fd +EXPORT_SYMBOL vmlinux 0x4d6e585d tcp_read_sock EXPORT_SYMBOL vmlinux 0x4d924f20 memremap -EXPORT_SYMBOL vmlinux 0x4d93f063 amd_iommu_domain_direct_map -EXPORT_SYMBOL vmlinux 0x4d981bf1 __cleancache_init_fs EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase -EXPORT_SYMBOL vmlinux 0x4da8cf9e cont_write_begin -EXPORT_SYMBOL vmlinux 0x4dab030b to_ndd EXPORT_SYMBOL vmlinux 0x4dca08ee sync_file_get_fence -EXPORT_SYMBOL vmlinux 0x4dd24c9a __skb_try_recv_datagram -EXPORT_SYMBOL vmlinux 0x4dd44c81 pci_claim_resource -EXPORT_SYMBOL vmlinux 0x4dda4fe3 inet_rtx_syn_ack -EXPORT_SYMBOL vmlinux 0x4de8d2a0 d_add_ci EXPORT_SYMBOL vmlinux 0x4de995ec gen_pool_dma_alloc_algo +EXPORT_SYMBOL vmlinux 0x4dea7c50 blk_mq_tagset_wait_completed_request EXPORT_SYMBOL vmlinux 0x4df02057 crc32_be -EXPORT_SYMBOL vmlinux 0x4df247ce _dev_alert EXPORT_SYMBOL vmlinux 0x4df2ea84 gen_estimator_read EXPORT_SYMBOL vmlinux 0x4dfa8d4b mutex_lock -EXPORT_SYMBOL vmlinux 0x4e056004 param_ops_short -EXPORT_SYMBOL vmlinux 0x4e19b781 vlan_uses_dev -EXPORT_SYMBOL vmlinux 0x4e1babc6 jbd2_journal_get_write_access +EXPORT_SYMBOL vmlinux 0x4e0c2b83 phy_read_mmd +EXPORT_SYMBOL vmlinux 0x4e142840 xfrm_unregister_type EXPORT_SYMBOL vmlinux 0x4e20bcf8 radix_tree_tag_set EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int EXPORT_SYMBOL vmlinux 0x4e36cdc4 __ubsan_handle_divrem_overflow -EXPORT_SYMBOL vmlinux 0x4e4e1f30 ps2_init EXPORT_SYMBOL vmlinux 0x4e4f0f16 dma_fence_chain_find_seqno EXPORT_SYMBOL vmlinux 0x4e547048 __kmalloc_node_track_caller +EXPORT_SYMBOL vmlinux 0x4e651f96 page_readlink +EXPORT_SYMBOL vmlinux 0x4e66a2b1 do_clone_file_range EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder EXPORT_SYMBOL vmlinux 0x4e6e4b41 radix_tree_delete EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console -EXPORT_SYMBOL vmlinux 0x4e7d33a3 key_link -EXPORT_SYMBOL vmlinux 0x4e82e6f8 napi_gro_frags -EXPORT_SYMBOL vmlinux 0x4e926210 fscrypt_has_permitted_context -EXPORT_SYMBOL vmlinux 0x4e9a3a2b clk_get -EXPORT_SYMBOL vmlinux 0x4e9c804b copy_page_from_iter -EXPORT_SYMBOL vmlinux 0x4ea1ceaa rawv6_mh_filter_register +EXPORT_SYMBOL vmlinux 0x4e809b03 blk_mq_delay_run_hw_queues +EXPORT_SYMBOL vmlinux 0x4e89ccbf __tracepoint_dma_fence_enable_signal +EXPORT_SYMBOL vmlinux 0x4e99074e xfrm_policy_destroy EXPORT_SYMBOL vmlinux 0x4ea25709 dql_reset -EXPORT_SYMBOL vmlinux 0x4eabba63 mmc_wait_for_req +EXPORT_SYMBOL vmlinux 0x4ea41392 param_set_copystring EXPORT_SYMBOL vmlinux 0x4eada8f7 security_secid_to_secctx -EXPORT_SYMBOL vmlinux 0x4ec35d79 mdio_device_create EXPORT_SYMBOL vmlinux 0x4ec54e78 bitmap_to_arr32 -EXPORT_SYMBOL vmlinux 0x4ec6d06b tcp_v4_md5_hash_skb -EXPORT_SYMBOL vmlinux 0x4ed39e4b dqget -EXPORT_SYMBOL vmlinux 0x4ed55cf4 __scsi_iterate_devices -EXPORT_SYMBOL vmlinux 0x4f076f8b phy_register_fixup_for_id -EXPORT_SYMBOL vmlinux 0x4f0d630f jbd2_journal_invalidatepage -EXPORT_SYMBOL vmlinux 0x4f12434d netdev_emerg -EXPORT_SYMBOL vmlinux 0x4f18cb51 mount_single -EXPORT_SYMBOL vmlinux 0x4f1aca91 mmc_gpiod_request_cd_irq +EXPORT_SYMBOL vmlinux 0x4ed1d89b devm_pci_remap_cfgspace +EXPORT_SYMBOL vmlinux 0x4edbb60a dev_change_proto_down +EXPORT_SYMBOL vmlinux 0x4ef411d8 __task_pid_nr_ns EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create +EXPORT_SYMBOL vmlinux 0x4f1e48e4 pci_ep_cfs_remove_epf_group +EXPORT_SYMBOL vmlinux 0x4f21a207 rdmacg_try_charge EXPORT_SYMBOL vmlinux 0x4f2250ba rtc_tm_to_time64 -EXPORT_SYMBOL vmlinux 0x4f29f243 unregister_quota_format +EXPORT_SYMBOL vmlinux 0x4f244584 dec_zone_page_state +EXPORT_SYMBOL vmlinux 0x4f2af6c5 mmc_detect_card_removed +EXPORT_SYMBOL vmlinux 0x4f36f247 make_kgid +EXPORT_SYMBOL vmlinux 0x4f38ef1a mr_rtm_dumproute EXPORT_SYMBOL vmlinux 0x4f55166f acpi_set_current_resources +EXPORT_SYMBOL vmlinux 0x4f5d47a3 devm_clk_get_optional EXPORT_SYMBOL vmlinux 0x4f709989 security_binder_transfer_binder EXPORT_SYMBOL vmlinux 0x4f711f84 intel_scu_ipc_dev_iowrite8 -EXPORT_SYMBOL vmlinux 0x4fa22a8a pci_scan_slot -EXPORT_SYMBOL vmlinux 0x4fa4aeef __inet_hash -EXPORT_SYMBOL vmlinux 0x4fbdcdaa ppp_register_compressor -EXPORT_SYMBOL vmlinux 0x4fcc8ad2 ex_handler_uaccess +EXPORT_SYMBOL vmlinux 0x4f8ad4df blk_put_request +EXPORT_SYMBOL vmlinux 0x4f94134d mipi_dsi_dcs_enter_sleep_mode +EXPORT_SYMBOL vmlinux 0x4fdce857 gnet_stats_copy_rate_est EXPORT_SYMBOL vmlinux 0x4fdee897 i8042_command -EXPORT_SYMBOL vmlinux 0x4fe04689 fs_param_is_blob -EXPORT_SYMBOL vmlinux 0x4fe1416b blk_post_runtime_suspend -EXPORT_SYMBOL vmlinux 0x4feb4f98 xfrm6_rcv +EXPORT_SYMBOL vmlinux 0x50040936 close_fd_get_file EXPORT_SYMBOL vmlinux 0x50097088 security_tun_dev_free_security EXPORT_SYMBOL vmlinux 0x5009c71d glob_match -EXPORT_SYMBOL vmlinux 0x501d476e dm_table_event -EXPORT_SYMBOL vmlinux 0x5021b9fe alloc_pages_vma +EXPORT_SYMBOL vmlinux 0x50109c2d rproc_of_parse_firmware +EXPORT_SYMBOL vmlinux 0x5016178f __SCK__tp_func_kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0x501e49ce km_report EXPORT_SYMBOL vmlinux 0x5021bd81 _raw_write_lock_irqsave +EXPORT_SYMBOL vmlinux 0x5022b710 free_buffer_head EXPORT_SYMBOL vmlinux 0x5027bde2 acpi_acquire_mutex -EXPORT_SYMBOL vmlinux 0x502e93a9 __inc_zone_page_state -EXPORT_SYMBOL vmlinux 0x5030a7fd dev_pick_tx_zero -EXPORT_SYMBOL vmlinux 0x50310a13 generic_write_end -EXPORT_SYMBOL vmlinux 0x505e6996 xp_dma_map EXPORT_SYMBOL vmlinux 0x50624917 sha1_init +EXPORT_SYMBOL vmlinux 0x506d82ef agp_alloc_bridge EXPORT_SYMBOL vmlinux 0x506dff1a __genradix_free -EXPORT_SYMBOL vmlinux 0x507bf14a netlink_broadcast_filtered -EXPORT_SYMBOL vmlinux 0x50876a30 cfb_imageblit +EXPORT_SYMBOL vmlinux 0x506eb06b __phy_read_mmd +EXPORT_SYMBOL vmlinux 0x507544f7 sync_file_create +EXPORT_SYMBOL vmlinux 0x5078fd67 mmc_erase +EXPORT_SYMBOL vmlinux 0x507bd6ff qdisc_put_unlocked +EXPORT_SYMBOL vmlinux 0x508489ba tty_hung_up_p +EXPORT_SYMBOL vmlinux 0x50875f44 mmc_detect_change +EXPORT_SYMBOL vmlinux 0x508f4fd7 proc_create_data +EXPORT_SYMBOL vmlinux 0x5096a6b8 cookie_ecn_ok EXPORT_SYMBOL vmlinux 0x509b64ea acpi_has_method +EXPORT_SYMBOL vmlinux 0x509ba201 dev_get_by_name EXPORT_SYMBOL vmlinux 0x50a4698c fb_videomode_to_modelist EXPORT_SYMBOL vmlinux 0x50b73ce2 rfkill_find_type EXPORT_SYMBOL vmlinux 0x50be748d security_ib_free_security EXPORT_SYMBOL vmlinux 0x50cf7585 hex2bin EXPORT_SYMBOL vmlinux 0x50d035c2 vsscanf +EXPORT_SYMBOL vmlinux 0x50d2ea14 mr_table_dump EXPORT_SYMBOL vmlinux 0x50d68377 arch_phys_wc_del +EXPORT_SYMBOL vmlinux 0x50e0bdcf pci_bus_assign_resources EXPORT_SYMBOL vmlinux 0x50f91491 __genradix_ptr EXPORT_SYMBOL vmlinux 0x5102a30b do_wait_intr_irq -EXPORT_SYMBOL vmlinux 0x5105e6f9 __sk_receive_skb EXPORT_SYMBOL vmlinux 0x5107701c __do_once_done -EXPORT_SYMBOL vmlinux 0x511c653c md_write_start +EXPORT_SYMBOL vmlinux 0x5120dca4 inode_init_owner +EXPORT_SYMBOL vmlinux 0x51219d22 bio_clone_fast EXPORT_SYMBOL vmlinux 0x512afb54 nla_put_nohdr -EXPORT_SYMBOL vmlinux 0x514518f6 tcf_exts_dump -EXPORT_SYMBOL vmlinux 0x514a2d17 pci_bus_read_config_word +EXPORT_SYMBOL vmlinux 0x512ef541 rtnl_set_sk_err +EXPORT_SYMBOL vmlinux 0x513a558e ipv6_chk_prefix EXPORT_SYMBOL vmlinux 0x515083bf acpi_release_mutex -EXPORT_SYMBOL vmlinux 0x51511f42 unregister_qdisc +EXPORT_SYMBOL vmlinux 0x5153bfde tso_build_data +EXPORT_SYMBOL vmlinux 0x51582314 dst_alloc +EXPORT_SYMBOL vmlinux 0x5159dc8a ip_local_deliver EXPORT_SYMBOL vmlinux 0x51641162 opal_unlock_from_suspend -EXPORT_SYMBOL vmlinux 0x518ae98d sock_i_uid -EXPORT_SYMBOL vmlinux 0x51a4d06d mini_qdisc_pair_swap +EXPORT_SYMBOL vmlinux 0x518ed934 bprm_change_interp EXPORT_SYMBOL vmlinux 0x51a511eb _raw_write_lock_bh -EXPORT_SYMBOL vmlinux 0x51a7bb12 generic_write_checks -EXPORT_SYMBOL vmlinux 0x51cf52e6 register_shrinker +EXPORT_SYMBOL vmlinux 0x51cab70f mipi_dsi_dcs_set_tear_off +EXPORT_SYMBOL vmlinux 0x51ccf021 alloc_xenballooned_pages EXPORT_SYMBOL vmlinux 0x51d12d4e acpi_pci_disabled -EXPORT_SYMBOL vmlinux 0x51d857f5 skb_vlan_push EXPORT_SYMBOL vmlinux 0x51f298e0 intel_scu_ipc_dev_ioread8 -EXPORT_SYMBOL vmlinux 0x51f398fc page_pool_alloc_frag EXPORT_SYMBOL vmlinux 0x51f86a1a blk_limits_io_opt -EXPORT_SYMBOL vmlinux 0x51fc2f8a hash_and_copy_to_iter -EXPORT_SYMBOL vmlinux 0x520524f1 set_create_files_as -EXPORT_SYMBOL vmlinux 0x520b558d bio_free_pages +EXPORT_SYMBOL vmlinux 0x5200f6e3 generic_pipe_buf_try_steal +EXPORT_SYMBOL vmlinux 0x521051b8 ip_check_defrag EXPORT_SYMBOL vmlinux 0x52185192 __nla_reserve_nohdr -EXPORT_SYMBOL vmlinux 0x521ca552 uart_get_divisor -EXPORT_SYMBOL vmlinux 0x522c4d5f vmf_insert_pfn -EXPORT_SYMBOL vmlinux 0x523384cc dev_get_stats -EXPORT_SYMBOL vmlinux 0x52561ccd blk_mq_start_stopped_hw_queues -EXPORT_SYMBOL vmlinux 0x52595b23 sock_enable_timestamps -EXPORT_SYMBOL vmlinux 0x525f7098 __skb_wait_for_more_packets +EXPORT_SYMBOL vmlinux 0x521cb51c pnpacpi_protocol +EXPORT_SYMBOL vmlinux 0x521fdd53 set_nlink +EXPORT_SYMBOL vmlinux 0x522d7305 iov_iter_get_pages +EXPORT_SYMBOL vmlinux 0x523738f5 xfrm_state_lookup_byaddr +EXPORT_SYMBOL vmlinux 0x525fc19d sb_set_blocksize +EXPORT_SYMBOL vmlinux 0x5266237b xsk_tx_completed +EXPORT_SYMBOL vmlinux 0x52673010 current_task +EXPORT_SYMBOL vmlinux 0x5268d5b8 netif_tx_stop_all_queues EXPORT_SYMBOL vmlinux 0x526eef2c hdmi_vendor_infoframe_pack -EXPORT_SYMBOL vmlinux 0x52708262 pci_set_mwi -EXPORT_SYMBOL vmlinux 0x5279c0ef mfd_cell_enable -EXPORT_SYMBOL vmlinux 0x52860fa9 filemap_fdatawrite_wbc +EXPORT_SYMBOL vmlinux 0x526fb1d4 fscrypt_zeroout_range +EXPORT_SYMBOL vmlinux 0x5271c5c9 init_pseudo +EXPORT_SYMBOL vmlinux 0x528062f1 rproc_get_by_child +EXPORT_SYMBOL vmlinux 0x52919e2f inet_rtx_syn_ack EXPORT_SYMBOL vmlinux 0x52983a4f vme_master_write EXPORT_SYMBOL vmlinux 0x52ba6325 __cpuhp_setup_state -EXPORT_SYMBOL vmlinux 0x52bf5720 sock_i_ino -EXPORT_SYMBOL vmlinux 0x52c69794 __splice_from_pipe +EXPORT_SYMBOL vmlinux 0x52bf1119 iommu_put_dma_cookie EXPORT_SYMBOL vmlinux 0x52d717da xz_dec_init EXPORT_SYMBOL vmlinux 0x52dcb85b __traceiter_kmalloc -EXPORT_SYMBOL vmlinux 0x52e1862c qdisc_tree_reduce_backlog +EXPORT_SYMBOL vmlinux 0x52e5a242 scsi_host_alloc +EXPORT_SYMBOL vmlinux 0x52e66bb2 reuseport_select_sock +EXPORT_SYMBOL vmlinux 0x52ec8745 udp_read_sock EXPORT_SYMBOL vmlinux 0x52ecbc75 crc_ccitt -EXPORT_SYMBOL vmlinux 0x5309a780 vm_insert_page -EXPORT_SYMBOL vmlinux 0x530a8df7 grab_cache_page_write_begin +EXPORT_SYMBOL vmlinux 0x52f40404 elv_rb_find +EXPORT_SYMBOL vmlinux 0x52f94908 zpool_register_driver +EXPORT_SYMBOL vmlinux 0x5307ebfb inet_unregister_protosw +EXPORT_SYMBOL vmlinux 0x5308aeb0 phy_reset_after_clk_enable EXPORT_SYMBOL vmlinux 0x530b1e98 pm_suspend EXPORT_SYMBOL vmlinux 0x53126ecc __percpu_counter_sum -EXPORT_SYMBOL vmlinux 0x53170aa4 nf_hook_slow EXPORT_SYMBOL vmlinux 0x531b604e __virt_addr_valid +EXPORT_SYMBOL vmlinux 0x531e4ed6 security_old_inode_init_security EXPORT_SYMBOL vmlinux 0x533206b5 sort_r -EXPORT_SYMBOL vmlinux 0x5335f081 sock_wake_async +EXPORT_SYMBOL vmlinux 0x53342157 inet6_del_protocol EXPORT_SYMBOL vmlinux 0x5338184f ethtool_sprintf -EXPORT_SYMBOL vmlinux 0x53540746 mpage_readahead +EXPORT_SYMBOL vmlinux 0x5339f419 pnp_register_card_driver +EXPORT_SYMBOL vmlinux 0x5346793d phy_ethtool_get_stats +EXPORT_SYMBOL vmlinux 0x534ff463 mipi_dsi_device_unregister +EXPORT_SYMBOL vmlinux 0x5351d1ac mark_buffer_dirty +EXPORT_SYMBOL vmlinux 0x53539af9 put_cmsg_scm_timestamping64 EXPORT_SYMBOL vmlinux 0x53569707 this_cpu_off -EXPORT_SYMBOL vmlinux 0x5387ca3a __frontswap_test -EXPORT_SYMBOL vmlinux 0x5391e5a2 kernel_connect -EXPORT_SYMBOL vmlinux 0x53a6d6d3 mmc_wait_for_cmd -EXPORT_SYMBOL vmlinux 0x53b13efe alloc_xenballooned_pages -EXPORT_SYMBOL vmlinux 0x53b32b74 mroute6_is_socket +EXPORT_SYMBOL vmlinux 0x5372d5f9 unregister_cdrom +EXPORT_SYMBOL vmlinux 0x5379a449 kiocb_set_cancel_fn +EXPORT_SYMBOL vmlinux 0x53834d61 pcibios_resource_to_bus +EXPORT_SYMBOL vmlinux 0x53b6e994 security_skb_classify_flow EXPORT_SYMBOL vmlinux 0x53b954a2 up_read -EXPORT_SYMBOL vmlinux 0x53be21a0 vme_bus_type -EXPORT_SYMBOL vmlinux 0x53cc0eb5 pci_request_selected_regions_exclusive -EXPORT_SYMBOL vmlinux 0x53d2a759 device_add_disk +EXPORT_SYMBOL vmlinux 0x53b999fe mipi_dsi_dcs_get_pixel_format +EXPORT_SYMBOL vmlinux 0x53c58277 security_binder_transfer_file +EXPORT_SYMBOL vmlinux 0x53e3e431 rps_may_expire_flow EXPORT_SYMBOL vmlinux 0x53e50ffa first_ec EXPORT_SYMBOL vmlinux 0x53fa36d1 ZSTD_decompressBlock -EXPORT_SYMBOL vmlinux 0x53feef95 dm_get_device -EXPORT_SYMBOL vmlinux 0x540981ca page_pool_return_skb_page EXPORT_SYMBOL vmlinux 0x54175c5f acpi_read_bit_register +EXPORT_SYMBOL vmlinux 0x542bf8c8 inet_ioctl +EXPORT_SYMBOL vmlinux 0x542d0705 iterate_dir +EXPORT_SYMBOL vmlinux 0x54398a70 icmpv6_ndo_send EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start -EXPORT_SYMBOL vmlinux 0x54480a50 pcie_capability_write_dword -EXPORT_SYMBOL vmlinux 0x544d695a pci_remove_bus -EXPORT_SYMBOL vmlinux 0x545136b6 phy_do_ioctl +EXPORT_SYMBOL vmlinux 0x544e4f51 block_write_full_page +EXPORT_SYMBOL vmlinux 0x54659d25 set_binfmt +EXPORT_SYMBOL vmlinux 0x5468e5d2 skb_coalesce_rx_frag +EXPORT_SYMBOL vmlinux 0x546cd2e3 set_pages_array_wb +EXPORT_SYMBOL vmlinux 0x5478b13a vm_map_pages +EXPORT_SYMBOL vmlinux 0x54792084 blk_rq_append_bio EXPORT_SYMBOL vmlinux 0x547e3344 acpi_disable -EXPORT_SYMBOL vmlinux 0x548efe64 tcp_make_synack -EXPORT_SYMBOL vmlinux 0x549474ae blk_integrity_unregister -EXPORT_SYMBOL vmlinux 0x549c03cc key_instantiate_and_link +EXPORT_SYMBOL vmlinux 0x54896885 devm_get_clk_from_child +EXPORT_SYMBOL vmlinux 0x54a234f0 simple_statfs +EXPORT_SYMBOL vmlinux 0x54a24feb alloc_pages +EXPORT_SYMBOL vmlinux 0x54a2607a sock_set_priority +EXPORT_SYMBOL vmlinux 0x54a6fa26 noop_llseek EXPORT_SYMBOL vmlinux 0x54b1fac6 __ubsan_handle_load_invalid_value EXPORT_SYMBOL vmlinux 0x54b22bb1 __SCT__tp_func_mmap_lock_acquire_returned -EXPORT_SYMBOL vmlinux 0x54ba9013 dma_async_tx_descriptor_init -EXPORT_SYMBOL vmlinux 0x54c1394a mr_mfc_find_any -EXPORT_SYMBOL vmlinux 0x54cc6746 pci_choose_state -EXPORT_SYMBOL vmlinux 0x54def422 netdev_features_change -EXPORT_SYMBOL vmlinux 0x54e5ae41 xp_raw_get_dma +EXPORT_SYMBOL vmlinux 0x54c9df10 tcf_chain_put_by_act +EXPORT_SYMBOL vmlinux 0x54d432db kernel_listen +EXPORT_SYMBOL vmlinux 0x54e3f7f3 register_netdevice_notifier_net EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp EXPORT_SYMBOL vmlinux 0x54ea6dfe xen_start_flags EXPORT_SYMBOL vmlinux 0x5506b8f7 netlbl_bitmap_setbit -EXPORT_SYMBOL vmlinux 0x550ae44f drop_super +EXPORT_SYMBOL vmlinux 0x551381c7 mmc_can_trim EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color -EXPORT_SYMBOL vmlinux 0x551f6e35 __SCK__tp_func_kmalloc -EXPORT_SYMBOL vmlinux 0x55235d3d __mdiobus_write +EXPORT_SYMBOL vmlinux 0x552e83b9 eth_get_headlen EXPORT_SYMBOL vmlinux 0x55385e2e __x86_indirect_thunk_r14 -EXPORT_SYMBOL vmlinux 0x5547fe39 ppp_output_wakeup +EXPORT_SYMBOL vmlinux 0x553e2b70 xfrm_state_walk EXPORT_SYMBOL vmlinux 0x554ae3a4 irq_poll_sched -EXPORT_SYMBOL vmlinux 0x554d1fec d_path -EXPORT_SYMBOL vmlinux 0x555c9d1a sock_kfree_s -EXPORT_SYMBOL vmlinux 0x555dec1f amd_iommu_flush_tlb +EXPORT_SYMBOL vmlinux 0x55615982 sock_efree EXPORT_SYMBOL vmlinux 0x556422b3 ioremap_cache EXPORT_SYMBOL vmlinux 0x556b5d62 __kfifo_dma_in_prepare_r EXPORT_SYMBOL vmlinux 0x556cca46 x86_apple_machine -EXPORT_SYMBOL vmlinux 0x557210a8 ___pskb_trim +EXPORT_SYMBOL vmlinux 0x5571f66f skb_store_bits +EXPORT_SYMBOL vmlinux 0x557c1522 pcim_set_mwi +EXPORT_SYMBOL vmlinux 0x5588be9d fs_lookup_param EXPORT_SYMBOL vmlinux 0x558b281d aes_expandkey -EXPORT_SYMBOL vmlinux 0x5595e54a con_is_bound -EXPORT_SYMBOL vmlinux 0x55a72d4a csum_and_copy_from_iter -EXPORT_SYMBOL vmlinux 0x55b42f2a reuseport_alloc -EXPORT_SYMBOL vmlinux 0x55be2a0d key_invalidate +EXPORT_SYMBOL vmlinux 0x558b3a00 __set_page_dirty_buffers +EXPORT_SYMBOL vmlinux 0x55965170 jbd2_journal_start_reserved +EXPORT_SYMBOL vmlinux 0x559b972f max8998_write_reg +EXPORT_SYMBOL vmlinux 0x559fb330 genphy_resume +EXPORT_SYMBOL vmlinux 0x55a278b8 wait_on_page_private_2 +EXPORT_SYMBOL vmlinux 0x55bafe15 vga_switcheroo_register_client +EXPORT_SYMBOL vmlinux 0x55dc419c param_ops_int EXPORT_SYMBOL vmlinux 0x55e31703 ethtool_convert_link_mode_to_legacy_u32 -EXPORT_SYMBOL vmlinux 0x55e45daf mr_vif_seq_next -EXPORT_SYMBOL vmlinux 0x55eae228 cdrom_check_events -EXPORT_SYMBOL vmlinux 0x55ee1a36 param_set_ullong -EXPORT_SYMBOL vmlinux 0x55f2df8b sg_miter_skip +EXPORT_SYMBOL vmlinux 0x55e570ad tcf_em_tree_dump EXPORT_SYMBOL vmlinux 0x55f95e07 ioremap_prot -EXPORT_SYMBOL vmlinux 0x560308bb seq_path -EXPORT_SYMBOL vmlinux 0x5633f458 security_socket_getpeersec_dgram +EXPORT_SYMBOL vmlinux 0x5634d021 give_up_console EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user EXPORT_SYMBOL vmlinux 0x56470118 __warn_printk EXPORT_SYMBOL vmlinux 0x564f7608 acpi_reconfig_notifier_register EXPORT_SYMBOL vmlinux 0x56555401 nla_put_64bit -EXPORT_SYMBOL vmlinux 0x5663df87 __dev_set_mtu -EXPORT_SYMBOL vmlinux 0x56768899 ip_check_defrag +EXPORT_SYMBOL vmlinux 0x565c3945 cros_ec_prepare_tx +EXPORT_SYMBOL vmlinux 0x567d59d2 md_flush_request +EXPORT_SYMBOL vmlinux 0x567dbdb1 pcie_capability_read_word EXPORT_SYMBOL vmlinux 0x56802ae8 rps_cpu_mask -EXPORT_SYMBOL vmlinux 0x568d8e6f inet_frag_destroy -EXPORT_SYMBOL vmlinux 0x569470a7 thread_group_exited -EXPORT_SYMBOL vmlinux 0x56c84b59 finalize_exec +EXPORT_SYMBOL vmlinux 0x568a1812 devm_input_allocate_device +EXPORT_SYMBOL vmlinux 0x569b18a8 bioset_init +EXPORT_SYMBOL vmlinux 0x569b983f ipv6_dev_find +EXPORT_SYMBOL vmlinux 0x56a0c081 devm_extcon_unregister_notifier +EXPORT_SYMBOL vmlinux 0x56a2a50b scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x56a2b92f jbd2_journal_free_reserved +EXPORT_SYMBOL vmlinux 0x56a9cd6f blk_queue_flag_clear EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg EXPORT_SYMBOL vmlinux 0x56de5ace __cpuhp_remove_state -EXPORT_SYMBOL vmlinux 0x56f0aa0c flow_rule_match_meta -EXPORT_SYMBOL vmlinux 0x56f36f6a cdev_del -EXPORT_SYMBOL vmlinux 0x56f44436 uart_write_wakeup -EXPORT_SYMBOL vmlinux 0x5702ffc8 tc_setup_cb_reoffload -EXPORT_SYMBOL vmlinux 0x57268f9b fiemap_prep -EXPORT_SYMBOL vmlinux 0x574b6d66 __napi_schedule_irqoff +EXPORT_SYMBOL vmlinux 0x56e45beb sock_enable_timestamps +EXPORT_SYMBOL vmlinux 0x5719e9ac amd_iommu_domain_set_gcr3 +EXPORT_SYMBOL vmlinux 0x571a3caa scsi_report_opcode +EXPORT_SYMBOL vmlinux 0x57208b0f ethtool_rx_flow_rule_destroy +EXPORT_SYMBOL vmlinux 0x572ab8f1 tcp_md5_do_del +EXPORT_SYMBOL vmlinux 0x57371abd dquot_quota_on EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region -EXPORT_SYMBOL vmlinux 0x574f8064 blk_queue_max_hw_sectors -EXPORT_SYMBOL vmlinux 0x574fc783 mmc_cqe_start_req -EXPORT_SYMBOL vmlinux 0x5752369e blk_queue_max_write_zeroes_sectors -EXPORT_SYMBOL vmlinux 0x57532bd5 no_seek_end_llseek EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put -EXPORT_SYMBOL vmlinux 0x575cacd0 nvdimm_namespace_common_probe -EXPORT_SYMBOL vmlinux 0x57608b6a tc_cleanup_flow_action -EXPORT_SYMBOL vmlinux 0x57647e69 phy_device_remove -EXPORT_SYMBOL vmlinux 0x5773a966 devfreq_update_target -EXPORT_SYMBOL vmlinux 0x57750e81 xfrm_input_unregister_afinfo -EXPORT_SYMBOL vmlinux 0x577c5e81 blk_mq_stop_hw_queues -EXPORT_SYMBOL vmlinux 0x577f5d15 kern_path_create -EXPORT_SYMBOL vmlinux 0x5787b48e flow_rule_match_mpls +EXPORT_SYMBOL vmlinux 0x577d2735 simple_write_begin EXPORT_SYMBOL vmlinux 0x578a408b ZSTD_initDCtx -EXPORT_SYMBOL vmlinux 0x578b10ae jbd2_journal_finish_inode_data_buffers EXPORT_SYMBOL vmlinux 0x57900416 gen_pool_fixed_alloc EXPORT_SYMBOL vmlinux 0x5792f848 strlcpy -EXPORT_SYMBOL vmlinux 0x57a0cddb __skb_ext_del -EXPORT_SYMBOL vmlinux 0x57a2f083 vme_master_mmap -EXPORT_SYMBOL vmlinux 0x57bad0a6 i2c_transfer +EXPORT_SYMBOL vmlinux 0x579c8f71 __SCK__tp_func_kmem_cache_free +EXPORT_SYMBOL vmlinux 0x57ba5f76 pci_scan_single_device EXPORT_SYMBOL vmlinux 0x57bc19d2 down_write -EXPORT_SYMBOL vmlinux 0x57cbff77 ip_tunnel_parse_protocol -EXPORT_SYMBOL vmlinux 0x57e26e98 filemap_fdatawrite +EXPORT_SYMBOL vmlinux 0x57c0e987 pci_reenable_device +EXPORT_SYMBOL vmlinux 0x57d93f10 fscrypt_decrypt_block_inplace +EXPORT_SYMBOL vmlinux 0x57f4282d udp_push_pending_frames +EXPORT_SYMBOL vmlinux 0x5808d914 inet_bind +EXPORT_SYMBOL vmlinux 0x58111506 user_revoke EXPORT_SYMBOL vmlinux 0x58125fbb nla_reserve_64bit EXPORT_SYMBOL vmlinux 0x5818fe3c posix_acl_from_mode +EXPORT_SYMBOL vmlinux 0x581e0fb8 pci_enable_wake EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate +EXPORT_SYMBOL vmlinux 0x5825fcf8 tcp_sock_set_keepcnt EXPORT_SYMBOL vmlinux 0x582b6275 xfrm_if_unregister_cb +EXPORT_SYMBOL vmlinux 0x5836696d seq_put_decimal_ll EXPORT_SYMBOL vmlinux 0x5838f6c9 rtc_valid_tm -EXPORT_SYMBOL vmlinux 0x584d9161 dev_change_proto_down_reason -EXPORT_SYMBOL vmlinux 0x586aa659 __mmc_claim_host -EXPORT_SYMBOL vmlinux 0x58707285 ndo_dflt_fdb_del +EXPORT_SYMBOL vmlinux 0x5844fd44 md_bitmap_update_sb +EXPORT_SYMBOL vmlinux 0x5859c557 dev_get_by_name_rcu +EXPORT_SYMBOL vmlinux 0x586b2019 param_get_byte +EXPORT_SYMBOL vmlinux 0x586b55bf inet_listen +EXPORT_SYMBOL vmlinux 0x5872033f input_alloc_absinfo +EXPORT_SYMBOL vmlinux 0x5874f738 netlink_broadcast EXPORT_SYMBOL vmlinux 0x587b0954 kvasprintf +EXPORT_SYMBOL vmlinux 0x587c7b2f ipv4_dst_check EXPORT_SYMBOL vmlinux 0x587f22d7 devmap_managed_key -EXPORT_SYMBOL vmlinux 0x587f8c5d skb_dump -EXPORT_SYMBOL vmlinux 0x5881630a xp_raw_get_data -EXPORT_SYMBOL vmlinux 0x58880e46 splice_direct_to_actor -EXPORT_SYMBOL vmlinux 0x588f3dcc xfrm_trans_queue_net +EXPORT_SYMBOL vmlinux 0x587f8c4f md_unregister_thread +EXPORT_SYMBOL vmlinux 0x5888bed0 dcache_dir_close +EXPORT_SYMBOL vmlinux 0x5890250a md_integrity_add_rdev EXPORT_SYMBOL vmlinux 0x58acf24b mdiobus_register_board_info EXPORT_SYMBOL vmlinux 0x58b4645c dev_close_many EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard -EXPORT_SYMBOL vmlinux 0x58bd808f deactivate_super -EXPORT_SYMBOL vmlinux 0x58c67f20 jbd2_trans_will_send_data_barrier -EXPORT_SYMBOL vmlinux 0x58ce0661 agp_alloc_page_array -EXPORT_SYMBOL vmlinux 0x58e26ba5 devm_memunmap +EXPORT_SYMBOL vmlinux 0x58c5fbc3 iter_file_splice_write EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io -EXPORT_SYMBOL vmlinux 0x5904cc5f mmc_of_parse_voltage -EXPORT_SYMBOL vmlinux 0x590c11d9 ip6_fraglist_init -EXPORT_SYMBOL vmlinux 0x59106027 sock_wfree -EXPORT_SYMBOL vmlinux 0x5914fc82 netdev_name_node_alt_create -EXPORT_SYMBOL vmlinux 0x592284db xsk_set_tx_need_wakeup -EXPORT_SYMBOL vmlinux 0x5924b4c9 sock_no_sendmsg_locked -EXPORT_SYMBOL vmlinux 0x5936d4a0 __dev_get_by_name +EXPORT_SYMBOL vmlinux 0x59062a45 __netlink_kernel_create +EXPORT_SYMBOL vmlinux 0x590f5240 padata_do_parallel +EXPORT_SYMBOL vmlinux 0x59165a20 netdev_set_tc_queue +EXPORT_SYMBOL vmlinux 0x5917344a ps2_drain +EXPORT_SYMBOL vmlinux 0x59197476 dm_kcopyd_copy +EXPORT_SYMBOL vmlinux 0x592793d8 phy_connect EXPORT_SYMBOL vmlinux 0x593edc4b cpu_tlbstate_shared EXPORT_SYMBOL vmlinux 0x594bf15b ioport_map -EXPORT_SYMBOL vmlinux 0x59510955 scm_fp_dup EXPORT_SYMBOL vmlinux 0x595d8002 hdmi_infoframe_pack -EXPORT_SYMBOL vmlinux 0x5974492c vga_switcheroo_register_client -EXPORT_SYMBOL vmlinux 0x597e66db flow_block_cb_lookup -EXPORT_SYMBOL vmlinux 0x598f2169 inet_sendpage +EXPORT_SYMBOL vmlinux 0x596b5219 sock_init_data +EXPORT_SYMBOL vmlinux 0x598c0bdd skb_queue_tail +EXPORT_SYMBOL vmlinux 0x599f2318 serio_close EXPORT_SYMBOL vmlinux 0x599fb41c kvmalloc_node EXPORT_SYMBOL vmlinux 0x59a2f0ee packing -EXPORT_SYMBOL vmlinux 0x59a312c4 inc_nlink +EXPORT_SYMBOL vmlinux 0x59a86f0f sock_dequeue_err_skb EXPORT_SYMBOL vmlinux 0x59b4ac3e tcp_memory_allocated -EXPORT_SYMBOL vmlinux 0x59fa162b __tracepoint_spi_transfer_start -EXPORT_SYMBOL vmlinux 0x59fa7456 ip_sock_set_mtu_discover -EXPORT_SYMBOL vmlinux 0x5a02405c __sk_mem_reduce_allocated -EXPORT_SYMBOL vmlinux 0x5a07e303 devm_nvmem_unregister -EXPORT_SYMBOL vmlinux 0x5a09fd1a blk_mq_tagset_busy_iter +EXPORT_SYMBOL vmlinux 0x59b61fe8 pcie_bandwidth_available +EXPORT_SYMBOL vmlinux 0x59f2c5c0 skb_copy_and_csum_bits EXPORT_SYMBOL vmlinux 0x5a0b73d0 zlib_deflateInit2 -EXPORT_SYMBOL vmlinux 0x5a105bd7 vfs_link -EXPORT_SYMBOL vmlinux 0x5a284c7b mmc_put_card +EXPORT_SYMBOL vmlinux 0x5a26ffd7 bio_init +EXPORT_SYMBOL vmlinux 0x5a28939e __scsi_device_lookup_by_target EXPORT_SYMBOL vmlinux 0x5a290250 hdmi_drm_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0x5a37e3ce configfs_register_subsystem EXPORT_SYMBOL vmlinux 0x5a44f8cb __crypto_memneq EXPORT_SYMBOL vmlinux 0x5a4896a8 __put_user_2 +EXPORT_SYMBOL vmlinux 0x5a4b31b2 __post_watch_notification EXPORT_SYMBOL vmlinux 0x5a4d313e gf128mul_4k_lle -EXPORT_SYMBOL vmlinux 0x5a4e6580 uart_update_timeout EXPORT_SYMBOL vmlinux 0x5a5a2271 __cpu_online_mask -EXPORT_SYMBOL vmlinux 0x5a609858 rproc_mem_entry_init -EXPORT_SYMBOL vmlinux 0x5a64be52 netif_set_real_num_rx_queues -EXPORT_SYMBOL vmlinux 0x5a6629a3 jbd2_journal_set_features -EXPORT_SYMBOL vmlinux 0x5a6b8876 inet_ioctl -EXPORT_SYMBOL vmlinux 0x5a750a5d neigh_parms_alloc -EXPORT_SYMBOL vmlinux 0x5a7df6d9 hmm_range_fault -EXPORT_SYMBOL vmlinux 0x5a82b686 cdrom_open -EXPORT_SYMBOL vmlinux 0x5a865791 dquot_free_inode +EXPORT_SYMBOL vmlinux 0x5a691c80 clear_nlink +EXPORT_SYMBOL vmlinux 0x5a75b00b pm8606_osc_disable +EXPORT_SYMBOL vmlinux 0x5a79ffc2 xfrm_dev_state_flush EXPORT_SYMBOL vmlinux 0x5a8ae15a ZSTD_initDDict -EXPORT_SYMBOL vmlinux 0x5a8ec87c inet_proto_csum_replace4 -EXPORT_SYMBOL vmlinux 0x5a90a38d unpin_user_page_range_dirty_lock EXPORT_SYMBOL vmlinux 0x5a921311 strncmp -EXPORT_SYMBOL vmlinux 0x5aa2509d dma_set_mask -EXPORT_SYMBOL vmlinux 0x5ab64285 devm_free_irq -EXPORT_SYMBOL vmlinux 0x5acec008 register_framebuffer +EXPORT_SYMBOL vmlinux 0x5a9885d7 phy_get_pause +EXPORT_SYMBOL vmlinux 0x5a99a0d7 flow_get_u32_dst +EXPORT_SYMBOL vmlinux 0x5aa7e49b tty_devnum +EXPORT_SYMBOL vmlinux 0x5aa89648 locks_lock_inode_wait +EXPORT_SYMBOL vmlinux 0x5abbd7bf xfrm_state_flush EXPORT_SYMBOL vmlinux 0x5ae1154b __traceiter_kfree -EXPORT_SYMBOL vmlinux 0x5ae2d083 security_inode_invalidate_secctx -EXPORT_SYMBOL vmlinux 0x5b21e35b phy_support_sym_pause +EXPORT_SYMBOL vmlinux 0x5af7b1fc devm_clk_release_clkdev +EXPORT_SYMBOL vmlinux 0x5b1afb03 udp_lib_getsockopt +EXPORT_SYMBOL vmlinux 0x5b232ee3 d_alloc_anon EXPORT_SYMBOL vmlinux 0x5b2f27fb do_wait_intr +EXPORT_SYMBOL vmlinux 0x5b346e47 scsi_host_lookup EXPORT_SYMBOL vmlinux 0x5b36d5dd utf8agemax EXPORT_SYMBOL vmlinux 0x5b3e282f xa_store -EXPORT_SYMBOL vmlinux 0x5b40556b con_set_default_unimap -EXPORT_SYMBOL vmlinux 0x5b4362d5 ipv6_getsockopt EXPORT_SYMBOL vmlinux 0x5b56860c vm_munmap EXPORT_SYMBOL vmlinux 0x5b641283 arch_phys_wc_add -EXPORT_SYMBOL vmlinux 0x5b6783e4 phy_mac_interrupt -EXPORT_SYMBOL vmlinux 0x5b76985e i8042_install_filter -EXPORT_SYMBOL vmlinux 0x5b983cd2 dev_addr_add -EXPORT_SYMBOL vmlinux 0x5ba7ea89 jbd2_journal_check_used_features -EXPORT_SYMBOL vmlinux 0x5bab4c28 devm_devfreq_add_device -EXPORT_SYMBOL vmlinux 0x5babec11 serio_unregister_child_port -EXPORT_SYMBOL vmlinux 0x5bad3628 d_instantiate_new -EXPORT_SYMBOL vmlinux 0x5bb03216 sock_common_setsockopt -EXPORT_SYMBOL vmlinux 0x5bc74b93 security_inode_getsecctx -EXPORT_SYMBOL vmlinux 0x5bd11daa block_commit_write +EXPORT_SYMBOL vmlinux 0x5b684cbb netdev_set_sb_channel +EXPORT_SYMBOL vmlinux 0x5b768272 pcim_iomap +EXPORT_SYMBOL vmlinux 0x5b822cde alloc_fcdev +EXPORT_SYMBOL vmlinux 0x5b8239ca __x86_return_thunk +EXPORT_SYMBOL vmlinux 0x5b8490f3 registered_fb +EXPORT_SYMBOL vmlinux 0x5b92a111 filemap_fault +EXPORT_SYMBOL vmlinux 0x5bad084e vfs_unlink +EXPORT_SYMBOL vmlinux 0x5bb00ba1 mdiobus_alloc_size EXPORT_SYMBOL vmlinux 0x5bd4ff88 flow_action_cookie_create -EXPORT_SYMBOL vmlinux 0x5bde0f09 locks_free_lock -EXPORT_SYMBOL vmlinux 0x5bde6ebe acpi_dev_hid_uid_match -EXPORT_SYMBOL vmlinux 0x5be29a2a sock_alloc_file EXPORT_SYMBOL vmlinux 0x5be63c5b crc32c_csum_stub -EXPORT_SYMBOL vmlinux 0x5bea3276 pci_stop_and_remove_bus_device +EXPORT_SYMBOL vmlinux 0x5bf9ec01 agp_generic_create_gatt_table +EXPORT_SYMBOL vmlinux 0x5c1e1dcb netif_tx_wake_queue +EXPORT_SYMBOL vmlinux 0x5c215541 __SCK__tp_func_read_msr EXPORT_SYMBOL vmlinux 0x5c26a53b wait_for_completion_io_timeout -EXPORT_SYMBOL vmlinux 0x5c3b5fe3 pci_try_set_mwi EXPORT_SYMBOL vmlinux 0x5c3c7387 kstrtoull -EXPORT_SYMBOL vmlinux 0x5c595296 unlock_page_memcg -EXPORT_SYMBOL vmlinux 0x5c60e1b9 open_exec -EXPORT_SYMBOL vmlinux 0x5c90072e file_fdatawait_range -EXPORT_SYMBOL vmlinux 0x5c9b553c vfs_dup_fs_context -EXPORT_SYMBOL vmlinux 0x5cad050b pfifo_qdisc_ops -EXPORT_SYMBOL vmlinux 0x5cc2cc67 find_inode_nowait -EXPORT_SYMBOL vmlinux 0x5ccd8369 phy_request_interrupt -EXPORT_SYMBOL vmlinux 0x5cee09b3 rawv6_mh_filter_unregister -EXPORT_SYMBOL vmlinux 0x5cf1da9e security_sk_classify_flow +EXPORT_SYMBOL vmlinux 0x5c556bdd pci_bus_write_config_byte +EXPORT_SYMBOL vmlinux 0x5c56024c skb_queue_head +EXPORT_SYMBOL vmlinux 0x5c61102a sock_alloc_send_pskb +EXPORT_SYMBOL vmlinux 0x5c6a2f13 netdev_rx_csum_fault +EXPORT_SYMBOL vmlinux 0x5c7f3331 flow_block_cb_decref +EXPORT_SYMBOL vmlinux 0x5c8d2a2e ppp_dev_name +EXPORT_SYMBOL vmlinux 0x5c9fc775 __ip_select_ident +EXPORT_SYMBOL vmlinux 0x5caaf358 generic_error_remove_page +EXPORT_SYMBOL vmlinux 0x5cbc2a1d fscrypt_ioctl_get_policy +EXPORT_SYMBOL vmlinux 0x5ce80727 scsi_set_medium_removal EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor +EXPORT_SYMBOL vmlinux 0x5cfb1bba would_dump EXPORT_SYMBOL vmlinux 0x5cfb26a0 acpi_enter_sleep_state -EXPORT_SYMBOL vmlinux 0x5cfcc4d2 i2c_put_adapter -EXPORT_SYMBOL vmlinux 0x5d0d6c70 pin_user_pages EXPORT_SYMBOL vmlinux 0x5d3bae9c textsearch_prepare -EXPORT_SYMBOL vmlinux 0x5d45c39c get_tree_single_reconf EXPORT_SYMBOL vmlinux 0x5d49aabc init_wait_var_entry -EXPORT_SYMBOL vmlinux 0x5d5473e6 param_ops_ullong -EXPORT_SYMBOL vmlinux 0x5d5c0b7e mmc_detect_card_removed -EXPORT_SYMBOL vmlinux 0x5d7162a0 d_hash_and_lookup -EXPORT_SYMBOL vmlinux 0x5d8d79ae flow_rule_match_ports -EXPORT_SYMBOL vmlinux 0x5d8ef42f page_symlink_inode_operations -EXPORT_SYMBOL vmlinux 0x5d90faab inet6_offloads -EXPORT_SYMBOL vmlinux 0x5da6cbc6 fs_param_is_u64 -EXPORT_SYMBOL vmlinux 0x5daf47a7 cdrom_ioctl -EXPORT_SYMBOL vmlinux 0x5db39d0f block_write_end -EXPORT_SYMBOL vmlinux 0x5db4c930 genphy_resume -EXPORT_SYMBOL vmlinux 0x5dc467bb fget -EXPORT_SYMBOL vmlinux 0x5dc705b6 jbd2_fc_wait_bufs -EXPORT_SYMBOL vmlinux 0x5df2f12e t10_pi_type1_ip +EXPORT_SYMBOL vmlinux 0x5d50c2ca pcie_capability_clear_and_set_word +EXPORT_SYMBOL vmlinux 0x5d62a254 __cgroup_bpf_run_filter_sock_addr +EXPORT_SYMBOL vmlinux 0x5d6ad41f cdev_device_add +EXPORT_SYMBOL vmlinux 0x5d74e4d3 dev_get_mac_address +EXPORT_SYMBOL vmlinux 0x5d88a63f nd_btt_version +EXPORT_SYMBOL vmlinux 0x5d955fa3 tcp_get_md5sig_pool +EXPORT_SYMBOL vmlinux 0x5da2314f tcp_v4_do_rcv +EXPORT_SYMBOL vmlinux 0x5dc7001c scsi_device_set_state +EXPORT_SYMBOL vmlinux 0x5dc7860e __cleancache_invalidate_fs +EXPORT_SYMBOL vmlinux 0x5de4e9fe qdisc_watchdog_cancel +EXPORT_SYMBOL vmlinux 0x5df97964 find_get_pages_contig +EXPORT_SYMBOL vmlinux 0x5dfbfdec get_thermal_instance EXPORT_SYMBOL vmlinux 0x5dffb495 ZSTD_decompress_usingDDict -EXPORT_SYMBOL vmlinux 0x5e05300c md_reap_sync_thread -EXPORT_SYMBOL vmlinux 0x5e05c213 phy_validate_pause EXPORT_SYMBOL vmlinux 0x5e06bc5c refcount_dec_and_lock -EXPORT_SYMBOL vmlinux 0x5e08d0b5 unregister_shrinker -EXPORT_SYMBOL vmlinux 0x5e096e3a input_mt_assign_slots -EXPORT_SYMBOL vmlinux 0x5e09a657 notify_change EXPORT_SYMBOL vmlinux 0x5e0ccb9f sha1_transform -EXPORT_SYMBOL vmlinux 0x5e215759 arp_xmit -EXPORT_SYMBOL vmlinux 0x5e298363 skb_copy_header +EXPORT_SYMBOL vmlinux 0x5e11892b pci_alloc_irq_vectors_affinity +EXPORT_SYMBOL vmlinux 0x5e1a30a2 bio_alloc_bioset +EXPORT_SYMBOL vmlinux 0x5e32bff9 md_wakeup_thread EXPORT_SYMBOL vmlinux 0x5e332b52 __var_waitqueue EXPORT_SYMBOL vmlinux 0x5e373fb4 gf128mul_64k_bbe +EXPORT_SYMBOL vmlinux 0x5e44213c find_get_pages_range_tag EXPORT_SYMBOL vmlinux 0x5e52fc9a ethtool_frag_size_to_mult -EXPORT_SYMBOL vmlinux 0x5e6b10b8 phy_start_cable_test_tdr -EXPORT_SYMBOL vmlinux 0x5e6b31dc phy_ethtool_get_link_ksettings EXPORT_SYMBOL vmlinux 0x5e855e56 gen_pool_first_fit_align -EXPORT_SYMBOL vmlinux 0x5e8af5c9 zero_fill_bio EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask +EXPORT_SYMBOL vmlinux 0x5ea48a64 mmc_retune_unpause EXPORT_SYMBOL vmlinux 0x5eb24829 dm_shift_arg -EXPORT_SYMBOL vmlinux 0x5ebc1a80 devm_rproc_alloc EXPORT_SYMBOL vmlinux 0x5ec4aee6 put_sg_io_hdr EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch EXPORT_SYMBOL vmlinux 0x5ed90adc int_to_scsilun -EXPORT_SYMBOL vmlinux 0x5ee16721 flow_get_u32_src +EXPORT_SYMBOL vmlinux 0x5ee0645e vfs_parse_fs_param EXPORT_SYMBOL vmlinux 0x5ef6a672 gen_pool_for_each_chunk EXPORT_SYMBOL vmlinux 0x5efde8e6 proc_doulongvec_ms_jiffies_minmax -EXPORT_SYMBOL vmlinux 0x5efe7172 __d_drop +EXPORT_SYMBOL vmlinux 0x5efe48d0 pps_event EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters -EXPORT_SYMBOL vmlinux 0x5f255ef9 blk_queue_dma_alignment -EXPORT_SYMBOL vmlinux 0x5f2d75ae dev_addr_init -EXPORT_SYMBOL vmlinux 0x5f3e4a35 padata_alloc_shell +EXPORT_SYMBOL vmlinux 0x5f3ac97e disk_stack_limits +EXPORT_SYMBOL vmlinux 0x5f4d6dfe tcf_unregister_action EXPORT_SYMBOL vmlinux 0x5f5441c8 __ubsan_handle_alignment_assumption EXPORT_SYMBOL vmlinux 0x5f56663b rdmsrl_on_cpu -EXPORT_SYMBOL vmlinux 0x5f639aab thermal_zone_device_critical +EXPORT_SYMBOL vmlinux 0x5f5ccfba inet_dgram_ops EXPORT_SYMBOL vmlinux 0x5f6b889c rproc_va_to_pa -EXPORT_SYMBOL vmlinux 0x5f713da0 input_release_device +EXPORT_SYMBOL vmlinux 0x5f73f519 dns_query +EXPORT_SYMBOL vmlinux 0x5f74b6eb xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x5f92c1c2 __skb_flow_dissect EXPORT_SYMBOL vmlinux 0x5f93525c acpi_extract_package EXPORT_SYMBOL vmlinux 0x5f99383a ioread64_hi_lo +EXPORT_SYMBOL vmlinux 0x5fa1a5a0 phy_detach +EXPORT_SYMBOL vmlinux 0x5fa24501 __module_put_and_exit +EXPORT_SYMBOL vmlinux 0x5facf12e copy_page_from_iter +EXPORT_SYMBOL vmlinux 0x5fbca3cc put_cmsg_scm_timestamping EXPORT_SYMBOL vmlinux 0x5fc67252 ioread16_rep EXPORT_SYMBOL vmlinux 0x5fc72f0e alloc_pages_exact -EXPORT_SYMBOL vmlinux 0x5fdf7d8a ppp_channel_index +EXPORT_SYMBOL vmlinux 0x5fd46d64 ipv6_dev_get_saddr EXPORT_SYMBOL vmlinux 0x5fe13529 __SCT__tp_func_spi_transfer_start -EXPORT_SYMBOL vmlinux 0x5feeda2e lock_rename -EXPORT_SYMBOL vmlinux 0x5ff43938 configfs_depend_item EXPORT_SYMBOL vmlinux 0x5ff9eb0e lockref_mark_dead -EXPORT_SYMBOL vmlinux 0x5ffaee55 scsi_is_sdev_device EXPORT_SYMBOL vmlinux 0x5ffedf63 __nla_put_nohdr -EXPORT_SYMBOL vmlinux 0x5fffac36 __devm_mdiobus_register EXPORT_SYMBOL vmlinux 0x6005c351 zpool_has_pool EXPORT_SYMBOL vmlinux 0x600683d3 do_unblank_screen -EXPORT_SYMBOL vmlinux 0x6011c5c1 disk_start_io_acct EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create +EXPORT_SYMBOL vmlinux 0x60268e8c scsi_device_resume +EXPORT_SYMBOL vmlinux 0x60284a3f __scm_send +EXPORT_SYMBOL vmlinux 0x60290ddd __vlan_find_dev_deep_rcu EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier -EXPORT_SYMBOL vmlinux 0x60387e82 kthread_create_on_node -EXPORT_SYMBOL vmlinux 0x6056e701 ip_do_fragment +EXPORT_SYMBOL vmlinux 0x6056ce9d neigh_seq_start EXPORT_SYMBOL vmlinux 0x605790dc fiemap_fill_next_extent -EXPORT_SYMBOL vmlinux 0x606ecac3 tcp_mtu_to_mss +EXPORT_SYMBOL vmlinux 0x605e9cb6 get_user_pages_remote +EXPORT_SYMBOL vmlinux 0x60798750 jbd2_journal_get_undo_access +EXPORT_SYMBOL vmlinux 0x6081d8a2 phy_get_internal_delay EXPORT_SYMBOL vmlinux 0x608741b5 __init_swait_queue_head -EXPORT_SYMBOL vmlinux 0x608963db end_buffer_async_write +EXPORT_SYMBOL vmlinux 0x608a5667 flow_rule_match_enc_ip EXPORT_SYMBOL vmlinux 0x6091b333 unregister_chrdev_region -EXPORT_SYMBOL vmlinux 0x6096dc8d xfrm4_rcv -EXPORT_SYMBOL vmlinux 0x60973250 netdev_set_tc_queue EXPORT_SYMBOL vmlinux 0x609bcd98 in6_pton EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net EXPORT_SYMBOL vmlinux 0x60a32ea9 pm_power_off -EXPORT_SYMBOL vmlinux 0x60a9a940 jbd2_journal_unlock_updates +EXPORT_SYMBOL vmlinux 0x60a90cbe pcim_iounmap +EXPORT_SYMBOL vmlinux 0x60b03cc8 xfrm_state_insert EXPORT_SYMBOL vmlinux 0x60b3071f neigh_proc_dointvec -EXPORT_SYMBOL vmlinux 0x60bce566 set_pages_wb -EXPORT_SYMBOL vmlinux 0x60c55e13 dcb_ieee_delapp -EXPORT_SYMBOL vmlinux 0x60ce4dd4 watchdog_unregister_governor +EXPORT_SYMBOL vmlinux 0x60bcee79 vfs_get_super +EXPORT_SYMBOL vmlinux 0x60d50327 agp_put_bridge EXPORT_SYMBOL vmlinux 0x60d8ab30 vme_lm_get -EXPORT_SYMBOL vmlinux 0x60ee5add nf_log_bind_pf +EXPORT_SYMBOL vmlinux 0x60e41c24 xen_free_unpopulated_pages EXPORT_SYMBOL vmlinux 0x61073e4a acpi_os_map_generic_address +EXPORT_SYMBOL vmlinux 0x610dfda9 filemap_fdatawait_range_keep_errors EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit -EXPORT_SYMBOL vmlinux 0x6132f0c0 tcp_sock_set_keepidle -EXPORT_SYMBOL vmlinux 0x6144ab41 vfs_parse_fs_param -EXPORT_SYMBOL vmlinux 0x614c60ff xfrm_find_acq_byseq +EXPORT_SYMBOL vmlinux 0x612c6608 generic_read_dir +EXPORT_SYMBOL vmlinux 0x6142732b dev_set_mac_address_user EXPORT_SYMBOL vmlinux 0x615911d7 __bitmap_set -EXPORT_SYMBOL vmlinux 0x6166d715 ipv6_find_hdr +EXPORT_SYMBOL vmlinux 0x615ecf3e __i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0x616284cb blk_queue_io_min EXPORT_SYMBOL vmlinux 0x6167e72c vmalloc_no_huge -EXPORT_SYMBOL vmlinux 0x6177e9bb register_fib_notifier EXPORT_SYMBOL vmlinux 0x617c452b queued_read_lock_slowpath +EXPORT_SYMBOL vmlinux 0x6184eb99 nosteal_pipe_buf_ops EXPORT_SYMBOL vmlinux 0x6185b747 radix_tree_gang_lookup_tag EXPORT_SYMBOL vmlinux 0x618911fc numa_node -EXPORT_SYMBOL vmlinux 0x618aac7f tcp_syn_ack_timeout -EXPORT_SYMBOL vmlinux 0x619bed90 unregister_nexthop_notifier EXPORT_SYMBOL vmlinux 0x619cb7dd simple_read_from_buffer EXPORT_SYMBOL vmlinux 0x619dfcdc intel_scu_ipc_dev_readv -EXPORT_SYMBOL vmlinux 0x619f51c1 filemap_fdatawait_range_keep_errors +EXPORT_SYMBOL vmlinux 0x61aacc6c jbd2_journal_init_inode EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull -EXPORT_SYMBOL vmlinux 0x61c20fb1 xfrm6_protocol_deregister -EXPORT_SYMBOL vmlinux 0x61cbe14e kmem_cache_alloc_node_trace -EXPORT_SYMBOL vmlinux 0x61d24400 cookie_timestamp_decode -EXPORT_SYMBOL vmlinux 0x61d93ade module_put -EXPORT_SYMBOL vmlinux 0x61dfc520 clk_bulk_get +EXPORT_SYMBOL vmlinux 0x61c2eaf9 delete_from_page_cache +EXPORT_SYMBOL vmlinux 0x61d13589 put_fs_context EXPORT_SYMBOL vmlinux 0x61e272c9 sha256_final +EXPORT_SYMBOL vmlinux 0x61e70ff1 cpufreq_get_policy EXPORT_SYMBOL vmlinux 0x61ea189b fb_pad_aligned_buffer -EXPORT_SYMBOL vmlinux 0x61f462f2 vfs_getattr_nosec -EXPORT_SYMBOL vmlinux 0x61f81570 inet_frags_fini -EXPORT_SYMBOL vmlinux 0x62049297 tty_do_resize -EXPORT_SYMBOL vmlinux 0x6211f1f0 fifo_set_limit +EXPORT_SYMBOL vmlinux 0x61ea1bed inet_shutdown +EXPORT_SYMBOL vmlinux 0x61efc28b skb_seq_read +EXPORT_SYMBOL vmlinux 0x61f6b8a6 md_error EXPORT_SYMBOL vmlinux 0x6214aef2 cpufreq_unregister_notifier -EXPORT_SYMBOL vmlinux 0x621f664f kernel_sendpage +EXPORT_SYMBOL vmlinux 0x621edd54 capable_wrt_inode_uidgid +EXPORT_SYMBOL vmlinux 0x62240ae7 inet_csk_reset_keepalive_timer EXPORT_SYMBOL vmlinux 0x6226b9fa machine_to_phys_mapping +EXPORT_SYMBOL vmlinux 0x62283f07 dec_node_page_state EXPORT_SYMBOL vmlinux 0x6228c21f smp_call_function_single -EXPORT_SYMBOL vmlinux 0x6236ab1a devm_clk_release_clkdev -EXPORT_SYMBOL vmlinux 0x6256621b write_cache_pages EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister +EXPORT_SYMBOL vmlinux 0x6274e216 alloc_file_pseudo EXPORT_SYMBOL vmlinux 0x62849ac7 dev_valid_name EXPORT_SYMBOL vmlinux 0x629079b3 dma_fence_signal_timestamp EXPORT_SYMBOL vmlinux 0x62949074 acpi_buffer_to_resource -EXPORT_SYMBOL vmlinux 0x62adc6df jbd2_transaction_committed -EXPORT_SYMBOL vmlinux 0x62b3bf63 inet6_csk_route_req +EXPORT_SYMBOL vmlinux 0x629a90df mipi_dsi_attach +EXPORT_SYMBOL vmlinux 0x62a6c856 __SCK__tp_func_mmap_lock_acquire_returned +EXPORT_SYMBOL vmlinux 0x62b2635d jbd2_journal_inode_ranged_write EXPORT_SYMBOL vmlinux 0x62bf6edf utf8agemin -EXPORT_SYMBOL vmlinux 0x62c74c14 skb_copy_and_csum_bits -EXPORT_SYMBOL vmlinux 0x62ca7107 xfrm_trans_queue -EXPORT_SYMBOL vmlinux 0x62f4ab22 devm_devfreq_register_opp_notifier -EXPORT_SYMBOL vmlinux 0x62f5858f agp_generic_alloc_user +EXPORT_SYMBOL vmlinux 0x62c2c2bc inet_twsk_deschedule_put +EXPORT_SYMBOL vmlinux 0x62c67036 fwnode_mdio_find_device EXPORT_SYMBOL vmlinux 0x62f7e207 down_read_killable -EXPORT_SYMBOL vmlinux 0x630f8a2b timestamp_truncate +EXPORT_SYMBOL vmlinux 0x62fcdbb5 rtc_add_groups +EXPORT_SYMBOL vmlinux 0x62fdcf36 unregister_netdevice_queue +EXPORT_SYMBOL vmlinux 0x6309e287 t10_pi_type1_crc +EXPORT_SYMBOL vmlinux 0x630a52f3 pipe_lock EXPORT_SYMBOL vmlinux 0x63187451 pcie_aspm_support_enabled EXPORT_SYMBOL vmlinux 0x631d06aa cpu_rmap_put -EXPORT_SYMBOL vmlinux 0x631eeb08 dev_get_by_napi_id -EXPORT_SYMBOL vmlinux 0x6332cc3b pneigh_enqueue -EXPORT_SYMBOL vmlinux 0x6336d0d4 __skb_vlan_pop -EXPORT_SYMBOL vmlinux 0x63408dfb mmc_is_req_done +EXPORT_SYMBOL vmlinux 0x631f8248 __tty_alloc_driver +EXPORT_SYMBOL vmlinux 0x6327cfb2 skb_udp_tunnel_segment +EXPORT_SYMBOL vmlinux 0x633bf348 reuseport_add_sock EXPORT_SYMBOL vmlinux 0x636257f7 get_ibs_caps +EXPORT_SYMBOL vmlinux 0x63789206 phy_resume +EXPORT_SYMBOL vmlinux 0x637c5dbb pci_get_class EXPORT_SYMBOL vmlinux 0x6383b27c __x86_indirect_thunk_rdx -EXPORT_SYMBOL vmlinux 0x638a52d3 input_set_min_poll_interval EXPORT_SYMBOL vmlinux 0x63a58370 flow_action_cookie_destroy EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region +EXPORT_SYMBOL vmlinux 0x63a9691a mipi_dsi_dcs_set_tear_scanline +EXPORT_SYMBOL vmlinux 0x63b4cfe2 udp_seq_next +EXPORT_SYMBOL vmlinux 0x63bcddcf mmc_register_driver +EXPORT_SYMBOL vmlinux 0x63beb6f4 param_get_ulong EXPORT_SYMBOL vmlinux 0x63c4d61f __bitmap_weight +EXPORT_SYMBOL vmlinux 0x63ceba4c invalidate_inode_buffers EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink -EXPORT_SYMBOL vmlinux 0x63f39dc5 sock_no_mmap EXPORT_SYMBOL vmlinux 0x63f835ba on_each_cpu_cond_mask +EXPORT_SYMBOL vmlinux 0x6400496f stop_tty +EXPORT_SYMBOL vmlinux 0x6401d15c tcf_idr_cleanup EXPORT_SYMBOL vmlinux 0x6405dcd3 slhc_toss -EXPORT_SYMBOL vmlinux 0x640e3d8b mpage_writepage +EXPORT_SYMBOL vmlinux 0x64089990 sock_set_rcvbuf EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off -EXPORT_SYMBOL vmlinux 0x6420fc98 __dev_get_by_index -EXPORT_SYMBOL vmlinux 0x64290869 balance_dirty_pages_ratelimited +EXPORT_SYMBOL vmlinux 0x642d1a01 iterate_fd EXPORT_SYMBOL vmlinux 0x642eb5c6 xen_poll_irq_timeout -EXPORT_SYMBOL vmlinux 0x64390221 skb_dequeue -EXPORT_SYMBOL vmlinux 0x644a5dee inet_twsk_deschedule_put -EXPORT_SYMBOL vmlinux 0x6456e38c __dev_kfree_skb_irq -EXPORT_SYMBOL vmlinux 0x646b5678 jbd2_journal_release_jbd_inode -EXPORT_SYMBOL vmlinux 0x646c4387 xfrm_register_type -EXPORT_SYMBOL vmlinux 0x646ddd7c reuseport_detach_prog -EXPORT_SYMBOL vmlinux 0x6478b740 flow_rule_match_ct +EXPORT_SYMBOL vmlinux 0x6434c394 pci_bus_write_config_dword +EXPORT_SYMBOL vmlinux 0x6434c9ad sock_alloc_send_skb +EXPORT_SYMBOL vmlinux 0x643f53e7 regset_get +EXPORT_SYMBOL vmlinux 0x6448fba3 d_add +EXPORT_SYMBOL vmlinux 0x64671a2b sock_no_connect EXPORT_SYMBOL vmlinux 0x6481ffe0 hsiphash_1u32 +EXPORT_SYMBOL vmlinux 0x648cf7ee xfrm6_protocol_register EXPORT_SYMBOL vmlinux 0x648eb59d gc_inflight_list +EXPORT_SYMBOL vmlinux 0x648ed938 tcf_action_set_ctrlact +EXPORT_SYMBOL vmlinux 0x64966b7b netdev_bonding_info_change EXPORT_SYMBOL vmlinux 0x64999478 congestion_wait EXPORT_SYMBOL vmlinux 0x64a9c928 default_blu +EXPORT_SYMBOL vmlinux 0x64ba0fb4 pagevec_lookup_range_tag EXPORT_SYMBOL vmlinux 0x64bbc288 string_unescape -EXPORT_SYMBOL vmlinux 0x64cd4a41 sock_setsockopt -EXPORT_SYMBOL vmlinux 0x64e38213 dev_getfirstbyhwtype -EXPORT_SYMBOL vmlinux 0x64e4f9ea file_check_and_advance_wb_err -EXPORT_SYMBOL vmlinux 0x64ece22f reuseport_detach_sock -EXPORT_SYMBOL vmlinux 0x650884fc __tracepoint_module_get +EXPORT_SYMBOL vmlinux 0x64d49200 xp_alloc +EXPORT_SYMBOL vmlinux 0x64dfb939 __tracepoint_spi_transfer_stop +EXPORT_SYMBOL vmlinux 0x64f585d2 tcf_idr_release +EXPORT_SYMBOL vmlinux 0x64fdaf17 serio_interrupt +EXPORT_SYMBOL vmlinux 0x650b683b pci_bus_read_config_byte EXPORT_SYMBOL vmlinux 0x6513a3fa fb_get_color_depth -EXPORT_SYMBOL vmlinux 0x6514ee9f pm860x_bulk_read +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 0x6538628c read_cache_page_gfp EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob +EXPORT_SYMBOL vmlinux 0x6541a100 rtnl_configure_link EXPORT_SYMBOL vmlinux 0x65464c16 clkdev_drop EXPORT_SYMBOL vmlinux 0x65487097 __x86_indirect_thunk_rax -EXPORT_SYMBOL vmlinux 0x655c85c2 bio_add_pc_page +EXPORT_SYMBOL vmlinux 0x6548a725 blkdev_get_by_dev +EXPORT_SYMBOL vmlinux 0x6569f432 pci_enable_device_mem EXPORT_SYMBOL vmlinux 0x656c1a0e string_escape_mem EXPORT_SYMBOL vmlinux 0x656e4a6e snprintf EXPORT_SYMBOL vmlinux 0x658ce1a8 xxh64_reset +EXPORT_SYMBOL vmlinux 0x658eea77 pmem_sector_size EXPORT_SYMBOL vmlinux 0x659ded26 xfrm_flush_gc -EXPORT_SYMBOL vmlinux 0x65a2e1fc igrab -EXPORT_SYMBOL vmlinux 0x65a437d7 inet_frag_queue_insert -EXPORT_SYMBOL vmlinux 0x65aed350 generic_error_remove_page -EXPORT_SYMBOL vmlinux 0x65b07c51 pci_find_capability +EXPORT_SYMBOL vmlinux 0x65a04c7f __alloc_skb EXPORT_SYMBOL vmlinux 0x65b992ac xen_alloc_p2m_entry -EXPORT_SYMBOL vmlinux 0x65cd470e generic_key_instantiate +EXPORT_SYMBOL vmlinux 0x65c8b84d prepare_kernel_cred EXPORT_SYMBOL vmlinux 0x65cf8831 ZSTD_decompress_usingDict EXPORT_SYMBOL vmlinux 0x65d1bab2 acpi_bios_warning +EXPORT_SYMBOL vmlinux 0x65d679a8 blk_rq_map_integrity_sg 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 0x65e37be7 shrink_dcache_parent -EXPORT_SYMBOL vmlinux 0x65ef48bd ptp_cancel_worker_sync -EXPORT_SYMBOL vmlinux 0x65f4b096 sync_filesystem -EXPORT_SYMBOL vmlinux 0x661e3c26 acpi_bus_unregister_driver -EXPORT_SYMBOL vmlinux 0x662643ba pci_disable_link_state_locked +EXPORT_SYMBOL vmlinux 0x6612a660 rproc_coredump_using_sections +EXPORT_SYMBOL vmlinux 0x661e273d tcf_idr_create +EXPORT_SYMBOL vmlinux 0x66264f10 blk_mq_free_tag_set EXPORT_SYMBOL vmlinux 0x6626afca down EXPORT_SYMBOL vmlinux 0x663182c9 acpi_get_gpe_status -EXPORT_SYMBOL vmlinux 0x663c670c dev_remove_offload +EXPORT_SYMBOL vmlinux 0x663a0304 of_find_mipi_dsi_host_by_node +EXPORT_SYMBOL vmlinux 0x66589905 phy_support_asym_pause EXPORT_SYMBOL vmlinux 0x66628bf3 ip_tunnel_metadata_cnt -EXPORT_SYMBOL vmlinux 0x667253c6 vga_switcheroo_fini_domain_pm_ops EXPORT_SYMBOL vmlinux 0x6673f96d xxh32_reset -EXPORT_SYMBOL vmlinux 0x667e709b migrate_vma_setup +EXPORT_SYMBOL vmlinux 0x6677cc14 vme_irq_handler +EXPORT_SYMBOL vmlinux 0x667c78a9 netdev_notice EXPORT_SYMBOL vmlinux 0x668b19a1 down_read -EXPORT_SYMBOL vmlinux 0x668f50d4 crypto_sha256_finup -EXPORT_SYMBOL vmlinux 0x669aabed proc_mkdir_mode +EXPORT_SYMBOL vmlinux 0x66a49b9b jbd2_fc_begin_commit +EXPORT_SYMBOL vmlinux 0x66a6c602 sock_alloc +EXPORT_SYMBOL vmlinux 0x66a7045d tcp_gro_complete EXPORT_SYMBOL vmlinux 0x66af1fd1 lockref_put_or_lock EXPORT_SYMBOL vmlinux 0x66b4cc41 kmemdup +EXPORT_SYMBOL vmlinux 0x66bb7592 rproc_add_subdev +EXPORT_SYMBOL vmlinux 0x66beb9d7 tcp_connect EXPORT_SYMBOL vmlinux 0x66cca4f9 __x86_indirect_thunk_rcx -EXPORT_SYMBOL vmlinux 0x66e4a057 truncate_inode_pages_final -EXPORT_SYMBOL vmlinux 0x66f9b216 sk_stream_error +EXPORT_SYMBOL vmlinux 0x66fcd2e3 cros_ec_check_result EXPORT_SYMBOL vmlinux 0x670ecece __x86_indirect_thunk_rbx -EXPORT_SYMBOL vmlinux 0x671b4d84 bio_copy_data -EXPORT_SYMBOL vmlinux 0x671dd03e flow_rule_match_enc_keyid -EXPORT_SYMBOL vmlinux 0x6721eda0 mnt_drop_write_file +EXPORT_SYMBOL vmlinux 0x670f5294 netpoll_parse_options EXPORT_SYMBOL vmlinux 0x6721fc7c security_cred_getsecid EXPORT_SYMBOL vmlinux 0x6729d3df __get_user_4 -EXPORT_SYMBOL vmlinux 0x672c3987 cookie_ecn_ok -EXPORT_SYMBOL vmlinux 0x67323723 pci_ep_cfs_add_epf_group -EXPORT_SYMBOL vmlinux 0x67386670 pnp_possible_config +EXPORT_SYMBOL vmlinux 0x67342c66 unix_attach_fds +EXPORT_SYMBOL vmlinux 0x67359fb5 __scsi_iterate_devices +EXPORT_SYMBOL vmlinux 0x6735eccb phy_ethtool_nway_reset +EXPORT_SYMBOL vmlinux 0x67364750 seq_escape_mem EXPORT_SYMBOL vmlinux 0x673f815e agp_bridges -EXPORT_SYMBOL vmlinux 0x6743004f dev_disable_lro +EXPORT_SYMBOL vmlinux 0x67404b98 prepare_to_swait_event +EXPORT_SYMBOL vmlinux 0x674889f8 skb_clone EXPORT_SYMBOL vmlinux 0x6749d53f hdmi_vendor_infoframe_init -EXPORT_SYMBOL vmlinux 0x674be70c padata_free_shell +EXPORT_SYMBOL vmlinux 0x674b4e75 clk_add_alias +EXPORT_SYMBOL vmlinux 0x67658a94 ip_output EXPORT_SYMBOL vmlinux 0x676a14c6 convert_tsc_ns_to_art_duration -EXPORT_SYMBOL vmlinux 0x6783e8b0 sk_free -EXPORT_SYMBOL vmlinux 0x678a193e pci_bus_write_config_byte +EXPORT_SYMBOL vmlinux 0x676d56c6 phy_suspend +EXPORT_SYMBOL vmlinux 0x6774bbfb dm_kobject_release +EXPORT_SYMBOL vmlinux 0x678aea25 __sock_cmsg_send EXPORT_SYMBOL vmlinux 0x678b96ec dma_pool_alloc +EXPORT_SYMBOL vmlinux 0x678fe812 devm_gen_pool_create +EXPORT_SYMBOL vmlinux 0x679cf594 fib_default_rule_add EXPORT_SYMBOL vmlinux 0x67a3757e flow_block_cb_is_busy -EXPORT_SYMBOL vmlinux 0x67a7fbba get_bitmap_from_slot -EXPORT_SYMBOL vmlinux 0x67b2134d __alloc_disk_node +EXPORT_SYMBOL vmlinux 0x67ab52eb xfrm_state_register_afinfo EXPORT_SYMBOL vmlinux 0x67b27ec1 tty_std_termios -EXPORT_SYMBOL vmlinux 0x67b74d5f skb_copy_and_csum_dev EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu EXPORT_SYMBOL vmlinux 0x67c13ea0 acpi_read -EXPORT_SYMBOL vmlinux 0x67e72745 drop_super_exclusive -EXPORT_SYMBOL vmlinux 0x67ea6519 skb_copy_datagram_iter -EXPORT_SYMBOL vmlinux 0x67f487ff __sk_queue_drop_skb -EXPORT_SYMBOL vmlinux 0x67f78f59 i2c_smbus_write_block_data +EXPORT_SYMBOL vmlinux 0x67c8dbfa dev_addr_add +EXPORT_SYMBOL vmlinux 0x67cf56d8 ipv4_specific +EXPORT_SYMBOL vmlinux 0x67d33915 __cleancache_init_shared_fs +EXPORT_SYMBOL vmlinux 0x67ecfc1a vfs_readlink +EXPORT_SYMBOL vmlinux 0x6811f2f8 agp_generic_remove_memory EXPORT_SYMBOL vmlinux 0x681b6670 is_firmware_framebuffer -EXPORT_SYMBOL vmlinux 0x681f8f11 validate_slab_cache -EXPORT_SYMBOL vmlinux 0x6823280a dm_kcopyd_copy -EXPORT_SYMBOL vmlinux 0x682d54a2 inode_owner_or_capable -EXPORT_SYMBOL vmlinux 0x683425e4 dquot_initialize -EXPORT_SYMBOL vmlinux 0x68382f83 pci_biosrom_size +EXPORT_SYMBOL vmlinux 0x682e3b6e tcf_get_next_chain EXPORT_SYMBOL vmlinux 0x683a9560 __gnet_stats_copy_basic -EXPORT_SYMBOL vmlinux 0x683dfc0e trace_event_printf EXPORT_SYMBOL vmlinux 0x6851664e wrmsrl_safe_on_cpu -EXPORT_SYMBOL vmlinux 0x6863f7c7 sock_rfree -EXPORT_SYMBOL vmlinux 0x6865d40b input_free_device +EXPORT_SYMBOL vmlinux 0x6852669d redraw_screen +EXPORT_SYMBOL vmlinux 0x6879127c xfrm_lookup_route EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval -EXPORT_SYMBOL vmlinux 0x6885fb72 vme_bus_error_handler -EXPORT_SYMBOL vmlinux 0x68c1d5e6 hdmi_infoframe_log -EXPORT_SYMBOL vmlinux 0x68c28e40 bio_advance +EXPORT_SYMBOL vmlinux 0x68afed12 filemap_map_pages +EXPORT_SYMBOL vmlinux 0x68bbd32e dev_queue_xmit EXPORT_SYMBOL vmlinux 0x68c4b824 cpumask_any_but -EXPORT_SYMBOL vmlinux 0x68ef40e8 proc_create +EXPORT_SYMBOL vmlinux 0x68d9ed59 fwnode_mdiobus_register_phy +EXPORT_SYMBOL vmlinux 0x68e1d2a9 thaw_super +EXPORT_SYMBOL vmlinux 0x68e9292a nvdimm_namespace_disk_name +EXPORT_SYMBOL vmlinux 0x68fa8bb7 __zerocopy_sg_from_iter EXPORT_SYMBOL vmlinux 0x68fb581a icst307_idx2s +EXPORT_SYMBOL vmlinux 0x6902eba8 cdrom_get_last_written EXPORT_SYMBOL vmlinux 0x69049cd2 radix_tree_replace_slot +EXPORT_SYMBOL vmlinux 0x69135e3c sk_stream_wait_close EXPORT_SYMBOL vmlinux 0x6917a77e __traceiter_kmem_cache_free -EXPORT_SYMBOL vmlinux 0x693cdf33 vm_iomap_memory -EXPORT_SYMBOL vmlinux 0x694f838a tcf_get_next_proto -EXPORT_SYMBOL vmlinux 0x69570484 __skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x692986b5 jbd2_journal_update_sb_errno EXPORT_SYMBOL vmlinux 0x69585523 __ksize -EXPORT_SYMBOL vmlinux 0x69590378 serial8250_do_set_termios +EXPORT_SYMBOL vmlinux 0x695943ef xfrm_register_type_offload +EXPORT_SYMBOL vmlinux 0x69643203 blk_queue_bounce_limit EXPORT_SYMBOL vmlinux 0x69668826 netdev_increment_features +EXPORT_SYMBOL vmlinux 0x696c885d __devm_mdiobus_register EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days -EXPORT_SYMBOL vmlinux 0x6975e451 vlan_vid_add EXPORT_SYMBOL vmlinux 0x697ed5f0 memcpy_and_pad +EXPORT_SYMBOL vmlinux 0x6980ba66 dev_vprintk_emit EXPORT_SYMBOL vmlinux 0x6988d0ca cpu_dr7 -EXPORT_SYMBOL vmlinux 0x69a8801f iput -EXPORT_SYMBOL vmlinux 0x69aa6343 agp_find_bridge +EXPORT_SYMBOL vmlinux 0x698ab341 pci_free_irq_vectors EXPORT_SYMBOL vmlinux 0x69acdf38 memcpy -EXPORT_SYMBOL vmlinux 0x69b88bd2 vfs_iter_read -EXPORT_SYMBOL vmlinux 0x69c92d3f inet_sk_rebuild_header EXPORT_SYMBOL vmlinux 0x69d53cbc posix_acl_from_xattr -EXPORT_SYMBOL vmlinux 0x69dbb632 pci_write_vpd EXPORT_SYMBOL vmlinux 0x69dd3b5b crc32_le EXPORT_SYMBOL vmlinux 0x69de8757 vme_check_window -EXPORT_SYMBOL vmlinux 0x69e63c05 kthread_blkcg +EXPORT_SYMBOL vmlinux 0x69f4825b alloc_skb_with_frags +EXPORT_SYMBOL vmlinux 0x69f95b51 pcie_capability_read_dword EXPORT_SYMBOL vmlinux 0x6a03751f sgl_free_order EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree -EXPORT_SYMBOL vmlinux 0x6a102001 __inode_add_bytes -EXPORT_SYMBOL vmlinux 0x6a1b4a90 request_partial_firmware_into_buf +EXPORT_SYMBOL vmlinux 0x6a06e1a7 tcp_seq_next +EXPORT_SYMBOL vmlinux 0x6a114f2b tty_driver_flush_buffer EXPORT_SYMBOL vmlinux 0x6a261b78 irq_stat -EXPORT_SYMBOL vmlinux 0x6a39802c mdio_device_free +EXPORT_SYMBOL vmlinux 0x6a3be49d input_mt_destroy_slots EXPORT_SYMBOL vmlinux 0x6a449c4f register_sysctl_table -EXPORT_SYMBOL vmlinux 0x6a4c9693 d_genocide +EXPORT_SYMBOL vmlinux 0x6a52fb59 vga_switcheroo_get_client_state EXPORT_SYMBOL vmlinux 0x6a5cb5ee __get_free_pages EXPORT_SYMBOL vmlinux 0x6a5ecb18 unregister_module_notifier EXPORT_SYMBOL vmlinux 0x6a5fa363 sigprocmask -EXPORT_SYMBOL vmlinux 0x6a635ae0 finish_swait -EXPORT_SYMBOL vmlinux 0x6a6769c8 mem_cgroup_from_task -EXPORT_SYMBOL vmlinux 0x6a67cca6 shrink_dcache_sb EXPORT_SYMBOL vmlinux 0x6a6e05bf kstrtou8 -EXPORT_SYMBOL vmlinux 0x6a727642 md_flush_request -EXPORT_SYMBOL vmlinux 0x6a764c45 forget_all_cached_acls -EXPORT_SYMBOL vmlinux 0x6a79b9a5 con_copy_unimap -EXPORT_SYMBOL vmlinux 0x6a90db8a skb_dequeue_tail +EXPORT_SYMBOL vmlinux 0x6a6fa3a8 xfrm_policy_walk_done +EXPORT_SYMBOL vmlinux 0x6a712315 dev_get_phys_port_id +EXPORT_SYMBOL vmlinux 0x6a899b4e mdiobus_get_phy +EXPORT_SYMBOL vmlinux 0x6a8d13a8 crypto_sha256_update +EXPORT_SYMBOL vmlinux 0x6aa0b536 netif_schedule_queue EXPORT_SYMBOL vmlinux 0x6aa11aa6 sgl_free_n_order +EXPORT_SYMBOL vmlinux 0x6aa27aa5 tcf_em_tree_destroy EXPORT_SYMBOL vmlinux 0x6aa8cddf config_item_set_name -EXPORT_SYMBOL vmlinux 0x6aac3e5c agp_backend_release -EXPORT_SYMBOL vmlinux 0x6ab20a89 set_anon_super_fc -EXPORT_SYMBOL vmlinux 0x6ac313f0 input_mt_get_slot_by_key -EXPORT_SYMBOL vmlinux 0x6ac89251 phy_connect_direct -EXPORT_SYMBOL vmlinux 0x6ad5f3cb path_has_submounts +EXPORT_SYMBOL vmlinux 0x6ac18d68 pcie_port_service_unregister +EXPORT_SYMBOL vmlinux 0x6adc7663 dma_map_sg_attrs EXPORT_SYMBOL vmlinux 0x6add5c9a dmi_find_device -EXPORT_SYMBOL vmlinux 0x6ae70eaa kill_litter_super EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset -EXPORT_SYMBOL vmlinux 0x6b074344 no_seek_end_llseek_size +EXPORT_SYMBOL vmlinux 0x6af3375f mmc_cqe_request_done EXPORT_SYMBOL vmlinux 0x6b10bee1 _copy_to_user -EXPORT_SYMBOL vmlinux 0x6b18f49a seg6_hmac_validate_skb EXPORT_SYMBOL vmlinux 0x6b27729b radix_tree_gang_lookup EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack -EXPORT_SYMBOL vmlinux 0x6b345af6 get_tree_nodev -EXPORT_SYMBOL vmlinux 0x6b3afe76 fb_pan_display -EXPORT_SYMBOL vmlinux 0x6b3e458b vme_dma_list_free +EXPORT_SYMBOL vmlinux 0x6b2f7c08 generic_pipe_buf_get +EXPORT_SYMBOL vmlinux 0x6b3287f1 serial8250_register_8250_port +EXPORT_SYMBOL vmlinux 0x6b49db39 fs_param_is_string EXPORT_SYMBOL vmlinux 0x6b55acd0 rtnl_lock_killable -EXPORT_SYMBOL vmlinux 0x6b597374 netdev_lower_dev_get_private +EXPORT_SYMBOL vmlinux 0x6b6889b6 seq_read +EXPORT_SYMBOL vmlinux 0x6b695cf1 zen_untrain_ret +EXPORT_SYMBOL vmlinux 0x6b773911 inet_dev_addr_type +EXPORT_SYMBOL vmlinux 0x6b8222d2 mipi_dsi_driver_register_full EXPORT_SYMBOL vmlinux 0x6b853d06 ns_to_kernel_old_timeval EXPORT_SYMBOL vmlinux 0x6b8bf149 netif_receive_skb_list EXPORT_SYMBOL vmlinux 0x6b9d1c95 security_req_classify_flow -EXPORT_SYMBOL vmlinux 0x6ba32877 fib6_info_hw_flags_set -EXPORT_SYMBOL vmlinux 0x6badbf7b __xfrm_decode_session -EXPORT_SYMBOL vmlinux 0x6badce97 generic_ro_fops +EXPORT_SYMBOL vmlinux 0x6baa0967 try_module_get +EXPORT_SYMBOL vmlinux 0x6bae53a6 xfrm_policy_register_afinfo +EXPORT_SYMBOL vmlinux 0x6bb0109b clear_page_dirty_for_io +EXPORT_SYMBOL vmlinux 0x6bbc39db scsi_register_interface +EXPORT_SYMBOL vmlinux 0x6bc200ab tcf_em_unregister +EXPORT_SYMBOL vmlinux 0x6bc229ec qdisc_hash_del EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev -EXPORT_SYMBOL vmlinux 0x6bcb013d __cleancache_init_shared_fs +EXPORT_SYMBOL vmlinux 0x6bca9595 inode_newsize_ok +EXPORT_SYMBOL vmlinux 0x6bd0e288 jbd2_fc_get_buf EXPORT_SYMBOL vmlinux 0x6bd0e573 down_interruptible -EXPORT_SYMBOL vmlinux 0x6bd322d4 vm_insert_pages -EXPORT_SYMBOL vmlinux 0x6bdf86d8 __dst_destroy_metrics_generic +EXPORT_SYMBOL vmlinux 0x6bda962b pcie_get_readrq EXPORT_SYMBOL vmlinux 0x6be1c1f8 acpi_install_method -EXPORT_SYMBOL vmlinux 0x6bf204df pskb_extract -EXPORT_SYMBOL vmlinux 0x6bfe419c tcf_qevent_dump -EXPORT_SYMBOL vmlinux 0x6c05d93c generic_block_bmap -EXPORT_SYMBOL vmlinux 0x6c224abe alloc_skb_with_frags +EXPORT_SYMBOL vmlinux 0x6be2c9cd qdisc_reset +EXPORT_SYMBOL vmlinux 0x6bf2d5e5 kernel_read +EXPORT_SYMBOL vmlinux 0x6c0c1590 pnp_is_active +EXPORT_SYMBOL vmlinux 0x6c0c26b9 __invalidate_device EXPORT_SYMBOL vmlinux 0x6c224cda gen_pool_destroy EXPORT_SYMBOL vmlinux 0x6c257ac0 tty_termios_hw_change EXPORT_SYMBOL vmlinux 0x6c28be5a vfio_info_add_capability -EXPORT_SYMBOL vmlinux 0x6c366707 fwnode_irq_get -EXPORT_SYMBOL vmlinux 0x6c5c6517 request_key_with_auxdata +EXPORT_SYMBOL vmlinux 0x6c32f5ba unpin_user_pages_dirty_lock +EXPORT_SYMBOL vmlinux 0x6c457d21 devfreq_monitor_start +EXPORT_SYMBOL vmlinux 0x6c4c3f35 input_set_max_poll_interval +EXPORT_SYMBOL vmlinux 0x6c52b842 cdrom_get_media_event EXPORT_SYMBOL vmlinux 0x6c5dae23 scsi_kmap_atomic_sg EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb -EXPORT_SYMBOL vmlinux 0x6c96dc8d vga_switcheroo_client_fb_set -EXPORT_SYMBOL vmlinux 0x6cae3cfa cpufreq_get_policy EXPORT_SYMBOL vmlinux 0x6cb2f5a1 cpumask_next_and EXPORT_SYMBOL vmlinux 0x6cb46525 netlbl_catmap_walk -EXPORT_SYMBOL vmlinux 0x6cbb21f5 free_buffer_head +EXPORT_SYMBOL vmlinux 0x6cb4ddc5 devm_ioremap_wc EXPORT_SYMBOL vmlinux 0x6cc09945 ioread32_rep -EXPORT_SYMBOL vmlinux 0x6cd3b733 mipi_dsi_dcs_set_display_on -EXPORT_SYMBOL vmlinux 0x6cd9b5c7 tcf_unregister_action -EXPORT_SYMBOL vmlinux 0x6ce8aa3e input_mt_drop_unused -EXPORT_SYMBOL vmlinux 0x6ceb779d devfreq_update_interval -EXPORT_SYMBOL vmlinux 0x6d048e38 __netif_schedule -EXPORT_SYMBOL vmlinux 0x6d069a3e eisa_driver_unregister +EXPORT_SYMBOL vmlinux 0x6cc66986 _copy_from_iter +EXPORT_SYMBOL vmlinux 0x6cc91a6b jbd2_journal_try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x6cca0795 kfree_skb +EXPORT_SYMBOL vmlinux 0x6cda7699 key_task_permission +EXPORT_SYMBOL vmlinux 0x6ce7f09b gro_find_receive_by_type +EXPORT_SYMBOL vmlinux 0x6cea943c scsi_rescan_device +EXPORT_SYMBOL vmlinux 0x6cf5f8db unlock_buffer +EXPORT_SYMBOL vmlinux 0x6d138658 kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0x6d1420ef mmc_gpio_get_cd EXPORT_SYMBOL vmlinux 0x6d16c104 mutex_lock_killable +EXPORT_SYMBOL vmlinux 0x6d25f011 param_get_long +EXPORT_SYMBOL vmlinux 0x6d274eb7 icmp6_send EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies EXPORT_SYMBOL vmlinux 0x6d334118 __get_user_8 EXPORT_SYMBOL vmlinux 0x6d340f64 tty_termios_input_baud_rate -EXPORT_SYMBOL vmlinux 0x6d358a9c blk_queue_max_write_same_sectors -EXPORT_SYMBOL vmlinux 0x6d363d4a free_xenballooned_pages -EXPORT_SYMBOL vmlinux 0x6d37e101 netpoll_print_options -EXPORT_SYMBOL vmlinux 0x6d400c45 vga_remove_vgacon +EXPORT_SYMBOL vmlinux 0x6d402b10 set_blocksize +EXPORT_SYMBOL vmlinux 0x6d44c1fa sk_net_capable +EXPORT_SYMBOL vmlinux 0x6d44fa6a pci_rebar_get_possible_sizes EXPORT_SYMBOL vmlinux 0x6d58f69e agp3_generic_sizes -EXPORT_SYMBOL vmlinux 0x6d592932 blk_queue_logical_block_size +EXPORT_SYMBOL vmlinux 0x6d5b03ef pci_request_selected_regions EXPORT_SYMBOL vmlinux 0x6d5f5b91 radix_tree_tagged +EXPORT_SYMBOL vmlinux 0x6d7bbf39 bio_put EXPORT_SYMBOL vmlinux 0x6d7c7dcc bitmap_cut -EXPORT_SYMBOL vmlinux 0x6d91a62b ip_cmsg_recv_offset -EXPORT_SYMBOL vmlinux 0x6da42308 security_path_unlink -EXPORT_SYMBOL vmlinux 0x6db8d0a9 iov_iter_revert -EXPORT_SYMBOL vmlinux 0x6dc08d9a seq_write -EXPORT_SYMBOL vmlinux 0x6dc0ba65 eth_commit_mac_addr_change EXPORT_SYMBOL vmlinux 0x6dc35b25 radix_tree_iter_delete -EXPORT_SYMBOL vmlinux 0x6dc95ea2 __napi_schedule EXPORT_SYMBOL vmlinux 0x6dcf857f uuid_null EXPORT_SYMBOL vmlinux 0x6dd17e7b acpi_get_table_header +EXPORT_SYMBOL vmlinux 0x6ddd2578 tty_hangup EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction -EXPORT_SYMBOL vmlinux 0x6e0631f7 __get_hash_from_flowi6 -EXPORT_SYMBOL vmlinux 0x6e0dd9cb jbd2_journal_inode_ranged_wait -EXPORT_SYMBOL vmlinux 0x6e133cff arp_tbl -EXPORT_SYMBOL vmlinux 0x6e1cc62f fwnode_get_mac_address -EXPORT_SYMBOL vmlinux 0x6e37caec ip_defrag -EXPORT_SYMBOL vmlinux 0x6e3ccd1d kern_unmount_array -EXPORT_SYMBOL vmlinux 0x6e41b789 mipi_dsi_generic_read +EXPORT_SYMBOL vmlinux 0x6e09262a set_capacity +EXPORT_SYMBOL vmlinux 0x6e130454 unregister_key_type +EXPORT_SYMBOL vmlinux 0x6e16f50c vfs_path_lookup +EXPORT_SYMBOL vmlinux 0x6e24ef55 qdisc_watchdog_init_clockid +EXPORT_SYMBOL vmlinux 0x6e550104 flow_rule_match_ct EXPORT_SYMBOL vmlinux 0x6e5b8651 xz_dec_run +EXPORT_SYMBOL vmlinux 0x6e717ba9 dcb_setapp EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock EXPORT_SYMBOL vmlinux 0x6e841389 cpu_info -EXPORT_SYMBOL vmlinux 0x6e8496e2 ipv6_dev_mc_inc -EXPORT_SYMBOL vmlinux 0x6e97f9cb ppp_input EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put EXPORT_SYMBOL vmlinux 0x6ea7575d acpi_dispatch_gpe EXPORT_SYMBOL vmlinux 0x6ea9363b force_sig -EXPORT_SYMBOL vmlinux 0x6eefeb53 __ip4_datagram_connect -EXPORT_SYMBOL vmlinux 0x6f1ccadb jbd2_journal_errno -EXPORT_SYMBOL vmlinux 0x6f1d33f4 __tracepoint_kmem_cache_free -EXPORT_SYMBOL vmlinux 0x6f1f5b1c sk_wait_data -EXPORT_SYMBOL vmlinux 0x6f25f246 max8998_update_reg -EXPORT_SYMBOL vmlinux 0x6f2ae5f2 blk_put_queue -EXPORT_SYMBOL vmlinux 0x6f3e04b8 param_set_ushort -EXPORT_SYMBOL vmlinux 0x6f3e7ca0 skb_coalesce_rx_frag -EXPORT_SYMBOL vmlinux 0x6f40ec14 alloc_pages +EXPORT_SYMBOL vmlinux 0x6eb44e72 __serio_register_driver +EXPORT_SYMBOL vmlinux 0x6eb579e3 alloc_pages_vma +EXPORT_SYMBOL vmlinux 0x6ec66290 bdi_set_max_ratio +EXPORT_SYMBOL vmlinux 0x6ef320b6 key_alloc +EXPORT_SYMBOL vmlinux 0x6f06a246 xfrm_if_register_cb +EXPORT_SYMBOL vmlinux 0x6f079fb3 vme_dma_list_free +EXPORT_SYMBOL vmlinux 0x6f1919ee phy_start_aneg +EXPORT_SYMBOL vmlinux 0x6f37c984 neigh_table_clear EXPORT_SYMBOL vmlinux 0x6f41a428 acpi_get_vendor_resource -EXPORT_SYMBOL vmlinux 0x6f5023b7 insert_inode_locked -EXPORT_SYMBOL vmlinux 0x6f548bd9 ipmr_rule_default +EXPORT_SYMBOL vmlinux 0x6f4220c3 remove_proc_subtree +EXPORT_SYMBOL vmlinux 0x6f48edad fifo_create_dflt +EXPORT_SYMBOL vmlinux 0x6f523b75 jbd2_journal_start_commit EXPORT_SYMBOL vmlinux 0x6f5ab52f acpi_get_local_address -EXPORT_SYMBOL vmlinux 0x6f65d34a tcp_sendpage -EXPORT_SYMBOL vmlinux 0x6f83f4b6 get_mem_cgroup_from_mm -EXPORT_SYMBOL vmlinux 0x6f8cd20a __SCK__tp_func_dma_fence_emit +EXPORT_SYMBOL vmlinux 0x6f7bdf20 unlock_rename +EXPORT_SYMBOL vmlinux 0x6f8248b5 security_sock_rcv_skb +EXPORT_SYMBOL vmlinux 0x6f877f63 devfreq_recommended_opp +EXPORT_SYMBOL vmlinux 0x6f88ad18 blk_rq_map_kern EXPORT_SYMBOL vmlinux 0x6f8f674a bpf_dispatcher_xdp_func EXPORT_SYMBOL vmlinux 0x6f915a45 dqstats -EXPORT_SYMBOL vmlinux 0x6f9f8495 twl6030_mmc_card_detect EXPORT_SYMBOL vmlinux 0x6fb49676 queue_rcu_work EXPORT_SYMBOL vmlinux 0x6fbc6a00 radix_tree_insert -EXPORT_SYMBOL vmlinux 0x6fbcb636 xfrm_init_state +EXPORT_SYMBOL vmlinux 0x6fc09b1b netdev_lower_dev_get_private +EXPORT_SYMBOL vmlinux 0x6fc35596 input_event EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog +EXPORT_SYMBOL vmlinux 0x6fd78284 inode_dio_wait EXPORT_SYMBOL vmlinux 0x6fd9c35a __clzdi2 -EXPORT_SYMBOL vmlinux 0x6fe26c72 __fib6_flush_trees +EXPORT_SYMBOL vmlinux 0x6fdeb815 inode_sub_bytes +EXPORT_SYMBOL vmlinux 0x6ff6101b ps2_sendbyte EXPORT_SYMBOL vmlinux 0x70002fe8 siphash_1u32 -EXPORT_SYMBOL vmlinux 0x700cbe45 sk_filter_trim_cap -EXPORT_SYMBOL vmlinux 0x70124a3b pci_ep_cfs_remove_epc_group +EXPORT_SYMBOL vmlinux 0x7014f90d fs_param_is_u64 EXPORT_SYMBOL vmlinux 0x7023bea8 unregister_acpi_notifier EXPORT_SYMBOL vmlinux 0x702946da ucs2_strlen -EXPORT_SYMBOL vmlinux 0x702c1ba0 nf_log_unregister -EXPORT_SYMBOL vmlinux 0x703c6dea xfrm_find_acq EXPORT_SYMBOL vmlinux 0x7040fff9 rtc_lock -EXPORT_SYMBOL vmlinux 0x704ba695 vmalloc_to_page EXPORT_SYMBOL vmlinux 0x7054a3e4 request_dma -EXPORT_SYMBOL vmlinux 0x70586132 dev_mc_del_global -EXPORT_SYMBOL vmlinux 0x707e71ab netdev_state_change -EXPORT_SYMBOL vmlinux 0x708daeb9 xfrm_spd_getinfo +EXPORT_SYMBOL vmlinux 0x70a6932c km_query EXPORT_SYMBOL vmlinux 0x70ad75fb radix_tree_lookup -EXPORT_SYMBOL vmlinux 0x70b46bb5 agp_collect_device_status -EXPORT_SYMBOL vmlinux 0x70b66a1f vfio_unpin_pages -EXPORT_SYMBOL vmlinux 0x70bf8efb sock_create_lite -EXPORT_SYMBOL vmlinux 0x70c64b41 devm_alloc_etherdev_mqs -EXPORT_SYMBOL vmlinux 0x70d375be phy_modify_paged_changed -EXPORT_SYMBOL vmlinux 0x70d3bca5 skb_abort_seq_read -EXPORT_SYMBOL vmlinux 0x70dfd067 mipi_dsi_dcs_set_pixel_format -EXPORT_SYMBOL vmlinux 0x70e84311 jbd2_journal_set_triggers -EXPORT_SYMBOL vmlinux 0x70e851cd dma_map_resource -EXPORT_SYMBOL vmlinux 0x70f8a86d from_kprojid -EXPORT_SYMBOL vmlinux 0x7110499c tty_check_change -EXPORT_SYMBOL vmlinux 0x7113b1b0 scsi_block_requests -EXPORT_SYMBOL vmlinux 0x7116169f dquot_load_quota_sb -EXPORT_SYMBOL vmlinux 0x71192ba9 mr_rtm_dumproute +EXPORT_SYMBOL vmlinux 0x70db86cb ww_mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0x70de4c9d current_in_userns +EXPORT_SYMBOL vmlinux 0x70e2b73a skb_vlan_pop +EXPORT_SYMBOL vmlinux 0x70f1ceec inet_csk_prepare_forced_close +EXPORT_SYMBOL vmlinux 0x70fb14bd dev_mc_sync +EXPORT_SYMBOL vmlinux 0x70ff2395 fs_context_for_submount +EXPORT_SYMBOL vmlinux 0x711ce26c blk_post_runtime_resume +EXPORT_SYMBOL vmlinux 0x71216354 rproc_da_to_va EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc -EXPORT_SYMBOL vmlinux 0x71309728 nf_register_net_hook -EXPORT_SYMBOL vmlinux 0x71314242 rproc_set_firmware -EXPORT_SYMBOL vmlinux 0x7131aa68 kfree_skb -EXPORT_SYMBOL vmlinux 0x714563d1 mini_qdisc_pair_block_init +EXPORT_SYMBOL vmlinux 0x712a9037 blk_mq_requeue_request +EXPORT_SYMBOL vmlinux 0x71311bba blk_get_queue +EXPORT_SYMBOL vmlinux 0x714a2d42 napi_complete_done +EXPORT_SYMBOL vmlinux 0x714e4da8 rproc_elf_get_boot_addr EXPORT_SYMBOL vmlinux 0x715a5ed0 vprintk -EXPORT_SYMBOL vmlinux 0x715b2956 tcf_idrinfo_destroy -EXPORT_SYMBOL vmlinux 0x716ca0fa mmc_can_secure_erase_trim EXPORT_SYMBOL vmlinux 0x7171121c overflowgid +EXPORT_SYMBOL vmlinux 0x71719bdb tcf_exts_dump_stats +EXPORT_SYMBOL vmlinux 0x718087b2 tcf_exts_dump EXPORT_SYMBOL vmlinux 0x718a4693 __SCT__tp_func_mmap_lock_start_locking -EXPORT_SYMBOL vmlinux 0x718f4b75 dquot_quota_on_mount -EXPORT_SYMBOL vmlinux 0x719ccdfa vfs_create_mount -EXPORT_SYMBOL vmlinux 0x719d1739 page_pool_put_page_bulk -EXPORT_SYMBOL vmlinux 0x71a5b93d mdiobus_get_phy +EXPORT_SYMBOL vmlinux 0x719b65e8 legacy_pic +EXPORT_SYMBOL vmlinux 0x719be626 blk_queue_logical_block_size EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy -EXPORT_SYMBOL vmlinux 0x71a9f426 xfrm_parse_spi -EXPORT_SYMBOL vmlinux 0x71aa12b3 jbd2_fc_end_commit -EXPORT_SYMBOL vmlinux 0x71c93b5e nf_log_register -EXPORT_SYMBOL vmlinux 0x71d3908f uart_get_baud_rate +EXPORT_SYMBOL vmlinux 0x71aa0b42 skb_find_text +EXPORT_SYMBOL vmlinux 0x71b4817b dev_pick_tx_zero +EXPORT_SYMBOL vmlinux 0x71b5029f devm_clk_hw_register_clkdev +EXPORT_SYMBOL vmlinux 0x71c94e6f phy_ethtool_set_wol +EXPORT_SYMBOL vmlinux 0x71cfa456 devfreq_monitor_suspend EXPORT_SYMBOL vmlinux 0x71dfc095 acpi_walk_resources -EXPORT_SYMBOL vmlinux 0x71f343b5 phy_read_paged -EXPORT_SYMBOL vmlinux 0x71fcb74b inode_sub_bytes -EXPORT_SYMBOL vmlinux 0x72068cc7 csum_and_copy_to_iter -EXPORT_SYMBOL vmlinux 0x7206d2a6 fscrypt_decrypt_block_inplace +EXPORT_SYMBOL vmlinux 0x71e09afa ps2_begin_command +EXPORT_SYMBOL vmlinux 0x71ee902b tcp_ld_RTO_revert EXPORT_SYMBOL vmlinux 0x720a27a7 __register_blkdev -EXPORT_SYMBOL vmlinux 0x7234fffa dev_queue_xmit_accel -EXPORT_SYMBOL vmlinux 0x72356f20 __skb_warn_lro_forwarding -EXPORT_SYMBOL vmlinux 0x723e4d22 input_handler_for_each_handle +EXPORT_SYMBOL vmlinux 0x720acb2f dev_uc_sync_multiple +EXPORT_SYMBOL vmlinux 0x720c3119 pci_bus_read_config_dword +EXPORT_SYMBOL vmlinux 0x723a8171 skb_copy_bits +EXPORT_SYMBOL vmlinux 0x72433791 configfs_undepend_item EXPORT_SYMBOL vmlinux 0x724ddac7 utf8version_is_supported -EXPORT_SYMBOL vmlinux 0x725191b9 ptp_find_pin_unlocked +EXPORT_SYMBOL vmlinux 0x7262ab16 blk_cleanup_disk EXPORT_SYMBOL vmlinux 0x726bc3c7 wait_for_completion_killable_timeout -EXPORT_SYMBOL vmlinux 0x72b00551 skb_queue_tail +EXPORT_SYMBOL vmlinux 0x7283634e vfs_iocb_iter_write +EXPORT_SYMBOL vmlinux 0x729b0a7e set_pages_array_wc +EXPORT_SYMBOL vmlinux 0x729e6dec __ip_options_compile EXPORT_SYMBOL vmlinux 0x72b243d4 free_dma +EXPORT_SYMBOL vmlinux 0x72b361cb mfd_add_devices +EXPORT_SYMBOL vmlinux 0x72b6c6bd security_inode_copy_up +EXPORT_SYMBOL vmlinux 0x72b80d7c skb_copy_and_csum_dev EXPORT_SYMBOL vmlinux 0x72b9d287 default_grn -EXPORT_SYMBOL vmlinux 0x72be7901 sync_blockdev -EXPORT_SYMBOL vmlinux 0x72c0fc12 mipi_dsi_host_unregister -EXPORT_SYMBOL vmlinux 0x72c420bb setattr_prepare -EXPORT_SYMBOL vmlinux 0x72d39057 dmaenginem_async_device_register -EXPORT_SYMBOL vmlinux 0x72d47209 rproc_add EXPORT_SYMBOL vmlinux 0x72d79d83 pgdir_shift +EXPORT_SYMBOL vmlinux 0x72dc0ad4 mmc_card_is_blockaddr +EXPORT_SYMBOL vmlinux 0x72df5c63 nf_log_set +EXPORT_SYMBOL vmlinux 0x72e80b9b set_anon_super EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type EXPORT_SYMBOL vmlinux 0x72f14ff7 acpi_get_object_info -EXPORT_SYMBOL vmlinux 0x7301c698 sock_from_file -EXPORT_SYMBOL vmlinux 0x7307c3e5 iterate_fd -EXPORT_SYMBOL vmlinux 0x7314f297 dev_activate -EXPORT_SYMBOL vmlinux 0x73150512 dquot_acquire +EXPORT_SYMBOL vmlinux 0x7302f82d netlink_set_err +EXPORT_SYMBOL vmlinux 0x730a089f inc_zone_page_state +EXPORT_SYMBOL vmlinux 0x730e7f9b phy_connect_direct EXPORT_SYMBOL vmlinux 0x7315a4e9 twl6030_mmc_card_detect_config +EXPORT_SYMBOL vmlinux 0x73189af4 devm_nvmem_unregister EXPORT_SYMBOL vmlinux 0x731c4a9c dma_fence_signal +EXPORT_SYMBOL vmlinux 0x732104ac ___pskb_trim +EXPORT_SYMBOL vmlinux 0x732517a1 devm_mfd_add_devices EXPORT_SYMBOL vmlinux 0x732dd326 groups_free -EXPORT_SYMBOL vmlinux 0x7339fa4f __alloc_pages +EXPORT_SYMBOL vmlinux 0x73306c26 xsk_clear_tx_need_wakeup +EXPORT_SYMBOL vmlinux 0x73460871 dev_remove_offload +EXPORT_SYMBOL vmlinux 0x73536f55 serio_open +EXPORT_SYMBOL vmlinux 0x735607dc tcp_release_cb EXPORT_SYMBOL vmlinux 0x735a0bd5 native_io_delay EXPORT_SYMBOL vmlinux 0x735e6a81 acpi_evaluate_integer -EXPORT_SYMBOL vmlinux 0x73617982 sk_error_report +EXPORT_SYMBOL vmlinux 0x735f188e skb_clone_sk +EXPORT_SYMBOL vmlinux 0x73657b18 tty_port_init +EXPORT_SYMBOL vmlinux 0x736bda55 iov_iter_bvec EXPORT_SYMBOL vmlinux 0x7380dffa argv_split -EXPORT_SYMBOL vmlinux 0x738104a2 xattr_supported_namespace -EXPORT_SYMBOL vmlinux 0x738fe28d get_thermal_instance -EXPORT_SYMBOL vmlinux 0x7394fa2f dev_set_group -EXPORT_SYMBOL vmlinux 0x73977c37 sock_set_priority -EXPORT_SYMBOL vmlinux 0x73a1554a dquot_commit_info +EXPORT_SYMBOL vmlinux 0x738a1329 neigh_xmit +EXPORT_SYMBOL vmlinux 0x73944f77 bdevname +EXPORT_SYMBOL vmlinux 0x739ff9a6 udp_set_csum EXPORT_SYMBOL vmlinux 0x73abb180 alloc_contig_range +EXPORT_SYMBOL vmlinux 0x73b7e0c0 blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0x73b8caf1 migrate_page_copy EXPORT_SYMBOL vmlinux 0x73bc5522 kobject_add -EXPORT_SYMBOL vmlinux 0x73c3f243 inet_frag_kill -EXPORT_SYMBOL vmlinux 0x73caf889 to_nd_pfn -EXPORT_SYMBOL vmlinux 0x73d5b05a kernel_sock_ip_overhead +EXPORT_SYMBOL vmlinux 0x73c31c84 rt6_lookup +EXPORT_SYMBOL vmlinux 0x73d6ab3f ip_mc_leave_group EXPORT_SYMBOL vmlinux 0x73dd54eb irq_fpu_usable -EXPORT_SYMBOL vmlinux 0x73f31d7b proc_mkdir +EXPORT_SYMBOL vmlinux 0x73e21730 sget +EXPORT_SYMBOL vmlinux 0x73eba82f vlan_dev_vlan_proto +EXPORT_SYMBOL vmlinux 0x73eee3d7 scsi_print_command +EXPORT_SYMBOL vmlinux 0x74087878 dquot_alloc EXPORT_SYMBOL vmlinux 0x740a1b95 reserve_evntsel_nmi +EXPORT_SYMBOL vmlinux 0x740a7073 compat_ptr_ioctl EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace EXPORT_SYMBOL vmlinux 0x7412ed5b kvfree_sensitive EXPORT_SYMBOL vmlinux 0x7413793a EISA_bus -EXPORT_SYMBOL vmlinux 0x742058dc ipv6_skip_exthdr +EXPORT_SYMBOL vmlinux 0x7413c975 no_seek_end_llseek +EXPORT_SYMBOL vmlinux 0x74179728 writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0x74185cc8 jbd2_journal_put_journal_head +EXPORT_SYMBOL vmlinux 0x74203f13 get_vm_area +EXPORT_SYMBOL vmlinux 0x74245b40 sk_filter_trim_cap EXPORT_SYMBOL vmlinux 0x742578a5 wait_for_random_bytes -EXPORT_SYMBOL vmlinux 0x74278e4c set_blocksize EXPORT_SYMBOL vmlinux 0x7429e20c kstrtos8 +EXPORT_SYMBOL vmlinux 0x742d4ba8 register_mii_tstamp_controller +EXPORT_SYMBOL vmlinux 0x74424d75 seg6_hmac_validate_skb EXPORT_SYMBOL vmlinux 0x7453d3e8 security_release_secctx +EXPORT_SYMBOL vmlinux 0x745c502f xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x747417fa netdev_master_upper_dev_get_rcu EXPORT_SYMBOL vmlinux 0x74754435 acpi_bus_generate_netlink_event EXPORT_SYMBOL vmlinux 0x7483dc59 pci_dev_present -EXPORT_SYMBOL vmlinux 0x7488ebb3 dev_open -EXPORT_SYMBOL vmlinux 0x74a9b5ce _copy_to_iter -EXPORT_SYMBOL vmlinux 0x74b5fbf5 dev_getbyhwaddr_rcu -EXPORT_SYMBOL vmlinux 0x74ba463c crypto_sha1_update +EXPORT_SYMBOL vmlinux 0x748ba78d mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x748db22f nd_namespace_blk_validate +EXPORT_SYMBOL vmlinux 0x7491e365 dev_uc_add +EXPORT_SYMBOL vmlinux 0x749b7585 mmc_retune_pause +EXPORT_SYMBOL vmlinux 0x74b260a5 __dquot_free_space EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 -EXPORT_SYMBOL vmlinux 0x74c57157 vme_irq_request -EXPORT_SYMBOL vmlinux 0x74da0a64 dquot_scan_active -EXPORT_SYMBOL vmlinux 0x74e1f996 __dev_remove_pack +EXPORT_SYMBOL vmlinux 0x74cf1021 vme_dma_request +EXPORT_SYMBOL vmlinux 0x74e4343e pci_write_config_byte EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable -EXPORT_SYMBOL vmlinux 0x74e6ecc2 genl_register_family -EXPORT_SYMBOL vmlinux 0x74e72134 current_in_userns -EXPORT_SYMBOL vmlinux 0x74f74391 mmc_gpio_set_cd_isr -EXPORT_SYMBOL vmlinux 0x750b5e6b __xfrm_dst_lookup -EXPORT_SYMBOL vmlinux 0x75107ce6 netdev_change_features +EXPORT_SYMBOL vmlinux 0x74e9e342 iov_iter_alignment +EXPORT_SYMBOL vmlinux 0x74f1761c mipi_dsi_compression_mode +EXPORT_SYMBOL vmlinux 0x750014f9 vfs_iter_read +EXPORT_SYMBOL vmlinux 0x750f22cd scsi_register_driver +EXPORT_SYMBOL vmlinux 0x75156e1e vme_bus_num +EXPORT_SYMBOL vmlinux 0x751dbe21 is_acpi_data_node +EXPORT_SYMBOL vmlinux 0x75269c97 end_page_private_2 EXPORT_SYMBOL vmlinux 0x7530bb0c __SCT__tp_func_write_msr +EXPORT_SYMBOL vmlinux 0x753423a3 __sk_mem_schedule EXPORT_SYMBOL vmlinux 0x7538b132 agp_off -EXPORT_SYMBOL vmlinux 0x7545656a dma_resv_add_excl_fence +EXPORT_SYMBOL vmlinux 0x754726fa sock_register EXPORT_SYMBOL vmlinux 0x754d539c strlen -EXPORT_SYMBOL vmlinux 0x755cdff4 md_integrity_register -EXPORT_SYMBOL vmlinux 0x758307bc netdev_sk_get_lowest_dev +EXPORT_SYMBOL vmlinux 0x75543f1f uart_update_timeout +EXPORT_SYMBOL vmlinux 0x756f81ab xfrm_trans_queue_net +EXPORT_SYMBOL vmlinux 0x757f176d ps2_handle_response EXPORT_SYMBOL vmlinux 0x75871f5e acpi_get_next_object +EXPORT_SYMBOL vmlinux 0x758f5ed4 __traceiter_module_get EXPORT_SYMBOL vmlinux 0x75943e25 i8253_lock +EXPORT_SYMBOL vmlinux 0x759eee3a unregister_mii_timestamper EXPORT_SYMBOL vmlinux 0x75bda77a seq_hlist_next +EXPORT_SYMBOL vmlinux 0x75c30d17 vfs_dedupe_file_range_one EXPORT_SYMBOL vmlinux 0x75d0deb9 nsecs_to_jiffies64 EXPORT_SYMBOL vmlinux 0x75d499dd vmcore_add_device_dump -EXPORT_SYMBOL vmlinux 0x75e1f885 kernel_getpeername -EXPORT_SYMBOL vmlinux 0x75e3969e key_alloc -EXPORT_SYMBOL vmlinux 0x75eadfb0 jbd2_journal_extend -EXPORT_SYMBOL vmlinux 0x75f81274 ip_mc_inc_group -EXPORT_SYMBOL vmlinux 0x75ffad34 init_special_inode -EXPORT_SYMBOL vmlinux 0x76043205 sdev_prefix_printk +EXPORT_SYMBOL vmlinux 0x75db8dd4 truncate_inode_pages +EXPORT_SYMBOL vmlinux 0x75f4bc19 ip_sock_set_tos +EXPORT_SYMBOL vmlinux 0x76001984 vfs_copy_file_range +EXPORT_SYMBOL vmlinux 0x7602b036 get_cached_acl_rcu EXPORT_SYMBOL vmlinux 0x760a0f4f yield +EXPORT_SYMBOL vmlinux 0x7615482e __dev_kfree_skb_irq +EXPORT_SYMBOL vmlinux 0x76173964 mfd_remove_devices EXPORT_SYMBOL vmlinux 0x7618af39 hdmi_infoframe_check -EXPORT_SYMBOL vmlinux 0x761a9a1b __sk_mem_raise_allocated -EXPORT_SYMBOL vmlinux 0x76230abd default_llseek EXPORT_SYMBOL vmlinux 0x7624249e dim_park_tired -EXPORT_SYMBOL vmlinux 0x763a2352 nlmsg_notify -EXPORT_SYMBOL vmlinux 0x7646b08f phy_mii_ioctl +EXPORT_SYMBOL vmlinux 0x76265bde inet_put_port +EXPORT_SYMBOL vmlinux 0x7636df40 xfrm_parse_spi EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq -EXPORT_SYMBOL vmlinux 0x765bbfcb inet_frag_pull_head +EXPORT_SYMBOL vmlinux 0x765d9902 mr_vif_seq_idx EXPORT_SYMBOL vmlinux 0x765ff474 crc_t10dif_generic +EXPORT_SYMBOL vmlinux 0x766858a4 __scm_destroy EXPORT_SYMBOL vmlinux 0x766a0927 mempool_alloc_pages -EXPORT_SYMBOL vmlinux 0x76751f60 skb_copy_and_hash_datagram_iter +EXPORT_SYMBOL vmlinux 0x766b321d cdev_set_parent +EXPORT_SYMBOL vmlinux 0x766cb169 __block_write_full_page EXPORT_SYMBOL vmlinux 0x767dce4b acpi_disable_all_gpes EXPORT_SYMBOL vmlinux 0x767ddb02 set_memory_wc -EXPORT_SYMBOL vmlinux 0x76990c5d param_ops_bool +EXPORT_SYMBOL vmlinux 0x768d85b5 pci_alloc_host_bridge +EXPORT_SYMBOL vmlinux 0x769d8658 dev_mc_add_global EXPORT_SYMBOL vmlinux 0x769f6e64 errseq_check -EXPORT_SYMBOL vmlinux 0x76a56118 dev_get_phys_port_name +EXPORT_SYMBOL vmlinux 0x76aed528 __sock_create +EXPORT_SYMBOL vmlinux 0x76bd9ade key_invalidate EXPORT_SYMBOL vmlinux 0x76c30af9 unregister_nls +EXPORT_SYMBOL vmlinux 0x76d362c6 skb_ext_add EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode -EXPORT_SYMBOL vmlinux 0x76d8cd38 sock_alloc -EXPORT_SYMBOL vmlinux 0x76e4fc13 pcie_capability_clear_and_set_word +EXPORT_SYMBOL vmlinux 0x76e5790e ip_route_me_harder EXPORT_SYMBOL vmlinux 0x76fb08a7 amd_iommu_unregister_ppr_notifier -EXPORT_SYMBOL vmlinux 0x76fcf23f xsk_clear_rx_need_wakeup -EXPORT_SYMBOL vmlinux 0x770e0fc3 seq_release +EXPORT_SYMBOL vmlinux 0x76fdad73 __skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x770eb0f6 tty_port_lower_dtr_rts +EXPORT_SYMBOL vmlinux 0x772fc361 tty_check_change EXPORT_SYMBOL vmlinux 0x7732159c free_irq_cpu_rmap EXPORT_SYMBOL vmlinux 0x77358855 iomem_resource EXPORT_SYMBOL vmlinux 0x773fa409 __kfifo_dma_in_finish_r -EXPORT_SYMBOL vmlinux 0x773fdd05 jbd2__journal_start EXPORT_SYMBOL vmlinux 0x77456e0a acpi_root_dir -EXPORT_SYMBOL vmlinux 0x77535ff9 dquot_quota_sync -EXPORT_SYMBOL vmlinux 0x775d4977 mmc_command_done -EXPORT_SYMBOL vmlinux 0x776f987d fscrypt_encrypt_block_inplace +EXPORT_SYMBOL vmlinux 0x77540e43 _dev_warn EXPORT_SYMBOL vmlinux 0x777a47ff override_creds -EXPORT_SYMBOL vmlinux 0x778aaed1 dev_uc_add -EXPORT_SYMBOL vmlinux 0x778c451e netpoll_poll_disable -EXPORT_SYMBOL vmlinux 0x778f7f2f udp_prot +EXPORT_SYMBOL vmlinux 0x777e3f99 security_inet_conn_request +EXPORT_SYMBOL vmlinux 0x779014e1 get_tree_single EXPORT_SYMBOL vmlinux 0x7791193f icst525_s2div -EXPORT_SYMBOL vmlinux 0x77a5403c __SCK__tp_func_kmalloc_node EXPORT_SYMBOL vmlinux 0x77b0fed9 __next_node_in +EXPORT_SYMBOL vmlinux 0x77b3aae4 phy_modify_paged EXPORT_SYMBOL vmlinux 0x77bc13a0 strim EXPORT_SYMBOL vmlinux 0x77be46b2 config_item_put -EXPORT_SYMBOL vmlinux 0x77da27a7 twl6040_power -EXPORT_SYMBOL vmlinux 0x77dec61f inet_recvmsg +EXPORT_SYMBOL vmlinux 0x77c55982 nf_log_bind_pf +EXPORT_SYMBOL vmlinux 0x77db3598 param_set_ushort +EXPORT_SYMBOL vmlinux 0x77e996b5 inode_set_flags EXPORT_SYMBOL vmlinux 0x77e9eb37 aes_encrypt -EXPORT_SYMBOL vmlinux 0x77f92178 __tracepoint_write_msr -EXPORT_SYMBOL vmlinux 0x77fadc5e tty_unthrottle +EXPORT_SYMBOL vmlinux 0x77f1435d pnp_disable_dev +EXPORT_SYMBOL vmlinux 0x77f5c8b9 devm_register_reboot_notifier EXPORT_SYMBOL vmlinux 0x7807f0f8 schedule_timeout_idle -EXPORT_SYMBOL vmlinux 0x780886dd jbd2_fc_get_buf EXPORT_SYMBOL vmlinux 0x780fdfd1 intel_enable_gtt -EXPORT_SYMBOL vmlinux 0x7813854b __register_binfmt -EXPORT_SYMBOL vmlinux 0x782cff33 skb_checksum +EXPORT_SYMBOL vmlinux 0x7816a1f6 set_posix_acl +EXPORT_SYMBOL vmlinux 0x78262dc6 security_inode_setsecctx EXPORT_SYMBOL vmlinux 0x7834defd vfio_group_unpin_pages +EXPORT_SYMBOL vmlinux 0x783892e8 mr_mfc_seq_idx EXPORT_SYMBOL vmlinux 0x7846af3e __kfifo_len_r -EXPORT_SYMBOL vmlinux 0x784b662c __vfs_getxattr -EXPORT_SYMBOL vmlinux 0x7854cff2 __tracepoint_kmalloc -EXPORT_SYMBOL vmlinux 0x78697f96 sock_common_recvmsg -EXPORT_SYMBOL vmlinux 0x786dfa32 mmc_of_parse_clk_phase -EXPORT_SYMBOL vmlinux 0x78722d2b bio_kmalloc -EXPORT_SYMBOL vmlinux 0x787e140b __skb_checksum_complete_head +EXPORT_SYMBOL vmlinux 0x787989ac blk_queue_io_opt +EXPORT_SYMBOL vmlinux 0x787c2fa7 dmam_free_coherent EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback -EXPORT_SYMBOL vmlinux 0x788c85bc dcache_readdir -EXPORT_SYMBOL vmlinux 0x78989eea sched_autogroup_create_attach -EXPORT_SYMBOL vmlinux 0x78998dcf pcie_capability_write_word +EXPORT_SYMBOL vmlinux 0x789026db jbd2_journal_dirty_metadata EXPORT_SYMBOL vmlinux 0x789affb1 frontswap_tmem_exclusive_gets EXPORT_SYMBOL vmlinux 0x78a16f48 aes_decrypt -EXPORT_SYMBOL vmlinux 0x78a47f1a ip_setsockopt -EXPORT_SYMBOL vmlinux 0x78a96a42 dm_put_device +EXPORT_SYMBOL vmlinux 0x78b7dd6b input_mt_init_slots EXPORT_SYMBOL vmlinux 0x78b887ed vsprintf -EXPORT_SYMBOL vmlinux 0x78cde170 ipv6_mc_check_mld -EXPORT_SYMBOL vmlinux 0x78deb413 rproc_coredump_set_elf_info EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices -EXPORT_SYMBOL vmlinux 0x78ea8c3e devm_pci_remap_cfg_resource +EXPORT_SYMBOL vmlinux 0x78dfaee9 flow_rule_match_ipv6_addrs +EXPORT_SYMBOL vmlinux 0x78fe4763 fs_bio_set EXPORT_SYMBOL vmlinux 0x790bafd4 blk_stack_limits -EXPORT_SYMBOL vmlinux 0x796e7106 dev_graft_qdisc +EXPORT_SYMBOL vmlinux 0x790f8bf2 get_user_pages +EXPORT_SYMBOL vmlinux 0x7924f575 d_instantiate_anon +EXPORT_SYMBOL vmlinux 0x7929cfc1 km_state_expired +EXPORT_SYMBOL vmlinux 0x79355ece pnp_start_dev +EXPORT_SYMBOL vmlinux 0x793abf03 csum_and_copy_from_iter +EXPORT_SYMBOL vmlinux 0x793caf47 tcp_shutdown +EXPORT_SYMBOL vmlinux 0x794218f3 register_netdevice_notifier_dev_net +EXPORT_SYMBOL vmlinux 0x7953a7be uart_resume_port +EXPORT_SYMBOL vmlinux 0x795496f9 dcb_ieee_getapp_prio_dscp_mask_map +EXPORT_SYMBOL vmlinux 0x79589a0f proto_unregister +EXPORT_SYMBOL vmlinux 0x796ae5bb neigh_seq_stop +EXPORT_SYMBOL vmlinux 0x796ba603 inet_getname EXPORT_SYMBOL vmlinux 0x79739c3c utf8nagemin -EXPORT_SYMBOL vmlinux 0x797dec1e pci_match_id +EXPORT_SYMBOL vmlinux 0x797931a5 twl6040_set_pll EXPORT_SYMBOL vmlinux 0x7984eefc key_update -EXPORT_SYMBOL vmlinux 0x798874f1 fwnode_mdio_find_device -EXPORT_SYMBOL vmlinux 0x798911c5 sock_wmalloc -EXPORT_SYMBOL vmlinux 0x798fb8fc gro_cells_init +EXPORT_SYMBOL vmlinux 0x79961d5a blk_queue_segment_boundary EXPORT_SYMBOL vmlinux 0x79a33f85 vme_get_size EXPORT_SYMBOL vmlinux 0x79aa04a2 get_random_bytes -EXPORT_SYMBOL vmlinux 0x79b4e656 call_netdevice_notifiers -EXPORT_SYMBOL vmlinux 0x79c1b341 is_acpi_data_node -EXPORT_SYMBOL vmlinux 0x79c9a47e simple_transaction_read -EXPORT_SYMBOL vmlinux 0x79d54395 dquot_set_dqblk +EXPORT_SYMBOL vmlinux 0x79aaffbf devm_iounmap +EXPORT_SYMBOL vmlinux 0x79c7b957 __d_lookup_done +EXPORT_SYMBOL vmlinux 0x79d40c06 blk_mq_rq_cpu EXPORT_SYMBOL vmlinux 0x79df9633 ioremap_encrypted -EXPORT_SYMBOL vmlinux 0x79e21db3 netdev_bonding_info_change EXPORT_SYMBOL vmlinux 0x79ec8f93 blk_start_plug +EXPORT_SYMBOL vmlinux 0x79fda94f vfs_get_fsid EXPORT_SYMBOL vmlinux 0x7a09a064 seg6_hmac_compute +EXPORT_SYMBOL vmlinux 0x7a18be22 phy_request_interrupt +EXPORT_SYMBOL vmlinux 0x7a1bb92f bdi_register EXPORT_SYMBOL vmlinux 0x7a1bcd59 gf128mul_x8_ble -EXPORT_SYMBOL vmlinux 0x7a1f9817 tcp_recvmsg -EXPORT_SYMBOL vmlinux 0x7a24b6cf dcb_ieee_setapp EXPORT_SYMBOL vmlinux 0x7a2af7b4 cpu_number -EXPORT_SYMBOL vmlinux 0x7a389f8e devfreq_add_governor -EXPORT_SYMBOL vmlinux 0x7a47b005 wait_for_key_construction -EXPORT_SYMBOL vmlinux 0x7a4c955f kmem_cache_free_bulk -EXPORT_SYMBOL vmlinux 0x7a53370d max8925_set_bits -EXPORT_SYMBOL vmlinux 0x7a57447a param_get_string -EXPORT_SYMBOL vmlinux 0x7a5777ca unlock_new_inode -EXPORT_SYMBOL vmlinux 0x7a6cba19 tcf_action_update_stats -EXPORT_SYMBOL vmlinux 0x7a814879 pneigh_lookup +EXPORT_SYMBOL vmlinux 0x7a2ed176 __register_binfmt +EXPORT_SYMBOL vmlinux 0x7a36b586 elevator_alloc +EXPORT_SYMBOL vmlinux 0x7a60c400 xfrm_state_update +EXPORT_SYMBOL vmlinux 0x7a6106ce mmc_can_secure_erase_trim +EXPORT_SYMBOL vmlinux 0x7a68ccab param_get_string +EXPORT_SYMBOL vmlinux 0x7a7cc9ef devfreq_remove_governor EXPORT_SYMBOL vmlinux 0x7a88da87 iosf_mbi_write -EXPORT_SYMBOL vmlinux 0x7a8d9716 iommu_get_msi_cookie +EXPORT_SYMBOL vmlinux 0x7a8d7432 __SCK__tp_func_dma_fence_enable_signal EXPORT_SYMBOL vmlinux 0x7a95e5ae do_settimeofday64 +EXPORT_SYMBOL vmlinux 0x7a9fa897 nf_register_net_hooks EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree -EXPORT_SYMBOL vmlinux 0x7aa5043e dma_sync_single_for_cpu +EXPORT_SYMBOL vmlinux 0x7ab0c481 mmc_gpiod_request_ro +EXPORT_SYMBOL vmlinux 0x7ab1f7b5 ethtool_op_get_ts_info EXPORT_SYMBOL vmlinux 0x7ab45d25 dma_fence_array_create EXPORT_SYMBOL vmlinux 0x7ab88a45 system_freezing_cnt EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt EXPORT_SYMBOL vmlinux 0x7adc0fbf rb_replace_node_rcu -EXPORT_SYMBOL vmlinux 0x7ae2511a __check_sticky -EXPORT_SYMBOL vmlinux 0x7aea1968 zerocopy_sg_from_iter -EXPORT_SYMBOL vmlinux 0x7aef1fc8 unregister_mii_timestamper +EXPORT_SYMBOL vmlinux 0x7add58ba call_fib_notifiers +EXPORT_SYMBOL vmlinux 0x7ade52f5 fqdir_init +EXPORT_SYMBOL vmlinux 0x7afa2ff8 gnet_stats_copy_app EXPORT_SYMBOL vmlinux 0x7aff77a3 __cpu_present_mask -EXPORT_SYMBOL vmlinux 0x7b03c03c skb_queue_head +EXPORT_SYMBOL vmlinux 0x7b119e6d tcp_syn_ack_timeout +EXPORT_SYMBOL vmlinux 0x7b23ab24 vfs_rename +EXPORT_SYMBOL vmlinux 0x7b2e9371 tcp_timewait_state_process EXPORT_SYMBOL vmlinux 0x7b37d4a7 _find_first_zero_bit +EXPORT_SYMBOL vmlinux 0x7b4520c9 security_dentry_create_files_as EXPORT_SYMBOL vmlinux 0x7b4da6ff __init_rwsem -EXPORT_SYMBOL vmlinux 0x7b573d47 ppp_unregister_compressor -EXPORT_SYMBOL vmlinux 0x7b5a06b0 _dev_info +EXPORT_SYMBOL vmlinux 0x7b526d3b unlock_new_inode EXPORT_SYMBOL vmlinux 0x7b5b8f31 sha256_update -EXPORT_SYMBOL vmlinux 0x7b6d1fd1 mipi_dsi_dcs_get_display_brightness -EXPORT_SYMBOL vmlinux 0x7b72648d dst_release_immediate -EXPORT_SYMBOL vmlinux 0x7b7c3b7d mipi_dsi_picture_parameter_set -EXPORT_SYMBOL vmlinux 0x7b7c51e6 ndisc_mc_map -EXPORT_SYMBOL vmlinux 0x7b7e3c30 xfrm_input_resume +EXPORT_SYMBOL vmlinux 0x7b5ea52f input_register_handle +EXPORT_SYMBOL vmlinux 0x7b820db7 pnp_unregister_driver EXPORT_SYMBOL vmlinux 0x7b82b9a1 idr_replace -EXPORT_SYMBOL vmlinux 0x7b8a2902 pci_wait_for_pending_transaction -EXPORT_SYMBOL vmlinux 0x7b8ec915 __d_lookup_done -EXPORT_SYMBOL vmlinux 0x7b9f7a29 clear_inode +EXPORT_SYMBOL vmlinux 0x7b88dffc nf_ct_attach EXPORT_SYMBOL vmlinux 0x7bb50b88 acpi_write +EXPORT_SYMBOL vmlinux 0x7bb5adcb dst_release +EXPORT_SYMBOL vmlinux 0x7bb9b6b4 proto_register EXPORT_SYMBOL vmlinux 0x7bbccd05 nr_node_ids -EXPORT_SYMBOL vmlinux 0x7bc12fff udp_lib_getsockopt -EXPORT_SYMBOL vmlinux 0x7bc97d76 fscrypt_fname_disk_to_usr -EXPORT_SYMBOL vmlinux 0x7bd46f47 agp_allocate_memory -EXPORT_SYMBOL vmlinux 0x7be75515 devm_release_resource -EXPORT_SYMBOL vmlinux 0x7bf6995d nosteal_pipe_buf_ops -EXPORT_SYMBOL vmlinux 0x7bfae290 start_tty +EXPORT_SYMBOL vmlinux 0x7bc60aa1 netdev_name_node_alt_destroy +EXPORT_SYMBOL vmlinux 0x7bcae7fb mipi_dsi_generic_write +EXPORT_SYMBOL vmlinux 0x7bd9dede gnet_stats_copy_basic_hw +EXPORT_SYMBOL vmlinux 0x7becbdd1 mipi_dsi_dcs_write EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement +EXPORT_SYMBOL vmlinux 0x7c372a01 pid_task +EXPORT_SYMBOL vmlinux 0x7c3c139e drop_super_exclusive EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get -EXPORT_SYMBOL vmlinux 0x7c816988 dst_init -EXPORT_SYMBOL vmlinux 0x7c8f8f81 component_match_add_typed -EXPORT_SYMBOL vmlinux 0x7c94052a skb_add_rx_frag +EXPORT_SYMBOL vmlinux 0x7c6ffb0d dcb_ieee_delapp +EXPORT_SYMBOL vmlinux 0x7c904c78 scsi_scan_target EXPORT_SYMBOL vmlinux 0x7c9ca58f __sg_page_iter_next -EXPORT_SYMBOL vmlinux 0x7ca41d7c user_revoke EXPORT_SYMBOL vmlinux 0x7cb1aea1 devlink_dpipe_header_ethernet -EXPORT_SYMBOL vmlinux 0x7ccc9146 xfrm_dst_ifdown -EXPORT_SYMBOL vmlinux 0x7cd3d93f vm_map_pages_zero +EXPORT_SYMBOL vmlinux 0x7cc35e25 scsi_vpd_tpg_id +EXPORT_SYMBOL vmlinux 0x7ccecd12 skb_mac_gso_segment +EXPORT_SYMBOL vmlinux 0x7cd5330f page_cache_next_miss EXPORT_SYMBOL vmlinux 0x7cd8d75e page_offset_base +EXPORT_SYMBOL vmlinux 0x7cdbf7d3 inode_update_time +EXPORT_SYMBOL vmlinux 0x7ce0bb74 __cgroup_bpf_run_filter_skb EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid EXPORT_SYMBOL vmlinux 0x7ce58981 kvrealloc -EXPORT_SYMBOL vmlinux 0x7cef7091 md_bitmap_update_sb EXPORT_SYMBOL vmlinux 0x7cf35220 vme_master_free -EXPORT_SYMBOL vmlinux 0x7cfbd18a scsi_host_busy EXPORT_SYMBOL vmlinux 0x7cfe368d net_dim_get_def_tx_moderation +EXPORT_SYMBOL vmlinux 0x7d089b62 vga_con +EXPORT_SYMBOL vmlinux 0x7d08cc9c param_set_byte +EXPORT_SYMBOL vmlinux 0x7d0abfd6 phy_trigger_machine EXPORT_SYMBOL vmlinux 0x7d0ba682 gen_pool_virt_to_phys EXPORT_SYMBOL vmlinux 0x7d0db45c jiffies_to_clock_t EXPORT_SYMBOL vmlinux 0x7d12d76d acpi_get_parent -EXPORT_SYMBOL vmlinux 0x7d132ab0 bio_integrity_alloc -EXPORT_SYMBOL vmlinux 0x7d1c7dea nf_unregister_sockopt -EXPORT_SYMBOL vmlinux 0x7d213bc7 kernel_getsockname -EXPORT_SYMBOL vmlinux 0x7d2449be rproc_detach -EXPORT_SYMBOL vmlinux 0x7d287d2e netdev_master_upper_dev_link -EXPORT_SYMBOL vmlinux 0x7d445f3c scsi_device_lookup_by_target -EXPORT_SYMBOL vmlinux 0x7d47c1a8 xfrm_state_free +EXPORT_SYMBOL vmlinux 0x7d138f31 skb_csum_hwoffload_help +EXPORT_SYMBOL vmlinux 0x7d2681b1 napi_build_skb +EXPORT_SYMBOL vmlinux 0x7d2d930a input_set_timestamp EXPORT_SYMBOL vmlinux 0x7d4b176a netlbl_catmap_setbit -EXPORT_SYMBOL vmlinux 0x7d54c704 param_get_uint -EXPORT_SYMBOL vmlinux 0x7d5b76c3 scsi_host_put EXPORT_SYMBOL vmlinux 0x7d5e1008 __crc32c_le_shift EXPORT_SYMBOL vmlinux 0x7d628444 memcpy_fromio +EXPORT_SYMBOL vmlinux 0x7d725a2e padata_alloc EXPORT_SYMBOL vmlinux 0x7d74d522 kstrtoull_from_user -EXPORT_SYMBOL vmlinux 0x7d861d05 kill_anon_super -EXPORT_SYMBOL vmlinux 0x7da6267e security_skb_classify_flow -EXPORT_SYMBOL vmlinux 0x7da9e247 ip6_dst_alloc +EXPORT_SYMBOL vmlinux 0x7d9ef508 __dev_get_by_flags EXPORT_SYMBOL vmlinux 0x7daece67 quota_send_warning -EXPORT_SYMBOL vmlinux 0x7db2954a __SCK__tp_func_kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0x7db78fea blkdev_compat_ptr_ioctl -EXPORT_SYMBOL vmlinux 0x7dc98b93 security_task_getsecid_subj -EXPORT_SYMBOL vmlinux 0x7dcaece8 unlock_two_nondirectories EXPORT_SYMBOL vmlinux 0x7dcf4135 __xa_insert +EXPORT_SYMBOL vmlinux 0x7dd54595 pci_get_domain_bus_and_slot EXPORT_SYMBOL vmlinux 0x7dd554fc unregister_kmmio_probe +EXPORT_SYMBOL vmlinux 0x7dd82556 inetdev_by_index +EXPORT_SYMBOL vmlinux 0x7ddd3d07 fwnode_phy_find_device EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args EXPORT_SYMBOL vmlinux 0x7df44163 textsearch_find_continuous -EXPORT_SYMBOL vmlinux 0x7dfbc255 param_get_long -EXPORT_SYMBOL vmlinux 0x7e051ca2 sget -EXPORT_SYMBOL vmlinux 0x7e07aecd frontswap_register_ops -EXPORT_SYMBOL vmlinux 0x7e199980 xfrm_policy_hash_rebuild -EXPORT_SYMBOL vmlinux 0x7e2ec227 vga_switcheroo_unregister_client +EXPORT_SYMBOL vmlinux 0x7e22e4d1 __skb_checksum_complete_head EXPORT_SYMBOL vmlinux 0x7e3191f6 try_to_del_timer_sync -EXPORT_SYMBOL vmlinux 0x7e444f93 max8925_bulk_read -EXPORT_SYMBOL vmlinux 0x7e4eb9ad jbd2_complete_transaction -EXPORT_SYMBOL vmlinux 0x7e55547e fb_validate_mode -EXPORT_SYMBOL vmlinux 0x7e560b55 fb_firmware_edid -EXPORT_SYMBOL vmlinux 0x7e5b6dc5 padata_do_serial -EXPORT_SYMBOL vmlinux 0x7e63b81b devm_pci_remap_cfgspace -EXPORT_SYMBOL vmlinux 0x7e749d12 nf_register_net_hooks -EXPORT_SYMBOL vmlinux 0x7e77662f save_fpregs_to_fpstate +EXPORT_SYMBOL vmlinux 0x7e48f54b write_inode_now +EXPORT_SYMBOL vmlinux 0x7e4f8f17 ps2_end_command +EXPORT_SYMBOL vmlinux 0x7e649906 tty_port_block_til_ready EXPORT_SYMBOL vmlinux 0x7e7bcf26 acpi_map_cpu -EXPORT_SYMBOL vmlinux 0x7e85b1fe netdev_err -EXPORT_SYMBOL vmlinux 0x7e980228 kmem_cache_size -EXPORT_SYMBOL vmlinux 0x7e986737 xfrm_state_insert -EXPORT_SYMBOL vmlinux 0x7ec0da9d pnp_stop_dev -EXPORT_SYMBOL vmlinux 0x7ec3e16f tty_driver_flush_buffer -EXPORT_SYMBOL vmlinux 0x7ec56044 pci_irq_vector -EXPORT_SYMBOL vmlinux 0x7ed7f820 phy_start -EXPORT_SYMBOL vmlinux 0x7eed6528 devm_devfreq_remove_device -EXPORT_SYMBOL vmlinux 0x7ef62025 inet_release -EXPORT_SYMBOL vmlinux 0x7efbed55 ip_sock_set_freebind +EXPORT_SYMBOL vmlinux 0x7e7d0214 ipv6_skip_exthdr +EXPORT_SYMBOL vmlinux 0x7e7e9928 security_dentry_init_security +EXPORT_SYMBOL vmlinux 0x7e82e785 mmput_async +EXPORT_SYMBOL vmlinux 0x7ea8cd86 default_qdisc_ops +EXPORT_SYMBOL vmlinux 0x7eb176eb vfs_mkobj +EXPORT_SYMBOL vmlinux 0x7ebca4fe locks_delete_block EXPORT_SYMBOL vmlinux 0x7f02188f __msecs_to_jiffies EXPORT_SYMBOL vmlinux 0x7f03b6a9 crc_ccitt_table EXPORT_SYMBOL vmlinux 0x7f07418b __SCT__tp_func_kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0x7f0881d2 scsi_alloc_sgtables +EXPORT_SYMBOL vmlinux 0x7f09dfd1 genphy_soft_reset EXPORT_SYMBOL vmlinux 0x7f14ac73 config_group_init -EXPORT_SYMBOL vmlinux 0x7f1af13b inet_frags_init EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs -EXPORT_SYMBOL vmlinux 0x7f4979af seq_read_iter +EXPORT_SYMBOL vmlinux 0x7f321fd0 dquot_commit_info +EXPORT_SYMBOL vmlinux 0x7f40f011 md_bitmap_unplug EXPORT_SYMBOL vmlinux 0x7f52071a net_dim EXPORT_SYMBOL vmlinux 0x7f5b4fe4 sg_free_table -EXPORT_SYMBOL vmlinux 0x7f6740c6 backlight_device_get_by_type -EXPORT_SYMBOL vmlinux 0x7f6ea8bd netif_device_attach +EXPORT_SYMBOL vmlinux 0x7f7199f7 udp6_csum_init EXPORT_SYMBOL vmlinux 0x7f7f7bb4 irq_poll_disable -EXPORT_SYMBOL vmlinux 0x7f84f610 neigh_table_init -EXPORT_SYMBOL vmlinux 0x7f96c0a3 blk_post_runtime_resume -EXPORT_SYMBOL vmlinux 0x7fa1e00a tc_setup_cb_add -EXPORT_SYMBOL vmlinux 0x7fabde3d netdev_warn -EXPORT_SYMBOL vmlinux 0x7fceda30 i2c_smbus_read_block_data -EXPORT_SYMBOL vmlinux 0x7fd1208b d_mark_dontcache +EXPORT_SYMBOL vmlinux 0x7f861b2e skb_copy_header +EXPORT_SYMBOL vmlinux 0x7f968487 vga_remove_vgacon +EXPORT_SYMBOL vmlinux 0x7fa66cf6 kill_anon_super +EXPORT_SYMBOL vmlinux 0x7fb63f4b d_make_root +EXPORT_SYMBOL vmlinux 0x7fcd3674 arp_send +EXPORT_SYMBOL vmlinux 0x7fd92268 memory_cgrp_subsys EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node -EXPORT_SYMBOL vmlinux 0x7fe4d437 kthread_bind -EXPORT_SYMBOL vmlinux 0x7ffc0b4a iunique -EXPORT_SYMBOL vmlinux 0x80038685 blkdev_issue_flush -EXPORT_SYMBOL vmlinux 0x800fd0d5 vlan_dev_real_dev -EXPORT_SYMBOL vmlinux 0x80179e75 xsk_clear_tx_need_wakeup -EXPORT_SYMBOL vmlinux 0x801b7878 xp_dma_sync_for_device_slow +EXPORT_SYMBOL vmlinux 0x7fe46041 insert_inode_locked +EXPORT_SYMBOL vmlinux 0x7fea90bc generic_copy_file_range +EXPORT_SYMBOL vmlinux 0x7feccf4f param_ops_ulong +EXPORT_SYMBOL vmlinux 0x7ff8d4f4 mmc_command_done +EXPORT_SYMBOL vmlinux 0x80338a94 poll_initwait EXPORT_SYMBOL vmlinux 0x803ddbb6 __posix_acl_create EXPORT_SYMBOL vmlinux 0x804af87c wrmsr_safe_on_cpu -EXPORT_SYMBOL vmlinux 0x805525f7 sync_inodes_sb -EXPORT_SYMBOL vmlinux 0x805e155a vlan_for_each -EXPORT_SYMBOL vmlinux 0x808e6843 pv_ops +EXPORT_SYMBOL vmlinux 0x80517863 __put_user_ns +EXPORT_SYMBOL vmlinux 0x8055345a skb_checksum +EXPORT_SYMBOL vmlinux 0x806596ea dquot_transfer +EXPORT_SYMBOL vmlinux 0x807a4b24 __devm_request_region +EXPORT_SYMBOL vmlinux 0x8082e6b2 kthread_create_worker_on_cpu EXPORT_SYMBOL vmlinux 0x809712ff hdmi_avi_infoframe_pack -EXPORT_SYMBOL vmlinux 0x809dcdf7 param_get_byte -EXPORT_SYMBOL vmlinux 0x80a6f192 dquot_disable EXPORT_SYMBOL vmlinux 0x80a717a8 __percpu_counter_compare -EXPORT_SYMBOL vmlinux 0x80b6e447 clean_bdev_aliases -EXPORT_SYMBOL vmlinux 0x80c2b502 register_md_personality -EXPORT_SYMBOL vmlinux 0x80c2f057 mipi_dsi_dcs_set_tear_scanline -EXPORT_SYMBOL vmlinux 0x80c4e637 sock_no_listen +EXPORT_SYMBOL vmlinux 0x80ca151b __ethtool_get_link_ksettings EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd +EXPORT_SYMBOL vmlinux 0x80cf93d1 uart_register_driver EXPORT_SYMBOL vmlinux 0x80d68d3e fb_register_client -EXPORT_SYMBOL vmlinux 0x80d6dbc6 jbd2_journal_clear_features -EXPORT_SYMBOL vmlinux 0x80d704a8 __cleancache_invalidate_page -EXPORT_SYMBOL vmlinux 0x80dd7f57 __hw_addr_ref_unsync_dev -EXPORT_SYMBOL vmlinux 0x80de3f36 vfs_mkobj -EXPORT_SYMBOL vmlinux 0x80e1984b elv_rb_add -EXPORT_SYMBOL vmlinux 0x80e360e1 inode_needs_sync -EXPORT_SYMBOL vmlinux 0x80e59c85 dst_destroy -EXPORT_SYMBOL vmlinux 0x80e5e7cc filemap_check_errors +EXPORT_SYMBOL vmlinux 0x80e3c62a wait_on_page_bit_killable EXPORT_SYMBOL vmlinux 0x80e5f86f fscrypt_fname_alloc_buffer -EXPORT_SYMBOL vmlinux 0x80efd4fd rproc_add_carveout -EXPORT_SYMBOL vmlinux 0x80f331ed mmc_free_host -EXPORT_SYMBOL vmlinux 0x80f5caf0 unpin_user_pages_dirty_lock +EXPORT_SYMBOL vmlinux 0x80e7db91 __generic_file_fsync +EXPORT_SYMBOL vmlinux 0x80f22171 agp_alloc_page_array +EXPORT_SYMBOL vmlinux 0x81064a06 xp_dma_sync_for_cpu_slow EXPORT_SYMBOL vmlinux 0x810bef7e sg_free_append_table -EXPORT_SYMBOL vmlinux 0x810c4e43 try_to_release_page EXPORT_SYMBOL vmlinux 0x8112b3d2 scsi_build_sense_buffer EXPORT_SYMBOL vmlinux 0x81188c30 match_string -EXPORT_SYMBOL vmlinux 0x81193a96 neigh_update -EXPORT_SYMBOL vmlinux 0x8138c74a udp_gro_receive -EXPORT_SYMBOL vmlinux 0x813d4e71 rtnl_set_sk_err -EXPORT_SYMBOL vmlinux 0x813d6eea pci_request_regions_exclusive -EXPORT_SYMBOL vmlinux 0x81424872 skb_prepare_seq_read -EXPORT_SYMBOL vmlinux 0x8145e95e d_set_d_op +EXPORT_SYMBOL vmlinux 0x81287efb security_sctp_bind_connect +EXPORT_SYMBOL vmlinux 0x813ea612 __traceiter_spi_transfer_start +EXPORT_SYMBOL vmlinux 0x8142fa3a kfree_skb_list EXPORT_SYMBOL vmlinux 0x81533963 sysfs_format_mac +EXPORT_SYMBOL vmlinux 0x815a3718 dev_trans_start EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal -EXPORT_SYMBOL vmlinux 0x815e76ab rproc_get_by_child EXPORT_SYMBOL vmlinux 0x815f2897 empty_zero_page EXPORT_SYMBOL vmlinux 0x816347c6 agp_device_command -EXPORT_SYMBOL vmlinux 0x816771ab generic_file_readonly_mmap -EXPORT_SYMBOL vmlinux 0x81683f37 netif_set_real_num_tx_queues -EXPORT_SYMBOL vmlinux 0x8168be04 __SCK__tp_func_mmap_lock_released -EXPORT_SYMBOL vmlinux 0x816f255b netdev_info EXPORT_SYMBOL vmlinux 0x818416e1 scsi_set_sense_information -EXPORT_SYMBOL vmlinux 0x8184e323 skb_store_bits -EXPORT_SYMBOL vmlinux 0x81922125 backlight_device_get_by_name -EXPORT_SYMBOL vmlinux 0x8193cd7d pci_get_slot -EXPORT_SYMBOL vmlinux 0x8194749f serio_rescan -EXPORT_SYMBOL vmlinux 0x81a97b9e blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0x81905cf7 _dev_crit +EXPORT_SYMBOL vmlinux 0x81927bed generic_fill_statx_attr EXPORT_SYMBOL vmlinux 0x81ac5e33 trace_print_hex_dump_seq -EXPORT_SYMBOL vmlinux 0x81aea78d __register_chrdev +EXPORT_SYMBOL vmlinux 0x81ac851b scsi_vpd_lun_id +EXPORT_SYMBOL vmlinux 0x81b4888e nd_region_release_lane +EXPORT_SYMBOL vmlinux 0x81b51ed1 tty_port_open +EXPORT_SYMBOL vmlinux 0x81bccdd3 uart_unregister_driver +EXPORT_SYMBOL vmlinux 0x81c4038f phy_modify_paged_changed EXPORT_SYMBOL vmlinux 0x81ce9941 intel_scu_ipc_dev_writev EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset -EXPORT_SYMBOL vmlinux 0x81e26c0b netlink_kernel_release EXPORT_SYMBOL vmlinux 0x81e6b37f dmi_get_system_info -EXPORT_SYMBOL vmlinux 0x81f1efb0 skb_flow_dissect_ct -EXPORT_SYMBOL vmlinux 0x82151e95 vmap +EXPORT_SYMBOL vmlinux 0x82084194 __bio_clone_fast +EXPORT_SYMBOL vmlinux 0x8208809e rawv6_mh_filter_unregister +EXPORT_SYMBOL vmlinux 0x8226e08f should_remove_suid +EXPORT_SYMBOL vmlinux 0x82378986 devm_of_iomap EXPORT_SYMBOL vmlinux 0x823c19ea iosf_mbi_unregister_pmic_bus_access_notifier_unlocked -EXPORT_SYMBOL vmlinux 0x824416e9 truncate_setsize -EXPORT_SYMBOL vmlinux 0x82482d00 nexthop_bucket_set_hw_flags -EXPORT_SYMBOL vmlinux 0x8262d4f5 mmc_calc_max_discard +EXPORT_SYMBOL vmlinux 0x82442884 xfrm6_input_addr +EXPORT_SYMBOL vmlinux 0x82464311 sock_set_sndtimeo EXPORT_SYMBOL vmlinux 0x8263a6d9 proc_douintvec -EXPORT_SYMBOL vmlinux 0x827e5463 nvmem_get_mac_address +EXPORT_SYMBOL vmlinux 0x8268047a con_is_bound EXPORT_SYMBOL vmlinux 0x828062b1 __frontswap_init -EXPORT_SYMBOL vmlinux 0x828a18b7 t10_pi_type1_crc -EXPORT_SYMBOL vmlinux 0x82983a67 md_handle_request +EXPORT_SYMBOL vmlinux 0x82868569 seg6_push_hmac +EXPORT_SYMBOL vmlinux 0x828e9e8f jbd2_submit_inode_data +EXPORT_SYMBOL vmlinux 0x82a5aa17 pskb_trim_rcsum_slow EXPORT_SYMBOL vmlinux 0x82c87ad5 nr_online_nodes -EXPORT_SYMBOL vmlinux 0x82d23bb9 md_check_recovery -EXPORT_SYMBOL vmlinux 0x82d59e7a udp6_seq_ops -EXPORT_SYMBOL vmlinux 0x82fa3a19 nf_ct_get_tuple_skb -EXPORT_SYMBOL vmlinux 0x8301ee96 __SCK__tp_func_read_msr -EXPORT_SYMBOL vmlinux 0x831fd89e tcf_action_check_ctrlact -EXPORT_SYMBOL vmlinux 0x832893fc inc_node_page_state -EXPORT_SYMBOL vmlinux 0x8332c9db cleancache_register_ops +EXPORT_SYMBOL vmlinux 0x82d92ee0 __frontswap_store +EXPORT_SYMBOL vmlinux 0x8327b546 sock_recvmsg +EXPORT_SYMBOL vmlinux 0x8331cffe set_bdi_congested +EXPORT_SYMBOL vmlinux 0x8331da8b iunique +EXPORT_SYMBOL vmlinux 0x83331ded fddi_type_trans +EXPORT_SYMBOL vmlinux 0x8354a10e pci_disable_msix EXPORT_SYMBOL vmlinux 0x83581089 gf128mul_init_4k_lle -EXPORT_SYMBOL vmlinux 0x83676825 to_nd_btt -EXPORT_SYMBOL vmlinux 0x836a6b0c security_sb_clone_mnt_opts -EXPORT_SYMBOL vmlinux 0x8379f220 ip_fraglist_prepare EXPORT_SYMBOL vmlinux 0x837b7b09 __dynamic_pr_debug -EXPORT_SYMBOL vmlinux 0x8381a0d3 md_bitmap_cond_end_sync +EXPORT_SYMBOL vmlinux 0x837d8225 devfreq_add_governor +EXPORT_SYMBOL vmlinux 0x8389e7b6 devm_request_any_context_irq EXPORT_SYMBOL vmlinux 0x838d2bc8 siphash_3u32 -EXPORT_SYMBOL vmlinux 0x839d2073 inet_put_port -EXPORT_SYMBOL vmlinux 0x83c240f8 block_invalidatepage +EXPORT_SYMBOL vmlinux 0x83918c86 mod_node_page_state +EXPORT_SYMBOL vmlinux 0x839b892b dump_page +EXPORT_SYMBOL vmlinux 0x839d1c8c in_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x839e7291 padata_alloc_shell +EXPORT_SYMBOL vmlinux 0x839fcbe6 __devm_release_region +EXPORT_SYMBOL vmlinux 0x83c2ad7b vfs_get_link +EXPORT_SYMBOL vmlinux 0x83c4b297 blk_mq_alloc_request EXPORT_SYMBOL vmlinux 0x83c52fba xfrm4_protocol_init -EXPORT_SYMBOL vmlinux 0x83cbf26f udp_lib_unhash -EXPORT_SYMBOL vmlinux 0x83d479f9 vfs_parse_fs_param_source -EXPORT_SYMBOL vmlinux 0x83e23efc flow_block_cb_decref -EXPORT_SYMBOL vmlinux 0x83fdf635 try_to_writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0x83c5504f i2c_get_adapter +EXPORT_SYMBOL vmlinux 0x83d749bc pci_pme_capable +EXPORT_SYMBOL vmlinux 0x83dee01a devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0x83e6ac87 misc_deregister EXPORT_SYMBOL vmlinux 0x840342c6 sgl_free EXPORT_SYMBOL vmlinux 0x8427cc7b _raw_spin_lock_irq -EXPORT_SYMBOL vmlinux 0x842c3dbf generic_copy_file_range EXPORT_SYMBOL vmlinux 0x842c8e9d ioread16 -EXPORT_SYMBOL vmlinux 0x843fb5c3 vmf_insert_mixed_prot -EXPORT_SYMBOL vmlinux 0x84423b60 qdisc_watchdog_schedule_range_ns -EXPORT_SYMBOL vmlinux 0x844b8375 nd_device_notify +EXPORT_SYMBOL vmlinux 0x842cdab3 jbd2_journal_invalidatepage +EXPORT_SYMBOL vmlinux 0x8437c8a1 ppp_unregister_compressor EXPORT_SYMBOL vmlinux 0x8455e3a7 dma_fence_signal_timestamp_locked -EXPORT_SYMBOL vmlinux 0x84659d2f bmap -EXPORT_SYMBOL vmlinux 0x846e6f5a device_get_mac_address -EXPORT_SYMBOL vmlinux 0x846e841f d_find_any_alias -EXPORT_SYMBOL vmlinux 0x84716f2f dquot_get_dqblk -EXPORT_SYMBOL vmlinux 0x8471cc4e __starget_for_each_device -EXPORT_SYMBOL vmlinux 0x84753f2a __inet6_lookup_established +EXPORT_SYMBOL vmlinux 0x84565389 inet_pton_with_scope +EXPORT_SYMBOL vmlinux 0x847f5b72 i2c_smbus_write_i2c_block_data EXPORT_SYMBOL vmlinux 0x84823cf3 nla_strscpy EXPORT_SYMBOL vmlinux 0x848d372e iowrite8 -EXPORT_SYMBOL vmlinux 0x848ec261 blk_sync_queue -EXPORT_SYMBOL vmlinux 0x8490009d bio_uninit -EXPORT_SYMBOL vmlinux 0x8498c0ec mmc_set_blocklen -EXPORT_SYMBOL vmlinux 0x849b6a24 mmc_add_host -EXPORT_SYMBOL vmlinux 0x84a2e2c5 vfs_dedupe_file_range_one -EXPORT_SYMBOL vmlinux 0x84a5ae56 __vlan_find_dev_deep_rcu -EXPORT_SYMBOL vmlinux 0x84a8eefc fuse_dequeue_forget -EXPORT_SYMBOL vmlinux 0x84b47d85 peernet2id +EXPORT_SYMBOL vmlinux 0x8494d3b7 mark_buffer_async_write +EXPORT_SYMBOL vmlinux 0x84b74d98 md_bitmap_endwrite EXPORT_SYMBOL vmlinux 0x84c03e9a rtnl_nla_parse_ifla EXPORT_SYMBOL vmlinux 0x84c1c552 proc_dointvec_ms_jiffies EXPORT_SYMBOL vmlinux 0x84c4040c security_binder_set_context_mgr -EXPORT_SYMBOL vmlinux 0x84fed18a devm_pci_alloc_host_bridge -EXPORT_SYMBOL vmlinux 0x8500fc16 xfrm6_rcv_spi +EXPORT_SYMBOL vmlinux 0x84f272fe call_netdevice_notifiers +EXPORT_SYMBOL vmlinux 0x850215be inode_get_bytes +EXPORT_SYMBOL vmlinux 0x8512a23a is_subdir EXPORT_SYMBOL vmlinux 0x8518a4a6 _raw_spin_trylock_bh -EXPORT_SYMBOL vmlinux 0x8519e8d7 devm_register_reboot_notifier EXPORT_SYMBOL vmlinux 0x8522d6bc strncpy_from_user -EXPORT_SYMBOL vmlinux 0x853b8e3b tcp_sendmsg -EXPORT_SYMBOL vmlinux 0x85486876 unlock_rename -EXPORT_SYMBOL vmlinux 0x85532264 md_write_end -EXPORT_SYMBOL vmlinux 0x856629d4 fb_show_logo +EXPORT_SYMBOL vmlinux 0x853b2ed4 cpufreq_generic_suspend +EXPORT_SYMBOL vmlinux 0x853d0849 mfd_remove_devices_late +EXPORT_SYMBOL vmlinux 0x85579874 rproc_boot +EXPORT_SYMBOL vmlinux 0x855f4aab devm_clk_get EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked -EXPORT_SYMBOL vmlinux 0x858720b4 simple_statfs +EXPORT_SYMBOL vmlinux 0x856ceb9a pci_read_config_byte +EXPORT_SYMBOL vmlinux 0x8573f7b6 sg_miter_next +EXPORT_SYMBOL vmlinux 0x85770058 __remove_inode_hash +EXPORT_SYMBOL vmlinux 0x858303a8 nd_region_to_nstype EXPORT_SYMBOL vmlinux 0x8591d7d5 ledtrig_mtd_activity -EXPORT_SYMBOL vmlinux 0x859504f0 dma_supported -EXPORT_SYMBOL vmlinux 0x85a23259 __tracepoint_kmalloc_node +EXPORT_SYMBOL vmlinux 0x85a7a1e3 xfrm_register_type EXPORT_SYMBOL vmlinux 0x85b4cf2f utf8nlen -EXPORT_SYMBOL vmlinux 0x85b4e1d0 devm_get_clk_from_child EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states +EXPORT_SYMBOL vmlinux 0x85b967b2 ipv6_push_frag_opts EXPORT_SYMBOL vmlinux 0x85bd1608 __request_region -EXPORT_SYMBOL vmlinux 0x85dea92b flow_block_cb_alloc +EXPORT_SYMBOL vmlinux 0x85c2068b tcf_exts_terse_dump +EXPORT_SYMBOL vmlinux 0x85c79204 __skb_checksum_complete +EXPORT_SYMBOL vmlinux 0x85cdd940 page_pool_update_nid EXPORT_SYMBOL vmlinux 0x85df9b6c strsep -EXPORT_SYMBOL vmlinux 0x85eef856 dcbnl_ieee_notify +EXPORT_SYMBOL vmlinux 0x85e7d1ca scmd_printk EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn EXPORT_SYMBOL vmlinux 0x85fbc931 slhc_uncompress -EXPORT_SYMBOL vmlinux 0x86043eec pcie_port_service_unregister -EXPORT_SYMBOL vmlinux 0x86057d85 fs_bio_set -EXPORT_SYMBOL vmlinux 0x8606ca87 vfs_clone_file_range -EXPORT_SYMBOL vmlinux 0x860b44a6 pnp_release_card_device -EXPORT_SYMBOL vmlinux 0x86139556 i2c_smbus_write_byte -EXPORT_SYMBOL vmlinux 0x861677d6 migrate_page_move_mapping +EXPORT_SYMBOL vmlinux 0x85fff579 block_invalidatepage EXPORT_SYMBOL vmlinux 0x863a276a color_table -EXPORT_SYMBOL vmlinux 0x863db293 udp_lib_get_port -EXPORT_SYMBOL vmlinux 0x864fecfd xfrm_unregister_type -EXPORT_SYMBOL vmlinux 0x8672cace cfb_copyarea +EXPORT_SYMBOL vmlinux 0x864ebb0f noop_fsync +EXPORT_SYMBOL vmlinux 0x86528d6c get_fs_type +EXPORT_SYMBOL vmlinux 0x8656812f i2c_transfer_buffer_flags +EXPORT_SYMBOL vmlinux 0x865e06d9 inet_frag_find +EXPORT_SYMBOL vmlinux 0x8667db27 __fs_parse +EXPORT_SYMBOL vmlinux 0x867ba9db neigh_changeaddr +EXPORT_SYMBOL vmlinux 0x86852bbb i2c_smbus_write_byte_data EXPORT_SYMBOL vmlinux 0x868acba5 get_options -EXPORT_SYMBOL vmlinux 0x868ec06b __remove_inode_hash -EXPORT_SYMBOL vmlinux 0x86ab5f15 vme_register_bridge -EXPORT_SYMBOL vmlinux 0x86b385cf amd_iommu_domain_clear_gcr3 -EXPORT_SYMBOL vmlinux 0x86c40711 phy_suspend +EXPORT_SYMBOL vmlinux 0x869798be kernel_sendpage_locked +EXPORT_SYMBOL vmlinux 0x86a08dcc keyring_clear EXPORT_SYMBOL vmlinux 0x86c7272b iosf_mbi_read -EXPORT_SYMBOL vmlinux 0x86d35933 agp_generic_alloc_by_type EXPORT_SYMBOL vmlinux 0x86d52ba5 lookup_constant +EXPORT_SYMBOL vmlinux 0x86d77516 blk_mq_start_stopped_hw_queues +EXPORT_SYMBOL vmlinux 0x86df3264 devfreq_update_interval +EXPORT_SYMBOL vmlinux 0x86e994ff d_rehash EXPORT_SYMBOL vmlinux 0x86f27420 iosf_mbi_block_punit_i2c_access +EXPORT_SYMBOL vmlinux 0x86f5f722 softnet_data EXPORT_SYMBOL vmlinux 0x86fb4536 cpumask_any_and_distribute EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user +EXPORT_SYMBOL vmlinux 0x86ff2a04 kill_fasync +EXPORT_SYMBOL vmlinux 0x8707a745 pci_bus_type +EXPORT_SYMBOL vmlinux 0x87129019 __tty_insert_flip_char EXPORT_SYMBOL vmlinux 0x8714563b csum_and_copy_from_user -EXPORT_SYMBOL vmlinux 0x8756978d __pci_register_driver +EXPORT_SYMBOL vmlinux 0x87163bba __blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0x87220e61 kernel_write +EXPORT_SYMBOL vmlinux 0x8746f308 acpi_match_device_ids +EXPORT_SYMBOL vmlinux 0x87533036 jbd2_log_wait_commit EXPORT_SYMBOL vmlinux 0x8761c87b rps_needed EXPORT_SYMBOL vmlinux 0x87706d4e __put_user_nocheck_8 EXPORT_SYMBOL vmlinux 0x87761528 __traceiter_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x877851fe generic_perform_write +EXPORT_SYMBOL vmlinux 0x877c8cb0 __page_symlink +EXPORT_SYMBOL vmlinux 0x8783a246 __skb_pad EXPORT_SYMBOL vmlinux 0x878469bd ZSTD_decompressStream +EXPORT_SYMBOL vmlinux 0x8786e625 param_set_bool +EXPORT_SYMBOL vmlinux 0x8791b4e4 netif_stacked_transfer_operstate +EXPORT_SYMBOL vmlinux 0x87a01403 phy_driver_unregister EXPORT_SYMBOL vmlinux 0x87a21cb3 __ubsan_handle_out_of_bounds +EXPORT_SYMBOL vmlinux 0x87aba42b xp_dma_sync_for_device_slow +EXPORT_SYMBOL vmlinux 0x87ae4911 copy_page_to_iter EXPORT_SYMBOL vmlinux 0x87b8798d sg_next -EXPORT_SYMBOL vmlinux 0x87baeac7 __sk_dst_check -EXPORT_SYMBOL vmlinux 0x87d8f30c nf_getsockopt -EXPORT_SYMBOL vmlinux 0x87f87d38 ps2_sendbyte -EXPORT_SYMBOL vmlinux 0x88067c4c filemap_fault -EXPORT_SYMBOL vmlinux 0x880aa477 netdev_adjacent_change_prepare +EXPORT_SYMBOL vmlinux 0x87c64920 __tracepoint_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x87d772aa generic_key_instantiate +EXPORT_SYMBOL vmlinux 0x87dac93c genphy_read_abilities +EXPORT_SYMBOL vmlinux 0x87e8d13d locks_free_lock +EXPORT_SYMBOL vmlinux 0x87edc036 mr_mfc_find_any +EXPORT_SYMBOL vmlinux 0x87f5475c blkdev_put +EXPORT_SYMBOL vmlinux 0x880b5202 sock_bindtoindex EXPORT_SYMBOL vmlinux 0x8810754a _find_first_bit -EXPORT_SYMBOL vmlinux 0x881668d5 bio_integrity_trim +EXPORT_SYMBOL vmlinux 0x88159459 pci_bus_read_dev_vendor_id EXPORT_SYMBOL vmlinux 0x881c4413 gen_pool_first_fit -EXPORT_SYMBOL vmlinux 0x882b02ce devm_of_iomap -EXPORT_SYMBOL vmlinux 0x8847ba4f dev_add_offload -EXPORT_SYMBOL vmlinux 0x8867dfb1 request_firmware_nowait -EXPORT_SYMBOL vmlinux 0x887e3114 pci_release_resource +EXPORT_SYMBOL vmlinux 0x8836e4e6 __blk_alloc_disk +EXPORT_SYMBOL vmlinux 0x8846fb1d unlock_page +EXPORT_SYMBOL vmlinux 0x8848a688 vme_master_request +EXPORT_SYMBOL vmlinux 0x884d305c dma_map_resource +EXPORT_SYMBOL vmlinux 0x884d8802 register_fib_notifier +EXPORT_SYMBOL vmlinux 0x884f2560 tcp_splice_read +EXPORT_SYMBOL vmlinux 0x8855e649 ipmi_platform_add +EXPORT_SYMBOL vmlinux 0x886a0c23 tag_pages_for_writeback +EXPORT_SYMBOL vmlinux 0x88734b7c pci_bus_alloc_resource EXPORT_SYMBOL vmlinux 0x88822d38 unregister_blocking_lsm_notifier +EXPORT_SYMBOL vmlinux 0x88860f56 skb_vlan_push EXPORT_SYMBOL vmlinux 0x8888f1fe xxh32 -EXPORT_SYMBOL vmlinux 0x888ccb50 ilookup EXPORT_SYMBOL vmlinux 0x889b1370 _raw_read_trylock -EXPORT_SYMBOL vmlinux 0x889ee1e3 generic_permission +EXPORT_SYMBOL vmlinux 0x88a723a8 sk_wait_data EXPORT_SYMBOL vmlinux 0x88abb78b ZSTD_insertBlock -EXPORT_SYMBOL vmlinux 0x88b103a2 mdio_driver_unregister -EXPORT_SYMBOL vmlinux 0x88c07e7d flow_rule_match_enc_ip -EXPORT_SYMBOL vmlinux 0x88ccb533 neigh_carrier_down -EXPORT_SYMBOL vmlinux 0x88ce4233 skb_page_frag_refill +EXPORT_SYMBOL vmlinux 0x88ae73fc simple_link +EXPORT_SYMBOL vmlinux 0x88c8cd8a vma_set_file +EXPORT_SYMBOL vmlinux 0x88cb0112 iov_iter_gap_alignment +EXPORT_SYMBOL vmlinux 0x88d622f0 kthread_bind +EXPORT_SYMBOL vmlinux 0x88d8b4ae send_sig_mceerr EXPORT_SYMBOL vmlinux 0x88db9f48 __check_object_size -EXPORT_SYMBOL vmlinux 0x88dc6bf2 bdev_check_media_change -EXPORT_SYMBOL vmlinux 0x88dec159 inet6_del_protocol EXPORT_SYMBOL vmlinux 0x88e1d0f0 page_frag_free -EXPORT_SYMBOL vmlinux 0x89231493 simple_dentry_operations -EXPORT_SYMBOL vmlinux 0x8932c5f6 vfio_unregister_notifier +EXPORT_SYMBOL vmlinux 0x88e6934e generic_remap_file_range_prep +EXPORT_SYMBOL vmlinux 0x88f10538 tcp_sendmsg +EXPORT_SYMBOL vmlinux 0x8903e82f __hw_addr_sync_dev +EXPORT_SYMBOL vmlinux 0x894342e2 netdev_class_remove_file_ns EXPORT_SYMBOL vmlinux 0x89434b4b radix_tree_tag_clear -EXPORT_SYMBOL vmlinux 0x8945bbcc ip_sock_set_pktinfo -EXPORT_SYMBOL vmlinux 0x8950c946 tcp_seq_stop -EXPORT_SYMBOL vmlinux 0x8965da2a dev_mc_unsync -EXPORT_SYMBOL vmlinux 0x8968b8e5 unregister_fib_notifier -EXPORT_SYMBOL vmlinux 0x896ebe58 tty_port_free_xmit_buf -EXPORT_SYMBOL vmlinux 0x89750fdd read_cache_page -EXPORT_SYMBOL vmlinux 0x8982b353 flow_rule_match_ipv4_addrs -EXPORT_SYMBOL vmlinux 0x898d1e17 skb_seq_read -EXPORT_SYMBOL vmlinux 0x8991873e dev_get_port_parent_id +EXPORT_SYMBOL vmlinux 0x8949d33d jbd2_journal_unlock_updates +EXPORT_SYMBOL vmlinux 0x89747f35 netdev_err +EXPORT_SYMBOL vmlinux 0x897d8c28 tty_unlock +EXPORT_SYMBOL vmlinux 0x898a9bb3 i2c_clients_command EXPORT_SYMBOL vmlinux 0x89940875 mutex_lock_interruptible -EXPORT_SYMBOL vmlinux 0x899d3825 skb_vlan_pop -EXPORT_SYMBOL vmlinux 0x89b07f03 tcf_em_unregister -EXPORT_SYMBOL vmlinux 0x89cf3814 mmc_gpiod_request_cd +EXPORT_SYMBOL vmlinux 0x89aad104 fput +EXPORT_SYMBOL vmlinux 0x89c094de tcp_select_initial_window EXPORT_SYMBOL vmlinux 0x89d93ef7 __nla_reserve_64bit -EXPORT_SYMBOL vmlinux 0x8a0089ec update_region -EXPORT_SYMBOL vmlinux 0x8a0376d6 mdio_device_reset -EXPORT_SYMBOL vmlinux 0x8a04dbe0 set_cached_acl -EXPORT_SYMBOL vmlinux 0x8a0db3f5 seg6_hmac_net_exit -EXPORT_SYMBOL vmlinux 0x8a1d7443 tcp_seq_start -EXPORT_SYMBOL vmlinux 0x8a220428 security_task_getsecid_obj -EXPORT_SYMBOL vmlinux 0x8a3515dc input_mt_init_slots +EXPORT_SYMBOL vmlinux 0x89f63291 pmem_should_map_pages +EXPORT_SYMBOL vmlinux 0x89fa03bf __tcp_md5_do_lookup +EXPORT_SYMBOL vmlinux 0x8a01838a nd_integrity_init +EXPORT_SYMBOL vmlinux 0x8a0d988e pcix_get_mmrbc +EXPORT_SYMBOL vmlinux 0x8a0ed02e sg_alloc_append_table_from_pages +EXPORT_SYMBOL vmlinux 0x8a1cb78e pci_read_config_word EXPORT_SYMBOL vmlinux 0x8a35b432 sme_me_mask -EXPORT_SYMBOL vmlinux 0x8a443f4f tty_register_device EXPORT_SYMBOL vmlinux 0x8a47043d LZ4_decompress_safe_continue EXPORT_SYMBOL vmlinux 0x8a490c90 rfkill_set_sw_state -EXPORT_SYMBOL vmlinux 0x8a495e8f truncate_inode_pages_range -EXPORT_SYMBOL vmlinux 0x8a652ef2 fscrypt_zeroout_range +EXPORT_SYMBOL vmlinux 0x8a6abc60 xfrm_sad_getinfo EXPORT_SYMBOL vmlinux 0x8a6c7139 acpi_mask_gpe EXPORT_SYMBOL vmlinux 0x8a7094ba vm_brk_flags +EXPORT_SYMBOL vmlinux 0x8a7be95d dma_alloc_attrs EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory -EXPORT_SYMBOL vmlinux 0x8a947751 pci_write_config_word +EXPORT_SYMBOL vmlinux 0x8a8727e7 tcf_exts_destroy +EXPORT_SYMBOL vmlinux 0x8a9476a2 __hw_addr_ref_sync_dev EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab -EXPORT_SYMBOL vmlinux 0x8ab0c987 generic_file_llseek_size -EXPORT_SYMBOL vmlinux 0x8ab67902 buffer_check_dirty_writeback +EXPORT_SYMBOL vmlinux 0x8aa27112 udp_seq_start +EXPORT_SYMBOL vmlinux 0x8aa31d69 vfs_llseek EXPORT_SYMBOL vmlinux 0x8ac3334b net_dim_get_def_rx_moderation -EXPORT_SYMBOL vmlinux 0x8ac3ec45 is_bad_inode EXPORT_SYMBOL vmlinux 0x8ac743de sg_copy_buffer -EXPORT_SYMBOL vmlinux 0x8ac7c0ae no_llseek +EXPORT_SYMBOL vmlinux 0x8ae125a4 pci_back_from_sleep +EXPORT_SYMBOL vmlinux 0x8ae3359f skb_unlink +EXPORT_SYMBOL vmlinux 0x8ae58ee3 cdev_device_del EXPORT_SYMBOL vmlinux 0x8b0088d1 LZ4_decompress_safe_usingDict -EXPORT_SYMBOL vmlinux 0x8b019e49 blk_pm_runtime_init -EXPORT_SYMBOL vmlinux 0x8b29d74e pnp_device_detach -EXPORT_SYMBOL vmlinux 0x8b37fc28 mark_buffer_dirty -EXPORT_SYMBOL vmlinux 0x8b3a2e48 __dev_kfree_skb_any -EXPORT_SYMBOL vmlinux 0x8b401610 agp_copy_info -EXPORT_SYMBOL vmlinux 0x8b41acb7 from_kprojid_munged -EXPORT_SYMBOL vmlinux 0x8b474cb2 netlink_ns_capable -EXPORT_SYMBOL vmlinux 0x8b5c249f jbd2_submit_inode_data +EXPORT_SYMBOL vmlinux 0x8b051d1a dma_async_device_unregister +EXPORT_SYMBOL vmlinux 0x8b393a2f dquot_destroy +EXPORT_SYMBOL vmlinux 0x8b457d2f xfrm6_rcv_encap EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid -EXPORT_SYMBOL vmlinux 0x8b6b8495 twl6040_get_sysclk -EXPORT_SYMBOL vmlinux 0x8b7e5b35 da903x_query_status +EXPORT_SYMBOL vmlinux 0x8b7696de release_pages EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p +EXPORT_SYMBOL vmlinux 0x8b81a3f9 __tracepoint_spi_transfer_start +EXPORT_SYMBOL vmlinux 0x8b89e0e4 __SCK__tp_func_mmap_lock_start_locking EXPORT_SYMBOL vmlinux 0x8b910be2 errseq_sample -EXPORT_SYMBOL vmlinux 0x8b93a13b _copy_from_iter_nocache EXPORT_SYMBOL vmlinux 0x8b966b63 sn_rtc_cycles_per_second -EXPORT_SYMBOL vmlinux 0x8b97d240 ethtool_op_get_link EXPORT_SYMBOL vmlinux 0x8b989cf9 acpi_bus_can_wakeup EXPORT_SYMBOL vmlinux 0x8b9ea582 ZSTD_copyDCtx -EXPORT_SYMBOL vmlinux 0x8bbe23b7 cros_ec_get_next_event -EXPORT_SYMBOL vmlinux 0x8bcc4b8a blk_mq_unique_tag -EXPORT_SYMBOL vmlinux 0x8bd23843 blk_execute_rq +EXPORT_SYMBOL vmlinux 0x8ba09f3b pci_request_regions_exclusive +EXPORT_SYMBOL vmlinux 0x8bab469b backlight_force_update +EXPORT_SYMBOL vmlinux 0x8bc51e11 readahead_expand +EXPORT_SYMBOL vmlinux 0x8bca450f __napi_schedule EXPORT_SYMBOL vmlinux 0x8bd577d0 acpi_ut_exit -EXPORT_SYMBOL vmlinux 0x8bf94fa6 path_get -EXPORT_SYMBOL vmlinux 0x8bff1500 netdev_adjacent_change_commit -EXPORT_SYMBOL vmlinux 0x8c238879 fscrypt_decrypt_pagecache_blocks +EXPORT_SYMBOL vmlinux 0x8bd65ff4 kmem_cache_alloc_trace +EXPORT_SYMBOL vmlinux 0x8befb204 bio_advance +EXPORT_SYMBOL vmlinux 0x8bf0810a ndo_dflt_fdb_dump +EXPORT_SYMBOL vmlinux 0x8c0e2c66 dcb_ieee_setapp +EXPORT_SYMBOL vmlinux 0x8c17783d scsi_block_requests EXPORT_SYMBOL vmlinux 0x8c26d495 prepare_to_wait_event -EXPORT_SYMBOL vmlinux 0x8c320c4b vlan_dev_vlan_proto -EXPORT_SYMBOL vmlinux 0x8c468d21 scsi_device_put -EXPORT_SYMBOL vmlinux 0x8c50e7b0 sock_set_sndtimeo -EXPORT_SYMBOL vmlinux 0x8c5e39df show_init_ipc_ns -EXPORT_SYMBOL vmlinux 0x8c5f2810 tcp_connect +EXPORT_SYMBOL vmlinux 0x8c33765f regset_get_alloc +EXPORT_SYMBOL vmlinux 0x8c36fea9 xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0x8c3708b0 vlan_filter_drop_vids +EXPORT_SYMBOL vmlinux 0x8c46d919 netlink_kernel_release +EXPORT_SYMBOL vmlinux 0x8c5421c2 __genphy_config_aneg EXPORT_SYMBOL vmlinux 0x8c683fcd posix_acl_to_xattr +EXPORT_SYMBOL vmlinux 0x8c7c9b9a netif_carrier_off EXPORT_SYMBOL vmlinux 0x8c8569cb kstrtoint -EXPORT_SYMBOL vmlinux 0x8c9ab21c wait_on_page_bit EXPORT_SYMBOL vmlinux 0x8c9e338f acpi_bios_error EXPORT_SYMBOL vmlinux 0x8caf9305 uuid_is_valid +EXPORT_SYMBOL vmlinux 0x8cbef044 scsi_host_put +EXPORT_SYMBOL vmlinux 0x8cc35cdd __cleancache_invalidate_page EXPORT_SYMBOL vmlinux 0x8cc79cab iowrite16_rep -EXPORT_SYMBOL vmlinux 0x8ccfa891 sk_common_release -EXPORT_SYMBOL vmlinux 0x8cd5f922 pci_get_class +EXPORT_SYMBOL vmlinux 0x8cd519a5 get_user_pages_unlocked EXPORT_SYMBOL vmlinux 0x8cda8029 xen_clear_irq_pending -EXPORT_SYMBOL vmlinux 0x8ce0828e tty_port_put -EXPORT_SYMBOL vmlinux 0x8cee331c page_readlink -EXPORT_SYMBOL vmlinux 0x8cf6733f vfs_dedupe_file_range -EXPORT_SYMBOL vmlinux 0x8cf8cff5 page_get_link -EXPORT_SYMBOL vmlinux 0x8cff1258 skb_flow_get_icmp_tci -EXPORT_SYMBOL vmlinux 0x8d2be0a4 vfs_statfs -EXPORT_SYMBOL vmlinux 0x8d31301a pcie_capability_read_word -EXPORT_SYMBOL vmlinux 0x8d3edc36 __SCK__tp_func_mmap_lock_start_locking -EXPORT_SYMBOL vmlinux 0x8d408612 ndo_dflt_fdb_add +EXPORT_SYMBOL vmlinux 0x8ce330d9 jbd2_journal_restart +EXPORT_SYMBOL vmlinux 0x8cea1b7b key_revoke +EXPORT_SYMBOL vmlinux 0x8cea5037 km_policy_notify +EXPORT_SYMBOL vmlinux 0x8d0f933d keyring_search +EXPORT_SYMBOL vmlinux 0x8d11dd43 cookie_timestamp_decode +EXPORT_SYMBOL vmlinux 0x8d19ad3a pci_enable_atomic_ops_to_root +EXPORT_SYMBOL vmlinux 0x8d1fb92b inet6_add_protocol +EXPORT_SYMBOL vmlinux 0x8d28f740 posix_acl_chmod +EXPORT_SYMBOL vmlinux 0x8d388e11 inet6_protos +EXPORT_SYMBOL vmlinux 0x8d44c6b6 iommu_get_msi_cookie +EXPORT_SYMBOL vmlinux 0x8d47481e blk_queue_max_write_same_sectors +EXPORT_SYMBOL vmlinux 0x8d4c6c5d iommu_dma_get_resv_regions EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq +EXPORT_SYMBOL vmlinux 0x8d5be4bf netdev_has_any_upper_dev EXPORT_SYMBOL vmlinux 0x8d60652c __SCT__tp_func_mmap_lock_released +EXPORT_SYMBOL vmlinux 0x8d609ee9 param_get_int EXPORT_SYMBOL vmlinux 0x8d6aff89 __put_user_nocheck_4 +EXPORT_SYMBOL vmlinux 0x8d6c56e8 update_region +EXPORT_SYMBOL vmlinux 0x8d71f3b8 __udp_disconnect EXPORT_SYMBOL vmlinux 0x8d73278e hex_asc_upper -EXPORT_SYMBOL vmlinux 0x8d80313b __block_write_full_page -EXPORT_SYMBOL vmlinux 0x8d838e55 path_put +EXPORT_SYMBOL vmlinux 0x8d81512d sock_no_accept +EXPORT_SYMBOL vmlinux 0x8d885f26 netpoll_cleanup +EXPORT_SYMBOL vmlinux 0x8d914699 ndisc_mc_map +EXPORT_SYMBOL vmlinux 0x8d967b4a forget_cached_acl +EXPORT_SYMBOL vmlinux 0x8d96f88e dquot_writeback_dquots EXPORT_SYMBOL vmlinux 0x8d9ca0e6 dma_fence_enable_sw_signaling +EXPORT_SYMBOL vmlinux 0x8da8270e blk_queue_max_write_zeroes_sectors +EXPORT_SYMBOL vmlinux 0x8dad53be __sk_dst_check EXPORT_SYMBOL vmlinux 0x8db22efe acpi_setup_gpe_for_wake -EXPORT_SYMBOL vmlinux 0x8dc5c7f7 scsi_remove_target +EXPORT_SYMBOL vmlinux 0x8db72f65 from_kgid +EXPORT_SYMBOL vmlinux 0x8dcad30b free_xenballooned_pages +EXPORT_SYMBOL vmlinux 0x8dd4ae1f inet_csk_reqsk_queue_drop EXPORT_SYMBOL vmlinux 0x8ddd8aad schedule_timeout +EXPORT_SYMBOL vmlinux 0x8de8023a vm_insert_page +EXPORT_SYMBOL vmlinux 0x8de95cd5 security_path_unlink EXPORT_SYMBOL vmlinux 0x8dee722d _raw_read_lock_bh EXPORT_SYMBOL vmlinux 0x8df92f66 memchr_inv EXPORT_SYMBOL vmlinux 0x8df9dd10 guid_null -EXPORT_SYMBOL vmlinux 0x8e0c5026 jbd2_journal_wipe +EXPORT_SYMBOL vmlinux 0x8dfa6ec7 pci_wait_for_pending_transaction +EXPORT_SYMBOL vmlinux 0x8e0a436d mipi_dsi_dcs_nop +EXPORT_SYMBOL vmlinux 0x8e0bbbc0 netdev_sk_get_lowest_dev EXPORT_SYMBOL vmlinux 0x8e17b3ae idr_destroy -EXPORT_SYMBOL vmlinux 0x8e201701 genphy_c37_config_aneg EXPORT_SYMBOL vmlinux 0x8e21c9a1 dma_fence_add_callback -EXPORT_SYMBOL vmlinux 0x8e2d1236 ex_handler_wrmsr_unsafe -EXPORT_SYMBOL vmlinux 0x8e385d3f jbd2_journal_stop -EXPORT_SYMBOL vmlinux 0x8e492d22 mipi_dsi_turn_on_peripheral +EXPORT_SYMBOL vmlinux 0x8e3456fe serio_bus +EXPORT_SYMBOL vmlinux 0x8e3e0f7d fault_in_readable +EXPORT_SYMBOL vmlinux 0x8e4fdf87 pipe_unlock +EXPORT_SYMBOL vmlinux 0x8e6052c0 dev_change_carrier +EXPORT_SYMBOL vmlinux 0x8e615c31 simple_rename EXPORT_SYMBOL vmlinux 0x8e663d0f zalloc_cpumask_var_node -EXPORT_SYMBOL vmlinux 0x8e677803 dev_get_phys_port_id +EXPORT_SYMBOL vmlinux 0x8e6c65ec nf_log_register +EXPORT_SYMBOL vmlinux 0x8e77e2f1 security_task_getsecid_obj +EXPORT_SYMBOL vmlinux 0x8e84a1ce max8998_read_reg EXPORT_SYMBOL vmlinux 0x8e93bd24 security_secctx_to_secid EXPORT_SYMBOL vmlinux 0x8eaf2a5f vga_switcheroo_unregister_handler -EXPORT_SYMBOL vmlinux 0x8eecd44a ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0x8ec3c272 fb_validate_mode +EXPORT_SYMBOL vmlinux 0x8ed8219a __SCK__tp_func_rdpmc +EXPORT_SYMBOL vmlinux 0x8ee4c865 remap_vmalloc_range +EXPORT_SYMBOL vmlinux 0x8ef30271 inet_addr_type_dev_table EXPORT_SYMBOL vmlinux 0x8f01afd6 twl6030_interrupt_mask -EXPORT_SYMBOL vmlinux 0x8f176efe xfrm_policy_flush -EXPORT_SYMBOL vmlinux 0x8f1879f4 vlan_filter_drop_vids -EXPORT_SYMBOL vmlinux 0x8f1dee96 registered_fb -EXPORT_SYMBOL vmlinux 0x8f1ee7ba vfs_setpos +EXPORT_SYMBOL vmlinux 0x8f1d5218 dev_get_flags +EXPORT_SYMBOL vmlinux 0x8f1ecaf0 generic_fadvise +EXPORT_SYMBOL vmlinux 0x8f1f26fe ptp_clock_register +EXPORT_SYMBOL vmlinux 0x8f23f225 skb_trim EXPORT_SYMBOL vmlinux 0x8f2703b7 wbinvd_on_all_cpus -EXPORT_SYMBOL vmlinux 0x8f2b5ecd mmc_gpio_get_cd -EXPORT_SYMBOL vmlinux 0x8f2bae0e vfs_iocb_iter_read -EXPORT_SYMBOL vmlinux 0x8f38d383 ex_handler_default -EXPORT_SYMBOL vmlinux 0x8f3a1064 iov_iter_alignment -EXPORT_SYMBOL vmlinux 0x8f645375 security_unix_stream_connect -EXPORT_SYMBOL vmlinux 0x8f806b77 vga_set_legacy_decoding +EXPORT_SYMBOL vmlinux 0x8f402941 n_tty_ioctl_helper +EXPORT_SYMBOL vmlinux 0x8f4dd1df __filemap_set_wb_err +EXPORT_SYMBOL vmlinux 0x8f4f17dc xfrm_input +EXPORT_SYMBOL vmlinux 0x8f50ab19 phy_queue_state_machine +EXPORT_SYMBOL vmlinux 0x8f603726 eth_prepare_mac_addr_change +EXPORT_SYMBOL vmlinux 0x8f6b428c splice_direct_to_actor +EXPORT_SYMBOL vmlinux 0x8f7c3fe4 skb_copy_and_csum_datagram_msg EXPORT_SYMBOL vmlinux 0x8f80bf11 acpi_install_gpe_raw_handler -EXPORT_SYMBOL vmlinux 0x8f974f98 mipi_dsi_driver_unregister +EXPORT_SYMBOL vmlinux 0x8f82c38b dma_mmap_attrs EXPORT_SYMBOL vmlinux 0x8f996a30 ethtool_convert_legacy_u32_to_link_mode EXPORT_SYMBOL vmlinux 0x8f9c199c __get_user_2 EXPORT_SYMBOL vmlinux 0x8fa25c24 xa_find -EXPORT_SYMBOL vmlinux 0x8fae6984 seq_puts -EXPORT_SYMBOL vmlinux 0x8fb630d1 mipi_dsi_set_maximum_return_packet_size -EXPORT_SYMBOL vmlinux 0x8fba7c3a tty_port_destroy -EXPORT_SYMBOL vmlinux 0x8fbb933f inet6_getname -EXPORT_SYMBOL vmlinux 0x8fbbeafe refresh_frequency_limits -EXPORT_SYMBOL vmlinux 0x8fc2dd9b tcp_v4_syn_recv_sock -EXPORT_SYMBOL vmlinux 0x8fd652db i2c_transfer_buffer_flags -EXPORT_SYMBOL vmlinux 0x8fd6d1b3 locks_lock_inode_wait +EXPORT_SYMBOL vmlinux 0x8fa2b863 register_filesystem +EXPORT_SYMBOL vmlinux 0x8fb69dea dev_mc_unsync +EXPORT_SYMBOL vmlinux 0x8fcb254a ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0x8fce0ea2 fscrypt_has_permitted_context +EXPORT_SYMBOL vmlinux 0x8fcf6675 tcp_rcv_established EXPORT_SYMBOL vmlinux 0x8fdb0752 abort_creds +EXPORT_SYMBOL vmlinux 0x8fea4a2a __scsi_add_device +EXPORT_SYMBOL vmlinux 0x8ff6f0ee tc_setup_flow_action EXPORT_SYMBOL vmlinux 0x8ff89ed0 seg6_hmac_exit +EXPORT_SYMBOL vmlinux 0x8ff98e13 tcf_idr_check_alloc +EXPORT_SYMBOL vmlinux 0x8ffe70af tcp_sendpage EXPORT_SYMBOL vmlinux 0x90006be6 dm_kcopyd_client_flush -EXPORT_SYMBOL vmlinux 0x9002ebff put_cmsg_scm_timestamping64 -EXPORT_SYMBOL vmlinux 0x900c3aa3 register_mii_tstamp_controller -EXPORT_SYMBOL vmlinux 0x90290143 __netdev_alloc_skb +EXPORT_SYMBOL vmlinux 0x90025dd7 ping_prot +EXPORT_SYMBOL vmlinux 0x90094103 devfreq_update_target +EXPORT_SYMBOL vmlinux 0x900e9e64 con_copy_unimap +EXPORT_SYMBOL vmlinux 0x9020094a freeze_bdev +EXPORT_SYMBOL vmlinux 0x9028dbd1 pci_disable_link_state_locked EXPORT_SYMBOL vmlinux 0x902d8722 vme_slave_get +EXPORT_SYMBOL vmlinux 0x90325e6a generic_pipe_buf_release EXPORT_SYMBOL vmlinux 0x9034a696 mempool_destroy +EXPORT_SYMBOL vmlinux 0x90354892 devm_ioport_unmap EXPORT_SYMBOL vmlinux 0x905695ab sg_copy_from_buffer EXPORT_SYMBOL vmlinux 0x90576ec4 vmemdup_user -EXPORT_SYMBOL vmlinux 0x90597ce5 gro_find_complete_by_type -EXPORT_SYMBOL vmlinux 0x9075d91e __xfrm_state_delete EXPORT_SYMBOL vmlinux 0x907ea00e set_security_override -EXPORT_SYMBOL vmlinux 0x90967403 skb_flow_dissect_meta -EXPORT_SYMBOL vmlinux 0x90974e8d poll_freewait -EXPORT_SYMBOL vmlinux 0x90996840 tty_port_close -EXPORT_SYMBOL vmlinux 0x909afcd2 wait_on_page_private_2_killable -EXPORT_SYMBOL vmlinux 0x90ab3247 param_set_int +EXPORT_SYMBOL vmlinux 0x9081c852 udp_gro_receive +EXPORT_SYMBOL vmlinux 0x90867a5b ps2_handle_ack +EXPORT_SYMBOL vmlinux 0x90ac7f61 __SCK__tp_func_dma_fence_signaled +EXPORT_SYMBOL vmlinux 0x90ba09ec dev_mc_init +EXPORT_SYMBOL vmlinux 0x90ca7010 edac_mc_find +EXPORT_SYMBOL vmlinux 0x90cddeaf fwnode_mdiobus_phy_device_register +EXPORT_SYMBOL vmlinux 0x90d9b023 phy_stop +EXPORT_SYMBOL vmlinux 0x90dfbe7e dcb_getapp EXPORT_SYMBOL vmlinux 0x90e273e2 cred_fscmp -EXPORT_SYMBOL vmlinux 0x91089de6 devm_register_netdev -EXPORT_SYMBOL vmlinux 0x910d521c xfrm_policy_bysel_ctx +EXPORT_SYMBOL vmlinux 0x90ef05b5 dev_open +EXPORT_SYMBOL vmlinux 0x90fb79af dev_printk_emit +EXPORT_SYMBOL vmlinux 0x90fe233a dm_table_run_md_queue_async +EXPORT_SYMBOL vmlinux 0x91046343 qdisc_warn_nonwc +EXPORT_SYMBOL vmlinux 0x91071082 phy_register_fixup EXPORT_SYMBOL vmlinux 0x9114b616 __xa_alloc -EXPORT_SYMBOL vmlinux 0x913430da md_update_sb -EXPORT_SYMBOL vmlinux 0x9155b660 proto_register +EXPORT_SYMBOL vmlinux 0x911af42c scsi_device_quiesce +EXPORT_SYMBOL vmlinux 0x91291a36 ip_mc_check_igmp +EXPORT_SYMBOL vmlinux 0x9144c8f1 pfifo_qdisc_ops EXPORT_SYMBOL vmlinux 0x91607d95 set_memory_wb -EXPORT_SYMBOL vmlinux 0x91629c28 vme_dma_request EXPORT_SYMBOL vmlinux 0x9166fada strncpy -EXPORT_SYMBOL vmlinux 0x9171df7d key_type_keyring EXPORT_SYMBOL vmlinux 0x9176145b acpi_install_global_event_handler +EXPORT_SYMBOL vmlinux 0x917ef980 mipi_dsi_dcs_set_column_address +EXPORT_SYMBOL vmlinux 0x917ef992 _dev_alert +EXPORT_SYMBOL vmlinux 0x919949a7 d_instantiate EXPORT_SYMBOL vmlinux 0x919c58f3 __clzsi2 -EXPORT_SYMBOL vmlinux 0x919e8978 tty_port_raise_dtr_rts +EXPORT_SYMBOL vmlinux 0x919cfa22 phy_error EXPORT_SYMBOL vmlinux 0x91a10c61 intel_scu_ipc_dev_simple_command +EXPORT_SYMBOL vmlinux 0x91a21d9d filp_close EXPORT_SYMBOL vmlinux 0x91a488ac __netdev_alloc_frag_align +EXPORT_SYMBOL vmlinux 0x91a60249 acpi_mdiobus_register +EXPORT_SYMBOL vmlinux 0x91a68853 fault_in_iov_iter_readable EXPORT_SYMBOL vmlinux 0x91a7b1da qdisc_class_hash_remove -EXPORT_SYMBOL vmlinux 0x91b96a27 vfs_getattr -EXPORT_SYMBOL vmlinux 0x91bc9797 vfs_create +EXPORT_SYMBOL vmlinux 0x91bd22b3 gro_cells_receive EXPORT_SYMBOL vmlinux 0x91c0980e icst_hz -EXPORT_SYMBOL vmlinux 0x91c6f44b gro_cells_receive -EXPORT_SYMBOL vmlinux 0x91c84b6b skb_checksum_trimmed +EXPORT_SYMBOL vmlinux 0x91c22d05 devm_release_resource +EXPORT_SYMBOL vmlinux 0x91e5de6f rtnl_link_get_net +EXPORT_SYMBOL vmlinux 0x91f13e37 nexthop_bucket_set_hw_flags EXPORT_SYMBOL vmlinux 0x91f44510 idr_alloc_cyclic EXPORT_SYMBOL vmlinux 0x91f68ea1 __hw_addr_sync -EXPORT_SYMBOL vmlinux 0x9209f02a kernel_recvmsg -EXPORT_SYMBOL vmlinux 0x920eaddd ip_mc_leave_group -EXPORT_SYMBOL vmlinux 0x92111604 generic_fill_statx_attr +EXPORT_SYMBOL vmlinux 0x922ab6f3 vmf_insert_pfn_prot +EXPORT_SYMBOL vmlinux 0x922cdc41 inode_owner_or_capable EXPORT_SYMBOL vmlinux 0x922f45a6 __bitmap_clear -EXPORT_SYMBOL vmlinux 0x92361ec8 __neigh_event_send EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get -EXPORT_SYMBOL vmlinux 0x924ac9c8 arch_debugfs_dir -EXPORT_SYMBOL vmlinux 0x925061c9 dst_cow_metrics_generic +EXPORT_SYMBOL vmlinux 0x9243ba26 bd_abort_claiming EXPORT_SYMBOL vmlinux 0x92540fbf finish_wait +EXPORT_SYMBOL vmlinux 0x92543bc7 setattr_prepare EXPORT_SYMBOL vmlinux 0x9258c776 hdmi_vendor_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0x926b5cba block_write_begin -EXPORT_SYMBOL vmlinux 0x92774cf8 __kfence_pool -EXPORT_SYMBOL vmlinux 0x9278b68e mark_page_accessed -EXPORT_SYMBOL vmlinux 0x927ee065 netdev_unbind_sb_channel -EXPORT_SYMBOL vmlinux 0x92852a04 acpi_mdiobus_register +EXPORT_SYMBOL vmlinux 0x9268d871 netif_carrier_on +EXPORT_SYMBOL vmlinux 0x927245c1 flow_rule_match_enc_keyid +EXPORT_SYMBOL vmlinux 0x92884c98 simple_release_fs EXPORT_SYMBOL vmlinux 0x92897e3d default_idle EXPORT_SYMBOL vmlinux 0x9291cd3b memdup_user EXPORT_SYMBOL vmlinux 0x92997ed8 _printk +EXPORT_SYMBOL vmlinux 0x929fcc66 ip_cmsg_recv_offset EXPORT_SYMBOL vmlinux 0x92a51e56 acpi_debug_print_raw -EXPORT_SYMBOL vmlinux 0x92a5ad5c vmf_insert_mixed_mkwrite +EXPORT_SYMBOL vmlinux 0x92ad5d80 seq_vprintf +EXPORT_SYMBOL vmlinux 0x92b3840d finalize_exec +EXPORT_SYMBOL vmlinux 0x92b557cd vme_unregister_bridge +EXPORT_SYMBOL vmlinux 0x92b5d65e audit_log EXPORT_SYMBOL vmlinux 0x92b99a33 acpi_put_table EXPORT_SYMBOL vmlinux 0x92b9b180 slash_name +EXPORT_SYMBOL vmlinux 0x92bdf9aa sock_kfree_s +EXPORT_SYMBOL vmlinux 0x92d02cb7 input_mt_assign_slots EXPORT_SYMBOL vmlinux 0x92d5838e request_threaded_irq -EXPORT_SYMBOL vmlinux 0x92e3e869 register_quota_format +EXPORT_SYMBOL vmlinux 0x92e3535d mmc_erase_group_aligned EXPORT_SYMBOL vmlinux 0x92e683f5 down_timeout +EXPORT_SYMBOL vmlinux 0x92e8a7db scsi_host_busy +EXPORT_SYMBOL vmlinux 0x92ea3647 can_nice EXPORT_SYMBOL vmlinux 0x92ec510d jiffies64_to_msecs EXPORT_SYMBOL vmlinux 0x92fa5abb vme_lm_detach -EXPORT_SYMBOL vmlinux 0x92ffcae0 km_policy_expired EXPORT_SYMBOL vmlinux 0x93022ba6 __scsi_format_command +EXPORT_SYMBOL vmlinux 0x9304401e inet_get_local_port_range EXPORT_SYMBOL vmlinux 0x9305f8e6 cpufreq_get -EXPORT_SYMBOL vmlinux 0x932240c2 vfs_iter_write -EXPORT_SYMBOL vmlinux 0x93337b49 dev_pm_opp_register_notifier -EXPORT_SYMBOL vmlinux 0x933604fc vfs_unlink -EXPORT_SYMBOL vmlinux 0x933978bc sock_create_kern -EXPORT_SYMBOL vmlinux 0x936857ef __pskb_copy_fclone -EXPORT_SYMBOL vmlinux 0x936e6c2c follow_down +EXPORT_SYMBOL vmlinux 0x9353d687 param_ops_bool +EXPORT_SYMBOL vmlinux 0x935d0aaa flow_rule_match_icmp +EXPORT_SYMBOL vmlinux 0x9363e567 security_sctp_sk_clone EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid +EXPORT_SYMBOL vmlinux 0x9397e363 __frontswap_test EXPORT_SYMBOL vmlinux 0x93a6e0b2 io_schedule EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier -EXPORT_SYMBOL vmlinux 0x93b96132 skb_flow_dissect_tunnel_info -EXPORT_SYMBOL vmlinux 0x93ba0d6f phy_queue_state_machine -EXPORT_SYMBOL vmlinux 0x93c1f057 set_binfmt -EXPORT_SYMBOL vmlinux 0x93ca90d9 tcf_exts_destroy -EXPORT_SYMBOL vmlinux 0x93cfa690 xfrm6_protocol_register +EXPORT_SYMBOL vmlinux 0x93c00967 generic_writepages EXPORT_SYMBOL vmlinux 0x93d6dd8c complete_all -EXPORT_SYMBOL vmlinux 0x93e0e1a5 page_pool_create -EXPORT_SYMBOL vmlinux 0x93e4f158 nd_dev_to_uuid -EXPORT_SYMBOL vmlinux 0x93eb2cae gnet_stats_start_copy +EXPORT_SYMBOL vmlinux 0x93d6eeee lookup_one +EXPORT_SYMBOL vmlinux 0x93e6b091 neigh_destroy +EXPORT_SYMBOL vmlinux 0x93ee527a dget_parent EXPORT_SYMBOL vmlinux 0x93f12561 nla_put -EXPORT_SYMBOL vmlinux 0x940bf49b kernel_bind -EXPORT_SYMBOL vmlinux 0x941a3f88 filemap_flush -EXPORT_SYMBOL vmlinux 0x94261939 inet_register_protosw -EXPORT_SYMBOL vmlinux 0x9427605e iov_iter_init +EXPORT_SYMBOL vmlinux 0x93f6cc18 put_disk +EXPORT_SYMBOL vmlinux 0x93f6e982 rtnetlink_put_metrics +EXPORT_SYMBOL vmlinux 0x940d3eb9 generic_file_readonly_mmap +EXPORT_SYMBOL vmlinux 0x940ffa4b sock_no_sendmsg +EXPORT_SYMBOL vmlinux 0x941772e8 pci_irq_vector EXPORT_SYMBOL vmlinux 0x9428f816 dim_turn -EXPORT_SYMBOL vmlinux 0x94365bd1 tty_wait_until_sent -EXPORT_SYMBOL vmlinux 0x943728f9 nf_log_unbind_pf +EXPORT_SYMBOL vmlinux 0x9440551f phy_start_cable_test EXPORT_SYMBOL vmlinux 0x944375db _totalram_pages EXPORT_SYMBOL vmlinux 0x944a564d is_console_locked -EXPORT_SYMBOL vmlinux 0x944baed9 __i2c_transfer +EXPORT_SYMBOL vmlinux 0x945c9025 __dynamic_netdev_dbg EXPORT_SYMBOL vmlinux 0x947243c9 convert_art_to_tsc_ns -EXPORT_SYMBOL vmlinux 0x9474da40 tcp_shutdown -EXPORT_SYMBOL vmlinux 0x9478ce5c cfb_fillrect EXPORT_SYMBOL vmlinux 0x9487d3e1 ns_capable -EXPORT_SYMBOL vmlinux 0x9487db54 __ClearPageMovable EXPORT_SYMBOL vmlinux 0x9493fc86 node_states EXPORT_SYMBOL vmlinux 0x94961283 vunmap -EXPORT_SYMBOL vmlinux 0x949dfff7 dev_set_mtu -EXPORT_SYMBOL vmlinux 0x94b2a3ae uart_resume_port +EXPORT_SYMBOL vmlinux 0x949c8eed arp_xmit +EXPORT_SYMBOL vmlinux 0x949e8311 __pskb_copy_fclone +EXPORT_SYMBOL vmlinux 0x94aafe31 __SCK__tp_func_kmalloc EXPORT_SYMBOL vmlinux 0x94bb7ec3 gen_pool_dma_zalloc_algo +EXPORT_SYMBOL vmlinux 0x94bbf366 input_register_handler EXPORT_SYMBOL vmlinux 0x94bf03ca utf8_to_utf32 -EXPORT_SYMBOL vmlinux 0x94dcd53b vfs_readlink +EXPORT_SYMBOL vmlinux 0x94c4426e scsi_dma_map +EXPORT_SYMBOL vmlinux 0x94ca2690 mmc_wait_for_cmd +EXPORT_SYMBOL vmlinux 0x94d6d1ec passthru_features_check +EXPORT_SYMBOL vmlinux 0x94d9501b __dquot_alloc_space EXPORT_SYMBOL vmlinux 0x94e50ad4 call_fib_notifier -EXPORT_SYMBOL vmlinux 0x94ff2b15 md_bitmap_sync_with_cluster +EXPORT_SYMBOL vmlinux 0x94fb02ef sock_no_sendmsg_locked +EXPORT_SYMBOL vmlinux 0x95070e3f rproc_coredump_set_elf_info EXPORT_SYMBOL vmlinux 0x9507c90f copy_fsxattr_to_user -EXPORT_SYMBOL vmlinux 0x950b47b9 ip_options_rcv_srr -EXPORT_SYMBOL vmlinux 0x95123238 security_sock_rcv_skb -EXPORT_SYMBOL vmlinux 0x951bad73 mipi_dsi_dcs_enter_sleep_mode -EXPORT_SYMBOL vmlinux 0x952e77ed inetdev_by_index -EXPORT_SYMBOL vmlinux 0x953d5440 dev_uc_init -EXPORT_SYMBOL vmlinux 0x95449e58 scsi_dma_map +EXPORT_SYMBOL vmlinux 0x9512d402 to_nd_dax +EXPORT_SYMBOL vmlinux 0x95268167 vmalloc_to_page +EXPORT_SYMBOL vmlinux 0x954826b4 pci_bus_add_devices EXPORT_SYMBOL vmlinux 0x954cef6f init_on_alloc EXPORT_SYMBOL vmlinux 0x954f099c idr_preload -EXPORT_SYMBOL vmlinux 0x955540be devm_ioremap -EXPORT_SYMBOL vmlinux 0x9570f06c tty_register_driver -EXPORT_SYMBOL vmlinux 0x95787976 blk_rq_map_kern -EXPORT_SYMBOL vmlinux 0x957fe2be empty_aops -EXPORT_SYMBOL vmlinux 0x959311be flow_indr_block_cb_alloc +EXPORT_SYMBOL vmlinux 0x95545922 devm_mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0x955efec7 input_set_abs_params +EXPORT_SYMBOL vmlinux 0x95625f55 udp_skb_destructor +EXPORT_SYMBOL vmlinux 0x956494de tty_chars_in_buffer EXPORT_SYMBOL vmlinux 0x95a67b07 udp_table -EXPORT_SYMBOL vmlinux 0x95ce1a55 pci_bus_read_config_byte -EXPORT_SYMBOL vmlinux 0x95ea0e25 ether_setup -EXPORT_SYMBOL vmlinux 0x95ea4d66 inode_nohighmem -EXPORT_SYMBOL vmlinux 0x95f91623 max8925_bulk_write -EXPORT_SYMBOL vmlinux 0x961f80de inet_csk_accept +EXPORT_SYMBOL vmlinux 0x95ce597d phy_ethtool_get_wol +EXPORT_SYMBOL vmlinux 0x95ed115e devm_extcon_register_notifier +EXPORT_SYMBOL vmlinux 0x95f214f2 migrate_vma_finalize +EXPORT_SYMBOL vmlinux 0x9604f189 inet_del_protocol EXPORT_SYMBOL vmlinux 0x9625695d acpi_install_gpe_block EXPORT_SYMBOL vmlinux 0x962c4977 clkdev_add -EXPORT_SYMBOL vmlinux 0x963a5831 dqput -EXPORT_SYMBOL vmlinux 0x963d02f6 register_filesystem -EXPORT_SYMBOL vmlinux 0x9654cb7b xp_set_rxq_info -EXPORT_SYMBOL vmlinux 0x9657fc74 xsk_tx_completed -EXPORT_SYMBOL vmlinux 0x96675583 bdevname +EXPORT_SYMBOL vmlinux 0x9636793b mdiobus_unregister +EXPORT_SYMBOL vmlinux 0x9643fc11 skb_tx_error +EXPORT_SYMBOL vmlinux 0x96481f19 page_pool_alloc_pages +EXPORT_SYMBOL vmlinux 0x964b176c single_release +EXPORT_SYMBOL vmlinux 0x965c68ca skb_copy_datagram_from_iter +EXPORT_SYMBOL vmlinux 0x965ec006 scsicam_bios_param +EXPORT_SYMBOL vmlinux 0x9660d852 blk_mq_stop_hw_queues EXPORT_SYMBOL vmlinux 0x96848186 scnprintf +EXPORT_SYMBOL vmlinux 0x968d088b bio_integrity_alloc +EXPORT_SYMBOL vmlinux 0x96ab55b6 iput EXPORT_SYMBOL vmlinux 0x96b29254 strncasecmp -EXPORT_SYMBOL vmlinux 0x96bd2551 security_inode_listsecurity EXPORT_SYMBOL vmlinux 0x96c17136 fb_var_to_videomode -EXPORT_SYMBOL vmlinux 0x96caa963 audit_log +EXPORT_SYMBOL vmlinux 0x96c45045 mmc_gpio_get_ro EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string -EXPORT_SYMBOL vmlinux 0x96d6995e wake_up_process -EXPORT_SYMBOL vmlinux 0x96da559e block_truncate_page EXPORT_SYMBOL vmlinux 0x96e5d30f gen_pool_set_algo EXPORT_SYMBOL vmlinux 0x96eab78b iosf_mbi_modify EXPORT_SYMBOL vmlinux 0x96fab350 dim_park_on_top -EXPORT_SYMBOL vmlinux 0x96fd1b7b alloc_anon_inode -EXPORT_SYMBOL vmlinux 0x9727f88f sock_kzfree_s -EXPORT_SYMBOL vmlinux 0x9734b0d6 pci_restore_state +EXPORT_SYMBOL vmlinux 0x97225fad fscrypt_free_bounce_page +EXPORT_SYMBOL vmlinux 0x9734d871 kthread_associate_blkcg +EXPORT_SYMBOL vmlinux 0x973a72db __skb_ext_del EXPORT_SYMBOL vmlinux 0x973fa82e register_acpi_notifier EXPORT_SYMBOL vmlinux 0x9746eb89 ZSTD_decompressBegin_usingDict -EXPORT_SYMBOL vmlinux 0x9747034e __scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x975ff447 dev_set_threaded +EXPORT_SYMBOL vmlinux 0x976225fe may_umount EXPORT_SYMBOL vmlinux 0x97651e6c vmemmap_base -EXPORT_SYMBOL vmlinux 0x9774b1e5 netdev_lower_get_next_private_rcu -EXPORT_SYMBOL vmlinux 0x97846594 intel_gmch_probe -EXPORT_SYMBOL vmlinux 0x9784d77b __sock_cmsg_send -EXPORT_SYMBOL vmlinux 0x97919293 rt6_lookup -EXPORT_SYMBOL vmlinux 0x9791fada copy_page_to_iter +EXPORT_SYMBOL vmlinux 0x976a3992 dmam_pool_create +EXPORT_SYMBOL vmlinux 0x9775810b dmaengine_get_unmap_data +EXPORT_SYMBOL vmlinux 0x97862103 alloc_buffer_head EXPORT_SYMBOL vmlinux 0x97934ecf del_timer_sync -EXPORT_SYMBOL vmlinux 0x97a3d5f1 tcp_fastopen_defer_connect +EXPORT_SYMBOL vmlinux 0x97974cdc f_setown +EXPORT_SYMBOL vmlinux 0x97a247a6 dev_change_proto_down_generic EXPORT_SYMBOL vmlinux 0x97a57333 crc_t10dif_update EXPORT_SYMBOL vmlinux 0x97a841aa textsearch_unregister EXPORT_SYMBOL vmlinux 0x97adb487 utf8s_to_utf16s -EXPORT_SYMBOL vmlinux 0x97b0f585 page_pool_put_page EXPORT_SYMBOL vmlinux 0x97bdfa60 scsi_dev_info_remove_list -EXPORT_SYMBOL vmlinux 0x97c34bed dm_mq_kick_requeue_list -EXPORT_SYMBOL vmlinux 0x97cc95fc d_move -EXPORT_SYMBOL vmlinux 0x97e1b36b tcp_mmap +EXPORT_SYMBOL vmlinux 0x97c036a0 page_zero_new_buffers +EXPORT_SYMBOL vmlinux 0x97c393b3 vlan_uses_dev EXPORT_SYMBOL vmlinux 0x97e2789a commit_creds -EXPORT_SYMBOL vmlinux 0x97e78b71 dm_table_get_mode -EXPORT_SYMBOL vmlinux 0x9828b0d1 get_tree_bdev +EXPORT_SYMBOL vmlinux 0x97feda72 input_setup_polling +EXPORT_SYMBOL vmlinux 0x980117ff pfifo_fast_ops +EXPORT_SYMBOL vmlinux 0x981179be unlock_two_nondirectories EXPORT_SYMBOL vmlinux 0x9829fc11 __kfifo_out_peek_r -EXPORT_SYMBOL vmlinux 0x9835ea10 input_set_max_poll_interval -EXPORT_SYMBOL vmlinux 0x9855cc9f proc_create_single_data -EXPORT_SYMBOL vmlinux 0x9868613b vme_irq_free -EXPORT_SYMBOL vmlinux 0x98688f10 rproc_put -EXPORT_SYMBOL vmlinux 0x987078f9 vfs_get_link -EXPORT_SYMBOL vmlinux 0x98839392 nvdimm_check_and_set_ro -EXPORT_SYMBOL vmlinux 0x98875472 inet_stream_connect -EXPORT_SYMBOL vmlinux 0x989f6c41 set_disk_ro -EXPORT_SYMBOL vmlinux 0x98b2da24 simple_get_link -EXPORT_SYMBOL vmlinux 0x98bc5751 tcf_register_action +EXPORT_SYMBOL vmlinux 0x98311888 dev_loopback_xmit +EXPORT_SYMBOL vmlinux 0x984ac316 tty_unthrottle +EXPORT_SYMBOL vmlinux 0x985030e1 pci_try_set_mwi +EXPORT_SYMBOL vmlinux 0x985c3e4e iw_handler_set_spy +EXPORT_SYMBOL vmlinux 0x988a2989 devm_of_find_backlight +EXPORT_SYMBOL vmlinux 0x9896c188 sk_stop_timer +EXPORT_SYMBOL vmlinux 0x98b5f37c devm_alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0x98bf7ea7 netdev_crit EXPORT_SYMBOL vmlinux 0x98c039dc dma_fence_wait_timeout EXPORT_SYMBOL vmlinux 0x98c89ade security_xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x98d3370b dev_pm_opp_register_notifier +EXPORT_SYMBOL vmlinux 0x98dd54ea bio_copy_data_iter EXPORT_SYMBOL vmlinux 0x98e508ef ignore_console_lock_warning -EXPORT_SYMBOL vmlinux 0x98e5e8ad rtc_add_group +EXPORT_SYMBOL vmlinux 0x98ffbd73 sk_free +EXPORT_SYMBOL vmlinux 0x99011c9f eth_gro_receive +EXPORT_SYMBOL vmlinux 0x990590ed md_reap_sync_thread EXPORT_SYMBOL vmlinux 0x99078b39 trace_print_flags_seq -EXPORT_SYMBOL vmlinux 0x9911650e sk_stop_timer -EXPORT_SYMBOL vmlinux 0x99263ba4 skb_try_coalesce -EXPORT_SYMBOL vmlinux 0x99360eec netdev_notify_peers +EXPORT_SYMBOL vmlinux 0x990944f3 sk_dst_check +EXPORT_SYMBOL vmlinux 0x990c9bc9 inode_init_always +EXPORT_SYMBOL vmlinux 0x99148266 mmc_request_done +EXPORT_SYMBOL vmlinux 0x9914b65a kernel_connect +EXPORT_SYMBOL vmlinux 0x9928309e PDE_DATA +EXPORT_SYMBOL vmlinux 0x992fc81f skb_expand_head EXPORT_SYMBOL vmlinux 0x9939eba0 backlight_unregister_notifier +EXPORT_SYMBOL vmlinux 0x994e3a74 tcp_disconnect EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable -EXPORT_SYMBOL vmlinux 0x995c31ff __xfrm_policy_check -EXPORT_SYMBOL vmlinux 0x9973e15f __netdev_notify_peers EXPORT_SYMBOL vmlinux 0x9975dc22 acpi_get_handle -EXPORT_SYMBOL vmlinux 0x997e2064 napi_enable -EXPORT_SYMBOL vmlinux 0x9987062b phy_connect -EXPORT_SYMBOL vmlinux 0x9991d5c8 nd_btt_arena_is_valid +EXPORT_SYMBOL vmlinux 0x9978df05 unregister_netdevice_notifier_net +EXPORT_SYMBOL vmlinux 0x997affe6 input_unregister_handle EXPORT_SYMBOL vmlinux 0x999e8297 vfree -EXPORT_SYMBOL vmlinux 0x99a61ec1 mdiobus_register_device -EXPORT_SYMBOL vmlinux 0x99b6082d bio_add_page -EXPORT_SYMBOL vmlinux 0x99c26544 ipv4_specific -EXPORT_SYMBOL vmlinux 0x99ca83bc rproc_coredump_add_segment +EXPORT_SYMBOL vmlinux 0x99a9e8ad md_write_end +EXPORT_SYMBOL vmlinux 0x99aab16a neigh_direct_output +EXPORT_SYMBOL vmlinux 0x99adb9d8 tcp_getsockopt +EXPORT_SYMBOL vmlinux 0x99c9101e rtnl_notify EXPORT_SYMBOL vmlinux 0x99d472b1 net_dim_get_rx_moderation -EXPORT_SYMBOL vmlinux 0x99d8cb6f pagevec_lookup_range EXPORT_SYMBOL vmlinux 0x99daa9bf try_offline_node -EXPORT_SYMBOL vmlinux 0x99dbaf0e security_socket_socketpair -EXPORT_SYMBOL vmlinux 0x99ec25b2 page_cache_prev_miss EXPORT_SYMBOL vmlinux 0x99f068d5 x86_cpu_to_node_map EXPORT_SYMBOL vmlinux 0x99f7371c refcount_dec_and_mutex_lock EXPORT_SYMBOL vmlinux 0x99f9638f __napi_alloc_frag_align +EXPORT_SYMBOL vmlinux 0x99ff2484 deactivate_super +EXPORT_SYMBOL vmlinux 0x9a0936e7 acpi_bus_register_driver EXPORT_SYMBOL vmlinux 0x9a0c3a18 vme_unregister_error_handler -EXPORT_SYMBOL vmlinux 0x9a19ec50 make_flow_keys_digest +EXPORT_SYMBOL vmlinux 0x9a0f6439 inet_offloads +EXPORT_SYMBOL vmlinux 0x9a0fb64c pci_disable_link_state +EXPORT_SYMBOL vmlinux 0x9a19bbd6 __SCK__tp_func_module_get EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk -EXPORT_SYMBOL vmlinux 0x9a2235d5 dev_uc_flush EXPORT_SYMBOL vmlinux 0x9a22391e radix_tree_gang_lookup_tag_slot -EXPORT_SYMBOL vmlinux 0x9a533f62 flow_block_cb_priv +EXPORT_SYMBOL vmlinux 0x9a22cd67 filemap_fdatawrite_wbc +EXPORT_SYMBOL vmlinux 0x9a547d62 generic_permission EXPORT_SYMBOL vmlinux 0x9a583306 netlbl_bitmap_walk -EXPORT_SYMBOL vmlinux 0x9a5c1f49 kernel_listen -EXPORT_SYMBOL vmlinux 0x9a5e05b2 __blk_mq_alloc_disk -EXPORT_SYMBOL vmlinux 0x9a64ea2b km_state_expired +EXPORT_SYMBOL vmlinux 0x9a62c0db ll_rw_block +EXPORT_SYMBOL vmlinux 0x9a73aeaa migrate_vma_pages EXPORT_SYMBOL vmlinux 0x9a73b032 ZSTD_initDStream_usingDDict -EXPORT_SYMBOL vmlinux 0x9a8a9d63 request_firmware -EXPORT_SYMBOL vmlinux 0x9a98f0c9 configfs_unregister_group -EXPORT_SYMBOL vmlinux 0x9aace15d rfkill_alloc +EXPORT_SYMBOL vmlinux 0x9a8bebd2 request_firmware_nowait EXPORT_SYMBOL vmlinux 0x9aaeefce sysctl_nf_log_all_netns -EXPORT_SYMBOL vmlinux 0x9ab15fdd tty_insert_flip_string_flags -EXPORT_SYMBOL vmlinux 0x9acc4363 scsi_scan_target +EXPORT_SYMBOL vmlinux 0x9abcf5d7 neigh_event_ns +EXPORT_SYMBOL vmlinux 0x9acd9152 __tracepoint_kfree +EXPORT_SYMBOL vmlinux 0x9ad6a468 mr_vif_seq_next EXPORT_SYMBOL vmlinux 0x9ad7a582 iosf_mbi_assert_punit_acquired +EXPORT_SYMBOL vmlinux 0x9adfa2d4 mount_nodev EXPORT_SYMBOL vmlinux 0x9ae47436 _find_last_bit -EXPORT_SYMBOL vmlinux 0x9b101294 ethtool_notify +EXPORT_SYMBOL vmlinux 0x9aef9e1f jbd2_log_start_commit +EXPORT_SYMBOL vmlinux 0x9b21d994 mipi_dsi_dcs_exit_sleep_mode EXPORT_SYMBOL vmlinux 0x9b2560b9 gf128mul_init_4k_bbe -EXPORT_SYMBOL vmlinux 0x9b29948c fs_context_for_submount -EXPORT_SYMBOL vmlinux 0x9b309b8c netlink_set_err EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier EXPORT_SYMBOL vmlinux 0x9b420478 utf8_strncasecmp EXPORT_SYMBOL vmlinux 0x9b496b21 posix_acl_alloc -EXPORT_SYMBOL vmlinux 0x9b4d478a ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0x9b6a4431 pldmfw_flash_image EXPORT_SYMBOL vmlinux 0x9b72478f acpi_unload_parent_table -EXPORT_SYMBOL vmlinux 0x9b9521ae inet_get_local_port_range +EXPORT_SYMBOL vmlinux 0x9b72f67a phy_device_create +EXPORT_SYMBOL vmlinux 0x9b7355f5 dev_change_proto_down_reason EXPORT_SYMBOL vmlinux 0x9b9eb858 unload_nls -EXPORT_SYMBOL vmlinux 0x9ba69fa1 bio_init -EXPORT_SYMBOL vmlinux 0x9ba84739 ram_aops -EXPORT_SYMBOL vmlinux 0x9bb310d6 clk_add_alias -EXPORT_SYMBOL vmlinux 0x9bb41b26 user_path_create +EXPORT_SYMBOL vmlinux 0x9ba6cd02 jbd2_fc_end_commit EXPORT_SYMBOL vmlinux 0x9bb4e317 ioread32be -EXPORT_SYMBOL vmlinux 0x9bc2ba3a xp_free -EXPORT_SYMBOL vmlinux 0x9bc2ff5a simple_open -EXPORT_SYMBOL vmlinux 0x9bc534cc from_kgid -EXPORT_SYMBOL vmlinux 0x9bc61907 tcp_sock_set_keepintvl -EXPORT_SYMBOL vmlinux 0x9bc99c07 mmc_can_erase -EXPORT_SYMBOL vmlinux 0x9be3052d kthread_create_worker_on_cpu -EXPORT_SYMBOL vmlinux 0x9be449c0 pci_free_irq -EXPORT_SYMBOL vmlinux 0x9bf396ec rproc_del +EXPORT_SYMBOL vmlinux 0x9bd56f16 kernel_sendmsg +EXPORT_SYMBOL vmlinux 0x9bec009e input_mt_report_slot_state +EXPORT_SYMBOL vmlinux 0x9bf6c388 devfreq_resume_device +EXPORT_SYMBOL vmlinux 0x9bf9ec72 fb_get_buffer_offset +EXPORT_SYMBOL vmlinux 0x9c0751a0 nf_log_unset +EXPORT_SYMBOL vmlinux 0x9c09bda5 tty_port_free_xmit_buf EXPORT_SYMBOL vmlinux 0x9c122bcf mempool_create_node -EXPORT_SYMBOL vmlinux 0x9c1b4179 max8998_write_reg -EXPORT_SYMBOL vmlinux 0x9c469782 blk_queue_chunk_sectors -EXPORT_SYMBOL vmlinux 0x9c540aa9 pm860x_bulk_write -EXPORT_SYMBOL vmlinux 0x9c611f5f xfrm_dev_state_flush -EXPORT_SYMBOL vmlinux 0x9c6208db devm_extcon_register_notifier_all -EXPORT_SYMBOL vmlinux 0x9c641dc9 new_inode +EXPORT_SYMBOL vmlinux 0x9c1ccd32 dev_disable_lro +EXPORT_SYMBOL vmlinux 0x9c2b21f0 reuseport_attach_prog +EXPORT_SYMBOL vmlinux 0x9c3a02fa clocksource_change_rating +EXPORT_SYMBOL vmlinux 0x9c3e7284 __skb_checksum +EXPORT_SYMBOL vmlinux 0x9c3fb5aa __set_page_dirty_nobuffers +EXPORT_SYMBOL vmlinux 0x9c4b72a9 phy_set_asym_pause +EXPORT_SYMBOL vmlinux 0x9c58b5d9 neigh_for_each +EXPORT_SYMBOL vmlinux 0x9c58d7fe skb_flow_dissect_meta +EXPORT_SYMBOL vmlinux 0x9c60f614 sock_set_reuseport EXPORT_SYMBOL vmlinux 0x9c65b78a csum_partial_copy_nocheck -EXPORT_SYMBOL vmlinux 0x9c701e47 d_alloc EXPORT_SYMBOL vmlinux 0x9c86b9ab fileattr_fill_flags -EXPORT_SYMBOL vmlinux 0x9ca66fad devm_devfreq_register_notifier EXPORT_SYMBOL vmlinux 0x9cab34a6 rfkill_set_led_trigger_name -EXPORT_SYMBOL vmlinux 0x9cb91b4e sock_diag_put_filterinfo +EXPORT_SYMBOL vmlinux 0x9cb559e7 init_special_inode EXPORT_SYMBOL vmlinux 0x9cb986f2 vmalloc_base -EXPORT_SYMBOL vmlinux 0x9cbaf24d devfreq_monitor_resume -EXPORT_SYMBOL vmlinux 0x9cc2a556 qdisc_put -EXPORT_SYMBOL vmlinux 0x9cc3ad82 sockfd_lookup EXPORT_SYMBOL vmlinux 0x9ccf7171 vme_dma_pci_attribute -EXPORT_SYMBOL vmlinux 0x9cd01e2f ip_route_input_noref EXPORT_SYMBOL vmlinux 0x9cd91791 register_sysctl -EXPORT_SYMBOL vmlinux 0x9cddea94 dma_find_channel EXPORT_SYMBOL vmlinux 0x9cdfb3f7 sysctl_fb_tunnels_only_for_init_net EXPORT_SYMBOL vmlinux 0x9ced41ad __SCT__tp_func_read_msr -EXPORT_SYMBOL vmlinux 0x9d00cb02 __insert_inode_hash EXPORT_SYMBOL vmlinux 0x9d099a39 acpi_remove_gpe_handler -EXPORT_SYMBOL vmlinux 0x9d09dd3c vc_resize -EXPORT_SYMBOL vmlinux 0x9d0a9a7b mmc_detect_change EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier -EXPORT_SYMBOL vmlinux 0x9d0ea2a7 touchscreen_report_pos +EXPORT_SYMBOL vmlinux 0x9d22edfb ppp_register_compressor EXPORT_SYMBOL vmlinux 0x9d250156 __nla_put +EXPORT_SYMBOL vmlinux 0x9d2a212d put_cmsg EXPORT_SYMBOL vmlinux 0x9d2ab8ac __tasklet_schedule EXPORT_SYMBOL vmlinux 0x9d2e7707 unregister_sysrq_key -EXPORT_SYMBOL vmlinux 0x9d375a3b io_uring_get_socket -EXPORT_SYMBOL vmlinux 0x9d5254bc sock_bind_add +EXPORT_SYMBOL vmlinux 0x9d4c03d2 xfrm_unregister_type_offload +EXPORT_SYMBOL vmlinux 0x9d61e52a tcf_action_dump_1 EXPORT_SYMBOL vmlinux 0x9d61e994 ucs2_strncmp EXPORT_SYMBOL vmlinux 0x9d70541a native_save_fl -EXPORT_SYMBOL vmlinux 0x9d749425 register_key_type +EXPORT_SYMBOL vmlinux 0x9d755577 __mmap_lock_do_trace_acquire_returned +EXPORT_SYMBOL vmlinux 0x9d7695c3 icmp_ndo_send +EXPORT_SYMBOL vmlinux 0x9d800cc0 make_bad_inode +EXPORT_SYMBOL vmlinux 0x9d8ff744 fb_firmware_edid EXPORT_SYMBOL vmlinux 0x9d92f3ad __wait_on_bit_lock EXPORT_SYMBOL vmlinux 0x9d97ab2c audit_log_object_context -EXPORT_SYMBOL vmlinux 0x9da1c9f2 dst_release -EXPORT_SYMBOL vmlinux 0x9da4a874 dquot_quotactl_sysfile_ops -EXPORT_SYMBOL vmlinux 0x9df1d3a7 mmc_can_gpio_cd -EXPORT_SYMBOL vmlinux 0x9df37121 xfrm_user_policy -EXPORT_SYMBOL vmlinux 0x9df9923c pci_bus_size_bridges -EXPORT_SYMBOL vmlinux 0x9e0bbada devm_of_find_backlight +EXPORT_SYMBOL vmlinux 0x9d97b619 dma_sync_wait +EXPORT_SYMBOL vmlinux 0x9dc86ed0 sock_no_getname +EXPORT_SYMBOL vmlinux 0x9df4fee8 set_user_nice +EXPORT_SYMBOL vmlinux 0x9e01b01c pci_find_parent_resource EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node EXPORT_SYMBOL vmlinux 0x9e0fa5ae hsiphash_3u32 EXPORT_SYMBOL vmlinux 0x9e13f6f6 gf128mul_lle EXPORT_SYMBOL vmlinux 0x9e2737f0 acpi_install_interface_handler -EXPORT_SYMBOL vmlinux 0x9e2b1958 tcp_getsockopt -EXPORT_SYMBOL vmlinux 0x9e3a6b4a proto_unregister -EXPORT_SYMBOL vmlinux 0x9e4db58f jbd2_journal_init_inode EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy -EXPORT_SYMBOL vmlinux 0x9e5da7ae twl6040_clear_bits EXPORT_SYMBOL vmlinux 0x9e61bb05 set_freezable EXPORT_SYMBOL vmlinux 0x9e64fbfe rtc_cmos_read EXPORT_SYMBOL vmlinux 0x9e683f75 __cpu_possible_mask -EXPORT_SYMBOL vmlinux 0x9e70fa9e kill_pgrp -EXPORT_SYMBOL vmlinux 0x9e78975a __skb_flow_dissect EXPORT_SYMBOL vmlinux 0x9e7d6bd0 __udelay -EXPORT_SYMBOL vmlinux 0x9e80e3fa __SCK__tp_func_spi_transfer_start -EXPORT_SYMBOL vmlinux 0x9e854f09 pci_msix_vec_count -EXPORT_SYMBOL vmlinux 0x9e87dc24 __i2c_smbus_xfer -EXPORT_SYMBOL vmlinux 0x9e95e7d4 filemap_fdatawrite_range EXPORT_SYMBOL vmlinux 0x9e99837e __nla_put_64bit +EXPORT_SYMBOL vmlinux 0x9e9b5792 security_inode_listsecurity EXPORT_SYMBOL vmlinux 0x9e9eab95 devcgroup_check_permission EXPORT_SYMBOL vmlinux 0x9e9fdd9d memunmap -EXPORT_SYMBOL vmlinux 0x9ea47e92 qdisc_hash_del EXPORT_SYMBOL vmlinux 0x9eacf8a5 kstrndup EXPORT_SYMBOL vmlinux 0x9ec0e639 twl6030_interrupt_unmask +EXPORT_SYMBOL vmlinux 0x9ec5efff genphy_config_eee_advert EXPORT_SYMBOL vmlinux 0x9ec6ca96 ktime_get_real_ts64 -EXPORT_SYMBOL vmlinux 0x9ed51a25 dget_parent +EXPORT_SYMBOL vmlinux 0x9ecf0e2f gnet_stats_start_copy_compat +EXPORT_SYMBOL vmlinux 0x9ed0b133 proc_symlink EXPORT_SYMBOL vmlinux 0x9ed978de vme_lm_set EXPORT_SYMBOL vmlinux 0x9ef0eee7 __SCT__tp_func_spi_transfer_stop -EXPORT_SYMBOL vmlinux 0x9f12630d vlan_dev_vlan_id -EXPORT_SYMBOL vmlinux 0x9f30031a regset_get_alloc +EXPORT_SYMBOL vmlinux 0x9f1778e3 iterate_supers_type +EXPORT_SYMBOL vmlinux 0x9f1905a5 tty_register_ldisc +EXPORT_SYMBOL vmlinux 0x9f226f96 d_add_ci EXPORT_SYMBOL vmlinux 0x9f46ced8 __sw_hweight64 -EXPORT_SYMBOL vmlinux 0x9f4d7448 __cgroup_bpf_run_filter_sock_addr EXPORT_SYMBOL vmlinux 0x9f4f2aa3 acpi_gbl_FADT EXPORT_SYMBOL vmlinux 0x9f50b770 keyring_restrict EXPORT_SYMBOL vmlinux 0x9f54ead7 gro_cells_destroy -EXPORT_SYMBOL vmlinux 0x9f65ccd3 mmc_erase_group_aligned -EXPORT_SYMBOL vmlinux 0x9f769033 i2c_clients_command -EXPORT_SYMBOL vmlinux 0x9f8642e3 __SCK__tp_func_module_get -EXPORT_SYMBOL vmlinux 0x9f8f2af6 ata_port_printk +EXPORT_SYMBOL vmlinux 0x9f5591ed acpi_bus_get_device +EXPORT_SYMBOL vmlinux 0x9f5e01d8 fqdir_exit +EXPORT_SYMBOL vmlinux 0x9f89a412 pci_find_next_bus EXPORT_SYMBOL vmlinux 0x9f984513 strrchr +EXPORT_SYMBOL vmlinux 0x9f991d3d register_md_personality EXPORT_SYMBOL vmlinux 0x9fa7184a cancel_delayed_work_sync -EXPORT_SYMBOL vmlinux 0x9fcc0767 phy_driver_register -EXPORT_SYMBOL vmlinux 0x9fd8b5dd __tracepoint_mmap_lock_released -EXPORT_SYMBOL vmlinux 0x9fddd55e ip_fraglist_init +EXPORT_SYMBOL vmlinux 0x9faa4cd4 page_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0x9fcf1761 kmem_cache_alloc_bulk +EXPORT_SYMBOL vmlinux 0x9fd1e9d2 tcp_recvmsg +EXPORT_SYMBOL vmlinux 0x9fd41136 filemap_fdatawait_keep_errors EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many +EXPORT_SYMBOL vmlinux 0x9fe3b625 inc_node_page_state +EXPORT_SYMBOL vmlinux 0x9feb7ca5 blk_mq_unique_tag EXPORT_SYMBOL vmlinux 0x9feed7ce timer_reduce EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog +EXPORT_SYMBOL vmlinux 0x9fffbad5 dcb_ieee_getapp_mask +EXPORT_SYMBOL vmlinux 0xa0094f97 __skb_flow_get_ports EXPORT_SYMBOL vmlinux 0xa00aca2a dql_completed -EXPORT_SYMBOL vmlinux 0xa01634a6 gnet_stats_copy_app -EXPORT_SYMBOL vmlinux 0xa01895de tcp_enter_cwr EXPORT_SYMBOL vmlinux 0xa01d3df6 font_vga_8x16 -EXPORT_SYMBOL vmlinux 0xa01fbc7e nf_register_queue_handler +EXPORT_SYMBOL vmlinux 0xa01e65e4 crypto_sha1_update EXPORT_SYMBOL vmlinux 0xa022c739 call_usermodehelper_setup -EXPORT_SYMBOL vmlinux 0xa022e457 kernel_sendpage_locked -EXPORT_SYMBOL vmlinux 0xa0280d76 dev_uc_sync_multiple EXPORT_SYMBOL vmlinux 0xa02aa74a __cond_resched_lock +EXPORT_SYMBOL vmlinux 0xa02c5430 ip6_frag_next EXPORT_SYMBOL vmlinux 0xa033d747 next_arg -EXPORT_SYMBOL vmlinux 0xa03a6f7d jbd2_journal_force_commit EXPORT_SYMBOL vmlinux 0xa0436e98 in6addr_linklocal_allnodes +EXPORT_SYMBOL vmlinux 0xa04e16b5 serio_unregister_child_port EXPORT_SYMBOL vmlinux 0xa057df8f twl_set_regcache_bypass -EXPORT_SYMBOL vmlinux 0xa05ab060 __nd_driver_register +EXPORT_SYMBOL vmlinux 0xa058c85f drop_super EXPORT_SYMBOL vmlinux 0xa05b6be2 psched_ppscfg_precompute EXPORT_SYMBOL vmlinux 0xa07a37f0 memchr EXPORT_SYMBOL vmlinux 0xa07d1b3c tasklet_setup EXPORT_SYMBOL vmlinux 0xa084749a __bitmap_or EXPORT_SYMBOL vmlinux 0xa084f79f cpumask_next_wrap +EXPORT_SYMBOL vmlinux 0xa08961cb phy_config_aneg EXPORT_SYMBOL vmlinux 0xa095e02e generic_check_addressable -EXPORT_SYMBOL vmlinux 0xa09efb53 blk_mq_alloc_request +EXPORT_SYMBOL vmlinux 0xa099f73d vme_irq_generate EXPORT_SYMBOL vmlinux 0xa0ae1e73 siphash_3u64 EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 -EXPORT_SYMBOL vmlinux 0xa0b48991 dev_deactivate -EXPORT_SYMBOL vmlinux 0xa0b89fad inode_init_owner +EXPORT_SYMBOL vmlinux 0xa0be2358 fault_in_iov_iter_writeable EXPORT_SYMBOL vmlinux 0xa0d87339 qdisc_get_rtab EXPORT_SYMBOL vmlinux 0xa0dad88e netdev_adjacent_get_private -EXPORT_SYMBOL vmlinux 0xa0dc9bad clear_nlink +EXPORT_SYMBOL vmlinux 0xa0e826d6 rtc_add_group 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 0xa0f79d34 tty_port_lower_dtr_rts EXPORT_SYMBOL vmlinux 0xa0fbac79 wake_up_bit -EXPORT_SYMBOL vmlinux 0xa10017b2 qdisc_watchdog_cancel EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max -EXPORT_SYMBOL vmlinux 0xa10962d7 phy_get_pause -EXPORT_SYMBOL vmlinux 0xa12acc3d inet6_protos -EXPORT_SYMBOL vmlinux 0xa1331427 ll_rw_block +EXPORT_SYMBOL vmlinux 0xa1121f36 unix_get_socket +EXPORT_SYMBOL vmlinux 0xa13da2e5 netdev_upper_get_next_dev_rcu EXPORT_SYMBOL vmlinux 0xa13e780a gen_replace_estimator -EXPORT_SYMBOL vmlinux 0xa1439c7c pci_select_bars -EXPORT_SYMBOL vmlinux 0xa15c5e95 clear_bdi_congested -EXPORT_SYMBOL vmlinux 0xa1688ebd sk_capable -EXPORT_SYMBOL vmlinux 0xa16faa07 write_dirty_buffer -EXPORT_SYMBOL vmlinux 0xa172b90a disk_stack_limits -EXPORT_SYMBOL vmlinux 0xa189f4f7 unregister_netdevice_queue -EXPORT_SYMBOL vmlinux 0xa1a1de81 __lock_buffer -EXPORT_SYMBOL vmlinux 0xa1a86e2a dentry_path_raw -EXPORT_SYMBOL vmlinux 0xa1aa47a5 xfrm_lookup_with_ifid -EXPORT_SYMBOL vmlinux 0xa1acb8c0 pcix_get_max_mmrbc -EXPORT_SYMBOL vmlinux 0xa1b3406a configfs_undepend_item -EXPORT_SYMBOL vmlinux 0xa1bca4cd twl6040_get_vibralr_status +EXPORT_SYMBOL vmlinux 0xa17b6900 blk_rq_init +EXPORT_SYMBOL vmlinux 0xa1870cd4 nf_log_trace +EXPORT_SYMBOL vmlinux 0xa19305f9 ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0xa1b44c78 agp_allocate_memory +EXPORT_SYMBOL vmlinux 0xa1b6b407 arch_debugfs_dir EXPORT_SYMBOL vmlinux 0xa1bedd72 amd_iommu_pc_get_max_counters -EXPORT_SYMBOL vmlinux 0xa1c073f1 ps2_command -EXPORT_SYMBOL vmlinux 0xa1ebe7b0 pci_map_rom +EXPORT_SYMBOL vmlinux 0xa1cfdadc ps2_command +EXPORT_SYMBOL vmlinux 0xa1d0e48e vlan_vids_add_by_dev +EXPORT_SYMBOL vmlinux 0xa1d5ffb7 pnp_device_attach +EXPORT_SYMBOL vmlinux 0xa1f405c4 dma_supported EXPORT_SYMBOL vmlinux 0xa2060911 inet_current_timestamp -EXPORT_SYMBOL vmlinux 0xa213f0c2 genphy_read_status +EXPORT_SYMBOL vmlinux 0xa20c97d8 seq_hex_dump +EXPORT_SYMBOL vmlinux 0xa221bf0d pci_release_region EXPORT_SYMBOL vmlinux 0xa2326c49 acpi_remove_table_handler +EXPORT_SYMBOL vmlinux 0xa2365e51 pci_irq_get_affinity EXPORT_SYMBOL vmlinux 0xa23ffc04 groups_sort -EXPORT_SYMBOL vmlinux 0xa24c0ba2 kmem_cache_create EXPORT_SYMBOL vmlinux 0xa24f23d8 __request_module +EXPORT_SYMBOL vmlinux 0xa257f63d sock_no_sendpage_locked +EXPORT_SYMBOL vmlinux 0xa25960a5 scsi_is_host_device EXPORT_SYMBOL vmlinux 0xa25b90ab utf8byte EXPORT_SYMBOL vmlinux 0xa263892b fscrypt_fname_free_buffer -EXPORT_SYMBOL vmlinux 0xa26cb41a __SCK__tp_func_kmem_cache_free -EXPORT_SYMBOL vmlinux 0xa28469ef ip_local_deliver -EXPORT_SYMBOL vmlinux 0xa285004f dquot_destroy +EXPORT_SYMBOL vmlinux 0xa268e8e5 tso_start +EXPORT_SYMBOL vmlinux 0xa2885d57 devm_free_irq EXPORT_SYMBOL vmlinux 0xa28cfcc0 gen_estimator_active -EXPORT_SYMBOL vmlinux 0xa29e5da4 get_tree_keyed -EXPORT_SYMBOL vmlinux 0xa2ae1ab4 vga_con -EXPORT_SYMBOL vmlinux 0xa2b56318 dec_node_page_state -EXPORT_SYMBOL vmlinux 0xa2b8900b i2c_smbus_write_i2c_block_data -EXPORT_SYMBOL vmlinux 0xa2b9b95c flow_block_cb_setup_simple -EXPORT_SYMBOL vmlinux 0xa2bace9c mdiobus_scan -EXPORT_SYMBOL vmlinux 0xa2d6ef83 devm_gen_pool_create -EXPORT_SYMBOL vmlinux 0xa315b4c9 __sk_backlog_rcv -EXPORT_SYMBOL vmlinux 0xa324132a complete_request_key -EXPORT_SYMBOL vmlinux 0xa35b20fb mipi_dsi_dcs_set_tear_off -EXPORT_SYMBOL vmlinux 0xa35fee41 i2c_smbus_write_word_data +EXPORT_SYMBOL vmlinux 0xa2cd114c __SetPageMovable +EXPORT_SYMBOL vmlinux 0xa2e6eafc dquot_acquire +EXPORT_SYMBOL vmlinux 0xa2eb488f alloc_netdev_mqs +EXPORT_SYMBOL vmlinux 0xa2ffb9bb napi_gro_frags +EXPORT_SYMBOL vmlinux 0xa30c642e pci_save_state +EXPORT_SYMBOL vmlinux 0xa31af479 simple_fill_super +EXPORT_SYMBOL vmlinux 0xa3203703 tcp_enter_quickack_mode +EXPORT_SYMBOL vmlinux 0xa3821f1c blk_mq_end_request +EXPORT_SYMBOL vmlinux 0xa3840fda scsi_is_sdev_device EXPORT_SYMBOL vmlinux 0xa38f21b9 amd_iommu_update_ga -EXPORT_SYMBOL vmlinux 0xa390d668 blk_mq_stop_hw_queue -EXPORT_SYMBOL vmlinux 0xa3af869b inet6_unregister_protosw +EXPORT_SYMBOL vmlinux 0xa3ae9415 skb_try_coalesce EXPORT_SYMBOL vmlinux 0xa3b6c0d8 kobject_del EXPORT_SYMBOL vmlinux 0xa3be8342 __ubsan_handle_type_mismatch -EXPORT_SYMBOL vmlinux 0xa3bef98a __blockdev_direct_IO -EXPORT_SYMBOL vmlinux 0xa3e0cd80 pnpacpi_protocol +EXPORT_SYMBOL vmlinux 0xa3d7d86a fib_notifier_ops_unregister +EXPORT_SYMBOL vmlinux 0xa3dd52e3 tc_setup_cb_call +EXPORT_SYMBOL vmlinux 0xa3e2bb60 pm8606_osc_enable EXPORT_SYMBOL vmlinux 0xa3e4f871 acpi_initialize_debugger -EXPORT_SYMBOL vmlinux 0xa3ec8fcf rtnl_link_get_net -EXPORT_SYMBOL vmlinux 0xa3f3c65d __module_get +EXPORT_SYMBOL vmlinux 0xa3f4e4e6 fsync_bdev EXPORT_SYMBOL vmlinux 0xa3fb735a blk_set_default_limits EXPORT_SYMBOL vmlinux 0xa3fea172 sha224_final -EXPORT_SYMBOL vmlinux 0xa40e22ac dev_set_mac_address_user EXPORT_SYMBOL vmlinux 0xa40ff01b acpi_dbg_layer +EXPORT_SYMBOL vmlinux 0xa4120eac rproc_put EXPORT_SYMBOL vmlinux 0xa4191c0b memset_io -EXPORT_SYMBOL vmlinux 0xa42da08d mpage_writepages -EXPORT_SYMBOL vmlinux 0xa42f76b1 mod_zone_page_state -EXPORT_SYMBOL vmlinux 0xa4336263 pci_enable_ptm -EXPORT_SYMBOL vmlinux 0xa433c806 skb_split -EXPORT_SYMBOL vmlinux 0xa43d20f4 devm_request_any_context_irq -EXPORT_SYMBOL vmlinux 0xa44dabda phy_sfp_probe -EXPORT_SYMBOL vmlinux 0xa4593b29 netif_rx_ni -EXPORT_SYMBOL vmlinux 0xa4626512 icmp_ndo_send +EXPORT_SYMBOL vmlinux 0xa426acf3 framebuffer_alloc +EXPORT_SYMBOL vmlinux 0xa43a7867 __lock_buffer +EXPORT_SYMBOL vmlinux 0xa43e950e dcbnl_ieee_notify +EXPORT_SYMBOL vmlinux 0xa44b94cf scsi_partsize +EXPORT_SYMBOL vmlinux 0xa4549762 inet_csk_destroy_sock +EXPORT_SYMBOL vmlinux 0xa4623cf3 xfrm_stateonly_find EXPORT_SYMBOL vmlinux 0xa47a31c8 security_binder_transaction -EXPORT_SYMBOL vmlinux 0xa47c15ce sg_alloc_table_from_pages_segment -EXPORT_SYMBOL vmlinux 0xa47f6a57 super_setup_bdi -EXPORT_SYMBOL vmlinux 0xa4ac467f security_path_mknod -EXPORT_SYMBOL vmlinux 0xa4b17608 netif_set_real_num_queues +EXPORT_SYMBOL vmlinux 0xa49793a3 vfs_link +EXPORT_SYMBOL vmlinux 0xa4a7817e __xfrm_init_state +EXPORT_SYMBOL vmlinux 0xa4a9d367 phy_print_status +EXPORT_SYMBOL vmlinux 0xa4b53012 nf_unregister_net_hooks EXPORT_SYMBOL vmlinux 0xa4b94fea iowrite8_rep -EXPORT_SYMBOL vmlinux 0xa4c107d1 vfs_mknod +EXPORT_SYMBOL vmlinux 0xa4bb8b17 acpi_dev_get_first_match_dev +EXPORT_SYMBOL vmlinux 0xa4c641b4 genphy_loopback EXPORT_SYMBOL vmlinux 0xa4c6afdf kset_unregister -EXPORT_SYMBOL vmlinux 0xa4cd0be0 acpi_device_hid +EXPORT_SYMBOL vmlinux 0xa4cedcee mmc_can_gpio_cd +EXPORT_SYMBOL vmlinux 0xa4cf9d22 dput EXPORT_SYMBOL vmlinux 0xa4d4f0e6 global_cache_flush -EXPORT_SYMBOL vmlinux 0xa4e6feb3 clk_hw_get_clk +EXPORT_SYMBOL vmlinux 0xa4dbd2eb pci_find_resource +EXPORT_SYMBOL vmlinux 0xa4e1b450 __cleancache_put_page EXPORT_SYMBOL vmlinux 0xa4faf62a acpi_disable_gpe -EXPORT_SYMBOL vmlinux 0xa4fb9ae3 register_netdevice -EXPORT_SYMBOL vmlinux 0xa4fbf2fb pci_dev_driver EXPORT_SYMBOL vmlinux 0xa507125e acpi_clear_gpe EXPORT_SYMBOL vmlinux 0xa50a3da7 _find_next_bit EXPORT_SYMBOL vmlinux 0xa50bcff0 x86_cpu_to_apicid -EXPORT_SYMBOL vmlinux 0xa521d3c6 mmc_can_discard EXPORT_SYMBOL vmlinux 0xa52bedf6 xenbus_dev_request_and_reply +EXPORT_SYMBOL vmlinux 0xa53f4323 __skb_recv_udp +EXPORT_SYMBOL vmlinux 0xa545f0bf phy_validate_pause EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color -EXPORT_SYMBOL vmlinux 0xa58bc523 acpi_register_debugger -EXPORT_SYMBOL vmlinux 0xa592769b can_nice +EXPORT_SYMBOL vmlinux 0xa5700515 kthread_stop +EXPORT_SYMBOL vmlinux 0xa577843b nvmem_get_mac_address +EXPORT_SYMBOL vmlinux 0xa58a693e udp_lib_rehash +EXPORT_SYMBOL vmlinux 0xa5953d74 pci_wake_from_d3 EXPORT_SYMBOL vmlinux 0xa5976e4f dev_base_lock +EXPORT_SYMBOL vmlinux 0xa59d7937 xfrm_policy_insert +EXPORT_SYMBOL vmlinux 0xa5a350be pci_fixup_device EXPORT_SYMBOL vmlinux 0xa5ac3e33 ZSTD_DCtxWorkspaceBound -EXPORT_SYMBOL vmlinux 0xa5ad1c9a rproc_elf_get_boot_addr -EXPORT_SYMBOL vmlinux 0xa5adc718 posix_lock_file -EXPORT_SYMBOL vmlinux 0xa5bf5d8b eisa_driver_register -EXPORT_SYMBOL vmlinux 0xa5c22650 netlink_capable -EXPORT_SYMBOL vmlinux 0xa5e04aad netif_tx_stop_all_queues EXPORT_SYMBOL vmlinux 0xa5e55057 rdmsrl_safe_on_cpu -EXPORT_SYMBOL vmlinux 0xa5e5d989 iw_handler_get_spy -EXPORT_SYMBOL vmlinux 0xa5f28302 thermal_cdev_update -EXPORT_SYMBOL vmlinux 0xa5f9d198 alloc_fddidev -EXPORT_SYMBOL vmlinux 0xa606eb39 __ps2_command -EXPORT_SYMBOL vmlinux 0xa616c617 devm_ioremap_np +EXPORT_SYMBOL vmlinux 0xa5ef1863 dma_sync_sg_for_cpu +EXPORT_SYMBOL vmlinux 0xa5f2a041 do_splice_direct +EXPORT_SYMBOL vmlinux 0xa5f36e0e blk_queue_virt_boundary +EXPORT_SYMBOL vmlinux 0xa6040fdf bio_integrity_clone EXPORT_SYMBOL vmlinux 0xa61ced89 qdisc_put_rtab EXPORT_SYMBOL vmlinux 0xa6257a2f complete -EXPORT_SYMBOL vmlinux 0xa64246d3 kernel_sock_shutdown -EXPORT_SYMBOL vmlinux 0xa642db0c iov_iter_bvec +EXPORT_SYMBOL vmlinux 0xa6451767 nf_register_sockopt EXPORT_SYMBOL vmlinux 0xa648e561 __ubsan_handle_shift_out_of_bounds -EXPORT_SYMBOL vmlinux 0xa64c172c qdisc_put_unlocked -EXPORT_SYMBOL vmlinux 0xa64f1f23 thaw_super -EXPORT_SYMBOL vmlinux 0xa66c807c tcp_create_openreq_child -EXPORT_SYMBOL vmlinux 0xa6708233 __invalidate_device +EXPORT_SYMBOL vmlinux 0xa6516ab5 input_mt_sync_frame +EXPORT_SYMBOL vmlinux 0xa66062c3 dquot_scan_active EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid -EXPORT_SYMBOL vmlinux 0xa69564e5 xen_free_unpopulated_pages -EXPORT_SYMBOL vmlinux 0xa698433e sock_no_sendmsg -EXPORT_SYMBOL vmlinux 0xa6b968c5 netdev_notice -EXPORT_SYMBOL vmlinux 0xa6cd9eaa inet_listen -EXPORT_SYMBOL vmlinux 0xa6ec21d0 netdev_class_remove_file_ns -EXPORT_SYMBOL vmlinux 0xa70f1663 phy_do_ioctl_running +EXPORT_SYMBOL vmlinux 0xa6ae0656 ipv6_chk_custom_prefix +EXPORT_SYMBOL vmlinux 0xa6baf620 tcp_md5_hash_key +EXPORT_SYMBOL vmlinux 0xa6c0bfdc vmap +EXPORT_SYMBOL vmlinux 0xa6d30197 cros_ec_cmd_xfer_status +EXPORT_SYMBOL vmlinux 0xa6e96df1 lock_two_nondirectories +EXPORT_SYMBOL vmlinux 0xa6f3f55f jbd2_journal_flush +EXPORT_SYMBOL vmlinux 0xa6fab48e __inode_sub_bytes +EXPORT_SYMBOL vmlinux 0xa6fb46a7 dma_async_tx_descriptor_init +EXPORT_SYMBOL vmlinux 0xa702bb14 mr_mfc_find_any_parent +EXPORT_SYMBOL vmlinux 0xa703ec55 kernel_accept +EXPORT_SYMBOL vmlinux 0xa7058693 padata_do_serial +EXPORT_SYMBOL vmlinux 0xa7063b3a remove_conflicting_pci_framebuffers +EXPORT_SYMBOL vmlinux 0xa709960d rproc_get_by_phandle EXPORT_SYMBOL vmlinux 0xa70fabbe release_evntsel_nmi EXPORT_SYMBOL vmlinux 0xa70fb761 flow_keys_basic_dissector +EXPORT_SYMBOL vmlinux 0xa712fc83 vif_device_init +EXPORT_SYMBOL vmlinux 0xa71612ac ip6_dst_hoplimit +EXPORT_SYMBOL vmlinux 0xa719e1f0 configfs_unregister_default_group EXPORT_SYMBOL vmlinux 0xa71d2e2c ioread16be EXPORT_SYMBOL vmlinux 0xa72035f9 xa_get_order +EXPORT_SYMBOL vmlinux 0xa721f407 __splice_from_pipe +EXPORT_SYMBOL vmlinux 0xa727dda1 __SCK__tp_func_kmem_cache_alloc EXPORT_SYMBOL vmlinux 0xa72cfb7d ioremap_wt -EXPORT_SYMBOL vmlinux 0xa73b2cdf __bforget -EXPORT_SYMBOL vmlinux 0xa74bca5a sock_no_linger EXPORT_SYMBOL vmlinux 0xa74c9877 refcount_dec_and_rtnl_lock -EXPORT_SYMBOL vmlinux 0xa769d17a uart_add_one_port +EXPORT_SYMBOL vmlinux 0xa7568e3e agp_backend_acquire +EXPORT_SYMBOL vmlinux 0xa75714c5 unregister_md_personality +EXPORT_SYMBOL vmlinux 0xa76a1cab mdiobus_is_registered_device +EXPORT_SYMBOL vmlinux 0xa778f974 tcp_close EXPORT_SYMBOL vmlinux 0xa77bfd29 register_inet6addr_validator_notifier -EXPORT_SYMBOL vmlinux 0xa77f44c4 kernel_accept +EXPORT_SYMBOL vmlinux 0xa7875be0 unregister_mii_tstamp_controller EXPORT_SYMBOL vmlinux 0xa78af5f3 ioread32 +EXPORT_SYMBOL vmlinux 0xa791a825 ram_aops EXPORT_SYMBOL vmlinux 0xa796679d __SCT__tp_func_dma_fence_emit -EXPORT_SYMBOL vmlinux 0xa79fe28a proc_symlink -EXPORT_SYMBOL vmlinux 0xa7b51a42 ppp_unregister_channel -EXPORT_SYMBOL vmlinux 0xa7b8578a netif_set_xps_queue -EXPORT_SYMBOL vmlinux 0xa7ca0b10 vme_register_error_handler -EXPORT_SYMBOL vmlinux 0xa7d32b2e tty_port_close_start -EXPORT_SYMBOL vmlinux 0xa7d5bef8 vga_switcheroo_unlock_ddc +EXPORT_SYMBOL vmlinux 0xa798a595 set_disk_ro +EXPORT_SYMBOL vmlinux 0xa7b38c38 __tracepoint_mmap_lock_acquire_returned EXPORT_SYMBOL vmlinux 0xa7d5f92e ida_destroy +EXPORT_SYMBOL vmlinux 0xa7da5e9f sock_gettstamp +EXPORT_SYMBOL vmlinux 0xa7dfa738 flow_block_cb_setup_simple +EXPORT_SYMBOL vmlinux 0xa7e1a424 vlan_vid_del EXPORT_SYMBOL vmlinux 0xa7eedcc4 call_usermodehelper +EXPORT_SYMBOL vmlinux 0xa7f16546 netdev_upper_dev_link +EXPORT_SYMBOL vmlinux 0xa8013bfe skb_eth_push EXPORT_SYMBOL vmlinux 0xa805ecfc acpi_release_global_lock EXPORT_SYMBOL vmlinux 0xa8181adf proc_dointvec +EXPORT_SYMBOL vmlinux 0xa82b4ee4 security_path_mknod EXPORT_SYMBOL vmlinux 0xa836ba02 wrmsr_safe_regs -EXPORT_SYMBOL vmlinux 0xa83e6042 kern_path -EXPORT_SYMBOL vmlinux 0xa83ecf4b pci_scan_root_bus_bridge EXPORT_SYMBOL vmlinux 0xa843805a get_unused_fd_flags EXPORT_SYMBOL vmlinux 0xa84ce9e0 crypto_aes_inv_sbox +EXPORT_SYMBOL vmlinux 0xa84f3304 vfs_fadvise EXPORT_SYMBOL vmlinux 0xa85300fe kobject_get_unless_zero EXPORT_SYMBOL vmlinux 0xa853396b xa_extract +EXPORT_SYMBOL vmlinux 0xa8566d41 blk_sync_queue EXPORT_SYMBOL vmlinux 0xa85a3e6d xa_load -EXPORT_SYMBOL vmlinux 0xa85befe8 __breadahead_gfp -EXPORT_SYMBOL vmlinux 0xa865a4cc dev_remove_pack EXPORT_SYMBOL vmlinux 0xa8694ecd kblockd_schedule_work -EXPORT_SYMBOL vmlinux 0xa88954da pcim_iomap_regions_request_all -EXPORT_SYMBOL vmlinux 0xa8974ef0 phy_find_first +EXPORT_SYMBOL vmlinux 0xa886b2cd gnet_stats_copy_queue +EXPORT_SYMBOL vmlinux 0xa8973578 dev_addr_flush EXPORT_SYMBOL vmlinux 0xa897e3e7 mempool_free EXPORT_SYMBOL vmlinux 0xa89a1cf1 ipmi_dmi_get_slave_addr -EXPORT_SYMBOL vmlinux 0xa8a30e66 agp_free_memory -EXPORT_SYMBOL vmlinux 0xa8b1f6d1 tty_unregister_driver -EXPORT_SYMBOL vmlinux 0xa8ca66a3 ww_mutex_unlock +EXPORT_SYMBOL vmlinux 0xa89b16f4 neigh_ifdown +EXPORT_SYMBOL vmlinux 0xa89c61d6 udp_pre_connect +EXPORT_SYMBOL vmlinux 0xa8ac8048 rtnl_create_link +EXPORT_SYMBOL vmlinux 0xa8b5893e mfd_cell_enable +EXPORT_SYMBOL vmlinux 0xa8bb05ef vfs_dup_fs_context EXPORT_SYMBOL vmlinux 0xa8caa845 clk_bulk_put_all -EXPORT_SYMBOL vmlinux 0xa8cd5566 xfrm_init_replay -EXPORT_SYMBOL vmlinux 0xa8d0d33b dquot_load_quota_inode +EXPORT_SYMBOL vmlinux 0xa8d04863 tcp_md5_do_add +EXPORT_SYMBOL vmlinux 0xa8dde7eb inet_frag_queue_insert +EXPORT_SYMBOL vmlinux 0xa8e1247e genphy_suspend EXPORT_SYMBOL vmlinux 0xa8e6933a qdf2400_e44_present +EXPORT_SYMBOL vmlinux 0xa8f62b00 from_kgid_munged EXPORT_SYMBOL vmlinux 0xa8f6c843 ip_frag_ecn_table -EXPORT_SYMBOL vmlinux 0xa8f769f5 netif_rx_any_context -EXPORT_SYMBOL vmlinux 0xa900a73c inode_init_always -EXPORT_SYMBOL vmlinux 0xa90bc80c input_open_device +EXPORT_SYMBOL vmlinux 0xa90a9c68 ip_options_compile EXPORT_SYMBOL vmlinux 0xa90ca0de flush_rcu_work +EXPORT_SYMBOL vmlinux 0xa915c68e udp_sendmsg EXPORT_SYMBOL vmlinux 0xa916b694 strnlen -EXPORT_SYMBOL vmlinux 0xa91ad5d2 devfreq_monitor_start +EXPORT_SYMBOL vmlinux 0xa9178db8 arp_tbl EXPORT_SYMBOL vmlinux 0xa924b4aa __traceiter_kmem_cache_alloc_node EXPORT_SYMBOL vmlinux 0xa931af8a asm_load_gs_index -EXPORT_SYMBOL vmlinux 0xa931d317 blk_mq_run_hw_queues -EXPORT_SYMBOL vmlinux 0xa934bc4b flow_get_u32_dst -EXPORT_SYMBOL vmlinux 0xa940af18 km_policy_notify +EXPORT_SYMBOL vmlinux 0xa937b668 tcf_em_tree_validate +EXPORT_SYMBOL vmlinux 0xa93bfc46 remove_proc_entry +EXPORT_SYMBOL vmlinux 0xa946b56b security_path_rename +EXPORT_SYMBOL vmlinux 0xa9488db5 tty_port_close_end EXPORT_SYMBOL vmlinux 0xa94a09bb mem_section -EXPORT_SYMBOL vmlinux 0xa95ca9a4 generic_perform_write +EXPORT_SYMBOL vmlinux 0xa94a63ed __napi_alloc_skb +EXPORT_SYMBOL vmlinux 0xa94d49a8 start_tty +EXPORT_SYMBOL vmlinux 0xa952927e pci_restore_state +EXPORT_SYMBOL vmlinux 0xa95a173d jbd2_journal_abort EXPORT_SYMBOL vmlinux 0xa965ca81 reciprocal_value EXPORT_SYMBOL vmlinux 0xa976957d bitmap_remap EXPORT_SYMBOL vmlinux 0xa9785b49 cpu_core_map -EXPORT_SYMBOL vmlinux 0xa97f6617 tty_lock +EXPORT_SYMBOL vmlinux 0xa982616e vfs_parse_fs_param_source +EXPORT_SYMBOL vmlinux 0xa99a901f qdisc_hash_add EXPORT_SYMBOL vmlinux 0xa99b39c2 prandom_bytes +EXPORT_SYMBOL vmlinux 0xa9a8e571 configfs_unregister_subsystem +EXPORT_SYMBOL vmlinux 0xa9aa5de5 clk_hw_get_clk +EXPORT_SYMBOL vmlinux 0xa9bf8d4a scsi_remove_device +EXPORT_SYMBOL vmlinux 0xa9c53be3 d_splice_alias EXPORT_SYMBOL vmlinux 0xa9c72303 amd_iommu_pc_get_max_banks -EXPORT_SYMBOL vmlinux 0xa9dc1b69 generic_setlease -EXPORT_SYMBOL vmlinux 0xa9e4ca53 netpoll_send_skb -EXPORT_SYMBOL vmlinux 0xa9fcb225 security_inode_copy_up +EXPORT_SYMBOL vmlinux 0xa9c75a71 input_get_timestamp +EXPORT_SYMBOL vmlinux 0xa9da58b6 secpath_set +EXPORT_SYMBOL vmlinux 0xa9e4a091 inet_addr_type +EXPORT_SYMBOL vmlinux 0xa9e91d2d cdev_alloc +EXPORT_SYMBOL vmlinux 0xa9ef01ed mdio_device_register EXPORT_SYMBOL vmlinux 0xaa00fdc0 ec_transaction EXPORT_SYMBOL vmlinux 0xaa0c318b vscnprintf +EXPORT_SYMBOL vmlinux 0xaa1369ab ppp_unit_number EXPORT_SYMBOL vmlinux 0xaa19e4aa _kstrtol -EXPORT_SYMBOL vmlinux 0xaa22eb25 param_set_uint -EXPORT_SYMBOL vmlinux 0xaa2a66c3 clocksource_unregister +EXPORT_SYMBOL vmlinux 0xaa31d356 seg6_hmac_info_lookup EXPORT_SYMBOL vmlinux 0xaa341905 acpi_bios_exception +EXPORT_SYMBOL vmlinux 0xaa35a4f2 register_cdrom +EXPORT_SYMBOL vmlinux 0xaa366274 twl6040_power EXPORT_SYMBOL vmlinux 0xaa44a707 cpumask_next +EXPORT_SYMBOL vmlinux 0xaa46449a backlight_device_unregister +EXPORT_SYMBOL vmlinux 0xaa508a05 t10_pi_type3_ip EXPORT_SYMBOL vmlinux 0xaa6f23ad rfkill_get_led_trigger_name -EXPORT_SYMBOL vmlinux 0xaa7a9d4a mipi_dsi_dcs_read -EXPORT_SYMBOL vmlinux 0xaa83c9a5 scsi_report_bus_reset -EXPORT_SYMBOL vmlinux 0xaa868b3c seq_put_decimal_ll -EXPORT_SYMBOL vmlinux 0xaa8dbf78 skb_recv_datagram +EXPORT_SYMBOL vmlinux 0xaaa026fb param_set_uint EXPORT_SYMBOL vmlinux 0xaaa4b9bc hchacha_block_generic -EXPORT_SYMBOL vmlinux 0xaaa80134 neigh_parms_release +EXPORT_SYMBOL vmlinux 0xaabb51b9 simple_transaction_read +EXPORT_SYMBOL vmlinux 0xaac85222 md_bitmap_start_sync 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 0xaae81ae6 _dev_notice -EXPORT_SYMBOL vmlinux 0xaae838d2 mfd_cell_disable +EXPORT_SYMBOL vmlinux 0xaadabb63 find_inode_by_ino_rcu EXPORT_SYMBOL vmlinux 0xaae8ab0e acpi_bus_power_manageable -EXPORT_SYMBOL vmlinux 0xaaee6893 security_inode_setsecctx +EXPORT_SYMBOL vmlinux 0xaaf9dc36 netdev_get_xmit_slave EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp -EXPORT_SYMBOL vmlinux 0xab116b1b release_pages -EXPORT_SYMBOL vmlinux 0xab146063 mipi_dsi_host_register -EXPORT_SYMBOL vmlinux 0xab178923 invalidate_mapping_pages -EXPORT_SYMBOL vmlinux 0xab1e20fe dev_uc_unsync -EXPORT_SYMBOL vmlinux 0xab245a14 fwnode_mdiobus_phy_device_register -EXPORT_SYMBOL vmlinux 0xab26269a ata_link_printk +EXPORT_SYMBOL vmlinux 0xab15a59a phy_ethtool_get_eee +EXPORT_SYMBOL vmlinux 0xab16ff6a rproc_report_crash +EXPORT_SYMBOL vmlinux 0xab19c5b0 __skb_vlan_pop +EXPORT_SYMBOL vmlinux 0xab1aaf48 clk_bulk_get EXPORT_SYMBOL vmlinux 0xab3697e4 irq_poll_init EXPORT_SYMBOL vmlinux 0xab3b75ea vme_dma_pattern_attribute -EXPORT_SYMBOL vmlinux 0xab4c8e10 input_set_timestamp +EXPORT_SYMBOL vmlinux 0xab472892 pci_scan_root_bus_bridge EXPORT_SYMBOL vmlinux 0xab600421 probe_irq_off -EXPORT_SYMBOL vmlinux 0xab624ba5 ps2_cmd_aborted EXPORT_SYMBOL vmlinux 0xab63baa5 unregister_inetaddr_validator_notifier -EXPORT_SYMBOL vmlinux 0xab6495b4 tcp_poll EXPORT_SYMBOL vmlinux 0xab65ed80 set_memory_uc -EXPORT_SYMBOL vmlinux 0xab65ee58 gnet_stats_start_copy_compat EXPORT_SYMBOL vmlinux 0xab67a0ac dql_init +EXPORT_SYMBOL vmlinux 0xab6c9cdf kthread_create_on_node +EXPORT_SYMBOL vmlinux 0xab6d5b3b hex_to_bin EXPORT_SYMBOL vmlinux 0xab781570 fb_get_options -EXPORT_SYMBOL vmlinux 0xaba24133 scsi_get_host_dev -EXPORT_SYMBOL vmlinux 0xabbdaeaf ip_frag_init -EXPORT_SYMBOL vmlinux 0xabbe894f unregister_console -EXPORT_SYMBOL vmlinux 0xabbf0e00 inet6_ioctl -EXPORT_SYMBOL vmlinux 0xabe12780 param_set_hexint -EXPORT_SYMBOL vmlinux 0xabe2c194 skb_udp_tunnel_segment -EXPORT_SYMBOL vmlinux 0xabe635b7 __f_setown -EXPORT_SYMBOL vmlinux 0xabea8004 __alloc_skb +EXPORT_SYMBOL vmlinux 0xab8758c0 generic_file_mmap +EXPORT_SYMBOL vmlinux 0xab8a66f4 ihold +EXPORT_SYMBOL vmlinux 0xab8ca870 phy_drivers_unregister +EXPORT_SYMBOL vmlinux 0xab992ada input_open_device +EXPORT_SYMBOL vmlinux 0xab9b74ee __dquot_transfer +EXPORT_SYMBOL vmlinux 0xabc94da7 netdev_has_upper_dev +EXPORT_SYMBOL vmlinux 0xabd11fef __traceiter_mmap_lock_released +EXPORT_SYMBOL vmlinux 0xabd94e6d nd_device_notify +EXPORT_SYMBOL vmlinux 0xabe07f45 __nd_driver_register EXPORT_SYMBOL vmlinux 0xabeb9438 skb_flow_dissector_init EXPORT_SYMBOL vmlinux 0xabf32f29 utf16s_to_utf8s -EXPORT_SYMBOL vmlinux 0xac00f553 bio_split +EXPORT_SYMBOL vmlinux 0xabf361df lookup_one_len_unlocked +EXPORT_SYMBOL vmlinux 0xac050887 flow_rule_match_cvlan +EXPORT_SYMBOL vmlinux 0xac091f19 phy_remove_link_mode +EXPORT_SYMBOL vmlinux 0xac169542 register_console EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier -EXPORT_SYMBOL vmlinux 0xac295608 scsi_host_get -EXPORT_SYMBOL vmlinux 0xac2af313 filemap_fdatawait_keep_errors EXPORT_SYMBOL vmlinux 0xac3201b0 udp_flow_hashrnd -EXPORT_SYMBOL vmlinux 0xac4b1465 devfreq_resume_device +EXPORT_SYMBOL vmlinux 0xac372ab8 jbd2_fc_release_bufs +EXPORT_SYMBOL vmlinux 0xac3993c7 tty_name EXPORT_SYMBOL vmlinux 0xac537ac2 percpu_counter_destroy EXPORT_SYMBOL vmlinux 0xac5fcec0 in4_pton -EXPORT_SYMBOL vmlinux 0xac6d3aae param_ops_invbool -EXPORT_SYMBOL vmlinux 0xac8192cc acpi_notifier_call_chain +EXPORT_SYMBOL vmlinux 0xac63a9f0 tty_do_resize +EXPORT_SYMBOL vmlinux 0xac80faec is_nd_pfn EXPORT_SYMBOL vmlinux 0xac8597d5 mb_cache_entry_get -EXPORT_SYMBOL vmlinux 0xac87726f security_d_instantiate -EXPORT_SYMBOL vmlinux 0xac87f4f8 tty_devnum -EXPORT_SYMBOL vmlinux 0xac8e3119 inet_csk_prepare_forced_close +EXPORT_SYMBOL vmlinux 0xac9f2dde skb_get_hash_perturb EXPORT_SYMBOL vmlinux 0xacaa4c72 dma_fence_match_context EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu -EXPORT_SYMBOL vmlinux 0xacac1f43 dev_change_flags -EXPORT_SYMBOL vmlinux 0xacaf154b security_path_rename -EXPORT_SYMBOL vmlinux 0xacb2b7d1 redraw_screen -EXPORT_SYMBOL vmlinux 0xacc9697e ip6_mtu -EXPORT_SYMBOL vmlinux 0xaccfd44c __mod_zone_page_state -EXPORT_SYMBOL vmlinux 0xacd7b94e xfrm_lookup_route +EXPORT_SYMBOL vmlinux 0xacbce0d7 vc_cons +EXPORT_SYMBOL vmlinux 0xacc537ff md_bitmap_cond_end_sync EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache -EXPORT_SYMBOL vmlinux 0xacda50d8 sock_recvmsg EXPORT_SYMBOL vmlinux 0xacddd806 ptp_get_vclocks_index EXPORT_SYMBOL vmlinux 0xacea8173 acpi_debug_print EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup EXPORT_SYMBOL vmlinux 0xacf649bf audit_log_task_info EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex -EXPORT_SYMBOL vmlinux 0xad065cf9 generic_parse_monolithic +EXPORT_SYMBOL vmlinux 0xad0fdde5 flow_rule_match_ports EXPORT_SYMBOL vmlinux 0xad1036a2 amd_iommu_activate_guest_mode -EXPORT_SYMBOL vmlinux 0xad2951a9 ex_handler_rdmsr_unsafe +EXPORT_SYMBOL vmlinux 0xad1850f3 free_task EXPORT_SYMBOL vmlinux 0xad357133 __traceiter_kmalloc_node +EXPORT_SYMBOL vmlinux 0xad51c942 ip_ct_attach EXPORT_SYMBOL vmlinux 0xad536c91 x86_cpu_to_acpiid -EXPORT_SYMBOL vmlinux 0xad655e54 __dquot_transfer +EXPORT_SYMBOL vmlinux 0xad5c99cf del_gendisk +EXPORT_SYMBOL vmlinux 0xad5f7fc4 build_skb_around +EXPORT_SYMBOL vmlinux 0xad6840fb super_setup_bdi EXPORT_SYMBOL vmlinux 0xad6ba40e radix_tree_tag_get EXPORT_SYMBOL vmlinux 0xad73041f autoremove_wake_function -EXPORT_SYMBOL vmlinux 0xad8a7206 is_acpi_device_node -EXPORT_SYMBOL vmlinux 0xad8fd7d6 pci_bus_write_config_dword EXPORT_SYMBOL vmlinux 0xad9901ae bit_waitqueue EXPORT_SYMBOL vmlinux 0xad995dac netdev_stats_to_stats64 -EXPORT_SYMBOL vmlinux 0xad9ccab3 netdev_printk +EXPORT_SYMBOL vmlinux 0xada0a125 tcp_init_sock EXPORT_SYMBOL vmlinux 0xada31e57 gen_pool_dma_alloc_align -EXPORT_SYMBOL vmlinux 0xadb6f02c param_ops_hexint +EXPORT_SYMBOL vmlinux 0xadab2d73 blk_mq_delay_kick_requeue_list +EXPORT_SYMBOL vmlinux 0xadb94b89 unpin_user_page EXPORT_SYMBOL vmlinux 0xadbeed61 mipi_dsi_packet_format_is_long EXPORT_SYMBOL vmlinux 0xadc044b7 vfio_set_irqs_validate_and_prepare +EXPORT_SYMBOL vmlinux 0xadc14fd0 d_set_d_op EXPORT_SYMBOL vmlinux 0xadcba50b ZSTD_findFrameCompressedSize -EXPORT_SYMBOL vmlinux 0xadcc1ac1 d_invalidate EXPORT_SYMBOL vmlinux 0xadd139d4 rfs_needed -EXPORT_SYMBOL vmlinux 0xaddee789 simple_write_begin -EXPORT_SYMBOL vmlinux 0xadf70af3 mini_qdisc_pair_init +EXPORT_SYMBOL vmlinux 0xadd1431d page_mapped +EXPORT_SYMBOL vmlinux 0xade33262 pm860x_page_bulk_read +EXPORT_SYMBOL vmlinux 0xadeafcde phy_driver_register +EXPORT_SYMBOL vmlinux 0xadefaddb unregister_console EXPORT_SYMBOL vmlinux 0xadfdfcef __bitmap_andnot EXPORT_SYMBOL vmlinux 0xae04012c __vmalloc -EXPORT_SYMBOL vmlinux 0xae2ccd55 netif_napi_add +EXPORT_SYMBOL vmlinux 0xae243cde filemap_check_errors +EXPORT_SYMBOL vmlinux 0xae2d69d1 shmem_aops +EXPORT_SYMBOL vmlinux 0xae2f5bb6 netif_receive_skb +EXPORT_SYMBOL vmlinux 0xae3010c7 pci_bus_claim_resources EXPORT_SYMBOL vmlinux 0xae316c11 icmpv6_err_convert -EXPORT_SYMBOL vmlinux 0xae3e22af blk_mq_requeue_request -EXPORT_SYMBOL vmlinux 0xae4109ad dentry_open -EXPORT_SYMBOL vmlinux 0xae494844 netdev_pick_tx -EXPORT_SYMBOL vmlinux 0xae53ec45 set_posix_acl +EXPORT_SYMBOL vmlinux 0xae31c88a dev_pre_changeaddr_notify +EXPORT_SYMBOL vmlinux 0xae323df4 bio_free_pages +EXPORT_SYMBOL vmlinux 0xae327b2e __SCK__tp_func_spi_transfer_stop +EXPORT_SYMBOL vmlinux 0xae3ff1c4 input_enable_softrepeat +EXPORT_SYMBOL vmlinux 0xae54fefd netdev_info EXPORT_SYMBOL vmlinux 0xae5a04bb acpi_evaluate_dsm -EXPORT_SYMBOL vmlinux 0xae6880a3 i2c_add_adapter -EXPORT_SYMBOL vmlinux 0xae78034e unregister_netdevice_notifier_dev_net -EXPORT_SYMBOL vmlinux 0xaea75138 begin_new_exec +EXPORT_SYMBOL vmlinux 0xae801c9b backlight_device_set_brightness +EXPORT_SYMBOL vmlinux 0xaea748aa sock_i_ino +EXPORT_SYMBOL vmlinux 0xaea9db76 sdev_disable_disk_events EXPORT_SYMBOL vmlinux 0xaeac049a generate_random_guid EXPORT_SYMBOL vmlinux 0xaeb082ad _raw_read_unlock_bh -EXPORT_SYMBOL vmlinux 0xaebacfd4 to_nd_dax +EXPORT_SYMBOL vmlinux 0xaeba09ab pcix_get_max_mmrbc EXPORT_SYMBOL vmlinux 0xaebd12f0 acpi_get_name -EXPORT_SYMBOL vmlinux 0xaec315f6 seq_escape_mem -EXPORT_SYMBOL vmlinux 0xaec7a564 twl6040_get_pll -EXPORT_SYMBOL vmlinux 0xaecaa908 security_lock_kernel_down -EXPORT_SYMBOL vmlinux 0xaed38585 vme_unregister_driver -EXPORT_SYMBOL vmlinux 0xaee7d163 mntget -EXPORT_SYMBOL vmlinux 0xaf0d7c80 security_sock_graft -EXPORT_SYMBOL vmlinux 0xaf136b8f single_open_size -EXPORT_SYMBOL vmlinux 0xaf24a5c7 __udp_disconnect -EXPORT_SYMBOL vmlinux 0xaf2885ec file_remove_privs -EXPORT_SYMBOL vmlinux 0xaf33f207 mdiobus_read_nested +EXPORT_SYMBOL vmlinux 0xaee30fbb genl_register_family +EXPORT_SYMBOL vmlinux 0xaf1f736c csum_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0xaf1feeba sock_common_recvmsg +EXPORT_SYMBOL vmlinux 0xaf23f04f mipi_dsi_dcs_get_display_brightness +EXPORT_SYMBOL vmlinux 0xaf2da7ce dump_skip EXPORT_SYMBOL vmlinux 0xaf354bbe cpu_tss_rw +EXPORT_SYMBOL vmlinux 0xaf37b2c1 dm_table_get_mode +EXPORT_SYMBOL vmlinux 0xaf38b07f i2c_smbus_write_word_data EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level -EXPORT_SYMBOL vmlinux 0xaf4d1097 bio_copy_data_iter -EXPORT_SYMBOL vmlinux 0xaf505d19 __icmp_send -EXPORT_SYMBOL vmlinux 0xaf516365 memory_cgrp_subsys -EXPORT_SYMBOL vmlinux 0xaf53df9a udp_ioctl -EXPORT_SYMBOL vmlinux 0xaf72c504 bdi_set_max_ratio -EXPORT_SYMBOL vmlinux 0xaf74820d netdev_bind_sb_channel_queue -EXPORT_SYMBOL vmlinux 0xaf8a6a30 vma_set_file -EXPORT_SYMBOL vmlinux 0xaf8cf881 ata_scsi_cmd_error_handler -EXPORT_SYMBOL vmlinux 0xaf8f3f46 tcp_md5_hash_skb_data -EXPORT_SYMBOL vmlinux 0xafa90a57 phy_ethtool_get_sset_count +EXPORT_SYMBOL vmlinux 0xaf574961 tcp_v4_send_check +EXPORT_SYMBOL vmlinux 0xaf5757d6 param_set_hexint +EXPORT_SYMBOL vmlinux 0xaf69bcb2 inet_del_offload +EXPORT_SYMBOL vmlinux 0xaf80382f get_tree_single_reconf +EXPORT_SYMBOL vmlinux 0xaf8321b8 param_ops_charp EXPORT_SYMBOL vmlinux 0xafb864c1 refcount_dec_and_lock_irqsave +EXPORT_SYMBOL vmlinux 0xafbc602a vlan_ioctl_set EXPORT_SYMBOL vmlinux 0xafc08054 dotdot_name -EXPORT_SYMBOL vmlinux 0xafc9e891 xsk_set_rx_need_wakeup +EXPORT_SYMBOL vmlinux 0xafc8142e configfs_unregister_group +EXPORT_SYMBOL vmlinux 0xafcc0036 phy_get_eee_err EXPORT_SYMBOL vmlinux 0xafd5ff2c amd_iommu_v2_supported EXPORT_SYMBOL vmlinux 0xafd744c6 __x86_indirect_thunk_rbp -EXPORT_SYMBOL vmlinux 0xafe17efa mdio_find_bus -EXPORT_SYMBOL vmlinux 0xafe9da55 dquot_file_open -EXPORT_SYMBOL vmlinux 0xafec871c elv_bio_merge_ok -EXPORT_SYMBOL vmlinux 0xb018b654 param_set_long +EXPORT_SYMBOL vmlinux 0xaff7c9d9 zap_page_range +EXPORT_SYMBOL vmlinux 0xafff172c inet_release EXPORT_SYMBOL vmlinux 0xb01bebf9 xfrm_get_acqseq +EXPORT_SYMBOL vmlinux 0xb02aa907 pm_vt_switch_unregister EXPORT_SYMBOL vmlinux 0xb02df2d6 __traceiter_rdpmc -EXPORT_SYMBOL vmlinux 0xb0437bf0 dump_skip_to +EXPORT_SYMBOL vmlinux 0xb040813f fifo_set_limit EXPORT_SYMBOL vmlinux 0xb04a43ad __xa_alloc_cyclic -EXPORT_SYMBOL vmlinux 0xb0549baa kmalloc_caches +EXPORT_SYMBOL vmlinux 0xb04ffb61 dm_table_get_md +EXPORT_SYMBOL vmlinux 0xb05b909a take_dentry_name_snapshot EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max -EXPORT_SYMBOL vmlinux 0xb0655c56 page_symlink -EXPORT_SYMBOL vmlinux 0xb071648a pci_rebar_get_possible_sizes -EXPORT_SYMBOL vmlinux 0xb076618a lru_cache_add -EXPORT_SYMBOL vmlinux 0xb0902e58 devm_ioport_unmap -EXPORT_SYMBOL vmlinux 0xb0963994 page_cache_next_miss +EXPORT_SYMBOL vmlinux 0xb06703b9 param_ops_hexint +EXPORT_SYMBOL vmlinux 0xb06dfbdd pps_register_source +EXPORT_SYMBOL vmlinux 0xb075722d ilookup5_nowait +EXPORT_SYMBOL vmlinux 0xb0916ea8 unregister_binfmt +EXPORT_SYMBOL vmlinux 0xb0954b44 wireless_spy_update EXPORT_SYMBOL vmlinux 0xb0a0da0c rational_best_approximation -EXPORT_SYMBOL vmlinux 0xb0a87560 jbd2_journal_force_commit_nested -EXPORT_SYMBOL vmlinux 0xb0b6f4cd dquot_get_state +EXPORT_SYMBOL vmlinux 0xb0ab275c kfree_skb_partial EXPORT_SYMBOL vmlinux 0xb0c5e247 lockref_put_return +EXPORT_SYMBOL vmlinux 0xb0d0e7e7 d_obtain_root +EXPORT_SYMBOL vmlinux 0xb0d60f81 devm_request_resource +EXPORT_SYMBOL vmlinux 0xb0e09886 __neigh_for_each_release EXPORT_SYMBOL vmlinux 0xb0e10781 get_option EXPORT_SYMBOL vmlinux 0xb0e602eb memmove +EXPORT_SYMBOL vmlinux 0xb0ecfd6b pci_stop_and_remove_bus_device EXPORT_SYMBOL vmlinux 0xb0f389ee utf8_normalize -EXPORT_SYMBOL vmlinux 0xb0f803ed unix_get_socket +EXPORT_SYMBOL vmlinux 0xb10df160 devm_devfreq_add_device EXPORT_SYMBOL vmlinux 0xb10e7df4 __kfifo_dma_in_prepare -EXPORT_SYMBOL vmlinux 0xb11c0b31 inet_csk_reqsk_queue_drop_and_put +EXPORT_SYMBOL vmlinux 0xb1148609 netdev_master_upper_dev_get +EXPORT_SYMBOL vmlinux 0xb11cb947 invalidate_bdev EXPORT_SYMBOL vmlinux 0xb121390a probe_irq_on +EXPORT_SYMBOL vmlinux 0xb1218744 inet_register_protosw EXPORT_SYMBOL vmlinux 0xb12cbacb fb_unregister_client +EXPORT_SYMBOL vmlinux 0xb1307368 scsi_free_host_dev EXPORT_SYMBOL vmlinux 0xb1342cdb _raw_read_lock_irqsave -EXPORT_SYMBOL vmlinux 0xb1355224 __skb_recv_udp -EXPORT_SYMBOL vmlinux 0xb13dfb9b vfs_fsync -EXPORT_SYMBOL vmlinux 0xb1449a7c __vfs_setxattr EXPORT_SYMBOL vmlinux 0xb14ab1ef hdmi_audio_infoframe_init EXPORT_SYMBOL vmlinux 0xb14fc46a find_next_clump8 -EXPORT_SYMBOL vmlinux 0xb161315a tcf_idr_release -EXPORT_SYMBOL vmlinux 0xb18000e3 pcie_ptm_enabled +EXPORT_SYMBOL vmlinux 0xb15263cb genphy_read_status_fixed +EXPORT_SYMBOL vmlinux 0xb15b93df md_reload_sb +EXPORT_SYMBOL vmlinux 0xb173cad6 iw_handler_set_thrspy +EXPORT_SYMBOL vmlinux 0xb175123f __quota_error +EXPORT_SYMBOL vmlinux 0xb18c05a6 pci_scan_bus EXPORT_SYMBOL vmlinux 0xb19a5453 __per_cpu_offset +EXPORT_SYMBOL vmlinux 0xb1a8debb ppp_register_channel +EXPORT_SYMBOL vmlinux 0xb1b2b1de amd_iommu_device_info +EXPORT_SYMBOL vmlinux 0xb1be5a8c rproc_remove_subdev EXPORT_SYMBOL vmlinux 0xb1c3a01a oops_in_progress -EXPORT_SYMBOL vmlinux 0xb1d39101 eth_validate_addr EXPORT_SYMBOL vmlinux 0xb1d3a15c blk_finish_plug EXPORT_SYMBOL vmlinux 0xb1ddf995 jiffies_64_to_clock_t -EXPORT_SYMBOL vmlinux 0xb1e6c5b3 phy_start_aneg -EXPORT_SYMBOL vmlinux 0xb2053dd4 register_tcf_proto_ops -EXPORT_SYMBOL vmlinux 0xb207de87 register_cdrom -EXPORT_SYMBOL vmlinux 0xb21340e1 mmc_sw_reset +EXPORT_SYMBOL vmlinux 0xb201ec34 scsi_dma_unmap EXPORT_SYMBOL vmlinux 0xb219d56c wbinvd_on_cpu -EXPORT_SYMBOL vmlinux 0xb21fa756 xsk_get_pool_from_qid +EXPORT_SYMBOL vmlinux 0xb226e891 md_finish_reshape 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 0xb23638c8 ihold -EXPORT_SYMBOL vmlinux 0xb247ec02 dmam_pool_create +EXPORT_SYMBOL vmlinux 0xb233ac22 iov_iter_get_pages_alloc +EXPORT_SYMBOL vmlinux 0xb249a24c __starget_for_each_device EXPORT_SYMBOL vmlinux 0xb2601486 __SCT__tp_func_dma_fence_enable_signal -EXPORT_SYMBOL vmlinux 0xb263183e vc_cons -EXPORT_SYMBOL vmlinux 0xb2695d0f security_sk_clone -EXPORT_SYMBOL vmlinux 0xb26dec80 dev_mc_flush -EXPORT_SYMBOL vmlinux 0xb2708afb set_anon_super -EXPORT_SYMBOL vmlinux 0xb272a3ba iov_iter_get_pages -EXPORT_SYMBOL vmlinux 0xb27fe846 ps2_drain -EXPORT_SYMBOL vmlinux 0xb295949f super_setup_bdi_name -EXPORT_SYMBOL vmlinux 0xb2ab53ee __skb_get_hash -EXPORT_SYMBOL vmlinux 0xb2b93ba5 flow_rule_match_enc_opts +EXPORT_SYMBOL vmlinux 0xb265b615 sock_create_kern +EXPORT_SYMBOL vmlinux 0xb2781d12 dma_unmap_page_attrs +EXPORT_SYMBOL vmlinux 0xb2b43b86 vfs_clone_file_range +EXPORT_SYMBOL vmlinux 0xb2b5a9cd ipv4_mtu EXPORT_SYMBOL vmlinux 0xb2bcb088 acpi_current_gpe_count -EXPORT_SYMBOL vmlinux 0xb2bed059 noop_fsync EXPORT_SYMBOL vmlinux 0xb2c96edc convert_art_ns_to_tsc +EXPORT_SYMBOL vmlinux 0xb2dab6db xfrm_policy_walk EXPORT_SYMBOL vmlinux 0xb2dfdf3c kset_register EXPORT_SYMBOL vmlinux 0xb2f35c6a xxh64 EXPORT_SYMBOL vmlinux 0xb2f579c7 __cpuhp_remove_state_cpuslocked EXPORT_SYMBOL vmlinux 0xb2f74fb6 intel_gmch_remove +EXPORT_SYMBOL vmlinux 0xb2fa9d36 flow_rule_match_basic EXPORT_SYMBOL vmlinux 0xb2fabf63 efi EXPORT_SYMBOL vmlinux 0xb2fcb56d queue_delayed_work_on EXPORT_SYMBOL vmlinux 0xb2fd5ceb __put_user_4 +EXPORT_SYMBOL vmlinux 0xb2fe07f7 mipi_dsi_detach EXPORT_SYMBOL vmlinux 0xb308c97d wait_woken -EXPORT_SYMBOL vmlinux 0xb3092a57 skb_trim EXPORT_SYMBOL vmlinux 0xb30b9822 vme_master_set -EXPORT_SYMBOL vmlinux 0xb31fe737 update_devfreq +EXPORT_SYMBOL vmlinux 0xb31a8a49 fixed_size_llseek EXPORT_SYMBOL vmlinux 0xb320cc0e sg_init_one -EXPORT_SYMBOL vmlinux 0xb3231c70 skb_free_datagram EXPORT_SYMBOL vmlinux 0xb3258f79 __ubsan_handle_type_mismatch_v1 EXPORT_SYMBOL vmlinux 0xb32a5973 acpi_ut_status_exit -EXPORT_SYMBOL vmlinux 0xb32f9e29 kmem_cache_destroy -EXPORT_SYMBOL vmlinux 0xb33192a9 dev_mc_add_global -EXPORT_SYMBOL vmlinux 0xb33c3bbd jbd2_journal_try_to_free_buffers -EXPORT_SYMBOL vmlinux 0xb33f6d39 netif_skb_features -EXPORT_SYMBOL vmlinux 0xb35f4ec3 skb_eth_push +EXPORT_SYMBOL vmlinux 0xb33bbfe2 scsi_target_quiesce +EXPORT_SYMBOL vmlinux 0xb356dd8b mmc_cqe_start_req +EXPORT_SYMBOL vmlinux 0xb365acd2 console_stop +EXPORT_SYMBOL vmlinux 0xb36752ea flow_rule_match_enc_control EXPORT_SYMBOL vmlinux 0xb3687850 out_of_line_wait_on_bit_lock -EXPORT_SYMBOL vmlinux 0xb3692a48 invalidate_inode_buffers +EXPORT_SYMBOL vmlinux 0xb36b566d ip6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0xb36be830 lru_cache_add EXPORT_SYMBOL vmlinux 0xb3863a67 acpi_set_gpe_wake_mask -EXPORT_SYMBOL vmlinux 0xb39225d4 vfs_llseek +EXPORT_SYMBOL vmlinux 0xb39c86c8 open_exec EXPORT_SYMBOL vmlinux 0xb3a2dfdf nmi_panic -EXPORT_SYMBOL vmlinux 0xb3aaa0be dma_resv_init +EXPORT_SYMBOL vmlinux 0xb3a594a3 qdisc_offload_dump_helper +EXPORT_SYMBOL vmlinux 0xb3b17ce2 unregister_nexthop_notifier EXPORT_SYMBOL vmlinux 0xb3bd68cc security_secmark_relabel_packet +EXPORT_SYMBOL vmlinux 0xb3c8c5a3 sdev_enable_disk_events EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string -EXPORT_SYMBOL vmlinux 0xb3eeee1c devm_ioport_map +EXPORT_SYMBOL vmlinux 0xb3d71182 pin_user_pages_locked +EXPORT_SYMBOL vmlinux 0xb3e8089c md_wait_for_blocked_rdev EXPORT_SYMBOL vmlinux 0xb3f49446 kstrtos8_from_user EXPORT_SYMBOL vmlinux 0xb3f548ad kmemdup_nul +EXPORT_SYMBOL vmlinux 0xb3f60218 mipi_dsi_dcs_set_display_brightness EXPORT_SYMBOL vmlinux 0xb3f7646e kthread_should_stop -EXPORT_SYMBOL vmlinux 0xb3f9e0ab security_locked_down EXPORT_SYMBOL vmlinux 0xb4043948 acpi_execute_simple_method -EXPORT_SYMBOL vmlinux 0xb422e9bd jbd2_wait_inode_data +EXPORT_SYMBOL vmlinux 0xb4048390 genl_unregister_family +EXPORT_SYMBOL vmlinux 0xb405092f configfs_remove_default_groups +EXPORT_SYMBOL vmlinux 0xb4129a4d __tracepoint_kmalloc_node +EXPORT_SYMBOL vmlinux 0xb4159e70 __vfs_getxattr EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked -EXPORT_SYMBOL vmlinux 0xb431b5be __tracepoint_dma_fence_enable_signal -EXPORT_SYMBOL vmlinux 0xb45754c4 i2c_verify_adapter +EXPORT_SYMBOL vmlinux 0xb428fb38 netif_skb_features +EXPORT_SYMBOL vmlinux 0xb44f1182 sock_from_file EXPORT_SYMBOL vmlinux 0xb4577003 acpi_dev_present +EXPORT_SYMBOL vmlinux 0xb45abc69 amd_iommu_flush_tlb +EXPORT_SYMBOL vmlinux 0xb4698824 pnp_release_card_device EXPORT_SYMBOL vmlinux 0xb47cca30 csum_ipv6_magic +EXPORT_SYMBOL vmlinux 0xb47e5e5b dmaenginem_async_device_register EXPORT_SYMBOL vmlinux 0xb48d4d22 security_sb_eat_lsm_opts -EXPORT_SYMBOL vmlinux 0xb493a3f9 param_array_ops -EXPORT_SYMBOL vmlinux 0xb4bb46a8 dcb_ieee_getapp_default_prio_mask -EXPORT_SYMBOL vmlinux 0xb4c11287 __tracepoint_kmem_cache_alloc_node -EXPORT_SYMBOL vmlinux 0xb4c9acf7 pnp_is_active -EXPORT_SYMBOL vmlinux 0xb4d2141c ps2_handle_ack -EXPORT_SYMBOL vmlinux 0xb4db4947 tcp_setsockopt -EXPORT_SYMBOL vmlinux 0xb4e1eb72 uart_register_driver -EXPORT_SYMBOL vmlinux 0xb4e5bd2c sync_mapping_buffers +EXPORT_SYMBOL vmlinux 0xb4919b49 xfrm4_rcv +EXPORT_SYMBOL vmlinux 0xb4aa0954 tcp_parse_options +EXPORT_SYMBOL vmlinux 0xb4bec646 dquot_set_dqblk +EXPORT_SYMBOL vmlinux 0xb4c2c266 kill_pid +EXPORT_SYMBOL vmlinux 0xb4cc4da4 simple_open +EXPORT_SYMBOL vmlinux 0xb4da3c7d set_pages_array_uc EXPORT_SYMBOL vmlinux 0xb4f13d2a abort -EXPORT_SYMBOL vmlinux 0xb50d68b4 blk_queue_physical_block_size -EXPORT_SYMBOL vmlinux 0xb516164b tty_port_hangup -EXPORT_SYMBOL vmlinux 0xb5180b08 input_close_device +EXPORT_SYMBOL vmlinux 0xb50e02e8 copy_page_from_iter_atomic +EXPORT_SYMBOL vmlinux 0xb522917e inet6_getname +EXPORT_SYMBOL vmlinux 0xb5246591 eth_type_trans EXPORT_SYMBOL vmlinux 0xb52ee8be intel_gtt_clear_range -EXPORT_SYMBOL vmlinux 0xb52fd81b devfreq_remove_governor +EXPORT_SYMBOL vmlinux 0xb5342ed3 dqput +EXPORT_SYMBOL vmlinux 0xb536753d block_read_full_page EXPORT_SYMBOL vmlinux 0xb53f2810 tcp_sockets_allocated -EXPORT_SYMBOL vmlinux 0xb566bfce devfreq_suspend_device -EXPORT_SYMBOL vmlinux 0xb57164e0 current_time +EXPORT_SYMBOL vmlinux 0xb54a5321 vm_insert_pages +EXPORT_SYMBOL vmlinux 0xb5653f88 ps2_init +EXPORT_SYMBOL vmlinux 0xb56a8c6a inet_csk_accept EXPORT_SYMBOL vmlinux 0xb57343c2 frontswap_shrink -EXPORT_SYMBOL vmlinux 0xb57b3b32 mipi_dsi_dcs_set_page_address -EXPORT_SYMBOL vmlinux 0xb57c0ea7 pm_vt_switch_required EXPORT_SYMBOL vmlinux 0xb58aeaab kernel_cpustat -EXPORT_SYMBOL vmlinux 0xb591e506 phy_ethtool_get_strings -EXPORT_SYMBOL vmlinux 0xb59f5049 __dec_zone_page_state +EXPORT_SYMBOL vmlinux 0xb5918c0e xfrm_policy_unregister_afinfo +EXPORT_SYMBOL vmlinux 0xb593c9a9 udplite_prot EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev -EXPORT_SYMBOL vmlinux 0xb5a8a611 mdio_driver_register EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy EXPORT_SYMBOL vmlinux 0xb5ab892d uv_undefined -EXPORT_SYMBOL vmlinux 0xb5ae7d3a input_register_device EXPORT_SYMBOL vmlinux 0xb5b63711 fileattr_fill_xflags -EXPORT_SYMBOL vmlinux 0xb5bab009 dm_kcopyd_zero -EXPORT_SYMBOL vmlinux 0xb5d1e4cd __traceiter_mmap_lock_acquire_returned +EXPORT_SYMBOL vmlinux 0xb5d9366a flow_rule_match_meta +EXPORT_SYMBOL vmlinux 0xb5e6e069 nf_setsockopt EXPORT_SYMBOL vmlinux 0xb5e73116 flush_delayed_work -EXPORT_SYMBOL vmlinux 0xb5fb8009 scsi_rescan_device -EXPORT_SYMBOL vmlinux 0xb612eafd ata_dev_printk +EXPORT_SYMBOL vmlinux 0xb5ea17c3 i2c_del_driver +EXPORT_SYMBOL vmlinux 0xb5ebe592 nf_hook_slow +EXPORT_SYMBOL vmlinux 0xb6012cff mmc_alloc_host +EXPORT_SYMBOL vmlinux 0xb60ff60e skb_pull EXPORT_SYMBOL vmlinux 0xb61d6fc2 down_read_interruptible -EXPORT_SYMBOL vmlinux 0xb63084ac md_error +EXPORT_SYMBOL vmlinux 0xb61df85e netpoll_send_skb EXPORT_SYMBOL vmlinux 0xb633f115 irq_poll_enable -EXPORT_SYMBOL vmlinux 0xb63a1414 __genphy_config_aneg -EXPORT_SYMBOL vmlinux 0xb63bbe5d wireless_send_event -EXPORT_SYMBOL vmlinux 0xb646238d __post_watch_notification +EXPORT_SYMBOL vmlinux 0xb63f7bc1 vmf_insert_mixed +EXPORT_SYMBOL vmlinux 0xb63ffa32 __skb_warn_lro_forwarding +EXPORT_SYMBOL vmlinux 0xb6452d07 tcp_peek_len EXPORT_SYMBOL vmlinux 0xb654ef65 acpi_os_read_port -EXPORT_SYMBOL vmlinux 0xb65cee0b generic_file_mmap -EXPORT_SYMBOL vmlinux 0xb6708638 truncate_inode_pages EXPORT_SYMBOL vmlinux 0xb674a534 acpi_unmap_cpu +EXPORT_SYMBOL vmlinux 0xb675f979 i2c_smbus_read_block_data EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt EXPORT_SYMBOL vmlinux 0xb67c9280 utf8cursor -EXPORT_SYMBOL vmlinux 0xb67cf224 napi_get_frags +EXPORT_SYMBOL vmlinux 0xb67ca50f dquot_quota_on_mount EXPORT_SYMBOL vmlinux 0xb67fec0e uuid_parse -EXPORT_SYMBOL vmlinux 0xb6842f19 flow_rule_match_icmp -EXPORT_SYMBOL vmlinux 0xb689b912 neigh_destroy EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin +EXPORT_SYMBOL vmlinux 0xb69c5260 netif_rx_any_context +EXPORT_SYMBOL vmlinux 0xb69d6192 acpi_device_set_power +EXPORT_SYMBOL vmlinux 0xb6a87191 sget_fc +EXPORT_SYMBOL vmlinux 0xb6ac3e0b __break_lease EXPORT_SYMBOL vmlinux 0xb6acaa13 phy_sfp_detach -EXPORT_SYMBOL vmlinux 0xb6b1fd8d simple_setattr -EXPORT_SYMBOL vmlinux 0xb6b2cdb1 set_page_dirty -EXPORT_SYMBOL vmlinux 0xb6b3fa8b __pskb_pull_tail -EXPORT_SYMBOL vmlinux 0xb6bfed2f configfs_register_default_group -EXPORT_SYMBOL vmlinux 0xb6c4a2d0 phy_get_eee_err +EXPORT_SYMBOL vmlinux 0xb6b4d182 ip6_route_me_harder +EXPORT_SYMBOL vmlinux 0xb6bd1613 inet6_del_offload EXPORT_SYMBOL vmlinux 0xb6cd5c4c kobject_init -EXPORT_SYMBOL vmlinux 0xb6d96c66 vga_switcheroo_register_audio_client +EXPORT_SYMBOL vmlinux 0xb6cf4090 __f_setown +EXPORT_SYMBOL vmlinux 0xb6df422e i2c_smbus_write_block_data EXPORT_SYMBOL vmlinux 0xb6e36ce2 psched_ratecfg_precompute -EXPORT_SYMBOL vmlinux 0xb6f0d5a7 tcp_v4_destroy_sock +EXPORT_SYMBOL vmlinux 0xb6e59454 udp_poll EXPORT_SYMBOL vmlinux 0xb6fde909 close_fd -EXPORT_SYMBOL vmlinux 0xb7100c30 fd_install +EXPORT_SYMBOL vmlinux 0xb701511f inet_frag_destroy +EXPORT_SYMBOL vmlinux 0xb701c088 inet_csk_delete_keepalive_timer +EXPORT_SYMBOL vmlinux 0xb701e9a3 inet_csk_init_xmit_timers +EXPORT_SYMBOL vmlinux 0xb70dd4da pcim_iomap_regions_request_all EXPORT_SYMBOL vmlinux 0xb71589f0 skip_spaces EXPORT_SYMBOL vmlinux 0xb71ed69f __hw_addr_unsync -EXPORT_SYMBOL vmlinux 0xb736607d genphy_suspend +EXPORT_SYMBOL vmlinux 0xb72726b4 ipv6_chk_addr +EXPORT_SYMBOL vmlinux 0xb72ca311 __kfree_skb EXPORT_SYMBOL vmlinux 0xb737b185 gen_pool_best_fit -EXPORT_SYMBOL vmlinux 0xb73b1628 reuseport_migrate_sock -EXPORT_SYMBOL vmlinux 0xb74586e4 blk_integrity_register EXPORT_SYMBOL vmlinux 0xb7593ddc iosf_mbi_unregister_pmic_bus_access_notifier -EXPORT_SYMBOL vmlinux 0xb77dbeea inet6_add_offload +EXPORT_SYMBOL vmlinux 0xb76859de scm_detach_fds +EXPORT_SYMBOL vmlinux 0xb779cf53 __tracepoint_kmalloc EXPORT_SYMBOL vmlinux 0xb784154f utf8_casefold_hash EXPORT_SYMBOL vmlinux 0xb78debe3 LZ4_decompress_fast_usingDict -EXPORT_SYMBOL vmlinux 0xb79e7731 xfrm_alloc_spi -EXPORT_SYMBOL vmlinux 0xb7b44e4d rproc_of_parse_firmware +EXPORT_SYMBOL vmlinux 0xb7914f3b io_uring_get_socket +EXPORT_SYMBOL vmlinux 0xb792f963 put_ipc_ns +EXPORT_SYMBOL vmlinux 0xb7a56fb5 skb_checksum_setup EXPORT_SYMBOL vmlinux 0xb7c0f443 sort EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags -EXPORT_SYMBOL vmlinux 0xb7d18ca4 vlan_vids_del_by_dev -EXPORT_SYMBOL vmlinux 0xb7e05ce6 __skb_gro_checksum_complete -EXPORT_SYMBOL vmlinux 0xb7ec2cd1 generic_writepages -EXPORT_SYMBOL vmlinux 0xb7f64e19 nvdimm_namespace_locked -EXPORT_SYMBOL vmlinux 0xb8057d6f sched_autogroup_detach -EXPORT_SYMBOL vmlinux 0xb8312646 tcp_rtx_synack +EXPORT_SYMBOL vmlinux 0xb7d05a00 register_framebuffer +EXPORT_SYMBOL vmlinux 0xb7d8d8d6 __dev_get_by_name +EXPORT_SYMBOL vmlinux 0xb7da0932 blk_queue_chunk_sectors +EXPORT_SYMBOL vmlinux 0xb7ebf128 ip6_fraglist_prepare +EXPORT_SYMBOL vmlinux 0xb801951b register_key_type +EXPORT_SYMBOL vmlinux 0xb815494b ip6_frag_init +EXPORT_SYMBOL vmlinux 0xb815bb95 pcie_print_link_status +EXPORT_SYMBOL vmlinux 0xb82f622a vme_unregister_driver EXPORT_SYMBOL vmlinux 0xb83129db ZSTD_decompressContinue -EXPORT_SYMBOL vmlinux 0xb83e41f5 __serio_register_driver -EXPORT_SYMBOL vmlinux 0xb8404f23 nf_reinject -EXPORT_SYMBOL vmlinux 0xb8405dbc pmem_sector_size -EXPORT_SYMBOL vmlinux 0xb841d479 fs_context_for_mount +EXPORT_SYMBOL vmlinux 0xb83d7b55 dma_map_page_attrs +EXPORT_SYMBOL vmlinux 0xb85b5485 register_netdevice EXPORT_SYMBOL vmlinux 0xb868ac5c register_sysrq_key EXPORT_SYMBOL vmlinux 0xb86f74c5 free_cpumask_var -EXPORT_SYMBOL vmlinux 0xb87676a6 phy_detach +EXPORT_SYMBOL vmlinux 0xb87f0b27 xfrm4_rcv_encap EXPORT_SYMBOL vmlinux 0xb88fd035 set_groups -EXPORT_SYMBOL vmlinux 0xb8962d6a sock_queue_err_skb EXPORT_SYMBOL vmlinux 0xb89b6e6b guid_parse EXPORT_SYMBOL vmlinux 0xb8b043f2 kfree_link EXPORT_SYMBOL vmlinux 0xb8b9f817 kmalloc_order_trace -EXPORT_SYMBOL vmlinux 0xb8c351c2 devm_input_allocate_device -EXPORT_SYMBOL vmlinux 0xb8c70658 rtc_add_groups -EXPORT_SYMBOL vmlinux 0xb8cd1d23 kmem_cache_create_usercopy -EXPORT_SYMBOL vmlinux 0xb8d0472d __skb_gso_segment +EXPORT_SYMBOL vmlinux 0xb8bbc9ab jbd2_journal_blocks_per_page +EXPORT_SYMBOL vmlinux 0xb8cb335f d_prune_aliases +EXPORT_SYMBOL vmlinux 0xb8db7d46 mark_info_dirty EXPORT_SYMBOL vmlinux 0xb8e7ce2c __put_user_8 -EXPORT_SYMBOL vmlinux 0xb8ef7003 devm_clk_get_optional +EXPORT_SYMBOL vmlinux 0xb8f33f24 simple_empty +EXPORT_SYMBOL vmlinux 0xb8fda0e7 eth_commit_mac_addr_change +EXPORT_SYMBOL vmlinux 0xb900af12 inet_stream_ops EXPORT_SYMBOL vmlinux 0xb9056bb6 remove_conflicting_framebuffers EXPORT_SYMBOL vmlinux 0xb907513f unpoison_memory EXPORT_SYMBOL vmlinux 0xb911bb58 minmax_running_max -EXPORT_SYMBOL vmlinux 0xb9135489 genphy_restart_aneg -EXPORT_SYMBOL vmlinux 0xb9156797 iov_iter_npages -EXPORT_SYMBOL vmlinux 0xb919179a napi_consume_skb -EXPORT_SYMBOL vmlinux 0xb92e20cb md_finish_reshape +EXPORT_SYMBOL vmlinux 0xb91d472f sock_kzfree_s +EXPORT_SYMBOL vmlinux 0xb91e02dc kmem_cache_shrink +EXPORT_SYMBOL vmlinux 0xb9221cf8 pci_msi_vec_count +EXPORT_SYMBOL vmlinux 0xb9247dc9 tcp_poll EXPORT_SYMBOL vmlinux 0xb94339c4 qdisc_put_stab +EXPORT_SYMBOL vmlinux 0xb9445a24 tcp_seq_start +EXPORT_SYMBOL vmlinux 0xb946acff pci_write_config_word EXPORT_SYMBOL vmlinux 0xb9478d90 hdmi_drm_infoframe_unpack_only -EXPORT_SYMBOL vmlinux 0xb94c4c50 gnet_stats_copy_basic_hw -EXPORT_SYMBOL vmlinux 0xb96bf327 xfrm6_input_addr EXPORT_SYMBOL vmlinux 0xb97220ff bitmap_parse EXPORT_SYMBOL vmlinux 0xb97f7045 acpi_install_gpe_handler -EXPORT_SYMBOL vmlinux 0xb9806c89 sync_file_create -EXPORT_SYMBOL vmlinux 0xb983e30a inet_bind -EXPORT_SYMBOL vmlinux 0xb99014f3 tcp_gro_complete -EXPORT_SYMBOL vmlinux 0xb9a493c6 vga_switcheroo_register_handler +EXPORT_SYMBOL vmlinux 0xb9997157 rt_dst_alloc +EXPORT_SYMBOL vmlinux 0xb99db29a __icmp_send +EXPORT_SYMBOL vmlinux 0xb9a6d126 mmc_remove_host EXPORT_SYMBOL vmlinux 0xb9af1d0d __xa_clear_mark -EXPORT_SYMBOL vmlinux 0xb9bf725b nf_unregister_net_hook -EXPORT_SYMBOL vmlinux 0xb9d248f4 dev_uc_del +EXPORT_SYMBOL vmlinux 0xb9b2940c __register_chrdev EXPORT_SYMBOL vmlinux 0xb9e276cf wrmsr_safe_regs_on_cpu EXPORT_SYMBOL vmlinux 0xb9e7429c memcpy_toio EXPORT_SYMBOL vmlinux 0xb9e8e2cc in6addr_sitelocal_allrouters EXPORT_SYMBOL vmlinux 0xba0676e2 vm_zone_stat -EXPORT_SYMBOL vmlinux 0xba06b9df scsi_add_host_with_dma EXPORT_SYMBOL vmlinux 0xba1008c8 __crc32c_le -EXPORT_SYMBOL vmlinux 0xba16ab81 dma_set_coherent_mask -EXPORT_SYMBOL vmlinux 0xba311732 pagevec_lookup_range_tag -EXPORT_SYMBOL vmlinux 0xba4968bd __serio_register_port +EXPORT_SYMBOL vmlinux 0xba216758 devm_pci_alloc_host_bridge +EXPORT_SYMBOL vmlinux 0xba2f4c90 pps_lookup_dev +EXPORT_SYMBOL vmlinux 0xba2f6e85 _copy_from_iter_nocache +EXPORT_SYMBOL vmlinux 0xba3e77cc __ip_mc_inc_group EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy -EXPORT_SYMBOL vmlinux 0xba4c4e69 tcp_md5_do_del +EXPORT_SYMBOL vmlinux 0xba511a20 netlink_net_capable EXPORT_SYMBOL vmlinux 0xba53adab nla_policy_len -EXPORT_SYMBOL vmlinux 0xba5485fb pci_iounmap -EXPORT_SYMBOL vmlinux 0xba56efdb mmc_can_trim -EXPORT_SYMBOL vmlinux 0xba5c45cf inode_permission -EXPORT_SYMBOL vmlinux 0xba5d790a md_register_thread -EXPORT_SYMBOL vmlinux 0xba641bb5 pci_write_config_dword -EXPORT_SYMBOL vmlinux 0xba8aa31f ip6tun_encaps +EXPORT_SYMBOL vmlinux 0xba5a9d7c tcf_block_put +EXPORT_SYMBOL vmlinux 0xba6a1e1b ip_route_input_noref +EXPORT_SYMBOL vmlinux 0xba70067c nf_hook_slow_list +EXPORT_SYMBOL vmlinux 0xba7294c1 phy_aneg_done EXPORT_SYMBOL vmlinux 0xba8fbd64 _raw_spin_lock -EXPORT_SYMBOL vmlinux 0xbac3f73d scsi_track_queue_full -EXPORT_SYMBOL vmlinux 0xbafbf3d3 get_phy_device -EXPORT_SYMBOL vmlinux 0xbb0083be inet6_del_offload -EXPORT_SYMBOL vmlinux 0xbb042cd9 fc_mount +EXPORT_SYMBOL vmlinux 0xba9bb08b d_drop +EXPORT_SYMBOL vmlinux 0xbaaef323 pci_enable_msi +EXPORT_SYMBOL vmlinux 0xbab41df2 starget_for_each_device +EXPORT_SYMBOL vmlinux 0xbad5cdf1 vga_put +EXPORT_SYMBOL vmlinux 0xbae584c8 xsk_set_tx_need_wakeup +EXPORT_SYMBOL vmlinux 0xbaff2431 posix_lock_file EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset +EXPORT_SYMBOL vmlinux 0xbb0ea4d7 tcp_setsockopt EXPORT_SYMBOL vmlinux 0xbb13595e smp_call_function_many EXPORT_SYMBOL vmlinux 0xbb1bac24 acpi_unregister_debugger EXPORT_SYMBOL vmlinux 0xbb24f607 init_cdrom_command -EXPORT_SYMBOL vmlinux 0xbb26b5f4 pci_unregister_driver -EXPORT_SYMBOL vmlinux 0xbb33ec7c ip6mr_rule_default +EXPORT_SYMBOL vmlinux 0xbb32e6ab pnp_register_driver EXPORT_SYMBOL vmlinux 0xbb35675b __bitmap_intersects -EXPORT_SYMBOL vmlinux 0xbb44c6e1 tcp_check_req +EXPORT_SYMBOL vmlinux 0xbb45b70a sock_i_uid EXPORT_SYMBOL vmlinux 0xbb4f4766 simple_write_to_buffer -EXPORT_SYMBOL vmlinux 0xbb62622e seg6_hmac_info_del -EXPORT_SYMBOL vmlinux 0xbb628843 scsi_test_unit_ready -EXPORT_SYMBOL vmlinux 0xbb7303b7 generic_file_splice_read -EXPORT_SYMBOL vmlinux 0xbb75de52 blk_mq_alloc_tag_set -EXPORT_SYMBOL vmlinux 0xbb771f31 dma_map_sg_attrs -EXPORT_SYMBOL vmlinux 0xbb804fa6 netdev_upper_dev_unlink -EXPORT_SYMBOL vmlinux 0xbb822ce5 fscrypt_free_inode +EXPORT_SYMBOL vmlinux 0xbb53eda4 __scsi_print_sense +EXPORT_SYMBOL vmlinux 0xbb54d807 rio_query_mport +EXPORT_SYMBOL vmlinux 0xbb687edb mipi_dsi_picture_parameter_set +EXPORT_SYMBOL vmlinux 0xbb7b8441 inet_addr_type_table +EXPORT_SYMBOL vmlinux 0xbb7bf1ef blk_integrity_unregister +EXPORT_SYMBOL vmlinux 0xbb81e622 bio_devname +EXPORT_SYMBOL vmlinux 0xbb8d4512 __blk_rq_map_sg EXPORT_SYMBOL vmlinux 0xbb8e169a vga_switcheroo_handler_flags -EXPORT_SYMBOL vmlinux 0xbb8fbf62 jbd2_journal_restart -EXPORT_SYMBOL vmlinux 0xbb96d11e netpoll_setup EXPORT_SYMBOL vmlinux 0xbb9ed3bf mutex_trylock -EXPORT_SYMBOL vmlinux 0xbba97cf9 inet_dev_addr_type -EXPORT_SYMBOL vmlinux 0xbbb752e5 scsi_device_resume -EXPORT_SYMBOL vmlinux 0xbbb798f4 __inet_stream_connect -EXPORT_SYMBOL vmlinux 0xbbd118b4 pagecache_write_begin +EXPORT_SYMBOL vmlinux 0xbbd692c7 vm_map_ram +EXPORT_SYMBOL vmlinux 0xbbd87727 nobh_write_begin EXPORT_SYMBOL vmlinux 0xbbe80fdb kmalloc_order -EXPORT_SYMBOL vmlinux 0xbc099542 agp_unbind_memory -EXPORT_SYMBOL vmlinux 0xbc1ed761 blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0xbbfda5df skb_split +EXPORT_SYMBOL vmlinux 0xbc0e2bfa scsi_eh_restore_cmnd +EXPORT_SYMBOL vmlinux 0xbc0ee372 from_kprojid +EXPORT_SYMBOL vmlinux 0xbc1f3b63 send_sig EXPORT_SYMBOL vmlinux 0xbc2031de acpi_processor_get_bios_limit -EXPORT_SYMBOL vmlinux 0xbc445ba0 pci_read_config_word -EXPORT_SYMBOL vmlinux 0xbc474be0 blk_mq_tag_to_rq -EXPORT_SYMBOL vmlinux 0xbc570fd7 mntput -EXPORT_SYMBOL vmlinux 0xbc5f87de blk_queue_update_dma_alignment -EXPORT_SYMBOL vmlinux 0xbc6e3305 blk_cleanup_queue -EXPORT_SYMBOL vmlinux 0xbc86b3e1 rdmacg_try_charge -EXPORT_SYMBOL vmlinux 0xbc9bf38e pci_clear_mwi -EXPORT_SYMBOL vmlinux 0xbca1cd38 simple_rename +EXPORT_SYMBOL vmlinux 0xbc302a3c d_invalidate +EXPORT_SYMBOL vmlinux 0xbc400d45 scsi_command_normalize_sense +EXPORT_SYMBOL vmlinux 0xbc5ea2f0 md_done_sync +EXPORT_SYMBOL vmlinux 0xbc7770b4 posix_test_lock +EXPORT_SYMBOL vmlinux 0xbc8a398b get_unmapped_area +EXPORT_SYMBOL vmlinux 0xbc94c378 tcf_em_register +EXPORT_SYMBOL vmlinux 0xbc9d4ea8 add_to_pipe EXPORT_SYMBOL vmlinux 0xbcab6ee6 sscanf -EXPORT_SYMBOL vmlinux 0xbcb7e2b6 setattr_copy -EXPORT_SYMBOL vmlinux 0xbcd53711 dquot_set_dqinfo -EXPORT_SYMBOL vmlinux 0xbce10b35 pci_fixup_device -EXPORT_SYMBOL vmlinux 0xbce41ef9 dump_skip +EXPORT_SYMBOL vmlinux 0xbcb5b821 nf_getsockopt +EXPORT_SYMBOL vmlinux 0xbccd86ef sock_no_recvmsg +EXPORT_SYMBOL vmlinux 0xbcd769db genlmsg_put +EXPORT_SYMBOL vmlinux 0xbce652e4 eth_header_cache_update +EXPORT_SYMBOL vmlinux 0xbce7db29 cdc_parse_cdc_header +EXPORT_SYMBOL vmlinux 0xbd19e47d tty_kref_put EXPORT_SYMBOL vmlinux 0xbd393ca3 ioread64be_lo_hi +EXPORT_SYMBOL vmlinux 0xbd3fdc56 i2c_put_adapter EXPORT_SYMBOL vmlinux 0xbd462b55 __kfifo_init -EXPORT_SYMBOL vmlinux 0xbd50e39d filemap_range_has_page -EXPORT_SYMBOL vmlinux 0xbd5b9de2 d_add -EXPORT_SYMBOL vmlinux 0xbd5ed7d5 tty_flip_buffer_push -EXPORT_SYMBOL vmlinux 0xbd615581 configfs_depend_item_unlocked +EXPORT_SYMBOL vmlinux 0xbd49ebec mount_bdev +EXPORT_SYMBOL vmlinux 0xbd5608db to_nd_btt EXPORT_SYMBOL vmlinux 0xbd6841d4 crc16 -EXPORT_SYMBOL vmlinux 0xbd6fdbb2 simple_lookup -EXPORT_SYMBOL vmlinux 0xbd77d30d vfs_fsync_range -EXPORT_SYMBOL vmlinux 0xbd7cdae7 sock_efree -EXPORT_SYMBOL vmlinux 0xbd8782cd mr_mfc_find_parent -EXPORT_SYMBOL vmlinux 0xbd8e7a9c inet6_register_protosw -EXPORT_SYMBOL vmlinux 0xbd97ff2e is_nd_btt -EXPORT_SYMBOL vmlinux 0xbdd63de1 nf_log_trace -EXPORT_SYMBOL vmlinux 0xbde716d1 device_match_acpi_dev -EXPORT_SYMBOL vmlinux 0xbde9eb33 mfd_add_devices -EXPORT_SYMBOL vmlinux 0xbdeee22e xfrm_state_update +EXPORT_SYMBOL vmlinux 0xbd6f2eb9 con_is_visible +EXPORT_SYMBOL vmlinux 0xbd885c23 devm_devfreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0xbdb95b75 elv_bio_merge_ok +EXPORT_SYMBOL vmlinux 0xbdba8c91 blk_integrity_compare +EXPORT_SYMBOL vmlinux 0xbdc0a793 task_work_add +EXPORT_SYMBOL vmlinux 0xbddb6208 mnt_drop_write_file +EXPORT_SYMBOL vmlinux 0xbdf11da1 tcf_action_exec +EXPORT_SYMBOL vmlinux 0xbdf7e00f ipv6_sock_mc_join EXPORT_SYMBOL vmlinux 0xbdfb6dbb __fentry__ EXPORT_SYMBOL vmlinux 0xbe0110e7 acpi_set_gpe +EXPORT_SYMBOL vmlinux 0xbe022902 vmf_insert_mixed_mkwrite EXPORT_SYMBOL vmlinux 0xbe1427af __printk_cpu_unlock -EXPORT_SYMBOL vmlinux 0xbe1794d4 __zerocopy_sg_from_iter -EXPORT_SYMBOL vmlinux 0xbe302d6a reuseport_stop_listen_sock -EXPORT_SYMBOL vmlinux 0xbe334435 d_delete -EXPORT_SYMBOL vmlinux 0xbe3b6b41 udp_read_sock +EXPORT_SYMBOL vmlinux 0xbe1898b1 sock_no_listen +EXPORT_SYMBOL vmlinux 0xbe394ee9 rproc_elf_sanity_check +EXPORT_SYMBOL vmlinux 0xbe3bcfdf simple_dentry_operations +EXPORT_SYMBOL vmlinux 0xbe4520e0 dev_mc_del EXPORT_SYMBOL vmlinux 0xbe49252c acpi_os_write_port +EXPORT_SYMBOL vmlinux 0xbe4d8447 lock_page_memcg EXPORT_SYMBOL vmlinux 0xbe4eb6ed secure_dccpv6_sequence_number EXPORT_SYMBOL vmlinux 0xbe5a24e9 xxh32_copy_state +EXPORT_SYMBOL vmlinux 0xbe689821 simple_dir_operations EXPORT_SYMBOL vmlinux 0xbe6a866f __wait_on_bit -EXPORT_SYMBOL vmlinux 0xbe6c88f7 audit_log_start -EXPORT_SYMBOL vmlinux 0xbe6f2081 netlink_ack -EXPORT_SYMBOL vmlinux 0xbe71e9ab make_kgid +EXPORT_SYMBOL vmlinux 0xbe768a2a from_kuid_munged +EXPORT_SYMBOL vmlinux 0xbe7cd6ae pci_ep_cfs_add_epc_group EXPORT_SYMBOL vmlinux 0xbe7e05a8 acpi_tb_install_and_load_table -EXPORT_SYMBOL vmlinux 0xbe851c9c security_sctp_sk_clone -EXPORT_SYMBOL vmlinux 0xbe8af63a security_inet_conn_established -EXPORT_SYMBOL vmlinux 0xbe9cea97 i2c_smbus_read_byte -EXPORT_SYMBOL vmlinux 0xbe9cfdb5 md_write_inc -EXPORT_SYMBOL vmlinux 0xbea0d1f6 inode_newsize_ok -EXPORT_SYMBOL vmlinux 0xbebe7f34 d_lookup -EXPORT_SYMBOL vmlinux 0xbecf7f73 genphy_read_lpa -EXPORT_SYMBOL vmlinux 0xbed634ac scsi_device_set_state -EXPORT_SYMBOL vmlinux 0xbef13c15 set_trace_device -EXPORT_SYMBOL vmlinux 0xbef2ff6b pcibios_bus_to_resource +EXPORT_SYMBOL vmlinux 0xbe8e3591 tcf_exts_num_actions +EXPORT_SYMBOL vmlinux 0xbe94cbed dm_unregister_target +EXPORT_SYMBOL vmlinux 0xbe9c996d bdev_read_only +EXPORT_SYMBOL vmlinux 0xbecdc1af mipi_dsi_dcs_set_display_off +EXPORT_SYMBOL vmlinux 0xbedb3323 jbd2_journal_lock_updates EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule EXPORT_SYMBOL vmlinux 0xbefa51a3 gen_pool_add_owner +EXPORT_SYMBOL vmlinux 0xbf104af8 mmc_set_data_timeout +EXPORT_SYMBOL vmlinux 0xbf2786ca sk_ns_capable +EXPORT_SYMBOL vmlinux 0xbf2fe4d6 vme_init_bridge EXPORT_SYMBOL vmlinux 0xbf3193ec acpi_unregister_ioapic +EXPORT_SYMBOL vmlinux 0xbf3812e6 phy_do_ioctl_running +EXPORT_SYMBOL vmlinux 0xbf433ec2 sockfd_lookup +EXPORT_SYMBOL vmlinux 0xbf47d03d sock_no_mmap EXPORT_SYMBOL vmlinux 0xbf59c419 posix_acl_init -EXPORT_SYMBOL vmlinux 0xbf627796 key_payload_reserve -EXPORT_SYMBOL vmlinux 0xbf7903a7 kill_block_super +EXPORT_SYMBOL vmlinux 0xbf6dc44a fc_mount +EXPORT_SYMBOL vmlinux 0xbf70f778 pci_claim_resource EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set -EXPORT_SYMBOL vmlinux 0xbfb2f364 __SCK__tp_func_spi_transfer_stop -EXPORT_SYMBOL vmlinux 0xbfb71f34 twl6040_reg_write -EXPORT_SYMBOL vmlinux 0xbfbde92b block_is_partially_uptodate +EXPORT_SYMBOL vmlinux 0xbfc11b2a bio_integrity_trim EXPORT_SYMBOL vmlinux 0xbfc177bc iowrite32_rep +EXPORT_SYMBOL vmlinux 0xbfc68289 sync_blockdev +EXPORT_SYMBOL vmlinux 0xbfdf681f scsi_eh_finish_cmd EXPORT_SYMBOL vmlinux 0xbfee3ad5 loop_unregister_transfer -EXPORT_SYMBOL vmlinux 0xc00f11bd iommu_get_dma_cookie +EXPORT_SYMBOL vmlinux 0xbff76629 acpi_dev_hid_uid_match +EXPORT_SYMBOL vmlinux 0xc006361b __lock_sock_fast +EXPORT_SYMBOL vmlinux 0xc006a2f2 tcf_idr_search +EXPORT_SYMBOL vmlinux 0xc01e97a4 iov_iter_advance EXPORT_SYMBOL vmlinux 0xc0243ea6 nla_reserve_nohdr -EXPORT_SYMBOL vmlinux 0xc03e2542 dev_mc_del -EXPORT_SYMBOL vmlinux 0xc03f8ecd agp_put_bridge -EXPORT_SYMBOL vmlinux 0xc041fcd6 netpoll_poll_dev -EXPORT_SYMBOL vmlinux 0xc049db0a __seq_open_private -EXPORT_SYMBOL vmlinux 0xc054d84f vme_master_request -EXPORT_SYMBOL vmlinux 0xc0645777 input_unregister_handler -EXPORT_SYMBOL vmlinux 0xc066401f ndo_dflt_fdb_dump -EXPORT_SYMBOL vmlinux 0xc068d008 proc_remove -EXPORT_SYMBOL vmlinux 0xc06900a5 __mod_lruvec_page_state +EXPORT_SYMBOL vmlinux 0xc0364007 fault_in_writeable +EXPORT_SYMBOL vmlinux 0xc0404376 touch_buffer +EXPORT_SYMBOL vmlinux 0xc0431ad1 bioset_integrity_create +EXPORT_SYMBOL vmlinux 0xc074ab6a watchdog_register_governor EXPORT_SYMBOL vmlinux 0xc0763484 rfkill_blocked EXPORT_SYMBOL vmlinux 0xc07b0863 fb_destroy_modedb -EXPORT_SYMBOL vmlinux 0xc07bd6f1 linkwatch_fire_event -EXPORT_SYMBOL vmlinux 0xc07f4e12 tcp_add_backlog -EXPORT_SYMBOL vmlinux 0xc09523e2 pnp_device_attach -EXPORT_SYMBOL vmlinux 0xc0995ade locks_copy_conflock -EXPORT_SYMBOL vmlinux 0xc09e6e40 would_dump -EXPORT_SYMBOL vmlinux 0xc0ad2ad8 xfrm6_rcv_tnl +EXPORT_SYMBOL vmlinux 0xc07b1f48 get_bitmap_from_slot +EXPORT_SYMBOL vmlinux 0xc07f96fe vga_switcheroo_lock_ddc +EXPORT_SYMBOL vmlinux 0xc087722f dst_release_immediate +EXPORT_SYMBOL vmlinux 0xc0a080d4 tc_cleanup_flow_action +EXPORT_SYMBOL vmlinux 0xc0a9c090 sock_set_mark EXPORT_SYMBOL vmlinux 0xc0afb5d7 cgroup_bpf_enabled_key EXPORT_SYMBOL vmlinux 0xc0b2664d devlink_dpipe_header_ipv4 +EXPORT_SYMBOL vmlinux 0xc0b722d2 ip_tunnel_parse_protocol EXPORT_SYMBOL vmlinux 0xc0bca0f1 ZSTD_nextSrcSizeToDecompress -EXPORT_SYMBOL vmlinux 0xc0c0aea0 configfs_remove_default_groups -EXPORT_SYMBOL vmlinux 0xc0e87289 read_cache_pages -EXPORT_SYMBOL vmlinux 0xc0f3ab94 finish_no_open +EXPORT_SYMBOL vmlinux 0xc0c99c12 sk_capable +EXPORT_SYMBOL vmlinux 0xc0efeed2 skb_free_datagram EXPORT_SYMBOL vmlinux 0xc0ff12fb nla_strdup EXPORT_SYMBOL vmlinux 0xc0ff21c1 input_get_new_minor -EXPORT_SYMBOL vmlinux 0xc100687a dev_uc_sync -EXPORT_SYMBOL vmlinux 0xc1023168 ethtool_get_phc_vclocks -EXPORT_SYMBOL vmlinux 0xc10537e7 vga_switcheroo_lock_ddc +EXPORT_SYMBOL vmlinux 0xc1025998 single_open EXPORT_SYMBOL vmlinux 0xc111ae64 intel_gtt_get -EXPORT_SYMBOL vmlinux 0xc12af7c8 nd_region_to_nstype -EXPORT_SYMBOL vmlinux 0xc1315c12 xfrm_state_check_expire +EXPORT_SYMBOL vmlinux 0xc11218f8 __i2c_transfer EXPORT_SYMBOL vmlinux 0xc1365323 acpi_enable_all_wakeup_gpes -EXPORT_SYMBOL vmlinux 0xc14611a6 iov_iter_discard EXPORT_SYMBOL vmlinux 0xc14dc168 acpi_get_data +EXPORT_SYMBOL vmlinux 0xc1504884 skb_put EXPORT_SYMBOL vmlinux 0xc1514a3b free_irq -EXPORT_SYMBOL vmlinux 0xc15c44a6 mdiobus_is_registered_device -EXPORT_SYMBOL vmlinux 0xc15d4a9e phy_resume -EXPORT_SYMBOL vmlinux 0xc161ab4e mmc_set_data_timeout EXPORT_SYMBOL vmlinux 0xc16410b9 ZSTD_getDictID_fromDDict -EXPORT_SYMBOL vmlinux 0xc16480e5 misc_register -EXPORT_SYMBOL vmlinux 0xc1652759 devm_extcon_unregister_notifier -EXPORT_SYMBOL vmlinux 0xc1682f60 unmap_mapping_range EXPORT_SYMBOL vmlinux 0xc16be39d iter_div_u64_rem -EXPORT_SYMBOL vmlinux 0xc1800f88 netdev_has_upper_dev_all_rcu -EXPORT_SYMBOL vmlinux 0xc18a4e5a jbd2_journal_update_sb_errno -EXPORT_SYMBOL vmlinux 0xc18fa023 mipi_dsi_dcs_set_display_brightness -EXPORT_SYMBOL vmlinux 0xc1b3cf3a fqdir_init -EXPORT_SYMBOL vmlinux 0xc1c7fabc netdev_master_upper_dev_get -EXPORT_SYMBOL vmlinux 0xc1d2a938 sock_pfree +EXPORT_SYMBOL vmlinux 0xc1c9c028 dqget +EXPORT_SYMBOL vmlinux 0xc1cbb744 input_get_keycode EXPORT_SYMBOL vmlinux 0xc1d5d504 scsi_cmd_allowed EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget -EXPORT_SYMBOL vmlinux 0xc1d8e4ef cdev_device_del -EXPORT_SYMBOL vmlinux 0xc1e0687b fs_param_is_enum -EXPORT_SYMBOL vmlinux 0xc20a13c1 iommu_put_dma_cookie -EXPORT_SYMBOL vmlinux 0xc2332d4b locks_copy_lock -EXPORT_SYMBOL vmlinux 0xc2365577 mount_subtree -EXPORT_SYMBOL vmlinux 0xc23e3a36 dec_zone_page_state +EXPORT_SYMBOL vmlinux 0xc1db1655 free_netdev +EXPORT_SYMBOL vmlinux 0xc20083b0 migrate_page_move_mapping +EXPORT_SYMBOL vmlinux 0xc210182f pci_setup_cardbus +EXPORT_SYMBOL vmlinux 0xc2267d06 end_page_writeback +EXPORT_SYMBOL vmlinux 0xc23297b7 flush_signals EXPORT_SYMBOL vmlinux 0xc2424641 agp3_generic_cleanup -EXPORT_SYMBOL vmlinux 0xc251d9c9 tc_setup_cb_destroy -EXPORT_SYMBOL vmlinux 0xc25af3c6 param_ops_byte -EXPORT_SYMBOL vmlinux 0xc25f7e32 ata_std_end_eh +EXPORT_SYMBOL vmlinux 0xc24458f4 pci_iounmap +EXPORT_SYMBOL vmlinux 0xc25234a0 input_mt_drop_unused +EXPORT_SYMBOL vmlinux 0xc25c9f33 md_cluster_ops EXPORT_SYMBOL vmlinux 0xc267960e utf8_validate -EXPORT_SYMBOL vmlinux 0xc27102fb clk_bulk_get_all +EXPORT_SYMBOL vmlinux 0xc27869bd genphy_update_link EXPORT_SYMBOL vmlinux 0xc278c965 cpu_all_bits +EXPORT_SYMBOL vmlinux 0xc2826b30 d_alloc_name +EXPORT_SYMBOL vmlinux 0xc288624a dev_close EXPORT_SYMBOL vmlinux 0xc29bf967 strspn EXPORT_SYMBOL vmlinux 0xc2a17ebe seqno_fence_ops -EXPORT_SYMBOL vmlinux 0xc2cb3929 mmc_hw_reset -EXPORT_SYMBOL vmlinux 0xc2dd7352 mfd_remove_devices -EXPORT_SYMBOL vmlinux 0xc2e00e16 phy_aneg_done +EXPORT_SYMBOL vmlinux 0xc2afb0dd udp_sk_rx_dst_set EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices -EXPORT_SYMBOL vmlinux 0xc2e823f2 pci_set_power_state -EXPORT_SYMBOL vmlinux 0xc2f30fbf generic_pipe_buf_get EXPORT_SYMBOL vmlinux 0xc3055d20 usleep_range_state EXPORT_SYMBOL vmlinux 0xc310b981 strnstr +EXPORT_SYMBOL vmlinux 0xc3163017 inet6_ioctl EXPORT_SYMBOL vmlinux 0xc31db0ce is_vmalloc_addr -EXPORT_SYMBOL vmlinux 0xc321a022 has_capability -EXPORT_SYMBOL vmlinux 0xc32285ba tty_name -EXPORT_SYMBOL vmlinux 0xc3295fe5 simple_symlink_inode_operations EXPORT_SYMBOL vmlinux 0xc32c71af register_inetaddr_validator_notifier -EXPORT_SYMBOL vmlinux 0xc33ffd68 dev_set_allmulti -EXPORT_SYMBOL vmlinux 0xc344d242 dev_loopback_xmit +EXPORT_SYMBOL vmlinux 0xc336541f wait_on_page_private_2_killable +EXPORT_SYMBOL vmlinux 0xc353292e dump_skip_to +EXPORT_SYMBOL vmlinux 0xc364cfe0 blk_set_runtime_active +EXPORT_SYMBOL vmlinux 0xc3672388 follow_pfn EXPORT_SYMBOL vmlinux 0xc36a3bd4 __acpi_handle_debug -EXPORT_SYMBOL vmlinux 0xc36c5ea9 serio_unregister_port -EXPORT_SYMBOL vmlinux 0xc36ccdbd dev_change_carrier -EXPORT_SYMBOL vmlinux 0xc3715864 pm860x_page_reg_write -EXPORT_SYMBOL vmlinux 0xc371d19b netdev_set_sb_channel -EXPORT_SYMBOL vmlinux 0xc373103e PageMovable EXPORT_SYMBOL vmlinux 0xc3762aec mempool_alloc -EXPORT_SYMBOL vmlinux 0xc37ef7ad scsi_host_lookup +EXPORT_SYMBOL vmlinux 0xc378c4c5 sg_alloc_table_from_pages_segment EXPORT_SYMBOL vmlinux 0xc37f9c6e cpufreq_update_policy -EXPORT_SYMBOL vmlinux 0xc3805cd1 fbcon_update_vcs +EXPORT_SYMBOL vmlinux 0xc38a9510 mdiobus_read_nested EXPORT_SYMBOL vmlinux 0xc38c83b8 mod_timer +EXPORT_SYMBOL vmlinux 0xc38f5a40 submit_bio_noacct +EXPORT_SYMBOL vmlinux 0xc39ef25f xp_dma_unmap +EXPORT_SYMBOL vmlinux 0xc3a1cc09 cdev_init EXPORT_SYMBOL vmlinux 0xc3aaf0a9 __put_user_1 -EXPORT_SYMBOL vmlinux 0xc3b056d8 simple_dir_operations -EXPORT_SYMBOL vmlinux 0xc3b10060 scsi_report_opcode +EXPORT_SYMBOL vmlinux 0xc3bc111d jbd2_journal_finish_inode_data_buffers EXPORT_SYMBOL vmlinux 0xc3bc72ad trace_print_array_seq -EXPORT_SYMBOL vmlinux 0xc3cf37bb end_buffer_write_sync -EXPORT_SYMBOL vmlinux 0xc3d6c4e9 fs_param_is_bool -EXPORT_SYMBOL vmlinux 0xc3dc1f10 md_set_array_sectors -EXPORT_SYMBOL vmlinux 0xc3de821f copy_page_from_iter_atomic -EXPORT_SYMBOL vmlinux 0xc3ea3a65 devm_devfreq_unregister_opp_notifier -EXPORT_SYMBOL vmlinux 0xc3ed889e tty_write_room -EXPORT_SYMBOL vmlinux 0xc3f63bb5 tcp_mss_to_mtu +EXPORT_SYMBOL vmlinux 0xc3bdc6e6 simple_lookup +EXPORT_SYMBOL vmlinux 0xc3dd42cf phy_attach_direct +EXPORT_SYMBOL vmlinux 0xc3f5aa32 netdev_features_change +EXPORT_SYMBOL vmlinux 0xc3fedcf1 blk_rq_map_user_iov EXPORT_SYMBOL vmlinux 0xc3ff38c2 down_read_trylock -EXPORT_SYMBOL vmlinux 0xc40d00b4 vmf_insert_mixed -EXPORT_SYMBOL vmlinux 0xc41106a0 wait_on_page_private_2 EXPORT_SYMBOL vmlinux 0xc41bc980 iwe_stream_add_value EXPORT_SYMBOL vmlinux 0xc4212ab9 qdisc_class_hash_insert -EXPORT_SYMBOL vmlinux 0xc4268992 page_mapped EXPORT_SYMBOL vmlinux 0xc42dcb99 acpi_evaluate_ost -EXPORT_SYMBOL vmlinux 0xc43f4831 rproc_resource_cleanup -EXPORT_SYMBOL vmlinux 0xc45e4f93 tty_register_ldisc +EXPORT_SYMBOL vmlinux 0xc4522186 __qdisc_calculate_pkt_len +EXPORT_SYMBOL vmlinux 0xc45953fd nf_ip_checksum +EXPORT_SYMBOL vmlinux 0xc46905cf jbd2_journal_start +EXPORT_SYMBOL vmlinux 0xc46cec5d sock_queue_err_skb EXPORT_SYMBOL vmlinux 0xc4777aa9 __ctzsi2 +EXPORT_SYMBOL vmlinux 0xc498b105 flow_indr_dev_register EXPORT_SYMBOL vmlinux 0xc4ae915e arch_touch_nmi_watchdog -EXPORT_SYMBOL vmlinux 0xc4c4b024 pci_bus_type -EXPORT_SYMBOL vmlinux 0xc4df676b agp_generic_free_gatt_table -EXPORT_SYMBOL vmlinux 0xc4e0f7e0 page_pool_release_page -EXPORT_SYMBOL vmlinux 0xc4eb1964 sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0xc4e8d492 phy_disconnect +EXPORT_SYMBOL vmlinux 0xc517d372 ata_port_printk EXPORT_SYMBOL vmlinux 0xc528a49a queued_write_lock_slowpath -EXPORT_SYMBOL vmlinux 0xc5356802 pci_bus_assign_resources -EXPORT_SYMBOL vmlinux 0xc53c46f2 blk_mq_start_hw_queue -EXPORT_SYMBOL vmlinux 0xc5479e88 console_start -EXPORT_SYMBOL vmlinux 0xc5580a17 fb_set_suspend +EXPORT_SYMBOL vmlinux 0xc528f5ab security_inode_invalidate_secctx +EXPORT_SYMBOL vmlinux 0xc53e3bef dst_destroy EXPORT_SYMBOL vmlinux 0xc558530d profile_pc -EXPORT_SYMBOL vmlinux 0xc5590c0a tty_unregister_device -EXPORT_SYMBOL vmlinux 0xc55b428c finish_open -EXPORT_SYMBOL vmlinux 0xc56481a7 sock_no_getname -EXPORT_SYMBOL vmlinux 0xc574f2d4 ip6_dst_check +EXPORT_SYMBOL vmlinux 0xc570cdd5 max8998_bulk_write EXPORT_SYMBOL vmlinux 0xc57c48a3 idr_get_next -EXPORT_SYMBOL vmlinux 0xc5821786 i2c_register_driver +EXPORT_SYMBOL vmlinux 0xc57f1219 jbd2_fc_wait_bufs +EXPORT_SYMBOL vmlinux 0xc585c329 tcp_sock_set_user_timeout EXPORT_SYMBOL vmlinux 0xc58d5a90 kstrtoll_from_user EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete -EXPORT_SYMBOL vmlinux 0xc5b1c148 scsi_get_device_flags_keyed +EXPORT_SYMBOL vmlinux 0xc5a2c1d0 input_grab_device EXPORT_SYMBOL vmlinux 0xc5b6f236 queue_work_on -EXPORT_SYMBOL vmlinux 0xc5bcceee param_get_bool -EXPORT_SYMBOL vmlinux 0xc5c4c719 ip_sock_set_tos -EXPORT_SYMBOL vmlinux 0xc5cdd93c param_set_byte +EXPORT_SYMBOL vmlinux 0xc5cc17e5 __inet_hash +EXPORT_SYMBOL vmlinux 0xc5cf884c __mmc_claim_host EXPORT_SYMBOL vmlinux 0xc5d9c46c agp_try_unsupported_boot -EXPORT_SYMBOL vmlinux 0xc5e55c98 set_pages_array_uc +EXPORT_SYMBOL vmlinux 0xc5dbf69f pcie_get_width_cap +EXPORT_SYMBOL vmlinux 0xc5ddd54a page_mapping EXPORT_SYMBOL vmlinux 0xc5e74216 release_resource +EXPORT_SYMBOL vmlinux 0xc5f38e6a scsi_remove_target EXPORT_SYMBOL vmlinux 0xc5f7e801 sg_last EXPORT_SYMBOL vmlinux 0xc60d0620 __num_online_cpus -EXPORT_SYMBOL vmlinux 0xc61685a8 pci_pme_active EXPORT_SYMBOL vmlinux 0xc61ca65e iowrite64be_hi_lo -EXPORT_SYMBOL vmlinux 0xc61f0c7b seq_putc EXPORT_SYMBOL vmlinux 0xc622556f prepare_to_wait_exclusive +EXPORT_SYMBOL vmlinux 0xc62da419 ip_frag_next EXPORT_SYMBOL vmlinux 0xc631580a console_unlock EXPORT_SYMBOL vmlinux 0xc633d82d phy_unregister_fixup -EXPORT_SYMBOL vmlinux 0xc63c03f9 generic_pipe_buf_release -EXPORT_SYMBOL vmlinux 0xc649b714 tcp_enter_quickack_mode +EXPORT_SYMBOL vmlinux 0xc642280d devm_ioport_map EXPORT_SYMBOL vmlinux 0xc65e4e97 secure_dccp_sequence_number EXPORT_SYMBOL vmlinux 0xc666a132 crc_t10dif EXPORT_SYMBOL vmlinux 0xc66a8304 cpu_rmap_add -EXPORT_SYMBOL vmlinux 0xc67f9175 flow_rule_match_enc_ipv6_addrs -EXPORT_SYMBOL vmlinux 0xc68289fd configfs_unregister_subsystem -EXPORT_SYMBOL vmlinux 0xc6863eba bioset_exit -EXPORT_SYMBOL vmlinux 0xc68b3761 pci_save_state -EXPORT_SYMBOL vmlinux 0xc690f60f xfrm_policy_byid +EXPORT_SYMBOL vmlinux 0xc67af950 inet_csk_reqsk_queue_add +EXPORT_SYMBOL vmlinux 0xc67d78fc touchscreen_parse_properties +EXPORT_SYMBOL vmlinux 0xc6895030 devm_kvasprintf EXPORT_SYMBOL vmlinux 0xc6910aa0 do_trace_rdpmc -EXPORT_SYMBOL vmlinux 0xc6a83232 module_layout -EXPORT_SYMBOL vmlinux 0xc6b154a0 genphy_read_status_fixed -EXPORT_SYMBOL vmlinux 0xc6b44d40 inet_select_addr -EXPORT_SYMBOL vmlinux 0xc6be79c5 rproc_da_to_va -EXPORT_SYMBOL vmlinux 0xc6c459e7 nf_ip_checksum -EXPORT_SYMBOL vmlinux 0xc6c8cb42 netdev_lower_state_changed +EXPORT_SYMBOL vmlinux 0xc6a58396 get_tz_trend +EXPORT_SYMBOL vmlinux 0xc6aa4f7f genphy_check_and_restart_aneg +EXPORT_SYMBOL vmlinux 0xc6b47d7b clk_get +EXPORT_SYMBOL vmlinux 0xc6b4f16e simple_rmdir +EXPORT_SYMBOL vmlinux 0xc6c5f005 netif_device_detach EXPORT_SYMBOL vmlinux 0xc6cb465a __kfifo_max_r EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable EXPORT_SYMBOL vmlinux 0xc6d09aa9 release_firmware -EXPORT_SYMBOL vmlinux 0xc6d90e50 phy_start_cable_test -EXPORT_SYMBOL vmlinux 0xc6deb068 __tracepoint_read_msr -EXPORT_SYMBOL vmlinux 0xc6ee139a nf_log_unset -EXPORT_SYMBOL vmlinux 0xc6ee2598 input_allocate_device +EXPORT_SYMBOL vmlinux 0xc6d20a15 ip_fraglist_prepare +EXPORT_SYMBOL vmlinux 0xc6e5bbba copy_string_kernel EXPORT_SYMBOL vmlinux 0xc6f3b3fc refcount_dec_if_one EXPORT_SYMBOL vmlinux 0xc6f46339 init_timer_key +EXPORT_SYMBOL vmlinux 0xc6f7a63e generic_parse_monolithic +EXPORT_SYMBOL vmlinux 0xc6f9883f security_tun_dev_attach EXPORT_SYMBOL vmlinux 0xc708f1fe ec_write +EXPORT_SYMBOL vmlinux 0xc71a0db6 begin_new_exec +EXPORT_SYMBOL vmlinux 0xc71bdcdf iov_iter_discard EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port -EXPORT_SYMBOL vmlinux 0xc74d1227 sock_set_reuseport -EXPORT_SYMBOL vmlinux 0xc74d13a8 blkdev_get_by_path -EXPORT_SYMBOL vmlinux 0xc7558191 prepare_to_swait_exclusive -EXPORT_SYMBOL vmlinux 0xc765011d __traceiter_spi_transfer_stop -EXPORT_SYMBOL vmlinux 0xc76b8716 lookup_one_len -EXPORT_SYMBOL vmlinux 0xc76d70db jbd2_journal_start_reserved -EXPORT_SYMBOL vmlinux 0xc78195a8 jbd2_journal_ack_err +EXPORT_SYMBOL vmlinux 0xc72f3510 generic_iommu_put_resv_regions +EXPORT_SYMBOL vmlinux 0xc7349698 inet_stream_connect +EXPORT_SYMBOL vmlinux 0xc74bda00 tty_register_driver +EXPORT_SYMBOL vmlinux 0xc7690883 wait_on_page_bit +EXPORT_SYMBOL vmlinux 0xc77e9c86 skb_ensure_writable EXPORT_SYMBOL vmlinux 0xc781bd9f rfkill_resume_polling +EXPORT_SYMBOL vmlinux 0xc7852744 __inode_add_bytes EXPORT_SYMBOL vmlinux 0xc7856a3d inet6addr_notifier_call_chain -EXPORT_SYMBOL vmlinux 0xc796ecb5 ipv6_chk_custom_prefix +EXPORT_SYMBOL vmlinux 0xc7864be8 xsk_clear_rx_need_wakeup EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock -EXPORT_SYMBOL vmlinux 0xc7b9b0ac __traceiter_module_get -EXPORT_SYMBOL vmlinux 0xc7ba1de3 flow_rule_match_cvlan +EXPORT_SYMBOL vmlinux 0xc7b06662 key_payload_reserve +EXPORT_SYMBOL vmlinux 0xc7b07888 acpi_notifier_call_chain +EXPORT_SYMBOL vmlinux 0xc7b1b1dc migrate_page_states +EXPORT_SYMBOL vmlinux 0xc7b7dda9 tty_port_tty_set +EXPORT_SYMBOL vmlinux 0xc7beab4d ip6_dst_alloc EXPORT_SYMBOL vmlinux 0xc7c1107a LZ4_decompress_safe -EXPORT_SYMBOL vmlinux 0xc7cce75f zpool_register_driver -EXPORT_SYMBOL vmlinux 0xc7cfd7fb key_task_permission -EXPORT_SYMBOL vmlinux 0xc7d03164 input_mt_report_slot_state EXPORT_SYMBOL vmlinux 0xc7d094b5 dm_read_arg_group -EXPORT_SYMBOL vmlinux 0xc7d6a53f consume_skb -EXPORT_SYMBOL vmlinux 0xc7d743e9 phy_read_mmd -EXPORT_SYMBOL vmlinux 0xc7d7ce39 kfree_skb_list -EXPORT_SYMBOL vmlinux 0xc7e51097 fifo_create_dflt -EXPORT_SYMBOL vmlinux 0xc7ed6491 jbd2_fc_end_commit_fallback -EXPORT_SYMBOL vmlinux 0xc7f89645 inet_frag_reasm_finish -EXPORT_SYMBOL vmlinux 0xc7fa5d64 param_set_short -EXPORT_SYMBOL vmlinux 0xc7fe57fc trace_raw_output_prep -EXPORT_SYMBOL vmlinux 0xc800dc3c devfreq_add_device +EXPORT_SYMBOL vmlinux 0xc7dd6646 netdev_reset_tc +EXPORT_SYMBOL vmlinux 0xc7e9d43a put_devmap_managed_page +EXPORT_SYMBOL vmlinux 0xc7eb4018 mdiobus_write +EXPORT_SYMBOL vmlinux 0xc7f6f59f __sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0xc8077e74 input_free_device EXPORT_SYMBOL vmlinux 0xc80ab559 swake_up_one -EXPORT_SYMBOL vmlinux 0xc82b3f0a starget_for_each_device +EXPORT_SYMBOL vmlinux 0xc81b81ac acpi_pm_device_sleep_state +EXPORT_SYMBOL vmlinux 0xc8200630 ip_tunnel_header_ops +EXPORT_SYMBOL vmlinux 0xc83492ef kmalloc_caches EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu -EXPORT_SYMBOL vmlinux 0xc85e6442 mmc_gpiod_request_ro -EXPORT_SYMBOL vmlinux 0xc86122fc create_empty_buffers -EXPORT_SYMBOL vmlinux 0xc86a2c17 fqdir_exit -EXPORT_SYMBOL vmlinux 0xc86b65ed add_random_ready_callback -EXPORT_SYMBOL vmlinux 0xc86b77cf param_set_bool -EXPORT_SYMBOL vmlinux 0xc86fbe9a sock_kmalloc +EXPORT_SYMBOL vmlinux 0xc861c5cb peernet2id EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes EXPORT_SYMBOL vmlinux 0xc8827b75 sysctl_vals EXPORT_SYMBOL vmlinux 0xc890c008 zlib_deflateEnd -EXPORT_SYMBOL vmlinux 0xc8994c59 qdisc_watchdog_init_clockid EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread -EXPORT_SYMBOL vmlinux 0xc8cf98d9 seq_open_private -EXPORT_SYMBOL vmlinux 0xc8d8597d input_get_keycode +EXPORT_SYMBOL vmlinux 0xc8c13da9 tcp_openreq_init_rwin +EXPORT_SYMBOL vmlinux 0xc8cb5ff3 __mmap_lock_do_trace_released +EXPORT_SYMBOL vmlinux 0xc8d90458 filp_open EXPORT_SYMBOL vmlinux 0xc8dcc62a krealloc -EXPORT_SYMBOL vmlinux 0xc910acf3 __phy_resume -EXPORT_SYMBOL vmlinux 0xc9142b03 __tracepoint_rdpmc +EXPORT_SYMBOL vmlinux 0xc8dd6c52 mntget +EXPORT_SYMBOL vmlinux 0xc8fa4765 sched_autogroup_create_attach +EXPORT_SYMBOL vmlinux 0xc8fb2544 scsi_get_host_dev +EXPORT_SYMBOL vmlinux 0xc904c9a7 md_check_recovery +EXPORT_SYMBOL vmlinux 0xc90e1f2a path_is_mountpoint +EXPORT_SYMBOL vmlinux 0xc90feeb1 rc5t583_ext_power_req_config +EXPORT_SYMBOL vmlinux 0xc912b4bb filemap_invalidate_unlock_two EXPORT_SYMBOL vmlinux 0xc9216a82 recalibrate_cpu_khz -EXPORT_SYMBOL vmlinux 0xc924ee6c vfs_rename +EXPORT_SYMBOL vmlinux 0xc9244936 scsi_print_sense +EXPORT_SYMBOL vmlinux 0xc925d084 xfrm4_protocol_register +EXPORT_SYMBOL vmlinux 0xc92ade81 security_lock_kernel_down +EXPORT_SYMBOL vmlinux 0xc9357392 gnet_stats_copy_basic EXPORT_SYMBOL vmlinux 0xc93e8461 acpi_get_event_resources -EXPORT_SYMBOL vmlinux 0xc94248df uart_remove_one_port -EXPORT_SYMBOL vmlinux 0xc960d0a8 param_ops_charp +EXPORT_SYMBOL vmlinux 0xc942938b tcp_conn_request +EXPORT_SYMBOL vmlinux 0xc953df5a locks_copy_conflock +EXPORT_SYMBOL vmlinux 0xc957d3d0 neigh_connected_output +EXPORT_SYMBOL vmlinux 0xc95f7a69 netdev_next_lower_dev_rcu EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters -EXPORT_SYMBOL vmlinux 0xc96503c3 single_release -EXPORT_SYMBOL vmlinux 0xc967c254 framebuffer_release EXPORT_SYMBOL vmlinux 0xc972449f mempool_alloc_slab -EXPORT_SYMBOL vmlinux 0xc973a70f tc_setup_cb_replace EXPORT_SYMBOL vmlinux 0xc9822234 clk_register_clkdev EXPORT_SYMBOL vmlinux 0xc9831ad7 flow_keys_dissector -EXPORT_SYMBOL vmlinux 0xc9867991 udp_seq_ops -EXPORT_SYMBOL vmlinux 0xc988a82b inode_io_list_del +EXPORT_SYMBOL vmlinux 0xc98561b7 __cgroup_bpf_run_filter_sk +EXPORT_SYMBOL vmlinux 0xc98a970c rfkill_alloc EXPORT_SYMBOL vmlinux 0xc99e2a55 twl_rev -EXPORT_SYMBOL vmlinux 0xc9adb29e tty_port_block_til_ready -EXPORT_SYMBOL vmlinux 0xc9adfd85 tcf_qevent_destroy -EXPORT_SYMBOL vmlinux 0xc9b0efc3 __generic_file_fsync EXPORT_SYMBOL vmlinux 0xc9b33111 cpumask_any_distribute -EXPORT_SYMBOL vmlinux 0xc9d37ad6 truncate_pagecache +EXPORT_SYMBOL vmlinux 0xc9d4126a jbd2_journal_set_triggers EXPORT_SYMBOL vmlinux 0xc9df055a xfrm_policy_walk_init +EXPORT_SYMBOL vmlinux 0xc9e281da path_put EXPORT_SYMBOL vmlinux 0xc9f34c1d acpi_acquire_global_lock +EXPORT_SYMBOL vmlinux 0xca02072d simple_pin_fs +EXPORT_SYMBOL vmlinux 0xca08ecd9 security_socket_getpeersec_dgram +EXPORT_SYMBOL vmlinux 0xca0f9cb9 vfs_dedupe_file_range EXPORT_SYMBOL vmlinux 0xca15413f ZSTD_resetDStream -EXPORT_SYMBOL vmlinux 0xca1bba13 ethtool_rx_flow_rule_destroy EXPORT_SYMBOL vmlinux 0xca21ebd3 bitmap_free -EXPORT_SYMBOL vmlinux 0xca2c808d netdev_update_features -EXPORT_SYMBOL vmlinux 0xca2d7626 blkdev_put +EXPORT_SYMBOL vmlinux 0xca28758a dev_uc_sync +EXPORT_SYMBOL vmlinux 0xca2bfb4a ethtool_rx_flow_rule_create EXPORT_SYMBOL vmlinux 0xca431c05 wake_bit_function -EXPORT_SYMBOL vmlinux 0xca57f414 __sock_queue_rcv_skb -EXPORT_SYMBOL vmlinux 0xca5cf836 mdiobus_read -EXPORT_SYMBOL vmlinux 0xca5d76de __SCK__tp_func_mmap_lock_acquire_returned -EXPORT_SYMBOL vmlinux 0xca60e3fb __cleancache_invalidate_inode -EXPORT_SYMBOL vmlinux 0xca62e926 xsk_tx_peek_release_desc_batch -EXPORT_SYMBOL vmlinux 0xca86b7b6 scsi_remove_device -EXPORT_SYMBOL vmlinux 0xca9172d3 ilookup5_nowait +EXPORT_SYMBOL vmlinux 0xca45834c __netif_napi_del +EXPORT_SYMBOL vmlinux 0xca4f514d ndo_dflt_fdb_del +EXPORT_SYMBOL vmlinux 0xca5655cd no_seek_end_llseek_size +EXPORT_SYMBOL vmlinux 0xca7912dc block_write_end +EXPORT_SYMBOL vmlinux 0xca7b3a21 agp_bridge +EXPORT_SYMBOL vmlinux 0xca8bb4cb con_set_default_unimap EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next -EXPORT_SYMBOL vmlinux 0xca953295 elv_rb_del EXPORT_SYMBOL vmlinux 0xca9beaa4 __xa_store -EXPORT_SYMBOL vmlinux 0xcaa227a5 uart_suspend_port -EXPORT_SYMBOL vmlinux 0xcabbf5bd unlock_buffer +EXPORT_SYMBOL vmlinux 0xcaa04ea9 dm_table_get_size EXPORT_SYMBOL vmlinux 0xcad1aca8 acpi_exception -EXPORT_SYMBOL vmlinux 0xcadff7ab devm_rproc_add +EXPORT_SYMBOL vmlinux 0xcadbde0e devfreq_remove_device EXPORT_SYMBOL vmlinux 0xcaf2c603 scsi_sd_pm_domain +EXPORT_SYMBOL vmlinux 0xcaf75d2f sock_bind_add EXPORT_SYMBOL vmlinux 0xcb0288ea ledtrig_cpu -EXPORT_SYMBOL vmlinux 0xcb04578d tcp_read_sock -EXPORT_SYMBOL vmlinux 0xcb0f091e udp_set_csum -EXPORT_SYMBOL vmlinux 0xcb115957 neigh_changeaddr -EXPORT_SYMBOL vmlinux 0xcb2a907c unix_detach_fds -EXPORT_SYMBOL vmlinux 0xcb302295 __dev_direct_xmit -EXPORT_SYMBOL vmlinux 0xcb33b4ea file_write_and_wait_range +EXPORT_SYMBOL vmlinux 0xcb05cefb get_tree_keyed +EXPORT_SYMBOL vmlinux 0xcb22ddeb pci_find_bus +EXPORT_SYMBOL vmlinux 0xcb371b4c acpi_processor_notify_smm EXPORT_SYMBOL vmlinux 0xcb3ae215 call_blocking_lsm_notifier -EXPORT_SYMBOL vmlinux 0xcb3c8b1b __cleancache_invalidate_fs -EXPORT_SYMBOL vmlinux 0xcb5e6181 inet_rcv_saddr_equal -EXPORT_SYMBOL vmlinux 0xcb72a0ef udp_disconnect +EXPORT_SYMBOL vmlinux 0xcb440b5e module_layout +EXPORT_SYMBOL vmlinux 0xcb50bde1 ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0xcb542a74 tcp_v4_syn_recv_sock +EXPORT_SYMBOL vmlinux 0xcb597227 dquot_initialize +EXPORT_SYMBOL vmlinux 0xcb63eb34 iptun_encaps +EXPORT_SYMBOL vmlinux 0xcb64726b devm_memunmap +EXPORT_SYMBOL vmlinux 0xcb663a4e __hw_addr_ref_unsync_dev +EXPORT_SYMBOL vmlinux 0xcb7024a4 agp_create_memory EXPORT_SYMBOL vmlinux 0xcb733bf2 acpi_bus_set_power -EXPORT_SYMBOL vmlinux 0xcb8267fe lookup_positive_unlocked -EXPORT_SYMBOL vmlinux 0xcb831f4b param_get_short -EXPORT_SYMBOL vmlinux 0xcb94f06d kern_unmount -EXPORT_SYMBOL vmlinux 0xcbacf3aa inet_sk_rx_dst_set -EXPORT_SYMBOL vmlinux 0xcbc5afca ip6_frag_init +EXPORT_SYMBOL vmlinux 0xcb742707 twl6030_mmc_card_detect +EXPORT_SYMBOL vmlinux 0xcba7bcab amd_iommu_complete_ppr +EXPORT_SYMBOL vmlinux 0xcbb9c0ac find_inode_rcu EXPORT_SYMBOL vmlinux 0xcbc88a23 ZSTD_isFrame -EXPORT_SYMBOL vmlinux 0xcbd0f0cd flow_indr_dev_setup_offload EXPORT_SYMBOL vmlinux 0xcbd4898c fortify_panic -EXPORT_SYMBOL vmlinux 0xcbd9a395 xfrm_state_delete_tunnel EXPORT_SYMBOL vmlinux 0xcbe53c46 convert_art_to_tsc -EXPORT_SYMBOL vmlinux 0xcbf65c4e build_skb -EXPORT_SYMBOL vmlinux 0xcbf6690c rtnl_notify -EXPORT_SYMBOL vmlinux 0xcbf6ef47 ps2_sliced_command -EXPORT_SYMBOL vmlinux 0xcbf8c5b8 pci_bus_read_config_dword +EXPORT_SYMBOL vmlinux 0xcbec27f3 ether_setup +EXPORT_SYMBOL vmlinux 0xcbf57d0f ethtool_notify EXPORT_SYMBOL vmlinux 0xcbfb33e4 init_opal_dev +EXPORT_SYMBOL vmlinux 0xcc092313 nd_device_unregister +EXPORT_SYMBOL vmlinux 0xcc0f4bb8 d_lookup EXPORT_SYMBOL vmlinux 0xcc1b882a idr_get_next_ul +EXPORT_SYMBOL vmlinux 0xcc22a788 d_hash_and_lookup EXPORT_SYMBOL vmlinux 0xcc23002a hdmi_infoframe_pack_only EXPORT_SYMBOL vmlinux 0xcc248d26 serial8250_suspend_port -EXPORT_SYMBOL vmlinux 0xcc2c3d4d tso_build_hdr +EXPORT_SYMBOL vmlinux 0xcc279f00 agp_generic_destroy_page EXPORT_SYMBOL vmlinux 0xcc328a5c reservation_ww_class -EXPORT_SYMBOL vmlinux 0xcc40c9d3 put_devmap_managed_page -EXPORT_SYMBOL vmlinux 0xcc40e392 i8042_remove_filter EXPORT_SYMBOL vmlinux 0xcc445ceb __sg_page_iter_dma_next -EXPORT_SYMBOL vmlinux 0xcc473faf netif_rx +EXPORT_SYMBOL vmlinux 0xcc44b060 tcf_block_get EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible -EXPORT_SYMBOL vmlinux 0xcc5667f1 dquot_operations +EXPORT_SYMBOL vmlinux 0xcc5c1911 cdrom_mode_sense EXPORT_SYMBOL vmlinux 0xcc5c2df4 trace_print_symbols_seq EXPORT_SYMBOL vmlinux 0xcc5d22d9 can_do_mlock -EXPORT_SYMBOL vmlinux 0xcc729038 bio_integrity_clone -EXPORT_SYMBOL vmlinux 0xcc7a7d1d generic_file_direct_write -EXPORT_SYMBOL vmlinux 0xcc82b963 __SetPageMovable -EXPORT_SYMBOL vmlinux 0xcc8bb045 scsi_remove_host +EXPORT_SYMBOL vmlinux 0xcc64c77b tcp_get_cookie_sock +EXPORT_SYMBOL vmlinux 0xcc6dfa42 mdiobus_unregister_device +EXPORT_SYMBOL vmlinux 0xcc70a290 register_mii_timestamper +EXPORT_SYMBOL vmlinux 0xcc8d913b key_move +EXPORT_SYMBOL vmlinux 0xcc935658 __netlink_ns_capable +EXPORT_SYMBOL vmlinux 0xcc96950b dev_mc_add +EXPORT_SYMBOL vmlinux 0xcc96f40e sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0xcca090dd blackhole_netdev EXPORT_SYMBOL vmlinux 0xcca5839d xen_vcpu_id -EXPORT_SYMBOL vmlinux 0xccb95415 jbd2_journal_free_reserved +EXPORT_SYMBOL vmlinux 0xccbe41dc __SCK__tp_func_kfree EXPORT_SYMBOL vmlinux 0xccd4c999 __sg_page_iter_start -EXPORT_SYMBOL vmlinux 0xcce812e4 blk_queue_update_dma_pad +EXPORT_SYMBOL vmlinux 0xccd8b300 blk_queue_alignment_offset +EXPORT_SYMBOL vmlinux 0xcce1b5f8 get_user_pages_locked EXPORT_SYMBOL vmlinux 0xccef37e4 ZSTD_DStreamOutSize -EXPORT_SYMBOL vmlinux 0xccf5a124 tcp_rcv_established 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 0xcd0615bc __phy_write_mmd +EXPORT_SYMBOL vmlinux 0xcd0b3c57 block_page_mkwrite EXPORT_SYMBOL vmlinux 0xcd256667 tcp_md5_needed EXPORT_SYMBOL vmlinux 0xcd279169 nla_find -EXPORT_SYMBOL vmlinux 0xcd5a346d napi_complete_done -EXPORT_SYMBOL vmlinux 0xcd614ea0 key_revoke -EXPORT_SYMBOL vmlinux 0xcd62d607 poll_initwait -EXPORT_SYMBOL vmlinux 0xcd7d6467 pci_map_biosrom -EXPORT_SYMBOL vmlinux 0xcd81b082 vme_lm_request +EXPORT_SYMBOL vmlinux 0xcd380335 seq_release +EXPORT_SYMBOL vmlinux 0xcd613821 xfrm_alloc_spi +EXPORT_SYMBOL vmlinux 0xcd7bc171 fs_param_is_enum EXPORT_SYMBOL vmlinux 0xcd8ce890 acpi_format_exception -EXPORT_SYMBOL vmlinux 0xcd8f6ae5 brioctl_set -EXPORT_SYMBOL vmlinux 0xcd974d00 netpoll_poll_enable -EXPORT_SYMBOL vmlinux 0xcda4c699 wireless_spy_update -EXPORT_SYMBOL vmlinux 0xcdb23b45 fwnode_graph_parse_endpoint +EXPORT_SYMBOL vmlinux 0xcda6e974 filemap_flush +EXPORT_SYMBOL vmlinux 0xcdaccdfa dev_set_allmulti +EXPORT_SYMBOL vmlinux 0xcdae49e1 param_get_uint +EXPORT_SYMBOL vmlinux 0xcdb038c4 input_inject_event +EXPORT_SYMBOL vmlinux 0xcdbfa001 sock_set_reuseaddr EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel -EXPORT_SYMBOL vmlinux 0xcdc69e1c skb_set_owner_w +EXPORT_SYMBOL vmlinux 0xcddc77bc mount_subtree EXPORT_SYMBOL vmlinux 0xcde77bcc free_opal_dev -EXPORT_SYMBOL vmlinux 0xcdf1963b ppp_input_error -EXPORT_SYMBOL vmlinux 0xce01c5da pci_bus_alloc_resource +EXPORT_SYMBOL vmlinux 0xcdfb09b7 qdisc_watchdog_init +EXPORT_SYMBOL vmlinux 0xcdfb3fad submit_bio EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake -EXPORT_SYMBOL vmlinux 0xce43f693 __traceiter_spi_transfer_start -EXPORT_SYMBOL vmlinux 0xce4c2618 input_get_poll_interval +EXPORT_SYMBOL vmlinux 0xce301b0c i2c_add_adapter EXPORT_SYMBOL vmlinux 0xce4cdb8e fb_find_best_mode -EXPORT_SYMBOL vmlinux 0xce4cf09f remove_arg_zero EXPORT_SYMBOL vmlinux 0xce4e47b6 __kfifo_skip_r -EXPORT_SYMBOL vmlinux 0xce4eba99 phy_set_sym_pause +EXPORT_SYMBOL vmlinux 0xce4ed5e2 unmap_mapping_range +EXPORT_SYMBOL vmlinux 0xce55db1a param_ops_long +EXPORT_SYMBOL vmlinux 0xce58dba9 pci_map_biosrom EXPORT_SYMBOL vmlinux 0xce5ac24f zlib_inflate_workspacesize -EXPORT_SYMBOL vmlinux 0xce5cf824 page_mapping -EXPORT_SYMBOL vmlinux 0xce5e0ef4 dma_resv_add_shared_fence -EXPORT_SYMBOL vmlinux 0xce66432b get_vm_area -EXPORT_SYMBOL vmlinux 0xce719039 __frontswap_store -EXPORT_SYMBOL vmlinux 0xce752f42 posix_acl_update_mode EXPORT_SYMBOL vmlinux 0xce76c257 acpi_get_irq_routing_table EXPORT_SYMBOL vmlinux 0xce807a25 up_write +EXPORT_SYMBOL vmlinux 0xce8e81b3 mdiobus_free +EXPORT_SYMBOL vmlinux 0xce8eae78 ip_defrag EXPORT_SYMBOL vmlinux 0xcea381dd x86_match_cpu EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul +EXPORT_SYMBOL vmlinux 0xceb70310 frontswap_register_ops +EXPORT_SYMBOL vmlinux 0xcec06a10 pci_release_selected_regions EXPORT_SYMBOL vmlinux 0xced0f4d4 gen_pool_create +EXPORT_SYMBOL vmlinux 0xced77e58 trace_raw_output_prep EXPORT_SYMBOL vmlinux 0xceec8abd __mb_cache_entry_free -EXPORT_SYMBOL vmlinux 0xceef1e59 ip6_frag_next -EXPORT_SYMBOL vmlinux 0xceef7f5e blk_rq_map_integrity_sg +EXPORT_SYMBOL vmlinux 0xcef3a3b0 file_fdatawait_range +EXPORT_SYMBOL vmlinux 0xcef79383 mmc_unregister_driver +EXPORT_SYMBOL vmlinux 0xcef795a6 sock_no_shutdown EXPORT_SYMBOL vmlinux 0xcefb0c9f __mutex_init EXPORT_SYMBOL vmlinux 0xcefcd99a serial8250_unregister_port -EXPORT_SYMBOL vmlinux 0xcf17da2c page_pool_update_nid -EXPORT_SYMBOL vmlinux 0xcf245a14 xfrm_policy_destroy +EXPORT_SYMBOL vmlinux 0xcefe5127 generic_file_splice_read +EXPORT_SYMBOL vmlinux 0xcf08d3b6 __dec_node_page_state +EXPORT_SYMBOL vmlinux 0xcf229f9e dump_emit +EXPORT_SYMBOL vmlinux 0xcf237c93 dma_sync_single_for_cpu +EXPORT_SYMBOL vmlinux 0xcf29e330 netif_receive_skb_core EXPORT_SYMBOL vmlinux 0xcf2a6966 up -EXPORT_SYMBOL vmlinux 0xcf34665c blk_queue_bounce_limit -EXPORT_SYMBOL vmlinux 0xcf3b27f1 simple_transaction_set -EXPORT_SYMBOL vmlinux 0xcf42b9bc t10_pi_type3_crc +EXPORT_SYMBOL vmlinux 0xcf33e8de netdev_warn +EXPORT_SYMBOL vmlinux 0xcf48d9ba tty_wait_until_sent +EXPORT_SYMBOL vmlinux 0xcf496b6f __block_write_begin +EXPORT_SYMBOL vmlinux 0xcf4d6de3 fs_param_is_bool EXPORT_SYMBOL vmlinux 0xcf4fdd4d _atomic_dec_and_lock -EXPORT_SYMBOL vmlinux 0xcf513d2d __tracepoint_dma_fence_emit -EXPORT_SYMBOL vmlinux 0xcf63c595 generic_pipe_buf_try_steal -EXPORT_SYMBOL vmlinux 0xcf7646ef udp_flush_pending_frames -EXPORT_SYMBOL vmlinux 0xcf77fcb3 d_instantiate_anon -EXPORT_SYMBOL vmlinux 0xcf7af416 file_open_root -EXPORT_SYMBOL vmlinux 0xcf94a634 dev_mc_sync_multiple +EXPORT_SYMBOL vmlinux 0xcf57a584 iw_handler_get_spy +EXPORT_SYMBOL vmlinux 0xcf6b400a get_cached_acl +EXPORT_SYMBOL vmlinux 0xcf729eb5 simple_getattr +EXPORT_SYMBOL vmlinux 0xcf8ceb13 __hw_addr_unsync_dev +EXPORT_SYMBOL vmlinux 0xcf9a444c udp_gro_complete EXPORT_SYMBOL vmlinux 0xcf9b558d touchscreen_set_mt_pos -EXPORT_SYMBOL vmlinux 0xcf9f22ba tcp_disconnect +EXPORT_SYMBOL vmlinux 0xcf9c4592 ip6mr_rule_default EXPORT_SYMBOL vmlinux 0xcfa7e913 posix_acl_valid -EXPORT_SYMBOL vmlinux 0xcfad64bc gro_find_receive_by_type -EXPORT_SYMBOL vmlinux 0xcfbf1c33 dev_addr_flush -EXPORT_SYMBOL vmlinux 0xcfc587d0 __tracepoint_mmap_lock_start_locking +EXPORT_SYMBOL vmlinux 0xcfba62a1 seq_path +EXPORT_SYMBOL vmlinux 0xcfbdd7df skb_flow_dissect_hash +EXPORT_SYMBOL vmlinux 0xcfbfc1e0 simple_transaction_get +EXPORT_SYMBOL vmlinux 0xcfc42682 padata_free +EXPORT_SYMBOL vmlinux 0xcfc91613 current_time EXPORT_SYMBOL vmlinux 0xcfc9deaf atomic_dec_and_mutex_lock EXPORT_SYMBOL vmlinux 0xcfd884a8 __hsiphash_unaligned -EXPORT_SYMBOL vmlinux 0xcff1e3ba netlbl_calipso_ops_register -EXPORT_SYMBOL vmlinux 0xcff55f8d fb_get_buffer_offset -EXPORT_SYMBOL vmlinux 0xd000afcd dm_kobject_release -EXPORT_SYMBOL vmlinux 0xd00f45f5 xfrm_state_flush -EXPORT_SYMBOL vmlinux 0xd01ea647 mark_buffer_write_io_error -EXPORT_SYMBOL vmlinux 0xd02726ef input_reset_device -EXPORT_SYMBOL vmlinux 0xd0297ef5 mipi_dsi_dcs_write -EXPORT_SYMBOL vmlinux 0xd02ba1ef param_ops_bint -EXPORT_SYMBOL vmlinux 0xd0417d4a jbd2_journal_start_commit -EXPORT_SYMBOL vmlinux 0xd04bba08 ppp_register_channel +EXPORT_SYMBOL vmlinux 0xd00940f4 vfio_unpin_pages +EXPORT_SYMBOL vmlinux 0xd0188843 blk_queue_update_dma_alignment +EXPORT_SYMBOL vmlinux 0xd02bf827 md_bitmap_startwrite EXPORT_SYMBOL vmlinux 0xd04c1a64 sysctl_devconf_inherit_init_net -EXPORT_SYMBOL vmlinux 0xd05b2736 gnet_stats_copy_rate_est -EXPORT_SYMBOL vmlinux 0xd061eb49 dev_change_proto_down_generic +EXPORT_SYMBOL vmlinux 0xd04e004a skb_copy EXPORT_SYMBOL vmlinux 0xd0654aba woken_wake_function -EXPORT_SYMBOL vmlinux 0xd06575fc tcp_sock_set_nodelay -EXPORT_SYMBOL vmlinux 0xd0669985 neigh_lookup_nodev -EXPORT_SYMBOL vmlinux 0xd06e3e90 input_grab_device -EXPORT_SYMBOL vmlinux 0xd072c6eb vme_irq_handler EXPORT_SYMBOL vmlinux 0xd0760fc0 kfree_sensitive -EXPORT_SYMBOL vmlinux 0xd0843d75 vm_mmap +EXPORT_SYMBOL vmlinux 0xd07e9ad7 blk_queue_max_segments EXPORT_SYMBOL vmlinux 0xd08adb2b trace_seq_hex_dump -EXPORT_SYMBOL vmlinux 0xd08b77ba zpool_unregister_driver -EXPORT_SYMBOL vmlinux 0xd08e2a63 xsk_tx_release -EXPORT_SYMBOL vmlinux 0xd0a31b8b md_wait_for_blocked_rdev +EXPORT_SYMBOL vmlinux 0xd08b551d netdev_adjacent_change_abort +EXPORT_SYMBOL vmlinux 0xd090d965 t10_pi_type1_ip +EXPORT_SYMBOL vmlinux 0xd0a988e9 set_page_dirty_lock EXPORT_SYMBOL vmlinux 0xd0ae5f55 __printk_cpu_trylock EXPORT_SYMBOL vmlinux 0xd0b74705 acpi_install_interface -EXPORT_SYMBOL vmlinux 0xd0b88067 pm860x_set_bits -EXPORT_SYMBOL vmlinux 0xd0d4293a free_cgroup_ns +EXPORT_SYMBOL vmlinux 0xd0b79180 blk_mq_start_request +EXPORT_SYMBOL vmlinux 0xd0c7f5dc param_get_invbool +EXPORT_SYMBOL vmlinux 0xd0d390eb ptp_cancel_worker_sync EXPORT_SYMBOL vmlinux 0xd0da656b __stack_chk_fail -EXPORT_SYMBOL vmlinux 0xd0eb3695 find_inode_by_ino_rcu -EXPORT_SYMBOL vmlinux 0xd0ebb14c rtnl_create_link EXPORT_SYMBOL vmlinux 0xd0f284b8 mmiotrace_printk -EXPORT_SYMBOL vmlinux 0xd0fdc6eb lease_get_mtime +EXPORT_SYMBOL vmlinux 0xd0f86e6e dm_get_device EXPORT_SYMBOL vmlinux 0xd0fe8d51 sg_pcopy_from_buffer EXPORT_SYMBOL vmlinux 0xd0fef3b2 agp_free_key -EXPORT_SYMBOL vmlinux 0xd11a8bc8 unregister_netdevice_notifier_net -EXPORT_SYMBOL vmlinux 0xd121d95f bio_integrity_prep -EXPORT_SYMBOL vmlinux 0xd124c852 pci_add_new_bus -EXPORT_SYMBOL vmlinux 0xd12c8a2d acpi_pm_device_sleep_state +EXPORT_SYMBOL vmlinux 0xd11b7b42 dm_kcopyd_zero +EXPORT_SYMBOL vmlinux 0xd1203dc0 netdev_emerg +EXPORT_SYMBOL vmlinux 0xd1278887 input_get_poll_interval EXPORT_SYMBOL vmlinux 0xd1363cc1 ucs2_strsize -EXPORT_SYMBOL vmlinux 0xd144a42a filemap_invalidate_unlock_two -EXPORT_SYMBOL vmlinux 0xd14d9bda put_disk -EXPORT_SYMBOL vmlinux 0xd1581bb4 __page_frag_cache_drain -EXPORT_SYMBOL vmlinux 0xd15add00 tcp_get_cookie_sock +EXPORT_SYMBOL vmlinux 0xd145402d netlink_rcv_skb EXPORT_SYMBOL vmlinux 0xd15eada0 nla_reserve +EXPORT_SYMBOL vmlinux 0xd16ef55c key_unlink +EXPORT_SYMBOL vmlinux 0xd171f438 bio_endio EXPORT_SYMBOL vmlinux 0xd1769161 kobject_get +EXPORT_SYMBOL vmlinux 0xd17764ab __netif_schedule EXPORT_SYMBOL vmlinux 0xd1816f32 frontswap_writethrough +EXPORT_SYMBOL vmlinux 0xd183cb14 xfrm_state_check_expire EXPORT_SYMBOL vmlinux 0xd194ddf9 acpi_gpe_count -EXPORT_SYMBOL vmlinux 0xd19fba6a pipe_unlock -EXPORT_SYMBOL vmlinux 0xd1bdc61d __SCK__tp_func_kmem_cache_alloc_node -EXPORT_SYMBOL vmlinux 0xd1d836de pm8606_osc_disable EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string -EXPORT_SYMBOL vmlinux 0xd1f0eda9 cdrom_get_last_written EXPORT_SYMBOL vmlinux 0xd1f60a89 arch_io_free_memtype_wc EXPORT_SYMBOL vmlinux 0xd1f6c5f3 smp_num_siblings -EXPORT_SYMBOL vmlinux 0xd1f83986 module_refcount -EXPORT_SYMBOL vmlinux 0xd203931f vga_switcheroo_client_probe_defer -EXPORT_SYMBOL vmlinux 0xd2172aa4 udp_gro_complete +EXPORT_SYMBOL vmlinux 0xd1f8df1f blk_mq_complete_request +EXPORT_SYMBOL vmlinux 0xd1f920cf elv_rb_former_request +EXPORT_SYMBOL vmlinux 0xd1fed757 fib_notifier_ops_register +EXPORT_SYMBOL vmlinux 0xd2040e9f inode_io_list_del +EXPORT_SYMBOL vmlinux 0xd2119056 xfrm_state_free +EXPORT_SYMBOL vmlinux 0xd2186f99 remove_arg_zero EXPORT_SYMBOL vmlinux 0xd21c5139 iowrite64_lo_hi EXPORT_SYMBOL vmlinux 0xd2237016 radix_tree_delete_item -EXPORT_SYMBOL vmlinux 0xd23fbe34 pldmfw_flash_image -EXPORT_SYMBOL vmlinux 0xd2540746 uart_unregister_driver EXPORT_SYMBOL vmlinux 0xd25d4f74 console_blank_hook -EXPORT_SYMBOL vmlinux 0xd26cfacb __mmap_lock_do_trace_released +EXPORT_SYMBOL vmlinux 0xd27052e9 param_array_ops EXPORT_SYMBOL vmlinux 0xd2779731 blk_limits_io_min EXPORT_SYMBOL vmlinux 0xd27b25dd blk_check_plugged -EXPORT_SYMBOL vmlinux 0xd2823fda follow_down_one -EXPORT_SYMBOL vmlinux 0xd283b558 request_key_tag +EXPORT_SYMBOL vmlinux 0xd27cccc2 sk_page_frag_refill +EXPORT_SYMBOL vmlinux 0xd2800691 nf_conntrack_destroy +EXPORT_SYMBOL vmlinux 0xd2818730 truncate_inode_pages_final +EXPORT_SYMBOL vmlinux 0xd2856350 skb_flow_dissect_ct +EXPORT_SYMBOL vmlinux 0xd297e2d0 qdisc_watchdog_schedule_range_ns EXPORT_SYMBOL vmlinux 0xd2bc5c46 __get_user_nocheck_2 EXPORT_SYMBOL vmlinux 0xd2c99738 __kmalloc_track_caller -EXPORT_SYMBOL vmlinux 0xd2c9fcae pci_bus_read_dev_vendor_id +EXPORT_SYMBOL vmlinux 0xd2d27f48 generic_ro_fops +EXPORT_SYMBOL vmlinux 0xd2d5cef7 __set_page_dirty_no_writeback EXPORT_SYMBOL vmlinux 0xd2d7a581 __register_nls EXPORT_SYMBOL vmlinux 0xd2da1048 register_netdevice_notifier -EXPORT_SYMBOL vmlinux 0xd2e29c88 proc_create_mount_point +EXPORT_SYMBOL vmlinux 0xd2de7e3c pm860x_reg_write EXPORT_SYMBOL vmlinux 0xd2e2a9d0 hdmi_spd_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0xd2e44712 netif_stacked_transfer_operstate -EXPORT_SYMBOL vmlinux 0xd2e4d5fd locks_remove_posix EXPORT_SYMBOL vmlinux 0xd2ea49b8 acpi_leave_sleep_state_prep -EXPORT_SYMBOL vmlinux 0xd2f277d0 genphy_setup_forced +EXPORT_SYMBOL vmlinux 0xd2ed03a7 genphy_c37_read_status +EXPORT_SYMBOL vmlinux 0xd2feba83 sk_stream_kill_queues +EXPORT_SYMBOL vmlinux 0xd3010529 sk_stream_wait_connect +EXPORT_SYMBOL vmlinux 0xd313525a unpin_user_pages +EXPORT_SYMBOL vmlinux 0xd313e306 flow_rule_match_enc_ports +EXPORT_SYMBOL vmlinux 0xd316666b __tracepoint_kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0xd3206ce7 __vfs_setxattr +EXPORT_SYMBOL vmlinux 0xd3245227 _copy_to_iter +EXPORT_SYMBOL vmlinux 0xd3373f6e inode_nohighmem EXPORT_SYMBOL vmlinux 0xd338ea7e __SCT__tp_func_kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0xd339ee3a iptun_encaps -EXPORT_SYMBOL vmlinux 0xd34206d5 _dev_printk +EXPORT_SYMBOL vmlinux 0xd34bea33 dst_init EXPORT_SYMBOL vmlinux 0xd3543063 memcg_kmem_enabled_key EXPORT_SYMBOL vmlinux 0xd35a6d31 mempool_kmalloc EXPORT_SYMBOL vmlinux 0xd35cce70 _raw_spin_unlock_irqrestore -EXPORT_SYMBOL vmlinux 0xd3629d72 tcf_em_register +EXPORT_SYMBOL vmlinux 0xd3696b9a kernel_param_unlock EXPORT_SYMBOL vmlinux 0xd36dc10c get_random_u32 EXPORT_SYMBOL vmlinux 0xd36e3d59 prandom_bytes_state -EXPORT_SYMBOL vmlinux 0xd37a8340 netdev_set_num_tc +EXPORT_SYMBOL vmlinux 0xd37b51a1 mipi_dsi_dcs_set_pixel_format EXPORT_SYMBOL vmlinux 0xd38cd261 __default_kernel_pte_mask -EXPORT_SYMBOL vmlinux 0xd3aa48de del_random_ready_callback -EXPORT_SYMBOL vmlinux 0xd3d6bf70 iter_file_splice_write -EXPORT_SYMBOL vmlinux 0xd3dcd065 flow_rule_match_basic -EXPORT_SYMBOL vmlinux 0xd3ddd043 bdev_dax_pgoff -EXPORT_SYMBOL vmlinux 0xd3e20642 vme_new_dma_list +EXPORT_SYMBOL vmlinux 0xd3da5fe9 import_single_range EXPORT_SYMBOL vmlinux 0xd3eaf1ed devlink_dpipe_entry_clear -EXPORT_SYMBOL vmlinux 0xd3f237b7 scsi_print_result +EXPORT_SYMBOL vmlinux 0xd3f6f63a __cancel_dirty_page EXPORT_SYMBOL vmlinux 0xd406d266 fb_mode_is_equal -EXPORT_SYMBOL vmlinux 0xd40aa876 qdisc_hash_add -EXPORT_SYMBOL vmlinux 0xd410ed46 __traceiter_mmap_lock_released -EXPORT_SYMBOL vmlinux 0xd424a65b inet_csk_reqsk_queue_drop -EXPORT_SYMBOL vmlinux 0xd42e3ff7 devm_kvasprintf -EXPORT_SYMBOL vmlinux 0xd43db854 xfrm_state_register_afinfo -EXPORT_SYMBOL vmlinux 0xd4441ce7 __ip_mc_dec_group -EXPORT_SYMBOL vmlinux 0xd449ac0b xfrm_policy_walk -EXPORT_SYMBOL vmlinux 0xd4512abc dma_get_sgtable_attrs -EXPORT_SYMBOL vmlinux 0xd452dade zap_page_range -EXPORT_SYMBOL vmlinux 0xd453e392 netdev_txq_to_tc -EXPORT_SYMBOL vmlinux 0xd45a851b kernel_sendmsg_locked +EXPORT_SYMBOL vmlinux 0xd40894fb sock_alloc_file +EXPORT_SYMBOL vmlinux 0xd437cde9 dma_set_coherent_mask +EXPORT_SYMBOL vmlinux 0xd453abeb sock_create_lite EXPORT_SYMBOL vmlinux 0xd45cc6ca bin2hex -EXPORT_SYMBOL vmlinux 0xd471255e max8998_read_reg -EXPORT_SYMBOL vmlinux 0xd471ef49 dst_discard_out +EXPORT_SYMBOL vmlinux 0xd4800dc5 phy_mii_ioctl EXPORT_SYMBOL vmlinux 0xd4835ef8 dmi_check_system EXPORT_SYMBOL vmlinux 0xd4bb4a82 inet6addr_validator_notifier_call_chain +EXPORT_SYMBOL vmlinux 0xd4c1b8af mipi_dsi_dcs_read EXPORT_SYMBOL vmlinux 0xd4d1983c udplite_table -EXPORT_SYMBOL vmlinux 0xd4d488fb jbd2_journal_revoke -EXPORT_SYMBOL vmlinux 0xd4e97092 prepare_to_swait_event -EXPORT_SYMBOL vmlinux 0xd4f8a131 scsi_register_driver +EXPORT_SYMBOL vmlinux 0xd4ed1b13 dm_put_device EXPORT_SYMBOL vmlinux 0xd4fa2b69 textsearch_destroy EXPORT_SYMBOL vmlinux 0xd4fa5a87 __kfifo_dma_out_prepare -EXPORT_SYMBOL vmlinux 0xd4fb7302 km_state_notify -EXPORT_SYMBOL vmlinux 0xd50314f1 netdev_reset_tc -EXPORT_SYMBOL vmlinux 0xd50b7656 backlight_device_register -EXPORT_SYMBOL vmlinux 0xd511aff4 noop_qdisc -EXPORT_SYMBOL vmlinux 0xd519f090 path_is_under -EXPORT_SYMBOL vmlinux 0xd51b6627 mmc_cqe_request_done +EXPORT_SYMBOL vmlinux 0xd4fe588d sk_stop_timer_sync +EXPORT_SYMBOL vmlinux 0xd50685b2 serial8250_do_pm +EXPORT_SYMBOL vmlinux 0xd508a8e3 __sk_mem_raise_allocated +EXPORT_SYMBOL vmlinux 0xd50a6c01 dquot_mark_dquot_dirty +EXPORT_SYMBOL vmlinux 0xd51b4caf inet_sock_destruct +EXPORT_SYMBOL vmlinux 0xd51bc238 pci_biosrom_size EXPORT_SYMBOL vmlinux 0xd5263820 mb_cache_destroy EXPORT_SYMBOL vmlinux 0xd5346bfc acpi_get_possible_resources -EXPORT_SYMBOL vmlinux 0xd5370f97 sock_set_rcvbuf -EXPORT_SYMBOL vmlinux 0xd537b839 genl_notify -EXPORT_SYMBOL vmlinux 0xd53b6ebe tcp_req_err -EXPORT_SYMBOL vmlinux 0xd54216e4 __hw_addr_ref_sync_dev -EXPORT_SYMBOL vmlinux 0xd5439ad2 flow_rule_match_enc_ipv4_addrs -EXPORT_SYMBOL vmlinux 0xd5567188 rproc_of_resm_mem_entry_init -EXPORT_SYMBOL vmlinux 0xd55e2160 ppp_register_net_channel -EXPORT_SYMBOL vmlinux 0xd56457bf iget_failed -EXPORT_SYMBOL vmlinux 0xd56c5646 pci_pme_capable -EXPORT_SYMBOL vmlinux 0xd56df17e fb_prepare_logo -EXPORT_SYMBOL vmlinux 0xd57f36ac acpi_get_hp_hw_control_from_firmware +EXPORT_SYMBOL vmlinux 0xd5416114 netlink_ns_capable +EXPORT_SYMBOL vmlinux 0xd5516912 mr_dump +EXPORT_SYMBOL vmlinux 0xd552e10a scsi_report_bus_reset +EXPORT_SYMBOL vmlinux 0xd559e082 netif_rx_ni +EXPORT_SYMBOL vmlinux 0xd584e786 netpoll_poll_disable EXPORT_SYMBOL vmlinux 0xd58e70dd net_rand_noise -EXPORT_SYMBOL vmlinux 0xd59b0219 cdev_alloc +EXPORT_SYMBOL vmlinux 0xd5ab30cc dma_resv_copy_fences EXPORT_SYMBOL vmlinux 0xd5b3d0d5 xxh64_copy_state -EXPORT_SYMBOL vmlinux 0xd5c3ccdf nf_ct_attach -EXPORT_SYMBOL vmlinux 0xd5d9d54e cdrom_dummy_generic_packet -EXPORT_SYMBOL vmlinux 0xd5fc6c1d __skb_flow_get_ports +EXPORT_SYMBOL vmlinux 0xd5c9bba7 fb_pan_display +EXPORT_SYMBOL vmlinux 0xd5fbb69e mr_mfc_seq_next EXPORT_SYMBOL vmlinux 0xd5fd90f1 prepare_to_wait EXPORT_SYMBOL vmlinux 0xd60736ec gf128mul_free_64k -EXPORT_SYMBOL vmlinux 0xd60dd061 sg_miter_next -EXPORT_SYMBOL vmlinux 0xd61294c6 generic_remap_file_range_prep -EXPORT_SYMBOL vmlinux 0xd6169415 pin_user_pages_unlocked -EXPORT_SYMBOL vmlinux 0xd618589f dma_resv_reserve_shared -EXPORT_SYMBOL vmlinux 0xd6203960 ipv6_dev_get_saddr +EXPORT_SYMBOL vmlinux 0xd6186c00 pci_fixup_cardbus +EXPORT_SYMBOL vmlinux 0xd61a4f0d __xfrm_state_destroy +EXPORT_SYMBOL vmlinux 0xd61c5df9 generic_write_checks EXPORT_SYMBOL vmlinux 0xd62ecd49 rps_sock_flow_table -EXPORT_SYMBOL vmlinux 0xd636d447 xfrm_unregister_type_offload EXPORT_SYMBOL vmlinux 0xd63fd8d1 utf8nagemax EXPORT_SYMBOL vmlinux 0xd643239a acpi_leave_sleep_state -EXPORT_SYMBOL vmlinux 0xd6476ad8 ipv6_sock_mc_join -EXPORT_SYMBOL vmlinux 0xd64a0d73 genphy_soft_reset -EXPORT_SYMBOL vmlinux 0xd683b7af phy_remove_link_mode +EXPORT_SYMBOL vmlinux 0xd64b260b kthread_destroy_worker +EXPORT_SYMBOL vmlinux 0xd64e00fc pcibios_bus_to_resource +EXPORT_SYMBOL vmlinux 0xd64e9ebe adjust_managed_page_count +EXPORT_SYMBOL vmlinux 0xd67d1761 neigh_sysctl_unregister EXPORT_SYMBOL vmlinux 0xd688716b dm_kcopyd_client_create EXPORT_SYMBOL vmlinux 0xd68c5a1f adjust_resource EXPORT_SYMBOL vmlinux 0xd691c6a9 unregister_sysctl_table -EXPORT_SYMBOL vmlinux 0xd69269d7 __bread_gfp -EXPORT_SYMBOL vmlinux 0xd69552e4 tty_port_tty_set EXPORT_SYMBOL vmlinux 0xd6a91f54 twl_i2c_read -EXPORT_SYMBOL vmlinux 0xd6af6f19 ptp_schedule_worker +EXPORT_SYMBOL vmlinux 0xd6ab78a4 clear_bdi_congested +EXPORT_SYMBOL vmlinux 0xd6ac3b7a seg6_hmac_net_exit EXPORT_SYMBOL vmlinux 0xd6b2ed5f generate_pm_trace EXPORT_SYMBOL vmlinux 0xd6b33026 cpu_khz -EXPORT_SYMBOL vmlinux 0xd6c3bb84 scsi_print_command -EXPORT_SYMBOL vmlinux 0xd6c8905f mmc_run_bkops -EXPORT_SYMBOL vmlinux 0xd6cbad80 skb_vlan_untag -EXPORT_SYMBOL vmlinux 0xd6d27d43 key_validate -EXPORT_SYMBOL vmlinux 0xd6d41bd8 pm_vt_switch_unregister -EXPORT_SYMBOL vmlinux 0xd6d79296 pcie_print_link_status +EXPORT_SYMBOL vmlinux 0xd6c8e62e xen_alloc_unpopulated_pages +EXPORT_SYMBOL vmlinux 0xd6caf253 udp_disconnect +EXPORT_SYMBOL vmlinux 0xd6e74c03 mark_page_accessed EXPORT_SYMBOL vmlinux 0xd6eaaea1 full_name_hash EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc -EXPORT_SYMBOL vmlinux 0xd6f31647 tcf_block_put_ext +EXPORT_SYMBOL vmlinux 0xd6efe886 configfs_register_subsystem EXPORT_SYMBOL vmlinux 0xd6fde043 is_module_sig_enforced EXPORT_SYMBOL vmlinux 0xd70d35a1 gf128mul_4k_bbe EXPORT_SYMBOL vmlinux 0xd70f62b6 acpi_os_execute -EXPORT_SYMBOL vmlinux 0xd70ffd86 agp3_generic_tlbflush -EXPORT_SYMBOL vmlinux 0xd7290d36 generic_file_llseek -EXPORT_SYMBOL vmlinux 0xd735fa6c devfreq_update_status +EXPORT_SYMBOL vmlinux 0xd7248d9b ip6_err_gen_icmpv6_unreach EXPORT_SYMBOL vmlinux 0xd738ca1b phy_unregister_fixup_for_uid -EXPORT_SYMBOL vmlinux 0xd73ccdb1 alloc_file_pseudo -EXPORT_SYMBOL vmlinux 0xd74db7a8 pci_scan_bus -EXPORT_SYMBOL vmlinux 0xd74e330b agp_enable -EXPORT_SYMBOL vmlinux 0xd77ddc8b tcf_exts_terse_dump -EXPORT_SYMBOL vmlinux 0xd7942769 sk_ns_capable -EXPORT_SYMBOL vmlinux 0xd795ef2b cdev_set_parent -EXPORT_SYMBOL vmlinux 0xd7a055bd crypto_sha512_update -EXPORT_SYMBOL vmlinux 0xd7a31af6 i2c_smbus_xfer -EXPORT_SYMBOL vmlinux 0xd7b3085c sk_stream_kill_queues -EXPORT_SYMBOL vmlinux 0xd7b976d0 agp_backend_acquire -EXPORT_SYMBOL vmlinux 0xd7cfa1f7 sock_bindtoindex +EXPORT_SYMBOL vmlinux 0xd738f30c tty_port_put +EXPORT_SYMBOL vmlinux 0xd75f6923 phy_register_fixup_for_id +EXPORT_SYMBOL vmlinux 0xd768c410 twl6040_get_sysclk +EXPORT_SYMBOL vmlinux 0xd78bae50 blkdev_get_by_path +EXPORT_SYMBOL vmlinux 0xd78e34b4 request_partial_firmware_into_buf +EXPORT_SYMBOL vmlinux 0xd790a285 ip_sock_set_freebind +EXPORT_SYMBOL vmlinux 0xd7af363d filemap_fdatawait_range +EXPORT_SYMBOL vmlinux 0xd7b7686f dma_unmap_resource +EXPORT_SYMBOL vmlinux 0xd7bab60a __breadahead +EXPORT_SYMBOL vmlinux 0xd7c9e90d genphy_restart_aneg +EXPORT_SYMBOL vmlinux 0xd7caccf6 get_phy_device +EXPORT_SYMBOL vmlinux 0xd7d212f6 reuseport_migrate_sock EXPORT_SYMBOL vmlinux 0xd7d280ad irq_poll_complete -EXPORT_SYMBOL vmlinux 0xd7dd4c43 generic_iommu_put_resv_regions EXPORT_SYMBOL vmlinux 0xd7dd777b reserve_perfctr_nmi EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll EXPORT_SYMBOL vmlinux 0xd7ea7094 nf_unregister_queue_handler -EXPORT_SYMBOL vmlinux 0xd7f6d606 handle_edge_irq -EXPORT_SYMBOL vmlinux 0xd8022e22 input_unregister_device -EXPORT_SYMBOL vmlinux 0xd81d4a61 ipv6_sock_mc_drop -EXPORT_SYMBOL vmlinux 0xd8270efe tcp_get_md5sig_pool -EXPORT_SYMBOL vmlinux 0xd8368747 __xfrm_state_destroy -EXPORT_SYMBOL vmlinux 0xd83a484d unregister_binfmt -EXPORT_SYMBOL vmlinux 0xd8418508 d_splice_alias -EXPORT_SYMBOL vmlinux 0xd84300ba __tty_insert_flip_char +EXPORT_SYMBOL vmlinux 0xd7ec96e4 end_buffer_read_sync +EXPORT_SYMBOL vmlinux 0xd80dc5ad cont_write_begin +EXPORT_SYMBOL vmlinux 0xd815e60d phy_loopback EXPORT_SYMBOL vmlinux 0xd846c315 acpi_write_bit_register -EXPORT_SYMBOL vmlinux 0xd85c9f78 dev_mc_init -EXPORT_SYMBOL vmlinux 0xd85e570c stream_open -EXPORT_SYMBOL vmlinux 0xd861d131 input_unregister_handle -EXPORT_SYMBOL vmlinux 0xd887d290 fscrypt_ioctl_set_policy +EXPORT_SYMBOL vmlinux 0xd8551726 mmc_gpio_set_cd_isr +EXPORT_SYMBOL vmlinux 0xd85b13b6 mmc_start_request +EXPORT_SYMBOL vmlinux 0xd8628fa0 dev_get_by_napi_id +EXPORT_SYMBOL vmlinux 0xd88a473f iget_failed +EXPORT_SYMBOL vmlinux 0xd88d935d tty_unregister_driver +EXPORT_SYMBOL vmlinux 0xd898d1c0 dma_set_mask EXPORT_SYMBOL vmlinux 0xd89da37f movable_zone -EXPORT_SYMBOL vmlinux 0xd8a121da __test_set_page_writeback -EXPORT_SYMBOL vmlinux 0xd8a4d098 __sk_mem_reclaim -EXPORT_SYMBOL vmlinux 0xd8a5d176 fib_default_rule_add +EXPORT_SYMBOL vmlinux 0xd8a5911e put_watch_queue EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format EXPORT_SYMBOL vmlinux 0xd8b61304 get_default_font -EXPORT_SYMBOL vmlinux 0xd8c6d4ee iov_iter_gap_alignment +EXPORT_SYMBOL vmlinux 0xd8bc66aa fscrypt_encrypt_block_inplace +EXPORT_SYMBOL vmlinux 0xd8bfdd3b add_watch_to_object EXPORT_SYMBOL vmlinux 0xd8cef6e1 clear_user +EXPORT_SYMBOL vmlinux 0xd8d6473f tcp_fastopen_defer_connect EXPORT_SYMBOL vmlinux 0xd8df08ac acpi_handle_printk -EXPORT_SYMBOL vmlinux 0xd8f414ed vif_device_init -EXPORT_SYMBOL vmlinux 0xd8f7d363 nexthop_set_hw_flags -EXPORT_SYMBOL vmlinux 0xd8fc789b jbd2_journal_destroy -EXPORT_SYMBOL vmlinux 0xd8fc7ec5 nf_register_sockopt -EXPORT_SYMBOL vmlinux 0xd90beb41 default_qdisc_ops -EXPORT_SYMBOL vmlinux 0xd91011e6 eth_header_cache -EXPORT_SYMBOL vmlinux 0xd913afcd blackhole_netdev -EXPORT_SYMBOL vmlinux 0xd91b3a14 skb_tunnel_check_pmtu +EXPORT_SYMBOL vmlinux 0xd8fb8a79 fb_blank +EXPORT_SYMBOL vmlinux 0xd90273c3 dma_unmap_sg_attrs +EXPORT_SYMBOL vmlinux 0xd90c84cc from_kuid +EXPORT_SYMBOL vmlinux 0xd912cb94 uart_match_port +EXPORT_SYMBOL vmlinux 0xd915579c pnp_device_detach EXPORT_SYMBOL vmlinux 0xd91f6ab6 strnlen_user -EXPORT_SYMBOL vmlinux 0xd921be5c __page_cache_alloc EXPORT_SYMBOL vmlinux 0xd92deb6b acpi_evaluate_object EXPORT_SYMBOL vmlinux 0xd933f209 __SCT__tp_func_rdpmc -EXPORT_SYMBOL vmlinux 0xd941dc49 skb_copy_and_csum_datagram_msg EXPORT_SYMBOL vmlinux 0xd9491c14 xa_destroy -EXPORT_SYMBOL vmlinux 0xd9505b45 redirty_page_for_writepage -EXPORT_SYMBOL vmlinux 0xd96a0592 dev_get_iflink +EXPORT_SYMBOL vmlinux 0xd94bda6e zpool_unregister_driver EXPORT_SYMBOL vmlinux 0xd971c6c4 xen_arch_register_cpu -EXPORT_SYMBOL vmlinux 0xd979cec0 ping_prot -EXPORT_SYMBOL vmlinux 0xd98243d6 dev_pick_tx_cpu_id +EXPORT_SYMBOL vmlinux 0xd979247c clean_bdev_aliases +EXPORT_SYMBOL vmlinux 0xd97fb4d4 __xfrm_dst_lookup EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages -EXPORT_SYMBOL vmlinux 0xd987d7ff keyring_search +EXPORT_SYMBOL vmlinux 0xd98dbd04 __tracepoint_kmem_cache_free EXPORT_SYMBOL vmlinux 0xd9a5ea54 __init_waitqueue_head EXPORT_SYMBOL vmlinux 0xd9b85ef6 lockref_get -EXPORT_SYMBOL vmlinux 0xd9cd42eb input_event +EXPORT_SYMBOL vmlinux 0xd9c8b733 __netlink_dump_start EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler EXPORT_SYMBOL vmlinux 0xd9d952d1 crypto_aes_sbox -EXPORT_SYMBOL vmlinux 0xd9def775 flow_indr_dev_unregister -EXPORT_SYMBOL vmlinux 0xd9e448d7 inode_init_once -EXPORT_SYMBOL vmlinux 0xd9f0f0bd dquot_initialize_needed -EXPORT_SYMBOL vmlinux 0xd9fc7f88 skb_append -EXPORT_SYMBOL vmlinux 0xda0a70f1 scsi_host_alloc +EXPORT_SYMBOL vmlinux 0xd9dc1fcd phy_write_mmd +EXPORT_SYMBOL vmlinux 0xd9e4feb6 __tracepoint_rdpmc +EXPORT_SYMBOL vmlinux 0xd9f03521 __frontswap_load +EXPORT_SYMBOL vmlinux 0xd9ffc14a xsk_tx_peek_release_desc_batch +EXPORT_SYMBOL vmlinux 0xda0d59ed input_flush_device +EXPORT_SYMBOL vmlinux 0xda1c7ad1 zero_fill_bio EXPORT_SYMBOL vmlinux 0xda1ddef1 acpi_mark_gpe_for_wake +EXPORT_SYMBOL vmlinux 0xda259abb __traceiter_mmap_lock_acquire_returned EXPORT_SYMBOL vmlinux 0xda26b8ea __irq_regs +EXPORT_SYMBOL vmlinux 0xda3c31a2 d_tmpfile EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open -EXPORT_SYMBOL vmlinux 0xda406d1b skb_copy_bits -EXPORT_SYMBOL vmlinux 0xda468672 simple_nosetlease -EXPORT_SYMBOL vmlinux 0xda57a01e tcf_block_netif_keep_dst -EXPORT_SYMBOL vmlinux 0xda5fd252 __cleancache_get_page -EXPORT_SYMBOL vmlinux 0xda6cd211 do_splice_direct -EXPORT_SYMBOL vmlinux 0xda6d3880 edac_mc_find +EXPORT_SYMBOL vmlinux 0xda43164c page_cache_prev_miss +EXPORT_SYMBOL vmlinux 0xda4c23b4 sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0xda4c2a4f pcim_pin_device +EXPORT_SYMBOL vmlinux 0xda6c24b5 __dev_kfree_skb_any EXPORT_SYMBOL vmlinux 0xda72a7ec ZSTD_nextInputType -EXPORT_SYMBOL vmlinux 0xda769f7d mod_node_page_state -EXPORT_SYMBOL vmlinux 0xda76d106 agp_generic_enable -EXPORT_SYMBOL vmlinux 0xda7da889 netdev_upper_dev_link +EXPORT_SYMBOL vmlinux 0xda73e8cd jbd2_journal_get_create_access +EXPORT_SYMBOL vmlinux 0xda73f736 register_qdisc +EXPORT_SYMBOL vmlinux 0xda74d3f0 truncate_setsize EXPORT_SYMBOL vmlinux 0xda89ea3b ip_idents_reserve -EXPORT_SYMBOL vmlinux 0xda907541 phy_ethtool_set_wol -EXPORT_SYMBOL vmlinux 0xdaa5eeed param_get_charp -EXPORT_SYMBOL vmlinux 0xdabd24a9 input_alloc_absinfo -EXPORT_SYMBOL vmlinux 0xdac4665b tcf_idr_create +EXPORT_SYMBOL vmlinux 0xda8a249b agp_copy_info +EXPORT_SYMBOL vmlinux 0xdaba3c52 km_state_notify EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region -EXPORT_SYMBOL vmlinux 0xdac90ce8 in6_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0xdacb3e3b sync_mapping_buffers EXPORT_SYMBOL vmlinux 0xdad13544 ptrs_per_p4d -EXPORT_SYMBOL vmlinux 0xdae57bd5 ip_route_me_harder -EXPORT_SYMBOL vmlinux 0xdb019d19 cdc_parse_cdc_header +EXPORT_SYMBOL vmlinux 0xdb0943a6 reuseport_detach_prog EXPORT_SYMBOL vmlinux 0xdb16b170 topology_phys_to_logical_pkg -EXPORT_SYMBOL vmlinux 0xdb17c3c0 netif_device_detach -EXPORT_SYMBOL vmlinux 0xdb41a296 inet6_release -EXPORT_SYMBOL vmlinux 0xdb591e72 __SCK__tp_func_dma_fence_enable_signal -EXPORT_SYMBOL vmlinux 0xdb602517 pci_read_config_dword +EXPORT_SYMBOL vmlinux 0xdb47fbcb crypto_sha512_update +EXPORT_SYMBOL vmlinux 0xdb4961ce __pci_register_driver EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy -EXPORT_SYMBOL vmlinux 0xdb6c4a33 sk_stream_wait_connect +EXPORT_SYMBOL vmlinux 0xdb70e588 module_put EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free -EXPORT_SYMBOL vmlinux 0xdb877526 xfrm_state_unregister_afinfo -EXPORT_SYMBOL vmlinux 0xdb8fdeef nd_btt_probe -EXPORT_SYMBOL vmlinux 0xdb93137d acpi_dev_get_first_match_dev +EXPORT_SYMBOL vmlinux 0xdb830de9 pci_find_capability EXPORT_SYMBOL vmlinux 0xdb95e185 intel_scu_ipc_dev_command_with_size -EXPORT_SYMBOL vmlinux 0xdba7ab50 fscrypt_decrypt_bio -EXPORT_SYMBOL vmlinux 0xdbc6c162 pci_enable_msix_range +EXPORT_SYMBOL vmlinux 0xdb9897d2 __sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0xdba728be vfio_unregister_notifier +EXPORT_SYMBOL vmlinux 0xdba963a6 scsi_report_device_reset +EXPORT_SYMBOL vmlinux 0xdbb0414a watchdog_unregister_governor +EXPORT_SYMBOL vmlinux 0xdbb221a6 flow_rule_match_mpls +EXPORT_SYMBOL vmlinux 0xdbbd4e3f mmc_of_parse EXPORT_SYMBOL vmlinux 0xdbcf041a acpi_install_address_space_handler +EXPORT_SYMBOL vmlinux 0xdbd61d8b __dynamic_dev_dbg +EXPORT_SYMBOL vmlinux 0xdbd86f21 fwnode_get_mac_address EXPORT_SYMBOL vmlinux 0xdbdf6c92 ioport_resource -EXPORT_SYMBOL vmlinux 0xdc0f461c pnp_activate_dev +EXPORT_SYMBOL vmlinux 0xdbf0112b genl_notify +EXPORT_SYMBOL vmlinux 0xdbf2d352 lock_rename +EXPORT_SYMBOL vmlinux 0xdc00f118 dma_resv_init EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems -EXPORT_SYMBOL vmlinux 0xdc17ca7b skb_kill_datagram -EXPORT_SYMBOL vmlinux 0xdc21a611 tcf_qevent_validate_change -EXPORT_SYMBOL vmlinux 0xdc2b00ac mmc_erase -EXPORT_SYMBOL vmlinux 0xdc2d5218 cpufreq_generic_suspend -EXPORT_SYMBOL vmlinux 0xdc3418a3 dcache_dir_lseek -EXPORT_SYMBOL vmlinux 0xdc385e4d vfs_fadvise -EXPORT_SYMBOL vmlinux 0xdc3d6e5d agp_generic_free_by_type -EXPORT_SYMBOL vmlinux 0xdc416f7f md_bitmap_start_sync +EXPORT_SYMBOL vmlinux 0xdc225a18 dev_get_port_parent_id +EXPORT_SYMBOL vmlinux 0xdc23314e tty_port_close_start +EXPORT_SYMBOL vmlinux 0xdc4688ba import_iovec EXPORT_SYMBOL vmlinux 0xdc49c198 reciprocal_value_adv EXPORT_SYMBOL vmlinux 0xdc512134 backlight_register_notifier EXPORT_SYMBOL vmlinux 0xdc5736d5 acpi_register_ioapic -EXPORT_SYMBOL vmlinux 0xdc5b0bf4 kernel_write -EXPORT_SYMBOL vmlinux 0xdc712564 devfreq_unregister_notifier -EXPORT_SYMBOL vmlinux 0xdc8f1f70 pcix_get_mmrbc -EXPORT_SYMBOL vmlinux 0xdc98db19 may_setattr -EXPORT_SYMBOL vmlinux 0xdc9f3999 inet_csk_reset_keepalive_timer -EXPORT_SYMBOL vmlinux 0xdced683b datagram_poll +EXPORT_SYMBOL vmlinux 0xdc65f32e sync_filesystem +EXPORT_SYMBOL vmlinux 0xdc6eee00 skb_push +EXPORT_SYMBOL vmlinux 0xdc6fa400 mdio_device_free +EXPORT_SYMBOL vmlinux 0xdc7e2137 dquot_initialize_needed +EXPORT_SYMBOL vmlinux 0xdc7f4214 tcp_v4_destroy_sock +EXPORT_SYMBOL vmlinux 0xdc8796e5 pci_remove_bus +EXPORT_SYMBOL vmlinux 0xdca137db devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0xdcaa8ba0 pm_vt_switch_required +EXPORT_SYMBOL vmlinux 0xdcafe76d netdev_bind_sb_channel_queue +EXPORT_SYMBOL vmlinux 0xdcbf006f rproc_detach +EXPORT_SYMBOL vmlinux 0xdcc42cd4 sock_sendmsg +EXPORT_SYMBOL vmlinux 0xdccc5108 jbd2_journal_destroy +EXPORT_SYMBOL vmlinux 0xdcd5ebdc generic_file_llseek_size EXPORT_SYMBOL vmlinux 0xdd00447a acpi_resource_to_address64 -EXPORT_SYMBOL vmlinux 0xdd04818d mipi_dsi_compression_mode EXPORT_SYMBOL vmlinux 0xdd18a993 acpi_check_dsm -EXPORT_SYMBOL vmlinux 0xdd2919e5 freeze_super +EXPORT_SYMBOL vmlinux 0xdd1d3f70 pci_disable_device EXPORT_SYMBOL vmlinux 0xdd2c169b mb_cache_create -EXPORT_SYMBOL vmlinux 0xdd2c2f59 __tracepoint_kfree -EXPORT_SYMBOL vmlinux 0xdd3007c8 iterate_supers_type -EXPORT_SYMBOL vmlinux 0xdd49b59a flow_rule_match_control -EXPORT_SYMBOL vmlinux 0xdd602d54 mipi_dsi_shutdown_peripheral -EXPORT_SYMBOL vmlinux 0xdd623969 simple_pin_fs +EXPORT_SYMBOL vmlinux 0xdd4197ea mipi_dsi_set_maximum_return_packet_size EXPORT_SYMBOL vmlinux 0xdd64e639 strscpy +EXPORT_SYMBOL vmlinux 0xdd6befd5 security_sb_mnt_opts_compat +EXPORT_SYMBOL vmlinux 0xdd793042 tcp_check_req EXPORT_SYMBOL vmlinux 0xdd8166a1 dma_fence_free EXPORT_SYMBOL vmlinux 0xdd849d51 scsi_get_sense_info_fld -EXPORT_SYMBOL vmlinux 0xddac1a3d dst_dev_put +EXPORT_SYMBOL vmlinux 0xdda58b05 inet_frag_kill +EXPORT_SYMBOL vmlinux 0xddab00a2 security_d_instantiate EXPORT_SYMBOL vmlinux 0xddad7952 acpi_dbg_level +EXPORT_SYMBOL vmlinux 0xddae6ccf _dev_printk EXPORT_SYMBOL vmlinux 0xddafdd31 vm_node_stat -EXPORT_SYMBOL vmlinux 0xddb1389d filemap_write_and_wait_range -EXPORT_SYMBOL vmlinux 0xddbe3f0f dquot_alloc_inode +EXPORT_SYMBOL vmlinux 0xddb64d4d mpage_readpage +EXPORT_SYMBOL vmlinux 0xddb8ec8d nvdimm_namespace_locked EXPORT_SYMBOL vmlinux 0xddcbe1f3 acpi_ut_value_exit -EXPORT_SYMBOL vmlinux 0xddd6a6da fsync_bdev -EXPORT_SYMBOL vmlinux 0xddf14a2d page_zero_new_buffers -EXPORT_SYMBOL vmlinux 0xddf35640 should_remove_suid +EXPORT_SYMBOL vmlinux 0xddf0f275 rtnl_kfree_skbs EXPORT_SYMBOL vmlinux 0xddf6ad7a completion_done -EXPORT_SYMBOL vmlinux 0xde026b6b of_find_mipi_dsi_device_by_node -EXPORT_SYMBOL vmlinux 0xde05cac1 netdev_class_create_file_ns -EXPORT_SYMBOL vmlinux 0xde18f536 send_sig -EXPORT_SYMBOL vmlinux 0xde28852f lock_sock_nested +EXPORT_SYMBOL vmlinux 0xde1514a1 scsi_remove_host +EXPORT_SYMBOL vmlinux 0xde235396 nd_btt_arena_is_valid EXPORT_SYMBOL vmlinux 0xde293f9e add_wait_queue_exclusive -EXPORT_SYMBOL vmlinux 0xde2b1e3b phy_ethtool_nway_reset -EXPORT_SYMBOL vmlinux 0xde33231b pcie_capability_read_dword -EXPORT_SYMBOL vmlinux 0xde3e43e9 dma_async_device_unregister +EXPORT_SYMBOL vmlinux 0xde45725d dquot_quota_sync +EXPORT_SYMBOL vmlinux 0xde48a29a nd_dax_probe EXPORT_SYMBOL vmlinux 0xde4d4ace dim_calc_stats -EXPORT_SYMBOL vmlinux 0xde4e8a2b md_bitmap_unplug EXPORT_SYMBOL vmlinux 0xde4eeab5 __register_nmi_handler -EXPORT_SYMBOL vmlinux 0xde58066b ww_mutex_lock -EXPORT_SYMBOL vmlinux 0xde66214e xfrm_state_lookup_byspi -EXPORT_SYMBOL vmlinux 0xde6d2b3b i2c_smbus_read_i2c_block_data_or_emulated +EXPORT_SYMBOL vmlinux 0xde51984d pnp_unregister_card_driver +EXPORT_SYMBOL vmlinux 0xde5413de kmem_cache_destroy +EXPORT_SYMBOL vmlinux 0xde727b9c vga_switcheroo_register_audio_client EXPORT_SYMBOL vmlinux 0xde80cd09 ioremap -EXPORT_SYMBOL vmlinux 0xde83aebe freeze_bdev -EXPORT_SYMBOL vmlinux 0xde9757b6 __blkdev_issue_discard -EXPORT_SYMBOL vmlinux 0xde991f34 dquot_alloc +EXPORT_SYMBOL vmlinux 0xde899532 dev_set_promiscuity +EXPORT_SYMBOL vmlinux 0xde96499a genphy_c37_config_aneg +EXPORT_SYMBOL vmlinux 0xde98f0d0 pci_read_config_dword EXPORT_SYMBOL vmlinux 0xde9b17ed agp3_generic_fetch_size -EXPORT_SYMBOL vmlinux 0xdec77f51 irq_set_chip +EXPORT_SYMBOL vmlinux 0xdea9a475 tcp_mtup_init +EXPORT_SYMBOL vmlinux 0xdeafe4ca md_bitmap_free +EXPORT_SYMBOL vmlinux 0xdec55168 netdev_update_features +EXPORT_SYMBOL vmlinux 0xdec9c0cd md_write_start +EXPORT_SYMBOL vmlinux 0xdecdcf74 dev_pm_opp_unregister_notifier EXPORT_SYMBOL vmlinux 0xded39a6b gen_kill_estimator -EXPORT_SYMBOL vmlinux 0xdeda01ad iget5_locked -EXPORT_SYMBOL vmlinux 0xdeedabde tcp_sock_set_quickack -EXPORT_SYMBOL vmlinux 0xdef2d410 kmem_cache_alloc_bulk EXPORT_SYMBOL vmlinux 0xdef7c893 fb_match_mode EXPORT_SYMBOL vmlinux 0xdef8d0ae __SCT__tp_func_kfree -EXPORT_SYMBOL vmlinux 0xdf0a5832 padata_free -EXPORT_SYMBOL vmlinux 0xdf22f585 phy_reset_after_clk_enable +EXPORT_SYMBOL vmlinux 0xdf04d399 ioc_lookup_icq +EXPORT_SYMBOL vmlinux 0xdf1c99d2 __tracepoint_write_msr EXPORT_SYMBOL vmlinux 0xdf256037 kstrtou8_from_user -EXPORT_SYMBOL vmlinux 0xdf2affc7 inet_add_protocol +EXPORT_SYMBOL vmlinux 0xdf27fc4b fs_context_for_mount EXPORT_SYMBOL vmlinux 0xdf2c2742 rb_last EXPORT_SYMBOL vmlinux 0xdf2ebb87 _raw_read_unlock_irqrestore EXPORT_SYMBOL vmlinux 0xdf36914b xa_find_after -EXPORT_SYMBOL vmlinux 0xdf3b669c __cgroup_bpf_run_filter_sk -EXPORT_SYMBOL vmlinux 0xdf4fe790 reuseport_attach_prog +EXPORT_SYMBOL vmlinux 0xdf3f235b agp_generic_alloc_pages EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier -EXPORT_SYMBOL vmlinux 0xdf5c53e4 pci_release_region +EXPORT_SYMBOL vmlinux 0xdf5502bd nlmsg_notify +EXPORT_SYMBOL vmlinux 0xdf56b0c4 xfrm_policy_delete +EXPORT_SYMBOL vmlinux 0xdf67e41c inet_sk_set_state EXPORT_SYMBOL vmlinux 0xdf6b082f proc_dointvec_jiffies -EXPORT_SYMBOL vmlinux 0xdf74af91 tcf_chain_get_by_act EXPORT_SYMBOL vmlinux 0xdf8c695a __ndelay EXPORT_SYMBOL vmlinux 0xdf8d781f acpi_update_all_gpes -EXPORT_SYMBOL vmlinux 0xdf8f3ca1 tcf_idr_check_alloc +EXPORT_SYMBOL vmlinux 0xdf8d7cd1 unix_detach_fds EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid EXPORT_SYMBOL vmlinux 0xdf93b9d8 timespec64_to_jiffies -EXPORT_SYMBOL vmlinux 0xdf949fda configfs_register_group -EXPORT_SYMBOL vmlinux 0xdfadbe67 clocksource_change_rating -EXPORT_SYMBOL vmlinux 0xdfafc6d3 jbd2_journal_inode_ranged_write -EXPORT_SYMBOL vmlinux 0xdfc60f18 vfio_pin_pages +EXPORT_SYMBOL vmlinux 0xdfa392b3 vfs_mkdir +EXPORT_SYMBOL vmlinux 0xdfaaf3f6 inet_frags_init +EXPORT_SYMBOL vmlinux 0xdfc137f6 param_set_invbool +EXPORT_SYMBOL vmlinux 0xdfc774ae always_delete_dentry EXPORT_SYMBOL vmlinux 0xdfca1c71 load_nls -EXPORT_SYMBOL vmlinux 0xdfca4f31 pnp_register_card_driver EXPORT_SYMBOL vmlinux 0xdfcc992c current_work -EXPORT_SYMBOL vmlinux 0xdfd0b80c dma_ops -EXPORT_SYMBOL vmlinux 0xdfd4b07b flow_rule_match_ipv6_addrs +EXPORT_SYMBOL vmlinux 0xdfce3d6e flow_indr_dev_setup_offload +EXPORT_SYMBOL vmlinux 0xdfd1cb93 fscrypt_encrypt_pagecache_blocks +EXPORT_SYMBOL vmlinux 0xdfdcd435 __scsi_device_lookup EXPORT_SYMBOL vmlinux 0xdfdfa9e7 utf8nfdi -EXPORT_SYMBOL vmlinux 0xdfe48add scsicam_bios_param -EXPORT_SYMBOL vmlinux 0xdfe51dfa agp_generic_type_to_mask_type -EXPORT_SYMBOL vmlinux 0xdfec5f38 tcp_v4_do_rcv EXPORT_SYMBOL vmlinux 0xdff905e5 vme_slave_free -EXPORT_SYMBOL vmlinux 0xdffb6331 dev_pm_opp_unregister_notifier EXPORT_SYMBOL vmlinux 0xdffc80fc vesa_modes -EXPORT_SYMBOL vmlinux 0xe00bb377 scsi_target_resume -EXPORT_SYMBOL vmlinux 0xe00c6805 scsi_partsize +EXPORT_SYMBOL vmlinux 0xe00d1bc2 __neigh_event_send EXPORT_SYMBOL vmlinux 0xe0112fc4 __x86_indirect_thunk_r9 -EXPORT_SYMBOL vmlinux 0xe0215cfb qdisc_watchdog_init -EXPORT_SYMBOL vmlinux 0xe0240916 __lock_sock_fast +EXPORT_SYMBOL vmlinux 0xe0250749 read_cache_page_gfp 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 0xe03a689d dma_fence_array_ops EXPORT_SYMBOL vmlinux 0xe0419ac4 kstrtos16 -EXPORT_SYMBOL vmlinux 0xe050f1f3 pin_user_pages_remote -EXPORT_SYMBOL vmlinux 0xe05ba290 cdrom_mode_sense -EXPORT_SYMBOL vmlinux 0xe06a71cf vme_bus_num +EXPORT_SYMBOL vmlinux 0xe04a0c5b pci_ep_cfs_add_epf_group +EXPORT_SYMBOL vmlinux 0xe06b895b iov_iter_kvec +EXPORT_SYMBOL vmlinux 0xe0740678 scsi_test_unit_ready EXPORT_SYMBOL vmlinux 0xe07e5f44 acpi_reconfig_notifier_unregister EXPORT_SYMBOL vmlinux 0xe080e8f0 set_current_groups EXPORT_SYMBOL vmlinux 0xe082e88d acpi_check_address_range EXPORT_SYMBOL vmlinux 0xe091c977 list_sort EXPORT_SYMBOL vmlinux 0xe0955f76 utf8_casefold -EXPORT_SYMBOL vmlinux 0xe0964a7b kfree_skb_partial -EXPORT_SYMBOL vmlinux 0xe0987476 devfreq_remove_device -EXPORT_SYMBOL vmlinux 0xe0aa27f0 inet_reqsk_alloc +EXPORT_SYMBOL vmlinux 0xe097b979 __skb_gso_segment +EXPORT_SYMBOL vmlinux 0xe0a74a4a remove_watch_from_object +EXPORT_SYMBOL vmlinux 0xe0a9d268 key_instantiate_and_link EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free +EXPORT_SYMBOL vmlinux 0xe0b71146 sk_common_release EXPORT_SYMBOL vmlinux 0xe0bef318 icst_hz_to_vco -EXPORT_SYMBOL vmlinux 0xe0c0e4be mmc_card_is_blockaddr -EXPORT_SYMBOL vmlinux 0xe0c8d0ac pci_back_from_sleep -EXPORT_SYMBOL vmlinux 0xe0d7818a dquot_release -EXPORT_SYMBOL vmlinux 0xe0e7024e mipi_dsi_dcs_set_column_address -EXPORT_SYMBOL vmlinux 0xe106ff24 agp_generic_destroy_pages -EXPORT_SYMBOL vmlinux 0xe1089c44 blk_mq_init_allocated_queue -EXPORT_SYMBOL vmlinux 0xe1106588 ipmi_platform_add +EXPORT_SYMBOL vmlinux 0xe0c3a40d xfrm_state_walk_done +EXPORT_SYMBOL vmlinux 0xe0c7dac6 sg_miter_skip +EXPORT_SYMBOL vmlinux 0xe0d09096 xp_can_alloc +EXPORT_SYMBOL vmlinux 0xe0d1e992 nf_log_unbind_pf +EXPORT_SYMBOL vmlinux 0xe0d498de nd_device_register +EXPORT_SYMBOL vmlinux 0xe0fe3045 jbd2_journal_init_dev +EXPORT_SYMBOL vmlinux 0xe100c8eb neigh_sysctl_register +EXPORT_SYMBOL vmlinux 0xe105f0b6 kern_path +EXPORT_SYMBOL vmlinux 0xe10de432 I_BDEV +EXPORT_SYMBOL vmlinux 0xe1125134 vga_switcheroo_init_domain_pm_ops EXPORT_SYMBOL vmlinux 0xe113bbbc csum_partial +EXPORT_SYMBOL vmlinux 0xe1185d9a no_llseek EXPORT_SYMBOL vmlinux 0xe11ca997 ZSTD_getDictID_fromDict -EXPORT_SYMBOL vmlinux 0xe120e9f1 __kfree_skb -EXPORT_SYMBOL vmlinux 0xe12273b2 i2c_smbus_read_byte_data EXPORT_SYMBOL vmlinux 0xe123f3d9 dma_fence_release EXPORT_SYMBOL vmlinux 0xe12bda79 vme_dma_free_attribute -EXPORT_SYMBOL vmlinux 0xe133083e pnp_get_resource -EXPORT_SYMBOL vmlinux 0xe134dfed udplite_prot EXPORT_SYMBOL vmlinux 0xe138fb8c percpu_counter_add_batch EXPORT_SYMBOL vmlinux 0xe13cd8a7 dmi_name_in_vendors -EXPORT_SYMBOL vmlinux 0xe14cb175 register_netdevice_notifier_dev_net -EXPORT_SYMBOL vmlinux 0xe1668519 irq_domain_set_info -EXPORT_SYMBOL vmlinux 0xe16fda62 legacy_pic -EXPORT_SYMBOL vmlinux 0xe182072f scsi_bios_ptable -EXPORT_SYMBOL vmlinux 0xe1876604 get_tree_single -EXPORT_SYMBOL vmlinux 0xe18a6bba d_alloc_anon -EXPORT_SYMBOL vmlinux 0xe18ddf50 rtnl_unicast -EXPORT_SYMBOL vmlinux 0xe1a4f16a secure_ipv6_port_ephemeral -EXPORT_SYMBOL vmlinux 0xe1a6b511 pci_clear_master -EXPORT_SYMBOL vmlinux 0xe1b60306 skb_push +EXPORT_SYMBOL vmlinux 0xe1466127 sync_inode_metadata +EXPORT_SYMBOL vmlinux 0xe15b818e blk_put_queue +EXPORT_SYMBOL vmlinux 0xe16ddcc1 scm_fp_dup +EXPORT_SYMBOL vmlinux 0xe17fc217 alloc_anon_inode +EXPORT_SYMBOL vmlinux 0xe18cf30f seq_open_private +EXPORT_SYMBOL vmlinux 0xe18dc2bd dev_graft_qdisc +EXPORT_SYMBOL vmlinux 0xe1b32bc5 __ps2_command EXPORT_SYMBOL vmlinux 0xe1bee700 __traceiter_read_msr -EXPORT_SYMBOL vmlinux 0xe1c78a9b get_tz_trend -EXPORT_SYMBOL vmlinux 0xe1d21214 filp_open -EXPORT_SYMBOL vmlinux 0xe1d6fcb3 xfrm_state_lookup_byaddr +EXPORT_SYMBOL vmlinux 0xe1d71654 cdev_del EXPORT_SYMBOL vmlinux 0xe1dcf64a audit_log_format -EXPORT_SYMBOL vmlinux 0xe1e07ca4 scsi_vpd_tpg_id +EXPORT_SYMBOL vmlinux 0xe1f2efed devm_ioremap_resource +EXPORT_SYMBOL vmlinux 0xe200e3ea agp3_generic_tlbflush +EXPORT_SYMBOL vmlinux 0xe219759e blk_mq_start_hw_queues +EXPORT_SYMBOL vmlinux 0xe21d8778 udp_seq_ops EXPORT_SYMBOL vmlinux 0xe21f18ac __genradix_iter_peek -EXPORT_SYMBOL vmlinux 0xe2391771 PDE_DATA -EXPORT_SYMBOL vmlinux 0xe26518c0 inode_get_bytes -EXPORT_SYMBOL vmlinux 0xe26d8721 input_inject_event +EXPORT_SYMBOL vmlinux 0xe25f3b75 rt_dst_clone +EXPORT_SYMBOL vmlinux 0xe2635b41 vga_switcheroo_unregister_client +EXPORT_SYMBOL vmlinux 0xe264ad82 generic_file_read_iter EXPORT_SYMBOL vmlinux 0xe273d75d alloc_cpu_rmap -EXPORT_SYMBOL vmlinux 0xe280e4e6 agp_generic_remove_memory -EXPORT_SYMBOL vmlinux 0xe29921ae unregister_cdrom -EXPORT_SYMBOL vmlinux 0xe2af5193 devm_backlight_device_register +EXPORT_SYMBOL vmlinux 0xe278dc64 kernel_sendmsg_locked +EXPORT_SYMBOL vmlinux 0xe28323ed netdev_name_node_alt_create +EXPORT_SYMBOL vmlinux 0xe2bbede3 serio_unregister_port EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp EXPORT_SYMBOL vmlinux 0xe2e28fc0 __traceiter_write_msr -EXPORT_SYMBOL vmlinux 0xe2fbe744 netdev_has_upper_dev -EXPORT_SYMBOL vmlinux 0xe30575bb blk_mq_delay_run_hw_queues -EXPORT_SYMBOL vmlinux 0xe30df9d2 scsi_unblock_requests -EXPORT_SYMBOL vmlinux 0xe311cfb0 nf_log_packet +EXPORT_SYMBOL vmlinux 0xe2e48fe2 uart_remove_one_port +EXPORT_SYMBOL vmlinux 0xe2e4a0b4 dma_ops +EXPORT_SYMBOL vmlinux 0xe30b62e4 generic_update_time +EXPORT_SYMBOL vmlinux 0xe30cf270 register_netdev +EXPORT_SYMBOL vmlinux 0xe30f66ba tty_driver_kref_put EXPORT_SYMBOL vmlinux 0xe32ab4d8 xxh64_digest -EXPORT_SYMBOL vmlinux 0xe34a8f00 crypto_sha512_finup -EXPORT_SYMBOL vmlinux 0xe35a9daf devm_ioremap_resource -EXPORT_SYMBOL vmlinux 0xe3619636 tso_build_data -EXPORT_SYMBOL vmlinux 0xe3981531 backlight_device_set_brightness +EXPORT_SYMBOL vmlinux 0xe3639ad6 scsi_is_target_device EXPORT_SYMBOL vmlinux 0xe39b2ea5 sha256 -EXPORT_SYMBOL vmlinux 0xe3a6e3a2 kiocb_set_cancel_fn -EXPORT_SYMBOL vmlinux 0xe3bdf767 vfio_register_notifier -EXPORT_SYMBOL vmlinux 0xe3cb70ea put_cmsg_scm_timestamping +EXPORT_SYMBOL vmlinux 0xe3c66112 agp_bind_memory +EXPORT_SYMBOL vmlinux 0xe3d42c0c sock_kmalloc +EXPORT_SYMBOL vmlinux 0xe3d75ca7 xfrm_policy_hash_rebuild EXPORT_SYMBOL vmlinux 0xe3d857ea __cpu_active_mask +EXPORT_SYMBOL vmlinux 0xe3e58ec9 tso_count_descs EXPORT_SYMBOL vmlinux 0xe3ec2f2b alloc_chrdev_region -EXPORT_SYMBOL vmlinux 0xe3fa91f3 __inode_sub_bytes +EXPORT_SYMBOL vmlinux 0xe3f5985f kill_litter_super +EXPORT_SYMBOL vmlinux 0xe3f634c5 input_unregister_handler +EXPORT_SYMBOL vmlinux 0xe3fa0791 phy_ethtool_get_link_ksettings EXPORT_SYMBOL vmlinux 0xe3feba56 tasklet_unlock_spin_wait EXPORT_SYMBOL vmlinux 0xe3ff2c41 get_random_u64 -EXPORT_SYMBOL vmlinux 0xe4026c31 writeback_inodes_sb_nr EXPORT_SYMBOL vmlinux 0xe40976c0 pnp_range_reserved EXPORT_SYMBOL vmlinux 0xe40c37ea down_write_trylock +EXPORT_SYMBOL vmlinux 0xe4133be1 init_task EXPORT_SYMBOL vmlinux 0xe419bc99 iowrite32be -EXPORT_SYMBOL vmlinux 0xe41fdd02 phy_free_interrupt +EXPORT_SYMBOL vmlinux 0xe41e0ba1 sched_autogroup_detach +EXPORT_SYMBOL vmlinux 0xe431d225 pcie_get_speed_cap EXPORT_SYMBOL vmlinux 0xe4329092 __ctzdi2 -EXPORT_SYMBOL vmlinux 0xe432fd5d truncate_pagecache_range -EXPORT_SYMBOL vmlinux 0xe43ac569 gnet_stats_finish_copy -EXPORT_SYMBOL vmlinux 0xe4480569 sock_set_reuseaddr -EXPORT_SYMBOL vmlinux 0xe4496ed9 scsi_scan_host +EXPORT_SYMBOL vmlinux 0xe4551474 cfb_fillrect EXPORT_SYMBOL vmlinux 0xe46021ca _raw_spin_unlock_bh -EXPORT_SYMBOL vmlinux 0xe48964c4 dev_set_mac_address -EXPORT_SYMBOL vmlinux 0xe4abe241 phy_ethtool_get_wol -EXPORT_SYMBOL vmlinux 0xe4b07539 pci_bus_claim_resources -EXPORT_SYMBOL vmlinux 0xe4b1c1b3 remove_watch_from_object +EXPORT_SYMBOL vmlinux 0xe465a703 scsi_add_device +EXPORT_SYMBOL vmlinux 0xe46706e0 param_get_bool +EXPORT_SYMBOL vmlinux 0xe469e2f8 get_watch_queue +EXPORT_SYMBOL vmlinux 0xe4723e39 iov_iter_revert +EXPORT_SYMBOL vmlinux 0xe4724246 __xfrm_decode_session +EXPORT_SYMBOL vmlinux 0xe49f03a5 xsk_tx_release EXPORT_SYMBOL vmlinux 0xe4bc2c2f hdmi_drm_infoframe_pack -EXPORT_SYMBOL vmlinux 0xe4c95bb2 xsk_uses_need_wakeup +EXPORT_SYMBOL vmlinux 0xe4cb3ddb xfrm_input_unregister_afinfo EXPORT_SYMBOL vmlinux 0xe4d80bf4 acpi_enable -EXPORT_SYMBOL vmlinux 0xe5041d61 tty_hangup +EXPORT_SYMBOL vmlinux 0xe4de07dc param_set_bint +EXPORT_SYMBOL vmlinux 0xe4f7f8c5 __tracepoint_dma_fence_emit +EXPORT_SYMBOL vmlinux 0xe5155d94 nf_register_net_hook +EXPORT_SYMBOL vmlinux 0xe51890dc tcf_qevent_handle EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq -EXPORT_SYMBOL vmlinux 0xe528869c netlink_net_capable -EXPORT_SYMBOL vmlinux 0xe52a3e02 scsi_register_interface -EXPORT_SYMBOL vmlinux 0xe53c1f86 sock_no_bind -EXPORT_SYMBOL vmlinux 0xe556efdf param_set_charp -EXPORT_SYMBOL vmlinux 0xe565005e component_match_add_release -EXPORT_SYMBOL vmlinux 0xe5792944 generic_set_encrypted_ci_d_ops +EXPORT_SYMBOL vmlinux 0xe533ab93 dquot_operations +EXPORT_SYMBOL vmlinux 0xe54b6b82 tty_port_carrier_raised +EXPORT_SYMBOL vmlinux 0xe56d776c blk_mq_start_hw_queue EXPORT_SYMBOL vmlinux 0xe58090ca security_ib_endport_manage_subnet -EXPORT_SYMBOL vmlinux 0xe58185f6 flush_signals -EXPORT_SYMBOL vmlinux 0xe58c3ef9 devm_request_resource EXPORT_SYMBOL vmlinux 0xe590dea3 sk_busy_loop_end -EXPORT_SYMBOL vmlinux 0xe5a5c7a3 mdiobus_unregister +EXPORT_SYMBOL vmlinux 0xe5917695 kernel_sendpage +EXPORT_SYMBOL vmlinux 0xe595aacc pci_msix_vec_count +EXPORT_SYMBOL vmlinux 0xe5b3f70b ww_mutex_unlock EXPORT_SYMBOL vmlinux 0xe5bc9a53 slhc_free EXPORT_SYMBOL vmlinux 0xe5c60bd2 percpu_counter_set EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen +EXPORT_SYMBOL vmlinux 0xe5d62aeb ip6_output +EXPORT_SYMBOL vmlinux 0xe5f8f6f5 flow_rule_match_enc_ipv4_addrs +EXPORT_SYMBOL vmlinux 0xe6111d9f phy_support_sym_pause EXPORT_SYMBOL vmlinux 0xe613a798 inet_addr_is_any -EXPORT_SYMBOL vmlinux 0xe61edddc init_pseudo -EXPORT_SYMBOL vmlinux 0xe62cf07c sdev_disable_disk_events -EXPORT_SYMBOL vmlinux 0xe6393f51 inet_shutdown -EXPORT_SYMBOL vmlinux 0xe644e00f bio_clone_fast -EXPORT_SYMBOL vmlinux 0xe64873a7 pcie_get_mps -EXPORT_SYMBOL vmlinux 0xe65aec77 pm860x_reg_write -EXPORT_SYMBOL vmlinux 0xe683ee21 eth_header_parse_protocol +EXPORT_SYMBOL vmlinux 0xe6194dd5 __skb_free_datagram_locked +EXPORT_SYMBOL vmlinux 0xe639c024 bdi_alloc +EXPORT_SYMBOL vmlinux 0xe63a4ff9 netpoll_poll_dev +EXPORT_SYMBOL vmlinux 0xe63bac77 phy_do_ioctl +EXPORT_SYMBOL vmlinux 0xe63f3f02 ip6_xmit +EXPORT_SYMBOL vmlinux 0xe64ddd03 kern_path_create +EXPORT_SYMBOL vmlinux 0xe66804aa to_nd_pfn +EXPORT_SYMBOL vmlinux 0xe68bf1e8 dma_async_device_register EXPORT_SYMBOL vmlinux 0xe68efe41 _raw_write_lock +EXPORT_SYMBOL vmlinux 0xe68fedc4 xfrm_state_delete_tunnel +EXPORT_SYMBOL vmlinux 0xe690feaf page_pool_create EXPORT_SYMBOL vmlinux 0xe691ac7f ZSTD_decompressBegin -EXPORT_SYMBOL vmlinux 0xe6b2f681 nd_namespace_blk_validate +EXPORT_SYMBOL vmlinux 0xe69337fa mipi_dsi_turn_on_peripheral +EXPORT_SYMBOL vmlinux 0xe69867fe input_register_device +EXPORT_SYMBOL vmlinux 0xe69e00c7 fb_show_logo +EXPORT_SYMBOL vmlinux 0xe6ad484c security_sk_classify_flow +EXPORT_SYMBOL vmlinux 0xe6ae8c5c truncate_pagecache +EXPORT_SYMBOL vmlinux 0xe6bba667 scsi_track_queue_full +EXPORT_SYMBOL vmlinux 0xe6cdfa61 redirty_page_for_writepage EXPORT_SYMBOL vmlinux 0xe6d2458e do_trace_netlink_extack -EXPORT_SYMBOL vmlinux 0xe6deced1 inet_addr_type -EXPORT_SYMBOL vmlinux 0xe6f6002b __set_page_dirty_no_writeback +EXPORT_SYMBOL vmlinux 0xe6dfc393 tcp_child_process +EXPORT_SYMBOL vmlinux 0xe6e8f665 handle_edge_irq EXPORT_SYMBOL vmlinux 0xe6fa06a2 rename_lock EXPORT_SYMBOL vmlinux 0xe70877d4 acpi_remove_sci_handler -EXPORT_SYMBOL vmlinux 0xe71025ce kmem_cache_alloc_trace +EXPORT_SYMBOL vmlinux 0xe7156e63 ip6_fraglist_init +EXPORT_SYMBOL vmlinux 0xe71bf1ac netdev_change_features +EXPORT_SYMBOL vmlinux 0xe72130a7 param_ops_uint +EXPORT_SYMBOL vmlinux 0xe722d426 inet_proto_csum_replace_by_diff EXPORT_SYMBOL vmlinux 0xe7257ab8 xa_store_range -EXPORT_SYMBOL vmlinux 0xe727828b blkdev_get_by_dev -EXPORT_SYMBOL vmlinux 0xe72a9a0a padata_set_cpumask -EXPORT_SYMBOL vmlinux 0xe72de1a4 ip_tunnel_header_ops EXPORT_SYMBOL vmlinux 0xe7324b9a utf8nfdicf -EXPORT_SYMBOL vmlinux 0xe743301c vga_client_register -EXPORT_SYMBOL vmlinux 0xe746ab1d blk_queue_virt_boundary -EXPORT_SYMBOL vmlinux 0xe74b9496 may_umount -EXPORT_SYMBOL vmlinux 0xe76f2256 __generic_file_write_iter -EXPORT_SYMBOL vmlinux 0xe784dd0f tcp_prot -EXPORT_SYMBOL vmlinux 0xe786069a tcp_stream_memory_free +EXPORT_SYMBOL vmlinux 0xe73a8e95 vfs_symlink +EXPORT_SYMBOL vmlinux 0xe73f4be4 d_move +EXPORT_SYMBOL vmlinux 0xe7524e00 __destroy_inode +EXPORT_SYMBOL vmlinux 0xe76ad121 phy_start EXPORT_SYMBOL vmlinux 0xe787698f acpi_processor_register_performance -EXPORT_SYMBOL vmlinux 0xe78dbdc2 pnp_register_driver -EXPORT_SYMBOL vmlinux 0xe7978836 qdisc_offload_graft_helper +EXPORT_SYMBOL vmlinux 0xe78d1a1a vfs_ioctl EXPORT_SYMBOL vmlinux 0xe7a02573 ida_alloc_range -EXPORT_SYMBOL vmlinux 0xe7a96f18 __mmap_lock_do_trace_start_locking +EXPORT_SYMBOL vmlinux 0xe7a0d7a8 bio_uninit +EXPORT_SYMBOL vmlinux 0xe7a4bdfe seq_printf EXPORT_SYMBOL vmlinux 0xe7ab1ecc _raw_write_unlock_bh -EXPORT_SYMBOL vmlinux 0xe7b13eaf genphy_read_abilities +EXPORT_SYMBOL vmlinux 0xe7c23be1 neigh_carrier_down +EXPORT_SYMBOL vmlinux 0xe7cb1994 tty_vhangup EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next -EXPORT_SYMBOL vmlinux 0xe803c1ac __cgroup_bpf_run_filter_sock_ops -EXPORT_SYMBOL vmlinux 0xe80af0b5 pci_dev_get -EXPORT_SYMBOL vmlinux 0xe8186814 seq_read -EXPORT_SYMBOL vmlinux 0xe828be0b dev_get_by_name -EXPORT_SYMBOL vmlinux 0xe82b9f05 simple_getattr +EXPORT_SYMBOL vmlinux 0xe7e4691a mipi_dsi_host_unregister +EXPORT_SYMBOL vmlinux 0xe80271b3 fb_set_cmap +EXPORT_SYMBOL vmlinux 0xe80c3054 devm_memremap +EXPORT_SYMBOL vmlinux 0xe81d8116 block_truncate_page +EXPORT_SYMBOL vmlinux 0xe820e339 __skb_wait_for_more_packets +EXPORT_SYMBOL vmlinux 0xe832bcc7 proc_create EXPORT_SYMBOL vmlinux 0xe8330a5a call_usermodehelper_exec -EXPORT_SYMBOL vmlinux 0xe838e9a3 dev_close -EXPORT_SYMBOL vmlinux 0xe854ab08 nvdimm_namespace_disk_name +EXPORT_SYMBOL vmlinux 0xe83d130b generic_splice_sendpage +EXPORT_SYMBOL vmlinux 0xe845b0b6 dcache_dir_lseek +EXPORT_SYMBOL vmlinux 0xe851b30f ip_queue_xmit +EXPORT_SYMBOL vmlinux 0xe85d7510 pci_free_host_bridge +EXPORT_SYMBOL vmlinux 0xe85e2619 nf_log_unregister EXPORT_SYMBOL vmlinux 0xe85f2123 acpi_tb_unload_table -EXPORT_SYMBOL vmlinux 0xe882c8ed devm_iounmap -EXPORT_SYMBOL vmlinux 0xe886212c agp_generic_alloc_pages -EXPORT_SYMBOL vmlinux 0xe88e94c1 file_modified -EXPORT_SYMBOL vmlinux 0xe88fc5b2 mmc_release_host -EXPORT_SYMBOL vmlinux 0xe890d4af tcf_action_set_ctrlact -EXPORT_SYMBOL vmlinux 0xe891d5d0 netif_receive_skb -EXPORT_SYMBOL vmlinux 0xe89b2eaa udp_lib_setsockopt -EXPORT_SYMBOL vmlinux 0xe8cb479c phy_ethtool_set_link_ksettings -EXPORT_SYMBOL vmlinux 0xe8e790dc ipv6_push_frag_opts +EXPORT_SYMBOL vmlinux 0xe8646237 security_sb_set_mnt_opts +EXPORT_SYMBOL vmlinux 0xe869948a blk_queue_max_segment_size +EXPORT_SYMBOL vmlinux 0xe8706c10 pci_choose_state +EXPORT_SYMBOL vmlinux 0xe8aa14e3 ethtool_get_phc_vclocks +EXPORT_SYMBOL vmlinux 0xe8bbc72e flow_rule_match_control +EXPORT_SYMBOL vmlinux 0xe8c72695 ip_setsockopt +EXPORT_SYMBOL vmlinux 0xe8d296e8 neigh_lookup_nodev +EXPORT_SYMBOL vmlinux 0xe8d6788c vm_iomap_memory +EXPORT_SYMBOL vmlinux 0xe8e3f6da setup_arg_pages +EXPORT_SYMBOL vmlinux 0xe8e5e61c ilookup +EXPORT_SYMBOL vmlinux 0xe8f7d778 cros_ec_get_next_event EXPORT_SYMBOL vmlinux 0xe8fbf4fa __alloc_bucket_spinlocks -EXPORT_SYMBOL vmlinux 0xe9026cde dma_pool_create +EXPORT_SYMBOL vmlinux 0xe8feaeb5 poll_freewait EXPORT_SYMBOL vmlinux 0xe909997a bitmap_print_list_to_buf EXPORT_SYMBOL vmlinux 0xe914e41e strcpy -EXPORT_SYMBOL vmlinux 0xe933c508 ilookup5 -EXPORT_SYMBOL vmlinux 0xe9340c16 kmem_cache_free -EXPORT_SYMBOL vmlinux 0xe9360f88 security_sb_set_mnt_opts -EXPORT_SYMBOL vmlinux 0xe9455a82 mdiobus_write_nested -EXPORT_SYMBOL vmlinux 0xe94cc9a3 tcf_chain_put_by_act +EXPORT_SYMBOL vmlinux 0xe920f280 lookup_positive_unlocked +EXPORT_SYMBOL vmlinux 0xe925d5f3 __ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0xe929c350 pagecache_write_begin +EXPORT_SYMBOL vmlinux 0xe92d116c mmc_retune_release +EXPORT_SYMBOL vmlinux 0xe93a08b2 fbcon_update_vcs EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino -EXPORT_SYMBOL vmlinux 0xe95817ab ex_handler_copy -EXPORT_SYMBOL vmlinux 0xe970c9ff ip6_find_1stfragopt -EXPORT_SYMBOL vmlinux 0xe98b7b9f dma_sync_wait -EXPORT_SYMBOL vmlinux 0xe99f0bd6 done_path_create +EXPORT_SYMBOL vmlinux 0xe95404d5 inet6_bind +EXPORT_SYMBOL vmlinux 0xe9566df8 iget_locked +EXPORT_SYMBOL vmlinux 0xe957712c page_pool_release_page +EXPORT_SYMBOL vmlinux 0xe95ee3f2 dst_dev_put +EXPORT_SYMBOL vmlinux 0xe968cc5b bio_split +EXPORT_SYMBOL vmlinux 0xe970fdc7 key_put +EXPORT_SYMBOL vmlinux 0xe981d785 phy_advertise_supported +EXPORT_SYMBOL vmlinux 0xe9858313 vga_switcheroo_register_handler +EXPORT_SYMBOL vmlinux 0xe98a86ba pci_dev_driver +EXPORT_SYMBOL vmlinux 0xe9958e7e seq_file_path EXPORT_SYMBOL vmlinux 0xe9a5e67f intel_graphics_stolen_res -EXPORT_SYMBOL vmlinux 0xe9a92a0a simple_unlink +EXPORT_SYMBOL vmlinux 0xe9aa7b64 pskb_expand_head EXPORT_SYMBOL vmlinux 0xe9aaf799 vm_event_states EXPORT_SYMBOL vmlinux 0xe9af7397 __xa_set_mark -EXPORT_SYMBOL vmlinux 0xe9d988c2 neigh_table_clear +EXPORT_SYMBOL vmlinux 0xe9b12ff9 xfrm_register_km +EXPORT_SYMBOL vmlinux 0xe9be3526 inet_select_addr +EXPORT_SYMBOL vmlinux 0xe9bf95c4 tcf_idrinfo_destroy +EXPORT_SYMBOL vmlinux 0xe9d54fd8 tcp_create_openreq_child EXPORT_SYMBOL vmlinux 0xe9e8faeb efi_tpm_final_log_size -EXPORT_SYMBOL vmlinux 0xe9f46fd3 genphy_handle_interrupt_no_ack EXPORT_SYMBOL vmlinux 0xe9f7149c zlib_deflate_workspacesize -EXPORT_SYMBOL vmlinux 0xe9fee8d4 pcie_relaxed_ordering_enabled EXPORT_SYMBOL vmlinux 0xe9ffc063 down_trylock -EXPORT_SYMBOL vmlinux 0xea06e46c nd_integrity_init -EXPORT_SYMBOL vmlinux 0xea22bbbc devm_mfd_add_devices +EXPORT_SYMBOL vmlinux 0xea092f1a ip_mc_join_group +EXPORT_SYMBOL vmlinux 0xea1e5767 nvdimm_namespace_common_probe EXPORT_SYMBOL vmlinux 0xea3c8e4e scsilun_to_int -EXPORT_SYMBOL vmlinux 0xea4790d9 generic_splice_sendpage -EXPORT_SYMBOL vmlinux 0xea4ba1b3 param_get_ullong -EXPORT_SYMBOL vmlinux 0xea5d3335 pci_setup_cardbus +EXPORT_SYMBOL vmlinux 0xea4ac485 netdev_printk EXPORT_SYMBOL vmlinux 0xea6f9a36 zlib_deflate_dfltcc_enabled +EXPORT_SYMBOL vmlinux 0xea70da5f tcp_sock_set_cork EXPORT_SYMBOL vmlinux 0xea778fab sg_pcopy_to_buffer -EXPORT_SYMBOL vmlinux 0xea8a4353 acpi_match_device_ids -EXPORT_SYMBOL vmlinux 0xeaa30741 remove_conflicting_pci_framebuffers -EXPORT_SYMBOL vmlinux 0xeaafac27 import_single_range +EXPORT_SYMBOL vmlinux 0xeaa33c9b blk_post_runtime_suspend +EXPORT_SYMBOL vmlinux 0xeaa63a39 ip_sock_set_recverr +EXPORT_SYMBOL vmlinux 0xeaa948db blk_mq_tagset_busy_iter EXPORT_SYMBOL vmlinux 0xeab6f4c4 acpi_check_resource_conflict -EXPORT_SYMBOL vmlinux 0xeac6ef46 blk_rq_append_bio -EXPORT_SYMBOL vmlinux 0xead011ab dcache_dir_close -EXPORT_SYMBOL vmlinux 0xead621f6 dcb_ieee_getapp_prio_dscp_mask_map -EXPORT_SYMBOL vmlinux 0xeadc72f0 pcim_enable_device +EXPORT_SYMBOL vmlinux 0xeabae8ac xp_free EXPORT_SYMBOL vmlinux 0xeae3dfd6 __const_udelay EXPORT_SYMBOL vmlinux 0xeafc141f __posix_acl_chmod -EXPORT_SYMBOL vmlinux 0xeb0186b4 sock_set_keepalive -EXPORT_SYMBOL vmlinux 0xeb028e4d pps_unregister_source EXPORT_SYMBOL vmlinux 0xeb078aee _raw_write_unlock_irqrestore -EXPORT_SYMBOL vmlinux 0xeb1e9f62 icmpv6_ndo_send +EXPORT_SYMBOL vmlinux 0xeb0a5604 kthread_blkcg +EXPORT_SYMBOL vmlinux 0xeb10e740 netdev_upper_dev_unlink EXPORT_SYMBOL vmlinux 0xeb233a45 __kmalloc EXPORT_SYMBOL vmlinux 0xeb2391c9 gen_new_estimator -EXPORT_SYMBOL vmlinux 0xeb311293 __ip_select_ident +EXPORT_SYMBOL vmlinux 0xeb268e49 jbd2_fc_end_commit_fallback EXPORT_SYMBOL vmlinux 0xeb31aee8 acpi_trace_point -EXPORT_SYMBOL vmlinux 0xeb3359d1 __ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0xeb32bab0 disk_start_io_acct +EXPORT_SYMBOL vmlinux 0xeb3428dc ppp_output_wakeup EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end EXPORT_SYMBOL vmlinux 0xeb44339a free_pages_exact -EXPORT_SYMBOL vmlinux 0xeb59a651 pipe_lock -EXPORT_SYMBOL vmlinux 0xeb684dbf nobh_writepage -EXPORT_SYMBOL vmlinux 0xeb6bd2ca pskb_expand_head -EXPORT_SYMBOL vmlinux 0xeb7f59d6 get_task_cred +EXPORT_SYMBOL vmlinux 0xeb5b160e elv_rb_latter_request EXPORT_SYMBOL vmlinux 0xeb7f6046 acpi_get_devices +EXPORT_SYMBOL vmlinux 0xeb9b5568 pci_read_vpd EXPORT_SYMBOL vmlinux 0xeb9e913d sgl_alloc_order EXPORT_SYMBOL vmlinux 0xeb9eef52 match_uint -EXPORT_SYMBOL vmlinux 0xeba462f2 flow_rule_match_enc_ports -EXPORT_SYMBOL vmlinux 0xeba63525 scsi_free_host_dev -EXPORT_SYMBOL vmlinux 0xebce4265 bprm_change_interp -EXPORT_SYMBOL vmlinux 0xebe36464 nd_pfn_probe -EXPORT_SYMBOL vmlinux 0xebe78269 input_enable_softrepeat -EXPORT_SYMBOL vmlinux 0xebee96b4 dev_addr_del -EXPORT_SYMBOL vmlinux 0xebfaa472 block_read_full_page -EXPORT_SYMBOL vmlinux 0xec1e6fc2 twl6040_set_pll -EXPORT_SYMBOL vmlinux 0xec2838f8 pcim_iounmap +EXPORT_SYMBOL vmlinux 0xebaa67c4 blk_get_request +EXPORT_SYMBOL vmlinux 0xebaab297 block_commit_write +EXPORT_SYMBOL vmlinux 0xebb9b7be dev_addr_del +EXPORT_SYMBOL vmlinux 0xebd0cd48 filemap_fdatawrite +EXPORT_SYMBOL vmlinux 0xebffc8d2 dquot_load_quota_inode +EXPORT_SYMBOL vmlinux 0xec094a0e mount_single +EXPORT_SYMBOL vmlinux 0xec1a5b27 ptp_find_pin_unlocked +EXPORT_SYMBOL vmlinux 0xec1ebfb8 request_firmware_into_buf EXPORT_SYMBOL vmlinux 0xec2b8a42 acpi_walk_namespace EXPORT_SYMBOL vmlinux 0xec2e1c8f proc_doulongvec_minmax -EXPORT_SYMBOL vmlinux 0xec3c562a bh_submit_read -EXPORT_SYMBOL vmlinux 0xec444834 security_binder_transfer_file -EXPORT_SYMBOL vmlinux 0xec446305 mdio_device_register EXPORT_SYMBOL vmlinux 0xec4d9e3a clk_get_sys -EXPORT_SYMBOL vmlinux 0xec58b579 phy_get_c45_ids -EXPORT_SYMBOL vmlinux 0xec7efc1d vfs_parse_fs_string -EXPORT_SYMBOL vmlinux 0xeca2777d __scm_send +EXPORT_SYMBOL vmlinux 0xec6bb2c2 xfrm_state_lookup_byspi +EXPORT_SYMBOL vmlinux 0xec6e17f7 scsi_host_get +EXPORT_SYMBOL vmlinux 0xec88463c netdev_alert +EXPORT_SYMBOL vmlinux 0xeca904e6 mmc_can_discard EXPORT_SYMBOL vmlinux 0xecac8407 __memcpy -EXPORT_SYMBOL vmlinux 0xecb17191 inet6_add_protocol -EXPORT_SYMBOL vmlinux 0xecc3d136 eth_get_headlen -EXPORT_SYMBOL vmlinux 0xecd8b3e3 from_kuid_munged +EXPORT_SYMBOL vmlinux 0xecc7fbd3 i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0xeccbf3e5 tcf_register_action EXPORT_SYMBOL vmlinux 0xecdcabd2 copy_user_generic_unrolled -EXPORT_SYMBOL vmlinux 0xece658fd jbd2_journal_dirty_metadata EXPORT_SYMBOL vmlinux 0xece784c2 rb_first -EXPORT_SYMBOL vmlinux 0xece7d2a1 scsi_eh_finish_cmd -EXPORT_SYMBOL vmlinux 0xecf242f9 security_inode_init_security EXPORT_SYMBOL vmlinux 0xecfd68ef acpi_get_node EXPORT_SYMBOL vmlinux 0xed00c4fb acpi_os_printf -EXPORT_SYMBOL vmlinux 0xed087357 seq_bprintf -EXPORT_SYMBOL vmlinux 0xed0f9e3c tcp_sync_mss -EXPORT_SYMBOL vmlinux 0xed122c5e skb_queue_purge +EXPORT_SYMBOL vmlinux 0xed04561d md_check_no_bitmap +EXPORT_SYMBOL vmlinux 0xed18aa10 skb_prepare_seq_read EXPORT_SYMBOL vmlinux 0xed238617 __put_cred -EXPORT_SYMBOL vmlinux 0xed2511c2 devm_extcon_unregister_notifier_all -EXPORT_SYMBOL vmlinux 0xed27cda7 copy_string_kernel -EXPORT_SYMBOL vmlinux 0xed2a794d generic_file_read_iter -EXPORT_SYMBOL vmlinux 0xed3489a4 generic_fadvise +EXPORT_SYMBOL vmlinux 0xed23e77b pneigh_enqueue EXPORT_SYMBOL vmlinux 0xed34ebbc acpi_any_gpe_status_set -EXPORT_SYMBOL vmlinux 0xed36341c md_bitmap_endwrite -EXPORT_SYMBOL vmlinux 0xed3a5312 _dev_warn -EXPORT_SYMBOL vmlinux 0xed533686 mipi_dsi_dcs_get_pixel_format +EXPORT_SYMBOL vmlinux 0xed40e94e pps_unregister_source +EXPORT_SYMBOL vmlinux 0xed48bb1e jbd2_journal_check_available_features +EXPORT_SYMBOL vmlinux 0xed5225f8 ptp_clock_event EXPORT_SYMBOL vmlinux 0xed5376c5 __printk_wait_on_cpu_lock EXPORT_SYMBOL vmlinux 0xed55f929 acpi_os_unmap_generic_address EXPORT_SYMBOL vmlinux 0xed656e30 udp_encap_disable -EXPORT_SYMBOL vmlinux 0xed6c2c97 __phy_write_mmd -EXPORT_SYMBOL vmlinux 0xed8c7fb1 fb_set_cmap -EXPORT_SYMBOL vmlinux 0xed90990d udp_push_pending_frames +EXPORT_SYMBOL vmlinux 0xed97114d dcache_dir_open +EXPORT_SYMBOL vmlinux 0xed9d797f jbd2_journal_force_commit +EXPORT_SYMBOL vmlinux 0xed9edc4d iov_iter_single_seg_count +EXPORT_SYMBOL vmlinux 0xedaaa984 generic_write_end EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp EXPORT_SYMBOL vmlinux 0xedc03953 iounmap -EXPORT_SYMBOL vmlinux 0xedd49f1b phy_set_max_speed -EXPORT_SYMBOL vmlinux 0xedd7ddf3 bioset_init_from_src -EXPORT_SYMBOL vmlinux 0xeddc599a inet_confirm_addr -EXPORT_SYMBOL vmlinux 0xede97189 __filemap_set_wb_err -EXPORT_SYMBOL vmlinux 0xee0916d9 pci_find_resource -EXPORT_SYMBOL vmlinux 0xee23205f vga_get +EXPORT_SYMBOL vmlinux 0xee0890ab pcie_ptm_enabled +EXPORT_SYMBOL vmlinux 0xee0921d6 request_firmware EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable -EXPORT_SYMBOL vmlinux 0xee4aa0a3 xfrm_replay_seqhi -EXPORT_SYMBOL vmlinux 0xee4b7e7d migrate_vma_finalize -EXPORT_SYMBOL vmlinux 0xee514326 netdev_refcnt_read -EXPORT_SYMBOL vmlinux 0xee54c832 make_kuid +EXPORT_SYMBOL vmlinux 0xee31a19e netdev_has_upper_dev_all_rcu +EXPORT_SYMBOL vmlinux 0xee3475d0 shrink_dcache_parent +EXPORT_SYMBOL vmlinux 0xee39b2ff mmc_calc_max_discard +EXPORT_SYMBOL vmlinux 0xee42c2b2 param_get_ushort +EXPORT_SYMBOL vmlinux 0xee4739d4 pin_user_pages_remote EXPORT_SYMBOL vmlinux 0xee58e970 fb_add_videomode -EXPORT_SYMBOL vmlinux 0xee6d67de __block_write_begin EXPORT_SYMBOL vmlinux 0xee7d7deb gen_pool_dma_zalloc EXPORT_SYMBOL vmlinux 0xee7eb9e1 pnp_platform_devices +EXPORT_SYMBOL vmlinux 0xee858655 mmc_get_card +EXPORT_SYMBOL vmlinux 0xee8928fa __cleancache_invalidate_inode EXPORT_SYMBOL vmlinux 0xee8c02e9 vprintk_emit EXPORT_SYMBOL vmlinux 0xee8d74d6 jiffies64_to_nsecs EXPORT_SYMBOL vmlinux 0xee91879b rb_first_postorder +EXPORT_SYMBOL vmlinux 0xee9a9113 __cleancache_get_page +EXPORT_SYMBOL vmlinux 0xee9ed266 disk_end_io_acct +EXPORT_SYMBOL vmlinux 0xeea28fc1 devm_request_threaded_irq EXPORT_SYMBOL vmlinux 0xeea9dbaf bitmap_bitremap -EXPORT_SYMBOL vmlinux 0xeeaa768f napi_build_skb EXPORT_SYMBOL vmlinux 0xeeb35212 get_tsc_ns_now -EXPORT_SYMBOL vmlinux 0xeec52e92 sock_no_shutdown -EXPORT_SYMBOL vmlinux 0xeec752c6 dev_change_proto_down -EXPORT_SYMBOL vmlinux 0xeecac237 genphy_config_eee_advert -EXPORT_SYMBOL vmlinux 0xeecbbdc4 f_setown -EXPORT_SYMBOL vmlinux 0xeeeb8748 agp_generic_create_gatt_table -EXPORT_SYMBOL vmlinux 0xef16da88 __ip_mc_inc_group -EXPORT_SYMBOL vmlinux 0xef19f591 udp_pre_connect +EXPORT_SYMBOL vmlinux 0xeec9b9ce clk_bulk_get_all +EXPORT_SYMBOL vmlinux 0xeee617ce d_set_fallthru +EXPORT_SYMBOL vmlinux 0xeef86318 __tracepoint_dma_fence_signaled +EXPORT_SYMBOL vmlinux 0xef0fb01b kernel_param_lock +EXPORT_SYMBOL vmlinux 0xef1c81ff unregister_filesystem EXPORT_SYMBOL vmlinux 0xef209413 textsearch_register -EXPORT_SYMBOL vmlinux 0xef2e61db sk_send_sigurg -EXPORT_SYMBOL vmlinux 0xef76652a __netlink_kernel_create -EXPORT_SYMBOL vmlinux 0xef7e7527 is_nd_dax -EXPORT_SYMBOL vmlinux 0xef830b7b __scsi_add_device -EXPORT_SYMBOL vmlinux 0xef8b90f9 pci_enable_atomic_ops_to_root -EXPORT_SYMBOL vmlinux 0xef932021 ip_mc_join_group +EXPORT_SYMBOL vmlinux 0xef214766 default_llseek +EXPORT_SYMBOL vmlinux 0xef303f36 processors +EXPORT_SYMBOL vmlinux 0xef4abf84 trace_event_printf +EXPORT_SYMBOL vmlinux 0xef56c9b2 i2c_smbus_read_byte_data +EXPORT_SYMBOL vmlinux 0xef599b41 netdev_class_create_file_ns +EXPORT_SYMBOL vmlinux 0xef61be54 irq_set_chip +EXPORT_SYMBOL vmlinux 0xef644861 fb_set_suspend +EXPORT_SYMBOL vmlinux 0xef853212 security_sctp_assoc_request +EXPORT_SYMBOL vmlinux 0xef8ee602 file_open_root EXPORT_SYMBOL vmlinux 0xef9aedfc boot_option_idle_override -EXPORT_SYMBOL vmlinux 0xefa31427 __quota_error -EXPORT_SYMBOL vmlinux 0xefa61c77 tcp_splice_read -EXPORT_SYMBOL vmlinux 0xefa80af4 pci_disable_device EXPORT_SYMBOL vmlinux 0xefaf2e4f tcf_queue_work -EXPORT_SYMBOL vmlinux 0xefb20a31 rproc_coredump_using_sections +EXPORT_SYMBOL vmlinux 0xefb19927 netlink_ack EXPORT_SYMBOL vmlinux 0xefb80ad6 config_item_get_unless_zero -EXPORT_SYMBOL vmlinux 0xefc48920 dma_unmap_resource -EXPORT_SYMBOL vmlinux 0xefccd369 neigh_sysctl_register +EXPORT_SYMBOL vmlinux 0xefb8f726 dev_add_offload EXPORT_SYMBOL vmlinux 0xefcea2e7 acpi_warning -EXPORT_SYMBOL vmlinux 0xefd44e3b sk_stream_wait_memory +EXPORT_SYMBOL vmlinux 0xefe9c866 __tracepoint_module_get +EXPORT_SYMBOL vmlinux 0xefec2b83 phy_ethtool_get_strings +EXPORT_SYMBOL vmlinux 0xefee77e8 jbd2__journal_restart EXPORT_SYMBOL vmlinux 0xefee932c acpi_get_data_full -EXPORT_SYMBOL vmlinux 0xf00047ab locks_delete_block +EXPORT_SYMBOL vmlinux 0xeff116cc proc_mkdir_mode EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list -EXPORT_SYMBOL vmlinux 0xf004a451 scsi_change_queue_depth -EXPORT_SYMBOL vmlinux 0xf0074e16 neigh_event_ns EXPORT_SYMBOL vmlinux 0xf008a885 seg6_hmac_init -EXPORT_SYMBOL vmlinux 0xf00c80c0 pcie_get_readrq +EXPORT_SYMBOL vmlinux 0xf029fe2d security_inode_getsecctx EXPORT_SYMBOL vmlinux 0xf02aa937 wait_for_completion_interruptible_timeout -EXPORT_SYMBOL vmlinux 0xf040139f ip_frag_next -EXPORT_SYMBOL vmlinux 0xf0497ea0 rt_mutex_base_init -EXPORT_SYMBOL vmlinux 0xf05b3d55 jbd2_journal_get_create_access +EXPORT_SYMBOL vmlinux 0xf03a22e2 pci_request_regions +EXPORT_SYMBOL vmlinux 0xf03c0918 dquot_release +EXPORT_SYMBOL vmlinux 0xf046c7b1 ip_fraglist_init EXPORT_SYMBOL vmlinux 0xf05c32ad rdmsr_on_cpus -EXPORT_SYMBOL vmlinux 0xf083099c put_cmsg -EXPORT_SYMBOL vmlinux 0xf0894698 input_set_capability -EXPORT_SYMBOL vmlinux 0xf098802d adjust_managed_page_count +EXPORT_SYMBOL vmlinux 0xf05c8cd5 tcf_qevent_validate_change +EXPORT_SYMBOL vmlinux 0xf06e62a4 mmc_put_card +EXPORT_SYMBOL vmlinux 0xf091ad75 mr_fill_mroute EXPORT_SYMBOL vmlinux 0xf09b5d9a get_zeroed_page +EXPORT_SYMBOL vmlinux 0xf0a19556 max8925_reg_write EXPORT_SYMBOL vmlinux 0xf0a71b1b revert_creds -EXPORT_SYMBOL vmlinux 0xf0a86188 blk_set_queue_depth -EXPORT_SYMBOL vmlinux 0xf0c6974c pcim_pin_device -EXPORT_SYMBOL vmlinux 0xf0dcdfbe scsi_command_normalize_sense -EXPORT_SYMBOL vmlinux 0xf0f187cb kthread_create_worker +EXPORT_SYMBOL vmlinux 0xf0b52976 finish_swait +EXPORT_SYMBOL vmlinux 0xf0c0b380 tcp_set_rcvlowat +EXPORT_SYMBOL vmlinux 0xf0c3d30c bfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0xf0c47f18 devfreq_add_device +EXPORT_SYMBOL vmlinux 0xf0c6837e phy_attached_info +EXPORT_SYMBOL vmlinux 0xf0d9e27d tcf_block_get_ext EXPORT_SYMBOL vmlinux 0xf102033e slhc_remember -EXPORT_SYMBOL vmlinux 0xf1020a19 sock_register -EXPORT_SYMBOL vmlinux 0xf10859cd mipi_dsi_dcs_set_tear_on +EXPORT_SYMBOL vmlinux 0xf11dbaf0 mipi_dsi_generic_read EXPORT_SYMBOL vmlinux 0xf11dd46e _page_poisoning_enabled_early -EXPORT_SYMBOL vmlinux 0xf12c0eb4 mark_buffer_async_write -EXPORT_SYMBOL vmlinux 0xf139a95b i2c_smbus_read_word_data -EXPORT_SYMBOL vmlinux 0xf1440a3b __skb_checksum -EXPORT_SYMBOL vmlinux 0xf14d7d4d devfreq_register_opp_notifier -EXPORT_SYMBOL vmlinux 0xf14eda5e mr_mfc_seq_next -EXPORT_SYMBOL vmlinux 0xf1781e52 genphy_write_mmd_unsupported -EXPORT_SYMBOL vmlinux 0xf18174db udp_seq_start +EXPORT_SYMBOL vmlinux 0xf11f7669 pskb_extract +EXPORT_SYMBOL vmlinux 0xf1227611 ndo_dflt_fdb_add +EXPORT_SYMBOL vmlinux 0xf12f269b xfrm_dst_ifdown +EXPORT_SYMBOL vmlinux 0xf134827d nf_ct_get_tuple_skb +EXPORT_SYMBOL vmlinux 0xf1373055 unregister_netdevice_notifier_dev_net +EXPORT_SYMBOL vmlinux 0xf13ae043 pci_ep_cfs_remove_epc_group +EXPORT_SYMBOL vmlinux 0xf13f94f1 seq_putc +EXPORT_SYMBOL vmlinux 0xf15ca31d is_nvdimm_bus_locked EXPORT_SYMBOL vmlinux 0xf1848ee2 acpi_install_sci_handler -EXPORT_SYMBOL vmlinux 0xf1867ddb nvdimm_bus_unlock -EXPORT_SYMBOL vmlinux 0xf18cee78 iget_locked -EXPORT_SYMBOL vmlinux 0xf18e7337 __scsi_device_lookup EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps EXPORT_SYMBOL vmlinux 0xf1969a8e __usecs_to_jiffies +EXPORT_SYMBOL vmlinux 0xf1a0eb59 gro_cells_init EXPORT_SYMBOL vmlinux 0xf1a68107 acpi_processor_preregister_performance -EXPORT_SYMBOL vmlinux 0xf1c5910a ptp_clock_unregister -EXPORT_SYMBOL vmlinux 0xf1c9b6a5 cros_ec_query_all -EXPORT_SYMBOL vmlinux 0xf1c9bba1 bdi_alloc -EXPORT_SYMBOL vmlinux 0xf1ca686a mr_mfc_find_any_parent -EXPORT_SYMBOL vmlinux 0xf1d062af unregister_key_type -EXPORT_SYMBOL vmlinux 0xf1d57a73 dev_mc_sync +EXPORT_SYMBOL vmlinux 0xf1ac5e06 locks_remove_posix +EXPORT_SYMBOL vmlinux 0xf1b61f25 mmc_of_parse_voltage +EXPORT_SYMBOL vmlinux 0xf1bd39c6 pcie_set_mps +EXPORT_SYMBOL vmlinux 0xf1bfd35e rproc_coredump_add_segment EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy +EXPORT_SYMBOL vmlinux 0xf1de5954 phy_ethtool_set_link_ksettings EXPORT_SYMBOL vmlinux 0xf1e046cc panic -EXPORT_SYMBOL vmlinux 0xf1e45adb set_pages_array_wc EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun -EXPORT_SYMBOL vmlinux 0xf1f1963e dma_unmap_page_attrs -EXPORT_SYMBOL vmlinux 0xf1fb3145 dev_printk_emit -EXPORT_SYMBOL vmlinux 0xf1fcb2c0 pci_iomap -EXPORT_SYMBOL vmlinux 0xf217676b scsi_mode_sense -EXPORT_SYMBOL vmlinux 0xf227c6eb dev_alloc_name +EXPORT_SYMBOL vmlinux 0xf1f45742 dcb_ieee_getapp_dscp_prio_mask_map +EXPORT_SYMBOL vmlinux 0xf1ff3cb8 cdrom_check_events +EXPORT_SYMBOL vmlinux 0xf20eb9c5 sdev_prefix_printk +EXPORT_SYMBOL vmlinux 0xf2322769 find_inode_nowait EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in -EXPORT_SYMBOL vmlinux 0xf248dd2a dquot_mark_dquot_dirty -EXPORT_SYMBOL vmlinux 0xf26676f0 blk_set_runtime_active -EXPORT_SYMBOL vmlinux 0xf270c7d9 serio_bus -EXPORT_SYMBOL vmlinux 0xf271ebca phy_ethtool_get_eee -EXPORT_SYMBOL vmlinux 0xf27b1c1b jbd2_journal_start -EXPORT_SYMBOL vmlinux 0xf2804052 tty_insert_flip_string_fixed_flag +EXPORT_SYMBOL vmlinux 0xf2553530 fscrypt_ioctl_set_policy +EXPORT_SYMBOL vmlinux 0xf25a1ad6 __blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0xf269b50d skb_set_owner_w +EXPORT_SYMBOL vmlinux 0xf26eec69 grab_cache_page_write_begin EXPORT_SYMBOL vmlinux 0xf28404cf devlink_dpipe_header_ipv6 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 0xf29d051a unregister_tcf_proto_ops EXPORT_SYMBOL vmlinux 0xf29f8515 __kfifo_dma_out_prepare_r -EXPORT_SYMBOL vmlinux 0xf2afb02a dquot_quota_on +EXPORT_SYMBOL vmlinux 0xf2a1b5cb devm_rproc_alloc EXPORT_SYMBOL vmlinux 0xf2b81b64 arch_io_reserve_memtype_wc +EXPORT_SYMBOL vmlinux 0xf2bcc7c3 sock_no_bind EXPORT_SYMBOL vmlinux 0xf2c43f3f zlib_deflate +EXPORT_SYMBOL vmlinux 0xf2d225a4 blk_pre_runtime_resume +EXPORT_SYMBOL vmlinux 0xf2d620c6 ip_sock_set_mtu_discover +EXPORT_SYMBOL vmlinux 0xf2db63ed vmf_insert_pfn EXPORT_SYMBOL vmlinux 0xf2e5bd87 security_free_mnt_opts -EXPORT_SYMBOL vmlinux 0xf2e723fc __mdiobus_register -EXPORT_SYMBOL vmlinux 0xf2e73990 locks_init_lock EXPORT_SYMBOL vmlinux 0xf2f53617 memregion_free -EXPORT_SYMBOL vmlinux 0xf2f7e7ce pskb_trim_rcsum_slow -EXPORT_SYMBOL vmlinux 0xf2f8ebb5 scsi_print_sense +EXPORT_SYMBOL vmlinux 0xf3008c6d tcp_filter +EXPORT_SYMBOL vmlinux 0xf302cbaa iov_iter_init +EXPORT_SYMBOL vmlinux 0xf30407e0 flow_rule_match_vlan EXPORT_SYMBOL vmlinux 0xf30965ac iosf_mbi_register_pmic_bus_access_notifier -EXPORT_SYMBOL vmlinux 0xf30b4321 bio_endio EXPORT_SYMBOL vmlinux 0xf3107926 sha224_update -EXPORT_SYMBOL vmlinux 0xf31269d3 __ip_queue_xmit -EXPORT_SYMBOL vmlinux 0xf3422378 pcim_iomap_table +EXPORT_SYMBOL vmlinux 0xf314fe16 vfs_fsync +EXPORT_SYMBOL vmlinux 0xf31da36e xsk_get_pool_from_qid +EXPORT_SYMBOL vmlinux 0xf32ed1f1 pnp_get_resource +EXPORT_SYMBOL vmlinux 0xf332820a ip_frag_init +EXPORT_SYMBOL vmlinux 0xf337550d input_close_device EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier -EXPORT_SYMBOL vmlinux 0xf363de72 pci_dev_put -EXPORT_SYMBOL vmlinux 0xf371548b cros_ec_prepare_tx +EXPORT_SYMBOL vmlinux 0xf370a769 tcp_sock_set_keepidle +EXPORT_SYMBOL vmlinux 0xf38bf0a9 dev_change_flags EXPORT_SYMBOL vmlinux 0xf3916987 global_cursor_default -EXPORT_SYMBOL vmlinux 0xf39e8b18 __blkdev_issue_zeroout -EXPORT_SYMBOL vmlinux 0xf39f24d1 ppp_unit_number EXPORT_SYMBOL vmlinux 0xf3a57892 release_dentry_name_snapshot EXPORT_SYMBOL vmlinux 0xf3b30a06 utf8version_latest -EXPORT_SYMBOL vmlinux 0xf3c121ae neigh_resolve_output -EXPORT_SYMBOL vmlinux 0xf3cf53de pcim_iomap -EXPORT_SYMBOL vmlinux 0xf3d0b9e4 scsi_vpd_lun_id -EXPORT_SYMBOL vmlinux 0xf3d3d61a simple_recursive_removal -EXPORT_SYMBOL vmlinux 0xf3dc491a mmc_start_request +EXPORT_SYMBOL vmlinux 0xf3bbdcfe seg6_hmac_info_add +EXPORT_SYMBOL vmlinux 0xf3c0ed4b input_set_min_poll_interval +EXPORT_SYMBOL vmlinux 0xf3c6ff97 blk_queue_update_dma_pad +EXPORT_SYMBOL vmlinux 0xf3d563fc qdisc_class_hash_grow +EXPORT_SYMBOL vmlinux 0xf3dffe87 xfrm_trans_queue EXPORT_SYMBOL vmlinux 0xf3e0e1df allocate_resource EXPORT_SYMBOL vmlinux 0xf3e6402e __bitmap_equal -EXPORT_SYMBOL vmlinux 0xf3ecb3c3 proc_set_size -EXPORT_SYMBOL vmlinux 0xf3f23414 scsi_report_device_reset +EXPORT_SYMBOL vmlinux 0xf3ee1621 nf_log_packet +EXPORT_SYMBOL vmlinux 0xf3f471f6 vga_switcheroo_fini_domain_pm_ops +EXPORT_SYMBOL vmlinux 0xf3f61996 gnet_stats_start_copy EXPORT_SYMBOL vmlinux 0xf3fc8a70 ns_capable_noaudit -EXPORT_SYMBOL vmlinux 0xf412784e serio_unregister_driver -EXPORT_SYMBOL vmlinux 0xf4158bd0 ip6_fraglist_prepare -EXPORT_SYMBOL vmlinux 0xf42fe1ec eth_header_parse -EXPORT_SYMBOL vmlinux 0xf434c569 neigh_seq_stop +EXPORT_SYMBOL vmlinux 0xf41279fd tcf_block_netif_keep_dst +EXPORT_SYMBOL vmlinux 0xf42c7043 mdio_find_bus +EXPORT_SYMBOL vmlinux 0xf42ee8a6 bdev_check_media_change +EXPORT_SYMBOL vmlinux 0xf43aba55 inet_accept EXPORT_SYMBOL vmlinux 0xf43d2caa acpi_remove_interface -EXPORT_SYMBOL vmlinux 0xf444dec7 blk_queue_segment_boundary EXPORT_SYMBOL vmlinux 0xf44a904a net_ns_barrier -EXPORT_SYMBOL vmlinux 0xf44de752 alloc_buffer_head -EXPORT_SYMBOL vmlinux 0xf451451b pcim_iounmap_regions -EXPORT_SYMBOL vmlinux 0xf46097a2 dquot_quota_off -EXPORT_SYMBOL vmlinux 0xf46c9413 icmp6_send -EXPORT_SYMBOL vmlinux 0xf472b52e freezing_slow_path -EXPORT_SYMBOL vmlinux 0xf4735ef8 __sk_mem_schedule +EXPORT_SYMBOL vmlinux 0xf44c635c rproc_elf_load_segments EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const -EXPORT_SYMBOL vmlinux 0xf48b1b4d watchdog_register_governor +EXPORT_SYMBOL vmlinux 0xf484d35c neigh_seq_next +EXPORT_SYMBOL vmlinux 0xf4954ba7 bio_integrity_prep EXPORT_SYMBOL vmlinux 0xf4a565fd wrmsr_on_cpus -EXPORT_SYMBOL vmlinux 0xf4a8f53d xfrm4_rcv_encap +EXPORT_SYMBOL vmlinux 0xf4a7fb3c elv_rb_del +EXPORT_SYMBOL vmlinux 0xf4aa653f generic_set_encrypted_ci_d_ops EXPORT_SYMBOL vmlinux 0xf4b754fd acpi_resources_are_enforced EXPORT_SYMBOL vmlinux 0xf4bdbeb9 __frontswap_invalidate_area -EXPORT_SYMBOL vmlinux 0xf4c2c039 blk_rq_unmap_user -EXPORT_SYMBOL vmlinux 0xf4d2ae0e tcp_ld_RTO_revert +EXPORT_SYMBOL vmlinux 0xf4c4ec49 register_nexthop_notifier EXPORT_SYMBOL vmlinux 0xf4db35bc stpcpy -EXPORT_SYMBOL vmlinux 0xf4e07d50 scsi_device_lookup -EXPORT_SYMBOL vmlinux 0xf4eea953 mipi_dsi_dcs_write_buffer +EXPORT_SYMBOL vmlinux 0xf4e3931e vfs_iter_write EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock -EXPORT_SYMBOL vmlinux 0xf4f94fd0 tcp_sock_set_user_timeout -EXPORT_SYMBOL vmlinux 0xf515d296 ptp_clock_event -EXPORT_SYMBOL vmlinux 0xf51725a8 pci_wake_from_d3 -EXPORT_SYMBOL vmlinux 0xf51e096a may_umount_tree -EXPORT_SYMBOL vmlinux 0xf51f159a _dev_emerg -EXPORT_SYMBOL vmlinux 0xf539b2b9 dquot_transfer +EXPORT_SYMBOL vmlinux 0xf51b937a genphy_read_status +EXPORT_SYMBOL vmlinux 0xf51e78ed dev_set_mac_address +EXPORT_SYMBOL vmlinux 0xf5289216 vme_register_driver +EXPORT_SYMBOL vmlinux 0xf5336c49 single_open_size +EXPORT_SYMBOL vmlinux 0xf5354c67 proc_mkdir EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy -EXPORT_SYMBOL vmlinux 0xf54416be devfreq_register_notifier -EXPORT_SYMBOL vmlinux 0xf5454677 __frontswap_load -EXPORT_SYMBOL vmlinux 0xf57cf1ed crypto_sha1_finup +EXPORT_SYMBOL vmlinux 0xf5422e9a mfd_cell_disable +EXPORT_SYMBOL vmlinux 0xf54d127d __traceiter_mmap_lock_start_locking +EXPORT_SYMBOL vmlinux 0xf56d773c cdrom_mode_select +EXPORT_SYMBOL vmlinux 0xf58d345e inc_nlink +EXPORT_SYMBOL vmlinux 0xf58e4006 devfreq_suspend_device EXPORT_SYMBOL vmlinux 0xf591753d nf_hooks_needed EXPORT_SYMBOL vmlinux 0xf5a20ed2 __genradix_prealloc EXPORT_SYMBOL vmlinux 0xf5a5c84c msrs_alloc EXPORT_SYMBOL vmlinux 0xf5add0ae ns_capable_setid -EXPORT_SYMBOL vmlinux 0xf5b1e171 dev_add_pack -EXPORT_SYMBOL vmlinux 0xf5c230bc phy_register_fixup_for_uid -EXPORT_SYMBOL vmlinux 0xf5d5ec31 gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0xf5d8ffcf __d_drop EXPORT_SYMBOL vmlinux 0xf5e7ea40 ktime_get_coarse_ts64 -EXPORT_SYMBOL vmlinux 0xf5edb8b2 d_tmpfile -EXPORT_SYMBOL vmlinux 0xf6060c65 vlan_ioctl_set +EXPORT_SYMBOL vmlinux 0xf5ef39cb vlan_filter_push_vids +EXPORT_SYMBOL vmlinux 0xf607b8e0 scsi_print_result EXPORT_SYMBOL vmlinux 0xf60ab926 acpi_get_event_status -EXPORT_SYMBOL vmlinux 0xf61e7ad2 page_pool_alloc_pages -EXPORT_SYMBOL vmlinux 0xf6246da7 dm_register_target -EXPORT_SYMBOL vmlinux 0xf6253f77 padata_alloc +EXPORT_SYMBOL vmlinux 0xf613b54e __ip_queue_xmit +EXPORT_SYMBOL vmlinux 0xf6211624 padata_set_cpumask +EXPORT_SYMBOL vmlinux 0xf6245a3c vga_switcheroo_unlock_ddc +EXPORT_SYMBOL vmlinux 0xf62f81ab fd_install +EXPORT_SYMBOL vmlinux 0xf638995f xfrm6_rcv EXPORT_SYMBOL vmlinux 0xf643d104 hsiphash_4u32 +EXPORT_SYMBOL vmlinux 0xf6586de3 vga_switcheroo_client_probe_defer EXPORT_SYMBOL vmlinux 0xf665f74f sock_load_diag_module -EXPORT_SYMBOL vmlinux 0xf66722fd __dynamic_dev_dbg -EXPORT_SYMBOL vmlinux 0xf67d306d keyring_clear +EXPORT_SYMBOL vmlinux 0xf66f50d0 __ip_mc_dec_group +EXPORT_SYMBOL vmlinux 0xf67b32a5 unregister_fib_notifier EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier -EXPORT_SYMBOL vmlinux 0xf682ae0d mipi_dsi_dcs_set_display_off -EXPORT_SYMBOL vmlinux 0xf69b51fb remove_proc_subtree -EXPORT_SYMBOL vmlinux 0xf6af6b06 __skb_free_datagram_locked -EXPORT_SYMBOL vmlinux 0xf6bb1d04 scsi_is_target_device -EXPORT_SYMBOL vmlinux 0xf6ca155c __mod_node_page_state -EXPORT_SYMBOL vmlinux 0xf6ccbc5b kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0xf6d83da3 seq_open +EXPORT_SYMBOL vmlinux 0xf6914785 tcp_prot +EXPORT_SYMBOL vmlinux 0xf6958df8 phy_init_eee +EXPORT_SYMBOL vmlinux 0xf69a2938 nobh_writepage +EXPORT_SYMBOL vmlinux 0xf6e89897 jbd2_journal_check_used_features EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit EXPORT_SYMBOL vmlinux 0xf6f9d58d init_on_free EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor -EXPORT_SYMBOL vmlinux 0xf72e0f5c inet_sock_destruct +EXPORT_SYMBOL vmlinux 0xf6ff5900 generic_delete_inode +EXPORT_SYMBOL vmlinux 0xf7097d67 blk_queue_max_hw_sectors +EXPORT_SYMBOL vmlinux 0xf70ca873 ipv6_mc_check_mld EXPORT_SYMBOL vmlinux 0xf738d1be register_blocking_lsm_notifier -EXPORT_SYMBOL vmlinux 0xf74791db lookup_one -EXPORT_SYMBOL vmlinux 0xf75be66d ip_options_compile -EXPORT_SYMBOL vmlinux 0xf75d560b build_skb_around +EXPORT_SYMBOL vmlinux 0xf741a4ee devm_devfreq_remove_device +EXPORT_SYMBOL vmlinux 0xf7559b11 flow_block_cb_free +EXPORT_SYMBOL vmlinux 0xf7563864 tc_setup_cb_add +EXPORT_SYMBOL vmlinux 0xf76f473b dquot_set_dqinfo EXPORT_SYMBOL vmlinux 0xf77337a1 hdmi_audio_infoframe_check -EXPORT_SYMBOL vmlinux 0xf775d2ed ipv4_dst_check -EXPORT_SYMBOL vmlinux 0xf77cf51e dev_pre_changeaddr_notify -EXPORT_SYMBOL vmlinux 0xf7822a8b ip6_route_me_harder -EXPORT_SYMBOL vmlinux 0xf79b8120 dma_unmap_sg_attrs +EXPORT_SYMBOL vmlinux 0xf7776a4e get_ipc_ns_exported +EXPORT_SYMBOL vmlinux 0xf7844209 i2c_smbus_write_byte EXPORT_SYMBOL vmlinux 0xf79ca3bb acpi_remove_gpe_block -EXPORT_SYMBOL vmlinux 0xf79ec31b phy_trigger_machine -EXPORT_SYMBOL vmlinux 0xf7a8cb1e _dev_crit -EXPORT_SYMBOL vmlinux 0xf7c3369b devm_nvmem_cell_put -EXPORT_SYMBOL vmlinux 0xf7cbee2e devm_mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0xf7beffe8 sk_mc_loop +EXPORT_SYMBOL vmlinux 0xf7cba721 dquot_free_inode EXPORT_SYMBOL vmlinux 0xf7d31de9 kstrtoul_from_user +EXPORT_SYMBOL vmlinux 0xf7d5e9a5 linkwatch_fire_event EXPORT_SYMBOL vmlinux 0xf7da6e6f acpi_unload_table +EXPORT_SYMBOL vmlinux 0xf7dca380 blk_queue_physical_block_size +EXPORT_SYMBOL vmlinux 0xf7e1d6db touch_atime EXPORT_SYMBOL vmlinux 0xf7ef9a79 iosf_mbi_punit_release +EXPORT_SYMBOL vmlinux 0xf7fa9908 PageMovable +EXPORT_SYMBOL vmlinux 0xf8044f8d __dev_remove_pack EXPORT_SYMBOL vmlinux 0xf80be44e rdmsr_safe_on_cpu +EXPORT_SYMBOL vmlinux 0xf80c693f file_check_and_advance_wb_err EXPORT_SYMBOL vmlinux 0xf811e69d scsi_eh_flush_done_q +EXPORT_SYMBOL vmlinux 0xf8127f4d component_match_add_release EXPORT_SYMBOL vmlinux 0xf812cff6 memscan -EXPORT_SYMBOL vmlinux 0xf81606b9 inode_add_bytes +EXPORT_SYMBOL vmlinux 0xf817d3e1 nvdimm_check_and_set_ro EXPORT_SYMBOL vmlinux 0xf82abc1d isa_dma_bridge_buggy EXPORT_SYMBOL vmlinux 0xf82ec573 rb_prev -EXPORT_SYMBOL vmlinux 0xf84b8da8 migrate_vma_pages +EXPORT_SYMBOL vmlinux 0xf83b3d4c may_umount_tree EXPORT_SYMBOL vmlinux 0xf84bd6ee bpf_stats_enabled_key -EXPORT_SYMBOL vmlinux 0xf86f9a56 compat_ptr_ioctl -EXPORT_SYMBOL vmlinux 0xf880ebcf __dynamic_ibdev_dbg +EXPORT_SYMBOL vmlinux 0xf8502435 vfs_statfs +EXPORT_SYMBOL vmlinux 0xf868942f vfs_getattr_nosec +EXPORT_SYMBOL vmlinux 0xf86adcb4 fscrypt_put_encryption_info +EXPORT_SYMBOL vmlinux 0xf86f4166 vfs_fsync_range +EXPORT_SYMBOL vmlinux 0xf88086c5 eisa_driver_unregister EXPORT_SYMBOL vmlinux 0xf888ca21 sg_init_table -EXPORT_SYMBOL vmlinux 0xf8928b6e __traceiter_mmap_lock_start_locking -EXPORT_SYMBOL vmlinux 0xf89694eb jbd2_log_start_commit -EXPORT_SYMBOL vmlinux 0xf8a5f0de pci_irq_get_affinity -EXPORT_SYMBOL vmlinux 0xf8aea4d8 scsi_device_get EXPORT_SYMBOL vmlinux 0xf8b05467 __nla_reserve -EXPORT_SYMBOL vmlinux 0xf8b430d2 send_sig_mceerr -EXPORT_SYMBOL vmlinux 0xf8ba1038 fixed_size_llseek EXPORT_SYMBOL vmlinux 0xf8bf8e22 ZSTD_DDictWorkspaceBound -EXPORT_SYMBOL vmlinux 0xf8c3e7f7 simple_rmdir -EXPORT_SYMBOL vmlinux 0xf8cd7f42 softnet_data -EXPORT_SYMBOL vmlinux 0xf8ce9751 dquot_get_next_dqblk +EXPORT_SYMBOL vmlinux 0xf8bfc3c1 seq_puts +EXPORT_SYMBOL vmlinux 0xf8c1e1ae bh_uptodate_or_lock EXPORT_SYMBOL vmlinux 0xf8d07858 bitmap_from_arr32 +EXPORT_SYMBOL vmlinux 0xf8dfab61 __scsi_execute +EXPORT_SYMBOL vmlinux 0xf8eee0bb __sk_mem_reclaim EXPORT_SYMBOL vmlinux 0xf8f61ebc wake_up_var -EXPORT_SYMBOL vmlinux 0xf8fab5b6 tty_driver_kref_put -EXPORT_SYMBOL vmlinux 0xf9093b92 vme_slave_request EXPORT_SYMBOL vmlinux 0xf90a1e85 __x86_indirect_thunk_r8 -EXPORT_SYMBOL vmlinux 0xf90b71eb tcf_qevent_handle -EXPORT_SYMBOL vmlinux 0xf916906e pci_prepare_to_sleep -EXPORT_SYMBOL vmlinux 0xf92140f8 param_get_ushort -EXPORT_SYMBOL vmlinux 0xf923df86 netdev_master_upper_dev_get_rcu -EXPORT_SYMBOL vmlinux 0xf93ab1aa tcf_block_get EXPORT_SYMBOL vmlinux 0xf93fd09c fb_find_mode_cvt -EXPORT_SYMBOL vmlinux 0xf9498c11 init_net -EXPORT_SYMBOL vmlinux 0xf95c1d6a n_tty_ioctl_helper +EXPORT_SYMBOL vmlinux 0xf942cebd tty_insert_flip_string_fixed_flag +EXPORT_SYMBOL vmlinux 0xf9576e5c skb_orphan_partial +EXPORT_SYMBOL vmlinux 0xf95e0fb3 pv_ops +EXPORT_SYMBOL vmlinux 0xf95ebc9b alloc_fddidev +EXPORT_SYMBOL vmlinux 0xf967223a vfs_tmpfile EXPORT_SYMBOL vmlinux 0xf971cea8 utf8len EXPORT_SYMBOL vmlinux 0xf9722676 twl_i2c_write +EXPORT_SYMBOL vmlinux 0xf98dcdfe vfs_fileattr_get EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep -EXPORT_SYMBOL vmlinux 0xf9a7b4da put_ipc_ns +EXPORT_SYMBOL vmlinux 0xf9a9cc48 request_key_tag EXPORT_SYMBOL vmlinux 0xf9c0b663 strlcat +EXPORT_SYMBOL vmlinux 0xf9c663d5 of_find_mipi_dsi_device_by_node EXPORT_SYMBOL vmlinux 0xf9ca2eb4 kstrtoint_from_user -EXPORT_SYMBOL vmlinux 0xf9caf03e xfrm_input -EXPORT_SYMBOL vmlinux 0xf9f213f1 setup_new_exec +EXPORT_SYMBOL vmlinux 0xf9ce1654 nd_dev_to_uuid +EXPORT_SYMBOL vmlinux 0xf9ce2e2f pci_bus_size_bridges EXPORT_SYMBOL vmlinux 0xf9f3696e __cpuhp_setup_state_cpuslocked -EXPORT_SYMBOL vmlinux 0xf9f51196 netif_carrier_off -EXPORT_SYMBOL vmlinux 0xfa074338 call_fib_notifiers +EXPORT_SYMBOL vmlinux 0xf9f805d6 __netdev_notify_peers EXPORT_SYMBOL vmlinux 0xfa08c34a page_offline_end -EXPORT_SYMBOL vmlinux 0xfa10ba2f reuseport_select_sock -EXPORT_SYMBOL vmlinux 0xfa1e099b phy_ethtool_ksettings_set -EXPORT_SYMBOL vmlinux 0xfa219dbf __SCK__tp_func_kfree -EXPORT_SYMBOL vmlinux 0xfa28f1c2 tty_port_tty_get EXPORT_SYMBOL vmlinux 0xfa297415 acpi_map_pxm_to_node EXPORT_SYMBOL vmlinux 0xfa2e5f32 i2c_smbus_pec -EXPORT_SYMBOL vmlinux 0xfa31422f iov_iter_xarray EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier -EXPORT_SYMBOL vmlinux 0xfa6c5933 dma_free_attrs -EXPORT_SYMBOL vmlinux 0xfa84142b napi_gro_flush -EXPORT_SYMBOL vmlinux 0xfa85ad9e rproc_shutdown +EXPORT_SYMBOL vmlinux 0xfa659465 sock_no_socketpair +EXPORT_SYMBOL vmlinux 0xfa66860e pin_user_pages_unlocked EXPORT_SYMBOL vmlinux 0xfa873ad0 prandom_seed -EXPORT_SYMBOL vmlinux 0xfa8ec785 dump_align -EXPORT_SYMBOL vmlinux 0xfa9d297e blk_get_request -EXPORT_SYMBOL vmlinux 0xfaa0f226 rtnl_kfree_skbs +EXPORT_SYMBOL vmlinux 0xfa89510b user_path_at_empty +EXPORT_SYMBOL vmlinux 0xfa98f8d3 fb_is_primary_device +EXPORT_SYMBOL vmlinux 0xfaa27593 xfrm_spd_getinfo EXPORT_SYMBOL vmlinux 0xfaaa12d0 _page_poisoning_enabled -EXPORT_SYMBOL vmlinux 0xfab35186 ipv6_chk_addr_and_flags EXPORT_SYMBOL vmlinux 0xfac19588 __clear_user EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max -EXPORT_SYMBOL vmlinux 0xfad091f8 free_inode_nonrcu -EXPORT_SYMBOL vmlinux 0xfad27996 vfs_iocb_iter_write -EXPORT_SYMBOL vmlinux 0xfad55a88 blk_mq_delay_run_hw_queue -EXPORT_SYMBOL vmlinux 0xfadebd3d close_fd_get_file -EXPORT_SYMBOL vmlinux 0xfae54e53 skb_tx_error -EXPORT_SYMBOL vmlinux 0xfaf45e9a get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0xfad1fcce read_cache_page +EXPORT_SYMBOL vmlinux 0xfaedb7aa twl6040_reg_read +EXPORT_SYMBOL vmlinux 0xfaf47771 blk_queue_flag_set +EXPORT_SYMBOL vmlinux 0xfafde30f netlink_capable +EXPORT_SYMBOL vmlinux 0xfb096ba3 generic_file_direct_write +EXPORT_SYMBOL vmlinux 0xfb10e3de twl6040_reg_write +EXPORT_SYMBOL vmlinux 0xfb1e237d mmc_add_host +EXPORT_SYMBOL vmlinux 0xfb229a31 __blockdev_direct_IO +EXPORT_SYMBOL vmlinux 0xfb2694a1 napi_schedule_prep +EXPORT_SYMBOL vmlinux 0xfb2d3c40 agp_generic_type_to_mask_type +EXPORT_SYMBOL vmlinux 0xfb348fea fault_in_safe_writeable EXPORT_SYMBOL vmlinux 0xfb384d37 kasprintf -EXPORT_SYMBOL vmlinux 0xfb3b30ac thaw_bdev -EXPORT_SYMBOL vmlinux 0xfb4ff0ee genphy_check_and_restart_aneg -EXPORT_SYMBOL vmlinux 0xfb51c47e pid_task +EXPORT_SYMBOL vmlinux 0xfb39d59c inet_confirm_addr +EXPORT_SYMBOL vmlinux 0xfb3d22c5 kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0xfb3e20a2 dquot_load_quota_sb +EXPORT_SYMBOL vmlinux 0xfb481240 xattr_supported_namespace EXPORT_SYMBOL vmlinux 0xfb578fc5 memset -EXPORT_SYMBOL vmlinux 0xfb5e07c7 elevator_alloc +EXPORT_SYMBOL vmlinux 0xfb5aed36 follow_down +EXPORT_SYMBOL vmlinux 0xfb5fd4ca try_to_writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0xfb61ed2f drop_nlink +EXPORT_SYMBOL vmlinux 0xfb66c08e kernel_getsockname EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending -EXPORT_SYMBOL vmlinux 0xfb97d6c7 dquot_drop +EXPORT_SYMBOL vmlinux 0xfb751763 empty_aops +EXPORT_SYMBOL vmlinux 0xfb8cb8b9 get_mem_cgroup_from_mm +EXPORT_SYMBOL vmlinux 0xfb8fbcfd iov_iter_npages +EXPORT_SYMBOL vmlinux 0xfb9507ca tcp_v4_connect EXPORT_SYMBOL vmlinux 0xfba7ddd2 match_u64 EXPORT_SYMBOL vmlinux 0xfbaaf01e console_lock EXPORT_SYMBOL vmlinux 0xfbab1bb1 ioread8_rep EXPORT_SYMBOL vmlinux 0xfbad3cf0 scsi_normalize_sense +EXPORT_SYMBOL vmlinux 0xfbaeec82 tcp_mmap EXPORT_SYMBOL vmlinux 0xfbb8a761 strscpy_pad +EXPORT_SYMBOL vmlinux 0xfbb9995c xfrm_find_acq_byseq +EXPORT_SYMBOL vmlinux 0xfbbf5e5c filemap_invalidate_lock_two EXPORT_SYMBOL vmlinux 0xfbc4f89e io_schedule_timeout -EXPORT_SYMBOL vmlinux 0xfbc616f1 inet6_bind -EXPORT_SYMBOL vmlinux 0xfbc6d9d8 netdev_port_same_parent_id -EXPORT_SYMBOL vmlinux 0xfbcab161 scmd_printk -EXPORT_SYMBOL vmlinux 0xfbddaa88 scsi_alloc_sgtables +EXPORT_SYMBOL vmlinux 0xfbc9fdcf __getblk_gfp +EXPORT_SYMBOL vmlinux 0xfbd6010f tcf_action_update_stats EXPORT_SYMBOL vmlinux 0xfbe8ee28 acpi_get_table_by_index -EXPORT_SYMBOL vmlinux 0xfc0f92be netdev_adjacent_change_abort -EXPORT_SYMBOL vmlinux 0xfc16002d sdev_enable_disk_events -EXPORT_SYMBOL vmlinux 0xfc1f2653 pagecache_write_end -EXPORT_SYMBOL vmlinux 0xfc202c76 udp_lib_rehash -EXPORT_SYMBOL vmlinux 0xfc226614 input_set_poll_interval -EXPORT_SYMBOL vmlinux 0xfc239603 vfs_rmdir +EXPORT_SYMBOL vmlinux 0xfbe9f8e7 configfs_register_group +EXPORT_SYMBOL vmlinux 0xfbf49648 dev_set_mtu +EXPORT_SYMBOL vmlinux 0xfbffb331 netpoll_setup +EXPORT_SYMBOL vmlinux 0xfc13a375 blk_cleanup_queue EXPORT_SYMBOL vmlinux 0xfc336d2e __wake_up_bit +EXPORT_SYMBOL vmlinux 0xfc3752a7 blk_pre_runtime_suspend +EXPORT_SYMBOL vmlinux 0xfc395e17 finish_open EXPORT_SYMBOL vmlinux 0xfc399557 utf8_load EXPORT_SYMBOL vmlinux 0xfc39e32f ioport_unmap EXPORT_SYMBOL vmlinux 0xfc3d53cb __put_user_nocheck_1 EXPORT_SYMBOL vmlinux 0xfc4152fc ec_read -EXPORT_SYMBOL vmlinux 0xfc511283 pci_scan_root_bus -EXPORT_SYMBOL vmlinux 0xfc9c057f sock_release -EXPORT_SYMBOL vmlinux 0xfc9d5331 put_watch_queue -EXPORT_SYMBOL vmlinux 0xfca2de7b generic_shutdown_super -EXPORT_SYMBOL vmlinux 0xfca4c697 rt_dst_alloc -EXPORT_SYMBOL vmlinux 0xfcc2f156 phy_config_aneg +EXPORT_SYMBOL vmlinux 0xfc4f9416 fscrypt_decrypt_bio +EXPORT_SYMBOL vmlinux 0xfc5219e5 flow_indr_dev_unregister +EXPORT_SYMBOL vmlinux 0xfc57b5fa vme_dma_list_exec +EXPORT_SYMBOL vmlinux 0xfc5a4662 framebuffer_release +EXPORT_SYMBOL vmlinux 0xfc8ddb21 udp6_set_csum +EXPORT_SYMBOL vmlinux 0xfc92ce1a agp_generic_insert_memory +EXPORT_SYMBOL vmlinux 0xfca18a85 devm_devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0xfca1fbc2 tcf_qevent_init +EXPORT_SYMBOL vmlinux 0xfcbabc52 unregister_framebuffer EXPORT_SYMBOL vmlinux 0xfcd1819a hdmi_spd_infoframe_check -EXPORT_SYMBOL vmlinux 0xfcd1f691 ioc_lookup_icq +EXPORT_SYMBOL vmlinux 0xfce5ac8c kmem_cache_alloc_node_trace EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq -EXPORT_SYMBOL vmlinux 0xfcedc539 tty_kref_put -EXPORT_SYMBOL vmlinux 0xfcf12ff7 devfreq_monitor_suspend -EXPORT_SYMBOL vmlinux 0xfd2094ca jbd2_fc_begin_commit -EXPORT_SYMBOL vmlinux 0xfd34d3ba bdi_put -EXPORT_SYMBOL vmlinux 0xfd3bd14f jbd2_journal_grab_journal_head -EXPORT_SYMBOL vmlinux 0xfd6611e2 insert_inode_locked4 -EXPORT_SYMBOL vmlinux 0xfd7e2655 netpoll_send_udp -EXPORT_SYMBOL vmlinux 0xfd818153 devfreq_unregister_opp_notifier -EXPORT_SYMBOL vmlinux 0xfd867298 blk_queue_io_min -EXPORT_SYMBOL vmlinux 0xfd872470 rproc_get_by_phandle +EXPORT_SYMBOL vmlinux 0xfd103f05 input_unregister_device +EXPORT_SYMBOL vmlinux 0xfd277e3e pci_get_slot +EXPORT_SYMBOL vmlinux 0xfd2e7567 tcp_stream_memory_free +EXPORT_SYMBOL vmlinux 0xfd500481 fs_param_is_fd +EXPORT_SYMBOL vmlinux 0xfd549f6c tty_write_room +EXPORT_SYMBOL vmlinux 0xfd5ea0b9 tty_insert_flip_string_flags +EXPORT_SYMBOL vmlinux 0xfd63447e migrate_page +EXPORT_SYMBOL vmlinux 0xfd649d7e mmc_gpiod_request_cd_irq +EXPORT_SYMBOL vmlinux 0xfd69fc1e netpoll_send_udp +EXPORT_SYMBOL vmlinux 0xfd9357bf jbd2_journal_extend EXPORT_SYMBOL vmlinux 0xfd93ee35 ioremap_wc EXPORT_SYMBOL vmlinux 0xfda9581f prandom_u32 +EXPORT_SYMBOL vmlinux 0xfdb2a0ad mmc_wait_for_req_done EXPORT_SYMBOL vmlinux 0xfdb6576f acpi_set_debugger_thread_id -EXPORT_SYMBOL vmlinux 0xfdca77a1 skb_unlink +EXPORT_SYMBOL vmlinux 0xfdbcd56c rt_mutex_base_init EXPORT_SYMBOL vmlinux 0xfdcb4ed3 acpi_os_get_line EXPORT_SYMBOL vmlinux 0xfdcc8a0e fb_find_best_display +EXPORT_SYMBOL vmlinux 0xfdcfa659 freeze_super EXPORT_SYMBOL vmlinux 0xfdd4216d pcibios_align_resource +EXPORT_SYMBOL vmlinux 0xfdd72404 path_has_submounts +EXPORT_SYMBOL vmlinux 0xfdd84edc reuseport_alloc +EXPORT_SYMBOL vmlinux 0xfde304e5 acpi_bus_get_status +EXPORT_SYMBOL vmlinux 0xfdf0f47e vlan_dev_vlan_id +EXPORT_SYMBOL vmlinux 0xfdf380f8 tty_port_destroy +EXPORT_SYMBOL vmlinux 0xfdf7ae5e nd_pfn_validate EXPORT_SYMBOL vmlinux 0xfdfb792f amd_iommu_pc_supported -EXPORT_SYMBOL vmlinux 0xfdfbcaa1 mmput_async EXPORT_SYMBOL vmlinux 0xfe029963 unregister_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xfe03ce57 set_create_files_as EXPORT_SYMBOL vmlinux 0xfe052363 ioread64_lo_hi -EXPORT_SYMBOL vmlinux 0xfe0e3091 udp_poll +EXPORT_SYMBOL vmlinux 0xfe0947cc inet_recvmsg EXPORT_SYMBOL vmlinux 0xfe1d2e94 key_create_or_update +EXPORT_SYMBOL vmlinux 0xfe1e1e36 scsi_eh_prep_cmnd +EXPORT_SYMBOL vmlinux 0xfe33abdf kthread_create_worker +EXPORT_SYMBOL vmlinux 0xfe472069 rproc_resource_cleanup EXPORT_SYMBOL vmlinux 0xfe487975 init_wait_entry -EXPORT_SYMBOL vmlinux 0xfe4b05f9 cdrom_get_media_event -EXPORT_SYMBOL vmlinux 0xfe528a2c unix_destruct_scm +EXPORT_SYMBOL vmlinux 0xfe4c9b58 vme_lm_request EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz -EXPORT_SYMBOL vmlinux 0xfe73ef88 nd_device_register -EXPORT_SYMBOL vmlinux 0xfe882c18 register_netdevice_notifier_net +EXPORT_SYMBOL vmlinux 0xfe6825c7 mem_cgroup_from_task +EXPORT_SYMBOL vmlinux 0xfe8120e0 neigh_update +EXPORT_SYMBOL vmlinux 0xfe88e0ca dcbnl_cee_notify EXPORT_SYMBOL vmlinux 0xfe8c61f0 _raw_read_lock EXPORT_SYMBOL vmlinux 0xfe916dc6 hex_dump_to_buffer EXPORT_SYMBOL vmlinux 0xfe9ebbbb acpi_osi_is_win8 -EXPORT_SYMBOL vmlinux 0xfea9620c proc_create_data -EXPORT_SYMBOL vmlinux 0xfeab0dc4 tcp_rcv_state_process +EXPORT_SYMBOL vmlinux 0xfea19995 is_nd_btt +EXPORT_SYMBOL vmlinux 0xfeb126bb debugfs_create_automount +EXPORT_SYMBOL vmlinux 0xfeb4d149 rproc_del EXPORT_SYMBOL vmlinux 0xfeb5d0aa verify_spi_info -EXPORT_SYMBOL vmlinux 0xfebfe718 fib_notifier_ops_register +EXPORT_SYMBOL vmlinux 0xfec0821b device_get_mac_address +EXPORT_SYMBOL vmlinux 0xfed33253 nexthop_set_hw_flags 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 0xfefb8ef9 fs_context_for_reconfigure -EXPORT_SYMBOL vmlinux 0xfefc626b jbd2_journal_lock_updates EXPORT_SYMBOL vmlinux 0xfefcb98e vme_dma_vme_attribute -EXPORT_SYMBOL vmlinux 0xff09ce04 mdiobus_free -EXPORT_SYMBOL vmlinux 0xff130ced kill_pid -EXPORT_SYMBOL vmlinux 0xff1b66c8 rtnetlink_put_metrics +EXPORT_SYMBOL vmlinux 0xff037a84 xfrm_replay_seqhi +EXPORT_SYMBOL vmlinux 0xff03e0f1 skb_abort_seq_read +EXPORT_SYMBOL vmlinux 0xff0a39c6 skb_recv_datagram +EXPORT_SYMBOL vmlinux 0xff125091 seq_open +EXPORT_SYMBOL vmlinux 0xff1aff36 inet_protos EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start +EXPORT_SYMBOL vmlinux 0xff222259 neigh_app_ns EXPORT_SYMBOL vmlinux 0xff282521 rfkill_register -EXPORT_SYMBOL vmlinux 0xff3c94bc __cgroup_bpf_run_filter_skb EXPORT_SYMBOL vmlinux 0xff52848a __SCT__tp_func_kmem_cache_free +EXPORT_SYMBOL vmlinux 0xff530090 mipi_dsi_dcs_set_page_address EXPORT_SYMBOL vmlinux 0xff6878cf fb_default_cmap -EXPORT_SYMBOL vmlinux 0xff7d199a __netlink_dump_start EXPORT_SYMBOL vmlinux 0xff87cd18 lockref_get_not_dead -EXPORT_SYMBOL vmlinux 0xff9bfe02 netdev_rx_csum_fault +EXPORT_SYMBOL vmlinux 0xff8cd1b3 tcp_ioctl +EXPORT_SYMBOL vmlinux 0xff9db05f mmc_cqe_recovery EXPORT_SYMBOL vmlinux 0xffb7c514 ida_free +EXPORT_SYMBOL vmlinux 0xffc2a384 netif_set_real_num_queues EXPORT_SYMBOL vmlinux 0xffc30c3a acpi_processor_power_init_bm_check EXPORT_SYMBOL vmlinux 0xffcc4ec7 tcp_bpf_bypass_getsockopt -EXPORT_SYMBOL vmlinux 0xffccc245 acpi_bus_get_status EXPORT_SYMBOL vmlinux 0xffcd7f49 iosf_mbi_punit_acquire -EXPORT_SYMBOL vmlinux 0xffd02e18 genlmsg_put -EXPORT_SYMBOL vmlinux 0xffda4ea1 xp_can_alloc +EXPORT_SYMBOL vmlinux 0xffd698c6 is_acpi_device_node +EXPORT_SYMBOL vmlinux 0xffd726e1 xp_set_rxq_info +EXPORT_SYMBOL vmlinux 0xffd79fd1 pcie_get_mps +EXPORT_SYMBOL vmlinux 0xffdd1a5f find_vma +EXPORT_SYMBOL vmlinux 0xffe89df4 cfb_imageblit +EXPORT_SYMBOL vmlinux 0xffea01b1 fscrypt_setup_filename EXPORT_SYMBOL vmlinux 0xffeedf6a delayed_work_timer_fn +EXPORT_SYMBOL vmlinux 0xfff0741d tcp_v4_md5_lookup EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-aesni-avx-x86_64 0x2c8b5dbf camellia_ecb_enc_16way EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-aesni-avx-x86_64 0x339c33c5 camellia_cbc_dec_16way EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-aesni-avx-x86_64 0x8b44ee75 camellia_ecb_dec_16way @@ -11784,407 +11796,406 @@ 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 0x021f7307 kvm_unmap_gfn -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x02a25582 gfn_to_page_many_atomic -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0422d91f kvm_lapic_find_highest_irr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x00b34e61 kvm_inject_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x036df4a8 kvm_handle_memory_failure +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x037876bb __SCK__tp_func_kvm_ple_window_update +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0482df4c __SCK__tp_func_kvm_fast_mmio EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x053614ec kvm_set_user_return_msr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x06249cbb kvm_mtrr_valid -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x06a45fd9 kvm_emulate_as_nop +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x06b2e3e4 kvm_arch_start_assignment EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x06cdc8d1 kvm_configure_mmu -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x07f14ddc __kvm_request_immediate_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x06d33a1f kvm_make_all_cpus_request EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0814dd11 __SCT__kvm_x86_tlb_flush_current -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x08818295 __tracepoint_kvm_exit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x099fc576 kvm_vcpu_gfn_to_hva +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0902c787 kvm_arch_no_poll +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x09e0f7ba kvm_vcpu_yield_to +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x09fa3882 kvm_mmu_gva_to_gpa_read +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0a598e40 kvm_vcpu_unmap +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0b0b73fd kvm_inject_pending_timer_irqs 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 0x0be60375 kvm_get_kvm 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 0x0d8f4740 kvm_mce_cap_supported -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0da2364d kvm_release_page_dirty -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0e02ca62 __SCK__tp_func_kvm_nested_vmexit_inject -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0e533191 __SCK__tp_func_kvm_page_fault -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0edd426d kvm_is_valid_cr4 -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0f209d56 kvm_queue_exception_p -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0f7c0c31 __SCK__tp_func_kvm_cr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1029f28e kvm_mmu_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0db2428b __SCK__tp_func_kvm_avic_unaccelerated_access +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0e226741 kvm_apic_update_apicv +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0fa40b5d kvm_vcpu_kick EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x114eb824 __traceiter_kvm_nested_vmexit_inject +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x122438fc kvm_emulate_mwait EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1235000a kvm_tsc_scaling_ratio_frac_bits -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x12433029 kvm_vcpu_write_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x12bc5fd5 kvm_emulate_halt EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x130fd155 supported_xss -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x13515c99 kvm_lapic_expired_hv_timer +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1351a8e9 kvm_hv_assist_page_enabled EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1412f042 __traceiter_kvm_ple_window_update +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x152bff1e __tracepoint_kvm_apicv_update_request EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x159b8d5e host_efer -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1640bc87 kvm_arch_no_poll -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x16a83d2b kvm_mmu_gva_to_gpa_read -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x17404c74 kvm_handle_page_fault -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x17a07726 kvm_init_shadow_npt_mmu EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x17f9cfe3 __traceiter_kvm_cr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1b08bac9 kvm_mmu_free_roots -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1bdc9a1e kvm_arch_has_assigned_device -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1c3ce0b8 __tracepoint_kvm_nested_vmexit_inject -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1c42c8ab __SCK__tp_func_kvm_invlpga +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x18e17f32 gfn_to_hva +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1a001d7c __SCK__tp_func_kvm_vmgexit_msr_protocol_enter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1b4944d3 kvm_read_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1b6bd6cf kvm_msr_allowed EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1cf65ffc kvm_max_guest_tsc_khz 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 0x1db1c372 enable_vmware_backdoor -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1dbe8163 __tracepoint_kvm_page_fault -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1ee31083 kvm_scale_tsc -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1f4af845 handle_ud -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1fb7dca6 __tracepoint_kvm_nested_vmenter_failed -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x20853f6a kvm_vcpu_read_guest_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x22ed314e kvm_vcpu_write_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1e1f0db1 __kvm_request_apicv_update +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1f12f24c __tracepoint_kvm_cr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1f3eb2ec kvm_lapic_reg_read +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1f6aaf2c kvm_put_kvm +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1f943ea7 kvm_vcpu_update_apicv +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x222beffc 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 0x23df79a7 __tracepoint_kvm_write_tsc_offset +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x24e11b38 __SCK__tp_func_kvm_entry EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2510fc6d __SCT__tp_func_kvm_nested_vmexit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2528384a hv_remote_flush_tlb -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x25abb44e kvm_update_dr7 EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x25c07225 __traceiter_kvm_vmgexit_msr_protocol_exit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x267cdccb __SCK__tp_func_kvm_pml_full +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x26abc9a1 __kvm_request_immediate_exit EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x26d4bb26 kvm_cpu_caps EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x27046576 kvm_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x27bdf5ed kvm_apic_update_irr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x28171238 kvm_get_dr EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x28411ed7 kvm_max_tsc_scaling_ratio -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x29157b37 kvm_queue_exception_e +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x295b4e66 __tracepoint_kvm_nested_vmrun EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2976b749 __gfn_to_pfn_memslot -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x29d8f8bf kvm_write_guest_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2c165ce9 kvm_emulate_instruction +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2977db43 __tracepoint_kvm_nested_intercepts +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x29ea2451 handle_ud +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2b819580 kvm_require_cpl +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2bf7797d kvm_valid_efer EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2d82cc24 kvm_spec_ctrl_test_value -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2ebcc645 gfn_to_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2f5d4c79 kvm_set_cr3 -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x308cd8b7 kvm_get_dr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x30c87e94 kvm_emulate_cpuid -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3534e1bb kvm_vcpu_mark_page_dirty -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3547b9d2 kvm_x86_ops -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x36e0ca5e kvm_cpuid -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x37008ecc gfn_to_pfn -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3776662f kvm_read_guest_offset_cached -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3852f2fe kvm_request_apicv_update -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x388d1fb9 kvm_set_cr0 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2e9e49d3 kvm_set_dr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2f16cfa8 __tracepoint_kvm_fast_mmio +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2fc3e653 kvm_complete_insn_gp +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3176b81b kvm_emulate_monitor +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x319ed225 kvm_lapic_hv_timer_in_use +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x32a8cdd4 kvm_fixup_and_inject_pf_error +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3302f100 kvm_lapic_expired_hv_timer +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x330fa206 kvm_release_page_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x34e20eea __traceiter_kvm_nested_vmexit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x35a862e0 kvm_gfn_to_hva_cache_init +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x35ca9e25 __SCK__tp_func_kvm_nested_intr_vmexit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3717bf3b kvm_vcpu_write_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x377f1cff kvm_init_shadow_npt_mmu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x37f88689 kvm_put_kvm_no_destroy EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x388e0e10 __SCT__tp_func_kvm_pi_irte_update -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3963aad2 __SCK__tp_func_kvm_vmgexit_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x38d7d35e kvm_requeue_exception +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x390e5d06 kvm_vcpu_gfn_to_hva +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x398662ad reprogram_counter EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x39fd83db halt_poll_ns_shrink +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3a10733d __SCK__tp_func_kvm_nested_vmrun EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3ab2794c kvm_find_user_return_msr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3b8c555f __tracepoint_kvm_nested_vmrun EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3ba6c794 gfn_to_pfn_memslot -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3c884f3a kvm_arch_unregister_noncoherent_dma -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3c898d81 kvm_vcpu_gfn_to_pfn_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3c23f3fe gfn_to_page_many_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3ecec52f kvm_arch_end_assignment EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3f510ff5 kvm_has_noapic_vcpu -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4025131f kvm_read_l1_tsc -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x40cc99bb kvm_emulate_rdmsr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x40f654d8 kvm_intr_is_single_vcpu -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x41c77a15 kvm_apic_has_interrupt -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x42738acb kvm_mmu_invlpg -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x450ec48a kvm_requeue_exception_e -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x45a2213d kvm_sev_es_mmio_read +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3fa641c2 __tracepoint_kvm_vmgexit_msr_protocol_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x428d892d kvm_inject_emulated_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x429bc7fe kvm_page_track_register_notifier +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4460ec41 kvm_write_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4483d169 __tracepoint_kvm_vmgexit_msr_protocol_enter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4565dc99 kvm_arch_has_assigned_device +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x45d62b17 kvm_apic_set_eoi_accelerated EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x45e80fdf __traceiter_kvm_pi_irte_update -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x46071cdd kvm_hv_assist_page_enabled 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 0x486d90b2 kvm_irq_has_notifier -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x48cb44d6 __tracepoint_kvm_cr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x491cfb01 __tracepoint_kvm_skinit EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4942be67 __SCT__tp_func_kvm_avic_incomplete_ipi -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x49502eb9 kvm_get_cr8 -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x49df8cf8 kvm_vcpu_on_spin +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x49d659ae kvm_emulate_hypercall +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4a0c8ebd __SCK__tp_func_kvm_nested_vmexit EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4a1c261b __SCT__tp_func_kvm_invlpga -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4b265ec3 __tracepoint_kvm_entry -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4c5159d0 kvm_read_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4af189f5 kvm_get_kvm +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4b11e343 kvm_cpu_has_interrupt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4c1d1506 kvm_is_visible_gfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4d1d42e6 kvm_vcpu_reset +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4d308eb3 kvm_emulate_wbinvd +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4d7534a3 kvm_is_valid_cr4 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4db55f75 kvm_arch_unregister_noncoherent_dma EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4e3fd1b4 kvm_release_pfn_clean -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4fab659b kvm_get_linear_rip -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x50755ed9 kvm_set_rflags -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x50ebfb38 kvm_get_apic_mode -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x529faa37 gfn_to_memslot -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x52d9dfaa kvm_deliver_exception_payload +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4ef1d467 kvm_deliver_exception_payload +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4f2d2d72 reprogram_fixed_counter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4f742934 kvm_update_cpuid_runtime +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x508759f3 __tracepoint_kvm_avic_unaccelerated_access +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x51a1be7e __SCK__kvm_x86_get_cs_db_l_bits +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5227c753 kvm_apicv_activated +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x53d23b05 kvm_fast_pio EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x53d9f927 __SCT__kvm_x86_get_cs_db_l_bits -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5461e797 kvm_vcpu_wake_up +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x53da8bae __tracepoint_kvm_ple_window_update +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x54cc6339 kvm_wait_lapic_expire EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x54cd466b __traceiter_kvm_apicv_update_request -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x54dcf54c __SCK__kvm_x86_cache_reg -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5521f37b kvm_vcpu_gfn_to_pfn -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5583ff88 reprogram_counter -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x55b1d688 kvm_slot_page_track_add_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x55e96d5f kvm_can_use_hv_timer -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x55f96795 kvm_get_kvm_safe -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x56db2f70 kvm_cpu_has_interrupt -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x57301685 kvm_apic_set_eoi_accelerated -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x57955744 kvm_init_mmu -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x58bb87fb __SCK__tp_func_kvm_inj_virq -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x593204e6 __SCK__tp_func_kvm_vmgexit_enter -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5932fc2a kvm_mmu_free_guest_mode_roots +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x564ed9ae kvm_mmu_new_pgd +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x56c1704f __SCK__tp_func_kvm_invlpga +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x579bbcbd kvm_vcpu_gfn_to_pfn_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5847d833 __tracepoint_kvm_nested_intr_vmexit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x588ce22e kvm_set_cr4 EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x59387ba3 __SCT__kvm_x86_cache_reg EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x59e640c0 halt_poll_ns -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5b9a8b94 kvm_emulate_wrmsr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5b585c95 hv_remote_flush_tlb 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 0x5c5b4be4 kvm_update_cpuid_runtime EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5d996b31 kvm_set_cpu_caps +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5f590dfc __tracepoint_kvm_page_fault EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5fb8848b halt_poll_ns_grow_start +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x600f2aa3 kvm_vcpu_on_spin +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x60fdcdf0 kvm_vcpu_is_visible_gfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x61088b45 kvm_queue_exception EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x616e6c95 __SCT__tp_func_kvm_exit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x61b969ab __SCK__tp_func_kvm_exit EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6243ac82 __kvm_apic_update_irr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x627b301e mark_page_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x62935aba __SCK__tp_func_kvm_vmgexit_msr_protocol_exit EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6303c089 kvm_calc_nested_tsc_offset EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x63270977 kvm_default_tsc_scaling_ratio -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6497298c kvm_emulate_ap_reset_hold -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x658f853f __SCK__tp_func_kvm_nested_vmexit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x65aa38bd handle_fastpath_set_msr_irqoff -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x65c3eefe kvm_task_switch -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6688056a reprogram_gp_counter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x649d76af kvm_mmu_reset_context +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x660fb56f kvm_get_apic_mode +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x66dad4ff kvm_slot_page_track_remove_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x66e8a85f kvm_write_guest_cached EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6756347e __traceiter_kvm_page_fault EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6892e3c3 kvm_set_pfn_accessed -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6a416b22 kvm_write_guest_virt_system +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6abad87d gfn_to_memslot EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6ada8f59 kvm_mmu_set_mmio_spte_mask +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6b20e4bc kvm_cpu_has_injectable_intr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6b55ca9e kvm_irq_has_notifier +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6b6cac51 kvm_apic_clear_irr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6bb1a772 kvm_write_guest_virt_system +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6bdd0c18 kvm_mmu_free_roots EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6becaded __SCT__tp_func_kvm_inj_virq +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6c2a4a1d kvm_read_guest_offset_cached EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6c95726c host_xss -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6cdaddf1 kvm_lapic_hv_timer_in_use -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6fc7467a kvm_cpu_has_injectable_intr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6ff6e1aa kvm_requeue_exception +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6cdfccd5 __tracepoint_kvm_avic_incomplete_ipi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6d73dc66 kvm_apic_update_ppr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6ec6266e x86_decode_emulated_instruction EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x70288943 __SCT__tp_func_kvm_nested_vmrun -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x70336808 __SCK__tp_func_kvm_avic_incomplete_ipi -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x703daeca __SCK__tp_func_kvm_pi_irte_update EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x709cd8cb kvm_spurious_fault -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x71b3da75 vcpu_put +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x712519fa kvm_set_rflags +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x719782d0 kvm_apic_match_dest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x71b42515 kvm_set_msr_common EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7263ae77 __traceiter_kvm_nested_vmrun -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x728f1bf2 kvm_cpu_get_interrupt -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x73d842e2 kvm_release_page_clean -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7436170d kvm_read_guest_virt -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7499d171 kvm_emulate_invd -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x749d4ac0 kvm_msr_allowed +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x72831408 __tracepoint_kvm_pi_irte_update +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7332793a __tracepoint_kvm_invlpga +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x73a4cfcd __SCK__tp_func_kvm_pi_irte_update +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x74ad4b10 handle_fastpath_set_msr_irqoff +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x74d92e65 kvm_emulate_cpuid +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x75059745 kvm_load_guest_xsave_state EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x752c2b00 __traceiter_kvm_fast_mmio -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7639d7ac kvm_put_kvm_no_destroy -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x76c3f16b kvm_apic_update_apicv -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7748c1a0 kvm_hv_get_assist_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x755bb450 __SCK__tp_func_kvm_nested_vmexit_inject +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x76b10f64 __SCK__tp_func_kvm_vmgexit_enter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x76e4325b kvm_apic_write_nodecode EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x778e30b9 __SCT__tp_func_kvm_cr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x79a3d946 __SCK__tp_func_kvm_nested_vmenter_failed -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7a023c81 __tracepoint_kvm_fast_mmio -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7aa9a36c kvm_init +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x793781a3 kvm_cpu_get_interrupt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x79cbdfae kvm_service_local_tlb_flush_requests +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x79d52656 __SCK__tp_func_kvm_nested_intercepts +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7a040e52 kvm_lapic_switch_to_sw_timer +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7a190156 kvm_queue_exception_e EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7afe324e halt_poll_ns_grow EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7c94c99a kvm_release_pfn_dirty -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7d76e9fb kvm_skip_emulated_instruction -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7ea4cc26 kvm_set_msr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7f539536 kvm_inject_nmi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7e03a932 kvm_slot_page_track_add_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7e3ee729 kvm_get_running_vcpu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7fb39843 __SCK__tp_func_kvm_exit EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7fe19488 kvm_add_user_return_msr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7fe20d97 kvm_emulate_monitor EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7ff2a104 __SCT__tp_func_kvm_page_fault -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x82cd5efc kvm_handle_memory_failure -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x82f7f85f kvm_load_guest_xsave_state -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x834fa08d __tracepoint_kvm_write_tsc_offset -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x835edbf1 __kvm_set_memory_region -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x83821095 kvm_set_memory_region -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8397d993 kvm_set_msi_irq -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x83e4293a kvm_find_cpuid_entry -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x85241883 kvm_load_host_xsave_state -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x86fc5d49 kvm_io_bus_write -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8767f4d8 kvm_emulate_instruction_from_buffer -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x87f0dfac kvm_map_gfn -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x88458e54 kvm_set_msr_common -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x88c1d2a1 __tracepoint_kvm_ple_window_update -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x89af41d6 __SCK__tp_func_kvm_nested_intercepts -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x89da8bd7 __SCK__tp_func_kvm_skinit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8a1d587f kvm_get_running_vcpu -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8a2e7b83 __SCK__tp_func_kvm_entry +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x81517912 __SCK__tp_func_kvm_pml_full +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8255d46e kvm_unmap_gfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8282c84e kvm_flush_remote_tlbs +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x835ad1ca kvm_read_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8407b99d kvm_set_cr0 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x845350d7 __SCK__tp_func_kvm_write_tsc_offset +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x84a5a621 kvm_set_memory_region +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8573b5c7 __SCK__tp_func_kvm_avic_ga_log +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x85cbb5b7 mark_page_dirty_in_slot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8699c5ec kvm_get_cr8 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x86e04216 kvm_update_dr7 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8866682b kvm_sev_es_string_io +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x88d404c8 kvm_emulate_ap_reset_hold +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8a1bcc25 __tracepoint_kvm_vmgexit_enter EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8a7fe54a __SCT__tp_func_kvm_vmgexit_enter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8a9c5224 kvm_handle_page_fault EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8b618aa6 __SCT__tp_func_kvm_nested_vmexit_inject +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8b6f49b7 kvm_mmu_page_fault EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8cc07ada gfn_to_hva_memslot -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8f0296d7 kvm_vcpu_block -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x909c4cfa __SCK__kvm_x86_tlb_flush_current -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x90d0d34c kvm_require_cpl +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8cecf419 kvm_vcpu_destroy +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8fe28f13 kvm_set_msi_irq +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x90755f82 kvm_scale_tsc EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x912a9286 __traceiter_kvm_nested_intr_vmexit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x913668a5 kvm_post_set_cr4 -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x914a4911 kvm_service_local_tlb_flush_requests -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9184af06 __SCK__tp_func_kvm_avic_ga_log +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x918c512d kvm_vcpu_mark_page_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x935f509f kvm_handle_invalid_op EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x93a3e40e __SCT__tp_func_kvm_ple_window_update EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x944882ed kvm_has_bus_lock_exit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x95bec89d hv_remote_flush_tlb_with_range -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x96e5b0be kvm_read_guest_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x970d4845 kvm_complete_insn_gp +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x95129821 kvm_find_cpuid_entry +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x95adfacc kvm_mtrr_valid +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x960cc3e1 __SCK__tp_func_kvm_apicv_update_request +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9866f4c2 __SCK__tp_func_kvm_avic_incomplete_ipi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x98a1d338 __x86_set_memory_region EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x98b40401 gfn_to_pfn_memslot_atomic -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x98f218a1 kvm_free_guest_fpu EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x98f9ad3b __SCT__tp_func_kvm_apicv_update_request +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9a98b5f5 kvm_vcpu_read_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9ad8d7d7 gfn_to_pfn_prot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9b4fb393 kvm_lapic_switch_to_hv_timer +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9c8e1909 __tracepoint_kvm_nested_vmenter_failed EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9cf59e7a allow_smaller_maxphyaddr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9d34d3f1 __SCK__tp_func_kvm_vmgexit_msr_protocol_exit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9d58f4e4 kvm_lapic_switch_to_sw_timer +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9d9988bb kvm_requeue_exception_e EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9e20b2bc __traceiter_kvm_avic_incomplete_ipi -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9f31625b kvm_get_apic_base +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9e99e6bf kvm_get_linear_rip EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9f68faa3 __traceiter_kvm_avic_unaccelerated_access -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9fedf86a kvm_vcpu_is_visible_gfn -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa019e735 kvm_arch_has_noncoherent_dma -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa0adf08c __traceiter_kvm_exit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa1b82a02 __kvm_request_apicv_update +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa1069bc5 kvm_intr_is_single_vcpu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa11b0fa8 __tracepoint_kvm_pml_full +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa12da165 __tracepoint_kvm_exit EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa1c4231f kvm_set_pfn_dirty -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa3634946 kvm_emulate_wbinvd -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa3ec0b96 kvm_emulate_xsetbv -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa4a004c3 kvm_handle_invpcid -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa57023e9 kvm_lapic_reg_write -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa57d81f0 kvm_require_dr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa25d3304 kvm_set_apic_base +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa2d6b8df __tracepoint_kvm_avic_ga_log +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa308b4f7 kvm_init +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa33455d5 kvm_io_bus_get_dev +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa5432285 kvm_inject_nmi EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa588ef67 __SCT__tp_func_kvm_nested_intercepts +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa5ca0080 kvm_emulate_invd EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa6a50230 __traceiter_kvm_nested_intercepts +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa6f6fac1 kvm_vcpu_deliver_sipi_vector EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa7022320 __traceiter_kvm_avic_ga_log -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa73f92e1 __tracepoint_kvm_invlpga -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa79fe7d2 kvm_is_visible_gfn -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa7eff873 kvm_page_track_unregister_notifier +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa7403229 kvm_get_rflags EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa80595a6 __traceiter_kvm_inj_virq -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa810671c kvm_emulate_rdpmc EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa84a2e73 __SCT__tp_func_kvm_write_tsc_offset -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa880ff29 kvm_queue_exception -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa8b22f05 kvm_emulate_hypercall -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa8de5b2b __tracepoint_kvm_avic_unaccelerated_access -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa8f658d3 kvm_sev_es_mmio_write -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xaa8b6632 kvm_vcpu_update_apicv -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xac279c09 __traceiter_kvm_nested_vmexit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xac9cd2a0 kvm_vcpu_reset -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xae07846e gfn_to_pfn_prot -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xae1bf059 kvm_lmsw -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xaf051d98 kvm_write_guest_cached -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xafaeac4f kvm_emulate_mwait -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xafdd719d kvm_apicv_activated -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb03b05c6 kvm_mmu_new_pgd -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb0a0c8ec kvm_apic_clear_irr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb0ce091f __tracepoint_kvm_pml_full -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb1b4cf55 kvm_write_guest -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb1f6c833 kvm_vcpu_is_reset_bsp -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb270256b kvm_inject_realmode_interrupt -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb2c04899 load_pdptrs -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb4c0e8fb kvm_set_apic_base -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb5235344 kvm_post_set_cr0 -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb76d98c0 kvm_inject_emulated_page_fault -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb8610c1f kvm_gfn_to_hva_cache_init -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb8ee01dc kvm_put_kvm +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xaa3b89d8 current_vcpu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xaa81fc5f kvm_init_mmu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xaacf3578 __traceiter_kvm_entry +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xab5dbca9 kvm_read_guest_cached +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xabbc8338 kvm_set_cr3 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xabf2a86c kvm_mmu_free_guest_mode_roots +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xaeb2efc9 kvm_arch_register_noncoherent_dma +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xaf409bca kvm_mtrr_get_guest_memory_type +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xafb808bf kvm_vcpu_read_guest_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xafd0fd21 kvm_vcpu_is_reset_bsp +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb07294f4 kvm_read_guest_virt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb10fd1b8 __SCK__tp_func_kvm_nested_vmenter_failed +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb1bd8e02 kvm_get_cs_db_l_bits +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb418e16f kvm_read_l1_tsc +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb479fd37 kvm_task_switch +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb5aac210 kvm_lapic_reg_write +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb673efa9 kvm_map_gfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb6a64dfc __tracepoint_kvm_nested_vmexit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb6ce2153 kvm_lmsw EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb96e9aa1 __traceiter_kvm_skinit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xba83cb8d kvm_page_track_register_notifier -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbb62d886 kvm_set_cr4 -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbb918b60 kvm_arch_end_assignment -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbd0ed1d3 kvm_fixup_and_inject_pf_error -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbdd6bb42 __SCK__kvm_x86_get_cs_db_l_bits -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbde77e2e kvm_read_guest_cached -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbe3d0d95 kvm_vcpu_read_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb97e731a kvm_write_guest_offset_cached +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb9aa3c72 kvm_require_dr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbcf95440 kvm_read_guest_page_mmu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbf1f4778 __SCK__kvm_x86_tlb_flush_current EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc071e99f __SCT__tp_func_kvm_entry -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc224d186 __tracepoint_kvm_avic_ga_log -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc2badfca kvm_arch_register_noncoherent_dma -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc445d45c current_vcpu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc0766769 kvm_debugfs_dir +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc087b297 kvm_clear_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc0ea3828 kvm_emulate_as_nop +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc13f83bf kvm_inject_realmode_interrupt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc2c7481d kvm_emulate_instruction +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc2ee7457 kvm_hv_get_assist_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc3a0e86d kvm_vcpu_gfn_to_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc407afaa kvm_set_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc5eabc29 hv_remote_flush_tlb_with_range EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc60d7d0c __traceiter_kvm_pml_full -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc6d9784d kvm_get_msr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc7951323 vcpu_load -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc7fad6e7 kvm_mtrr_get_guest_memory_type -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc7ff431a __tracepoint_kvm_vmgexit_msr_protocol_exit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc823defb __tracepoint_kvm_nested_intr_vmexit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc8667718 kvm_mmu_gva_to_gpa_write -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc93e9a1d kvm_vcpu_read_guest_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc64b4842 kvm_arch_has_noncoherent_dma +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc65f92b5 __tracepoint_kvm_vmgexit_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc71852f4 kvm_io_bus_write +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc775e9ac kvm_handle_invpcid +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc77a5039 __traceiter_kvm_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc8b75e92 gfn_to_page EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc96d35f4 report_ignored_msrs -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcb8cb984 __traceiter_kvm_entry -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcc73d28d __tracepoint_kvm_vmgexit_msr_protocol_enter -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcda5c27b kvm_inject_page_fault -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xce09522f __tracepoint_kvm_inj_virq +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc99c99a0 kvm_lapic_find_highest_irr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcc584b09 load_pdptrs +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcc650d93 kvm_vcpu_wake_up +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcc6f6339 kvm_get_kvm_safe EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xce576a13 enable_apicv -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcea74077 kvm_get_cs_db_l_bits -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcebbb9f1 kvm_vcpu_gfn_to_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xce82b359 kvm_cpuid +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xced444d5 kvm_vcpu_block +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcede1c72 kvm_mmu_gva_to_gpa_write +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd000361c kvm_write_guest_page EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd0459e67 kvm_has_tsc_control +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd0950559 vcpu_load EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd09da48b __SCT__tp_func_kvm_nested_intr_vmexit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd12d91a1 __SCK__tp_func_kvm_msr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd2a4c151 kvm_get_msr_common -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd35998c0 kvm_vcpu_unmap -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd488898c __tracepoint_kvm_vmgexit_exit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd50c9336 __tracepoint_kvm_vmgexit_enter -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd6677601 __SCK__tp_func_kvm_nested_vmrun -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd67f3db8 kvm_vcpu_kick -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd7756962 kvm_apic_match_dest -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd7d9d817 kvm_init_shadow_ept_mmu -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd8274a80 kvm_get_rflags -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd8826762 __SCK__tp_func_kvm_nested_intr_vmexit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd907a427 kvm_set_dr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd97d589d kvm_handle_invalid_op -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xda629dd1 kvm_arch_start_assignment -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdaf8b46e kvm_write_guest_offset_cached +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd1e17ed4 kvm_get_apic_base +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd3e6e96a kvm_emulate_rdpmc +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd49913b9 kvm_vcpu_read_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd4fa2a00 kvm_request_apicv_update +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd514afee __SCK__tp_func_kvm_vmgexit_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd5c72eb3 __SCK__tp_func_kvm_skinit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd7075aa5 kvm_sev_es_mmio_write +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd723bffe __SCK__tp_func_kvm_cr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd80aec36 kvm_is_linear_rip +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd8440b2e kvm_post_set_cr0 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd8cff1c9 kvm_init_shadow_ept_mmu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xda2e1133 __SCK__tp_func_kvm_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdb1c804c kvm_apic_has_interrupt EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdc7369fe __traceiter_kvm_msr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xde56055e kvm_vcpu_yield_to -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xde7f899d kvm_apic_write_nodecode -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xde99ff60 kvm_vcpu_halt EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdf026a18 __traceiter_kvm_vmgexit_exit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe01d9e49 kvm_lapic_reg_read -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe0a7c5ae reprogram_fixed_counter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdfdc5498 __tracepoint_kvm_inj_virq +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe01825c9 kvm_vcpu_write_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe0e55d01 kvm_release_page_clean EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe0e786a7 __SCT__tp_func_kvm_skinit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe10e8f37 kvm_apic_update_ppr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe4239786 kvm_set_cr8 -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe477e69d kvm_lapic_switch_to_hv_timer -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe5765e9f kvm_valid_efer -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe58d3c48 kvm_wait_lapic_expire -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe8927692 kvm_clear_guest -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe937c3c1 x86_decode_emulated_instruction +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe1470e87 mark_page_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe48cfb6c kvm_can_use_hv_timer +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe60a2e1d kvm_get_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe61da469 gfn_to_pfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe66008ba kvm_set_cr8 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe7e098ed kvm_sev_es_mmio_read +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe852bde5 kvm_page_track_unregister_notifier EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe93dfc8c __SCT__tp_func_kvm_nested_vmenter_failed -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe94c4b16 kvm_inject_pending_timer_irqs +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe94d6610 kvm_queue_exception_p EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe9674a16 supported_xcr0 -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe9b112ef __tracepoint_kvm_nested_vmexit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe9cd188f kvm_make_all_cpus_request -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xea129f8f kvm_mmu_reset_context -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xea22fa4e kvm_is_linear_rip -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xea28fcb9 kvm_io_bus_get_dev EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xea5cda33 __SCT__tp_func_kvm_fast_mmio -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xeb096bb0 kvm_vcpu_map -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xed55bdd3 __SCK__tp_func_kvm_apicv_update_request -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xedfa30f9 kvm_read_guest_page_mmu -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xee09bb14 kvm_fast_pio -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xef045132 __tracepoint_kvm_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xeabadb61 kvm_load_host_xsave_state +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xec2168e7 vcpu_put +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xec401138 kvm_emulate_rdmsr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xed4e2664 kvm_emulate_instruction_from_buffer +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xedb9eca0 kvm_skip_emulated_instruction EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xef14fd98 kvm_calc_nested_tsc_multiplier -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xef950db9 kvm_lapic_set_eoi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xef726894 kvm_emulate_wrmsr EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf084b57d __SCT__tp_func_kvm_msr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf1356990 kvm_apic_update_irr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf1a79447 __SCK__tp_func_kvm_write_tsc_offset -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf1d2769d kvm_slot_page_track_remove_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf20b6bd3 kvm_emulate_halt -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf215cbc0 __SCK__tp_func_kvm_avic_unaccelerated_access -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf26c824c __tracepoint_kvm_nested_intercepts +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf0b5b9e6 kvm_lapic_set_eoi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf0f57ed2 kvm_emulate_xsetbv EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf2df48f3 __SCT__tp_func_kvm_pml_full -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf302113b __SCK__tp_func_kvm_ple_window_update +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf3152a95 kvm_post_set_cr4 EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf32dff97 __SCT__tp_func_kvm_avic_unaccelerated_access EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf4668dfb __traceiter_kvm_vmgexit_enter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf53ac6d5 kvm_mmu_invlpg EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf54e2886 __SCT__tp_func_kvm_vmgexit_msr_protocol_enter -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf6624289 __tracepoint_kvm_pi_irte_update -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf9f0e251 __tracepoint_kvm_avic_incomplete_ipi -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfb2a9899 __SCK__tp_func_kvm_fast_mmio -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfbf122ed __SCK__tp_func_kvm_vmgexit_msr_protocol_enter -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfc1b935c file_is_kvm -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfc54ea90 __x86_set_memory_region -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfd8b38b8 gfn_to_hva -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfe1ec498 kvm_sev_es_string_io -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfe4af439 kvm_vcpu_destroy -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfedb8924 kvm_debugfs_dir -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xff6b9709 __tracepoint_kvm_apicv_update_request -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xffa82567 kvm_vcpu_deliver_sipi_vector -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xffc7c262 __tracepoint_kvm_skinit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xffd883db kvm_flush_remote_tlbs -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xffff9440 mark_page_dirty_in_slot -EXPORT_SYMBOL_GPL crypto/af_alg 0x27abdffc af_alg_sendmsg -EXPORT_SYMBOL_GPL crypto/af_alg 0x2a74f149 af_alg_pull_tsgl -EXPORT_SYMBOL_GPL crypto/af_alg 0x40b5da79 af_alg_release_parent -EXPORT_SYMBOL_GPL crypto/af_alg 0x40cb229c af_alg_wait_for_data -EXPORT_SYMBOL_GPL crypto/af_alg 0x608c2cdf af_alg_free_sg -EXPORT_SYMBOL_GPL crypto/af_alg 0x627ef0f7 af_alg_sendpage -EXPORT_SYMBOL_GPL crypto/af_alg 0x71dae561 af_alg_release -EXPORT_SYMBOL_GPL crypto/af_alg 0x76c4261d af_alg_get_rsgl -EXPORT_SYMBOL_GPL crypto/af_alg 0x8c2a53e8 af_alg_unregister_type -EXPORT_SYMBOL_GPL crypto/af_alg 0x93168cf3 af_alg_accept -EXPORT_SYMBOL_GPL crypto/af_alg 0xa00f970b af_alg_free_resources -EXPORT_SYMBOL_GPL crypto/af_alg 0xaad002dd af_alg_wmem_wakeup -EXPORT_SYMBOL_GPL crypto/af_alg 0xb619afb8 af_alg_make_sg -EXPORT_SYMBOL_GPL crypto/af_alg 0xd5a1949a af_alg_poll -EXPORT_SYMBOL_GPL crypto/af_alg 0xe26aea21 af_alg_register_type -EXPORT_SYMBOL_GPL crypto/af_alg 0xe4256ccc af_alg_count_tsgl -EXPORT_SYMBOL_GPL crypto/af_alg 0xf27a5889 af_alg_alloc_areq -EXPORT_SYMBOL_GPL crypto/af_alg 0xf5f3502a af_alg_async_cb -EXPORT_SYMBOL_GPL crypto/asymmetric_keys/asym_tpm 0x4caddbeb asym_tpm_subtype +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf63200fc __tracepoint_kvm_entry +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf6750f86 kvm_x86_ops +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf67c88af __tracepoint_kvm_nested_vmexit_inject +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf815bf8d __SCK__tp_func_kvm_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf8a1702b kvm_vcpu_map +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf9359f62 __kvm_set_memory_region +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf9365a0f file_is_kvm +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfa1395f7 __SCK__kvm_x86_cache_reg +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfb527b5f kvm_get_msr_common +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfbf9d79f kvm_vcpu_halt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfcde1667 reprogram_gp_counter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xff89f2de __tracepoint_kvm_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xff962222 __SCK__tp_func_kvm_inj_virq +EXPORT_SYMBOL_GPL crypto/af_alg 0x1ea37266 af_alg_register_type +EXPORT_SYMBOL_GPL crypto/af_alg 0x2d1ffe7d af_alg_release +EXPORT_SYMBOL_GPL crypto/af_alg 0x2f3c62bd af_alg_async_cb +EXPORT_SYMBOL_GPL crypto/af_alg 0x40260cf0 af_alg_wmem_wakeup +EXPORT_SYMBOL_GPL crypto/af_alg 0x52fa9974 af_alg_wait_for_data +EXPORT_SYMBOL_GPL crypto/af_alg 0x5bbee703 af_alg_poll +EXPORT_SYMBOL_GPL crypto/af_alg 0x74bc8160 af_alg_pull_tsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0x7d756855 af_alg_get_rsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0x7d7feb2d af_alg_make_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x81c7508d af_alg_count_tsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0x91d6819a af_alg_sendmsg +EXPORT_SYMBOL_GPL crypto/af_alg 0x96f6b277 af_alg_free_resources +EXPORT_SYMBOL_GPL crypto/af_alg 0xa314a6db af_alg_accept +EXPORT_SYMBOL_GPL crypto/af_alg 0xabaa903e af_alg_alloc_areq +EXPORT_SYMBOL_GPL crypto/af_alg 0xbc3dc235 af_alg_unregister_type +EXPORT_SYMBOL_GPL crypto/af_alg 0xce9c627c af_alg_free_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0xdb4343e1 af_alg_sendpage +EXPORT_SYMBOL_GPL crypto/af_alg 0xddd5f90f af_alg_release_parent +EXPORT_SYMBOL_GPL crypto/asymmetric_keys/asym_tpm 0x6a8699fb asym_tpm_subtype EXPORT_SYMBOL_GPL crypto/asymmetric_keys/asym_tpm 0x7430f97c tpm_key_create -EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0x5a2a33ff async_memcpy -EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x92f7cd79 async_gen_syndrome -EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0xc72a4d99 async_syndrome_val -EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x3560f43b async_raid6_datap_recov -EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0xe88e1836 async_raid6_2data_recov -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x176002e7 async_tx_submit -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x898a4a06 async_trigger_callback -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x9122f758 async_tx_quiesce -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xecfdc452 __async_tx_find_channel -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x0467dec6 async_xor_val -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x181329d0 async_xor -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x9bb1ce9c async_xor_val_offs -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xaa7c4995 async_xor_offs +EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0x28190230 async_memcpy +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x5406f19f async_syndrome_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0xd6ef1fcb async_gen_syndrome +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x7f36c34f async_raid6_2data_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0xd3ac4073 async_raid6_datap_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x02981aa2 async_trigger_callback +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x8a8d2b7e async_tx_submit +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x969e2eb9 async_tx_quiesce +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xb083824e __async_tx_find_channel +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x3c394840 async_xor_offs +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x3ef848c0 async_xor_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x608a4b54 async_xor +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xd951d3d7 async_xor_val_offs EXPORT_SYMBOL_GPL crypto/authenc 0x2479193e crypto_authenc_extractkeys -EXPORT_SYMBOL_GPL crypto/blowfish_common 0x23a54986 blowfish_setkey +EXPORT_SYMBOL_GPL crypto/blowfish_common 0x211ab8da blowfish_setkey EXPORT_SYMBOL_GPL crypto/cast5_generic 0x188d9d26 __cast5_decrypt EXPORT_SYMBOL_GPL crypto/cast5_generic 0x3b2dce97 cast5_setkey EXPORT_SYMBOL_GPL crypto/cast5_generic 0xef81a4af __cast5_encrypt @@ -12196,32 +12207,32 @@ 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 0x06bc225f cryptd_free_skcipher -EXPORT_SYMBOL_GPL crypto/cryptd 0x255c18df cryptd_alloc_skcipher -EXPORT_SYMBOL_GPL crypto/cryptd 0x38e04b8c cryptd_alloc_ahash -EXPORT_SYMBOL_GPL crypto/cryptd 0x3df1b885 cryptd_skcipher_child -EXPORT_SYMBOL_GPL crypto/cryptd 0x3f51bb6f cryptd_free_aead -EXPORT_SYMBOL_GPL crypto/cryptd 0x3f7ecff9 cryptd_aead_queued -EXPORT_SYMBOL_GPL crypto/cryptd 0x52eb5a1c cryptd_skcipher_queued -EXPORT_SYMBOL_GPL crypto/cryptd 0x71522226 cryptd_alloc_aead -EXPORT_SYMBOL_GPL crypto/cryptd 0x756e575f cryptd_aead_child -EXPORT_SYMBOL_GPL crypto/cryptd 0x7f8504f3 cryptd_shash_desc -EXPORT_SYMBOL_GPL crypto/cryptd 0x89af1489 cryptd_ahash_child -EXPORT_SYMBOL_GPL crypto/cryptd 0x9fed62cf cryptd_free_ahash -EXPORT_SYMBOL_GPL crypto/cryptd 0xc2fedeb7 cryptd_ahash_queued -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x08159314 crypto_engine_stop -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x36898342 crypto_transfer_skcipher_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x3e83db5f crypto_finalize_aead_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x42e6a139 crypto_transfer_aead_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x51a5c388 crypto_engine_exit -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x61491491 crypto_engine_start -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x7b7aac4b crypto_finalize_akcipher_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x8c8b3307 crypto_finalize_skcipher_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xa171b0c0 crypto_engine_alloc_init -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xa601f96d crypto_engine_alloc_init_and_set -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xc098d773 crypto_finalize_hash_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xe929f817 crypto_transfer_hash_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xec9ca629 crypto_transfer_akcipher_request_to_engine +EXPORT_SYMBOL_GPL crypto/cryptd 0x004de8eb cryptd_alloc_skcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0x114299d0 cryptd_skcipher_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0x3ecb77d5 cryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0x59808d3e cryptd_aead_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x69ba566b cryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x74637fd3 cryptd_free_skcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0x7973ede9 cryptd_skcipher_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x7de913b8 cryptd_ahash_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0xad5d7959 cryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0xcacbad55 cryptd_aead_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0xdf0bcaeb cryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/cryptd 0xe836597e cryptd_alloc_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0xe98e6381 cryptd_free_aead +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x05339fc8 crypto_engine_start +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x6010b3b7 crypto_engine_alloc_init +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x7be2c2a3 crypto_finalize_skcipher_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x7e56f2a3 crypto_transfer_hash_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x800e583d crypto_engine_alloc_init_and_set +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x80250362 crypto_transfer_skcipher_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x954d7d80 crypto_finalize_hash_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x98c5940d crypto_engine_exit +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xcaf86b01 crypto_finalize_akcipher_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xd7dd386c crypto_finalize_aead_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xe3600173 crypto_transfer_aead_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xf19ed6f3 crypto_engine_stop +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xf5795e1a crypto_transfer_akcipher_request_to_engine EXPORT_SYMBOL_GPL crypto/crypto_simd 0x3f1e318f simd_register_aeads_compat EXPORT_SYMBOL_GPL crypto/crypto_simd 0x504cb053 simd_aead_create_compat EXPORT_SYMBOL_GPL crypto/crypto_simd 0x561b206c simd_unregister_aeads @@ -12244,11 +12255,11 @@ EXPORT_SYMBOL_GPL crypto/twofish_common 0xe22b7787 __twofish_setkey 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 0x5f5fa5ff acpi_nfit_ctl -EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x7ae49da0 acpi_nfit_init -EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x8f56d6ba __acpi_nvdimm_notify -EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0xc7a60497 __acpi_nfit_notify -EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0xeaeb7e18 acpi_nfit_desc_init +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x5530d026 __acpi_nfit_notify +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x794a4355 acpi_nfit_init +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0xaf1b7316 acpi_nfit_desc_init +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0xc8315b30 acpi_nfit_ctl +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0xe9fa9490 __acpi_nvdimm_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 @@ -12256,48 +12267,48 @@ 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 0x037b62ac ahci_stop_engine -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x0af08293 ahci_do_hardreset -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x17b7206d ahci_init_controller -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x22b09c22 ahci_fill_cmd_slot -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x2cad54c8 ahci_host_activate -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x3057d931 ahci_error_handler -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x43b3b62e ahci_dev_classify -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x5fa9a133 ahci_start_engine -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x618e36dc ahci_reset_em -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x67352c30 ahci_set_em_messages -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x76728652 ahci_qc_issue -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x818d2d76 ahci_handle_port_intr -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xa5533e39 ahci_port_resume -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xa935e6a0 ahci_check_ready -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xaa95fe46 ahci_print_info -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xab0d9b10 ahci_ops -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xba2b43e2 ahci_do_softreset -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xcca0d0c4 ahci_reset_controller -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xd777d539 ahci_kick_engine -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xe096d866 ahci_save_initial_config -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xe14d12b3 ahci_sdev_attrs -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xe3d153a2 ahci_start_fis_rx +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x02597a0c ahci_start_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x0994d028 ahci_reset_em +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x143a19cc ahci_do_hardreset +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x1795e8fa ahci_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x1b168fb3 ahci_error_handler +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x1ebf6d85 ahci_host_activate +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x25a0a034 ahci_sdev_attrs +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x3bfaaceb ahci_pmp_retry_srst_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x40c153b5 ahci_handle_port_intr +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x40f2ddf6 ahci_print_info +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x4332d255 ahci_start_fis_rx +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x4b3f8515 ahci_stop_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x6b275407 ahci_port_resume +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x7fcbb1d4 ahci_reset_controller +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x8eae7ced ahci_shost_attrs +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x92b55728 ahci_do_softreset +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xa2210296 ahci_fill_cmd_slot +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xba54d9c4 ahci_qc_issue +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xc97423d5 ahci_kick_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xd517d757 ahci_save_initial_config +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xd792a66d ahci_check_ready +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xdd218edc ahci_dev_classify +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xe7718067 ahci_set_em_messages +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xe9f587d7 ahci_init_controller EXPORT_SYMBOL_GPL drivers/ata/libahci 0xea50dad3 ahci_ignore_sss -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xf9c8b6fe ahci_pmp_retry_srst_ops -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xfdb687dc ahci_shost_attrs -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x25f219ba ahci_platform_init_host -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x4376a580 ahci_platform_enable_regulators -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x5969a844 ahci_platform_enable_phys -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x704528f9 ahci_platform_disable_phys -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x7aa73036 ahci_platform_resume -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x8308d827 ahci_platform_suspend -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x89bc7850 ahci_platform_disable_regulators -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x90e1d442 ahci_platform_disable_resources -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x992369e2 ahci_platform_ops -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xa656251f ahci_platform_suspend_host -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xd726b8a3 ahci_platform_enable_clks -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xddc301db ahci_platform_shutdown -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xdf44dd7c ahci_platform_get_resources -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xe0fe8eb3 ahci_platform_enable_resources -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xfe0a381e ahci_platform_disable_clks -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xff47b253 ahci_platform_resume_host -EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0x14fdbaf5 __pata_platform_probe +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x03c5c0fc ahci_platform_enable_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x0ca11545 ahci_platform_suspend +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x11060078 ahci_platform_disable_clks +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x24bfd810 ahci_platform_disable_regulators +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x39262685 ahci_platform_init_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x50d2a405 ahci_platform_enable_clks +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x5a6b61fa ahci_platform_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x8be59af9 ahci_platform_shutdown +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x8f10a86a ahci_platform_get_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xa36c8978 ahci_platform_disable_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xad4b94c7 ahci_platform_enable_phys +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xc5f01c60 ahci_platform_resume +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xceca3660 ahci_platform_enable_regulators +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xec69b6ed ahci_platform_suspend_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xec9f30ba ahci_platform_disable_phys +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xef067193 ahci_platform_resume_host +EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0xe8afdbc4 __pata_platform_probe EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0x02ff9464 cfag12864b_isinited EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0x0ecb2e5d cfag12864b_disable EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0x305dc3c6 cfag12864b_isenabled @@ -12331,247 +12342,247 @@ EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xbf4774db ks0108_writecontrol EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xedde6df2 ks0108_page EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xfee8ef7b ks0108_address -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-i3c 0x02eaffca __devm_regmap_init_i3c -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0x478da3a3 __devm_regmap_init_sccb -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0x514c9270 __regmap_init_sccb -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw 0x2fc947d8 __regmap_init_sdw -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw 0xc64078f2 __devm_regmap_init_sdw -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw-mbq 0x2e253677 __regmap_init_sdw_mbq -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw-mbq 0xfd0aa25e __devm_regmap_init_sdw_mbq -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0x2efd3c06 __devm_regmap_init_slimbus -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0xcdd22c76 __regmap_init_slimbus -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spi-avmm 0xa402f792 __devm_regmap_init_spi_avmm -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spi-avmm 0xaf79c462 __regmap_init_spi_avmm -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x190a2bed __devm_regmap_init_spmi_base -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x293a3f1a __regmap_init_spmi_base -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x35e395ec __regmap_init_spmi_ext -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xb0088b03 __devm_regmap_init_spmi_ext -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0x5107d1ff __devm_regmap_init_w1 -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0x85e6c0c3 __regmap_init_w1 -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x0fe107ff bcma_chipco_b_mii_write -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x159533f2 __bcma_driver_register -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x1dbfaeb3 bcma_core_disable -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x240d6bda bcma_chipco_get_alp_clock -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x35d73eaa bcma_core_set_clockmode -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x3b833e48 bcma_chipco_pll_write -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x4c131f06 bcma_chipco_regctl_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x52a5d928 bcma_chipco_pll_read -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x6f9193aa bcma_core_pci_power_save -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x760ff339 bcma_host_pci_up -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x85ef48c9 bcma_find_core_unit -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x87065b09 bcma_pmu_get_bus_clock -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x8770b5e2 bcma_host_pci_irq_ctl -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x9686d78e bcma_host_pci_down -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa76779f5 bcma_core_is_enabled -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xad98ae2b bcma_driver_unregister -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc9e0b8e3 bcma_core_pll_ctl -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc9e26ed3 bcma_chipco_gpio_outen -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd96c9ddf bcma_chipco_gpio_control -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xdca698e6 bcma_chipco_pll_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe4d5fd48 bcma_core_enable -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xed31376c bcma_pmu_spuravoid_pllupdate -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xee6ca062 bcma_chipco_gpio_out -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xfcd13270 bcma_chipco_chipctl_maskset -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x1e66afaf btbcm_initialize -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x1fbd2970 btbcm_write_pcm_int_params -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x3ab215ae btbcm_setup_apple -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x48ab0fdc btbcm_setup_patchram -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x6706e3f8 btbcm_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x73a08a06 btbcm_finalize -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x797d0508 btbcm_read_pcm_int_params -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xc250b9a4 btbcm_check_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x49d03ac0 btintel_load_ddc_config -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x4bc31eea btintel_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x5d83cdc1 btintel_exit_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x620bac3c btintel_check_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x76f8f4d3 btintel_version_info -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x817cde41 btintel_read_boot_params -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x902ba403 btintel_bootup -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x90944df3 btintel_enter_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x9b765fea btintel_set_event_mask_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xa1fd675b btintel_secure_send_result -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xad4426ea btintel_configure_setup -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xb21e6e96 btintel_set_diag -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xb6fba388 btintel_send_intel_reset -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xe0653585 btintel_download_firmware -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xea2ad036 btintel_regmap_init -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xf2f20a63 btintel_read_version -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x108c65c0 btmrvl_send_hscfg_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x15c13cb0 btmrvl_interrupt -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x1ca23b5e btmrvl_pscan_window_reporting -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x25f6f9fb btmrvl_remove_card -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x2dc79057 btmrvl_process_event -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x5d5a3b09 btmrvl_register_hdev -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x5daf0387 btmrvl_check_evtpkt -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xb377be20 btmrvl_enable_hs -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xc052d855 btmrvl_send_module_cfg_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xc46c6825 btmrvl_add_card -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xce1382a0 btmrvl_enable_ps -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x16e31764 qca_send_pre_shutdown_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x504386d6 qca_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x5b440384 qca_read_soc_version -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x5f44d48a qca_uart_setup -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xf598e34d qca_set_bdaddr_rome -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x33902b95 btrtl_shutdown_realtek -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x3ca772de btrtl_set_quirks -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x410cc6e8 btrtl_setup_realtek -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x475e256b btrtl_download_firmware -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x651fced2 btrtl_get_uart_settings -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xa24dc1ae btrtl_initialize +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-i3c 0x8c24228f __devm_regmap_init_i3c +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0x5ffbfc78 __regmap_init_sccb +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0xf296ad49 __devm_regmap_init_sccb +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw 0x33e41a1e __regmap_init_sdw +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw 0x4f903a18 __devm_regmap_init_sdw +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw-mbq 0x228aa437 __devm_regmap_init_sdw_mbq +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw-mbq 0x2d4c3cee __regmap_init_sdw_mbq +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0x307a6076 __regmap_init_slimbus +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0x894648ab __devm_regmap_init_slimbus +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spi-avmm 0x5d200311 __regmap_init_spi_avmm +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spi-avmm 0xa26d6dde __devm_regmap_init_spi_avmm +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x0407938e __devm_regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x107a550b __devm_regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x4e4ebde9 __regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xc3e6e8de __regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0x9299976c __regmap_init_w1 +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0xaf844558 __devm_regmap_init_w1 +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x0be374e8 bcma_core_set_clockmode +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x0c161488 bcma_chipco_gpio_out +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x25734d8e bcma_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x25b429a3 bcma_chipco_get_alp_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x3454fb4a bcma_chipco_pll_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x39e45294 bcma_chipco_pll_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x3afd7f91 bcma_chipco_b_mii_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x47d5eaa8 bcma_chipco_gpio_outen +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x5502f0fa bcma_chipco_chipctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x553ad765 bcma_core_enable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x691c083f bcma_core_is_enabled +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x69f435a4 bcma_driver_unregister +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x720b0379 __bcma_driver_register +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x8d87b961 bcma_pmu_get_bus_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa0c335c5 bcma_host_pci_up +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa6292ee4 bcma_core_disable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xaed5dcc4 bcma_core_pci_power_save +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc290e428 bcma_chipco_pll_read +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc3ca27a9 bcma_find_core_unit +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xdd7f1149 bcma_host_pci_down +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xdfc9427b bcma_chipco_gpio_control +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe9a59f3b bcma_host_pci_irq_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xea4412e6 bcma_core_pll_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xfd552adf bcma_chipco_regctl_maskset +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x16fd3484 btbcm_setup_patchram +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x36baefde btbcm_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x4e00cfa3 btbcm_finalize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x5be48a94 btbcm_write_pcm_int_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x64a17172 btbcm_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x7f8c7298 btbcm_setup_apple +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x81841327 btbcm_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x98c8b2ac btbcm_read_pcm_int_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x00693359 btintel_set_event_mask_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x0357415b btintel_version_info +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x0adb68ee btintel_set_diag +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x11a818b1 btintel_load_ddc_config +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x3ef48b26 btintel_regmap_init +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x4c170095 btintel_read_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x685138ec btintel_secure_send_result +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x850a04a8 btintel_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x89da4998 btintel_read_boot_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x9e11e15e btintel_exit_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xa085dd81 btintel_download_firmware +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xb0fca6af btintel_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xe59ce63c btintel_bootup +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xed33a923 btintel_enter_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xf4848b4e btintel_send_intel_reset +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xf70f921c btintel_configure_setup +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x022d3f87 btmrvl_enable_hs +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x18b250ea btmrvl_process_event +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x33e7fa1a btmrvl_send_module_cfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x54a960ae btmrvl_add_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xc3386820 btmrvl_send_hscfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xd038f258 btmrvl_register_hdev +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xd1839918 btmrvl_pscan_window_reporting +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xebc86a82 btmrvl_interrupt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xf262920c btmrvl_check_evtpkt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xf55299a5 btmrvl_enable_ps +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xf94dfbed btmrvl_remove_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x3a12a05e qca_send_pre_shutdown_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x3f8f2054 qca_set_bdaddr_rome +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x4ead1238 qca_uart_setup +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x5aafd622 qca_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x8c193cc9 qca_read_soc_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x10491f94 btrtl_get_uart_settings +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x2f61ef54 btrtl_set_quirks +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x4feaebfa btrtl_download_firmware +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x722e50b2 btrtl_setup_realtek EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xaf78f260 btrtl_free -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x0b3b0825 hci_uart_register_device -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x33149bf9 h4_recv_buf -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x6bdb73bf hci_uart_unregister_device -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0xdd37eee4 hci_uart_tx_wakeup -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x053804ec mhi_queue_is_full -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x0e768d8d mhi_free_controller -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x195c81cc mhi_prepare_for_power_up -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x1eecfd20 mhi_unprepare_after_power_down -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x2066d6cf mhi_device_put -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x2194dbc8 mhi_register_controller -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x232fc239 mhi_driver_unregister -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x259b27e9 mhi_download_rddm_image -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x39d048a8 mhi_queue_skb -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x3a041040 mhi_async_power_up -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x3a2de498 mhi_get_exec_env -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x4cba3e36 mhi_poll -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x4ddfe1b0 mhi_pm_resume -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x574e21af __mhi_driver_register -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x61ce5eb5 mhi_unregister_controller -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x696e5bc0 mhi_pm_suspend -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x73be0eb8 mhi_unprepare_from_transfer -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x78c73a5c mhi_get_free_desc_count -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x81b46f43 mhi_prepare_for_transfer -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x96149020 mhi_soc_reset -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x96d71066 mhi_pm_resume_force -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x9e72d98d mhi_notify -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x9f46f494 mhi_alloc_controller -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xa94d2a2e mhi_queue_dma -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xa985cdc2 mhi_force_rddm_mode -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xb5b78936 mhi_power_down -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xc29401b1 mhi_queue_buf -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xcd475c0b mhi_get_mhi_state -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xcff58ed0 mhi_device_get_sync -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xd03fa27a mhi_device_get -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x00531398 comedi_buf_read_n_available -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x012af7f3 comedi_set_hw_dev +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xba8fad8a btrtl_shutdown_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xd65f821a btrtl_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x7d346052 hci_uart_register_device +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0xcbe6399a hci_uart_tx_wakeup +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0xf084b542 h4_recv_buf +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0xfd29c3a3 hci_uart_unregister_device +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x0fa0fd3b mhi_get_exec_env +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x1552dcaa mhi_download_rddm_image +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x1ab1f17e mhi_device_get_sync +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x1d590440 mhi_free_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x27d3f544 mhi_unprepare_after_power_down +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x31fea773 mhi_get_mhi_state +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x36e26fae mhi_pm_resume +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x3d02fe23 mhi_pm_resume_force +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x3e5da1f6 mhi_unregister_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x401215f6 mhi_queue_buf +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x581a15d0 mhi_async_power_up +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x5a6fcee0 mhi_queue_dma +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x5aec7296 mhi_queue_skb +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x68c43683 mhi_soc_reset +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x6fd5c7bc __mhi_driver_register +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x7e69c102 mhi_notify +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x825c76c4 mhi_alloc_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x86e2b4ec mhi_power_down +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x8a271562 mhi_queue_is_full +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x9416434b mhi_prepare_for_power_up +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x9a373d02 mhi_driver_unregister +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xa21e448c mhi_device_get +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xa64f9dec mhi_poll +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xa735da32 mhi_device_put +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xb0d55001 mhi_unprepare_from_transfer +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xbe311236 mhi_pm_suspend +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xd646c908 mhi_get_free_desc_count +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xe18ca1ac mhi_prepare_for_transfer +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xeb8781c1 mhi_register_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xf45e9085 mhi_force_rddm_mode +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x06fdcc13 comedi_is_subdevice_running +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x092009f1 comedi_buf_read_alloc EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x0cd330f4 range_unknown -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x1486bbb4 comedi_is_subdevice_running -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x15909fae comedi_request_region -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x19e5fc5b comedi_event +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x0dcfdef5 comedi_bytes_per_scan_cmd +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x129a9e30 comedi_buf_write_samples +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x1db11162 comedi_handle_events +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x1f38e674 comedi_load_firmware EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x21102f87 range_0_32mA -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x229e8e6b comedi_buf_read_free -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x2a6a3a30 comedi_timeout -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x2eedb411 comedi_inc_scan_progress +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x21e606d1 comedi_alloc_subdev_readback +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x24a6331f comedi_nscans_left +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x254b27d1 comedi_set_hw_dev +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x291019e6 comedi_readback_insn_read +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x2aa2b86e comedi_dio_insn_config EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x2f0ad9d3 range_bipolar5 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x31e93419 comedi_buf_write_free -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x3d47add9 comedi_alloc_subdevices -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x3e97489f comedi_handle_events -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x40e1311b comedi_driver_unregister +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x2f7c8967 comedi_dev_put +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x37aeb5e7 comedi_buf_write_alloc +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x38a2a798 comedi_buf_read_free +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x39dbd4a0 comedi_dio_update_state +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x40bea39c comedi_buf_read_samples EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4236eaaf range_4_20mA -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4b845871 comedi_buf_write_samples -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4f504134 comedi_set_spriv_auto_free EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4fe634f3 range_bipolar2_5 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x537f42d5 comedi_dio_update_state -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x5a3e81e0 comedi_nsamples_left -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x6532b8d9 __comedi_request_region -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x6aee9353 comedi_check_chanlist -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x70f55479 comedi_readback_insn_read -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x72ddfa26 comedi_buf_read_alloc -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x731c3678 comedi_bytes_per_scan_cmd +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x5d7f94ea comedi_nsamples_left +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x6755f1b9 comedi_dev_get_from_minor +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x72e8d04a comedi_bytes_per_scan +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x79af5c6d comedi_driver_unregister EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x8113872c range_unipolar10 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x889f4efe comedi_dev_put -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x96699044 comedi_buf_read_samples -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x9f3cc1e2 comedi_auto_unconfig -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xa3323ed7 comedi_nscans_left -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xa95de98e comedi_alloc_devpriv -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xac335ae5 comedi_legacy_detach -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xb16d689e comedi_dio_insn_config -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xb4a3805f comedi_bytes_per_scan +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x854cd343 comedi_check_chanlist +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x9d422b1f comedi_inc_scan_progress +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x9efd66dc comedi_alloc_subdevices +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xa57cea2d comedi_auto_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xadf269f0 comedi_timeout EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xb679cebc range_0_20mA EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xbb52fc7f range_bipolar10 EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xbdbe75c6 range_unipolar2_5 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xc8b38b8f comedi_driver_register -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xcbad64d0 comedi_auto_config -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xccc59d8c comedi_buf_write_alloc -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xdb17059a comedi_alloc_subdev_readback +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xcac372cc comedi_legacy_detach +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xd364264c comedi_alloc_devpriv +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xd699e46a comedi_event +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xd75e02d9 comedi_alloc_spriv +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xd8126c2c comedi_auto_unconfig +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xd8696a7f comedi_buf_write_free EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xdb2044b2 range_unipolar5 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xdcf9e201 comedi_dev_get_from_minor -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xdfaa9233 comedi_alloc_spriv -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xf6710c24 comedi_load_firmware -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x2e2138d5 comedi_pci_auto_unconfig -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x33f25012 comedi_pci_disable -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x53c1f813 comedi_pci_detach -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x666deaac comedi_pci_enable -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x98db3189 comedi_pci_auto_config -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xc710695a comedi_to_pci_dev -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xd982334f comedi_pci_driver_unregister -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xde4b27c3 comedi_pci_driver_register -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pcmcia 0x054364c2 comedi_to_pcmcia_dev -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pcmcia 0x1fdc0e3a comedi_pcmcia_enable -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pcmcia 0x2ecc3cab comedi_pcmcia_disable -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pcmcia 0x5973581b comedi_pcmcia_driver_unregister -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pcmcia 0x8f78442b comedi_pcmcia_driver_register -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pcmcia 0x9a674638 comedi_pcmcia_auto_config -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pcmcia 0xee35592e comedi_pcmcia_auto_unconfig -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x1afba398 comedi_usb_auto_unconfig -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x1e7c54a4 comedi_usb_driver_register -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x4e84e834 comedi_to_usb_interface -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x80033679 comedi_usb_auto_config -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0xaf1c9883 comedi_usb_driver_unregister -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0xe3bc7b58 comedi_to_usb_dev +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xe1ddea53 comedi_set_spriv_auto_free +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xe4a80868 comedi_request_region +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xec08c22c comedi_driver_register +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xf31208ca comedi_buf_read_n_available +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xf4655490 __comedi_request_region +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x0ea6f6a9 comedi_pci_disable +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x79f902e8 comedi_pci_detach +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x7cfd704e comedi_to_pci_dev +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x855309da comedi_pci_auto_unconfig +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x9756bb27 comedi_pci_driver_unregister +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x9d9d70ad comedi_pci_enable +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xce6da91d comedi_pci_driver_register +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xf0479284 comedi_pci_auto_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pcmcia 0x0f057cbc comedi_to_pcmcia_dev +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pcmcia 0x0f749d39 comedi_pcmcia_disable +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pcmcia 0x19dc6582 comedi_pcmcia_enable +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pcmcia 0x47162db1 comedi_pcmcia_driver_unregister +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pcmcia 0x824324d9 comedi_pcmcia_auto_unconfig +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pcmcia 0x8551beb4 comedi_pcmcia_auto_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pcmcia 0xd4ea1bc7 comedi_pcmcia_driver_register +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x21d99bdc comedi_usb_auto_unconfig +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x2a805ef4 comedi_usb_auto_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x3d210783 comedi_usb_driver_register +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x9c2d2d28 comedi_to_usb_interface +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0xcdd8d380 comedi_to_usb_dev +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0xebc08042 comedi_usb_driver_unregister +EXPORT_SYMBOL_GPL drivers/comedi/drivers/addi_watchdog 0x390597e4 addi_watchdog_init EXPORT_SYMBOL_GPL drivers/comedi/drivers/addi_watchdog 0x79f4a6cf addi_watchdog_reset -EXPORT_SYMBOL_GPL drivers/comedi/drivers/addi_watchdog 0xb7f35c61 addi_watchdog_init -EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_dio200_common 0x077985ce amplc_dio200_common_attach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_dio200_common 0x434f75ed amplc_dio200_set_enhance -EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_pc236_common 0xc9e06d27 amplc_pc236_common_attach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x2fdbe1a9 comedi_8254_subdevice_init -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x365aa6f9 comedi_8254_read -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x398addf7 comedi_8254_mm_init -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x3eb94352 comedi_8254_init -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x549f51ed comedi_8254_pacer_enable -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x605ee8df comedi_8254_set_busy -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x69a635c0 comedi_8254_ns_to_timer -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x7c8ca5b3 comedi_8254_update_divisors -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xa267e44f comedi_8254_cascade_ns_to_timer -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xa946beed comedi_8254_load -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xdef38890 comedi_8254_status -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xf2ec77a3 comedi_8254_set_mode -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xff01c96c comedi_8254_write -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0xab0e6463 subdev_8255_regbase -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0xc874f6b7 subdev_8255_mm_init -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0xd4254409 subdev_8255_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_dio200_common 0x3a9f0a3b amplc_dio200_common_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_dio200_common 0x67726b28 amplc_dio200_set_enhance +EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_pc236_common 0xe78c88c6 amplc_pc236_common_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x1caa659f comedi_8254_cascade_ns_to_timer +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x26eba24d comedi_8254_mm_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x45b93002 comedi_8254_read +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x46ae1c84 comedi_8254_pacer_enable +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x67c4c43e comedi_8254_subdevice_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x7b9936e5 comedi_8254_set_busy +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x99b97435 comedi_8254_ns_to_timer +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xbad54273 comedi_8254_update_divisors +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xbc0ad768 comedi_8254_status +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xcfa006aa comedi_8254_load +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xe09557a0 comedi_8254_set_mode +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xe23595d2 comedi_8254_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xfb370377 comedi_8254_write +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0x324c14d5 subdev_8255_regbase +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0x5e4caf2d subdev_8255_mm_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0xb7eeb7ea subdev_8255_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_isadma 0x0fe1e7b5 comedi_isadma_alloc EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_isadma 0x12fba874 comedi_isadma_disable -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_isadma 0x1df5298f comedi_isadma_alloc -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_isadma 0x20f7fda5 comedi_isadma_free -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_isadma 0x47b7dc84 comedi_isadma_poll EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_isadma 0x4a17474e comedi_isadma_disable_on_sample +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_isadma 0x97388b47 comedi_isadma_poll EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_isadma 0xca784d4b comedi_isadma_set_mode +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_isadma 0xe56f842c comedi_isadma_free EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_isadma 0xea878430 comedi_isadma_program -EXPORT_SYMBOL_GPL drivers/comedi/drivers/das08 0xc28f7be5 das08_common_attach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x006fd044 mite_dma_disarm -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x0cfa0fd0 mite_prep_dma -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x1b610990 mite_request_channel_in_range -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x21c34a3b mite_done -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x2c19ac45 mite_free_ring -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x2eaeddbb mite_buf_change -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x63b068f9 mite_release_channel -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x6ea29a98 mite_detach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x94dcc28f mite_ack_linkc -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xb41df7fd mite_sync_dma -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xc8c2b0a6 mite_dma_arm -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xec44077f mite_attach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xf08c26ca mite_init_ring_descriptors -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xf2b7ab31 mite_alloc_ring -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xf6677408 mite_request_channel -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xf6d02310 mite_bytes_in_transit -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_common 0x956d9d7d labpc_common_attach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_common 0xc4902e84 labpc_common_detach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_isadma 0x621a7534 labpc_free_dma_chan -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_isadma 0x7174f338 labpc_init_dma_chan -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_isadma 0x8617e607 labpc_drain_dma -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_isadma 0xa0f50104 labpc_handle_dma_status -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_isadma 0xce8f76a5 labpc_setup_dma +EXPORT_SYMBOL_GPL drivers/comedi/drivers/das08 0x28a5d8b8 das08_common_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x0437ee04 mite_request_channel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x24ff10da mite_prep_dma +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x272767c5 mite_init_ring_descriptors +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x2c7e01e2 mite_alloc_ring +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x31c25947 mite_detach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x3a90675a mite_sync_dma +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x3b70137f mite_buf_change +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x45e9b7a1 mite_done +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x48ab232f mite_free_ring +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x674c2521 mite_dma_arm +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x85088a7b mite_release_channel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x93f43803 mite_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x9a136192 mite_dma_disarm +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xb866d536 mite_bytes_in_transit +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xd3f75590 mite_ack_linkc +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xe02aa3ff mite_request_channel_in_range +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_common 0x05f38a93 labpc_common_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_common 0xe16393a8 labpc_common_detach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_isadma 0x0b60b57e labpc_init_dma_chan +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_isadma 0x0cd6ba22 labpc_free_dma_chan +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_isadma 0x7f069cf5 labpc_setup_dma +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_isadma 0xad3b27dc labpc_drain_dma +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_isadma 0xf56fc4d4 labpc_handle_dma_status EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x076bc308 ni_find_route_source EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x0921123e ni_lookup_route_register EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x1facf7f8 ni_is_cmd_dest @@ -12582,934 +12593,931 @@ 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 0x138785c1 ni_gpct_device_construct -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x242cd1e8 ni_tio_init_counter -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x254a1a9e ni_tio_set_bits -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x25cdf32a ni_tio_unset_routing -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x2972a407 ni_gpct_device_destroy -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x3d12ec27 ni_tio_get_soft_copy -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x48f63ba2 ni_tio_read -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x5e46df31 ni_tio_set_routing -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x64f83f68 ni_tio_write -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x8109dab3 ni_tio_arm -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x837e7274 ni_tio_insn_write -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xaa1eb833 ni_tio_set_gate_src_raw -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xf60e8dff ni_tio_get_routing -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xfa66b4c8 ni_tio_insn_read -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xfbf61993 ni_tio_set_gate_src -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xfca5926b ni_tio_insn_config -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x5eb071b8 ni_tio_cmdtest -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x6a364196 ni_tio_cancel -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x7f133112 ni_tio_cmd -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xcffd18f0 ni_tio_set_mite_channel -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xe2d2c95e ni_tio_handle_interrupt -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xf5a83d65 ni_tio_acknowledge -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x017f0538 comedi_find_subdevice_by_type -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x3c1482ba comedi_dio_config -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x74ee3acc comedi_close -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x9677a155 comedi_dio_get_config -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xa42f2976 comedi_open -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xaeda4c21 comedi_dio_bitfield2 -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xf14ad51e comedi_get_n_channels +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x09d35ff5 ni_tio_init_counter +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x19fbd776 ni_gpct_device_construct +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x1d7f73b5 ni_gpct_device_destroy +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x1f71fef5 ni_tio_insn_write +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x20337579 ni_tio_set_routing +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x2beb49e6 ni_tio_arm +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x324eed07 ni_tio_write +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x8374dfc4 ni_tio_read +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x8c920a5a ni_tio_set_bits +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x8df81452 ni_tio_get_routing +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x95acaf89 ni_tio_unset_routing +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xa80aaa81 ni_tio_get_soft_copy +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xae51aba0 ni_tio_insn_read +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xbd645018 ni_tio_insn_config +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xc2e4c691 ni_tio_set_gate_src +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xc762f997 ni_tio_set_gate_src_raw +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x2583007b ni_tio_handle_interrupt +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x550890ad ni_tio_cancel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x8bd978f7 ni_tio_acknowledge +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xd4c30a25 ni_tio_set_mite_channel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xe231c142 ni_tio_cmd +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xe3bb9d9d ni_tio_cmdtest +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x1eb4f44f comedi_open +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x3fd4210b comedi_get_n_channels +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x96723850 comedi_close +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xac7b756f comedi_dio_bitfield2 +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xacb04be9 comedi_dio_get_config +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xb0a8fb23 comedi_dio_config +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xe53b34ed comedi_find_subdevice_by_type EXPORT_SYMBOL_GPL drivers/counter/counter 0x01aab51b counter_count_direction_str -EXPORT_SYMBOL_GPL drivers/counter/counter 0x258b6d9a counter_count_enum_available_read -EXPORT_SYMBOL_GPL drivers/counter/counter 0x25c09f7e counter_count_enum_write -EXPORT_SYMBOL_GPL drivers/counter/counter 0x3dfac2af counter_count_enum_read -EXPORT_SYMBOL_GPL drivers/counter/counter 0x406ee5b0 devm_counter_register -EXPORT_SYMBOL_GPL drivers/counter/counter 0x4c5dad78 counter_device_enum_available_read -EXPORT_SYMBOL_GPL drivers/counter/counter 0x551a6614 devm_counter_unregister -EXPORT_SYMBOL_GPL drivers/counter/counter 0x7b4ceddd counter_signal_enum_available_read -EXPORT_SYMBOL_GPL drivers/counter/counter 0x8c1d0b83 counter_register -EXPORT_SYMBOL_GPL drivers/counter/counter 0xc1cb60c6 counter_signal_enum_read -EXPORT_SYMBOL_GPL drivers/counter/counter 0xc438da64 counter_device_enum_write -EXPORT_SYMBOL_GPL drivers/counter/counter 0xc876ac62 counter_unregister -EXPORT_SYMBOL_GPL drivers/counter/counter 0xd0d57e04 counter_device_enum_read -EXPORT_SYMBOL_GPL drivers/counter/counter 0xe1677a9f counter_signal_enum_write +EXPORT_SYMBOL_GPL drivers/counter/counter 0x0afb635d counter_signal_enum_write +EXPORT_SYMBOL_GPL drivers/counter/counter 0x0ebecbe3 counter_count_enum_available_read +EXPORT_SYMBOL_GPL drivers/counter/counter 0x1517343a counter_count_enum_write +EXPORT_SYMBOL_GPL drivers/counter/counter 0x1ff11bd7 counter_device_enum_write +EXPORT_SYMBOL_GPL drivers/counter/counter 0x32efe6cb counter_device_enum_available_read +EXPORT_SYMBOL_GPL drivers/counter/counter 0x65fe25f3 devm_counter_register +EXPORT_SYMBOL_GPL drivers/counter/counter 0x735a4a66 counter_count_enum_read +EXPORT_SYMBOL_GPL drivers/counter/counter 0x84a4dded devm_counter_unregister +EXPORT_SYMBOL_GPL drivers/counter/counter 0xa93555f4 counter_signal_enum_read +EXPORT_SYMBOL_GPL drivers/counter/counter 0xb02e8e12 counter_register +EXPORT_SYMBOL_GPL drivers/counter/counter 0xe2b28a47 counter_device_enum_read EXPORT_SYMBOL_GPL drivers/counter/counter 0xee526d0f counter_count_mode_str +EXPORT_SYMBOL_GPL drivers/counter/counter 0xef0d34a2 counter_unregister +EXPORT_SYMBOL_GPL drivers/counter/counter 0xff23cbb2 counter_signal_enum_available_read 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 0x1b287275 ccp_enqueue_cmd EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x2e6a6147 psp_copy_user_blob EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x3a1a3979 ccp_version EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x3e059f28 sev_guest_activate EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x4073e924 sev_guest_deactivate -EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x5522976c sev_issue_cmd_external_user EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x843d6541 sev_guest_decommission EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x8fac14a2 sev_guest_df_flush +EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x900225b8 sev_issue_cmd_external_user EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x91722dce sev_platform_status +EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x9afc3ac8 ccp_enqueue_cmd EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0xd02e197f sev_platform_init -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x01de3bc8 qat_crypto_dev_config -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x06c00ead adf_dev_in_use -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x0855b8f1 adf_disable_sriov -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x0a128931 adf_reset_sbr -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x0bd23e76 adf_devmgr_in_reset -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x1127a6a7 adf_dev_get -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x137e4d8c adf_reset_flr -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x252e2c58 adf_vf2pf_notify_init -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x2b8e5df1 adf_gen2_cfg_iov_thds +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x0103ae83 adf_cfg_dev_add +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x155e45fe adf_init_arb +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x2345aaf0 adf_devmgr_pci_to_accel_dev +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x29c0a1c8 adf_gen2_get_accel_cap 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 0x2d9b7e4b adf_dev_stop -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x31f57acf adf_cleanup_etr_data -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x338cb10c adf_cfg_dev_add -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x362753ba adf_dev_put -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x3b9edf86 adf_send_admin_init -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x3bd091d8 adf_exit_admin_comms +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x2d405d1b adf_exit_arb +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x336eb26a adf_init_etr_data +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x35e704ee adf_disable_aer +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x3b93f045 adf_dev_get +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x3bdd23df adf_devmgr_add_dev +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x3bf8afc1 adf_init_admin_comms +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x3cb33119 adf_dev_put 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 0x47598350 adf_disable_aer -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x4d39a64e adf_devmgr_add_dev -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x663ec650 adf_isr_resource_free -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x669c9957 adf_flush_vf_wq -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x6f29b8b3 adf_devmgr_update_class_index -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x711c087f adf_enable_vf2pf_comms -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x748e1dd8 adf_init_etr_data -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x77d9911c adf_devmgr_rm_dev -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x79790e11 adf_gen2_get_accel_cap -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x84a74464 adf_dev_init -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x89efb8a4 adf_disable_pf2vf_interrupts -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x906af9ce adf_cfg_add_key_value_param -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x959db4aa adf_vf_isr_resource_alloc -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x9c562303 adf_enable_aer -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x9d193107 adf_devmgr_pci_to_accel_dev -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xb4e32432 adf_cfg_section_add -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xbe636c4b adf_init_arb -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xbec48290 adf_isr_resource_alloc -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xbfa5d0a0 adf_dev_started -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xc08813cb adf_gen4_set_ssm_wdtimer -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xc1cf3156 adf_exit_arb -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xc3bc151a adf_dev_start -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xc3f02fca adf_gen2_set_ssm_wdtimer +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x3e72be37 adf_devmgr_rm_dev +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x4abd5a2e adf_dev_started +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x5ff4a132 adf_dev_in_use +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7133474c adf_gen4_set_ssm_wdtimer +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x749f9f85 adf_reset_flr +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x87a5e387 adf_vf2pf_notify_shutdown +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x88f03e29 adf_send_admin_init +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x8d699b67 adf_flush_vf_wq +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x94a2c4ff adf_vf2pf_notify_init +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x97060863 adf_gen2_cfg_iov_thds +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x9ad44d3a adf_dev_shutdown +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x9ee414de adf_reset_sbr +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x9fcd0686 adf_disable_pf2vf_interrupts +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xa3fde837 adf_dev_stop +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xa4d30c8d adf_exit_admin_comms +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xb08d1543 adf_cfg_dev_remove +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xb283950b adf_vf_isr_resource_alloc +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xb70400c8 qat_crypto_dev_config +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xbc9f4981 adf_gen2_set_ssm_wdtimer +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xbdffa25b adf_vf_isr_resource_free +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xc36e6954 adf_devmgr_update_class_index 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 0xc50cbf8f adf_devmgr_in_reset +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xc6b763bf adf_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 0xcc4bed23 adf_vf_isr_resource_free 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 0xda1d3908 adf_init_admin_comms -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xe4e3679b adf_sriov_configure -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xec0b1ed9 adf_dev_shutdown -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xf57c31cc adf_vf2pf_notify_shutdown -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xf7392ec6 adf_cfg_dev_remove -EXPORT_SYMBOL_GPL drivers/dax/device_dax 0xe2cdb596 dev_dax_probe -EXPORT_SYMBOL_GPL drivers/dax/pmem/dax_pmem_core 0x1cbaadf8 __dax_pmem_probe +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xd9b11ec5 adf_disable_sriov +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xdb0f5196 adf_enable_vf2pf_comms +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xddebab3e adf_dev_start +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xed338153 adf_cfg_section_add +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xf13a23c1 adf_enable_aer +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xf19574d3 adf_cfg_add_key_value_param +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xf7be959d adf_isr_resource_alloc +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xf96a9fd7 adf_sriov_configure +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xfbed1657 adf_cleanup_etr_data +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xffe7b55a adf_dev_init +EXPORT_SYMBOL_GPL drivers/dax/device_dax 0x044d81ff dev_dax_probe +EXPORT_SYMBOL_GPL drivers/dax/pmem/dax_pmem_core 0x01703906 __dax_pmem_probe EXPORT_SYMBOL_GPL drivers/dca/dca 0x01a33ab9 dca_unregister_notify -EXPORT_SYMBOL_GPL drivers/dca/dca 0x0b788004 free_dca_provider -EXPORT_SYMBOL_GPL drivers/dca/dca 0x25d0063c alloc_dca_provider -EXPORT_SYMBOL_GPL drivers/dca/dca 0x4f051d15 dca3_get_tag -EXPORT_SYMBOL_GPL drivers/dca/dca 0x6188155d dca_add_requester -EXPORT_SYMBOL_GPL drivers/dca/dca 0x62f19fa9 dca_remove_requester +EXPORT_SYMBOL_GPL drivers/dca/dca 0x488d450d dca_remove_requester +EXPORT_SYMBOL_GPL drivers/dca/dca 0x5ccae4b4 dca3_get_tag +EXPORT_SYMBOL_GPL drivers/dca/dca 0x74cc224e dca_add_requester +EXPORT_SYMBOL_GPL drivers/dca/dca 0x962872bb alloc_dca_provider +EXPORT_SYMBOL_GPL drivers/dca/dca 0xa2130ea2 unregister_dca_provider +EXPORT_SYMBOL_GPL drivers/dca/dca 0xa83b3b95 register_dca_provider EXPORT_SYMBOL_GPL drivers/dca/dca 0xaa634427 dca_get_tag EXPORT_SYMBOL_GPL drivers/dca/dca 0xac34ecec dca_register_notify -EXPORT_SYMBOL_GPL drivers/dca/dca 0xd4b83dc4 register_dca_provider -EXPORT_SYMBOL_GPL drivers/dca/dca 0xdc7155f2 unregister_dca_provider -EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0x7868e32d dw_edma_remove -EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0x939abddb dw_edma_probe -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x1adb82b6 dw_dma_acpi_controller_register -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x2f2d903c dw_dma_remove -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x4439f1f4 dw_dma_probe -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x49433607 dw_dma_filter -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x7eb04f0b do_dw_dma_disable -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x970b1390 idma32_dma_probe -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xce9b9b17 do_dw_dma_enable -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xd90ae5ed idma32_dma_remove -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xf4ca201c dw_dma_acpi_controller_free -EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x235018a4 hsu_dma_get_status -EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x6bed91bf hsu_dma_probe -EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0xb737fd4b hsu_dma_do_irq -EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0xe9fa3eb7 hsu_dma_remove -EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0x05b4c339 hidma_mgmt_init_sys -EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0x9f647af9 hidma_mgmt_setup +EXPORT_SYMBOL_GPL drivers/dca/dca 0xb892c964 free_dca_provider +EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0x454120f3 dw_edma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0xe3e64be7 dw_edma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x193f0a8b do_dw_dma_enable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x453102fa dw_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x63621e6e dw_dma_acpi_controller_free +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x826ffb5e dw_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x89ffb6fa dw_dma_acpi_controller_register +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xa712dc63 idma32_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xc9a03db9 dw_dma_filter +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xefc940f6 do_dw_dma_disable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xf521ff39 idma32_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x0cace266 hsu_dma_do_irq +EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x14ad2e84 hsu_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x9307c67b hsu_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0xb88937de hsu_dma_get_status +EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0x25b117a9 hidma_mgmt_setup +EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0xbf7c205c 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/edac/igen6_edac 0x3c4385ca ibecc_err_unregister_notifer +EXPORT_SYMBOL_GPL drivers/edac/igen6_edac 0x7f961efb ibecc_err_register_notifer EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0xe86fb5c7 fw_card_release -EXPORT_SYMBOL_GPL drivers/fpga/altera-pr-ip-core 0x1236bf85 alt_pr_register -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x072cdaf1 dfl_fpga_cdev_assign_port -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x12a8472e dfl_fpga_enum_info_free -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x1beeca22 __dfl_fpga_cdev_find_port -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x24713321 dfl_fpga_cdev_release_port -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x453de757 dfl_fpga_port_ops_add -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x4aae63b7 dfl_feature_ioctl_set_irq -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x57997647 dfl_fpga_enum_info_alloc -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x5b5b939f dfl_fpga_feature_devs_remove -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x6fedbb16 dfl_fpga_enum_info_add_irq -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x75a3107c dfl_fpga_set_irq_triggers -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x83887176 dfl_fpga_dev_feature_init -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x862fafa2 dfl_fpga_dev_ops_register -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x97583f08 dfl_fpga_enum_info_add_dfl -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xaf48cde6 dfl_fpga_port_ops_put -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xaffaf3e7 dfl_fpga_dev_feature_uinit -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xb77fa3cb dfl_fpga_cdev_config_ports_pf -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xbb1596c2 dfl_fpga_check_port_id -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xca203916 dfl_fpga_dev_ops_unregister -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xd16f0015 dfl_fpga_cdev_config_ports_vf -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xe2d562d5 dfl_fpga_port_ops_get -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xe490d599 dfl_fpga_port_ops_del -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xf5c1f6ae dfl_feature_ioctl_get_num_irqs -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xf81463d8 dfl_fpga_feature_devs_enumerate -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x01e9b9cb fpga_bridge_get +EXPORT_SYMBOL_GPL drivers/fpga/altera-pr-ip-core 0xe018cc00 alt_pr_register +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x0336d36f dfl_fpga_cdev_assign_port +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x0fbdf6b0 dfl_fpga_port_ops_put +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x2b25e43d dfl_fpga_enum_info_alloc +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x2fdbbe91 dfl_fpga_feature_devs_remove +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x58092ca4 __dfl_fpga_cdev_find_port +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x5c945195 dfl_fpga_enum_info_free +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x643c0182 dfl_fpga_port_ops_add +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x8b97565c dfl_fpga_dev_feature_uinit +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x8d43fbda dfl_feature_ioctl_set_irq +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x96d6d9e6 dfl_fpga_port_ops_del +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x97624a22 dfl_fpga_cdev_release_port +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xa2d8a236 dfl_fpga_port_ops_get +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xa5ff75e4 dfl_fpga_dev_ops_unregister +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xa684b78b dfl_fpga_dev_ops_register +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xada92d73 dfl_fpga_cdev_config_ports_pf +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xbf0d7218 dfl_feature_ioctl_get_num_irqs +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xc23ae44d dfl_fpga_enum_info_add_dfl +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xcd5f412f dfl_fpga_set_irq_triggers +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xcfd3df05 dfl_fpga_enum_info_add_irq +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xd0bf4411 dfl_fpga_feature_devs_enumerate +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xd694d875 dfl_fpga_dev_feature_init +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xdbcb947d dfl_fpga_cdev_config_ports_vf +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xece06c60 dfl_fpga_check_port_id 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 0x116a62b8 fpga_bridge_put -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x11d07404 devm_fpga_bridge_create -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x258c62e4 fpga_bridge_get_to_list -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x2acd03f3 fpga_bridge_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x1a0e3350 fpga_bridge_get_to_list +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x29e1450c fpga_bridge_register EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x2c8167cf fpga_bridges_disable -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x390bcd6e of_fpga_bridge_get_to_list -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x887ba33d fpga_bridge_unregister -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x9e34b3cf of_fpga_bridge_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xb6f47419 fpga_bridge_disable -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xd16953b6 fpga_bridge_create -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xec02bef2 fpga_bridge_free -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xf981f73d fpga_bridge_enable -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x0031f7dd fpga_mgr_lock -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x0522cbb5 fpga_mgr_register -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x0b275ab5 fpga_mgr_load -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x0e5f865e fpga_mgr_unlock -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x1d3f101c of_fpga_mgr_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x436bc7d2 fpga_image_info_free -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x533b2982 fpga_image_info_alloc -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x54e8bdba fpga_mgr_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x59d3418a devm_fpga_mgr_register -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x6981126e fpga_mgr_put -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x87f19fc2 devm_fpga_mgr_create -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x9edac14b fpga_mgr_create -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xaa705833 fpga_mgr_free -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xb33bbb29 fpga_mgr_unregister -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x2d7e9c4d fpga_region_unregister -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x3b1cd5c7 fpga_region_free -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x41562532 fpga_region_create -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x538724cf fpga_region_class_find -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x5dd11904 devm_fpga_region_create -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0xc86b03e3 fpga_region_register -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0xde06c1c0 fpga_region_program_fpga -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x42030de2 gnss_put_device -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x6b072f6e gnss_register_device -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x9118bff5 gnss_allocate_device -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0xe7b5ff01 gnss_insert_raw -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0xe97ac5e8 gnss_deregister_device -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x047a607e gnss_serial_register -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x5907c11f gnss_serial_deregister -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0xd29eb155 gnss_serial_pm_ops -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0xdbcab3e8 gnss_serial_free -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0xe47e7ddb gnss_serial_allocate -EXPORT_SYMBOL_GPL drivers/gpio/gpio-generic 0x417d0f35 bgpio_init -EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x890da4eb __max730x_remove -EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0xae06cc0b __max730x_probe -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x1bb7a05c analogix_dp_stop_crc +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x7ee42282 fpga_bridge_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x7fd3e5df fpga_bridge_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x859e8601 fpga_bridge_disable +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x91ae13a7 devm_fpga_bridge_create +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x9b4989e1 fpga_bridge_enable +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xb1c75529 fpga_bridge_free +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xde390e90 of_fpga_bridge_get_to_list +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xeaaf2cf3 of_fpga_bridge_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xf0e24ad9 fpga_bridge_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xf41cc4a4 fpga_bridge_create +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x0070196d fpga_mgr_unlock +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x0383a7a2 fpga_mgr_lock +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x0ce9508a fpga_mgr_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x1d8107fb devm_fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x47ab2657 of_fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x4b9f9e04 fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x4eded463 fpga_image_info_free +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x6b029588 fpga_mgr_load +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x74498cf5 fpga_mgr_free +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x7b01d728 fpga_mgr_create +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x7bd7947b fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x842dd766 fpga_image_info_alloc +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x8ec44764 devm_fpga_mgr_create +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xde7f752b fpga_mgr_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x23bfa7eb fpga_region_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x40ce2d17 devm_fpga_region_create +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x4c9388c7 fpga_region_create +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x4e9810dc fpga_region_class_find +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x66eb92c4 fpga_region_program_fpga +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x9ae180cb fpga_region_free +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0xd6c9bce7 fpga_region_unregister +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x0795d8bd gnss_allocate_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x41841eff gnss_deregister_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x8b9de691 gnss_put_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0xa84baec1 gnss_insert_raw +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0xc9c5f20a gnss_register_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x43900561 gnss_serial_register +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x715b859c gnss_serial_free +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x8400b776 gnss_serial_deregister +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0xf3f2bf22 gnss_serial_allocate +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0xfdcd28fb gnss_serial_pm_ops +EXPORT_SYMBOL_GPL drivers/gpio/gpio-generic 0x2315bab8 bgpio_init +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x96e320cd __max730x_remove +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0xa2c5e04b __max730x_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x2298e962 analogix_dp_bind +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x22b37c3f analogix_dp_resume +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x38c7d61a analogix_dp_unbind +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x3d3d9a5f analogix_dp_probe EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x3ee0dd60 anx_dp_aux_transfer -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x40dee489 analogix_dp_bind -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x5bbe746d analogix_dp_remove -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x6e9288a9 analogix_dp_start_crc -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x781b451b analogix_dp_resume -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x9622fbba analogix_dp_unbind -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x996a487b analogix_dp_suspend -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xd5210f47 analogix_dp_probe -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x0551dc1e drm_bridge_detect -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x084c3144 drm_bridge_hpd_enable -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x19d9278f drm_class_device_unregister -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x1ad6dd1c drm_bridge_hpd_notify -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x3bb44e8a drm_gem_dumb_map_offset -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x4759128c drm_gem_cma_vm_ops -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x5771de47 drm_gem_cma_dumb_create_internal -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x599d831c drm_gem_cma_free_object -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x5c2f8a2b drm_gem_cma_get_sg_table -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x5c311201 drm_bridge_get_modes -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x5d92e355 drm_gem_shmem_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x5fa48993 drm_gem_shmem_dumb_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x649d47b5 drm_bridge_hpd_disable -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x667eb687 drmm_kstrdup +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x4ddb8381 analogix_dp_stop_crc +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x668a38eb analogix_dp_start_crc +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x91987172 analogix_dp_suspend +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xcb390f95 analogix_dp_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x0841112e drm_gem_shmem_get_pages_sgt +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x2220bbc7 drm_gem_dumb_map_offset +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x23241082 drm_class_device_unregister +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x30b08a00 drm_crtc_add_crc_entry +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x4aed006e drm_gem_shmem_prime_import_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x524af532 drm_bridge_get_modes +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x56752f65 drm_gem_cma_mmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x5ffae9b3 drm_gem_cma_get_sg_table EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x66cf2f64 drm_display_mode_from_videomode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x7910b986 drm_get_unmapped_area -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x81635b3b drm_gem_cma_vmap -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x858f39a9 drm_class_device_register -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x89ac5e03 drm_hdcp_check_ksvs_revoked -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x8cc3df3a drm_crtc_add_crc_entry -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x9543aaf8 drm_gem_cma_mmap -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xa37268e1 drm_gem_cma_dumb_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xaa4ffcb4 drm_gem_shmem_get_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x6c7b0970 drmm_kstrdup +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x80a3f2a4 drm_gem_shmem_free_object +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x8ebbd23c drm_bridge_hpd_enable +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x91557b6b drm_gem_cma_vmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x91bd9504 drm_gem_shmem_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x95fe3463 drm_gem_cma_dumb_create_internal +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x964fa842 drm_class_device_register +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x9eb313a6 drm_gem_shmem_mmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xa9ed12ed drm_bridge_get_edid EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xad885165 drm_bus_flags_from_videomode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xb668c381 drm_gem_cma_prime_import_sg_table -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xc3350262 drm_gem_shmem_prime_import_sg_table -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xcc0447bb drm_gem_shmem_get_pages_sgt -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xcec05b28 drm_gem_shmem_free_object -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xdad7330f drm_bridge_get_edid -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xddd767c8 drm_gem_shmem_mmap -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xe042e0f7 drm_gem_cma_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xe209e368 drm_do_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xaf5d58ba drm_get_unmapped_area +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xb18e6ff0 drm_gem_cma_free_object +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xba6c0c05 drm_bridge_hpd_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xc2b3ebbf drm_bridge_detect +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xc364706a drm_hdcp_check_ksvs_revoked +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xc4ea9b5d drm_gem_cma_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xc98610a0 drm_do_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xcac2e567 drm_gem_cma_prime_import_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xd609bf3e drm_gem_shmem_dumb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xdb3d1b2b drm_gem_cma_vm_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xdebcd4b1 drm_gem_cma_dumb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xe730c8f2 drm_bridge_hpd_notify +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xf0580642 drm_gem_shmem_get_sg_table EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xfe9f72f3 drm_display_mode_to_videomode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x171f2e02 drm_gem_fb_get_obj -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x1ddd5943 drm_gem_fb_afbc_init -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x30834827 drm_fb_cma_get_gem_obj -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x3a4e341f drm_gem_fb_create_with_funcs -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x433fb918 drm_bridge_connector_enable_hpd -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x51075442 drm_bridge_connector_disable_hpd -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x8bc9a16c drm_fb_cma_get_gem_addr -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x8c1e9af3 drm_gem_plane_helper_prepare_fb -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x8c711ad4 drm_fb_cma_sync_non_coherent -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x8dffcfe1 drm_gem_fb_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xcc6512b2 drm_gem_fb_create_with_dirty -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xe94cd0ba drm_bridge_connector_init -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xee39cf57 drm_gem_fb_init_with_funcs +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x1cbb5444 drm_bridge_connector_enable_hpd +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x2a9f8d01 drm_gem_fb_init_with_funcs +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x3a5be061 drm_gem_fb_afbc_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x495fa61e drm_fb_cma_get_gem_addr +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x62416820 drm_gem_fb_create_with_dirty +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x65812986 drm_gem_plane_helper_prepare_fb +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x69bb88c1 drm_fb_cma_get_gem_obj +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x76a64132 drm_gem_fb_create_with_funcs +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x8802fa9c drm_fb_cma_sync_non_coherent +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xbc67a941 drm_bridge_connector_disable_hpd +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xc00609f8 drm_bridge_connector_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xe627feda drm_gem_fb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xf7ba2cf3 drm_gem_fb_get_obj 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 0x455ba659 intel_gvt_register_hypervisor EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0x500858b9 i915_read_mch_val EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0x6fbc5503 intel_gvt_unregister_hypervisor +EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0xda184e25 intel_gvt_register_hypervisor EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0xe7237b0b i915_gpu_turbo_disable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x0413c413 gb_connection_disable_forced EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x10d1b03e __SCT__tp_func_gb_hd_in -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x123aea97 gb_connection_create_flags -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x1321ec96 __tracepoint_gb_message_submit +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x143f9810 __traceiter_gb_hd_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x15219792 gb_operation_result EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x15d1942f greybus_disabled -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x15d6a169 __tracepoint_gb_hd_del -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x1ab540d0 gb_operation_request_send -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x26f6a4e6 gb_svc_intf_set_power_mode -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x2b8b480e gb_operation_result -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x2e7246f9 gb_interface_request_mode_switch -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x331ca20c __SCK__tp_func_gb_hd_in -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x36888562 gb_hd_shutdown -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x3aa84bd2 gb_operation_response_alloc -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x421aa8f9 __SCK__tp_func_gb_hd_del -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x4520d0a0 __SCK__tp_func_gb_message_submit -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x4cd45355 gb_operation_request_send_sync_timeout -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x553b032f __traceiter_gb_hd_release -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x554d4f4c gb_connection_disable -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x5b3870b6 __SCK__tp_func_gb_hd_create -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6369a358 gb_connection_latency_tag_enable -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x68ba0511 gb_connection_latency_tag_disable -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x695ca2ed greybus_deregister_driver +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x1fae5518 __tracepoint_gb_hd_in +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x25e5e7b0 gb_operation_get_payload_size_max +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x290009a0 gb_hd_cport_reserve +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x35c66fae gb_hd_shutdown +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x3d295195 gb_operation_response_alloc +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x3d8f76a6 gb_connection_enable_tx +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x3e931a06 gb_connection_destroy +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x50b1b135 gb_operation_request_send_sync_timeout +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x5209f2ec __SCK__tp_func_gb_hd_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x52ddffb1 gb_operation_put +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x57888c4f __traceiter_gb_hd_add +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x58ecce73 __tracepoint_gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x61143374 __traceiter_gb_hd_release +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x62d89bce __SCK__tp_func_gb_hd_add +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x62e31441 gb_interface_request_mode_switch +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x64921371 gb_operation_create_flags +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x67c8a8a8 gb_hd_put +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x709369db gb_connection_enable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7207cf36 __SCK__tp_func_gb_hd_release +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x769f46a8 gb_svc_intf_set_power_mode +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x775bb2a0 greybus_register_driver EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x78fedb98 __SCT__tp_func_gb_message_submit -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x79c3f8a1 greybus_message_sent -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7c77841f __traceiter_gb_hd_del -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x868e2b4e gb_connection_disable_forced -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x901be014 __traceiter_gb_message_submit -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x97a01778 __tracepoint_gb_hd_in -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xa3d91c9d gb_operation_put +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7acf826c greybus_data_rcvd +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x84b84d94 __SCK__tp_func_gb_message_submit +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x8626454a __tracepoint_gb_message_submit +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x888a18d2 __tracepoint_gb_hd_release +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x8bf2ef40 __traceiter_gb_message_submit +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x8fa15de1 __SCK__tp_func_gb_hd_in +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x9063c3c0 gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x9216a251 gb_operation_unidirectional_timeout +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x9863acff gb_connection_latency_tag_disable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x9954b1e8 gb_connection_disable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x9a62ffd7 gb_connection_disable_rx +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x9c1d8bc3 __SCK__tp_func_gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x9c42d9fb gb_operation_request_send +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xa4efa213 gb_hd_add +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xa629de7e __tracepoint_gb_hd_add +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xa9b13b07 gb_connection_create_flags +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xaaf405e3 gb_connection_create_offloaded EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xadd7926d __SCT__tp_func_gb_hd_create EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xae877457 __SCT__tp_func_gb_hd_release -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xafc64421 gb_operation_sync_timeout -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xb02f315d gb_operation_create_flags -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xb471ccb7 gb_hd_create -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xb94ec699 gb_hd_cport_reserve -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xbcdfb8f4 __SCK__tp_func_gb_hd_add -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xbd1a1259 greybus_register_driver -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xbf7ddd0a gb_hd_cport_release_reserved +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xaf05bc84 gb_hd_output +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xb9b7d408 __traceiter_gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xbea2bfe0 greybus_message_sent EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xbfb52284 __SCT__tp_func_gb_hd_del -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xc0f240e8 gb_operation_unidirectional_timeout -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xc619a14e gb_hd_add -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xc8a6ff10 gb_hd_output -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xc8d088c0 __traceiter_gb_hd_create -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xcdadc66d gb_connection_create -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xcdd2c732 gb_hd_put -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xcee62ac6 __traceiter_gb_hd_in -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xcf7186fd gb_operation_cancel -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd74d1407 gb_hd_del -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd961c060 __tracepoint_gb_hd_release -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xda49347f gb_connection_create_offloaded -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe18d49b4 greybus_data_rcvd -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe53bfdc3 __tracepoint_gb_hd_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xbfb5e836 gb_hd_cport_release_reserved +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xc442c674 __traceiter_gb_hd_in +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xc7067a45 gb_hd_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd0e375f2 __tracepoint_gb_hd_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd32f2388 gb_connection_latency_tag_enable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xda0892b4 greybus_deregister_driver +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xdb17a75f gb_connection_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xde6d0803 gb_operation_sync_timeout +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe51336dd gb_operation_get EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe6b45fb6 __SCT__tp_func_gb_hd_add -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe900466f gb_connection_enable_tx -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe9485bab __traceiter_gb_hd_add -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xeb13b164 __tracepoint_gb_hd_add -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xefd179fa gb_operation_get_payload_size_max -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf0b6a289 gb_connection_enable -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf14e408a gb_connection_destroy -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf25d25df gb_debugfs_get -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf9b0465e __SCK__tp_func_gb_hd_release -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xfd4f65a9 gb_operation_get -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xff59c5f7 gb_connection_disable_rx +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xfe3972b5 gb_debugfs_get +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xfebdd5b3 gb_operation_cancel EXPORT_SYMBOL_GPL drivers/hid/hid 0x05495392 hid_debug -EXPORT_SYMBOL_GPL drivers/hid/hid 0x120ecf0c hid_add_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x069cd84e hid_unregister_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0x098f7782 hid_validate_values +EXPORT_SYMBOL_GPL drivers/hid/hid 0x09b6e359 hid_check_keys_pressed +EXPORT_SYMBOL_GPL drivers/hid/hid 0x130abae1 hid_dump_input +EXPORT_SYMBOL_GPL drivers/hid/hid 0x13877df9 hid_compare_device_paths EXPORT_SYMBOL_GPL drivers/hid/hid 0x19d52f1f hid_quirks_exit -EXPORT_SYMBOL_GPL drivers/hid/hid 0x1cb4a08e hid_debug_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0x1cb89ba7 hid_alloc_report_buf -EXPORT_SYMBOL_GPL drivers/hid/hid 0x1e35bbb5 hid_output_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x2a670152 hid_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x2f703417 hid_hw_open -EXPORT_SYMBOL_GPL drivers/hid/hid 0x348df325 hid_compare_device_paths -EXPORT_SYMBOL_GPL drivers/hid/hid 0x3757cb6c hid_dump_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0x3cf8145a hid_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x42ed46f0 hid_open_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x43826d54 hid_register_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x49e5fcc3 hidraw_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x4d8388f0 hid_check_keys_pressed -EXPORT_SYMBOL_GPL drivers/hid/hid 0x55549e49 hid_resolv_usage -EXPORT_SYMBOL_GPL drivers/hid/hid 0x5eec999c hidinput_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0x652fed8d hid_unregister_driver -EXPORT_SYMBOL_GPL drivers/hid/hid 0x667e9201 hid_hw_stop -EXPORT_SYMBOL_GPL drivers/hid/hid 0x6789ef6d hid_report_raw_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0x687bd516 hid_lookup_quirk -EXPORT_SYMBOL_GPL drivers/hid/hid 0x6a65a917 hidraw_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x6c78c3ea hid_destroy_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0x6d50c860 hidinput_get_led_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0x73d2704e hidinput_find_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0x79fb6016 hid_dump_input -EXPORT_SYMBOL_GPL drivers/hid/hid 0x81e04569 __hid_register_driver -EXPORT_SYMBOL_GPL drivers/hid/hid 0x84ef8f36 hidraw_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x1b3333aa hidinput_calc_abs_res +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3a91870c hid_destroy_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3d365daf hid_debug_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x404a6f7e hid_output_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x42dcf1a3 hid_dump_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x460c7ee7 hidraw_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4dc7eb8c hid_dump_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4e4a4aac hid_ignore +EXPORT_SYMBOL_GPL drivers/hid/hid 0x6bb8fb82 hid_match_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x769f6a0e hid_dump_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7bd0b5e5 hid_hw_stop +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7d95414a __hid_register_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0x89ee4c0e hid_parse_report EXPORT_SYMBOL_GPL drivers/hid/hid 0x8b13a8b8 hid_snto32 -EXPORT_SYMBOL_GPL drivers/hid/hid 0x8e97119b hid_ignore -EXPORT_SYMBOL_GPL drivers/hid/hid 0x93705b7c hid_setup_resolution_multiplier -EXPORT_SYMBOL_GPL drivers/hid/hid 0x9f1d9b48 hidinput_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0xae128c61 hid_dump_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0xb58e6408 hid_hw_close -EXPORT_SYMBOL_GPL drivers/hid/hid 0xb73eea5c hidinput_count_leds -EXPORT_SYMBOL_GPL drivers/hid/hid 0xbc40da61 hid_allocate_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0xc09091c3 hidinput_calc_abs_res -EXPORT_SYMBOL_GPL drivers/hid/hid 0xc34aee2c hid_parse_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0xc433590b hid_input_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0xc6b1c192 hid_match_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0xcc6b1673 hid_field_extract -EXPORT_SYMBOL_GPL drivers/hid/hid 0xcf88917d hid_set_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0xd287d44f __hid_request -EXPORT_SYMBOL_GPL drivers/hid/hid 0xd5235869 hid_dump_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0xdc7bc4fb hid_hw_start -EXPORT_SYMBOL_GPL drivers/hid/hid 0xee522f50 hidinput_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8d43bb12 hid_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x923123fd hid_hw_close +EXPORT_SYMBOL_GPL drivers/hid/hid 0x95a352e1 hid_allocate_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x964186fb hid_set_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x96cbeb36 hid_open_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x99eb741b hidinput_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x9a8852fe hidraw_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa07d55ce hid_register_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xab5535af hid_hw_start +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb3b33cdd hidinput_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb7556f98 hidinput_get_led_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb92e3143 hid_alloc_report_buf +EXPORT_SYMBOL_GPL drivers/hid/hid 0xbb21750b hidinput_count_leds +EXPORT_SYMBOL_GPL drivers/hid/hid 0xbc7e511a hidinput_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc840923c hid_setup_resolution_multiplier +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd01d5632 hid_resolv_usage +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd4aba1b6 hid_add_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd6d8c4ec hid_field_extract +EXPORT_SYMBOL_GPL drivers/hid/hid 0xdc8376ab hid_input_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xe921efb1 hidinput_find_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xedb6c474 __hid_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0xeec1cd60 hid_report_raw_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xef7eba5b hidraw_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf4a66d31 hid_lookup_quirk +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf67d2037 hid_hw_open EXPORT_SYMBOL_GPL drivers/hid/hid 0xfa355613 hid_quirks_init -EXPORT_SYMBOL_GPL drivers/hid/hid 0xfe0f625c hid_validate_values +EXPORT_SYMBOL_GPL drivers/hid/hid 0xfe17ad16 hid_connect EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x2f622ea1 roccat_disconnect EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x3e4427c8 roccat_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x71c24cd5 roccat_connect -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x3955a3ce roccat_common2_send_with_status -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x55c0eb92 roccat_common2_send -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x706cb9d2 roccat_common2_sysfs_read -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x9febf431 roccat_common2_receive -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xa818ad84 roccat_common2_device_init_struct -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xbe9a9623 roccat_common2_sysfs_write -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x26c36e0b sensor_hub_remove_callback -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x2d61fc58 sensor_hub_device_close -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x33ffb2fa hid_sensor_get_usage_index -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x3db4d32a sensor_hub_input_get_attribute_info -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x94bb3539 sensor_hub_register_callback -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x980b17f2 sensor_hub_set_feature -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x9cd1d1de sensor_hub_input_attr_get_raw_value -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xb7cadfc9 sensor_hub_device_open -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xd5e17082 sensor_hub_get_feature -EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x34e4d9d0 i2c_hid_ll_driver -EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x3e6d215f i2c_hid_core_shutdown -EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0xa38e9291 i2c_hid_core_pm -EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0xad252ca1 i2c_hid_core_remove -EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0xed4724f3 i2c_hid_core_probe -EXPORT_SYMBOL_GPL drivers/hid/intel-ish-hid/intel-ishtp 0xefca4659 ishtp_wait_resume -EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0x1b571665 surface_hid_pm_ops -EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0x7376f668 surface_hid_device_destroy -EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0x81888cca surface_hid_device_add -EXPORT_SYMBOL_GPL drivers/hid/uhid 0xb044c684 uhid_hid_driver -EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0xa92d7176 usb_hid_driver -EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0xe55e87ac hiddev_hid_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x090dd8ea hsi_free_msg -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x39c15783 hsi_register_client_driver +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0xecb680cb roccat_connect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x00ddebe0 roccat_common2_device_init_struct +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x432bc687 roccat_common2_sysfs_read +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xa2fc92c1 roccat_common2_send +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xbf24929c roccat_common2_send_with_status +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xf7d28f8b roccat_common2_sysfs_write +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xfeb38ced roccat_common2_receive +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x18b761aa sensor_hub_remove_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x2cc14bc8 sensor_hub_device_close +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x80a1190f sensor_hub_get_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x81b4b9e5 sensor_hub_input_attr_get_raw_value +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x904029b3 sensor_hub_input_get_attribute_info +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x9605aae6 sensor_hub_device_open +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xd4b15c59 hid_sensor_get_usage_index +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xdcb5b014 sensor_hub_register_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xf7261c0e sensor_hub_set_feature +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x1c480aa0 i2c_hid_core_remove +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x3acb65d2 i2c_hid_ll_driver +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x7fef803f i2c_hid_core_probe +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0xe1030947 i2c_hid_core_pm +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0xf4305263 i2c_hid_core_shutdown +EXPORT_SYMBOL_GPL drivers/hid/intel-ish-hid/intel-ishtp 0x09d62037 ishtp_wait_resume +EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0x3e7114d6 surface_hid_device_destroy +EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0x51951ab4 surface_hid_pm_ops +EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0xfea1969e surface_hid_device_add +EXPORT_SYMBOL_GPL drivers/hid/uhid 0xa7812f6f uhid_hid_driver +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x1987fa4e usb_hid_driver +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x485d9e6d hiddev_hid_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x27da690e hsi_port_unregister_clients +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x35c6f995 hsi_alloc_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x3db1dcc9 hsi_free_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x4a242955 hsi_event EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5210a5bf hsi_board_list -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5444b132 hsi_get_channel_id_by_name -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5deb44c9 hsi_alloc_msg -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x61944166 hsi_release_port -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x6e1f9152 hsi_claim_port -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x7d541208 hsi_register_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x8c212da9 hsi_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x9f3f9ce5 hsi_unregister_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xa0c66927 hsi_put_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xa454e379 hsi_port_unregister_clients -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xc8b2770a hsi_unregister_port_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xdf56e5cf hsi_remove_client -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xdf815be2 hsi_alloc_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xe70c219c hsi_new_client -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xf50c63d1 hsi_register_port_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xffb3bcb6 hsi_async -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x11c352c5 hv_pkt_iter_first -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x135b1580 __hv_pkt_iter_next -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x1e148729 hv_pkt_iter_first_raw -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x237104a4 vmbus_sendpacket_pagebuffer +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x58e50515 hsi_claim_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x61c300c8 hsi_async +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x6e36fb61 hsi_register_client_driver +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x748199c5 hsi_release_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x787cb4fc hsi_put_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x7a48bca7 hsi_alloc_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xa194f78a hsi_register_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xa228e28d hsi_register_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xbda7c4aa hsi_unregister_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xc86ccfce hsi_get_channel_id_by_name +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xcba4caec hsi_new_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xdd9c2acd hsi_unregister_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xf5995e5c hsi_remove_client +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x0b4a2638 vmbus_set_chn_rescind_callback +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x0b6449a9 vmbus_free_ring +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x2053f83b __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 0x362aac17 vmbus_disconnect_ring -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x3afa69b9 vmbus_teardown_gpadl -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x3bb21360 vmbus_open -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x43eff819 vmbus_driver_unregister +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x35d2385b vmbus_next_request_id EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x46a417ca vmbus_proto_version +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x46c87c61 vmbus_connection EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x4b2210b8 vmbus_send_tl_connect_request -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x4b51a394 vmbus_alloc_ring -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x546b06c0 vmbus_free_ring -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x577cb26c vmbus_connect_ring -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x5c06c24b vmbus_connection -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x5c71fa32 vmbus_next_request_id +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x595d13ed vmbus_alloc_ring +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x602ad20d vmbus_teardown_gpadl EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x674e657e hv_ringbuffer_get_debuginfo -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x6b5f6341 vmbus_setevent -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x7630d75c vmbus_sendpacket_mpb_desc -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x8145da7b vmbus_set_chn_rescind_callback -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x8e9796ad vmbus_are_subchannels_present -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x96523cd0 vmbus_set_sc_create_callback -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x97be3d94 vmbus_set_event -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xa9f809fa vmbus_hvsock_device_unregister -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xc0b61802 vmbus_send_modifychannel -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xcafe8eb9 vmbus_recvpacket_raw -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xcb5b3c45 vmbus_establish_gpadl -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xe87db032 vmbus_close -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xeca7208e vmbus_request_addr -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xf19b3859 __vmbus_driver_register -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xfcebc619 vmbus_allocate_mmio -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xfe13d6d7 hv_pkt_iter_close -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x58ea9b8b adt7x10_remove -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x5b0a3faf adt7x10_probe -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0xba234cf4 adt7x10_dev_pm_ops +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x69debd6a vmbus_hvsock_device_unregister +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x6f0d0e29 vmbus_open +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x7366d7c6 vmbus_sendpacket_mpb_desc +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x7641f8cd vmbus_driver_unregister +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x832d3e38 vmbus_send_modifychannel +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x834ce163 vmbus_close +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x93e15371 vmbus_sendpacket_pagebuffer +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x9889cab8 vmbus_allocate_mmio +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x9ca5f8b7 vmbus_setevent +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x9e17922c vmbus_establish_gpadl +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xa09b2886 vmbus_set_event +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xa1c062e6 vmbus_request_addr +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xb63ef2fd vmbus_set_sc_create_callback +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xbc360957 vmbus_connect_ring +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xbcc6c34c __hv_pkt_iter_next +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xd143d639 vmbus_are_subchannels_present +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xe74a86c4 vmbus_recvpacket_raw +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xec4416d6 hv_pkt_iter_close +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xedf44ea8 hv_pkt_iter_first_raw +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xf330fd29 hv_pkt_iter_first +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xfd8203c7 vmbus_disconnect_ring +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x68e31a0a adt7x10_dev_pm_ops +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x84112971 adt7x10_remove +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0xe78d48d1 adt7x10_probe EXPORT_SYMBOL_GPL drivers/hwmon/ltc2947-core 0x5cbb5274 ltc2947_core_probe -EXPORT_SYMBOL_GPL drivers/hwmon/ltc2947-core 0x9fd24abd ltc2947_pm_ops +EXPORT_SYMBOL_GPL drivers/hwmon/ltc2947-core 0xac352918 ltc2947_pm_ops EXPORT_SYMBOL_GPL drivers/hwmon/ltc2947-core 0xbc54f93e ltc2947_of_match -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x1dafc598 intel_th_driver_unregister -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x39af8d18 intel_th_driver_register -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x40a82cbc intel_th_trace_switch -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x5487a9c0 intel_th_output_enable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x5cf07b5d intel_th_trace_enable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x98650d81 intel_th_set_output -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xa2240967 intel_th_alloc -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xbdbbcd70 intel_th_free -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xd30190d7 intel_th_trace_disable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x13df8de8 intel_th_msu_buffer_register -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x9e7178f7 intel_th_msc_window_unlock -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0xde8e22cd intel_th_msu_buffer_unregister -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x33d2f2ca stm_unregister_protocol -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x4afa93f0 stm_data_write -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x7ee76cfb stm_source_register_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x9196bffb stm_source_write -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x9c238f45 stm_register_protocol -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xb91ea7d5 stm_register_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xc8ce15ef to_pdrv_policy_node -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xd3043820 stm_source_unregister_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xfaf44951 stm_unregister_device -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0x174a43ce amd_mp2_process_event -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0x27ae89b5 amd_mp2_bus_enable_set -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0x30709b7c amd_mp2_rw -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0x3767c705 amd_mp2_rw_timeout -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0x778af0f3 amd_mp2_find_device -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0xb48421e5 amd_mp2_register_cb -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0xf0b19359 amd_mp2_unregister_cb -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-nforce2 0x86cf9d5f nforce2_smbus -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x02e8ce8d i2c_mux_add_adapter -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x56020041 i2c_mux_del_adapters -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x6ced8831 i2c_root_adapter -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x73d50b22 i2c_mux_alloc -EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x6bf81936 i2c_register_spd -EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xc9cb090f i2c_handle_smbus_alert -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x13048744 i3c_master_get_free_addr -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x1e486ae5 i3c_device_enable_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x230e439e i3c_device_do_priv_xfers -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x27ca9f38 i3c_device_get_info -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x298e135d i3c_master_add_i3c_dev_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x3900ee79 i3c_driver_register_with_owner -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x4e7c77b0 i3c_device_disable_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x4e898af8 i3c_master_disec_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x5815a66f i3c_device_request_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x5d809743 i3c_master_unregister -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x6569b646 i3c_master_set_info -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x6e79b498 i3c_master_register +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x07695290 intel_th_driver_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x33ad6445 intel_th_free +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x38fadfbd intel_th_trace_disable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x454ed06a intel_th_driver_register +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x56494214 intel_th_set_output +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x8d8e2613 intel_th_trace_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xccf4fdb8 intel_th_alloc +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xdcc7f4de intel_th_trace_switch +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xe0135c68 intel_th_output_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x1660d887 intel_th_msc_window_unlock +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x75074f20 intel_th_msu_buffer_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x9c309b05 intel_th_msu_buffer_register +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x2fac403f stm_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x3a55b068 stm_source_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x4718d16e stm_data_write +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x6bb6277c stm_unregister_protocol +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x6e41c093 stm_register_protocol +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xdd4a442e stm_source_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xeabfd6cf stm_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xf392725a to_pdrv_policy_node +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xfff18e1e stm_source_write +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0x1b05ef22 amd_mp2_process_event +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0x5652e6cf amd_mp2_rw +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0x57910a97 amd_mp2_find_device +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0x8125a700 amd_mp2_rw_timeout +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0x832960b8 amd_mp2_bus_enable_set +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0x8b01d21b amd_mp2_register_cb +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0xa1ae5521 amd_mp2_unregister_cb +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-nforce2 0x75a73b9c nforce2_smbus +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x601d4a60 i2c_mux_del_adapters +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x8b4739f5 i2c_mux_add_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xdec06893 i2c_mux_alloc +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xec942451 i2c_root_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x88dc3ac1 i2c_handle_smbus_alert +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xa873d0e4 i2c_register_spd +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x03f9aec2 i3c_master_entdaa_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x06f35af5 i3c_master_add_i3c_dev_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x084a039d i3c_device_request_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x0ac830ce i3c_master_register +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x0c973a51 i3c_master_do_daa +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x195b660e i3c_device_free_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x264ca8ce i3c_master_queue_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x27c4943b i3c_master_unregister +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x354688cd i3c_device_match_id +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x52358087 i3c_device_do_priv_xfers +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x53b33e0f i3c_driver_register_with_owner +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x5d696d1b i3c_master_disec_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x66156572 i3c_generic_ibi_alloc_pool +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x704591be i3c_master_set_info EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x76fe3e05 i3c_generic_ibi_free_pool -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x7f37c00a i3c_master_defslvs_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x8d11cabe i3c_device_free_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xb11b861d i3c_master_do_daa -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xb2c205ea i3c_master_entdaa_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xc7aae837 i3c_generic_ibi_recycle_slot -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xca660ff5 i3c_device_match_id -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xd80eb8b2 i3c_master_enec_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xd8a71ad0 i3c_generic_ibi_alloc_pool -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xeb58c45e i3cdev_to_dev -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xef7f01eb i3c_driver_unregister -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xefcbf6ce i3c_generic_ibi_get_free_slot -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xfae96f2b dev_to_i3cdev -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xfdd1d2c5 i3c_master_queue_ibi -EXPORT_SYMBOL_GPL drivers/iio/accel/adxl372 0x8daf9485 adxl372_probe -EXPORT_SYMBOL_GPL drivers/iio/accel/adxl372 0xcd9061c7 adxl372_readable_noinc_reg -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x14522a59 bmc150_accel_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xa1860e9b bmc150_accel_core_probe -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xe2f870cd bmc150_accel_core_remove -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xf778c647 bmc150_regmap_conf -EXPORT_SYMBOL_GPL drivers/iio/accel/bmi088-accel-core 0x310e3fcc bmi088_accel_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/accel/bmi088-accel-core 0x4680e1f2 bmi088_regmap_conf -EXPORT_SYMBOL_GPL drivers/iio/accel/bmi088-accel-core 0x871ca1c1 bmi088_accel_core_remove -EXPORT_SYMBOL_GPL drivers/iio/accel/bmi088-accel-core 0xd0fd0f98 bmi088_accel_core_probe -EXPORT_SYMBOL_GPL drivers/iio/accel/fxls8962af-core 0x24580131 fxls8962af_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/accel/fxls8962af-core 0x5ba576d8 fxls8962af_i2c_regmap_conf -EXPORT_SYMBOL_GPL drivers/iio/accel/fxls8962af-core 0xa18c501e fxls8962af_core_probe -EXPORT_SYMBOL_GPL drivers/iio/accel/fxls8962af-core 0xf97be21d fxls8962af_spi_regmap_conf -EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0x1bb20a86 mma7455_core_regmap -EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0x63aed6ca mma7455_core_probe -EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0xaaac089c mma7455_core_remove -EXPORT_SYMBOL_GPL drivers/iio/adc/ad7091r-base 0xb0f3b5c4 ad7091r_regmap_config -EXPORT_SYMBOL_GPL drivers/iio/adc/ad7091r-base 0xb5c2a499 ad7091r_probe -EXPORT_SYMBOL_GPL drivers/iio/adc/ad7606 0x64552a5b ad7606_probe -EXPORT_SYMBOL_GPL drivers/iio/adc/ad7606 0xd4983043 ad7606_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x41dc2cfc devm_ad_sd_setup_buffer_and_trigger -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x467366c0 ad_sd_calibrate -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x4d9ce880 ad_sigma_delta_single_conversion -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x6e931fb6 ad_sd_reset -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x87f89a39 ad_sd_set_comm -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xa66b6298 ad_sd_write_reg -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xcb6a9f6d ad_sd_read_reg -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xd517fcf6 ad_sd_validate_trigger -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xd9584e7f ad_sd_init -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xf4023015 ad_sd_calibrate_all +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x85223512 i3c_master_enec_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x85b76c5e i3c_generic_ibi_get_free_slot +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x93b22df0 dev_to_i3cdev +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x985b970f i3c_device_disable_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xa40272b7 i3c_master_defslvs_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xbfe05aac i3c_device_enable_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xd29c9e5f i3c_master_get_free_addr +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xdc86262a i3c_driver_unregister +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xde55526e i3c_device_get_info +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xe03a548b i3cdev_to_dev +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xe1d6934a i3c_generic_ibi_recycle_slot +EXPORT_SYMBOL_GPL drivers/iio/accel/adxl372 0xca1933ef adxl372_readable_noinc_reg +EXPORT_SYMBOL_GPL drivers/iio/accel/adxl372 0xcd56e61e adxl372_probe +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x3983cf7f bmc150_accel_core_remove +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xcd4b03b0 bmc150_accel_core_probe +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xd34a697f bmc150_regmap_conf +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xea80eb35 bmc150_accel_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/accel/bmi088-accel-core 0x464d2bcf bmi088_regmap_conf +EXPORT_SYMBOL_GPL drivers/iio/accel/bmi088-accel-core 0x570228db bmi088_accel_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/accel/bmi088-accel-core 0xba0c7f67 bmi088_accel_core_remove +EXPORT_SYMBOL_GPL drivers/iio/accel/bmi088-accel-core 0xd9a833a0 bmi088_accel_core_probe +EXPORT_SYMBOL_GPL drivers/iio/accel/fxls8962af-core 0x48f78674 fxls8962af_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/accel/fxls8962af-core 0x63432630 fxls8962af_spi_regmap_conf +EXPORT_SYMBOL_GPL drivers/iio/accel/fxls8962af-core 0xc19db2f5 fxls8962af_i2c_regmap_conf +EXPORT_SYMBOL_GPL drivers/iio/accel/fxls8962af-core 0xf269fe6c fxls8962af_core_probe +EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0x43da8b5d mma7455_core_regmap +EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0x566aacfe mma7455_core_remove +EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0xbb90a8b2 mma7455_core_probe +EXPORT_SYMBOL_GPL drivers/iio/adc/ad7091r-base 0x60a5804a ad7091r_probe +EXPORT_SYMBOL_GPL drivers/iio/adc/ad7091r-base 0xa9798d1f ad7091r_regmap_config +EXPORT_SYMBOL_GPL drivers/iio/adc/ad7606 0x5df8f9f5 ad7606_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/adc/ad7606 0xc75ac74a ad7606_probe +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x0b078d03 ad_sd_set_comm +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x3294c2e2 ad_sd_init +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x3b94ea38 ad_sd_read_reg +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x6e118b9a ad_sd_write_reg +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x77350817 ad_sd_validate_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x8f1d664d ad_sigma_delta_single_conversion +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xaa1a3cdd devm_ad_sd_setup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xbfa52c89 ad_sd_calibrate +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xd746aef7 ad_sd_reset +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xf108f03b ad_sd_calibrate_all 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 0x2f8f638c iio_channel_cb_get_channels -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x73d8cf53 iio_channel_get_all_cb +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x2bc14a34 iio_channel_get_all_cb +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x2e9249be iio_channel_cb_get_channels EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x7a711aef iio_channel_start_all_cb EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x9acf62ab iio_channel_cb_set_buffer_watermark -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x9af856cd iio_channel_cb_get_iio_dev -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x05c8080b iio_dma_buffer_release -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x0aa3e631 iio_dma_buffer_set_bytes_per_datum -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x36fd42f8 iio_dma_buffer_disable -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x590000c0 iio_dma_buffer_read -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x64041a59 iio_dma_buffer_request_update -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x65a5178c iio_dma_buffer_block_done -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x79eef0be iio_dma_buffer_init -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x9c4b07e4 iio_dma_buffer_enable -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xa775d621 iio_dma_buffer_set_length -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xcfaf408d iio_dma_buffer_data_available -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xdeb71835 iio_dma_buffer_exit -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xebbb7947 iio_dma_buffer_block_list_abort -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dmaengine 0x578eed03 devm_iio_dmaengine_buffer_setup -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x229f0f25 devm_iio_hw_consumer_alloc +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0xd309ab6f iio_channel_cb_get_iio_dev +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x038281a5 iio_dma_buffer_request_update +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x05ba60fb iio_dma_buffer_exit +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x2b41c4f9 iio_dma_buffer_disable +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x363cf2b6 iio_dma_buffer_data_available +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x4180744f iio_dma_buffer_init +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x52383458 iio_dma_buffer_block_done +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x56e30540 iio_dma_buffer_set_length +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x65915334 iio_dma_buffer_read +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x86fb8201 iio_dma_buffer_release +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x8d7e8f7f iio_dma_buffer_block_list_abort +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xc5555f5d iio_dma_buffer_enable +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xfa126693 iio_dma_buffer_set_bytes_per_datum +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dmaengine 0x8fca0e27 devm_iio_dmaengine_buffer_setup +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x16b174f0 iio_hw_consumer_alloc EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x3391543d iio_hw_consumer_disable EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x9671bc15 iio_hw_consumer_free EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0xbf358fa9 iio_hw_consumer_enable -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0xd3d91fbf iio_hw_consumer_alloc -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-triggered-buffer 0x7c1fcfa4 devm_iio_triggered_buffer_setup_ext -EXPORT_SYMBOL_GPL drivers/iio/buffer/kfifo_buf 0x4f7a686e devm_iio_kfifo_buffer_setup_ext -EXPORT_SYMBOL_GPL drivers/iio/chemical/bme680_core 0x0945f50a bme680_core_probe -EXPORT_SYMBOL_GPL drivers/iio/chemical/sps30 0x04d607d6 sps30_probe -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x10ae20e6 cros_ec_sensors_ext_info -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x66328f7c cros_ec_sensors_core_read_avail -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x68d65ee0 cros_ec_sensors_read_cmd -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x6becdea2 cros_ec_sensors_push_data -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x8eca6d3d cros_ec_sensors_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0xe53931c2 devm_iio_hw_consumer_alloc +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-triggered-buffer 0x25ea6609 devm_iio_triggered_buffer_setup_ext +EXPORT_SYMBOL_GPL drivers/iio/buffer/kfifo_buf 0x9ed393d4 devm_iio_kfifo_buffer_setup_ext +EXPORT_SYMBOL_GPL drivers/iio/chemical/bme680_core 0xd6286ecb bme680_core_probe +EXPORT_SYMBOL_GPL drivers/iio/chemical/sps30 0xc12cd5a6 sps30_probe +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x5c623dbb cros_ec_sensors_core_read +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x719ec6ef cros_ec_sensors_core_init +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x7e66ecb4 cros_ec_sensors_core_write +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x83f8a471 cros_ec_sensors_core_read_avail +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x926bfa1c cros_ec_motion_send_host_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 0xa511bbc6 cros_ec_sensors_core_read -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xb9582c70 cros_ec_sensors_core_init -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xc13e343c cros_ec_motion_send_host_cmd -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xdb8e9f5c cros_ec_sensors_read_lpc -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xff5a226b cros_ec_sensors_core_write -EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0x92c454d6 ad5592r_probe -EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0xe6363a2a ad5592r_remove -EXPORT_SYMBOL_GPL drivers/iio/dac/ad5686 0x6a2131f6 ad5686_probe -EXPORT_SYMBOL_GPL drivers/iio/dac/ad5686 0xcce3d03a ad5686_remove -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x35c812bf bmg160_core_remove -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x80ad27f1 bmg160_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x81f1afc3 bmg160_core_probe -EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0x0ac32ebb fxas21002c_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0x2fe5a78c fxas21002c_core_probe -EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0x7c25583a fxas21002c_core_remove -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x464ed863 devm_adis_setup_buffer_and_trigger -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x4a62ae95 __adis_initial_startup -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x58f95741 adis_update_scan_mode -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x6491dd28 adis_init -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x75eb3fbe __adis_check_status -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x80d4cddc __adis_update_bits_base -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xaf785056 __adis_reset -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xc8956a70 adis_single_conversion -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xdbce5199 __adis_read_reg -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xed0bee7a devm_adis_probe_trigger -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xfedabba7 __adis_write_reg -EXPORT_SYMBOL_GPL drivers/iio/imu/bmi160/bmi160_core 0x146480e2 bmi160_core_probe -EXPORT_SYMBOL_GPL drivers/iio/imu/fxos8700_core 0x54467d5e fxos8700_core_probe -EXPORT_SYMBOL_GPL drivers/iio/imu/inv_icm42600/inv-icm42600 0x2bbfe639 inv_icm42600_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/imu/inv_icm42600/inv-icm42600 0x60bb904b inv_icm42600_regmap_config -EXPORT_SYMBOL_GPL drivers/iio/imu/inv_icm42600/inv-icm42600 0xf260d80e inv_icm42600_core_probe -EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0x4dccdf8f inv_mpu_pmops -EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0xed3ee1ec inv_mpu_core_probe -EXPORT_SYMBOL_GPL drivers/iio/imu/st_lsm9ds0/st_lsm9ds0 0xb0e01cc6 st_lsm9ds0_probe -EXPORT_SYMBOL_GPL drivers/iio/imu/st_lsm9ds0/st_lsm9ds0 0xc183785f st_lsm9ds0_remove -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x00a39f4d iio_get_debugfs_dentry -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0c1fe3a2 iio_read_avail_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x101898c5 iio_device_id -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2052fc54 iio_read_max_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x24c99c9e iio_read_channel_offset +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x9b961013 cros_ec_sensors_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xa5dacba9 cros_ec_sensors_ext_info +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xe2c9f889 cros_ec_sensors_push_data +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xeaea071c cros_ec_sensors_read_cmd +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xf7447bb2 cros_ec_sensors_read_lpc +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0x55e71b57 ad5592r_probe +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0x931e2f50 ad5592r_remove +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5686 0x1a843ebe ad5686_probe +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5686 0xf25096bf ad5686_remove +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x0685aefa bmg160_core_remove +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x5ea4282a bmg160_core_probe +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xe0d92110 bmg160_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0x666ca9fe fxas21002c_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0x7cebd663 fxas21002c_core_probe +EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0xd125dfbc fxas21002c_core_remove +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x3198fb56 __adis_update_bits_base +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x508e8e70 __adis_initial_startup +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x57cd14d2 devm_adis_setup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x60bee662 __adis_reset +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x748ec6e2 adis_update_scan_mode +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x794188de __adis_check_status +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x854243e6 __adis_read_reg +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xc9f748ac devm_adis_probe_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xf0d27121 adis_init +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xf23529b4 adis_single_conversion +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xf7b28208 __adis_write_reg +EXPORT_SYMBOL_GPL drivers/iio/imu/bmi160/bmi160_core 0xfc8e676d bmi160_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/fxos8700_core 0x7ba4879c fxos8700_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_icm42600/inv-icm42600 0x2b53a181 inv_icm42600_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_icm42600/inv-icm42600 0xd6eb4bf7 inv_icm42600_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_icm42600/inv-icm42600 0xdca33903 inv_icm42600_regmap_config +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0x2db8d96e inv_mpu_pmops +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0x5dd08bb2 inv_mpu_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/st_lsm9ds0/st_lsm9ds0 0x59b1f8f3 st_lsm9ds0_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/st_lsm9ds0/st_lsm9ds0 0x6c714587 st_lsm9ds0_remove +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0127d0f8 iio_map_array_unregister +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0ee587fe iio_read_channel_offset +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x11e952c7 iio_read_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2260e888 devm_of_iio_channel_get_by_name EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x26f6b499 iio_str_to_fixpoint -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x29334f78 iio_read_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2ce2beb8 iio_read_avail_channel_attribute -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x359b0e04 devm_iio_channel_get -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x44c57a50 devm_iio_trigger_alloc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x47bfeff2 iio_alloc_pollfunc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4c26378d iio_enum_available_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2bb15197 iio_channel_release_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2c9c5ac9 devm_iio_trigger_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2de9bc52 iio_push_to_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x33eeaeba iio_enum_available_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x364d83a8 iio_read_channel_ext_info +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x36b79b71 iio_channel_release +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x37fb618f iio_enum_write +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x44df25f2 iio_read_max_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x46cf1b6a iio_write_channel_raw EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4dce7dd4 iio_format_value -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x52d9a65f iio_enum_read -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x54983a40 iio_read_channel_ext_info -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x558a156a iio_map_array_unregister -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5d40a18f iio_map_array_register -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5ec3b70c iio_device_attach_buffer -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x61fa3492 __devm_iio_device_register -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6427c93d iio_channel_get -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x66918c48 iio_write_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x690e05de iio_read_channel_attribute -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x77d48c4d iio_get_channel_type -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x78fb5137 iio_update_buffers -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x877a7992 iio_channel_release -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9381e612 iio_read_channel_processed -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x94660510 iio_enum_write -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x984595ac devm_iio_channel_get_all -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa4fbd3c2 devm_of_iio_channel_get_by_name -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa6ef37e1 iio_channel_get_all -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xacc7ff44 iio_dealloc_pollfunc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xaceb43be iio_push_to_buffers -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb0250c0f iio_read_channel_processed_scale -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb5913736 iio_show_mount_matrix -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb8d2dad3 iio_convert_raw_to_processed -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xbcd0c795 iio_read_channel_scale -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc3a12596 iio_buffer_put -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc54d72b7 iio_device_release_direct_mode -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc8d01e6c iio_channel_release_all -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc95a1d27 iio_validate_scan_mask_onehot -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xcd0db499 iio_write_channel_attribute -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xce5b3add __devm_iio_trigger_register -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xde3344fb iio_get_channel_ext_info_count -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xdf890bc1 iio_device_claim_direct_mode -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe8b1dfc0 iio_buffer_get -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf5560fe1 iio_read_channel_average_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf5619dbb iio_write_channel_ext_info -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xfd368b3d devm_iio_device_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5c6e299d iio_write_channel_ext_info +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6322db50 iio_enum_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x65ac0864 iio_read_avail_channel_attribute +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x687eed3f iio_buffer_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6b58bd0f iio_read_channel_average_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6b7de0d1 iio_channel_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x75526086 iio_read_channel_processed_scale +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x758b4f24 iio_map_array_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x795a1de1 iio_device_attach_buffer +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x795ba496 iio_validate_scan_mask_onehot +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7bcaec71 __devm_iio_device_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7ecc1678 iio_alloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x80dcdb7e iio_read_channel_attribute +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x884f9c42 iio_buffer_put +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x972b2070 iio_device_release_direct_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9e609be0 iio_write_channel_attribute +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9e9434dd iio_convert_raw_to_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb3b835c9 iio_read_channel_scale +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc2c3a263 iio_read_avail_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc7701887 iio_channel_get_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd360af68 iio_read_channel_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd39c44cc iio_update_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd6ff68ee devm_iio_device_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd81e173d iio_device_claim_direct_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd9ac0d0e iio_get_channel_ext_info_count +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe33673c7 devm_iio_channel_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe4edf85a __devm_iio_trigger_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe53e1ff5 iio_dealloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe5f277d8 iio_show_mount_matrix +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf71cdfe8 iio_get_debugfs_dentry +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xfa20a04c iio_get_channel_type +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xfccf0d02 devm_iio_channel_get_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xfddf6d90 iio_device_id EXPORT_SYMBOL_GPL drivers/iio/magnetometer/rm3100-core 0x0a1424e0 rm3100_volatile_table -EXPORT_SYMBOL_GPL drivers/iio/magnetometer/rm3100-core 0x970145fe rm3100_common_probe +EXPORT_SYMBOL_GPL drivers/iio/magnetometer/rm3100-core 0x37129277 rm3100_common_probe EXPORT_SYMBOL_GPL drivers/iio/magnetometer/rm3100-core 0xaa911f08 rm3100_readable_table EXPORT_SYMBOL_GPL drivers/iio/magnetometer/rm3100-core 0xcc7209be rm3100_writable_table -EXPORT_SYMBOL_GPL drivers/iio/pressure/mpl115 0xfb91dff4 mpl115_probe -EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0x7c238b1d zpa2326_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0x8b251416 zpa2326_isreg_writeable -EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0xa3d7105b zpa2326_isreg_readable -EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0xaa8150a9 zpa2326_remove -EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0xaf868738 zpa2326_isreg_precious -EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0xc8f5107a zpa2326_probe +EXPORT_SYMBOL_GPL drivers/iio/pressure/mpl115 0x98e2371e mpl115_probe +EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0x5ea8fd6d zpa2326_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0x8f829d4e zpa2326_isreg_writeable +EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0xb6c759ab zpa2326_isreg_precious +EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0xc11f5615 zpa2326_remove +EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0xe6d2e5e4 zpa2326_isreg_readable +EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0xef83b765 zpa2326_probe EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x028aa066 rtrs_cq_qp_destroy -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x0cba9cb8 rtrs_iu_post_send -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x139c49ba rtrs_init_hb -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x27f4e09d rtrs_iu_free -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x2d4b01e2 rtrs_send_hb_ack -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x2e997030 rtrs_start_hb -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x583d0374 rtrs_iu_post_recv -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x6703263e rtrs_post_recv_empty -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x8a54df77 rtrs_cq_qp_create -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x93f62a38 rtrs_stop_hb -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xd81e0efa rtrs_iu_post_rdma_write_imm -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xef9a016b rtrs_iu_alloc -EXPORT_SYMBOL_GPL drivers/input/ff-memless 0x2573cb26 input_ff_create_memless -EXPORT_SYMBOL_GPL drivers/input/matrix-keymap 0x8ec4358b matrix_keypad_parse_properties -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x49a4fcbd adxl34x_remove -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x5682579c 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/rmi4/rmi_core 0x3fb2507b rmi_of_property_read_u32 -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x4e0a2b93 rmi_2d_sensor_configure_input -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x63463c11 rmi_driver_suspend -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x7d4ed537 rmi_2d_sensor_abs_process -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x7e3d6435 rmi_2d_sensor_rel_report -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x8552a12e rmi_dbg -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x862c9e4d rmi_driver_resume -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x8ed7d3e9 rmi_2d_sensor_of_probe -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x9b0f8ac0 rmi_set_attn_data -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xa6ae8760 rmi_register_transport_device -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xbb2d721c rmi_unregister_function_handler -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xbc5bf6db rmi_2d_sensor_abs_report -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xd95705c6 __rmi_register_function_handler -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x30764078 cyttsp4_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x6a53bdaf cyttsp4_remove -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xfd888ca8 cyttsp4_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x509664aa cyttsp_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x8a4f77c5 cyttsp_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x42be5a3e cyttsp_i2c_read_block_data -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x4338d02a cyttsp_i2c_write_block_data -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x5addb328 tsc200x_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x784f0cc1 tsc200x_remove -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xce6cf39b tsc200x_regmap_config -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xe778854f tsc200x_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x12cb73a6 wm97xx_read_aux_adc -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x34da4567 wm97xx_set_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x3a0603de wm97xx_reg_write -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x3cc2206b wm9713_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x4a28c8df wm97xx_set_suspend_mode -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x4c09f14c wm97xx_get_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x69cc1a5f wm97xx_config_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xa71591ff wm97xx_register_mach_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xbaa7b27d wm97xx_unregister_mach_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xd797bf8e wm97xx_reg_read -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xedd63daf wm9705_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xf06820f5 wm9712_codec -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x1aad36df ipack_driver_register -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x3a624cfa ipack_device_init -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x3b02606b ipack_driver_unregister -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x44bab511 ipack_device_del -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x7eded6eb ipack_put_device -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x8f6b3adc ipack_get_device -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xbad1d996 ipack_bus_unregister -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xe0a0abd7 ipack_bus_register -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xf3795a39 ipack_device_add -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x2fab9345 led_set_flash_timeout -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x344f1f36 led_get_flash_fault -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x4de8640a led_classdev_flash_register_ext -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x91f9df6c led_set_flash_brightness -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x9c9b0ed3 devm_led_classdev_flash_register_ext -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xa4f3a474 led_update_flash_brightness -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xbf65c65d devm_led_classdev_flash_unregister -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xece4800c led_classdev_flash_unregister -EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x45060f61 devm_led_classdev_multicolor_unregister -EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x4b1986ff led_mc_calc_color_components -EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x79b860cc led_classdev_multicolor_unregister -EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x7d6ba7ab led_classdev_multicolor_register_ext -EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0xdf43a0dc devm_led_classdev_multicolor_register_ext +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x0f6b55cf rtrs_cq_qp_create +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x0f7f9358 rtrs_iu_post_send +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x3cfaa926 rtrs_iu_alloc +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x400e688a rtrs_iu_post_rdma_write_imm +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x55681c48 rtrs_init_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x5957c713 rtrs_start_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x920e2b00 rtrs_iu_free +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xb701eb7b rtrs_stop_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xd19dffde rtrs_iu_post_recv +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xd57a2d3f rtrs_send_hb_ack +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xd7e7a8d2 rtrs_cq_qp_destroy +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xe575c53d rtrs_post_recv_empty +EXPORT_SYMBOL_GPL drivers/input/ff-memless 0x122e1dbf input_ff_create_memless +EXPORT_SYMBOL_GPL drivers/input/matrix-keymap 0x9bd83ca6 matrix_keypad_parse_properties +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x06636db5 rmi_dbg +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x284aa53d rmi_of_property_read_u32 +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x3b083a37 rmi_set_attn_data +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x472f72f6 rmi_driver_resume +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x6013774a rmi_unregister_function_handler +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x6f878a0e rmi_2d_sensor_abs_report +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x74224a08 rmi_2d_sensor_configure_input +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x801a66bb __rmi_register_function_handler +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x83513704 rmi_2d_sensor_of_probe +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xb0ff16c3 rmi_2d_sensor_rel_report +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xd00f6131 rmi_driver_suspend +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xe78f29ed rmi_register_transport_device +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xf51b7fd6 rmi_2d_sensor_abs_process +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x1ddb06fd cyttsp4_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x6dbd3ea0 cyttsp4_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x82ec7701 cyttsp4_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x2779853f cyttsp_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x918dea2c cyttsp_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x0c6d8bad cyttsp_i2c_read_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x0fb6c624 cyttsp_i2c_write_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xab502745 tsc200x_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xad082eb2 tsc200x_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xcb946313 tsc200x_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xeae57fa1 tsc200x_regmap_config +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x07ba9516 wm97xx_reg_write +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x0f37efb3 wm9705_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x1289f2e9 wm9712_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x70b1b012 wm97xx_set_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xb8713cdb wm97xx_read_aux_adc +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xc8681e43 wm97xx_config_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xcce57bf4 wm97xx_register_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xd64ab07a wm97xx_reg_read +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xd98d6d2a wm97xx_set_suspend_mode +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xde23f277 wm9713_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xf06d2e3f wm97xx_get_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xfb7be47a wm97xx_unregister_mach_ops +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x0ed2b171 ipack_get_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x2046b1bb ipack_driver_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x31a968ac ipack_put_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x35c234b0 ipack_device_del +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x389f8101 ipack_bus_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x42543e3b ipack_device_init +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x46c46363 ipack_driver_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x80c35fc3 ipack_bus_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xa5e1fb1d ipack_device_add +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x20dc3a82 devm_led_classdev_flash_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x2c2d657f led_set_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x385a9e85 devm_led_classdev_flash_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x507e8fe6 led_update_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x9baeaeb3 led_get_flash_fault +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xa71b4f6d led_set_flash_timeout +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xa7a3d3e0 led_classdev_flash_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xf1979f46 led_classdev_flash_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x388609e6 led_classdev_multicolor_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x9eabac8a led_mc_calc_color_components +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0xc51b2e85 devm_led_classdev_multicolor_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0xcb97e235 led_classdev_multicolor_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0xebe05307 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 0x0049176e __SCK__tp_func_bcache_cache_insert -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x048c3f5f __traceiter_bcache_btree_node_alloc -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x05789d1e __SCK__tp_func_bcache_btree_gc_coalesce -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0804c9fa __SCK__tp_func_bcache_bypass_sequential -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0c8b5762 __SCK__tp_func_bcache_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x11d50373 __tracepoint_bcache_cache_insert -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x11f0782b __SCK__tp_func_bcache_btree_node_compact -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x12b351f4 __SCK__tp_func_bcache_bypass_congested -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x137fa50a __traceiter_bcache_gc_start -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x13a76471 __traceiter_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1232e0bb __SCK__tp_func_bcache_btree_cache_cannibalize +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x15eb76ab __tracepoint_bcache_btree_insert_key EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x17a83e40 __traceiter_bcache_writeback -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x19f0ab61 __traceiter_bcache_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x192d48f5 __SCK__tp_func_bcache_writeback_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x19ddb92b __tracepoint_bcache_request_end EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1c599ebe __traceiter_bcache_btree_gc_coalesce -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1cab30fe __tracepoint_bcache_bypass_congested -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1d816ea5 __SCK__tp_func_bcache_btree_set_root +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1df4c86e __SCK__tp_func_bcache_writeback +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x202e6938 __tracepoint_bcache_btree_node_alloc +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x20811633 __traceiter_bcache_btree_cache_cannibalize EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x21b87a42 __SCT__tp_func_bcache_btree_node_alloc +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2293520a __tracepoint_bcache_read_retry +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2488efb2 __traceiter_bcache_btree_node_split 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 0x287090dc __SCT__tp_func_bcache_journal_write EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x297e0da3 __SCT__tp_func_bcache_btree_node_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2ba538f9 __SCK__tp_func_bcache_read_retry +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x29e60428 __SCK__tp_func_bcache_gc_copy_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2c0d2b2f __SCK__tp_func_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2ce872f6 __tracepoint_bcache_journal_replay_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2e79bd32 __SCK__tp_func_bcache_journal_replay_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2f68f754 __SCK__tp_func_bcache_btree_node_split EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x300c8ff4 __SCT__tp_func_bcache_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x30d1c8a3 __traceiter_bcache_gc_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x317afc05 __SCK__tp_func_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x32a59ebf __tracepoint_bcache_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x330db979 __SCK__tp_func_bcache_gc_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x347be046 __SCK__tp_func_bcache_btree_set_root +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x35d13a8a __tracepoint_bcache_read EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x36f317a4 __SCT__tp_func_bcache_gc_copy -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3d602ce7 __SCK__tp_func_bcache_request_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3f49e369 __tracepoint_bcache_btree_node_free +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3cd2b0cb __tracepoint_bcache_btree_set_root +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3d5d30d3 __traceiter_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4276e97c __traceiter_bcache_btree_node_alloc +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4350910a __tracepoint_bcache_gc_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x442014f5 __tracepoint_bcache_journal_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x453378e0 __SCK__tp_func_bcache_request_end EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4543b49b __SCT__tp_func_bcache_writeback_collision -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x475ebfdd __SCK__tp_func_bcache_journal_entry_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x503bd0a6 __SCK__tp_func_bcache_btree_node_split -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x52e7904b __tracepoint_bcache_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x536eea19 __traceiter_bcache_journal_entry_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5927c8c1 __traceiter_bcache_btree_cache_cannibalize -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5b2237bd __tracepoint_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4e5009be __tracepoint_bcache_gc_copy +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4eebd071 __traceiter_bcache_request_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x52100510 __tracepoint_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x568bc4e0 __tracepoint_bcache_btree_node_free +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x56b45d09 __SCK__tp_func_bcache_btree_gc_coalesce +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5bc809ed __SCK__tp_func_bcache_bypass_sequential EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5dd80bd5 __SCT__tp_func_bcache_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5e06a998 __SCK__tp_func_bcache_writeback -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5e23b1ac __tracepoint_bcache_btree_node_split -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6002d3d5 __tracepoint_bcache_btree_cache_cannibalize EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x629c9180 __SCT__tp_func_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6479173e __SCK__tp_func_bcache_read EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x64e39418 __traceiter_bcache_writeback_collision -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x65361fad __traceiter_bcache_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x65886ab5 __SCK__tp_func_bcache_journal_full EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6677ebf0 __SCT__tp_func_bcache_gc_start -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6da34369 __tracepoint_bcache_journal_replay_key -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x70032291 __traceiter_bcache_btree_node_free -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x714c0015 __tracepoint_bcache_btree_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x71c288e1 __traceiter_bcache_bypass_congested +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x69629f4c __tracepoint_bcache_journal_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6cb6aac8 __tracepoint_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6de07606 __SCK__tp_func_bcache_bypass_congested +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6f265d5d __traceiter_bcache_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x71a6e494 __tracepoint_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x74202e16 __SCK__tp_func_bcache_gc_copy EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x752f7fa4 __SCT__tp_func_bcache_cache_insert -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x756f3c6d __SCK__tp_func_bcache_read EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x787810b2 __SCT__tp_func_bcache_read_retry -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x78908e67 __SCK__tp_func_bcache_btree_read -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7a2ac43f __SCK__tp_func_bcache_gc_copy_collision -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7c446785 __tracepoint_bcache_read -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7db4d6cd __traceiter_bcache_btree_set_root +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7cb90fd6 __traceiter_bcache_journal_full EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7f252e00 __SCT__tp_func_bcache_bypass_congested +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7f389db1 __SCK__tp_func_bcache_read_retry +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x804db4b8 __SCK__tp_func_bcache_journal_write EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x817ad796 __SCT__tp_func_bcache_btree_node_free -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8188a0b2 __traceiter_bcache_bypass_sequential -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x81e68f08 __tracepoint_bcache_btree_insert_key EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x822db771 __SCT__tp_func_bcache_btree_cache_cannibalize -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x86653234 __traceiter_bcache_journal_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x87040881 __tracepoint_bcache_journal_entry_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x87ca5d1f __SCK__tp_func_bcache_writeback_collision -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8dd8f4ff __traceiter_bcache_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8ea7c1bc __traceiter_bcache_btree_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8ffeee02 __SCK__tp_func_bcache_btree_insert_key -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9259c796 __traceiter_bcache_btree_insert_key -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x96144338 __SCK__tp_func_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8526df93 __tracepoint_bcache_writeback_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x86148920 __traceiter_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8626f76b __SCK__tp_func_bcache_gc_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x88a6c95d __tracepoint_bcache_bypass_congested +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x89356fe5 __traceiter_bcache_btree_insert_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8cfbaade __traceiter_bcache_btree_set_root +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8e9a350d __traceiter_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x90e1fee8 __tracepoint_bcache_btree_node_compact +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9270312c __SCK__tp_func_bcache_btree_node_compact +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x92bf2460 __tracepoint_bcache_cache_insert +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x940015c9 __SCK__tp_func_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x95d1ca14 __traceiter_bcache_btree_node_free +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x967da55d __SCK__tp_func_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x96e78e3d __tracepoint_bcache_alloc_fail EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x972aa384 __SCT__tp_func_bcache_btree_insert_key -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x987ef6d6 __SCK__tp_func_bcache_gc_copy -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9af13540 __tracepoint_bcache_gc_copy_collision EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9d28d153 __SCT__tp_func_bcache_btree_node_split -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9fd1e4ce __SCK__tp_func_bcache_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa07f6d3c __tracepoint_bcache_request_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9e55d199 __SCK__tp_func_bcache_cache_insert +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9efdb226 __traceiter_bcache_gc_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9f2229cb __tracepoint_bcache_invalidate EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa15bd7c4 __SCT__tp_func_bcache_btree_gc_coalesce -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa2531673 __tracepoint_bcache_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa30acfc1 __SCK__tp_func_bcache_journal_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa277cde6 __traceiter_bcache_bypass_sequential +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa6b229c1 __traceiter_bcache_read EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa784e073 __SCT__tp_func_bcache_btree_node_compact -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa8852511 __SCK__tp_func_bcache_gc_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa794c72e __tracepoint_bcache_bypass_sequential +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa9228d5c __traceiter_bcache_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa9e717b8 __traceiter_bcache_journal_entry_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xaabdab5a __traceiter_bcache_gc_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xaae893ca __tracepoint_bcache_btree_gc_coalesce EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xad6440b4 __traceiter_bcache_gc_copy -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xadf9f435 __SCK__tp_func_bcache_journal_replay_key -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb423909b __tracepoint_bcache_btree_node_alloc -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb53ade24 __SCK__tp_func_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xae23bbcd __traceiter_bcache_btree_read EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb5a62a8c __traceiter_bcache_cache_insert -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb5a6fae2 __tracepoint_bcache_btree_read -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb693ee83 __traceiter_bcache_journal_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb795fb14 __SCK__tp_func_bcache_btree_cache_cannibalize EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb7e5379d __SCT__tp_func_bcache_journal_replay_key -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xba3bf191 __SCK__tp_func_bcache_btree_node_alloc -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xbb0c11aa __SCK__tp_func_bcache_gc_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xbdaacaee __tracepoint_bcache_btree_node_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xbf74bf6d __tracepoint_bcache_writeback -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc01d3f0c __tracepoint_bcache_journal_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc289e670 __SCK__tp_func_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc4def6da __SCK__tp_func_bcache_journal_entry_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc568d663 __SCK__tp_func_bcache_btree_node_alloc +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc58a922d __SCK__tp_func_bcache_btree_node_free +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc64f391e __tracepoint_bcache_journal_entry_full EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc73e0c99 __SCT__tp_func_bcache_invalidate -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xca7c0a18 __tracepoint_bcache_gc_copy +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc8eed402 __tracepoint_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xca2e480f __tracepoint_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xcb4c4186 __SCK__tp_func_bcache_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xce380f9b __traceiter_bcache_btree_node_compact EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xce451ad8 __SCT__tp_func_bcache_btree_read -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd112e919 __tracepoint_bcache_gc_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd1609f2f __traceiter_bcache_btree_node_split -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd1aacf77 __tracepoint_bcache_btree_node_compact +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xceeaccae __traceiter_bcache_journal_write EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd30206ff __SCT__tp_func_bcache_gc_copy_collision -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd40bc85a __tracepoint_bcache_gc_start -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd62d2ee9 __tracepoint_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd5bacaeb __tracepoint_bcache_gc_copy_collision EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd7a376b3 __SCT__tp_func_bcache_gc_end EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd7a7fbec __SCT__tp_func_bcache_request_start EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xdb0682eb __SCT__tp_func_bcache_journal_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xdd21548f __traceiter_bcache_btree_node_compact -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe51c2f6a __traceiter_bcache_request_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe5a36c61 __tracepoint_bcache_btree_gc_coalesce -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe5d71a77 __tracepoint_bcache_writeback_collision -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe6934c7c __tracepoint_bcache_read_retry -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe8df3885 __tracepoint_bcache_bypass_sequential -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xea08b85f __tracepoint_bcache_journal_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xde207194 __tracepoint_bcache_writeback +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe137cdd1 __traceiter_bcache_bypass_congested +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe399d097 __traceiter_bcache_read_retry +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xeb3ae284 __tracepoint_bcache_gc_start EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xec29e22a __traceiter_bcache_gc_copy_collision -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xec5341ce __SCK__tp_func_bcache_btree_write EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xedf90bb3 __SCT__tp_func_bcache_read -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xee397939 __traceiter_bcache_read_retry +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xee6ee0b5 __tracepoint_bcache_btree_cache_cannibalize +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf0adc9f0 __SCK__tp_func_bcache_btree_insert_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf231277d __traceiter_bcache_btree_write EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf57f81ae __SCT__tp_func_bcache_bypass_sequential -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf74fd861 __traceiter_bcache_request_start EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf7a5edc7 __SCT__tp_func_bcache_journal_entry_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf8369d6f __SCK__tp_func_bcache_btree_node_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf837c758 __tracepoint_bcache_btree_set_root -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf9c9f248 __traceiter_bcache_invalidate EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfb767f16 __SCT__tp_func_bcache_writeback -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfb94ac42 __SCK__tp_func_bcache_journal_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfca0db61 __SCK__tp_func_bcache_btree_node_free EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfce76b1e __SCT__tp_func_bcache_request_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xff0cda5a __traceiter_bcache_btree_read -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x10e1fe43 dm_cell_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x142d288f dm_bio_prison_free_cell +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfef84107 __SCK__tp_func_bcache_write +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x0248ad58 dm_get_cell EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x17dd39d6 dm_deferred_set_create -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x18466992 dm_cell_promote_or_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x1df14868 dm_cell_put_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x256f7661 dm_cell_lock_promote_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x24b6e540 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 0x382f9404 dm_cell_lock_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x397fea24 dm_cell_get_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x3a158a02 dm_cell_error -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x3d6b842b dm_cell_visit_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x42a95f70 dm_bio_prison_alloc_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x3c2f20b5 dm_bio_prison_alloc_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x486881c5 dm_bio_prison_alloc_cell_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x5595834f dm_cell_unlock_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x58a1fef6 dm_cell_put_v2 EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x6791a44e dm_deferred_entry_dec -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x68314b72 dm_bio_detain EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x753e20b2 dm_bio_prison_create -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x9b1085a1 dm_cell_unlock_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xa483791d dm_get_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x7e78b28e dm_bio_prison_free_cell_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x8f67e2d4 dm_cell_quiesce_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x97e8a319 dm_cell_release_no_holder +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xa848b441 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 0xb498aac9 dm_cell_promote_or_release EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb6d5c65d dm_deferred_set_add_work EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb70b342a dm_bio_prison_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb83885cc dm_cell_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xc277b72e dm_cell_lock_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xc28ae4f1 dm_bio_detain EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xca2e3a88 dm_deferred_entry_inc -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xcd9751d0 dm_cell_quiesce_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xcedb0b6d dm_cell_visit_release EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xd99e003d dm_bio_prison_create_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xdeb90f90 dm_cell_release_no_holder -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xe005236a dm_bio_prison_free_cell_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xfb475df2 dm_bio_prison_alloc_cell_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xde86c289 dm_cell_error +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xe54f1928 dm_cell_lock_promote_v2 EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x0ad0dc4f dm_bufio_mark_buffer_dirty EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x111ab12a dm_bufio_mark_partial_buffer_dirty EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x24772bfe dm_bufio_get -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x2b519ea3 dm_bufio_client_create EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x2e0774dc dm_bufio_get_block_number EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6aebce95 dm_bufio_issue_discard EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6d3f57bd dm_bufio_get_client @@ -13526,13 +13534,14 @@ EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xcd2ba798 dm_bufio_forget EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xd4bddf5c dm_bufio_issue_flush EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xd991e3b9 dm_bufio_get_device_size +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xde931938 dm_bufio_client_create EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xe6024e59 dm_bufio_release EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xebcc64a4 dm_bufio_get_block_data EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xeca7949e dm_bufio_client_destroy EXPORT_SYMBOL_GPL drivers/md/dm-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 0x0efbca4c btracker_promotion_already_present -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x2087b69c dm_cache_policy_register +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x4c96da6d dm_cache_policy_unregister EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x5adc2807 btracker_destroy EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x5de611a9 btracker_nr_writebacks_queued EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x7890d535 dm_cache_policy_get_name @@ -13544,29 +13553,29 @@ EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xbf1a2968 btracker_create EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xccfe6409 btracker_nr_demotions_queued EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xcf8c2590 dm_cache_policy_get_hint_size -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xd9f85b1f dm_cache_policy_unregister +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xd7ae75b1 dm_cache_policy_register EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xe1bdae47 dm_cache_policy_create -EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x057cbeaa dm_register_path_selector -EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0xdcebdc6c dm_unregister_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x845d9e3b dm_unregister_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0xef30a41b 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 0x061376ca dm_rh_bio_to_region +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x32e1ae4f 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 0x4fd187d6 dm_rh_bio_to_region +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x45cf54d9 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 0x618752d9 dm_rh_delay EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7774620f dm_rh_stop_recovery EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7d053fc5 dm_rh_start_recovery EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7d5e1815 dm_rh_get_region_key -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x8276b0b1 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 0xb241206c dm_rh_mark_nosync +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xbc9caaeb dm_rh_inc_pending EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xbe38a431 dm_rh_recovery_prepare EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xd8aa4284 dm_rh_region_context -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xda91f0c9 dm_rh_inc_pending -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xf481e7b7 dm_rh_dirty_log +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xf462798f dm_region_hash_create +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xf90b2bcd 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 @@ -13578,7 +13587,6 @@ EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x1e3f728d dm_block_data EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x243ce1ad dm_array_cursor_end EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x24507fbf dm_array_cursor_next -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x25ca5270 dm_block_manager_create EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2bc1a8d9 dm_tm_open_with_sm EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2c5a02df dm_btree_find_lowest_key EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2d38ecd9 dm_bitset_resize @@ -13593,6 +13601,7 @@ EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x46768dbf dm_btree_remove_leaves EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x48e323be dm_bm_unlock EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x4f477261 dm_bm_checksum +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5125c77e dm_block_manager_create EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5375ca71 dm_bm_write_lock EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5475ba9e dm_block_location EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5736c9c5 dm_bitset_flush @@ -13643,75 +13652,75 @@ EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xe8438eb5 dm_array_del EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf82dba90 dm_btree_empty EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xfce51d79 dm_array_empty -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x0afb03c8 cec_s_phys_addr -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x4757b334 cec_notifier_parse_hdmi_phandle -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x490aa634 cec_delete_adapter -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x5c7f9c82 cec_received_msg_ts -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x610e0943 cec_notifier_cec_adap_register +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x07b2b504 cec_transmit_attempt_done_ts +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x09f19101 cec_s_phys_addr_from_edid +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x15c76fe8 cec_register_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x1a36d105 cec_delete_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x2192f901 cec_notifier_parse_hdmi_phandle +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x34dfa4e0 cec_notifier_cec_adap_register +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x473415ed cec_notifier_cec_adap_unregister +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x501e19b9 cec_received_msg_ts +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x56e066ab cec_queue_pin_cec_event +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x5c69bd6a cec_s_conn_info +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x5fd0f8f0 cec_queue_pin_5v_event EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x67e1dfdc cec_notifier_set_phys_addr_from_edid -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x82f49390 cec_allocate_adapter -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x9133e490 cec_s_conn_info -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x9b1a7aa4 cec_transmit_done_ts -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x9bbe4999 cec_transmit_attempt_done_ts +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x6b0d0a3b cec_transmit_done_ts +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x7f7776b2 cec_notifier_conn_register +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x80dc5a98 cec_transmit_msg +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x8edfc637 cec_unregister_adapter EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xa01fbb6b cec_notifier_set_phys_addr -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xa112900a cec_queue_pin_cec_event -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xad220d6d cec_notifier_conn_register -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xae897c89 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 0xb8fefd39 cec_unregister_adapter EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xbe4de675 cec_get_edid_phys_addr -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xbf74a8a1 cec_s_log_addrs -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xc927e44a cec_fill_conn_info_from_drm -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xdc3e1ad8 cec_notifier_cec_adap_unregister -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xe8f38db4 cec_register_adapter -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xecfc2ac9 cec_transmit_msg -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xfb124a26 cec_queue_pin_5v_event -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xfea99060 cec_queue_pin_hpd_event +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xbfd9d5e2 cec_allocate_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xc32969ba cec_queue_pin_hpd_event +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xca7aad0f cec_fill_conn_info_from_drm +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xd3270220 cec_s_log_addrs +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xe65d0c93 cec_s_phys_addr EXPORT_SYMBOL_GPL drivers/media/common/b2c2/b2c2-flexcop 0x66c0289a b2c2_flexcop_debug -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x11897d52 saa7146_pgtable_alloc -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x1c9625a5 saa7146_pgtable_build_single -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x2c731455 saa7146_wait_for_debi_done -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x40295762 saa7146_pgtable_free -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x44b483df saa7146_i2c_adapter_prepare -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x5703be68 saa7146_vfree_destroy_pgtable -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xb7a0877c saa7146_vmalloc_build_pgtable -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xcbd21dc2 saa7146_setgpio +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x068e8ef6 saa7146_i2c_adapter_prepare +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x47c87087 saa7146_pgtable_alloc +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x4af21c6f saa7146_pgtable_build_single +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x8f10aa2d saa7146_register_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x916bee3a saa7146_wait_for_debi_done +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xb653a1f3 saa7146_setgpio +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xba2d4926 saa7146_vmalloc_build_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xbe482bf6 saa7146_unregister_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xc490ce85 saa7146_pgtable_free EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe3cd9b5c saa7146_debug -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xfa7ff050 saa7146_register_extension -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xfc87b57a saa7146_unregister_extension -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x03f24f80 saa7146_vv_release -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x3c3e6464 saa7146_stop_preview -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x832faead saa7146_register_device -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xa78e66ea saa7146_vv_init -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xc42402e1 saa7146_unregister_device -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xe27ec938 saa7146_start_preview -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xefc51f5d saa7146_set_hps_source_and_sync -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x0b2ca6ed sms_board_lna_control +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xedb23951 saa7146_vfree_destroy_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x1b154535 saa7146_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x3c2beb25 saa7146_set_hps_source_and_sync +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x49673180 saa7146_register_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x5ad64655 saa7146_start_preview +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x7bef889d saa7146_vv_init +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xd2bab13e saa7146_stop_preview +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xdc694d0f saa7146_vv_release +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x05eea4a4 smscore_register_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x0e621720 smscore_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x12f7cd1b smscore_get_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x206e2953 smscore_start_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x211f6a80 smscore_getbuffer EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x21e36bf2 smscore_registry_getmode +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x25e10548 sms_board_event +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x31893906 sms_board_lna_control 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 0x3fde0373 smscore_putbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x4424a2c8 sms_board_power EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x45284ae9 smsendian_handle_rx_message -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x45784f8a sms_board_setup -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x50cdf910 smscore_onresponse -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x632b8cba sms_board_event -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x67f05f41 smscore_register_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x4fd87b1d sms_board_setup +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x5adf9e02 sms_board_led_feedback +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x6cd28030 smscore_unregister_hotplug EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x74ee9098 sms_board_load_modules -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x78a5ae66 smscore_getbuffer EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7c576277 smsendian_handle_message_header -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x82a269d7 smscore_register_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x804def8a smscore_get_device_mode +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x83406d7a smscore_onresponse EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x844539ae sms_get_board -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x85d824df smscore_unregister_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x894782df smscore_start_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x8efc3845 smscore_set_board_id -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x98229d07 sms_board_led_feedback EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x99a81ab3 smsclient_sendrequest EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbbdb5c42 smscore_unregister_client -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xc2a55969 smscore_register_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xc91a789a sms_board_power -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xcb6bd3c6 smscore_get_board_id -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xf756a534 smscore_get_device_mode -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xfc04ea8c smscore_unregister_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xc37f5b37 smscore_putbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xdf0643ae smscore_set_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xf5fd155a smscore_register_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xff8a7493 smscore_register_device EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x03005a48 tpg_alloc EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x040dc7cd tpg_aspect_strings EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x4d1d285c tpg_init @@ -13729,309 +13738,336 @@ EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xce8159bb tpg_pattern_strings EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xf4aef3a4 tpg_gen_text EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xf65c5e46 tpg_fillbuffer -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x01b5a5f2 vb2_core_querybuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x03d71df5 __SCK__tp_func_vb2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x0cf2faf1 vb2_request_object_is_buffer -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x1d78c4c8 __SCK__tp_func_vb2_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x1e587c07 vb2_core_queue_release -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x1e86ba5e vb2_mmap -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x26feeef5 vb2_core_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x0b75ea01 vb2_core_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x0bf5fd5e vb2_plane_vaddr +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x0c46328f __traceiter_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x1b4582f1 vb2_discard_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x21feefd2 __tracepoint_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x23e7d35c vb2_read 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 0x2db661e9 __traceiter_vb2_buf_done -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x335800bc __tracepoint_vb2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x478c6d49 __traceiter_vb2_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x4bb9bd6c vb2_plane_cookie +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x34e7608d vb2_thread_stop +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x478eae1a vb2_thread_start +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x4872e95e vb2_core_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x4983c2cb __tracepoint_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x4cf7ba50 vb2_core_streamoff 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 0x529c58e3 vb2_core_poll -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x5ec616fa __traceiter_vb2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x6400ae53 vb2_request_buffer_cnt -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x6c7da685 vb2_core_streamon -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x6e5de082 vb2_core_create_bufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x7431a036 vb2_core_queue_init -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x772a6ee0 vb2_core_reqbufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x7d1819f5 __SCK__tp_func_vb2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x7fab2965 vb2_discard_done -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x83212aa3 vb2_plane_vaddr -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x83f2cecd __tracepoint_vb2_buf_done -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x8bfd0ef3 vb2_buffer_done -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x9b96cb7d vb2_queue_error -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xb6da3b64 vb2_thread_stop -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xb9106e22 __SCK__tp_func_vb2_buf_done -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xba93c23e __traceiter_vb2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xbffbddf0 vb2_core_expbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x50ece650 vb2_core_queue_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x52aeb0a1 vb2_core_create_bufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x65b3d521 vb2_buffer_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x65baf633 vb2_core_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x69774f92 __SCK__tp_func_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x725966e4 __traceiter_vb2_buf_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x791a3676 vb2_request_object_is_buffer +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x7c58a0d1 __traceiter_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x7d890455 vb2_plane_cookie +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x8135b50c __SCK__tp_func_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x92f4f094 __tracepoint_vb2_buf_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x934af79e vb2_core_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x94fbc40c __traceiter_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x9e7984ae vb2_core_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xa962fb33 __SCK__tp_func_vb2_buf_done EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xc54c863e __SCT__tp_func_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xc5f1ed56 vb2_write +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xc7345ccf vb2_core_expbuf EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xc7920841 __SCT__tp_func_vb2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xd872ea03 vb2_thread_start -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xd91cefc2 vb2_wait_for_all_buffers -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xdac1684d __tracepoint_vb2_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xe00dd7f6 __tracepoint_vb2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xe186b6de vb2_core_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xe2f740e8 vb2_write -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xf1b9c2b5 vb2_read -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xf1beeb33 vb2_core_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xfb81f438 vb2_core_streamoff -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0x6761a738 vb2_dma_contig_memops -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0x73b05eda vb2_dma_contig_set_max_seg_size -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-sg 0x92d4972d vb2_dma_sg_memops -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-memops 0x894cdbd5 vb2_common_vm_ops -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x056a280d vb2_queue_change_type -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x1313c37f vb2_request_queue -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x1b5899de vb2_create_bufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x1bf8bd5e vb2_ioctl_create_bufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x225e3297 vb2_streamoff -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x36e98f40 vb2_fop_read -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x3cc4b4c9 vb2_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x3d4b0004 vb2_ops_wait_prepare -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x40675611 vb2_fop_write -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x41899941 vb2_ioctl_streamon -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x4cd88937 vb2_fop_mmap -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x4f259168 vb2_request_validate -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x5f6d0ac2 vb2_ioctl_expbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x64db671a _vb2_fop_release -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x6b471ba6 vb2_ops_wait_finish -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x6ed8ee04 vb2_ioctl_reqbufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x747cf6a7 vb2_reqbufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x74d3ed03 vb2_poll -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x7e5d820b vb2_queue_release -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x9ca79935 vb2_fop_poll -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xb065bd56 vb2_ioctl_streamoff -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xb4b8c217 vb2_ioctl_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xb4c7b539 vb2_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xb5a905f4 vb2_ioctl_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xbb0c188e vb2_fop_release -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xc55f3e2d vb2_ioctl_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xcc4e5589 vb2_queue_init -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xcc80a55e vb2_video_unregister_device -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xd81946ec vb2_ioctl_querybuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xe9fb6ff8 vb2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xeaccdd29 vb2_expbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xf3f79255 vb2_find_timestamp -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xfb80d7cd vb2_queue_init_name -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xff45748f vb2_streamon -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-vmalloc 0x3c90f2df vb2_vmalloc_memops -EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0x21f56e89 dvb_module_probe -EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0xd832ac66 dvb_module_release -EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0xf6703541 dvb_create_media_graph -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/as102_fe 0x39f52904 as102_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24117 0x497a6dbf cx24117_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/gp8psk-fe 0xb1598ecf gp8psk_fe_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mxl5xx 0xd7d87ff6 mxl5xx_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0910 0xdcf6295a stv0910_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv6111 0x2b0bc39c stv6111_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0x4a7e8de4 tda18271c2dd_attach -EXPORT_SYMBOL_GPL drivers/media/i2c/aptina-pll 0x4c466767 aptina_pll_calculate -EXPORT_SYMBOL_GPL drivers/media/i2c/ccs-pll 0xb01a3edd ccs_pll_calculate -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x0f2ad2e3 max9271_enable_gpios -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x2b205247 max9271_set_gpios -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x3499ab9f max9271_clear_gpios -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x3c237aaf max9271_configure_gmsl_link -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x47dd7c5d max9271_set_deserializer_address -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x575514e7 max9271_configure_i2c -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x6004cb8f max9271_set_translation -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x6d628abb max9271_wake_up -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xa6010858 max9271_set_high_threshold -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xa936dd39 max9271_disable_gpios -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xc1471788 max9271_set_serial_link -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xd3971085 max9271_verify_id -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xf5cce8e0 max9271_set_address -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x0d619de1 media_request_object_bind -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x15405b6a media_devnode_remove -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x18b4886f media_create_pad_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x2249899b __media_pipeline_start -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x2d8378e4 media_create_pad_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x2d9d30c4 __media_pipeline_stop -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x30dc83f8 media_request_object_complete -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x362886bc media_device_delete -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x38e62b11 media_device_unregister_entity -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x390a0e74 media_request_object_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x3aa45527 media_graph_walk_next -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x3c84829e media_request_put -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x40ef30e4 media_device_unregister_entity_notify -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x4b2c6b49 media_entity_remove_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x50725415 __media_remove_intf_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x52c0697c __media_remove_intf_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x55952904 media_graph_walk_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x57a18262 media_entity_find_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x59fe3e3e media_remove_intf_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x5b4af1ce media_device_register_entity -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x613eac20 media_entity_setup_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x62d92077 __media_entity_setup_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x66ee087c __media_device_usb_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x6e5e5ada media_graph_walk_cleanup -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x6f0d943d media_request_object_put -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x719ce3dc media_device_cleanup -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x723a73da media_device_usb_allocate -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x762a9550 media_entity_pads_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x87bf8483 media_entity_get_fwnode_pad -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x9834178f media_pipeline_stop -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x98c3b023 __media_device_register -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xa42e13f7 media_device_unregister -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xaea40886 __media_entity_remove_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xafb441b6 media_device_pci_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xb1c9652a media_remove_intf_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xb2bbc375 media_request_object_find -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xb95f29ca media_request_object_unbind -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xbc00b84e media_get_pad_index -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc18f9f15 media_request_get_by_fd -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc31a1f0f media_devnode_create -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd724c761 media_device_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd9286c57 media_create_intf_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xde14a22f media_pipeline_start -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe1a71ab6 media_graph_walk_start +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xca917977 vb2_mmap +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xd59d9536 vb2_core_queue_init +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xd7355bf1 vb2_queue_error +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xda56c4d3 vb2_core_querybuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xde1f9857 vb2_wait_for_all_buffers +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xe18d522d __SCK__tp_func_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xe87a06a1 __tracepoint_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xf1de472a vb2_request_buffer_cnt +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xf6eb6d2d vb2_core_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0x955ed8b9 vb2_dma_contig_memops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0xcf00c4e6 vb2_dma_contig_set_max_seg_size +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-sg 0x7b01d030 vb2_dma_sg_memops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-memops 0x3686f3d2 vb2_common_vm_ops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x073c694d vb2_queue_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x0a14b0dc vb2_ops_wait_finish +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x0cf0ccac vb2_fop_write +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x14351c93 vb2_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x17606ab4 vb2_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x1a9ceede vb2_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x1bcd0a49 vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x21612a27 vb2_find_timestamp +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x231e3194 vb2_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x2f71df97 vb2_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x30f3104a vb2_expbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x33d030a7 vb2_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x34906976 vb2_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x6b99e56f vb2_create_bufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x6dc6ddbf vb2_queue_init_name +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x703f3265 vb2_streamoff +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x7c2c9a53 vb2_request_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x82753c5d vb2_fop_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x8c1ea3c6 vb2_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x9ef5242b vb2_request_validate +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xb879975f vb2_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xc0c906ed vb2_queue_init +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xc557624e vb2_video_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xcb33f33c vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xccc3fe96 vb2_ops_wait_prepare +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xccc60401 vb2_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xcdbe6844 vb2_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xcfe6ec2b vb2_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xd1134c1f _vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xd2ec4e9b vb2_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xd4b1c4d0 vb2_queue_change_type +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xd9b9e42b vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xe3a36a86 vb2_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xe95f72cf vb2_fop_read +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-vmalloc 0x5f7f4b41 vb2_vmalloc_memops +EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0x42172dbf dvb_module_probe +EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0x57b08730 dvb_module_release +EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0xb3fe9085 dvb_create_media_graph +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/as102_fe 0x346879d3 as102_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24117 0xbaaea2c1 cx24117_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/gp8psk-fe 0xcfe30753 gp8psk_fe_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mxl5xx 0x7bb7230b mxl5xx_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0910 0x9849b493 stv0910_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv6111 0x9062330c stv6111_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0x5d293b8f tda18271c2dd_attach +EXPORT_SYMBOL_GPL drivers/media/i2c/aptina-pll 0xe242d654 aptina_pll_calculate +EXPORT_SYMBOL_GPL drivers/media/i2c/ccs-pll 0x04ebd112 ccs_pll_calculate +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x108974c1 max9271_set_address +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x2fddc5ed max9271_disable_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x5bc0d538 max9271_set_translation +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x818f5098 max9271_set_high_threshold +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x84f01b4c max9271_set_serial_link +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x9e6a1b30 max9271_wake_up +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xa6c928cc max9271_enable_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xb7894b9b max9271_set_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xc4039db9 max9271_clear_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xc9e68187 max9271_set_deserializer_address +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xd4e2349e max9271_configure_gmsl_link +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xf4cb6c5d max9271_configure_i2c +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xfca670f9 max9271_verify_id +EXPORT_SYMBOL_GPL drivers/media/i2c/power_ctrl_logic 0x61e30e03 power_ctrl_logic_set_power +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x009721bf media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x02c0d32f media_device_register_entity_notify +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x037cad27 media_devnode_create +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x0eab00b0 media_remove_intf_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x123716bd media_device_unregister_entity +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x1b623c69 media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x234a1ba5 media_device_unregister_entity_notify +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x24f200a3 media_graph_walk_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x2880c13d media_request_object_put +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x2f6a9334 media_entity_pads_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x325e1429 __media_remove_intf_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x359435fa media_device_unregister +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x3f67a04a media_device_usb_allocate +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x47c59995 media_device_delete +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x52363c66 media_request_get_by_fd +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x56f13835 __media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x5751302c media_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x5bb76671 media_remove_intf_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x60ffe39e media_request_object_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x64320c11 media_graph_walk_next +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x6877ead9 __media_remove_intf_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x69d89f9a media_device_register_entity +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x71f62f6f __media_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x727fe2d8 media_graph_walk_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x790fc90b media_request_put +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x829cb1f8 media_create_intf_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x8706674b media_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x8c72ad1c media_request_object_complete +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x8cb6b6e2 media_entity_find_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x99a0c53d media_device_pci_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x9eedcf61 media_request_object_unbind +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xaded4730 media_create_pad_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xae4351a1 __media_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xb155994a media_get_pad_index +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xba631230 media_devnode_remove +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xbd9fd6d5 __media_device_register +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc3066cd2 __media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc3a41e41 media_entity_get_fwnode_pad +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc6e6ad70 media_device_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xccc7923b media_request_object_find +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe1c68d52 media_device_cleanup EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe5ceecd6 media_entity_enum_cleanup -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xed7cd608 media_entity_remote_pad -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf02832a6 media_device_register_entity_notify +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe9f0fa87 media_graph_walk_cleanup +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xebcca3c6 media_entity_remote_pad +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf20a6f0c media_create_pad_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf634d937 media_request_object_bind +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf80c6057 __media_device_usb_init EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xfc781c47 __media_entity_enum_init -EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0xa5b79863 cx88_setup_xc3028 -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x069913bd mantis_i2c_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x24d606db mantis_dma_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x25d56413 mantis_input_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x27dfd25b mantis_gpio_set_bits -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x32f04e79 mantis_pci_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x4037e640 mantis_frontend_power -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x51582dca mantis_input_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x52e956cb mantis_dvb_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x5979a81a mantis_pci_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x85b9293e mantis_ca_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x9aa14466 mantis_i2c_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xabfc9785 mantis_ca_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xac62a261 mantis_frontend_soft_reset -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xb75811e5 mantis_uart_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xb8803c53 mantis_get_mac -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xb8ee5100 mantis_dma_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xced10110 mantis_dvb_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xda3b0932 mantis_stream_control -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xee2dcc31 mantis_uart_exit -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x223d1eea saa7134_g_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x302f30e3 saa7134_s_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x368e5292 saa7134_ts_stop_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x3f4bcd61 saa7134_querystd -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x4f6540d0 saa7134_g_std -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x539ee7a8 saa7134_g_frequency -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x5cbb5916 saa7134_vb2_buffer_queue -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x76b023c2 saa7134_stop_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x81d3d2c1 saa7134_ts_buffer_prepare -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x83e9e63b saa7134_ts_buffer_init -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x873e356b saa7134_ts_queue_setup -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xa6a5c6f2 saa7134_s_tuner -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xaef0ac1c saa7134_enum_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xb05e6326 saa7134_s_frequency -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xb1e12aba saa7134_querycap -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xb7ebc096 saa7134_g_tuner -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xc45349ab saa7134_ts_start_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xcad7e85c saa7134_ts_qops -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xe5eadd2d saa7134_s_std -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x23176193 ttpci_budget_debiread +EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0x32babce9 cx88_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/pci/intel/ipu6/intel-ipu6 0x218eb7d6 ipu_fw_com_prepare +EXPORT_SYMBOL_GPL drivers/media/pci/intel/ipu6/intel-ipu6 0x2b42c6f7 ipu_cpd_pkg_dir_get_num_entries +EXPORT_SYMBOL_GPL drivers/media/pci/intel/ipu6/intel-ipu6 0x36a1aae2 ipu_buttress_add_psys_constraint +EXPORT_SYMBOL_GPL drivers/media/pci/intel/ipu6/intel-ipu6 0x453df549 ipu_trace_restore +EXPORT_SYMBOL_GPL drivers/media/pci/intel/ipu6/intel-ipu6 0x58745343 ipu_send_get_token +EXPORT_SYMBOL_GPL drivers/media/pci/intel/ipu6/intel-ipu6 0x5a973c99 ipu_buttress_tsc_ticks_to_ns +EXPORT_SYMBOL_GPL drivers/media/pci/intel/ipu6/intel-ipu6 0x5d5d2189 ipu_recv_put_token +EXPORT_SYMBOL_GPL drivers/media/pci/intel/ipu6/intel-ipu6 0x62010f0d ipu_trace_uninit +EXPORT_SYMBOL_GPL drivers/media/pci/intel/ipu6/intel-ipu6 0x64aaeec2 ipu_cpd_pkg_dir_get_address +EXPORT_SYMBOL_GPL drivers/media/pci/intel/ipu6/intel-ipu6 0x66dc0351 ipu_buttress_unmap_fw_image +EXPORT_SYMBOL_GPL drivers/media/pci/intel/ipu6/intel-ipu6 0x68d3521a ipu_cpd_validate_cpd_file +EXPORT_SYMBOL_GPL drivers/media/pci/intel/ipu6/intel-ipu6 0x6c08abb9 ipu_buttress_tsc_read +EXPORT_SYMBOL_GPL drivers/media/pci/intel/ipu6/intel-ipu6 0x7842c730 ipu_cpd_pkg_dir_get_type +EXPORT_SYMBOL_GPL drivers/media/pci/intel/ipu6/intel-ipu6 0x7b2c0f76 ipu_cpd_create_pkg_dir +EXPORT_SYMBOL_GPL drivers/media/pci/intel/ipu6/intel-ipu6 0x8a99a3ea ipu_cpd_free_pkg_dir +EXPORT_SYMBOL_GPL drivers/media/pci/intel/ipu6/intel-ipu6 0xa996e10f ipu_fw_com_release +EXPORT_SYMBOL_GPL drivers/media/pci/intel/ipu6/intel-ipu6 0xc17c9beb ipu_buttress_remove_psys_constraint +EXPORT_SYMBOL_GPL drivers/media/pci/intel/ipu6/intel-ipu6 0xc481fd27 ipu_buttress_map_fw_image +EXPORT_SYMBOL_GPL drivers/media/pci/intel/ipu6/intel-ipu6 0xc76903d5 ipu_fw_com_close +EXPORT_SYMBOL_GPL drivers/media/pci/intel/ipu6/intel-ipu6 0xcfff394e ipu_fw_com_open +EXPORT_SYMBOL_GPL drivers/media/pci/intel/ipu6/intel-ipu6 0xd82eb3df ipu_cpd_pkg_dir_get_size +EXPORT_SYMBOL_GPL drivers/media/pci/intel/ipu6/intel-ipu6 0xe10e6751 ipu_fw_com_ready +EXPORT_SYMBOL_GPL drivers/media/pci/intel/ipu6/intel-ipu6 0xe5b4e933 ipu_trace_init +EXPORT_SYMBOL_GPL drivers/media/pci/intel/ipu6/intel-ipu6 0xeb0a3d62 ipu_trace_stop +EXPORT_SYMBOL_GPL drivers/media/pci/intel/ipu6/intel-ipu6 0xf19708cf ipu_send_put_token +EXPORT_SYMBOL_GPL drivers/media/pci/intel/ipu6/intel-ipu6 0xf4be7a05 ipu_recv_get_token +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x0435940a mantis_i2c_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x14715a56 mantis_frontend_power +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x1679caa9 mantis_uart_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x2846a676 mantis_frontend_soft_reset +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x3da80745 mantis_ca_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x3e41300a mantis_dvb_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x45a885d7 mantis_i2c_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x4cc0b03c mantis_pci_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x6b6d090f mantis_input_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x7fdc21d7 mantis_dvb_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x8059af82 mantis_stream_control +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x81f140b8 mantis_gpio_set_bits +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x8308f983 mantis_ca_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x98c3a33e mantis_input_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xa6ecee6a mantis_dma_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xb4b19b61 mantis_pci_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xbae5b46e mantis_uart_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xdd8750e5 mantis_get_mac +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xe771ffb7 mantis_dma_init +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x189ecdec saa7134_g_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x2443a6c0 saa7134_g_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x4b76b543 saa7134_querystd +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x5081470b saa7134_ts_buffer_init +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x5c183345 saa7134_s_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x5f553d36 saa7134_enum_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x61a30f50 saa7134_ts_queue_setup +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x6b1e183b saa7134_g_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x70dbc96e saa7134_s_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x8240affa saa7134_querycap +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x83b7db0f saa7134_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x87359bdc saa7134_ts_qops +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x9655f178 saa7134_ts_buffer_prepare +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xa6a86798 saa7134_s_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xbbc9cc6d saa7134_vb2_buffer_queue +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xd3f83241 saa7134_s_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xd601bda6 saa7134_g_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xed7d58a1 saa7134_ts_start_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xf8de9034 saa7134_ts_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x008e0f71 ttpci_budget_init_hooks +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x4b4bdf64 ttpci_budget_debiwrite +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x5e95a9ab ttpci_budget_deinit EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x7948c222 budget_debug -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x7c90bba2 ttpci_budget_deinit -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xb53114d2 ttpci_budget_init -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xb6e2f06f ttpci_budget_init_hooks -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xb9dfea2d ttpci_budget_irq10_handler -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xfa4a85e2 ttpci_budget_debiwrite -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xfe68576c ttpci_budget_set_video_port -EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0x121e1cae mccic_register -EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0x2faac7d4 mccic_suspend -EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0x33a4c2e5 mccic_resume -EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0x52ef911c mccic_irq -EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0xabf7ca23 mccic_shutdown -EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0xb746bd08 radio_tea5777_init -EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0xe1ff16c4 radio_tea5777_exit -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x09f35533 si470x_viddev_template -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x45a26819 si470x_set_freq -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x8dc8d309 si470x_stop -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xa4705373 si470x_ctrl_ops -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xedbaa2a4 si470x_start -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x03c50323 ir_raw_event_set_idle -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x107f4d8d rc_keyup -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x2b5b262a rc_keydown_notimeout -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x2e181735 ir_raw_event_store_edge +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x8086b83e ttpci_budget_set_video_port +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xad4b029c ttpci_budget_debiread +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xbc371403 ttpci_budget_irq10_handler +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xdadcefbe ttpci_budget_init +EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0x30df0594 mccic_suspend +EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0xa7387297 mccic_resume +EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0xb0a2998d mccic_shutdown +EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0xc9c5b3a9 mccic_irq +EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0xd44250a2 mccic_register +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x1eff596c radio_tea5777_exit +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x5d9f100a radio_tea5777_init +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x42883d93 si470x_set_freq +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x42e50c55 si470x_start +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x8e8d87c3 si470x_ctrl_ops +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xdf1c416e si470x_viddev_template +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xf095e231 si470x_stop +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x284ef7b3 rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x29842714 ir_raw_event_set_idle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x2c85df62 rc_keyup EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x2ed90ced rc_map_unregister -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x32dec8c0 rc_free_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x540b1e04 rc_repeat -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x5bfbe757 devm_rc_register_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x6ea7dccd ir_raw_event_handle -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x87be95c6 lirc_scancode_event -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x88981790 rc_g_keycode_from_table +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x414bb78b rc_keydown_notimeout +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x4884296f devm_rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x67300f99 ir_raw_event_store_with_filter +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x6a134fe5 devm_rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x71faa783 rc_keydown +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x8c27c38f ir_raw_event_store_edge +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x97f20aea ir_raw_event_store +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xad1c58b9 rc_unregister_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb59aa3ad ir_raw_event_handle EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb960f15c rc_map_register -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xba148f95 rc_unregister_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xbd9edb3f rc_register_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xc63b419e devm_rc_allocate_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xd1c23e98 ir_raw_event_store -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xd2149e7c ir_raw_event_store_with_filter -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xdc0adc14 rc_allocate_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xe19bfe80 ir_raw_event_store_with_timeout +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xc42fbcdd rc_repeat +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xc55f81aa rc_free_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xd925fc01 lirc_scancode_event +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xde637971 ir_raw_event_store_with_timeout +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xe1445fff rc_g_keycode_from_table +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xe885b469 rc_allocate_device EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xfc5d3079 rc_map_get -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xff30726a rc_keydown -EXPORT_SYMBOL_GPL drivers/media/tuners/mt2063 0xbfb942f6 mt2063_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/mt20xx 0xf96da741 microtune_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5007t 0x6487ab96 mxl5007t_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/r820t 0x9a5caf81 r820t_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda18271 0x6927538d tda18271_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda827x 0x75470137 tda827x_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x57a26bb4 tda829x_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x93377370 tda829x_probe -EXPORT_SYMBOL_GPL drivers/media/tuners/tda9887 0xac5f4399 tda9887_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x6a67a33f tea5761_autodetection -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x8abe4556 tea5761_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x4b51843b tea5767_autodetection -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x8afcee79 tea5767_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tuner-simple 0xd78333fd simple_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mt2063 0x7ee062f3 mt2063_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mt20xx 0x3591642e microtune_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5007t 0x3e3f7cda mxl5007t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/r820t 0xe4ffa58c r820t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda18271 0xf991a292 tda18271_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda827x 0x943c41d3 tda827x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x7144ed10 tda829x_probe +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0xfd587ecd tda829x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda9887 0x69561133 tda9887_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x4fb717fc tea5761_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x94fd8396 tea5761_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x31951ee9 tea5767_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x99dd83dd tea5767_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tuner-simple 0x3002084a simple_tuner_attach EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x017ea7c7 cx231xx_tuner_callback -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x22908dc6 is_fw_load -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x3b6e3b47 cx231xx_send_gpio_cmd -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x41eff11f cx231xx_init_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x448e671f cx231xx_uninit_bulk -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x46459d08 cx231xx_set_mode -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x5f6b1979 cx231xx_dev_init -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x70db2248 cx231xx_demod_reset -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x8d349930 cx231xx_init_vbi_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x9193613a cx231xx_enable_i2c_port_3 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xa480dffc cx231xx_dev_uninit -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xa744fa71 cx231xx_uninit_vbi_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xb990124a cx231xx_send_usb_command -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xbee0b6d6 cx231xx_get_i2c_adap -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xc5800555 cx231xx_unmute_audio -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xc8b8fb0b cx231xx_init_bulk -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xd9eb4190 cx231xx_disable656 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xe6a55e71 cx231xx_set_alt_setting -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xe7560c01 cx231xx_enable656 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xe8a34ebf cx231xx_capture_start -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xfe8f553b cx231xx_uninit_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0x422af04e mxl111sf_demod_attach -EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0x95b45de3 mxl111sf_tuner_attach -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x0588ab76 em28xx_write_reg_bits -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x10058354 em28xx_find_led -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x15f67680 em28xx_gpio_set -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x1e960ee8 em28xx_read_reg -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x3a0aa0b0 em28xx_read_ac97 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x4abef24e em28xx_stop_urbs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x4c535a13 em28xx_audio_analog_set -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x4cf0a05d em28xx_set_mode -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x52cde56d em28xx_setup_xc3028 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x5f4bc7b6 em28xx_init_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x04fb7d66 cx231xx_capture_start +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x1cc25b0c cx231xx_uninit_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x29611e58 cx231xx_enable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x32409133 cx231xx_send_gpio_cmd +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x55f3e437 cx231xx_send_usb_command +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x5ec586f8 cx231xx_demod_reset +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x65b21e34 cx231xx_unmute_audio +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x67f0f0e2 cx231xx_disable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x71a288b7 cx231xx_uninit_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x75506175 cx231xx_enable_i2c_port_3 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x8f14be8e cx231xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x96e935ca cx231xx_get_i2c_adap +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x9dce78a8 cx231xx_dev_uninit +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xb21f87a3 cx231xx_init_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xb66ab4b3 cx231xx_init_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xbc52456f cx231xx_init_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xc8ba4701 cx231xx_dev_init +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xd1941a76 cx231xx_set_alt_setting +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xd7a6d3c5 cx231xx_uninit_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xf92fedf1 is_fw_load +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0x92d36a96 mxl111sf_demod_attach +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0xba438410 mxl111sf_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x067f1862 em28xx_init_camera +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x1f7c9b3a em28xx_audio_setup +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x636aea7e em28xx_find_led +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x682ebd48 em28xx_write_reg_bits EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x721f7cc7 em28xx_free_device -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7b7b335d em28xx_toggle_reg_bits -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7ebd062d em28xx_init_camera +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x788ad77f em28xx_read_reg EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7fc8652c em28xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x817251a6 em28xx_alloc_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x83c78b31 em28xx_gpio_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x9083bd7b em28xx_uninit_usb_xfer EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x921d7c65 em28xx_boards -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x98c9a1f9 em28xx_uninit_usb_xfer -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xb1b73a9d em28xx_write_ac97 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xde321096 em28xx_write_reg -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xf02bc1c0 em28xx_write_regs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xf15f2f0b em28xx_alloc_urbs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xfcb8e7a9 em28xx_audio_setup +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x930b20ed em28xx_stop_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xa1a36cef em28xx_write_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xcf7b071d em28xx_write_regs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xd1a89ef5 em28xx_init_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xd437e67c em28xx_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xe6b889ae em28xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xe7b4d029 em28xx_write_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xfd241eb9 em28xx_audio_analog_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xff83eca0 em28xx_read_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xffdf7d47 em28xx_toggle_reg_bits EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x2309a6d6 tm6000_xc5000_callback -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x7793400d tm6000_set_reg -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x7a4996c2 tm6000_get_reg +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x7010b1ef tm6000_set_reg_mask EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x89b611dd tm6000_debug -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x9a20e26e tm6000_set_reg_mask +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x90e52606 tm6000_set_audio_bitrate +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xb2928e76 tm6000_set_reg EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xdff8e89d tm6000_tuner_callback -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xf477c072 tm6000_set_audio_bitrate -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x39f264f4 __v4l2_async_notifier_add_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x5614977a v4l2_async_notifier_cleanup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0xa2e8c5e1 __v4l2_async_notifier_add_fwnode_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0xab5020c0 __v4l2_async_notifier_add_fwnode_remote_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0xbcc676c7 __v4l2_async_notifier_add_i2c_subdev +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xe01d8bf3 tm6000_get_reg +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x29966b80 __v4l2_async_notifier_add_fwnode_remote_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x313f8808 __v4l2_async_notifier_add_i2c_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x62dd5bad v4l2_async_notifier_cleanup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x9b2c7526 __v4l2_async_notifier_add_fwnode_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0xa3f27787 __v4l2_async_notifier_add_subdev EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x01612c0b v4l2_detect_gtf EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x08402862 v4l2_print_dv_timings EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x0958448b v4l2_set_edid_phys_addr @@ -14049,393 +14085,397 @@ EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xef15cc44 v4l2_hdmi_rx_colorimetry 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 0x1eebeebe v4l2_flash_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0xa7eac0f2 v4l2_flash_indicator_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0xd6089261 v4l2_flash_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x07d8e3b0 v4l2_fwnode_connector_add_link -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x10ebeb29 v4l2_fwnode_endpoint_parse -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x2dfed44c v4l2_fwnode_endpoint_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x5331fa47 v4l2_fwnode_connector_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x0813aa8c v4l2_flash_indicator_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x61a783f6 v4l2_flash_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0xf7613612 v4l2_flash_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x0d40678b v4l2_fwnode_parse_link +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x4e39345d 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 0x6775130b v4l2_fwnode_endpoint_alloc_parse -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x6b33560a v4l2_fwnode_parse_link -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x7bfd53cb v4l2_async_notifier_parse_fwnode_endpoints -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xd1809796 v4l2_fwnode_device_parse -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xe3082e14 v4l2_fwnode_put_link -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xe43b78ff v4l2_async_register_subdev_sensor -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x025c5fc1 v4l2_m2m_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0b633048 v4l2_m2m_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0d81f217 v4l2_m2m_try_schedule -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x11c71fe1 v4l2_m2m_last_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x145d4368 v4l2_m2m_ioctl_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x15365834 v4l2_m2m_encoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1cbac35b v4l2_m2m_buf_remove_by_idx -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1f43889d v4l2_m2m_update_stop_streaming_state -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x219098c4 v4l2_m2m_register_media_controller -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x25a41ac4 v4l2_m2m_ioctl_stateless_decoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x33521724 v4l2_m2m_ioctl_encoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3b6bdfe6 v4l2_m2m_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x44963b70 v4l2_m2m_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x47cb406f v4l2_m2m_ioctl_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x47f2e9f0 v4l2_m2m_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x49677906 v4l2_m2m_ioctl_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x50d9f5bc v4l2_m2m_buf_remove -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x58d58785 v4l2_m2m_ioctl_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5a450321 v4l2_m2m_ioctl_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7191c417 v4l2_m2m_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x6aaef6a2 v4l2_fwnode_endpoint_alloc_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x7ce2d51c v4l2_fwnode_device_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x966d4b0e v4l2_async_notifier_parse_fwnode_endpoints +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xa3619737 v4l2_fwnode_endpoint_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xa9ee1b19 v4l2_fwnode_put_link +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xc577ac85 v4l2_fwnode_connector_add_link +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xc922784d v4l2_async_register_subdev_sensor +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xcd60e1f5 v4l2_fwnode_connector_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x01248313 v4l2_m2m_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0cf6b5f8 v4l2_m2m_ctx_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x156d9cda v4l2_m2m_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1f6cac0b v4l2_m2m_register_media_controller +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x25cd0b28 v4l2_m2m_ioctl_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x2fdd1cb3 v4l2_m2m_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x47b08507 v4l2_m2m_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x482f70fe v4l2_m2m_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4b6cc4c8 v4l2_m2m_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5571aec2 v4l2_m2m_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x56f74c7f v4l2_m2m_fop_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5cf18af8 v4l2_m2m_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5ef82873 v4l2_m2m_ctx_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x61772bc5 v4l2_m2m_last_buf EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x730f2eae v4l2_m2m_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x734ed7c5 v4l2_m2m_ioctl_try_encoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7511a3b0 v4l2_m2m_ioctl_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x758961f0 v4l2_m2m_buf_copy_metadata -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7b246128 v4l2_m2m_request_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7dc2193b v4l2_m2m_decoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x84551013 v4l2_m2m_ioctl_stateless_try_decoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x868cf42c v4l2_m2m_ioctl_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8d2ca107 v4l2_m2m_ioctl_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa2de304e v4l2_m2m_fop_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xacb53c7d v4l2_m2m_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xad2535a1 v4l2_m2m_fop_mmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xae4bddef v4l2_m2m_ctx_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb1f7ee02 v4l2_m2m_last_buffer_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb24891c1 v4l2_m2m_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb301defb v4l2_m2m_update_start_streaming_state -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xbd668373 v4l2_m2m_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xbdf056a2 v4l2_m2m_next_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7d63d664 v4l2_m2m_ioctl_try_encoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8085901f v4l2_m2m_buf_remove +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8eb503a4 v4l2_m2m_try_schedule +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8edd345d v4l2_m2m_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x93531fdb v4l2_m2m_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa37dbda0 v4l2_m2m_ioctl_try_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa85a8c2a v4l2_m2m_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa9233a60 v4l2_m2m_ioctl_stateless_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa9686527 v4l2_m2m_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb229866e v4l2_m2m_last_buffer_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb7548926 v4l2_m2m_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb837b57c v4l2_m2m_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc220a30f v4l2_m2m_expbuf EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc6fca5ad v4l2_m2m_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc80964ef v4l2_m2m_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd183f94a v4l2_m2m_buf_remove_by_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd21633c1 v4l2_m2m_ioctl_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xea333ec7 v4l2_m2m_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc96f541a v4l2_m2m_buf_copy_metadata +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xcd406286 v4l2_m2m_next_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xcee96bb1 v4l2_m2m_buf_remove_by_idx +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd5c04707 v4l2_m2m_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd7390bc0 v4l2_m2m_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd88c420f v4l2_m2m_ioctl_encoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe3981242 v4l2_m2m_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe85ba752 v4l2_m2m_update_start_streaming_state +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xed0753f0 v4l2_m2m_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf06ab814 v4l2_m2m_update_stop_streaming_state EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf13ff84d v4l2_m2m_unregister_media_controller -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf4d9795a v4l2_m2m_ioctl_decoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf59e2047 v4l2_m2m_ctx_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf81e1604 v4l2_m2m_ioctl_try_decoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x06911bfa videobuf_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x1948ebec videobuf_mmap_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x389a8dc9 videobuf_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x3aed4936 videobuf_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x56a6be9b videobuf_next_field -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x6245ad87 videobuf_iolock -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x63eaaf60 videobuf_read_start -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x728795c3 videobuf_queue_is_busy -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x74b521d1 videobuf_queue_core_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x83ad7f80 videobuf_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x84def8cd videobuf_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x8625483b videobuf_mmap_mapper -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x971697cf videobuf_poll_stream -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x9ae2da1a videobuf_queue_to_vaddr -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xa8806d8d videobuf_read_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xad7752be videobuf_read_stream -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xb8dea71e videobuf_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xbb37f579 __videobuf_mmap_setup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xbb511089 videobuf_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xbb6b02fe videobuf_mmap_setup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xbcc85131 videobuf_queue_cancel -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd842d25e videobuf_read_one -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xe45af06f videobuf_alloc_vb -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xfd88a5c8 videobuf_waiton -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x03b05ec8 videobuf_dma_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x423ef1f7 videobuf_queue_sg_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x49480bb7 videobuf_to_dma +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf2e60dbc v4l2_m2m_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf30c0283 v4l2_m2m_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf741e938 v4l2_m2m_request_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf756a068 v4l2_m2m_encoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf8644b6d v4l2_m2m_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xfc8753bc v4l2_m2m_ioctl_stateless_try_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xfef5ae25 v4l2_m2m_buf_remove_by_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x022e186e videobuf_read_one +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x13a72752 __videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x1916be4e videobuf_mmap_mapper +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x1fff1585 videobuf_queue_cancel +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x34a137d7 videobuf_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x4994e725 videobuf_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x4f9a4e0b videobuf_queue_to_vaddr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x54fdc6a1 videobuf_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x5a376d7e videobuf_iolock +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x66398bba videobuf_read_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x889755f7 videobuf_queue_is_busy +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x9013977f videobuf_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x9981f453 videobuf_read_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x9fa45bc1 videobuf_next_field +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xaf172903 videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xb4b2f744 videobuf_queue_core_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xb5d17dd3 videobuf_poll_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xbae8b027 videobuf_waiton +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xc17667dd videobuf_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xc3f0b58c videobuf_alloc_vb +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xcfde58eb videobuf_read_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd2b21e28 videobuf_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd43a1b99 videobuf_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xfb114c69 videobuf_mmap_free EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x553a86d0 videobuf_sg_alloc -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xd48a94c1 videobuf_dma_unmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x2f026a34 videobuf_vmalloc_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x6d9b5dd8 videobuf_queue_vmalloc_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0xd9e78a8d videobuf_to_vmalloc -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x01d0a8d7 v4l2_create_fwnode_links -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x03c3c2b5 v4l2_s_parm_cap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0a4a6c42 __SCK__tp_func_vb2_v4l2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x12e7c122 v4l2_i2c_subdev_addr -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x18c157ec v4l2_spi_subdev_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x19a32f3f v4l2_subdev_get_fwnode_pad_1_to_1 -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1ddfd387 v4l2_event_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x24d76a70 v4l2_g_parm_cap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x27111396 v4l2_src_change_event_subdev_subscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x336b582d v4l2_fh_is_singular -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x38cb5e53 v4l2_i2c_subdev_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3955e282 v4l2_event_wake_all -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3aef2850 v4l_vb2q_enable_media_source -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3fdf82ea __tracepoint_vb2_v4l2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x43daf71e v4l2_create_fwnode_links_to_pad -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x45828a0d __traceiter_vb2_v4l2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x483de5c9 __SCK__tp_func_vb2_v4l2_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4c151f67 v4l2_compat_ioctl32 -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4cda05e0 v4l2_event_pending -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x50b25c39 v4l2_fh_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x53446fb8 v4l2_device_unregister_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5458e248 v4l2_subdev_link_validate_default -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x57aed66e __traceiter_vb2_v4l2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5b2219c6 v4l2_ctrl_request_hdl_ctrl_find -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x61d61bd9 v4l2_subdev_notify_event -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6cbf9087 __tracepoint_vb2_v4l2_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6ceac5a2 v4l2_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x6111983f videobuf_queue_sg_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x79e385ab videobuf_dma_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xd4a17e7d videobuf_dma_unmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xf1b44e3a videobuf_to_dma +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0xc3831b08 videobuf_to_vmalloc +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0xd84e1fef videobuf_queue_vmalloc_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0xe8a24581 videobuf_vmalloc_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x043025fd v4l2_g_parm_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x043186bf v4l2_device_unregister +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0dcbe242 v4l2_fh_del +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1611953c __traceiter_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1806fd51 v4l2_src_change_event_subdev_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x183d77b6 v4l2_spi_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x19230b87 __tracepoint_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1a0f9856 v4l2_device_put +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1b0cdf5a v4l2_device_set_name +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1b8b2850 v4l2_ctrl_request_hdl_ctrl_find +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1bd99e70 v4l2_event_subdev_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1beb60ec v4l2_i2c_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1e53202d __tracepoint_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x210d42e6 v4l2_event_pending +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x21b43f2f __traceiter_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x27ab99b0 v4l2_pipeline_pm_get +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x28a4a849 v4l2_subdev_link_validate_default +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x28c3c293 v4l2_create_fwnode_links +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x353fa948 v4l2_fh_add +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3f4f09d4 v4l2_i2c_subdev_set_name +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3f86cd39 __SCK__tp_func_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x40a97e9e __traceiter_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x46da33da __v4l2_ctrl_handler_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x491e6a06 v4l2_i2c_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4a2b64b4 v4l2_create_fwnode_links_to_pad +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4e62c3f4 v4l2_fh_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x59358815 v4l2_subdev_link_validate +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5a66f0f8 v4l2_pipeline_pm_put +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x654c550b v4l2_src_change_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6cbffcd4 __SCK__tp_func_vb2_v4l2_dqbuf 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 0x6eccf844 v4l2_device_register_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7023185c __traceiter_vb2_v4l2_buf_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x737f2cc8 v4l2_event_unsubscribe_all -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x73d7a0b7 v4l2_pipeline_pm_get -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x75e51364 v4l2_i2c_new_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7ba8ee4d v4l2_event_subdev_unsubscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x808f25a5 v4l2_pipeline_pm_put -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x826e2687 v4l2_event_dequeue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x89a68529 v4l2_device_put -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8b61994b v4l2_fh_del -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x90a122e5 v4l2_fh_exit -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x97a41a24 __SCK__tp_func_vb2_v4l2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x97d79dcf v4l2_event_unsubscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x98db702a __v4l2_device_register_subdev_nodes -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9946d9eb v4l2_fh_add -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x99de3c04 v4l2_fh_open -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9ab54212 v4l2_spi_new_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9b0a82a0 __tracepoint_vb2_v4l2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9e6ce7cb v4l2_mc_create_media_graph +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x769322aa v4l2_event_wake_all +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7962ed22 v4l_enable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7d594a40 v4l2_pipeline_link_notify +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x815c8fec v4l2_device_disconnect +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x835680f4 v4l2_s_parm_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8730c6ff v4l2_device_unregister_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x98d0e713 v4l2_fh_open +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9bc8fb08 v4l2_event_dequeue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9f0af283 v4l2_event_unsubscribe_all EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9fef35ac v4l2_apply_frmsize_constraints +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9ff24e04 v4l2_spi_subdev_init EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa1893d14 __SCT__tp_func_vb2_v4l2_buf_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa2389aee v4l2_src_change_event_subscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa961250f v4l2_device_disconnect -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xae2c3bab __SCK__tp_func_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa47c57f7 v4l2_ctrl_request_hdl_find +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa5cb79f7 __tracepoint_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xaaff4fe8 v4l2_i2c_subdev_addr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xad07870d v4l_disable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xad7b24e6 __tracepoint_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xaf11caf2 v4l2_subdev_get_fwnode_pad_1_to_1 +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xaf6448bd v4l2_subdev_alloc_state EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb13d41a0 v4l2_subdev_free_state -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb26ba006 __tracepoint_vb2_v4l2_buf_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbf09ca22 v4l_enable_media_source -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbf68c987 __traceiter_vb2_v4l2_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc35e961b v4l_disable_media_source -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc632d4c6 v4l2_pipeline_link_notify +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb2843bf7 __v4l2_device_register_subdev_nodes +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb70fa685 v4l2_fh_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb996d473 v4l2_fh_is_singular +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbb384d5b v4l2_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbb96b913 __SCK__tp_func_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbc062bfa v4l2_device_register +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbd0fe3c8 v4l_vb2q_enable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc6fba733 v4l2_compat_ioctl32 EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc8dd867f __SCT__tp_func_vb2_v4l2_buf_queue EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcc501597 v4l2_fill_pixfmt -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcd3bb31d v4l2_device_set_name -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcff7e3e8 v4l2_i2c_new_subdev_board -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd2affbb0 v4l2_event_queue_fh -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd352eb2f v4l2_device_unregister -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd4e82bb5 v4l2_i2c_subdev_set_name +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd053f947 __traceiter_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd140cc76 v4l2_subdev_notify_event EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd541e31a __SCT__tp_func_vb2_v4l2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd54f92f5 __v4l2_ctrl_handler_setup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd7dcfa28 v4l2_get_link_freq -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xde0eaa22 v4l2_subdev_alloc_state +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd5dea533 v4l2_fh_exit +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd987e50b v4l2_event_queue_fh EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe2822320 __v4l2_find_nearest_size -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe282c8c2 v4l2_fh_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe3162cfe v4l2_ctrl_request_hdl_find +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe55c9bca v4l2_get_link_freq +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe9c78f49 v4l2_event_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xeb247306 __SCK__tp_func_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xefca3360 v4l2_mc_create_media_graph +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf1663789 v4l2_i2c_new_subdev_board 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 0xf87da230 v4l2_subdev_link_validate -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfe036c3c v4l2_device_register -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x7e24d62b pm80x_pm_ops -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xd2222d86 pm80x_regmap_config +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfcf1f7e4 v4l2_device_register_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfdfe803f v4l2_event_queue +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x1980643f pm80x_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x554dac6b pm80x_init +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x569f0180 pm80x_regmap_config EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xd99fd720 pm80x_deinit -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xf03a93b7 pm80x_init -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x1901d962 wm5102_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x24046eed wm8997_patch -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x2697ada3 cs47l24_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x0168b932 wm5102_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x01722bec arizona_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x146208ed arizona_clk32k_disable +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x3730c4de arizona_free_irq EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x4048fbbc wm8997_aod -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x410be1ef arizona_set_irq_wake -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x49433ea1 wm5110_patch -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x4bcbceda wm8998_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x4250787e wm5102_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x4767e09f wm5110_patch EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x4c087981 wm5110_aod -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x4d5a89e6 arizona_pm_ops -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x5a39182e wm5102_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x6222e557 arizona_clk32k_disable -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x6cbb1bef wm8997_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x6f9c68d8 cs47l24_patch -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x71090493 arizona_free_irq -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x746d2c90 arizona_clk32k_enable -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xa4956669 arizona_dev_exit +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x4de49537 cs47l24_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x53a2ae8a wm8998_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x74d27bbf wm8997_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x8aa68eca cs47l24_patch +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x945daff0 arizona_dev_exit EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xa6b70564 wm8997_irq EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xa727bd3b cs47l24_irq -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xa76a4c13 wm5110_spi_regmap EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xaaf78759 wm5110_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xbf032c43 wm5110_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xc7a0c3cb wm8997_patch EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xc81b43ab wm5110_revd_irq -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xd6a7fe93 arizona_request_irq -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xe4528d5f wm5110_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xfa13b252 arizona_dev_init -EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0x42641057 atc260x_device_probe -EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0xb904e874 atc260x_match_device -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x01bdfd3b da9150_bulk_write -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x2f01d741 da9150_write_qif -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x30475739 da9150_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x3be217b8 da9150_read_qif -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x4b9d579c da9150_set_bits -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x5340c287 da9150_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x671016d2 da9150_bulk_read -EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x1a8e1058 intel_lpss_probe -EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x68bec3c5 intel_lpss_suspend -EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0xbdf2497c intel_lpss_prepare -EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0xe2b3e9b8 intel_lpss_remove -EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0xed37729b intel_lpss_resume -EXPORT_SYMBOL_GPL drivers/mfd/intel_pmc_bxt 0x5e0a0fd5 intel_pmc_gcr_update -EXPORT_SYMBOL_GPL drivers/mfd/intel_pmc_bxt 0x64150286 intel_pmc_gcr_read64 -EXPORT_SYMBOL_GPL drivers/mfd/intel_pmc_bxt 0xf705fef8 intel_pmc_s0ix_counter_read +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xca1a119b arizona_clk32k_enable +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xce8d0521 arizona_request_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xcf6bae0f arizona_dev_init +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xf14e98f1 arizona_set_irq_wake +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xfc3bed0f wm5110_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0x5eff92ce atc260x_device_probe +EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0xd565db13 atc260x_match_device +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x37efc300 da9150_bulk_read +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x47297807 da9150_bulk_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x54e67d02 da9150_read_qif +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x5cc4f549 da9150_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x69d04220 da9150_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xc686e517 da9150_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xd4b8f2a5 da9150_write_qif +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x3ffcb9ca intel_lpss_resume +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x5c11f80e intel_lpss_suspend +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x645c46d4 intel_lpss_probe +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0xda084209 intel_lpss_remove +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0xdc37ed0e intel_lpss_prepare +EXPORT_SYMBOL_GPL drivers/mfd/intel_pmc_bxt 0x34556501 intel_pmc_gcr_read64 +EXPORT_SYMBOL_GPL drivers/mfd/intel_pmc_bxt 0x640d3bea intel_pmc_s0ix_counter_read +EXPORT_SYMBOL_GPL drivers/mfd/intel_pmc_bxt 0x898a7cd1 intel_pmc_gcr_update EXPORT_SYMBOL_GPL drivers/mfd/iqs62x 0xa436f4de iqs62x_events -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x39d92a85 kempld_read8 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x52ce1532 kempld_write16 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x6d967afe kempld_release_mutex -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x790f8dfc kempld_read16 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x818fffca kempld_write8 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x967acd21 kempld_get_mutex -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xaf44c8cc kempld_write32 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xf972cc55 kempld_read32 -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x168313c4 lm3533_write -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x38bc406b lm3533_read -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x8d8ec6dd lm3533_update -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x72d246ee lm3533_ctrlbank_enable -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x82a7d4bd lm3533_ctrlbank_get_pwm -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x93b6e46e lm3533_ctrlbank_set_max_current -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xa8780ef9 lm3533_ctrlbank_disable -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xe534b4d0 lm3533_ctrlbank_set_brightness -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xf2e3c2db lm3533_ctrlbank_get_brightness -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xf99472b7 lm3533_ctrlbank_set_pwm -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x05b365e6 lp3943_write_byte -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x2ac9fabc lp3943_update_bits -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x35c41517 lp3943_read_byte -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x0193465a cs47l90_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x019e9a1a cs47l90_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x02e2615d kempld_write32 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x37657b8e kempld_release_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x88b1b1fe kempld_get_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x9e8fa8c9 kempld_read16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xa54c38da kempld_read32 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xa794770a kempld_write16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xdba38f2f kempld_read8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xf0f74ca2 kempld_write8 +EXPORT_SYMBOL_GPL drivers/mfd/ljca 0x0a56540c ljca_transfer +EXPORT_SYMBOL_GPL drivers/mfd/ljca 0x98d4ad26 ljca_register_event_cb +EXPORT_SYMBOL_GPL drivers/mfd/ljca 0x9d247e57 ljca_transfer_noack +EXPORT_SYMBOL_GPL drivers/mfd/ljca 0xe21cebd7 ljca_unregister_event_cb +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x02f16bbd lm3533_update +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xb2e9e297 lm3533_write +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xc8a89c9e lm3533_read +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x2e411552 lm3533_ctrlbank_enable +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x40f645f2 lm3533_ctrlbank_set_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x4c01f5d6 lm3533_ctrlbank_set_max_current +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x5725497a lm3533_ctrlbank_set_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x5add4521 lm3533_ctrlbank_disable +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x5c4d3681 lm3533_ctrlbank_get_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xcf46cd2e lm3533_ctrlbank_get_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x0a2d5c9e lp3943_write_byte +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x7ac2b039 lp3943_update_bits +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xca5b3cb5 lp3943_read_byte +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x0197fa73 cs47l35_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x019a2633 cs47l35_32bit_spi_regmap EXPORT_SYMBOL_GPL drivers/mfd/madera 0x0f379262 madera_of_match -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x194631ea cs47l85_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x194bedaa cs47l85_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x20e3b37e madera_dev_exit -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x2b34aa92 cs47l35_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x2b3976d2 cs47l35_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x36125da7 cs47l92_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x361f81e7 cs47l92_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x42a65b56 cs47l90_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x42ab8716 cs47l90_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x49eee3c4 cs47l90_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x4a219434 madera_dev_init -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x58a10313 cs47l92_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x5a732ce6 cs47l85_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x5a7ef0a6 cs47l85_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x6801b79e cs47l35_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x680c6bde cs47l35_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x6f85d64a cs47l85_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x752740ab cs47l92_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x752a9ceb cs47l92_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x98c99c09 madera_pm_ops -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xa2c21d52 cs47l15_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xa2cfc112 cs47l15_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xe1f7005e cs47l15_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xe1fadc1e cs47l15_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x1cb10d46 cs47l92_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x1cbcd106 cs47l92_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x2b3016bb cs47l90_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x2b3dcafb cs47l90_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x33e5610b cs47l85_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x33e8bd4b cs47l85_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x35ff6ef3 madera_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x42a2e77f cs47l35_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x42af3b3f cs47l35_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x45e95ce1 cs47l92_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x5e5ffb11 cs47l85_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x5f84104a cs47l92_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x5f89cc0a cs47l92_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x68050bb7 cs47l90_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x6808d7f7 cs47l90_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x70d07c07 cs47l85_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x70dda047 cs47l85_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x8456e973 cs47l90_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x88614db3 cs47l15_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x886c91f3 cs47l15_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xadfde4b1 madera_dev_init +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xc78669ab cs47l15_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xcb5450bf cs47l15_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xcb598cff cs47l15_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xd80ebb71 madera_dev_exit +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xd9462476 cs47l35_patch EXPORT_SYMBOL_GPL drivers/mfd/madera 0xebe384cb madera_name_from_type -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xecf6737d cs47l15_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xf4507bea cs47l35_patch -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x87086282 mc13xxx_variant_mc13783 -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x8df46640 mc13xxx_adc_do_conversion -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x950797ea mc13xxx_variant_mc34708 -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x99a9acae mc13xxx_common_init -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xba7147c4 mc13xxx_common_exit -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xc7b229a2 mc13xxx_variant_mc13892 -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x1cf00831 pcf50633_read_block -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x3bc86884 pcf50633_reg_set_bit_mask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x8335578c pcf50633_irq_unmask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x92a8b5a2 pcf50633_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x938b8e6a pcf50633_irq_mask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x9aeed2f7 pcf50633_free_irq -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xa7da9458 pcf50633_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xad9bd58a pcf50633_irq_mask_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xc33a7515 pcf50633_write_block -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xc772b547 pcf50633_reg_clear_bits -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xf6b41b1a pcf50633_register_irq -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x13ede087 pcf50633_adc_sync_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x94c96ab1 pcf50633_adc_async_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x064069cc pcf50633_gpio_power_supply_set -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x36aee30e pcf50633_gpio_set -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xa4a2abf4 pcf50633_gpio_invert_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xabf94516 pcf50633_gpio_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xbdb82c8b pcf50633_gpio_invert_set +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x2c70607f mc13xxx_common_init +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x7f78c189 mc13xxx_adc_do_conversion +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xb839763c mc13xxx_variant_mc13892 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xea8cc874 mc13xxx_variant_mc34708 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xf8833d1c mc13xxx_variant_mc13783 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xff7c87a6 mc13xxx_common_exit +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x0ecd1c64 pcf50633_irq_mask_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x1a3661d2 pcf50633_free_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x2fe9b7b2 pcf50633_read_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x415aaada pcf50633_reg_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x4e8f2b34 pcf50633_reg_set_bit_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x4fa8d7a2 pcf50633_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x53912032 pcf50633_write_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x7c23e759 pcf50633_irq_unmask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x821523f7 pcf50633_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x93a24f68 pcf50633_register_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xb3cbb775 pcf50633_irq_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x9bb4904c pcf50633_adc_async_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0xefa25e2a pcf50633_adc_sync_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x48c92186 pcf50633_gpio_power_supply_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x4fcf5e51 pcf50633_gpio_invert_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x81f11eec pcf50633_gpio_invert_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x9fc984e1 pcf50633_gpio_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xb026f0e1 pcf50633_gpio_get EXPORT_SYMBOL_GPL drivers/mfd/rave-sp 0x43e53ef9 rave_sp_exec -EXPORT_SYMBOL_GPL drivers/mfd/rave-sp 0xe6376aaa devm_rave_sp_register_event_notifier +EXPORT_SYMBOL_GPL drivers/mfd/rave-sp 0xb7f76b98 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 0x1cda35b6 devm_regmap_init_si476x -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x27419413 si476x_core_has_am -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3627c020 si476x_core_cmd_fm_acf_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x376ced10 si476x_core_cmd_power_down -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x39c370dc si476x_core_stop -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3b024b13 si476x_core_is_in_am_receiver_mode -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3f00845f si476x_core_is_a_secondary_tuner -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x420f48b6 si476x_core_set_power_state -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x48741e16 si476x_core_cmd_fm_rds_blockcount -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4e447f3b si476x_core_cmd_set_property -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5305223c si476x_core_cmd_fm_phase_div_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x53fe4507 si476x_core_cmd_fm_tune_freq -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5e133d13 si476x_core_cmd_zif_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6777b3f6 si476x_core_cmd_intb_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8c1908c5 si476x_core_i2c_xfer -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8c681da1 si476x_core_cmd_fm_phase_diversity -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8cbd6b80 si476x_core_cmd_get_property -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8e437b6a si476x_core_cmd_am_acf_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x974e3699 si476x_core_cmd_func_info -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9a60416f si476x_core_cmd_ana_audio_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa046e078 si476x_core_cmd_fm_seek_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa1ddb7d9 si476x_core_cmd_agc_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb2ca3095 si476x_core_is_a_primary_tuner -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb5ababcb si476x_core_cmd_ic_link_gpo_ctl_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xbc3a73b7 si476x_core_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc76b770d si476x_core_is_powered_up -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xcef85e94 si476x_core_cmd_am_seek_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe418e6db si476x_core_cmd_dig_audio_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe84fdb49 si476x_core_has_diversity -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xef68eb92 si476x_core_cmd_am_rsq_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf0744bb7 si476x_core_cmd_fm_rds_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf0a00462 si476x_core_cmd_am_tune_freq -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf992fd3b si476x_core_cmd_power_up -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xfc56b807 si476x_core_cmd_fm_rsq_status -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x011d3e3b sm501_misc_control -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x1c58a301 sm501_find_clock -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x608d4593 sm501_set_clock -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x79d48bbc sm501_modify_reg -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xee215034 sm501_unit_power -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x0921db1f am335x_tsc_se_clr -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x4c3930eb am335x_tsc_se_set_once -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x6f607121 am335x_tsc_se_set_cache -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x7ccc3d0c am335x_tsc_se_adc_done -EXPORT_SYMBOL_GPL drivers/mfd/ucb1400_core 0xc962aa06 ucb1400_adc_read -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x0aec2da4 alcor_write32 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x63c0949b alcor_write32be -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x8c92d086 alcor_write16 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x97ec27df alcor_read32 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xcce8c928 alcor_write8 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xdc6085a8 alcor_read8 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xe7e015c1 alcor_read32be -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x06ae6786 rtsx_pci_read_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x0b8291e6 rtsx_pci_card_exist -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x20dfbed3 rtsx_pci_card_power_off -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x23e3ae60 rtsx_pci_dma_unmap_sg -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x308651af rtsx_pci_stop_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x39f6e8e5 rtsx_pci_complete_unfinished_transfer -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x3a81cd62 rtsx_pci_read_phy_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x738d8a4e rtsx_pci_read_ppbuf -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x779fb2b2 rtsx_pci_transfer_data -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x7b1b77d1 rtsx_pci_card_pull_ctl_enable -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x7d8de9bb rtsx_pci_write_ppbuf -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x7dd354ef rtsx_pci_dma_transfer -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x7de6f069 rtsx_pci_card_power_on -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x80bcc05e rtsx_pci_send_cmd_no_wait -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x8b7f26a2 rtsx_pci_write_phy_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x90df0923 rtsx_pci_send_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xa730f166 rtsx_pci_card_pull_ctl_disable -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xb44c9927 rtsx_pci_card_exclusive_check -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xb7777ab4 rtsx_pci_switch_output_voltage -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xc2ba9f9d rtsx_pci_add_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xc8548fe6 rtsx_pci_dma_map_sg -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xccda2847 rtsx_pci_switch_clock -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xdc83f4d7 rtsx_pci_write_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xeafe5e0f rtsx_pci_start_run -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x055cefb9 rtsx_usb_add_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x2d2f722a rtsx_usb_write_ppbuf -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x342cfb32 rtsx_usb_write_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x41458bc3 rtsx_usb_card_exclusive_check -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x628ebb72 rtsx_usb_switch_clock -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x655869b7 rtsx_usb_get_rsp -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x7da9c30d rtsx_usb_ep0_read_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x859fbae4 rtsx_usb_send_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xa3cec136 rtsx_usb_ep0_write_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xaf137857 rtsx_usb_transfer_data -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xd652f8e4 rtsx_usb_read_ppbuf -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xe1095b72 rtsx_usb_read_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xec7dcf08 rtsx_usb_get_card_status -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x0c299d67 cb710_pci_update_config_reg -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x19516c43 cb710_sg_dwiter_read_next_block -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x752110bc cb710_set_irq_handler -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x99714a8c cb710_sg_dwiter_write_next_block +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x032f0af0 si476x_core_cmd_fm_rds_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0a3fb4d1 si476x_core_cmd_agc_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0f362805 si476x_core_cmd_fm_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x11ca0531 si476x_core_cmd_intb_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x1389beab si476x_core_cmd_power_down +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x155ec0a3 si476x_core_cmd_ic_link_gpo_ctl_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x18919527 devm_regmap_init_si476x +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x246c04d0 si476x_core_cmd_fm_phase_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x24dc1d68 si476x_core_cmd_am_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x36d2264d si476x_core_cmd_set_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x565fd2b9 si476x_core_cmd_am_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5ede625c si476x_core_cmd_func_info +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x66a9f406 si476x_core_is_a_secondary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6d2015b2 si476x_core_cmd_get_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x78be4818 si476x_core_has_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7b457b8c si476x_core_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8b3cad3c si476x_core_cmd_fm_phase_div_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x936e3029 si476x_core_is_a_primary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x98e0f45b si476x_core_cmd_zif_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa1a1b81d si476x_core_stop +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xaacfe36d si476x_core_cmd_fm_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb372e9fb si476x_core_cmd_fm_rds_blockcount +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb7533dc0 si476x_core_cmd_ana_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb7e5874c si476x_core_cmd_fm_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc10b06ae si476x_core_is_powered_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc7f1703a si476x_core_set_power_state +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xcb758d6f si476x_core_i2c_xfer +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xccdd8af8 si476x_core_is_in_am_receiver_mode +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd01f2576 si476x_core_cmd_am_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd692a735 si476x_core_cmd_dig_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe41d68b9 si476x_core_cmd_am_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe5a1bd20 si476x_core_cmd_fm_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf38a607d si476x_core_has_am +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf52dff5b si476x_core_cmd_power_up +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x2e283bf1 sm501_set_clock +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x8ff54004 sm501_find_clock +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xa199da6c sm501_unit_power +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xd8260f8c sm501_modify_reg +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xff8e9d90 sm501_misc_control +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x3b4eaf98 am335x_tsc_se_clr +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x3eb39b12 am335x_tsc_se_adc_done +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x7a303317 am335x_tsc_se_set_once +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xc367def3 am335x_tsc_se_set_cache +EXPORT_SYMBOL_GPL drivers/mfd/ucb1400_core 0x6e03d31c ucb1400_adc_read +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x184a8439 alcor_read8 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x3306f075 alcor_write16 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x37f7c23b alcor_read32be +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x48041fb2 alcor_read32 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xa7204448 alcor_write32 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xbd39005b alcor_write32be +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xec925803 alcor_write8 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x15b70775 rtsx_pci_dma_map_sg +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x2bb4305a rtsx_pci_card_power_on +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x36068a7f rtsx_pci_read_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x381693e7 rtsx_pci_read_phy_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x397adce7 rtsx_pci_switch_output_voltage +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x39b8f302 rtsx_pci_card_pull_ctl_enable +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x51b58f72 rtsx_pci_switch_clock +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x52fdc2e9 rtsx_pci_card_exist +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x55b5ffda rtsx_pci_complete_unfinished_transfer +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x5b053cd7 rtsx_pci_write_phy_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x8935fb7b rtsx_pci_dma_unmap_sg +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x89ef7495 rtsx_pci_card_pull_ctl_disable +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x8f396aa9 rtsx_pci_write_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x9981b740 rtsx_pci_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x9d861c74 rtsx_pci_start_run +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xa3deca88 rtsx_pci_add_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xacfd9a58 rtsx_pci_stop_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xbdbd436d rtsx_pci_send_cmd_no_wait +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xdb3ee7d3 rtsx_pci_read_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xe1b1bbef rtsx_pci_transfer_data +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xe9787ad7 rtsx_pci_dma_transfer +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xf02b2c87 rtsx_pci_card_power_off +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xf4c94d23 rtsx_pci_send_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xfde8a7aa rtsx_pci_write_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x016bdb6b rtsx_usb_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x16c03396 rtsx_usb_read_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x28a10fd3 rtsx_usb_write_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x2dee5f8b rtsx_usb_get_card_status +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x39ba4bb2 rtsx_usb_send_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x3ff3fc6f rtsx_usb_ep0_write_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x51117b9f rtsx_usb_switch_clock +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x5a703d7f rtsx_usb_read_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x84acefcd rtsx_usb_add_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xc7777270 rtsx_usb_get_rsp +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xdc47f1b5 rtsx_usb_write_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xe0fee2f2 rtsx_usb_ep0_read_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xe458db1d rtsx_usb_transfer_data +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x41e6cfea cb710_sg_dwiter_read_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x5cb93ecd cb710_pci_update_config_reg +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x875fd94e cb710_sg_dwiter_write_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xc6521962 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 @@ -14449,57 +14489,63 @@ 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 0x15790d31 enclosure_for_each_device -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x2246dee4 enclosure_component_alloc -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x2ca76de0 enclosure_add_device -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x462821e1 enclosure_find -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x6a44fc5b enclosure_unregister -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xb0c7ff1f enclosure_component_register -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xcf838ff1 enclosure_remove_device -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xd9d5ea38 enclosure_register -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x221e98b2 lis3lv02d_init_dt -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x5e60e1ad lis3lv02d_joystick_disable -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x9aa71fce lis3lv02d_init_device -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xa5427424 lis3lv02d_poweron -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xa8779e5c lis3lv02d_remove_fs -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xd321ed4f lis3lv02d_joystick_enable -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xe3fb9783 lis3lv02d_poweroff -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xeff29841 lis3_dev -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x0473e344 mei_deregister -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x08a87207 mei_start -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x099268e9 mei_irq_read_handler -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x114ad20f mei_device_init -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x1346536e mei_irq_write_handler -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x1c59bfa4 mei_reset -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x1f32dc32 mei_stop -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x1fa267ec mei_cldev_recv_nonblock_vtag -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x3083c583 mei_hbm_pg_resume -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x38bad13b mei_cldev_send -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x3a27554b mei_cldev_recv -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x3e81dc07 mei_hbm_pg -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x56ea7e5d mei_cldev_driver_unregister -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x658b266e mei_cldev_enable -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x79ca8ea3 __mei_cldev_driver_register -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x7f79581f mei_cldev_get_drvdata -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x8864c06d mei_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x1ea20fc1 enclosure_add_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x3364c36d enclosure_find +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x33992907 enclosure_component_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x74bd61dd enclosure_remove_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x7a289a01 enclosure_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x91e73cd5 enclosure_for_each_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x9cc184c7 enclosure_unregister +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xff5839e0 enclosure_component_alloc +EXPORT_SYMBOL_GPL drivers/misc/ivsc/intel_vsc 0x11ec310c vsc_unregister_csi +EXPORT_SYMBOL_GPL drivers/misc/ivsc/intel_vsc 0x45138f90 vsc_register_csi +EXPORT_SYMBOL_GPL drivers/misc/ivsc/intel_vsc 0x5763033e vsc_acquire_camera_sensor +EXPORT_SYMBOL_GPL drivers/misc/ivsc/intel_vsc 0x6b97696c vsc_release_camera_sensor +EXPORT_SYMBOL_GPL drivers/misc/ivsc/intel_vsc 0x77b2fb7c vsc_unregister_ace +EXPORT_SYMBOL_GPL drivers/misc/ivsc/intel_vsc 0xfaaaa50d vsc_register_ace +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x10038a83 lis3lv02d_joystick_enable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x4a4732ee lis3lv02d_poweroff +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x7f3862e3 lis3lv02d_init_dt +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x827a7d1d lis3lv02d_joystick_disable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x95d3b28e lis3lv02d_init_device +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xc21237e1 lis3_dev +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xcec7b196 lis3lv02d_remove_fs +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xd7494fb2 lis3lv02d_poweron +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x04e81a89 mei_cldev_send +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x0e5f646b mei_cldev_set_drvdata +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x1df61fde mei_device_init +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x223e4804 mei_cldev_send_vtag +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x2861ac0a mei_cldev_enabled +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x2fea9da2 mei_irq_read_handler +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x30245db9 mei_reset +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x318f6759 mei_deregister +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x31a84228 mei_restart +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x34022685 mei_cldev_register_rx_cb +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x47921469 mei_cldev_disable +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x5b9123df mei_cldev_uuid +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x5e296763 mei_hbm_pg +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x663c5897 mei_cancel_work +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x683ba6e6 mei_stop +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x756e1ecb mei_write_is_idle +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x76603f6e mei_hbm_pg_resume +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x79094d4b mei_cldev_ver +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x7aea8e04 mei_cldev_recv +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x7bb450c3 mei_cldev_recv_nonblock_vtag +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x7ebe576f mei_cldev_get_drvdata +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x834e9e65 mei_cldev_recv_vtag EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x90a24af4 mei_fw_status2str -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x956d331a mei_cldev_enabled -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x9a3c64ec mei_cldev_recv_vtag -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x9e866496 mei_cldev_disable -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xa3f775c6 mei_cldev_dma_unmap -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xa7710e2e mei_restart -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xaf1bddcd mei_cancel_work -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xb2959f5a mei_cldev_dma_map -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xb8f2b32e mei_cldev_register_rx_cb -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xbb85294e mei_irq_compl_handler -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xbd68e9d9 mei_cldev_uuid -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xbe832898 mei_cldev_recv_nonblock -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xbf46aea4 mei_write_is_idle -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xc421570c mei_cldev_set_drvdata -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xc6ca1096 mei_cldev_ver -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xcdccd35f mei_cldev_send_vtag -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xe385aa7e mei_cldev_register_notif_cb -EXPORT_SYMBOL_GPL drivers/misc/pvpanic/pvpanic 0xfd61c1db devm_pvpanic_probe +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x930fc6d8 mei_cldev_register_notif_cb +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xa09d2a31 mei_irq_compl_handler +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xa521f245 mei_cldev_enable +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xad643528 mei_irq_write_handler +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xb8dfcf21 mei_cldev_dma_map +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xc83b053c __mei_cldev_driver_register +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xd358f6da mei_cldev_driver_unregister +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xd5001327 mei_cldev_dma_unmap +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xdcc6d586 mei_register +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xdeb1d2bc mei_cldev_recv_nonblock +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xf6151340 mei_start +EXPORT_SYMBOL_GPL drivers/misc/pvpanic/pvpanic 0x7d2f3a5d 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 @@ -14523,14 +14569,15 @@ EXPORT_SYMBOL_GPL drivers/misc/sgi-xp/xp 0xf3b47f67 xp_partition_id EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0x472340b2 st_unregister EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0xc8e56e36 st_register -EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0x25af747c uacce_register -EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0x89a81d31 uacce_remove -EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0xcfad6322 uacce_alloc +EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0x579524d0 uacce_register +EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0x9feb9cbf uacce_remove +EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0xe070a386 uacce_alloc EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x024d14bc vmci_qpair_produce_free_space EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x046dd187 vmci_datagram_create_handle EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x056837fb vmci_get_context_id EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x1fd4782d vmci_qpair_get_produce_indexes EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x2449459d vmci_event_subscribe +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x35a3dd36 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 @@ -14545,1642 +14592,1641 @@ 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 0xc4b04b53 vmci_qpair_enquev -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xc6772408 vmci_qpair_dequev +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xc6784f1a vmci_qpair_peekv +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xda4d5822 vmci_qpair_enquev EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xde3abc2e vmci_datagram_create_handle_priv EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xe0cc9c92 vmci_qpair_alloc EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xe11895c1 vmci_event_unsubscribe EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xe67343c1 vmci_qpair_enqueue EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xea143610 vmci_datagram_send EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xea61eefe vmci_qpair_produce_buf_ready -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xfa6959c0 vmci_qpair_peekv -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x0c2ed092 __sdhci_add_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x1427416b sdhci_remove_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x1a9c8ada sdhci_send_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x1c761365 __sdhci_set_timeout -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x28d047e5 sdhci_set_bus_width -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x2a97bda6 sdhci_request_atomic -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x334e0ef8 sdhci_set_power_noreg -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x35c7ca4b sdhci_add_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x36488b08 sdhci_switch_external_dma -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x36ef4587 sdhci_alloc_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x38d426e8 sdhci_set_uhs_signaling -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x3ad84df7 sdhci_free_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x49ff2146 sdhci_dumpregs -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x5b5466a2 sdhci_set_ios -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x5f181180 sdhci_runtime_suspend_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x62efd716 sdhci_reset_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x651ca5c3 sdhci_start_signal_voltage_switch -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x6723a3d0 sdhci_resume_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x706f86a8 sdhci_set_clock -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x7bf4c029 sdhci_end_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x8aa343d3 sdhci_cqe_enable -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x8d05fa05 sdhci_adma_write_desc -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x8fd6cfaa sdhci_start_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x94fa7ecd sdhci_execute_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x9dfa0145 sdhci_set_power -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa94363db sdhci_enable_clk -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xae88ff0e sdhci_enable_sdio_irq -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xb15b9a5e sdhci_reset -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xb6676769 sdhci_cqe_disable -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc0c27e7e sdhci_cleanup_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc1521d03 __sdhci_read_caps -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc1d28a36 sdhci_set_data_timeout_irq -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc6e585a0 sdhci_set_power_and_bus_voltage -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xcd46c69f sdhci_cqe_irq -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xcffd1110 sdhci_runtime_resume_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xd0a09d23 sdhci_request -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xd27d257a sdhci_calc_clk -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xd86805c4 sdhci_enable_v4_mode -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xde95be1d sdhci_setup_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe6f8376b sdhci_suspend_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xf64669bc sdhci_abort_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x01df4c16 sdhci_pltfm_pmops -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x1a33fb4d sdhci_pltfm_resume -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x832c4050 sdhci_pltfm_clk_get_max_clock -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x9d9de213 sdhci_pltfm_free -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xa743caf5 sdhci_get_property -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xa88ce938 sdhci_pltfm_init -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xcd1cc170 sdhci_pltfm_suspend -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xd519e8e8 sdhci_pltfm_unregister -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xf1735c48 sdhci_pltfm_register -EXPORT_SYMBOL_GPL drivers/most/most_core 0x01fc6ef5 most_deregister_interface -EXPORT_SYMBOL_GPL drivers/most/most_core 0x05e99664 most_put_mbo -EXPORT_SYMBOL_GPL drivers/most/most_core 0x07ed5604 most_start_channel -EXPORT_SYMBOL_GPL drivers/most/most_core 0x12a042ca most_stop_enqueue -EXPORT_SYMBOL_GPL drivers/most/most_core 0x1bc800e2 most_register_interface -EXPORT_SYMBOL_GPL drivers/most/most_core 0x278a9388 most_get_mbo -EXPORT_SYMBOL_GPL drivers/most/most_core 0x42b8e265 most_resume_enqueue -EXPORT_SYMBOL_GPL drivers/most/most_core 0x7105b0c8 most_register_configfs_subsys -EXPORT_SYMBOL_GPL drivers/most/most_core 0x83962f9c most_stop_channel -EXPORT_SYMBOL_GPL drivers/most/most_core 0x84d4deaf most_deregister_configfs_subsys -EXPORT_SYMBOL_GPL drivers/most/most_core 0xa0a47f85 channel_has_mbo -EXPORT_SYMBOL_GPL drivers/most/most_core 0xb3b4a190 most_register_component -EXPORT_SYMBOL_GPL drivers/most/most_core 0xbca10b1d most_submit_mbo -EXPORT_SYMBOL_GPL drivers/most/most_core 0xe4caff13 most_deregister_component -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x018da8bf cfi_cmdset_0001 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x3ea48d57 cfi_cmdset_0003 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xc3baa8c1 cfi_cmdset_0200 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x21301fa3 cfi_cmdset_0002 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x5f625473 cfi_cmdset_0006 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xd2c9d025 cfi_cmdset_0701 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0xb0f77924 cfi_cmdset_0020 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x9a987084 cfi_qry_mode_off -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xe216e3d8 cfi_qry_mode_on -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xe51b7e4c cfi_qry_present -EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0x59a72e76 hyperbus_register_device -EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0x879f9da7 hyperbus_unregister_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0306fc94 unregister_mtd_user -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x04c09882 mtd_is_locked -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x099ca3c9 mtd_erase_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0c331cb8 mtd_ooblayout_set_databytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0ce5310e get_mtd_device_nm -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1003ca5b mtd_kmalloc_up_to -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1605bd95 mtd_add_partition -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x26aab524 __get_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x39091c5d get_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x44fc39da mtd_ooblayout_get_databytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x482072ee kill_mtd_super -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x486716b7 mtd_get_device_size +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x0293c5d6 sdhci_set_ios +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x05697193 sdhci_cqe_disable +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x08982477 __sdhci_set_timeout +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x0d55839b sdhci_remove_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x0f4fc4ab sdhci_set_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x0fe8a2ec sdhci_free_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x21733e13 sdhci_cqe_enable +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x2bdd21fa sdhci_set_power_and_bus_voltage +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x2c94dd03 sdhci_start_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x4172d97c sdhci_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x4a42603f sdhci_start_signal_voltage_switch +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x4f11f101 sdhci_calc_clk +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x51d94626 sdhci_runtime_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x59b0bf95 sdhci_alloc_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x5ca79062 sdhci_set_bus_width +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x607a3ed5 sdhci_set_uhs_signaling +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x669bc9a3 sdhci_set_power_noreg +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x741ef5bb sdhci_adma_write_desc +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x7754ca10 sdhci_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x79d95a30 sdhci_send_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x7b2d9318 sdhci_add_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x8d5c8a18 sdhci_request_atomic +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x973e1a3e sdhci_reset_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa45bfc69 sdhci_end_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xab21c50e sdhci_enable_sdio_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xadda53b3 sdhci_cleanup_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xb50e15c7 __sdhci_add_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xb855e651 sdhci_runtime_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xbdb12aa8 sdhci_abort_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xbf616eb8 sdhci_cqe_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xbfc42fea sdhci_dumpregs +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc198ef10 sdhci_enable_v4_mode +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc4a6f246 sdhci_reset +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xca3c73ed sdhci_setup_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xca5155e0 sdhci_execute_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xcf98bc77 sdhci_request +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xd1a441ca sdhci_enable_clk +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xd6ffa7b2 sdhci_set_power +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xee24daf6 sdhci_set_data_timeout_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xfc0dc45d __sdhci_read_caps +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xfe171df5 sdhci_switch_external_dma +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x02f2b278 sdhci_get_property +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x32b3a6bd sdhci_pltfm_clk_get_max_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x3cc378e1 sdhci_pltfm_resume +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x665ac793 sdhci_pltfm_free +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x71e55047 sdhci_pltfm_init +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x85e722b3 sdhci_pltfm_register +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xa8787936 sdhci_pltfm_unregister +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xad2fa789 sdhci_pltfm_pmops +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xf2fa5fa9 sdhci_pltfm_suspend +EXPORT_SYMBOL_GPL drivers/most/most_core 0x204fe88f channel_has_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0x44d41afe most_stop_channel +EXPORT_SYMBOL_GPL drivers/most/most_core 0x494d4e6e most_register_component +EXPORT_SYMBOL_GPL drivers/most/most_core 0x765a6429 most_start_channel +EXPORT_SYMBOL_GPL drivers/most/most_core 0x7eb844de most_deregister_configfs_subsys +EXPORT_SYMBOL_GPL drivers/most/most_core 0x83fd3f1a most_submit_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0x8bfa7acb most_deregister_interface +EXPORT_SYMBOL_GPL drivers/most/most_core 0xae261f2e most_get_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0xbb1608e7 most_register_configfs_subsys +EXPORT_SYMBOL_GPL drivers/most/most_core 0xbf032306 most_resume_enqueue +EXPORT_SYMBOL_GPL drivers/most/most_core 0xd1e035c5 most_stop_enqueue +EXPORT_SYMBOL_GPL drivers/most/most_core 0xeac5411f most_register_interface +EXPORT_SYMBOL_GPL drivers/most/most_core 0xfaf60319 most_put_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0xfb7bda4f most_deregister_component +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x670bba8a cfi_cmdset_0200 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x9a159f1c cfi_cmdset_0003 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xa53cbaf4 cfi_cmdset_0001 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x7678c26e cfi_cmdset_0701 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x85810de8 cfi_cmdset_0002 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xfbd34638 cfi_cmdset_0006 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0x14466b6f cfi_cmdset_0020 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x15eb019c cfi_qry_mode_off +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x61628a7c cfi_qry_mode_on +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x93092221 cfi_qry_present +EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0x0b67d33c hyperbus_register_device +EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0x334be8fe hyperbus_unregister_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x06de8e47 mtd_device_parse_register +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x08382fe7 mtd_get_user_prot_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0a7cbe30 kill_mtd_super +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0d887397 mtd_del_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0e57525f mtd_ooblayout_find_eccregion +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0eb433d4 mtd_write_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1055b6d0 mtd_pairing_groups +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1403fdc2 mtd_read_fact_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1be502ac mtd_unpoint +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x21c56080 get_mtd_device_nm +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3e35b4ab mtd_ooblayout_count_eccbytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x42d13439 mtd_wunit_to_pairing_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4a031dff mtd_ooblayout_set_databytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4ca83bb4 mtd_add_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5056f7db mtd_block_isreserved EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x50dabc2f mtd_table_mutex -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x58b56578 mtd_write_oob -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x61ea5ba9 mtd_block_isreserved -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x61f65af4 mtd_writev -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x637dd2b0 mtd_ooblayout_free -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6a73516a put_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6d6b1d25 deregister_mtd_parser -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x71668a95 mtd_get_fact_prot_info -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x753abc93 mtd_pairing_groups -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x820e939d mtd_erase -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x95855dc8 mtd_ooblayout_count_eccbytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x97d18014 mtd_write -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x987dd831 mtd_write_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x998dd340 mtd_read_oob -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x99c6dd38 register_mtd_user -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa1ebb840 mtd_ooblayout_find_eccregion -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa93b7b56 mtd_read_fact_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xab73319c mtd_panic_write -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xacd3f61e mtd_point -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb3b7ca7e mtd_block_isbad -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb4f98215 __mtd_next_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xbdb5a118 mtd_read_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc52d2b26 mtd_del_partition -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc5dd14e4 mtd_pairing_info_to_wunit -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc9ee382f mtd_lock_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd48c763d __put_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd4fc0835 mtd_ooblayout_get_eccbytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xdfa8c64a mtd_ooblayout_ecc -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe01668d8 mtd_get_user_prot_info -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe09430d9 mtd_block_markbad -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe0ba5201 mtd_ooblayout_count_freebytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe511a2c7 mtd_read -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe5c0b5db mtd_device_unregister -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe6c8aa83 mtd_lock -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe7f1a972 mtd_unpoint -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe9b00ba2 mtd_ooblayout_set_eccbytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xee535b5f mtd_get_unmapped_area -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf1d8a390 mtd_wunit_to_pairing_info -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf27c05f3 mtd_device_parse_register -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf28dfd0d get_tree_mtd -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf8545b31 __register_mtd_parser -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xfd80dbf2 mtd_unlock -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x522d851b del_mtd_blktrans_dev -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x8a71b3c1 mtd_blktrans_cease_background -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x9610fa53 add_mtd_blktrans_dev -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xc0ddc89f deregister_mtd_blktrans -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xdeedf3c5 register_mtd_blktrans -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x1a62c752 nand_ecc_init_req_tweaking -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x1abc9812 nand_ecc_restore_req -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x1dd53554 nanddev_init -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x242554cb nand_get_large_page_hamming_ooblayout -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x2c57a82b nanddev_ecc_engine_cleanup -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x32ab6858 nanddev_mtd_erase -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x4146b2ed nanddev_erase -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x5101ac43 nanddev_bbt_set_block_status -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x5372bd7e nanddev_bbt_init -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x561c4530 nanddev_bbt_get_block_status -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x653d141f nanddev_mtd_max_bad_blocks -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x681a9c09 nand_get_large_page_ooblayout -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x7160ef5c nanddev_markbad -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x7375e6bc nand_ecc_tweak_req -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x74267b1f nanddev_cleanup -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x925c9bdd nand_ecc_cleanup_req_tweaking -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x94026242 nanddev_ecc_engine_init -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xaff09f8b nanddev_isbad -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xb6b316d4 nand_get_small_page_ooblayout -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xb7540735 nanddev_bbt_cleanup -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xd2f8fb08 nanddev_bbt_update -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xfc2c8d7b nanddev_isreserved -EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0x5ed3394a onenand_release -EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0x8a1a7006 onenand_scan -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/denali 0x83334f80 denali_chip_init -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x060c91a2 nand_cleanup +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5146564d mtd_ooblayout_count_freebytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x53818604 mtd_block_isbad +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x54146a6a mtd_read_oob +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x55a202ed mtd_point +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x57b6129d mtd_read_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5b04e2fa mtd_lock_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6bffb735 mtd_ooblayout_set_eccbytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6e61ad40 __get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x764d2166 mtd_block_markbad +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x77193758 __put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x779c40c0 mtd_unlock +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7adf1ace mtd_writev +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x809e30d9 mtd_lock +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8b886a12 mtd_kmalloc_up_to +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x95a3141a mtd_ooblayout_get_eccbytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa2a737a2 __register_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa81de43c mtd_get_device_size +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xaa353d7c mtd_is_locked +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xac312298 __mtd_next_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xae94ed33 mtd_erase +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb3eb3f5a put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb4b78224 mtd_pairing_info_to_wunit +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc14590ca mtd_get_unmapped_area +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc4e78735 get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc7b51383 mtd_ooblayout_get_databytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xca85cfff mtd_ooblayout_ecc +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xcc98f334 register_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xced48e4b deregister_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd45cb574 mtd_erase_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd6ecaae7 mtd_panic_write +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xdad5535c mtd_read +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe15a7613 mtd_device_unregister +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe17dd4ee mtd_write_oob +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe2ea01bf mtd_ooblayout_free +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xed850a4a mtd_write +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf27afa41 get_tree_mtd +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf3afd66d mtd_get_fact_prot_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf59de2b1 unregister_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x228d5026 register_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x5f5f055f del_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x88f8d767 mtd_blktrans_cease_background +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xb3c326fa add_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xde7f04c6 deregister_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x0351d711 nanddev_bbt_set_block_status +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x25028de0 nand_get_large_page_ooblayout +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x2bfe8980 nanddev_isreserved +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x36f5e1f5 nand_get_large_page_hamming_ooblayout +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x45faf0f6 nanddev_erase +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x4ab52e23 nand_ecc_cleanup_req_tweaking +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x4eb43d40 nanddev_markbad +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x57097a71 nanddev_mtd_max_bad_blocks +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x5bb00c7b nand_ecc_init_req_tweaking +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x5c67d05c nanddev_cleanup +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x5f2798ab nand_ecc_tweak_req +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x8066a88b nanddev_bbt_cleanup +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x9307f3d9 nanddev_bbt_init +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xae1b3c55 nanddev_init +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xb071995b nanddev_isbad +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xb604fc7a nanddev_ecc_engine_init +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xb8e59f36 nand_ecc_restore_req +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xd599a0e1 nanddev_mtd_erase +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xf031afdd nanddev_ecc_engine_cleanup +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xf893c2c1 nanddev_bbt_get_block_status +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xfbab073d nand_get_small_page_ooblayout +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xfc0419a6 nanddev_bbt_update +EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0x02cc5602 onenand_scan +EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0x832587c9 onenand_release +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/denali 0xdd72c18b denali_chip_init +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x0856a939 nand_prog_page_end_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x0b4abb69 nand_select_target +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x0bd8b810 nand_ecc_choose_conf EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x11091291 nand_extract_bits -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x1446924c nand_ecc_choose_conf +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x1a051815 nand_prog_page_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x1e7bbfec nand_op_parser_exec_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x29602850 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 0x2db2804f nand_read_page_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x3671affc nand_deselect_target +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x31ef8cd5 nand_change_write_column_op EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x5632e63d nand_subop_get_num_addr_cyc -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x5936d1c6 nand_gpio_waitrdy -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x5cbd0eb6 nand_prog_page_end_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x7e35f6c7 nand_read_page_hwecc_oob_first -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x83322154 nand_prog_page_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x8b4ea2c5 nand_decode_ext_id -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x91ba0b61 nand_reset_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x93abb4c4 nand_prog_page_begin_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x9e689060 nand_status_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xa34ff069 nand_change_read_column_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xa5530549 nand_wait_ready -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xb62ebaf2 nand_read_data_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xc11d9560 nand_op_parser_exec_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xc13b4e47 nand_soft_waitrdy -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xc6eda38a nand_readid_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x574f52e8 nand_deselect_target +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x57997dda nand_decode_ext_id +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x62d7b558 nand_reset_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x6893eff2 nand_soft_waitrdy +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x6daab904 nand_change_read_column_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x7b82e8f4 nand_gpio_waitrdy +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x84be8c58 nand_prog_page_begin_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x8fe614c8 nand_wait_ready +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x9cd987fc nand_reset +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xa0db98ab nand_read_oob_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xa5c300e0 nand_read_page_hwecc_oob_first +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xb1b6db0a nand_status_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xcdbbc921 nand_read_data_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xd0a05292 nand_cleanup 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 0xdf7c92d7 nand_erase_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xdff48dff nand_change_write_column_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xe31f5abd nand_read_oob_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xe73e4ac9 nand_write_data_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xf9dbe4b6 nand_select_target -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xfb2e4bf6 nand_reset -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/sm_common 0x9161c9c1 sm_register_device -EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0x3229d7c5 spi_nor_restore -EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0x85a0c43d spi_nor_scan +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xd4e506f4 nand_erase_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xf9064ae6 nand_readid_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xfe80d77f nand_read_page_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/sm_common 0x941a4740 sm_register_device +EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0x9ecbf80c spi_nor_scan +EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0xadb0217d spi_nor_restore +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x007ba3a1 ubi_close_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x08e975d6 ubi_is_mapped +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x19932a29 ubi_open_volume_path +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x238f70fb ubi_open_volume_nm EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x38e10c1d ubi_flush +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x3f997da6 ubi_get_volume_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x414c7155 ubi_leb_read EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x42801d20 ubi_sync +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x4ad9e7d0 ubi_open_volume EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x66011ab6 ubi_get_device_info -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x7b741b68 ubi_get_volume_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x7c07c4e8 ubi_leb_map +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x7e7c8194 ubi_leb_change EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x85a8ee76 ubi_unregister_volume_notifier -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x87076371 ubi_leb_unmap -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x8a6b5c14 ubi_leb_erase -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xa05cd5de ubi_leb_map -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xb5a9417f ubi_leb_read -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xbe131965 ubi_leb_read_sg -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xc9745e16 ubi_open_volume_nm -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xcd5aea54 ubi_leb_change -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xd84017ad ubi_open_volume -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xda9373c0 ubi_leb_write -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xdb0c1a9d ubi_is_mapped -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xdb17a74a ubi_open_volume_path -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf32ea914 ubi_close_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x88b3ad80 ubi_do_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x8b29e5e1 ubi_leb_write +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xa20baf0a ubi_leb_erase EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf5ee9ba8 ubi_register_volume_notifier -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf793ef85 ubi_do_get_device_info -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x33ad5909 mux_control_try_select -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x565ddd71 mux_control_deselect -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x63c4cada devm_mux_chip_register -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xa5be0122 mux_chip_alloc -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xab21dccb mux_chip_unregister -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xaf70b6d5 mux_chip_register -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xc37b956b mux_control_states -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xc4c59bf9 mux_control_select -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xc8782f81 mux_control_put -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xcb96e624 devm_mux_control_get -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xd5e11c89 devm_mux_chip_alloc -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xf0584d4b mux_chip_free -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xf08fc623 mux_control_get -EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x759c6bf3 devm_arcnet_led_init -EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0xb82b7cc9 arcnet_led_event -EXPORT_SYMBOL_GPL drivers/net/bareudp 0xb25a7500 bareudp_dev_create -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x0f8f3aa7 unregister_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x2471fa66 c_can_power_up -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x4514f2bb register_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xb350cd1f alloc_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xb40b51be c_can_power_down -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xbe5a1800 free_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x1a06f04f register_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x2a8c871d free_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x2b913667 alloc_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x5a15e936 unregister_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x02d70a1c can_put_echo_skb +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xfac9d2ed ubi_leb_read_sg +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xfe891b61 ubi_leb_unmap +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x07426779 mux_control_try_select +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x0a169d0a mux_control_deselect +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x6132d01f mux_chip_free +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x889eb946 devm_mux_chip_register +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x8969e790 mux_control_select +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xa73be7e5 mux_chip_alloc +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xa8088d4f devm_mux_chip_alloc +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xa9211bf6 mux_chip_unregister +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xbdfd08f6 mux_control_states +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xc17ef93f mux_control_put +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xc8412262 devm_mux_control_get +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xdaedc0d9 mux_control_get +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xdbdd5559 mux_chip_register +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x41d47b18 arcnet_led_event +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0xc9d9e0b5 devm_arcnet_led_init +EXPORT_SYMBOL_GPL drivers/net/bareudp 0x0899b79d bareudp_dev_create +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x3041ca46 free_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x7675e26b unregister_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x896e1ab8 c_can_power_up +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x9cc324be register_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xab7edf9e alloc_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xe2a6565d c_can_power_down +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x1bb94c68 unregister_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x7177bb9b alloc_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xabd9cd60 free_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xcb043285 register_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x0710f5b1 can_rx_offload_queue_sorted +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x075b5c81 can_rx_offload_threaded_irq_finish EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x10d892eb can_get_state_str -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x192100fe can_rx_offload_add_manual -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x1a41d56e alloc_canfd_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x1b879bf0 can_rx_offload_threaded_irq_finish -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x23689028 can_bus_off -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x30ccf1b7 can_rx_offload_enable -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x38c054b9 can_rx_offload_add_timestamp -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x440ba4a7 can_rx_offload_irq_offload_fifo -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x4c9536ab can_skb_get_frame_len -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x54e52062 open_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x17349980 can_rx_offload_add_fifo +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x1ee42077 can_rx_offload_irq_finish +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x2727db29 can_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x37593dd8 close_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x3f790208 unregister_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x40b2225e can_free_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x454642d9 safe_candev_priv +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x49468f10 can_change_state +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x4cb4cf4f alloc_candev_mqs EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6047ede6 can_fd_len2dlc -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6f20c052 can_get_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x7be70233 alloc_candev_mqs -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x7f38fdbc can_rx_offload_del -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x8eaadc5e free_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x9b993226 can_change_state -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x9fc370f9 alloc_can_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xa0c630b6 can_rx_offload_queue_tail -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xa383592a register_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xa4ccc357 can_free_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xa57462bd alloc_can_err_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xabb77454 unregister_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xbd14eef0 close_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xc0a36d5c can_rx_offload_irq_offload_timestamp -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xda4e9c21 can_change_mtu -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xe806c849 can_rx_offload_irq_finish +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6a5a0ce0 can_rx_offload_irq_offload_timestamp +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6d2e267f can_bus_off +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6f4d772e can_rx_offload_enable +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x826d976b can_rx_offload_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x952c5e4c can_rx_offload_irq_offload_fifo +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x9b7beeda can_rx_offload_del +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xa3e322fa can_rx_offload_add_timestamp +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xa7704d18 open_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xb1fe2919 can_rx_offload_add_manual +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xbaa66cb0 can_rx_offload_queue_tail +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xc3cf01ac can_skb_get_frame_len +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xcd917640 alloc_can_err_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xd01dc092 can_put_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xd2bef6e5 register_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xda06068c alloc_canfd_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xe3527a93 alloc_can_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xe52ae600 can_change_mtu +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xee932d4b free_candev EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf12d9387 can_fd_dlc2len -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf48d9f0a can_rx_offload_get_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf6589cde can_rx_offload_add_fifo -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf7bc919d safe_candev_priv -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xfad1c36a can_rx_offload_queue_sorted -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x1a953567 m_can_class_allocate_dev -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x389762d1 m_can_class_resume -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x4d764830 m_can_class_register -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x880697eb m_can_class_free_dev -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xb504c6b9 m_can_class_get_clocks -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xdb5f424a m_can_class_unregister -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xed8b6a0a m_can_class_suspend -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xfe953a0d m_can_init_ram -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x000a2b2a register_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x46e6c0e9 free_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x1bdfb413 m_can_class_free_dev +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x20e2355c m_can_init_ram +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x817c4ead m_can_class_resume +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xa25c4d14 m_can_class_unregister +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xa56d8d06 m_can_class_get_clocks +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xdb854fb3 m_can_class_suspend +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xdf2f42de m_can_class_allocate_dev +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xf50215f4 m_can_class_register +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x02aca752 free_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x0ca72fab register_sja1000dev EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x9a9c0146 unregister_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xd408b3a2 alloc_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/dsa/lan9303-core 0xc289b4aa lan9303_indirect_phy_ops -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x1401d512 ksz_update_port_member -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x31b75244 ksz_sset_count -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x4a88a5ba ksz_port_bridge_join -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x720762f5 ksz_port_fdb_dump -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x7d1360e4 ksz_mac_link_down -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x95ef19dc ksz_enable_port -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xa300c4f2 ksz_phy_read16 -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xb7adc066 ksz_port_mdb_del -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xbf8812a2 ksz_port_bridge_leave -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xc30c3c0e ksz_get_ethtool_stats -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xc5b20834 ksz_init_mib_timer -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xd04be332 ksz_port_mdb_add -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xf5b4ec33 ksz_port_fast_age -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xfc7a74a1 ksz_phy_write16 -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x09da0fbf rtl8366_vlan_add -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x109fc3aa rtl8366_set_pvid -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x21e40ee6 rtl8366_init_vlan -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x264d43fe rtl8366_set_vlan -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x3d91d4e5 rtl8366rb_variant -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x3dfd095a rtl8366_vlan_filtering -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x45a11198 rtl8366_get_strings -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x46d4db18 rtl8366_get_ethtool_stats -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x4fc33f30 rtl8366_reset_vlan -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x63367aeb rtl8366_get_sset_count -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x6dfdde2f rtl8366_vlan_del -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x9126f985 rtl8366_enable_vlan4k -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x94b80568 realtek_smi_write_reg_noack -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xd0336bb7 rtl8366_mc_is_used -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xe35380f9 rtl8366_enable_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0x6c917770 i40e_client_device_register -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0xb63bc227 i40e_client_device_unregister -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x0579cc0b ice_add_rdma_qset -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x4b1efb0d ice_rdma_update_vsi_filter -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x4e121a7b ice_del_rdma_qset -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x8032a25a ice_get_qos_params -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xc63aa174 ice_rdma_request_reset -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x006ac294 mlx4_counter_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x01cd22e3 mlx4_config_roce_v2_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0509fcba mlx4_get_devlink_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x07230384 mlx4_register_interface -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x084f9244 mlx4_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x09978301 mlx4_set_admin_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0c6f44c4 mlx4_config_dev_retrieval -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0cd140d8 mlx4_config_vxlan_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0ce1bed4 mlx4_unregister_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0d6dd37d mlx4_get_protocol_dev -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0f6456a8 mlx4_slave_convert_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0fc95621 mlx4_CLOSE_PORT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x11f1577d mlx4_unicast_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x139c275d mlx4_unbond -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x142c0d42 __mlx4_unregister_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x14d0043f mlx4_mr_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1914a24e mlx4_bond -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1e9a53ba mlx4_free_hwq_res -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1faebf4d mlx4_qp_release_range -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x24002971 mlx4_mtt_addr -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x27556255 mlx4_replace_zero_macs -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x292f533c mlx4_cq_resize -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2e65c418 mlx4_buf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2ef73cac mlx4_uar_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2f18f046 mlx4_get_vf_config -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3132bc2b mlx4_get_default_counter_index -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x35788635 mlx4_qp_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x36d4995e mlx4_set_vf_link_state -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3c989c9c mlx4_xrcd_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3e8b1d22 mlx4_alloc_cmd_mailbox -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3f0342f1 mlx4_unicast_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x416d9942 mlx4_qp_reserve_range -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4822542d mlx4_INIT_PORT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4b1bb538 mlx4_unregister_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4d28d88b mlx4_mr_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4f2b3dc7 mlx4_qp_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5217ed7b mlx4_cq_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x55831094 __mlx4_register_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x58737d85 mlx4_find_cached_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6069327c __mlx4_cmd -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x608d887d mlx4_vf_smi_enabled -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x61cb7893 mlx4_get_internal_clock_params -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x651c747f mlx4_cq_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x66b9d79d mlx4_set_vf_spoofchk -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x673cf566 mlx4_qp_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x67998248 mlx4_mtt_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6892b53d mlx4_xrcd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x68d9a2b2 mlx4_FLOW_STEERING_IB_UC_QP_RANGE -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6cb27160 mlx4_mr_rereg_mem_cleanup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6dfd3f10 mlx4_cq_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6f8ca04b mlx4_alloc_hwq_res -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6fdc655e mlx4_bf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6ffcd2bc mlx4_multicast_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x70a74782 mlx4_ACCESS_PTYS_REG -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x70aa6f41 mlx4_mw_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x759d2033 mlx4_srq_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x76259133 mlx4_register_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x78428a94 mlx4_free_cmd_mailbox -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7c1669b8 mlx4_unicast_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fe4962b mlx4_multicast_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x87818b24 mlx4_wol_read -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8de1e3de mlx4_phys_to_slaves_pport_actv -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8f19b8f1 mlx4_find_cached_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8f6e45ea mlx4_flow_steer_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x91c21e9e mlx4_qp_to_ready -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9566a03e mlx4_bf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x959f8c7b mlx4_get_base_gid_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x95e7467c mlx4_get_slave_default_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x96f64a63 __mlx4_replace_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9745847e mlx4_counter_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x97770fe8 mlx4_map_sw_to_hw_steering_mode -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x97fb0bf0 mlx4_flow_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9b5c7b0f mlx4_srq_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9dc93104 mlx4_mr_hw_change_access -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9fa16f57 mlx4_srq_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa195ffe0 mlx4_uar_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa968c3a0 mlx4_read_clock -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa9f43f11 mlx4_hw_rule_sz -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xab3b34d3 mlx4_set_vf_rate -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb1a52f68 mlx4_qp_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb8390130 mlx4_mr_hw_change_pd -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbb8189be mlx4_mr_rereg_mem_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbdc8dd83 mlx4_vf_set_enable_smi_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbe0e1341 mlx4_srq_arm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbe32d9dd mlx4_phys_to_slaves_pport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbe971a7c mlx4_phys_to_slave_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc003f467 mlx4_register_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc03cd77a mlx4_mtt_cleanup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc9079937 mlx4_buf_write_mtt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc98dfcc6 mlx4_update_qp -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcb1369d3 mlx4_map_sw_to_hw_steering_id -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcc7d08cc mlx4_db_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcd922385 mlx4_get_counter_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd06b4992 mlx4_multicast_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd2fee84f mlx4_get_active_ports -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd3a86a52 mlx4_get_base_qpn -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd979bfca mlx4_mr_hw_write_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdaab33ee mlx4_get_vf_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xde60c3b1 mlx4_set_vf_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdfe6415f mlx4_mw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdffc0e10 mlx4_db_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe16a46bf mlx4_write_mtt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe19a71d2 mlx4_mw_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe63f9697 mlx4_pd_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe7741339 mlx4_mr_hw_get_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe83b812d mlx4_mr_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe86c74f5 mlx4_srq_lookup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe871a3ac mlx4_SYNC_TPT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe89e7c9a mlx4_vf_get_enable_smi_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xecbb6325 mlx4_port_map_set -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeda8e1ff mlx4_mr_hw_put_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xedf7db96 mlx4_flow_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeeab877b mlx4_qp_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf256bbd4 mlx4_unicast_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf3da7c28 mlx4_set_vf_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf56f1ddc mlx4_wol_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf9bf4e4d mlx4_get_admin_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfa9dbb4b mlx4_flow_steer_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfc565a64 mlx4_pd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xff7e4f03 mlx4_multicast_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xffd26bb8 mlx4_unregister_interface -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x05b09ef4 mlx5_query_nic_vport_node_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x05cc7d05 mlx5_accel_esp_destroy_xfrm +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x50ca2e8c unregister_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xff08b868 alloc_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/dsa/lan9303-core 0x976e13d0 lan9303_indirect_phy_ops +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x02527d44 ksz_port_bridge_leave +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x07e4e370 ksz_phy_read16 +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x1653f5d4 ksz_phy_write16 +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x2d453836 ksz_mac_link_down +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x3b23b859 ksz_port_fdb_dump +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x480c6a19 ksz_port_mdb_add +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x50f1bb30 ksz_get_ethtool_stats +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x57fec4bc ksz_enable_port +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x5f03e8d6 ksz_update_port_member +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x770056b4 ksz_init_mib_timer +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x9f7f74ad ksz_port_fast_age +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xb6fac755 ksz_port_mdb_del +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xf95ebc94 ksz_sset_count +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xfef10e49 ksz_port_bridge_join +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x05d6b13d rtl8366_reset_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x1b6e854a rtl8366_set_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x22a1c2d0 rtl8366_mc_is_used +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x2c4db5f5 rtl8366_enable_vlan4k +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x537a223e rtl8366_get_sset_count +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x68298cc6 rtl8366_get_strings +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x6d760156 rtl8366_vlan_add +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x7b333edd realtek_smi_write_reg_noack +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x99fa4ddd rtl8366_vlan_del +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x9b645e2a rtl8366_get_ethtool_stats +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xa4c2192d rtl8366_init_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xce0c5b03 rtl8366rb_variant +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xd922ad37 rtl8366_enable_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xe7f8f2bc rtl8366_set_pvid +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xfb9b0f5b rtl8366_vlan_filtering +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0x25f86752 i40e_client_device_unregister +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0x2bcaaea6 i40e_client_device_register +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x67765ca4 ice_rdma_update_vsi_filter +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x8acdd8a9 ice_del_rdma_qset +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xae264adb ice_add_rdma_qset +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xbc55ed3d ice_rdma_request_reset +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xef93c397 ice_get_qos_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x00ebebe8 mlx4_register_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x073a5a19 mlx4_find_cached_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x09371e74 __mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0d467acd __mlx4_replace_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x11a765e5 mlx4_srq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1381b400 mlx4_phys_to_slaves_pport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x179f7629 mlx4_phys_to_slave_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1d1b8f65 mlx4_phys_to_slaves_pport_actv +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1d6c5074 mlx4_alloc_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1e559848 mlx4_unbond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1e8c1742 mlx4_get_protocol_dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x20947da7 mlx4_set_vf_spoofchk +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x20cc440b mlx4_flow_steer_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x226a31d2 mlx4_mr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x23a7c553 mlx4_qp_to_ready +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2611373d mlx4_get_devlink_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x283755b6 mlx4_unicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2ced8a61 mlx4_cq_resize +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x32a70c6e mlx4_srq_arm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x35753e61 mlx4_mtt_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x38d63819 mlx4_hw_rule_sz +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3fe74525 mlx4_update_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3fe7e644 mlx4_buf_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x40288255 mlx4_set_vf_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x416e92e3 mlx4_mtt_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x41ff42e4 mlx4_mr_hw_put_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x43d63302 mlx4_set_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x43ee166a mlx4_map_sw_to_hw_steering_id +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4497eaeb __mlx4_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x469e1260 mlx4_mr_hw_change_pd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4b555f9a mlx4_SYNC_TPT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4c8b29d1 mlx4_qp_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4f378f25 mlx4_wol_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x54417fe3 mlx4_mr_hw_write_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x582c616b mlx4_multicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5990ec42 mlx4_set_vf_link_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5abb7027 mlx4_unicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5b6db40f mlx4_mr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5cda876b mlx4_INIT_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5d3c51d4 mlx4_alloc_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5d843f9b mlx4_flow_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5dd0d0fd mlx4_unicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x61640779 mlx4_get_base_gid_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x639c54f5 mlx4_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x65ccbaf3 mlx4_CLOSE_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6620dc61 mlx4_get_counter_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6627b243 mlx4_replace_zero_macs +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x66d5f263 mlx4_mr_rereg_mem_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6ad0e82b mlx4_mr_hw_change_access +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6cc274be mlx4_get_vf_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6d7f35a5 mlx4_free_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6fb8aec9 mlx4_mw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x732dab34 mlx4_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x77419f1f mlx4_config_dev_retrieval +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x79dd8ed6 mlx4_flow_steer_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7a069a89 mlx4_get_active_ports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7f1fea58 mlx4_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8117cccf mlx4_bf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x81ac523a mlx4_bf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x81bc387c mlx4_vf_set_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x84c8b0a7 mlx4_find_cached_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8578f8ed mlx4_uar_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8603d230 mlx4_get_slave_default_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x860a86f8 mlx4_vf_get_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x87fb714c mlx4_cq_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8899f8e5 mlx4_get_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x88efa289 mlx4_config_vxlan_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8c607ef9 __mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8dcc3937 mlx4_get_default_counter_index +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8dce3113 mlx4_bond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9540caa0 mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9595a215 mlx4_config_roce_v2_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x96a0cb45 mlx4_port_map_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9a2a0d25 mlx4_unregister_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9d35ba81 mlx4_srq_lookup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa0e17dbe mlx4_multicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa29dad44 mlx4_FLOW_STEERING_IB_UC_QP_RANGE +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa35d4cbf mlx4_cq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa42b659b mlx4_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa6beef4d mlx4_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa7ef6d82 mlx4_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa8eaf8f4 mlx4_multicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb01d622d mlx4_ACCESS_PTYS_REG +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb12c15e3 mlx4_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb33d4f46 mlx4_unregister_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb3497ea7 mlx4_uar_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb4d362e4 mlx4_mw_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb702c6a4 mlx4_srq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb9b1856c mlx4_set_vf_rate +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xba183a4d mlx4_register_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xba596236 mlx4_unicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbb9136bd mlx4_set_vf_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbe39b5dd mlx4_free_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbecde6b3 mlx4_mr_rereg_mem_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbf22632a mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc0746e9e mlx4_xrcd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc07494bb mlx4_qp_release_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc44bfeba mlx4_pd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc595bd00 mlx4_qp_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcbbb9d1c mlx4_pd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcf7de07c mlx4_mr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd2ee1829 mlx4_counter_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd976cd3e mlx4_get_vf_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdc9ea9af mlx4_qp_reserve_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdcc001db mlx4_slave_convert_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xddc546d6 mlx4_read_clock +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe4284a5e mlx4_mtt_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe7316e40 mlx4_map_sw_to_hw_steering_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe8066389 mlx4_cq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe86c6be7 mlx4_flow_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe9252679 mlx4_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xec9c1070 mlx4_counter_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf22f6115 mlx4_wol_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf3c6d3fc mlx4_get_internal_clock_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf5f8ba43 mlx4_get_base_qpn +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf88237a5 mlx4_mr_hw_get_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf99be149 mlx4_qp_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf9b927d1 mlx4_mw_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfdaabbac mlx4_srq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xff1f98f6 mlx4_vf_smi_enabled +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xffc95d4a mlx4_multicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x03753ff3 mlx5_accel_ipsec_device_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x049ad611 mlx5_modify_port_ets_rate_limit EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x072460c4 mlx5_fill_page_frag_array -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0c11e379 mlx5_core_query_sq_state -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x138fbcb1 mlx5_frag_buf_alloc_node -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1549017c mlx5_set_port_tc_bw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x17e3b8a1 mlx5_query_nic_vport_qkey_viol_cntr -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x18de1f56 mlx5_eswitch_mode -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1b7a4f1b mlx5_core_query_vport_counter -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1ed0dbce mlx5_query_module_eeprom -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1f1c855d mlx5_modify_nic_vport_promisc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x24165ae4 mlx5_eswitch_get_total_vports -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2ac881b9 mlx5_query_hca_vport_gid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2c3733dd mlx5_dm_sw_icm_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2f59f289 mlx5_modify_nic_vport_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x30ddd603 mlx5_query_nic_vport_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x36bf4994 mlx5_nic_vport_query_local_lb -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x394b4281 mlx5_core_query_ib_ppcnt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3a194d36 mlx5_nic_vport_update_local_lb -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3ca1bf76 mlx5_query_nic_vport_min_inline -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3d175fd5 mlx5_query_port_vl_hw_cap -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3ee06526 mlx5_query_port_oper_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4495878d mlx5_toggle_port_link -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x473ffd1b mlx5_query_min_inline -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x49c3eab7 mlx5_dm_sw_icm_dealloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4a6bc95a mlx5_db_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4b293319 mlx5_query_port_wol -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5199a872 mlx5_query_port_prio_tc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x588e7d57 mlx5_core_access_reg -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5d1f6c5a mlx5_frag_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5fa86d00 mlx5_query_hca_vport_node_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x60e67ab0 mlx5_query_nic_vport_promisc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6242d930 mlx5_db_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x66df98c6 mlx5_query_port_pfc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6a040cad mlx5_query_hca_vport_pkey -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6b58aa47 mlx5_modify_nic_vport_mac_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x71636768 mlx5_set_port_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x75f5d70d mlx5_set_port_prio_tc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x77f11055 mlx5_query_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x09538f93 mlx5_query_module_eeprom_by_page +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0c84a198 mlx5_query_nic_vport_min_inline +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0d9beab3 mlx5_set_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1a40dc4a mlx5_set_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1bbc4e5b mlx5_query_port_vl_hw_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1fecfc1c mlx5_nic_vport_enable_roce +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x25bac6cd mlx5_query_hca_vport_pkey +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2692c34d mlx5_accel_esp_destroy_xfrm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x28e7c21e mlx5_query_module_eeprom +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2954fe28 mlx5_query_nic_vport_qkey_viol_cntr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2b20b3c7 mlx5_core_modify_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2cd02c29 mlx5_core_query_ib_ppcnt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x30baa8e1 mlx5_nic_vport_update_local_lb +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x381d1946 mlx5_query_port_max_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3835076d mlx5_query_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3ba3e25c mlx5_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x405b9e9e mlx5_nic_vport_affiliate_multiport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x41eb164c mlx5_query_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4255a006 mlx5_query_nic_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4ddedbb5 mlx5_modify_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x50d6778e mlx5_set_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x548ba084 mlx5_set_port_tc_bw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x55cb21ff mlx5_query_nic_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5a56b382 mlx5_dm_sw_icm_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5b2a84b8 mlx5_frag_buf_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5cd18a75 mlx5_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5ee56bdd mlx5_query_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x619aef18 mlx5_query_port_tc_bw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x63a6c5ff mlx5_query_hca_vport_gid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x674fca62 mlx5_frag_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x67538c71 mlx5_modify_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x676b6a65 mlx5_core_reserved_gids_count +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x68bdb693 mlx5_query_hca_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6c6ca79c mlx5_query_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x75e73ffa mlx5_core_query_sq_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x76c7b88e mlx5_query_nic_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x80b8421b mlx5_toggle_port_link EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x81aadc6a mlx5_fill_page_frag_array_perm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x834cbb6b mlx5_query_hca_vport_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x835d4033 mlx5_modify_port_ets_rate_limit -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8acf161c mlx5_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8adb75bd mlx5_nic_vport_enable_roce -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x91f6c7f5 mlx5_query_port_max_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x93e1cf57 mlx5_accel_ipsec_device_caps -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9434990f mlx5_query_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x98270c9b mlx5_set_port_tc_group -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9c553a28 mlx5_query_nic_vport_mac_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa40f0e25 mlx5_accel_esp_modify_xfrm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa4c4f01b mlx5_query_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x852d9abc mlx5_eswitch_get_total_vports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8a2e20c3 mlx5_accel_esp_modify_xfrm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8b94689b mlx5_set_port_prio_tc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8ca9f3fc mlx5_eswitch_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8ce7b0b9 mlx5_accel_esp_create_xfrm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8e4e0d98 mlx5_set_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x926d8385 mlx5_query_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x964c8218 mlx5_db_alloc EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa75f49d6 mlx5_fill_page_array -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaa4e348a mlx5_query_port_ets_rate_limit -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xac536686 mlx5_nic_vport_unaffiliate_multiport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb0db87df mlx5_db_alloc_node -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb663a023 mlx5_modify_nic_vport_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb694b19e mlx5_query_nic_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb898b57b mlx5_set_port_pfc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xba3c82ce mlx5_query_port_ptys -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc2aff29a mlx5_nic_vport_affiliate_multiport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc3a62269 mlx5_modify_nic_vport_vlans -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd65d703e mlx5_core_modify_hca_vport_context -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd85ccfe0 mlx5_set_port_caps -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdfc87326 mlx5_query_nic_vport_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe04ea288 mlx5_core_reserved_gids_count -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe08650e8 mlx5_set_port_wol -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe4e22fa4 mlx5_query_port_tc_bw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe59d6ac5 mlx5_set_port_admin_status -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe6cdb822 mlx5_query_module_eeprom_by_page -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe83f9834 mlx5_query_hca_vport_context -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xea278127 mlx5_set_port_pause -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf0487dff mlx5_accel_esp_create_xfrm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf37b56d9 mlx5_query_port_tc_group -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf87155de mlx5_query_port_pause -EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x0460b457 ks8851_suspend -EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x79b41374 ks8851_resume -EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0xb8234c4d ks8851_remove_common -EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0xf7784b52 ks8851_probe_common -EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0xc7c752d5 devm_regmap_init_encx24j600 +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaabb3224 mlx5_query_port_oper_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xab44fe6c mlx5_db_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xab801fec mlx5_query_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbd05f261 mlx5_query_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbd38ddd7 mlx5_set_port_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbe71d8bc mlx5_modify_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc5f3eb63 mlx5_set_port_tc_group +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc61aab8e mlx5_query_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc76b7b8f mlx5_nic_vport_query_local_lb +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcf75ad9f mlx5_query_port_prio_tc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd013f637 mlx5_modify_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd6624e0c mlx5_modify_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd9a990f9 mlx5_query_min_inline +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xda527f90 mlx5_core_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdb0288df mlx5_query_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xddb4f47e mlx5_query_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdf947f62 mlx5_query_hca_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe1c6fb0f mlx5_dm_sw_icm_dealloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe965ff20 mlx5_nic_vport_unaffiliate_multiport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf08a665b mlx5_set_port_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf6b128c4 mlx5_core_query_vport_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf6df7762 mlx5_query_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfe4f5cd6 mlx5_query_port_tc_group +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfffb2a47 mlx5_query_port_ptys +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x0b032a26 ks8851_suspend +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x23095dde ks8851_probe_common +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x739e4e19 ks8851_remove_common +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0xc5409b28 ks8851_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x295b6fdb 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 0x0c42c3a4 ocelot_port_rmwl -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0e908315 ocelot_regmap_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x125cc693 __ocelot_rmw_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x23a2c805 ocelot_phylink_mac_link_down -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x44e70746 ocelot_port_writel -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x69dfece4 ocelot_regfields_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7242c45b ocelot_cls_flower_replace -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x756db964 ocelot_port_readl -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7fdae9fd __ocelot_write_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x940db104 ocelot_cls_flower_destroy -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb5892495 ocelot_phylink_mac_link_up -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xde7b93d8 __ocelot_read_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf52e1106 ocelot_cls_flower_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x09ac90ed stmmac_suspend -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x1a1184cf stmmac_dvr_probe -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x386a9df0 stmmac_resume -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x4287c6b4 stmmac_bus_clks_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x06b160d0 ocelot_port_rmwl +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x06dd3815 ocelot_cls_flower_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0babe0a8 ocelot_phylink_mac_link_down +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1346fa52 ocelot_port_writel +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x26c94266 __ocelot_read_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x60217e33 ocelot_port_readl +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x74d06832 __ocelot_write_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x76f93ea3 ocelot_regfields_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbe7a1a82 __ocelot_rmw_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xdafc9b05 ocelot_cls_flower_replace +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xeaf87d66 ocelot_phylink_mac_link_up +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xec74d643 ocelot_cls_flower_destroy +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf1227096 ocelot_regmap_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x4fc9f254 stmmac_init_tstamp_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x67543f72 stmmac_dvr_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x6f5a8294 stmmac_suspend +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x9098b1ee 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 0xad7d5a96 stmmac_dvr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xa095a923 stmmac_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xca36b105 stmmac_bus_clks_config EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xd1cc24db stmmac_set_mac_addr -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xe5ab2aef stmmac_init_tstamp_counter -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x2261d410 stmmac_get_platform_resources -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x54741860 stmmac_pltfr_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x6ff44ed4 stmmac_pltfr_pm_ops -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x98928574 stmmac_remove_config_dt -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xd0f290fc stmmac_probe_config_dt -EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x27d3ea72 w5100_ops_priv -EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x30737f11 w5100_pm_ops -EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x8270893e w5100_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xf84ace76 w5100_probe -EXPORT_SYMBOL_GPL drivers/net/geneve 0x935b63d6 geneve_dev_create_fb -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x0727d7b6 ipvlan_link_delete -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xb29ac9b7 ipvlan_link_register -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xd5cfdffd ipvlan_count_rx -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xdf8dd63f ipvlan_link_setup -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xfc048ae0 ipvlan_link_new -EXPORT_SYMBOL_GPL drivers/net/macsec 0x6cffdabb macsec_pn_wrapped -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x4433e435 macvlan_dellink -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x8861a716 macvlan_link_register -EXPORT_SYMBOL_GPL drivers/net/macvlan 0xd2ae2c1f macvlan_common_setup -EXPORT_SYMBOL_GPL drivers/net/macvlan 0xf06ad175 macvlan_common_newlink -EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-i2c 0x5557ded8 mdio_i2c_alloc -EXPORT_SYMBOL_GPL drivers/net/net_failover 0x12a16682 net_failover_destroy -EXPORT_SYMBOL_GPL drivers/net/net_failover 0x914e05f1 net_failover_create -EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x65175646 xpcs_validate -EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xa7b894c4 xpcs_do_config -EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xa8b5def7 xpcs_destroy -EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xb89487f9 xpcs_config_eee +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x0fe77d68 stmmac_get_platform_resources +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x1fcd2b8c stmmac_probe_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x3d3d37f4 stmmac_pltfr_pm_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x717c771d stmmac_remove_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xe3190b58 stmmac_pltfr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x1f521acc w5100_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x42f92b2b w5100_ops_priv +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x62410cfd w5100_pm_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xb1452135 w5100_remove +EXPORT_SYMBOL_GPL drivers/net/geneve 0xaf7e23cd geneve_dev_create_fb +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x2d18456a ipvlan_link_delete +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x4f6d568f ipvlan_link_new +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x878561b9 ipvlan_count_rx +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x8fee81fa ipvlan_link_setup +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xa2c8507c ipvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/macsec 0xbc5402bd macsec_pn_wrapped +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x7299a112 macvlan_common_newlink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x7f68d58d macvlan_dellink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x82e3a033 macvlan_common_setup +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x9694109b macvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-i2c 0x35d8d691 mdio_i2c_alloc +EXPORT_SYMBOL_GPL drivers/net/net_failover 0x3ff4b654 net_failover_create +EXPORT_SYMBOL_GPL drivers/net/net_failover 0xa8ce533d net_failover_destroy +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x0b32d3cb xpcs_create +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x86715515 xpcs_get_an_mode +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x90a2c731 xpcs_config_eee +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xad5053f3 xpcs_do_config +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xb34f78ff xpcs_destroy +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xc0d1bff4 xpcs_validate EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xe05362b0 xpcs_link_up -EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xf3f7bfe5 xpcs_get_an_mode -EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xfd28202c xpcs_create -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x01b08ab0 bcm_phy_get_sset_count -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x04e7c241 bcm_phy_read_misc -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x0768476c bcm_phy_cable_test_get_status -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x0ba87fe7 bcm_phy_modify_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x2afedbe6 bcm_phy_set_eee -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x3ba02759 bcm_phy_cable_test_get_status_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x3bbdfe8e bcm_phy_get_strings -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x3d54d719 bcm54xx_auxctl_read -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x43bdddb5 bcm_phy_enable_jumbo -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x4b24f56e bcm_phy_write_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x4c2392b1 bcm_phy_cable_test_start -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x521a71af bcm_phy_handle_interrupt -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x646cb77d bcm_phy_write_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x6717b825 bcm_phy_downshift_set -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x688c0a27 bcm_phy_read_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x6ca426de bcm_phy_cable_test_start_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x6dc49101 bcm_phy_read_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x72166867 __bcm_phy_modify_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x8627ba22 bcm_phy_write_shadow -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x8a9ec9cc __bcm_phy_write_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x9fb02796 bcm_phy_write_misc -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa5d68bdf __bcm_phy_write_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xab16c22d bcm_phy_ack_intr -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb5968d47 bcm_phy_get_stats -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb8d66274 __bcm_phy_modify_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc16875f4 bcm_phy_modify_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xcae2ff0b bcm_phy_config_intr -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xcf4dda12 bcm_phy_read_shadow -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xd63f2c4e bcm_phy_enable_apd -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xda2564ac bcm_phy_r_rc_cal_reset -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe2d9e555 __bcm_phy_read_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe7917e73 __bcm_phy_read_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xfc79c1a6 bcm_phy_downshift_get -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xfe192732 bcm_phy_28nm_a0b0_afe_config_init +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x0ef93509 bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x1f7f7dac bcm_phy_set_eee +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x22aade53 bcm_phy_r_rc_cal_reset +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x2489c8d5 bcm_phy_get_sset_count +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x256b2a49 bcm54xx_auxctl_read +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x28b5681e bcm_phy_write_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x29f94913 bcm_phy_cable_test_start +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x32ccb2a0 bcm_phy_write_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x396a4f3b bcm_phy_cable_test_get_status_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x4d107d76 __bcm_phy_write_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x54715d36 bcm_phy_enable_apd +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x59c82ecc bcm_phy_ack_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x6b5c2061 __bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x845826e8 bcm_phy_handle_interrupt +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x863962fd bcm_phy_write_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x8c9eb9cd bcm_phy_get_stats +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x8f1dbd97 __bcm_phy_modify_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x98be302c bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x9bfea1ae bcm_phy_read_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xaecee9b6 bcm_phy_read_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb442baf5 __bcm_phy_read_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb7022b77 __bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xba69185e bcm_phy_get_strings +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xbc4f5919 __bcm_phy_modify_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc1dec72c bcm_phy_cable_test_start_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc73065d2 bcm_phy_downshift_set +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc9bdf402 bcm_phy_cable_test_get_status +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xccfbd7e6 bcm_phy_enable_jumbo +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xd0603bea bcm_phy_modify_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe2b5bbc8 bcm_phy_28nm_a0b0_afe_config_init +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe332df64 bcm_phy_modify_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe397a12d bcm_phy_read_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf91c15bd bcm_phy_config_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf9a668eb bcm_phy_downshift_get EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x08213956 phylink_ethtool_get_wol -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x0b4c7ae5 phylink_create -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x0e4bb287 phylink_mii_c22_pcs_get_state EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x12135396 phylink_mac_change EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x131e8b94 phylink_helper_basex_speed 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 0x1c5c8b3e phylink_of_phy_connect -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x1c62cc8a phylink_connect_phy -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x239f4917 phylink_mii_c45_pcs_get_state EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x2c8e28ee phylink_ethtool_get_eee -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x4c363aca phylink_mii_c22_pcs_config +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x33b2e6ec phylink_mii_c22_pcs_config +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x36d78b96 phylink_mii_c22_pcs_get_state +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x372eb1af phylink_mii_c22_pcs_set_advertisement +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x4bbfdf76 phylink_of_phy_connect EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x57727285 phylink_ethtool_set_eee EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x59e0695d phylink_speed_down EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x5d0c4dcc phylink_speed_up EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x62104126 phylink_ethtool_set_wol EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x6831eccf phylink_ethtool_ksettings_get EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x6fa426d2 phylink_ethtool_nway_reset -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x74b83add phylink_mii_c22_pcs_an_restart EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x825c7340 phylink_get_eee_err EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x911fcd6c phylink_start +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x91599958 phylink_connect_phy +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x91ae8acf phylink_mii_c45_pcs_get_state +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x929ec860 phylink_fwnode_phy_connect EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x983276da phylink_disconnect_phy EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x9ad6f36d phylink_decode_usxgmii_word +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x9d86bae7 phylink_mii_c22_pcs_an_restart +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xb47dc941 phylink_create EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xc0a8f4be phylink_resume EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xc1d15a4c phylink_set_port_modes EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xc3906c58 phylink_ethtool_ksettings_set -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xc747f327 phylink_mii_c22_pcs_set_advertisement EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xdcb0a2c0 phylink_stop -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xdd45472e phylink_fwnode_phy_connect EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xde66f4a7 phylink_mii_ioctl EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xe8c137ed phylink_set_pcs EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xec02ebe0 phylink_init_eee EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xf3083a1d phylink_destroy EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xf8fe5642 phylink_ethtool_get_pauseparam -EXPORT_SYMBOL_GPL drivers/net/tap 0x0c61cd62 tap_del_queues -EXPORT_SYMBOL_GPL drivers/net/tap 0x1ff2e023 tap_get_socket -EXPORT_SYMBOL_GPL drivers/net/tap 0x6e958baa tap_handle_frame -EXPORT_SYMBOL_GPL drivers/net/tap 0x6f525851 tap_get_ptr_ring -EXPORT_SYMBOL_GPL drivers/net/tap 0x74cc0fd5 tap_get_minor -EXPORT_SYMBOL_GPL drivers/net/tap 0x761e0e92 tap_destroy_cdev -EXPORT_SYMBOL_GPL drivers/net/tap 0x7ad89202 tap_queue_resize -EXPORT_SYMBOL_GPL drivers/net/tap 0x84245058 tap_free_minor -EXPORT_SYMBOL_GPL drivers/net/tap 0x8e9f69af tap_create_cdev -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x42fb304d usbnet_cdc_update_filter -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x7bb0c2db usbnet_ether_cdc_bind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xb3846a3c usbnet_cdc_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xc6cd739c usbnet_generic_cdc_bind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xd4351605 usbnet_cdc_bind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xfa40761d usbnet_cdc_status -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x085aa0e0 cdc_ncm_rx_verify_nth32 -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x1c23afc1 cdc_ncm_rx_verify_nth16 -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x34376dc1 cdc_ncm_rx_verify_ndp16 -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x518ba31c cdc_ncm_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x58acfa9b cdc_ncm_tx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x60c62a55 cdc_ncm_change_mtu -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x8d702320 cdc_ncm_rx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xb5a443d0 cdc_ncm_bind_common -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xbc478ca5 cdc_ncm_fill_tx_frame -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xf28093fc cdc_ncm_select_altsetting -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xf6a73a28 cdc_ncm_rx_verify_ndp32 -EXPORT_SYMBOL_GPL drivers/net/usb/r8152 0xa2a498da rtl8152_get_version -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x099c2655 generic_rndis_bind -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x6448fb7e rndis_rx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x67d46e80 rndis_status -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x7528e191 rndis_tx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x8af2ab96 rndis_command -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xb51c24fb rndis_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x05497bbe usbnet_purge_paused_rxq -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x05a1491a usbnet_set_rx_mode -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x12516b2d usbnet_write_cmd_nopm -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1ea6032b usbnet_write_cmd_async -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x33890b08 usbnet_change_mtu -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x375eb28e usbnet_get_link_ksettings_internal -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x37c6e0bc usbnet_get_drvinfo -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3f81e88b usbnet_defer_kevent -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x44fa4be0 usbnet_get_link_ksettings_mii -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x56fff9ac usbnet_set_msglevel -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5a5ddb54 usbnet_open -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x60431839 usbnet_read_cmd -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x681caa05 usbnet_skb_return -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x684c2664 usbnet_status_start -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6a39e49f usbnet_nway_reset -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x82053ec9 usbnet_disconnect -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x93d5342a usbnet_get_msglevel -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x97483448 usbnet_set_link_ksettings_mii -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9e968f63 usbnet_resume -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9f8dbc2b usbnet_read_cmd_nopm -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa079f8da usbnet_resume_rx -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xabe8e329 usbnet_suspend -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb4e490a0 usbnet_get_link -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb5e0758a usbnet_update_max_qlen -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc24e2ae3 usbnet_get_endpoints -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc55709e9 usbnet_stop -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc765497a usbnet_get_ethernet_addr -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd95a1339 usbnet_start_xmit -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe4a618a1 usbnet_probe -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe5d30a73 usbnet_unlink_rx_urbs -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe6449b77 usbnet_status_stop -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe8d2d2d4 usbnet_pause_rx -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xebe0031f usbnet_tx_timeout -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xee84122d usbnet_write_cmd -EXPORT_SYMBOL_GPL drivers/net/vxlan 0x02db4f97 vxlan_fdb_find_uc -EXPORT_SYMBOL_GPL drivers/net/vxlan 0x1cdf04e0 vxlan_fdb_clear_offload -EXPORT_SYMBOL_GPL drivers/net/vxlan 0x5dce287f vxlan_fdb_replay -EXPORT_SYMBOL_GPL drivers/net/vxlan 0x7f25d67f vxlan_dev_create -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/ipw2x00/libipw 0x074ed4b7 libipw_rx_any -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2f504f0a _il_grab_nic_access -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5a0aeb34 il_remove_station -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8bb877cb il_dealloc_bcast_stations -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd8790ea0 il_prep_station -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfa12c7b0 il_mac_tx_last_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x029f72d0 iwl_set_bits_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x104f8ecf iwl_parse_eeprom_data +EXPORT_SYMBOL_GPL drivers/net/tap 0x2987f701 tap_free_minor +EXPORT_SYMBOL_GPL drivers/net/tap 0x46adaf3f tap_get_minor +EXPORT_SYMBOL_GPL drivers/net/tap 0x5971f19c tap_queue_resize +EXPORT_SYMBOL_GPL drivers/net/tap 0x6a78f6c3 tap_create_cdev +EXPORT_SYMBOL_GPL drivers/net/tap 0x9d5ccc9d tap_destroy_cdev +EXPORT_SYMBOL_GPL drivers/net/tap 0xcb82a5bc tap_del_queues +EXPORT_SYMBOL_GPL drivers/net/tap 0xd11f9fbf tap_handle_frame +EXPORT_SYMBOL_GPL drivers/net/tap 0xe91a3ad8 tap_get_socket +EXPORT_SYMBOL_GPL drivers/net/tap 0xeded2388 tap_get_ptr_ring +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x693c88dd usbnet_ether_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x8da683e3 usbnet_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x8f004539 usbnet_cdc_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x90edc0f3 usbnet_cdc_update_filter +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xee331bf0 usbnet_generic_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xf22195ec usbnet_cdc_status +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x025000b4 cdc_ncm_fill_tx_frame +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x3c10c539 cdc_ncm_bind_common +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x5dab5370 cdc_ncm_select_altsetting +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x5f604445 cdc_ncm_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x6135ae81 cdc_ncm_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x6b70a6bb cdc_ncm_rx_verify_nth16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xc6648ed0 cdc_ncm_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xc9aa51d0 cdc_ncm_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xd59f3963 cdc_ncm_rx_verify_ndp16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xe5793dff cdc_ncm_rx_verify_ndp32 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xfb94cf4e cdc_ncm_rx_verify_nth32 +EXPORT_SYMBOL_GPL drivers/net/usb/r8152 0x93a8a736 rtl8152_get_version +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x0051fad9 rndis_status +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x2db11006 generic_rndis_bind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x582590ba rndis_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xd23bc5e0 rndis_command +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xddb1f850 rndis_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xde7c9b30 rndis_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1dbdabac usbnet_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1f901c10 usbnet_write_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3244175c usbnet_get_link +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x491ed6c1 usbnet_get_endpoints +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x49db5bf3 usbnet_set_rx_mode +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4b00ff94 usbnet_write_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4b0990c3 usbnet_probe +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x598a2184 usbnet_start_xmit +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5a188212 usbnet_status_start +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5afd5f3e usbnet_status_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5f334af7 usbnet_set_link_ksettings_mii +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x601bcc47 usbnet_read_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x68adb114 usbnet_tx_timeout +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7c52c8e6 usbnet_resume +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7f5c579b usbnet_skb_return +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x80788272 usbnet_update_max_qlen +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x86be55d9 usbnet_purge_paused_rxq +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8864dd75 usbnet_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8e24ef8a usbnet_pause_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x95fe6ac6 usbnet_set_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xbc74c085 usbnet_nway_reset +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc26526c4 usbnet_defer_kevent +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc99424da usbnet_get_link_ksettings_internal +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xcb2bc469 usbnet_get_ethernet_addr +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xccdff0f1 usbnet_write_cmd_async +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd1468aa0 usbnet_get_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd22a6000 usbnet_disconnect +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd2d1870e usbnet_get_drvinfo +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xdea8e73c usbnet_resume_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xdf1b8f6c usbnet_get_link_ksettings_mii +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe14df52f usbnet_open +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe4d53d67 usbnet_suspend +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe9424059 usbnet_read_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf6825594 usbnet_unlink_rx_urbs +EXPORT_SYMBOL_GPL drivers/net/vxlan 0x082dd762 vxlan_fdb_clear_offload +EXPORT_SYMBOL_GPL drivers/net/vxlan 0x6d6e4d31 vxlan_fdb_find_uc +EXPORT_SYMBOL_GPL drivers/net/vxlan 0x9676fe04 vxlan_fdb_replay +EXPORT_SYMBOL_GPL drivers/net/vxlan 0xb3c08ecb vxlan_dev_create +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/ipw2x00/libipw 0x13d1ce2a libipw_rx_any +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x02e74047 il_remove_station +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0e6cdeb2 _il_grab_nic_access +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x19570d53 il_prep_station +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x900e9705 il_dealloc_bcast_stations +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcc79397c il_mac_tx_last_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x03b17784 iwl_fw_runtime_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x060f9f63 __iwl_err +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1238641c iwl_fw_runtime_init EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1332e4de iwl_abort_notification_waits -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x16c2a979 iwl_fw_dbg_collect_desc -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2341bb96 iwl_poll_bit -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x270272d9 __iwl_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x13f0528c iwl_sar_get_wrds_table +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1445c2e5 iwl_acpi_get_eckv +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x19f93912 iwl_cmd_groups_verify_sorted +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1cd88eaf _iwl_dbg_tlv_time_point +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1d9912da iwl_fw_dbg_read_d3_debug_data +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1e76b293 iwl_read_external_nvm +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1fb97584 iwl_acpi_get_dsm_u8 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x24009de0 iwl_write8 EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2710c362 iwl_dump_desc_assert -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2cd3f3d3 iwl_read_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x306910f3 iwl_dbg_tlv_del_timers -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x31197db8 iwl_finish_nic_init -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x319b830a iwl_sar_get_wgds_table -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x3353a96e iwl_acpi_get_dsm_u32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2a332c30 iwl_pnvm_load +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2ee9f184 iwl_sar_get_ewrd_table EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x35033c81 iwl_phy_db_free -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x36a09c73 iwl_sar_geo_support -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x36d49dae iwl_write_direct64 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x3c92bdeb iwl_acpi_get_tas -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x3e1ca9fa _iwl_dbg_tlv_time_point -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x3edcee3b iwl_parse_mei_nvm_data -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x3f5c1c74 __iwl_info -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x43ad40bf iwl_phy_db_init +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x35649352 iwl_fw_dbg_stop_restart_recording +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x3830030f iwl_acpi_get_lari_config_bitmap +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x3cc61958 iwl_write32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x3e6cebe9 iwl_set_bits_mask_prph EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x43ccc4ac iwl_fw_lookup_notif_ver -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x493f6422 iwl_fw_dbg_stop_restart_recording -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x49f3caf7 iwl_read_prph_no_grab -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x4aaa02da iwl_write_prph_delay -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x4b79e2c5 iwl_get_nvm -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x4e227599 iwl_write64 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5193629f iwl_set_soc_latency -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x51eb1e07 iwl_read32 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x52abbb80 iwl_get_cmd_string +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x459eb716 iwl_write_prph_delay +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x490ad3d5 __iwl_warn +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x4b9f9fa3 __iwl_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x4ca5b0c7 iwl_clear_bits_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x50fc472b iwl_fw_dbg_error_collect +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5338eadf iwl_acpi_get_wifi_pkg +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5467206e iwl_read_eeprom EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5473f817 iwl_fw_lookup_cmd_ver +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x58cef66d iwl_parse_eeprom_data +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x58fd5902 iwl_get_nvm +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x592a4324 iwl_read_prph_no_grab +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x592b4eb6 iwl_fw_start_dbg_conf EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5987fe45 iwl_fw_lookup_assert_desc EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5988395c iwl_notification_wait_init +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x59f3b06b iwl_read_direct32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5c074aea iwl_get_cmd_string EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5c52e109 iwl_opmode_deregister -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x617a9ed7 iwl_read_external_nvm -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x71285510 iwl_fw_dbg_collect -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x74367881 iwl_acpi_get_dsm_u8 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x6943a7c3 iwl_finish_nic_init +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x69c3c39f iwl_poll_bit +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x6e043607 iwl_parse_nvm_data +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x70622d0c iwl_write_direct64 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x7515933e iwl_parse_mei_nvm_data +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x754b70f1 iwl_poll_direct_bit EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x776221bf iwl_send_phy_db_data -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x7a9e0613 iwl_get_shared_mem_conf -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x7f6a8e3d iwl_set_bits_mask_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x7f99c0f5 iwl_parse_nvm_data -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x81cd83ba iwl_trans_send_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8352da0c iwl_pnvm_load -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x84c87e68 iwl_sar_geo_init -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x88b0207a iwl_cmd_groups_verify_sorted -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8ae34f74 iwl_acpi_get_lari_config_bitmap -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8d91b4e2 iwl_fw_runtime_init -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8e39e0cb iwl_write32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x7897cdc7 iwl_force_nmi +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x79f5f6cb iwl_read_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x7a7671d2 iwl_sar_get_wgds_table +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x856f3656 iwl_parse_nvm_mcc_info +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8b70bf11 iwl_acpi_get_pwr_limit EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x9038811a iwl_rfi_guid -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x929e448c __iwl_err -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x92b69023 iwl_clear_bits_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x932d7709 iwl_fw_start_dbg_conf -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x9836d5be iwl_fw_runtime_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x9d7884ab iwl_fwrt_dump_error_logs -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa7bf3698 iwl_poll_direct_bit +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x9378ec2b iwl_acpi_get_dsm_u32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x9bf35a69 iwl_sar_geo_init +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x9bfcf8b9 iwl_fwrt_dump_error_logs +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x9c28a7bd iwl_acpi_get_object +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa0b1a50d iwl_read32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa561fc97 iwl_fw_dbg_stop_sync +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa87da3b7 iwl_acpi_get_tas EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa9f05394 iwlwifi_mod_params -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xaf3034bf iwl_fw_dbg_read_d3_debug_data -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xaf6b634e iwl_acpi_get_mcc -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb01b6902 __iwl_warn +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xaaf611c2 iwl_get_shared_mem_conf +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xacee3f75 iwl_write_prph_no_grab +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb04ed49f iwl_set_bits_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb39fc471 iwl_set_soc_latency +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb3f96dac iwl_opmode_register +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb7f78b1b iwl_write_direct32 EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xbafc8994 iwl_wait_notification -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xbc189488 iwl_fw_runtime_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xbc28b7a8 iwl_opmode_register -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xbcf73ecf iwl_sar_get_wrds_table -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xbf603c49 iwl_sar_select_profile -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xbffcb4d1 iwl_init_paging -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc0eba45f iwl_read_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc1f49358 iwl_fw_dbg_error_collect -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc2faac8c iwl_parse_nvm_mcc_info -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc6bcc84e iwl_force_nmi -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc76c8734 iwl_fw_dbg_stop_sync +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xbbf0e501 __iwl_crit +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xbf8967ca iwl_sar_geo_support +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc0296135 iwl_dbg_tlv_del_timers +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc1b17c18 iwl_fw_dbg_collect_trig +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xca7b911b iwl_init_paging +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xcbdc6474 iwl_fw_runtime_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xcc31fc23 iwl_trans_send_cmd EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xce0c6460 iwl_phy_db_set_section -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd2b8c15f iwl_fw_dbg_collect_trig -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd7956974 __iwl_crit -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xdc916682 iwl_configure_rxq +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd2e85451 iwl_fw_dbg_collect +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd42bdba5 iwl_fw_dbg_collect_desc +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xdc5ac4ce iwl_acpi_get_mcc +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xdcaf7b16 iwl_sar_select_profile +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe0a7c34c iwl_configure_rxq EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe0eb5838 iwl_init_notification_wait -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe4233797 iwl_acpi_get_wifi_pkg -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe57b6e32 iwl_sar_get_ewrd_table -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe5f8b9e9 iwl_write_prph_no_grab +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe22e86dc __iwl_info EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe75b7e77 iwl_notification_wait -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe78dcea9 iwl_read_direct32 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe955cefc iwl_acpi_get_eckv EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xea1b26fc iwl_nvm_fixups -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xee531e36 iwl_acpi_get_object -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf1864423 iwl_acpi_get_pwr_limit -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf47e82cf iwl_free_fw_paging -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf6cf08fc iwl_write_direct32 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf75bc65d iwl_write8 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xeb0fba53 iwl_phy_db_init +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xeefa92a0 iwl_free_fw_paging EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf88964e4 iwl_remove_notification +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xfb53bf4f iwl_write64 EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xfc1e6f41 iwl_guid -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xfe7c8fd4 iwl_write_prph64_no_grab +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xffaec842 iwl_write_prph64_no_grab EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/mei/iwlmei 0x1aca8c55 iwl_mei_host_disassociated +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/mei/iwlmei 0x1d212e02 iwl_mei_tx_copy_to_csme EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/mei/iwlmei 0x27595f53 iwl_mei_set_rfkill_state EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/mei/iwlmei 0x2a6267b8 iwl_mei_get_ownership EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/mei/iwlmei 0x4ceac14c iwl_mei_is_connected EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/mei/iwlmei 0x4e00000b iwl_mei_host_associated EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/mei/iwlmei 0x793ece1d iwl_mei_unregister_complete EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/mei/iwlmei 0x7d8730a9 iwl_mei_set_nic_info -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/mei/iwlmei 0xa367c5f1 iwl_mei_set_netdev +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/mei/iwlmei 0xa3814d4b iwl_mei_set_netdev EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/mei/iwlmei 0xa571d81a iwl_mei_start_unregister -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/mei/iwlmei 0xba1679ae iwl_mei_tx_copy_to_csme EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/mei/iwlmei 0xc30d8ba6 iwl_mei_get_nvm EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/mei/iwlmei 0xc76e7b8e iwl_mei_set_power_limit EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/mei/iwlmei 0xe3e860df iwl_mei_device_down EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/mei/iwlmei 0xe897851a iwl_mei_register EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/mei/iwlmei 0xee3e060e iwl_mei_set_country_code -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x0ec32555 p54_init_common -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x14d498b2 p54_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x3b282469 p54_parse_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x61b667e7 p54_register_common -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x69a3a5de p54_free_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x74a713b5 p54_parse_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x799e1209 p54_unregister_common -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xc684195a p54_read_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xca4432d4 p54_free_common -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x0345b495 lbs_host_to_card_done -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x05e84201 lbs_get_firmware_async -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x0f5224e9 __lbs_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x13ca29dc lbs_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x15bbd463 lbs_notify_command_response -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x1f8040ee lbs_stop_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x23b418d4 lbs_start_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x283f2ab5 lbs_queue_event -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x56b2c106 lbs_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x0a770ee6 p54_register_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x430897ff p54_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x61b0f19f p54_free_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x67a4c8c4 p54_parse_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x9e81f226 p54_unregister_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xb348ea1b p54_parse_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xc0928a1b p54_free_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xd029f2cc p54_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xd9250cab p54_init_common +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x016ff8fa lbs_process_rxed_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x05df438a lbs_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x082058c3 lbs_stop_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x08d9f024 lbs_get_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x254c5d10 lbs_queue_event +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x317d44b4 lbs_host_sleep_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x50cab4c9 lbs_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x5306411e __lbs_cmd EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x5fdf38b8 lbs_disablemesh -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x7387aad0 lbs_host_sleep_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xa795535e lbs_process_rxed_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xb3046fcc lbs_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xcc4f9449 lbs_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xce6afbc9 lbs_send_tx_feedback -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xd05dbb84 lbs_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x698467a0 lbs_notify_command_response +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x809695cc lbs_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x89bf7ba0 lbs_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x8f190fed lbs_host_to_card_done +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xc8dd5d9d lbs_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xcb560df6 lbs_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xdd2beeb7 lbs_get_firmware_async +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xe5ba93a6 lbs_start_card EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xf64277de lbs_debug -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xfc267b4d lbs_get_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x42209646 __lbtf_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x423414ff lbtf_bcn_sent -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x47b96ab0 lbtf_cmd_copyback -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x62a27f58 lbtf_cmd_response_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x723dfb22 lbtf_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x55d6ff12 lbtf_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x59750adf lbtf_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x70a60cb2 lbtf_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x87a05e51 lbtf_bcn_sent +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xc1ca415a lbtf_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xc536eb35 __lbtf_cmd EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xc85e6899 lbtf_debug -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xe3140b40 lbtf_send_tx_feedback -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xe51c6863 lbtf_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xeed83156 lbtf_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x2c5acaca mwifiex_fw_dump_event -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x2cb2e880 mwifiex_process_hs_config -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x375e67bc mwifiex_deauthenticate_all -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x3f03a6f5 mwifiex_write_data_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x44a4582e mwifiex_queue_main_work -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x4b0c2b4c mwifiex_add_virtual_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x55abb635 mwifiex_reinit_sw -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x573fc9fa mwifiex_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x5d44696c mwifiex_prepare_fw_dump_info -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x67a37c23 mwifiex_handle_rx_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x87b24a46 mwifiex_init_shutdown_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x888330b7 mwifiex_shutdown_sw -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x8c9f5c10 mwifiex_process_sleep_confirm_resp -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x9e7ab27e mwifiex_dnld_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xac14e066 mwifiex_disable_auto_ds -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xac874ced mwifiex_multi_chan_resync -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xb018445b mwifiex_del_virtual_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xc66dd764 mwifiex_main_process -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xcb69e966 mwifiex_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xcbd52726 mwifiex_enable_hs -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xcded0627 mwifiex_drv_info_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xdc752b16 lbtf_cmd_response_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xe2c1662b lbtf_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x10ca871d mwifiex_handle_rx_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x12025afd mwifiex_init_shutdown_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x2ada8a4c mwifiex_del_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x2db16fdc mwifiex_multi_chan_resync +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x2e4c3759 mwifiex_enable_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x34a8934a _mwifiex_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x4ae220c7 mwifiex_queue_main_work +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x4b3ce5b6 mwifiex_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x4f1db494 mwifiex_reinit_sw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x6583d286 mwifiex_drv_info_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x6b4bdb8b mwifiex_dnld_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x6f9b6c52 mwifiex_disable_auto_ds +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x71474703 mwifiex_write_data_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x93839bb1 mwifiex_process_sleep_confirm_resp +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xa4a14dcf mwifiex_fw_dump_event +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xb9a3f46d mwifiex_process_hs_config +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xba37c5eb mwifiex_prepare_fw_dump_info +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xbdcb8253 mwifiex_upload_device_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xc5d89f20 mwifiex_main_process +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xc909f194 mwifiex_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xca0295f3 mwifiex_cancel_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xd1b90659 mwifiex_shutdown_sw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xd4a6471e mwifiex_add_virtual_intf EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xd4dad9f3 mwifiex_alloc_dma_align_buf -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xdd5902f7 mwifiex_upload_device_dump -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xe8006e86 _mwifiex_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xf3e629ff mwifiex_cancel_hs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x05bc7cf5 mt76_txq_schedule -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x09af90ee mt76_unregister_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0a0f49ec mt76_csa_finish -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0b271271 mt76_tx_status_skb_add -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0be595fa mt76_seq_puts_array -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0c93ac23 mt76_set_irq_mask -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x10fb4930 mt76_mcu_send_and_get_msg +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xe0739b56 mwifiex_deauthenticate_all +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x02459cc1 mt76_alloc_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0a0971cb mt76_queue_tx_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0d41508d mt76_mcu_msg_alloc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0ee4151e mt76_tx_status_skb_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x102b9076 mt76_tx_status_check +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x16003b64 __mt76_set_tx_blocked +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1657fe2e mt76_unregister_device EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x17f568e9 mt76_rates -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1d079bba mt76_mcu_skb_send_and_get_msg +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1d6476d4 mt76_get_antenna EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1ec57b4f __mt76_worker_fn -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x215c00fe mt76_get_rate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x22324ac0 mt76_csa_check -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x23379883 mt76_tx_check_agg_ssn -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x27a8f42e mt76_init_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2f11d027 mt76_put_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x35c62e91 mt76_register_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x369ec118 mt76_update_survey -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x37f79e56 mt76_pci_disable_aspm -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3f5332fa mt76_token_consume -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x43afad7c mt76_queue_tx_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4cff6ee6 mt76_sta_state -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x533c241f __traceiter_dev_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x573c02ab __mt76_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5b3eb9e1 mt76_tx_status_lock -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5daf3a86 mt76_eeprom_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x620786cf mt76_sw_scan_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x62950b14 mt76_tx_status_check -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x66edb542 mt76_skb_adjust_pad -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x67381056 mt76_mcu_rx_event -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6d5d2804 __SCK__tp_func_dev_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6f1a9987 mt76_alloc_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x70a4d256 mt76_get_survey -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7681f7f6 mt76_mmio_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x772817e8 mt76_tx_worker_run -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x791e26d8 mt76_tx_status_skb_done -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7937711b mt76_stop_tx_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x80724ff3 mt76_queues_read -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x82acee78 mt76_txq_schedule_all -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x84cdf62d mt76_get_of_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8976bc70 __SCK__tp_func_mac_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x897c50e7 __mt76_poll_msec -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8e2e954d mt76_dma_rx_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8f6f2d11 mt76_sta_pre_rcu_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8f9bf316 mt76_alloc_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x96ca2404 mt76_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x985af213 mt76_has_tx_pending -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9aa1b80d __tracepoint_mac_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9b6e0a30 __traceiter_mac_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9c0344cc mt76_set_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9ca16e9e mt76_set_stream_caps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9d03ba80 mt76_wake_tx_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9df17da9 mt76_sw_scan -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa957c674 mt76_rx_aggr_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xaa826fe0 mt76_release_buffered_frames -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xaf33560a mt76_free_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb0e7acb8 mt76_register_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb164bdf1 mt76_dma_attach -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb474d65f mt76_dma_cleanup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb5dbcd97 __mt76_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb6c010f5 mt76_set_tim -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb8e8576a mt76_mcu_get_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x21dc848e mt76_alloc_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x28137c57 mt76_get_rate_power_limits +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x298ac1e8 mt76_has_tx_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2e3f77cb mt76_dma_attach +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2ece77e7 mt76_sw_scan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x30c50400 __SCK__tp_func_dev_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x33c99454 mt76_token_consume +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x36075309 mt76_skb_adjust_pad +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x37ecdce8 mt76_set_stream_caps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x39d982d1 __mt76_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3acf1dda mt76_wake_tx_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3d82abfb mt76_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3f2ebec2 __mt76_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x46691b9a mt76_tx_status_skb_get +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x499a6429 __SCK__tp_func_mac_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4a9ef25e mt76_mcu_skb_send_and_get_msg +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4c221159 __traceiter_mac_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4ee19200 mt76_dma_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5b829f78 mt76_queues_read +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5ba983d0 mt76_release_buffered_frames +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5ece7283 mt76_unregister_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x67ef045b mt76_sta_state +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6bc1e216 __mt76_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6cbbcc80 mt76_tx_status_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6cfd9c02 mt76_update_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6eb6cbca mt76_csa_finish +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6fc7a712 mt76_csa_check +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x70578783 mt76_tx_status_unlock +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x759bda91 mt76_tx_check_agg_ssn +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7eae71da mt76_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x80742315 mt76_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x831bf9b2 mt76_insert_ccmp_hdr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8419b223 mt76_eeprom_override +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8b8c3b1f mt76_pci_disable_aspm +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x929831fb mt76_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x92ee82ef mt76_token_release +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9336e8ad mt76_eeprom_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x961b7d84 mt76_get_min_avg_rssi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x979547df mt76_mcu_rx_event +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9b770208 mt76_get_rate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa6e03ac7 mt76_update_survey_active_time +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa778596c __traceiter_dev_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa7f98226 mt76_put_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xab4a8582 mt76_mcu_get_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb12a2d94 mt76_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb28a726d mt76_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb31337d0 mt76_sta_pre_rcu_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb340cae6 mt76_mcu_send_and_get_msg +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb4845871 mt76_tx_status_skb_done +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb994d28f mt76_seq_puts_array +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbb0ef4e4 mt76_mcu_send_firmware EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbb31a266 __SCT__tp_func_mac_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc01abd2d mt76_unregister_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc4c20b78 mt76_eeprom_override -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc5d6d7b8 mt76_get_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc60bdd01 mt76_rx_aggr_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbbf5c249 mt76_rx_poll_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbe59af3b mt76_register_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc1a26e32 mt76_set_irq_mask +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc31beed3 mt76_set_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc44cc8d7 mt76_register_debugfs_fops +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc4545c04 mt76_mmio_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc62e3bad mt76_get_of_eeprom EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc6634315 mt76_ac_to_hwq -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc7f2518b mt76_tx_status_unlock -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc9fbc5a3 mt76_register_debugfs_fops -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xca2be90a mt76_update_survey_active_time -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd36e3e6c mt76_insert_ccmp_hdr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd39f150f __tracepoint_dev_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd7dd99ae mt76_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd878a101 mt76_mcu_send_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe27ff9c8 mt76_get_min_avg_rssi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc84b97b4 __tracepoint_dev_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xcbec2e8f mt76_rx_aggr_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd220ebdc mt76_txq_schedule +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd7ecc9fc mt76_get_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd825c319 mt76_init_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xdba145e3 __tracepoint_mac_txdone EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe40b66ef mt76_wcid_alloc EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe45628cb __SCT__tp_func_dev_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe9d7b818 mt76_get_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xecd433c2 mt76_get_rate_power_limits -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf0095ce3 mt76_tx_status_skb_get -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf0c76c42 __mt76_set_tx_blocked -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf32adc6a mt76_rx_poll_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf33b8933 mt76_mcu_msg_alloc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf8c8dba8 mt76_token_release -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xfa5d06ad __mt76_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x0a1c6dca mt76_connac_mcu_alloc_sta_req -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x0b747d8b mt76_connac_mcu_set_suspend_iter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x10256df9 mt76_connac_mcu_wtbl_hdr_trans_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x1c31d09a mt76_connac_mcu_chip_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x28093ae9 mt76_connac_mcu_alloc_wtbl_req -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x2fda4dad mt76_connac_mcu_sched_scan_req -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x3578eede mt76_connac_mcu_wtbl_generic_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x3c65f045 mt76_connac_mcu_update_gtk_rekey -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x3eccbecb mt76_connac_mcu_wtbl_ht_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x43725f45 mt76_connac_mcu_start_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4fae7774 mt76_connac_mcu_uni_add_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x51a8070e mt76_connac_mcu_set_rts_thresh -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x624956c2 mt76_connac_mcu_sched_scan_enable -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x65bbfabd mt76_connac_mcu_hw_scan -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x6aaab7be mt76_connac_mcu_sta_basic_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x6b857c45 mt76_connac_mcu_sta_ba -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x6e89797f mt76_connac_mcu_start_patch -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x720ce5cd mt76_connac_mcu_patch_sem_ctrl -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7524af63 mt76_connac_mcu_uni_add_bss -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x75a0dd8b mt76_connac_mcu_add_nested_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x76e24657 mt76_connac_mcu_set_deep_sleep -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x85c41d50 mt76_connac_pm_dequeue_skbs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x8bd312b2 mt76_connac_mcu_update_arp_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x8f65902b mt76_connac_mcu_cancel_hw_scan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xecef663a mt76_free_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf3f6a3df mt76_stop_tx_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf93fa422 mt76_txq_schedule_all +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xfba38df7 mt76_tx_worker_run +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xfbf5bea4 mt76_dma_rx_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xfe0d87a9 __mt76_poll_msec +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xfeb53f0d mt76_rx_aggr_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x0b7ee419 mt76_connac_mcu_sta_ba_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x166133c8 mt76_connac_mcu_beacon_loss_iter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x193ea5e0 mt76_connac_mcu_wtbl_ht_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x1d56efe6 mt76_connac_mcu_wtbl_generic_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x2521293f mt76_connac_mcu_wtbl_ba_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x26e75f6b mt76_connac_pm_wake +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x2a42c8c8 mt76_connac_mcu_sta_basic_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x3e294308 mt76_connac_mcu_set_rate_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x45144acb mt76_connac_mcu_alloc_wtbl_req +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x45ae2f4d mt76_connac_mcu_chip_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4f473580 mt76_connac_mcu_patch_sem_ctrl +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x58b2758b mt76_connac_mcu_start_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x6085d595 mt76_connac_mcu_wtbl_hdr_trans_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x6159215c mt76_connac_mcu_set_channel_domain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x65b32a19 mt76_connac_mcu_sta_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x67d03a59 mt76_connac_mcu_set_hif_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x6da8b964 mt76_connac_mcu_set_mac_enable +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x703a479a mt76_connac_mcu_alloc_sta_req +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7312dbae mt76_connac_mcu_sched_scan_enable +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x79294748 mt76_connac_mcu_sta_update_hdr_trans +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7ab66de6 mt76_connac_mcu_update_gtk_rekey +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7c1d02e0 mt76_connac_mcu_sta_tlv EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x908ca40c mt76_connac_wowlan_support -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x9288d68a mt76_connac_mcu_get_nic_capability -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x94f1b3cc mt76_connac_pm_queue_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x96d5c763 mt76_connac_mcu_set_rate_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x9c70e366 mt76_connac_mcu_sta_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x9da3b9fa mt76_connac_mcu_set_hif_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa0084423 mt76_connac_mcu_sta_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa2d0f527 mt76_connac_mcu_set_mac_enable -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xbb524940 mt76_connac_mcu_wtbl_ba_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xbc0fed41 mt76_connac_mcu_set_vif_ps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xbf34ab38 mt76_connac_mcu_init_download -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc4cc530b mt76_connac_mcu_beacon_loss_iter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc902a95c mt76_connac_mcu_sta_update_hdr_trans -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xcbec9f3a mt76_connac_free_pending_tx_skbs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xdd30a106 mt76_connac_sta_state_dp -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xdf40a395 mt76_connac_power_save_sched -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf32cea18 mt76_connac_mcu_sta_ba_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf6f6ba61 mt76_connac_mcu_coredump_event -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf888e4fc mt76_connac_mcu_set_channel_domain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xfc838540 mt76_connac_pm_wake -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x052a0e2b mt76s_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x107b45b8 mt76s_alloc_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xeb570d9e mt76s_deinit -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x2b1f711e mt76u_vendor_request -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x380766b8 mt76u_queues_deinit -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x421cf130 mt76u_stop_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x46ad5574 mt76u_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x6fd11f00 mt76u_alloc_mcu_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x98f654f8 mt76u_alloc_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xad1ba646 mt76u_stop_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xb6fe0d54 mt76u_resume_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xd3435ff4 mt76u_single_wr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x000260b4 mt7615_mcu_restart -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x04263679 mt7615_mcu_reg_rr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x1826f0b5 mt7615_init_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x2a02f832 mt7615_thermal_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x3020dcd7 mt7615_init_work -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x38fecb3c mt7615_mcu_reg_wr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x3917ed34 mt7615_mac_set_rates -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x5466c8bf mt7615_mac_write_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x54af9cce mt7615_txp_skb_unmap -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x5844f1d3 mt7615_queue_rx_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x5a0d98a0 __mt7663_load_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x5d76c585 mt7615_sta_ps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x69043624 mt7615_mcu_fill_msg -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x6a8155c7 mt7615_mcu_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x754aa655 mt7615_eeprom_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x7ac8c4af mt7615_tx_token_put -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x7bb9e7c6 mt7615_init_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x7f261c15 mt7615_mcu_exit -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x86fb8ee9 mt7622_trigger_hif_int -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x8ae81301 mt7615_update_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x8c88ea6d mt7615_register_ext_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x8da17173 mt7615_wait_for_mcu_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xafb6ade9 mt7615_unregister_ext_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xb2a7d075 mt7615_mac_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xd4756495 mt7615_mcu_parse_response -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xd78c8f55 mt7615_mac_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xe2bf4f7a mt7615_mac_sta_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xe8f17443 mt7615_init_debugfs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xeb58ebec mt7615_ops -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615e 0x25deef29 mt7615_dma_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x979b760d mt76_connac_mcu_set_rts_thresh +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x9d9f98b1 mt76_connac_mcu_hw_scan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x9dd42dba mt76_connac_sta_state_dp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x9f235f4f mt76_connac_mcu_start_patch +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa9e6c0ef mt76_connac_pm_queue_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb0a11e25 mt76_connac_mcu_uni_add_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb1cc4d49 mt76_connac_mcu_add_nested_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb490666e mt76_connac_mcu_sta_ba +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb72b2b66 mt76_connac_mcu_coredump_event +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc53f9b6c mt76_connac_mcu_get_nic_capability +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc65fb155 mt76_connac_mcu_init_download +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc9ce07f4 mt76_connac_mcu_sched_scan_req +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xccbc4fe3 mt76_connac_mcu_uni_add_bss +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xcdef59e3 mt76_connac_mcu_set_deep_sleep +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd0dcbd9f mt76_connac_mcu_cancel_hw_scan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xdcb30662 mt76_connac_free_pending_tx_skbs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xdf90572a mt76_connac_mcu_set_suspend_iter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xed131f04 mt76_connac_mcu_set_vif_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf2e36d96 mt76_connac_power_save_sched +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xfd1d143e mt76_connac_mcu_update_arp_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xff1efa98 mt76_connac_pm_dequeue_skbs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x559e5c5f mt76s_alloc_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x81573895 mt76s_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xd44bbdf3 mt76s_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x408129b3 mt76u_resume_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x5ace748d mt76u_alloc_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x6321a191 mt76u_stop_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xa266fba1 mt76u_single_wr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xa4fd34df mt76u_alloc_mcu_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xd9689884 mt76u_stop_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xdafa9a79 mt76u_queues_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xe13d6db9 mt76u_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xe6ecf251 mt76u_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x03e4ee00 mt7615_eeprom_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x0c2c41c5 mt7615_mcu_fill_msg +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x133d9cc1 mt7615_init_debugfs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x17d10cf0 mt7615_unregister_ext_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x1d167372 __mt7663_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x1d2cfab2 mt7615_thermal_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x23c0c24d mt7615_mac_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x2c03bba3 mt7615_wait_for_mcu_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x2d218d09 mt7615_mcu_reg_rr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x2d2dc508 mt7615_txp_skb_unmap +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x2dd74cc8 mt7615_mac_sta_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x48972e06 mt7615_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x4f2ffefa mt7615_init_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x64cfe503 mt7615_tx_token_put +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x69a8d941 mt7615_init_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x7d760d87 mt7622_trigger_hif_int +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x7f21582c mt7615_update_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x7f6969e6 mt7615_mcu_restart +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x8823f657 mt7615_register_ext_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x892c0b64 mt7615_queue_rx_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x8d23b9f2 mt7615_sta_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x9defacda mt7615_mcu_parse_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xadd9630a mt7615_mac_write_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xaf28e025 mt7615_mcu_reg_wr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xb22d734d mt7615_mac_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xb82ce16a mt7615_init_work +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xc2226c94 mt7615_mcu_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xe037b4b1 mt7615_mcu_exit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xf260e575 mt7615_mac_set_rates +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615e 0x3b77c5d7 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 0x330d43c2 mt7663_usb_sdio_register_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x449229d8 mt7663_usb_sdio_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0xc053d367 mt7663_usb_sdio_tx_status_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0xe5bc531a mt7663_usb_sdio_tx_prepare_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x0e1757db mt76x0_mac_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x2abb4c0d mt76x0_init_hardware -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x5db59c50 mt76x0_phy_calibrate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x7c1bb807 mt76x0_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xc17cc233 mt76x0_register_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xe54589f4 mt76x0_chip_onoff -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x034bc4b3 mt76x02_mac_shared_key_setup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x03b2a3f8 mt76x02_mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x5e7dbd1f mt7663_usb_sdio_tx_status_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x83b1672e mt7663_usb_sdio_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x964ca1f2 mt7663_usb_sdio_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0xe4573a24 mt7663_usb_sdio_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x16569aa5 mt76x0_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x2b057aac mt76x0_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x3717deb2 mt76x0_phy_calibrate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x7627d3a8 mt76x0_mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x78079c0c mt76x0_init_hardware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xc23c49b6 mt76x0_chip_onoff +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0053df88 mt76x02_enqueue_buffered_bc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x033a3c7e mt76x02_phy_set_band EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0462ce68 mt76x02_add_rate_power_offset -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0bcda27b mt76x02_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0d05816e mt76x02_init_debugfs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x075d76ad mt76x02_mac_wcid_setup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x08465600 mt76x02_conf_tx EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0d4023ec mt76x02_get_max_rate_power -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0ef395e8 mt76x02_mac_write_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x12476092 mt76x02_set_ethtool_fwver -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x184a6d81 mt76x02_eeprom_copy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x18b9ec5d mt76x02_phy_set_rxpath -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x20be1947 mt76x02_mac_cc_reset -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x227b81c8 mt76x02_enqueue_buffered_bc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x268989d0 mt76x02_sta_ps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x29c2c8a7 mt76x02_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2e0a2cbc mt76x02_dfs_init_params -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2f461add mt76x02_get_lna_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x30f6c659 mt76x02_ext_pa_enabled -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x319efc29 mt76x02_resync_beacon_timer +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x131b7dec mt76x02_sta_rate_tbl_update +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1e1781ea mt76x02_phy_set_bw +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x219b1520 mt76x02_dma_disable +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2b3b03e7 mt76x02_eeprom_copy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2be3dcfb mt76x02_mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2d9a7436 mt76x02_update_beacon_iter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2f2d40ee mt76x02_tx_status_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x30a0dfcd mt76x02_mcu_function_select EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x35d2834d mt76x02_limit_rate_power -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3613bf89 mt76x02_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x378a5ad6 mt76x02_set_rts_threshold -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3e282277 mt76x02_phy_dfs_adjust_agc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3ff50303 mt76x02_remove_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4080c800 mt76x02_set_tx_ackto -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4567162d mt76x02_mac_setaddr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4a84d776 mt76x02_edcca_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x52e0ac53 mt76x02_queue_rx_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x39de11f9 mt76x02_dma_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3e34f9b0 mt76x02_eeprom_parse_hw_cap +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x40730dd2 mt76x02_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4108aa6a mt76x02_mcu_set_radio_state +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x41af2a12 mt76x02_phy_set_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x44a3eb51 mt76x02_edcca_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x45fde619 mt76x02_config_mac_addr_list +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x461c90e1 mt76x02_phy_set_rxpath +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x48695e58 mt76x02_mcu_calibrate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4c94df21 mt76x02_reconfig_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4d353b8b mt76x02_mcu_parse_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4e0066ac mt76x02_phy_dfs_adjust_agc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x50a913f7 mt76x02_update_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5795f84a mt76x02_set_key EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5bd84fd5 mt76x02_rates -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x659767d9 mt76x02_phy_set_band -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x67bf1763 mt76x02_update_beacon_iter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x69a78c1b mt76x02_mcu_set_radio_state -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6a77436a mt76x02_ampdu_action -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6c0b4874 mt76x02_mcu_cleanup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6d2725f9 mt76x02_mac_reset_counters -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6e2eccec mt76x02_get_rx_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x74f0739a mt76x02_phy_set_bw -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x76953345 mt76x02_bss_info_changed -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x784ae2ff mt76x02_init_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x797ae94f mt76x02_add_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7c9f0553 mt76x02_get_efuse_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7df628f3 mt76x02_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x815606a2 mt76x02_config_mac_addr_list -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x822accdc mt76x02_mcu_calibrate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x88b1c106 mt76x02_remove_hdr_pad -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8a88086d mt76x02_mac_wcid_setup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8c427e07 mt76x02_reconfig_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8d89dc76 mt76x02_phy_adjust_vga_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x65e8f06f mt76x02_phy_adjust_vga_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x684bf909 mt76x02_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6e505ba1 mt76x02_mac_cc_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x738c4e04 mt76x02_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7b505c8a mt76x02_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7f25d5ef mt76x02_dfs_init_params +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7f44afda mt76x02_init_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x81c6baf6 mt76x02_mac_reset_counters +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8373df0c mt76x02_resync_beacon_timer +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8c07718c mt76x02_mac_shared_key_setup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8daf3c1f mt76x02_queue_rx_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8f4d04df mt76x02_remove_interface EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x91d5b9ee mt76x02_irq_handler -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa544a586 mt76x02_mcu_function_select -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xaa98268d mt76x02_configure_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb081786c mt76x02_update_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb12bd351 mt76x02_init_agc_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xbd9cc2d6 mt76x02_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc2f8f6c3 mt76x02_tx_status_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc35b59c2 mt76x02_tx_prepare_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc38ffc06 mt76x02_mcu_msg_send -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc5ee23de mt76x02_mcu_parse_response -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xcd1ada19 mt76x02_init_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xce386997 mt76x02_mac_set_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd6372d43 mt76x02_phy_set_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd6cd3274 mt76x02_sta_rate_tbl_update -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd8019be2 mt76x02_dma_disable -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xdefcfecd mt76x02_sw_scan_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xea513df4 mt76x02_eeprom_parse_hw_cap -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xeb1d54b2 mt76x02_tx_set_txpwr_auto -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xeb4fea0f mt76x02_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf673a618 mt76x02_set_coverage_class -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf8836e6b mt76x02e_init_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf901bc17 mt76x02_rx_poll_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf944d09f mt76x02_dma_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xfa998b2e mt76x02_phy_set_txdac -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x27accefe mt76x02u_mcu_fw_send_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x52c1fb8b mt76x02u_tx_prepare_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x7704ac32 mt76x02u_mcu_fw_reset -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x86e680d3 mt76x02u_init_mcu -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x8bcf917c mt76x02u_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x9ace9ab0 mt76x02u_init_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xe53db9e1 mt76x02u_mac_start -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xee52c609 mt76x02u_exit_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x063b380d mt76_write_mac_initvals -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x0fd06171 mt76x2_apply_gain_adj -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x23b8a050 mt76x2_init_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x23cfab15 mt76x2_get_rate_power -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x286c31ac mt76x2_mcu_set_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x33fba3f3 mt76x2_get_temp_comp -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x3ad202a5 mt76x2_phy_tssi_compensate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x410ab1f7 mt76x2_configure_tx_delay -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x87cd1db6 mt76x2_mac_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x9ed8e7b3 mt76x2_mcu_load_cr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xa3442e1f mt76x2_eeprom_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xa8e3dad3 mt76x2_phy_set_txpower_regs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xaf85f17c mt76x2_mcu_init_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xb92b3924 mt76x2_read_rx_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xbf367d30 mt76x2_phy_set_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xce26d3f9 mt76x2_phy_update_channel_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xcff0d6b4 mt76x2_get_power_info -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xdf2d11ed mt76x2_reset_wlan -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xe8af78db mt76x2_mcu_tssi_comp -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x1b113f81 host_sleep_notify -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x2cfd510e wilc_handle_isr -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x47d5e78c host_wakeup_notify -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x4fe33e8b wilc_netdev_cleanup -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x83acba14 wilc_cfg80211_init -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xa6915350 chip_wakeup -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xef80ee1e chip_allow_sleep -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x0b357fa9 qtnf_get_debugfs_dir -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x0c0c504e qtnf_wake_all_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x934c303c mt76x02_mac_write_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x955417b6 mt76x02_mac_setaddr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x970606b7 mt76x02_init_agc_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x99d56d96 mt76x02_mac_set_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9c622c10 mt76x02_set_tx_ackto +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa06cda42 mt76x02_remove_hdr_pad +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa15397a0 mt76x02_init_debugfs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa2009b11 mt76x02_get_lna_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa6918cd9 mt76x02_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb0435290 mt76x02_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb47d1d05 mt76x02_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb5ee677c mt76x02_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb7c52dbc mt76x02_mcu_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xbbadf04a mt76x02_set_coverage_class +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xbd450f22 mt76x02e_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc216f6e9 mt76x02_ext_pa_enabled +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc751774c mt76x02_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc87c35d9 mt76x02_set_ethtool_fwver +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd00f8da0 mt76x02_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd021e4ba mt76x02_phy_set_txdac +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd87db9fc mt76x02_tx_set_txpwr_auto +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xec4907ec mt76x02_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf082120d mt76x02_mcu_msg_send +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf4d226fc mt76x02_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf9408551 mt76x02_sta_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf9d26c69 mt76x02_get_rx_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xfaac6186 mt76x02_get_efuse_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xfe4fcebd mt76x02_rx_poll_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x1b31ca21 mt76x02u_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x25481700 mt76x02u_mcu_fw_send_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x2e5c8116 mt76x02u_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x4cf92d6a mt76x02u_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x52fd741e mt76x02u_init_mcu +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xbd9aa63e mt76x02u_mcu_fw_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xe5a28d60 mt76x02u_mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xfe33c1a2 mt76x02u_exit_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x137c8ac7 mt76x2_mcu_tssi_comp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x13ef8086 mt76x2_get_temp_comp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x225246cd mt76x2_phy_tssi_compensate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x3035b251 mt76x2_phy_set_txpower_regs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x3785fb61 mt76x2_init_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x656efe83 mt76x2_mcu_set_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x682da70d mt76x2_reset_wlan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x695cc1e0 mt76x2_get_power_info +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x6abc2e04 mt76x2_mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x71422ebe mt76x2_mcu_load_cr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x7a7597b7 mt76x2_configure_tx_delay +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x9d81f9a9 mt76_write_mac_initvals +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xa3ae01f9 mt76x2_read_rx_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xb525b290 mt76x2_mcu_init_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xc0306945 mt76x2_apply_gain_adj +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xe2dcaf33 mt76x2_phy_set_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xe38aafdd mt76x2_get_rate_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xe7e43df4 mt76x2_phy_update_channel_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xfbcd2324 mt76x2_eeprom_init +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x1c31e24d host_wakeup_notify +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x3fc3c4d8 wilc_cfg80211_init +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xa85b768f chip_wakeup +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xb6ff75b4 host_sleep_notify +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xc313ba44 wilc_handle_isr +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xee5ac928 chip_allow_sleep +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xfc1bbe49 wilc_netdev_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x1f2e18c8 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 0xcdb79bb8 qtnf_core_detach -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xd37a0e73 qtnf_trans_handle_rx_ctl_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xd82dfc8b qtnf_classify_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xda122ecb qtnf_core_attach -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x06955749 rt2800_config_erp -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x0835f184 rt2800_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x0ccf5188 rt2800_wait_csr_ready -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x0eba29d7 rt2800_txstatus_pending -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x18343058 rt2800_config_ant -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x1a05600e rt2800_rfkill_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x2371cb1b rt2800_get_txwi_rxwi_size -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x26af7dc2 rt2800_clear_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x2d7c6037 rt2800_get_key_seq -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x37f57f9a rt2800_txstatus_timeout -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x3a4a6317 rt2800_get_survey -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x3ae1d518 rt2800_set_rts_threshold -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x42305d03 rt2800_reset_tuner -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x45f3aa2e rt2800_enable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x5153f2fe rt2800_efuse_detect -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x53bdcd95 rt2800_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x60259b40 rt2800_txdone_nostatus -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x66cde0e7 rt2800_mcu_request -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6a24f945 rt2800_pre_reset_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7546be66 rt2800_config_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x89d0847d rt2800_watchdog -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x90c0e143 rt2800_config_shared_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x92d5df95 rt2800_load_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x93f65b8e rt2800_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x952bbb29 rt2800_read_eeprom_efuse -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x9cf06e0c rt2800_probe_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa42c476e rt2800_write_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb1749c2b rt2800_process_rxwi -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb18ee6b6 rt2800_disable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb6c1a77b rt2800_check_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb7a1f218 rt2800_get_tsf -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xbd5afe59 rt2800_disable_wpdma -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc8abe5cb rt2800_link_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xcfd7e695 rt2800_write_tx_data -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd0186c56 rt2800_wait_wpdma_ready -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd1661c9f rt2800_vco_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd211431e rt2800_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd677e457 rt2800_txdone_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd7d1075d rt2800_config_pairwise_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe7029cac rt2800_config_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xea093a77 rt2800_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf009080d rt2800_gain_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf7445a5d rt2800_ampdu_action -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xfb0b7bfa rt2800_link_tuner -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x0f1f29b2 rt2800mmio_get_entry_state -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x169eab48 rt2800mmio_queue_init -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x25609b26 rt2800mmio_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x334425d4 qtnf_core_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x3671269a qtnf_trans_handle_rx_ctl_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x9d5eab23 qtnf_classify_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xe4ddd501 qtnf_wake_all_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xfc620bc8 qtnf_core_attach +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x02a5ac3e rt2800_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x038d7435 rt2800_write_tx_data +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x07e562d7 rt2800_get_key_seq +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x0a4a6e5c rt2800_read_eeprom_efuse +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x16177580 rt2800_disable_wpdma +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x1b7889a3 rt2800_wait_wpdma_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x237ce154 rt2800_config_pairwise_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x340526e7 rt2800_pre_reset_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x3cb37f65 rt2800_config_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x41fe7333 rt2800_efuse_detect +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x4307e1d0 rt2800_link_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x430d6bd6 rt2800_config_shared_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x48d565e6 rt2800_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x4b99d848 rt2800_txdone_nostatus +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x5923c752 rt2800_process_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x592d4e55 rt2800_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x5d257c8e rt2800_txstatus_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x5fefaa11 rt2800_mcu_request +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x62b6c576 rt2800_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x62f16fcd rt2800_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x692860a8 rt2800_clear_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x71e8b1f9 rt2800_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x73a024d1 rt2800_config_erp +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x8e91160d rt2800_link_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x937a642f rt2800_vco_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x97be3ba5 rt2800_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x9f8f5608 rt2800_gain_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa2c9b9df rt2800_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa62f406d rt2800_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xae4b8fe3 rt2800_txstatus_timeout +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb0869f36 rt2800_get_txwi_rxwi_size +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb0b3569a rt2800_reset_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb352cf2e rt2800_wait_csr_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xbac999eb rt2800_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc2d13187 rt2800_txdone_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc4796c9a rt2800_config_ant +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc5686cd1 rt2800_config_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xcd38dfb3 rt2800_check_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd6505c42 rt2800_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd8700fa1 rt2800_probe_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd9f062ee rt2800_write_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xdd45bd5a rt2800_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xea3745d9 rt2800_get_tsf +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xfab03bd3 rt2800_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x09a66473 rt2800mmio_probe_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x09e173ba rt2800mmio_fill_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x142f68a4 rt2800mmio_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x21408951 rt2800mmio_write_tx_desc +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x229eb961 rt2800mmio_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x268187de rt2800mmio_clear_entry EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x32ac3645 rt2800mmio_rxdone_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x332c6852 rt2800mmio_enable_radio EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x3d741c87 rt2800mmio_pretbtt_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x4369fb42 rt2800mmio_init_registers EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5028bbb2 rt2800mmio_tbtt_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5421d5b6 rt2800mmio_write_tx_desc +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x54114c10 rt2800mmio_kick_queue EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5fa4db64 rt2800mmio_interrupt -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x634cc8f1 rt2800mmio_clear_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x67ac5609 rt2800mmio_init_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x67fd2627 rt2800mmio_fill_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x8cbb0004 rt2800mmio_start_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x8e575265 rt2800mmio_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x744c1832 rt2800mmio_get_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x97e3267c rt2800mmio_get_entry_state EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x97e3c029 rt2800mmio_autowake_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x9c467aff rt2800mmio_init_registers EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x9f3c8921 rt2800mmio_txstatus_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xa2ddc4c2 rt2800mmio_enable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xb0fda3c8 rt2800mmio_probe_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xbd24b90c rt2800mmio_get_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xc1125902 rt2800mmio_stop_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xc7d2ca54 rt2800mmio_toggle_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xfaea02f1 rt2800mmio_get_dma_done -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x13010132 rt2x00queue_flush_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1661a9d1 rt2x00mac_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x24ba4bed rt2x00mac_set_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x2fdc9a8a rt2x00queue_unmap_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3053b0c6 rt2x00queue_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3881689b rt2x00queue_map_txskb -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3c58d334 rt2x00lib_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4972c513 rt2x00lib_probe_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4a23f5a5 rt2x00queue_pause_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x508c9836 rt2x00mac_get_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x5460ae6b rt2x00mac_rfkill_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x5be3f57b rt2x00mac_bss_info_changed -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x5fdd8188 rt2x00mac_get_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x728a1447 rt2x00mac_start -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7892a9c6 rt2x00lib_dmastart -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7cdf7b9f rt2x00mac_sw_scan_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x812eea0e rt2x00lib_beacondone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x8179f928 rt2x00lib_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x83051f97 rt2x00queue_unpause_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x85ff4c06 rt2x00mac_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x8e2873de rt2x00lib_txdone_nomatch -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x8ee28ac1 rt2x00queue_start_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x924353fe rt2x00mac_sw_scan_start -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x9d1d35c6 rt2x00lib_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x9d266637 rt2x00lib_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x9dd68651 rt2x00mac_remove_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa35b4a6b rt2x00lib_set_mac_address -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb775bf29 rt2x00queue_get_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xbbefe03d rt2x00mac_get_ringparam -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xbc7afb14 rt2x00lib_get_bssidx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xbc9a8099 rt2x00queue_start_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xbcd5a1a0 rt2x00lib_remove_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xbce16985 rt2x00queue_stop_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc14fb0e6 rt2x00mac_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc84a01db rt2x00mac_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc8eb69f9 rt2x00mac_reconfig_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc95c03e6 rt2x00lib_pretbtt -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xcbcaec32 rt2x00lib_dmadone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xcc023a7e rt2x00lib_txdone_noinfo -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd220dc92 rt2x00mac_flush -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xdc9f6472 rt2x00mac_configure_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xdd7415ba rt2x00mac_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe40c8dc9 rt2x00queue_for_each_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe776b85d rt2x00mac_set_tim -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf50b96c1 rt2x00queue_stop_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf5b43397 rt2x00mac_add_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xff7d51bf rt2x00mac_tx_frames_pending -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x2ff7a01e rt2x00mmio_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x7080c99a rt2x00mmio_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x77868d6c rt2x00mmio_initialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xabd46d51 rt2x00mmio_regbusy_read -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xf8d6ec15 rt2x00mmio_uninitialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x254ad601 rt2x00pci_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x347824a3 rt2x00pci_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0xe0b625e9 rt2x00pci_pm_ops -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x1f0ee3b4 rt2x00usb_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x2293420a rt2x00usb_disable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x250c2dcb rt2x00usb_uninitialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x34c9d476 rt2x00usb_vendor_request_buff -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x3617a46d rt2x00usb_register_read_async -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x3a8d30cf rt2x00usb_kick_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x75afa599 rt2x00usb_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x8671114c rt2x00usb_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x9d58b169 rt2x00usb_watchdog -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x9ea06328 rt2x00usb_disconnect -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xadf4e5d9 rt2x00usb_clear_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xb9a43f9f rt2x00usb_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xc8ec8f35 rt2x00usb_initialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xca4540a2 rt2x00usb_vendor_req_buff_lock -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xfa5fb30b rt2x00usb_vendor_request -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xfa929ffb rt2x00usb_regbusy_read -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x31a33e2f dm_restorepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x534d220f dm_savepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd55dddc4 dm_writepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf86bb282 rtl92c_set_p2p_ps_offload_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0af7f1d9 rtl8723_cmd_send_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x14b7af13 rtl8723ae_firmware_selfreset -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x296404de rtl8723_download_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x3bce82de rtl8723_phy_rf_serial_write +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xa1547894 rt2800mmio_toggle_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xcf200e35 rt2800mmio_get_dma_done +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xee8a0cfb rt2800mmio_init_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xf4e3bbb2 rt2800mmio_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xf8a8eb79 rt2800mmio_queue_init +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x0420c187 rt2x00queue_flush_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x0768e985 rt2x00lib_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x07ece82a rt2x00queue_get_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x0be9e4db rt2x00mac_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x196388ff rt2x00lib_txdone_nomatch +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x2116159b rt2x00lib_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x2139d16b rt2x00mac_sw_scan_start +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x22916093 rt2x00lib_get_bssidx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x31521e8d rt2x00mac_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3a801e12 rt2x00mac_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x47bcf63a rt2x00lib_beacondone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x503331a1 rt2x00queue_map_txskb +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x57791a49 rt2x00mac_get_ringparam +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x617b2147 rt2x00mac_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x628228a3 rt2x00queue_pause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x644848e4 rt2x00lib_txdone_noinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x717e3d1f rt2x00mac_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x76c70fc4 rt2x00mac_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7818d79b rt2x00lib_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7870d51b rt2x00queue_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x831bb43b rt2x00mac_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x8d183143 rt2x00queue_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x8dcb26f4 rt2x00mac_reconfig_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x8e2760e7 rt2x00mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x8e61999e rt2x00queue_for_each_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x95409ac5 rt2x00queue_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x9885b706 rt2x00lib_set_mac_address +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x98f79f1d rt2x00mac_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x99738a28 rt2x00mac_get_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x9e0a7dee rt2x00lib_pretbtt +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa96f4c1c rt2x00queue_stop_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xaf2e62b6 rt2x00lib_dmastart +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xaf314185 rt2x00lib_remove_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb46f4011 rt2x00mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb9687047 rt2x00lib_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb9aaa77d rt2x00queue_unmap_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xbd4503f5 rt2x00mac_tx_frames_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc54f46d8 rt2x00mac_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc68a392d rt2x00mac_set_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc69dfa7f rt2x00lib_dmadone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc82e8217 rt2x00queue_unpause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xcb846819 rt2x00mac_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xcc2afd3e rt2x00queue_start_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd05ea8c1 rt2x00lib_probe_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xdee75532 rt2x00mac_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe1eccb9f rt2x00mac_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe84b38a1 rt2x00mac_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x55819432 rt2x00mmio_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x70d9494d rt2x00mmio_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x7bb00a81 rt2x00mmio_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xf297fc49 rt2x00mmio_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xf4299b18 rt2x00mmio_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0xa956607f rt2x00pci_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0xb4f678ba rt2x00pci_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0xb7f3afae rt2x00pci_pm_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x04cf8c68 rt2x00usb_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x1e61f1ac rt2x00usb_vendor_req_buff_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x1f39657b rt2x00usb_register_read_async +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x53b792e9 rt2x00usb_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x61adb3a5 rt2x00usb_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x6c765b66 rt2x00usb_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x7292313e rt2x00usb_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x76a79f49 rt2x00usb_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x8294255f rt2x00usb_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x8f1bed30 rt2x00usb_disconnect +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x9396c291 rt2x00usb_vendor_request_buff +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x98f50f5b rt2x00usb_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xa04ea418 rt2x00usb_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xc905cea5 rt2x00usb_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xd0981b74 rt2x00usb_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xd436f94e rt2x00usb_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2065f967 dm_savepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3344f3e1 dm_restorepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x721980c4 dm_writepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x78e7d2fb rtl92c_set_p2p_ps_offload_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0289cf43 rtl8723_write_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x199f3127 rtl8723_phy_path_a_standby +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x2504a57f rtl8723_phy_rf_serial_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x2c9f59db rtl8723_phy_set_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x36bf340d rtl8723_phy_path_a_fill_iqk_matrix +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x385431c9 rtl8723_dm_init_dynamic_txpower 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 0x44bac8dc rtl8723_write_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x46255ae7 rtl8723_phy_init_bb_rf_reg_def -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x5b3957ff rtl8723be_firmware_selfreset -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6050ef8a rtl8723_phy_path_adda_on -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x7b8e98a6 rtl8723_phy_query_bb_reg -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x7daaf95e rtl8723_enable_fw_download -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8a3e6e39 rtl8723_phy_path_a_fill_iqk_matrix +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x42321825 rtl8723_cmd_send_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x4380d42b rtl8723_phy_path_adda_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x4b189eed rtl8723_enable_fw_download +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x565c9039 rtl8723_phy_save_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x5c16a866 rtl8723_phy_mac_setting_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x606aa403 rtl8723_phy_reload_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6bca0b6f rtl8723_download_fw EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8baf8913 rtl8723_phy_set_sw_chnl_cmdarray -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa91210df rtl8723_phy_pi_mode_switch -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb34601c0 rtl8723_phy_save_mac_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb4b5684c rtl8723_save_adda_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb8ebd2eb rtl8723_dm_init_dynamic_bb_powersaving -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xc0b853f4 rtl8723_fw_free_to_go -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xc2c5d5e4 rtl8723_phy_reload_adda_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xca951df7 rtl8723_phy_mac_setting_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xcc1577a1 rtl8723_phy_rf_serial_read -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xcc2fe2c8 rtl8723_dm_init_edca_turbo -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd410caf2 rtl8723_phy_set_bb_reg -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe8fc7ea0 rtl8723_dm_init_dynamic_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xebe8b9f2 rtl8723_phy_path_a_standby -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf2d2303b rtl8723_phy_txpwr_idx_to_dbm -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf5a8c0d6 rtl8723_phy_reload_mac_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x01a2a0c0 rtl_action_proc -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0c4a5464 rtl_swlps_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x195f5c2a rtl_get_hwinfo -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x229623e9 rtl_init_rx_config -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x244ccf65 rtl_lps_leave +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x9ba3bc8a rtl8723_phy_rf_serial_read +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xad1fa879 rtl8723_phy_reload_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xad70a7cb rtl8723ae_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xbfca929e rtl8723_dm_init_edca_turbo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xc5941eb3 rtl8723_phy_query_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xc5a7ba63 rtl8723_phy_init_bb_rf_reg_def +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd09406a3 rtl8723_dm_init_dynamic_bb_powersaving +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd2e4d026 rtl8723_phy_pi_mode_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd50d37fe rtl8723be_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xecd38ec5 rtl8723_fw_free_to_go +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xfc0f685c rtl8723_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xfec41cd2 rtl8723_save_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x08960892 rtl_p2p_info +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0b270ac2 rtl_init_rx_config +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x11e74095 rtl_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x27fadd95 rtl_tx_mgmt_proc EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2921a4d4 rtl_btc_status_false -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x29e5741f rtl_set_tx_report -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x29ee1f4e read_efuse_byte +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x292436f8 rtl_deinit_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2cd408a0 rtl_fw_block_write 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 0x34fc4de2 rtl_deinit_core -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x35cd93fa rtl_beacon_statistic -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x37d3d1f1 rtl_ips_nic_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x37f4d12a rtl_lps_leave +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3cb2ede2 rtl_deinit_rfkill +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4b1d1f41 rtl_get_hal_edca_param +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4cec60fa rtl_recognize_peer EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4e94cd48 rtl_global_var +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x69ac447d rtl_swlps_beacon EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6db3ba37 rtl_update_beacon_work_callback -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6e0d3077 rtl_p2p_info -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x71bb01c9 rtl_tx_mgmt_proc -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x79f5dfbb rtl_deinit_rfkill -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7d61c415 rtl_lps_enter -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7e54e437 rtl_tx_report_handler -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8f76cefc rtl_deinit_deferred_work +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x72fa268a rtl_efuse_ops_init +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7b8c234c rtl_lps_enter +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7d254393 rtl_tx_ackqueue +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8c86667e rtl_fw_page_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x909436c6 rtl_set_tx_report EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x97e05663 rtl_tid_to_ac -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x99f66c92 rtl_efuse_ops_init -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9c47d234 rtl_tx_ackqueue -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa50d9e72 rtl_fw_page_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa85b539a rtl_is_special_data -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb87da81c rtl_fw_block_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc01b801b rtl_get_hal_edca_param -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc72a59f1 rtl_init_core -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf2de5a91 rtl_recognize_peer -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf530b603 rtl_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa16a3772 rtl_ips_nic_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa535bed1 rtl_get_hwinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xab5353c3 rtl_init_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xaedbf05b rtl_action_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb2d54be8 rtl_is_special_data +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xeb485029 rtl_beacon_statistic +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf0f07b18 rtl_tx_report_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf1367ccc read_efuse_byte +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf7b73238 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 0x1cff4bcb rsi_hal_device_init -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x3c7c33f5 rsi_read_pkt -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x41d7148f rsi_91x_deinit -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x579661b9 rsi_mac80211_detach -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x71700612 rsi_91x_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x15ed3da5 rsi_91x_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x27bfa422 rsi_hal_device_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x4a835d07 rsi_read_pkt EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xcd173710 rsi_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x427f0dda cw1200_irq_handler -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x97866643 cw1200_core_release -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x9da98538 cw1200_core_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xc14b0506 cw1200_can_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x71eea77e wl1251_alloc_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xc88ede44 wl1251_init_ieee80211 -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xd16c540e wl1251_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xd2304aac rsi_mac80211_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xea99c79b rsi_91x_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x0f070a36 cw1200_irq_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xa4ddd6ad cw1200_can_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xd5d16ed1 cw1200_core_release +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xe99f7690 cw1200_core_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x84c879bb wl1251_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x91cd7c57 wl1251_init_ieee80211 +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xe0a6ebfd wl1251_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0541ae6c wlcore_set_partition EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x06d3b27e wl12xx_debug_level -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x07fa1de2 wlcore_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x11266967 wlcore_boot_upload_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x17acfb9b wl1271_tx_flush -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x18bc3ee4 wl1271_acx_set_ht_capabilities -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1e830e34 wlcore_cmd_wait_for_event_or_timeout +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x14c71830 wlcore_event_fw_logger +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1cac9851 wlcore_cmd_wait_for_event_or_timeout EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x20351125 wlcore_get_native_channel_type -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x223f55ed wlcore_set_partition -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x296bf814 wl1271_debugfs_update_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2d980bd5 wlcore_event_channel_switch -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2e027d36 wl1271_acx_pm_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3107a2ca wlcore_event_ba_rx_constraint -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3e46f3f6 wlcore_event_inactive_sta -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x46ea42e6 wl1271_cmd_test -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x47f2f91b wlcore_event_rssi_trigger -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5446993a wlcore_enable_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x60d705dc wlcore_boot_upload_nvs -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x61ca2797 wlcore_alloc_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x638c8a12 wlcore_event_roc_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6694c52f wl1271_acx_init_mem_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6c0cee20 wlcore_free_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x753fd91e wl1271_cmd_send -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x82d172b3 wlcore_event_fw_logger +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x245355b3 wl1271_cmd_send +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x251094cb wl1271_debugfs_update_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2857d0e4 wlcore_event_inactive_sta +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x38096a08 wlcore_event_ba_rx_constraint +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x42931ebc wl1271_tx_min_rate_get +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x48cf40e8 wl1271_cmd_data_path +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4e510d09 wlcore_event_max_tx_failure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4f869c84 wlcore_event_roc_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x576f4b67 wl1271_acx_sleep_auth +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5ca679cf wl12xx_cmd_build_probe_req +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x662386d6 wl1271_acx_pm_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x68ab1a05 wl1271_tx_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6ac15cb6 wlcore_disable_interrupts_nosync +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x73d773b8 wlcore_translate_addr +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x76c23850 wlcore_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7b3dfa09 wlcore_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x82b65f96 wlcore_boot_run_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x830f9002 wlcore_event_sched_scan_completed +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x84d17de4 wl1271_cmd_test EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x85498cd1 wl1271_format_buffer -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x86c58859 wlcore_event_dummy_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9476e804 wlcore_event_max_tx_failure -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9bd1a204 wl1271_cmd_data_path -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9bfbac94 wl12xx_acx_mem_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9ecab9de wlcore_translate_addr -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa22ae61f wlcore_event_soft_gemini_sense -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa57f827d wlcore_cmd_generic_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa965ff26 wl1271_acx_sleep_auth -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xad4c09bd wlcore_set_scan_chan_params -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb8e51e44 wlcore_event_sched_scan_completed -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xba6849aa wlcore_disable_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xbfe537fe wlcore_disable_interrupts_nosync -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc78b04bb wl1271_tx_min_rate_get -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc872c4fb wl12xx_cmd_build_probe_req -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xca898ff9 wlcore_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd29f396e wlcore_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd80ef7c4 wlcore_boot_run_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe3d7bf4f wlcore_scan_sched_scan_ssid_list -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xeb177ba3 wlcore_scan_sched_scan_results -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xec26ab34 wlcore_event_beacon_loss -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xfbc2df2e wlcore_synchronize_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xfe1b6926 wl1271_cmd_configure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x910cef1c wlcore_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9b88fe5e wlcore_boot_upload_nvs +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9c798ec1 wl1271_cmd_configure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9d773920 wlcore_event_soft_gemini_sense +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa245daad wl12xx_acx_mem_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa3141220 wlcore_cmd_generic_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa53733b9 wlcore_disable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa73b5168 wlcore_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa943e919 wlcore_event_rssi_trigger +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb720a2f0 wlcore_synchronize_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc9ff6cba wlcore_boot_upload_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd8177d79 wl1271_acx_init_mem_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd899e4c5 wlcore_scan_sched_scan_results +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe07db115 wlcore_set_scan_chan_params +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe24a13fe wlcore_enable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe5312e0e wlcore_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe5af56fa wlcore_scan_sched_scan_ssid_list +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe823912e wl1271_acx_set_ht_capabilities +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xef212a01 wlcore_event_beacon_loss +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf50ac714 wlcore_event_dummy_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf82e5459 wlcore_event_channel_switch +EXPORT_SYMBOL_GPL drivers/nfc/mei_phy 0x10bda05e nfc_mei_phy_free EXPORT_SYMBOL_GPL drivers/nfc/mei_phy 0x14575c46 mei_phy_ops -EXPORT_SYMBOL_GPL drivers/nfc/mei_phy 0x3b26485f nfc_mei_phy_free -EXPORT_SYMBOL_GPL drivers/nfc/mei_phy 0x5698007a nfc_mei_phy_alloc -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x3782ff4f nfcmrvl_nci_recv_frame -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x4121b70f nfcmrvl_parse_dt -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xa598244d nfcmrvl_nci_unregister_dev -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xbe01a6b0 nfcmrvl_nci_register_dev -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x844e147b pn53x_common_init -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xbb426623 pn53x_common_clean -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xccfe7ae3 pn532_i2c_nfc_alloc -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xde7242f3 pn53x_register_nfc +EXPORT_SYMBOL_GPL drivers/nfc/mei_phy 0xaa74e387 nfc_mei_phy_alloc +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x3557d750 nfcmrvl_nci_register_dev +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x868fd7a1 nfcmrvl_nci_recv_frame +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xa5d1030f nfcmrvl_parse_dt +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xc02046c5 nfcmrvl_nci_unregister_dev +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x1de83bba pn53x_common_init +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x38915b6b pn533_finalize_setup +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x46112d89 pn53x_register_nfc +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x59ed04b2 pn53x_unregister_nfc +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x8b7a9eee pn533_rx_frame_is_cmd_response +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xaf1ef264 pn53x_common_clean EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xdecfd339 pn533_rx_frame_is_ack -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xdf9eeb77 pn533_finalize_setup -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xeec06525 pn53x_unregister_nfc -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xf4d3998b pn533_rx_frame_is_cmd_response -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x49954404 st_nci_hci_load_session -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x5e622309 st_nci_discover_se -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x6de93d57 st_nci_probe -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x74ed338b st_nci_hci_event_received -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x874620f6 st_nci_disable_se -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x8af92c11 st_nci_enable_se -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xd8026d6f st_nci_remove -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xea4e47bb st_nci_hci_cmd_received -EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x22ecdd66 st95hf_spi_recv_response -EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x6f85452f st95hf_spi_recv_echo_res -EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0xedcffa80 st95hf_spi_send +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xffca5b19 pn532_i2c_nfc_alloc +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x1dcb675e st_nci_remove +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x31ce0f68 st_nci_hci_cmd_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x351c88ba st_nci_disable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xb7656468 st_nci_hci_load_session +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xccf8c7e3 st_nci_discover_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xd86e0243 st_nci_enable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xe6575152 st_nci_hci_event_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xf1936df7 st_nci_probe +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x5ebc8f03 st95hf_spi_recv_response +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x9e09e780 st95hf_spi_recv_echo_res +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0xba48f91f st95hf_spi_send EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x0862001f ntb_transport_tx_free_entry +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x1cb8e587 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 0x3f29181b ntb_transport_unregister_client +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x411fcedb ntb_transport_unregister_client EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x436098aa ntb_transport_link_down -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x5063df52 ntb_transport_register_client EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x82e6c13d ntb_transport_qp_num EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x9c992c8f ntb_transport_link_up EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc270dc24 ntb_transport_free_queue EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc37d9036 ntb_transport_rx_remove -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xcff480e4 ntb_transport_create_queue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc50ccc75 ntb_transport_register_client EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xd40e7a02 ntb_transport_rx_enqueue EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf55d6313 ntb_transport_register_client_dev EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf9eb813f ntb_transport_unregister_client_dev -EXPORT_SYMBOL_GPL drivers/nvdimm/nd_virtio 0x4fe985ba virtio_pmem_host_ack -EXPORT_SYMBOL_GPL drivers/nvdimm/nd_virtio 0x60c9fac3 async_pmem_flush -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x006b814b nvme_reset_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x02652104 nvme_change_ctrl_state +EXPORT_SYMBOL_GPL drivers/nvdimm/nd_virtio 0x2c451193 async_pmem_flush +EXPORT_SYMBOL_GPL drivers/nvdimm/nd_virtio 0x949c16c0 virtio_pmem_host_ack +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x01647d60 nvme_wait_freeze EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x02fc8d7f __tracepoint_nvme_sq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x08dbc486 nvme_complete_rq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0c6985f4 nvme_delete_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x15c9442c nvme_fail_nonready_command -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x16660f0f nvme_cancel_tagset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1dc5a838 nvme_complete_async_event -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x216c1009 nvme_setup_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2a41ae01 nvme_cancel_admin_tagset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2a6b1123 nvme_start_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x34a79312 __traceiter_nvme_sq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x36365282 nvme_sync_io_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0541fa0e nvme_try_sched_reset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x10a5bf9c nvme_set_queue_count +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x13215d08 nvme_enable_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x14e6ded8 nvme_alloc_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x17d1198b nvme_kill_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1a290d85 nvme_complete_rq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2592d6d3 __traceiter_nvme_sq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x30130b4f nvme_complete_async_event +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x366bcf84 nvme_reset_ctrl EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3bf2393a __SCT__tp_func_nvme_sq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3ead55e7 nvme_unfreeze -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x40cfb544 nvme_submit_sync_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x416be482 nvme_init_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x43b2698f __nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x46368f18 __nvme_check_ready +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x46b5ae1b nvme_remove_namespaces EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x49224181 nvme_reset_wq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x505bb5e1 __nvme_check_ready -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x647d26e7 nvme_alloc_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x4a816baf nvme_sync_io_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x5c1c8623 nvme_disable_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x5cd93d1a nvme_unfreeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x5d87e078 nvme_cancel_admin_tagset EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x64b62862 nvme_wq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x6f0d93fd nvme_set_features -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x700e3479 nvme_init_ctrl_finish -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x72135b21 nvme_enable_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7430f2d1 nvme_kill_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x812fc3ad nvme_stop_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x6642a2b5 nvme_wait_reset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x6b89faca nvme_host_path_error +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x6bded66e nvme_stop_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x75f34e16 nvme_change_ctrl_state EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x813cf212 nvme_io_timeout -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x81a7340a nvme_disable_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x839cfeda nvme_start_freeze -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x843fbecf nvme_uninit_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8477b488 nvme_fail_nonready_command +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x84e782ee nvme_cleanup_cmd EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8a9c70ed nvme_sec_submit -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8bac2a1b nvme_get_features -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x9539e70c nvme_wait_freeze_timeout -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa98296b5 nvme_try_sched_reset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb518d9f6 nvme_stop_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc2576b74 __nvme_submit_sync_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc338b959 nvme_cleanup_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8abd4311 nvme_uninit_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8bf35424 nvme_shutdown_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x93febc8c nvme_get_features +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x9a27979f nvme_wait_freeze_timeout +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa5e9665c nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa89eae41 nvme_set_features +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb45414e6 nvme_stop_keep_alive +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc4a4b830 nvme_start_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc6ab82c9 nvme_init_ctrl_finish EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc991c03f __SCK__tp_func_nvme_sq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xcb3c26b2 nvme_set_queue_count -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd3ffbc30 nvme_wait_freeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xcf390e60 nvme_stop_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xcf887107 nvme_sync_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd0df2865 nvme_start_ctrl EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd45434ee admin_timeout EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd58bbbcb nvme_delete_wq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xdd7b68d2 nvme_cancel_request -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe8df2706 nvme_start_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xea7ec478 nvme_sync_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xeb636686 nvme_stop_keep_alive -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xec8bd022 nvme_wait_reset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf48900b7 nvme_remove_namespaces -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf54cd34f nvme_shutdown_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xfa43e591 nvme_host_path_error -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x0ff1612d nvmf_unregister_transport -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x272919db nvmf_reg_read64 -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x41bb744c nvmf_ip_options_match -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x4efde4d8 nvmf_reg_read32 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd9e6c799 nvme_cancel_tagset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe40912e6 nvme_cancel_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xec3d6a9c nvme_start_freeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xed3a9186 nvme_init_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf3e275f3 nvme_delete_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xfa0d1718 nvme_setup_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x0896fbd4 nvmf_ip_options_match +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x1cd53b8b nvmf_connect_io_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x1d9a313f nvmf_reg_read64 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x27c70180 nvmf_get_address EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x51c659eb nvmf_free_options -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x6b0e6d85 nvmf_connect_admin_queue -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x9877811f nvmf_connect_io_queue -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x9f46af1b nvmf_get_address -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xaf0bd2c9 nvmf_should_reconnect -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xe5fe196b nvmf_register_transport -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xe9ff7b31 nvmf_reg_write32 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x57ff1cda nvmf_connect_admin_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x6894b645 nvmf_unregister_transport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x7cb83a31 nvmf_reg_write32 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x97188d4d nvmf_register_transport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xc987e16e nvmf_should_reconnect +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xee791941 nvmf_reg_read32 EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x0d12e564 nvme_fc_register_remoteport EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x3884f8b8 nvme_fc_unregister_localport EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x3e33ac54 nvme_fc_rescan_remoteport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x580eb0ce 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 0x9a2dc1bb nvme_fc_register_localport EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0xbb0e18a6 nvme_fc_rcv_ls_req EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0xfca9dc99 nvme_fc_unregister_remoteport -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x01f93fc8 nvmet_req_complete -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x12db4114 nvmet_sq_init -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x2881fcae nvmet_check_transfer_len -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x4a06e77e nvmet_req_alloc_sgls -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x7a03e22f nvmet_req_free_sgls -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x85abb1b6 nvmet_req_uninit -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x87f3e9a3 nvmet_sq_destroy -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xa9c1f1b3 nvmet_unregister_transport -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xb1113872 nvmet_req_init -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xfc6527d1 nvmet_register_transport -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xff552881 nvmet_ctrl_fatal_error +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x1ca3b98c nvmet_check_transfer_len +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x5315f241 nvmet_req_alloc_sgls +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x840bf63d nvmet_register_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x890e39a4 nvmet_sq_destroy +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x89bbfbec nvmet_req_complete +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x9fdb68f7 nvmet_req_init +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xa6a8bfe6 nvmet_sq_init +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xa98b2045 nvmet_ctrl_fatal_error +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xac38dcd2 nvmet_unregister_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xde0bfd5b nvmet_req_uninit +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xe12000ab 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 0x1048b92a nvmet_fc_rcv_fcp_req -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x41ba9d87 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 0x7fa5302a nvmet_fc_rcv_fcp_abort EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x9ef76d99 nvmet_fc_unregister_targetport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0xe4b02ca0 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 0x2f4b7ba2 switchtec_class -EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0x59a30a81 mcp23x08_regmap -EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0x69d8ae6e mcp23x17_regmap -EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0xb979afc4 mcp23s08_probe_one -EXPORT_SYMBOL_GPL drivers/platform/chrome/cros-ec-sensorhub 0x63af1bba cros_ec_sensorhub_unregister_push_data -EXPORT_SYMBOL_GPL drivers/platform/chrome/cros-ec-sensorhub 0xe361e59f cros_ec_sensorhub_register_push_data +EXPORT_SYMBOL_GPL drivers/pci/switch/switchtec 0x30998438 switchtec_class +EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0x5c11222d mcp23s08_probe_one +EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0xc1eefe4c mcp23x17_regmap +EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0xf1955aa3 mcp23x08_regmap +EXPORT_SYMBOL_GPL drivers/platform/chrome/cros-ec-sensorhub 0x3548dd89 cros_ec_sensorhub_unregister_push_data +EXPORT_SYMBOL_GPL drivers/platform/chrome/cros-ec-sensorhub 0x4abdf0e8 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 0x1b279dab wilco_ec_mailbox EXPORT_SYMBOL_GPL drivers/platform/chrome/wilco_ec/wilco_ec 0x24eef51f wilco_ec_get_byte_property EXPORT_SYMBOL_GPL drivers/platform/chrome/wilco_ec/wilco_ec 0x75bf4d33 wilco_ec_get_property EXPORT_SYMBOL_GPL drivers/platform/chrome/wilco_ec/wilco_ec 0x8b8ae425 wilco_ec_set_byte_property -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x096d7179 ssam_device_get_match_data -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x113b6ecc ssam_device_type -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x1a9e767b ssam_request_sync -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x264a3932 __ssam_device_driver_register -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x30391902 ssam_notifier_register -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x3374add5 ssam_request_sync_with_buffer -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x3e7dc928 ssam_controller_event_enable -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x4382c67f ssam_controller_event_disable -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x45ec2672 ssam_device_get_match -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x4a2a7e35 ssam_request_sync_alloc -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x4aef5341 ssam_controller_put -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x5158f323 ssam_device_add -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x57b538c6 ssh_packet_put -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x600c7e71 ssam_device_driver_unregister -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x61e8cba0 ssam_controller_get -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x69fcddb8 ssam_device_alloc -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x75f9c42e ssam_get_controller -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x8900d347 ssam_controller_stateunlock -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x8b8cf595 ssam_device_remove -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x942a0a46 ssam_request_sync_free -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x98a033c8 ssam_request_sync_init -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x9a6dee2a ssam_client_link -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x9d92e234 ssam_controller_device +EXPORT_SYMBOL_GPL drivers/platform/chrome/wilco_ec/wilco_ec 0xdbc8eb0a wilco_ec_mailbox +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x014a99d8 ssam_request_sync_submit +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x02ac984b ssam_device_get_match_data +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x043ef2ee ssam_controller_stateunlock +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x094fc486 ssam_controller_event_disable +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x1a8eadf2 ssam_controller_get +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x1b3a2eda ssh_packet_get +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x1d1d767e ssam_get_controller +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x21ef8bd6 ssam_device_add +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x268f0c04 ssam_request_sync +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x30cbf605 __ssam_device_driver_register +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x3a8b24e9 ssam_client_bind +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x3df05cb9 ssam_controller_put +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x5a838900 ssam_device_driver_unregister +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x6b038bf7 ssam_device_remove +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x7110ab77 ssam_notifier_unregister +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x735598ea ssam_controller_device +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x7a897462 ssam_controller_statelock +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x7adea6b7 ssam_device_type +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x8dabfe3b ssh_packet_put +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x9fbd8f5b ssam_controller_event_enable +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xa6184cd9 ssam_request_sync_init +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xa8cf7f2a ssam_bus_type +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xbb40b34a ssam_client_link +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xc14bf8f5 ssam_request_sync_free EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xc2bd582d ssam_device_id_match -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xc4c37362 ssam_bus_type -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xc985560a ssam_request_write_data -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xe1d159ba ssam_request_sync_submit -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xe54f8b30 ssh_packet_get -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xf283a378 ssam_notifier_unregister -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xfc4a0962 ssam_controller_statelock -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xfcd0ecbe ssam_client_bind +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xc47d1d92 ssam_request_write_data +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xc74daada ssam_notifier_register +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xd8e6c598 ssam_request_sync_alloc +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xe7970e77 ssam_device_get_match +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xe7d0ec85 ssam_device_alloc +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xf899b74e ssam_request_sync_with_buffer +EXPORT_SYMBOL_GPL drivers/platform/surface/surface_acpi_notify 0x1732e681 san_client_link EXPORT_SYMBOL_GPL drivers/platform/surface/surface_acpi_notify 0x48cf4c48 san_dgpu_notifier_register EXPORT_SYMBOL_GPL drivers/platform/surface/surface_acpi_notify 0xd60bd773 san_dgpu_notifier_unregister -EXPORT_SYMBOL_GPL drivers/platform/surface/surface_acpi_notify 0xdbf00818 san_client_link EXPORT_SYMBOL_GPL drivers/platform/x86/asus-wmi 0x57c46ceb asus_wmi_evaluate_method -EXPORT_SYMBOL_GPL drivers/platform/x86/asus-wmi 0x96bbff62 asus_wmi_register_driver -EXPORT_SYMBOL_GPL drivers/platform/x86/asus-wmi 0xa02098b7 asus_wmi_unregister_driver +EXPORT_SYMBOL_GPL drivers/platform/x86/asus-wmi 0x890fc1c1 asus_wmi_register_driver +EXPORT_SYMBOL_GPL drivers/platform/x86/asus-wmi 0xf6bc5374 asus_wmi_unregister_driver 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 0x1656eede dell_smbios_register_device EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-smbios 0x1b0b3141 dell_laptop_register_notifier -EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-smbios 0x2e999ee4 dell_smbios_call_filter +EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-smbios 0x21adc561 dell_smbios_unregister_device EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-smbios 0x45170471 dell_smbios_call +EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-smbios 0x6cea2e0f dell_smbios_call_filter EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-smbios 0x7fd2ce06 dell_smbios_find_token -EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-smbios 0x961bdddb dell_smbios_register_device EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-smbios 0xb9400dbf dell_laptop_call_notifier EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-smbios 0xc2871e79 dell_smbios_error -EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-smbios 0xd541fff4 dell_smbios_unregister_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 @@ -16190,15 +16236,15 @@ EXPORT_SYMBOL_GPL drivers/platform/x86/firmware_attributes_class 0x4f63c5af 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 0x22c9ec83 intel_pmt_is_early_client_hw -EXPORT_SYMBOL_GPL drivers/platform/x86/intel/pmt/pmt_class 0x2a32c56d intel_pmt_dev_create -EXPORT_SYMBOL_GPL drivers/platform/x86/intel/pmt/pmt_class 0xd0fe37c2 intel_pmt_dev_destroy +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/pmt/pmt_class 0x0775b902 intel_pmt_dev_destroy +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/pmt/pmt_class 0x2c4c494b intel_pmt_is_early_client_hw +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/pmt/pmt_class 0x9c14f2f1 intel_pmt_dev_create 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 0x09a0d08e isst_if_get_pci_dev EXPORT_SYMBOL_GPL drivers/platform/x86/intel/speed_select_if/isst_if_common 0x58a8261f isst_if_mbox_cmd_invalid EXPORT_SYMBOL_GPL drivers/platform/x86/intel/speed_select_if/isst_if_common 0x861369f8 isst_resume_common +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/speed_select_if/isst_if_common 0x94ffe5da isst_if_get_pci_dev 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 0xaefc3fa2 isst_if_cdev_register +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/speed_select_if/isst_if_common 0xc173368d isst_if_cdev_register EXPORT_SYMBOL_GPL drivers/platform/x86/intel/speed_select_if/isst_if_common 0xe18f42a5 isst_if_cdev_unregister EXPORT_SYMBOL_GPL drivers/platform/x86/intel/telemetry/intel_telemetry_core 0x1c7565c2 telemetry_read_events EXPORT_SYMBOL_GPL drivers/platform/x86/intel/telemetry/intel_telemetry_core 0x35db93a6 telemetry_get_trace_verbosity @@ -16223,105 +16269,105 @@ 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 0x6068bedf wmi_evaluate_method +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0x71530dbe wmidev_block_query EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0x76ae31fd wmi_remove_notify_handler -EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0x80a3a449 wmidev_evaluate_method -EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0x9fea9be4 wmidev_block_query 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 0xd02b655a set_required_buffer_size EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xd7752b86 wmi_set_block -EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xeb44c0b3 set_required_buffer_size +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xe33006b8 wmidev_evaluate_method EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xf18bdd75 wmi_install_notify_handler -EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0x137c4292 bq27xxx_battery_setup -EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0x2544205d bq27xxx_battery_teardown -EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0x5773c02d bq27xxx_battery_update -EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x4b3f5a32 pcf50633_mbc_get_status -EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x8421cc09 pcf50633_mbc_usb_curlim_set -EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0xc70c5c77 pcf50633_mbc_get_usb_online_status -EXPORT_SYMBOL_GPL drivers/powercap/intel_rapl_common 0x1e41f826 rapl_remove_package -EXPORT_SYMBOL_GPL drivers/powercap/intel_rapl_common 0x3252488e rapl_find_package_domain -EXPORT_SYMBOL_GPL drivers/powercap/intel_rapl_common 0xad611cb2 rapl_add_package -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xb8f19370 mc13xxx_fixed_regulator_ops -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xd30b4c7e mc13xxx_regulator_ops -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xfeec671e mc13xxx_fixed_regulator_set_voltage -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x447aa389 wm8350_dcdc_set_slot -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x4f9191b7 wm8350_dcdc25_set_mode -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x98f6a5c5 wm8350_ldo_set_slot -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x9bdd8b13 wm8350_register_regulator -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xd27b98fb wm8350_register_led -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xf98dd800 wm8350_isink_set_flash -EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0x4cf96a74 wm8400_register_regulator +EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0x58a5d631 bq27xxx_battery_teardown +EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0x7d3d3925 bq27xxx_battery_setup +EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0xdd130396 bq27xxx_battery_update +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x133b4804 pcf50633_mbc_get_usb_online_status +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x8ed0c768 pcf50633_mbc_usb_curlim_set +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x98e848f9 pcf50633_mbc_get_status +EXPORT_SYMBOL_GPL drivers/powercap/intel_rapl_common 0x23c83c13 rapl_find_package_domain +EXPORT_SYMBOL_GPL drivers/powercap/intel_rapl_common 0xa53bd8f4 rapl_remove_package +EXPORT_SYMBOL_GPL drivers/powercap/intel_rapl_common 0xd35a287b rapl_add_package +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x3c25d21e mc13xxx_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x3c604acb mc13xxx_fixed_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xc2bd46f1 mc13xxx_fixed_regulator_set_voltage +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x315a7938 wm8350_ldo_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x6ce058b6 wm8350_register_regulator +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x975a48f4 wm8350_dcdc_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xa22e1fb5 wm8350_register_led +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xa8649d97 wm8350_dcdc25_set_mode +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xe770f7c2 wm8350_isink_set_flash +EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0x42c59872 wm8400_register_regulator EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0x149236da qcom_glink_native_remove -EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0xe082b259 qcom_glink_native_probe +EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0xa98a9693 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 0x076cdb9d cxgbi_device_find_by_lldev -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0bcf1eb4 cxgbi_sock_rcv_close_conn_rpl -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0e4e75d7 cxgbi_get_ep_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x12324452 cxgbi_parse_pdu_itt -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x17a5548f cxgbi_sock_closed -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1ad4384a cxgbi_cleanup_task -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x21da9db2 cxgbi_sock_act_open_req_arp_failure -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x29e275eb cxgbi_set_conn_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2a18d7f1 cxgbi_bind_conn -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x30e00217 cxgbi_set_host_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3b9f3c89 cxgbi_device_portmap_cleanup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3e27d9d4 cxgbi_sock_rcv_peer_close -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4aae7165 cxgbi_device_find_by_netdev -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4cceb803 cxgbi_ep_connect -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x54ee9738 cxgbi_conn_xmit_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5b48b444 cxgbi_hbas_add -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5cf49824 cxgbi_device_portmap_create -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5f02d6ab cxgbi_ep_disconnect -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x693ea8e9 cxgbi_sock_check_wr_invariants -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6a03fde8 cxgbi_device_register +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x076e8ab3 cxgbi_sock_act_open_req_arp_failure +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0912579f cxgbi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0cd3dc4b cxgbi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1bdc6870 cxgbi_sock_free_cpl_skbs +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x20888cd0 cxgbi_device_find_by_netdev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2374e7a7 cxgbi_ep_disconnect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x32af61ca cxgbi_set_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3934b3a2 cxgbi_device_find_by_netdev_rcu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3dc48b3c cxgbi_sock_established +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3e141708 cxgbi_conn_alloc_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3ec41b6c cxgbi_device_unregister +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x40bdc4da cxgbi_get_ep_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x448ae706 cxgbi_ep_connect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4707eda3 cxgbi_ddp_ppm_setup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x492d3a5e cxgbi_conn_xmit_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4ccaca77 cxgbi_iscsi_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x55d47f1b cxgbi_conn_tx_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6560c1da cxgbi_sock_select_mss +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x69c2db9b cxgbi_sock_purge_wr_queue +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6af1f541 cxgbi_sock_rcv_abort_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6c76215e cxgbi_sock_rcv_wr_ack +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6ef8fdc8 cxgbi_set_conn_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x75ab1fd0 cxgbi_hbas_remove +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7605e4cd cxgbi_sock_check_wr_invariants EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fdb6004 cxgbi_device_unregister_all -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8046fd52 cxgbi_create_session -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8641511a cxgbi_sock_rcv_wr_ack -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8662e6cf cxgbi_iscsi_init -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8bd5fb47 cxgbi_ddp_ppm_setup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x96fe3bde cxgbi_device_unregister -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa96a843f cxgbi_sock_free_cpl_skbs -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xab219139 cxgbi_conn_init_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xae784ceb cxgbi_sock_fail_act_open -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb16ec2aa cxgbi_sock_skb_entail -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb29adb7e cxgbi_conn_alloc_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb5805457 cxgbi_sock_established +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x89db0303 cxgbi_sock_rcv_close_conn_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x93f9cb79 cxgbi_conn_init_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x948c32f2 cxgbi_device_portmap_create +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9d2a7ca9 cxgbi_bind_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa10b33a4 cxgbi_device_portmap_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa1ffed0a cxgbi_device_register +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xaceef9b4 cxgbi_iscsi_init +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb0e95bce cxgbi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbdd955bc cxgbi_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbe0d7bc7 cxgbi_device_find_by_lldev EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc011af75 cxgbi_ddp_set_one_ppod -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc03de6eb cxgbi_device_find_by_netdev_rcu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xce3c3d88 cxgbi_conn_pdu_ready -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd325a57c cxgbi_get_host_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe0a8b9a4 cxgbi_conn_tx_open -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xec77582b cxgbi_ep_poll +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc656a94c cxgbi_parse_pdu_itt +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc834acc3 cxgbi_hbas_add +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc87f36d9 cxgbi_sock_closed +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd623b465 cxgbi_sock_skb_entail +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdf7bb93a cxgbi_sock_fail_act_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe4c77ce8 cxgbi_get_conn_stats +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe612f219 cxgbi_conn_pdu_ready +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xea48d81d cxgbi_ep_poll +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xeef2f9ad cxgbi_sock_rcv_peer_close EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xef346615 cxgbi_attr_is_visible -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf0f61103 cxgbi_get_conn_stats -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf577977c cxgbi_iscsi_cleanup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf8d02f40 cxgbi_destroy_session -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf9296385 cxgbi_sock_rcv_abort_rpl -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xfa5ef5b7 cxgbi_sock_select_mss -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xfc380fee cxgbi_create_conn -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xfd096e96 cxgbi_sock_purge_wr_queue -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xfe203167 cxgbi_hbas_remove -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0b51614c fcoe_validate_vport_create -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x1d3259db fcoe_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x1d6b0956 fcoe_get_paged_crc_eof -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x2b4d5eb1 fcoe_ctlr_device_delete -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x4f69cca3 fcoe_ctlr_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x69e54810 fcoe_check_wait_queue -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x7aaae5da fcoe_libfc_config +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf30752e2 cxgbi_get_host_param +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x13092b0c fcoe_ctlr_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x24b359ed fcoe_link_speed_update +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x31728b35 fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x6cb35125 fcoe_get_wwn +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x733dc10f fcoe_clean_pending_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x7b8bf4ae fcoe_ctlr_get_lesb EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x7e92994b fcoe_wwn_from_mac -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x80cd0c74 fcoe_ctlr_device_add -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xa0be27c1 fcoe_link_speed_update +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x83a5d735 fcoe_start_io +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xad0bf0df fcoe_validate_vport_create +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xb991e864 __fcoe_get_lesb EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xbac58840 fcoe_queue_timer -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xbf8a2761 fcoe_fcf_device_delete -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xc4c63f97 fcoe_clean_pending_queue -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xc5397116 __fcoe_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xd4287c71 fcoe_fc_crc -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xe7cff863 fcoe_fcf_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xbb343dc6 fcoe_ctlr_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xbd19e95a fcoe_fcf_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xd463dfc1 fcoe_libfc_config +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xe26f7f03 fcoe_get_paged_crc_eof +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xe3c47549 fcoe_fc_crc +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xee4bc2c7 fcoe_check_wait_queue EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf167cb7a fcoe_wwn_to_str -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf627d97d fcoe_get_wwn -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xfe916a56 fcoe_start_io -EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0x93fb2996 fdomain_create -EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0xf5978da7 fdomain_destroy +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xfec1a4d1 fcoe_fcf_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0x529c51d3 fdomain_destroy +EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0xddc980ad fdomain_create EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x16b11127 iscsi_boot_create_kset EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x1cad663e iscsi_boot_create_ethernet EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x748654c5 iscsi_boot_create_initiator @@ -16330,309 +16376,309 @@ EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xbefe618c iscsi_boot_destroy_kset EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xea29c8ae iscsi_boot_create_target EXPORT_SYMBOL_GPL drivers/scsi/libfc/libfc 0x66f43542 fc_seq_els_rsp_send -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x00fc5f53 iscsi_prep_data_out_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x043705b3 iscsi_eh_cmd_timed_out -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0cd685a7 iscsi_conn_unbind -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0fb6fa86 __iscsi_put_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1073095f iscsi_conn_queue_work +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x02142925 iscsi_conn_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0533d3db iscsi_eh_recover_target +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x067c755d iscsi_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0823d4ce iscsi_host_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x106fcdfb iscsi_conn_send_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12159466 iscsi_host_get_max_scsi_cmds EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1bbc8ce5 iscsi_verify_itt -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1bf09eda iscsi_complete_scsi_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x228d5afd iscsi_put_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x294f3e48 iscsi_host_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3550b859 __iscsi_complete_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3785fac7 iscsi_conn_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3934e52b iscsi_session_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x163bb0cc iscsi_requeue_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x18500cd3 iscsi_verify_itt +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1c1963e3 iscsi_host_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1e5891b9 iscsi_conn_unbind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1faa013e iscsi_itt_to_ctask +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1fc36372 iscsi_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x220cafdc iscsi_suspend_tx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x222ddd78 iscsi_session_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x32bd6f3d iscsi_eh_session_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x335a5d7f iscsi_session_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3400da37 iscsi_conn_stop +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x391b0b48 iscsi_queuecommand EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x46b8804c iscsi_itt_to_ctask -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4c6478de iscsi_host_set_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4fdf0da4 iscsi_conn_stop -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x51bd76e7 iscsi_conn_start -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x575669c2 iscsi_host_add -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5aa0b84f iscsi_session_failure -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x70bf075b iscsi_host_get_max_scsi_cmds -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x76257b11 iscsi_itt_to_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7d46a222 iscsi_host_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7ee5b44b iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3ea1c696 iscsi_host_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4067e6b6 iscsi_session_recovery_timedout +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4702e95d iscsi_update_cmdsn +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4c2607ab iscsi_eh_abort +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x532e80b8 iscsi_host_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x597a50e0 __iscsi_get_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x65df7703 iscsi_session_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x678d7ae8 iscsi_conn_bind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x73ffe980 iscsi_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x759f9b81 iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7d87f551 iscsi_suspend_queue +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8118dd40 iscsi_complete_scsi_task EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x934b34cb iscsi_conn_failure -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x936f1eb6 iscsi_target_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9de611ef __iscsi_get_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9f7e9d51 iscsi_update_cmdsn -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa78ca2d4 iscsi_session_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa7acddc5 iscsi_eh_recover_target -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xae392de7 iscsi_queuecommand -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb8469b82 iscsi_suspend_tx -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb85358c4 iscsi_host_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb9eb2e57 iscsi_session_recovery_timedout -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc28f9e2b iscsi_session_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc49070de iscsi_eh_abort -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc5797138 iscsi_conn_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc871ad26 iscsi_conn_send_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xceed841e iscsi_conn_bind -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd67a38f4 iscsi_eh_device_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe768bebc iscsi_eh_session_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x995f4475 iscsi_conn_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa2b2ad44 __iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa635ebfb iscsi_host_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa7a512bb __iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xab6b2058 iscsi_conn_queue_work +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb1465f48 iscsi_eh_cmd_timed_out +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb1d15f41 iscsi_prep_data_out_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb20410dc iscsi_eh_device_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbd43f408 iscsi_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc4341487 iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd7991e6d iscsi_itt_to_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd8d975f5 iscsi_conn_start EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeab9cbd5 iscsi_conn_get_addr_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xecc9eb68 iscsi_set_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf34a3d92 iscsi_requeue_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf516e213 iscsi_suspend_queue -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf84c7551 iscsi_conn_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfd424516 iscsi_host_remove -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x01e28d75 iscsi_tcp_segment_unmap -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x03786a31 iscsi_tcp_r2tpool_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x04326f88 iscsi_tcp_set_max_r2t -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x063c1a6e iscsi_tcp_hdr_recv_prep -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x0fa1cd89 iscsi_tcp_task_xmit -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x18da113c iscsi_tcp_segment_done -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x21c53abf iscsi_segment_seek_sg -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x366490f9 iscsi_tcp_task_init -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x55971ef2 iscsi_tcp_dgst_header -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x626f2b7b iscsi_tcp_recv_skb -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x7ebc535a iscsi_segment_init_linear -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xb8711338 iscsi_tcp_cleanup_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xbd32ab09 iscsi_tcp_conn_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xed001522 iscsi_tcp_conn_get_stats -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xed3f633b iscsi_tcp_conn_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xf3ed9ca6 iscsi_tcp_r2tpool_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xf6cbeba6 iscsi_tcp_recv_segment_is_hdr -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0ec0dd64 sas_eh_device_reset_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x13fc4bf1 sas_phy_reset -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1b1dfc4f sas_target_destroy -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x366d008e sas_register_ha -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3787cb5c sas_unregister_ha -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x39c47500 sas_get_local_phy -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3f5b6959 sas_ioctl -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3faa3152 sas_alloc_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x417ee2f7 sas_drain_work -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x44d0ce94 sas_notify_phy_event -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4d17a584 sas_alloc_slow_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4d77f756 sas_change_queue_depth -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5792d1b7 sas_bios_param -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x648564d8 sas_notify_port_event -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x686ef6ff sas_domain_attach_transport -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x768587a1 dev_attr_phy_event_threshold -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x76bb48a6 sas_slave_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7b17e968 sas_slave_configure -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x829d20c2 sas_eh_abort_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8a406a58 sas_task_abort -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9210883c sas_request_addr -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xaac02405 sas_eh_target_reset_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xcae45ba6 sas_ssp_task_response -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xda9d159f sas_free_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe3a4da78 sas_ata_schedule_reset -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe4f570d3 sas_queuecommand -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf1c496f1 sas_target_alloc -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_fc 0x57d8f746 fc_eh_should_retry_cmd -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x003dd43c __SCK__tp_func_iscsi_dbg_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x02e426c4 iscsi_destroy_iface -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x038c12bc iscsi_create_flashnode_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0da811c8 __SCK__tp_func_iscsi_dbg_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0df1d1af iscsi_destroy_all_flashnode -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x12a67591 iscsi_find_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xed95eb1b iscsi_session_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfa364733 iscsi_host_add +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x1ade7360 iscsi_tcp_r2tpool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x20774050 iscsi_tcp_task_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x226a8785 iscsi_tcp_recv_skb +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x287073ca iscsi_tcp_conn_get_stats +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x2b1992ec iscsi_tcp_task_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x47304155 iscsi_tcp_segment_done +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x6e5ba0db iscsi_tcp_hdr_recv_prep +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x8417f108 iscsi_tcp_r2tpool_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x88991170 iscsi_tcp_segment_unmap +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x8cd5511e iscsi_segment_seek_sg +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x9059d7c9 iscsi_tcp_recv_segment_is_hdr +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x98af0cd0 iscsi_tcp_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xa0ca774b iscsi_tcp_dgst_header +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xc5cd46cd iscsi_tcp_set_max_r2t +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xd90553f5 iscsi_segment_init_linear +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xdfa43a09 iscsi_tcp_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xfafe6b92 iscsi_tcp_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x01b4dc28 sas_get_local_phy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x05244348 sas_eh_abort_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x075827d6 sas_request_addr +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0b3fdb42 sas_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0f1551c0 sas_slave_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2f8932cb sas_drain_work +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3d05d378 sas_phy_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3e25aee6 sas_notify_port_event +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3e7b8412 sas_free_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4cf10797 sas_slave_configure +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4e7c8540 sas_domain_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4fb33793 sas_change_queue_depth +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x614ff962 sas_eh_device_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6473b60c dev_attr_phy_event_threshold +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x700608dc sas_alloc_slow_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x73c612ed sas_alloc_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x758cb1d4 sas_ioctl +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8ec6cd76 sas_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9223505d sas_ata_schedule_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9c58ce13 sas_eh_target_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa23fa546 sas_notify_phy_event +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa824d959 sas_register_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xae460c24 sas_bios_param +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb8332807 sas_task_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc77314f9 sas_target_destroy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd9f3a928 sas_unregister_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf373bc6f sas_ssp_task_response +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_fc 0x760bebf5 fc_eh_should_retry_cmd +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x00cbef90 iscsi_add_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x05ee8e9e iscsi_destroy_all_flashnode +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x081147a6 iscsi_dbg_trace +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x08344606 iscsi_register_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0a375006 iscsi_scan_finished +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x12cb2b3c __traceiter_iscsi_dbg_sw_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x14bd5892 iscsi_session_chkready EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x15dc8bab __SCT__tp_func_iscsi_dbg_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1b1776c2 __SCK__tp_func_iscsi_dbg_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x227a2e37 iscsi_lookup_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x250439cf __traceiter_iscsi_dbg_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2bb934dc iscsi_get_port_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2c14e9d4 __tracepoint_iscsi_dbg_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2eee738a iscsi_register_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x330f9637 iscsi_alloc_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x344e7961 iscsi_ping_comp_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x34d44c0a iscsi_scan_finished -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3bd79106 iscsi_host_for_each_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4036eb83 iscsi_unregister_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4c40387f __SCK__tp_func_iscsi_dbg_sw_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4fe3e8f0 iscsi_flashnode_bus_match +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1ab2e78e iscsi_host_for_each_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1c0ff0e7 iscsi_find_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1c9bc6aa iscsi_destroy_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x21b34c29 __SCK__tp_func_iscsi_dbg_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x21fe20ba __tracepoint_iscsi_dbg_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x228829c4 iscsi_create_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x257ce8f0 __tracepoint_iscsi_dbg_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2583af1b iscsi_conn_error_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x29561353 iscsi_block_scsi_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2c64a0b3 iscsi_conn_login_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x340771a0 iscsi_find_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x40a34104 iscsi_destroy_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x44c35a82 iscsi_destroy_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x497c248a iscsi_is_session_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4b1b3fa2 iscsi_put_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4c561780 iscsi_get_port_speed_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4cead709 iscsi_is_session_online EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x52575134 __SCT__tp_func_iscsi_dbg_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x54ea5c15 iscsi_post_host_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5623eec5 iscsi_block_scsi_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x57666ec0 __tracepoint_iscsi_dbg_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5fa9ff11 iscsi_find_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x64927cdc iscsi_create_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x67291e47 iscsi_conn_error_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x67a11309 __traceiter_iscsi_dbg_sw_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x67b008a8 __tracepoint_iscsi_dbg_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x52bb3a62 __traceiter_iscsi_dbg_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5a0275fa iscsi_destroy_iface EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x699fe53e iscsi_get_discovery_parent_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x795750c7 iscsi_put_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7dadb476 __traceiter_iscsi_dbg_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x70b0dcd1 iscsi_free_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7a67a673 iscsi_unregister_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7aba4e4e iscsi_create_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7b9295af __traceiter_iscsi_dbg_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7c51e808 __SCK__tp_func_iscsi_dbg_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x830d3009 iscsi_session_event EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x84a005f1 iscsi_get_router_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x86bb9587 iscsi_dbg_trace -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x88aad5ba __tracepoint_iscsi_dbg_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8b65aed5 iscsi_recv_pdu -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8f0562c8 iscsi_destroy_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x98480c59 __SCK__tp_func_iscsi_dbg_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9d85e363 __traceiter_iscsi_dbg_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa262df79 iscsi_create_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa79e2e88 __traceiter_iscsi_dbg_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa7cb8adb iscsi_get_port_speed_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x89f79a09 iscsi_offload_mesg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8e8352c1 __SCK__tp_func_iscsi_dbg_sw_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8f5285de __SCK__tp_func_iscsi_dbg_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x90592a1f iscsi_create_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x906a5e8f iscsi_put_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x92839ef6 iscsi_remove_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x99826203 iscsi_alloc_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9a019e47 __tracepoint_iscsi_dbg_sw_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9cb2e9b8 __tracepoint_iscsi_dbg_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9edeadb1 iscsi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa2650db3 iscsi_create_conn EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa8c4b5e1 __SCT__tp_func_iscsi_dbg_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xacdf20b6 iscsi_block_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xad935f43 iscsi_unblock_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb4be0e00 iscsi_is_session_dev -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb5f600f3 iscsi_destroy_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb8f1c653 iscsi_destroy_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xac4ad134 iscsi_block_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb3a77390 __traceiter_iscsi_dbg_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb98094d0 __SCK__tp_func_iscsi_dbg_tcp EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc071179 iscsi_get_ipaddress_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc86735b0 iscsi_create_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xca51385f iscsi_create_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xcc34efac iscsi_remove_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xcd1bbf29 iscsi_create_iface -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd06d669f iscsi_conn_login_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd1121cc4 iscsi_session_chkready -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdad242f7 iscsi_is_session_online +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc074063f __traceiter_iscsi_dbg_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc1e23b60 iscsi_post_host_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc2f06aa4 iscsi_recv_pdu +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc369cbd1 iscsi_unblock_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xcc1e5ec9 __tracepoint_iscsi_dbg_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xddb27a43 iscsi_create_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xde07f10a iscsi_get_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdf2180a8 iscsi_flashnode_bus_match EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdf515c49 __SCT__tp_func_iscsi_dbg_sw_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe479aa6e __tracepoint_iscsi_dbg_sw_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe85abbec iscsi_session_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xed71cda6 iscsi_add_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf0d6e64f iscsi_put_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf20f3e52 iscsi_offload_mesg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf52d78f1 iscsi_get_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf76f1478 iscsi_free_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe138aaca iscsi_get_port_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf0a2c638 iscsi_ping_comp_event EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf7e749fb __SCT__tp_func_iscsi_dbg_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x05c1a9c8 sas_disable_tlr -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x563259aa sas_is_tlr_enabled -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x84ecf3ac sas_tlr_supported -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xe1ba8c49 sas_enable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfaa2bf00 iscsi_lookup_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x0714dd7a sas_tlr_supported +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x972c7908 sas_disable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xeb95a0d6 sas_is_tlr_enabled +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xf419632d sas_enable_tlr EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x0ef06974 spi_populate_ppr_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x5549cbbc 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 0xd5c9e392 spi_populate_tag_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x089c0068 srp_rport_del +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x09b8b40f srp_remove_host EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x1902178a srp_tmo_valid -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x1a5f8aa6 srp_rport_add -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x5f6ff57c srp_attach_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x5f9d0440 srp_stop_rport_timers -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x93bb6d3c srp_rport_del -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xb9882e7c srp_remove_host -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xd2e8baa6 srp_release_transport -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x01e18373 ufshcd_dealloc_host -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x07f9764b ufshcd_dme_configure_adapt -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x3085365c ufshcd_hba_enable -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x3192a1ed ufshcd_config_pwr_mode -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x36fa756e ufshcd_init -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x43a65292 ufshcd_dme_get_attr -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x486c674d ufshcd_hba_stop -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x512a8912 ufshcd_make_hba_operational -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x51dcba2f ufshcd_fixup_dev_quirks -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x5efb404f ufshcd_dump_regs -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x6538d65a ufshcd_dme_set_attr -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x687b9942 ufshcd_link_recovery +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x29c40462 srp_rport_add +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x577f98c9 srp_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x7b87992f srp_stop_rport_timers +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xd2f075a3 srp_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x0e01e7f3 ufshcd_release +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x0eb97fad ufshcd_remove +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x1a9a44a6 ufshcd_update_evt_hist +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x20ca0f52 ufshcd_init +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x3a93bbc5 ufshcd_link_recovery +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x3aa104fc ufshcd_dme_set_attr +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x3daaf3df ufshcd_hba_enable +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x59f5e561 ufshcd_auto_hibern8_update +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x67b8398f ufshcd_dme_configure_adapt EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x723b1abf ufshcd_delay_us -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x75f582a7 ufshcd_resume_complete -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x7c8dd61b ufshcd_remove -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x9a95a2c3 ufshcd_release -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xc862c53c ufshcd_auto_hibern8_update -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xcdf760f2 ufshcd_update_evt_hist -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xd9ab2037 ufshcd_hold -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xdbb19634 ufshcd_suspend_prepare -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xfc2c51bb ufshcd_uic_hibern8_exit -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x2837f647 ufshcd_pltfrm_init +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x7d5b84c0 ufshcd_fixup_dev_quirks +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x7deebe3d ufshcd_hold +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x8f9e0f54 ufshcd_dump_regs +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x9b7d513f ufshcd_dme_get_attr +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xb1f8bfaa ufshcd_uic_hibern8_exit +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xb1fa75e2 ufshcd_hba_stop +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xbbb78558 ufshcd_suspend_prepare +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xd7722cb2 ufshcd_dealloc_host +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xd8b24f02 ufshcd_make_hba_operational +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xd9e8efeb ufshcd_resume_complete +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xe48f54cd ufshcd_config_pwr_mode +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x4294ca49 ufshcd_pltfrm_init EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x54c946de ufshcd_init_pwr_dev_param -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xb5d99966 ufshcd_pltfrm_shutdown +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x99a0b713 ufshcd_pltfrm_shutdown EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xff85cd6b ufshcd_get_pwr_dev_param -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x29be7d5e siox_master_register -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x7d45e5fd siox_master_unregister -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x7f9e5ace __siox_driver_register -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xc0e6219b siox_device_synced -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xc1537235 siox_master_alloc -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xc4d8f4db siox_device_connected -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x025101d5 __slim_driver_register -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x07c6deb2 slim_msg_response -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x0c86a35f slim_ctrl_clk_pause -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x11cd6147 of_slim_get_device -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x222c7e9e slim_get_logical_addr -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x2ae560b5 slimbus_bus -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x3af55d3b slim_writeb -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x50aa6261 slim_free_txn_tid -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x5f72d06c slim_readb -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x63c127e5 slim_stream_enable -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x6641cee3 slim_driver_unregister -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x6b9dac23 slim_xfer_msg -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x6c37d591 slim_stream_unprepare -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x7f4c5010 slim_get_device -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x8f5a3119 slim_stream_free -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x8f933d33 slim_device_report_present -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x96f919ce slim_read -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xb267c01e slim_unregister_controller -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xb3e2e62d slim_stream_allocate -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xc9db0364 slim_stream_disable -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xd0fb85e6 slim_do_transfer -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xd4427e2b slim_write -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xe09cc579 slim_report_absent -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xed8bed1d slim_stream_prepare -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xf4c09f0a slim_alloc_txn_tid -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xfaa1d597 slim_register_controller -EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x41d1a0b2 __sdw_register_driver -EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x52c6666f sdw_bus_type -EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0xfebf2aa9 sdw_unregister_driver -EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-cadence 0x40965b59 sdw_cdns_debugfs_init -EXPORT_SYMBOL_GPL drivers/spi/spi-altera-core 0x32ec4589 altera_spi_init_master +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x8f98adf7 __siox_driver_register +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x91be22fe siox_device_synced +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xc77fa699 siox_master_register +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xe310d577 siox_master_alloc +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xf9e4fbcf siox_master_unregister +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xfdfe418a siox_device_connected +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x06d2d47f slim_ctrl_clk_pause +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x0f2b55c0 slim_stream_unprepare +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x1b9792c4 slim_free_txn_tid +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x2b63ba09 of_slim_get_device +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x34eb9e63 slim_get_logical_addr +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x430e92bf slim_write +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x54d8b0a2 slim_xfer_msg +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x56483c2d slim_driver_unregister +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x587df1fc slim_stream_enable +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x5d97157b slim_stream_free +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x61dc4ec5 slim_writeb +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x65a2ed7a slim_stream_disable +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x7238af80 slim_stream_prepare +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x7b951d86 slim_msg_response +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x924b438d slim_stream_allocate +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xa89ecc7d slim_do_transfer +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xaf080e24 slimbus_bus +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xb32cfafd slim_device_report_present +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xb931bad0 slim_get_device +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xbdf3bb81 slim_register_controller +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xc63eedb3 __slim_driver_register +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xcc97ff33 slim_unregister_controller +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xf80825cc slim_readb +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xfa933612 slim_report_absent +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xfaae482e slim_read +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xfd5ebb59 slim_alloc_txn_tid +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x76cf7ab1 __sdw_register_driver +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0xd90fb657 sdw_bus_type +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0xe8a9ec94 sdw_unregister_driver +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-cadence 0xe270bca8 sdw_cdns_debugfs_init +EXPORT_SYMBOL_GPL drivers/spi/spi-altera-core 0x961069a8 altera_spi_init_master EXPORT_SYMBOL_GPL drivers/spi/spi-altera-core 0xb9edd149 altera_spi_irq -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x21d4419d spi_bitbang_init -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x34729188 spi_bitbang_stop -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xa52a55bf spi_bitbang_setup_transfer -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xda397122 spi_bitbang_cleanup -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xe0ac95cf spi_bitbang_setup -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xfe2f16e0 spi_bitbang_start -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x2f2f2cac dw_spi_remove_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x323babb7 dw_spi_set_cs -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x344297dc dw_spi_resume_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x42a1918c dw_spi_dma_setup_generic -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x54c8ff7a dw_spi_check_status -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x59a45e44 dw_spi_dma_setup_mfld -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x72b2ff3b dw_spi_suspend_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xa3fa5035 dw_spi_update_config -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xc52aae5e dw_spi_add_host -EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x79e9b4fc spi_test_execute_msg -EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0xaea8bc7c spi_test_run_tests -EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0xd725c3e5 spi_test_run_test -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x001933d5 __spmi_driver_register -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x0807173f spmi_register_read -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x0c5cee1b spmi_register_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x1540c3b0 spmi_ext_register_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x17ec3e44 spmi_controller_add -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x2b9ee4a9 spmi_device_remove -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x334523fb spmi_ext_register_readl -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x6b1d5d79 spmi_command_wakeup -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x724ed593 spmi_device_alloc -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x76deb04f spmi_command_reset -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x79c38618 spmi_ext_register_read -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x8493f739 spmi_controller_remove -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xa5b08bb0 spmi_command_sleep -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xac6fd13c spmi_ext_register_writel -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xbdc45967 spmi_command_shutdown -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xd29d77b1 spmi_register_zero_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xe5cd4899 spmi_controller_alloc -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xe8af9d7c spmi_device_add -EXPORT_SYMBOL_GPL drivers/ssb/ssb 0xd7111b09 ssb_pmu_spuravoid_pllupdate -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x6a982318 fieldbus_dev_area_updated -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0xab0563a3 fieldbus_dev_register -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0xaf1b843a fieldbus_dev_online_changed -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0xd9dc817e fieldbus_dev_unregister -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x3da53d1f gb_audio_apbridgea_set_rx_data_size -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x4337f7a5 gb_audio_apbridgea_prepare_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x4b82beb0 gb_audio_apbridgea_set_tx_data_size -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x5f555e08 gb_audio_apbridgea_stop_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x60056afc gb_audio_apbridgea_stop_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x6be5243f gb_audio_apbridgea_start_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x7c67c351 gb_audio_apbridgea_prepare_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x97415738 gb_audio_apbridgea_shutdown_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x9ee0a963 gb_audio_apbridgea_start_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xa81163cc gb_audio_apbridgea_shutdown_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xcd8fe1bf gb_audio_apbridgea_register_cport -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xeef069db gb_audio_apbridgea_set_config -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xf10b6b15 gb_audio_apbridgea_unregister_cport -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x0a1d0416 gb_audio_gb_disable_widget -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x1df2b59f gb_audio_gb_enable_widget -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x2faa3059 gb_audio_gb_activate_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x53aa30e6 gb_audio_gb_get_topology -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x69fc57fc gb_audio_gb_deactivate_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x6e67d61e gb_audio_gb_set_control -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x7526a213 gb_audio_gb_get_control -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x8e6bfc31 gb_audio_gb_deactivate_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x9d054c6d gb_audio_gb_set_rx_data_size -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xad9cfdbe gb_audio_gb_set_tx_data_size -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xc07c7da4 gb_audio_gb_set_pcm -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xc83d9b94 gb_audio_gb_activate_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xe324797a gb_audio_gb_get_pcm +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x3e60a123 spi_bitbang_setup_transfer +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x6656ab89 spi_bitbang_stop +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x6a4ff758 spi_bitbang_start +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x9a981b88 spi_bitbang_cleanup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xbfa6413a spi_bitbang_setup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xf3049272 spi_bitbang_init +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x0e3bf7d6 dw_spi_dma_setup_generic +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x1be8b5ea dw_spi_check_status +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x597026ef dw_spi_set_cs +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x5a534356 dw_spi_add_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x9d8c197b dw_spi_dma_setup_mfld +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xca19bf57 dw_spi_resume_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xf201b3f8 dw_spi_update_config +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xfa9d7421 dw_spi_suspend_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xfbf8c7f6 dw_spi_remove_host +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x13ee0a11 spi_test_run_tests +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x86252385 spi_test_execute_msg +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0xab9bdd59 spi_test_run_test +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x0686d13d spmi_controller_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x3a9c67ad spmi_ext_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x4e53dc10 spmi_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x5d7ccb68 spmi_command_shutdown +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x649ecafe spmi_command_wakeup +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x6be82aa5 spmi_ext_register_writel +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x6cb1aab6 spmi_controller_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x72358d1f spmi_device_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x80148131 spmi_ext_register_readl +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x934488a0 spmi_device_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x98c8d16a spmi_command_sleep +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xc07548e7 spmi_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xcf9575c2 spmi_register_zero_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xcfd9cd4b spmi_ext_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xe04d74fd spmi_controller_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xe5dcba76 __spmi_driver_register +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xed46387e spmi_device_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xef45e01e spmi_command_reset +EXPORT_SYMBOL_GPL drivers/ssb/ssb 0x41dff457 ssb_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x2d476c75 fieldbus_dev_register +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x3124b322 fieldbus_dev_online_changed +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x93dad230 fieldbus_dev_unregister +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0xe153cb34 fieldbus_dev_area_updated +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x08866d61 gb_audio_apbridgea_set_config +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x29af078a gb_audio_apbridgea_stop_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x33b1c762 gb_audio_apbridgea_set_tx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x377b9d26 gb_audio_apbridgea_prepare_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x43ed24a4 gb_audio_apbridgea_shutdown_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x4e88224f gb_audio_apbridgea_register_cport +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x667b05dc gb_audio_apbridgea_unregister_cport +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xafba0e2e gb_audio_apbridgea_shutdown_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xc5f82d00 gb_audio_apbridgea_stop_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xdb2cb7ac gb_audio_apbridgea_prepare_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xef3c2562 gb_audio_apbridgea_set_rx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xf35b2c34 gb_audio_apbridgea_start_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xfdca519d gb_audio_apbridgea_start_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x11bce3b1 gb_audio_gb_deactivate_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x1227dd87 gb_audio_gb_set_control +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x5a26cb17 gb_audio_gb_activate_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x5fe572ed gb_audio_gb_set_rx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x6244a434 gb_audio_gb_get_pcm +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x64664668 gb_audio_gb_disable_widget +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xa26a1cde gb_audio_gb_get_control +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xa7c9ded8 gb_audio_gb_deactivate_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xad646330 gb_audio_gb_set_pcm +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xb4abee39 gb_audio_gb_enable_widget +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xbf670336 gb_audio_gb_get_topology +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xe24ce8a4 gb_audio_gb_set_tx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xec53f67e gb_audio_gb_activate_rx EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x09bd7f9f gb_audio_manager_get_module EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x19e9e6b1 gb_audio_manager_remove_all EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x32e6391e gb_audio_manager_remove @@ -16640,382 +16686,381 @@ 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-gbphy 0x2c7adefd gb_gbphy_deregister_driver -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0x52318534 gb_gbphy_register_driver -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0x08a1d64c gb_spilib_master_init -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0x1af97973 gb_spilib_master_exit -EXPORT_SYMBOL_GPL drivers/staging/iio/addac/adt7316 0x25689325 adt7316_pm_ops -EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/i2c/atomisp-libmsrlisthelper 0x4d25899c apply_msr_data -EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/i2c/atomisp-libmsrlisthelper 0x72fc0f72 load_msr_list -EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/i2c/atomisp-libmsrlisthelper 0xc38dcc2e release_msr_list -EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/pci/atomisp_gmin_platform 0x02126507 atomisp_register_i2c_module -EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/pci/atomisp_gmin_platform 0x0ed2943f atomisp_gmin_find_subdev -EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/pci/atomisp_gmin_platform 0x283652fb atomisp_gmin_remove_subdev -EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/pci/atomisp_gmin_platform 0x491455f8 atomisp_get_platform_data -EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/pci/atomisp_gmin_platform 0x7f7974a0 gmin_camera_platform_data +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0x6f79f98e gb_gbphy_deregister_driver +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0xadc3dd4e gb_gbphy_register_driver +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0x36522677 gb_spilib_master_exit +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0x7bffbe5f gb_spilib_master_init +EXPORT_SYMBOL_GPL drivers/staging/iio/addac/adt7316 0x0240c196 adt7316_pm_ops +EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/i2c/atomisp-libmsrlisthelper 0x27405fa8 load_msr_list +EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/i2c/atomisp-libmsrlisthelper 0x8678cd79 apply_msr_data +EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/i2c/atomisp-libmsrlisthelper 0xaa8704e4 release_msr_list +EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/pci/atomisp_gmin_platform 0x29090cc1 atomisp_get_platform_data +EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/pci/atomisp_gmin_platform 0x495addb3 atomisp_gmin_remove_subdev +EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/pci/atomisp_gmin_platform 0x53a793fa gmin_camera_platform_data +EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/pci/atomisp_gmin_platform 0x57080ccc camera_sensor_csi +EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/pci/atomisp_gmin_platform 0x7a273b8c gmin_get_var_int +EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/pci/atomisp_gmin_platform 0x8ab7a4e3 atomisp_gmin_register_vcm_control EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/pci/atomisp_gmin_platform 0xbae0e12f atomisp_get_default_camera_caps -EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/pci/atomisp_gmin_platform 0xccb94a78 camera_sensor_csi -EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/pci/atomisp_gmin_platform 0xe13c099b gmin_get_var_int -EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/pci/atomisp_gmin_platform 0xed1d9c9f atomisp_gmin_register_vcm_control -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x28bbdb8d target_init_cmd -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x2b79df90 target_submit -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x487bb4ed target_queue_submission -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x8ebfc64e target_submit_prep -EXPORT_SYMBOL_GPL drivers/tee/tee 0x030cf644 tee_client_get_version -EXPORT_SYMBOL_GPL drivers/tee/tee 0x0c5ff413 tee_shm_get_pa -EXPORT_SYMBOL_GPL drivers/tee/tee 0x0dc25501 tee_device_unregister -EXPORT_SYMBOL_GPL drivers/tee/tee 0x1194bf45 tee_shm_get_va -EXPORT_SYMBOL_GPL drivers/tee/tee 0x11c56798 tee_shm_alloc -EXPORT_SYMBOL_GPL drivers/tee/tee 0x142bd13c tee_client_open_context -EXPORT_SYMBOL_GPL drivers/tee/tee 0x25b59794 tee_shm_put -EXPORT_SYMBOL_GPL drivers/tee/tee 0x31fabacb tee_shm_alloc_kernel_buf -EXPORT_SYMBOL_GPL drivers/tee/tee 0x443dbdc7 tee_shm_get_from_id -EXPORT_SYMBOL_GPL drivers/tee/tee 0x6c9df157 tee_get_drvdata -EXPORT_SYMBOL_GPL drivers/tee/tee 0x75707422 tee_shm_pa2va -EXPORT_SYMBOL_GPL drivers/tee/tee 0x77b56d47 tee_shm_register -EXPORT_SYMBOL_GPL drivers/tee/tee 0x7aca0b2b teedev_close_context -EXPORT_SYMBOL_GPL drivers/tee/tee 0x7c52f248 tee_client_invoke_func +EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/pci/atomisp_gmin_platform 0xd759a0ec atomisp_register_i2c_module +EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/pci/atomisp_gmin_platform 0xde0de20e atomisp_gmin_find_subdev +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x0c729214 target_submit_prep +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x931fdf1b target_submit +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xd4eb55a2 target_queue_submission +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xefc2c5c3 target_init_cmd +EXPORT_SYMBOL_GPL drivers/tee/tee 0x046aadbc tee_shm_get_from_id +EXPORT_SYMBOL_GPL drivers/tee/tee 0x2be92dd8 tee_device_unregister +EXPORT_SYMBOL_GPL drivers/tee/tee 0x2e3e4e26 tee_shm_register +EXPORT_SYMBOL_GPL drivers/tee/tee 0x416eb260 tee_device_alloc +EXPORT_SYMBOL_GPL drivers/tee/tee 0x4711c826 tee_shm_free +EXPORT_SYMBOL_GPL drivers/tee/tee 0x500b25f6 tee_device_register +EXPORT_SYMBOL_GPL drivers/tee/tee 0x52e932f9 teedev_close_context +EXPORT_SYMBOL_GPL drivers/tee/tee 0x563b5c67 tee_shm_put +EXPORT_SYMBOL_GPL drivers/tee/tee 0x667f9187 tee_shm_get_pa +EXPORT_SYMBOL_GPL drivers/tee/tee 0x79abd7fc tee_shm_get_va +EXPORT_SYMBOL_GPL drivers/tee/tee 0x7a995a18 tee_shm_pool_mgr_alloc_res_mem +EXPORT_SYMBOL_GPL drivers/tee/tee 0x7d6389ef tee_client_get_version +EXPORT_SYMBOL_GPL drivers/tee/tee 0x7d9fbb18 teedev_open +EXPORT_SYMBOL_GPL drivers/tee/tee 0x7ffec2af tee_shm_pool_free EXPORT_SYMBOL_GPL drivers/tee/tee 0x85fd9922 tee_session_calc_client_uuid -EXPORT_SYMBOL_GPL drivers/tee/tee 0x862b5f28 tee_shm_pool_mgr_alloc_res_mem -EXPORT_SYMBOL_GPL drivers/tee/tee 0x86342fac tee_shm_pool_alloc -EXPORT_SYMBOL_GPL drivers/tee/tee 0x8ac463ef tee_device_register -EXPORT_SYMBOL_GPL drivers/tee/tee 0x8def95bc tee_shm_va2pa -EXPORT_SYMBOL_GPL drivers/tee/tee 0x9caed1d3 tee_shm_pool_alloc_res_mem -EXPORT_SYMBOL_GPL drivers/tee/tee 0xab76f7be tee_client_close_session -EXPORT_SYMBOL_GPL drivers/tee/tee 0xad4666f9 tee_shm_pool_free -EXPORT_SYMBOL_GPL drivers/tee/tee 0xb126a26b tee_shm_free -EXPORT_SYMBOL_GPL drivers/tee/tee 0xb878168e tee_device_alloc -EXPORT_SYMBOL_GPL drivers/tee/tee 0xc54583dc tee_client_close_context -EXPORT_SYMBOL_GPL drivers/tee/tee 0xcc26172a tee_client_open_session -EXPORT_SYMBOL_GPL drivers/tee/tee 0xfa93a8f6 teedev_open -EXPORT_SYMBOL_GPL drivers/tee/tee 0xfee77ad7 tee_bus_type -EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/int340x_thermal_zone 0x6c8b2ca4 int340x_thermal_read_trips -EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/int340x_thermal_zone 0x7ebe25dc int340x_thermal_zone_remove -EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/int340x_thermal_zone 0xb8542eac int340x_thermal_zone_add -EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_device 0x118f6a70 proc_thermal_resume -EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_device 0x1de92765 proc_thermal_add -EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_device 0x29574b4c proc_thermal_remove -EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_device 0x82187fff proc_thermal_mmio_add -EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_device 0xe53e13ed proc_thermal_mmio_remove -EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_device 0xed67b134 proc_thermal_suspend -EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_mbox 0x29bc848f proc_thermal_mbox_add -EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_mbox 0xcc6dde4e proc_thermal_mbox_remove +EXPORT_SYMBOL_GPL drivers/tee/tee 0x8e964594 tee_client_open_context +EXPORT_SYMBOL_GPL drivers/tee/tee 0x95fc373f tee_client_open_session +EXPORT_SYMBOL_GPL drivers/tee/tee 0x980703af tee_client_invoke_func +EXPORT_SYMBOL_GPL drivers/tee/tee 0x9e7807b9 tee_client_close_context +EXPORT_SYMBOL_GPL drivers/tee/tee 0xac376339 tee_bus_type +EXPORT_SYMBOL_GPL drivers/tee/tee 0xbc0cc953 tee_client_close_session +EXPORT_SYMBOL_GPL drivers/tee/tee 0xc5a7b1c2 tee_shm_va2pa +EXPORT_SYMBOL_GPL drivers/tee/tee 0xdbeab5dc tee_shm_pool_alloc_res_mem +EXPORT_SYMBOL_GPL drivers/tee/tee 0xe1dc5294 tee_shm_pa2va +EXPORT_SYMBOL_GPL drivers/tee/tee 0xe75573ea tee_get_drvdata +EXPORT_SYMBOL_GPL drivers/tee/tee 0xee66cbc5 tee_shm_alloc_kernel_buf +EXPORT_SYMBOL_GPL drivers/tee/tee 0xf6ac366f tee_shm_alloc +EXPORT_SYMBOL_GPL drivers/tee/tee 0xfcd97e75 tee_shm_pool_alloc +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/int340x_thermal_zone 0x43928726 int340x_thermal_zone_remove +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/int340x_thermal_zone 0xaebad1e7 int340x_thermal_zone_add +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/int340x_thermal_zone 0xfce87109 int340x_thermal_read_trips +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_device 0x5910e0c0 proc_thermal_mmio_remove +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_device 0xb3cc1f9e proc_thermal_mmio_add +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_device 0xcc394f07 proc_thermal_remove +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_device 0xd78b5ad5 proc_thermal_suspend +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_device 0xfdefc33d proc_thermal_add +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_device 0xfdff1708 proc_thermal_resume +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_mbox 0x1971099c proc_thermal_mbox_add +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_mbox 0x3acdafec proc_thermal_mbox_remove 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 0x95d95dc8 proc_thermal_rapl_add -EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_rfim 0x8acf813a proc_thermal_rfim_remove -EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_rfim 0x95d01c25 proc_thermal_rfim_add -EXPORT_SYMBOL_GPL drivers/thermal/intel/intel_soc_dts_iosf 0x45c3ae65 intel_soc_dts_iosf_exit -EXPORT_SYMBOL_GPL drivers/thermal/intel/intel_soc_dts_iosf 0xabd68d48 intel_soc_dts_iosf_init -EXPORT_SYMBOL_GPL drivers/thermal/intel/intel_soc_dts_iosf 0xc65b3c23 intel_soc_dts_iosf_add_read_only_critical_trip -EXPORT_SYMBOL_GPL drivers/thermal/intel/intel_soc_dts_iosf 0xf4391990 intel_soc_dts_iosf_interrupt_handler +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_rapl 0xdd66588a proc_thermal_rapl_add +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_rfim 0xba8bb5f7 proc_thermal_rfim_add +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_rfim 0xcd97a950 proc_thermal_rfim_remove +EXPORT_SYMBOL_GPL drivers/thermal/intel/intel_soc_dts_iosf 0x5b655eac intel_soc_dts_iosf_init +EXPORT_SYMBOL_GPL drivers/thermal/intel/intel_soc_dts_iosf 0x8e3b42fc intel_soc_dts_iosf_exit +EXPORT_SYMBOL_GPL drivers/thermal/intel/intel_soc_dts_iosf 0xc07aff6c intel_soc_dts_iosf_add_read_only_critical_trip +EXPORT_SYMBOL_GPL drivers/thermal/intel/intel_soc_dts_iosf 0xf6899e25 intel_soc_dts_iosf_interrupt_handler EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x01d23ee1 tb_property_create_dir -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x0490c91e tb_xdomain_request -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x0b107b55 tb_xdomain_find_by_route -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x111f3f0d tb_xdomain_enable_paths -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x15452539 tb_xdomain_release_out_hopid -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x1f27935f tb_xdomain_find_by_uuid -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x24239759 __tb_ring_enqueue -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x27eb0737 tb_service_type -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x363660b3 tb_unregister_service_driver +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x0a98003f tb_xdomain_lane_bonding_disable +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x13c73208 tb_xdomain_release_out_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x168eb7d0 tb_ring_poll +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x1936fa6a tb_xdomain_find_by_uuid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x26497d34 tb_xdomain_enable_paths +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x3792d01a tb_xdomain_alloc_out_hopid EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x393b4f2f tb_property_free_dir -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x39c7019f tb_xdomain_alloc_in_hopid -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x433bdd60 tb_xdomain_disable_paths -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x470bd96f tb_xdomain_response -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x49bf74b5 tb_ring_alloc_tx +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x4cf30806 tb_unregister_service_driver +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x4d79fd77 tb_service_type +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x4e3f223b tb_xdomain_release_in_hopid EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x4e5064a7 tb_property_find EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x4e64bdfd tb_register_protocol_handler -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x50499ee0 tb_ring_start -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x5ff09a19 tb_register_service_driver +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x5bb82301 tb_xdomain_disable_paths +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x5f93223e tb_xdomain_response EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x603249ed tb_unregister_property_dir EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x658e3d97 tb_property_add_immediate -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x6c6bc6bc tb_xdomain_release_in_hopid -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x72e9bbe6 tb_ring_poll_complete +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x67e53036 tb_ring_free +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x6b0d7ff3 tb_ring_alloc_rx EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x73ad2acb tb_property_get_next -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x7587461b tb_xdomain_lane_bonding_enable EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x785eb82c tb_property_remove -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x794bcc82 tb_ring_stop +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x815c5c43 tb_ring_poll_complete EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x8b62f95e tb_property_add_dir +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xa3261742 tb_xdomain_type EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xa3d2b403 tb_property_add_data -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xa453aa26 tb_ring_free -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xb777f88c tb_xdomain_alloc_out_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xa95e6d81 tb_xdomain_request +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xaf7e96c8 tb_xdomain_alloc_in_hopid EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xb7c7cdce tb_property_add_text -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xc9b4ed02 tb_xdomain_type -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xce199a30 tb_ring_poll -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xd221fa11 tb_xdomain_lane_bonding_disable -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xe4bd82da tb_ring_alloc_rx +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xb7e3531d tb_register_service_driver +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xb82cf0dd tb_ring_stop +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xbf1f69fe tb_ring_start +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xd296562d tb_xdomain_lane_bonding_enable +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xe103a0d2 tb_ring_alloc_tx +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xeb971bd0 tb_xdomain_find_by_route +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xee012bad __tb_ring_enqueue 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/uio/uio 0xa4bb0d43 uio_event_notify -EXPORT_SYMBOL_GPL drivers/uio/uio 0xa907afdd __uio_register_device -EXPORT_SYMBOL_GPL drivers/uio/uio 0xb8a46024 uio_unregister_device -EXPORT_SYMBOL_GPL drivers/uio/uio 0xdba0368a __devm_uio_register_device -EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0xa2a281d3 usbatm_usb_disconnect -EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0xaa316554 usbatm_usb_probe -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x0cd82c8c cdns_resume -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x0fabc724 cdns_drd_gadget_on -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x143d3e6f cdns_remove -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x40ecb467 cdns_init -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x8eadeecb cdns_power_is_lost -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x9e630f9f cdns_clear_vbus -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xb1370a9b cdns_suspend -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xef283a9f cdns_drd_gadget_off -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xf36312f0 cdns_set_vbus -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x15196e9a ci_hdrc_add_device -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x56713473 ci_hdrc_remove_device -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x942c3bbe hw_phymode_configure -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xd6f7453f ci_hdrc_query_available_role -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x1d7d64cb __ulpi_register_driver -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x67b1dddb ulpi_register_interface -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x89c98eb6 ulpi_unregister_driver -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xa1b26eda ulpi_write -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xf6d5f491 ulpi_read -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xfd979b85 ulpi_unregister_interface -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x33bf0bac g_audio_setup -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x55c9413a u_audio_start_capture -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x68220c0e g_audio_cleanup -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x7789bb56 u_audio_set_volume -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x7d4a6fd8 u_audio_get_mute -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x7d746783 u_audio_stop_playback -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x8a6b3369 u_audio_set_mute -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xb1a938cb u_audio_stop_capture -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xb72ac570 u_audio_start_playback -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xe0e389f2 u_audio_get_volume -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x02aa7fbb gether_register_netdev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x0a6ad0ff gether_get_qmult -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x0c7efda8 gether_get_host_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x211cb91a gether_get_host_addr_u8 -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x3fb42b97 gether_setup_name -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x5488e325 gether_get_host_addr_cdc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x79a0f0c5 gether_set_qmult +EXPORT_SYMBOL_GPL drivers/uio/uio 0x15bc36fa uio_event_notify +EXPORT_SYMBOL_GPL drivers/uio/uio 0x1bac0f7f __uio_register_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0x35dc85c4 uio_unregister_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0x494df493 __devm_uio_register_device +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x6d23491c usbatm_usb_disconnect +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x9e924094 usbatm_usb_probe +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x251499e0 cdns_power_is_lost +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x3ddb805b cdns_suspend +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x7b873566 cdns_clear_vbus +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x816675ef cdns_resume +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x97cd3492 cdns_init +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xd515fb5d cdns_drd_gadget_on +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xe7291f49 cdns_drd_gadget_off +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xf2e1138a cdns_remove +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xf8d785eb cdns_set_vbus +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x453c81d1 hw_phymode_configure +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x6634c3f0 ci_hdrc_query_available_role +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x7f0752dc ci_hdrc_remove_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xc4340fdc ci_hdrc_add_device +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x0e41cb06 ulpi_register_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x13985984 ulpi_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x6497d505 ulpi_write +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xb739abdb ulpi_read +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xc52c54f5 ulpi_unregister_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xcafb5b95 __ulpi_register_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x0b22aa6e u_audio_stop_capture +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x1491ce43 u_audio_set_mute +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x2407b29b u_audio_stop_playback +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x3e9f28c3 u_audio_start_capture +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x4b55ec56 g_audio_setup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x8c55d04c u_audio_start_playback +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xab448194 u_audio_set_volume +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xb70408bc g_audio_cleanup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xf7dd3c38 u_audio_get_mute +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xf84858d9 u_audio_get_volume +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x0b6ca25e gether_register_netdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x12a947ee gether_set_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x2f30e337 gether_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x4aabf509 gether_set_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x5493c0dc gether_get_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x63382d99 gether_get_ifname +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x6964d94c gether_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x6b2a4189 gether_get_host_addr_u8 +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x7471fa3d gether_setup_name_default +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x79af6baa gether_get_qmult EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8878cfa6 gether_cleanup -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x88ec6486 gether_set_ifname -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x9ad50bb0 gether_set_dev_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xa6d36d1c gether_setup_name_default -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xa94b180e gether_get_ifname -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xc8c4b85e gether_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xcaa9d718 gether_get_dev_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xcdd953c8 gether_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xd677e365 gether_set_host_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xdf0b13f2 gether_set_gadget -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x25a74718 gserial_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x274aef63 gserial_resume +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x88e2a70d gether_get_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xad5e8081 gether_set_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xbebc2dad gether_set_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xc02b44de gether_set_ifname +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xe634d6f3 gether_get_host_addr_cdc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xfd281dfd gether_setup_name EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x33bfdca2 gserial_alloc_line +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x40fb4f29 gserial_suspend EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x4a3df9d0 gs_alloc_req EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x60db48f5 gserial_get_console EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x60ea48a0 gs_free_req -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x80a3260f gserial_suspend +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x7e884272 gserial_resume +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x90f30ca5 gserial_disconnect EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xb6652875 gserial_free_line EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xc0a01527 gserial_set_console -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xda1e6a57 gserial_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xd34a8787 gserial_connect EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xe89dc424 gserial_alloc_line_no_console EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x6c825859 ffs_lock -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0xc29bb16b ffs_single_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0xd1700c20 ffs_name_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1260aa94 fsg_lun_open +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x72ee520e ffs_single_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0xc4a67420 ffs_name_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x006bffba fsg_show_inquiry_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x13d1a752 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 0x24197640 fsg_store_nofua +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x23a57b3a 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 0x2ef87a2c fsg_store_file +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x32ad971c 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 0x3aba9c0e fsg_store_cdrom EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x3c6a07d0 fsg_common_create_lun EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x423845e4 fsg_ss_bulk_in_comp_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x49d21e47 fsg_show_file -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x509f8981 fsg_store_ro +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x55671a86 fsg_store_nofua EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x56344daf fsg_hs_bulk_out_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x682dc03c fsg_show_nofua -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x68e778d7 fsg_show_removable +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x6a52a9a0 fsg_lun_open 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 0x74e88107 fsg_lun_close -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7a0dffe9 fsg_show_inquiry_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x6b785433 fsg_lun_close +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x6f1af16f fsg_store_cdrom +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x72815075 fsg_common_remove_lun +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x72e10fa4 fsg_store_removable EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7e26d4a5 fsg_common_set_sysfs EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x857b6dc2 fsg_hs_function EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 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 0x9d4f1a31 fsg_show_ro +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa3000889 fsg_show_file EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa5cae92f fsg_ss_bulk_out_comp_desc EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa5f99b69 fsg_fs_function EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 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 0xc17e5ca1 fsg_show_ro -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xc786f79f fsg_common_remove_lun +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xbbe57649 fsg_store_file EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xd1a3e8e0 fsg_common_create_luns -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xdabea6b4 fsg_common_set_cdev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xe42d2708 fsg_store_inquiry_string -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xe860cb9f fsg_store_removable +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xe0f678d7 fsg_common_set_cdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xe882d500 fsg_show_removable +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xebc6e5e1 fsg_store_ro EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf4efc0c8 fsg_ss_bulk_out_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xfc2058cc fsg_show_cdrom -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xff3bd7aa fsg_lun_fsync_sub -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x0fae87d9 rndis_signal_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x1a2609bf rndis_rm_hdr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x1f266254 rndis_register -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x22e11395 rndis_deregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x320b51a1 rndis_set_host_mac -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x434cb4a0 rndis_signal_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x671893c4 rndis_set_param_vendor -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x6ffb8e25 rndis_set_param_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x75a1629f rndis_set_param_medium -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x9356eeb9 rndis_add_hdr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x9ce73e5d rndis_uninit -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xcb543c80 rndis_free_response -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xde7c7f68 rndis_msg_parser -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xe6381f2d rndis_get_next_response -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xfec5eaa7 rndis_borrow_net -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x01a323d3 usb_put_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0864ef56 usb_get_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xfe8f4ff8 fsg_show_nofua +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x07fc978b rndis_set_host_mac +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x1011a06d rndis_signal_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x23261984 rndis_add_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x2505b3c0 rndis_free_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x2522ea52 rndis_set_param_vendor +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x36aa7748 rndis_msg_parser +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x3c1eb473 rndis_deregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x6ae04541 rndis_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x809bbbe6 rndis_get_next_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x9617f4bd rndis_rm_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xa033c5ac rndis_set_param_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xa3343678 rndis_borrow_net +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xba3087f4 rndis_uninit +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xcaba6ff8 rndis_set_param_medium +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xf5f4d45a rndis_signal_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x02542ba7 usb_string_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0c1c92eb usb_get_function EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0c589aba usb_validate_langid EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0cb7e477 usb_ep_autoconfig_release -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0e7343e5 usb_remove_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x16246a93 usb_get_function_instance -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x1f41b946 usb_function_deactivate -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x28d4a6d7 usb_composite_unregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2b51de4b usb_composite_probe +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x148616e1 usb_composite_overwrite_options +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x1ac09c4d usb_add_config_only +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x1dd5e6e6 usb_function_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x26f21554 usb_add_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2c591c06 usb_function_deactivate EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2e09263f usb_copy_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2e126877 usb_function_unregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x37b55ebd usb_put_function_instance -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x48b376c2 unregister_gadget_item +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x36ad9f41 config_ep_by_speed +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x37c16d36 usb_add_config +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x42acd76a usb_free_all_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x431f43c1 usb_composite_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4a261ba2 usb_put_function EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4beb505d usb_gadget_get_string -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x50e68c96 usb_composite_setup_continue -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x56809f5d usb_ep_autoconfig -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5e061948 usb_string_ids_tab -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x629ff7e2 usb_interface_id -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x656eab95 usb_free_all_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x67c41701 usb_composite_overwrite_options -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x67f20771 config_ep_by_speed_and_alt -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x69d415ae usb_otg_descriptor_alloc -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6b5b5eb9 usb_ep_autoconfig_reset -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x75be8c66 usb_assign_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7d545d95 usb_function_activate -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7f6e8d0f usb_add_config_only -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x91f10a5c usb_add_config -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x9a76c208 usb_gstrings_attach -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb5fed266 usb_add_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4e54f709 usb_composite_probe +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5d29656d usb_interface_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5dcf167d usb_function_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5f4bc1af unregister_gadget_item +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x660dea37 usb_assign_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6f87bb6a usb_string_ids_tab +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x79339c71 usb_function_activate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7a1304f4 usb_otg_descriptor_alloc +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x9799c643 usb_remove_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x990c1080 usb_gstrings_attach +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa9d5aea7 usb_string_ids_n +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xac9fcb53 usb_ep_autoconfig_ss EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb775db55 alloc_ep_req -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc2a9ceb7 usb_function_register -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc323f9a2 usb_string_ids_n -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc7d75d09 usb_otg_descriptor_init +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb995a8c4 usb_ep_autoconfig +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc22b8b51 usb_otg_descriptor_init +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc7fc84c7 config_ep_by_speed_and_alt EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd2ea2134 usb_descriptor_fillbuf -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xdff9ee4e usb_ep_autoconfig_ss -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe265e09b usb_string_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xded792da usb_put_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf2b3e0d6 usb_composite_setup_continue EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf474a207 usb_gadget_config_buf -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xfd011f51 config_ep_by_speed -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x438e4cca udc_probe -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x4398770a udc_remove -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x4f3480ad udc_basic_init -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x5b105b6c free_dma_pools +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf5a7ce7f usb_ep_autoconfig_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xfc3c12d4 usb_get_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x19756919 udc_enable_dev_setup_interrupts +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x5075804c udc_basic_init +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x522fac85 free_dma_pools +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x59e71f49 udc_probe EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x5d01d078 udc_irq -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x6440ba3e empty_req_queue -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x67d57f15 udc_enable_dev_setup_interrupts -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x6cf462aa gadget_release -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xf71308c5 init_dma_pools -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xff18312a udc_mask_unused_interrupts +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x8a4ff32b empty_req_queue +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x9969f736 init_dma_pools +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x9e05b2f7 udc_remove +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xca381edf udc_mask_unused_interrupts +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xf9bcb557 gadget_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x00a9b37e usb_gadget_map_request_by_dev EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x01b12bfb usb_ep_free_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x0700bed2 usb_gadget_ep_match_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x084d31c1 usb_gadget_unregister_driver EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x0a8c3b4b usb_ep_set_halt EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x0acfe2e7 usb_ep_set_wedge -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x0cd28e19 usb_del_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x0c7b84d0 usb_add_gadget EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x0d90d784 usb_ep_fifo_flush -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x0e57f968 usb_add_gadget -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x11bf8425 usb_gadget_set_selfpowered -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x166853b4 usb_gadget_check_config -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x1994eefb usb_del_gadget_udc -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x216fe452 usb_udc_vbus_handler -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x2c6ca055 usb_gadget_clear_selfpowered -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x38ae1ef6 usb_gadget_vbus_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x496931a7 usb_add_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x1214718f usb_gadget_vbus_draw +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x164a4511 usb_gadget_unmap_request_by_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x295b8310 usb_gadget_udc_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x30ca3120 gadget_find_ep_by_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x49bafa48 usb_gadget_disconnect EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x49d9f030 usb_ep_fifo_status -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x49fea3ac usb_gadget_unmap_request_by_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x4a6df7f6 usb_initialize_gadget EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x506ab3a9 usb_ep_queue EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x50b88f41 usb_get_gadget_udc_name -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x5cbd2502 usb_gadget_probe_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x5bcad1e0 usb_gadget_frame_number +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x5c152c28 usb_gadget_set_selfpowered +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x5da45123 usb_gadget_connect EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x5fc294ef usb_ep_clear_halt -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x61967fd8 usb_gadget_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x62e725a1 usb_gadget_set_state -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x64e6cd2d usb_gadget_map_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x61d9e6b0 usb_gadget_set_state +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x65110cd1 usb_del_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x657a5830 usb_initialize_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x6fc0f43b usb_gadget_check_config +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x73db8256 usb_add_gadget_udc EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x7a41b9f2 usb_ep_set_maxpacket_limit -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x7b77fbf1 usb_gadget_unregister_driver EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x7be89624 usb_gadget_giveback_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x81121978 usb_gadget_map_request_by_dev EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x882077d5 usb_ep_dequeue -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x8eb97e12 usb_gadget_wakeup -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x918c28b8 usb_gadget_udc_reset -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x98d5dcec usb_gadget_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x8acb462a usb_gadget_vbus_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x9e5d61d6 usb_gadget_ep_match_desc EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x9eb52803 usb_ep_disable -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa9ca9c84 usb_add_gadget_udc_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x9ee5394f usb_gadget_vbus_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa329c53f usb_gadget_clear_selfpowered EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa9e74462 usb_ep_alloc_request EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xaf201fa6 usb_ep_enable -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xcf85bffb gadget_find_ep_by_name -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xdabdb8ba usb_gadget_unmap_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xeafcf328 usb_gadget_vbus_draw -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xef65253d usb_gadget_activate -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xf6452264 usb_gadget_frame_number -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xf9d1ff46 usb_gadget_deactivate -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xfee25527 usb_gadget_vbus_disconnect -EXPORT_SYMBOL_GPL drivers/usb/host/xhci-pci-renesas 0xefdf2e02 renesas_xhci_check_request_fw -EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x22acceef ezusb_fx1_ihex_firmware_download -EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x3e9e6260 ezusb_fx1_set_reset -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x060f8010 ftdi_elan_gone_away -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x2d3f45e0 usb_ftdi_elan_edset_empty -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x3c79f050 usb_ftdi_elan_edset_setup -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x4b8acb9f usb_ftdi_elan_edset_flush -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x615275e2 usb_ftdi_elan_read_pcimem -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xa6f6c591 usb_ftdi_elan_edset_input -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xb7165725 usb_ftdi_elan_edset_single -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xcd20a402 usb_ftdi_elan_write_pcimem -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xd885378f usb_ftdi_elan_edset_output -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x017f62e2 musb_get_mode -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x0737d9ac musb_interrupt +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xb917e4d1 usb_gadget_wakeup +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xbfbb2d5b usb_del_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xca871172 usb_gadget_probe_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xcbf322d9 usb_udc_vbus_handler +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xe158d2e3 usb_gadget_map_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xed0fc886 usb_add_gadget_udc_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xf5c281fc usb_gadget_activate +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xfac9d123 usb_gadget_deactivate +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xfe9ab4f2 usb_gadget_unmap_request +EXPORT_SYMBOL_GPL drivers/usb/host/xhci-pci-renesas 0x3e700a12 renesas_xhci_check_request_fw +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x70cb11b9 ezusb_fx1_set_reset +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x9ccb687e ezusb_fx1_ihex_firmware_download +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x16df81db usb_ftdi_elan_edset_single +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x32da5b92 usb_ftdi_elan_edset_flush +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x424ed6c4 ftdi_elan_gone_away +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x65b92bb3 usb_ftdi_elan_edset_output +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x74a60881 usb_ftdi_elan_edset_setup +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x8e0219a2 usb_ftdi_elan_edset_input +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x9b23f3ae usb_ftdi_elan_edset_empty +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xaeaed2e8 usb_ftdi_elan_read_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xce7e857b 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 0x1cbc1cc3 musb_root_disconnect +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x171c994c musb_interrupt EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x2734197f musb_readb -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x4a7eac04 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 0xa2ef26b4 musb_set_host +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x7febfd1f musb_root_disconnect +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x883dfdd2 musb_set_host +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xa656c60b musb_set_peripheral EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xade3e56c musb_writew -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xd34d187a musb_set_peripheral +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xc31efa44 musb_get_mode +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xe18677f9 musb_queue_resume_work 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 0x0eef73ce usb_phy_generic_register -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x608cdfb0 usb_gen_phy_shutdown -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x6c5976cb usb_gen_phy_init -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x7dd9bc1d usb_phy_generic_unregister -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0xe1069b0d usb_phy_gen_create_phy -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-isp1301 0xa1ec2ab6 isp1301_get_client -EXPORT_SYMBOL_GPL drivers/usb/serial/usb_wwan 0xaab0516f usb_wwan_port_probe -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x10d53808 usb_serial_generic_chars_in_buffer -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x15866ec3 usb_serial_handle_dcd_change -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x1a7a274e usb_serial_generic_write_bulk_callback -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x1a842fcb usb_serial_deregister_drivers -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x3fc47a14 usb_serial_register_drivers -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x4bd84143 usb_serial_generic_open -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x50cf52c5 usb_serial_claim_interface -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x578f0fd1 usb_serial_generic_resume -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x73eb7656 usb_serial_generic_submit_read_urbs -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x77c86737 usb_serial_generic_get_icount -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x78fb2d5d usb_serial_generic_write_start -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x7afffd6f usb_serial_generic_wait_until_sent -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x8bba3e1d usb_serial_generic_throttle -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x9077675f usb_serial_generic_write -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xa90b758f usb_serial_port_softint -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xc79dbeaa usb_serial_generic_close -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xc8103521 usb_serial_generic_process_read_urb -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xd7ad9f39 usb_serial_generic_tiocmiwait -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xeab9f0e2 usb_serial_generic_read_bulk_callback -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xf4024490 usb_serial_generic_unthrottle -EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0x347341c4 dp_altmode_probe -EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0xebfb7963 dp_altmode_remove -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0x048b6465 tcpci_register_port +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x60c2e725 usb_gen_phy_init +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x9af10a07 usb_phy_generic_unregister +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x9e8da7f5 usb_gen_phy_shutdown +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0xb77490f0 usb_phy_generic_register +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0xe3c77cc5 usb_phy_gen_create_phy +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-isp1301 0xa8c63261 isp1301_get_client +EXPORT_SYMBOL_GPL drivers/usb/serial/usb_wwan 0xa48947de usb_wwan_port_probe +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x05784b0e usb_serial_generic_get_icount +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x0c711229 usb_serial_generic_submit_read_urbs +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x152ceeda usb_serial_handle_dcd_change +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x1fb863c1 usb_serial_generic_tiocmiwait +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x2e7a1183 usb_serial_port_softint +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x45c9311b usb_serial_generic_chars_in_buffer +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x563c8f01 usb_serial_generic_write_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x5cdf07ef usb_serial_deregister_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x5ea5504b usb_serial_generic_read_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x6bd94910 usb_serial_generic_write_start +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x773cf5fa usb_serial_generic_unthrottle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x7f793f98 usb_serial_generic_open +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x8d6f39ac usb_serial_generic_write +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x9ae96f87 usb_serial_generic_resume +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xb632b81c usb_serial_generic_process_read_urb +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xb6dc3b67 usb_serial_register_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xc10c6ef4 usb_serial_generic_wait_until_sent +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xdc60224b usb_serial_generic_close +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xdcdf8090 usb_serial_claim_interface +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xde13514a usb_serial_generic_throttle +EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0x86560cb2 dp_altmode_remove +EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0xf30ba377 dp_altmode_probe +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0x1f268f28 tcpci_register_port EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0x6f497a3c tcpci_irq EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0xbe111953 tcpci_get_tcpm_port EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0xc529e32e tcpci_unregister_port -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x00db31dc tcpm_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 @@ -17025,149 +17070,150 @@ 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 0x07780eb5 typec_switch_register -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x0dc7a8a0 typec_get_orientation -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x17155774 typec_switch_set -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x18398f71 typec_set_data_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x1bffcec4 typec_partner_set_identity -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x21f87e91 typec_mux_get_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x24dbc31b typec_plug_register_altmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2681cd9d typec_partner_register_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xf6fe58b3 tcpm_register_port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x0277c437 typec_altmode_update_active +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x0a1523f6 typec_set_pwr_opmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x0ce3eb28 typec_cable_is_active +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x138fb483 typec_altmode_exit +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x1530d607 typec_unregister_partner +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x16c2fb3c typec_partner_set_svdm_version +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x1993d2c1 typec_register_cable +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x19ca52e6 typec_set_data_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x22662a25 typec_unregister_port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x22d962d3 typec_get_negotiated_svdm_version +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x269b665e typec_register_partner +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x27651bd8 typec_altmode_vdm +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x27eaa413 typec_unregister_cable +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x293169ff typec_set_vconn_role EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2d1e301d typec_find_power_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2dc131d4 typec_mux_put -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2eb293cb typec_link_port -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x32fe76ed typec_altmode_exit -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x3451e7df typec_cable_is_active -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x3ce77806 typec_set_mode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x44a4ede2 typec_unregister_partner -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x45da106a typec_get_negotiated_svdm_version -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x46de6282 typec_cable_put -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x49937a09 typec_altmode_unregister_driver -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x4af80391 typec_switch_get_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x4e29eb27 typec_port_register_altmodes -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x4e5bb14d typec_mux_unregister -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x4e77cea6 typec_unregister_altmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x50260623 typec_altmode_vdm -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x571a3ff6 typec_unregister_plug -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x61147d92 typec_cable_set_identity -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x63dcc8db __typec_altmode_register_driver -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x68df5116 typec_port_register_altmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6d074915 typec_partner_set_svdm_version -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x734a7418 typec_altmode_update_active -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x847e0383 fwnode_typec_switch_get +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2d3e5377 typec_cable_set_identity +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2ea04c47 fwnode_typec_switch_get +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x306b3063 fwnode_typec_mux_get +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x31edb5d0 typec_cable_get +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x3758482b typec_unregister_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x4bcd068a typec_altmode_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x4d619dc9 typec_mux_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x4dd1fc00 typec_set_pwr_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x54b10181 typec_switch_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x57806023 typec_altmode_enter +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5c2ac8b4 typec_altmode_notify +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x66225b1b typec_link_port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x669be2b1 typec_get_orientation +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x67c58496 typec_altmode_put_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6bff8003 typec_mux_put +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6d3384c7 typec_switch_set_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7a8bdf8e typec_switch_register +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x88909a83 typec_set_orientation +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x8b9a96a7 __typec_altmode_register_driver EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9049491e typec_find_port_data_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x90b7b785 typec_partner_set_num_altmodes -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x94da74e4 typec_set_pwr_opmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x992d260e typec_match_altmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9c6a567a typec_altmode_attention -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9d1b5e5d typec_mux_register +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9b826a72 typec_plug_register_altmode EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa254de98 typec_find_orientation -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa2d5940c typec_altmode_get_plug -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa4b93dfa typec_switch_unregister -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xac6a4dc6 typec_altmode_put_plug -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xade341c9 typec_register_cable -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb06fd8ea typec_mux_set_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb2d8df71 typec_cable_get -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb64dee6b typec_altmode_notify -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xba9f12e3 typec_unlink_port -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xbb6836a1 typec_set_orientation -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xbf2df6be typec_register_partner -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc070d8eb typec_altmode_enter -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc3505b8c typec_register_port -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc8eec2a4 typec_altmode_get_partner -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc9074040 typec_unregister_port -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xcc637630 typec_mux_set -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xdbcce893 typec_plug_set_num_altmodes -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xdcbb6f66 typec_altmode2port -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe0fdf80e typec_set_vconn_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe173ac45 typec_partner_set_pd_revision -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe2d7b773 typec_register_plug -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe89d987b typec_switch_set_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa5f7fd22 typec_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa749c4f8 typec_port_register_altmodes +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xaaa73c90 typec_partner_set_pd_revision +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xaaf343d3 typec_switch_set +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xaca5d24e typec_unregister_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb0ea43d0 typec_port_register_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb39d3978 typec_switch_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xbcf00423 typec_altmode2port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc29d21f1 typec_set_mode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc9f6cdf2 typec_altmode_get_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xca3775bd typec_unlink_port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd50e5bff typec_mux_set +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd7ebd1e7 typec_register_port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd82175f6 typec_switch_put +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xdb02bfa0 typec_plug_set_num_altmodes +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xdb408bba typec_partner_set_num_altmodes +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe0fb70e8 typec_register_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe101bc22 typec_partner_set_identity +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe702d594 typec_partner_register_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe97c6c29 typec_cable_put +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xea343fc4 typec_mux_set_drvdata EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xeafc1eb8 typec_find_port_power_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xed541c3c fwnode_typec_mux_get +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf0aa2a32 typec_altmode_attention EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf1234a8b typec_find_pwr_opmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf688ad23 typec_set_pwr_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf6cdbc85 typec_switch_put -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xfe22772b typec_get_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xffc6e252 typec_unregister_cable -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x0b01c71e ucsi_set_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x226c7fcd ucsi_connector_change -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x249216eb ucsi_create -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x3e3c6d15 ucsi_register -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x6c823dab ucsi_get_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xafbf52c8 ucsi_unregister -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xb5720fb7 ucsi_resume -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xc8534dab ucsi_destroy -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xec619b2b ucsi_send_command -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x0a306f98 usbip_recv -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x23e4839e usbip_alloc_iso_desc_pdu -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x317ba925 usbip_dump_urb -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x348c444c usbip_event_add -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x5fde4b78 usbip_start_eh -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x6717798e dev_attr_usbip_debug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf318adad typec_mux_register +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf5c5f984 typec_altmode_get_partner +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xfed92e07 typec_mux_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xffc1e9ae typec_match_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x304c7619 ucsi_send_command +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x49fc55a2 ucsi_connector_change +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x514d42e8 ucsi_set_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x59e4e2e2 ucsi_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x5b1c1139 ucsi_destroy +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xa8ac8977 ucsi_register +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xc94707f9 ucsi_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xe5ee1ebf ucsi_resume +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xf4542376 ucsi_create +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x1d10b465 usbip_pad_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x2c1a38b9 usbip_recv_xbuff +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x753034d8 usbip_start_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x75bd87d5 usbip_in_eh EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x78b72f44 usbip_debug_flag -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x7d5b254e usbip_stop_eh -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x8906643a usbip_recv_iso -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x9a17803b usbip_recv_xbuff -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xa7937945 usbip_pack_pdu -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xacf0d5f0 usbip_event_happened -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xae87e5db usbip_pad_iso -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xbafcc4bb usbip_in_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x9578b48d dev_attr_usbip_debug +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xb1395b63 usbip_pack_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xb749643d usbip_event_happened +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xc64a7362 usbip_dump_urb EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd02753dc usbip_header_correct_endian +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd59453d5 usbip_recv_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd9b339c5 usbip_alloc_iso_desc_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xdf1005ab usbip_recv +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe0ea99d0 usbip_event_add EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe1ea0586 usbip_dump_header -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x2f7e860b _vdpa_unregister_device -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x322e9dca _vdpa_register_device -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x374a6f27 __vdpa_alloc_device -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x6d24be37 __vdpa_register_driver -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x9d191cdb vdpa_unregister_driver -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xa46f491d vdpa_unregister_device -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xa7b67395 vdpa_mgmtdev_unregister -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xf129fa1c vdpa_register_device -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xffed9a99 vdpa_mgmtdev_register -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa_sim/vdpa_sim 0x631bf1e3 vdpasim_create -EXPORT_SYMBOL_GPL drivers/vfio/mdev/mdev 0xcc97c7ac mdev_bus_type -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x01a121a1 vhost_poll_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x046d5f41 vhost_add_used_and_signal_n -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0a9c2546 vhost_dev_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0c31da5b vhost_signal -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x15fb31a7 vhost_log_write -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x29d0b73e vhost_enqueue_msg -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2e4c02cd vhost_vring_ioctl -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x36927240 vhost_new_msg -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x36993bfe vhost_has_work -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x37bc0d38 vhost_dequeue_msg -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x38c2e87d vhost_log_access_ok -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3cbd5040 vhost_vq_init_access -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x46c2200b vhost_vq_avail_empty -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4d69ce44 vhost_dev_ioctl -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4f72bef6 vhost_work_queue -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x529ebe8a vhost_discard_vq_desc -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5e0133e7 vhost_add_used_n -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x627ef92a vhost_add_used_and_signal -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6b784b56 vhost_poll_start -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8797cb50 vhost_exceeds_weight -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x90d3004e vhost_add_used -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x91da9e3a vhost_poll_queue -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x947cc25e vq_meta_prefetch -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9b8f5643 vhost_chr_read_iter -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9f42715a vhost_init_device_iotlb -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9faaf67b vhost_set_backend_features -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa3ab9677 vhost_dev_cleanup -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa4b72de9 vhost_poll_stop -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa8ae132d vhost_work_dev_flush +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xf70b5788 usbip_stop_eh +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x205da532 __vdpa_register_driver +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x36cc9dad vdpa_register_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x4e0d8e5a _vdpa_register_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x60353aa0 vdpa_unregister_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xb031b442 vdpa_unregister_driver +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xb469d920 _vdpa_unregister_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xe269755d vdpa_mgmtdev_register +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xe27dd696 __vdpa_alloc_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xfce2e5d5 vdpa_mgmtdev_unregister +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa_sim/vdpa_sim 0x475cf2ce vdpasim_create +EXPORT_SYMBOL_GPL drivers/vfio/mdev/mdev 0xe17792c6 mdev_bus_type +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x06188b3b vhost_dev_cleanup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0829d65a vhost_dev_has_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0a11bf8b vhost_dev_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0e20f4ac vhost_exceeds_weight +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1ee43ab3 vhost_work_dev_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x21dddf4d vhost_log_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x30f1133f vhost_vq_init_access +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x35d04ccb vhost_new_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3ec1962d vhost_dev_set_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x42095f7e vhost_dev_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x44567a9c vhost_poll_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x47583166 vhost_poll_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x47e76ded vhost_poll_start +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4beada0a vhost_vq_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x526b994d vhost_dev_check_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x54c2dc30 vhost_vq_is_setup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x569c7df4 vhost_vring_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5d9d85ee vhost_set_backend_features +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x60523198 vhost_dev_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x62ad7167 vhost_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x702f1a9e vhost_work_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7729bd7d vhost_has_work +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8c5d2812 vq_meta_prefetch +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8cae2b6e vhost_enqueue_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x94b0c5d5 vhost_poll_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x96d161c4 vhost_get_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa417c6d4 vhost_dev_reset_owner EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa909cfc5 vhost_work_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xaa046cf4 vhost_disable_notify -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xabfe4dbf vhost_enable_notify -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xad581be6 vhost_vq_is_setup -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb0f56b04 vhost_poll_flush -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb6574290 vhost_dev_set_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xbae27b90 vhost_dev_check_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xbfad049f vhost_dev_reset_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc96a5e98 vhost_dev_has_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc9c63bcd vhost_vq_access_ok -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xea68a06e vhost_dev_stop -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xee56edb2 vhost_get_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb17cab78 vhost_disable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb1923324 vhost_discard_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xbeac13a8 vhost_add_used +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xbf542ae7 vhost_add_used_and_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc518def6 vhost_poll_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xcbfe1a9e vhost_chr_read_iter +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xcd8d7d8f vhost_log_write +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd0a651a1 vhost_add_used_and_signal_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd28c1ca6 vhost_add_used_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xdf7f4238 vhost_init_device_iotlb +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe2bd64fd vhost_enable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe81469bb vhost_dequeue_msg EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfd2b3e45 vhost_dev_reset_owner_prepare +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfe9cdcf3 vhost_vq_avail_empty 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 @@ -17179,431 +17225,430 @@ 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 0x1002d74d ili9320_shutdown -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x35d1b023 ili9320_probe_spi -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x5d3b1871 ili9320_write_regs -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x60cd5a93 ili9320_write -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x6eadff43 ili9320_resume -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x96ca4cae ili9320_suspend -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xbfefef3f ili9320_remove -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0x673a4055 fb_ddc_read -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x4604dfe2 fb_sys_write -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x7a2f913a fb_sys_read -EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x4bfe5f9a sis_free_new -EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0xc0897851 sis_malloc_new +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x0f29d593 ili9320_probe_spi +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x2b28184f ili9320_write +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x3f364b7f ili9320_suspend +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x8eec35c7 ili9320_resume +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xa579234d ili9320_remove +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xf0ce178d ili9320_write_regs +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xfde2bb37 ili9320_shutdown +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0x4036bbda fb_ddc_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x4e6dedd5 fb_sys_write +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x9f12f7ac fb_sys_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x2a761bd4 sis_free_new +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0xc3d2d239 sis_malloc_new EXPORT_SYMBOL_GPL drivers/video/fbdev/vermilion/vmlfb 0x016e6c20 vmlfb_unregister_subsys EXPORT_SYMBOL_GPL drivers/video/fbdev/vermilion/vmlfb 0x90c018c6 vmlfb_register_subsys EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0x0e1cee08 viafb_dma_copy_out_sg 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 0x90279dfe 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 0xd9f1e46e viafb_find_i2c_adapter EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0xfff2dfd2 viafb_gpio_lookup EXPORT_SYMBOL_GPL drivers/visorbus/visorbus 0x0e338292 visorchannel_signalempty -EXPORT_SYMBOL_GPL drivers/visorbus/visorbus 0x14fa398e visorbus_read_channel -EXPORT_SYMBOL_GPL drivers/visorbus/visorbus 0x28826c4f visorbus_unregister_visor_driver +EXPORT_SYMBOL_GPL drivers/visorbus/visorbus 0x1e26dbb0 visorbus_read_channel +EXPORT_SYMBOL_GPL drivers/visorbus/visorbus 0x33c89256 visorbus_disable_channel_interrupts EXPORT_SYMBOL_GPL drivers/visorbus/visorbus 0x4de03230 visorchannel_signalinsert EXPORT_SYMBOL_GPL drivers/visorbus/visorbus 0x56401853 visorchannel_signalremove -EXPORT_SYMBOL_GPL drivers/visorbus/visorbus 0x60b5cd40 visorbus_register_visor_driver -EXPORT_SYMBOL_GPL drivers/visorbus/visorbus 0x733bfb42 visorbus_enable_channel_interrupts -EXPORT_SYMBOL_GPL drivers/visorbus/visorbus 0x89805347 visorbus_disable_channel_interrupts +EXPORT_SYMBOL_GPL drivers/visorbus/visorbus 0x6f17cb98 visorbus_write_channel +EXPORT_SYMBOL_GPL drivers/visorbus/visorbus 0x9e383f76 visorbus_register_visor_driver +EXPORT_SYMBOL_GPL drivers/visorbus/visorbus 0xaaf6189f visorbus_unregister_visor_driver EXPORT_SYMBOL_GPL drivers/visorbus/visorbus 0xc455c651 visorchannel_get_guid -EXPORT_SYMBOL_GPL drivers/visorbus/visorbus 0xce09ffb5 visorbus_write_channel -EXPORT_SYMBOL_GPL drivers/w1/wire 0x136c627b w1_reset_resume_command -EXPORT_SYMBOL_GPL drivers/w1/wire 0x2e6dd746 w1_write_block -EXPORT_SYMBOL_GPL drivers/w1/wire 0x35610551 w1_reset_bus -EXPORT_SYMBOL_GPL drivers/w1/wire 0x5e51b769 w1_write_8 +EXPORT_SYMBOL_GPL drivers/visorbus/visorbus 0xd34a898c visorbus_enable_channel_interrupts +EXPORT_SYMBOL_GPL drivers/w1/wire 0x0354c628 w1_read_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x23c88f87 w1_triplet +EXPORT_SYMBOL_GPL drivers/w1/wire 0x60f7a8e6 w1_write_block EXPORT_SYMBOL_GPL drivers/w1/wire 0x63757e92 w1_calc_crc8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0x6c89b702 w1_read_block -EXPORT_SYMBOL_GPL drivers/w1/wire 0x81bff1ee w1_touch_bit -EXPORT_SYMBOL_GPL drivers/w1/wire 0xa9b2d1bd w1_next_pullup -EXPORT_SYMBOL_GPL drivers/w1/wire 0xd7db6659 w1_read_8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0xdff90772 w1_reset_select_slave -EXPORT_SYMBOL_GPL drivers/w1/wire 0xecb5e0d2 w1_touch_block -EXPORT_SYMBOL_GPL drivers/w1/wire 0xf71e9647 w1_triplet -EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x0ad892c5 xen_front_pgdir_shbuf_unmap -EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x20034211 xen_front_pgdir_shbuf_map -EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x95903fb0 xen_front_pgdir_shbuf_alloc -EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0xb0348938 xen_front_pgdir_shbuf_free -EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0xc668412b xen_front_pgdir_shbuf_get_dir_start -EXPORT_SYMBOL_GPL drivers/xen/xen-privcmd 0x204552a7 xen_privcmdbuf_fops -EXPORT_SYMBOL_GPL drivers/xen/xen-privcmd 0xad231157 xen_privcmd_fops -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x1e9b9546 dlm_posix_lock +EXPORT_SYMBOL_GPL drivers/w1/wire 0x85fd9906 w1_reset_bus +EXPORT_SYMBOL_GPL drivers/w1/wire 0x86e2c90c w1_read_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x9971c4d1 w1_touch_bit +EXPORT_SYMBOL_GPL drivers/w1/wire 0xa64a3f40 w1_write_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0xc3797175 w1_next_pullup +EXPORT_SYMBOL_GPL drivers/w1/wire 0xd6ebcd2a w1_touch_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0xdc52a948 w1_reset_select_slave +EXPORT_SYMBOL_GPL drivers/w1/wire 0xf139faf6 w1_reset_resume_command +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x189db76d xen_front_pgdir_shbuf_unmap +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x5cf86466 xen_front_pgdir_shbuf_get_dir_start +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x66993999 xen_front_pgdir_shbuf_map +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x85febe3e xen_front_pgdir_shbuf_free +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0xed55ca92 xen_front_pgdir_shbuf_alloc +EXPORT_SYMBOL_GPL drivers/xen/xen-privcmd 0xbc0b3356 xen_privcmdbuf_fops +EXPORT_SYMBOL_GPL drivers/xen/xen-privcmd 0xc859f3e4 xen_privcmd_fops EXPORT_SYMBOL_GPL fs/dlm/dlm 0x4b62826c dlm_unlock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x5b160724 dlm_posix_lock EXPORT_SYMBOL_GPL fs/dlm/dlm 0x647d6170 dlm_lock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x90625f1a dlm_posix_get +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x654fa48b dlm_posix_get +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x8c867ccd dlm_posix_unlock EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcd224e1d dlm_new_lockspace EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcf9f3328 dlm_release_lockspace -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xdf4a43b6 dlm_posix_unlock EXPORT_SYMBOL_GPL fs/fscache/fscache 0x092cf98e fscache_object_sleep_till_congested -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x11122555 nlmclnt_proc -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x48b6dc96 lockd_up -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x6e164231 lockd_down +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x0167e44e nlmsvc_ops +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x4c8fd64e lockd_down +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x69f9eec1 nlmclnt_done EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77e35ccc nlmsvc_unlock_all_by_ip -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x85ee8793 nlmsvc_unlock_all_by_sb -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xcda53660 nlmclnt_done -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xdba08a06 nlmclnt_init -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xfb50d9b9 nlmsvc_ops -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0023def5 nfs_commit_free +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x9d3799e3 lockd_up +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xa527b236 nlmsvc_unlock_all_by_sb +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xb5303a8a nlmclnt_proc +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xca0516fe nlmclnt_init EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0294c6a2 nfs_callback_nr_threads -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x04acc587 nfs_set_cache_invalid -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x04f77d41 nfs_sb_deactive -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x06f13e7b nfs_getattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x098179b3 nfs_commitdata_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0a23306b alloc_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0ef05281 __traceiter_nfs_fsync_enter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0ef17f55 nfs_reconfigure -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0f85d317 unregister_nfs_version -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0fd5769d nfs_fhget +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x039bdb4e __SCK__tp_func_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x03d87727 nfs_lock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0951b226 nfs_flock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0b8e63ff nfs_setattr_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0e616466 __SCK__tp_func_nfs_xdr_bad_filehandle EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10962bc2 nfs_auth_info_match -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x12d27d06 nfs_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10d72bec nfs_put_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x125dc1ff __traceiter_nfs_xdr_bad_filehandle EXPORT_SYMBOL_GPL fs/nfs/nfs 0x14feb109 nfs_access_set_mask -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x16a0fb83 nfs_filemap_write_and_wait_range -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1dbd08fd nfs_pgio_header_free -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1e02ebac nfs_show_devname -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x21b8e840 nfs_link +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x17dbd8eb nfs_initiate_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x191c7966 register_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x194cc863 nfs_create +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1a1b3595 nfs4_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1f350a9f nfs_request_remove_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1fa6a220 nfs_async_iocounter_wait +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x21bb224c nfs_mark_client_ready +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x22830072 nfs_wb_all EXPORT_SYMBOL_GPL fs/nfs/nfs 0x22d795a8 _nfs_display_fhandle_hash -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x264c6b33 nfs_fscache_open_file -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x266dd6ea nfs_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x239f0630 nfs_client_init_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x243ce2a1 nfs_clone_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26863183 nfs_init_commit EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2821236a nfs_free_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x28422fcd __tracepoint_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2856cf50 nfs_mark_client_ready -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x28b79279 nfs_init_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2e0b40b2 nfs_rename -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2e830463 __SCK__tp_func_nfs_xdr_bad_filehandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2f79e01f nfs_clone_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x30b69490 nfs_wb_all -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x33f6627a nfs_generic_pg_test -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x351c2b3f __tracepoint_nfs_xdr_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x272abba3 __tracepoint_nfs_xdr_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x28b9e909 nfs_rename +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2b2f461b nfs_zap_acl_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2c02a45e nfs_pgio_header_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2ca957cc nfs_get_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2d80c169 __tracepoint_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2e7da045 nfs_fhget +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2f6ffbfe nfs_release_request +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2fb5b076 nfs_pageio_reset_read_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2fe281e1 nfs_free_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x32eacd13 nfs_force_lookup_revalidate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x32fefdb9 nfs_post_op_update_inode_force_wcc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x35495c87 nfs_file_set_open_context EXPORT_SYMBOL_GPL fs/nfs/nfs 0x37239e6d __SCT__tp_func_nfs_xdr_bad_filehandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x397bcce0 nfs_client_init_status EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3e1f8ff8 nfs_try_get_tree +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3a74bf51 __tracepoint_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3c65edd8 nfs_drop_inode EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f2690f2 nfs_check_flags -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f3f801d nfs_pageio_reset_write_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3fc3267d nfs_access_get_cached EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40739385 nfs_wait_bit_killable -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x413173b0 nfs_do_submount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x41857d07 nfs_setsecurity -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x41e94d3d nfs_pageio_reset_read_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x423e9d82 nfs_get_client EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f2c81f nfs4_client_id_uniquifier -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x445f9fd6 nfs_server_remove_lists -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x448e66cd nfs_invalidate_atime -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x46ad37b3 nfs_mknod -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x47be332e nfs_clear_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4856d5c7 nfs_create_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x48d8988b nfs4_dentry_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4af94c53 nfs_kill_super -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4bbaf93c nfs_file_llseek -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4c697b3c nfs_check_cache_invalid +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x43bbd0ee nfs_retry_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x43cac81d nfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4620a09a nfs_init_cinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x46625360 nfs_pageio_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4c009937 nfs_commit_inode EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4dc9376a nfs_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4e83071c nfs_sops +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4eb02bb7 nfs_file_llseek +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5083e055 nfs_path EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x54511e85 nfs_sops -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x55de4cb4 nfs_show_stats -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x56f1e9dd nfs_umount_begin +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x519bfaaa nfs_probe_fsinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x524258e0 nfs_set_verifier +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5257ef04 nfs_unlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5450d3ae nfs_refresh_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x549c109b nfs_setattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x552df733 nfs_client_init_is_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x561c9408 nfs_mkdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x56f9ada8 nfs_reconfigure +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x57f32340 nfs_generic_pgio EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584b8482 nfs_inc_attr_generation_counter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5895e06a nfs_set_verifier -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5b44a21f nfs_free_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5ba1a3ed nfs_commit_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5ccc646d nfs_commitdata_release -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5d2cb75d nfs_pageio_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5ebc5f28 nfs_setattr_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x60cb9e73 nfs_access_zap_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x639abaa8 __traceiter_nfs_xdr_bad_filehandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x675fadd6 nfs_put_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6a79942b nfs_atomic_open -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6bff435f nfs_pgheader_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6cceadbf nfs_init_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6de5c36a nfs_add_or_obtain -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6e15d033 __SCK__tp_func_nfs_fsync_enter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x70c52f9e nfs_get_lock_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x72bcd6db nfs_lookup -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x74b1b1c2 nfs_statfs -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x75ea9c97 nfs_revalidate_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x762ef281 nfs_pgio_header_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x77d84a3c nfs_rmdir -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x783552ce nfs_post_op_update_inode_force_wcc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x784c7f02 nfs_free_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x790d5965 __traceiter_nfs_xdr_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7b8d81cb nfs_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x59ebd562 nfs_show_stats +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5d2d8174 nfs_commitdata_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5dbed55d alloc_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6245b246 nfs_file_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x626bcd61 nfs_client_for_each_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x65302ceb nfs_set_cache_invalid +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x65505687 nfs_initiate_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x670ea67e nfs_alloc_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6b5c0352 nfs_file_mmap +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6bcc0014 nfs_add_or_obtain +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6dd367c9 nfs_alloc_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6f885a14 nfs_commit_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x73c353cf nfs_free_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7459991b nfs_pageio_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x74b9ed66 nfs_check_cache_invalid +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x74c0ebe9 nfs_pageio_reset_write_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7573035d nfs_link +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7649def6 nfs_alloc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x768372e5 nfs_symlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x76b2c1e4 nfs_show_devname +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x78b7f137 nfs_access_zap_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7974462c nfs_create_rpc_client EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7c9722ba nfs_dreq_bytes_left -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7d83dedb nfs_close_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7daba297 nfs_writeback_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7df1dc06 nfs_alloc_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7f60b130 nfs_access_get_cached +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x800fcbc6 nfs_atomic_open EXPORT_SYMBOL_GPL fs/nfs/nfs 0x832e8f0b nfs_alloc_fattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8461bf52 __traceiter_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x860f4c22 nfs_client_for_each_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x89de09ec nfs_probe_fsinfo -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8a767010 nfs_client_init_is_complete -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8a78ef13 nfs_generic_pgio -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8ca3d6a8 nfs_symlink -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8d02b21d nfs_file_mmap -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8fcda52b nfs_force_lookup_revalidate -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x903f59cd nfs_sync_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9063e924 nfs_scan_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x834a5b43 nfs_access_add_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x84d0bcc2 nfs_init_server_rpcclient +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x883d1dde __SCK__tp_func_nfs_xdr_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x894471dd nfs4_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8a1853ab nfs_request_add_commit_list EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90a5530f nfsiod_workqueue +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9128fb2d nfs_fscache_open_file +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91951aba nfs_inode_attach_open_context EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91d1fe52 max_session_slots -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x97534fea nfs_create +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x922fcb96 nfs_create_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x933b1cb1 nfs_show_options +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x93bd3aee nfs_instantiate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9563192c __SCK__tp_func_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x97618fd8 nfs_invalidate_atime +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x98317f58 nfs_may_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9895e889 nfs_wait_on_request EXPORT_SYMBOL_GPL fs/nfs/nfs 0x98b0ece8 nfs_init_timeout_values -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x993cb143 nfs_request_add_commit_list_locked -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9952ac17 put_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x99838b9f nfs_get_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9bd61e46 nfs_file_set_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9d432a2b nfs_file_fsync +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x98d06aae put_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x98d569b4 nfs_server_copy_userdata +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x995f5396 nfs_file_fsync +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x997e2d5b nfs_writeback_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9a5b2ced nfs_close_context EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9d919c44 __SCT__tp_func_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9dc3779b nfs_alloc_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9f85b10d nfs_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa0011a49 nfs_clear_inode EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa05ca625 nfs_fattr_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa4c13f6e nfs_write_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa89aff04 nfs_refresh_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e5ccac nfs_server_insert_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa6007089 nfs_revalidate_inode EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e9e1ae send_implementation_id -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa92b3bfb nfs_init_server_rpcclient +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaa3c76dc nfs_server_insert_lists EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaafd4acc max_session_cb_slots -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xac519ee2 nfs_wait_client_init_complete -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xac8feb59 nfs_retry_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xae0fcbc7 __tracepoint_nfs_xdr_bad_filehandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb1437133 register_nfs_version -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb1d6fbbb nfs_instantiate -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb420fc6e nfs_request_add_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb4ea5f47 nfs_flock -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb57a28ed nfs_permission -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb613d365 nfs_init_cinfo -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb6d57220 nfs_show_options -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb8555792 nfs_file_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbc40641e nfs_put_lock_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbcb0cadd nfs_release_request -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc0024aa2 nfs_inode_attach_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc21c6f9a nfs_file_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc2b49767 nfs_file_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaf198c88 nfs_scan_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaf706ae1 nfs_pageio_resend +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb002fa35 nfs_post_op_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb017b2eb nfs_sync_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb0e1bbaf nfs_sb_active +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb1ff2d08 nfs_wait_client_init_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb2b3d347 nfs_pgheader_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb3290fc8 nfs_getattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb67dc5fb nfs_file_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb8900ced nfs_filemap_write_and_wait_range +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbb5cd5e1 nfs_pgio_current_mirror +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbd57222b nfs_statfs +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc1f541be nfs_lookup EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3a2be67 nfs_net_id -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc4cf9f0b nfs_setattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc56ba9f3 nfs_wait_on_request -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc68c8f39 __SCK__tp_func_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc7abf2c0 nfs_request_remove_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xca9241ca nfs_async_iocounter_wait -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xceed75fe nfs_create_rpc_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd0e10697 nfs_sb_active -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd42b2896 __tracepoint_nfs_fsync_enter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd5560496 nfs_mkdir -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd9038a73 nfs_drop_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd95f70ef nfs_initiate_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3ec7648 nfs4_label_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3f4a38f nfs_umount_begin +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc6208a5f nfs_pgio_header_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xca614f72 nfs_sb_deactive +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd121da19 nfs_free_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd151b85c nfs_show_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd8612634 nfs_commitdata_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd89f01a5 nfs_setsecurity EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdbcb6064 nfs_clear_verifier_delegated -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdbd28bcb __SCK__tp_func_nfs_xdr_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdd124c16 nfs_file_write -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xde56138e nfs4_label_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe09ea512 nfs_show_path -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe112d67c nfs_access_add_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe506626c nfs_server_copy_userdata -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe55c406c get_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe611b194 nfs_unlink -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe6861fd9 nfs_dentry_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe8def9b1 nfs4_fs_type -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe97686c9 nfs_open -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xed9b07d8 nfs_may_open -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xee5ce64e nfs_alloc_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xef3781ba nfs_pgio_current_mirror -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf06a241c nfs_pageio_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf3325901 nfs_lock -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf38cef74 nfs_zap_acl_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf3c85f15 nfs_pageio_resend -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf539933d nfs_initiate_pgio -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf6181133 nfs_post_op_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdb5827e1 nfs_clear_verifier_delegated +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdbb05c35 nfs_write_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdd750e2c nfs_file_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdd7c8581 nfs_mknod +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xde4fc6f4 get_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe0959c4f __traceiter_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe3a5c2d8 nfs_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe3e3626b nfs_kill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe7dfc7f0 nfs_init_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xec9f952c __traceiter_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xee028729 nfs_do_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xef8e7af6 nfs_put_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf07854ce unregister_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf080db83 nfs_permission +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf1eb3c17 __tracepoint_nfs_xdr_bad_filehandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf4596e06 nfs_request_add_commit_list_locked +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf55ac576 nfs_server_remove_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf58a18e0 nfs_file_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf9427051 __traceiter_nfs_xdr_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf9c3d1c1 nfs_rmdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc239f60 nfs_try_get_tree EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc619abd _nfs_display_fhandle 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 0x53bcfc44 nfs3_set_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x022eded4 nfs4_mark_deviceid_unavailable -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x038ab1e2 nfs4_pnfs_ds_put +EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0xf39e9084 nfs3_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x00d625c4 pnfs_generic_clear_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x02cc3d74 pnfs_generic_pg_readpages EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x056c2e80 nfs4_test_deviceid_unavailable -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0aca1bd8 nfs4_schedule_lease_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0bb36675 nfs4_decode_mp_ds_addr -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0bee9e4a __tracepoint_nfs4_pnfs_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0d5f56fc nfs4_schedule_migration_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1346f436 pnfs_generic_layout_insert_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x07cf1e1a __SCK__tp_func_pnfs_mds_fallback_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x08566e37 pnfs_free_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0ea4149a __SCK__tp_func_pnfs_mds_fallback_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0eb64838 __tracepoint_pnfs_mds_fallback_pg_get_mirror_count +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x101da96f __tracepoint_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x107bd63b pnfs_unregister_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x11ea9f0c pnfs_ld_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x13b37560 __traceiter_nfs4_pnfs_read EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x18e75751 __SCT__tp_func_pnfs_mds_fallback_write_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1ade30e8 __SCK__tp_func_nfs4_pnfs_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1b3edbf3 pnfs_layout_mark_request_commit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1b9e246d pnfs_generic_prepare_to_resend_writes -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x20ae64ab nfs4_proc_getdeviceinfo -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x24a2cc76 pnfs_generic_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x270be9a6 __traceiter_pnfs_mds_fallback_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x28f4966d pnfs_generic_ds_cinfo_release_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x290356e2 pnfs_generic_clear_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x19497c07 nfs4_test_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x19ece71d pnfs_add_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1e73f319 pnfs_generic_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x22051d5c pnfs_generic_write_commit_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x236050bc pnfs_read_resend_pnfs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2836d7e1 nfs4_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x29ab6064 __traceiter_pnfs_mds_fallback_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2a28ae08 __tracepoint_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2ad05509 __tracepoint_pnfs_mds_fallback_read_done EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2b16e909 __SCT__tp_func_nfs4_pnfs_commit_ds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2c9a459a nfs4_setup_sequence -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2f7faf47 __tracepoint_pnfs_mds_fallback_pg_get_mirror_count -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2f8c6ef2 __SCK__tp_func_pnfs_mds_fallback_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x33c51bce __tracepoint_pnfs_mds_fallback_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3525eeb9 __tracepoint_ff_layout_read_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3c8b5785 nfs41_sequence_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3e61b6a8 nfs4_init_ds_session -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3ebbcf7c __traceiter_nfs4_pnfs_commit_ds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x40f8c50b pnfs_generic_pg_cleanup -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x412b3ac9 __SCK__tp_func_nfs4_pnfs_commit_ds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x43294e4d __SCK__tp_func_ff_layout_read_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4642a6e7 pnfs_generic_ds_cinfo_destroy -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x46867508 nfs4_put_deviceid_node -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x46bfd6f7 pnfs_put_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4b028558 pnfs_error_mark_layout_for_return -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x51a6ef43 pnfs_destroy_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x56708b4c __traceiter_pnfs_mds_fallback_pg_get_mirror_count -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x57502f77 pnfs_generic_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5b56d3e0 __traceiter_pnfs_mds_fallback_read_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5cb7027e nfs4_schedule_stateid_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5cfaefe2 pnfs_generic_recover_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2c4625d7 __traceiter_pnfs_mds_fallback_pg_get_mirror_count +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2e635e4e __SCK__tp_func_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2ec059a6 nfs4_schedule_migration_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x36e546b1 nfs4_pnfs_ds_add +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x37bfceae __SCK__tp_func_pnfs_mds_fallback_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x380c8c11 pnfs_generic_recover_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x39541744 pnfs_generic_search_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x398e87d0 nfs_remove_bad_delegation +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3a3fea6b nfs4_pnfs_ds_connect +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3e52d4e3 nfs4_test_session_trunk +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4268949d nfs4_init_ds_session +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x43a05dec nfs4_put_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x46e6ed58 pnfs_generic_pg_writepages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4825f86f pnfs_generic_layout_insert_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4bd65366 __SCK__tp_func_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4f117bda pnfs_read_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x53934ad7 __SCK__tp_func_ff_layout_commit_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x53cad7c6 pnfs_write_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x56c7bbd1 __SCK__tp_func_pnfs_mds_fallback_read_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x579bc972 __SCK__tp_func_ff_layout_read_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5c0bae8d pnfs_put_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5c75a297 __tracepoint_ff_layout_write_error EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6085edbd nfs_map_string_to_numeric +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x62544ec0 nfs4_sequence_done EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x63826d35 __SCT__tp_func_nfs4_pnfs_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x640aab89 pnfs_update_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6746a44b nfs4_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x64d88062 __tracepoint_ff_layout_commit_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x67d6c3b6 __traceiter_ff_layout_read_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x67f61356 pnfs_layoutcommit_inode 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 0x6ba6b485 __tracepoint_pnfs_mds_fallback_read_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7334b4db pnfs_register_layoutdriver -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x73e27fb4 pnfs_generic_pg_check_range -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x77efc1b9 __SCK__tp_func_pnfs_mds_fallback_read_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x789162da __SCK__tp_func_ff_layout_commit_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x79f678c6 __SCK__tp_func_ff_layout_write_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7a235d26 nfs4_find_or_create_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7e129f19 nfs42_proc_layouterror +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6bb7529e pnfs_destroy_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6eaf34c7 pnfs_generic_pg_check_range +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6f06547e pnfs_error_mark_layout_for_return +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x70e14adb nfs4_schedule_session_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7730fbc1 nfs4_init_deviceid_node EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7e42bd3f __SCT__tp_func_ff_layout_read_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x81366075 pnfs_add_commit_array -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x81bcc950 pnfs_set_layoutcommit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x82e635b3 pnfs_generic_pg_writepages -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x873dea27 __tracepoint_pnfs_mds_fallback_write_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8b550974 pnfs_ld_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8d47fe1e __traceiter_ff_layout_commit_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8e254dcb __tracepoint_pnfs_mds_fallback_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x907e0dfc pnfs_generic_pg_readpages -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x913691c1 __SCK__tp_func_nfs4_pnfs_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x91ca5e89 __tracepoint_nfs4_pnfs_commit_ds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x92293f3a nfs4_find_get_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7f76fc31 __traceiter_pnfs_mds_fallback_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8045847a pnfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8060d107 pnfs_generic_prepare_to_resend_writes +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x825a428f pnfs_set_layoutcommit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x862690c9 nfs4_decode_mp_ds_addr +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x86423ddb pnfs_ld_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8ea34667 pnfs_generic_ds_cinfo_release_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8ff0533c __tracepoint_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x90f5a8f7 nfs4_set_rw_stateid EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x930a94fd __SCT__tp_func_pnfs_mds_fallback_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x943ef5ca __traceiter_ff_layout_read_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x95c4efd6 pnfs_generic_scan_commit_lists -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x969293f9 pnfs_report_layoutstat +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x94707418 nfs4_pnfs_ds_put +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x951994d2 __SCK__tp_func_pnfs_mds_fallback_pg_get_mirror_count EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x96c4643f __SCT__tp_func_pnfs_mds_fallback_pg_get_mirror_count -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x98e845f7 __SCK__tp_func_pnfs_mds_fallback_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9c52953e pnfs_generic_pg_check_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9ed54a8d __SCK__tp_func_pnfs_mds_fallback_pg_get_mirror_count -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa00ae081 __traceiter_nfs4_pnfs_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa2c9c710 pnfs_generic_write_commit_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa46f1e6b pnfs_generic_pg_test -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa532593d __tracepoint_pnfs_mds_fallback_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa5726c39 nfs_remove_bad_delegation -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa58ed915 nfs4_mark_deviceid_available -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa78c5423 pnfs_free_commit_array -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa7a2d3f9 __traceiter_ff_layout_write_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa84edfd5 __SCK__tp_func_pnfs_mds_fallback_write_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa9ff63ab __tracepoint_nfs4_pnfs_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xab31139a __SCK__tp_func_pnfs_mds_fallback_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x96cb528f nfs4_mark_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9cd6459e nfs4_delete_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9f70a9db __SCK__tp_func_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa6b691ed nfs4_find_or_create_ds_client EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xadeca730 __SCT__tp_func_nfs4_pnfs_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb27f9988 nfs4_delete_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb2a6cc67 pnfs_set_lo_fail -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb387dddb pnfs_generic_search_commit_reqs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb587c71c nfs4_pnfs_ds_connect -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb7948d6b __traceiter_pnfs_mds_fallback_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb8574c11 pnfs_nfs_generic_sync -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb8681419 pnfs_generic_sync -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb8ca85b3 __traceiter_pnfs_mds_fallback_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb8f64adc pnfs_unregister_layoutdriver -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb93dd9e3 nfs4_test_session_trunk -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb9ec1534 pnfs_layoutcommit_inode -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc3504263 __tracepoint_ff_layout_write_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xae5b72a8 __traceiter_pnfs_mds_fallback_write_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xaf21bfff __tracepoint_ff_layout_read_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb09326a8 nfs41_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb153463a pnfs_layout_mark_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb4c61c36 pnfs_alloc_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb7039209 __tracepoint_pnfs_mds_fallback_write_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb75a4891 __tracepoint_pnfs_mds_fallback_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb842dc21 __tracepoint_pnfs_mds_fallback_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbab40d11 __traceiter_pnfs_mds_fallback_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbc62c85a pnfs_generic_pg_check_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbc8744a8 pnfs_generic_scan_commit_lists +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbe0a8034 pnfs_generic_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbfd91e74 __traceiter_nfs4_pnfs_write EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc361c3c5 __SCT__tp_func_pnfs_mds_fallback_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc8e0ed15 pnfs_generic_commit_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc44ac405 nfs4_schedule_stateid_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc4d52a13 nfs4_mark_deviceid_available +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc6534260 pnfs_generic_commit_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc6df89a0 __traceiter_ff_layout_write_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc99cac56 __traceiter_pnfs_mds_fallback_write_done EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcc21ce5c __SCT__tp_func_ff_layout_commit_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcd757ad5 nfs4_schedule_session_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcf0d2ed3 __traceiter_pnfs_mds_fallback_write_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcf604c82 pnfs_alloc_commit_array -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd1abdf58 nfs4_set_rw_stateid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd5f04c44 pnfs_read_resend_pnfs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdd8ea609 nfs4_init_deviceid_node -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xddd8f4a2 nfs4_set_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xde979387 __tracepoint_ff_layout_commit_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xccff8fb0 nfs4_schedule_lease_moved_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xceca6a8d pnfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcf450df3 __tracepoint_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcf84e77c __SCK__tp_func_ff_layout_write_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd08b1469 nfs4_schedule_lease_recovery EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdeb5edce __SCT__tp_func_pnfs_mds_fallback_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdfe47b40 __traceiter_nfs4_pnfs_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xea4a9469 pnfs_read_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe021736a __tracepoint_pnfs_mds_fallback_read_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe2487d5a nfs4_proc_getdeviceinfo +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe283ed60 pnfs_generic_pg_cleanup +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe2859e7d __traceiter_pnfs_mds_fallback_read_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe52d8dad __traceiter_ff_layout_commit_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe570fd0e __traceiter_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe79d35dd pnfs_register_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe965737b nfs4_find_get_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xeb061ec5 __SCK__tp_func_pnfs_mds_fallback_write_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xebb4b675 pnfs_update_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xec0fa527 pnfs_report_layoutstat EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed15fb41 nfs4_print_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xeda46918 __tracepoint_pnfs_mds_fallback_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xede25e39 pnfs_ld_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xef2d747d __SCK__tp_func_pnfs_mds_fallback_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf13ca4a6 nfs4_schedule_lease_moved_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf0f3a1e1 pnfs_set_lo_fail +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf15c01de pnfs_nfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf2f04ad5 __SCK__tp_func_nfs4_pnfs_commit_ds EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf32fa2b7 __SCT__tp_func_ff_layout_write_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf6dbe0ba pnfs_write_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf3bdd1db nfs42_proc_layouterror +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf54ee352 nfs4_set_ds_client 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 0xf9996ca7 __traceiter_pnfs_mds_fallback_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf9ec1c4d nfs4_pnfs_ds_add +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf9d73846 pnfs_generic_ds_cinfo_destroy EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fe1e1ad locks_end_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x552671d2 opens_in_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xbcd624cf locks_in_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xd30162da locks_start_grace -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x3bbb77c7 nfsacl_encode -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x9b37d982 nfsacl_decode -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xa861f3d6 nfs_stream_decode_acl -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xd09dff4f nfs_stream_encode_acl -EXPORT_SYMBOL_GPL fs/nfsd/nfsd 0x00ea4f67 nfsd4_ssc_init_umount_work -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x15569968 o2hb_setup_callback +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x40d0d6c7 locks_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x565f55fc locks_start_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x6f34ad50 opens_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x031fcc9a nfs_stream_decode_acl +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x296007aa nfsacl_decode +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x55dd2457 nfs_stream_encode_acl +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xa597d660 nfsacl_encode +EXPORT_SYMBOL_GPL fs/nfsd/nfsd 0x877a963d nfsd4_ssc_init_umount_work +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x0240c0fc o2hb_register_callback EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1b89c6ee o2hb_fill_node_map -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x3b16d784 o2nm_get_node_by_num EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x4900035b o2hb_stop_all_regions -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x545334c8 o2nm_get_node_by_ip +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x4f59eadd o2nm_node_get 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 0x66b339bb o2hb_register_callback EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x6a0c3847 __mlog_printk +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x6a3f73f9 o2hb_unregister_callback EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x81a17396 mlog_and_bits +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x8dc9cda2 o2hb_setup_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x99b8b921 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 0xacf29d76 o2nm_node_put -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xae6d0a4b o2nm_node_get +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xad68155c 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 0xb7277650 o2nm_node_put 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 0xc73714e8 o2hb_unregister_callback EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd859ac8c o2net_fill_node_map EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf1a5611d o2net_unregister_handler_list EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf56c2017 mlog_not_bits EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf982e6db o2net_send_message EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xfe1298f3 o2net_register_handler -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x46a0302f dlm_print_one_lock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x4ccd97bc dlm_register_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x13689c95 dlm_register_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x774e3ad5 dlmlock EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7a1211f8 dlm_setup_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xcd742136 dlmlock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd2aca0c1 dlm_register_domain -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd3818414 dlmunlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7a58a2ac dlmunlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xaa19b453 dlm_print_one_lock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd72bf2a4 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 0xfac179eb dlm_unregister_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xdf8b0fa0 dlm_register_domain EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xfb86b96f dlm_errname +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x02d26d32 ocfs2_plock 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 0x359813d6 ocfs2_stack_glue_register EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4d3af7fa ocfs2_cluster_hangup +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x5b34fc1e ocfs2_stack_glue_unregister EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x76f40744 ocfs2_dlm_lvb -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x8d9a36cf ocfs2_plock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x90467e1f ocfs2_stack_glue_register EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x9507547f ocfs2_cluster_disconnect EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xaf969565 ocfs2_dlm_lock -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xb1033e8b ocfs2_kset EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbbc4ef97 ocfs2_stack_supports_plocks EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xc5196999 ocfs2_dlm_unlock EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xc9fae756 ocfs2_cluster_connect EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xcafdd707 ocfs2_dlm_lock_status EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xd344e4ee ocfs2_stack_glue_set_max_proto_version EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xd806a273 ocfs2_dlm_dump_lksb -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xfedc46d2 ocfs2_stack_glue_unregister +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xe324be85 ocfs2_kset +EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0x15eb1093 unregister_pstore_device EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0x43cc3d4b pstore_blk_get_config -EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0x765311c4 unregister_pstore_device -EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0xd0a8ab5a register_pstore_device -EXPORT_SYMBOL_GPL fs/pstore/pstore_zone 0x36f80847 unregister_pstore_zone -EXPORT_SYMBOL_GPL fs/pstore/pstore_zone 0x6759da74 register_pstore_zone +EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0xfb69b454 register_pstore_device +EXPORT_SYMBOL_GPL fs/pstore/pstore_zone 0x59960923 register_pstore_zone +EXPORT_SYMBOL_GPL fs/pstore/pstore_zone 0x76d6e927 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 @@ -17628,8 +17673,8 @@ EXPORT_SYMBOL_GPL lib/crypto/libpoly1305 0xfa617389 poly1305_update_generic EXPORT_SYMBOL_GPL lib/crypto/libsm4 0x24e254e8 sm4_expandkey EXPORT_SYMBOL_GPL lib/crypto/libsm4 0xfa81970e sm4_crypt_block -EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x0321a757 notifier_err_inject_dir -EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x059a2c76 notifier_err_inject_init +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x596216e4 notifier_err_inject_dir +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x6068c962 notifier_err_inject_init EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x1803a6ed raid6_2data_recov EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x2b30f429 raid6_call EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0xe4b051cf raid6_datap_recov @@ -17639,1063 +17684,1064 @@ 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 0x473f265f lowpan_header_compress -EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0xb0fa5d29 lowpan_header_decompress -EXPORT_SYMBOL_GPL net/802/garp 0x39aaa395 garp_uninit_applicant -EXPORT_SYMBOL_GPL net/802/garp 0x7a26fa66 garp_register_application -EXPORT_SYMBOL_GPL net/802/garp 0x840939c3 garp_init_applicant -EXPORT_SYMBOL_GPL net/802/garp 0x9ec719fc garp_request_leave -EXPORT_SYMBOL_GPL net/802/garp 0xda55ce91 garp_unregister_application -EXPORT_SYMBOL_GPL net/802/garp 0xde3bc248 garp_request_join -EXPORT_SYMBOL_GPL net/802/mrp 0x4dfb0b26 mrp_request_join -EXPORT_SYMBOL_GPL net/802/mrp 0x59f5b047 mrp_request_leave -EXPORT_SYMBOL_GPL net/802/mrp 0x5bd378b3 mrp_init_applicant -EXPORT_SYMBOL_GPL net/802/mrp 0x736f18d5 mrp_uninit_applicant -EXPORT_SYMBOL_GPL net/802/mrp 0xb6a81b6a mrp_register_application -EXPORT_SYMBOL_GPL net/802/mrp 0xbc1d09a4 mrp_unregister_application -EXPORT_SYMBOL_GPL net/802/stp 0xcd4cc4e6 stp_proto_unregister -EXPORT_SYMBOL_GPL net/802/stp 0xf9829513 stp_proto_register -EXPORT_SYMBOL_GPL net/9p/9pnet 0xa0bae190 p9_client_xattrwalk -EXPORT_SYMBOL_GPL net/9p/9pnet 0xd6a76ae1 p9_client_xattrcreate +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x5c45de24 lowpan_header_compress +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0xa6d2202a lowpan_header_decompress +EXPORT_SYMBOL_GPL net/802/garp 0x0a836636 garp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/garp 0x1517327e garp_request_leave +EXPORT_SYMBOL_GPL net/802/garp 0x47130bb5 garp_unregister_application +EXPORT_SYMBOL_GPL net/802/garp 0x99c037ab garp_register_application +EXPORT_SYMBOL_GPL net/802/garp 0xaef569b6 garp_request_join +EXPORT_SYMBOL_GPL net/802/garp 0xce6bb944 garp_init_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0x644d1a65 mrp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0x8b764bc3 mrp_unregister_application +EXPORT_SYMBOL_GPL net/802/mrp 0x91c83ddd mrp_register_application +EXPORT_SYMBOL_GPL net/802/mrp 0xa71bf12e mrp_request_join +EXPORT_SYMBOL_GPL net/802/mrp 0xe4a84e4a mrp_request_leave +EXPORT_SYMBOL_GPL net/802/mrp 0xeb28e224 mrp_init_applicant +EXPORT_SYMBOL_GPL net/802/stp 0x82930994 stp_proto_unregister +EXPORT_SYMBOL_GPL net/802/stp 0xf72ed31b stp_proto_register +EXPORT_SYMBOL_GPL net/9p/9pnet 0xbbe4addd p9_client_xattrcreate +EXPORT_SYMBOL_GPL net/9p/9pnet 0xf0256b6e 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 0x046620ec ax25_register_pid +EXPORT_SYMBOL_GPL net/ax25/ax25 0x60854453 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 0x107ad41b l2cap_chan_del -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x162fc399 l2cap_chan_connect -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x48fc9cfc l2cap_chan_put -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x7472818c l2cap_chan_create -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x9fde747b l2cap_chan_send -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xbb0d4659 l2cap_chan_list -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xbf896584 l2cap_add_psm -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xf90b77fc bt_debugfs -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xfc6d842a l2cap_chan_set_defaults -EXPORT_SYMBOL_GPL net/bluetooth/hidp/hidp 0xe92c1d72 hidp_hid_driver -EXPORT_SYMBOL_GPL net/bridge/bridge 0x0a2184eb br_vlan_get_pvid -EXPORT_SYMBOL_GPL net/bridge/bridge 0x3804f766 br_multicast_has_querier_anywhere -EXPORT_SYMBOL_GPL net/bridge/bridge 0x3e2a8414 br_vlan_get_info_rcu -EXPORT_SYMBOL_GPL net/bridge/bridge 0x3e59ffd9 br_multicast_has_router_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0x46dd91ce br_handle_frame_finish -EXPORT_SYMBOL_GPL net/bridge/bridge 0x4b35b495 br_multicast_router -EXPORT_SYMBOL_GPL net/bridge/bridge 0x4dae2afa br_get_ageing_time -EXPORT_SYMBOL_GPL net/bridge/bridge 0x6b2bedc1 br_forward_finish -EXPORT_SYMBOL_GPL net/bridge/bridge 0x6f55063f br_vlan_get_pvid_rcu -EXPORT_SYMBOL_GPL net/bridge/bridge 0x6f63db57 br_multicast_enabled -EXPORT_SYMBOL_GPL net/bridge/bridge 0x75c1ae4b br_forward -EXPORT_SYMBOL_GPL net/bridge/bridge 0x855ab373 br_fdb_clear_offload -EXPORT_SYMBOL_GPL net/bridge/bridge 0x959b19a2 br_port_get_stp_state -EXPORT_SYMBOL_GPL net/bridge/bridge 0x95a052d0 br_multicast_list_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0x9e3d6ff3 br_fdb_find_port -EXPORT_SYMBOL_GPL net/bridge/bridge 0xa0839e4c br_port_flag_is_set -EXPORT_SYMBOL_GPL net/bridge/bridge 0xa670947a br_dev_queue_push_xmit -EXPORT_SYMBOL_GPL net/bridge/bridge 0xb0044982 br_vlan_get_proto -EXPORT_SYMBOL_GPL net/bridge/bridge 0xb923d941 br_multicast_has_querier_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0xe29307ef nf_br_ops -EXPORT_SYMBOL_GPL net/bridge/bridge 0xe68d9426 br_vlan_enabled -EXPORT_SYMBOL_GPL net/bridge/bridge 0xf3a0e91a br_vlan_get_info -EXPORT_SYMBOL_GPL net/core/failover 0x022d3562 failover_unregister -EXPORT_SYMBOL_GPL net/core/failover 0x1e923eb1 failover_slave_unregister -EXPORT_SYMBOL_GPL net/core/failover 0xa63ae9d5 failover_register -EXPORT_SYMBOL_GPL net/dccp/dccp 0x0836e06a dccp_send_sync -EXPORT_SYMBOL_GPL net/dccp/dccp 0x0a30641e dccp_poll -EXPORT_SYMBOL_GPL net/dccp/dccp 0x0c55f394 dccp_feat_nn_get +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x0761db86 l2cap_chan_list +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x15d9b13a l2cap_add_psm +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x1b7fd3f9 l2cap_chan_put +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x2102df68 l2cap_chan_send +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x6035c37e l2cap_chan_connect +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x71fc8ee7 l2cap_chan_del +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x96802d29 l2cap_chan_create +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x9d1e59d1 bt_debugfs +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xaae4609e l2cap_chan_set_defaults +EXPORT_SYMBOL_GPL net/bluetooth/hidp/hidp 0xce2743e1 hidp_hid_driver +EXPORT_SYMBOL_GPL net/bridge/bridge 0x167566f6 br_vlan_get_proto +EXPORT_SYMBOL_GPL net/bridge/bridge 0x20f2bc34 br_multicast_has_querier_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x3d28bf0c br_port_flag_is_set +EXPORT_SYMBOL_GPL net/bridge/bridge 0x42712c23 br_vlan_get_pvid_rcu +EXPORT_SYMBOL_GPL net/bridge/bridge 0x4b56c3b8 br_multicast_has_router_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x4fc3f81c br_fdb_clear_offload +EXPORT_SYMBOL_GPL net/bridge/bridge 0x4fc626f0 br_handle_frame_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0x50761aa9 br_multicast_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0x6bba7781 br_dev_queue_push_xmit +EXPORT_SYMBOL_GPL net/bridge/bridge 0x71aebf86 br_forward +EXPORT_SYMBOL_GPL net/bridge/bridge 0x7aba1dd7 br_fdb_find_port +EXPORT_SYMBOL_GPL net/bridge/bridge 0x7c6dc440 br_vlan_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0x959cef27 br_get_ageing_time +EXPORT_SYMBOL_GPL net/bridge/bridge 0x9b597047 br_vlan_get_info +EXPORT_SYMBOL_GPL net/bridge/bridge 0x9c817313 nf_br_ops +EXPORT_SYMBOL_GPL net/bridge/bridge 0xa324400a br_port_get_stp_state +EXPORT_SYMBOL_GPL net/bridge/bridge 0xa82337cf br_multicast_has_querier_anywhere +EXPORT_SYMBOL_GPL net/bridge/bridge 0xaa21d0cf br_vlan_get_info_rcu +EXPORT_SYMBOL_GPL net/bridge/bridge 0xd14caf4a br_multicast_list_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0xf8a9af6b br_multicast_router +EXPORT_SYMBOL_GPL net/bridge/bridge 0xf910554b br_forward_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0xff7c3705 br_vlan_get_pvid +EXPORT_SYMBOL_GPL net/core/failover 0x0a3fc1a7 failover_slave_unregister +EXPORT_SYMBOL_GPL net/core/failover 0x59f51212 failover_unregister +EXPORT_SYMBOL_GPL net/core/failover 0x5b5bbba7 failover_register +EXPORT_SYMBOL_GPL net/dccp/dccp 0x00157c28 dccp_check_req +EXPORT_SYMBOL_GPL net/dccp/dccp 0x0dbfc5b1 dccp_feat_signal_nn_change +EXPORT_SYMBOL_GPL net/dccp/dccp 0x17263b6a dccp_set_state EXPORT_SYMBOL_GPL net/dccp/dccp 0x182ec2bf dccp_ackvec_parsed_add -EXPORT_SYMBOL_GPL net/dccp/dccp 0x1c26f406 dccp_check_req -EXPORT_SYMBOL_GPL net/dccp/dccp 0x281e8ef3 dccp_send_ack -EXPORT_SYMBOL_GPL net/dccp/dccp 0x40307fda dccp_ctl_make_reset -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4b21b05a dccp_parse_options +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1b35c7c9 dccp_make_response +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1fc82f37 dccp_rcv_state_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0x243ff586 dccp_ctl_make_reset +EXPORT_SYMBOL_GPL net/dccp/dccp 0x30bbb4ee dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4becc7e4 dccp_insert_option EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4fc43c1b dccp_feat_signal_nn_change -EXPORT_SYMBOL_GPL net/dccp/dccp 0x51cf5e5f dccp_ioctl -EXPORT_SYMBOL_GPL net/dccp/dccp 0x560a3353 dccp_setsockopt EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics -EXPORT_SYMBOL_GPL net/dccp/dccp 0x5e4c07d8 dccp_shutdown +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5a47ec1b inet_dccp_listen +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5b476b90 dccp_destroy_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x6b5d43a6 dccp_ioctl EXPORT_SYMBOL_GPL net/dccp/dccp 0x722630de dccp_hashinfo -EXPORT_SYMBOL_GPL net/dccp/dccp 0x74d0f6b0 dccp_rcv_state_process -EXPORT_SYMBOL_GPL net/dccp/dccp 0x795a8dec inet_dccp_listen -EXPORT_SYMBOL_GPL net/dccp/dccp 0x7fa87343 dccp_init_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x73352bcf dccp_create_openreq_child +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7758c324 dccp_feat_nn_get +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7b3de3a5 dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7d2e856c dccp_recvmsg EXPORT_SYMBOL_GPL net/dccp/dccp 0x80993155 dccp_timestamp +EXPORT_SYMBOL_GPL net/dccp/dccp 0x82582b2b dccp_shutdown EXPORT_SYMBOL_GPL net/dccp/dccp 0x86be7924 dccp_packet_name EXPORT_SYMBOL_GPL net/dccp/dccp 0x884a32bd dccp_death_row -EXPORT_SYMBOL_GPL net/dccp/dccp 0x8fc416b7 dccp_connect -EXPORT_SYMBOL_GPL net/dccp/dccp 0x91dd8b7d dccp_child_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0x8ee5a127 dccp_sync_mss +EXPORT_SYMBOL_GPL net/dccp/dccp 0x95711bdc dccp_sendmsg EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup -EXPORT_SYMBOL_GPL net/dccp/dccp 0x9971ecfa dccp_destroy_sock -EXPORT_SYMBOL_GPL net/dccp/dccp 0x9af5c300 dccp_insert_option -EXPORT_SYMBOL_GPL net/dccp/dccp 0xa8c89182 dccp_sendmsg -EXPORT_SYMBOL_GPL net/dccp/dccp 0xb81216ef dccp_sync_mss -EXPORT_SYMBOL_GPL net/dccp/dccp 0xc66a7fdf dccp_make_response -EXPORT_SYMBOL_GPL net/dccp/dccp 0xc9df74f1 dccp_create_openreq_child -EXPORT_SYMBOL_GPL net/dccp/dccp 0xd27baf86 dccp_close +EXPORT_SYMBOL_GPL net/dccp/dccp 0x98e84433 dccp_send_sync +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9d6ad72d dccp_init_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa26add4c dccp_parse_options +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa6aed75e dccp_reqsk_init +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa7a31d67 dccp_reqsk_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0xb2b9838c dccp_rcv_established +EXPORT_SYMBOL_GPL net/dccp/dccp 0xcbc2939e dccp_done +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd30bf066 dccp_connect EXPORT_SYMBOL_GPL net/dccp/dccp 0xd75b7072 dccp_orphan_count -EXPORT_SYMBOL_GPL net/dccp/dccp 0xd88f3465 dccp_reqsk_init -EXPORT_SYMBOL_GPL net/dccp/dccp 0xd8c43eb7 dccp_recvmsg -EXPORT_SYMBOL_GPL net/dccp/dccp 0xdf9657dc dccp_done -EXPORT_SYMBOL_GPL net/dccp/dccp 0xe13c2e06 dccp_reqsk_send_ack -EXPORT_SYMBOL_GPL net/dccp/dccp 0xe2f1aa36 dccp_rcv_established -EXPORT_SYMBOL_GPL net/dccp/dccp 0xed7c2b61 dccp_set_state -EXPORT_SYMBOL_GPL net/dccp/dccp 0xedba8e31 dccp_getsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0xf0138992 dccp_disconnect -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x28447d2a dccp_invalid_packet -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x7efee0b4 dccp_v4_connect -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x82e3acfd dccp_v4_send_check -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x86477e6a dccp_v4_request_recv_sock -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xe86a8754 dccp_v4_conn_request -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xe8886630 dccp_v4_do_rcv -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x0206293e dsa_devlink_params_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x0682eea5 dsa_8021q_tx_vid -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x0fcb175e dsa_devlink_resource_occ_get_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x126f91ca dsa_switch_resume -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x141db165 dsa_8021q_xmit -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x1cd7d1a2 dsa_port_get_phy_strings -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x1d66db89 dsa_port_get_phy_sset_count -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x1e7226e0 dsa_register_switch -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x265c2772 dsa_tag_drivers_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x2b70ba3a dsa_switch_find -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x30bb58ff dsa_devlink_region_create -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x324b98a2 dsa_tag_drivers_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x369755a0 dsa_dev_to_net_device -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x3bbf24fc dsa_unregister_switch +EXPORT_SYMBOL_GPL net/dccp/dccp 0xdb807720 dccp_disconnect +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe68dae5c dccp_close +EXPORT_SYMBOL_GPL net/dccp/dccp 0xec8de2ee dccp_poll +EXPORT_SYMBOL_GPL net/dccp/dccp 0xecd07862 dccp_child_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf62dbeb0 dccp_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x182b52ab dccp_v4_do_rcv +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x2c6c72e3 dccp_v4_conn_request +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x4c56eb32 dccp_v4_request_recv_sock +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x9567f66d dccp_invalid_packet +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xd4a41e32 dccp_v4_send_check +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xe9e13702 dccp_v4_connect +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x04654697 dsa_unregister_switch +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x06b5789a dsa_devlink_resource_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x07453f61 dsa_devlink_resources_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x09e1ae51 dsa_slave_dev_check +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x27664591 dsa_8021q_rx_vid +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x2cb46eb7 dsa_switch_find +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x2e0909e5 dsa_devlink_port_region_create +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x31c5b214 dsa_port_phylink_mac_change +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x38ca7168 dsa_devlink_params_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x39998012 dsa_switch_shutdown +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x3cb16968 dsa_register_switch EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x417d1fed dsa_8021q_rx_switch_id -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x41b095e8 dsa_tag_8021q_bridge_tx_fwd_unoffload -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x53e18dd1 dsa_port_from_netdev +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x4a0f7e39 dsa_8021q_tx_vid +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x56f7dab8 dsa_port_get_phy_sset_count EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x5928bba7 vid_is_dsa_8021q_rxvlan -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x67036b9b dsa_8021q_rx_vid -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x777adb89 dsa_port_get_ethtool_phy_stats -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x7c26a701 dsa_devlink_port_region_create -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x828057cd dsa_tag_8021q_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x87b4ef0f dsa_devlink_params_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x88c26231 dsa_port_phylink_mac_change -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x97233b14 dsa_8021q_rcv -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x9c6d8f6b dsa_devlink_param_set +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x6682043d dsa_switch_suspend +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x6a7e1b18 dsa_devlink_resource_occ_get_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x6d4d5655 dsa_enqueue_skb +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x71266ee9 dsa_tag_8021q_bridge_tx_fwd_offload +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x71e34af8 dsa_port_get_ethtool_phy_stats +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x7883f819 dsa_devlink_param_get +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x9009ad20 dsa_tag_8021q_register EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x9e59271d dsa_8021q_rx_source_port -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xa97c5a5b dsa_tag_8021q_bridge_tx_fwd_offload -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xbc165a02 dsa_enqueue_skb +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xa47fdcff dsa_port_get_phy_strings +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xa7e03a50 dsa_8021q_rcv +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xad88f682 dsa_devlink_params_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xaf9c2469 dsa_devlink_region_create +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xba4c815c dsa_tag_drivers_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xba8ed3e4 dsa_port_from_netdev EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xbe3856fc dsa_8021q_bridge_tx_fwd_offload_vid +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc06b3bb1 dsa_dev_to_net_device EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc23e8d5f dsa_devlink_region_destroy -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc3fbc74b dsa_devlink_param_get -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc5aad395 dsa_slave_dev_check -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xcd209561 dsa_devlink_resource_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xdbf3cef4 dsa_switch_shutdown -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xe0006d7e dsa_devlink_resources_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xe7e74838 dsa_switch_suspend -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xee572ee4 dsa_devlink_resource_occ_get_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc371349b dsa_tag_8021q_bridge_tx_fwd_unoffload +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc39393ad dsa_devlink_resource_occ_get_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xdd2fc940 dsa_8021q_xmit +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xe22a9faf dsa_devlink_param_set +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xe5dd8642 dsa_tag_8021q_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xe8eee2d9 dsa_tag_drivers_register EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf13e1803 vid_is_dsa_8021q EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf6f3b5c8 vid_is_dsa_8021q_txvlan -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf89e7101 dsa_tag_8021q_unregister -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x16fec865 ieee802154_hdr_peek_addrs -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x514803d3 ieee802154_hdr_pull +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xfae0947f dsa_switch_resume +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x58210c34 ieee802154_hdr_pull +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x7908cb08 ieee802154_hdr_push EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x87e2553b ieee802154_max_payload -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xd7507259 ieee802154_hdr_peek -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xffc124d4 ieee802154_hdr_push +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xb8f3b169 ieee802154_hdr_peek +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xef47cc2d ieee802154_hdr_peek_addrs EXPORT_SYMBOL_GPL net/ife/ife 0x6210e871 ife_tlv_meta_next -EXPORT_SYMBOL_GPL net/ife/ife 0x668d5ca9 ife_encode EXPORT_SYMBOL_GPL net/ife/ife 0x67db2029 ife_tlv_meta_decode -EXPORT_SYMBOL_GPL net/ife/ife 0x97f22175 ife_decode +EXPORT_SYMBOL_GPL net/ife/ife 0xbb195dcb ife_decode +EXPORT_SYMBOL_GPL net/ife/ife 0xdaada029 ife_encode EXPORT_SYMBOL_GPL net/ife/ife 0xe7888e98 ife_tlv_meta_encode -EXPORT_SYMBOL_GPL net/ipv4/esp4 0x45e54aaa esp_output_tail -EXPORT_SYMBOL_GPL net/ipv4/esp4 0xa1e59fec esp_input_done2 -EXPORT_SYMBOL_GPL net/ipv4/esp4 0xdc334283 esp_output_head -EXPORT_SYMBOL_GPL net/ipv4/gre 0x37a2a16f gre_del_protocol -EXPORT_SYMBOL_GPL net/ipv4/gre 0xd54a9c0c gre_add_protocol -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x07bad67e inet_diag_msg_attrs_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x20243cb7 inet_diag_unregister -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x56ef6610 inet_diag_bc_sk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x72c5cfe0 inet_diag_find_one_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x77013831 inet_sk_diag_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xbc1a3c3e inet_diag_register -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xc5935259 inet_diag_dump_one_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xfa14e911 inet_diag_msg_common_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xfe34b797 inet_diag_dump_icsk -EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0x9d103663 gretap_fb_dev_create -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x0f485e24 ip_tunnel_newlink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x115d89a0 ip_md_tunnel_xmit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x18aa6fda ip_tunnel_init -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x1a2537bb ip_tunnel_xmit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x290df33c ip_tunnel_uninit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x2a40051b ip_tunnel_lookup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x3048ab7e ip_tunnel_siocdevprivate -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x3e0b2796 __ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x55ec476a ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x5eaf6447 ip_tunnel_delete_nets -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x6da15e81 ip_tunnel_changelink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x7b421e01 ip_tunnel_setup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x8a5ccec9 ip_tunnel_encap_setup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x94205a26 ip_tunnel_init_net -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xa4fa8f5c ip_tunnel_dellink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xc1182feb ip_tunnel_ctl -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xc92aa02f ip_tunnel_rcv -EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0x89287cc3 arpt_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0x3a236da3 ipt_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0xbd7040ed nf_defrag_ipv4_enable -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0xd72c9c07 nf_defrag_ipv4_disable -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0x4db2f088 nf_dup_ipv4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x1541aacc nf_send_unreach -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x4ecbe027 nf_reject_ip_tcphdr_get -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x6014e4d1 nf_send_reset -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x91558e28 nf_reject_skb_v4_unreach -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x91e19ec6 nf_reject_iphdr_put -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x92445c76 nf_reject_skb_v4_tcp_reset -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xa374b90a nf_reject_ip_tcphdr_put -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_socket_ipv4 0x23ea5d53 nf_sk_lookup_slow_v4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x0ec13905 nf_tproxy_handle_time_wait4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0xa48d5852 nf_tproxy_laddr4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0xdbfc6d0f nf_tproxy_get_sock_v4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0x2840dc91 nft_fib4_eval -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0x4f7ae19b nft_fib4_eval_type -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x09662a0e tcp_vegas_cwnd_event -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x199d2f89 tcp_vegas_init -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x41380c16 tcp_vegas_get_info -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x9518fb41 tcp_vegas_state -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xf88a9c43 tcp_vegas_pkts_acked -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x00ae21a6 udp_tunnel_notify_del_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x193fb72f udp_tunnel_drop_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x24fe98cd udp_tunnel_push_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x337c3e15 udp_tun_rx_dst -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x6e9da9c5 setup_udp_tunnel_sock -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x9066c3f0 udp_tunnel_sock_release -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xc672a6e6 udp_tunnel_xmit_skb -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xefa7391b udp_tunnel_notify_add_rx_port -EXPORT_SYMBOL_GPL net/ipv6/esp6 0x17cfe045 esp6_output_tail -EXPORT_SYMBOL_GPL net/ipv6/esp6 0xc89e08fc esp6_output_head -EXPORT_SYMBOL_GPL net/ipv6/esp6 0xd58a5995 esp6_input_done2 -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x64fa816c ip6_tnl_encap_setup -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xd77b3a63 ip6_tnl_xmit_ctl -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xdeaaaecb ip6_tnl_rcv_ctl -EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0xb9d38466 udp_sock_create6 -EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0xfb5ac36e udp_tunnel6_xmit_skb -EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0x0b45fc2d ip6t_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x0160660e nf_defrag_ipv6_enable -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x26898fdb nf_defrag_ipv6_disable -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xa429f6b2 nf_ct_frag6_gather -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0x5f0bc9fb nf_dup_ipv6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x0ebfd337 nf_reject_skb_v6_unreach -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x2c56ddaf nf_reject_ip6hdr_put -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x4d220f61 nf_send_unreach6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x68aef1c7 nf_reject_skb_v6_tcp_reset -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x6b5341cf nf_reject_ip6_tcphdr_put -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x8ed75fa1 nf_send_reset6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xc1f7b16f nf_reject_ip6_tcphdr_get -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_socket_ipv6 0xa48dfc3a nf_sk_lookup_slow_v6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x05111b8d nf_tproxy_get_sock_v6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x68704eae nf_tproxy_handle_time_wait6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0xf5a96d46 nf_tproxy_laddr6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0x34cdb194 nft_fib6_eval -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0x5a7d0ff6 nft_fib6_eval_type -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x1ff57097 l2tp_session_register -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x203e8548 l2tp_tunnel_get -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x35a731b7 l2tp_tunnel_get_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x35f7ede7 l2tp_session_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x385aa303 l2tp_session_inc_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x3a224cf0 l2tp_tunnel_dec_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x3c17210d l2tp_session_set_header_len -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x53b0c979 l2tp_tunnel_register -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x5472e3c5 l2tp_session_get -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x5e8eb37a l2tp_session_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x6dadbd33 l2tp_session_dec_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x6e8b5c8a l2tp_session_get_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x770235c2 l2tp_sk_to_tunnel -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x7cf4272d l2tp_tunnel_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x8bc50b7d l2tp_tunnel_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x8bdbd930 l2tp_xmit_skb -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x92769609 l2tp_tunnel_inc_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x9b1acd7e l2tp_udp_encap_recv -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb4c24939 l2tp_session_get_by_ifname -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf5c4f169 l2tp_tunnel_get_session -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xfb793f00 l2tp_recv_common -EXPORT_SYMBOL_GPL net/l2tp/l2tp_ip 0x7a7d19ed l2tp_ioctl -EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x1f628578 l2tp_nl_register_ops +EXPORT_SYMBOL_GPL net/ipv4/esp4 0x2b81c5d4 esp_output_tail +EXPORT_SYMBOL_GPL net/ipv4/esp4 0x7913a040 esp_output_head +EXPORT_SYMBOL_GPL net/ipv4/esp4 0x88565b23 esp_input_done2 +EXPORT_SYMBOL_GPL net/ipv4/gre 0x722ae8cb gre_add_protocol +EXPORT_SYMBOL_GPL net/ipv4/gre 0xd8bd3a80 gre_del_protocol +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x27a585b6 inet_diag_bc_sk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x31d799a2 inet_diag_dump_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x4b28f4e2 inet_sk_diag_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x73238740 inet_diag_msg_attrs_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x841ac2e2 inet_diag_register +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x895038f9 inet_diag_msg_common_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x90f23aac inet_diag_dump_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xbdf027f5 inet_diag_unregister +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xe82ef69d inet_diag_find_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0x74a892a9 gretap_fb_dev_create +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x05b5dede ip_tunnel_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x0a8f7f16 ip_tunnel_siocdevprivate +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x10a0f0da ip_tunnel_dellink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x1dddb134 ip_tunnel_init +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x37185970 __ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x3cb3c824 ip_tunnel_rcv +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x41c14ce9 ip_tunnel_ctl +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x685b1c5f ip_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x6b227e56 ip_tunnel_init_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x876191bb ip_tunnel_uninit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x99d7c049 ip_tunnel_newlink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x9a9a1fd6 ip_tunnel_delete_nets +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x9f14da30 ip_tunnel_encap_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xc600842d ip_tunnel_lookup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xce7cf841 ip_md_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xe33c281a ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xf917f944 ip_tunnel_changelink +EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0x6eda790d arpt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0xb8caa76e ipt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x5b271c94 nf_defrag_ipv4_disable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x8d504d30 nf_defrag_ipv4_enable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0x0c753807 nf_dup_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x15c96b26 nf_send_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x49c30161 nf_reject_skb_v4_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x5d4cd724 nf_send_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x79303109 nf_reject_skb_v4_tcp_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x79b97670 nf_reject_ip_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x8a983375 nf_reject_ip_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xee611688 nf_reject_iphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_socket_ipv4 0x2da5b02f nf_sk_lookup_slow_v4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x1cdfeb33 nf_tproxy_handle_time_wait4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x2c4fcec6 nf_tproxy_laddr4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x5a354fe7 nf_tproxy_get_sock_v4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0x30865bd3 nft_fib4_eval_type +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0xaf853d49 nft_fib4_eval +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x15af5f04 tcp_vegas_cwnd_event +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x5ca80554 tcp_vegas_get_info +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x5d3f2de0 tcp_vegas_pkts_acked +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x633d4866 tcp_vegas_state +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x9cb05b80 tcp_vegas_init +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x33acd37a udp_tunnel_drop_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x3500f036 udp_tunnel_notify_add_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x4b8c1982 udp_tunnel_xmit_skb +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x6a86c58c udp_tun_rx_dst +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x6a95521f udp_tunnel_push_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x7893a5b2 udp_tunnel_notify_del_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xf2fbe578 udp_tunnel_sock_release +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xf80bfb7f setup_udp_tunnel_sock +EXPORT_SYMBOL_GPL net/ipv6/esp6 0x50c60b7d esp6_output_tail +EXPORT_SYMBOL_GPL net/ipv6/esp6 0x92c2e48f esp6_input_done2 +EXPORT_SYMBOL_GPL net/ipv6/esp6 0xb218285f esp6_output_head +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x5eb4585b ip6_tnl_xmit_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xc0d54c24 ip6_tnl_rcv_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xf45aa3c8 ip6_tnl_encap_setup +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x96f9404d udp_sock_create6 +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0xb89e3598 udp_tunnel6_xmit_skb +EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0x14ace8f1 ip6t_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x61f9dcf0 nf_ct_frag6_gather +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x94adc9fe nf_defrag_ipv6_disable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xd54655d9 nf_defrag_ipv6_enable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0x7f79cb46 nf_dup_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x187e46d9 nf_reject_skb_v6_tcp_reset +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x3550b796 nf_reject_skb_v6_unreach +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x6323afbf nf_reject_ip6hdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x8ac5ca1f nf_send_reset6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x9f02079b nf_reject_ip6_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xe843cebc nf_send_unreach6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xecc95819 nf_reject_ip6_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_socket_ipv6 0xaac21146 nf_sk_lookup_slow_v6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x2a091e5c nf_tproxy_handle_time_wait6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x38a48884 nf_tproxy_laddr6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x9c50ca12 nf_tproxy_get_sock_v6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0x0c9af05a nft_fib6_eval +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0x113605c6 nft_fib6_eval_type +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x09504eb4 l2tp_session_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x198475b7 l2tp_tunnel_dec_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x1b6b299b l2tp_session_register +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x46c02d67 l2tp_tunnel_register +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x51861336 l2tp_xmit_skb +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x58736f9b l2tp_sk_to_tunnel +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x656e0f4e l2tp_tunnel_inc_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x72aff76b l2tp_tunnel_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x86ccf117 l2tp_tunnel_get +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x87ce9311 l2tp_session_dec_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x8fd03cb3 l2tp_udp_encap_recv +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x90ad4b09 l2tp_session_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xaa40bf79 l2tp_session_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb14efd2d l2tp_session_get_by_ifname +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb1698b3e l2tp_session_get +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xbe20d751 l2tp_session_inc_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xc1395525 l2tp_tunnel_get_session +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd88f4db4 l2tp_recv_common +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xec0e6b2d l2tp_tunnel_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xfc9c64a4 l2tp_tunnel_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xffc64157 l2tp_session_set_header_len +EXPORT_SYMBOL_GPL net/l2tp/l2tp_ip 0xfa2b71d7 l2tp_ioctl EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x130cd34f ieee80211_find_sta_by_ifaddr -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x13546b8f ieeee80211_obss_color_collision_notify -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x2329272c ieee80211_gtk_rekey_notify -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x3197da6d ieee80211_update_mu_groups -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x3e6aebad ieee80211_iterate_active_interfaces_atomic +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0xa7dce8ae l2tp_nl_register_ops +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x1a0ea3b9 ieee80211_iterate_active_interfaces_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x26b483f7 ieee80211_update_mu_groups +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x2e41a8af ieee80211_find_sta_by_ifaddr +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x2e4a9baa ieee80211_remain_on_channel_expired +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x3171e0ae ieee80211_calc_tx_airtime +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x493ef100 ieee80211_iter_chan_contexts_atomic EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x5250cf98 ieee80211_tkip_add_iv EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x59c13bed ieee80211_key_mic_failure -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x5c313301 ieee80211_iter_chan_contexts_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x6c1d12bb ieee80211_ready_on_channel -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7614ac03 wdev_to_ieee80211_vif -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x86ec03d7 ieee80211_iterate_active_interfaces_mtx -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x92296371 ieee80211_vif_to_wdev +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x648d136d ieee80211_resume_disconnect +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x73e6f5ca ieee80211_iterate_interfaces +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7b50c220 ieee80211_iterate_stations_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x89ddbb4e ieeee80211_obss_color_collision_notify +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x99e3defd ieee80211_request_smps +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x9d307a23 wdev_to_ieee80211_vif EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xa1247034 ieee80211_remove_key EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xa4b2b77e ieee80211_key_replay -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xa7461f94 ieee80211_iterate_stations_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xada2ef31 ieee80211_iterate_interfaces -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xc4f5217c ieee80211_color_change_finish -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xca8182c4 ieee80211_resume_disconnect -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xcbeb8b46 ieee80211_calc_rx_airtime -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd2ff649d ieee80211_calc_tx_airtime +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xad812dc9 ieee80211_color_change_finish +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xb09136d4 ieee80211_iterate_active_interfaces_mtx +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xb2c7b8bf ieee80211_ready_on_channel +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xc2bfa858 ieee80211_calc_rx_airtime +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd765d730 ieee80211_gtk_rekey_add EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd8e09da4 ieee80211_set_key_rx_seq -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xec96f8d7 ieee80211_gtk_rekey_add -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf5055c97 ieee80211_remain_on_channel_expired -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf6bdfca7 ieee80211_request_smps -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xff67ae01 ieee80211_ave_rssi -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x74135353 nla_put_labels +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xdb6f64ad ieee80211_ave_rssi +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf15091fd ieee80211_vif_to_wdev +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf709a77c ieee80211_gtk_rekey_notify +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x663249ec mpls_dev_mtu EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x7670b536 nla_get_labels -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x77d3f290 mpls_output_possible -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x8c880f28 mpls_stats_inc_outucastpkts -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xeb09b29e mpls_pkt_too_big -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xf12900a5 mpls_dev_mtu -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x04a0228d ip_set_init_comment -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x0aa3b61c ip_set_type_register -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x0ad59f8b ip_set_put_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x1b1226b0 ip_set_get_ip4_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x1cd84b8c ip_set_get_byname +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xc3adcf6c mpls_stats_inc_outucastpkts +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xdffcc8dd mpls_output_possible +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xe790046d mpls_pkt_too_big +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xf9b43488 nla_put_labels +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x08b9f0a1 ip_set_get_ip4_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x15f97a8d 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 0x33e2ea49 ip_set_put_extensions EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x3b055052 ip_set_test -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x412f5ed1 ip_set_get_ip6_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x456d8b13 ip_set_type_unregister -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x5f7a7b5e ip_set_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x69b42ac1 ip_set_get_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x4c73869e ip_set_nfnl_get_byindex EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7924b6de ip_set_hostmask_map -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x8104d9b0 ip_set_name_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x79258fb5 ip_set_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x79d21a82 ip_set_put_flags +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7d1758d1 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 0x8a19274e ip_set_nfnl_get_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x99b10671 ip_set_match_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x874c50c8 ip_set_get_ip6_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x885870ee ip_set_match_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x8a249cd3 ip_set_init_comment +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x998baad6 ip_set_add EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9e98722b ip_set_get_ipaddr6 -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa1120db5 ip_set_elem_len EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa293f8a6 ip_set_get_ipaddr4 -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa9d9b324 ip_set_del -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xd53f0141 ip_set_put_flags -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xd8e91481 ip_set_nfnl_put -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xd9bc5c40 ip_set_add +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xac4f007e ip_set_test +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xb7c20835 ip_set_nfnl_put +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xc33d7921 ip_set_get_byname +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xcc4f4df0 ip_set_get_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xede4e0ee ip_set_name_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf1f48a3f ip_set_del EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf3b4d4ae ip_set_alloc -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xfe6cbfb7 ip_set_put_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x3350c01c ip_vs_conn_out_get_proto -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x5f422c30 register_ip_vs_pe -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x7d18af9c ip_vs_conn_in_get_proto -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xe0463450 unregister_ip_vs_pe -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x17f4b07d nf_conncount_gc_list +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf3cec363 ip_set_put_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf9e3d010 ip_set_type_register +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x311eeb9a ip_vs_conn_in_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xda7f636d ip_vs_conn_out_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xeb78e017 unregister_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xec79d6ef register_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x0d8bd92f nf_conncount_init EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x3ff55ad3 nf_conncount_cache_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x47c84096 nf_conncount_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x88999bb8 nf_conncount_gc_list EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x8c4cb9c3 nf_conncount_list_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x99023f01 nf_conncount_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xbdb65cd5 nf_conncount_count -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xbf88882b nf_conncount_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xe6b4489a nf_conncount_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0003a50d nf_conntrack_helper_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x07378eb7 nf_l4proto_log_invalid -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0a68f487 nf_ct_timeout_put_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0a943e0d nf_conntrack_count -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0a98adb6 nf_ct_port_tuple_to_nlattr +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xb9641629 nf_conncount_count +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xdd04a577 nf_conncount_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x01856c2a nf_ct_expect_iterate_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x05d2eb68 nf_conntrack_alloc EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0bc00f80 nf_nat_helper_try_module_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0e97c1fc nf_ct_seq_adjust -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x10997495 nf_connlabels_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x183e83ed nf_conntrack_helper_try_module_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x18925795 nf_ct_seqadj_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1957dcfd nf_ct_helper_expectfn_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1a0f54b6 nf_ct_helper_expectfn_find_by_name -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1a983088 nf_conntrack_helpers_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x222388b7 nf_ct_netns_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x27d6401b nf_conntrack_hash_check_insert -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x280af41c nf_conntrack_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0e1ee002 nf_conntrack_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0e6e549e nf_ct_iterate_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0f6af186 nf_ct_netns_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1323520e nf_ct_helper_expectfn_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x157969f8 nf_ct_expect_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x188487c0 nf_ct_l4proto_log_invalid +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1949f06c nf_ct_deliver_cached_events +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x21271d05 nf_conntrack_helpers_unregister EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x289c3714 nf_ct_alloc_hashtable EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x28eff409 nf_conntrack_hash -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2e73e071 nf_ct_remove_expectations -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3067dcae nf_conntrack_alter_reply -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x311f8a34 nf_ct_tcp_seqadj_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x324fb1d3 nf_ct_l4proto_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x360e33a9 nf_ct_helper_log -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x36c3f979 nf_ct_gre_keymap_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x379f70bc nf_ct_seqadj_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3cec030e nf_connlabels_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4100ee6c __nf_ct_refresh_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4792cdfe __nf_conntrack_helper_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x48583aaf nf_ct_expect_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x48875bcb nf_ct_expect_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4b21823b nf_ct_get_id -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x510c4506 nf_nat_helper_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x513ed552 nf_ct_expect_related_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5358de49 nf_ct_helper_expectfn_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x55df2326 nf_ct_unexpect_related -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x569ca720 nf_ct_gre_keymap_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5822561c nf_nat_helper_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5fce420d nf_conntrack_tuple_taken -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x67440ca9 nf_ct_timeout_find_get_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x68ca70a2 nf_ct_expect_iterate_net +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2ed3d7dc __nf_ct_try_assign_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2ee294b5 nf_ct_set_auto_assign_helper_warned +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2f48e1ca nf_ct_helper_expectfn_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3084632a nf_connlabels_replace +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x311ab2d2 nf_ct_kill_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x31dcee05 nf_conntrack_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x33853917 nf_ct_tmpl_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3a696055 nf_conntrack_helper_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x407598d0 nf_conntrack_in +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x437d69fc nf_ct_gre_keymap_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x49054e7b nf_ct_expect_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4a152d38 nf_conntrack_tuple_taken +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4a44955e nf_nat_helper_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x511388ce nf_ct_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x568d8b1a __nf_conntrack_helper_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x58b2854a nf_ct_expect_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x59567b85 nf_ct_bridge_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5a10dc6b nf_ct_port_tuple_to_nlattr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5c34e801 nf_conntrack_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5c623184 nf_ct_set_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5fbf92c4 nf_ct_unconfirmed_destroy EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x693c3961 nf_ct_helper_hash -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6e43818c nf_conntrack_helper_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x720c8585 nf_conntrack_register_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x72c5d7fe nf_ct_unconfirmed_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x74eded11 nf_conntrack_in -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x83bbd77a nf_ct_delete -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x85221250 nf_ct_extend_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x855fb05a nf_conntrack_helper_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x874a6f1a nf_ct_expect_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x885d7fc0 nf_ct_acct_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8d04de03 nf_ct_helper_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x69c71407 nf_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x69f6f209 nf_ct_delete +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6a40bd8d nf_ct_expect_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6f4c3e25 nf_ct_helper_log +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7456d9df nf_ct_tmpl_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x795102d8 nf_ct_helper_expectfn_find_by_name +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7a5c0913 nf_ct_unexpect_related +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7d9bdbb6 nf_ct_get_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x80cf28f2 nf_ct_timeout_put_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x84875751 __nf_conntrack_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8812f110 nf_ct_tcp_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x884acc7a nf_ct_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x88ef66aa nf_connlabels_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x899ffa3a nf_ct_remove_expectations +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8a14ee4e nf_ct_remove_expect EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ffe7e89 nf_conntrack_htable_size -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x925a130b nf_ct_tmpl_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x90d9df3e nf_ct_seqadj_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9241d203 nf_connlabels_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9605cae8 nf_conntrack_count +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x977fe649 nf_conntrack_helper_try_module_get EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9adb7399 nf_conntrack_expect_lock -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9f1aff11 nf_ct_extend_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa08a4f99 nf_ct_expect_iterate_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa30ea038 nf_conntrack_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa7d542bc nf_ct_bridge_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa9cab32c nf_ct_bridge_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xab5386c2 nf_conntrack_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa07ba692 nf_ct_extend_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa173b6d6 nf_conntrack_hash_check_insert +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa9e18c74 nf_ct_bridge_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xac24ecb9 nf_ct_seq_offset +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xac81a1f4 nf_ct_timeout_find_get_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xad5d3b29 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 0xb52783d0 nf_ct_get_tuplepr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb57e9229 nf_ct_expect_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbc4a26ff nf_ct_remove_expect +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb2663215 nf_ct_untimeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb7172ee7 nf_ct_helper_expectfn_find_by_symbol +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb72042e5 nf_nat_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbb2023dd nf_ct_gre_keymap_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbec45bd6 nf_ct_destroy_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbf7616d7 __nf_ct_expect_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc130d041 nf_ct_acct_add EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc18ac88d nf_ct_expect_hsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc2dbfa90 nf_ct_tmpl_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc3aceb9e nf_ct_seq_adjust EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc40f284c nf_ct_helper_hsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc4199e3c nf_ct_deliver_cached_events -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc473c380 nf_ct_untimeout -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcbbc1001 nf_ct_netns_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcd3a3740 nf_conntrack_unregister_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcd61efea nf_ct_destroy_timeout -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xce61ff51 nf_ct_helper_expectfn_find_by_symbol -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd003ba06 nf_connlabels_replace -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd070ea3e nf_confirm -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd0aa8d66 nf_conntrack_helpers_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc8ba1735 nf_conntrack_eventmask_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc8d40259 nf_nat_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcd5e3087 nf_conntrack_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcdf23663 nf_ct_netns_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xce175a63 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 0xd88cb436 __nf_ct_refresh_acct EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdba7326b nf_conntrack_lock -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdc307df3 nf_ct_iterate_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdec840b7 nf_ct_extend_unregister EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdf0aed48 nf_ct_port_nla_policy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe300d0d0 __nf_ct_try_assign_helper -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe9c42278 __nf_conntrack_confirm EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xec8beba6 nf_ct_expect_hash -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xed3978de nf_ct_helper_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xed91b826 nf_nat_helper_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xee3245d7 nf_ct_set_timeout -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xeebf53f9 nf_ct_iterate_cleanup_net -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf0056cc4 nf_ct_seq_offset +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xecf26365 nf_conntrack_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xee22588a nf_conntrack_alter_reply +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xef6aeb07 nf_ct_unlink_expect_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf1a1e0da nf_ct_helper_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf37888b0 nf_conntrack_helper_unregister EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf5b21e6f __nf_ct_expect_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf61cca71 nf_conntrack_eventmask_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf67d76c9 nf_ct_l4proto_log_invalid -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf7cc3d2f nf_ct_unlink_expect_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf6a80cac nf_ct_expect_related_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf84eeea9 nf_ct_iterate_cleanup_net EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfe731af8 nf_ct_invert_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfe8d85ae nf_ct_kill_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0xa5f4cdcf nf_nat_amanda_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0xd6766293 nf_conntrack_broadcast_help -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0x55d527c5 nf_nat_ftp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x0b0e7291 get_h225_addr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x59028ef1 nat_h245_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x652254d0 set_sig_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x7c717ba7 nat_callforwarding_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xb695f4b1 nat_q931_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xb8024738 set_ras_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xc4dcf80d nat_rtp_rtcp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xd5ad09f7 set_h225_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xfc487993 nat_t120_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xfeea0763 set_h245_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0x5726ea37 nf_nat_irc_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x7f2a34f5 nf_nat_pptp_hook_inbound -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x9143e8c8 nf_nat_pptp_hook_exp_gre -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xbfc9c6e7 nf_nat_pptp_hook_expectfn -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xe74f111f nf_nat_pptp_hook_outbound -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x2767a2f4 ct_sip_parse_header_uri -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x326db6f8 ct_sip_parse_request -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x6be83331 ct_sip_get_header -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x7eb1e08b ct_sip_get_sdp_header -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x8779bb24 ct_sip_parse_address_param -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xa6152d78 ct_sip_parse_numerical_param -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xa840e214 nf_nat_sip_hooks -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0xe51afbb7 nf_nat_snmp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0xae99bbba nf_nat_tftp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x1b8ab2ed nft_fwd_dup_netdev_offload -EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x2e61d29a nf_fwd_netdev_egress -EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x6083a7d7 nf_dup_netdev_egress -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x0a38e510 nf_flow_offload_ipv6_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x0e62c146 nf_flow_table_init -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x11c3020d flow_offload_teardown -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x13ff6e7a nf_flow_rule_route_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x3a523a36 nf_flow_offload_ip_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x46db1f46 flow_offload_refresh -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x5e73adfb nf_flow_dnat_port -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x616494c7 nf_flow_table_free -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x648df569 flow_offload_free -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x6d70d189 nf_flow_table_cleanup -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x733ff374 nf_flow_table_offload_setup -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x88dcd979 flow_offload_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x97df92bc nf_flow_snat_port -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xbdc3222b flow_offload_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xd0a47d98 flow_offload_add -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xd9fd765d nf_flow_rule_route_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xfece89fa flow_offload_route_init -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x00a2856b nf_nat_alloc_null_binding -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x15b995ac nf_nat_ipv6_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfeb5dafd nf_conntrack_helpers_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xff6ddd14 nf_ct_expect_iterate_net +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xffac7fd1 nf_ct_get_id +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0xf9d262d5 nf_nat_amanda_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0x19de63f1 nf_conntrack_broadcast_help +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0x43b2f2a7 nf_nat_ftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x01c4e26d set_h245_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x2867df9a nat_rtp_rtcp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x3092c386 nat_q931_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x5f876ab0 nat_callforwarding_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x6895b847 set_h225_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x776e6176 nat_t120_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x79e2a7ea nat_h245_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xa20eba21 set_sig_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xaaca5565 get_h225_addr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xb3f08996 set_ras_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0x8d2ae7af nf_nat_irc_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x04926d6a nf_nat_pptp_hook_exp_gre +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x78198d06 nf_nat_pptp_hook_inbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x8e99fc7c nf_nat_pptp_hook_outbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xb0eb8ee2 nf_nat_pptp_hook_expectfn +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x14bdac5e ct_sip_parse_header_uri +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x5227003e ct_sip_parse_request +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x66eaab5c ct_sip_get_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x77f6ddf3 ct_sip_parse_address_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xb1de5829 nf_nat_sip_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xc30e130c ct_sip_get_sdp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xfcab1baf ct_sip_parse_numerical_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0x5aa9067d nf_nat_snmp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0x8e5cc36a nf_nat_tftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x365248f1 nf_dup_netdev_egress +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x94e5aa38 nf_fwd_netdev_egress +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0xc6e72bb4 nft_fwd_dup_netdev_offload +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x005f6d96 nf_flow_table_init +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x1732fc25 flow_offload_add +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x3993cf28 nf_flow_rule_route_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x577cced6 flow_offload_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x61d9e1ea nf_flow_dnat_port +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x69abc5a3 flow_offload_free +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x78d36b75 flow_offload_teardown +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x876fe68f flow_offload_refresh +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x91863c49 nf_flow_offload_ipv6_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xae7c07b7 flow_offload_route_init +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xb038cd9c nf_flow_table_free +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xbf53d6b3 nf_flow_table_offload_setup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xcdde1f26 nf_flow_rule_route_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xd75f5986 flow_offload_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xeb01459a nf_flow_table_cleanup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xeebec8cd nf_flow_snat_port +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xfb8ff2a9 nf_flow_offload_ip_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x016322cf nf_nat_inet_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x02fe052e nf_nat_inet_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x11653056 nf_ct_nat_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x1b9ed32f nf_nat_ipv4_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x2c96a9d2 nf_nat_masquerade_ipv6 EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3bc17c49 nf_nat_masquerade_inet_register_notifiers -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x4b765530 nf_nat_ipv4_unregister_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x4d4663fc nf_ct_nat_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x4e42537e nf_nat_ipv4_register_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x76db77a5 nf_nat_ipv6_register_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x78385228 nf_nat_inet_register_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x8c548fa4 nf_nat_icmpv6_reply_translation -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x9649e087 nf_nat_masquerade_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xa2a99135 nf_nat_packet -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xb7977e5d nf_nat_redirect_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd090a90e nf_nat_inet_unregister_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd2851791 nf_nat_masquerade_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd5ea88f4 nf_nat_icmp_reply_translation +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x59dea3e0 nf_nat_ipv4_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x59f4134e nf_nat_redirect_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x83ba4016 nf_nat_alloc_null_binding +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x8a1881f3 nf_nat_ipv6_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x942bb9d7 nf_nat_packet +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x960cb733 nf_nat_redirect_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xb6e10a0d nf_nat_inet_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xc7d93645 nf_nat_icmp_reply_translation +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd29398ed nf_nat_masquerade_ipv4 EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd9c25654 nf_nat_masquerade_inet_unregister_notifiers -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xef3e030c nf_nat_inet_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xf86f75b7 nf_nat_redirect_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x022cd5cc nf_synproxy_ipv6_init +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xec205ccb nf_nat_icmpv6_reply_translation +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xf13688ad nf_nat_ipv6_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x1c0c636d nf_synproxy_ipv6_fini EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x1f099794 synproxy_init_timestamp_cookie -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x4853b573 synproxy_send_client_synack_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x52e6f7a1 nf_synproxy_ipv4_init -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x8356623d synproxy_send_client_synack -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xb69c4d2a nf_synproxy_ipv4_fini -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xc1e0213a ipv6_synproxy_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xc88fc7ac synproxy_parse_options +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x2fee3a0c nf_synproxy_ipv4_init +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x37ad1057 synproxy_send_client_synack_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x5ec25e81 synproxy_recv_client_ack_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x943350ff synproxy_parse_options +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xa2e01d79 synproxy_recv_client_ack +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xbf973ec4 synproxy_send_client_synack EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xca9fc082 synproxy_net_id -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xdaed145b synproxy_recv_client_ack_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xdea6cdfa synproxy_recv_client_ack -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xe6566f47 nf_synproxy_ipv6_fini -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xfcffb004 ipv4_synproxy_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0128d779 nft_flowtable_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xce47b541 ipv6_synproxy_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xd19e24d3 nf_synproxy_ipv4_fini +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xe27c7db2 nf_synproxy_ipv6_init +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xef6900a7 ipv4_synproxy_hook EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x06c6ca47 nft_meta_policy -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1c0df3c7 nft_register_obj -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2a51f010 nft_meta_set_init -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2c597135 nf_tables_deactivate_flowtable +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x09266ae7 nf_tables_destroy_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0a137dad nft_set_catchall_gc +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0e9d9e73 nft_set_catchall_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1645a2c0 nft_register_flowtable_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x27d99987 nft_register_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x31c48b31 nft_parse_register_store EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3251d762 nf_tables_trans_destroy_flush_work -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x33f67e30 nft_meta_get_init -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x371c29fd nft_unregister_chain_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x40d87164 nf_tables_bind_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3c249207 nft_dump_register EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x41b71e65 nft_trace_enabled -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4f7193b4 nft_register_expr -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x537ab4e1 nft_set_lookup_global -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x69dcfca1 nft_set_do_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6afe85b3 nft_meta_set_eval -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x714c0cfa nft_register_flowtable_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7202d655 nft_meta_set_dump -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x73beb56b nft_chain_validate -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7a72b117 nft_meta_get_dump -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8422a5a3 nft_meta_set_validate +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x43786e60 nft_obj_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4a9536dd nft_chain_validate +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x511349ea nft_meta_get_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x56d57a5a nft_do_chain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5bd9b5ae nft_unregister_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x65a3506c nf_tables_deactivate_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6b8fb302 nft_unregister_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6d1c69b4 nft_register_obj +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x73f4a08a nft_meta_set_validate +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x75dc687c nft_request_module EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8b5ae838 nft_chain_validate_dependency -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa13fe6cd nft_obj_notify -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa1eb8885 nft_do_chain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa6a452a6 __nft_release_basechain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa7526702 nft_dump_register -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa8aa3756 nft_meta_set_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xac6cbb63 nft_unregister_flowtable_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8d844089 nft_unregister_flowtable_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x92b12e5b nft_obj_notify +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa0ca5bec nft_meta_get_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa32234cc nft_meta_set_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xaa82a303 nft_meta_set_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xae834852 nft_flowtable_lookup EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb3bd62b8 nft_data_release +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbbb3dcd6 nft_set_elem_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc220e557 nft_data_dump EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc23cd9bb nft_chain_validate_hooks -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc83f058b nft_register_chain_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcdb04964 nft_data_dump -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcf10f10d nft_set_catchall_gc -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd9447148 nft_request_module -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xdad47d71 nft_meta_get_eval -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xdb04bb32 nft_unregister_expr -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xdb79ace1 nft_obj_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd0dd4ad0 nft_meta_get_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd1772a6a nft_unregister_obj +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xdc84dafe nft_meta_set_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xdd1f9351 __nft_release_basechain 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 0xe5bb0c84 nf_tables_deactivate_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xed5b73e3 nf_tables_destroy_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xef33307d nft_unregister_obj -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf6f51bc0 nft_parse_register_store -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf7d17a54 nft_set_catchall_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf838fbb6 nft_data_init -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xff7c6a0f nft_set_elem_destroy -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x04a5227b nfnetlink_subsys_register -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x11fffdb3 nfnetlink_unicast -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x44359b31 nfnetlink_subsys_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe3750292 nft_set_do_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe40c8691 nft_set_lookup_global +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe9abddfd nft_data_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xef310470 nft_register_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf09697ce nf_tables_bind_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf2eb731c nft_meta_set_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xfec83069 nf_tables_deactivate_flowtable +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x2e21043a nfnetlink_subsys_unregister EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x9a5144d4 nfnetlink_send -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xa31f30d4 nfnetlink_set_err -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xa729e4d0 nfnetlink_broadcast -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xbb5b089e nfnetlink_has_listeners +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x70579cb6 nfnetlink_unicast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x7d4fd7cc nfnetlink_set_err +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x8ba20561 nfnetlink_broadcast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x9aca1296 nfnetlink_subsys_register +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x9b8945aa nfnetlink_send EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x35fe3507 nfnl_acct_find_get +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xe15f689c nfnetlink_has_listeners +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x4590c31f nfnl_acct_overquota EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbecf5d14 nfnl_acct_put -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xce213672 nfnl_acct_overquota -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xf4a055ec nfnl_acct_update +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xde4ce450 nfnl_acct_update +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xe0365111 nfnl_acct_find_get EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x35eff5e0 nf_osf_fingers -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x3d4104f8 nf_osf_match -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x7c6eecf6 nf_osf_find -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x7158f8bb nft_fib_init -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xcf1ff162 nft_fib_store_result -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xd210d8da nft_fib_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xd34843c3 nft_fib_validate -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x1b54a3f0 nft_reject_init +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0xc5207b5c nf_osf_find +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0xd91dd0a9 nf_osf_match +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x23456b89 nft_fib_store_result +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x38b177ba nft_fib_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x6252c60c nft_fib_init +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xe92556df nft_fib_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x08520974 nft_reject_validate EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x1de558c1 nft_reject_icmpv6_code -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x39f0fe05 nft_reject_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x2b8ebcff nft_reject_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x30c3530c nft_reject_init EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x6081751d nft_reject_policy -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x632cf78c nft_reject_validate EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xe2c84666 nft_reject_icmp_code +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x0191cf00 xt_match_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x027851b6 xt_compat_match_from_user EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x04e27719 xt_compat_flush_offsets -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x24a40505 xt_request_find_match -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x25878a26 xt_compat_target_from_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x2f642635 xt_compat_match_from_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x481e81d6 xt_compat_match_offset -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x555a555a xt_table_unlock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x57a35f50 xt_proto_init -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7597d38c xt_request_find_table_lock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x77700991 xt_compat_match_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x10d66f7a xt_register_template +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x1b5e6608 xt_check_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3d447e32 xt_request_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x403ae2e2 xt_compat_target_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x43958933 xt_proto_fini +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x511cf201 xt_request_find_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5128f2fd xt_register_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5810ee5b xt_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5be82c93 xt_proto_init +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5e3ca9d1 xt_unregister_template +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x6e849554 xt_compat_target_to_user EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7bce4603 xt_data_to_user EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x807d2b2c xt_recseq +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x82207386 xt_compat_target_offset EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x823edea5 xt_compat_add_offset -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x8cb21943 xt_request_find_target -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x8e8049d0 xt_register_template -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x98de58fd xt_unregister_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9c7765b7 xt_match_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x96701f4b xt_compat_match_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9a4c2519 xt_hook_ops_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9b407ed3 xt_unregister_table 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 0xac19e691 xt_check_target -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xad449e54 xt_register_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbe4845f4 xt_compat_match_to_user 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 0xc9147eb7 xt_hook_ops_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd18063de xt_check_match 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 0xd9bb821b xt_copy_counters EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xddf68fc6 xt_find_revision -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe295cb0c xt_proto_fini -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe330c371 xt_compat_target_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe7e6c12e xt_target_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xeadb4828 xt_replace_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xed5a226b xt_unregister_template -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xedf91d98 xt_find_table_lock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xf3feffb8 xt_check_match -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xfa6072c0 xt_compat_target_offset -EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x2bd9b513 xt_rateest_put -EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0xc3d97835 xt_rateest_lookup -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x6961c936 nci_spi_read -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x7ae9cfad nci_spi_send -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xb697e435 nci_spi_allocate_spi -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x27e0278c nci_uart_set_config -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x67cbfc63 nci_uart_unregister -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xcf5ee664 nci_uart_register -EXPORT_SYMBOL_GPL net/nsh/nsh 0x60a93bec nsh_push -EXPORT_SYMBOL_GPL net/nsh/nsh 0xa7f87e55 nsh_pop -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x3a7670c3 ovs_vport_alloc -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x467c231a ovs_netdev_link -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xb2e553bf ovs_vport_ops_unregister -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xd2bb33b8 ovs_netdev_tunnel_destroy -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xe16cc1e7 __ovs_vport_ops_register -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xf6a59a56 ovs_vport_free -EXPORT_SYMBOL_GPL net/psample/psample 0x475cb248 psample_sample_packet -EXPORT_SYMBOL_GPL net/psample/psample 0x726cbd0e psample_group_get -EXPORT_SYMBOL_GPL net/psample/psample 0xdcb9e5b6 psample_group_put -EXPORT_SYMBOL_GPL net/psample/psample 0xf9b97f71 psample_group_take +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe3050fb1 xt_target_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe3d562ec xt_replace_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe740cf8f xt_table_unlock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xeb9d3df0 xt_request_find_match +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x1b960c10 xt_rateest_put +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0xf4e9f080 xt_rateest_lookup +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x807fa5ad nci_spi_allocate_spi +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xacce8011 nci_spi_send +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xfb2bab46 nci_spi_read +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xbc770d90 nci_uart_register +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xdb66114f nci_uart_set_config +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xf21936f9 nci_uart_unregister +EXPORT_SYMBOL_GPL net/nsh/nsh 0xa080288b nsh_push +EXPORT_SYMBOL_GPL net/nsh/nsh 0xa338d164 nsh_pop +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x51a1560a ovs_vport_ops_unregister +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x6fbdbf6b __ovs_vport_ops_register +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x77a4df26 ovs_vport_free +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xacc1e23c ovs_netdev_link +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xc80d8807 ovs_vport_alloc +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xeb8beb6c ovs_netdev_tunnel_destroy +EXPORT_SYMBOL_GPL net/psample/psample 0x2c3aa5ec psample_group_get +EXPORT_SYMBOL_GPL net/psample/psample 0x3887f8da psample_group_take +EXPORT_SYMBOL_GPL net/psample/psample 0x85636c69 psample_group_put +EXPORT_SYMBOL_GPL net/psample/psample 0x93226764 psample_sample_packet EXPORT_SYMBOL_GPL net/qrtr/ns 0x8d25501f qrtr_ns_remove EXPORT_SYMBOL_GPL net/qrtr/ns 0xa47e91ba qrtr_ns_init -EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x323d599a qrtr_endpoint_unregister -EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x5c07ee49 qrtr_endpoint_register -EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x9b72b4af qrtr_endpoint_post +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x43c70f45 qrtr_endpoint_unregister +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0xa017d3ae qrtr_endpoint_register +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0xa5ee08aa qrtr_endpoint_post EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq -EXPORT_SYMBOL_GPL net/rds/rds 0x00ddcc79 rds_conn_drop -EXPORT_SYMBOL_GPL net/rds/rds 0x20d5d245 rds_conn_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0x0a3339c5 rds_rdma_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x14307f69 rds_trans_unregister +EXPORT_SYMBOL_GPL net/rds/rds 0x1700d16b rds_trans_register +EXPORT_SYMBOL_GPL net/rds/rds 0x1780c416 rds_inc_init +EXPORT_SYMBOL_GPL net/rds/rds 0x24ff2210 rds_info_register_func +EXPORT_SYMBOL_GPL net/rds/rds 0x298e038f rds_conn_create EXPORT_SYMBOL_GPL net/rds/rds 0x2b0d543c rds_message_add_extension -EXPORT_SYMBOL_GPL net/rds/rds 0x2bd196c5 rds_conn_destroy EXPORT_SYMBOL_GPL net/rds/rds 0x36087aa4 rds_stats -EXPORT_SYMBOL_GPL net/rds/rds 0x3a581500 rds_atomic_send_complete -EXPORT_SYMBOL_GPL net/rds/rds 0x400aae51 rds_trans_register +EXPORT_SYMBOL_GPL net/rds/rds 0x3b1cc97d rds_info_deregister_func +EXPORT_SYMBOL_GPL net/rds/rds 0x3f347954 rds_message_addref EXPORT_SYMBOL_GPL net/rds/rds 0x45a4781e rds_addr_cmp -EXPORT_SYMBOL_GPL net/rds/rds 0x544477c8 rds_send_xmit +EXPORT_SYMBOL_GPL net/rds/rds 0x474f2d49 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 0x61462c9e rds_message_addref -EXPORT_SYMBOL_GPL net/rds/rds 0x6207bd71 rds_inc_path_init -EXPORT_SYMBOL_GPL net/rds/rds 0x64f9410b rds_connect_path_complete -EXPORT_SYMBOL_GPL net/rds/rds 0x6cb78b49 rds_for_each_conn_info +EXPORT_SYMBOL_GPL net/rds/rds 0x618d204c rds_connect_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x61d2f251 rds_send_ping +EXPORT_SYMBOL_GPL net/rds/rds 0x62850a23 rds_send_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0x6595bbe8 rds_atomic_send_complete EXPORT_SYMBOL_GPL net/rds/rds 0x7b399e66 rds_page_remainder_alloc +EXPORT_SYMBOL_GPL net/rds/rds 0x7dd9c355 rds_message_put EXPORT_SYMBOL_GPL net/rds/rds 0x85e4e520 rds_stats_info_copy -EXPORT_SYMBOL_GPL net/rds/rds 0x8610b982 rds_message_put -EXPORT_SYMBOL_GPL net/rds/rds 0x86613867 rds_send_ping -EXPORT_SYMBOL_GPL net/rds/rds 0x933ae425 rds_conn_path_drop -EXPORT_SYMBOL_GPL net/rds/rds 0x93ce90e0 rds_conn_path_connect_if_down -EXPORT_SYMBOL_GPL net/rds/rds 0x94c8ee60 rds_info_deregister_func -EXPORT_SYMBOL_GPL net/rds/rds 0x98d8b235 rds_send_path_reset -EXPORT_SYMBOL_GPL net/rds/rds 0x9a22231d rds_message_unmapped -EXPORT_SYMBOL_GPL net/rds/rds 0x9e62903c rds_trans_unregister -EXPORT_SYMBOL_GPL net/rds/rds 0xa3db696c rds_connect_complete -EXPORT_SYMBOL_GPL net/rds/rds 0xafd6980c rds_recv_incoming -EXPORT_SYMBOL_GPL net/rds/rds 0xb4fe0d0e rds_send_path_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0x8975bea5 rds_recv_incoming +EXPORT_SYMBOL_GPL net/rds/rds 0x8b3d8143 rds_connect_path_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x8e51d0bb rds_send_xmit +EXPORT_SYMBOL_GPL net/rds/rds 0x8ed6f6ed rds_inc_path_init +EXPORT_SYMBOL_GPL net/rds/rds 0x9624537f rds_for_each_conn_info +EXPORT_SYMBOL_GPL net/rds/rds 0x98b3a3d6 rds_conn_destroy +EXPORT_SYMBOL_GPL net/rds/rds 0x9f97136c rds_conn_drop +EXPORT_SYMBOL_GPL net/rds/rds 0xb34051f7 rds_conn_path_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0xb9234e5c rds_send_path_reset +EXPORT_SYMBOL_GPL net/rds/rds 0xc0c8d476 rds_conn_connect_if_down EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy -EXPORT_SYMBOL_GPL net/rds/rds 0xce5d762c rds_conn_create_outgoing -EXPORT_SYMBOL_GPL net/rds/rds 0xd76af239 rds_info_register_func -EXPORT_SYMBOL_GPL net/rds/rds 0xe10d43c0 rds_send_drop_acked -EXPORT_SYMBOL_GPL net/rds/rds 0xe7df0f3d rds_inc_init -EXPORT_SYMBOL_GPL net/rds/rds 0xeec4b0b7 rds_rdma_send_complete -EXPORT_SYMBOL_GPL net/rds/rds 0xf845758f rds_inc_put +EXPORT_SYMBOL_GPL net/rds/rds 0xd51a73b9 rds_conn_create_outgoing +EXPORT_SYMBOL_GPL net/rds/rds 0xdbed23fb rds_send_path_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0xeaa04b0e rds_inc_put +EXPORT_SYMBOL_GPL net/rds/rds 0xf13b38af rds_message_unmapped EXPORT_SYMBOL_GPL net/rds/rds 0xfd22dd56 rds_cong_map_updated -EXPORT_SYMBOL_GPL net/rds/rds 0xff697b3d rds_conn_create -EXPORT_SYMBOL_GPL net/sched/sch_pie 0x36cc22bc pie_process_dequeue +EXPORT_SYMBOL_GPL net/sched/sch_pie 0x0a0f1662 pie_process_dequeue EXPORT_SYMBOL_GPL net/sched/sch_pie 0x6ce9b467 pie_calculate_probability -EXPORT_SYMBOL_GPL net/sched/sch_pie 0x944636cc pie_drop_early +EXPORT_SYMBOL_GPL net/sched/sch_pie 0x81448dd0 pie_drop_early EXPORT_SYMBOL_GPL net/sched/sch_taprio 0x5fc3c6ed taprio_offload_free EXPORT_SYMBOL_GPL net/sched/sch_taprio 0xa7f08102 taprio_offload_get -EXPORT_SYMBOL_GPL net/sctp/sctp 0x2b805d76 sctp_for_each_endpoint -EXPORT_SYMBOL_GPL net/sctp/sctp 0x4886e507 sctp_transport_lookup_process -EXPORT_SYMBOL_GPL net/sctp/sctp 0x4b84f68b sctp_get_sctp_info -EXPORT_SYMBOL_GPL net/sctp/sctp 0xb108d2bc sctp_transport_traverse_process -EXPORT_SYMBOL_GPL net/smc/smc 0x0f907eba smcd_register_dev -EXPORT_SYMBOL_GPL net/smc/smc 0x2a72adf8 smcd_handle_event -EXPORT_SYMBOL_GPL net/smc/smc 0x33a5211e smcd_alloc_dev -EXPORT_SYMBOL_GPL net/smc/smc 0xa4de04e6 smcd_handle_irq -EXPORT_SYMBOL_GPL net/smc/smc 0xa98da9b5 smcd_free_dev -EXPORT_SYMBOL_GPL net/smc/smc 0xd1ac1cc7 smc_proto -EXPORT_SYMBOL_GPL net/smc/smc 0xd62d5db3 smcd_unregister_dev -EXPORT_SYMBOL_GPL net/smc/smc 0xd9690008 smc_hash_sk -EXPORT_SYMBOL_GPL net/smc/smc 0xe184346f smc_unhash_sk -EXPORT_SYMBOL_GPL net/smc/smc 0xf025819d smc_proto6 -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x2e61ee62 gss_mech_register +EXPORT_SYMBOL_GPL net/sctp/sctp 0x65b0cfb3 sctp_transport_traverse_process +EXPORT_SYMBOL_GPL net/sctp/sctp 0x92de7290 sctp_for_each_endpoint +EXPORT_SYMBOL_GPL net/sctp/sctp 0xc0ec0137 sctp_transport_lookup_process +EXPORT_SYMBOL_GPL net/sctp/sctp 0xd6f29e0e sctp_get_sctp_info +EXPORT_SYMBOL_GPL net/smc/smc 0x0ae71aac smcd_unregister_dev +EXPORT_SYMBOL_GPL net/smc/smc 0x416037f9 smcd_handle_irq +EXPORT_SYMBOL_GPL net/smc/smc 0x772e08a0 smcd_handle_event +EXPORT_SYMBOL_GPL net/smc/smc 0xb0ec4ecb smcd_alloc_dev +EXPORT_SYMBOL_GPL net/smc/smc 0xb84c7a65 smc_unhash_sk +EXPORT_SYMBOL_GPL net/smc/smc 0xbb894565 smcd_free_dev +EXPORT_SYMBOL_GPL net/smc/smc 0xcbfef36c smcd_register_dev +EXPORT_SYMBOL_GPL net/smc/smc 0xe661dbd8 smc_proto6 +EXPORT_SYMBOL_GPL net/smc/smc 0xe7a0e931 smc_hash_sk +EXPORT_SYMBOL_GPL net/smc/smc 0xf9391c18 smc_proto +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x255dd3d7 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 0x48506d50 svcauth_gss_register_pseudoflavor -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x59cd9e74 svcauth_gss_flavor -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xc99195d5 gss_mech_unregister +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x4b1f1e5e gss_mech_unregister +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x5166d0b5 svcauth_gss_flavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x5ab618f4 svcauth_gss_register_pseudoflavor EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xd7673035 g_verify_token_header -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x004e2765 rpc_put_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0422aca3 svc_generic_init_request -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x058a2334 xprt_wait_for_reply_request_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x03276281 svc_xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x035ded8f svc_xprt_names +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x045880c4 write_bytes_to_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x04b2494d xprt_update_rtt EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05e807a9 xdr_encode_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0616b3a0 sunrpc_cache_pipe_upcall_timeout EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x065994f1 xdr_encode_opaque_fixed -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x07ec190f xdr_page_pos -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x08c505d5 svc_reg_xprt_class -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0cf820e9 _copy_from_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0ed9af9f rpc_clnt_test_and_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x133fb61d xprt_request_get_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x134da775 svc_fill_write_vector -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x14053173 cache_seq_next_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1480eea7 xdr_reserve_space_vec -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x14f230ca rpc_max_bc_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x15238e1b rpc_clnt_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x15c77374 svc_authenticate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x164231c1 rpcauth_lookupcred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x18d64145 __rpc_wait_for_completion_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1992d458 svc_close_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1997ec9d rpc_sleep_on_priority -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1bcdc52a rpc_proc_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1c5216f2 sunrpc_cache_register_pipefs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1cbef0ab rpc_alloc_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1d7527e3 svc_seq_show +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x06fa8826 put_rpccred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0725abac rpc_alloc_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x08087f4d xdr_align_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0976f345 cache_destroy_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x09b0d9e3 rpcauth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0adcb294 xprt_reconnect_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0c1e522a xprt_disconnect_done +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0d918f6d rpc_call_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f9a84e1 rpc_get_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x13ee01eb cache_seq_start_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x14deb010 rpc_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x15449812 svc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x168a9648 rpc_add_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x17ec95e8 xprt_reconnect_backoff +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x17f651db xdr_stream_decode_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x184daef6 cache_create_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x189e3692 xdr_buf_trim +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1ad1dc47 rpcauth_lookupcred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1bcdfd2d xdr_buf_from_iov +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1bf5531c rpc_mkpipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1c723706 xprt_complete_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1cd7ba9b rpc_count_iostats_metrics +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1cf58fb4 rpc_init_pipe_dir_object EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e119a79 rpcauth_get_pseudoflavor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1ef7cd22 sunrpc_destroy_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1ec64cb8 xprt_wait_for_reply_request_def EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f2a9970 rpc_ntop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x208078bc xdr_init_decode_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x20d15c2d rpc_count_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x20fc6194 rpc_count_iostats_metrics -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x211d379a xdr_init_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x22d1ce4b xdr_encode_word -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x235e6357 xdr_stream_decode_opaque_dup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x23f89ce5 xprt_complete_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2563970f rpcauth_lookup_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x273bbbe4 svc_process -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x28ae0807 xprt_force_disconnect -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x28affde3 rpc_num_bc_slots +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f88c21c svc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x229587ec svc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x22d9c325 xdr_encode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x242c1a65 rpc_wake_up_first +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2558afb4 rpc_clone_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x25adc518 xprt_wait_for_buffer_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x25e6da1c svc_rpcb_setup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x25fbc302 __rpc_wait_for_completion_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x262f73d5 rpc_wake_up_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x28f4b8fa rpc_wake_up_queued_task EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x29be8400 rpc_init_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2aa6c786 unix_domain_find -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2c8a0f43 xdr_stream_decode_opaque -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2e4039bb svc_sock_update_bufs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2eeddca2 xprt_wait_for_reply_request_def -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2faa9fa7 svc_addsock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x309cbfd4 rpc_clnt_xprt_switch_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x312152f8 xdr_commit_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2957d66a rpcauth_destroy_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2a9c793b rpc_put_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2d708a05 rpc_clnt_xprt_switch_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2da81fde svc_close_xprt EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x32a568b8 rpc_exit -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x33b8b1a3 rpc_force_rebind -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x345d282d xprt_setup_backchannel -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x34998060 svc_xprt_names +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x32cdd52e rpc_exit EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x34d184de rpc_wake_up_status -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x34d76ba0 rpc_call_sync -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x35f6d499 sunrpc_cache_update -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x381ea77e cache_check +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3610ad7a xdr_commit_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x377840e5 rpc_clone_client_set_auth EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3b166557 svc_create_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3b340aab svc_destroy -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3bb13fa3 rpc_clnt_show_stats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3c361634 rpcauth_init_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3d5046c9 xdr_stream_decode_string_dup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3df5274c xdr_shift_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3ef70b01 read_bytes_from_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x39af7698 svc_xprt_init +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x39eda345 bc_svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x39fab526 xdr_reserve_space_vec +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3a671f57 rpc_force_rebind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3a8e3e70 rpc_peeraddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3b4d03a6 svc_xprt_copy_addrs EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f9a2b0b rpcauth_get_gssinfo -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x41a3d076 xdr_expand_hole -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4353c8e4 svc_rpcb_setup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x438534bc xprt_unpin_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x44986ff3 xdr_stream_decode_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3fc6e972 rpc_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x406d9115 xprt_free_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x40778cca rpcb_getport_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x415e0760 xprt_lookup_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x41b8d546 svcauth_unix_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x41c89be9 svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x42dd4c80 svc_exit_thread EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x453efa54 svc_pool_map -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x45ad8e35 xprt_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x488eddf1 gssd_running -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x494be1c6 rpc_delay -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4959913f rpc_malloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x49ac1ef1 xdr_init_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4540bd49 sunrpc_cache_unregister_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x45743a3a rpc_put_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x46334a37 xprt_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4673c627 xdr_expand_hole +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x46a30687 xdr_terminate_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x46a8a521 svc_rqst_replace_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x46dcb3f3 xprt_pin_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x46fa8c54 svc_encode_result_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4914037e xprt_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x496e822a rpcauth_unwrap_resp_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4993857c xdr_process_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4a5ee89f xprt_release_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4ad84075 cache_check +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4ad94db9 xprt_force_disconnect EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4afedab1 xprtiod_workqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4b13660e rpc_wake_up_first -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4b75ab7d rpc_d_lookup_sb -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4bdc4d94 rpc_sleep_on_priority_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4c2dfed3 rpc_peeraddr2str -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4d13728f xdr_inline_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4b8305e9 svc_set_num_threads_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4c7f3271 xdr_read_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4cb5c585 rpc_restart_call +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4d3b5072 svc_proc_unregister EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4dac77f0 xdr_encode_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e2faa30 rpcauth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e5b6615 sunrpc_cache_update EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e8f6ca7 sunrpc_net_id -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x501a8b3e rpc_call_null -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x50ef44a9 xdr_buf_subsegment -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x516ab7de cache_unregister_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x519c09fa svc_rpcbind_set_version -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x52481ebc rpc_add_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5303d04b rpc_shutdown_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4f3a8082 svc_auth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5069e9e1 rpc_set_connect_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x512bdda6 unix_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5189de9b svc_recv +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x524f4582 cache_seq_next_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x52bf2f94 svc_generic_init_request EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5431fa44 rpc_clnt_xprt_switch_has_addr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a060eb5 rpc_proc_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a09a778 svc_xprt_deferred_close +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x54e93868 xdr_enter_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x55f5d6e4 xprt_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x594a8f61 sunrpc_cache_pipe_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x59cba87e auth_domain_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x59e633b3 xdr_encode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x59eafccb rpc_switch_client_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a36f81b rpc_clnt_show_stats EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a45ba31 svc_auth_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5d2f53fe rpc_clnt_xprt_switch_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5d6760a7 rpc_killall_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5db111e4 rpcauth_wrap_req_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5f00a7d1 auth_domain_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x60a90843 svc_reserve -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x61c55fde svc_recv -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x624d6bfa xprt_pin_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x626c6936 rpc_clnt_swap_deactivate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x636984d2 sunrpc_cache_pipe_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6480f153 sunrpc_cache_unhash -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x64834835 csum_partial_copy_to_xdr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x64b9fce4 svc_xprt_enqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x662738b3 rpcb_getport_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x667389c3 xprt_wake_up_backlog -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66d13744 sunrpc_init_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a462041 svc_rqst_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5c79d7f4 rpc_sleep_on +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5cce7f83 svc_sock_update_bufs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5d4a6498 rpc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5de14a00 xdr_inline_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5eab3f5a rpc_task_release_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5ff9924b xdr_stream_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6022a0c4 svc_fill_symlink_pathname +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x614c3fa2 rpc_pipe_generic_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x62d60014 rpc_sleep_on_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x64948d1d rpc_pton +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x65a2bca4 xprt_register_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66c9a341 xprt_reserve_xprt_cong EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66ed2439 rpc_destroy_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x676ca4b7 xprt_alloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x67cbc9f1 xprt_unregister_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x682dea64 xprt_write_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x68a9f4b7 svc_rqst_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x68ed051b auth_domain_lookup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6b0e6e1f svc_print_addr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6b4e881f rpc_put_task_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6e19c368 xdr_read_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71b2aba2 rpc_wake_up_queued_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6730250f rpc_run_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x69cca861 sunrpc_cache_lookup_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6adab967 sunrpc_init_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6b1529b5 rpc_localaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6d12a994 svc_rpcb_cleanup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6d537bb4 rpcauth_stringify_acceptor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6fae7bdc svc_fill_write_vector +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x70f73f7a rpc_bind_new_program EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71bc40e3 rpc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71cee202 rpcauth_init_cred EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fa908a cache_flush -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x72b80e43 xprt_reconnect_backoff -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x76d0ede3 xprt_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x775db31b xdr_buf_trim -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7838f12a rpc_release_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x794cd365 rpc_clnt_swap_activate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7b05405b svc_xprt_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7b40c85a rpc_clnt_iterate_for_each_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7db75806 xprt_update_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7ddd08e6 rpc_get_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7216e784 svc_alien_sock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x72f3e90e xdr_stream_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x743feb29 svc_drop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x74a21f16 svc_xprt_deferred_close +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7551f9fa rpc_init_pipe_dir_head +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x758748f7 rpc_queue_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x760226e6 svc_authenticate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x77745694 rpc_call_null +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7afc1ac4 svc_xprt_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7b5f12be rpc_call_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7ba7dea3 xprt_unpin_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7c0a267e xdr_stream_decode_opaque_dup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7cbc1e2b xdr_shift_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7d190edf rpc_call_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7dc17e6f svc_addsock EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7eb6b32e svc_set_num_threads_sync -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7f870c37 rpc_put_sb_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80788c75 svc_exit_thread -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8098271a svc_set_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x81654ffb svc_rqst_replace_page -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x827ce819 rpcauth_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x82b4d4dc rpcauth_destroy_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x82c11b37 xprt_reserve_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8376283d rpc_wake_up_next -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x83854e85 rpc_unlink -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8748b3b1 xdr_stream_pos -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x882fd64e rpc_restart_call -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x883b0f34 rpc_set_connect_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8854f3b4 rpc_restart_call_prepare -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x88b53a66 rpc_remove_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8db38e7b xprt_adjust_cwnd -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8e8a4fe7 xdr_reserve_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8ef89fdc write_bytes_to_xdr_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8f97fdab rpcauth_unwrap_resp_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x906be255 svc_xprt_received -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9074212d rpc_call_start -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x93593dd9 rpc_uaddr2sockaddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x94acccbf rpc_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9532514c cache_seq_stop_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x966f402b svcauth_unix_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80d71b0c rpc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x83f692e4 cache_seq_stop_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x83f8aef7 svc_find_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x84bf0cd3 svc_age_temp_xprts_now +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x84f7904f svc_rqst_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x880de51c cache_unregister_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x89ff5efe xprt_write_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8a5181d6 rpc_sleep_on_priority_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8c062a46 xdr_stream_decode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8c435d33 xprt_release_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8cf7a95e xdr_init_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8d7c9091 rpc_destroy_pipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8da1675f rpc_killall_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8dbc4aef rpc_peeraddr2str +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8df9096e rpc_clnt_setup_test_and_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8eb01112 rpc_find_or_alloc_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9018b162 xdr_reserve_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x911093f6 svc_prepare_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9325cbfc rpc_clnt_test_and_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x93401d4b xdr_decode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9376b282 xprt_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x94115b88 rpc_d_lookup_sb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x947dc0ee read_bytes_from_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x95a34ac9 svc_reg_xprt_class EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9670b5a1 rpc_free_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x96df0eb8 rpc_pton -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x96e9934f xdr_inline_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9889cb44 xprt_disconnect_done -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98e09613 xdr_process_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x993a1ed2 svc_auth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9696121b rpcauth_wrap_req_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x99513d03 gssd_running EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x99aee353 rpc_init_priority_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x99c0659c svc_create_pooled -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9a436b00 rpc_net_ns -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9b5f2c2d rpc_clnt_setup_test_and_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9cab3c19 bc_svc_process -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9cbe1a7c svc_find_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9d7cda6e rpc_sleep_on -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9e1c5681 rpc_prepare_reply_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9ee8ea27 rpc_sleep_on_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9f700523 rpc_pipe_generic_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa12645a4 rpc_clone_client_set_auth -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa12c039e xdr_decode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9bca86ac svc_shutdown_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9cdd5bbd auth_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9ce698e5 rpcauth_init_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9dc05a9c xprt_wake_pending_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa06e317b xprt_unlock_connect EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa13acdb8 svc_pool_map_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa30f2fca xdr_terminate_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa4fe033e svcauth_unix_set_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa6b9df95 svc_unreg_xprt_class -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa6fa93a4 put_rpccred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa7cc6f41 xprt_reconnect_delay -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa97caa1e svc_proc_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xab16fad2 rpc_switch_client_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xad1f7d15 svc_prepare_thread -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xadfc84be rpc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xae6f0611 xdr_enter_page -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf2015c7 rpc_task_release_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa171e93b xdr_decode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa2fe2d33 sunrpc_cache_unhash +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa329bee2 svc_bind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa3d0abfb rpc_uaddr2sockaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa3f6c02e rpc_max_bc_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa6483584 rpc_task_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa6e2293c rpc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa71648e0 rpc_put_task_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa79fe760 rpc_malloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa9e53dc4 sunrpc_destroy_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xad051c62 rpc_unlink EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb0c9097c svc_xprt_init -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb2ec2365 svc_set_num_threads +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb0ed4643 xdr_init_decode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb174ec55 svcauth_unix_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb1e121f9 rpc_release_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb255a556 svc_set_num_threads EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb312d0c4 svc_pool_map_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb4052001 xprt_reserve_xprt_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb4b922b7 svc_proc_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb5038b0b rpc_init_pipe_dir_head +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb3416027 rpc_net_ns +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb3c70663 sunrpc_cache_pipe_upcall_timeout EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb8c7b223 xprt_wait_for_buffer_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xba3cad63 svc_fill_symlink_pathname -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbbb13610 cache_seq_start_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbd71c44b auth_domain_find -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf89e4c0 rpc_mkpipe_dentry +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb8cea99b csum_partial_copy_to_xdr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb91d4d47 xdr_write_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xba4b9912 xprt_wait_for_reply_request_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbaec0195 auth_domain_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbba0b622 rpc_num_bc_slots +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbd057acd svc_generic_rpcbind_set +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbecebeee xprt_adjust_cwnd EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12435e3 rpc_calc_rto -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc28fbaa3 rpc_find_or_alloc_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc32caf94 xprt_destroy_backchannel -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc36fad0e xprt_lock_connect -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3c892fc sunrpc_cache_lookup_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc4bf3e12 rpc_setbufsize -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc4d473ec svc_rqst_alloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc541a30b xdr_encode_array2 -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc5a6567c rpc_peeraddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc655209a xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc202f96d svc_create_pooled +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc2c91593 svc_xprt_do_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3ba4fb5 rpc_clnt_swap_deactivate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc4998ad5 xprt_wake_up_backlog +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc5798cf0 rpc_clnt_swap_activate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc721cd25 xprt_add_backlog +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc845f00d svc_xprt_received EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc93c5037 rpcauth_stringify_acceptor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xca0013ae xdr_write_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcc99b071 cache_create_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcd834a82 xprt_wake_pending_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce1c33ab xprt_free_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc989a7db rpc_clnt_xprt_switch_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcb0d8e07 sunrpc_cache_register_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xccfa3710 svc_seq_show EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce678a59 xdr_decode_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcefbbb19 svc_xprt_copy_addrs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcf125597 xdr_align_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcef4e37c xprt_request_get_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd05b72d6 xprt_lock_connect EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd10d1d5b rpc_machine_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd1f0e468 rpc_run_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd2671583 rpc_bind_new_program -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd2c31f76 xprt_alloc_slot -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd3998709 rpc_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd47cce3b svc_age_temp_xprts_now -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd48991f6 xdr_stream_subsegment -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd4926dcf svc_drop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd4c62be1 rpc_localaddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd65a24aa xprt_lookup_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd6a95f72 cache_destroy_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd80f461d svc_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd87c34f9 rpc_queue_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd9177784 svc_wake_up -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdb9f7c3e xdr_decode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd1225e71 xdr_inline_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd2aa2c8a svc_reserve +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd3264d97 xdr_init_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd382a3f2 xprt_setup_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd3da6cdf svc_print_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd50bb348 svc_rpcbind_set_version +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd793b1a8 svc_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd7cfcbeb rpc_restart_call_prepare +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd8c567f5 xprt_release_rqst_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd9706914 rpcauth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd9bdf341 rpc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdacb12d5 xprt_unregister_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdb43cb26 cache_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdb8d5cc2 rpc_count_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdcd3dc58 xprt_reserve_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd16b234 xdr_buf_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd1ae36f rpc_clnt_add_xprt EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd691402 xprt_find_transport_ident -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xddad683e rpc_clone_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdeea368c svc_xprt_do_enqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdfb37929 svc_shutdown_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe04eed82 svc_bind -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe27800ea rpc_mkpipe_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe35ad56e rpc_destroy_pipe_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe51fed2e sunrpc_cache_unregister_pipefs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe55a76eb xprt_release_rqst_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe168c598 rpc_prepare_reply_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1736d82 rpc_setbufsize +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe48cb4da rpc_sleep_on_priority EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe67db833 svc_encode_result_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe922ac3e xprt_unlock_connect -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe9576201 rpcauth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5d84b54 xdr_page_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe9428880 cache_register_net EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeaddd84c svc_alien_sock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xed0b6ea1 xprt_add_backlog +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xec533fef svc_destroy EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedcf6be4 qword_add -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xee0df5c9 svc_rpcb_cleanup EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeeacab69 rpc_update_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf00d1175 rpc_call_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xef714512 svc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xef8f4a6e rpc_remove_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf02a0924 xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf0458bab rpc_shutdown_client EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf0b7775d rpc_init_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf0c363d0 rpcauth_init_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf359e1a0 svc_generic_rpcbind_set -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf514beff xprt_release_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf601a4e3 cache_purge -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf83e44a1 svc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfce972c6 xprt_release_xprt_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfcfa49eb xdr_buf_from_iov -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfda1dd9d rpc_task_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfdcb033a cache_register_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfe312968 xprt_register_transport -EXPORT_SYMBOL_GPL net/tls/tls 0x5115b038 tls_offload_tx_resync_request -EXPORT_SYMBOL_GPL net/tls/tls 0x716d50c2 tls_encrypt_skb -EXPORT_SYMBOL_GPL net/tls/tls 0xb259c59e tls_validate_xmit_skb -EXPORT_SYMBOL_GPL net/tls/tls 0xcb297a28 tls_device_sk_destruct -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x037065f3 virtio_transport_stream_is_active +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf1c75f67 rpcauth_lookup_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf2154401 xprt_destroy_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf666e361 rpcauth_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf90ba3c0 rpc_clnt_iterate_for_each_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfb6c7c0d rpc_clnt_xprt_switch_has_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfbc979e1 rpc_mkpipe_dentry +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfc1673fe svc_create_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfe2e4318 svc_unreg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xff5753c5 _copy_from_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xffdb8e00 xdr_stream_decode_string_dup +EXPORT_SYMBOL_GPL net/tls/tls 0x0e9b6856 tls_device_sk_destruct +EXPORT_SYMBOL_GPL net/tls/tls 0x2999f5a0 tls_encrypt_skb +EXPORT_SYMBOL_GPL net/tls/tls 0xb87280eb tls_validate_xmit_skb +EXPORT_SYMBOL_GPL net/tls/tls 0xc7fe7714 tls_offload_tx_resync_request +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x0392a61f virtio_transport_notify_send_pre_block EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x03a81e69 virtio_transport_stream_allow -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x0a9b84a7 virtio_transport_release -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x15444698 virtio_transport_notify_recv_pre_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x1bae0b73 virtio_transport_connect -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x1ceaa0be virtio_transport_notify_send_post_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x1ed0d7b7 virtio_transport_recv_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2b0afada virtio_transport_dgram_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2e77cff4 virtio_transport_notify_poll_out -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2f54c419 virtio_transport_notify_send_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x3fd518d7 virtio_transport_dgram_bind -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x4cea5eae virtio_transport_notify_recv_pre_block -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x4dc8d9ef virtio_transport_seqpacket_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x551e9e37 virtio_transport_stream_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x55d278b1 virtio_transport_inc_tx_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x5da33091 virtio_transport_do_socket_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x67d91d1d virtio_transport_notify_send_pre_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7ef54d71 virtio_transport_notify_send_pre_block -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x84896703 virtio_transport_free_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x8a4ec1f1 virtio_transport_destruct -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x921373cf virtio_transport_seqpacket_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x9f94a366 virtio_transport_notify_poll_in -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xac607125 virtio_transport_seqpacket_has_data -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb3454c61 virtio_transport_notify_recv_post_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x048195e9 virtio_transport_notify_recv_pre_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x0c959237 virtio_transport_destruct +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x140cc0f2 virtio_transport_do_socket_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x18904477 virtio_transport_shutdown +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x1a4c3db3 virtio_transport_notify_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x1d6a3102 virtio_transport_seqpacket_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x213f6bc9 virtio_transport_stream_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2963836d virtio_transport_free_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x37b307c9 virtio_transport_put_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x39cc7b4c virtio_transport_dgram_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x3b0b52e5 virtio_transport_stream_rcvhiwat +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x3b22757c virtio_transport_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x4acbb0c1 virtio_transport_notify_poll_out +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x5666dd04 virtio_transport_stream_is_active +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x59852854 virtio_transport_connect +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x68a9f90b virtio_transport_notify_poll_in +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x68f4e105 virtio_transport_release +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x69ddc71a virtio_transport_get_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x77fd62e5 virtio_transport_seqpacket_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7b13cb49 virtio_transport_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7fe66340 virtio_transport_inc_tx_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x824c8dce virtio_transport_dgram_bind +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x847077d1 virtio_transport_stream_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x98e5bf82 virtio_transport_dgram_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x9d5de456 virtio_transport_seqpacket_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x9ecab263 virtio_transport_notify_recv_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa0e9b296 virtio_transport_notify_send_post_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa66b2f8e virtio_transport_notify_send_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xaf3e638f 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 0xbae203d5 virtio_transport_dgram_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xbd29b951 virtio_transport_stream_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xc5b514c0 virtio_transport_get_credit -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xcc5642ff virtio_transport_shutdown -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xcda7be7b virtio_transport_put_credit -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xda272798 virtio_transport_stream_has_space -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe0291d0c virtio_transport_stream_rcvhiwat -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe9298a50 virtio_transport_notify_buffer_size -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xec5e898b virtio_transport_stream_has_data -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf1ae8287 virtio_transport_deliver_tap_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xfb73655c virtio_transport_notify_recv_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x03eae9c0 vsock_find_bound_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0abe3b1c vsock_core_unregister +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd7918494 virtio_transport_notify_recv_post_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd90fe3d2 virtio_transport_recv_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf76a1276 virtio_transport_notify_recv_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xfcbe9827 virtio_transport_notify_send_pre_enqueue EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0e9bc9b6 vsock_addr_unbind -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x10d1efc3 vsock_remove_connected -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x13c21531 vsock_insert_connected -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x25fddd80 vsock_remove_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x16054ede vsock_core_register +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x20e3d862 vsock_create_connected EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x284e07d8 vsock_bind_table -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x378dc1aa vsock_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2d6dd8d0 vsock_for_each_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2dcc4d7c vsock_core_unregister EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x3d4b0fca vsock_addr_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x3da0b276 vsock_core_get_transport EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4b99648c vsock_addr_bound -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x565eb3bc vsock_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4d3b8195 vsock_find_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x60ef98e5 vsock_enqueue_accept +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7027474e vsock_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x70b9dc99 vsock_find_bound_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x75ae0092 vsock_add_tap EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x77c14317 vsock_addr_cast -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x77f2a2b9 vsock_create_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x89d980f7 vsock_add_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x8d0e2053 vsock_stream_has_data EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x90aa8549 vsock_find_cid +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9a853496 vsock_remove_sock EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9bb6fd09 vsock_connected_table -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9d808436 vsock_add_pending -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9e485f8b vsock_remove_bound -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xa19a1ef1 vsock_deliver_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9ca968bc vsock_remove_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9e366700 vsock_insert_connected EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xaf2674b5 vsock_addr_equals_addr -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xafdb07d4 vsock_assign_transport -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xb48d58a1 vsock_remove_sock +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xb3816ba0 vsock_core_get_transport +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xb691833a vsock_remove_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc43c90d5 vsock_assign_transport EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc92f7f50 vsock_table_lock -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xcdfd89a9 vsock_add_tap -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xdc444f80 vsock_find_connected_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xe5e3b4d5 vsock_core_register +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xce1824cd vsock_deliver_tap EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xec96eadf vsock_addr_validate -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xece64c2e vsock_enqueue_accept -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xefc64f98 vsock_remove_pending -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf54a75c2 vsock_for_each_connected_socket -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x1451862c cfg80211_shutdown_all_interfaces -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x1ac59b84 cfg80211_wext_siwmode -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x1d21f870 cfg80211_wext_giwname -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x2b5f010c cfg80211_pmsr_report -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x2c5d2146 cfg80211_wext_giwrange -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x470fcc60 cfg80211_wext_giwmode -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x50145bf4 cfg80211_pmsr_complete -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x52d7bdbd cfg80211_wext_siwfrag -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x53294bc9 cfg80211_vendor_cmd_reply -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x9b45bfd9 cfg80211_wext_siwscan -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xa44175c4 cfg80211_wext_giwfrag -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xc3f3af76 cfg80211_vendor_cmd_get_sender -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xdbe6d26b cfg80211_wext_giwrts -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xef19ac98 cfg80211_wext_giwretry -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xf408f0be cfg80211_wext_siwrts -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xfbb58e20 cfg80211_wext_giwscan +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf439a07a vsock_remove_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xfee6af3d vsock_remove_pending +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x0c9c6ab6 cfg80211_wext_giwname +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x19761249 cfg80211_wext_giwretry +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x1a734749 cfg80211_wext_siwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x3cdbb31a cfg80211_wext_giwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x3ddd83cb cfg80211_vendor_cmd_get_sender +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x46c04b2d cfg80211_pmsr_complete +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x48150a60 cfg80211_wext_giwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x57240007 cfg80211_wext_siwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x57541c72 cfg80211_wext_giwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x9049a417 cfg80211_vendor_cmd_reply +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x93391522 cfg80211_wext_siwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xa46d29d0 cfg80211_pmsr_report +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xaded2273 cfg80211_wext_giwrange +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xbd32df7c cfg80211_wext_giwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xd69de381 cfg80211_wext_siwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xe9b8ba6d cfg80211_shutdown_all_interfaces 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 @@ -18711,7487 +18757,7506 @@ -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x2467960e ipcomp_init_state -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x3c8b1589 ipcomp_input -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x45a7550a ipcomp_destroy -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xab711862 ipcomp_output +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x7819a7bc ipcomp_destroy +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x7c5ef708 ipcomp_init_state +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x91528909 ipcomp_input +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xffe6fddf ipcomp_output EXPORT_SYMBOL_GPL net/xfrm/xfrm_user 0x4a0c7516 xfrm_msg_min EXPORT_SYMBOL_GPL net/xfrm/xfrm_user 0xe2521b1c xfrma_policy -EXPORT_SYMBOL_GPL sound/ac97_bus 0x25a977bb snd_ac97_reset +EXPORT_SYMBOL_GPL sound/ac97_bus 0x8b840954 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 0x09afeff4 snd_devm_card_new -EXPORT_SYMBOL_GPL sound/core/snd 0x212eecd6 snd_ctl_apply_vmaster_followers -EXPORT_SYMBOL_GPL sound/core/snd 0x2d2a4826 snd_card_ref -EXPORT_SYMBOL_GPL sound/core/snd 0x40057176 snd_card_rw_proc_new -EXPORT_SYMBOL_GPL sound/core/snd 0x64c9e1fc snd_ctl_sync_vmaster -EXPORT_SYMBOL_GPL sound/core/snd 0x6d9423c1 snd_device_initialize -EXPORT_SYMBOL_GPL sound/core/snd 0x7122eb29 snd_ctl_disconnect_layer -EXPORT_SYMBOL_GPL sound/core/snd 0x85f0801e snd_ctl_add_vmaster_hook -EXPORT_SYMBOL_GPL sound/core/snd 0xb00be462 snd_devm_request_dma -EXPORT_SYMBOL_GPL sound/core/snd 0xb444a085 snd_ctl_activate_id -EXPORT_SYMBOL_GPL sound/core/snd 0xc0e95519 snd_card_disconnect_sync -EXPORT_SYMBOL_GPL sound/core/snd 0xc6ec2876 snd_card_add_dev_attr -EXPORT_SYMBOL_GPL sound/core/snd 0xc9fc9f50 snd_ctl_get_preferred_subdevice -EXPORT_SYMBOL_GPL sound/core/snd 0xd2c45aa4 snd_device_get_state -EXPORT_SYMBOL_GPL sound/core/snd 0xddfed4d1 snd_device_disconnect -EXPORT_SYMBOL_GPL sound/core/snd 0xf1fd8924 snd_power_ref_and_wait -EXPORT_SYMBOL_GPL sound/core/snd 0xf808655e snd_ctl_register_layer +EXPORT_SYMBOL_GPL sound/core/snd 0x3b4b01af snd_card_disconnect_sync +EXPORT_SYMBOL_GPL sound/core/snd 0x3d280693 snd_device_disconnect +EXPORT_SYMBOL_GPL sound/core/snd 0x56d6aff0 snd_devm_card_new +EXPORT_SYMBOL_GPL sound/core/snd 0x7d8ef9e0 snd_device_get_state +EXPORT_SYMBOL_GPL sound/core/snd 0x80a63922 snd_ctl_disconnect_layer +EXPORT_SYMBOL_GPL sound/core/snd 0x898de21a snd_card_free_on_error +EXPORT_SYMBOL_GPL sound/core/snd 0x9a3b5556 snd_card_rw_proc_new +EXPORT_SYMBOL_GPL sound/core/snd 0xa0bdec02 snd_device_initialize +EXPORT_SYMBOL_GPL sound/core/snd 0xaf81063d snd_ctl_register_layer +EXPORT_SYMBOL_GPL sound/core/snd 0xb75a0e9a snd_ctl_activate_id +EXPORT_SYMBOL_GPL sound/core/snd 0xb7dbcc2b snd_ctl_apply_vmaster_followers +EXPORT_SYMBOL_GPL sound/core/snd 0xc62ab5ab snd_power_ref_and_wait +EXPORT_SYMBOL_GPL sound/core/snd 0xd7142c82 snd_ctl_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/core/snd 0xe786cbc2 snd_ctl_get_preferred_subdevice +EXPORT_SYMBOL_GPL sound/core/snd 0xf4732ac6 snd_devm_request_dma +EXPORT_SYMBOL_GPL sound/core/snd 0xf7a50876 snd_ctl_sync_vmaster EXPORT_SYMBOL_GPL sound/core/snd 0xfaf598c6 snd_ctl_request_layer -EXPORT_SYMBOL_GPL sound/core/snd-compress 0x469a7784 snd_compress_new -EXPORT_SYMBOL_GPL sound/core/snd-compress 0x6d126ac2 snd_compr_stop_error +EXPORT_SYMBOL_GPL sound/core/snd 0xfafe8b7b snd_card_ref +EXPORT_SYMBOL_GPL sound/core/snd 0xffe59fa9 snd_card_add_dev_attr +EXPORT_SYMBOL_GPL sound/core/snd-compress 0x47799e6f snd_compress_new +EXPORT_SYMBOL_GPL sound/core/snd-compress 0xcb73616d snd_compr_stop_error EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x04e1b99f snd_pcm_std_chmaps EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x09e913c1 snd_pcm_alt_chmaps -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x0ce903ff snd_pcm_stream_unlock -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x143b69be snd_pcm_stream_unlock_irq -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x2045ef22 snd_pcm_hw_constraint_eld -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x422bb648 snd_pcm_stream_unlock_irqrestore -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x4421593b snd_pcm_stream_lock +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x140e08a9 snd_pcm_stream_lock +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x4345ac32 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 0x61cdf4d5 snd_pcm_stream_unlock_irq EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x649892e8 snd_pcm_create_iec958_consumer_default -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x6d2049f7 snd_devm_alloc_pages -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x7cb5f498 snd_pcm_add_chmap_ctls +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x722807fc snd_pcm_stream_unlock EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x8d864069 snd_pcm_rate_range_to_bits +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x998f86c3 snd_pcm_lib_default_mmap EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xa286a234 snd_pcm_format_name +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xa8d4bbda snd_devm_alloc_pages EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xab8bc1a2 snd_pcm_rate_mask_intersect -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xd52a3c09 snd_pcm_fill_iec958_consumer -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xdeb94e02 snd_pcm_lib_default_mmap -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xe7151ef2 snd_pcm_stop_xrun -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xf3092a4b _snd_pcm_stream_lock_irqsave -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xf71b2f6d snd_pcm_stream_lock_irq -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x0ac8944d snd_dmaengine_pcm_pointer -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x0fdbb669 snd_dmaengine_pcm_request_channel -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x1965fd65 snd_dmaengine_pcm_open -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x2bdb3ccf snd_dmaengine_pcm_trigger -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x67f1fc9f snd_dmaengine_pcm_close -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x7abcef92 snd_dmaengine_pcm_pointer_no_residue -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x7d6de836 snd_hwparams_to_dma_slave_config -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x8be61adc snd_dmaengine_pcm_set_config_from_dai_data -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xbb77e4f2 snd_dmaengine_pcm_refine_runtime_hwparams -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xdc2ccdbd snd_dmaengine_pcm_close_release_chan -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xe1b9baad snd_dmaengine_pcm_open_request_chan -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xf67a6119 snd_dmaengine_pcm_get_chan -EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0x7ad6d22c snd_seq_driver_unregister -EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0xdda48fd9 __snd_seq_driver_register -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x13005fe4 amdtp_domain_stream_pcm_ack -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x139368fd amdtp_domain_stream_pcm_pointer -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x23fb0f04 amdtp_domain_init -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x2724e6a8 amdtp_am824_add_pcm_hw_constraints -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x57a44915 amdtp_domain_add_stream -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x73ed217f amdtp_am824_set_pcm_position -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x76f04234 amdtp_am824_midi_trigger -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x9120663f amdtp_am824_set_parameters -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xb3777077 amdtp_am824_init -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xb9b4f6c4 amdtp_domain_start -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xd27396a0 amdtp_am824_set_midi_position -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xd88ba590 amdtp_domain_stop -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xde80a018 amdtp_domain_destroy -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x053dbcb7 snd_hdac_stream_free_all -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x0aeba9c9 snd_hdac_ext_stream_assign -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x0cc5d44b snd_hdac_ext_bus_link_power_up_all -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x125a344f snd_hdac_ext_stream_set_spib -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x1b284cf6 snd_hdac_ext_bus_link_power_up -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x2f59fb2d snd_hdac_ext_stream_init -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x38173f6b snd_hdac_ext_bus_get_ml_capabilities -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x3e9e611e snd_hdac_ext_link_stream_clear -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x3f297ab5 snd_hdac_ext_bus_ppcap_int_enable -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x3f2e6f0a snd_hdac_ext_stream_init_all -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x4c85e73f snd_hdac_ext_bus_link_power_down_all -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x5bedd60d snd_hdac_ext_link_stream_start -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x61ab3f32 snd_hdac_ext_stream_release -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x6329be73 snd_hdac_ext_link_clear_stream_id -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x65e5eed8 snd_hda_ext_driver_unregister -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x694a8a9e snd_hdac_ext_bus_get_link -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x6bf8b9cf snd_hdac_ext_link_stream_reset -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x7d8da863 snd_hdac_ext_bus_link_power_down -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x8372970e snd_hdac_ext_bus_ppcap_enable -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x853bd0fe snd_hdac_ext_bus_device_init -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x8847881c snd_hdac_ext_bus_link_get -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x8b0ae957 snd_hdac_ext_stream_set_lpib -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x909c61a6 snd_hdac_ext_stream_drsm_enable -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xa0665b7e snd_hdac_ext_stream_decouple -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xa13c8d87 snd_hdac_ext_bus_exit -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xa8792c25 snd_hdac_ext_bus_device_remove -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xaa973d2d snd_hdac_ext_bus_link_power -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xad1f5d4c snd_hdac_ext_stop_streams -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xc54cf664 snd_hdac_ext_stream_spbcap_enable -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xc5b7ab6f snd_hdac_ext_link_stream_setup -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xcb0c101f snd_hdac_ext_stream_set_dpibr -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xcf38b75e snd_hdac_link_free_all -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xcf7b0764 snd_hdac_ext_stream_get_spbmaxfifo -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xd430d202 snd_hdac_ext_link_set_stream_id -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xdc069210 snd_hdac_ext_stream_decouple_locked -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xe1405e03 snd_hdac_ext_bus_link_put -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xe353c92f snd_hdac_ext_bus_device_exit -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xe7c78f3b snd_hdac_ext_bus_init -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xec9fd9b2 snd_hda_ext_driver_register -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0817bf05 snd_hdac_bus_update_rirb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x08434a50 snd_hdac_get_sub_nodes -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x09ee5b0a snd_hdac_query_supported_pcm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x11bdf549 snd_hdac_stream_setup_periods -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x139451b4 snd_hdac_regmap_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x13c6256e snd_hdac_bus_exit_link_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1628e34c snd_hdac_bus_init_chip -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x19b62ef3 snd_hdac_bus_init_cmd_io -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2001b0f3 snd_hdac_bus_stop_cmd_io -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x30f9b719 snd_hdac_channel_allocation -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x34e83879 snd_hdac_refresh_widgets -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x35c35ae1 snd_hdac_stream_assign -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x365fea31 snd_hdac_bus_alloc_stream_pages -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3914e409 snd_hdac_codec_write +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xb715cefd snd_pcm_stream_unlock_irqrestore +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xb926d9a0 _snd_pcm_stream_lock_irqsave +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xc3355a2e snd_pcm_fill_iec958_consumer +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xd20cd442 snd_pcm_hw_constraint_eld +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xf14d0b31 snd_pcm_stream_lock_irq +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xf6b0928b snd_pcm_stop_xrun +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x0e71b762 snd_dmaengine_pcm_refine_runtime_hwparams +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x1ce5f174 snd_dmaengine_pcm_open +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x1fd40a1a snd_dmaengine_pcm_trigger +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x2472419a snd_hwparams_to_dma_slave_config +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x3b79d970 snd_dmaengine_pcm_get_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x62a06314 snd_dmaengine_pcm_close_release_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xb9573a0b snd_dmaengine_pcm_pointer +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xc7a08aa5 snd_dmaengine_pcm_open_request_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xd40436d5 snd_dmaengine_pcm_request_channel +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xd49fde0d snd_dmaengine_pcm_close +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xec084658 snd_dmaengine_pcm_set_config_from_dai_data +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xf2701629 snd_dmaengine_pcm_pointer_no_residue +EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0x1d4b6543 snd_seq_driver_unregister +EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0xbcf6ba2f __snd_seq_driver_register +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x16cc38a6 amdtp_am824_add_pcm_hw_constraints +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x1a95c5e7 amdtp_domain_add_stream +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x50a13430 amdtp_am824_init +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x571784f9 amdtp_domain_start +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x62504ad4 amdtp_domain_stream_pcm_ack +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xa725d55f amdtp_am824_set_pcm_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xaa230647 amdtp_domain_destroy +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xbd86df88 amdtp_domain_stop +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xe3b8d91e amdtp_am824_set_parameters +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xe4c1ac51 amdtp_domain_init +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xf4ca231d amdtp_am824_set_midi_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xf5b1fc20 amdtp_am824_midi_trigger +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xf79f9ba6 amdtp_domain_stream_pcm_pointer +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x090a95d0 snd_hdac_ext_stop_streams +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x14f20950 snd_hdac_ext_stream_init +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x1cf950ac snd_hdac_ext_stream_decouple_locked +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x1d402292 snd_hda_ext_driver_register +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x1ed1205f snd_hdac_ext_stream_release +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x271775f5 snd_hdac_stream_free_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x2e6f367b snd_hdac_ext_bus_link_get +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x32370867 snd_hdac_ext_bus_exit +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x36ef7be4 snd_hdac_ext_bus_link_power_up +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x3c642f3a snd_hdac_ext_stream_spbcap_enable +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x3eef9e13 snd_hdac_ext_bus_device_init +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x47b88012 snd_hdac_ext_stream_assign +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x49fa5d7f snd_hda_ext_driver_unregister +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x4b69569d snd_hdac_ext_stream_set_lpib +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x52abe92a snd_hdac_ext_link_stream_clear +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x52decaa7 snd_hdac_ext_stream_get_spbmaxfifo +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x58ffb246 snd_hdac_ext_bus_get_ml_capabilities +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x5e48ca7e snd_hdac_ext_stream_set_dpibr +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x657bac12 snd_hdac_ext_bus_ppcap_int_enable +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x69421bbe snd_hdac_ext_bus_link_power_down +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x6c2de300 snd_hdac_ext_bus_link_power +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x7effe323 snd_hdac_ext_bus_link_put +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x865263ce snd_hdac_ext_bus_get_link +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x8dc73ddb snd_hdac_ext_bus_device_exit +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x946b9eda snd_hdac_ext_bus_ppcap_enable +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x968886bc snd_hdac_ext_bus_link_power_up_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xa26475c1 snd_hdac_ext_bus_init +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xaa4aeedd snd_hdac_ext_stream_decouple +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xb4073459 snd_hdac_ext_bus_link_power_down_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xb6be5077 snd_hdac_ext_stream_set_spib +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xb8ff6031 snd_hdac_ext_link_set_stream_id +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xc507062b snd_hdac_ext_link_stream_start +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xc5b6494d snd_hdac_link_free_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xcae2722f snd_hdac_ext_stream_drsm_enable +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xd3bff963 snd_hdac_ext_link_clear_stream_id +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xd40bd8e4 snd_hdac_ext_bus_device_remove +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xd7041a78 snd_hdac_ext_link_stream_reset +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xde3591f5 snd_hdac_ext_stream_init_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xe12b3484 snd_hdac_ext_link_stream_setup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x01bdd217 snd_hdac_is_supported_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x053dab0e snd_hdac_setup_channel_mapping +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x05f74baa snd_hdac_regmap_write_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x09fd1fd4 snd_hdac_read_parm_uncached +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x10c0197c snd_hdac_stream_timecounter_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1e81d915 snd_hdac_i915_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2157686d snd_hdac_device_register +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x23d2d8ba snd_hda_bus_type +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x252d3780 snd_hdac_get_connections +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2a99b87c snd_hdac_stream_sync_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2d448e43 snd_hdac_set_codec_wakeup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2f61eeef snd_hdac_power_up +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x34a33a93 snd_hdac_bus_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3531955e snd_hdac_sync_audio_rate +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3781aa2e snd_hdac_regmap_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x389c0e5e snd_hdac_get_stream +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3b4dcce2 snd_hdac_codec_write EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3bd544c2 snd_hdac_get_active_channels -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3c348d65 snd_hdac_bus_reset_link -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3c8398f0 snd_hdac_regmap_update_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3dec105f snd_hdac_sync_power_state -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x44bd3183 snd_hdac_stream_sync_trigger -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x454ae4da snd_hdac_codec_read -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x49330bf1 snd_hdac_codec_modalias -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4a2289fa _snd_hdac_read_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3e6f0e82 snd_hdac_regmap_sync +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x41d366eb snd_hdac_bus_exec_verb_unlocked +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4395ed38 snd_hdac_acomp_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4668bc1c snd_hdac_stream_start +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x46d4063b snd_hdac_register_chmap_ops +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x478d0808 snd_hdac_bus_update_rirb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x49cb40d6 snd_hdac_power_down +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4adeec1a snd_hdac_bus_reset_link EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4c7ec4b6 snd_hdac_get_ch_alloc_from_ca -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x56c8bb6f snd_hdac_power_down_pm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x58cc3965 snd_hdac_stream_set_params -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5aba35bb snd_hdac_add_chmap_ctls +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4dfef975 snd_hdac_codec_link_up +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x50041938 snd_hdac_bus_stop_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5253a666 snd_hdac_bus_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x532a721d snd_hdac_codec_modalias +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5511743b snd_hdac_codec_link_down +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x58e8e6f3 snd_hdac_acomp_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5a53980e snd_hdac_get_stream_stripe_ctl +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5a60f77f snd_hdac_channel_allocation EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5c07cb49 snd_hdac_calc_stream_format -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5c65898a snd_hdac_bus_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5ecf2b40 snd_hdac_get_stream -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5efb0e09 snd_hdac_get_connections -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x651a31fb snd_hdac_device_register +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5ced0371 snd_hdac_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x60455352 snd_hdac_bus_handle_stream_irq +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x61638b4d snd_hdac_device_unregister +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x636e55d8 snd_hdac_override_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6717e6e4 snd_hdac_sync_power_state EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x67bfe791 snd_hdac_spk_to_chmap -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6a49c46c snd_hdac_bus_send_cmd -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x73bb09bf snd_hdac_stream_setup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x74280bd8 snd_hdac_bus_parse_capabilities -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7775480a snd_hdac_bus_link_power +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x67d4923e snd_hdac_check_power_state +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x69f0fafa snd_hdac_bus_init_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6a358eef snd_hdac_query_supported_pcm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x72f8da97 snd_hdac_get_sub_nodes EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x77c754a8 snd_hdac_chmap_to_spk_mask -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x77d430bf snd_hdac_power_up_pm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7b8991be snd_hdac_bus_handle_stream_irq -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8245afcb snd_hdac_set_codec_wakeup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x84862d0d snd_hdac_read -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x85724ba1 snd_hdac_regmap_add_vendor_verb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8812104a snd_hdac_is_supported_format -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8a1aa5cc snd_hdac_stream_cleanup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8b31174a snd_hdac_codec_link_down -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8e76156e snd_hdac_stream_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x936f4e66 snd_hdac_stream_stop -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x93edee0e snd_hdac_codec_link_up -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x950d5adb snd_hdac_read_parm_uncached -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x95a98158 snd_hdac_regmap_read_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x98481ef5 snd_hdac_device_set_chip_name -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x986b1265 snd_hdac_bus_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x988b0f76 snd_hdac_setup_channel_mapping +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x790a7846 snd_hdac_bus_alloc_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x79a570c5 snd_hdac_bus_free_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7a3a200a snd_hdac_regmap_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7add2963 snd_hdac_stream_stop +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7c3b835f snd_hdac_refresh_widgets +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7d4953c3 snd_hdac_stream_release +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7e8a5011 snd_hdac_stream_assign +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x81918c25 snd_hdac_stream_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x82ecedf6 snd_hdac_stream_setup_periods +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x84880472 snd_hdac_regmap_update_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8494b870 snd_hdac_stream_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x901b4577 snd_hdac_regmap_read_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9275b3c3 hdac_get_device_id +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x936cdbef snd_hdac_bus_enter_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x94d2d52d snd_hdac_codec_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9954a071 snd_hdac_power_up_pm EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9a8e1877 snd_array_free -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9bec3172 snd_hdac_stream_start -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9ede5efb snd_hdac_acomp_get_eld -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9fbf5eed snd_hdac_i915_set_bclk -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9fd1ab58 snd_hdac_bus_free_stream_pages -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa1f1f27f snd_hdac_device_unregister -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xaed7d15d snd_hdac_check_power_state -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xaf53afdb snd_hdac_bus_stop_chip -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb0a3b9b1 snd_hdac_regmap_update_raw_once -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb2474512 snd_hdac_dsp_trigger -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb4357194 snd_hdac_acomp_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb5c2eb0f snd_hdac_dsp_prepare -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb7dc1abc snd_hdac_register_chmap_ops -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe241b40 snd_hdac_device_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9b08fd5c snd_hdac_bus_parse_capabilities +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9cf06959 snd_hdac_device_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa26275b8 snd_hdac_bus_link_power +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa46bcbda snd_hdac_dsp_prepare +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa81add77 snd_hdac_display_power +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa8ead5ca snd_hdac_acomp_register_notifier +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xaad7696e snd_hdac_stream_clear +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xac1a16ec snd_hdac_bus_init_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xadd79515 snd_hdac_i915_set_bclk +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb469a599 snd_hdac_power_down_pm EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe7dd7dc snd_array_new -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc525749f snd_hdac_bus_enter_link_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xca8eb2f8 snd_hdac_acomp_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcdb9d3ad snd_hdac_regmap_sync -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd13b77a0 snd_hdac_power_up -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd1a9c5f6 snd_hdac_stream_timecounter_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd291ccc4 snd_hdac_i915_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd8536502 snd_hdac_sync_audio_rate -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdc1dad77 snd_hdac_power_down -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdc682d49 snd_hdac_stream_clear -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdd37e9de snd_hda_bus_type -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe18857b2 snd_hdac_override_parm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe1ac9994 snd_hdac_regmap_write_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc2e2e84a snd_hdac_bus_get_response +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc3488815 snd_hdac_regmap_update_raw_once +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc8e1e304 snd_hdac_stream_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc9741389 snd_hdac_stream_set_params +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcfba9324 snd_hdac_regmap_add_vendor_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd4b86a82 snd_hdac_device_set_chip_name +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd73ceaff snd_hdac_device_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd80a7d5d _snd_hdac_read_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdec50337 snd_hdac_dsp_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdee49933 snd_hdac_stream_setup EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe4e07754 snd_hdac_print_channel_allocation -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xeb27d256 snd_hdac_device_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xeb73973e snd_hdac_bus_get_response -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xec80fdd9 snd_hdac_acomp_register_notifier -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xecc0e1c2 hdac_get_device_id -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xee300e05 snd_hdac_get_stream_stripe_ctl -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xee754495 snd_hdac_bus_exec_verb_unlocked -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xee953f60 snd_hdac_stream_release -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf41debde snd_hdac_stream_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf5d03769 snd_hdac_display_power -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf651f415 snd_hdac_dsp_cleanup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf93c85c8 snd_hdac_stream_sync -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfd187668 snd_hdac_regmap_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xeb75a095 snd_hdac_add_chmap_ctls +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xefc2adaf snd_hdac_stream_sync +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf18fe093 snd_hdac_bus_send_cmd +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf52687b0 snd_hdac_dsp_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf843629e snd_hdac_bus_exit_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfba751c6 snd_hdac_bus_stop_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfca4db2d snd_hdac_acomp_get_eld EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x4e859456 intel_nhlt_free -EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x6903d08f snd_intel_dsp_driver_probe -EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x72d2a639 snd_intel_acpi_dsp_driver_probe -EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x84d606f2 intel_nhlt_init -EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0xd7714602 intel_nhlt_get_dmic_geo -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x140e76b5 snd_ak4113_build -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x3d4345c5 snd_ak4113_reg_write -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x68bddedf snd_ak4113_check_rate_and_errors -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x86115baf snd_ak4113_external_rate -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xe8510f52 snd_ak4113_reinit -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xfd72fad5 snd_ak4113_create -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x016a2c3d snd_hda_mixer_amp_tlv -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x031ba0d2 snd_hda_multi_out_dig_close -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x03e03885 snd_hda_pick_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x05c6a18f snd_hda_codec_set_power_to_all +EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x559d2ab6 intel_nhlt_init +EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x857352a1 snd_intel_acpi_dsp_driver_probe +EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x9be130e6 snd_intel_dsp_driver_probe +EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0xc331b40d intel_nhlt_get_dmic_geo +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x2b18b8ff snd_ak4113_reinit +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x5e677463 snd_ak4113_reg_write +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x686fa7b3 snd_ak4113_external_rate +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x83452e25 snd_ak4113_build +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xa30bb258 snd_ak4113_create +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xdddbd805 snd_ak4113_check_rate_and_errors +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x002efbd7 snd_hda_enable_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x04a3f983 snd_hda_sync_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x05d38742 snd_hda_codec_amp_init EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0676f5ac snd_hda_get_input_pin_attr -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0ce79294 snd_hda_spdif_out_of_nid -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x107e4ef2 azx_get_pos_posbuf -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x11424c06 snd_hda_codec_pcm_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1c158d1f snd_hda_get_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x23b7f4b2 snd_hda_codec_eapd_power_filter -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x26819627 snd_hda_override_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x26f4763f hda_codec_driver_unregister -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x291a45a4 snd_hda_add_nid -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x296e1501 snd_hda_set_vmaster_tlv -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2ab0562b snd_hda_jack_detect_enable_callback_mst -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2cae9a44 snd_hda_multi_out_dig_open -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2d8529b1 snd_hda_check_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3025fd41 snd_hda_jack_set_button_state -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3038539b is_jack_detectable -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3379c199 snd_hda_get_conn_list -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3692134a snd_hda_parse_pin_defcfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x06a7e39f snd_hda_get_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0a71a7f8 snd_hda_jack_detect_enable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0a7f80c2 snd_hda_apply_pincfgs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0cd9979e snd_hda_mixer_amp_switch_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0ff0d925 snd_hda_jack_pin_sense +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1054c6c9 snd_hda_mixer_amp_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x105af7e5 query_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x11f2e1b3 __snd_hda_codec_cleanup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x16f3f54c snd_hda_codec_get_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x19af1221 snd_hda_codec_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1fde9233 snd_hda_jack_detect_enable_callback_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x22f9bd43 snd_hda_pick_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x24d69d30 snd_hda_mixer_amp_volume_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x269b7355 snd_hda_get_int_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x28bef106 snd_hda_check_amp_list_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x29c9bc6b snd_hda_get_num_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2bf6f68d snd_hda_codec_set_name +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2c785047 snd_hda_override_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2d30d46c snd_hda_load_patch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2e585d4b snd_hda_parse_pin_defcfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2eefaddc snd_hda_attach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2ff0e6cf snd_hda_codec_pcm_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x30dd0acb snd_hda_sequence_write +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x327424b8 snd_hda_codec_amp_update +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x37983734 snd_hda_enum_helper_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x38520467 snd_hda_multi_out_analog_prepare EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x38ce402b azx_interrupt -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3a99d970 snd_hda_mixer_amp_switch_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3b2b094b snd_hda_override_conn_list -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x401dc579 snd_hda_codec_device_new -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x40ed76f1 snd_hda_add_new_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x415a0f5d snd_hda_codec_amp_stereo -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x46b628d4 snd_hda_apply_verbs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x48d2811f snd_hda_codec_cleanup_for_unbind -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x49b283d0 snd_hda_mixer_amp_volume_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4c41b547 snd_hda_codec_update_widgets -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4ebbf2d2 snd_hda_jack_report_sync -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4ed03780 snd_hda_enum_helper_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5088d71f snd_hda_shutup_pins -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x52773aa1 snd_hda_jack_set_gating_jack -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x52cbb9aa snd_hda_jack_poll_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x55f93753 snd_hda_codec_amp_update -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x56b2b603 snd_hda_codec_get_pin_target -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x57c4cbda snd_hda_codec_build_controls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x61c59b8e azx_get_position -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x633dd5ce snd_hda_jack_tbl_get_mst -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x64dafb54 snd_hda_spdif_ctls_assign -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x672a0e2b snd_hda_ctl_add -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x686792f3 snd_hda_mixer_amp_switch_put_beep -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x695eae48 snd_hda_codec_pcm_new -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x69a95644 snd_hda_add_imux_item -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6afff4a9 snd_hda_multi_out_dig_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6b875c1c snd_hda_input_mux_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6e510751 snd_hda_multi_out_dig_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7032f342 snd_hda_load_patch -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x74f5fea7 snd_hda_codec_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x759c9909 snd_hda_attach_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7ac9abff snd_hda_jack_set_dirty_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7d5e104b azx_stop_all_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7ef1df78 _snd_hda_set_pin_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x832b9131 azx_init_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x852ba7bf snd_hda_set_power_save -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x863f34fc snd_hda_add_vmaster_hook -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x887770c4 snd_hda_codec_load_dsp_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8d0d6bd2 snd_hda_multi_out_analog_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8f687ada snd_hda_get_num_devices -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x93a9b250 snd_hda_codec_set_pincfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x956c29f3 snd_hda_pick_pin_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x967b6daf snd_hda_apply_pincfgs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x97d8b332 snd_hda_codec_parse_pcms -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x98118af7 snd_hda_jack_bind_keymap -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9853494c hda_get_autocfg_input_label -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x985a3749 snd_hda_detach_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x98cc92f5 snd_hda_codec_new -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9b29e001 snd_hda_get_int_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9c0352a4 snd_hda_enable_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9c672fc4 snd_hda_codec_set_name -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9c74421e snd_hda_correct_pin_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9d6ed775 snd_hda_mixer_amp_switch_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9e171dcb snd_hda_multi_out_analog_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9e717c44 snd_hda_apply_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9ed52c94 snd_hda_create_dig_out_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9f371393 azx_bus_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa277dbd7 snd_hda_spdif_ctls_unassign -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa28ffd5e snd_hda_sync_vmaster_hook -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa74d52b4 snd_hda_codec_amp_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa987ea74 __hda_codec_driver_register -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaa6e62ab __snd_hda_add_vmaster -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaadf6ac8 azx_stop_chip -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xab46860a snd_hda_mixer_amp_switch_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xab4890d8 azx_probe_codecs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xac9d2e9f snd_hda_get_dev_select -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaed884cb snd_hda_codec_configure -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xafba1d76 snd_hda_find_mixer_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb7890bb6 snd_hda_codec_set_pin_target -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb8a47fd7 snd_hda_jack_unsol_event -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbb6b7e3d snd_hda_codec_load_dsp_trigger -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbe4028cb snd_hda_sequence_write -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc2a6d7a5 azx_free_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc35ba1b6 snd_hda_multi_out_analog_open -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc6aebea9 snd_hda_codec_amp_init_stereo -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc6d6995a snd_hda_lock_devices -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc6d79fcd snd_hda_get_conn_index -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc93bdd3e __snd_hda_codec_cleanup_stream -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xce6f9502 azx_init_chip -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd22e625f snd_hda_add_verbs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd4215925 azx_codec_configure -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd5589da9 query_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd7670792 snd_hda_jack_detect_enable -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd86ddcaa snd_hda_mixer_amp_volume_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd8b6a2fc snd_hda_create_spdif_in_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xda01f5a8 snd_hda_check_amp_list_power -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe091dca7 snd_hda_get_bool_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe0c8a79d snd_hda_jack_detect_state_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x395f275f snd_hda_jack_add_kctl_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3fcfdc4a snd_hda_apply_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x41ddc82b snd_hda_check_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x459d9ac4 snd_hda_multi_out_analog_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x481aceb6 snd_hda_codec_pcm_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x48e377cb azx_probe_codecs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x498e5307 snd_hda_multi_out_dig_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x53ed855f snd_hda_get_default_vref +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x56fef6b3 snd_hda_set_vmaster_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5993b06a azx_bus_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5c45dbc0 snd_hda_jack_set_dirty_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5cea21fc azx_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5ea84e98 azx_init_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6042494b azx_get_pos_lpib +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x64e4d91c snd_hda_codec_eapd_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x654df5df snd_hda_mixer_amp_volume_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6764c05e azx_free_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x69064184 snd_hda_get_bool_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6ef6bdf0 snd_hda_codec_amp_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6f9d4fbf snd_hda_create_spdif_share_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x75b65e35 snd_hda_codec_cleanup_for_unbind +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x77cdedde snd_hda_jack_bind_keymap +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x78b5c824 snd_hda_codec_build_controls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x79275ccd snd_hda_multi_out_analog_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7b8a314a snd_hda_get_pin_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7c150df5 hda_codec_driver_unregister +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7c76ed95 snd_hda_jack_poll_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x84b15d61 snd_hda_get_connections +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x84b8b968 _snd_hda_set_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x89465f61 snd_hda_create_spdif_in_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x89bf4de3 snd_hda_multi_out_dig_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8a90e5bb snd_hda_codec_load_dsp_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9091a2b3 snd_hda_override_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x912bc7c1 snd_hda_lock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x965a6205 snd_hda_add_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9aac29bf __hda_codec_driver_register +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9ac7a1a0 snd_hda_spdif_ctls_unassign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9c377d3b snd_hda_ctl_add +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9d34bfe4 snd_hda_jack_add_kctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9ff3b2fa snd_hda_jack_report_sync +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa04af2cb snd_hda_apply_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa2c675d9 snd_hda_codec_parse_pcms +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa39c1d0a snd_hda_codec_load_dsp_trigger +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa4986fae snd_hda_codec_device_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa5629c44 snd_hda_shutup_pins +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa627efd6 snd_hda_jack_set_gating_jack +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa6d0fe8c snd_hda_codec_load_dsp_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa8454710 snd_hda_add_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa8e60a62 snd_hda_get_dev_select +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa94d9631 snd_hda_set_dev_select +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaa5e0d39 snd_hda_correct_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaa607bd6 snd_hda_get_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xabd830ab snd_hda_codec_set_power_to_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xae8cbba4 snd_hda_multi_out_dig_close +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xafe2cfa1 snd_hda_set_power_save +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb596af2c hda_get_autocfg_input_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb60e3797 azx_get_pos_posbuf +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb8b67dfd snd_hda_mixer_amp_switch_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb91c7205 snd_hda_jack_tbl_get_from_tag +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb9cf5ab4 azx_stop_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xba405a00 snd_hda_jack_tbl_get_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbbc83ec7 snd_hda_mixer_amp_switch_put_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbc734b46 snd_hda_multi_out_dig_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbd7b1db8 azx_init_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbfa32635 snd_hda_mixer_amp_switch_get_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc0b0f684 snd_hda_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc27f5a3f snd_hda_codec_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc46c2f8d snd_hda_find_mixer_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc6b4e6ac snd_hda_codec_set_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xca18f10f snd_hda_detach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd1221fbc snd_hda_mixer_amp_volume_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd19259da snd_hda_spdif_ctls_assign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd2065c37 snd_hda_add_new_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd6239e3e snd_hda_pick_pin_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd65b0c77 snd_hda_codec_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xda66fd95 snd_hda_add_imux_item +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdbff9e34 snd_hda_jack_unsol_event +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdc5fee85 snd_hda_codec_set_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdd7c14c1 snd_hda_jack_set_button_state EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe118de5d snd_pcm_2_1_chmaps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe33d54e5 snd_hda_get_default_vref -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe5b6f064 snd_hda_get_pin_label -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe8478e58 snd_hda_create_spdif_share_sw -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xea1bdae5 snd_hda_unlock_devices -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xea56401a snd_hda_codec_load_dsp_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeae03211 azx_get_pos_lpib -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeb2366cc snd_hda_codec_setup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe9939916 snd_hda_codec_get_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeaed9052 snd_hda_unlock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeb50c222 is_jack_detectable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xebc221e0 snd_hda_codec_configure EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeda3a721 snd_print_pcm_bits -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xee458dd5 snd_hda_mixer_amp_volume_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf16dc10b snd_hda_set_dev_select -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf464b241 snd_hda_codec_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf5414643 snd_hda_jack_pin_sense -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf5f2fe1e snd_hda_mixer_amp_switch_get_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xef350ffd snd_hda_input_mux_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xef9b8998 snd_hda_jack_detect_state_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf5985bf5 snd_hda_spdif_out_of_nid EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf8dc35ac snd_hda_input_mux_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf972d630 snd_hda_codec_get_pincfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfa4b0f11 snd_hda_get_connections -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfb8cc1a5 snd_hda_jack_tbl_get_from_tag -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfbb1516b snd_hda_jack_add_kctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfd582d56 snd_hda_jack_add_kctl_mst -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x03dba67d snd_hda_gen_free -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x13db0b3e snd_hda_add_new_path -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x220b5ab0 snd_hda_gen_build_controls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x388c76f0 snd_hda_gen_line_automute -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x3a324862 snd_hda_gen_update_outputs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x470bdeba snd_hda_gen_add_mute_led_cdev -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x5d2974d1 snd_hda_gen_add_micmute_led_cdev -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x67b3b256 snd_hda_gen_check_power_status -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x6ef6d8b9 snd_hda_gen_stream_pm -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x73d21f90 snd_hda_gen_build_pcms +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf92d1512 snd_hda_mixer_amp_switch_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf961b32f __snd_hda_add_vmaster +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfb3edefc snd_hda_codec_setup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfb3f0280 snd_hda_create_dig_out_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfbc318d4 snd_hda_codec_amp_init_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfca81306 snd_hda_codec_update_widgets +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfdb72f5a azx_stop_all_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfdcd9ffc snd_hda_get_conn_index +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xff0e2843 azx_get_position +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x15b82c7d snd_hda_add_new_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x36d4c682 snd_hda_gen_fix_pin_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x3f00cd0d snd_hda_gen_build_pcms +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x404f7128 snd_hda_gen_build_controls EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x76dc6871 hda_main_out_badness -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x8195796d snd_hda_gen_parse_auto_config +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x771efbd3 snd_hda_gen_mic_autoswitch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x804efaab snd_hda_get_path_from_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x8145cbd5 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 0x9528daf0 snd_hda_gen_path_power_filter -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x998c821c snd_hda_gen_hp_automute -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xa77e34f5 snd_hda_get_path_from_idx -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xb1cd4245 snd_hda_activate_path -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xb805fa80 snd_hda_gen_add_kctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xc36c928a snd_hda_gen_fix_pin_power -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xc7e603cc snd_hda_gen_mic_autoswitch -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xe6ad489a snd_hda_gen_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xf662bc00 snd_hda_gen_spec_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xfe7118dc snd_hda_get_path_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x90558534 snd_hda_gen_add_micmute_led_cdev +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x925918fc snd_hda_gen_free +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x9f20e241 snd_hda_gen_hp_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xa3d88d59 snd_hda_gen_add_mute_led_cdev +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xa99a1d9c snd_hda_gen_check_power_status +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xac2a7f16 snd_hda_gen_spec_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xae8ef8a9 snd_hda_gen_line_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xb3d34125 snd_hda_get_path_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xb95150a8 snd_hda_gen_path_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xbb5ab862 snd_hda_gen_update_outputs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xd8e5eef3 snd_hda_gen_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xe11f1974 snd_hda_gen_parse_auto_config +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xe5931497 snd_hda_gen_add_kctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xf3bb13ee snd_hda_activate_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 0x1e888846 adau1372_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0x76247b2d adau1761_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0x83ac87bc adau1761_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x050cbebf adau17x1_resume -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x0d9333f7 adau17x1_precious_register -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x31bcd371 adau17x1_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x33c05525 adau17x1_set_micbias_voltage -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x35fff983 adau17x1_add_routes -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x3dbcc68e adau17x1_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x475f5217 adau17x1_add_widgets -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xc40b6193 adau17x1_dai_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xcc36bbc3 adau17x1_volatile_register -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xf9d91aa2 adau17x1_readable_register -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau7118 0x986815d3 adau7118_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x07232819 arizona_lhpf2_mode -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x195a0285 arizona_anc_ng_enum -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x1bc9d6e9 arizona_set_output_mode -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x1e273073 arizona_of_get_audio_pdata -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x20559c56 arizona_out_vi_ramp -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x2097fe33 arizona_in_vd_ramp -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x223cf897 arizona_dvfs_down -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x22af5285 arizona_jack_codec_dev_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x36cb3284 arizona_lhpf1_mode -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x39d9d4a0 arizona_adsp2_rate_controls -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x3df0f856 arizona_init_dvfs -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x3eab5508 arizona_isrc_fsl -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x3f062193 arizona_in_hpf_cut_enum -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x412f7e3b arizona_dvfs_sysclk_ev -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x41409ff3 arizona_in_vi_ramp -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x4182fd96 arizona_out_vd_ramp +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1372 0x8480aabd adau1372_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0xf352acf1 adau1761_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0xf5800ec6 adau1761_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x04e38166 adau17x1_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x20224797 adau17x1_readable_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x26024f49 adau17x1_volatile_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x4039b8cf adau17x1_add_widgets +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x4d490f9a adau17x1_precious_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x4e55fc5f adau17x1_resume +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x5d10c0e7 adau17x1_set_micbias_voltage +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x8cc5d2c9 adau17x1_add_routes +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x8f59c138 adau17x1_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xa9ab6f4a adau17x1_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau7118 0xac4e39ad adau7118_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x0082b552 arizona_lhpf_coeff_put +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x0c2e23e1 arizona_set_output_mode +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x0ec1da61 arizona_asrc_rate1 +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x10d26283 arizona_dvfs_up +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x14305bae arizona_out_vd_ramp +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x16d4341a arizona_lhpf3_mode +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x16fc5f30 arizona_isrc_fsl +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x17f688b3 arizona_anc_ev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x1a9eb94e arizona_in_hpf_cut_enum +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x1f2b6e40 arizona_input_analog +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x279c0d2b arizona_out_ev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x2841f400 arizona_set_fll +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x28cba12b arizona_output_anc_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x2d39e081 arizona_init_spk +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x2debec01 arizona_in_ev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x2feefe10 arizona_init_spk_irqs +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x36e7e129 arizona_free_spk_irqs EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x46277216 arizona_rate_val -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x4b7f8b7c arizona_init_gpio -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x57dd05c5 arizona_clk_ev -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x62172095 arizona_init_mono -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x6294902c arizona_out_ev -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x64f31d23 arizona_lhpf4_mode +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x4a984996 arizona_in_dmic_osr +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x4ce8a4bd arizona_anc_ng_enum +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x53644800 arizona_jack_codec_dev_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x638d2368 arizona_init_mono EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x69102a20 arizona_sample_rate_text -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x6a10f827 arizona_init_common -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x6f00d14b arizona_in_dmic_osr -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x710987da arizona_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x6b480006 arizona_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x703a363c arizona_of_get_audio_pdata EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x729a5ef3 arizona_mixer_values -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x77b39ece arizona_set_fll_refclk -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x7a9de749 arizona_init_dai -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x7b03f118 arizona_input_analog +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x75e73a6e arizona_out_vi_ramp +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x780f1aec arizona_init_common +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x7bc2f8be arizona_anc_input_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x7c7e4a5b arizona_eq_coeff_put 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 0x81fe1b16 arizona_jack_set_jack -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x8a70fc63 arizona_dvfs_up -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x9c7b01d5 arizona_init_spk_irqs -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xa15423ad arizona_lhpf3_mode -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xa16b0028 arizona_hp_ev -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xa53a171e arizona_isrc_fsh -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xa9c8911e arizona_in_ev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x80e9241d arizona_voice_trigger_switch +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x814b2533 arizona_lhpf1_mode +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x8d6d1d26 arizona_isrc_fsh +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x8f2d66c9 arizona_dvfs_down +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x9698a23b arizona_init_vol_limit +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x9717e984 arizona_in_vd_ramp +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x9f89d6cb arizona_init_dvfs +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xa26f8038 arizona_ng_hold +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xa646029d arizona_jack_codec_dev_remove EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xab4d845c arizona_rate_text -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xb1807d02 arizona_anc_input_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xb23978b5 arizona_ng_hold -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xb4618e5a arizona_init_fll -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xb61d4f43 arizona_voice_trigger_switch -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xb941cdd6 arizona_asrc_rate1 -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xc76790a9 arizona_dai_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xc815b6bd arizona_init_spk +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xb0a33fae arizona_lhpf2_mode +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xc175a0d2 arizona_simple_dai_ops EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xc9c29637 arizona_mixer_tlv -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xd28133be arizona_eq_coeff_put -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xd4a61662 arizona_free_spk_irqs -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xdc7471b8 arizona_jack_codec_dev_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xcef87c0a arizona_adsp2_rate_controls +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xd23c0973 arizona_init_gpio +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xd3730a94 arizona_lhpf4_mode +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xd45c8117 arizona_dvfs_sysclk_ev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xd6717bfd arizona_init_fll +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xd725b014 arizona_dai_ops EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xdfe804b8 arizona_sample_rate_val -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xe7c69e2a arizona_set_fll -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xead61c09 arizona_output_anc_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xeec783a2 arizona_init_vol_limit -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xf163fa73 arizona_anc_ev -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xf551d732 arizona_simple_dai_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xf83a1f8f arizona_lhpf_coeff_put -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x2cb58713 cs4271_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0xb2e4d573 cs4271_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xefcecfa8 arizona_clk_ev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xf54f8218 arizona_hp_ev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xf5834468 arizona_set_fll_refclk +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xf6c08844 arizona_in_vi_ramp +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xf973a8c6 arizona_init_dai +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xfe073029 arizona_jack_set_jack +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0xc0370ff4 cs4271_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0xd31030f2 cs4271_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x33aae125 cs42l51_suspend EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x375ad98c cs42l51_of_match -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x3c85cf00 cs42l51_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x42b760fb cs42l51_suspend -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x58fc0f56 cs42l51_resume -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x8aa2c2d0 cs42l51_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xaf1ce196 cs42l51_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x97b6ba9e cs42l51_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xaa2b86ca cs42l51_resume +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xd9730361 cs42l51_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xf98fce6a cs42l51_remove EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x0245c4f2 cs42xx8_of_match -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x34c03887 cs42xx8_pm -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x44b1c956 cs42xx8_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x3c88e194 cs42xx8_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x451a7ebc cs42xx8_pm EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x7cac7292 cs42888_data -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x93eb4096 cs42xx8_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x9ea62046 cs42xx8_probe EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xcd3794c9 cs42448_data -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0x0bc07172 da7219_aad_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0x2a0cb936 da7219_aad_jack_det -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0x4b02ec96 da7219_aad_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0x64576de6 da7219_aad_exit -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x2d45c6bb es8328_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x36438d22 es8328_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hdac-hda 0x2c696964 snd_soc_hdac_hda_get_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hdac-hdmi 0x14c3ba4a hdac_hdmi_jack_port_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hdac-hdmi 0xe9ff0e50 hdac_hdmi_jack_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98090 0x0429a7c2 max98090_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x39403a5b soc_codec_dev_max98373_sdw -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x8e292e75 max98373_slot_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x9c4b30cf max98373_reset -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0xe7d76364 soc_codec_dev_max98373 -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8824 0x5629956b nau8824_enable_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8825 0x0add40e6 nau8825_enable_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x6eac7ce1 pcm1789_common_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0xa2275b69 pcm1789_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0xb0ec240c pcm1789_common_exit -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0xa597f741 pcm179x_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0xd62a22d1 pcm179x_common_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0x2a497cba pcm186x_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0x3451675c pcm186x_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x0ccf4198 pcm3168a_pm_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x10ed03b8 pcm3168a_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x92bcbbda pcm3168a_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0xcfd14ff5 pcm3168a_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x45f1c2dc pcm512x_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x8902223a pcm512x_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xd1939ae3 pcm512x_pm_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xe22536d2 pcm512x_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0x2d5b3602 da7219_aad_exit +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0x3fe7faa9 da7219_aad_jack_det +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0x4ab71edd da7219_aad_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0x8ad04d36 da7219_aad_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x2ce944a9 es8328_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x44ff8812 es8328_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hdac-hda 0x681e8a55 snd_soc_hdac_hda_get_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hdac-hdmi 0x11433f3f hdac_hdmi_jack_port_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hdac-hdmi 0x75d84c85 hdac_hdmi_jack_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98090 0x01fb2e03 max98090_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x4b4a03ae soc_codec_dev_max98373 +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x702a8a31 max98373_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x73e8e48d soc_codec_dev_max98373_sdw +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0xcd72f76c max98373_slot_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x03a40367 mt6358_mtkaif_calibration_disable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0xb90d6803 mt6358_mtkaif_calibration_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0xe2777bbc mt6358_set_mtkaif_protocol +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0xf79ad56e mt6358_set_mtkaif_calibration_phase +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8824 0x727f4075 nau8824_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8825 0x79702c23 nau8825_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x15b616e8 pcm1789_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x2c8f12af pcm1789_common_exit +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x75cedb16 pcm1789_common_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0x1206bac0 pcm179x_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0x4dda3ea3 pcm179x_common_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0x28798854 pcm186x_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0x423e85ab pcm186x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x09251c02 pcm3168a_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x73276a40 pcm3168a_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0xc4020aae pcm3168a_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0xd84d2e2f pcm3168a_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x339e202b pcm512x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x9c3a5f76 pcm512x_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xde7b780e pcm512x_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xf98314a4 pcm512x_remove EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x5dc92cdf rl6231_pll_calc EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x70617a04 rl6231_get_clk_info EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x8d7fa148 rl6231_get_pre_div EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0xdba4502f rl6231_calc_dmic_clk EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6347a 0xa7aa810f rl6347a_hw_write EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6347a 0xade4bf4c rl6347a_hw_read -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt286 0x6f2edb33 rt286_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt298 0x563e670e rt298_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt286 0x96691ef6 rt286_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt298 0x207c70b3 rt298_mic_detect 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 0x1cd4e4c4 rt5640_disable_micbias1_for_ovcd -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x1fa481f5 rt5640_enable_micbias1_for_ovcd -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x456cc035 rt5640_dmic_enable -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x48751c94 rt5640_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x872cd12b rt5640_detect_headset -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xfb4b9414 rt5640_set_ovcd_params -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0x0e3b0c09 rt5645_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0x1d25082d rt5645_set_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5659 0x87f16568 rt5659_set_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5663 0x6a8449e2 rt5663_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0x1fdc02ac rt5670_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x1fae4d89 rt5640_enable_micbias1_for_ovcd +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x2321f655 rt5640_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x3afcd31e rt5640_disable_micbias1_for_ovcd +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x786454cc rt5640_set_ovcd_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xb413e246 rt5640_dmic_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xc0de0fe6 rt5640_detect_headset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0xb7c84d7e rt5645_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0xd8ac3bf4 rt5645_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5659 0x10e70e23 rt5659_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5663 0xd5405fdd rt5663_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0x2458fc12 rt5670_set_jack_detect EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0x2f5ee4db rt5670_components -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0x96435e1b rt5670_jack_resume -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0xc2486c73 rt5670_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0xdcb97d5c rt5670_jack_suspend -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677 0xc1912268 rt5677_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0xa3b14fa8 rt5670_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0xb1a0d164 rt5670_jack_suspend +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0xf8b3d13f rt5670_jack_resume +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677 0x2deea6ee 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 0x28730696 rt5682_supply_names -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x3e936cae rt5682_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x4803a13e rt5682_headset_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x4b32c76e rt5682_parse_dt -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x57f5d57c rt5682_readable_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x30d3fd14 rt5682_aif2_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x3a3a1220 rt5682_volatile_register EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x59d3d967 rt5682_jack_detect_handler -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x5e0fd7db rt5682_reset -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x653ce335 rt5682_volatile_register -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x69040792 rt5682_aif1_dai_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x8233bc91 rt5682_aif2_dai_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x930e1f74 rt5682_apply_patch_list -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xa4a96d97 rt5682_soc_component_dev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x62883c2d rt5682_apply_patch_list +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x6412ae15 rt5682_parse_dt +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x673c7463 rt5682_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x77cdb9a2 rt5682_soc_component_dev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xb4c07596 rt5682_headset_detect EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xb897de56 rt5682_reg -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xf97047ed rt5682_calibrate -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x218ee9bd devm_sigmadsp_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x67d6ef25 sigmadsp_reset -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xaa283d8c sigmadsp_restrict_params -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xc31cf13a sigmadsp_setup -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xefe24778 sigmadsp_attach -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-i2c 0x23e9efe9 devm_sigmadsp_init_i2c -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-regmap 0xb44bcb9f devm_sigmadsp_init_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x2074b0ae ssm2602_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x240c32c7 ssm2602_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic32x4 0x9b96be66 aic32x4_register_clocks -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic3x 0xd06b4382 aic3x_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0x0d6819fe ts3a227e_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xc450a290 rt5682_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xc49139bf rt5682_calibrate +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xdbe44617 rt5682_aif1_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xfe01c7a9 rt5682_readable_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x148fb7eb sigmadsp_setup +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x7b8f4e00 devm_sigmadsp_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x7ce6a36f sigmadsp_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x98437c52 sigmadsp_restrict_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xc56c2753 sigmadsp_attach +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-i2c 0xf79d3c57 devm_sigmadsp_init_i2c +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-regmap 0xa9948c51 devm_sigmadsp_init_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x66ccfadd ssm2602_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x97e5fd2f ssm2602_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic32x4 0xe6672cb1 aic32x4_register_clocks +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic3x 0x30afdc8e aic3x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0xa0a050d0 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 0x30f765e3 wcd938x_sdw_device_get -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x41201158 wcd938x_sdw_set_sdw_stream -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0xbb15ff06 wcd938x_sdw_hw_params -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0xc77fae85 wcd938x_swr_get_current_bank -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0xe6c2ba09 wcd938x_sdw_free -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x0a143aed wm_adsp_compr_copy -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x120830b7 wm_adsp_compr_pointer -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x12da637e wm_adsp_early_event -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x141b0468 wm_adsp_event -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x1f3cb562 wm_adsp_read_ctl -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x212196c8 wm_adsp_fw_enum -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x260ed29b wm_adsp_compr_open -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x2a6ae839 wm_halo_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x2d96ab69 wm_adsp2_set_dspclk -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x37ef51b2 wm_adsp_compr_get_caps +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x09facc1c wcd938x_swr_get_current_bank +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x2264bafb wcd938x_sdw_device_get +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x4e98c948 wcd938x_sdw_hw_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x6c0aa560 wcd938x_sdw_set_sdw_stream +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0xc5f542cd wcd938x_sdw_free +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x174bf909 wm_adsp2_preloader_put +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x1a9f6b1e wm_adsp_compr_handle_irq +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x1f5d3274 wm_adsp2_component_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x33fb7a5c wm_adsp2_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x348e5b4e wm_adsp2_preloader_get +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x4166d35b wm_adsp_compr_free +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x4a90082b wm_adsp_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x4ebbbe0a wm_adsp_compr_get_caps 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 0x8253a0aa wm_adsp2_preloader_get -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x85822283 wm_adsp1_event -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x869b7d69 wm_adsp2_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x98c8136f wm_adsp_write_ctl -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xa1eb5262 wm_adsp_compr_trigger -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xa51ed81e wm_adsp2_component_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xa738e10e wm_adsp_fw_get -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xad904140 wm_adsp_compr_handle_irq -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xb6327575 wm_adsp2_component_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xbe705d2e wm_adsp_compr_free -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xcb182515 wm_adsp_fw_put -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xcb71badd wm_adsp_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x564761bf wm_adsp_event +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x657694ac wm_adsp1_event +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x7440571c wm_adsp2_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x753cb4ae wm_adsp_early_event +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x9ca39638 wm_adsp_fw_put +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xa13da0e6 wm_adsp2_component_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xaf216290 wm_adsp_compr_open +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xb4050398 wm_adsp1_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xbdd758b5 wm_adsp_fw_enum +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xbf66347f wm_adsp_fw_get +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xcc0e38b8 wm_adsp_read_ctl +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xd2f6e971 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 0xddfdf1c9 wm_adsp_compr_pointer +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xe23cb686 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 0xee7364b1 wm_adsp2_preloader_put -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xf6f528d9 wm_adsp1_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xfd5486db wm_adsp2_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x04fa5b00 wm8804_pm -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xce39125f wm8804_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xd7e7f748 wm8804_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xf5920509 wm8804_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0xb2c06c48 wm8903_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0x7bf565c8 wm8962_mic_detect -EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0xd640e897 fsl_asrc_component +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xeb550872 wm_adsp2_set_dspclk +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xecbbfff2 wm_adsp_compr_trigger +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xee849ac9 wm_halo_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x391a2e6d wm8804_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x571010b5 wm8804_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x6f39e944 wm8804_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x9c284ba0 wm8804_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0x3877389b wm8903_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0xf9865dbd wm8962_mic_detect +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0x12f6bcda 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 0x006bb5e4 asoc_simple_remove -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x1449fdff asoc_simple_parse_clk -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x22a2cc2e asoc_simple_parse_routing -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x3bb9157a asoc_simple_shutdown -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x44c35f06 asoc_simple_set_dailink_name -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x5be79e29 asoc_simple_parse_pin_switches -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x5ca35dbb asoc_simple_dai_init -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x5cc0eb48 asoc_simple_startup -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x624acad3 asoc_simple_parse_widgets -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x6a99f196 asoc_simple_init_jack -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x72c30f96 asoc_simple_init_priv -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x78ed4237 asoc_simple_parse_daifmt -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xaf66fcde asoc_simple_be_hw_params_fixup -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xb0ddf928 asoc_simple_parse_convert -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xb50a4b28 asoc_simple_hw_params -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xcdb8bbf6 asoc_simple_parse_card_name -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xd1afe79c asoc_graph_card_probe -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xdd2f44c0 asoc_simple_canonicalize_platform +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x1183317f asoc_simple_parse_pin_switches +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x1eaa7975 asoc_simple_parse_widgets +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x1ef4c620 asoc_simple_be_hw_params_fixup +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x20879b90 asoc_simple_parse_routing +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x2acca685 asoc_simple_clean_reference +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x2e48c9df asoc_simple_startup +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x3b01f22b asoc_simple_parse_clk +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x4966da12 asoc_simple_parse_card_name +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x51d871e6 asoc_simple_shutdown +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x70c78f97 asoc_simple_canonicalize_cpu +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x7cc3e2ec asoc_simple_set_dailink_name +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x82492a9d asoc_simple_dai_init +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x89f21cd9 asoc_simple_init_priv +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xacf2f257 asoc_simple_parse_daifmt +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xb5f713d1 asoc_simple_hw_params +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xc5268692 asoc_simple_canonicalize_platform +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xc87b4527 asoc_simple_remove +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xdde6a207 asoc_simple_parse_convert +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xe31a7136 asoc_simple_init_jack +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xe45b5b5d asoc_graph_card_probe EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xf3bafb75 asoc_simple_convert_fixup -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xf6192abf asoc_simple_clean_reference -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xff3fdfd6 asoc_simple_canonicalize_cpu -EXPORT_SYMBOL_GPL sound/soc/intel/atom/snd-soc-sst-atom-hifi2-platform 0x1b5b5503 sst_register_dsp -EXPORT_SYMBOL_GPL sound/soc/intel/atom/snd-soc-sst-atom-hifi2-platform 0x7063a863 sst_unregister_dsp -EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x40fd2ddb sst_configure_runtime_pm +EXPORT_SYMBOL_GPL sound/soc/intel/atom/snd-soc-sst-atom-hifi2-platform 0x02cf43d8 sst_register_dsp +EXPORT_SYMBOL_GPL sound/soc/intel/atom/snd-soc-sst-atom-hifi2-platform 0x4c19c314 sst_unregister_dsp +EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x2478c5f0 sst_configure_runtime_pm +EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x3d42d267 sst_alloc_drv_context +EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x553e2ded intel_sst_pm +EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x6d368888 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 0x8b133a76 intel_sst_pm -EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0xa3990b75 sst_context_init -EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0xb3893bb0 sst_alloc_drv_context -EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0xd387411b sst_context_cleanup +EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0xde98284e sst_context_cleanup EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x0281834b snd_soc_acpi_intel_cherrytrail_machines -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x0ee9d6a6 snd_soc_acpi_intel_ehl_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x18a66882 snd_soc_acpi_intel_cnl_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x23c0f582 snd_soc_acpi_intel_icl_machines EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x2c4fd0d6 snd_soc_acpi_intel_tgl_machines -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x477bd470 snd_soc_acpi_intel_hda_machines EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x482cc324 snd_soc_acpi_intel_jsl_machines EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x55eef082 snd_soc_acpi_intel_broadwell_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x5994f4d4 snd_soc_acpi_intel_kbl_machines EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x5add5149 snd_soc_acpi_intel_baytrail_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x75ae2ce9 snd_soc_acpi_intel_skl_machines EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x7c617496 snd_soc_acpi_intel_haswell_machines EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x7f0cf4cf snd_soc_acpi_intel_bxt_machines -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x8071d501 snd_soc_acpi_intel_icl_sdw_machines EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x80e36ae3 snd_soc_acpi_intel_cfl_sdw_machines -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x97444c21 snd_soc_acpi_intel_skl_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x91ca40fa snd_soc_acpi_intel_icl_sdw_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0xa591b4b8 snd_soc_acpi_intel_hda_machines EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0xa95e3688 snd_soc_acpi_intel_glk_machines EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0xaee91d12 snd_soc_acpi_intel_adl_sdw_machines EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0xb291f19b snd_soc_acpi_intel_cml_sdw_machines EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0xb5e4a471 snd_soc_acpi_intel_cfl_machines -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0xbb7e941c snd_soc_acpi_intel_kbl_machines -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0xc12a954a snd_soc_acpi_intel_icl_machines EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0xc787c511 snd_soc_acpi_intel_tgl_sdw_machines EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0xe67811d5 snd_soc_acpi_intel_adl_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0xe6ad4e5c snd_soc_acpi_intel_cnl_sdw_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0xec03b66e snd_soc_acpi_intel_ehl_machines EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0xef3f8fcc snd_soc_acpi_intel_cml_machines -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0xf716dba7 snd_soc_acpi_intel_cnl_sdw_machines -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0xfa4c084a snd_soc_acpi_intel_cnl_machines -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x01db691a sst_dsp_inbox_read EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x16e86983 sst_shim32_read -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x22e64db3 sst_dsp_inbox_write -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x39a7b4d8 sst_dsp_shim_update_bits_forced_unlocked -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x4feebdc3 sst_dsp_shim_update_bits_forced -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x5a0dbbea sst_dsp_shim_update_bits -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x5ae5e058 sst_dsp_shim_write -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x5b541e2c sst_dsp_outbox_write -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x67e04b4d sst_dsp_shim_read -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x6f305213 sst_dsp_outbox_read +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x2e85ec13 sst_dsp_shim_read_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x385867d7 sst_dsp_shim_update_bits_forced +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x3c1a3645 sst_dsp_shim_write_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x46c436b8 sst_dsp_mailbox_init +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x59f24601 sst_dsp_inbox_write +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x59f7b58d sst_dsp_outbox_write +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x6b083fc5 sst_dsp_shim_read +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x8725aee0 sst_dsp_shim_update_bits_forced_unlocked EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x87cdf7d2 sst_shim32_write64 -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x89b5d11f sst_dsp_mailbox_init -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xb0c9a605 sst_dsp_shim_update_bits_unlocked -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xb24ddbcb sst_dsp_shim_read_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x946af591 sst_dsp_shim_write +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xa3269c40 sst_dsp_outbox_read +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xa6d51040 sst_dsp_inbox_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 0xdf781d2c sst_dsp_shim_write_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xe3c8b9c4 sst_dsp_shim_update_bits_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xe5c51ce5 sst_dsp_register_poll 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 0xf516841f sst_dsp_register_poll -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x07169942 sst_ipc_tx_msg_reply_complete -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x3e03fb6e sst_ipc_tx_message_nowait -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x77a301ea sst_ipc_fini -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x9836f9b3 sst_ipc_tx_message_wait -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x9fcc8708 sst_ipc_init -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0xd3060fde sst_ipc_reply_find_msg -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0xeb6c99fb sst_ipc_tx_message_nopm -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x01a53b0b skl_put_pvt_id -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x041aaa53 skl_ipc_bind_unbind -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x0821c486 skl_sst_ipc_load_library -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x0a060874 skl_dsp_wake -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x0a3ad07a skl_ipc_restore_pipeline -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x0a86c3cb skl_sst_dsp_init -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x0e23dc64 skl_dsp_get_core -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x10c033e8 is_skl_dsp_running -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x179ca59a skl_dsp_sleep -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x2b284a01 cnl_sst_init_fw -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x340f531f skl_dsp_free -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x348dc951 skl_ipc_create_pipeline -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x361090ff skl_ipc_set_pipeline_state -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x4b54f435 cnl_sst_dsp_init -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x5430d94b skl_clear_module_cnt -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x5afd1c8f skl_get_pvt_instance_id_map -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x5dcc263c cnl_sst_dsp_cleanup -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x5efe970d skl_ipc_get_large_config -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x6df3f23a skl_get_pvt_id -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x6ec1f597 bxt_sst_init_fw -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x7d377164 skl_ipc_set_d0ix -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x82efdcd3 bxt_sst_dsp_cleanup -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x841bcb48 bxt_sst_dsp_init -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x85acd74f skl_ipc_load_modules -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x8639687b skl_sst_dsp_cleanup -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x875d2f0c skl_ipc_set_large_config -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x9adc7cb4 skl_ipc_unload_modules -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xb110f63f skl_sst_init_fw -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xc3d08bef skl_ipc_init_instance -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xc4bcbc99 skl_ipc_save_pipeline -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xca7daf04 cnl_dsp_free -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xe7644b69 skl_ipc_delete_pipeline -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xe80b5b3e skl_dsp_set_dma_control -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xf383c400 skl_dsp_put_core -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xf9364bee skl_ipc_set_dx +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xffc2ec1d sst_dsp_shim_update_bits +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x590a53f4 sst_ipc_init +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x60c2f3a6 sst_ipc_tx_message_nopm +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x7c92791c sst_ipc_tx_message_wait +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0xb0a04542 sst_ipc_reply_find_msg +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0xb681ec70 sst_ipc_tx_msg_reply_complete +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0xb87dd6fe sst_ipc_tx_message_nowait +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0xf2b161c6 sst_ipc_fini +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x06bce8ff skl_sst_init_fw +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x2522ac37 skl_put_pvt_id +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x3162569a skl_ipc_save_pipeline +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x31861bc2 skl_ipc_load_modules +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x4050fb3d cnl_sst_dsp_init +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x5af58505 skl_sst_ipc_load_library +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x6200bf01 cnl_sst_dsp_cleanup +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x6ae2b8d0 skl_ipc_get_large_config +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x76d7b036 skl_dsp_sleep +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x7700ec68 skl_get_pvt_instance_id_map +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x7a32a49e skl_dsp_put_core +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x7ccbf644 skl_ipc_unload_modules +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x7d4a811c skl_ipc_set_dx +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x7d522482 bxt_sst_init_fw +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x911ae812 cnl_sst_init_fw +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x9323683b skl_dsp_get_core +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x97981f0f skl_get_pvt_id +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x9b29aea9 is_skl_dsp_running +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xa5cf2400 skl_sst_dsp_init +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xa782aa72 skl_dsp_wake +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xb3165434 skl_ipc_bind_unbind +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xb549ba7c skl_ipc_delete_pipeline +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xb6cc03fa skl_ipc_init_instance +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xb725fbbf skl_ipc_set_d0ix +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xbd65b735 skl_ipc_restore_pipeline +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xc01992b2 skl_ipc_set_large_config +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xc844a5f6 skl_ipc_create_pipeline +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xd0233b6c skl_sst_dsp_cleanup +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xd66588f5 skl_dsp_set_dma_control +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xd6e95adf bxt_sst_dsp_cleanup +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xd81e0708 skl_clear_module_cnt +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xe2f876ad cnl_dsp_free +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xebc681d6 bxt_sst_dsp_init +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xf0ba1b7a skl_ipc_set_pipeline_state +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xfa277f5d skl_dsp_free EXPORT_SYMBOL_GPL sound/soc/snd-soc-acpi 0x508e2567 snd_soc_acpi_codec_list EXPORT_SYMBOL_GPL sound/soc/snd-soc-acpi 0x6c5d2bcd snd_soc_acpi_find_package_from_hid EXPORT_SYMBOL_GPL sound/soc/snd-soc-acpi 0xe3a526be snd_soc_acpi_find_machine -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x019fbfdb snd_soc_dai_compr_get_metadata -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0229b865 snd_soc_component_initialize -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x022a7689 snd_soc_debugfs_root -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x02b080d8 snd_soc_component_update_bits -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x02eef89f snd_soc_component_compr_get_caps -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x04321639 snd_soc_dapm_get_pin_switch -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0652e6f0 snd_soc_of_get_dai_name -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x06881fa2 snd_soc_component_exit_regmap -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x06f64409 snd_soc_get_dai_name -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x08358cd4 snd_soc_jack_add_pins -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x08f2777a snd_soc_component_compr_ack -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0cdd2b5b snd_soc_dapm_weak_routes -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0dc67fd8 snd_soc_pm_ops -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x102c3241 snd_soc_dapm_get_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x10faf65c snd_soc_component_enable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x13ef8bbb snd_soc_find_dai_with_mutex -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x158ef56e snd_soc_dapm_get_pin_status -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x168a8233 snd_soc_get_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x170251ca snd_soc_dai_link_set_capabilities -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1859871f snd_soc_component_compr_trigger -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x18df0b28 snd_soc_cnew -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1978f032 snd_soc_card_add_dai_link -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1a9cc5b1 snd_soc_dai_action -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1bb57cb1 snd_soc_dapm_disable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1cadb07d snd_soc_daifmt_parse_format -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1cf005b0 snd_soc_component_compr_get_codec_caps -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1d208934 snd_soc_component_async_complete -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1f1badf7 snd_soc_put_xr_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x20149171 devm_snd_dmaengine_pcm_register -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2043772f snd_soc_get_dai_id -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x23e755bd snd_soc_dai_set_pll -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x24a11e3c snd_soc_lookup_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x250ba69b snd_soc_jack_notifier_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0021096a snd_soc_dpcm_fe_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x00d9f396 snd_soc_component_compr_pointer +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x017057b1 snd_soc_limit_volume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0415d943 snd_soc_get_dai_id +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x057b372d snd_soc_runtime_action +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x05ad7f5b snd_soc_component_update_bits_async +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x05b8d24e snd_soc_new_compress +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x07b33c0e snd_soc_component_compr_set_metadata +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0890f0ad snd_soc_set_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0a48d495 snd_soc_dai_compr_startup +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0a4b4778 snd_soc_lookup_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0aa814c6 snd_soc_dapm_nc_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0b809595 snd_soc_dapm_new_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0bea148f snd_soc_find_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0cff692d snd_soc_dapm_new_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0f2e4662 snd_soc_component_compr_copy +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0fe2810d snd_soc_dpcm_get_substream +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x105d328d snd_soc_component_force_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x13892029 snd_soc_dapm_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x13ba669a snd_soc_of_get_dai_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x15cfe713 snd_soc_dapm_update_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x16793852 snd_soc_component_update_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x184216d7 snd_soc_dapm_disable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x194e9f74 snd_soc_component_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1a73d6ed snd_soc_get_dai_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1ad85bb4 snd_soc_bytes_info +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1d3d6c8a snd_dmaengine_pcm_prepare_slave_config +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1d5715f9 snd_soc_lookup_component_nolocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x23a598f0 snd_soc_set_ac97_ops_of_reset +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x247d4c5c snd_soc_of_get_slot_mask +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x25043f61 snd_soc_card_jack_new EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2541a979 snd_soc_calc_frame_size -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2560cca6 snd_soc_component_read_field -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x25f032ff snd_soc_info_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x26145efd snd_soc_component_compr_get_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x26fe5038 snd_soc_dapm_free -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2833961f snd_soc_add_pcm_runtime -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2b10267c snd_soc_component_disable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2b76328d snd_soc_add_dai_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2cc6993d snd_soc_register_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2dce8d02 snd_soc_dai_set_sysclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2ebc7e8c snd_soc_component_compr_copy -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x30559175 dapm_regulator_event -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x323cf05f snd_soc_dapm_mixer_update_power -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x32ecc887 snd_soc_bytes_tlv_callback -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x33822e1c snd_soc_component_test_bits -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x33a89555 snd_soc_dai_set_tdm_slot -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x33d7154a snd_soc_card_remove_dai_link -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x36912a53 snd_soc_get_xr_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x376accf5 null_dailink_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3814389c snd_soc_add_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x39ff11c7 snd_soc_jack_report -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3b8eec2a snd_soc_rtdcom_lookup -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3e9a9ea0 snd_soc_bytes_put -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3eda922b snd_soc_component_compr_set_metadata -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3f000597 snd_soc_put_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x42632de2 snd_soc_dai_compr_shutdown -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x44463227 snd_soc_component_compr_get_metadata -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x44ffd773 snd_soc_dpcm_runtime_update -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x46adadeb snd_soc_dai_set_fmt -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x48280f13 snd_soc_dapm_del_routes -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4969420a snd_soc_add_card_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4ac3c5d2 snd_soc_jack_get_type -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4e303552 snd_soc_bytes_get -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4e363200 snd_soc_lookup_component_nolocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4e9b2a8d snd_soc_dapm_force_enable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5050b26c snd_soc_dpcm_can_be_free_stop -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x52c88c02 snd_soc_get_pcm_runtime -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x52f01073 snd_soc_dapm_nc_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x53804c4d snd_soc_dpcm_be_can_update -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x54662f6e snd_soc_link_compr_set_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x566c0092 snd_soc_tplg_widget_bind_event -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x57bf9e8b dpcm_be_dai_trigger -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x582a5077 snd_soc_dai_get_channel_map -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x592a2a8e snd_soc_put_volsw_range -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x59822f9b snd_soc_dai_set_tristate -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5afe1725 snd_soc_component_compr_open -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5be747be snd_soc_dai_digital_mute -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5ea35803 snd_soc_of_parse_audio_routing -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5f0f24c6 snd_soc_put_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x65dc751c snd_soc_bytes_info_ext -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x667c04ee snd_soc_dapm_get_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x67fd6410 snd_soc_get_volsw_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6b3c308c snd_soc_get_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6beb7108 snd_soc_dapm_update_dai -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6cadfb54 snd_soc_tplg_component_remove -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6cecfb86 devm_snd_soc_register_dai -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6d193ec4 snd_soc_get_volsw_range -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6ddd3dc4 dapm_mark_endpoints_dirty -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6dde83bb devm_snd_soc_register_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x71163296 snd_soc_dapm_mux_update_power -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x715924a9 soc_ac97_ops -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x72298006 snd_soc_dai_compr_get_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7256aa80 snd_soc_get_strobe -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x72e5e45d snd_soc_component_write -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7446dd7f snd_soc_dapm_new_widgets -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x744feaa6 snd_soc_add_component_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x749734e4 snd_soc_component_compr_free -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x760f47cc snd_soc_component_force_enable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7b2f866d snd_soc_close_delayed_work -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7c25a879 snd_soc_component_nc_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7ce12325 snd_soc_daifmt_parse_clock_provider_raw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x27b7200c snd_soc_tplg_widget_bind_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x28237ae3 snd_soc_add_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x282d9920 snd_soc_component_get_pin_status +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x29363484 snd_soc_info_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2b461567 snd_soc_component_compr_get_caps +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2c6a66bc snd_soc_jack_add_gpiods +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2cf1ee12 snd_soc_dai_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x302fdadc snd_soc_component_force_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x330fbaaf snd_soc_close_delayed_work +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3351d02a snd_soc_component_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x335c037e snd_soc_card_remove_dai_link +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x34604255 snd_soc_dapm_put_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x35673ea3 snd_soc_jack_add_zones +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x36519772 snd_soc_dapm_stream_stop +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x366003fd dapm_pinctrl_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x372367d8 snd_soc_dai_set_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3800a1b5 snd_soc_dai_link_set_capabilities +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x39a9564d snd_soc_of_parse_card_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3d8ee552 snd_soc_of_parse_audio_routing +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3e3cdfe4 snd_soc_dapm_get_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3ec9bf7f snd_soc_dai_set_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4026337d snd_soc_dapm_disable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x403e46c6 snd_soc_of_parse_node_prefix +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4385dc90 devm_snd_soc_register_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x43a5395d dapm_regulator_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x43e55c8f snd_soc_add_pcm_runtime +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x45368045 snd_soc_dai_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x46b832e8 snd_soc_dapm_new_control +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x49d510bd snd_soc_component_nc_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4a26b4a3 snd_soc_component_disable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4a47aa08 snd_soc_dai_get_channel_map +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4d5b41f7 snd_soc_component_write_field +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4e4752d8 snd_soc_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4e4be0b6 snd_soc_bytes_tlv_callback +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4ec89e06 snd_soc_component_test_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5068ad05 snd_soc_dapm_sync +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5084fd1d snd_soc_component_compr_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x54f9f27e snd_soc_get_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x559e03ba snd_soc_dai_active +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5788dcb3 snd_soc_dai_compr_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x59c34a80 snd_soc_dapm_info_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5b177543 snd_soc_unregister_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5bd5a09a snd_soc_dai_set_channel_map +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5c00c50b snd_soc_component_nc_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5c0599a0 snd_soc_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5c8fc798 snd_soc_card_get_kcontrol +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x60220dc2 snd_soc_free_ac97_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x606b8c1f snd_soc_dapm_free +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x62897976 snd_soc_remove_pcm_runtime +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x62dd751b snd_soc_bytes_info_ext +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x631bf37c snd_soc_runtime_calc_hw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x638c56d0 snd_soc_pm_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6672fd94 snd_soc_set_runtime_hwparams +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6826b82c snd_soc_get_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x69b75210 snd_soc_dai_compr_get_metadata +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6a52140c snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6ba344d7 devm_snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6ced8aef snd_soc_dapm_kcontrol_widget +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x71f732ae snd_soc_dapm_force_bias_level +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x725cda52 snd_soc_get_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x736fbf89 snd_soc_dpcm_runtime_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x73a66c60 snd_soc_unregister_component_by_driver +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x74dfffed snd_soc_runtime_set_dai_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x75367a91 snd_dmaengine_pcm_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x776f187f snd_soc_dai_compr_ack +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x78f278a0 snd_soc_put_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7a0a07cd snd_soc_dai_compr_pointer +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7ab8e4f5 snd_soc_cnew +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7b301985 snd_soc_dai_action +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7b30e31e snd_soc_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7b90b454 snd_soc_dapm_init +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7cae876d snd_soc_dapm_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7df26dc6 snd_soc_of_put_dai_link_codecs EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e606130 snd_soc_calc_bclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7f68d7de snd_soc_unregister_card -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x80137482 snd_soc_jack_notifier_unregister -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x80568e64 snd_soc_set_ac97_ops_of_reset -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x81179371 snd_soc_dapm_ignore_suspend -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8254a898 snd_soc_of_get_slot_mask -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x830845d8 snd_soc_dapm_disable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x84893946 snd_soc_dai_set_bclk_ratio -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8573de7c dapm_kcontrol_get_value -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x85bde236 snd_soc_link_compr_shutdown -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8b6ad77d snd_soc_dai_compr_pointer -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8d80469f snd_soc_of_parse_tdm_slot -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8e36928b snd_soc_dai_compr_startup -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8f58f900 snd_soc_dai_compr_set_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x90bbac64 snd_soc_jack_add_gpiods -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x948ff2dd snd_soc_runtime_calc_hw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x95472006 dapm_pinctrl_event -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x95526ade snd_soc_component_enable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x96679278 snd_soc_set_ac97_ops -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9695296d snd_soc_dapm_enable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x980bdafb snd_soc_set_runtime_hwparams -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x99d83b73 snd_dmaengine_pcm_unregister -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9bdf6ec8 snd_soc_dai_compr_ack +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7fe790f7 snd_soc_dapm_del_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8191cf4e snd_soc_tplg_component_remove +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x81add864 snd_soc_jack_free_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x82c0e9df dapm_mark_endpoints_dirty +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x848660fd snd_soc_set_dmi_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x892c1bac snd_soc_component_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8e7a0ac7 snd_soc_dai_set_tristate +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8ea282b5 snd_soc_component_compr_open +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8f66943b snd_soc_info_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x92d141fb soc_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x93f2fb72 snd_soc_resume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x994dbc68 snd_soc_of_parse_audio_simple_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x99a5090c snd_soc_jack_add_pins +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9a194f38 snd_soc_add_card_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9b1b6571 snd_soc_add_dai_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9b688ad2 snd_soc_dapm_kcontrol_dapm +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9b8004e2 snd_soc_dai_digital_mute EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9bfde704 snd_soc_daifmt_clock_provider_fliped -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9c305021 snd_soc_of_parse_aux_devs -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9c470c18 snd_soc_dapm_sync -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9dea795d snd_soc_info_volsw_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9eac9fd0 snd_soc_register_card -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9f298d28 snd_soc_link_compr_startup -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa06b42da snd_soc_dpcm_can_be_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa246db1a snd_soc_jack_add_zones -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa26c57b3 snd_soc_dpcm_fe_can_update -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa354878e snd_soc_unregister_component_by_driver -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa387add2 snd_soc_limit_volume -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa3c447f6 snd_soc_put_strobe -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa6dabe0a snd_soc_find_dai -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa7ae4a53 snd_soc_dapm_new_control -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa98d0ad0 snd_soc_dapm_info_pin_switch -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xabf0ba2f snd_soc_component_set_sysclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xad7007e0 snd_soc_component_force_enable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xadeaab89 snd_soc_dapm_put_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xae1ac90a snd_soc_dai_set_channel_map -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xae2bfe77 snd_soc_dai_active -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb0e3a5f2 snd_soc_dapm_force_enable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb18edcb0 snd_soc_info_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb19a353d snd_soc_component_set_pll -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb37668e8 snd_soc_remove_pcm_runtime -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb5142f08 snd_soc_tplg_component_load -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb5b17737 snd_soc_new_compress -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb64b65ba snd_soc_info_volsw_range -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb90a7b6b snd_soc_of_put_dai_link_codecs -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb9f553a0 snd_soc_dapm_sync_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbb88b590 snd_soc_jack_add_gpios -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbbe20dd2 snd_soc_dai_set_clkdiv -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbcb67907 snd_soc_runtime_set_dai_fmt -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbfbbea40 snd_soc_of_get_dai_link_codecs -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc023f537 snd_soc_put_volsw_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc0a77e89 snd_soc_set_dmi_name -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc3ed5d1d snd_soc_card_jack_new -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc5a30fc5 snd_soc_info_xr_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc795440d snd_soc_of_parse_card_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9c41c7bf snd_soc_bytes_put +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9c5295ca snd_soc_info_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9f2455b2 devm_snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa0a77cfd dapm_kcontrol_get_value +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa17a4346 snd_soc_poweroff +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa27ef822 snd_soc_component_compr_get_codec_caps +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa3ce820f snd_soc_bytes_get +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa3f7e9b8 snd_soc_component_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa3f7f46d snd_soc_dpcm_be_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa48921ce snd_soc_dai_compr_set_metadata +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa5f4a8cd snd_soc_card_add_dai_link +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa675aa29 snd_soc_component_read_field +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa6d18ba7 snd_soc_dpcm_can_be_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa839177c snd_soc_dai_set_clkdiv +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa9694237 null_dailink_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xae50769d snd_soc_component_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaefdd23a snd_soc_component_compr_get_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb038c680 snd_soc_dapm_force_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb06c6ed2 snd_soc_link_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb0e7e9b5 snd_soc_put_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb45abaf1 snd_soc_find_dai_with_mutex +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb694d77d snd_soc_debugfs_root +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb7660b57 devm_snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb8c5fd52 snd_soc_get_pcm_runtime +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbaab63d5 snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbf05b76a snd_soc_component_exit_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc0c258ea snd_soc_dapm_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc1a51179 snd_soc_component_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc321b8ba snd_soc_jack_get_type +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc488bf0e snd_soc_dpcm_can_be_free_stop +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc507e774 snd_soc_component_disable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc5dd9437 snd_soc_link_compr_shutdown +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc675b8ae snd_soc_new_ac97_component EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8269f94 snd_soc_params_to_frame_size -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xccc396cb snd_soc_component_compr_pointer -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xceca78fd snd_soc_dai_compr_trigger -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd0799671 snd_dmaengine_pcm_prepare_slave_config -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd18f3625 snd_soc_component_read -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd1e7433e snd_soc_dapm_kcontrol_dapm -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd3f67bad snd_soc_free_ac97_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd432e00c snd_soc_of_parse_node_prefix -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd682dc28 snd_soc_jack_free_gpios -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd7d930e0 snd_soc_dai_compr_set_metadata -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd8b3e231 snd_dmaengine_pcm_register -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd8d39056 snd_soc_component_disable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdc62d344 snd_soc_dapm_add_routes -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdcdec720 snd_soc_dapm_force_bias_level -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdf003611 snd_soc_component_set_jack -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe1804c17 snd_soc_dapm_kcontrol_widget -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe23bcc46 snd_soc_dapm_stream_stop -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe4a29039 devm_snd_soc_register_card -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe5465084 snd_soc_dpcm_get_substream -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe5949f64 snd_soc_dapm_enable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe6df29ad snd_soc_dapm_nc_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe97a5a7c snd_soc_component_write_field -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeafbe1ea snd_soc_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xca4ac93f snd_soc_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcbd9f0fa snd_soc_dai_compr_shutdown +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcf5a6a84 snd_soc_dapm_sync_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd037f925 snd_soc_put_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd039acc2 snd_soc_link_compr_startup +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd1faa566 snd_soc_of_parse_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd53d8680 snd_soc_of_get_dai_link_codecs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd60242a0 snd_soc_dapm_mux_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd78dd294 snd_soc_component_compr_get_metadata +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd80e1008 snd_soc_component_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd8c91978 snd_soc_dapm_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd9413fe3 snd_soc_tplg_component_load +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xda46496e snd_soc_jack_notifier_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xda9e09b3 snd_soc_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdabeef43 snd_soc_dapm_mixer_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdb5680dd snd_soc_dapm_get_pin_status +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdc532db5 snd_soc_unregister_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdc592230 snd_soc_component_async_complete +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdf80c188 snd_soc_daifmt_parse_clock_provider_raw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdf965aee snd_soc_get_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe2d0530c snd_soc_component_compr_free +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe3bcd12a snd_soc_component_compr_ack +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe6e64765 snd_soc_component_set_jack +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe786f0b5 snd_soc_dai_compr_get_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe7b3ca07 snd_soc_jack_notifier_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe7c426c5 snd_soc_daifmt_parse_format +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe8a614a3 snd_soc_info_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xea2a6c56 snd_soc_dai_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeae1eb28 snd_soc_put_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeae881b8 snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb17e945 snd_soc_component_initialize +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb48f3e8 snd_soc_unregister_dai EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb711ae7 snd_soc_params_to_bclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xebb87ef0 snd_soc_dapm_put_pin_switch -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xedae4f6b snd_soc_bytes_info -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf0bf0ea2 snd_soc_dapm_init -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf244a2e1 snd_soc_component_update_bits_async -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf2786000 snd_soc_component_compr_set_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf27bc23d snd_soc_dapm_put_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf3d49e98 snd_soc_component_nc_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf5d105dd snd_soc_card_get_kcontrol -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf5f2267b snd_soc_unregister_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf6322993 snd_soc_runtime_action -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf67be39b snd_soc_dapm_new_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf6f8f25a snd_soc_poweroff -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf90353ee snd_soc_new_ac97_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xed1ca31a snd_soc_info_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xed5f7538 snd_soc_dapm_force_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xed9a0552 dapm_clock_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeef1f658 snd_soc_add_component_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xef488792 snd_soc_jack_add_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xef5d3f97 snd_soc_dapm_add_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf082b2ef snd_soc_of_parse_aux_devs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf16366b4 snd_soc_dapm_ignore_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf1a2a5e1 dpcm_be_dai_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf348a5e2 snd_soc_dapm_weak_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf3bc4451 snd_soc_dapm_nc_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf72911f4 snd_soc_dapm_get_volsw EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf9622dd1 snd_soc_daifmt_clock_provider_from_bitmap -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfa02fa16 snd_soc_component_get_pin_status -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfaf56024 snd_soc_component_init_regmap -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfb99e892 snd_soc_resume -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfc9f7314 snd_soc_of_parse_audio_simple_widgets -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfe8feaa1 dapm_clock_event -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfed887fe snd_soc_unregister_dai -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x0a566d04 snd_sof_debugfs_buf_item -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x2ad7eb07 snd_sof_dbg_init -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x36f22267 snd_sof_free_debug -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x8becc3ed snd_sof_debugfs_io_item -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0xc09b46dc snd_sof_dbg_memory_info_init -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x13b4f812 line6_write_data -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x1a7acc09 line6_probe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf96d4a3d snd_soc_dapm_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfaee5c49 snd_soc_component_init_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfdc3e2af snd_soc_jack_report +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfed71a65 snd_soc_dai_set_bclk_ratio +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xffbcc7b5 snd_soc_rtdcom_lookup +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x26e0f5d3 snd_sof_debugfs_buf_item +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x442555b6 snd_sof_free_debug +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0xb119db93 snd_sof_dbg_init +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0xc515d3d9 snd_sof_debugfs_io_item +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0xe2ee125e snd_sof_dbg_memory_info_init +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x0ea6465e line6_pcm_release +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x12c917dd line6_pcm_acquire EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x202a1b1b line6_midi_id -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x2316e7b7 line6_resume -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x5fd69f21 line6_version_request_async -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x729f2145 line6_read_serial_number -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x7b85fe6a line6_send_raw_message -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x7dae9529 line6_disconnect -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x7fe4ead2 line6_alloc_sysex_buffer -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x856d8f0b line6_suspend -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x85e76bab line6_send_sysex_message -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xa2b8870d line6_pcm_release -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xafeee4f2 line6_init_midi -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xd2c612cd line6_pcm_acquire -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xd41297c1 line6_read_data -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xd9dc2dcb line6_send_raw_message_async -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xddd878b0 line6_init_pcm -EXPORT_SYMBOL_GPL vmlinux 0x000d09eb iommu_map_sg -EXPORT_SYMBOL_GPL vmlinux 0x001790b6 file_ra_state_init +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x39e35fab line6_send_sysex_message +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x488350cd line6_suspend +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x4ca0f454 line6_resume +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x600fc9f8 line6_version_request_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x644cc284 line6_send_raw_message +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x6bd2dbed line6_init_pcm +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x721f1bc5 line6_read_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x780eca62 line6_send_raw_message_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x8515b551 line6_init_midi +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x9b7ec442 line6_probe +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xa8f747ed line6_write_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xc6b7a1ae line6_alloc_sysex_buffer +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xeed7a059 line6_read_serial_number +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xf96a76c1 line6_disconnect +EXPORT_SYMBOL_GPL vmlinux 0x00011cb2 i2c_parse_fw_timings +EXPORT_SYMBOL_GPL vmlinux 0x0010a465 skb_zerocopy_iter_dgram EXPORT_SYMBOL_GPL vmlinux 0x001b074f mce_is_correctable -EXPORT_SYMBOL_GPL vmlinux 0x001f50bd devm_spi_register_controller -EXPORT_SYMBOL_GPL vmlinux 0x0029e87d relay_file_operations -EXPORT_SYMBOL_GPL vmlinux 0x0032c71a md_run +EXPORT_SYMBOL_GPL vmlinux 0x0033a30a __tracepoint_br_fdb_external_learn_add EXPORT_SYMBOL_GPL vmlinux 0x0034f3b6 xen_has_pv_nic_devices -EXPORT_SYMBOL_GPL vmlinux 0x003ac8ef skcipher_alloc_instance_simple -EXPORT_SYMBOL_GPL vmlinux 0x0042834d wm8400_reset_codec_reg_cache +EXPORT_SYMBOL_GPL vmlinux 0x00376933 nfnl_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0x003a67d2 mmc_sanitize +EXPORT_SYMBOL_GPL vmlinux 0x0043f4ab noop_invalidatepage +EXPORT_SYMBOL_GPL vmlinux 0x004814da page_cache_sync_ra EXPORT_SYMBOL_GPL vmlinux 0x00513f58 get_timespec64 EXPORT_SYMBOL_GPL vmlinux 0x00531a17 xen_xlate_map_ballooned_pages +EXPORT_SYMBOL_GPL vmlinux 0x0055af31 tps6586x_clr_bits EXPORT_SYMBOL_GPL vmlinux 0x00565f18 pernet_ops_rwsem EXPORT_SYMBOL_GPL vmlinux 0x005f18a6 add_wait_queue_priority -EXPORT_SYMBOL_GPL vmlinux 0x0061011f led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0x00649233 ata_bmdma_port_ops EXPORT_SYMBOL_GPL vmlinux 0x008539f0 klp_shadow_alloc -EXPORT_SYMBOL_GPL vmlinux 0x008c5fd3 wbt_disable_default -EXPORT_SYMBOL_GPL vmlinux 0x00915185 __SCK__tp_func_rpm_idle -EXPORT_SYMBOL_GPL vmlinux 0x009627ff fuse_mount_remove +EXPORT_SYMBOL_GPL vmlinux 0x008f5f75 trace_event_raw_init +EXPORT_SYMBOL_GPL vmlinux 0x00c67380 __SCK__tp_func_block_bio_remap EXPORT_SYMBOL_GPL vmlinux 0x00d4c500 usb_decode_interval +EXPORT_SYMBOL_GPL vmlinux 0x00d8a8cd __efivar_entry_delete +EXPORT_SYMBOL_GPL vmlinux 0x00de70a1 vp_modern_get_num_queues EXPORT_SYMBOL_GPL vmlinux 0x00df9837 ioasid_register_allocator -EXPORT_SYMBOL_GPL vmlinux 0x00e2e6cc devlink_trap_groups_register -EXPORT_SYMBOL_GPL vmlinux 0x00e62dbe securityfs_create_file -EXPORT_SYMBOL_GPL vmlinux 0x00ee403a tcp_reno_undo_cwnd -EXPORT_SYMBOL_GPL vmlinux 0x00f3b0d0 gnttab_foreach_grant_in_range -EXPORT_SYMBOL_GPL vmlinux 0x01057032 pci_ioremap_wc_bar +EXPORT_SYMBOL_GPL vmlinux 0x00ec992e kthread_mod_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0x00f35144 efivars_register +EXPORT_SYMBOL_GPL vmlinux 0x00f4ed0c pciserial_init_ports +EXPORT_SYMBOL_GPL vmlinux 0x00fc17fb iommu_sva_unbind_gpasid +EXPORT_SYMBOL_GPL vmlinux 0x00fdc84a regmap_multi_reg_write_bypassed +EXPORT_SYMBOL_GPL vmlinux 0x00ffce78 ima_inode_hash +EXPORT_SYMBOL_GPL vmlinux 0x0110e90d regmap_field_read +EXPORT_SYMBOL_GPL vmlinux 0x0115490a fwnode_property_read_string_array EXPORT_SYMBOL_GPL vmlinux 0x012e730e apei_exec_noop -EXPORT_SYMBOL_GPL vmlinux 0x0152c821 regmap_can_raw_write -EXPORT_SYMBOL_GPL vmlinux 0x0154d8f8 mptcp_pm_get_add_addr_signal_max -EXPORT_SYMBOL_GPL vmlinux 0x0159ebc7 devres_get -EXPORT_SYMBOL_GPL vmlinux 0x0181968c gpiod_get_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x0183f310 linear_hugepage_index +EXPORT_SYMBOL_GPL vmlinux 0x0147564f devm_platform_ioremap_resource +EXPORT_SYMBOL_GPL vmlinux 0x0160d8f4 __tracepoint_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0x0174c77a regulator_set_voltage_time_sel EXPORT_SYMBOL_GPL vmlinux 0x01848a8e local_apic_timer_c2_ok EXPORT_SYMBOL_GPL vmlinux 0x01866a57 ezx_pcap_set_bits EXPORT_SYMBOL_GPL vmlinux 0x018b3d1e intel_pt_validate_cap -EXPORT_SYMBOL_GPL vmlinux 0x0194b014 pinctrl_lookup_state -EXPORT_SYMBOL_GPL vmlinux 0x019ee758 inet6_destroy_sock +EXPORT_SYMBOL_GPL vmlinux 0x019a7271 gpiod_to_chip EXPORT_SYMBOL_GPL vmlinux 0x01a0cb78 property_entries_free -EXPORT_SYMBOL_GPL vmlinux 0x01bd2052 dax_finish_sync_fault EXPORT_SYMBOL_GPL vmlinux 0x01c12c32 cpu_bit_bitmap -EXPORT_SYMBOL_GPL vmlinux 0x01c13b29 bpf_map_inc_with_uref -EXPORT_SYMBOL_GPL vmlinux 0x01cf7127 find_vpid -EXPORT_SYMBOL_GPL vmlinux 0x01d2462b acpi_initialize_hp_context -EXPORT_SYMBOL_GPL vmlinux 0x01d2eb8f devlink_is_reload_failed +EXPORT_SYMBOL_GPL vmlinux 0x01c28ea9 pinctrl_pm_select_sleep_state +EXPORT_SYMBOL_GPL vmlinux 0x01c7fe6c ping_hash +EXPORT_SYMBOL_GPL vmlinux 0x01d082a1 ehci_handshake +EXPORT_SYMBOL_GPL vmlinux 0x01d09d1e od_register_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0x01dd9016 securityfs_create_symlink EXPORT_SYMBOL_GPL vmlinux 0x01e1a8de kgdb_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x01e9644f agp_add_bridge EXPORT_SYMBOL_GPL vmlinux 0x01ee5532 smp_call_function_any -EXPORT_SYMBOL_GPL vmlinux 0x01ef63e5 sata_lpm_ignore_phy_events -EXPORT_SYMBOL_GPL vmlinux 0x01f4dc2c usb_phy_roothub_suspend -EXPORT_SYMBOL_GPL vmlinux 0x0207a499 devm_init_badblocks EXPORT_SYMBOL_GPL vmlinux 0x0207a6c6 reset_control_bulk_acquire -EXPORT_SYMBOL_GPL vmlinux 0x0209f774 devm_platform_get_and_ioremap_resource +EXPORT_SYMBOL_GPL vmlinux 0x021addb7 extcon_get_extcon_dev +EXPORT_SYMBOL_GPL vmlinux 0x0222467e __tracepoint_neigh_event_send_dead +EXPORT_SYMBOL_GPL vmlinux 0x022cce7d irq_chip_disable_parent +EXPORT_SYMBOL_GPL vmlinux 0x0231e321 tpm_tis_resume +EXPORT_SYMBOL_GPL vmlinux 0x0236aaef pwm_get_chip_data EXPORT_SYMBOL_GPL vmlinux 0x02394899 play_idle_precise -EXPORT_SYMBOL_GPL vmlinux 0x0246d4ea crypto_unregister_template +EXPORT_SYMBOL_GPL vmlinux 0x023c91e1 regulator_allow_bypass +EXPORT_SYMBOL_GPL vmlinux 0x023e76c9 devlink_param_driverinit_value_get EXPORT_SYMBOL_GPL vmlinux 0x024d13dd request_free_mem_region -EXPORT_SYMBOL_GPL vmlinux 0x0257af79 __tracepoint_devlink_trap_report -EXPORT_SYMBOL_GPL vmlinux 0x025a31e0 skcipher_walk_virt -EXPORT_SYMBOL_GPL vmlinux 0x02729af6 dma_request_chan -EXPORT_SYMBOL_GPL vmlinux 0x027f2e22 device_driver_attach -EXPORT_SYMBOL_GPL vmlinux 0x02b6ede5 devlink_dpipe_headers_register -EXPORT_SYMBOL_GPL vmlinux 0x02e20d86 of_pm_clk_add_clk -EXPORT_SYMBOL_GPL vmlinux 0x02ffa164 regulator_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x0251f427 kthread_queue_work +EXPORT_SYMBOL_GPL vmlinux 0x0254c982 dma_buf_unmap_attachment +EXPORT_SYMBOL_GPL vmlinux 0x0257b847 regulator_count_voltages +EXPORT_SYMBOL_GPL vmlinux 0x0262b317 pci_generic_config_write32 +EXPORT_SYMBOL_GPL vmlinux 0x026c04c3 devm_gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0x02767072 __xenmem_reservation_va_mapping_reset +EXPORT_SYMBOL_GPL vmlinux 0x0296134b page_cache_ra_unbounded +EXPORT_SYMBOL_GPL vmlinux 0x02a3e565 tun_get_socket +EXPORT_SYMBOL_GPL vmlinux 0x02a9d387 rdev_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x02bde296 iommu_unmap_fast +EXPORT_SYMBOL_GPL vmlinux 0x02c65785 spi_finalize_current_transfer +EXPORT_SYMBOL_GPL vmlinux 0x02d9bfe9 gpiod_direction_output_raw +EXPORT_SYMBOL_GPL vmlinux 0x02dcf4ce rio_mport_chk_dev_access +EXPORT_SYMBOL_GPL vmlinux 0x02eff3e4 dev_pm_opp_add EXPORT_SYMBOL_GPL vmlinux 0x0312b3b0 reset_controller_add_lookup -EXPORT_SYMBOL_GPL vmlinux 0x031407c8 irq_chip_ack_parent -EXPORT_SYMBOL_GPL vmlinux 0x031c2229 wakeup_source_add EXPORT_SYMBOL_GPL vmlinux 0x033832c7 usb_amd_hang_symptom_quirk -EXPORT_SYMBOL_GPL vmlinux 0x033f211e dev_pm_disable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x033ee88f __tracepoint_rpm_suspend EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list -EXPORT_SYMBOL_GPL vmlinux 0x03476404 gpiod_set_consumer_name -EXPORT_SYMBOL_GPL vmlinux 0x0349e19e efivar_entry_get -EXPORT_SYMBOL_GPL vmlinux 0x034a0c0b crypto_unregister_templates -EXPORT_SYMBOL_GPL vmlinux 0x035f1804 pci_iomap_wc_range +EXPORT_SYMBOL_GPL vmlinux 0x035b0f9a of_icc_xlate_onecell EXPORT_SYMBOL_GPL vmlinux 0x036de383 perf_event_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x0386e23e pinconf_generic_dump_config +EXPORT_SYMBOL_GPL vmlinux 0x03948aa8 serdev_controller_add EXPORT_SYMBOL_GPL vmlinux 0x03952887 ktime_add_safe -EXPORT_SYMBOL_GPL vmlinux 0x039ad4ce fuse_fill_super_common -EXPORT_SYMBOL_GPL vmlinux 0x03a41c94 skcipher_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x03a45d0b __tracepoint_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0x03aeca13 tty_get_pgrp EXPORT_SYMBOL_GPL vmlinux 0x03c12dfe cancel_work_sync EXPORT_SYMBOL_GPL vmlinux 0x03c1c035 acrn_remove_intr_handler -EXPORT_SYMBOL_GPL vmlinux 0x03c538b6 input_ff_erase -EXPORT_SYMBOL_GPL vmlinux 0x03c6c2ef devm_power_supply_register EXPORT_SYMBOL_GPL vmlinux 0x03ce7234 sched_smt_present -EXPORT_SYMBOL_GPL vmlinux 0x03da929a devm_i2c_new_dummy_device +EXPORT_SYMBOL_GPL vmlinux 0x03e027b3 iomap_is_partially_uptodate +EXPORT_SYMBOL_GPL vmlinux 0x03edb1ba devres_find +EXPORT_SYMBOL_GPL vmlinux 0x03f7b09b __netif_set_xps_queue EXPORT_SYMBOL_GPL vmlinux 0x0402cbbf preempt_notifier_inc -EXPORT_SYMBOL_GPL vmlinux 0x040d0050 pwm_get_chip_data -EXPORT_SYMBOL_GPL vmlinux 0x041343fc blkg_conf_prep -EXPORT_SYMBOL_GPL vmlinux 0x0413a642 syscon_regmap_lookup_by_phandle_optional EXPORT_SYMBOL_GPL vmlinux 0x042522f2 sched_trace_rd_span +EXPORT_SYMBOL_GPL vmlinux 0x0425a1c0 nvmem_cell_get +EXPORT_SYMBOL_GPL vmlinux 0x04271a15 dev_pm_set_dedicated_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x0429f7fb sk_msg_recvmsg EXPORT_SYMBOL_GPL vmlinux 0x042c9a04 em_cpu_get -EXPORT_SYMBOL_GPL vmlinux 0x0442232f devfreq_cooling_em_register -EXPORT_SYMBOL_GPL vmlinux 0x04462b26 ata_sff_softreset +EXPORT_SYMBOL_GPL vmlinux 0x043a18a1 __SCK__tp_func_mc_event EXPORT_SYMBOL_GPL vmlinux 0x044a0f90 __tracepoint_xdp_bulk_tx EXPORT_SYMBOL_GPL vmlinux 0x04599779 kset_create_and_add -EXPORT_SYMBOL_GPL vmlinux 0x045b046a __irq_domain_alloc_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x045e001c rio_request_mport_dma +EXPORT_SYMBOL_GPL vmlinux 0x045f795c of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x046369bc dw_pcie_ep_init EXPORT_SYMBOL_GPL vmlinux 0x0465a073 regmap_reg_in_ranges -EXPORT_SYMBOL_GPL vmlinux 0x0475524b nd_region_dev -EXPORT_SYMBOL_GPL vmlinux 0x04767105 pm_runtime_set_memalloc_noio -EXPORT_SYMBOL_GPL vmlinux 0x047b7d37 irq_chip_retrigger_hierarchy -EXPORT_SYMBOL_GPL vmlinux 0x04858902 _copy_mc_to_iter +EXPORT_SYMBOL_GPL vmlinux 0x046c093c __netpoll_setup EXPORT_SYMBOL_GPL vmlinux 0x048b5f8d twl4030_audio_get_mclk -EXPORT_SYMBOL_GPL vmlinux 0x04913ac4 device_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0x048e3039 spi_mem_dtr_supports_op +EXPORT_SYMBOL_GPL vmlinux 0x0492a7c6 __inode_attach_wb +EXPORT_SYMBOL_GPL vmlinux 0x0496e363 crypto_stats_ahash_update EXPORT_SYMBOL_GPL vmlinux 0x049e5156 gnttab_try_end_foreign_access -EXPORT_SYMBOL_GPL vmlinux 0x04a807e8 usb_control_msg -EXPORT_SYMBOL_GPL vmlinux 0x04b4b1ae blk_clear_pm_only -EXPORT_SYMBOL_GPL vmlinux 0x04b74b8f cdrom_read_tocentry -EXPORT_SYMBOL_GPL vmlinux 0x04bc5509 __tracepoint_sched_util_est_cfs_tp -EXPORT_SYMBOL_GPL vmlinux 0x04be32c8 rio_lock_device +EXPORT_SYMBOL_GPL vmlinux 0x04a1a3b3 pwm_request +EXPORT_SYMBOL_GPL vmlinux 0x04a41e9b strp_process EXPORT_SYMBOL_GPL vmlinux 0x04bf0092 io_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x04bf42e8 dst_cache_get_ip4 EXPORT_SYMBOL_GPL vmlinux 0x04c4f603 mpi_get_buffer EXPORT_SYMBOL_GPL vmlinux 0x04c8aebf console_verbose -EXPORT_SYMBOL_GPL vmlinux 0x04d64201 virtqueue_enable_cb +EXPORT_SYMBOL_GPL vmlinux 0x04d1bada tty_set_ldisc EXPORT_SYMBOL_GPL vmlinux 0x04df8fbc lzo1x_decompress_safe -EXPORT_SYMBOL_GPL vmlinux 0x04e099c8 pci_dev_lock -EXPORT_SYMBOL_GPL vmlinux 0x04e5935d tty_standard_install -EXPORT_SYMBOL_GPL vmlinux 0x04f34c18 memremap_pages -EXPORT_SYMBOL_GPL vmlinux 0x04f7c0ed dev_pm_opp_add -EXPORT_SYMBOL_GPL vmlinux 0x050a23e0 xen_pci_frontend -EXPORT_SYMBOL_GPL vmlinux 0x050e3082 max8997_read_reg -EXPORT_SYMBOL_GPL vmlinux 0x0511df10 dm_copy_name_and_uuid -EXPORT_SYMBOL_GPL vmlinux 0x051ed30f rio_route_clr_table -EXPORT_SYMBOL_GPL vmlinux 0x0525c5a9 mmc_switch +EXPORT_SYMBOL_GPL vmlinux 0x04f0755b phy_package_join +EXPORT_SYMBOL_GPL vmlinux 0x051c7aaf icc_disable +EXPORT_SYMBOL_GPL vmlinux 0x0526a657 fscrypt_ioctl_get_policy_ex +EXPORT_SYMBOL_GPL vmlinux 0x052903dd acpi_get_pci_dev EXPORT_SYMBOL_GPL vmlinux 0x052c9aed ktime_get_real_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0x053d3369 hrtimer_init_sleeper -EXPORT_SYMBOL_GPL vmlinux 0x05485c20 ip_route_output_flow -EXPORT_SYMBOL_GPL vmlinux 0x054e046f gnttab_page_cache_get +EXPORT_SYMBOL_GPL vmlinux 0x0544c3f5 virtqueue_detach_unused_buf EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt -EXPORT_SYMBOL_GPL vmlinux 0x055982ce devm_hwrng_register -EXPORT_SYMBOL_GPL vmlinux 0x056b64a7 __page_file_index -EXPORT_SYMBOL_GPL vmlinux 0x0577ea7a tpm2_probe -EXPORT_SYMBOL_GPL vmlinux 0x057a89cb regulator_set_load +EXPORT_SYMBOL_GPL vmlinux 0x05613442 pci_epf_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x05659c29 __raw_v4_lookup +EXPORT_SYMBOL_GPL vmlinux 0x0570b4a5 cpuidle_register +EXPORT_SYMBOL_GPL vmlinux 0x05789018 icc_set_bw +EXPORT_SYMBOL_GPL vmlinux 0x057d5f65 virtio_device_restore EXPORT_SYMBOL_GPL vmlinux 0x05883efb __traceiter_suspend_resume -EXPORT_SYMBOL_GPL vmlinux 0x0589308a rio_dev_put +EXPORT_SYMBOL_GPL vmlinux 0x058b4b01 sysfs_create_groups EXPORT_SYMBOL_GPL vmlinux 0x058f9366 apei_exec_collect_resources -EXPORT_SYMBOL_GPL vmlinux 0x0599963e misc_cg_uncharge -EXPORT_SYMBOL_GPL vmlinux 0x05a278dc pinctrl_pm_select_default_state -EXPORT_SYMBOL_GPL vmlinux 0x05c28462 spi_new_device -EXPORT_SYMBOL_GPL vmlinux 0x05c6b6b9 put_pid -EXPORT_SYMBOL_GPL vmlinux 0x05d53d3a bpf_prog_select_runtime -EXPORT_SYMBOL_GPL vmlinux 0x05d98c78 pm_genpd_remove_subdomain -EXPORT_SYMBOL_GPL vmlinux 0x05daf130 __pci_epc_create -EXPORT_SYMBOL_GPL vmlinux 0x05f6bac5 kgdb_unregister_io_module -EXPORT_SYMBOL_GPL vmlinux 0x05ff6794 uart_console_write -EXPORT_SYMBOL_GPL vmlinux 0x060abf0a __pm_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0x0612327a intel_pinctrl_probe_by_uid -EXPORT_SYMBOL_GPL vmlinux 0x06190abd crypto_register_aead -EXPORT_SYMBOL_GPL vmlinux 0x061d7ea7 wm831x_auxadc_read_uv +EXPORT_SYMBOL_GPL vmlinux 0x05a03d50 ata_bmdma_dumb_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x05a0f3b4 debugfs_create_file_unsafe +EXPORT_SYMBOL_GPL vmlinux 0x05a3956c pci_epc_remove_epf +EXPORT_SYMBOL_GPL vmlinux 0x05a39d94 da903x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x05aaa935 usb_find_interface +EXPORT_SYMBOL_GPL vmlinux 0x05cb5c26 xfrm_dev_offload_ok +EXPORT_SYMBOL_GPL vmlinux 0x05cea07f kgdb_unregister_io_module +EXPORT_SYMBOL_GPL vmlinux 0x05dc8a38 device_link_remove +EXPORT_SYMBOL_GPL vmlinux 0x05e11c0d __SCK__tp_func_pelt_rt_tp +EXPORT_SYMBOL_GPL vmlinux 0x060217b9 rio_del_device +EXPORT_SYMBOL_GPL vmlinux 0x060a5f6e __traceiter_devlink_hwmsg +EXPORT_SYMBOL_GPL vmlinux 0x060bdf39 regulator_set_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0x061204df generic_fsdax_supported EXPORT_SYMBOL_GPL vmlinux 0x06209f49 phy_lookup_setting EXPORT_SYMBOL_GPL vmlinux 0x0626da5f od_unregister_powersave_bias_handler -EXPORT_SYMBOL_GPL vmlinux 0x06311bc4 hwmon_device_register_with_groups -EXPORT_SYMBOL_GPL vmlinux 0x0633853e sdio_align_size -EXPORT_SYMBOL_GPL vmlinux 0x0645c801 extcon_get_property_capability -EXPORT_SYMBOL_GPL vmlinux 0x064a9cbb fsnotify_put_mark +EXPORT_SYMBOL_GPL vmlinux 0x0638ac66 blk_ksm_update_capabilities +EXPORT_SYMBOL_GPL vmlinux 0x063a9ddc devres_get +EXPORT_SYMBOL_GPL vmlinux 0x063acc87 register_wide_hw_breakpoint EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry -EXPORT_SYMBOL_GPL vmlinux 0x0659a220 icc_set_bw -EXPORT_SYMBOL_GPL vmlinux 0x0667882b cpufreq_driver_resolve_freq -EXPORT_SYMBOL_GPL vmlinux 0x06761fbb i2c_probe_func_quick_read -EXPORT_SYMBOL_GPL vmlinux 0x0676c656 shash_ahash_update -EXPORT_SYMBOL_GPL vmlinux 0x068f8ba3 crypto_create_tfm_node +EXPORT_SYMBOL_GPL vmlinux 0x065e521e skcipher_walk_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x0669c816 compat_only_sysfs_link_entry_to_kobj +EXPORT_SYMBOL_GPL vmlinux 0x066da201 crypto_unregister_kpp +EXPORT_SYMBOL_GPL vmlinux 0x0671521e spi_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x06863123 udp_abort +EXPORT_SYMBOL_GPL vmlinux 0x06888905 __traceiter_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0x0688895e xfrm_local_error +EXPORT_SYMBOL_GPL vmlinux 0x0689de61 thermal_cooling_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x06946349 __tracepoint_br_fdb_add +EXPORT_SYMBOL_GPL vmlinux 0x069736d2 led_trigger_blink_oneshot EXPORT_SYMBOL_GPL vmlinux 0x069ce6c3 srcu_barrier -EXPORT_SYMBOL_GPL vmlinux 0x069f6ebc spi_mem_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0x06ac2ed9 synth_event_trace -EXPORT_SYMBOL_GPL vmlinux 0x06b03bf9 crypto_register_algs +EXPORT_SYMBOL_GPL vmlinux 0x06a8637b scsi_dh_attached_handler_name EXPORT_SYMBOL_GPL vmlinux 0x06cca30b ring_buffer_record_off -EXPORT_SYMBOL_GPL vmlinux 0x06d63152 phy_save_page -EXPORT_SYMBOL_GPL vmlinux 0x06eb5171 gpiod_get_raw_value -EXPORT_SYMBOL_GPL vmlinux 0x06f47cbf switchdev_handle_port_obj_add -EXPORT_SYMBOL_GPL vmlinux 0x06fb8599 devm_regulator_bulk_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x0704196c spi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x070cda9d ehci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x06dd4564 mmu_notifier_put +EXPORT_SYMBOL_GPL vmlinux 0x06e630cb dax_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x070d9ea5 usb_get_from_anchor +EXPORT_SYMBOL_GPL vmlinux 0x07135e35 dma_mmap_pages EXPORT_SYMBOL_GPL vmlinux 0x07242d92 put_dax -EXPORT_SYMBOL_GPL vmlinux 0x07279be0 icc_link_create -EXPORT_SYMBOL_GPL vmlinux 0x073b0146 dm_start_time_ns_from_clone +EXPORT_SYMBOL_GPL vmlinux 0x072a96cb aead_init_geniv +EXPORT_SYMBOL_GPL vmlinux 0x07303e98 __vfs_setxattr_noperm +EXPORT_SYMBOL_GPL vmlinux 0x073363b3 sock_diag_unregister +EXPORT_SYMBOL_GPL vmlinux 0x07368164 generic_handle_domain_irq EXPORT_SYMBOL_GPL vmlinux 0x07483e13 cn_del_callback EXPORT_SYMBOL_GPL vmlinux 0x074f98db synth_event_add_field -EXPORT_SYMBOL_GPL vmlinux 0x075ef247 sk_attach_filter -EXPORT_SYMBOL_GPL vmlinux 0x076221c8 blk_mq_update_nr_hw_queues +EXPORT_SYMBOL_GPL vmlinux 0x075e8254 tpm_put_ops EXPORT_SYMBOL_GPL vmlinux 0x076356e7 sfp_may_have_phy EXPORT_SYMBOL_GPL vmlinux 0x07646cee ata_tf_to_fis -EXPORT_SYMBOL_GPL vmlinux 0x076958b5 get_dev_pagemap -EXPORT_SYMBOL_GPL vmlinux 0x07876c4b crypto_alloc_tfm_node -EXPORT_SYMBOL_GPL vmlinux 0x078a3bf1 __tracepoint_neigh_update -EXPORT_SYMBOL_GPL vmlinux 0x078f27c1 blk_queue_max_discard_segments -EXPORT_SYMBOL_GPL vmlinux 0x07906645 ata_sas_port_stop -EXPORT_SYMBOL_GPL vmlinux 0x0796501e dev_pm_opp_put_clkname -EXPORT_SYMBOL_GPL vmlinux 0x079b5b6b user_destroy -EXPORT_SYMBOL_GPL vmlinux 0x079b6a36 __traceiter_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0x076bb6dc crypto_unregister_ahashes +EXPORT_SYMBOL_GPL vmlinux 0x07ab3342 dma_vmap_noncontiguous 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 0x07bb36a8 spi_mem_dirmap_create EXPORT_SYMBOL_GPL vmlinux 0x07be6905 net_inc_egress_queue -EXPORT_SYMBOL_GPL vmlinux 0x07c40af6 reset_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x07d74474 usb_driver_claim_interface -EXPORT_SYMBOL_GPL vmlinux 0x07ef2ecb xhci_drop_endpoint -EXPORT_SYMBOL_GPL vmlinux 0x07f468e9 mmc_sanitize -EXPORT_SYMBOL_GPL vmlinux 0x08006fbf cpufreq_generic_init -EXPORT_SYMBOL_GPL vmlinux 0x08064920 fat_time_unix2fat +EXPORT_SYMBOL_GPL vmlinux 0x07cdc833 receive_fd +EXPORT_SYMBOL_GPL vmlinux 0x07d620e2 net_ns_type_operations +EXPORT_SYMBOL_GPL vmlinux 0x07f6461b fscrypt_mergeable_bio_bh +EXPORT_SYMBOL_GPL vmlinux 0x07fe5ac4 bpf_trace_run2 +EXPORT_SYMBOL_GPL vmlinux 0x0811c918 iomap_seek_data EXPORT_SYMBOL_GPL vmlinux 0x08135613 dax_write_cache -EXPORT_SYMBOL_GPL vmlinux 0x0817b7b6 dev_pm_opp_put -EXPORT_SYMBOL_GPL vmlinux 0x081a2c2f sched_trace_rq_cpu -EXPORT_SYMBOL_GPL vmlinux 0x0820d62d clk_hw_get_parent_index -EXPORT_SYMBOL_GPL vmlinux 0x0825d2c0 regmap_mmio_detach_clk -EXPORT_SYMBOL_GPL vmlinux 0x0828d609 mc146818_get_time -EXPORT_SYMBOL_GPL vmlinux 0x0837356d pm_clk_resume -EXPORT_SYMBOL_GPL vmlinux 0x0843f102 perf_tp_event -EXPORT_SYMBOL_GPL vmlinux 0x084a56eb pci_probe_reset_bus -EXPORT_SYMBOL_GPL vmlinux 0x08744391 sata_pmp_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x0819c7c1 pm_runtime_no_callbacks +EXPORT_SYMBOL_GPL vmlinux 0x081acab6 isa_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x083957a9 device_store_bool +EXPORT_SYMBOL_GPL vmlinux 0x0855b1d0 extcon_get_state +EXPORT_SYMBOL_GPL vmlinux 0x085d762d pci_user_write_config_byte +EXPORT_SYMBOL_GPL vmlinux 0x085eb4ee uart_get_rs485_mode +EXPORT_SYMBOL_GPL vmlinux 0x086825df devfreq_event_set_event +EXPORT_SYMBOL_GPL vmlinux 0x08724909 __regmap_init_mmio_clk EXPORT_SYMBOL_GPL vmlinux 0x087f5dc5 wm831x_of_match -EXPORT_SYMBOL_GPL vmlinux 0x08810976 regulator_set_bypass_regmap -EXPORT_SYMBOL_GPL vmlinux 0x0882105b software_node_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x08867c19 usb_deregister_device_driver -EXPORT_SYMBOL_GPL vmlinux 0x0894a978 pm_clk_add -EXPORT_SYMBOL_GPL vmlinux 0x089db5b4 switchdev_bridge_port_offload -EXPORT_SYMBOL_GPL vmlinux 0x089f9848 mptcp_token_get_sock -EXPORT_SYMBOL_GPL vmlinux 0x08c0562b of_hwspin_lock_get_id -EXPORT_SYMBOL_GPL vmlinux 0x08c15073 regmap_read -EXPORT_SYMBOL_GPL vmlinux 0x08c59e6c pci_disable_ats +EXPORT_SYMBOL_GPL vmlinux 0x08807171 sdio_release_host +EXPORT_SYMBOL_GPL vmlinux 0x0886a4a1 rio_mport_get_feature +EXPORT_SYMBOL_GPL vmlinux 0x08b9a3b9 blkcg_deactivate_policy +EXPORT_SYMBOL_GPL vmlinux 0x08bc637d __inet_twsk_schedule EXPORT_SYMBOL_GPL vmlinux 0x08c78cf7 offline_and_remove_memory -EXPORT_SYMBOL_GPL vmlinux 0x08cd9a97 fib_rules_dump -EXPORT_SYMBOL_GPL vmlinux 0x08dbb983 netif_carrier_event -EXPORT_SYMBOL_GPL vmlinux 0x08fe3107 l3mdev_update_flow +EXPORT_SYMBOL_GPL vmlinux 0x08fddd49 wm831x_reg_lock EXPORT_SYMBOL_GPL vmlinux 0x0907d14d blocking_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0x090ebaa2 gnttab_unmap_refs -EXPORT_SYMBOL_GPL vmlinux 0x09143406 blkcg_policy_unregister +EXPORT_SYMBOL_GPL vmlinux 0x09117257 usb_ep0_reinit +EXPORT_SYMBOL_GPL vmlinux 0x0918e394 firmware_request_nowarn EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x09204ce6 ncsi_stop_dev +EXPORT_SYMBOL_GPL vmlinux 0x0923496b acpi_cppc_processor_probe EXPORT_SYMBOL_GPL vmlinux 0x0925493f clear_page_orig -EXPORT_SYMBOL_GPL vmlinux 0x092dda5c trace_array_init_printk -EXPORT_SYMBOL_GPL vmlinux 0x09332cef input_ff_flush +EXPORT_SYMBOL_GPL vmlinux 0x0926ce66 __tracepoint_xhci_dbg_quirks +EXPORT_SYMBOL_GPL vmlinux 0x092d9c48 devm_regmap_field_free EXPORT_SYMBOL_GPL vmlinux 0x09337cd0 __wake_up_locked_key +EXPORT_SYMBOL_GPL vmlinux 0x09374ace list_lru_walk_one EXPORT_SYMBOL_GPL vmlinux 0x093786cf synth_event_add_field_str -EXPORT_SYMBOL_GPL vmlinux 0x093d5aff nf_queue_nf_hook_drop +EXPORT_SYMBOL_GPL vmlinux 0x0946426f crypto_alloc_acomp +EXPORT_SYMBOL_GPL vmlinux 0x094a183d vp_modern_config_vector +EXPORT_SYMBOL_GPL vmlinux 0x0955cef5 __traceiter_pelt_se_tp EXPORT_SYMBOL_GPL vmlinux 0x096a7e6f x86_spec_ctrl_base -EXPORT_SYMBOL_GPL vmlinux 0x0971ee02 sysfs_remove_link_from_group -EXPORT_SYMBOL_GPL vmlinux 0x09730f19 dw_pcie_host_deinit -EXPORT_SYMBOL_GPL vmlinux 0x09abeae7 usb_hcd_is_primary_hcd -EXPORT_SYMBOL_GPL vmlinux 0x09ae15c8 fuse_free_conn +EXPORT_SYMBOL_GPL vmlinux 0x0973454e dma_get_merge_boundary +EXPORT_SYMBOL_GPL vmlinux 0x09775aa7 dev_attr_ncq_prio_supported +EXPORT_SYMBOL_GPL vmlinux 0x097e9f68 __SCK__tp_func_devlink_hwerr +EXPORT_SYMBOL_GPL vmlinux 0x099a28ea crypto_alloc_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x09a2bd0a devm_gpiod_unhinge +EXPORT_SYMBOL_GPL vmlinux 0x09aa92cf seg6_do_srh_encap +EXPORT_SYMBOL_GPL vmlinux 0x09b2a747 devlink_port_params_unregister EXPORT_SYMBOL_GPL vmlinux 0x09b53e14 interval_tree_remove -EXPORT_SYMBOL_GPL vmlinux 0x09b72d77 cpufreq_policy_transition_delay_us -EXPORT_SYMBOL_GPL vmlinux 0x09c233c0 regcache_sync_region -EXPORT_SYMBOL_GPL vmlinux 0x09d28252 clk_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0x09ba1a95 usb_add_hcd +EXPORT_SYMBOL_GPL vmlinux 0x09c479f3 iomap_page_mkwrite +EXPORT_SYMBOL_GPL vmlinux 0x09d1be30 pwm_free EXPORT_SYMBOL_GPL vmlinux 0x09d63265 list_lru_count_node -EXPORT_SYMBOL_GPL vmlinux 0x09d817dd root_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x09fb9637 devm_create_dev_dax -EXPORT_SYMBOL_GPL vmlinux 0x0a09b8d1 wb_writeout_inc -EXPORT_SYMBOL_GPL vmlinux 0x0a107441 dma_alloc_noncontiguous -EXPORT_SYMBOL_GPL vmlinux 0x0a1aa18c virtqueue_add_outbuf -EXPORT_SYMBOL_GPL vmlinux 0x0a26b4f3 dev_pm_opp_unregister_set_opp_helper -EXPORT_SYMBOL_GPL vmlinux 0x0a30e9db devm_pm_opp_set_regulators -EXPORT_SYMBOL_GPL vmlinux 0x0a4fa77b unregister_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x09dcb9b3 serial8250_modem_status +EXPORT_SYMBOL_GPL vmlinux 0x09dfdc5a tty_kopen_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x09ef8fb6 dev_pm_opp_free_cpufreq_table +EXPORT_SYMBOL_GPL vmlinux 0x0a0a1239 crypto_skcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x0a283a41 virtqueue_poll +EXPORT_SYMBOL_GPL vmlinux 0x0a3b0cd6 device_store_ulong +EXPORT_SYMBOL_GPL vmlinux 0x0a45840f acpi_subsys_runtime_suspend EXPORT_SYMBOL_GPL vmlinux 0x0a502c98 dmar_platform_optin +EXPORT_SYMBOL_GPL vmlinux 0x0a50a199 screen_glyph EXPORT_SYMBOL_GPL vmlinux 0x0a52c511 hv_query_ext_cap -EXPORT_SYMBOL_GPL vmlinux 0x0a55a6d7 sk_msg_trim -EXPORT_SYMBOL_GPL vmlinux 0x0a643613 __cpufreq_driver_target -EXPORT_SYMBOL_GPL vmlinux 0x0a6aaabb vfs_cancel_lock +EXPORT_SYMBOL_GPL vmlinux 0x0a56a2e7 serial8250_do_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x0a595856 spi_sync_locked +EXPORT_SYMBOL_GPL vmlinux 0x0a5cf34a badblocks_init +EXPORT_SYMBOL_GPL vmlinux 0x0a627208 devfreq_cooling_em_register EXPORT_SYMBOL_GPL vmlinux 0x0a6c4041 cn_netlink_send -EXPORT_SYMBOL_GPL vmlinux 0x0a7351d5 of_phy_provider_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0a800991 rio_dev_get -EXPORT_SYMBOL_GPL vmlinux 0x0a8ee498 devlink_param_driverinit_value_set -EXPORT_SYMBOL_GPL vmlinux 0x0a92d3f0 tcp_ca_openreq_child -EXPORT_SYMBOL_GPL vmlinux 0x0a9fb7da sk_set_peek_off -EXPORT_SYMBOL_GPL vmlinux 0x0aa61f08 tty_ldisc_flush -EXPORT_SYMBOL_GPL vmlinux 0x0ab37f46 usb_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x0a6c991d devm_power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0x0a7f0499 bpf_prog_put +EXPORT_SYMBOL_GPL vmlinux 0x0a8c1032 iomap_bmap +EXPORT_SYMBOL_GPL vmlinux 0x0a913aaf locks_release_private +EXPORT_SYMBOL_GPL vmlinux 0x0a925547 dev_pm_opp_put +EXPORT_SYMBOL_GPL vmlinux 0x0a93a548 iopf_queue_add_device +EXPORT_SYMBOL_GPL vmlinux 0x0aab2c76 fixed_phy_register_with_gpiod +EXPORT_SYMBOL_GPL vmlinux 0x0aadb512 led_sysfs_disable EXPORT_SYMBOL_GPL vmlinux 0x0abcbf05 pkcs7_parse_message -EXPORT_SYMBOL_GPL vmlinux 0x0ac0e04d ip6_datagram_connect EXPORT_SYMBOL_GPL vmlinux 0x0ad137d3 lpit_read_residency_count_address -EXPORT_SYMBOL_GPL vmlinux 0x0aea19ec add_page_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x0ad2c934 usb_altnum_to_altsetting +EXPORT_SYMBOL_GPL vmlinux 0x0add1f23 regulator_get_exclusive EXPORT_SYMBOL_GPL vmlinux 0x0af40724 iommu_alloc_resv_region -EXPORT_SYMBOL_GPL vmlinux 0x0b02136b __devres_alloc_node +EXPORT_SYMBOL_GPL vmlinux 0x0b02d0a8 ata_sas_port_start EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct -EXPORT_SYMBOL_GPL vmlinux 0x0b217abf devm_pm_opp_set_supported_hw +EXPORT_SYMBOL_GPL vmlinux 0x0b098af0 sock_diag_register EXPORT_SYMBOL_GPL vmlinux 0x0b2db2d5 remove_resource -EXPORT_SYMBOL_GPL vmlinux 0x0b34d373 devm_release_action -EXPORT_SYMBOL_GPL vmlinux 0x0b36c456 devlink_port_attrs_pci_vf_set -EXPORT_SYMBOL_GPL vmlinux 0x0b45f3e0 dev_pm_put_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0x0b3819de devm_fwnode_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x0b3e2ba9 acpi_storage_d3 EXPORT_SYMBOL_GPL vmlinux 0x0b4ed3f7 housekeeping_cpumask EXPORT_SYMBOL_GPL vmlinux 0x0b52e502 apei_resources_add -EXPORT_SYMBOL_GPL vmlinux 0x0b6fd265 ata_ehi_clear_desc -EXPORT_SYMBOL_GPL vmlinux 0x0b70d086 pci_epf_create -EXPORT_SYMBOL_GPL vmlinux 0x0b746a20 xdp_master_redirect -EXPORT_SYMBOL_GPL vmlinux 0x0b7dc3c0 __rio_local_read_config_16 -EXPORT_SYMBOL_GPL vmlinux 0x0b807995 dev_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x0b87d7f4 device_for_each_child_reverse -EXPORT_SYMBOL_GPL vmlinux 0x0bbcdf0d tty_set_termios +EXPORT_SYMBOL_GPL vmlinux 0x0b6a365b clocksource_verify_percpu +EXPORT_SYMBOL_GPL vmlinux 0x0b70ed9e nvmem_device_find +EXPORT_SYMBOL_GPL vmlinux 0x0b82b2ed __pci_hp_initialize +EXPORT_SYMBOL_GPL vmlinux 0x0b84ade4 blkcg_print_blkgs +EXPORT_SYMBOL_GPL vmlinux 0x0b9dcb3e ata_bmdma_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x0ba1b36e ata_dev_next +EXPORT_SYMBOL_GPL vmlinux 0x0ba70940 bus_set_iommu +EXPORT_SYMBOL_GPL vmlinux 0x0bb8a4b7 crypto_ahash_final EXPORT_SYMBOL_GPL vmlinux 0x0bbdc9b2 remove_memory EXPORT_SYMBOL_GPL vmlinux 0x0bbeaeba uv_bios_enum_ports -EXPORT_SYMBOL_GPL vmlinux 0x0bda703d pci_hp_add -EXPORT_SYMBOL_GPL vmlinux 0x0beef1dd adp5520_read -EXPORT_SYMBOL_GPL vmlinux 0x0bef8df8 regmap_field_read -EXPORT_SYMBOL_GPL vmlinux 0x0bfa0396 regcache_sync +EXPORT_SYMBOL_GPL vmlinux 0x0bc7eafe acpi_is_pnp_device +EXPORT_SYMBOL_GPL vmlinux 0x0bcacc78 crypto_unregister_rngs +EXPORT_SYMBOL_GPL vmlinux 0x0beb6c39 acpi_bind_one +EXPORT_SYMBOL_GPL vmlinux 0x0bec5cd1 inet_csk_listen_start EXPORT_SYMBOL_GPL vmlinux 0x0bfa3a19 rcu_idle_exit -EXPORT_SYMBOL_GPL vmlinux 0x0c041210 vfio_init_group_dev -EXPORT_SYMBOL_GPL vmlinux 0x0c0e0efa gpiochip_is_requested -EXPORT_SYMBOL_GPL vmlinux 0x0c1adf47 ncsi_register_dev +EXPORT_SYMBOL_GPL vmlinux 0x0c2893ec dax_iomap_fault +EXPORT_SYMBOL_GPL vmlinux 0x0c28c6bb lwtunnel_encap_del_ops EXPORT_SYMBOL_GPL vmlinux 0x0c2c5802 work_busy -EXPORT_SYMBOL_GPL vmlinux 0x0c2ce853 clone_private_mount EXPORT_SYMBOL_GPL vmlinux 0x0c32ff8a edac_pci_alloc_index -EXPORT_SYMBOL_GPL vmlinux 0x0c387404 sata_link_hardreset -EXPORT_SYMBOL_GPL vmlinux 0x0c453a50 get_user_pages_fast -EXPORT_SYMBOL_GPL vmlinux 0x0c55c91d ping_rcv -EXPORT_SYMBOL_GPL vmlinux 0x0c57778a trace_put_event_file -EXPORT_SYMBOL_GPL vmlinux 0x0c65d3bf ipv4_sk_redirect -EXPORT_SYMBOL_GPL vmlinux 0x0c712cec phy_pm_runtime_forbid -EXPORT_SYMBOL_GPL vmlinux 0x0c74b074 usb_queue_reset_device -EXPORT_SYMBOL_GPL vmlinux 0x0c760331 crypto_stats_akcipher_verify +EXPORT_SYMBOL_GPL vmlinux 0x0c473d27 virtqueue_get_buf +EXPORT_SYMBOL_GPL vmlinux 0x0c52f39c regmap_reinit_cache +EXPORT_SYMBOL_GPL vmlinux 0x0c593bae gpiochip_generic_free +EXPORT_SYMBOL_GPL vmlinux 0x0c5d4533 perf_trace_run_bpf_submit +EXPORT_SYMBOL_GPL vmlinux 0x0c638839 devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0x0c7f348c dma_buf_dynamic_attach EXPORT_SYMBOL_GPL vmlinux 0x0c805f93 clflush_cache_range -EXPORT_SYMBOL_GPL vmlinux 0x0c85d3fe dax_copy_to_iter EXPORT_SYMBOL_GPL vmlinux 0x0c88c1c3 pci_vpd_find_id_string -EXPORT_SYMBOL_GPL vmlinux 0x0c8de8f1 dma_vmap_noncontiguous -EXPORT_SYMBOL_GPL vmlinux 0x0c9989fa tcp_get_info -EXPORT_SYMBOL_GPL vmlinux 0x0cb6efa6 relay_late_setup_files -EXPORT_SYMBOL_GPL vmlinux 0x0cb8f5e7 fwnode_remove_software_node +EXPORT_SYMBOL_GPL vmlinux 0x0c8a674c __tracepoint_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0x0c90bbae udp4_hwcsum +EXPORT_SYMBOL_GPL vmlinux 0x0ca9cf2f kthread_func +EXPORT_SYMBOL_GPL vmlinux 0x0cb1f2dd blockdev_superblock +EXPORT_SYMBOL_GPL vmlinux 0x0cb2f0bc mbox_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0cb903ee subsys_dev_iter_exit EXPORT_SYMBOL_GPL vmlinux 0x0cbe3ee2 software_node_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0ce51800 proc_create_net_single -EXPORT_SYMBOL_GPL vmlinux 0x0ce8743c kthread_mod_delayed_work -EXPORT_SYMBOL_GPL vmlinux 0x0ce997b2 dev_pm_domain_set -EXPORT_SYMBOL_GPL vmlinux 0x0ceee0b0 regulator_disable_deferred EXPORT_SYMBOL_GPL vmlinux 0x0cfe59cb hyperv_fill_flush_guest_mapping_list -EXPORT_SYMBOL_GPL vmlinux 0x0d05d2b3 fib6_get_table +EXPORT_SYMBOL_GPL vmlinux 0x0d08dc28 regmap_irq_get_domain +EXPORT_SYMBOL_GPL vmlinux 0x0d18d5e7 pci_ioremap_wc_bar +EXPORT_SYMBOL_GPL vmlinux 0x0d2e3787 usb_poison_urb +EXPORT_SYMBOL_GPL vmlinux 0x0d3900fc pm_clk_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x0d410a25 usb_get_hcd EXPORT_SYMBOL_GPL vmlinux 0x0d459213 work_on_cpu_safe EXPORT_SYMBOL_GPL vmlinux 0x0d4961de nf_log_buf_open -EXPORT_SYMBOL_GPL vmlinux 0x0d4d758e vp_modern_get_features EXPORT_SYMBOL_GPL vmlinux 0x0d4e3f8c iopf_queue_alloc -EXPORT_SYMBOL_GPL vmlinux 0x0d5127d4 serial8250_em485_config -EXPORT_SYMBOL_GPL vmlinux 0x0d55ae4b netdev_is_rx_handler_busy -EXPORT_SYMBOL_GPL vmlinux 0x0d57ccc9 pci_sriov_set_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0x0d4f1c16 devm_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x0d53a363 cpufreq_driver_target EXPORT_SYMBOL_GPL vmlinux 0x0d5cecc6 ima_measure_critical_data -EXPORT_SYMBOL_GPL vmlinux 0x0d620440 iommu_enable_nesting -EXPORT_SYMBOL_GPL vmlinux 0x0d6fe561 pci_add_dynid -EXPORT_SYMBOL_GPL vmlinux 0x0d7d2da6 ip6_local_out -EXPORT_SYMBOL_GPL vmlinux 0x0d826d49 devm_regulator_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x0d88360b edac_pci_free_ctl_info -EXPORT_SYMBOL_GPL vmlinux 0x0d947e3e fwnode_gpiod_get_index -EXPORT_SYMBOL_GPL vmlinux 0x0dafd05d usb_register_device_driver +EXPORT_SYMBOL_GPL vmlinux 0x0d930cdc blk_mq_start_stopped_hw_queue +EXPORT_SYMBOL_GPL vmlinux 0x0da40651 ata_sff_dma_pause +EXPORT_SYMBOL_GPL vmlinux 0x0da5c525 __rt_mutex_init +EXPORT_SYMBOL_GPL vmlinux 0x0da7b10a usb_debug_root +EXPORT_SYMBOL_GPL vmlinux 0x0dad0bd5 devlink_port_param_value_changed EXPORT_SYMBOL_GPL vmlinux 0x0dcb3ee8 divider_recalc_rate -EXPORT_SYMBOL_GPL vmlinux 0x0dcc3aaf regulator_get_current_limit -EXPORT_SYMBOL_GPL vmlinux 0x0dd9c7a2 fwnode_graph_get_port_parent +EXPORT_SYMBOL_GPL vmlinux 0x0dd9fb5f usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0x0ddadea2 __SCT__tp_func_pelt_thermal_tp EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order -EXPORT_SYMBOL_GPL vmlinux 0x0ded2896 fib4_rule_default +EXPORT_SYMBOL_GPL vmlinux 0x0dfa9924 i2c_unregister_device EXPORT_SYMBOL_GPL vmlinux 0x0e007edf xen_evtchn_nr_channels EXPORT_SYMBOL_GPL vmlinux 0x0e1194d5 hrtimer_try_to_cancel EXPORT_SYMBOL_GPL vmlinux 0x0e13cb4d apei_resources_release -EXPORT_SYMBOL_GPL vmlinux 0x0e19a459 lookup_address_in_mm +EXPORT_SYMBOL_GPL vmlinux 0x0e1b8480 pci_disable_sriov EXPORT_SYMBOL_GPL vmlinux 0x0e1fc8ef __SCT__tp_func_non_standard_event -EXPORT_SYMBOL_GPL vmlinux 0x0e274085 usb_for_each_port -EXPORT_SYMBOL_GPL vmlinux 0x0e334a66 pci_user_write_config_byte -EXPORT_SYMBOL_GPL vmlinux 0x0e40c0ed serdev_controller_add -EXPORT_SYMBOL_GPL vmlinux 0x0e4bfb37 skcipher_walk_aead_decrypt -EXPORT_SYMBOL_GPL vmlinux 0x0e5a8c76 devm_hwmon_device_register_with_groups -EXPORT_SYMBOL_GPL vmlinux 0x0e5d2e8f class_compat_create_link -EXPORT_SYMBOL_GPL vmlinux 0x0e64313a ata_sff_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x0e2ccabb devlink_sb_register +EXPORT_SYMBOL_GPL vmlinux 0x0e31d3d0 dev_pm_get_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0x0e39d9c5 md_submit_discard_bio +EXPORT_SYMBOL_GPL vmlinux 0x0e50626e device_set_wakeup_capable EXPORT_SYMBOL_GPL vmlinux 0x0e6b79af static_key_disable_cpuslocked -EXPORT_SYMBOL_GPL vmlinux 0x0e79f4af cpci_hp_unregister_controller -EXPORT_SYMBOL_GPL vmlinux 0x0e7c5cf8 inet_ctl_sock_create -EXPORT_SYMBOL_GPL vmlinux 0x0e973f3a devm_device_remove_group -EXPORT_SYMBOL_GPL vmlinux 0x0e9820d0 pci_epc_remove_epf -EXPORT_SYMBOL_GPL vmlinux 0x0e9d35b6 transport_remove_device -EXPORT_SYMBOL_GPL vmlinux 0x0ea1a10b vfio_pci_core_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x0e7983ee dev_queue_xmit_nit +EXPORT_SYMBOL_GPL vmlinux 0x0e90059e is_nvdimm_sync +EXPORT_SYMBOL_GPL vmlinux 0x0ea0e751 md_bitmap_copy_from_slot EXPORT_SYMBOL_GPL vmlinux 0x0ea5cbce xen_irq_lateeoi -EXPORT_SYMBOL_GPL vmlinux 0x0ea6b03d debugfs_create_file_size -EXPORT_SYMBOL_GPL vmlinux 0x0ead0ed7 addrconf_prefix_rcv_add_addr -EXPORT_SYMBOL_GPL vmlinux 0x0eae65d7 sock_diag_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0eb13721 __SCK__tp_func_tcp_send_reset +EXPORT_SYMBOL_GPL vmlinux 0x0eb9fadf simple_attr_release EXPORT_SYMBOL_GPL vmlinux 0x0ec096b0 hv_read_reference_counter -EXPORT_SYMBOL_GPL vmlinux 0x0eceeda9 ipv6_stub -EXPORT_SYMBOL_GPL vmlinux 0x0ed2c68f gpiod_direction_output_raw -EXPORT_SYMBOL_GPL vmlinux 0x0edcc48e regulator_map_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x0edc5d62 lwtunnel_build_state EXPORT_SYMBOL_GPL vmlinux 0x0eeae3e8 key_type_encrypted +EXPORT_SYMBOL_GPL vmlinux 0x0eeeecdc __cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0x0ef89073 pci_epc_add_epf EXPORT_SYMBOL_GPL vmlinux 0x0f0b21fe pm_trace_rtc_abused EXPORT_SYMBOL_GPL vmlinux 0x0f180070 ring_buffer_free_read_page +EXPORT_SYMBOL_GPL vmlinux 0x0f1d6a9c iomap_file_buffered_write +EXPORT_SYMBOL_GPL vmlinux 0x0f22bd0d devm_i2c_new_dummy_device +EXPORT_SYMBOL_GPL vmlinux 0x0f23c786 __nf_ip6_route +EXPORT_SYMBOL_GPL vmlinux 0x0f2cdc77 em_pd_get EXPORT_SYMBOL_GPL vmlinux 0x0f2d7d87 mce_unregister_decode_chain -EXPORT_SYMBOL_GPL vmlinux 0x0f3bd8ab led_sysfs_disable -EXPORT_SYMBOL_GPL vmlinux 0x0f616040 __tracepoint_wbc_writepage -EXPORT_SYMBOL_GPL vmlinux 0x0f6401a6 devlink_resources_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0f6f7505 platform_get_mem_or_io +EXPORT_SYMBOL_GPL vmlinux 0x0f36ad24 vfio_unregister_group_dev +EXPORT_SYMBOL_GPL vmlinux 0x0f637d96 fuse_request_end +EXPORT_SYMBOL_GPL vmlinux 0x0f6dd919 component_del EXPORT_SYMBOL_GPL vmlinux 0x0f72ada1 acpi_dev_resource_io -EXPORT_SYMBOL_GPL vmlinux 0x0f761651 pci_iov_virtfn_devfn +EXPORT_SYMBOL_GPL vmlinux 0x0f72b9f3 i2c_acpi_find_adapter_by_handle +EXPORT_SYMBOL_GPL vmlinux 0x0f7a7c35 dax_copy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0x0f7ab655 devres_close_group EXPORT_SYMBOL_GPL vmlinux 0x0f7ca236 dmi_memdev_name -EXPORT_SYMBOL_GPL vmlinux 0x0f843026 bpf_prog_inc_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x0f8566fb to_software_node +EXPORT_SYMBOL_GPL vmlinux 0x0f91f5f1 ata_sff_wait_ready EXPORT_SYMBOL_GPL vmlinux 0x0f9fc04e uv_get_archtype -EXPORT_SYMBOL_GPL vmlinux 0x0facea59 kernel_kobj +EXPORT_SYMBOL_GPL vmlinux 0x0fa31544 ip6_route_input_lookup EXPORT_SYMBOL_GPL vmlinux 0x0fbb7344 memremap_compat_align EXPORT_SYMBOL_GPL vmlinux 0x0fc37562 amd_smn_read -EXPORT_SYMBOL_GPL vmlinux 0x0fca4385 klp_enable_patch +EXPORT_SYMBOL_GPL vmlinux 0x0fc7f8d6 __tracepoint_remove_device_from_group EXPORT_SYMBOL_GPL vmlinux 0x0fcc1969 copy_from_user_nmi -EXPORT_SYMBOL_GPL vmlinux 0x0fd11513 __dma_request_channel -EXPORT_SYMBOL_GPL vmlinux 0x0fd1c7f4 pci_find_next_ext_capability EXPORT_SYMBOL_GPL vmlinux 0x0fd4610e kmem_dump_obj -EXPORT_SYMBOL_GPL vmlinux 0x0fdc5856 extcon_get_state -EXPORT_SYMBOL_GPL vmlinux 0x0fde02bf dev_get_regmap -EXPORT_SYMBOL_GPL vmlinux 0x0ff8d89d spi_mem_dirmap_destroy -EXPORT_SYMBOL_GPL vmlinux 0x10017547 badblocks_show -EXPORT_SYMBOL_GPL vmlinux 0x1006086c inet_csk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x0fe0675c __tracepoint_sched_util_est_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x0fe175ad ata_sas_port_alloc +EXPORT_SYMBOL_GPL vmlinux 0x0fe5cb47 debugfs_attr_read +EXPORT_SYMBOL_GPL vmlinux 0x10028485 gpiochip_irq_domain_activate +EXPORT_SYMBOL_GPL vmlinux 0x10112813 rio_lock_device EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on -EXPORT_SYMBOL_GPL vmlinux 0x1014d41c ata_pci_shutdown_one -EXPORT_SYMBOL_GPL vmlinux 0x1036bac5 tty_kopen_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x1016f1ae smp_ops +EXPORT_SYMBOL_GPL vmlinux 0x102eeced sysfs_remove_mount_point +EXPORT_SYMBOL_GPL vmlinux 0x1036e842 is_software_node EXPORT_SYMBOL_GPL vmlinux 0x1038b96f adxl_get_component_names -EXPORT_SYMBOL_GPL vmlinux 0x103dd536 usb_autopm_get_interface_async -EXPORT_SYMBOL_GPL vmlinux 0x1055c3e4 inet_twsk_put +EXPORT_SYMBOL_GPL vmlinux 0x103b0b29 __udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x103e3c26 strp_stop +EXPORT_SYMBOL_GPL vmlinux 0x104e11b6 irq_domain_set_hwirq_and_chip +EXPORT_SYMBOL_GPL vmlinux 0x105576cb lwtunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0x105a5314 console_drivers +EXPORT_SYMBOL_GPL vmlinux 0x1061459c sata_link_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x1067eea7 trace_seq_path +EXPORT_SYMBOL_GPL vmlinux 0x106cdeb0 blk_mark_disk_dead +EXPORT_SYMBOL_GPL vmlinux 0x107e1e5f device_driver_attach +EXPORT_SYMBOL_GPL vmlinux 0x1082c700 tracing_snapshot_cond_enable +EXPORT_SYMBOL_GPL vmlinux 0x10859c5e dax_writeback_mapping_range EXPORT_SYMBOL_GPL vmlinux 0x1088ea76 ftrace_set_notrace EXPORT_SYMBOL_GPL vmlinux 0x108a0acd bstr_printf -EXPORT_SYMBOL_GPL vmlinux 0x1096c3a1 raw_seq_start -EXPORT_SYMBOL_GPL vmlinux 0x10a6906a page_cache_ra_unbounded -EXPORT_SYMBOL_GPL vmlinux 0x10a75320 udp4_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x10a89eef scsi_schedule_eh -EXPORT_SYMBOL_GPL vmlinux 0x10b02684 rio_release_outb_dbell -EXPORT_SYMBOL_GPL vmlinux 0x10b90027 xhci_reset_bandwidth -EXPORT_SYMBOL_GPL vmlinux 0x10c0e255 ata_link_online -EXPORT_SYMBOL_GPL vmlinux 0x10c90a88 dev_pm_qos_hide_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0x10e5d6da md_do_sync -EXPORT_SYMBOL_GPL vmlinux 0x10ea3065 acpi_pci_find_root +EXPORT_SYMBOL_GPL vmlinux 0x109274ed iterate_mounts +EXPORT_SYMBOL_GPL vmlinux 0x1092f231 irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x10986888 crypto_shash_digest +EXPORT_SYMBOL_GPL vmlinux 0x109c449a __class_create +EXPORT_SYMBOL_GPL vmlinux 0x10bb6ebf __static_call_update +EXPORT_SYMBOL_GPL vmlinux 0x10bbaf54 page_cache_async_ra +EXPORT_SYMBOL_GPL vmlinux 0x10c42ab0 ata_dummy_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x10c67e1a of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x10ccbecc i2c_generic_scl_recovery +EXPORT_SYMBOL_GPL vmlinux 0x10ced9f2 acpi_pm_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0x10d5099d lookup_address_in_mm +EXPORT_SYMBOL_GPL vmlinux 0x10d536e5 __tracepoint_non_standard_event +EXPORT_SYMBOL_GPL vmlinux 0x10d6d26a devm_device_add_group EXPORT_SYMBOL_GPL vmlinux 0x10ecc52c usb_amd_quirk_pll_enable -EXPORT_SYMBOL_GPL vmlinux 0x10fef704 crypto_grab_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x10f5231a platform_get_irq_optional EXPORT_SYMBOL_GPL vmlinux 0x110106c1 cper_severity_to_aer -EXPORT_SYMBOL_GPL vmlinux 0x110198d1 __hwspin_unlock -EXPORT_SYMBOL_GPL vmlinux 0x111d6db9 vmf_insert_pfn_pud_prot -EXPORT_SYMBOL_GPL vmlinux 0x1130e412 md_stop_writes -EXPORT_SYMBOL_GPL vmlinux 0x11334b1b nvdimm_name -EXPORT_SYMBOL_GPL vmlinux 0x1135e9b5 sysfs_remove_group -EXPORT_SYMBOL_GPL vmlinux 0x1136be02 xfer_to_guest_mode_handle_work -EXPORT_SYMBOL_GPL vmlinux 0x113ceabc blk_rq_err_bytes -EXPORT_SYMBOL_GPL vmlinux 0x1142ab6a xfrm_output_resume -EXPORT_SYMBOL_GPL vmlinux 0x1147f3ed dax_writeback_mapping_range -EXPORT_SYMBOL_GPL vmlinux 0x11568e8b __traceiter_block_rq_remap -EXPORT_SYMBOL_GPL vmlinux 0x1158de3e kthread_cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x1104dfc8 crypto_stats_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x1112928b devm_irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x112130da i2c_dw_probe_master +EXPORT_SYMBOL_GPL vmlinux 0x112be59d ata_host_resume +EXPORT_SYMBOL_GPL vmlinux 0x114ef14e pinctrl_dev_get_devname EXPORT_SYMBOL_GPL vmlinux 0x116180b5 hv_current_partition_id -EXPORT_SYMBOL_GPL vmlinux 0x116d8f79 virtqueue_get_vring -EXPORT_SYMBOL_GPL vmlinux 0x116f93c1 sk_msg_zerocopy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0x116d5f75 usb_hcd_start_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x1174cd77 irq_domain_alloc_irqs_parent +EXPORT_SYMBOL_GPL vmlinux 0x1176e159 ip6_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0x1178b411 dev_pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0x118c7a96 pwm_capture +EXPORT_SYMBOL_GPL vmlinux 0x118ecdd4 perf_aux_output_end +EXPORT_SYMBOL_GPL vmlinux 0x11914cf4 udp_destruct_sock +EXPORT_SYMBOL_GPL vmlinux 0x11a10b77 gpiod_export_link EXPORT_SYMBOL_GPL vmlinux 0x11a2e0ac crypto_dh_key_len -EXPORT_SYMBOL_GPL vmlinux 0x11b28cf3 __traceiter_rpm_return_int -EXPORT_SYMBOL_GPL vmlinux 0x11b4632e regmap_field_bulk_free -EXPORT_SYMBOL_GPL vmlinux 0x11bda5a9 __netpoll_setup -EXPORT_SYMBOL_GPL vmlinux 0x11cb25ec pci_epc_set_msi +EXPORT_SYMBOL_GPL vmlinux 0x11ba6ff0 fwnode_count_parents +EXPORT_SYMBOL_GPL vmlinux 0x11bae19b dev_pm_opp_adjust_voltage 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 0x11e4a9cb sata_sff_hardreset -EXPORT_SYMBOL_GPL vmlinux 0x11f09a4d __strp_unpause -EXPORT_SYMBOL_GPL vmlinux 0x11f90678 __udp6_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x11faf2cb bpf_prog_alloc -EXPORT_SYMBOL_GPL vmlinux 0x1206e1a9 iommu_device_sysfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x11e99422 usb_acpi_power_manageable +EXPORT_SYMBOL_GPL vmlinux 0x11eb507a cpufreq_register_governor +EXPORT_SYMBOL_GPL vmlinux 0x11f708a7 __SCK__tp_func_neigh_cleanup_and_release +EXPORT_SYMBOL_GPL vmlinux 0x120862e6 ata_bmdma_irq_clear EXPORT_SYMBOL_GPL vmlinux 0x12189359 __SCT__tp_func_block_unplug EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier -EXPORT_SYMBOL_GPL vmlinux 0x12266ba8 ata_host_put -EXPORT_SYMBOL_GPL vmlinux 0x1228bfe2 fib_info_nh_uses_dev -EXPORT_SYMBOL_GPL vmlinux 0x1231b45a dev_pm_opp_remove_all_dynamic EXPORT_SYMBOL_GPL vmlinux 0x1234e483 get_cpu_iowait_time_us EXPORT_SYMBOL_GPL vmlinux 0x1234ffa1 cper_estatus_check_header -EXPORT_SYMBOL_GPL vmlinux 0x12493bfc virtqueue_notify -EXPORT_SYMBOL_GPL vmlinux 0x12644fa0 vchan_tx_desc_free +EXPORT_SYMBOL_GPL vmlinux 0x1256205d __SCK__tp_func_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0x1260574c dev_xdp_prog_count +EXPORT_SYMBOL_GPL vmlinux 0x12651cec crypto_alloc_aead EXPORT_SYMBOL_GPL vmlinux 0x1268f357 resume_device_irqs -EXPORT_SYMBOL_GPL vmlinux 0x127a5f05 __regmap_init EXPORT_SYMBOL_GPL vmlinux 0x127c109b __SCT__tp_func_suspend_resume -EXPORT_SYMBOL_GPL vmlinux 0x128072d5 devlink_sb_register -EXPORT_SYMBOL_GPL vmlinux 0x12914c5b rtnl_register_module +EXPORT_SYMBOL_GPL vmlinux 0x1289e3ac skb_to_sgvec EXPORT_SYMBOL_GPL vmlinux 0x129334ae sfp_parse_support -EXPORT_SYMBOL_GPL vmlinux 0x12983b6f led_trigger_remove -EXPORT_SYMBOL_GPL vmlinux 0x129abb8c tty_set_ldisc -EXPORT_SYMBOL_GPL vmlinux 0x129b0b0e ata_wait_register -EXPORT_SYMBOL_GPL vmlinux 0x12a226c4 devm_pm_opp_set_clkname -EXPORT_SYMBOL_GPL vmlinux 0x12bcc8d0 do_take_over_console -EXPORT_SYMBOL_GPL vmlinux 0x12d6fea4 iopf_queue_flush_dev -EXPORT_SYMBOL_GPL vmlinux 0x12d82c51 nvdimm_provider_data -EXPORT_SYMBOL_GPL vmlinux 0x12d9cf14 nf_ip_route +EXPORT_SYMBOL_GPL vmlinux 0x12b1230f irq_create_mapping_affinity +EXPORT_SYMBOL_GPL vmlinux 0x12c0c5fd clean_record_shared_mapping_range +EXPORT_SYMBOL_GPL vmlinux 0x12d8a300 ethnl_cable_test_finished EXPORT_SYMBOL_GPL vmlinux 0x12db3a8b kvm_clock EXPORT_SYMBOL_GPL vmlinux 0x12e285ec is_uv_system -EXPORT_SYMBOL_GPL vmlinux 0x12ea14a3 __fsnotify_parent -EXPORT_SYMBOL_GPL vmlinux 0x12ea53ad xen_xenbus_fops EXPORT_SYMBOL_GPL vmlinux 0x12ee1173 memory_group_unregister -EXPORT_SYMBOL_GPL vmlinux 0x12f94774 bpf_offload_dev_netdev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x1302dd0c irq_domain_alloc_irqs_parent +EXPORT_SYMBOL_GPL vmlinux 0x12ef49d7 tty_perform_flush +EXPORT_SYMBOL_GPL vmlinux 0x13006034 scsi_host_unblock +EXPORT_SYMBOL_GPL vmlinux 0x13058a25 regmap_add_irq_chip EXPORT_SYMBOL_GPL vmlinux 0x131a5ed7 regmap_del_irq_chip EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq +EXPORT_SYMBOL_GPL vmlinux 0x1325a392 acpi_gpiochip_request_interrupts +EXPORT_SYMBOL_GPL vmlinux 0x132ec649 sdio_disable_func +EXPORT_SYMBOL_GPL vmlinux 0x1338e398 phy_remove_lookup EXPORT_SYMBOL_GPL vmlinux 0x133969d7 __trace_printk -EXPORT_SYMBOL_GPL vmlinux 0x133b67a0 rio_mport_get_efb -EXPORT_SYMBOL_GPL vmlinux 0x134decb2 dst_cache_get_ip6 -EXPORT_SYMBOL_GPL vmlinux 0x134e6dc4 uart_get_rs485_mode -EXPORT_SYMBOL_GPL vmlinux 0x135f8907 netlink_remove_tap +EXPORT_SYMBOL_GPL vmlinux 0x133e57fb gov_attr_set_init +EXPORT_SYMBOL_GPL vmlinux 0x135aed83 iomap_ioend_try_merge EXPORT_SYMBOL_GPL vmlinux 0x136209db power_supply_reg_notifier -EXPORT_SYMBOL_GPL vmlinux 0x1372654c fscrypt_drop_inode -EXPORT_SYMBOL_GPL vmlinux 0x1372a720 __percpu_init_rwsem -EXPORT_SYMBOL_GPL vmlinux 0x13780f64 pci_enable_pasid -EXPORT_SYMBOL_GPL vmlinux 0x13787bb9 fscrypt_ioctl_remove_key +EXPORT_SYMBOL_GPL vmlinux 0x136b023b tty_find_polling_driver +EXPORT_SYMBOL_GPL vmlinux 0x136f2bd2 driver_register +EXPORT_SYMBOL_GPL vmlinux 0x1375457a __SCK__tp_func_pelt_thermal_tp +EXPORT_SYMBOL_GPL vmlinux 0x13899ba9 spi_mem_default_supports_op EXPORT_SYMBOL_GPL vmlinux 0x138aff76 gnttab_init EXPORT_SYMBOL_GPL vmlinux 0x138e0957 dax_write_cache_enabled -EXPORT_SYMBOL_GPL vmlinux 0x1397886e dpm_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x13a45dc7 __tracepoint_sched_cpu_capacity_tp -EXPORT_SYMBOL_GPL vmlinux 0x13a8b137 ata_sas_tport_delete -EXPORT_SYMBOL_GPL vmlinux 0x13ac056b devm_i2c_add_adapter -EXPORT_SYMBOL_GPL vmlinux 0x13b15405 xdp_return_frame -EXPORT_SYMBOL_GPL vmlinux 0x13c5a34d power_supply_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x1399a606 max8997_write_reg +EXPORT_SYMBOL_GPL vmlinux 0x139a300d __dax_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x13b13adb acpi_dev_get_first_consumer_dev +EXPORT_SYMBOL_GPL vmlinux 0x13bb477c ata_sff_check_status EXPORT_SYMBOL_GPL vmlinux 0x13ce87e8 asn1_ber_decoder -EXPORT_SYMBOL_GPL vmlinux 0x13d755f5 mmc_cmdq_disable +EXPORT_SYMBOL_GPL vmlinux 0x13d65713 create_signature +EXPORT_SYMBOL_GPL vmlinux 0x13eb3e37 __SCK__tp_func_unmap EXPORT_SYMBOL_GPL vmlinux 0x13ed8784 sdev_evt_alloc +EXPORT_SYMBOL_GPL vmlinux 0x13f265b9 rio_local_set_device_id EXPORT_SYMBOL_GPL vmlinux 0x13fab921 cpuidle_unregister_device EXPORT_SYMBOL_GPL vmlinux 0x1403ad09 cpufreq_add_update_util_hook +EXPORT_SYMBOL_GPL vmlinux 0x14091489 vfs_read +EXPORT_SYMBOL_GPL vmlinux 0x140962f5 udp_tunnel_nic_ops +EXPORT_SYMBOL_GPL vmlinux 0x140cd897 xenbus_dev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x14168bea inet_csk_listen_stop EXPORT_SYMBOL_GPL vmlinux 0x141f38bf ktime_get_raw_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0x14208a30 shmem_file_setup -EXPORT_SYMBOL_GPL vmlinux 0x1442b690 ata_sff_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x145d27b5 skb_defer_rx_timestamp -EXPORT_SYMBOL_GPL vmlinux 0x145ec03e gpiod_set_raw_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x145ffa13 nd_tbl +EXPORT_SYMBOL_GPL vmlinux 0x14315ce9 devres_add +EXPORT_SYMBOL_GPL vmlinux 0x143a6cf4 device_match_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x143ff829 devm_of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x14402321 tty_port_install +EXPORT_SYMBOL_GPL vmlinux 0x1446b301 __SCK__tp_func_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0x1452e36a __traceiter_neigh_timer_handler +EXPORT_SYMBOL_GPL vmlinux 0x14541836 gpiod_set_raw_value +EXPORT_SYMBOL_GPL vmlinux 0x1454f104 __traceiter_devlink_hwerr +EXPORT_SYMBOL_GPL vmlinux 0x14686ba3 skb_complete_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x146ac9c6 tpm_chip_unregister EXPORT_SYMBOL_GPL vmlinux 0x146cc88f bpf_master_redirect_enabled_key EXPORT_SYMBOL_GPL vmlinux 0x146dc897 get_state_synchronize_srcu -EXPORT_SYMBOL_GPL vmlinux 0x14713220 fat_search_long -EXPORT_SYMBOL_GPL vmlinux 0x147d2b26 xdp_return_frame_rx_napi -EXPORT_SYMBOL_GPL vmlinux 0x14823ad2 attribute_container_classdev_to_container -EXPORT_SYMBOL_GPL vmlinux 0x149c0a34 thermal_zone_unbind_cooling_device -EXPORT_SYMBOL_GPL vmlinux 0x14a51f8d __fsnotify_inode_delete -EXPORT_SYMBOL_GPL vmlinux 0x14b5c54a device_property_present -EXPORT_SYMBOL_GPL vmlinux 0x14ba1ed9 auxiliary_find_device -EXPORT_SYMBOL_GPL vmlinux 0x14c5026a get_net_ns +EXPORT_SYMBOL_GPL vmlinux 0x1472a721 nvdimm_volatile_region_create +EXPORT_SYMBOL_GPL vmlinux 0x147a7203 ata_sff_prereset +EXPORT_SYMBOL_GPL vmlinux 0x148e9dfb pci_user_write_config_word +EXPORT_SYMBOL_GPL vmlinux 0x14a3ab55 crypto_hash_alg_has_setkey +EXPORT_SYMBOL_GPL vmlinux 0x14ac07e9 mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0x14bf22f3 tty_save_termios +EXPORT_SYMBOL_GPL vmlinux 0x14c37c9d get_user_pages_fast_only EXPORT_SYMBOL_GPL vmlinux 0x14d01690 clk_mux_index_to_val -EXPORT_SYMBOL_GPL vmlinux 0x14d3062b regmap_get_max_register -EXPORT_SYMBOL_GPL vmlinux 0x14d6f230 devm_thermal_add_hwmon_sysfs -EXPORT_SYMBOL_GPL vmlinux 0x14d7c91f pm_generic_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x14d7457e path_noexec +EXPORT_SYMBOL_GPL vmlinux 0x14d84019 crypto_aead_setkey +EXPORT_SYMBOL_GPL vmlinux 0x14dd781b governor_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0x14e5667f fuse_free_conn EXPORT_SYMBOL_GPL vmlinux 0x14ec4fdb evtchn_put +EXPORT_SYMBOL_GPL vmlinux 0x14f12d8d xfrm_put_translator +EXPORT_SYMBOL_GPL vmlinux 0x14f6020b led_update_brightness +EXPORT_SYMBOL_GPL vmlinux 0x150027a6 wwan_port_rx EXPORT_SYMBOL_GPL vmlinux 0x15021b4a xa_delete_node -EXPORT_SYMBOL_GPL vmlinux 0x1502447f devm_acpi_dma_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x1522ea2a pci_find_vsec_capability -EXPORT_SYMBOL_GPL vmlinux 0x15358a3f PageHuge +EXPORT_SYMBOL_GPL vmlinux 0x15198e9b usb_sg_init +EXPORT_SYMBOL_GPL vmlinux 0x151f437a __rio_local_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x153a2c6f usb_register_driver EXPORT_SYMBOL_GPL vmlinux 0x153b60a6 klist_del +EXPORT_SYMBOL_GPL vmlinux 0x15414ada phy_save_page EXPORT_SYMBOL_GPL vmlinux 0x15510a89 devlink_fmsg_binary_put +EXPORT_SYMBOL_GPL vmlinux 0x155283a4 free_io_pgtable_ops +EXPORT_SYMBOL_GPL vmlinux 0x156ce1bc sk_attach_filter EXPORT_SYMBOL_GPL vmlinux 0x156e8afe __SCT__tp_func_fib6_table_lookup -EXPORT_SYMBOL_GPL vmlinux 0x157116f7 usb_autopm_get_interface -EXPORT_SYMBOL_GPL vmlinux 0x1574edf5 ima_inode_hash -EXPORT_SYMBOL_GPL vmlinux 0x1575efcd __SCK__tp_func_sched_overutilized_tp -EXPORT_SYMBOL_GPL vmlinux 0x1581e4ad regmap_noinc_write -EXPORT_SYMBOL_GPL vmlinux 0x158234d8 fwnode_get_next_available_child_node -EXPORT_SYMBOL_GPL vmlinux 0x15b7a90d __phy_modify_mmd -EXPORT_SYMBOL_GPL vmlinux 0x15c65901 pci_epc_put +EXPORT_SYMBOL_GPL vmlinux 0x15a11679 crypto_inst_setname +EXPORT_SYMBOL_GPL vmlinux 0x15ade1cc filter_irq_stacks +EXPORT_SYMBOL_GPL vmlinux 0x15ae2700 sysfs_file_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x15b4b02b pci_probe_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0x15bb8ee9 devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0x15c74e07 __tracepoint_error_report_end EXPORT_SYMBOL_GPL vmlinux 0x15cc30f1 cc_platform_has -EXPORT_SYMBOL_GPL vmlinux 0x15e5690a event_triggers_post_call +EXPORT_SYMBOL_GPL vmlinux 0x15d3c754 devm_gpiod_get_from_of_node +EXPORT_SYMBOL_GPL vmlinux 0x15e04690 dma_release_channel EXPORT_SYMBOL_GPL vmlinux 0x15ea2648 hwpoison_filter_flags_mask -EXPORT_SYMBOL_GPL vmlinux 0x160bf058 rdev_get_regmap -EXPORT_SYMBOL_GPL vmlinux 0x161d0703 bpf_verifier_log_write -EXPORT_SYMBOL_GPL vmlinux 0x163cde7d dma_buf_unmap_attachment -EXPORT_SYMBOL_GPL vmlinux 0x16451693 devm_platform_ioremap_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0x162fa2d0 debugfs_create_x32 +EXPORT_SYMBOL_GPL vmlinux 0x1637f526 tcp_reno_undo_cwnd EXPORT_SYMBOL_GPL vmlinux 0x16516798 osc_pc_lpi_support_confirmed -EXPORT_SYMBOL_GPL vmlinux 0x16566859 usb_autopm_put_interface_no_suspend -EXPORT_SYMBOL_GPL vmlinux 0x165ceff1 __SCK__tp_func_add_device_to_group EXPORT_SYMBOL_GPL vmlinux 0x166db1b5 sched_clock_idle_wakeup_event -EXPORT_SYMBOL_GPL vmlinux 0x1674f0bd virtqueue_add_inbuf EXPORT_SYMBOL_GPL vmlinux 0x167d7113 acpi_bus_register_early_device -EXPORT_SYMBOL_GPL vmlinux 0x168574ad iommu_get_domain_for_dev +EXPORT_SYMBOL_GPL vmlinux 0x16847916 acpi_subsys_restore_early EXPORT_SYMBOL_GPL vmlinux 0x1687ec20 tty_get_frame_size EXPORT_SYMBOL_GPL vmlinux 0x1690b503 usb_role_switch_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x16911a3c nd_blk_region_to_dimm -EXPORT_SYMBOL_GPL vmlinux 0x169b54b1 ata_std_qc_defer -EXPORT_SYMBOL_GPL vmlinux 0x16b39116 sdev_evt_send_simple +EXPORT_SYMBOL_GPL vmlinux 0x16a17599 netlink_has_listeners +EXPORT_SYMBOL_GPL vmlinux 0x16b4cb69 blk_next_bio EXPORT_SYMBOL_GPL vmlinux 0x16da1f88 devlink_fmsg_u32_put +EXPORT_SYMBOL_GPL vmlinux 0x16dd6fcf __reset_control_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x16e26077 usb_enable_autosuspend EXPORT_SYMBOL_GPL vmlinux 0x16e66b43 crypto_aes_set_key -EXPORT_SYMBOL_GPL vmlinux 0x16ea4a31 fscrypt_get_symlink +EXPORT_SYMBOL_GPL vmlinux 0x16ea3d47 irq_get_domain_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x16eb7736 fib6_new_table +EXPORT_SYMBOL_GPL vmlinux 0x16ed826f call_switchdev_blocking_notifiers EXPORT_SYMBOL_GPL vmlinux 0x16f15139 bind_evtchn_to_irq -EXPORT_SYMBOL_GPL vmlinux 0x1705ed2a sock_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0x1706e513 fscrypt_mergeable_bio EXPORT_SYMBOL_GPL vmlinux 0x170cc36c put_timespec64 -EXPORT_SYMBOL_GPL vmlinux 0x1711ecdc edac_pci_del_device -EXPORT_SYMBOL_GPL vmlinux 0x1713a83a addrconf_add_linklocal -EXPORT_SYMBOL_GPL vmlinux 0x1716f50e regmap_write_async -EXPORT_SYMBOL_GPL vmlinux 0x172d8d7c nvdimm_cmd_mask -EXPORT_SYMBOL_GPL vmlinux 0x172edbd2 pci_epc_get +EXPORT_SYMBOL_GPL vmlinux 0x170dc63e spi_get_next_queued_message +EXPORT_SYMBOL_GPL vmlinux 0x171b354b br_ip6_fragment +EXPORT_SYMBOL_GPL vmlinux 0x172d7126 crypto_shoot_alg +EXPORT_SYMBOL_GPL vmlinux 0x17329413 __SCK__tp_func_rpm_idle EXPORT_SYMBOL_GPL vmlinux 0x1741ddee trace_seq_puts -EXPORT_SYMBOL_GPL vmlinux 0x17447e7c xhci_init_driver EXPORT_SYMBOL_GPL vmlinux 0x17480d56 x509_free_certificate -EXPORT_SYMBOL_GPL vmlinux 0x17492d30 dm_device_name EXPORT_SYMBOL_GPL vmlinux 0x174c6274 ring_buffer_time_stamp -EXPORT_SYMBOL_GPL vmlinux 0x174f325c tpm1_getcap -EXPORT_SYMBOL_GPL vmlinux 0x175c9a19 palmas_ext_control_req_config +EXPORT_SYMBOL_GPL vmlinux 0x17557d0b security_path_rmdir +EXPORT_SYMBOL_GPL vmlinux 0x175f4e62 thermal_zone_get_slope EXPORT_SYMBOL_GPL vmlinux 0x176031a7 devlink_fmsg_string_put EXPORT_SYMBOL_GPL vmlinux 0x17614bf3 apei_resources_sub -EXPORT_SYMBOL_GPL vmlinux 0x176a5fa8 device_find_child_by_name EXPORT_SYMBOL_GPL vmlinux 0x176adf76 xenmem_reservation_decrease -EXPORT_SYMBOL_GPL vmlinux 0x17711dfc rio_request_dma EXPORT_SYMBOL_GPL vmlinux 0x177c338d twl_get_version -EXPORT_SYMBOL_GPL vmlinux 0x1784218f unregister_virtio_device -EXPORT_SYMBOL_GPL vmlinux 0x178e5313 iommu_set_fault_handler -EXPORT_SYMBOL_GPL vmlinux 0x1791ec36 sysfs_remove_file_self -EXPORT_SYMBOL_GPL vmlinux 0x17979f26 generic_fsdax_supported -EXPORT_SYMBOL_GPL vmlinux 0x179ab5ed fuse_direct_io -EXPORT_SYMBOL_GPL vmlinux 0x179b06fe edac_pci_add_device -EXPORT_SYMBOL_GPL vmlinux 0x17a34874 hwspin_lock_free +EXPORT_SYMBOL_GPL vmlinux 0x1787a59e mbox_chan_received_data +EXPORT_SYMBOL_GPL vmlinux 0x17a467c0 crypto_register_skcipher EXPORT_SYMBOL_GPL vmlinux 0x17add64b gdt_page -EXPORT_SYMBOL_GPL vmlinux 0x17ba1138 acpi_pm_set_device_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x17c29e82 regulator_enable +EXPORT_SYMBOL_GPL vmlinux 0x17bc17ea irq_chip_set_wake_parent EXPORT_SYMBOL_GPL vmlinux 0x17e01f11 erst_clear -EXPORT_SYMBOL_GPL vmlinux 0x17e6c1fc regulator_register +EXPORT_SYMBOL_GPL vmlinux 0x17f1daa7 kernfs_find_and_get_ns EXPORT_SYMBOL_GPL vmlinux 0x18008c59 ring_buffer_resize -EXPORT_SYMBOL_GPL vmlinux 0x180a0ff0 icc_node_add -EXPORT_SYMBOL_GPL vmlinux 0x182066ec rio_del_mport_pw_handler -EXPORT_SYMBOL_GPL vmlinux 0x1828a3e3 extcon_get_property -EXPORT_SYMBOL_GPL vmlinux 0x183a9b56 ata_sff_port_intr -EXPORT_SYMBOL_GPL vmlinux 0x184d5bb8 sdio_retune_crc_enable +EXPORT_SYMBOL_GPL vmlinux 0x180a5966 phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0x18194514 crypto_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x181a294d regulator_set_voltage_rdev +EXPORT_SYMBOL_GPL vmlinux 0x181a7728 devlink_trap_policers_unregister +EXPORT_SYMBOL_GPL vmlinux 0x182de49e xdp_rxq_info_unreg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0x1846dc83 kobject_uevent_env +EXPORT_SYMBOL_GPL vmlinux 0x185021be fscrypt_file_open EXPORT_SYMBOL_GPL vmlinux 0x18582826 amd_pmu_disable_virt -EXPORT_SYMBOL_GPL vmlinux 0x18592a3a mnt_want_write_file -EXPORT_SYMBOL_GPL vmlinux 0x185c30f2 get_governor_parent_kobj +EXPORT_SYMBOL_GPL vmlinux 0x185a59eb regulator_suspend_disable EXPORT_SYMBOL_GPL vmlinux 0x18615d35 efivar_supports_writes -EXPORT_SYMBOL_GPL vmlinux 0x187fca5e blkdev_nr_zones -EXPORT_SYMBOL_GPL vmlinux 0x18867805 acpi_dev_gpio_irq_get_by -EXPORT_SYMBOL_GPL vmlinux 0x189a858c rio_request_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x18616059 ncsi_unregister_dev +EXPORT_SYMBOL_GPL vmlinux 0x189abad2 devres_release +EXPORT_SYMBOL_GPL vmlinux 0x18ab27e8 mmc_get_ext_csd EXPORT_SYMBOL_GPL vmlinux 0x18b2790f uv_bios_obj_count -EXPORT_SYMBOL_GPL vmlinux 0x18c1a535 __nf_ip6_route -EXPORT_SYMBOL_GPL vmlinux 0x18d399da usb_reset_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x18c44ad9 devm_bitmap_zalloc +EXPORT_SYMBOL_GPL vmlinux 0x18d0e410 devlink_dpipe_entry_ctx_prepare EXPORT_SYMBOL_GPL vmlinux 0x18e4f8aa swphy_read_reg -EXPORT_SYMBOL_GPL vmlinux 0x18ede825 acpi_dev_pm_attach +EXPORT_SYMBOL_GPL vmlinux 0x18edbcf4 crypto_stats_compress EXPORT_SYMBOL_GPL vmlinux 0x18fb2caf cpus_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0x190fc756 tcp_unregister_ulp -EXPORT_SYMBOL_GPL vmlinux 0x191adea4 __reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0x1926c006 device_property_match_string -EXPORT_SYMBOL_GPL vmlinux 0x1934c580 regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x18ff8ce2 pinctrl_pm_select_default_state +EXPORT_SYMBOL_GPL vmlinux 0x192a7d75 key_type_logon EXPORT_SYMBOL_GPL vmlinux 0x193dfdf6 klp_get_prev_state -EXPORT_SYMBOL_GPL vmlinux 0x1959d3dd xenbus_unmap_ring_vfree -EXPORT_SYMBOL_GPL vmlinux 0x195bd3f0 nf_nat_hook -EXPORT_SYMBOL_GPL vmlinux 0x19619960 rio_add_net +EXPORT_SYMBOL_GPL vmlinux 0x19521296 rio_unmap_outb_region EXPORT_SYMBOL_GPL vmlinux 0x196614ce hw_breakpoint_restore -EXPORT_SYMBOL_GPL vmlinux 0x1971d173 watchdog_register_device -EXPORT_SYMBOL_GPL vmlinux 0x19757ed6 devm_fwnode_gpiod_get_index -EXPORT_SYMBOL_GPL vmlinux 0x19982b1f spi_new_ancillary_device -EXPORT_SYMBOL_GPL vmlinux 0x199c9f6d of_pm_clk_add_clks +EXPORT_SYMBOL_GPL vmlinux 0x196f5b71 bpf_trace_run9 +EXPORT_SYMBOL_GPL vmlinux 0x197e6d18 virtqueue_get_buf_ctx +EXPORT_SYMBOL_GPL vmlinux 0x199a787c ipv6_bpf_stub +EXPORT_SYMBOL_GPL vmlinux 0x19a162db fwnode_get_named_gpiod EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled -EXPORT_SYMBOL_GPL vmlinux 0x19a6a739 usb_wakeup_enabled_descendants -EXPORT_SYMBOL_GPL vmlinux 0x19b1513e dma_free_pages -EXPORT_SYMBOL_GPL vmlinux 0x19d49257 sdio_retune_crc_disable -EXPORT_SYMBOL_GPL vmlinux 0x19d7fba4 ata_cable_unknown -EXPORT_SYMBOL_GPL vmlinux 0x19d9f524 iommu_domain_alloc -EXPORT_SYMBOL_GPL vmlinux 0x19da57e8 intel_pinctrl_probe_by_hid +EXPORT_SYMBOL_GPL vmlinux 0x19b1e7a4 regcache_cache_only +EXPORT_SYMBOL_GPL vmlinux 0x19b25f75 sdev_evt_send EXPORT_SYMBOL_GPL vmlinux 0x19e0ae50 __SCT__tp_func_br_fdb_external_learn_add EXPORT_SYMBOL_GPL vmlinux 0x19e81304 btree_alloc +EXPORT_SYMBOL_GPL vmlinux 0x19e9f843 platform_device_add +EXPORT_SYMBOL_GPL vmlinux 0x19ec6dc9 __tracepoint_cpu_frequency +EXPORT_SYMBOL_GPL vmlinux 0x19ec8552 ata_pci_shutdown_one EXPORT_SYMBOL_GPL vmlinux 0x19edd064 blkg_rwstat_exit -EXPORT_SYMBOL_GPL vmlinux 0x1a0226ab crypto_register_shashes -EXPORT_SYMBOL_GPL vmlinux 0x1a09b9ff subsys_interface_register +EXPORT_SYMBOL_GPL vmlinux 0x19ef8684 kstrdup_quotable_file +EXPORT_SYMBOL_GPL vmlinux 0x19f5bb2e rio_mport_initialize +EXPORT_SYMBOL_GPL vmlinux 0x19fbd6b9 device_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x19fdd254 perf_event_refresh +EXPORT_SYMBOL_GPL vmlinux 0x1a0c9e23 gpiochip_irqchip_add_domain EXPORT_SYMBOL_GPL vmlinux 0x1a10c32b crypto_ft_tab EXPORT_SYMBOL_GPL vmlinux 0x1a146ec3 usb_ep_type_string -EXPORT_SYMBOL_GPL vmlinux 0x1a254c49 skb_to_sgvec -EXPORT_SYMBOL_GPL vmlinux 0x1a2da6dc dw_pcie_wait_for_link -EXPORT_SYMBOL_GPL vmlinux 0x1a35ca8f devlink_health_reporter_create -EXPORT_SYMBOL_GPL vmlinux 0x1a47e854 verify_signature -EXPORT_SYMBOL_GPL vmlinux 0x1a614468 edac_mc_find_csrow_by_page -EXPORT_SYMBOL_GPL vmlinux 0x1a653ec1 phy_pm_runtime_put -EXPORT_SYMBOL_GPL vmlinux 0x1a670984 blk_queue_write_cache -EXPORT_SYMBOL_GPL vmlinux 0x1a69e671 dma_mmap_pages +EXPORT_SYMBOL_GPL vmlinux 0x1a16fb65 ata_std_sched_eh +EXPORT_SYMBOL_GPL vmlinux 0x1a2388d3 regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x1a4191cf blk_mq_complete_request_remote +EXPORT_SYMBOL_GPL vmlinux 0x1a4685e6 vfs_truncate +EXPORT_SYMBOL_GPL vmlinux 0x1a503a13 extcon_dev_free EXPORT_SYMBOL_GPL vmlinux 0x1a6bf28f fsnotify_get_cookie -EXPORT_SYMBOL_GPL vmlinux 0x1a886eb6 irq_domain_create_simple -EXPORT_SYMBOL_GPL vmlinux 0x1a8ec70c devm_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x1a70ea85 blkdev_zone_mgmt +EXPORT_SYMBOL_GPL vmlinux 0x1a836141 ncsi_vlan_rx_kill_vid +EXPORT_SYMBOL_GPL vmlinux 0x1a83dd63 dev_pm_domain_detach +EXPORT_SYMBOL_GPL vmlinux 0x1a863fa2 nd_region_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x1a91ed70 sock_prot_inuse_add EXPORT_SYMBOL_GPL vmlinux 0x1a9754cf sbitmap_queue_min_shallow_depth -EXPORT_SYMBOL_GPL vmlinux 0x1a994674 acpi_dev_add_driver_gpios -EXPORT_SYMBOL_GPL vmlinux 0x1aab7a79 devlink_reload_enable -EXPORT_SYMBOL_GPL vmlinux 0x1acc435c scsi_get_vpd_page +EXPORT_SYMBOL_GPL vmlinux 0x1a976cab regulator_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x1a9e3289 xenbus_dev_cancel +EXPORT_SYMBOL_GPL vmlinux 0x1aba0d1e bdev_disk_changed +EXPORT_SYMBOL_GPL vmlinux 0x1abdf701 nvdimm_badblocks_populate +EXPORT_SYMBOL_GPL vmlinux 0x1accf16d ethnl_cable_test_free EXPORT_SYMBOL_GPL vmlinux 0x1acd18c8 cpuset_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x1ad98bc4 devlink_region_snapshot_id_get -EXPORT_SYMBOL_GPL vmlinux 0x1ae6bbf1 preempt_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x1acdfb5d unregister_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x1ad3a65e pci_aer_clear_nonfatal_status +EXPORT_SYMBOL_GPL vmlinux 0x1ad3debb pinctrl_get_group_pins +EXPORT_SYMBOL_GPL vmlinux 0x1ad49c5e pcie_port_find_device +EXPORT_SYMBOL_GPL vmlinux 0x1ad57e20 bio_associate_blkg +EXPORT_SYMBOL_GPL vmlinux 0x1ae33913 __rio_local_write_config_8 EXPORT_SYMBOL_GPL vmlinux 0x1af267f8 int_pow EXPORT_SYMBOL_GPL vmlinux 0x1aff3d55 mce_register_injector_chain -EXPORT_SYMBOL_GPL vmlinux 0x1b1016ca is_nvdimm_sync -EXPORT_SYMBOL_GPL vmlinux 0x1b298cff regulator_disable_regmap -EXPORT_SYMBOL_GPL vmlinux 0x1b475ca1 edac_device_alloc_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0x1b1ac155 regulator_irq_helper +EXPORT_SYMBOL_GPL vmlinux 0x1b1be431 __device_reset +EXPORT_SYMBOL_GPL vmlinux 0x1b1fdcad scsi_autopm_put_device +EXPORT_SYMBOL_GPL vmlinux 0x1b208f7c pm_generic_suspend +EXPORT_SYMBOL_GPL vmlinux 0x1b35e695 scsi_target_block +EXPORT_SYMBOL_GPL vmlinux 0x1b3d18e9 pinctrl_force_default EXPORT_SYMBOL_GPL vmlinux 0x1b5059ce ata_id_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x1b572a92 phy_led_triggers_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1b5ebb8c usb_put_hcd EXPORT_SYMBOL_GPL vmlinux 0x1b5f4377 trace_seq_putc -EXPORT_SYMBOL_GPL vmlinux 0x1b725351 dev_pm_opp_get_max_transition_latency -EXPORT_SYMBOL_GPL vmlinux 0x1b7901cd apei_get_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0x1b6e90a0 spi_mem_supports_op +EXPORT_SYMBOL_GPL vmlinux 0x1b7bb96a wm8350_clear_bits EXPORT_SYMBOL_GPL vmlinux 0x1b8822d8 pinctrl_gpio_direction_output -EXPORT_SYMBOL_GPL vmlinux 0x1b919a99 init_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x1b88354a usb_driver_release_interface EXPORT_SYMBOL_GPL vmlinux 0x1b92e41d inet_putpeer -EXPORT_SYMBOL_GPL vmlinux 0x1b95abb7 __traceiter_block_unplug EXPORT_SYMBOL_GPL vmlinux 0x1ba237b0 default_cpu_present_to_apicid -EXPORT_SYMBOL_GPL vmlinux 0x1ba48adc ata_port_abort -EXPORT_SYMBOL_GPL vmlinux 0x1baa9ebc hwmon_notify_event -EXPORT_SYMBOL_GPL vmlinux 0x1bab5bfe mbox_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x1ba781eb xhci_check_bandwidth +EXPORT_SYMBOL_GPL vmlinux 0x1ba7b2de rio_request_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x1bab21dd __kthread_init_worker +EXPORT_SYMBOL_GPL vmlinux 0x1bb64ab4 regmap_async_complete +EXPORT_SYMBOL_GPL vmlinux 0x1bc0cbba get_task_mm EXPORT_SYMBOL_GPL vmlinux 0x1bc5eebe pinctrl_gpio_direction_input -EXPORT_SYMBOL_GPL vmlinux 0x1bc63bc2 device_add -EXPORT_SYMBOL_GPL vmlinux 0x1be5534d dev_pm_opp_put_prop_name +EXPORT_SYMBOL_GPL vmlinux 0x1be28414 __SCK__tp_func_add_device_to_group EXPORT_SYMBOL_GPL vmlinux 0x1bee4974 sg_alloc_table_chained -EXPORT_SYMBOL_GPL vmlinux 0x1bf02fb6 regcache_cache_bypass -EXPORT_SYMBOL_GPL vmlinux 0x1bfb0d85 tcp_set_keepalive -EXPORT_SYMBOL_GPL vmlinux 0x1c17ca72 fscrypt_prepare_new_inode -EXPORT_SYMBOL_GPL vmlinux 0x1c1aa218 __raw_v4_lookup -EXPORT_SYMBOL_GPL vmlinux 0x1c25453d platform_device_del -EXPORT_SYMBOL_GPL vmlinux 0x1c286f1b crypto_unregister_ahashes -EXPORT_SYMBOL_GPL vmlinux 0x1c363dc9 ping_get_port +EXPORT_SYMBOL_GPL vmlinux 0x1c0fd802 bpf_map_inc_with_uref +EXPORT_SYMBOL_GPL vmlinux 0x1c115162 ping_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0x1c15f32f bpf_verifier_log_write +EXPORT_SYMBOL_GPL vmlinux 0x1c3f3ff2 dm_device_name +EXPORT_SYMBOL_GPL vmlinux 0x1c4b5987 proc_get_parent_data EXPORT_SYMBOL_GPL vmlinux 0x1c5541bd cpufreq_boost_enabled -EXPORT_SYMBOL_GPL vmlinux 0x1c5b1d6d xhci_resume EXPORT_SYMBOL_GPL vmlinux 0x1c5b1f28 irq_free_descs EXPORT_SYMBOL_GPL vmlinux 0x1c5ff742 clk_get_phase -EXPORT_SYMBOL_GPL vmlinux 0x1c716601 crypto_comp_decompress +EXPORT_SYMBOL_GPL vmlinux 0x1c660b86 clone_private_mount +EXPORT_SYMBOL_GPL vmlinux 0x1c6bf333 __pci_hp_register EXPORT_SYMBOL_GPL vmlinux 0x1c764526 __SCT__tp_func_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x1c7f4f6e fuse_dev_fiq_ops EXPORT_SYMBOL_GPL vmlinux 0x1c80d27d btree_geo128 EXPORT_SYMBOL_GPL vmlinux 0x1c87a811 __round_jiffies_up -EXPORT_SYMBOL_GPL vmlinux 0x1c8e7ca7 pci_dev_trylock -EXPORT_SYMBOL_GPL vmlinux 0x1c998f5c ip_route_output_tunnel +EXPORT_SYMBOL_GPL vmlinux 0x1c89a0af iommu_group_for_each_dev EXPORT_SYMBOL_GPL vmlinux 0x1ca3aa97 alarm_forward +EXPORT_SYMBOL_GPL vmlinux 0x1cadd587 handle_bad_irq EXPORT_SYMBOL_GPL vmlinux 0x1cb7c983 apei_exec_read_register_value EXPORT_SYMBOL_GPL vmlinux 0x1cb9a1c8 xenbus_gather -EXPORT_SYMBOL_GPL vmlinux 0x1cbb1128 iommu_aux_get_pasid EXPORT_SYMBOL_GPL vmlinux 0x1cbd92b0 cpu_mitigations_off -EXPORT_SYMBOL_GPL vmlinux 0x1ccc92f8 usb_remove_phy +EXPORT_SYMBOL_GPL vmlinux 0x1ccdfdf5 dev_pm_domain_set +EXPORT_SYMBOL_GPL vmlinux 0x1cd374f5 tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x1ce7322e phy_power_on +EXPORT_SYMBOL_GPL vmlinux 0x1cf4ab3d kernfs_put +EXPORT_SYMBOL_GPL vmlinux 0x1cf53839 gpiod_set_raw_value_cansleep EXPORT_SYMBOL_GPL vmlinux 0x1cfe4101 clkdev_hw_create -EXPORT_SYMBOL_GPL vmlinux 0x1d085316 regulator_bulk_free -EXPORT_SYMBOL_GPL vmlinux 0x1d0b586d nd_blk_region_set_provider_data -EXPORT_SYMBOL_GPL vmlinux 0x1d0c4423 vp_modern_set_queue_enable -EXPORT_SYMBOL_GPL vmlinux 0x1d109723 i2c_dw_configure_master -EXPORT_SYMBOL_GPL vmlinux 0x1d1595d6 tty_port_register_device_attr -EXPORT_SYMBOL_GPL vmlinux 0x1d16d503 pwmchip_add -EXPORT_SYMBOL_GPL vmlinux 0x1d1cd205 scsi_host_block +EXPORT_SYMBOL_GPL vmlinux 0x1d063d26 __tracepoint_neigh_timer_handler +EXPORT_SYMBOL_GPL vmlinux 0x1d0dfcc9 handle_level_irq EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state -EXPORT_SYMBOL_GPL vmlinux 0x1d315b97 ata_common_sdev_attrs -EXPORT_SYMBOL_GPL vmlinux 0x1d3520dd nf_queue_entry_free -EXPORT_SYMBOL_GPL vmlinux 0x1d36f905 security_path_chown -EXPORT_SYMBOL_GPL vmlinux 0x1d49f860 devlink_trap_report -EXPORT_SYMBOL_GPL vmlinux 0x1d5eddda tpm_tis_core_init +EXPORT_SYMBOL_GPL vmlinux 0x1d3bca42 pci_hp_create_module_link +EXPORT_SYMBOL_GPL vmlinux 0x1d4528d0 ata_sas_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x1d622c93 devlink_is_reload_failed EXPORT_SYMBOL_GPL vmlinux 0x1d77b0f8 unix_socket_table -EXPORT_SYMBOL_GPL vmlinux 0x1d909c81 fwnode_graph_get_next_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x1d7b2181 usb_wakeup_notification +EXPORT_SYMBOL_GPL vmlinux 0x1d8a434f fuse_simple_background EXPORT_SYMBOL_GPL vmlinux 0x1d94a218 dmi_memdev_handle -EXPORT_SYMBOL_GPL vmlinux 0x1da43924 fsverity_verify_page -EXPORT_SYMBOL_GPL vmlinux 0x1ddaab46 pinctrl_utils_reserve_map +EXPORT_SYMBOL_GPL vmlinux 0x1dad6926 dev_pm_domain_attach +EXPORT_SYMBOL_GPL vmlinux 0x1dae1942 led_put +EXPORT_SYMBOL_GPL vmlinux 0x1dce806b skb_append_pagefrags EXPORT_SYMBOL_GPL vmlinux 0x1ddd29fc __SCK__tp_func_xdp_bulk_tx +EXPORT_SYMBOL_GPL vmlinux 0x1de37546 dev_pm_qos_hide_flags EXPORT_SYMBOL_GPL vmlinux 0x1dfa5dbd mpi_invm -EXPORT_SYMBOL_GPL vmlinux 0x1dfc4a99 do_splice_to +EXPORT_SYMBOL_GPL vmlinux 0x1e049057 genphy_c45_config_aneg EXPORT_SYMBOL_GPL vmlinux 0x1e0670c6 reset_control_release -EXPORT_SYMBOL_GPL vmlinux 0x1e168518 nvdimm_region_notify -EXPORT_SYMBOL_GPL vmlinux 0x1e21441c devres_destroy -EXPORT_SYMBOL_GPL vmlinux 0x1e237273 irq_domain_disconnect_hierarchy -EXPORT_SYMBOL_GPL vmlinux 0x1e305fcf fuse_conn_get -EXPORT_SYMBOL_GPL vmlinux 0x1e30e9e2 lwtunnel_cmp_encap -EXPORT_SYMBOL_GPL vmlinux 0x1e3c1e51 dev_attr_unload_heads +EXPORT_SYMBOL_GPL vmlinux 0x1e0db472 bio_alloc_kiocb +EXPORT_SYMBOL_GPL vmlinux 0x1e0ee97e __percpu_init_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x1e14a4fe fat_search_long EXPORT_SYMBOL_GPL vmlinux 0x1e424d61 user_preparse -EXPORT_SYMBOL_GPL vmlinux 0x1e4ba5c4 dma_get_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0x1e4e2da4 phy_led_triggers_register EXPORT_SYMBOL_GPL vmlinux 0x1e4e98c0 acpi_dev_filter_resource_type -EXPORT_SYMBOL_GPL vmlinux 0x1e52aff6 is_swiotlb_active +EXPORT_SYMBOL_GPL vmlinux 0x1e52c8e4 ata_dummy_port_info EXPORT_SYMBOL_GPL vmlinux 0x1e5a5f22 sn_partition_id -EXPORT_SYMBOL_GPL vmlinux 0x1e63f723 regulator_get_linear_step -EXPORT_SYMBOL_GPL vmlinux 0x1e766bc0 cgroup_path_ns +EXPORT_SYMBOL_GPL vmlinux 0x1e674f14 efivar_entry_get +EXPORT_SYMBOL_GPL vmlinux 0x1e790cb2 trace_array_set_clr_event EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart +EXPORT_SYMBOL_GPL vmlinux 0x1e7c8391 devm_clk_bulk_get_all +EXPORT_SYMBOL_GPL vmlinux 0x1e7f998b devm_watchdog_register_device EXPORT_SYMBOL_GPL vmlinux 0x1e8fac8e wireless_nlevent_flush EXPORT_SYMBOL_GPL vmlinux 0x1e912415 uv_bios_get_heapsize EXPORT_SYMBOL_GPL vmlinux 0x1e9872f6 sbitmap_finish_wait EXPORT_SYMBOL_GPL vmlinux 0x1e9bc719 freq_qos_update_request EXPORT_SYMBOL_GPL vmlinux 0x1e9c590a usb_find_common_endpoints_reverse -EXPORT_SYMBOL_GPL vmlinux 0x1e9ed0d8 serial8250_rpm_get -EXPORT_SYMBOL_GPL vmlinux 0x1ea8a061 ethnl_cable_test_finished +EXPORT_SYMBOL_GPL vmlinux 0x1eb882a3 usb_deregister_dev EXPORT_SYMBOL_GPL vmlinux 0x1eb9516e round_jiffies_relative EXPORT_SYMBOL_GPL vmlinux 0x1ebf6c2a pci_power_names -EXPORT_SYMBOL_GPL vmlinux 0x1ecb7e6f bpfilter_umh_cleanup EXPORT_SYMBOL_GPL vmlinux 0x1ed4d2eb percpu_ref_kill_and_confirm -EXPORT_SYMBOL_GPL vmlinux 0x1ed85da1 regcache_cache_only -EXPORT_SYMBOL_GPL vmlinux 0x1eddd3bb unwind_get_return_address -EXPORT_SYMBOL_GPL vmlinux 0x1ee2f053 xenbus_watch_path -EXPORT_SYMBOL_GPL vmlinux 0x1ee9d8ee inet_twsk_alloc -EXPORT_SYMBOL_GPL vmlinux 0x1efd5558 dev_pm_opp_remove_table +EXPORT_SYMBOL_GPL vmlinux 0x1ee84085 key_type_asymmetric +EXPORT_SYMBOL_GPL vmlinux 0x1f03fb30 housekeeping_affine +EXPORT_SYMBOL_GPL vmlinux 0x1f09dd4e ata_sff_irq_on EXPORT_SYMBOL_GPL vmlinux 0x1f0cb5bf pm_power_off_prepare -EXPORT_SYMBOL_GPL vmlinux 0x1f17189c watchdog_set_last_hw_keepalive -EXPORT_SYMBOL_GPL vmlinux 0x1f179e74 init_uts_ns +EXPORT_SYMBOL_GPL vmlinux 0x1f169efa mbox_client_peek_data +EXPORT_SYMBOL_GPL vmlinux 0x1f2f9da6 bind_interdomain_evtchn_to_irq_lateeoi EXPORT_SYMBOL_GPL vmlinux 0x1f38a4f6 mpi_set_highbit +EXPORT_SYMBOL_GPL vmlinux 0x1f39f02f __tracepoint_map EXPORT_SYMBOL_GPL vmlinux 0x1f449588 mctrl_gpio_disable_ms +EXPORT_SYMBOL_GPL vmlinux 0x1f4a2c68 irq_create_fwspec_mapping EXPORT_SYMBOL_GPL vmlinux 0x1f563160 bpf_offload_dev_priv +EXPORT_SYMBOL_GPL vmlinux 0x1f5640cd serdev_device_write_flush +EXPORT_SYMBOL_GPL vmlinux 0x1f5a6c8b vfio_iommu_group_get EXPORT_SYMBOL_GPL vmlinux 0x1f5ece97 cond_wakeup_cpu0 -EXPORT_SYMBOL_GPL vmlinux 0x1f725690 fwnode_property_read_u8_array -EXPORT_SYMBOL_GPL vmlinux 0x1f7b98bf led_classdev_register_ext -EXPORT_SYMBOL_GPL vmlinux 0x1f7dcf8e dev_xdp_prog_count +EXPORT_SYMBOL_GPL vmlinux 0x1f64be60 dst_cache_set_ip6 +EXPORT_SYMBOL_GPL vmlinux 0x1f64d919 xhci_add_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x1f6885d3 serial8250_update_uartclk +EXPORT_SYMBOL_GPL vmlinux 0x1f698f43 clockevent_delta2ns EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout -EXPORT_SYMBOL_GPL vmlinux 0x1f8b3a8d vp_modern_get_queue_size -EXPORT_SYMBOL_GPL vmlinux 0x1f928b53 skb_mpls_push -EXPORT_SYMBOL_GPL vmlinux 0x1f96486f input_ff_create -EXPORT_SYMBOL_GPL vmlinux 0x1f9f51f5 bpf_trace_run7 +EXPORT_SYMBOL_GPL vmlinux 0x1f86633a regmap_get_raw_read_max +EXPORT_SYMBOL_GPL vmlinux 0x1f9484d0 da903x_reads EXPORT_SYMBOL_GPL vmlinux 0x1fa1d95c sha256_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x1fb2db2c pci_create_slot +EXPORT_SYMBOL_GPL vmlinux 0x1fa846bf fuse_dax_cancel_work +EXPORT_SYMBOL_GPL vmlinux 0x1faaff08 ip6_datagram_release_cb EXPORT_SYMBOL_GPL vmlinux 0x1fb70eb9 gnttab_end_foreign_transfer_ref -EXPORT_SYMBOL_GPL vmlinux 0x1fceffb6 debugfs_rename -EXPORT_SYMBOL_GPL vmlinux 0x1fe60101 extcon_sync +EXPORT_SYMBOL_GPL vmlinux 0x1fc23e4b pm_runtime_suspended_time +EXPORT_SYMBOL_GPL vmlinux 0x1fcf6dfa regulator_list_voltage +EXPORT_SYMBOL_GPL vmlinux 0x1fd40c6f dm_report_zones +EXPORT_SYMBOL_GPL vmlinux 0x1fd625ed rio_map_inb_region EXPORT_SYMBOL_GPL vmlinux 0x1fe6e504 gpiod_add_hogs -EXPORT_SYMBOL_GPL vmlinux 0x1ff0202a __of_phy_provider_register EXPORT_SYMBOL_GPL vmlinux 0x2009e400 devlink_info_board_serial_number_put -EXPORT_SYMBOL_GPL vmlinux 0x20132b93 fl6_merge_options +EXPORT_SYMBOL_GPL vmlinux 0x20113d2e cgroup_path_ns +EXPORT_SYMBOL_GPL vmlinux 0x20235eb6 lwtunnel_fill_encap EXPORT_SYMBOL_GPL vmlinux 0x202d4ed6 nvmem_cell_write +EXPORT_SYMBOL_GPL vmlinux 0x203f5fff __clk_hw_register_mux +EXPORT_SYMBOL_GPL vmlinux 0x204ea3a4 blk_req_needs_zone_write_lock EXPORT_SYMBOL_GPL vmlinux 0x204f2c5c gnttab_free_grant_reference -EXPORT_SYMBOL_GPL vmlinux 0x2055a50f perf_event_sysfs_show -EXPORT_SYMBOL_GPL vmlinux 0x20606b12 component_unbind_all -EXPORT_SYMBOL_GPL vmlinux 0x206eb059 receive_fd +EXPORT_SYMBOL_GPL vmlinux 0x20505d3a __root_device_register +EXPORT_SYMBOL_GPL vmlinux 0x205812aa spi_res_add +EXPORT_SYMBOL_GPL vmlinux 0x2060fc9f crypto_register_scomps +EXPORT_SYMBOL_GPL vmlinux 0x20619177 fpu_alloc_guest_fpstate +EXPORT_SYMBOL_GPL vmlinux 0x20732891 devm_pinctrl_register_and_init +EXPORT_SYMBOL_GPL vmlinux 0x2077ba09 devm_platform_ioremap_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0x20814159 __clk_hw_register_fixed_rate EXPORT_SYMBOL_GPL vmlinux 0x20835a9f __xdp_release_frame -EXPORT_SYMBOL_GPL vmlinux 0x2083f46e usb_free_coherent +EXPORT_SYMBOL_GPL vmlinux 0x2085499d crypto_destroy_tfm EXPORT_SYMBOL_GPL vmlinux 0x20899467 hv_stimer0_isr +EXPORT_SYMBOL_GPL vmlinux 0x209069bc genphy_c45_pma_resume +EXPORT_SYMBOL_GPL vmlinux 0x209106e0 devm_regulator_bulk_get EXPORT_SYMBOL_GPL vmlinux 0x20978fb9 idr_find -EXPORT_SYMBOL_GPL vmlinux 0x20979452 regulator_enable_regmap -EXPORT_SYMBOL_GPL vmlinux 0x20ab16a5 regulator_bulk_force_disable -EXPORT_SYMBOL_GPL vmlinux 0x20e2611e devfreq_get_devfreq_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x20a69dbd tps6586x_write +EXPORT_SYMBOL_GPL vmlinux 0x20cd9c1a da903x_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x20dc2b01 regulator_register EXPORT_SYMBOL_GPL vmlinux 0x20fc44ac serdev_acpi_get_uart_resource -EXPORT_SYMBOL_GPL vmlinux 0x2100e6be regulator_count_voltages -EXPORT_SYMBOL_GPL vmlinux 0x2104d8e5 ping_getfrag -EXPORT_SYMBOL_GPL vmlinux 0x210742e7 devfreq_event_get_edev_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x210a4422 sk_msg_recvmsg -EXPORT_SYMBOL_GPL vmlinux 0x2111da16 pci_remove_root_bus -EXPORT_SYMBOL_GPL vmlinux 0x211dd79a pci_epf_add_vepf -EXPORT_SYMBOL_GPL vmlinux 0x212ca9d2 regmap_reinit_cache -EXPORT_SYMBOL_GPL vmlinux 0x2139aa67 regmap_raw_write_async -EXPORT_SYMBOL_GPL vmlinux 0x213bc8ec cpu_subsys -EXPORT_SYMBOL_GPL vmlinux 0x21498dc2 bio_start_io_acct_time -EXPORT_SYMBOL_GPL vmlinux 0x21552911 __devm_regmap_init_i2c -EXPORT_SYMBOL_GPL vmlinux 0x21630499 sysfs_rename_link_ns +EXPORT_SYMBOL_GPL vmlinux 0x21018018 ata_host_alloc +EXPORT_SYMBOL_GPL vmlinux 0x21027788 sched_setattr_nocheck +EXPORT_SYMBOL_GPL vmlinux 0x212159e1 __tracepoint_tcp_bad_csum +EXPORT_SYMBOL_GPL vmlinux 0x2123beac cpufreq_cpu_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x21521d8b ata_qc_complete_multiple +EXPORT_SYMBOL_GPL vmlinux 0x21530558 rdev_get_id +EXPORT_SYMBOL_GPL vmlinux 0x2154324e virtio_max_dma_size +EXPORT_SYMBOL_GPL vmlinux 0x21659199 bpf_trace_run7 +EXPORT_SYMBOL_GPL vmlinux 0x216b6b23 __tracepoint_kfree_skb EXPORT_SYMBOL_GPL vmlinux 0x216de4e1 rcu_get_gp_kthreads_prio -EXPORT_SYMBOL_GPL vmlinux 0x2175f8c3 virtio_config_changed +EXPORT_SYMBOL_GPL vmlinux 0x216e045b i2c_add_numbered_adapter EXPORT_SYMBOL_GPL vmlinux 0x2176e42a hwpoison_filter_memcg -EXPORT_SYMBOL_GPL vmlinux 0x217e0e17 do_truncate -EXPORT_SYMBOL_GPL vmlinux 0x218d4cf5 clk_mux_determine_rate_flags -EXPORT_SYMBOL_GPL vmlinux 0x219ed0d3 of_hwspin_lock_get_id_byname -EXPORT_SYMBOL_GPL vmlinux 0x219f2e83 mbox_free_channel -EXPORT_SYMBOL_GPL vmlinux 0x21a1f9d0 regulator_set_voltage_sel_pickable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x2185f7d0 nvdimm_security_setup_events +EXPORT_SYMBOL_GPL vmlinux 0x2188096a kill_dev_dax +EXPORT_SYMBOL_GPL vmlinux 0x218da5b6 debugfs_create_size_t EXPORT_SYMBOL_GPL vmlinux 0x21a563da clk_get_accuracy EXPORT_SYMBOL_GPL vmlinux 0x21ac8b77 iommu_group_get_by_id -EXPORT_SYMBOL_GPL vmlinux 0x21c28b04 pci_stop_and_remove_bus_device_locked +EXPORT_SYMBOL_GPL vmlinux 0x21b3d28a crypto_unregister_template +EXPORT_SYMBOL_GPL vmlinux 0x21b812b7 irq_gc_ack_set_bit +EXPORT_SYMBOL_GPL vmlinux 0x21c00514 crypto_type_has_alg EXPORT_SYMBOL_GPL vmlinux 0x21c34c8f gnttab_end_foreign_transfer +EXPORT_SYMBOL_GPL vmlinux 0x21c54717 inet_csk_route_child_sock EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher EXPORT_SYMBOL_GPL vmlinux 0x21ce3ed1 dev_fetch_sw_netstats -EXPORT_SYMBOL_GPL vmlinux 0x21d5dd0e kthread_park -EXPORT_SYMBOL_GPL vmlinux 0x21e98378 sock_diag_register -EXPORT_SYMBOL_GPL vmlinux 0x21f2c663 scsi_target_block -EXPORT_SYMBOL_GPL vmlinux 0x21f3638e __SCK__tp_func_pelt_se_tp -EXPORT_SYMBOL_GPL vmlinux 0x2203ad0a devlink_region_create -EXPORT_SYMBOL_GPL vmlinux 0x22076868 preempt_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0x22112fd7 sk_msg_alloc +EXPORT_SYMBOL_GPL vmlinux 0x21cee50a devm_extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0x21dfa441 inet_ctl_sock_create +EXPORT_SYMBOL_GPL vmlinux 0x21e2bda0 __iomap_dio_rw +EXPORT_SYMBOL_GPL vmlinux 0x220d1809 pci_epc_put +EXPORT_SYMBOL_GPL vmlinux 0x220dbcbb device_move EXPORT_SYMBOL_GPL vmlinux 0x2211a4c0 blk_op_str +EXPORT_SYMBOL_GPL vmlinux 0x22171bea fsnotify_init_mark +EXPORT_SYMBOL_GPL vmlinux 0x22190309 xenbus_unregister_driver EXPORT_SYMBOL_GPL vmlinux 0x221eab6d scatterwalk_copychunks -EXPORT_SYMBOL_GPL vmlinux 0x2228f5af skb_mpls_update_lse -EXPORT_SYMBOL_GPL vmlinux 0x222a02c7 encrypt_blob -EXPORT_SYMBOL_GPL vmlinux 0x2247159d __irq_set_handler -EXPORT_SYMBOL_GPL vmlinux 0x224e47b3 spi_alloc_device +EXPORT_SYMBOL_GPL vmlinux 0x22250a1b pci_generic_config_read32 +EXPORT_SYMBOL_GPL vmlinux 0x2225eacf switchdev_port_obj_add +EXPORT_SYMBOL_GPL vmlinux 0x223b397b ata_sff_pause +EXPORT_SYMBOL_GPL vmlinux 0x22433c95 tps6586x_update EXPORT_SYMBOL_GPL vmlinux 0x224f51bf nvmem_device_cell_read -EXPORT_SYMBOL_GPL vmlinux 0x2269fa57 tracing_snapshot_cond_enable -EXPORT_SYMBOL_GPL vmlinux 0x22786a40 debugfs_create_file -EXPORT_SYMBOL_GPL vmlinux 0x22882dc3 __restore_fpregs_from_fpstate -EXPORT_SYMBOL_GPL vmlinux 0x22957ab8 clk_register_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0x22a171b9 rio_get_comptag -EXPORT_SYMBOL_GPL vmlinux 0x22a465a8 usb_bulk_msg -EXPORT_SYMBOL_GPL vmlinux 0x22b5e970 d_exchange -EXPORT_SYMBOL_GPL vmlinux 0x22b73f74 __tracepoint_tcp_send_reset -EXPORT_SYMBOL_GPL vmlinux 0x22cd99df __spi_alloc_controller -EXPORT_SYMBOL_GPL vmlinux 0x22d02ee6 sata_std_hardreset -EXPORT_SYMBOL_GPL vmlinux 0x22d1a574 pinctrl_register +EXPORT_SYMBOL_GPL vmlinux 0x2253a42f pci_set_pcie_reset_state +EXPORT_SYMBOL_GPL vmlinux 0x2283dbbc __SCK__tp_func_br_fdb_add +EXPORT_SYMBOL_GPL vmlinux 0x2294d44f crypto_unregister_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x22950f56 rio_unlock_device +EXPORT_SYMBOL_GPL vmlinux 0x2297ec36 sata_link_resume +EXPORT_SYMBOL_GPL vmlinux 0x22affb81 __tracepoint_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x22b51218 spi_res_alloc +EXPORT_SYMBOL_GPL vmlinux 0x22c01402 xhci_dbg_trace +EXPORT_SYMBOL_GPL vmlinux 0x22d337e1 pinctrl_utils_reserve_map EXPORT_SYMBOL_GPL vmlinux 0x22d60537 tcf_frag_xmit_count -EXPORT_SYMBOL_GPL vmlinux 0x22d7f518 __efivar_entry_delete EXPORT_SYMBOL_GPL vmlinux 0x22d9409b iomap_sort_ioends -EXPORT_SYMBOL_GPL vmlinux 0x22d9c565 hvc_poll -EXPORT_SYMBOL_GPL vmlinux 0x22dab7ae dev_pm_opp_attach_genpd -EXPORT_SYMBOL_GPL vmlinux 0x22e9e0a6 efivar_entry_size EXPORT_SYMBOL_GPL vmlinux 0x22ec5205 cpu_latency_qos_remove_request -EXPORT_SYMBOL_GPL vmlinux 0x22f0a131 inode_sb_list_add -EXPORT_SYMBOL_GPL vmlinux 0x22f75fc0 fwnode_create_software_node +EXPORT_SYMBOL_GPL vmlinux 0x22ed25bc usb_reset_configuration +EXPORT_SYMBOL_GPL vmlinux 0x22f747ed sock_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0x22f8762f vfio_pci_core_mmap +EXPORT_SYMBOL_GPL vmlinux 0x22fbb75b devlink_port_type_ib_set EXPORT_SYMBOL_GPL vmlinux 0x22fd08ba cpuacct_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x23072f2b pcie_update_link_speed -EXPORT_SYMBOL_GPL vmlinux 0x232829a5 pci_epc_map_msi_irq -EXPORT_SYMBOL_GPL vmlinux 0x232a174e device_set_wakeup_capable -EXPORT_SYMBOL_GPL vmlinux 0x232d537b pci_aer_clear_nonfatal_status -EXPORT_SYMBOL_GPL vmlinux 0x233325b9 tps6586x_writes +EXPORT_SYMBOL_GPL vmlinux 0x23084260 __vfs_setxattr_locked +EXPORT_SYMBOL_GPL vmlinux 0x23125517 dax_supported +EXPORT_SYMBOL_GPL vmlinux 0x23140915 crypto_dequeue_request +EXPORT_SYMBOL_GPL vmlinux 0x2331cc0b vfs_write EXPORT_SYMBOL_GPL vmlinux 0x23412816 rtc_tm_to_ktime -EXPORT_SYMBOL_GPL vmlinux 0x234a7b13 usb_find_interface -EXPORT_SYMBOL_GPL vmlinux 0x234cad12 bd_prepare_to_claim EXPORT_SYMBOL_GPL vmlinux 0x234cf416 devlink_fmsg_string_pair_put -EXPORT_SYMBOL_GPL vmlinux 0x235ffcf9 device_get_dma_attr -EXPORT_SYMBOL_GPL vmlinux 0x237d78f9 fsstack_copy_inode_size +EXPORT_SYMBOL_GPL vmlinux 0x234d88a5 anon_transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x235267e7 iomap_finish_ioends +EXPORT_SYMBOL_GPL vmlinux 0x2352de98 phy_modify_changed EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node EXPORT_SYMBOL_GPL vmlinux 0x2386c0ea __SCT__tp_func_cpu_frequency -EXPORT_SYMBOL_GPL vmlinux 0x23885081 rio_add_mport_pw_handler -EXPORT_SYMBOL_GPL vmlinux 0x238a3709 handle_irq_desc -EXPORT_SYMBOL_GPL vmlinux 0x2395904e pci_epc_mem_exit +EXPORT_SYMBOL_GPL vmlinux 0x238774a3 ata_pci_device_suspend EXPORT_SYMBOL_GPL vmlinux 0x2396c7f0 clk_set_parent -EXPORT_SYMBOL_GPL vmlinux 0x239a2d6f gpiochip_enable_irq -EXPORT_SYMBOL_GPL vmlinux 0x239ebd4c vfs_write -EXPORT_SYMBOL_GPL vmlinux 0x23a68216 sk_free_unlock_clone -EXPORT_SYMBOL_GPL vmlinux 0x23b40015 nfs42_ssc_register +EXPORT_SYMBOL_GPL vmlinux 0x23a77975 __dev_change_net_namespace EXPORT_SYMBOL_GPL vmlinux 0x23b4e0d7 clear_page_rep -EXPORT_SYMBOL_GPL vmlinux 0x23d5c2e5 pci_cfg_access_lock -EXPORT_SYMBOL_GPL vmlinux 0x23d72a96 sk_msg_free_partial -EXPORT_SYMBOL_GPL vmlinux 0x23e62a8f kernfs_find_and_get_ns +EXPORT_SYMBOL_GPL vmlinux 0x23bb4ff4 acpi_get_and_request_gpiod +EXPORT_SYMBOL_GPL vmlinux 0x23bde5b4 badblocks_clear +EXPORT_SYMBOL_GPL vmlinux 0x23c400f3 pci_epc_set_msi +EXPORT_SYMBOL_GPL vmlinux 0x23c97c8f crypto_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x23d1a4f2 vp_modern_remove +EXPORT_SYMBOL_GPL vmlinux 0x23de86b7 extcon_set_state_sync +EXPORT_SYMBOL_GPL vmlinux 0x23edca3a ip6_input +EXPORT_SYMBOL_GPL vmlinux 0x23fd9a7a inet6_csk_xmit EXPORT_SYMBOL_GPL vmlinux 0x2410c338 x86_virt_spec_ctrl -EXPORT_SYMBOL_GPL vmlinux 0x241d9bff crypto_register_ahash +EXPORT_SYMBOL_GPL vmlinux 0x24142e07 key_set_timeout EXPORT_SYMBOL_GPL vmlinux 0x2421097b mpi_const -EXPORT_SYMBOL_GPL vmlinux 0x24295421 netdev_rx_handler_register -EXPORT_SYMBOL_GPL vmlinux 0x24301e5c __phy_modify_mmd_changed -EXPORT_SYMBOL_GPL vmlinux 0x24362ab3 crypto_alloc_aead -EXPORT_SYMBOL_GPL vmlinux 0x2437dedb irq_domain_create_legacy -EXPORT_SYMBOL_GPL vmlinux 0x24401f6b __udp_gso_segment -EXPORT_SYMBOL_GPL vmlinux 0x24513171 rtc_read_alarm -EXPORT_SYMBOL_GPL vmlinux 0x24544c8c devm_pm_opp_attach_genpd +EXPORT_SYMBOL_GPL vmlinux 0x24220537 task_active_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x2424f5c1 nf_ip_route +EXPORT_SYMBOL_GPL vmlinux 0x24390eba __rio_local_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x243b9253 uprobe_register_refctr +EXPORT_SYMBOL_GPL vmlinux 0x2455b2c0 rio_mport_get_physefb +EXPORT_SYMBOL_GPL vmlinux 0x245b4e7e __traceiter_pelt_irq_tp EXPORT_SYMBOL_GPL vmlinux 0x2464da17 gen_pool_size -EXPORT_SYMBOL_GPL vmlinux 0x24657925 regulator_get_mode +EXPORT_SYMBOL_GPL vmlinux 0x24660333 uart_try_toggle_sysrq +EXPORT_SYMBOL_GPL vmlinux 0x246a69d3 vfs_getxattr EXPORT_SYMBOL_GPL vmlinux 0x24709b2f trace_seq_putmem -EXPORT_SYMBOL_GPL vmlinux 0x247ef866 regulator_set_voltage_time +EXPORT_SYMBOL_GPL vmlinux 0x247582bf regmap_mmio_attach_clk +EXPORT_SYMBOL_GPL vmlinux 0x24781936 register_acpi_bus_type EXPORT_SYMBOL_GPL vmlinux 0x2484e789 vbin_printf -EXPORT_SYMBOL_GPL vmlinux 0x248b674f spi_take_timestamp_pre +EXPORT_SYMBOL_GPL vmlinux 0x24856ce9 driver_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x2488bbc9 sysfs_create_bin_file EXPORT_SYMBOL_GPL vmlinux 0x248bc867 raw_notifier_call_chain_robust EXPORT_SYMBOL_GPL vmlinux 0x248e1473 kfree_strarray -EXPORT_SYMBOL_GPL vmlinux 0x2491029d wbc_attach_and_unlock_inode -EXPORT_SYMBOL_GPL vmlinux 0x249fd392 tcp_sendpage_locked +EXPORT_SYMBOL_GPL vmlinux 0x2496e8a2 crypto_unregister_ahash +EXPORT_SYMBOL_GPL vmlinux 0x24a1fed0 report_iommu_fault EXPORT_SYMBOL_GPL vmlinux 0x24ad11db wakeup_sources_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0x24b4f8d5 fwnode_graph_get_remote_port_parent -EXPORT_SYMBOL_GPL vmlinux 0x24bba54b ptp_parse_header -EXPORT_SYMBOL_GPL vmlinux 0x24d22869 tty_ldisc_receive_buf -EXPORT_SYMBOL_GPL vmlinux 0x24d9672c security_path_chmod +EXPORT_SYMBOL_GPL vmlinux 0x24bca9ec component_add_typed +EXPORT_SYMBOL_GPL vmlinux 0x24c2dbfe devm_nvmem_device_get +EXPORT_SYMBOL_GPL vmlinux 0x24c94dde __tracepoint_pelt_dl_tp +EXPORT_SYMBOL_GPL vmlinux 0x24c9dd97 regmap_get_val_bytes +EXPORT_SYMBOL_GPL vmlinux 0x24d22f98 __clk_get_hw EXPORT_SYMBOL_GPL vmlinux 0x24da0093 rcu_inkernel_boot_has_ended -EXPORT_SYMBOL_GPL vmlinux 0x24e36db9 tpm_tis_remove -EXPORT_SYMBOL_GPL vmlinux 0x24e9f0a5 tpm_pm_resume +EXPORT_SYMBOL_GPL vmlinux 0x24dc0c04 xhci_gen_setup +EXPORT_SYMBOL_GPL vmlinux 0x24e5b047 sysfs_notify +EXPORT_SYMBOL_GPL vmlinux 0x24e8f7d4 __blkg_prfill_u64 EXPORT_SYMBOL_GPL vmlinux 0x24eb7e32 leds_list EXPORT_SYMBOL_GPL vmlinux 0x24f39c39 reset_control_reset EXPORT_SYMBOL_GPL vmlinux 0x24f63dcf ata_xfer_mask2mode EXPORT_SYMBOL_GPL vmlinux 0x24fc50f4 kdb_unregister -EXPORT_SYMBOL_GPL vmlinux 0x24ff14f0 da903x_update -EXPORT_SYMBOL_GPL vmlinux 0x25027e0e ata_bmdma_qc_issue -EXPORT_SYMBOL_GPL vmlinux 0x2508c12d regmap_add_irq_chip_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x251e542c __traceiter_tcp_send_reset +EXPORT_SYMBOL_GPL vmlinux 0x250925c3 sata_scr_write_flush +EXPORT_SYMBOL_GPL vmlinux 0x2518ae4a __tracepoint_sched_overutilized_tp +EXPORT_SYMBOL_GPL vmlinux 0x25191c76 platform_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0x252c7614 regulator_get_current_limit_regmap EXPORT_SYMBOL_GPL vmlinux 0x25301bc6 arch_wb_cache_pmem +EXPORT_SYMBOL_GPL vmlinux 0x2532ad03 devm_nvdimm_memremap EXPORT_SYMBOL_GPL vmlinux 0x25379e73 clk_set_min_rate -EXPORT_SYMBOL_GPL vmlinux 0x2548b3df rio_release_inb_pwrite -EXPORT_SYMBOL_GPL vmlinux 0x25699c35 platform_add_devices -EXPORT_SYMBOL_GPL vmlinux 0x257e0ac9 pm_clk_add_clk -EXPORT_SYMBOL_GPL vmlinux 0x25840666 mmu_notifier_put -EXPORT_SYMBOL_GPL vmlinux 0x258c21ad devm_memunmap_pages -EXPORT_SYMBOL_GPL vmlinux 0x258cdc8e i2c_recover_bus +EXPORT_SYMBOL_GPL vmlinux 0x254208b0 devm_usb_get_phy_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x254614c7 pcc_mbox_free_channel +EXPORT_SYMBOL_GPL vmlinux 0x255ec22f __irq_domain_add +EXPORT_SYMBOL_GPL vmlinux 0x256b1f35 __strp_unpause +EXPORT_SYMBOL_GPL vmlinux 0x2589e79c call_switchdev_notifiers EXPORT_SYMBOL_GPL vmlinux 0x2592fc6c console_printk -EXPORT_SYMBOL_GPL vmlinux 0x25a1c7c0 fwnode_get_named_child_node -EXPORT_SYMBOL_GPL vmlinux 0x25a4dc72 request_firmware_direct -EXPORT_SYMBOL_GPL vmlinux 0x25b1aa37 devm_pinctrl_register EXPORT_SYMBOL_GPL vmlinux 0x25bbfa9a security_kernel_load_data -EXPORT_SYMBOL_GPL vmlinux 0x25c74cc9 mptcp_subflow_request_sock_ops -EXPORT_SYMBOL_GPL vmlinux 0x25d94ffa tty_mode_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x25db28cf __xdp_build_skb_from_frame -EXPORT_SYMBOL_GPL vmlinux 0x25e3e5bf rtnl_af_register -EXPORT_SYMBOL_GPL vmlinux 0x25efeff2 sched_trace_cfs_rq_avg +EXPORT_SYMBOL_GPL vmlinux 0x25c6dec9 __put_net +EXPORT_SYMBOL_GPL vmlinux 0x25c9aa78 fuse_dev_alloc_install EXPORT_SYMBOL_GPL vmlinux 0x25f02c87 xen_p2m_addr -EXPORT_SYMBOL_GPL vmlinux 0x25f6cb92 irq_domain_pop_irq -EXPORT_SYMBOL_GPL vmlinux 0x26008202 perf_event_create_kernel_counter -EXPORT_SYMBOL_GPL vmlinux 0x261600ef serdev_device_add -EXPORT_SYMBOL_GPL vmlinux 0x26210ed5 bpf_trace_run3 -EXPORT_SYMBOL_GPL vmlinux 0x2622ac12 power_supply_class -EXPORT_SYMBOL_GPL vmlinux 0x2628d3fb crypto_unregister_rngs +EXPORT_SYMBOL_GPL vmlinux 0x25f76e9e tty_port_register_device +EXPORT_SYMBOL_GPL vmlinux 0x26268c13 inet_csk_reqsk_queue_hash_add EXPORT_SYMBOL_GPL vmlinux 0x262a7063 xen_start_info -EXPORT_SYMBOL_GPL vmlinux 0x263093d0 device_show_int -EXPORT_SYMBOL_GPL vmlinux 0x2635103b to_nd_blk_region +EXPORT_SYMBOL_GPL vmlinux 0x262d9250 dma_buf_get +EXPORT_SYMBOL_GPL vmlinux 0x26315425 dev_pm_opp_find_freq_ceil EXPORT_SYMBOL_GPL vmlinux 0x263f039e xas_nomem -EXPORT_SYMBOL_GPL vmlinux 0x264534f1 dev_pm_genpd_set_performance_state +EXPORT_SYMBOL_GPL vmlinux 0x263f7f8e make_device_exclusive_range EXPORT_SYMBOL_GPL vmlinux 0x26520970 vm_memory_committed +EXPORT_SYMBOL_GPL vmlinux 0x26559269 rio_release_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x2655ce2f pm_clk_remove_clk EXPORT_SYMBOL_GPL vmlinux 0x265b6e29 hyperv_flush_guest_mapping_range EXPORT_SYMBOL_GPL vmlinux 0x265bbef9 kexec_crash_loaded EXPORT_SYMBOL_GPL vmlinux 0x266a4b08 tasklet_unlock -EXPORT_SYMBOL_GPL vmlinux 0x266b20fb crypto_spawn_tfm -EXPORT_SYMBOL_GPL vmlinux 0x266bb5b0 __vring_new_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0x26741a0a pm_wakeup_ws_event +EXPORT_SYMBOL_GPL vmlinux 0x266b6f14 pci_add_dynid +EXPORT_SYMBOL_GPL vmlinux 0x267480d9 scsi_queue_work EXPORT_SYMBOL_GPL vmlinux 0x267df662 smp_call_on_cpu -EXPORT_SYMBOL_GPL vmlinux 0x268d2061 i2c_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x26a51ec2 bpf_sk_storage_diag_put +EXPORT_SYMBOL_GPL vmlinux 0x268fac7c of_pm_clk_add_clks +EXPORT_SYMBOL_GPL vmlinux 0x269b2eb2 sdio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x26a6c060 netdev_is_rx_handler_busy EXPORT_SYMBOL_GPL vmlinux 0x26a93eb2 verify_pkcs7_signature -EXPORT_SYMBOL_GPL vmlinux 0x26a98ee9 is_dock_device EXPORT_SYMBOL_GPL vmlinux 0x26ab4755 put_old_itimerspec32 -EXPORT_SYMBOL_GPL vmlinux 0x26c19409 aead_exit_geniv +EXPORT_SYMBOL_GPL vmlinux 0x26b620a2 usb_get_descriptor +EXPORT_SYMBOL_GPL vmlinux 0x26c35f51 mmput EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense EXPORT_SYMBOL_GPL vmlinux 0x26cda94f e820__mapped_raw_any -EXPORT_SYMBOL_GPL vmlinux 0x26cdf77e dma_buf_dynamic_attach -EXPORT_SYMBOL_GPL vmlinux 0x26cff952 crypto_register_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x26ce4837 ehci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x26d2cadf pci_disable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0x26d6d4af sdio_readsb +EXPORT_SYMBOL_GPL vmlinux 0x26e87e96 devlink_port_type_eth_set EXPORT_SYMBOL_GPL vmlinux 0x26ed2186 register_vmap_purge_notifier -EXPORT_SYMBOL_GPL vmlinux 0x26f80776 pci_find_next_ht_capability -EXPORT_SYMBOL_GPL vmlinux 0x26faef22 tpm2_get_tpm_pt +EXPORT_SYMBOL_GPL vmlinux 0x26edff79 vfio_pci_core_finish_enable EXPORT_SYMBOL_GPL vmlinux 0x26fd13e7 smca_banks -EXPORT_SYMBOL_GPL vmlinux 0x26ff20b5 sata_scr_write -EXPORT_SYMBOL_GPL vmlinux 0x2705ea80 ata_scsi_port_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x271848a1 dma_need_sync -EXPORT_SYMBOL_GPL vmlinux 0x272bb54e ata_ehi_push_desc -EXPORT_SYMBOL_GPL vmlinux 0x2733ea22 iommu_map +EXPORT_SYMBOL_GPL vmlinux 0x26fe5e5d __pm_runtime_set_status +EXPORT_SYMBOL_GPL vmlinux 0x2702b3f8 devlink_param_driverinit_value_set +EXPORT_SYMBOL_GPL vmlinux 0x27106679 dev_pm_domain_start +EXPORT_SYMBOL_GPL vmlinux 0x2710737b ata_sff_freeze +EXPORT_SYMBOL_GPL vmlinux 0x2732fe0f intel_pinctrl_probe_by_hid EXPORT_SYMBOL_GPL vmlinux 0x273aab74 xen_have_vector_callback EXPORT_SYMBOL_GPL vmlinux 0x273aff5c __SCT__tp_func_block_bio_remap -EXPORT_SYMBOL_GPL vmlinux 0x273f0356 inet6_hash_connect -EXPORT_SYMBOL_GPL vmlinux 0x274dc03b acpi_register_gsi +EXPORT_SYMBOL_GPL vmlinux 0x273bed01 hwspin_lock_request_specific +EXPORT_SYMBOL_GPL vmlinux 0x27455082 dev_pm_opp_get_opp_count +EXPORT_SYMBOL_GPL vmlinux 0x274d20fa clk_hw_register_fixed_factor EXPORT_SYMBOL_GPL vmlinux 0x274dd1a3 sg_free_table_chained -EXPORT_SYMBOL_GPL vmlinux 0x27540565 pci_enable_sriov -EXPORT_SYMBOL_GPL vmlinux 0x27723bdb devm_namespace_disable +EXPORT_SYMBOL_GPL vmlinux 0x27619328 irq_domain_translate_twocell EXPORT_SYMBOL_GPL vmlinux 0x2773c485 __wake_up_locked -EXPORT_SYMBOL_GPL vmlinux 0x277697ab serdev_device_get_tiocm -EXPORT_SYMBOL_GPL vmlinux 0x279764b7 __devm_of_phy_provider_register -EXPORT_SYMBOL_GPL vmlinux 0x279f74d3 n_tty_inherit_ops -EXPORT_SYMBOL_GPL vmlinux 0x27a7c24c usb_urb_ep_type_check -EXPORT_SYMBOL_GPL vmlinux 0x27b1b787 shash_ahash_digest -EXPORT_SYMBOL_GPL vmlinux 0x27cbfacc device_wakeup_disable -EXPORT_SYMBOL_GPL vmlinux 0x27cf4c89 fw_devlink_purge_absent_suppliers -EXPORT_SYMBOL_GPL vmlinux 0x27de1dc0 mmc_get_ext_csd -EXPORT_SYMBOL_GPL vmlinux 0x27df7401 usb_hub_claim_port -EXPORT_SYMBOL_GPL vmlinux 0x27e3e4cf trace_array_destroy -EXPORT_SYMBOL_GPL vmlinux 0x27e7c7a2 __devm_clk_hw_register_mux -EXPORT_SYMBOL_GPL vmlinux 0x27f01df9 synth_event_trace_end -EXPORT_SYMBOL_GPL vmlinux 0x27f42413 gpiod_get_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x2773e2a5 xfrm_audit_state_notfound +EXPORT_SYMBOL_GPL vmlinux 0x27768d1b blk_mq_debugfs_rq_show +EXPORT_SYMBOL_GPL vmlinux 0x277a1de1 pm_genpd_remove_subdomain +EXPORT_SYMBOL_GPL vmlinux 0x2784a425 ipv6_opt_accepted +EXPORT_SYMBOL_GPL vmlinux 0x2796a887 pci_epc_destroy +EXPORT_SYMBOL_GPL vmlinux 0x27a02e41 da903x_read +EXPORT_SYMBOL_GPL vmlinux 0x27a6ff93 dma_buf_put +EXPORT_SYMBOL_GPL vmlinux 0x27b9d467 trace_event_ignore_this_pid +EXPORT_SYMBOL_GPL vmlinux 0x27bf566b dev_pm_genpd_remove_notifier EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter EXPORT_SYMBOL_GPL vmlinux 0x27fa66e1 nr_free_buffer_pages -EXPORT_SYMBOL_GPL vmlinux 0x28066918 __traceiter_sched_util_est_se_tp -EXPORT_SYMBOL_GPL vmlinux 0x280797f9 fsnotify_alloc_group -EXPORT_SYMBOL_GPL vmlinux 0x2808b8e1 rio_mport_read_config_8 -EXPORT_SYMBOL_GPL vmlinux 0x28156c82 access_process_vm +EXPORT_SYMBOL_GPL vmlinux 0x28061861 kgdb_register_io_module +EXPORT_SYMBOL_GPL vmlinux 0x280a36bf iommu_group_add_device EXPORT_SYMBOL_GPL vmlinux 0x2817f7fd cppc_get_desired_perf -EXPORT_SYMBOL_GPL vmlinux 0x2818b970 __tracepoint_cpu_idle -EXPORT_SYMBOL_GPL vmlinux 0x282c7278 gnttab_free_pages EXPORT_SYMBOL_GPL vmlinux 0x282cdabc usb_led_activity -EXPORT_SYMBOL_GPL vmlinux 0x2846f2d7 pci_load_saved_state -EXPORT_SYMBOL_GPL vmlinux 0x284bc30d sata_link_debounce -EXPORT_SYMBOL_GPL vmlinux 0x284db5a4 devm_gpiod_put_array -EXPORT_SYMBOL_GPL vmlinux 0x285a6874 gpiod_get_index_optional -EXPORT_SYMBOL_GPL vmlinux 0x2861fba9 mddev_suspend -EXPORT_SYMBOL_GPL vmlinux 0x2862338a udp_bpf_update_proto +EXPORT_SYMBOL_GPL vmlinux 0x282e0569 rio_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x283b49c4 iommu_domain_free +EXPORT_SYMBOL_GPL vmlinux 0x283da63e metadata_dst_alloc_percpu EXPORT_SYMBOL_GPL vmlinux 0x2864abc9 klist_node_attached EXPORT_SYMBOL_GPL vmlinux 0x286cc647 async_synchronize_cookie_domain -EXPORT_SYMBOL_GPL vmlinux 0x28773dd3 sfp_bus_find_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x287a743e bpf_trace_run9 +EXPORT_SYMBOL_GPL vmlinux 0x286d1468 sched_trace_rq_cpu_capacity +EXPORT_SYMBOL_GPL vmlinux 0x28818ec0 dma_run_dependencies EXPORT_SYMBOL_GPL vmlinux 0x2882d40e usb_role_switch_unregister -EXPORT_SYMBOL_GPL vmlinux 0x28a885d0 pm_generic_freeze_noirq +EXPORT_SYMBOL_GPL vmlinux 0x28916151 usb_string EXPORT_SYMBOL_GPL vmlinux 0x28aa6a67 call_rcu EXPORT_SYMBOL_GPL vmlinux 0x28ab4fb9 pinctrl_gpio_free +EXPORT_SYMBOL_GPL vmlinux 0x28af9a16 __tracepoint_rpm_return_int EXPORT_SYMBOL_GPL vmlinux 0x28afbb08 cpu_latency_qos_add_request -EXPORT_SYMBOL_GPL vmlinux 0x28b1e5de cpufreq_driver_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0x28bcbb66 icc_std_aggregate EXPORT_SYMBOL_GPL vmlinux 0x28be0cef misc_cg_res_total_usage -EXPORT_SYMBOL_GPL vmlinux 0x28bf6cf2 devm_regmap_field_bulk_alloc -EXPORT_SYMBOL_GPL vmlinux 0x28d0194a crypto_skcipher_setkey -EXPORT_SYMBOL_GPL vmlinux 0x28db82ae dmaengine_desc_get_metadata_ptr -EXPORT_SYMBOL_GPL vmlinux 0x28df34f3 blk_queue_flag_test_and_set EXPORT_SYMBOL_GPL vmlinux 0x28e64c64 xen_has_pv_and_legacy_disk_devices -EXPORT_SYMBOL_GPL vmlinux 0x28f02b33 tpm_chip_unregister -EXPORT_SYMBOL_GPL vmlinux 0x28faf055 devlink_port_health_reporter_create -EXPORT_SYMBOL_GPL vmlinux 0x28fb83bd handle_simple_irq -EXPORT_SYMBOL_GPL vmlinux 0x28fcebe6 devm_gpiod_get_array_optional -EXPORT_SYMBOL_GPL vmlinux 0x2905c984 __pm_runtime_use_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0x29127212 device_link_del -EXPORT_SYMBOL_GPL vmlinux 0x29164369 tps6586x_clr_bits -EXPORT_SYMBOL_GPL vmlinux 0x29176c23 usb_phy_get_charger_current +EXPORT_SYMBOL_GPL vmlinux 0x28eed335 vma_kernel_pagesize +EXPORT_SYMBOL_GPL vmlinux 0x28fb1266 hwmon_device_register EXPORT_SYMBOL_GPL vmlinux 0x291876f3 mpi_ec_get_affine -EXPORT_SYMBOL_GPL vmlinux 0x291bc6db usb_create_hcd -EXPORT_SYMBOL_GPL vmlinux 0x2928bdad usb_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x291e4ce4 phy_reset EXPORT_SYMBOL_GPL vmlinux 0x29366b61 register_ftrace_direct -EXPORT_SYMBOL_GPL vmlinux 0x2944ba48 device_change_owner EXPORT_SYMBOL_GPL vmlinux 0x2951a872 trace_clock_local -EXPORT_SYMBOL_GPL vmlinux 0x29551bd1 regulator_bulk_disable -EXPORT_SYMBOL_GPL vmlinux 0x295d989e cpufreq_cpu_get -EXPORT_SYMBOL_GPL vmlinux 0x2960b7fb dst_cache_set_ip4 -EXPORT_SYMBOL_GPL vmlinux 0x2971ba7c ohci_init_driver -EXPORT_SYMBOL_GPL vmlinux 0x29865632 regmap_get_raw_write_max -EXPORT_SYMBOL_GPL vmlinux 0x2987db3c usb_kill_urb -EXPORT_SYMBOL_GPL vmlinux 0x298ba3e8 pci_walk_bus -EXPORT_SYMBOL_GPL vmlinux 0x2994e939 transport_destroy_device -EXPORT_SYMBOL_GPL vmlinux 0x2997cb78 dev_pm_clear_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0x2997cf1b iomap_seek_data -EXPORT_SYMBOL_GPL vmlinux 0x29a73394 usb_deregister -EXPORT_SYMBOL_GPL vmlinux 0x29b83fb7 clk_hw_get_parent -EXPORT_SYMBOL_GPL vmlinux 0x29bf9871 phy_set_speed -EXPORT_SYMBOL_GPL vmlinux 0x29bfce4f dw_pcie_upconfig_setup -EXPORT_SYMBOL_GPL vmlinux 0x29c9e454 debugfs_create_x16 -EXPORT_SYMBOL_GPL vmlinux 0x29d98098 __inode_attach_wb -EXPORT_SYMBOL_GPL vmlinux 0x29e3f16a devlink_sb_unregister +EXPORT_SYMBOL_GPL vmlinux 0x29525eae virtio_device_freeze +EXPORT_SYMBOL_GPL vmlinux 0x295f25a9 perf_pmu_register +EXPORT_SYMBOL_GPL vmlinux 0x29642e86 nd_blk_memremap_flags +EXPORT_SYMBOL_GPL vmlinux 0x297ad24b spi_mem_dirmap_write +EXPORT_SYMBOL_GPL vmlinux 0x2982353b gnttab_unmap_refs_async +EXPORT_SYMBOL_GPL vmlinux 0x29841370 cpufreq_freq_transition_begin +EXPORT_SYMBOL_GPL vmlinux 0x29853fa0 lp8788_write_byte +EXPORT_SYMBOL_GPL vmlinux 0x2989a263 __rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0x2990c5ad ping_get_port +EXPORT_SYMBOL_GPL vmlinux 0x29abe5a1 devfreq_event_reset_event +EXPORT_SYMBOL_GPL vmlinux 0x29addfd4 dma_get_any_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x29aed7de power_supply_changed +EXPORT_SYMBOL_GPL vmlinux 0x29b1534a wm831x_auxadc_read_uv +EXPORT_SYMBOL_GPL vmlinux 0x29b6d1fe pinctrl_register +EXPORT_SYMBOL_GPL vmlinux 0x29b6f2b1 pci_walk_bus +EXPORT_SYMBOL_GPL vmlinux 0x29c1aca6 usb_phy_roothub_resume +EXPORT_SYMBOL_GPL vmlinux 0x29e196a3 tcpv6_prot EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async -EXPORT_SYMBOL_GPL vmlinux 0x29f184c2 gpiod_export -EXPORT_SYMBOL_GPL vmlinux 0x29f1a5c7 i2c_acpi_new_device -EXPORT_SYMBOL_GPL vmlinux 0x29f23517 crypto_shash_update -EXPORT_SYMBOL_GPL vmlinux 0x29f4e9c8 __traceiter_block_split -EXPORT_SYMBOL_GPL vmlinux 0x2a0aa5b4 smp_ops -EXPORT_SYMBOL_GPL vmlinux 0x2a0e8737 md_start -EXPORT_SYMBOL_GPL vmlinux 0x2a10a4d2 __tracepoint_neigh_event_send_dead -EXPORT_SYMBOL_GPL vmlinux 0x2a13a9de usb_enable_ltm -EXPORT_SYMBOL_GPL vmlinux 0x2a1c63ae iommu_setup_dma_ops +EXPORT_SYMBOL_GPL vmlinux 0x29efc24a do_unregister_con_driver +EXPORT_SYMBOL_GPL vmlinux 0x29fd7114 mctrl_gpio_free +EXPORT_SYMBOL_GPL vmlinux 0x2a034e1a usb_block_urb +EXPORT_SYMBOL_GPL vmlinux 0x2a0c76f2 tps6586x_get_version +EXPORT_SYMBOL_GPL vmlinux 0x2a118afb __phy_modify_mmd_changed +EXPORT_SYMBOL_GPL vmlinux 0x2a29a7b5 regulator_get_bypass_regmap EXPORT_SYMBOL_GPL vmlinux 0x2a2aea17 clk_fixed_rate_ops -EXPORT_SYMBOL_GPL vmlinux 0x2a3308a6 gpiod_put_array -EXPORT_SYMBOL_GPL vmlinux 0x2a424e81 simple_attr_write +EXPORT_SYMBOL_GPL vmlinux 0x2a3b8ae0 __clk_mux_determine_rate_closest +EXPORT_SYMBOL_GPL vmlinux 0x2a48ec68 hvc_alloc +EXPORT_SYMBOL_GPL vmlinux 0x2a5b78ed udp_init_sock EXPORT_SYMBOL_GPL vmlinux 0x2a5ea9ef rhashtable_destroy EXPORT_SYMBOL_GPL vmlinux 0x2a62cb3a ring_buffer_overrun_cpu EXPORT_SYMBOL_GPL vmlinux 0x2a678a13 __suspend_report_result -EXPORT_SYMBOL_GPL vmlinux 0x2a7c7b93 wm8350_device_init -EXPORT_SYMBOL_GPL vmlinux 0x2a82ec23 devlink_param_publish +EXPORT_SYMBOL_GPL vmlinux 0x2a6d2c21 rio_release_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x2a792c71 __ip6_local_out EXPORT_SYMBOL_GPL vmlinux 0x2a8af55a acpi_ec_add_query_handler -EXPORT_SYMBOL_GPL vmlinux 0x2a92a5e6 nvdimm_has_flush -EXPORT_SYMBOL_GPL vmlinux 0x2a939ed0 platform_device_register_full -EXPORT_SYMBOL_GPL vmlinux 0x2a99c183 nvmem_cell_get -EXPORT_SYMBOL_GPL vmlinux 0x2aa45676 inet_hash -EXPORT_SYMBOL_GPL vmlinux 0x2aabb2d2 pci_disable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0x2a956466 blk_queue_zone_write_granularity +EXPORT_SYMBOL_GPL vmlinux 0x2aa69dff dma_buf_begin_cpu_access EXPORT_SYMBOL_GPL vmlinux 0x2aadad1a efi_capsule_update -EXPORT_SYMBOL_GPL vmlinux 0x2af64d21 cpufreq_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x2af685ab ata_sff_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0x2ab55e2e syscon_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0x2ad31def usb_submit_urb +EXPORT_SYMBOL_GPL vmlinux 0x2ae51e1c debugfs_create_blob +EXPORT_SYMBOL_GPL vmlinux 0x2afb7db5 blk_mq_free_request EXPORT_SYMBOL_GPL vmlinux 0x2aff68f9 perf_guest_get_msrs -EXPORT_SYMBOL_GPL vmlinux 0x2aff8fb2 debugfs_create_size_t -EXPORT_SYMBOL_GPL vmlinux 0x2b033730 xdp_rxq_info_is_reg EXPORT_SYMBOL_GPL vmlinux 0x2b0765ca xen_store_interface -EXPORT_SYMBOL_GPL vmlinux 0x2b0cb8c6 debugfs_write_file_bool +EXPORT_SYMBOL_GPL vmlinux 0x2b0ea2e2 security_inode_mkdir EXPORT_SYMBOL_GPL vmlinux 0x2b0fe000 gnttab_cancel_free_callback -EXPORT_SYMBOL_GPL vmlinux 0x2b18dbc2 lp8788_update_bits -EXPORT_SYMBOL_GPL vmlinux 0x2b33bad0 of_css -EXPORT_SYMBOL_GPL vmlinux 0x2b3815e0 __sock_recv_wifi_status +EXPORT_SYMBOL_GPL vmlinux 0x2b1f45c0 nfs42_ssc_register +EXPORT_SYMBOL_GPL vmlinux 0x2b2bd200 platform_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2b32287d pci_test_config_bits +EXPORT_SYMBOL_GPL vmlinux 0x2b334e01 __page_file_index EXPORT_SYMBOL_GPL vmlinux 0x2b3acc3b __SCT__tp_func_remove_device_from_group -EXPORT_SYMBOL_GPL vmlinux 0x2b3aeda5 netlink_has_listeners EXPORT_SYMBOL_GPL vmlinux 0x2b4509dd devlink_health_reporter_state_update -EXPORT_SYMBOL_GPL vmlinux 0x2b4e08ac devm_device_remove_groups -EXPORT_SYMBOL_GPL vmlinux 0x2b5b2cdc vma_kernel_pagesize +EXPORT_SYMBOL_GPL vmlinux 0x2b4b3901 serial8250_rx_dma_flush +EXPORT_SYMBOL_GPL vmlinux 0x2b52370b ata_sas_sync_probe +EXPORT_SYMBOL_GPL vmlinux 0x2b57054f xenbus_dev_resume EXPORT_SYMBOL_GPL vmlinux 0x2b6150fb power_supply_temp2resist_simple EXPORT_SYMBOL_GPL vmlinux 0x2b67b6b7 mds_idle_clear EXPORT_SYMBOL_GPL vmlinux 0x2b6d960d synth_event_cmd_init -EXPORT_SYMBOL_GPL vmlinux 0x2b6dfbc8 tps6586x_write +EXPORT_SYMBOL_GPL vmlinux 0x2b6fbc2e devfreq_event_is_enabled EXPORT_SYMBOL_GPL vmlinux 0x2b7fc385 hv_init_clocksource -EXPORT_SYMBOL_GPL vmlinux 0x2b804fe0 watchdog_init_timeout -EXPORT_SYMBOL_GPL vmlinux 0x2b89db2b devlink_param_unpublish -EXPORT_SYMBOL_GPL vmlinux 0x2b8fa488 xhci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x2b8c1c21 led_set_brightness_nopm +EXPORT_SYMBOL_GPL vmlinux 0x2b9220cd ata_sff_wait_after_reset EXPORT_SYMBOL_GPL vmlinux 0x2b952517 clk_has_parent EXPORT_SYMBOL_GPL vmlinux 0x2b9997fb atomic_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0x2ba7e6cc crypto_shash_digest -EXPORT_SYMBOL_GPL vmlinux 0x2bab5497 class_dev_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0x2bbe4f0d sock_diag_save_cookie -EXPORT_SYMBOL_GPL vmlinux 0x2be37c7e unregister_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x2be56483 mmu_interval_read_begin -EXPORT_SYMBOL_GPL vmlinux 0x2bf1e37b usb_get_dr_mode -EXPORT_SYMBOL_GPL vmlinux 0x2bf213c4 alloc_dax_region -EXPORT_SYMBOL_GPL vmlinux 0x2bf3a085 gpiod_toggle_active_low -EXPORT_SYMBOL_GPL vmlinux 0x2c036eb0 pinctrl_select_state -EXPORT_SYMBOL_GPL vmlinux 0x2c1fb34b fuse_abort_conn +EXPORT_SYMBOL_GPL vmlinux 0x2be56056 vchan_tx_desc_free +EXPORT_SYMBOL_GPL vmlinux 0x2bfdfd7c blkcg_policy_register EXPORT_SYMBOL_GPL vmlinux 0x2c208607 power_supply_is_system_supplied -EXPORT_SYMBOL_GPL vmlinux 0x2c21ed5f devm_of_led_get -EXPORT_SYMBOL_GPL vmlinux 0x2c2ab82e clockevents_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0x2c2ad9ce cpu_subsys EXPORT_SYMBOL_GPL vmlinux 0x2c2f5a09 x86_family EXPORT_SYMBOL_GPL vmlinux 0x2c3054f9 net_inc_ingress_queue -EXPORT_SYMBOL_GPL vmlinux 0x2c3a462a __SCK__tp_func_neigh_cleanup_and_release -EXPORT_SYMBOL_GPL vmlinux 0x2c483559 serial8250_rx_dma_flush -EXPORT_SYMBOL_GPL vmlinux 0x2c4fccfc fib_rules_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2c3a142d crypto_stats_akcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x2c48134a pci_probe_reset_bus EXPORT_SYMBOL_GPL vmlinux 0x2c61bb09 uv_bios_get_pci_topology +EXPORT_SYMBOL_GPL vmlinux 0x2c6280c3 dev_pm_qos_hide_latency_limit EXPORT_SYMBOL_GPL vmlinux 0x2c635527 arch_invalidate_pmem EXPORT_SYMBOL_GPL vmlinux 0x2c66ac85 devlink_info_serial_number_put -EXPORT_SYMBOL_GPL vmlinux 0x2c77a37b xfrm_register_translator +EXPORT_SYMBOL_GPL vmlinux 0x2c69dcd9 pci_epc_mem_alloc_addr +EXPORT_SYMBOL_GPL vmlinux 0x2c78e66a blk_ksm_reprogram_all_keys EXPORT_SYMBOL_GPL vmlinux 0x2c7c79ce srcu_torture_stats_print EXPORT_SYMBOL_GPL vmlinux 0x2c7db649 irq_dispose_mapping +EXPORT_SYMBOL_GPL vmlinux 0x2c7ffeb6 acpi_initialize_hp_context EXPORT_SYMBOL_GPL vmlinux 0x2c8dd6b8 edac_mem_types -EXPORT_SYMBOL_GPL vmlinux 0x2c91ed33 fib_rules_register -EXPORT_SYMBOL_GPL vmlinux 0x2c980d1a xenbus_register_driver_common -EXPORT_SYMBOL_GPL vmlinux 0x2ca00640 ima_file_check +EXPORT_SYMBOL_GPL vmlinux 0x2ca2c7e3 usb_hcd_link_urb_to_ep EXPORT_SYMBOL_GPL vmlinux 0x2ca41024 ioasid_get -EXPORT_SYMBOL_GPL vmlinux 0x2cc34eca genphy_c45_read_lpa -EXPORT_SYMBOL_GPL vmlinux 0x2cc6d3b0 fscrypt_symlink_getattr -EXPORT_SYMBOL_GPL vmlinux 0x2cc760ab fixup_user_fault -EXPORT_SYMBOL_GPL vmlinux 0x2cdc59a5 usb_hc_died -EXPORT_SYMBOL_GPL vmlinux 0x2ce860d9 gpiod_set_value +EXPORT_SYMBOL_GPL vmlinux 0x2ca5ce34 add_page_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x2caee8a7 pfn_to_online_page +EXPORT_SYMBOL_GPL vmlinux 0x2cbf91e8 security_path_chown +EXPORT_SYMBOL_GPL vmlinux 0x2cc43d9d perf_event_period +EXPORT_SYMBOL_GPL vmlinux 0x2cc5ccc5 devm_acpi_dev_remove_driver_gpios +EXPORT_SYMBOL_GPL vmlinux 0x2cc82802 crypto_register_rngs +EXPORT_SYMBOL_GPL vmlinux 0x2cc86fc8 driver_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x2ce18152 __clk_mux_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0x2ce22cba dev_pm_genpd_suspend +EXPORT_SYMBOL_GPL vmlinux 0x2ce48c8a ata_sas_tport_delete EXPORT_SYMBOL_GPL vmlinux 0x2cea32ee unregister_oldmem_pfn_is_ram -EXPORT_SYMBOL_GPL vmlinux 0x2cf12e58 power_supply_put EXPORT_SYMBOL_GPL vmlinux 0x2cfbb2b5 __SCT__tp_func_pelt_dl_tp -EXPORT_SYMBOL_GPL vmlinux 0x2cffdf13 xenbus_dev_remove EXPORT_SYMBOL_GPL vmlinux 0x2d0684a9 hrtimer_init -EXPORT_SYMBOL_GPL vmlinux 0x2d14092e wm831x_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x2d175249 generic_access_phys +EXPORT_SYMBOL_GPL vmlinux 0x2d18c4ff nvmem_device_get EXPORT_SYMBOL_GPL vmlinux 0x2d1b02d2 usermodehelper_read_lock_wait -EXPORT_SYMBOL_GPL vmlinux 0x2d1cb838 account_locked_vm -EXPORT_SYMBOL_GPL vmlinux 0x2d2c8d3a i2c_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x2d25fa93 clk_gate_restore_context EXPORT_SYMBOL_GPL vmlinux 0x2d2dd36f kobj_ns_grab_current -EXPORT_SYMBOL_GPL vmlinux 0x2d333e8f fat_detach +EXPORT_SYMBOL_GPL vmlinux 0x2d2fdfdc sysfs_add_file_to_group EXPORT_SYMBOL_GPL vmlinux 0x2d393f48 intel_soc_pmic_exec_mipi_pmic_seq_element EXPORT_SYMBOL_GPL vmlinux 0x2d41e6f5 __trace_puts EXPORT_SYMBOL_GPL vmlinux 0x2d44be3b __SCT__tp_func_br_fdb_add -EXPORT_SYMBOL_GPL vmlinux 0x2d4b37f7 pm_clk_remove -EXPORT_SYMBOL_GPL vmlinux 0x2d583081 rio_mport_write_config_8 -EXPORT_SYMBOL_GPL vmlinux 0x2d5bf205 extcon_set_property +EXPORT_SYMBOL_GPL vmlinux 0x2d491e9c pci_device_group +EXPORT_SYMBOL_GPL vmlinux 0x2d5cc4a7 iommu_fwspec_free EXPORT_SYMBOL_GPL vmlinux 0x2d5f69b3 rcu_read_unlock_strict EXPORT_SYMBOL_GPL vmlinux 0x2d6aa0f0 arch_apei_enable_cmcff -EXPORT_SYMBOL_GPL vmlinux 0x2d72c563 regulator_force_disable -EXPORT_SYMBOL_GPL vmlinux 0x2d779475 acpi_get_pci_dev -EXPORT_SYMBOL_GPL vmlinux 0x2d77d980 phy_create -EXPORT_SYMBOL_GPL vmlinux 0x2d895b2f sdio_get_host_pm_caps +EXPORT_SYMBOL_GPL vmlinux 0x2d80160a efivar_entry_find EXPORT_SYMBOL_GPL vmlinux 0x2d89b1ad __SCT__tp_func_attach_device_to_domain -EXPORT_SYMBOL_GPL vmlinux 0x2d8c77b8 clockevent_delta2ns -EXPORT_SYMBOL_GPL vmlinux 0x2db14a42 genphy_c45_loopback -EXPORT_SYMBOL_GPL vmlinux 0x2de9844f ata_sff_tf_load -EXPORT_SYMBOL_GPL vmlinux 0x2df9e55e sched_set_fifo +EXPORT_SYMBOL_GPL vmlinux 0x2d8ea96f vfs_kern_mount +EXPORT_SYMBOL_GPL vmlinux 0x2d8fcebd fscrypt_symlink_getattr +EXPORT_SYMBOL_GPL vmlinux 0x2dcb2401 relay_switch_subbuf +EXPORT_SYMBOL_GPL vmlinux 0x2dd4a6a7 watchdog_set_restart_priority +EXPORT_SYMBOL_GPL vmlinux 0x2dd64366 vfio_device_get_from_dev +EXPORT_SYMBOL_GPL vmlinux 0x2dd72ec2 __traceiter_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0x2dd7c4f8 blk_ksm_register +EXPORT_SYMBOL_GPL vmlinux 0x2de21110 l3mdev_fib_table_rcu +EXPORT_SYMBOL_GPL vmlinux 0x2de40576 devlink_trap_policers_register +EXPORT_SYMBOL_GPL vmlinux 0x2df0baa9 unregister_acpi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x2df8a2ac strp_done EXPORT_SYMBOL_GPL vmlinux 0x2e028ae6 rcutorture_get_gp_data EXPORT_SYMBOL_GPL vmlinux 0x2e08226d badrange_add -EXPORT_SYMBOL_GPL vmlinux 0x2e153f48 cpufreq_unregister_governor +EXPORT_SYMBOL_GPL vmlinux 0x2e1a0953 irq_set_default_host EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace -EXPORT_SYMBOL_GPL vmlinux 0x2e238daf badblocks_clear -EXPORT_SYMBOL_GPL vmlinux 0x2e2836b5 power_supply_get_battery_info +EXPORT_SYMBOL_GPL vmlinux 0x2e2c9c36 kernel_read_file +EXPORT_SYMBOL_GPL vmlinux 0x2e2dc253 security_path_link EXPORT_SYMBOL_GPL vmlinux 0x2e2df7f4 irq_remapping_cap -EXPORT_SYMBOL_GPL vmlinux 0x2e4f7237 phy_modify_mmd_changed -EXPORT_SYMBOL_GPL vmlinux 0x2e50ef38 xen_xlate_unmap_gfn_range +EXPORT_SYMBOL_GPL vmlinux 0x2e34ff0c cros_ec_check_features +EXPORT_SYMBOL_GPL vmlinux 0x2e429cfa device_create +EXPORT_SYMBOL_GPL vmlinux 0x2e4b0d58 acpi_create_platform_device +EXPORT_SYMBOL_GPL vmlinux 0x2e4b1c1a gnttab_unmap_refs +EXPORT_SYMBOL_GPL vmlinux 0x2e54282a debugfs_create_x8 +EXPORT_SYMBOL_GPL vmlinux 0x2e567edf serial8250_rx_chars EXPORT_SYMBOL_GPL vmlinux 0x2e670427 sbitmap_queue_wake_all +EXPORT_SYMBOL_GPL vmlinux 0x2e6760d0 firmware_kobj EXPORT_SYMBOL_GPL vmlinux 0x2e678211 xas_find_conflict -EXPORT_SYMBOL_GPL vmlinux 0x2e681ccf usb_hcd_platform_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x2e6d9b3b usb_disable_lpm -EXPORT_SYMBOL_GPL vmlinux 0x2e737c3e perf_aux_output_end -EXPORT_SYMBOL_GPL vmlinux 0x2e76106f iommu_aux_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x2e688563 misc_cg_uncharge EXPORT_SYMBOL_GPL vmlinux 0x2e7a17d4 vmap_pfn -EXPORT_SYMBOL_GPL vmlinux 0x2e8abfde input_ff_destroy -EXPORT_SYMBOL_GPL vmlinux 0x2e93a7c1 usb_mon_register -EXPORT_SYMBOL_GPL vmlinux 0x2ebac76f gpiochip_reqres_irq +EXPORT_SYMBOL_GPL vmlinux 0x2e7d0087 pm_runtime_force_suspend +EXPORT_SYMBOL_GPL vmlinux 0x2e7f8aab crypto_skcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x2e85d437 pci_scan_child_bus +EXPORT_SYMBOL_GPL vmlinux 0x2e8ca627 usb_hcd_giveback_urb +EXPORT_SYMBOL_GPL vmlinux 0x2ea2036a gpiod_unexport +EXPORT_SYMBOL_GPL vmlinux 0x2eadf424 sdio_f0_readb +EXPORT_SYMBOL_GPL vmlinux 0x2eb1e84b devlink_flash_update_status_notify +EXPORT_SYMBOL_GPL vmlinux 0x2eb6e8de dax_driver_unregister EXPORT_SYMBOL_GPL vmlinux 0x2ebb19fd execute_in_process_context -EXPORT_SYMBOL_GPL vmlinux 0x2ebb5345 devm_clk_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0x2ebbded2 usb_add_phy EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable -EXPORT_SYMBOL_GPL vmlinux 0x2ec7ed0e devm_kmemdup -EXPORT_SYMBOL_GPL vmlinux 0x2ed793af class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2ebe86ba kthread_flush_worker +EXPORT_SYMBOL_GPL vmlinux 0x2ed6696e dev_attr_em_message EXPORT_SYMBOL_GPL vmlinux 0x2eda4807 is_uv_hubbed EXPORT_SYMBOL_GPL vmlinux 0x2ee7c52b btree_visitor -EXPORT_SYMBOL_GPL vmlinux 0x2ef9a85f usb_role_switch_register -EXPORT_SYMBOL_GPL vmlinux 0x2f0602e5 devlink_params_register +EXPORT_SYMBOL_GPL vmlinux 0x2ef177bc acpi_dev_remove_driver_gpios +EXPORT_SYMBOL_GPL vmlinux 0x2ef24059 __tracepoint_sched_update_nr_running_tp +EXPORT_SYMBOL_GPL vmlinux 0x2f0a5044 usb_reset_endpoint EXPORT_SYMBOL_GPL vmlinux 0x2f0d9053 usb_otg_state_string -EXPORT_SYMBOL_GPL vmlinux 0x2f12322b dw_pcie_own_conf_map_bus -EXPORT_SYMBOL_GPL vmlinux 0x2f165cd0 mptcp_subflow_init_cookie_req -EXPORT_SYMBOL_GPL vmlinux 0x2f17797f pm_clk_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0x2f1c28a8 device_add_properties -EXPORT_SYMBOL_GPL vmlinux 0x2f225389 pinctrl_add_gpio_ranges -EXPORT_SYMBOL_GPL vmlinux 0x2f2b4857 wm831x_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x2f21446d phy_power_off +EXPORT_SYMBOL_GPL vmlinux 0x2f24e9e2 clk_bulk_get_optional EXPORT_SYMBOL_GPL vmlinux 0x2f2c95c4 flush_work -EXPORT_SYMBOL_GPL vmlinux 0x2f3042a1 rio_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x2f3c7c62 efivar_entry_remove EXPORT_SYMBOL_GPL vmlinux 0x2f4880df static_key_slow_dec -EXPORT_SYMBOL_GPL vmlinux 0x2f49e16c devm_of_phy_get_by_index -EXPORT_SYMBOL_GPL vmlinux 0x2f4ac68e regmap_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0x2f5d4c46 serdev_device_write_flush +EXPORT_SYMBOL_GPL vmlinux 0x2f581620 alloc_empty_file +EXPORT_SYMBOL_GPL vmlinux 0x2f637c79 power_supply_set_battery_charged EXPORT_SYMBOL_GPL vmlinux 0x2f64415f unregister_acpi_hed_notifier -EXPORT_SYMBOL_GPL vmlinux 0x2f7c1053 gpiod_get -EXPORT_SYMBOL_GPL vmlinux 0x2f8016f0 xdp_rxq_info_reg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0x2f6928c4 pci_get_dsn EXPORT_SYMBOL_GPL vmlinux 0x2f8fd89d xas_split_alloc -EXPORT_SYMBOL_GPL vmlinux 0x2fa41354 trace_event_buffer_reserve -EXPORT_SYMBOL_GPL vmlinux 0x2fa68f03 __xenmem_reservation_va_mapping_update -EXPORT_SYMBOL_GPL vmlinux 0x2fad41e9 ata_cable_ignore -EXPORT_SYMBOL_GPL vmlinux 0x2fb42a8e blk_mq_complete_request_remote +EXPORT_SYMBOL_GPL vmlinux 0x2f99fe62 posix_acl_create +EXPORT_SYMBOL_GPL vmlinux 0x2f9db92c devm_device_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x2f9ec63a blk_abort_request +EXPORT_SYMBOL_GPL vmlinux 0x2fa70bc2 register_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x2fa99bde percpu_up_write +EXPORT_SYMBOL_GPL vmlinux 0x2fbb1e4f ncsi_register_dev EXPORT_SYMBOL_GPL vmlinux 0x2fc1e0fe kmem_valid_obj -EXPORT_SYMBOL_GPL vmlinux 0x2fc75493 raw_seq_next -EXPORT_SYMBOL_GPL vmlinux 0x2fcdf2d0 add_swap_extent -EXPORT_SYMBOL_GPL vmlinux 0x2ffbdd90 of_icc_get_from_provider -EXPORT_SYMBOL_GPL vmlinux 0x30023305 events_hybrid_sysfs_show -EXPORT_SYMBOL_GPL vmlinux 0x30086f7d __dax_driver_register -EXPORT_SYMBOL_GPL vmlinux 0x30097a1e scsi_autopm_put_device -EXPORT_SYMBOL_GPL vmlinux 0x300b09c1 __SCK__tp_func_block_unplug -EXPORT_SYMBOL_GPL vmlinux 0x30218827 fixed_phy_unregister -EXPORT_SYMBOL_GPL vmlinux 0x302a8b46 pm_generic_restore -EXPORT_SYMBOL_GPL vmlinux 0x3043e818 bpf_map_put -EXPORT_SYMBOL_GPL vmlinux 0x30609328 devm_of_icc_get +EXPORT_SYMBOL_GPL vmlinux 0x2fc7934a ata_sff_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x2fe64b12 usb_asmedia_modifyflowcontrol +EXPORT_SYMBOL_GPL vmlinux 0x3008b27f __tracepoint_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0x301ae970 thermal_zone_bind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0x302e9398 mmc_send_status +EXPORT_SYMBOL_GPL vmlinux 0x30411879 inet_hash_connect EXPORT_SYMBOL_GPL vmlinux 0x3061cfce ring_buffer_entries_cpu -EXPORT_SYMBOL_GPL vmlinux 0x309e90fd devm_phy_package_join -EXPORT_SYMBOL_GPL vmlinux 0x30a3a865 gpiod_direction_output -EXPORT_SYMBOL_GPL vmlinux 0x30a867a8 pci_epc_linkup -EXPORT_SYMBOL_GPL vmlinux 0x30b59925 iomap_bmap -EXPORT_SYMBOL_GPL vmlinux 0x30c42d76 xfrm_audit_state_delete +EXPORT_SYMBOL_GPL vmlinux 0x306e16e4 __tracepoint_devlink_hwerr +EXPORT_SYMBOL_GPL vmlinux 0x30759c10 phy_resolve_aneg_pause +EXPORT_SYMBOL_GPL vmlinux 0x30792b83 edac_mc_free +EXPORT_SYMBOL_GPL vmlinux 0x3087a641 tpm_pm_resume +EXPORT_SYMBOL_GPL vmlinux 0x30a0642b scsi_internal_device_unblock_nowait +EXPORT_SYMBOL_GPL vmlinux 0x30a1498b do_splice_to +EXPORT_SYMBOL_GPL vmlinux 0x30b6c6e7 debugfs_create_regset32 +EXPORT_SYMBOL_GPL vmlinux 0x30c8128b __page_file_mapping EXPORT_SYMBOL_GPL vmlinux 0x30cf804f slow_virt_to_phys -EXPORT_SYMBOL_GPL vmlinux 0x30dc3db5 da9052_free_irq +EXPORT_SYMBOL_GPL vmlinux 0x30d26cc6 usb_free_coherent +EXPORT_SYMBOL_GPL vmlinux 0x30d3cc58 iommu_device_sysfs_add +EXPORT_SYMBOL_GPL vmlinux 0x30d7d696 crypto_grab_shash EXPORT_SYMBOL_GPL vmlinux 0x30e1ec25 apei_map_generic_address -EXPORT_SYMBOL_GPL vmlinux 0x30f63eff __tracepoint_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x30e3bc54 blk_mq_pci_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x30eecbcd fsverity_file_open +EXPORT_SYMBOL_GPL vmlinux 0x30fe3f33 screen_pos EXPORT_SYMBOL_GPL vmlinux 0x31019477 __ftrace_vbprintk -EXPORT_SYMBOL_GPL vmlinux 0x3101c027 debugfs_create_x64 -EXPORT_SYMBOL_GPL vmlinux 0x3107035e extcon_dev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x3108f3ae gpiod_set_config +EXPORT_SYMBOL_GPL vmlinux 0x311101df dma_resv_get_fences EXPORT_SYMBOL_GPL vmlinux 0x31128b8e hv_remove_kexec_handler -EXPORT_SYMBOL_GPL vmlinux 0x311b23b9 transport_configure_device -EXPORT_SYMBOL_GPL vmlinux 0x311fc0e1 devlink_port_param_driverinit_value_set -EXPORT_SYMBOL_GPL vmlinux 0x311fe22f phy_resolve_aneg_pause +EXPORT_SYMBOL_GPL vmlinux 0x3115b6a2 acpi_dma_request_slave_chan_by_name +EXPORT_SYMBOL_GPL vmlinux 0x31180724 tcp_ca_get_key_by_name EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave -EXPORT_SYMBOL_GPL vmlinux 0x31397003 led_classdev_resume -EXPORT_SYMBOL_GPL vmlinux 0x313bedc9 xenbus_dev_suspend -EXPORT_SYMBOL_GPL vmlinux 0x313f0541 inet6_csk_xmit -EXPORT_SYMBOL_GPL vmlinux 0x313f1e6d bind_interdomain_evtchn_to_irqhandler_lateeoi -EXPORT_SYMBOL_GPL vmlinux 0x314b92d6 blk_mq_alloc_sq_tag_set +EXPORT_SYMBOL_GPL vmlinux 0x3131b0ff devlink_params_unregister +EXPORT_SYMBOL_GPL vmlinux 0x313c2943 disk_update_readahead +EXPORT_SYMBOL_GPL vmlinux 0x314536d8 irq_domain_xlate_twocell +EXPORT_SYMBOL_GPL vmlinux 0x3151179b usb_autopm_put_interface_no_suspend +EXPORT_SYMBOL_GPL vmlinux 0x31566e31 cpufreq_driver_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0x315f1f1b sysfs_remove_files +EXPORT_SYMBOL_GPL vmlinux 0x3161e2a6 _copy_mc_to_iter EXPORT_SYMBOL_GPL vmlinux 0x3165daa3 arbitrary_virt_to_machine -EXPORT_SYMBOL_GPL vmlinux 0x316fc154 tpm_send -EXPORT_SYMBOL_GPL vmlinux 0x316fff58 serdev_device_write_wakeup EXPORT_SYMBOL_GPL vmlinux 0x31706316 __SCT__tp_func_error_report_end -EXPORT_SYMBOL_GPL vmlinux 0x3174d52e net_selftest -EXPORT_SYMBOL_GPL vmlinux 0x317840af __tracepoint_powernv_throttle EXPORT_SYMBOL_GPL vmlinux 0x31839ad3 software_node_register_nodes -EXPORT_SYMBOL_GPL vmlinux 0x31848292 scsi_dh_attached_handler_name +EXPORT_SYMBOL_GPL vmlinux 0x3191eb53 inet_csk_route_req EXPORT_SYMBOL_GPL vmlinux 0x3192d768 cpufreq_remove_update_util_hook -EXPORT_SYMBOL_GPL vmlinux 0x3194a5d5 sata_scr_read +EXPORT_SYMBOL_GPL vmlinux 0x31959534 regulator_map_voltage_pickable_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x319782ba fscrypt_ioctl_remove_key EXPORT_SYMBOL_GPL vmlinux 0x3198bd55 __SCT__tp_func_detach_device_from_domain -EXPORT_SYMBOL_GPL vmlinux 0x319a96a9 balloon_page_dequeue -EXPORT_SYMBOL_GPL vmlinux 0x319c77ab fib_nh_common_release EXPORT_SYMBOL_GPL vmlinux 0x31a95e8b ring_buffer_record_enable_cpu -EXPORT_SYMBOL_GPL vmlinux 0x31ac3269 of_pwm_xlate_with_flags -EXPORT_SYMBOL_GPL vmlinux 0x31b91d93 subsys_virtual_register -EXPORT_SYMBOL_GPL vmlinux 0x31ba126d tty_buffer_space_avail -EXPORT_SYMBOL_GPL vmlinux 0x31bc2b9b __clk_mux_determine_rate -EXPORT_SYMBOL_GPL vmlinux 0x31c20568 usb_get_phy -EXPORT_SYMBOL_GPL vmlinux 0x31c33c13 md_allow_write +EXPORT_SYMBOL_GPL vmlinux 0x31b4d99e ata_common_sdev_attrs +EXPORT_SYMBOL_GPL vmlinux 0x31b8394b regulator_get_hardware_vsel_register EXPORT_SYMBOL_GPL vmlinux 0x31c7970f pciserial_suspend_ports -EXPORT_SYMBOL_GPL vmlinux 0x31c9aad2 skcipher_walk_aead_encrypt -EXPORT_SYMBOL_GPL vmlinux 0x31cbcaf3 __SCK__tp_func_arm_event +EXPORT_SYMBOL_GPL vmlinux 0x31d3c89b usb_get_status EXPORT_SYMBOL_GPL vmlinux 0x31dca4d8 gnttab_claim_grant_reference -EXPORT_SYMBOL_GPL vmlinux 0x31dddba5 gpiochip_irqchip_irq_valid -EXPORT_SYMBOL_GPL vmlinux 0x31ddecb7 vfio_virqfd_disable -EXPORT_SYMBOL_GPL vmlinux 0x31df2afc vfs_getxattr_alloc -EXPORT_SYMBOL_GPL vmlinux 0x31e3a0d3 genphy_c45_read_status -EXPORT_SYMBOL_GPL vmlinux 0x3201fbd3 cpufreq_dbs_governor_exit +EXPORT_SYMBOL_GPL vmlinux 0x31ee6c07 set_selection_kernel +EXPORT_SYMBOL_GPL vmlinux 0x31f0b13a __reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x3200b12e ohci_resume +EXPORT_SYMBOL_GPL vmlinux 0x32172004 acpi_dev_get_resources +EXPORT_SYMBOL_GPL vmlinux 0x32189e39 usb_put_intf EXPORT_SYMBOL_GPL vmlinux 0x3224b2a9 mpi_read_raw_from_sgl -EXPORT_SYMBOL_GPL vmlinux 0x323033dc __SCK__tp_func_pelt_dl_tp -EXPORT_SYMBOL_GPL vmlinux 0x323d1056 fwnode_graph_get_remote_port -EXPORT_SYMBOL_GPL vmlinux 0x32469801 acpi_set_modalias -EXPORT_SYMBOL_GPL vmlinux 0x325498db device_property_read_string_array -EXPORT_SYMBOL_GPL vmlinux 0x3265a574 devlink_region_snapshot_id_put -EXPORT_SYMBOL_GPL vmlinux 0x32675067 rio_dma_prep_slave_sg +EXPORT_SYMBOL_GPL vmlinux 0x322e7e23 regmap_async_complete_cb +EXPORT_SYMBOL_GPL vmlinux 0x32451990 __tracepoint_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0x324ca3a2 crypto_unregister_acomp EXPORT_SYMBOL_GPL vmlinux 0x326cefe5 hwpoison_filter_dev_minor EXPORT_SYMBOL_GPL vmlinux 0x327a2687 bind_evtchn_to_irq_lateeoi +EXPORT_SYMBOL_GPL vmlinux 0x327c774f __devm_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x32840cdf ata_pci_device_resume EXPORT_SYMBOL_GPL vmlinux 0x328e3354 __memcpy_flushcache EXPORT_SYMBOL_GPL vmlinux 0x32ab06cc irq_percpu_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x32b15260 ata_bmdma_port_start +EXPORT_SYMBOL_GPL vmlinux 0x32b9ea4d of_icc_get_from_provider EXPORT_SYMBOL_GPL vmlinux 0x32bc0fcf preempt_notifier_dec EXPORT_SYMBOL_GPL vmlinux 0x32c2bb04 list_lru_walk_node EXPORT_SYMBOL_GPL vmlinux 0x32c3cb4e class_compat_register +EXPORT_SYMBOL_GPL vmlinux 0x32c481a8 sfp_bus_find_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x32cb0f52 pwm_put +EXPORT_SYMBOL_GPL vmlinux 0x32cb3ab5 tcp_reno_cong_avoid +EXPORT_SYMBOL_GPL vmlinux 0x32cc884e usb_hcd_check_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0x32d33370 edac_mc_alloc +EXPORT_SYMBOL_GPL vmlinux 0x32d957f9 anon_inode_getfile +EXPORT_SYMBOL_GPL vmlinux 0x32da9a26 devm_kstrdup_const EXPORT_SYMBOL_GPL vmlinux 0x32e3b076 mxcsr_feature_mask EXPORT_SYMBOL_GPL vmlinux 0x32e4d1e0 sgx_virt_ecreate -EXPORT_SYMBOL_GPL vmlinux 0x32f68720 crypto_lookup_template -EXPORT_SYMBOL_GPL vmlinux 0x32f8cf4c hwpoison_filter -EXPORT_SYMBOL_GPL vmlinux 0x32fcafd7 dmaengine_unmap_put -EXPORT_SYMBOL_GPL vmlinux 0x32fead50 acpi_pci_check_ejectable EXPORT_SYMBOL_GPL vmlinux 0x330010b6 cpuset_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x33037767 rdev_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x3304f745 __traceiter_neigh_timer_handler -EXPORT_SYMBOL_GPL vmlinux 0x33121e47 usb_get_hcd -EXPORT_SYMBOL_GPL vmlinux 0x331443be devm_platform_get_irqs_affinity -EXPORT_SYMBOL_GPL vmlinux 0x3336a393 pcie_bus_configure_settings -EXPORT_SYMBOL_GPL vmlinux 0x3339904c loop_backing_file -EXPORT_SYMBOL_GPL vmlinux 0x3341f0f3 dma_buf_unpin -EXPORT_SYMBOL_GPL vmlinux 0x33444fd6 serial8250_rpm_get_tx +EXPORT_SYMBOL_GPL vmlinux 0x3301dab0 fsstack_copy_inode_size +EXPORT_SYMBOL_GPL vmlinux 0x33030178 md_allow_write +EXPORT_SYMBOL_GPL vmlinux 0x331560c0 gnttab_dma_alloc_pages +EXPORT_SYMBOL_GPL vmlinux 0x3318f664 gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0x334fd472 vfs_listxattr EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0x33620e50 __bio_try_merge_page +EXPORT_SYMBOL_GPL vmlinux 0x335ed041 fwnode_graph_get_remote_node EXPORT_SYMBOL_GPL vmlinux 0x3362b03c xen_p2m_size -EXPORT_SYMBOL_GPL vmlinux 0x336ad38c proc_mkdir_data -EXPORT_SYMBOL_GPL vmlinux 0x3374ab03 __traceiter_attach_device_to_domain -EXPORT_SYMBOL_GPL vmlinux 0x33792d06 __tracepoint_devlink_hwerr -EXPORT_SYMBOL_GPL vmlinux 0x3384a8a1 inet_send_prepare -EXPORT_SYMBOL_GPL vmlinux 0x338f3aad phy_get -EXPORT_SYMBOL_GPL vmlinux 0x33a804a2 __SCK__tp_func_neigh_event_send_dead -EXPORT_SYMBOL_GPL vmlinux 0x33abed03 ohci_setup -EXPORT_SYMBOL_GPL vmlinux 0x33c00a92 devlink_param_driverinit_value_get -EXPORT_SYMBOL_GPL vmlinux 0x33c7806d gpiod_get_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x33e2a068 __device_reset -EXPORT_SYMBOL_GPL vmlinux 0x33e39d0a usb_hcd_check_unlink_urb -EXPORT_SYMBOL_GPL vmlinux 0x33e3bb8b tpm_get_timeouts -EXPORT_SYMBOL_GPL vmlinux 0x33ea139e ata_scsi_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x33ea2da6 dst_blackhole_mtu -EXPORT_SYMBOL_GPL vmlinux 0x33f11e45 virtio_device_freeze -EXPORT_SYMBOL_GPL vmlinux 0x3402acd8 blk_mq_hctx_set_fq_lock_class -EXPORT_SYMBOL_GPL vmlinux 0x341a09e2 usb_acpi_power_manageable -EXPORT_SYMBOL_GPL vmlinux 0x3421a460 dm_bio_get_target_bio_nr +EXPORT_SYMBOL_GPL vmlinux 0x336c142d devlink_rate_leaf_destroy +EXPORT_SYMBOL_GPL vmlinux 0x336ecfa9 vfio_device_put +EXPORT_SYMBOL_GPL vmlinux 0x337e0094 usb_autopm_put_interface_async +EXPORT_SYMBOL_GPL vmlinux 0x33899049 transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x339b551e pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x33a2326f devm_pm_opp_set_regulators +EXPORT_SYMBOL_GPL vmlinux 0x33a85e67 __efivar_entry_iter +EXPORT_SYMBOL_GPL vmlinux 0x33b3f5f2 rio_request_mport_dma +EXPORT_SYMBOL_GPL vmlinux 0x33d5b154 lwtunnel_cmp_encap +EXPORT_SYMBOL_GPL vmlinux 0x33dbb777 extcon_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x33eb5c02 watchdog_init_timeout +EXPORT_SYMBOL_GPL vmlinux 0x33fe7601 add_swap_extent +EXPORT_SYMBOL_GPL vmlinux 0x340ffc6f bpf_prog_inc +EXPORT_SYMBOL_GPL vmlinux 0x34100937 phy_put +EXPORT_SYMBOL_GPL vmlinux 0x34325833 dev_pm_opp_get_freq EXPORT_SYMBOL_GPL vmlinux 0x34331f04 acpi_os_unmap_memory -EXPORT_SYMBOL_GPL vmlinux 0x34367f4d device_match_any +EXPORT_SYMBOL_GPL vmlinux 0x34340927 tcp_ca_openreq_child +EXPORT_SYMBOL_GPL vmlinux 0x34350afc mmu_interval_notifier_insert_locked +EXPORT_SYMBOL_GPL vmlinux 0x3436ea08 crypto_alg_mod_lookup EXPORT_SYMBOL_GPL vmlinux 0x343953c4 poll_state_synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0x343fa84d sdio_retune_release EXPORT_SYMBOL_GPL vmlinux 0x34407691 crypto_has_ahash EXPORT_SYMBOL_GPL vmlinux 0x344361a1 kdb_register EXPORT_SYMBOL_GPL vmlinux 0x344a2c84 iomap_dio_complete -EXPORT_SYMBOL_GPL vmlinux 0x344daa16 device_destroy EXPORT_SYMBOL_GPL vmlinux 0x3450ad94 mpi_set_ui -EXPORT_SYMBOL_GPL vmlinux 0x345e884c anon_inode_getfd_secure -EXPORT_SYMBOL_GPL vmlinux 0x346cfcf7 acpi_subsys_suspend -EXPORT_SYMBOL_GPL vmlinux 0x34a6f36e scsi_free_sgtables -EXPORT_SYMBOL_GPL vmlinux 0x34cda16d unregister_virtio_driver -EXPORT_SYMBOL_GPL vmlinux 0x34d19b6b blk_mq_sched_try_merge -EXPORT_SYMBOL_GPL vmlinux 0x34d7731d relay_subbufs_consumed -EXPORT_SYMBOL_GPL vmlinux 0x34e4df55 usb_wakeup_notification -EXPORT_SYMBOL_GPL vmlinux 0x34e7d46c iommu_unregister_device_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0x345d15bd put_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x3466ce63 x86_msi_msg_get_destid +EXPORT_SYMBOL_GPL vmlinux 0x346789df pci_check_and_unmask_intx +EXPORT_SYMBOL_GPL vmlinux 0x346ae42c usb_hub_release_port +EXPORT_SYMBOL_GPL vmlinux 0x3470a596 led_blink_set +EXPORT_SYMBOL_GPL vmlinux 0x3495eb66 rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x34b2d02c nvdimm_setup_pfn +EXPORT_SYMBOL_GPL vmlinux 0x34b811d3 irq_chip_enable_parent +EXPORT_SYMBOL_GPL vmlinux 0x34d46363 skcipher_walk_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x34d6db03 cpufreq_dbs_governor_start +EXPORT_SYMBOL_GPL vmlinux 0x34d9582d usb_hub_clear_tt_buffer +EXPORT_SYMBOL_GPL vmlinux 0x34e17acb led_trigger_write EXPORT_SYMBOL_GPL vmlinux 0x34eab46d bind_evtchn_to_irqhandler -EXPORT_SYMBOL_GPL vmlinux 0x34fc1cd1 platform_device_add_data -EXPORT_SYMBOL_GPL vmlinux 0x3507f63c usb_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x34ef7ad5 device_show_int +EXPORT_SYMBOL_GPL vmlinux 0x35034933 icmp_build_probe +EXPORT_SYMBOL_GPL vmlinux 0x35077609 __skb_get_hash_symmetric EXPORT_SYMBOL_GPL vmlinux 0x350f6ce5 tasklet_unlock_wait +EXPORT_SYMBOL_GPL vmlinux 0x350f8ed9 scsi_internal_device_block_nowait +EXPORT_SYMBOL_GPL vmlinux 0x35114251 gen10g_config_aneg EXPORT_SYMBOL_GPL vmlinux 0x352b3813 maxim_charger_calc_reg_current +EXPORT_SYMBOL_GPL vmlinux 0x352c2f95 da903x_clr_bits EXPORT_SYMBOL_GPL vmlinux 0x352ec68b bpf_offload_dev_destroy -EXPORT_SYMBOL_GPL vmlinux 0x353c88e3 seg6_do_srh_inline -EXPORT_SYMBOL_GPL vmlinux 0x353f7a4d sk_psock_tls_strp_read +EXPORT_SYMBOL_GPL vmlinux 0x353a72a6 ata_pci_sff_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0x353f9a1f proc_create_net_data_write +EXPORT_SYMBOL_GPL vmlinux 0x35460ae7 balloon_page_alloc +EXPORT_SYMBOL_GPL vmlinux 0x3553a1b5 gnttab_dma_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x3557698d mptcp_pm_get_add_addr_signal_max +EXPORT_SYMBOL_GPL vmlinux 0x355a6bb2 acpi_dev_resume EXPORT_SYMBOL_GPL vmlinux 0x355bc89a klist_next +EXPORT_SYMBOL_GPL vmlinux 0x35600ad4 cgroup_get_from_path +EXPORT_SYMBOL_GPL vmlinux 0x35652883 iommu_device_register EXPORT_SYMBOL_GPL vmlinux 0x3567743b vfio_external_user_iommu_id EXPORT_SYMBOL_GPL vmlinux 0x356d09a1 unregister_kprobes -EXPORT_SYMBOL_GPL vmlinux 0x35724f01 cpci_hp_unregister_bus -EXPORT_SYMBOL_GPL vmlinux 0x357b1b32 rio_pw_enable +EXPORT_SYMBOL_GPL vmlinux 0x35752fef vfio_register_group_dev EXPORT_SYMBOL_GPL vmlinux 0x358ff60f twl_get_hfclk_rate -EXPORT_SYMBOL_GPL vmlinux 0x359578ce relay_buf_full -EXPORT_SYMBOL_GPL vmlinux 0x3598a8dd phy_package_join -EXPORT_SYMBOL_GPL vmlinux 0x35ad5924 rio_mport_class -EXPORT_SYMBOL_GPL vmlinux 0x35b91717 attribute_container_unregister -EXPORT_SYMBOL_GPL vmlinux 0x35c1729c irq_domain_simple_ops -EXPORT_SYMBOL_GPL vmlinux 0x35cabd29 xdp_rxq_info_reg +EXPORT_SYMBOL_GPL vmlinux 0x359567a7 usb_alloc_coherent +EXPORT_SYMBOL_GPL vmlinux 0x35b7e47c class_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x35b89fdc sbitmap_bitmap_show +EXPORT_SYMBOL_GPL vmlinux 0x35c6e661 fl6_merge_options +EXPORT_SYMBOL_GPL vmlinux 0x35c73174 sdio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x35d34823 peernet2id_alloc EXPORT_SYMBOL_GPL vmlinux 0x35d3dc46 crypto_alg_sem -EXPORT_SYMBOL_GPL vmlinux 0x35d72818 ip6_pol_route +EXPORT_SYMBOL_GPL vmlinux 0x35dcca6e crypto_req_done +EXPORT_SYMBOL_GPL vmlinux 0x35e8409a fat_detach EXPORT_SYMBOL_GPL vmlinux 0x35f43770 __clk_hw_register_gate -EXPORT_SYMBOL_GPL vmlinux 0x35fb5e34 dev_get_tstats64 EXPORT_SYMBOL_GPL vmlinux 0x36075bb5 iommu_group_register_notifier EXPORT_SYMBOL_GPL vmlinux 0x36173c1d phys_to_target_node -EXPORT_SYMBOL_GPL vmlinux 0x361e1069 dummy_con -EXPORT_SYMBOL_GPL vmlinux 0x3621ca1c dev_pm_opp_adjust_voltage -EXPORT_SYMBOL_GPL vmlinux 0x36227cdc fsnotify_add_mark +EXPORT_SYMBOL_GPL vmlinux 0x3618f93d crypto_alloc_tfm_node EXPORT_SYMBOL_GPL vmlinux 0x36242943 switchdev_deferred_process -EXPORT_SYMBOL_GPL vmlinux 0x363353db irq_gc_ack_set_bit -EXPORT_SYMBOL_GPL vmlinux 0x36388e86 crypto_stats_akcipher_sign -EXPORT_SYMBOL_GPL vmlinux 0x3646bb96 sched_setattr_nocheck -EXPORT_SYMBOL_GPL vmlinux 0x36498f0c genphy_c45_an_disable_aneg -EXPORT_SYMBOL_GPL vmlinux 0x365368a5 sdio_set_block_size -EXPORT_SYMBOL_GPL vmlinux 0x366225c1 dev_pm_qos_update_request -EXPORT_SYMBOL_GPL vmlinux 0x3663f2e8 crypto_inst_setname -EXPORT_SYMBOL_GPL vmlinux 0x366804a9 crypto_register_scomp -EXPORT_SYMBOL_GPL vmlinux 0x36763d2a bpf_trace_run8 -EXPORT_SYMBOL_GPL vmlinux 0x3690772a power_supply_set_input_current_limit_from_supplier -EXPORT_SYMBOL_GPL vmlinux 0x369f18de dw8250_setup_port +EXPORT_SYMBOL_GPL vmlinux 0x3631d6fa usb_deregister +EXPORT_SYMBOL_GPL vmlinux 0x3634d707 regulator_set_voltage +EXPORT_SYMBOL_GPL vmlinux 0x365005a6 blk_mq_quiesce_queue +EXPORT_SYMBOL_GPL vmlinux 0x366436df usb_clear_halt +EXPORT_SYMBOL_GPL vmlinux 0x36677144 inet_send_prepare +EXPORT_SYMBOL_GPL vmlinux 0x3688cdb5 find_vpid +EXPORT_SYMBOL_GPL vmlinux 0x368e8a0d ata_host_register +EXPORT_SYMBOL_GPL vmlinux 0x36907679 set_task_ioprio EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot -EXPORT_SYMBOL_GPL vmlinux 0x36adf00a add_disk_randomness +EXPORT_SYMBOL_GPL vmlinux 0x36af0d03 tun_get_tx_ring EXPORT_SYMBOL_GPL vmlinux 0x36b5497e intel_iommu_enabled -EXPORT_SYMBOL_GPL vmlinux 0x36dea47e gpiod_set_debounce -EXPORT_SYMBOL_GPL vmlinux 0x3708c739 crypto_ahash_final -EXPORT_SYMBOL_GPL vmlinux 0x370c5826 __ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0x36c767eb bpf_prog_select_runtime +EXPORT_SYMBOL_GPL vmlinux 0x36d038b4 md_find_rdev_rcu +EXPORT_SYMBOL_GPL vmlinux 0x36da62d5 pci_epf_alloc_space +EXPORT_SYMBOL_GPL vmlinux 0x36e35fda iommu_register_device_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0x36f0c205 __SCK__tp_func_block_split +EXPORT_SYMBOL_GPL vmlinux 0x36f3f4c8 loop_backing_file +EXPORT_SYMBOL_GPL vmlinux 0x36f48fb5 of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0x36f8e339 linear_hugepage_index +EXPORT_SYMBOL_GPL vmlinux 0x370a1d8c __tracepoint_pelt_se_tp EXPORT_SYMBOL_GPL vmlinux 0x37169f79 cpu_latency_qos_update_request -EXPORT_SYMBOL_GPL vmlinux 0x3716b49d sk_clear_memalloc -EXPORT_SYMBOL_GPL vmlinux 0x371fae6f io_cgrp_subsys +EXPORT_SYMBOL_GPL vmlinux 0x371b3f77 switchdev_handle_port_obj_add +EXPORT_SYMBOL_GPL vmlinux 0x372395ad get_governor_parent_kobj +EXPORT_SYMBOL_GPL vmlinux 0x37257465 devm_clk_bulk_get EXPORT_SYMBOL_GPL vmlinux 0x372cfd6e gnttab_end_foreign_access -EXPORT_SYMBOL_GPL vmlinux 0x37413620 crypto_register_skciphers -EXPORT_SYMBOL_GPL vmlinux 0x374c481f regmap_raw_read +EXPORT_SYMBOL_GPL vmlinux 0x37381290 switchdev_bridge_port_unoffload +EXPORT_SYMBOL_GPL vmlinux 0x37407993 mmc_crypto_setup_queue EXPORT_SYMBOL_GPL vmlinux 0x374c53e1 ata_get_cmd_descript -EXPORT_SYMBOL_GPL vmlinux 0x374ef7bf devm_serdev_device_open EXPORT_SYMBOL_GPL vmlinux 0x3750d770 erst_read -EXPORT_SYMBOL_GPL vmlinux 0x375449e9 xenbus_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0x375df2ba __fscrypt_prepare_lookup +EXPORT_SYMBOL_GPL vmlinux 0x375e2a50 pm_generic_suspend_late EXPORT_SYMBOL_GPL vmlinux 0x3763f509 kobject_rename -EXPORT_SYMBOL_GPL vmlinux 0x3769ad63 __bio_add_page -EXPORT_SYMBOL_GPL vmlinux 0x376b8a83 xen_unregister_device_domain_owner -EXPORT_SYMBOL_GPL vmlinux 0x37726bb4 netdev_rx_handler_unregister -EXPORT_SYMBOL_GPL vmlinux 0x3777b4f7 transport_add_device -EXPORT_SYMBOL_GPL vmlinux 0x37792147 clk_bulk_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x3768d956 sched_set_normal EXPORT_SYMBOL_GPL vmlinux 0x377bbcbc pm_suspend_target_state EXPORT_SYMBOL_GPL vmlinux 0x37914025 xenbus_write -EXPORT_SYMBOL_GPL vmlinux 0x37a858ea iommu_attach_device -EXPORT_SYMBOL_GPL vmlinux 0x37b5b5ea bpfilter_ops -EXPORT_SYMBOL_GPL vmlinux 0x37bc26a2 devm_kmalloc +EXPORT_SYMBOL_GPL vmlinux 0x37a02f24 dev_pm_opp_unregister_set_opp_helper +EXPORT_SYMBOL_GPL vmlinux 0x37ae17ed of_phy_simple_xlate EXPORT_SYMBOL_GPL vmlinux 0x37bf7be3 percpu_ref_exit -EXPORT_SYMBOL_GPL vmlinux 0x37d633f9 blk_add_driver_data -EXPORT_SYMBOL_GPL vmlinux 0x37d82cbd tcpv6_prot -EXPORT_SYMBOL_GPL vmlinux 0x37df2062 modify_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x37ca3630 fsverity_cleanup_inode +EXPORT_SYMBOL_GPL vmlinux 0x37d95ffd __dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0x37da1dfb zap_vma_ptes +EXPORT_SYMBOL_GPL vmlinux 0x37e878fd raw_abort EXPORT_SYMBOL_GPL vmlinux 0x37f292c4 pmc_atom_write -EXPORT_SYMBOL_GPL vmlinux 0x37fa7db8 device_match_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x37ff83cd usb_deregister_dev EXPORT_SYMBOL_GPL vmlinux 0x3801776b __ioread32_copy -EXPORT_SYMBOL_GPL vmlinux 0x380dfb25 bus_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x3812e3af xdp_attachment_setup -EXPORT_SYMBOL_GPL vmlinux 0x3814b4da synth_event_create -EXPORT_SYMBOL_GPL vmlinux 0x3822cb6a bio_end_io_acct_remapped EXPORT_SYMBOL_GPL vmlinux 0x38268b62 icc_bulk_enable -EXPORT_SYMBOL_GPL vmlinux 0x38362df1 tpm_is_tpm2 -EXPORT_SYMBOL_GPL vmlinux 0x3836ba3c skb_segment +EXPORT_SYMBOL_GPL vmlinux 0x382d3c4e device_release_driver +EXPORT_SYMBOL_GPL vmlinux 0x382e4f07 ata_sff_softreset +EXPORT_SYMBOL_GPL vmlinux 0x382f612a badblocks_set EXPORT_SYMBOL_GPL vmlinux 0x38374815 clear_selection -EXPORT_SYMBOL_GPL vmlinux 0x383b8ab3 pm_runtime_barrier -EXPORT_SYMBOL_GPL vmlinux 0x384ffea3 bio_add_zone_append_page -EXPORT_SYMBOL_GPL vmlinux 0x385a6461 pci_intx +EXPORT_SYMBOL_GPL vmlinux 0x38423c85 devlink_flash_update_timeout_notify EXPORT_SYMBOL_GPL vmlinux 0x3866e217 nvmem_device_write -EXPORT_SYMBOL_GPL vmlinux 0x386e87c6 regulator_get -EXPORT_SYMBOL_GPL vmlinux 0x386f3a8e lwtunnel_encap_del_ops EXPORT_SYMBOL_GPL vmlinux 0x38708e25 inet_peer_base_init EXPORT_SYMBOL_GPL vmlinux 0x38722f80 kernel_fpu_end -EXPORT_SYMBOL_GPL vmlinux 0x38743a3f kernfs_put -EXPORT_SYMBOL_GPL vmlinux 0x38761284 fat_get_dotdot_entry +EXPORT_SYMBOL_GPL vmlinux 0x3875c3b6 bd_unlink_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0x3879aee6 device_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x388ad7c9 ata_sff_dev_select +EXPORT_SYMBOL_GPL vmlinux 0x3896b249 dma_free_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x3899b36d pcie_flr EXPORT_SYMBOL_GPL vmlinux 0x389b64a2 static_key_count -EXPORT_SYMBOL_GPL vmlinux 0x38a4c3ff net_ns_get_ownership EXPORT_SYMBOL_GPL vmlinux 0x38aa1397 gpiod_add_lookup_table -EXPORT_SYMBOL_GPL vmlinux 0x38af2bb4 xen_unmap_domain_gfn_range +EXPORT_SYMBOL_GPL vmlinux 0x38b110b4 is_virtio_device EXPORT_SYMBOL_GPL vmlinux 0x38b6a890 __SCT__tp_func_sched_util_est_cfs_tp -EXPORT_SYMBOL_GPL vmlinux 0x38bda7ba transport_class_unregister EXPORT_SYMBOL_GPL vmlinux 0x38c3ff30 freq_qos_add_notifier EXPORT_SYMBOL_GPL vmlinux 0x38d324db srcu_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0x38d99c67 dma_wait_for_async_tx EXPORT_SYMBOL_GPL vmlinux 0x38e1fde7 mpi_set EXPORT_SYMBOL_GPL vmlinux 0x38e5bc5a clk_set_rate_range -EXPORT_SYMBOL_GPL vmlinux 0x38ecf660 sysfs_remove_mount_point -EXPORT_SYMBOL_GPL vmlinux 0x38f9942d fwnode_find_reference -EXPORT_SYMBOL_GPL vmlinux 0x39078425 find_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0x39298cbb trace_event_reg -EXPORT_SYMBOL_GPL vmlinux 0x392f7402 ata_port_pbar_desc -EXPORT_SYMBOL_GPL vmlinux 0x393b4815 blk_lld_busy -EXPORT_SYMBOL_GPL vmlinux 0x395192f3 acpi_device_get_match_data -EXPORT_SYMBOL_GPL vmlinux 0x3975d82d crypto_unregister_shashes -EXPORT_SYMBOL_GPL vmlinux 0x397b6d7d __blkg_prfill_rwstat -EXPORT_SYMBOL_GPL vmlinux 0x397ed8c3 __tracepoint_mc_event -EXPORT_SYMBOL_GPL vmlinux 0x3984c44f iommu_dev_feature_enabled -EXPORT_SYMBOL_GPL vmlinux 0x3987b39c vp_modern_set_status +EXPORT_SYMBOL_GPL vmlinux 0x38f24e37 inet_unhash +EXPORT_SYMBOL_GPL vmlinux 0x38fc8041 pm_genpd_add_device +EXPORT_SYMBOL_GPL vmlinux 0x39224036 fib_nexthop_info +EXPORT_SYMBOL_GPL vmlinux 0x3933cae2 crypto_mod_put +EXPORT_SYMBOL_GPL vmlinux 0x393dfc08 __irq_resolve_mapping +EXPORT_SYMBOL_GPL vmlinux 0x3942a036 xen_remap_vma_range +EXPORT_SYMBOL_GPL vmlinux 0x39484941 regulator_list_voltage_pickable_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x3957500c dmaengine_desc_get_metadata_ptr +EXPORT_SYMBOL_GPL vmlinux 0x395e4d7e ping_init_sock +EXPORT_SYMBOL_GPL vmlinux 0x396c5e6f fb_deferred_io_open +EXPORT_SYMBOL_GPL vmlinux 0x397f2ccd device_wakeup_enable EXPORT_SYMBOL_GPL vmlinux 0x399eda0f sbitmap_add_wait_queue EXPORT_SYMBOL_GPL vmlinux 0x39a7affc driver_deferred_probe_timeout EXPORT_SYMBOL_GPL vmlinux 0x39aa4888 usb_role_string -EXPORT_SYMBOL_GPL vmlinux 0x39adb47b ip6_datagram_connect_v6_only -EXPORT_SYMBOL_GPL vmlinux 0x39d7747e devm_of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0x39b34c05 device_match_devt EXPORT_SYMBOL_GPL vmlinux 0x39ded098 rdma_cgrp_subsys_enabled_key EXPORT_SYMBOL_GPL vmlinux 0x39ded14f __SCT__tp_func_unmap -EXPORT_SYMBOL_GPL vmlinux 0x39f50f34 of_devfreq_cooling_register -EXPORT_SYMBOL_GPL vmlinux 0x39f6f376 ata_sff_freeze +EXPORT_SYMBOL_GPL vmlinux 0x39e164e6 pinctrl_utils_add_config +EXPORT_SYMBOL_GPL vmlinux 0x39e16773 bpf_trace_run3 +EXPORT_SYMBOL_GPL vmlinux 0x39ea9942 __pci_epc_create +EXPORT_SYMBOL_GPL vmlinux 0x39f30753 sdio_f0_writeb +EXPORT_SYMBOL_GPL vmlinux 0x39f517b8 netdev_walk_all_lower_dev_rcu +EXPORT_SYMBOL_GPL vmlinux 0x39f6afc0 bsg_job_done +EXPORT_SYMBOL_GPL vmlinux 0x39f95673 device_register +EXPORT_SYMBOL_GPL vmlinux 0x3a08d710 debugfs_create_u64 +EXPORT_SYMBOL_GPL vmlinux 0x3a092865 seg6_do_srh_inline +EXPORT_SYMBOL_GPL vmlinux 0x3a17f7d4 rcu_read_unlock_trace_special +EXPORT_SYMBOL_GPL vmlinux 0x3a195e0b bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3a1c2e7d crypto_register_rng EXPORT_SYMBOL_GPL vmlinux 0x3a24fb2f percpu_ref_resurrect -EXPORT_SYMBOL_GPL vmlinux 0x3a260714 crypto_destroy_tfm EXPORT_SYMBOL_GPL vmlinux 0x3a26ed11 sched_clock -EXPORT_SYMBOL_GPL vmlinux 0x3a3f738b sdio_disable_func -EXPORT_SYMBOL_GPL vmlinux 0x3a4335c6 devm_namespace_enable +EXPORT_SYMBOL_GPL vmlinux 0x3a2b145f sched_set_fifo_low +EXPORT_SYMBOL_GPL vmlinux 0x3a45a419 pci_enable_pcie_error_reporting EXPORT_SYMBOL_GPL vmlinux 0x3a4f6a32 ata_sff_interrupt EXPORT_SYMBOL_GPL vmlinux 0x3a536bd7 ring_buffer_read_finish -EXPORT_SYMBOL_GPL vmlinux 0x3a548726 virtio_break_device EXPORT_SYMBOL_GPL vmlinux 0x3a55981a static_key_enable_cpuslocked -EXPORT_SYMBOL_GPL vmlinux 0x3a7408ae devm_hwspin_lock_free +EXPORT_SYMBOL_GPL vmlinux 0x3a597ada devlink_health_reporter_create +EXPORT_SYMBOL_GPL vmlinux 0x3a63394d bpf_redirect_info +EXPORT_SYMBOL_GPL vmlinux 0x3a6d00cc sysfs_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x3a711953 synth_event_create EXPORT_SYMBOL_GPL vmlinux 0x3a7d80f9 xen_max_p2m_pfn -EXPORT_SYMBOL_GPL vmlinux 0x3a7db329 __netpoll_free -EXPORT_SYMBOL_GPL vmlinux 0x3a7df534 vfio_pci_core_mmap +EXPORT_SYMBOL_GPL vmlinux 0x3a8813ac pm_generic_freeze_late EXPORT_SYMBOL_GPL vmlinux 0x3a8bbb8e trace_clock_jiffies -EXPORT_SYMBOL_GPL vmlinux 0x3a8bfbb6 wbc_account_cgroup_owner +EXPORT_SYMBOL_GPL vmlinux 0x3a8f9e8c thermal_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x3a9286df shmem_read_mapping_page_gfp EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial -EXPORT_SYMBOL_GPL vmlinux 0x3a9c367e device_del -EXPORT_SYMBOL_GPL vmlinux 0x3aa55fd8 ata_std_bios_param -EXPORT_SYMBOL_GPL vmlinux 0x3aae8459 usb_hcd_map_urb_for_dma -EXPORT_SYMBOL_GPL vmlinux 0x3aaf951c crypto_mod_put -EXPORT_SYMBOL_GPL vmlinux 0x3ab901c7 mmu_interval_notifier_insert -EXPORT_SYMBOL_GPL vmlinux 0x3abf468e regmap_get_device +EXPORT_SYMBOL_GPL vmlinux 0x3a9c611f clean_acked_data_disable +EXPORT_SYMBOL_GPL vmlinux 0x3a9f1345 led_classdev_resume +EXPORT_SYMBOL_GPL vmlinux 0x3aa3e9ea ata_host_activate EXPORT_SYMBOL_GPL vmlinux 0x3ac3feba rhltable_init -EXPORT_SYMBOL_GPL vmlinux 0x3aca48f9 ata_sff_hsm_move -EXPORT_SYMBOL_GPL vmlinux 0x3acc12b7 balloon_page_list_enqueue EXPORT_SYMBOL_GPL vmlinux 0x3acdf325 twl4030_audio_enable_resource +EXPORT_SYMBOL_GPL vmlinux 0x3ad3185c pci_restore_msi_state +EXPORT_SYMBOL_GPL vmlinux 0x3ad764df fsnotify_alloc_group EXPORT_SYMBOL_GPL vmlinux 0x3af578f5 hyperv_report_panic -EXPORT_SYMBOL_GPL vmlinux 0x3afcb132 wbc_detach_inode -EXPORT_SYMBOL_GPL vmlinux 0x3b219ea7 __tracepoint_arm_event -EXPORT_SYMBOL_GPL vmlinux 0x3b393295 crypto_stats_kpp_generate_public_key -EXPORT_SYMBOL_GPL vmlinux 0x3b441a26 pci_find_next_capability -EXPORT_SYMBOL_GPL vmlinux 0x3b4c1261 nvmem_device_find +EXPORT_SYMBOL_GPL vmlinux 0x3b051014 devm_init_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x3b0e48d4 acpiphp_register_attention +EXPORT_SYMBOL_GPL vmlinux 0x3b13377b usb_get_dr_mode +EXPORT_SYMBOL_GPL vmlinux 0x3b280eb6 evm_verifyxattr +EXPORT_SYMBOL_GPL vmlinux 0x3b499172 mmu_notifier_get_locked EXPORT_SYMBOL_GPL vmlinux 0x3b4c240a display_timings_release -EXPORT_SYMBOL_GPL vmlinux 0x3b623360 __SCK__tp_func_neigh_update_done -EXPORT_SYMBOL_GPL vmlinux 0x3b734e94 sysfs_unbreak_active_protection -EXPORT_SYMBOL_GPL vmlinux 0x3b83a555 devm_platform_ioremap_resource +EXPORT_SYMBOL_GPL vmlinux 0x3b4d3d80 ip_route_output_key_hash +EXPORT_SYMBOL_GPL vmlinux 0x3b4dc50e sysfs_unmerge_group +EXPORT_SYMBOL_GPL vmlinux 0x3b509687 pingv6_ops +EXPORT_SYMBOL_GPL vmlinux 0x3b527659 badblocks_store +EXPORT_SYMBOL_GPL vmlinux 0x3b60218c pktgen_xfrm_outer_mode_output +EXPORT_SYMBOL_GPL vmlinux 0x3b738f80 tty_buffer_lock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x3b7a7163 __static_call_return0 EXPORT_SYMBOL_GPL vmlinux 0x3b8979ea gnttab_grant_foreign_transfer_ref +EXPORT_SYMBOL_GPL vmlinux 0x3b8f446f scsi_eh_ready_devs EXPORT_SYMBOL_GPL vmlinux 0x3b91db5b intel_pt_handle_vmx EXPORT_SYMBOL_GPL vmlinux 0x3b95f543 klp_shadow_free EXPORT_SYMBOL_GPL vmlinux 0x3ba01b47 get_compat_sigset -EXPORT_SYMBOL_GPL vmlinux 0x3bae7645 fwnode_get_name -EXPORT_SYMBOL_GPL vmlinux 0x3bbded50 ata_cable_40wire -EXPORT_SYMBOL_GPL vmlinux 0x3bc03b7a fuse_simple_background -EXPORT_SYMBOL_GPL vmlinux 0x3bc530fd smpboot_register_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0x3ba3bef3 pm_generic_freeze +EXPORT_SYMBOL_GPL vmlinux 0x3bd35ac8 xenbus_dev_error EXPORT_SYMBOL_GPL vmlinux 0x3bdb5d28 alg_test -EXPORT_SYMBOL_GPL vmlinux 0x3be185b9 pinctrl_put -EXPORT_SYMBOL_GPL vmlinux 0x3bedaf7a rio_unmap_outb_region -EXPORT_SYMBOL_GPL vmlinux 0x3bf137d1 phy_pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0x3bde1c51 __tracepoint_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x3be35574 security_path_symlink EXPORT_SYMBOL_GPL vmlinux 0x3bf17755 mpi_read_buffer -EXPORT_SYMBOL_GPL vmlinux 0x3bf8dfc3 ata_dev_pair -EXPORT_SYMBOL_GPL vmlinux 0x3bf9be3a dma_buf_attach -EXPORT_SYMBOL_GPL vmlinux 0x3c00c90d trace_event_buffer_commit +EXPORT_SYMBOL_GPL vmlinux 0x3c0c55a7 user_update EXPORT_SYMBOL_GPL vmlinux 0x3c0e8050 hyperv_pcpu_input_arg EXPORT_SYMBOL_GPL vmlinux 0x3c1c3725 rcu_fwd_progress_check -EXPORT_SYMBOL_GPL vmlinux 0x3c1eba1c path_noexec -EXPORT_SYMBOL_GPL vmlinux 0x3c354d09 ptp_classify_raw -EXPORT_SYMBOL_GPL vmlinux 0x3c499bb3 of_devfreq_cooling_register_power -EXPORT_SYMBOL_GPL vmlinux 0x3c4dbf6d policy_has_boost_freq -EXPORT_SYMBOL_GPL vmlinux 0x3c545b63 ata_pci_device_resume +EXPORT_SYMBOL_GPL vmlinux 0x3c36cc90 pci_rescan_bus +EXPORT_SYMBOL_GPL vmlinux 0x3c38cdf0 dev_pm_disable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x3c3f5a58 crypto_shash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x3c4494a3 adp5520_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x3c4afaa9 debugfs_create_u8 +EXPORT_SYMBOL_GPL vmlinux 0x3c5c2daf xdp_rxq_info_unused EXPORT_SYMBOL_GPL vmlinux 0x3c5d543a hrtimer_start_range_ns -EXPORT_SYMBOL_GPL vmlinux 0x3c5ef5cc pci_epc_start -EXPORT_SYMBOL_GPL vmlinux 0x3c604960 vfio_pci_core_write EXPORT_SYMBOL_GPL vmlinux 0x3c681dc4 ring_buffer_record_disable -EXPORT_SYMBOL_GPL vmlinux 0x3c6b7de1 scsi_mode_select -EXPORT_SYMBOL_GPL vmlinux 0x3c84fe0f iommu_group_get -EXPORT_SYMBOL_GPL vmlinux 0x3cae1f79 __intel_scu_ipc_register -EXPORT_SYMBOL_GPL vmlinux 0x3cb42d95 wm8350_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x3cbf7665 dev_pm_opp_free_cpufreq_table +EXPORT_SYMBOL_GPL vmlinux 0x3c875051 regmap_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0x3c913429 __traceiter_tcp_send_reset +EXPORT_SYMBOL_GPL vmlinux 0x3c9447e0 __ata_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x3ca55d11 device_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x3cbc3121 pm_generic_resume_early EXPORT_SYMBOL_GPL vmlinux 0x3cc07be9 pv_info -EXPORT_SYMBOL_GPL vmlinux 0x3cc2d639 usb_hub_release_port +EXPORT_SYMBOL_GPL vmlinux 0x3cc2a351 dev_coredumpsg 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 0x3cd646c2 cpci_hp_register_bus EXPORT_SYMBOL_GPL vmlinux 0x3ce650fd phy_10gbit_features -EXPORT_SYMBOL_GPL vmlinux 0x3d2bf34c devfreq_cooling_unregister -EXPORT_SYMBOL_GPL vmlinux 0x3d2ede58 regulator_bulk_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x3d367daa ethnl_cable_test_result +EXPORT_SYMBOL_GPL vmlinux 0x3cefd444 clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0x3d16b497 fib_nh_common_release +EXPORT_SYMBOL_GPL vmlinux 0x3d1fb01f sata_std_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x3d31a5c8 bpf_offload_dev_netdev_register EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end +EXPORT_SYMBOL_GPL vmlinux 0x3d42a900 acpi_bus_trim EXPORT_SYMBOL_GPL vmlinux 0x3d510a7b rcu_jiffies_till_stall_check -EXPORT_SYMBOL_GPL vmlinux 0x3d5a85db pm_generic_suspend_late -EXPORT_SYMBOL_GPL vmlinux 0x3d6fa2f1 debugfs_create_devm_seqfile -EXPORT_SYMBOL_GPL vmlinux 0x3d732940 pm_generic_freeze -EXPORT_SYMBOL_GPL vmlinux 0x3d795566 crypto_stats_skcipher_encrypt -EXPORT_SYMBOL_GPL vmlinux 0x3d7b5efe ata_sas_sync_probe +EXPORT_SYMBOL_GPL vmlinux 0x3d539c61 aead_exit_geniv +EXPORT_SYMBOL_GPL vmlinux 0x3d662fa4 wbc_detach_inode +EXPORT_SYMBOL_GPL vmlinux 0x3d7a6044 rtnl_get_net_ns_capable +EXPORT_SYMBOL_GPL vmlinux 0x3d851eb8 xfrm_register_translator EXPORT_SYMBOL_GPL vmlinux 0x3d8baf3b zs_huge_class_size EXPORT_SYMBOL_GPL vmlinux 0x3d8f29cc srcutorture_get_gp_data -EXPORT_SYMBOL_GPL vmlinux 0x3d98813e sdio_enable_func EXPORT_SYMBOL_GPL vmlinux 0x3d9bbf75 wwan_port_txon -EXPORT_SYMBOL_GPL vmlinux 0x3d9f9bf3 ata_pci_bmdma_clear_simplex +EXPORT_SYMBOL_GPL vmlinux 0x3da8172e fuse_direct_io EXPORT_SYMBOL_GPL vmlinux 0x3daa2540 nf_hooks_lwtunnel_enabled +EXPORT_SYMBOL_GPL vmlinux 0x3dad7422 bpf_event_output +EXPORT_SYMBOL_GPL vmlinux 0x3daefb4a pci_enable_ats EXPORT_SYMBOL_GPL vmlinux 0x3db48927 sbitmap_any_bit_set -EXPORT_SYMBOL_GPL vmlinux 0x3db57097 devres_find -EXPORT_SYMBOL_GPL vmlinux 0x3dbde26f sata_scr_write_flush -EXPORT_SYMBOL_GPL vmlinux 0x3dc75280 debugfs_real_fops -EXPORT_SYMBOL_GPL vmlinux 0x3dd1f36a xenbus_alloc_evtchn +EXPORT_SYMBOL_GPL vmlinux 0x3db837f2 devlink_reload_enable +EXPORT_SYMBOL_GPL vmlinux 0x3ddd8e1a fuse_sync_release +EXPORT_SYMBOL_GPL vmlinux 0x3ddf608e dev_pm_qos_expose_flags EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final EXPORT_SYMBOL_GPL vmlinux 0x3df82d00 mce_log -EXPORT_SYMBOL_GPL vmlinux 0x3dfab8b1 crypto_remove_spawns -EXPORT_SYMBOL_GPL vmlinux 0x3dff3a31 ip6_datagram_recv_ctl -EXPORT_SYMBOL_GPL vmlinux 0x3e02eb19 spi_unregister_controller -EXPORT_SYMBOL_GPL vmlinux 0x3e093e99 blockdev_superblock -EXPORT_SYMBOL_GPL vmlinux 0x3e1da9ee init_dummy_netdev -EXPORT_SYMBOL_GPL vmlinux 0x3e2b0f52 gnttab_unmap_refs_async +EXPORT_SYMBOL_GPL vmlinux 0x3e1a07fe free_fib_info +EXPORT_SYMBOL_GPL vmlinux 0x3e33abb1 ata_acpi_cbl_80wire +EXPORT_SYMBOL_GPL vmlinux 0x3e34265d ata_acpi_gtm +EXPORT_SYMBOL_GPL vmlinux 0x3e3e8db9 led_stop_software_blink +EXPORT_SYMBOL_GPL vmlinux 0x3e411fce irq_chip_mask_parent +EXPORT_SYMBOL_GPL vmlinux 0x3e4832b4 preempt_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3e52302f rio_dev_put EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer -EXPORT_SYMBOL_GPL vmlinux 0x3e8e0bd3 xenbus_probe_node +EXPORT_SYMBOL_GPL vmlinux 0x3e88be73 sata_link_debounce +EXPORT_SYMBOL_GPL vmlinux 0x3e98ac16 crypto_spawn_tfm2 +EXPORT_SYMBOL_GPL vmlinux 0x3ea36902 xenbus_register_driver_common EXPORT_SYMBOL_GPL vmlinux 0x3ea5196d apei_osc_setup -EXPORT_SYMBOL_GPL vmlinux 0x3ea625ed iommu_sva_free_pasid -EXPORT_SYMBOL_GPL vmlinux 0x3eb6f2ec __devm_irq_alloc_descs -EXPORT_SYMBOL_GPL vmlinux 0x3ec2ae7b report_iommu_fault +EXPORT_SYMBOL_GPL vmlinux 0x3eaa855c blk_revalidate_disk_zones +EXPORT_SYMBOL_GPL vmlinux 0x3eaa91d7 dw_pcie_ep_linkup +EXPORT_SYMBOL_GPL vmlinux 0x3eb261d7 i2c_adapter_type EXPORT_SYMBOL_GPL vmlinux 0x3ec93255 hv_get_isolation_type EXPORT_SYMBOL_GPL vmlinux 0x3ecbce4e find_iova -EXPORT_SYMBOL_GPL vmlinux 0x3ed6484e pm_runtime_autosuspend_expiration +EXPORT_SYMBOL_GPL vmlinux 0x3eef5ea7 platform_msi_domain_free_irqs EXPORT_SYMBOL_GPL vmlinux 0x3ef051c8 crypto_inc -EXPORT_SYMBOL_GPL vmlinux 0x3ef27ff7 wm831x_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x3ef70f0c call_switchdev_notifiers EXPORT_SYMBOL_GPL vmlinux 0x3efd1889 dax_direct_access -EXPORT_SYMBOL_GPL vmlinux 0x3f019985 pci_user_write_config_word -EXPORT_SYMBOL_GPL vmlinux 0x3f08e754 devm_ioremap_uc -EXPORT_SYMBOL_GPL vmlinux 0x3f133abe skb_partial_csum_set +EXPORT_SYMBOL_GPL vmlinux 0x3f022f73 device_match_of_node +EXPORT_SYMBOL_GPL vmlinux 0x3f0e7e3f clk_hw_get_parent_index EXPORT_SYMBOL_GPL vmlinux 0x3f2092e3 fl6_update_dst -EXPORT_SYMBOL_GPL vmlinux 0x3f346ac2 rtc_update_irq -EXPORT_SYMBOL_GPL vmlinux 0x3f45a05a devlink_param_unregister -EXPORT_SYMBOL_GPL vmlinux 0x3f45b183 platform_msi_domain_alloc_irqs EXPORT_SYMBOL_GPL vmlinux 0x3f491f49 reset_control_bulk_reset -EXPORT_SYMBOL_GPL vmlinux 0x3f577996 sysfs_group_change_owner -EXPORT_SYMBOL_GPL vmlinux 0x3f5c425d device_get_next_child_node -EXPORT_SYMBOL_GPL vmlinux 0x3f5ff95c blk_queue_rq_timeout -EXPORT_SYMBOL_GPL vmlinux 0x3f812625 __xenmem_reservation_va_mapping_reset -EXPORT_SYMBOL_GPL vmlinux 0x3f826f21 wm8350_block_read +EXPORT_SYMBOL_GPL vmlinux 0x3f4dc610 find_mci_by_dev +EXPORT_SYMBOL_GPL vmlinux 0x3f5a70b5 vfio_pci_core_uninit_device +EXPORT_SYMBOL_GPL vmlinux 0x3f6d989a pci_find_next_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x3f703cd5 devlink_dpipe_headers_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3f79f955 ata_wait_after_reset EXPORT_SYMBOL_GPL vmlinux 0x3f84bcd7 dax_alive EXPORT_SYMBOL_GPL vmlinux 0x3f8ab72e devlink_fmsg_bool_put -EXPORT_SYMBOL_GPL vmlinux 0x3f8e46c8 tty_buffer_unlock_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x3f94ddc5 sfp_bus_add_upstream -EXPORT_SYMBOL_GPL vmlinux 0x3fa547d3 gpiod_get_array_optional -EXPORT_SYMBOL_GPL vmlinux 0x3fa613d1 device_show_bool +EXPORT_SYMBOL_GPL vmlinux 0x3f8afbd6 msg_zerocopy_realloc +EXPORT_SYMBOL_GPL vmlinux 0x3f9e1b82 serial8250_get_port +EXPORT_SYMBOL_GPL vmlinux 0x3f9e738b phy_led_trigger_change_speed +EXPORT_SYMBOL_GPL vmlinux 0x3fa6e268 devlink_resource_size_get EXPORT_SYMBOL_GPL vmlinux 0x3fae6ab0 hv_vp_index -EXPORT_SYMBOL_GPL vmlinux 0x3fb58605 dma_get_any_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0x3fc0827f ipv4_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x3fc53449 thp_get_unmapped_area -EXPORT_SYMBOL_GPL vmlinux 0x3fc89e18 devm_nvmem_device_get +EXPORT_SYMBOL_GPL vmlinux 0x3fb1c59a unmap_mapping_pages +EXPORT_SYMBOL_GPL vmlinux 0x3fc5cf1b devm_clk_register +EXPORT_SYMBOL_GPL vmlinux 0x3fd055c0 pm_generic_restore EXPORT_SYMBOL_GPL vmlinux 0x3fe35aea irq_bypass_unregister_consumer EXPORT_SYMBOL_GPL vmlinux 0x3fe6c346 devlink_fmsg_binary_pair_put -EXPORT_SYMBOL_GPL vmlinux 0x3ff47e62 usb_ifnum_to_if +EXPORT_SYMBOL_GPL vmlinux 0x3fea9d25 __devm_of_phy_provider_register EXPORT_SYMBOL_GPL vmlinux 0x3ff82085 public_key_signature_free EXPORT_SYMBOL_GPL vmlinux 0x3ffdacf3 timerqueue_iterate_next -EXPORT_SYMBOL_GPL vmlinux 0x400238d6 class_find_device -EXPORT_SYMBOL_GPL vmlinux 0x40045ba1 dev_pm_opp_put_regulators -EXPORT_SYMBOL_GPL vmlinux 0x400748c3 blkg_conf_finish EXPORT_SYMBOL_GPL vmlinux 0x400a024b acpi_scan_lock_release -EXPORT_SYMBOL_GPL vmlinux 0x401135f2 devlink_dpipe_table_resource_set -EXPORT_SYMBOL_GPL vmlinux 0x401a4d56 inet_csk_listen_stop -EXPORT_SYMBOL_GPL vmlinux 0x40236417 xfrm_audit_state_notfound_simple +EXPORT_SYMBOL_GPL vmlinux 0x401f9842 devm_pm_opp_set_supported_hw EXPORT_SYMBOL_GPL vmlinux 0x40267068 usb_anchor_resume_wakeups -EXPORT_SYMBOL_GPL vmlinux 0x402ab5f0 dev_forward_skb -EXPORT_SYMBOL_GPL vmlinux 0x402ec1e9 ip6_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x4038674e nvmem_cell_read_variable_le_u64 EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one EXPORT_SYMBOL_GPL vmlinux 0x4044ca16 pkcs7_verify -EXPORT_SYMBOL_GPL vmlinux 0x405cd78a ata_ncq_sdev_attrs EXPORT_SYMBOL_GPL vmlinux 0x4065d168 pm_print_active_wakeup_sources +EXPORT_SYMBOL_GPL vmlinux 0x4069583a platform_find_device_by_driver EXPORT_SYMBOL_GPL vmlinux 0x406c4cb1 hrtimer_resolution -EXPORT_SYMBOL_GPL vmlinux 0x406e5f21 x86_vector_domain EXPORT_SYMBOL_GPL vmlinux 0x4071b517 out_of_line_wait_on_bit_timeout EXPORT_SYMBOL_GPL vmlinux 0x407af304 usb_wait_anchor_empty_timeout -EXPORT_SYMBOL_GPL vmlinux 0x407eff71 pingv6_prot -EXPORT_SYMBOL_GPL vmlinux 0x408f24c7 __netdev_watchdog_up +EXPORT_SYMBOL_GPL vmlinux 0x408bab45 regmap_field_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0x408d6f6b devm_nvmem_device_put +EXPORT_SYMBOL_GPL vmlinux 0x40945dbb nvdimm_blk_region_create +EXPORT_SYMBOL_GPL vmlinux 0x40972c6e udp4_lib_lookup EXPORT_SYMBOL_GPL vmlinux 0x4099f919 tun_ptr_free -EXPORT_SYMBOL_GPL vmlinux 0x409f7149 dev_pm_opp_remove +EXPORT_SYMBOL_GPL vmlinux 0x409d9d69 platform_device_add_data EXPORT_SYMBOL_GPL vmlinux 0x40a0aafc __flush_tlb_all -EXPORT_SYMBOL_GPL vmlinux 0x40a36839 vp_modern_get_queue_enable -EXPORT_SYMBOL_GPL vmlinux 0x40ab3edb sata_async_notification -EXPORT_SYMBOL_GPL vmlinux 0x40ab60b1 sched_trace_rq_avg_rt -EXPORT_SYMBOL_GPL vmlinux 0x40bbd56b devfreq_event_reset_event -EXPORT_SYMBOL_GPL vmlinux 0x40c861d0 dev_coredumpsg -EXPORT_SYMBOL_GPL vmlinux 0x40cc42bd thermal_of_cooling_device_register -EXPORT_SYMBOL_GPL vmlinux 0x40cea9be iomap_file_buffered_write +EXPORT_SYMBOL_GPL vmlinux 0x40a0df88 dmi_kobj +EXPORT_SYMBOL_GPL vmlinux 0x40a24d18 __tracepoint_devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0x40b25c41 __mmc_send_status EXPORT_SYMBOL_GPL vmlinux 0x40d349b6 sbitmap_queue_resize -EXPORT_SYMBOL_GPL vmlinux 0x40d6d237 pm_genpd_add_device -EXPORT_SYMBOL_GPL vmlinux 0x40df4f50 power_supply_get_property -EXPORT_SYMBOL_GPL vmlinux 0x40e0c5b6 of_phy_simple_xlate -EXPORT_SYMBOL_GPL vmlinux 0x40ed1f43 gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0x40d71bdf devm_of_led_get +EXPORT_SYMBOL_GPL vmlinux 0x40e1613f hwspin_lock_free +EXPORT_SYMBOL_GPL vmlinux 0x40e84935 mptcp_subflow_request_sock_ops 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 0x41125b51 sk_msg_return +EXPORT_SYMBOL_GPL vmlinux 0x4115af2a usb_phy_get_charger_current +EXPORT_SYMBOL_GPL vmlinux 0x41274b5f __traceiter_block_rq_insert EXPORT_SYMBOL_GPL vmlinux 0x4129f5ee kernel_fpu_begin_mask EXPORT_SYMBOL_GPL vmlinux 0x412bc681 ring_buffer_empty_cpu -EXPORT_SYMBOL_GPL vmlinux 0x412f22e2 __pci_reset_function_locked -EXPORT_SYMBOL_GPL vmlinux 0x413343cf crypto_stats_akcipher_encrypt -EXPORT_SYMBOL_GPL vmlinux 0x4133a18f __tracepoint_non_standard_event -EXPORT_SYMBOL_GPL vmlinux 0x41386985 cpufreq_freq_attr_scaling_available_freqs +EXPORT_SYMBOL_GPL vmlinux 0x4140b25d rio_mport_send_doorbell EXPORT_SYMBOL_GPL vmlinux 0x414d119a videomode_from_timings -EXPORT_SYMBOL_GPL vmlinux 0x4151b5f2 dev_pm_genpd_resume -EXPORT_SYMBOL_GPL vmlinux 0x4156e080 clk_hw_set_rate_range -EXPORT_SYMBOL_GPL vmlinux 0x415b88ea fwnode_property_present -EXPORT_SYMBOL_GPL vmlinux 0x4161975e scsi_internal_device_unblock_nowait -EXPORT_SYMBOL_GPL vmlinux 0x4163d1a0 __SCK__tp_func_block_rq_remap -EXPORT_SYMBOL_GPL vmlinux 0x4163fdeb devlink_port_type_eth_set -EXPORT_SYMBOL_GPL vmlinux 0x417f06cc fwnode_device_is_available -EXPORT_SYMBOL_GPL vmlinux 0x41807b9b gpiod_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x415ef3c9 __ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0x41679807 rcuwait_wake_up +EXPORT_SYMBOL_GPL vmlinux 0x41727f85 lwtunnel_get_encap_size +EXPORT_SYMBOL_GPL vmlinux 0x417438c3 blk_req_zone_write_trylock EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval -EXPORT_SYMBOL_GPL vmlinux 0x41852545 i2c_client_type +EXPORT_SYMBOL_GPL vmlinux 0x4183c744 regulator_get EXPORT_SYMBOL_GPL vmlinux 0x418873cc irq_bypass_register_producer +EXPORT_SYMBOL_GPL vmlinux 0x418fca04 rtc_initialize_alarm EXPORT_SYMBOL_GPL vmlinux 0x419e7efd sfp_module_stop +EXPORT_SYMBOL_GPL vmlinux 0x41aacdec blk_mq_quiesce_queue_nowait EXPORT_SYMBOL_GPL vmlinux 0x41b7e8e2 register_kretprobe EXPORT_SYMBOL_GPL vmlinux 0x41b9a6e6 bsg_unregister_queue +EXPORT_SYMBOL_GPL vmlinux 0x41bb1c9b inet6_lookup EXPORT_SYMBOL_GPL vmlinux 0x41bce49a ghes_register_vendor_record_notifier -EXPORT_SYMBOL_GPL vmlinux 0x41ce998c gpiochip_add_pingroup_range -EXPORT_SYMBOL_GPL vmlinux 0x41d1d04e spi_register_controller -EXPORT_SYMBOL_GPL vmlinux 0x41d5c782 __auxiliary_device_add +EXPORT_SYMBOL_GPL vmlinux 0x41cec67a handle_untracked_irq +EXPORT_SYMBOL_GPL vmlinux 0x41d5ef95 __tracepoint_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0x41e0e7fb phy_restart_aneg EXPORT_SYMBOL_GPL vmlinux 0x41ed3cec eventfd_ctx_remove_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0x41f74b15 sysfs_groups_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x41fe6d0a fscrypt_show_test_dummy_encryption EXPORT_SYMBOL_GPL vmlinux 0x42041512 i2c_get_dma_safe_msg_buf +EXPORT_SYMBOL_GPL vmlinux 0x4206e8c2 devm_regmap_field_bulk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x4208d496 dma_can_mmap +EXPORT_SYMBOL_GPL vmlinux 0x420d1a41 tcp_unregister_congestion_control EXPORT_SYMBOL_GPL vmlinux 0x420f3d01 nvmem_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x421206b0 crypto_unregister_aeads +EXPORT_SYMBOL_GPL vmlinux 0x42219dff devm_request_free_mem_region +EXPORT_SYMBOL_GPL vmlinux 0x422a577e ip4_datagram_release_cb EXPORT_SYMBOL_GPL vmlinux 0x422e578a __SCT__tp_func_add_device_to_group -EXPORT_SYMBOL_GPL vmlinux 0x4233dd7d ohci_hub_status_data -EXPORT_SYMBOL_GPL vmlinux 0x423b168f percpu_down_write -EXPORT_SYMBOL_GPL vmlinux 0x424f76d4 pci_enable_rom +EXPORT_SYMBOL_GPL vmlinux 0x4237c724 serial8250_rpm_get_tx +EXPORT_SYMBOL_GPL vmlinux 0x423f9bfd clk_hw_get_num_parents +EXPORT_SYMBOL_GPL vmlinux 0x424434cc regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x42557e6b securityfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0x425beace mmc_cmdq_disable EXPORT_SYMBOL_GPL vmlinux 0x42635d55 pm_suspend_global_flags -EXPORT_SYMBOL_GPL vmlinux 0x426408c3 phy_led_triggers_unregister +EXPORT_SYMBOL_GPL vmlinux 0x42638acd fat_scan EXPORT_SYMBOL_GPL vmlinux 0x426452a3 acpi_evaluation_failure_warn -EXPORT_SYMBOL_GPL vmlinux 0x4269b784 usb_hcd_giveback_urb -EXPORT_SYMBOL_GPL vmlinux 0x426f99ca class_interface_register -EXPORT_SYMBOL_GPL vmlinux 0x427ddea8 phy_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0x427bbd7e debugfs_create_x64 EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active -EXPORT_SYMBOL_GPL vmlinux 0x4299842a regmap_noinc_read -EXPORT_SYMBOL_GPL vmlinux 0x429f7337 usb_match_id -EXPORT_SYMBOL_GPL vmlinux 0x42bd639f tracepoint_probe_register_prio_may_exist -EXPORT_SYMBOL_GPL vmlinux 0x42cb5d94 clean_acked_data_enable +EXPORT_SYMBOL_GPL vmlinux 0x428872d2 bpf_prog_get_type_dev +EXPORT_SYMBOL_GPL vmlinux 0x42922b30 dev_pm_opp_get_max_transition_latency +EXPORT_SYMBOL_GPL vmlinux 0x42939948 file_ra_state_init +EXPORT_SYMBOL_GPL vmlinux 0x42ab3d56 ata_cable_sata +EXPORT_SYMBOL_GPL vmlinux 0x42c1b967 input_ff_create +EXPORT_SYMBOL_GPL vmlinux 0x42cb9621 irq_chip_mask_ack_parent EXPORT_SYMBOL_GPL vmlinux 0x42de5b6b srcu_init_notifier_head EXPORT_SYMBOL_GPL vmlinux 0x42e445f6 clk_mux_val_to_index +EXPORT_SYMBOL_GPL vmlinux 0x42e4da4d sdio_writel EXPORT_SYMBOL_GPL vmlinux 0x42e9d0da ring_buffer_unlock_commit -EXPORT_SYMBOL_GPL vmlinux 0x42ef2298 page_cache_async_ra +EXPORT_SYMBOL_GPL vmlinux 0x42f35687 attribute_container_find_class_device EXPORT_SYMBOL_GPL vmlinux 0x42f728aa mctrl_gpio_get_outputs -EXPORT_SYMBOL_GPL vmlinux 0x42f8bfdf usb_asmedia_modifyflowcontrol +EXPORT_SYMBOL_GPL vmlinux 0x42f730bb __tcp_send_ack EXPORT_SYMBOL_GPL vmlinux 0x430d88ec __traceiter_arm_event -EXPORT_SYMBOL_GPL vmlinux 0x43197ab8 perf_aux_output_skip -EXPORT_SYMBOL_GPL vmlinux 0x43203a55 zap_vma_ptes -EXPORT_SYMBOL_GPL vmlinux 0x4329a9b5 skb_copy_ubufs -EXPORT_SYMBOL_GPL vmlinux 0x432a2c1f xenbus_dev_groups -EXPORT_SYMBOL_GPL vmlinux 0x432a7ded gpiochip_unlock_as_irq -EXPORT_SYMBOL_GPL vmlinux 0x432e0078 gnttab_page_cache_init -EXPORT_SYMBOL_GPL vmlinux 0x434d7601 inet6_sk_rebuild_header -EXPORT_SYMBOL_GPL vmlinux 0x43519f58 usb_phy_set_charger_current +EXPORT_SYMBOL_GPL vmlinux 0x43223ce2 yield_to +EXPORT_SYMBOL_GPL vmlinux 0x432d0bc1 virtqueue_get_avail_addr +EXPORT_SYMBOL_GPL vmlinux 0x4357074b fpstate_clear_xstate_component EXPORT_SYMBOL_GPL vmlinux 0x436d817f mpi_clear_bit -EXPORT_SYMBOL_GPL vmlinux 0x4378a4d8 gpiochip_add_data_with_key +EXPORT_SYMBOL_GPL vmlinux 0x437027db elv_register EXPORT_SYMBOL_GPL vmlinux 0x437eb1df ipv6_mod_enabled -EXPORT_SYMBOL_GPL vmlinux 0x4383285e dma_request_chan_by_mask -EXPORT_SYMBOL_GPL vmlinux 0x43866a3b screen_glyph_unicode -EXPORT_SYMBOL_GPL vmlinux 0x438b992a iomap_page_mkwrite +EXPORT_SYMBOL_GPL vmlinux 0x4384ebd6 __kernel_write EXPORT_SYMBOL_GPL vmlinux 0x438d8df2 iova_cache_get -EXPORT_SYMBOL_GPL vmlinux 0x4397d796 of_phy_get EXPORT_SYMBOL_GPL vmlinux 0x43aa319e lease_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x43b550cd led_set_brightness_sync -EXPORT_SYMBOL_GPL vmlinux 0x43c84aa0 xdp_rxq_info_unreg -EXPORT_SYMBOL_GPL vmlinux 0x43d9c7bb to_nvdimm_bus_dev -EXPORT_SYMBOL_GPL vmlinux 0x43e31aaf xdp_build_skb_from_frame -EXPORT_SYMBOL_GPL vmlinux 0x43e5032e __put_task_struct -EXPORT_SYMBOL_GPL vmlinux 0x43ec3bc7 __platform_create_bundle -EXPORT_SYMBOL_GPL vmlinux 0x43ed317f spi_add_device +EXPORT_SYMBOL_GPL vmlinux 0x43c1170d dev_pm_qos_flags +EXPORT_SYMBOL_GPL vmlinux 0x43c59cde isa_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x43c607a9 device_link_del +EXPORT_SYMBOL_GPL vmlinux 0x43c87888 msi_desc_to_pci_sysdata +EXPORT_SYMBOL_GPL vmlinux 0x43ced7ac dm_copy_name_and_uuid +EXPORT_SYMBOL_GPL vmlinux 0x43d1629f dma_async_device_channel_register +EXPORT_SYMBOL_GPL vmlinux 0x43edb815 ip6_dst_lookup_tunnel EXPORT_SYMBOL_GPL vmlinux 0x43f56e82 ata_xfer_mode2shift EXPORT_SYMBOL_GPL vmlinux 0x43f81957 clk_round_rate EXPORT_SYMBOL_GPL vmlinux 0x43f92edd wait_for_initramfs -EXPORT_SYMBOL_GPL vmlinux 0x4400b0bf pci_epc_raise_irq +EXPORT_SYMBOL_GPL vmlinux 0x43fc6d5c phy_pm_runtime_allow EXPORT_SYMBOL_GPL vmlinux 0x4401e6c2 mpi_cmpabs -EXPORT_SYMBOL_GPL vmlinux 0x4418acd3 perf_event_update_userpage +EXPORT_SYMBOL_GPL vmlinux 0x44075bd5 regmap_exit +EXPORT_SYMBOL_GPL vmlinux 0x4407fdbd sk_msg_clone EXPORT_SYMBOL_GPL vmlinux 0x442deaa9 poll_state_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0x443ab7e6 debugfs_lookup -EXPORT_SYMBOL_GPL vmlinux 0x443afaea fib6_new_table -EXPORT_SYMBOL_GPL vmlinux 0x4442cc60 mddev_init -EXPORT_SYMBOL_GPL vmlinux 0x44441854 usb_poison_urb EXPORT_SYMBOL_GPL vmlinux 0x445a09c0 nvmem_device_cell_write -EXPORT_SYMBOL_GPL vmlinux 0x445d1874 pcie_port_find_device -EXPORT_SYMBOL_GPL vmlinux 0x447aa570 extcon_get_edev_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x447b0962 of_icc_get_by_index +EXPORT_SYMBOL_GPL vmlinux 0x445c5413 addrconf_add_linklocal +EXPORT_SYMBOL_GPL vmlinux 0x446a09a6 perf_aux_output_skip +EXPORT_SYMBOL_GPL vmlinux 0x4477a7d2 edac_pci_del_device EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe -EXPORT_SYMBOL_GPL vmlinux 0x448a3f62 switchdev_handle_port_obj_del -EXPORT_SYMBOL_GPL vmlinux 0x44a15a8a devlink_register -EXPORT_SYMBOL_GPL vmlinux 0x44a9c5e6 ata_pci_device_do_resume -EXPORT_SYMBOL_GPL vmlinux 0x44af3940 iommu_group_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x44b0a91b dev_pm_opp_get_required_pstate +EXPORT_SYMBOL_GPL vmlinux 0x448c6089 tpm_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0x44995757 sysfs_merge_group +EXPORT_SYMBOL_GPL vmlinux 0x44a407ca memremap_pages EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout -EXPORT_SYMBOL_GPL vmlinux 0x44c00581 pm_clk_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0x44c3bda2 crypto_alg_extsize +EXPORT_SYMBOL_GPL vmlinux 0x44be83ea PageHuge +EXPORT_SYMBOL_GPL vmlinux 0x44cb0ef5 __netpoll_cleanup EXPORT_SYMBOL_GPL vmlinux 0x44cf8cf0 blk_zone_cond_str +EXPORT_SYMBOL_GPL vmlinux 0x44d7e11b __tracepoint_unmap EXPORT_SYMBOL_GPL vmlinux 0x44e1e9aa balloon_stats -EXPORT_SYMBOL_GPL vmlinux 0x44e6bbdd bpf_map_inc -EXPORT_SYMBOL_GPL vmlinux 0x44fd28bc vfs_read +EXPORT_SYMBOL_GPL vmlinux 0x44e8cf18 debugfs_read_file_bool +EXPORT_SYMBOL_GPL vmlinux 0x44f2017f nvdimm_cmd_mask EXPORT_SYMBOL_GPL vmlinux 0x450110e8 perf_assign_events -EXPORT_SYMBOL_GPL vmlinux 0x450581f6 crypto_grab_akcipher EXPORT_SYMBOL_GPL vmlinux 0x4507f4a8 cpuhp_tasks_frozen -EXPORT_SYMBOL_GPL vmlinux 0x450be00a fwnode_get_nth_parent -EXPORT_SYMBOL_GPL vmlinux 0x45304d5b driver_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x45209a68 sk_psock_tls_strp_read EXPORT_SYMBOL_GPL vmlinux 0x4531624f usb_decode_ctrl EXPORT_SYMBOL_GPL vmlinux 0x4531ab62 copy_from_kernel_nofault +EXPORT_SYMBOL_GPL vmlinux 0x4534523b device_dma_supported EXPORT_SYMBOL_GPL vmlinux 0x4541fe0d mtrr_state -EXPORT_SYMBOL_GPL vmlinux 0x45455977 pci_set_host_bridge_release +EXPORT_SYMBOL_GPL vmlinux 0x454dca58 __unwind_start +EXPORT_SYMBOL_GPL vmlinux 0x454df881 regulator_force_disable EXPORT_SYMBOL_GPL vmlinux 0x45558f56 clk_unregister_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0x45579ebe ata_do_set_mode -EXPORT_SYMBOL_GPL vmlinux 0x455b17dd serdev_device_open -EXPORT_SYMBOL_GPL vmlinux 0x4568b33e handle_mm_fault +EXPORT_SYMBOL_GPL vmlinux 0x455e8ed2 fuse_dev_install +EXPORT_SYMBOL_GPL vmlinux 0x457227f9 blkg_conf_finish EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list -EXPORT_SYMBOL_GPL vmlinux 0x4576a743 devm_reset_control_array_get +EXPORT_SYMBOL_GPL vmlinux 0x457fab44 sk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x45805e19 wm8400_reset_codec_reg_cache +EXPORT_SYMBOL_GPL vmlinux 0x458f3aea clk_hw_get_parent_by_index +EXPORT_SYMBOL_GPL vmlinux 0x45934267 regulator_get_current_limit +EXPORT_SYMBOL_GPL vmlinux 0x459359df ping_err EXPORT_SYMBOL_GPL vmlinux 0x459e6151 mm_unaccount_pinned_pages -EXPORT_SYMBOL_GPL vmlinux 0x45a87e92 watchdog_notify_pretimeout +EXPORT_SYMBOL_GPL vmlinux 0x45a0dbab device_attach +EXPORT_SYMBOL_GPL vmlinux 0x45b31dc1 gpiod_direction_input +EXPORT_SYMBOL_GPL vmlinux 0x45bc34dc blk_mq_queue_inflight +EXPORT_SYMBOL_GPL vmlinux 0x45cc46d9 icc_put +EXPORT_SYMBOL_GPL vmlinux 0x45d00a63 dm_get_queue_limits EXPORT_SYMBOL_GPL vmlinux 0x45d14bdf hypercall_page -EXPORT_SYMBOL_GPL vmlinux 0x45d282d4 dev_pm_get_subsys_data -EXPORT_SYMBOL_GPL vmlinux 0x45defd80 platform_irq_count -EXPORT_SYMBOL_GPL vmlinux 0x45f24875 ndo_dflt_bridge_getlink -EXPORT_SYMBOL_GPL vmlinux 0x45fa01a4 hypervisor_kobj -EXPORT_SYMBOL_GPL vmlinux 0x45fc4b17 ata_sas_queuecmd -EXPORT_SYMBOL_GPL vmlinux 0x45fff2ba serial8250_do_startup +EXPORT_SYMBOL_GPL vmlinux 0x45d2c6d9 inet_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x45e3bf50 handle_irq_desc +EXPORT_SYMBOL_GPL vmlinux 0x45ec9bd2 dev_pm_opp_put_supported_hw +EXPORT_SYMBOL_GPL vmlinux 0x45f1ac84 usb_unpoison_urb EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x46016d14 xdp_rxq_info_reg EXPORT_SYMBOL_GPL vmlinux 0x46030074 __hrtimer_get_remaining -EXPORT_SYMBOL_GPL vmlinux 0x460bea15 ata_bmdma_setup -EXPORT_SYMBOL_GPL vmlinux 0x4627dbfa blk_queue_required_elevator_features -EXPORT_SYMBOL_GPL vmlinux 0x462999fc virtio_device_restore -EXPORT_SYMBOL_GPL vmlinux 0x462b9045 synth_event_trace_array -EXPORT_SYMBOL_GPL vmlinux 0x462e0b63 nvmem_cell_read_u16 +EXPORT_SYMBOL_GPL vmlinux 0x4611fcc0 genphy_c45_read_mdix +EXPORT_SYMBOL_GPL vmlinux 0x4620b930 __irq_set_handler +EXPORT_SYMBOL_GPL vmlinux 0x4625208d pci_epc_start +EXPORT_SYMBOL_GPL vmlinux 0x4626db2f nf_checksum EXPORT_SYMBOL_GPL vmlinux 0x463d8290 __irq_alloc_descs -EXPORT_SYMBOL_GPL vmlinux 0x4641de21 rtc_class_open -EXPORT_SYMBOL_GPL vmlinux 0x46577f5e phy_pm_runtime_get -EXPORT_SYMBOL_GPL vmlinux 0x465788a1 pinctrl_remove_gpio_range -EXPORT_SYMBOL_GPL vmlinux 0x4670529b crypto_shash_final -EXPORT_SYMBOL_GPL vmlinux 0x4675a3c5 vp_modern_config_vector +EXPORT_SYMBOL_GPL vmlinux 0x465cd835 mbox_free_channel +EXPORT_SYMBOL_GPL vmlinux 0x46654997 encrypt_blob +EXPORT_SYMBOL_GPL vmlinux 0x466d87d0 dm_internal_suspend_noflush +EXPORT_SYMBOL_GPL vmlinux 0x467bb9c2 regulator_disable_deferred EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4694f9e0 bpf_trace_run11 -EXPORT_SYMBOL_GPL vmlinux 0x46a11590 devlink_trap_groups_unregister -EXPORT_SYMBOL_GPL vmlinux 0x46a1e2d0 ata_bmdma_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x469aaf02 usb_match_id EXPORT_SYMBOL_GPL vmlinux 0x46a4b118 hrtimer_cancel EXPORT_SYMBOL_GPL vmlinux 0x46a6c9ef hv_get_tsc_page -EXPORT_SYMBOL_GPL vmlinux 0x46b24fe0 usb_get_intf -EXPORT_SYMBOL_GPL vmlinux 0x46b3cbda ata_sff_qc_fill_rtf -EXPORT_SYMBOL_GPL vmlinux 0x46b8e6c5 ahash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x46a9bd2c pci_num_vf +EXPORT_SYMBOL_GPL vmlinux 0x46ae4f76 pci_epf_bind +EXPORT_SYMBOL_GPL vmlinux 0x46be2347 vchan_tx_submit EXPORT_SYMBOL_GPL vmlinux 0x46c5be22 clk_multiplier_ops -EXPORT_SYMBOL_GPL vmlinux 0x46cb2e9e fib_nh_common_init -EXPORT_SYMBOL_GPL vmlinux 0x46d05cdb inet_twsk_hashdance -EXPORT_SYMBOL_GPL vmlinux 0x46e0f0d8 fat_setattr +EXPORT_SYMBOL_GPL vmlinux 0x46d06f7e devlink_traps_register +EXPORT_SYMBOL_GPL vmlinux 0x46de8bfe ata_sff_qc_fill_rtf +EXPORT_SYMBOL_GPL vmlinux 0x46dfcfc9 genphy_c45_check_and_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0x46ecc43c crypto_grab_aead EXPORT_SYMBOL_GPL vmlinux 0x46f42be0 devlink_fmsg_u8_put -EXPORT_SYMBOL_GPL vmlinux 0x470082e4 dm_table_device_name -EXPORT_SYMBOL_GPL vmlinux 0x471823a5 regmap_irq_get_domain +EXPORT_SYMBOL_GPL vmlinux 0x46fd2993 usb_hcd_is_primary_hcd +EXPORT_SYMBOL_GPL vmlinux 0x47035c29 bio_start_io_acct +EXPORT_SYMBOL_GPL vmlinux 0x470c9d71 phy_get +EXPORT_SYMBOL_GPL vmlinux 0x470cb3d4 tty_port_tty_hangup +EXPORT_SYMBOL_GPL vmlinux 0x470edf3d power_supply_am_i_supplied EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request -EXPORT_SYMBOL_GPL vmlinux 0x472ab2ef shmem_truncate_range -EXPORT_SYMBOL_GPL vmlinux 0x473ef09b __clk_hw_register_divider -EXPORT_SYMBOL_GPL vmlinux 0x4748bea8 crypto_stats_compress -EXPORT_SYMBOL_GPL vmlinux 0x47536c58 acpi_unbind_one -EXPORT_SYMBOL_GPL vmlinux 0x47555cc0 i2c_acpi_client_count -EXPORT_SYMBOL_GPL vmlinux 0x475c454f kthread_queue_work -EXPORT_SYMBOL_GPL vmlinux 0x47614e13 user_describe +EXPORT_SYMBOL_GPL vmlinux 0x47253287 param_set_uint_minmax +EXPORT_SYMBOL_GPL vmlinux 0x4725ead7 crypto_register_algs +EXPORT_SYMBOL_GPL vmlinux 0x472ed8b4 register_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x47309d8f blk_queue_set_zoned +EXPORT_SYMBOL_GPL vmlinux 0x47369a57 devm_regulator_register +EXPORT_SYMBOL_GPL vmlinux 0x47601649 ohci_suspend EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4772b841 crypto_stats_aead_decrypt -EXPORT_SYMBOL_GPL vmlinux 0x477ccfa3 blk_mq_debugfs_rq_show +EXPORT_SYMBOL_GPL vmlinux 0x4767d833 fuse_conn_put +EXPORT_SYMBOL_GPL vmlinux 0x477b882c clk_hw_get_parent EXPORT_SYMBOL_GPL vmlinux 0x47884890 system_power_efficient_wq EXPORT_SYMBOL_GPL vmlinux 0x478debf5 phy_10gbit_fec_features EXPORT_SYMBOL_GPL vmlinux 0x478e81f8 tcp_orphan_count +EXPORT_SYMBOL_GPL vmlinux 0x478f2fc4 vfio_init_group_dev +EXPORT_SYMBOL_GPL vmlinux 0x47917da9 crypto_register_acomps EXPORT_SYMBOL_GPL vmlinux 0x4791cb91 apei_mce_report_mem_error +EXPORT_SYMBOL_GPL vmlinux 0x4794ec19 mbox_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x4797fac4 __platform_driver_register EXPORT_SYMBOL_GPL vmlinux 0x479f7d4b clk_bulk_disable EXPORT_SYMBOL_GPL vmlinux 0x47aad3b9 have_governor_per_policy +EXPORT_SYMBOL_GPL vmlinux 0x47bbc16b pci_epc_init_notify +EXPORT_SYMBOL_GPL vmlinux 0x47c8438d dw_pcie_wait_for_link EXPORT_SYMBOL_GPL vmlinux 0x47d0eea2 acpi_lpat_temp_to_raw -EXPORT_SYMBOL_GPL vmlinux 0x47db3315 gpiod_get_value +EXPORT_SYMBOL_GPL vmlinux 0x47da3627 ata_pci_device_do_resume EXPORT_SYMBOL_GPL vmlinux 0x47de0dc7 clk_unregister_mux -EXPORT_SYMBOL_GPL vmlinux 0x47e23fbb clk_hw_round_rate -EXPORT_SYMBOL_GPL vmlinux 0x4800f4ae unregister_wide_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x4802b89b device_create_file EXPORT_SYMBOL_GPL vmlinux 0x480305ca kmsg_dump_rewind +EXPORT_SYMBOL_GPL vmlinux 0x480c03f4 ata_host_put +EXPORT_SYMBOL_GPL vmlinux 0x481629d8 devm_gpiod_put EXPORT_SYMBOL_GPL vmlinux 0x481f9b7d mpi_mulm -EXPORT_SYMBOL_GPL vmlinux 0x4820f241 dax_inode EXPORT_SYMBOL_GPL vmlinux 0x4828e77b acpi_scan_lock_acquire -EXPORT_SYMBOL_GPL vmlinux 0x482bd651 __auxiliary_driver_register -EXPORT_SYMBOL_GPL vmlinux 0x48353c36 extcon_set_state -EXPORT_SYMBOL_GPL vmlinux 0x48485a4e __traceiter_detach_device_from_domain -EXPORT_SYMBOL_GPL vmlinux 0x484d2461 iommu_sva_alloc_pasid -EXPORT_SYMBOL_GPL vmlinux 0x4852fd62 virtqueue_poll -EXPORT_SYMBOL_GPL vmlinux 0x4854e2d5 devm_pinctrl_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4857e05f subsys_dev_iter_init -EXPORT_SYMBOL_GPL vmlinux 0x485d1c62 l3mdev_master_upper_ifindex_by_index_rcu -EXPORT_SYMBOL_GPL vmlinux 0x485f6e58 extcon_get_extcon_dev -EXPORT_SYMBOL_GPL vmlinux 0x4864f5df crypto_hash_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x482d5718 perf_pmu_unregister +EXPORT_SYMBOL_GPL vmlinux 0x483b066e devm_i2c_add_adapter +EXPORT_SYMBOL_GPL vmlinux 0x48495e1e adp5520_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x484c8002 trace_put_event_file +EXPORT_SYMBOL_GPL vmlinux 0x485bac67 skb_mpls_pop +EXPORT_SYMBOL_GPL vmlinux 0x48640adb devlink_param_publish +EXPORT_SYMBOL_GPL vmlinux 0x48689af4 xfrm_audit_state_delete EXPORT_SYMBOL_GPL vmlinux 0x486dedc3 ghes_unregister_vendor_record_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4886dbcd mmc_crypto_prepare_req +EXPORT_SYMBOL_GPL vmlinux 0x486ee08b phy_set_media +EXPORT_SYMBOL_GPL vmlinux 0x4870e73f dev_pm_opp_set_regulators +EXPORT_SYMBOL_GPL vmlinux 0x487ba4f2 aead_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x48857e0f __SCK__tp_func_non_standard_event EXPORT_SYMBOL_GPL vmlinux 0x48a3a923 pkcs7_get_content_data EXPORT_SYMBOL_GPL vmlinux 0x48a3d20b mctrl_gpio_get -EXPORT_SYMBOL_GPL vmlinux 0x48a5de4d virtio_max_dma_size -EXPORT_SYMBOL_GPL vmlinux 0x48afa7fe dev_attr_ncq_prio_supported -EXPORT_SYMBOL_GPL vmlinux 0x48b83a47 crypto_shash_tfm_digest -EXPORT_SYMBOL_GPL vmlinux 0x48b989b9 debugfs_remove -EXPORT_SYMBOL_GPL vmlinux 0x48c7efb5 mbox_request_channel -EXPORT_SYMBOL_GPL vmlinux 0x48cbb970 usb_unpoison_urb -EXPORT_SYMBOL_GPL vmlinux 0x48e3a047 evict_inodes -EXPORT_SYMBOL_GPL vmlinux 0x48e7c760 dw_pcie_ep_init_complete -EXPORT_SYMBOL_GPL vmlinux 0x48e96d8b rio_map_inb_region +EXPORT_SYMBOL_GPL vmlinux 0x48a98661 regulator_list_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0x48bc9974 ata_sff_hsm_move +EXPORT_SYMBOL_GPL vmlinux 0x48c4264a pinctrl_register_and_init +EXPORT_SYMBOL_GPL vmlinux 0x48cc54c9 cpufreq_generic_init +EXPORT_SYMBOL_GPL vmlinux 0x48d680a8 dw_pcie_ep_init_notify +EXPORT_SYMBOL_GPL vmlinux 0x48d73fc7 devlink_dpipe_table_resource_set +EXPORT_SYMBOL_GPL vmlinux 0x48e4be63 iommu_page_response EXPORT_SYMBOL_GPL vmlinux 0x48f49400 apei_hest_parse -EXPORT_SYMBOL_GPL vmlinux 0x48faa91a mptcp_get_reset_option -EXPORT_SYMBOL_GPL vmlinux 0x49013ac1 power_supply_changed -EXPORT_SYMBOL_GPL vmlinux 0x49035d36 tpm_default_chip -EXPORT_SYMBOL_GPL vmlinux 0x4918adbc pci_disable_rom -EXPORT_SYMBOL_GPL vmlinux 0x49190271 trace_array_get_by_name -EXPORT_SYMBOL_GPL vmlinux 0x491fecee crypto_register_rngs +EXPORT_SYMBOL_GPL vmlinux 0x48f603d4 tpm_is_tpm2 +EXPORT_SYMBOL_GPL vmlinux 0x48f63164 usb_hcd_amd_remote_wakeup_quirk EXPORT_SYMBOL_GPL vmlinux 0x49242bc7 freezer_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x492d3f21 dw_pcie_find_capability +EXPORT_SYMBOL_GPL vmlinux 0x4933ac6f _proc_mkdir EXPORT_SYMBOL_GPL vmlinux 0x4934bdd0 crypto_check_attr_type -EXPORT_SYMBOL_GPL vmlinux 0x4935ea6f inet6_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x4938b98f gpiod_get_direction EXPORT_SYMBOL_GPL vmlinux 0x4939ebcd numa_map_to_online_node -EXPORT_SYMBOL_GPL vmlinux 0x493b039c transport_class_register -EXPORT_SYMBOL_GPL vmlinux 0x495868ad do_tcp_sendpages +EXPORT_SYMBOL_GPL vmlinux 0x4942e38e skb_gso_validate_network_len +EXPORT_SYMBOL_GPL vmlinux 0x494ed0e2 fat_free_clusters EXPORT_SYMBOL_GPL vmlinux 0x495a4221 __SCT__tp_func_rpm_return_int -EXPORT_SYMBOL_GPL vmlinux 0x495badbb rio_request_inb_dbell EXPORT_SYMBOL_GPL vmlinux 0x49608959 migrate_disable -EXPORT_SYMBOL_GPL vmlinux 0x496678c5 bpf_preload_ops -EXPORT_SYMBOL_GPL vmlinux 0x4974c1ef regulator_is_equal -EXPORT_SYMBOL_GPL vmlinux 0x497584e4 aead_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x498358e0 __unwind_start +EXPORT_SYMBOL_GPL vmlinux 0x4973c0c1 usb_role_switch_get +EXPORT_SYMBOL_GPL vmlinux 0x4975443b crypto_larval_kill +EXPORT_SYMBOL_GPL vmlinux 0x4977be3b scsi_register_device_handler +EXPORT_SYMBOL_GPL vmlinux 0x497b16e0 wakeup_source_destroy +EXPORT_SYMBOL_GPL vmlinux 0x498670de param_set_bool_enable_only EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue EXPORT_SYMBOL_GPL vmlinux 0x49951708 sev_enable_key -EXPORT_SYMBOL_GPL vmlinux 0x4995207e sysfs_create_link -EXPORT_SYMBOL_GPL vmlinux 0x49955dcf iomap_writepage -EXPORT_SYMBOL_GPL vmlinux 0x4999eb43 regulator_allow_bypass -EXPORT_SYMBOL_GPL vmlinux 0x49b32443 pm_runtime_allow -EXPORT_SYMBOL_GPL vmlinux 0x49c117d2 kgdb_register_io_module -EXPORT_SYMBOL_GPL vmlinux 0x49c14a61 ex_handler_fault -EXPORT_SYMBOL_GPL vmlinux 0x49c31383 espintcp_push_skb +EXPORT_SYMBOL_GPL vmlinux 0x49b452df crypto_stats_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x49b56ab7 iommu_domain_alloc +EXPORT_SYMBOL_GPL vmlinux 0x49bd4c38 fat_setattr +EXPORT_SYMBOL_GPL vmlinux 0x49c6ee9d nvmem_cell_read_u32 +EXPORT_SYMBOL_GPL vmlinux 0x49cced58 ehci_hub_control EXPORT_SYMBOL_GPL vmlinux 0x49cd25ed alloc_workqueue -EXPORT_SYMBOL_GPL vmlinux 0x49cdd750 blkcg_print_blkgs -EXPORT_SYMBOL_GPL vmlinux 0x49cff463 uart_try_toggle_sysrq -EXPORT_SYMBOL_GPL vmlinux 0x49db6226 usb_set_configuration -EXPORT_SYMBOL_GPL vmlinux 0x49de71b0 regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x49da6851 kick_process +EXPORT_SYMBOL_GPL vmlinux 0x49e65e87 clk_register_fractional_divider EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0x49eb25e0 syscon_node_to_regmap -EXPORT_SYMBOL_GPL vmlinux 0x49f1f435 led_classdev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x49fc57db serial8250_release_dma -EXPORT_SYMBOL_GPL vmlinux 0x4a0113d6 skb_send_sock_locked -EXPORT_SYMBOL_GPL vmlinux 0x4a033a02 device_set_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0x49f4fa96 of_icc_bulk_get EXPORT_SYMBOL_GPL vmlinux 0x4a17ed66 sysrq_mask -EXPORT_SYMBOL_GPL vmlinux 0x4a19e05b uprobe_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4a326a1c gov_attr_set_put +EXPORT_SYMBOL_GPL vmlinux 0x4a184003 hwspin_lock_register +EXPORT_SYMBOL_GPL vmlinux 0x4a2a9318 xdp_convert_zc_to_xdp_frame +EXPORT_SYMBOL_GPL vmlinux 0x4a2b449a security_inode_permission +EXPORT_SYMBOL_GPL vmlinux 0x4a416816 dev_forward_skb EXPORT_SYMBOL_GPL vmlinux 0x4a420d09 acpi_bus_detach_private_data -EXPORT_SYMBOL_GPL vmlinux 0x4a448250 proc_get_parent_data -EXPORT_SYMBOL_GPL vmlinux 0x4a4a9a13 pinctrl_dev_get_devname -EXPORT_SYMBOL_GPL vmlinux 0x4a64f73d icc_provider_del -EXPORT_SYMBOL_GPL vmlinux 0x4a72b17d device_dma_supported -EXPORT_SYMBOL_GPL vmlinux 0x4a842bd5 vfs_setlease -EXPORT_SYMBOL_GPL vmlinux 0x4ab090aa devres_open_group -EXPORT_SYMBOL_GPL vmlinux 0x4abeec82 power_supply_set_property -EXPORT_SYMBOL_GPL vmlinux 0x4ac7fe90 driver_attach -EXPORT_SYMBOL_GPL vmlinux 0x4acb7940 pm_generic_restore_noirq -EXPORT_SYMBOL_GPL vmlinux 0x4ad28174 acpi_dma_request_slave_chan_by_name -EXPORT_SYMBOL_GPL vmlinux 0x4ad356b9 pci_d3cold_enable -EXPORT_SYMBOL_GPL vmlinux 0x4add1f13 class_compat_remove_link -EXPORT_SYMBOL_GPL vmlinux 0x4addd291 fixed_phy_set_link_update -EXPORT_SYMBOL_GPL vmlinux 0x4ade66d1 ata_sff_qc_issue -EXPORT_SYMBOL_GPL vmlinux 0x4af4330a md_kick_rdev_from_array -EXPORT_SYMBOL_GPL vmlinux 0x4b004d18 dev_pm_opp_set_opp -EXPORT_SYMBOL_GPL vmlinux 0x4b066739 udp6_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x4b2a7ca6 scsi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x4b4a19b5 blk_req_zone_write_trylock +EXPORT_SYMBOL_GPL vmlinux 0x4a48025f nvdimm_bus_add_badrange +EXPORT_SYMBOL_GPL vmlinux 0x4a4829f9 kthread_cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x4a4c48f7 pci_vpd_alloc +EXPORT_SYMBOL_GPL vmlinux 0x4a539c79 wait_for_stable_page +EXPORT_SYMBOL_GPL vmlinux 0x4a691095 bus_register +EXPORT_SYMBOL_GPL vmlinux 0x4a6dcb32 ack_all_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x4a8b2f87 thermal_zone_get_offset +EXPORT_SYMBOL_GPL vmlinux 0x4a99e523 pstore_register +EXPORT_SYMBOL_GPL vmlinux 0x4a9d201b virtqueue_get_used_addr +EXPORT_SYMBOL_GPL vmlinux 0x4aa7eeb6 __traceiter_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x4aaa11f1 usb_control_msg_send +EXPORT_SYMBOL_GPL vmlinux 0x4ad445c3 __devm_clk_hw_register_mux +EXPORT_SYMBOL_GPL vmlinux 0x4adb7063 efivar_entry_iter +EXPORT_SYMBOL_GPL vmlinux 0x4ae4f2dc preempt_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x4af7ddad fwnode_handle_get +EXPORT_SYMBOL_GPL vmlinux 0x4b01bcac iptunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0x4b1f33d9 pci_find_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0x4b34aef9 adp5520_read +EXPORT_SYMBOL_GPL vmlinux 0x4b3b34ee icc_get_name EXPORT_SYMBOL_GPL vmlinux 0x4b51f74c ata_xfer_mode2mask EXPORT_SYMBOL_GPL vmlinux 0x4b56ce05 xenmem_reservation_increase EXPORT_SYMBOL_GPL vmlinux 0x4b5acf74 rhashtable_init -EXPORT_SYMBOL_GPL vmlinux 0x4b6045c0 nl_table +EXPORT_SYMBOL_GPL vmlinux 0x4b6df577 led_classdev_suspend EXPORT_SYMBOL_GPL vmlinux 0x4b72009e dynamic_debug_exec_queries -EXPORT_SYMBOL_GPL vmlinux 0x4b753a65 br_fdb_test_addr_hook +EXPORT_SYMBOL_GPL vmlinux 0x4b723f8d task_cgroup_path +EXPORT_SYMBOL_GPL vmlinux 0x4b755991 skb_consume_udp EXPORT_SYMBOL_GPL vmlinux 0x4b762828 start_thread -EXPORT_SYMBOL_GPL vmlinux 0x4b840969 synth_event_trace_start +EXPORT_SYMBOL_GPL vmlinux 0x4b821eff kobject_uevent EXPORT_SYMBOL_GPL vmlinux 0x4b931968 xen_features -EXPORT_SYMBOL_GPL vmlinux 0x4b9c8049 __mmu_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x4bc0831d __scsi_init_queue +EXPORT_SYMBOL_GPL vmlinux 0x4b9756f9 gpiod_set_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x4b9bf7e2 events_sysfs_show +EXPORT_SYMBOL_GPL vmlinux 0x4bb85abc ata_pci_bmdma_init_one EXPORT_SYMBOL_GPL vmlinux 0x4bc8727f xen_balloon_init EXPORT_SYMBOL_GPL vmlinux 0x4bd6f08b misc_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x4bd9e3cf genphy_c45_read_mdix -EXPORT_SYMBOL_GPL vmlinux 0x4bf38838 ata_host_register -EXPORT_SYMBOL_GPL vmlinux 0x4c0a6b09 component_master_del -EXPORT_SYMBOL_GPL vmlinux 0x4c1e29c0 rt_mutex_trylock +EXPORT_SYMBOL_GPL vmlinux 0x4bf45827 scsi_host_block +EXPORT_SYMBOL_GPL vmlinux 0x4bf586ce devm_phy_put +EXPORT_SYMBOL_GPL vmlinux 0x4bff6ffb pm_clk_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4c0c5c06 dm_hold +EXPORT_SYMBOL_GPL vmlinux 0x4c0feb4d is_transparent_hugepage +EXPORT_SYMBOL_GPL vmlinux 0x4c16e129 inet_twsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x4c2056ba badblocks_show EXPORT_SYMBOL_GPL vmlinux 0x4c2c0ea7 evtchn_make_refcounted -EXPORT_SYMBOL_GPL vmlinux 0x4c429fe9 pm_clk_remove_clk -EXPORT_SYMBOL_GPL vmlinux 0x4c48bcd7 debugfs_create_blob +EXPORT_SYMBOL_GPL vmlinux 0x4c316204 bind_interdomain_evtchn_to_irqhandler_lateeoi +EXPORT_SYMBOL_GPL vmlinux 0x4c345b49 clk_hw_get_rate +EXPORT_SYMBOL_GPL vmlinux 0x4c49a0ce pci_assign_unassigned_bus_resources EXPORT_SYMBOL_GPL vmlinux 0x4c49f1de hv_clock_per_cpu +EXPORT_SYMBOL_GPL vmlinux 0x4c52862b fsnotify_add_mark EXPORT_SYMBOL_GPL vmlinux 0x4c549b36 __traceiter_xhci_dbg_quirks -EXPORT_SYMBOL_GPL vmlinux 0x4c6abd66 gpiochip_disable_irq EXPORT_SYMBOL_GPL vmlinux 0x4c762b5c x86_stepping -EXPORT_SYMBOL_GPL vmlinux 0x4c784fd3 pm_runtime_force_suspend -EXPORT_SYMBOL_GPL vmlinux 0x4c81551e vc_scrolldelta_helper -EXPORT_SYMBOL_GPL vmlinux 0x4c81603c xenbus_grant_ring +EXPORT_SYMBOL_GPL vmlinux 0x4c8a8ba1 serial8250_do_set_ldisc EXPORT_SYMBOL_GPL vmlinux 0x4c8adfe1 hv_root_partition -EXPORT_SYMBOL_GPL vmlinux 0x4c8c291a find_extend_vma -EXPORT_SYMBOL_GPL vmlinux 0x4c984d39 __traceiter_xdp_exception -EXPORT_SYMBOL_GPL vmlinux 0x4c98d30d fuse_conn_put -EXPORT_SYMBOL_GPL vmlinux 0x4cae6968 nvmem_cell_read_u8 -EXPORT_SYMBOL_GPL vmlinux 0x4cb007e0 con_debug_enter +EXPORT_SYMBOL_GPL vmlinux 0x4c8b2920 proc_create_net_data +EXPORT_SYMBOL_GPL vmlinux 0x4c9128a4 irq_domain_associate +EXPORT_SYMBOL_GPL vmlinux 0x4c9cd9a8 usb_phy_set_charger_state EXPORT_SYMBOL_GPL vmlinux 0x4cb27100 ktime_get_snapshot -EXPORT_SYMBOL_GPL vmlinux 0x4cd46cc8 wm831x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x4cce57aa regcache_sync EXPORT_SYMBOL_GPL vmlinux 0x4cf699b8 vfio_pci_core_set_params EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable +EXPORT_SYMBOL_GPL vmlinux 0x4d0b2dd5 devm_kasprintf EXPORT_SYMBOL_GPL vmlinux 0x4d0b752f alloc_iova +EXPORT_SYMBOL_GPL vmlinux 0x4d161b5b umd_cleanup_helper EXPORT_SYMBOL_GPL vmlinux 0x4d202b8c __xas_prev -EXPORT_SYMBOL_GPL vmlinux 0x4d254abd skb_splice_bits -EXPORT_SYMBOL_GPL vmlinux 0x4d32830b gpiochip_remove_pin_ranges -EXPORT_SYMBOL_GPL vmlinux 0x4d3c8da1 serdev_device_set_baudrate -EXPORT_SYMBOL_GPL vmlinux 0x4d4a56e2 phy_create_lookup +EXPORT_SYMBOL_GPL vmlinux 0x4d3bfd59 md_account_bio +EXPORT_SYMBOL_GPL vmlinux 0x4d4316bf tcp_is_ulp_esp +EXPORT_SYMBOL_GPL vmlinux 0x4d43d802 dev_nit_active +EXPORT_SYMBOL_GPL vmlinux 0x4d497bb5 pci_user_read_config_dword EXPORT_SYMBOL_GPL vmlinux 0x4d4d7b79 blk_mq_map_queues -EXPORT_SYMBOL_GPL vmlinux 0x4d547364 sched_trace_rq_avg_irq -EXPORT_SYMBOL_GPL vmlinux 0x4d64cf35 evm_inode_init_security -EXPORT_SYMBOL_GPL vmlinux 0x4d6bf4b0 devm_gpiochip_add_data_with_key +EXPORT_SYMBOL_GPL vmlinux 0x4d4fd465 __bio_add_page +EXPORT_SYMBOL_GPL vmlinux 0x4d518caf dst_cache_get +EXPORT_SYMBOL_GPL vmlinux 0x4d619dde perf_event_read_value +EXPORT_SYMBOL_GPL vmlinux 0x4d66c621 dev_fill_metadata_dst EXPORT_SYMBOL_GPL vmlinux 0x4d6d0bbc iommu_group_ref_get -EXPORT_SYMBOL_GPL vmlinux 0x4d6ef428 pci_enable_ats -EXPORT_SYMBOL_GPL vmlinux 0x4d6f2096 ip_fib_metrics_init EXPORT_SYMBOL_GPL vmlinux 0x4d7272e4 migrate_enable -EXPORT_SYMBOL_GPL vmlinux 0x4d82ecad iommu_fwspec_free +EXPORT_SYMBOL_GPL vmlinux 0x4d77412a ata_ehi_clear_desc +EXPORT_SYMBOL_GPL vmlinux 0x4d8965e5 trace_event_buffer_reserve EXPORT_SYMBOL_GPL vmlinux 0x4d8a96ab xas_set_mark -EXPORT_SYMBOL_GPL vmlinux 0x4d9666ae dm_path_uevent -EXPORT_SYMBOL_GPL vmlinux 0x4d9e4fa4 shmem_file_setup_with_mnt +EXPORT_SYMBOL_GPL vmlinux 0x4d8b6d34 __SCK__tp_func_sched_util_est_cfs_tp EXPORT_SYMBOL_GPL vmlinux 0x4da1f4a7 list_lru_del +EXPORT_SYMBOL_GPL vmlinux 0x4da749fc usb_hcd_pci_pm_ops EXPORT_SYMBOL_GPL vmlinux 0x4dae16e4 i2c_put_dma_safe_msg_buf -EXPORT_SYMBOL_GPL vmlinux 0x4dae3139 gnttab_dma_free_pages -EXPORT_SYMBOL_GPL vmlinux 0x4dc1a0f5 __ip6_local_out -EXPORT_SYMBOL_GPL vmlinux 0x4dc62236 posix_clock_register -EXPORT_SYMBOL_GPL vmlinux 0x4dca2583 dev_attr_link_power_management_policy +EXPORT_SYMBOL_GPL vmlinux 0x4dbe1ff6 tcp_abort +EXPORT_SYMBOL_GPL vmlinux 0x4dc41e5b __tracepoint_tcp_send_reset +EXPORT_SYMBOL_GPL vmlinux 0x4dd7c6dc power_supply_put_battery_info EXPORT_SYMBOL_GPL vmlinux 0x4dd9d14d cn_netlink_send_mult +EXPORT_SYMBOL_GPL vmlinux 0x4ddfd9a7 fib_table_lookup EXPORT_SYMBOL_GPL vmlinux 0x4de17ab3 usb_state_string +EXPORT_SYMBOL_GPL vmlinux 0x4ded9750 irq_domain_pop_irq +EXPORT_SYMBOL_GPL vmlinux 0x4deeba21 power_supply_powers +EXPORT_SYMBOL_GPL vmlinux 0x4deee8c9 invalidate_inode_pages2 EXPORT_SYMBOL_GPL vmlinux 0x4dff61e5 wwan_port_txoff 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 0x4e3617e2 device_property_read_u16_array -EXPORT_SYMBOL_GPL vmlinux 0x4e386938 fat_getattr -EXPORT_SYMBOL_GPL vmlinux 0x4e41a9de ata_bmdma_port_start32 +EXPORT_SYMBOL_GPL vmlinux 0x4e1bdf4a __netdev_watchdog_up +EXPORT_SYMBOL_GPL vmlinux 0x4e22e47e pci_set_host_bridge_release +EXPORT_SYMBOL_GPL vmlinux 0x4e247bd7 pingv6_prot +EXPORT_SYMBOL_GPL vmlinux 0x4e3766d2 attribute_container_register +EXPORT_SYMBOL_GPL vmlinux 0x4e38339a alloc_io_pgtable_ops +EXPORT_SYMBOL_GPL vmlinux 0x4e3abd79 bus_find_device +EXPORT_SYMBOL_GPL vmlinux 0x4e3ffc61 icc_provider_del EXPORT_SYMBOL_GPL vmlinux 0x4e4c37e2 freq_qos_remove_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4e4c4ff0 spi_res_release -EXPORT_SYMBOL_GPL vmlinux 0x4e5292ba __SCK__tp_func_neigh_event_send_done -EXPORT_SYMBOL_GPL vmlinux 0x4e5954db xenbus_dev_cancel -EXPORT_SYMBOL_GPL vmlinux 0x4e5b433b devm_free_percpu -EXPORT_SYMBOL_GPL vmlinux 0x4e8fdc9e pci_hp_create_module_link -EXPORT_SYMBOL_GPL vmlinux 0x4e93ffcf inet6_compat_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x4e9ff15b irq_set_default_host -EXPORT_SYMBOL_GPL vmlinux 0x4ea74d65 __reset_control_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x4e690baf irq_domain_free_irqs_parent +EXPORT_SYMBOL_GPL vmlinux 0x4e692e3a x86_vector_domain +EXPORT_SYMBOL_GPL vmlinux 0x4e6d142f scsi_ioctl_block_when_processing_errors +EXPORT_SYMBOL_GPL vmlinux 0x4e7666d5 relay_reset +EXPORT_SYMBOL_GPL vmlinux 0x4e78690f fw_devlink_purge_absent_suppliers +EXPORT_SYMBOL_GPL vmlinux 0x4e79ff61 mmc_send_abort_tuning +EXPORT_SYMBOL_GPL vmlinux 0x4e8b96d1 ata_pci_remove_one +EXPORT_SYMBOL_GPL vmlinux 0x4e915a82 vp_modern_probe EXPORT_SYMBOL_GPL vmlinux 0x4eac5fc1 cpu_mitigations_auto_nosmt -EXPORT_SYMBOL_GPL vmlinux 0x4eb3e2b6 ata_sas_port_start -EXPORT_SYMBOL_GPL vmlinux 0x4ebcd284 thermal_zone_get_offset +EXPORT_SYMBOL_GPL vmlinux 0x4eaf7c70 cpuidle_get_driver +EXPORT_SYMBOL_GPL vmlinux 0x4ebeb171 fat_truncate_time +EXPORT_SYMBOL_GPL vmlinux 0x4ecc58fb rio_request_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x4ecdd143 irq_domain_simple_ops EXPORT_SYMBOL_GPL vmlinux 0x4ece3615 blocking_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4ed6723b dax_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0x4ed735c2 screen_pos -EXPORT_SYMBOL_GPL vmlinux 0x4ef4d834 nf_hook_entries_insert_raw +EXPORT_SYMBOL_GPL vmlinux 0x4edc4ddc public_key_subtype +EXPORT_SYMBOL_GPL vmlinux 0x4ee5d46d l3mdev_master_upper_ifindex_by_index_rcu EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context -EXPORT_SYMBOL_GPL vmlinux 0x4ef8bfc5 crypto_aead_encrypt EXPORT_SYMBOL_GPL vmlinux 0x4efcf021 mpi_normalize -EXPORT_SYMBOL_GPL vmlinux 0x4eff2018 dma_alloc_pages -EXPORT_SYMBOL_GPL vmlinux 0x4f208c07 memunmap_pages +EXPORT_SYMBOL_GPL vmlinux 0x4f0ccd34 regulator_set_load +EXPORT_SYMBOL_GPL vmlinux 0x4f133fda usb_hcd_pci_remove EXPORT_SYMBOL_GPL vmlinux 0x4f2593f0 btree_update -EXPORT_SYMBOL_GPL vmlinux 0x4f298776 virtqueue_kick EXPORT_SYMBOL_GPL vmlinux 0x4f2c996d kmsg_dump_get_line -EXPORT_SYMBOL_GPL vmlinux 0x4f2ecc89 pci_bridge_secondary_bus_reset -EXPORT_SYMBOL_GPL vmlinux 0x4f419a57 mnt_drop_write -EXPORT_SYMBOL_GPL vmlinux 0x4f58221c driver_find -EXPORT_SYMBOL_GPL vmlinux 0x4f594e13 debugfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0x4f2ccf8c devm_spi_mem_dirmap_destroy +EXPORT_SYMBOL_GPL vmlinux 0x4f437353 ata_sff_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x4f4f4792 xenbus_probe_devices +EXPORT_SYMBOL_GPL vmlinux 0x4f62f906 vfio_external_group_match_file +EXPORT_SYMBOL_GPL vmlinux 0x4f64c949 lp8788_update_bits EXPORT_SYMBOL_GPL vmlinux 0x4f6a07fe show_rcu_gp_kthreads EXPORT_SYMBOL_GPL vmlinux 0x4f722eb0 acpi_ec_remove_query_handler EXPORT_SYMBOL_GPL vmlinux 0x4f72a987 uart_parse_options -EXPORT_SYMBOL_GPL vmlinux 0x4f73c6e8 xhci_suspend -EXPORT_SYMBOL_GPL vmlinux 0x4f747b37 tps65912_device_exit -EXPORT_SYMBOL_GPL vmlinux 0x4f7d22b2 __traceiter_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0x4f803611 crypto_register_scomp EXPORT_SYMBOL_GPL vmlinux 0x4f8546af cpuidle_poll_state_init -EXPORT_SYMBOL_GPL vmlinux 0x4fab3be4 regulator_bulk_set_supply_names -EXPORT_SYMBOL_GPL vmlinux 0x4fbc95f7 devm_pinctrl_get -EXPORT_SYMBOL_GPL vmlinux 0x4fc4adb5 spi_mem_driver_register_with_owner -EXPORT_SYMBOL_GPL vmlinux 0x4fcc90f8 irq_chip_disable_parent +EXPORT_SYMBOL_GPL vmlinux 0x4f90e091 __ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0x4f93b42d phy_driver_is_genphy_10g +EXPORT_SYMBOL_GPL vmlinux 0x4f9bb9b4 bdi_dev_name +EXPORT_SYMBOL_GPL vmlinux 0x4fac1708 device_add_software_node +EXPORT_SYMBOL_GPL vmlinux 0x4fbc48d5 crypto_alg_extsize +EXPORT_SYMBOL_GPL vmlinux 0x4fbd72c3 sfp_add_phy +EXPORT_SYMBOL_GPL vmlinux 0x4fc179a2 led_classdev_notify_brightness_hw_changed EXPORT_SYMBOL_GPL vmlinux 0x4fdc945d sata_deb_timing_normal EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4ffa5e42 __tracepoint_pelt_rt_tp EXPORT_SYMBOL_GPL vmlinux 0x500c768c apei_exec_read_register -EXPORT_SYMBOL_GPL vmlinux 0x501abb56 dev_pm_enable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x500f032e serdev_device_add +EXPORT_SYMBOL_GPL vmlinux 0x50161c48 mmc_crypto_prepare_req +EXPORT_SYMBOL_GPL vmlinux 0x5016bf66 devlink_dpipe_table_unregister EXPORT_SYMBOL_GPL vmlinux 0x5026585c xen_irq_from_gsi -EXPORT_SYMBOL_GPL vmlinux 0x502e2cc8 acpi_device_fix_up_power -EXPORT_SYMBOL_GPL vmlinux 0x503bc842 spi_controller_dma_unmap_mem_op_data -EXPORT_SYMBOL_GPL vmlinux 0x5049da5e __fput_sync -EXPORT_SYMBOL_GPL vmlinux 0x504c5334 fscrypt_prepare_symlink +EXPORT_SYMBOL_GPL vmlinux 0x5033e385 regulator_get_error_flags +EXPORT_SYMBOL_GPL vmlinux 0x503a9ea9 __alloc_pages_bulk +EXPORT_SYMBOL_GPL vmlinux 0x503bb745 fwnode_graph_get_remote_port +EXPORT_SYMBOL_GPL vmlinux 0x504f8941 regulator_list_voltage_linear_range EXPORT_SYMBOL_GPL vmlinux 0x50759163 kobject_init_and_add -EXPORT_SYMBOL_GPL vmlinux 0x507789d8 securityfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0x5075f143 regmap_read +EXPORT_SYMBOL_GPL vmlinux 0x507b551a regulator_is_supported_voltage +EXPORT_SYMBOL_GPL vmlinux 0x508a8817 platform_device_del +EXPORT_SYMBOL_GPL vmlinux 0x508b07dc clk_hw_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x508d0d9f __clocksource_register_scale EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start EXPORT_SYMBOL_GPL vmlinux 0x509d5f55 clk_divider_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0x50aa047a vp_modern_set_queue_size -EXPORT_SYMBOL_GPL vmlinux 0x50ad5747 devm_remove_action +EXPORT_SYMBOL_GPL vmlinux 0x50a367d4 fuse_fill_super_common +EXPORT_SYMBOL_GPL vmlinux 0x50a6159d vfio_group_iommu_domain EXPORT_SYMBOL_GPL vmlinux 0x50b03f5d l1tf_vmx_mitigation -EXPORT_SYMBOL_GPL vmlinux 0x50c158c9 dev_fill_forward_path +EXPORT_SYMBOL_GPL vmlinux 0x50b42ba1 entry_ibpb +EXPORT_SYMBOL_GPL vmlinux 0x50c30f7d fscrypt_drop_inode EXPORT_SYMBOL_GPL vmlinux 0x50d1f870 pgprot_writecombine EXPORT_SYMBOL_GPL vmlinux 0x50df94f5 btree_insert +EXPORT_SYMBOL_GPL vmlinux 0x50e4f05f rio_unregister_driver EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num -EXPORT_SYMBOL_GPL vmlinux 0x50e9fc85 serial8250_set_defaults -EXPORT_SYMBOL_GPL vmlinux 0x50f4423d __devm_rtc_register_device -EXPORT_SYMBOL_GPL vmlinux 0x50f5926e cgroup_attach_task_all +EXPORT_SYMBOL_GPL vmlinux 0x50f73baf fuse_dev_operations EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up -EXPORT_SYMBOL_GPL vmlinux 0x50fe7331 dw_pcie_setup_rc -EXPORT_SYMBOL_GPL vmlinux 0x511bf5bd spi_mem_exec_op -EXPORT_SYMBOL_GPL vmlinux 0x511d406e dev_pm_opp_set_supported_hw +EXPORT_SYMBOL_GPL vmlinux 0x5100c3a3 ata_wait_register +EXPORT_SYMBOL_GPL vmlinux 0x5108d895 acpi_dev_pm_attach +EXPORT_SYMBOL_GPL vmlinux 0x51219695 devm_nvmem_cell_get +EXPORT_SYMBOL_GPL vmlinux 0x51339ad7 usb_enable_ltm EXPORT_SYMBOL_GPL vmlinux 0x51390c96 rcu_barrier_tasks_rude -EXPORT_SYMBOL_GPL vmlinux 0x5148b68e dev_pm_opp_get_opp_table -EXPORT_SYMBOL_GPL vmlinux 0x51742387 rio_request_outb_dbell -EXPORT_SYMBOL_GPL vmlinux 0x51747fcd inverse_translate +EXPORT_SYMBOL_GPL vmlinux 0x513af47b ata_sff_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x514c3470 securityfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x51872cf2 devlink_register EXPORT_SYMBOL_GPL vmlinux 0x5187ac4b xen_store_evtchn EXPORT_SYMBOL_GPL vmlinux 0x518c2fc6 hpet_rtc_dropped_irq -EXPORT_SYMBOL_GPL vmlinux 0x519e1f9b sdio_readw +EXPORT_SYMBOL_GPL vmlinux 0x519208cc skb_mpls_update_lse +EXPORT_SYMBOL_GPL vmlinux 0x51938e4c class_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x519493cb usb_for_each_port +EXPORT_SYMBOL_GPL vmlinux 0x5195b1d9 acpi_subsys_runtime_resume EXPORT_SYMBOL_GPL vmlinux 0x51a348cc usb_role_switch_set_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x51c86cc4 proc_create_net_single +EXPORT_SYMBOL_GPL vmlinux 0x51ccc6f8 debugfs_create_dir EXPORT_SYMBOL_GPL vmlinux 0x51d13875 nf_hooks_lwtunnel_sysctl_handler -EXPORT_SYMBOL_GPL vmlinux 0x51ddc3df rdev_get_id -EXPORT_SYMBOL_GPL vmlinux 0x51e17935 spi_mem_poll_status -EXPORT_SYMBOL_GPL vmlinux 0x51fd5f36 fat_remove_entries -EXPORT_SYMBOL_GPL vmlinux 0x520c68d7 irq_chip_release_resources_parent -EXPORT_SYMBOL_GPL vmlinux 0x521c56bb device_get_match_data +EXPORT_SYMBOL_GPL vmlinux 0x51d400f4 phy_select_page +EXPORT_SYMBOL_GPL vmlinux 0x51ddee01 mm_kobj +EXPORT_SYMBOL_GPL vmlinux 0x51e7a22c crypto_stats_rng_generate +EXPORT_SYMBOL_GPL vmlinux 0x51f0288b irq_chip_set_affinity_parent +EXPORT_SYMBOL_GPL vmlinux 0x52071541 rio_add_net +EXPORT_SYMBOL_GPL vmlinux 0x5209e20e devres_open_group +EXPORT_SYMBOL_GPL vmlinux 0x520f45c4 pm_relax EXPORT_SYMBOL_GPL vmlinux 0x52252316 clk_unregister_fixed_rate -EXPORT_SYMBOL_GPL vmlinux 0x522e2488 dev_pm_qos_add_request -EXPORT_SYMBOL_GPL vmlinux 0x523b928b iommu_group_add_device -EXPORT_SYMBOL_GPL vmlinux 0x523d1bc1 perf_aux_output_flag +EXPORT_SYMBOL_GPL vmlinux 0x522f37da crypto_alloc_skcipher EXPORT_SYMBOL_GPL vmlinux 0x52431348 xenbus_transaction_start -EXPORT_SYMBOL_GPL vmlinux 0x5246f904 pm_generic_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0x52582ecc iommu_fwspec_add_ids EXPORT_SYMBOL_GPL vmlinux 0x525d0aa3 trace_seq_printf -EXPORT_SYMBOL_GPL vmlinux 0x5269edfb bio_associate_blkg EXPORT_SYMBOL_GPL vmlinux 0x526bcf2a wwan_port_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x52770b16 events_sysfs_show -EXPORT_SYMBOL_GPL vmlinux 0x527c6ce3 __percpu_down_read -EXPORT_SYMBOL_GPL vmlinux 0x52a36bbb acpi_match_device -EXPORT_SYMBOL_GPL vmlinux 0x52a44eba led_classdev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x5271c04d dma_buf_fd +EXPORT_SYMBOL_GPL vmlinux 0x527365a1 edac_device_del_device +EXPORT_SYMBOL_GPL vmlinux 0x52877b07 rdev_get_regmap +EXPORT_SYMBOL_GPL vmlinux 0x52943be4 unwind_next_frame +EXPORT_SYMBOL_GPL vmlinux 0x529a2330 fuse_file_poll +EXPORT_SYMBOL_GPL vmlinux 0x52a3136c acpi_dev_gpio_irq_get_by +EXPORT_SYMBOL_GPL vmlinux 0x52ae208e rio_request_inb_pwrite EXPORT_SYMBOL_GPL vmlinux 0x52b1e3c7 pci_flags +EXPORT_SYMBOL_GPL vmlinux 0x52b23ddb rio_mport_class +EXPORT_SYMBOL_GPL vmlinux 0x52b9c5cc __SCK__tp_func_extlog_mem_event EXPORT_SYMBOL_GPL vmlinux 0x52c35e83 call_rcu_tasks_trace -EXPORT_SYMBOL_GPL vmlinux 0x52c570aa ethtool_set_ethtool_phy_ops -EXPORT_SYMBOL_GPL vmlinux 0x52cb3674 pci_epc_get_msix -EXPORT_SYMBOL_GPL vmlinux 0x52cd350d rio_attach_device -EXPORT_SYMBOL_GPL vmlinux 0x52d175b8 __traceiter_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0x52d1002b wait_on_page_writeback EXPORT_SYMBOL_GPL vmlinux 0x52d54fce devlink_info_version_stored_put -EXPORT_SYMBOL_GPL vmlinux 0x52edc756 kernfs_get -EXPORT_SYMBOL_GPL vmlinux 0x5319e1a7 spi_get_next_queued_message +EXPORT_SYMBOL_GPL vmlinux 0x52df9167 thermal_remove_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0x52ef4ab0 pci_msi_mask_irq +EXPORT_SYMBOL_GPL vmlinux 0x52fa735e rtc_update_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0x52feff42 pci_user_read_config_word +EXPORT_SYMBOL_GPL vmlinux 0x530ed9ba __SCK__tp_func_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x5313ad49 usb_wakeup_enabled_descendants EXPORT_SYMBOL_GPL vmlinux 0x5321d3d6 sbitmap_get EXPORT_SYMBOL_GPL vmlinux 0x532b90b5 kprobe_event_cmd_init -EXPORT_SYMBOL_GPL vmlinux 0x533f9d6e spi_finalize_current_transfer -EXPORT_SYMBOL_GPL vmlinux 0x534b8b4a gpiochip_line_is_irq +EXPORT_SYMBOL_GPL vmlinux 0x5330e418 ata_pci_bmdma_init +EXPORT_SYMBOL_GPL vmlinux 0x53415467 gnttab_unmap_refs_sync +EXPORT_SYMBOL_GPL vmlinux 0x534d34b8 __traceiter_devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0x5353b839 metadata_dst_alloc EXPORT_SYMBOL_GPL vmlinux 0x5358864e devlink_fmsg_binary_pair_nest_end -EXPORT_SYMBOL_GPL vmlinux 0x535de0b1 usb_match_one_id -EXPORT_SYMBOL_GPL vmlinux 0x536009a0 tcp_bpf_update_proto EXPORT_SYMBOL_GPL vmlinux 0x536822e3 sfp_module_insert -EXPORT_SYMBOL_GPL vmlinux 0x537c44d2 thermal_zone_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x537f12de security_path_truncate -EXPORT_SYMBOL_GPL vmlinux 0x538939f2 dev_pm_opp_find_level_ceil +EXPORT_SYMBOL_GPL vmlinux 0x5373e658 dm_send_uevents +EXPORT_SYMBOL_GPL vmlinux 0x53836fb3 ata_std_postreset +EXPORT_SYMBOL_GPL vmlinux 0x538c0324 ata_dev_disable EXPORT_SYMBOL_GPL vmlinux 0x538d073d phy_duplex_to_str +EXPORT_SYMBOL_GPL vmlinux 0x53917890 genphy_c45_an_disable_aneg EXPORT_SYMBOL_GPL vmlinux 0x5391f2c7 gnttab_end_foreign_access_ref +EXPORT_SYMBOL_GPL vmlinux 0x5392bda1 key_type_user +EXPORT_SYMBOL_GPL vmlinux 0x539dddc4 devm_led_trigger_register EXPORT_SYMBOL_GPL vmlinux 0x539f157b pci_xen_swiotlb_init_late -EXPORT_SYMBOL_GPL vmlinux 0x53a1ba4b devlink_port_register -EXPORT_SYMBOL_GPL vmlinux 0x53c080a4 nd_region_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x53a8c4f5 spi_async EXPORT_SYMBOL_GPL vmlinux 0x53c089f5 property_entries_dup -EXPORT_SYMBOL_GPL vmlinux 0x53cc303e set_pages_array_wt +EXPORT_SYMBOL_GPL vmlinux 0x53c87ec0 iomap_invalidatepage +EXPORT_SYMBOL_GPL vmlinux 0x53d71a40 rio_mport_write_config_16 EXPORT_SYMBOL_GPL vmlinux 0x53d7c01e __traceiter_cpu_idle -EXPORT_SYMBOL_GPL vmlinux 0x53fa26ed klp_get_state -EXPORT_SYMBOL_GPL vmlinux 0x53fd59d6 inet_csk_route_child_sock -EXPORT_SYMBOL_GPL vmlinux 0x540fd429 __pm_relax -EXPORT_SYMBOL_GPL vmlinux 0x5415c698 tty_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0x53ddf703 blkdev_nr_zones +EXPORT_SYMBOL_GPL vmlinux 0x53df8c28 sysfs_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x53eaa100 vp_modern_get_driver_features +EXPORT_SYMBOL_GPL vmlinux 0x5418ae5d edac_device_handle_ue_count EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run -EXPORT_SYMBOL_GPL vmlinux 0x54214d16 pcie_reset_flr EXPORT_SYMBOL_GPL vmlinux 0x54215db5 visitor64 -EXPORT_SYMBOL_GPL vmlinux 0x542191da ata_port_schedule_eh -EXPORT_SYMBOL_GPL vmlinux 0x542734ae __tracepoint_unmap -EXPORT_SYMBOL_GPL vmlinux 0x542afe0a platform_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x542c6817 dm_table_set_type EXPORT_SYMBOL_GPL vmlinux 0x5435454c divider_ro_round_rate_parent -EXPORT_SYMBOL_GPL vmlinux 0x543665b7 filemap_read -EXPORT_SYMBOL_GPL vmlinux 0x544a0532 pci_ignore_hotplug +EXPORT_SYMBOL_GPL vmlinux 0x54384a92 intel_pinctrl_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0x543b8d86 register_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x5449fb76 __traceiter_br_fdb_update EXPORT_SYMBOL_GPL vmlinux 0x545025e5 nvmem_add_cell_table +EXPORT_SYMBOL_GPL vmlinux 0x54505598 ata_scsi_unlock_native_capacity +EXPORT_SYMBOL_GPL vmlinux 0x545550fc blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0x54625ae1 da9052_regmap_config EXPORT_SYMBOL_GPL vmlinux 0x54651f9b rhashtable_walk_next -EXPORT_SYMBOL_GPL vmlinux 0x54880f2c edac_pci_handle_pe -EXPORT_SYMBOL_GPL vmlinux 0x54898ff3 hvc_instantiate -EXPORT_SYMBOL_GPL vmlinux 0x549302ed spi_controller_suspend +EXPORT_SYMBOL_GPL vmlinux 0x5476d458 hwpoison_filter +EXPORT_SYMBOL_GPL vmlinux 0x547d793a smpboot_register_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0x548a16e8 max8997_update_reg +EXPORT_SYMBOL_GPL vmlinux 0x548a8439 usb_get_role_switch_default_mode +EXPORT_SYMBOL_GPL vmlinux 0x548b75ce mctrl_gpio_init +EXPORT_SYMBOL_GPL vmlinux 0x5491480a pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0x54916881 serdev_device_set_flow_control EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq -EXPORT_SYMBOL_GPL vmlinux 0x549d3012 gpiod_get_array_value -EXPORT_SYMBOL_GPL vmlinux 0x54b6df81 ping_common_sendmsg -EXPORT_SYMBOL_GPL vmlinux 0x54c86054 scsi_host_unblock -EXPORT_SYMBOL_GPL vmlinux 0x54dcd2dd xen_remap_pfn -EXPORT_SYMBOL_GPL vmlinux 0x54e76a57 vfio_pci_core_err_handlers -EXPORT_SYMBOL_GPL vmlinux 0x54ea1973 devm_hwmon_device_register_with_info -EXPORT_SYMBOL_GPL vmlinux 0x54ef4e4e xen_register_device_domain_owner -EXPORT_SYMBOL_GPL vmlinux 0x54f27300 spi_res_add -EXPORT_SYMBOL_GPL vmlinux 0x54f9e803 hwspin_lock_register -EXPORT_SYMBOL_GPL vmlinux 0x550a5c0c __tracepoint_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0x54969b1c driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x549cd0b1 dbs_update +EXPORT_SYMBOL_GPL vmlinux 0x54a22766 dm_set_target_max_io_len +EXPORT_SYMBOL_GPL vmlinux 0x54ae3dcc led_set_brightness_nosleep +EXPORT_SYMBOL_GPL vmlinux 0x54afbd10 devm_regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x54b82fc5 iommu_uapi_cache_invalidate +EXPORT_SYMBOL_GPL vmlinux 0x54dd7439 spi_add_device +EXPORT_SYMBOL_GPL vmlinux 0x54e4fee6 platform_get_irq_byname_optional +EXPORT_SYMBOL_GPL vmlinux 0x54eaa407 nvdimm_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x54eab661 devm_acpi_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x54edc9d4 xfrm_audit_state_icvfail +EXPORT_SYMBOL_GPL vmlinux 0x54f214e2 skcipher_walk_async +EXPORT_SYMBOL_GPL vmlinux 0x54f3e5cc pinctrl_utils_add_map_mux +EXPORT_SYMBOL_GPL vmlinux 0x54ffe38c iomap_truncate_page +EXPORT_SYMBOL_GPL vmlinux 0x550a45a2 dev_fwnode EXPORT_SYMBOL_GPL vmlinux 0x550ce709 pat_enabled EXPORT_SYMBOL_GPL vmlinux 0x550f3e05 i2c_freq_mode_string -EXPORT_SYMBOL_GPL vmlinux 0x5517a93d sysfs_remove_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x55236f89 fat_add_entries +EXPORT_SYMBOL_GPL vmlinux 0x55107481 get_current_tty +EXPORT_SYMBOL_GPL vmlinux 0x5518b0c2 acpi_device_update_power EXPORT_SYMBOL_GPL vmlinux 0x55339365 flush_delayed_fput EXPORT_SYMBOL_GPL vmlinux 0x553b49a4 cpufreq_get_driver_data -EXPORT_SYMBOL_GPL vmlinux 0x553cd310 __netif_set_xps_queue EXPORT_SYMBOL_GPL vmlinux 0x55417264 unregister_vt_notifier -EXPORT_SYMBOL_GPL vmlinux 0x55420513 netdev_walk_all_upper_dev_rcu -EXPORT_SYMBOL_GPL vmlinux 0x556a34b0 irq_domain_remove +EXPORT_SYMBOL_GPL vmlinux 0x5541c90f regulator_disable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x554d0fea fuse_mount_remove +EXPORT_SYMBOL_GPL vmlinux 0x5557ed0f trace_event_buffer_commit +EXPORT_SYMBOL_GPL vmlinux 0x555e7c52 devlink_param_value_changed +EXPORT_SYMBOL_GPL vmlinux 0x555f764a sdio_readw +EXPORT_SYMBOL_GPL vmlinux 0x55610e59 __traceiter_sched_update_nr_running_tp EXPORT_SYMBOL_GPL vmlinux 0x556e4390 clk_get_rate -EXPORT_SYMBOL_GPL vmlinux 0x5572f5e8 usb_disable_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0x5572d0dd fork_usermode_driver +EXPORT_SYMBOL_GPL vmlinux 0x55780931 nf_hook_entries_insert_raw EXPORT_SYMBOL_GPL vmlinux 0x55784228 regmap_irq_get_virq -EXPORT_SYMBOL_GPL vmlinux 0x557daf65 nexthop_for_each_fib6_nh -EXPORT_SYMBOL_GPL vmlinux 0x55839faa devlink_params_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5587fc6d rio_route_add_entry -EXPORT_SYMBOL_GPL vmlinux 0x55989ce3 thermal_zone_get_temp -EXPORT_SYMBOL_GPL vmlinux 0x55b25da9 __SCK__tp_func_block_split -EXPORT_SYMBOL_GPL vmlinux 0x55c66663 regulator_list_hardware_vsel +EXPORT_SYMBOL_GPL vmlinux 0x557e7b90 transport_configure_device +EXPORT_SYMBOL_GPL vmlinux 0x5581a776 __fl6_sock_lookup +EXPORT_SYMBOL_GPL vmlinux 0x5582a4df max8997_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x55863186 ata_scsi_dma_need_drain +EXPORT_SYMBOL_GPL vmlinux 0x55a02bfc usb_driver_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0x55a06feb fsverity_ioctl_enable EXPORT_SYMBOL_GPL vmlinux 0x55c76a23 ksys_sync_helper -EXPORT_SYMBOL_GPL vmlinux 0x55cad9c6 nvdimm_to_bus -EXPORT_SYMBOL_GPL vmlinux 0x55d9714f crypto_unregister_kpp -EXPORT_SYMBOL_GPL vmlinux 0x55ecfbcf dev_nit_active EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout EXPORT_SYMBOL_GPL vmlinux 0x56054c05 crypto_it_tab -EXPORT_SYMBOL_GPL vmlinux 0x561721d4 clockevents_config_and_register +EXPORT_SYMBOL_GPL vmlinux 0x5610aac1 rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5611df9a devlink_port_type_clear EXPORT_SYMBOL_GPL vmlinux 0x56173654 pcap_set_ts_bits -EXPORT_SYMBOL_GPL vmlinux 0x5623c01e invalidate_inode_pages2_range +EXPORT_SYMBOL_GPL vmlinux 0x56173900 fb_deferred_io_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x561f8876 perf_event_pause EXPORT_SYMBOL_GPL vmlinux 0x56256e8a orderly_poweroff -EXPORT_SYMBOL_GPL vmlinux 0x562c728a sb800_prefetch -EXPORT_SYMBOL_GPL vmlinux 0x562ea078 vp_modern_get_driver_features +EXPORT_SYMBOL_GPL vmlinux 0x562b7013 vc_scrolldelta_helper EXPORT_SYMBOL_GPL vmlinux 0x56310925 regulator_mode_to_status EXPORT_SYMBOL_GPL vmlinux 0x56398615 mark_tsc_unstable -EXPORT_SYMBOL_GPL vmlinux 0x563aa19e blk_update_request -EXPORT_SYMBOL_GPL vmlinux 0x5640d2b1 gpiochip_remove EXPORT_SYMBOL_GPL vmlinux 0x5641485b tty_termios_encode_baud_rate -EXPORT_SYMBOL_GPL vmlinux 0x56493c13 usb_unlink_urb -EXPORT_SYMBOL_GPL vmlinux 0x56533329 dev_pm_opp_init_cpufreq_table -EXPORT_SYMBOL_GPL vmlinux 0x5662ade4 governor_sysfs_ops -EXPORT_SYMBOL_GPL vmlinux 0x566ce39c led_trigger_blink -EXPORT_SYMBOL_GPL vmlinux 0x56741d5b device_move -EXPORT_SYMBOL_GPL vmlinux 0x568a2eee i2c_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x5698db2e ohci_hub_control -EXPORT_SYMBOL_GPL vmlinux 0x569c1742 trace_define_field -EXPORT_SYMBOL_GPL vmlinux 0x56a2d544 __tracepoint_block_unplug -EXPORT_SYMBOL_GPL vmlinux 0x56a5c8df nexthop_select_path -EXPORT_SYMBOL_GPL vmlinux 0x56aaf318 devlink_remote_reload_actions_performed -EXPORT_SYMBOL_GPL vmlinux 0x56e68171 usb_init_urb -EXPORT_SYMBOL_GPL vmlinux 0x56ea05cb phy_speed_up +EXPORT_SYMBOL_GPL vmlinux 0x564f9945 handle_fasteoi_irq +EXPORT_SYMBOL_GPL vmlinux 0x56699b2a subsys_virtual_register +EXPORT_SYMBOL_GPL vmlinux 0x56811241 vfio_pci_core_init_device +EXPORT_SYMBOL_GPL vmlinux 0x56895410 genphy_c45_aneg_done +EXPORT_SYMBOL_GPL vmlinux 0x56948896 spec_ctrl_current +EXPORT_SYMBOL_GPL vmlinux 0x569b6256 dev_pm_opp_enable +EXPORT_SYMBOL_GPL vmlinux 0x569c94dd syscon_regmap_lookup_by_phandle_args +EXPORT_SYMBOL_GPL vmlinux 0x569f4418 regmap_mmio_detach_clk +EXPORT_SYMBOL_GPL vmlinux 0x56af1c33 fib_rules_unregister +EXPORT_SYMBOL_GPL vmlinux 0x56b07a6e crypto_hash_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x56b486a5 xenbus_dev_remove +EXPORT_SYMBOL_GPL vmlinux 0x56c1141f debugfs_create_file_size +EXPORT_SYMBOL_GPL vmlinux 0x56d29585 __fsnotify_inode_delete +EXPORT_SYMBOL_GPL vmlinux 0x56dd4194 thermal_zone_device_disable +EXPORT_SYMBOL_GPL vmlinux 0x56e7e192 vp_modern_map_vq_notify +EXPORT_SYMBOL_GPL vmlinux 0x56f4d765 usb_get_current_frame_number EXPORT_SYMBOL_GPL vmlinux 0x56fbb130 no_hash_pointers -EXPORT_SYMBOL_GPL vmlinux 0x5704ec29 fscrypt_d_revalidate +EXPORT_SYMBOL_GPL vmlinux 0x5702b479 regulator_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x57380783 xen_unmap_domain_gfn_range +EXPORT_SYMBOL_GPL vmlinux 0x5739b0db nvmem_cell_read_u16 EXPORT_SYMBOL_GPL vmlinux 0x573b5453 ipv6_fixup_options EXPORT_SYMBOL_GPL vmlinux 0x574609c5 apei_exec_write_register_value -EXPORT_SYMBOL_GPL vmlinux 0x5746e743 irq_create_of_mapping -EXPORT_SYMBOL_GPL vmlinux 0x574ffa97 netdev_set_default_ethtool_ops -EXPORT_SYMBOL_GPL vmlinux 0x575975d4 udp_destruct_sock -EXPORT_SYMBOL_GPL vmlinux 0x5763b69c syscon_regmap_lookup_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x576686c2 lwtunnel_fill_encap +EXPORT_SYMBOL_GPL vmlinux 0x574c5417 debugfs_create_ulong +EXPORT_SYMBOL_GPL vmlinux 0x575c508c security_file_permission +EXPORT_SYMBOL_GPL vmlinux 0x57678c20 vfio_pci_core_request +EXPORT_SYMBOL_GPL vmlinux 0x5769b6da __rio_local_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x576cf7c9 icc_link_create EXPORT_SYMBOL_GPL vmlinux 0x57719632 gnttab_grant_foreign_access EXPORT_SYMBOL_GPL vmlinux 0x57732438 inet_twsk_purge +EXPORT_SYMBOL_GPL vmlinux 0x5788526c ata_bmdma_stop EXPORT_SYMBOL_GPL vmlinux 0x578eeb4d hugetlb_cgrp_subsys_enabled_key EXPORT_SYMBOL_GPL vmlinux 0x5790e7a0 pci_unlock_rescan_remove -EXPORT_SYMBOL_GPL vmlinux 0x579a6050 regulator_get_exclusive EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all -EXPORT_SYMBOL_GPL vmlinux 0x57a1363e device_property_read_u64_array -EXPORT_SYMBOL_GPL vmlinux 0x57b9f535 pm_genpd_add_subdomain -EXPORT_SYMBOL_GPL vmlinux 0x57bc5940 dm_suspended -EXPORT_SYMBOL_GPL vmlinux 0x57bf802e shake_page -EXPORT_SYMBOL_GPL vmlinux 0x57c4f2d4 devm_regmap_field_alloc -EXPORT_SYMBOL_GPL vmlinux 0x57c6723e irq_chip_enable_parent +EXPORT_SYMBOL_GPL vmlinux 0x57bc1b36 blk_ksm_is_superset +EXPORT_SYMBOL_GPL vmlinux 0x57d2605b blk_mq_freeze_queue_wait EXPORT_SYMBOL_GPL vmlinux 0x57d4050a xhci_get_endpoint_index -EXPORT_SYMBOL_GPL vmlinux 0x57dd2b33 mptcp_pm_get_local_addr_max -EXPORT_SYMBOL_GPL vmlinux 0x57e5a5cd ip6_route_output_flags -EXPORT_SYMBOL_GPL vmlinux 0x57ea32ca __tracepoint_neigh_event_send_done -EXPORT_SYMBOL_GPL vmlinux 0x57ed3012 acpiphp_register_attention -EXPORT_SYMBOL_GPL vmlinux 0x57f18ee9 dev_pm_opp_get_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0x57df25af crypto_unregister_acomps +EXPORT_SYMBOL_GPL vmlinux 0x57e16efa extcon_find_edev_by_node +EXPORT_SYMBOL_GPL vmlinux 0x57edbc19 trace_event_reg +EXPORT_SYMBOL_GPL vmlinux 0x57f304a1 wwan_create_port EXPORT_SYMBOL_GPL vmlinux 0x57f576b9 mpi_ec_curve_point -EXPORT_SYMBOL_GPL vmlinux 0x57f70547 secure_ipv4_port_ephemeral -EXPORT_SYMBOL_GPL vmlinux 0x5804ced5 devm_gpio_request -EXPORT_SYMBOL_GPL vmlinux 0x58235aaf devm_clk_hw_unregister +EXPORT_SYMBOL_GPL vmlinux 0x580428f3 pci_dev_run_wake +EXPORT_SYMBOL_GPL vmlinux 0x5819ef1e ata_link_online EXPORT_SYMBOL_GPL vmlinux 0x58276f93 cper_next_record_id -EXPORT_SYMBOL_GPL vmlinux 0x582bc759 driver_register EXPORT_SYMBOL_GPL vmlinux 0x5831e062 cpus_read_trylock -EXPORT_SYMBOL_GPL vmlinux 0x5835b966 bpf_trace_run10 -EXPORT_SYMBOL_GPL vmlinux 0x584de832 set_primary_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x584f867f __page_file_mapping -EXPORT_SYMBOL_GPL vmlinux 0x58641090 _copy_from_iter_flushcache -EXPORT_SYMBOL_GPL vmlinux 0x58696cdd max8997_write_reg +EXPORT_SYMBOL_GPL vmlinux 0x5838c02c dw_pcie_setup_rc +EXPORT_SYMBOL_GPL vmlinux 0x583a04cb fwnode_get_next_available_child_node +EXPORT_SYMBOL_GPL vmlinux 0x58413945 raw_seq_start +EXPORT_SYMBOL_GPL vmlinux 0x58501478 hrtimer_init_sleeper +EXPORT_SYMBOL_GPL vmlinux 0x58584234 fat_fill_super +EXPORT_SYMBOL_GPL vmlinux 0x585ac734 badblocks_exit EXPORT_SYMBOL_GPL vmlinux 0x586bfc8a alarm_restart -EXPORT_SYMBOL_GPL vmlinux 0x586c621f eventfd_ctx_fileget +EXPORT_SYMBOL_GPL vmlinux 0x586c72a0 dmaengine_desc_set_metadata_len EXPORT_SYMBOL_GPL vmlinux 0x5879a27d sfp_get_module_info -EXPORT_SYMBOL_GPL vmlinux 0x5888db1a dma_buf_move_notify -EXPORT_SYMBOL_GPL vmlinux 0x58a8a4e7 sk_set_memalloc +EXPORT_SYMBOL_GPL vmlinux 0x587a483d pm_generic_resume +EXPORT_SYMBOL_GPL vmlinux 0x588cfc5d xdp_rxq_info_reg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0x588ea7a5 acpi_set_modalias +EXPORT_SYMBOL_GPL vmlinux 0x588fbcdb usb_find_alt_setting +EXPORT_SYMBOL_GPL vmlinux 0x58a11043 rtc_class_close +EXPORT_SYMBOL_GPL vmlinux 0x58a37fab dmaengine_unmap_put +EXPORT_SYMBOL_GPL vmlinux 0x58a7f612 gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0x58ad9bbd regulator_is_enabled EXPORT_SYMBOL_GPL vmlinux 0x58d6311d trace_clock -EXPORT_SYMBOL_GPL vmlinux 0x58dc8955 usb_block_urb EXPORT_SYMBOL_GPL vmlinux 0x58def6ca sfp_module_remove -EXPORT_SYMBOL_GPL vmlinux 0x58ef2f41 bpf_prog_free -EXPORT_SYMBOL_GPL vmlinux 0x58fa904b pm_generic_resume_early -EXPORT_SYMBOL_GPL vmlinux 0x58fff0bf devm_regulator_get -EXPORT_SYMBOL_GPL vmlinux 0x590adc5a usb_hcd_setup_local_mem -EXPORT_SYMBOL_GPL vmlinux 0x5913fde7 sched_show_task -EXPORT_SYMBOL_GPL vmlinux 0x59246f38 sock_diag_check_cookie -EXPORT_SYMBOL_GPL vmlinux 0x59263e32 int_active_memcg -EXPORT_SYMBOL_GPL vmlinux 0x594c2462 xenbus_match -EXPORT_SYMBOL_GPL vmlinux 0x5950ddce amd_iommu_is_attach_deferred -EXPORT_SYMBOL_GPL vmlinux 0x59566c2d crypto_shash_alg_has_setkey -EXPORT_SYMBOL_GPL vmlinux 0x595cd3dd ata_dev_next -EXPORT_SYMBOL_GPL vmlinux 0x596d1350 dev_attr_em_message_type +EXPORT_SYMBOL_GPL vmlinux 0x58f396ed blk_queue_max_zone_append_sectors +EXPORT_SYMBOL_GPL vmlinux 0x58f6bfa8 dev_attr_link_power_management_policy +EXPORT_SYMBOL_GPL vmlinux 0x59140728 dev_pm_opp_find_freq_floor +EXPORT_SYMBOL_GPL vmlinux 0x591698d7 devm_extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x59188b2e rtnl_delete_link +EXPORT_SYMBOL_GPL vmlinux 0x59254106 perf_get_aux +EXPORT_SYMBOL_GPL vmlinux 0x5930babe acpi_pci_check_ejectable +EXPORT_SYMBOL_GPL vmlinux 0x59375adc ata_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x59377559 ndo_dflt_bridge_getlink +EXPORT_SYMBOL_GPL vmlinux 0x5947d5a5 iommu_unmap +EXPORT_SYMBOL_GPL vmlinux 0x5950e996 rdev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x5951326b devlink_params_unpublish +EXPORT_SYMBOL_GPL vmlinux 0x59556cae bpf_trace_run10 +EXPORT_SYMBOL_GPL vmlinux 0x598010b3 relay_subbufs_consumed +EXPORT_SYMBOL_GPL vmlinux 0x598018d0 pcc_mbox_request_channel EXPORT_SYMBOL_GPL vmlinux 0x5986d190 kdb_printf -EXPORT_SYMBOL_GPL vmlinux 0x59b118eb nfs_ssc_register +EXPORT_SYMBOL_GPL vmlinux 0x599d28a0 wbt_enable_default +EXPORT_SYMBOL_GPL vmlinux 0x59a686ba pci_hp_destroy EXPORT_SYMBOL_GPL vmlinux 0x59b2adbf input_ff_effect_from_user -EXPORT_SYMBOL_GPL vmlinux 0x59b42632 pm_runtime_force_resume -EXPORT_SYMBOL_GPL vmlinux 0x59be6f94 regulator_bulk_enable -EXPORT_SYMBOL_GPL vmlinux 0x59bec61f __SCK__tp_func_devlink_hwmsg +EXPORT_SYMBOL_GPL vmlinux 0x59b8997d dma_buf_export EXPORT_SYMBOL_GPL vmlinux 0x59c43dc9 __traceiter_non_standard_event EXPORT_SYMBOL_GPL vmlinux 0x59c6aff4 irq_set_affinity_hint -EXPORT_SYMBOL_GPL vmlinux 0x59c927ea devm_regmap_add_irq_chip_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x59ca0368 blkdev_zone_mgmt +EXPORT_SYMBOL_GPL vmlinux 0x59cf574d pci_assign_unassigned_bridge_resources +EXPORT_SYMBOL_GPL vmlinux 0x59e0f053 fpu_free_guest_fpstate +EXPORT_SYMBOL_GPL vmlinux 0x59e7979b genphy_c45_loopback +EXPORT_SYMBOL_GPL vmlinux 0x59e9a3c9 ethnl_cable_test_fault_length EXPORT_SYMBOL_GPL vmlinux 0x59f32720 mpi_subm +EXPORT_SYMBOL_GPL vmlinux 0x59fcdee4 acct_bioset_exit +EXPORT_SYMBOL_GPL vmlinux 0x5a028114 __SCK__tp_func_block_rq_insert +EXPORT_SYMBOL_GPL vmlinux 0x5a028285 serial8250_em485_config EXPORT_SYMBOL_GPL vmlinux 0x5a1d134a rcu_momentary_dyntick_idle -EXPORT_SYMBOL_GPL vmlinux 0x5a263303 bio_trim -EXPORT_SYMBOL_GPL vmlinux 0x5a2aeec6 ata_dummy_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x5a25d933 bpf_prog_add +EXPORT_SYMBOL_GPL vmlinux 0x5a3f49f2 regmap_field_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0x5a41afce apply_to_existing_page_range +EXPORT_SYMBOL_GPL vmlinux 0x5a420630 alloc_page_buffers EXPORT_SYMBOL_GPL vmlinux 0x5a49dbc9 timerqueue_del +EXPORT_SYMBOL_GPL vmlinux 0x5a50e506 usb_phy_set_event +EXPORT_SYMBOL_GPL vmlinux 0x5a57895d devfreq_get_devfreq_by_phandle EXPORT_SYMBOL_GPL vmlinux 0x5a6cdb52 nf_ct_zone_dflt +EXPORT_SYMBOL_GPL vmlinux 0x5a6e6046 pci_enable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x5a723f80 scsi_free_sgtables EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify -EXPORT_SYMBOL_GPL vmlinux 0x5a8dd475 acpi_dma_simple_xlate -EXPORT_SYMBOL_GPL vmlinux 0x5a972b79 xfrm_audit_state_notfound -EXPORT_SYMBOL_GPL vmlinux 0x5aa6f23f phy_modify +EXPORT_SYMBOL_GPL vmlinux 0x5a7f20a0 pci_hp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0x5a8eed41 get_net_ns_by_fd +EXPORT_SYMBOL_GPL vmlinux 0x5a9365fa __SCK__tp_func_sched_cpu_capacity_tp EXPORT_SYMBOL_GPL vmlinux 0x5aa70984 acpi_reduced_hardware -EXPORT_SYMBOL_GPL vmlinux 0x5aaab28b skb_complete_tx_timestamp -EXPORT_SYMBOL_GPL vmlinux 0x5aae2a55 pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x5aa8feca iommu_enable_nesting +EXPORT_SYMBOL_GPL vmlinux 0x5aae81fd xenbus_switch_state EXPORT_SYMBOL_GPL vmlinux 0x5ab09745 edac_get_owner -EXPORT_SYMBOL_GPL vmlinux 0x5ab0c40d gen_pool_get -EXPORT_SYMBOL_GPL vmlinux 0x5ad20023 usb_disable_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0x5adcd540 powercap_unregister_zone -EXPORT_SYMBOL_GPL vmlinux 0x5ade039d crypto_register_alg -EXPORT_SYMBOL_GPL vmlinux 0x5adf01b6 dma_run_dependencies -EXPORT_SYMBOL_GPL vmlinux 0x5aedb710 dma_get_required_mask -EXPORT_SYMBOL_GPL vmlinux 0x5afc3d20 i2c_generic_scl_recovery -EXPORT_SYMBOL_GPL vmlinux 0x5afdbc49 blk_mq_sched_try_insert_merge -EXPORT_SYMBOL_GPL vmlinux 0x5b031a47 clk_hw_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0x5b0456aa rt_mutex_lock_interruptible -EXPORT_SYMBOL_GPL vmlinux 0x5b104442 pciserial_init_ports -EXPORT_SYMBOL_GPL vmlinux 0x5b216514 acpi_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0x5ab8c2b4 regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5ac1e7a8 sk_detach_filter +EXPORT_SYMBOL_GPL vmlinux 0x5adad1e4 scsi_check_sense +EXPORT_SYMBOL_GPL vmlinux 0x5b12ee33 serial8250_em485_start_tx +EXPORT_SYMBOL_GPL vmlinux 0x5b1973e2 tty_ldisc_ref_wait +EXPORT_SYMBOL_GPL vmlinux 0x5b199d63 da903x_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5b1ddb15 proc_mkdir_data EXPORT_SYMBOL_GPL vmlinux 0x5b21ceff ring_buffer_iter_peek -EXPORT_SYMBOL_GPL vmlinux 0x5b220b81 __traceiter_neigh_cleanup_and_release -EXPORT_SYMBOL_GPL vmlinux 0x5b2e4e65 ata_cable_80wire -EXPORT_SYMBOL_GPL vmlinux 0x5b32af6d dma_buf_detach -EXPORT_SYMBOL_GPL vmlinux 0x5b349427 balloon_page_list_dequeue +EXPORT_SYMBOL_GPL vmlinux 0x5b2fb1b2 subsys_system_register EXPORT_SYMBOL_GPL vmlinux 0x5b35c4f9 vfio_group_set_kvm -EXPORT_SYMBOL_GPL vmlinux 0x5b3d2e50 adp5520_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x5b500c58 l3mdev_table_lookup_register -EXPORT_SYMBOL_GPL vmlinux 0x5b68b6da devm_phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0x5b3feed8 usb_sg_cancel +EXPORT_SYMBOL_GPL vmlinux 0x5b517245 devm_acpi_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0x5b5df9f7 driver_deferred_probe_check_state +EXPORT_SYMBOL_GPL vmlinux 0x5b5ec802 irq_setup_generic_chip EXPORT_SYMBOL_GPL vmlinux 0x5b6b0329 swiotlb_max_segment -EXPORT_SYMBOL_GPL vmlinux 0x5b8b503d tcp_get_syncookie_mss -EXPORT_SYMBOL_GPL vmlinux 0x5b8de0a7 iommu_sva_bind_device -EXPORT_SYMBOL_GPL vmlinux 0x5b933f3c efivar_entry_add -EXPORT_SYMBOL_GPL vmlinux 0x5ba15573 dev_pm_opp_is_turbo -EXPORT_SYMBOL_GPL vmlinux 0x5bbc5164 device_get_named_child_node +EXPORT_SYMBOL_GPL vmlinux 0x5b6e0073 devres_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x5b7b6f82 dev_pm_domain_attach_by_name +EXPORT_SYMBOL_GPL vmlinux 0x5b85e5df serial8250_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0x5b8c5730 pci_create_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x5b9267ff debugfs_file_get +EXPORT_SYMBOL_GPL vmlinux 0x5bb759a7 pinctrl_utils_free_map EXPORT_SYMBOL_GPL vmlinux 0x5bbdfa26 scatterwalk_ffwd EXPORT_SYMBOL_GPL vmlinux 0x5bc950fe regulator_irq_helper_cancel -EXPORT_SYMBOL_GPL vmlinux 0x5bc9d540 blkcg_activate_policy EXPORT_SYMBOL_GPL vmlinux 0x5bd0748f crypto_del_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x5bd44817 desc_to_gpio EXPORT_SYMBOL_GPL vmlinux 0x5bdae35b usb_phy_roothub_set_mode EXPORT_SYMBOL_GPL vmlinux 0x5bdbac4e rcu_unexpedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x5be8d8be usb_autopm_get_interface +EXPORT_SYMBOL_GPL vmlinux 0x5bf93fb6 gpiod_set_debounce +EXPORT_SYMBOL_GPL vmlinux 0x5bffb693 sync_page_io EXPORT_SYMBOL_GPL vmlinux 0x5c0c165e __SCT__tp_func_neigh_update EXPORT_SYMBOL_GPL vmlinux 0x5c0eaf31 acpi_dev_resource_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x5c18e788 gpiod_get_direction +EXPORT_SYMBOL_GPL vmlinux 0x5c205bb9 vfio_pci_core_unregister_device EXPORT_SYMBOL_GPL vmlinux 0x5c2bcd37 bpf_warn_invalid_xdp_action +EXPORT_SYMBOL_GPL vmlinux 0x5c2c9ac7 pci_epf_create EXPORT_SYMBOL_GPL vmlinux 0x5c309e65 hibernate_quiet_exec -EXPORT_SYMBOL_GPL vmlinux 0x5c4d077a extcon_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5c4b0ef3 tpm1_getcap +EXPORT_SYMBOL_GPL vmlinux 0x5c4cca9e __xenbus_register_frontend +EXPORT_SYMBOL_GPL vmlinux 0x5c4f9af7 serial8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x5c4fc83b inet6_compat_ioctl EXPORT_SYMBOL_GPL vmlinux 0x5c5a1b16 tick_broadcast_control EXPORT_SYMBOL_GPL vmlinux 0x5c5c6826 phy_10gbit_full_features -EXPORT_SYMBOL_GPL vmlinux 0x5c6e775c xenbus_read_otherend_details -EXPORT_SYMBOL_GPL vmlinux 0x5c98f0b4 ipv6_bpf_stub +EXPORT_SYMBOL_GPL vmlinux 0x5c65a1ec fib_rule_matchall +EXPORT_SYMBOL_GPL vmlinux 0x5c66183d ip6_pol_route +EXPORT_SYMBOL_GPL vmlinux 0x5c9efbe2 fwnode_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x5ca6e8bc udp_bpf_update_proto EXPORT_SYMBOL_GPL vmlinux 0x5cab9945 unregister_xenbus_watch EXPORT_SYMBOL_GPL vmlinux 0x5cad8fc3 power_supply_ocv2cap_simple -EXPORT_SYMBOL_GPL vmlinux 0x5cb0e4dc spi_bus_lock -EXPORT_SYMBOL_GPL vmlinux 0x5cc0c698 __devm_clk_hw_register_divider -EXPORT_SYMBOL_GPL vmlinux 0x5cc202a1 gpiod_set_transitory -EXPORT_SYMBOL_GPL vmlinux 0x5cc2f181 inet_csk_route_req -EXPORT_SYMBOL_GPL vmlinux 0x5cca224d uart_set_options -EXPORT_SYMBOL_GPL vmlinux 0x5ccbf2e6 __SCK__tp_func_rpm_resume -EXPORT_SYMBOL_GPL vmlinux 0x5ccc4b39 kthread_cancel_delayed_work_sync -EXPORT_SYMBOL_GPL vmlinux 0x5cdd9a2f nfs_ssc_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5cae6f63 iomap_dio_iopoll +EXPORT_SYMBOL_GPL vmlinux 0x5cb328ea led_sysfs_enable EXPORT_SYMBOL_GPL vmlinux 0x5cede0a7 xdp_flush_frame_bulk -EXPORT_SYMBOL_GPL vmlinux 0x5d07284f mbox_chan_txdone -EXPORT_SYMBOL_GPL vmlinux 0x5d09da0e __SCK__tp_func_fdb_delete -EXPORT_SYMBOL_GPL vmlinux 0x5d11c468 bsg_job_put +EXPORT_SYMBOL_GPL vmlinux 0x5cf0c937 dma_buf_mmap +EXPORT_SYMBOL_GPL vmlinux 0x5d09697a pci_iov_virtfn_devfn EXPORT_SYMBOL_GPL vmlinux 0x5d17148b apei_write -EXPORT_SYMBOL_GPL vmlinux 0x5d1af537 ata_sff_data_xfer32 EXPORT_SYMBOL_GPL vmlinux 0x5d2aa5fb rhashtable_walk_peek -EXPORT_SYMBOL_GPL vmlinux 0x5d2ae8f8 apply_to_existing_page_range +EXPORT_SYMBOL_GPL vmlinux 0x5d2ad079 irq_generic_chip_ops EXPORT_SYMBOL_GPL vmlinux 0x5d2bc42a reset_control_rearm -EXPORT_SYMBOL_GPL vmlinux 0x5d4bacc9 __traceiter_pelt_dl_tp -EXPORT_SYMBOL_GPL vmlinux 0x5d607c87 pci_epc_get_features -EXPORT_SYMBOL_GPL vmlinux 0x5d653426 __rio_local_write_config_8 -EXPORT_SYMBOL_GPL vmlinux 0x5d69adfc bpf_prog_destroy -EXPORT_SYMBOL_GPL vmlinux 0x5d7d1d6c ata_sff_dev_select -EXPORT_SYMBOL_GPL vmlinux 0x5d80d6c4 pci_assign_unassigned_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0x5d3a4311 tps6586x_read +EXPORT_SYMBOL_GPL vmlinux 0x5d49f030 pci_epc_set_msix +EXPORT_SYMBOL_GPL vmlinux 0x5d7249af __traceiter_br_fdb_add +EXPORT_SYMBOL_GPL vmlinux 0x5d7b1636 devlink_remote_reload_actions_performed +EXPORT_SYMBOL_GPL vmlinux 0x5d811ad8 bsg_remove_queue EXPORT_SYMBOL_GPL vmlinux 0x5d8476d3 bpf_sk_storage_diag_alloc -EXPORT_SYMBOL_GPL vmlinux 0x5d88c4a3 blk_mq_rdma_map_queues -EXPORT_SYMBOL_GPL vmlinux 0x5d8bbb1b mnt_want_write -EXPORT_SYMBOL_GPL vmlinux 0x5d8bd8e0 usb_interrupt_msg +EXPORT_SYMBOL_GPL vmlinux 0x5d9286f3 uprobe_register EXPORT_SYMBOL_GPL vmlinux 0x5d9317d7 uv_teardown_irq +EXPORT_SYMBOL_GPL vmlinux 0x5d954aa9 fat_flush_inodes +EXPORT_SYMBOL_GPL vmlinux 0x5d96037d bpf_offload_dev_netdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5d9c069c fs_dax_get_by_bdev EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact -EXPORT_SYMBOL_GPL vmlinux 0x5db1c526 serial8250_read_char -EXPORT_SYMBOL_GPL vmlinux 0x5db3cf61 devm_add_action -EXPORT_SYMBOL_GPL vmlinux 0x5db539a5 fsnotify_put_group +EXPORT_SYMBOL_GPL vmlinux 0x5db0c19b ata_link_abort +EXPORT_SYMBOL_GPL vmlinux 0x5db5691e shmem_zero_setup +EXPORT_SYMBOL_GPL vmlinux 0x5dbc240b extcon_unregister_notifier EXPORT_SYMBOL_GPL vmlinux 0x5dbcfa4f boot_cpu_physical_apicid -EXPORT_SYMBOL_GPL vmlinux 0x5dd18426 edac_mc_handle_error -EXPORT_SYMBOL_GPL vmlinux 0x5dd40869 ata_pci_remove_one -EXPORT_SYMBOL_GPL vmlinux 0x5de2f097 pin_user_pages_fast_only -EXPORT_SYMBOL_GPL vmlinux 0x5df30aa6 pinctrl_find_and_add_gpio_range -EXPORT_SYMBOL_GPL vmlinux 0x5e0e3512 watchdog_set_restart_priority -EXPORT_SYMBOL_GPL vmlinux 0x5e170d53 vfio_pci_register_dev_region +EXPORT_SYMBOL_GPL vmlinux 0x5dc4a5c2 xenbus_frontend_closed +EXPORT_SYMBOL_GPL vmlinux 0x5dc9545d inet6_hash +EXPORT_SYMBOL_GPL vmlinux 0x5dca4c0c __tracepoint_neigh_update +EXPORT_SYMBOL_GPL vmlinux 0x5de6cafa mbox_request_channel_byname +EXPORT_SYMBOL_GPL vmlinux 0x5de8b4e1 regulator_set_voltage_sel_pickable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x5e0b3d5d iommu_sva_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0x5e0be171 edac_pci_free_ctl_info EXPORT_SYMBOL_GPL vmlinux 0x5e173309 cpu_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x5e22c61a dev_pm_opp_detach_genpd -EXPORT_SYMBOL_GPL vmlinux 0x5e23e0f8 blk_revalidate_disk_zones -EXPORT_SYMBOL_GPL vmlinux 0x5e29b6d3 devlink_port_param_driverinit_value_get +EXPORT_SYMBOL_GPL vmlinux 0x5e43e1d1 platform_unregister_drivers +EXPORT_SYMBOL_GPL vmlinux 0x5e4f48aa kernfs_notify EXPORT_SYMBOL_GPL vmlinux 0x5e515be6 ktime_get_ts64 -EXPORT_SYMBOL_GPL vmlinux 0x5e5ba95e crypto_hash_walk_first -EXPORT_SYMBOL_GPL vmlinux 0x5e616015 debugfs_attr_write -EXPORT_SYMBOL_GPL vmlinux 0x5e6f5c48 acpi_data_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0x5e57ff7e device_get_dma_attr +EXPORT_SYMBOL_GPL vmlinux 0x5e5adcd2 switchdev_handle_port_obj_del +EXPORT_SYMBOL_GPL vmlinux 0x5e64ce27 platform_device_put +EXPORT_SYMBOL_GPL vmlinux 0x5e6fe153 ping_queue_rcv_skb EXPORT_SYMBOL_GPL vmlinux 0x5e798ffb divider_get_val +EXPORT_SYMBOL_GPL vmlinux 0x5e81e313 security_inode_setattr EXPORT_SYMBOL_GPL vmlinux 0x5e85415b ring_buffer_consume -EXPORT_SYMBOL_GPL vmlinux 0x5e85c103 xdp_rxq_info_unused -EXPORT_SYMBOL_GPL vmlinux 0x5e9d7635 device_create -EXPORT_SYMBOL_GPL vmlinux 0x5ea62a94 vchan_dma_desc_free_list +EXPORT_SYMBOL_GPL vmlinux 0x5eabf867 device_pm_wait_for_dev EXPORT_SYMBOL_GPL vmlinux 0x5eae5408 clk_is_enabled_when_prepared -EXPORT_SYMBOL_GPL vmlinux 0x5ec4f36c fsnotify_init_mark +EXPORT_SYMBOL_GPL vmlinux 0x5ebeb9fd sdio_memcpy_fromio +EXPORT_SYMBOL_GPL vmlinux 0x5ec17a07 clk_register +EXPORT_SYMBOL_GPL vmlinux 0x5ec2db59 vfs_setlease EXPORT_SYMBOL_GPL vmlinux 0x5ec62549 ata_dev_classify -EXPORT_SYMBOL_GPL vmlinux 0x5ecaab6d ata_bmdma_qc_prep -EXPORT_SYMBOL_GPL vmlinux 0x5ee8cbe4 bsg_job_get +EXPORT_SYMBOL_GPL vmlinux 0x5ecb3ebc pci_epc_get_msi +EXPORT_SYMBOL_GPL vmlinux 0x5ef32d61 tcp_set_keepalive +EXPORT_SYMBOL_GPL vmlinux 0x5f1999b8 gnttab_pages_set_private +EXPORT_SYMBOL_GPL vmlinux 0x5f1b3268 ata_bmdma_setup EXPORT_SYMBOL_GPL vmlinux 0x5f23e3fa insert_resource +EXPORT_SYMBOL_GPL vmlinux 0x5f28ea49 edac_mc_del_mc EXPORT_SYMBOL_GPL vmlinux 0x5f2da8c4 check_tsc_unstable EXPORT_SYMBOL_GPL vmlinux 0x5f2fcc83 ioremap_uc -EXPORT_SYMBOL_GPL vmlinux 0x5f533d6a __clk_mux_determine_rate_closest -EXPORT_SYMBOL_GPL vmlinux 0x5f5832f6 __netpoll_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x5f5a614c xfrm_dev_state_add +EXPORT_SYMBOL_GPL vmlinux 0x5f37c3ac debugfs_file_put +EXPORT_SYMBOL_GPL vmlinux 0x5f381bce dma_buf_unpin +EXPORT_SYMBOL_GPL vmlinux 0x5f3bbc12 dma_get_slave_caps +EXPORT_SYMBOL_GPL vmlinux 0x5f4437ae skb_cow_data +EXPORT_SYMBOL_GPL vmlinux 0x5f58fbd5 fuse_conn_init +EXPORT_SYMBOL_GPL vmlinux 0x5f592b43 sdio_get_host_pm_caps +EXPORT_SYMBOL_GPL vmlinux 0x5f5ce2f1 i2c_acpi_new_device +EXPORT_SYMBOL_GPL vmlinux 0x5f6701de irq_chip_release_resources_parent EXPORT_SYMBOL_GPL vmlinux 0x5f6f1e9e dax_get_private -EXPORT_SYMBOL_GPL vmlinux 0x5f6fe337 devm_led_trigger_register -EXPORT_SYMBOL_GPL vmlinux 0x5f93b6af mbox_request_channel_byname -EXPORT_SYMBOL_GPL vmlinux 0x5fa5247a sata_link_scr_lpm +EXPORT_SYMBOL_GPL vmlinux 0x5f951a8b fscrypt_fname_siphash EXPORT_SYMBOL_GPL vmlinux 0x5fa625ed mpi_ec_mul_point -EXPORT_SYMBOL_GPL vmlinux 0x5fbbd377 tcp_register_congestion_control -EXPORT_SYMBOL_GPL vmlinux 0x5fc17535 vfs_listxattr -EXPORT_SYMBOL_GPL vmlinux 0x5fca6e16 fib6_rule_default -EXPORT_SYMBOL_GPL vmlinux 0x5fcec5e4 regulator_put +EXPORT_SYMBOL_GPL vmlinux 0x5fa7f60f fib6_check_nexthop +EXPORT_SYMBOL_GPL vmlinux 0x5fbd9f4b strp_data_ready +EXPORT_SYMBOL_GPL vmlinux 0x5fc955b9 sbitmap_queue_show +EXPORT_SYMBOL_GPL vmlinux 0x5fce2346 tty_mode_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x5fd45f6f fib6_get_table +EXPORT_SYMBOL_GPL vmlinux 0x5fdd115c device_remove_groups EXPORT_SYMBOL_GPL vmlinux 0x5fdfa2c1 amd_pmu_enable_virt -EXPORT_SYMBOL_GPL vmlinux 0x5ff19619 thermal_zone_get_slope +EXPORT_SYMBOL_GPL vmlinux 0x5fee651c ata_host_suspend +EXPORT_SYMBOL_GPL vmlinux 0x5ff5bb3b icc_nodes_remove +EXPORT_SYMBOL_GPL vmlinux 0x5ff71cec pm_clk_create EXPORT_SYMBOL_GPL vmlinux 0x60069ee1 inet_ehash_locks_alloc EXPORT_SYMBOL_GPL vmlinux 0x60091316 clk_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x60157ead irqd_cfg -EXPORT_SYMBOL_GPL vmlinux 0x6017d737 __class_create -EXPORT_SYMBOL_GPL vmlinux 0x6027ef74 __tracepoint_xhci_dbg_quirks +EXPORT_SYMBOL_GPL vmlinux 0x600bdd16 __platform_driver_probe +EXPORT_SYMBOL_GPL vmlinux 0x600d2693 wakeup_source_unregister +EXPORT_SYMBOL_GPL vmlinux 0x60356c0d xdp_rxq_info_is_reg +EXPORT_SYMBOL_GPL vmlinux 0x603b7ba0 ata_sff_queue_pio_task EXPORT_SYMBOL_GPL vmlinux 0x603d0d51 acpi_os_map_iomem -EXPORT_SYMBOL_GPL vmlinux 0x60468160 spi_mem_default_supports_op EXPORT_SYMBOL_GPL vmlinux 0x604722fd devices_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x60531f77 fwnode_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0x605942c8 wm8350_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x605aad7d akcipher_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x6076c750 blk_steal_bios -EXPORT_SYMBOL_GPL vmlinux 0x6078103c dev_pm_domain_start -EXPORT_SYMBOL_GPL vmlinux 0x607add64 bsg_remove_queue +EXPORT_SYMBOL_GPL vmlinux 0x6053e25c usb_hcd_unmap_urb_setup_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x60549d6b ip6_append_data +EXPORT_SYMBOL_GPL vmlinux 0x605cf33e netdev_walk_all_lower_dev +EXPORT_SYMBOL_GPL vmlinux 0x6077a172 devlink_port_attrs_pci_sf_set EXPORT_SYMBOL_GPL vmlinux 0x607c4683 devlink_info_version_fixed_put -EXPORT_SYMBOL_GPL vmlinux 0x608dcea5 fuse_do_open +EXPORT_SYMBOL_GPL vmlinux 0x608183d7 spi_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0x6089b6e4 gpiochip_populate_parent_fwspec_fourcell EXPORT_SYMBOL_GPL vmlinux 0x6091797f synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0x6093ea7d fat_attach -EXPORT_SYMBOL_GPL vmlinux 0x609847d0 i2c_dw_adjust_bus_speed +EXPORT_SYMBOL_GPL vmlinux 0x6097eeef synth_event_gen_cmd_array_start EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier EXPORT_SYMBOL_GPL vmlinux 0x60a634c4 vfio_info_cap_add -EXPORT_SYMBOL_GPL vmlinux 0x60ab5dbe cpuidle_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x60b04f99 hwmon_device_register_with_info -EXPORT_SYMBOL_GPL vmlinux 0x60bc3131 vfio_external_group_match_file -EXPORT_SYMBOL_GPL vmlinux 0x60c78c94 tty_get_pgrp -EXPORT_SYMBOL_GPL vmlinux 0x60c872af pfn_to_online_page -EXPORT_SYMBOL_GPL vmlinux 0x60d39283 lwtunnel_xmit -EXPORT_SYMBOL_GPL vmlinux 0x60e227a1 tpm2_flush_context +EXPORT_SYMBOL_GPL vmlinux 0x60adcc8a regmap_can_raw_write +EXPORT_SYMBOL_GPL vmlinux 0x60eb28a2 dpm_for_each_dev EXPORT_SYMBOL_GPL vmlinux 0x60ebc96f ring_buffer_read_prepare EXPORT_SYMBOL_GPL vmlinux 0x60f99e1b cppc_set_perf -EXPORT_SYMBOL_GPL vmlinux 0x6104e999 da903x_write -EXPORT_SYMBOL_GPL vmlinux 0x61066dfa elv_rqhash_add -EXPORT_SYMBOL_GPL vmlinux 0x6110224f genphy_c45_pma_setup_forced +EXPORT_SYMBOL_GPL vmlinux 0x610db812 ata_dev_pair EXPORT_SYMBOL_GPL vmlinux 0x611cfa85 klist_add_tail -EXPORT_SYMBOL_GPL vmlinux 0x611fc913 rt_mutex_lock -EXPORT_SYMBOL_GPL vmlinux 0x6125158e ehci_adjust_port_wakeup_flags EXPORT_SYMBOL_GPL vmlinux 0x6129fb93 sfp_remove_phy EXPORT_SYMBOL_GPL vmlinux 0x612bfd89 errno_to_blk_status +EXPORT_SYMBOL_GPL vmlinux 0x6144efbb reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x6146e16b memunmap_pages +EXPORT_SYMBOL_GPL vmlinux 0x61508f1c i2c_acpi_client_count EXPORT_SYMBOL_GPL vmlinux 0x615beeb5 __cpuhp_state_add_instance EXPORT_SYMBOL_GPL vmlinux 0x615d3447 kernel_read_file_from_path -EXPORT_SYMBOL_GPL vmlinux 0x6161268a usb_enable_lpm -EXPORT_SYMBOL_GPL vmlinux 0x6178e697 iommu_device_sysfs_add EXPORT_SYMBOL_GPL vmlinux 0x617b026c hwrng_register EXPORT_SYMBOL_GPL vmlinux 0x6181e79f timerqueue_add -EXPORT_SYMBOL_GPL vmlinux 0x618331c3 validate_xmit_skb_list -EXPORT_SYMBOL_GPL vmlinux 0x61843a64 phy_set_mode_ext +EXPORT_SYMBOL_GPL vmlinux 0x618daf09 fwnode_property_read_u64_array EXPORT_SYMBOL_GPL vmlinux 0x6198dfea __ring_buffer_alloc EXPORT_SYMBOL_GPL vmlinux 0x6199ad5d crypto_has_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x619b14da fpstate_init +EXPORT_SYMBOL_GPL vmlinux 0x619af3a4 __sync_filesystem EXPORT_SYMBOL_GPL vmlinux 0x619d2eca acpi_gpio_get_irq_resource -EXPORT_SYMBOL_GPL vmlinux 0x61a1acd0 spi_split_transfers_maxsize -EXPORT_SYMBOL_GPL vmlinux 0x61a3aaee iopf_queue_add_device EXPORT_SYMBOL_GPL vmlinux 0x61ae1d2d xas_pause -EXPORT_SYMBOL_GPL vmlinux 0x61cfef8a gpiochip_irq_unmap -EXPORT_SYMBOL_GPL vmlinux 0x61d281d2 i2c_adapter_depth +EXPORT_SYMBOL_GPL vmlinux 0x61b443f8 x86_spec_ctrl_current +EXPORT_SYMBOL_GPL vmlinux 0x61dab8cc __tracepoint_br_fdb_update +EXPORT_SYMBOL_GPL vmlinux 0x61e30a51 tcp_sendmsg_locked +EXPORT_SYMBOL_GPL vmlinux 0x61eca6b8 usb_interrupt_msg EXPORT_SYMBOL_GPL vmlinux 0x61f67c92 phy_gbit_features_array -EXPORT_SYMBOL_GPL vmlinux 0x61f6e312 fib_nl_newrule -EXPORT_SYMBOL_GPL vmlinux 0x62061073 usb_hcd_amd_remote_wakeup_quirk -EXPORT_SYMBOL_GPL vmlinux 0x6221eae3 kthread_flush_worker +EXPORT_SYMBOL_GPL vmlinux 0x6217f242 ethnl_cable_test_result +EXPORT_SYMBOL_GPL vmlinux 0x622b72e5 devm_gpio_request_one EXPORT_SYMBOL_GPL vmlinux 0x622c7922 register_oom_notifier -EXPORT_SYMBOL_GPL vmlinux 0x62306925 security_path_link EXPORT_SYMBOL_GPL vmlinux 0x62377a7b blk_io_schedule -EXPORT_SYMBOL_GPL vmlinux 0x62425acb generic_fh_to_dentry EXPORT_SYMBOL_GPL vmlinux 0x6246a629 synchronize_rcu_tasks_trace -EXPORT_SYMBOL_GPL vmlinux 0x6247b2a6 edac_get_sysfs_subsys -EXPORT_SYMBOL_GPL vmlinux 0x62541270 page_mkclean -EXPORT_SYMBOL_GPL vmlinux 0x62564087 pm_genpd_init +EXPORT_SYMBOL_GPL vmlinux 0x624f1474 dev_pm_opp_get_sharing_cpus EXPORT_SYMBOL_GPL vmlinux 0x6257dda7 clk_rate_exclusive_get EXPORT_SYMBOL_GPL vmlinux 0x6259d291 clk_restore_context -EXPORT_SYMBOL_GPL vmlinux 0x625a96ae dma_mmap_noncontiguous -EXPORT_SYMBOL_GPL vmlinux 0x625c852e max8997_bulk_write -EXPORT_SYMBOL_GPL vmlinux 0x625e07f2 dw_pcie_ep_init -EXPORT_SYMBOL_GPL vmlinux 0x6292de02 ip6_route_lookup +EXPORT_SYMBOL_GPL vmlinux 0x625b32ee wakeup_source_register +EXPORT_SYMBOL_GPL vmlinux 0x626fc408 of_icc_get +EXPORT_SYMBOL_GPL vmlinux 0x627a10b6 spi_mem_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x628782ac i2c_acpi_find_bus_speed +EXPORT_SYMBOL_GPL vmlinux 0x628e4c11 pm_generic_restore_early +EXPORT_SYMBOL_GPL vmlinux 0x62ad631e get_kernel_pages +EXPORT_SYMBOL_GPL vmlinux 0x62b2e275 adp5520_write +EXPORT_SYMBOL_GPL vmlinux 0x62b3cc2d __fsnotify_parent EXPORT_SYMBOL_GPL vmlinux 0x62bb09bf clocks_calc_mult_shift -EXPORT_SYMBOL_GPL vmlinux 0x62be09ee devm_kstrdup -EXPORT_SYMBOL_GPL vmlinux 0x62d22527 pci_bus_add_device -EXPORT_SYMBOL_GPL vmlinux 0x62d64e8c irq_domain_free_irqs_parent -EXPORT_SYMBOL_GPL vmlinux 0x62e674b0 uart_console_device +EXPORT_SYMBOL_GPL vmlinux 0x62c68b7e usb_add_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0x62d27652 devm_devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0x62d2c497 netdev_walk_all_upper_dev_rcu +EXPORT_SYMBOL_GPL vmlinux 0x62db3a03 mmc_app_cmd +EXPORT_SYMBOL_GPL vmlinux 0x62e5b10f evm_inode_init_security EXPORT_SYMBOL_GPL vmlinux 0x63026490 unregister_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x6305d8ee sata_pmp_error_handler EXPORT_SYMBOL_GPL vmlinux 0x63150e06 clk_get_parent EXPORT_SYMBOL_GPL vmlinux 0x63197685 s2idle_wake -EXPORT_SYMBOL_GPL vmlinux 0x63198477 spi_mem_dtr_supports_op +EXPORT_SYMBOL_GPL vmlinux 0x6331ccca wm8350_device_init +EXPORT_SYMBOL_GPL vmlinux 0x63350915 relay_buf_full +EXPORT_SYMBOL_GPL vmlinux 0x63357bdc ata_bmdma_qc_prep EXPORT_SYMBOL_GPL vmlinux 0x6340434e x86_model -EXPORT_SYMBOL_GPL vmlinux 0x6341b5d6 tpm_calc_ordinal_duration -EXPORT_SYMBOL_GPL vmlinux 0x6361d3dc cpufreq_dbs_governor_init -EXPORT_SYMBOL_GPL vmlinux 0x6369c511 pci_iomap_wc -EXPORT_SYMBOL_GPL vmlinux 0x636bf34a badblocks_init -EXPORT_SYMBOL_GPL vmlinux 0x6378aa6b sata_pmp_qc_defer_cmd_switch -EXPORT_SYMBOL_GPL vmlinux 0x637bce9c pci_user_read_config_word -EXPORT_SYMBOL_GPL vmlinux 0x638637b6 platform_device_register -EXPORT_SYMBOL_GPL vmlinux 0x63881f3c sync_page_io +EXPORT_SYMBOL_GPL vmlinux 0x63427dbf posix_clock_unregister +EXPORT_SYMBOL_GPL vmlinux 0x636a7ee5 phy_driver_is_genphy +EXPORT_SYMBOL_GPL vmlinux 0x637a2970 spi_controller_dma_unmap_mem_op_data +EXPORT_SYMBOL_GPL vmlinux 0x637a9f55 serial8250_do_set_divisor +EXPORT_SYMBOL_GPL vmlinux 0x6380eb3b rio_request_outb_dbell EXPORT_SYMBOL_GPL vmlinux 0x638a9653 memory_add_physaddr_to_nid EXPORT_SYMBOL_GPL vmlinux 0x638aff11 proc_douintvec_minmax -EXPORT_SYMBOL_GPL vmlinux 0x63982c9b ata_bmdma_post_internal_cmd -EXPORT_SYMBOL_GPL vmlinux 0x63a56b0d ata_scsi_slave_config -EXPORT_SYMBOL_GPL vmlinux 0x63a74bd5 usb_hcd_pci_probe -EXPORT_SYMBOL_GPL vmlinux 0x63aeecf6 to_nvdimm -EXPORT_SYMBOL_GPL vmlinux 0x63b18f15 ping_seq_start +EXPORT_SYMBOL_GPL vmlinux 0x639a44aa ip_route_output_tunnel +EXPORT_SYMBOL_GPL vmlinux 0x63acbcb7 md_stop_writes EXPORT_SYMBOL_GPL vmlinux 0x63c08029 clk_bulk_unprepare -EXPORT_SYMBOL_GPL vmlinux 0x63cb909b irq_chip_eoi_parent +EXPORT_SYMBOL_GPL vmlinux 0x63c172ba devres_remove +EXPORT_SYMBOL_GPL vmlinux 0x63d069bc hvc_instantiate +EXPORT_SYMBOL_GPL vmlinux 0x63da0bac irq_remove_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x63e37fb8 modify_user_hw_breakpoint EXPORT_SYMBOL_GPL vmlinux 0x63ea80b3 cper_mem_err_type_str -EXPORT_SYMBOL_GPL vmlinux 0x63f13346 gpiochip_irqchip_add_domain -EXPORT_SYMBOL_GPL vmlinux 0x63fcba66 phy_optional_get -EXPORT_SYMBOL_GPL vmlinux 0x64096568 fat_build_inode -EXPORT_SYMBOL_GPL vmlinux 0x641d34b7 open_related_ns -EXPORT_SYMBOL_GPL vmlinux 0x642a17a0 __traceiter_block_rq_insert -EXPORT_SYMBOL_GPL vmlinux 0x642ee2dd set_online_page_callback -EXPORT_SYMBOL_GPL vmlinux 0x643c622a fscrypt_mergeable_bio_bh -EXPORT_SYMBOL_GPL vmlinux 0x646c1757 wwan_register_ops -EXPORT_SYMBOL_GPL vmlinux 0x648229e0 acpi_dev_remove_driver_gpios +EXPORT_SYMBOL_GPL vmlinux 0x640a3817 gnttab_map_refs +EXPORT_SYMBOL_GPL vmlinux 0x64105920 crypto_larval_alloc +EXPORT_SYMBOL_GPL vmlinux 0x6411906c fuse_conn_destroy +EXPORT_SYMBOL_GPL vmlinux 0x642a3e1f sysfs_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x6436d556 crypto_register_acomp +EXPORT_SYMBOL_GPL vmlinux 0x645281c3 cdrom_multisession +EXPORT_SYMBOL_GPL vmlinux 0x6458b722 __tracepoint_pelt_irq_tp +EXPORT_SYMBOL_GPL vmlinux 0x64689ff8 __pm_stay_awake EXPORT_SYMBOL_GPL vmlinux 0x64925270 __dax_synchronous +EXPORT_SYMBOL_GPL vmlinux 0x649287d4 pci_epc_get_msix EXPORT_SYMBOL_GPL vmlinux 0x64a31445 mutex_lock_io EXPORT_SYMBOL_GPL vmlinux 0x64a62e11 acpi_processor_ffh_cstate_enter +EXPORT_SYMBOL_GPL vmlinux 0x64aabb0c spi_new_device +EXPORT_SYMBOL_GPL vmlinux 0x64b04c73 __traceiter_pelt_thermal_tp EXPORT_SYMBOL_GPL vmlinux 0x64b71173 reserve_iova -EXPORT_SYMBOL_GPL vmlinux 0x64c8a006 ata_bmdma_port_start -EXPORT_SYMBOL_GPL vmlinux 0x64c968c6 phy_destroy EXPORT_SYMBOL_GPL vmlinux 0x64d3cc4e xas_load -EXPORT_SYMBOL_GPL vmlinux 0x64d51193 devm_blk_ksm_init -EXPORT_SYMBOL_GPL vmlinux 0x64d7300b ata_acpi_gtm -EXPORT_SYMBOL_GPL vmlinux 0x64e01d66 irqchip_fwnode_ops EXPORT_SYMBOL_GPL vmlinux 0x64e27c4f synth_event_delete +EXPORT_SYMBOL_GPL vmlinux 0x64ebf5b6 tps6586x_writes EXPORT_SYMBOL_GPL vmlinux 0x64f36620 dax_flush +EXPORT_SYMBOL_GPL vmlinux 0x64fe1509 dev_set_name +EXPORT_SYMBOL_GPL vmlinux 0x64fe7352 nd_blk_region_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x6500a312 crypto_stats_init EXPORT_SYMBOL_GPL vmlinux 0x6502d9c2 xenbus_scanf -EXPORT_SYMBOL_GPL vmlinux 0x650b392b get_task_pid -EXPORT_SYMBOL_GPL vmlinux 0x651f146f usb_disable_ltm -EXPORT_SYMBOL_GPL vmlinux 0x65272655 virtqueue_get_buf +EXPORT_SYMBOL_GPL vmlinux 0x650368ab __phy_modify_mmd +EXPORT_SYMBOL_GPL vmlinux 0x6514b9c0 gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x6522cb22 crypto_create_tfm_node EXPORT_SYMBOL_GPL vmlinux 0x6527a231 dbgp_external_startup -EXPORT_SYMBOL_GPL vmlinux 0x652f5430 tps80031_ext_power_req_config EXPORT_SYMBOL_GPL vmlinux 0x6531a37f mpi_add -EXPORT_SYMBOL_GPL vmlinux 0x65497ae2 __hwspin_lock_timeout -EXPORT_SYMBOL_GPL vmlinux 0x65585b9b inet6_csk_addr2sockaddr -EXPORT_SYMBOL_GPL vmlinux 0x656f3073 __traceiter_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0x653b4d8b devm_gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0x654c7c89 regulator_list_voltage_table +EXPORT_SYMBOL_GPL vmlinux 0x6554acb9 d_walk +EXPORT_SYMBOL_GPL vmlinux 0x6567aace unregister_hw_breakpoint EXPORT_SYMBOL_GPL vmlinux 0x65704d22 hv_stimer_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x657445d6 clk_hw_register_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0x659f8dac devm_spi_mem_dirmap_destroy -EXPORT_SYMBOL_GPL vmlinux 0x65bd419d tcp_leave_memory_pressure -EXPORT_SYMBOL_GPL vmlinux 0x65c768f1 dma_can_mmap -EXPORT_SYMBOL_GPL vmlinux 0x65c8aaaa irq_set_chip_and_handler_name +EXPORT_SYMBOL_GPL vmlinux 0x657305cb verify_signature +EXPORT_SYMBOL_GPL vmlinux 0x6580e36d exportfs_encode_inode_fh +EXPORT_SYMBOL_GPL vmlinux 0x6593e792 regmap_multi_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x659810c0 acpi_subsys_freeze +EXPORT_SYMBOL_GPL vmlinux 0x65b80dfa thermal_zone_unbind_cooling_device EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers -EXPORT_SYMBOL_GPL vmlinux 0x65d32e91 exportfs_encode_fh -EXPORT_SYMBOL_GPL vmlinux 0x65d4ef4f __SCK__tp_func_cpu_idle -EXPORT_SYMBOL_GPL vmlinux 0x65ec8e4e crypto_spawn_tfm2 -EXPORT_SYMBOL_GPL vmlinux 0x65ee67fd edac_mc_del_mc -EXPORT_SYMBOL_GPL vmlinux 0x66017b9e gpiod_set_raw_value -EXPORT_SYMBOL_GPL vmlinux 0x660b81af wwan_unregister_ops -EXPORT_SYMBOL_GPL vmlinux 0x6611c8e1 gov_attr_set_get -EXPORT_SYMBOL_GPL vmlinux 0x66121776 icc_node_create -EXPORT_SYMBOL_GPL vmlinux 0x66130697 led_trigger_set_default +EXPORT_SYMBOL_GPL vmlinux 0x65d1633d powercap_register_zone +EXPORT_SYMBOL_GPL vmlinux 0x65e126b8 generic_fh_to_parent +EXPORT_SYMBOL_GPL vmlinux 0x65e12ffa md_run +EXPORT_SYMBOL_GPL vmlinux 0x65eb2133 skb_mpls_push +EXPORT_SYMBOL_GPL vmlinux 0x66093d91 devm_pm_opp_register_set_opp_helper EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol -EXPORT_SYMBOL_GPL vmlinux 0x6625a37b ata_dev_disable -EXPORT_SYMBOL_GPL vmlinux 0x662fb530 tcp_rate_check_app_limited +EXPORT_SYMBOL_GPL vmlinux 0x6620ee9b dev_pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x6621895d irq_domain_disconnect_hierarchy EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity EXPORT_SYMBOL_GPL vmlinux 0x663bb448 devlink_fmsg_obj_nest_end -EXPORT_SYMBOL_GPL vmlinux 0x66466c34 fat_dir_empty -EXPORT_SYMBOL_GPL vmlinux 0x665ac5b2 blk_next_bio +EXPORT_SYMBOL_GPL vmlinux 0x664275e2 __auxiliary_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x665e5e48 regulator_set_current_limit_regmap EXPORT_SYMBOL_GPL vmlinux 0x665e92a0 clk_set_duty_cycle -EXPORT_SYMBOL_GPL vmlinux 0x6670d29e vga_default_device +EXPORT_SYMBOL_GPL vmlinux 0x666adf47 simple_attr_open +EXPORT_SYMBOL_GPL vmlinux 0x666ae51b __tracepoint_pelt_thermal_tp EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x668ad073 blk_freeze_queue_start -EXPORT_SYMBOL_GPL vmlinux 0x669800f4 device_wakeup_enable -EXPORT_SYMBOL_GPL vmlinux 0x669fb1a1 kthread_queue_delayed_work -EXPORT_SYMBOL_GPL vmlinux 0x66aa97a9 __fl6_sock_lookup +EXPORT_SYMBOL_GPL vmlinux 0x669445a3 da903x_write EXPORT_SYMBOL_GPL vmlinux 0x66ae4727 mdio_bus_init EXPORT_SYMBOL_GPL vmlinux 0x66b26b2b clk_hw_unregister_divider -EXPORT_SYMBOL_GPL vmlinux 0x66b78357 bus_set_iommu EXPORT_SYMBOL_GPL vmlinux 0x66b97421 sfp_link_up -EXPORT_SYMBOL_GPL vmlinux 0x66ba7aa1 vfio_pci_core_request +EXPORT_SYMBOL_GPL vmlinux 0x66d2c7ee devm_platform_get_irqs_affinity EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr -EXPORT_SYMBOL_GPL vmlinux 0x66ef2867 pci_create_root_bus -EXPORT_SYMBOL_GPL vmlinux 0x66f01517 fscrypt_file_open -EXPORT_SYMBOL_GPL vmlinux 0x66f19f6d crypto_enqueue_request -EXPORT_SYMBOL_GPL vmlinux 0x66f812c6 restore_online_page_callback -EXPORT_SYMBOL_GPL vmlinux 0x670515b4 raw_abort -EXPORT_SYMBOL_GPL vmlinux 0x671152bf noop_direct_IO -EXPORT_SYMBOL_GPL vmlinux 0x67174e93 devm_nvmem_cell_get -EXPORT_SYMBOL_GPL vmlinux 0x67223910 dma_buf_end_cpu_access +EXPORT_SYMBOL_GPL vmlinux 0x66f35c29 i2c_match_id +EXPORT_SYMBOL_GPL vmlinux 0x66fa73de crypto_stats_rng_seed +EXPORT_SYMBOL_GPL vmlinux 0x670c376a blk_rq_unprep_clone +EXPORT_SYMBOL_GPL vmlinux 0x6722cf3b __traceiter_xdp_exception EXPORT_SYMBOL_GPL vmlinux 0x6735d56e tcp_ca_get_name_by_key -EXPORT_SYMBOL_GPL vmlinux 0x67364965 clk_hw_get_name EXPORT_SYMBOL_GPL vmlinux 0x6739a503 balloon_set_new_target -EXPORT_SYMBOL_GPL vmlinux 0x674cce2f serdev_device_remove +EXPORT_SYMBOL_GPL vmlinux 0x6741a3e7 pci_max_pasids +EXPORT_SYMBOL_GPL vmlinux 0x6741cf8d gpiod_direction_output +EXPORT_SYMBOL_GPL vmlinux 0x674f78fb acpi_subsys_suspend EXPORT_SYMBOL_GPL vmlinux 0x6759bd00 __SCT__tp_func_rpm_idle -EXPORT_SYMBOL_GPL vmlinux 0x676d3100 sdio_set_host_pm_flags -EXPORT_SYMBOL_GPL vmlinux 0x6780f7f3 blk_ksm_register -EXPORT_SYMBOL_GPL vmlinux 0x6782f7f2 blk_mq_sched_mark_restart_hctx -EXPORT_SYMBOL_GPL vmlinux 0x6787f8fd pm_generic_suspend -EXPORT_SYMBOL_GPL vmlinux 0x678b6705 tty_port_link_device +EXPORT_SYMBOL_GPL vmlinux 0x675fc8c2 fib6_rule_default +EXPORT_SYMBOL_GPL vmlinux 0x6771f377 acpi_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0x677b0247 shmem_file_setup +EXPORT_SYMBOL_GPL vmlinux 0x678a2bb9 device_for_each_child_reverse EXPORT_SYMBOL_GPL vmlinux 0x6790ebd3 mce_is_memory_error EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits -EXPORT_SYMBOL_GPL vmlinux 0x679ab7c6 pci_epf_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x67c4e699 sk_psock_init -EXPORT_SYMBOL_GPL vmlinux 0x67ce3efd pci_host_probe -EXPORT_SYMBOL_GPL vmlinux 0x67ce7c4f acpi_is_pnp_device -EXPORT_SYMBOL_GPL vmlinux 0x67d87005 tps6586x_update -EXPORT_SYMBOL_GPL vmlinux 0x67d930ad dev_pm_set_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x67a4f89d wwan_register_ops +EXPORT_SYMBOL_GPL vmlinux 0x67ba6d72 usb_acpi_set_power_state +EXPORT_SYMBOL_GPL vmlinux 0x67c1cb89 usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0x67c20f78 to_nd_blk_region +EXPORT_SYMBOL_GPL vmlinux 0x67d6996e serdev_controller_remove +EXPORT_SYMBOL_GPL vmlinux 0x67d986a9 mmc_cmdq_enable EXPORT_SYMBOL_GPL vmlinux 0x67da9f7c sha512_zero_message_hash EXPORT_SYMBOL_GPL vmlinux 0x67dcd76b uv_setup_irq -EXPORT_SYMBOL_GPL vmlinux 0x67ec8f4e nvdimm_setup_pfn -EXPORT_SYMBOL_GPL vmlinux 0x67f200de devm_gpiod_get_optional -EXPORT_SYMBOL_GPL vmlinux 0x68061a66 extcon_set_state_sync -EXPORT_SYMBOL_GPL vmlinux 0x68074987 dax_supported -EXPORT_SYMBOL_GPL vmlinux 0x6816e231 unix_peer_get -EXPORT_SYMBOL_GPL vmlinux 0x681c0438 fat_truncate_time +EXPORT_SYMBOL_GPL vmlinux 0x67e965b6 __SCK__tp_func_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0x67f56483 eventfd_fget +EXPORT_SYMBOL_GPL vmlinux 0x681f8288 gpiochip_generic_request EXPORT_SYMBOL_GPL vmlinux 0x682ff057 ring_buffer_commit_overrun_cpu -EXPORT_SYMBOL_GPL vmlinux 0x683ea66f __blk_req_zone_write_unlock -EXPORT_SYMBOL_GPL vmlinux 0x6841eca2 ata_platform_remove_one -EXPORT_SYMBOL_GPL vmlinux 0x684b9174 vfs_setxattr -EXPORT_SYMBOL_GPL vmlinux 0x6868393b skb_gso_validate_network_len -EXPORT_SYMBOL_GPL vmlinux 0x686b6f8b devlink_dpipe_table_register -EXPORT_SYMBOL_GPL vmlinux 0x686e2a7a __tracepoint_error_report_end -EXPORT_SYMBOL_GPL vmlinux 0x68922b17 anon_transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x6832bbcc tcp_unregister_ulp +EXPORT_SYMBOL_GPL vmlinux 0x6832dbf6 icc_provider_add +EXPORT_SYMBOL_GPL vmlinux 0x6841cb4a __get_task_comm +EXPORT_SYMBOL_GPL vmlinux 0x685cf922 device_remove_properties +EXPORT_SYMBOL_GPL vmlinux 0x686bca67 wm831x_auxadc_read +EXPORT_SYMBOL_GPL vmlinux 0x687a1731 skb_zerocopy_headlen EXPORT_SYMBOL_GPL vmlinux 0x68952493 rcu_note_context_switch -EXPORT_SYMBOL_GPL vmlinux 0x689b8691 device_rename -EXPORT_SYMBOL_GPL vmlinux 0x68a4ee0c tty_port_default_client_ops -EXPORT_SYMBOL_GPL vmlinux 0x68b20ee9 pcie_aspm_enabled -EXPORT_SYMBOL_GPL vmlinux 0x68dc5931 __clk_hw_register_mux -EXPORT_SYMBOL_GPL vmlinux 0x68e9ab14 fscrypt_ioctl_get_policy_ex +EXPORT_SYMBOL_GPL vmlinux 0x68b6ddb9 usb_hcd_pci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x68b9ed77 sata_set_spd +EXPORT_SYMBOL_GPL vmlinux 0x68c8104c evict_inodes +EXPORT_SYMBOL_GPL vmlinux 0x68ccdc31 regmap_get_raw_write_max +EXPORT_SYMBOL_GPL vmlinux 0x68cd1a83 pm_generic_freeze_noirq +EXPORT_SYMBOL_GPL vmlinux 0x68de2a6e sock_gen_put +EXPORT_SYMBOL_GPL vmlinux 0x68eea626 fat_alloc_new_dir +EXPORT_SYMBOL_GPL vmlinux 0x68f1ce0a fixed_phy_register +EXPORT_SYMBOL_GPL vmlinux 0x68f495f8 fwnode_graph_get_remote_port_parent +EXPORT_SYMBOL_GPL vmlinux 0x68f4e279 __tracepoint_block_split +EXPORT_SYMBOL_GPL vmlinux 0x690b3449 ip_icmp_error_rfc4884 EXPORT_SYMBOL_GPL vmlinux 0x690f585e phy_basic_ports_array -EXPORT_SYMBOL_GPL vmlinux 0x691ccc11 ip6_dst_lookup_flow -EXPORT_SYMBOL_GPL vmlinux 0x6920472b __traceiter_block_bio_remap -EXPORT_SYMBOL_GPL vmlinux 0x692b2d8a vp_modern_map_vq_notify -EXPORT_SYMBOL_GPL vmlinux 0x69391bfe iommu_device_unlink -EXPORT_SYMBOL_GPL vmlinux 0x6941cd95 rio_mport_initialize -EXPORT_SYMBOL_GPL vmlinux 0x6948e490 crypto_type_has_alg -EXPORT_SYMBOL_GPL vmlinux 0x694c5641 __traceiter_tcp_bad_csum -EXPORT_SYMBOL_GPL vmlinux 0x6960e03b scsi_eh_ready_devs +EXPORT_SYMBOL_GPL vmlinux 0x6927f4f7 pm_clk_add_clk +EXPORT_SYMBOL_GPL vmlinux 0x692b104f sdev_evt_send_simple +EXPORT_SYMBOL_GPL vmlinux 0x692e3a8c bpf_prog_create +EXPORT_SYMBOL_GPL vmlinux 0x6932f845 vp_modern_get_queue_enable +EXPORT_SYMBOL_GPL vmlinux 0x6935f210 ipv6_stub +EXPORT_SYMBOL_GPL vmlinux 0x6950bb03 xenbus_dev_changed +EXPORT_SYMBOL_GPL vmlinux 0x695b1960 pwm_lpss_probe +EXPORT_SYMBOL_GPL vmlinux 0x695ca4cb scsi_nl_sock EXPORT_SYMBOL_GPL vmlinux 0x696340a5 __i2c_board_lock EXPORT_SYMBOL_GPL vmlinux 0x69637b2c __traceiter_powernv_throttle -EXPORT_SYMBOL_GPL vmlinux 0x6963f532 crypto_register_scomps +EXPORT_SYMBOL_GPL vmlinux 0x69668134 __traceiter_pelt_dl_tp EXPORT_SYMBOL_GPL vmlinux 0x696d7e0b l1tf_mitigation -EXPORT_SYMBOL_GPL vmlinux 0x6973bb77 pci_check_and_unmask_intx -EXPORT_SYMBOL_GPL vmlinux 0x6978e48f usb_remove_hcd +EXPORT_SYMBOL_GPL vmlinux 0x697099a1 ata_link_next +EXPORT_SYMBOL_GPL vmlinux 0x6971dd87 irq_chip_request_resources_parent EXPORT_SYMBOL_GPL vmlinux 0x697c5d0d tracing_snapshot_alloc -EXPORT_SYMBOL_GPL vmlinux 0x6986fdcf clk_hw_get_flags -EXPORT_SYMBOL_GPL vmlinux 0x698723e2 __skb_get_hash_symmetric -EXPORT_SYMBOL_GPL vmlinux 0x698dcf03 pm_wakeup_dev_event -EXPORT_SYMBOL_GPL vmlinux 0x699daf6a noop_backing_dev_info -EXPORT_SYMBOL_GPL vmlinux 0x69a05dcc regulator_get_voltage_sel_pickable_regmap -EXPORT_SYMBOL_GPL vmlinux 0x69ac78af unregister_trace_event -EXPORT_SYMBOL_GPL vmlinux 0x69c2ee74 clk_hw_register_fractional_divider -EXPORT_SYMBOL_GPL vmlinux 0x69c89520 fscrypt_ioctl_get_key_status -EXPORT_SYMBOL_GPL vmlinux 0x69c91cd6 usb_add_hcd +EXPORT_SYMBOL_GPL vmlinux 0x697fd21f devres_release_group +EXPORT_SYMBOL_GPL vmlinux 0x698171e5 of_clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0x699df4d8 devlink_resources_unregister +EXPORT_SYMBOL_GPL vmlinux 0x69a23782 ping_unhash +EXPORT_SYMBOL_GPL vmlinux 0x69a9cb88 crypto_comp_compress +EXPORT_SYMBOL_GPL vmlinux 0x69aae194 gpiochip_get_data +EXPORT_SYMBOL_GPL vmlinux 0x69bc142a devm_krealloc +EXPORT_SYMBOL_GPL vmlinux 0x69c622de rt_mutex_lock_interruptible +EXPORT_SYMBOL_GPL vmlinux 0x69c9e3e1 free_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x69cc6416 blk_lld_busy EXPORT_SYMBOL_GPL vmlinux 0x69cf0632 mpi_fromstr +EXPORT_SYMBOL_GPL vmlinux 0x69d1886f devfreq_cooling_unregister EXPORT_SYMBOL_GPL vmlinux 0x69e683de uuid_gen -EXPORT_SYMBOL_GPL vmlinux 0x69e7d103 debugfs_file_put +EXPORT_SYMBOL_GPL vmlinux 0x69e6c96f usb_disable_ltm +EXPORT_SYMBOL_GPL vmlinux 0x69e83605 mc146818_get_time +EXPORT_SYMBOL_GPL vmlinux 0x69eaf610 skcipher_alloc_instance_simple +EXPORT_SYMBOL_GPL vmlinux 0x69ec3d12 spi_mem_poll_status EXPORT_SYMBOL_GPL vmlinux 0x69ee2220 linear_range_get_selector_high -EXPORT_SYMBOL_GPL vmlinux 0x69f754b4 crypto_skcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x69eff2d4 pci_epc_mem_free_addr EXPORT_SYMBOL_GPL vmlinux 0x6a05b65b fb_videomode_from_videomode -EXPORT_SYMBOL_GPL vmlinux 0x6a0bd249 dm_set_target_max_io_len -EXPORT_SYMBOL_GPL vmlinux 0x6a125622 nvdimm_security_setup_events +EXPORT_SYMBOL_GPL vmlinux 0x6a10a529 tpm_pcr_read EXPORT_SYMBOL_GPL vmlinux 0x6a1733eb iommu_group_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6a39e21f tty_find_polling_driver +EXPORT_SYMBOL_GPL vmlinux 0x6a182c97 __bio_try_merge_page +EXPORT_SYMBOL_GPL vmlinux 0x6a28c35c usb_hcd_map_urb_for_dma EXPORT_SYMBOL_GPL vmlinux 0x6a421062 memory_failure_queue EXPORT_SYMBOL_GPL vmlinux 0x6a460dc5 schedule_hrtimeout -EXPORT_SYMBOL_GPL vmlinux 0x6a487e77 thermal_zone_device_disable +EXPORT_SYMBOL_GPL vmlinux 0x6a4bf2fc is_skb_forwardable EXPORT_SYMBOL_GPL vmlinux 0x6a4f623b mmu_notifier_synchronize -EXPORT_SYMBOL_GPL vmlinux 0x6a538699 iptunnel_xmit EXPORT_SYMBOL_GPL vmlinux 0x6a5e2bde __cookie_v6_init_sequence -EXPORT_SYMBOL_GPL vmlinux 0x6a612396 __audit_inode_child -EXPORT_SYMBOL_GPL vmlinux 0x6a632f14 cpufreq_cpu_put -EXPORT_SYMBOL_GPL vmlinux 0x6a6ae12b crypto_mod_get -EXPORT_SYMBOL_GPL vmlinux 0x6a6cf663 iommu_detach_device -EXPORT_SYMBOL_GPL vmlinux 0x6a8400ea screen_glyph +EXPORT_SYMBOL_GPL vmlinux 0x6a5fd8f0 input_ff_destroy +EXPORT_SYMBOL_GPL vmlinux 0x6a829a04 _copy_from_iter_flushcache EXPORT_SYMBOL_GPL vmlinux 0x6a8441be cpci_hp_start -EXPORT_SYMBOL_GPL vmlinux 0x6a94f617 platform_device_alloc -EXPORT_SYMBOL_GPL vmlinux 0x6a9784c0 vchan_find_desc -EXPORT_SYMBOL_GPL vmlinux 0x6a986079 da903x_register_notifier EXPORT_SYMBOL_GPL vmlinux 0x6aa2a877 xenbus_printf +EXPORT_SYMBOL_GPL vmlinux 0x6aa8f31e gpiod_set_consumer_name EXPORT_SYMBOL_GPL vmlinux 0x6aad9152 xen_set_callback_via -EXPORT_SYMBOL_GPL vmlinux 0x6ac10bda devm_gpiod_get -EXPORT_SYMBOL_GPL vmlinux 0x6ac69bec umd_load_blob -EXPORT_SYMBOL_GPL vmlinux 0x6ad07c50 i2c_add_numbered_adapter -EXPORT_SYMBOL_GPL vmlinux 0x6ad590d2 md_find_rdev_nr_rcu -EXPORT_SYMBOL_GPL vmlinux 0x6adda7cf sbitmap_show -EXPORT_SYMBOL_GPL vmlinux 0x6ae7bf0d spi_finalize_current_message -EXPORT_SYMBOL_GPL vmlinux 0x6af66cf6 platform_device_add -EXPORT_SYMBOL_GPL vmlinux 0x6b05267e sdio_writel -EXPORT_SYMBOL_GPL vmlinux 0x6b0c8c63 ata_host_alloc +EXPORT_SYMBOL_GPL vmlinux 0x6ac61f57 get_pid_task +EXPORT_SYMBOL_GPL vmlinux 0x6ac75ba6 iomap_dio_rw +EXPORT_SYMBOL_GPL vmlinux 0x6ad67c48 iommu_device_link +EXPORT_SYMBOL_GPL vmlinux 0x6adfd5c9 pci_dev_trylock +EXPORT_SYMBOL_GPL vmlinux 0x6ae9dfd9 __fscrypt_prepare_rename +EXPORT_SYMBOL_GPL vmlinux 0x6af7babd skb_segment +EXPORT_SYMBOL_GPL vmlinux 0x6b0965f3 __devres_alloc_node EXPORT_SYMBOL_GPL vmlinux 0x6b0dc565 xen_set_irq_priority -EXPORT_SYMBOL_GPL vmlinux 0x6b10f87f trace_get_event_file +EXPORT_SYMBOL_GPL vmlinux 0x6b1848ee __traceiter_rpm_idle EXPORT_SYMBOL_GPL vmlinux 0x6b198c77 led_colors -EXPORT_SYMBOL_GPL vmlinux 0x6b1b1a82 led_trigger_event -EXPORT_SYMBOL_GPL vmlinux 0x6b20a1d4 uart_insert_char -EXPORT_SYMBOL_GPL vmlinux 0x6b257855 crypto_stats_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0x6b1d8760 devm_clk_hw_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6b2ac0b2 dev_attr_ncq_prio_enable EXPORT_SYMBOL_GPL vmlinux 0x6b2b69f7 static_key_enable -EXPORT_SYMBOL_GPL vmlinux 0x6b30390a __platform_register_drivers +EXPORT_SYMBOL_GPL vmlinux 0x6b34b6a3 nvmem_cell_read_u8 EXPORT_SYMBOL_GPL vmlinux 0x6b35a16b intel_scu_ipc_dev_get -EXPORT_SYMBOL_GPL vmlinux 0x6b35c328 security_file_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x6b381845 crypto_unregister_skcipher EXPORT_SYMBOL_GPL vmlinux 0x6b3ae022 acpi_os_unmap_iomem +EXPORT_SYMBOL_GPL vmlinux 0x6b3b1837 request_firmware_direct +EXPORT_SYMBOL_GPL vmlinux 0x6b3f9bc0 security_kernel_post_read_file EXPORT_SYMBOL_GPL vmlinux 0x6b413c9b sfp_link_down -EXPORT_SYMBOL_GPL vmlinux 0x6b49fa1e wp_shared_mapping_range -EXPORT_SYMBOL_GPL vmlinux 0x6b4e5d8f blk_trace_remove -EXPORT_SYMBOL_GPL vmlinux 0x6b55a180 pci_assign_unassigned_bridge_resources -EXPORT_SYMBOL_GPL vmlinux 0x6b626108 __vfs_setxattr_locked +EXPORT_SYMBOL_GPL vmlinux 0x6b4f0a1f usb_hub_claim_port +EXPORT_SYMBOL_GPL vmlinux 0x6b5069d5 devlink_rate_leaf_create +EXPORT_SYMBOL_GPL vmlinux 0x6b554980 usb_alloc_streams +EXPORT_SYMBOL_GPL vmlinux 0x6b588b5b blkcg_activate_policy +EXPORT_SYMBOL_GPL vmlinux 0x6b5d0869 crypto_unregister_algs +EXPORT_SYMBOL_GPL vmlinux 0x6b61d3ff serial8250_rpm_put_tx +EXPORT_SYMBOL_GPL vmlinux 0x6b6b3a5e devm_hwmon_device_unregister EXPORT_SYMBOL_GPL vmlinux 0x6b7a4335 hyperv_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x6b7d6206 nexthop_select_path EXPORT_SYMBOL_GPL vmlinux 0x6b81c38b power_supply_unreg_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6b8aadea pci_num_vf -EXPORT_SYMBOL_GPL vmlinux 0x6b9153b3 sata_set_spd EXPORT_SYMBOL_GPL vmlinux 0x6ba36c6a hwpoison_filter_flags_value -EXPORT_SYMBOL_GPL vmlinux 0x6bb324d3 md_account_bio -EXPORT_SYMBOL_GPL vmlinux 0x6bca98c4 tpm_pcr_read +EXPORT_SYMBOL_GPL vmlinux 0x6ba89a53 thermal_zone_device_register +EXPORT_SYMBOL_GPL vmlinux 0x6ba945cb ping_close +EXPORT_SYMBOL_GPL vmlinux 0x6baac6b2 dev_pm_opp_init_cpufreq_table +EXPORT_SYMBOL_GPL vmlinux 0x6bac63ee ata_sff_data_xfer32 +EXPORT_SYMBOL_GPL vmlinux 0x6bbf925f debugfs_create_file EXPORT_SYMBOL_GPL vmlinux 0x6bcdedc0 mpi_point_init EXPORT_SYMBOL_GPL vmlinux 0x6bd1aa56 stack_trace_save EXPORT_SYMBOL_GPL vmlinux 0x6bdef35c acpi_ec_mark_gpe_for_wake EXPORT_SYMBOL_GPL vmlinux 0x6be3a96b hv_remove_vmbus_handler -EXPORT_SYMBOL_GPL vmlinux 0x6be7fd29 __traceiter_rpm_resume -EXPORT_SYMBOL_GPL vmlinux 0x6bf95688 dev_pm_qos_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6c028386 ip6_redirect -EXPORT_SYMBOL_GPL vmlinux 0x6c075a9f phy_reset -EXPORT_SYMBOL_GPL vmlinux 0x6c08cbed nvmem_register -EXPORT_SYMBOL_GPL vmlinux 0x6c0bd3ed usb_hcd_poll_rh_status +EXPORT_SYMBOL_GPL vmlinux 0x6be7cdbe usb_alloc_urb +EXPORT_SYMBOL_GPL vmlinux 0x6c021aec fwnode_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x6c13273c irq_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x6c1e2836 devm_led_classdev_register_ext EXPORT_SYMBOL_GPL vmlinux 0x6c205008 mpi_print -EXPORT_SYMBOL_GPL vmlinux 0x6c222490 perf_aux_output_begin +EXPORT_SYMBOL_GPL vmlinux 0x6c23f23a iptunnel_metadata_reply EXPORT_SYMBOL_GPL vmlinux 0x6c389761 acpi_bus_get_private_data -EXPORT_SYMBOL_GPL vmlinux 0x6c3bd1a8 udp_tunnel_nic_ops +EXPORT_SYMBOL_GPL vmlinux 0x6c3a3f93 unix_inq_len EXPORT_SYMBOL_GPL vmlinux 0x6c3f70e0 guid_gen -EXPORT_SYMBOL_GPL vmlinux 0x6c4703e4 wakeup_source_remove +EXPORT_SYMBOL_GPL vmlinux 0x6c4367ec fwnode_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0x6c437702 shmem_truncate_range EXPORT_SYMBOL_GPL vmlinux 0x6c4b6684 reset_control_assert -EXPORT_SYMBOL_GPL vmlinux 0x6c56a880 usb_get_role_switch_default_mode +EXPORT_SYMBOL_GPL vmlinux 0x6c56f5d5 fwnode_get_nth_parent EXPORT_SYMBOL_GPL vmlinux 0x6c5ad0cd kmsg_dump_register -EXPORT_SYMBOL_GPL vmlinux 0x6c5fe7f0 ata_host_activate -EXPORT_SYMBOL_GPL vmlinux 0x6c61390a pwm_free +EXPORT_SYMBOL_GPL vmlinux 0x6c620e5f sysfs_remove_file_self EXPORT_SYMBOL_GPL vmlinux 0x6c655913 register_acpi_hed_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6c7b8428 serial8250_do_set_divisor -EXPORT_SYMBOL_GPL vmlinux 0x6c9b0673 ata_slave_link_init +EXPORT_SYMBOL_GPL vmlinux 0x6c7b435f mc146818_does_rtc_work +EXPORT_SYMBOL_GPL vmlinux 0x6c803d95 fsverity_verify_bio EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain -EXPORT_SYMBOL_GPL vmlinux 0x6ca796ab ip6_sk_redirect -EXPORT_SYMBOL_GPL vmlinux 0x6ca98f28 key_type_user -EXPORT_SYMBOL_GPL vmlinux 0x6cad0fe0 fb_deferred_io_fsync -EXPORT_SYMBOL_GPL vmlinux 0x6cb9a279 nvdimm_clear_poison -EXPORT_SYMBOL_GPL vmlinux 0x6cbe6eb1 pci_cfg_access_trylock -EXPORT_SYMBOL_GPL vmlinux 0x6cc7ff67 debugfs_read_file_bool -EXPORT_SYMBOL_GPL vmlinux 0x6cccf6c7 __SCK__tp_func_attach_device_to_domain -EXPORT_SYMBOL_GPL vmlinux 0x6cd4d9d2 iommu_group_remove_device -EXPORT_SYMBOL_GPL vmlinux 0x6cd7d316 regmap_multi_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x6cdbb1a7 blk_mq_quiesce_queue -EXPORT_SYMBOL_GPL vmlinux 0x6cf5b243 register_acpi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x6caed1ba inet6_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x6cccf5f6 bsg_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0x6cd51c0b devlink_region_create +EXPORT_SYMBOL_GPL vmlinux 0x6cf590e7 regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6cfb78f4 relay_file_operations +EXPORT_SYMBOL_GPL vmlinux 0x6cff7709 edac_pci_alloc_ctl_info EXPORT_SYMBOL_GPL vmlinux 0x6d04891d inet_getpeer -EXPORT_SYMBOL_GPL vmlinux 0x6d056e55 devfreq_event_enable_edev -EXPORT_SYMBOL_GPL vmlinux 0x6d08ad74 ack_all_badblocks -EXPORT_SYMBOL_GPL vmlinux 0x6d08b66a get_net_ns_by_pid EXPORT_SYMBOL_GPL vmlinux 0x6d09843f copy_bpf_fprog_from_user EXPORT_SYMBOL_GPL vmlinux 0x6d0ae550 pinctrl_gpio_request -EXPORT_SYMBOL_GPL vmlinux 0x6d204536 regulator_get_optional EXPORT_SYMBOL_GPL vmlinux 0x6d2e899d mce_usable_address EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list -EXPORT_SYMBOL_GPL vmlinux 0x6d3b0bc1 regulator_set_voltage_sel_regmap -EXPORT_SYMBOL_GPL vmlinux 0x6d43be9f irq_chip_request_resources_parent -EXPORT_SYMBOL_GPL vmlinux 0x6d455b01 irq_domain_push_irq -EXPORT_SYMBOL_GPL vmlinux 0x6d4efdfc ata_sff_check_status +EXPORT_SYMBOL_GPL vmlinux 0x6d30b50e __tracepoint_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0x6d419a81 xfrm_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0x6d493da2 regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x6d547daf pm_generic_thaw_early +EXPORT_SYMBOL_GPL vmlinux 0x6d5bc11b screen_glyph_unicode +EXPORT_SYMBOL_GPL vmlinux 0x6d69d5ad rtc_class_open EXPORT_SYMBOL_GPL vmlinux 0x6d6fec1f ktime_mono_to_any -EXPORT_SYMBOL_GPL vmlinux 0x6d76d585 watchdog_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x6d718342 acpi_pm_set_device_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x6d77f38f da9052_enable_irq EXPORT_SYMBOL_GPL vmlinux 0x6d7e951e rcu_exp_batches_completed -EXPORT_SYMBOL_GPL vmlinux 0x6d990667 devm_hwmon_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x6daa5b91 phy_validate -EXPORT_SYMBOL_GPL vmlinux 0x6db22bc6 dev_coredumpm +EXPORT_SYMBOL_GPL vmlinux 0x6d93f7cc handle_fasteoi_nmi +EXPORT_SYMBOL_GPL vmlinux 0x6db2250c devm_blk_ksm_init EXPORT_SYMBOL_GPL vmlinux 0x6dbaafd3 put_old_timespec32 +EXPORT_SYMBOL_GPL vmlinux 0x6dc4fb21 dev_pm_opp_get_voltage EXPORT_SYMBOL_GPL vmlinux 0x6dd5680d sprint_symbol_build_id -EXPORT_SYMBOL_GPL vmlinux 0x6dda8038 __clocksource_register_scale -EXPORT_SYMBOL_GPL vmlinux 0x6de3fed1 vfio_pci_core_read +EXPORT_SYMBOL_GPL vmlinux 0x6dd93909 iommu_present +EXPORT_SYMBOL_GPL vmlinux 0x6de5733c cpufreq_dbs_governor_stop +EXPORT_SYMBOL_GPL vmlinux 0x6dfb265a devlink_port_unregister EXPORT_SYMBOL_GPL vmlinux 0x6e00fcfb modify_ftrace_direct -EXPORT_SYMBOL_GPL vmlinux 0x6e0a6ae5 i2c_dw_acpi_configure -EXPORT_SYMBOL_GPL vmlinux 0x6e1c8439 rcuwait_wake_up -EXPORT_SYMBOL_GPL vmlinux 0x6e1df492 acpi_subsys_freeze -EXPORT_SYMBOL_GPL vmlinux 0x6e22a4ad regmap_field_bulk_alloc -EXPORT_SYMBOL_GPL vmlinux 0x6e2a682a fsverity_ioctl_measure -EXPORT_SYMBOL_GPL vmlinux 0x6e3a288d fib_rule_matchall +EXPORT_SYMBOL_GPL vmlinux 0x6e07d355 devm_rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0x6e215f84 blkg_rwstat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0x6e24cd93 spi_mem_exec_op EXPORT_SYMBOL_GPL vmlinux 0x6e3ff83a edac_device_alloc_index -EXPORT_SYMBOL_GPL vmlinux 0x6e4b86f3 driver_for_each_device EXPORT_SYMBOL_GPL vmlinux 0x6e4bc056 spi_res_free -EXPORT_SYMBOL_GPL vmlinux 0x6e662179 ptdump_walk_pgd_level_debugfs +EXPORT_SYMBOL_GPL vmlinux 0x6e5a4759 __rio_local_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x6e5cc8be debugfs_create_u32 +EXPORT_SYMBOL_GPL vmlinux 0x6e5d19e3 i2c_new_smbus_alert_device +EXPORT_SYMBOL_GPL vmlinux 0x6e65ac29 tpmm_chip_alloc EXPORT_SYMBOL_GPL vmlinux 0x6e7943ec iommu_group_id -EXPORT_SYMBOL_GPL vmlinux 0x6e7949cc ip6_route_input_lookup EXPORT_SYMBOL_GPL vmlinux 0x6e85b00b local_touch_nmi -EXPORT_SYMBOL_GPL vmlinux 0x6e88a9b6 crypto_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0x6e88e088 unregister_trace_event EXPORT_SYMBOL_GPL vmlinux 0x6e89a560 regmap_irq_chip_get_base -EXPORT_SYMBOL_GPL vmlinux 0x6ea6f986 vfs_kern_mount -EXPORT_SYMBOL_GPL vmlinux 0x6ea7184e xfrm_dev_resume -EXPORT_SYMBOL_GPL vmlinux 0x6ea7c161 pci_vpd_alloc -EXPORT_SYMBOL_GPL vmlinux 0x6eb19377 __class_register +EXPORT_SYMBOL_GPL vmlinux 0x6e97840d fwnode_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x6ea16f61 scsi_target_unblock +EXPORT_SYMBOL_GPL vmlinux 0x6eb6c883 gnttab_page_cache_get EXPORT_SYMBOL_GPL vmlinux 0x6ebe366f ktime_get_mono_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0x6ed02563 dev_pm_opp_set_regulators -EXPORT_SYMBOL_GPL vmlinux 0x6ed15e27 metadata_dst_free -EXPORT_SYMBOL_GPL vmlinux 0x6ee28212 usb_find_alt_setting +EXPORT_SYMBOL_GPL vmlinux 0x6ed1c52c pinctrl_dev_get_name +EXPORT_SYMBOL_GPL vmlinux 0x6ee65c12 pci_create_slot EXPORT_SYMBOL_GPL vmlinux 0x6ee8c94b sfp_get_module_eeprom +EXPORT_SYMBOL_GPL vmlinux 0x6eec0591 vfs_fallocate EXPORT_SYMBOL_GPL vmlinux 0x6ef6b54f ktime_get_boot_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0x6ef7a6fa dev_pm_opp_get_voltage -EXPORT_SYMBOL_GPL vmlinux 0x6efc285d __tracepoint_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x6f025571 xen_xlate_remap_gfn_array +EXPORT_SYMBOL_GPL vmlinux 0x6f074019 ip6_datagram_connect EXPORT_SYMBOL_GPL vmlinux 0x6f12560a get_old_timespec32 -EXPORT_SYMBOL_GPL vmlinux 0x6f342dd1 acpi_device_modalias -EXPORT_SYMBOL_GPL vmlinux 0x6f429706 regulator_bulk_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x6f43911e crypto_enqueue_request_head -EXPORT_SYMBOL_GPL vmlinux 0x6f48fff9 iommu_page_response -EXPORT_SYMBOL_GPL vmlinux 0x6f4e2bfd is_current_mnt_ns -EXPORT_SYMBOL_GPL vmlinux 0x6f71782e bus_rescan_devices +EXPORT_SYMBOL_GPL vmlinux 0x6f27eda2 show_class_attr_string +EXPORT_SYMBOL_GPL vmlinux 0x6f41fb9c vmf_insert_pfn_pmd_prot +EXPORT_SYMBOL_GPL vmlinux 0x6f443658 dev_pm_put_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0x6f47f007 d_exchange +EXPORT_SYMBOL_GPL vmlinux 0x6f62e474 sock_diag_save_cookie +EXPORT_SYMBOL_GPL vmlinux 0x6f6d6216 crypto_stats_akcipher_sign +EXPORT_SYMBOL_GPL vmlinux 0x6f7ccca1 cpufreq_driver_resolve_freq EXPORT_SYMBOL_GPL vmlinux 0x6f7e6040 irq_has_action -EXPORT_SYMBOL_GPL vmlinux 0x6f85fe2b ipv4_sk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x6f87751b phy_put +EXPORT_SYMBOL_GPL vmlinux 0x6f92741d switchdev_port_obj_del EXPORT_SYMBOL_GPL vmlinux 0x6f935e35 ftrace_set_filter_ip +EXPORT_SYMBOL_GPL vmlinux 0x6f94231a firmware_request_cache EXPORT_SYMBOL_GPL vmlinux 0x6f95bb84 sbitmap_queue_init_node -EXPORT_SYMBOL_GPL vmlinux 0x6f9b29d9 __traceiter_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0x6f9b204c dev_err_probe EXPORT_SYMBOL_GPL vmlinux 0x6f9e763b timecounter_read EXPORT_SYMBOL_GPL vmlinux 0x6fabae87 kobject_create_and_add -EXPORT_SYMBOL_GPL vmlinux 0x6fb9e914 led_trigger_rename_static -EXPORT_SYMBOL_GPL vmlinux 0x6fcbaff7 phy_speed_down +EXPORT_SYMBOL_GPL vmlinux 0x6fb13a7e gpiochip_line_is_irq +EXPORT_SYMBOL_GPL vmlinux 0x6fb216a9 iommu_report_device_fault +EXPORT_SYMBOL_GPL vmlinux 0x6fbfe4a0 set_cpus_allowed_ptr +EXPORT_SYMBOL_GPL vmlinux 0x6fc7f12b device_reprobe +EXPORT_SYMBOL_GPL vmlinux 0x6fcaccc6 md_new_event +EXPORT_SYMBOL_GPL vmlinux 0x6fcc7f7f virtqueue_add_sgs EXPORT_SYMBOL_GPL vmlinux 0x6fcef6ab ring_buffer_reset EXPORT_SYMBOL_GPL vmlinux 0x6fd6472c cleanup_srcu_struct -EXPORT_SYMBOL_GPL vmlinux 0x6fdd27da fib_new_table -EXPORT_SYMBOL_GPL vmlinux 0x6fe01a99 __traceiter_fib6_table_lookup -EXPORT_SYMBOL_GPL vmlinux 0x6feb9898 ata_sff_tf_read +EXPORT_SYMBOL_GPL vmlinux 0x6fdf60b1 fwnode_graph_get_port_parent EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng EXPORT_SYMBOL_GPL vmlinux 0x6ffce680 x86_cpu_has_min_microcode_rev -EXPORT_SYMBOL_GPL vmlinux 0x70033c23 pci_epc_init_notify +EXPORT_SYMBOL_GPL vmlinux 0x7005511c rdev_get_name EXPORT_SYMBOL_GPL vmlinux 0x7006586e iommu_get_group_resv_regions +EXPORT_SYMBOL_GPL vmlinux 0x7009127f fixed_phy_set_link_update +EXPORT_SYMBOL_GPL vmlinux 0x7009e885 pci_epc_write_header +EXPORT_SYMBOL_GPL vmlinux 0x7010fce0 blk_ksm_init_passthrough +EXPORT_SYMBOL_GPL vmlinux 0x701ef858 ata_cable_80wire +EXPORT_SYMBOL_GPL vmlinux 0x7021ea91 dev_pm_opp_remove_table EXPORT_SYMBOL_GPL vmlinux 0x7055c56e __sbitmap_queue_get_shallow +EXPORT_SYMBOL_GPL vmlinux 0x7056d069 watchdog_unregister_device EXPORT_SYMBOL_GPL vmlinux 0x70576fee acpi_processor_ffh_cstate_probe -EXPORT_SYMBOL_GPL vmlinux 0x7058041a vfio_unregister_iommu_driver -EXPORT_SYMBOL_GPL vmlinux 0x7059452e xhci_ext_cap_init -EXPORT_SYMBOL_GPL vmlinux 0x70645303 virtqueue_detach_unused_buf -EXPORT_SYMBOL_GPL vmlinux 0x7065d6c8 fscrypt_show_test_dummy_encryption -EXPORT_SYMBOL_GPL vmlinux 0x706f6f29 devm_of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x70598409 irq_domain_translate_onecell +EXPORT_SYMBOL_GPL vmlinux 0x705da742 debugfs_create_atomic_t +EXPORT_SYMBOL_GPL vmlinux 0x706990fd ata_do_dev_read_id EXPORT_SYMBOL_GPL vmlinux 0x7073c04f phy_10_100_features_array -EXPORT_SYMBOL_GPL vmlinux 0x7079600d regcache_mark_dirty -EXPORT_SYMBOL_GPL vmlinux 0x709dcabd __fscrypt_prepare_rename -EXPORT_SYMBOL_GPL vmlinux 0x709f6826 dma_get_slave_caps -EXPORT_SYMBOL_GPL vmlinux 0x70ab71dc regulator_list_voltage_pickable_linear_range -EXPORT_SYMBOL_GPL vmlinux 0x70ae9a89 gpiochip_free_own_desc -EXPORT_SYMBOL_GPL vmlinux 0x70b43013 mmc_send_abort_tuning +EXPORT_SYMBOL_GPL vmlinux 0x707d3482 sdio_writeb +EXPORT_SYMBOL_GPL vmlinux 0x70820f59 __synth_event_gen_cmd_start +EXPORT_SYMBOL_GPL vmlinux 0x7094b28a regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0x709900fc bsg_job_put +EXPORT_SYMBOL_GPL vmlinux 0x70a67a16 dev_pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x70ac06f5 sock_diag_register_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0x70ad62f1 ata_sff_port_ops EXPORT_SYMBOL_GPL vmlinux 0x70b7c07a gnttab_grant_foreign_transfer +EXPORT_SYMBOL_GPL vmlinux 0x70b98686 da9052_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0x70bb5752 devm_hwspin_lock_request EXPORT_SYMBOL_GPL vmlinux 0x70c2c7ea pids_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x70c4fc87 blk_ksm_init_passthrough EXPORT_SYMBOL_GPL vmlinux 0x70c52dc5 nf_skb_duplicated EXPORT_SYMBOL_GPL vmlinux 0x70c6d827 mc146818_set_time +EXPORT_SYMBOL_GPL vmlinux 0x70cb8c69 ohci_init_driver EXPORT_SYMBOL_GPL vmlinux 0x70cf032f usb_hcd_irq +EXPORT_SYMBOL_GPL vmlinux 0x70d746cf xhci_shutdown EXPORT_SYMBOL_GPL vmlinux 0x70e06e33 pkcs7_free_message -EXPORT_SYMBOL_GPL vmlinux 0x70e7cff7 regulator_get_voltage_sel_regmap -EXPORT_SYMBOL_GPL vmlinux 0x70f64fb1 tty_port_register_device_attr_serdev +EXPORT_SYMBOL_GPL vmlinux 0x70ec4b26 __tracepoint_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0x70f78f5f ethnl_cable_test_amplitude +EXPORT_SYMBOL_GPL vmlinux 0x70fe2797 pinctrl_find_gpio_range_from_pin_nolock EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x7112d849 i2c_acpi_find_adapter_by_handle -EXPORT_SYMBOL_GPL vmlinux 0x711bd1f0 housekeeping_affine +EXPORT_SYMBOL_GPL vmlinux 0x710c9098 devlink_port_health_reporter_create +EXPORT_SYMBOL_GPL vmlinux 0x711fa0c4 devm_nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0x7122c317 spi_controller_dma_map_mem_op_data EXPORT_SYMBOL_GPL vmlinux 0x7129a6f4 osc_sb_native_usb4_support_confirmed -EXPORT_SYMBOL_GPL vmlinux 0x712a53ca rio_mport_read_config_32 -EXPORT_SYMBOL_GPL vmlinux 0x712ee864 __tracepoint_br_fdb_add -EXPORT_SYMBOL_GPL vmlinux 0x71604f31 disk_uevent +EXPORT_SYMBOL_GPL vmlinux 0x712cfe84 usb_get_maximum_speed +EXPORT_SYMBOL_GPL vmlinux 0x713aa5ea nvdimm_bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0x71439416 __list_lru_init +EXPORT_SYMBOL_GPL vmlinux 0x7145c32f gov_update_cpu_data +EXPORT_SYMBOL_GPL vmlinux 0x7148cd1d usb_hc_died EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized EXPORT_SYMBOL_GPL vmlinux 0x71650819 add_bootloader_randomness -EXPORT_SYMBOL_GPL vmlinux 0x7165f662 devres_close_group -EXPORT_SYMBOL_GPL vmlinux 0x7171d655 ip6_push_pending_frames -EXPORT_SYMBOL_GPL vmlinux 0x7178fb0f blkcg_deactivate_policy -EXPORT_SYMBOL_GPL vmlinux 0x718004a7 spi_setup +EXPORT_SYMBOL_GPL vmlinux 0x7167704d skb_zerocopy_iter_stream +EXPORT_SYMBOL_GPL vmlinux 0x716ce3c0 nvdimm_flush EXPORT_SYMBOL_GPL vmlinux 0x7181db30 atomic_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0x71846c05 fwnode_handle_put -EXPORT_SYMBOL_GPL vmlinux 0x718556d1 pwm_put -EXPORT_SYMBOL_GPL vmlinux 0x719a43c3 clk_hw_set_parent +EXPORT_SYMBOL_GPL vmlinux 0x7189e305 crypto_unregister_rng +EXPORT_SYMBOL_GPL vmlinux 0x719b5121 nfs_ssc_unregister EXPORT_SYMBOL_GPL vmlinux 0x719e17ff clk_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0x71a69241 kthread_data +EXPORT_SYMBOL_GPL vmlinux 0x71a706f4 unix_peer_get EXPORT_SYMBOL_GPL vmlinux 0x71b15008 lwtunnel_valid_encap_type EXPORT_SYMBOL_GPL vmlinux 0x71b6cf94 dst_cache_reset_now +EXPORT_SYMBOL_GPL vmlinux 0x71bfdb91 ata_pci_sff_activate_host +EXPORT_SYMBOL_GPL vmlinux 0x71bff945 __traceiter_rpm_suspend EXPORT_SYMBOL_GPL vmlinux 0x71c059d8 __traceiter_map -EXPORT_SYMBOL_GPL vmlinux 0x71cee860 fwnode_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x71c6250a mnt_want_write +EXPORT_SYMBOL_GPL vmlinux 0x71d805b3 pci_ignore_hotplug +EXPORT_SYMBOL_GPL vmlinux 0x71ea13af phy_start_machine +EXPORT_SYMBOL_GPL vmlinux 0x71eb502a pci_iomap_wc_range +EXPORT_SYMBOL_GPL vmlinux 0x71ee50e7 bio_trim +EXPORT_SYMBOL_GPL vmlinux 0x71eed50c is_dock_device EXPORT_SYMBOL_GPL vmlinux 0x71f6670b __cookie_v6_check -EXPORT_SYMBOL_GPL vmlinux 0x720734d0 mmu_interval_notifier_insert_locked -EXPORT_SYMBOL_GPL vmlinux 0x72182115 irq_set_chained_handler_and_data -EXPORT_SYMBOL_GPL vmlinux 0x72282559 ata_qc_complete_multiple -EXPORT_SYMBOL_GPL vmlinux 0x72311a02 metadata_dst_alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0x724610fb is_software_node -EXPORT_SYMBOL_GPL vmlinux 0x7246417b serial8250_request_dma -EXPORT_SYMBOL_GPL vmlinux 0x724e778c phy_select_page -EXPORT_SYMBOL_GPL vmlinux 0x72502b51 lwtunnel_input -EXPORT_SYMBOL_GPL vmlinux 0x7255eaec pci_epf_type_add_cfs -EXPORT_SYMBOL_GPL vmlinux 0x72590646 usb_put_phy -EXPORT_SYMBOL_GPL vmlinux 0x726222e8 pci_hp_destroy -EXPORT_SYMBOL_GPL vmlinux 0x726243cd tpm2_get_cc_attrs_tbl +EXPORT_SYMBOL_GPL vmlinux 0x71f82127 sdio_claim_irq +EXPORT_SYMBOL_GPL vmlinux 0x71f8a03a hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x7224d42e pcie_port_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x7235f7f3 devres_destroy +EXPORT_SYMBOL_GPL vmlinux 0x723d9755 ata_sff_lost_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x724c2e7d led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7256c955 regulator_disable +EXPORT_SYMBOL_GPL vmlinux 0x7260c4d8 pci_find_ext_capability EXPORT_SYMBOL_GPL vmlinux 0x7262702b sfp_get_module_eeprom_by_page EXPORT_SYMBOL_GPL vmlinux 0x7265f2b0 pci_vpd_check_csum -EXPORT_SYMBOL_GPL vmlinux 0x72662982 pci_hp_del EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events +EXPORT_SYMBOL_GPL vmlinux 0x7282c77d debugfs_remove EXPORT_SYMBOL_GPL vmlinux 0x7283161b percpu_ref_switch_to_percpu -EXPORT_SYMBOL_GPL vmlinux 0x728e4f80 serial8250_modem_status -EXPORT_SYMBOL_GPL vmlinux 0x7293a2b2 iomap_writepages -EXPORT_SYMBOL_GPL vmlinux 0x7297058f spi_res_alloc -EXPORT_SYMBOL_GPL vmlinux 0x72a856ec bpf_event_output +EXPORT_SYMBOL_GPL vmlinux 0x72899eb7 gpiod_set_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x72a0ffb2 dma_buf_vunmap +EXPORT_SYMBOL_GPL vmlinux 0x72a48059 cpufreq_dbs_governor_exit +EXPORT_SYMBOL_GPL vmlinux 0x72a5d131 led_blink_set_oneshot +EXPORT_SYMBOL_GPL vmlinux 0x72b8d563 usb_free_streams +EXPORT_SYMBOL_GPL vmlinux 0x72d0e60a irqchip_fwnode_ops EXPORT_SYMBOL_GPL vmlinux 0x72d267dc nvmem_del_cell_lookups -EXPORT_SYMBOL_GPL vmlinux 0x72d744ca devfreq_cooling_register -EXPORT_SYMBOL_GPL vmlinux 0x72dfa1d6 sk_msg_memcopy_from_iter -EXPORT_SYMBOL_GPL vmlinux 0x72e0a5fd sched_trace_rq_cpu_capacity -EXPORT_SYMBOL_GPL vmlinux 0x72ea4e5f pci_store_saved_state -EXPORT_SYMBOL_GPL vmlinux 0x72f7cba5 strp_process -EXPORT_SYMBOL_GPL vmlinux 0x7301264e pci_hp_deregister -EXPORT_SYMBOL_GPL vmlinux 0x73089cdd __traceiter_sched_update_nr_running_tp +EXPORT_SYMBOL_GPL vmlinux 0x72da37bb devm_hwmon_device_register_with_info +EXPORT_SYMBOL_GPL vmlinux 0x72f04c87 security_path_chmod +EXPORT_SYMBOL_GPL vmlinux 0x72f72ebd pci_find_host_bridge +EXPORT_SYMBOL_GPL vmlinux 0x730e2084 nd_cmd_out_size EXPORT_SYMBOL_GPL vmlinux 0x731dba7a xen_domain_type -EXPORT_SYMBOL_GPL vmlinux 0x731e6c5b __fscrypt_prepare_setattr +EXPORT_SYMBOL_GPL vmlinux 0x73207f82 bio_associate_blkg_from_css EXPORT_SYMBOL_GPL vmlinux 0x732852fe xenbus_transaction_end -EXPORT_SYMBOL_GPL vmlinux 0x732bf476 xdp_do_redirect -EXPORT_SYMBOL_GPL vmlinux 0x7338fdf9 trace_array_set_clr_event +EXPORT_SYMBOL_GPL vmlinux 0x733030fc devm_phy_package_join +EXPORT_SYMBOL_GPL vmlinux 0x73359f04 irq_set_chip_and_handler_name EXPORT_SYMBOL_GPL vmlinux 0x733ec33e __SCT__tp_func_fdb_delete -EXPORT_SYMBOL_GPL vmlinux 0x734209b8 ncsi_unregister_dev -EXPORT_SYMBOL_GPL vmlinux 0x735d4674 sk_clone_lock -EXPORT_SYMBOL_GPL vmlinux 0x73644caa sdio_memcpy_fromio -EXPORT_SYMBOL_GPL vmlinux 0x7374040d tty_ldisc_ref -EXPORT_SYMBOL_GPL vmlinux 0x73760ebb debugfs_create_x8 -EXPORT_SYMBOL_GPL vmlinux 0x7379096b fscrypt_set_test_dummy_encryption -EXPORT_SYMBOL_GPL vmlinux 0x737d48e9 get_cpu_device +EXPORT_SYMBOL_GPL vmlinux 0x733f01d1 inet6_csk_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0x7381287f trace_handle_return -EXPORT_SYMBOL_GPL vmlinux 0x7384b2df metadata_dst_alloc EXPORT_SYMBOL_GPL vmlinux 0x738fe32b amd_get_nodes_per_socket EXPORT_SYMBOL_GPL vmlinux 0x73a48b4a ata_sff_std_ports -EXPORT_SYMBOL_GPL vmlinux 0x73b4f41d usb_clear_halt +EXPORT_SYMBOL_GPL vmlinux 0x73b3a4b1 dma_async_device_channel_unregister EXPORT_SYMBOL_GPL vmlinux 0x73c2554f __iowrite64_copy EXPORT_SYMBOL_GPL vmlinux 0x73cc8631 oiap -EXPORT_SYMBOL_GPL vmlinux 0x73d307b8 strp_unpause -EXPORT_SYMBOL_GPL vmlinux 0x73d82cc0 vp_modern_queue_vector -EXPORT_SYMBOL_GPL vmlinux 0x740afed5 dw_pcie_write_dbi -EXPORT_SYMBOL_GPL vmlinux 0x742096b3 bpf_prog_create_from_user -EXPORT_SYMBOL_GPL vmlinux 0x742a4568 acpi_subsys_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x73e21b3e tcp_cong_avoid_ai +EXPORT_SYMBOL_GPL vmlinux 0x73eb7f3e ata_port_wait_eh +EXPORT_SYMBOL_GPL vmlinux 0x73f09383 usb_remove_hcd +EXPORT_SYMBOL_GPL vmlinux 0x73f7e632 vfio_iommu_group_put +EXPORT_SYMBOL_GPL vmlinux 0x73f9651d switchdev_handle_port_attr_set +EXPORT_SYMBOL_GPL vmlinux 0x74118682 bpf_prog_sub +EXPORT_SYMBOL_GPL vmlinux 0x742cc638 badblocks_check EXPORT_SYMBOL_GPL vmlinux 0x743a165e ata_pack_xfermask EXPORT_SYMBOL_GPL vmlinux 0x74457e56 apei_resources_fini EXPORT_SYMBOL_GPL vmlinux 0x7452adff user_return_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x7483bcd8 xfrm_output -EXPORT_SYMBOL_GPL vmlinux 0x748a013d ip6_dst_lookup -EXPORT_SYMBOL_GPL vmlinux 0x7491a7fd handle_fasteoi_nmi -EXPORT_SYMBOL_GPL vmlinux 0x74ad311e clean_record_shared_mapping_range +EXPORT_SYMBOL_GPL vmlinux 0x7461bb38 dequeue_signal +EXPORT_SYMBOL_GPL vmlinux 0x74643528 crypto_shash_final +EXPORT_SYMBOL_GPL vmlinux 0x746548d3 device_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x74776d88 debugfs_create_bool +EXPORT_SYMBOL_GPL vmlinux 0x7485333d mptcp_token_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x748a993a crypto_stats_akcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x74b0da0e extcon_sync EXPORT_SYMBOL_GPL vmlinux 0x74b5ea68 lcm_not_zero EXPORT_SYMBOL_GPL vmlinux 0x74baf17a tracing_is_on +EXPORT_SYMBOL_GPL vmlinux 0x74c01b33 blk_mq_unfreeze_queue EXPORT_SYMBOL_GPL vmlinux 0x74c7bffa stack_trace_snprint -EXPORT_SYMBOL_GPL vmlinux 0x74e1787d pm_generic_thaw_early -EXPORT_SYMBOL_GPL vmlinux 0x74e6310d badblocks_exit +EXPORT_SYMBOL_GPL vmlinux 0x74c8d3ce rio_release_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x74c99447 cpufreq_register_driver EXPORT_SYMBOL_GPL vmlinux 0x74e73871 housekeeping_overridden -EXPORT_SYMBOL_GPL vmlinux 0x74ebcb71 pcc_mbox_request_channel -EXPORT_SYMBOL_GPL vmlinux 0x750702b4 platform_msi_domain_free_irqs -EXPORT_SYMBOL_GPL vmlinux 0x750d0152 devm_pwmchip_add -EXPORT_SYMBOL_GPL vmlinux 0x750efc01 platform_device_add_resources +EXPORT_SYMBOL_GPL vmlinux 0x74fed142 strp_init +EXPORT_SYMBOL_GPL vmlinux 0x74ff8ac6 switchdev_port_attr_set +EXPORT_SYMBOL_GPL vmlinux 0x750f8809 blk_trace_setup EXPORT_SYMBOL_GPL vmlinux 0x75133f6e visitor128 -EXPORT_SYMBOL_GPL vmlinux 0x7513a79b fat_fill_super -EXPORT_SYMBOL_GPL vmlinux 0x75217cff ethnl_cable_test_alloc +EXPORT_SYMBOL_GPL vmlinux 0x751b12fc skb_partial_csum_set EXPORT_SYMBOL_GPL vmlinux 0x7521afb6 leave_mm EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status -EXPORT_SYMBOL_GPL vmlinux 0x752dfdf2 __tracepoint_br_fdb_external_learn_add -EXPORT_SYMBOL_GPL vmlinux 0x753207d8 regulator_get_current_limit_regmap -EXPORT_SYMBOL_GPL vmlinux 0x7532a466 posix_acl_create -EXPORT_SYMBOL_GPL vmlinux 0x7544f932 iommu_attach_group -EXPORT_SYMBOL_GPL vmlinux 0x755108fd pci_load_and_free_saved_state -EXPORT_SYMBOL_GPL vmlinux 0x75522574 dev_pm_qos_hide_flags -EXPORT_SYMBOL_GPL vmlinux 0x75576ca0 debugfs_create_x32 -EXPORT_SYMBOL_GPL vmlinux 0x7559616c cpci_hp_register_controller -EXPORT_SYMBOL_GPL vmlinux 0x755c57de thermal_zone_device_register -EXPORT_SYMBOL_GPL vmlinux 0x75683132 pcie_port_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x7576b734 pwm_request_from_chip -EXPORT_SYMBOL_GPL vmlinux 0x7576d03d debugfs_create_bool -EXPORT_SYMBOL_GPL vmlinux 0x75792186 get_xsave_addr +EXPORT_SYMBOL_GPL vmlinux 0x752b8d72 account_locked_vm +EXPORT_SYMBOL_GPL vmlinux 0x752fdb02 switchdev_handle_fdb_del_to_device +EXPORT_SYMBOL_GPL vmlinux 0x75363a46 dm_noflush_suspending +EXPORT_SYMBOL_GPL vmlinux 0x7551144d hwspin_lock_request +EXPORT_SYMBOL_GPL vmlinux 0x7557c2e0 dm_internal_suspend_fast EXPORT_SYMBOL_GPL vmlinux 0x759bfe36 btree_destroy -EXPORT_SYMBOL_GPL vmlinux 0x75aeae64 irq_chip_mask_ack_parent -EXPORT_SYMBOL_GPL vmlinux 0x75c2e81a relay_close +EXPORT_SYMBOL_GPL vmlinux 0x75bc4ad2 usb_anchor_urb +EXPORT_SYMBOL_GPL vmlinux 0x75c3686c pm_genpd_init +EXPORT_SYMBOL_GPL vmlinux 0x75cb1034 xfrm_audit_state_notfound_simple EXPORT_SYMBOL_GPL vmlinux 0x75cbfb09 add_interrupt_randomness -EXPORT_SYMBOL_GPL vmlinux 0x75cc150d vp_modern_generation -EXPORT_SYMBOL_GPL vmlinux 0x75d0e95b sysfs_create_groups -EXPORT_SYMBOL_GPL vmlinux 0x75d940ba dev_pm_opp_set_sharing_cpus -EXPORT_SYMBOL_GPL vmlinux 0x75e80663 trace_event_ignore_this_pid +EXPORT_SYMBOL_GPL vmlinux 0x75d1b93a ethnl_cable_test_alloc +EXPORT_SYMBOL_GPL vmlinux 0x75d1bc70 pci_disable_pasid +EXPORT_SYMBOL_GPL vmlinux 0x75d73d84 pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0x75e56d1a gpiochip_add_pingroup_range EXPORT_SYMBOL_GPL vmlinux 0x75e9c735 pci_ats_disabled EXPORT_SYMBOL_GPL vmlinux 0x75f0e875 xas_store -EXPORT_SYMBOL_GPL vmlinux 0x7601725c __tracepoint_pelt_irq_tp -EXPORT_SYMBOL_GPL vmlinux 0x760e0c43 usb_sg_cancel -EXPORT_SYMBOL_GPL vmlinux 0x761591ec da9055_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0x761e05e5 pm_generic_thaw -EXPORT_SYMBOL_GPL vmlinux 0x761e11ff ata_sff_postreset +EXPORT_SYMBOL_GPL vmlinux 0x7607e08c sched_trace_cfs_rq_path +EXPORT_SYMBOL_GPL vmlinux 0x7608f957 tty_port_default_client_ops +EXPORT_SYMBOL_GPL vmlinux 0x761381d8 efivar_entry_remove +EXPORT_SYMBOL_GPL vmlinux 0x76174e5d irq_gc_mask_clr_bit +EXPORT_SYMBOL_GPL vmlinux 0x761c1407 pinctrl_find_gpio_range_from_pin +EXPORT_SYMBOL_GPL vmlinux 0x76247766 relay_flush EXPORT_SYMBOL_GPL vmlinux 0x762640ab __SCT__tp_func_sched_cpu_capacity_tp -EXPORT_SYMBOL_GPL vmlinux 0x7628e5e3 acomp_request_free -EXPORT_SYMBOL_GPL vmlinux 0x762bd521 iterate_mounts +EXPORT_SYMBOL_GPL vmlinux 0x7633e6a3 fwnode_device_is_available +EXPORT_SYMBOL_GPL vmlinux 0x7639753a serdev_device_set_parity +EXPORT_SYMBOL_GPL vmlinux 0x76461442 sock_diag_check_cookie EXPORT_SYMBOL_GPL vmlinux 0x764ffefa page_reporting_register -EXPORT_SYMBOL_GPL vmlinux 0x765d596a bpf_prog_inc EXPORT_SYMBOL_GPL vmlinux 0x765f8830 __SCT__tp_func_neigh_event_send_dead EXPORT_SYMBOL_GPL vmlinux 0x7665a95b idr_remove EXPORT_SYMBOL_GPL vmlinux 0x7665ee72 crypto_dh_decode_key EXPORT_SYMBOL_GPL vmlinux 0x7681946c unregister_pm_notifier -EXPORT_SYMBOL_GPL vmlinux 0x7686b185 tty_port_install -EXPORT_SYMBOL_GPL vmlinux 0x768e930a attribute_container_register +EXPORT_SYMBOL_GPL vmlinux 0x7681da17 clk_hw_register_fractional_divider EXPORT_SYMBOL_GPL vmlinux 0x769cefb5 percpu_ref_switch_to_atomic -EXPORT_SYMBOL_GPL vmlinux 0x769ff07a serial8250_do_set_mctrl -EXPORT_SYMBOL_GPL vmlinux 0x76a14ff5 regmap_add_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0x76b10344 dev_pm_opp_find_level_exact -EXPORT_SYMBOL_GPL vmlinux 0x76c676f0 ip6_flush_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x76ce7913 __clk_determine_rate EXPORT_SYMBOL_GPL vmlinux 0x76d680f6 acpi_dev_resource_memory EXPORT_SYMBOL_GPL vmlinux 0x76d9b876 clk_set_rate -EXPORT_SYMBOL_GPL vmlinux 0x76dbe73a devlink_params_unpublish EXPORT_SYMBOL_GPL vmlinux 0x76dc031e asm_exc_nmi_noist +EXPORT_SYMBOL_GPL vmlinux 0x76e80b18 ata_scsi_port_error_handler EXPORT_SYMBOL_GPL vmlinux 0x76e85b92 gnttab_request_free_callback +EXPORT_SYMBOL_GPL vmlinux 0x76edb927 device_destroy EXPORT_SYMBOL_GPL vmlinux 0x76eeeb0f sha384_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x76fe6d15 netlink_strict_get_check -EXPORT_SYMBOL_GPL vmlinux 0x7703dfe9 crypto_unregister_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x770caa5b device_find_child -EXPORT_SYMBOL_GPL vmlinux 0x770cf51b syscon_regmap_lookup_by_phandle_args +EXPORT_SYMBOL_GPL vmlinux 0x76ef9133 spi_sync +EXPORT_SYMBOL_GPL vmlinux 0x76f78356 __blk_req_zone_write_unlock +EXPORT_SYMBOL_GPL vmlinux 0x7707aeea regmap_test_bits EXPORT_SYMBOL_GPL vmlinux 0x7712771a unbind_from_irqhandler -EXPORT_SYMBOL_GPL vmlinux 0x771f7514 devm_clk_hw_get_clk +EXPORT_SYMBOL_GPL vmlinux 0x7721c4c8 regulator_set_voltage_sel_regmap EXPORT_SYMBOL_GPL vmlinux 0x77222306 ring_buffer_read_page EXPORT_SYMBOL_GPL vmlinux 0x7729cbdd task_handoff_register EXPORT_SYMBOL_GPL vmlinux 0x772b0f64 __wake_up_pollfree +EXPORT_SYMBOL_GPL vmlinux 0x772c0413 devm_hwrng_register EXPORT_SYMBOL_GPL vmlinux 0x773f2713 clk_hw_unregister_mux +EXPORT_SYMBOL_GPL vmlinux 0x77413977 blk_ksm_init +EXPORT_SYMBOL_GPL vmlinux 0x7753bfb3 set_primary_fwnode EXPORT_SYMBOL_GPL vmlinux 0x7757b51a clk_unregister +EXPORT_SYMBOL_GPL vmlinux 0x775f3d3a ksm_madvise +EXPORT_SYMBOL_GPL vmlinux 0x77640db6 pci_hp_del EXPORT_SYMBOL_GPL vmlinux 0x776a2dc5 synchronize_srcu_expedited -EXPORT_SYMBOL_GPL vmlinux 0x776bf436 umd_unload_blob -EXPORT_SYMBOL_GPL vmlinux 0x777d0764 device_match_of_node -EXPORT_SYMBOL_GPL vmlinux 0x778037d4 gpiod_count +EXPORT_SYMBOL_GPL vmlinux 0x77805c0d strp_check_rcv +EXPORT_SYMBOL_GPL vmlinux 0x7786a6f6 pci_epc_map_msi_irq EXPORT_SYMBOL_GPL vmlinux 0x7791e066 dw_pcie_read -EXPORT_SYMBOL_GPL vmlinux 0x779ef96a __xenbus_register_backend EXPORT_SYMBOL_GPL vmlinux 0x77ae495d usb_speed_string -EXPORT_SYMBOL_GPL vmlinux 0x77b0db06 wait_for_stable_page -EXPORT_SYMBOL_GPL vmlinux 0x77bdbb9f blk_mq_quiesce_queue_nowait -EXPORT_SYMBOL_GPL vmlinux 0x77deb3eb rio_unlock_device +EXPORT_SYMBOL_GPL vmlinux 0x77dcdef0 blkdev_ioctl EXPORT_SYMBOL_GPL vmlinux 0x77e75be3 sfp_bus_put -EXPORT_SYMBOL_GPL vmlinux 0x77eb1cb2 devm_nvdimm_memremap -EXPORT_SYMBOL_GPL vmlinux 0x77ec59b8 usb_phy_set_event EXPORT_SYMBOL_GPL vmlinux 0x77ecf68d memalloc_socks_key -EXPORT_SYMBOL_GPL vmlinux 0x77ef1b95 ping_seq_next -EXPORT_SYMBOL_GPL vmlinux 0x77f635a2 ping_seq_stop -EXPORT_SYMBOL_GPL vmlinux 0x7803c6e6 security_file_permission +EXPORT_SYMBOL_GPL vmlinux 0x77fd463b gnttab_page_cache_shrink EXPORT_SYMBOL_GPL vmlinux 0x78041b8f byte_rev_table -EXPORT_SYMBOL_GPL vmlinux 0x78172487 usb_unanchor_urb +EXPORT_SYMBOL_GPL vmlinux 0x78048416 clk_hw_register_composite +EXPORT_SYMBOL_GPL vmlinux 0x78082ec8 fsnotify_find_mark +EXPORT_SYMBOL_GPL vmlinux 0x78231de4 wbt_disable_default +EXPORT_SYMBOL_GPL vmlinux 0x78259737 irq_domain_reset_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x782ac76b __xenmem_reservation_va_mapping_update EXPORT_SYMBOL_GPL vmlinux 0x782adb74 hpet_rtc_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x783a7039 __tracepoint_remove_device_from_group -EXPORT_SYMBOL_GPL vmlinux 0x783cbbac device_for_each_child -EXPORT_SYMBOL_GPL vmlinux 0x7849b0fa i2c_dw_prepare_clk -EXPORT_SYMBOL_GPL vmlinux 0x78509974 wakeup_source_create +EXPORT_SYMBOL_GPL vmlinux 0x783f6b0a iommu_uapi_sva_bind_gpasid +EXPORT_SYMBOL_GPL vmlinux 0x784b35b3 l3mdev_fib_table_by_index +EXPORT_SYMBOL_GPL vmlinux 0x7857d253 skb_morph EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available +EXPORT_SYMBOL_GPL vmlinux 0x78627a75 l3mdev_table_lookup_register +EXPORT_SYMBOL_GPL vmlinux 0x78722749 pm_generic_poweroff_late EXPORT_SYMBOL_GPL vmlinux 0x787c882b lzo1x_1_compress EXPORT_SYMBOL_GPL vmlinux 0x788bfbad ring_buffer_empty -EXPORT_SYMBOL_GPL vmlinux 0x788ea324 kthread_use_mm +EXPORT_SYMBOL_GPL vmlinux 0x788f7116 sk_psock_msg_verdict +EXPORT_SYMBOL_GPL vmlinux 0x7893daa6 mmc_switch EXPORT_SYMBOL_GPL vmlinux 0x789c73d9 rcu_cpu_stall_suppress_at_boot -EXPORT_SYMBOL_GPL vmlinux 0x78a5e9e8 crypto_unregister_rng -EXPORT_SYMBOL_GPL vmlinux 0x78a9ad79 __traceiter_fdb_delete -EXPORT_SYMBOL_GPL vmlinux 0x78b3c149 virtqueue_get_avail_addr -EXPORT_SYMBOL_GPL vmlinux 0x78b8c776 rio_local_get_device_id -EXPORT_SYMBOL_GPL vmlinux 0x78ba877f devm_nvmem_device_put EXPORT_SYMBOL_GPL vmlinux 0x78bab66b irq_force_affinity -EXPORT_SYMBOL_GPL vmlinux 0x78c2e1e2 regulator_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x78dda15d __mdiobus_modify_changed EXPORT_SYMBOL_GPL vmlinux 0x78ddb76b dmi_match -EXPORT_SYMBOL_GPL vmlinux 0x78e9fc06 pm_generic_poweroff_late +EXPORT_SYMBOL_GPL vmlinux 0x78ee7436 tty_get_icount +EXPORT_SYMBOL_GPL vmlinux 0x78fa64e2 fpu_copy_guest_fpstate_to_uabi +EXPORT_SYMBOL_GPL vmlinux 0x79046a56 usb_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x790b0b00 gpiochip_irqchip_irq_valid EXPORT_SYMBOL_GPL vmlinux 0x790be0b9 usb_bus_idr +EXPORT_SYMBOL_GPL vmlinux 0x791312c6 bpf_trace_run12 EXPORT_SYMBOL_GPL vmlinux 0x7915cee5 do_machine_check EXPORT_SYMBOL_GPL vmlinux 0x791748c8 adxl_decode EXPORT_SYMBOL_GPL vmlinux 0x7918d817 memory_failure -EXPORT_SYMBOL_GPL vmlinux 0x793ad9c1 __hvc_resize -EXPORT_SYMBOL_GPL vmlinux 0x793e0a17 __platform_driver_probe +EXPORT_SYMBOL_GPL vmlinux 0x7920c8cb ata_sas_port_destroy +EXPORT_SYMBOL_GPL vmlinux 0x792dde74 xen_xenbus_fops +EXPORT_SYMBOL_GPL vmlinux 0x7938012f class_unregister 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 0x7959123d pci_sriov_get_totalvfs -EXPORT_SYMBOL_GPL vmlinux 0x795b1147 xfrm_audit_state_replay_overflow -EXPORT_SYMBOL_GPL vmlinux 0x795b5c4f of_reset_control_array_get -EXPORT_SYMBOL_GPL vmlinux 0x795be164 regulator_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0x797a67ff dev_pm_domain_attach +EXPORT_SYMBOL_GPL vmlinux 0x7962c564 clk_hw_set_parent +EXPORT_SYMBOL_GPL vmlinux 0x7984092d virtqueue_add_inbuf_ctx EXPORT_SYMBOL_GPL vmlinux 0x798b7682 klist_prev -EXPORT_SYMBOL_GPL vmlinux 0x79916191 device_remove_software_node +EXPORT_SYMBOL_GPL vmlinux 0x79915b70 __traceiter_io_page_fault EXPORT_SYMBOL_GPL vmlinux 0x7991fd8d crash_vmclear_loaded_vmcss -EXPORT_SYMBOL_GPL vmlinux 0x799aee90 usb_create_shared_hcd -EXPORT_SYMBOL_GPL vmlinux 0x79b41ba4 disk_update_readahead +EXPORT_SYMBOL_GPL vmlinux 0x799701db pwmchip_add +EXPORT_SYMBOL_GPL vmlinux 0x79abc342 crypto_register_aead EXPORT_SYMBOL_GPL vmlinux 0x79bc842c usb_anchor_suspend_wakeups -EXPORT_SYMBOL_GPL vmlinux 0x79bf3648 bpf_trace_run4 -EXPORT_SYMBOL_GPL vmlinux 0x79cae74c tpm_pm_suspend -EXPORT_SYMBOL_GPL vmlinux 0x79cf1043 fpu_kernel_xstate_size +EXPORT_SYMBOL_GPL vmlinux 0x79be727c devm_usb_get_phy_by_node +EXPORT_SYMBOL_GPL vmlinux 0x79c1f891 device_show_ulong +EXPORT_SYMBOL_GPL vmlinux 0x79cc78c2 devm_regmap_add_irq_chip EXPORT_SYMBOL_GPL vmlinux 0x79daf4de __SCT__tp_func_tcp_send_reset EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park -EXPORT_SYMBOL_GPL vmlinux 0x79e1051c __clk_hw_register_fixed_rate EXPORT_SYMBOL_GPL vmlinux 0x79e69460 intel_iommu_gfx_mapped -EXPORT_SYMBOL_GPL vmlinux 0x79eacd66 acct_bioset_exit -EXPORT_SYMBOL_GPL vmlinux 0x79f378cb devm_regulator_register_supply_alias EXPORT_SYMBOL_GPL vmlinux 0x79f697e4 lzorle1x_1_compress -EXPORT_SYMBOL_GPL vmlinux 0x7a0470d5 fsstack_copy_attr_all -EXPORT_SYMBOL_GPL vmlinux 0x7a0cefd4 page_cache_sync_ra -EXPORT_SYMBOL_GPL vmlinux 0x7a1072d2 bpf_trace_run12 -EXPORT_SYMBOL_GPL vmlinux 0x7a19e3c5 regmap_async_complete_cb -EXPORT_SYMBOL_GPL vmlinux 0x7a2276bc genphy_c45_check_and_restart_aneg -EXPORT_SYMBOL_GPL vmlinux 0x7a317582 sk_msg_free +EXPORT_SYMBOL_GPL vmlinux 0x7a244184 devm_pci_epc_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7a300f40 led_trigger_blink EXPORT_SYMBOL_GPL vmlinux 0x7a33f504 power_supply_find_ocv2cap_table -EXPORT_SYMBOL_GPL vmlinux 0x7a3cd7c9 user_update -EXPORT_SYMBOL_GPL vmlinux 0x7a3f3db5 vfs_submount -EXPORT_SYMBOL_GPL vmlinux 0x7a3f8248 devlink_port_attrs_set +EXPORT_SYMBOL_GPL vmlinux 0x7a4edcb3 dev_pm_opp_get_max_volt_latency +EXPORT_SYMBOL_GPL vmlinux 0x7a52d74f scsi_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0x7a5a5463 crypto_register_ahash EXPORT_SYMBOL_GPL vmlinux 0x7a655f68 acpi_processor_claim_cst_control -EXPORT_SYMBOL_GPL vmlinux 0x7a6e5c59 inet_csk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x7a73e03a mbox_send_message EXPORT_SYMBOL_GPL vmlinux 0x7a73e605 wm831x_isinkv_values +EXPORT_SYMBOL_GPL vmlinux 0x7a75e48e dst_blackhole_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x7a79bcfd wakeup_source_create +EXPORT_SYMBOL_GPL vmlinux 0x7a7ce750 shake_page +EXPORT_SYMBOL_GPL vmlinux 0x7a815201 rio_pw_enable EXPORT_SYMBOL_GPL vmlinux 0x7a81541b async_synchronize_cookie EXPORT_SYMBOL_GPL vmlinux 0x7a944007 rcu_idle_enter EXPORT_SYMBOL_GPL vmlinux 0x7a98f4b4 copy_from_user_nofault EXPORT_SYMBOL_GPL vmlinux 0x7a9e4c23 software_node_register_node_group -EXPORT_SYMBOL_GPL vmlinux 0x7aa886b9 set_capacity_and_notify -EXPORT_SYMBOL_GPL vmlinux 0x7ab76556 xen_xlate_remap_gfn_array -EXPORT_SYMBOL_GPL vmlinux 0x7abf4100 rt_mutex_unlock +EXPORT_SYMBOL_GPL vmlinux 0x7ab543d1 xfrm_audit_state_replay +EXPORT_SYMBOL_GPL vmlinux 0x7ab7d96d scsi_host_busy_iter EXPORT_SYMBOL_GPL vmlinux 0x7ac10ad8 icst_clk_register -EXPORT_SYMBOL_GPL vmlinux 0x7ac6b09b vfs_fallocate 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 0x7ae2dd4f extcon_dev_register -EXPORT_SYMBOL_GPL vmlinux 0x7aefada6 fuse_dax_cancel_work -EXPORT_SYMBOL_GPL vmlinux 0x7af49168 devm_nvmem_register -EXPORT_SYMBOL_GPL vmlinux 0x7af5158b crypto_stats_get +EXPORT_SYMBOL_GPL vmlinux 0x7ad2b78c __mnt_is_readonly +EXPORT_SYMBOL_GPL vmlinux 0x7adb2099 class_compat_remove_link +EXPORT_SYMBOL_GPL vmlinux 0x7af42b88 pci_dev_lock EXPORT_SYMBOL_GPL vmlinux 0x7afcb7db __kprobe_event_add_fields -EXPORT_SYMBOL_GPL vmlinux 0x7b00fe98 tty_port_register_device_serdev -EXPORT_SYMBOL_GPL vmlinux 0x7b0af9d5 gpiod_is_active_low -EXPORT_SYMBOL_GPL vmlinux 0x7b154b23 regulator_sync_voltage +EXPORT_SYMBOL_GPL vmlinux 0x7aff3eb5 pci_platform_power_transition +EXPORT_SYMBOL_GPL vmlinux 0x7b065c5e devm_gpiochip_add_data_with_key EXPORT_SYMBOL_GPL vmlinux 0x7b178afe unlock_system_sleep -EXPORT_SYMBOL_GPL vmlinux 0x7b2b0778 device_remove_file_self -EXPORT_SYMBOL_GPL vmlinux 0x7b43b753 irq_domain_free_irqs_common -EXPORT_SYMBOL_GPL vmlinux 0x7b47f7bf __rt_mutex_init -EXPORT_SYMBOL_GPL vmlinux 0x7b4993be devm_reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x7b22a974 power_supply_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x7b4d6f8a serial8250_release_dma EXPORT_SYMBOL_GPL vmlinux 0x7b5452b8 acpi_unregister_gsi EXPORT_SYMBOL_GPL vmlinux 0x7b5a4926 sha1_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x7b5f9466 devm_request_free_mem_region -EXPORT_SYMBOL_GPL vmlinux 0x7b612e1c __tracepoint_tcp_bad_csum EXPORT_SYMBOL_GPL vmlinux 0x7b6f9536 acpi_register_wakeup_handler +EXPORT_SYMBOL_GPL vmlinux 0x7b87e31b to_nd_region +EXPORT_SYMBOL_GPL vmlinux 0x7b880992 put_pid +EXPORT_SYMBOL_GPL vmlinux 0x7b89607f __tracepoint_powernv_throttle EXPORT_SYMBOL_GPL vmlinux 0x7b8ea197 ethtool_params_from_link_mode +EXPORT_SYMBOL_GPL vmlinux 0x7b8f25e3 rio_add_mport_pw_handler EXPORT_SYMBOL_GPL vmlinux 0x7b90d1a9 bind_virq_to_irqhandler -EXPORT_SYMBOL_GPL vmlinux 0x7b960560 acpi_driver_match_device EXPORT_SYMBOL_GPL vmlinux 0x7b9793a2 get_cpu_idle_time_us +EXPORT_SYMBOL_GPL vmlinux 0x7b98d5cf devm_regulator_unregister_notifier EXPORT_SYMBOL_GPL vmlinux 0x7bb045a7 __request_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0x7bc45547 wm831x_reg_lock -EXPORT_SYMBOL_GPL vmlinux 0x7bcf31b2 register_pernet_subsys -EXPORT_SYMBOL_GPL vmlinux 0x7c0b6c0e tracepoint_probe_register_prio -EXPORT_SYMBOL_GPL vmlinux 0x7c12c4a3 __sync_filesystem -EXPORT_SYMBOL_GPL vmlinux 0x7c165026 dev_pm_opp_get_suspend_opp_freq +EXPORT_SYMBOL_GPL vmlinux 0x7bdf6b84 elv_rqhash_add +EXPORT_SYMBOL_GPL vmlinux 0x7bf30791 devm_phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7c02ec0d hwspin_lock_get_id +EXPORT_SYMBOL_GPL vmlinux 0x7c0492cb acpi_dma_request_slave_chan_by_index +EXPORT_SYMBOL_GPL vmlinux 0x7c05410e pinconf_generic_dump_config +EXPORT_SYMBOL_GPL vmlinux 0x7c113ed7 rio_get_comptag +EXPORT_SYMBOL_GPL vmlinux 0x7c14a500 power_supply_class EXPORT_SYMBOL_GPL vmlinux 0x7c20b6a0 load_direct_gdt EXPORT_SYMBOL_GPL vmlinux 0x7c291e86 show_rcu_tasks_trace_gp_kthread -EXPORT_SYMBOL_GPL vmlinux 0x7c342797 tty_init_termios +EXPORT_SYMBOL_GPL vmlinux 0x7c2ca978 serdev_device_get_tiocm EXPORT_SYMBOL_GPL vmlinux 0x7c3d8a4b icc_bulk_put -EXPORT_SYMBOL_GPL vmlinux 0x7c417713 usb_choose_configuration +EXPORT_SYMBOL_GPL vmlinux 0x7c53eebb uart_console_write +EXPORT_SYMBOL_GPL vmlinux 0x7c569f7c pm_runtime_set_autosuspend_delay EXPORT_SYMBOL_GPL vmlinux 0x7c5f3711 ioasid_unregister_allocator EXPORT_SYMBOL_GPL vmlinux 0x7c626556 list_lru_destroy -EXPORT_SYMBOL_GPL vmlinux 0x7c80826e crypto_stats_init +EXPORT_SYMBOL_GPL vmlinux 0x7c63ef3b fscrypt_ioctl_get_key_status +EXPORT_SYMBOL_GPL vmlinux 0x7c6ad9c1 devm_gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0x7c7084cc usb_store_new_id +EXPORT_SYMBOL_GPL vmlinux 0x7c806d07 raw_hash_sk +EXPORT_SYMBOL_GPL vmlinux 0x7c845706 xenbus_read_otherend_details +EXPORT_SYMBOL_GPL vmlinux 0x7c8caf87 uhci_reset_hc EXPORT_SYMBOL_GPL vmlinux 0x7c983a5d dmi_walk EXPORT_SYMBOL_GPL vmlinux 0x7c9a7371 clk_prepare -EXPORT_SYMBOL_GPL vmlinux 0x7c9cdae9 kick_process EXPORT_SYMBOL_GPL vmlinux 0x7ca85256 ms_hyperv -EXPORT_SYMBOL_GPL vmlinux 0x7cb4f7f1 devm_clk_bulk_get_all -EXPORT_SYMBOL_GPL vmlinux 0x7cb7e108 sata_scr_valid +EXPORT_SYMBOL_GPL vmlinux 0x7cb547c3 __traceiter_block_split EXPORT_SYMBOL_GPL vmlinux 0x7cb803de btree_grim_visitor -EXPORT_SYMBOL_GPL vmlinux 0x7cc26cd5 ata_pci_sff_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0x7cbd8d7d devlink_region_snapshot_id_get EXPORT_SYMBOL_GPL vmlinux 0x7cceaf92 zs_pool_stats EXPORT_SYMBOL_GPL vmlinux 0x7cd6f042 cpufreq_get_current_driver +EXPORT_SYMBOL_GPL vmlinux 0x7ce062ef xdp_build_skb_from_frame +EXPORT_SYMBOL_GPL vmlinux 0x7ce8bfcc __sock_recv_wifi_status EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x7cf5ce93 xhci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x7cf7cc9c devm_clk_hw_register EXPORT_SYMBOL_GPL vmlinux 0x7d00c65b nd_synchronize -EXPORT_SYMBOL_GPL vmlinux 0x7d0596ed pci_acpi_set_companion_lookup_hook EXPORT_SYMBOL_GPL vmlinux 0x7d0e1d95 hv_setup_crash_handler +EXPORT_SYMBOL_GPL vmlinux 0x7d1aa8a4 __SCK__tp_func_br_fdb_update EXPORT_SYMBOL_GPL vmlinux 0x7d1bb1d4 tnum_strn +EXPORT_SYMBOL_GPL vmlinux 0x7d403ee0 pci_sriov_set_totalvfs EXPORT_SYMBOL_GPL vmlinux 0x7d491683 free_iova_fast +EXPORT_SYMBOL_GPL vmlinux 0x7d4fdb24 bpf_trace_run1 +EXPORT_SYMBOL_GPL vmlinux 0x7d56eb97 tpm2_flush_context EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq -EXPORT_SYMBOL_GPL vmlinux 0x7d7318a7 platform_device_put -EXPORT_SYMBOL_GPL vmlinux 0x7d742f32 sdio_writeb_readb -EXPORT_SYMBOL_GPL vmlinux 0x7d8b827a bus_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x7d93b7ca devres_for_each_res -EXPORT_SYMBOL_GPL vmlinux 0x7da0a8a2 cpufreq_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x7dbd0990 vfio_pci_core_uninit_device -EXPORT_SYMBOL_GPL vmlinux 0x7dd92294 bus_for_each_drv +EXPORT_SYMBOL_GPL vmlinux 0x7d5fe4d5 vfio_uninit_group_dev +EXPORT_SYMBOL_GPL vmlinux 0x7d7fbdb3 tcp_enter_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0x7d7fc799 __irq_alloc_domain_generic_chips +EXPORT_SYMBOL_GPL vmlinux 0x7d85a995 devlink_region_snapshot_id_put +EXPORT_SYMBOL_GPL vmlinux 0x7db68501 dev_pm_set_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x7dc5d11a device_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x7dcc17d5 crypto_stats_akcipher_verify EXPORT_SYMBOL_GPL vmlinux 0x7dda30af unregister_tracepoint_module_notifier 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 0x7e0566ce acpi_gpiochip_request_interrupts -EXPORT_SYMBOL_GPL vmlinux 0x7e06f53f __traceiter_pelt_se_tp -EXPORT_SYMBOL_GPL vmlinux 0x7e24e854 gpiochip_generic_request -EXPORT_SYMBOL_GPL vmlinux 0x7e270d6d vfio_pci_core_enable -EXPORT_SYMBOL_GPL vmlinux 0x7e307c7d trace_event_raw_init -EXPORT_SYMBOL_GPL vmlinux 0x7e36ecf0 virtqueue_kick_prepare +EXPORT_SYMBOL_GPL vmlinux 0x7df4c587 devm_pm_clk_create +EXPORT_SYMBOL_GPL vmlinux 0x7df4ee09 tcp_register_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0x7e021785 led_trigger_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7e2a4d3e tty_encode_baud_rate EXPORT_SYMBOL_GPL vmlinux 0x7e3bdecd __ftrace_vprintk -EXPORT_SYMBOL_GPL vmlinux 0x7e521f49 add_to_page_cache_lru -EXPORT_SYMBOL_GPL vmlinux 0x7e55290c dma_release_channel -EXPORT_SYMBOL_GPL vmlinux 0x7e597cf8 ata_link_next EXPORT_SYMBOL_GPL vmlinux 0x7e5db80b pstore_name_to_type EXPORT_SYMBOL_GPL vmlinux 0x7e64181d usb_calc_bus_time -EXPORT_SYMBOL_GPL vmlinux 0x7e68e5f5 dax_region_put -EXPORT_SYMBOL_GPL vmlinux 0x7e70517d to_nvdimm_bus +EXPORT_SYMBOL_GPL vmlinux 0x7e653ac4 serial8250_em485_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7e756f6d attribute_container_unregister EXPORT_SYMBOL_GPL vmlinux 0x7e7a47c9 pci_acpi_clear_companion_lookup_hook +EXPORT_SYMBOL_GPL vmlinux 0x7e7d6ad7 phy_create EXPORT_SYMBOL_GPL vmlinux 0x7e7e3f58 ring_buffer_reset_cpu +EXPORT_SYMBOL_GPL vmlinux 0x7e7ed0bf fsstack_copy_attr_all +EXPORT_SYMBOL_GPL vmlinux 0x7e8574eb shash_register_instance EXPORT_SYMBOL_GPL vmlinux 0x7e8d8619 usb_anchor_empty EXPORT_SYMBOL_GPL vmlinux 0x7e9043b8 synchronize_srcu -EXPORT_SYMBOL_GPL vmlinux 0x7e987ad6 nvmem_device_get +EXPORT_SYMBOL_GPL vmlinux 0x7e96db02 ptp_classify_raw +EXPORT_SYMBOL_GPL vmlinux 0x7ea051eb iommu_group_remove_device EXPORT_SYMBOL_GPL vmlinux 0x7ea75c24 __wake_up_locked_key_bookmark +EXPORT_SYMBOL_GPL vmlinux 0x7ea790ba acpi_cppc_processor_exit +EXPORT_SYMBOL_GPL vmlinux 0x7eaa9600 ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0x7eb2a5d8 crypto_grab_skcipher EXPORT_SYMBOL_GPL vmlinux 0x7eb808d0 add_cpu -EXPORT_SYMBOL_GPL vmlinux 0x7ebbb0f2 devm_extcon_dev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x7ebeb60f dma_resv_wait_timeout -EXPORT_SYMBOL_GPL vmlinux 0x7ec5ae91 __pci_hp_register -EXPORT_SYMBOL_GPL vmlinux 0x7ec7f0f2 tty_kclose EXPORT_SYMBOL_GPL vmlinux 0x7ec814de inet_hashinfo_init -EXPORT_SYMBOL_GPL vmlinux 0x7ec839d5 nvdimm_blk_region_create -EXPORT_SYMBOL_GPL vmlinux 0x7ec93e7b sysfs_remove_file_from_group -EXPORT_SYMBOL_GPL vmlinux 0x7edf1e9f fat_sync_inode +EXPORT_SYMBOL_GPL vmlinux 0x7ed9503c i2c_new_client_device +EXPORT_SYMBOL_GPL vmlinux 0x7edf5855 to_nvdimm_bus_dev EXPORT_SYMBOL_GPL vmlinux 0x7eea6b8b pcap_adc_async -EXPORT_SYMBOL_GPL vmlinux 0x7efc6f32 nf_ct_hook -EXPORT_SYMBOL_GPL vmlinux 0x7f18c9ac nvdimm_pmem_region_create -EXPORT_SYMBOL_GPL vmlinux 0x7f32bae9 __tracepoint_rpm_return_int -EXPORT_SYMBOL_GPL vmlinux 0x7f3834cf pinctrl_find_gpio_range_from_pin -EXPORT_SYMBOL_GPL vmlinux 0x7f42547e dev_pm_domain_attach_by_id -EXPORT_SYMBOL_GPL vmlinux 0x7f4b4f23 subsys_dev_iter_next -EXPORT_SYMBOL_GPL vmlinux 0x7f547e7e adp5520_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x7ef2c13a dma_alloc_pages +EXPORT_SYMBOL_GPL vmlinux 0x7efda402 __bio_crypt_clone +EXPORT_SYMBOL_GPL vmlinux 0x7f007232 nd_tbl +EXPORT_SYMBOL_GPL vmlinux 0x7f42c7bb shash_free_singlespawn_instance +EXPORT_SYMBOL_GPL vmlinux 0x7f56c3cd of_hwspin_lock_get_id +EXPORT_SYMBOL_GPL vmlinux 0x7f65caae irq_chip_set_type_parent +EXPORT_SYMBOL_GPL vmlinux 0x7f67367e __account_locked_vm EXPORT_SYMBOL_GPL vmlinux 0x7f6cee89 rhashtable_free_and_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7f747793 cros_ec_get_sensor_count EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata -EXPORT_SYMBOL_GPL vmlinux 0x7f870137 devm_pm_opp_register_set_opp_helper -EXPORT_SYMBOL_GPL vmlinux 0x7f99bc0c irq_domain_create_hierarchy -EXPORT_SYMBOL_GPL vmlinux 0x7fa548cb lp8788_read_byte -EXPORT_SYMBOL_GPL vmlinux 0x7fa5c66b fuse_dev_release +EXPORT_SYMBOL_GPL vmlinux 0x7f80caec pwm_adjust_config +EXPORT_SYMBOL_GPL vmlinux 0x7f8f516a rtc_set_time +EXPORT_SYMBOL_GPL vmlinux 0x7f9a9b09 blk_mq_virtio_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x7fa6fbfa crypto_default_rng EXPORT_SYMBOL_GPL vmlinux 0x7fa96509 erst_get_record_id_next -EXPORT_SYMBOL_GPL vmlinux 0x7fafcfb4 __tracepoint_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0x7faa8f58 irq_domain_push_irq EXPORT_SYMBOL_GPL vmlinux 0x7fafdec9 clk_fixed_factor_ops -EXPORT_SYMBOL_GPL vmlinux 0x7fb3b043 regulator_set_ramp_delay_regmap -EXPORT_SYMBOL_GPL vmlinux 0x7fc08dba xenbus_switch_state -EXPORT_SYMBOL_GPL vmlinux 0x7fc79ad4 pci_msi_unmask_irq -EXPORT_SYMBOL_GPL vmlinux 0x7fee99c6 ata_acpi_gtm_xfermask -EXPORT_SYMBOL_GPL vmlinux 0x7ffa2dad ata_bmdma_dumb_qc_prep -EXPORT_SYMBOL_GPL vmlinux 0x8013d8fd vfio_assign_device_set -EXPORT_SYMBOL_GPL vmlinux 0x802506a4 device_phy_find_device -EXPORT_SYMBOL_GPL vmlinux 0x80260755 perf_pmu_unregister -EXPORT_SYMBOL_GPL vmlinux 0x80306c75 tpm_chip_stop -EXPORT_SYMBOL_GPL vmlinux 0x8044c6c5 led_trigger_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fc73045 crypto_unregister_templates +EXPORT_SYMBOL_GPL vmlinux 0x7fd8d066 __tracepoint_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0x7fdfaf12 fwnode_get_phy_node +EXPORT_SYMBOL_GPL vmlinux 0x7fe840e0 pm_clk_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x7fef26b8 anon_inode_getfd +EXPORT_SYMBOL_GPL vmlinux 0x7ff580bc __devm_regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0x8001b72a bpfilter_ops +EXPORT_SYMBOL_GPL vmlinux 0x800d2066 disk_force_media_change +EXPORT_SYMBOL_GPL vmlinux 0x800d20e9 fwnode_property_present +EXPORT_SYMBOL_GPL vmlinux 0x8024a2cb mbox_client_txdone +EXPORT_SYMBOL_GPL vmlinux 0x802ed88e security_inode_create +EXPORT_SYMBOL_GPL vmlinux 0x80508883 debugfs_create_u16 EXPORT_SYMBOL_GPL vmlinux 0x805667cf devlink_fmsg_u64_put -EXPORT_SYMBOL_GPL vmlinux 0x80607721 fsnotify_alloc_user_group -EXPORT_SYMBOL_GPL vmlinux 0x806ef354 __kthread_init_worker -EXPORT_SYMBOL_GPL vmlinux 0x807468bf sched_trace_rq_avg_dl +EXPORT_SYMBOL_GPL vmlinux 0x8076e131 sysfs_remove_file_ns EXPORT_SYMBOL_GPL vmlinux 0x807766ea usb_scuttle_anchored_urbs EXPORT_SYMBOL_GPL vmlinux 0x807fdcc4 call_rcu_tasks_rude +EXPORT_SYMBOL_GPL vmlinux 0x80839742 policy_has_boost_freq EXPORT_SYMBOL_GPL vmlinux 0x808a8088 handle_guest_split_lock EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested -EXPORT_SYMBOL_GPL vmlinux 0x80b0b16c gpiochip_populate_parent_fwspec_fourcell +EXPORT_SYMBOL_GPL vmlinux 0x809c9374 scsi_dh_activate +EXPORT_SYMBOL_GPL vmlinux 0x80a0abc2 crypto_register_skciphers +EXPORT_SYMBOL_GPL vmlinux 0x80a71951 tty_port_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x80a74b1e fsnotify +EXPORT_SYMBOL_GPL vmlinux 0x80b282be set_pages_array_wt +EXPORT_SYMBOL_GPL vmlinux 0x80b90b8e acpi_data_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0x80be4a23 inet_twsk_hashdance EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close -EXPORT_SYMBOL_GPL vmlinux 0x80caec9c device_add_groups -EXPORT_SYMBOL_GPL vmlinux 0x80ce7805 pci_find_ht_capability -EXPORT_SYMBOL_GPL vmlinux 0x80d213ab acpi_processor_get_performance_info -EXPORT_SYMBOL_GPL vmlinux 0x80d5595e net_ns_type_operations +EXPORT_SYMBOL_GPL vmlinux 0x80cfb1ff pm_stay_awake EXPORT_SYMBOL_GPL vmlinux 0x80d5e57a mpi_free -EXPORT_SYMBOL_GPL vmlinux 0x80e7a28b irq_domain_translate_twocell -EXPORT_SYMBOL_GPL vmlinux 0x80ffefc7 regulator_get_hardware_vsel_register -EXPORT_SYMBOL_GPL vmlinux 0x811af826 pci_epf_bind -EXPORT_SYMBOL_GPL vmlinux 0x811d6bd7 serdev_device_write +EXPORT_SYMBOL_GPL vmlinux 0x80e37c33 pm_generic_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x80fe21c8 __SCK__tp_func_pelt_dl_tp +EXPORT_SYMBOL_GPL vmlinux 0x810f4b26 dev_pm_genpd_set_next_wakeup EXPORT_SYMBOL_GPL vmlinux 0x811dc334 usb_unregister_notify EXPORT_SYMBOL_GPL vmlinux 0x81221cad amd_nb_num -EXPORT_SYMBOL_GPL vmlinux 0x8124f45a regulator_list_voltage -EXPORT_SYMBOL_GPL vmlinux 0x81302ce5 md_bitmap_resize -EXPORT_SYMBOL_GPL vmlinux 0x81375ece unix_outq_len -EXPORT_SYMBOL_GPL vmlinux 0x813a5f56 evm_verifyxattr +EXPORT_SYMBOL_GPL vmlinux 0x8135208c bus_get_kset +EXPORT_SYMBOL_GPL vmlinux 0x81391124 __SCK__tp_func_sched_update_nr_running_tp +EXPORT_SYMBOL_GPL vmlinux 0x813a0b20 usb_sg_wait EXPORT_SYMBOL_GPL vmlinux 0x813cdf4a __free_iova -EXPORT_SYMBOL_GPL vmlinux 0x814ed483 dev_attr_ncq_prio_enable -EXPORT_SYMBOL_GPL vmlinux 0x81552ed6 device_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x8151edf8 usb_hcd_resume_root_hub +EXPORT_SYMBOL_GPL vmlinux 0x8153f3b3 blk_queue_write_cache EXPORT_SYMBOL_GPL vmlinux 0x815588a6 clk_enable -EXPORT_SYMBOL_GPL vmlinux 0x815a8eae virtio_add_status +EXPORT_SYMBOL_GPL vmlinux 0x8156533c gpiochip_lock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0x815aa766 bus_register_notifier EXPORT_SYMBOL_GPL vmlinux 0x815fda83 sed_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x8163b792 clockevents_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0x8163dcf4 ata_dev_set_feature EXPORT_SYMBOL_GPL vmlinux 0x816a41ca cpufreq_update_limits +EXPORT_SYMBOL_GPL vmlinux 0x81711759 crypto_stats_decompress EXPORT_SYMBOL_GPL vmlinux 0x8180cede asn1_encode_sequence -EXPORT_SYMBOL_GPL vmlinux 0x81873ba2 ata_std_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x818f769f posix_clock_register +EXPORT_SYMBOL_GPL vmlinux 0x8192196b phy_configure EXPORT_SYMBOL_GPL vmlinux 0x819d72cb klist_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0x81a5a40c sdio_release_irq +EXPORT_SYMBOL_GPL vmlinux 0x81a07ccb iommu_aux_get_pasid +EXPORT_SYMBOL_GPL vmlinux 0x81a0c73d phy_package_leave +EXPORT_SYMBOL_GPL vmlinux 0x81a2a0da iomap_releasepage +EXPORT_SYMBOL_GPL vmlinux 0x81a42235 blk_crypto_evict_key +EXPORT_SYMBOL_GPL vmlinux 0x81a7a472 crypto_enqueue_request_head EXPORT_SYMBOL_GPL vmlinux 0x81a7f541 percpu_ref_init -EXPORT_SYMBOL_GPL vmlinux 0x81aa7799 fwnode_property_get_reference_args -EXPORT_SYMBOL_GPL vmlinux 0x81afd7e9 phy_set_media EXPORT_SYMBOL_GPL vmlinux 0x81b03377 efivar_entry_set_safe -EXPORT_SYMBOL_GPL vmlinux 0x81c1566a devm_bitmap_alloc -EXPORT_SYMBOL_GPL vmlinux 0x81c87aaf rio_set_port_lockout -EXPORT_SYMBOL_GPL vmlinux 0x81caba34 ata_std_sched_eh -EXPORT_SYMBOL_GPL vmlinux 0x81cbb886 spi_busnum_to_master -EXPORT_SYMBOL_GPL vmlinux 0x81d7a900 tcp_set_state -EXPORT_SYMBOL_GPL vmlinux 0x81e6398a crypto_alloc_rng -EXPORT_SYMBOL_GPL vmlinux 0x81f13cd6 da9052_disable_irq -EXPORT_SYMBOL_GPL vmlinux 0x81f30a1d ping_close +EXPORT_SYMBOL_GPL vmlinux 0x81b9b385 regmap_noinc_write +EXPORT_SYMBOL_GPL vmlinux 0x81bb61c2 mbox_flush +EXPORT_SYMBOL_GPL vmlinux 0x81ed412d wakeup_source_remove +EXPORT_SYMBOL_GPL vmlinux 0x81f19613 i2c_new_ancillary_device EXPORT_SYMBOL_GPL vmlinux 0x81f372a2 unregister_ftrace_export +EXPORT_SYMBOL_GPL vmlinux 0x82017c89 usb_kill_urb +EXPORT_SYMBOL_GPL vmlinux 0x82030115 xenbus_dev_fatal +EXPORT_SYMBOL_GPL vmlinux 0x82051dba pci_store_saved_state EXPORT_SYMBOL_GPL vmlinux 0x82092899 badrange_forget -EXPORT_SYMBOL_GPL vmlinux 0x820ec1d1 device_match_devt -EXPORT_SYMBOL_GPL vmlinux 0x821ec72b __SCK__tp_func_error_report_end +EXPORT_SYMBOL_GPL vmlinux 0x8216ff48 cpuidle_unregister EXPORT_SYMBOL_GPL vmlinux 0x821ec7f1 clk_mux_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x8220e0de sata_async_notification EXPORT_SYMBOL_GPL vmlinux 0x82226c53 pinctrl_unregister_mappings -EXPORT_SYMBOL_GPL vmlinux 0x82231ff7 skb_segment_list -EXPORT_SYMBOL_GPL vmlinux 0x82363392 rio_mport_send_doorbell +EXPORT_SYMBOL_GPL vmlinux 0x82297240 tpm_tis_core_init +EXPORT_SYMBOL_GPL vmlinux 0x822979d6 devlink_traps_unregister EXPORT_SYMBOL_GPL vmlinux 0x823eae06 blocking_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x826fc524 regulator_get_voltage -EXPORT_SYMBOL_GPL vmlinux 0x8277e92f adp5520_write +EXPORT_SYMBOL_GPL vmlinux 0x8243e2e6 dm_per_bio_data +EXPORT_SYMBOL_GPL vmlinux 0x824b9d6d crypto_skcipher_setkey +EXPORT_SYMBOL_GPL vmlinux 0x827038d0 __SCK__tp_func_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0x82721039 devm_hwrng_unregister EXPORT_SYMBOL_GPL vmlinux 0x827e61f8 acpi_has_watchdog +EXPORT_SYMBOL_GPL vmlinux 0x8288cfe6 ata_sff_busy_sleep EXPORT_SYMBOL_GPL vmlinux 0x828e22f4 hrtimer_forward -EXPORT_SYMBOL_GPL vmlinux 0x82a848d7 spi_async -EXPORT_SYMBOL_GPL vmlinux 0x82adc0d7 msg_zerocopy_alloc -EXPORT_SYMBOL_GPL vmlinux 0x82b97fc7 __tracepoint_block_bio_remap -EXPORT_SYMBOL_GPL vmlinux 0x82cca90b perf_get_aux -EXPORT_SYMBOL_GPL vmlinux 0x82cd85b0 usb_store_new_id -EXPORT_SYMBOL_GPL vmlinux 0x82ce0877 vfio_iommu_group_put +EXPORT_SYMBOL_GPL vmlinux 0x82951362 regulator_get_voltage_sel_pickable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x829ed948 bpf_prog_destroy +EXPORT_SYMBOL_GPL vmlinux 0x82a0a255 devlink_resource_register +EXPORT_SYMBOL_GPL vmlinux 0x82a2c800 sata_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x82d01641 device_set_node +EXPORT_SYMBOL_GPL vmlinux 0x82d615ae devm_of_phy_provider_unregister EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure -EXPORT_SYMBOL_GPL vmlinux 0x82d90a97 devm_clk_hw_register_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0x82ec21a3 xfrm_get_translator -EXPORT_SYMBOL_GPL vmlinux 0x82f84dfd ata_sas_port_suspend +EXPORT_SYMBOL_GPL vmlinux 0x82e26a79 anon_inode_getfd_secure +EXPORT_SYMBOL_GPL vmlinux 0x82e41572 subsys_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x82e91fca device_create_file +EXPORT_SYMBOL_GPL vmlinux 0x82f2638c ata_port_freeze EXPORT_SYMBOL_GPL vmlinux 0x82ff4b95 clk_hw_unregister_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0x83056361 spi_controller_dma_map_mem_op_data -EXPORT_SYMBOL_GPL vmlinux 0x8312889f acpi_find_child_device +EXPORT_SYMBOL_GPL vmlinux 0x83033ae1 mmc_regulator_set_ocr +EXPORT_SYMBOL_GPL vmlinux 0x8314985e tcp_sendpage_locked EXPORT_SYMBOL_GPL vmlinux 0x83202334 alloc_iova_fast +EXPORT_SYMBOL_GPL vmlinux 0x8323ac78 crypto_register_aeads +EXPORT_SYMBOL_GPL vmlinux 0x8323e4dc gnttab_page_cache_put EXPORT_SYMBOL_GPL vmlinux 0x8328673f uv_bios_get_master_nasid -EXPORT_SYMBOL_GPL vmlinux 0x8328f2ae gpiochip_request_own_desc -EXPORT_SYMBOL_GPL vmlinux 0x83318a66 __SCK__tp_func_sched_cpu_capacity_tp -EXPORT_SYMBOL_GPL vmlinux 0x83331ded gpiochip_irq_map EXPORT_SYMBOL_GPL vmlinux 0x8335ca43 __SCT__tp_func_io_page_fault EXPORT_SYMBOL_GPL vmlinux 0x8339df73 klist_add_behind -EXPORT_SYMBOL_GPL vmlinux 0x83471f61 register_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x833f6c1f usb_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0x8347e85c serial8250_rpm_put EXPORT_SYMBOL_GPL vmlinux 0x8349a895 nvmem_device_put -EXPORT_SYMBOL_GPL vmlinux 0x834f1936 da9052_request_irq EXPORT_SYMBOL_GPL vmlinux 0x8353dfff acpi_os_get_iomem -EXPORT_SYMBOL_GPL vmlinux 0x83691c80 max8997_update_reg -EXPORT_SYMBOL_GPL vmlinux 0x836cdd88 dm_report_zones -EXPORT_SYMBOL_GPL vmlinux 0x839d05de regulator_list_voltage_table -EXPORT_SYMBOL_GPL vmlinux 0x83a3e9f4 wm8350_reg_unlock -EXPORT_SYMBOL_GPL vmlinux 0x83c538bd wm8350_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0x835be8f8 devm_fwnode_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x835e5482 tty_ldisc_deref +EXPORT_SYMBOL_GPL vmlinux 0x8360635d tty_init_termios +EXPORT_SYMBOL_GPL vmlinux 0x83673db3 ata_port_pbar_desc +EXPORT_SYMBOL_GPL vmlinux 0x836fdafa pci_find_vsec_capability +EXPORT_SYMBOL_GPL vmlinux 0x8378a126 firmware_request_platform +EXPORT_SYMBOL_GPL vmlinux 0x837b3a9c phy_set_speed +EXPORT_SYMBOL_GPL vmlinux 0x837f1a74 bd_prepare_to_claim +EXPORT_SYMBOL_GPL vmlinux 0x8380edcb irq_domain_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x838509c8 __class_register +EXPORT_SYMBOL_GPL vmlinux 0x83892dc3 ptdump_walk_pgd_level_debugfs +EXPORT_SYMBOL_GPL vmlinux 0x83ab6691 ata_msleep +EXPORT_SYMBOL_GPL vmlinux 0x83bb5065 blk_stat_enable_accounting +EXPORT_SYMBOL_GPL vmlinux 0x83c14913 gpiod_set_array_value EXPORT_SYMBOL_GPL vmlinux 0x83c6040d unregister_kretprobes -EXPORT_SYMBOL_GPL vmlinux 0x83f55b90 ata_bmdma_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x840743f1 usb_control_msg_recv +EXPORT_SYMBOL_GPL vmlinux 0x83e31a7a em_dev_unregister_perf_domain +EXPORT_SYMBOL_GPL vmlinux 0x840489bf ata_sff_tf_read +EXPORT_SYMBOL_GPL vmlinux 0x84049fe3 fwnode_get_parent EXPORT_SYMBOL_GPL vmlinux 0x84106f36 devlink_trap_ctx_priv -EXPORT_SYMBOL_GPL vmlinux 0x8425307b pci_disable_pri +EXPORT_SYMBOL_GPL vmlinux 0x84108782 cgroup_get_e_css +EXPORT_SYMBOL_GPL vmlinux 0x8411e151 class_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x8413570f platform_get_resource +EXPORT_SYMBOL_GPL vmlinux 0x8417ff8d usb_hcd_setup_local_mem +EXPORT_SYMBOL_GPL vmlinux 0x841a3c4f usb_reset_device EXPORT_SYMBOL_GPL vmlinux 0x84264ced fs_umode_to_ftype -EXPORT_SYMBOL_GPL vmlinux 0x84281265 devm_kstrdup_const -EXPORT_SYMBOL_GPL vmlinux 0x842b6f31 dev_pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x84285fdb pci_epf_free_space EXPORT_SYMBOL_GPL vmlinux 0x842f046d usb_poison_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x8430dfeb icc_put +EXPORT_SYMBOL_GPL vmlinux 0x84301bd3 kthread_use_mm EXPORT_SYMBOL_GPL vmlinux 0x843d70ef acpi_is_root_bridge -EXPORT_SYMBOL_GPL vmlinux 0x844378bb __SCK__tp_func_map -EXPORT_SYMBOL_GPL vmlinux 0x844d5552 usb_hub_clear_tt_buffer +EXPORT_SYMBOL_GPL vmlinux 0x844e3c41 nl_table +EXPORT_SYMBOL_GPL vmlinux 0x844feef4 phy_validate EXPORT_SYMBOL_GPL vmlinux 0x84502a47 blk_status_to_errno -EXPORT_SYMBOL_GPL vmlinux 0x84531faa __mmc_send_status -EXPORT_SYMBOL_GPL vmlinux 0x845a4b03 mptcp_token_iter_next EXPORT_SYMBOL_GPL vmlinux 0x845dbf3b scatterwalk_map_and_copy EXPORT_SYMBOL_GPL vmlinux 0x8462cb62 atapi_cmd_type EXPORT_SYMBOL_GPL vmlinux 0x84678725 __SCK__tp_func_xdp_exception -EXPORT_SYMBOL_GPL vmlinux 0x8472f8ac dmaengine_desc_attach_metadata -EXPORT_SYMBOL_GPL vmlinux 0x84773603 dev_pm_opp_sync_regulators -EXPORT_SYMBOL_GPL vmlinux 0x849c83d6 fwnode_property_match_string -EXPORT_SYMBOL_GPL vmlinux 0x84ac7f8d balloon_aops +EXPORT_SYMBOL_GPL vmlinux 0x8469c501 da9052_adc_read_temp +EXPORT_SYMBOL_GPL vmlinux 0x847cce58 blk_queue_rq_timeout +EXPORT_SYMBOL_GPL vmlinux 0x848c84a5 tps65912_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x848daed2 extcon_set_state +EXPORT_SYMBOL_GPL vmlinux 0x848dee20 cpufreq_freq_attr_scaling_boost_freqs +EXPORT_SYMBOL_GPL vmlinux 0x84926662 vp_modern_queue_address +EXPORT_SYMBOL_GPL vmlinux 0x849c0bee ata_bmdma_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x849c8afd bpf_map_put +EXPORT_SYMBOL_GPL vmlinux 0x849c9131 clk_hw_is_prepared EXPORT_SYMBOL_GPL vmlinux 0x84b268cf sn_coherency_id -EXPORT_SYMBOL_GPL vmlinux 0x84b753da tracing_snapshot_cond -EXPORT_SYMBOL_GPL vmlinux 0x84c595e7 ata_std_prereset -EXPORT_SYMBOL_GPL vmlinux 0x84e82e65 bio_release_pages +EXPORT_SYMBOL_GPL vmlinux 0x84bdbbe8 mnt_want_write_file +EXPORT_SYMBOL_GPL vmlinux 0x84cef284 blk_freeze_queue_start +EXPORT_SYMBOL_GPL vmlinux 0x84d9c7fe vfio_pci_core_enable +EXPORT_SYMBOL_GPL vmlinux 0x84e8b0f6 spi_async_locked EXPORT_SYMBOL_GPL vmlinux 0x84ef27f5 synth_event_add_fields -EXPORT_SYMBOL_GPL vmlinux 0x84ef9588 bpf_map_inc_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x8506b80f ip_build_and_send_pkt EXPORT_SYMBOL_GPL vmlinux 0x8506baa8 clk_unregister_gate EXPORT_SYMBOL_GPL vmlinux 0x850bb6db devlink_health_reporter_destroy +EXPORT_SYMBOL_GPL vmlinux 0x850cb74d devm_regulator_get +EXPORT_SYMBOL_GPL vmlinux 0x850d3a75 auxiliary_find_device EXPORT_SYMBOL_GPL vmlinux 0x851e6003 usb_phy_roothub_calibrate -EXPORT_SYMBOL_GPL vmlinux 0x852d9a9b usb_get_status -EXPORT_SYMBOL_GPL vmlinux 0x85356d1a register_trace_event -EXPORT_SYMBOL_GPL vmlinux 0x85517299 crypto_unregister_shash +EXPORT_SYMBOL_GPL vmlinux 0x852ec49a xfrm_audit_state_replay_overflow +EXPORT_SYMBOL_GPL vmlinux 0x85415607 __SCK__tp_func_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0x85433346 ip_local_out +EXPORT_SYMBOL_GPL vmlinux 0x854ba734 skb_clone_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x854da376 get_dev_pagemap EXPORT_SYMBOL_GPL vmlinux 0x85540ebc nvmem_cell_put -EXPORT_SYMBOL_GPL vmlinux 0x856c21b3 iommu_dev_disable_feature -EXPORT_SYMBOL_GPL vmlinux 0x85791dac iommu_present -EXPORT_SYMBOL_GPL vmlinux 0x857e2d69 crypto_unregister_alg +EXPORT_SYMBOL_GPL vmlinux 0x855a1e16 devlink_param_register +EXPORT_SYMBOL_GPL vmlinux 0x855fc16a acpi_kobj +EXPORT_SYMBOL_GPL vmlinux 0x8563ba1b sdio_claim_host +EXPORT_SYMBOL_GPL vmlinux 0x85656cd0 rio_map_outb_region +EXPORT_SYMBOL_GPL vmlinux 0x8566a4fe crypto_remove_spawns +EXPORT_SYMBOL_GPL vmlinux 0x856c0596 crypto_unregister_instance +EXPORT_SYMBOL_GPL vmlinux 0x857d8629 gnttab_alloc_pages +EXPORT_SYMBOL_GPL vmlinux 0x85847d62 blk_ksm_intersect_modes +EXPORT_SYMBOL_GPL vmlinux 0x8584d920 gnttab_free_pages EXPORT_SYMBOL_GPL vmlinux 0x85862277 ioasid_find -EXPORT_SYMBOL_GPL vmlinux 0x858b8b53 inet_hash_connect EXPORT_SYMBOL_GPL vmlinux 0x85935a61 acpi_dev_irq_flags -EXPORT_SYMBOL_GPL vmlinux 0x8595b2bc usb_hcd_resume_root_hub +EXPORT_SYMBOL_GPL vmlinux 0x85af532a xhci_resume EXPORT_SYMBOL_GPL vmlinux 0x85b15444 arch_set_max_freq_ratio EXPORT_SYMBOL_GPL vmlinux 0x85bfc5f9 __SCT__tp_func_block_rq_insert +EXPORT_SYMBOL_GPL vmlinux 0x85c102c3 bpf_sk_storage_diag_put EXPORT_SYMBOL_GPL vmlinux 0x85c54b61 efivar_validate EXPORT_SYMBOL_GPL vmlinux 0x85cb2c45 xen_has_pv_devices +EXPORT_SYMBOL_GPL vmlinux 0x85cda01c dev_pm_qos_hide_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x85d3e008 __tracepoint_arm_event +EXPORT_SYMBOL_GPL vmlinux 0x85d477fc usb_phy_roothub_alloc EXPORT_SYMBOL_GPL vmlinux 0x85d7edfd hpet_set_periodic_freq -EXPORT_SYMBOL_GPL vmlinux 0x85d9e5a4 xhci_dbg_trace -EXPORT_SYMBOL_GPL vmlinux 0x85dca087 __blk_mq_debugfs_rq_show -EXPORT_SYMBOL_GPL vmlinux 0x85e0386c __tracepoint_sched_overutilized_tp +EXPORT_SYMBOL_GPL vmlinux 0x85e0211f serdev_device_write_room +EXPORT_SYMBOL_GPL vmlinux 0x85ea2356 pinctrl_find_and_add_gpio_range EXPORT_SYMBOL_GPL vmlinux 0x85eed1be iopf_queue_discard_partial +EXPORT_SYMBOL_GPL vmlinux 0x85ef6efd palmas_ext_control_req_config EXPORT_SYMBOL_GPL vmlinux 0x86169f3e amd_smn_write EXPORT_SYMBOL_GPL vmlinux 0x862258db timecounter_init -EXPORT_SYMBOL_GPL vmlinux 0x862af4ec gpiod_get_index EXPORT_SYMBOL_GPL vmlinux 0x862bb17b linear_range_values_in_range_array -EXPORT_SYMBOL_GPL vmlinux 0x862d06ee __devm_intel_scu_ipc_register -EXPORT_SYMBOL_GPL vmlinux 0x862f6357 da903x_clr_bits -EXPORT_SYMBOL_GPL vmlinux 0x863177da skcipher_walk_done -EXPORT_SYMBOL_GPL vmlinux 0x86377099 page_endio -EXPORT_SYMBOL_GPL vmlinux 0x8637e5b6 regulator_desc_list_voltage_linear_range -EXPORT_SYMBOL_GPL vmlinux 0x8642f16f acpiphp_unregister_attention +EXPORT_SYMBOL_GPL vmlinux 0x86504f2b tcp_bpf_update_proto EXPORT_SYMBOL_GPL vmlinux 0x86585a33 devlink_fmsg_obj_nest_start EXPORT_SYMBOL_GPL vmlinux 0x86623fd7 notify_remote_via_irq +EXPORT_SYMBOL_GPL vmlinux 0x8662d27f gpiod_cansleep EXPORT_SYMBOL_GPL vmlinux 0x86700220 acpi_get_cpuid EXPORT_SYMBOL_GPL vmlinux 0x8677245d unregister_switchdev_blocking_notifier EXPORT_SYMBOL_GPL vmlinux 0x8677f369 pvclock_get_pvti_cpu0_va -EXPORT_SYMBOL_GPL vmlinux 0x867d8409 dev_pm_opp_find_freq_ceil_by_volt +EXPORT_SYMBOL_GPL vmlinux 0x867f264e genphy_c45_restart_aneg EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get -EXPORT_SYMBOL_GPL vmlinux 0x8696d41f spi_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0x8698c010 sdio_release_host -EXPORT_SYMBOL_GPL vmlinux 0x86a2b62a inet_unhash -EXPORT_SYMBOL_GPL vmlinux 0x86aa85a5 da903x_read -EXPORT_SYMBOL_GPL vmlinux 0x86ab12d8 tpmm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0x868c75db xhci_drop_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x869286cc pci_epf_type_add_cfs +EXPORT_SYMBOL_GPL vmlinux 0x86aa9c0c irq_gc_set_wake +EXPORT_SYMBOL_GPL vmlinux 0x86aef10a blk_update_request EXPORT_SYMBOL_GPL vmlinux 0x86b13d2a usb_unpoison_anchored_urbs EXPORT_SYMBOL_GPL vmlinux 0x86b427ce clkdev_create +EXPORT_SYMBOL_GPL vmlinux 0x86bb026c put_device EXPORT_SYMBOL_GPL vmlinux 0x86c43a8c cper_estatus_check EXPORT_SYMBOL_GPL vmlinux 0x86c961b3 __set_dax_synchronous -EXPORT_SYMBOL_GPL vmlinux 0x86d66867 usb_add_phy_dev EXPORT_SYMBOL_GPL vmlinux 0x86dda6ef rtm_getroute_parse_ip_proto -EXPORT_SYMBOL_GPL vmlinux 0x86e00a0d wm8350_block_write +EXPORT_SYMBOL_GPL vmlinux 0x86eb25b3 sk_psock_init EXPORT_SYMBOL_GPL vmlinux 0x86f6b99d synchronize_rcu_expedited EXPORT_SYMBOL_GPL vmlinux 0x86f85114 net_dec_egress_queue -EXPORT_SYMBOL_GPL vmlinux 0x86fdd7ae led_classdev_notify_brightness_hw_changed +EXPORT_SYMBOL_GPL vmlinux 0x870d6aee virtqueue_is_broken EXPORT_SYMBOL_GPL vmlinux 0x870e16b7 xen_test_irq_shared -EXPORT_SYMBOL_GPL vmlinux 0x871b8bfd usb_lock_device_for_reset -EXPORT_SYMBOL_GPL vmlinux 0x871d0b93 crypto_stats_rng_seed -EXPORT_SYMBOL_GPL vmlinux 0x872890f3 serial8250_init_port +EXPORT_SYMBOL_GPL vmlinux 0x8710ca12 i2c_dw_configure_master +EXPORT_SYMBOL_GPL vmlinux 0x87222004 __devm_spi_alloc_controller +EXPORT_SYMBOL_GPL vmlinux 0x8724e7ea platform_get_resource_byname EXPORT_SYMBOL_GPL vmlinux 0x872d4f7c __SCT__tp_func_xdp_bulk_tx +EXPORT_SYMBOL_GPL vmlinux 0x87354fea serdev_device_write EXPORT_SYMBOL_GPL vmlinux 0x8735ed3d irq_set_affinity_notifier -EXPORT_SYMBOL_GPL vmlinux 0x87468797 dax_copy_from_iter -EXPORT_SYMBOL_GPL vmlinux 0x87487f34 setfl -EXPORT_SYMBOL_GPL vmlinux 0x87519fc3 devlink_trap_policers_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8739b742 ata_platform_remove_one EXPORT_SYMBOL_GPL vmlinux 0x875582b7 nvmem_del_cell_table -EXPORT_SYMBOL_GPL vmlinux 0x875dded5 __pm_runtime_idle -EXPORT_SYMBOL_GPL vmlinux 0x876db9f2 sdio_readb -EXPORT_SYMBOL_GPL vmlinux 0x878350dc i2c_parse_fw_timings -EXPORT_SYMBOL_GPL vmlinux 0x87b02eff __spi_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x87b0e84e firmware_request_nowarn -EXPORT_SYMBOL_GPL vmlinux 0x87b2869b vp_modern_get_num_queues -EXPORT_SYMBOL_GPL vmlinux 0x87bda741 switchdev_handle_port_attr_set +EXPORT_SYMBOL_GPL vmlinux 0x87647994 usb_hcd_poll_rh_status +EXPORT_SYMBOL_GPL vmlinux 0x876b40c3 ata_sas_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x8773e9a1 devm_memremap_pages +EXPORT_SYMBOL_GPL vmlinux 0x87743410 devm_release_action +EXPORT_SYMBOL_GPL vmlinux 0x878052f8 uprobe_unregister +EXPORT_SYMBOL_GPL vmlinux 0x878f00e3 crypto_unregister_aead +EXPORT_SYMBOL_GPL vmlinux 0x87b8af21 virtio_add_status EXPORT_SYMBOL_GPL vmlinux 0x87ce0be2 free_iova -EXPORT_SYMBOL_GPL vmlinux 0x87cf5f65 spi_mem_dirmap_create -EXPORT_SYMBOL_GPL vmlinux 0x87e5bc11 iommu_unmap_fast +EXPORT_SYMBOL_GPL vmlinux 0x87d2f7c9 extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x87d44526 ping_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x87e478d9 usb_create_shared_hcd EXPORT_SYMBOL_GPL vmlinux 0x87e64181 amd_nb_has_feature -EXPORT_SYMBOL_GPL vmlinux 0x87e87109 spi_mem_supports_op EXPORT_SYMBOL_GPL vmlinux 0x87f34e99 disable_kprobe -EXPORT_SYMBOL_GPL vmlinux 0x87f6588e usb_alloc_streams -EXPORT_SYMBOL_GPL vmlinux 0x8811de53 genphy_c45_restart_aneg -EXPORT_SYMBOL_GPL vmlinux 0x8813d497 dev_pm_opp_get_max_volt_latency -EXPORT_SYMBOL_GPL vmlinux 0x88235252 gpiod_get_array -EXPORT_SYMBOL_GPL vmlinux 0x88248c23 sysfs_notify +EXPORT_SYMBOL_GPL vmlinux 0x87f3d270 devm_regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x881bd381 pci_stop_and_remove_bus_device_locked +EXPORT_SYMBOL_GPL vmlinux 0x8831df42 apply_to_page_range +EXPORT_SYMBOL_GPL vmlinux 0x8833d5f4 dev_pm_opp_find_level_exact +EXPORT_SYMBOL_GPL vmlinux 0x88355e3b tty_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0x88371b26 sdio_retune_crc_disable +EXPORT_SYMBOL_GPL vmlinux 0x884a0c32 tcf_dev_queue_xmit EXPORT_SYMBOL_GPL vmlinux 0x885528a6 ring_buffer_discard_commit -EXPORT_SYMBOL_GPL vmlinux 0x886809c6 regulator_unregister -EXPORT_SYMBOL_GPL vmlinux 0x886ac949 devm_phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0x8857dc91 dax_finish_sync_fault +EXPORT_SYMBOL_GPL vmlinux 0x886329a1 crypto_find_alg EXPORT_SYMBOL_GPL vmlinux 0x888c5be5 irq_bypass_register_consumer -EXPORT_SYMBOL_GPL vmlinux 0x888cb317 devlink_unregister -EXPORT_SYMBOL_GPL vmlinux 0x88a56032 __hwspin_trylock +EXPORT_SYMBOL_GPL vmlinux 0x889ce1bb vfio_pci_core_match EXPORT_SYMBOL_GPL vmlinux 0x88ab6fe3 kgdb_active -EXPORT_SYMBOL_GPL vmlinux 0x88b45762 cpuidle_register +EXPORT_SYMBOL_GPL vmlinux 0x88af1980 xenbus_free_evtchn +EXPORT_SYMBOL_GPL vmlinux 0x88b1fd4f i2c_adapter_depth EXPORT_SYMBOL_GPL vmlinux 0x88b4ae92 ring_buffer_normalize_time_stamp -EXPORT_SYMBOL_GPL vmlinux 0x88ba87e3 pci_epf_free_space -EXPORT_SYMBOL_GPL vmlinux 0x88cf49bc spi_take_timestamp_post -EXPORT_SYMBOL_GPL vmlinux 0x88de405e __devm_regmap_init -EXPORT_SYMBOL_GPL vmlinux 0x88e76e55 irq_gc_set_wake -EXPORT_SYMBOL_GPL vmlinux 0x88ec023c serial8250_em485_start_tx -EXPORT_SYMBOL_GPL vmlinux 0x88ef1951 clk_hw_register -EXPORT_SYMBOL_GPL vmlinux 0x88efa9ed usb_put_hcd -EXPORT_SYMBOL_GPL vmlinux 0x88f245f8 __tracepoint_block_rq_remap -EXPORT_SYMBOL_GPL vmlinux 0x89020f5f gpiod_export_link +EXPORT_SYMBOL_GPL vmlinux 0x88ba9cbc __inet_lookup_established +EXPORT_SYMBOL_GPL vmlinux 0x88cec5aa wb_writeout_inc +EXPORT_SYMBOL_GPL vmlinux 0x88e691e0 dma_request_chan +EXPORT_SYMBOL_GPL vmlinux 0x88e8046a sk_free_unlock_clone +EXPORT_SYMBOL_GPL vmlinux 0x88e907ea ata_sff_data_xfer EXPORT_SYMBOL_GPL vmlinux 0x890f4f97 __kprobe_event_gen_cmd_start EXPORT_SYMBOL_GPL vmlinux 0x890fa0fa btree_get_prev EXPORT_SYMBOL_GPL vmlinux 0x891a5a7f gnttab_max_grant_frames -EXPORT_SYMBOL_GPL vmlinux 0x891fabac clk_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x891adae3 gpiod_set_value +EXPORT_SYMBOL_GPL vmlinux 0x89210ffa vring_new_virtqueue EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state -EXPORT_SYMBOL_GPL vmlinux 0x89259248 dev_pm_opp_get_max_clock_latency -EXPORT_SYMBOL_GPL vmlinux 0x892b4698 irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x892ba69a xen_find_device_domain_owner EXPORT_SYMBOL_GPL vmlinux 0x892f9f04 __SCT__tp_func_devlink_hwerr EXPORT_SYMBOL_GPL vmlinux 0x893abbdd devlink_fmsg_u32_pair_put +EXPORT_SYMBOL_GPL vmlinux 0x893cbc69 blk_mq_sched_try_insert_merge +EXPORT_SYMBOL_GPL vmlinux 0x89415b8c nvdimm_kobj EXPORT_SYMBOL_GPL vmlinux 0x89485687 iommu_group_put -EXPORT_SYMBOL_GPL vmlinux 0x8954553f wm831x_reg_unlock -EXPORT_SYMBOL_GPL vmlinux 0x89562c29 dev_pm_opp_put_supported_hw -EXPORT_SYMBOL_GPL vmlinux 0x89645e46 acpi_device_fwnode_ops -EXPORT_SYMBOL_GPL vmlinux 0x896d972f cgroup_get_from_id -EXPORT_SYMBOL_GPL vmlinux 0x8970087a __irq_resolve_mapping -EXPORT_SYMBOL_GPL vmlinux 0x899e5b69 xenbus_dev_changed -EXPORT_SYMBOL_GPL vmlinux 0x89a660ab generic_handle_domain_irq +EXPORT_SYMBOL_GPL vmlinux 0x89490763 __tracepoint_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0x8952d336 __dma_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x8974f0a9 event_triggers_post_call +EXPORT_SYMBOL_GPL vmlinux 0x897928b7 fwnode_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x898686f9 rio_add_device +EXPORT_SYMBOL_GPL vmlinux 0x8987c67e sbitmap_show +EXPORT_SYMBOL_GPL vmlinux 0x898981a4 pcie_aspm_enabled +EXPORT_SYMBOL_GPL vmlinux 0x89899646 device_remove_software_node +EXPORT_SYMBOL_GPL vmlinux 0x89968cb8 netdev_rx_handler_unregister +EXPORT_SYMBOL_GPL vmlinux 0x89985fe3 register_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0x89a27280 ip6_redirect +EXPORT_SYMBOL_GPL vmlinux 0x89a88b9d pm_schedule_suspend EXPORT_SYMBOL_GPL vmlinux 0x89ae7aa0 rsa_parse_pub_key -EXPORT_SYMBOL_GPL vmlinux 0x89b6ea22 crypto_larval_alloc EXPORT_SYMBOL_GPL vmlinux 0x89bbafc6 usb_register_notify +EXPORT_SYMBOL_GPL vmlinux 0x89c6225b vfio_register_iommu_driver +EXPORT_SYMBOL_GPL vmlinux 0x89ce1585 xenbus_probe_node +EXPORT_SYMBOL_GPL vmlinux 0x89ce332c pci_destroy_slot +EXPORT_SYMBOL_GPL vmlinux 0x89ce6f3d fat_get_dotdot_entry EXPORT_SYMBOL_GPL vmlinux 0x89e340cf acpi_bus_get_ejd -EXPORT_SYMBOL_GPL vmlinux 0x89fbfdf3 pcie_flr -EXPORT_SYMBOL_GPL vmlinux 0x8a001552 __mnt_drop_write -EXPORT_SYMBOL_GPL vmlinux 0x8a08ac62 bpf_trace_run5 -EXPORT_SYMBOL_GPL vmlinux 0x8a0f661f vfio_group_iommu_domain -EXPORT_SYMBOL_GPL vmlinux 0x8a1aa3ec hrtimer_sleeper_start_expires +EXPORT_SYMBOL_GPL vmlinux 0x89e8baef gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0x89f03e2e fsnotify_destroy_mark +EXPORT_SYMBOL_GPL vmlinux 0x89f5069a sdio_memcpy_toio +EXPORT_SYMBOL_GPL vmlinux 0x8a1aa52c blk_mq_rdma_map_queues EXPORT_SYMBOL_GPL vmlinux 0x8a240bff __xas_next -EXPORT_SYMBOL_GPL vmlinux 0x8a2936a9 sfp_add_phy -EXPORT_SYMBOL_GPL vmlinux 0x8a3e7168 cpuidle_get_driver +EXPORT_SYMBOL_GPL vmlinux 0x8a290d48 sysfs_remove_file_from_group +EXPORT_SYMBOL_GPL vmlinux 0x8a3f4640 list_lru_count_one EXPORT_SYMBOL_GPL vmlinux 0x8a3f84ba linear_range_get_selector_low -EXPORT_SYMBOL_GPL vmlinux 0x8a402f70 __SCK__tp_func_pelt_irq_tp EXPORT_SYMBOL_GPL vmlinux 0x8a45a555 acpi_unregister_wakeup_handler -EXPORT_SYMBOL_GPL vmlinux 0x8a4dd92e xhci_get_ep_ctx -EXPORT_SYMBOL_GPL vmlinux 0x8a5391e1 regulator_set_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x8a48b518 crypto_shash_update +EXPORT_SYMBOL_GPL vmlinux 0x8a48e0d7 root_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8a4c5d1a devlink_trap_groups_register +EXPORT_SYMBOL_GPL vmlinux 0x8a50c524 cpuidle_register_driver EXPORT_SYMBOL_GPL vmlinux 0x8a62b81b sfp_upstream_stop -EXPORT_SYMBOL_GPL vmlinux 0x8a6cc802 pci_rescan_bus -EXPORT_SYMBOL_GPL vmlinux 0x8a7319d6 usb_hcd_unmap_urb_setup_for_dma -EXPORT_SYMBOL_GPL vmlinux 0x8a77fe61 rtc_initialize_alarm -EXPORT_SYMBOL_GPL vmlinux 0x8a79e009 pinctrl_enable +EXPORT_SYMBOL_GPL vmlinux 0x8a690452 nf_checksum_partial +EXPORT_SYMBOL_GPL vmlinux 0x8a787de8 vfs_setxattr EXPORT_SYMBOL_GPL vmlinux 0x8a7cb9c4 platform_thermal_package_rate_control -EXPORT_SYMBOL_GPL vmlinux 0x8a831e62 rio_mport_chk_dev_access EXPORT_SYMBOL_GPL vmlinux 0x8a838ef6 intel_scu_ipc_dev_put EXPORT_SYMBOL_GPL vmlinux 0x8a83fb45 mpi_point_free_parts -EXPORT_SYMBOL_GPL vmlinux 0x8a899156 vp_modern_queue_address -EXPORT_SYMBOL_GPL vmlinux 0x8a9176a4 blk_mq_freeze_queue_wait_timeout -EXPORT_SYMBOL_GPL vmlinux 0x8a92672e iomap_truncate_page -EXPORT_SYMBOL_GPL vmlinux 0x8a9fde48 devfreq_event_disable_edev -EXPORT_SYMBOL_GPL vmlinux 0x8aafbd55 blkcg_root -EXPORT_SYMBOL_GPL vmlinux 0x8ab10b0d cros_ec_get_sensor_count -EXPORT_SYMBOL_GPL vmlinux 0x8ab39bce wm8350_read_auxadc -EXPORT_SYMBOL_GPL vmlinux 0x8ab9686f dma_vunmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x8a970204 acpi_dev_get_dma_resources EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files -EXPORT_SYMBOL_GPL vmlinux 0x8ad4662f rio_del_device -EXPORT_SYMBOL_GPL vmlinux 0x8ad52cea irq_generic_chip_ops EXPORT_SYMBOL_GPL vmlinux 0x8ad5ceb1 __uv_hub_info_list -EXPORT_SYMBOL_GPL vmlinux 0x8ae15089 led_trigger_unregister_simple -EXPORT_SYMBOL_GPL vmlinux 0x8aefd64f rtnl_link_register -EXPORT_SYMBOL_GPL vmlinux 0x8af8182c devfreq_get_devfreq_by_node -EXPORT_SYMBOL_GPL vmlinux 0x8b095fe2 blk_trace_setup EXPORT_SYMBOL_GPL vmlinux 0x8b149c36 clk_is_match -EXPORT_SYMBOL_GPL vmlinux 0x8b159c1e blk_mq_queue_inflight -EXPORT_SYMBOL_GPL vmlinux 0x8b217ef7 blk_stat_enable_accounting -EXPORT_SYMBOL_GPL vmlinux 0x8b2ef843 show_class_attr_string -EXPORT_SYMBOL_GPL vmlinux 0x8b300f84 uart_handle_dcd_change +EXPORT_SYMBOL_GPL vmlinux 0x8b2534c5 sis_info133_for_sata +EXPORT_SYMBOL_GPL vmlinux 0x8b313c76 clean_acked_data_enable +EXPORT_SYMBOL_GPL vmlinux 0x8b342118 umd_load_blob +EXPORT_SYMBOL_GPL vmlinux 0x8b46e9ba usb_root_hub_lost_power EXPORT_SYMBOL_GPL vmlinux 0x8b47ea1d __SCT__tp_func_extlog_mem_event -EXPORT_SYMBOL_GPL vmlinux 0x8b4c6b2b sdio_writesb -EXPORT_SYMBOL_GPL vmlinux 0x8b563c21 l3mdev_link_scope_lookup -EXPORT_SYMBOL_GPL vmlinux 0x8b5a4c25 cpufreq_disable_fast_switch -EXPORT_SYMBOL_GPL vmlinux 0x8b605d32 dev_pm_genpd_suspend -EXPORT_SYMBOL_GPL vmlinux 0x8b6de664 md_rdev_init -EXPORT_SYMBOL_GPL vmlinux 0x8b6f42ff of_led_get -EXPORT_SYMBOL_GPL vmlinux 0x8b79f176 cgroup_get_e_css +EXPORT_SYMBOL_GPL vmlinux 0x8b50a078 irq_chip_set_parent_state +EXPORT_SYMBOL_GPL vmlinux 0x8b5daa0e iommu_sva_free_pasid +EXPORT_SYMBOL_GPL vmlinux 0x8b767388 acpi_dev_clear_dependencies EXPORT_SYMBOL_GPL vmlinux 0x8b8cc689 enable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x8b901433 netlink_strict_get_check EXPORT_SYMBOL_GPL vmlinux 0x8b9200fd lookup_address +EXPORT_SYMBOL_GPL vmlinux 0x8b95c5c1 usb_control_msg_recv EXPORT_SYMBOL_GPL vmlinux 0x8b95e6a2 __SCT__tp_func_pelt_irq_tp -EXPORT_SYMBOL_GPL vmlinux 0x8b979788 mmc_send_tuning -EXPORT_SYMBOL_GPL vmlinux 0x8ba27127 fsl_mc_device_group -EXPORT_SYMBOL_GPL vmlinux 0x8ba5d7f1 pin_user_pages_fast -EXPORT_SYMBOL_GPL vmlinux 0x8bb3c9da dev_pm_set_dedicated_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0x8bc1ea99 irq_gc_mask_set_bit -EXPORT_SYMBOL_GPL vmlinux 0x8bc415e6 led_blink_set -EXPORT_SYMBOL_GPL vmlinux 0x8bc8f93f exportfs_encode_inode_fh -EXPORT_SYMBOL_GPL vmlinux 0x8bcf6d5f pci_device_group -EXPORT_SYMBOL_GPL vmlinux 0x8bd01f84 devlink_port_type_ib_set -EXPORT_SYMBOL_GPL vmlinux 0x8bdd40f3 ping_queue_rcv_skb -EXPORT_SYMBOL_GPL vmlinux 0x8bec6999 da9052_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0x8bf5e73b rio_register_mport -EXPORT_SYMBOL_GPL vmlinux 0x8bfa1547 devlink_alloc_ns -EXPORT_SYMBOL_GPL vmlinux 0x8bfe80af hwmon_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x8bffd540 irq_chip_set_vcpu_affinity_parent +EXPORT_SYMBOL_GPL vmlinux 0x8bbac0d9 irq_domain_xlate_onetwocell +EXPORT_SYMBOL_GPL vmlinux 0x8bc7f7ef rio_dma_prep_xfer +EXPORT_SYMBOL_GPL vmlinux 0x8bc88b31 platform_device_add_resources +EXPORT_SYMBOL_GPL vmlinux 0x8bd9faee crypto_unregister_shashes +EXPORT_SYMBOL_GPL vmlinux 0x8be462bd vga_default_device +EXPORT_SYMBOL_GPL vmlinux 0x8be557bf tpm2_get_cc_attrs_tbl +EXPORT_SYMBOL_GPL vmlinux 0x8bef1aec ip6_sk_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0x8c0215f2 pm_system_wakeup EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue -EXPORT_SYMBOL_GPL vmlinux 0x8c03d934 sata_link_resume -EXPORT_SYMBOL_GPL vmlinux 0x8c08672a crypto_unregister_instance EXPORT_SYMBOL_GPL vmlinux 0x8c0ed103 rcu_check_boost_fail -EXPORT_SYMBOL_GPL vmlinux 0x8c143fa4 dev_pm_opp_get_freq -EXPORT_SYMBOL_GPL vmlinux 0x8c302d37 handle_untracked_irq +EXPORT_SYMBOL_GPL vmlinux 0x8c141278 ip6_route_output_flags_noref +EXPORT_SYMBOL_GPL vmlinux 0x8c1d82f3 crypto_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0x8c33969c ata_ehi_push_desc EXPORT_SYMBOL_GPL vmlinux 0x8c341c48 current_save_fsgs -EXPORT_SYMBOL_GPL vmlinux 0x8c435cd5 bind_interdomain_evtchn_to_irq_lateeoi -EXPORT_SYMBOL_GPL vmlinux 0x8c457d8a bus_unregister EXPORT_SYMBOL_GPL vmlinux 0x8c484409 gnttab_release_grant_reference -EXPORT_SYMBOL_GPL vmlinux 0x8c4b0833 device_attach -EXPORT_SYMBOL_GPL vmlinux 0x8c4e7193 __SCK__tp_func_extlog_mem_event +EXPORT_SYMBOL_GPL vmlinux 0x8c4fb465 io_cgrp_subsys EXPORT_SYMBOL_GPL vmlinux 0x8c4fded2 sgx_virt_einit -EXPORT_SYMBOL_GPL vmlinux 0x8c6bb04d icc_get_name +EXPORT_SYMBOL_GPL vmlinux 0x8c61ce3c iomap_seek_hole +EXPORT_SYMBOL_GPL vmlinux 0x8c704e07 icc_set_tag EXPORT_SYMBOL_GPL vmlinux 0x8c743fb6 reset_control_status +EXPORT_SYMBOL_GPL vmlinux 0x8c747025 dax_region_put +EXPORT_SYMBOL_GPL vmlinux 0x8c85f61d power_supply_register EXPORT_SYMBOL_GPL vmlinux 0x8c89e3b8 usb_phy_roothub_power_off -EXPORT_SYMBOL_GPL vmlinux 0x8c9de751 netdev_walk_all_lower_dev -EXPORT_SYMBOL_GPL vmlinux 0x8cabbfce __regmap_init_i2c -EXPORT_SYMBOL_GPL vmlinux 0x8cbf4fea iommu_detach_group -EXPORT_SYMBOL_GPL vmlinux 0x8cc6ae6c usb_get_maximum_ssp_rate -EXPORT_SYMBOL_GPL vmlinux 0x8cf58342 device_register -EXPORT_SYMBOL_GPL vmlinux 0x8cf5dfac sysfs_remove_files -EXPORT_SYMBOL_GPL vmlinux 0x8d02c845 __fscrypt_prepare_lookup -EXPORT_SYMBOL_GPL vmlinux 0x8d170767 xfrm_local_error -EXPORT_SYMBOL_GPL vmlinux 0x8d172b4d phy_driver_is_genphy -EXPORT_SYMBOL_GPL vmlinux 0x8d1c3e64 i2c_new_client_device +EXPORT_SYMBOL_GPL vmlinux 0x8c8f252b subsys_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x8c97301a irq_chip_eoi_parent +EXPORT_SYMBOL_GPL vmlinux 0x8ca9e593 clockevents_register_device +EXPORT_SYMBOL_GPL vmlinux 0x8ccdc1ca __SCK__tp_func_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0x8cd3c7cd xenbus_map_ring_valloc +EXPORT_SYMBOL_GPL vmlinux 0x8cd50945 ipv6_dup_options +EXPORT_SYMBOL_GPL vmlinux 0x8cd768e8 sdio_retune_crc_enable +EXPORT_SYMBOL_GPL vmlinux 0x8cdc03bf ata_sff_exec_command +EXPORT_SYMBOL_GPL vmlinux 0x8cdd2103 devm_get_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x8ce0909e __mmdrop +EXPORT_SYMBOL_GPL vmlinux 0x8ce24fd2 class_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x8ced208f vfs_test_lock +EXPORT_SYMBOL_GPL vmlinux 0x8cf2441a fs_kobj +EXPORT_SYMBOL_GPL vmlinux 0x8d09b51b find_extend_vma +EXPORT_SYMBOL_GPL vmlinux 0x8d148ff5 add_to_page_cache_lru EXPORT_SYMBOL_GPL vmlinux 0x8d22bb58 iommu_group_alloc -EXPORT_SYMBOL_GPL vmlinux 0x8d2308f9 fwnode_property_read_u64_array -EXPORT_SYMBOL_GPL vmlinux 0x8d25fa02 switchdev_handle_fdb_add_to_device -EXPORT_SYMBOL_GPL vmlinux 0x8d2d1ace paste_selection -EXPORT_SYMBOL_GPL vmlinux 0x8d2f569f da9052_disable_irq_nosync EXPORT_SYMBOL_GPL vmlinux 0x8d3330b6 cpuacct_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x8d33f628 phy_pm_runtime_put_sync -EXPORT_SYMBOL_GPL vmlinux 0x8d3b2eba serdev_device_set_parity -EXPORT_SYMBOL_GPL vmlinux 0x8d5533e3 set_secondary_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x8d648f51 da903x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x8d6b0be7 __regmap_init_spi -EXPORT_SYMBOL_GPL vmlinux 0x8d717dc3 key_type_logon -EXPORT_SYMBOL_GPL vmlinux 0x8d720053 irq_chip_set_type_parent -EXPORT_SYMBOL_GPL vmlinux 0x8d72fd5c serdev_device_write_room +EXPORT_SYMBOL_GPL vmlinux 0x8d3695b7 mptcp_get_reset_option +EXPORT_SYMBOL_GPL vmlinux 0x8d45ce5e mptcp_token_get_sock +EXPORT_SYMBOL_GPL vmlinux 0x8d5053b0 __SCK__tp_func_tcp_bad_csum +EXPORT_SYMBOL_GPL vmlinux 0x8d573d23 virtio_config_changed +EXPORT_SYMBOL_GPL vmlinux 0x8d5ec4a7 wm8350_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0x8d71a410 md_bitmap_load +EXPORT_SYMBOL_GPL vmlinux 0x8d790269 trace_get_event_file EXPORT_SYMBOL_GPL vmlinux 0x8d7e3373 hwpoison_filter_dev_major EXPORT_SYMBOL_GPL vmlinux 0x8d88ee64 sbitmap_queue_wake_up -EXPORT_SYMBOL_GPL vmlinux 0x8d8a27c7 devlink_port_params_register -EXPORT_SYMBOL_GPL vmlinux 0x8d978e1b relay_open +EXPORT_SYMBOL_GPL vmlinux 0x8d8ff77b crypto_alloc_shash +EXPORT_SYMBOL_GPL vmlinux 0x8d91963b __devm_regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0x8da18c0a clk_hw_rate_is_protected EXPORT_SYMBOL_GPL vmlinux 0x8dafdded lwtunnel_valid_encap_type_attr -EXPORT_SYMBOL_GPL vmlinux 0x8db774d0 free_fib_info +EXPORT_SYMBOL_GPL vmlinux 0x8db9af78 acpi_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x8dc2e0d1 espintcp_queue_out +EXPORT_SYMBOL_GPL vmlinux 0x8dc9f77d pci_hp_remove_module_link +EXPORT_SYMBOL_GPL vmlinux 0x8dcd76c4 ata_eh_freeze_port EXPORT_SYMBOL_GPL vmlinux 0x8dd218b0 icc_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0x8dde0b64 cgroup_get_from_fd EXPORT_SYMBOL_GPL vmlinux 0x8de6817a acpi_dev_resource_address_space -EXPORT_SYMBOL_GPL vmlinux 0x8df10d6c devlink_port_param_value_changed -EXPORT_SYMBOL_GPL vmlinux 0x8e0a43ef usb_hcd_end_port_resume -EXPORT_SYMBOL_GPL vmlinux 0x8e237edf __traceiter_devlink_hwerr -EXPORT_SYMBOL_GPL vmlinux 0x8e2974b3 clk_hw_is_prepared -EXPORT_SYMBOL_GPL vmlinux 0x8e31cae8 cpufreq_dbs_governor_limits -EXPORT_SYMBOL_GPL vmlinux 0x8e37f5e5 shash_free_singlespawn_instance -EXPORT_SYMBOL_GPL vmlinux 0x8e38dab0 xenbus_dev_fatal +EXPORT_SYMBOL_GPL vmlinux 0x8deace0a dev_coredumpm +EXPORT_SYMBOL_GPL vmlinux 0x8dec25a4 addrconf_prefix_rcv_add_addr +EXPORT_SYMBOL_GPL vmlinux 0x8e10de69 rtc_update_irq +EXPORT_SYMBOL_GPL vmlinux 0x8e1d5b0c disk_uevent +EXPORT_SYMBOL_GPL vmlinux 0x8e1d7f01 device_wakeup_disable +EXPORT_SYMBOL_GPL vmlinux 0x8e2990c9 usb_set_interface +EXPORT_SYMBOL_GPL vmlinux 0x8e2f4a20 __platform_register_drivers +EXPORT_SYMBOL_GPL vmlinux 0x8e354625 fwnode_remove_software_node EXPORT_SYMBOL_GPL vmlinux 0x8e3d911b arch_phys_wc_index EXPORT_SYMBOL_GPL vmlinux 0x8e44823a sfp_select_interface +EXPORT_SYMBOL_GPL vmlinux 0x8e4a9074 pci_d3cold_disable EXPORT_SYMBOL_GPL vmlinux 0x8e4eb451 bpf_sk_storage_diag_free -EXPORT_SYMBOL_GPL vmlinux 0x8e5119d8 ata_sff_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x8e5a42ae cpufreq_dbs_governor_stop -EXPORT_SYMBOL_GPL vmlinux 0x8e60b016 dev_pm_qos_add_ancestor_request +EXPORT_SYMBOL_GPL vmlinux 0x8e6adebb xfrm_audit_policy_add EXPORT_SYMBOL_GPL vmlinux 0x8e6b1a9e net_selftest_get_count -EXPORT_SYMBOL_GPL vmlinux 0x8e6c5c9f pci_set_pcie_reset_state -EXPORT_SYMBOL_GPL vmlinux 0x8e6c7e56 devm_mbox_controller_register EXPORT_SYMBOL_GPL vmlinux 0x8e6fa8b5 apei_exec_pre_map_gars -EXPORT_SYMBOL_GPL vmlinux 0x8e70c256 ata_host_alloc_pinfo -EXPORT_SYMBOL_GPL vmlinux 0x8e75ab55 ip6_sk_dst_lookup_flow -EXPORT_SYMBOL_GPL vmlinux 0x8e7b7731 cpufreq_frequency_table_get_index -EXPORT_SYMBOL_GPL vmlinux 0x8e7c58d0 fuse_dev_alloc_install +EXPORT_SYMBOL_GPL vmlinux 0x8e6fd5b0 device_init_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x8e75940c __SCK__tp_func_xhci_dbg_quirks +EXPORT_SYMBOL_GPL vmlinux 0x8e79c245 pci_hp_deregister +EXPORT_SYMBOL_GPL vmlinux 0x8e7c1c25 crypto_register_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x8e803c6e __tracepoint_extlog_mem_event +EXPORT_SYMBOL_GPL vmlinux 0x8e89c64d tracepoint_probe_register_prio_may_exist +EXPORT_SYMBOL_GPL vmlinux 0x8e8f53b9 smpboot_unregister_percpu_thread EXPORT_SYMBOL_GPL vmlinux 0x8e92f7c4 static_key_slow_inc -EXPORT_SYMBOL_GPL vmlinux 0x8ea5ef0a ip_build_and_send_pkt +EXPORT_SYMBOL_GPL vmlinux 0x8ea45ef3 nvdimm_in_overwrite +EXPORT_SYMBOL_GPL vmlinux 0x8eab5523 class_destroy EXPORT_SYMBOL_GPL vmlinux 0x8ead800c user_free_preparse -EXPORT_SYMBOL_GPL vmlinux 0x8ebe45dd sk_msg_return_zero -EXPORT_SYMBOL_GPL vmlinux 0x8ec49829 xhci_check_bandwidth -EXPORT_SYMBOL_GPL vmlinux 0x8ec5877e device_property_read_string -EXPORT_SYMBOL_GPL vmlinux 0x8ec6c200 crypto_larval_kill -EXPORT_SYMBOL_GPL vmlinux 0x8ed535d3 iptunnel_metadata_reply -EXPORT_SYMBOL_GPL vmlinux 0x8ee09d03 yield_to +EXPORT_SYMBOL_GPL vmlinux 0x8ebbc941 xfrm_get_translator +EXPORT_SYMBOL_GPL vmlinux 0x8ebcaa2f nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0x8ed03b23 wm8350_gpio_config +EXPORT_SYMBOL_GPL vmlinux 0x8ed06dd8 kthread_queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0x8ed99773 subsys_interface_register +EXPORT_SYMBOL_GPL vmlinux 0x8edc560b fb_deferred_io_fsync EXPORT_SYMBOL_GPL vmlinux 0x8eed0fa2 sbitmap_get_shallow EXPORT_SYMBOL_GPL vmlinux 0x8eee3399 dax_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x8efbe463 ipv6_proxy_select_ident EXPORT_SYMBOL_GPL vmlinux 0x8effb505 phy_gbit_features -EXPORT_SYMBOL_GPL vmlinux 0x8f06c1fe efivar_entry_delete EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp -EXPORT_SYMBOL_GPL vmlinux 0x8f1d8c7e __SCK__tp_func_br_fdb_external_learn_add -EXPORT_SYMBOL_GPL vmlinux 0x8f28f9ff tps6586x_reads +EXPORT_SYMBOL_GPL vmlinux 0x8f2305ff xen_pci_frontend EXPORT_SYMBOL_GPL vmlinux 0x8f2eb429 kvm_arch_para_hints -EXPORT_SYMBOL_GPL vmlinux 0x8f35a40b serial8250_rpm_put -EXPORT_SYMBOL_GPL vmlinux 0x8f3c6b04 devm_gpiod_get_array -EXPORT_SYMBOL_GPL vmlinux 0x8f3db3d3 devres_add -EXPORT_SYMBOL_GPL vmlinux 0x8f3eef38 fixed_phy_register_with_gpiod +EXPORT_SYMBOL_GPL vmlinux 0x8f38353f ata_bmdma_port_start32 EXPORT_SYMBOL_GPL vmlinux 0x8f3ef401 srcu_batches_completed -EXPORT_SYMBOL_GPL vmlinux 0x8f415091 crypto_get_default_null_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x8f4f70b6 tty_release_struct -EXPORT_SYMBOL_GPL vmlinux 0x8f568a3f dst_blackhole_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x8f60b07a efivar_entry_find -EXPORT_SYMBOL_GPL vmlinux 0x8f68792b mddev_unlock +EXPORT_SYMBOL_GPL vmlinux 0x8f3f5594 class_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8f43215c devm_clk_hw_get_clk +EXPORT_SYMBOL_GPL vmlinux 0x8f4d4e6e pci_status_get_and_clear_errors +EXPORT_SYMBOL_GPL vmlinux 0x8f4d532b devlink_dpipe_entry_ctx_append +EXPORT_SYMBOL_GPL vmlinux 0x8f518448 ima_file_check +EXPORT_SYMBOL_GPL vmlinux 0x8f68fb0f regcache_sync_region EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x8f6f2455 spi_alloc_device EXPORT_SYMBOL_GPL vmlinux 0x8f786bee fs_umode_to_dtype -EXPORT_SYMBOL_GPL vmlinux 0x8f7aa35d devm_regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0x8f7a9bbe of_phy_put +EXPORT_SYMBOL_GPL vmlinux 0x8f7b2abc gov_attr_set_get EXPORT_SYMBOL_GPL vmlinux 0x8f7bd0a6 btree_init_mempool -EXPORT_SYMBOL_GPL vmlinux 0x8f7d8e45 sysfs_create_group -EXPORT_SYMBOL_GPL vmlinux 0x8f8bd118 iommu_unmap -EXPORT_SYMBOL_GPL vmlinux 0x8f970026 mmu_notifier_range_update_to_read_only -EXPORT_SYMBOL_GPL vmlinux 0x8fa73f06 ping_unhash +EXPORT_SYMBOL_GPL vmlinux 0x8f8871fe fwnode_create_software_node +EXPORT_SYMBOL_GPL vmlinux 0x8f8aa0e7 regulator_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0x8f8c7a93 crypto_stats_skcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x8f8d5e41 usb_enable_lpm EXPORT_SYMBOL_GPL vmlinux 0x8fa9d9e8 __SCT__tp_func_xdp_exception EXPORT_SYMBOL_GPL vmlinux 0x8faa800d acpi_cpc_valid -EXPORT_SYMBOL_GPL vmlinux 0x8fadaa0a regulator_map_voltage_pickable_linear_range -EXPORT_SYMBOL_GPL vmlinux 0x8fae7136 skb_to_sgvec_nomark +EXPORT_SYMBOL_GPL vmlinux 0x8fbc5847 em_dev_register_perf_domain EXPORT_SYMBOL_GPL vmlinux 0x8fc12788 software_node_unregister_node_group -EXPORT_SYMBOL_GPL vmlinux 0x8fc91561 regulator_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0x8fc9aee0 clk_hw_get_parent_by_index -EXPORT_SYMBOL_GPL vmlinux 0x8fda2e72 shash_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x8fe22c12 tty_port_register_device -EXPORT_SYMBOL_GPL vmlinux 0x8ff0e070 get_kernel_pages +EXPORT_SYMBOL_GPL vmlinux 0x8fdbbd0a regmap_get_max_register +EXPORT_SYMBOL_GPL vmlinux 0x8fefc0b7 msg_zerocopy_callback +EXPORT_SYMBOL_GPL vmlinux 0x8ff0312b power_supply_set_property EXPORT_SYMBOL_GPL vmlinux 0x8ff60436 mpi_ec_add_points +EXPORT_SYMBOL_GPL vmlinux 0x8ff71dc9 sk_setup_caps EXPORT_SYMBOL_GPL vmlinux 0x8ffb1df7 acpi_get_psd_map -EXPORT_SYMBOL_GPL vmlinux 0x8ffc76ad devfreq_event_set_event -EXPORT_SYMBOL_GPL vmlinux 0x90117d3c device_node_to_regmap -EXPORT_SYMBOL_GPL vmlinux 0x901bb903 pci_scan_child_bus -EXPORT_SYMBOL_GPL vmlinux 0x901d4e89 dmi_kobj +EXPORT_SYMBOL_GPL vmlinux 0x90059055 gpiochip_add_pin_range EXPORT_SYMBOL_GPL vmlinux 0x9024f443 mds_user_clear +EXPORT_SYMBOL_GPL vmlinux 0x9028351f __SCK__tp_func_pelt_irq_tp +EXPORT_SYMBOL_GPL vmlinux 0x90317a1e spi_write_then_read +EXPORT_SYMBOL_GPL vmlinux 0x90359476 __fscrypt_prepare_link EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move -EXPORT_SYMBOL_GPL vmlinux 0x904f64c2 trace_event_buffer_lock_reserve -EXPORT_SYMBOL_GPL vmlinux 0x9058feb5 msi_desc_to_pci_sysdata +EXPORT_SYMBOL_GPL vmlinux 0x90413bb4 devlink_dpipe_headers_register +EXPORT_SYMBOL_GPL vmlinux 0x904a3557 ata_pci_device_do_suspend +EXPORT_SYMBOL_GPL vmlinux 0x904ae825 devm_regmap_del_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x905b6f3a do_truncate +EXPORT_SYMBOL_GPL vmlinux 0x905ea808 rt_mutex_trylock +EXPORT_SYMBOL_GPL vmlinux 0x90672b6d dev_pm_opp_set_supported_hw EXPORT_SYMBOL_GPL vmlinux 0x90688bcd devlink_info_driver_name_put -EXPORT_SYMBOL_GPL vmlinux 0x9068919f sysfs_add_file_to_group -EXPORT_SYMBOL_GPL vmlinux 0x906a083b ipv6_dup_options -EXPORT_SYMBOL_GPL vmlinux 0x906b84c9 fsnotify_destroy_mark -EXPORT_SYMBOL_GPL vmlinux 0x9077d92c device_initialize -EXPORT_SYMBOL_GPL vmlinux 0x907b9775 cpufreq_generic_attr -EXPORT_SYMBOL_GPL vmlinux 0x90831dfe dm_internal_resume_fast EXPORT_SYMBOL_GPL vmlinux 0x9084b044 clear_page_erms -EXPORT_SYMBOL_GPL vmlinux 0x90895fb0 __fat_fs_error -EXPORT_SYMBOL_GPL vmlinux 0x9096e995 regulator_is_enabled_regmap -EXPORT_SYMBOL_GPL vmlinux 0x909ad89a usb_get_descriptor EXPORT_SYMBOL_GPL vmlinux 0x90a9d8cc hv_is_hyperv_initialized EXPORT_SYMBOL_GPL vmlinux 0x90ad66b1 software_node_unregister_nodes -EXPORT_SYMBOL_GPL vmlinux 0x90bf3a2b __devm_reset_control_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0x90c061c2 acpi_kobj -EXPORT_SYMBOL_GPL vmlinux 0x90c1dc21 pcc_mbox_free_channel EXPORT_SYMBOL_GPL vmlinux 0x90c8498c apei_exec_write_register EXPORT_SYMBOL_GPL vmlinux 0x90de0452 platform_thermal_package_notify EXPORT_SYMBOL_GPL vmlinux 0x90de72a9 register_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0x90defee6 __SCK__tp_func_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0x91061dc7 regulator_set_suspend_voltage +EXPORT_SYMBOL_GPL vmlinux 0x91066d7e ata_bmdma_start EXPORT_SYMBOL_GPL vmlinux 0x9107d224 __SCT__tp_func_arm_event -EXPORT_SYMBOL_GPL vmlinux 0x9109d67f gen10g_config_aneg EXPORT_SYMBOL_GPL vmlinux 0x910bdf6b trace_seq_vprintf -EXPORT_SYMBOL_GPL vmlinux 0x9115cb74 cpufreq_enable_fast_switch -EXPORT_SYMBOL_GPL vmlinux 0x911de32c dma_buf_mmap -EXPORT_SYMBOL_GPL vmlinux 0x9123d432 ata_pci_bmdma_prepare_host -EXPORT_SYMBOL_GPL vmlinux 0x912f02e5 devm_clk_bulk_get_optional -EXPORT_SYMBOL_GPL vmlinux 0x9140df14 device_reprobe -EXPORT_SYMBOL_GPL vmlinux 0x914741ab crypto_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x9153dd94 security_path_rmdir -EXPORT_SYMBOL_GPL vmlinux 0x91602ffc devm_regulator_register +EXPORT_SYMBOL_GPL vmlinux 0x91129b78 driver_find_device +EXPORT_SYMBOL_GPL vmlinux 0x914a5e69 __mmc_poll_for_busy +EXPORT_SYMBOL_GPL vmlinux 0x9164f41c ata_bmdma_status EXPORT_SYMBOL_GPL vmlinux 0x917d953b __SCT__tp_func_wbc_writepage -EXPORT_SYMBOL_GPL vmlinux 0x91853ca1 cpuidle_get_cpu_driver -EXPORT_SYMBOL_GPL vmlinux 0x91907edc crypto_dequeue_request +EXPORT_SYMBOL_GPL vmlinux 0x917f642e xfrm_dev_state_add +EXPORT_SYMBOL_GPL vmlinux 0x91839487 nexthop_find_by_id +EXPORT_SYMBOL_GPL vmlinux 0x91863c1d dma_resv_wait_timeout EXPORT_SYMBOL_GPL vmlinux 0x9194e18f xenbus_mkdir EXPORT_SYMBOL_GPL vmlinux 0x91955a9f start_poll_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0x919fb29f ata_sff_dma_pause -EXPORT_SYMBOL_GPL vmlinux 0x91a2d87c ata_bmdma_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x9198a565 inet6_destroy_sock +EXPORT_SYMBOL_GPL vmlinux 0x919d9d6c gnttab_pages_clear_private +EXPORT_SYMBOL_GPL vmlinux 0x91b082df spi_controller_suspend EXPORT_SYMBOL_GPL vmlinux 0x91b774a1 mpi_scanval EXPORT_SYMBOL_GPL vmlinux 0x91b9a4ba e820__mapped_any -EXPORT_SYMBOL_GPL vmlinux 0x91bb965e alloc_dax +EXPORT_SYMBOL_GPL vmlinux 0x91c27fd6 dma_resv_test_signaled EXPORT_SYMBOL_GPL vmlinux 0x91c6e5b0 pcap_to_irq EXPORT_SYMBOL_GPL vmlinux 0x91c9313c acpi_gpio_get_io_resource -EXPORT_SYMBOL_GPL vmlinux 0x91d57d03 __SCK__tp_func_sched_update_nr_running_tp +EXPORT_SYMBOL_GPL vmlinux 0x91dfedf3 tracing_cond_snapshot_data EXPORT_SYMBOL_GPL vmlinux 0x91ea8726 asn1_encode_boolean -EXPORT_SYMBOL_GPL vmlinux 0x91ed88c1 nvmem_cell_read_variable_le_u64 -EXPORT_SYMBOL_GPL vmlinux 0x91f3f3cb sched_set_normal -EXPORT_SYMBOL_GPL vmlinux 0x9209cccd pm_stay_awake -EXPORT_SYMBOL_GPL vmlinux 0x920bbbf6 mmc_app_cmd +EXPORT_SYMBOL_GPL vmlinux 0x91f1644a devm_regmap_field_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0x91f9f021 acpi_subsys_complete +EXPORT_SYMBOL_GPL vmlinux 0x91fe2877 synth_event_trace +EXPORT_SYMBOL_GPL vmlinux 0x91ff4ae0 dev_pm_genpd_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9201f538 pci_dev_unlock +EXPORT_SYMBOL_GPL vmlinux 0x920a60d6 ping_common_sendmsg EXPORT_SYMBOL_GPL vmlinux 0x920cc389 visitorl EXPORT_SYMBOL_GPL vmlinux 0x92141343 kvm_async_pf_task_wake -EXPORT_SYMBOL_GPL vmlinux 0x9216d96a device_add_software_node -EXPORT_SYMBOL_GPL vmlinux 0x921cff6f ata_dev_set_feature -EXPORT_SYMBOL_GPL vmlinux 0x9226bd72 gpiochip_get_desc EXPORT_SYMBOL_GPL vmlinux 0x92295424 clk_register_gate -EXPORT_SYMBOL_GPL vmlinux 0x922c68bc __traceiter_napi_poll -EXPORT_SYMBOL_GPL vmlinux 0x9236a5b1 dax_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0x92391d5d blk_mark_disk_dead EXPORT_SYMBOL_GPL vmlinux 0x9241b358 __static_key_slow_dec_deferred -EXPORT_SYMBOL_GPL vmlinux 0x92444605 to_software_node EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object -EXPORT_SYMBOL_GPL vmlinux 0x9255c004 power_supply_register -EXPORT_SYMBOL_GPL vmlinux 0x9255f6cc l3mdev_fib_table_by_index -EXPORT_SYMBOL_GPL vmlinux 0x926b3955 bsg_setup_queue -EXPORT_SYMBOL_GPL vmlinux 0x926bd7a0 power_supply_register_no_ws -EXPORT_SYMBOL_GPL vmlinux 0x9277ebc0 bd_link_disk_holder -EXPORT_SYMBOL_GPL vmlinux 0x927a43c8 sbitmap_queue_show -EXPORT_SYMBOL_GPL vmlinux 0x92a3dfbf gpiod_to_irq -EXPORT_SYMBOL_GPL vmlinux 0x92a9cf0c br_ip6_fragment -EXPORT_SYMBOL_GPL vmlinux 0x92afaed7 sysfs_remove_groups -EXPORT_SYMBOL_GPL vmlinux 0x92b17f87 phy_check_downshift +EXPORT_SYMBOL_GPL vmlinux 0x9275c6cd efivar_entry_add +EXPORT_SYMBOL_GPL vmlinux 0x9282c885 thermal_zone_get_zone_by_name +EXPORT_SYMBOL_GPL vmlinux 0x928c3a74 __traceiter_pelt_rt_tp +EXPORT_SYMBOL_GPL vmlinux 0x92a48c1b spi_setup EXPORT_SYMBOL_GPL vmlinux 0x92b8c78b hyperv_pcpu_output_arg -EXPORT_SYMBOL_GPL vmlinux 0x92c16447 sfp_register_socket -EXPORT_SYMBOL_GPL vmlinux 0x92d1afca usb_control_msg_send +EXPORT_SYMBOL_GPL vmlinux 0x92b93762 phy_modify_mmd EXPORT_SYMBOL_GPL vmlinux 0x92d31cfb fixed_phy_add +EXPORT_SYMBOL_GPL vmlinux 0x92daabc9 dma_vunmap_noncontiguous EXPORT_SYMBOL_GPL vmlinux 0x92db8f68 do_trace_rcu_torture_read -EXPORT_SYMBOL_GPL vmlinux 0x92e22e08 gpiod_get_optional -EXPORT_SYMBOL_GPL vmlinux 0x92e8e62d dma_free_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x92de0964 fscrypt_set_test_dummy_encryption EXPORT_SYMBOL_GPL vmlinux 0x92e8e9ab fsverity_enqueue_verify_work -EXPORT_SYMBOL_GPL vmlinux 0x92fa1391 __regmap_init_mmio_clk -EXPORT_SYMBOL_GPL vmlinux 0x93242ed6 ip_local_out +EXPORT_SYMBOL_GPL vmlinux 0x92f50a46 dax_copy_to_iter +EXPORT_SYMBOL_GPL vmlinux 0x93072756 gpiochip_irq_unmap +EXPORT_SYMBOL_GPL vmlinux 0x930b5084 of_hwspin_lock_get_id_byname +EXPORT_SYMBOL_GPL vmlinux 0x930db6ad led_trigger_remove +EXPORT_SYMBOL_GPL vmlinux 0x930f2e5b ip6_route_output_flags EXPORT_SYMBOL_GPL vmlinux 0x93255b2b ring_buffer_lock_reserve EXPORT_SYMBOL_GPL vmlinux 0x932c8d7a linear_range_get_value_array -EXPORT_SYMBOL_GPL vmlinux 0x932f84b3 devlink_params_publish +EXPORT_SYMBOL_GPL vmlinux 0x932fae68 battery_hook_unregister +EXPORT_SYMBOL_GPL vmlinux 0x933d719a __SCK__tp_func_pelt_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x933ec6e5 devm_spi_register_controller EXPORT_SYMBOL_GPL vmlinux 0x933f75e0 usb_unlink_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x93412381 syscon_regmap_lookup_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x9349ce2b is_current_mnt_ns +EXPORT_SYMBOL_GPL vmlinux 0x935a1ecc pci_host_probe +EXPORT_SYMBOL_GPL vmlinux 0x936071a0 kthread_unpark +EXPORT_SYMBOL_GPL vmlinux 0x93644f42 uart_handle_cts_change +EXPORT_SYMBOL_GPL vmlinux 0x936808d0 spi_finalize_current_message +EXPORT_SYMBOL_GPL vmlinux 0x93774c33 acpi_match_device +EXPORT_SYMBOL_GPL vmlinux 0x937b27e5 component_add EXPORT_SYMBOL_GPL vmlinux 0x9384cd49 ata_tf_from_fis -EXPORT_SYMBOL_GPL vmlinux 0x939d47bb iommu_register_device_fault_handler -EXPORT_SYMBOL_GPL vmlinux 0x93a2357f __SCK__tp_func_wbc_writepage -EXPORT_SYMBOL_GPL vmlinux 0x93a8d178 netdev_walk_all_lower_dev_rcu -EXPORT_SYMBOL_GPL vmlinux 0x93a918c7 irq_chip_unmask_parent +EXPORT_SYMBOL_GPL vmlinux 0x9387b616 regmap_write_async +EXPORT_SYMBOL_GPL vmlinux 0x9393bcd0 sdio_writeb_readb +EXPORT_SYMBOL_GPL vmlinux 0x939e413e dma_buf_attach +EXPORT_SYMBOL_GPL vmlinux 0x93b9e4b1 virtqueue_notify +EXPORT_SYMBOL_GPL vmlinux 0x93bb1a4e spi_get_device_id EXPORT_SYMBOL_GPL vmlinux 0x93c7edeb usb_find_common_endpoints +EXPORT_SYMBOL_GPL vmlinux 0x93cd744c rio_release_inb_pwrite EXPORT_SYMBOL_GPL vmlinux 0x93d1d424 gnttab_free_grant_references -EXPORT_SYMBOL_GPL vmlinux 0x93d21efb mmu_interval_notifier_remove +EXPORT_SYMBOL_GPL vmlinux 0x93d61ae0 gpiochip_get_desc EXPORT_SYMBOL_GPL vmlinux 0x93dc2586 pgprot_writethrough EXPORT_SYMBOL_GPL vmlinux 0x93edef07 devlink_health_report -EXPORT_SYMBOL_GPL vmlinux 0x93f10561 iommu_device_register EXPORT_SYMBOL_GPL vmlinux 0x93f55fe0 power_supply_batinfo_ocv2cap -EXPORT_SYMBOL_GPL vmlinux 0x94041010 regmap_raw_write -EXPORT_SYMBOL_GPL vmlinux 0x940b62f6 metadata_dst_free_percpu -EXPORT_SYMBOL_GPL vmlinux 0x9410ccfc debugfs_create_u8 EXPORT_SYMBOL_GPL vmlinux 0x941a3d4f clk_hw_unregister_fixed_rate EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put EXPORT_SYMBOL_GPL vmlinux 0x9424058f arch_haltpoll_disable EXPORT_SYMBOL_GPL vmlinux 0x9425bb34 nvmem_dev_name -EXPORT_SYMBOL_GPL vmlinux 0x942982a8 __SCK__tp_func_sched_util_est_cfs_tp -EXPORT_SYMBOL_GPL vmlinux 0x942da6e1 proc_create_net_single_write -EXPORT_SYMBOL_GPL vmlinux 0x942ff0ae ethnl_cable_test_fault_length +EXPORT_SYMBOL_GPL vmlinux 0x942de950 phy_check_downshift EXPORT_SYMBOL_GPL vmlinux 0x9430b198 trace_dump_stack +EXPORT_SYMBOL_GPL vmlinux 0x94323a3c irq_chip_get_parent_state +EXPORT_SYMBOL_GPL vmlinux 0x9434c4ae filemap_read EXPORT_SYMBOL_GPL vmlinux 0x9436e405 memory_group_register_dynamic +EXPORT_SYMBOL_GPL vmlinux 0x943ef08f __traceiter_neigh_cleanup_and_release EXPORT_SYMBOL_GPL vmlinux 0x943fc708 xen_setup_shutdown_event -EXPORT_SYMBOL_GPL vmlinux 0x945e6528 nf_checksum -EXPORT_SYMBOL_GPL vmlinux 0x94661271 irq_setup_alt_chip +EXPORT_SYMBOL_GPL vmlinux 0x9455d889 inet6_sk_rebuild_header +EXPORT_SYMBOL_GPL vmlinux 0x945b21f0 fib_info_nh_uses_dev EXPORT_SYMBOL_GPL vmlinux 0x946dd559 sha224_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x947565c1 rio_mport_get_physefb EXPORT_SYMBOL_GPL vmlinux 0x947b40c6 cpu_smt_possible -EXPORT_SYMBOL_GPL vmlinux 0x949200d9 component_del +EXPORT_SYMBOL_GPL vmlinux 0x9485d8c2 devm_rtc_allocate_device EXPORT_SYMBOL_GPL vmlinux 0x949b5176 devlink_region_snapshot_create EXPORT_SYMBOL_GPL vmlinux 0x949f7342 __alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0x94a6f82e get_device -EXPORT_SYMBOL_GPL vmlinux 0x94a9ab8f pwm_get -EXPORT_SYMBOL_GPL vmlinux 0x94ae90ff spi_mem_get_name -EXPORT_SYMBOL_GPL vmlinux 0x94b6b8b4 sdev_evt_send -EXPORT_SYMBOL_GPL vmlinux 0x94cab782 sata_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x94cdf784 __SCK__tp_func_block_bio_complete -EXPORT_SYMBOL_GPL vmlinux 0x94e2d57b blk_mq_start_stopped_hw_queue -EXPORT_SYMBOL_GPL vmlinux 0x94e49f25 xhci_add_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x94a2f8f3 pci_epc_unmap_addr +EXPORT_SYMBOL_GPL vmlinux 0x94a634df alloc_skb_for_msg +EXPORT_SYMBOL_GPL vmlinux 0x94a94b43 fsl_mc_device_group +EXPORT_SYMBOL_GPL vmlinux 0x94aba2c5 dm_table_device_name +EXPORT_SYMBOL_GPL vmlinux 0x94c13f2f led_trigger_register_simple +EXPORT_SYMBOL_GPL vmlinux 0x94cad89d crypto_grab_spawn +EXPORT_SYMBOL_GPL vmlinux 0x94d0bb20 devm_free_percpu +EXPORT_SYMBOL_GPL vmlinux 0x94d59384 irq_create_of_mapping +EXPORT_SYMBOL_GPL vmlinux 0x94d631a1 devm_pinctrl_register +EXPORT_SYMBOL_GPL vmlinux 0x94d7b99b gpiochip_free_own_desc +EXPORT_SYMBOL_GPL vmlinux 0x94ed2fb9 cpuidle_get_cpu_driver EXPORT_SYMBOL_GPL vmlinux 0x94ef4d05 cpci_hp_stop +EXPORT_SYMBOL_GPL vmlinux 0x94f2ec8d pci_user_read_config_byte +EXPORT_SYMBOL_GPL vmlinux 0x94fd2f9d crypto_register_shash EXPORT_SYMBOL_GPL vmlinux 0x9504df26 irq_wake_thread +EXPORT_SYMBOL_GPL vmlinux 0x9505d3e7 lwtunnel_encap_add_ops +EXPORT_SYMBOL_GPL vmlinux 0x9507cce9 regulator_set_ramp_delay_regmap +EXPORT_SYMBOL_GPL vmlinux 0x950ee92e pci_generic_config_read EXPORT_SYMBOL_GPL vmlinux 0x951a2773 crypto_has_alg -EXPORT_SYMBOL_GPL vmlinux 0x951c9143 fsverity_prepare_setattr +EXPORT_SYMBOL_GPL vmlinux 0x951bce1a blk_execute_rq_nowait EXPORT_SYMBOL_GPL vmlinux 0x952664c5 do_exit +EXPORT_SYMBOL_GPL vmlinux 0x95395740 hrtimer_sleeper_start_expires +EXPORT_SYMBOL_GPL vmlinux 0x953bb110 pinctrl_add_gpio_ranges +EXPORT_SYMBOL_GPL vmlinux 0x953cd110 powercap_unregister_zone EXPORT_SYMBOL_GPL vmlinux 0x953e1b9e ktime_get_real_seconds -EXPORT_SYMBOL_GPL vmlinux 0x9541cb41 set_task_ioprio -EXPORT_SYMBOL_GPL vmlinux 0x9554366c acomp_request_alloc +EXPORT_SYMBOL_GPL vmlinux 0x95402f74 cpuidle_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x9541a466 skb_to_sgvec_nomark +EXPORT_SYMBOL_GPL vmlinux 0x9546c572 cpci_hp_register_bus EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn -EXPORT_SYMBOL_GPL vmlinux 0x9565ca3a devm_pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0x955feecf devm_kfree EXPORT_SYMBOL_GPL vmlinux 0x956ac400 ring_buffer_dropped_events_cpu -EXPORT_SYMBOL_GPL vmlinux 0x9572e1e0 pci_epc_clear_bar -EXPORT_SYMBOL_GPL vmlinux 0x9578489c clk_hw_get_num_parents -EXPORT_SYMBOL_GPL vmlinux 0x9578a721 iomap_ioend_try_merge +EXPORT_SYMBOL_GPL vmlinux 0x957a93b5 pci_slots_kset +EXPORT_SYMBOL_GPL vmlinux 0x957c24a2 dst_blackhole_mtu EXPORT_SYMBOL_GPL vmlinux 0x95843030 mpi_ec_init +EXPORT_SYMBOL_GPL vmlinux 0x9585de24 devm_regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9586cc36 devm_kmemdup EXPORT_SYMBOL_GPL vmlinux 0x958df3ac zs_free -EXPORT_SYMBOL_GPL vmlinux 0x95904619 xfrm_audit_state_replay EXPORT_SYMBOL_GPL vmlinux 0x9593ef31 register_ftrace_export -EXPORT_SYMBOL_GPL vmlinux 0x95a576c8 vfio_group_get_external_user +EXPORT_SYMBOL_GPL vmlinux 0x959643d0 pm_generic_resume_noirq +EXPORT_SYMBOL_GPL vmlinux 0x95992cc4 serdev_device_write_buf +EXPORT_SYMBOL_GPL vmlinux 0x959cbe24 hvc_poll +EXPORT_SYMBOL_GPL vmlinux 0x95a0ce5f pci_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x95aaf6fd syscon_regmap_lookup_by_phandle_optional EXPORT_SYMBOL_GPL vmlinux 0x95bc9078 btree_free -EXPORT_SYMBOL_GPL vmlinux 0x95c2d325 pci_reset_bus -EXPORT_SYMBOL_GPL vmlinux 0x95d12968 devres_release +EXPORT_SYMBOL_GPL vmlinux 0x95c25095 percpu_free_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x95c4c09d unregister_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x95d8c0b7 platform_bus EXPORT_SYMBOL_GPL vmlinux 0x95d95a56 __srcu_read_lock -EXPORT_SYMBOL_GPL vmlinux 0x95dc8f93 serdev_device_close -EXPORT_SYMBOL_GPL vmlinux 0x95e2ecec vp_modern_get_status -EXPORT_SYMBOL_GPL vmlinux 0x95e94871 scsi_autopm_get_device +EXPORT_SYMBOL_GPL vmlinux 0x95e504b6 crypto_unregister_skciphers EXPORT_SYMBOL_GPL vmlinux 0x95ef1ccc dmi_memdev_size -EXPORT_SYMBOL_GPL vmlinux 0x95fa4bed regmap_get_raw_read_max +EXPORT_SYMBOL_GPL vmlinux 0x95efa4f6 rtc_read_alarm +EXPORT_SYMBOL_GPL vmlinux 0x95f1d5d2 acpi_dev_get_property +EXPORT_SYMBOL_GPL vmlinux 0x9603b33e ima_file_hash +EXPORT_SYMBOL_GPL vmlinux 0x9606d3c9 fat_update_time +EXPORT_SYMBOL_GPL vmlinux 0x960f4a86 synth_event_trace_end EXPORT_SYMBOL_GPL vmlinux 0x961286e0 ring_buffer_read_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0x96135fcc usb_role_switch_find_by_fwnode EXPORT_SYMBOL_GPL vmlinux 0x9615b005 hv_map_ioapic_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x961e6436 inet6_lookup EXPORT_SYMBOL_GPL vmlinux 0x9621d738 alarm_start_relative EXPORT_SYMBOL_GPL vmlinux 0x962523b1 kobj_sysfs_ops -EXPORT_SYMBOL_GPL vmlinux 0x96257d3b dm_table_set_type -EXPORT_SYMBOL_GPL vmlinux 0x962b00b7 serial8250_update_uartclk +EXPORT_SYMBOL_GPL vmlinux 0x962b8e64 event_triggers_call EXPORT_SYMBOL_GPL vmlinux 0x962c8ae1 usb_kill_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x964c6215 virtqueue_is_broken EXPORT_SYMBOL_GPL vmlinux 0x96554810 register_keyboard_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9667b84a acpi_subsys_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0x966a4912 gpiochip_relres_irq -EXPORT_SYMBOL_GPL vmlinux 0x96825217 pci_generic_config_read -EXPORT_SYMBOL_GPL vmlinux 0x96888444 pci_destroy_slot +EXPORT_SYMBOL_GPL vmlinux 0x966bc7ac irq_domain_create_simple +EXPORT_SYMBOL_GPL vmlinux 0x9676521a debugfs_create_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x9677e29c nf_queue_nf_hook_drop +EXPORT_SYMBOL_GPL vmlinux 0x96831560 to_nvdimm_bus EXPORT_SYMBOL_GPL vmlinux 0x9688b217 gnttab_batch_copy +EXPORT_SYMBOL_GPL vmlinux 0x968a8e3e dw_pcie_write_dbi +EXPORT_SYMBOL_GPL vmlinux 0x968e12e2 edac_device_add_device EXPORT_SYMBOL_GPL vmlinux 0x968f9a23 efivar_entry_iter_begin -EXPORT_SYMBOL_GPL vmlinux 0x96ac71c1 bpf_offload_dev_netdev_register -EXPORT_SYMBOL_GPL vmlinux 0x96ad897e platform_find_device_by_driver -EXPORT_SYMBOL_GPL vmlinux 0x96cc1522 mmu_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0x96eb642a genphy_c45_read_pma -EXPORT_SYMBOL_GPL vmlinux 0x96fc902e edac_pci_create_generic_ctl -EXPORT_SYMBOL_GPL vmlinux 0x96ffe9a2 of_icc_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0x96997b27 mbox_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x96a61af8 dw_pcie_own_conf_map_bus +EXPORT_SYMBOL_GPL vmlinux 0x96ac0893 __mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0x96ad683c l3mdev_link_scope_lookup +EXPORT_SYMBOL_GPL vmlinux 0x96b053a7 extcon_register_notifier_all +EXPORT_SYMBOL_GPL vmlinux 0x96e60575 dev_pm_opp_get_level +EXPORT_SYMBOL_GPL vmlinux 0x96eb62cc crypto_alloc_kpp +EXPORT_SYMBOL_GPL vmlinux 0x96fa332a phy_led_triggers_register EXPORT_SYMBOL_GPL vmlinux 0x9714e0bb ktime_get_raw EXPORT_SYMBOL_GPL vmlinux 0x9719bcfd pmc_atom_read -EXPORT_SYMBOL_GPL vmlinux 0x971ecb02 __blkg_prfill_u64 -EXPORT_SYMBOL_GPL vmlinux 0x9721f9db filemap_range_needs_writeback -EXPORT_SYMBOL_GPL vmlinux 0x9738a971 sched_trace_rq_nr_running -EXPORT_SYMBOL_GPL vmlinux 0x973d0f39 serdev_controller_alloc +EXPORT_SYMBOL_GPL vmlinux 0x973e1601 spi_split_transfers_maxsize +EXPORT_SYMBOL_GPL vmlinux 0x9751ae2a tcp_register_ulp +EXPORT_SYMBOL_GPL vmlinux 0x9753a059 rtnl_link_register EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same -EXPORT_SYMBOL_GPL vmlinux 0x975ef4b1 iomap_migrate_page +EXPORT_SYMBOL_GPL vmlinux 0x9757c393 devlink_port_attrs_set EXPORT_SYMBOL_GPL vmlinux 0x97623558 xas_create_range +EXPORT_SYMBOL_GPL vmlinux 0x97652472 virtqueue_add_inbuf +EXPORT_SYMBOL_GPL vmlinux 0x97768bb6 check_move_unevictable_pages +EXPORT_SYMBOL_GPL vmlinux 0x977a49ff sch_frag_xmit_hook +EXPORT_SYMBOL_GPL vmlinux 0x977bafcc security_path_truncate EXPORT_SYMBOL_GPL vmlinux 0x977be5c7 klist_iter_init_node -EXPORT_SYMBOL_GPL vmlinux 0x9797a179 sched_set_fifo_low -EXPORT_SYMBOL_GPL vmlinux 0x979aa8a0 strp_init -EXPORT_SYMBOL_GPL vmlinux 0x97a7e73d crypto_alloc_sync_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x97c3107e generic_online_page -EXPORT_SYMBOL_GPL vmlinux 0x97c35c53 crypto_unregister_akcipher -EXPORT_SYMBOL_GPL vmlinux 0x97c6e615 eventfd_fget +EXPORT_SYMBOL_GPL vmlinux 0x9799130e icc_link_destroy +EXPORT_SYMBOL_GPL vmlinux 0x97b919ef irq_domain_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0x97cbf9aa raw_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x97cebc36 mctrl_gpio_init_noauto +EXPORT_SYMBOL_GPL vmlinux 0x97d3220a regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x97dc7950 component_master_add_with_match EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent -EXPORT_SYMBOL_GPL vmlinux 0x97eb5760 mbox_flush -EXPORT_SYMBOL_GPL vmlinux 0x97f1457c pci_set_cacheline_size -EXPORT_SYMBOL_GPL vmlinux 0x98075d6a __irq_alloc_domain_generic_chips -EXPORT_SYMBOL_GPL vmlinux 0x9813669d pci_msi_prepare -EXPORT_SYMBOL_GPL vmlinux 0x981cb041 iomap_is_partially_uptodate -EXPORT_SYMBOL_GPL vmlinux 0x982dc301 edac_pci_alloc_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0x97e5648e wp_shared_mapping_range +EXPORT_SYMBOL_GPL vmlinux 0x97e8e3f0 fsverity_ioctl_measure +EXPORT_SYMBOL_GPL vmlinux 0x97ed4465 dev_pm_qos_expose_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0x97f73868 paste_selection +EXPORT_SYMBOL_GPL vmlinux 0x97fd4ccf ip_fib_metrics_init +EXPORT_SYMBOL_GPL vmlinux 0x97ffea5d xenbus_alloc_evtchn +EXPORT_SYMBOL_GPL vmlinux 0x9814f0e7 power_supply_unregister +EXPORT_SYMBOL_GPL vmlinux 0x981608a8 dev_pm_opp_find_level_ceil EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick -EXPORT_SYMBOL_GPL vmlinux 0x98374cf1 usb_debug_root -EXPORT_SYMBOL_GPL vmlinux 0x983d6681 inode_dax -EXPORT_SYMBOL_GPL vmlinux 0x9840881d badblocks_check -EXPORT_SYMBOL_GPL vmlinux 0x984a44d2 ata_port_wait_eh -EXPORT_SYMBOL_GPL vmlinux 0x984c168b l3mdev_ifindex_lookup_by_table_id -EXPORT_SYMBOL_GPL vmlinux 0x984cc335 fsverity_file_open -EXPORT_SYMBOL_GPL vmlinux 0x984d2579 rio_register_scan -EXPORT_SYMBOL_GPL vmlinux 0x984d8a4c vchan_init +EXPORT_SYMBOL_GPL vmlinux 0x983a7f12 crypto_comp_decompress +EXPORT_SYMBOL_GPL vmlinux 0x983ad100 usb_intf_get_dma_device +EXPORT_SYMBOL_GPL vmlinux 0x984aceab sdio_enable_func +EXPORT_SYMBOL_GPL vmlinux 0x984f64ed ncsi_start_dev EXPORT_SYMBOL_GPL vmlinux 0x98503a63 mpi_alloc EXPORT_SYMBOL_GPL vmlinux 0x985453e1 lease_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9854d287 ip6_append_data -EXPORT_SYMBOL_GPL vmlinux 0x98551af1 tty_prepare_flip_string -EXPORT_SYMBOL_GPL vmlinux 0x9859bb49 vfio_register_group_dev -EXPORT_SYMBOL_GPL vmlinux 0x98615482 wakeup_source_register +EXPORT_SYMBOL_GPL vmlinux 0x98736d06 fuse_dev_alloc +EXPORT_SYMBOL_GPL vmlinux 0x98753f6d mddev_init EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9889f344 pinctrl_select_default_state +EXPORT_SYMBOL_GPL vmlinux 0x9883c23a crypto_register_kpp EXPORT_SYMBOL_GPL vmlinux 0x988a1a00 sn_region_size +EXPORT_SYMBOL_GPL vmlinux 0x988ae11e find_get_pid +EXPORT_SYMBOL_GPL vmlinux 0x988b67df blk_mq_update_nr_hw_queues EXPORT_SYMBOL_GPL vmlinux 0x989074ff kmsg_dump_reason_str -EXPORT_SYMBOL_GPL vmlinux 0x98a7a1fb __traceiter_pelt_cfs_tp -EXPORT_SYMBOL_GPL vmlinux 0x98a8753a inet_csk_listen_start -EXPORT_SYMBOL_GPL vmlinux 0x98a8bd0b agp_remove_bridge +EXPORT_SYMBOL_GPL vmlinux 0x98a0da13 __SCK__tp_func_arm_event +EXPORT_SYMBOL_GPL vmlinux 0x98a408ba adp5520_unregister_notifier EXPORT_SYMBOL_GPL vmlinux 0x98b142fa blk_fill_rwbs -EXPORT_SYMBOL_GPL vmlinux 0x98bbd50f crypto_unregister_ahash -EXPORT_SYMBOL_GPL vmlinux 0x98bf75db reset_control_get_count -EXPORT_SYMBOL_GPL vmlinux 0x98c4df55 usb_amd_pt_check_port -EXPORT_SYMBOL_GPL vmlinux 0x98cd3d83 __fscrypt_encrypt_symlink -EXPORT_SYMBOL_GPL vmlinux 0x98ed0427 ata_sas_port_init +EXPORT_SYMBOL_GPL vmlinux 0x98b9d997 crypto_spawn_tfm +EXPORT_SYMBOL_GPL vmlinux 0x98bb466a fwnode_get_name +EXPORT_SYMBOL_GPL vmlinux 0x98bb81c0 of_css +EXPORT_SYMBOL_GPL vmlinux 0x98c7b0b4 __spi_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x98ca4aec phy_speed_up +EXPORT_SYMBOL_GPL vmlinux 0x98e46f4b crypto_register_alg +EXPORT_SYMBOL_GPL vmlinux 0x98e83651 spi_mem_dirmap_destroy EXPORT_SYMBOL_GPL vmlinux 0x98ee62b2 ring_buffer_record_disable_cpu +EXPORT_SYMBOL_GPL vmlinux 0x98efd52e kernfs_path_from_node EXPORT_SYMBOL_GPL vmlinux 0x98f4d306 hyperv_flush_guest_mapping EXPORT_SYMBOL_GPL vmlinux 0x98fa1e20 dm_get_reserved_rq_based_ios -EXPORT_SYMBOL_GPL vmlinux 0x98fc4f09 vfio_pci_core_register_device -EXPORT_SYMBOL_GPL vmlinux 0x99026858 usb_intf_get_dma_device -EXPORT_SYMBOL_GPL vmlinux 0x990bd512 pm_genpd_remove_device -EXPORT_SYMBOL_GPL vmlinux 0x9913372d blk_ksm_is_superset -EXPORT_SYMBOL_GPL vmlinux 0x99165fbc __vfs_setxattr_noperm +EXPORT_SYMBOL_GPL vmlinux 0x992b6f6c bpf_preload_ops EXPORT_SYMBOL_GPL vmlinux 0x9930f8a3 uv_bios_change_memprotect -EXPORT_SYMBOL_GPL vmlinux 0x99322e40 nvdimm_kobj +EXPORT_SYMBOL_GPL vmlinux 0x993e0717 vfio_pci_core_ioctl EXPORT_SYMBOL_GPL vmlinux 0x99430ba2 acpi_get_phys_id -EXPORT_SYMBOL_GPL vmlinux 0x994b2ac4 rio_inb_pwrite_handler -EXPORT_SYMBOL_GPL vmlinux 0x9950b35a bpf_offload_dev_match +EXPORT_SYMBOL_GPL vmlinux 0x99533403 inet_twsk_put +EXPORT_SYMBOL_GPL vmlinux 0x9957e529 fscrypt_set_bio_crypt_ctx_bh EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on EXPORT_SYMBOL_GPL vmlinux 0x9968aacb __audit_log_nfcfg -EXPORT_SYMBOL_GPL vmlinux 0x996c530b pci_epf_alloc_space -EXPORT_SYMBOL_GPL vmlinux 0x9980fde9 serdev_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0x996c47bf acomp_request_alloc +EXPORT_SYMBOL_GPL vmlinux 0x99748da7 usb_role_switch_register +EXPORT_SYMBOL_GPL vmlinux 0x997fd065 skcipher_walk_complete +EXPORT_SYMBOL_GPL vmlinux 0x998bce7c crypto_register_shashes EXPORT_SYMBOL_GPL vmlinux 0x998d79d6 x509_decode_time -EXPORT_SYMBOL_GPL vmlinux 0x999b33b6 validate_xmit_xfrm -EXPORT_SYMBOL_GPL vmlinux 0x99b931bd crypto_alloc_acomp_node -EXPORT_SYMBOL_GPL vmlinux 0x99c633a3 blk_req_needs_zone_write_lock -EXPORT_SYMBOL_GPL vmlinux 0x99d3c8fb scsi_queue_work +EXPORT_SYMBOL_GPL vmlinux 0x99956f24 gpiochip_generic_config +EXPORT_SYMBOL_GPL vmlinux 0x99960507 dev_pm_opp_get_opp_table +EXPORT_SYMBOL_GPL vmlinux 0x99a3f3dd pci_epf_add_vepf +EXPORT_SYMBOL_GPL vmlinux 0x99a42585 rio_set_port_lockout +EXPORT_SYMBOL_GPL vmlinux 0x99bd4229 kern_mount +EXPORT_SYMBOL_GPL vmlinux 0x99c30db6 pci_cfg_access_lock +EXPORT_SYMBOL_GPL vmlinux 0x99d3f0f2 usb_choose_configuration EXPORT_SYMBOL_GPL vmlinux 0x99dd730c page_reporting_unregister -EXPORT_SYMBOL_GPL vmlinux 0x99e6b1f1 regulator_disable +EXPORT_SYMBOL_GPL vmlinux 0x99e54830 blkcg_policy_unregister +EXPORT_SYMBOL_GPL vmlinux 0x99e68352 espintcp_push_skb +EXPORT_SYMBOL_GPL vmlinux 0x99e81e89 blk_queue_required_elevator_features EXPORT_SYMBOL_GPL vmlinux 0x99f018c4 nvmem_cell_read -EXPORT_SYMBOL_GPL vmlinux 0x99f1b6a9 clk_hw_register_composite +EXPORT_SYMBOL_GPL vmlinux 0x99f28211 devlink_param_unpublish EXPORT_SYMBOL_GPL vmlinux 0x99f2d00a sysfs_emit_at -EXPORT_SYMBOL_GPL vmlinux 0x9a03bbb1 serial8250_em485_stop_tx -EXPORT_SYMBOL_GPL vmlinux 0x9a053361 ncsi_start_dev -EXPORT_SYMBOL_GPL vmlinux 0x9a063106 call_switchdev_blocking_notifiers -EXPORT_SYMBOL_GPL vmlinux 0x9a0d2b2f regulator_map_voltage_iterate -EXPORT_SYMBOL_GPL vmlinux 0x9a0d2dc8 dev_attr_em_message -EXPORT_SYMBOL_GPL vmlinux 0x9a0dbb6a crypto_skcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x99f81ce1 pm_runtime_autosuspend_expiration +EXPORT_SYMBOL_GPL vmlinux 0x9a0a14f9 pci_ioremap_bar EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name +EXPORT_SYMBOL_GPL vmlinux 0x9a13a71a bpf_map_inc +EXPORT_SYMBOL_GPL vmlinux 0x9a13d105 crypto_shash_tfm_digest +EXPORT_SYMBOL_GPL vmlinux 0x9a16c4c4 acpi_device_uevent_modalias +EXPORT_SYMBOL_GPL vmlinux 0x9a18e83d devfreq_event_enable_edev EXPORT_SYMBOL_GPL vmlinux 0x9a23ea6b alarm_expires_remaining -EXPORT_SYMBOL_GPL vmlinux 0x9a2ce442 class_for_each_device -EXPORT_SYMBOL_GPL vmlinux 0x9a3f49f1 pm_clk_suspend -EXPORT_SYMBOL_GPL vmlinux 0x9a5845a1 iomap_zero_range +EXPORT_SYMBOL_GPL vmlinux 0x9a3615f4 pci_epc_raise_irq EXPORT_SYMBOL_GPL vmlinux 0x9a58dd2d trace_print_bitmask_seq EXPORT_SYMBOL_GPL vmlinux 0x9a5dce5c rhashtable_walk_start_check -EXPORT_SYMBOL_GPL vmlinux 0x9a8c672a crypto_shash_setkey -EXPORT_SYMBOL_GPL vmlinux 0x9a99f8b2 mmu_notifier_get_locked -EXPORT_SYMBOL_GPL vmlinux 0x9a9e0c89 crypto_stats_aead_encrypt -EXPORT_SYMBOL_GPL vmlinux 0x9a9e5a21 devlink_dpipe_table_counter_enabled -EXPORT_SYMBOL_GPL vmlinux 0x9aa1b030 crypto_comp_compress +EXPORT_SYMBOL_GPL vmlinux 0x9a68df7b usb_hcd_end_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x9a6ca887 devm_kmalloc +EXPORT_SYMBOL_GPL vmlinux 0x9a88e0a3 xenbus_dev_probe +EXPORT_SYMBOL_GPL vmlinux 0x9a90d70c pci_epc_mem_init +EXPORT_SYMBOL_GPL vmlinux 0x9aa12009 klp_get_state EXPORT_SYMBOL_GPL vmlinux 0x9aa71c2a efi_query_variable_store EXPORT_SYMBOL_GPL vmlinux 0x9aaac699 dev_pm_opp_cpumask_remove_table -EXPORT_SYMBOL_GPL vmlinux 0x9aaf9123 nf_queue_entry_get_refs -EXPORT_SYMBOL_GPL vmlinux 0x9ab8f171 blk_bio_list_merge -EXPORT_SYMBOL_GPL vmlinux 0x9ac012ce bdev_disk_changed +EXPORT_SYMBOL_GPL vmlinux 0x9ab7debd skb_defer_rx_timestamp EXPORT_SYMBOL_GPL vmlinux 0x9ac11b74 suspend_set_ops -EXPORT_SYMBOL_GPL vmlinux 0x9accc02a crypto_alloc_kpp -EXPORT_SYMBOL_GPL vmlinux 0x9add0cf4 tun_get_tx_ring +EXPORT_SYMBOL_GPL vmlinux 0x9ac32127 task_user_regset_view +EXPORT_SYMBOL_GPL vmlinux 0x9ac4ee1d ata_eh_analyze_ncq_error +EXPORT_SYMBOL_GPL vmlinux 0x9ad3b4d4 genphy_c45_read_pma EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty +EXPORT_SYMBOL_GPL vmlinux 0x9af3020c __phy_modify EXPORT_SYMBOL_GPL vmlinux 0x9af49514 icc_bulk_set_bw -EXPORT_SYMBOL_GPL vmlinux 0x9b063a07 device_bind_driver -EXPORT_SYMBOL_GPL vmlinux 0x9b070fa1 spi_statistics_add_transfer_stats -EXPORT_SYMBOL_GPL vmlinux 0x9b079574 sk_detach_filter -EXPORT_SYMBOL_GPL vmlinux 0x9b23f253 clean_acked_data_disable -EXPORT_SYMBOL_GPL vmlinux 0x9b2e2a87 irq_chip_set_affinity_parent -EXPORT_SYMBOL_GPL vmlinux 0x9b408124 devlink_port_unregister -EXPORT_SYMBOL_GPL vmlinux 0x9b41e621 dma_async_device_channel_unregister -EXPORT_SYMBOL_GPL vmlinux 0x9b449c19 acpi_gpiochip_free_interrupts -EXPORT_SYMBOL_GPL vmlinux 0x9b45f533 skb_zerocopy_headlen -EXPORT_SYMBOL_GPL vmlinux 0x9b4b18b8 sk_msg_is_readable -EXPORT_SYMBOL_GPL vmlinux 0x9b52d147 dma_buf_put +EXPORT_SYMBOL_GPL vmlinux 0x9b0624f0 blk_set_pm_only +EXPORT_SYMBOL_GPL vmlinux 0x9b0725e7 perf_event_create_kernel_counter +EXPORT_SYMBOL_GPL vmlinux 0x9b17a0c5 usb_autopm_put_interface +EXPORT_SYMBOL_GPL vmlinux 0x9b1c901a dev_attr_unload_heads +EXPORT_SYMBOL_GPL vmlinux 0x9b1dc0c2 __traceiter_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0x9b373f7f tps6586x_set_bits EXPORT_SYMBOL_GPL vmlinux 0x9b555c8c pm_suspend_default_s2idle -EXPORT_SYMBOL_GPL vmlinux 0x9b5cd6e4 xfrm_audit_state_add +EXPORT_SYMBOL_GPL vmlinux 0x9b55b65b acpi_device_get_match_data +EXPORT_SYMBOL_GPL vmlinux 0x9b57babd dev_pm_domain_attach_by_id EXPORT_SYMBOL_GPL vmlinux 0x9b698c42 ioasid_set_data -EXPORT_SYMBOL_GPL vmlinux 0x9b6be3c2 component_master_add_with_match EXPORT_SYMBOL_GPL vmlinux 0x9b6ec967 ring_buffer_size -EXPORT_SYMBOL_GPL vmlinux 0x9b787ca3 handle_level_irq -EXPORT_SYMBOL_GPL vmlinux 0x9b78e895 devm_regulator_irq_helper +EXPORT_SYMBOL_GPL vmlinux 0x9b8192d7 regulator_enable_regmap EXPORT_SYMBOL_GPL vmlinux 0x9b896724 devlink_param_value_str_fill +EXPORT_SYMBOL_GPL vmlinux 0x9b8baeb8 __intel_scu_ipc_register EXPORT_SYMBOL_GPL vmlinux 0x9b9071cb get_old_itimerspec32 EXPORT_SYMBOL_GPL vmlinux 0x9b92d16e pinctrl_gpio_set_config -EXPORT_SYMBOL_GPL vmlinux 0x9b98868a posix_acl_access_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0x9b95b416 regulator_set_active_discharge_regmap EXPORT_SYMBOL_GPL vmlinux 0x9b9f3648 pcibios_scan_specific_bus EXPORT_SYMBOL_GPL vmlinux 0x9ba2bb2b gpio_request_array +EXPORT_SYMBOL_GPL vmlinux 0x9baa10bd regulator_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x9babe942 synth_event_trace_start EXPORT_SYMBOL_GPL vmlinux 0x9bad141d hv_hypercall_pg -EXPORT_SYMBOL_GPL vmlinux 0x9bb619f4 rio_release_inb_mbox -EXPORT_SYMBOL_GPL vmlinux 0x9bc881db tcp_slow_start +EXPORT_SYMBOL_GPL vmlinux 0x9bbe5430 extcon_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x9bccddac net_ns_get_ownership EXPORT_SYMBOL_GPL vmlinux 0x9bcf9f7d housekeeping_enabled -EXPORT_SYMBOL_GPL vmlinux 0x9bddc4c9 pm_genpd_remove +EXPORT_SYMBOL_GPL vmlinux 0x9bd01736 pstore_unregister EXPORT_SYMBOL_GPL vmlinux 0x9be30d27 mhp_get_pluggable_range EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui -EXPORT_SYMBOL_GPL vmlinux 0x9bf1837e sk_msg_clone -EXPORT_SYMBOL_GPL vmlinux 0x9bfcbecd pm_clk_create -EXPORT_SYMBOL_GPL vmlinux 0x9c22800b devm_led_classdev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x9c399487 pinctrl_pm_select_idle_state -EXPORT_SYMBOL_GPL vmlinux 0x9c41ce3a sock_diag_destroy -EXPORT_SYMBOL_GPL vmlinux 0x9c4255f9 pci_platform_power_transition -EXPORT_SYMBOL_GPL vmlinux 0x9c6246dd sdio_memcpy_toio -EXPORT_SYMBOL_GPL vmlinux 0x9c678352 devm_usb_put_phy -EXPORT_SYMBOL_GPL vmlinux 0x9c6ae1a6 powercap_register_control_type +EXPORT_SYMBOL_GPL vmlinux 0x9bedf0ed acomp_request_free +EXPORT_SYMBOL_GPL vmlinux 0x9befc31a blk_queue_flag_test_and_set +EXPORT_SYMBOL_GPL vmlinux 0x9bf297f5 balloon_page_list_enqueue +EXPORT_SYMBOL_GPL vmlinux 0x9c1c5370 mptcp_pm_get_subflows_max +EXPORT_SYMBOL_GPL vmlinux 0x9c279d5b pinctrl_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x9c5351c2 irq_gc_mask_set_bit +EXPORT_SYMBOL_GPL vmlinux 0x9c689eb6 iptunnel_handle_offloads EXPORT_SYMBOL_GPL vmlinux 0x9c6febfc add_uevent_var -EXPORT_SYMBOL_GPL vmlinux 0x9c7efc72 skb_consume_udp EXPORT_SYMBOL_GPL vmlinux 0x9c803020 usb_phy_roothub_power_on -EXPORT_SYMBOL_GPL vmlinux 0x9c8f7e5c fsverity_ioctl_read_metadata +EXPORT_SYMBOL_GPL vmlinux 0x9c84d2ad software_node_fwnode EXPORT_SYMBOL_GPL vmlinux 0x9ca480cc clk_gate_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0x9ca4cf68 kill_pid_usb_asyncio -EXPORT_SYMBOL_GPL vmlinux 0x9cad70a0 inet6_csk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x9cadbc8a ping_err -EXPORT_SYMBOL_GPL vmlinux 0x9caedac3 __fscrypt_inode_uses_inline_crypto +EXPORT_SYMBOL_GPL vmlinux 0x9ca89e80 nvdimm_name +EXPORT_SYMBOL_GPL vmlinux 0x9cc0a42c input_device_enabled EXPORT_SYMBOL_GPL vmlinux 0x9cc4f70a register_pm_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9cc934ef pci_max_pasids -EXPORT_SYMBOL_GPL vmlinux 0x9cd0d022 __tracepoint_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0x9cd276f2 pci_hp_add EXPORT_SYMBOL_GPL vmlinux 0x9cd7551a rhashtable_walk_stop +EXPORT_SYMBOL_GPL vmlinux 0x9cd86d03 vfio_pci_core_err_handlers EXPORT_SYMBOL_GPL vmlinux 0x9cdeca56 register_kretprobes -EXPORT_SYMBOL_GPL vmlinux 0x9cdff707 crypto_stats_akcipher_decrypt -EXPORT_SYMBOL_GPL vmlinux 0x9ce3a004 virtqueue_get_buf_ctx +EXPORT_SYMBOL_GPL vmlinux 0x9ce7ba40 bpf_trace_run8 +EXPORT_SYMBOL_GPL vmlinux 0x9ce7f538 bus_rescan_devices EXPORT_SYMBOL_GPL vmlinux 0x9cf37c44 __iowrite32_copy +EXPORT_SYMBOL_GPL vmlinux 0x9cf47b8f genphy_c45_an_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0x9cf83f19 crypto_lookup_template +EXPORT_SYMBOL_GPL vmlinux 0x9cfa03f3 __SCK__tp_func_remove_device_from_group EXPORT_SYMBOL_GPL vmlinux 0x9d09e8ae ring_buffer_event_data EXPORT_SYMBOL_GPL vmlinux 0x9d14205c cr4_read_shadow -EXPORT_SYMBOL_GPL vmlinux 0x9d206b6c tty_kopen_shared -EXPORT_SYMBOL_GPL vmlinux 0x9d27ca06 bpf_prog_put -EXPORT_SYMBOL_GPL vmlinux 0x9d39a15e ehci_handshake -EXPORT_SYMBOL_GPL vmlinux 0x9d3c8003 nvdimm_bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9d1d96f5 tcp_rate_check_app_limited +EXPORT_SYMBOL_GPL vmlinux 0x9d2c2bea shash_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0x9d325d8d device_find_child EXPORT_SYMBOL_GPL vmlinux 0x9d4894c8 x2apic_mode -EXPORT_SYMBOL_GPL vmlinux 0x9d4c3452 fwnode_get_named_gpiod -EXPORT_SYMBOL_GPL vmlinux 0x9d50b891 vfio_pci_core_finish_enable -EXPORT_SYMBOL_GPL vmlinux 0x9d5ca8ee blk_execute_rq_nowait -EXPORT_SYMBOL_GPL vmlinux 0x9d784b79 perf_event_addr_filters_sync -EXPORT_SYMBOL_GPL vmlinux 0x9d7b9cee d_walk -EXPORT_SYMBOL_GPL vmlinux 0x9d8adef3 skb_tstamp_tx -EXPORT_SYMBOL_GPL vmlinux 0x9da08a8c __ata_change_queue_depth -EXPORT_SYMBOL_GPL vmlinux 0x9da87fc3 da9052_enable_irq -EXPORT_SYMBOL_GPL vmlinux 0x9da97fc6 pci_write_msi_msg -EXPORT_SYMBOL_GPL vmlinux 0x9db289c2 __SCK__tp_func_napi_poll -EXPORT_SYMBOL_GPL vmlinux 0x9dc3c9b0 tcp_reno_ssthresh -EXPORT_SYMBOL_GPL vmlinux 0x9deced58 sata_pmp_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x9dfaffb9 usb_role_switch_find_by_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x9dfbe335 do_unbind_con_driver +EXPORT_SYMBOL_GPL vmlinux 0x9d4d46cc i2c_client_type +EXPORT_SYMBOL_GPL vmlinux 0x9d6b1a7e tty_ldisc_flush +EXPORT_SYMBOL_GPL vmlinux 0x9d7ea7e6 acpi_dev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x9d88d8fc pwm_apply_state +EXPORT_SYMBOL_GPL vmlinux 0x9da74c4f sysfs_groups_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x9dabb8c4 thermal_zone_device_update +EXPORT_SYMBOL_GPL vmlinux 0x9dbd0045 devm_clk_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x9dc7117e gpiochip_line_is_valid +EXPORT_SYMBOL_GPL vmlinux 0x9dd08ee0 l3mdev_ifindex_lookup_by_table_id +EXPORT_SYMBOL_GPL vmlinux 0x9de05309 nd_blk_region_to_dimm +EXPORT_SYMBOL_GPL vmlinux 0x9de0b154 tpm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0x9def5e87 genphy_c45_read_link +EXPORT_SYMBOL_GPL vmlinux 0x9dfa51e7 clk_hw_round_rate EXPORT_SYMBOL_GPL vmlinux 0x9e005e6f cppc_get_perf_caps -EXPORT_SYMBOL_GPL vmlinux 0x9e1e6d0e usb_ep0_reinit -EXPORT_SYMBOL_GPL vmlinux 0x9e2b435c raw_unhash_sk -EXPORT_SYMBOL_GPL vmlinux 0x9e391dd5 __SCK__tp_func_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x9e212d3a tcp_bpf_sendmsg_redir EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field EXPORT_SYMBOL_GPL vmlinux 0x9e523753 tracepoint_srcu -EXPORT_SYMBOL_GPL vmlinux 0x9e53e58e xdp_return_frame_bulk -EXPORT_SYMBOL_GPL vmlinux 0x9e5b3c8d tracepoint_probe_unregister -EXPORT_SYMBOL_GPL vmlinux 0x9e5b7a09 do_xdp_generic -EXPORT_SYMBOL_GPL vmlinux 0x9e679818 devm_phy_put -EXPORT_SYMBOL_GPL vmlinux 0x9e8444f5 hvc_remove -EXPORT_SYMBOL_GPL vmlinux 0x9e98e6d3 dm_accept_partial_bio -EXPORT_SYMBOL_GPL vmlinux 0x9ec8cae3 ehci_reset +EXPORT_SYMBOL_GPL vmlinux 0x9e5cdc0b raw_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x9e88b1e4 clk_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x9e8c3f4e ip6_route_lookup +EXPORT_SYMBOL_GPL vmlinux 0x9e8c81aa crypto_unregister_shash +EXPORT_SYMBOL_GPL vmlinux 0x9ebf86ea efivar_entry_size EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9eeaaf66 pci_disable_pri EXPORT_SYMBOL_GPL vmlinux 0x9eebdde7 mpi_point_new -EXPORT_SYMBOL_GPL vmlinux 0x9ef21fce ata_sas_tport_add -EXPORT_SYMBOL_GPL vmlinux 0x9f01ee87 vfio_register_iommu_driver -EXPORT_SYMBOL_GPL vmlinux 0x9f0863be devm_clk_unregister -EXPORT_SYMBOL_GPL vmlinux 0x9f17c252 blk_mq_flush_busy_ctxs +EXPORT_SYMBOL_GPL vmlinux 0x9ef508d9 __SCK__tp_func_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x9f05426f class_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x9f19bc3e sched_show_task EXPORT_SYMBOL_GPL vmlinux 0x9f223fe4 __tracepoint_xdp_exception -EXPORT_SYMBOL_GPL vmlinux 0x9f2b0f52 efivars_register -EXPORT_SYMBOL_GPL vmlinux 0x9f3fd7e4 nfnl_ct_hook -EXPORT_SYMBOL_GPL vmlinux 0x9f438043 devlink_resource_occ_get_register +EXPORT_SYMBOL_GPL vmlinux 0x9f3991bf gnttab_page_cache_init +EXPORT_SYMBOL_GPL vmlinux 0x9f43962c vfs_cancel_lock +EXPORT_SYMBOL_GPL vmlinux 0x9f440c15 devlink_resource_occ_get_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9f45ec9f bd_link_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0x9f49bde1 fwnode_graph_get_next_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x9f4b7d65 pci_epc_multi_mem_init EXPORT_SYMBOL_GPL vmlinux 0x9f4c4aa0 spi_delay_to_ns -EXPORT_SYMBOL_GPL vmlinux 0x9f556b1d device_release_driver -EXPORT_SYMBOL_GPL vmlinux 0x9f58e161 irq_create_fwspec_mapping -EXPORT_SYMBOL_GPL vmlinux 0x9f7b7c63 fscrypt_ioctl_get_nonce -EXPORT_SYMBOL_GPL vmlinux 0x9f8cad9a sysfs_create_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x9f8d5aec regulator_set_mode -EXPORT_SYMBOL_GPL vmlinux 0x9f90e6d4 devm_request_pci_bus_resources -EXPORT_SYMBOL_GPL vmlinux 0x9f988c43 inet6_hash -EXPORT_SYMBOL_GPL vmlinux 0x9fa19945 crypto_unregister_acomp -EXPORT_SYMBOL_GPL vmlinux 0x9fb26676 usb_driver_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0x9f63d6e8 devm_irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x9f659193 tcp_get_syncookie_mss +EXPORT_SYMBOL_GPL vmlinux 0x9f745d4d mddev_init_writes_pending +EXPORT_SYMBOL_GPL vmlinux 0x9f87d8cd wait_on_page_writeback_killable +EXPORT_SYMBOL_GPL vmlinux 0x9f9849b1 synth_event_add_val EXPORT_SYMBOL_GPL vmlinux 0x9fbfebab erst_write -EXPORT_SYMBOL_GPL vmlinux 0x9fc988f0 regulator_suspend_enable EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x9fd7bebe udp_abort +EXPORT_SYMBOL_GPL vmlinux 0x9fe2f3d0 pci_epf_remove_vepf EXPORT_SYMBOL_GPL vmlinux 0x9fe899b7 get_cpu_idle_time EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm -EXPORT_SYMBOL_GPL vmlinux 0x9febd5d7 crypto_stats_rng_generate -EXPORT_SYMBOL_GPL vmlinux 0xa003f234 pm_clk_destroy +EXPORT_SYMBOL_GPL vmlinux 0x9fed11cc pci_bridge_secondary_bus_reset +EXPORT_SYMBOL_GPL vmlinux 0x9ff4d89d sock_map_unhash +EXPORT_SYMBOL_GPL vmlinux 0x9ff903cb pci_enable_pasid +EXPORT_SYMBOL_GPL vmlinux 0xa005ec06 pwmchip_remove EXPORT_SYMBOL_GPL vmlinux 0xa00624b5 srcu_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xa0157e06 devm_extcon_dev_free -EXPORT_SYMBOL_GPL vmlinux 0xa017c451 tty_buffer_lock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xa018e819 netlink_add_tap EXPORT_SYMBOL_GPL vmlinux 0xa01a8d9b nd_cmd_bus_desc -EXPORT_SYMBOL_GPL vmlinux 0xa01caa26 iommu_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa02b4275 ata_sas_port_resume -EXPORT_SYMBOL_GPL vmlinux 0xa035f0df scsi_host_complete_all_commands -EXPORT_SYMBOL_GPL vmlinux 0xa04958cc crypto_register_acomps -EXPORT_SYMBOL_GPL vmlinux 0xa04c4631 devm_hwspin_lock_request +EXPORT_SYMBOL_GPL vmlinux 0xa01bb933 dm_suspended +EXPORT_SYMBOL_GPL vmlinux 0xa022f6bc spi_mem_get_name +EXPORT_SYMBOL_GPL vmlinux 0xa0262dfc of_led_get +EXPORT_SYMBOL_GPL vmlinux 0xa0307135 regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xa032234f usb_unlocked_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xa03ec83d pinctrl_remove_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0xa0418428 tpm_try_get_ops +EXPORT_SYMBOL_GPL vmlinux 0xa04e0d13 devm_clk_bulk_get_optional EXPORT_SYMBOL_GPL vmlinux 0xa04f945a cpus_read_lock -EXPORT_SYMBOL_GPL vmlinux 0xa0551ebb usb_get_urb +EXPORT_SYMBOL_GPL vmlinux 0xa0529b1e __traceiter_br_fdb_external_learn_add +EXPORT_SYMBOL_GPL vmlinux 0xa0704136 acpi_register_gsi +EXPORT_SYMBOL_GPL vmlinux 0xa07acfd4 devlink_port_register +EXPORT_SYMBOL_GPL vmlinux 0xa07ced88 sdio_readl EXPORT_SYMBOL_GPL vmlinux 0xa080c5e5 smp_call_function_single_async -EXPORT_SYMBOL_GPL vmlinux 0xa089e6c1 hwmon_device_register -EXPORT_SYMBOL_GPL vmlinux 0xa08a4935 fb_deferred_io_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xa08568fa simple_attr_read EXPORT_SYMBOL_GPL vmlinux 0xa090478a arch_has_restricted_virtio_memory_access -EXPORT_SYMBOL_GPL vmlinux 0xa0a54eae inet_csk_addr2sockaddr -EXPORT_SYMBOL_GPL vmlinux 0xa0b35ebe ping_recvmsg -EXPORT_SYMBOL_GPL vmlinux 0xa0b3e15b umd_cleanup_helper +EXPORT_SYMBOL_GPL vmlinux 0xa0bd4eca __SCK__tp_func_error_report_end EXPORT_SYMBOL_GPL vmlinux 0xa0c0f1d7 __SCT__tp_func_neigh_timer_handler -EXPORT_SYMBOL_GPL vmlinux 0xa0c5e8ce tpm_put_ops -EXPORT_SYMBOL_GPL vmlinux 0xa0cbb810 dev_queue_xmit_nit EXPORT_SYMBOL_GPL vmlinux 0xa0d3456d nr_swap_pages -EXPORT_SYMBOL_GPL vmlinux 0xa0d7f758 xfrm_unregister_translator EXPORT_SYMBOL_GPL vmlinux 0xa0d81b76 __SCT__tp_func_devlink_hwmsg -EXPORT_SYMBOL_GPL vmlinux 0xa0da48e8 __traceiter_devlink_hwmsg -EXPORT_SYMBOL_GPL vmlinux 0xa0e3062a debugfs_file_get -EXPORT_SYMBOL_GPL vmlinux 0xa0e522b1 split_page +EXPORT_SYMBOL_GPL vmlinux 0xa0d93702 gpiod_put EXPORT_SYMBOL_GPL vmlinux 0xa0e671d8 __SCT__tp_func_sched_update_nr_running_tp -EXPORT_SYMBOL_GPL vmlinux 0xa0f54036 pci_test_config_bits -EXPORT_SYMBOL_GPL vmlinux 0xa0f9826e edac_device_handle_ue_count -EXPORT_SYMBOL_GPL vmlinux 0xa104b33b ip6_input +EXPORT_SYMBOL_GPL vmlinux 0xa0fcda69 skb_complete_wifi_ack +EXPORT_SYMBOL_GPL vmlinux 0xa10e41cb serdev_device_open EXPORT_SYMBOL_GPL vmlinux 0xa11216be xen_store_domain_type -EXPORT_SYMBOL_GPL vmlinux 0xa112a29c serial8250_em485_destroy -EXPORT_SYMBOL_GPL vmlinux 0xa1163467 icc_node_del -EXPORT_SYMBOL_GPL vmlinux 0xa11f0df4 serial8250_rx_chars +EXPORT_SYMBOL_GPL vmlinux 0xa119ef24 virtqueue_enable_cb_delayed +EXPORT_SYMBOL_GPL vmlinux 0xa139b741 perf_event_enable EXPORT_SYMBOL_GPL vmlinux 0xa156a1f2 erst_get_record_id_end EXPORT_SYMBOL_GPL vmlinux 0xa1691b63 xas_find_marked EXPORT_SYMBOL_GPL vmlinux 0xa16deb13 sbitmap_resize -EXPORT_SYMBOL_GPL vmlinux 0xa16fdb1e of_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0xa17ef5d6 fb_deferred_io_open -EXPORT_SYMBOL_GPL vmlinux 0xa1808014 devfreq_event_get_event -EXPORT_SYMBOL_GPL vmlinux 0xa1989894 devm_regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xa171f808 br_fdb_test_addr_hook +EXPORT_SYMBOL_GPL vmlinux 0xa17a6b5f rtc_set_alarm +EXPORT_SYMBOL_GPL vmlinux 0xa17b8aed __devm_clk_hw_register_divider +EXPORT_SYMBOL_GPL vmlinux 0xa1957cde pci_user_write_config_dword +EXPORT_SYMBOL_GPL vmlinux 0xa198256f iommu_sva_get_pasid +EXPORT_SYMBOL_GPL vmlinux 0xa198b83f ata_std_bios_param +EXPORT_SYMBOL_GPL vmlinux 0xa1a7d781 dev_pm_qos_remove_notifier EXPORT_SYMBOL_GPL vmlinux 0xa1a97623 start_poll_synchronize_srcu -EXPORT_SYMBOL_GPL vmlinux 0xa1bb687f check_move_unevictable_pages -EXPORT_SYMBOL_GPL vmlinux 0xa1d71ae7 iommu_report_device_fault +EXPORT_SYMBOL_GPL vmlinux 0xa1ad4f3a driver_create_file +EXPORT_SYMBOL_GPL vmlinux 0xa1d6701b __tracepoint_pelt_rt_tp EXPORT_SYMBOL_GPL vmlinux 0xa1d8004a videomode_from_timing -EXPORT_SYMBOL_GPL vmlinux 0xa1d98ab9 ata_sff_irq_on EXPORT_SYMBOL_GPL vmlinux 0xa1ed9c8b add_hwgenerator_randomness -EXPORT_SYMBOL_GPL vmlinux 0xa1f1975e ima_file_hash -EXPORT_SYMBOL_GPL vmlinux 0xa2093b10 mctrl_gpio_init_noauto +EXPORT_SYMBOL_GPL vmlinux 0xa1fae87a __clocksource_update_freq_scale EXPORT_SYMBOL_GPL vmlinux 0xa20d01ba __trace_bprintk -EXPORT_SYMBOL_GPL vmlinux 0xa211a048 ata_bmdma_irq_clear -EXPORT_SYMBOL_GPL vmlinux 0xa218bcfa irq_find_matching_fwspec -EXPORT_SYMBOL_GPL vmlinux 0xa24364f2 sock_map_unhash -EXPORT_SYMBOL_GPL vmlinux 0xa257c2f0 nvdimm_volatile_region_create +EXPORT_SYMBOL_GPL vmlinux 0xa2198abb desc_to_gpio +EXPORT_SYMBOL_GPL vmlinux 0xa220c2c0 pin_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0xa2263536 __nvdimm_create +EXPORT_SYMBOL_GPL vmlinux 0xa2375c1b crypto_unregister_scomp +EXPORT_SYMBOL_GPL vmlinux 0xa23dff67 platform_add_devices +EXPORT_SYMBOL_GPL vmlinux 0xa250fa63 acpi_subsys_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0xa25886de fuse_do_open +EXPORT_SYMBOL_GPL vmlinux 0xa25c847f bpf_offload_dev_match +EXPORT_SYMBOL_GPL vmlinux 0xa26a6908 __udp_gso_segment EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested -EXPORT_SYMBOL_GPL vmlinux 0xa27dde68 usb_phy_set_charger_state -EXPORT_SYMBOL_GPL vmlinux 0xa280c67d dev_pm_opp_set_rate -EXPORT_SYMBOL_GPL vmlinux 0xa28c761a __tracepoint_br_fdb_update -EXPORT_SYMBOL_GPL vmlinux 0xa291b397 vp_modern_set_features -EXPORT_SYMBOL_GPL vmlinux 0xa2ae090e __tracepoint_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0xa2727bc4 led_trigger_rename_static +EXPORT_SYMBOL_GPL vmlinux 0xa2752e26 ata_cable_40wire +EXPORT_SYMBOL_GPL vmlinux 0xa28d4777 __fscrypt_inode_uses_inline_crypto EXPORT_SYMBOL_GPL vmlinux 0xa2af54b3 irq_from_evtchn -EXPORT_SYMBOL_GPL vmlinux 0xa2b39314 devm_bitmap_zalloc -EXPORT_SYMBOL_GPL vmlinux 0xa2b52fe8 __static_call_update +EXPORT_SYMBOL_GPL vmlinux 0xa2b5203f __traceiter_rpm_resume EXPORT_SYMBOL_GPL vmlinux 0xa2b99209 alarm_start -EXPORT_SYMBOL_GPL vmlinux 0xa2bd0bb0 fscrypt_set_context -EXPORT_SYMBOL_GPL vmlinux 0xa2be05a4 __of_reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0xa2cbf9cc dev_pm_qos_expose_flags +EXPORT_SYMBOL_GPL vmlinux 0xa2bddace __hwspin_lock_timeout +EXPORT_SYMBOL_GPL vmlinux 0xa2c9772b devlink_rate_nodes_destroy +EXPORT_SYMBOL_GPL vmlinux 0xa2cd3bbf pci_intx +EXPORT_SYMBOL_GPL vmlinux 0xa2d0b59d mmio_stale_data_clear +EXPORT_SYMBOL_GPL vmlinux 0xa2d68d05 do_splice_from +EXPORT_SYMBOL_GPL vmlinux 0xa2d7eecf device_phy_find_device EXPORT_SYMBOL_GPL vmlinux 0xa2e1b3ef trace_printk_init_buffers -EXPORT_SYMBOL_GPL vmlinux 0xa2f3c3b2 irq_domain_free_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xa2e8575e input_ff_erase EXPORT_SYMBOL_GPL vmlinux 0xa2f7487f hv_is_hibernation_supported -EXPORT_SYMBOL_GPL vmlinux 0xa3077483 rtnl_put_cacheinfo -EXPORT_SYMBOL_GPL vmlinux 0xa33b8fec mctrl_gpio_free -EXPORT_SYMBOL_GPL vmlinux 0xa33c4519 ata_port_freeze -EXPORT_SYMBOL_GPL vmlinux 0xa34bc15d blkdev_report_zones -EXPORT_SYMBOL_GPL vmlinux 0xa34dc930 usb_put_dev -EXPORT_SYMBOL_GPL vmlinux 0xa35381a1 device_remove_properties -EXPORT_SYMBOL_GPL vmlinux 0xa35777b6 fat_flush_inodes -EXPORT_SYMBOL_GPL vmlinux 0xa358c884 security_inode_permission -EXPORT_SYMBOL_GPL vmlinux 0xa35e6aa5 md_new_event +EXPORT_SYMBOL_GPL vmlinux 0xa2fcfb85 input_ff_upload +EXPORT_SYMBOL_GPL vmlinux 0xa2fe5d1c ata_bmdma32_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xa303bd12 get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0xa312a6f9 rio_mport_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0xa314695e __tracepoint_neigh_cleanup_and_release +EXPORT_SYMBOL_GPL vmlinux 0xa31863de virtqueue_get_desc_addr +EXPORT_SYMBOL_GPL vmlinux 0xa31cbf1b transport_setup_device +EXPORT_SYMBOL_GPL vmlinux 0xa320ceec spi_register_controller +EXPORT_SYMBOL_GPL vmlinux 0xa341d4ad tracing_snapshot_cond +EXPORT_SYMBOL_GPL vmlinux 0xa34ddc54 led_trigger_set EXPORT_SYMBOL_GPL vmlinux 0xa36f50fb is_binary_blacklisted -EXPORT_SYMBOL_GPL vmlinux 0xa37eee56 icc_disable +EXPORT_SYMBOL_GPL vmlinux 0xa379e80f nfs42_ssc_unregister EXPORT_SYMBOL_GPL vmlinux 0xa38602cd drain_workqueue EXPORT_SYMBOL_GPL vmlinux 0xa389a49a profile_event_register EXPORT_SYMBOL_GPL vmlinux 0xa38a9f71 get_itimerspec64 -EXPORT_SYMBOL_GPL vmlinux 0xa391290d __tracepoint_neigh_update_done -EXPORT_SYMBOL_GPL vmlinux 0xa394b2e9 devm_gpiod_put -EXPORT_SYMBOL_GPL vmlinux 0xa39f3ce6 crypto_alloc_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xa38c4cdc gpiod_get_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xa3948f6e md_kick_rdev_from_array +EXPORT_SYMBOL_GPL vmlinux 0xa395235b __SCK__tp_func_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0xa39786f1 nf_queue_entry_get_refs EXPORT_SYMBOL_GPL vmlinux 0xa3a04602 btree_geo64 -EXPORT_SYMBOL_GPL vmlinux 0xa3a12017 get_net_ns_by_fd -EXPORT_SYMBOL_GPL vmlinux 0xa3ad42ea dma_buf_pin -EXPORT_SYMBOL_GPL vmlinux 0xa3af36c9 pci_epc_map_addr +EXPORT_SYMBOL_GPL vmlinux 0xa3b83ea2 edac_mc_handle_error EXPORT_SYMBOL_GPL vmlinux 0xa3b958ce reset_hung_task_detector -EXPORT_SYMBOL_GPL vmlinux 0xa3c9de4c smpboot_unregister_percpu_thread -EXPORT_SYMBOL_GPL vmlinux 0xa3e72aba __put_net -EXPORT_SYMBOL_GPL vmlinux 0xa3ebbea0 acpi_create_platform_device +EXPORT_SYMBOL_GPL vmlinux 0xa3beb304 crypto_alloc_acomp_node +EXPORT_SYMBOL_GPL vmlinux 0xa3c4bac4 dev_pm_opp_set_opp +EXPORT_SYMBOL_GPL vmlinux 0xa3d07665 task_cputime_adjusted +EXPORT_SYMBOL_GPL vmlinux 0xa3d3dfc9 __serdev_device_driver_register +EXPORT_SYMBOL_GPL vmlinux 0xa3eb495a __SCK__tp_func_sched_util_est_se_tp EXPORT_SYMBOL_GPL vmlinux 0xa3ece414 freezer_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xa3f065e3 css_next_descendant_pre +EXPORT_SYMBOL_GPL vmlinux 0xa3ee1060 __efivar_entry_get EXPORT_SYMBOL_GPL vmlinux 0xa3f12f69 __crypto_xor -EXPORT_SYMBOL_GPL vmlinux 0xa3ff99a8 regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xa3f9793c sysfs_add_link_to_group +EXPORT_SYMBOL_GPL vmlinux 0xa3faffdc gpiochip_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0xa4019668 irq_chip_ack_parent EXPORT_SYMBOL_GPL vmlinux 0xa4031b7f sfp_parse_port -EXPORT_SYMBOL_GPL vmlinux 0xa4108545 alloc_page_buffers +EXPORT_SYMBOL_GPL vmlinux 0xa4063913 bio_clone_blkg_association +EXPORT_SYMBOL_GPL vmlinux 0xa40f5dc8 md_rdev_init EXPORT_SYMBOL_GPL vmlinux 0xa410a295 devlink_region_destroy -EXPORT_SYMBOL_GPL vmlinux 0xa42ac8d8 tps65912_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0xa4347bdc iomap_seek_hole -EXPORT_SYMBOL_GPL vmlinux 0xa43979d0 blk_mq_freeze_queue +EXPORT_SYMBOL_GPL vmlinux 0xa41471b7 sdio_retune_hold_now +EXPORT_SYMBOL_GPL vmlinux 0xa41858f4 devlink_free +EXPORT_SYMBOL_GPL vmlinux 0xa41d3e76 devm_namespace_enable +EXPORT_SYMBOL_GPL vmlinux 0xa423966c ipv4_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xa42963e9 platform_irq_count +EXPORT_SYMBOL_GPL vmlinux 0xa43fe9a6 pm_clk_suspend +EXPORT_SYMBOL_GPL vmlinux 0xa444c32f __tracepoint_sched_util_est_cfs_tp EXPORT_SYMBOL_GPL vmlinux 0xa44a1307 interval_tree_iter_first +EXPORT_SYMBOL_GPL vmlinux 0xa44aef81 netif_carrier_event 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 0xa462d5a6 __SCT__tp_func_sched_overutilized_tp -EXPORT_SYMBOL_GPL vmlinux 0xa4715234 adp5520_clr_bits -EXPORT_SYMBOL_GPL vmlinux 0xa4771082 pci_status_get_and_clear_errors +EXPORT_SYMBOL_GPL vmlinux 0xa46c26cb usb_set_device_state EXPORT_SYMBOL_GPL vmlinux 0xa48196c8 kdb_poll_idx -EXPORT_SYMBOL_GPL vmlinux 0xa4a5d26f dev_set_name +EXPORT_SYMBOL_GPL vmlinux 0xa4877f9b regulator_set_current_limit +EXPORT_SYMBOL_GPL vmlinux 0xa48f1b56 bpf_trace_run5 +EXPORT_SYMBOL_GPL vmlinux 0xa49621a0 serial8250_do_startup EXPORT_SYMBOL_GPL vmlinux 0xa4ab7c1c ring_buffer_overruns +EXPORT_SYMBOL_GPL vmlinux 0xa4acb628 get_cpu_device +EXPORT_SYMBOL_GPL vmlinux 0xa4af532d dev_pm_enable_wake_irq EXPORT_SYMBOL_GPL vmlinux 0xa4b07fe7 ring_buffer_change_overwrite EXPORT_SYMBOL_GPL vmlinux 0xa4c00324 asn1_encode_octet_string -EXPORT_SYMBOL_GPL vmlinux 0xa4c1d160 extcon_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xa4cc9af9 blk_queue_max_zone_append_sectors -EXPORT_SYMBOL_GPL vmlinux 0xa4cf233d tty_port_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0xa4e19d29 wbt_enable_default +EXPORT_SYMBOL_GPL vmlinux 0xa4c4ef3f cpufreq_unregister_governor EXPORT_SYMBOL_GPL vmlinux 0xa4eb5793 sbitmap_weight -EXPORT_SYMBOL_GPL vmlinux 0xa4fda741 device_remove_bin_file -EXPORT_SYMBOL_GPL vmlinux 0xa5077e15 sysfs_remove_file_ns -EXPORT_SYMBOL_GPL vmlinux 0xa51c9bb6 __traceiter_rpm_idle -EXPORT_SYMBOL_GPL vmlinux 0xa52300de icc_set_tag -EXPORT_SYMBOL_GPL vmlinux 0xa52386df devm_hwspin_lock_register +EXPORT_SYMBOL_GPL vmlinux 0xa4f5dc96 __of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0xa4f6f6bc trace_array_put +EXPORT_SYMBOL_GPL vmlinux 0xa5108db7 dax_layout_busy_page_range +EXPORT_SYMBOL_GPL vmlinux 0xa51301c5 device_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xa514a309 dw_pcie_read_dbi +EXPORT_SYMBOL_GPL vmlinux 0xa52b7d08 rtnl_put_cacheinfo +EXPORT_SYMBOL_GPL vmlinux 0xa52dcc8e ata_noop_qc_prep EXPORT_SYMBOL_GPL vmlinux 0xa531471e clk_save_context -EXPORT_SYMBOL_GPL vmlinux 0xa537772c crypto_unregister_algs -EXPORT_SYMBOL_GPL vmlinux 0xa5434afc rio_release_dma -EXPORT_SYMBOL_GPL vmlinux 0xa557709a spi_controller_resume -EXPORT_SYMBOL_GPL vmlinux 0xa573c3cc iommu_fwspec_init -EXPORT_SYMBOL_GPL vmlinux 0xa5766d05 pci_enable_pcie_error_reporting -EXPORT_SYMBOL_GPL vmlinux 0xa57a5d33 sdio_f0_writeb -EXPORT_SYMBOL_GPL vmlinux 0xa57fbd73 lwtunnel_output -EXPORT_SYMBOL_GPL vmlinux 0xa582cf2a ata_sff_busy_sleep -EXPORT_SYMBOL_GPL vmlinux 0xa594c76f ata_scsi_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0xa563a1dd tcp_set_state +EXPORT_SYMBOL_GPL vmlinux 0xa5747890 devm_pm_opp_set_clkname +EXPORT_SYMBOL_GPL vmlinux 0xa574ed03 of_pwm_xlate_with_flags +EXPORT_SYMBOL_GPL vmlinux 0xa5810036 dummy_con +EXPORT_SYMBOL_GPL vmlinux 0xa5864dba i2c_dw_prepare_clk EXPORT_SYMBOL_GPL vmlinux 0xa5a1793e unregister_ftrace_function -EXPORT_SYMBOL_GPL vmlinux 0xa5aa503c irq_get_irq_data -EXPORT_SYMBOL_GPL vmlinux 0xa5b2648c mptcp_pm_get_subflows_max -EXPORT_SYMBOL_GPL vmlinux 0xa5b3250b crypto_hash_alg_has_setkey +EXPORT_SYMBOL_GPL vmlinux 0xa5ae7a7b debugfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0xa5b1d14e __hwspin_unlock EXPORT_SYMBOL_GPL vmlinux 0xa5bda8a1 efi_capsule_supported -EXPORT_SYMBOL_GPL vmlinux 0xa5c6ccd8 elv_register -EXPORT_SYMBOL_GPL vmlinux 0xa5ca2573 blk_trace_startstop -EXPORT_SYMBOL_GPL vmlinux 0xa5cd454e gpiochip_populate_parent_fwspec_twocell +EXPORT_SYMBOL_GPL vmlinux 0xa5bdaaf8 led_trigger_register EXPORT_SYMBOL_GPL vmlinux 0xa5d7c388 pstore_type_to_name -EXPORT_SYMBOL_GPL vmlinux 0xa5eea2bb virtqueue_enable_cb_prepare +EXPORT_SYMBOL_GPL vmlinux 0xa5e3757c synth_event_add_next_val +EXPORT_SYMBOL_GPL vmlinux 0xa5e51986 vfio_unregister_iommu_driver +EXPORT_SYMBOL_GPL vmlinux 0xa5e66c4e crypto_stats_get +EXPORT_SYMBOL_GPL vmlinux 0xa5ef2e5d __xdp_build_skb_from_frame EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full -EXPORT_SYMBOL_GPL vmlinux 0xa5f48d29 nf_hook_entries_delete_raw -EXPORT_SYMBOL_GPL vmlinux 0xa5fd3e1e skb_clone_tx_timestamp -EXPORT_SYMBOL_GPL vmlinux 0xa6053280 tpm_chip_start -EXPORT_SYMBOL_GPL vmlinux 0xa612c646 sysfs_update_groups -EXPORT_SYMBOL_GPL vmlinux 0xa61f3188 clk_gate_restore_context -EXPORT_SYMBOL_GPL vmlinux 0xa62137c6 transport_setup_device -EXPORT_SYMBOL_GPL vmlinux 0xa644d285 fuse_conn_destroy -EXPORT_SYMBOL_GPL vmlinux 0xa654c10b nf_queue -EXPORT_SYMBOL_GPL vmlinux 0xa658ffa3 ata_dummy_port_info -EXPORT_SYMBOL_GPL vmlinux 0xa65c9b83 vfio_device_get_from_dev -EXPORT_SYMBOL_GPL vmlinux 0xa662434f __vfs_removexattr_locked -EXPORT_SYMBOL_GPL vmlinux 0xa67f4752 dm_get_queue_limits +EXPORT_SYMBOL_GPL vmlinux 0xa5f6b6ee devlink_dpipe_table_register +EXPORT_SYMBOL_GPL vmlinux 0xa66a097d dm_get_md +EXPORT_SYMBOL_GPL vmlinux 0xa681b235 pinctrl_put EXPORT_SYMBOL_GPL vmlinux 0xa68bdef9 __srcu_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0xa693e1d3 serdev_device_remove +EXPORT_SYMBOL_GPL vmlinux 0xa69489c7 rio_register_driver EXPORT_SYMBOL_GPL vmlinux 0xa6a088b7 fscrypt_match_name +EXPORT_SYMBOL_GPL vmlinux 0xa6a1df6c acpi_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0xa6a56d3b class_for_each_device EXPORT_SYMBOL_GPL vmlinux 0xa6b06f65 ata_sff_queue_work EXPORT_SYMBOL_GPL vmlinux 0xa6b21ef2 dpm_suspend_end -EXPORT_SYMBOL_GPL vmlinux 0xa6cb4947 devm_fwnode_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0xa6cd2df0 phy_modify_changed -EXPORT_SYMBOL_GPL vmlinux 0xa6d66021 mmc_poll_for_busy EXPORT_SYMBOL_GPL vmlinux 0xa6e1a69d kick_all_cpus_sync -EXPORT_SYMBOL_GPL vmlinux 0xa6f23fc0 genphy_c45_an_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0xa6fef336 trace_array_init_printk +EXPORT_SYMBOL_GPL vmlinux 0xa70693d9 da903x_update EXPORT_SYMBOL_GPL vmlinux 0xa709c835 fib6_info_destroy_rcu -EXPORT_SYMBOL_GPL vmlinux 0xa710c076 gpiochip_line_is_valid EXPORT_SYMBOL_GPL vmlinux 0xa7127da7 mce_unregister_injector_chain +EXPORT_SYMBOL_GPL vmlinux 0xa71e3f6c cpufreq_dbs_governor_init EXPORT_SYMBOL_GPL vmlinux 0xa7218eba irq_set_affinity -EXPORT_SYMBOL_GPL vmlinux 0xa7310f0b tps6586x_read +EXPORT_SYMBOL_GPL vmlinux 0xa725273f __usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0xa72bcfa8 led_trigger_unregister_simple EXPORT_SYMBOL_GPL vmlinux 0xa731f387 nl_table_lock -EXPORT_SYMBOL_GPL vmlinux 0xa73620c9 mptcp_pm_get_add_addr_accept_max -EXPORT_SYMBOL_GPL vmlinux 0xa73706c4 __traceiter_sched_util_est_cfs_tp -EXPORT_SYMBOL_GPL vmlinux 0xa742fd66 __kthread_should_park -EXPORT_SYMBOL_GPL vmlinux 0xa74870c9 acpi_dev_suspend -EXPORT_SYMBOL_GPL vmlinux 0xa767a457 thermal_zone_bind_cooling_device -EXPORT_SYMBOL_GPL vmlinux 0xa76f782f crypto_register_skcipher -EXPORT_SYMBOL_GPL vmlinux 0xa771ff4e vchan_tx_submit -EXPORT_SYMBOL_GPL vmlinux 0xa772216c set_cpus_allowed_ptr -EXPORT_SYMBOL_GPL vmlinux 0xa77cb5f4 pci_restore_msi_state -EXPORT_SYMBOL_GPL vmlinux 0xa77d31f9 pinctrl_dev_get_name -EXPORT_SYMBOL_GPL vmlinux 0xa79f48af devlink_resource_register -EXPORT_SYMBOL_GPL vmlinux 0xa7a45822 ipv4_redirect -EXPORT_SYMBOL_GPL vmlinux 0xa7aaf2ff spi_mem_adjust_op_size +EXPORT_SYMBOL_GPL vmlinux 0xa7385c66 tpm_pm_suspend +EXPORT_SYMBOL_GPL vmlinux 0xa73b4838 crypto_mod_get +EXPORT_SYMBOL_GPL vmlinux 0xa7464fe7 __put_task_struct +EXPORT_SYMBOL_GPL vmlinux 0xa755661e vp_modern_get_status +EXPORT_SYMBOL_GPL vmlinux 0xa7657cd6 platform_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0xa7684d67 pci_common_swizzle +EXPORT_SYMBOL_GPL vmlinux 0xa77bf0e8 crypto_unregister_aeads +EXPORT_SYMBOL_GPL vmlinux 0xa78254dd pci_enable_rom +EXPORT_SYMBOL_GPL vmlinux 0xa7a5bb23 fsnotify_put_group +EXPORT_SYMBOL_GPL vmlinux 0xa7bca50f device_find_child_by_name EXPORT_SYMBOL_GPL vmlinux 0xa7cba284 housekeeping_any_cpu -EXPORT_SYMBOL_GPL vmlinux 0xa7ea8570 intel_pmic_install_opregion_handler -EXPORT_SYMBOL_GPL vmlinux 0xa806b0a2 ohci_suspend -EXPORT_SYMBOL_GPL vmlinux 0xa81c285c sdio_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0xa8405626 __traceiter_pelt_rt_tp +EXPORT_SYMBOL_GPL vmlinux 0xa7cd6699 inverse_translate +EXPORT_SYMBOL_GPL vmlinux 0xa7ced458 regulator_get_mode +EXPORT_SYMBOL_GPL vmlinux 0xa7e6554e iommu_sva_bind_device +EXPORT_SYMBOL_GPL vmlinux 0xa7f72651 usb_driver_claim_interface +EXPORT_SYMBOL_GPL vmlinux 0xa8187eca __udp_enqueue_schedule_skb +EXPORT_SYMBOL_GPL vmlinux 0xa81bb429 device_rename +EXPORT_SYMBOL_GPL vmlinux 0xa81fd41b sk_msg_free +EXPORT_SYMBOL_GPL vmlinux 0xa8283d7d iommu_sva_find +EXPORT_SYMBOL_GPL vmlinux 0xa830a6ec tty_standard_install +EXPORT_SYMBOL_GPL vmlinux 0xa836969c dma_need_sync +EXPORT_SYMBOL_GPL vmlinux 0xa839876a devm_pwmchip_add +EXPORT_SYMBOL_GPL vmlinux 0xa839c9f1 crypto_rng_reset +EXPORT_SYMBOL_GPL vmlinux 0xa83ffe36 power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0xa8513b8b relay_open EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xa87237c0 crypto_register_instance -EXPORT_SYMBOL_GPL vmlinux 0xa87b08e8 usb_hcd_pci_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xa88a83f4 strp_done -EXPORT_SYMBOL_GPL vmlinux 0xa88e12ea usb_altnum_to_altsetting -EXPORT_SYMBOL_GPL vmlinux 0xa8a29054 __SCK__tp_func_io_page_fault -EXPORT_SYMBOL_GPL vmlinux 0xa8a359d2 __SCK__tp_func_tcp_bad_csum -EXPORT_SYMBOL_GPL vmlinux 0xa8bc9cdf thermal_cooling_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa8bcf36b find_asymmetric_key -EXPORT_SYMBOL_GPL vmlinux 0xa8c30df8 sock_map_close -EXPORT_SYMBOL_GPL vmlinux 0xa8cfd412 regmap_update_bits_base -EXPORT_SYMBOL_GPL vmlinux 0xa8e18b7d tcp_is_ulp_esp -EXPORT_SYMBOL_GPL vmlinux 0xa904a09d devfreq_event_remove_edev -EXPORT_SYMBOL_GPL vmlinux 0xa9078185 sysfs_merge_group -EXPORT_SYMBOL_GPL vmlinux 0xa90a63a2 dst_cache_set_ip6 -EXPORT_SYMBOL_GPL vmlinux 0xa910ff71 scsi_host_busy_iter +EXPORT_SYMBOL_GPL vmlinux 0xa85c65bf platform_device_register +EXPORT_SYMBOL_GPL vmlinux 0xa85e5a8c usb_get_urb +EXPORT_SYMBOL_GPL vmlinux 0xa85ea807 crypto_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0xa862b819 fat_dir_empty +EXPORT_SYMBOL_GPL vmlinux 0xa8728456 __netpoll_free +EXPORT_SYMBOL_GPL vmlinux 0xa8757a76 register_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0xa87fb320 vp_modern_set_queue_enable +EXPORT_SYMBOL_GPL vmlinux 0xa881370b cpufreq_cpu_get +EXPORT_SYMBOL_GPL vmlinux 0xa88abb76 __traceiter_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0xa89c02d4 usb_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0xa8a6d88f nf_ipv6_ops +EXPORT_SYMBOL_GPL vmlinux 0xa8a92f92 dw8250_setup_port +EXPORT_SYMBOL_GPL vmlinux 0xa8c114fb spi_mem_adjust_op_size +EXPORT_SYMBOL_GPL vmlinux 0xa8c2a610 devlink_dpipe_table_counter_enabled +EXPORT_SYMBOL_GPL vmlinux 0xa8d89003 __regmap_init +EXPORT_SYMBOL_GPL vmlinux 0xa8da793f __tracepoint_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0xa8f82ad4 vring_del_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0xa902e43d iommu_map_sg +EXPORT_SYMBOL_GPL vmlinux 0xa9112e33 regmap_check_range_table EXPORT_SYMBOL_GPL vmlinux 0xa9126bff hpet_set_rtc_irq_bit -EXPORT_SYMBOL_GPL vmlinux 0xa916708a devm_regmap_field_bulk_free EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds -EXPORT_SYMBOL_GPL vmlinux 0xa9452f76 sysfs_add_link_to_group -EXPORT_SYMBOL_GPL vmlinux 0xa9487748 pci_epc_multi_mem_init -EXPORT_SYMBOL_GPL vmlinux 0xa96b973c md_bitmap_copy_from_slot +EXPORT_SYMBOL_GPL vmlinux 0xa946c3d8 device_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0xa94f22cc vfs_getxattr_alloc +EXPORT_SYMBOL_GPL vmlinux 0xa95125be trace_output_call +EXPORT_SYMBOL_GPL vmlinux 0xa96304b1 devlink_unregister EXPORT_SYMBOL_GPL vmlinux 0xa96e8b4e hv_setup_vmbus_handler -EXPORT_SYMBOL_GPL vmlinux 0xa9731a6a mbox_client_txdone +EXPORT_SYMBOL_GPL vmlinux 0xa971542b crypto_register_templates +EXPORT_SYMBOL_GPL vmlinux 0xa9804a42 regmap_field_bulk_alloc +EXPORT_SYMBOL_GPL vmlinux 0xa982ec8d devm_reset_control_array_get EXPORT_SYMBOL_GPL vmlinux 0xa9854364 umc_normaddr_to_sysaddr -EXPORT_SYMBOL_GPL vmlinux 0xa98e2c86 sysfs_break_active_protection +EXPORT_SYMBOL_GPL vmlinux 0xa9902d59 __traceiter_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0xa994fcde __pm_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0xa9988a9b __traceiter_xdp_bulk_tx +EXPORT_SYMBOL_GPL vmlinux 0xa99ba294 da9055_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0xa99ca074 edac_pci_handle_npe EXPORT_SYMBOL_GPL vmlinux 0xa99ef899 devlink_fmsg_bool_pair_put -EXPORT_SYMBOL_GPL vmlinux 0xa9c736f4 __vfs_removexattr_noperm -EXPORT_SYMBOL_GPL vmlinux 0xa9defbb0 uprobe_register_refctr +EXPORT_SYMBOL_GPL vmlinux 0xa9a200c9 efivars_kobject +EXPORT_SYMBOL_GPL vmlinux 0xa9b16fec pci_disable_rom +EXPORT_SYMBOL_GPL vmlinux 0xa9b7953b rio_unregister_scan +EXPORT_SYMBOL_GPL vmlinux 0xa9ccda21 kthread_cancel_delayed_work_sync +EXPORT_SYMBOL_GPL vmlinux 0xa9d57816 __auxiliary_device_add +EXPORT_SYMBOL_GPL vmlinux 0xa9d7681a blk_insert_cloned_request EXPORT_SYMBOL_GPL vmlinux 0xa9e18049 task_handoff_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa9e856d3 sysfs_create_file_ns -EXPORT_SYMBOL_GPL vmlinux 0xa9eaa352 iommu_sva_unbind_device -EXPORT_SYMBOL_GPL vmlinux 0xaa0a9230 i2c_adapter_type -EXPORT_SYMBOL_GPL vmlinux 0xaa16c1d8 synth_event_add_next_val -EXPORT_SYMBOL_GPL vmlinux 0xaa198d79 fsnotify -EXPORT_SYMBOL_GPL vmlinux 0xaa1c0da3 ata_scsi_slave_destroy +EXPORT_SYMBOL_GPL vmlinux 0xa9f2f49a devlink_port_attrs_pci_vf_set +EXPORT_SYMBOL_GPL vmlinux 0xa9f61ab9 rio_route_clr_table +EXPORT_SYMBOL_GPL vmlinux 0xaa1716c1 ip6_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0xaa22f9f9 tpm_chip_register EXPORT_SYMBOL_GPL vmlinux 0xaa230f88 perf_unregister_guest_info_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xaa28569e dev_pm_opp_register_set_opp_helper -EXPORT_SYMBOL_GPL vmlinux 0xaa28bda0 irq_gc_mask_clr_bit -EXPORT_SYMBOL_GPL vmlinux 0xaa403c18 l3mdev_fib_table_rcu +EXPORT_SYMBOL_GPL vmlinux 0xaa25ba4f devm_add_action +EXPORT_SYMBOL_GPL vmlinux 0xaa350709 ata_port_abort +EXPORT_SYMBOL_GPL vmlinux 0xaa38c3bb ata_ncq_sdev_attrs +EXPORT_SYMBOL_GPL vmlinux 0xaa38ca0b fib_nh_common_init +EXPORT_SYMBOL_GPL vmlinux 0xaa39aa96 genphy_c45_read_status +EXPORT_SYMBOL_GPL vmlinux 0xaa3d82c7 rio_route_add_entry +EXPORT_SYMBOL_GPL vmlinux 0xaa450124 usb_enable_intel_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0xaa520026 gpiod_count EXPORT_SYMBOL_GPL vmlinux 0xaa5aee1c uv_bios_mq_watchlist_alloc -EXPORT_SYMBOL_GPL vmlinux 0xaa61e414 pm_generic_poweroff_noirq EXPORT_SYMBOL_GPL vmlinux 0xaa6a50f9 __static_key_deferred_flush -EXPORT_SYMBOL_GPL vmlinux 0xaa7d62c2 blk_mq_freeze_queue_wait -EXPORT_SYMBOL_GPL vmlinux 0xaa7d62d3 __SCK__tp_func_devlink_hwerr +EXPORT_SYMBOL_GPL vmlinux 0xaa6c3e5b phy_pm_runtime_get_sync +EXPORT_SYMBOL_GPL vmlinux 0xaa6f2b67 devm_reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xaa741d76 ohci_restart +EXPORT_SYMBOL_GPL vmlinux 0xaa85e6c4 intel_pinctrl_probe_by_uid EXPORT_SYMBOL_GPL vmlinux 0xaa86cfb5 uv_possible_blades -EXPORT_SYMBOL_GPL vmlinux 0xaa88b686 fwnode_get_next_child_node -EXPORT_SYMBOL_GPL vmlinux 0xaaa1b4d7 ata_std_postreset +EXPORT_SYMBOL_GPL vmlinux 0xaa8c5c56 set_online_page_callback +EXPORT_SYMBOL_GPL vmlinux 0xaa8eb75d irq_domain_create_legacy EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump -EXPORT_SYMBOL_GPL vmlinux 0xaab098ca ata_pio_need_iordy -EXPORT_SYMBOL_GPL vmlinux 0xaab591cc extcon_find_edev_by_node -EXPORT_SYMBOL_GPL vmlinux 0xaab81cae usb_set_device_state -EXPORT_SYMBOL_GPL vmlinux 0xaaca552e i2c_acpi_find_bus_speed -EXPORT_SYMBOL_GPL vmlinux 0xaae258c7 locks_release_private +EXPORT_SYMBOL_GPL vmlinux 0xaabdbed4 fwnode_handle_put +EXPORT_SYMBOL_GPL vmlinux 0xaac2e87b dev_pm_opp_sync_regulators +EXPORT_SYMBOL_GPL vmlinux 0xaad841fd dev_pm_opp_disable EXPORT_SYMBOL_GPL vmlinux 0xaaebe644 init_srcu_struct -EXPORT_SYMBOL_GPL vmlinux 0xaaedb78a bpf_trace_run6 -EXPORT_SYMBOL_GPL vmlinux 0xab05fa59 __root_device_register +EXPORT_SYMBOL_GPL vmlinux 0xaaf7fc67 dw_pcie_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0xaafe4be5 edac_device_free_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0xab06f574 virtio_break_device +EXPORT_SYMBOL_GPL vmlinux 0xab196127 __tracepoint_block_rq_insert +EXPORT_SYMBOL_GPL vmlinux 0xab197cb6 tpm_get_random EXPORT_SYMBOL_GPL vmlinux 0xab1e0e93 hv_setup_kexec_handler -EXPORT_SYMBOL_GPL vmlinux 0xab1ec49a dummy_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0xab46085c phy_remove_lookup -EXPORT_SYMBOL_GPL vmlinux 0xab58d744 kstrdup_quotable_file -EXPORT_SYMBOL_GPL vmlinux 0xab60571d unregister_pernet_device -EXPORT_SYMBOL_GPL vmlinux 0xab613683 rtc_set_alarm -EXPORT_SYMBOL_GPL vmlinux 0xab7a8f1a input_ff_upload -EXPORT_SYMBOL_GPL vmlinux 0xab8d9471 devm_regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xab2134e4 vp_modern_get_queue_size +EXPORT_SYMBOL_GPL vmlinux 0xab2849e4 edac_mc_find_csrow_by_page +EXPORT_SYMBOL_GPL vmlinux 0xab3fdf3b edac_device_handle_ce_count +EXPORT_SYMBOL_GPL vmlinux 0xab4b0695 blk_mq_unquiesce_queue +EXPORT_SYMBOL_GPL vmlinux 0xab5f91ae ata_port_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0xab67add9 __SCK__tp_func_map +EXPORT_SYMBOL_GPL vmlinux 0xab72b24f irq_domain_associate_many +EXPORT_SYMBOL_GPL vmlinux 0xab7453b8 iommu_aux_detach_device +EXPORT_SYMBOL_GPL vmlinux 0xab8507e1 validate_xmit_xfrm +EXPORT_SYMBOL_GPL vmlinux 0xab8a2ada ata_sff_thaw +EXPORT_SYMBOL_GPL vmlinux 0xab8dc20c crypto_unregister_scomps EXPORT_SYMBOL_GPL vmlinux 0xab9bd884 perf_register_guest_info_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xab9beba9 rio_release_inb_dbell -EXPORT_SYMBOL_GPL vmlinux 0xaba385bb pci_slots_kset -EXPORT_SYMBOL_GPL vmlinux 0xaba7f7fe gpiochip_irq_domain_deactivate +EXPORT_SYMBOL_GPL vmlinux 0xabb0ed8e devlink_alloc_ns +EXPORT_SYMBOL_GPL vmlinux 0xabb7c7c2 get_cached_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0xabc1661d fpu_swap_kvm_fpstate EXPORT_SYMBOL_GPL vmlinux 0xabc298d0 intel_scu_ipc_unregister +EXPORT_SYMBOL_GPL vmlinux 0xabc444c4 device_create_managed_software_node EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate -EXPORT_SYMBOL_GPL vmlinux 0xabd374de __fib_lookup -EXPORT_SYMBOL_GPL vmlinux 0xabd481e1 raw_hash_sk -EXPORT_SYMBOL_GPL vmlinux 0xabd7eb72 usb_reset_configuration -EXPORT_SYMBOL_GPL vmlinux 0xabdd792c iomap_dio_iopoll -EXPORT_SYMBOL_GPL vmlinux 0xabede6a9 __list_lru_init +EXPORT_SYMBOL_GPL vmlinux 0xabd4a36a devm_memunmap_pages +EXPORT_SYMBOL_GPL vmlinux 0xabe9123a ata_pci_bmdma_prepare_host EXPORT_SYMBOL_GPL vmlinux 0xabf03fc3 __SCT__tp_func_xhci_dbg_quirks -EXPORT_SYMBOL_GPL vmlinux 0xabf77e43 md_stop -EXPORT_SYMBOL_GPL vmlinux 0xabfc464a extcon_register_notifier_all -EXPORT_SYMBOL_GPL vmlinux 0xabfc6bec cgrp_dfl_root -EXPORT_SYMBOL_GPL vmlinux 0xabfd4816 __traceiter_add_device_to_group -EXPORT_SYMBOL_GPL vmlinux 0xac023ef3 regmap_field_alloc -EXPORT_SYMBOL_GPL vmlinux 0xac08d1a9 cn_add_callback -EXPORT_SYMBOL_GPL vmlinux 0xac174df3 device_set_of_node_from_dev -EXPORT_SYMBOL_GPL vmlinux 0xac1f9fbc lwtunnel_get_encap_size -EXPORT_SYMBOL_GPL vmlinux 0xac22277a serdev_device_wait_until_sent -EXPORT_SYMBOL_GPL vmlinux 0xac3e85cf param_set_bool_enable_only -EXPORT_SYMBOL_GPL vmlinux 0xac4e2984 inet_csk_reqsk_queue_hash_add -EXPORT_SYMBOL_GPL vmlinux 0xac5b5e15 tcp_ca_get_key_by_name -EXPORT_SYMBOL_GPL vmlinux 0xac661fd0 fwnode_graph_get_remote_endpoint -EXPORT_SYMBOL_GPL vmlinux 0xac68547b serial8250_do_set_ldisc -EXPORT_SYMBOL_GPL vmlinux 0xac68dd33 ata_port_desc -EXPORT_SYMBOL_GPL vmlinux 0xac6971db perf_trace_run_bpf_submit -EXPORT_SYMBOL_GPL vmlinux 0xac6d2153 strp_data_ready -EXPORT_SYMBOL_GPL vmlinux 0xac7cd5be da903x_writes -EXPORT_SYMBOL_GPL vmlinux 0xac8518db vmf_insert_pfn_pmd_prot -EXPORT_SYMBOL_GPL vmlinux 0xacacf87c tps65912_device_init -EXPORT_SYMBOL_GPL vmlinux 0xacb45557 seg6_do_srh_encap +EXPORT_SYMBOL_GPL vmlinux 0xabf4712e ata_sas_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0xabf5963b irq_domain_create_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0xac03f150 component_unbind_all +EXPORT_SYMBOL_GPL vmlinux 0xac2fc1f2 clk_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0xac467a6b gpiochip_request_own_desc +EXPORT_SYMBOL_GPL vmlinux 0xac4e766d __fscrypt_encrypt_symlink +EXPORT_SYMBOL_GPL vmlinux 0xac64d728 dma_wait_for_async_tx +EXPORT_SYMBOL_GPL vmlinux 0xac786407 blk_ksm_destroy +EXPORT_SYMBOL_GPL vmlinux 0xac823a90 dma_buf_move_notify +EXPORT_SYMBOL_GPL vmlinux 0xac912f70 devfreq_get_devfreq_by_node +EXPORT_SYMBOL_GPL vmlinux 0xaca1c22b bpf_trace_run6 +EXPORT_SYMBOL_GPL vmlinux 0xaca2e7e5 pin_get_name +EXPORT_SYMBOL_GPL vmlinux 0xaca5dc8c led_init_default_state_get EXPORT_SYMBOL_GPL vmlinux 0xacb4d88c clk_rate_exclusive_put -EXPORT_SYMBOL_GPL vmlinux 0xacc78a9e perf_event_disable -EXPORT_SYMBOL_GPL vmlinux 0xacc7de12 tty_put_char +EXPORT_SYMBOL_GPL vmlinux 0xacbfa9bb regulator_map_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0xacc4b905 n_tty_inherit_ops +EXPORT_SYMBOL_GPL vmlinux 0xacc7d759 crypto_drop_spawn EXPORT_SYMBOL_GPL vmlinux 0xacc977ac alarm_forward_now -EXPORT_SYMBOL_GPL vmlinux 0xacce917c sysfs_change_owner -EXPORT_SYMBOL_GPL vmlinux 0xacdf3d84 __devm_regmap_init_mmio_clk -EXPORT_SYMBOL_GPL vmlinux 0xacf8fd67 __inet_twsk_schedule -EXPORT_SYMBOL_GPL vmlinux 0xad002d2d perf_event_pause -EXPORT_SYMBOL_GPL vmlinux 0xad0273a5 pci_disable_pasid -EXPORT_SYMBOL_GPL vmlinux 0xad093d21 pinctrl_utils_free_map -EXPORT_SYMBOL_GPL vmlinux 0xad0a3247 i2c_dw_probe_master +EXPORT_SYMBOL_GPL vmlinux 0xacd28a54 sk_msg_zerocopy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0xacd60e9a sysfs_remove_link_from_group +EXPORT_SYMBOL_GPL vmlinux 0xacdb21a8 device_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0xace1fdbe irq_get_default_host +EXPORT_SYMBOL_GPL vmlinux 0xacf39a4a thp_get_unmapped_area +EXPORT_SYMBOL_GPL vmlinux 0xacf6bff1 power_supply_set_input_current_limit_from_supplier +EXPORT_SYMBOL_GPL vmlinux 0xad06e379 virtqueue_kick_prepare +EXPORT_SYMBOL_GPL vmlinux 0xad0aa9c5 ata_pio_need_iordy EXPORT_SYMBOL_GPL vmlinux 0xad0f2b6c unix_table_lock -EXPORT_SYMBOL_GPL vmlinux 0xad0fda86 spi_sync_locked -EXPORT_SYMBOL_GPL vmlinux 0xad11f53f devm_mbox_controller_unregister -EXPORT_SYMBOL_GPL vmlinux 0xad200868 regulator_list_voltage_linear -EXPORT_SYMBOL_GPL vmlinux 0xad33c5bb devm_acpi_dma_controller_free -EXPORT_SYMBOL_GPL vmlinux 0xad362569 sdio_f0_readb -EXPORT_SYMBOL_GPL vmlinux 0xad36db0f dm_internal_resume +EXPORT_SYMBOL_GPL vmlinux 0xad101cfd __vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0xad2ceeb2 rdev_clear_badblocks +EXPORT_SYMBOL_GPL vmlinux 0xad35f441 iomap_readahead EXPORT_SYMBOL_GPL vmlinux 0xad395dd9 mm_account_pinned_pages +EXPORT_SYMBOL_GPL vmlinux 0xad43f2fc lwtunnel_input EXPORT_SYMBOL_GPL vmlinux 0xad4e6259 remove_cpu -EXPORT_SYMBOL_GPL vmlinux 0xad530dd8 ethnl_cable_test_step EXPORT_SYMBOL_GPL vmlinux 0xad5737fc efivar_init -EXPORT_SYMBOL_GPL vmlinux 0xad5bbd17 iommu_device_link EXPORT_SYMBOL_GPL vmlinux 0xad5f0017 perf_trace_buf_alloc EXPORT_SYMBOL_GPL vmlinux 0xad645234 register_switchdev_notifier -EXPORT_SYMBOL_GPL vmlinux 0xad64dbde crypto_ahash_digest -EXPORT_SYMBOL_GPL vmlinux 0xad731556 power_supply_am_i_supplied -EXPORT_SYMBOL_GPL vmlinux 0xad770301 mbox_client_peek_data -EXPORT_SYMBOL_GPL vmlinux 0xad7fc9d9 follow_pte -EXPORT_SYMBOL_GPL vmlinux 0xad810950 vfs_removexattr -EXPORT_SYMBOL_GPL vmlinux 0xad825b81 irq_chip_set_parent_state -EXPORT_SYMBOL_GPL vmlinux 0xad87d3dc unmap_mapping_pages -EXPORT_SYMBOL_GPL vmlinux 0xad8e9dd5 fscrypt_fname_siphash -EXPORT_SYMBOL_GPL vmlinux 0xad9441a2 rtnl_get_net_ns_capable -EXPORT_SYMBOL_GPL vmlinux 0xad9a8e6c percpu_free_rwsem +EXPORT_SYMBOL_GPL vmlinux 0xad69e0be scsi_build_sense +EXPORT_SYMBOL_GPL vmlinux 0xad8a4d87 sata_lpm_ignore_phy_events +EXPORT_SYMBOL_GPL vmlinux 0xad8b195b iommu_dev_disable_feature +EXPORT_SYMBOL_GPL vmlinux 0xad9182e2 virtqueue_get_vring +EXPORT_SYMBOL_GPL vmlinux 0xad9e5608 cpufreq_unregister_driver EXPORT_SYMBOL_GPL vmlinux 0xada38766 dst_cache_destroy -EXPORT_SYMBOL_GPL vmlinux 0xada3b44e mmc_crypto_setup_queue -EXPORT_SYMBOL_GPL vmlinux 0xada4410a vfio_unregister_group_dev -EXPORT_SYMBOL_GPL vmlinux 0xadbf29b5 mmc_cmdq_enable -EXPORT_SYMBOL_GPL vmlinux 0xadc8a782 platform_get_resource -EXPORT_SYMBOL_GPL vmlinux 0xadea08a4 pci_ioremap_bar +EXPORT_SYMBOL_GPL vmlinux 0xada4bb5e kill_device +EXPORT_SYMBOL_GPL vmlinux 0xadb4198e iommu_detach_device +EXPORT_SYMBOL_GPL vmlinux 0xadb8001f lwtunnel_state_alloc +EXPORT_SYMBOL_GPL vmlinux 0xadc98a8b gpiochip_irq_map +EXPORT_SYMBOL_GPL vmlinux 0xadcd9c1c __rio_local_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0xadd6ebf9 ip6_dst_lookup +EXPORT_SYMBOL_GPL vmlinux 0xadda9b80 serial8250_init_port +EXPORT_SYMBOL_GPL vmlinux 0xadeb34b8 param_ops_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0xadec8d55 device_add_properties +EXPORT_SYMBOL_GPL vmlinux 0xadf74fc9 access_process_vm EXPORT_SYMBOL_GPL vmlinux 0xae0ecf40 usb_bus_idr_lock -EXPORT_SYMBOL_GPL vmlinux 0xae101c07 wakeup_sources_walk_start EXPORT_SYMBOL_GPL vmlinux 0xae1051b0 net_cls_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xae23dd6a rdev_get_dev -EXPORT_SYMBOL_GPL vmlinux 0xae2a6a47 nd_cmd_out_size -EXPORT_SYMBOL_GPL vmlinux 0xae2d175d x86_msi_msg_get_destid -EXPORT_SYMBOL_GPL vmlinux 0xae35e3fc dma_buf_fd -EXPORT_SYMBOL_GPL vmlinux 0xae39de83 devlink_flash_update_timeout_notify EXPORT_SYMBOL_GPL vmlinux 0xae39f80e dst_cache_init -EXPORT_SYMBOL_GPL vmlinux 0xae40e52c tcp_cong_avoid_ai -EXPORT_SYMBOL_GPL vmlinux 0xae4198e9 subsys_find_device_by_id -EXPORT_SYMBOL_GPL vmlinux 0xae46f4d9 __udp4_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0xae5c99eb crypto_unregister_scomps -EXPORT_SYMBOL_GPL vmlinux 0xae633b43 device_remove_file +EXPORT_SYMBOL_GPL vmlinux 0xae568576 __raw_v6_lookup +EXPORT_SYMBOL_GPL vmlinux 0xae5b41a2 tcp_get_info +EXPORT_SYMBOL_GPL vmlinux 0xae5bbfb1 pm_genpd_remove_device +EXPORT_SYMBOL_GPL vmlinux 0xae5f8d9c ping_seq_next EXPORT_SYMBOL_GPL vmlinux 0xae69b1c1 usermodehelper_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0xae730aaf regmap_fields_update_bits_base -EXPORT_SYMBOL_GPL vmlinux 0xae735c88 iommu_sva_get_pasid -EXPORT_SYMBOL_GPL vmlinux 0xae79f965 ip6_route_output_flags_noref -EXPORT_SYMBOL_GPL vmlinux 0xae7bef92 mmput +EXPORT_SYMBOL_GPL vmlinux 0xae700c0f sk_msg_alloc +EXPORT_SYMBOL_GPL vmlinux 0xae768435 fwnode_get_next_parent EXPORT_SYMBOL_GPL vmlinux 0xae7c231d mpi_cmp -EXPORT_SYMBOL_GPL vmlinux 0xae82dbbf fwnode_property_read_string_array -EXPORT_SYMBOL_GPL vmlinux 0xae87fefc dev_pm_genpd_set_next_wakeup -EXPORT_SYMBOL_GPL vmlinux 0xae8e841d security_inode_create EXPORT_SYMBOL_GPL vmlinux 0xaea83791 call_srcu -EXPORT_SYMBOL_GPL vmlinux 0xaeb07f93 __mmc_poll_for_busy -EXPORT_SYMBOL_GPL vmlinux 0xaeb6c695 md_submit_discard_bio -EXPORT_SYMBOL_GPL vmlinux 0xaed2173c vfio_device_put -EXPORT_SYMBOL_GPL vmlinux 0xaee19907 mctrl_gpio_init -EXPORT_SYMBOL_GPL vmlinux 0xaef17be1 dax_layout_busy_page -EXPORT_SYMBOL_GPL vmlinux 0xaefe83f9 regulator_get_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0xaeadc743 __traceiter_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0xaeb812a5 edac_mc_add_mc_with_groups +EXPORT_SYMBOL_GPL vmlinux 0xaebbe106 uhci_check_and_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0xaecc35ff ptp_parse_header +EXPORT_SYMBOL_GPL vmlinux 0xaf01a600 skb_copy_ubufs +EXPORT_SYMBOL_GPL vmlinux 0xaf06c2a1 pci_find_next_ht_capability EXPORT_SYMBOL_GPL vmlinux 0xaf076aec nd_fletcher64 EXPORT_SYMBOL_GPL vmlinux 0xaf0b6ba7 blkg_rwstat_init -EXPORT_SYMBOL_GPL vmlinux 0xaf13a0e0 __tcp_send_ack -EXPORT_SYMBOL_GPL vmlinux 0xaf1dfe9a phy_start_machine -EXPORT_SYMBOL_GPL vmlinux 0xaf264324 usb_root_hub_lost_power +EXPORT_SYMBOL_GPL vmlinux 0xaf0cfa86 blk_steal_bios +EXPORT_SYMBOL_GPL vmlinux 0xaf0eeb77 relay_late_setup_files +EXPORT_SYMBOL_GPL vmlinux 0xaf1bff1e cpufreq_frequency_table_get_index +EXPORT_SYMBOL_GPL vmlinux 0xaf1cdb3d ipv6_recv_error +EXPORT_SYMBOL_GPL vmlinux 0xaf2171c3 ata_timing_compute +EXPORT_SYMBOL_GPL vmlinux 0xaf275692 regmap_raw_write +EXPORT_SYMBOL_GPL vmlinux 0xaf29d66b lwtunnel_output +EXPORT_SYMBOL_GPL vmlinux 0xaf35bc6f iommu_set_fault_handler EXPORT_SYMBOL_GPL vmlinux 0xaf4014ff usb_amd_quirk_pll_check -EXPORT_SYMBOL_GPL vmlinux 0xaf43d108 blk_rq_prep_clone -EXPORT_SYMBOL_GPL vmlinux 0xaf5605fd kill_device -EXPORT_SYMBOL_GPL vmlinux 0xaf5c2e69 devlink_trap_policers_register -EXPORT_SYMBOL_GPL vmlinux 0xaf5d8dcf simple_attr_release -EXPORT_SYMBOL_GPL vmlinux 0xaf5f68b9 skb_cow_data -EXPORT_SYMBOL_GPL vmlinux 0xaf6f05e7 vfs_getxattr +EXPORT_SYMBOL_GPL vmlinux 0xaf4f512f fsnotify_alloc_user_group +EXPORT_SYMBOL_GPL vmlinux 0xaf5261c3 ohci_hub_status_data +EXPORT_SYMBOL_GPL vmlinux 0xaf596003 blk_add_driver_data +EXPORT_SYMBOL_GPL vmlinux 0xaf600c26 reset_control_get_count +EXPORT_SYMBOL_GPL vmlinux 0xaf6f394a led_init_core EXPORT_SYMBOL_GPL vmlinux 0xaf793668 __alloc_percpu_gfp -EXPORT_SYMBOL_GPL vmlinux 0xaf7a66f1 devm_watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0xaf7ddd4a dev_pm_opp_find_freq_exact EXPORT_SYMBOL_GPL vmlinux 0xaf852873 cpuidle_register_device -EXPORT_SYMBOL_GPL vmlinux 0xafa1ee8f tty_wakeup -EXPORT_SYMBOL_GPL vmlinux 0xafa27c3b pid_vnr -EXPORT_SYMBOL_GPL vmlinux 0xafa96156 pinctrl_force_default -EXPORT_SYMBOL_GPL vmlinux 0xafb3a61e irq_domain_update_bus_token -EXPORT_SYMBOL_GPL vmlinux 0xafb9bcc0 blk_ksm_destroy -EXPORT_SYMBOL_GPL vmlinux 0xafd00b56 skb_complete_wifi_ack +EXPORT_SYMBOL_GPL vmlinux 0xaf9eb782 wm8350_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0xafa7d157 device_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0xafbbd6bd mmc_regulator_get_supply EXPORT_SYMBOL_GPL vmlinux 0xafddd545 ata_id_c_string -EXPORT_SYMBOL_GPL vmlinux 0xafe3a3f6 spi_mem_dirmap_write -EXPORT_SYMBOL_GPL vmlinux 0xafef42f2 ethnl_cable_test_free -EXPORT_SYMBOL_GPL vmlinux 0xb0162965 ata_noop_qc_prep -EXPORT_SYMBOL_GPL vmlinux 0xb02856ee __pm_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0xafde9a1a devlink_port_attrs_pci_pf_set +EXPORT_SYMBOL_GPL vmlinux 0xafe47ec2 __traceiter_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0xaff09391 __SCK__tp_func_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0xaffc6d68 thermal_add_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0xb003ff0f sock_prot_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0xb00dae51 invalidate_inode_pages2_range +EXPORT_SYMBOL_GPL vmlinux 0xb01c221a pm_clk_init +EXPORT_SYMBOL_GPL vmlinux 0xb01c54b3 pm_clk_add +EXPORT_SYMBOL_GPL vmlinux 0xb02a194c mmu_notifier_range_update_to_read_only EXPORT_SYMBOL_GPL vmlinux 0xb02ac411 register_xenstore_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb0314d50 sk_psock_msg_verdict -EXPORT_SYMBOL_GPL vmlinux 0xb062f412 devm_irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xb02d79e9 blk_mq_freeze_queue_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0xb041b325 dma_mmap_noncontiguous EXPORT_SYMBOL_GPL vmlinux 0xb0747ed2 rcu_cpu_stall_suppress EXPORT_SYMBOL_GPL vmlinux 0xb077e70a clk_unprepare -EXPORT_SYMBOL_GPL vmlinux 0xb0799195 usb_hcd_unlink_urb_from_ep -EXPORT_SYMBOL_GPL vmlinux 0xb07f4c6a dm_post_suspending -EXPORT_SYMBOL_GPL vmlinux 0xb09340db gov_attr_set_init -EXPORT_SYMBOL_GPL vmlinux 0xb0a2cd82 pci_pr3_present -EXPORT_SYMBOL_GPL vmlinux 0xb0b4101f fuse_init_fs_context_submount -EXPORT_SYMBOL_GPL vmlinux 0xb0b5bf38 netlink_add_tap -EXPORT_SYMBOL_GPL vmlinux 0xb0b67780 xhci_gen_setup +EXPORT_SYMBOL_GPL vmlinux 0xb082a41f mddev_resume +EXPORT_SYMBOL_GPL vmlinux 0xb09c951c __ndisc_fill_addr_option +EXPORT_SYMBOL_GPL vmlinux 0xb0b4235b ata_sas_async_probe EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset -EXPORT_SYMBOL_GPL vmlinux 0xb0be87cf device_store_bool -EXPORT_SYMBOL_GPL vmlinux 0xb0c9741a scsi_unregister_device_handler -EXPORT_SYMBOL_GPL vmlinux 0xb0ce8ffc register_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xb0b86aa5 serial8250_do_get_mctrl +EXPORT_SYMBOL_GPL vmlinux 0xb0b9859d hwspin_lock_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb0c13c75 perf_event_release_kernel EXPORT_SYMBOL_GPL vmlinux 0xb0d1656c gpio_free_array -EXPORT_SYMBOL_GPL vmlinux 0xb0de27bf input_class EXPORT_SYMBOL_GPL vmlinux 0xb0e8e671 xenbus_otherend_changed -EXPORT_SYMBOL_GPL vmlinux 0xb0f631f6 ata_timing_compute +EXPORT_SYMBOL_GPL vmlinux 0xb0ef8dfc iommu_device_unregister EXPORT_SYMBOL_GPL vmlinux 0xb0fbb722 clk_fractional_divider_ops EXPORT_SYMBOL_GPL vmlinux 0xb10d964d devlink_fmsg_pair_nest_end -EXPORT_SYMBOL_GPL vmlinux 0xb10e4562 auxiliary_device_init -EXPORT_SYMBOL_GPL vmlinux 0xb1183f27 tpm_tis_resume +EXPORT_SYMBOL_GPL vmlinux 0xb116b9df inet_hash 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 0xb1297007 wakeup_sources_walk_next -EXPORT_SYMBOL_GPL vmlinux 0xb13cebff kthread_flush_work -EXPORT_SYMBOL_GPL vmlinux 0xb14717d1 sysfs_file_change_owner -EXPORT_SYMBOL_GPL vmlinux 0xb14ca1fc nf_ipv6_ops -EXPORT_SYMBOL_GPL vmlinux 0xb1509e04 rio_local_set_device_id -EXPORT_SYMBOL_GPL vmlinux 0xb15bda31 usb_unlocked_enable_lpm -EXPORT_SYMBOL_GPL vmlinux 0xb160d33b xfrm_state_afinfo_get_rcu +EXPORT_SYMBOL_GPL vmlinux 0xb13c423d nvdimm_clear_poison +EXPORT_SYMBOL_GPL vmlinux 0xb13d2062 filemap_range_needs_writeback +EXPORT_SYMBOL_GPL vmlinux 0xb14d47ed iomap_zero_range +EXPORT_SYMBOL_GPL vmlinux 0xb1565e78 da9052_disable_irq_nosync +EXPORT_SYMBOL_GPL vmlinux 0xb15b2164 gpiochip_is_requested EXPORT_SYMBOL_GPL vmlinux 0xb1647fc2 devlink_info_version_running_put -EXPORT_SYMBOL_GPL vmlinux 0xb16760ad list_lru_count_one -EXPORT_SYMBOL_GPL vmlinux 0xb16ab3f0 __rio_local_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0xb16abb23 pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0xb17ca9d6 rtc_read_time +EXPORT_SYMBOL_GPL vmlinux 0xb183684d i2c_recover_bus EXPORT_SYMBOL_GPL vmlinux 0xb18429eb suspend_device_irqs -EXPORT_SYMBOL_GPL vmlinux 0xb185bed1 xen_find_device_domain_owner -EXPORT_SYMBOL_GPL vmlinux 0xb1a2369e acpi_pm_wakeup_event EXPORT_SYMBOL_GPL vmlinux 0xb1bed25d dpm_resume_start -EXPORT_SYMBOL_GPL vmlinux 0xb1c66668 nvdimm_in_overwrite -EXPORT_SYMBOL_GPL vmlinux 0xb1d1bd1a regmap_test_bits -EXPORT_SYMBOL_GPL vmlinux 0xb1d2d6b8 acpi_dev_get_dma_resources -EXPORT_SYMBOL_GPL vmlinux 0xb1d9d7ad __traceiter_neigh_update_done +EXPORT_SYMBOL_GPL vmlinux 0xb1c771e9 iomap_swapfile_activate +EXPORT_SYMBOL_GPL vmlinux 0xb1db4f53 __fib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xb1dbb6b8 virtqueue_get_vring_size EXPORT_SYMBOL_GPL vmlinux 0xb1e25684 __trace_bputs +EXPORT_SYMBOL_GPL vmlinux 0xb1f3c52b nf_route +EXPORT_SYMBOL_GPL vmlinux 0xb1f7fb3d fuse_dev_free EXPORT_SYMBOL_GPL vmlinux 0xb1fc1782 pci_speed_string -EXPORT_SYMBOL_GPL vmlinux 0xb2019cf4 led_set_brightness_nopm EXPORT_SYMBOL_GPL vmlinux 0xb202f0d7 rht_bucket_nested_insert -EXPORT_SYMBOL_GPL vmlinux 0xb208c065 fwnode_property_read_u16_array -EXPORT_SYMBOL_GPL vmlinux 0xb20c7a92 devm_free_pages -EXPORT_SYMBOL_GPL vmlinux 0xb21e2ae9 vfio_pci_core_close_device +EXPORT_SYMBOL_GPL vmlinux 0xb20a4e27 tty_kclose +EXPORT_SYMBOL_GPL vmlinux 0xb21b2ca1 vfs_submount EXPORT_SYMBOL_GPL vmlinux 0xb2210d64 reset_control_deassert -EXPORT_SYMBOL_GPL vmlinux 0xb2231637 component_add -EXPORT_SYMBOL_GPL vmlinux 0xb2241281 power_supply_set_battery_charged -EXPORT_SYMBOL_GPL vmlinux 0xb2289015 inet_csk_get_port -EXPORT_SYMBOL_GPL vmlinux 0xb23752ec scsi_ioctl_block_when_processing_errors +EXPORT_SYMBOL_GPL vmlinux 0xb22ad8ab vfio_pci_core_read +EXPORT_SYMBOL_GPL vmlinux 0xb232f7e8 spi_take_timestamp_pre +EXPORT_SYMBOL_GPL vmlinux 0xb239dfc9 amd_iommu_is_attach_deferred EXPORT_SYMBOL_GPL vmlinux 0xb2405efc secure_tcp_seq -EXPORT_SYMBOL_GPL vmlinux 0xb24341fa led_get_default_pattern +EXPORT_SYMBOL_GPL vmlinux 0xb2415783 clk_hw_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0xb2482b7e regulator_desc_list_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0xb25af772 regulator_get_voltage_rdev EXPORT_SYMBOL_GPL vmlinux 0xb26066fe ibft_phys_addr -EXPORT_SYMBOL_GPL vmlinux 0xb2644224 iomap_finish_ioends EXPORT_SYMBOL_GPL vmlinux 0xb26a1add elfcorehdr_addr +EXPORT_SYMBOL_GPL vmlinux 0xb26c2558 devm_gpio_free +EXPORT_SYMBOL_GPL vmlinux 0xb2728574 pci_set_cacheline_size +EXPORT_SYMBOL_GPL vmlinux 0xb27f6762 devlink_dpipe_match_put EXPORT_SYMBOL_GPL vmlinux 0xb285b8f8 xen_in_preemptible_hcall -EXPORT_SYMBOL_GPL vmlinux 0xb2924001 gpiochip_line_is_open_source -EXPORT_SYMBOL_GPL vmlinux 0xb29499cb lp8788_read_multi_bytes EXPORT_SYMBOL_GPL vmlinux 0xb29533ee zs_malloc -EXPORT_SYMBOL_GPL vmlinux 0xb2993e6d __SCK__tp_func_unmap -EXPORT_SYMBOL_GPL vmlinux 0xb29b7818 dw_pcie_find_capability -EXPORT_SYMBOL_GPL vmlinux 0xb29ddf57 class_dev_iter_next -EXPORT_SYMBOL_GPL vmlinux 0xb29f4741 crypto_stats_kpp_set_secret -EXPORT_SYMBOL_GPL vmlinux 0xb2a57b23 uprobe_register +EXPORT_SYMBOL_GPL vmlinux 0xb2a25fc7 __traceiter_sched_cpu_capacity_tp +EXPORT_SYMBOL_GPL vmlinux 0xb2bebbdd thermal_zone_device_enable EXPORT_SYMBOL_GPL vmlinux 0xb2c1732e rcu_gp_set_torture_wait -EXPORT_SYMBOL_GPL vmlinux 0xb2d6667e mddev_init_writes_pending -EXPORT_SYMBOL_GPL vmlinux 0xb2de4629 virtqueue_add_sgs +EXPORT_SYMBOL_GPL vmlinux 0xb2c5062e crypto_grab_ahash +EXPORT_SYMBOL_GPL vmlinux 0xb2d0c2f3 __SCK__tp_func_br_fdb_external_learn_add +EXPORT_SYMBOL_GPL vmlinux 0xb2dcb7d8 tps65912_device_exit EXPORT_SYMBOL_GPL vmlinux 0xb2de4cf2 clk_gate_ops EXPORT_SYMBOL_GPL vmlinux 0xb2e764e8 suspend_valid_only_mem -EXPORT_SYMBOL_GPL vmlinux 0xb2ecff42 led_init_core -EXPORT_SYMBOL_GPL vmlinux 0xb2f277c8 devm_device_add_groups -EXPORT_SYMBOL_GPL vmlinux 0xb2fd6432 ata_pci_bmdma_init_one -EXPORT_SYMBOL_GPL vmlinux 0xb3018af9 __pneigh_lookup -EXPORT_SYMBOL_GPL vmlinux 0xb302abf9 devlink_dpipe_match_put EXPORT_SYMBOL_GPL vmlinux 0xb307c909 devlink_fmsg_u64_pair_put -EXPORT_SYMBOL_GPL vmlinux 0xb31202ba regulator_is_supported_voltage -EXPORT_SYMBOL_GPL vmlinux 0xb313278a sdio_readl +EXPORT_SYMBOL_GPL vmlinux 0xb3090761 dev_attr_em_message_type +EXPORT_SYMBOL_GPL vmlinux 0xb31e2939 xen_remap_pfn EXPORT_SYMBOL_GPL vmlinux 0xb3253ed9 hpet_rtc_timer_init -EXPORT_SYMBOL_GPL vmlinux 0xb32a6cb1 __mmdrop -EXPORT_SYMBOL_GPL vmlinux 0xb34d4ad1 fscrypt_ioctl_remove_key_all_users -EXPORT_SYMBOL_GPL vmlinux 0xb3681442 lwtunnel_build_state -EXPORT_SYMBOL_GPL vmlinux 0xb36aaa4b bus_find_device -EXPORT_SYMBOL_GPL vmlinux 0xb36fb5e4 ata_pci_sff_activate_host -EXPORT_SYMBOL_GPL vmlinux 0xb37ed397 tcp_unregister_congestion_control -EXPORT_SYMBOL_GPL vmlinux 0xb387eaab is_virtio_device -EXPORT_SYMBOL_GPL vmlinux 0xb38ee6b7 alloc_io_pgtable_ops -EXPORT_SYMBOL_GPL vmlinux 0xb391d652 dev_pm_qos_flags -EXPORT_SYMBOL_GPL vmlinux 0xb3938beb spi_mem_dirmap_read -EXPORT_SYMBOL_GPL vmlinux 0xb3a22aff devm_kfree -EXPORT_SYMBOL_GPL vmlinux 0xb3bbabed acpi_bind_one -EXPORT_SYMBOL_GPL vmlinux 0xb3d57527 extcon_get_edev_name -EXPORT_SYMBOL_GPL vmlinux 0xb3d74104 thermal_remove_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0xb35ccbe1 __tracepoint_sched_cpu_capacity_tp +EXPORT_SYMBOL_GPL vmlinux 0xb35ef6e8 regmap_parse_val +EXPORT_SYMBOL_GPL vmlinux 0xb36e77d9 mptcp_subflow_init_cookie_req +EXPORT_SYMBOL_GPL vmlinux 0xb375c782 devfreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0xb387abb7 edac_pci_add_device +EXPORT_SYMBOL_GPL vmlinux 0xb388a9ef pm_runtime_force_resume +EXPORT_SYMBOL_GPL vmlinux 0xb39978fc skb_mpls_dec_ttl +EXPORT_SYMBOL_GPL vmlinux 0xb3b7e01f balloon_page_dequeue +EXPORT_SYMBOL_GPL vmlinux 0xb3cb0793 sysfs_update_group +EXPORT_SYMBOL_GPL vmlinux 0xb3d8c803 serial8250_read_char EXPORT_SYMBOL_GPL vmlinux 0xb3e6e60a __traceiter_sched_overutilized_tp -EXPORT_SYMBOL_GPL vmlinux 0xb3f13b94 rio_request_outb_mbox -EXPORT_SYMBOL_GPL vmlinux 0xb400fbde nvdimm_bus_check_dimm_count -EXPORT_SYMBOL_GPL vmlinux 0xb41b2cca regmap_register_patch -EXPORT_SYMBOL_GPL vmlinux 0xb4235548 fuse_dev_install -EXPORT_SYMBOL_GPL vmlinux 0xb42693b7 sysfs_create_mount_point -EXPORT_SYMBOL_GPL vmlinux 0xb42df4ff dev_pm_opp_set_prop_name +EXPORT_SYMBOL_GPL vmlinux 0xb3f0cc98 fscrypt_set_bio_crypt_ctx +EXPORT_SYMBOL_GPL vmlinux 0xb409e8f3 vp_modern_set_features +EXPORT_SYMBOL_GPL vmlinux 0xb41df173 open_related_ns +EXPORT_SYMBOL_GPL vmlinux 0xb422dbd2 devm_regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xb42c273e rio_enable_rx_tx_port EXPORT_SYMBOL_GPL vmlinux 0xb43f9365 ktime_get -EXPORT_SYMBOL_GPL vmlinux 0xb4413cf1 fwnode_usb_role_switch_get EXPORT_SYMBOL_GPL vmlinux 0xb4429b64 acpi_dev_resource_ext_address_space -EXPORT_SYMBOL_GPL vmlinux 0xb4457b52 pci_ats_supported -EXPORT_SYMBOL_GPL vmlinux 0xb44791c8 trace_output_call +EXPORT_SYMBOL_GPL vmlinux 0xb44da8a7 hwmon_notify_event EXPORT_SYMBOL_GPL vmlinux 0xb44e18ea audit_enabled -EXPORT_SYMBOL_GPL vmlinux 0xb4596f77 devm_clk_register -EXPORT_SYMBOL_GPL vmlinux 0xb45bdfc8 pci_generic_config_read32 -EXPORT_SYMBOL_GPL vmlinux 0xb45f3bbd vfio_pci_core_init_device -EXPORT_SYMBOL_GPL vmlinux 0xb4651765 clk_hw_get_rate -EXPORT_SYMBOL_GPL vmlinux 0xb4692f2c tty_port_tty_hangup -EXPORT_SYMBOL_GPL vmlinux 0xb475d362 proc_create_net_data -EXPORT_SYMBOL_GPL vmlinux 0xb47dc487 iommu_dev_enable_feature -EXPORT_SYMBOL_GPL vmlinux 0xb4841c0a edac_device_add_device -EXPORT_SYMBOL_GPL vmlinux 0xb485b112 ata_sff_pause -EXPORT_SYMBOL_GPL vmlinux 0xb4870018 __nvdimm_create +EXPORT_SYMBOL_GPL vmlinux 0xb4532bfd tcp_done +EXPORT_SYMBOL_GPL vmlinux 0xb45c1d37 __pm_relax +EXPORT_SYMBOL_GPL vmlinux 0xb46f130e dev_pm_clear_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xb48cc28d __pci_reset_function_locked EXPORT_SYMBOL_GPL vmlinux 0xb48f0638 software_node_register -EXPORT_SYMBOL_GPL vmlinux 0xb49a93a3 devlink_resource_occ_get_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb4acd717 blk_mq_alloc_request_hctx -EXPORT_SYMBOL_GPL vmlinux 0xb4b08b65 disk_force_media_change +EXPORT_SYMBOL_GPL vmlinux 0xb4aafe25 fwnode_property_get_reference_args +EXPORT_SYMBOL_GPL vmlinux 0xb4abb016 ata_sas_port_init +EXPORT_SYMBOL_GPL vmlinux 0xb4b15a66 fixup_user_fault EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb4c1e457 vfio_pci_core_disable -EXPORT_SYMBOL_GPL vmlinux 0xb4c50213 pm_clk_init -EXPORT_SYMBOL_GPL vmlinux 0xb4e81f77 platform_get_irq_optional +EXPORT_SYMBOL_GPL vmlinux 0xb4bdd6b6 __trace_note_message +EXPORT_SYMBOL_GPL vmlinux 0xb4c483be serdev_device_set_tiocm +EXPORT_SYMBOL_GPL vmlinux 0xb4dee005 edac_pci_release_generic_ctl EXPORT_SYMBOL_GPL vmlinux 0xb4ea7cf7 kgdb_connected -EXPORT_SYMBOL_GPL vmlinux 0xb4ecae69 efivar_entry_set +EXPORT_SYMBOL_GPL vmlinux 0xb4ec447b serial8250_do_set_mctrl EXPORT_SYMBOL_GPL vmlinux 0xb4eda0da ring_buffer_event_length -EXPORT_SYMBOL_GPL vmlinux 0xb4f4eb8c shmem_read_mapping_page_gfp -EXPORT_SYMBOL_GPL vmlinux 0xb4f8ebe0 rio_mport_get_feature +EXPORT_SYMBOL_GPL vmlinux 0xb4f4b46c of_reset_control_array_get EXPORT_SYMBOL_GPL vmlinux 0xb501b2df nd_cmd_dimm_desc +EXPORT_SYMBOL_GPL vmlinux 0xb5025a39 usb_get_maximum_ssp_rate +EXPORT_SYMBOL_GPL vmlinux 0xb5061020 ehci_suspend EXPORT_SYMBOL_GPL vmlinux 0xb510c250 raw_v4_hashinfo -EXPORT_SYMBOL_GPL vmlinux 0xb5134386 spi_slave_abort +EXPORT_SYMBOL_GPL vmlinux 0xb5118814 fib_nl_newrule +EXPORT_SYMBOL_GPL vmlinux 0xb5171275 ata_host_alloc_pinfo EXPORT_SYMBOL_GPL vmlinux 0xb51fbd64 edac_op_state EXPORT_SYMBOL_GPL vmlinux 0xb520eb79 btree_merge -EXPORT_SYMBOL_GPL vmlinux 0xb524c0a8 sdio_retune_hold_now -EXPORT_SYMBOL_GPL vmlinux 0xb52efcc7 thermal_cooling_device_register -EXPORT_SYMBOL_GPL vmlinux 0xb5329e6e usb_role_switch_get -EXPORT_SYMBOL_GPL vmlinux 0xb54ce0f5 bpf_prog_sub -EXPORT_SYMBOL_GPL vmlinux 0xb564efbc dm_per_bio_data -EXPORT_SYMBOL_GPL vmlinux 0xb5738cc3 __rio_local_read_config_32 -EXPORT_SYMBOL_GPL vmlinux 0xb58919ce pci_check_and_mask_intx +EXPORT_SYMBOL_GPL vmlinux 0xb52f8e3d bpf_trace_run11 +EXPORT_SYMBOL_GPL vmlinux 0xb53f282f tpm_get_timeouts +EXPORT_SYMBOL_GPL vmlinux 0xb566cc21 scsi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xb56b38d1 rio_dma_prep_slave_sg +EXPORT_SYMBOL_GPL vmlinux 0xb56cec07 pcie_reset_flr +EXPORT_SYMBOL_GPL vmlinux 0xb57a6655 phy_resolve_aneg_linkmode +EXPORT_SYMBOL_GPL vmlinux 0xb58b691f ethnl_cable_test_step EXPORT_SYMBOL_GPL vmlinux 0xb5a83e35 gnttab_setup_auto_xlat_frames EXPORT_SYMBOL_GPL vmlinux 0xb5a8c226 acpi_gsi_to_irq -EXPORT_SYMBOL_GPL vmlinux 0xb5adee22 __dev_forward_skb -EXPORT_SYMBOL_GPL vmlinux 0xb5d0fe8f crypto_unregister_scomp -EXPORT_SYMBOL_GPL vmlinux 0xb5d19004 bus_sort_breadthfirst -EXPORT_SYMBOL_GPL vmlinux 0xb5fdec2d devm_hwspin_lock_request_specific -EXPORT_SYMBOL_GPL vmlinux 0xb60326d5 kobject_uevent_env -EXPORT_SYMBOL_GPL vmlinux 0xb6235c5a fuse_conn_init +EXPORT_SYMBOL_GPL vmlinux 0xb5b64819 alloc_dax +EXPORT_SYMBOL_GPL vmlinux 0xb5bafd93 __devm_reset_control_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0xb5bde19d pci_epc_mem_exit +EXPORT_SYMBOL_GPL vmlinux 0xb5c33b6b devm_clk_hw_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0xb5cae4b7 xhci_reset_bandwidth +EXPORT_SYMBOL_GPL vmlinux 0xb5cdd866 pci_remove_root_bus +EXPORT_SYMBOL_GPL vmlinux 0xb5e7fb47 sysfs_remove_group +EXPORT_SYMBOL_GPL vmlinux 0xb5f18e97 regcache_cache_bypass +EXPORT_SYMBOL_GPL vmlinux 0xb61ad8d0 gpiochip_relres_irq +EXPORT_SYMBOL_GPL vmlinux 0xb61b9391 regulator_map_voltage_iterate EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb627784a __pci_epf_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xb63013bb rio_local_get_device_id EXPORT_SYMBOL_GPL vmlinux 0xb6357e53 cpuidle_enable_device -EXPORT_SYMBOL_GPL vmlinux 0xb63e56e4 efivars_unregister EXPORT_SYMBOL_GPL vmlinux 0xb6410433 mpi_addm +EXPORT_SYMBOL_GPL vmlinux 0xb6510ed9 gpiod_get_array_optional EXPORT_SYMBOL_GPL vmlinux 0xb655f91b pci_epc_get_next_free_bar -EXPORT_SYMBOL_GPL vmlinux 0xb65aac45 ata_sas_port_destroy -EXPORT_SYMBOL_GPL vmlinux 0xb66f0d83 nf_route +EXPORT_SYMBOL_GPL vmlinux 0xb65b4954 debugfs_print_regs32 +EXPORT_SYMBOL_GPL vmlinux 0xb65c13cc usb_phy_set_charger_current +EXPORT_SYMBOL_GPL vmlinux 0xb662d6fd nvmem_cell_read_variable_le_u32 +EXPORT_SYMBOL_GPL vmlinux 0xb66380a8 dev_pm_opp_get_required_pstate EXPORT_SYMBOL_GPL vmlinux 0xb6787346 sfp_unregister_socket -EXPORT_SYMBOL_GPL vmlinux 0xb67ae404 blkg_prfill_rwstat -EXPORT_SYMBOL_GPL vmlinux 0xb67b0caf md_rdev_clear -EXPORT_SYMBOL_GPL vmlinux 0xb6818396 device_get_child_node_count -EXPORT_SYMBOL_GPL vmlinux 0xb681c335 kernel_read_file -EXPORT_SYMBOL_GPL vmlinux 0xb6885852 inet_ehash_nolisten +EXPORT_SYMBOL_GPL vmlinux 0xb67acb62 tpm_default_chip EXPORT_SYMBOL_GPL vmlinux 0xb6888188 klp_shadow_get_or_alloc -EXPORT_SYMBOL_GPL vmlinux 0xb6ace881 ipv6_find_tlv -EXPORT_SYMBOL_GPL vmlinux 0xb6c06740 acpi_dev_get_first_consumer_dev +EXPORT_SYMBOL_GPL vmlinux 0xb68ce1a4 dev_pm_opp_put_regulators +EXPORT_SYMBOL_GPL vmlinux 0xb68daf65 regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0xb68e1c45 led_get_default_pattern +EXPORT_SYMBOL_GPL vmlinux 0xb6903cd4 fwnode_get_named_child_node +EXPORT_SYMBOL_GPL vmlinux 0xb690d5be devm_regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xb699c4d4 aead_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb6b925b7 unregister_pernet_device EXPORT_SYMBOL_GPL vmlinux 0xb6c5e614 acpi_processor_evaluate_cst -EXPORT_SYMBOL_GPL vmlinux 0xb6dc02bc serial8250_rpm_put_tx +EXPORT_SYMBOL_GPL vmlinux 0xb6e3fd0d rtnl_af_register +EXPORT_SYMBOL_GPL vmlinux 0xb6e54fbd lp8788_read_byte +EXPORT_SYMBOL_GPL vmlinux 0xb6e59daa __tracepoint_block_unplug EXPORT_SYMBOL_GPL vmlinux 0xb6e6d99d clk_disable EXPORT_SYMBOL_GPL vmlinux 0xb6eabe37 register_kprobes -EXPORT_SYMBOL_GPL vmlinux 0xb6ee13f0 bio_alloc_kiocb -EXPORT_SYMBOL_GPL vmlinux 0xb703b3d5 usb_unlocked_disable_lpm -EXPORT_SYMBOL_GPL vmlinux 0xb70c5a9c __pci_hp_initialize -EXPORT_SYMBOL_GPL vmlinux 0xb7268339 class_destroy -EXPORT_SYMBOL_GPL vmlinux 0xb72f0e19 __SCK__tp_func_pelt_rt_tp +EXPORT_SYMBOL_GPL vmlinux 0xb6ef7647 vring_create_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0xb701cfe5 ata_host_detach +EXPORT_SYMBOL_GPL vmlinux 0xb705066e xdp_return_frame +EXPORT_SYMBOL_GPL vmlinux 0xb7197d09 get_device_system_crosststamp +EXPORT_SYMBOL_GPL vmlinux 0xb71e7d53 devm_namespace_disable +EXPORT_SYMBOL_GPL vmlinux 0xb729eba9 usb_hcd_unmap_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0xb72e88c4 device_initialize EXPORT_SYMBOL_GPL vmlinux 0xb7329c06 clk_set_phase EXPORT_SYMBOL_GPL vmlinux 0xb73713d7 nvmem_add_cell_lookups -EXPORT_SYMBOL_GPL vmlinux 0xb737a3e7 iptunnel_handle_offloads -EXPORT_SYMBOL_GPL vmlinux 0xb739a424 debugfs_create_atomic_t -EXPORT_SYMBOL_GPL vmlinux 0xb73a0d06 devlink_port_params_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb73e0309 nvmem_cell_read_u64 +EXPORT_SYMBOL_GPL vmlinux 0xb738e3ff platform_get_mem_or_io +EXPORT_SYMBOL_GPL vmlinux 0xb7458868 nvdimm_has_cache EXPORT_SYMBOL_GPL vmlinux 0xb74c31cd wwan_remove_port EXPORT_SYMBOL_GPL vmlinux 0xb75041d1 hv_stimer_legacy_init +EXPORT_SYMBOL_GPL vmlinux 0xb7580df9 usb_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xb75de513 fwnode_connection_find_match EXPORT_SYMBOL_GPL vmlinux 0xb761318b sev_active -EXPORT_SYMBOL_GPL vmlinux 0xb77050a2 devm_get_free_pages -EXPORT_SYMBOL_GPL vmlinux 0xb7709f60 pci_sriov_configure_simple -EXPORT_SYMBOL_GPL vmlinux 0xb77386c8 fsverity_cleanup_inode -EXPORT_SYMBOL_GPL vmlinux 0xb77d844f ata_sff_drain_fifo -EXPORT_SYMBOL_GPL vmlinux 0xb77da86d devm_gpiod_get_from_of_node -EXPORT_SYMBOL_GPL vmlinux 0xb7874943 gpiod_set_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xb76a89a5 efivars_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb772c945 register_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xb77c708c devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0xb783c7d1 proc_create_net_single_write +EXPORT_SYMBOL_GPL vmlinux 0xb78d8b9e xdp_attachment_setup +EXPORT_SYMBOL_GPL vmlinux 0xb797d95a bio_release_pages EXPORT_SYMBOL_GPL vmlinux 0xb7a387fc synchronize_rcu_tasks_rude -EXPORT_SYMBOL_GPL vmlinux 0xb7b2d13e gpiochip_add_pin_range -EXPORT_SYMBOL_GPL vmlinux 0xb7b4d61a pinctrl_force_sleep -EXPORT_SYMBOL_GPL vmlinux 0xb7c51e8d dw_pcie_host_init +EXPORT_SYMBOL_GPL vmlinux 0xb7aa97b5 iommu_map_atomic +EXPORT_SYMBOL_GPL vmlinux 0xb7bb7bc4 crypto_register_ahashes EXPORT_SYMBOL_GPL vmlinux 0xb7c69a63 unregister_vmap_purge_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb7c97d79 pinctrl_utils_add_map_configs -EXPORT_SYMBOL_GPL vmlinux 0xb7cff060 lp8788_write_byte -EXPORT_SYMBOL_GPL vmlinux 0xb7d78379 ata_qc_get_active EXPORT_SYMBOL_GPL vmlinux 0xb7d7c12e hpet_set_alarm_time -EXPORT_SYMBOL_GPL vmlinux 0xb7e34024 inode_congested -EXPORT_SYMBOL_GPL vmlinux 0xb7e40dd3 alarmtimer_get_rtcdev -EXPORT_SYMBOL_GPL vmlinux 0xb7f38fd9 devm_clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0xb7d7c9e9 pci_device_is_present +EXPORT_SYMBOL_GPL vmlinux 0xb7f11bd6 device_create_with_groups +EXPORT_SYMBOL_GPL vmlinux 0xb7f2c9f1 regulator_set_pull_down_regmap EXPORT_SYMBOL_GPL vmlinux 0xb7f73ef8 xas_init_marks EXPORT_SYMBOL_GPL vmlinux 0xb7f990e9 rht_bucket_nested -EXPORT_SYMBOL_GPL vmlinux 0xb7fcf717 em_dev_unregister_perf_domain -EXPORT_SYMBOL_GPL vmlinux 0xb802106c fsnotify_get_group -EXPORT_SYMBOL_GPL vmlinux 0xb804ab64 gnttab_page_cache_put -EXPORT_SYMBOL_GPL vmlinux 0xb8242c7e intel_pinctrl_resume_noirq +EXPORT_SYMBOL_GPL vmlinux 0xb81fe4cf pci_generic_config_write EXPORT_SYMBOL_GPL vmlinux 0xb8273d0b __wake_up_sync -EXPORT_SYMBOL_GPL vmlinux 0xb8294d3e devm_krealloc -EXPORT_SYMBOL_GPL vmlinux 0xb8353926 __lock_page_killable -EXPORT_SYMBOL_GPL vmlinux 0xb8354a89 battery_hook_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb838c114 device_property_read_u8_array EXPORT_SYMBOL_GPL vmlinux 0xb847585f is_hash_blacklisted -EXPORT_SYMBOL_GPL vmlinux 0xb871f6ff regulator_set_voltage_rdev -EXPORT_SYMBOL_GPL vmlinux 0xb8750fe1 dequeue_signal -EXPORT_SYMBOL_GPL vmlinux 0xb87d6f79 rtc_alarm_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0xb84a372c __irq_domain_alloc_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xb85279e6 iomap_readpage +EXPORT_SYMBOL_GPL vmlinux 0xb85a35a4 subsys_find_device_by_id +EXPORT_SYMBOL_GPL vmlinux 0xb867c3fc da9052_adc_manual_read +EXPORT_SYMBOL_GPL vmlinux 0xb87150ea __traceiter_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0xb87f40fe cppc_set_enable EXPORT_SYMBOL_GPL vmlinux 0xb88bc47e arch_apei_report_mem_error +EXPORT_SYMBOL_GPL vmlinux 0xb88d820c regulator_set_voltage_time EXPORT_SYMBOL_GPL vmlinux 0xb88dbfce irq_set_irqchip_state -EXPORT_SYMBOL_GPL vmlinux 0xb89168cf iommu_sva_find -EXPORT_SYMBOL_GPL vmlinux 0xb89439b5 percpu_up_write -EXPORT_SYMBOL_GPL vmlinux 0xb8996e00 acpi_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0xb896bb1e cpu_device_create EXPORT_SYMBOL_GPL vmlinux 0xb89e69b1 jump_label_update_timeout -EXPORT_SYMBOL_GPL vmlinux 0xb8a59f53 phy_resolve_aneg_linkmode -EXPORT_SYMBOL_GPL vmlinux 0xb8af38bc param_set_uint_minmax +EXPORT_SYMBOL_GPL vmlinux 0xb89eb6a3 genphy_c45_pma_setup_forced EXPORT_SYMBOL_GPL vmlinux 0xb8b2b1f7 mce_register_decode_chain -EXPORT_SYMBOL_GPL vmlinux 0xb8c2000b event_triggers_call +EXPORT_SYMBOL_GPL vmlinux 0xb8c30853 fib_rules_lookup +EXPORT_SYMBOL_GPL vmlinux 0xb8c450b6 spi_mem_driver_register_with_owner EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put +EXPORT_SYMBOL_GPL vmlinux 0xb8d081b3 thermal_zone_get_temp +EXPORT_SYMBOL_GPL vmlinux 0xb8d13456 tcp_twsk_unique +EXPORT_SYMBOL_GPL vmlinux 0xb8e37e9c fscrypt_prepare_new_inode +EXPORT_SYMBOL_GPL vmlinux 0xb8eff640 pm_generic_poweroff_noirq EXPORT_SYMBOL_GPL vmlinux 0xb8f11603 idr_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb8f8a5c8 tpm_transmit_cmd +EXPORT_SYMBOL_GPL vmlinux 0xb8f9ea36 device_set_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0xb8fcc798 mddev_suspend EXPORT_SYMBOL_GPL vmlinux 0xb912560d static_key_disable -EXPORT_SYMBOL_GPL vmlinux 0xb91716ae fwnode_handle_get -EXPORT_SYMBOL_GPL vmlinux 0xb929f245 em_dev_register_perf_domain -EXPORT_SYMBOL_GPL vmlinux 0xb9311c74 crypto_stats_ahash_update -EXPORT_SYMBOL_GPL vmlinux 0xb931ec51 phy_led_trigger_change_speed -EXPORT_SYMBOL_GPL vmlinux 0xb947d442 devm_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0xb966f59f pci_disable_sriov +EXPORT_SYMBOL_GPL vmlinux 0xb922a2ee pci_pr3_present +EXPORT_SYMBOL_GPL vmlinux 0xb9258385 xdp_return_frame_rx_napi +EXPORT_SYMBOL_GPL vmlinux 0xb93a64f5 dma_alloc_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0xb93eaaea __lock_page_killable +EXPORT_SYMBOL_GPL vmlinux 0xb941cf5d bpf_offload_dev_create +EXPORT_SYMBOL_GPL vmlinux 0xb944436f of_devfreq_cooling_register_power +EXPORT_SYMBOL_GPL vmlinux 0xb9467689 watchdog_set_last_hw_keepalive EXPORT_SYMBOL_GPL vmlinux 0xb9681621 xdp_do_flush -EXPORT_SYMBOL_GPL vmlinux 0xb97cf950 pm_generic_freeze_late +EXPORT_SYMBOL_GPL vmlinux 0xb96fe365 relay_close +EXPORT_SYMBOL_GPL vmlinux 0xb97b019f bpfilter_umh_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xb97b5f40 efivar_entry_delete EXPORT_SYMBOL_GPL vmlinux 0xb9852d11 __traceiter_mc_event EXPORT_SYMBOL_GPL vmlinux 0xb98bb315 phy_gbit_fibre_features -EXPORT_SYMBOL_GPL vmlinux 0xb99a0f8c pwm_capture -EXPORT_SYMBOL_GPL vmlinux 0xb9aa96f6 __SCK__tp_func_non_standard_event -EXPORT_SYMBOL_GPL vmlinux 0xb9aff2e9 __SCK__tp_func_tcp_send_reset +EXPORT_SYMBOL_GPL vmlinux 0xb9ae0527 dst_cache_set_ip4 EXPORT_SYMBOL_GPL vmlinux 0xb9b9df41 usb_amd_dev_put +EXPORT_SYMBOL_GPL vmlinux 0xb9bac1a5 phy_create_lookup +EXPORT_SYMBOL_GPL vmlinux 0xb9bc3576 power_supply_get_property EXPORT_SYMBOL_GPL vmlinux 0xb9c16f51 hv_max_vp_index EXPORT_SYMBOL_GPL vmlinux 0xb9c425de register_syscore_ops EXPORT_SYMBOL_GPL vmlinux 0xb9d025c9 llist_del_first -EXPORT_SYMBOL_GPL vmlinux 0xb9e0bb1c iopf_queue_remove_device -EXPORT_SYMBOL_GPL vmlinux 0xb9fe84e7 pci_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0xb9d26788 spi_bus_lock +EXPORT_SYMBOL_GPL vmlinux 0xb9d51a8b sock_diag_destroy +EXPORT_SYMBOL_GPL vmlinux 0xb9d8af4d ehci_adjust_port_wakeup_flags +EXPORT_SYMBOL_GPL vmlinux 0xb9edec6a posix_acl_default_xattr_handler EXPORT_SYMBOL_GPL vmlinux 0xba01ec83 hv_stimer_global_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xba02ca46 platform_get_irq_byname EXPORT_SYMBOL_GPL vmlinux 0xba057786 kernel_read_file_from_path_initns +EXPORT_SYMBOL_GPL vmlinux 0xba089699 xenbus_grant_ring +EXPORT_SYMBOL_GPL vmlinux 0xba0afe5e __of_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0xba191009 pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0xba1e922b trace_array_printk EXPORT_SYMBOL_GPL vmlinux 0xba220db7 __wake_up_sync_key +EXPORT_SYMBOL_GPL vmlinux 0xba245bea fat_build_inode EXPORT_SYMBOL_GPL vmlinux 0xba2b7f64 cpufreq_generic_get -EXPORT_SYMBOL_GPL vmlinux 0xba2dc013 icc_enable -EXPORT_SYMBOL_GPL vmlinux 0xba4982fc acpi_subsys_poweroff -EXPORT_SYMBOL_GPL vmlinux 0xba5114d6 bpf_trace_run2 -EXPORT_SYMBOL_GPL vmlinux 0xba6fd12a ata_host_start -EXPORT_SYMBOL_GPL vmlinux 0xba705c05 rdev_get_name -EXPORT_SYMBOL_GPL vmlinux 0xba7112de __phy_modify -EXPORT_SYMBOL_GPL vmlinux 0xba7d71e2 regulator_get_error_flags -EXPORT_SYMBOL_GPL vmlinux 0xba82b386 devlink_param_value_changed +EXPORT_SYMBOL_GPL vmlinux 0xba359043 blkcg_root_css +EXPORT_SYMBOL_GPL vmlinux 0xba39a59a pm_clk_destroy +EXPORT_SYMBOL_GPL vmlinux 0xba3a8afb devm_pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0xba3c7d4c crypto_hash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0xba54c287 pm_genpd_remove +EXPORT_SYMBOL_GPL vmlinux 0xba64a09c ata_cable_unknown +EXPORT_SYMBOL_GPL vmlinux 0xba6af8d9 pskb_put +EXPORT_SYMBOL_GPL vmlinux 0xba81de94 vchan_find_desc EXPORT_SYMBOL_GPL vmlinux 0xba82f246 uv_bios_install_heap -EXPORT_SYMBOL_GPL vmlinux 0xba90ac7e aead_geniv_alloc -EXPORT_SYMBOL_GPL vmlinux 0xba9b00bb platform_get_resource_byname -EXPORT_SYMBOL_GPL vmlinux 0xba9d8895 get_pid_task -EXPORT_SYMBOL_GPL vmlinux 0xbab12813 powercap_register_zone +EXPORT_SYMBOL_GPL vmlinux 0xba8a9a19 sdio_writesb +EXPORT_SYMBOL_GPL vmlinux 0xba8e813b kthread_park +EXPORT_SYMBOL_GPL vmlinux 0xba9a7262 xdp_rxq_info_unreg +EXPORT_SYMBOL_GPL vmlinux 0xbab9713a simple_attr_write EXPORT_SYMBOL_GPL vmlinux 0xbab9a9f0 maxim_charger_currents -EXPORT_SYMBOL_GPL vmlinux 0xbabdaa95 __traceiter_neigh_update -EXPORT_SYMBOL_GPL vmlinux 0xbac17997 battery_hook_register -EXPORT_SYMBOL_GPL vmlinux 0xbac9bc41 pci_epc_destroy -EXPORT_SYMBOL_GPL vmlinux 0xbacc3880 fsnotify_find_mark +EXPORT_SYMBOL_GPL vmlinux 0xbabb5491 input_class +EXPORT_SYMBOL_GPL vmlinux 0xbabce5c1 devlink_reload_disable +EXPORT_SYMBOL_GPL vmlinux 0xbabeb0e7 tty_buffer_set_limit +EXPORT_SYMBOL_GPL vmlinux 0xbac49158 __SCK__tp_func_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0xbaccc6a7 ata_port_desc EXPORT_SYMBOL_GPL vmlinux 0xbaf22757 kvfree_call_rcu +EXPORT_SYMBOL_GPL vmlinux 0xbaf34f05 rio_unregister_mport EXPORT_SYMBOL_GPL vmlinux 0xbaf6850c fsnotify_wait_marks_destroyed -EXPORT_SYMBOL_GPL vmlinux 0xbaf8b1e9 dma_async_device_channel_register EXPORT_SYMBOL_GPL vmlinux 0xbaf9d785 __tss_limit_invalid -EXPORT_SYMBOL_GPL vmlinux 0xbafb16ae crypto_register_kpp EXPORT_SYMBOL_GPL vmlinux 0xbb0ab47b debug_locks EXPORT_SYMBOL_GPL vmlinux 0xbb0b25d2 register_xenbus_watch -EXPORT_SYMBOL_GPL vmlinux 0xbb284f36 auxiliary_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0xbb36a07c sdio_retune_release +EXPORT_SYMBOL_GPL vmlinux 0xbb25b8c8 splice_to_pipe +EXPORT_SYMBOL_GPL vmlinux 0xbb2d4bf4 cpufreq_disable_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0xbb31af4d unwind_get_return_address +EXPORT_SYMBOL_GPL vmlinux 0xbb3bb184 ncsi_vlan_rx_add_vid +EXPORT_SYMBOL_GPL vmlinux 0xbb4b2cef devm_request_pci_bus_resources EXPORT_SYMBOL_GPL vmlinux 0xbb5598ce get_llc_id -EXPORT_SYMBOL_GPL vmlinux 0xbb63e844 bsg_register_queue EXPORT_SYMBOL_GPL vmlinux 0xbb6a3cbd devlink_fmsg_arr_pair_nest_start +EXPORT_SYMBOL_GPL vmlinux 0xbb6dc668 posix_acl_access_xattr_handler EXPORT_SYMBOL_GPL vmlinux 0xbb6f025a asymmetric_key_generate_id EXPORT_SYMBOL_GPL vmlinux 0xbb7195a5 xdp_warn -EXPORT_SYMBOL_GPL vmlinux 0xbb8d4714 tpm_try_get_ops +EXPORT_SYMBOL_GPL vmlinux 0xbb7a266a exportfs_encode_fh +EXPORT_SYMBOL_GPL vmlinux 0xbb8ea836 crypto_ahash_setkey EXPORT_SYMBOL_GPL vmlinux 0xbb93eec5 ioasid_alloc -EXPORT_SYMBOL_GPL vmlinux 0xbba3c8c0 crypto_grab_shash -EXPORT_SYMBOL_GPL vmlinux 0xbbb017b1 synth_event_gen_cmd_array_start -EXPORT_SYMBOL_GPL vmlinux 0xbbb4089e hwspin_lock_request +EXPORT_SYMBOL_GPL vmlinux 0xbb964362 devm_create_dev_dax +EXPORT_SYMBOL_GPL vmlinux 0xbbb6e91c xfrm_output EXPORT_SYMBOL_GPL vmlinux 0xbbb98859 edid_info -EXPORT_SYMBOL_GPL vmlinux 0xbbd9ad38 fb_bl_default_curve -EXPORT_SYMBOL_GPL vmlinux 0xbbe2f9e5 skcipher_walk_complete +EXPORT_SYMBOL_GPL vmlinux 0xbbc5d232 phy_exit +EXPORT_SYMBOL_GPL vmlinux 0xbbc7c123 led_classdev_register_ext +EXPORT_SYMBOL_GPL vmlinux 0xbbcbe694 sfp_register_socket +EXPORT_SYMBOL_GPL vmlinux 0xbbe13ae7 iopf_queue_flush_dev EXPORT_SYMBOL_GPL vmlinux 0xbbe56404 sprint_OID -EXPORT_SYMBOL_GPL vmlinux 0xbbf46a3b ata_acpi_cbl_80wire +EXPORT_SYMBOL_GPL vmlinux 0xbbeb0390 pm_runtime_irq_safe +EXPORT_SYMBOL_GPL vmlinux 0xbbf0d44f transport_add_device EXPORT_SYMBOL_GPL vmlinux 0xbbf4dfbe phy_basic_t1_features -EXPORT_SYMBOL_GPL vmlinux 0xbbfbfa53 rio_map_outb_region -EXPORT_SYMBOL_GPL vmlinux 0xbc0e5e5f __usb_create_hcd -EXPORT_SYMBOL_GPL vmlinux 0xbc1f6ad0 subsys_system_register +EXPORT_SYMBOL_GPL vmlinux 0xbbfdde49 ehci_reset +EXPORT_SYMBOL_GPL vmlinux 0xbc01900f xenbus_watch_pathfmt +EXPORT_SYMBOL_GPL vmlinux 0xbc114e42 iomap_fiemap EXPORT_SYMBOL_GPL vmlinux 0xbc3f2cb0 timecounter_cyc2time +EXPORT_SYMBOL_GPL vmlinux 0xbc4942c9 gpiod_get_array_value EXPORT_SYMBOL_GPL vmlinux 0xbc4e24bb copy_mc_to_kernel EXPORT_SYMBOL_GPL vmlinux 0xbc60dc37 cpufreq_show_cpus -EXPORT_SYMBOL_GPL vmlinux 0xbc61af33 vfs_test_lock EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0xbc766f82 unregister_acpi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0xbc777c0c mmc_regulator_set_vqmmc -EXPORT_SYMBOL_GPL vmlinux 0xbc835ec2 dev_coredumpv -EXPORT_SYMBOL_GPL vmlinux 0xbc989f06 __devm_spi_alloc_controller +EXPORT_SYMBOL_GPL vmlinux 0xbc873d9c __traceiter_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0xbc8b8836 iommu_device_sysfs_remove +EXPORT_SYMBOL_GPL vmlinux 0xbc91784a skcipher_walk_virt +EXPORT_SYMBOL_GPL vmlinux 0xbc9a4020 __traceiter_neigh_event_send_dead EXPORT_SYMBOL_GPL vmlinux 0xbc9b8588 ehci_cf_port_reset_rwsem -EXPORT_SYMBOL_GPL vmlinux 0xbca101f2 __pm_runtime_disable -EXPORT_SYMBOL_GPL vmlinux 0xbca30f7d usb_get_maximum_speed +EXPORT_SYMBOL_GPL vmlinux 0xbc9ca3d5 nf_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0xbcb29169 irq_find_matching_fwspec EXPORT_SYMBOL_GPL vmlinux 0xbcb838a1 amd_flush_garts EXPORT_SYMBOL_GPL vmlinux 0xbcc15e75 ktime_get_coarse_with_offset -EXPORT_SYMBOL_GPL vmlinux 0xbcc632ab hwspin_lock_get_id EXPORT_SYMBOL_GPL vmlinux 0xbccfd4d8 register_oldmem_pfn_is_ram -EXPORT_SYMBOL_GPL vmlinux 0xbcdc722a dw_pcie_ep_init_notify EXPORT_SYMBOL_GPL vmlinux 0xbcdd5b99 iommu_group_set_name -EXPORT_SYMBOL_GPL vmlinux 0xbce03bb0 devm_hwspin_lock_unregister -EXPORT_SYMBOL_GPL vmlinux 0xbcf1cd7a pci_d3cold_disable +EXPORT_SYMBOL_GPL vmlinux 0xbce02a04 phy_init +EXPORT_SYMBOL_GPL vmlinux 0xbceae187 device_remove_bin_file EXPORT_SYMBOL_GPL vmlinux 0xbcf1f0e6 zs_create_pool -EXPORT_SYMBOL_GPL vmlinux 0xbd006c17 __sock_recv_ts_and_drops -EXPORT_SYMBOL_GPL vmlinux 0xbd04c501 __SCK__tp_func_block_rq_insert -EXPORT_SYMBOL_GPL vmlinux 0xbd328a5e fib_nexthop_info +EXPORT_SYMBOL_GPL vmlinux 0xbd0d674b fsverity_prepare_setattr +EXPORT_SYMBOL_GPL vmlinux 0xbd207e84 pci_load_and_free_saved_state +EXPORT_SYMBOL_GPL vmlinux 0xbd399ddb nvdimm_to_bus EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq -EXPORT_SYMBOL_GPL vmlinux 0xbd4941ef _proc_mkdir -EXPORT_SYMBOL_GPL vmlinux 0xbd6dac54 iomap_readahead +EXPORT_SYMBOL_GPL vmlinux 0xbd4c5ef2 xdp_return_frame_bulk +EXPORT_SYMBOL_GPL vmlinux 0xbd6054a6 icc_enable +EXPORT_SYMBOL_GPL vmlinux 0xbd624b7c kernel_kobj +EXPORT_SYMBOL_GPL vmlinux 0xbd758b6e vp_modern_get_features EXPORT_SYMBOL_GPL vmlinux 0xbd7aaaee add_memory -EXPORT_SYMBOL_GPL vmlinux 0xbd93bbe0 __inet_lookup_established +EXPORT_SYMBOL_GPL vmlinux 0xbd934286 tty_ldisc_receive_buf EXPORT_SYMBOL_GPL vmlinux 0xbd99e873 __SCT__tp_func_cpu_idle -EXPORT_SYMBOL_GPL vmlinux 0xbd9b52e7 blkg_lookup_slowpath -EXPORT_SYMBOL_GPL vmlinux 0xbd9efb87 skb_zerocopy -EXPORT_SYMBOL_GPL vmlinux 0xbd9f0fc2 dmaengine_desc_set_metadata_len -EXPORT_SYMBOL_GPL vmlinux 0xbda7148b fscrypt_ioctl_add_key -EXPORT_SYMBOL_GPL vmlinux 0xbdaaf73d list_lru_walk_one -EXPORT_SYMBOL_GPL vmlinux 0xbdb1f3a8 ip_route_output_key_hash +EXPORT_SYMBOL_GPL vmlinux 0xbd9b99df ata_cable_ignore +EXPORT_SYMBOL_GPL vmlinux 0xbda262de fscrypt_ioctl_remove_key_all_users +EXPORT_SYMBOL_GPL vmlinux 0xbda73f0b inode_congested +EXPORT_SYMBOL_GPL vmlinux 0xbdab58be wakeup_sources_walk_start EXPORT_SYMBOL_GPL vmlinux 0xbdb2217d hv_is_isolation_supported EXPORT_SYMBOL_GPL vmlinux 0xbdb2dfd5 uv_bios_reserved_page_pa -EXPORT_SYMBOL_GPL vmlinux 0xbdbb1726 cpufreq_table_index_unsorted -EXPORT_SYMBOL_GPL vmlinux 0xbdbb8477 __crypto_alloc_tfm -EXPORT_SYMBOL_GPL vmlinux 0xbdcf9072 usb_free_streams -EXPORT_SYMBOL_GPL vmlinux 0xbdf38a83 rio_mport_write_config_16 -EXPORT_SYMBOL_GPL vmlinux 0xbdfe125b regulator_irq_helper -EXPORT_SYMBOL_GPL vmlinux 0xbe014f79 securityfs_create_dir -EXPORT_SYMBOL_GPL vmlinux 0xbe0bd779 clk_register_mux_table -EXPORT_SYMBOL_GPL vmlinux 0xbe10011c ata_sff_lost_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xbe2bb1b6 __SCK__tp_func_rpm_return_int -EXPORT_SYMBOL_GPL vmlinux 0xbe2f33bf trace_seq_path -EXPORT_SYMBOL_GPL vmlinux 0xbe4bdf0f usb_register_dev -EXPORT_SYMBOL_GPL vmlinux 0xbe4dcce4 blkdev_ioctl -EXPORT_SYMBOL_GPL vmlinux 0xbe5117ca md_find_rdev_rcu -EXPORT_SYMBOL_GPL vmlinux 0xbe5912b5 sch_frag_xmit_hook +EXPORT_SYMBOL_GPL vmlinux 0xbdb487b6 blk_mq_freeze_queue +EXPORT_SYMBOL_GPL vmlinux 0xbdf85834 iommu_attach_group +EXPORT_SYMBOL_GPL vmlinux 0xbe0d9b51 devm_hwspin_lock_free +EXPORT_SYMBOL_GPL vmlinux 0xbe153dd8 fwnode_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xbe2507ca skb_zerocopy +EXPORT_SYMBOL_GPL vmlinux 0xbe4a74d0 nf_queue +EXPORT_SYMBOL_GPL vmlinux 0xbe51634b sata_pmp_qc_defer_cmd_switch EXPORT_SYMBOL_GPL vmlinux 0xbe5c888b crypto_chain -EXPORT_SYMBOL_GPL vmlinux 0xbe5e1509 regulator_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0xbe615a3e iommu_dev_feature_enabled EXPORT_SYMBOL_GPL vmlinux 0xbe65e182 max_cswd_read_retries EXPORT_SYMBOL_GPL vmlinux 0xbe687e88 wake_up_all_idle_cpus EXPORT_SYMBOL_GPL vmlinux 0xbe6d43d7 ioasid_put -EXPORT_SYMBOL_GPL vmlinux 0xbe6f03ee badblocks_set -EXPORT_SYMBOL_GPL vmlinux 0xbe718149 usb_string EXPORT_SYMBOL_GPL vmlinux 0xbe744257 efi_get_embedded_fw -EXPORT_SYMBOL_GPL vmlinux 0xbe838e93 securityfs_remove EXPORT_SYMBOL_GPL vmlinux 0xbe9a83d5 dw_pcie_write -EXPORT_SYMBOL_GPL vmlinux 0xbea03215 console_drivers EXPORT_SYMBOL_GPL vmlinux 0xbea5ff1e static_key_initialized -EXPORT_SYMBOL_GPL vmlinux 0xbeba3bf6 devm_gpiod_unhinge -EXPORT_SYMBOL_GPL vmlinux 0xbec308f1 blkg_rwstat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0xbeab3213 crypto_shash_alg_has_setkey +EXPORT_SYMBOL_GPL vmlinux 0xbeb3b298 balloon_aops +EXPORT_SYMBOL_GPL vmlinux 0xbeb3cfec dev_pm_qos_update_user_latency_tolerance EXPORT_SYMBOL_GPL vmlinux 0xbec66c3a __apei_exec_run +EXPORT_SYMBOL_GPL vmlinux 0xbedef698 fat_attach +EXPORT_SYMBOL_GPL vmlinux 0xbef129e1 __SCK__tp_func_cpu_frequency +EXPORT_SYMBOL_GPL vmlinux 0xbefe027c acpi_subsys_suspend_late EXPORT_SYMBOL_GPL vmlinux 0xbf041102 register_vt_notifier -EXPORT_SYMBOL_GPL vmlinux 0xbf05f198 debugfs_create_u32 -EXPORT_SYMBOL_GPL vmlinux 0xbf0b0ec8 kstrdup_quotable_cmdline +EXPORT_SYMBOL_GPL vmlinux 0xbf067f42 sdio_release_irq +EXPORT_SYMBOL_GPL vmlinux 0xbf118c55 do_take_over_console +EXPORT_SYMBOL_GPL vmlinux 0xbf13dcb9 spi_busnum_to_master EXPORT_SYMBOL_GPL vmlinux 0xbf165dec __SCT__tp_func_pelt_se_tp -EXPORT_SYMBOL_GPL vmlinux 0xbf2579da dm_disk -EXPORT_SYMBOL_GPL vmlinux 0xbf45fadc platform_get_irq_byname -EXPORT_SYMBOL_GPL vmlinux 0xbf4d3bb9 bsg_job_done -EXPORT_SYMBOL_GPL vmlinux 0xbf4e302b skb_morph -EXPORT_SYMBOL_GPL vmlinux 0xbf5ee72d blk_set_pm_only -EXPORT_SYMBOL_GPL vmlinux 0xbf9ba7c1 devm_pci_epc_destroy -EXPORT_SYMBOL_GPL vmlinux 0xbf9f0b7d rio_alloc_net +EXPORT_SYMBOL_GPL vmlinux 0xbf54c4b5 blkg_conf_prep +EXPORT_SYMBOL_GPL vmlinux 0xbf570335 sysfs_group_change_owner +EXPORT_SYMBOL_GPL vmlinux 0xbf67a145 devm_free_pages +EXPORT_SYMBOL_GPL vmlinux 0xbf6f964a nd_region_dev +EXPORT_SYMBOL_GPL vmlinux 0xbf76d369 usb_hcd_platform_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xbf7b1415 fwnode_graph_get_endpoint_by_id +EXPORT_SYMBOL_GPL vmlinux 0xbf855eaa cpufreq_enable_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0xbf9c5f2e nvmem_cell_read_u64 EXPORT_SYMBOL_GPL vmlinux 0xbfbc5434 pciserial_resume_ports -EXPORT_SYMBOL_GPL vmlinux 0xbfd4745d skcipher_walk_async -EXPORT_SYMBOL_GPL vmlinux 0xbfe0fd65 pci_hp_add_bridge -EXPORT_SYMBOL_GPL vmlinux 0xbfe42eeb balloon_page_enqueue +EXPORT_SYMBOL_GPL vmlinux 0xbfdd9c41 metadata_dst_free_percpu EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control +EXPORT_SYMBOL_GPL vmlinux 0xbfe7ac17 crypto_shash_finup EXPORT_SYMBOL_GPL vmlinux 0xbfed2cd9 __wait_rcu_gp -EXPORT_SYMBOL_GPL vmlinux 0xbff1aa84 __traceiter_br_fdb_add -EXPORT_SYMBOL_GPL vmlinux 0xbff22a35 nvdimm_bus_register -EXPORT_SYMBOL_GPL vmlinux 0xc001bc77 dev_pm_opp_disable -EXPORT_SYMBOL_GPL vmlinux 0xc01cbf30 xfrm_audit_state_icvfail -EXPORT_SYMBOL_GPL vmlinux 0xc02cd2d4 xenbus_map_ring_valloc -EXPORT_SYMBOL_GPL vmlinux 0xc0343158 __traceiter_devlink_trap_report -EXPORT_SYMBOL_GPL vmlinux 0xc0612f2c xfrm_dev_offload_ok -EXPORT_SYMBOL_GPL vmlinux 0xc06e9c44 devm_gpiod_get_index_optional -EXPORT_SYMBOL_GPL vmlinux 0xc078882a __traceiter_sched_cpu_capacity_tp -EXPORT_SYMBOL_GPL vmlinux 0xc07fab53 virtqueue_add_inbuf_ctx -EXPORT_SYMBOL_GPL vmlinux 0xc0876e04 sdio_signal_irq -EXPORT_SYMBOL_GPL vmlinux 0xc08a32a6 xdp_rxq_info_unreg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0xbff0ccec dev_pm_opp_get_suspend_opp_freq +EXPORT_SYMBOL_GPL vmlinux 0xbffc6f83 __hwspin_trylock +EXPORT_SYMBOL_GPL vmlinux 0xbffd8191 nd_cmd_in_size +EXPORT_SYMBOL_GPL vmlinux 0xc002012b tty_buffer_unlock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xc0040e4a dma_buf_end_cpu_access +EXPORT_SYMBOL_GPL vmlinux 0xc01067b1 __tracepoint_mc_event +EXPORT_SYMBOL_GPL vmlinux 0xc0451e82 con_debug_enter +EXPORT_SYMBOL_GPL vmlinux 0xc0621142 tps6586x_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0xc0654667 __inet_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0xc06652c3 tpm_chip_stop +EXPORT_SYMBOL_GPL vmlinux 0xc0895ae6 dev_pm_opp_put_clkname EXPORT_SYMBOL_GPL vmlinux 0xc08bbce6 irq_get_percpu_devid_partition EXPORT_SYMBOL_GPL vmlinux 0xc090c376 net_selftest_get_strings -EXPORT_SYMBOL_GPL vmlinux 0xc0925d2f nvdimm_badblocks_populate -EXPORT_SYMBOL_GPL vmlinux 0xc09b9001 wm8350_reg_lock EXPORT_SYMBOL_GPL vmlinux 0xc0a96e14 rcu_gp_is_expedited -EXPORT_SYMBOL_GPL vmlinux 0xc0ad48fc pci_device_is_present -EXPORT_SYMBOL_GPL vmlinux 0xc0ba89ca __tracepoint_devlink_hwmsg +EXPORT_SYMBOL_GPL vmlinux 0xc0c52c79 pm_runtime_barrier +EXPORT_SYMBOL_GPL vmlinux 0xc0db97e7 hypervisor_kobj EXPORT_SYMBOL_GPL vmlinux 0xc0dcb59e edac_layer_name -EXPORT_SYMBOL_GPL vmlinux 0xc0dd63bd kernfs_path_from_node -EXPORT_SYMBOL_GPL vmlinux 0xc0e85dfb mmc_regulator_get_supply +EXPORT_SYMBOL_GPL vmlinux 0xc0e71067 devlink_resource_occ_get_register EXPORT_SYMBOL_GPL vmlinux 0xc0f0458a ip_tunnel_unneed_metadata -EXPORT_SYMBOL_GPL vmlinux 0xc0f75701 __tracepoint_add_device_to_group -EXPORT_SYMBOL_GPL vmlinux 0xc0fa2212 do_unregister_con_driver -EXPORT_SYMBOL_GPL vmlinux 0xc0ffaab8 pci_msi_create_irq_domain -EXPORT_SYMBOL_GPL vmlinux 0xc0fffbdc acpi_storage_d3 -EXPORT_SYMBOL_GPL vmlinux 0xc1028806 acpi_dma_request_slave_chan_by_index EXPORT_SYMBOL_GPL vmlinux 0xc1086e0c sysrq_toggle_support -EXPORT_SYMBOL_GPL vmlinux 0xc10f6112 __trace_note_message EXPORT_SYMBOL_GPL vmlinux 0xc10fddb8 name_to_dev_t -EXPORT_SYMBOL_GPL vmlinux 0xc112c9cc __tracepoint_extlog_mem_event -EXPORT_SYMBOL_GPL vmlinux 0xc114f5e9 platform_bus_type -EXPORT_SYMBOL_GPL vmlinux 0xc11e13f4 phy_exit -EXPORT_SYMBOL_GPL vmlinux 0xc1336fcc devlink_net -EXPORT_SYMBOL_GPL vmlinux 0xc1353ee7 pm_generic_resume -EXPORT_SYMBOL_GPL vmlinux 0xc14255e9 ping_init_sock -EXPORT_SYMBOL_GPL vmlinux 0xc1536cca ethnl_cable_test_amplitude -EXPORT_SYMBOL_GPL vmlinux 0xc15f55ba dev_pm_opp_put_opp_table -EXPORT_SYMBOL_GPL vmlinux 0xc15fcb80 cgroup_get_from_path +EXPORT_SYMBOL_GPL vmlinux 0xc1113f79 cgroup_attach_task_all +EXPORT_SYMBOL_GPL vmlinux 0xc13d5cf9 acpi_get_first_physical_node +EXPORT_SYMBOL_GPL vmlinux 0xc151a1fd da903x_writes +EXPORT_SYMBOL_GPL vmlinux 0xc153ee7a blk_poll +EXPORT_SYMBOL_GPL vmlinux 0xc155dfc8 crypto_alloc_sync_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xc16c43d2 clk_mux_determine_rate_flags EXPORT_SYMBOL_GPL vmlinux 0xc1743430 cpuidle_disable_device EXPORT_SYMBOL_GPL vmlinux 0xc17515d7 usb_hcds_loaded EXPORT_SYMBOL_GPL vmlinux 0xc17e9946 usb_show_dynids EXPORT_SYMBOL_GPL vmlinux 0xc18cdf36 amd_df_indirect_read -EXPORT_SYMBOL_GPL vmlinux 0xc18e541c bio_iov_iter_get_pages -EXPORT_SYMBOL_GPL vmlinux 0xc1915cf0 wakeup_source_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc1ac253c sis_info133_for_sata -EXPORT_SYMBOL_GPL vmlinux 0xc1c21f71 xenbus_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0xc1d0fd29 devlink_port_attrs_pci_pf_set +EXPORT_SYMBOL_GPL vmlinux 0xc19e13d7 cpufreq_table_index_unsorted +EXPORT_SYMBOL_GPL vmlinux 0xc1a86410 __kthread_should_park +EXPORT_SYMBOL_GPL vmlinux 0xc1b2c599 cpufreq_freq_transition_end +EXPORT_SYMBOL_GPL vmlinux 0xc1c0ade7 serial8250_tx_chars +EXPORT_SYMBOL_GPL vmlinux 0xc1c1fb56 sdio_readb +EXPORT_SYMBOL_GPL vmlinux 0xc1cc4287 xenbus_unmap_ring_vfree +EXPORT_SYMBOL_GPL vmlinux 0xc1d63166 sata_scr_valid EXPORT_SYMBOL_GPL vmlinux 0xc1d989c5 vfio_external_check_extension -EXPORT_SYMBOL_GPL vmlinux 0xc1dedc6d pm_runtime_get_if_active -EXPORT_SYMBOL_GPL vmlinux 0xc1e93503 pinctrl_find_gpio_range_from_pin_nolock -EXPORT_SYMBOL_GPL vmlinux 0xc1fbcadf cpufreq_register_governor -EXPORT_SYMBOL_GPL vmlinux 0xc2007017 splice_to_pipe +EXPORT_SYMBOL_GPL vmlinux 0xc1e8b295 inet6_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0xc1ec935f battery_hook_register EXPORT_SYMBOL_GPL vmlinux 0xc2033d9f amd_get_highest_perf -EXPORT_SYMBOL_GPL vmlinux 0xc2063aca pci_user_write_config_dword -EXPORT_SYMBOL_GPL vmlinux 0xc20a8e71 fixed_phy_register -EXPORT_SYMBOL_GPL vmlinux 0xc2225c94 bpf_prog_add -EXPORT_SYMBOL_GPL vmlinux 0xc22422f2 generic_fh_to_parent +EXPORT_SYMBOL_GPL vmlinux 0xc20ba8e8 serdev_device_wait_until_sent +EXPORT_SYMBOL_GPL vmlinux 0xc20db115 genphy_c45_pma_read_abilities +EXPORT_SYMBOL_GPL vmlinux 0xc210a5bb generic_online_page +EXPORT_SYMBOL_GPL vmlinux 0xc2281533 nd_blk_region_set_provider_data EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases -EXPORT_SYMBOL_GPL vmlinux 0xc22c363a regmap_parse_val -EXPORT_SYMBOL_GPL vmlinux 0xc22df6df pci_epc_set_msix EXPORT_SYMBOL_GPL vmlinux 0xc23601c1 __SCT__tp_func_pelt_cfs_tp -EXPORT_SYMBOL_GPL vmlinux 0xc23c1026 usb_acpi_set_power_state -EXPORT_SYMBOL_GPL vmlinux 0xc244c1b6 adp5520_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0xc25b81cd tty_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0xc2434530 dm_bio_get_target_bio_nr +EXPORT_SYMBOL_GPL vmlinux 0xc24440cc devm_intel_scu_ipc_dev_get +EXPORT_SYMBOL_GPL vmlinux 0xc24623fc acpi_spi_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc2487e23 spi_controller_resume +EXPORT_SYMBOL_GPL vmlinux 0xc252a414 synth_event_trace_array +EXPORT_SYMBOL_GPL vmlinux 0xc257f9c7 ip_route_output_flow EXPORT_SYMBOL_GPL vmlinux 0xc25b8971 hv_remove_crash_handler EXPORT_SYMBOL_GPL vmlinux 0xc2692173 wakeup_sources_read_lock -EXPORT_SYMBOL_GPL vmlinux 0xc2770509 fib6_check_nexthop -EXPORT_SYMBOL_GPL vmlinux 0xc280cc3a wakeup_source_destroy +EXPORT_SYMBOL_GPL vmlinux 0xc2737a94 __pci_epf_register_driver EXPORT_SYMBOL_GPL vmlinux 0xc287d96a kvm_set_posted_intr_wakeup_handler +EXPORT_SYMBOL_GPL vmlinux 0xc2897aa9 user_describe EXPORT_SYMBOL_GPL vmlinux 0xc289e46d cpufreq_generic_frequency_table_verify -EXPORT_SYMBOL_GPL vmlinux 0xc2985e85 gpiochip_get_data -EXPORT_SYMBOL_GPL vmlinux 0xc29e1a0b ata_acpi_stm +EXPORT_SYMBOL_GPL vmlinux 0xc298443e spi_new_ancillary_device +EXPORT_SYMBOL_GPL vmlinux 0xc29bfb80 crypto_stats_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0xc29c9f80 i2c_probe_func_quick_read +EXPORT_SYMBOL_GPL vmlinux 0xc2a0c13d regcache_mark_dirty EXPORT_SYMBOL_GPL vmlinux 0xc2a1cbaf __cpuhp_state_remove_instance -EXPORT_SYMBOL_GPL vmlinux 0xc2a3c907 agp_add_bridge EXPORT_SYMBOL_GPL vmlinux 0xc2a3e570 errata EXPORT_SYMBOL_GPL vmlinux 0xc2a814db tcp_memory_pressure -EXPORT_SYMBOL_GPL vmlinux 0xc2b75490 gpiochip_line_is_open_drain -EXPORT_SYMBOL_GPL vmlinux 0xc2bcdc47 usb_hcd_unmap_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0xc2b91968 spi_mem_dirmap_read +EXPORT_SYMBOL_GPL vmlinux 0xc2ba1f7b tracepoint_probe_register +EXPORT_SYMBOL_GPL vmlinux 0xc2ba2e45 dax_layout_busy_page +EXPORT_SYMBOL_GPL vmlinux 0xc2bbf941 tpm_tis_remove EXPORT_SYMBOL_GPL vmlinux 0xc2c1c427 perf_event_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xc2d0c760 wm831x_reg_write -EXPORT_SYMBOL_GPL vmlinux 0xc2d24672 blk_ksm_reprogram_all_keys +EXPORT_SYMBOL_GPL vmlinux 0xc2c8c669 __blk_mq_debugfs_rq_show EXPORT_SYMBOL_GPL vmlinux 0xc2de27ca hest_disable -EXPORT_SYMBOL_GPL vmlinux 0xc2ee244c dma_buf_map_attachment -EXPORT_SYMBOL_GPL vmlinux 0xc2f003e4 acpi_subsys_prepare EXPORT_SYMBOL_GPL vmlinux 0xc2fb483f __SCT__tp_func_tcp_bad_csum -EXPORT_SYMBOL_GPL vmlinux 0xc312e772 serdev_controller_remove -EXPORT_SYMBOL_GPL vmlinux 0xc31eae65 cookie_tcp_reqsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc2fcf8c0 blk_clear_pm_only +EXPORT_SYMBOL_GPL vmlinux 0xc3098324 __tracepoint_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0xc30a024b fsnotify_get_group +EXPORT_SYMBOL_GPL vmlinux 0xc30acfb3 exportfs_decode_fh_raw +EXPORT_SYMBOL_GPL vmlinux 0xc31abac1 cpci_hp_register_controller EXPORT_SYMBOL_GPL vmlinux 0xc3329c64 apic -EXPORT_SYMBOL_GPL vmlinux 0xc33b7102 crypto_stats_decompress -EXPORT_SYMBOL_GPL vmlinux 0xc33d4438 da9052_adc_manual_read +EXPORT_SYMBOL_GPL vmlinux 0xc3389cbe class_find_device +EXPORT_SYMBOL_GPL vmlinux 0xc3392c83 power_supply_property_is_writeable EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object -EXPORT_SYMBOL_GPL vmlinux 0xc34defd6 pktgen_xfrm_outer_mode_output -EXPORT_SYMBOL_GPL vmlinux 0xc355dfbf acpi_device_update_power -EXPORT_SYMBOL_GPL vmlinux 0xc3567e4a free_vm_area -EXPORT_SYMBOL_GPL vmlinux 0xc362d0ea iommu_fwspec_add_ids +EXPORT_SYMBOL_GPL vmlinux 0xc34f84d0 net_selftest +EXPORT_SYMBOL_GPL vmlinux 0xc3656e7a init_dummy_netdev +EXPORT_SYMBOL_GPL vmlinux 0xc36ff88a __mmu_notifier_register EXPORT_SYMBOL_GPL vmlinux 0xc3708747 trace_vprintk EXPORT_SYMBOL_GPL vmlinux 0xc3805cd1 fs_ftype_to_dtype +EXPORT_SYMBOL_GPL vmlinux 0xc388ddff mmc_poll_for_busy +EXPORT_SYMBOL_GPL vmlinux 0xc3a429b7 rio_alloc_net +EXPORT_SYMBOL_GPL vmlinux 0xc3adb228 __tracepoint_devlink_hwmsg +EXPORT_SYMBOL_GPL vmlinux 0xc3b1f168 sk_msg_trim EXPORT_SYMBOL_GPL vmlinux 0xc3c4c6cc hash_algo_name -EXPORT_SYMBOL_GPL vmlinux 0xc3c9f3dc dm_send_uevents -EXPORT_SYMBOL_GPL vmlinux 0xc3d1c096 devlink_dpipe_table_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc3d5090b msg_zerocopy_put_abort +EXPORT_SYMBOL_GPL vmlinux 0xc3cb19fe edac_pci_handle_pe +EXPORT_SYMBOL_GPL vmlinux 0xc3ce4dbb sdio_set_host_pm_flags EXPORT_SYMBOL_GPL vmlinux 0xc3de65ff ring_buffer_bytes_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc3dec277 devm_device_add_groups EXPORT_SYMBOL_GPL vmlinux 0xc3ea5305 iommu_default_passthrough -EXPORT_SYMBOL_GPL vmlinux 0xc3ef1f53 pci_epc_get_msi -EXPORT_SYMBOL_GPL vmlinux 0xc3f82205 exportfs_decode_fh_raw EXPORT_SYMBOL_GPL vmlinux 0xc426c51f klp_shadow_free_all EXPORT_SYMBOL_GPL vmlinux 0xc428068d sata_deb_timing_long -EXPORT_SYMBOL_GPL vmlinux 0xc42f8b15 relay_reset EXPORT_SYMBOL_GPL vmlinux 0xc43e92b9 trace_seq_bprintf -EXPORT_SYMBOL_GPL vmlinux 0xc446d239 usb_phy_roothub_resume +EXPORT_SYMBOL_GPL vmlinux 0xc448d6b8 __hvc_resize EXPORT_SYMBOL_GPL vmlinux 0xc454fc7b twl_get_type EXPORT_SYMBOL_GPL vmlinux 0xc45d0d13 injectm EXPORT_SYMBOL_GPL vmlinux 0xc45e246f housekeeping_test_cpu EXPORT_SYMBOL_GPL vmlinux 0xc46324f6 dynevent_create EXPORT_SYMBOL_GPL vmlinux 0xc471c67a twl4030_audio_disable_resource +EXPORT_SYMBOL_GPL vmlinux 0xc4722a60 sysfs_update_groups +EXPORT_SYMBOL_GPL vmlinux 0xc47e0f5e pm_generic_thaw_noirq +EXPORT_SYMBOL_GPL vmlinux 0xc47e4396 gpiod_get_raw_array_value_cansleep EXPORT_SYMBOL_GPL vmlinux 0xc48b7ccf ata_mode_string -EXPORT_SYMBOL_GPL vmlinux 0xc48d72e3 sysfs_create_files +EXPORT_SYMBOL_GPL vmlinux 0xc490cfda usb_queue_reset_device EXPORT_SYMBOL_GPL vmlinux 0xc4913442 vfio_group_put_external_user -EXPORT_SYMBOL_GPL vmlinux 0xc49e21a7 tty_perform_flush EXPORT_SYMBOL_GPL vmlinux 0xc4a31146 rdma_cgrp_subsys_on_dfl_key EXPORT_SYMBOL_GPL vmlinux 0xc4a72936 trusted_tpm_send +EXPORT_SYMBOL_GPL vmlinux 0xc4ae3fc6 phy_calibrate +EXPORT_SYMBOL_GPL vmlinux 0xc4b90d43 gpiochip_remove_pin_ranges +EXPORT_SYMBOL_GPL vmlinux 0xc4c65d71 watchdog_notify_pretimeout EXPORT_SYMBOL_GPL vmlinux 0xc4d022cb __SCT__tp_func_napi_poll -EXPORT_SYMBOL_GPL vmlinux 0xc4d9ad96 wwan_port_rx +EXPORT_SYMBOL_GPL vmlinux 0xc4d6ead7 regulator_sync_voltage +EXPORT_SYMBOL_GPL vmlinux 0xc4d7e9ce blk_mq_hctx_set_fq_lock_class +EXPORT_SYMBOL_GPL vmlinux 0xc4e5b762 i2c_handle_smbus_host_notify +EXPORT_SYMBOL_GPL vmlinux 0xc4ee9f7d regmap_get_reg_stride EXPORT_SYMBOL_GPL vmlinux 0xc4f0da12 ktime_get_with_offset -EXPORT_SYMBOL_GPL vmlinux 0xc4ff9add __serdev_device_driver_register +EXPORT_SYMBOL_GPL vmlinux 0xc506bb9b iommu_detach_group EXPORT_SYMBOL_GPL vmlinux 0xc50dca33 __SCT__tp_func_neigh_cleanup_and_release -EXPORT_SYMBOL_GPL vmlinux 0xc50f8adc regulator_set_pull_down_regmap +EXPORT_SYMBOL_GPL vmlinux 0xc5102d67 devm_phy_get EXPORT_SYMBOL_GPL vmlinux 0xc512626a __supported_pte_mask -EXPORT_SYMBOL_GPL vmlinux 0xc54375a9 dm_put -EXPORT_SYMBOL_GPL vmlinux 0xc54f0451 perf_event_refresh -EXPORT_SYMBOL_GPL vmlinux 0xc55bfad0 nd_blk_region_provider_data +EXPORT_SYMBOL_GPL vmlinux 0xc512b31f __rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc517accd __devm_irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0xc51db4ff wm831x_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0xc537072e xfrm_audit_state_add +EXPORT_SYMBOL_GPL vmlinux 0xc54dda50 vp_modern_set_status EXPORT_SYMBOL_GPL vmlinux 0xc55ff962 phy_basic_t1_features_array EXPORT_SYMBOL_GPL vmlinux 0xc5604800 clk_set_rate_exclusive -EXPORT_SYMBOL_GPL vmlinux 0xc564eadd clk_register_divider_table EXPORT_SYMBOL_GPL vmlinux 0xc569d8ce __clk_get_name -EXPORT_SYMBOL_GPL vmlinux 0xc56c4bb3 ata_bmdma32_port_ops -EXPORT_SYMBOL_GPL vmlinux 0xc5740298 device_match_name +EXPORT_SYMBOL_GPL vmlinux 0xc56aaf2b usb_phy_roothub_suspend EXPORT_SYMBOL_GPL vmlinux 0xc575c737 debug_locks_off EXPORT_SYMBOL_GPL vmlinux 0xc5777fca linear_range_get_selector_low_array -EXPORT_SYMBOL_GPL vmlinux 0xc582589a xenbus_dev_error +EXPORT_SYMBOL_GPL vmlinux 0xc57f55bf bus_remove_file +EXPORT_SYMBOL_GPL vmlinux 0xc5875e81 generic_fh_to_dentry +EXPORT_SYMBOL_GPL vmlinux 0xc589c22e mmu_interval_notifier_insert EXPORT_SYMBOL_GPL vmlinux 0xc58a3ee6 icc_node_destroy -EXPORT_SYMBOL_GPL vmlinux 0xc591aa13 devfreq_event_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0xc59d2023 mmc_regulator_set_ocr +EXPORT_SYMBOL_GPL vmlinux 0xc59be49d lp8788_read_multi_bytes +EXPORT_SYMBOL_GPL vmlinux 0xc5a30fc6 int_active_memcg EXPORT_SYMBOL_GPL vmlinux 0xc5a5c678 uart_parse_earlycon -EXPORT_SYMBOL_GPL vmlinux 0xc5a89355 vring_new_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0xc5b5bc6d devm_acpi_dev_add_driver_gpios -EXPORT_SYMBOL_GPL vmlinux 0xc5bba70b register_virtio_device -EXPORT_SYMBOL_GPL vmlinux 0xc5c98148 tty_buffer_set_limit -EXPORT_SYMBOL_GPL vmlinux 0xc5d4234f fuse_get_unique -EXPORT_SYMBOL_GPL vmlinux 0xc5e66890 sock_prot_inuse_get -EXPORT_SYMBOL_GPL vmlinux 0xc5ebb88e nfs_ssc_client_tbl +EXPORT_SYMBOL_GPL vmlinux 0xc5ade6ac validate_xmit_skb_list +EXPORT_SYMBOL_GPL vmlinux 0xc5af490c pm_clk_resume +EXPORT_SYMBOL_GPL vmlinux 0xc5b93156 pinctrl_force_sleep +EXPORT_SYMBOL_GPL vmlinux 0xc5c16073 nvdimm_has_flush +EXPORT_SYMBOL_GPL vmlinux 0xc5c56c6e vfio_pci_core_disable +EXPORT_SYMBOL_GPL vmlinux 0xc5d7612a dev_pm_opp_set_clkname +EXPORT_SYMBOL_GPL vmlinux 0xc5e91d3e decrypt_blob +EXPORT_SYMBOL_GPL vmlinux 0xc5ed0ab8 scsi_unregister_device_handler EXPORT_SYMBOL_GPL vmlinux 0xc604ab28 __SCT__tp_func_kfree_skb -EXPORT_SYMBOL_GPL vmlinux 0xc6116acc register_net_sysctl +EXPORT_SYMBOL_GPL vmlinux 0xc609ae90 ipv6_find_tlv +EXPORT_SYMBOL_GPL vmlinux 0xc60f2c90 debugfs_lookup +EXPORT_SYMBOL_GPL vmlinux 0xc6140970 skb_tstamp_tx EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier -EXPORT_SYMBOL_GPL vmlinux 0xc618a97f irq_domain_xlate_onetwocell -EXPORT_SYMBOL_GPL vmlinux 0xc62411ef devm_gpio_request_one -EXPORT_SYMBOL_GPL vmlinux 0xc6260406 pwm_lpss_probe -EXPORT_SYMBOL_GPL vmlinux 0xc6262a9d regulator_map_voltage_linear -EXPORT_SYMBOL_GPL vmlinux 0xc62ca754 tcp_reno_cong_avoid -EXPORT_SYMBOL_GPL vmlinux 0xc63f9cfc fib_rules_lookup -EXPORT_SYMBOL_GPL vmlinux 0xc64b0f57 irq_domain_xlate_twocell +EXPORT_SYMBOL_GPL vmlinux 0xc61922ad regulator_bulk_force_disable +EXPORT_SYMBOL_GPL vmlinux 0xc61e90e9 ethnl_cable_test_pulse +EXPORT_SYMBOL_GPL vmlinux 0xc62530f0 __traceiter_sched_util_est_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0xc63eaf49 gpio_to_desc +EXPORT_SYMBOL_GPL vmlinux 0xc6415ab3 vp_modern_generation +EXPORT_SYMBOL_GPL vmlinux 0xc642a121 __percpu_down_read +EXPORT_SYMBOL_GPL vmlinux 0xc64fcc79 blk_bio_list_merge EXPORT_SYMBOL_GPL vmlinux 0xc6572a90 xenbus_read_unsigned +EXPORT_SYMBOL_GPL vmlinux 0xc65d10a9 umd_unload_blob EXPORT_SYMBOL_GPL vmlinux 0xc66019cc xen_resume_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc661a406 crypto_rng_reset EXPORT_SYMBOL_GPL vmlinux 0xc66b77b1 iommu_group_set_iommudata EXPORT_SYMBOL_GPL vmlinux 0xc672a391 irq_work_sync -EXPORT_SYMBOL_GPL vmlinux 0xc6766e4d raw_seq_stop EXPORT_SYMBOL_GPL vmlinux 0xc6779093 ring_buffer_record_enable -EXPORT_SYMBOL_GPL vmlinux 0xc679a9ad pci_stop_root_bus +EXPORT_SYMBOL_GPL vmlinux 0xc67fb2e1 noop_direct_IO EXPORT_SYMBOL_GPL vmlinux 0xc683da81 set_memory_decrypted +EXPORT_SYMBOL_GPL vmlinux 0xc688d1bf iommu_group_get EXPORT_SYMBOL_GPL vmlinux 0xc697b0f7 nvmem_device_read -EXPORT_SYMBOL_GPL vmlinux 0xc69b479e xenbus_probe_devices EXPORT_SYMBOL_GPL vmlinux 0xc69b7ee5 zs_destroy_pool +EXPORT_SYMBOL_GPL vmlinux 0xc6a09cc1 iommu_capable EXPORT_SYMBOL_GPL vmlinux 0xc6a4a872 __clk_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0xc6b10427 ex_handler_fprestore -EXPORT_SYMBOL_GPL vmlinux 0xc6bff168 usb_free_urb -EXPORT_SYMBOL_GPL vmlinux 0xc6d4c127 gpiochip_irq_domain_activate -EXPORT_SYMBOL_GPL vmlinux 0xc6d5b830 find_get_pid +EXPORT_SYMBOL_GPL vmlinux 0xc6acf60b cgrp_dfl_root +EXPORT_SYMBOL_GPL vmlinux 0xc6bfcf50 pwm_set_chip_data +EXPORT_SYMBOL_GPL vmlinux 0xc6bfeb2d events_hybrid_sysfs_show +EXPORT_SYMBOL_GPL vmlinux 0xc6dc4070 acpi_find_child_device EXPORT_SYMBOL_GPL vmlinux 0xc6def34b gnttab_empty_grant_references -EXPORT_SYMBOL_GPL vmlinux 0xc6df3e0d irq_chip_get_parent_state +EXPORT_SYMBOL_GPL vmlinux 0xc6e0f062 perf_aux_output_begin EXPORT_SYMBOL_GPL vmlinux 0xc6e5bcf3 linear_range_get_selector_within -EXPORT_SYMBOL_GPL vmlinux 0xc6e980cb ipv6_recv_error -EXPORT_SYMBOL_GPL vmlinux 0xc6eb64ff of_icc_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0xc6eddd67 regcache_drop_region +EXPORT_SYMBOL_GPL vmlinux 0xc6e8567f transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc6e8a37e elv_unregister EXPORT_SYMBOL_GPL vmlinux 0xc6eec8f5 clk_divider_ops -EXPORT_SYMBOL_GPL vmlinux 0xc6f2a35d nvmem_cell_read_u32 -EXPORT_SYMBOL_GPL vmlinux 0xc6fcb146 switchdev_bridge_port_unoffload +EXPORT_SYMBOL_GPL vmlinux 0xc6f8ee3a acpi_device_fix_up_power +EXPORT_SYMBOL_GPL vmlinux 0xc701b042 dma_get_slave_channel EXPORT_SYMBOL_GPL vmlinux 0xc7061ef3 iova_cache_put -EXPORT_SYMBOL_GPL vmlinux 0xc70cf30c devm_power_supply_register_no_ws -EXPORT_SYMBOL_GPL vmlinux 0xc714c63a dst_blackhole_redirect +EXPORT_SYMBOL_GPL vmlinux 0xc70803bb pci_epc_stop +EXPORT_SYMBOL_GPL vmlinux 0xc70d0642 regulator_is_enabled_regmap +EXPORT_SYMBOL_GPL vmlinux 0xc71b0bb6 fwnode_graph_get_remote_endpoint EXPORT_SYMBOL_GPL vmlinux 0xc71e64a9 snmp_get_cpu_field -EXPORT_SYMBOL_GPL vmlinux 0xc72bfea5 hwspin_lock_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc7442df9 genphy_c45_config_aneg -EXPORT_SYMBOL_GPL vmlinux 0xc74c960e dev_fill_metadata_dst -EXPORT_SYMBOL_GPL vmlinux 0xc74d76f5 perf_event_release_kernel -EXPORT_SYMBOL_GPL vmlinux 0xc75bfaa7 debugfs_print_regs32 +EXPORT_SYMBOL_GPL vmlinux 0xc7304595 dev_pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0xc737e63b fuse_do_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xc74488b3 led_set_brightness_sync +EXPORT_SYMBOL_GPL vmlinux 0xc74a743e sk_msg_free_nocharge +EXPORT_SYMBOL_GPL vmlinux 0xc752a177 acct_bioset_init +EXPORT_SYMBOL_GPL vmlinux 0xc762d8bd perf_event_update_userpage EXPORT_SYMBOL_GPL vmlinux 0xc76f8048 __sbitmap_queue_get -EXPORT_SYMBOL_GPL vmlinux 0xc77c8b80 crypto_grab_spawn -EXPORT_SYMBOL_GPL vmlinux 0xc77e795b vp_modern_probe +EXPORT_SYMBOL_GPL vmlinux 0xc770b68d edac_get_sysfs_subsys +EXPORT_SYMBOL_GPL vmlinux 0xc779d4ee task_cls_state +EXPORT_SYMBOL_GPL vmlinux 0xc77b9a8b gpiod_set_config EXPORT_SYMBOL_GPL vmlinux 0xc7856e74 __wake_up_locked_sync_key +EXPORT_SYMBOL_GPL vmlinux 0xc79ae016 sdio_signal_irq +EXPORT_SYMBOL_GPL vmlinux 0xc79fd018 regulator_put EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch EXPORT_SYMBOL_GPL vmlinux 0xc7a7e770 clk_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0xc7aa9f1d bpf_map_inc_not_zero +EXPORT_SYMBOL_GPL vmlinux 0xc7b3eab5 iomap_migrate_page +EXPORT_SYMBOL_GPL vmlinux 0xc7b798b7 attribute_container_classdev_to_container +EXPORT_SYMBOL_GPL vmlinux 0xc7c07ef2 perf_event_sysfs_show EXPORT_SYMBOL_GPL vmlinux 0xc7c23ff0 xenbus_exists -EXPORT_SYMBOL_GPL vmlinux 0xc7de2a95 security_inode_setattr -EXPORT_SYMBOL_GPL vmlinux 0xc7e0bb6c pci_bus_resource_n +EXPORT_SYMBOL_GPL vmlinux 0xc7d57a2a gpiochip_unlock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0xc7e0df46 dm_disk +EXPORT_SYMBOL_GPL vmlinux 0xc7e1e1ce usb_free_urb +EXPORT_SYMBOL_GPL vmlinux 0xc7e301c4 vfio_virqfd_disable EXPORT_SYMBOL_GPL vmlinux 0xc7e64fc2 asn1_encode_integer -EXPORT_SYMBOL_GPL vmlinux 0xc7e67cea pinctrl_dev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xc7f9c80f wm831x_regmap_config EXPORT_SYMBOL_GPL vmlinux 0xc7fa4aa9 kobj_ns_drop -EXPORT_SYMBOL_GPL vmlinux 0xc8021a05 ip6_datagram_release_cb -EXPORT_SYMBOL_GPL vmlinux 0xc82c6c97 blk_mq_pci_map_queues EXPORT_SYMBOL_GPL vmlinux 0xc82c721f klist_remove -EXPORT_SYMBOL_GPL vmlinux 0xc838ccad skb_append_pagefrags EXPORT_SYMBOL_GPL vmlinux 0xc839c1ce trace_seq_to_user -EXPORT_SYMBOL_GPL vmlinux 0xc83bf8c2 __tracepoint_rpm_resume -EXPORT_SYMBOL_GPL vmlinux 0xc84cdf46 unregister_asymmetric_key_parser -EXPORT_SYMBOL_GPL vmlinux 0xc84db02a crypto_register_templates +EXPORT_SYMBOL_GPL vmlinux 0xc84ba56a sched_trace_rq_avg_dl +EXPORT_SYMBOL_GPL vmlinux 0xc85671db dev_pm_opp_detach_genpd EXPORT_SYMBOL_GPL vmlinux 0xc8594d3d reset_control_acquire -EXPORT_SYMBOL_GPL vmlinux 0xc866c52e virtqueue_get_used_addr -EXPORT_SYMBOL_GPL vmlinux 0xc86ef9ee sched_trace_cfs_rq_cpu -EXPORT_SYMBOL_GPL vmlinux 0xc873d7ec blk_mq_unquiesce_queue +EXPORT_SYMBOL_GPL vmlinux 0xc86bc847 scsi_get_vpd_page EXPORT_SYMBOL_GPL vmlinux 0xc874d710 hv_unmap_ioapic_interrupt EXPORT_SYMBOL_GPL vmlinux 0xc87e487a sched_clock_idle_sleep_event +EXPORT_SYMBOL_GPL vmlinux 0xc87e53aa udp6_lib_lookup EXPORT_SYMBOL_GPL vmlinux 0xc87fb025 xas_get_mark -EXPORT_SYMBOL_GPL vmlinux 0xc8a1bd27 sysfs_create_link_nowarn -EXPORT_SYMBOL_GPL vmlinux 0xc8c4a182 acpi_device_uevent_modalias -EXPORT_SYMBOL_GPL vmlinux 0xc8c4e1d9 kernfs_notify -EXPORT_SYMBOL_GPL vmlinux 0xc8dd18cc iomap_releasepage +EXPORT_SYMBOL_GPL vmlinux 0xc88132b1 tps80031_ext_power_req_config +EXPORT_SYMBOL_GPL vmlinux 0xc881783a kill_pid_usb_asyncio +EXPORT_SYMBOL_GPL vmlinux 0xc884d286 bpf_trace_run4 +EXPORT_SYMBOL_GPL vmlinux 0xc89ee9d7 devm_spi_mem_dirmap_create +EXPORT_SYMBOL_GPL vmlinux 0xc8d87cff serial8250_request_dma +EXPORT_SYMBOL_GPL vmlinux 0xc8daff40 virtio_check_driver_offered_feature EXPORT_SYMBOL_GPL vmlinux 0xc8ddd5b5 kstrdup_quotable -EXPORT_SYMBOL_GPL vmlinux 0xc8ec7ea8 clk_hw_rate_is_protected -EXPORT_SYMBOL_GPL vmlinux 0xc8f62bee fwnode_count_parents -EXPORT_SYMBOL_GPL vmlinux 0xc8f81f32 sdio_register_driver -EXPORT_SYMBOL_GPL vmlinux 0xc8faba2c task_cputime_adjusted -EXPORT_SYMBOL_GPL vmlinux 0xc907045c irq_chip_set_wake_parent -EXPORT_SYMBOL_GPL vmlinux 0xc90e2bd8 virtqueue_get_desc_addr -EXPORT_SYMBOL_GPL vmlinux 0xc911fc75 gnttab_dma_alloc_pages -EXPORT_SYMBOL_GPL vmlinux 0xc91deed7 pinctrl_utils_add_config +EXPORT_SYMBOL_GPL vmlinux 0xc8ddf502 skb_pull_rcsum +EXPORT_SYMBOL_GPL vmlinux 0xc8e4e6cc spi_slave_abort +EXPORT_SYMBOL_GPL vmlinux 0xc8e95614 icc_sync_state +EXPORT_SYMBOL_GPL vmlinux 0xc8ee8a81 device_del +EXPORT_SYMBOL_GPL vmlinux 0xc8efdb15 iommu_set_pgtable_quirks +EXPORT_SYMBOL_GPL vmlinux 0xc90893b2 regmap_attach_dev +EXPORT_SYMBOL_GPL vmlinux 0xc9172348 dma_request_chan_by_mask +EXPORT_SYMBOL_GPL vmlinux 0xc91ca996 tpm_send +EXPORT_SYMBOL_GPL vmlinux 0xc91d9d02 bsg_job_get EXPORT_SYMBOL_GPL vmlinux 0xc91ee1b5 __SCT__tp_func_mc_event EXPORT_SYMBOL_GPL vmlinux 0xc91fdf58 percpu_ref_is_zero -EXPORT_SYMBOL_GPL vmlinux 0xc9246ba7 is_skb_forwardable -EXPORT_SYMBOL_GPL vmlinux 0xc930eae0 pm_runtime_suspended_time +EXPORT_SYMBOL_GPL vmlinux 0xc9219c42 wm8350_reg_read EXPORT_SYMBOL_GPL vmlinux 0xc9345c0f digsig_verify EXPORT_SYMBOL_GPL vmlinux 0xc93ee1e7 usb_phy_roothub_init -EXPORT_SYMBOL_GPL vmlinux 0xc940f938 mbox_chan_received_data -EXPORT_SYMBOL_GPL vmlinux 0xc94af76a pci_bus_max_busnr EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist -EXPORT_SYMBOL_GPL vmlinux 0xc9618018 dma_max_mapping_size EXPORT_SYMBOL_GPL vmlinux 0xc9641b48 visitor32 -EXPORT_SYMBOL_GPL vmlinux 0xc96959ae task_cgroup_path -EXPORT_SYMBOL_GPL vmlinux 0xc9743ad5 driver_find_device +EXPORT_SYMBOL_GPL vmlinux 0xc967ea88 devm_phy_create +EXPORT_SYMBOL_GPL vmlinux 0xc969b0d6 dma_max_mapping_size +EXPORT_SYMBOL_GPL vmlinux 0xc96b3c7f tps65912_device_init +EXPORT_SYMBOL_GPL vmlinux 0xc97ba330 __sock_recv_ts_and_drops EXPORT_SYMBOL_GPL vmlinux 0xc9827693 __bpf_call_base -EXPORT_SYMBOL_GPL vmlinux 0xc998c5e6 ksm_madvise -EXPORT_SYMBOL_GPL vmlinux 0xc99b9b75 device_create_bin_file -EXPORT_SYMBOL_GPL vmlinux 0xc99caa70 msg_zerocopy_callback +EXPORT_SYMBOL_GPL vmlinux 0xc9827aa7 extcon_set_property +EXPORT_SYMBOL_GPL vmlinux 0xc99036a1 pci_sriov_configure_simple +EXPORT_SYMBOL_GPL vmlinux 0xc99aa487 query_asymmetric_key EXPORT_SYMBOL_GPL vmlinux 0xc9a4b416 copy_to_user_nofault +EXPORT_SYMBOL_GPL vmlinux 0xc9a6bd21 switchdev_bridge_port_offload +EXPORT_SYMBOL_GPL vmlinux 0xc9c1eb95 __pneigh_lookup EXPORT_SYMBOL_GPL vmlinux 0xc9c3f176 hpet_register_irq_handler -EXPORT_SYMBOL_GPL vmlinux 0xc9e658d6 ncsi_stop_dev +EXPORT_SYMBOL_GPL vmlinux 0xc9d22bec pci_epc_linkup +EXPORT_SYMBOL_GPL vmlinux 0xc9e075ef tty_buffer_request_room +EXPORT_SYMBOL_GPL vmlinux 0xc9e54be2 rt_mutex_lock EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu +EXPORT_SYMBOL_GPL vmlinux 0xc9ee09c4 scsi_autopm_get_device EXPORT_SYMBOL_GPL vmlinux 0xc9fd634a usb_role_switch_put -EXPORT_SYMBOL_GPL vmlinux 0xca02ccc5 virtqueue_get_vring_size -EXPORT_SYMBOL_GPL vmlinux 0xca08f389 gpiod_get_raw_array_value -EXPORT_SYMBOL_GPL vmlinux 0xca21185e simple_attr_read -EXPORT_SYMBOL_GPL vmlinux 0xca2b0b4d tcf_dev_queue_xmit -EXPORT_SYMBOL_GPL vmlinux 0xca376a9f pm_runtime_irq_safe +EXPORT_SYMBOL_GPL vmlinux 0xca02be1e devm_regulator_irq_helper +EXPORT_SYMBOL_GPL vmlinux 0xca126c35 devm_regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xca13e23c apei_get_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0xca16a9af dev_pm_opp_set_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0xca212f91 ata_sff_drain_fifo +EXPORT_SYMBOL_GPL vmlinux 0xca23c859 get_task_pid +EXPORT_SYMBOL_GPL vmlinux 0xca30e6a8 __traceiter_remove_device_from_group EXPORT_SYMBOL_GPL vmlinux 0xca454a34 vt_get_leds EXPORT_SYMBOL_GPL vmlinux 0xca467318 hibernation_set_ops -EXPORT_SYMBOL_GPL vmlinux 0xca4e086d ata_scsi_queuecmd -EXPORT_SYMBOL_GPL vmlinux 0xca73d570 irq_chip_mask_parent +EXPORT_SYMBOL_GPL vmlinux 0xca5aa1b4 blk_trace_remove EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop -EXPORT_SYMBOL_GPL vmlinux 0xca8d15bb edac_device_free_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0xca812e9d transport_remove_device +EXPORT_SYMBOL_GPL vmlinux 0xca96ed6a regmap_fields_update_bits_base EXPORT_SYMBOL_GPL vmlinux 0xca9a1d5e ring_buffer_free EXPORT_SYMBOL_GPL vmlinux 0xcaa68533 cpu_has_xfeatures -EXPORT_SYMBOL_GPL vmlinux 0xcaad73fd tracing_snapshot_cond_disable -EXPORT_SYMBOL_GPL vmlinux 0xcab5d2b7 genphy_c45_pma_resume +EXPORT_SYMBOL_GPL vmlinux 0xcab012a9 uart_insert_char +EXPORT_SYMBOL_GPL vmlinux 0xcab89521 __sock_recv_timestamp EXPORT_SYMBOL_GPL vmlinux 0xcabe04de cpuidle_resume_and_unlock -EXPORT_SYMBOL_GPL vmlinux 0xcac0fbba devm_intel_scu_ipc_dev_get -EXPORT_SYMBOL_GPL vmlinux 0xcad99e9f rtnl_af_unregister -EXPORT_SYMBOL_GPL vmlinux 0xcae56387 __tracepoint_pelt_dl_tp +EXPORT_SYMBOL_GPL vmlinux 0xcabef7dc pinctrl_pm_select_idle_state +EXPORT_SYMBOL_GPL vmlinux 0xcad559eb ata_qc_complete EXPORT_SYMBOL_GPL vmlinux 0xcaf1d958 evtchn_get +EXPORT_SYMBOL_GPL vmlinux 0xcb0c6c64 ip6_push_pending_frames EXPORT_SYMBOL_GPL vmlinux 0xcb15eee9 sdhci_pci_get_data -EXPORT_SYMBOL_GPL vmlinux 0xcb17ca33 iomap_readpage -EXPORT_SYMBOL_GPL vmlinux 0xcb1dce42 iomap_dio_rw -EXPORT_SYMBOL_GPL vmlinux 0xcb1e8201 tpm1_do_selftest +EXPORT_SYMBOL_GPL vmlinux 0xcb17c743 __pm_runtime_idle +EXPORT_SYMBOL_GPL vmlinux 0xcb1994cc __mdiobus_modify_changed EXPORT_SYMBOL_GPL vmlinux 0xcb2bfe2b nvmem_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xcb540dca mbox_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcb436fb9 do_xdp_generic +EXPORT_SYMBOL_GPL vmlinux 0xcb451dba iommu_fwspec_init +EXPORT_SYMBOL_GPL vmlinux 0xcb52900b pinctrl_dev_get_drvdata EXPORT_SYMBOL_GPL vmlinux 0xcb561441 mem_dump_obj -EXPORT_SYMBOL_GPL vmlinux 0xcb61b02d blk_rq_unprep_clone -EXPORT_SYMBOL_GPL vmlinux 0xcb801606 pci_common_swizzle +EXPORT_SYMBOL_GPL vmlinux 0xcb6aac5e powercap_register_control_type EXPORT_SYMBOL_GPL vmlinux 0xcb8a461c hv_stimer_legacy_cleanup EXPORT_SYMBOL_GPL vmlinux 0xcb970751 stop_machine -EXPORT_SYMBOL_GPL vmlinux 0xcb9aea6c devm_clk_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xcb988f3a handle_simple_irq +EXPORT_SYMBOL_GPL vmlinux 0xcb9f5b41 xfrm_unregister_translator +EXPORT_SYMBOL_GPL vmlinux 0xcba43ee0 pm_generic_restore_noirq +EXPORT_SYMBOL_GPL vmlinux 0xcba5c4ae init_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xcbb4184a xen_unregister_device_domain_owner EXPORT_SYMBOL_GPL vmlinux 0xcbb46ca0 misc_cg_set_capacity -EXPORT_SYMBOL_GPL vmlinux 0xcbbef4a2 devm_device_add_group -EXPORT_SYMBOL_GPL vmlinux 0xcbcdb447 __devm_pci_epc_create -EXPORT_SYMBOL_GPL vmlinux 0xcbd0bb07 hvc_alloc -EXPORT_SYMBOL_GPL vmlinux 0xcbd6a366 misc_cg_try_charge +EXPORT_SYMBOL_GPL vmlinux 0xcbbc73bd device_store_int +EXPORT_SYMBOL_GPL vmlinux 0xcbbec820 sched_trace_rq_avg_irq +EXPORT_SYMBOL_GPL vmlinux 0xcbc04c90 ata_std_qc_defer +EXPORT_SYMBOL_GPL vmlinux 0xcbc57410 spi_res_release +EXPORT_SYMBOL_GPL vmlinux 0xcbc58d7f usb_remove_phy +EXPORT_SYMBOL_GPL vmlinux 0xcbd6918c gov_attr_set_put +EXPORT_SYMBOL_GPL vmlinux 0xcbddc27a device_add_groups EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages -EXPORT_SYMBOL_GPL vmlinux 0xcbed001f gnttab_pages_clear_private -EXPORT_SYMBOL_GPL vmlinux 0xcc0b33a4 for_each_kernel_tracepoint -EXPORT_SYMBOL_GPL vmlinux 0xcc15bf35 gpiod_set_raw_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xcc2c5a17 phy_pm_runtime_get_sync +EXPORT_SYMBOL_GPL vmlinux 0xcbea4ca9 agp_remove_bridge +EXPORT_SYMBOL_GPL vmlinux 0xcbee1dde mbox_send_message +EXPORT_SYMBOL_GPL vmlinux 0xcbf697b4 regmap_get_device +EXPORT_SYMBOL_GPL vmlinux 0xcbfc3e87 fat_time_fat2unix EXPORT_SYMBOL_GPL vmlinux 0xcc2dbfd8 irq_domain_check_msi_remap +EXPORT_SYMBOL_GPL vmlinux 0xcc2fc2e9 debugfs_rename EXPORT_SYMBOL_GPL vmlinux 0xcc312197 clk_mux_ops EXPORT_SYMBOL_GPL vmlinux 0xcc39c03e nvmem_unregister -EXPORT_SYMBOL_GPL vmlinux 0xcc3bdcfe fsverity_verify_bio -EXPORT_SYMBOL_GPL vmlinux 0xcc4a4c71 regmap_multi_reg_write_bypassed -EXPORT_SYMBOL_GPL vmlinux 0xcc5a4c61 anon_transport_class_unregister -EXPORT_SYMBOL_GPL vmlinux 0xcc6781b5 devm_hwrng_unregister -EXPORT_SYMBOL_GPL vmlinux 0xcc6bcac7 mm_kobj -EXPORT_SYMBOL_GPL vmlinux 0xcc8d69e4 usb_get_current_frame_number -EXPORT_SYMBOL_GPL vmlinux 0xcc92339b devm_of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0xcc3c93fb __scsi_init_queue +EXPORT_SYMBOL_GPL vmlinux 0xcc42aca0 nf_queue_entry_free +EXPORT_SYMBOL_GPL vmlinux 0xcc43bde2 regulator_get_linear_step +EXPORT_SYMBOL_GPL vmlinux 0xcc68cbe4 led_trigger_read +EXPORT_SYMBOL_GPL vmlinux 0xcc703b93 max8997_read_reg +EXPORT_SYMBOL_GPL vmlinux 0xcc801a73 __iptunnel_pull_header +EXPORT_SYMBOL_GPL vmlinux 0xcc81361d ata_scsi_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0xcc912d08 blk_mq_alloc_request_hctx EXPORT_SYMBOL_GPL vmlinux 0xcc9268fc hwpoison_filter_enable +EXPORT_SYMBOL_GPL vmlinux 0xcc930cfb mmc_regulator_set_vqmmc EXPORT_SYMBOL_GPL vmlinux 0xcc935375 walk_iomem_res_desc -EXPORT_SYMBOL_GPL vmlinux 0xcc958506 devm_regulator_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0xcc9d328f pinctrl_get -EXPORT_SYMBOL_GPL vmlinux 0xcca329de led_trigger_set -EXPORT_SYMBOL_GPL vmlinux 0xcca8e202 pingv6_ops -EXPORT_SYMBOL_GPL vmlinux 0xccb57e0f vfio_pci_core_sriov_configure -EXPORT_SYMBOL_GPL vmlinux 0xccb763d3 __SCK__tp_func_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0xcca06c93 devm_clk_unregister +EXPORT_SYMBOL_GPL vmlinux 0xccad0b5e misc_cg_try_charge +EXPORT_SYMBOL_GPL vmlinux 0xccad9e93 l3mdev_update_flow +EXPORT_SYMBOL_GPL vmlinux 0xccb2fc55 dev_pm_opp_register_set_opp_helper +EXPORT_SYMBOL_GPL vmlinux 0xcccd5e4e tty_port_register_device_attr EXPORT_SYMBOL_GPL vmlinux 0xcccfb2fa sata_deb_timing_hotplug -EXPORT_SYMBOL_GPL vmlinux 0xccd2e736 rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0xccd70051 __SCK__tp_func_sched_overutilized_tp EXPORT_SYMBOL_GPL vmlinux 0xccd86806 ata_id_string -EXPORT_SYMBOL_GPL vmlinux 0xcce18b98 gpiod_get_raw_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xcce27893 da9052_adc_read_temp +EXPORT_SYMBOL_GPL vmlinux 0xcce69ffc xenbus_dev_groups EXPORT_SYMBOL_GPL vmlinux 0xccea4e34 perf_get_x86_pmu_capability +EXPORT_SYMBOL_GPL vmlinux 0xccf0ffdb sysfs_remove_groups EXPORT_SYMBOL_GPL vmlinux 0xccf396a3 x86_perf_get_lbr EXPORT_SYMBOL_GPL vmlinux 0xccf52bc9 sfp_upstream_start -EXPORT_SYMBOL_GPL vmlinux 0xccfee69d firmware_request_cache -EXPORT_SYMBOL_GPL vmlinux 0xcd03c571 rio_request_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0xccfab6ad iommu_dev_enable_feature +EXPORT_SYMBOL_GPL vmlinux 0xcd189c87 __SCK__tp_func_attach_device_to_domain EXPORT_SYMBOL_GPL vmlinux 0xcd24e146 hash_digest_size -EXPORT_SYMBOL_GPL vmlinux 0xcd2d27f0 __SCK__tp_func_fib6_table_lookup -EXPORT_SYMBOL_GPL vmlinux 0xcd343456 fib_rules_seq_read +EXPORT_SYMBOL_GPL vmlinux 0xcd2de92f devm_hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0xcd3ceea4 sfp_bus_add_upstream +EXPORT_SYMBOL_GPL vmlinux 0xcd3e4000 ping_rcv EXPORT_SYMBOL_GPL vmlinux 0xcd3e5c7c acpi_release_memory -EXPORT_SYMBOL_GPL vmlinux 0xcd47186a gpiochip_generic_config -EXPORT_SYMBOL_GPL vmlinux 0xcd4b2342 ata_link_abort -EXPORT_SYMBOL_GPL vmlinux 0xcd661252 spi_async_locked -EXPORT_SYMBOL_GPL vmlinux 0xcd6b5385 nf_checksum_partial +EXPORT_SYMBOL_GPL vmlinux 0xcd54f588 pci_vfs_assigned +EXPORT_SYMBOL_GPL vmlinux 0xcd6a9963 pci_disable_ats +EXPORT_SYMBOL_GPL vmlinux 0xcd6ddb52 fat_sync_inode EXPORT_SYMBOL_GPL vmlinux 0xcd6f2dc9 nf_log_buf_add EXPORT_SYMBOL_GPL vmlinux 0xcd81a945 switch_fpu_return -EXPORT_SYMBOL_GPL vmlinux 0xcd8b18cd ata_sas_port_alloc EXPORT_SYMBOL_GPL vmlinux 0xcd8e8f82 uv_bios_enum_objs +EXPORT_SYMBOL_GPL vmlinux 0xcd8ea4a2 usb_bulk_msg EXPORT_SYMBOL_GPL vmlinux 0xcd91b127 system_highpri_wq EXPORT_SYMBOL_GPL vmlinux 0xcd974f00 rcu_all_qs +EXPORT_SYMBOL_GPL vmlinux 0xcd994fae split_page EXPORT_SYMBOL_GPL vmlinux 0xcd9cd2ff wakeme_after_rcu -EXPORT_SYMBOL_GPL vmlinux 0xcd9e2020 rio_route_get_entry -EXPORT_SYMBOL_GPL vmlinux 0xcda8805d crypto_register_template -EXPORT_SYMBOL_GPL vmlinux 0xcdad298e vfio_group_get_external_user_from_dev -EXPORT_SYMBOL_GPL vmlinux 0xcdada484 dm_noflush_suspending EXPORT_SYMBOL_GPL vmlinux 0xcdb6adcc ras_userspace_consumers +EXPORT_SYMBOL_GPL vmlinux 0xcdb6b2ee ata_std_prereset EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs -EXPORT_SYMBOL_GPL vmlinux 0xcddd4a43 ping_hash EXPORT_SYMBOL_GPL vmlinux 0xcde26600 cppc_get_transition_latency +EXPORT_SYMBOL_GPL vmlinux 0xcde3d48a of_icc_get_by_index +EXPORT_SYMBOL_GPL vmlinux 0xcde76712 devres_for_each_res +EXPORT_SYMBOL_GPL vmlinux 0xcdf9f108 gpiochip_find +EXPORT_SYMBOL_GPL vmlinux 0xcdfbaac6 fwnode_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0xce02001a __traceiter_rpm_return_int EXPORT_SYMBOL_GPL vmlinux 0xce0a4020 xenbus_directory -EXPORT_SYMBOL_GPL vmlinux 0xce105ea1 tcp_bpf_sendmsg_redir -EXPORT_SYMBOL_GPL vmlinux 0xce11c171 pci_pasid_features -EXPORT_SYMBOL_GPL vmlinux 0xce20301f lwtstate_free -EXPORT_SYMBOL_GPL vmlinux 0xce20318d bus_get_kset -EXPORT_SYMBOL_GPL vmlinux 0xce28414a fuse_dev_alloc -EXPORT_SYMBOL_GPL vmlinux 0xce309561 component_bind_all -EXPORT_SYMBOL_GPL vmlinux 0xce38f32c pwm_adjust_config -EXPORT_SYMBOL_GPL vmlinux 0xce4830df iommu_uapi_cache_invalidate +EXPORT_SYMBOL_GPL vmlinux 0xce100a68 blkcg_root +EXPORT_SYMBOL_GPL vmlinux 0xce2aaede fscrypt_get_symlink +EXPORT_SYMBOL_GPL vmlinux 0xce3a5a68 cookie_tcp_reqsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0xce5d8c86 pcie_bus_configure_settings +EXPORT_SYMBOL_GPL vmlinux 0xce6388db led_trigger_event +EXPORT_SYMBOL_GPL vmlinux 0xce64866e nfs_ssc_register +EXPORT_SYMBOL_GPL vmlinux 0xce6a2e4e devfreq_event_get_edev_by_phandle EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching -EXPORT_SYMBOL_GPL vmlinux 0xce70195f fuse_dev_operations -EXPORT_SYMBOL_GPL vmlinux 0xce7843d1 __rio_local_read_config_8 -EXPORT_SYMBOL_GPL vmlinux 0xce831ea8 irq_get_default_host -EXPORT_SYMBOL_GPL vmlinux 0xce8f171c task_active_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xce6ff9f1 regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xce7c42a4 iommu_attach_device EXPORT_SYMBOL_GPL vmlinux 0xce985658 kset_find_obj -EXPORT_SYMBOL_GPL vmlinux 0xceab8cc2 cpufreq_cpu_get_raw +EXPORT_SYMBOL_GPL vmlinux 0xce9b764a dev_fill_forward_path EXPORT_SYMBOL_GPL vmlinux 0xceb1f126 mpi_read_raw_data EXPORT_SYMBOL_GPL vmlinux 0xceb66bec sched_clock_cpu -EXPORT_SYMBOL_GPL vmlinux 0xcebc0219 tty_get_icount -EXPORT_SYMBOL_GPL vmlinux 0xced000fe power_supply_external_power_changed -EXPORT_SYMBOL_GPL vmlinux 0xced9c91e __traceiter_br_fdb_external_learn_add +EXPORT_SYMBOL_GPL vmlinux 0xcebd321c usb_urb_ep_type_check +EXPORT_SYMBOL_GPL vmlinux 0xcebda906 spi_replace_transfers +EXPORT_SYMBOL_GPL vmlinux 0xcec1dfc0 crypto_get_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xcec3ec48 for_each_kernel_tracepoint +EXPORT_SYMBOL_GPL vmlinux 0xcec43da4 bpf_prog_inc_not_zero +EXPORT_SYMBOL_GPL vmlinux 0xced6bfbb __tracepoint_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0xceda2e52 extcon_dev_register EXPORT_SYMBOL_GPL vmlinux 0xcee1641c kgdb_unregister_nmi_console -EXPORT_SYMBOL_GPL vmlinux 0xcef96761 iommu_map_atomic +EXPORT_SYMBOL_GPL vmlinux 0xcef0f8bf fscrypt_set_context EXPORT_SYMBOL_GPL vmlinux 0xcf02ab71 __SCT__tp_func_block_rq_remap -EXPORT_SYMBOL_GPL vmlinux 0xcf1c93da cdrom_multisession -EXPORT_SYMBOL_GPL vmlinux 0xcf468a37 unwind_next_frame -EXPORT_SYMBOL_GPL vmlinux 0xcf506aba regmap_field_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0xcf132247 perf_event_addr_filters_sync +EXPORT_SYMBOL_GPL vmlinux 0xcf18cf3d ata_slave_link_init +EXPORT_SYMBOL_GPL vmlinux 0xcf1db463 __traceiter_neigh_update_done +EXPORT_SYMBOL_GPL vmlinux 0xcf2a77bc gpiod_set_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xcf36d958 dma_buf_pin +EXPORT_SYMBOL_GPL vmlinux 0xcf4e980f fib_add_nexthop EXPORT_SYMBOL_GPL vmlinux 0xcf540422 ftrace_set_filter -EXPORT_SYMBOL_GPL vmlinux 0xcf612f46 fuse_request_end -EXPORT_SYMBOL_GPL vmlinux 0xcf691ac1 serial8250_get_port -EXPORT_SYMBOL_GPL vmlinux 0xcf822866 spi_get_device_id -EXPORT_SYMBOL_GPL vmlinux 0xcf83b372 blk_ksm_intersect_modes -EXPORT_SYMBOL_GPL vmlinux 0xcf848dc9 thermal_zone_device_update -EXPORT_SYMBOL_GPL vmlinux 0xcf9ea1e3 attribute_container_find_class_device -EXPORT_SYMBOL_GPL vmlinux 0xcfab0c27 fixed_phy_change_carrier -EXPORT_SYMBOL_GPL vmlinux 0xcfb4b82a pwm_apply_state -EXPORT_SYMBOL_GPL vmlinux 0xcfb73157 strp_check_rcv -EXPORT_SYMBOL_GPL vmlinux 0xcfbbab89 ipv6_proxy_select_ident -EXPORT_SYMBOL_GPL vmlinux 0xcfbddd86 ata_eh_freeze_port -EXPORT_SYMBOL_GPL vmlinux 0xcfbf5c5a platform_get_irq +EXPORT_SYMBOL_GPL vmlinux 0xcf6bec58 gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0xcf6f2d92 fib_new_table +EXPORT_SYMBOL_GPL vmlinux 0xcf6f7520 restore_online_page_callback +EXPORT_SYMBOL_GPL vmlinux 0xcf821a8c gpiod_toggle_active_low +EXPORT_SYMBOL_GPL vmlinux 0xcf9cdc0d ohci_setup +EXPORT_SYMBOL_GPL vmlinux 0xcfb58b59 ipv4_redirect +EXPORT_SYMBOL_GPL vmlinux 0xcfb8c4d0 of_devfreq_cooling_register EXPORT_SYMBOL_GPL vmlinux 0xcfc5108a devlink_fmsg_u8_pair_put +EXPORT_SYMBOL_GPL vmlinux 0xcfc555a3 skb_splice_bits EXPORT_SYMBOL_GPL vmlinux 0xcfc7b4e4 rcu_barrier_tasks_trace +EXPORT_SYMBOL_GPL vmlinux 0xcfc9c02a scsi_dh_set_params EXPORT_SYMBOL_GPL vmlinux 0xcfd30d71 acpi_os_map_memory -EXPORT_SYMBOL_GPL vmlinux 0xcfdd30c8 dm_get_md -EXPORT_SYMBOL_GPL vmlinux 0xcfdf419c task_cls_state -EXPORT_SYMBOL_GPL vmlinux 0xcfeafa80 espintcp_queue_out -EXPORT_SYMBOL_GPL vmlinux 0xd003483e ata_pci_device_suspend -EXPORT_SYMBOL_GPL vmlinux 0xd006aaa2 dev_attr_sw_activity -EXPORT_SYMBOL_GPL vmlinux 0xd0174725 device_set_node +EXPORT_SYMBOL_GPL vmlinux 0xcfee0bf5 l3mdev_table_lookup_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcff00ac7 devm_rtc_nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0xcff0b6fd dev_pm_opp_find_freq_ceil_by_volt +EXPORT_SYMBOL_GPL vmlinux 0xcffc72e7 __traceiter_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0xd00ad70d rio_inb_pwrite_handler EXPORT_SYMBOL_GPL vmlinux 0xd0177a65 acrn_setup_intr_handler +EXPORT_SYMBOL_GPL vmlinux 0xd02ac095 dev_pm_qos_add_ancestor_request +EXPORT_SYMBOL_GPL vmlinux 0xd02b65ff dev_pm_qos_expose_latency_tolerance EXPORT_SYMBOL_GPL vmlinux 0xd03eaf4c schedule_hrtimeout_range -EXPORT_SYMBOL_GPL vmlinux 0xd043efea pm_runtime_forbid EXPORT_SYMBOL_GPL vmlinux 0xd0458ccb xenbus_strstate -EXPORT_SYMBOL_GPL vmlinux 0xd04d2344 ip_icmp_error_rfc4884 EXPORT_SYMBOL_GPL vmlinux 0xd051d489 srcu_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xd0646f75 gpiod_get_raw_array_value EXPORT_SYMBOL_GPL vmlinux 0xd06524ba raw_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd06795ee irq_chip_unmask_parent EXPORT_SYMBOL_GPL vmlinux 0xd067d3c5 system_freezable_power_efficient_wq -EXPORT_SYMBOL_GPL vmlinux 0xd075f989 ata_wait_after_reset -EXPORT_SYMBOL_GPL vmlinux 0xd0806e4f power_supply_get_by_name -EXPORT_SYMBOL_GPL vmlinux 0xd0816b07 blk_crypto_evict_key -EXPORT_SYMBOL_GPL vmlinux 0xd0929366 devm_phy_create +EXPORT_SYMBOL_GPL vmlinux 0xd07bcaff usb_lock_device_for_reset +EXPORT_SYMBOL_GPL vmlinux 0xd08e0a5c dma_buf_vmap EXPORT_SYMBOL_GPL vmlinux 0xd09911a6 acpi_dev_get_irq_type -EXPORT_SYMBOL_GPL vmlinux 0xd0993fbc max8997_bulk_read EXPORT_SYMBOL_GPL vmlinux 0xd0a183cb kobject_get_path -EXPORT_SYMBOL_GPL vmlinux 0xd0a27eb4 regulator_desc_list_voltage_linear -EXPORT_SYMBOL_GPL vmlinux 0xd0a98503 acpi_subsys_complete -EXPORT_SYMBOL_GPL vmlinux 0xd0b7282d driver_create_file -EXPORT_SYMBOL_GPL vmlinux 0xd0b78335 __udp_enqueue_schedule_skb -EXPORT_SYMBOL_GPL vmlinux 0xd0bdde37 wm8350_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xd0a21bed vchan_init +EXPORT_SYMBOL_GPL vmlinux 0xd0a54dc6 bus_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xd0ab93d9 sock_map_close +EXPORT_SYMBOL_GPL vmlinux 0xd0b9723e spi_bus_unlock +EXPORT_SYMBOL_GPL vmlinux 0xd0bc70cb get_net_ns_by_pid +EXPORT_SYMBOL_GPL vmlinux 0xd0bd8c45 crypto_alloc_rng EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart -EXPORT_SYMBOL_GPL vmlinux 0xd0c3ecee uart_handle_cts_change -EXPORT_SYMBOL_GPL vmlinux 0xd0c415c7 __clocksource_update_freq_scale -EXPORT_SYMBOL_GPL vmlinux 0xd0cb8a77 pm_generic_thaw_noirq -EXPORT_SYMBOL_GPL vmlinux 0xd0ccde8c proc_create_net_data_write +EXPORT_SYMBOL_GPL vmlinux 0xd0cb275a gpiochip_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0xd0ce194e devm_device_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0xd0d14bd6 xhci_suspend 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 0xd0dea79b debugfs_create_file_unsafe EXPORT_SYMBOL_GPL vmlinux 0xd0df12ba __SCT__tp_func_powernv_throttle -EXPORT_SYMBOL_GPL vmlinux 0xd0e47ea7 edac_pci_release_generic_ctl -EXPORT_SYMBOL_GPL vmlinux 0xd0ef3933 key_set_timeout -EXPORT_SYMBOL_GPL vmlinux 0xd0faf18c dev_pm_qos_remove_notifier -EXPORT_SYMBOL_GPL vmlinux 0xd11f1791 blk_queue_can_use_dma_map_merging -EXPORT_SYMBOL_GPL vmlinux 0xd125dd24 skb_zerocopy_iter_stream -EXPORT_SYMBOL_GPL vmlinux 0xd128e42d serial8250_do_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xd1292d05 ata_sff_queue_pio_task -EXPORT_SYMBOL_GPL vmlinux 0xd12c37d4 dma_buf_begin_cpu_access +EXPORT_SYMBOL_GPL vmlinux 0xd0e4e617 gpiod_set_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0xd0f742eb devlink_trap_groups_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd0fab525 mmu_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd0fb15f3 shmem_file_setup_with_mnt +EXPORT_SYMBOL_GPL vmlinux 0xd0fd67ca sysfs_create_group +EXPORT_SYMBOL_GPL vmlinux 0xd104b666 rt_mutex_unlock +EXPORT_SYMBOL_GPL vmlinux 0xd1101d18 bsg_register_queue +EXPORT_SYMBOL_GPL vmlinux 0xd11a6c34 regmap_noinc_read +EXPORT_SYMBOL_GPL vmlinux 0xd127fa1e locks_alloc_lock +EXPORT_SYMBOL_GPL vmlinux 0xd13401d5 pwm_request_from_chip EXPORT_SYMBOL_GPL vmlinux 0xd1386738 x509_cert_parse EXPORT_SYMBOL_GPL vmlinux 0xd13a94d1 __SCT__tp_func_devlink_trap_report -EXPORT_SYMBOL_GPL vmlinux 0xd146f92b irq_domain_associate_many EXPORT_SYMBOL_GPL vmlinux 0xd1481de7 mpi_clear +EXPORT_SYMBOL_GPL vmlinux 0xd149950a ata_sas_tport_add +EXPORT_SYMBOL_GPL vmlinux 0xd149f6ec intel_pinctrl_get_soc_data EXPORT_SYMBOL_GPL vmlinux 0xd159586c net_prio_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xd165479a wm831x_device_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xd1748eee i2c_new_dummy_device +EXPORT_SYMBOL_GPL vmlinux 0xd15a86a6 ata_pci_sff_init_host +EXPORT_SYMBOL_GPL vmlinux 0xd1641e7b xdp_master_redirect +EXPORT_SYMBOL_GPL vmlinux 0xd1760814 fuse_get_unique EXPORT_SYMBOL_GPL vmlinux 0xd17d2a22 phy_basic_features -EXPORT_SYMBOL_GPL vmlinux 0xd18f7288 rtc_set_time -EXPORT_SYMBOL_GPL vmlinux 0xd1969d10 crypto_unregister_aead -EXPORT_SYMBOL_GPL vmlinux 0xd19aee96 gpiochip_lock_as_irq -EXPORT_SYMBOL_GPL vmlinux 0xd1a36065 __tracepoint_suspend_resume -EXPORT_SYMBOL_GPL vmlinux 0xd1ca8f68 genphy_c45_read_link +EXPORT_SYMBOL_GPL vmlinux 0xd197b9df wm8350_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xd197e2de bio_iov_iter_get_pages +EXPORT_SYMBOL_GPL vmlinux 0xd19c0016 trace_array_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0xd19cd5bc gpiod_to_irq +EXPORT_SYMBOL_GPL vmlinux 0xd1a10e49 xen_register_device_domain_owner +EXPORT_SYMBOL_GPL vmlinux 0xd1c1dec9 acpi_device_modalias EXPORT_SYMBOL_GPL vmlinux 0xd1cac7bf unregister_ftrace_direct EXPORT_SYMBOL_GPL vmlinux 0xd1cbc23c add_timer_on -EXPORT_SYMBOL_GPL vmlinux 0xd1ccb12b device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd1e71d2e l3mdev_master_ifindex_rcu -EXPORT_SYMBOL_GPL vmlinux 0xd1e8ed44 genphy_c45_pma_suspend +EXPORT_SYMBOL_GPL vmlinux 0xd1d23fb2 mmc_send_tuning +EXPORT_SYMBOL_GPL vmlinux 0xd1d844af msg_zerocopy_alloc EXPORT_SYMBOL_GPL vmlinux 0xd1e9b2ad __SCT__tp_func_rpm_resume EXPORT_SYMBOL_GPL vmlinux 0xd1f2eee2 nf_logger_find_get -EXPORT_SYMBOL_GPL vmlinux 0xd20726dc __synth_event_gen_cmd_start -EXPORT_SYMBOL_GPL vmlinux 0xd20a0aa5 sdio_writew +EXPORT_SYMBOL_GPL vmlinux 0xd1ff19ab fixed_phy_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd20a0589 __SCK__tp_func_neigh_event_send_dead EXPORT_SYMBOL_GPL vmlinux 0xd20c66ab __SCT__tp_func_sched_util_est_se_tp EXPORT_SYMBOL_GPL vmlinux 0xd217e9e6 trace_set_clr_event EXPORT_SYMBOL_GPL vmlinux 0xd21b61bd async_schedule_node_domain -EXPORT_SYMBOL_GPL vmlinux 0xd21daea5 mdiobus_modify -EXPORT_SYMBOL_GPL vmlinux 0xd2226ef3 ehci_resume -EXPORT_SYMBOL_GPL vmlinux 0xd22ab8be phy_restore_page +EXPORT_SYMBOL_GPL vmlinux 0xd22c901f rio_release_dma +EXPORT_SYMBOL_GPL vmlinux 0xd2321870 i2c_dw_acpi_configure +EXPORT_SYMBOL_GPL vmlinux 0xd23cd444 ata_qc_get_active +EXPORT_SYMBOL_GPL vmlinux 0xd2409398 crypto_alloc_base EXPORT_SYMBOL_GPL vmlinux 0xd2423f76 i2c_acpi_get_i2c_resource -EXPORT_SYMBOL_GPL vmlinux 0xd245ee65 devres_release_group -EXPORT_SYMBOL_GPL vmlinux 0xd24bb227 blk_insert_cloned_request +EXPORT_SYMBOL_GPL vmlinux 0xd2467d21 perf_aux_output_flag +EXPORT_SYMBOL_GPL vmlinux 0xd2498fbb xfrm_state_afinfo_get_rcu EXPORT_SYMBOL_GPL vmlinux 0xd24e9e8c klist_init EXPORT_SYMBOL_GPL vmlinux 0xd260af0d ring_buffer_write -EXPORT_SYMBOL_GPL vmlinux 0xd26120f3 dev_pm_opp_find_freq_floor -EXPORT_SYMBOL_GPL vmlinux 0xd26ad0b2 register_asymmetric_key_parser -EXPORT_SYMBOL_GPL vmlinux 0xd26aeaf6 ip6_datagram_send_ctl -EXPORT_SYMBOL_GPL vmlinux 0xd26b132e crypto_register_rng -EXPORT_SYMBOL_GPL vmlinux 0xd27252d0 devlink_port_attrs_pci_sf_set +EXPORT_SYMBOL_GPL vmlinux 0xd2729b61 unix_outq_len EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative -EXPORT_SYMBOL_GPL vmlinux 0xd278aa4d usb_submit_urb -EXPORT_SYMBOL_GPL vmlinux 0xd27992cb wwan_create_port +EXPORT_SYMBOL_GPL vmlinux 0xd27ca5dc devm_mbox_controller_register EXPORT_SYMBOL_GPL vmlinux 0xd27f215d gnttab_alloc_grant_references -EXPORT_SYMBOL_GPL vmlinux 0xd286e119 kern_mount -EXPORT_SYMBOL_GPL vmlinux 0xd2a37ea3 acpi_subsys_restore_early -EXPORT_SYMBOL_GPL vmlinux 0xd2ad7465 crypto_register_shash -EXPORT_SYMBOL_GPL vmlinux 0xd2b0d0be pci_dev_unlock +EXPORT_SYMBOL_GPL vmlinux 0xd2843dea __devm_intel_scu_ipc_register +EXPORT_SYMBOL_GPL vmlinux 0xd2a4cf73 securityfs_remove +EXPORT_SYMBOL_GPL vmlinux 0xd2a640d7 i2c_dw_validate_speed +EXPORT_SYMBOL_GPL vmlinux 0xd2a94a19 regulator_get_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0xd2acdf25 gpiod_set_transitory EXPORT_SYMBOL_GPL vmlinux 0xd2b10a05 ata_timing_find_mode -EXPORT_SYMBOL_GPL vmlinux 0xd2b2a4b3 aead_init_geniv -EXPORT_SYMBOL_GPL vmlinux 0xd2c5461f tracepoint_probe_register -EXPORT_SYMBOL_GPL vmlinux 0xd2d276eb devm_rtc_device_register -EXPORT_SYMBOL_GPL vmlinux 0xd2d7b2e2 ata_host_detach -EXPORT_SYMBOL_GPL vmlinux 0xd2e9d08c set_selection_kernel -EXPORT_SYMBOL_GPL vmlinux 0xd3025427 __pm_stay_awake -EXPORT_SYMBOL_GPL vmlinux 0xd30a4506 scsi_dh_set_params +EXPORT_SYMBOL_GPL vmlinux 0xd2e4637d __vfs_removexattr_noperm +EXPORT_SYMBOL_GPL vmlinux 0xd2f9e8b1 clk_register_divider_table +EXPORT_SYMBOL_GPL vmlinux 0xd2fd60ac xfrm_output_resume +EXPORT_SYMBOL_GPL vmlinux 0xd3152292 inode_sb_list_add EXPORT_SYMBOL_GPL vmlinux 0xd31a2ac5 ring_buffer_oldest_event_ts -EXPORT_SYMBOL_GPL vmlinux 0xd31f9a8f devlink_resource_size_get EXPORT_SYMBOL_GPL vmlinux 0xd320ebaf pci_epc_get_first_free_bar -EXPORT_SYMBOL_GPL vmlinux 0xd3244569 ata_sas_slave_configure -EXPORT_SYMBOL_GPL vmlinux 0xd32483ec cpuidle_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd33df075 node_to_amd_nb -EXPORT_SYMBOL_GPL vmlinux 0xd3409c80 bio_start_io_acct -EXPORT_SYMBOL_GPL vmlinux 0xd35263f5 usb_alloc_urb -EXPORT_SYMBOL_GPL vmlinux 0xd354ae7c led_init_default_state_get -EXPORT_SYMBOL_GPL vmlinux 0xd3649d1d extcon_unregister_notifier_all +EXPORT_SYMBOL_GPL vmlinux 0xd3285917 bpf_prog_alloc +EXPORT_SYMBOL_GPL vmlinux 0xd32bce50 adp5520_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xd33e80e0 pci_load_saved_state +EXPORT_SYMBOL_GPL vmlinux 0xd3611f4f sk_msg_return_zero +EXPORT_SYMBOL_GPL vmlinux 0xd3632dbe devm_pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0xd365d0c4 regmap_add_irq_chip_fwnode EXPORT_SYMBOL_GPL vmlinux 0xd36760ef __usb_get_extra_descriptor -EXPORT_SYMBOL_GPL vmlinux 0xd36ca33b __devm_regmap_init_spi -EXPORT_SYMBOL_GPL vmlinux 0xd3704d6a devlink_dpipe_action_put +EXPORT_SYMBOL_GPL vmlinux 0xd36db9fc __page_mapcount EXPORT_SYMBOL_GPL vmlinux 0xd3752c27 atomic_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xd384ab4d __SCK__tp_func_mc_event -EXPORT_SYMBOL_GPL vmlinux 0xd396e435 regmap_exit +EXPORT_SYMBOL_GPL vmlinux 0xd3987846 __pm_runtime_use_autosuspend EXPORT_SYMBOL_GPL vmlinux 0xd39e9848 put_itimerspec64 -EXPORT_SYMBOL_GPL vmlinux 0xd3a972ba led_set_brightness_nosleep -EXPORT_SYMBOL_GPL vmlinux 0xd3c03753 class_remove_file_ns -EXPORT_SYMBOL_GPL vmlinux 0xd3c33e6a devlink_free -EXPORT_SYMBOL_GPL vmlinux 0xd3cae06b regmap_get_val_endian -EXPORT_SYMBOL_GPL vmlinux 0xd3d74658 dma_resv_get_fences -EXPORT_SYMBOL_GPL vmlinux 0xd3d97c6c tcp_done +EXPORT_SYMBOL_GPL vmlinux 0xd3b590a2 phy_restore_page +EXPORT_SYMBOL_GPL vmlinux 0xd3b73a0c xdp_do_redirect +EXPORT_SYMBOL_GPL vmlinux 0xd3c8f3c2 dm_path_uevent +EXPORT_SYMBOL_GPL vmlinux 0xd3cccfe7 devlink_dpipe_action_put +EXPORT_SYMBOL_GPL vmlinux 0xd3e01403 ip_valid_fib_dump_req +EXPORT_SYMBOL_GPL vmlinux 0xd3e2e4bc wm831x_reg_read EXPORT_SYMBOL_GPL vmlinux 0xd3ec851c __traceiter_unmap -EXPORT_SYMBOL_GPL vmlinux 0xd3f16106 dma_get_merge_boundary -EXPORT_SYMBOL_GPL vmlinux 0xd3f86fda fwnode_connection_find_match -EXPORT_SYMBOL_GPL vmlinux 0xd3feadc1 devm_led_classdev_register_ext -EXPORT_SYMBOL_GPL vmlinux 0xd3ff8830 dw_pcie_ep_linkup +EXPORT_SYMBOL_GPL vmlinux 0xd3f0f102 xen_xlate_unmap_gfn_range +EXPORT_SYMBOL_GPL vmlinux 0xd3f566d1 transport_destroy_device +EXPORT_SYMBOL_GPL vmlinux 0xd3f7e603 sata_scr_write +EXPORT_SYMBOL_GPL vmlinux 0xd3fea5fa perf_event_disable EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq -EXPORT_SYMBOL_GPL vmlinux 0xd4035d58 acpi_get_first_physical_node -EXPORT_SYMBOL_GPL vmlinux 0xd413fb3f __traceiter_pelt_irq_tp -EXPORT_SYMBOL_GPL vmlinux 0xd4181fa0 vfio_virqfd_enable -EXPORT_SYMBOL_GPL vmlinux 0xd419e92b uhci_check_and_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0xd40ffe22 rio_mport_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0xd416c5a1 akcipher_register_instance EXPORT_SYMBOL_GPL vmlinux 0xd426dbc4 erst_get_record_count +EXPORT_SYMBOL_GPL vmlinux 0xd42dd9c8 devm_of_pwm_get EXPORT_SYMBOL_GPL vmlinux 0xd42f1d4e show_rcu_tasks_rude_gp_kthread -EXPORT_SYMBOL_GPL vmlinux 0xd4336023 fwnode_get_phy_node -EXPORT_SYMBOL_GPL vmlinux 0xd4346024 pm_generic_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0xd43460b5 rtc_update_irq_enable EXPORT_SYMBOL_GPL vmlinux 0xd4404350 __SCT__tp_func_block_split -EXPORT_SYMBOL_GPL vmlinux 0xd4484c3f __SCK__tp_func_neigh_update EXPORT_SYMBOL_GPL vmlinux 0xd44a5eac kgdb_register_nmi_console -EXPORT_SYMBOL_GPL vmlinux 0xd44e4743 anon_inode_getfd -EXPORT_SYMBOL_GPL vmlinux 0xd468478d rtnl_delete_link +EXPORT_SYMBOL_GPL vmlinux 0xd450cd9a fib_rules_dump +EXPORT_SYMBOL_GPL vmlinux 0xd463c246 nfs_ssc_client_tbl EXPORT_SYMBOL_GPL vmlinux 0xd46af5ef cppc_get_perf_ctrs -EXPORT_SYMBOL_GPL vmlinux 0xd49cb9ce sysfs_remove_link -EXPORT_SYMBOL_GPL vmlinux 0xd49dc2de devfreq_event_add_edev -EXPORT_SYMBOL_GPL vmlinux 0xd4b388a4 tun_get_socket +EXPORT_SYMBOL_GPL vmlinux 0xd4714683 dst_blackhole_redirect +EXPORT_SYMBOL_GPL vmlinux 0xd487e623 iommu_iova_to_phys +EXPORT_SYMBOL_GPL vmlinux 0xd4882930 fib_rules_register +EXPORT_SYMBOL_GPL vmlinux 0xd493c629 usb_autopm_get_interface_async +EXPORT_SYMBOL_GPL vmlinux 0xd499e3f7 elv_rqhash_del +EXPORT_SYMBOL_GPL vmlinux 0xd4b3bd87 __spi_alloc_controller EXPORT_SYMBOL_GPL vmlinux 0xd4b6157e devlink_health_reporter_recovery_done EXPORT_SYMBOL_GPL vmlinux 0xd4b9a616 reset_control_bulk_put -EXPORT_SYMBOL_GPL vmlinux 0xd4ba0c0b __iomap_dio_rw -EXPORT_SYMBOL_GPL vmlinux 0xd4bcebbc alloc_empty_file -EXPORT_SYMBOL_GPL vmlinux 0xd4bdc445 is_transparent_hugepage -EXPORT_SYMBOL_GPL vmlinux 0xd4c003e1 crypto_aead_decrypt EXPORT_SYMBOL_GPL vmlinux 0xd4c14632 system_unbound_wq -EXPORT_SYMBOL_GPL vmlinux 0xd4c1f960 switchdev_handle_fdb_del_to_device -EXPORT_SYMBOL_GPL vmlinux 0xd4c27954 devlink_reload_disable -EXPORT_SYMBOL_GPL vmlinux 0xd4c72def synth_event_add_val -EXPORT_SYMBOL_GPL vmlinux 0xd4cca1cd bus_register -EXPORT_SYMBOL_GPL vmlinux 0xd4db625a handle_bad_irq -EXPORT_SYMBOL_GPL vmlinux 0xd4deded3 phy_calibrate +EXPORT_SYMBOL_GPL vmlinux 0xd4daf504 dma_map_sgtable +EXPORT_SYMBOL_GPL vmlinux 0xd4ddf544 sysfs_create_link +EXPORT_SYMBOL_GPL vmlinux 0xd4e41246 pci_ats_supported +EXPORT_SYMBOL_GPL vmlinux 0xd4e503d6 lwtstate_free EXPORT_SYMBOL_GPL vmlinux 0xd4e6d7e0 linear_range_get_value -EXPORT_SYMBOL_GPL vmlinux 0xd4ea5c3f iommu_capable -EXPORT_SYMBOL_GPL vmlinux 0xd4ef7d1c gnttab_page_cache_shrink +EXPORT_SYMBOL_GPL vmlinux 0xd4eb2a22 usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0xd4f125f5 usb_get_dev EXPORT_SYMBOL_GPL vmlinux 0xd4f5bfa5 iommu_queue_iopf -EXPORT_SYMBOL_GPL vmlinux 0xd50561db ohci_resume +EXPORT_SYMBOL_GPL vmlinux 0xd5092b53 rio_register_scan +EXPORT_SYMBOL_GPL vmlinux 0xd50a260a phy_set_mode_ext +EXPORT_SYMBOL_GPL vmlinux 0xd50b86b6 usb_init_urb +EXPORT_SYMBOL_GPL vmlinux 0xd5131dda __tracepoint_neigh_update_done +EXPORT_SYMBOL_GPL vmlinux 0xd51efac0 get_net_ns +EXPORT_SYMBOL_GPL vmlinux 0xd52cd997 nvdimm_pmem_region_create +EXPORT_SYMBOL_GPL vmlinux 0xd52d30a6 __SCK__tp_func_suspend_resume EXPORT_SYMBOL_GPL vmlinux 0xd5301b2c linear_range_get_max_value -EXPORT_SYMBOL_GPL vmlinux 0xd53a58e3 devm_devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0xd5366dc8 sysfs_remove_link EXPORT_SYMBOL_GPL vmlinux 0xd53c67b3 unregister_net_sysctl_table -EXPORT_SYMBOL_GPL vmlinux 0xd542c354 gov_update_cpu_data +EXPORT_SYMBOL_GPL vmlinux 0xd543ecb8 device_create_bin_file EXPORT_SYMBOL_GPL vmlinux 0xd5474690 usb_role_switch_set_role -EXPORT_SYMBOL_GPL vmlinux 0xd55a8551 rio_unregister_scan +EXPORT_SYMBOL_GPL vmlinux 0xd558178e crypto_enqueue_request EXPORT_SYMBOL_GPL vmlinux 0xd55ad93b iommu_group_get_iommudata EXPORT_SYMBOL_GPL vmlinux 0xd57fbd31 hwrng_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd58ed7ce wm831x_auxadc_read +EXPORT_SYMBOL_GPL vmlinux 0xd5809395 pci_epf_destroy +EXPORT_SYMBOL_GPL vmlinux 0xd58de95c fat_add_entries +EXPORT_SYMBOL_GPL vmlinux 0xd597e201 tty_put_char EXPORT_SYMBOL_GPL vmlinux 0xd59a1587 linkmode_resolve_pause -EXPORT_SYMBOL_GPL vmlinux 0xd59b8fe9 gpiod_unexport -EXPORT_SYMBOL_GPL vmlinux 0xd5a7dc38 skb_mpls_pop -EXPORT_SYMBOL_GPL vmlinux 0xd5b00b38 devres_remove_group -EXPORT_SYMBOL_GPL vmlinux 0xd5b18cb9 regmap_write -EXPORT_SYMBOL_GPL vmlinux 0xd5d2076a dma_buf_vmap -EXPORT_SYMBOL_GPL vmlinux 0xd5ebac8b usb_pipe_type_check -EXPORT_SYMBOL_GPL vmlinux 0xd5f07c35 pinctrl_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0xd5a5f271 pinctrl_select_default_state +EXPORT_SYMBOL_GPL vmlinux 0xd5a9e9c6 sock_diag_unregister_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0xd5ba088c phy_modify +EXPORT_SYMBOL_GPL vmlinux 0xd5bf0982 setfl +EXPORT_SYMBOL_GPL vmlinux 0xd5d3e576 usb_disable_xhci_ports EXPORT_SYMBOL_GPL vmlinux 0xd5f3bb7b set_memory_encrypted -EXPORT_SYMBOL_GPL vmlinux 0xd5fd9935 clk_register -EXPORT_SYMBOL_GPL vmlinux 0xd60a37a6 __tracepoint_neigh_cleanup_and_release -EXPORT_SYMBOL_GPL vmlinux 0xd6195983 compat_only_sysfs_link_entry_to_kobj -EXPORT_SYMBOL_GPL vmlinux 0xd61d55f4 ip4_datagram_release_cb -EXPORT_SYMBOL_GPL vmlinux 0xd6312fd9 pstore_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd640dcd2 tty_ldisc_deref +EXPORT_SYMBOL_GPL vmlinux 0xd5f48532 devm_pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd6197178 gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0xd623fa72 tcp_slow_start +EXPORT_SYMBOL_GPL vmlinux 0xd6280b0e dma_get_required_mask EXPORT_SYMBOL_GPL vmlinux 0xd64ed259 __memcat_p -EXPORT_SYMBOL_GPL vmlinux 0xd65812f6 vring_transport_features -EXPORT_SYMBOL_GPL vmlinux 0xd65a8c5e wait_on_page_writeback_killable -EXPORT_SYMBOL_GPL vmlinux 0xd66da55b subsys_interface_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd671533a dw_pcie_read_dbi +EXPORT_SYMBOL_GPL vmlinux 0xd6574dde rio_register_mport +EXPORT_SYMBOL_GPL vmlinux 0xd65bf339 gpiochip_reqres_irq +EXPORT_SYMBOL_GPL vmlinux 0xd66479bc dm_bio_from_per_bio_data EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget -EXPORT_SYMBOL_GPL vmlinux 0xd687f920 sched_trace_cfs_rq_path -EXPORT_SYMBOL_GPL vmlinux 0xd695d955 nexthop_find_by_id -EXPORT_SYMBOL_GPL vmlinux 0xd6b92930 edac_mc_add_mc_with_groups -EXPORT_SYMBOL_GPL vmlinux 0xd6ba49c1 debugfs_create_u32_array -EXPORT_SYMBOL_GPL vmlinux 0xd6f14936 scsi_dh_attach -EXPORT_SYMBOL_GPL vmlinux 0xd6fedae3 devm_regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xd6954827 pci_d3cold_enable +EXPORT_SYMBOL_GPL vmlinux 0xd698c89d fscrypt_ioctl_get_nonce +EXPORT_SYMBOL_GPL vmlinux 0xd6b5c43d led_compose_name +EXPORT_SYMBOL_GPL vmlinux 0xd6bf60eb acpi_dma_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0xd6c22420 fsverity_ioctl_read_metadata +EXPORT_SYMBOL_GPL vmlinux 0xd6deab33 ehci_setup +EXPORT_SYMBOL_GPL vmlinux 0xd6df79bc __SCK__tp_func_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0xd6f7a8cc auxiliary_device_init +EXPORT_SYMBOL_GPL vmlinux 0xd6f9d8c7 phy_destroy EXPORT_SYMBOL_GPL vmlinux 0xd6feefa5 agp_num_entries -EXPORT_SYMBOL_GPL vmlinux 0xd702c719 nd_cmd_in_size -EXPORT_SYMBOL_GPL vmlinux 0xd705a05b __SCK__tp_func_suspend_resume -EXPORT_SYMBOL_GPL vmlinux 0xd708ddbf ata_qc_complete -EXPORT_SYMBOL_GPL vmlinux 0xd7132131 dev_pm_opp_get_level -EXPORT_SYMBOL_GPL vmlinux 0xd7194829 dev_pm_opp_set_clkname +EXPORT_SYMBOL_GPL vmlinux 0xd7175153 sk_clear_memalloc +EXPORT_SYMBOL_GPL vmlinux 0xd718fe6d usb_amd_pt_check_port +EXPORT_SYMBOL_GPL vmlinux 0xd71c8d16 acpi_subsys_prepare EXPORT_SYMBOL_GPL vmlinux 0xd7269c64 osc_sb_native_usb4_control -EXPORT_SYMBOL_GPL vmlinux 0xd728f70e ata_sas_scsi_ioctl EXPORT_SYMBOL_GPL vmlinux 0xd7293ffc percpu_ref_reinit -EXPORT_SYMBOL_GPL vmlinux 0xd72b110f tps6586x_get_version EXPORT_SYMBOL_GPL vmlinux 0xd72feba2 xenbus_read_driver_state EXPORT_SYMBOL_GPL vmlinux 0xd7399d2a efivar_entry_iter_end -EXPORT_SYMBOL_GPL vmlinux 0xd747fa08 phy_init -EXPORT_SYMBOL_GPL vmlinux 0xd74ff7c6 relay_flush -EXPORT_SYMBOL_GPL vmlinux 0xd7596853 usb_alloc_dev +EXPORT_SYMBOL_GPL vmlinux 0xd73cf784 crypto_stats_skcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0xd743556a crypto_stats_kpp_generate_public_key +EXPORT_SYMBOL_GPL vmlinux 0xd74d1bae fat_getattr +EXPORT_SYMBOL_GPL vmlinux 0xd74d1c6f devm_hwspin_lock_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd7574f46 ata_acpi_stm EXPORT_SYMBOL_GPL vmlinux 0xd75b20aa rsa_parse_priv_key -EXPORT_SYMBOL_GPL vmlinux 0xd75e09b3 __SCK__tp_func_sched_util_est_se_tp EXPORT_SYMBOL_GPL vmlinux 0xd768e985 regulator_has_full_constraints -EXPORT_SYMBOL_GPL vmlinux 0xd76e0ad8 trace_array_printk +EXPORT_SYMBOL_GPL vmlinux 0xd76ad32a init_uts_ns +EXPORT_SYMBOL_GPL vmlinux 0xd7718101 regulator_is_equal EXPORT_SYMBOL_GPL vmlinux 0xd774957d mpi_write_to_sgl -EXPORT_SYMBOL_GPL vmlinux 0xd77eca2a xfrm_put_translator -EXPORT_SYMBOL_GPL vmlinux 0xd7a5c8e7 scsi_build_sense -EXPORT_SYMBOL_GPL vmlinux 0xd7b031ac fs_dax_get_by_bdev +EXPORT_SYMBOL_GPL vmlinux 0xd77ce5c6 trace_array_destroy +EXPORT_SYMBOL_GPL vmlinux 0xd7acf1cf crypto_register_template EXPORT_SYMBOL_GPL vmlinux 0xd7b5dfee xas_split EXPORT_SYMBOL_GPL vmlinux 0xd7b7fb80 pkcs7_validate_trust +EXPORT_SYMBOL_GPL vmlinux 0xd7c316b6 md_rdev_clear EXPORT_SYMBOL_GPL vmlinux 0xd7cea889 edac_mod_work EXPORT_SYMBOL_GPL vmlinux 0xd7d7f2a7 devlink_port_health_reporter_destroy -EXPORT_SYMBOL_GPL vmlinux 0xd7d88b00 acpi_dev_clear_dependencies -EXPORT_SYMBOL_GPL vmlinux 0xd7dc8b8f spi_write_then_read -EXPORT_SYMBOL_GPL vmlinux 0xd7e14fb4 pwmchip_remove -EXPORT_SYMBOL_GPL vmlinux 0xd7e2912b class_interface_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd7e4b45b fat_time_fat2unix -EXPORT_SYMBOL_GPL vmlinux 0xd7e72727 dbs_update -EXPORT_SYMBOL_GPL vmlinux 0xd7ee2b1d platform_get_irq_byname_optional -EXPORT_SYMBOL_GPL vmlinux 0xd803838e ata_do_dev_read_id -EXPORT_SYMBOL_GPL vmlinux 0xd8163605 gpiochip_find -EXPORT_SYMBOL_GPL vmlinux 0xd8289d9a debugfs_create_symlink -EXPORT_SYMBOL_GPL vmlinux 0xd8303805 __blk_req_zone_write_lock +EXPORT_SYMBOL_GPL vmlinux 0xd7f0ccd6 pci_cfg_access_unlock +EXPORT_SYMBOL_GPL vmlinux 0xd7f644e6 usb_alloc_dev +EXPORT_SYMBOL_GPL vmlinux 0xd8063a9e iomap_writepages +EXPORT_SYMBOL_GPL vmlinux 0xd828119d dummy_irq_chip EXPORT_SYMBOL_GPL vmlinux 0xd84d35bd dax_read_lock -EXPORT_SYMBOL_GPL vmlinux 0xd84ead25 bpf_prog_get_type_dev -EXPORT_SYMBOL_GPL vmlinux 0xd85f3090 __SCK__tp_func_detach_device_from_domain -EXPORT_SYMBOL_GPL vmlinux 0xd87d8d53 __tracepoint_block_rq_insert +EXPORT_SYMBOL_GPL vmlinux 0xd863a72c usb_add_phy EXPORT_SYMBOL_GPL vmlinux 0xd87fc0a0 usb_amd_prefetch_quirk -EXPORT_SYMBOL_GPL vmlinux 0xd883c96f bpf_offload_dev_create -EXPORT_SYMBOL_GPL vmlinux 0xd88d3373 noop_invalidatepage -EXPORT_SYMBOL_GPL vmlinux 0xd8b0d8fc __irq_domain_add -EXPORT_SYMBOL_GPL vmlinux 0xd8b1d5d8 tracing_cond_snapshot_data -EXPORT_SYMBOL_GPL vmlinux 0xd8b6b38a security_path_symlink -EXPORT_SYMBOL_GPL vmlinux 0xd8c441f7 dst_cache_get_ip4 -EXPORT_SYMBOL_GPL vmlinux 0xd8c98125 nfs42_ssc_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd891c1e4 icc_node_del +EXPORT_SYMBOL_GPL vmlinux 0xd8aa02c6 rio_unmap_inb_region +EXPORT_SYMBOL_GPL vmlinux 0xd8badf58 xhci_ext_cap_init EXPORT_SYMBOL_GPL vmlinux 0xd8d065dd hv_stimer_alloc +EXPORT_SYMBOL_GPL vmlinux 0xd8d1f5ad pm_runtime_forbid EXPORT_SYMBOL_GPL vmlinux 0xd8d68ab1 dmi_memdev_type -EXPORT_SYMBOL_GPL vmlinux 0xd8e3de12 skb_gso_validate_mac_len -EXPORT_SYMBOL_GPL vmlinux 0xd8ee714f spi_replace_transfers +EXPORT_SYMBOL_GPL vmlinux 0xd8e6dae3 powercap_unregister_control_type +EXPORT_SYMBOL_GPL vmlinux 0xd8e8c981 pci_bus_resource_n +EXPORT_SYMBOL_GPL vmlinux 0xd8f1d526 perf_pmu_migrate_context EXPORT_SYMBOL_GPL vmlinux 0xd8fbb14d net_cls_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xd900d396 ata_bmdma_stop -EXPORT_SYMBOL_GPL vmlinux 0xd90742ab generic_access_phys +EXPORT_SYMBOL_GPL vmlinux 0xd90190e5 gpiod_get_array_value_cansleep EXPORT_SYMBOL_GPL vmlinux 0xd919806a amd_cache_northbridges EXPORT_SYMBOL_GPL vmlinux 0xd91dbd1f xdp_alloc_skb_bulk -EXPORT_SYMBOL_GPL vmlinux 0xd92633d5 __tracepoint_pelt_se_tp +EXPORT_SYMBOL_GPL vmlinux 0xd9241917 device_unregister EXPORT_SYMBOL_GPL vmlinux 0xd92ef192 security_kernel_post_load_data EXPORT_SYMBOL_GPL vmlinux 0xd92f0791 leds_list_lock -EXPORT_SYMBOL_GPL vmlinux 0xd92f348d devm_devfreq_event_remove_edev -EXPORT_SYMBOL_GPL vmlinux 0xd9367e46 irq_domain_add_legacy +EXPORT_SYMBOL_GPL vmlinux 0xd9339b38 blk_rq_err_bytes EXPORT_SYMBOL_GPL vmlinux 0xd93a5cb1 efivar_variable_is_removable -EXPORT_SYMBOL_GPL vmlinux 0xd9519c3c __traceiter_io_page_fault -EXPORT_SYMBOL_GPL vmlinux 0xd956833e __traceiter_xdp_bulk_tx +EXPORT_SYMBOL_GPL vmlinux 0xd9515524 uart_xchar_out +EXPORT_SYMBOL_GPL vmlinux 0xd95976c8 add_disk_randomness EXPORT_SYMBOL_GPL vmlinux 0xd96babb4 interval_tree_iter_next -EXPORT_SYMBOL_GPL vmlinux 0xd979ce9f dma_map_sgtable +EXPORT_SYMBOL_GPL vmlinux 0xd97259d1 clockevents_config_and_register +EXPORT_SYMBOL_GPL vmlinux 0xd97f99a5 dm_accept_partial_bio EXPORT_SYMBOL_GPL vmlinux 0xd9916c3a idr_alloc_u32 -EXPORT_SYMBOL_GPL vmlinux 0xd9945960 dm_bio_from_per_bio_data +EXPORT_SYMBOL_GPL vmlinux 0xd996025a sysfs_create_link_nowarn EXPORT_SYMBOL_GPL vmlinux 0xd9992eb4 uv_bios_get_geoinfo -EXPORT_SYMBOL_GPL vmlinux 0xd9c22d1b usb_hcd_pci_remove -EXPORT_SYMBOL_GPL vmlinux 0xd9c55054 fuse_file_poll +EXPORT_SYMBOL_GPL vmlinux 0xd9c54656 dm_put +EXPORT_SYMBOL_GPL vmlinux 0xd9c7ede5 usb_get_intf +EXPORT_SYMBOL_GPL vmlinux 0xd9c896dd rio_mport_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0xd9c9bb68 ip6_datagram_recv_ctl EXPORT_SYMBOL_GPL vmlinux 0xd9e24457 ring_buffer_peek -EXPORT_SYMBOL_GPL vmlinux 0xd9e5e6bc isa_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0xd9f7681f lwtunnel_encap_add_ops +EXPORT_SYMBOL_GPL vmlinux 0xd9ed8513 of_pm_clk_add_clk EXPORT_SYMBOL_GPL vmlinux 0xd9ff2172 ezx_pcap_write -EXPORT_SYMBOL_GPL vmlinux 0xda064ff0 pci_user_read_config_dword +EXPORT_SYMBOL_GPL vmlinux 0xda005ec0 sysfs_chmod_file EXPORT_SYMBOL_GPL vmlinux 0xda0947de kmsg_dump_unregister -EXPORT_SYMBOL_GPL vmlinux 0xda0effc8 acpi_dev_get_resources -EXPORT_SYMBOL_GPL vmlinux 0xda13d464 extcon_dev_free -EXPORT_SYMBOL_GPL vmlinux 0xda13e750 public_key_subtype -EXPORT_SYMBOL_GPL vmlinux 0xda14d90e devlink_port_region_create +EXPORT_SYMBOL_GPL vmlinux 0xda1343fa sk_set_peek_off +EXPORT_SYMBOL_GPL vmlinux 0xda1ad65f replace_page_cache_page EXPORT_SYMBOL_GPL vmlinux 0xda1f78ee clear_hv_tscchange_cb -EXPORT_SYMBOL_GPL vmlinux 0xda215de7 register_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0xda2c2abd watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0xda2d5201 cpci_hp_unregister_bus EXPORT_SYMBOL_GPL vmlinux 0xda320d31 sfp_module_start -EXPORT_SYMBOL_GPL vmlinux 0xda41b37b pci_pri_supported -EXPORT_SYMBOL_GPL vmlinux 0xda4c30a1 blk_ksm_update_capabilities -EXPORT_SYMBOL_GPL vmlinux 0xda5449a1 dm_hold -EXPORT_SYMBOL_GPL vmlinux 0xda55606e sock_diag_register_inet_compat -EXPORT_SYMBOL_GPL vmlinux 0xda575b64 power_supply_property_is_writeable -EXPORT_SYMBOL_GPL vmlinux 0xda6305b5 devm_irq_alloc_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0xda63452a pci_dev_run_wake -EXPORT_SYMBOL_GPL vmlinux 0xda66b876 pwm_request +EXPORT_SYMBOL_GPL vmlinux 0xda384392 device_show_bool +EXPORT_SYMBOL_GPL vmlinux 0xda5e9892 switchdev_handle_fdb_add_to_device +EXPORT_SYMBOL_GPL vmlinux 0xda62195a pci_cfg_access_trylock +EXPORT_SYMBOL_GPL vmlinux 0xda64a34d devm_pm_opp_attach_genpd +EXPORT_SYMBOL_GPL vmlinux 0xda6a51ba dev_get_regmap EXPORT_SYMBOL_GPL vmlinux 0xda7912d4 freq_qos_add_request -EXPORT_SYMBOL_GPL vmlinux 0xda82dec0 edac_mc_free EXPORT_SYMBOL_GPL vmlinux 0xda8369a7 __traceiter_extlog_mem_event +EXPORT_SYMBOL_GPL vmlinux 0xda8b8bd6 power_supply_external_power_changed +EXPORT_SYMBOL_GPL vmlinux 0xda8c39f1 devm_extcon_dev_unregister EXPORT_SYMBOL_GPL vmlinux 0xda8e1302 software_node_find_by_name -EXPORT_SYMBOL_GPL vmlinux 0xda963e71 ata_sas_async_probe EXPORT_SYMBOL_GPL vmlinux 0xdaa06dc1 acpi_lpat_raw_to_temp -EXPORT_SYMBOL_GPL vmlinux 0xdaa37725 gpiod_direction_input +EXPORT_SYMBOL_GPL vmlinux 0xdaa676da scsi_dh_attach EXPORT_SYMBOL_GPL vmlinux 0xdab5a1eb interval_tree_insert -EXPORT_SYMBOL_GPL vmlinux 0xdac734cf edac_pci_handle_npe -EXPORT_SYMBOL_GPL vmlinux 0xdade58a0 crypto_alg_mod_lookup -EXPORT_SYMBOL_GPL vmlinux 0xdae0c1d4 register_pernet_device -EXPORT_SYMBOL_GPL vmlinux 0xdae9957b devlink_rate_nodes_destroy -EXPORT_SYMBOL_GPL vmlinux 0xdaef0cca usb_hcd_start_port_resume +EXPORT_SYMBOL_GPL vmlinux 0xdac4f38f gpiochip_add_data_with_key +EXPORT_SYMBOL_GPL vmlinux 0xdac5907f virtqueue_kick +EXPORT_SYMBOL_GPL vmlinux 0xdacd09d4 device_match_any +EXPORT_SYMBOL_GPL vmlinux 0xdad30bd3 scsi_mode_select +EXPORT_SYMBOL_GPL vmlinux 0xdad79a7e dm_internal_resume_fast +EXPORT_SYMBOL_GPL vmlinux 0xdad7f342 wm8350_block_read +EXPORT_SYMBOL_GPL vmlinux 0xdaef0de4 devm_usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0xdaef39fe pci_acpi_set_companion_lookup_hook EXPORT_SYMBOL_GPL vmlinux 0xdaf4dfb3 fb_mode_option EXPORT_SYMBOL_GPL vmlinux 0xdaf5c16e __cookie_v4_check -EXPORT_SYMBOL_GPL vmlinux 0xdb19a66a nvdimm_delete -EXPORT_SYMBOL_GPL vmlinux 0xdb1a479e xenbus_dev_is_online -EXPORT_SYMBOL_GPL vmlinux 0xdb23eb62 wait_on_page_writeback -EXPORT_SYMBOL_GPL vmlinux 0xdb2e0c07 to_nd_desc -EXPORT_SYMBOL_GPL vmlinux 0xdb30061e dma_buf_export +EXPORT_SYMBOL_GPL vmlinux 0xdafa2223 spi_take_timestamp_post +EXPORT_SYMBOL_GPL vmlinux 0xdafe51a2 to_nd_desc +EXPORT_SYMBOL_GPL vmlinux 0xdb0c4fda sk_msg_memcopy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0xdb20f3e7 phy_modify_mmd_changed EXPORT_SYMBOL_GPL vmlinux 0xdb3498ab kobject_move -EXPORT_SYMBOL_GPL vmlinux 0xdb430dd4 virtqueue_enable_cb_delayed -EXPORT_SYMBOL_GPL vmlinux 0xdb436e03 rdev_clear_badblocks +EXPORT_SYMBOL_GPL vmlinux 0xdb43263b vfio_pci_core_sriov_configure +EXPORT_SYMBOL_GPL vmlinux 0xdb4f4c32 dma_buf_map_attachment EXPORT_SYMBOL_GPL vmlinux 0xdb62dc67 __SCT__tp_func_map EXPORT_SYMBOL_GPL vmlinux 0xdb63a944 acpi_lpat_get_conversion_table -EXPORT_SYMBOL_GPL vmlinux 0xdb6a5f6c irq_domain_get_irq_data -EXPORT_SYMBOL_GPL vmlinux 0xdb7267da iommu_sva_unbind_gpasid -EXPORT_SYMBOL_GPL vmlinux 0xdb7d80ad led_trigger_blink_oneshot -EXPORT_SYMBOL_GPL vmlinux 0xdb7ef336 pci_epc_write_header +EXPORT_SYMBOL_GPL vmlinux 0xdb7aa01a ata_scsi_slave_config +EXPORT_SYMBOL_GPL vmlinux 0xdb7cccff i2c_new_dummy_device EXPORT_SYMBOL_GPL vmlinux 0xdb82f71f sbitmap_init_node EXPORT_SYMBOL_GPL vmlinux 0xdb8a1b3f usermodehelper_read_trylock -EXPORT_SYMBOL_GPL vmlinux 0xdb9c5ef2 __iptunnel_pull_header -EXPORT_SYMBOL_GPL vmlinux 0xdb9d3fa8 bio_clone_blkg_association -EXPORT_SYMBOL_GPL vmlinux 0xdb9eae69 edac_device_del_device -EXPORT_SYMBOL_GPL vmlinux 0xdb9eddbe phy_configure -EXPORT_SYMBOL_GPL vmlinux 0xdb9fd95d subsys_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0xdb8c0176 rio_route_get_entry +EXPORT_SYMBOL_GPL vmlinux 0xdb9ffe82 devm_gpiod_put_array EXPORT_SYMBOL_GPL vmlinux 0xdba0e344 machine_check_poll -EXPORT_SYMBOL_GPL vmlinux 0xdbba7d86 fork_usermode_driver -EXPORT_SYMBOL_GPL vmlinux 0xdbbf5989 devm_regmap_del_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0xdbc65e60 serial8250_tx_chars -EXPORT_SYMBOL_GPL vmlinux 0xdbcadb35 regulator_set_soft_start_regmap -EXPORT_SYMBOL_GPL vmlinux 0xdbd48009 serdev_device_write_buf +EXPORT_SYMBOL_GPL vmlinux 0xdbc16588 shash_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0xdbc4488a acpi_dev_add_driver_gpios +EXPORT_SYMBOL_GPL vmlinux 0xdbcda6c8 vfio_pci_register_dev_region +EXPORT_SYMBOL_GPL vmlinux 0xdbcf35f5 tty_buffer_space_avail +EXPORT_SYMBOL_GPL vmlinux 0xdbd671a2 input_ff_flush EXPORT_SYMBOL_GPL vmlinux 0xdbdb0e8b request_any_context_irq -EXPORT_SYMBOL_GPL vmlinux 0xdbe04f7c devm_pinctrl_register_and_init -EXPORT_SYMBOL_GPL vmlinux 0xdbe64018 i2c_new_scanned_device +EXPORT_SYMBOL_GPL vmlinux 0xdbf03192 phy_pm_runtime_forbid EXPORT_SYMBOL_GPL vmlinux 0xdbf7cb70 mpi_get_nbits -EXPORT_SYMBOL_GPL vmlinux 0xdbfdd34e gpiod_set_array_value EXPORT_SYMBOL_GPL vmlinux 0xdc02eb39 dmi_available EXPORT_SYMBOL_GPL vmlinux 0xdc14a211 xen_hvm_evtchn_do_upcall -EXPORT_SYMBOL_GPL vmlinux 0xdc2606f9 gpio_to_desc -EXPORT_SYMBOL_GPL vmlinux 0xdc291f66 dm_internal_suspend_noflush +EXPORT_SYMBOL_GPL vmlinux 0xdc2bfa96 __udp6_lib_lookup EXPORT_SYMBOL_GPL vmlinux 0xdc43bdc6 pci_vpd_find_ro_info_keyword EXPORT_SYMBOL_GPL vmlinux 0xdc45a5db edac_stop_work -EXPORT_SYMBOL_GPL vmlinux 0xdc48e99d devlink_flash_update_status_notify +EXPORT_SYMBOL_GPL vmlinux 0xdc45ed6d pci_epc_get_features +EXPORT_SYMBOL_GPL vmlinux 0xdc54fd92 hwmon_device_register_with_info +EXPORT_SYMBOL_GPL vmlinux 0xdc5cbbe5 crypto_grab_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xdc5f7153 do_unbind_con_driver EXPORT_SYMBOL_GPL vmlinux 0xdc6596fa irq_set_parent EXPORT_SYMBOL_GPL vmlinux 0xdc6699cb acpi_dev_free_resource_list -EXPORT_SYMBOL_GPL vmlinux 0xdc681a0f dev_pm_domain_detach +EXPORT_SYMBOL_GPL vmlinux 0xdc7149c3 devm_gpiod_get_optional EXPORT_SYMBOL_GPL vmlinux 0xdc719bcd ftrace_ops_set_global_filter 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 0xdc940d02 xenbus_free_evtchn +EXPORT_SYMBOL_GPL vmlinux 0xdc8a29d4 regulator_map_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0xdc8a6c2a dw_pcie_upconfig_setup +EXPORT_SYMBOL_GPL vmlinux 0xdc977c49 wm831x_device_shutdown EXPORT_SYMBOL_GPL vmlinux 0xdc97af2e syscore_suspend EXPORT_SYMBOL_GPL vmlinux 0xdc9fa232 raw_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0xdca4bd7d spi_bus_unlock -EXPORT_SYMBOL_GPL vmlinux 0xdcc72397 regulator_get_voltage_rdev -EXPORT_SYMBOL_GPL vmlinux 0xdcf2f90a icc_link_destroy +EXPORT_SYMBOL_GPL vmlinux 0xdcae7be6 reset_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdcb886ec ip6_flush_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0xdcc1867e cdrom_read_tocentry +EXPORT_SYMBOL_GPL vmlinux 0xdcc3f237 blk_mq_alloc_sq_tag_set +EXPORT_SYMBOL_GPL vmlinux 0xdcc6ebea devfreq_event_get_event +EXPORT_SYMBOL_GPL vmlinux 0xdcc75598 regulator_list_hardware_vsel +EXPORT_SYMBOL_GPL vmlinux 0xdccb728d pm_generic_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0xdccdac8b dev_get_tstats64 +EXPORT_SYMBOL_GPL vmlinux 0xdce88344 irq_setup_alt_chip EXPORT_SYMBOL_GPL vmlinux 0xdd0762df set_worker_desc -EXPORT_SYMBOL_GPL vmlinux 0xdd314997 i2c_dw_validate_speed +EXPORT_SYMBOL_GPL vmlinux 0xdd0c1dd9 pci_bus_max_busnr +EXPORT_SYMBOL_GPL vmlinux 0xdd17100e raw_unhash_sk +EXPORT_SYMBOL_GPL vmlinux 0xdd220b4d rio_request_dma +EXPORT_SYMBOL_GPL vmlinux 0xdd2dd8f5 acpi_processor_get_performance_info EXPORT_SYMBOL_GPL vmlinux 0xdd391eff profile_event_unregister -EXPORT_SYMBOL_GPL vmlinux 0xdd3cd0fb debugfs_create_regset32 +EXPORT_SYMBOL_GPL vmlinux 0xdd3e5f6c security_file_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xdd41e9a8 dm_internal_resume EXPORT_SYMBOL_GPL vmlinux 0xdd4253c7 unregister_kretprobe -EXPORT_SYMBOL_GPL vmlinux 0xdd5b1124 crypto_req_done +EXPORT_SYMBOL_GPL vmlinux 0xdd5823fd hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdd59ecc8 inet_csk_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0xdd626ee3 fuse_len_args -EXPORT_SYMBOL_GPL vmlinux 0xdd666b80 i2c_new_ancillary_device -EXPORT_SYMBOL_GPL vmlinux 0xdd6c6986 to_nd_region EXPORT_SYMBOL_GPL vmlinux 0xdd6ddcec __traceiter_error_report_end -EXPORT_SYMBOL_GPL vmlinux 0xdd70db04 tty_ldisc_ref_wait -EXPORT_SYMBOL_GPL vmlinux 0xdd810ed6 thermal_add_hwmon_sysfs -EXPORT_SYMBOL_GPL vmlinux 0xdd9b5fb6 blk_mq_unfreeze_queue EXPORT_SYMBOL_GPL vmlinux 0xdd9dd80d xen_pvh +EXPORT_SYMBOL_GPL vmlinux 0xdda0d22c regmap_write +EXPORT_SYMBOL_GPL vmlinux 0xddadb43d ata_acpi_gtm_xfermask +EXPORT_SYMBOL_GPL vmlinux 0xddb187d2 fsnotify_put_mark +EXPORT_SYMBOL_GPL vmlinux 0xddb22d9e dev_pm_opp_set_prop_name EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove -EXPORT_SYMBOL_GPL vmlinux 0xddcef757 tcp_twsk_destructor -EXPORT_SYMBOL_GPL vmlinux 0xdde58368 __rtnl_link_unregister -EXPORT_SYMBOL_GPL vmlinux 0xdde7f81b pci_msi_mask_irq -EXPORT_SYMBOL_GPL vmlinux 0xddf0157d led_stop_software_blink -EXPORT_SYMBOL_GPL vmlinux 0xde04393b decrypt_blob +EXPORT_SYMBOL_GPL vmlinux 0xdde04dc6 md_find_rdev_nr_rcu +EXPORT_SYMBOL_GPL vmlinux 0xddfcd1ce bus_sort_breadthfirst EXPORT_SYMBOL_GPL vmlinux 0xde09a94d xas_find -EXPORT_SYMBOL_GPL vmlinux 0xde1cf71c usb_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0xde31582c regulator_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xde40db94 pinctrl_get_group_pins -EXPORT_SYMBOL_GPL vmlinux 0xde492fd5 pci_hp_remove_module_link -EXPORT_SYMBOL_GPL vmlinux 0xde4d76db sysfs_unmerge_group -EXPORT_SYMBOL_GPL vmlinux 0xde6739b9 device_link_remove +EXPORT_SYMBOL_GPL vmlinux 0xde12a0af serdev_device_write_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xde21b1c8 usb_disable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0xde2556d9 dev_pm_opp_set_rate +EXPORT_SYMBOL_GPL vmlinux 0xde405b65 cpufreq_cpu_put +EXPORT_SYMBOL_GPL vmlinux 0xde408e7e iommu_setup_dma_ops +EXPORT_SYMBOL_GPL vmlinux 0xde433fd3 dev_pm_opp_attach_genpd +EXPORT_SYMBOL_GPL vmlinux 0xde546efd vchan_dma_desc_free_list +EXPORT_SYMBOL_GPL vmlinux 0xde5a884e serdev_device_alloc EXPORT_SYMBOL_GPL vmlinux 0xde6f1851 TSS_checkhmac1 -EXPORT_SYMBOL_GPL vmlinux 0xde7cda50 scsi_target_unblock -EXPORT_SYMBOL_GPL vmlinux 0xde835bda __SCK__tp_func_br_fdb_update -EXPORT_SYMBOL_GPL vmlinux 0xde96b5b6 strp_stop +EXPORT_SYMBOL_GPL vmlinux 0xde7922e3 edac_pci_create_generic_ctl +EXPORT_SYMBOL_GPL vmlinux 0xde90b271 ata_do_set_mode EXPORT_SYMBOL_GPL vmlinux 0xde9ab8c7 xenbus_rm -EXPORT_SYMBOL_GPL vmlinux 0xdeb463a2 iomap_swapfile_activate -EXPORT_SYMBOL_GPL vmlinux 0xdece7055 iommu_aux_detach_device -EXPORT_SYMBOL_GPL vmlinux 0xded07ed5 thermal_zone_device_enable -EXPORT_SYMBOL_GPL vmlinux 0xded28b11 rio_register_driver -EXPORT_SYMBOL_GPL vmlinux 0xdedf72e2 usb_set_interface -EXPORT_SYMBOL_GPL vmlinux 0xdee1dc46 vfs_truncate -EXPORT_SYMBOL_GPL vmlinux 0xdee265a1 bpf_prog_create -EXPORT_SYMBOL_GPL vmlinux 0xdee9f53c fwnode_get_next_parent -EXPORT_SYMBOL_GPL vmlinux 0xdef44b4b create_signature -EXPORT_SYMBOL_GPL vmlinux 0xdefa160c bus_remove_file -EXPORT_SYMBOL_GPL vmlinux 0xdefe59cf rio_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xdedf34b4 regulator_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0xdeee05bf set_secondary_fwnode EXPORT_SYMBOL_GPL vmlinux 0xdeffa0a7 edac_raw_mc_handle_error EXPORT_SYMBOL_GPL vmlinux 0xdf0ca3f4 cpu_latency_qos_request_active EXPORT_SYMBOL_GPL vmlinux 0xdf0f75c6 eventfd_signal -EXPORT_SYMBOL_GPL vmlinux 0xdf185f27 bio_associate_blkg_from_css +EXPORT_SYMBOL_GPL vmlinux 0xdf111964 nf_hook_entries_delete_raw EXPORT_SYMBOL_GPL vmlinux 0xdf1882af dbgp_reset_prep EXPORT_SYMBOL_GPL vmlinux 0xdf2738bb cpu_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xdf2d6432 efivars_kobject -EXPORT_SYMBOL_GPL vmlinux 0xdf2e6d9f relay_switch_subbuf -EXPORT_SYMBOL_GPL vmlinux 0xdf417567 bdi_dev_name +EXPORT_SYMBOL_GPL vmlinux 0xdf2c4a88 blkdev_report_zones EXPORT_SYMBOL_GPL vmlinux 0xdf448d1c fanout_mutex -EXPORT_SYMBOL_GPL vmlinux 0xdf4f41e6 mmu_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0xdf60f212 __tracepoint_fdb_delete -EXPORT_SYMBOL_GPL vmlinux 0xdf6fb1bf pci_try_reset_function +EXPORT_SYMBOL_GPL vmlinux 0xdf4be8fd clk_register_mux_table +EXPORT_SYMBOL_GPL vmlinux 0xdf506610 fuse_send_init +EXPORT_SYMBOL_GPL vmlinux 0xdf51d4ca fixed_phy_change_carrier +EXPORT_SYMBOL_GPL vmlinux 0xdf59ba2c ip6_datagram_connect_v6_only +EXPORT_SYMBOL_GPL vmlinux 0xdf5a05c5 rio_free_net +EXPORT_SYMBOL_GPL vmlinux 0xdf60161d device_get_named_child_node +EXPORT_SYMBOL_GPL vmlinux 0xdf61946b page_mkclean +EXPORT_SYMBOL_GPL vmlinux 0xdf7c1028 xfer_to_guest_mode_handle_work EXPORT_SYMBOL_GPL vmlinux 0xdf81924d uv_bios_mq_watchlist_free -EXPORT_SYMBOL_GPL vmlinux 0xdf8599c8 rio_release_outb_mbox -EXPORT_SYMBOL_GPL vmlinux 0xdf8aac0b cpu_device_create -EXPORT_SYMBOL_GPL vmlinux 0xdfb2784a dw_pcie_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0xdf835341 devlink_net +EXPORT_SYMBOL_GPL vmlinux 0xdf9e007e fwnode_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0xdfa0894f sata_pmp_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xdfa172b3 ata_scsi_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0xdfabfbc0 bus_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xdfc0a816 crypto_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xdfca55d1 regmap_register_patch EXPORT_SYMBOL_GPL vmlinux 0xdfcb6c90 mctrl_gpio_set -EXPORT_SYMBOL_GPL vmlinux 0xdfd59da0 skb_zerocopy_iter_dgram -EXPORT_SYMBOL_GPL vmlinux 0xdfebd3db __inet_lookup_listener -EXPORT_SYMBOL_GPL vmlinux 0xdffa98aa __SCK__tp_func_neigh_timer_handler -EXPORT_SYMBOL_GPL vmlinux 0xdffdfed4 __tracepoint_map -EXPORT_SYMBOL_GPL vmlinux 0xe00131a0 fsverity_ioctl_enable -EXPORT_SYMBOL_GPL vmlinux 0xe004f604 device_link_add -EXPORT_SYMBOL_GPL vmlinux 0xe01973da fat_free_clusters -EXPORT_SYMBOL_GPL vmlinux 0xe0212895 nvmem_cell_read_variable_le_u32 -EXPORT_SYMBOL_GPL vmlinux 0xe0290770 devm_spi_mem_dirmap_create +EXPORT_SYMBOL_GPL vmlinux 0xdfcbab92 devm_ioremap_uc +EXPORT_SYMBOL_GPL vmlinux 0xdfe07b19 sched_trace_rq_avg_rt +EXPORT_SYMBOL_GPL vmlinux 0xe0055fbb acpi_unbind_one +EXPORT_SYMBOL_GPL vmlinux 0xe00be554 pci_msi_create_irq_domain +EXPORT_SYMBOL_GPL vmlinux 0xe01fd6e9 tpm1_do_selftest +EXPORT_SYMBOL_GPL vmlinux 0xe02f786d unregister_asymmetric_key_parser EXPORT_SYMBOL_GPL vmlinux 0xe0313d71 rhashtable_insert_slow -EXPORT_SYMBOL_GPL vmlinux 0xe038cb48 shash_ahash_finup -EXPORT_SYMBOL_GPL vmlinux 0xe043b76f device_create_with_groups -EXPORT_SYMBOL_GPL vmlinux 0xe04439eb ethnl_cable_test_pulse +EXPORT_SYMBOL_GPL vmlinux 0xe03f8518 __tracepoint_suspend_resume EXPORT_SYMBOL_GPL vmlinux 0xe04c78db __SCT__tp_func_neigh_event_send_done -EXPORT_SYMBOL_GPL vmlinux 0xe05dff7b rcu_read_unlock_trace_special +EXPORT_SYMBOL_GPL vmlinux 0xe04d85c6 __regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0xe0515c44 acpi_gpiochip_free_interrupts +EXPORT_SYMBOL_GPL vmlinux 0xe0522a6e cpci_hp_unregister_controller EXPORT_SYMBOL_GPL vmlinux 0xe05e2f85 nexthop_free_rcu -EXPORT_SYMBOL_GPL vmlinux 0xe05fc572 cpufreq_freq_attr_scaling_boost_freqs -EXPORT_SYMBOL_GPL vmlinux 0xe0798c3f led_blink_set_oneshot -EXPORT_SYMBOL_GPL vmlinux 0xe07ed3b9 cpufreq_freq_transition_begin +EXPORT_SYMBOL_GPL vmlinux 0xe0690574 usb_hcd_unlink_urb_from_ep +EXPORT_SYMBOL_GPL vmlinux 0xe0763fdd vfio_pci_core_close_device EXPORT_SYMBOL_GPL vmlinux 0xe089cfcc agp_memory_reserved -EXPORT_SYMBOL_GPL vmlinux 0xe08a9c3c isa_register_driver -EXPORT_SYMBOL_GPL vmlinux 0xe095e1ae crypto_stats_skcipher_decrypt -EXPORT_SYMBOL_GPL vmlinux 0xe09c91e5 regulator_set_current_limit +EXPORT_SYMBOL_GPL vmlinux 0xe09291e7 ehci_resume +EXPORT_SYMBOL_GPL vmlinux 0xe0a3eaf0 usb_register_dev EXPORT_SYMBOL_GPL vmlinux 0xe0b1c103 clk_set_max_rate -EXPORT_SYMBOL_GPL vmlinux 0xe0bda6e8 __platform_driver_register +EXPORT_SYMBOL_GPL vmlinux 0xe0b49a0b dev_pm_opp_get_max_clock_latency EXPORT_SYMBOL_GPL vmlinux 0xe0c77bb5 mce_notify_irq EXPORT_SYMBOL_GPL vmlinux 0xe0d39f1c sgx_set_attribute -EXPORT_SYMBOL_GPL vmlinux 0xe0df9e67 regmap_get_reg_stride -EXPORT_SYMBOL_GPL vmlinux 0xe0eb1527 virtqueue_disable_cb -EXPORT_SYMBOL_GPL vmlinux 0xe0f8968a crypto_alloc_ahash +EXPORT_SYMBOL_GPL vmlinux 0xe0df8b34 serdev_device_close +EXPORT_SYMBOL_GPL vmlinux 0xe0e158da debugfs_write_file_bool +EXPORT_SYMBOL_GPL vmlinux 0xe0f6e076 md_bitmap_resize EXPORT_SYMBOL_GPL vmlinux 0xe10cd6ad erst_get_record_id_begin -EXPORT_SYMBOL_GPL vmlinux 0xe11838c0 fat_update_time -EXPORT_SYMBOL_GPL vmlinux 0xe12b3e73 usb_enable_intel_xhci_ports -EXPORT_SYMBOL_GPL vmlinux 0xe13a7780 led_sysfs_enable -EXPORT_SYMBOL_GPL vmlinux 0xe13dc5b3 __devm_reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0xe14338b0 fib_alias_hw_flags_set -EXPORT_SYMBOL_GPL vmlinux 0xe1446a8a debugfs_create_ulong -EXPORT_SYMBOL_GPL vmlinux 0xe1561f1a init_user_ns -EXPORT_SYMBOL_GPL vmlinux 0xe1738ced bpf_trace_run1 +EXPORT_SYMBOL_GPL vmlinux 0xe11af8db devm_acpi_dev_add_driver_gpios +EXPORT_SYMBOL_GPL vmlinux 0xe1295712 tracing_snapshot_cond_disable +EXPORT_SYMBOL_GPL vmlinux 0xe13ce644 i2c_dw_adjust_bus_speed +EXPORT_SYMBOL_GPL vmlinux 0xe156d71f regmap_get_val_endian +EXPORT_SYMBOL_GPL vmlinux 0xe16f95c9 mptcp_pm_get_add_addr_accept_max +EXPORT_SYMBOL_GPL vmlinux 0xe173c57f __regmap_init_spi EXPORT_SYMBOL_GPL vmlinux 0xe1775ee7 dm_get_reserved_bio_based_ios +EXPORT_SYMBOL_GPL vmlinux 0xe17e318c __audit_inode_child +EXPORT_SYMBOL_GPL vmlinux 0xe18315e3 sdio_set_block_size +EXPORT_SYMBOL_GPL vmlinux 0xe19ff41c power_supply_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0xe1a4a418 iommu_device_unlink +EXPORT_SYMBOL_GPL vmlinux 0xe1a5402b sb800_prefetch EXPORT_SYMBOL_GPL vmlinux 0xe1a8d7c9 net_rwsem EXPORT_SYMBOL_GPL vmlinux 0xe1aa2d62 set_hv_tscchange_cb -EXPORT_SYMBOL_GPL vmlinux 0xe1b8743f ata_pci_sff_init_one +EXPORT_SYMBOL_GPL vmlinux 0xe1b33a49 dw_pcie_host_init +EXPORT_SYMBOL_GPL vmlinux 0xe1b6913a __devm_rtc_register_device EXPORT_SYMBOL_GPL vmlinux 0xe1bd6c99 rio_init_mports EXPORT_SYMBOL_GPL vmlinux 0xe1c63523 blk_ksm_get_slot_idx -EXPORT_SYMBOL_GPL vmlinux 0xe1e8a613 sysfs_chmod_file -EXPORT_SYMBOL_GPL vmlinux 0xe1f78b99 anon_inode_getfile -EXPORT_SYMBOL_GPL vmlinux 0xe1ff6bb2 get_cached_msi_msg -EXPORT_SYMBOL_GPL vmlinux 0xe20bf979 firmware_kobj -EXPORT_SYMBOL_GPL vmlinux 0xe21a60a6 __SCK__tp_func_xhci_dbg_quirks +EXPORT_SYMBOL_GPL vmlinux 0xe1cb340f acpi_device_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0xe1d335a7 kernfs_get +EXPORT_SYMBOL_GPL vmlinux 0xe1d5446b __devm_pci_epc_create +EXPORT_SYMBOL_GPL vmlinux 0xe1dc5dd4 regulator_set_soft_start_regmap +EXPORT_SYMBOL_GPL vmlinux 0xe1f18833 usb_deregister_device_driver +EXPORT_SYMBOL_GPL vmlinux 0xe1f3f73e rtnl_register_module +EXPORT_SYMBOL_GPL vmlinux 0xe220f753 devm_phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0xe223a4db fib_nl_delrule +EXPORT_SYMBOL_GPL vmlinux 0xe22d700b subsys_interface_unregister EXPORT_SYMBOL_GPL vmlinux 0xe233762a input_event_from_user -EXPORT_SYMBOL_GPL vmlinux 0xe24ccf43 fs_kobj -EXPORT_SYMBOL_GPL vmlinux 0xe24e8cac __rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0xe23fe036 devm_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0xe24569ef crypto_unregister_alg +EXPORT_SYMBOL_GPL vmlinux 0xe25a9282 device_get_match_data EXPORT_SYMBOL_GPL vmlinux 0xe25d23f3 blocking_notifier_call_chain_robust -EXPORT_SYMBOL_GPL vmlinux 0xe2663574 i2c_new_smbus_alert_device +EXPORT_SYMBOL_GPL vmlinux 0xe2624d0c devlink_port_param_driverinit_value_get +EXPORT_SYMBOL_GPL vmlinux 0xe266e88f device_link_add EXPORT_SYMBOL_GPL vmlinux 0xe271f20c __SCT__tp_func_pelt_rt_tp -EXPORT_SYMBOL_GPL vmlinux 0xe273d6c6 regmap_fields_read -EXPORT_SYMBOL_GPL vmlinux 0xe28154b3 fwnode_property_read_string -EXPORT_SYMBOL_GPL vmlinux 0xe291909c icc_nodes_remove +EXPORT_SYMBOL_GPL vmlinux 0xe277fe25 unregister_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0xe2790749 led_trigger_set_default EXPORT_SYMBOL_GPL vmlinux 0xe295c0ff is_hpet_enabled -EXPORT_SYMBOL_GPL vmlinux 0xe29a3a5d rio_unregister_mport -EXPORT_SYMBOL_GPL vmlinux 0xe2a1cbe9 ata_sff_prereset -EXPORT_SYMBOL_GPL vmlinux 0xe2a67ae8 crypto_alloc_base +EXPORT_SYMBOL_GPL vmlinux 0xe2b06024 tty_ldisc_ref +EXPORT_SYMBOL_GPL vmlinux 0xe2b25eb1 devlink_port_params_register EXPORT_SYMBOL_GPL vmlinux 0xe2b3207a unregister_switchdev_notifier -EXPORT_SYMBOL_GPL vmlinux 0xe2c5bc6e clocksource_verify_percpu +EXPORT_SYMBOL_GPL vmlinux 0xe2be9a8e devm_power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0xe2c27166 tty_port_link_device EXPORT_SYMBOL_GPL vmlinux 0xe2ce2b4d evm_set_key -EXPORT_SYMBOL_GPL vmlinux 0xe2e8e31d shmem_zero_setup -EXPORT_SYMBOL_GPL vmlinux 0xe2ec275d do_splice_from -EXPORT_SYMBOL_GPL vmlinux 0xe2ed6618 scsi_flush_work -EXPORT_SYMBOL_GPL vmlinux 0xe2eecc43 led_set_brightness -EXPORT_SYMBOL_GPL vmlinux 0xe304e5f7 get_device_system_crosststamp -EXPORT_SYMBOL_GPL vmlinux 0xe3054e3a tcp_enter_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0xe2cebc66 __SCK__tp_func_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0xe2e8a61f efivar_entry_set_get_size +EXPORT_SYMBOL_GPL vmlinux 0xe2eabbf5 class_compat_create_link +EXPORT_SYMBOL_GPL vmlinux 0xe2eba0e4 blk_queue_max_discard_segments +EXPORT_SYMBOL_GPL vmlinux 0xe2ef26cd user_read +EXPORT_SYMBOL_GPL vmlinux 0xe2fec491 serdev_device_set_baudrate +EXPORT_SYMBOL_GPL vmlinux 0xe30c9bcc devm_hwspin_lock_register EXPORT_SYMBOL_GPL vmlinux 0xe31315a4 spi_delay_exec -EXPORT_SYMBOL_GPL vmlinux 0xe31bb839 devlink_rate_leaf_create -EXPORT_SYMBOL_GPL vmlinux 0xe330b543 ehci_hub_control -EXPORT_SYMBOL_GPL vmlinux 0xe3359b29 dst_cache_get -EXPORT_SYMBOL_GPL vmlinux 0xe337f1fd pci_generic_config_write +EXPORT_SYMBOL_GPL vmlinux 0xe31fadb6 gpiod_get_raw_value_cansleep EXPORT_SYMBOL_GPL vmlinux 0xe338c5ac inet_hashinfo2_init_mod -EXPORT_SYMBOL_GPL vmlinux 0xe349ddb2 switchdev_port_attr_set -EXPORT_SYMBOL_GPL vmlinux 0xe37714ac tpm_pcr_extend -EXPORT_SYMBOL_GPL vmlinux 0xe3830e2b tty_port_tty_wakeup -EXPORT_SYMBOL_GPL vmlinux 0xe38a010b devm_regmap_add_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0xe38a0824 icc_std_aggregate +EXPORT_SYMBOL_GPL vmlinux 0xe34c6b26 devm_hwspin_lock_request_specific +EXPORT_SYMBOL_GPL vmlinux 0xe3643b6b serial8250_rpm_get +EXPORT_SYMBOL_GPL vmlinux 0xe369e2e8 gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0xe37522fd gpiochip_line_is_open_drain +EXPORT_SYMBOL_GPL vmlinux 0xe37e46ee pci_find_next_capability +EXPORT_SYMBOL_GPL vmlinux 0xe3840e18 secure_ipv4_port_ephemeral EXPORT_SYMBOL_GPL vmlinux 0xe397caf5 seq_buf_printf -EXPORT_SYMBOL_GPL vmlinux 0xe39b796c debugfs_create_u16 +EXPORT_SYMBOL_GPL vmlinux 0xe39a194b vp_modern_queue_vector EXPORT_SYMBOL_GPL vmlinux 0xe39d0794 usb_phy_roothub_exit +EXPORT_SYMBOL_GPL vmlinux 0xe3a05638 anon_transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0xe3abc58f pci_reset_function EXPORT_SYMBOL_GPL vmlinux 0xe3b09712 kprobe_event_delete EXPORT_SYMBOL_GPL vmlinux 0xe3bc7fd4 hpet_unregister_irq_handler +EXPORT_SYMBOL_GPL vmlinux 0xe3bd866d pci_epf_unbind +EXPORT_SYMBOL_GPL vmlinux 0xe3cd3fd9 phy_pm_runtime_get EXPORT_SYMBOL_GPL vmlinux 0xe3cd5fae klist_iter_init -EXPORT_SYMBOL_GPL vmlinux 0xe3d89e48 __ata_ehi_push_desc EXPORT_SYMBOL_GPL vmlinux 0xe3e88acb __get_current_cr3_fast -EXPORT_SYMBOL_GPL vmlinux 0xe3ebefa6 acpi_subsys_suspend_late -EXPORT_SYMBOL_GPL vmlinux 0xe3ec92e0 regmap_bulk_write -EXPORT_SYMBOL_GPL vmlinux 0xe3f47404 vp_modern_remove -EXPORT_SYMBOL_GPL vmlinux 0xe4068d37 get_task_mm +EXPORT_SYMBOL_GPL vmlinux 0xe3ee5b91 dw_pcie_host_deinit +EXPORT_SYMBOL_GPL vmlinux 0xe3f7fb41 platform_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xe3fba990 cpufreq_generic_attr +EXPORT_SYMBOL_GPL vmlinux 0xe40505ef __vfs_removexattr_locked EXPORT_SYMBOL_GPL vmlinux 0xe40bb23e devlink_health_reporter_priv EXPORT_SYMBOL_GPL vmlinux 0xe4248980 cper_estatus_print EXPORT_SYMBOL_GPL vmlinux 0xe4309905 syscore_resume -EXPORT_SYMBOL_GPL vmlinux 0xe43f0ef9 devm_pm_clk_create -EXPORT_SYMBOL_GPL vmlinux 0xe442f6b7 acpi_get_and_request_gpiod -EXPORT_SYMBOL_GPL vmlinux 0xe44350d5 __get_task_comm -EXPORT_SYMBOL_GPL vmlinux 0xe4585895 __skb_tstamp_tx -EXPORT_SYMBOL_GPL vmlinux 0xe45c4f97 icmp_build_probe -EXPORT_SYMBOL_GPL vmlinux 0xe46abc18 fat_scan -EXPORT_SYMBOL_GPL vmlinux 0xe46e76f9 dev_pm_genpd_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0xe448088f usb_match_one_id +EXPORT_SYMBOL_GPL vmlinux 0xe4641d33 uart_set_options +EXPORT_SYMBOL_GPL vmlinux 0xe4744cda tpm_chip_start +EXPORT_SYMBOL_GPL vmlinux 0xe475c173 gpiod_export +EXPORT_SYMBOL_GPL vmlinux 0xe478da5c devm_pinctrl_get EXPORT_SYMBOL_GPL vmlinux 0xe48611ac trace_clock_global EXPORT_SYMBOL_GPL vmlinux 0xe4971ade tracing_alloc_snapshot -EXPORT_SYMBOL_GPL vmlinux 0xe4ad0e8b sdio_claim_irq +EXPORT_SYMBOL_GPL vmlinux 0xe4ab9b0f regulator_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0xe4ae3103 efivar_entry_set EXPORT_SYMBOL_GPL vmlinux 0xe4b064f9 pcie_link_speed -EXPORT_SYMBOL_GPL vmlinux 0xe4b07668 crypto_aead_setauthsize EXPORT_SYMBOL_GPL vmlinux 0xe4b818c3 phy_speed_to_str EXPORT_SYMBOL_GPL vmlinux 0xe4b93f27 public_key_verify_signature -EXPORT_SYMBOL_GPL vmlinux 0xe4c23a5f unix_inq_len EXPORT_SYMBOL_GPL vmlinux 0xe4c2c66c rtc_ktime_to_tm -EXPORT_SYMBOL_GPL vmlinux 0xe4d25293 devm_usb_get_phy_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0xe4d792e8 locks_alloc_lock +EXPORT_SYMBOL_GPL vmlinux 0xe4d821e4 serial8250_clear_and_reinit_fifos EXPORT_SYMBOL_GPL vmlinux 0xe4e48b12 swphy_validate_state -EXPORT_SYMBOL_GPL vmlinux 0xe51439ee pinctrl_utils_add_map_mux -EXPORT_SYMBOL_GPL vmlinux 0xe520b682 led_put -EXPORT_SYMBOL_GPL vmlinux 0xe52991e0 cpufreq_driver_target -EXPORT_SYMBOL_GPL vmlinux 0xe5541a15 elv_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe4e6aa37 inet_ehash_nolisten +EXPORT_SYMBOL_GPL vmlinux 0xe4f436c0 driver_find +EXPORT_SYMBOL_GPL vmlinux 0xe4f885a8 iommu_uapi_sva_unbind_gpasid +EXPORT_SYMBOL_GPL vmlinux 0xe529abd1 thermal_zone_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe53e61b0 dax_iomap_rw +EXPORT_SYMBOL_GPL vmlinux 0xe5461468 input_ff_event +EXPORT_SYMBOL_GPL vmlinux 0xe54fe885 gpiod_is_active_low +EXPORT_SYMBOL_GPL vmlinux 0xe572de07 device_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0xe575363f wm831x_reg_write EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe58c67d3 device_show_ulong -EXPORT_SYMBOL_GPL vmlinux 0xe5969662 devm_pm_runtime_enable -EXPORT_SYMBOL_GPL vmlinux 0xe5a4f76f pinctrl_register_and_init -EXPORT_SYMBOL_GPL vmlinux 0xe5bf4675 ata_sff_data_xfer +EXPORT_SYMBOL_GPL vmlinux 0xe588b484 pm_generic_thaw +EXPORT_SYMBOL_GPL vmlinux 0xe5a2f3a1 tps6586x_reads +EXPORT_SYMBOL_GPL vmlinux 0xe5a3168a device_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0xe5a34079 trace_event_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0xe5b3a056 fat_time_unix2fat +EXPORT_SYMBOL_GPL vmlinux 0xe5b50f0b genphy_c45_read_lpa +EXPORT_SYMBOL_GPL vmlinux 0xe5bbb438 devm_of_icc_get EXPORT_SYMBOL_GPL vmlinux 0xe5c02b64 freq_qos_remove_request -EXPORT_SYMBOL_GPL vmlinux 0xe5c9812e cros_ec_check_features -EXPORT_SYMBOL_GPL vmlinux 0xe5c9aaeb fuse_send_init EXPORT_SYMBOL_GPL vmlinux 0xe5ce1a56 rhashtable_walk_enter -EXPORT_SYMBOL_GPL vmlinux 0xe5cf532e regulator_set_suspend_voltage -EXPORT_SYMBOL_GPL vmlinux 0xe5dda02a xfrm_state_mtu -EXPORT_SYMBOL_GPL vmlinux 0xe5f8e80f pci_epf_unbind -EXPORT_SYMBOL_GPL vmlinux 0xe602e036 iomap_fiemap -EXPORT_SYMBOL_GPL vmlinux 0xe6039e12 crypto_unregister_skciphers +EXPORT_SYMBOL_GPL vmlinux 0xe5da324e led_set_brightness +EXPORT_SYMBOL_GPL vmlinux 0xe5e05f7e usb_autopm_get_interface_no_resume +EXPORT_SYMBOL_GPL vmlinux 0xe5e9e128 msg_zerocopy_put_abort +EXPORT_SYMBOL_GPL vmlinux 0xe5f9d476 irq_chip_set_vcpu_affinity_parent EXPORT_SYMBOL_GPL vmlinux 0xe60632a9 edac_queue_work EXPORT_SYMBOL_GPL vmlinux 0xe60a5e8d pids_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xe612acec pci_reset_function_locked -EXPORT_SYMBOL_GPL vmlinux 0xe61990c7 device_init_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xe6230250 sysfs_break_active_protection +EXPORT_SYMBOL_GPL vmlinux 0xe6259ac2 sysfs_create_files +EXPORT_SYMBOL_GPL vmlinux 0xe6289748 set_capacity_and_notify EXPORT_SYMBOL_GPL vmlinux 0xe628bb9f phy_fibre_port_array -EXPORT_SYMBOL_GPL vmlinux 0xe639a1b7 ata_pci_sff_init_host -EXPORT_SYMBOL_GPL vmlinux 0xe63a0bf3 crypto_alloc_shash -EXPORT_SYMBOL_GPL vmlinux 0xe63eecb5 power_supply_put_battery_info -EXPORT_SYMBOL_GPL vmlinux 0xe640f524 iomap_invalidatepage +EXPORT_SYMBOL_GPL vmlinux 0xe633ff75 ata_sff_tf_load EXPORT_SYMBOL_GPL vmlinux 0xe64ad8ea unregister_nmi_handler -EXPORT_SYMBOL_GPL vmlinux 0xe6636be2 nvdimm_flush -EXPORT_SYMBOL_GPL vmlinux 0xe67e1c43 icc_provider_add -EXPORT_SYMBOL_GPL vmlinux 0xe6899bf7 acct_bioset_init +EXPORT_SYMBOL_GPL vmlinux 0xe6541f85 class_interface_register +EXPORT_SYMBOL_GPL vmlinux 0xe656a749 sched_trace_rq_nr_running +EXPORT_SYMBOL_GPL vmlinux 0xe66c78c7 iopf_queue_remove_device +EXPORT_SYMBOL_GPL vmlinux 0xe678daa6 inet_csk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0xe68b3645 blk_trace_startstop EXPORT_SYMBOL_GPL vmlinux 0xe6a257f1 divider_round_rate_parent -EXPORT_SYMBOL_GPL vmlinux 0xe6ac25dd scsi_dh_activate -EXPORT_SYMBOL_GPL vmlinux 0xe6bd8435 fb_deferred_io_init -EXPORT_SYMBOL_GPL vmlinux 0xe6bedf95 irq_domain_xlate_onecell -EXPORT_SYMBOL_GPL vmlinux 0xe6d67154 regulator_set_active_discharge_regmap +EXPORT_SYMBOL_GPL vmlinux 0xe6b435d4 follow_pte +EXPORT_SYMBOL_GPL vmlinux 0xe6b68a28 regmap_fields_read +EXPORT_SYMBOL_GPL vmlinux 0xe6b7a25d ahash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xe6d010d9 skb_gso_validate_mac_len +EXPORT_SYMBOL_GPL vmlinux 0xe6d26112 vfio_group_get_external_user_from_dev EXPORT_SYMBOL_GPL vmlinux 0xe6e40502 rcu_get_gp_seq -EXPORT_SYMBOL_GPL vmlinux 0xe6f0efbe dev_pm_opp_find_freq_exact +EXPORT_SYMBOL_GPL vmlinux 0xe6efb63a __crypto_alloc_tfm EXPORT_SYMBOL_GPL vmlinux 0xe6f52443 klist_add_head EXPORT_SYMBOL_GPL vmlinux 0xe6f5e6f5 xas_clear_mark +EXPORT_SYMBOL_GPL vmlinux 0xe6f6cbe6 ata_sff_error_handler EXPORT_SYMBOL_GPL vmlinux 0xe6f83837 acpi_bus_attach_private_data -EXPORT_SYMBOL_GPL vmlinux 0xe6fc464c usb_autopm_put_interface EXPORT_SYMBOL_GPL vmlinux 0xe700d767 reset_control_bulk_deassert -EXPORT_SYMBOL_GPL vmlinux 0xe723115b mddev_resume EXPORT_SYMBOL_GPL vmlinux 0xe7232e0f user_return_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe72c563f balloon_page_list_dequeue +EXPORT_SYMBOL_GPL vmlinux 0xe737f1b2 __clk_hw_register_divider EXPORT_SYMBOL_GPL vmlinux 0xe740b58a hv_vp_assist_page -EXPORT_SYMBOL_GPL vmlinux 0xe7463520 fib_nl_delrule -EXPORT_SYMBOL_GPL vmlinux 0xe752c585 fscrypt_mergeable_bio +EXPORT_SYMBOL_GPL vmlinux 0xe7517e22 ata_host_start EXPORT_SYMBOL_GPL vmlinux 0xe753b68d devlink_fmsg_arr_pair_nest_end -EXPORT_SYMBOL_GPL vmlinux 0xe755978f crypto_unregister_acomps EXPORT_SYMBOL_GPL vmlinux 0xe769232e sprint_symbol_no_offset -EXPORT_SYMBOL_GPL vmlinux 0xe76bd62f tpm_get_random EXPORT_SYMBOL_GPL vmlinux 0xe783e261 sysfs_emit -EXPORT_SYMBOL_GPL vmlinux 0xe7974353 efivar_entry_set_get_size +EXPORT_SYMBOL_GPL vmlinux 0xe78bcb56 perf_tp_event +EXPORT_SYMBOL_GPL vmlinux 0xe79103e5 gpiochip_line_is_open_source EXPORT_SYMBOL_GPL vmlinux 0xe79bf0c4 klp_shadow_get -EXPORT_SYMBOL_GPL vmlinux 0xe79e673e devm_regulator_put -EXPORT_SYMBOL_GPL vmlinux 0xe7a5617f xfrm_audit_policy_delete -EXPORT_SYMBOL_GPL vmlinux 0xe7a5d658 ata_bmdma_start -EXPORT_SYMBOL_GPL vmlinux 0xe7a72097 acpi_subsys_suspend_noirq -EXPORT_SYMBOL_GPL vmlinux 0xe7a7f955 __SCK__tp_func_devlink_trap_report -EXPORT_SYMBOL_GPL vmlinux 0xe7c03795 __SCK__tp_func_block_bio_remap -EXPORT_SYMBOL_GPL vmlinux 0xe7c53a03 perf_pmu_migrate_context +EXPORT_SYMBOL_GPL vmlinux 0xe7a7d4f9 pid_vnr +EXPORT_SYMBOL_GPL vmlinux 0xe7b33b70 blk_mq_sched_mark_restart_hctx +EXPORT_SYMBOL_GPL vmlinux 0xe7b464e5 nvdimm_region_notify EXPORT_SYMBOL_GPL vmlinux 0xe7d6d2d4 filter_match_preds -EXPORT_SYMBOL_GPL vmlinux 0xe7e120ca l3mdev_table_lookup_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe7e0204e acpi_dma_configure_id EXPORT_SYMBOL_GPL vmlinux 0xe7eee3d5 __cookie_v4_init_sequence -EXPORT_SYMBOL_GPL vmlinux 0xe7f248b7 blk_ksm_init +EXPORT_SYMBOL_GPL vmlinux 0xe7f8b098 dw_pcie_ep_init_complete +EXPORT_SYMBOL_GPL vmlinux 0xe7fb8660 extcon_get_property +EXPORT_SYMBOL_GPL vmlinux 0xe80a794b __fscrypt_prepare_setattr +EXPORT_SYMBOL_GPL vmlinux 0xe81561a5 pci_msi_unmask_irq EXPORT_SYMBOL_GPL vmlinux 0xe818b32b ata_bmdma_interrupt EXPORT_SYMBOL_GPL vmlinux 0xe8199ff8 sbitmap_del_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0xe81a0995 devm_extcon_dev_register -EXPORT_SYMBOL_GPL vmlinux 0xe81b0318 crypto_find_alg -EXPORT_SYMBOL_GPL vmlinux 0xe81ec25f uhci_reset_hc -EXPORT_SYMBOL_GPL vmlinux 0xe823bde4 vfio_iommu_group_get -EXPORT_SYMBOL_GPL vmlinux 0xe824916b pstore_register EXPORT_SYMBOL_GPL vmlinux 0xe83eba32 itlb_multihit_kvm_mitigation EXPORT_SYMBOL_GPL vmlinux 0xe84f6e5c pciserial_remove_ports -EXPORT_SYMBOL_GPL vmlinux 0xe854f4d4 rdev_set_badblocks -EXPORT_SYMBOL_GPL vmlinux 0xe860ac45 devm_extcon_dev_allocate +EXPORT_SYMBOL_GPL vmlinux 0xe85cea47 __SCK__tp_func_neigh_update_done EXPORT_SYMBOL_GPL vmlinux 0xe862c4b7 dpm_suspend_start -EXPORT_SYMBOL_GPL vmlinux 0xe86b4f29 icc_get +EXPORT_SYMBOL_GPL vmlinux 0xe8771fae dma_free_pages +EXPORT_SYMBOL_GPL vmlinux 0xe8773c0a fscrypt_prepare_symlink +EXPORT_SYMBOL_GPL vmlinux 0xe87bd883 cpufreq_policy_transition_delay_us +EXPORT_SYMBOL_GPL vmlinux 0xe886f432 ata_bmdma_qc_issue EXPORT_SYMBOL_GPL vmlinux 0xe8874a05 irq_work_queue -EXPORT_SYMBOL_GPL vmlinux 0xe88c9a37 __traceiter_br_fdb_update +EXPORT_SYMBOL_GPL vmlinux 0xe8a240d9 debugfs_attr_write +EXPORT_SYMBOL_GPL vmlinux 0xe8b3d910 icc_node_create +EXPORT_SYMBOL_GPL vmlinux 0xe8be7c20 noop_backing_dev_info EXPORT_SYMBOL_GPL vmlinux 0xe8c0065d memory_group_register_static -EXPORT_SYMBOL_GPL vmlinux 0xe8c38abb xenbus_frontend_closed -EXPORT_SYMBOL_GPL vmlinux 0xe8d011d8 xenbus_dev_probe +EXPORT_SYMBOL_GPL vmlinux 0xe8df79f2 devlink_port_region_create EXPORT_SYMBOL_GPL vmlinux 0xe8e235c8 arch_static_call_transform -EXPORT_SYMBOL_GPL vmlinux 0xe8ff0725 xfeatures_mask_all -EXPORT_SYMBOL_GPL vmlinux 0xe9083b53 usb_anchor_urb EXPORT_SYMBOL_GPL vmlinux 0xe911df29 eventfd_ctx_do_read -EXPORT_SYMBOL_GPL vmlinux 0xe9293c21 blk_mq_virtio_map_queues -EXPORT_SYMBOL_GPL vmlinux 0xe92f2c35 ip6_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xe917ca61 __traceiter_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0xe91e0f44 __pm_runtime_disable +EXPORT_SYMBOL_GPL vmlinux 0xe91ec2b2 scsi_host_complete_all_commands +EXPORT_SYMBOL_GPL vmlinux 0xe92a28d3 skb_segment_list +EXPORT_SYMBOL_GPL vmlinux 0xe937cb54 ping_bind EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free -EXPORT_SYMBOL_GPL vmlinux 0xe96b6d88 switchdev_port_obj_add -EXPORT_SYMBOL_GPL vmlinux 0xe96ff375 usb_hub_find_child -EXPORT_SYMBOL_GPL vmlinux 0xe97b81d9 usb_get_from_anchor -EXPORT_SYMBOL_GPL vmlinux 0xe98b6b2b tcp_register_ulp -EXPORT_SYMBOL_GPL vmlinux 0xe9900178 get_user_pages_fast_only -EXPORT_SYMBOL_GPL vmlinux 0xe994ca12 blk_mq_free_request -EXPORT_SYMBOL_GPL vmlinux 0xe99c3e46 __traceiter_neigh_event_send_dead -EXPORT_SYMBOL_GPL vmlinux 0xe9a4d097 phy_power_off -EXPORT_SYMBOL_GPL vmlinux 0xe9ac03c6 param_ops_bool_enable_only -EXPORT_SYMBOL_GPL vmlinux 0xe9adcc22 iommu_uapi_sva_bind_gpasid -EXPORT_SYMBOL_GPL vmlinux 0xe9befaea scsi_check_sense -EXPORT_SYMBOL_GPL vmlinux 0xe9cb0d26 bpf_redirect_info +EXPORT_SYMBOL_GPL vmlinux 0xe940dc8b acpi_pci_find_root +EXPORT_SYMBOL_GPL vmlinux 0xe9410e86 regulator_enable +EXPORT_SYMBOL_GPL vmlinux 0xe9516a9a irq_chip_retrigger_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0xe9532f43 inet_csk_get_port +EXPORT_SYMBOL_GPL vmlinux 0xe96ee375 clk_hw_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe97247a8 irq_set_chained_handler_and_data +EXPORT_SYMBOL_GPL vmlinux 0xe97a0054 find_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xe987928e __fscrypt_prepare_readdir +EXPORT_SYMBOL_GPL vmlinux 0xe993c73f da9052_free_irq +EXPORT_SYMBOL_GPL vmlinux 0xe9a3a2f9 bio_start_io_acct_time +EXPORT_SYMBOL_GPL vmlinux 0xe9b80fed bus_get_device_klist EXPORT_SYMBOL_GPL vmlinux 0xe9ce931a kvm_para_available EXPORT_SYMBOL_GPL vmlinux 0xe9d1b7cf irq_to_pcap -EXPORT_SYMBOL_GPL vmlinux 0xe9d44100 cpufreq_dbs_governor_start -EXPORT_SYMBOL_GPL vmlinux 0xe9eb2a67 input_device_enabled +EXPORT_SYMBOL_GPL vmlinux 0xe9dbe43d i2c_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xe9e86c1b xenbus_dev_is_online +EXPORT_SYMBOL_GPL vmlinux 0xe9ead5cf power_supply_get_battery_info EXPORT_SYMBOL_GPL vmlinux 0xe9fadf16 __SCT__tp_func_neigh_update_done -EXPORT_SYMBOL_GPL vmlinux 0xea000f26 pci_cfg_access_unlock EXPORT_SYMBOL_GPL vmlinux 0xea018bbb mpi_test_bit -EXPORT_SYMBOL_GPL vmlinux 0xea121fb9 intel_pinctrl_get_soc_data +EXPORT_SYMBOL_GPL vmlinux 0xea12241d devm_kstrdup EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd -EXPORT_SYMBOL_GPL vmlinux 0xea14e672 dax_iomap_fault +EXPORT_SYMBOL_GPL vmlinux 0xea1c7e72 devm_regulator_put +EXPORT_SYMBOL_GPL vmlinux 0xea1e263e ipv4_sk_redirect EXPORT_SYMBOL_GPL vmlinux 0xea38036f ring_buffer_entries EXPORT_SYMBOL_GPL vmlinux 0xea3a23f3 public_key_free -EXPORT_SYMBOL_GPL vmlinux 0xea5c5810 crypto_register_acomp -EXPORT_SYMBOL_GPL vmlinux 0xea5e2f41 pci_get_dsn -EXPORT_SYMBOL_GPL vmlinux 0xea707180 trace_array_put -EXPORT_SYMBOL_GPL vmlinux 0xea7719bb irq_domain_set_hwirq_and_chip -EXPORT_SYMBOL_GPL vmlinux 0xea7c0e83 __account_locked_vm -EXPORT_SYMBOL_GPL vmlinux 0xea879609 __SCK__tp_func_remove_device_from_group -EXPORT_SYMBOL_GPL vmlinux 0xea8c01aa __tracepoint_block_bio_complete -EXPORT_SYMBOL_GPL vmlinux 0xeab6458b vfio_pci_core_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xea445f60 devlink_params_register +EXPORT_SYMBOL_GPL vmlinux 0xea4ae101 tty_prepare_flip_string +EXPORT_SYMBOL_GPL vmlinux 0xea4e01e4 phy_speed_down +EXPORT_SYMBOL_GPL vmlinux 0xea6e33a2 sdio_align_size +EXPORT_SYMBOL_GPL vmlinux 0xea841d76 phy_pm_runtime_put +EXPORT_SYMBOL_GPL vmlinux 0xea85dea1 virtqueue_enable_cb_prepare +EXPORT_SYMBOL_GPL vmlinux 0xea94f2ac __devm_regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0xea9887bd __skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0xeaa42708 dev_pm_opp_put_prop_name +EXPORT_SYMBOL_GPL vmlinux 0xeaafd820 __traceiter_neigh_update +EXPORT_SYMBOL_GPL vmlinux 0xeabd7389 fib4_rule_default +EXPORT_SYMBOL_GPL vmlinux 0xeac74e16 pm_runtime_get_if_active +EXPORT_SYMBOL_GPL vmlinux 0xeac8ce30 pid_nr_ns +EXPORT_SYMBOL_GPL vmlinux 0xeac9246c gnttab_foreach_grant_in_range +EXPORT_SYMBOL_GPL vmlinux 0xeacb3d96 vfio_group_get_external_user 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 0xeadb3406 device_store_int +EXPORT_SYMBOL_GPL vmlinux 0xead5da0a usb_unanchor_urb +EXPORT_SYMBOL_GPL vmlinux 0xead9310c fib_rules_seq_read +EXPORT_SYMBOL_GPL vmlinux 0xeae0794a rio_mport_get_efb EXPORT_SYMBOL_GPL vmlinux 0xeae0f496 clean_acked_data_flush +EXPORT_SYMBOL_GPL vmlinux 0xeae872b7 wm8350_read_auxadc EXPORT_SYMBOL_GPL vmlinux 0xeaf0a57c look_up_OID -EXPORT_SYMBOL_GPL vmlinux 0xeaf5a84f elv_rqhash_del -EXPORT_SYMBOL_GPL vmlinux 0xeafaa2e9 pin_get_name -EXPORT_SYMBOL_GPL vmlinux 0xeaff0d2f serial8250_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0xeb0a16d9 clockevents_register_device -EXPORT_SYMBOL_GPL vmlinux 0xeb2897fc acpi_dma_controller_register -EXPORT_SYMBOL_GPL vmlinux 0xeb3502e8 ata_sff_thaw -EXPORT_SYMBOL_GPL vmlinux 0xeb3d300f gpiochip_generic_free -EXPORT_SYMBOL_GPL vmlinux 0xeb55b400 scsi_internal_device_block_nowait -EXPORT_SYMBOL_GPL vmlinux 0xeb570a8b dev_pm_opp_get_opp_count -EXPORT_SYMBOL_GPL vmlinux 0xeb631da0 ata_host_resume -EXPORT_SYMBOL_GPL vmlinux 0xeb63d730 acpi_debugfs_dir -EXPORT_SYMBOL_GPL vmlinux 0xeb823f0a sk_psock_drop +EXPORT_SYMBOL_GPL vmlinux 0xeaf4139b rtc_alarm_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0xeb066bfd vp_modern_set_queue_size +EXPORT_SYMBOL_GPL vmlinux 0xeb19a2f3 gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0xeb40e7ce gpiochip_irq_domain_deactivate EXPORT_SYMBOL_GPL vmlinux 0xeb833c22 xen_has_pv_disk_devices -EXPORT_SYMBOL_GPL vmlinux 0xeb87ff67 __tracepoint_cpu_frequency -EXPORT_SYMBOL_GPL vmlinux 0xeb89c26a led_trigger_register_simple -EXPORT_SYMBOL_GPL vmlinux 0xeb8a7313 tpm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0xeb8bb5e0 sock_diag_put_meminfo +EXPORT_SYMBOL_GPL vmlinux 0xeb93a98b shash_ahash_digest EXPORT_SYMBOL_GPL vmlinux 0xeb94536f x86_platform -EXPORT_SYMBOL_GPL vmlinux 0xeb9865b6 usb_driver_release_interface -EXPORT_SYMBOL_GPL vmlinux 0xeba764df sbitmap_bitmap_show -EXPORT_SYMBOL_GPL vmlinux 0xebb15349 __fscrypt_prepare_readdir -EXPORT_SYMBOL_GPL vmlinux 0xebb45f54 edac_mc_alloc +EXPORT_SYMBOL_GPL vmlinux 0xeb98651e pm_generic_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0xeba65d99 dax_inode +EXPORT_SYMBOL_GPL vmlinux 0xebbc61b9 ata_bmdma_post_internal_cmd +EXPORT_SYMBOL_GPL vmlinux 0xebc19e77 irqd_cfg EXPORT_SYMBOL_GPL vmlinux 0xebc9a09f lock_system_sleep +EXPORT_SYMBOL_GPL vmlinux 0xebd0b729 mddev_unlock +EXPORT_SYMBOL_GPL vmlinux 0xebd27261 tracepoint_probe_register_prio EXPORT_SYMBOL_GPL vmlinux 0xebd4cc11 mctrl_gpio_enable_ms -EXPORT_SYMBOL_GPL vmlinux 0xebd99fc4 __SCK__tp_func_powernv_throttle -EXPORT_SYMBOL_GPL vmlinux 0xebf719e0 of_icc_get -EXPORT_SYMBOL_GPL vmlinux 0xebface3c devm_thermal_of_cooling_device_register -EXPORT_SYMBOL_GPL vmlinux 0xec31a74e debugfs_attr_read -EXPORT_SYMBOL_GPL vmlinux 0xec383486 crypto_register_aeads -EXPORT_SYMBOL_GPL vmlinux 0xec431553 make_device_exclusive_range +EXPORT_SYMBOL_GPL vmlinux 0xebd7e3f0 dev_pm_opp_remove +EXPORT_SYMBOL_GPL vmlinux 0xebdc24c7 ata_std_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xebe0b20f device_add +EXPORT_SYMBOL_GPL vmlinux 0xebec726a acpi_driver_match_device +EXPORT_SYMBOL_GPL vmlinux 0xebfbd24a da9052_request_irq +EXPORT_SYMBOL_GPL vmlinux 0xec08d1be debugfs_create_devm_seqfile +EXPORT_SYMBOL_GPL vmlinux 0xec096a4d irq_domain_free_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xec10f19e inode_dax +EXPORT_SYMBOL_GPL vmlinux 0xec1588ff dev_pm_opp_is_turbo +EXPORT_SYMBOL_GPL vmlinux 0xec1595df pci_epc_set_bar +EXPORT_SYMBOL_GPL vmlinux 0xec360560 percpu_down_write +EXPORT_SYMBOL_GPL vmlinux 0xec4b7412 ip6_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xec4fe200 devm_led_classdev_unregister EXPORT_SYMBOL_GPL vmlinux 0xec5668f6 dax_zero_page_range EXPORT_SYMBOL_GPL vmlinux 0xec5ad73b trace_seq_bitmask -EXPORT_SYMBOL_GPL vmlinux 0xec5d0e9f lwtunnel_state_alloc -EXPORT_SYMBOL_GPL vmlinux 0xec668440 genphy_c45_aneg_done +EXPORT_SYMBOL_GPL vmlinux 0xec6db916 wm831x_bulk_read EXPORT_SYMBOL_GPL vmlinux 0xec774acb cpufreq_frequency_table_verify EXPORT_SYMBOL_GPL vmlinux 0xec788566 acpi_target_system_state -EXPORT_SYMBOL_GPL vmlinux 0xec8586cb regulator_suspend_disable -EXPORT_SYMBOL_GPL vmlinux 0xeca1fc20 icc_sync_state -EXPORT_SYMBOL_GPL vmlinux 0xeca325da sk_setup_caps +EXPORT_SYMBOL_GPL vmlinux 0xec88bfbc iommu_map +EXPORT_SYMBOL_GPL vmlinux 0xec8b50c5 bpf_prog_create_from_user +EXPORT_SYMBOL_GPL vmlinux 0xec8bd90c klp_enable_patch +EXPORT_SYMBOL_GPL vmlinux 0xec9ba4ff pinctrl_lookup_state EXPORT_SYMBOL_GPL vmlinux 0xecba68e3 gnttab_batch_map -EXPORT_SYMBOL_GPL vmlinux 0xecbc4cef ata_pci_device_do_suspend -EXPORT_SYMBOL_GPL vmlinux 0xecc12c57 kill_dev_dax -EXPORT_SYMBOL_GPL vmlinux 0xecc801e7 peernet2id_alloc -EXPORT_SYMBOL_GPL vmlinux 0xecc8dbae ncsi_vlan_rx_kill_vid +EXPORT_SYMBOL_GPL vmlinux 0xecbbc789 tracepoint_probe_unregister +EXPORT_SYMBOL_GPL vmlinux 0xecc5efe2 pci_stop_root_bus +EXPORT_SYMBOL_GPL vmlinux 0xecd2d8da extcon_set_property_capability EXPORT_SYMBOL_GPL vmlinux 0xecd8f23d xenbus_read -EXPORT_SYMBOL_GPL vmlinux 0xecdf9fd7 ata_sff_exec_command -EXPORT_SYMBOL_GPL vmlinux 0xed056293 crypto_register_ahashes +EXPORT_SYMBOL_GPL vmlinux 0xecdb5296 max8997_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0xecdeac06 devm_thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0xecfcbd31 pm_wakeup_dev_event +EXPORT_SYMBOL_GPL vmlinux 0xed1cb075 iommu_get_domain_for_dev +EXPORT_SYMBOL_GPL vmlinux 0xed20ddef sk_set_memalloc +EXPORT_SYMBOL_GPL vmlinux 0xed32354b usb_mon_register EXPORT_SYMBOL_GPL vmlinux 0xed39b7b8 parse_OID -EXPORT_SYMBOL_GPL vmlinux 0xed445d27 vfio_pci_core_match -EXPORT_SYMBOL_GPL vmlinux 0xed5c7905 ata_scsi_unlock_native_capacity +EXPORT_SYMBOL_GPL vmlinux 0xed3c962b skb_scrub_packet +EXPORT_SYMBOL_GPL vmlinux 0xed4022be rio_attach_device +EXPORT_SYMBOL_GPL vmlinux 0xed668492 __devm_regmap_init +EXPORT_SYMBOL_GPL vmlinux 0xed67fef2 devm_serdev_device_open +EXPORT_SYMBOL_GPL vmlinux 0xed6a97d1 irq_domain_update_bus_token +EXPORT_SYMBOL_GPL vmlinux 0xed6e68d4 regmap_raw_read EXPORT_SYMBOL_GPL vmlinux 0xed7c7b91 raw_v6_hashinfo -EXPORT_SYMBOL_GPL vmlinux 0xed88ba04 __tracepoint_sched_update_nr_running_tp -EXPORT_SYMBOL_GPL vmlinux 0xed9eaf92 vring_del_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0xeda5d12d efivar_entry_iter -EXPORT_SYMBOL_GPL vmlinux 0xedae657f dev_pm_opp_find_freq_ceil -EXPORT_SYMBOL_GPL vmlinux 0xedb20406 tcp_abort -EXPORT_SYMBOL_GPL vmlinux 0xedbf94ed scsi_register_device_handler +EXPORT_SYMBOL_GPL vmlinux 0xed811d70 extcon_unregister_notifier_all +EXPORT_SYMBOL_GPL vmlinux 0xedb574e8 pci_epc_clear_bar +EXPORT_SYMBOL_GPL vmlinux 0xedbfdde0 platform_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xedc3cebc pcie_update_link_speed +EXPORT_SYMBOL_GPL vmlinux 0xedce0fc6 pm_genpd_add_subdomain EXPORT_SYMBOL_GPL vmlinux 0xedd092d5 power_supply_notifier -EXPORT_SYMBOL_GPL vmlinux 0xede81f7e pci_epc_stop +EXPORT_SYMBOL_GPL vmlinux 0xedd80001 ip6_datagram_send_ctl EXPORT_SYMBOL_GPL vmlinux 0xede98ec5 intel_pt_validate_hw_cap EXPORT_SYMBOL_GPL vmlinux 0xede9a09a btree_lookup -EXPORT_SYMBOL_GPL vmlinux 0xedeaad96 kobject_uevent +EXPORT_SYMBOL_GPL vmlinux 0xede9d3ab devlink_params_publish +EXPORT_SYMBOL_GPL vmlinux 0xedf44c10 edac_device_alloc_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0xedf50571 cpufreq_freq_attr_scaling_available_freqs +EXPORT_SYMBOL_GPL vmlinux 0xee0ed24f vfs_removexattr +EXPORT_SYMBOL_GPL vmlinux 0xee0f0db0 __acpi_node_get_property_reference EXPORT_SYMBOL_GPL vmlinux 0xee13e697 set_personality_ia32 -EXPORT_SYMBOL_GPL vmlinux 0xee13fa41 devm_rtc_allocate_device -EXPORT_SYMBOL_GPL vmlinux 0xee2ed237 __rio_local_write_config_16 EXPORT_SYMBOL_GPL vmlinux 0xee38ef57 register_switchdev_blocking_notifier -EXPORT_SYMBOL_GPL vmlinux 0xee4b8dbb crypto_shoot_alg +EXPORT_SYMBOL_GPL vmlinux 0xee40598c wm831x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xee484268 device_property_present EXPORT_SYMBOL_GPL vmlinux 0xee518148 kmsg_dump_get_buffer -EXPORT_SYMBOL_GPL vmlinux 0xee59e0ce skb_pull_rcsum -EXPORT_SYMBOL_GPL vmlinux 0xee5e24ef tps6586x_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0xee631402 tcp_twsk_destructor 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 0xee88763a pci_epc_mem_init -EXPORT_SYMBOL_GPL vmlinux 0xee9e539b fwnode_graph_get_endpoint_by_id -EXPORT_SYMBOL_GPL vmlinux 0xeea171e5 spi_sync +EXPORT_SYMBOL_GPL vmlinux 0xee707874 vfio_pci_core_register_device +EXPORT_SYMBOL_GPL vmlinux 0xee7164fb devlink_dpipe_entry_ctx_close +EXPORT_SYMBOL_GPL vmlinux 0xee7385cc acpi_spi_count_resources +EXPORT_SYMBOL_GPL vmlinux 0xee85c2d8 __SCK__tp_func_devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0xee96f27f regmap_bulk_read EXPORT_SYMBOL_GPL vmlinux 0xeeab8650 smca_get_long_name -EXPORT_SYMBOL_GPL vmlinux 0xeeae0eae devm_kasprintf -EXPORT_SYMBOL_GPL vmlinux 0xeeb348cf ehci_suspend -EXPORT_SYMBOL_GPL vmlinux 0xeebbf8f0 xdp_convert_zc_to_xdp_frame -EXPORT_SYMBOL_GPL vmlinux 0xeebf8c95 xen_remap_vma_range EXPORT_SYMBOL_GPL vmlinux 0xeed0cea4 kernel_read_file_from_fd +EXPORT_SYMBOL_GPL vmlinux 0xeeda1709 inet6_csk_addr2sockaddr EXPORT_SYMBOL_GPL vmlinux 0xeedd987e phy_10gbit_features_array EXPORT_SYMBOL_GPL vmlinux 0xeedfcec3 task_work_run -EXPORT_SYMBOL_GPL vmlinux 0xeee05fe7 irq_create_mapping_affinity -EXPORT_SYMBOL_GPL vmlinux 0xeee18b4a pm_generic_restore_early EXPORT_SYMBOL_GPL vmlinux 0xeee667d3 fpregs_assert_state_consistent -EXPORT_SYMBOL_GPL vmlinux 0xeef1d360 scsi_nl_sock -EXPORT_SYMBOL_GPL vmlinux 0xeef3d3f2 irq_remove_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0xeefdae08 irq_alloc_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0xef1599e3 fwnode_graph_get_remote_node +EXPORT_SYMBOL_GPL vmlinux 0xeee9e3d4 vmf_insert_pfn_pud_prot +EXPORT_SYMBOL_GPL vmlinux 0xeef2868a pci_sriov_get_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0xeef5b8c0 l3mdev_master_ifindex_rcu +EXPORT_SYMBOL_GPL vmlinux 0xeef7e81a user_destroy +EXPORT_SYMBOL_GPL vmlinux 0xeefa20ea sysfs_unbreak_active_protection +EXPORT_SYMBOL_GPL vmlinux 0xeefe63b7 extcon_set_property_sync +EXPORT_SYMBOL_GPL vmlinux 0xef036ead pm_generic_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0xef07773b dev_attr_sw_activity +EXPORT_SYMBOL_GPL vmlinux 0xef08a49d __SCK__tp_func_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0xef1e4e9a wbc_account_cgroup_owner EXPORT_SYMBOL_GPL vmlinux 0xef1f6e23 apei_resources_request EXPORT_SYMBOL_GPL vmlinux 0xef29fcdd clk_bulk_put +EXPORT_SYMBOL_GPL vmlinux 0xef2e0dc4 icc_node_add +EXPORT_SYMBOL_GPL vmlinux 0xef307412 rio_release_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0xef311196 usb_hub_find_child EXPORT_SYMBOL_GPL vmlinux 0xef34bf3e hrtimer_active -EXPORT_SYMBOL_GPL vmlinux 0xef3b357f regmap_get_val_bytes +EXPORT_SYMBOL_GPL vmlinux 0xef389e10 nvdimm_delete EXPORT_SYMBOL_GPL vmlinux 0xef464c28 getboottime64 +EXPORT_SYMBOL_GPL vmlinux 0xef468665 bus_for_each_drv +EXPORT_SYMBOL_GPL vmlinux 0xef5b3db7 sched_trace_cfs_rq_avg EXPORT_SYMBOL_GPL vmlinux 0xef5db66d regulator_get_init_drvdata -EXPORT_SYMBOL_GPL vmlinux 0xef621fcf gnttab_map_refs -EXPORT_SYMBOL_GPL vmlinux 0xef673ea4 irq_domain_associate +EXPORT_SYMBOL_GPL vmlinux 0xef6033dd metadata_dst_free +EXPORT_SYMBOL_GPL vmlinux 0xef6084cd irq_domain_free_irqs_common EXPORT_SYMBOL_GPL vmlinux 0xef6c3f70 round_jiffies_up_relative EXPORT_SYMBOL_GPL vmlinux 0xef70eb7e ring_buffer_iter_advance -EXPORT_SYMBOL_GPL vmlinux 0xef73d3d8 fib_table_lookup EXPORT_SYMBOL_GPL vmlinux 0xef744bb5 sbitmap_queue_clear +EXPORT_SYMBOL_GPL vmlinux 0xef757161 nvdimm_bus_register +EXPORT_SYMBOL_GPL vmlinux 0xef782389 rio_dev_get +EXPORT_SYMBOL_GPL vmlinux 0xef85a783 mmu_interval_read_begin EXPORT_SYMBOL_GPL vmlinux 0xef8fc95f kvm_async_pf_task_wait_schedule EXPORT_SYMBOL_GPL vmlinux 0xef92ef33 btree_last +EXPORT_SYMBOL_GPL vmlinux 0xefa12f7e fb_bl_default_curve +EXPORT_SYMBOL_GPL vmlinux 0xefa2bcaf sk_psock_drop EXPORT_SYMBOL_GPL vmlinux 0xefa2c27d register_tracepoint_module_notifier -EXPORT_SYMBOL_GPL vmlinux 0xefa53286 ata_msleep -EXPORT_SYMBOL_GPL vmlinux 0xefcc39d2 blk_queue_set_zoned -EXPORT_SYMBOL_GPL vmlinux 0xefcf9960 sock_prot_inuse_add -EXPORT_SYMBOL_GPL vmlinux 0xefdffd2f bus_create_file +EXPORT_SYMBOL_GPL vmlinux 0xefa4ab4e pci_check_and_mask_intx +EXPORT_SYMBOL_GPL vmlinux 0xefa6e693 xfrm_audit_policy_delete +EXPORT_SYMBOL_GPL vmlinux 0xefa9c0eb wakeup_sources_walk_next +EXPORT_SYMBOL_GPL vmlinux 0xefd5d30e regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xefd6f259 __inet_inherit_port EXPORT_SYMBOL_GPL vmlinux 0xefeafcf1 edac_has_mcs -EXPORT_SYMBOL_GPL vmlinux 0xeff16834 pskb_put -EXPORT_SYMBOL_GPL vmlinux 0xeff96107 sdio_writeb -EXPORT_SYMBOL_GPL vmlinux 0xf00a2992 dev_pm_opp_xlate_required_opp -EXPORT_SYMBOL_GPL vmlinux 0xf032d12f fat_alloc_new_dir +EXPORT_SYMBOL_GPL vmlinux 0xefedaa88 devm_platform_get_and_ioremap_resource +EXPORT_SYMBOL_GPL vmlinux 0xeffb0011 iommu_unregister_device_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0xf00f6fde handle_mm_fault +EXPORT_SYMBOL_GPL vmlinux 0xf028c73f kthread_flush_work +EXPORT_SYMBOL_GPL vmlinux 0xf02972d1 alarmtimer_get_rtcdev +EXPORT_SYMBOL_GPL vmlinux 0xf0305912 genphy_c45_pma_suspend +EXPORT_SYMBOL_GPL vmlinux 0xf03592d7 cpufreq_dbs_governor_limits +EXPORT_SYMBOL_GPL vmlinux 0xf042477c wwan_unregister_ops EXPORT_SYMBOL_GPL vmlinux 0xf04429b4 acpi_bus_get_status_handle -EXPORT_SYMBOL_GPL vmlinux 0xf0578db7 sk_msg_free_nocharge +EXPORT_SYMBOL_GPL vmlinux 0xf0558d6b pinctrl_select_state +EXPORT_SYMBOL_GPL vmlinux 0xf0563602 ipv4_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0xf05a52fe asn1_encode_oid -EXPORT_SYMBOL_GPL vmlinux 0xf05bde24 serial8250_clear_and_reinit_fifos EXPORT_SYMBOL_GPL vmlinux 0xf05fbf09 pci_pio_to_address -EXPORT_SYMBOL_GPL vmlinux 0xf068f4e7 pid_nr_ns EXPORT_SYMBOL_GPL vmlinux 0xf0696401 acpi_pci_detect_ejectable -EXPORT_SYMBOL_GPL vmlinux 0xf06c2f24 iommu_uapi_sva_unbind_gpasid -EXPORT_SYMBOL_GPL vmlinux 0xf06e683e firmware_request_platform -EXPORT_SYMBOL_GPL vmlinux 0xf0807398 ata_cable_sata -EXPORT_SYMBOL_GPL vmlinux 0xf086a8ba ata_eh_analyze_ncq_error -EXPORT_SYMBOL_GPL vmlinux 0xf089c04d dev_pm_qos_hide_latency_limit -EXPORT_SYMBOL_GPL vmlinux 0xf08b7b81 regulator_set_current_limit_regmap +EXPORT_SYMBOL_GPL vmlinux 0xf06d7239 blkg_lookup_slowpath +EXPORT_SYMBOL_GPL vmlinux 0xf06e02be netdev_rx_handler_register +EXPORT_SYMBOL_GPL vmlinux 0xf070862e clk_hw_get_flags +EXPORT_SYMBOL_GPL vmlinux 0xf072f48c usb_pipe_type_check +EXPORT_SYMBOL_GPL vmlinux 0xf09087ae dev_pm_opp_put_opp_table EXPORT_SYMBOL_GPL vmlinux 0xf0910075 sfp_bus_del_upstream -EXPORT_SYMBOL_GPL vmlinux 0xf0925a24 usb_autopm_put_interface_async +EXPORT_SYMBOL_GPL vmlinux 0xf09373f9 tty_port_register_device_attr_serdev +EXPORT_SYMBOL_GPL vmlinux 0xf09956e3 acpiphp_unregister_attention +EXPORT_SYMBOL_GPL vmlinux 0xf09add69 dev_pm_genpd_resume EXPORT_SYMBOL_GPL vmlinux 0xf0a0c69d init_iova_domain -EXPORT_SYMBOL_GPL vmlinux 0xf0c88ad0 pm_clk_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0xf0ca41a2 vring_create_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0xf0adfc4c fib_alias_hw_flags_set +EXPORT_SYMBOL_GPL vmlinux 0xf0bc0e48 pci_iomap_wc EXPORT_SYMBOL_GPL vmlinux 0xf0d478c7 list_lru_add -EXPORT_SYMBOL_GPL vmlinux 0xf0d54b37 pci_probe_reset_slot -EXPORT_SYMBOL_GPL vmlinux 0xf0e072d6 pci_epf_remove_vepf -EXPORT_SYMBOL_GPL vmlinux 0xf10b154c sdio_readsb -EXPORT_SYMBOL_GPL vmlinux 0xf1212f43 thermal_zone_get_zone_by_name -EXPORT_SYMBOL_GPL vmlinux 0xf134736b iommu_domain_free -EXPORT_SYMBOL_GPL vmlinux 0xf143c413 kthread_unpark -EXPORT_SYMBOL_GPL vmlinux 0xf1441680 pwm_set_chip_data -EXPORT_SYMBOL_GPL vmlinux 0xf144b18b __sock_recv_timestamp -EXPORT_SYMBOL_GPL vmlinux 0xf1556d03 pm_relax -EXPORT_SYMBOL_GPL vmlinux 0xf16e63c2 gnttab_pages_set_private -EXPORT_SYMBOL_GPL vmlinux 0xf17bdc81 rio_enable_rx_tx_port -EXPORT_SYMBOL_GPL vmlinux 0xf181266b dev_pm_opp_enable +EXPORT_SYMBOL_GPL vmlinux 0xf0d533cf pci_pri_supported +EXPORT_SYMBOL_GPL vmlinux 0xf0df1c1a irq_domain_add_legacy +EXPORT_SYMBOL_GPL vmlinux 0xf0e1102a fuse_init_fs_context_submount +EXPORT_SYMBOL_GPL vmlinux 0xf1178bdf spi_statistics_add_transfer_stats +EXPORT_SYMBOL_GPL vmlinux 0xf134d7a4 devm_extcon_dev_allocate +EXPORT_SYMBOL_GPL vmlinux 0xf1394886 __platform_create_bundle +EXPORT_SYMBOL_GPL vmlinux 0xf14849da crypto_stats_kpp_compute_shared_secret +EXPORT_SYMBOL_GPL vmlinux 0xf18372d7 nvdimm_bus_check_dimm_count EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off -EXPORT_SYMBOL_GPL vmlinux 0xf186abea acpi_dev_get_property EXPORT_SYMBOL_GPL vmlinux 0xf188a662 rhashtable_walk_exit -EXPORT_SYMBOL_GPL vmlinux 0xf18987a8 devm_phy_get -EXPORT_SYMBOL_GPL vmlinux 0xf196d17d serdev_device_set_tiocm -EXPORT_SYMBOL_GPL vmlinux 0xf1b66a21 sock_diag_put_meminfo -EXPORT_SYMBOL_GPL vmlinux 0xf1b6f8c6 fuse_dev_free +EXPORT_SYMBOL_GPL vmlinux 0xf18d0d73 sata_link_scr_lpm +EXPORT_SYMBOL_GPL vmlinux 0xf1bb465d __SCK__tp_func_neigh_update +EXPORT_SYMBOL_GPL vmlinux 0xf1c6c3a5 dst_cache_get_ip6 EXPORT_SYMBOL_GPL vmlinux 0xf1cd8929 kvm_read_and_reset_apf_flags -EXPORT_SYMBOL_GPL vmlinux 0xf1d0388f ata_bmdma_status -EXPORT_SYMBOL_GPL vmlinux 0xf1d492d0 dm_internal_suspend_fast -EXPORT_SYMBOL_GPL vmlinux 0xf1df58fa pci_epc_mem_free_addr -EXPORT_SYMBOL_GPL vmlinux 0xf1df87cf ncsi_vlan_rx_add_vid -EXPORT_SYMBOL_GPL vmlinux 0xf1e18b3f gpiochip_line_is_persistent -EXPORT_SYMBOL_GPL vmlinux 0xf1e5fa63 dev_pm_qos_update_user_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0xf1f70b4b devlink_port_type_clear -EXPORT_SYMBOL_GPL vmlinux 0xf1f713b8 fib_add_nexthop -EXPORT_SYMBOL_GPL vmlinux 0xf1f77145 device_create_managed_software_node -EXPORT_SYMBOL_GPL vmlinux 0xf20d2f9b udp4_hwcsum +EXPORT_SYMBOL_GPL vmlinux 0xf1d72bf2 tpm2_probe +EXPORT_SYMBOL_GPL vmlinux 0xf1db669a __fput_sync +EXPORT_SYMBOL_GPL vmlinux 0xf1dd93b3 __tracepoint_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0xf1e49ecb extcon_get_edev_name +EXPORT_SYMBOL_GPL vmlinux 0xf1f090ac sk_msg_is_readable +EXPORT_SYMBOL_GPL vmlinux 0xf2096a7e trace_define_field EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0xf2336f23 tps6586x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xf24ae4c8 exportfs_decode_fh -EXPORT_SYMBOL_GPL vmlinux 0xf25195d0 udp_init_sock -EXPORT_SYMBOL_GPL vmlinux 0xf2675231 usb_autopm_get_interface_no_resume -EXPORT_SYMBOL_GPL vmlinux 0xf2703cff led_update_brightness -EXPORT_SYMBOL_GPL vmlinux 0xf277b889 dma_buf_vunmap -EXPORT_SYMBOL_GPL vmlinux 0xf27a5eda ata_host_init -EXPORT_SYMBOL_GPL vmlinux 0xf27c6dcd skb_scrub_packet +EXPORT_SYMBOL_GPL vmlinux 0xf22c2401 store_sampling_rate +EXPORT_SYMBOL_GPL vmlinux 0xf23bedbc unregister_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xf24bd8c0 md_stop +EXPORT_SYMBOL_GPL vmlinux 0xf25f9519 mdiobus_modify +EXPORT_SYMBOL_GPL vmlinux 0xf2738f04 dm_start_time_ns_from_clone EXPORT_SYMBOL_GPL vmlinux 0xf27d0a7b gnttab_grant_foreign_access_ref -EXPORT_SYMBOL_GPL vmlinux 0xf28c257a od_register_powersave_bias_handler EXPORT_SYMBOL_GPL vmlinux 0xf2967796 ring_buffer_record_on -EXPORT_SYMBOL_GPL vmlinux 0xf296a144 vfs_lock_file -EXPORT_SYMBOL_GPL vmlinux 0xf2990064 component_add_typed -EXPORT_SYMBOL_GPL vmlinux 0xf2a0a672 usb_phy_roothub_alloc -EXPORT_SYMBOL_GPL vmlinux 0xf2a4065e em_pd_get +EXPORT_SYMBOL_GPL vmlinux 0xf29fb5c6 serial8250_em485_stop_tx EXPORT_SYMBOL_GPL vmlinux 0xf2b33cb7 memory_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xf2be9d62 devlink_dpipe_entry_ctx_prepare -EXPORT_SYMBOL_GPL vmlinux 0xf2c06b15 led_trigger_read -EXPORT_SYMBOL_GPL vmlinux 0xf2c86b76 cpufreq_freq_transition_end -EXPORT_SYMBOL_GPL vmlinux 0xf2cbecc9 __tracepoint_neigh_timer_handler -EXPORT_SYMBOL_GPL vmlinux 0xf2dc977d irq_domain_translate_onecell -EXPORT_SYMBOL_GPL vmlinux 0xf2deb044 dev_pm_qos_expose_latency_limit -EXPORT_SYMBOL_GPL vmlinux 0xf2e136a4 udp_cmsg_send +EXPORT_SYMBOL_GPL vmlinux 0xf2c53d53 pci_write_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0xf2d02563 md_do_sync +EXPORT_SYMBOL_GPL vmlinux 0xf2e9ac3f dev_pm_opp_remove_all_dynamic EXPORT_SYMBOL_GPL vmlinux 0xf2fb61bd vprintk_default -EXPORT_SYMBOL_GPL vmlinux 0xf2feda6c perf_event_enable -EXPORT_SYMBOL_GPL vmlinux 0xf306f9b1 sysfs_update_group -EXPORT_SYMBOL_GPL vmlinux 0xf3097ec7 regmap_field_free EXPORT_SYMBOL_GPL vmlinux 0xf30a5502 cpufreq_enable_boost_support EXPORT_SYMBOL_GPL vmlinux 0xf311e156 key_being_used_for -EXPORT_SYMBOL_GPL vmlinux 0xf31260a3 class_create_file_ns EXPORT_SYMBOL_GPL vmlinux 0xf31632e0 ezx_pcap_read EXPORT_SYMBOL_GPL vmlinux 0xf3189f7e __uv_cpu_info +EXPORT_SYMBOL_GPL vmlinux 0xf318df5a platform_get_irq +EXPORT_SYMBOL_GPL vmlinux 0xf31ae6ed vfio_assign_device_set EXPORT_SYMBOL_GPL vmlinux 0xf31b3fd1 workqueue_set_max_active -EXPORT_SYMBOL_GPL vmlinux 0xf32055c3 usb_hcd_link_urb_to_ep +EXPORT_SYMBOL_GPL vmlinux 0xf321704a tty_set_termios +EXPORT_SYMBOL_GPL vmlinux 0xf324aae8 dma_buf_detach +EXPORT_SYMBOL_GPL vmlinux 0xf325b703 pinctrl_utils_add_map_configs +EXPORT_SYMBOL_GPL vmlinux 0xf32b169d ata_pci_bmdma_clear_simplex EXPORT_SYMBOL_GPL vmlinux 0xf32bdc5d unregister_xenstore_notifier EXPORT_SYMBOL_GPL vmlinux 0xf331236f btree_geo32 -EXPORT_SYMBOL_GPL vmlinux 0xf3320219 devfreq_event_get_edev_count -EXPORT_SYMBOL_GPL vmlinux 0xf3414599 devm_memremap_pages -EXPORT_SYMBOL_GPL vmlinux 0xf347c078 __SCK__tp_func_br_fdb_add -EXPORT_SYMBOL_GPL vmlinux 0xf3502af2 hwspin_lock_request_specific +EXPORT_SYMBOL_GPL vmlinux 0xf3402ee3 ping_getfrag +EXPORT_SYMBOL_GPL vmlinux 0xf3418da0 xenbus_match +EXPORT_SYMBOL_GPL vmlinux 0xf342cb86 tcp_leave_memory_pressure EXPORT_SYMBOL_GPL vmlinux 0xf352023f memory_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xf354baf3 input_ff_event -EXPORT_SYMBOL_GPL vmlinux 0xf35ba535 platform_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf356b9cc __SCK__tp_func_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0xf362ed27 pci_try_reset_function +EXPORT_SYMBOL_GPL vmlinux 0xf36bcd56 gpiochip_populate_parent_fwspec_twocell +EXPORT_SYMBOL_GPL vmlinux 0xf3701f0e i2c_bus_type EXPORT_SYMBOL_GPL vmlinux 0xf3797506 mpi_ec_deinit -EXPORT_SYMBOL_GPL vmlinux 0xf37a6c4c rtc_read_time -EXPORT_SYMBOL_GPL vmlinux 0xf37b7708 find_mci_by_dev EXPORT_SYMBOL_GPL vmlinux 0xf3808cb1 get_state_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0xf38ab468 rdev_set_badblocks EXPORT_SYMBOL_GPL vmlinux 0xf39aee75 perf_msr_probe -EXPORT_SYMBOL_GPL vmlinux 0xf3a14088 crypto_alloc_acomp -EXPORT_SYMBOL_GPL vmlinux 0xf3a953a4 regmap_check_range_table +EXPORT_SYMBOL_GPL vmlinux 0xf39f2db8 find_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0xf3a2a935 xenbus_watch_path EXPORT_SYMBOL_GPL vmlinux 0xf3b451ca kdb_poll_funcs EXPORT_SYMBOL_GPL vmlinux 0xf3b95d79 btree_remove -EXPORT_SYMBOL_GPL vmlinux 0xf3bc6a0c ata_scsi_dma_need_drain -EXPORT_SYMBOL_GPL vmlinux 0xf3c32910 key_type_asymmetric -EXPORT_SYMBOL_GPL vmlinux 0xf3e4027e devlink_param_register -EXPORT_SYMBOL_GPL vmlinux 0xf3e6bd56 usb_sg_init -EXPORT_SYMBOL_GPL vmlinux 0xf41faa75 bus_get_device_klist -EXPORT_SYMBOL_GPL vmlinux 0xf42d5f78 regulator_set_voltage -EXPORT_SYMBOL_GPL vmlinux 0xf42e86d6 serial8250_do_get_mctrl -EXPORT_SYMBOL_GPL vmlinux 0xf439e23b pci_user_read_config_byte -EXPORT_SYMBOL_GPL vmlinux 0xf459f52b get_current_tty -EXPORT_SYMBOL_GPL vmlinux 0xf4630920 intel_pinctrl_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0xf3becd78 ata_scsi_slave_destroy +EXPORT_SYMBOL_GPL vmlinux 0xf3c115c1 gpiochip_line_is_persistent +EXPORT_SYMBOL_GPL vmlinux 0xf3c9d696 pm_wakeup_ws_event +EXPORT_SYMBOL_GPL vmlinux 0xf3ca4057 cn_add_callback +EXPORT_SYMBOL_GPL vmlinux 0xf3d12546 usb_hcd_pci_probe +EXPORT_SYMBOL_GPL vmlinux 0xf3e23635 fuse_abort_conn +EXPORT_SYMBOL_GPL vmlinux 0xf4123bca __traceiter_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0xf412c3af exportfs_decode_fh +EXPORT_SYMBOL_GPL vmlinux 0xf415d62e sysfs_rename_link_ns +EXPORT_SYMBOL_GPL vmlinux 0xf420e0b7 xhci_get_ep_ctx +EXPORT_SYMBOL_GPL vmlinux 0xf423da23 regcache_drop_region +EXPORT_SYMBOL_GPL vmlinux 0xf4246d09 devm_bitmap_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf43139f1 devfreq_event_get_edev_count +EXPORT_SYMBOL_GPL vmlinux 0xf43a96cc component_bind_all +EXPORT_SYMBOL_GPL vmlinux 0xf44235e8 init_user_ns +EXPORT_SYMBOL_GPL vmlinux 0xf4456044 mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xf45420ef kthread_data EXPORT_SYMBOL_GPL vmlinux 0xf4689d50 linkmode_set_pause -EXPORT_SYMBOL_GPL vmlinux 0xf468abce pcie_aspm_capable EXPORT_SYMBOL_GPL vmlinux 0xf47654df irq_check_status_bit -EXPORT_SYMBOL_GPL vmlinux 0xf48fec2d acpi_dma_configure_id +EXPORT_SYMBOL_GPL vmlinux 0xf493f37b iomap_file_unshare +EXPORT_SYMBOL_GPL vmlinux 0xf49dd5bf xhci_run +EXPORT_SYMBOL_GPL vmlinux 0xf49eb9d5 blk_mq_flush_busy_ctxs +EXPORT_SYMBOL_GPL vmlinux 0xf4a061b8 dev_coredumpv +EXPORT_SYMBOL_GPL vmlinux 0xf4a20958 get_device EXPORT_SYMBOL_GPL vmlinux 0xf4af35c2 rcu_gp_is_normal -EXPORT_SYMBOL_GPL vmlinux 0xf4bea86c dev_pm_qos_expose_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0xf4ca6cce badblocks_store EXPORT_SYMBOL_GPL vmlinux 0xf4cd9f8f reset_control_bulk_release -EXPORT_SYMBOL_GPL vmlinux 0xf4d85335 fscrypt_set_bio_crypt_ctx -EXPORT_SYMBOL_GPL vmlinux 0xf4d8cf5c __traceiter_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0xf4d46c70 security_kernel_read_file +EXPORT_SYMBOL_GPL vmlinux 0xf4d7f638 regulator_set_drvdata EXPORT_SYMBOL_GPL vmlinux 0xf4dd89bf uv_get_hubless_system +EXPORT_SYMBOL_GPL vmlinux 0xf4de70dc eventfd_ctx_fileget EXPORT_SYMBOL_GPL vmlinux 0xf4e35e28 sbitmap_prepare_to_wait +EXPORT_SYMBOL_GPL vmlinux 0xf4eaf792 acpi_subsys_poweroff +EXPORT_SYMBOL_GPL vmlinux 0xf4ee4f61 rio_mport_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0xf4f0d9bc pm_runtime_set_memalloc_noio EXPORT_SYMBOL_GPL vmlinux 0xf4f69d1f clk_hw_unregister_gate -EXPORT_SYMBOL_GPL vmlinux 0xf4fdc249 generic_device_group -EXPORT_SYMBOL_GPL vmlinux 0xf502b7a6 ip_valid_fib_dump_req -EXPORT_SYMBOL_GPL vmlinux 0xf514b1b6 platform_unregister_drivers -EXPORT_SYMBOL_GPL vmlinux 0xf51c555a __acpi_node_get_property_reference -EXPORT_SYMBOL_GPL vmlinux 0xf523c964 __ndisc_fill_addr_option -EXPORT_SYMBOL_GPL vmlinux 0xf53ad167 apply_to_page_range -EXPORT_SYMBOL_GPL vmlinux 0xf5458070 skb_mpls_dec_ttl +EXPORT_SYMBOL_GPL vmlinux 0xf4f797f6 __blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0xf4f79d86 vfio_pci_core_write +EXPORT_SYMBOL_GPL vmlinux 0xf50727c1 nexthop_for_each_fib6_nh +EXPORT_SYMBOL_GPL vmlinux 0xf509846a icc_get +EXPORT_SYMBOL_GPL vmlinux 0xf50bc657 iommu_aux_attach_device +EXPORT_SYMBOL_GPL vmlinux 0xf519f0c3 pci_msi_prepare +EXPORT_SYMBOL_GPL vmlinux 0xf520bd43 gpiod_get_raw_value +EXPORT_SYMBOL_GPL vmlinux 0xf521e14c ping_seq_start +EXPORT_SYMBOL_GPL vmlinux 0xf523bc58 __devm_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0xf5240ace irq_domain_remove EXPORT_SYMBOL_GPL vmlinux 0xf548988d put_iova_domain EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm EXPORT_SYMBOL_GPL vmlinux 0xf553318d cpuidle_pause_and_lock -EXPORT_SYMBOL_GPL vmlinux 0xf55b42c2 msg_zerocopy_realloc -EXPORT_SYMBOL_GPL vmlinux 0xf57b260e devm_rtc_nvmem_register -EXPORT_SYMBOL_GPL vmlinux 0xf590bef5 device_pm_wait_for_dev +EXPORT_SYMBOL_GPL vmlinux 0xf55589e4 i2c_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0xf5561012 devm_regmap_add_irq_chip_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xf5619490 netdev_set_default_ethtool_ops +EXPORT_SYMBOL_GPL vmlinux 0xf572f758 ata_host_init +EXPORT_SYMBOL_GPL vmlinux 0xf5868cce dev_pm_genpd_set_performance_state +EXPORT_SYMBOL_GPL vmlinux 0xf5906d3a regulator_map_voltage_ascend +EXPORT_SYMBOL_GPL vmlinux 0xf5949c76 kstrdup_quotable_cmdline +EXPORT_SYMBOL_GPL vmlinux 0xf59d5493 uart_console_device +EXPORT_SYMBOL_GPL vmlinux 0xf59da1ac spi_bus_type EXPORT_SYMBOL_GPL vmlinux 0xf5a3ba99 linear_range_values_in_range EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus -EXPORT_SYMBOL_GPL vmlinux 0xf5ca5f58 crypto_stats_kpp_compute_shared_secret -EXPORT_SYMBOL_GPL vmlinux 0xf5cb97fb regmap_mmio_attach_clk -EXPORT_SYMBOL_GPL vmlinux 0xf5e618e5 bus_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0xf5e6523c fuse_do_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xf5aeea6e dm_post_suspending +EXPORT_SYMBOL_GPL vmlinux 0xf5b1baa5 device_get_child_node_count +EXPORT_SYMBOL_GPL vmlinux 0xf5b3c090 fscrypt_ioctl_add_key +EXPORT_SYMBOL_GPL vmlinux 0xf5be2cc2 devlink_port_param_driverinit_value_set +EXPORT_SYMBOL_GPL vmlinux 0xf5be4dc6 regmap_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0xf5c2af64 virtqueue_disable_cb EXPORT_SYMBOL_GPL vmlinux 0xf5f370e0 async_schedule_node -EXPORT_SYMBOL_GPL vmlinux 0xf5fbb1a0 i2c_handle_smbus_host_notify -EXPORT_SYMBOL_GPL vmlinux 0xf60cbe61 cpuidle_register_driver -EXPORT_SYMBOL_GPL vmlinux 0xf6156992 rio_mport_read_config_16 -EXPORT_SYMBOL_GPL vmlinux 0xf61f7317 blk_poll -EXPORT_SYMBOL_GPL vmlinux 0xf6230e49 fpregs_mark_activate -EXPORT_SYMBOL_GPL vmlinux 0xf627f261 rio_free_net -EXPORT_SYMBOL_GPL vmlinux 0xf62d1770 ehci_setup EXPORT_SYMBOL_GPL vmlinux 0xf64aaa25 alarm_init -EXPORT_SYMBOL_GPL vmlinux 0xf655f70c led_trigger_write -EXPORT_SYMBOL_GPL vmlinux 0xf6591f8e dev_err_probe -EXPORT_SYMBOL_GPL vmlinux 0xf65b646f rio_dma_prep_xfer +EXPORT_SYMBOL_GPL vmlinux 0xf65a49b9 sched_trace_rq_cpu EXPORT_SYMBOL_GPL vmlinux 0xf663ee2f pcap_adc_sync -EXPORT_SYMBOL_GPL vmlinux 0xf671dd1b acpi_bus_trim -EXPORT_SYMBOL_GPL vmlinux 0xf688a036 regmap_attach_dev -EXPORT_SYMBOL_GPL vmlinux 0xf69e62e1 dev_pm_genpd_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0xf68e2d9f ip6_sk_dst_lookup_flow EXPORT_SYMBOL_GPL vmlinux 0xf6a28554 region_intersects -EXPORT_SYMBOL_GPL vmlinux 0xf6afac33 reset_controller_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf6bb0f4d security_inode_mkdir +EXPORT_SYMBOL_GPL vmlinux 0xf6b2e1e2 pm_clk_remove +EXPORT_SYMBOL_GPL vmlinux 0xf6b3d98b hvc_remove +EXPORT_SYMBOL_GPL vmlinux 0xf6bd6836 regulator_desc_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0xf6c6c344 tty_kopen_shared EXPORT_SYMBOL_GPL vmlinux 0xf6c71a25 cper_severity_str EXPORT_SYMBOL_GPL vmlinux 0xf6c8dc62 cpu_hotplug_enable -EXPORT_SYMBOL_GPL vmlinux 0xf6d92a8a perf_event_period -EXPORT_SYMBOL_GPL vmlinux 0xf6e5411e devlink_dpipe_entry_ctx_append +EXPORT_SYMBOL_GPL vmlinux 0xf6dcb050 usb_register_device_driver EXPORT_SYMBOL_GPL vmlinux 0xf6e772c3 irq_bypass_unregister_producer EXPORT_SYMBOL_GPL vmlinux 0xf6e874f5 ata_timing_merge -EXPORT_SYMBOL_GPL vmlinux 0xf6e89f2f power_supply_powers -EXPORT_SYMBOL_GPL vmlinux 0xf6ef33eb xenbus_watch_pathfmt -EXPORT_SYMBOL_GPL vmlinux 0xf6f075ed ping_bind -EXPORT_SYMBOL_GPL vmlinux 0xf6f5d884 ohci_restart -EXPORT_SYMBOL_GPL vmlinux 0xf720305e i2c_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xf6eac7fe ethtool_set_ethtool_phy_ops +EXPORT_SYMBOL_GPL vmlinux 0xf7016227 devm_gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0xf7151b71 tcp_reno_ssthresh EXPORT_SYMBOL_GPL vmlinux 0xf72a65ea tty_get_char_size -EXPORT_SYMBOL_GPL vmlinux 0xf72f4869 devlink_traps_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf7449e1e da903x_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xf72bbe40 sk_msg_return +EXPORT_SYMBOL_GPL vmlinux 0xf7364a52 skb_send_sock_locked +EXPORT_SYMBOL_GPL vmlinux 0xf73ba6c4 sched_trace_cfs_rq_cpu 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 0xf7500e70 pm_runtime_set_autosuspend_delay EXPORT_SYMBOL_GPL vmlinux 0xf767ca35 fixed_percpu_data -EXPORT_SYMBOL_GPL vmlinux 0xf775a330 switchdev_port_obj_del -EXPORT_SYMBOL_GPL vmlinux 0xf7767730 pci_vfs_assigned -EXPORT_SYMBOL_GPL vmlinux 0xf776c426 xfrm_audit_policy_add -EXPORT_SYMBOL_GPL vmlinux 0xf777bae4 rio_add_device -EXPORT_SYMBOL_GPL vmlinux 0xf7817f87 phy_power_on +EXPORT_SYMBOL_GPL vmlinux 0xf76cff9c pci_epc_get 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 0xf7886ce4 power_supply_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf78ca9cc usb_sg_wait -EXPORT_SYMBOL_GPL vmlinux 0xf79aa1d2 crypto_alloc_akcipher -EXPORT_SYMBOL_GPL vmlinux 0xf79d1427 dma_buf_get -EXPORT_SYMBOL_GPL vmlinux 0xf7a1df68 led_compose_name EXPORT_SYMBOL_GPL vmlinux 0xf7afb369 btree_init +EXPORT_SYMBOL_GPL vmlinux 0xf7ba2996 pin_user_pages_fast_only EXPORT_SYMBOL_GPL vmlinux 0xf7bc95b0 devlink_fmsg_pair_nest_start EXPORT_SYMBOL_GPL vmlinux 0xf7c3f273 xen_resume_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0xf7c7fbfa crypto_aead_setkey -EXPORT_SYMBOL_GPL vmlinux 0xf7c8c8d3 of_phy_put -EXPORT_SYMBOL_GPL vmlinux 0xf7c99a7e posix_acl_default_xattr_handler -EXPORT_SYMBOL_GPL vmlinux 0xf7d6f6d0 ata_pci_bmdma_init +EXPORT_SYMBOL_GPL vmlinux 0xf7cfe036 ata_sas_port_stop +EXPORT_SYMBOL_GPL vmlinux 0xf7d03ea5 to_nvdimm +EXPORT_SYMBOL_GPL vmlinux 0xf7d1108c scsi_flush_work +EXPORT_SYMBOL_GPL vmlinux 0xf7d3917d thermal_of_cooling_device_register EXPORT_SYMBOL_GPL vmlinux 0xf7d961d8 clk_hw_unregister_composite -EXPORT_SYMBOL_GPL vmlinux 0xf7f4f6d9 genphy_c45_pma_read_abilities -EXPORT_SYMBOL_GPL vmlinux 0xf7f66eaa devlink_rate_leaf_destroy -EXPORT_SYMBOL_GPL vmlinux 0xf7f6d863 pci_epc_unmap_addr -EXPORT_SYMBOL_GPL vmlinux 0xf7fdd34f fscrypt_set_bio_crypt_ctx_bh -EXPORT_SYMBOL_GPL vmlinux 0xf801e5d4 phy_package_leave -EXPORT_SYMBOL_GPL vmlinux 0xf811c812 blkcg_root_css -EXPORT_SYMBOL_GPL vmlinux 0xf81995df iomap_file_unshare +EXPORT_SYMBOL_GPL vmlinux 0xf7e0b22f uart_handle_dcd_change +EXPORT_SYMBOL_GPL vmlinux 0xf7e42ade devm_of_phy_get_by_index +EXPORT_SYMBOL_GPL vmlinux 0xf7f3b1a8 netlink_remove_tap +EXPORT_SYMBOL_GPL vmlinux 0xf7f502f8 balloon_page_enqueue +EXPORT_SYMBOL_GPL vmlinux 0xf803e8b7 tpm_pcr_extend +EXPORT_SYMBOL_GPL vmlinux 0xf823e2ed debugfs_create_x16 +EXPORT_SYMBOL_GPL vmlinux 0xf824b346 rio_request_outb_mbox EXPORT_SYMBOL_GPL vmlinux 0xf82f3657 work_on_cpu -EXPORT_SYMBOL_GPL vmlinux 0xf8492c04 store_sampling_rate -EXPORT_SYMBOL_GPL vmlinux 0xf849b7a9 security_kernel_read_file -EXPORT_SYMBOL_GPL vmlinux 0xf85fb182 kthread_func -EXPORT_SYMBOL_GPL vmlinux 0xf86187eb __dev_change_net_namespace -EXPORT_SYMBOL_GPL vmlinux 0xf862abfe __kernel_write -EXPORT_SYMBOL_GPL vmlinux 0xf86e722b __clk_get_hw +EXPORT_SYMBOL_GPL vmlinux 0xf84f536c register_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0xf860aacb auxiliary_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf8710536 sysfs_create_mount_point +EXPORT_SYMBOL_GPL vmlinux 0xf873d4dc fpu_copy_uabi_to_guest_fpstate +EXPORT_SYMBOL_GPL vmlinux 0xf877fdd0 device_bind_driver EXPORT_SYMBOL_GPL vmlinux 0xf881cecd load_fixmap_gdt -EXPORT_SYMBOL_GPL vmlinux 0xf88bf245 tpm_chip_register -EXPORT_SYMBOL_GPL vmlinux 0xf88dd87c gpiod_set_raw_array_value -EXPORT_SYMBOL_GPL vmlinux 0xf8a627a1 __fscrypt_prepare_link -EXPORT_SYMBOL_GPL vmlinux 0xf8aad57e regulator_map_voltage_ascend -EXPORT_SYMBOL_GPL vmlinux 0xf8cdb0d9 device_store_ulong -EXPORT_SYMBOL_GPL vmlinux 0xf8d4271b __inet_inherit_port -EXPORT_SYMBOL_GPL vmlinux 0xf8d90e6f sock_diag_unregister_inet_compat -EXPORT_SYMBOL_GPL vmlinux 0xf8d997bb phy_modify_mmd -EXPORT_SYMBOL_GPL vmlinux 0xf8e90226 sock_gen_put +EXPORT_SYMBOL_GPL vmlinux 0xf8a1edad intel_pinctrl_resume_noirq +EXPORT_SYMBOL_GPL vmlinux 0xf8acb449 sata_scr_read +EXPORT_SYMBOL_GPL vmlinux 0xf8ce3620 dev_pm_opp_xlate_required_opp +EXPORT_SYMBOL_GPL vmlinux 0xf8cff7d5 mbox_chan_txdone +EXPORT_SYMBOL_GPL vmlinux 0xf8e98436 __pm_runtime_suspend EXPORT_SYMBOL_GPL vmlinux 0xf8f3a0fb ata_ratelimit -EXPORT_SYMBOL_GPL vmlinux 0xf8f806b5 posix_clock_unregister EXPORT_SYMBOL_GPL vmlinux 0xf8fe3986 pat_pfn_immune_to_uc_mtrr -EXPORT_SYMBOL_GPL vmlinux 0xf913e572 pci_epc_add_epf -EXPORT_SYMBOL_GPL vmlinux 0xf91ce3bd blk_queue_zone_write_granularity -EXPORT_SYMBOL_GPL vmlinux 0xf91d5377 nvdimm_bus_add_badrange -EXPORT_SYMBOL_GPL vmlinux 0xf925f0f8 irq_get_domain_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0xf926b702 ata_host_suspend -EXPORT_SYMBOL_GPL vmlinux 0xf935618d alloc_skb_for_msg -EXPORT_SYMBOL_GPL vmlinux 0xf93b02b4 iommu_iova_to_phys -EXPORT_SYMBOL_GPL vmlinux 0xf94cced6 xhci_run -EXPORT_SYMBOL_GPL vmlinux 0xf94e7729 gpiod_to_chip +EXPORT_SYMBOL_GPL vmlinux 0xf90638a0 fb_deferred_io_init +EXPORT_SYMBOL_GPL vmlinux 0xf90bae9e ata_sff_postreset +EXPORT_SYMBOL_GPL vmlinux 0xf91adf4d skcipher_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xf91c240a __tracepoint_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0xf91ec5dc pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xf923fc80 sk_msg_free_partial +EXPORT_SYMBOL_GPL vmlinux 0xf924fa50 generic_device_group +EXPORT_SYMBOL_GPL vmlinux 0xf945e175 cgroup_get_from_id +EXPORT_SYMBOL_GPL vmlinux 0xf94730fc devm_gpio_request +EXPORT_SYMBOL_GPL vmlinux 0xf94c5e30 blk_mq_sched_try_merge EXPORT_SYMBOL_GPL vmlinux 0xf95322f4 kthread_parkme -EXPORT_SYMBOL_GPL vmlinux 0xf95485d1 irq_domain_reset_irq_data EXPORT_SYMBOL_GPL vmlinux 0xf955e9c5 bprintf -EXPORT_SYMBOL_GPL vmlinux 0xf95be29a __clk_determine_rate -EXPORT_SYMBOL_GPL vmlinux 0xf96023ba vfio_uninit_group_dev -EXPORT_SYMBOL_GPL vmlinux 0xf98e0fc9 __efivar_entry_get -EXPORT_SYMBOL_GPL vmlinux 0xf98e2a4d user_read -EXPORT_SYMBOL_GPL vmlinux 0xf991bb79 __xenbus_register_frontend -EXPORT_SYMBOL_GPL vmlinux 0xf999d3fb dma_resv_test_signaled +EXPORT_SYMBOL_GPL vmlinux 0xf96dfccb alloc_dax_region +EXPORT_SYMBOL_GPL vmlinux 0xf973cb32 skcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0xf9914eb7 __traceiter_sched_util_est_se_tp EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0xf9a60286 virtqueue_add_outbuf +EXPORT_SYMBOL_GPL vmlinux 0xf9b0f01e regmap_raw_write_async +EXPORT_SYMBOL_GPL vmlinux 0xf9b26b8a serdev_controller_alloc EXPORT_SYMBOL_GPL vmlinux 0xf9b34a0b iopf_queue_free -EXPORT_SYMBOL_GPL vmlinux 0xf9c7794c perf_event_read_value -EXPORT_SYMBOL_GPL vmlinux 0xf9d4788a ip6_dst_lookup_tunnel -EXPORT_SYMBOL_GPL vmlinux 0xf9eacf31 __raw_v6_lookup -EXPORT_SYMBOL_GPL vmlinux 0xf9ec26db __efivar_entry_iter -EXPORT_SYMBOL_GPL vmlinux 0xfa06cd8d crypto_drop_spawn -EXPORT_SYMBOL_GPL vmlinux 0xfa1ab813 extcon_set_property_capability +EXPORT_SYMBOL_GPL vmlinux 0xf9bf9755 usb_put_dev +EXPORT_SYMBOL_GPL vmlinux 0xf9d807ad devm_devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0xf9edc8dd fuse_conn_get +EXPORT_SYMBOL_GPL vmlinux 0xf9f456dd devm_mbox_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf9f71982 wm8350_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xfa00e7b1 ata_sas_port_suspend +EXPORT_SYMBOL_GPL vmlinux 0xfa1e999e regulator_bulk_disable EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops -EXPORT_SYMBOL_GPL vmlinux 0xfa29be5d put_device -EXPORT_SYMBOL_GPL vmlinux 0xfa2cb27c kthread_unuse_mm +EXPORT_SYMBOL_GPL vmlinux 0xfa2a3c70 wakeup_source_add +EXPORT_SYMBOL_GPL vmlinux 0xfa2ed793 do_tcp_sendpages +EXPORT_SYMBOL_GPL vmlinux 0xfa309381 __SCK__tp_func_neigh_timer_handler EXPORT_SYMBOL_GPL vmlinux 0xfa349688 aer_recover_queue EXPORT_SYMBOL_GPL vmlinux 0xfa35044a alternatives_patched -EXPORT_SYMBOL_GPL vmlinux 0xfa3dc1b0 pci_epc_set_bar -EXPORT_SYMBOL_GPL vmlinux 0xfa551273 __tracepoint_block_split +EXPORT_SYMBOL_GPL vmlinux 0xfa3d8923 regulator_bulk_set_supply_names +EXPORT_SYMBOL_GPL vmlinux 0xfa418645 devm_usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0xfa4c44aa tty_release_struct EXPORT_SYMBOL_GPL vmlinux 0xfa666974 queue_work_node EXPORT_SYMBOL_GPL vmlinux 0xfa690589 netdev_cmd_to_name -EXPORT_SYMBOL_GPL vmlinux 0xfa6bc534 devm_acpi_dev_remove_driver_gpios -EXPORT_SYMBOL_GPL vmlinux 0xfa6fb0a9 put_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0xfa97c72c free_io_pgtable_ops -EXPORT_SYMBOL_GPL vmlinux 0xfa9e474d mmc_send_status -EXPORT_SYMBOL_GPL vmlinux 0xfaa052c7 replace_page_cache_page -EXPORT_SYMBOL_GPL vmlinux 0xfaadcbca ata_link_offline +EXPORT_SYMBOL_GPL vmlinux 0xfa896b86 device_match_name +EXPORT_SYMBOL_GPL vmlinux 0xfa93e870 iomap_writepage EXPORT_SYMBOL_GPL vmlinux 0xfab30dc0 mdio_bus_exit EXPORT_SYMBOL_GPL vmlinux 0xfab53ed9 pinctrl_gpio_can_use_line +EXPORT_SYMBOL_GPL vmlinux 0xfabd3ba4 __SCK__tp_func_devlink_hwmsg +EXPORT_SYMBOL_GPL vmlinux 0xfac287c5 platform_msi_domain_alloc_irqs +EXPORT_SYMBOL_GPL vmlinux 0xfac67f59 ata_sas_slave_configure +EXPORT_SYMBOL_GPL vmlinux 0xfac8d800 fsverity_verify_page EXPORT_SYMBOL_GPL vmlinux 0xfad9c827 kill_dax -EXPORT_SYMBOL_GPL vmlinux 0xfb14f1c7 devlink_dpipe_headers_unregister -EXPORT_SYMBOL_GPL vmlinux 0xfb2e3f9d pci_generic_config_write32 +EXPORT_SYMBOL_GPL vmlinux 0xfb0b9191 fscrypt_d_revalidate +EXPORT_SYMBOL_GPL vmlinux 0xfb31cf75 device_set_of_node_from_dev EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync -EXPORT_SYMBOL_GPL vmlinux 0xfb46f522 extcon_set_property_sync -EXPORT_SYMBOL_GPL vmlinux 0xfb535d1f debugfs_create_u64 -EXPORT_SYMBOL_GPL vmlinux 0xfb5ff4e4 nvdimm_has_cache +EXPORT_SYMBOL_GPL vmlinux 0xfb459bdb vfs_lock_file +EXPORT_SYMBOL_GPL vmlinux 0xfb5719bd mptcp_pm_get_local_addr_max +EXPORT_SYMBOL_GPL vmlinux 0xfb5852ee sata_sff_hardreset EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name -EXPORT_SYMBOL_GPL vmlinux 0xfb83d610 bd_unlink_disk_holder -EXPORT_SYMBOL_GPL vmlinux 0xfb9ca943 clk_hw_unregister +EXPORT_SYMBOL_GPL vmlinux 0xfb7549c8 usb_unlocked_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xfb9daa2c debugfs_real_fops +EXPORT_SYMBOL_GPL vmlinux 0xfba4c7eb usb_ifnum_to_if +EXPORT_SYMBOL_GPL vmlinux 0xfbbb34d1 bio_end_io_acct_remapped EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action -EXPORT_SYMBOL_GPL vmlinux 0xfbc0cebe fuse_sync_release -EXPORT_SYMBOL_GPL vmlinux 0xfbceffa8 platform_bus +EXPORT_SYMBOL_GPL vmlinux 0xfbbdaa31 bus_create_file +EXPORT_SYMBOL_GPL vmlinux 0xfbe71c47 iommu_sva_alloc_pasid +EXPORT_SYMBOL_GPL vmlinux 0xfbec9cee usb_control_msg EXPORT_SYMBOL_GPL vmlinux 0xfbeeb13c phy_gbit_all_ports_features -EXPORT_SYMBOL_GPL vmlinux 0xfbf2de22 __SCK__tp_func_cpu_frequency +EXPORT_SYMBOL_GPL vmlinux 0xfbfaef0f crypto_alloc_ahash +EXPORT_SYMBOL_GPL vmlinux 0xfbfc3a30 register_net_sysctl 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 0xfc06cf9a device_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0xfc128240 devlink_sb_unregister EXPORT_SYMBOL_GPL vmlinux 0xfc14bb2e dm_get_dev_t EXPORT_SYMBOL_GPL vmlinux 0xfc19bc45 crypto_dh_encode_key -EXPORT_SYMBOL_GPL vmlinux 0xfc1ec065 dev_pm_domain_attach_by_name EXPORT_SYMBOL_GPL vmlinux 0xfc201b66 sprint_oid EXPORT_SYMBOL_GPL vmlinux 0xfc254d15 gnttab_free_auto_xlat_frames +EXPORT_SYMBOL_GPL vmlinux 0xfc3a632f kthread_unuse_mm +EXPORT_SYMBOL_GPL vmlinux 0xfc3ab3ea __traceiter_block_unplug EXPORT_SYMBOL_GPL vmlinux 0xfc3b4246 acpi_bus_update_power -EXPORT_SYMBOL_GPL vmlinux 0xfc42eb68 rio_mport_write_config_32 -EXPORT_SYMBOL_GPL vmlinux 0xfc4defcf devlink_traps_register -EXPORT_SYMBOL_GPL vmlinux 0xfc4ef70a crypto_ahash_setkey -EXPORT_SYMBOL_GPL vmlinux 0xfc635178 query_asymmetric_key -EXPORT_SYMBOL_GPL vmlinux 0xfc652faa acpi_cppc_processor_exit -EXPORT_SYMBOL_GPL vmlinux 0xfc6e5494 __tracepoint_napi_poll -EXPORT_SYMBOL_GPL vmlinux 0xfc79f108 security_kernel_post_read_file -EXPORT_SYMBOL_GPL vmlinux 0xfc946d9b devm_usb_get_phy_by_node -EXPORT_SYMBOL_GPL vmlinux 0xfc971d61 __page_mapcount -EXPORT_SYMBOL_GPL vmlinux 0xfca3d8fe tpm_transmit_cmd -EXPORT_SYMBOL_GPL vmlinux 0xfcae086c handle_fasteoi_irq -EXPORT_SYMBOL_GPL vmlinux 0xfcbc8628 devm_usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0xfc656b00 ohci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0xfc7eea74 crypto_aead_setauthsize +EXPORT_SYMBOL_GPL vmlinux 0xfc9f38ba extcon_get_property_capability +EXPORT_SYMBOL_GPL vmlinux 0xfca95caf phy_pm_runtime_put_sync +EXPORT_SYMBOL_GPL vmlinux 0xfcafc731 xfrm_state_mtu +EXPORT_SYMBOL_GPL vmlinux 0xfcb028f5 ata_pci_sff_init_one +EXPORT_SYMBOL_GPL vmlinux 0xfcb28fc9 sched_set_fifo EXPORT_SYMBOL_GPL vmlinux 0xfcbfec70 add_memory_driver_managed EXPORT_SYMBOL_GPL vmlinux 0xfcc1edd3 memory_block_size_bytes -EXPORT_SYMBOL_GPL vmlinux 0xfcc965df dax_iomap_rw +EXPORT_SYMBOL_GPL vmlinux 0xfcc8eb6c component_master_del EXPORT_SYMBOL_GPL vmlinux 0xfcca5424 register_kprobe -EXPORT_SYMBOL_GPL vmlinux 0xfcd06241 pm_generic_resume_noirq -EXPORT_SYMBOL_GPL vmlinux 0xfcd70e0e crypto_shash_finup -EXPORT_SYMBOL_GPL vmlinux 0xfce8ec84 gpiod_set_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xfcf0fe98 simple_attr_open +EXPORT_SYMBOL_GPL vmlinux 0xfccc66fd power_supply_put +EXPORT_SYMBOL_GPL vmlinux 0xfcd7a81b regulator_suspend_enable +EXPORT_SYMBOL_GPL vmlinux 0xfcf034ea tty_port_register_device_serdev EXPORT_SYMBOL_GPL vmlinux 0xfcf9ef73 hw_protection_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xfd0c0d74 __SCK__tp_func_kfree_skb -EXPORT_SYMBOL_GPL vmlinux 0xfd0ed46f pci_epf_destroy -EXPORT_SYMBOL_GPL vmlinux 0xfd273218 wm8350_gpio_config -EXPORT_SYMBOL_GPL vmlinux 0xfd4db2e8 pm_runtime_no_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xfd517739 usb_hcd_pci_pm_ops -EXPORT_SYMBOL_GPL vmlinux 0xfd57b29f pm_schedule_suspend -EXPORT_SYMBOL_GPL vmlinux 0xfd6a039a tty_save_termios +EXPORT_SYMBOL_GPL vmlinux 0xfd020546 driver_attach +EXPORT_SYMBOL_GPL vmlinux 0xfd545eb1 pci_epc_map_addr +EXPORT_SYMBOL_GPL vmlinux 0xfd5acda3 fuse_dev_release +EXPORT_SYMBOL_GPL vmlinux 0xfd63b8e0 devm_remove_action +EXPORT_SYMBOL_GPL vmlinux 0xfd6bd4c9 node_to_amd_nb +EXPORT_SYMBOL_GPL vmlinux 0xfd6e13be devlink_param_unregister EXPORT_SYMBOL_GPL vmlinux 0xfd7243c7 erst_disable -EXPORT_SYMBOL_GPL vmlinux 0xfd7db929 crypto_grab_ahash -EXPORT_SYMBOL_GPL vmlinux 0xfd81c054 pinctrl_pm_select_sleep_state -EXPORT_SYMBOL_GPL vmlinux 0xfd91ab56 crypto_grab_aead -EXPORT_SYMBOL_GPL vmlinux 0xfd93ac63 __alloc_pages_bulk -EXPORT_SYMBOL_GPL vmlinux 0xfd9439bc __tracepoint_sched_util_est_se_tp -EXPORT_SYMBOL_GPL vmlinux 0xfd9b2d80 __mnt_is_readonly -EXPORT_SYMBOL_GPL vmlinux 0xfd9cd17c virtio_check_driver_offered_feature -EXPORT_SYMBOL_GPL vmlinux 0xfda1c8ff ata_sff_wait_ready -EXPORT_SYMBOL_GPL vmlinux 0xfda3f47c edac_device_handle_ce_count -EXPORT_SYMBOL_GPL vmlinux 0xfda8b836 fwnode_get_parent -EXPORT_SYMBOL_GPL vmlinux 0xfda9b4b8 usb_alloc_coherent -EXPORT_SYMBOL_GPL vmlinux 0xfdad75ad devm_gpio_free -EXPORT_SYMBOL_GPL vmlinux 0xfdb04f8a ipv6_opt_accepted -EXPORT_SYMBOL_GPL vmlinux 0xfdb3d466 regmap_async_complete -EXPORT_SYMBOL_GPL vmlinux 0xfdb51f52 usb_enable_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0xfdbb338c task_user_regset_view EXPORT_SYMBOL_GPL vmlinux 0xfdbd7a17 crypto_get_attr_type -EXPORT_SYMBOL_GPL vmlinux 0xfdcd91bf invalidate_inode_pages2 -EXPORT_SYMBOL_GPL vmlinux 0xfdda0b70 da903x_reads -EXPORT_SYMBOL_GPL vmlinux 0xfddb6633 serdev_device_set_flow_control -EXPORT_SYMBOL_GPL vmlinux 0xfddef6e3 rtc_class_close +EXPORT_SYMBOL_GPL vmlinux 0xfdcae9e6 udp_cmsg_send +EXPORT_SYMBOL_GPL vmlinux 0xfdcee7c7 gpiod_get_value +EXPORT_SYMBOL_GPL vmlinux 0xfdd0257b fwnode_usb_role_switch_get +EXPORT_SYMBOL_GPL vmlinux 0xfddf0e1d vring_transport_features +EXPORT_SYMBOL_GPL vmlinux 0xfde0c1a5 md_start +EXPORT_SYMBOL_GPL vmlinux 0xfde5c5ea mmu_interval_notifier_remove EXPORT_SYMBOL_GPL vmlinux 0xfdea2d04 alarm_cancel -EXPORT_SYMBOL_GPL vmlinux 0xfdf67d3e cgroup_get_from_fd -EXPORT_SYMBOL_GPL vmlinux 0xfdfaee0e sdio_claim_host -EXPORT_SYMBOL_GPL vmlinux 0xfe01890a __devm_alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0xfe07daae pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0xfdea637c rio_mport_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0xfdf9eb4c device_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0xfdfdc9bb pci_bus_add_device +EXPORT_SYMBOL_GPL vmlinux 0xfe05a5a9 bio_add_zone_append_page EXPORT_SYMBOL_GPL vmlinux 0xfe0e7cd3 apei_exec_post_unmap_gars -EXPORT_SYMBOL_GPL vmlinux 0xfe14bdda __tracepoint_detach_device_from_domain EXPORT_SYMBOL_GPL vmlinux 0xfe1a7a7b mpi_point_release -EXPORT_SYMBOL_GPL vmlinux 0xfe22ff4f tcp_twsk_unique -EXPORT_SYMBOL_GPL vmlinux 0xfe268b4a __pm_runtime_set_status -EXPORT_SYMBOL_GPL vmlinux 0xfe29c215 powercap_unregister_control_type -EXPORT_SYMBOL_GPL vmlinux 0xfe3621fb class_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0xfe29569c intel_pmic_install_opregion_handler +EXPORT_SYMBOL_GPL vmlinux 0xfe2c6b81 sdio_writew +EXPORT_SYMBOL_GPL vmlinux 0xfe2d8ffa wbc_attach_and_unlock_inode +EXPORT_SYMBOL_GPL vmlinux 0xfe324547 fwnode_find_reference EXPORT_SYMBOL_GPL vmlinux 0xfe3a6de3 alarm_try_to_cancel -EXPORT_SYMBOL_GPL vmlinux 0xfe3ac2bb balloon_page_alloc EXPORT_SYMBOL_GPL vmlinux 0xfe476039 ktime_get_resolution_ns +EXPORT_SYMBOL_GPL vmlinux 0xfe4e832c pcie_aspm_capable EXPORT_SYMBOL_GPL vmlinux 0xfe5aad0c divider_ro_determine_rate -EXPORT_SYMBOL_GPL vmlinux 0xfe5dd702 usb_put_intf -EXPORT_SYMBOL_GPL vmlinux 0xfe6123d2 acpi_cppc_processor_probe +EXPORT_SYMBOL_GPL vmlinux 0xfe646da9 blk_rq_prep_clone +EXPORT_SYMBOL_GPL vmlinux 0xfe67d540 pinctrl_enable EXPORT_SYMBOL_GPL vmlinux 0xfe727411 get_phys_to_machine -EXPORT_SYMBOL_GPL vmlinux 0xfe72a98a driver_unregister EXPORT_SYMBOL_GPL vmlinux 0xfe8cdb84 ring_buffer_alloc_read_page -EXPORT_SYMBOL_GPL vmlinux 0xfe957de9 iommu_set_pgtable_quirks -EXPORT_SYMBOL_GPL vmlinux 0xfe96a0f4 devres_remove EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free -EXPORT_SYMBOL_GPL vmlinux 0xfea82539 of_clk_hw_register -EXPORT_SYMBOL_GPL vmlinux 0xfeb901a0 dax_layout_busy_page_range -EXPORT_SYMBOL_GPL vmlinux 0xfebfac71 pci_epc_mem_alloc_addr +EXPORT_SYMBOL_GPL vmlinux 0xfea9d5fe clk_hw_get_name +EXPORT_SYMBOL_GPL vmlinux 0xfebd2dc4 strp_unpause +EXPORT_SYMBOL_GPL vmlinux 0xfec39d9b devm_thermal_add_hwmon_sysfs EXPORT_SYMBOL_GPL vmlinux 0xfec3bf84 icst_clk_setup -EXPORT_SYMBOL_GPL vmlinux 0xfec69dc8 md_bitmap_load +EXPORT_SYMBOL_GPL vmlinux 0xfec9b607 device_for_each_child +EXPORT_SYMBOL_GPL vmlinux 0xfecba936 page_endio EXPORT_SYMBOL_GPL vmlinux 0xfed11ed1 usb_mon_deregister +EXPORT_SYMBOL_GPL vmlinux 0xfed560f8 tty_port_tty_wakeup EXPORT_SYMBOL_GPL vmlinux 0xfed561ff divider_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0xfee93e61 virtqueue_enable_cb EXPORT_SYMBOL_GPL vmlinux 0xfeeecd05 apei_read -EXPORT_SYMBOL_GPL vmlinux 0xfeff8a89 tcp_sendmsg_locked +EXPORT_SYMBOL_GPL vmlinux 0xfef73760 nf_nat_hook +EXPORT_SYMBOL_GPL vmlinux 0xfef98acd __fat_fs_error +EXPORT_SYMBOL_GPL vmlinux 0xfefae8ea tpm2_get_tpm_pt +EXPORT_SYMBOL_GPL vmlinux 0xfeff2c27 wm8350_block_write +EXPORT_SYMBOL_GPL vmlinux 0xff00b1e8 bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0xff02b5d5 __xenbus_register_backend EXPORT_SYMBOL_GPL vmlinux 0xff05fa13 vring_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xff0ac3ae __SCK__tp_func_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0xff0ebb68 __traceiter_tcp_bad_csum +EXPORT_SYMBOL_GPL vmlinux 0xff11afe3 css_next_descendant_pre EXPORT_SYMBOL_GPL vmlinux 0xff1666f3 reset_control_bulk_assert +EXPORT_SYMBOL_GPL vmlinux 0xff1a5220 ata_link_offline EXPORT_SYMBOL_GPL vmlinux 0xff1e67b9 setup_APIC_eilvt EXPORT_SYMBOL_GPL vmlinux 0xff291ecf clk_unregister_divider -EXPORT_SYMBOL_GPL vmlinux 0xff2d4576 pm_runtime_enable -EXPORT_SYMBOL_GPL vmlinux 0xff37d736 blkcg_policy_register +EXPORT_SYMBOL_GPL vmlinux 0xff34764f rio_del_mport_pw_handler +EXPORT_SYMBOL_GPL vmlinux 0xff396ce9 is_swiotlb_active +EXPORT_SYMBOL_GPL vmlinux 0xff3d6d20 blk_queue_can_use_dma_map_merging EXPORT_SYMBOL_GPL vmlinux 0xff42c374 usb_role_switch_get_role -EXPORT_SYMBOL_GPL vmlinux 0xff4965a8 tty_buffer_request_room -EXPORT_SYMBOL_GPL vmlinux 0xff4fc1f1 blk_abort_request -EXPORT_SYMBOL_GPL vmlinux 0xff5a57f8 phy_driver_is_genphy_10g -EXPORT_SYMBOL_GPL vmlinux 0xff5f791a rio_unmap_inb_region -EXPORT_SYMBOL_GPL vmlinux 0xff775c9f device_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0xff44a92b i2c_new_scanned_device +EXPORT_SYMBOL_GPL vmlinux 0xff4cc60e pci_pasid_features EXPORT_SYMBOL_GPL vmlinux 0xff7e33bf mpi_sub_ui EXPORT_SYMBOL_GPL vmlinux 0xff81487d gpiod_remove_lookup_table +EXPORT_SYMBOL_GPL vmlinux 0xff8488f6 __blk_req_zone_write_lock EXPORT_SYMBOL_GPL vmlinux 0xff8e74e2 arch_haltpoll_enable -EXPORT_SYMBOL_GPL vmlinux 0xff915815 pci_find_host_bridge -EXPORT_SYMBOL_GPL vmlinux 0xff936fc5 __bio_crypt_clone -EXPORT_SYMBOL_GPL vmlinux 0xff9af322 gnttab_unmap_refs_sync +EXPORT_SYMBOL_GPL vmlinux 0xff8f6bed dmaengine_desc_attach_metadata EXPORT_SYMBOL_GPL vmlinux 0xff9e23d1 hugetlb_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xffa3f953 gnttab_alloc_pages -EXPORT_SYMBOL_GPL vmlinux 0xffa8ab69 fuse_dev_fiq_ops -EXPORT_SYMBOL_GPL vmlinux 0xffac87b2 perf_pmu_register +EXPORT_SYMBOL_GPL vmlinux 0xffa71d86 crypto_stats_kpp_set_secret EXPORT_SYMBOL_GPL vmlinux 0xffae8e8b nsecs_to_jiffies -EXPORT_SYMBOL_GPL vmlinux 0xffbdd36c nd_blk_memremap_flags -EXPORT_SYMBOL_GPL vmlinux 0xffc033cb regulator_set_voltage_time_sel -EXPORT_SYMBOL_GPL vmlinux 0xffd52711 pm_generic_poweroff -EXPORT_SYMBOL_GPL vmlinux 0xffe8f667 i2c_match_id -EXPORT_SYMBOL_GPL vmlinux 0xfff8b58f devlink_dpipe_entry_ctx_close +EXPORT_SYMBOL_GPL vmlinux 0xffb71e02 vfio_virqfd_enable +EXPORT_SYMBOL_GPL vmlinux 0xffe36cd8 devfreq_event_disable_edev +EXPORT_SYMBOL_GPL vmlinux 0xffe5d9ea fat_remove_entries FIRMWARE_LOADER_PRIVATE EXPORT_SYMBOL_GPL 0xd3ae7756 fw_fallback_config vmlinux -IDXD EXPORT_SYMBOL_GPL 0x030afc27 idxd_driver_unregister drivers/dma/idxd/idxd_bus -IDXD EXPORT_SYMBOL_GPL 0x328cd1ae __idxd_driver_register drivers/dma/idxd/idxd_bus -IDXD EXPORT_SYMBOL_GPL 0x43b20a62 idxd_dmaengine_drv drivers/dma/idxd/idxd -IDXD EXPORT_SYMBOL_GPL 0xaaa5bc42 idxd_drv drivers/dma/idxd/idxd -IDXD EXPORT_SYMBOL_GPL 0xbc89ead0 idxd_user_drv drivers/dma/idxd/idxd -IDXD EXPORT_SYMBOL_GPL 0xf83cead4 dsa_bus_type drivers/dma/idxd/idxd_bus -IIO_HID EXPORT_SYMBOL 0x056773cc hid_sensor_read_raw_hyst_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0x1666cfca hid_sensor_write_raw_hyst_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0x19dc11f1 hid_sensor_pm_ops drivers/iio/common/hid-sensors/hid-sensor-trigger -IIO_HID EXPORT_SYMBOL 0x387ef29d hid_sensor_read_raw_hyst_rel_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0x3ffd1eae hid_sensor_read_samp_freq_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0x43049bc3 hid_sensor_convert_timestamp drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0x4f3e889b hid_sensor_write_samp_freq_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0x636b81a2 hid_sensor_power_state drivers/iio/common/hid-sensors/hid-sensor-trigger -IIO_HID EXPORT_SYMBOL 0x6c7fb441 hid_sensor_parse_common_attributes drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0x7a5cf979 hid_sensor_write_raw_hyst_rel_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IDXD EXPORT_SYMBOL_GPL 0x47d832f8 __idxd_driver_register drivers/dma/idxd/idxd_bus +IDXD EXPORT_SYMBOL_GPL 0x4bc03118 idxd_user_drv drivers/dma/idxd/idxd +IDXD EXPORT_SYMBOL_GPL 0x6cd63507 dsa_bus_type drivers/dma/idxd/idxd_bus +IDXD EXPORT_SYMBOL_GPL 0x91799f9f idxd_drv drivers/dma/idxd/idxd +IDXD EXPORT_SYMBOL_GPL 0xd7e8e6b7 idxd_driver_unregister drivers/dma/idxd/idxd_bus +IDXD EXPORT_SYMBOL_GPL 0xd81fc78d idxd_dmaengine_drv drivers/dma/idxd/idxd +IIO_HID EXPORT_SYMBOL 0x07b75b88 hid_sensor_remove_trigger drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0x0b7e68b0 hid_sensor_write_raw_hyst_rel_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x177032d0 hid_sensor_pm_ops drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0x210e5e62 hid_sensor_parse_common_attributes drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x21a29bee hid_sensor_power_state drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0x3db6b8a8 hid_sensor_convert_timestamp drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x3fab4f04 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 0x9032afe9 hid_sensor_setup_trigger drivers/iio/common/hid-sensors/hid-sensor-trigger -IIO_HID EXPORT_SYMBOL 0x958129b5 hid_sensor_remove_trigger drivers/iio/common/hid-sensors/hid-sensor-trigger -IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x43533644 hid_sensor_batch_mode_supported drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0xac9895ba hid_sensor_get_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0xcd6a186a hid_sensor_read_poll_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0xf384120b hid_sensor_set_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common -INT340X_THERMAL EXPORT_SYMBOL_GPL 0x23249ec7 processor_thermal_send_mbox_read_cmd drivers/thermal/intel/int340x_thermal/processor_thermal_mbox -INT340X_THERMAL EXPORT_SYMBOL_GPL 0x9f6dded6 processor_thermal_send_mbox_write_cmd drivers/thermal/intel/int340x_thermal/processor_thermal_mbox -LTC2497 EXPORT_SYMBOL 0x62e415e3 ltc2497core_remove drivers/iio/adc/ltc2497-core -LTC2497 EXPORT_SYMBOL 0x704dae73 ltc2497core_probe drivers/iio/adc/ltc2497-core -MCB EXPORT_SYMBOL_GPL 0x1674f7a6 mcb_get_irq drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x1960a041 mcb_free_dev drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x34824642 chameleon_parse_cells drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x4a4424a5 mcb_alloc_dev drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x5f513b61 mcb_request_mem drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x6d2a4c7a mcb_bus_put drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x6d368040 __mcb_register_driver drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0xa815c053 mcb_alloc_bus drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0xa8d1ad6b mcb_device_register drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0xb204dcd2 mcb_unregister_driver drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0xbb8a2c97 mcb_bus_add_devices drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0xbb8bd18f mcb_bus_get drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0xc1982a25 mcb_release_bus drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0xd33e8098 mcb_get_resource drivers/mcb/mcb +IIO_HID EXPORT_SYMBOL 0x8e341525 hid_sensor_write_samp_freq_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0xa081bc0f hid_sensor_read_raw_hyst_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0xb0a23fed hid_sensor_write_raw_hyst_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0xb8a3a38d hid_sensor_read_samp_freq_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0xfd1a72c6 hid_sensor_read_raw_hyst_rel_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x8feec6d8 hid_sensor_get_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0xac4daa96 hid_sensor_read_poll_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0xdaf0c4b1 hid_sensor_set_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0xdd876cf4 hid_sensor_batch_mode_supported drivers/iio/common/hid-sensors/hid-sensor-iio-common +INT340X_THERMAL EXPORT_SYMBOL_GPL 0x193f3367 processor_thermal_send_mbox_write_cmd drivers/thermal/intel/int340x_thermal/processor_thermal_mbox +INT340X_THERMAL EXPORT_SYMBOL_GPL 0x1b4837fe processor_thermal_send_mbox_read_cmd drivers/thermal/intel/int340x_thermal/processor_thermal_mbox +LTC2497 EXPORT_SYMBOL 0x183ebc88 ltc2497core_probe drivers/iio/adc/ltc2497-core +LTC2497 EXPORT_SYMBOL 0xf8c77806 ltc2497core_remove drivers/iio/adc/ltc2497-core +MCB EXPORT_SYMBOL_GPL 0x0792d725 mcb_get_resource drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x22303455 mcb_free_dev drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x3ed8d890 mcb_get_irq drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x4e8104b3 mcb_release_bus drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x74f36245 mcb_unregister_driver drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x90c22654 mcb_device_register drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x96055e05 mcb_bus_get drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xa2ec2f91 __mcb_register_driver drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xa55524e2 mcb_alloc_bus drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xc843d89e mcb_bus_add_devices drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xd293172c mcb_request_mem drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xd503b5a1 mcb_bus_put drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xd7868cd8 chameleon_parse_cells drivers/mcb/mcb MCB EXPORT_SYMBOL_GPL 0xeb2c8905 mcb_release_mem drivers/mcb/mcb -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x21c13309 nvme_find_get_ns drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x39b2a0d2 nvme_command_effects drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x41644ec7 nvme_execute_passthru_rq drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x5d685902 nvme_ctrl_from_file drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x96f921d4 nvme_put_ns drivers/nvme/host/nvme-core -PMBUS EXPORT_SYMBOL_GPL 0x0f9ec38e pmbus_get_debugfs_dir drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x205ff6fe pmbus_get_driver_info drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x33d80e38 pmbus_read_word_data drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x472df21e pmbus_set_page drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x550fc64d pmbus_update_fan drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x5b338be6 pmbus_get_fan_rate_device drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x788fdf97 pmbus_write_byte drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x8160f2ac pmbus_regulator_ops drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x81c21487 pmbus_clear_faults drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x89397f80 pmbus_clear_cache drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x8e52fe7a pmbus_do_probe drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x95ee9a63 pmbus_check_byte_register drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x98610d82 pmbus_get_fan_rate_cached drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xa3858e42 pmbus_write_word_data drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xa4d00e45 pmbus_read_byte_data drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xac12d290 pmbus_update_byte_data drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xb1ae3522 pmbus_write_byte_data drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xeda29122 pmbus_check_word_register drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xfb8a7fdf pmbus_set_update drivers/hwmon/pmbus/pmbus_core +MCB EXPORT_SYMBOL_GPL 0xf52e38e7 mcb_alloc_dev drivers/mcb/mcb +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x6828b026 nvme_put_ns drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x817482fb nvme_execute_passthru_rq drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xd7f3df8f nvme_command_effects drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xf3f081b8 nvme_find_get_ns drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xfcde2687 nvme_ctrl_from_file drivers/nvme/host/nvme-core +PMBUS EXPORT_SYMBOL_GPL 0x030e5cd2 pmbus_set_update drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x03d19469 pmbus_get_fan_rate_device drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x0ff958ac pmbus_write_byte_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x1a712e32 pmbus_get_debugfs_dir drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x1b88d9b6 pmbus_update_byte_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x33eeaaf9 pmbus_get_driver_info drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x3c1d341d pmbus_update_fan drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x540123ed pmbus_do_probe drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x71d07f5e pmbus_read_byte_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x73ced860 pmbus_regulator_ops drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x759b5886 pmbus_write_byte drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x767f55b3 pmbus_clear_cache drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x7eb97a1d pmbus_write_word_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xae077089 pmbus_set_page drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xb6c8bb04 pmbus_clear_faults drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xbf0ba968 pmbus_get_fan_rate_cached drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xc2bbcfd1 pmbus_read_word_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xc4c8a92c pmbus_check_byte_register drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xe56f6ece pmbus_check_word_register drivers/hwmon/pmbus/pmbus_core SND_INTEL_SOUNDWIRE_ACPI EXPORT_SYMBOL 0xbb4f9d1f sdw_intel_acpi_scan sound/hda/snd-intel-sdw-acpi -SND_SOC_INTEL_HDA_DSP_COMMON EXPORT_SYMBOL 0x131e316d hda_dsp_hdmi_build_controls sound/soc/intel/boards/snd-soc-intel-hda-dsp-common -SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0x0886c52f max_98373_components sound/soc/intel/boards/snd-soc-intel-sof-maxim-common -SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0x0c85665e max_98357a_dai_link sound/soc/intel/boards/snd-soc-intel-sof-maxim-common -SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0x14b49460 max_98373_dapm_routes sound/soc/intel/boards/snd-soc-intel-sof-maxim-common -SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0x1c36ad83 max_98373_trigger sound/soc/intel/boards/snd-soc-intel-sof-maxim-common -SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0x306a48ea max_98360a_dai_link sound/soc/intel/boards/snd-soc-intel-sof-maxim-common -SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0x5a4bf755 max_98373_set_codec_conf sound/soc/intel/boards/snd-soc-intel-sof-maxim-common -SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0xbcffab23 max_98373_spk_codec_init sound/soc/intel/boards/snd-soc-intel-sof-maxim-common -SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0xc040a9b7 max_98373_ops sound/soc/intel/boards/snd-soc-intel-sof-maxim-common -SND_SOC_SOF_ACPI_DEV EXPORT_SYMBOL 0x8b90a6be sof_acpi_remove sound/soc/sof/snd-sof-acpi -SND_SOC_SOF_ACPI_DEV EXPORT_SYMBOL 0xd3394bf5 sof_acpi_probe sound/soc/sof/snd-sof-acpi -SND_SOC_SOF_ACPI_DEV EXPORT_SYMBOL 0xf62c7231 sof_acpi_pm sound/soc/sof/snd-sof-acpi -SND_SOC_SOF_HDA_AUDIO_CODEC EXPORT_SYMBOL 0x5bd2b230 hda_codec_probe_bus sound/soc/sof/intel/snd-sof-intel-hda -SND_SOC_SOF_HDA_AUDIO_CODEC EXPORT_SYMBOL 0x813d082b hda_codec_jack_check sound/soc/sof/intel/snd-sof-intel-hda -SND_SOC_SOF_HDA_AUDIO_CODEC EXPORT_SYMBOL 0xc0457b03 hda_codec_jack_wake_enable sound/soc/sof/intel/snd-sof-intel-hda -SND_SOC_SOF_HDA_AUDIO_CODEC_I915 EXPORT_SYMBOL 0x52788b4b hda_codec_i915_display_power sound/soc/sof/intel/snd-sof-intel-hda -SND_SOC_SOF_HDA_AUDIO_CODEC_I915 EXPORT_SYMBOL 0x702ab858 hda_codec_i915_exit sound/soc/sof/intel/snd-sof-intel-hda -SND_SOC_SOF_HDA_AUDIO_CODEC_I915 EXPORT_SYMBOL 0xa0fc8370 hda_codec_i915_init sound/soc/sof/intel/snd-sof-intel-hda +SND_SOC_INTEL_HDA_DSP_COMMON EXPORT_SYMBOL 0xcef7a3d5 hda_dsp_hdmi_build_controls sound/soc/intel/boards/snd-soc-intel-hda-dsp-common +SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0x296317aa max_98373_set_codec_conf sound/soc/intel/boards/snd-soc-intel-sof-maxim-common +SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0xa786eb20 max_98373_components sound/soc/intel/boards/snd-soc-intel-sof-maxim-common +SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0xc9c4ece3 max_98373_ops sound/soc/intel/boards/snd-soc-intel-sof-maxim-common +SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0xd0db9ef3 max_98373_spk_codec_init sound/soc/intel/boards/snd-soc-intel-sof-maxim-common +SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0xdfd74c22 max_98373_dapm_routes sound/soc/intel/boards/snd-soc-intel-sof-maxim-common +SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0xe209833c max_98360a_dai_link sound/soc/intel/boards/snd-soc-intel-sof-maxim-common +SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0xeb28c0d7 max_98373_trigger sound/soc/intel/boards/snd-soc-intel-sof-maxim-common +SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0xfca3421d max_98357a_dai_link sound/soc/intel/boards/snd-soc-intel-sof-maxim-common +SND_SOC_SOF_ACPI_DEV EXPORT_SYMBOL 0x07204141 sof_acpi_probe sound/soc/sof/snd-sof-acpi +SND_SOC_SOF_ACPI_DEV EXPORT_SYMBOL 0x1c4a5539 sof_acpi_remove sound/soc/sof/snd-sof-acpi +SND_SOC_SOF_ACPI_DEV EXPORT_SYMBOL 0x60a52cdc sof_acpi_pm sound/soc/sof/snd-sof-acpi +SND_SOC_SOF_HDA_AUDIO_CODEC EXPORT_SYMBOL 0x1fff1d20 hda_codec_probe_bus sound/soc/sof/intel/snd-sof-intel-hda +SND_SOC_SOF_HDA_AUDIO_CODEC EXPORT_SYMBOL 0x7c3e0a63 hda_codec_jack_check sound/soc/sof/intel/snd-sof-intel-hda +SND_SOC_SOF_HDA_AUDIO_CODEC EXPORT_SYMBOL 0x7f3bead5 hda_codec_jack_wake_enable sound/soc/sof/intel/snd-sof-intel-hda +SND_SOC_SOF_HDA_AUDIO_CODEC_I915 EXPORT_SYMBOL 0x082ddbda hda_codec_i915_display_power sound/soc/sof/intel/snd-sof-intel-hda +SND_SOC_SOF_HDA_AUDIO_CODEC_I915 EXPORT_SYMBOL 0x6bee4ada hda_codec_i915_exit sound/soc/sof/intel/snd-sof-intel-hda +SND_SOC_SOF_HDA_AUDIO_CODEC_I915 EXPORT_SYMBOL 0xcc91eb84 hda_codec_i915_init sound/soc/sof/intel/snd-sof-intel-hda +SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0x038c80bf atom_get_window_offset sound/soc/sof/intel/snd-sof-intel-atom +SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0x061e7399 atom_machine_select sound/soc/sof/intel/snd-sof-intel-atom +SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0x185a316a atom_get_mailbox_offset 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 0x44aaeb6b atom_set_mach_params sound/soc/sof/intel/snd-sof-intel-atom -SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0x578823f5 atom_dump sound/soc/sof/intel/snd-sof-intel-atom -SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0x5d4c6dc7 atom_reset sound/soc/sof/intel/snd-sof-intel-atom -SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0x7f32aeee atom_get_mailbox_offset sound/soc/sof/intel/snd-sof-intel-atom -SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0x9497f1dd atom_get_window_offset sound/soc/sof/intel/snd-sof-intel-atom -SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0xa10f2d1b atom_run sound/soc/sof/intel/snd-sof-intel-atom -SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0xc1ea3c47 atom_dai sound/soc/sof/intel/snd-sof-intel-atom -SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0xca126e05 atom_send_msg sound/soc/sof/intel/snd-sof-intel-atom +SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0x3d21102e atom_reset sound/soc/sof/intel/snd-sof-intel-atom +SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0x92842013 atom_send_msg sound/soc/sof/intel/snd-sof-intel-atom +SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0x9861db61 atom_set_mach_params sound/soc/sof/intel/snd-sof-intel-atom +SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0xabc70748 atom_dai sound/soc/sof/intel/snd-sof-intel-atom +SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0xb31ab253 atom_dump sound/soc/sof/intel/snd-sof-intel-atom +SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0xb74c51c8 atom_run sound/soc/sof/intel/snd-sof-intel-atom SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0xefa4a41a atom_irq_handler sound/soc/sof/intel/snd-sof-intel-atom -SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0xf81ecdd7 atom_machine_select sound/soc/sof/intel/snd-sof-intel-atom -SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x0bd4b9ae tgl_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common -SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x1a259f0f icl_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common -SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x20b14b2d apl_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common -SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x326e48ad sof_cnl_ops sound/soc/sof/intel/snd-sof-intel-hda-common -SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x47aaa843 sof_apl_ops sound/soc/sof/intel/snd-sof-intel-hda-common -SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x84db2a65 adls_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common -SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x8880dd9f hda_pci_intel_probe sound/soc/sof/intel/snd-sof-intel-hda-common -SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x8f3e25ea cnl_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common -SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0xc27935a5 sof_icl_ops sound/soc/sof/intel/snd-sof-intel-hda-common -SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0xd188354c sof_tgl_ops sound/soc/sof/intel/snd-sof-intel-hda-common -SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0xd2431c0e jsl_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common -SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0xd719b181 ehl_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common -SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0xf2d56788 tglh_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common -SND_SOC_SOF_INTEL_HIFI_EP_IPC EXPORT_SYMBOL 0x07299be9 intel_pcm_open sound/soc/sof/intel/snd-sof-intel-ipc -SND_SOC_SOF_INTEL_HIFI_EP_IPC EXPORT_SYMBOL 0x39eabbc2 intel_ipc_pcm_params sound/soc/sof/intel/snd-sof-intel-ipc -SND_SOC_SOF_INTEL_HIFI_EP_IPC EXPORT_SYMBOL 0x5e590eb6 intel_pcm_close sound/soc/sof/intel/snd-sof-intel-ipc -SND_SOC_SOF_INTEL_HIFI_EP_IPC EXPORT_SYMBOL 0xce64e9f3 intel_ipc_msg_data sound/soc/sof/intel/snd-sof-intel-ipc -SND_SOC_SOF_PCI_DEV EXPORT_SYMBOL 0x0d095657 sof_pci_shutdown sound/soc/sof/snd-sof-pci -SND_SOC_SOF_PCI_DEV EXPORT_SYMBOL 0x27378fcb sof_pci_pm sound/soc/sof/snd-sof-pci -SND_SOC_SOF_PCI_DEV EXPORT_SYMBOL 0x7d70e6e3 sof_pci_probe sound/soc/sof/snd-sof-pci -SND_SOC_SOF_PCI_DEV EXPORT_SYMBOL 0xeee6a298 sof_pci_remove sound/soc/sof/snd-sof-pci -SND_SOC_SOF_XTENSA EXPORT_SYMBOL 0x2891243d sof_xtensa_arch_ops sound/soc/sof/xtensa/snd-sof-xtensa-dsp -SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0x5a5e804a sdw_intel_probe drivers/soundwire/soundwire-intel +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x30593f71 sof_apl_ops sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x459ddf9f sof_cnl_ops sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x4f4077bb apl_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x64258538 tgl_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x75d4a399 icl_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x9dd8ed28 adls_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0xa67ba27e sof_tgl_ops sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0xb58aa297 sof_icl_ops sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0xb8e88d17 ehl_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0xbdb22098 jsl_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0xcbfdd0a7 hda_pci_intel_probe sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0xe0cf197c cnl_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0xebd6a0c5 tglh_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HIFI_EP_IPC EXPORT_SYMBOL 0x376f1a81 intel_pcm_open sound/soc/sof/intel/snd-sof-intel-ipc +SND_SOC_SOF_INTEL_HIFI_EP_IPC EXPORT_SYMBOL 0x6086937b intel_ipc_pcm_params sound/soc/sof/intel/snd-sof-intel-ipc +SND_SOC_SOF_INTEL_HIFI_EP_IPC EXPORT_SYMBOL 0x6bda82cb intel_pcm_close sound/soc/sof/intel/snd-sof-intel-ipc +SND_SOC_SOF_INTEL_HIFI_EP_IPC EXPORT_SYMBOL 0xf15e0274 intel_ipc_msg_data sound/soc/sof/intel/snd-sof-intel-ipc +SND_SOC_SOF_PCI_DEV EXPORT_SYMBOL 0x61797f35 sof_pci_remove sound/soc/sof/snd-sof-pci +SND_SOC_SOF_PCI_DEV EXPORT_SYMBOL 0x9ec8a956 sof_pci_shutdown sound/soc/sof/snd-sof-pci +SND_SOC_SOF_PCI_DEV EXPORT_SYMBOL 0xa7c1ec81 sof_pci_pm sound/soc/sof/snd-sof-pci +SND_SOC_SOF_PCI_DEV EXPORT_SYMBOL 0xbe5e1b86 sof_pci_probe sound/soc/sof/snd-sof-pci +SND_SOC_SOF_XTENSA EXPORT_SYMBOL 0x8a169059 sof_xtensa_arch_ops sound/soc/sof/xtensa/snd-sof-xtensa-dsp +SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0x1a3ea506 sdw_intel_exit drivers/soundwire/soundwire-intel +SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0x22c2776d sdw_intel_startup drivers/soundwire/soundwire-intel SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0x5af438eb sdw_intel_enable_irq drivers/soundwire/soundwire-intel -SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0x7356fe46 sdw_intel_exit drivers/soundwire/soundwire-intel +SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0x95a3eaa9 sdw_intel_probe drivers/soundwire/soundwire-intel SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0xaa52eba1 sdw_intel_thread drivers/soundwire/soundwire-intel -SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0xc48e8de9 sdw_intel_startup drivers/soundwire/soundwire-intel -SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0xec97949e sdw_intel_process_wakeen_event drivers/soundwire/soundwire-intel +SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0xd7ccb8fd sdw_intel_process_wakeen_event drivers/soundwire/soundwire-intel 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 0x13c5b144 usb_stor_reset_resume drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x1a2e78ff usb_stor_bulk_transfer_buf 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 0x21a00998 usb_stor_CB_transport drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x48020efa usb_stor_Bulk_transport drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x535ce72f usb_stor_ctrl_transfer drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x5ca42acb usb_stor_clear_halt drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x8a16c5b2 usb_stor_CB_reset drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x94468189 usb_stor_suspend drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x98e9d7e1 usb_stor_disconnect drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x9e77aea9 usb_stor_set_xfer_buf drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x9eca3def usb_stor_transparent_scsi_command drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xaaad76dd usb_stor_bulk_srb drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xab8b9ca1 usb_stor_Bulk_reset drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xaded1cbe usb_stor_bulk_transfer_sg drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xb48f9cbd usb_stor_probe2 drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xb4f0ec04 usb_stor_probe1 drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xb7a43bee usb_stor_pre_reset drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xc51153ff fill_inquiry_response drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xcc41ef3f usb_stor_control_msg drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xd7dca388 usb_stor_bulk_transfer_buf drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xdc2899f8 usb_stor_access_xfer_buf drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xe278f88c usb_stor_adjust_quirks drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xe90bf8d5 usb_stor_host_template_init drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xeb4bd579 usb_stor_post_reset drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xfecf1a5b usb_stor_resume drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x1dc4dca4 fill_inquiry_response drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x216c530f usb_stor_CB_transport drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x36f14194 usb_stor_ctrl_transfer drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x3dd2bbdd usb_stor_post_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x42ea99c8 usb_stor_adjust_quirks drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x487a363a usb_stor_clear_halt drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x50812177 usb_stor_CB_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x569316ed usb_stor_reset_resume drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x6a359924 usb_stor_probe2 drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x6c297f2b usb_stor_suspend drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x6c4b0fca usb_stor_pre_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x7625da0b usb_stor_bulk_srb drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x7a7f69d3 usb_stor_host_template_init drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x7baa2522 usb_stor_Bulk_transport drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x8756e1f0 usb_stor_disconnect drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xa1a5079e usb_stor_probe1 drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xb2eda192 usb_stor_access_xfer_buf drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xb36e7836 usb_stor_Bulk_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xb432da3f usb_stor_transparent_scsi_command drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xc579f7c2 usb_stor_bulk_transfer_sg drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xcc2dd978 usb_stor_control_msg drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xd146af52 usb_stor_set_xfer_buf drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xfcc89252 usb_stor_resume drivers/usb/storage/usb-storage diff -u linux-intel-iotg-5.15-5.15.0/debian.intel-iotg/abi/amd64/intel-iotg.modules linux-intel-iotg-5.15-5.15.0/debian.intel-iotg/abi/amd64/intel-iotg.modules --- linux-intel-iotg-5.15-5.15.0/debian.intel-iotg/abi/amd64/intel-iotg.modules +++ linux-intel-iotg-5.15-5.15.0/debian.intel-iotg/abi/amd64/intel-iotg.modules @@ -261,9 +261,9 @@ adv_swbutton advansys advantechwdt -adxl34x -adxl34x-i2c -adxl34x-spi +adxl345_core +adxl345_i2c +adxl345_spi adxl372 adxl372_i2c adxl372_spi @@ -1354,6 +1354,7 @@ et131x et8ek8 etas_es58x +eth-ishtp ethoc eurotechwdt evbug @@ -1609,6 +1610,7 @@ gpio-it87 gpio-janz-ttl gpio-kempld +gpio-ljca gpio-lp3943 gpio-lp873x gpio-madera @@ -1896,6 +1898,7 @@ hih6130 hinic hisi-spmi-controller +hm11b1 hmc425a hmc5843_core hmc5843_i2c @@ -1971,6 +1974,7 @@ i2c-isch i2c-ismt i2c-kempld +i2c-ljca i2c-matroxfb i2c-mlxcpld i2c-mux @@ -2138,6 +2142,9 @@ int51x1 intel-cstate intel-hid +intel-ipu6 +intel-ipu6-isys +intel-ipu6-psys intel-ish-ipc intel-ishtp intel-ishtp-hid @@ -2200,6 +2207,7 @@ intel_th_pti intel_th_sth intel_vr_nor +intel_vsc intelfb interact interrupt-cnt @@ -2564,7 +2572,6 @@ libahci_platform libarc4 libblake2s -libblake2s-generic libceph libchacha libchacha20poly1305 @@ -2596,6 +2603,7 @@ liquidio_vf lis3lv02d lis3lv02d_i2c +ljca lkkbd ll_temac llc @@ -2901,8 +2909,15 @@ mei mei-me mei-txe +mei-virtio +mei-vsc +mei_ace +mei_ace_debug +mei_csi +mei_dal mei_hdcp mei_phy +mei_pse mei_wdt melfas_mip4 memory-notifier-error-inject @@ -3453,7 +3468,10 @@ orinoco_usb oti6858 otm3225a +ov01a10 +ov01a1s ov02a10 +ov02c10 ov13858 ov2640 ov2659 @@ -3696,6 +3714,7 @@ poly1305-x86_64 poly1305_generic port100 +power_ctrl_logic powermate powr1220 ppa @@ -5016,6 +5035,7 @@ spi-dw-pci spi-gpio spi-lantiq-ssc +spi-ljca spi-lm70llp spi-loopback-test spi-mux diff -u linux-intel-iotg-5.15-5.15.0/debian.intel-iotg/abi/fwinfo linux-intel-iotg-5.15-5.15.0/debian.intel-iotg/abi/fwinfo --- linux-intel-iotg-5.15-5.15.0/debian.intel-iotg/abi/fwinfo +++ linux-intel-iotg-5.15-5.15.0/debian.intel-iotg/abi/fwinfo @@ -617,7 +617,9 @@ firmware: bnx2x/bnx2x-e2-7.13.21.0.fw firmware: brcm/bcm43xx-0.fw firmware: brcm/bcm43xx_hdr-0.fw +firmware: brcm/brcmfmac*-pcie.*.bin firmware: brcm/brcmfmac*-pcie.*.txt +firmware: brcm/brcmfmac*-pcie.txt firmware: brcm/brcmfmac*-sdio.*.bin firmware: brcm/brcmfmac*-sdio.*.txt firmware: brcm/brcmfmac43012-sdio.bin @@ -1024,6 +1026,8 @@ firmware: mellanox/mlxsw_spectrum-13.2008.2406.mfa2 firmware: mellanox/mlxsw_spectrum2-29.2008.2406.mfa2 firmware: mellanox/mlxsw_spectrum3-30.2008.2406.mfa2 +firmware: microchip/mscc_vsc8574_revb_int8051_29e8.bin +firmware: microchip/mscc_vsc8584_revb_int8051_fb48.bin firmware: mixart/miXart8.elf firmware: mixart/miXart8.xlx firmware: mixart/miXart8AES.xlx diff -u linux-intel-iotg-5.15-5.15.0/debian.intel-iotg/abi/version linux-intel-iotg-5.15-5.15.0/debian.intel-iotg/abi/version --- linux-intel-iotg-5.15-5.15.0/debian.intel-iotg/abi/version +++ linux-intel-iotg-5.15-5.15.0/debian.intel-iotg/abi/version @@ -1 +1 @@ -5.15.0-1005.7 +5.15.0-1014.19 diff -u linux-intel-iotg-5.15-5.15.0/debian.intel-iotg/changelog linux-intel-iotg-5.15-5.15.0/debian.intel-iotg/changelog --- linux-intel-iotg-5.15-5.15.0/debian.intel-iotg/changelog +++ linux-intel-iotg-5.15-5.15.0/debian.intel-iotg/changelog @@ -1,3 +1,2216 @@ +linux-intel-iotg (5.15.0-1015.20) jammy; urgency=medium + + * jammy/linux-intel-iotg: 5.15.0-1015.20 -proposed tracker (LP: #1983884) + + -- Philip Cox Wed, 31 Aug 2022 10:25:23 -0400 + +linux-intel-iotg (5.15.0-1014.19) jammy; urgency=medium + + * jammy/linux-intel-iotg: 5.15.0-1014.19 -proposed tracker (LP: #1983884) + + * Jammy update: v5.15.46 upstream stable release (LP: #1981864) + - [Packaging] intel-iotg: Move python3-dev to build-depends + + -- Philip Cox Mon, 29 Aug 2022 14:33:38 -0400 + +linux-intel-iotg (5.15.0-1014.18) jammy; urgency=medium + + * jammy/linux-intel-iotg: 5.15.0-1014.18 -proposed tracker (LP: #1983884) + + * Add IIO sensors ID for ACPI based platform (LP: #1962674) + - SAUCE: iio: accel: adxl345: Fix build errors + - [Config] updateconfigs for ADXL34x + - [Config] updateconfigs for ADXL34x + + * GPIO character device v1 API not enabled in kernel (LP: #1953613) + - [Config] Enable CONFIG_GPIO_CDEV_V1 + + * Jammy update: v5.15.46 upstream stable release (LP: #1981864) + - [Config] updateconfigs for IMA_TEMPLATE + + * Jammy update: v5.15.44 upstream stable release (LP: #1981649) + - [Config] updateconfigs for CRYPTO_LIB_BLAKE2S + + * [IOTG][EHL][ICL-D] Gstreamer media failures on Ubuntu 20.04 Desktop Alpha Image (LP: #1981971) + - SAUCE: drm/i915/gen11: Moving WAs to icl_gt_workarounds_init() + - SAUCE: (no-up) drm/i915: set enable_guc=2 for EHL, ICL, ADL-S platforms. + + * [EHL] Implement PWM support for Elkhart Lake (out-of-tree patches). (LP: #1964770) + - pwm: Enable D0i3 flow for PSE IOs + + * [TGL] EDAC support OOT patches (LP: #1964743) + - x86/mce: Add MCACOD code for generic I/O error + - EDAC/ieh: Add I/O device EDAC driver for Intel CPUs with IEH + - EDAC/ieh: Add I/O device EDAC support for Intel Tiger Lake-H SoC + - [Config] updateconfigs for EDAC IEH + + * [iotg][22.04LTS][server][CBRD] call trace message for dwmac_intel module. (LP: #1972136) + - net: stmmac: fix dma queue left shift overflow issue + + [ Ubuntu: 5.15.0-47.51 ] + + * jammy/linux: 5.15.0-47.51 -proposed tracker (LP: #1983903) + * Jammy update: v5.15.46 upstream stable release (LP: #1981864) + - UBUNTU: [Packaging] Move python3-dev to build-depends + * touchpad and touchscreen doesn't work at all on ACER Spin 5 (SP513-54N) + (LP: #1884232) + - x86/PCI: Eliminate remove_e820_regions() common subexpressions + - x86: Log resource clipping for E820 regions + - x86/PCI: Clip only host bridge windows for E820 regions + - x86/PCI: Add kernel cmdline options to use/ignore E820 reserved regions + - x86/PCI: Disable E820 reserved region clipping via quirks + - x86/PCI: Revert "x86/PCI: Clip only host bridge windows for E820 regions" + * [SRU][H/OEM-5.13/OEM-5.14/U][J/OEM-5.17/U] Fix invalid MAC address after + hotplug tbt dock (LP: #1942999) + - SAUCE: igc: wait for the MAC copy when enabled MAC passthrough + * Mass Storage Gadget driver truncates device >2TB (LP: #1981390) + - usb: gadget: storage: add support for media larger than 2T + * AMD Rembrandt: DP tunneling fails with Thunderbolt monitors (LP: #1983143) + - SAUCE: drm/amd: Fix DP Tunneling with Thunderbolt monitors + - drm/amd/display: Fix for dmub outbox notification enable + - Revert "drm/amd/display: Fix DPIA outbox timeout after S3/S4/reset" + - drm/amd/display: Reset link encoder assignments for GPU reset + - drm/amd/display: Fix DPIA outbox timeout after S3/S4/reset + - drm/amd/display: Fix new dmub notification enabling in DM + - SAUCE: thunderbolt: Add DP out resource when DP tunnel is discovered. + * Fix sub-optimal I210 network speed (LP: #1976438) + - igb: Make DMA faster when CPU is active on the PCIe link + * e1000e report hardware hang (LP: #1973104) + - e1000e: Enable GPT clock before sending message to CSME + - Revert "e1000e: Fix possible HW unit hang after an s0ix exit" + * ioam6.sh in net from ubuntu_kernel_selftests fails with 5.15 kernels in + Focal (LP: #1982930) + - selftests: net: fix IOAM test skip return code + * Additional fix for TGL + AUO panel flickering (LP: #1983297) + - Revert "UBUNTU: SAUCE: drm/i915/display/psr: Fix flicker on TGL + AUO panel" + - drm/i915/display: Fix sel fetch plane offset calculation + - drm/i915: Nuke ORIGIN_GTT + - drm/i915/display: Drop PSR support from HSW and BDW + - drm/i915/display/psr: Handle plane and pipe restrictions at every page flip + - drm/i915/display/psr: Do full fetch when handling multi-planar formats + - drm/i915/display: Drop unnecessary frontbuffer flushes + - drm/i915/display: Handle frontbuffer rendering when PSR2 selective fetch is + enabled + - drm/i915/display: Fix glitches when moving cursor with PSR2 selective fetch + enabled + - SAUCE: drm/i915/display/psr: Reinstate fix for TGL + AUO panel flicker + * AMD Yellow Carp DMCUB fw update for s0i3 B0 fixes (LP: #1957026) + - drm/amd/display: Optimize bandwidth on following fast update + - drm/amd/display: Fix surface optimization regression on Carrizo + - drm/amd/display: Reset DMCUB before HW init + * GPIO character device v1 API not enabled in kernel (LP: #1953613) + - [Config] Enable CONFIG_GPIO_CDEV_V1 + * intel_iommu: Fix enable intel_iommu, Ubuntu 22.04 installation crashes + (LP: #1982104) + - iommu/vt-d: Fix RID2PASID setup/teardown failure + * Headset mic with Cirrus logic codec doesn't work (LP: #1972815) + - ASoC: cs42l42: Move CS42L42 register descriptions to general include + - ALSA: hda/cs8409: Use general cs42l42 include in cs8409 hda driver + - ALSA: hda/cs8409: Support manual mode detection for CS42L42 + * Failed to resume from S3 blocked by atlantic driver[1d6a:94c0] + (LP: #1981950) + - net: atlantic: remove deep parameter on suspend/resume functions + - net: atlantic: remove aq_nic_deinit() when resume + * Make cm32181 sensor work after system suspend (LP: #1981773) + - iio: light: cm32181: Add PM support + * Clear PCI errors left from BIOS (LP: #1981173) + - PCI: Clear PCI_STATUS when setting up device + * Fix AMDGPU blank screen when Type-C DP alt is in use (LP: #1980060) + - drm/amd/display: Query DMCUB for dp alt status + - drm/amd/display: Add version check before using DP alt query interface + * Fix WD22TB4 suspend and resume, two external monitor can not output + (LP: #1979267) + - drm/dp/mst: Read the extended DPCD capabilities during system resume + * [SRU] bcache deadlock during read IO in writeback mode (LP: #1980925) + - bcache: memset on stack variables in bch_btree_check() and + bch_sectors_dirty_init() + * Audio mute key (f5) LED and Mic mute key (f8) LED are no function on HP + 440/450/640/650 G9 (LP: #1982716) + - ALSA: hda/realtek: fix mute/micmute LEDs for HP machines + * Enable WiFi hotspot feature for MediaTek MT7921 (LP: #1979173) + - mt76: mt7921: Add AP mode support + - mt76: mt7921: not support beacon offload disable command + - mt76: mt7921: fix command timeout in AP stop period + * Fix drm/amd/pm: enable ASPM by default (LP: #1966680) + - drm/amd: Refactor `amdgpu_aspm` to be evaluated per device + - drm/amd: Use amdgpu_device_should_use_aspm on navi umd pstate switching + - drm/amdgpu: vi: disable ASPM on Intel Alder Lake based systems + * Power cycle USB ports on shutdown/reboot (LP: #1976503) + - xhci: turn off port power in shutdown + * Jammy update: v5.15.46 upstream stable release (LP: #1981864) + - binfmt_flat: do not stop relocating GOT entries prematurely on riscv + - parisc/stifb: Implement fb_is_primary_device() + - parisc/stifb: Keep track of hardware path of graphics card + - RISC-V: Mark IORESOURCE_EXCLUSIVE for reserved mem instead of + IORESOURCE_BUSY + - riscv: Initialize thread pointer before calling C functions + - riscv: Fix irq_work when SMP is disabled + - riscv: Wire up memfd_secret in UAPI header + - riscv: Move alternative length validation into subsection + - ALSA: hda/realtek - Add new type for ALC245 + - ALSA: hda/realtek: Enable 4-speaker output for Dell XPS 15 9520 laptop + - ALSA: hda/realtek - Fix microphone noise on ASUS TUF B550M-PLUS + - ALSA: usb-audio: Cancel pending work at closing a MIDI substream + - USB: serial: option: add Quectel BG95 modem + - USB: new quirk for Dell Gen 2 devices + - usb: isp1760: Fix out-of-bounds array access + - usb: dwc3: gadget: Move null pinter check to proper place + - usb: core: hcd: Add support for deferring roothub registration + - fs/ntfs3: Update valid size if -EIOCBQUEUED + - fs/ntfs3: Fix fiemap + fix shrink file size (to remove preallocated space) + - fs/ntfs3: Keep preallocated only if option prealloc enabled + - fs/ntfs3: Check new size for limits + - fs/ntfs3: In function ntfs_set_acl_ex do not change inode->i_mode if called + from function ntfs_init_acl + - fs/ntfs3: Fix some memory leaks in an error handling path of 'log_replay()' + - fs/ntfs3: Update i_ctime when xattr is added + - fs/ntfs3: Restore ntfs_xattr_get_acl and ntfs_xattr_set_acl functions + - cifs: fix potential double free during failed mount + - cifs: when extending a file with falloc we should make files not-sparse + - xhci: Allow host runtime PM as default for Intel Alder Lake N xHCI + - platform/x86: intel-hid: fix _DSM function index handling + - x86/MCE/AMD: Fix memory leak when threshold_create_bank() fails + - perf/x86/intel: Fix event constraints for ICL + - x86/kexec: fix memory leak of elf header buffer + - x86/sgx: Set active memcg prior to shmem allocation + - ptrace/um: Replace PT_DTRACE with TIF_SINGLESTEP + - ptrace/xtensa: Replace PT_SINGLESTEP with TIF_SINGLESTEP + - ptrace: Reimplement PTRACE_KILL by always sending SIGKILL + - btrfs: add "0x" prefix for unsupported optional features + - btrfs: return correct error number for __extent_writepage_io() + - btrfs: repair super block num_devices automatically + - btrfs: fix the error handling for submit_extent_page() for + btrfs_do_readpage() + - iommu/vt-d: Add RPLS to quirk list to skip TE disabling + - drm/vmwgfx: validate the screen formats + - drm/virtio: fix NULL pointer dereference in virtio_gpu_conn_get_modes + - selftests/bpf: Fix vfs_link kprobe definition + - selftests/bpf: Fix parsing of prog types in UAPI hdr for bpftool sync + - mwifiex: add mutex lock for call in mwifiex_dfs_chan_sw_work_queue + - b43legacy: Fix assigning negative value to unsigned variable + - b43: Fix assigning negative value to unsigned variable + - ipw2x00: Fix potential NULL dereference in libipw_xmit() + - ipv6: fix locking issues with loops over idev->addr_list + - fbcon: Consistently protect deferred_takeover with console_lock() + - x86/platform/uv: Update TSC sync state for UV5 + - ACPICA: Avoid cache flush inside virtual machines + - mac80211: minstrel_ht: fix where rate stats are stored (fixes debugfs + output) + - drm/komeda: return early if drm_universal_plane_init() fails. + - drm/amd/display: Disabling Z10 on DCN31 + - rcu-tasks: Fix race in schedule and flush work + - rcu: Make TASKS_RUDE_RCU select IRQ_WORK + - sfc: ef10: Fix assigning negative value to unsigned variable + - ALSA: jack: Access input_dev under mutex + - spi: spi-rspi: Remove setting {src,dst}_{addr,addr_width} based on DMA + direction + - tools/power turbostat: fix ICX DRAM power numbers + - scsi: lpfc: Move cfg_log_verbose check before calling lpfc_dmp_dbg() + - scsi: lpfc: Fix SCSI I/O completion and abort handler deadlock + - scsi: lpfc: Fix call trace observed during I/O with CMF enabled + - cpuidle: PSCI: Improve support for suspend-to-RAM for PSCI OSI mode + - drm/amd/pm: fix double free in si_parse_power_table() + - ASoC: rsnd: care default case on rsnd_ssiu_busif_err_status_clear() + - ASoC: rsnd: care return value from rsnd_node_fixed_index() + - ath9k: fix QCA9561 PA bias level + - media: venus: hfi: avoid null dereference in deinit + - media: pci: cx23885: Fix the error handling in cx23885_initdev() + - media: cx25821: Fix the warning when removing the module + - md/bitmap: don't set sb values if can't pass sanity check + - mmc: jz4740: Apply DMA engine limits to maximum segment size + - drivers: mmc: sdhci_am654: Add the quirk to set TESTCD bit + - scsi: megaraid: Fix error check return value of register_chrdev() + - drm/amdgpu/sdma: Fix incorrect calculations of the wptr of the doorbells + - scsi: ufs: Use pm_runtime_resume_and_get() instead of pm_runtime_get_sync() + - scsi: lpfc: Fix resource leak in lpfc_sli4_send_seq_to_ulp() + - ath11k: disable spectral scan during spectral deinit + - ASoC: Intel: bytcr_rt5640: Add quirk for the HP Pro Tablet 408 + - drm/plane: Move range check for format_count earlier + - drm/amd/pm: fix the compile warning + - ath10k: skip ath10k_halt during suspend for driver state RESTARTING + - arm64: compat: Do not treat syscall number as ESR_ELx for a bad syscall + - drm: msm: fix error check return value of irq_of_parse_and_map() + - scsi: target: tcmu: Fix possible data corruption + - ipv6: Don't send rs packets to the interface of ARPHRD_TUNNEL + - net/mlx5: fs, delete the FTE when there are no rules attached to it + - ASoC: dapm: Don't fold register value changes into notifications + - mlxsw: spectrum_dcb: Do not warn about priority changes + - mlxsw: Treat LLDP packets as control + - drm/amdgpu/psp: move PSP memory alloc from hw_init to sw_init + - drm/amdgpu/ucode: Remove firmware load type check in amdgpu_ucode_free_bo + - regulator: mt6315: Enforce regulator-compatible, not name + - HID: bigben: fix slab-out-of-bounds Write in bigben_probe + - of: Support more than one crash kernel regions for kexec -s + - ASoC: tscs454: Add endianness flag in snd_soc_component_driver + - scsi: lpfc: Alter FPIN stat accounting logic + - net: remove two BUG() from skb_checksum_help() + - s390/preempt: disable __preempt_count_add() optimization for + PROFILE_ALL_BRANCHES + - perf/amd/ibs: Cascade pmu init functions' return value + - sched/core: Avoid obvious double update_rq_clock warning + - spi: stm32-qspi: Fix wait_cmd timeout in APM mode + - dma-debug: change allocation mode from GFP_NOWAIT to GFP_ATIOMIC + - ACPI: PM: Block ASUS B1400CEAE from suspend to idle by default + - ipmi:ssif: Check for NULL msg when handling events and messages + - ipmi: Fix pr_fmt to avoid compilation issues + - rtlwifi: Use pr_warn instead of WARN_ONCE + - mt76: mt7921: accept rx frames with non-standard VHT MCS10-11 + - mt76: fix encap offload ethernet type check + - media: rga: fix possible memory leak in rga_probe + - media: coda: limit frame interval enumeration to supported encoder frame + sizes + - media: hantro: HEVC: unconditionnaly set pps_{cb/cr}_qp_offset values + - media: ccs-core.c: fix failure to call clk_disable_unprepare + - media: imon: reorganize serialization + - media: cec-adap.c: fix is_configuring state + - usbnet: Run unregister_netdev() before unbind() again + - openrisc: start CPU timer early in boot + - nvme-pci: fix a NULL pointer dereference in nvme_alloc_admin_tags + - ASoC: rt5645: Fix errorenous cleanup order + - nbd: Fix hung on disconnect request if socket is closed before + - drm/amd/pm: update smartshift powerboost calc for smu12 + - drm/amd/pm: update smartshift powerboost calc for smu13 + - net: phy: micrel: Allow probing without .driver_data + - media: exynos4-is: Fix compile warning + - media: hantro: Stop using H.264 parameter pic_num + - ASoC: max98357a: remove dependency on GPIOLIB + - ASoC: rt1015p: remove dependency on GPIOLIB + - ACPI: CPPC: Assume no transition latency if no PCCT + - nvme: set non-mdts limits in nvme_scan_work + - can: mcp251xfd: silence clang's -Wunaligned-access warning + - x86/microcode: Add explicit CPU vendor dependency + - net: ipa: ignore endianness if there is no header + - m68k: atari: Make Atari ROM port I/O write macros return void + - rxrpc: Return an error to sendmsg if call failed + - rxrpc, afs: Fix selection of abort codes + - afs: Adjust ACK interpretation to try and cope with NAT + - eth: tg3: silence the GCC 12 array-bounds warning + - char: tpm: cr50_i2c: Suppress duplicated error message in .remove() + - selftests/bpf: fix btf_dump/btf_dump due to recent clang change + - gfs2: use i_lock spin_lock for inode qadata + - scsi: target: tcmu: Avoid holding XArray lock when calling lock_page + - IB/rdmavt: add missing locks in rvt_ruc_loopback + - ARM: dts: ox820: align interrupt controller node name with dtschema + - ARM: dts: socfpga: align interrupt controller node name with dtschema + - ARM: dts: s5pv210: align DMA channels with dtschema + - arm64: dts: qcom: msm8994: Fix the cont_splash_mem address + - arm64: dts: qcom: msm8994: Fix BLSP[12]_DMA channels count + - PM / devfreq: rk3399_dmc: Disable edev on remove() + - crypto: ccree - use fine grained DMA mapping dir + - soc: ti: ti_sci_pm_domains: Check for null return of devm_kcalloc + - fs: jfs: fix possible NULL pointer dereference in dbFree() + - arm64: dts: qcom: sdm845-xiaomi-beryllium: fix typo in panel's vddio-supply + property + - ALSA: usb-audio: Add quirk bits for enabling/disabling generic implicit fb + - ALSA: usb-audio: Move generic implicit fb quirk entries into quirks.c + - ARM: OMAP1: clock: Fix UART rate reporting algorithm + - powerpc/fadump: Fix fadump to work with a different endian capture kernel + - fat: add ratelimit to fat*_ent_bread() + - pinctrl: renesas: rzn1: Fix possible null-ptr-deref in + sh_pfc_map_resources() + - ARM: versatile: Add missing of_node_put in dcscb_init + - ARM: dts: exynos: add atmel,24c128 fallback to Samsung EEPROM + - ARM: hisi: Add missing of_node_put after of_find_compatible_node + - cpufreq: Avoid unnecessary frequency updates due to mismatch + - powerpc/rtas: Keep MSR[RI] set when calling RTAS + - PCI: Avoid pci_dev_lock() AB/BA deadlock with sriov_numvfs_store() + - KVM: PPC: Book3S HV Nested: L2 LPCR should inherit L1 LPES setting + - alpha: fix alloc_zeroed_user_highpage_movable() + - tracing: incorrect isolate_mote_t cast in mm_vmscan_lru_isolate + - powerpc/powernv/vas: Assign real address to rx_fifo in vas_rx_win_attr + - powerpc/xics: fix refcount leak in icp_opal_init() + - powerpc/powernv: fix missing of_node_put in uv_init() + - macintosh/via-pmu: Fix build failure when CONFIG_INPUT is disabled + - powerpc/iommu: Add missing of_node_put in iommu_init_early_dart + - smb3: check for null tcon + - RDMA/hfi1: Prevent panic when SDMA is disabled + - Input: gpio-keys - cancel delayed work only in case of GPIO + - drm: fix EDID struct for old ARM OABI format + - drm/bridge_connector: enable HPD by default if supported + - dt-bindings: display: sitronix, st7735r: Fix backlight in example + - drm/vmwgfx: Fix an invalid read + - ath11k: acquire ab->base_lock in unassign when finding the peer by addr + - drm: bridge: it66121: Fix the register page length + - ath9k: fix ar9003_get_eepmisc + - drm/edid: fix invalid EDID extension block filtering + - drm/bridge: adv7511: clean up CEC adapter when probe fails + - drm: bridge: icn6211: Fix register layout + - drm: bridge: icn6211: Fix HFP_HSW_HBP_HI and HFP_MIN handling + - mtd: spinand: gigadevice: fix Quad IO for GD5F1GQ5UExxG + - spi: qcom-qspi: Add minItems to interconnect-names + - ASoC: mediatek: Fix error handling in mt8173_max98090_dev_probe + - ASoC: mediatek: Fix missing of_node_put in mt2701_wm8960_machine_probe + - x86/delay: Fix the wrong asm constraint in delay_loop() + - drm/vc4: hvs: Fix frame count register readout + - drm/mediatek: Fix mtk_cec_mask() + - drm/vc4: hvs: Reset muxes at probe time + - drm/vc4: txp: Don't set TXP_VSTART_AT_EOF + - drm/vc4: txp: Force alpha to be 0xff if it's disabled + - libbpf: Don't error out on CO-RE relos for overriden weak subprogs + - x86/PCI: Fix ALi M1487 (IBC) PIRQ router link value interpretation + - mptcp: reset the packet scheduler on PRIO change + - nl80211: show SSID for P2P_GO interfaces + - drm/komeda: Fix an undefined behavior bug in komeda_plane_add() + - drm: mali-dp: potential dereference of null pointer + - spi: spi-ti-qspi: Fix return value handling of wait_for_completion_timeout + - scftorture: Fix distribution of short handler delays + - net: dsa: mt7530: 1G can also support 1000BASE-X link mode + - ixp4xx_eth: fix error check return value of platform_get_irq() + - NFC: NULL out the dev->rfkill to prevent UAF + - efi: Add missing prototype for efi_capsule_setup_info + - device property: Check fwnode->secondary when finding properties + - device property: Allow error pointer to be passed to fwnode APIs + - target: remove an incorrect unmap zeroes data deduction + - drbd: fix duplicate array initializer + - EDAC/dmc520: Don't print an error for each unconfigured interrupt line + - mtd: rawnand: denali: Use managed device resources + - HID: hid-led: fix maximum brightness for Dream Cheeky + - HID: elan: Fix potential double free in elan_input_configured + - drm/bridge: Fix error handling in analogix_dp_probe + - regulator: da9121: Fix uninit-value in da9121_assign_chip_model() + - drm/mediatek: dpi: Use mt8183 output formats for mt8192 + - signal: Deliver SIGTRAP on perf event asynchronously if blocked + - sched/fair: Fix cfs_rq_clock_pelt() for throttled cfs_rq + - sched/psi: report zeroes for CPU full at the system level + - spi: img-spfi: Fix pm_runtime_get_sync() error checking + - cpufreq: Fix possible race in cpufreq online error path + - printk: use atomic updates for klogd work + - printk: add missing memory barrier to wake_up_klogd() + - printk: wake waiters for safe and NMI contexts + - ath9k_htc: fix potential out of bounds access with invalid + rxstatus->rs_keyix + - media: i2c: max9286: Use dev_err_probe() helper + - media: i2c: max9286: Use "maxim,gpio-poc" property + - media: i2c: max9286: fix kernel oops when removing module + - media: hantro: Empty encoder capture buffers by default + - drm/panel: simple: Add missing bus flags for Innolux G070Y2-L01 + - ALSA: pcm: Check for null pointer of pointer substream before dereferencing + it + - mtdblock: warn if opened on NAND + - inotify: show inotify mask flags in proc fdinfo + - fsnotify: fix wrong lockdep annotations + - spi: rockchip: Stop spi slave dma receiver when cs inactive + - spi: rockchip: Preset cs-high and clk polarity in setup progress + - spi: rockchip: fix missing error on unsupported SPI_CS_HIGH + - of: overlay: do not break notify on NOTIFY_{OK|STOP} + - selftests/damon: add damon to selftests root Makefile + - drm/msm/dp: Modify prototype of encoder based API + - drm/msm/hdmi: switch to drm_bridge_connector + - drm/msm/dpu: adjust display_v_end for eDP and DP + - scsi: iscsi: Fix harmless double shift bug + - scsi: ufs: qcom: Fix ufs_qcom_resume() + - scsi: ufs: core: Exclude UECxx from SFR dump list + - drm/v3d: Fix null pointer dereference of pointer perfmon + - selftests/resctrl: Fix null pointer dereference on open failed + - libbpf: Fix logic for finding matching program for CO-RE relocation + - mtd: spi-nor: core: Check written SR value in + spi_nor_write_16bit_sr_and_check() + - x86/pm: Fix false positive kmemleak report in msr_build_context() + - mtd: rawnand: cadence: fix possible null-ptr-deref in + cadence_nand_dt_probe() + - mtd: rawnand: intel: fix possible null-ptr-deref in ebu_nand_probe() + - x86/speculation: Add missing prototype for unpriv_ebpf_notify() + - ASoC: rk3328: fix disabling mclk on pclk probe failure + - perf tools: Add missing headers needed by util/data.h + - drm/msm/disp/dpu1: set vbif hw config to NULL to avoid use after memory free + during pm runtime resume + - drm/msm/dp: stop event kernel thread when DP unbind + - drm/msm/dp: fix error check return value of irq_of_parse_and_map() + - drm/msm/dp: reset DP controller before transmit phy test pattern + - drm/msm/dp: do not stop transmitting phy test pattern during DP phy + compliance test + - drm/msm/dsi: fix error checks and return values for DSI xmit functions + - drm/msm/hdmi: check return value after calling + platform_get_resource_byname() + - drm/msm/hdmi: fix error check return value of irq_of_parse_and_map() + - drm/msm: add missing include to msm_drv.c + - drm/panel: panel-simple: Fix proper bpc for AM-1280800N3TZQW-T00H + - kunit: fix debugfs code to use enum kunit_status, not bool + - drm/rockchip: vop: fix possible null-ptr-deref in vop_bind() + - spi: cadence-quadspi: fix Direct Access Mode disable for SoCFPGA + - [Packaging] add python3-dev as build dependency + - perf tools: Use Python devtools for version autodetection rather than + runtime + - virtio_blk: fix the discard_granularity and discard_alignment queue limits + - nl80211: don't hold RTNL in color change request + - x86: Fix return value of __setup handlers + - irqchip/exiu: Fix acknowledgment of edge triggered interrupts + - irqchip/aspeed-i2c-ic: Fix irq_of_parse_and_map() return value + - irqchip/aspeed-scu-ic: Fix irq_of_parse_and_map() return value + - x86/mm: Cleanup the control_va_addr_alignment() __setup handler + - arm64: fix types in copy_highpage() + - regulator: core: Fix enable_count imbalance with EXCLUSIVE_GET + - drm/msm/dsi: fix address for second DSI PHY on SDM660 + - drm/msm/dp: fix event thread stuck in wait_event after kthread_stop() + - drm/msm/mdp5: Return error code in mdp5_pipe_release when deadlock is + detected + - drm/msm/mdp5: Return error code in mdp5_mixer_release when deadlock is + detected + - drm/msm: return an error pointer in msm_gem_prime_get_sg_table() + - media: uvcvideo: Fix missing check to determine if element is found in list + - arm64: stackleak: fix current_top_of_stack() + - iomap: iomap_write_failed fix + - spi: spi-fsl-qspi: check return value after calling + platform_get_resource_byname() + - Revert "cpufreq: Fix possible race in cpufreq online error path" + - regulator: qcom_smd: Fix up PM8950 regulator configuration + - samples: bpf: Don't fail for a missing VMLINUX_BTF when VMLINUX_H is + provided + - perf/amd/ibs: Use interrupt regs ip for stack unwinding + - ath11k: Don't check arvif->is_started before sending management frames + - wilc1000: fix crash observed in AP mode with cfg80211_register_netdevice() + - HID: amd_sfh: Modify the bus name + - HID: amd_sfh: Modify the hid name + - ASoC: fsl: Use dev_err_probe() helper + - ASoC: fsl: Fix refcount leak in imx_sgtl5000_probe + - ASoC: imx-hdmi: Fix refcount leak in imx_hdmi_probe + - ASoC: mxs-saif: Fix refcount leak in mxs_saif_probe + - regulator: pfuze100: Fix refcount leak in pfuze_parse_regulators_dt + - dma-direct: factor out a helper for DMA_ATTR_NO_KERNEL_MAPPING allocations + - dma-direct: don't fail on highmem CMA pages in dma_direct_alloc_pages + - ASoC: samsung: Use dev_err_probe() helper + - ASoC: samsung: Fix refcount leak in aries_audio_probe + - block: Fix the bio.bi_opf comment + - kselftest/cgroup: fix test_stress.sh to use OUTPUT dir + - scripts/faddr2line: Fix overlapping text section failures + - media: aspeed: Fix an error handling path in aspeed_video_probe() + - media: exynos4-is: Fix PM disable depth imbalance in fimc_is_probe + - mt76: mt7921: Fix the error handling path of mt7921_pci_probe() + - mt76: do not attempt to reorder received 802.3 packets without agg session + - media: st-delta: Fix PM disable depth imbalance in delta_probe + - media: atmel: atmel-isc: Fix PM disable depth imbalance in atmel_isc_probe + - media: i2c: rdacm2x: properly set subdev entity function + - media: exynos4-is: Change clk_disable to clk_disable_unprepare + - media: pvrusb2: fix array-index-out-of-bounds in pvr2_i2c_core_init + - media: vsp1: Fix offset calculation for plane cropping + - media: atmel: atmel-sama5d2-isc: fix wrong mask in YUYV format check + - media: hantro: HEVC: Fix tile info buffer value computation + - Bluetooth: fix dangling sco_conn and use-after-free in sco_sock_timeout + - Bluetooth: use hdev lock in activate_scan for hci_is_adv_monitoring + - Bluetooth: use hdev lock for accept_list and reject_list in conn req + - nvme: set dma alignment to dword + - m68k: math-emu: Fix dependencies of math emulation support + - sctp: read sk->sk_bound_dev_if once in sctp_rcv() + - net: hinic: add missing destroy_workqueue in hinic_pf_to_mgmt_init + - ASoC: ti: j721e-evm: Fix refcount leak in j721e_soc_probe_* + - kselftest/arm64: bti: force static linking + - media: ov7670: remove ov7670_power_off from ov7670_remove + - media: i2c: ov5648: fix wrong pointer passed to IS_ERR() and PTR_ERR() + - media: staging: media: rkvdec: Make use of the helper function + devm_platform_ioremap_resource() + - media: rkvdec: h264: Fix dpb_valid implementation + - media: rkvdec: h264: Fix bit depth wrap in pps packet + - regulator: scmi: Fix refcount leak in scmi_regulator_probe + - ext4: reject the 'commit' option on ext2 filesystems + - drm/msm/a6xx: Fix refcount leak in a6xx_gpu_init + - drm: msm: fix possible memory leak in mdp5_crtc_cursor_set() + - x86/sev: Annotate stack change in the #VC handler + - drm/msm: don't free the IRQ if it was not requested + - selftests/bpf: Add missed ima_setup.sh in Makefile + - drm/msm/dpu: handle pm_runtime_get_sync() errors in bind path + - drm/i915: Fix CFI violation with show_dynamic_id() + - thermal/drivers/bcm2711: Don't clamp temperature at zero + - thermal/drivers/broadcom: Fix potential NULL dereference in sr_thermal_probe + - thermal/core: Fix memory leak in __thermal_cooling_device_register() + - thermal/drivers/imx_sc_thermal: Fix refcount leak in imx_sc_thermal_probe + - bfq: Relax waker detection for shared queues + - bfq: Allow current waker to defend against a tentative one + - ASoC: wm2000: fix missing clk_disable_unprepare() on error in + wm2000_anc_transition() + - PM: domains: Fix initialization of genpd's next_wakeup + - net: macb: Fix PTP one step sync support + - NFC: hci: fix sleep in atomic context bugs in nfc_hci_hcp_message_tx + - ASoC: max98090: Move check for invalid values before casting in + max98090_put_enab_tlv() + - net: stmmac: selftests: Use kcalloc() instead of kzalloc() + - net: stmmac: fix out-of-bounds access in a selftest + - hv_netvsc: Fix potential dereference of NULL pointer + - hwmon: (pmbus) Check PEC support before reading other registers + - rxrpc: Fix listen() setting the bar too high for the prealloc rings + - rxrpc: Don't try to resend the request if we're receiving the reply + - rxrpc: Fix overlapping ACK accounting + - rxrpc: Don't let ack.previousPacket regress + - rxrpc: Fix decision on when to generate an IDLE ACK + - net: huawei: hinic: Use devm_kcalloc() instead of devm_kzalloc() + - hinic: Avoid some over memory allocation + - net: dsa: restrict SMSC_LAN9303_I2C kconfig + - net/smc: postpone sk_refcnt increment in connect() + - dma-direct: factor out dma_set_{de,en}crypted helpers + - dma-direct: don't call dma_set_decrypted for remapped allocations + - dma-direct: always leak memory that can't be re-encrypted + - dma-direct: don't over-decrypt memory + - arm64: dts: rockchip: Move drive-impedance-ohm to emmc phy on rk3399 + - arm64: dts: mt8192: Fix nor_flash status disable typo + - memory: samsung: exynos5422-dmc: Avoid some over memory allocation + - ARM: dts: BCM5301X: update CRU block description + - ARM: dts: BCM5301X: Update pin controller node name + - ARM: dts: suniv: F1C100: fix watchdog compatible + - soc: qcom: smp2p: Fix missing of_node_put() in smp2p_parse_ipc + - soc: qcom: smsm: Fix missing of_node_put() in smsm_parse_ipc + - PCI: cadence: Fix find_first_zero_bit() limit + - PCI: rockchip: Fix find_first_zero_bit() limit + - PCI: mediatek: Fix refcount leak in mtk_pcie_subsys_powerup() + - PCI: dwc: Fix setting error return on MSI DMA mapping failure + - ARM: dts: ci4x10: Adapt to changes in imx6qdl.dtsi regarding fec clocks + - soc: qcom: llcc: Add MODULE_DEVICE_TABLE() + - KVM: nVMX: Leave most VM-Exit info fields unmodified on failed VM-Entry + - KVM: nVMX: Clear IDT vectoring on nested VM-Exit for double/triple fault + - crypto: qat - set CIPHER capability for QAT GEN2 + - crypto: qat - set COMPRESSION capability for QAT GEN2 + - crypto: qat - set CIPHER capability for DH895XCC + - crypto: qat - set COMPRESSION capability for DH895XCC + - platform/chrome: cros_ec: fix error handling in cros_ec_register() + - ARM: dts: imx6dl-colibri: Fix I2C pinmuxing + - platform/chrome: Re-introduce cros_ec_cmd_xfer and use it for ioctls + - can: xilinx_can: mark bit timing constants as const + - ARM: dts: stm32: Fix PHY post-reset delay on Avenger96 + - ARM: dts: bcm2835-rpi-zero-w: Fix GPIO line name for Wifi/BT + - ARM: dts: bcm2837-rpi-cm3-io3: Fix GPIO line names for SMPS I2C + - ARM: dts: bcm2837-rpi-3-b-plus: Fix GPIO line name of power LED + - ARM: dts: bcm2835-rpi-b: Fix GPIO line names + - misc: ocxl: fix possible double free in ocxl_file_register_afu + - crypto: marvell/cesa - ECB does not IV + - gpiolib: of: Introduce hook for missing gpio-ranges + - pinctrl: bcm2835: implement hook for missing gpio-ranges + - arm: mediatek: select arch timer for mt7629 + - pinctrl/rockchip: support deferring other gpio params + - pinctrl: mediatek: mt8195: enable driver on mtk platforms + - arm64: dts: qcom: qrb5165-rb5: Fix can-clock node name + - Drivers: hv: vmbus: Fix handling of messages with transaction ID of zero + - powerpc/fadump: fix PT_LOAD segment for boot memory area + - mfd: ipaq-micro: Fix error check return value of platform_get_irq() + - scsi: fcoe: Fix Wstringop-overflow warnings in fcoe_wwn_from_mac() + - soc: bcm: Check for NULL return of devm_kzalloc() + - arm64: dts: ti: k3-am64-mcu: remove incorrect UART base clock rates + - ASoC: sh: rz-ssi: Check return value of pm_runtime_resume_and_get() + - ASoC: sh: rz-ssi: Propagate error codes returned from + platform_get_irq_byname() + - ASoC: sh: rz-ssi: Release the DMA channels in rz_ssi_probe() error path + - firmware: arm_scmi: Fix list protocols enumeration in the base protocol + - nvdimm: Fix firmware activation deadlock scenarios + - nvdimm: Allow overwrite in the presence of disabled dimms + - pinctrl: mvebu: Fix irq_of_parse_and_map() return value + - drivers/base/node.c: fix compaction sysfs file leak + - dax: fix cache flush on PMD-mapped pages + - drivers/base/memory: fix an unlikely reference counting issue in + __add_memory_block() + - firmware: arm_ffa: Fix uuid parameter to ffa_partition_probe + - firmware: arm_ffa: Remove incorrect assignment of driver_data + - list: introduce list_is_head() helper and re-use it in list.h + - list: fix a data-race around ep->rdllist + - drm/msm/dpu: fix error check return value of irq_of_parse_and_map() + - powerpc/8xx: export 'cpm_setbrg' for modules + - pinctrl: renesas: r8a779a0: Fix GPIO function on I2C-capable pins + - pinctrl: renesas: core: Fix possible null-ptr-deref in + sh_pfc_map_resources() + - powerpc/idle: Fix return value of __setup() handler + - powerpc/4xx/cpm: Fix return value of __setup() handler + - RDMA/hns: Add the detection for CMDQ status in the device initialization + process + - arm64: dts: marvell: espressobin-ultra: fix SPI-NOR config + - arm64: dts: marvell: espressobin-ultra: enable front USB3 port + - ASoC: atmel-pdmic: Remove endianness flag on pdmic component + - ASoC: atmel-classd: Remove endianness flag on class d component + - proc: fix dentry/inode overinstantiating under /proc/${pid}/net + - ipc/mqueue: use get_tree_nodev() in mqueue_get_tree() + - PCI: imx6: Fix PERST# start-up sequence + - tty: fix deadlock caused by calling printk() under tty_port->lock + - crypto: sun8i-ss - rework handling of IV + - crypto: sun8i-ss - handle zero sized sg + - crypto: cryptd - Protect per-CPU resource by disabling BH. + - ARM: dts: at91: sama7g5: remove interrupt-parent from gic node + - hugetlbfs: fix hugetlbfs_statfs() locking + - Input: sparcspkr - fix refcount leak in bbc_beep_probe + - PCI/AER: Clear MULTI_ERR_COR/UNCOR_RCV bits + - PCI: microchip: Fix potential race in interrupt handling + - hwrng: omap3-rom - fix using wrong clk_disable() in + omap_rom_rng_runtime_resume() + - powerpc/64: Only WARN if __pa()/__va() called with bad addresses + - powerpc/perf: Fix the threshold compare group constraint for power10 + - powerpc/perf: Fix the threshold compare group constraint for power9 + - macintosh: via-pmu and via-cuda need RTC_LIB + - powerpc/xive: Add some error handling code to 'xive_spapr_init()' + - powerpc/xive: Fix refcount leak in xive_spapr_init + - powerpc/fsl_rio: Fix refcount leak in fsl_rio_setup + - mfd: davinci_voicecodec: Fix possible null-ptr-deref davinci_vc_probe() + - nfsd: destroy percpu stats counters after reply cache shutdown + - mailbox: forward the hrtimer if not queued and under a lock + - RDMA/hfi1: Prevent use of lock before it is initialized + - KVM: LAPIC: Drop pending LAPIC timer injection when canceling the timer + - Input: stmfts - do not leave device disabled in stmfts_input_open + - OPP: call of_node_put() on error path in _bandwidth_supported() + - f2fs: support fault injection for dquot_initialize() + - f2fs: fix to do sanity check on inline_dots inode + - f2fs: fix dereference of stale list iterator after loop body + - iommu/amd: Enable swiotlb in all cases + - iommu/mediatek: Fix 2 HW sharing pgtable issue + - iommu/mediatek: Add list_del in mtk_iommu_remove + - iommu/mediatek: Remove clk_disable in mtk_iommu_remove + - iommu/mediatek: Add mutex for m4u_group and m4u_dom in data + - i2c: at91: use dma safe buffers + - cpufreq: mediatek: Use module_init and add module_exit + - cpufreq: mediatek: Unregister platform device on exit + - iommu/arm-smmu-v3-sva: Fix mm use-after-free + - MIPS: Loongson: Use hwmon_device_register_with_groups() to register hwmon + - iommu/mediatek: Fix NULL pointer dereference when printing dev_name + - i2c: at91: Initialize dma_buf in at91_twi_xfer() + - dmaengine: idxd: Fix the error handling path in idxd_cdev_register() + - NFS: Do not report EINTR/ERESTARTSYS as mapping errors + - NFS: fsync() should report filesystem errors over EINTR/ERESTARTSYS + - NFS: Don't report ENOSPC write errors twice + - NFS: Do not report flush errors in nfs_write_end() + - NFS: Don't report errors from nfs_pageio_complete() more than once + - NFSv4/pNFS: Do not fail I/O when we fail to allocate the pNFS layout + - NFS: Further fixes to the writeback error handling + - video: fbdev: clcdfb: Fix refcount leak in clcdfb_of_vram_setup + - dmaengine: stm32-mdma: remove GISR1 register + - dmaengine: stm32-mdma: fix chan initialization in stm32_mdma_irq_handler() + - iommu/amd: Increase timeout waiting for GA log enablement + - i2c: npcm: Fix timeout calculation + - i2c: npcm: Correct register access width + - i2c: npcm: Handle spurious interrupts + - i2c: rcar: fix PM ref counts in probe error paths + - perf build: Fix btf__load_from_kernel_by_id() feature check + - perf c2c: Use stdio interface if slang is not supported + - perf jevents: Fix event syntax error caused by ExtSel + - video: fbdev: vesafb: Fix a use-after-free due early fb_info cleanup + - NFS: Always initialise fattr->label in nfs_fattr_alloc() + - NFS: Create a new nfs_alloc_fattr_with_label() function + - NFS: Convert GFP_NOFS to GFP_KERNEL + - NFSv4.1 mark qualified async operations as MOVEABLE tasks + - f2fs: fix to avoid f2fs_bug_on() in dec_valid_node_count() + - f2fs: fix to do sanity check on block address in f2fs_do_zero_range() + - f2fs: fix to clear dirty inode in f2fs_evict_inode() + - f2fs: fix deadloop in foreground GC + - f2fs: don't need inode lock for system hidden quota + - f2fs: fix to do sanity check on total_data_blocks + - f2fs: don't use casefolded comparison for "." and ".." + - f2fs: fix fallocate to use file_modified to update permissions consistently + - f2fs: fix to do sanity check for inline inode + - wifi: mac80211: fix use-after-free in chanctx code + - iwlwifi: mvm: fix assert 1F04 upon reconfig + - fs-writeback: writeback_sb_inodes:Recalculate 'wrote' according skipped + pages + - efi: Do not import certificates from UEFI Secure Boot for T2 Macs + - bfq: Avoid false marking of bic as stably merged + - bfq: Avoid merging queues with different parents + - bfq: Split shared queues on move between cgroups + - bfq: Update cgroup information before merging bio + - bfq: Drop pointless unlock-lock pair + - bfq: Remove pointless bfq_init_rq() calls + - bfq: Track whether bfq_group is still online + - bfq: Get rid of __bio_blkcg() usage + - bfq: Make sure bfqg for which we are queueing requests is online + - ext4: mark group as trimmed only if it was fully scanned + - ext4: fix use-after-free in ext4_rename_dir_prepare + - ext4: fix race condition between ext4_write and ext4_convert_inline_data + - ext4: fix warning in ext4_handle_inode_extension + - ext4: fix bug_on in ext4_writepages + - ext4: filter out EXT4_FC_REPLAY from on-disk superblock field s_state + - ext4: fix bug_on in __es_tree_search + - ext4: verify dir block before splitting it + - ext4: avoid cycles in directory h-tree + - ACPI: property: Release subnode properties with data nodes + - tty: goldfish: Introduce gf_ioread32()/gf_iowrite32() + - tracing: Fix potential double free in create_var_ref() + - tracing: Initialize integer variable to prevent garbage return value + - drm/amdgpu: add beige goby PCI ID + - PCI/PM: Fix bridge_d3_blacklist[] Elo i2 overwrite of Gigabyte X299 + - PCI: qcom: Fix runtime PM imbalance on probe errors + - PCI: qcom: Fix unbalanced PHY init on probe errors + - staging: r8188eu: prevent ->Ssid overflow in rtw_wx_set_scan() + - mm, compaction: fast_find_migrateblock() should return pfn in the target + zone + - s390/perf: obtain sie_block from the right address + - s390/stp: clock_delta should be signed + - dlm: fix plock invalid read + - dlm: uninitialized variable on error in dlm_listen_for_all() + - dlm: fix missing lkb refcount handling + - ocfs2: dlmfs: fix error handling of user_dlm_destroy_lock + - scsi: dc395x: Fix a missing check on list iterator + - scsi: ufs: qcom: Add a readl() to make sure ref_clk gets enabled + - landlock: Add clang-format exceptions + - landlock: Format with clang-format + - selftests/landlock: Add clang-format exceptions + - selftests/landlock: Normalize array assignment + - selftests/landlock: Format with clang-format + - samples/landlock: Add clang-format exceptions + - samples/landlock: Format with clang-format + - landlock: Fix landlock_add_rule(2) documentation + - selftests/landlock: Make tests build with old libc + - selftests/landlock: Extend tests for minimal valid attribute size + - selftests/landlock: Add tests for unknown access rights + - selftests/landlock: Extend access right tests to directories + - selftests/landlock: Fully test file rename with "remove" access + - selftests/landlock: Add tests for O_PATH + - landlock: Change landlock_add_rule(2) argument check ordering + - landlock: Change landlock_restrict_self(2) check ordering + - selftests/landlock: Test landlock_create_ruleset(2) argument check ordering + - landlock: Define access_mask_t to enforce a consistent access mask size + - landlock: Reduce the maximum number of layers to 16 + - landlock: Create find_rule() from unmask_layers() + - landlock: Fix same-layer rule unions + - drm/amdgpu/cs: make commands with 0 chunks illegal behaviour. + - drm/nouveau/subdev/bus: Ratelimit logging for fault errors + - drm/etnaviv: check for reaped mapping in etnaviv_iommu_unmap_gem + - drm/nouveau/clk: Fix an incorrect NULL check on list iterator + - drm/nouveau/kms/nv50-: atom: fix an incorrect NULL check on list iterator + - drm/bridge: analogix_dp: Grab runtime PM reference for DP-AUX + - drm/i915/dsi: fix VBT send packet port selection for ICL+ + - md: fix an incorrect NULL check in does_sb_need_changing + - md: fix an incorrect NULL check in md_reload_sb + - mtd: cfi_cmdset_0002: Move and rename + chip_check/chip_ready/chip_good_for_write + - mtd: cfi_cmdset_0002: Use chip_ready() for write on S29GL064N + - media: coda: Fix reported H264 profile + - media: coda: Add more H264 levels for CODA960 + - ima: remove the IMA_TEMPLATE Kconfig option + - [Config] updateconfigs for IMA_TEMPLATE + - Kconfig: Add option for asm goto w/ tied outputs to workaround clang-13 bug + - RDMA/hfi1: Fix potential integer multiplication overflow errors + - mmc: core: Allows to override the timeout value for ioctl() path + - csky: patch_text: Fixup last cpu should be master + - irqchip/armada-370-xp: Do not touch Performance Counter Overflow on A375, + A38x, A39x + - irqchip: irq-xtensa-mx: fix initial IRQ affinity + - thermal: devfreq_cooling: use local ops instead of global ops + - cfg80211: declare MODULE_FIRMWARE for regulatory.db + - mac80211: upgrade passive scan to active scan on DFS channels after beacon + rx + - um: Use asm-generic/dma-mapping.h + - um: chan_user: Fix winch_tramp() return value + - um: Fix out-of-bounds read in LDT setup + - kexec_file: drop weak attribute from arch_kexec_apply_relocations[_add] + - ftrace: Clean up hash direct_functions on register failures + - ksmbd: fix outstanding credits related bugs + - iommu/msm: Fix an incorrect NULL check on list iterator + - iommu/dma: Fix iova map result check bug + - Revert "mm/cma.c: remove redundant cma_mutex lock" + - mm/page_alloc: always attempt to allocate at least one page during bulk + allocation + - nodemask.h: fix compilation error with GCC12 + - hugetlb: fix huge_pmd_unshare address update + - mm/memremap: fix missing call to untrack_pfn() in pagemap_range() + - xtensa/simdisk: fix proc_read_simdisk() + - rtl818x: Prevent using not initialized queues + - ASoC: rt5514: Fix event generation for "DSP Voice Wake Up" control + - carl9170: tx: fix an incorrect use of list iterator + - stm: ltdc: fix two incorrect NULL checks on list iterator + - bcache: remove incremental dirty sector counting for + bch_sectors_dirty_init() + - bcache: avoid journal no-space deadlock by reserving 1 journal bucket + - serial: pch: don't overwrite xmit->buf[0] by x_char + - tilcdc: tilcdc_external: fix an incorrect NULL check on list iterator + - gma500: fix an incorrect NULL check on list iterator + - arm64: dts: qcom: ipq8074: fix the sleep clock frequency + - arm64: tegra: Add missing DFLL reset on Tegra210 + - clk: tegra: Add missing reset deassertion + - phy: qcom-qmp: fix struct clk leak on probe errors + - ARM: dts: s5pv210: Remove spi-cs-high on panel in Aries + - ARM: pxa: maybe fix gpio lookup tables + - SMB3: EBADF/EIO errors in rename/open caused by race condition in + smb2_compound_op + - docs/conf.py: Cope with removal of language=None in Sphinx 5.0.0 + - dt-bindings: gpio: altera: correct interrupt-cells + - vdpasim: allow to enable a vq repeatedly + - blk-iolatency: Fix inflight count imbalances and IO hangs on offline + - coresight: core: Fix coresight device probe failure issue + - phy: qcom-qmp: fix reset-controller leak on probe errors + - net: ipa: fix page free in ipa_endpoint_trans_release() + - net: ipa: fix page free in ipa_endpoint_replenish_one() + - kseltest/cgroup: Make test_stress.sh work if run interactively + - list: test: Add a test for list_is_head() + - staging: r8188eu: delete rtw_wx_read/write32() + - RDMA/hns: Remove the num_cqc_timer variable + - RDMA/rxe: Generate a completion for unsupported/invalid opcode + - MIPS: IP27: Remove incorrect `cpu_has_fpu' override + - MIPS: IP30: Remove incorrect `cpu_has_fpu' override + - ext4: only allow test_dummy_encryption when supported + - interconnect: qcom: sc7180: Drop IP0 interconnects + - interconnect: qcom: icc-rpmh: Add BCMs to commit list in pre_aggregate + - fs: add two trivial lookup helpers + - exportfs: support idmapped mounts + - fs/ntfs3: Fix invalid free in log_replay + - md: Don't set mddev private to NULL in raid0 pers->free + - md: fix double free of io_acct_set bioset + - md: bcache: check the return value of kzalloc() in detached_dev_do_request() + - pinctrl/rockchip: support setting input-enable param + - block: fix bio_clone_blkg_association() to associate with proper blkcg_gq + - Linux 5.15.46 + * [SRU] bcache deadlock during read IO in writeback mode (LP: #1980925) // + Jammy update: v5.15.46 upstream stable release (LP: #1981864) + - bcache: improve multithreaded bch_btree_check() + - bcache: improve multithreaded bch_sectors_dirty_init() + * Jammy update: v5.15.45 upstream stable release (LP: #1981862) + - ALSA: usb-audio: Don't get sample rate for MCT Trigger 5 USB-to-HDMI + - pinctrl: sunxi: fix f1c100s uart2 function + - KVM: arm64: Don't hypercall before EL2 init + - percpu_ref_init(): clean ->percpu_count_ref on failure + - net: af_key: check encryption module availability consistency + - nfc: pn533: Fix buggy cleanup order + - net: ftgmac100: Disable hardware checksum on AST2600 + - i2c: ismt: Provide a DMA buffer for Interrupt Cause Logging + - drivers: i2c: thunderx: Allow driver to work with ACPI defined TWSI + controllers + - i2c: ismt: prevent memory corruption in ismt_access() + - assoc_array: Fix BUG_ON during garbage collect + - pipe: make poll_usage boolean and annotate its access + - pipe: Fix missing lock in pipe_resize_ring() + - net: ipa: compute proper aggregation limit + - drm/i915: Fix -Wstringop-overflow warning in call to intel_read_wm_latency() + - exfat: check if cluster num is valid + - lib/crypto: add prompts back to crypto libraries + - crypto: drbg - prepare for more fine-grained tracking of seeding state + - crypto: drbg - track whether DRBG was seeded with !rng_is_initialized() + - crypto: drbg - move dynamic ->reseed_threshold adjustments to __drbg_seed() + - crypto: drbg - make reseeding from get_random_bytes() synchronous + - netfilter: nf_tables: hold mutex on netns pre_exit path + - netfilter: nf_tables: double hook unregistration in netns path + - netfilter: conntrack: re-fetch conntrack after insertion + - KVM: PPC: Book3S HV: fix incorrect NULL check on list iterator + - x86/kvm: Alloc dummy async #PF token outside of raw spinlock + - x86, kvm: use correct GFP flags for preemption disabled + - KVM: x86: avoid calling x86 emulator without a decoded instruction + - KVM: x86: Drop WARNs that assert a triple fault never "escapes" from L2 + - KVM: SVM: Use kzalloc for sev ioctl interfaces to prevent kernel data leak + - crypto: caam - fix i.MX6SX entropy delay value + - crypto: ecrdsa - Fix incorrect use of vli_cmp + - zsmalloc: fix races between asynchronous zspage free and page migration + - ALSA: usb-audio: Workaround for clock setup on TEAC devices + - ALSA: usb-audio: Add missing ep_idx in fixed EP quirks + - ALSA: usb-audio: Configure sync endpoints before data + - Bluetooth: hci_qca: Use del_timer_sync() before freeing + - ARM: dts: s5pv210: Correct interrupt name for bluetooth in Aries + - dm integrity: fix error code in dm_integrity_ctr() + - dm crypt: make printing of the key constant-time + - dm stats: add cond_resched when looping over entries + - dm verity: set DM_TARGET_IMMUTABLE feature flag + - raid5: introduce MD_BROKEN + - fs/ntfs3: validate BOOT sectors_per_clusters + - HID: multitouch: Add support for Google Whiskers Touchpad + - HID: multitouch: add quirks to enable Lenovo X12 trackpoint + - x86/sgx: Disconnect backing page references from dirty status + - x86/sgx: Mark PCMD page as dirty when modifying contents + - x86/sgx: Obtain backing storage page with enclave mutex held + - x86/sgx: Fix race between reclaimer and page fault handler + - x86/sgx: Ensure no data in PCMD page after truncate + - media: i2c: imx412: Fix reset GPIO polarity + - media: i2c: imx412: Fix power_off ordering + - tpm: Fix buffer access in tpm2_get_tpm_pt() + - tpm: ibmvtpm: Correct the return value in tpm_ibmvtpm_probe() + - docs: submitting-patches: Fix crossref to 'The canonical patch format' + - NFS: Memory allocation failures are not server fatal errors + - NFSD: Fix possible sleep during nfsd4_release_lockowner() + - bpf: Fix potential array overflow in bpf_trampoline_get_progs() + - bpf: Enlarge offset check value to INT_MAX in bpf_skb_{load,store}_bytes + - bpf: Fix excessive memory allocation in stack_map_alloc() + - bpf: Reject writes for PTR_TO_MAP_KEY in check_helper_mem_access + - bpf: Check PTR_TO_MEM | MEM_RDONLY in check_helper_mem_access + - ALSA: usb-audio: Optimize TEAC clock quirk + - Linux 5.15.45 + * Jammy update: v5.15.44 upstream stable release (LP: #1981649) + - Revert "UBUNTU: SAUCE: random: Make getrandom() ready earlier" + - ice: fix crash at allocation failure + - ACPI: sysfs: Fix BERT error region memory mapping + - MAINTAINERS: co-maintain random.c + - MAINTAINERS: add git tree for random.c + - lib/crypto: blake2s: include as built-in + - [Config] updateconfigs for CRYPTO_LIB_BLAKE2S + - lib/crypto: blake2s: move hmac construction into wireguard + - lib/crypto: sha1: re-roll loops to reduce code size + - lib/crypto: blake2s: avoid indirect calls to compression function for Clang + CFI + - random: document add_hwgenerator_randomness() with other input functions + - random: remove unused irq_flags argument from add_interrupt_randomness() + - random: use BLAKE2s instead of SHA1 in extraction + - random: do not sign extend bytes for rotation when mixing + - random: do not re-init if crng_reseed completes before primary init + - random: mix bootloader randomness into pool + - random: harmonize "crng init done" messages + - random: use IS_ENABLED(CONFIG_NUMA) instead of ifdefs + - random: early initialization of ChaCha constants + - random: avoid superfluous call to RDRAND in CRNG extraction + - random: don't reset crng_init_cnt on urandom_read() + - random: fix typo in comments + - random: cleanup poolinfo abstraction + - random: cleanup integer types + - random: remove incomplete last_data logic + - random: remove unused extract_entropy() reserved argument + - random: rather than entropy_store abstraction, use global + - random: remove unused OUTPUT_POOL constants + - random: de-duplicate INPUT_POOL constants + - random: prepend remaining pool constants with POOL_ + - random: cleanup fractional entropy shift constants + - random: access input_pool_data directly rather than through pointer + - random: selectively clang-format where it makes sense + - random: simplify arithmetic function flow in account() + - random: continually use hwgenerator randomness + - random: access primary_pool directly rather than through pointer + - random: only call crng_finalize_init() for primary_crng + - random: use computational hash for entropy extraction + - random: simplify entropy debiting + - random: use linear min-entropy accumulation crediting + - random: always wake up entropy writers after extraction + - random: make credit_entropy_bits() always safe + - random: remove use_input_pool parameter from crng_reseed() + - random: remove batched entropy locking + - random: fix locking in crng_fast_load() + - random: use RDSEED instead of RDRAND in entropy extraction + - random: get rid of secondary crngs + - random: inline leaves of rand_initialize() + - random: ensure early RDSEED goes through mixer on init + - random: do not xor RDRAND when writing into /dev/random + - random: absorb fast pool into input pool after fast load + - random: use simpler fast key erasure flow on per-cpu keys + - random: use hash function for crng_slow_load() + - random: make more consistent use of integer types + - random: remove outdated INT_MAX >> 6 check in urandom_read() + - random: zero buffer after reading entropy from userspace + - random: fix locking for crng_init in crng_reseed() + - random: tie batched entropy generation to base_crng generation + - random: remove ifdef'd out interrupt bench + - random: remove unused tracepoints + - random: add proper SPDX header + - random: deobfuscate irq u32/u64 contributions + - random: introduce drain_entropy() helper to declutter crng_reseed() + - random: remove useless header comment + - random: remove whitespace and reorder includes + - random: group initialization wait functions + - random: group crng functions + - random: group entropy extraction functions + - random: group entropy collection functions + - random: group userspace read/write functions + - random: group sysctl functions + - random: rewrite header introductory comment + - random: defer fast pool mixing to worker + - random: do not take pool spinlock at boot + - random: unify early init crng load accounting + - random: check for crng_init == 0 in add_device_randomness() + - random: pull add_hwgenerator_randomness() declaration into random.h + - random: clear fast pool, crng, and batches in cpuhp bring up + - random: round-robin registers as ulong, not u32 + - random: only wake up writers after zap if threshold was passed + - random: cleanup UUID handling + - random: unify cycles_t and jiffies usage and types + - random: do crng pre-init loading in worker rather than irq + - random: give sysctl_random_min_urandom_seed a more sensible value + - random: don't let 644 read-only sysctls be written to + - random: replace custom notifier chain with standard one + - random: use SipHash as interrupt entropy accumulator + - random: make consistent usage of crng_ready() + - random: reseed more often immediately after booting + - random: check for signal and try earlier when generating entropy + - random: skip fast_init if hwrng provides large chunk of entropy + - random: treat bootloader trust toggle the same way as cpu trust toggle + - random: re-add removed comment about get_random_{u32,u64} reseeding + - random: mix build-time latent entropy into pool at init + - random: do not split fast init input in add_hwgenerator_randomness() + - random: do not allow user to keep crng key around on stack + - random: check for signal_pending() outside of need_resched() check + - random: check for signals every PAGE_SIZE chunk of /dev/[u]random + - random: allow partial reads if later user copies fail + - random: make random_get_entropy() return an unsigned long + - random: document crng_fast_key_erasure() destination possibility + - random: fix sysctl documentation nits + - init: call time_init() before rand_initialize() + - ia64: define get_cycles macro for arch-override + - s390: define get_cycles macro for arch-override + - parisc: define get_cycles macro for arch-override + - alpha: define get_cycles macro for arch-override + - powerpc: define get_cycles macro for arch-override + - timekeeping: Add raw clock fallback for random_get_entropy() + - m68k: use fallback for random_get_entropy() instead of zero + - riscv: use fallback for random_get_entropy() instead of zero + - mips: use fallback for random_get_entropy() instead of just c0 random + - arm: use fallback for random_get_entropy() instead of zero + - nios2: use fallback for random_get_entropy() instead of zero + - x86/tsc: Use fallback for random_get_entropy() instead of zero + - um: use fallback for random_get_entropy() instead of zero + - sparc: use fallback for random_get_entropy() instead of zero + - xtensa: use fallback for random_get_entropy() instead of zero + - random: insist on random_get_entropy() existing in order to simplify + - random: do not use batches when !crng_ready() + - random: use first 128 bits of input as fast init + - random: do not pretend to handle premature next security model + - random: order timer entropy functions below interrupt functions + - random: do not use input pool from hard IRQs + - random: help compiler out with fast_mix() by using simpler arguments + - siphash: use one source of truth for siphash permutations + - random: use symbolic constants for crng_init states + - random: avoid initializing twice in credit race + - random: move initialization out of reseeding hot path + - random: remove ratelimiting for in-kernel unseeded randomness + - random: use proper jiffies comparison macro + - random: handle latent entropy and command line from random_init() + - random: credit architectural init the exact amount + - random: use static branch for crng_ready() + - random: remove extern from functions in header + - random: use proper return types on get_random_{int,long}_wait() + - random: make consistent use of buf and len + - random: move initialization functions out of hot pages + - random: move randomize_page() into mm where it belongs + - random: unify batched entropy implementations + - random: convert to using fops->read_iter() + - random: convert to using fops->write_iter() + - random: wire up fops->splice_{read,write}_iter() + - random: check for signals after page of pool writes + - ALSA: ctxfi: Add SB046x PCI ID + - Linux 5.15.44 + - Revert "random: use static branch for crng_ready()" + * Jammy update: v5.15.43 upstream stable release (LP: #1981468) + - mptcp: Do TCP fallback on early DSS checksum failure + - Linux 5.15.43 + * Jammy update: v5.15.42 upstream stable release (LP: #1981375) + - usb: gadget: fix race when gadget driver register via ioctl + - io_uring: arm poll for non-nowait files + - kernel/resource: Introduce request_mem_region_muxed() + - i2c: piix4: Replace hardcoded memory map size with a #define + - i2c: piix4: Move port I/O region request/release code into functions + - i2c: piix4: Move SMBus controller base address detect into function + - i2c: piix4: Move SMBus port selection into function + - i2c: piix4: Add EFCH MMIO support to region request and release + - i2c: piix4: Add EFCH MMIO support to SMBus base address detect + - i2c: piix4: Add EFCH MMIO support for SMBus port select + - i2c: piix4: Enable EFCH MMIO for Family 17h+ + - Watchdog: sp5100_tco: Move timer initialization into function + - Watchdog: sp5100_tco: Refactor MMIO base address initialization + - Watchdog: sp5100_tco: Add initialization using EFCH MMIO + - Watchdog: sp5100_tco: Enable Family 17h+ CPUs + - mm/kfence: reset PG_slab and memcg_data before freeing __kfence_pool + - Revert "drm/i915/opregion: check port number bounds for SWSCI display power + state" + - rtc: fix use-after-free on device removal + - rtc: pcf2127: fix bug when reading alarm registers + - um: Cleanup syscall_handler_t definition/cast, fix warning + - Input: add bounds checking to input_set_capability() + - Input: stmfts - fix reference leak in stmfts_input_open + - nvme-pci: add quirks for Samsung X5 SSDs + - gfs2: Disable page faults during lockless buffered reads + - rtc: sun6i: Fix time overflow handling + - crypto: stm32 - fix reference leak in stm32_crc_remove + - crypto: x86/chacha20 - Avoid spurious jumps to other functions + - s390/traps: improve panic message for translation-specification exception + - s390/pci: improve zpci_dev reference counting + - vhost_vdpa: don't setup irq offloading when irq_num < 0 + - tools/virtio: compile with -pthread + - nvmet: use a private workqueue instead of the system workqueue + - nvme-multipath: fix hang when disk goes live over reconnect + - rtc: mc146818-lib: Fix the AltCentury for AMD platforms + - fs: fix an infinite loop in iomap_fiemap + - MIPS: lantiq: check the return value of kzalloc() + - drbd: remove usage of list iterator variable after loop + - platform/chrome: cros_ec_debugfs: detach log reader wq from devm + - ARM: 9191/1: arm/stacktrace, kasan: Silence KASAN warnings in unwind_frame() + - nilfs2: fix lockdep warnings in page operations for btree nodes + - nilfs2: fix lockdep warnings during disk space reclamation + - ALSA: usb-audio: Restore Rane SL-1 quirk + - ALSA: wavefront: Proper check of get_user() error + - ALSA: hda/realtek: Add quirk for TongFang devices with pop noise + - perf: Fix sys_perf_event_open() race against self + - selinux: fix bad cleanup on error in hashtab_duplicate() + - Fix double fget() in vhost_net_set_backend() + - PCI/PM: Avoid putting Elo i2 PCIe Ports in D3cold + - Revert "can: m_can: pci: use custom bit timings for Elkhart Lake" + - KVM: x86/mmu: Update number of zapped pages even if page list is stable + - arm64: paravirt: Use RCU read locks to guard stolen_time + - arm64: mte: Ensure the cleared tags are visible before setting the PTE + - crypto: qcom-rng - fix infinite loop on requests not multiple of WORD_SZ + - libceph: fix potential use-after-free on linger ping and resends + - drm/i915/dmc: Add MMIO range restrictions + - drm/dp/mst: fix a possible memory leak in fetch_monitor_name() + - dma-buf: fix use of DMA_BUF_SET_NAME_{A,B} in userspace + - dma-buf: ensure unique directory name for dmabuf stats + - ARM: dts: aspeed-g6: remove FWQSPID group in pinctrl dtsi + - pinctrl: pinctrl-aspeed-g6: remove FWQSPID group in pinctrl + - ARM: dts: aspeed-g6: fix SPI1/SPI2 quad pin group + - ARM: dts: aspeed: Add ADC for AST2600 and enable for Rainier and Everest + - ARM: dts: aspeed: Add secure boot controller node + - ARM: dts: aspeed: Add video engine to g6 + - pinctrl: mediatek: mt8365: fix IES control pins + - ALSA: hda - fix unused Realtek function when PM is not enabled + - net: ipa: record proper RX transaction count + - net: macb: Increment rx bd head after allocating skb and buffer + - xfrm: rework default policy structure + - xfrm: fix "disable_policy" flag use when arriving from different devices + - net/sched: act_pedit: sanitize shift argument before usage + - netfilter: flowtable: fix excessive hw offload attempts after failure + - netfilter: nft_flow_offload: skip dst neigh lookup for ppp devices + - net: fix dev_fill_forward_path with pppoe + bridge + - netfilter: nft_flow_offload: fix offload with pppoe + vlan + - net: systemport: Fix an error handling path in bcm_sysport_probe() + - net: vmxnet3: fix possible use-after-free bugs in vmxnet3_rq_alloc_rx_buf() + - net: vmxnet3: fix possible NULL pointer dereference in vmxnet3_rq_cleanup() + - ice: fix crash when writing timestamp on RX rings + - ice: fix possible under reporting of ethtool Tx and Rx statistics + - ice: move ice_container_type onto ice_ring_container + - ice: Fix interrupt moderation settings getting cleared + - clk: at91: generated: consider range when calculating best rate + - net/qla3xxx: Fix a test in ql_reset_work() + - NFC: nci: fix sleep in atomic context bugs caused by nci_skb_alloc + - net/mlx5: DR, Fix missing flow_source when creating multi-destination FW + table + - net/mlx5e: Properly block LRO when XDP is enabled + - ARM: 9196/1: spectre-bhb: enable for Cortex-A15 + - ARM: 9197/1: spectre-bhb: fix loop8 sequence for Thumb2 + - mptcp: change the parameter of __mptcp_make_csum + - mptcp: reuse __mptcp_make_csum in validate_data_csum + - mptcp: fix checksum byte order + - igb: skip phy status check where unavailable + - netfilter: flowtable: fix TCP flow teardown + - netfilter: flowtable: pass flowtable to nf_flow_table_iterate() + - netfilter: flowtable: move dst_check to packet path + - net: bridge: Clear offload_fwd_mark when passing frame up bridge interface. + - riscv: dts: sifive: fu540-c000: align dma node name with dtschema + - scsi: ufs: core: Fix referencing invalid rsp field + - perf build: Fix check for btf__load_from_kernel_by_id() in libbpf + - gpio: gpio-vf610: do not touch other bits when set the target bit + - gpio: mvebu/pwm: Refuse requests with inverted polarity + - perf regs x86: Fix arch__intr_reg_mask() for the hybrid platform + - perf bench numa: Address compiler error on s390 + - scsi: scsi_dh_alua: Properly handle the ALUA transitioning state + - scsi: qla2xxx: Fix missed DMA unmap for aborted commands + - mac80211: fix rx reordering with non explicit / psmp ack policy + - nl80211: validate S1G channel width + - selftests: add ping test with ping_group_range tuned + - fbdev: Prevent possible use-after-free in fb_release() + - net: fix wrong network header length + - nl80211: fix locking in nl80211_set_tx_bitrate_mask() + - ethernet: tulip: fix missing pci_disable_device() on error in + tulip_init_one() + - net: stmmac: fix missing pci_disable_device() on error in stmmac_pci_probe() + - net: atlantic: fix "frag[0] not initialized" + - net: atlantic: reduce scope of is_rsc_complete + - net: atlantic: add check for MAX_SKB_FRAGS + - net: atlantic: verify hw_head_ lies within TX buffer ring + - arm64: Enable repeat tlbi workaround on KRYO4XX gold CPUs + - Input: ili210x - fix reset timing + - dt-bindings: pinctrl: aspeed-g6: remove FWQSPID group + - i2c: mt7621: fix missing clk_disable_unprepare() on error in mtk_i2c_probe() + - afs: Fix afs_getattr() to refetch file status if callback break occurred + - Linux 5.15.42 + * CVE-2021-33061 + - ixgbe: add the ability for the PF to disable VF link state + - ixgbe: add improvement for MDD response functionality + - ixgbevf: add disable link state + * Fix PSR flickers on Intel TGL laptops + AUO panel (LP: #1980087) + - SAUCE: drm/i915/display/psr: Fix flicker on TGL + AUO panel + * Fix audio on Zbook Studio G9 (LP: #1966010) + - ALSA: hda/realtek: Fix LED on Zbook Studio G9 + * Support Cirrus audio codec configurations for Odin platform (LP: #1968861) + - ALSA: hda/cs8409: Support new Odin Variants + - ALSA: hda/cs8409: Add Speaker Playback Switch for Cyborg + * Fix beacon loss for rtl8821ce on certain platforms (LP: #1969771) + - rtw88: pci: 8821c: Disable 21ce completion timeout + * Suppress harmless warning from hp-wmi (LP: #1980307) + - platform/x86: hp-wmi: Ignore Sanitization Mode event + * Fix headset mic no sound on an HP desktop (LP: #1978925) + - ALSA: hda/realtek - ALC897 headset MIC no sound + * alsa/hda: mute led can't work on the lenovo machine with cs35l41 s-codec + (LP: #1978915) + - ALSA: hda/realtek: Fix mute led issue on thinkpad with cs35l41 s-codec + * Jammy update: v5.15.41 upstream stable release (LP: #1980278) + - batman-adv: Don't skb_split skbuffs with frag_list + - iwlwifi: iwl-dbg: Use del_timer_sync() before freeing + - hwmon: (tmp401) Add OF device ID table + - mac80211: Reset MBSSID parameters upon connection + - net: Fix features skip in for_each_netdev_feature() + - net: mscc: ocelot: fix last VCAP IS1/IS2 filter persisting in hardware when + deleted + - net: mscc: ocelot: fix VCAP IS2 filters matching on both lookups + - net: mscc: ocelot: restrict tc-trap actions to VCAP IS2 lookup 0 + - net: mscc: ocelot: avoid corrupting hardware counters when moving VCAP + filters + - fbdev: simplefb: Cleanup fb_info in .fb_destroy rather than .remove + - fbdev: efifb: Cleanup fb_info in .fb_destroy rather than .remove + - fbdev: vesafb: Cleanup fb_info in .fb_destroy rather than .remove + - platform/surface: aggregator: Fix initialization order when compiling as + builtin module + - ice: Fix race during aux device (un)plugging + - ice: fix PTP stale Tx timestamps cleanup + - ipv4: drop dst in multicast routing path + - drm/nouveau: Fix a potential theorical leak in nouveau_get_backlight_name() + - netlink: do not reset transport header in netlink_recvmsg() + - net: chelsio: cxgb4: Avoid potential negative array offset + - fbdev: efifb: Fix a use-after-free due early fb_info cleanup + - sfc: Use swap() instead of open coding it + - net: sfc: fix memory leak due to ptp channel + - mac80211_hwsim: call ieee80211_tx_prepare_skb under RCU protection + - nfs: fix broken handling of the softreval mount option + - ionic: fix missing pci_release_regions() on error in ionic_probe() + - dim: initialize all struct fields + - hwmon: (ltq-cputemp) restrict it to SOC_XWAY + - procfs: prevent unprivileged processes accessing fdinfo dir + - selftests: vm: Makefile: rename TARGETS to VMTARGETS + - arm64: vdso: fix makefile dependency on vdso.so + - virtio: fix virtio transitional ids + - s390/ctcm: fix variable dereferenced before check + - s390/ctcm: fix potential memory leak + - s390/lcs: fix variable dereferenced before check + - net/sched: act_pedit: really ensure the skb is writable + - net: ethernet: mediatek: ppe: fix wrong size passed to memset() + - net: bcmgenet: Check for Wake-on-LAN interrupt probe deferral + - drm/vc4: hdmi: Fix build error for implicit function declaration + - net: dsa: bcm_sf2: Fix Wake-on-LAN with mac_link_down() + - net/smc: non blocking recvmsg() return -EAGAIN when no data and + signal_pending + - net: sfc: ef10: fix memory leak in efx_ef10_mtd_probe() + - tls: Fix context leak on tls_device_down + - drm/vmwgfx: Fix fencing on SVGAv3 + - gfs2: Fix filesystem block deallocation for short writes + - hwmon: (f71882fg) Fix negative temperature + - RDMA/irdma: Fix deadlock in irdma_cleanup_cm_core() + - iommu: arm-smmu: disable large page mappings for Nvidia arm-smmu + - ASoC: max98090: Reject invalid values in custom control put() + - ASoC: max98090: Generate notifications on changes for custom control + - ASoC: ops: Validate input values in snd_soc_put_volsw_range() + - s390: disable -Warray-bounds + - ASoC: SOF: Fix NULL pointer exception in sof_pci_probe callback + - net: emaclite: Don't advertise 1000BASE-T and do auto negotiation + - net: sfp: Add tx-fault workaround for Huawei MA5671A SFP ONT + - secure_seq: use the 64 bits of the siphash for port offset calculation + - tcp: use different parts of the port_offset for index and offset + - tcp: resalt the secret every 10 seconds + - tcp: add small random increments to the source port + - tcp: dynamically allocate the perturb table used by source ports + - tcp: increase source port perturb table to 2^16 + - tcp: drop the hash_32() part from the index calculation + - interconnect: Restore sync state by ignoring ipa-virt in provider count + - firmware_loader: use kernel credentials when reading firmware + - KVM: PPC: Book3S PR: Enable MSR_DR for switch_mmu_context() + - usb: xhci-mtk: fix fs isoc's transfer error + - x86/mm: Fix marking of unused sub-pmd ranges + - tty/serial: digicolor: fix possible null-ptr-deref in digicolor_uart_probe() + - tty: n_gsm: fix buffer over-read in gsm_dlci_data() + - tty: n_gsm: fix mux activation issues in gsm_config() + - usb: cdc-wdm: fix reading stuck on device close + - usb: typec: tcpci: Don't skip cleanup in .remove() on error + - usb: typec: tcpci_mt6360: Update for BMC PHY setting + - USB: serial: pl2303: add device id for HP LM930 Display + - USB: serial: qcserial: add support for Sierra Wireless EM7590 + - USB: serial: option: add Fibocom L610 modem + - USB: serial: option: add Fibocom MA510 modem + - slimbus: qcom: Fix IRQ check in qcom_slim_probe + - fsl_lpuart: Don't enable interrupts too early + - serial: 8250_mtk: Fix UART_EFR register address + - serial: 8250_mtk: Fix register address for XON/XOFF character + - ceph: fix setting of xattrs on async created inodes + - Revert "mm/memory-failure.c: skip huge_zero_page in memory_failure()" + - mm/huge_memory: do not overkill when splitting huge_zero_page + - drm/vmwgfx: Disable command buffers on svga3 without gbobjects + - drm/nouveau/tegra: Stop using iommu_present() + - i40e: i40e_main: fix a missing check on list iterator + - net: atlantic: always deep reset on pm op, fixing up my null deref + regression + - net: phy: Fix race condition on link status change + - writeback: Avoid skipping inode writeback + - cgroup/cpuset: Remove cpus_allowed/mems_allowed setup in cpuset_init_smp() + - arm[64]/memremap: don't abuse pfn_valid() to ensure presence of linear map + - net: phy: micrel: Do not use kszphy_suspend/resume for KSZ8061 + - net: phy: micrel: Pass .probe for KS8737 + - SUNRPC: Ensure that the gssproxy client can start in a connected state + - drm/vmwgfx: Initialize drm_mode_fb_cmd2 + - dma-buf: call dma_buf_stats_setup after dmabuf is in valid list + - mm/hwpoison: use pr_err() instead of dump_page() in get_any_page() + - ping: fix address binding wrt vrf + - usb: gadget: uvc: rename function to be more consistent + - usb: gadget: uvc: allow for application to cleanly shutdown + - Linux 5.15.41 + * Jammy update: v5.15.40 upstream stable release (LP: #1980277) + - tools arch: Update arch/x86/lib/mem{cpy,set}_64.S copies used in 'perf bench + mem memcpy' + - Bluetooth: Fix the creation of hdev->name + - udf: Avoid using stale lengthOfImpUse + - mm: fix missing cache flush for all tail pages of compound page + - mm: hugetlb: fix missing cache flush in copy_huge_page_from_user() + - mm: shmem: fix missing cache flush in shmem_mfill_atomic_pte() + - mm: userfaultfd: fix missing cache flush in mcopy_atomic_pte() and + __mcopy_atomic() + - mm/hwpoison: fix error page recovered but reported "not recovered" + - mm/mlock: fix potential imbalanced rlimit ucounts adjustment + - mm: fix invalid page pointer returned with FOLL_PIN gups + - Linux 5.15.40 + + -- Philip Cox Thu, 18 Aug 2022 15:24:13 -0400 + +linux-intel-iotg (5.15.0-1013.17) jammy; urgency=medium + + * CVE-2022-29900 // CVE-2022-29901 + - [Config]: Enable speculation mitigations + + [ Ubuntu: 5.15.0-46.49 ] + + * CVE-2022-2585 + - SAUCE: posix-cpu-timers: Cleanup CPU timers before freeing them during exec + * CVE-2022-2586 + - SAUCE: netfilter: nf_tables: do not allow SET_ID to refer to another table + - SAUCE: netfilter: nf_tables: do not allow CHAIN_ID to refer to another table + - SAUCE: netfilter: nf_tables: do not allow RULE_ID to refer to another chain + * CVE-2022-2588 + - SAUCE: net_sched: cls_route: remove from list when handle is 0 + + [ Ubuntu: 5.15.0-45.48 ] + + * CVE-2022-29900 // CVE-2022-29901 + - x86/lib/atomic64_386_32: Rename things + - x86: Prepare asm files for straight-line-speculation + - x86: Prepare inline-asm for straight-line-speculation + - x86/alternative: Relax text_poke_bp() constraint + - kbuild: move objtool_args back to scripts/Makefile.build + - x86: Add straight-line-speculation mitigation + - kvm/emulate: Fix SETcc emulation function offsets with SLS + - crypto: x86/poly1305 - Fixup SLS + - objtool: Add straight-line-speculation validation + - objtool: Fix SLS validation for kcov tail-call replacement + - objtool: Fix objtool regression on x32 systems + - objtool: Fix symbol creation + - objtool: Introduce CFI hash + - objtool: Default ignore INT3 for unreachable + - x86, kvm: use proper ASM macros for kvm_vcpu_is_preempted + - x86/traps: Use pt_regs directly in fixup_bad_iret() + - x86/entry: Switch the stack after error_entry() returns + - x86/entry: Move PUSH_AND_CLEAR_REGS out of error_entry() + - x86/entry: Don't call error_entry() for XENPV + - x86/entry: Remove skip_r11rcx + - x86/realmode: build with -D__DISABLE_EXPORTS + - x86/ibt,ftrace: Make function-graph play nice + - x86/kvm/vmx: Make noinstr clean + - x86/cpufeatures: Move RETPOLINE flags to word 11 + - x86/retpoline: Cleanup some #ifdefery + - x86/retpoline: Swizzle retpoline thunk + - x86/retpoline: Use -mfunction-return + - x86: Undo return-thunk damage + - x86,objtool: Create .return_sites + - objtool: skip non-text sections when adding return-thunk sites + - x86,static_call: Use alternative RET encoding + - x86/ftrace: Use alternative RET encoding + - x86/bpf: Use alternative RET encoding + - x86/kvm: Fix SETcc emulation for return thunks + - x86/vsyscall_emu/64: Don't use RET in vsyscall emulation + - x86/sev: Avoid using __x86_return_thunk + - x86: Use return-thunk in asm code + - x86/entry: Avoid very early RET + - objtool: Treat .text.__x86.* as noinstr + - x86: Add magic AMD return-thunk + - x86/bugs: Report AMD retbleed vulnerability + - x86/bugs: Add AMD retbleed= boot parameter + - x86/bugs: Enable STIBP for JMP2RET + - x86/bugs: Keep a per-CPU IA32_SPEC_CTRL value + - x86/entry: Add kernel IBRS implementation + - x86/bugs: Optimize SPEC_CTRL MSR writes + - x86/speculation: Add spectre_v2=ibrs option to support Kernel IBRS + - x86/bugs: Split spectre_v2_select_mitigation() and + spectre_v2_user_select_mitigation() + - x86/bugs: Report Intel retbleed vulnerability + - intel_idle: Disable IBRS during long idle + - objtool: Update Retpoline validation + - x86/xen: Rename SYS* entry points + - x86/xen: Add UNTRAIN_RET + - x86/bugs: Add retbleed=ibpb + - x86/bugs: Do IBPB fallback check only once + - objtool: Add entry UNRET validation + - x86/cpu/amd: Add Spectral Chicken + - x86/speculation: Fix RSB filling with CONFIG_RETPOLINE=n + - x86/speculation: Fix firmware entry SPEC_CTRL handling + - x86/speculation: Fix SPEC_CTRL write on SMT state change + - x86/speculation: Use cached host SPEC_CTRL value for guest entry/exit + - x86/speculation: Remove x86_spec_ctrl_mask + - objtool: Re-add UNWIND_HINT_{SAVE_RESTORE} + - KVM: VMX: Flatten __vmx_vcpu_run() + - KVM: VMX: Convert launched argument to flags + - KVM: VMX: Prevent guest RSB poisoning attacks with eIBRS + - KVM: VMX: Fix IBRS handling after vmexit + - x86/speculation: Fill RSB on vmexit for IBRS + - KVM: VMX: Prevent RSB underflow before vmenter + - x86/common: Stamp out the stepping madness + - x86/cpu/amd: Enumerate BTC_NO + - x86/retbleed: Add fine grained Kconfig knobs + - x86/bugs: Add Cannon lake to RETBleed affected CPU list + - x86/entry: Move PUSH_AND_CLEAR_REGS() back into error_entry + - x86/bugs: Do not enable IBPB-on-entry when IBPB is not supported + - x86/kexec: Disable RET on kexec + - x86/speculation: Disable RRSBA behavior + - [Config]: Enable speculation mitigations + - x86/static_call: Serialize __static_call_fixup() properly + - x86/asm/32: Fix ANNOTATE_UNRET_SAFE use on 32-bit + - x86/bugs: Mark retbleed_strings static + - x86/entry: Remove UNTRAIN_RET from native_irq_return_ldt + - x86/kvm: fix FASTOP_SIZE when return thunks are enabled + - x86/speculation: Use DECLARE_PER_CPU for x86_spec_ctrl_current + - KVM: emulate: do not adjust size of fastop and setcc subroutines + - x86/bugs: Remove apostrophe typo + - efi/x86: use naked RET on mixed mode call wrapper + + -- Thadeu Lima de Souza Cascardo Fri, 05 Aug 2022 19:16:50 -0300 + +linux-intel-iotg (5.15.0-1012.16) jammy; urgency=medium + + * jammy/linux-intel-iotg: 5.15.0-1012.16 -proposed tracker (LP: #1981226) + + * CVE-2022-29900 // CVE-2022-29901 + - [Config] intel-iotg: Enable speculation mitigations + + * Ubuntu 22.04 and 20.04 DPC Fixes for Failure Cases of DownPort Containment + events (LP: #1965241) + - [Config] intel-iotg: Enable config option CONFIG_PCIE_EDR + + * AMD ACP 6.x DMIC Supports (LP: #1949245) + - [Config] intel-iotg: drop AMD ACP 6 DMIC Support + + [ Ubuntu: 5.15.0-43.46 ] + + * jammy/linux: 5.15.0-43.46 -proposed tracker (LP: #1981243) + * Packaging resync (LP: #1786013) + - debian/dkms-versions -- update from kernel-versions (main/2022.07.11) + * nbd: requests can become stuck when disconnecting from server with qemu-nbd + (LP: #1896350) + - nbd: don't handle response without a corresponding request message + - nbd: make sure request completion won't concurrent + - nbd: don't clear 'NBD_CMD_INFLIGHT' flag if request is not completed + - nbd: fix io hung while disconnecting device + * Ubuntu 22.04 and 20.04 DPC Fixes for Failure Cases of DownPort Containment + events (LP: #1965241) + - PCI/portdrv: Rename pm_iter() to pcie_port_device_iter() + - PCI: pciehp: Ignore Link Down/Up caused by error-induced Hot Reset + - [Config] Enable config option CONFIG_PCIE_EDR + * [SRU] Ubuntu 22.04 Feature Request-Add support for a NVMe-oF-TCP CDC Client + - TP 8010 (LP: #1948626) + - nvme: add CNTRLTYPE definitions for 'identify controller' + - nvme: send uevent on connection up + - nvme: expose cntrltype and dctype through sysfs + * [UBUNTU 22.04] Kernel oops while removing device from cio_ignore list + (LP: #1980951) + - s390/cio: derive cdev information only for IO-subchannels + * Jammy Charmed OpenStack deployment fails over connectivity issues when using + converged OVS bridge for control and data planes (LP: #1978820) + - net/mlx5e: TC NIC mode, fix tc chains miss table + * Hairpin traffic does not work with centralized NAT gw (LP: #1967856) + - net: openvswitch: fix misuse of the cached connection on tuple changes + * alsa: asoc: amd: the internal mic can't be dedected on yellow carp machines + (LP: #1980700) + - ASoC: amd: Add driver data to acp6x machine driver + - ASoC: amd: Add support for enabling DMIC on acp6x via _DSD + * AMD ACP 6.x DMIC Supports (LP: #1949245) + - ASoC: amd: add Yellow Carp ACP6x IP register header + - ASoC: amd: add Yellow Carp ACP PCI driver + - ASoC: amd: add acp6x init/de-init functions + - ASoC: amd: add platform devices for acp6x pdm driver and dmic driver + - ASoC: amd: add acp6x pdm platform driver + - ASoC: amd: add acp6x irq handler + - ASoC: amd: add acp6x pdm driver dma ops + - ASoC: amd: add acp6x pci driver pm ops + - ASoC: amd: add acp6x pdm driver pm ops + - ASoC: amd: enable Yellow carp acp6x drivers build + - ASoC: amd: create platform device for acp6x machine driver + - ASoC: amd: add YC machine driver using dmic + - ASoC: amd: enable Yellow Carp platform machine driver build + - ASoC: amd: fix uninitialized variable in snd_acp6x_probe() + - [Config] Enable AMD ACP 6 DMIC Support + * [UBUNTU 20.04] Include patches to avoid self-detected stall with Secure + Execution (LP: #1979296) + - KVM: s390: pv: add macros for UVC CC values + - KVM: s390: pv: avoid stalls when making pages secure + * [22.04 FEAT] KVM: Attestation support for Secure Execution (crypto) + (LP: #1959973) + - drivers/s390/char: Add Ultravisor io device + - s390/uv_uapi: depend on CONFIG_S390 + - [Config] CONFIG_S390_UV_UAPI=y for s390x + * CVE-2022-1679 + - SAUCE: ath9k: fix use-after-free in ath9k_hif_usb_rx_cb + * CVE-2022-28893 + - SUNRPC: Ensure we flush any closed sockets before xs_xprt_free() + - SUNRPC: Don't leak sockets in xs_local_connect() + * CVE-2022-34918 + - netfilter: nf_tables: stricter validation of element data + * CVE-2022-1652 + - floppy: use a statically allocated error counter + + -- Philip Cox Wed, 27 Jul 2022 09:02:24 -0400 + +linux-intel-iotg (5.15.0-1011.15) jammy; urgency=medium + + * jammy/linux-intel-iotg: 5.15.0-1011.15 -proposed tracker (LP: #1979435) + + * disable Intel DMA remapping by default (LP: #1971699) + - [Config] updateconfigs for Intel DMA remapping + + * IPU6 camera has no function on Andrews MLK (LP: #1964983) + - [Config] updateconfigs for OV02C10 + + * Support Intel IPU6 MIPI camera on Alder Lake platforms (LP: #1955383) + - [Config] updateconfigs for intel visual sensing controller(VSC) driver + - [Config] updateconfigs for IPU6 + + * Jammy update: v5.15.37 upstream stable release (LP: #1976135) + - [Config] updateconfigs for BLK_DEV_FD_RAWCMD + + [ Ubuntu: 5.15.0-41.44 ] + + * jammy/linux: 5.15.0-41.44 -proposed tracker (LP: #1979448) + * Fix can't boot up after change to vmd (LP: #1976587) + - PCI: vmd: Assign VMD IRQ domain before enumeration + - PCI: vmd: Revert 2565e5b69c44 ("PCI: vmd: Do not disable MSI-X remapping if + interrupt remapping is enabled by IOMMU.") + * [SRU][Jammy/OEM-5.17][PATCH 0/1] Fix calltrace in mac80211 (LP: #1978297) + - mac80211: fix struct ieee80211_tx_info size + * [SRU][Jammy][PATCH 0/1] Fix amd display corruption on s2idle resume + (LP: #1978244) + - drm/amd/display: Don't reinitialize DMCUB on s0ix resume + * pl2303 serial adapter not recognized (LP: #1967493) + - USB: serial: pl2303: fix type detection for odd device + * Remove SAUCE patches from test_vxlan_under_vrf.sh in net of + ubuntu_kernel_selftests (LP: #1975691) + - Revert "UBUNTU: SAUCE: selftests: net: Don't fail test_vxlan_under_vrf on + xfail" + - Revert "UBUNTU: SAUCE: selftests: net: Make test for VXLAN underlay in non- + default VRF an expected failure" + * Fix hp_wmi_read_int() reporting error (0x05) (LP: #1979051) + - platform/x86: hp-wmi: Fix hp_wmi_read_int() reporting error (0x05) + * Request to back port vmci patches to Ubuntu kernel (LP: #1978145) + - VMCI: dma dg: whitespace formatting change for vmci register defines + - VMCI: dma dg: add MMIO access to registers + - VMCI: dma dg: detect DMA datagram capability + - VMCI: dma dg: set OS page size + - VMCI: dma dg: register dummy IRQ handlers for DMA datagrams + - VMCI: dma dg: allocate send and receive buffers for DMA datagrams + - VMCI: dma dg: add support for DMA datagrams sends + - VMCI: dma dg: add support for DMA datagrams receive + - VMCI: Fix some error handling paths in vmci_guest_probe_device() + - VMCI: Release notification_bitmap in error path + - VMCI: Check exclusive_vectors when freeing interrupt 1 + - VMCI: Add support for ARM64 + - [Config] Update policies for VMWARE_VMCI and VMWARE_VMCI_VSOCKETS + * [UBUNTU 20.04] rcu stalls with many storage key guests (LP: #1975582) + - s390/gmap: voluntarily schedule during key setting + - s390/mm: use non-quiescing sske for KVM switch to keyed guest + * [SRU][OEM-5.14/OEM-5.17/Jammy][PATCH 0/1] Fix i915 calltrace on new ADL BIOS + (LP: #1976214) + - drm/i915: update new TMDS clock setting defined by VBT + * Revert PPC get_user workaround (LP: #1976248) + - powerpc: Export mmu_feature_keys[] as non-GPL + * Jammy update: v5.15.39 upstream stable release (LP: #1978240) + - MIPS: Fix CP0 counter erratum detection for R4k CPUs + - parisc: Merge model and model name into one line in /proc/cpuinfo + - ALSA: hda/realtek: Add quirk for Yoga Duet 7 13ITL6 speakers + - ALSA: fireworks: fix wrong return count shorter than expected by 4 bytes + - mmc: sdhci-msm: Reset GCC_SDCC_BCR register for SDHC + - mmc: sunxi-mmc: Fix DMA descriptors allocated above 32 bits + - mmc: core: Set HS clock speed before sending HS CMD13 + - gpiolib: of: fix bounds check for 'gpio-reserved-ranges' + - x86/fpu: Prevent FPU state corruption + - KVM: x86/svm: Account for family 17h event renumberings in + amd_pmc_perf_hw_id + - iommu/vt-d: Calculate mask for non-aligned flushes + - iommu/arm-smmu-v3: Fix size calculation in arm_smmu_mm_invalidate_range() + - drm/amd/display: Avoid reading audio pattern past AUDIO_CHANNELS_COUNT + - drm/amdgpu: do not use passthrough mode in Xen dom0 + - RISC-V: relocate DTB if it's outside memory region + - Revert "SUNRPC: attempt AF_LOCAL connect on setup" + - timekeeping: Mark NMI safe time accessors as notrace + - firewire: fix potential uaf in outbound_phy_packet_callback() + - firewire: remove check of list iterator against head past the loop body + - firewire: core: extend card->lock in fw_core_handle_bus_reset + - net: stmmac: disable Split Header (SPH) for Intel platforms + - genirq: Synchronize interrupt thread startup + - ASoC: da7219: Fix change notifications for tone generator frequency + - ASoC: wm8958: Fix change notifications for DSP controls + - ASoC: meson: Fix event generation for AUI ACODEC mux + - ASoC: meson: Fix event generation for G12A tohdmi mux + - ASoC: meson: Fix event generation for AUI CODEC mux + - s390/dasd: fix data corruption for ESE devices + - s390/dasd: prevent double format of tracks for ESE devices + - s390/dasd: Fix read for ESE with blksize < 4k + - s390/dasd: Fix read inconsistency for ESE DASD devices + - can: grcan: grcan_close(): fix deadlock + - can: isotp: remove re-binding of bound socket + - can: grcan: use ofdev->dev when allocating DMA memory + - can: grcan: grcan_probe(): fix broken system id check for errata workaround + needs + - can: grcan: only use the NAPI poll budget for RX + - nfc: replace improper check device_is_registered() in netlink related + functions + - nfc: nfcmrvl: main: reorder destructive operations in + nfcmrvl_nci_unregister_dev to avoid bugs + - NFC: netlink: fix sleep in atomic bug when firmware download timeout + - gpio: visconti: Fix fwnode of GPIO IRQ + - gpio: pca953x: fix irq_stat not updated when irq is disabled (irq_mask not + set) + - hwmon: (adt7470) Fix warning on module removal + - hwmon: (pmbus) disable PEC if not enabled + - ASoC: dmaengine: Restore NULL prepare_slave_config() callback + - ASoC: soc-ops: fix error handling + - iommu/vt-d: Drop stop marker messages + - iommu/dart: check return value after calling platform_get_resource() + - net/mlx5e: Fix trust state reset in reload + - net/mlx5e: Don't match double-vlan packets if cvlan is not set + - net/mlx5e: CT: Fix queued up restore put() executing after relevant ft + release + - net/mlx5e: Fix the calling of update_buffer_lossy() API + - net/mlx5: Avoid double clear or set of sync reset requested + - net/mlx5: Fix deadlock in sync reset flow + - selftests/seccomp: Don't call read() on TTY from background pgrp + - SUNRPC release the transport of a relocated task with an assigned transport + - RDMA/siw: Fix a condition race issue in MPA request processing + - RDMA/irdma: Flush iWARP QP if modified to ERR from RTR state + - RDMA/irdma: Reduce iWARP QP destroy time + - RDMA/irdma: Fix possible crash due to NULL netdev in notifier + - NFSv4: Don't invalidate inode attributes on delegation return + - net: ethernet: mediatek: add missing of_node_put() in mtk_sgmii_init() + - net: dsa: mt7530: add missing of_node_put() in mt7530_setup() + - net: stmmac: dwmac-sun8i: add missing of_node_put() in + sun8i_dwmac_register_mdio_mux() + - net: mdio: Fix ENOMEM return value in BCM6368 mux bus controller + - net: cpsw: add missing of_node_put() in cpsw_probe_dt() + - net: igmp: respect RCU rules in ip_mc_source() and ip_mc_msfilter() + - net: emaclite: Add error handling for of_address_to_resource() + - selftests/net: so_txtime: fix parsing of start time stamp on 32 bit systems + - selftests/net: so_txtime: usage(): fix documentation of default clock + - drm/msm/dp: remove fail safe mode related code + - btrfs: do not BUG_ON() on failure to update inode when setting xattr + - hinic: fix bug of wq out of bound access + - mld: respect RCU rules in ip6_mc_source() and ip6_mc_msfilter() + - rxrpc: Enable IPv6 checksums on transport socket + - selftests: mirror_gre_bridge_1q: Avoid changing PVID while interface is + operational + - bnxt_en: Fix possible bnxt_open() failure caused by wrong RFS flag + - bnxt_en: Fix unnecessary dropping of RX packets + - selftests: ocelot: tc_flower_chains: specify conform-exceed action for + policer + - smsc911x: allow using IRQ0 + - btrfs: force v2 space cache usage for subpage mount + - btrfs: always log symlinks in full mode + - gpio: mvebu: drop pwm base assignment + - kvm: x86/cpuid: Only provide CPUID leaf 0xA if host has architectural PMU + - net/mlx5: Fix slab-out-of-bounds while reading resource dump menu + - net/mlx5e: Lag, Fix use-after-free in fib event handler + - net/mlx5e: Lag, Fix fib_info pointer assignment + - net/mlx5e: Lag, Don't skip fib events on current dst + - iommu/dart: Add missing module owner to ops structure + - kvm: selftests: do not use bitfields larger than 32-bits for PTEs + - KVM: selftests: Silence compiler warning in the kvm_page_table_test + - x86/kvm: Preserve BSP MSR_KVM_POLL_CONTROL across suspend/resume + - KVM: x86: Do not change ICR on write to APIC_SELF_IPI + - KVM: x86/mmu: avoid NULL-pointer dereference on page freeing bugs + - KVM: LAPIC: Enable timer posted-interrupt only when mwait/hlt is advertised + - selftest/vm: verify mmap addr in mremap_test + - selftest/vm: verify remap destination address in mremap_test + - Revert "parisc: Mark sched_clock unstable only if clocks are not + syncronized" + - rcu: Fix callbacks processing time limit retaining cond_resched() + - rcu: Apply callbacks processing time limit only on softirq + - PCI: pci-bridge-emul: Add description for class_revision field + - PCI: pci-bridge-emul: Add definitions for missing capabilities registers + - PCI: aardvark: Add support for DEVCAP2, DEVCTL2, LNKCAP2 and LNKCTL2 + registers on emulated bridge + - PCI: aardvark: Clear all MSIs at setup + - PCI: aardvark: Comment actions in driver remove method + - PCI: aardvark: Disable bus mastering when unbinding driver + - PCI: aardvark: Mask all interrupts when unbinding driver + - PCI: aardvark: Fix memory leak in driver unbind + - PCI: aardvark: Assert PERST# when unbinding driver + - PCI: aardvark: Disable link training when unbinding driver + - PCI: aardvark: Disable common PHY when unbinding driver + - PCI: aardvark: Replace custom PCIE_CORE_INT_* macros with PCI_INTERRUPT_* + - PCI: aardvark: Check return value of generic_handle_domain_irq() when + processing INTx IRQ + - PCI: aardvark: Make MSI irq_chip structures static driver structures + - PCI: aardvark: Make msi_domain_info structure a static driver structure + - PCI: aardvark: Use dev_fwnode() instead of of_node_to_fwnode(dev->of_node) + - PCI: aardvark: Refactor unmasking summary MSI interrupt + - PCI: aardvark: Add support for masking MSI interrupts + - PCI: aardvark: Fix setting MSI address + - PCI: aardvark: Enable MSI-X support + - PCI: aardvark: Add support for ERR interrupt on emulated bridge + - PCI: aardvark: Optimize writing PCI_EXP_RTCTL_PMEIE and PCI_EXP_RTSTA_PME on + emulated bridge + - PCI: aardvark: Add support for PME interrupts + - PCI: aardvark: Fix support for PME requester on emulated bridge + - PCI: aardvark: Use separate INTA interrupt for emulated root bridge + - PCI: aardvark: Remove irq_mask_ack() callback for INTx interrupts + - PCI: aardvark: Don't mask irq when mapping + - PCI: aardvark: Drop __maybe_unused from advk_pcie_disable_phy() + - PCI: aardvark: Update comment about link going down after link-up + - Linux 5.15.39 + * Jammy update: v5.15.38 upstream stable release (LP: #1978234) + - usb: mtu3: fix USB 3.0 dual-role-switch from device to host + - USB: quirks: add a Realtek card reader + - USB: quirks: add STRING quirk for VCOM device + - USB: serial: whiteheat: fix heap overflow in WHITEHEAT_GET_DTR_RTS + - USB: serial: cp210x: add PIDs for Kamstrup USB Meter Reader + - USB: serial: option: add support for Cinterion MV32-WA/MV32-WB + - USB: serial: option: add Telit 0x1057, 0x1058, 0x1075 compositions + - usb: xhci: tegra:Fix PM usage reference leak of + tegra_xusb_unpowergate_partitions + - xhci: Enable runtime PM on second Alderlake controller + - xhci: stop polling roothubs after shutdown + - xhci: increase usb U3 -> U0 link resume timeout from 100ms to 500ms + - iio: dac: ad5592r: Fix the missing return value. + - iio: dac: ad5446: Fix read_raw not returning set value + - iio: magnetometer: ak8975: Fix the error handling in ak8975_power_on() + - iio: imu: inv_icm42600: Fix I2C init possible nack + - usb: misc: fix improper handling of refcount in uss720_probe() + - usb: core: Don't hold the device lock while sleeping in do_proc_control() + - usb: typec: ucsi: Fix reuse of completion structure + - usb: typec: ucsi: Fix role swapping + - usb: gadget: uvc: Fix crash when encoding data for usb request + - usb: gadget: configfs: clear deactivation flag in + configfs_composite_unbind() + - usb: dwc3: Try usb-role-switch first in dwc3_drd_init + - usb: dwc3: core: Fix tx/rx threshold settings + - usb: dwc3: core: Only handle soft-reset in DCTL + - usb: dwc3: gadget: Return proper request status + - usb: dwc3: pci: add support for the Intel Meteor Lake-P + - usb: cdns3: Fix issue for clear halt endpoint + - usb: phy: generic: Get the vbus supply + - serial: imx: fix overrun interrupts in DMA mode + - serial: amba-pl011: do not time out prematurely when draining tx fifo + - serial: 8250: Also set sticky MCR bits in console restoration + - serial: 8250: Correct the clock for EndRun PTP/1588 PCIe device + - arch_topology: Do not set llc_sibling if llc_id is invalid + - ceph: fix possible NULL pointer dereference for req->r_session + - bus: mhi: host: pci_generic: Add missing poweroff() PM callback + - bus: mhi: host: pci_generic: Flush recovery worker during freeze + - arm64: dts: imx8mm-venice: fix spi2 pin configuration + - pinctrl: samsung: fix missing GPIOLIB on ARM64 Exynos config + - hex2bin: make the function hex_to_bin constant-time + - hex2bin: fix access beyond string end + - riscv: patch_text: Fixup last cpu should be master + - x86/pci/xen: Disable PCI/MSI[-X] masking for XEN_HVM guests + - iocost: don't reset the inuse weight of under-weighted debtors + - virtio_net: fix wrong buf address calculation when using xdp + - cpufreq: qcom-hw: fix the race between LMH worker and cpuhp + - cpufreq: qcom-cpufreq-hw: Fix throttle frequency value on EPSS platforms + - video: fbdev: udlfb: properly check endpoint type + - arm64: dts: meson: remove CPU opps below 1GHz for G12B boards + - arm64: dts: meson: remove CPU opps below 1GHz for SM1 boards + - iio:imu:bmi160: disable regulator in error path + - mtd: rawnand: fix ecc parameters for mt7622 + - xsk: Fix l2fwd for copy mode + busy poll combo + - arm64: dts: imx8qm: Correct SCU clock controller's compatible property + - USB: Fix xhci event ring dequeue pointer ERDP update issue + - ARM: dts: imx6qdl-apalis: Fix sgtl5000 detection issue + - arm64: dts: imx8mn: Fix SAI nodes + - arm64: dts: meson-sm1-bananapi-m5: fix wrong GPIO pin labeling for CON1 + - phy: samsung: Fix missing of_node_put() in exynos_sata_phy_probe + - phy: samsung: exynos5250-sata: fix missing device put in probe error paths + - ARM: OMAP2+: Fix refcount leak in omap_gic_of_init + - bus: ti-sysc: Make omap3 gpt12 quirk handling SoC specific + - ARM: dts: dra7: Fix suspend warning for vpe powerdomain + - phy: ti: omap-usb2: Fix error handling in omap_usb2_enable_clocks + - ARM: dts: at91: Map MCLK for wm8731 on at91sam9g20ek + - ARM: dts: at91: sama5d4_xplained: fix pinctrl phandle name + - ARM: dts: at91: fix pinctrl phandles + - phy: mapphone-mdm6600: Fix PM error handling in phy_mdm6600_probe + - phy: ti: Add missing pm_runtime_disable() in serdes_am654_probe + - interconnect: qcom: sdx55: Drop IP0 interconnects + - ARM: dts: Fix mmc order for omap3-gta04 + - ARM: dts: am3517-evm: Fix misc pinmuxing + - ARM: dts: logicpd-som-lv: Fix wrong pinmuxing on OMAP35 + - ipvs: correctly print the memory size of ip_vs_conn_tab + - phy: amlogic: fix error path in phy_g12a_usb3_pcie_probe() + - pinctrl: mediatek: moore: Fix build error + - mtd: rawnand: Fix return value check of wait_for_completion_timeout + - mtd: fix 'part' field data corruption in mtd_info + - pinctrl: stm32: Do not call stm32_gpio_get() for edge triggered IRQs in EOI + - memory: renesas-rpc-if: Fix HF/OSPI data transfer in Manual Mode + - net: dsa: Add missing of_node_put() in dsa_port_link_register_of + - netfilter: nft_set_rbtree: overlap detection with element re-addition after + deletion + - bpf, lwt: Fix crash when using bpf_skb_set_tunnel_key() from bpf_xmit lwt + hook + - pinctrl: rockchip: fix RK3308 pinmux bits + - tcp: md5: incorrect tcp_header_len for incoming connections + - pinctrl: stm32: Keep pinctrl block clock enabled when LEVEL IRQ requested + - tcp: ensure to use the most recently sent skb when filling the rate sample + - wireguard: device: check for metadata_dst with skb_valid_dst() + - sctp: check asoc strreset_chunk in sctp_generate_reconf_event + - ARM: dts: imx6ull-colibri: fix vqmmc regulator + - arm64: dts: imx8mn-ddr4-evk: Describe the 32.768 kHz PMIC clock + - pinctrl: pistachio: fix use of irq_of_parse_and_map() + - cpufreq: fix memory leak in sun50i_cpufreq_nvmem_probe + - net: hns3: clear inited state and stop client after failed to register + netdev + - net: hns3: modify the return code of hclge_get_ring_chain_from_mbx + - net: hns3: add validity check for message data length + - net: hns3: add return value for mailbox handling in PF + - net/smc: sync err code when tcp connection was refused + - ip_gre: Make o_seqno start from 0 in native mode + - ip6_gre: Make o_seqno start from 0 in native mode + - ip_gre, ip6_gre: Fix race condition on o_seqno in collect_md mode + - tcp: fix potential xmit stalls caused by TCP_NOTSENT_LOWAT + - tcp: make sure treq->af_specific is initialized + - bus: sunxi-rsb: Fix the return value of sunxi_rsb_device_create() + - clk: sunxi: sun9i-mmc: check return value after calling + platform_get_resource() + - cpufreq: qcom-cpufreq-hw: Clear dcvs interrupts + - net: bcmgenet: hide status block before TX timestamping + - net: phy: marvell10g: fix return value on error + - net: dsa: mv88e6xxx: Fix port_hidden_wait to account for port_base_addr + - drm/sun4i: Remove obsolete references to PHYS_OFFSET + - net: dsa: lantiq_gswip: Don't set GSWIP_MII_CFG_RMII_CLK + - io_uring: check reserved fields for send/sendmsg + - io_uring: check reserved fields for recv/recvmsg + - netfilter: conntrack: fix udp offload timeout sysctl + - drm/amdkfd: Fix GWS queue count + - drm/amd/display: Fix memory leak in dcn21_clock_source_create + - tls: Skip tls_append_frag on zero copy size + - bnx2x: fix napi API usage sequence + - net: fec: add missing of_node_put() in fec_enet_init_stop_mode() + - gfs2: Prevent endless loops in gfs2_file_buffered_write + - gfs2: Minor retry logic cleanup + - gfs2: Make sure not to return short direct writes + - gfs2: No short reads or writes upon glock contention + - perf arm-spe: Fix addresses of synthesized SPE events + - ixgbe: ensure IPsec VF<->PF compatibility + - Revert "ibmvnic: Add ethtool private flag for driver-defined queue limits" + - tcp: fix F-RTO may not work correctly when receiving DSACK + - ASoC: Intel: soc-acpi: correct device endpoints for max98373 + - ASoC: wm8731: Disable the regulator when probing fails + - ext4: fix bug_on in start_this_handle during umount filesystem + - arch: xtensa: platforms: Fix deadlock in rs_close() + - ksmbd: increment reference count of parent fp + - ksmbd: set fixed sector size to FS_SECTOR_SIZE_INFORMATION + - bonding: do not discard lowest hash bit for non layer3+4 hashing + - x86: __memcpy_flushcache: fix wrong alignment if size > 2^32 + - cifs: destage any unwritten data to the server before calling + copychunk_write + - drivers: net: hippi: Fix deadlock in rr_close() + - powerpc/perf: Fix 32bit compile + - selftest/vm: verify mmap addr in mremap_test + - selftest/vm: verify remap destination address in mremap_test + - Revert "ACPI: processor: idle: fix lockup regression on 32-bit ThinkPad T40" + - zonefs: Fix management of open zones + - zonefs: Clear inode information flags on inode creation + - kasan: prevent cpu_quarantine corruption when CPU offline and cache shrink + occur at same time + - mtd: rawnand: qcom: fix memory corruption that causes panic + - netfilter: Update ip6_route_me_harder to consider L3 domain + - drm/i915: Check EDID for HDR static metadata when choosing blc + - drm/i915: Fix SEL_FETCH_PLANE_*(PIPE_B+) register addresses + - net: ethernet: stmmac: fix write to sgmii_adapter_base + - ACPI: processor: idle: Avoid falling back to C3 type C-states + - thermal: int340x: Fix attr.show callback prototype + - btrfs: fix leaked plug after failure syncing log on zoned filesystems + - ARM: dts: at91: sama7g5ek: enable pull-up on flexcom3 console lines + - ARM: dts: imx8mm-venice-gw{71xx,72xx,73xx}: fix OTG controller OC mode + - x86/cpu: Load microcode during restore_processor_state() + - perf symbol: Pass is_kallsyms to symbols__fixup_end() + - perf symbol: Update symbols__fixup_end() + - tty: n_gsm: fix restart handling via CLD command + - tty: n_gsm: fix decoupled mux resource + - tty: n_gsm: fix mux cleanup after unregister tty device + - tty: n_gsm: fix wrong signal octet encoding in convergence layer type 2 + - tty: n_gsm: fix malformed counter for out of frame data + - netfilter: nft_socket: only do sk lookups when indev is available + - tty: n_gsm: fix insufficient txframe size + - tty: n_gsm: fix wrong DLCI release order + - tty: n_gsm: fix missing explicit ldisc flush + - tty: n_gsm: fix wrong command retry handling + - tty: n_gsm: fix wrong command frame length field encoding + - tty: n_gsm: fix wrong signal octets encoding in MSC + - tty: n_gsm: fix missing tty wakeup in convergence layer type 2 + - tty: n_gsm: fix reset fifo race condition + - tty: n_gsm: fix incorrect UA handling + - tty: n_gsm: fix software flow control handling + - perf symbol: Remove arch__symbols__fixup_end() + - eeprom: at25: Use DMA safe buffers + - objtool: Fix code relocs vs weak symbols + - objtool: Fix type of reloc::addend + - powerpc/64: Add UADDR64 relocation support + - Linux 5.15.38 + * Jammy update: v5.15.37 upstream stable release (LP: #1976135) + - floppy: disable FDRAWCMD by default + - [Config] updateconfigs for BLK_DEV_FD_RAWCMD + - bpf: Introduce composable reg, ret and arg types. + - bpf: Replace ARG_XXX_OR_NULL with ARG_XXX | PTR_MAYBE_NULL + - bpf: Replace RET_XXX_OR_NULL with RET_XXX | PTR_MAYBE_NULL + - bpf: Replace PTR_TO_XXX_OR_NULL with PTR_TO_XXX | PTR_MAYBE_NULL + - bpf: Introduce MEM_RDONLY flag + - bpf: Convert PTR_TO_MEM_OR_NULL to composable types. + - bpf: Make per_cpu_ptr return rdonly PTR_TO_MEM. + - bpf: Add MEM_RDONLY for helper args that are pointers to rdonly mem. + - bpf/selftests: Test PTR_TO_RDONLY_MEM + - bpf: Fix crash due to out of bounds access into reg2btf_ids. + - spi: cadence-quadspi: fix write completion support + - ARM: dts: socfpga: change qspi to "intel,socfpga-qspi" + - mm: kfence: fix objcgs vector allocation + - gup: Turn fault_in_pages_{readable,writeable} into + fault_in_{readable,writeable} + - iov_iter: Turn iov_iter_fault_in_readable into fault_in_iov_iter_readable + - iov_iter: Introduce fault_in_iov_iter_writeable + - gfs2: Add wrapper for iomap_file_buffered_write + - gfs2: Clean up function may_grant + - gfs2: Introduce flag for glock holder auto-demotion + - gfs2: Move the inode glock locking to gfs2_file_buffered_write + - gfs2: Eliminate ip->i_gh + - gfs2: Fix mmap + page fault deadlocks for buffered I/O + - iomap: Fix iomap_dio_rw return value for user copies + - iomap: Support partial direct I/O on user copy failures + - iomap: Add done_before argument to iomap_dio_rw + - gup: Introduce FOLL_NOFAULT flag to disable page faults + - iov_iter: Introduce nofault flag to disable page faults + - gfs2: Fix mmap + page fault deadlocks for direct I/O + - btrfs: fix deadlock due to page faults during direct IO reads and writes + - btrfs: fallback to blocking mode when doing async dio over multiple extents + - mm: gup: make fault_in_safe_writeable() use fixup_user_fault() + - selftests/bpf: Add test for reg2btf_ids out of bounds access + - Linux 5.15.37 + * CVE-2022-1789 + - KVM: x86/mmu: fix NULL pointer dereference on guest INVPCID + * Jammy update: v5.15.36 upstream stable release (LP: #1972905) + - block: simplify the block device syncing code + - xfs: return errors in xfs_fs_sync_fs + - dma-mapping: remove bogus test for pfn_valid from dma_map_resource + - arm64/mm: drop HAVE_ARCH_PFN_VALID + - etherdevice: Adjust ether_addr* prototypes to silence -Wstringop-overead + - mm: page_alloc: fix building error on -Werror=array-compare + - perf tools: Fix segfault accessing sample_id xyarray + - mm, kfence: support kmem_dump_obj() for KFENCE objects + - gfs2: assign rgrp glock before compute_bitstructs + - scsi: ufs: core: scsi_get_lba() error fix + - ALSA: usb-audio: Clear MIDI port active flag after draining + - ALSA: hda/realtek: Add quirk for Clevo NP70PNP + - ASoC: atmel: Remove system clock tree configuration for at91sam9g20ek + - ASoC: topology: Correct error handling in soc_tplg_dapm_widget_create() + - ASoC: rk817: Use devm_clk_get() in rk817_platform_probe + - ASoC: msm8916-wcd-digital: Check failure for devm_snd_soc_register_component + - ASoC: codecs: wcd934x: do not switch off SIDO Buck when codec is in use + - dmaengine: idxd: fix device cleanup on disable + - dmaengine: imx-sdma: Fix error checking in sdma_event_remap + - dmaengine: mediatek:Fix PM usage reference leak of + mtk_uart_apdma_alloc_chan_resources + - dmaengine: dw-edma: Fix unaligned 64bit access + - spi: spi-mtk-nor: initialize spi controller after resume + - esp: limit skb_page_frag_refill use to a single page + - spi: cadence-quadspi: fix incorrect supports_op() return value + - igc: Fix infinite loop in release_swfw_sync + - igc: Fix BUG: scheduling while atomic + - igc: Fix suspending when PTM is active + - ALSA: hda/hdmi: fix warning about PCM count when used with SOF + - rxrpc: Restore removed timer deletion + - net/smc: Fix sock leak when release after smc_shutdown() + - net/packet: fix packet_sock xmit return value checking + - ip6_gre: Avoid updating tunnel->tun_hlen in __gre6_xmit() + - ip6_gre: Fix skb_under_panic in __gre6_xmit() + - net: restore alpha order to Ethernet devices in config + - net/sched: cls_u32: fix possible leak in u32_init_knode() + - l3mdev: l3mdev_master_upper_ifindex_by_index_rcu should be using + netdev_master_upper_dev_get_rcu + - ipv6: make ip6_rt_gc_expire an atomic_t + - can: isotp: stop timeout monitoring when no first frame was sent + - net: dsa: hellcreek: Calculate checksums in tagger + - net: mscc: ocelot: fix broken IP multicast flooding + - netlink: reset network and mac headers in netlink_dump() + - drm/i915/display/psr: Unset enable_psr2_sel_fetch if other checks in + intel_psr2_config_valid() fails + - net: stmmac: Use readl_poll_timeout_atomic() in atomic state + - dmaengine: idxd: add RO check for wq max_batch_size write + - dmaengine: idxd: add RO check for wq max_transfer_size write + - dmaengine: idxd: skip clearing device context when device is read-only + - selftests: mlxsw: vxlan_flooding: Prevent flooding of unwanted packets + - arm64: mm: fix p?d_leaf() + - ARM: vexpress/spc: Avoid negative array index when !SMP + - reset: renesas: Check return value of reset_control_deassert() + - reset: tegra-bpmp: Restore Handle errors in BPMP response + - platform/x86: samsung-laptop: Fix an unsigned comparison which can never be + negative + - ALSA: usb-audio: Fix undefined behavior due to shift overflowing the + constant + - drm/msm/disp: check the return value of kzalloc() + - arm64: dts: imx: Fix imx8*-var-som touchscreen property sizes + - vxlan: fix error return code in vxlan_fdb_append + - cifs: Check the IOCB_DIRECT flag, not O_DIRECT + - mt76: Fix undefined behavior due to shift overflowing the constant + - brcmfmac: sdio: Fix undefined behavior due to shift overflowing the constant + - dpaa_eth: Fix missing of_node_put in dpaa_get_ts_info() + - drm/msm/mdp5: check the return of kzalloc() + - net: macb: Restart tx only if queue pointer is lagging + - scsi: iscsi: Release endpoint ID when its freed + - scsi: iscsi: Merge suspend fields + - scsi: iscsi: Fix NOP handling during conn recovery + - scsi: qedi: Fix failed disconnect handling + - stat: fix inconsistency between struct stat and struct compat_stat + - VFS: filename_create(): fix incorrect intent. + - nvme: add a quirk to disable namespace identifiers + - nvme-pci: disable namespace identifiers for the MAXIO MAP1002/1202 + - nvme-pci: disable namespace identifiers for Qemu controllers + - EDAC/synopsys: Read the error count from the correct register + - mm/memory-failure.c: skip huge_zero_page in memory_failure() + - memcg: sync flush only if periodic flush is delayed + - mm, hugetlb: allow for "high" userspace addresses + - oom_kill.c: futex: delay the OOM reaper to allow time for proper futex + cleanup + - mm/mmu_notifier.c: fix race in mmu_interval_notifier_remove() + - ata: pata_marvell: Check the 'bmdma_addr' beforing reading + - dma: at_xdmac: fix a missing check on list iterator + - dmaengine: imx-sdma: fix init of uart scripts + - net: atlantic: invert deep par in pm functions, preventing null derefs + - Input: omap4-keypad - fix pm_runtime_get_sync() error checking + - scsi: sr: Do not leak information in ioctl + - sched/pelt: Fix attach_entity_load_avg() corner case + - perf/core: Fix perf_mmap fail when CONFIG_PERF_USE_VMALLOC enabled + - drm/panel/raspberrypi-touchscreen: Avoid NULL deref if not initialised + - drm/panel/raspberrypi-touchscreen: Initialise the bridge in prepare + - KVM: PPC: Fix TCE handling for VFIO + - drm/vc4: Use pm_runtime_resume_and_get to fix pm_runtime_get_sync() usage + - powerpc/perf: Fix power9 event alternatives + - powerpc/perf: Fix power10 event alternatives + - perf script: Always allow field 'data_src' for auxtrace + - perf report: Set PERF_SAMPLE_DATA_SRC bit for Arm SPE event + - xtensa: patch_text: Fixup last cpu should be master + - xtensa: fix a7 clobbering in coprocessor context load/store + - openvswitch: fix OOB access in reserve_sfa_size() + - ASoC: soc-dapm: fix two incorrect uses of list iterator + - e1000e: Fix possible overflow in LTR decoding + - ARC: entry: fix syscall_trace_exit argument + - arm_pmu: Validate single/group leader events + - KVM: x86/pmu: Update AMD PMC sample period to fix guest NMI-watchdog + - KVM: x86: Pend KVM_REQ_APICV_UPDATE during vCPU creation to fix a race + - KVM: nVMX: Defer APICv updates while L2 is active until L1 is active + - KVM: SVM: Flush when freeing encrypted pages even on SME_COHERENT CPUs + - netfilter: conntrack: convert to refcount_t api + - netfilter: conntrack: avoid useless indirection during conntrack destruction + - ext4: fix fallocate to use file_modified to update permissions consistently + - ext4: fix symlink file size not match to file content + - ext4: fix use-after-free in ext4_search_dir + - ext4, doc: fix incorrect h_reserved size + - ext4: fix overhead calculation to account for the reserved gdt blocks + - ext4: force overhead calculation if the s_overhead_cluster makes no sense + - netfilter: nft_ct: fix use after free when attaching zone template + - jbd2: fix a potential race while discarding reserved buffers after an abort + - spi: atmel-quadspi: Fix the buswidth adjustment between spi-mem and + controller + - block/compat_ioctl: fix range check in BLKGETSIZE + - arm64: dts: qcom: add IPA qcom,qmp property + - Linux 5.15.36 + * Aquantia GbE LAN driver causes UBSAN error during kernel boot + (LP: #1958770) // Jammy update: v5.15.36 upstream stable release + (LP: #1972905) + - net: atlantic: Avoid out-of-bounds indexing + + [ Ubuntu: 5.15.0-40.43 ] + + * jammy/linux: 5.15.0-40.43 -proposed tracker (LP: #1978610) + * Packaging resync (LP: #1786013) + - debian/dkms-versions -- update from kernel-versions (main/2022.05.30) + * [SRU][OEM-5.14/OEM-5.17/J][PATCH 0/2] Fix system hangs after s2idle on AMD + A+A GPU (LP: #1975804) + - Revert "drm/amd/pm: keep the BACO feature enabled for suspend" + - drm/amd: Don't reset dGPUs if the system is going to s2idle + * [SRU][OEM-5.14/OEM-5.17/J][PATCH 0/1] Read the discovery registers for + AMD_SFH (LP: #1975798) + - HID: amd_sfh: Add support for sensor discovery + * [UBUNTU 20.04] CPU-MF: add extended counter set definitions for new IBM z16 + (LP: #1974433) + - s390/cpumf: add new extended counter set for IBM z16 + * [UBUNTU 20.04] KVM nesting support leaks too much memory, might result in + stalls during cleanup (LP: #1974017) + - KVM: s390: vsie/gmap: reduce gmap_rmap overhead + * [UBUNTU 20.04] Null Pointer issue in nfs code running Ubuntu on IBM Z + (LP: #1968096) + - NFS: Fix up nfs_ctx_key_to_expire() + * Fix REG_WAIT timeout for Yellow Carp (LP: #1971417) + - drm/amd/display: Clear encoder assignments when state cleared. + - drm/amd/display: fix stale info in link encoder assignment + - drm/amd/display: Query all entries in assignment table during updates. + - drm/amd/display: Initialise encoder assignment when initialising dc_state + * Enable hotspot feature for Realtek 8821CE (LP: #1969326) + - rtw88: Add update beacon flow for AP mode + - rtw88: 8821c: Enable TX report for management frames + - rtw88: do PHY calibration while starting AP + - rtw88: 8821c: fix debugfs rssi value + - rtw88: add ieee80211:sta_rc_update ops + * prevent kernel panic with overlayfs + shiftfs (LP: #1973620) + - SAUCE: overlayfs: prevent dereferencing struct file in ovl_vm_prfile_set() + * disable Intel DMA remapping by default (LP: #1971699) + - Revert "UBUNTU: [Config] enable Intel DMA remapping options by default" + * Mute/mic LEDs no function on Elitebook 630 (LP: #1974111) + - ALSA: hda/realtek: fix right sounds and mute/micmute LEDs for HP machine + * [Regression] Real-time Kernel Build Failure (LP: #1972899) + - x86/mm: Include spinlock_t definition in pgtable. + * build backport-iwlwifi-dkms as linux-modules-iwlwifi-ABI (LP: #1969434) + - [Packaging] support standalone dkms module builds + - [Packaging] drop do_ arch specific configs + * IPU6 camera has no function on Andrews MLK (LP: #1964983) + - SAUCE: IPU6: 2022-03-11 alpha release for Andrews MLK + - [Config] IPU6: enable OV02C10 sensor + - SAUCE: IPU6: 2022-04-01 Andrews MLK PV release + - SAUCE: spi: ljca: return when a sub-transaction first failed + - SACUE: ljca: disable parallelly stub write + - SAUCE: ljca: fix race condition issue in runtime PM + - SAUCE: i2c-ljca: fix a null pointer access issue on tgl + - SAUCE: ljca: fix a typo issue + - SAUCE: ljca: assume stub enum failed as a warning + - SAUCE: mei: cleanup header file including + - SAUCE: intel_ulpss: Replaced by LJCA and remove + - [Config] drop intel_ulpss in favor of by LJCA + * multiple UBSAN warnings in Intel IPU6 camera driver at boot (LP: #1958006) + - SAUCE: media: pci: intel: Avoid UBSAN warnings of index bound and shift + * Support Intel IPU6 MIPI camera on Alder Lake platforms (LP: #1955383) + - SAUCE: intel ipu drivers first release + - SAUCE: IPU driver release WW48 + - SAUCE: IPU driver release WW48 with MCU + - SAUCE: IPU driver release WW52 + - SAUCE: IPU driver release WW04 + - SAUCE: IPU driver release WW14 + - SAUCE: Fix ov01a1s output mirror issue + - SAUCE: integrate IPU6 builds + - [Config] updateconfigs for IPU6 driver + - SAUCE: Fix ov01a1s IQ issues + - SAUCE: intel/ipu6: Remove unnecessary video devices + - SAUCE: change power control driver to acpi driver + - SAUCE: IPU6 driver release for kernel 5.13 + - SAUCE: sensor HM11b1 brightness bugfix + - SAUCE: Fix build error on Kernel 5.13 + - SAUCE: IPU6 driver release for kernel 5.14 on 2021-11-01 + - [Config] IPU6: enable OV01A10 sensor + - SAUCE: Fix build error for kernel 5.15 + - SAUCE: intel visual sensing controller(VSC) driver first release + - [Config] ivsc: enable Intel VSC drivers + - SAUCE: ivsc: return error when device not ready + - SAUCE: ivsc: add soft dependencies for intel_vsc module + - SAUCE: ljca: switch wait event to uninterruptible + - SAUCE: mei-vsc: switch wait event to uninterruptible + - SAUCE: mei_vsc: add ACPI HID for ADL + - SAUCE: ljca: add multi ACPI HID support + - SAUCE: ivsc: add delay for acquire camera to wait firmware ready + - SAUCE: mei_vsc: distinguish platform with different camera sensor + - SAUCE: i2c-ljca: fix a potential issue + - SAUCE: ljca: disable autosuspend by default + - [Config] make Intel IPU6 modules amd64 only + - SAUCE: IPU6: drop unnecessary cflags manipulation + + -- Jian Hui Lee Fri, 01 Jul 2022 23:35:52 +0800 + +linux-intel-iotg (5.15.0-1010.14) jammy; urgency=medium + + [ Ubuntu: 5.15.0-39.42 ] + + * CVE-2022-21123 // CVE-2022-21125 // CVE-2022-21166 + - Documentation: Add documentation for Processor MMIO Stale Data + - x86/speculation/mmio: Enumerate Processor MMIO Stale Data bug + - x86/speculation: Add a common function for MD_CLEAR mitigation update + - x86/speculation/mmio: Add mitigation for Processor MMIO Stale Data + - x86/bugs: Group MDS, TAA & Processor MMIO Stale Data mitigations + - x86/speculation/mmio: Enable CPU Fill buffer clearing on idle + - x86/speculation/mmio: Add sysfs reporting for Processor MMIO Stale Data + - x86/speculation/srbds: Update SRBDS mitigation selection + - x86/speculation/mmio: Reuse SRBDS mitigation for SBDS + - KVM: x86/speculation: Disable Fill buffer clear within guests + - x86/speculation/mmio: Print SMT warning + + -- Thadeu Lima de Souza Cascardo Thu, 09 Jun 2022 15:02:06 -0300 + +linux-intel-iotg (5.15.0-1008.11) jammy; urgency=medium + + [ Ubuntu: 5.15.0-37.39 ] + + * netfilter newset OOB write (LP: #1976363) + - netfilter: nf_tables: sanitize nft_set_desc_concat_parse() + * CVE-2022-1966 + - netfilter: nf_tables: disallow non-stateful expression in sets earlier + + -- Thadeu Lima de Souza Cascardo Thu, 02 Jun 2022 19:56:47 -0300 + linux-intel-iotg (5.15.0-1006.8) jammy; urgency=medium * jammy/linux-intel-iotg: 5.15.0-1006.8 -proposed tracker (LP: #1974319) diff -u linux-intel-iotg-5.15-5.15.0/debian.intel-iotg/config/annotations linux-intel-iotg-5.15-5.15.0/debian.intel-iotg/config/annotations --- linux-intel-iotg-5.15-5.15.0/debian.intel-iotg/config/annotations +++ linux-intel-iotg-5.15-5.15.0/debian.intel-iotg/config/annotations @@ -45,6 +45,14 @@ +# Menu: Device Drivers >> Industrial I/O support >> Accelerometers +CONFIG_ADXL345 policy<{'amd64': 'm'}> +CONFIG_ADXL345_I2C policy<{'amd64': 'm'}> +CONFIG_ADXL345_SPI policy<{'amd64': 'm'}> +CONFIG_INPUT_ADXL34X policy<{'amd64': 'n'}> +CONFIG_INPUT_ADXL34X_I2C policy<{'amd64': '-'}> +CONFIG_INPUT_ADXL34X_SPI policy<{'amd64': '-'}> + # Menu: Kernel hacking >> Memory Debugging >> KFENCE: low-overhead sampling-based memory safety error detector CONFIG_KFENCE policy<{'amd64': 'n', 'arm64': 'n'}> CONFIG_KFENCE_STATIC_KEYS policy<{'amd64': '-', 'arm64': '-'}> @@ -55,0 +64,4 @@ + +# This build isn't intended to be run on the Yellow Carp AMD platform. +CONFIG_SND_SOC_AMD_YC_MACH policy<{'amd64': '-'}> +CONFIG_SND_SOC_AMD_ACP6x policy<{'amd64': 'n'}> diff -u linux-intel-iotg-5.15-5.15.0/debian.intel-iotg/config/config.common.ubuntu linux-intel-iotg-5.15-5.15.0/debian.intel-iotg/config/config.common.ubuntu --- linux-intel-iotg-5.15-5.15.0/debian.intel-iotg/config/config.common.ubuntu +++ linux-intel-iotg-5.15-5.15.0/debian.intel-iotg/config/config.common.ubuntu @@ -200,6 +200,9 @@ CONFIG_ADVANTECH_WDT=m CONFIG_ADVISE_SYSCALLS=y CONFIG_ADV_SWBUTTON=m +CONFIG_ADXL345=m +CONFIG_ADXL345_I2C=m +CONFIG_ADXL345_SPI=m CONFIG_ADXL372=m CONFIG_ADXL372_I2C=m CONFIG_ADXL372_SPI=m @@ -716,6 +719,7 @@ CONFIG_BLK_DEV_DM_BUILTIN=y CONFIG_BLK_DEV_DRBD=m CONFIG_BLK_DEV_FD=m +# CONFIG_BLK_DEV_FD_RAWCMD is not set CONFIG_BLK_DEV_INITRD=y CONFIG_BLK_DEV_INTEGRITY=y CONFIG_BLK_DEV_INTEGRITY_T10=y @@ -1017,8 +1021,10 @@ CONFIG_CC_HAS_INT128=y CONFIG_CC_HAS_KASAN_GENERIC=y CONFIG_CC_HAS_NO_PROFILE_FN_ATTR=y +CONFIG_CC_HAS_RETURN_THUNK=y CONFIG_CC_HAS_SANCOV_TRACE_PC=y CONFIG_CC_HAS_SANE_STACKPROTECTOR=y +CONFIG_CC_HAS_SLS=y CONFIG_CC_HAS_UBSAN_BOUNDS=y CONFIG_CC_HAS_WORKING_NOSANITIZE_ADDRESS=y CONFIG_CC_HAS_ZERO_CALL_USED_REGS=y @@ -1367,6 +1373,8 @@ CONFIG_CPU_FREQ_GOV_USERSPACE=y CONFIG_CPU_FREQ_STAT=y # CONFIG_CPU_HOTPLUG_STATE_CONTROL is not set +CONFIG_CPU_IBPB_ENTRY=y +CONFIG_CPU_IBRS_ENTRY=y CONFIG_CPU_IDLE=y CONFIG_CPU_IDLE_GOV_HALTPOLL=y CONFIG_CPU_IDLE_GOV_LADDER=y @@ -1379,6 +1387,7 @@ CONFIG_CPU_SUP_HYGON=y CONFIG_CPU_SUP_INTEL=y CONFIG_CPU_SUP_ZHAOXIN=y +CONFIG_CPU_UNRET_ENTRY=y CONFIG_CRAMFS=m CONFIG_CRAMFS_BLOCKDEV=y CONFIG_CRAMFS_MTD=y @@ -1431,7 +1440,7 @@ CONFIG_CRYPTO_ALGAPI=y CONFIG_CRYPTO_ALGAPI2=y CONFIG_CRYPTO_ANSI_CPRNG=m -CONFIG_CRYPTO_ARCH_HAVE_LIB_BLAKE2S=m +CONFIG_CRYPTO_ARCH_HAVE_LIB_BLAKE2S=y CONFIG_CRYPTO_ARCH_HAVE_LIB_CHACHA=m CONFIG_CRYPTO_ARCH_HAVE_LIB_CURVE25519=m CONFIG_CRYPTO_ARCH_HAVE_LIB_POLY1305=m @@ -1529,8 +1538,7 @@ CONFIG_CRYPTO_KPP2=y CONFIG_CRYPTO_LIB_AES=y CONFIG_CRYPTO_LIB_ARC4=m -CONFIG_CRYPTO_LIB_BLAKE2S=m -CONFIG_CRYPTO_LIB_BLAKE2S_GENERIC=m +CONFIG_CRYPTO_LIB_BLAKE2S_GENERIC=y CONFIG_CRYPTO_LIB_CHACHA=m CONFIG_CRYPTO_LIB_CHACHA20POLY1305=m CONFIG_CRYPTO_LIB_CHACHA_GENERIC=m @@ -2203,6 +2211,7 @@ CONFIG_EDAC_I7CORE=m CONFIG_EDAC_I82975X=m CONFIG_EDAC_IE31200=m +CONFIG_EDAC_IEH=m CONFIG_EDAC_IGEN6=m # CONFIG_EDAC_LEGACY_SYSFS is not set CONFIG_EDAC_PND2=m @@ -2693,7 +2702,7 @@ CONFIG_GPIO_ARIZONA=m CONFIG_GPIO_BD9571MWV=m CONFIG_GPIO_CDEV=y -# CONFIG_GPIO_CDEV_V1 is not set +CONFIG_GPIO_CDEV_V1=y CONFIG_GPIO_CRYSTAL_COVE=y CONFIG_GPIO_DA9052=m CONFIG_GPIO_DA9055=m @@ -2708,6 +2717,7 @@ CONFIG_GPIO_IT87=m CONFIG_GPIO_JANZ_TTL=m CONFIG_GPIO_KEMPLD=m +CONFIG_GPIO_LJCA=m CONFIG_GPIO_LP3943=m CONFIG_GPIO_LP873X=m CONFIG_GPIO_MADERA=m @@ -3192,6 +3202,7 @@ CONFIG_I2C_ISCH=m CONFIG_I2C_ISMT=m CONFIG_I2C_KEMPLD=m +CONFIG_I2C_LJCA=m CONFIG_I2C_MLXCPLD=m CONFIG_I2C_MUX=m CONFIG_I2C_MUX_GPIO=m @@ -3353,7 +3364,6 @@ # CONFIG_IMA_READ_POLICY is not set # CONFIG_IMA_SECURE_AND_OR_TRUSTED_BOOT is not set # CONFIG_IMA_SIG_TEMPLATE is not set -# CONFIG_IMA_TEMPLATE is not set CONFIG_IMA_TRUSTED_KEYRING=y # CONFIG_IMA_WRITE_POLICY is not set CONFIG_IMG_ASCII_LCD=m @@ -3432,9 +3442,7 @@ CONFIG_INPUT_AD714X=m CONFIG_INPUT_AD714X_I2C=m CONFIG_INPUT_AD714X_SPI=m -CONFIG_INPUT_ADXL34X=m -CONFIG_INPUT_ADXL34X_I2C=m -CONFIG_INPUT_ADXL34X_SPI=m +# CONFIG_INPUT_ADXL34X is not set CONFIG_INPUT_APANEL=m CONFIG_INPUT_ARIZONA_HAPTICS=m CONFIG_INPUT_ATC260X_ONKEY=m @@ -3532,9 +3540,9 @@ CONFIG_INTEL_INT0002_VGPIO=m CONFIG_INTEL_IOATDMA=m CONFIG_INTEL_IOMMU=y -CONFIG_INTEL_IOMMU_DEFAULT_ON=y +# CONFIG_INTEL_IOMMU_DEFAULT_ON is not set CONFIG_INTEL_IOMMU_FLOPPY_WA=y -CONFIG_INTEL_IOMMU_SCALABLE_MODE_DEFAULT_ON=y +# CONFIG_INTEL_IOMMU_SCALABLE_MODE_DEFAULT_ON is not set CONFIG_INTEL_IOMMU_SVM=y CONFIG_INTEL_IPS=m CONFIG_INTEL_ISHTP_ECLITE=m @@ -3548,6 +3556,7 @@ CONFIG_INTEL_MEI_ME=m CONFIG_INTEL_MEI_TXE=m CONFIG_INTEL_MEI_VIRTIO=m +CONFIG_INTEL_MEI_VSC=m CONFIG_INTEL_MEI_WDT=m CONFIG_INTEL_MENLOW=m CONFIG_INTEL_MRFLD_ADC=m @@ -3594,6 +3603,11 @@ CONFIG_INTEL_TXT=y CONFIG_INTEL_UNCORE_FREQ_CONTROL=m CONFIG_INTEL_VBTN=m +CONFIG_INTEL_VSC=m +CONFIG_INTEL_VSC_ACE=m +CONFIG_INTEL_VSC_ACE_DEBUG=m +CONFIG_INTEL_VSC_CSI=m +CONFIG_INTEL_VSC_PSE=m CONFIG_INTEL_WMI=y CONFIG_INTEL_WMI_SBL_FW_UPDATE=m CONFIG_INTEL_WMI_THUNDERBOLT=m @@ -4473,6 +4487,7 @@ CONFIG_MFD_IQS62X=m CONFIG_MFD_JANZ_CMODIO=m CONFIG_MFD_KEMPLD=m +CONFIG_MFD_LJCA=m CONFIG_MFD_LM3533=m CONFIG_MFD_LP3943=m CONFIG_MFD_LP8788=y @@ -5771,7 +5786,7 @@ CONFIG_PCIE_DW_PLAT_EP=y CONFIG_PCIE_DW_PLAT_HOST=y # CONFIG_PCIE_ECRC is not set -# CONFIG_PCIE_EDR is not set +CONFIG_PCIE_EDR=y CONFIG_PCIE_PME=y CONFIG_PCIE_PTM=y CONFIG_PCIPCWATCHDOG=m @@ -5943,6 +5958,7 @@ CONFIG_POSIX_MQUEUE_SYSCTL=y CONFIG_POSIX_TIMERS=y CONFIG_POWERCAP=y +CONFIG_POWER_CTRL_LOGIC=m CONFIG_POWER_RESET=y CONFIG_POWER_RESET_ATC260X=m CONFIG_POWER_RESET_MT6323=y @@ -6316,6 +6332,7 @@ CONFIG_RESET_ATTACK_MITIGATION=y CONFIG_RESET_CONTROLLER=y CONFIG_RESET_TI_SYSCON=m +CONFIG_RETHUNK=y CONFIG_RETPOLINE=y CONFIG_RETU_WATCHDOG=m CONFIG_RFD77402=m @@ -7149,6 +7166,7 @@ CONFIG_SLIP_MODE_SLIP6=y CONFIG_SLIP_SMART=y # CONFIG_SLOB is not set +# CONFIG_SLS is not set CONFIG_SLUB=y CONFIG_SLUB_CPU_PARTIAL=y CONFIG_SLUB_DEBUG=y @@ -7376,6 +7394,7 @@ CONFIG_SND_SOC_AMD_ACP=m CONFIG_SND_SOC_AMD_ACP3x=m CONFIG_SND_SOC_AMD_ACP5x=m +# CONFIG_SND_SOC_AMD_ACP6x is not set CONFIG_SND_SOC_AMD_CZ_DA7219MX98357_MACH=m CONFIG_SND_SOC_AMD_CZ_RT5645_MACH=m CONFIG_SND_SOC_AMD_RENOIR=m @@ -7774,6 +7793,7 @@ CONFIG_SPARSEMEM_VMEMMAP=y CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y CONFIG_SPARSE_IRQ=y +CONFIG_SPECULATION_MITIGATIONS=y CONFIG_SPI=y CONFIG_SPI_ALTERA=m CONFIG_SPI_ALTERA_CORE=m @@ -7794,6 +7814,7 @@ # CONFIG_SPI_INTEL_SPI_PCI is not set # CONFIG_SPI_INTEL_SPI_PLATFORM is not set CONFIG_SPI_LANTIQ_SSC=m +CONFIG_SPI_LJCA=m CONFIG_SPI_LM70_LLP=m CONFIG_SPI_LOOPBACK_TEST=m CONFIG_SPI_MASTER=y @@ -9000,6 +9021,7 @@ CONFIG_VIDEO_HEXIUM_GEMINI=m CONFIG_VIDEO_HEXIUM_ORION=m CONFIG_VIDEO_HI556=m +CONFIG_VIDEO_HM11B1=m CONFIG_VIDEO_I2C=m CONFIG_VIDEO_IMX208=m CONFIG_VIDEO_IMX214=m @@ -9009,6 +9031,7 @@ CONFIG_VIDEO_IMX290=m CONFIG_VIDEO_IMX319=m CONFIG_VIDEO_IMX355=m +CONFIG_VIDEO_INTEL_IPU6=m CONFIG_VIDEO_IPU3_CIO2=m CONFIG_VIDEO_IPU3_IMGU=m CONFIG_VIDEO_IR_I2C=m @@ -9035,7 +9058,10 @@ CONFIG_VIDEO_MT9V111=m CONFIG_VIDEO_MXB=m CONFIG_VIDEO_NOON010PC30=m +CONFIG_VIDEO_OV01A10=m +CONFIG_VIDEO_OV01A1S=m CONFIG_VIDEO_OV02A10=m +CONFIG_VIDEO_OV02C10=m CONFIG_VIDEO_OV13858=m CONFIG_VIDEO_OV2640=m CONFIG_VIDEO_OV2659=m diff -u linux-intel-iotg-5.15-5.15.0/debian.intel-iotg/control.stub.in linux-intel-iotg-5.15-5.15.0/debian.intel-iotg/control.stub.in --- linux-intel-iotg-5.15-5.15.0/debian.intel-iotg/control.stub.in +++ linux-intel-iotg-5.15-5.15.0/debian.intel-iotg/control.stub.in @@ -18,6 +18,7 @@ libdw-dev , libpci-dev , pkg-config , + python3-dev , flex , bison , libunwind8-dev [amd64 arm64 armhf ppc64el] , diff -u linux-intel-iotg-5.15-5.15.0/debian.intel-iotg/reconstruct linux-intel-iotg-5.15-5.15.0/debian.intel-iotg/reconstruct --- linux-intel-iotg-5.15-5.15.0/debian.intel-iotg/reconstruct +++ linux-intel-iotg-5.15-5.15.0/debian.intel-iotg/reconstruct @@ -2,11 +2,15 @@ # Remove any files deleted from the orig. rm -f 'arch/hexagon/include/asm/timer-regs.h' rm -f 'drivers/gpu/drm/amd/display/dc/dsc/qp_tables.h' +rm -f 'drivers/gpu/drm/msm/hdmi/hdmi_connector.c' rm -f 'drivers/gpu/drm/vmwgfx/vmwgfx_thp.c' rm -f 'drivers/of/of_net.c' rm -f 'drivers/platform/x86/i2c-multi-instantiate.c' rm -f 'drivers/staging/most/dim2/sysfs.c' +rm -f 'include/trace/events/random.h' rm -f 'tools/build/feature/test-libpython-version.c' +rm -f 'tools/perf/arch/arm64/util/machine.c' +rm -f 'tools/perf/arch/powerpc/util/machine.c' rm -f 'tools/perf/util/bpf_skel/bperf.h' chmod +x 'debian/cloud-tools/hv_get_dhcp_info' chmod +x 'debian/cloud-tools/hv_get_dns_info' diff -u linux-intel-iotg-5.15-5.15.0/debian.intel-iotg/tracking-bug linux-intel-iotg-5.15-5.15.0/debian.intel-iotg/tracking-bug --- linux-intel-iotg-5.15-5.15.0/debian.intel-iotg/tracking-bug +++ linux-intel-iotg-5.15-5.15.0/debian.intel-iotg/tracking-bug @@ -1 +1 @@ -1974319 2022.05.09-5 +1983884 2022.08.08-1 diff -u linux-intel-iotg-5.15-5.15.0/debian.master/abi/abiname linux-intel-iotg-5.15-5.15.0/debian.master/abi/abiname --- linux-intel-iotg-5.15-5.15.0/debian.master/abi/abiname +++ linux-intel-iotg-5.15-5.15.0/debian.master/abi/abiname @@ -1 +1 @@ -33 +46 diff -u linux-intel-iotg-5.15-5.15.0/debian.master/abi/amd64/generic linux-intel-iotg-5.15-5.15.0/debian.master/abi/amd64/generic --- linux-intel-iotg-5.15-5.15.0/debian.master/abi/amd64/generic +++ linux-intel-iotg-5.15-5.15.0/debian.master/abi/amd64/generic @@ -1,24 +1,24 @@ -CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x7503799a crypto_cipher_encrypt_one vmlinux -CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0xcb9335ff crypto_cipher_decrypt_one vmlinux -CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0xcf4ded47 crypto_cipher_setkey vmlinux -CXL EXPORT_SYMBOL_GPL 0x1b9bff66 is_root_decoder drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x3e71f35f is_cxl_nvdimm drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x40424bf9 to_cxl_decoder drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x5de9fe0b cxl_map_component_regs drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x88e05ef9 cxl_bus_type drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x9a48e243 devm_cxl_add_port drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xa4890516 devm_cxl_add_decoder drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xa492758f __cxl_driver_register drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xc64bbf05 cxl_probe_device_regs drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xcc22d7be to_cxl_nvdimm_bridge drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xd3bd6d66 cxl_map_device_regs drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xdc55e8af cxl_probe_component_regs drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xe2651427 cxl_add_dport drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xec9ad868 devm_cxl_add_nvdimm drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xeed39e32 devm_cxl_add_nvdimm_bridge drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xf9f1efea cxl_driver_unregister drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xfead9df1 devm_cxl_add_memdev drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xff514ef4 to_cxl_nvdimm drivers/cxl/core/cxl_core +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x08f3d531 crypto_cipher_decrypt_one vmlinux +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x3fb17889 crypto_cipher_setkey vmlinux +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x854c62dd crypto_cipher_encrypt_one vmlinux +CXL EXPORT_SYMBOL_GPL 0x00d951b0 to_cxl_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x0bd1989e cxl_bus_type drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x136bc29e cxl_driver_unregister drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x221afe1a is_cxl_nvdimm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x24f23c9d cxl_map_component_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x4e5461a2 devm_cxl_add_nvdimm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x607278e5 devm_cxl_add_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x62358d60 devm_cxl_add_port drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x71bdfe1c cxl_map_device_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x8cdf7529 cxl_probe_component_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x8f1771f4 cxl_add_dport drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x97f32210 devm_cxl_add_memdev drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xa2aa33bd __cxl_driver_register drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xb613355c to_cxl_nvdimm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xc92ad427 to_cxl_nvdimm_bridge drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xcc59c983 is_root_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xd8bf47cc devm_cxl_add_nvdimm_bridge drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xe4340369 cxl_probe_device_regs drivers/cxl/core/cxl_core EXPORT_SYMBOL arch/x86/crypto/blake2s-x86_64 0x23aa18fe blake2s_compress_arch EXPORT_SYMBOL arch/x86/crypto/chacha-x86_64 0x220b49ab chacha_crypt_arch EXPORT_SYMBOL arch/x86/crypto/chacha-x86_64 0xdc94f829 chacha_init_arch @@ -28,7 +28,7 @@ EXPORT_SYMBOL arch/x86/crypto/poly1305-x86_64 0xd9ec23eb poly1305_update_arch EXPORT_SYMBOL arch/x86/crypto/poly1305-x86_64 0xe1df0e1b poly1305_init_arch EXPORT_SYMBOL arch/x86/crypto/poly1305-x86_64 0xfaeb41b2 poly1305_final_arch -EXPORT_SYMBOL arch/x86/kvm/kvm 0x643c57a0 kvm_cpu_has_pending_timer +EXPORT_SYMBOL arch/x86/kvm/kvm 0x050d6af4 kvm_cpu_has_pending_timer EXPORT_SYMBOL crypto/blake2b_generic 0x32e24c8a blake2b_compress_generic EXPORT_SYMBOL crypto/ecc 0x16e410ff vli_from_be64 EXPORT_SYMBOL crypto/ecc 0x188a1647 ecc_is_pubkey_valid_full @@ -55,57 +55,57 @@ EXPORT_SYMBOL crypto/sha3_generic 0x1f1f4407 crypto_sha3_update EXPORT_SYMBOL crypto/sha3_generic 0x492c9beb crypto_sha3_final EXPORT_SYMBOL crypto/sha3_generic 0xe5efeb6c crypto_sha3_init -EXPORT_SYMBOL crypto/sm2_generic 0x99ee75b3 sm2_compute_z_digest -EXPORT_SYMBOL crypto/sm3_generic 0x3b3a88c1 crypto_sm3_final -EXPORT_SYMBOL crypto/sm3_generic 0x5ca402fd crypto_sm3_finup -EXPORT_SYMBOL crypto/sm3_generic 0xa2b8c1e1 crypto_sm3_update +EXPORT_SYMBOL crypto/sm2_generic 0x20e472ad sm2_compute_z_digest +EXPORT_SYMBOL crypto/sm3_generic 0x2501d596 crypto_sm3_update +EXPORT_SYMBOL crypto/sm3_generic 0x88b3b39f crypto_sm3_finup +EXPORT_SYMBOL crypto/sm3_generic 0xb4144d2a crypto_sm3_final EXPORT_SYMBOL crypto/xor 0x5b6c00e6 xor_blocks EXPORT_SYMBOL drivers/acpi/nfit/nfit 0x06848c60 to_nfit_uuid +EXPORT_SYMBOL drivers/acpi/video 0x5dd8269a acpi_video_get_edid EXPORT_SYMBOL drivers/acpi/video 0x6de7f7ff acpi_video_get_backlight_type -EXPORT_SYMBOL drivers/acpi/video 0x781f4903 acpi_video_get_levels EXPORT_SYMBOL drivers/acpi/video 0x7a45377b acpi_video_unregister EXPORT_SYMBOL drivers/acpi/video 0x7cc484a5 acpi_video_handles_brightness_key_presses -EXPORT_SYMBOL drivers/acpi/video 0x825914df acpi_video_get_edid +EXPORT_SYMBOL drivers/acpi/video 0x82b859e5 acpi_video_get_levels EXPORT_SYMBOL drivers/acpi/video 0x8826c13b acpi_video_register EXPORT_SYMBOL drivers/acpi/video 0xe92ca535 acpi_video_set_dmi_backlight_type -EXPORT_SYMBOL drivers/atm/suni 0x5dc42c52 suni_init -EXPORT_SYMBOL drivers/atm/uPD98402 0x2a7de65b uPD98402_init -EXPORT_SYMBOL drivers/bcma/bcma 0x2bc861a8 bcma_core_irq -EXPORT_SYMBOL drivers/bcma/bcma 0x474a8947 bcma_core_dma_translation +EXPORT_SYMBOL drivers/atm/suni 0x8e55b0a0 suni_init +EXPORT_SYMBOL drivers/atm/uPD98402 0x1a70d0be uPD98402_init +EXPORT_SYMBOL drivers/bcma/bcma 0x3baa0f4d bcma_core_irq +EXPORT_SYMBOL drivers/bcma/bcma 0xf57e55c2 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 0x2f006449 pi_schedule_claimed -EXPORT_SYMBOL drivers/block/paride/paride 0x34a20336 pi_write_block -EXPORT_SYMBOL drivers/block/paride/paride 0x3ded69c5 pi_connect +EXPORT_SYMBOL drivers/block/paride/paride 0x1eecae35 pi_write_block EXPORT_SYMBOL drivers/block/paride/paride 0x4267110a pi_register_driver -EXPORT_SYMBOL drivers/block/paride/paride 0x46cac600 paride_unregister -EXPORT_SYMBOL drivers/block/paride/paride 0x55080014 pi_init -EXPORT_SYMBOL drivers/block/paride/paride 0x99aa5d64 pi_read_regr -EXPORT_SYMBOL drivers/block/paride/paride 0xa48629f4 pi_do_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0x545d57b3 paride_register +EXPORT_SYMBOL drivers/block/paride/paride 0x6fc5922f pi_do_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0x84ff62cd pi_read_block +EXPORT_SYMBOL drivers/block/paride/paride 0x8661c7a4 pi_disconnect +EXPORT_SYMBOL drivers/block/paride/paride 0x8f3e2734 paride_unregister +EXPORT_SYMBOL drivers/block/paride/paride 0x91158678 pi_connect +EXPORT_SYMBOL drivers/block/paride/paride 0x995fd1f5 pi_schedule_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0xa074c6e7 pi_read_regr EXPORT_SYMBOL drivers/block/paride/paride 0xb21ba07d pi_unregister_driver -EXPORT_SYMBOL drivers/block/paride/paride 0xb2a7b39a pi_read_block -EXPORT_SYMBOL drivers/block/paride/paride 0xc2fd27e7 pi_write_regr -EXPORT_SYMBOL drivers/block/paride/paride 0xca6ea282 pi_disconnect -EXPORT_SYMBOL drivers/block/paride/paride 0xd330c2ac pi_release -EXPORT_SYMBOL drivers/block/paride/paride 0xe56125b8 paride_register -EXPORT_SYMBOL drivers/bluetooth/btbcm 0xfcdace57 btbcm_patchram -EXPORT_SYMBOL drivers/bluetooth/btrsi 0x51fcf60d rsi_bt_ops -EXPORT_SYMBOL drivers/bus/mhi/core/mhi 0xed71bf33 mhi_sync_power_up +EXPORT_SYMBOL drivers/block/paride/paride 0xbb25e380 pi_release +EXPORT_SYMBOL drivers/block/paride/paride 0xce7623f0 pi_write_regr +EXPORT_SYMBOL drivers/block/paride/paride 0xeb78773c pi_init +EXPORT_SYMBOL drivers/bluetooth/btbcm 0x6b57e774 btbcm_patchram +EXPORT_SYMBOL drivers/bluetooth/btrsi 0xdae0cf1f rsi_bt_ops +EXPORT_SYMBOL drivers/bus/mhi/core/mhi 0x80365f9b mhi_sync_power_up EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x03bc993e ipmi_set_my_LUN +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x04bfea88 ipmi_smi_watcher_register EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x0705dd14 ipmi_register_for_cmd -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x0c424095 ipmi_add_smi EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x12dd1e77 ipmi_set_maintenance_mode -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x16a2b6d5 ipmi_get_smi_info EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x230094ac ipmi_smi_watchdog_pretimeout +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x2c5da8d7 ipmi_smi_watcher_unregister EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x31cab048 ipmi_smi_msg_received EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x40f2b10c ipmi_alloc_smi_msg +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x4ba0711e ipmi_add_smi EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x4c2054d7 ipmi_request_settime -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x500f5712 ipmi_smi_watcher_unregister EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x50f65edf ipmi_set_gets_events -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x620bf550 ipmi_smi_watcher_register EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x67369b42 ipmi_addr_src_to_str +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x6c76b2a6 ipmi_get_smi_info EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x74778a80 ipmi_get_my_LUN EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x804f922a ipmi_addr_length EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x80aa4656 ipmi_free_recv_msg @@ -121,1058 +121,1058 @@ 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 0x58abd4a2 st33zp24_remove -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x7cdeb990 st33zp24_probe -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x99cc8aae st33zp24_pm_resume -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xd89a6d2e st33zp24_pm_suspend -EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0x1e722bae xillybus_init_chrdev -EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0x2a1a7540 xillybus_find_inode -EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0x7c76db9c xillybus_cleanup_chrdev +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x19636ec4 st33zp24_probe +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x9cacb928 st33zp24_remove +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xce6f14fe st33zp24_pm_suspend +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xd9c3d005 st33zp24_pm_resume +EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0x10c91429 xillybus_find_inode +EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0x8cac1626 xillybus_init_chrdev +EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0xbf07df01 xillybus_cleanup_chrdev EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x25978d50 xillybus_isr -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xd3a01a37 xillybus_endpoint_discovery -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xed792469 xillybus_endpoint_remove -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xf5d85db0 xillybus_init_endpoint -EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x29309e35 atmel_i2c_probe -EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x5a81cdb3 atmel_i2c_enqueue +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x3f06c9a5 xillybus_endpoint_discovery +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x54e9c7f3 xillybus_init_endpoint +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xe68daf28 xillybus_endpoint_remove +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x02283be1 atmel_i2c_send_receive +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x04c2428f atmel_i2c_enqueue +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x4718ed04 atmel_i2c_probe EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x80a11b1d atmel_i2c_init_read_cmd -EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xba8dc79b atmel_i2c_send_receive EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xc71ed50c atmel_i2c_init_genkey_cmd 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/ccp/ccp 0x47d3c97f psp_check_tee_status EXPORT_SYMBOL drivers/crypto/ccp/ccp 0xaa04056c psp_tee_process_cmd -EXPORT_SYMBOL drivers/firewire/firewire-core 0x0518124f fw_iso_buffer_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0x03345d5c fw_iso_context_flush_completions +EXPORT_SYMBOL drivers/firewire/firewire-core 0x071338ca fw_core_remove_card EXPORT_SYMBOL drivers/firewire/firewire-core 0x0bc6094c fw_core_remove_descriptor -EXPORT_SYMBOL drivers/firewire/firewire-core 0x1348a02b fw_schedule_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0x0d507dcc fw_send_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x11c3f7ac fw_fill_response EXPORT_SYMBOL drivers/firewire/firewire-core 0x2885fec5 fw_get_request_speed -EXPORT_SYMBOL drivers/firewire/firewire-core 0x30ae0421 fw_iso_context_flush_completions +EXPORT_SYMBOL drivers/firewire/firewire-core 0x289cc602 fw_iso_context_start +EXPORT_SYMBOL drivers/firewire/firewire-core 0x38142ada fw_run_transaction 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 0x3d5ec4ff fw_iso_context_create -EXPORT_SYMBOL drivers/firewire/firewire-core 0x45e62a69 fw_core_handle_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0x64ed467a fw_iso_context_queue_flush +EXPORT_SYMBOL drivers/firewire/firewire-core 0x696f1af3 fw_device_enable_phys_dma +EXPORT_SYMBOL drivers/firewire/firewire-core 0x6a8de239 fw_iso_buffer_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0x6d180166 fw_core_handle_request EXPORT_SYMBOL drivers/firewire/firewire-core 0x6dc50487 fw_csr_string -EXPORT_SYMBOL drivers/firewire/firewire-core 0x776a6fd4 fw_send_request -EXPORT_SYMBOL drivers/firewire/firewire-core 0x78355bcc fw_iso_context_queue_flush +EXPORT_SYMBOL drivers/firewire/firewire-core 0x72fb6e08 fw_card_initialize +EXPORT_SYMBOL drivers/firewire/firewire-core 0x783f4f90 fw_send_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7c00bb01 fw_core_handle_response EXPORT_SYMBOL drivers/firewire/firewire-core 0x86468d44 fw_rcode_string -EXPORT_SYMBOL drivers/firewire/firewire-core 0x8a78bfa7 fw_card_initialize -EXPORT_SYMBOL drivers/firewire/firewire-core 0x9d7b8f98 fw_fill_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0xa37201ae fw_send_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0xa6e87ae1 fw_core_remove_card -EXPORT_SYMBOL drivers/firewire/firewire-core 0xaac26c11 fw_device_enable_phys_dma +EXPORT_SYMBOL drivers/firewire/firewire-core 0x8bef9166 fw_card_add +EXPORT_SYMBOL drivers/firewire/firewire-core 0x9609024e fw_core_add_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0x9b41d17e fw_iso_context_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0xa3741044 fw_iso_buffer_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0xadc68a3a fw_iso_context_queue EXPORT_SYMBOL drivers/firewire/firewire-core 0xaedf84ce fw_high_memory_region -EXPORT_SYMBOL drivers/firewire/firewire-core 0xb08b04fe fw_card_add -EXPORT_SYMBOL drivers/firewire/firewire-core 0xb4d51b85 fw_iso_context_start -EXPORT_SYMBOL drivers/firewire/firewire-core 0xb5c0a167 fw_iso_context_queue -EXPORT_SYMBOL drivers/firewire/firewire-core 0xb80783ea fw_iso_context_destroy -EXPORT_SYMBOL drivers/firewire/firewire-core 0xbdfbafb3 fw_run_transaction -EXPORT_SYMBOL drivers/firewire/firewire-core 0xc0268c06 fw_core_handle_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0xc0845be6 fw_iso_buffer_destroy -EXPORT_SYMBOL drivers/firewire/firewire-core 0xc0c72460 fw_iso_context_stop -EXPORT_SYMBOL drivers/firewire/firewire-core 0xc82d20bb fw_cancel_transaction -EXPORT_SYMBOL drivers/firewire/firewire-core 0xd9e57bd5 fw_core_handle_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0xbfbafdfc fw_iso_context_create +EXPORT_SYMBOL drivers/firewire/firewire-core 0xccdf6b74 fw_iso_resource_manage +EXPORT_SYMBOL drivers/firewire/firewire-core 0xcd2b8061 fw_schedule_bus_reset 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 0xedfe248e fw_core_add_address_handler -EXPORT_SYMBOL drivers/firewire/firewire-core 0xfb537713 fw_core_remove_address_handler -EXPORT_SYMBOL drivers/firewire/firewire-core 0xfc9a0f29 fw_bus_type -EXPORT_SYMBOL drivers/firewire/firewire-core 0xffcc95b9 fw_iso_resource_manage -EXPORT_SYMBOL drivers/fpga/dfl 0x3d8eec0e dfl_driver_unregister -EXPORT_SYMBOL drivers/fpga/dfl 0x4b56ddaa __dfl_driver_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0x006e7a06 drm_panel_prepare +EXPORT_SYMBOL drivers/firewire/firewire-core 0xec1da9a1 fw_bus_type +EXPORT_SYMBOL drivers/firewire/firewire-core 0xf4a0253c fw_iso_context_stop +EXPORT_SYMBOL drivers/firewire/firewire-core 0xf58fd9b3 fw_cancel_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0xf7fd7913 fw_core_remove_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0xfd3c277a fw_core_handle_bus_reset +EXPORT_SYMBOL drivers/fpga/dfl 0x932e4d7a __dfl_driver_register +EXPORT_SYMBOL drivers/fpga/dfl 0xd4934e1e dfl_driver_unregister EXPORT_SYMBOL drivers/gpu/drm/drm 0x00738a74 drm_driver_legacy_fb_format -EXPORT_SYMBOL drivers/gpu/drm/drm 0x008baca3 drm_display_info_set_bus_formats -EXPORT_SYMBOL drivers/gpu/drm/drm 0x01253ceb drm_crtc_vblank_helper_get_vblank_timestamp -EXPORT_SYMBOL drivers/gpu/drm/drm 0x026e5774 drm_atomic_private_obj_fini -EXPORT_SYMBOL drivers/gpu/drm/drm 0x02c0aa0c drm_crtc_vblank_restore -EXPORT_SYMBOL drivers/gpu/drm/drm 0x02f0648b drm_vblank_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x035a192e drm_mode_get_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0176c1b8 drm_gem_prime_import_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x01ca525d drm_framebuffer_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0218f4b3 drm_atomic_bridge_chain_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0x02a45420 drm_bridge_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x032f1691 drm_writeback_connector_init EXPORT_SYMBOL drivers/gpu/drm/drm 0x03c63897 __drm_get_edid_firmware_path -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0434a9b6 drm_dev_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0460609b drm_plane_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x051fcd9d drm_i2c_encoder_save +EXPORT_SYMBOL drivers/gpu/drm/drm 0x05cedaf4 drm_gem_object_lookup EXPORT_SYMBOL drivers/gpu/drm/drm 0x065e86ac drm_detect_hdmi_monitor EXPORT_SYMBOL drivers/gpu/drm/drm 0x070b28aa drm_ht_remove_item -EXPORT_SYMBOL drivers/gpu/drm/drm 0x07eb470d drm_send_event_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x07adf4b8 drm_crtc_send_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x07c01217 drm_add_modes_noedid EXPORT_SYMBOL drivers/gpu/drm/drm 0x07fb449a drm_vma_offset_manager_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x082c9075 drm_client_dev_hotplug -EXPORT_SYMBOL drivers/gpu/drm/drm 0x08523c3d drm_color_lut_check -EXPORT_SYMBOL drivers/gpu/drm/drm 0x08557f47 drm_syncobj_get_handle -EXPORT_SYMBOL drivers/gpu/drm/drm 0x08b0c3c9 drm_plane_get_damage_clips_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0909e785 drm_atomic_bridge_chain_check -EXPORT_SYMBOL drivers/gpu/drm/drm 0x09f3205a drm_dev_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a4a16df drm_gem_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a5c236a drm_i2c_encoder_commit EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a72f765 drm_clflush_virt_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0aac6559 drm_atomic_get_old_bridge_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0c283dfb drm_mode_prune_invalid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0cb9f80e drm_plane_create_rotation_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0b2cc966 drm_connector_attach_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0b7cb830 drm_gem_shmem_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d11de79 drm_mode_create_hdmi_colorspace_property EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d9b4753 drm_mode_equal -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0de6e1a5 drm_hdcp_update_content_protection -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0dfe4c80 drm_aperture_remove_conflicting_framebuffers -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0e03bad1 drm_connector_list_update -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0e422411 drm_connector_attach_content_type_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ed2c79b __drmm_add_action -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ed9cd98 drm_atomic_bridge_chain_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f04d349 drm_panel_unprepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0eb0104f drm_client_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ed16566 drm_bridge_chain_post_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f17fd80 drm_panel_enable EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f7acb66 drm_mm_print +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fc88595 drm_connector_set_tile_property EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fd60df2 drm_get_connector_status_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x106ff94e drm_dev_unregister EXPORT_SYMBOL drivers/gpu/drm/drm 0x107742a9 drm_get_subpixel_order_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1093d0ed drm_property_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1093ed77 drm_panel_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x11b9ea1c drm_connector_atomic_hdr_metadata_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x11bd6eaa drm_probe_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1217886b drm_mode_create_tv_margin_properties EXPORT_SYMBOL drivers/gpu/drm/drm 0x127a8c6b drm_flip_work_queue -EXPORT_SYMBOL drivers/gpu/drm/drm 0x12c076eb drm_crtc_from_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0x134f0528 drm_property_replace_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1512aefa drm_gem_put_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0x15f34392 drm_gem_prime_export -EXPORT_SYMBOL drivers/gpu/drm/drm 0x165aae5d drm_crtc_check_viewport -EXPORT_SYMBOL drivers/gpu/drm/drm 0x16811488 drm_crtc_vblank_off -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1686113c __drmm_add_action_or_reset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x175f0619 drm_gem_unmap_dma_buf -EXPORT_SYMBOL drivers/gpu/drm/drm 0x17adc5d7 drm_print_regset32 -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1825bca4 drm_mode_create_tv_margin_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x18e52499 drm_dev_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm 0x197358cc drm_property_create_enum -EXPORT_SYMBOL drivers/gpu/drm/drm 0x197a65e5 drmm_kfree +EXPORT_SYMBOL drivers/gpu/drm/drm 0x129589e2 drm_dev_dbg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x13733b5e drm_property_create_object +EXPORT_SYMBOL drivers/gpu/drm/drm 0x141a7db1 drm_mode_is_420 +EXPORT_SYMBOL drivers/gpu/drm/drm 0x143f24ab drm_crtc_vblank_count_and_time +EXPORT_SYMBOL drivers/gpu/drm/drm 0x144082db drm_dev_printk +EXPORT_SYMBOL drivers/gpu/drm/drm 0x15e03c46 drm_crtc_vblank_helper_get_vblank_timestamp +EXPORT_SYMBOL drivers/gpu/drm/drm 0x16d12f20 drm_mode_object_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0x18f94071 drm_framebuffer_unregister_private +EXPORT_SYMBOL drivers/gpu/drm/drm 0x19644480 drm_send_event_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x19e1af60 drm_panel_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a0cfe07 drm_atomic_state_default_clear EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a411479 drm_syncobj_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a785601 drm_plane_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1b123d30 drm_connector_set_tile_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1b4af11c drm_connector_attach_scaling_mode_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1ba8d1f3 drm_gem_vm_open -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d3308e3 drm_connector_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1db431de drm_atomic_normalize_zpos -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1e562f09 drm_crtc_create_scaling_filter_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1ec5dad0 drm_modeset_lock -EXPORT_SYMBOL drivers/gpu/drm/drm 0x201d29d2 drm_writeback_connector_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2107fc3a drm_mode_create_hdmi_colorspace_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2158c051 drm_writeback_prepare_job -EXPORT_SYMBOL drivers/gpu/drm/drm 0x215ae780 drm_property_create_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0x21624217 drm_atomic_state_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c5643bc drm_gem_shmem_create_with_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d718c3b drm_syncobj_find_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1dd61863 drm_cvt_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1e8f7c5e drm_client_framebuffer_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1ec324de drm_crtc_vblank_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1f5f5afb drm_atomic_get_connector_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x20b1734a drm_universal_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x20fcd504 drm_modeset_lock_single_interruptible +EXPORT_SYMBOL drivers/gpu/drm/drm 0x217823ff drm_file_get_master EXPORT_SYMBOL drivers/gpu/drm/drm 0x2183c08c drm_mm_scan_add_block -EXPORT_SYMBOL drivers/gpu/drm/drm 0x218efd5d drm_mode_object_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x21bd9701 drm_connector_register EXPORT_SYMBOL drivers/gpu/drm/drm 0x21d541eb drm_flip_work_queue_task -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2256ed17 drm_gem_prime_import -EXPORT_SYMBOL drivers/gpu/drm/drm 0x23c9eb1b drm_i2c_encoder_mode_set -EXPORT_SYMBOL drivers/gpu/drm/drm 0x23e405bf drm_mode_create_content_type_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x245f91a6 drm_property_blob_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x24c3612a drm_atomic_state_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2267937d drm_framebuffer_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x236d499d drm_atomic_private_obj_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0x236e221f drm_hdmi_avi_infoframe_bars +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2390f561 drm_color_lut_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0x247c4f2e drm_gem_unmap_dma_buf 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 0x252cf6e5 __devm_drm_dev_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x25367084 drm_gem_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x257c2ec3 drm_client_framebuffer_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x25c27c3f drm_debugfs_remove_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0x252a4fa4 drm_modeset_unlock_all EXPORT_SYMBOL drivers/gpu/drm/drm 0x25daad93 __drm_mm_interval_first -EXPORT_SYMBOL drivers/gpu/drm/drm 0x26942bbf drm_property_lookup_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0x274a077e drm_gem_dma_resv_wait +EXPORT_SYMBOL drivers/gpu/drm/drm 0x274e61cc drm_mode_validate_driver EXPORT_SYMBOL drivers/gpu/drm/drm 0x2754dad8 drm_mm_reserve_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0x27930c5f drm_atomic_get_connector_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x285dd70c drm_master_internal_acquire +EXPORT_SYMBOL drivers/gpu/drm/drm 0x27b93cff drm_gem_unlock_reservations +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2827bd7b drm_gem_prime_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0x28403e7c drm_invalid_op EXPORT_SYMBOL drivers/gpu/drm/drm 0x28779e52 drm_printf -EXPORT_SYMBOL drivers/gpu/drm/drm 0x294c2580 drm_add_modes_noedid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2998194e drm_mode_set_config_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x288eff83 drm_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x29c1d733 drm_gem_cma_prime_import_sg_table_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x29dbfa15 drm_crtc_vblank_put EXPORT_SYMBOL drivers/gpu/drm/drm 0x29f078d1 drm_mode_legacy_fb_format -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a37863b drmm_mode_config_init EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a962499 drm_mm_scan_init_with_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ad8ae2e drm_syncobj_replace_fence -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2b09d8ab drm_atomic_set_fence_for_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2b2e614b drm_mode_probed_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2b30432b drm_client_framebuffer_delete -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2b407cc8 drm_hdmi_avi_infoframe_content_type -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2bb99f6e drm_mode_create_suggested_offset_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c23df40 drm_modeset_drop_locks -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ca44c67 drm_encoder_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2b2916d5 drm_plane_create_color_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c42dd4a drm_gem_shmem_purge_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c5f5b28 drm_gem_shmem_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2cfc3ce7 drm_release_noglobal EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d50570f drm_rect_calc_hscale -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d71e296 drm_connector_atomic_hdr_metadata_equal -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d88d49a drm_poll -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e4251e0 drm_connector_attach_hdr_output_metadata_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d9b3995 drm_hdmi_avi_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e186b2b drm_mode_create_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e334132 drm_client_buffer_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ea649ed drm_property_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2eb83adc drm_object_attach_property EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ed3c600 drm_mode_debug_printmodeline -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3006937b drm_plane_from_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0x30b31977 __drmm_universal_plane_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x30c6f36b drm_atomic_bridge_chain_post_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x30f334ff drm_property_create_bitmask +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f1315dd drm_crtc_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f2ebef7 drm_i2c_encoder_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f388f8f drm_gem_shmem_pin +EXPORT_SYMBOL drivers/gpu/drm/drm 0x308c14a1 drm_client_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x31118ae8 drm_display_info_set_bus_formats EXPORT_SYMBOL drivers/gpu/drm/drm 0x31b8a5e3 __drm_set_edid_firmware_path -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3256970c drm_mode_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x321b9db0 drm_vblank_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x324fc499 drm_i2c_encoder_dpms EXPORT_SYMBOL drivers/gpu/drm/drm 0x32a0cc37 drm_print_bits -EXPORT_SYMBOL drivers/gpu/drm/drm 0x339affbd drm_property_create_signed_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x33cf1943 drm_panel_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x35385a94 drm_property_create_object -EXPORT_SYMBOL drivers/gpu/drm/drm 0x35413b30 drm_bridge_chain_post_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x357d03d7 drm_bridge_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x366fe551 drm_gem_map_dma_buf -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3670cc85 drm_compat_ioctl -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3697ca11 drm_client_modeset_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm 0x38acf4e0 drm_crtc_vblank_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x38df2d9d drm_framebuffer_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x392368ee drm_syncobj_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0x32b1b262 drm_writeback_get_out_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3363f761 drm_mode_put_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x33b8a92e drm_atomic_bridge_chain_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x34056b06 drm_gem_handle_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0x340716ad drm_property_create_bitmask +EXPORT_SYMBOL drivers/gpu/drm/drm 0x366d66b0 drm_print_regset32 +EXPORT_SYMBOL drivers/gpu/drm/drm 0x37c4cdc3 drm_client_modeset_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm 0x39c20550 drm_mode_crtc_set_gamma_size EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ab87110 drm_mode_equal_no_clocks -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b053acb drm_connector_set_link_status_property EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b0e5e9c __drm_puts_coredump -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b3d41c2 drm_bridge_chain_pre_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b7d5eb9 drm_gem_unlock_reservations +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b83bc4f drm_atomic_check_only EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ba17eab drm_ht_insert_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3bbb1be0 drm_mode_validate_ycbcr420 +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c050d10 drm_i2c_encoder_init EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c22a4d8 drm_vma_offset_manager_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3d40a55f drm_gem_shmem_pin -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ddda832 drm_gem_object_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3de580b2 drm_sysfs_connector_status_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e16b73d drm_ioctl_permit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c427864 drm_atomic_get_new_bridge_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3d78069e drm_property_blob_put EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e50b109 drm_gem_fence_array_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3efc8a8c drm_ioctl_kernel EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f405489 __drm_printfn_err -EXPORT_SYMBOL drivers/gpu/drm/drm 0x40235b3c drm_crtc_handle_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x40a6233b drm_atomic_get_bridge_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x413554c1 drm_invalid_op -EXPORT_SYMBOL drivers/gpu/drm/drm 0x417be5e1 drm_event_cancel_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4368985a drm_atomic_nonblocking_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x437d9c44 drm_atomic_state_default_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f8034fd drm_atomic_bridge_chain_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3fed6108 drm_plane_create_zpos_immutable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x41a05bae drm_prime_pages_to_sg EXPORT_SYMBOL drivers/gpu/drm/drm 0x4403a9c3 drm_mode_get_hv_timing EXPORT_SYMBOL drivers/gpu/drm/drm 0x44a2cadb drm_prime_sg_to_dma_addr_array -EXPORT_SYMBOL drivers/gpu/drm/drm 0x44f06837 drm_modeset_unlock +EXPORT_SYMBOL drivers/gpu/drm/drm 0x44a95bd2 drm_modeset_unlock +EXPORT_SYMBOL drivers/gpu/drm/drm 0x44cb23e3 drm_gem_cma_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4510b9ea drm_connector_attach_dp_subconnector_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4532fe9b drm_gem_handle_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4559e22e drm_connector_attach_content_protection_property EXPORT_SYMBOL drivers/gpu/drm/drm 0x4575a0ca drm_mode_set_crtcinfo -EXPORT_SYMBOL drivers/gpu/drm/drm 0x46a5aeab drm_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0x45dd0191 drm_gem_lock_reservations +EXPORT_SYMBOL drivers/gpu/drm/drm 0x46d75b51 drm_dev_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x47510c7d drm_atomic_print_new_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4824d883 drm_connector_list_iter_next EXPORT_SYMBOL drivers/gpu/drm/drm 0x4831da6e drm_vma_offset_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x491adc3e drm_object_attach_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a10b9c1 drm_mode_find_dmt EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a35d30d drm_mode_set_name EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a7d75b0 drm_memcpy_from_wc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4aa28bcf drm_mode_put_tile_group -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4abbbff2 drm_gem_dmabuf_export -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ad02d4d drm_prime_gem_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b0dc677 drm_hdmi_avi_infoframe_colorspace +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ad52167 drm_syncobj_find EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b7ebf95 drm_mm_remove_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4bb31794 drm_mode_create_tile_group -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d3e6c40 drm_connector_update_edid_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e1792fc drm_writeback_queue_job -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e2e49dd drm_atomic_set_fb_for_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e599bb4 drm_crtc_send_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4eaa0256 drm_connector_list_iter_end -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ed1e9bc drm_property_create_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4bb60326 drm_crtc_vblank_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4bdc6a64 drm_vblank_work_cancel_sync +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ccec922 drm_property_blob_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4cf6c2bc drm_is_current_master +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4dbac631 drm_event_cancel_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4df82a96 drm_object_property_set_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e3c3262 __drm_atomic_helper_set_config EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f18a150 __drm_debug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4fda2d0b drm_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x500d2a8d drm_dev_enter EXPORT_SYMBOL drivers/gpu/drm/drm 0x50674de7 drm_timeout_abs_to_jiffies -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5100cf75 drm_gem_shmem_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50a2d1a4 drm_plane_get_damage_clips_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50a787f9 drm_property_create_signed_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50faaaf4 drm_connector_attach_edid_property EXPORT_SYMBOL drivers/gpu/drm/drm 0x513072fe __drm_puts_seq_file -EXPORT_SYMBOL drivers/gpu/drm/drm 0x514d17b2 drm_connector_attach_dp_subconnector_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x51982621 drm_event_reserve_init EXPORT_SYMBOL drivers/gpu/drm/drm 0x521ad6d0 drm_puts -EXPORT_SYMBOL drivers/gpu/drm/drm 0x534e8204 drm_gem_objects_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x52e09394 drm_set_preferred_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x53675a41 drm_add_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x53c6b2dc drm_gem_dmabuf_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x53ecccaa drm_panel_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5456aff3 drm_i2c_encoder_mode_set EXPORT_SYMBOL drivers/gpu/drm/drm 0x5542443b drm_flip_work_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x55731596 drm_gem_shmem_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x55f85091 drm_client_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x571dc47b drm_mode_create_dvi_i_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 0x58c5d1b0 drm_atomic_set_crtc_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5831f041 drm_mode_create_aspect_ratio_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x58b03339 drm_crtc_arm_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x58bfb067 drm_bridge_chain_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x58f0a3b5 drm_crtc_vblank_count EXPORT_SYMBOL drivers/gpu/drm/drm 0x59056243 drm_mm_replace_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0x598a373c drm_gem_shmem_purge -EXPORT_SYMBOL drivers/gpu/drm/drm 0x59912cba drm_plane_create_scaling_filter_property EXPORT_SYMBOL drivers/gpu/drm/drm 0x599dea05 drm_edid_is_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x59f04556 drm_gem_mmap_obj -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5a2b0ff2 drm_mode_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5a72a816 drm_bridge_attach -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5b7414c0 drm_crtc_vblank_waitqueue -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5b830d6c drm_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c603b93 drm_gem_dmabuf_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c729f7c drm_mode_is_420_only -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c9c4e27 drm_crtc_vblank_on -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5ddfe7e6 drm_crtc_init_with_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5e52034d drm_i2c_encoder_detect -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5e969636 drm_property_create_bool -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f5c125d drm_release_noglobal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5af66d7f drm_atomic_state_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5b9440c5 drm_property_lookup_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5bc5d74b drm_atomic_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d80b787 drm_client_framebuffer_flush +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d9a8dae drm_connector_attach_content_type_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f105b58 drm_mode_create EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f7985a5 drm_mm_scan_remove_block -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6089cced drm_panel_get_modes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6313669f drm_hdmi_avi_infoframe_from_display_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x65218a8f drm_hdmi_avi_infoframe_bars +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f99a5dd drm_atomic_state_default_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f9fc880 drm_atomic_get_bridge_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5ff7f8df drm_sysfs_connector_status_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x615f7336 __drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6250f1f2 drm_writeback_queue_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0x62f89dd4 drm_client_modeset_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0x63a745bf drm_connector_attach_tv_margin_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x63aa443c drm_read +EXPORT_SYMBOL drivers/gpu/drm/drm 0x642c6ad4 drm_gem_create_mmap_offset_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x645befc6 drm_gem_prime_handle_to_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0x652efd4e drm_gem_dmabuf_export EXPORT_SYMBOL drivers/gpu/drm/drm 0x65702bd6 drm_default_rgb_quant_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x67d8442a drm_crtc_arm_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x67f22569 drm_mode_validate_ycbcr420 +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6582d0cd drm_connector_list_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0x66515f59 drm_crtc_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x665aad4c drm_atomic_add_affected_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm 0x671fe3bd drm_modeset_acquire_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0x672a99ec drm_atomic_get_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x67befa70 drm_crtc_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x67e1c273 drm_gem_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x686beaa3 drm_client_modeset_probe EXPORT_SYMBOL drivers/gpu/drm/drm 0x6914a422 drm_edid_are_equal -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6948d94f drm_gem_shmem_create_with_handle -EXPORT_SYMBOL drivers/gpu/drm/drm 0x69a36f62 drm_property_blob_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6a0f3a07 drm_bridge_chain_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6a18ac7f drm_gem_shmem_purge_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6bb211a6 drm_gem_dmabuf_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x69710d64 drm_i2c_encoder_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6a603fc4 drm_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b6d4992 drm_gem_shmem_purge +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6bc1054b drm_panel_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6bce85bc drm_add_override_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6c210dc2 drm_vblank_work_schedule +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6cf8dccb drm_prime_sg_to_page_array +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6daa913c drm_crtc_vblank_helper_get_vblank_timestamp_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6dc3e051 drm_connector_set_panel_orientation_with_quirk EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e30ba8e drm_rect_rotate_inv -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e7bf951 drm_atomic_add_encoder_bridges -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ed006e5 drm_client_rotation +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e6456eb drm_crtc_check_viewport +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ed84cf5 drm_atomic_get_crtc_state EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ef2f78e drm_format_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6fadc823 drm_sysfs_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6fc40f58 drm_vblank_work_cancel_sync -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6fcc97a6 drm_atomic_get_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6fd8dab9 drm_client_modeset_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x714c513b drm_property_add_enum -EXPORT_SYMBOL drivers/gpu/drm/drm 0x716b1b40 drm_gem_get_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7468bf43 drm_dev_unplug -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7497cad8 drm_gem_cma_print_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0x76c5ea74 drm_crtc_vblank_helper_get_vblank_timestamp_internal -EXPORT_SYMBOL drivers/gpu/drm/drm 0x770e2fff drm_dev_dbg -EXPORT_SYMBOL drivers/gpu/drm/drm 0x77d760af drm_dev_has_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x78de8ce5 drm_framebuffer_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x79b7860b drm_plane_create_blend_mode_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7ad67d99 drm_connector_set_panel_orientation_with_quirk -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7afc0d9f drm_gtf_mode_complex +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6fa34ddd drm_crtc_enable_color_mgmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0x703db344 drm_mode_is_420_also +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7086a72c drm_gem_shmem_unpin +EXPORT_SYMBOL drivers/gpu/drm/drm 0x71731dbc drm_hdmi_avi_infoframe_colorspace +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7228619d drm_property_create_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0x72953062 drm_gem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x72e4f8e6 drm_plane_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7357864d drm_syncobj_get_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0x74f75258 drm_gem_object_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x75542c06 drm_client_modeset_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x76925fed drmm_kfree +EXPORT_SYMBOL drivers/gpu/drm/drm 0x771344f4 drm_connector_set_vrr_capable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x775bc559 drm_sysfs_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x78c74e6f drm_dev_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x795572a7 drm_gem_map_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x796bad07 drm_i2c_encoder_restore +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7983c0b8 drm_framebuffer_plane_width EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b2e2166 drm_vma_node_revoke -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b65d676 drm_event_reserve_init_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b674eea drm_gem_prime_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d2ad279 drm_crtc_vblank_reset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7f833802 drm_gem_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fc6edda devm_aperture_acquire_from_firmware -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fca7972 drm_gem_shmem_unpin -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fe5a4e2 drm_gem_cma_prime_import_sg_table_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7ffdee62 drm_mode_object_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x80833085 drm_handle_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x81514bab drm_gem_shmem_madvise +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b5bc3a6 drm_writeback_prepare_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c7f6837 drm_panel_get_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c98eb6c drm_framebuffer_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7cc39b2a drm_mode_probed_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7edac4fe drm_hdmi_vendor_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7eed1915 drm_gem_vm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fa5cad9 drm_mode_is_420_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0x80e254e0 drm_property_replace_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x810336cf drm_modeset_lock +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8147a4d8 drm_gem_vmap EXPORT_SYMBOL drivers/gpu/drm/drm 0x81992424 drm_edid_header_is_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x81a6ce96 drm_crtc_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x81d833a7 drm_syncobj_find_fence -EXPORT_SYMBOL drivers/gpu/drm/drm 0x81dc2088 drm_noop -EXPORT_SYMBOL drivers/gpu/drm/drm 0x82b80bd1 drm_atomic_print_new_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x83419f8f drm_bridge_chain_mode_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8406b121 drm_client_buffer_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x84223012 drm_mode_create_tv_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8253bd72 drm_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8357e5e8 drm_encoder_cleanup EXPORT_SYMBOL drivers/gpu/drm/drm 0x842dd90c drm_flip_work_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8460274b drm_syncobj_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x84714fdd drm_mode_create_scaling_mode_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8479bdd0 drm_modeset_lock_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x84890935 drm_property_replace_global_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x84591d83 drm_connector_attach_vrr_capable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x84b4ee9b __devm_drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x84e7c1ae drm_modeset_lock_init EXPORT_SYMBOL drivers/gpu/drm/drm 0x8563a554 drm_ht_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x85659e9b drm_connector_attach_colorspace_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x85c6d3c8 drm_crtc_accurate_vblank_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0x86feae6d drm_plane_get_damage_clips +EXPORT_SYMBOL drivers/gpu/drm/drm 0x864f34fe drm_mode_create_from_cmdline_mode EXPORT_SYMBOL drivers/gpu/drm/drm 0x871ab41a drm_rect_intersect -EXPORT_SYMBOL drivers/gpu/drm/drm 0x871b7ea1 drm_connector_attach_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0x87947a94 drm_mode_parse_command_line_for_connector -EXPORT_SYMBOL drivers/gpu/drm/drm 0x88b7ea00 drm_hdmi_vendor_infoframe_from_display_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x89e06800 drm_gem_map_detach -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8b0c2aec drm_put_dev -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d27d261 drm_mode_crtc_set_gamma_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d36119c drm_plane_create_zpos_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d574ed2 drm_gtf_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8e9e7fd5 drm_bridge_chain_mode_fixup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ea02b25 drm_gem_shmem_get_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ed8bf7e drm_mode_duplicate -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8f9be85e drm_probe_ddc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8fb98feb drm_clflush_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ff2ad20 drm_i2c_encoder_mode_fixup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9087e021 drm_crtc_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8728ea13 drm_mode_object_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x87aa0873 drm_gtf_mode_complex +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8861ebf3 drm_atomic_get_new_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x88a60802 drm_get_edid_switcheroo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x88df9895 drm_bridge_chain_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x890a39fb __drmm_encoder_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x891dd4fd drm_crtc_init_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x89b53d01 drm_connector_attach_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8a26482b drm_atomic_get_new_connector_for_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ad3be2e drm_connector_list_iter_begin +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8b202d3d drm_modeset_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8b6277de drm_connector_update_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8b96c1aa drm_crtc_accurate_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c34d0a5 drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c5adde7 drm_mode_prune_invalid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d0eaf77 drm_atomic_get_old_connector_for_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d11517f drm_connector_list_iter_end +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d4de0de drm_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d691f52 drm_send_event_timestamp_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8f490caf drm_atomic_get_old_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8f716cf1 drm_mode_create_dp_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8fa3319c drm_gem_private_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x90d61b73 drm_gem_fence_array_add_implicit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x91813641 drm_gem_dmabuf_mmap EXPORT_SYMBOL drivers/gpu/drm/drm 0x91fec1cc drm_rect_calc_vscale +EXPORT_SYMBOL drivers/gpu/drm/drm 0x92d19faa drm_poll EXPORT_SYMBOL drivers/gpu/drm/drm 0x92ee8a9d drm_get_format_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0x93637590 drm_panel_of_backlight -EXPORT_SYMBOL drivers/gpu/drm/drm 0x936f6a35 drm_writeback_cleanup_job -EXPORT_SYMBOL drivers/gpu/drm/drm 0x93f6126d drm_display_mode_from_cea_vic -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9441273c drm_client_buffer_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9497ab41 drm_send_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9522bae6 drm_property_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9534cf82 drm_gem_create_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x930be000 drm_framebuffer_plane_height +EXPORT_SYMBOL drivers/gpu/drm/drm 0x936020a2 drm_gem_mmap_obj +EXPORT_SYMBOL drivers/gpu/drm/drm 0x94ded745 drm_syncobj_add_point +EXPORT_SYMBOL drivers/gpu/drm/drm 0x957fbe53 drm_gem_dmabuf_vunmap EXPORT_SYMBOL drivers/gpu/drm/drm 0x95dbc76d drm_ht_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9606710a drm_plane_enable_fb_damage_clips -EXPORT_SYMBOL drivers/gpu/drm/drm 0x96a021af drm_gem_vm_close -EXPORT_SYMBOL drivers/gpu/drm/drm 0x96edb171 drm_mode_create_from_cmdline_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x98d1f6b1 drm_dev_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x997d7b11 drm_atomic_get_old_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x966d334b drm_i2c_encoder_detect +EXPORT_SYMBOL drivers/gpu/drm/drm 0x979ed07b drmm_mode_config_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x97e383db drm_property_replace_global_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x98505d2d drm_aperture_remove_conflicting_framebuffers +EXPORT_SYMBOL drivers/gpu/drm/drm 0x98ca0a67 drm_bridge_chain_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x98df89c6 drm_gem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x98f9a2dd drm_gem_prime_fd_to_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9979ab04 drm_mode_object_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x99bb026f drm_gem_prime_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x99fa44ee drm_crtc_vblank_waitqueue EXPORT_SYMBOL drivers/gpu/drm/drm 0x99fd20aa drm_rect_clip_scaled -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ad74bc9 drm_framebuffer_plane_height +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9a286eb8 drm_atomic_get_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9a909b2f drm_i2c_encoder_mode_fixup EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b285573 drm_match_cea_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b73be66 drm_connector_register EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b8a53f5 drm_ht_just_insert_please EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b95c885 drm_mode_match -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c225b72 drm_set_preferred_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c312c6f drm_panel_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9cdc4c68 drm_atomic_get_crtc_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9bfd5f85 drm_syncobj_get_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c035379 drm_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c094a75 drm_atomic_bridge_chain_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9cc614c3 __drmm_add_action_or_reset EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ce050be drm_mode_copy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9cf69914 drm_gem_dmabuf_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9d5761dd drm_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9e2e4c1c drm_gem_prime_import_dev -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9e559c4d drm_atomic_get_new_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ce21d30 drm_plane_create_blend_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9d4f3132 devm_aperture_acquire_from_firmware +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9d545f2c drm_mode_plane_set_obj_prop +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9e0a0a7c drm_atomic_state_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9e53c707 drm_master_get EXPORT_SYMBOL drivers/gpu/drm/drm 0x9e7e8009 drm_edid_to_sad -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ed1b7fd drm_av_sync_delay -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ef3b76c drm_plane_create_color_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9fdf5e45 drm_mode_plane_set_obj_prop +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9f39ac23 drm_mode_config_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ffc4d05 drm_plane_create_rotation_property EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ffcdfdb drm_detect_monitor_audio EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0713087 drm_ht_find_item -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa17251d7 drm_vblank_work_schedule -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1d406ae drm_connector_attach_content_protection_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1d65804 drm_connector_init_with_ddc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4464622 drm_dev_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa46cea91 drm_i2c_encoder_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa476641c drm_modeset_acquire_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4b1b597 drm_writeback_get_out_fence -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa5430d1e drm_crtc_vblank_count_and_time -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa5bf764a drm_gem_shmem_put_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa6760036 drm_syncobj_add_point -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa695886f drm_master_internal_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa8f7c93e drm_atomic_check_only -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa988b8c1 drm_connector_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa9a1245f drm_framebuffer_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xab5bc459 drm_plane_create_zpos_immutable_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xab80e1f0 drm_open -EXPORT_SYMBOL drivers/gpu/drm/drm 0xac423ec5 drm_atomic_set_crtc_for_connector -EXPORT_SYMBOL drivers/gpu/drm/drm 0xac5351d9 drm_bridge_chain_mode_set -EXPORT_SYMBOL drivers/gpu/drm/drm 0xac97eb53 drm_read -EXPORT_SYMBOL drivers/gpu/drm/drm 0xacff7da1 drm_modeset_lock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0a99c27 drm_modeset_lock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa10e8ecd drm_atomic_nonblocking_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa135c0d0 drm_property_add_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1f19ddb drm_plane_enable_fb_damage_clips +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa249ada6 drm_atomic_add_encoder_bridges +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa2994704 drm_gem_dmabuf_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4d8b3fb drm_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4f36003 drm_mode_config_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa54c8f42 drm_bridge_chain_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa5e984a9 drm_mode_create_content_type_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa6b23713 drm_crtc_vblank_on +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa6bb17fe drm_gem_shmem_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa88199e9 drm_warn_on_modeset_not_all_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa9688391 drm_master_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaa6757a7 drm_syncobj_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xad165bd9 drm_mode_create_dvi_i_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xad211dc4 drm_any_plane_has_format EXPORT_SYMBOL drivers/gpu/drm/drm 0xad4e902b drm_color_ctm_s31_32_to_qm_n -EXPORT_SYMBOL drivers/gpu/drm/drm 0xad78cf1c drm_mode_is_420_also -EXPORT_SYMBOL drivers/gpu/drm/drm 0xad87f472 drm_crtc_commit_wait +EXPORT_SYMBOL drivers/gpu/drm/drm 0xadad55a7 __drmm_universal_plane_alloc EXPORT_SYMBOL drivers/gpu/drm/drm 0xae277372 __drm_crtc_commit_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0xae85f8bb drm_calc_timestamping_constants -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf31a009 drm_gem_fence_array_add_implicit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf64b746 drm_hdmi_avi_infoframe_quant_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb016fec6 drm_gem_dmabuf_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xae75f163 drm_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaeea52f6 drm_mode_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf5d0e20 drm_mode_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb042d06e drm_plane_create_alpha_property EXPORT_SYMBOL drivers/gpu/drm/drm 0xb053adda drm_rect_rotate EXPORT_SYMBOL drivers/gpu/drm/drm 0xb0b05ff5 drm_clflush_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb0d2e65d drm_gem_dma_resv_wait EXPORT_SYMBOL drivers/gpu/drm/drm 0xb11ac7a7 __drm_err -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb1a8f74f drm_atomic_private_obj_init EXPORT_SYMBOL drivers/gpu/drm/drm 0xb22dfd68 drm_format_info_min_pitch -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb23b211d drm_connector_attach_vrr_capable_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb37e1f6a drm_i2c_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb3b2a966 drm_vblank_work_flush +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb24325f0 drm_atomic_normalize_zpos +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb2ce302e drm_property_create_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb32fa7f3 drm_clflush_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb3897adc drm_property_create_bool EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4032484 drm_mm_insert_node_in_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4a108b6 __drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb57bfb9e drm_prime_gem_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb602e511 drm_gem_map_dma_buf EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6127243 drm_need_swiotlb -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb69ac52e drm_atomic_bridge_chain_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6e81e65 drm_aperture_remove_conflicting_pci_framebuffers -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb75a0b03 drm_panel_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb8222747 drm_universal_plane_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb8c68dbc drm_prime_pages_to_sg -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb938a14d drm_gem_handle_delete -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb98d65fb drm_connector_attach_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb816e531 drm_mode_set_config_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb84ce061 drm_connector_set_panel_orientation +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb85a4458 drm_mode_find_dmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb8ce874c drm_writeback_cleanup_job EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9cad492 __drm_atomic_state_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0xba854eeb drm_atomic_get_old_connector_for_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbbe5d71e drm_connector_list_iter_begin -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbc29f456 drm_gem_prime_fd_to_handle -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbd0c993c drm_bridge_chain_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbdada9b7 drm_atomic_get_new_connector_for_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbdb06bdd drm_atomic_set_mode_prop_for_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbe159da6 drm_i2c_encoder_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbe4b87dc drm_object_property_get_value -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbe8ff96c drm_plane_force_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbfacf5cd drm_mode_validate_driver -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbfee2ea7 drm_send_event_timestamp_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc04e36dc drm_atomic_get_private_obj_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc05bd24b drm_client_modeset_commit_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc2652823 drm_dev_set_unique -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc288222b drm_mode_config_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc29dfe3d drm_connector_set_path_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc366b007 drm_i2c_encoder_save -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc516d268 __drm_atomic_helper_disable_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc53fdd9c drm_master_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc5428b51 drm_writeback_signal_completion -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc5ceef24 drm_panel_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xba22849e drm_gem_shmem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0xba25fdf1 drm_connector_set_path_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xba387ea1 drm_panel_unprepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbb5a3a85 drm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbbeb705d drm_master_internal_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbc6751e9 drm_mode_create_tv_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbc780c8b drm_panel_of_backlight +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbd638de9 drm_writeback_signal_completion +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbd745c54 drm_mode_create_suggested_offset_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbd7feb71 drm_crtc_set_max_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbe1504ab drm_atomic_set_mode_prop_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbe98048d drm_dev_has_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbeeaa237 drm_connector_has_possible_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbf24e5c4 drm_atomic_state_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbf9ad948 drm_ioctl_kernel +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc0213109 drm_vblank_work_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc0bd39b9 drm_dev_set_unique +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc198bff9 drm_atomic_private_obj_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc260fcac drm_connector_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc2951fdb drm_av_sync_delay +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc31611d3 drm_connector_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc4d6f812 __drmm_add_action +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc5b7fdd9 drm_aperture_remove_conflicting_pci_framebuffers +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6080509 drmm_kmalloc EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6323239 drm_flip_work_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6777981 drm_is_current_master -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6f1c77a drm_connector_list_iter_next -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc75faea4 drm_debugfs_create_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc671e605 drm_dev_unplug +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc693f77e drm_gem_objects_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6a44336 drm_atomic_set_fence_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6c4b545 drm_client_buffer_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc731c053 drm_gem_map_detach 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 0xc850e04b drm_add_edid_modes -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc9ed4e91 drm_gem_prime_handle_to_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc954f556 drm_atomic_add_affected_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc9570280 drm_client_dev_hotplug EXPORT_SYMBOL drivers/gpu/drm/drm 0xca190085 drm_format_info_block_height -EXPORT_SYMBOL drivers/gpu/drm/drm 0xca78b7f5 drm_file_get_master EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb2340b8 drm_rect_debug_print +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb7c8505 drm_atomic_set_crtc_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb86d948 drm_put_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcba36142 drm_debugfs_create_files EXPORT_SYMBOL drivers/gpu/drm/drm 0xccc59759 drm_format_info_block_width -EXPORT_SYMBOL drivers/gpu/drm/drm 0xce73aeda drm_gem_object_lookup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcec54c0f drm_client_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd3f8bf7 drm_framebuffer_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd73b0bf drm_connector_attach_max_bpc_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcdd6a12a drm_crtc_vblank_restore +EXPORT_SYMBOL drivers/gpu/drm/drm 0xceb3642f drm_vblank_work_flush EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf11a549 drm_flip_work_allocate_task -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcffb761d drm_atomic_bridge_chain_pre_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd001ce93 drm_gem_shmem_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd00a0ef1 drm_atomic_get_new_bridge_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd04fdbf6 drm_mode_object_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf68730f drm_gem_prime_import +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcfbd48d1 drm_atomic_bridge_chain_post_disable EXPORT_SYMBOL drivers/gpu/drm/drm 0xd05fda43 drm_prime_get_contiguous_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd0ac498f drm_framebuffer_lookup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd1238c40 drm_crtc_set_max_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd13a651a drm_plane_create_zpos_property EXPORT_SYMBOL drivers/gpu/drm/drm 0xd13f9985 drm_edid_block_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd27c2b41 drm_atomic_set_mode_for_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd4079942 drm_gem_handle_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd4c0692d drm_modeset_backoff -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd5882936 drm_any_plane_has_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd1d2df91 drm_hdmi_avi_infoframe_content_type +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd1ec98aa drm_bridge_chain_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2e3dcd8 drm_bridge_chain_mode_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd415de12 drm_modeset_lock_all_ctx +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd510ae6c drm_property_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd5c6fd7c drm_atomic_set_mode_for_crtc EXPORT_SYMBOL drivers/gpu/drm/drm 0xd60baf5a drm_edid_get_monitor_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd63d4010 drm_plane_get_damage_clips EXPORT_SYMBOL drivers/gpu/drm/drm 0xd680a377 drm_gem_object_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7a59d2e drm_connector_attach_tv_margin_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd6f9320b drm_plane_force_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7637414 drm_gem_shmem_get_pages EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7a9cf42 drm_mode_validate_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd82ce871 drm_panel_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd8b62a63 drm_framebuffer_plane_width -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd95e0d2a drm_connector_set_panel_orientation -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd9984e89 drm_atomic_state_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd9d1c747 drm_mode_is_420 -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdc479a72 drm_warn_on_modeset_not_all_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd190761 drm_prime_sg_to_page_array -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd307a73 drm_plane_create_alpha_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xde23ae19 drm_dev_printk -EXPORT_SYMBOL drivers/gpu/drm/drm 0xde2d0cc6 drm_gem_object_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0xde42fb6a drm_i2c_encoder_restore +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7b03f08 drm_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7d1dcd9 drm_atomic_set_fb_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd9674393 drm_noop +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd978d3c4 drm_gem_create_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd9aab7f0 drm_client_modeset_commit_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdab09b24 drm_gem_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb8209cf drm_send_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdca54116 drm_object_property_get_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdddb9d7f drm_mode_create_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0xde594aef drm_gem_shmem_madvise +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf22249c drm_gtf_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 0xdf6ec77a __drmm_encoder_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe015f599 drm_get_edid_switcheroo -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe0c157ff drm_gem_private_object_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe132c454 drm_framebuffer_unregister_private -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe1eddca4 drm_client_modeset_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdff9ec14 drm_hdmi_avi_infoframe_quant_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe0405d4e drm_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe161cefc drm_atomic_set_crtc_for_connector EXPORT_SYMBOL drivers/gpu/drm/drm 0xe317082a __drm_printfn_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe3b6f3b8 drm_crtc_vblank_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe4893817 drm_dev_enter -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe4ae9300 drm_connector_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe5472c34 drm_mode_create_aspect_ratio_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe5c7c2c6 drm_modeset_unlock_all -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe5e3ae84 drm_event_reserve_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe3986199 drm_connector_attach_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe40ac35f drm_debugfs_remove_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe4ce3645 drm_gem_vm_close +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe5d6e59f drm_hdmi_infoframe_set_hdr_metadata +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe6e413cc drm_atomic_get_old_bridge_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe786d400 drm_connector_attach_hdr_output_metadata_property EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8362900 drm_edid_duplicate -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe88354ac drm_modeset_lock_all_ctx +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8924f21 drm_ioctl_permit 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 0xe9b97647 drm_dev_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe9c025ea drm_bridge_add EXPORT_SYMBOL drivers/gpu/drm/drm 0xea00fe81 __drm_printfn_coredump -EXPORT_SYMBOL drivers/gpu/drm/drm 0xea8b4eab drm_modeset_lock_single_interruptible -EXPORT_SYMBOL drivers/gpu/drm/drm 0xeac7bbd6 drm_object_property_set_value -EXPORT_SYMBOL drivers/gpu/drm/drm 0xeadeeb56 drm_connector_has_possible_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb1d9b73 drm_gem_map_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb2fccf1 drm_crtc_commit_wait EXPORT_SYMBOL drivers/gpu/drm/drm 0xec12af74 __drm_dbg -EXPORT_SYMBOL drivers/gpu/drm/drm 0xecb292d0 __drmm_crtc_alloc_with_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0xeddb5386 drm_wait_one_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0xee45e81c drm_add_override_edid_modes -EXPORT_SYMBOL drivers/gpu/drm/drm 0xeed4e5e6 drm_client_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0xef410206 drm_hdmi_infoframe_set_hdr_metadata +EXPORT_SYMBOL drivers/gpu/drm/drm 0xed0fe0e4 drm_compat_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeda54f0f drm_panel_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xee2711c0 drm_crtc_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xefb3fa83 drm_modeset_acquire_init EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0517d7a drm_mm_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0848ac8 drm_mode_get_tile_group EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1421d13 drm_mode_sort -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1a0ed81 drm_modeset_acquire_fini -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1b212ee drm_client_modeset_probe EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1b5340a drm_mode_vrefresh -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1cff2a9 drm_syncobj_get_fd -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf29140e5 drm_atomic_state_default_clear -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf3301d43 drm_state_dump -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf3a4587b drm_i2c_encoder_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf223319a drm_crtc_create_scaling_filter_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf228c698 drm_i2c_encoder_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf2560e76 drm_modeset_drop_locks +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf273b52b drm_state_dump +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf3b235a8 drm_client_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf3fd678d drm_hdcp_update_content_protection EXPORT_SYMBOL drivers/gpu/drm/drm 0xf406e46a drm_get_connector_type_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf58b95aa drm_crtc_enable_color_mgmt -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf684d992 drm_gem_create_mmap_offset_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf74e3fce drmm_kmalloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf761452b drm_atomic_add_affected_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf80d501a drm_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf464008d drm_syncobj_replace_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf7bcd5d9 drm_client_rotation +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf7e35151 drm_display_mode_from_cea_vic EXPORT_SYMBOL drivers/gpu/drm/drm 0xf824c7db __drm_printfn_debug -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf87ff83b drm_client_framebuffer_flush -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf8efab48 drm_cvt_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf95fbf1f drm_mode_config_reset -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf98c48b5 drm_connector_set_vrr_capable_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa83b67d drm_get_edid -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb0cf844 drm_atomic_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfbf1a482 drm_crtc_vblank_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfbf4ab08 drm_atomic_add_affected_connectors -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc3cb805 drm_gem_lock_reservations -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd5a4a53 drm_mode_create_dp_colorspace_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd80a4ea drm_connector_attach_max_bpc_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfe7e3a25 drm_gem_free_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf8318378 drm_gem_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf83d8fcb drm_gem_free_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf94bdace drm_crtc_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa0cc4c9 drm_event_reserve_init_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb863b0c drm_property_create_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfbb4169e drm_plane_create_scaling_filter_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd561da0 __drmm_crtc_alloc_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfde7f9ea drm_client_framebuffer_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfe3d48e1 drm_mode_parse_command_line_for_connector EXPORT_SYMBOL drivers/gpu/drm/drm 0xfeb953b1 __drm_printfn_seq_file EXPORT_SYMBOL drivers/gpu/drm/drm 0xfecc8840 drm_edid_to_speaker_allocation -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfee728a4 drm_vblank_work_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xff1c6b0e drm_master_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0xff3148f4 drm_plane_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x001d8d6b __drm_atomic_helper_plane_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x00a55d52 drm_dp_downstream_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0137c0fa drm_atomic_helper_check_plane_damage +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfeec4464 drm_master_internal_acquire +EXPORT_SYMBOL drivers/gpu/drm/drm 0xff149ddc drm_connector_set_link_status_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xffb20496 drm_connector_init_with_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0115f49d drm_self_refresh_helper_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x017e82c6 drm_fb_helper_fill_info +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x01939dec drm_scdc_write EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x01c4bba9 drm_dp_lttpr_max_link_rate -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x039d9df4 drm_atomic_helper_commit_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x046cb9e8 drm_atomic_helper_disable_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x01c99bb2 drm_gem_simple_kms_cleanup_shadow_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x02a7b697 drm_fb_helper_lastclose EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x06c49551 drm_dp_dsc_sink_line_buf_depth EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x07a00858 drm_fb_memcpy_dstclip -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x07b431cc drm_fb_helper_set_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x087cc3e5 drm_dp_pcon_frl_enable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x08d83d98 drm_helper_probe_detect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x08ee5467 drm_fb_helper_fill_info -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x096da4ba drm_dp_stop_crc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x09cf862d drm_dp_set_subconnector_property -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0ac046ab drm_atomic_helper_fake_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0e6da54f drm_gem_fb_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0ee8cd69 drm_dp_pcon_convert_rgb_to_ycbcr -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x102bfa37 drm_simple_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x108adcef drm_simple_display_pipe_attach_bridge -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x113f386a drm_dp_mst_topology_mgr_resume -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x118fd23e drm_dp_cec_unset_edid -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x119b26ae drm_helper_force_disable_all -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x141c1c7f drm_helper_hpd_irq_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x14d3603a drm_edp_backlight_enable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x150ea47a __drm_atomic_helper_connector_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1556d36a drm_gem_reset_shadow_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x155c07e1 drm_dp_get_vc_payload_bw +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x07cd37de drm_atomic_helper_commit_duplicated_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x07e66486 drm_dp_pcon_convert_rgb_to_ycbcr +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x08291aed drm_atomic_helper_connector_tv_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x09763d48 drm_fb_helper_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x09e026a1 drm_dp_mst_dsc_aux_for_port +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x09f14fe9 drm_fb_helper_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0af8f235 __drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0c950758 drm_fb_helper_restore_fbdev_mode_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0ca52c8c drm_dp_link_train_clock_recovery_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0d3a08d4 drm_atomic_helper_prepare_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0dbab172 drm_dp_cec_irq +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0dcb7e6f drm_panel_bridge_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0e6f9d73 drm_atomic_helper_commit_modeset_enables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x14932552 drm_gem_destroy_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x153627e1 drm_primary_helper_funcs EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1605d0ed drm_dp_lttpr_max_lane_count -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1650fb30 drm_dp_dual_mode_get_tmds_output -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x16634d7e drm_atomic_helper_wait_for_dependencies EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1709ddcf drm_dp_lttpr_link_train_clock_recovery_delay -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x179f91b4 drm_dp_send_real_edid_checksum -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1955149d drm_dp_aux_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x195b330d drm_atomic_helper_bridge_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x19689e8a drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x186b0ac9 drm_gem_reset_shadow_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x189dbe7a drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x19922a87 drm_fb_helper_debug_leave EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1a5bf3ca drm_dsc_dp_rc_buffer_size +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1a6ba784 drm_kms_helper_poll_fini EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1b0a1fdc drm_dp_lttpr_voltage_swing_level_3_supported -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1babefde drm_self_refresh_helper_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1de84aac drm_atomic_helper_disable_all -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x222a1f5d drm_dp_dual_mode_set_tmds_output -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x22c9ae79 drm_self_refresh_helper_alter_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x23209caf __drm_atomic_helper_plane_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2321e004 drm_dp_set_phy_test_pattern -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x24f005a7 drm_dp_downstream_id +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1ce1defa drm_gem_fb_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1eb81fb7 drm_dp_mst_connector_early_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1ef9f47c drm_fb_helper_cfb_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x207e772b drm_atomic_helper_damage_merged +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2085fa5d drm_simple_display_pipe_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x208bf3cd drm_fb_helper_sys_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x20be358c drm_dp_cec_unregister_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x20e9b127 drm_crtc_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x21b53cd4 drm_dp_read_lttpr_phy_caps +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x235e019b drm_helper_probe_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2406ab78 drm_dp_mst_topology_mgr_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x24ac6d78 drm_kms_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x24d4fd89 drm_crtc_helper_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x256b4216 drm_atomic_helper_commit_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2603d41c drm_fb_helper_deferred_io +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x267547e5 drm_dp_dpcd_read_link_status EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x26815dbc drm_dp_link_rate_to_bw_code -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x297afdd3 drm_helper_encoder_in_use -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x29f57349 drm_helper_crtc_in_use -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2a14c5f9 drm_dp_lttpr_link_train_channel_eq_delay -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2a46cfc6 drm_dp_read_lttpr_common_caps -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2acc1f03 drm_dp_mst_allocate_vcpi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2b30b7e6 drm_fb_helper_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2b9a4e31 __drm_atomic_helper_plane_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2c0d967d drm_dp_mst_topology_mgr_set_mst -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2c71b65d drm_atomic_helper_connector_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2d650d3d drm_dp_read_lttpr_phy_caps -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2f3a7c73 drm_dp_read_sink_count +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x26f8ec80 drm_dp_downstream_id +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x275c842a drm_dp_mst_atomic_enable_dsc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2895916e drm_dp_read_dpcd_caps +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2a061d34 __drm_atomic_helper_connector_state_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2a57c1ff drm_crtc_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2b42c5b7 drm_atomic_helper_update_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2c346223 drm_helper_resume_force_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2c50cef4 drm_self_refresh_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2d1f088b drm_atomic_helper_check_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2d44e927 drm_dp_cec_register_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2dd39953 devm_drm_panel_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2eb5115a drm_dp_get_phy_test_pattern +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2edc0fd1 drm_gem_prepare_shadow_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2f071711 drm_atomic_helper_connector_destroy_state EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2fa94ef2 drm_dp_downstream_444_to_420_conversion -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2fbd75bc drm_dp_aux_unregister EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3117b63b drm_dp_downstream_max_bpc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3135f32e drm_atomic_helper_connector_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x34230ada drm_atomic_helper_setup_commit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x358a9cb4 __drmm_simple_encoder_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x36ec8dc9 drm_gem_destroy_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x374d7374 drm_primary_helper_funcs -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x374ff32c drm_dp_atomic_find_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3229486f drm_fb_helper_setcmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x328b784f drm_atomic_helper_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x33139d50 drm_atomic_helper_check_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x35508c38 drm_atomic_helper_check_plane_damage +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x36c03f4f drm_helper_probe_single_connector_modes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x373cd591 drm_helper_disable_unused_functions +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x37c4cbe9 drm_fb_helper_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x38eeeb22 drm_fb_helper_set_suspend EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x392a838b drm_dp_downstream_max_dotclock -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x394591b1 drm_atomic_helper_commit_tail_rpm -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3947abde drm_atomic_helper_cleanup_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x39b70484 drm_dp_aux_register EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3a8063f3 drm_dp_dsc_sink_supported_input_bpcs -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3ac85f89 drm_panel_dp_aux_backlight -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3b31293b drm_lspcon_set_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3c90be57 drm_panel_bridge_connector -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3ca5a23d drm_panel_bridge_add_typed -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3d65a2d4 drm_dp_pcon_pps_default -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3e4847a4 drm_gem_simple_kms_prepare_shadow_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3e62a052 drm_fb_helper_debug_leave -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x40cdefb3 drm_dp_mst_detect_port -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x436a7550 drm_dp_read_desc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x43ff5304 __drm_atomic_helper_private_obj_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x44f74e6f drm_dp_pcon_enc_is_dsc_1_2 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x457db4d4 drm_fb_helper_blank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3b3e796a drm_gem_simple_kms_prepare_shadow_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3b43d10a drm_atomic_helper_bridge_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3bc7be0f drm_atomic_helper_setup_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3d831e54 __drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3eed8b2b drm_atomic_helper_wait_for_fences +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x40a81b1e __drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x41e527b8 drm_fb_helper_output_poll_changed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4409e9e1 drm_dp_dual_mode_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x44524a89 drm_dp_set_phy_test_pattern +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x44581777 drm_dp_mst_dump_topology +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x446374a1 drm_atomic_helper_disable_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x44a4f700 drm_dp_stop_crc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x44b808cb drm_dp_read_sink_count +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x45bca6df drm_helper_encoder_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x45e8e16d drm_dp_mst_atomic_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4603c416 drm_dp_pcon_dsc_bpp_incr EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4668c9dc drm_dp_downstream_min_tmds_clock -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x47b57827 drm_scdc_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x492412fc drm_atomic_helper_commit_duplicated_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x46f0b6c7 drm_dp_send_real_edid_checksum +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x47b0ec38 drm_dp_get_vc_payload_bw +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4a33e8e5 drm_dp_aux_unregister EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4bb89424 drm_dp_downstream_max_tmds_clock -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4bd432c8 drm_edp_backlight_set_level -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4bdcadab drm_scdc_get_scrambling_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4cf29ba9 devm_drm_panel_bridge_add -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4d27c80c drm_dp_mst_dump_topology -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4d44c259 drm_dp_mst_put_port_malloc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4cb633b4 drm_atomic_helper_fake_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4d5a1f1c drm_dp_dpcd_write EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4e41ad5c drm_fb_xrgb8888_to_rgb565 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x50991745 drm_dp_mst_connector_late_register -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x50c10e78 __drm_gem_destroy_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x519a77d9 drm_mode_config_helper_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x52c43e31 drm_dp_atomic_release_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x52f6e9ce drm_dp_start_crc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4f232176 drm_dp_pcon_frl_configure_2 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x50a5efb8 __drm_atomic_helper_connector_destroy_state EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x537b8893 drm_fb_blit_rect_dstclip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x53a1717a drm_dp_pcon_frl_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x53cf2c96 __drmm_simple_encoder_alloc EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5407ae9e drm_dp_get_dual_mode_type_name -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x54eb596d drm_gem_fb_create_handle -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x55426d17 drm_atomic_helper_commit_modeset_enables -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x560be599 drm_gem_simple_kms_reset_shadow_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x56254a6e drm_atomic_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x56db927f drm_fb_helper_output_poll_changed -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5791bea5 drm_atomic_helper_plane_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x57b7b5c4 drm_atomic_helper_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x548881c6 drm_dp_mst_topology_mgr_set_mst +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x56eb92f6 drm_fb_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x572e24c5 __drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5799c442 drm_simple_display_pipe_attach_bridge EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x582f248e drm_dp_get_adjust_request_pre_emphasis +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x58d50055 drm_dp_mst_topology_mgr_resume EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x58d8fcaa drm_dsc_pps_payload_pack -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x59633331 drm_atomic_helper_damage_iter_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5995030d drm_fb_helper_check_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5915e2ff __drm_atomic_helper_bridge_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x59f27ed7 drm_dp_pcon_enc_is_dsc_1_2 EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5a4734d1 drm_kms_helper_is_poll_worker -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5b06f4ae drm_dp_pcon_dsc_bpp_incr -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5b6e8806 drm_dp_mst_get_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5bc12031 drm_kms_helper_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5d2e7d41 drm_self_refresh_helper_update_avg_times -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5e70d9c8 drm_atomic_get_mst_topology_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5f81446a __drm_atomic_helper_crtc_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x602bd4c5 drm_dp_pcon_pps_override_param -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x61a6f5bd drm_atomic_helper_check -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x62a86ba7 drm_gem_fb_begin_cpu_access -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x63209524 drm_dp_mst_atomic_enable_dsc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x632e824c drm_fb_helper_deferred_io -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x638e4049 drm_dp_mst_get_edid -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x63eb3983 drm_dp_check_act_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x643f760d drm_atomic_helper_shutdown +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5ba39534 drm_fb_helper_initial_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5c24a44f drm_dp_read_downstream_info +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5d922d4b drm_dp_dual_mode_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5d9a7b44 drm_atomic_helper_update_legacy_modeset_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5e5ec39b drm_atomic_helper_page_flip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5f08634c drm_dp_cec_unset_edid +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5f58cb46 drm_dp_check_act_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x608a6a6c drm_atomic_helper_wait_for_dependencies +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x61358c21 drm_atomic_helper_async_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x636689bf drm_atomic_helper_wait_for_vblanks +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x64605037 drm_fb_helper_sys_write EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x648d953b drm_dsc_dp_pps_header_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x65dabf38 drm_fb_helper_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x65fe8093 drm_primary_helper_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x650f903c drm_dp_dual_mode_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x65168f9c drm_atomic_helper_shutdown +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x65706cf6 drm_fb_helper_unregister_fbi EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6615069e drm_dp_dsc_sink_max_slice_count -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x66e168b6 drm_fb_helper_lastclose -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x68123c73 drm_dp_pcon_frl_configure_2 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x68ba6856 drm_gem_duplicate_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6a02965e drm_atomic_helper_commit_tail +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x681097ba drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x688717a9 drm_dp_mst_get_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6a6784a5 drm_atomic_helper_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6ab6cffd drm_atomic_helper_commit_cleanup_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6ac3a517 drm_atomic_helper_bridge_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6b153c6f drm_edp_backlight_set_level +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6b1d6533 drm_gem_simple_kms_reset_shadow_plane EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6b5c2b06 drm_atomic_helper_damage_iter_next -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6ba31528 drm_atomic_helper_bridge_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6e25cbbe drm_dp_read_sink_count_cap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6e8a3b0f drm_dp_find_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6e6498db drm_dp_update_payload_part2 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6f277162 drm_dp_pcon_frl_configure_1 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6f2e7c85 drm_dp_pcon_is_frl_ready +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6fc7db09 drm_dp_pcon_pps_override_buf +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6feae2ba drm_gem_simple_kms_destroy_shadow_plane_state EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7053fa72 drm_dp_get_pcon_max_frl_bw -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x70d74f29 drm_dp_pcon_is_frl_ready -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x70e93fd9 drm_kms_helper_poll_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x722ea45e drm_lspcon_get_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x72423a1c drm_fb_helper_cfb_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x70a9411a drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x72853d89 __drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x72f46d76 drm_dp_dual_mode_get_tmds_output EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x73011db0 drm_dp_bw_code_to_link_rate -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x73736eec __drm_atomic_helper_connector_state_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x73f9e3ad drm_dp_mst_connector_early_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7512d913 drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x74347352 drm_atomic_helper_dirtyfb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7489c833 devm_drm_panel_bridge_add_typed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x75a07451 __drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x75acbaf5 drm_simple_encoder_init EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x76ff6644 drm_dp_lttpr_pre_emphasis_level_3_supported -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x77b91f81 drm_panel_bridge_add -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7ab4bc21 drm_dp_dual_mode_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7829e5ce drm_dp_downstream_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7a51bc38 drm_dp_read_sink_count_cap EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7ae669d0 drm_fb_xrgb8888_to_gray8 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7c003a2d drm_atomic_helper_plane_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7d681252 drm_atomic_helper_check_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7dadbeb9 drm_gem_simple_kms_cleanup_shadow_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7e46b40f drm_atomic_helper_crtc_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7e99c5b6 drm_atomic_helper_check_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7f510c26 drm_scdc_set_scrambling -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7f88ad35 drm_kms_helper_poll_fini -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x801b340f drm_helper_probe_single_connector_modes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8043ecaa drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7b0b6c95 __drm_gem_destroy_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7b2cd905 drm_fb_helper_sys_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7cd6ce1b __drm_atomic_helper_crtc_state_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7ecd49cd drm_atomic_helper_cleanup_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7f95630a drm_lspcon_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fddfe17 drm_atomic_helper_swap_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x801cda5e drm_dp_mst_deallocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x82640931 drm_dp_pcon_hdmi_link_active +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x82d9274b drm_dp_link_train_channel_eq_delay EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x838a8fa0 drm_fb_memcpy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x87344dd7 drm_dp_downstream_debug -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x88ddfafe drm_dp_dpcd_read_phy_link_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8945c582 drm_atomic_helper_dirtyfb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8406a127 drm_scdc_set_high_tmds_clock_ratio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x84de99ff drm_atomic_helper_commit_hw_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x862b887d drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x86ec9fb3 drm_mode_config_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x87215c02 drm_gem_fb_create_handle +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x886d5608 __drm_gem_reset_shadow_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x88f677c9 drm_panel_bridge_remove EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x894b1f57 drm_dp_get_adjust_request_post_cursor -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x89c4fd0a drm_atomic_helper_bridge_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8982cf34 drm_gem_fb_destroy EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x89d100ba drm_fb_xrgb8888_to_rgb888_dstclip -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8adf2b4a drm_atomic_helper_page_flip_target -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8b39097d __drm_atomic_helper_bridge_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8c0f2331 drm_atomic_helper_update_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8c4c6f57 drm_crtc_helper_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x89e63060 drm_fb_helper_check_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8bc1069d drm_dp_send_power_updown_phy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8bc6b86f __drm_atomic_helper_plane_duplicate_state EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8ca2d9e4 drm_dp_calc_pbn_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8d1a3043 drm_atomic_helper_damage_merged +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8d01f225 drm_fb_helper_alloc_fbi EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8d701329 drm_dp_clock_recovery_ok -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8d96f461 drm_gem_prepare_shadow_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9071ce48 drm_atomic_helper_resume -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x929dff15 drm_edp_backlight_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x92ae212d drm_atomic_helper_page_flip -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x92ee15c1 drm_fb_helper_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x93deff13 drm_dp_mst_topology_mgr_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x93f9609f drm_fb_helper_setcmap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x94dfc8bb drm_dp_pcon_hdmi_link_active -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x958e0c45 drm_dp_send_power_updown_phy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x95bc9493 drm_atomic_helper_commit_modeset_disables -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x96992328 drm_dp_mst_topology_mgr_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x98032b69 drm_atomic_helper_bridge_propagate_bus_fmt -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x982b22c7 drm_dp_dual_mode_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9b344ca9 drm_crtc_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9bb38220 drm_dp_read_dpcd_caps -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9ca1f9c7 drm_gem_simple_display_pipe_prepare_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9dab5fd0 drm_fb_helper_initial_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9e44fef6 drm_dp_dual_mode_detect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9f841b84 drm_dp_cec_register_connector -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9fb1d606 drm_helper_move_panel_connectors_to_head -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa17626d7 __drm_atomic_helper_plane_state_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa1fe35b5 drm_atomic_helper_async_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8d8276f5 drm_dp_dpcd_read_phy_link_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x90b677a0 drm_dp_dual_mode_set_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x91414418 drm_dp_mst_get_port_malloc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9153d936 drm_helper_hpd_irq_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x91cb3196 drm_gem_duplicate_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x92392860 drm_scdc_set_scrambling +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x94a3ddf0 drm_panel_dp_aux_backlight +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x951991d2 drm_dp_send_query_stream_enc_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x95504117 __drm_atomic_helper_bridge_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x96620e9d drm_atomic_helper_damage_iter_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9781d890 drm_edp_backlight_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x97af271e drm_atomic_helper_commit_tail_rpm +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9a9d40f8 drm_dp_mst_connector_late_register +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9d781a6a drm_fb_helper_pan_display +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9d82fdc0 __drm_gem_duplicate_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9efc0f74 drm_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9f01448e drm_dp_read_lttpr_common_caps +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa13f7dc1 drm_dp_mst_topology_mgr_destroy EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa1fefe6a drm_dp_psr_setup_time -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa25e83c4 __drm_atomic_helper_crtc_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa50d10f9 drm_dp_cec_unregister_connector -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa6d5c1db drm_dp_link_train_channel_eq_delay -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa74984ca drm_dp_pcon_frl_configure_1 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa79fc324 drm_dp_pcon_hdmi_frl_link_error_count -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa7f05813 drm_dp_mst_topology_state_funcs -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaa322ee4 drm_dp_vsc_sdp_log -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaafe0435 drm_dp_read_downstream_info -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xab32b4b2 drm_dp_pcon_frl_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xac3899f0 drm_dp_send_query_stream_enc_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xac62e080 drm_atomic_helper_async_check -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xacbf6ecd drm_fb_helper_sys_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaccfa71f drm_crtc_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xacd19e62 drm_helper_mode_fill_fb_struct -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xadb455db drm_gem_simple_kms_destroy_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xae3ecc84 drm_gem_fb_end_cpu_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa469aea3 drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa51475d6 drm_fb_helper_blank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa53ff6ae drm_edp_backlight_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa607707a drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa623d6f3 drm_helper_move_panel_connectors_to_head +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa6849586 drm_scdc_get_scrambling_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa81ac726 drm_dp_pcon_pps_override_param +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xae888b75 drm_helper_force_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaea14e29 drm_atomic_helper_resume EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaf267620 drm_dp_lttpr_count -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb0ad91c2 drm_dp_mst_topology_mgr_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb0d80b25 __drm_atomic_helper_bridge_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb12e5219 drm_dp_mst_get_port_malloc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb1395929 drm_atomic_helper_update_legacy_modeset_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb16d4461 drm_fb_helper_sys_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb1c0a801 drm_dp_mst_deallocate_vcpi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb32ebf4a drm_dp_cec_set_edid -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb7b60558 __drm_gem_reset_shadow_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb82de4d8 drm_gem_cleanup_shadow_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xba3195f0 drm_atomic_helper_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbb26eb6e drm_fb_helper_alloc_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbb8eb66d drm_atomic_helper_check_modeset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbb9a5af5 drm_atomic_helper_connector_tv_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbdb5fe87 drm_fb_helper_sys_imageblit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc1a06509 drm_dp_pcon_reset_frl_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc20aca45 drm_fbdev_generic_setup -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc4000119 drm_scdc_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaf67a18b drm_dp_pcon_pps_default +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xafbc5dd0 __drm_atomic_helper_private_obj_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb0241dee drm_atomic_helper_check_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb1874fea drm_dp_update_payload_part1 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb1ae6e6e drm_dp_atomic_find_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb22ecae8 drm_dp_cec_set_edid +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb2b9190a drm_scdc_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb63f8bf3 drm_dp_mst_detect_port +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb87def3d drm_dp_atomic_release_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb906f795 drm_dp_aux_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbbc7b75a drm_dp_pcon_reset_frl_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbd555985 drm_dp_lttpr_link_train_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbd675c19 drm_gem_cleanup_shadow_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbdbe69b6 drm_dp_downstream_debug +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbf145dab drm_fb_helper_set_par +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbf4d7811 drm_lspcon_get_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbf81e344 drm_atomic_helper_commit_modeset_disables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc020c0c1 drm_dp_pcon_dsc_max_slice_width +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc0607acb drm_mode_config_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc19a9ce7 drm_dp_pcon_hdmi_link_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc1b2984d drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc4541a32 drm_atomic_helper_commit_tail +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc4c17d83 drm_dp_pcon_hdmi_frl_link_error_count EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc5c99a79 drm_dp_get_adjust_request_voltage -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc767220d drm_gem_fb_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc6715d78 drm_dp_vsc_sdp_log EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc79ecffb drm_dp_downstream_is_type EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc85e28e8 drm_fb_xrgb8888_to_rgb565_dstclip -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xca890749 drm_dp_mst_atomic_check -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xca9f8239 __drm_atomic_helper_connector_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcac93605 drm_kms_helper_poll_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcb585f7b __drm_gem_duplicate_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcb6fbaa6 drm_simple_display_pipe_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcc558d74 drm_atomic_helper_commit_cleanup_done -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcc9f4211 drm_helper_resume_force_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd186aa42 drm_atomic_helper_commit_planes_on_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd1d78cb7 drm_fb_helper_set_par -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd2629d7c drm_fb_helper_sys_fillrect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd26f5668 drm_atomic_helper_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc93662fd drm_atomic_helper_wait_for_flip_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcaa5f1a6 drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcb0b434e drm_dp_mst_add_affected_dsc_crtcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcb7f46bb drm_fb_helper_cfb_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcf76c65e drm_atomic_get_mst_topology_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcfc08cdb drm_dp_mst_topology_mgr_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcfc2dbb0 drm_fb_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcfe8c4c7 drm_primary_helper_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd0a08c6a drm_dp_mst_put_port_malloc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd0f96dec drm_dp_read_mst_cap EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd2b0c7e6 drm_dp_downstream_is_tmds -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd30bc6b3 drm_dp_update_payload_part2 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd3601a59 drm_atomic_helper_crtc_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd37d2f3a drm_helper_disable_unused_functions EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd4983d85 drm_fb_swab -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd4f3d095 drm_atomic_helper_commit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd52f8038 drm_dp_mst_dsc_aux_for_port -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd566df2a __drm_atomic_helper_crtc_state_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd58e8be7 drm_fb_helper_sys_copyarea -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd5e96030 drm_dp_mst_hpd_irq -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd7ef8624 drm_dp_mst_add_affected_dsc_crtcs -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd8054584 drm_kms_helper_poll_enable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd80e4943 __drm_atomic_helper_connector_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd816208b drm_dp_link_train_clock_recovery_delay -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd978071f drm_dp_pcon_hdmi_link_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdb321168 drm_fb_helper_cfb_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd4c0e468 drm_dp_mst_allocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd520a38c drm_self_refresh_helper_alter_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd5b22b50 drm_dp_read_desc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd646fae8 drm_edp_backlight_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd7eb523a drm_dp_start_crc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd8320bc5 drm_panel_bridge_add_typed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd9f22530 drm_self_refresh_helper_update_avg_times +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xda38af77 drm_dp_mst_topology_state_funcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdaab897d drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdb1dc2d3 drm_atomic_helper_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdb8782a7 drm_dp_find_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdb95d6d0 drm_gem_fb_begin_cpu_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdb95fafa drm_panel_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdbb3adfc drm_gem_simple_kms_duplicate_shadow_plane_state EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdbc3c128 drm_fb_blit_dstclip -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdc7cd5a7 drm_atomic_helper_disable_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdcde07f3 drm_fb_helper_cfb_fillrect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdd25f079 drm_dp_pcon_dsc_max_slice_width -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdd7ba26b drm_dp_cec_irq -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xddeff29e drm_fb_helper_debug_enter -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdec742e3 drm_panel_bridge_remove -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe076931e drm_dp_read_mst_cap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe237a425 drm_dp_dpcd_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe2b640df drm_gem_fb_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe35ff110 drm_edp_backlight_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe55f47c4 drm_gem_simple_kms_duplicate_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe828a7f0 drm_scdc_set_high_tmds_clock_ratio -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe89c80d7 drm_dp_pcon_pps_override_buf -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeb101bd5 drm_fb_helper_pan_display -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeb981a5e drm_dp_dual_mode_max_tmds_clock +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xddc514db __drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdf4a52d4 drm_dp_mst_reset_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdf943367 drm_fb_helper_set_suspend_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe0d9c24e drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe29b3a70 drm_atomic_helper_bridge_propagate_bus_fmt +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe2dd3acb drm_fb_helper_debug_enter +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe5360b84 drm_dp_pcon_dsc_max_slices +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe542c3f7 drm_atomic_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe56cf845 drm_kms_helper_poll_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe6cc6a5a __drm_atomic_helper_plane_state_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe990ac97 drm_kms_helper_poll_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe9d38d47 drm_atomic_helper_bridge_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeae0845c drm_gem_simple_display_pipe_prepare_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeced3fed drm_dp_set_subconnector_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xedceccb7 drm_fb_helper_sys_imageblit EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xedcf81ce drm_dp_channel_eq_ok -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xee0c0a02 drm_fb_helper_fini -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xee835f51 drm_dp_mst_reset_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf07a86b7 __drm_atomic_helper_crtc_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf179027d drm_dp_aux_register -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf3a27de8 drm_fb_helper_restore_fbdev_mode_unlocked -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf3bc1724 drm_mode_config_helper_resume -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf3ea13c0 drm_dp_remote_aux_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf450b33d drm_atomic_helper_swap_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf5990e77 drm_fb_helper_ioctl -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf5d17ed2 drm_dp_get_phy_test_pattern -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf5f4e1ad drm_fb_helper_set_suspend_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xefc69104 drm_atomic_helper_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf1b6db63 drm_dp_pcon_frl_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf1c549e6 drm_fb_helper_cfb_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf2066a23 drm_helper_crtc_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf2294488 drm_atomic_helper_page_flip_target +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf3efcbdd drm_gem_fb_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf433a87e drm_atomic_helper_async_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf498154c drm_gem_fb_end_cpu_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf50d410a drm_fb_helper_sys_copyarea EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf68741fb drm_dp_subconnector_type EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf689ad25 drm_dp_downstream_420_passthrough -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf7bbf234 drm_dp_dpcd_read_link_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf8333b3c drm_dp_pcon_dsc_max_slices -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf87bad56 drm_atomic_helper_wait_for_vblanks -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf8af7463 drm_self_refresh_helper_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfad0369d drm_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf9d56396 drm_fbdev_generic_setup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfa7c708b drm_atomic_helper_commit_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfafb9ff8 drm_dp_dpcd_read EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfb1a7a5a drm_dp_downstream_rgb_to_ycbcr_conversion -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfbf58023 drm_dp_update_payload_part1 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfc7d5cad drm_atomic_helper_prepare_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfc893b0c devm_drm_panel_bridge_add_typed -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfd2c290e drm_dp_dpcd_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfc8b7477 drm_dp_dual_mode_max_tmds_clock +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfd1aa707 drm_dp_remote_aux_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfd39746e drm_kms_helper_poll_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfd722d60 drm_dp_mst_hpd_irq +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfdb32ada drm_helper_mode_fill_fb_struct EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfe12bcb9 drm_dsc_compute_rc_parameters -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfe871225 drm_fb_helper_unregister_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfeceeba3 drm_atomic_helper_commit_hw_done -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xff72f317 drm_atomic_helper_wait_for_fences -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xffa547c7 drm_atomic_helper_wait_for_flip_done -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x12d5ddce mipi_dbi_display_is_on -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x17a58e78 mipi_dbi_dev_init_with_formats -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x29f2c3b8 mipi_dbi_enable_flush -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x36838e49 mipi_dbi_spi_cmd_max_speed -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x4035583e mipi_dbi_poweron_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x649fa01b mipi_dbi_spi_init -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x676fbf06 mipi_dbi_command_read -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x6ae514d4 mipi_dbi_dev_init -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x710c6c5c mipi_dbi_poweron_conditional_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x986dd2cf mipi_dbi_pipe_update -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x9fa619c9 mipi_dbi_hw_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xab5dc5b2 mipi_dbi_pipe_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xb2b29607 mipi_dbi_debugfs_init -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xb6af97d2 mipi_dbi_command_buf -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xd290f3c4 mipi_dbi_buf_copy -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xd5611880 mipi_dbi_command_stackbuf -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xeb04ece1 mipi_dbi_spi_transfer -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x2be0328e drm_gem_ttm_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x62116dab drm_gem_ttm_print_info -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x723a3c43 drm_gem_ttm_dumb_map_offset -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0xae405be6 drm_gem_ttm_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0xfb7d3a75 drm_gem_ttm_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x1207eb29 drm_gem_vram_simple_display_pipe_prepare_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x452ea6a1 drm_gem_vram_driver_dumb_create -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x4e27750a drm_gem_vram_unpin -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x523c3e0e drm_gem_vram_simple_display_pipe_cleanup_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x668ced63 drm_gem_vram_fill_create_dumb -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x72baa5c3 drm_gem_vram_offset -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x8527f30c drm_gem_vram_pin -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x879f264f drm_gem_vram_plane_helper_cleanup_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x88fdc537 drm_gem_vram_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xa0494e97 drm_gem_vram_create -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xa9f89c62 drm_gem_vram_plane_helper_prepare_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xaa2049ab drm_vram_helper_mode_valid -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xb5f5e449 drm_gem_vram_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xc527be5a drmm_vram_helper_init -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xc5d9de35 drm_vram_mm_debugfs_init -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xd3de40cd drm_gem_vram_put -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x05058035 drm_sched_increase_karma -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x08433593 drm_sched_entity_set_priority -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x0bd24201 drm_sched_increase_karma_ext -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x0c2f3103 drm_sched_entity_fini -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x1725144b drm_sched_entity_flush -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x343022fb drm_sched_entity_push_job -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x447df02e drm_sched_fault -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x450d8892 drm_sched_fini -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x535ac955 drm_sched_suspend_timeout -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x60381049 drm_sched_resume_timeout -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x6267619a drm_sched_start -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x70a61879 to_drm_sched_fence -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x7b1b2435 drm_sched_reset_karma -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x7b4b0e57 drm_sched_resubmit_jobs_ext -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x8744939c drm_sched_job_cleanup -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x920fc575 drm_sched_init -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xa0e4286e drm_sched_stop -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xba102d98 drm_sched_entity_destroy -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xbfc6c87a drm_sched_pick_best -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xc1dda36a drm_sched_dependency_optimized -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xd2a65a16 drm_sched_job_init -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xd2a67b1e drm_sched_entity_modify_sched -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xf0b01a7a drm_sched_entity_init -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xf193699d drm_sched_resubmit_jobs -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x03ea7943 ttm_device_swapout -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x06253975 ttm_glob -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0ce1fefe ttm_tt_populate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x18971bb4 ttm_eu_backoff_reservation -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1912db21 ttm_bo_eviction_valuable -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x235249ca ttm_bo_vm_open -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2df85031 ttm_bo_kunmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2e091e8f ttm_agp_bind -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3003560d ttm_pool_alloc -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3301fb38 ttm_bo_vunmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x34cb8775 ttm_range_man_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3963ef8a ttm_bo_mmap_obj -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3ad7a379 ttm_agp_tt_create -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4289a516 ttm_bo_vm_fault_reserved -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x49fa1951 ttm_agp_unbind -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4e85a32d ttm_eu_fence_buffer_objects -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x56635c09 ttm_tt_destroy_common -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5a0a45e3 ttm_pool_debugfs -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5ca090f7 ttm_bo_move_accel_cleanup -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x60c81e76 ttm_bo_put +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfe850355 drm_dp_mst_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xff6da9d2 drm_atomic_helper_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x00dfe301 mipi_dbi_pipe_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x04a07cbc mipi_dbi_command_read +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x33054c96 mipi_dbi_poweron_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x50a7a428 mipi_dbi_spi_cmd_max_speed +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x514af55f mipi_dbi_spi_init +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x6114ecfa mipi_dbi_buf_copy +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x626bb733 mipi_dbi_hw_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x727c6697 mipi_dbi_poweron_conditional_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x8c639fd5 mipi_dbi_enable_flush +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x9aa76efb mipi_dbi_pipe_update +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xa35d4aa0 mipi_dbi_spi_transfer +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xb89534ee mipi_dbi_dev_init +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xd7e0c20f mipi_dbi_dev_init_with_formats +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xdacc0443 mipi_dbi_debugfs_init +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xeb5c6959 mipi_dbi_command_stackbuf +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xece33055 mipi_dbi_command_buf +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xed5e9ea6 mipi_dbi_display_is_on +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x29f55921 drm_gem_ttm_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x746b4d0f drm_gem_ttm_dumb_map_offset +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x758b8470 drm_gem_ttm_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x85db8cbb drm_gem_ttm_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0xac1def57 drm_gem_ttm_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x1321c8c9 drm_gem_vram_simple_display_pipe_prepare_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x37aff139 drm_gem_vram_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x54e14edb drm_gem_vram_put +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x5d71c848 drm_gem_vram_create +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x60bd5f19 drm_gem_vram_unpin +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x73f3a142 drm_gem_vram_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x7c4ff8db drm_vram_helper_mode_valid +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x894bb1da drm_gem_vram_simple_display_pipe_cleanup_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x8f0cedd5 drm_gem_vram_fill_create_dumb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xa5b401ff drm_gem_vram_plane_helper_cleanup_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xb4ef63de drm_gem_vram_pin +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xb8c940c7 drm_gem_vram_driver_dumb_create +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xc96e110c drm_gem_vram_offset +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xcc30c941 drm_vram_mm_debugfs_init +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xd4f07cb1 drmm_vram_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xe734dd3e drm_gem_vram_plane_helper_prepare_fb +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x088a5d0a drm_sched_increase_karma +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x1e52b099 drm_sched_stop +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x1ecbb304 drm_sched_fault +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x4619610c drm_sched_resubmit_jobs +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x46f147e2 drm_sched_increase_karma_ext +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x5f6ffd86 drm_sched_resume_timeout +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x6e4131f3 drm_sched_entity_fini +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x7ba62c5c drm_sched_entity_push_job +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x7cc1f23e to_drm_sched_fence +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x7e706fb8 drm_sched_entity_set_priority +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x80b3379a drm_sched_fini +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x92b355a3 drm_sched_start +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xaa85b628 drm_sched_reset_karma +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xb1163804 drm_sched_suspend_timeout +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xb58bb340 drm_sched_dependency_optimized +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xbf0f12f5 drm_sched_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xc446918f drm_sched_entity_flush +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xd92d4ee9 drm_sched_pick_best +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xe21b0ea2 drm_sched_entity_modify_sched +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xecf2efc4 drm_sched_entity_destroy +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xef531938 drm_sched_job_cleanup +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xf41b7f56 drm_sched_job_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xf66446e8 drm_sched_entity_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xf739a913 drm_sched_resubmit_jobs_ext +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x031e6562 ttm_kmap_iter_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x03589cc0 ttm_resource_manager_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0a4d76bf ttm_bo_vm_close +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0f0024d2 ttm_bo_vunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x104658f1 ttm_bo_mmap_obj +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x16c99690 ttm_bo_move_memcpy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1f6fcc6d ttm_io_prot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1f84b35c ttm_bo_mem_space +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x29ebd90c ttm_range_man_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2f7a625d ttm_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3a20781c ttm_bo_vmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x421c69d6 ttm_bo_unlock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4391d176 ttm_pool_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x44b1de87 ttm_bo_vm_reserve +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x469149c3 ttm_move_memcpy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4d0c4e1c ttm_tt_destroy_common +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4ddd7fba ttm_bo_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4f6cf733 ttm_bo_vm_dummy_page +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4f9be698 ttm_agp_destroy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x50546fce ttm_tt_populate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5153569f ttm_device_swapout +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5a04a850 ttm_bo_move_to_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5afe8271 ttm_resource_manager_debug +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x607f73f2 ttm_bo_vm_access EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6536031b ttm_kmap_iter_iomap_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x67a1a299 ttm_agp_destroy -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6984283c ttm_bo_vm_access -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6be23f1b ttm_bo_lock_delayed_workqueue -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6dd3ad91 ttm_io_prot -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x77df6a29 ttm_bo_vmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7e9b6838 ttm_move_memcpy -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8066fe36 ttm_bo_unmap_virtual -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x80f2e07e ttm_resource_manager_debug -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x844d3709 ttm_bo_unlock_delayed_workqueue -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x84eb8977 ttm_bo_wait -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8c1c8d9d ttm_bo_kmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x944c15bf ttm_tt_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9489d6b4 ttm_resource_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9cbb8b37 ttm_resource_free -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9d062d35 ttm_sg_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9f069888 ttm_bo_init_reserved -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa4aa4fb1 ttm_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa800b142 ttm_bo_vm_dummy_page -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xaa1aa6af ttm_bo_bulk_move_lru_tail -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xaafc1799 ttm_bo_vm_close -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xaee1b7f2 ttm_bo_validate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x687af801 ttm_bo_validate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x71b23454 ttm_bo_vm_open +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x729f4116 ttm_resource_manager_evict_all +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7484245c ttm_eu_fence_buffer_objects +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7e521bab ttm_bo_wait +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7f581dc0 ttm_glob +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8307be10 ttm_global_swapout +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x841306c6 ttm_bo_kmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8e9c0a7e ttm_agp_bind +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8ee465ca ttm_range_man_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8ee76137 ttm_bo_init_reserved +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x997f5e47 ttm_bo_move_accel_cleanup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9fb0b8a3 ttm_eu_backoff_reservation +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa3b88639 ttm_bo_bulk_move_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa3d6b043 ttm_resource_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa67477e7 ttm_agp_is_bound +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xab6de58d ttm_bo_unmap_virtual +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xaf39c682 ttm_eu_reserve_buffers +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb03580cc ttm_sg_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb4a680d9 ttm_bo_eviction_valuable +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb74d2713 ttm_resource_free EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb753ca08 ttm_bo_mem_compat -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb89bc324 ttm_device_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbe6ff87e ttm_bo_vm_reserve -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc438bac8 ttm_agp_is_bound -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xca73ecfc ttm_bo_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcc8fd976 ttm_bo_vm_fault -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdd2761c9 ttm_range_man_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe1423569 ttm_global_swapout -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe80063c3 ttm_bo_mem_space -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xea4de4c5 ttm_kmap_iter_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf08fc2ea ttm_resource_manager_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf29be266 ttm_resource_manager_evict_all -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf6644421 ttm_bo_move_memcpy -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf6c880e3 ttm_device_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf7b12712 ttm_pool_free -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfdb67ac8 ttm_bo_move_to_lru_tail -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xff9602c0 ttm_eu_reserve_buffers -EXPORT_SYMBOL drivers/gpu/drm/vmwgfx/vmwgfx 0x31a8e9f1 ttm_mem_global_alloc +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb972ef97 ttm_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbb0452b7 ttm_bo_lock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc79e4ca9 ttm_bo_vm_fault_reserved +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc9d63477 ttm_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xca7554a6 ttm_bo_kunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcf4af215 ttm_agp_unbind +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd3f54d78 ttm_pool_alloc +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdd09e5f8 ttm_bo_vm_fault +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe04369c4 ttm_pool_debugfs +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe04aebb9 ttm_bo_put +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf8261567 ttm_agp_tt_create +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xff877f3f ttm_device_fini +EXPORT_SYMBOL drivers/gpu/drm/vmwgfx/vmwgfx 0x077694f6 ttm_mem_global_alloc +EXPORT_SYMBOL drivers/gpu/drm/vmwgfx/vmwgfx 0x0b4a6fa1 ttm_mem_global_free EXPORT_SYMBOL drivers/gpu/drm/vmwgfx/vmwgfx 0x446c961c ttm_base_object_noref_lookup -EXPORT_SYMBOL drivers/gpu/drm/vmwgfx/vmwgfx 0x5d8c5e7f ttm_mem_glob EXPORT_SYMBOL drivers/gpu/drm/vmwgfx/vmwgfx 0x6052860c ttm_round_pot -EXPORT_SYMBOL drivers/gpu/drm/vmwgfx/vmwgfx 0xa3a87863 ttm_mem_global_free -EXPORT_SYMBOL drivers/hid/hid 0x5b68eb66 hid_bus_type -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x0131aa8d ishtp_cl_driver_unregister -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x04ae6536 ishtp_cl_get_tx_free_buffer_size -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x09eab9be ishtp_send_resume -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x0a8fcad4 ishtp_set_rx_ring_size -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x136ba134 ishtp_cl_flush_queues -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x1628cda2 ishtp_cl_tx_empty -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x253da251 ishtp_cl_unlink -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x29c91041 ishtp_set_client_data -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x2cbfc8a2 ishtp_send_suspend -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x2e7eda09 ish_hw_reset -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x3f6f4c25 ishtp_cl_free -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x406606d7 ishtp_reset_handler -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x4e47dda9 ishtp_get_drvdata -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x4ed9daa6 ishtp_cl_allocate -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x5f592269 ishtp_cl_link +EXPORT_SYMBOL drivers/gpu/drm/vmwgfx/vmwgfx 0x642be731 ttm_mem_glob +EXPORT_SYMBOL drivers/hid/hid 0xb81b67d2 hid_bus_type +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x045672fc ishtp_cl_link +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x0deed4e5 ishtp_cl_get_tx_free_rings +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x130bdde4 ishtp_fw_cl_get_client +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x14a1d12b ishtp_dev_to_cl_device +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x1650d0c5 ishtp_cl_rx_get_rb +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x1b8602c1 ishtp_bus_remove_all_clients +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x1f97e493 ishtp_cl_connect +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x20f2a907 ishtp_set_client_data +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x242d43ce ishtp_cl_io_rb_recycle +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x258ed598 ishtp_cl_get_tx_free_buffer_size +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x4c8d3a26 ishtp_cl_allocate +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x50cacf06 ishtp_get_client_data +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x571ba995 ishtp_start +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x5a82a883 ishtp_reset_compl_handler +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x5ed441b6 ishtp_trace_callback EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x5f9b0501 ishtp_get_fw_client_id -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x6715dba2 ishtp_dev_to_cl_device -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x697c49db ishtp_cl_get_tx_free_rings -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x74aa12da ishtp_register_event_cb -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x7f01d6c3 ishtp_get_ishtp_device -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x8ca6216f ishtp_cl_connect -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x95086252 ishtp_cl_disconnect -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x97f67235 ishtp_bus_remove_all_clients -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x9930c290 ishtp_start -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x9c260298 ishtp_fw_cl_get_client -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xa564a664 ishtp_get_client_data -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xa61e5033 ishtp_get_device -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xa9d719e1 ishtp_get_pci_device -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xae24d895 ishtp_fw_cl_by_uuid -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xb7a02aa3 ishtp_set_drvdata -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xccb773a5 ishtp_cl_send -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xcd70b6a3 ishtp_cl_io_rb_recycle -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xced84473 ishtp_put_device -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xd4cfd968 ishtp_device -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xd82b42b7 ishtp_set_connection_state -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xdabf273c ishtp_cl_rx_get_rb -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xdae62a7d ishtp_set_tx_ring_size -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xe23dfc79 ishtp_trace_callback -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xeac6fcc9 ishtp_reset_compl_handler -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xf44ec922 ishtp_cl_set_fw_client_id -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xf690d7d3 ishtp_cl_driver_register -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xf9a1af88 ishtp_device_init -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xfb575004 ishtp_recv -EXPORT_SYMBOL drivers/hv/hv_vmbus 0x4e995529 vmbus_sendpacket -EXPORT_SYMBOL drivers/hv/hv_vmbus 0xb9a1b574 vmbus_recvpacket +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x60009e1b ishtp_device_init +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x68a9aa27 ishtp_device +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x7d2da345 ishtp_get_drvdata +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x7fbd62f7 ishtp_cl_tx_empty +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x8b9b1398 ishtp_reset_handler +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x8f700a44 ishtp_get_pci_device +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x97a30f4a ishtp_set_tx_ring_size +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x9a427875 ishtp_fw_cl_by_uuid +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x9d55b907 ishtp_recv +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x9e163378 ishtp_register_event_cb +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x9ecb85f2 ishtp_set_drvdata +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x9ef2eba7 ish_hw_reset +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xa044b9fe ishtp_cl_free +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xa0e5a659 ishtp_set_connection_state +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xb273495c ishtp_get_device +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xbbcb38ff ishtp_cl_driver_unregister +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xbde96121 ishtp_cl_disconnect +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xbe29617d ishtp_cl_driver_register +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xc580483f ishtp_cl_send +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xd066a763 ishtp_send_suspend +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xd254f362 ishtp_cl_set_fw_client_id +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xd453909e ishtp_cl_flush_queues +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xd779900a ishtp_send_resume +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xe1a22ed0 ishtp_set_rx_ring_size +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xe95a1c64 ishtp_cl_unlink +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xf6f8be3f ishtp_put_device +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xfe8aac15 ishtp_get_ishtp_device +EXPORT_SYMBOL drivers/hv/hv_vmbus 0x76f7df2e vmbus_sendpacket +EXPORT_SYMBOL drivers/hv/hv_vmbus 0xf8944742 vmbus_recvpacket EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x2f9e7f8e vid_which_vrm EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x446615bd vid_from_reg EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x01568393 sch56xx_read_virtual_reg -EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x6033c803 sch56xx_watchdog_register +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x4f3d72be sch56xx_watchdog_register EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x96ec3b26 sch56xx_read_virtual_reg12 EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xaa17a737 sch56xx_write_virtual_reg EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xb37b9b81 sch56xx_read_virtual_reg16 -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x18bb821a i2c_bit_add_numbered_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xb0551152 i2c_bit_add_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xfc30dc85 i2c_bit_algo -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x3decf3ff i2c_pca_add_numbered_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x7096d85b i2c_pca_add_bus -EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0xfd923bd6 amd756_smbus -EXPORT_SYMBOL drivers/iio/accel/bma400_core 0x1e39a0c0 bma400_remove -EXPORT_SYMBOL drivers/iio/accel/bma400_core 0xb5e649fe bma400_probe -EXPORT_SYMBOL drivers/iio/accel/bma400_core 0xd20b4fac bma400_regmap_config -EXPORT_SYMBOL drivers/iio/accel/kxsd9 0x47e7247b kxsd9_dev_pm_ops -EXPORT_SYMBOL drivers/iio/accel/kxsd9 0xb9571846 kxsd9_common_probe -EXPORT_SYMBOL drivers/iio/accel/kxsd9 0xdc77db38 kxsd9_common_remove -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x1db82c61 mma9551_app_reset -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x2c26ecdd mma9551_read_config_word -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x3c20238e mma9551_read_accel_chan -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x3d4c2d21 mma9551_set_power_state +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x0fdacc9f i2c_bit_algo +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x6bdba45b i2c_bit_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xdccb4a0b i2c_bit_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x3f8c70fd i2c_pca_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0xb84f5453 i2c_pca_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0xc55812a4 amd756_smbus +EXPORT_SYMBOL drivers/iio/accel/bma400_core 0x06993fcf bma400_remove +EXPORT_SYMBOL drivers/iio/accel/bma400_core 0x29d5d197 bma400_probe +EXPORT_SYMBOL drivers/iio/accel/bma400_core 0x9bdd19ca bma400_regmap_config +EXPORT_SYMBOL drivers/iio/accel/kxsd9 0x9bbf7807 kxsd9_dev_pm_ops +EXPORT_SYMBOL drivers/iio/accel/kxsd9 0xc4ac0680 kxsd9_common_probe +EXPORT_SYMBOL drivers/iio/accel/kxsd9 0xe9877c43 kxsd9_common_remove +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x04a96564 mma9551_write_config_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x06c137bb mma9551_gpio_config +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x1108e710 mma9551_read_status_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x1fdb1e9a mma9551_set_device_state EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x41ef446c mma9551_read_accel_scale -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x65882256 mma9551_set_device_state -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x75e4580b mma9551_read_status_byte -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xb328ec0d mma9551_write_config_byte -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xbbf56802 mma9551_write_config_word -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xbc0d1a40 mma9551_read_config_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x4812c7e2 mma9551_read_accel_chan +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x5f6b22d7 mma9551_read_version +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x6529256c mma9551_write_config_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x830b7da0 mma9551_read_status_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x87294549 mma9551_read_config_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x930d6cf5 mma9551_read_status_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xa012b722 mma9551_set_power_state +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xa4f0c16d mma9551_read_config_word EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xbcd7fe96 mma9551_sleep -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xc52321cb mma9551_update_config_bits -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xc9a14f3b mma9551_read_config_words -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xcde19d87 mma9551_read_status_word -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xdd3eed37 mma9551_gpio_config -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xde75ce9e mma9551_read_version -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xe3bcc1fd mma9551_read_status_words -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xf04c140a mma9551_write_config_words -EXPORT_SYMBOL drivers/iio/accel/st_accel 0x017aa513 st_accel_get_settings -EXPORT_SYMBOL drivers/iio/accel/st_accel 0x354b6837 st_accel_common_probe -EXPORT_SYMBOL drivers/iio/accel/st_accel 0x60172e07 st_accel_common_remove +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xbfc06425 mma9551_update_config_bits +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xc2c2f199 mma9551_write_config_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xe8f58061 mma9551_read_config_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xefe3b870 mma9551_app_reset +EXPORT_SYMBOL drivers/iio/accel/st_accel 0x3769eadf st_accel_get_settings +EXPORT_SYMBOL drivers/iio/accel/st_accel 0x79e50736 st_accel_common_probe +EXPORT_SYMBOL drivers/iio/accel/st_accel 0xba37340f st_accel_common_remove EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x10a4c688 qcom_adc5_hw_scale EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x12402a0a qcom_vadc_scale EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x39885d6b qcom_adc_tm5_temp_volt_scale @@ -1181,1241 +1181,1251 @@ 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 0x8a2b6c2c iio_triggered_buffer_setup_ext -EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0x94ded014 iio_triggered_buffer_cleanup -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x2efeb556 iio_kfifo_free -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x86375c56 iio_kfifo_allocate -EXPORT_SYMBOL drivers/iio/chemical/bme680_core 0xd839994a bme680_regmap_config -EXPORT_SYMBOL drivers/iio/chemical/scd30_core 0xc3a78fde scd30_suspend -EXPORT_SYMBOL drivers/iio/chemical/scd30_core 0xe5c651ee scd30_probe -EXPORT_SYMBOL drivers/iio/chemical/scd30_core 0xe890f1ca scd30_resume +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0x1ea518ce iio_triggered_buffer_cleanup +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0xca6c0443 iio_triggered_buffer_setup_ext +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x48e68e1c iio_kfifo_free +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xe6e792dd iio_kfifo_allocate +EXPORT_SYMBOL drivers/iio/chemical/bme680_core 0x6e0fc4ee bme680_regmap_config +EXPORT_SYMBOL drivers/iio/chemical/scd30_core 0x262bc664 scd30_suspend +EXPORT_SYMBOL drivers/iio/chemical/scd30_core 0x871fa1ac scd30_resume +EXPORT_SYMBOL drivers/iio/chemical/scd30_core 0xf7c1e980 scd30_probe EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x045688dd ms_sensors_read_prom_word EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x2d2f5cd5 ms_sensors_reset -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x3397fed9 ms_sensors_ht_read_temperature +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x3f379fdc ms_sensors_ht_read_humidity +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x41dfc713 ms_sensors_write_heater EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x42b6a050 ms_sensors_convert_and_read -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x6081c7c3 ms_sensors_write_resolution -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x6b5bf247 ms_sensors_show_heater -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xb5475e5a ms_sensors_tp_read_prom -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xb7d541d2 ms_sensors_write_heater -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xbeca1277 ms_sensors_show_battery_low -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xc68488e7 ms_sensors_read_temp_and_pressure -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xc6cf17d2 ms_sensors_read_serial -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xde581ac9 ms_sensors_ht_read_humidity -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x15966caa ssp_register_consumer -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x3192783a ssp_change_delay -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x4a9ec658 ssp_get_sensor_delay -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x736c3904 ssp_disable_sensor -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x8853dd61 ssp_enable_sensor -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x0b61f807 ssp_common_process_data -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x3f0be3c2 ssp_common_buffer_postdisable -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0xa3c9fa31 ssp_common_buffer_postenable +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x560c0f3d ms_sensors_show_heater +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x6a557805 ms_sensors_read_serial +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x711bced9 ms_sensors_write_resolution +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x885f1510 ms_sensors_show_battery_low +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xa03f5ecf ms_sensors_read_temp_and_pressure +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xcd9579ea ms_sensors_tp_read_prom +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xea3d394e ms_sensors_ht_read_temperature +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x15933dd0 ssp_get_sensor_delay +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x4e3b4461 ssp_disable_sensor +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xd47850d0 ssp_change_delay +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xdb204564 ssp_register_consumer +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xf28e71bf ssp_enable_sensor +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x5367053d ssp_common_process_data +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x8f227692 ssp_common_buffer_postenable +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x9a2ee022 ssp_common_buffer_postdisable EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x074d7047 st_sensors_trigger_handler -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x0b2aee03 st_sensors_allocate_trigger -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x22faf909 st_sensors_verify_id -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x2508c4b1 st_sensors_set_axis_enable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x26016a07 st_sensors_sysfs_sampling_frequency_avail -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x2b1784af st_sensors_sysfs_scale_avail -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x47d56bbd st_sensors_power_disable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x4e807018 st_sensors_validate_device -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x56dc2df8 st_sensors_power_enable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x595fae7e st_sensors_dev_name_probe -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x67806d7f st_sensors_set_enable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x87a7a1c6 st_sensors_get_settings_index -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x93dc6e7f st_sensors_set_fullscale_by_gain -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xa11b0539 st_sensors_read_info_raw -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xa34140fc st_sensors_set_odr -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xb6c18c08 st_sensors_init_sensor -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xb7bbbf05 st_sensors_deallocate_trigger -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xde447d2a st_sensors_set_dataready_irq -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xeb0cbcc8 st_sensors_debugfs_reg_access -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0x7827d727 st_sensors_i2c_configure -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_spi 0xf2fe9011 st_sensors_spi_configure -EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0x7566315c mpu3050_common_probe -EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0xa1b0be80 mpu3050_dev_pm_ops -EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0xc128ff82 mpu3050_common_remove -EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x2a6d004e st_gyro_common_remove -EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x640197ef st_gyro_get_settings -EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0xae18e6b3 st_gyro_common_probe -EXPORT_SYMBOL drivers/iio/humidity/hts221 0x25434242 hts221_probe -EXPORT_SYMBOL drivers/iio/humidity/hts221 0x2d4655d5 hts221_pm_ops -EXPORT_SYMBOL drivers/iio/imu/adis_lib 0x04b06fde adis_debugfs_reg_access -EXPORT_SYMBOL drivers/iio/imu/adis_lib 0xf6eea6d2 adis_enable_irq -EXPORT_SYMBOL drivers/iio/imu/bmi160/bmi160_core 0xc84f022a bmi160_regmap_config +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x0db794fe st_sensors_init_sensor +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x2087b38a st_sensors_sysfs_scale_avail +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x2ef450e7 st_sensors_set_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x31ee3e58 st_sensors_verify_id +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x44a974e0 st_sensors_power_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x45e26e28 st_sensors_sysfs_sampling_frequency_avail +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x5df6fd50 st_sensors_get_settings_index +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x694ea250 st_sensors_read_info_raw +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x723503d6 st_sensors_debugfs_reg_access +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x7813f297 st_sensors_validate_device +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x80d946ef st_sensors_deallocate_trigger +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x811aa359 st_sensors_set_fullscale_by_gain +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xac8abf71 st_sensors_set_dataready_irq +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xbdf8b921 st_sensors_set_axis_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xc5975975 st_sensors_set_odr +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xc8a24ea2 st_sensors_dev_name_probe +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xcc14f713 st_sensors_allocate_trigger +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xcea218f0 st_sensors_power_disable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0x904ed069 st_sensors_i2c_configure +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_spi 0x164a34aa st_sensors_spi_configure +EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0x4943fb67 mpu3050_dev_pm_ops +EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0xd0b63251 mpu3050_common_remove +EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0xdf00b83c mpu3050_common_probe +EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x5421cb56 st_gyro_common_probe +EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x7404ad45 st_gyro_get_settings +EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x7fd88074 st_gyro_common_remove +EXPORT_SYMBOL drivers/iio/humidity/hts221 0x691a6ca9 hts221_probe +EXPORT_SYMBOL drivers/iio/humidity/hts221 0xa481e296 hts221_pm_ops +EXPORT_SYMBOL drivers/iio/imu/adis_lib 0x514ca852 adis_debugfs_reg_access +EXPORT_SYMBOL drivers/iio/imu/adis_lib 0x68e6d3e8 adis_enable_irq +EXPORT_SYMBOL drivers/iio/imu/bmi160/bmi160_core 0x9d065667 bmi160_regmap_config EXPORT_SYMBOL drivers/iio/imu/bmi160/bmi160_core 0xca19cfae bmi160_enable_irq -EXPORT_SYMBOL drivers/iio/imu/fxos8700_core 0xdfef91c0 fxos8700_regmap_config -EXPORT_SYMBOL drivers/iio/imu/st_lsm6dsx/st_lsm6dsx 0x1b99e1a6 st_lsm6dsx_probe -EXPORT_SYMBOL drivers/iio/imu/st_lsm6dsx/st_lsm6dsx 0x4d385002 st_lsm6dsx_pm_ops -EXPORT_SYMBOL drivers/iio/industrialio 0x026d332e iio_push_event -EXPORT_SYMBOL drivers/iio/industrialio 0x1e6579b5 iio_trigger_unregister +EXPORT_SYMBOL drivers/iio/imu/fxos8700_core 0x005e7352 fxos8700_regmap_config +EXPORT_SYMBOL drivers/iio/imu/st_lsm6dsx/st_lsm6dsx 0x14573549 st_lsm6dsx_pm_ops +EXPORT_SYMBOL drivers/iio/imu/st_lsm6dsx/st_lsm6dsx 0xa4c0f914 st_lsm6dsx_probe +EXPORT_SYMBOL drivers/iio/industrialio 0x02e07c21 iio_get_time_res +EXPORT_SYMBOL drivers/iio/industrialio 0x2093bfdd __iio_device_register +EXPORT_SYMBOL drivers/iio/industrialio 0x2a158d79 __iio_trigger_register EXPORT_SYMBOL drivers/iio/industrialio 0x2d6bcdcb iio_trigger_generic_data_rdy_poll -EXPORT_SYMBOL drivers/iio/industrialio 0x2ed92b35 iio_device_set_clock -EXPORT_SYMBOL drivers/iio/industrialio 0x3797ff88 iio_trigger_using_own -EXPORT_SYMBOL drivers/iio/industrialio 0x4529fdad iio_trigger_poll_chained -EXPORT_SYMBOL drivers/iio/industrialio 0x54959690 iio_read_mount_matrix -EXPORT_SYMBOL drivers/iio/industrialio 0x6deafb74 iio_trigger_alloc -EXPORT_SYMBOL drivers/iio/industrialio 0x71444c95 iio_device_unregister -EXPORT_SYMBOL drivers/iio/industrialio 0x74cec535 iio_trigger_poll -EXPORT_SYMBOL drivers/iio/industrialio 0x78d6e9f6 iio_trigger_validate_own_device -EXPORT_SYMBOL drivers/iio/industrialio 0x7d9fbff4 iio_read_const_attr -EXPORT_SYMBOL drivers/iio/industrialio 0x7f4f8a9e iio_device_get_clock -EXPORT_SYMBOL drivers/iio/industrialio 0x81b458df iio_trigger_set_immutable -EXPORT_SYMBOL drivers/iio/industrialio 0x9569f4c7 iio_trigger_notify_done -EXPORT_SYMBOL drivers/iio/industrialio 0x99b7c034 __iio_trigger_register -EXPORT_SYMBOL drivers/iio/industrialio 0xa1029efb __iio_device_register -EXPORT_SYMBOL drivers/iio/industrialio 0xaa5ce150 iio_get_time_ns -EXPORT_SYMBOL drivers/iio/industrialio 0xb45eedc4 iio_device_alloc -EXPORT_SYMBOL drivers/iio/industrialio 0xb49bb927 iio_bus_type -EXPORT_SYMBOL drivers/iio/industrialio 0xb4a844c9 iio_get_time_res -EXPORT_SYMBOL drivers/iio/industrialio 0xcd12e00f iio_trigger_free -EXPORT_SYMBOL drivers/iio/industrialio 0xd0754cfc iio_buffer_init +EXPORT_SYMBOL drivers/iio/industrialio 0x3045754b iio_trigger_validate_own_device +EXPORT_SYMBOL drivers/iio/industrialio 0x392d410c iio_trigger_free +EXPORT_SYMBOL drivers/iio/industrialio 0x3c1319a2 iio_get_time_ns +EXPORT_SYMBOL drivers/iio/industrialio 0x4b8394e1 iio_read_const_attr +EXPORT_SYMBOL drivers/iio/industrialio 0x4e20bcdd iio_trigger_poll +EXPORT_SYMBOL drivers/iio/industrialio 0x5297d776 iio_trigger_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0x5634884c iio_device_free +EXPORT_SYMBOL drivers/iio/industrialio 0x6c383429 iio_bus_type +EXPORT_SYMBOL drivers/iio/industrialio 0x803a3896 iio_trigger_using_own +EXPORT_SYMBOL drivers/iio/industrialio 0x9cf4f929 iio_device_set_clock +EXPORT_SYMBOL drivers/iio/industrialio 0xa4005056 iio_read_mount_matrix +EXPORT_SYMBOL drivers/iio/industrialio 0xa6714965 iio_device_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0xa84d854d iio_trigger_poll_chained +EXPORT_SYMBOL drivers/iio/industrialio 0xc8140f59 iio_buffer_init +EXPORT_SYMBOL drivers/iio/industrialio 0xd680f12a iio_push_event +EXPORT_SYMBOL drivers/iio/industrialio 0xde2326fe iio_trigger_notify_done EXPORT_SYMBOL drivers/iio/industrialio 0xdf76bbeb iio_pollfunc_store_time -EXPORT_SYMBOL drivers/iio/industrialio 0xe0e0116f iio_device_free -EXPORT_SYMBOL drivers/iio/industrialio-configfs 0x2a879ff1 iio_configfs_subsys -EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x23761296 iio_sw_device_create -EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x348e241c iio_sw_device_destroy -EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x44f0c14f iio_unregister_sw_device_type -EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0xf59dfd1e iio_register_sw_device_type -EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x3086bb1f iio_register_sw_trigger_type -EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x3c1ff01f iio_sw_trigger_destroy -EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x79c0086b iio_unregister_sw_trigger_type -EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x85f5f8f4 iio_sw_trigger_create -EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x2d2a72a5 iio_triggered_event_setup -EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x60cdd0de iio_triggered_event_cleanup -EXPORT_SYMBOL drivers/iio/light/st_uvis25_core 0x668d3387 st_uvis25_pm_ops -EXPORT_SYMBOL drivers/iio/light/st_uvis25_core 0x68e3a6b5 st_uvis25_probe -EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0x0ced5bab bmc150_magn_pm_ops -EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0x2d945c3b bmc150_magn_probe -EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0x70139225 bmc150_magn_regmap_config -EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0xabac4bbd bmc150_magn_remove -EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0x2fdd1f52 hmc5843_common_resume -EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0x30f71015 hmc5843_common_probe -EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0xb8dcfa41 hmc5843_common_suspend -EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0xcbd06a06 hmc5843_common_remove -EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x5002d28e st_magn_common_remove -EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0xab908e38 st_magn_common_probe -EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0xf5f55c4e st_magn_get_settings -EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x17bfa0ec bmp280_dev_pm_ops -EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x1cd63776 bmp280_regmap_config -EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x45564788 bmp280_common_probe -EXPORT_SYMBOL drivers/iio/pressure/bmp280 0xf650ea14 bmp180_regmap_config -EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0x63409d9f ms5611_remove -EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0x7d0bc1ff ms5611_probe -EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x071e8f5d st_press_get_settings -EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x548d4c54 st_press_common_remove -EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0xc1f0c75e st_press_common_probe -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x0523da74 ib_cm_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x1d749e64 ib_cm_listen -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x35f3a067 ib_destroy_cm_id -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x438a36a4 ib_send_cm_rej -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x4e4c69f5 ib_create_cm_id +EXPORT_SYMBOL drivers/iio/industrialio 0xe451d2bc iio_trigger_set_immutable +EXPORT_SYMBOL drivers/iio/industrialio 0xf3edc28d iio_device_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0xf4c8a614 iio_device_get_clock +EXPORT_SYMBOL drivers/iio/industrialio 0xf8523cc1 iio_trigger_unregister +EXPORT_SYMBOL drivers/iio/industrialio-configfs 0xe088e0e2 iio_configfs_subsys +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x2c357694 iio_sw_device_destroy +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0xc209f132 iio_unregister_sw_device_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0xf07f4ee4 iio_register_sw_device_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0xf419f05c iio_sw_device_create +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x75f9e437 iio_register_sw_trigger_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0xc02fcb8a iio_unregister_sw_trigger_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0xcf588080 iio_sw_trigger_destroy +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0xf80ca3c9 iio_sw_trigger_create +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0xc2e5ddc7 iio_triggered_event_cleanup +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0xc6766698 iio_triggered_event_setup +EXPORT_SYMBOL drivers/iio/light/st_uvis25_core 0x5ada858b st_uvis25_probe +EXPORT_SYMBOL drivers/iio/light/st_uvis25_core 0xd0224d54 st_uvis25_pm_ops +EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0x2c988976 bmc150_magn_regmap_config +EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0x529e3266 bmc150_magn_probe +EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0xa5c38373 bmc150_magn_remove +EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0xe41e1e4c bmc150_magn_pm_ops +EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0xda3af0a8 hmc5843_common_probe +EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0xdc31a7b2 hmc5843_common_remove +EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0xf1c9e4ba hmc5843_common_resume +EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0xfc811875 hmc5843_common_suspend +EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x68eb531b st_magn_common_probe +EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x778977c1 st_magn_common_remove +EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0xe5f066e4 st_magn_get_settings +EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x4ed0c5a7 bmp280_dev_pm_ops +EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x6af62781 bmp180_regmap_config +EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x8070fae3 bmp280_regmap_config +EXPORT_SYMBOL drivers/iio/pressure/bmp280 0xebe09e6f bmp280_common_probe +EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0x44483f55 ms5611_remove +EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0x68305d74 ms5611_probe +EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x310dc091 st_press_get_settings +EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x5a7d1d79 st_press_common_probe +EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x5c77f014 st_press_common_remove +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x0a1cf03d ib_send_cm_sidr_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x1cfa0084 ib_send_cm_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x3a39fb5a ib_send_cm_dreq +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x3c0b834f ib_send_cm_drep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x4b7f4502 ib_cm_insert_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x548f0406 ib_send_cm_rej +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x678ed019 ib_cm_init_qp_attr EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x69824a14 ibcm_reject_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x6f394ba9 ib_send_cm_dreq -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x7ffb7da5 ib_send_cm_mra -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x94fb6a2b ib_send_cm_rep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xad67af30 ib_send_cm_sidr_req -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xc209a374 ib_cm_insert_listen -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xcd071f12 ib_cm_notify -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xe5976384 ib_send_cm_req -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xe878e2f1 ib_send_cm_sidr_rep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xff48b3e4 ib_send_cm_rtu -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xfffc8dc3 ib_send_cm_drep -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x00c6a1bc ib_find_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x00f0c272 ib_get_cached_lmc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x01da201b ib_get_cached_port_state -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0399bb42 ib_init_ah_attr_from_path -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x03c34368 rdma_user_mmap_entry_insert_range -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x06908c45 ib_modify_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x079da22f rdma_restrack_set_name -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x07bfe698 rdma_rw_ctx_destroy -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x08017084 ib_qp_usecnt_dec -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x09fa69d5 ib_dealloc_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0aacda05 rdma_user_mmap_entry_get +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x817afb83 ib_send_cm_sidr_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x97c68f92 ib_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xb4176265 ib_send_cm_rtu +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xb41d7711 ib_send_cm_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xc06a43e3 ib_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xd5a52d33 ib_cm_notify +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xef264e46 ib_send_cm_mra +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xfbf5d459 ib_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x01170a7f ibdev_info +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x040fe468 ib_port_sysfs_get_ibdev_kobj +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x05c0c991 ib_close_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x063ae9f9 rdma_restrack_add +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x094a4e8a ib_sa_get_mcmember_rec +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0a53469f ib_register_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0a939262 ibdev_warn +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0b57f22f ib_find_cached_pkey EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c86f5cb ib_sa_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0cf1857b rdma_move_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0d22658e rdma_rw_ctx_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0ed3f5b5 ib_set_vf_guid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1183c7a8 ib_open_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x14df30e6 rdma_nl_put_driver_u32 -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x164fdee5 ibdev_info -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x18340a6e ib_modify_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x18355ec8 ib_map_mr_sg_pi +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0e8a038e ib_free_recv_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0ff93786 ib_unregister_device_queued +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x10cb5bdc ib_register_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x11ae5c4d ibnl_put_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x11de1e80 ib_mad_kernel_rmpp_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x14f4075b ib_destroy_wq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1586923c ib_resize_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1617856d ib_init_ah_attr_from_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1763bb68 ib_set_vf_guid EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x184621a4 ib_get_rdma_header_version -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x18ff634d rdma_rw_mr_factor +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1888f808 rdma_restrack_del +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1904add2 ib_mr_pool_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x19c94e48 rdma_addr_cancel +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1a9a757d ib_get_vf_stats EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1b037462 __rdma_block_iter_start -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1eeb851c ib_find_exact_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1f1c732a ib_process_cq_direct -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1f2e5a0e ib_find_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2002145b rdma_create_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x206dc9e7 rdma_nl_unicast_wait -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x20d6a30b rdma_restrack_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x20e67bc2 ib_init_ah_from_mcmember -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2230573c ib_create_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1b7cd1fc rdma_user_mmap_entry_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1de72573 ib_get_rmpp_segment +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x214f4e7f ib_cq_pool_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x22d04ece ib_query_pkey EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x22f3cf93 ib_pack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x23865387 ib_sa_get_mcmember_rec -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2461fdee ib_alloc_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x26fa5dc1 ib_dealloc_pd_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x271e9376 ib_drain_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x29d67dfc ib_find_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2fb603bf ib_port_immutable_read +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2335a7f6 rdma_create_user_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x253e1e7d ib_dealloc_pd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x26788bdc rdma_restrack_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x27b4acf4 rdma_rw_ctx_signature_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x28b1591b ibdev_err +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x28d53d41 ib_drain_sq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x29716f08 ib_process_cq_direct +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2c14f4d6 ib_rdmacg_try_charge +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2e905b3f ib_port_unregister_client_groups EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2fc70b9e ib_get_gids_from_rdma_hdr EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x305e5701 rdma_addr_size_kss -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x32d33fd3 ib_destroy_qp_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3414a329 rdma_nl_put_driver_u32_hex -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x354b2d18 rdma_link_register -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x37226b07 rdma_read_gid_hw_context -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3a549725 rdma_query_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3abafb6e rdma_find_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3b13669f rdma_get_gid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3b2698f7 ib_get_device_fw_str -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3cd76346 __ib_create_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3d8e0866 ib_unregister_mad_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3db3dc10 ib_sa_path_rec_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3f04342f ib_query_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3fa29d9b rdma_restrack_new +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x331b73b6 rdma_nl_unicast_wait +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x33e4ef05 ibdev_alert +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x342c5212 ib_create_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x37080311 rdma_read_gid_hw_context +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3736a654 rdma_restrack_parent_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3783fef4 ib_map_mr_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x39046381 ib_find_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3bf9ff08 rdma_nl_put_driver_u32_hex +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3d46b07b rdma_query_gid_table EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3fc2387c ib_ud_header_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4082719b ib_find_exact_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x40cfa3fd rdma_nl_put_driver_u64 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x42903ff8 ib_check_mr_status EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x434c5d10 zgid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x43625983 ibdev_err EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x439ce33c ib_sa_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x44b2d695 ib_reg_user_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x44b7ef11 rdma_restrack_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x453595b7 ib_dealloc_xrcd_user EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x45fb8985 rdma_nl_chk_listeners -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x46db230c ib_get_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x47055569 ib_create_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x47078e4e rdma_user_mmap_entry_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x48ee3e2c ib_qp_usecnt_inc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4c146fd7 rdma_nl_register -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4c61696e ib_set_client_data -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4d6b8b71 ib_unregister_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x46dd2cf6 ib_modify_qp_with_udata +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x473500b6 ib_create_wq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x47c27199 ib_cq_pool_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x49708c61 rdma_move_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4a965d72 ib_rdmacg_uncharge +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4ae6a64b ib_get_net_dev_by_params +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4da9c304 ib_drain_qp EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e155af0 ib_response_mad EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e90435c ib_sa_free_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x50c4e7a9 ib_map_mr_sg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5121a381 ib_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5198af8e ib_set_vf_link_state -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x51b8231b ib_port_sysfs_get_ibdev_kobj -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x555e9891 rdma_set_cq_moderation -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x556ddea9 ib_device_get_by_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4ebb6ef5 ib_create_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4fbfedd0 ib_alloc_mr_integrity +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x507920de ib_port_register_client_groups +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x528b94bc rdma_link_register +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x54d358cd ib_dealloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x55a4f810 ib_get_vf_guid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x55b4824b ib_set_vf_link_state EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x55bb02f3 ib_cache_gid_type_str -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x55fc93f6 ib_device_get_by_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x56aa3df2 ibnl_put_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5c98dd7c ib_advise_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x56912b3f ib_get_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x577f1979 ib_device_get_by_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x57d6e566 rdma_copy_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x583500e2 rdma_port_get_link_layer +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5a5845a5 rdma_dev_access_netns +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5a73a476 ibdev_emerg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5b29dc74 rdma_get_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5ce9289e ib_query_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5dc05801 ib_unregister_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5f763357 ib_create_srq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x60570584 rdma_create_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x60d239ee rdma_roce_rescan_device EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x613b1e2e ib_is_mad_class_rmpp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x61cc6304 ib_modify_mad EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x61d24c52 ib_rate_to_mbps -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x621e1b6f __ib_alloc_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6340e1f0 ib_drain_sq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6490ed16 ib_check_mr_status -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x652541d7 rdma_restrack_add -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x69000990 ib_sa_guid_info_rec_query -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b38cde7 rdma_umap_priv_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x633f0425 ib_mr_pool_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6602e900 ib_query_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x66c91638 ib_modify_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x677f7868 ib_sa_path_rec_get EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b958320 ib_ud_ip4_csum -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6be8957a rdma_addr_cancel -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6cc87774 ib_query_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6e06ba06 ib_register_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6e5d4f1f ib_register_event_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6ebd967e ib_free_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6de033b0 rdma_set_cq_moderation +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f02e6f5 ib_modify_device EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f3614b6 rdma_is_zero_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x704e70ce rdma_replace_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x706f58c2 ib_modify_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6fe8904a ib_device_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x70429b94 ib_dma_virt_map_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x712a05ea rdma_read_gid_l2_fields +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x713831ee ib_advise_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x72d159b3 ib_unregister_device_and_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x739e61ac ib_unregister_client EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x73baf9a2 ib_modify_qp_is_ok -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x73bcd75b ib_sa_join_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x73cca184 ib_create_qp_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7446c4f1 ib_detach_mcast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x753fbbf4 rdma_link_unregister -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7581bba3 ib_create_qp_kernel +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7468166a ib_get_vf_config +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x748c3bbb rdma_alloc_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x74b15b52 rdma_rw_ctx_wrs +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x752e450c rdma_destroy_ah_attr EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x75a729a0 rdma_nl_unregister -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x75ca1849 rdma_put_gid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x76dcac5a rdma_move_grh_sgid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x77c81ca8 rdma_read_gid_attr_ndev_rcu +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x75fe03af ib_create_qp_kernel +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x77b21a35 ib_device_set_netdev EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x787ccc4c ib_get_mad_data_offset -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7ada2590 ib_mr_pool_destroy -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7c16adc9 rdma_query_gid_table -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7ca4155b ib_dma_virt_map_sg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7d26f5d5 rdma_nl_put_driver_u64_hex -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7f010b4e rdma_copy_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fa4056b rdma_hold_gid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8032fa81 ib_free_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x80f652af rdma_read_gid_l2_fields -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x80fa6d44 rdma_user_mmap_io -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x812f02d1 ib_resize_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8393f89b ibdev_emerg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x854d184d rdma_user_mmap_entry_insert -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x85c989c9 ib_query_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7ac2a9bc ib_destroy_cq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7bac00ff ib_destroy_srq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7d8596a3 ib_init_ah_from_mcmember +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fc45fe3 rdma_restrack_set_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x836f1e84 roce_gid_type_mask_support +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x83e7d4ce rdma_rw_ctx_post +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8405cc04 rdma_move_grh_sgid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x84171df5 ibnl_put_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8557cade rdma_read_gid_attr_ndev_rcu EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x86cef180 rdma_addr_size -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x893d683e rdma_user_mmap_entry_get_pgoff -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8a37a416 ib_get_vf_stats -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8a44e6ce rdma_modify_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8b042f53 ib_dereg_mr_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8bc18533 rdma_nl_put_driver_string -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8e23dfcc ibdev_warn +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x87a34a81 rdma_replace_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x88d58564 ib_modify_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8a21a85b ib_sa_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8a7994fb rdma_find_gid_by_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8c11b00d ib_device_get_by_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8cba348b ib_sa_guid_info_rec_query EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8e7528da __rdma_block_iter_next -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8eda0e8e rdma_rw_ctx_signature_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8f14bd25 ib_cq_pool_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8f57ae33 ib_alloc_mr_integrity +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8e946515 ib_get_cached_subnet_prefix +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8ed2412c ib_set_device_ops +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90c5d0c8 ib_mr_pool_init EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90e807c7 ib_cache_gid_parse_type_str -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x95cd51d2 ib_get_cached_subnet_prefix -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x96556e26 ib_create_wq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x96fc47d2 ib_free_recv_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9732a81e rdma_restrack_del -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x979b6a79 ib_port_unregister_client_groups -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x979ef2e6 ibdev_crit -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x99b03c5b ib_post_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x99e8712b rdma_destroy_ah_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9a703b08 ib_unregister_device_queued -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9a8f4474 ib_query_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9b8dadbb ib_attach_mcast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9bbaba76 ib_get_eth_speed -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9c7fe77a ib_destroy_cq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9f871557 ib_mr_pool_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa02a43b4 rdma_query_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa08af0d9 ib_device_set_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa39ce607 rdma_rw_ctx_wrs -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa3f7f23a ib_close_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x94adc6a3 _ib_alloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x97826635 ib_query_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x989ea382 ibdev_crit +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x98aa436f rdma_user_mmap_entry_insert_range +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9a618999 ib_create_qp_security +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9ade2d55 rdma_query_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa057707c ib_alloc_xrcd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa167285b ib_init_ah_attr_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa24b4192 rdma_nl_put_driver_string +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa26e2c11 rdma_nl_put_driver_u32 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa35be441 rdma_restrack_count +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa3e0b383 ib_attach_mcast EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa432baf6 ib_unpack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa68a62a7 ib_unregister_event_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa8bc2c3a ib_modify_qp_with_udata -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa8de3064 ib_destroy_srq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xab6a03e9 ib_mad_kernel_rmpp_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xabaa2435 ibdev_printk -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xac1832dd rdma_restrack_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae2fbc44 ib_rdmacg_uncharge -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae713e1d rdma_find_gid_by_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa56c53ab ib_open_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa5cee034 rdma_query_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa877a345 ib_free_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa8b7c656 rdma_init_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa98d4724 rdma_rw_ctx_destroy_signature EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae956dce ib_rate_to_mult -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae969a4d rdma_init_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb1529504 rdma_user_mmap_entry_remove +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaedcfd55 __ib_alloc_cq_any +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb2dfa87f ib_get_cached_lmc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb3382823 ib_drain_rq EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb36e4148 ib_sa_pack_path -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb3831f9c __ib_alloc_pd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb3c59d4a ib_destroy_wq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb47c6563 ib_drain_rq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb56fa941 ib_unregister_device_and_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb5cf95ce ib_create_qp_security +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb4d1206b ib_sg_to_pages EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb7852a05 ib_ud_header_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbafee79c ibdev_notice -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbcc78190 rdma_copy_src_l2_addr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc001bc0e ib_create_srq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc04cd4e5 ib_modify_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc15505a6 ib_sg_to_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc46c7fbe rdma_rw_ctx_post -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc67c2437 rdma_resolve_ip -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc98adbff ib_mr_pool_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcbdcaf27 rdma_port_get_link_layer -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcbe25553 __ib_alloc_cq_any -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcd04a6a1 rdma_rw_ctx_destroy_signature -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xce921677 roce_gid_type_mask_support +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb8574958 rdma_modify_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xba06146b ib_get_device_fw_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbb478dce ib_map_mr_sg_pi +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbb4f4b55 ib_create_qp_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbccae8e0 ib_unregister_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbcec7803 rdma_user_mmap_entry_remove +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbee78d03 ib_alloc_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc0c532c2 ib_dispatch_event +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc1ba2a7a rdma_link_unregister +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc1baf919 ib_dereg_mr_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc460d338 ib_free_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc53e8747 rdma_user_mmap_entry_insert +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc5e2adfa __ib_alloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc7192f0b ib_mr_pool_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc8b4dd74 ib_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc8b7e6ec __ib_create_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcaa0a0f7 rdma_translate_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcc18af6d ib_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcd741d9b ib_set_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xce6cca1f ib_reg_user_mr EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcfbc053b ib_unregister_driver -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcff50aa3 ib_init_ah_attr_from_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd1b713fb ib_cq_pool_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd45dca66 ibnl_put_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd4e7fb9f ib_dealloc_xrcd_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd4fa03ce rdma_nl_unicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd63e2792 ib_set_device_ops +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd02ccccc rdma_umap_priv_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd2cbabd5 ib_qp_usecnt_inc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd428d4b1 ib_port_immutable_read +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd4944aa6 ibdev_notice +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd552cfad rdma_nl_put_driver_u64_hex +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd61f45ca ib_get_eth_speed +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd659a94a rdma_nl_unicast EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd6636ca6 rdma_addr_size_in6 -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd7aad0a9 rdma_translate_ip EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda0d50ec ib_sa_cancel_query -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda8e0c77 rdma_nl_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdbead549 rdma_nl_stat_hwcounter_entry -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdd7f7393 _ib_alloc_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdf61ca6e rdma_restrack_count -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe37a5cf2 rdma_roce_rescan_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdbfeeb20 ib_post_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdc1e8349 rdma_nl_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdcc4510f rdma_nl_stat_hwcounter_entry +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdf92bcaa rdma_resolve_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe18a9d57 rdma_rw_ctx_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe3dae024 ib_register_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe4a91a5c rdma_restrack_new +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe4ddd1e2 rdma_hold_gid_attr EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5840ec6 ib_wc_status_msg EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5a78c1e ib_sa_unpack_path -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe684ef6b rdma_restrack_get_byid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe6d8d3b6 ib_mr_pool_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe765e4cf ib_get_vf_guid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe6c701f0 ib_detach_mcast EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe7b52e5f mult_to_ib_rate +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe8057bb3 rdma_rw_ctx_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe8ba5b4d rdma_user_mmap_entry_get_pgoff +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe907452b ib_modify_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9a9551e rdma_user_mmap_io EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9e799fc ib_ud_header_pack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9f0eb08 ib_dispatch_event -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xec44c8fe ib_port_register_client_groups -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xecb34798 ib_modify_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xedad49e4 rdma_nl_put_driver_u64 -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeefe4756 ib_get_net_dev_by_params -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf5c7324c rdma_create_user_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeb59e46f rdma_restrack_get_byid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xec24d84f ibdev_printk +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xec49f20d __ib_alloc_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xecf75a9c ib_get_cached_port_state +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xed6a6ec0 rdma_user_mmap_entry_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xee642ea4 ib_unregister_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeeba831c rdma_nl_register +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeece8d9d rdma_destroy_ah_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf10217c7 rdma_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf1ad5f9b rdma_put_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf1ba61de rdma_copy_src_l2_addr EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf5dedb30 rdma_node_get_transport -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf66c1b91 ib_register_mad_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf6b17e80 rdma_restrack_parent_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf68be1e9 ib_destroy_qp_user EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf6ed3334 ib_event_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf798f650 ib_alloc_xrcd_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf7ce7e56 ib_get_vf_config -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf8893561 rdma_dev_access_netns -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf8e664ee ib_device_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfc0f542a ibdev_alert -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfdc2f768 ib_get_rmpp_segment -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfe68f0b5 rdma_destroy_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xff1c6e6c ib_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xff62094a rdma_alloc_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xffc898e8 ib_rdmacg_try_charge -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x08b4e33b ib_umem_copy_from +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfa80064d ib_qp_usecnt_dec +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfbca7653 rdma_rw_mr_factor +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x00908320 uverbs_get_flags64 +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x08c6ef04 ib_umem_odp_unmap_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x0df7486a ib_umem_stop_invalidation_notifier EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1b54bd5d ib_copy_path_rec_from_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1e6273f6 ib_umem_dmabuf_unmap_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x34e082ec ib_umem_odp_map_dma_and_lock -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x3c465d3f ib_umem_release -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x40d8799f ib_umem_odp_release -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x48404460 uverbs_copy_to -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x4877cc91 ib_register_peer_memory_client -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x4c1d89b0 uverbs_fd_class -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x4d6994ef ib_umem_activate_invalidation_notifier -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x4f967b7f uverbs_get_flags64 -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5898efba ib_copy_qp_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x308b5dee _uverbs_get_const_signed +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x3cb6797b ib_umem_get_peer +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x49683382 ib_uverbs_get_ucontext_file +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x59ded985 ib_umem_copy_from EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x63057f4b ib_copy_path_rec_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x66b48c51 flow_resources_alloc -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x6a9a51b7 ib_uverbs_get_ucontext_file -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x745a2f93 _uverbs_get_const_signed -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7c4a8877 ib_umem_odp_alloc_implicit -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x81f5a541 uverbs_finalize_uobj_create -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x82cec541 _uverbs_get_const_unsigned -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x845ef447 ib_umem_get -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x890c95db ib_copy_ah_attr_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x8c95bf2f ib_uverbs_flow_resources_free -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa116dbbf ib_umem_find_best_pgsz -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xbcba658b uverbs_idr_class +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x66e6fc7d ib_umem_activate_invalidation_notifier +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7692ad2a uverbs_copy_to +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7ccebe64 uverbs_uobject_fd_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x88750ebe ib_umem_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x96b75c27 _uverbs_alloc +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x96c87da5 uverbs_destroy_def_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x9b139285 ib_register_peer_memory_client +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa09073a1 uverbs_uobject_put +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa38efbef ib_copy_ah_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa4cdebc8 uverbs_finalize_uobj_create +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa8a08d4d ib_umem_dmabuf_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa8fa6d53 flow_resources_add +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb27c9112 ib_umem_find_best_pgsz +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb7abf0c1 ib_umem_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb8f69a13 uverbs_idr_class EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xbde5c050 ib_unregister_peer_memory_client -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xbebdb3ff uverbs_destroy_def_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc03ce664 ib_umem_stop_invalidation_notifier -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc275ae72 uverbs_uobject_put -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc61de7bc ib_umem_dmabuf_map_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd059ef8d _uverbs_alloc -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd7d6e45c uverbs_copy_to_struct_or_zero -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xda23e00b uverbs_uobject_fd_release -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe7074048 ib_umem_odp_unmap_dma_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf152a142 ib_umem_odp_alloc_child -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf1ee5c62 uverbs_get_flags32 -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf26cbcaf ib_umem_odp_get -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf6d5f50e ib_umem_dmabuf_get -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xfc4e28e4 flow_resources_add -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xff4c3bed ib_umem_get_peer -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6f7aaac4 iw_cm_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x79dcd9c5 iw_cm_disconnect -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xa0a6ddff iw_create_cm_id -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xb382c7d2 iw_cm_listen -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xc041df6b iw_destroy_cm_id -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xc2782fc4 iw_cm_connect -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd5ec4207 iw_cm_accept +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc39752d6 ib_copy_qp_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc3febecc uverbs_get_flags32 +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xcd9e3481 _uverbs_get_const_unsigned +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd2f7f83e uverbs_copy_to_struct_or_zero +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xdbc40436 uverbs_fd_class +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xdfeee2ed ib_umem_odp_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xdffa79b8 ib_umem_dmabuf_map_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe07fe90b ib_umem_dmabuf_unmap_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe360d68d flow_resources_alloc +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xea0794f2 ib_umem_odp_alloc_child +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xed0a07f7 ib_umem_odp_map_dma_and_lock +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xee30720d ib_umem_odp_alloc_implicit +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf507e9c7 ib_umem_odp_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xfdb3991a ib_uverbs_flow_resources_free +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x0e457712 iw_cm_reject +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x3ec3129b iw_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6b4f08a8 iw_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x70f4d6ef iw_cm_accept +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xb5166b7f iw_cm_disconnect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xdb2b089e iw_cm_connect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xe01f4365 iw_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xe1cf180f iw_destroy_cm_id EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf3df871f iwcm_reject_msg -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xfad08847 iw_cm_reject -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0e574c96 rdma_get_service_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x10b397e9 rdma_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2ae1cde8 rdma_disconnect -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2e3a00fb rdma_set_min_rnr_timer -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2ebc9c7e rdma_read_gids -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3022e06f rdma_consumer_reject_data -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x31334093 rdma_lock_handler -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x39089c0b rdma_create_qp -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x39323855 rdma_accept_ece -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3963e472 rdma_res_to_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3af7ddda rdma_connect_ece -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3b703f61 rdma_set_afonly -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x43a58d8b rdma_listen -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4ba72640 rdma_resolve_route -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5538f49b rdma_resolve_addr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x69587760 rdma_set_ack_timeout -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7fdc584b rdma_reject -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x82524a0c rdma_accept -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x86056778 rdma_connect_locked -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8a6b750a rdma_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x02483b5c rdma_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x12e82af3 rdma_resolve_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x165ae497 rdma_connect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1a613e37 rdma_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1be9a34b rdma_accept_ece +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1ea80e0d rdma_iw_cm_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x24515e9f rdma_accept +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x26b814dd rdma_resolve_route +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4378d36d rdma_set_ack_timeout +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4b3eef99 rdma_create_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x51165b5a rdma_set_ib_path +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5cac0e65 rdma_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5dfada73 rdma_unlock_handler +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x68170036 rdma_reject_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6b9fd8b2 rdma_reject +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x702ca8cf rdma_consumer_reject_data +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7a8173f6 rdma_listen +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7db81458 rdma_lock_handler +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x899c11f3 rdma_leave_multicast EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9c4fcff9 rdma_destroy_qp -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa3884d77 rdma_reject_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa973e199 __rdma_create_kernel_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xaef0657c rdma_destroy_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xbc265aec rdma_set_ib_path -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xbfd70151 rdma_leave_multicast -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc8b11b1d rdma_set_service_type -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xda956afc rdma_create_user_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xdb143683 rdma_unlock_handler -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xdccb39f4 rdma_iw_cm_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe1f11ee6 rdma_connect -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe8b10247 rdma_notify -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf171dd5a rdma_set_reuseaddr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf623efbc rdma_bind_addr -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x02adbb6c rvt_get_credit -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x09680a14 rvt_qp_iter_init +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x94b14636 rdma_read_gids +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x95dd9a29 rdma_bind_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa3fec0b0 rdma_connect_locked +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xaa568994 rdma_connect_ece +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb4e6804d rdma_set_afonly +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb505421b rdma_set_reuseaddr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb5090dd8 __rdma_create_kernel_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb6338513 rdma_res_to_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb8d23a6c rdma_set_min_rnr_timer +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb9389d30 rdma_destroy_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc315fbba rdma_set_service_type +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xcb8a81a4 rdma_create_user_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xcdc90b9a rdma_disconnect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd1f31af7 rdma_get_service_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xfe290ac3 rdma_notify +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x043ef460 rvt_del_timers_sync +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x0881d481 rvt_error_qp EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x0e385842 ib_rvt_state_ops -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x1272037d rvt_mcast_find -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x1ca1188d rvt_send_complete -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x1cd35a84 rvt_get_rwqe -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x2e84413e rvt_dealloc_device -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x35120f4e rvt_stop_rc_timers -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x4a912504 rvt_cq_enter -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x4d272b48 rvt_ruc_loopback -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x4e2ea7cc rvt_rkey_ok -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x5ac99ad8 rvt_lkey_ok -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x834df8d4 rvt_comm_est -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x8a0e834c rvt_restart_sge -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x8f4897b6 rvt_invalidate_rkey -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x90821b53 rvt_fast_reg_mr -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x9233aedc rvt_copy_sge -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x970730f3 rvt_check_ah -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xa6b3b2bd rvt_init_port -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xa702fb36 rvt_register_device -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xb572acea rvt_add_retry_timer_ext +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x1bab140e rvt_alloc_device +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x2b9f805b rvt_qp_iter_init +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x2d14e5e6 rvt_check_ah +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x305420b6 rvt_ruc_loopback +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x38315e3d rvt_get_credit +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x4828973f rvt_qp_iter_next +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x53fdccd4 rvt_copy_sge +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x670fcffc rvt_comm_est +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x6769af2a rvt_stop_rc_timers +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x7e69be82 rvt_add_rnr_timer +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x8b92275c rvt_rc_error +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x92ac638f rvt_add_retry_timer_ext +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x9f625035 rvt_get_rwqe +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xb2b26946 rvt_send_complete EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xb7ee98b2 rvt_rc_rnr_retry -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xc020d4c5 rvt_del_timers_sync -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xc3e9feec rvt_add_rnr_timer -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xc4be12cd rvt_rc_error -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xc5d3f733 rvt_alloc_device -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xce8fbe1d rvt_compute_aeth -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xcf25c415 rvt_qp_iter_next -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xd93e4c61 rvt_qp_iter +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xbb91049b rvt_dealloc_device +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xbedf2921 rvt_register_device +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xbfb10a21 rvt_compute_aeth +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xc6a6420a rvt_lkey_ok +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xc753542a rvt_rkey_ok +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xd186b294 rvt_fast_reg_mr +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xdbfbcf77 rvt_restart_sge +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xdcca9a20 rvt_qp_iter EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xe9cf3e43 rvt_rnr_tbl_to_usec -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xec76ab87 rvt_unregister_device -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xf969e71f rvt_error_qp -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x0ad6395e rtrs_clt_get_permit -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x346addf5 rtrs_clt_request -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x5b7177a5 rtrs_clt_close -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x6fe83544 rtrs_clt_rdma_cq_direct -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x7bd2a907 rtrs_clt_put_permit -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xd356f931 rtrs_clt_open -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xe1c60d37 rtrs_clt_query -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x0ab09990 rtrs_ib_dev_find_or_add +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xf08c852d rvt_unregister_device +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xf641c73a rvt_cq_enter +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xf66c0809 rvt_invalidate_rkey +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xf75f2d62 rvt_init_port +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xf8b27eaf rvt_mcast_find +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x0ad96556 rtrs_clt_request +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x163c5c27 rtrs_clt_get_permit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xa3b606f8 rtrs_clt_put_permit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xb3757864 rtrs_clt_query +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xc005a525 rtrs_clt_close +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xceefc16e rtrs_clt_open +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xf0d20ad8 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 0x2a2a08ce rtrs_rdma_dev_pd_deinit -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x4620b3b3 rtrs_ib_dev_put +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x342db8cb rtrs_ib_dev_put EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x5b01e41d sockaddr_to_str +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x88091b35 rtrs_ib_dev_find_or_add EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x887302f3 rtrs_addr_to_sockaddr -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xdc466ca9 rtrs_rdma_dev_pd_init -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x69e2a1d6 rtrs_srv_get_sess_name -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x83a2a79e rtrs_srv_open -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x8d43377e rtrs_srv_close -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xafe3628c rtrs_srv_resp_rdma -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xb3a78f9f rtrs_srv_set_sess_priv -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xeda2beb7 rtrs_srv_get_queue_depth -EXPORT_SYMBOL drivers/input/gameport/gameport 0x1dfe2883 gameport_close -EXPORT_SYMBOL drivers/input/gameport/gameport 0x1e512871 gameport_unregister_port -EXPORT_SYMBOL drivers/input/gameport/gameport 0x25722d42 gameport_set_phys -EXPORT_SYMBOL drivers/input/gameport/gameport 0x2cd50774 __gameport_register_driver -EXPORT_SYMBOL drivers/input/gameport/gameport 0x3c29fa82 gameport_start_polling -EXPORT_SYMBOL drivers/input/gameport/gameport 0x50dd162e gameport_unregister_driver -EXPORT_SYMBOL drivers/input/gameport/gameport 0xb02fafca gameport_open -EXPORT_SYMBOL drivers/input/gameport/gameport 0xb2088cad gameport_stop_polling -EXPORT_SYMBOL drivers/input/gameport/gameport 0xf2662e8f __gameport_register_port -EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x29423ff6 iforce_process_packet -EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x95fde859 iforce_init_device -EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0xdca58767 iforce_send_packet -EXPORT_SYMBOL drivers/input/matrix-keymap 0x2c3349f2 matrix_keypad_build_keymap -EXPORT_SYMBOL drivers/input/misc/ad714x 0x11b30b5c ad714x_enable -EXPORT_SYMBOL drivers/input/misc/ad714x 0x657a6f8f ad714x_probe -EXPORT_SYMBOL drivers/input/misc/ad714x 0x90e5e390 ad714x_disable -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x86b3e0d8 cma3000_init +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xeb8adb1a rtrs_rdma_dev_pd_deinit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xfb4dc63d rtrs_rdma_dev_pd_init +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x0b80a83b rtrs_srv_close +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x294742cc rtrs_srv_get_queue_depth +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x31a9a42d rtrs_srv_open +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x3f145843 rtrs_srv_resp_rdma +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x9cc58ab4 rtrs_srv_set_sess_priv +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xb65b755d rtrs_srv_get_sess_name +EXPORT_SYMBOL drivers/input/gameport/gameport 0x32a42930 gameport_set_phys +EXPORT_SYMBOL drivers/input/gameport/gameport 0x38e76efe gameport_open +EXPORT_SYMBOL drivers/input/gameport/gameport 0x3b9f8fb6 gameport_unregister_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0x4d7c7b67 __gameport_register_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0x68f6669b gameport_stop_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0x7d5f068e gameport_start_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0xa785db0c gameport_close +EXPORT_SYMBOL drivers/input/gameport/gameport 0xb4a65755 gameport_unregister_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0xdfd30f1b __gameport_register_port +EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x62bc727d iforce_init_device +EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x8e28e73f iforce_send_packet +EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0xe3603ecc iforce_process_packet +EXPORT_SYMBOL drivers/input/matrix-keymap 0x0ea1d6ba matrix_keypad_build_keymap +EXPORT_SYMBOL drivers/input/misc/ad714x 0x8dd5f5d7 ad714x_enable +EXPORT_SYMBOL drivers/input/misc/ad714x 0x9ec972f2 ad714x_disable +EXPORT_SYMBOL drivers/input/misc/ad714x 0x9f12d518 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 0x47bebda6 rmi_unregister_transport_device -EXPORT_SYMBOL drivers/input/sparse-keymap 0x3e4c2588 sparse_keymap_setup -EXPORT_SYMBOL drivers/input/sparse-keymap 0x423f5e15 sparse_keymap_entry_from_keycode -EXPORT_SYMBOL drivers/input/sparse-keymap 0x7a8d94d4 sparse_keymap_report_event -EXPORT_SYMBOL drivers/input/sparse-keymap 0xb2108f28 sparse_keymap_entry_from_scancode -EXPORT_SYMBOL drivers/input/sparse-keymap 0xd5124b7c sparse_keymap_report_entry -EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x4451d0fe ad7879_pm_ops -EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x91cbd4c7 ad7879_probe -EXPORT_SYMBOL drivers/iommu/amd/iommu_v2 0x09be8ba5 amd_iommu_init_device -EXPORT_SYMBOL drivers/iommu/amd/iommu_v2 0x1bf99e2e amd_iommu_unbind_pasid -EXPORT_SYMBOL drivers/iommu/amd/iommu_v2 0x31bcb618 amd_iommu_set_invalid_ppr_cb -EXPORT_SYMBOL drivers/iommu/amd/iommu_v2 0x4376cfd9 amd_iommu_free_device -EXPORT_SYMBOL drivers/iommu/amd/iommu_v2 0x90f33198 amd_iommu_set_invalidate_ctx_cb -EXPORT_SYMBOL drivers/iommu/amd/iommu_v2 0xf685dfce amd_iommu_bind_pasid -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x03aed5bc capi_ctr_ready -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x382d142b detach_capi_ctr -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb2cc3d6e attach_capi_ctr -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb49b5f1d capi_ctr_handle_message -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe126222b capi_ctr_down +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0xffff3fd3 cma3000_init +EXPORT_SYMBOL drivers/input/rmi4/rmi_core 0x53b14103 rmi_unregister_transport_device +EXPORT_SYMBOL drivers/input/sparse-keymap 0x18bf8d56 sparse_keymap_entry_from_scancode +EXPORT_SYMBOL drivers/input/sparse-keymap 0x360b5632 sparse_keymap_report_event +EXPORT_SYMBOL drivers/input/sparse-keymap 0x6061f4d3 sparse_keymap_report_entry +EXPORT_SYMBOL drivers/input/sparse-keymap 0x9edea0da sparse_keymap_setup +EXPORT_SYMBOL drivers/input/sparse-keymap 0xcd9e283c sparse_keymap_entry_from_keycode +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0xbf6496e6 ad7879_probe +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0xe13557eb ad7879_pm_ops +EXPORT_SYMBOL drivers/iommu/amd/iommu_v2 0x51799da6 amd_iommu_unbind_pasid +EXPORT_SYMBOL drivers/iommu/amd/iommu_v2 0x85c0de58 amd_iommu_set_invalid_ppr_cb +EXPORT_SYMBOL drivers/iommu/amd/iommu_v2 0x8f47e29b amd_iommu_init_device +EXPORT_SYMBOL drivers/iommu/amd/iommu_v2 0xab8761d4 amd_iommu_bind_pasid +EXPORT_SYMBOL drivers/iommu/amd/iommu_v2 0xdf4adbe8 amd_iommu_free_device +EXPORT_SYMBOL drivers/iommu/amd/iommu_v2 0xf134bb10 amd_iommu_set_invalidate_ctx_cb +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x44ca8106 capi_ctr_ready +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x93a7d909 capi_ctr_handle_message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xaf590fb4 attach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xc5e83cd0 detach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xc79307f5 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 0x6dfd50f4 mISDNisac_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x742bf8b5 mISDNipac_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x9a8e344a mISDNisac_irq -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xefc7a618 mISDNipac_irq -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0xa7602cd1 mISDNisar_irq -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0xf0e5e5cc mISDNisar_init -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x00d54c98 recv_Bchannel +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x07f2e7ea mISDNipac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x5aafbe3b mISDNisac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x7e519bc2 mISDNisac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xedd38bd6 mISDNipac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x25693eba mISDNisar_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0xd401aaa5 mISDNisar_irq +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x00897553 create_l1 EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x03a68066 mISDN_FsmRestartTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x0e7f9f2c mISDN_ctrl_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x04dd6119 recv_Bchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x086d6c65 bchannel_get_rxbuf +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x0b2ef129 recv_Echannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x207b55f7 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 0x2c25ca66 recv_Bchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2a6aa923 mISDN_clear_bchannel EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x30d25b0d mISDN_FsmDelTimer EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x313b1fde mISDN_FsmAddTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x372c87ac dchannel_senddata -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x3eb72c2f bchannel_get_rxbuf -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x4501f285 queue_ch_frame -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x48e8bca9 mISDN_unregister_Bprotocol -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x4e7faf35 recv_Dchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x3eb7413f recv_Dchannel_skb EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x50c2230c mISDN_FsmChangeState EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x588886a6 l1_event -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x590bde29 mISDNDevName4ch -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x5a8d840a mISDN_register_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x5cef6f85 mISDN_unregister_Bprotocol EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6047df40 mISDN_FsmInitTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6d16e9d0 get_next_dframe -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x81023a64 mISDN_unregister_device -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8ad143dc recv_Echannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x99ce8f01 recv_Dchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9bb6d7c4 create_l1 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6b3b22b2 mISDN_initbchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x72f9a4ff queue_ch_frame +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x91675260 recv_Bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9c85c2c5 mISDN_ctrl_bchannel EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9c928457 mISDN_FsmNew -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa53e9654 mISDN_freedchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xae38eab1 mISDN_initdchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb2c5d5e9 bchannel_senddata -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb8932125 get_next_bframe -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xbc4183fe mISDN_clear_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa863dcaa mISDN_initdchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xac003843 get_next_bframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb4a114db mISDN_register_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc09a7d94 mISDN_unregister_device EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc3401729 mISDN_register_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc5fde23e mISDNDevName4ch +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc7851ad8 bchannel_senddata EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd285995f mISDN_clock_get +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd3a01adb mISDN_register_device EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd5145151 mISDN_FsmEvent -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd60749e2 mISDN_freebchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xde7cab10 mISDN_register_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd8317dce recv_Dchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xdebd033a dchannel_senddata EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe8f617eb mISDN_unregister_clock -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xec7b1f5f mISDN_initbchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xef165944 get_next_dframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf76c20a8 mISDN_freedchannel EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x01087af0 mISDN_dsp_element_unregister EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x93df9e4b dsp_audio_law_to_s32 EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xb07a21b8 dsp_audio_s16_to_law EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xb98308d8 mISDN_dsp_element_register EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0x54a12ec4 ti_lmu_common_set_ramp -EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0xcd6434e7 ti_lmu_common_get_ramp_params +EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0x78e9b7b8 ti_lmu_common_get_ramp_params +EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0x8f8f20c0 ti_lmu_common_get_brt_res EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0xced72aae ti_lmu_common_set_brightness -EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0xed38ac25 ti_lmu_common_get_brt_res -EXPORT_SYMBOL drivers/md/dm-log 0x03bd6376 dm_dirty_log_type_register -EXPORT_SYMBOL drivers/md/dm-log 0x6902b757 dm_dirty_log_destroy -EXPORT_SYMBOL drivers/md/dm-log 0x8e8eaa0e dm_dirty_log_create -EXPORT_SYMBOL drivers/md/dm-log 0xd282a0d8 dm_dirty_log_type_unregister -EXPORT_SYMBOL drivers/md/dm-snapshot 0x7213fdd8 dm_snap_cow -EXPORT_SYMBOL drivers/md/dm-snapshot 0x95a53535 dm_exception_store_type_unregister -EXPORT_SYMBOL drivers/md/dm-snapshot 0xa73770da dm_snap_origin -EXPORT_SYMBOL drivers/md/dm-snapshot 0xac4608e4 dm_exception_store_create -EXPORT_SYMBOL drivers/md/dm-snapshot 0xe09703b1 dm_exception_store_type_register -EXPORT_SYMBOL drivers/md/dm-snapshot 0xeb5c97a9 dm_exception_store_destroy -EXPORT_SYMBOL drivers/md/raid456 0x1f9f3a02 r5c_journal_mode_set -EXPORT_SYMBOL drivers/md/raid456 0xcb8be50b raid5_set_cache_size -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x0e2f4fe1 flexcop_wan_set_speed -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x2484623d flexcop_i2c_request -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x336a89ce flexcop_sram_ctrl -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x5e9616d7 flexcop_sram_set_dest -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x86e4cb17 flexcop_dump_reg -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x9666c65d flexcop_pid_feed_control -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xaa0595e6 flexcop_pass_dmx_data -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xc5730f67 flexcop_device_exit -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xcb0b1e7c flexcop_eeprom_check_mac_addr -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xcf2270a5 flexcop_pass_dmx_packets -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xd088673c flexcop_device_kmalloc -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xe26927c7 flexcop_device_initialize -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xee668a6b flexcop_device_kfree -EXPORT_SYMBOL drivers/media/common/cx2341x 0x072788d5 cx2341x_handler_init +EXPORT_SYMBOL drivers/md/dm-log 0x0aaa6a7e dm_dirty_log_type_unregister +EXPORT_SYMBOL drivers/md/dm-log 0x0f0d6d6f dm_dirty_log_destroy +EXPORT_SYMBOL drivers/md/dm-log 0x2e3a9366 dm_dirty_log_type_register +EXPORT_SYMBOL drivers/md/dm-log 0xcb98980f dm_dirty_log_create +EXPORT_SYMBOL drivers/md/dm-snapshot 0x2fc63bee dm_exception_store_destroy +EXPORT_SYMBOL drivers/md/dm-snapshot 0x4c4c4313 dm_snap_cow +EXPORT_SYMBOL drivers/md/dm-snapshot 0x4e792b22 dm_exception_store_create +EXPORT_SYMBOL drivers/md/dm-snapshot 0xb73afe1c dm_exception_store_type_register +EXPORT_SYMBOL drivers/md/dm-snapshot 0xbb5fc616 dm_snap_origin +EXPORT_SYMBOL drivers/md/dm-snapshot 0xf8d7bf0f dm_exception_store_type_unregister +EXPORT_SYMBOL drivers/md/raid456 0x2787c954 raid5_set_cache_size +EXPORT_SYMBOL drivers/md/raid456 0x8363af55 r5c_journal_mode_set +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x4241a131 flexcop_device_exit +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x55b4476c flexcop_pass_dmx_packets +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x79d01c94 flexcop_pass_dmx_data +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x903c1b73 flexcop_sram_set_dest +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x944bda70 flexcop_i2c_request +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xa8dcbfaf flexcop_device_kfree +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xd0b6688c flexcop_sram_ctrl +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xda7e6041 flexcop_eeprom_check_mac_addr +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xdc150164 flexcop_device_kmalloc +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xe52a2d16 flexcop_dump_reg +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xf4050d83 flexcop_pid_feed_control +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xf4131f0a flexcop_device_initialize +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xf7937d88 flexcop_wan_set_speed EXPORT_SYMBOL drivers/media/common/cx2341x 0x15ac1bd0 cx2341x_ctrl_query -EXPORT_SYMBOL drivers/media/common/cx2341x 0x26e43f99 cx2341x_handler_set_busy +EXPORT_SYMBOL drivers/media/common/cx2341x 0x1c5f558f cx2341x_handler_set_50hz EXPORT_SYMBOL drivers/media/common/cx2341x 0x28240e61 cx2341x_ctrl_get_menu +EXPORT_SYMBOL drivers/media/common/cx2341x 0x355c0f10 cx2341x_handler_setup EXPORT_SYMBOL drivers/media/common/cx2341x 0x55aa7c5f cx2341x_mpeg_ctrls EXPORT_SYMBOL drivers/media/common/cx2341x 0x7b4dd2cb cx2341x_fill_defaults -EXPORT_SYMBOL drivers/media/common/cx2341x 0x8040bf41 cx2341x_handler_set_50hz -EXPORT_SYMBOL drivers/media/common/cx2341x 0x8af7d256 cx2341x_handler_setup +EXPORT_SYMBOL drivers/media/common/cx2341x 0x96047822 cx2341x_handler_init +EXPORT_SYMBOL drivers/media/common/cx2341x 0xa6209296 cx2341x_handler_set_busy EXPORT_SYMBOL drivers/media/common/cx2341x 0xb2b9efb7 cx2341x_ext_ctrls 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 0xf4a32057 cypress_load_firmware +EXPORT_SYMBOL drivers/media/common/cypress_firmware 0x2a479ab9 cypress_load_firmware EXPORT_SYMBOL drivers/media/common/ttpci-eeprom 0x693e74ba ttpci_eeprom_decode_mac -EXPORT_SYMBOL drivers/media/common/ttpci-eeprom 0x8dc7398c ttpci_eeprom_parse_mac +EXPORT_SYMBOL drivers/media/common/ttpci-eeprom 0xdc96451b ttpci_eeprom_parse_mac +EXPORT_SYMBOL drivers/media/common/tveeprom 0x083ea863 tveeprom_read EXPORT_SYMBOL drivers/media/common/tveeprom 0x0dbf0296 tveeprom_hauppauge_analog -EXPORT_SYMBOL drivers/media/common/tveeprom 0xbebdd5c4 tveeprom_read +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x05da33d9 vb2_verify_memory_type 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 0x7e0a759f vb2_buffer_in_use EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0xc2d9e090 get_vaddr_frames EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0xc5e5573a frame_vector_to_pages -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0xd2374ab5 vb2_verify_memory_type EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0xdffb744b frame_vector_to_pfns -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0xeaaf854f vb2_buffer_in_use -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x3b9897d9 vb2_dvb_get_frontend -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x625e458e vb2_dvb_alloc_frontend -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x7b7594c6 vb2_dvb_register_bus -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x9eae3c2b vb2_dvb_find_frontend -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xfddfa142 vb2_dvb_dealloc_frontends -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xff1e8172 vb2_dvb_unregister_bus +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x04a789be vb2_dvb_unregister_bus +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x4e8c1de5 vb2_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x59c0697d vb2_dvb_get_frontend +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x5b6f1c27 vb2_dvb_register_bus +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xe1b3cebb vb2_dvb_find_frontend +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xf2308120 vb2_dvb_alloc_frontend EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-memops 0xa21fa765 vb2_create_framevec EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-memops 0xccd197c7 vb2_destroy_framevec -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-v4l2 0xc72f8d18 vb2_querybuf -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x05886e1d dvb_register_adapter +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-v4l2 0xfa702d84 vb2_querybuf EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x08733236 intlog10 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x0f2c3d2d dvb_register_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x13f2a801 dvb_unregister_device EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x18acd31f dvb_dmx_swfilter_packets -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x27439781 dvb_unregister_device -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2904713b dvb_ca_en50221_camready_irq -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2cbedf52 dvb_net_release EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2f5cdf80 dvb_ringbuffer_write -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x365797c1 dvb_frontend_resume -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x38c28d58 dvb_remove_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3892e0c6 dvb_net_release EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3b93d71a dvb_frontend_sleep_until -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x431db48b dvb_ca_en50221_frda_irq -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x467fba81 dvb_register_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x47e44ff1 dvb_frontend_suspend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4bf58f68 dvb_dmxdev_init EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x54abe4ff dvb_dmx_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x564b246c dvb_unregister_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x57ec224a dvb_register_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 0x65db4c04 dvb_generic_release EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6a9f708a dvb_dmx_swfilter_204 -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6f838031 dvb_frontend_detach -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7337f66f dvb_net_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x76123b26 dvb_frontend_reinitialise 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 0x91d0be81 dvb_frontend_resume EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9263a063 dvb_dmx_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa094beb2 dvb_generic_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x962c80e6 dvb_net_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x99143865 dvb_ca_en50221_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa042cbc3 dvb_ca_en50221_camready_irq EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa4235824 dvb_dmx_swfilter_raw -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa6f996ba dvb_generic_open -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb317428b dvb_ca_en50221_camchange_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa50f1628 dvb_remove_device EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb3352dd2 dvb_ringbuffer_empty -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb3af48ae dvb_dmxdev_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb6dff26d dvb_unregister_frontend -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xba563fae dvb_dmxdev_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xbcfd454f dvb_unregister_adapter -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc34ecd65 dvb_ca_en50221_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb941c1d7 dvb_ca_en50221_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc06b57a9 dvb_unregister_adapter EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc3f679f9 dvb_ringbuffer_write_user -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd89f4458 dvb_generic_ioctl -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd97ce09c dvb_register_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc46fc9a9 dvb_ca_en50221_camchange_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xcd1b2567 dvb_generic_ioctl +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xcef49fae dvb_frontend_reinitialise +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd0d6064a dvb_frontend_detach +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd9d6cebb dvb_register_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd9ea9b5b dvb_dmxdev_release EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe138ce6b dvb_ringbuffer_avail -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe93e0220 dvb_frontend_suspend EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xebbc2d9b dvb_ringbuffer_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf24ccbc5 dvb_free_device -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf5f559e3 dvb_ca_en50221_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xedd0ae14 dvb_generic_open +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xede3a233 dvb_free_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf879e9f0 dvb_ca_en50221_frda_irq EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfb09f39a dvb_ringbuffer_read EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfb9a826f dvb_ringbuffer_flush EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfc6380e5 dvb_ringbuffer_free -EXPORT_SYMBOL drivers/media/dvb-frontends/ascot2e 0x9332cdc6 ascot2e_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/atbm8830 0x9f648b3d atbm8830_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x0a73811d au8522_analog_i2c_gate_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x336778d7 au8522_get_state -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x3dfb5c02 au8522_sleep -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x4cce5f52 au8522_i2c_gate_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x755aadba au8522_led_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x83228a0f au8522_readreg -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x95e291c8 au8522_writereg -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xb31a0284 au8522_release_state -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xe66962b4 au8522_init -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_dig 0x8e6cd6b5 au8522_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/bcm3510 0xf5ed61d1 bcm3510_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx22700 0xbc90058e cx22700_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx22702 0xbef82c47 cx22702_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24110 0x189e9221 cx24110_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x8071f410 cx24113_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x8153c077 cx24113_agc_callback -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24116 0xa2c5e348 cx24116_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24120 0xd1951984 cx24120_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x24d362c8 cx24123_get_tuner_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x80f81d8b cx24123_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2820r 0xc1aefc57 cxd2820r_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x1fd6b91e cxd2841er_attach_s -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x24b6ea1c cxd2841er_attach_t_c -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2880/cxd2880 0xe0dd3008 cxd2880_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x266139a6 dib0070_set_rf_output -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x62235c78 dib0070_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x906eb482 dib0070_wbd_offset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xa6934ef0 dib0070_get_rf_output -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xb3fdd54b dib0070_ctrl_agc_filter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x234b9b6f dib0090_get_wbd_offset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x4aac45ba dib0090_gain_control -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x592eeffd dib0090_set_vga -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x64068752 dib0090_fw_register -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x77606b70 dib0090_pwm_gain_reset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x8830abed dib0090_get_current_gain -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x8a1a629e dib0090_dcc_freq -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x8dc40cc3 dib0090_get_tune_state -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xa04ece7f dib0090_set_dc_servo -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xa1c1e823 dib0090_update_rframp_7090 -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xc8c05b6a dib0090_set_switch -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xcd27fd84 dib0090_get_wbd_target -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xd482cf5d dib0090_set_tune_state -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xfd828fb2 dib0090_update_tuning_table_7090 -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xfed14798 dib0090_register -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mb 0x85534a6d dib3000mb_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x050fc9b5 dib3000mc_pid_control -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x32ab0847 dib3000mc_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x3acc1897 dib3000mc_get_tuner_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x4d979d61 dib3000mc_i2c_enumeration -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x9c64bbd2 dib3000mc_pid_parse -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xc3e5aff2 dib3000mc_set_config -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x1f3fae86 dib7000m_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x7aa152f6 dib7000m_get_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xdae57872 dib7000m_pid_filter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xe494f90b dib7000m_pid_filter_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000p 0x5c4a5951 dib7000p_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib8000 0xc497a5a3 dib8000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x138f0431 dib9000_firmware_post_pll_init -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x363d704d dib9000_set_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x4bb0656d dib9000_get_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x7f097612 dib9000_get_slave_frontend -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x86fa00fe dib9000_fw_set_component_bus_speed -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x8a51ee0d dib9000_set_gpio -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x93984c08 dib9000_i2c_enumeration -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xa191756d dib9000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xaccafd4f dib9000_fw_pid_filter_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xc4f9b023 dib9000_get_component_bus_interface -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xc5842d0a dib9000_set_slave_frontend -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xc72d373c dib9000_get_tuner_interface -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xeef73221 dib9000_fw_pid_filter -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x612fac78 dibx000_exit_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xbe912713 dibx000_get_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xca03766d dibx000_reset_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xd1f15511 dibx000_init_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xe5dfa874 dibx000_i2c_set_speed -EXPORT_SYMBOL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0x5f7002c7 drx39xxj_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/drxd 0x5a7fc921 drxd_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/drxk 0x107f1c94 drxk_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ds3000 0xc67a6b70 ds3000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dvb-pll 0x0f8cd0eb dvb_pll_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x66d6ce5f dvb_dummy_fe_qpsk_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x852d7862 dvb_dummy_fe_qam_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0xcd18ea37 dvb_dummy_fe_ofdm_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ec100 0xf387b11b ec100_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0x2809ab41 helene_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0x4944935c helene_attach_s -EXPORT_SYMBOL drivers/media/dvb-frontends/horus3a 0x16b13a8e horus3a_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/isl6405 0xfaa14e49 isl6405_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/isl6421 0xb1920968 isl6421_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/isl6423 0xe3dee5ef isl6423_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/itd1000 0x72e0a240 itd1000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ix2505v 0xbccdb6e0 ix2505v_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/l64781 0x791a21d2 l64781_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lg2160 0xa0740e5a lg2160_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3305 0x27bbdc29 lgdt3305_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3306a 0x3872d0cb lgdt3306a_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt330x 0x43589f2a lgdt330x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gl5 0xf6388ef4 lgs8gl5_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gxx 0x280c4e2d lgs8gxx_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh25 0x9786bd3d lnbh25_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh29 0x3a4ec9ff lnbh29_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0xc6ebd61b lnbp21_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0xec156db1 lnbh24_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp22 0x09b8aa5f lnbp22_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x0637d603 m88ds3103_get_agc_pwm -EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x88cd68a5 m88ds3103_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/m88rs2000 0xf304cf12 m88rs2000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a16 0x9bc62c0d mb86a16_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a20s 0xf01833b5 mb86a20s_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mt312 0x73e9c7f3 mt312_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mt352 0x33029413 mt352_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/nxt200x 0xf307da55 nxt200x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/nxt6000 0x836ab466 nxt6000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/or51132 0x058b1283 or51132_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/or51211 0xfd3c9070 or51211_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1409 0xf2a7b55b s5h1409_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1411 0xa09a432f s5h1411_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x5504d10c s5h1420_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0xfdad0e4f s5h1420_get_tuner_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1432 0x2e980fb0 s5h1432_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s921 0xa9637f77 s921_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/si21xx 0xbfb57197 si21xx_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/sp887x 0xa29d54bd sp887x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stb0899 0x87fb367b stb0899_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stb6000 0x31ba2f42 stb6000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stb6100 0xd9a227ec stb6100_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0288 0xf0a97757 stv0288_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0297 0x347c58ed stv0297_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0299 0x44901396 stv0299_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x02ced08b stv0367cab_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x71ba83ee stv0367ddb_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0xd67265c9 stv0367ter_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0900 0x93bcba52 stv0900_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv090x 0x0c999d22 stv090x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110 0x0d07093e stv6110_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110x 0xb32fba11 stv6110x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10021 0x4ae210a4 tda10021_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10023 0xf42efa91 tda10023_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10048 0xa2f79770 tda10048_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x394ea368 tda10046_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0xcd2d7532 tda10045_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10086 0x5344c761 tda10086_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda665x 0x76954470 tda665x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda8083 0xa3e1dd5f tda8083_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda8261 0x2be38287 tda8261_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda826x 0xdfed4825 tda826x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ts2020 0xe2a586b8 ts2020_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tua6100 0x9780da27 tua6100_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ves1820 0x001de1e4 ves1820_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ves1x93 0xb8c3cdd7 ves1x93_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0x63e9d449 zd1301_demod_get_dvb_frontend -EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0xe9cc3731 zd1301_demod_get_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/zl10036 0xdf5c9306 zl10036_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/zl10039 0xb67374ae zl10039_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/zl10353 0x4f9efdea zl10353_attach -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x0aacafef flexcop_dma_config_timer -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x157a9f26 flexcop_dma_allocate -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x37b765a8 flexcop_dma_control_size_irq -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x40c12782 flexcop_dma_control_timer_irq -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x597431a1 flexcop_dma_free -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x9dfbd03f flexcop_dma_config -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xfe5acb63 flexcop_dma_xfer_control -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x1b2176d2 bt878_device_control -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x4022e6ea bt878_start -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x99d9707f bt878_stop -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xbc1cfee5 bt878 +EXPORT_SYMBOL drivers/media/dvb-frontends/ascot2e 0x5e1ec174 ascot2e_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/atbm8830 0x5d1f07c7 atbm8830_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x16e11c53 au8522_release_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x2d840a8f au8522_writereg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x3f84e5d2 au8522_led_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x3fe704d0 au8522_init +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x5c555d8d au8522_sleep +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x624da089 au8522_get_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x85d06a68 au8522_readreg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x9d8f2f53 au8522_analog_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xec67df69 au8522_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_dig 0x280099ec au8522_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/bcm3510 0x94457a51 bcm3510_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22700 0xf5d0b169 cx22700_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22702 0x0bc35bb6 cx22702_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24110 0x51de26c6 cx24110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x1c029300 cx24113_agc_callback +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x4525b3b0 cx24113_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24116 0xbe4210e5 cx24116_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24120 0xffcd4b8a cx24120_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x1d8b2bb9 cx24123_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x4c648672 cx24123_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2820r 0x7d73e0c9 cxd2820r_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x2ae13954 cxd2841er_attach_t_c +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x97d04240 cxd2841er_attach_s +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2880/cxd2880 0xb1900640 cxd2880_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x703be8d1 dib0070_ctrl_agc_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x82faa395 dib0070_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xaa5d1cdd dib0070_set_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xbe469858 dib0070_get_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xf2564009 dib0070_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x07535066 dib0090_get_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x0b46c987 dib0090_get_current_gain +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x1d206e2d dib0090_get_wbd_target +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x2625ebbd dib0090_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x4fa2c358 dib0090_update_tuning_table_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x70548ec2 dib0090_gain_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x97fe6b3d dib0090_get_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xbd7a87a4 dib0090_pwm_gain_reset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xe2e2c661 dib0090_fw_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xe3da663a dib0090_dcc_freq +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xe4d1c1d6 dib0090_update_rframp_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xe523003a dib0090_set_vga +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xeb1c9dca dib0090_set_dc_servo +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xfdc9fab4 dib0090_set_switch +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xfe882403 dib0090_set_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mb 0xcc615a11 dib3000mb_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x0069ce80 dib3000mc_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x1dde2b05 dib3000mc_pid_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x233d9323 dib3000mc_set_config +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x6f695a05 dib3000mc_get_tuner_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x7159c706 dib3000mc_pid_parse +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xe9d84963 dib3000mc_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x2d12c825 dib7000m_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x59b9dd58 dib7000m_pid_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x9d0efa17 dib7000m_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xb5e32b8f dib7000m_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000p 0xdb0effe4 dib7000p_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib8000 0x0da23789 dib8000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x1711baab dib9000_firmware_post_pll_init +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x204f172d dib9000_get_tuner_interface +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x23a2e382 dib9000_fw_pid_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x3bb938c5 dib9000_fw_set_component_bus_speed +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x3f7cd308 dib9000_set_slave_frontend +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x53ff701a dib9000_get_slave_frontend +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x5c9ee235 dib9000_fw_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x649d0d94 dib9000_get_component_bus_interface +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x9426d74e dib9000_set_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xb35c855b dib9000_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xbebbc548 dib9000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xc0bffae7 dib9000_set_gpio +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xf9e0847a dib9000_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x3704856e dibx000_init_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x790d0c7f dibx000_i2c_set_speed +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x8648410a dibx000_reset_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x91d4a5b3 dibx000_get_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xd21e9def dibx000_exit_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0x86e65af3 drx39xxj_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxd 0x4ea2c8b6 drxd_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxk 0x9275bf43 drxk_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ds3000 0xe20d4a7e ds3000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb-pll 0x784cab5e dvb_pll_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x0d31a1ab dvb_dummy_fe_qam_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x2f288cfa dvb_dummy_fe_ofdm_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x84e6a892 dvb_dummy_fe_qpsk_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ec100 0x107172d0 ec100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0x6057bb2a helene_attach_s +EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0x732558b0 helene_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/horus3a 0xdb9d363c horus3a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6405 0xba1b76b6 isl6405_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6421 0x0aee8e10 isl6421_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6423 0x5b2c6d00 isl6423_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/itd1000 0x995862fd itd1000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ix2505v 0x67d9448d ix2505v_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/l64781 0x53795fab l64781_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lg2160 0x991dd207 lg2160_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3305 0xf84e7bda lgdt3305_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3306a 0xd3d3c3ed lgdt3306a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt330x 0x4a0ea5ec lgdt330x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gl5 0xbf783a13 lgs8gl5_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gxx 0x6fd19231 lgs8gxx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh25 0xe5f9293f lnbh25_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh29 0x42bd4e39 lnbh29_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x1e3ec40a lnbp21_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x8926f45b lnbh24_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp22 0xfb8a53c5 lnbp22_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x8b8d8659 m88ds3103_get_agc_pwm +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0xe6b2b343 m88ds3103_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88rs2000 0x8b0d5163 m88rs2000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a16 0xba8b9df6 mb86a16_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a20s 0x045657fd mb86a20s_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt312 0x019653f1 mt312_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt352 0x867d04ed mt352_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt200x 0x4772fd2a nxt200x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt6000 0x2ffe3e1d nxt6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51132 0xb1fe35fc or51132_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51211 0xdcb69b33 or51211_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1409 0xb204e132 s5h1409_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1411 0xf54eb286 s5h1411_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x951aeaf5 s5h1420_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x9629cc23 s5h1420_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1432 0x7b4cfe19 s5h1432_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s921 0xdef075bf s921_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/si21xx 0x0a8e0666 si21xx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/sp887x 0x4a402b40 sp887x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb0899 0xda457c37 stb0899_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6000 0xbf117b2b stb6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6100 0x727e7d99 stb6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0288 0xfefea41f stv0288_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0297 0x4ae51011 stv0297_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0299 0x9b6ec13a stv0299_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x23836170 stv0367cab_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x50f73215 stv0367ddb_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0xf73fd432 stv0367ter_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0900 0x7f22d748 stv0900_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv090x 0x3a6c8f26 stv090x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110 0x25334833 stv6110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110x 0xb425f194 stv6110x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10021 0x892491fc tda10021_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10023 0x8c2764e0 tda10023_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10048 0x2351b4f0 tda10048_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x389de7e0 tda10045_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0xccfe31ba tda10046_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10086 0x8850350c tda10086_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda665x 0x3e7954af tda665x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8083 0xeaa169b8 tda8083_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8261 0xe3a9a031 tda8261_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda826x 0x4c44d732 tda826x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ts2020 0x60af256f ts2020_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tua6100 0x192b8e4e tua6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1820 0x0103ba3a ves1820_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1x93 0x4c8da99f ves1x93_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0x8bcc828d zd1301_demod_get_dvb_frontend +EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0xf4e2c662 zd1301_demod_get_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10036 0x4fbf6cbe zl10036_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10039 0xa3c8e433 zl10039_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10353 0x204c0fa1 zl10353_attach +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x15549ff6 flexcop_dma_config_timer +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x53bef738 flexcop_dma_xfer_control +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x5d052e0e flexcop_dma_free +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x66c3fc7a flexcop_dma_allocate +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xa03a4202 flexcop_dma_control_size_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xa50392e7 flexcop_dma_control_timer_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xc7c69d96 flexcop_dma_config +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x0f97c8f2 bt878_start +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x2e3ddfaa bt878_stop +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x5b217411 bt878_device_control +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xafc06bfa bt878 EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xd5d0bdef bt878_num -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x065e3f87 bttv_get_pcidev EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x11dc4b6d bttv_gpio_enable -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x3ccf6e29 bttv_sub_register -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x771b3f17 bttv_sub_unregister +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x3442f1f9 bttv_get_pcidev +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x50b1c89e bttv_sub_unregister EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x8ecf4acc bttv_write_gpio EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xbcf2d2fb bttv_read_gpio -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x2643affe rdc_reset_state -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x3a578654 dst_attach +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xdb54c240 bttv_sub_register +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x2bb3b2f3 read_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x42bce4b6 rdc_reset_state EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x43a983fd dst_check_sum -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x43e69647 dst_pio_disable -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x6039f3e2 dst_comm_init -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x652bef1e dst_wait_dst_ready -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x70723841 write_dst -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x9c3c4a3e read_dst -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xc66fef25 dst_error_bailout -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xeb926eed dst_error_recovery -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst_ca 0x69a7773a dst_ca_attach +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x5ed027df dst_attach +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x6ac0ff6e write_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xb7d6fc0d dst_wait_dst_ready +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xd7533d91 dst_error_recovery +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xdc622212 dst_error_bailout +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xdf8e62d5 dst_comm_init +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xe755ea0c dst_pio_disable +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst_ca 0xbd717fcd dst_ca_attach +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x07e33ceb cx18_release_stream EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2cdea06d cx18_reset_ir_gpio -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x44f92bb6 cx18_claim_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x4aee243c cx18_ext_init -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x57711031 cx18_stop_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x5b638b9c cx18_start_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xabcd8c56 cx18_release_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x4ee0e7a3 cx18_claim_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x8bf01963 cx18_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x97bb800b cx18_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xcfa423db 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 0x07d5637d cx25821_risc_databuffer_audio -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x3190996f cx25821_set_gpiopin_direction -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x334c961b cx25821_dev_unregister +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x03cd07ed cx25821_dev_unregister +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x2bf70017 cx25821_risc_databuffer_audio EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x44b517f5 cx25821_print_irqbits -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x64618c03 cx25821_sram_channel_setup_audio -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x78ae0a12 cx25821_dev_get -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x7d64501a cx25821_sram_channel_dump_audio -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x9a0931be cx25821_riscmem_alloc +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x57d0206d cx25821_sram_channel_dump_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x61789fc4 cx25821_riscmem_alloc +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x6ba5825a cx25821_set_gpiopin_direction +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xd3458c4d cx25821_dev_get EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xe9050411 cx25821_sram_channels -EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x809f2737 vp3054_i2c_probe -EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0xac095095 vp3054_i2c_remove -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x025cfd5a cx88_video_mux -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x74749892 cx88_set_freq -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x7831f8af cx88_querycap -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xcdeabeff cx88_enum_input -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x06baa157 cx8802_buf_queue -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x1ebc98b5 cx8802_start_dma -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x5215ebc5 cx8802_cancel_buffers -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x53e60dca cx8802_register_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x9d8b0f59 cx8802_unregister_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xa963a89e cx8802_get_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xbcf6c9eb cx8802_buf_prepare -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x28b965fc cx88_risc_databuffer -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x3c494fb4 cx88_dsp_detect_stereo_sap -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x57712247 cx88_vdev_init -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x594effcc cx88_shutdown +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xf6ceb23c cx25821_sram_channel_setup_audio +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x5d1a6e29 vp3054_i2c_remove +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0xcbceccdb vp3054_i2c_probe +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x17f6b371 cx88_enum_input +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x5ca4fcb0 cx88_video_mux +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x9ce9c5e0 cx88_set_freq +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xc1133f99 cx88_querycap +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x0fc81d07 cx8802_cancel_buffers +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x2a118eb6 cx8802_buf_queue +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x7f95ec7a cx8802_unregister_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x976d1bc9 cx8802_start_dma +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xa37f8710 cx8802_buf_prepare +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xb5909e30 cx8802_register_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xfeccdde8 cx8802_get_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x050f8cb6 cx88_set_tvaudio +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x090ab7ad cx88_sram_channel_dump +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x09f6f03a cx88_core_get +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x10fa311a cx88_ir_stop +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x11048625 cx88_dsp_detect_stereo_sap +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x1d22425c cx88_set_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4123eb63 cx88_get_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4211d4e3 cx88_set_tvnorm +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x514b8596 cx88_set_scale 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 0x67d1de44 cx88_newstation -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x77515fac cx88_set_scale -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7a21200e cx88_reset -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x8a320e0c cx88_wakeup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x8c7ad816 cx88_sram_channel_setup 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 0x951151b2 cx88_get_stereo -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x974a78f2 cx88_set_tvaudio -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x9c55943c cx88_set_tvnorm -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xa37a3aea cx88_ir_start -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xa5a97043 cx88_core_put -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xc26cde09 cx88_core_irq -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xc3396cc3 cx88_risc_buffer -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xd4db1560 cx88_ir_stop -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xdd9f4512 cx88_core_get -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xddc35d74 cx88_sram_channel_dump -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xdff23761 cx88_sram_channel_setup -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xe8603d50 cx88_set_stereo -EXPORT_SYMBOL drivers/media/pci/ddbridge/ddbridge-dummy-fe 0x2cc49586 ddbridge_dummy_fe_qam_attach -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x11419067 ivtv_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x95697f0b cx88_risc_buffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x9c99f58d cx88_reset +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xa9840d25 cx88_vdev_init +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xc2ec8a99 cx88_core_irq +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xc58ebcb3 cx88_newstation +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xc8198891 cx88_core_put +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xdb1de549 cx88_wakeup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xe84fb173 cx88_risc_databuffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xea8e794b cx88_shutdown +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xed999d7e cx88_ir_start +EXPORT_SYMBOL drivers/media/pci/ddbridge/ddbridge-dummy-fe 0x75fba168 ddbridge_dummy_fe_qam_attach +EXPORT_SYMBOL drivers/media/pci/intel/ipu6/intel-ipu6 0x0fe08bb1 ipu_fw_authenticate +EXPORT_SYMBOL drivers/media/pci/intel/ipu6/intel-ipu6 0x12402166 ipu_bus_register_driver +EXPORT_SYMBOL drivers/media/pci/intel/ipu6/intel-ipu6 0x128973c3 ipu_bus_unregister_driver +EXPORT_SYMBOL drivers/media/pci/intel/ipu6/intel-ipu6 0x21f6b056 request_cpd_fw +EXPORT_SYMBOL drivers/media/pci/intel/ipu6/intel-ipu6 0x3db36ccb ipu_buttress_auth_done +EXPORT_SYMBOL drivers/media/pci/intel/ipu6/intel-ipu6 0x410d7235 ipu_buttress_start_tsc_sync +EXPORT_SYMBOL drivers/media/pci/intel/ipu6/intel-ipu6 0x9404f286 ipu_configure_spc +EXPORT_SYMBOL drivers/media/pci/intel/ipu6/intel-ipu6 0x9b8ea6d3 ipu_mmu_hw_cleanup +EXPORT_SYMBOL drivers/media/pci/intel/ipu6/intel-ipu6 0xc7231f03 ipu_ver +EXPORT_SYMBOL drivers/media/pci/intel/ipu6/intel-ipu6 0xf16e3c40 ipu_mmu_hw_init +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x0d7b4c2c ivtv_clear_irq_mask EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x14f67530 ivtv_debug -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x17c5165e ivtv_udma_alloc -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x1cea4664 ivtv_release_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x29b100ed ivtv_udma_setup -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x36266a84 ivtv_reset_ir_gpio -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x3b6a4319 ivtv_claim_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x4fa4d593 ivtv_init_on_first_open -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x5bc58bd1 ivtv_ext_init -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x6c4c4bb3 ivtv_clear_irq_mask -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x6ff9dd45 ivtv_vapi_result -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x8bfe4c0b ivtv_vapi -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x904a447f ivtv_udma_unmap -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x9936a03e ivtv_start_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xa497679c ivtv_udma_prepare -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xb11b786b ivtv_firmware_check -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xbef9bef8 ivtv_set_irq_mask -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xbf41a408 ivtv_api +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x1746e4a8 ivtv_vapi_result +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x46f24341 ivtv_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x4ca1e5c4 ivtv_firmware_check +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x540bbeb1 ivtv_set_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x59ea1e1c ivtv_init_on_first_open +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x666a030b ivtv_udma_setup +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x70abd69c ivtv_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x75f8a93d ivtv_claim_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x78f624ed ivtv_ext_init +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x84f55d47 ivtv_udma_prepare +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x85288cba ivtv_api +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xb87037d6 ivtv_vapi +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xcb61b976 ivtv_udma_unmap +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xcbe51aea ivtv_release_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xde1566b7 ivtv_udma_alloc +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xefaad3ac ivtv_stop_v4l2_encode_stream EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x04e83446 saa7134_tuner_callback +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x0508099b saa_dsp_writel +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x0aab80a9 saa7134_pgtable_build EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x1211df5d saa7134_devlist -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x187bb8b2 saa7134_dmasound_exit -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x319778a7 saa7134_set_gpio -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x5e4176eb saa7134_ts_unregister -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x6d87c153 saa7134_pgtable_free -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x7084fd01 saa7134_dmasound_init +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x15131bd4 saa7134_set_dmabits +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x2a29f8f4 saa7134_dmasound_exit +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x2e18a5f1 saa7134_ts_register +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x35b70328 saa7134_tvaudio_setmute +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x55419fc2 saa7134_pgtable_alloc +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x58b4dc22 saa7134_ts_unregister +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x5ae46598 saa7134_dmasound_init EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x730c4be3 saa7134_boards -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x813b836f saa7134_ts_register EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x8f1ad46b saa7134_devlist_lock -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x942b4f56 saa7134_tvaudio_setmute -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x9563b796 saa7134_set_dmabits -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xf7eebd2a saa7134_pgtable_alloc -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xfb02cd41 saa7134_pgtable_build -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xff0d3834 saa_dsp_writel -EXPORT_SYMBOL drivers/media/radio/tea575x 0x030933f9 snd_tea575x_s_hw_freq_seek -EXPORT_SYMBOL drivers/media/radio/tea575x 0x4d240461 snd_tea575x_init -EXPORT_SYMBOL drivers/media/radio/tea575x 0x55d21527 snd_tea575x_g_tuner -EXPORT_SYMBOL drivers/media/radio/tea575x 0x6b038630 snd_tea575x_set_freq -EXPORT_SYMBOL drivers/media/radio/tea575x 0x99f64273 snd_tea575x_enum_freq_bands -EXPORT_SYMBOL drivers/media/radio/tea575x 0xbc6a6908 snd_tea575x_exit -EXPORT_SYMBOL drivers/media/radio/tea575x 0xf47d9790 snd_tea575x_hw_init +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xcf142b30 saa7134_pgtable_free +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xdeb56b54 saa7134_set_gpio +EXPORT_SYMBOL drivers/media/radio/tea575x 0x072e336e snd_tea575x_enum_freq_bands +EXPORT_SYMBOL drivers/media/radio/tea575x 0x2931a380 snd_tea575x_exit +EXPORT_SYMBOL drivers/media/radio/tea575x 0x43270c7b snd_tea575x_hw_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0x91c77f8b snd_tea575x_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0x95bb639f snd_tea575x_s_hw_freq_seek +EXPORT_SYMBOL drivers/media/radio/tea575x 0x978d091c snd_tea575x_g_tuner +EXPORT_SYMBOL drivers/media/radio/tea575x 0x9bdf5340 snd_tea575x_set_freq EXPORT_SYMBOL drivers/media/rc/rc-core 0x2ad91f6e ir_raw_gen_pl +EXPORT_SYMBOL drivers/media/rc/rc-core 0x70677c46 ir_raw_handler_register EXPORT_SYMBOL drivers/media/rc/rc-core 0x7cf52901 ir_raw_gen_manchester EXPORT_SYMBOL drivers/media/rc/rc-core 0x9e12e343 ir_raw_gen_pd EXPORT_SYMBOL drivers/media/rc/rc-core 0xb5516017 ir_raw_encode_carrier -EXPORT_SYMBOL drivers/media/rc/rc-core 0xf2d6f3e8 ir_raw_handler_unregister +EXPORT_SYMBOL drivers/media/rc/rc-core 0xba5caef3 ir_raw_handler_unregister EXPORT_SYMBOL drivers/media/rc/rc-core 0xf446074f ir_raw_encode_scancode -EXPORT_SYMBOL drivers/media/rc/rc-core 0xf9635f38 ir_raw_handler_register -EXPORT_SYMBOL drivers/media/tuners/fc0011 0x2185cd57 fc0011_attach -EXPORT_SYMBOL drivers/media/tuners/fc0012 0x71d22214 fc0012_attach -EXPORT_SYMBOL drivers/media/tuners/fc0013 0x69af94c0 fc0013_rc_cal_reset -EXPORT_SYMBOL drivers/media/tuners/fc0013 0x878feacd fc0013_attach -EXPORT_SYMBOL drivers/media/tuners/fc0013 0xb829af59 fc0013_rc_cal_add -EXPORT_SYMBOL drivers/media/tuners/max2165 0x4737c14e max2165_attach -EXPORT_SYMBOL drivers/media/tuners/mc44s803 0xaf232ce6 mc44s803_attach -EXPORT_SYMBOL drivers/media/tuners/mt2060 0xe39f938e mt2060_attach -EXPORT_SYMBOL drivers/media/tuners/mt2131 0x6c50f227 mt2131_attach -EXPORT_SYMBOL drivers/media/tuners/mt2266 0x011fdc6d mt2266_attach -EXPORT_SYMBOL drivers/media/tuners/mxl5005s 0xdb44b740 mxl5005s_attach -EXPORT_SYMBOL drivers/media/tuners/qt1010 0x2cb5191d qt1010_attach -EXPORT_SYMBOL drivers/media/tuners/tda18218 0xe00e24ff tda18218_attach +EXPORT_SYMBOL drivers/media/tuners/fc0011 0x44f6d210 fc0011_attach +EXPORT_SYMBOL drivers/media/tuners/fc0012 0x75b15116 fc0012_attach +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x4a78f868 fc0013_rc_cal_add +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x8a228eea fc0013_attach +EXPORT_SYMBOL drivers/media/tuners/fc0013 0xbc47b100 fc0013_rc_cal_reset +EXPORT_SYMBOL drivers/media/tuners/max2165 0xdde6d858 max2165_attach +EXPORT_SYMBOL drivers/media/tuners/mc44s803 0xd7d0ab20 mc44s803_attach +EXPORT_SYMBOL drivers/media/tuners/mt2060 0x358c6421 mt2060_attach +EXPORT_SYMBOL drivers/media/tuners/mt2131 0xba430588 mt2131_attach +EXPORT_SYMBOL drivers/media/tuners/mt2266 0x91b02452 mt2266_attach +EXPORT_SYMBOL drivers/media/tuners/mxl5005s 0x594e1497 mxl5005s_attach +EXPORT_SYMBOL drivers/media/tuners/qt1010 0xbc1ae122 qt1010_attach +EXPORT_SYMBOL drivers/media/tuners/tda18218 0xc83a65f2 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/tuner-xc2028 0x905c1fb9 xc2028_attach -EXPORT_SYMBOL drivers/media/tuners/xc4000 0xe3411eaa xc4000_attach -EXPORT_SYMBOL drivers/media/tuners/xc5000 0xcd933118 xc5000_attach -EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x2c6a8b97 cx231xx_unregister_extension -EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0xe0711f26 cx231xx_register_extension -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x4aa5ea45 dvb_usbv2_generic_rw -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x54ecf343 dvb_usbv2_resume -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x63234f08 dvb_usbv2_disconnect -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x6b51ffce dvb_usbv2_generic_write -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x82989f48 dvb_usbv2_probe -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x959094a0 dvb_usbv2_suspend -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xbd055dbc dvb_usbv2_reset_resume -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xf7af810b dvb_usbv2_generic_write_locked -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xfc222ed7 dvb_usbv2_generic_rw_locked -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x1cdf81c3 dvb_usb_nec_rc_key_to_event -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x4c56eea3 dvb_usb_generic_write -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x598ca465 dvb_usb_device_init -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x69a9632e usb_cypress_load_firmware +EXPORT_SYMBOL drivers/media/tuners/tuner-xc2028 0x2bca9c0c xc2028_attach +EXPORT_SYMBOL drivers/media/tuners/xc4000 0xb695ef03 xc4000_attach +EXPORT_SYMBOL drivers/media/tuners/xc5000 0x0ebe2c37 xc5000_attach +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x797100c2 cx231xx_register_extension +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x7e6e9845 cx231xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x1ecde01e dvb_usbv2_generic_write_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x35285731 dvb_usbv2_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x6424b3e6 dvb_usbv2_suspend +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x6dd80036 dvb_usbv2_generic_rw_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x6e2510f9 dvb_usbv2_disconnect +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x8b0058ca dvb_usbv2_probe +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xa5626605 dvb_usbv2_reset_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xc31d84d7 dvb_usbv2_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xecdc4459 dvb_usbv2_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x03f351a3 dvb_usb_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x4165bf0d dvb_usb_device_init +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x44535c55 usb_cypress_load_firmware +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x797b58ca 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 0xb2077e2f dvb_usb_device_exit -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xc2314cd2 dvb_usb_generic_rw -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x2d465f96 af9005_rc_decode +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xdac102e2 dvb_usb_device_exit +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xf1a53e0b 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 0x8cde6346 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 0x02e39efa dibusb_power_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x3e636ed9 dibusb_i2c_algo -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x5420ee45 dibusb_rc_query -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x5953040e dibusb2_0_streaming_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x6b559fef dibusb_read_eeprom_byte -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x711e17e2 dibusb_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x0f6e7e6f dibusb_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x3c7aff31 dibusb2_0_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x42589048 dibusb_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x44c220f9 dibusb_pid_filter +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x5f726a26 dibusb_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x62e971ac dibusb_i2c_algo +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x81503473 dibusb_rc_query EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x93822ecb rc_map_dibusb_table -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xcc1984fc dibusb_pid_filter -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xe98531d5 dibusb2_0_power_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xfe1a283d dibusb_streaming_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0x64763b83 dibusb_dib3000mc_frontend_attach -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0xa42c7973 dibusb_dib3000mc_tuner_attach -EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x6c64da7a em28xx_register_extension -EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0xada02ef3 em28xx_unregister_extension -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x00c53fb7 go7007_read_interrupt -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x08cec23c go7007_boot_encoder -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x2f960c8b go7007_parse_video_stream -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x844b0e1d go7007_read_addr -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x8b081cf3 go7007_snd_remove -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x92b43e07 go7007_snd_init -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xcbcb6ccc go7007_update_board -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xd6e66e03 go7007_register_encoder -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xe7b2dafa go7007_alloc -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x2fccfab6 gspca_suspend -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x3e93f8d9 gspca_disconnect -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x5447859a gspca_expo_autogain -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x5cfacc3d gspca_frame_add -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x7722d327 gspca_dev_probe2 +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x95d5e7ed dibusb_read_eeprom_byte +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xcdcb1004 dibusb2_0_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0x9b1a656c dibusb_dib3000mc_tuner_attach +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0xd6c7e3d6 dibusb_dib3000mc_frontend_attach +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x8ab7f6a5 em28xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0xf8f8bdd0 em28xx_register_extension +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x29e8a2f8 go7007_register_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x44f3e617 go7007_snd_init +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x735a7873 go7007_read_addr +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x79ddf82e go7007_parse_video_stream +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x8f87e514 go7007_snd_remove +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x9394934e go7007_boot_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x945d10db go7007_alloc +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xd0863b39 go7007_read_interrupt +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xf18473cc go7007_update_board +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x3554f1d5 gspca_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x4f08900b gspca_coarse_grained_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x5cd7e14a gspca_resume +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x7cca9a15 gspca_dev_probe EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9670af2c gspca_debug -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xa41b7bca gspca_resume -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xca1177f8 gspca_coarse_grained_expo_autogain -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xcf5938df gspca_dev_probe -EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x004e291b tm6000_unregister_extension -EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x4d3604c1 tm6000_init_digital_mode -EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0xca7f32f4 tm6000_register_extension -EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0xc3ff4d61 ttusbdecfe_dvbs_attach -EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0xe8384cab ttusbdecfe_dvbt_attach -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x4e98ed89 v4l2_async_notifier_init -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x6940a36c v4l2_async_notifier_register -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x781734d7 v4l2_async_register_subdev -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x7ca01dc7 v4l2_async_notifier_unregister -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xac5d32ae v4l2_async_unregister_subdev -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xcbb443b4 v4l2_async_subdev_notifier_register -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x177359a0 v4l2_m2m_job_finish -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x301123f2 v4l2_m2m_get_vq +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xaba5f780 gspca_dev_probe2 +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xae604d99 gspca_frame_add +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xbde4648f gspca_disconnect +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xec7369df gspca_suspend +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x11b49562 tm6000_unregister_extension +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x20d5eed5 tm6000_init_digital_mode +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0xd3df8572 tm6000_register_extension +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x8942796b ttusbdecfe_dvbs_attach +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0xa28578a1 ttusbdecfe_dvbt_attach +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x040bf0bd v4l2_async_notifier_unregister +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x20fd6fb8 v4l2_async_subdev_notifier_register +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x2567636d v4l2_async_unregister_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x5053b0bc v4l2_async_notifier_register +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x91638716 v4l2_async_notifier_init +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xf828b10a v4l2_async_register_subdev EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x459e133f v4l2_m2m_get_curr_priv -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x4ab8d920 v4l2_m2m_mmap EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x5352d022 v4l2_m2m_resume -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xb179276f v4l2_m2m_buf_done_and_job_finish +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x9c8a8137 v4l2_m2m_get_vq +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xa9f80509 v4l2_m2m_mmap +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xe0aa8505 v4l2_m2m_job_finish +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xe4090240 v4l2_m2m_buf_done_and_job_finish EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xf626dd03 v4l2_m2m_suspend +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x03908979 __v4l2_ctrl_s_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0415f7ed v4l2_ctrl_subdev_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x05cb92e8 v4l2_ctrl_new_custom EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0614dd5a v4l2_video_std_frame_period -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x06e76e48 v4l2_ctrl_handler_setup +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x08140ebd v4l2_ctrl_radio_filter EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x082737e8 v4l2_ctrl_merge -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0a11f01b video_device_alloc -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0e0da2f9 v4l2_ctrl_new_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x09ce9f3f __v4l2_ctrl_modify_range +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0a5985da v4l2_ctrl_poll EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x123959a1 v4l2_type_names -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x14c2f66e v4l2_ctrl_subdev_subscribe_event EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x16244fe5 v4l2_prio_check -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1a8fe799 v4l2_ctrl_cluster -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1e63cfdf v4l2_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x173b4d65 video_device_release_empty +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x17c59ac0 v4l2_ctrl_auto_cluster EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2342f1ae v4l2_prio_open -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x28645a77 v4l2_subdev_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x243b13fe v4l2_ctrl_new_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x25f95486 v4l2_subdev_init EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x28b12cc9 v4l2_format_info -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2a596309 video_devdata -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2d72a3b5 v4l2_ctrl_subscribe_event -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2e0ae590 video_ioctl2 EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x315de2cf v4l2_ctrl_get_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3258ac1e v4l2_ctrl_handler_log_status EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x32d43420 v4l2_ctrl_get_name -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x33dfeeec v4l2_ctrl_new_std_compound -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x34188388 v4l2_ctrl_request_setup -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x383402d6 v4l2_ctrl_handler_free EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3adbd595 v4l2_field_names +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3b7863a5 v4l2_ctrl_handler_log_status EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3bdd0f94 v4l2_prio_change -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x40d77b46 v4l2_ctrl_sub_ev_ops -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x410ee467 v4l2_ctrl_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4ae72866 v4l2_subdev_call_wrappers -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4bd45b2a v4l2_ctrl_request_complete -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x51f7a326 v4l2_ctrl_subdev_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x59014c6f v4l2_ctrl_g_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5ecf9d18 __v4l2_ctrl_grab -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6a045a44 video_device_release -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x74d35148 v4l2_ctrl_activate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x46e322e7 v4l2_ctrl_g_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x484dd18c v4l2_query_ext_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x54d76ac7 v4l2_ctrl_find +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5f1052b3 v4l2_ctrl_new_std +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5f8c5430 v4l2_ctrl_sub_ev_ops +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x618aa094 video_devdata +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x635dd457 video_unregister_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x757bc5d6 v4l2_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x777c3c45 v4l2_ctrl_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7e5689ec v4l2_ctrl_new_std_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7e5767d4 v4l2_subdev_call_wrappers EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8106095a v4l2_prio_max -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8599ff01 __v4l2_ctrl_s_ctrl_int64 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x89130b6d v4l2_ctrl_add_handler +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x822a292f v4l2_ctrl_request_setup +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x833772f4 v4l2_ctrl_notify +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x893e1584 __v4l2_ctrl_s_ctrl EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x89e3897d v4l2_ctrl_query_fill -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x89e9ea05 v4l2_ctrl_new_std -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8fd1c91d __v4l2_ctrl_s_ctrl_compound -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x931d493b v4l2_ctrl_notify -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x99954523 v4l2_queryctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa2a176ef v4l2_ctrl_g_ctrl_int64 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa56a9743 v4l2_ctrl_new_std_menu_items -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa5dc30bc __v4l2_ctrl_modify_range -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xab113765 video_unregister_device -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xad16cad0 __v4l2_ctrl_s_ctrl_string -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xae302911 v4l2_g_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xaf543b55 v4l2_ctrl_new_fwnode_properties -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb276c45d v4l2_ctrl_radio_filter -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb3ecad69 v4l2_try_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb4c531d6 video_device_release_empty +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8a3b2ee9 v4l2_ctrl_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8ae16951 v4l2_s_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x919fbd53 v4l2_try_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x91ac7eb9 video_ioctl2 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x91c714f3 v4l2_ctrl_subdev_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x95f5b96f video_device_alloc +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9a48ed98 v4l2_ctrl_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9fa369d8 v4l2_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa0a0fee6 v4l2_ctrl_add_handler +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb29d046e v4l2_queryctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb332194d __v4l2_ctrl_s_ctrl_string +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb3bea546 video_device_release +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb3cac03a v4l2_ctrl_request_complete +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb44fb6b7 v4l2_ctrl_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb698beb7 v4l2_querymenu EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb77b0159 v4l2_prio_init -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xba22d2e6 __video_register_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbb34dcd0 v4l2_g_ext_ctrls EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbc5671dc v4l_printk_ioctl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc268cb86 v4l2_g_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc3d1c838 v4l2_ctrl_new_custom +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc535b427 v4l2_ctrl_activate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc7ee611c __v4l2_ctrl_s_ctrl_compound EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcda04a5b v4l2_prio_close +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcdb2d887 v4l2_ctrl_handler_init_class EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd16d9c01 v4l2_ctrl_get_int_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd565c400 v4l2_querymenu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd653e688 v4l2_query_ext_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd902bf37 v4l2_ctrl_find EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdc7e0128 v4l2_ctrl_fill -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdd59544f v4l2_ctrl_handler_init_class +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdd4342db __video_register_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdff8aaed v4l2_ctrl_new_std_menu_items EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2b92059 v4l2_video_std_construct -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xeda32f6f v4l2_ctrl_new_std_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xedda01af v4l2_ctrl_auto_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe64a70f4 v4l2_ctrl_new_std_compound +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe6bf4bf3 v4l2_ctrl_handler_free +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xea55b686 __v4l2_ctrl_grab EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf3251e7b v4l2_norm_to_name +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf3cb139b v4l2_ctrl_new_fwnode_properties EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf50fecbc v4l2_ctrl_replace -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf79c40ed v4l2_s_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfd238579 v4l2_ctrl_poll -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfe614cd9 __v4l2_ctrl_s_ctrl -EXPORT_SYMBOL drivers/memstick/core/memstick 0x3f96e6d2 memstick_detect_change +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf8df03a8 v4l2_ctrl_handler_setup +EXPORT_SYMBOL drivers/memstick/core/memstick 0x13be8966 memstick_alloc_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x143857a2 memstick_unregister_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0x1e65175f memstick_free_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x24d33356 memstick_resume_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x37e0c2bd memstick_register_driver EXPORT_SYMBOL drivers/memstick/core/memstick 0x4a4e5778 memstick_init_req_sg -EXPORT_SYMBOL drivers/memstick/core/memstick 0x513bf6ac memstick_alloc_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x69f581bf memstick_new_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0x73e027c5 memstick_set_rw_addr -EXPORT_SYMBOL drivers/memstick/core/memstick 0x764ecff4 memstick_next_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0x874fff86 memstick_suspend_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x9565d635 memstick_remove_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x98ca6ff5 memstick_add_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0xa3a20d14 memstick_resume_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x4a507388 memstick_add_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x54aa32fc memstick_detect_change +EXPORT_SYMBOL drivers/memstick/core/memstick 0x9bce7dd8 memstick_new_req EXPORT_SYMBOL drivers/memstick/core/memstick 0xae50437c memstick_init_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0xc0aae39e memstick_register_driver -EXPORT_SYMBOL drivers/memstick/core/memstick 0xe6ea1f50 memstick_unregister_driver -EXPORT_SYMBOL drivers/memstick/core/memstick 0xf245dbba memstick_free_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xbb957e24 memstick_remove_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xc5bd096b memstick_set_rw_addr +EXPORT_SYMBOL drivers/memstick/core/memstick 0xc61a5648 memstick_next_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0xfbcad756 memstick_suspend_host EXPORT_SYMBOL drivers/memstick/host/r592 0x52f1b23b memstick_debug_get_tpc_name -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0239cf16 mpt_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x11a68238 mpt_device_driver_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1834b64b mpt_put_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x22f0030b mpt_send_handshake_request -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x33e574de mpt_clear_taskmgmt_in_progress_flag -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x47aeb874 mpt_put_msg_frame_hi_pri +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0179057d mpt_event_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x03ead0d3 mpt_GetIocState +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1cadcc93 mpt_config +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1ef78f0e mpt_raid_phys_disk_get_num_paths +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x283b7288 mpt_halt_firmware +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2e1ed3d5 mpt_print_ioc_summary +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x3d4548d6 mpt_put_msg_frame_hi_pri +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x3d991eff mpt_free_fw_memory EXPORT_SYMBOL drivers/message/fusion/mptbase 0x502108d0 mpt_fwfault_debug -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x56962eb3 mptbase_sas_persist_operation -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x586a74fd mpt_Soft_Hard_ResetHandler -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x58ebfd32 mpt_set_taskmgmt_in_progress_flag -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x59d155e2 mpt_raid_phys_disk_pg1 -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x5e121d1c mpt_HardResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x5a414c83 mpt_device_driver_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x5f775b8d mpt_register EXPORT_SYMBOL drivers/message/fusion/mptbase 0x610b257e mpt_reset_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x639febf2 mpt_free_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x71aff377 mpt_findImVolumes EXPORT_SYMBOL drivers/message/fusion/mptbase 0x74a0134a mpt_device_driver_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x76590e1b mpt_reset_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7afe118e mpt_resume -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x8ab0562d mpt_get_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x962dc6d7 mpt_raid_phys_disk_get_num_paths +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x763d3cc5 mpt_detach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x772459fd mpt_raid_phys_disk_pg1 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x86b99ec9 mpt_put_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x8ec8a453 mpt_verify_adapter EXPORT_SYMBOL drivers/message/fusion/mptbase 0x981efe92 mpt_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x9d6fab86 mpt_detach -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa2845b94 mpt_verify_adapter -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa5f1fc9a mpt_raid_phys_disk_pg0 -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xbc8a902d mpt_halt_firmware -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xcf1c4c1f mpt_config -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd2218f86 mpt_attach -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd8d7b275 mpt_print_ioc_summary -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdb6253c1 mpt_GetIocState +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa8bafdea mpt_alloc_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb0e8ce0f mpt_Soft_Hard_ResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb1cb587c mpt_send_handshake_request +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb666956e mpt_clear_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc1152cd1 mpt_raid_phys_disk_pg0 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc953fcd7 mpt_suspend +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd0964c3f mpt_attach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd5514fc2 mpt_free_msg_frame EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdd805159 ioc_list +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xde927295 mpt_set_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe5f21ced mptbase_sas_persist_operation EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe6c1e126 mpt_event_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xeea5b685 mpt_event_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xeff8437c mpt_alloc_fw_memory -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf022491a mpt_suspend -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf02db359 mpt_findImVolumes -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf4ecf9fa mpt_free_fw_memory -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x00e51bfa mptscsih_info -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x0dcf4eb9 mptscsih_event_process -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x17c2df3c mptscsih_remove -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x1b4f5297 mptscsih_host_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x22e517a7 mptscsih_raid_id_to_num -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x37e109f2 mptscsih_suspend -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3a7de2e6 mptscsih_flush_running_cmds -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x417eed08 mptscsih_ioc_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x47d0b689 mptscsih_slave_configure -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x4a6ad568 mptscsih_abort -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x54f4f456 mptscsih_is_phys_disk -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x57dd09a7 mptscsih_taskmgmt_response_code -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x5a7297cc mptscsih_bios_param -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x5df7987c mptscsih_slave_destroy -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x5ee46561 mptscsih_scandv_complete -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x60f684be mptscsih_bus_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x757670e7 mptscsih_host_attrs -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x781bc556 mptscsih_IssueTaskMgmt -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7c45d7a7 mptscsih_get_scsi_lookup -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x805d7014 mptscsih_shutdown -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xabdf43b1 mptscsih_change_queue_depth -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xac8bcd2c mptscsih_taskmgmt_complete -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb01bf3da mptscsih_show_info -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb42749b6 mptscsih_dev_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xbabdb8a1 mptscsih_qcmd -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd76e789c mptscsih_io_done -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xdd30051a mptscsih_resume -EXPORT_SYMBOL drivers/mfd/axp20x 0x820a121e axp20x_device_probe -EXPORT_SYMBOL drivers/mfd/axp20x 0xbae6574a axp20x_device_remove -EXPORT_SYMBOL drivers/mfd/axp20x 0xcbf90f77 axp20x_match_device -EXPORT_SYMBOL drivers/mfd/dln2 0x0ae64d5a dln2_transfer -EXPORT_SYMBOL drivers/mfd/dln2 0x9b72e946 dln2_register_event_cb -EXPORT_SYMBOL drivers/mfd/dln2 0xe47b0eb5 dln2_unregister_event_cb -EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x32d59f42 pasic3_write_register -EXPORT_SYMBOL drivers/mfd/htc-pasic3 0xdd0e7cbf pasic3_read_register -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x0e4a21a5 mc13xxx_reg_rmw -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x146a0a78 mc13xxx_irq_free -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x2229b1ae mc13xxx_lock -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x743b46db mc13xxx_unlock -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x7817cb55 mc13xxx_irq_request -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x8430b572 mc13xxx_get_flags -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x9abb1d42 mc13xxx_irq_unmask -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xa5e227a2 mc13xxx_reg_write -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xaeb13484 mc13xxx_reg_read -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xe6ef9e78 mc13xxx_irq_status -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xeeb40c18 mc13xxx_irq_mask +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xecb3ce93 mpt_HardResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xeccf16ae mpt_get_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xfe64b041 mpt_reset_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xffceb96b mpt_resume +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x05124d0f mptscsih_scandv_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x0b10b59d mptscsih_suspend +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x10df1d42 mptscsih_taskmgmt_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x127970fa mptscsih_bios_param +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x177cfd26 mptscsih_event_process +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x20829aec mptscsih_slave_configure +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x21b74e50 mptscsih_host_attrs +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3aa9559f mptscsih_bus_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x4ad2b328 mptscsih_taskmgmt_response_code +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x56f723a2 mptscsih_remove +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x62e8f54e mptscsih_IssueTaskMgmt +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x70e2b1c4 mptscsih_show_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x751165be mptscsih_flush_running_cmds +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x791289e7 mptscsih_get_scsi_lookup +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x83643d4f mptscsih_qcmd +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x863f4967 mptscsih_change_queue_depth +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x8e03f512 mptscsih_abort +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa0df962e mptscsih_host_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa241e8fa mptscsih_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa4e19cb3 mptscsih_slave_destroy +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc2ebaefa mptscsih_resume +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc6bfbfe3 mptscsih_ioc_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc78ff06f mptscsih_shutdown +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd0aec1e1 mptscsih_dev_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xec48e3fb mptscsih_is_phys_disk +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf76b9814 mptscsih_io_done +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xfadccf72 mptscsih_raid_id_to_num +EXPORT_SYMBOL drivers/mfd/axp20x 0xb1a664d6 axp20x_match_device +EXPORT_SYMBOL drivers/mfd/axp20x 0xb7bbfbf3 axp20x_device_probe +EXPORT_SYMBOL drivers/mfd/axp20x 0xc41444eb axp20x_device_remove +EXPORT_SYMBOL drivers/mfd/dln2 0x815b6e63 dln2_unregister_event_cb +EXPORT_SYMBOL drivers/mfd/dln2 0xe3b4c3c1 dln2_register_event_cb +EXPORT_SYMBOL drivers/mfd/dln2 0xfcba7ab2 dln2_transfer +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0xd686d3b5 pasic3_read_register +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0xf0bde436 pasic3_write_register +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x12ed55b1 mc13xxx_irq_free +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x3553c92a mc13xxx_irq_request +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x3c8c9b26 mc13xxx_get_flags +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x4b61aa91 mc13xxx_reg_rmw +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x88174bc1 mc13xxx_reg_read +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x8c0f419a mc13xxx_unlock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x9053a0a5 mc13xxx_irq_mask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x972b3c2c mc13xxx_reg_write +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xb9716778 mc13xxx_irq_unmask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xce8e032b mc13xxx_lock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xf20823b3 mc13xxx_irq_status EXPORT_SYMBOL drivers/mfd/tps65010 0x02d4ad0f tps65013_set_low_pwr EXPORT_SYMBOL drivers/mfd/tps65010 0x0c6ad2cf tps65010_config_vdcdc2 EXPORT_SYMBOL drivers/mfd/tps65010 0x28485130 tps65010_config_vregs1 @@ -2424,209 +2434,209 @@ 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 0x0bc7f5df wm8994_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994 0x39fd4e46 wm8958_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994 0x406e759f wm8994_irq_exit -EXPORT_SYMBOL drivers/mfd/wm8994 0x4746a11c wm8994_irq_init -EXPORT_SYMBOL drivers/mfd/wm8994 0xa69f4c6b wm1811_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994 0xabd4f393 wm8994_base_regmap_config -EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x7cc17e15 ad_dpot_remove -EXPORT_SYMBOL drivers/misc/ad525x_dpot 0xd59d7c11 ad_dpot_probe +EXPORT_SYMBOL drivers/mfd/wm8994 0x02abb8e2 wm8994_base_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0x0c804ef5 wm8958_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0x28399514 wm8994_irq_init +EXPORT_SYMBOL drivers/mfd/wm8994 0x3ebaf56c wm8994_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0x93e24cd8 wm1811_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0xcea1f19d wm8994_irq_exit +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x95a97eca ad_dpot_probe +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x9b20d0dc ad_dpot_remove EXPORT_SYMBOL drivers/misc/altera-stapl/altera-stapl 0x5bafa76e altera_init -EXPORT_SYMBOL drivers/misc/c2port/core 0x057c9654 c2port_device_unregister -EXPORT_SYMBOL drivers/misc/c2port/core 0x881d4f99 c2port_device_register +EXPORT_SYMBOL drivers/misc/c2port/core 0x4021b510 c2port_device_unregister +EXPORT_SYMBOL drivers/misc/c2port/core 0x5e550425 c2port_device_register +EXPORT_SYMBOL drivers/misc/mei/mei 0x076c393a __traceiter_mei_pci_cfg_read EXPORT_SYMBOL drivers/misc/mei/mei 0x0bb25295 __SCT__tp_func_mei_reg_write +EXPORT_SYMBOL drivers/misc/mei/mei 0x0fc8aa81 __SCK__tp_func_mei_pci_cfg_read EXPORT_SYMBOL drivers/misc/mei/mei 0x14dc7949 __SCT__tp_func_mei_pci_cfg_read -EXPORT_SYMBOL drivers/misc/mei/mei 0x3a7f7d1f __tracepoint_mei_pci_cfg_read EXPORT_SYMBOL drivers/misc/mei/mei 0x3b0a488d __SCT__tp_func_mei_reg_read -EXPORT_SYMBOL drivers/misc/mei/mei 0x74327709 __traceiter_mei_pci_cfg_read -EXPORT_SYMBOL drivers/misc/mei/mei 0x7aa2ce92 __SCK__tp_func_mei_reg_write -EXPORT_SYMBOL drivers/misc/mei/mei 0x80b75c2d __SCK__tp_func_mei_reg_read -EXPORT_SYMBOL drivers/misc/mei/mei 0x8809d8ba __SCK__tp_func_mei_pci_cfg_read -EXPORT_SYMBOL drivers/misc/mei/mei 0x9ab91a12 __traceiter_mei_reg_read -EXPORT_SYMBOL drivers/misc/mei/mei 0x9edfb43e __tracepoint_mei_reg_read -EXPORT_SYMBOL drivers/misc/mei/mei 0xc0cbf5e1 __traceiter_mei_reg_write -EXPORT_SYMBOL drivers/misc/mei/mei 0xfe02e7a4 __tracepoint_mei_reg_write +EXPORT_SYMBOL drivers/misc/mei/mei 0x5339145a __tracepoint_mei_reg_read +EXPORT_SYMBOL drivers/misc/mei/mei 0x7f541d63 __traceiter_mei_reg_write +EXPORT_SYMBOL drivers/misc/mei/mei 0x8a478bd4 __SCK__tp_func_mei_reg_read +EXPORT_SYMBOL drivers/misc/mei/mei 0xb410a445 __tracepoint_mei_reg_write +EXPORT_SYMBOL drivers/misc/mei/mei 0xbab2aa4c __tracepoint_mei_pci_cfg_read +EXPORT_SYMBOL drivers/misc/mei/mei 0xbec974fd __SCK__tp_func_mei_reg_write +EXPORT_SYMBOL drivers/misc/mei/mei 0xd93b91ef __traceiter_mei_reg_read EXPORT_SYMBOL drivers/misc/tifm_core 0x0ffb277f tifm_queue_work -EXPORT_SYMBOL drivers/misc/tifm_core 0x3669528d tifm_add_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0x72cc81ad tifm_unmap_sg -EXPORT_SYMBOL drivers/misc/tifm_core 0x770a510c tifm_register_driver -EXPORT_SYMBOL drivers/misc/tifm_core 0x837e6a2f tifm_map_sg -EXPORT_SYMBOL drivers/misc/tifm_core 0x92c29be2 tifm_free_device -EXPORT_SYMBOL drivers/misc/tifm_core 0xae856b76 tifm_alloc_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0xd3a7f7e1 tifm_eject -EXPORT_SYMBOL drivers/misc/tifm_core 0xd601cdf6 tifm_free_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0xe5f124e2 tifm_has_ms_pif -EXPORT_SYMBOL drivers/misc/tifm_core 0xf2172d4e tifm_unregister_driver -EXPORT_SYMBOL drivers/misc/tifm_core 0xfc02a849 tifm_alloc_device -EXPORT_SYMBOL drivers/misc/tifm_core 0xfdf7cc23 tifm_remove_adapter -EXPORT_SYMBOL drivers/mmc/host/cqhci 0x0e90fcd0 cqhci_pltfm_init -EXPORT_SYMBOL drivers/mmc/host/cqhci 0x0f3fd1cd cqhci_resume -EXPORT_SYMBOL drivers/mmc/host/cqhci 0x14bfcb1b cqhci_irq -EXPORT_SYMBOL drivers/mmc/host/cqhci 0x6cc1003c cqhci_deactivate -EXPORT_SYMBOL drivers/mmc/host/cqhci 0x9106004f cqhci_init -EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0xa9c741b9 mmc_spi_put_pdata -EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0xb293bfe4 mmc_spi_get_pdata -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x16b31ab9 cfi_build_cmd -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x6e0b0bcc cfi_varsize_frob -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x8fb35708 cfi_send_gen_cmd -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xa7e3c8c7 cfi_read_pri -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xa8e7035a cfi_build_cmd_addr -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xaaa70053 cfi_fixup -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xdbd8b524 cfi_merge_status +EXPORT_SYMBOL drivers/misc/tifm_core 0x16104ed5 tifm_remove_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x1a3b7165 tifm_eject +EXPORT_SYMBOL drivers/misc/tifm_core 0x3442bee4 tifm_register_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0x8d3c38a4 tifm_free_device +EXPORT_SYMBOL drivers/misc/tifm_core 0x94f03c50 tifm_free_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xac770f12 tifm_alloc_device +EXPORT_SYMBOL drivers/misc/tifm_core 0xc43e0339 tifm_unmap_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0xd9c10234 tifm_unregister_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0xdd6a986f tifm_has_ms_pif +EXPORT_SYMBOL drivers/misc/tifm_core 0xe99261a3 tifm_add_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xf3e24bb1 tifm_alloc_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xf3e93915 tifm_map_sg +EXPORT_SYMBOL drivers/mmc/host/cqhci 0x1769b61f cqhci_init +EXPORT_SYMBOL drivers/mmc/host/cqhci 0x58fd3855 cqhci_resume +EXPORT_SYMBOL drivers/mmc/host/cqhci 0x8c63ebd9 cqhci_deactivate +EXPORT_SYMBOL drivers/mmc/host/cqhci 0xb0949789 cqhci_irq +EXPORT_SYMBOL drivers/mmc/host/cqhci 0xe8ac1976 cqhci_pltfm_init +EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0x448bc2a3 mmc_spi_get_pdata +EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0x73676bc7 mmc_spi_put_pdata +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x222f2875 cfi_read_pri +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x3a8647a2 cfi_merge_status +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x4e31de81 cfi_build_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xc421cb7c cfi_varsize_frob +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xe1f0ffb0 cfi_fixup +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xe2f26fec cfi_send_gen_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xf2c3c36e cfi_build_cmd_addr EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xff9fa623 cfi_udelay -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x160295f8 unregister_mtd_chip_driver -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x4f39c69e do_map_probe -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x5fff619d register_mtd_chip_driver -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x8402df6e map_destroy -EXPORT_SYMBOL drivers/mtd/chips/gen_probe 0x92b8bc50 mtd_do_chip_probe -EXPORT_SYMBOL drivers/mtd/lpddr/lpddr_cmds 0x4e405957 lpddr_cmdset +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x03c82b58 register_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x2346f163 map_destroy +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x9da89d63 unregister_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xbd375504 do_map_probe +EXPORT_SYMBOL drivers/mtd/chips/gen_probe 0xc65cf6ce mtd_do_chip_probe +EXPORT_SYMBOL drivers/mtd/lpddr/lpddr_cmds 0x2b2ceb90 lpddr_cmdset EXPORT_SYMBOL drivers/mtd/maps/map_funcs 0xfef2bb24 simple_map_init -EXPORT_SYMBOL drivers/mtd/mtd 0x1c27ef42 mtd_concat_create -EXPORT_SYMBOL drivers/mtd/mtd 0xd062a2b5 mtd_concat_destroy -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x02d152b6 nand_ecc_finish_io_req -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x094cf020 nand_ecc_sw_bch_cleanup_ctx -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x10bf384a nand_ecc_cleanup_ctx -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x114cf54d nand_ecc_sw_hamming_correct -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x47b8929b of_get_nand_ecc_user_config -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x517ed6a6 nand_ecc_sw_hamming_cleanup_ctx -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x65c55d3c nand_ecc_is_strong_enough -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x6faf4fc9 nand_ecc_get_sw_engine -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x7dec0c92 nand_ecc_prepare_io_req -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x89a85227 nand_ecc_sw_bch_init_ctx -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x94968888 nand_ecc_sw_bch_calculate -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xa5c3d1b6 nand_ecc_sw_hamming_init_ctx -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xb84f5977 nand_ecc_get_on_die_hw_engine -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xc19f1d40 nand_ecc_sw_bch_correct -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xce947022 nand_ecc_sw_hamming_get_engine -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xdba37813 nand_ecc_sw_hamming_calculate -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xdd13ae15 nand_ecc_sw_bch_get_engine -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xe236b560 nand_ecc_init_ctx +EXPORT_SYMBOL drivers/mtd/mtd 0x4e31577f mtd_concat_destroy +EXPORT_SYMBOL drivers/mtd/mtd 0x74fce75b mtd_concat_create +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x01b7c437 nand_ecc_sw_bch_init_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x0aa070e8 nand_ecc_sw_bch_get_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x0f8f0df5 nand_ecc_sw_hamming_init_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x188cddc3 nand_ecc_sw_bch_calculate +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x25771365 nand_ecc_cleanup_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x2f6cdb8d nand_ecc_sw_hamming_cleanup_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x5918e211 nand_ecc_init_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x8a512e8f nand_ecc_is_strong_enough +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x93687a03 nand_ecc_sw_hamming_calculate +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x9dcee3e0 nand_ecc_sw_bch_cleanup_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xbd6ea96c nand_ecc_sw_bch_correct +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xc89fdd7b nand_ecc_sw_hamming_correct +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xdb467c0a nand_ecc_finish_io_req EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xe6db989b ecc_sw_hamming_correct +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xead01c6e nand_ecc_sw_hamming_get_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xf76a8e50 nand_ecc_get_on_die_hw_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xf874486a nand_ecc_prepare_io_req +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xfc25889f of_get_nand_ecc_user_config +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xfd037f44 nand_ecc_get_sw_engine EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xff4351b0 ecc_sw_hamming_calculate -EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0x5daa6c46 flexonenand_region -EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0xd8fa121a onenand_addr +EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0x348e0e9a onenand_addr +EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0x7009ddbe flexonenand_region EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x30db096f denali_calc_ecc_bytes -EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x56616f8a denali_remove -EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0xa921c5dc denali_init -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x04166103 rawnand_sw_bch_cleanup -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x23b11e8e rawnand_sw_hamming_calculate -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x3b5a4c53 nand_monolithic_read_page_raw -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x4f3d8a19 rawnand_sw_bch_init -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x59393936 nand_read_oob_std -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x63198f13 rawnand_sw_bch_correct -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x69bd4332 rawnand_sw_hamming_init -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x72510247 nand_scan_with_ids -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x737e8657 nand_read_page_raw -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x8e1be908 nand_write_page_raw +EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x35a89ade denali_init +EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x5520e080 denali_remove +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x167aadc6 rawnand_sw_hamming_cleanup +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x263c8082 rawnand_sw_bch_cleanup +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x399d022c nand_scan_with_ids +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x586583c2 nand_read_page_raw +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x7d0908d6 nand_write_oob_std +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x7ecb3119 rawnand_sw_hamming_correct EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x8ecbb3b8 nand_check_erased_ecc_chunk -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x9fce7ada rawnand_dt_parse_gpio_cs -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xa0c609df nand_monolithic_write_page_raw -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xbf676042 rawnand_sw_hamming_cleanup -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xe980c9dc nand_create_bbt -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xf50e8511 rawnand_sw_hamming_correct -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xf86c784c nand_write_oob_std -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xfd61ba7c nand_get_set_features_notsupp -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x123a62f0 arc_proto_map -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x196ce665 arc_raw_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x47313949 arcnet_timeout -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x5e8604bc arcnet_close +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x97b90b78 rawnand_sw_bch_init +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x9aad6e92 nand_read_oob_std +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xadee9659 rawnand_sw_bch_correct +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xb1017ce7 rawnand_dt_parse_gpio_cs +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xbc2cef05 nand_create_bbt +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xc5aeff4b rawnand_sw_hamming_calculate +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xd636b042 nand_monolithic_write_page_raw +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xe0b18676 nand_monolithic_read_page_raw +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xf5a59c45 nand_get_set_features_notsupp +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xf672f5ae nand_write_page_raw +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xf7ffea2c rawnand_sw_hamming_init +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x10c6865b alloc_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x25c89078 arcnet_send_packet +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x37cc3679 arcnet_open +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x3cec52c0 arc_proto_map +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x543d2032 arcnet_close EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x7caf8f20 arc_proto_default -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x8ce1505a arcnet_send_packet -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xba052f53 free_arcdev -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xba7daab8 alloc_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x762e4643 free_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x9a5c50a5 arc_bcast_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x9c5b1497 arc_raw_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xa8313e74 arcnet_unregister_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xe41e254f arcnet_timeout +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xeb552129 arc_proto_default EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecb730b0 arcnet_interrupt -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xef65c59d arc_bcast_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xf650d28f arcnet_unregister_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xf854c16f arcnet_open -EXPORT_SYMBOL drivers/net/arcnet/com20020 0x0386f726 com20020_check -EXPORT_SYMBOL drivers/net/arcnet/com20020 0x4315fc99 com20020_found -EXPORT_SYMBOL drivers/net/arcnet/com20020 0xaf87b479 com20020_netdev_ops -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x0c5dd2da b53_vlan_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x0e06ecaf b53_mirror_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x1669ec11 b53_get_ethtool_stats -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x17abb28e b53_switch_detect -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x1df20e9f b53_br_leave -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x1e1f456f b53_eee_init -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x2bbf6708 b53_setup_devlink_resources -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x2e390ad6 b53_get_ethtool_phy_stats -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x3c738946 b53_imp_vlan_setup -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x413de15c b53_phylink_mac_link_down -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x4b468919 b53_disable_port -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x4cd3a210 b53_br_fast_age -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x4d4c7022 b53_get_tag_protocol -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x4ea097bc b53_mirror_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x61822b6f b53_eee_enable_set -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x646a23d2 b53_phylink_validate -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x681e1af4 b53_br_set_stp_state -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x69bdf024 b53_fdb_dump -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x71af128d b53_phylink_mac_link_up -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x73742d8b b53_switch_alloc -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x745da241 b53_fdb_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x757ea06c b53_mdb_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7d359576 b53_mdb_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x8cbd7c3f b53_get_sset_count -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x95893d85 b53_enable_port -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa41b7f97 b53_vlan_filtering -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa5f0a46a b53_br_flags_pre -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa69938f7 b53_phylink_mac_config -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa7e38d77 b53_br_join -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb45aeb40 b53_configure_vlan -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc211bb91 b53_phylink_mac_an_restart -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc3f3979d b53_get_mac_eee -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc6c1884b b53_set_mac_eee -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc82054d2 b53_vlan_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xca1966a3 b53_phylink_mac_link_state -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd0759335 b53_switch_register -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd796363f b53_brcm_hdr_setup -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xda99cb82 b53_get_strings -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xe1130bd1 b53_fdb_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xed440315 b53_br_flags -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xef74fcbf b53_port_event -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x00f4e309 b53_serdes_phylink_validate -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x1af8be0a b53_serdes_link_state -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x37d0257e b53_serdes_link_set -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x5be30265 b53_serdes_an_restart -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x928559c5 b53_serdes_config -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xba8ccfd6 b53_serdes_init -EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x28278050 lan9303_shutdown -EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xaad4eb07 lan9303_remove +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x0343bc38 com20020_check +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x1efdec08 com20020_found +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x22c5e4bd com20020_netdev_ops +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x02b29395 b53_br_join +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x03973efa b53_vlan_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x064ca834 b53_get_mac_eee +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x0cdfd7ef b53_br_flags_pre +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x0d1aa81c b53_eee_enable_set +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x19b8cde6 b53_configure_vlan +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x1a54af3e b53_eee_init +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x1fc1a851 b53_fdb_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x24392b3d b53_phylink_mac_link_up +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x2831c33c b53_vlan_filtering +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x304afcfe b53_set_mac_eee +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x32c4fdae b53_br_leave +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x34121efa b53_mdb_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x37251217 b53_mirror_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x3d559b87 b53_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x4102bd59 b53_fdb_dump +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x4158847a b53_switch_detect +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x4daf23b3 b53_disable_port +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x520cbc05 b53_fdb_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x5509af06 b53_imp_vlan_setup +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x55e14aa4 b53_vlan_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x5660423f b53_br_flags +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x719c0f4e b53_phylink_mac_config +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7b44bad7 b53_get_tag_protocol +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x851539b6 b53_brcm_hdr_setup +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x8cbcf90a b53_get_ethtool_stats +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x969dc019 b53_get_strings +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xaa6a717d b53_get_ethtool_phy_stats +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xaba3fdaf b53_phylink_validate +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xad34eea5 b53_phylink_mac_an_restart +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb1be6dea b53_mdb_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb9d87e08 b53_get_sset_count +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc3b4c10f b53_phylink_mac_link_state +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xca26c525 b53_br_set_stp_state +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xca5c0fe6 b53_port_event +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xde46b457 b53_switch_register +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xde975685 b53_enable_port +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xe0d4afe6 b53_phylink_mac_link_down +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf7fece48 b53_mirror_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xfb8195ab b53_br_fast_age +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xfdaef392 b53_setup_devlink_resources +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x353b8a81 b53_serdes_phylink_validate +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x79d7e801 b53_serdes_an_restart +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x8f542b4d b53_serdes_init +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x90df7f2b b53_serdes_link_state +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xa4a7298b b53_serdes_config +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xec0db207 b53_serdes_link_set +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x2aa254f1 lan9303_shutdown +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x61377e52 lan9303_probe +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x8ce57f87 lan9303_remove EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xada83f40 lan9303_register_set -EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xeebdecca lan9303_probe -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz8795 0x3a55754c ksz8_switch_register -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz9477 0x937bcd09 ksz9477_switch_register -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0x5f31a64d ksz_switch_remove -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0x6ccc1c03 ksz_switch_alloc -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0xa69f8895 ksz_switch_register -EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x3b7b47fd vsc73xx_probe -EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x925417e7 vsc73xx_shutdown +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz8795 0x52cf0c91 ksz8_switch_register +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz9477 0x2d187a70 ksz9477_switch_register +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0x169c0d30 ksz_switch_register +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0x3296e202 ksz_switch_remove +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0x435584a7 ksz_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x6b9beb24 vsc73xx_shutdown EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x99d242fe vsc73xx_is_addr_valid -EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0xe66fa7e8 vsc73xx_remove -EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x17839524 xrs700x_switch_shutdown -EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x5c3db723 xrs700x_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0xa59387d6 vsc73xx_remove +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0xca43b414 vsc73xx_probe +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x3050a9e0 xrs700x_switch_shutdown +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x378c5b22 xrs700x_switch_remove +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x638a9403 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 0xaba29a0e xrs700x_switch_register +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xa2168535 xrs700x_switch_register EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xb25facfa xrs7003e_info EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xb89aa5e3 xrs7004e_info -EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xf0bf470b xrs700x_switch_remove -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x021510d2 ei_get_stats -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x0d7944a2 NS8390_init EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x119721ac ei_interrupt -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x1a9f23b6 ei_netdev_ops -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x3d6a8a3a ei_close -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x6220c022 ei_set_multicast_list -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x82acd4d5 ei_start_xmit -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x93cadc68 ei_open -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xaf134b43 __alloc_ei_netdev -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xd70333e7 ei_tx_timeout -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xe4b2c810 ei_poll -EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnxt/bnxt_en 0x755c05b6 bnxt_ulp_probe -EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x5e4da3b7 cnic_register_driver +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x38f656ea ei_tx_timeout +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x3fac2f65 ei_netdev_ops +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x452ce034 ei_start_xmit +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x91d3bbf8 ei_set_multicast_list +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x9270857a ei_close +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xb0fc088d ei_open +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xb35d7838 ei_get_stats +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xce1621ce ei_poll +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xda0f28b8 NS8390_init +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xf9abe5b5 __alloc_ei_netdev +EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnxt/bnxt_en 0xa5967a6a bnxt_ulp_probe EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x636af174 cnic_unregister_driver -EXPORT_SYMBOL drivers/net/ethernet/cavium/common/cavium_ptp 0x5d07c236 cavium_ptp_get -EXPORT_SYMBOL drivers/net/ethernet/cavium/common/cavium_ptp 0x9a22e5a4 cavium_ptp_put +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x73003ff9 cnic_register_driver +EXPORT_SYMBOL drivers/net/ethernet/cavium/common/cavium_ptp 0x4ef69d47 cavium_ptp_put +EXPORT_SYMBOL drivers/net/ethernet/cavium/common/cavium_ptp 0xe0f8672d 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 @@ -2644,330 +2654,333 @@ 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 0x0eb630ea cxgb3_register_client -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x11b44416 cxgb3_alloc_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x32c756e7 cxgb3_free_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x41d8df99 cxgb3_insert_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x48441031 t3_l2t_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x519d7926 cxgb3_unregister_client -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x6566ce00 dev2t3cdev -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x69bfd7ea cxgb3_free_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x76273fa1 cxgb3_queue_tid_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x78d59190 t3_l2t_send_event -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x97bc0e66 cxgb3_remove_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xa7b66236 cxgb3_ofld_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xdb73a9ca t3_l2t_send_slow -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xe6699f36 t3_l2e_free -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xe7a6c889 t3_register_cpl_handler -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xee3806e0 cxgb3_alloc_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x00029e91 cxgb4_remove_server_filter -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x05a542a9 cxgb4_read_sge_timestamp -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0ac1bd44 cxgb4_get_tcp_stats -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0d2cff3f cxgb4_reclaim_completed_tx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x23e41192 cxgb3_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x2df8d7ea t3_l2e_free +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x2e9273b4 t3_register_cpl_handler +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x310ad68b t3_l2t_send_event +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x47730f7b cxgb3_insert_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x484bab90 t3_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x608bb5ce cxgb3_queue_tid_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x7c192603 cxgb3_register_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x920a85bc t3_l2t_send_slow +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x9b4ea8ae cxgb3_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xcf9b2398 cxgb3_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xd5ff3920 cxgb3_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xd6280186 cxgb3_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xeaa25b20 cxgb3_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xf089a7b2 cxgb3_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xff503040 dev2t3cdev +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0332b29d cxgb4_crypto_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x040c7af3 cxgb4_map_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0461498f cxgb4_immdata_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0883092e cxgb4_flush_eq_cache EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0f1a5528 cxgb4_unregister_uld -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x19b3ccfe cxgb4_alloc_sftid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1d202744 cxgb4_smt_alloc_switching -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1efaeac8 cxgb4_dbfifo_count -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x25806315 cxgb4_port_e2cchan -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2a1d365e cxgb4_ring_tx_db -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2b955298 cxgb4_register_uld -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3390e90a cxgb4_l2t_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x34c18c4f cxgb4_immdata_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x37ca26b2 cxgb4_map_skb -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x38af96f6 cxgb4_inline_tx_skb -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3db3da84 cxgb4_clip_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x40b3ea82 cxgb4_port_viid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x485aaf46 cxgb4_remove_server -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4e0f1720 cxgb4_crypto_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x110a3ca5 cxgb4_read_tpte +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x134692df cxgb4_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x14511896 cxgb4_clip_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1edb6d48 cxgb4_smt_alloc_switching +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2780e9e4 cxgb4_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2bea59b0 cxgb4_inline_tx_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3b0a3e3a cxgb4_get_srq_entry +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x429abc94 cxgb4_update_root_dev_clip +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4c9a424d cxgb4_clip_release EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x50ee5c07 cxgb4_best_aligned_mtu -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5c4fff2d cxgb4_remove_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5f652e66 cxgb4_free_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x78bc4b03 cxgb4_iscsi_init -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7b3d423f cxgb4_create_server -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x802164e5 cxgb4_alloc_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x99092993 cxgb4_create_server_filter -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9980e2a2 cxgb4_get_srq_entry -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9f01c3b3 cxgb4_update_root_dev_clip -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9fbf6c83 cxgb4_l2t_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa5ef72c0 cxgb4_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x59ecaf85 cxgb4_l2t_alloc_switching +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5a67379a cxgb4_ring_tx_db +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5f1e6c0e cxgb4_read_sge_timestamp +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6010fd81 cxgb4_remove_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6038b048 cxgb4_sync_txq_pidx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x619b0a5e cxgb4_dbfifo_count +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x688eefbc cxgb4_port_chan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6b92498c cxgb4_l2t_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x743b5553 cxgb4_create_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7a7f2c28 cxgb4_alloc_sftid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7caca46b cxgb4_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7e1bf9e4 cxgb4_port_viid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8025ebb5 cxgb4_select_ntuple +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8ae07576 cxgb4_create_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8dae5b63 cxgb4_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9699d01c cxgb4_pktgl_to_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9b31534e cxgb4_iscsi_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa41f73f2 cxgb4_check_l2t_valid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa6204815 cxgb4_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa6ab1946 cxgb4_create_server6 +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa796045e cxgb4_reclaim_completed_tx EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa8db193f cxgb4_smt_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xaf2f4a5c cxgb4_sync_txq_pidx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb54086db cxgb4_clip_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc34a80de cxgb4_ofld_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc422886e cxgb4_port_chan -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xcc8f3187 cxgb4_flush_eq_cache -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd02e5353 cxgb4_check_l2t_valid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd5571b64 t4_cleanup_clip_tbl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xaa9c5f71 cxgb4_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xba337793 cxgb4_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xbc43efd5 cxgb4_remove_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xbcd095ca cxgb4_bar2_sge_qregs +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc45ba66c cxgb4_port_idx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xccaa1332 cxgb4_port_e2cchan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd31a7d35 t4_cleanup_clip_tbl EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd69a0294 cxgb4_best_mtu -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd6e3e7b8 cxgb4_write_partial_sgl -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd875858d cxgb4_pktgl_to_skb -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xdfabe104 cxgb4_select_ntuple -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe1570295 cxgb4_l2t_alloc_switching -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe7a8a3e6 cxgb4_read_tpte -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf1ab87a6 cxgb4_port_idx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf4287a7e cxgb4_bar2_sge_qregs -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf5b588fd cxgb4_write_sgl -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf8b34eac cxgb4_free_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xfb804646 cxgb4_create_server6 -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xffcee831 cxgb4_l2t_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x0440d9ac cxgbi_ppm_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xdbb28c61 cxgb4_write_partial_sgl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe77eced3 cxgb4_get_tcp_stats +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe8de0e76 cxgb4_l2t_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xec327c7b cxgb4_write_sgl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf9f67f2b cxgb4_register_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x0b3267dc cxgb_find_route6 +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x13dea432 cxgbi_ppm_init 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 0x36625620 cxgb_find_route -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x43af2cbc cxgb_find_route6 -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x5f922bb8 cxgbi_ppm_init -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x655cd150 cxgbi_ppm_ppod_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x6da0a205 cxgbi_ppm_ppods_reserve -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x9d4c1f47 cxgbi_ppm_make_ppod_hdr -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x05ce24a5 enic_api_devcmd_proxy_by_index -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x13c7e5e7 vnic_dev_get_pdev -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x3d04ea86 vnic_dev_register -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xa2be78fc vnic_dev_get_res -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xa2cfa104 vnic_dev_get_res_count -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xebeb8654 vnic_dev_unregister -EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x4000674d be_roce_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x4885042d cxgb_find_route +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x523c0098 cxgbi_ppm_make_ppod_hdr +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xbaf05c19 cxgbi_ppm_ppod_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xbbe31e6d cxgbi_ppm_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xd6bc5b4e cxgbi_ppm_ppods_reserve +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x00b4f973 vnic_dev_get_pdev +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x757ac3f6 vnic_dev_get_res_count +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x7da71e30 enic_api_devcmd_proxy_by_index +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x9c4198d6 vnic_dev_unregister +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xebb743f0 vnic_dev_get_res +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xf13dbfe1 vnic_dev_register EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x4e2e10d2 be_roce_mcc_cmd -EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xbf51fecb be_roce_register_driver -EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0x03051052 iavf_register_client -EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0x2fea695d iavf_unregister_client -EXPORT_SYMBOL drivers/net/ethernet/marvell/prestera/prestera 0x030a6640 prestera_device_register -EXPORT_SYMBOL drivers/net/ethernet/marvell/prestera/prestera 0x4f8a55fb prestera_device_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x01ab7490 set_and_calc_slave_port_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0d46da09 mlx4_gen_guid_change_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0f9db31f mlx4_get_is_vlan_offload_disabled -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x132b89ad mlx4_query_diag_counters -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x134ee9ee mlx4_get_slave_node_guid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x15044568 mlx4_SET_VPORT_QOS_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1994b255 mlx4_SET_MCAST_FLTR -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1d200cf6 mlx4_SET_PORT_PRIO2TC -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x24e15a76 mlx4_test_async -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x291cb777 mlx4_is_eq_shared -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2b10a793 mlx4_is_slave_active -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x38c1eded mlx4_get_slave_port_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3962a8c0 mlx4_ALLOCATE_VPP_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3a604905 mlx4_SET_PORT_user_mac -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x44194dd5 mlx4_tunnel_steer_add -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x462deacf mlx4_SET_PORT_VXLAN -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x48a1233a set_phv_bit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4a4fdb38 mlx4_SET_PORT_general -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x591c1771 mlx4_get_parav_qkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x613bcf47 mlx4_SET_PORT_fcs_check -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6b4db915 mlx4_gen_pkey_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6c85a0b5 mlx4_gen_port_state_change_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x74ca6fd5 mlx4_max_tc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x74d506d0 mlx4_eq_get_irq +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xc3a07033 be_roce_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xea34a851 be_roce_register_driver +EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0x147a6190 iavf_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0xfdf214d5 iavf_register_client +EXPORT_SYMBOL drivers/net/ethernet/marvell/prestera/prestera 0x1028195a prestera_device_register +EXPORT_SYMBOL drivers/net/ethernet/marvell/prestera/prestera 0x2ea4eb16 prestera_device_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x05b14623 mlx4_test_async +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0b908327 mlx4_get_slave_pkey_gid_tbl_len +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0bc765ad mlx4_get_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1b97f2ab mlx4_SET_PORT_SCHEDULER +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1cd63a40 mlx4_get_parav_qkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2a0a5ffb mlx4_SET_PORT_PRIO2TC +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2f795de5 mlx4_ALLOCATE_VPP_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x38c42e52 mlx4_gen_slaves_port_mgt_ev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x38da3eb5 mlx4_gen_port_state_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x41590cfb mlx4_SET_PORT_general +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x42037adc mlx4_sync_pkey_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4a312b83 mlx4_put_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x56bc5930 mlx4_gen_pkey_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x597c197e mlx4_max_tc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5bd05ad3 set_and_calc_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x643733c3 mlx4_gen_guid_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x66527f1e mlx4_SET_VPORT_QOS_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x694e291e mlx4_is_eq_vector_valid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6f5d24d8 mlx4_SET_MCAST_FLTR +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x74059c21 mlx4_SET_PORT_BEACON +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x76f91cfc mlx4_SET_PORT_user_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7aea07a0 mlx4_ALLOCATE_VPP_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7e24d4f4 mlx4_assign_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7f992438 set_phv_bit 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 0x842ccea5 mlx4_is_eq_vector_valid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x84883a5d mlx4_get_cpu_rmap -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9c170217 mlx4_SET_PORT_qpn_calc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9ead12ce mlx4_get_module_info -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa19a78e5 mlx4_ALLOCATE_VPP_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb2f566e9 mlx4_put_slave_node_guid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb5a88aca mlx4_SET_PORT_SCHEDULER -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb81119e0 get_phv_bit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xba901009 mlx4_test_interrupt -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc5a4208f mlx4_assign_eq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc7362964 mlx4_SET_PORT_user_mtu -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd5f14af7 mlx4_get_slave_pkey_gid_tbl_len -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd6981e5f mlx4_get_eqs_per_port -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd8dbddb5 mlx4_gen_slaves_port_mgt_ev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd9b8ee35 mlx4_get_roce_gid_from_slave -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdc31c037 mlx4_get_slave_from_roce_gid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe362569a mlx4_sync_pkey_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe4d72690 mlx4_release_eq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe953dedb mlx4_SET_PORT_BEACON -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xebe5c56e mlx4_SET_VPORT_QOS_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x006e6047 mlx5_eswitch_get_vport_metadata_for_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x026f9f33 mlx5_rl_add_rate_raw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x031a1c02 mlx5_modify_header_alloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x076408c3 __tracepoint_mlx5_fs_add_ft -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0d324e83 mlx5_eq_enable -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0e59e3e9 mlx5_fpga_mem_write -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x104d2063 mlx5_fs_add_rx_underlay_qpn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x10c99172 __SCK__tp_func_mlx5_fs_del_ft -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x126b37c5 mlx5_fpga_sbu_conn_create -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1526248d mlx5_eswitch_get_vport_metadata_for_match -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x15822c88 mlx5_lag_get_roce_netdev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x163fe1e1 mlx5_cmd_alloc_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x17b82273 mlx5_core_alloc_transport_domain -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x184da7ac mlx5_eswitch_vport_match_metadata_enabled -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x19b22c8f __SCK__tp_func_mlx5_fs_add_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1b62246e mlx5_del_flow_rules -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1e4b57d5 mlx5_core_create_tis -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1e4c39df __SCK__tp_func_mlx5_fw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x22a3d709 mlx5_lag_is_master -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x242829d3 mlx5_core_query_vendor_id -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2518c561 mlx5_core_roce_gid_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2524ad24 mlx5_debugfs_root -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x267539ae mlx5_comp_vectors_count -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x28ce1b3d __traceiter_mlx5_fs_set_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2ac37706 mlx5_packet_reformat_dealloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2cf77d63 mlx5_core_create_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2d1e9bc5 mlx5_notifier_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2e85398d mlx5_eq_create_generic -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2e99837e mlx5_qp_debugfs_init -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x331fd113 mlx5_create_flow_group -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x34296c36 mlx5_cmd_init_async_ctx -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x346ea499 mlx5_rl_remove_rate_raw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3479ce1b mlx5_debug_qp_add -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x357f4af0 mlx5_packet_reformat_alloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x369ba525 __traceiter_mlx5_fs_del_fg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3e4a3182 mlx5_destroy_flow_group -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x42519b88 mlx5_eq_get_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x43821540 __SCK__tp_func_mlx5_fs_set_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x83c845d5 mlx4_SET_VPORT_QOS_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8581f4d6 mlx4_test_interrupt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x85d1404c mlx4_is_eq_shared +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9579edf4 mlx4_SET_PORT_qpn_calc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x95c2fee7 mlx4_release_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9874dd79 mlx4_get_is_vlan_offload_disabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9e1b8ec0 mlx4_SET_PORT_VXLAN +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa50b0d89 mlx4_SET_PORT_user_mtu +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaf61f80b mlx4_is_slave_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb4b3db42 mlx4_get_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb5ad9da5 mlx4_SET_PORT_fcs_check +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb607369e mlx4_query_diag_counters +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbe897366 mlx4_tunnel_steer_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc2e5b6e4 mlx4_get_eqs_per_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdff21e75 mlx4_get_module_info +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe53892d1 mlx4_get_roce_gid_from_slave +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe940e306 mlx4_get_slave_from_roce_gid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xee1491e8 mlx4_get_cpu_rmap +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfcf68881 mlx4_eq_get_irq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfed6951e get_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x018d824a __tracepoint_mlx5_fs_add_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0229688e mlx5_fpga_sbu_conn_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x034924da mlx5_eq_disable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x090d8d09 mlx5_qp_debugfs_cleanup +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0cf4324d mlx5_get_flow_namespace +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x10815e2d mlx5_core_create_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x129d46c4 mlx5_eq_get_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x133dee1e mlx5_lag_is_master +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1425d7b5 mlx5_lag_is_roce +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x156f3d3e mlx5_query_ib_port_oper +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x16cd8d99 mlx5_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x193cbb3b mlx5_lag_query_cong_counters +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x19f7d53f mlx5_eswitch_vport_match_metadata_enabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1a8607a1 mlx5_eq_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1b32e00c mlx5_fpga_sbu_conn_destroy +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 0x1d9a6e7e __SCK__tp_func_mlx5_fs_add_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1f821593 mlx5_comp_irq_get_affinity_mask +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x20fb9123 mlx5_core_modify_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x21d92240 mlx5_eswitch_get_vport_metadata_for_match +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x26bbffc3 mlx5_core_query_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x27837cbe mlx5_core_destroy_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x28691d9f mlx5_eswitch_vport_rep +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2875415d mlx5_alloc_bfreg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x288fb3a5 mlx5_cmd_create_vport_lag +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2e8b3d07 mlx5_core_modify_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3610de1b mlx5_core_destroy_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x39c1b287 mlx5_eswitch_reg_c1_loopback_enabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3b8f1efc mlx5_core_detach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3bc40bfb mlx5_get_fdb_sub_ns +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3d61625c mlx5_buf_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3f41cb58 __tracepoint_mlx5_fs_add_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x42e12964 mlx5_eq_update_ci +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x43371eb4 mlx5_eswitch_get_core_dev EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x49580652 mlx5_create_auto_grouped_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4a98433d mlx5_eswitch_uplink_get_proto_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4acc776c mlx5_core_destroy_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4b5ba079 mlx5_core_attach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4bb3eb67 mlx5_core_modify_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4df38587 mlx5_core_query_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5003301a mlx5_core_destroy_rqt EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x503f3c9d __traceiter_mlx5_fs_add_ft -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x50a3fc9d mlx5_core_dealloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x51efd747 mlx5_cmd_init_async_ctx +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5216d8c5 mlx5_debug_qp_remove +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5389c81c mlx5_fc_destroy EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x55b88c73 mlx5_create_lag_demux_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5bd2679b mlx5_core_query_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5627b364 mlx5_eswitch_get_proto_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x569d9000 __SCK__tp_func_mlx5_fs_set_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x56cf1fc9 mlx5_core_create_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5752c47b mlx5_rsc_dump_cmd_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x58480f5c __traceiter_mlx5_fs_del_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5b61735d mlx5_core_create_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5e373441 mlx5_packet_reformat_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5ebcdd59 mlx5_eswitch_get_encap_mode +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6062c3d8 __tracepoint_mlx5_fs_add_fg EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x60ae791f __traceiter_mlx5_fs_del_ft 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 0x61fc5d8b mlx5_fc_destroy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x625b2d14 mlx5_core_dealloc_transport_domain 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 0x64cc04ba __tracepoint_mlx5_fs_del_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x668b4951 __tracepoint_mlx5_fs_add_fg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x66a32cf8 mlx5_modify_header_dealloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x69c5ebba mlx5_cmd_free_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6abeeee2 mlx5_buf_alloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6c71fa70 mlx5_lag_is_shared_fdb -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6cf421c1 mlx5_eswitch_reg_c1_loopback_enabled -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6dbf8f3b __tracepoint_mlx5_fs_del_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6f1ef89c mlx5_lag_is_active -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x710f9598 mlx5_lag_get_peer_mdev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7126d0e0 __SCK__tp_func_mlx5_fs_del_fg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7152a0ca mlx5_get_fdb_sub_ns -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x74869b6e mlx5_fs_remove_rx_underlay_qpn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x76b79099 mlx5_alloc_bfreg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x78042db5 mlx5_cmd_destroy_vport_lag -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x79605e2c mlx5_add_flow_rules -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7d3cdfbf mlx5_core_destroy_tis -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x801a92f7 mlx5_eq_update_ci -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x808dc6d6 mlx5_cmd_exec_polling -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8410d4ff mlx5_core_modify_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x85a46c32 mlx5_put_uars_page -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x88bf555c mlx5_fpga_mem_read -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8aa5d2af mlx5_core_destroy_rqt -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8afa235e mlx5_core_destroy_tir -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8d8f6553 mlx5_fpga_get_sbu_caps -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8f4683df __traceiter_mlx5_fw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8fa29f46 mlx5_core_query_sq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x90823981 mlx5_core_modify_tis -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x90904f4e __traceiter_mlx5_fs_add_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6601c104 mlx5_cmd_destroy_vport_lag +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6948c0d9 mlx5_cmd_cleanup_async_ctx +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x69556e70 __tracepoint_mlx5_fs_set_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6a4f3ab7 mlx5_cmd_exec_cb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6a8864fa mlx5_core_destroy_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6f7b729a __SCK__tp_func_mlx5_fs_add_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x70bdabea mlx5_core_create_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x72843a8f mlx5_lag_get_peer_mdev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x72aee74a mlx5_rl_remove_rate_raw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x739c21b1 mlx5_core_dealloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x76efa552 __traceiter_mlx5_fs_del_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x789972b3 mlx5_rl_is_in_range +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x792fc8ff mlx5_fs_remove_rx_underlay_qpn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7a1920d3 mlx5_core_modify_cq_moderation +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7afe9eee mlx5_put_uars_page +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7b1a3a4c mlx5_core_query_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7b8f9ec1 mlx5_eq_destroy_generic +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7ba01798 mlx5_cmd_free_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7c0a9157 mlx5_packet_reformat_dealloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7c752fec __SCK__tp_func_mlx5_fs_add_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7c9eb1fc __traceiter_mlx5_fs_add_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7cc19ec7 mlx5_eswitch_get_vport_metadata_for_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7d4a7fae mlx5_debugfs_root +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fa4746b mlx5_vector2eqn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x81143981 mlx5_core_destroy_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x817bf6b4 mlx5_eq_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x82e82ac0 mlx5_core_destroy_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x833ea48c __SCK__tp_func_mlx5_fw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x83f500bf mlx5_lag_get_slave_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x83fe6b0f mlx5_core_destroy_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x86c5a026 __traceiter_mlx5_fw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x86f3a194 mlx5_core_roce_gid_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8811536a mlx5_lag_is_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x89fb9a90 mlx5_eq_enable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8a93c0ee __tracepoint_mlx5_fs_del_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8acdf301 mlx5_lag_is_sriov +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8d8a2152 mlx5_modify_header_dealloc EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x91443f27 mlx5_create_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x917b96cd mlx5_core_create_rqt -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x93ad05dc __traceiter_mlx5_fs_del_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x949bdf68 mlx5_eswitch_vport_rep EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96eb2c99 mlx5_fc_id -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x98d921fb mlx5_fpga_sbu_conn_destroy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9ab707ff mlx5_rl_add_rate -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9ac7f838 mlx5_fpga_sbu_conn_sendmsg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x97ae5697 mlx5_eswitch_unregister_vport_reps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x983c1a3d mlx5_nic_vport_disable_roce +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9c982c75 mlx5_add_flow_rules 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 0x9da3d548 mlx5_get_uars_page -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9f90c89c mlx5_vector2eqn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa0468e7b mlx5_core_destroy_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa3e2af65 mlx5_core_create_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa738a276 mlx5_comp_irq_get_affinity_mask -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa812363f __traceiter_mlx5_fs_del_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa8853bf6 mlx5_cmd_create_vport_lag -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa98620f8 mlx5_core_create_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa9dc022d mlx5_lag_is_sriov -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaaceffcc mlx5_core_attach_mcg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xabb94bf3 mlx5_core_create_tir -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xabc9e638 mlx5_cmd_exec_cb -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xac602739 __SCK__tp_func_mlx5_fs_del_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa39641a7 mlx5_rl_add_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa3f2b060 mlx5_fpga_mem_read +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa53b893e __traceiter_mlx5_fs_set_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa6115acb mlx5_eswitch_uplink_get_proto_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa67a20d6 mlx5_rdma_rn_get_params +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa735048f mlx5_create_flow_group +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa82d3532 mlx5_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa8993589 __tracepoint_mlx5_fs_del_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xab0c2a9a mlx5_cmd_alloc_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xab92f5fb mlx5_mpfs_add_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xac223c56 mlx5_modify_header_alloc 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 0xad7188fb mlx5_core_query_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xae70bf00 __tracepoint_mlx5_fs_del_ft -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaefd4e5a __tracepoint_mlx5_fw 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 0xb2eb9af5 mlx5_core_detach_mcg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb3b94623 mlx5_core_query_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb48ed75c mlx5_rl_is_in_range +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb1d503a8 mlx5_mpfs_del_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb1f7d45e mlx5_rl_add_rate_raw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb28dbbe8 mlx5_destroy_flow_group +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb325d402 mlx5_get_uars_page +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb330dde7 mlx5_rsc_dump_next +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb48ed9bd __SCK__tp_func_mlx5_fs_del_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb496cf4e mlx5_core_dealloc_pd 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 0xb4f3af0d mlx5_rdma_rn_get_params -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb586497b mlx5_eswitch_register_vport_reps -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb82ff4ca mlx5_cmd_cleanup_async_ctx -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb9dd26b1 __SCK__tp_func_mlx5_fs_add_ft -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbb5decba mlx5_query_ib_port_oper -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbb7ab758 mlx5_get_flow_namespace -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbb89b0a9 mlx5_nic_vport_disable_roce -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbeac3a91 mlx5_core_create_psv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc45a96cf mlx5_core_destroy_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc6621e86 mlx5_core_alloc_pd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc8196af2 mlx5_cmd_exec -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc8eb1f5d mlx5_eswitch_unregister_vport_reps -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc9251ef0 mlx5_qp_debugfs_cleanup -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xca819865 mlx5_core_modify_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb5338b3b mlx5_del_flow_rules +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb6b67472 mlx5_core_modify_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb7960b71 mlx5_core_create_tir +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 0xbc4785bd mlx5_fc_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbe7eccfd mlx5_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbf20463c mlx5_core_alloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbf5b98cf mlx5_cmd_exec_polling +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc64cc682 mlx5_core_create_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc7ad2c80 mlx5_lag_get_roce_netdev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc8ce121b mlx5_core_alloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc976741b __tracepoint_mlx5_fs_del_fg 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 0xcb35fbee mlx5_mpfs_del_mac -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcf9ffe92 __tracepoint_mlx5_fs_del_fg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd2518bc5 mlx5_eswitch_get_core_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd454908a mlx5_notifier_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd479d7e4 mlx5_core_destroy_psv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd6566c97 mlx5_free_bfreg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd8326723 __SCK__tp_func_mlx5_fs_add_fg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd86d848d __tracepoint_mlx5_fs_add_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcd1f7402 mlx5_core_query_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcf6628c4 __SCK__tp_func_mlx5_fs_del_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd18aeeaf mlx5_eswitch_add_send_to_vport_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd55f989c mlx5_comp_vectors_count +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd561982f __SCK__tp_func_mlx5_fs_del_ft EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd8a12a67 mlx5_destroy_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd979d5dc mlx5_lag_get_slave_port -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xda055c31 mlx5_eq_notifier_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xda79ad84 __SCK__tp_func_mlx5_fs_del_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xda8e2229 mlx5_core_create_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdaa9792c __SCK__tp_func_mlx5_fs_del_rule 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 0xdc1597f1 mlx5_fc_query -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdde62e1f mlx5_debug_qp_remove +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdda2ca1d __tracepoint_mlx5_fw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xddd58b7b mlx5_rl_remove_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xddf07762 mlx5_fpga_get_sbu_caps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdeb24e83 mlx5_fc_query 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 0xe204143d mlx5_eq_destroy_generic 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 0xe8528fd8 mlx5_core_modify_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xebcd4e36 mlx5_eswitch_get_proto_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xec1d1a98 mlx5_eswitch_add_send_to_vport_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xec9ceac2 mlx5_core_modify_cq_moderation -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xed0a1257 mlx5_fc_create -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf2855334 mlx5_rsc_dump_next -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf2ef27e3 mlx5_eq_disable -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf2f60904 mlx5_rl_remove_rate -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf33475b1 mlx5_rsc_dump_cmd_create -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf364370e mlx5_lag_is_roce -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf5005c72 mlx5_eswitch_get_encap_mode -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf5658f66 mlx5_lag_query_cong_counters -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf5b1bb55 __traceiter_mlx5_fs_add_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf8e7de2d mlx5_mpfs_add_mac -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfd37bc7e __tracepoint_mlx5_fs_set_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfdfe8fdd mlx5_eq_notifier_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxfw/mlxfw 0xb6e65d67 mlxfw_firmware_flash -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x017a565d mlxsw_env_get_module_eeprom +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe9d7191b mlx5_free_bfreg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeeb8eb0b mlx5_qp_debugfs_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf02eb66a mlx5_eswitch_register_vport_reps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf03338e3 mlx5_eq_create_generic +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf0aed6b4 __tracepoint_mlx5_fs_del_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf27d80af mlx5_core_query_vendor_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf507bb21 mlx5_fpga_mem_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf6cfbb2c mlx5_debug_qp_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf7bc4c50 mlx5_lag_is_shared_fdb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf83a9495 mlx5_fpga_sbu_conn_sendmsg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfaab8d5a mlx5_fs_add_rx_underlay_qpn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxfw/mlxfw 0xedfc0c08 mlxfw_firmware_flash 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 0x0c194a56 mlxsw_core_trap_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0be71904 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 0x0e81c09c mlxsw_afk_destroy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x110f6d89 mlxsw_core_skb_receive EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x120a1738 mlxsw_core_port_init EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x15801382 mlxsw_afk_key_info_put +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x1713bbde mlxsw_afa_block_append_mirror EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x18b0ad00 mlxsw_afa_block_append_police EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x19fa5852 mlxsw_core_flush_owq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x1c1ebbe5 mlxsw_afa_create EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x1c6605f6 mlxsw_afa_block_append_qos_switch_prio -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x1c8d5e8f mlxsw_afa_create 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 0x21daf3af mlxsw_afa_block_append_qos_dsfield EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x23eddc68 mlxsw_core_cpu_port_init -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x26d81886 mlxsw_core_rx_listener_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2c55347c mlxsw_core_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x249a1340 mlxsw_env_get_module_eeprom +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2a6add6e mlxsw_core_driver_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 0x2f7ea746 mlxsw_core_skb_transmit EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x30d72838 mlxsw_env_get_module_eeprom_by_page +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x3160458a mlxsw_core_driver_unregister EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x35ba2254 mlxsw_afk_values_add_u32 EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x38185d87 mlxsw_afa_block_append_qos_ecn EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x406b4614 mlxsw_afa_block_append_counter 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 0x484489a4 mlxsw_cmd_exec -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x49a0f34d mlxsw_core_driver_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4a6ed376 mlxsw_core_port_fini EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4b0bae55 mlxsw_core_kvd_sizes_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x511ef55f mlxsw_core_ptp_transmitted +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5507e2ec mlxsw_core_port_devlink_port_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x564e178b mlxsw_core_trap_state_set EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5a099407 mlxsw_afa_block_append_qos_dscp 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 @@ -2976,11 +2989,14 @@ EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x63874d4c mlxsw_core_port_driver_priv EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x65e16da4 mlxsw_afk_key_info_get EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x692ac04e mlxsw_afk_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x695b2e38 mlxsw_core_rx_listener_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x71e1d813 mlxsw_core_port_clear EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x749556a2 mlxsw_afk_key_info_subset EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x74eb7c9e mlxsw_core_res_valid EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x77768221 mlxsw_core_module_max_width +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x778c9e4a mlxsw_core_port_eth_set EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x77d83398 mlxsw_core_read_frc_l +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7804655c mlxsw_core_bus_device_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7f659d4c mlxsw_afa_block_append_vlan_modify 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 @@ -2995,10 +3011,10 @@ 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 0xa351672d mlxsw_core_skb_receive EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa7765e88 mlxsw_reg_query EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb5e762fa mlxsw_afk_values_add_buf 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 0xb6797613 mlxsw_afa_block_append_mirror EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb9f797a9 mlxsw_env_module_overheat_counter_get 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 0xbbb7a867 mlxsw_afa_block_append_sampler @@ -3006,12 +3022,10 @@ EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbe82d6cc mlxsw_env_get_module_info EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbfb7df3c mlxsw_core_driver_priv EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbfd01f33 mlxsw_core_port_ib_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc62f508a mlxsw_core_trap_unregister EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc9c2e4cc mlxsw_core_lag_mapping_clear -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc9da0196 mlxsw_core_skb_transmit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xca007bc2 mlxsw_core_trap_state_set EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xca257489 mlxsw_afa_block_append_fwd 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 0xccdcc216 mlxsw_core_port_eth_set EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd1a82f0b mlxsw_core_lag_mapping_get EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd252e62d mlxsw_core_skb_transmit_busy EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd28256cf mlxsw_afa_block_append_allocated_counter @@ -3019,107 +3033,103 @@ EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd71566b9 mlxsw_core_schedule_work EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd84eb6b0 mlxsw_afa_block_append_drop EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd9f711ae mlxsw_afa_block_append_mcrouter -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xda3248d9 mlxsw_core_bus_device_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdc31781e mlxsw_reg_trans_write EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdc415cf1 mlxsw_afa_block_continue EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xde4e211f mlxsw_afa_block_append_l4port EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdeb1dc2e mlxsw_afa_block_first_kvdl_index EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe16986dd mlxsw_afa_block_activity_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe3d14877 mlxsw_core_port_devlink_port_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe9e05e3d mlxsw_core_rx_listener_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xebea7271 mlxsw_core_trap_unregister EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xecab212a mlxsw_afa_cookie_lookup +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xeefef104 mlxsw_core_trap_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf2ca3bae mlxsw_core_res_query_enabled EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf4909bea mlxsw_core_port_type_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf73ccbaa mlxsw_core_ptp_transmitted EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xff007c25 mlxsw_core_cpu_port_fini -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0x73cb3835 mlxsw_i2c_driver_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0xa7cff34e mlxsw_i2c_driver_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0x376476fb mlxsw_pci_driver_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0xb5776fe3 mlxsw_pci_driver_unregister -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x021111ad ocelot_port_lag_join -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0d11ddc0 ocelot_deinit_port -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x10209f30 ocelot_fdb_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x159c8256 ocelot_init -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1cf8ee4e ocelot_port_mdb_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0x1078b1b5 mlxsw_i2c_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0x3d6dff42 mlxsw_i2c_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0x4e23b281 mlxsw_pci_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0x730b36c8 mlxsw_pci_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x060a7a3c ocelot_ptp_adjtime +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x090b2378 ocelot_fdb_dump +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0a9b8372 ocelot_init_port +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x14496773 ocelot_deinit +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x196954e1 ocelot_port_policer_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1a385cb0 ocelot_fdb_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1ad46a9f ocelot_get_ethtool_stats +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1d6cd7a8 ocelot_vcap_filter_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x23c7b84b ocelot_mrp_del_ring_role EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x274a0e05 ocelot_port_fdb_do_dump -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x29166b6f ocelot_fdb_dump -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2a7442cb ocelot_port_pre_bridge_flags -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x30373851 ocelot_vcap_filter_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3042d5d2 ocelot_sb_port_pool_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x32866100 ocelot_can_inject -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x36ca431c ocelot_hwstamp_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3784fcb8 ocelot_port_mdb_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x38f44d48 ocelot_get_strings -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x447fa4b9 ocelot_get_txtstamp -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4a1ec423 ocelot_fdb_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4a725806 ocelot_xtr_poll_frame -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4cdd7046 ocelot_port_bridge_flags -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4f1e1152 ocelot_sb_tc_pool_bind_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5b4b7328 ocelot_deinit_timestamp -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6071b2b5 ocelot_port_policer_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x65790e43 ocelot_ptp_settime64 -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6a5a6bac ocelot_devlink_sb_unregister -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6a66e027 ocelot_devlink_sb_register -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6c6cb968 ocelot_drain_cpu_queue -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6ce35acd ocelot_port_policer_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6ead549d ocelot_init_port -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x73d5f791 ocelot_mrp_add_ring_role -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x76109792 ocelot_sb_occ_tc_port_bind_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x77b28692 ocelot_vlan_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x82c41460 ocelot_mrp_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x83232309 ocelot_ptp_adjtime -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x84220b8b ocelot_mact_learn -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x877dd216 ocelot_get_sset_count -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8808afac ocelot_sb_tc_pool_bind_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x887f78cf ocelot_sb_occ_max_clear +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x27ab0e9e ocelot_get_txtstamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2a4be2fe ocelot_devlink_sb_register +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2e0d2691 ocelot_mrp_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x363ef1af ocelot_port_lag_join +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x36687407 ocelot_get_sset_count +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x386310da ocelot_fdb_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3c68083f ocelot_sb_occ_max_clear +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3dcaffa3 ocelot_sb_occ_port_pool_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x40b50acf ocelot_vcap_filter_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x47de11d9 ocelot_apply_bridge_fwd_mask +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x482efb17 ocelot_ptp_adjfine +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4f34c232 ocelot_mact_forget +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x50263f4c ocelot_hwstamp_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x51afb02e ocelot_ptp_verify +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x53c9ef43 ocelot_sb_tc_pool_bind_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x54debec1 ocelot_get_max_mtu +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x55c7fd3a ocelot_sb_tc_pool_bind_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x56a7a658 ocelot_port_policer_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x56b20ee9 ocelot_deinit_port +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5bc0d963 ocelot_sb_occ_snapshot +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5c049c8a ocelot_vlan_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5d66b3bc ocelot_port_vlan_filtering +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x609744fb ocelot_port_lag_change +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6731f635 ocelot_port_bridge_leave +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x69aa2f62 ocelot_can_inject +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7799541a ocelot_port_mdb_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x808e7296 ocelot_bridge_stp_state_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x82344dbe ocelot_get_strings +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x850ecc3d ocelot_init_timestamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x85b35e17 ocelot_init EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8a85c6a8 ocelot_vcap_block_find_filter_by_id -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8b19086b ocelot_ptp_verify -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8fd945a2 ocelot_get_ethtool_stats -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x970e3c7f ocelot_vlan_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9a7c582c ocelot_sb_pool_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9eeac05c ocelot_port_inject_frame -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa1a323a1 ocelot_sb_occ_port_pool_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa1fa0c99 ocelot_port_lag_change -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xabab223e ocelot_sb_pool_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xaed89fb0 ocelot_vlan_prepare -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb730f022 ocelot_port_bridge_join -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb7c68331 ocelot_port_vlan_filtering -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb93949cf ocelot_port_txtstamp_request -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbf2973bb ocelot_apply_bridge_fwd_mask -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbf60a778 ocelot_ptp_gettime64 -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbfc3f811 ocelot_ptp_adjfine -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc1163a61 ocelot_set_ageing_time -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc577e80c ocelot_get_max_mtu -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xccb5b14d ocelot_vcap_filter_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xce842e7b ocelot_deinit -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd3953a3e ocelot_hwstamp_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd7290cd5 ocelot_mrp_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd7c54b3c ocelot_mrp_del_ring_role -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xdb48f9e8 ocelot_init_timestamp -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xde0d92e7 ocelot_mact_forget -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xdee4875d ocelot_sb_port_pool_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xdf042323 ocelot_bridge_stp_state_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe336960b ocelot_ptp_enable -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf40606ad ocelot_port_set_maxlen -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf603ca10 ocelot_sb_occ_snapshot -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf65a5e63 ocelot_port_lag_leave -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf7cc0b67 ocelot_get_ts_info -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf894c07b ocelot_port_bridge_leave -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x06a51d2c qed_get_iscsi_ops +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8b283017 ocelot_vlan_prepare +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8e326a5b ocelot_sb_pool_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8e571def ocelot_vlan_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x90381398 ocelot_mact_learn +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9062a3b2 ocelot_port_bridge_join +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x93b936c5 ocelot_ptp_settime64 +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9e20737b ocelot_port_lag_leave +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa0787c5b ocelot_sb_pool_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa94a885b ocelot_xtr_poll_frame +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xadd6ad5e ocelot_devlink_sb_unregister +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xaedca4dc ocelot_port_bridge_flags +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb6601089 ocelot_sb_port_pool_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xba346a84 ocelot_port_inject_frame +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbd15ad6a ocelot_drain_cpu_queue +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc10442fa ocelot_deinit_timestamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc57edc14 ocelot_set_ageing_time +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc5c5f700 ocelot_get_ts_info +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc642fae2 ocelot_ptp_enable +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xcfbe09f2 ocelot_port_pre_bridge_flags +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd246b844 ocelot_sb_occ_tc_port_bind_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd994f795 ocelot_port_mdb_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xdd553ef4 ocelot_mrp_add_ring_role +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe0cf4ad3 ocelot_port_set_maxlen +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe2812f21 ocelot_ptp_gettime64 +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe56abbe0 ocelot_sb_port_pool_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xeb162989 ocelot_mrp_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf149de61 ocelot_hwstamp_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfe4dbfe4 ocelot_port_txtstamp_request +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x05d6f98c 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 0x85dd7cb9 qed_get_fcoe_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x5927c425 qed_get_eth_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x760327e6 qed_get_fcoe_ops EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x992e03d0 qed_put_fcoe_ops EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x9eeeef48 qed_put_eth_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xa6c3653c qed_get_rdma_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xd8f841d3 qed_get_eth_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qede/qede 0x1c227bc6 qede_rdma_register_driver -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qede/qede 0xb2aa28ca qede_rdma_unregister_driver -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x1e9d3c0a hdlcdrv_arbitrate -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x476ae192 hdlcdrv_receiver -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x7c99f586 hdlcdrv_unregister -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x8381282d hdlcdrv_transmitter -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xfe1e898b hdlcdrv_register +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xc4b45c8f qed_get_iscsi_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qede/qede 0x148ce818 qede_rdma_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qede/qede 0x7ef5c854 qede_rdma_register_driver +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x44fd8f46 hdlcdrv_unregister +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xc0f410fd hdlcdrv_receiver +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xc83378e6 hdlcdrv_register +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xdcc161b8 hdlcdrv_transmitter +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xf46ff9cf hdlcdrv_arbitrate EXPORT_SYMBOL drivers/net/mdio 0x3e17f466 mdio_set_flag EXPORT_SYMBOL drivers/net/mdio 0x424a69a2 mdio45_ethtool_ksettings_get_npage EXPORT_SYMBOL drivers/net/mdio 0x60443957 mdio45_probe @@ -3127,1433 +3137,1433 @@ 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 0x42e54bb9 free_mdio_bitbang -EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0x8b8625de alloc_mdio_bitbang -EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0xd9dafed3 mdiobb_read -EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0xf4ea2184 mdiobb_write -EXPORT_SYMBOL drivers/net/mdio/mdio-cavium 0x03d05fc6 cavium_mdiobus_read -EXPORT_SYMBOL drivers/net/mdio/mdio-cavium 0x101511fa cavium_mdiobus_write -EXPORT_SYMBOL drivers/net/mii 0x0ca1f0c4 generic_mii_ioctl -EXPORT_SYMBOL drivers/net/mii 0x15d7e826 mii_ethtool_gset -EXPORT_SYMBOL drivers/net/mii 0x26df1c78 mii_check_media -EXPORT_SYMBOL drivers/net/mii 0x62e8ca1d mii_link_ok -EXPORT_SYMBOL drivers/net/mii 0x6b5dae1e mii_nway_restart -EXPORT_SYMBOL drivers/net/mii 0x73037cd1 mii_ethtool_get_link_ksettings -EXPORT_SYMBOL drivers/net/mii 0xc32f7751 mii_ethtool_sset -EXPORT_SYMBOL drivers/net/mii 0xd3c4bee6 mii_ethtool_set_link_ksettings -EXPORT_SYMBOL drivers/net/mii 0xd9358d46 mii_check_gmii_support -EXPORT_SYMBOL drivers/net/mii 0xf5612f03 mii_check_link -EXPORT_SYMBOL drivers/net/pcs/pcs-lynx 0x3c7b72d7 lynx_pcs_destroy -EXPORT_SYMBOL drivers/net/pcs/pcs-lynx 0x9f03ad6d lynx_pcs_create -EXPORT_SYMBOL drivers/net/phy/bcm-phy-lib 0x239349f6 bcm54xx_auxctl_write -EXPORT_SYMBOL drivers/net/ppp/pppox 0x2ea93fed register_pppox_proto -EXPORT_SYMBOL drivers/net/ppp/pppox 0x46f98326 pppox_ioctl -EXPORT_SYMBOL drivers/net/ppp/pppox 0x4d51b209 pppox_compat_ioctl -EXPORT_SYMBOL drivers/net/ppp/pppox 0x6bd754b4 pppox_unbind_sock +EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0x1155af58 free_mdio_bitbang +EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0x28086b0b mdiobb_write +EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0x7d83b520 alloc_mdio_bitbang +EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0xe793cd70 mdiobb_read +EXPORT_SYMBOL drivers/net/mdio/mdio-cavium 0x14e9ff41 cavium_mdiobus_write +EXPORT_SYMBOL drivers/net/mdio/mdio-cavium 0xd117ff2c cavium_mdiobus_read +EXPORT_SYMBOL drivers/net/mii 0x077f02e5 mii_ethtool_gset +EXPORT_SYMBOL drivers/net/mii 0x1ee7967c mii_check_media +EXPORT_SYMBOL drivers/net/mii 0x33083fb6 mii_ethtool_get_link_ksettings +EXPORT_SYMBOL drivers/net/mii 0x5509dac9 mii_ethtool_set_link_ksettings +EXPORT_SYMBOL drivers/net/mii 0x8c94b2cb mii_link_ok +EXPORT_SYMBOL drivers/net/mii 0x9b327b5e mii_check_link +EXPORT_SYMBOL drivers/net/mii 0xb4f644ac mii_check_gmii_support +EXPORT_SYMBOL drivers/net/mii 0xc2d4d1f9 mii_nway_restart +EXPORT_SYMBOL drivers/net/mii 0xd367d5bd mii_ethtool_sset +EXPORT_SYMBOL drivers/net/mii 0xe4cb5b83 generic_mii_ioctl +EXPORT_SYMBOL drivers/net/pcs/pcs-lynx 0x393b7dbd lynx_pcs_destroy +EXPORT_SYMBOL drivers/net/pcs/pcs-lynx 0x6f109923 lynx_pcs_create +EXPORT_SYMBOL drivers/net/phy/bcm-phy-lib 0x86d6fe4a bcm54xx_auxctl_write +EXPORT_SYMBOL drivers/net/ppp/pppox 0x17730c77 register_pppox_proto +EXPORT_SYMBOL drivers/net/ppp/pppox 0x597f9c36 pppox_ioctl +EXPORT_SYMBOL drivers/net/ppp/pppox 0x7dc13755 pppox_compat_ioctl +EXPORT_SYMBOL drivers/net/ppp/pppox 0x9758c6f8 pppox_unbind_sock EXPORT_SYMBOL drivers/net/ppp/pppox 0xe0ff7a18 unregister_pppox_proto -EXPORT_SYMBOL drivers/net/sungem_phy 0xf5fb3b63 sungem_phy_probe -EXPORT_SYMBOL drivers/net/team/team 0x2ba1cfd5 team_modeop_port_enter -EXPORT_SYMBOL drivers/net/team/team 0x3408aa79 team_option_inst_set_change -EXPORT_SYMBOL drivers/net/team/team 0x3bf9d270 team_options_unregister -EXPORT_SYMBOL drivers/net/team/team 0x4496368d team_mode_unregister -EXPORT_SYMBOL drivers/net/team/team 0x462f4889 team_options_register -EXPORT_SYMBOL drivers/net/team/team 0x64072c3f team_mode_register -EXPORT_SYMBOL drivers/net/team/team 0xdaaff932 team_options_change_check -EXPORT_SYMBOL drivers/net/team/team 0xf78610ad team_modeop_port_change_dev_addr -EXPORT_SYMBOL drivers/net/usb/usbnet 0x59c56712 usbnet_device_suggests_idle -EXPORT_SYMBOL drivers/net/usb/usbnet 0x6c5ed768 usbnet_link_change -EXPORT_SYMBOL drivers/net/usb/usbnet 0xd08e370e usbnet_manage_power -EXPORT_SYMBOL drivers/net/wan/hdlc 0x15151634 unregister_hdlc_device -EXPORT_SYMBOL drivers/net/wan/hdlc 0x20525def attach_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0x45523590 hdlc_open -EXPORT_SYMBOL drivers/net/wan/hdlc 0x4f62278a hdlc_close -EXPORT_SYMBOL drivers/net/wan/hdlc 0x863be6be unregister_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0x90c35f7a hdlc_start_xmit -EXPORT_SYMBOL drivers/net/wan/hdlc 0x9c050c44 hdlc_ioctl -EXPORT_SYMBOL drivers/net/wan/hdlc 0xa6911f5c detach_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0xa83e0451 alloc_hdlcdev -EXPORT_SYMBOL drivers/net/wan/hdlc 0xb751cdb3 register_hdlc_protocol -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x027d84ce ath_printk -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x07045c95 ath_hw_get_listen_time -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x0982bf79 ath_hw_keysetmac +EXPORT_SYMBOL drivers/net/sungem_phy 0x8e705d29 sungem_phy_probe +EXPORT_SYMBOL drivers/net/team/team 0x18fac0e8 team_mode_unregister +EXPORT_SYMBOL drivers/net/team/team 0x1f5e28db team_options_unregister +EXPORT_SYMBOL drivers/net/team/team 0x2112952d team_modeop_port_enter +EXPORT_SYMBOL drivers/net/team/team 0x5bbf19ac team_modeop_port_change_dev_addr +EXPORT_SYMBOL drivers/net/team/team 0x8f5ceb67 team_option_inst_set_change +EXPORT_SYMBOL drivers/net/team/team 0xb1501522 team_options_register +EXPORT_SYMBOL drivers/net/team/team 0xef2a1849 team_mode_register +EXPORT_SYMBOL drivers/net/team/team 0xf9700dd3 team_options_change_check +EXPORT_SYMBOL drivers/net/usb/usbnet 0x3495a12b usbnet_device_suggests_idle +EXPORT_SYMBOL drivers/net/usb/usbnet 0xd0219664 usbnet_link_change +EXPORT_SYMBOL drivers/net/usb/usbnet 0xd91e017c usbnet_manage_power +EXPORT_SYMBOL drivers/net/wan/hdlc 0x2c472e63 hdlc_open +EXPORT_SYMBOL drivers/net/wan/hdlc 0x404cf14a hdlc_ioctl +EXPORT_SYMBOL drivers/net/wan/hdlc 0x43efdb04 register_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x43f94ccd detach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x4508e477 hdlc_close +EXPORT_SYMBOL drivers/net/wan/hdlc 0x53f53d27 alloc_hdlcdev +EXPORT_SYMBOL drivers/net/wan/hdlc 0x76112f5f hdlc_start_xmit +EXPORT_SYMBOL drivers/net/wan/hdlc 0x79d1869a attach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xca45b212 unregister_hdlc_device +EXPORT_SYMBOL drivers/net/wan/hdlc 0xd9be2959 unregister_hdlc_protocol EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x108b188f ath_is_49ghz_allowed -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x1d096765 ath_reg_notifier_apply -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x1d6889eb ath_hw_cycle_counters_update -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x2c7800ec ath_hw_setbssidmask -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x349feb91 ath_regd_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x3e950c06 ath_is_mybeacon +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x33fc2aa5 ath_hw_get_listen_time +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x344849fc ath_is_mybeacon +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x3645b66e ath_hw_cycle_counters_update +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x36629853 ath_key_config EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x4571aea8 ath_is_world_regd -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x82cfb344 ath_hw_keyreset +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x4eb7c0a2 dfs_pattern_detector_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x5894d999 ath_rxbuf_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x5ecba673 ath_hw_keyreset +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x7ee8d8a0 ath_regd_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x93969646 ath_key_delete +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x9f58aa15 ath_printk EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xa18f224e ath_regd_find_country_by_name -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xa33cd176 ath_rxbuf_alloc -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xb54650f2 ath_key_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xa35c180e ath_hw_keysetmac EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xb6588ba6 ath_bus_type_strings +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xb68e0f47 ath_hw_setbssidmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xc07020ba ath_reg_notifier_apply EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xf98605d5 ath_regd_get_band_ctl -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xfad53d74 ath_key_delete -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xfe93c7d1 dfs_pattern_detector_init EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x015e5db2 ath10k_debug_mask -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x02b1aae6 ath10k_htc_notify_tx_completion -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0329a6fe ath10k_core_destroy -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x05aa57c6 __ath10k_ce_rx_num_free_bufs -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x07fbe555 ath10k_htt_txrx_compl_task -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x08e53ccd ath10k_core_napi_sync_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0c045d92 ath10k_ce_num_free_src_entries -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0c73f5de ath10k_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0eb212bf ath10k_ce_cancel_send_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x11480193 ath10k_ce_rx_post_buf -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1186a1be ath10k_core_unregister -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x11da9c6d ath10k_core_free_board_files -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x157920d8 ath10k_ce_completed_recv_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1dc4afcb ath10k_ce_disable_interrupt -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1ff48ad7 ath10k_ce_free_rri -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2201f162 ath10k_core_start_recovery -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x290051ee ath10k_ce_per_engine_service -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2f4ea703 ath10k_warn -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x33cac26a ath10k_htc_process_trailer -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x40a469c1 ath10k_core_register -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x41f30275 ath10k_bmi_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4286a5e8 ath10k_core_create -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x45ea9450 ath10k_ce_deinit_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x46982738 ath10k_ce_alloc_rri -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x46b21898 ath10k_bmi_read_memory -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x48385f5c ath10k_core_stop -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x50bb8efb ath10k_htc_rx_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x52d5083a ath10k_htc_tx_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x544818e5 ath10k_ce_send_nolock -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x60306923 ath10k_ce_completed_send_next_nolock -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x73954b19 ath10k_coredump_new -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7f1211d9 ath10k_coredump_get_mem_layout -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x80c6ece7 ath10k_ce_revoke_recv_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x85b4970e ath10k_htt_hif_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x85dc498a ath10k_ce_send -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8d6f4daf ath10k_mac_tx_push_pending -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8e6147a3 ath10k_ce_rx_update_write_idx -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x915d6afd ath10k_core_fetch_board_file -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9a7ce6c6 ath10k_ce_alloc_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9ebbbd89 ath10k_ce_completed_send_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb8586b43 ath10k_htt_rx_hl_indication -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xbe7e83cc ath10k_ce_init_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc41425ff ath10k_htt_rx_pktlog_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc6eb6ea5 ath10k_ce_completed_recv_next_nolock -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xcafae5c0 ath10k_ce_enable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xcf7b3a0c ath10k_htt_t2h_msg_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd1ba1849 ath10k_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd2296531 ath10k_ce_dump_registers -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd24d1d1b __tracepoint_ath10k_log_dbg -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd71ad684 ath10k_core_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd91f3f31 ath10k_ce_per_engine_service_any -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd9c233d9 ath10k_ce_free_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xdc0c0ad9 ath10k_ce_enable_interrupt -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe10d1b70 __ath10k_ce_send_revert -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe5ae275f ath10k_core_check_dt -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xee5141cb ath10k_core_napi_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf3935fdb ath10k_print_driver_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf6262e2e ath10k_ce_disable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x141e44a7 ath11k_core_suspend -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x167ac7eb ath11k_dp_service_srng -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x1693dd55 ath11k_core_resume -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x1c413d9b ath11k_ce_get_shadow_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x285e9de7 ath11k_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x2c9e6a68 ath11k_ce_cleanup_pipes -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x304d7d09 ath11k_ce_rx_post_buf -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x577b3e0c ath11k_qmi_deinit_service -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x61716c12 ath11k_core_alloc -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x7204c94e ath11k_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x923a93c4 ath11k_core_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x96d13614 ath11k_core_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x085bb8b7 ath10k_ce_completed_recv_next_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1048644f ath10k_core_fetch_board_file +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x108da431 ath10k_ce_per_engine_service_any +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x188f33cf ath10k_ce_deinit_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1c75203c ath10k_ce_completed_send_next_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x22ff3116 ath10k_ce_free_rri +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2b8f654d ath10k_bmi_read_memory +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x315c4e4b ath10k_core_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3338cf97 ath10k_ce_init_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3c460091 ath10k_htc_process_trailer +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x40b99a6f ath10k_core_napi_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4f5b275f ath10k_htt_t2h_msg_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x54d8099f ath10k_print_driver_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x586a7bb2 ath10k_htc_tx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5a294433 ath10k_ce_revoke_recv_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5ed9e639 __tracepoint_ath10k_log_dbg +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x648b2b8b ath10k_htt_txrx_compl_task +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6b207ca5 ath10k_core_unregister +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x71bec424 ath10k_ce_num_free_src_entries +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x79ba150d ath10k_ce_enable_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7f26d561 ath10k_bmi_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x80d8a65f ath10k_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x88eeacf9 ath10k_core_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x89f5f1cd ath10k_ce_rx_post_buf +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8b006061 ath10k_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8e8fc78b ath10k_ce_rx_update_write_idx +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8ed1f45c ath10k_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x906a1913 ath10k_core_napi_sync_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x91762e5e ath10k_ce_send_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x925d8638 ath10k_core_check_dt +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x929397b2 ath10k_core_register +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x93bcb982 ath10k_ce_alloc_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9818c4a8 ath10k_htc_rx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9af70002 ath10k_coredump_new +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9d406742 ath10k_core_start_recovery +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9ff774a2 ath10k_coredump_get_mem_layout +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa4682f1b ath10k_htt_hif_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xabc5e436 ath10k_htt_rx_pktlog_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb1d85e0e ath10k_ce_disable_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb8ed3111 ath10k_ce_dump_registers +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb9f7bf2f ath10k_ce_completed_recv_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc8b8b010 ath10k_ce_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xcb825697 ath10k_ce_free_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd4ba1901 ath10k_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xdacb112c ath10k_htc_notify_tx_completion +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xdbc0d69f ath10k_mac_tx_push_pending +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xde975fd5 ath10k_ce_per_engine_service +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xdedbc758 ath10k_ce_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xdf24dc6a ath10k_ce_alloc_rri +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe1693cfc ath10k_htt_rx_hl_indication +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe5a30ef6 ath10k_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe83c906d ath10k_ce_completed_send_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xef8a78c5 ath10k_core_free_board_files +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf07c37bb ath10k_ce_send +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf3e4c029 __ath10k_ce_rx_num_free_bufs +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf8845dd2 __ath10k_ce_send_revert +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xfaec6a94 ath10k_ce_cancel_send_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x1794f75d ath11k_ce_per_engine_service +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x2471dde5 ath11k_core_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x2684320a ath11k_core_suspend +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x29ca06cc ath11k_core_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x2a685fd8 ath11k_dp_service_srng +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x3bfbbd0e ath11k_hal_srng_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x3e986a14 ath11k_ce_free_pipes +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x86693c63 ath11k_debugfs_soc_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x9368b441 ath11k_qmi_deinit_service +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x93ced48f ath11k_ce_get_attr_flags +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x94984dd0 ath11k_core_resume +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x962d1fc8 ath11k_ce_cleanup_pipes +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x9a2a22d0 ath11k_core_alloc EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x9c51bcc4 ath11k_debug_mask -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x9df5defc ath11k_hal_srng_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xb39c26f1 ath11k_ce_free_pipes -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xc030ba4f ath11k_debugfs_soc_destroy -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xc8cb61bb ath11k_core_pre_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xcffedb45 ath11k_ce_get_attr_flags -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xe2e4052e ath11k_ce_alloc_pipes -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xe889d336 ath11k_warn -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xecf39d4c ath11k_hal_srng_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x9fe1808c ath11k_ce_get_shadow_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xa1d5ced7 ath11k_ce_rx_post_buf +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xa47a1ff6 ath11k_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xaeb416cc ath11k_core_pre_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xb74d97b7 ath11k_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xc0bf9794 ath11k_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xc5947c42 ath11k_hal_srng_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xc70c73f9 ath11k_core_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xdecdeee9 ath11k_ce_alloc_pipes EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xf0197188 ath11k_cold_boot_cal -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xf22d4e95 ath11k_ce_per_engine_service -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xfae79886 ath11k_core_free -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x07e71467 ath6kl_stop_txrx -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x0f8f9623 ath6kl_cfg80211_resume -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x111672f0 ath6kl_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x114088cd ath6kl_stop_txrx EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x1354043d ath6kl_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x14b762aa ath6kl_core_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x1ab66250 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 0x35d5474d ath6kl_hif_intr_bh_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x5af66cc3 ath6kl_core_cleanup -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x6d847066 ath6kl_cfg80211_suspend +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x6cddb259 ath6kl_read_tgt_stats +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x83e9c356 ath6kl_cfg80211_resume +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x8e8d5540 ath6kl_hif_intr_bh_handler EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x91cfb84a ath6kl_hif_rw_comp_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x95fa9d39 ath6kl_core_rx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xa35d55c2 ath6kl_core_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xa37c625c ath6kl_read_tgt_stats -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xa8f54215 ath6kl_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xb14cc9f0 ath6kl_core_init EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xb881b1a9 ath6kl_printk EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xb9a689dd ath6kl_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xe246d988 ath6kl_core_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x009f37c5 ath9k_cmn_spectral_init_debug -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x00eba75b ath9k_cmn_process_rate -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x0121bd48 ath9k_cmn_update_txpow -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x07041b34 ath9k_cmn_setup_ht_cap -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x07ac8b04 ath9k_cmn_spectral_scan_trigger -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x08fad792 ath9k_cmn_rx_accept -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x0c4eeb85 ath9k_cmn_spectral_scan_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x0fe04c99 ath9k_cmn_beacon_config_adhoc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x152c368e ath9k_cmn_debug_recv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x447bf121 ath9k_cmn_beacon_config_sta -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x46726ea6 ath9k_cmn_debug_base_eeprom -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x61b9f163 ath9k_cmn_process_rssi -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x7df172b6 ath9k_cmn_debug_phy_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x841b3e19 ath9k_cmn_debug_modal_eeprom -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x84f47886 ath9k_cmn_init_crypto -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x85a6b646 ath9k_cmn_rx_skb_postprocess -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x9383ef7f ath9k_cmn_spectral_deinit_debug -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x9ccfb7bc ath_cmn_process_fft -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xa9688d08 ath9k_cmn_reload_chainmask -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xab99ec1f ath9k_cmn_beacon_config_ap +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xcecb794d ath6kl_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xdc2b4d1c ath6kl_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xe3e7ae9d ath6kl_core_rx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xfc925f8e ath6kl_cfg80211_suspend +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x0458294e ath9k_cmn_beacon_config_adhoc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x0f72af3e ath9k_cmn_debug_base_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x147bdbdf ath9k_cmn_process_rate +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x1c8b08df ath9k_cmn_get_channel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x49e879ed ath9k_cmn_setup_ht_cap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x4efee6f4 ath9k_cmn_spectral_scan_trigger +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x598df6ce ath9k_cmn_spectral_init_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x63ef5cb6 ath_cmn_process_fft +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x723be9a1 ath9k_cmn_spectral_deinit_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x76b804d8 ath9k_cmn_debug_phy_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x88ed44d2 ath9k_cmn_spectral_scan_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x988e0de7 ath9k_cmn_debug_recv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x9d44443e ath9k_cmn_rx_accept +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xa36b7995 ath9k_cmn_beacon_config_sta +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb02d0b7e ath9k_cmn_rx_skb_postprocess +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb0425b82 ath9k_cmn_get_hw_crypto_keytype +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb29fda99 ath9k_cmn_init_crypto EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb76fccc7 ath9k_cmn_debug_stat_rx -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xbfd05d2e ath9k_cmn_get_channel -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xc8e0c83d 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 0xfd26db79 ath9k_cmn_init_channels_rates -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x01214cdf ath9k_hw_btcoex_init_3wire -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x01d03828 ath9k_hw_numtxpending -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0356cf63 ath9k_hw_set_txpowerlimit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x07621ddb ath9k_hw_set_txq_props -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0a920188 ath9k_hw_reset_calvalid -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0c33e0ef ar9003_mci_state -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0c3f5341 ath9k_hw_write_associd -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0e354332 ath9k_hw_gpio_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd2f28774 ath9k_cmn_beacon_config_ap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd4af11ae ath9k_cmn_reload_chainmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xdd28053f ath9k_cmn_process_rssi +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xdfaebb23 ath9k_cmn_init_channels_rates +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xe0625163 ath9k_cmn_update_txpow +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xe37dd4eb ath9k_cmn_debug_modal_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x01e46ef4 ath9k_hw_rxprocdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x04786d66 ar9003_paprd_setup_gain_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x05a80d3b ath9k_hw_btcoex_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x081ab9ef ath9k_hw_name +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x085b247c ath9k_hw_abort_tx_dma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0b0c54fd ath9k_hw_ani_monitor +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0ba0ff09 ath9k_hw_setup_statusring +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0f15eb8d ath9k_hw_setpower EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0f77dafc ath9k_hw_get_tsf_offset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x11471aae ath9k_hw_btcoex_init_2wire -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x11fd8cab ath9k_hw_stop_dma_queue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x14bd8215 ath9k_hw_init_global_settings -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1703918c ath9k_hw_settsf64 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1983c32c ath9k_hw_btcoex_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1cde69ba ath9k_hw_check_alive -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1e477c28 ar9003_hw_bb_watchdog_dbg_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1f1e9081 ath9k_hw_btcoex_init_scheme -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2119d93d ath9k_hw_reset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x22e84dd9 ath9k_hw_gettxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x24603658 ath9k_hw_bstuck_nfcal -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2a8551e3 ath9k_hw_resettxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x315ddf5f ath9k_hw_btcoex_init_mci -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x33fbb69e ath9k_hw_getrxfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3568c4d8 ath9k_hw_setuprxdesc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x36e0e99f ath9k_hw_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x38f081d8 ath9k_hw_reset_tsf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3b2f1364 ath9k_hw_set_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3b507109 ar9003_paprd_populate_single_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x431ce6d1 ar9003_mci_get_interrupt -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x43d0ad57 ath9k_hw_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x444829ca ath9k_hw_set_tx_filter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x460a15bf ar9003_paprd_setup_gain_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x499978a3 ath9k_hw_computetxtime -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4c59a55c ath9k_hw_startpcureceive -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4e3ff6ed ar9003_paprd_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x50bd95c8 ath9k_hw_btcoex_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x51fe6202 ar9003_hw_disable_phy_restart -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x54072646 ath_gen_timer_isr -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5c58e353 ath9k_hw_abort_tx_dma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5fd9ebb5 ath9k_hw_wow_wakeup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x66030dd5 ath9k_hw_abortpcurecv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6679986e ar9003_mci_set_bt_version -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x66e797bd ath9k_hw_gen_timer_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x679045c7 ath9k_hw_getchan_noise -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x69bbc7d8 ath9k_hw_ani_monitor -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6b256d7b ar9003_paprd_create_curve -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6b5bf012 ath9k_hw_setup_statusring -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6daf8369 ath9k_hw_setrxfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6dcc2feb ath9k_hw_gen_timer_stop -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x701309f5 ath9k_hw_get_txq_props -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x716467d6 ath9k_hw_name -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x71e4421b ath9k_hw_btcoex_set_weight -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x73e413cd ath9k_hw_releasetxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7522e5c7 ath9k_hw_check_nav -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x75ab47d1 ath9k_hw_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x76d75e19 ath9k_hw_gettsf64 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x79ac4c5e ath9k_hw_btcoex_bt_stomp -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7ff90494 ath9k_hw_wow_apply_pattern -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x83f0403d ath9k_hw_setuptxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8549a237 ar9003_hw_bb_watchdog_check -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8c1b8754 ath9k_hw_setopmode -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9077599e ath9k_hw_setmcastfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x91ad48f0 ath9k_hw_set_sta_beacon_timers -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x937e13df ath9k_hw_enable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9ed86b35 ar9003_mci_get_next_gpm_offset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa12c2fcc ath9k_hw_resume_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa3774900 ath9k_hw_rxprocdesc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa59b4822 ar9003_paprd_is_done -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xac60e94d ath9k_hw_set_gpio -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaf1c54c5 ath9k_hw_beaconinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb3689af1 ath9k_hw_setantenna -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb3a4f64c ath9k_hw_wow_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb3d9bf86 ath9k_hw_updatetxtriglevel -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc01aec6f ath9k_hw_disable_mib_counters -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc406243e ath9k_hw_btcoex_set_concur_txprio -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc737a517 ath9k_hw_beaconq_setup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc7969d43 ar9003_mci_send_message -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc8e55ade ath9k_hw_gpio_get -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc91aeae4 ar9003_is_paprd_enabled -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc9994810 ar9003_mci_send_wlan_channels -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xca35746d ath_gen_timer_free -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcc4f838a ath9k_hw_puttxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xce947f4e ath9k_hw_phy_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd34aa470 ath9k_hw_set_rx_bufsize -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd3df202f ar9003_paprd_init_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd678f869 ath9k_hw_process_rxdesc_edma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd6e8ec56 ath9k_hw_disable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd8892250 ath9k_hw_getnf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd935073f ath9k_hw_setrxabort -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xda3b173e ath9k_hw_stopdmarecv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xda4a7516 ar9003_mci_setup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdb412118 ath9k_hw_txstart -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdc63f478 ath9k_hw_gpio_request_out -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdfd6c583 ath9k_hw_intrpend -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe07f2590 ath9k_hw_putrxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe0ee559f ath9k_hw_wait -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe141f832 ath9k_hw_addrxbuf_edma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe310f52c ath9k_hw_loadnf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe4720c72 ath9k_hw_set_tsfadjust -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe6dbef67 ath9k_hw_gettsf32 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe791fae5 ar9003_mci_cleanup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf20e34a6 ath_gen_timer_alloc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf79edfbf ath9k_hw_setpower -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf9aabeaa ath9k_hw_kill_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfb29b8f6 ar9003_get_pll_sqsum_dvc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfd37e227 ath9k_hw_init_btcoex_hw -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfda647e0 ath9k_hw_gpio_request_in -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xff9a5091 ath9k_hw_btcoex_deinit -EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x0f5c33d3 atmel_open -EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x1c504d41 init_atmel_card -EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x1e543cd2 stop_atmel_card +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x10861bf5 ath9k_hw_btcoex_set_weight +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x11b2b207 ath9k_hw_gpio_request_out +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x142234c8 ath9k_hw_btcoex_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x168b9924 ath9k_hw_wow_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1c2e0e02 ar9003_mci_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1c5cf235 ath9k_hw_puttxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1d2020c7 ath9k_hw_btcoex_init_mci +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1fe93ede ar9003_mci_set_bt_version +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x20e6847d ath_gen_timer_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x20f20cfc ath9k_hw_gettsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x26db8252 ath9k_hw_setrxabort +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2891a6a9 ath9k_hw_stopdmarecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2bb38fbf ath9k_hw_set_tsfadjust +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2c72e2f6 ath9k_hw_btcoex_init_2wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2ca3ff41 ar9003_is_paprd_enabled +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4622859b ath9k_hw_resettxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x47d49daa ath9k_hw_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x48fb95bb ath9k_hw_check_alive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x49497ef5 ar9003_hw_bb_watchdog_check +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4a2bc220 ar9003_paprd_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4ae99b24 ath9k_hw_resume_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5050f091 ath9k_hw_getchan_noise +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x514ffac2 ath9k_hw_setopmode +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x51b526fd ath9k_hw_set_txpowerlimit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x60df97b5 ath9k_hw_bstuck_nfcal +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x61b11357 ar9003_mci_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x631472d0 ath9k_hw_check_nav +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6bd4fcc5 ath9k_hw_btcoex_bt_stomp +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6e41a0c5 ath9k_hw_setmcastfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6f5f82e4 ath9k_hw_set_tx_filter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6f8e096a ath9k_hw_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x71e8002c ath9k_hw_btcoex_init_3wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x72140be2 ath9k_hw_computetxtime +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x72f040bb ath9k_hw_abortpcurecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x760ff2c2 ath9k_hw_btcoex_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x78c78271 ath9k_hw_putrxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7f1ddab0 ath9k_hw_loadnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x80034ce4 ath9k_hw_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x814baf93 ar9003_mci_send_wlan_channels +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8434d618 ath_gen_timer_isr +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x850206b6 ar9003_paprd_init_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x867ba549 ath9k_hw_txstart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x88055faf ath9k_hw_getrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x881c8ad2 ath9k_hw_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x884983ce ath9k_hw_reset_calvalid +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x88580b7d ath9k_hw_getnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x89c829ce ar9003_paprd_populate_single_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8ac5c60c ath9k_hw_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8b3ab63e ath9k_hw_releasetxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8ceb6506 ath9k_hw_stop_dma_queue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8d40bc9e ath9k_hw_gettsf32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8f6339e1 ath9k_hw_phy_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x900d68dc ath9k_hw_setantenna +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x92a00eb6 ar9003_paprd_is_done +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x93474ce2 ath9k_hw_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9491acf2 ath9k_hw_init_global_settings +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x95f8bb0a ath9k_hw_gen_timer_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9cb6c01e ath9k_hw_gpio_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9d45bf4b ath9k_hw_set_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa0d0af87 ath9k_hw_settsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa181ba46 ath9k_hw_get_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa5606a47 ath9k_hw_gpio_get +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa733a128 ath9k_hw_write_associd +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa85ff7fe ath9k_hw_gpio_request_in +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xac777eb6 ath_gen_timer_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xacf6cdfa ar9003_hw_disable_phy_restart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaebc8c7b ar9003_paprd_create_curve +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb08b29f6 ath9k_hw_set_rx_bufsize +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb2c36246 ar9003_mci_state +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb3971430 ath9k_hw_set_sta_beacon_timers +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb3bcc55b ath9k_hw_disable_mib_counters +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb5b258b6 ath9k_hw_set_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbb19a56b ath9k_hw_setuprxdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbf030474 ath9k_hw_setrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc2f357f1 ath9k_hw_kill_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc3ce8597 ath9k_hw_addrxbuf_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc45511b7 ath9k_hw_numtxpending +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xca1f569e ar9003_mci_send_message +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcc2c1d88 ath9k_hw_init_btcoex_hw +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcc90e108 ath9k_hw_wow_wakeup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd371efc5 ath9k_hw_btcoex_init_scheme +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd39bd39b ath9k_hw_setuptxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd66e9dab ath9k_hw_startpcureceive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd9780491 ath9k_hw_gettxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xda6bc6f0 ath9k_hw_gen_timer_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdcba8ee6 ath9k_hw_btcoex_set_concur_txprio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdfb7582c ath9k_hw_intrpend +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe0fc406a ath9k_hw_wow_apply_pattern +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe5d64829 ath9k_hw_beaconinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe79a9a77 ar9003_get_pll_sqsum_dvc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xeaac5f66 ath9k_hw_process_rxdesc_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xeaaf84d9 ath9k_hw_wait +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xee06ffc2 ath9k_hw_updatetxtriglevel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xee318f4d ar9003_mci_get_next_gpm_offset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf06bd818 ar9003_mci_get_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf1d376d9 ar9003_hw_bb_watchdog_dbg_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf5498cf3 ath9k_hw_reset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf598abbb ath9k_hw_set_gpio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xff37400b ath9k_hw_beaconq_setup +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x7f0b045f atmel_open +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0xb64f0291 init_atmel_card +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0xe15a5e82 stop_atmel_card +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x0ba21cb2 brcmu_pktq_peek_tail EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x1906648e brcmu_boardrev_str -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x23775dae brcmu_pktq_mlen -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x557ef3b4 brcmu_pktq_penq -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x6f729261 brcmu_pktq_pdeq_tail -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x76ce01da brcmu_pktq_pdeq -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x7c4c0370 brcmu_pktq_flush -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x907d66ce brcmu_pkt_buf_free_skb +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x34fc3eb7 brcmu_pktq_init +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x447c99a9 brcmu_pkt_buf_get_skb +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x67d40ece brcmu_pktq_pdeq_tail +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x8ae697e2 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 0xa198c5a6 brcmu_pktq_mdeq -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xaaafdea1 brcmu_pktq_pflush -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xc24321ac brcmu_pktq_init -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xd5ea6d12 brcmu_pktq_penq_head +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xa588a0a5 brcmu_pkt_buf_free_skb +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xb3a977e7 brcmu_pktq_pdeq_match +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xbfc30dc2 brcmu_pktq_pdeq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xc30e94b0 brcmu_pktq_flush EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xd6217d91 brcmu_d11_attach -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xdb846b5d brcmu_pktq_peek_tail -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xdbace5ce brcmu_pktq_pdeq_match -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xea264591 brcmu_pkt_buf_get_skb -EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0x5b6acefb reset_airo_card -EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0x861535de init_airo_card -EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0xbd81dea5 stop_airo_card -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x12b1f1d2 libipw_freq_to_channel -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x22e2f74f libipw_wx_set_encode -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x3065829a libipw_wx_get_encodeext -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x48269fec libipw_get_geo -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x5aa5b624 libipw_channel_to_index -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x6140c99c libipw_get_channel_flags -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x681006a5 libipw_wx_get_encode -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x7242bf89 libipw_set_geo -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x76895c8f libipw_wx_get_scan -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x775c0e9f libipw_xmit -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x8347a04d alloc_libipw -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x8acd055f libipw_is_valid_channel -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x8ae19924 libipw_rx_mgt -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xa5492505 libipw_channel_to_freq -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xb0072e34 libipw_rx -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xb9804081 libipw_txb_free -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xca04946a libipw_wx_set_encodeext -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xe7f43d0a libipw_get_channel -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xe9377418 libipw_networks_age -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xea4cd317 free_libipw -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x02d6b64d il_tx_queue_unmap -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0305fd97 il_setup_watchdog -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x06cf2d37 il_tx_cmd_protection -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x097c0f0c il_cmd_queue_unmap -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x09f5cab5 il_leds_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x09fda5ce il_setup_scan_deferred_work -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0b83592b il_force_reset -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0d01a1a9 il_read_targ_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x11280404 il_scan_cancel_timeout -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x12979cdd il_set_rxon_channel -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x13cd8b75 il_clear_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1785a973 il_set_rxon_ht -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1b2167d1 il_clear_ucode_stations -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1ee43154 il_set_rate -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1f39dbe1 il_get_channel_info -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1f67bbdb il_free_channel_map -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x241045fc il_set_flags_for_band -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x288dff36 il_rd_prph +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xee16666f brcmu_pktq_pflush +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xee221af3 brcmu_pktq_penq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xf6d9475e brcmu_pktq_penq_head +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xff169589 brcmu_pktq_mlen +EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0x1c0a241d reset_airo_card +EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0x5b74a2fb init_airo_card +EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0xb4aaa023 stop_airo_card +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x0ad845ff libipw_wx_get_scan +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x164221c7 libipw_get_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x241d62cb libipw_freq_to_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x256429c5 libipw_networks_age +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x29317bca libipw_set_geo +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x53b6e0a7 libipw_wx_get_encode +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x54d34d55 libipw_rx +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x60203101 libipw_txb_free +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x68069b71 libipw_wx_set_encodeext +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x73c3e72c alloc_libipw +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x81709005 libipw_get_channel_flags +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x82780742 libipw_wx_set_encode +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x84f51b1c libipw_is_valid_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x921db0f3 libipw_rx_mgt +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xaacc0377 libipw_wx_get_encodeext +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xd14e2c8a libipw_channel_to_freq +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xd8540dc9 free_libipw +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xd9d96700 libipw_get_geo +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xe6074def libipw_channel_to_index +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xf2398f0a libipw_xmit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x02019e6a il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x052454e4 il_force_reset +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0f1a07c7 il_send_stats_request +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x159c9bdf il_set_tx_power +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x16494843 il_tx_cmd_complete +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x194cda08 il_is_ht40_tx_allowed +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1a7921ac il_mac_change_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1e8c6494 il_mac_conf_tx +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x205504bb il_send_bt_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2151ee7c il_get_passive_dwell_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2a295070 il_fill_probe_req EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2bf7eea6 il_queue_space -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2cb8239b _il_poll_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x311acb67 il_free_txq_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x317e70a5 il_mac_flush -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x322e5e64 il_irq_handle_error -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3305b43b il_init_geos -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3543b8f3 il_get_free_ucode_key_idx -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x35533016 il_apm_stop -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x38cfaf7f il_scan_cancel -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3a3c9bc9 il_get_lowest_plcp -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3be37fa1 il_cmd_queue_free -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3bfab7c9 _il_apm_stop -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3c8249f5 il_get_passive_dwell_time -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3ff21449 il_power_initialize -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x411465e0 il_rx_queue_space +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2ceede11 il_check_rxon_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2d5c82cb il_mac_hw_scan +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2da48ba8 il_mac_remove_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2de57799 il_eeprom_query_addr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2e730f9a il_hdl_spectrum_measurement +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2ecdfba7 il_rx_queue_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x31abbd71 il_setup_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x33dde569 il_get_channel_info +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3bb49b75 il_usecs_to_beacons +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3d664a68 il_set_rxon_hwcrypto EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x416bd26a il_debug_level -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4729cd4c il_eeprom_query16 -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x477d978d il_set_tx_power -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4aba1edd il_update_stats -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4bd1382a il_send_cmd_sync -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x54b2b7e9 il_set_decrypted_flag -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x612010ab il_cancel_scan_deferred_work -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x61d227c9 il_apm_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x64dc98ad il_send_add_sta -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x67448605 il_send_rxon_timing -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x690f4ec6 il_eeprom_query_addr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x699bfd41 il_get_single_channel_number -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6d1c2539 il_dbgfs_register -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x71899d35 il_check_rxon_cmd -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x74794649 il_hdl_spectrum_measurement -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x753a17bb il_is_ht40_tx_allowed -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x76998ed6 il_leds_exit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x79e6112f il_write_targ_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7b5c01bc il_set_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7b9cbbe9 il_mac_add_interface -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7c888239 il_hdl_csa -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7e654c4d il_tx_queue_reset -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7f79fc29 il_send_cmd_pdu -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8454cb4e il_rx_queue_update_write_ptr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x86de580a il_rx_queue_alloc -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x89a9b9b0 il_restore_stations -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8aac0d96 il_tx_cmd_complete -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x916fdc1a il_send_lq_cmd -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x91b7a40b il_usecs_to_beacons -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x95cf9de3 il_wr_prph -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9af22df1 il_poll_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9b727637 il_send_cmd_pdu_async +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4264f336 il_mac_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x46f0ac3b il_chswitch_done +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x53528c9e il_alloc_txq_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5784d04a il_get_single_channel_number +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5842892f il_update_stats +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x596958b7 il_wr_prph +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5e2172ae il_tx_cmd_protection +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6144ef72 il_add_beacon_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x618adc99 il_hdl_error +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x63d9d99f il_irq_handle_error +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x651a4e08 _il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x65c7f283 il_eeprom_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x66294af6 il_get_active_dwell_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x679358e5 il_send_cmd_pdu_async +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6ae785f3 il_free_txq_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x701a620c il_full_rxon_required +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x714b1a9a il_mac_add_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x75f246e3 il_set_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x76d28c7f il_connection_init_rx_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7769c080 il_setup_watchdog +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7a735c75 il_free_channel_map +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7bb290b9 il_mac_sta_remove +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7ce8db2d il_mac_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x858b26c5 il_tx_queue_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8799958a il_clear_ucode_stations +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8bc3c357 il_cancel_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x91e7421f il_init_geos +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x92eab30a il_leds_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x943b85ad il_rd_prph EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9cc714af il_bg_watchdog -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9fd25c50 il_get_active_dwell_time -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa0792b66 il_send_stats_request -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa12da922 il_send_cmd -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa33e2db3 il_send_bt_config -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa4f9ee8c il_eeprom_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xaae967cb il_hdl_error -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xabec4f5f il_connection_init_rx_config -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xae44c1f6 il_setup_rx_scan_handlers -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xafbeb140 il_mac_sta_remove -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb1d97e3c il_mac_reset_tsf -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb2d3da57 il_init_scan_params -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb3a3dd6d il_eeprom_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9db713cb il_setup_rx_scan_handlers +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa01c5099 il_clear_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa209de6e il_set_rxon_channel +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa5caec32 il_init_scan_params +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa6d6cfd8 il_send_cmd_pdu +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa9b859fa il_free_geos +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xab76b2aa il_send_cmd_sync +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xaded77f0 il_scan_cancel_timeout +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xae88741b il_set_rate +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xaed2b4e9 il_read_targ_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xaeddbaa6 il_add_station_common +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xaf4534d6 il_hdl_csa +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb29ffd4c il_txq_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb307462f il_set_flags_for_band +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb42c25bf il_eeprom_query16 EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb65510a3 il_get_cmd_string -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb66f329c il_add_station_common +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb71c0f98 il_cmd_queue_unmap EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb7bd33ff il_isr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb7d86fbf il_mac_conf_tx -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbff230c8 il_mac_config -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc879fea9 il_set_rxon_hwcrypto -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xccb7abf8 il_tx_queue_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd0bae95b il_pm_ops -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd1bd3606 il_hdl_pm_debug_stats -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd208c74b il_init_channel_map -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd50ca1dd il_free_geos -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd6977c0f il_chswitch_done -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd7d855fa il_mac_remove_interface -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdb63fcb1 il_mac_hw_scan -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdd148cdb il_mac_bss_info_changed -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdf5a823a il_alloc_txq_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe145da39 il_add_beacon_time -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe5bb04a1 il_hdl_pm_sleep -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe7cf19bd il_fill_probe_req -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xea6f859c il_txq_update_write_ptr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xec2f7698 il_tx_queue_free -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xeff130bd il_power_update_mode -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf4e59528 il_dbgfs_unregister -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf59917cc il_mac_change_interface -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf5a8d48a il_full_rxon_required +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb9ff7dd7 _il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbdb82ab3 il_hdl_pm_sleep +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbf100c00 il_rx_queue_alloc +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbf9bd110 il_send_add_sta +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc07a05f3 il_tx_queue_reset +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc3b1099c il_eeprom_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc5efe350 il_set_rxon_ht +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc932cc5c il_set_decrypted_flag +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc98cbbbd il_mac_bss_info_changed +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc9b4cfa2 il_hdl_pm_debug_stats +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcafa0948 il_power_initialize +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcbba45c8 il_rx_queue_space +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcc6f555d il_dbgfs_register +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcd00a677 il_send_lq_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcd26afc9 il_init_channel_map +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcef166de il_mac_flush +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcf26a5a0 il_tx_queue_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd3dca4cf il_cmd_queue_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd736fa50 il_apm_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd7de2111 il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdd244bf7 il_dbgfs_unregister +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe1b20444 il_send_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe1f5c8be il_scan_cancel +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe6a5effe il_write_targ_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf2132f09 il_get_lowest_plcp +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf5623a1b il_pm_ops +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf6bed2cc il_tx_queue_unmap EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf70a693b il_bcast_addr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x00ddf6aa __traceiter_iwlwifi_dev_ucode_wrap_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x23329b9f __SCK__tp_func_iwlwifi_dev_ucode_cont_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2cf3fa24 __traceiter_iwlwifi_dev_ucode_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf74d4d39 il_send_rxon_timing +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfe1734c8 il_restore_stations +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfe7c20d5 il_get_free_ucode_key_idx +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfecc5198 il_power_update_mode +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xffc1ae66 il_leds_exit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x0e1f02ec __traceiter_iwlwifi_dev_ucode_cont_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2555fcda __SCK__tp_func_iwlwifi_dev_ucode_cont_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x30287bb3 __traceiter_iwlwifi_dev_ucode_wrap_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x376a7c68 __tracepoint_iwlwifi_dev_ucode_cont_event EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x38688d65 __SCT__tp_func_iwlwifi_dev_ucode_wrap_event EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x3a2a40a5 __SCT__tp_func_iwlwifi_dev_ucode_cont_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x567b2811 __tracepoint_iwlwifi_dev_ucode_cont_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x98c10806 __SCK__tp_func_iwlwifi_dev_ucode_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb4bee7a5 __SCK__tp_func_iwlwifi_dev_ucode_wrap_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc1f7542b __tracepoint_iwlwifi_dev_ucode_wrap_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc952c41e __traceiter_iwlwifi_dev_ucode_cont_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x55dd5fd1 __SCK__tp_func_iwlwifi_dev_ucode_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x9fe98b90 __traceiter_iwlwifi_dev_ucode_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa0e60052 __tracepoint_iwlwifi_dev_ucode_wrap_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa350b69b __tracepoint_iwlwifi_dev_ucode_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb2d980e0 __SCK__tp_func_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 0xef00ccd2 __tracepoint_iwlwifi_dev_ucode_event -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x1119ba36 hostap_init_ap_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x014ea9d0 hostap_set_string EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x13abdd5a hostap_dump_tx_header -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x160f4cb5 hostap_check_sta_fw_version -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x1ae2d0c4 hostap_80211_ops -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x29ecc9a7 hostap_get_porttype -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x32a3e459 hostap_setup_dev -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x368cc67f hostap_info_process -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x44f0faec hostap_set_hostapd -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x489e4d1c hostap_set_string -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x4cf83144 hostap_set_auth_algs -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x58593f7a hostap_handle_sta_tx_exc -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x5e55b3f6 hostap_set_roaming -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x623f29a9 hostap_master_start_xmit -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x62d4e80e hostap_set_hostapd_sta -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x68c74c81 hostap_info_init -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x73410bce hostap_remove_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x1f7ab3d5 hostap_check_sta_fw_version +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x20ffefde hostap_init_data +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x28b67367 hostap_80211_ops +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x2c6b1c09 hostap_set_auth_algs +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x30fc0393 hostap_info_init +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x3a7dc741 hostap_set_antsel +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x4174833e hostap_free_data +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x4c8b8ea0 hostap_add_interface EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x75934c58 hostap_set_multicast_list_queue -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x76c33f71 hostap_init_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x759fd4fc hostap_master_start_xmit +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x75ff07f2 hostap_remove_interface +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x793805c6 hostap_set_roaming +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7effe7cb hostap_set_encryption EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7fb75891 hostap_dump_rx_header -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x83580c3e prism2_update_comms_qual -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x89513dd5 hostap_80211_rx -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x8be2e779 hostap_set_encryption -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xa04c1d60 hostap_init_data +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x85edf7b2 hostap_info_process +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x948b4bb1 hostap_set_word +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xa31f8750 hostap_set_hostapd_sta +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xad8f29a2 hostap_handle_sta_tx_exc EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb4b77c8b hostap_80211_get_hdrlen -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xce322b10 hostap_free_data -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xd219d9cb hostap_add_interface -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xe2b1a474 hostap_set_word -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xe57861a9 hostap_set_antsel -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xf116ca94 hostap_remove_interface -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x02222445 orinoco_open -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x1333e1c1 orinoco_stop -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x182495ec orinoco_tx_timeout -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x26a44884 alloc_orinocodev -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x4e2f6fcf orinoco_if_del -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x6d379aeb free_orinocodev -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x754a8193 __orinoco_ev_rx -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x7a3991c8 orinoco_down -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x8b2815ec __orinoco_ev_info -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x9c0eff09 orinoco_init +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb5aa2384 hostap_init_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xbcaab32e hostap_get_porttype +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xda9f6104 hostap_80211_rx +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xe0304a57 hostap_set_hostapd +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xeba0c0ad hostap_remove_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xecd276da hostap_setup_dev +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xee6c0c8a hostap_init_ap_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xfe98c4f8 prism2_update_comms_qual +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x026b65ea __orinoco_ev_rx +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x14518c90 orinoco_stop +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x15f47969 orinoco_tx_timeout +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x16c3e64e orinoco_process_xmit_skb +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x39ff6414 alloc_orinocodev +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x3f8b7a55 orinoco_set_multicast_list +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x419b9b1c __orinoco_ev_info +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x6aadad1a orinoco_change_mtu +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x7de28aa9 orinoco_down +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x830867dc orinoco_if_del EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xa74c2dc5 hermes_struct_init -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xbc1a66a7 orinoco_set_multicast_list -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xec2d9955 orinoco_process_xmit_skb -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xef40f8b5 orinoco_if_add -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xf3258af2 orinoco_up -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xfb547268 orinoco_change_mtu +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xb5a6d422 orinoco_if_add +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xc317bd3f orinoco_up +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xe85172a5 orinoco_init +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xeab5c39a orinoco_open +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xf7318820 free_orinocodev EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xffe27bca orinoco_interrupt -EXPORT_SYMBOL drivers/net/wireless/mediatek/mt76/mt76 0xf1541e93 mt76_wcid_key_setup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0x857061a7 rtl_btc_get_ops_pointer -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x01757b09 _rtl92c_phy_init_bb_rf_register_definition -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x07bcf7b2 _rtl92c_phy_rf_serial_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0accd84b rtl92c_phy_set_io -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0c319b75 rtl92c_dm_init_edca_turbo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1e019bff _rtl92c_phy_fw_rf_serial_write -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2012849c rtl92c_phy_sw_chnl -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x20bea2f1 _rtl92c_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL drivers/net/wireless/mediatek/mt76/mt76 0x20ac2be0 mt76_wcid_key_setup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0x8db96709 rtl_btc_get_ops_pointer +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x07111343 rtl8192_phy_check_is_legal_rfpath +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0db47fdc rtl92c_phy_query_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x14e2dc97 rtl92c_fill_h2c_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x16171aa3 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 0x2708d856 rtl92c_bt_rssi_state_change -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x28aad3f2 rtl92c_fill_h2c_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x29208485 rtl92c_phy_query_bb_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2aac65f5 rtl92c_set_fw_pwrmode_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x33d40835 _rtl92c_phy_bb8192c_config_parafile -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x37ef7728 rtl92c_phy_set_bb_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3a44a986 rtl92c_set_fw_joinbss_report_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3f1eec9b rtl92c_phy_set_bw_mode -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x50898e42 rtl92c_dm_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x54df8717 rtl8192_phy_check_is_legal_rfpath -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5727adc1 rtl92c_phy_rf_config -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x66392a94 _rtl92c_phy_dbm_to_txpwr_idx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6837f783 rtl92c_phy_ap_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6dc2b7c8 rtl92ce_phy_set_rf_on -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x755a37bc rtl92c_dm_write_dig -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7b44b787 rtl92c_phy_update_txpower_dbm -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x95b8a0a2 _rtl92c_phy_rf_serial_write -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9670cd46 rtl92c_dm_bt_coexist -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa352bde2 rtl92c_dm_init_rate_adaptive_mask -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa41f05cb rtl92c_dm_rf_saving -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa4445954 rtl92c_set_fw_rsvdpagepkt -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb03bf092 rtl92c_phy_set_rfpath_switch -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb0b9c56f _rtl92c_phy_set_rf_sleep -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb0ebeb95 rtl92c_download_fw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb6f51165 rtl92c_phy_lc_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb79b298b rtl92c_phy_iq_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xbae1f5ce rtl92c_firmware_selfreset -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xbdee0a8a rtl92c_phy_sw_chnl_callback -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xbe6fcba0 rtl92c_phy_set_txpower_level -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xbf1fef62 _rtl92c_phy_fw_rf_serial_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc33ad5fa rtl92c_dm_watchdog -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd27703a6 rtl92c_dm_check_txpower_tracking -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd9f6681f _rtl92c_store_pwrindex_diffrate_offset -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xea2db45c rtl92c_phy_set_io_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x6946277d rtl_pci_disconnect -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xa5c5cab9 rtl_pci_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xce6a263c rtl_pci_resume -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xf37c21fd rtl_pci_suspend -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x36a6dc61 rtl_usb_resume -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x87c9a509 rtl_usb_suspend -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xd7507097 rtl_usb_disconnect -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xf1f6d11f rtl_usb_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x26d4ee73 rtl92c_phy_set_io +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2754963d rtl92c_phy_iq_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x30f903a2 rtl92c_dm_init_edca_turbo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x31e1eda7 rtl92c_dm_rf_saving +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x37217af9 rtl92c_dm_write_dig +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3d3c519d _rtl92c_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3facfdb9 rtl92c_firmware_selfreset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x43e1810d _rtl92c_phy_bb8192c_config_parafile +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4d551899 rtl92c_phy_sw_chnl_callback +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4da61490 _rtl92c_store_pwrindex_diffrate_offset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x52f1d7be rtl92c_set_fw_rsvdpagepkt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x61360954 rtl92c_phy_set_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6398349f rtl92c_dm_bt_coexist +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x65ed3f10 _rtl92c_phy_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6f72a529 rtl92c_dm_init_rate_adaptive_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7521ef30 rtl92c_download_fw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x76e92c9d rtl92c_phy_set_io_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7bbc0596 rtl92ce_phy_set_rf_on +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x82431266 rtl92c_phy_lc_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8756c649 _rtl92c_phy_dbm_to_txpwr_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x943f5308 rtl92c_phy_ap_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x94709167 rtl92c_dm_watchdog +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x958a2291 _rtl92c_phy_init_bb_rf_register_definition +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa558494a _rtl92c_phy_fw_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa797b8dc rtl92c_phy_sw_chnl +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb46aedbf rtl92c_phy_rf_config +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xbc718df2 _rtl92c_phy_fw_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xbe1f163d rtl92c_phy_set_bw_mode +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xbe35ce9e rtl92c_set_fw_pwrmode_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc1bf90d3 rtl92c_dm_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc68a3dea rtl92c_phy_set_rfpath_switch +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd5028aed rtl92c_phy_set_txpower_level +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xdcd234dc rtl92c_set_fw_joinbss_report_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe7f2daa0 _rtl92c_phy_set_rf_sleep +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe93145cc _rtl92c_phy_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xedd4dddc rtl92c_dm_check_txpower_tracking +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xff53c845 rtl92c_bt_rssi_state_change +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x8d63d261 rtl_pci_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x9acf695f rtl_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xb177231c rtl_pci_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xeb24a332 rtl_pci_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x08aa80e8 rtl_usb_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x8aa24076 rtl_usb_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xa2a9de6b rtl_usb_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xd00b709a rtl_usb_probe EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0b038e24 channel5g_80m -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0baa2a5e rtl_ps_disable_nic -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x19b0c33b rtl_cmd_send_packet +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0cf7a63e rtl_init_rfkill +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1017c2de rtl_bb_delay EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1b945315 rtl_addr_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1f44d05a rtl_dm_diginit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2e8025ce efuse_read_1byte +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x25e59f07 efuse_one_byte_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x29dc0f44 rtl_cam_add_one_entry EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x30a956d7 rtl_query_rxpwrpercentage -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3541587b rtl_cam_del_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x37972e9c rtl_cam_mark_invalid -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3f1323b5 efuse_shadow_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4d2f91d2 rtl_collect_scan_list -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x53380b1f rtl_ps_enable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x436b842e rtl_signal_scale_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x467de7ac rtl_ps_enable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4b3f6048 rtl_dm_diginit EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x54824f58 channel5g -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x65eebe40 rtl_c2hcmd_enqueue -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6a117ffa rtl_efuse_shadow_map_update -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6fbdf19a rtlwifi_rate_mapping -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x79ca3e13 rtl_hal_pwrseqcmdparsing -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7e0fbb61 rtl_mrate_idx_to_arfr_id -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7e558b83 rtl_init_rfkill -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8c2fe859 rtl_rx_ampdu_apply +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x74002459 rtl_rfreg_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7b88ac0e rtl_cam_reset_all_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x80f765e3 rtl_send_smps_action +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8da4a5a1 rtl_cam_mark_invalid EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8ea60059 rtl_fw_cb -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9c19c265 rtl_cam_get_free_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa32227e8 rtl_rfreg_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb1e6547a rtl_bb_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc6c15433 efuse_one_byte_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc9317c17 rtl_send_smps_action -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd6ce12be rtl_cam_add_one_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe8343e9a rtl_signal_scale_mapping -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe854e09d rtl_get_tcb_desc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9409fc07 rtl_mrate_idx_to_arfr_id +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x94562555 efuse_read_1byte +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x94a1d899 rtl_cam_delete_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x98ba54fc rtl_hal_pwrseqcmdparsing +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa5cf16fe rtl_collect_scan_list +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa96c64ee rtl_c2hcmd_enqueue +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xab607fe7 rtl_rx_ampdu_apply +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xabfb4bdf rtl_phy_scan_operation_backup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb093896d rtlwifi_rate_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbdfe1bf6 efuse_power_switch +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc061ac39 efuse_shadow_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc75eed57 rtl_cam_del_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xcdb74fda rtl_cam_empty_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd8905353 rtl_process_phyinfo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd9479399 rtl_efuse_shadow_map_update +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe4a4732a rtl_cmd_send_packet +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xead6665a rtl_cam_get_free_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xeb90c1ee rtl_ps_disable_nic EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xebedfe5f rtl_wowlan_fw_cb -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xec7b6c20 rtl_phy_scan_operation_backup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xed142ff5 rtl_cam_reset_all_entry EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xed7c8cf2 rtl_evm_db_to_percentage -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf7d0524d rtl_cam_delete_one_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xfa92d051 rtl_cam_empty_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xff3c67be efuse_power_switch -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xff45cd9d rtl_process_phyinfo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8723d 0xa321495c rtw8723d_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8821c 0x3ee13ed1 rtw8821c_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822b 0x48c133ee rtw8822b_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822c 0xa70358d0 rtw8822c_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x008a1609 rtw_bf_remove_bfee_su -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x01851bb7 rtw_coex_write_indirect_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x10013dca rtw_phy_write_rf_reg_mix -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x138d8469 rtw_phy_cfg_mac -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x15da5199 rtw_bf_phy_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x16dd80ab rtw_coex_write_scbd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x21175126 rtw_phy_read_rf_sipi -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x308c6adb rtw_core_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x30bc8ece rtw_fw_do_iqk -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x337ea98c rtw_phy_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xefc88177 rtl_get_tcb_desc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8723d 0xb36a5147 rtw8723d_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8821c 0x2eaa26ca rtw8821c_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822b 0x588a2bf5 rtw8822b_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822c 0xb74840cb rtw8822c_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x07137f69 rtw_fw_c2h_cmd_isr +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x106c1357 rtw_parse_tbl_bb_pg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x14f52cf1 rtw_bf_remove_bfee_su +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1d65225d check_hw_ready +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x2997fe1e rtw_restore_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x2bad3d10 rtw_bf_set_gid_table +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x2d76a0cf rtw_phy_parsing_cfo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x2f6286b7 rtw_phy_cfg_bb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x2fc7ba4c rtw_power_mode_change EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x33b3f3c0 rtw_debug_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x33ec02fb rtw_core_deinit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x348013c4 rtw_bf_remove_bfee_mu EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x36c5bfca rtw_disable_lps_deep_mode -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x3764dc63 rtw_fw_c2h_cmd_isr -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x38545b31 rtw_phy_pwrtrack_get_delta +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x3be57e3e rtw_register_hw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x40472f83 rtw_coex_write_scbd 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 0x46e871e8 rtw_unregister_hw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x48e56d9a rtw_restore_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x497e2104 rtw_tx_fill_tx_desc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x4a8c9d90 rtw_tx_write_data_rsvd_page_get -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x4f66b635 rtw_fw_inform_rfk_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x467cac0f rtw_phy_set_tx_power_level EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x519c8ba9 rtw_rate_size -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x52218f49 rtw_bf_remove_bfee_mu -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x532f3a5e rtw_bf_set_gid_table -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x53ea97b6 rtw_dump_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x57166588 rtw_phy_pwrtrack_get_pwridx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5355eefc rtw_rx_stats +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5757445a rtw_phy_cfg_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x57f794cc rtw_bf_phy_init EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x58210e60 rtw_rate_section -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x61900180 rtw_core_deinit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6527b7da rtw_parse_tbl_txpwr_lmt -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x68966c22 check_hw_ready -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6e038edf rtw_tx_write_data_h2c_get -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x75c645c5 rtw_rx_fill_rx_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x78561f18 rtw_phy_config_swing_table -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7cd3f054 rtw_coex_read_indirect_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7d368fea rtw_parse_tbl_bb_pg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7fd7903b rtw_phy_cfg_bb -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x850a7f7d rtw_phy_cfg_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x87df4a96 rtw_chip_info_setup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x95610e82 rtw_rx_stats -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9af2d860 rtw_tx_report_enqueue -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa08e0ab8 rtw_power_mode_change -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa3df9956 rtw_bf_enable_bfee_mu -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa5fed9cb rtw_bf_cfg_csi_rate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa81e2be1 rtw_phy_load_tables -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa8339dcc rtw_phy_pwrtrack_need_lck -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xad0c576c rtw_dump_fw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb286dd81 rtw_phy_pwrtrack_thermal_changed -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb83ce2a3 rtw_phy_pwrtrack_avg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb9a79ef3 rtw_phy_pwrtrack_need_iqk -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc8fb6e79 rtw_fw_c2h_cmd_rx_irqsafe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xcde00d28 rtw_register_hw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd66bc9b9 rtw_phy_cfg_agc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd6f70a03 __rtw_dbg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd8230733 rtw_set_channel_mac -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xde127233 rtw_read8_physical_efuse -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xdec19b4f rtw_phy_get_tx_power_index -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe2ad58f8 rtw_phy_set_tx_power_level -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe7d198c3 rtw_phy_read_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xeea48c13 rtw_phy_parsing_cfo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf4fac086 rtw_ops -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf840d705 rtw_bf_enable_bfee_su -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xfe7c3730 rtw_phy_write_rf_reg_sipi -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xff5ea054 rtw_parse_tbl_phy_cond -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x2377f9d4 rtw_pci_remove -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x950c0a00 rtw_pci_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0xc0e43b2b rtw_pm_ops -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0xcd811b79 rtw_pci_shutdown -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x05821411 rtw89_mac_set_err_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x0cc81565 __rtw89_debug -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x10769319 rtw89_phy_write_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x1237938b rtw89_core_napi_stop -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x13f73065 rtw89_core_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x293cf646 rtw89_ops -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x3b219979 rtw89_core_deinit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x44cc385a rtw89_core_napi_start -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x4a5bfd1b rtw89_core_rx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x5d1f5c22 rtw89_core_register -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x6785b51b rtw89_core_napi_deinit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x8435fccd rtw89_core_fill_txdesc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x96c3c993 rtw89_core_unregister -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xab811152 rtw89_core_napi_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xc8f58a19 rtw89_chip_info_setup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xcee691ba rtw89_phy_read_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xd9a2300e rtw89_core_query_rxdesc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe0469de6 rtw89_mac_get_err_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5a687833 rtw_phy_load_tables +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5d5e73ed rtw_read8_physical_efuse +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x611f0c8c rtw_parse_tbl_txpwr_lmt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x671209b0 rtw_bf_enable_bfee_mu +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x68e8281f rtw_phy_pwrtrack_need_iqk +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6afb74f8 rtw_coex_read_indirect_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6ee1d0d6 rtw_bf_enable_bfee_su +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6f13b9ae rtw_phy_cfg_mac +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6fa97bc5 rtw_tx_fill_tx_desc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x797a22ce rtw_tx_write_data_rsvd_page_get +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7a73e9e4 rtw_phy_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x8a56ba9a rtw_dump_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x8cccf895 rtw_chip_info_setup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x90992d5f rtw_set_channel_mac +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x90e14c0a rtw_unregister_hw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x93de86b9 rtw_phy_pwrtrack_avg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9583474a rtw_phy_read_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x95fc1e80 rtw_parse_tbl_phy_cond +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x961d3ff2 rtw_phy_write_rf_reg_sipi +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9d9f91aa rtw_phy_pwrtrack_need_lck +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9e481628 __rtw_dbg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa1616f0f rtw_phy_pwrtrack_thermal_changed +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa508ce48 rtw_coex_write_indirect_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa99d5340 rtw_phy_pwrtrack_get_pwridx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xae53a09b rtw_phy_pwrtrack_get_delta +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb12c48f2 rtw_phy_get_tx_power_index +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb66df29e rtw_tx_report_enqueue +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb7ceeeb8 rtw_phy_write_rf_reg_mix +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb84f3758 rtw_core_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xba761d97 rtw_rx_fill_rx_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xbae4ac50 rtw_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xbd71bbc5 rtw_fw_c2h_cmd_rx_irqsafe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xcf30bd7d rtw_phy_read_rf_sipi +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd0535f45 rtw_bf_cfg_csi_rate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xdb806bb2 rtw_fw_inform_rfk_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe9a122ed rtw_fw_do_iqk +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xeb22beab rtw_tx_write_data_h2c_get +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xec1d0a7d rtw_phy_config_swing_table +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf4669ed2 rtw_phy_cfg_agc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf65c42c6 rtw_dump_fw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0xa6ce4119 rtw_pci_shutdown +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0xb579d5f2 rtw_pci_remove +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0xb61da268 rtw_pm_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0xe9eaedaf rtw_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x0c41075e rtw89_phy_read_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x1083aa6a rtw89_core_deinit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x186aa903 rtw89_core_rx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x1d0c13f8 rtw89_core_napi_start +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x29c8a4b1 __rtw89_debug +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x383e72df rtw89_core_unregister +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x3a4b1f90 rtw89_core_napi_deinit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x3b4ef22f rtw89_core_query_rxdesc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x59cc4032 rtw89_core_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x62a91e55 rtw89_core_fill_txdesc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x75d4afe2 rtw89_chip_info_setup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x8f2c9f04 rtw89_mac_get_err_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x90d019c5 rtw89_core_register +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x9389495b rtw89_core_napi_stop +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x9f511df1 rtw89_phy_write_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xb51d78c5 rtw89_ser_notify +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xba5af7b2 rtw89_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xbe23aab7 rtw8852a_chip_info +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xdadf8e33 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 0xe8c2bd02 rtw8852a_chip_info -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xf64994c2 rtw89_ser_notify -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x7ee3a4c2 rtw89_pm_ops -EXPORT_SYMBOL drivers/net/wireless/rsi/rsi_91x 0xa107848c rsi_config_wowlan -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x057488eb wl12xx_is_dummy_packet -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x25d26949 wlcore_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xb18c16c1 wl1271_free_tx_id -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xcaf6aa67 wlcore_calc_packet_alignment -EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x556634e5 fdp_nci_remove -EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x8d396a64 fdp_nci_probe -EXPORT_SYMBOL drivers/nfc/microread/microread 0x00ee5fdf microread_probe -EXPORT_SYMBOL drivers/nfc/microread/microread 0x5f171cd4 microread_remove -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x91ccd594 nxp_nci_remove -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xc8aee46d nxp_nci_fw_recv_frame -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xe51c910a nxp_nci_probe -EXPORT_SYMBOL drivers/nfc/pn533/pn533 0x98574d74 pn533_recv_frame -EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x2c278d3b pn544_hci_remove -EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x3622ef82 pn544_hci_probe -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x2878924e s3fwrn5_recv_frame -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x5ec6bb24 s3fwrn5_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xf115a2da rtw89_mac_set_err_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x2c64e51d rtw89_pm_ops +EXPORT_SYMBOL drivers/net/wireless/rsi/rsi_91x 0xd201bdad rsi_config_wowlan +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x053bcfb8 wlcore_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x4c1c73ff wlcore_calc_packet_alignment +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x9feead8e wl1271_free_tx_id +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xc61ede5b wl12xx_is_dummy_packet +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x0c6b8fc8 fdp_nci_remove +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x701c3df9 fdp_nci_probe +EXPORT_SYMBOL drivers/nfc/microread/microread 0x1ab636b8 microread_remove +EXPORT_SYMBOL drivers/nfc/microread/microread 0x39f2cfee microread_probe +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x4408e8c9 nxp_nci_remove +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xcfe99776 nxp_nci_fw_recv_frame +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xf584eb7c nxp_nci_probe +EXPORT_SYMBOL drivers/nfc/pn533/pn533 0x32e2371b pn533_recv_frame +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x0c3f0e53 pn544_hci_remove +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x633b46e3 pn544_hci_probe +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x1ac960c0 s3fwrn5_probe +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x26e5ba0f s3fwrn5_recv_frame EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x774203fc s3fwrn5_phy_set_wake -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x88cb7cea s3fwrn5_phy_power_ctrl +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x8542c825 s3fwrn5_remove +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xd336b0f4 s3fwrn5_phy_power_ctrl EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xedb12f10 s3fwrn5_phy_set_mode -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xf059ff28 s3fwrn5_remove EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xf2ab60da s3fwrn5_phy_get_mode -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x09ce5f9c st_nci_se_deinit -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x326b970a st_nci_se_init -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x779ae5cd st_nci_vendor_cmds_init -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x7de950e8 ndlc_probe -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x82868c8b ndlc_open -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xc66bbe80 ndlc_recv -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xdc02c472 ndlc_close -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xecaa90a8 st_nci_se_io -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xef51f94f ndlc_remove -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xf1ba6feb ndlc_send -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x0bdd2b3a st21nfca_hci_enable_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x1316b8d4 st21nfca_connectivity_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x17d23687 st21nfca_se_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x24e7b3a3 st21nfca_dep_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x270fe759 st21nfca_tm_send_dep_res -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x2cac2ec1 st21nfca_hci_loopback_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x3a733c9b st21nfca_apdu_reader_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x3de7b32d st21nfca_hci_remove -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x5eed42d9 st21nfca_dep_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x744c20b2 st21nfca_hci_disable_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x768cc3d6 st21nfca_im_send_dep_req -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x8fbf5ea1 st21nfca_hci_probe -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x9c34a8f3 st21nfca_hci_se_io -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xb04276bc st21nfca_se_deinit -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xc01f16d9 st21nfca_im_send_atr_req -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xd153e854 st21nfca_vendor_cmds_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xdc78d380 st21nfca_dep_deinit -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xeaa959dc st21nfca_hci_discover_se -EXPORT_SYMBOL drivers/ntb/ntb 0x01c860fc ntb_msi_setup_mws -EXPORT_SYMBOL drivers/ntb/ntb 0x0540a36a ntbm_msi_free_irq -EXPORT_SYMBOL drivers/ntb/ntb 0x1628c588 ntb_msi_peer_trigger -EXPORT_SYMBOL drivers/ntb/ntb 0x182cd752 ntb_db_event -EXPORT_SYMBOL drivers/ntb/ntb 0x36301a27 ntbm_msi_request_threaded_irq -EXPORT_SYMBOL drivers/ntb/ntb 0x378bc70c ntb_link_event -EXPORT_SYMBOL drivers/ntb/ntb 0x558487b5 ntb_msi_clear_mws -EXPORT_SYMBOL drivers/ntb/ntb 0x63716edf ntb_unregister_device -EXPORT_SYMBOL drivers/ntb/ntb 0x81e4c156 ntb_default_peer_port_count -EXPORT_SYMBOL drivers/ntb/ntb 0x835a4696 ntb_default_peer_port_idx -EXPORT_SYMBOL drivers/ntb/ntb 0x91389fbf ntb_msi_init -EXPORT_SYMBOL drivers/ntb/ntb 0xa0c90b5e ntb_default_port_number -EXPORT_SYMBOL drivers/ntb/ntb 0xaf1019b9 ntb_clear_ctx -EXPORT_SYMBOL drivers/ntb/ntb 0xb0d7e62c __ntb_register_client -EXPORT_SYMBOL drivers/ntb/ntb 0xcd383340 ntb_msi_peer_addr -EXPORT_SYMBOL drivers/ntb/ntb 0xce9f5182 ntb_register_device -EXPORT_SYMBOL drivers/ntb/ntb 0xcf1c0d4a ntb_default_peer_port_number -EXPORT_SYMBOL drivers/ntb/ntb 0xdbdeba82 ntb_set_ctx -EXPORT_SYMBOL drivers/ntb/ntb 0xe047a95a ntb_msg_event -EXPORT_SYMBOL drivers/ntb/ntb 0xfe8a6c22 ntb_unregister_client -EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x301b3137 nvdimm_namespace_detach_btt -EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x4f4f72ae nvdimm_namespace_attach_btt -EXPORT_SYMBOL drivers/parport/parport 0x03d234d2 parport_claim -EXPORT_SYMBOL drivers/parport/parport 0x16386f8b parport_release -EXPORT_SYMBOL drivers/parport/parport 0x22ff2da5 parport_ieee1284_epp_read_addr -EXPORT_SYMBOL drivers/parport/parport 0x25d2a078 parport_ieee1284_epp_write_addr -EXPORT_SYMBOL drivers/parport/parport 0x26e03bd0 parport_remove_port -EXPORT_SYMBOL drivers/parport/parport 0x2f594ed4 parport_wait_peripheral -EXPORT_SYMBOL drivers/parport/parport 0x37284b39 __parport_register_driver -EXPORT_SYMBOL drivers/parport/parport 0x42e1eae9 parport_negotiate -EXPORT_SYMBOL drivers/parport/parport 0x441404cd parport_wait_event -EXPORT_SYMBOL drivers/parport/parport 0x44cdf355 parport_find_base -EXPORT_SYMBOL drivers/parport/parport 0x4ba76af2 parport_ieee1284_read_byte -EXPORT_SYMBOL drivers/parport/parport 0x4bfe21db parport_read +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x0a825b49 st_nci_se_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x2effeb68 ndlc_remove +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x3c343d83 ndlc_send +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x44f2d332 st_nci_se_deinit +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x48e2f0eb ndlc_recv +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x513f000f ndlc_open +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x654419ef st_nci_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x65a7d603 ndlc_close +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x68834197 st_nci_se_io +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x925581d2 ndlc_probe +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x070c83f9 st21nfca_tm_send_dep_res +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x2319b7ee st21nfca_dep_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x252b1062 st21nfca_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x2575c894 st21nfca_hci_discover_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x28a39e8c st21nfca_im_send_atr_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x42737e7e st21nfca_hci_remove +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x5cbaa189 st21nfca_im_send_dep_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x7cb8af91 st21nfca_hci_se_io +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x9a22347f st21nfca_hci_disable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xb82502a8 st21nfca_hci_loopback_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xbf3bbb91 st21nfca_hci_probe +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xc18fe44c st21nfca_se_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xe148c189 st21nfca_connectivity_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xe3967b0e st21nfca_apdu_reader_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xe7613f92 st21nfca_hci_enable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xe9a13479 st21nfca_se_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xeca1d08c st21nfca_dep_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xed011f8f st21nfca_dep_init +EXPORT_SYMBOL drivers/ntb/ntb 0x0d49dbf3 ntb_clear_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0x1d9d2566 __ntb_register_client +EXPORT_SYMBOL drivers/ntb/ntb 0x2c6a1cfa ntb_db_event +EXPORT_SYMBOL drivers/ntb/ntb 0x3a362dc6 ntb_default_peer_port_idx +EXPORT_SYMBOL drivers/ntb/ntb 0x44eb676e ntb_msg_event +EXPORT_SYMBOL drivers/ntb/ntb 0x493a9060 ntbm_msi_request_threaded_irq +EXPORT_SYMBOL drivers/ntb/ntb 0x4c88dfc1 ntbm_msi_free_irq +EXPORT_SYMBOL drivers/ntb/ntb 0x4d4a3ad2 ntb_default_peer_port_count +EXPORT_SYMBOL drivers/ntb/ntb 0x53b22092 ntb_msi_init +EXPORT_SYMBOL drivers/ntb/ntb 0x57415ab3 ntb_unregister_device +EXPORT_SYMBOL drivers/ntb/ntb 0x599664b1 ntb_unregister_client +EXPORT_SYMBOL drivers/ntb/ntb 0x5e4b331f ntb_msi_peer_trigger +EXPORT_SYMBOL drivers/ntb/ntb 0x78b05e1b ntb_msi_setup_mws +EXPORT_SYMBOL drivers/ntb/ntb 0x799441c1 ntb_set_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0x826dfaaf ntb_register_device +EXPORT_SYMBOL drivers/ntb/ntb 0x88ff3c62 ntb_link_event +EXPORT_SYMBOL drivers/ntb/ntb 0x96ca1208 ntb_msi_clear_mws +EXPORT_SYMBOL drivers/ntb/ntb 0x9c85b811 ntb_default_port_number +EXPORT_SYMBOL drivers/ntb/ntb 0xfa7c30aa ntb_msi_peer_addr +EXPORT_SYMBOL drivers/ntb/ntb 0xfceae7c1 ntb_default_peer_port_number +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x3896c0ad nvdimm_namespace_attach_btt +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x4b85b1f3 nvdimm_namespace_detach_btt +EXPORT_SYMBOL drivers/parport/parport 0x032a21de parport_ieee1284_epp_read_addr +EXPORT_SYMBOL drivers/parport/parport 0x0c5e90e6 parport_release +EXPORT_SYMBOL drivers/parport/parport 0x0e2a4b1f parport_write +EXPORT_SYMBOL drivers/parport/parport 0x0e8f9b9d parport_ieee1284_epp_read_data +EXPORT_SYMBOL drivers/parport/parport 0x0ff66341 parport_negotiate +EXPORT_SYMBOL drivers/parport/parport 0x110b70e7 parport_unregister_driver +EXPORT_SYMBOL drivers/parport/parport 0x135ebd60 parport_set_timeout +EXPORT_SYMBOL drivers/parport/parport 0x1b325507 parport_announce_port +EXPORT_SYMBOL drivers/parport/parport 0x1cc21d00 parport_ieee1284_epp_write_data +EXPORT_SYMBOL drivers/parport/parport 0x227f72f0 parport_claim_or_block +EXPORT_SYMBOL drivers/parport/parport 0x40cd05b5 parport_register_dev_model +EXPORT_SYMBOL drivers/parport/parport 0x411f05a0 __parport_register_driver +EXPORT_SYMBOL drivers/parport/parport 0x433a472b parport_get_port +EXPORT_SYMBOL drivers/parport/parport 0x455e7c5b parport_find_number +EXPORT_SYMBOL drivers/parport/parport 0x47afb60a parport_ieee1284_ecp_write_data EXPORT_SYMBOL drivers/parport/parport 0x4d2a941b parport_ieee1284_interrupt -EXPORT_SYMBOL drivers/parport/parport 0x52eebd08 parport_ieee1284_epp_read_data -EXPORT_SYMBOL drivers/parport/parport 0x599b7b77 parport_ieee1284_ecp_write_data -EXPORT_SYMBOL drivers/parport/parport 0x5a3af6bf parport_get_port EXPORT_SYMBOL drivers/parport/parport 0x5e3a3912 parport_irq_handler -EXPORT_SYMBOL drivers/parport/parport 0x5fd2262c parport_announce_port -EXPORT_SYMBOL drivers/parport/parport 0x63029aac parport_put_port -EXPORT_SYMBOL drivers/parport/parport 0x6b461e88 parport_claim_or_block -EXPORT_SYMBOL drivers/parport/parport 0x6e50a16a parport_register_port -EXPORT_SYMBOL drivers/parport/parport 0x74bf31d4 parport_ieee1284_read_nibble -EXPORT_SYMBOL drivers/parport/parport 0x7f295e97 parport_unregister_device -EXPORT_SYMBOL drivers/parport/parport 0x7f5d7e1c parport_ieee1284_write_compat -EXPORT_SYMBOL drivers/parport/parport 0x85ab67a4 parport_register_dev_model -EXPORT_SYMBOL drivers/parport/parport 0x914b06fd parport_ieee1284_ecp_write_addr -EXPORT_SYMBOL drivers/parport/parport 0xa34006d5 parport_del_port -EXPORT_SYMBOL drivers/parport/parport 0xb5ffdebe parport_find_number -EXPORT_SYMBOL drivers/parport/parport 0xc1f045b8 parport_unregister_driver -EXPORT_SYMBOL drivers/parport/parport 0xe63dac6d parport_set_timeout -EXPORT_SYMBOL drivers/parport/parport 0xed02ddf2 parport_ieee1284_epp_write_data -EXPORT_SYMBOL drivers/parport/parport 0xf246f2a8 parport_ieee1284_ecp_read_data -EXPORT_SYMBOL drivers/parport/parport 0xf2568869 parport_write -EXPORT_SYMBOL drivers/parport/parport_pc 0xdd6b03b9 parport_pc_unregister_port -EXPORT_SYMBOL drivers/parport/parport_pc 0xf99aa99e parport_pc_probe_port -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x1a02906a pcmcia_release_window -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x1b58c8dd pcmcia_fixup_iowidth -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x3a56ae67 pcmcia_read_config_byte -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x41b39f7b pcmcia_enable_device -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x4d0aa0b3 pcmcia_dev_present -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x5df65d3f pcmcia_request_io -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x7906d971 pcmcia_disable_device -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x7f4b5b31 pcmcia_get_tuple -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x8560dde6 pcmcia_map_mem_page -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x8f0e3725 pcmcia_request_irq -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x91c10536 pcmcia_loop_config -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xb2376ada pcmcia_unregister_driver -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xb403951f pcmcia_write_config_byte +EXPORT_SYMBOL drivers/parport/parport 0x6a9a3c7e parport_register_port +EXPORT_SYMBOL drivers/parport/parport 0x78a8b4ef parport_unregister_device +EXPORT_SYMBOL drivers/parport/parport 0x7ddfd23f parport_ieee1284_write_compat +EXPORT_SYMBOL drivers/parport/parport 0x830a7eba parport_read +EXPORT_SYMBOL drivers/parport/parport 0x8a0ef254 parport_del_port +EXPORT_SYMBOL drivers/parport/parport 0x8bb43096 parport_ieee1284_read_nibble +EXPORT_SYMBOL drivers/parport/parport 0xb948f0b0 parport_ieee1284_read_byte +EXPORT_SYMBOL drivers/parport/parport 0xba163d18 parport_ieee1284_ecp_read_data +EXPORT_SYMBOL drivers/parport/parport 0xbd140f13 parport_ieee1284_epp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0xc3f68102 parport_wait_peripheral +EXPORT_SYMBOL drivers/parport/parport 0xc5bd8801 parport_find_base +EXPORT_SYMBOL drivers/parport/parport 0xca72101f parport_remove_port +EXPORT_SYMBOL drivers/parport/parport 0xcd2454bb parport_put_port +EXPORT_SYMBOL drivers/parport/parport 0xd9f9bc65 parport_claim +EXPORT_SYMBOL drivers/parport/parport 0xe192dce2 parport_wait_event +EXPORT_SYMBOL drivers/parport/parport 0xe679a419 parport_ieee1284_ecp_write_addr +EXPORT_SYMBOL drivers/parport/parport_pc 0x2cd0e91a parport_pc_probe_port +EXPORT_SYMBOL drivers/parport/parport_pc 0xc06b2cee parport_pc_unregister_port +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x1044525b pcmcia_fixup_iowidth +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x2234afaa pcmcia_register_driver +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x2ecb5065 pcmcia_loop_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x35c85a53 pcmcia_unregister_driver +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x54177742 pcmcia_dev_present +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x570b8a21 pcmcia_enable_device +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x60abddc0 pcmcia_loop_config +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x6c5bf91d pcmcia_get_mac_from_cis +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x726d09e4 pcmcia_request_irq +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x750c37bc pcmcia_get_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x7ffa4f3f pcmcia_write_config_byte +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xa431620f pcmcia_request_window +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xa8b1de11 pcmcia_map_mem_page +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xaba30173 pcmcia_release_window +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xaf083d8f pcmcia_request_io +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xb7a13e89 pcmcia_fixup_vpp EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xbb312663 pcmcia_parse_tuple -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xc379e5da pcmcia_loop_tuple -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xcb9a3a23 pcmcia_get_mac_from_cis -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xdd809838 pcmcia_fixup_vpp -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xdf82ad2a pcmcia_register_driver -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xf6a87d9e pcmcia_request_window -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x20514105 pcmcia_parse_events +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xe0658aab pcmcia_read_config_byte +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xe5876ee1 pcmcia_disable_device +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x08610446 pcmcia_put_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x0cfe53d8 pcmcia_get_socket EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x212db8d2 pcmcia_socket_list -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x4ca0167b pcmcia_socket_class -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x66d0d563 pccard_register_pcmcia -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x7ffb547b pcmcia_put_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x89d2c9fc pcmcia_parse_uevents -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xa647a214 pcmcia_register_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xaaf4cdce pcmcia_get_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xc8031c78 pcmcia_unregister_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x2f67ad40 pcmcia_register_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x41d43644 pcmcia_parse_uevents +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x90e3da36 pcmcia_socket_class +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x98e44fd0 pcmcia_parse_events EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xcf97f3bd dead_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xd9480c24 pcmcia_get_socket_by_nr -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xf32bc615 pcmcia_reset_card +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xd5c6722c pcmcia_reset_card +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xd793cb8a pcmcia_unregister_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xe663515a pccard_register_pcmcia +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xe9ff8611 pcmcia_get_socket_by_nr EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xf942709b pcmcia_socket_list_rwsem -EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0x1e48c7de pccard_nonstatic_ops -EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0x689d4ae4 pccard_static_ops -EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x2210780c cros_ec_resume -EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x47edb7eb cros_ec_register -EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x77879ec6 cros_ec_suspend +EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0x78f89301 pccard_nonstatic_ops +EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0xe6365ee8 pccard_static_ops +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x009ac41a cros_ec_register +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x3344175d cros_ec_unregister +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x5cdbfebc cros_ec_suspend +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x7fdfca6d cros_ec_resume EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0xf25aacf5 cros_ec_irq_thread -EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0xfc68de06 cros_ec_unregister 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/chrome/cros_ec_lpcs 0xf5c87c59 cros_ec_lpc_mec_destroy 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 0x618841ce __wmi_driver_register -EXPORT_SYMBOL drivers/platform/x86/wmi 0x71092237 wmi_driver_unregister -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x222a813e rpmsg_trysend_offchannel -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x361ae99b rpmsg_find_device -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x4b3378d9 rpmsg_sendto -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x57ae81b3 rpmsg_send -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x59e3db5d rpmsg_unregister_device -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x75d904dd rpmsg_destroy_ept -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x7d16f474 unregister_rpmsg_driver -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x840c1e36 rpmsg_trysend -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x91ee65a8 __register_rpmsg_driver -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xa22eba24 rpmsg_register_device -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xb4f204e6 rpmsg_poll -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xb5139499 rpmsg_create_ept -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xc5bebdc9 rpmsg_create_channel -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xd3e940de rpmsg_trysendto -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xd8c85404 rpmsg_send_offchannel -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xf9ec93ec rpmsg_release_channel -EXPORT_SYMBOL drivers/rpmsg/rpmsg_ns 0x90d82227 rpmsg_ns_register_device -EXPORT_SYMBOL drivers/rtc/rtc-ds1685 0x203f0e07 ds1685_rtc_poweroff +EXPORT_SYMBOL drivers/platform/x86/wmi 0x5529b0a6 wmi_driver_unregister +EXPORT_SYMBOL drivers/platform/x86/wmi 0xbebd2225 __wmi_driver_register +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x121e70c1 rpmsg_create_ept +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x1a0f28e8 rpmsg_trysendto +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x2d9da4de rpmsg_register_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x46a350bc rpmsg_trysend_offchannel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x50057805 __register_rpmsg_driver +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x7ccfe50b rpmsg_unregister_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x8c303d15 rpmsg_sendto +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x9e664854 rpmsg_find_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xa40e5bda unregister_rpmsg_driver +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xa51e3998 rpmsg_send +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xa5e05406 rpmsg_release_channel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xad0682da rpmsg_trysend +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xb32625f7 rpmsg_poll +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xb38c4540 rpmsg_send_offchannel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xe40bb81e rpmsg_create_channel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xfe7c3992 rpmsg_destroy_ept +EXPORT_SYMBOL drivers/rpmsg/rpmsg_ns 0x0140ff75 rpmsg_ns_register_device +EXPORT_SYMBOL drivers/rtc/rtc-ds1685 0xf4348b8c ds1685_rtc_poweroff EXPORT_SYMBOL drivers/scsi/53c700 0x3d9cece0 NCR_700_intr -EXPORT_SYMBOL drivers/scsi/53c700 0x85ec9b1b NCR_700_detect -EXPORT_SYMBOL drivers/scsi/53c700 0x88cc9645 NCR_700_release -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x307a8934 scsi_esp_register +EXPORT_SYMBOL drivers/scsi/53c700 0x653ad601 NCR_700_release +EXPORT_SYMBOL drivers/scsi/53c700 0xf6a440be NCR_700_detect EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4a29ab38 scsi_esp_intr -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x60a9a974 scsi_esp_unregister -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x8ed99906 scsi_esp_cmd -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x99f8dfbe scsi_esp_template -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x1ad9b509 fcoe_ctlr_els_send -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x4312c90b fcoe_transport_detach -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x5cea15e7 fcoe_ctlr_link_up -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x5f9ccf14 fcoe_fcf_get_selected -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x7a3d72c7 fcoe_ctlr_set_fip_mode -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x84867064 fcoe_ctlr_recv_flogi -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x89bde2a6 fcoe_ctlr_destroy -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x97772942 fcoe_transport_attach -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x9a83d021 fcoe_ctlr_recv -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xb0e84ab7 fcoe_ctlr_link_down -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xfb7a5dc7 fcoe_ctlr_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0627b26d fc_disc_config -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x112967cf fc_exch_mgr_list_clone -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x11e32c27 fc_fcp_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x16494adf fc_lport_destroy -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x20538b68 fc_fcp_destroy +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x7306addb scsi_esp_unregister +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xb5740c70 scsi_esp_register +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xbda699be scsi_esp_template +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xfea346e4 scsi_esp_cmd +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x106472be fcoe_ctlr_recv +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x18909943 fcoe_ctlr_link_up +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x19f21122 fcoe_ctlr_destroy +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x9f30eb15 fcoe_transport_detach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xa9adbbff fcoe_ctlr_recv_flogi +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xb18cd873 fcoe_ctlr_init +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xde6895e6 fcoe_transport_attach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xe4812958 fcoe_ctlr_els_send +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xe8892e37 fcoe_ctlr_set_fip_mode +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xeffa9f57 fcoe_fcf_get_selected +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xfd7f318d fcoe_ctlr_link_down +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x00b42764 fc_exch_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x017df85c fc_lport_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x12e51a8f fc_fc4_deregister_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x133f893f fc_rport_terminate_io +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1f816a0c fc_slave_alloc EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22b90986 fc_exch_mgr_del -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x24f2a627 fc_queuecommand -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x258936be fc_fc4_deregister_provider -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x25a8b3d4 fc_vport_id_lookup -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2875162e fc_eh_abort +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x241fde22 fc_vport_id_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x26002ff9 fc_rport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x290e1493 fc_exch_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2bb2a96c fc_fc4_register_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2c0b66e8 fc_get_host_port_state EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2eccbfa6 fc_lport_flogi_resp -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x304f6241 fc_lport_set_local_id -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x364d619d fc_vport_setlink -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x391cf004 fc_linkup -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3ba8ce73 fc_fabric_logoff -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5932faa4 libfc_vport_create -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5c37dab4 fc_get_host_stats -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x64b52d21 fc_slave_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6503af32 fc_set_mfs +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3df487c8 fc_exch_seq_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3fc3521c fc_fabric_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x449ec781 fc_lport_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x48fd1c1b fc_linkdown +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4b038d46 fc_disc_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4c1199ee fc_fcp_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4f169417 fc_exch_mgr_free +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x503c4b0d fc_lport_bsg_request +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x55c5d27e fc_rport_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x55cf769d fc_lport_set_local_id +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x561ca4d5 fc_exch_mgr_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x58859752 libfc_vport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5f282980 fc_disc_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6c9dd2bf fc_set_mfs +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6d73d6a1 fc_get_host_speed +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x70ee39d2 fc_rport_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x71f6b5c7 fc_seq_send EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x731837c4 fc_lport_logo_resp -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x76e8755f fc_rport_recv_req -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7a230899 fc_rport_login -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7a454c5c fc_exch_mgr_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7d8662d0 fc_exch_recv -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7d9e6f59 fc_lport_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7dbeb3dd fc_rport_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x782955b4 fc_vport_setlink EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7f3407a7 fc_seq_start_next EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x80e34c44 fc_frame_alloc_fill EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x811811e0 fc_exch_done +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x821bfc7d fc_lport_recv EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8264d30a _fc_frame_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8459ebda fc_exch_update_stats -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x84af9c50 fc_eh_host_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8a1a8c02 fc_elsct_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9341e16e fc_get_host_speed -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x93903d22 fc_exch_mgr_free -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x977b95ba fc_rport_create -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9b9bda77 fc_lport_bsg_request +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x83aef497 fc_queuecommand +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x94c9718e fc_fabric_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x94d86660 fc_exch_update_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9a2a97dc fc_eh_host_reset EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9d50ed7e fc_rport_destroy -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9eac1eb4 fc_elsct_send -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9ff8e5ee fc_lport_recv -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa0aeb306 fc_fabric_login -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa173d836 fc_lport_reset EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa1bcd198 fc_cpu_mask -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa4d240fb fc_exch_mgr_add -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa4d2fa76 fc_exch_seq_send -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb0d146fd fc_set_rport_loss_tmo +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa3a0ce84 fc_get_host_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa6cc9ee0 fc_elsct_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa7652309 fc_eh_abort +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xabee0f59 fc_rport_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xac39ea1b fc_exch_mgr_reset EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb0ddd5a1 fc_rport_flush_queue -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb155c81b fc_fc4_register_provider -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb2bd02c3 fc_disc_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb2ca0308 fc_seq_assign EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb689cd32 fc_frame_crc_check -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb864159e fc_lport_config -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbaef9697 fc_eh_device_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbd3e7aa4 fc_lport_iterate +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbe5e0b13 fc_fcp_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbed1aa55 fc_lport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc04e6dcf fc_lport_iterate +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc0bda421 fc_exch_mgr_list_clone EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc2dd8cd4 fc_fill_reply_hdr -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xca6d63cb fc_exch_mgr_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd487312e fc_rport_terminate_io +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc34fbe14 fc_seq_assign +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc8219ffd fc_exch_mgr_add +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd1c075d5 fc_lport_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd6f244be fc_eh_device_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd7fbbb26 fc_set_rport_loss_tmo +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe160d6fb fc_elsct_init EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe3b928e9 fc_fill_hdr -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe4e6dae6 fc_linkdown EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe5cf06b5 fc_lport_notifier_head -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe7969840 fc_get_host_port_state -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf1923d2f fc_exch_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf8b7aa55 fc_seq_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xede9aa66 fc_rport_recv_req +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf5db4164 fc_linkup EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfa4667d1 fc_seq_release EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfeb5a73f fc_seq_set_resp -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfedc09b3 fc_rport_lookup -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x127465c9 sas_suspend_ha -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x13b639de sas_prep_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x4935d4d8 sas_suspend_ha EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x4a8e3d34 try_test_sas_gpio_gp_bit -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x51e20ca3 sas_resume_ha -EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x2cb057fb mraid_mm_register_adp +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x5e1b95b6 sas_prep_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xab65611f 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 0x29d27a32 qlt_free_cmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x3905c45d qlt_rdy_to_xfer -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x439685cd qlt_stop_phase2 -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x4407b4a4 qlt_xmit_response -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x5768f2bc qlt_abort_cmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x5e9f7ae9 qlt_free_mcmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x6e1b0e54 qlt_xmit_tm_rsp -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x9c32b664 qlt_lport_register -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xa59240c7 qlt_enable_vha -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xa7e35ff7 qlt_lport_deregister -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xce9e35a5 qlt_stop_phase1 -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xd8c8214e qlt_unreg_sess -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x06979e9f qlogicfas408_info +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0xb62aa00b mraid_mm_register_adp +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x1599ad14 qlt_free_mcmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x1b815be5 qlt_enable_vha +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x2aa1ae2d qlt_stop_phase2 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x443cb87d qlt_xmit_response +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x67f228fb qlt_abort_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x7d08b144 qlt_rdy_to_xfer +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x7eaf6693 qlt_stop_phase1 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x8d44bfd0 qlt_unreg_sess +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x9542bf39 qlt_lport_register +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xcfb4feb3 qlt_free_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xdfdc7274 qlt_lport_deregister +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xebff3b73 qlt_xmit_tm_rsp EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x1f55cd70 qlogicfas408_ihandl +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x34e6e397 qlogicfas408_info EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x3fd8cd71 qlogicfas408_detect -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x43527bc4 qlogicfas408_queuecommand -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x8ff17b3c qlogicfas408_biosparam -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xa29b1725 qlogicfas408_abort -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xcbe75a28 qlogicfas408_host_reset -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xdbe7bcc9 qlogicfas408_disable_ints +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x783991e9 qlogicfas408_abort +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x7fcbda9a qlogicfas408_disable_ints +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x881304ed qlogicfas408_biosparam +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xa8d6da62 qlogicfas408_host_reset +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xb0699b6b qlogicfas408_queuecommand EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xe76b3b20 qlogicfas408_get_chip_type EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xf2b95199 qlogicfas408_setup -EXPORT_SYMBOL drivers/scsi/raid_class 0x0287a377 raid_component_add -EXPORT_SYMBOL drivers/scsi/raid_class 0xddd22f21 raid_class_release -EXPORT_SYMBOL drivers/scsi/raid_class 0xf7d55708 raid_class_attach -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x0b42e81b fc_remote_port_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x148bc058 scsi_is_fc_rport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x352cb381 fc_find_rport_by_wwpn +EXPORT_SYMBOL drivers/scsi/raid_class 0x0fe7cfd9 raid_component_add +EXPORT_SYMBOL drivers/scsi/raid_class 0x665f5644 raid_class_release +EXPORT_SYMBOL drivers/scsi/raid_class 0xb0da1045 raid_class_attach +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x09c3ffe3 fc_block_scsi_eh +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x19b8ce4d fc_vport_terminate +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x21b12080 fc_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x32e4b240 fc_attach_transport EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x375f8bbd fc_get_event_number -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x43d1b0d7 fc_remote_port_rolechg -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x5838afd3 fc_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x593762fe fc_host_post_vendor_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x5aef2b1e fc_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x6c3a97c6 fc_host_post_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x73e088d6 fc_remote_port_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x802d2209 fc_eh_timed_out -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xb6f3558f fc_vport_create -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xbc28ddb9 fc_vport_terminate -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xc6899428 fc_block_rport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xcfe4b29e fc_host_fpin_rcv -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xdb48a101 fc_block_scsi_eh -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xdc6126c3 fc_remove_host -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xf925e0b7 fc_host_post_fc_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x029f34ed sas_end_device_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x122ea3d7 sas_rphy_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1300b2e5 sas_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1639db69 sas_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x19517237 sas_port_get_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x263b052b sas_port_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x33785d1a scsi_is_sas_port -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x345f74ef sas_phy_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3b77a62d sas_port_add_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3bb477a0 sas_phy_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x43316901 sas_port_mark_backlink -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4c950562 sas_port_delete_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x51ce3e05 scsi_is_sas_rphy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x56d72187 sas_rphy_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6853c200 sas_get_address -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x690ac527 sas_remove_host -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7d22fc4d sas_read_port_mode_page -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8513aa27 sas_port_alloc_num -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8e316a89 sas_port_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa8772fca sas_expander_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb4176735 scsi_is_sas_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd672586f sas_phy_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xdbf696ba sas_rphy_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xdd1956d8 sas_rphy_remove -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe12e2436 sas_port_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe5a2c20a sas_remove_children -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe87d972c sas_rphy_unlink -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf006d761 sas_port_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xfe26d4b8 sas_phy_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x0191c02a spi_dv_device -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x17cbb584 spi_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x3847072b fc_block_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x3f3e852d fc_host_post_vendor_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x5d65a6b5 fc_vport_create +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x717b4c2e fc_remote_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7da65ce7 scsi_is_fc_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x93c5ea00 fc_host_fpin_rcv +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x974ed72d fc_eh_timed_out +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xb3d8dae4 fc_remote_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xbff26ebc fc_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xd8853bd0 fc_find_rport_by_wwpn +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xdc0c627e fc_host_post_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xe3973db3 fc_remote_port_rolechg +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xf3c1ce8a fc_host_post_fc_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x01b20723 sas_port_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x04f6feed sas_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x055cb6fd sas_phy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0c539026 scsi_is_sas_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x140dba3c sas_port_alloc_num +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1627c14a sas_rphy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1942a29f sas_rphy_remove +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x258de957 sas_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x27b55f7e sas_port_add_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3b297091 sas_end_device_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x44879d81 sas_port_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x480fa83c sas_port_mark_backlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x53cfb2a1 sas_port_delete_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5d8eb21e sas_phy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5fc6a45e sas_read_port_mode_page +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x70ec91a0 sas_get_address +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x75497115 sas_expander_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x88ad4b54 sas_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8d15e2de sas_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x905cc7e5 sas_rphy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x97b01fff sas_port_get_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa172f46c scsi_is_sas_rphy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc3f6cd1c sas_phy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc6f8f6bd scsi_is_sas_port +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd2050339 sas_rphy_unlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xdd7d2597 sas_rphy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xea1053dd sas_remove_children +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf51b1a63 sas_phy_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf5a45aa4 sas_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x02ebc966 spi_dv_device EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x91ac19a5 spi_schedule_dv_device -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xa9ae3e98 spi_display_xfer_agreement -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xcc4b5ba6 spi_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x84f179ca spi_display_xfer_agreement +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x9c693dfa spi_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xabd670fa spi_schedule_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xc46d83c0 spi_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x28f54184 srp_rport_put +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x3eb225e5 srp_rport_get EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x405b6e05 srp_parse_tmo -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x4b1b05c6 srp_rport_put -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x508fb142 srp_reconnect_rport -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xb81464e9 srp_timed_out -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xc323b1a2 srp_rport_get -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xf47d5376 srp_start_tl_fail_timers -EXPORT_SYMBOL drivers/scsi/ufs/tc-dwc-g210 0x0f8ff94b tc_dwc_g210_config_20_bit -EXPORT_SYMBOL drivers/scsi/ufs/tc-dwc-g210 0x11eba4dc tc_dwc_g210_config_40_bit -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x35659749 ufshcd_system_suspend -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x4330270b ufshcd_system_resume -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x49d76739 ufshcd_alloc_host -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x775b7e32 ufshcd_map_desc_id_to_length -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x7db9be40 ufshcd_get_local_unipro_ver -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x96c00c34 ufshcd_shutdown -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0xdaa3f5fa ufshcd_runtime_resume -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0xff46c611 ufshcd_runtime_suspend -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-dwc 0x2f9eca02 ufshcd_dwc_dme_set_attrs -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-dwc 0xb37434ae ufshcd_dwc_link_startup_notify -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x0de76769 qmi_send_response +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x47f781d8 srp_timed_out +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x4827ec5a srp_start_tl_fail_timers +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xbbb09d11 srp_reconnect_rport +EXPORT_SYMBOL drivers/scsi/ufs/tc-dwc-g210 0x243966e1 tc_dwc_g210_config_40_bit +EXPORT_SYMBOL drivers/scsi/ufs/tc-dwc-g210 0x282f2025 tc_dwc_g210_config_20_bit +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x0a737338 ufshcd_system_suspend +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x1b5442e1 ufshcd_system_resume +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x43664981 ufshcd_shutdown +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x50563dd9 ufshcd_map_desc_id_to_length +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0xb24b872c ufshcd_runtime_resume +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0xc1fd9201 ufshcd_alloc_host +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0xd60809f2 ufshcd_get_local_unipro_ver +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0xef0fd2f0 ufshcd_runtime_suspend +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-dwc 0x03a1fae4 ufshcd_dwc_dme_set_attrs +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-dwc 0x7960def0 ufshcd_dwc_link_startup_notify EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x0ef12cc9 qmi_encode_message EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x21ce5888 qmi_response_type_v01_ei -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x428e7728 qmi_handle_init -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x5db13784 qmi_handle_release -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x65e90aeb qmi_send_request +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x2fc07153 qmi_send_request +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x535c66c0 qmi_txn_init +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x5f52caa1 qmi_handle_release EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x68772745 qmi_decode_message -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x71858105 qmi_add_lookup -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x8c995df4 qmi_txn_wait -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xa843faa7 qmi_txn_cancel -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xb0406ae1 qmi_txn_init -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xe8fde15c qmi_add_server -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xf0d9681a qmi_send_indication -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x0024d9ab sdw_update -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x00732d4b sdw_stream_add_master -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x02e129de sdw_bread_no_pm_unlocked -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x05f1c4cf sdw_read -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x0aceee9b sdw_slave_read_prop -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x10d1ae8c sdw_compare_devid -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x15475075 sdw_bwrite_no_pm_unlocked +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xaf106436 qmi_send_response +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xd0d9648d qmi_txn_wait +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xdac41529 qmi_txn_cancel +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xe41c7252 qmi_add_server +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xf24d4f34 qmi_handle_init +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xf31c08e1 qmi_add_lookup +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xfbc39b8f qmi_send_indication +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x03a253fb sdw_nread +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x0d81a747 sdw_update_no_pm +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x0f16edc3 sdw_bread_no_pm_unlocked +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x12ceee97 sdw_stream_remove_slave EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x16d1706b sdw_prepare_stream EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x1deee061 sdw_find_row_index -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x3875ec39 sdw_slave_add +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x290ea594 sdw_read EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x3b0a8582 sdw_startup_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x4cbdc470 sdw_bus_clk_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x3b4c54bb sdw_bus_prep_clk_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x3ebb6764 sdw_handle_slave_status +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x3ee79567 sdw_read_no_pm +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x3f85ef89 sdw_master_read_prop EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x4cde88bf sdw_disable_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x4d85b47d sdw_clear_slave_status -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x50e416a3 sdw_stream_add_slave +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x5970d389 sdw_stream_remove_master +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x5fa33b7b sdw_write EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x60e31fbb sdw_find_col_index -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x63fc08ee sdw_stream_remove_slave -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x646f3d1f sdw_stream_remove_master -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x664ff094 sdw_bus_master_delete +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x69da8f32 sdw_bus_master_delete EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x6f95b16b sdw_shutdown_stream EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x71891d59 sdw_deprepare_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x7f85cbb4 sdw_read_no_pm -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x8006b5e5 sdw_master_read_prop -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x8492833d sdw_bus_prep_clk_stop -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x88c7a306 sdw_update_no_pm -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x8c7676a4 sdw_handle_slave_status -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x8cff2294 sdw_bus_exit_clk_stop -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x94dfac4b sdw_write_no_pm +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x772f1621 sdw_nwrite +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x7b6c980a sdw_slave_add +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x82d5c5d5 sdw_slave_read_prop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x8416ee27 sdw_write_no_pm +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x9722e532 sdw_bwrite_no_pm_unlocked EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x9e122d79 sdw_alloc_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xb7e3aff9 sdw_extract_slave_id -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xb82b3156 sdw_bus_master_add +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x9f299b5e sdw_bus_exit_clk_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xaf462b2a sdw_stream_add_master +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xb198057a sdw_bus_master_add +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xb5e07ad1 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 0xc6dd1895 sdw_update +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xd82a0b8b sdw_compare_devid EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xda5bce09 sdw_release_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xdb6d2ac0 sdw_nwrite -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xe83b34f4 sdw_write +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xe4adc376 sdw_stream_add_slave +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xe9193f00 sdw_extract_slave_id EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xf53ba0b8 sdw_rows -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xfb6a21b4 sdw_nread -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x039b8b8f sdw_cdns_clock_stop -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x16784081 sdw_cdns_pdi_init -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x1bf08d09 cdns_set_sdw_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x22811ce7 sdw_cdns_enable_interrupt -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x25f3ebe7 cdns_bus_conf -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x2abd1efd cdns_xfer_msg +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xfca504ea sdw_bus_clk_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x168f2449 sdw_cdns_alloc_pdi +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x2b4e707c sdw_cdns_pdi_init EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x34712074 sdw_cdns_irq -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x5c4bffc5 sdw_cdns_clock_restart -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x5cc10a65 sdw_cdns_config_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x73413210 cdns_reset_page_addr -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x9ce47164 sdw_cdns_check_self_clearing_bits -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x9db3f18b sdw_cdns_is_clock_stop -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xb07feccc cdns_xfer_msg_defer -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xb4f4ac90 sdw_cdns_alloc_pdi -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xb80183ee sdw_cdns_probe -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xf2042eab sdw_cdns_exit_reset -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xfce54c55 sdw_cdns_init -EXPORT_SYMBOL drivers/soundwire/soundwire-generic-allocation 0x31685341 sdw_compute_params -EXPORT_SYMBOL drivers/ssb/ssb 0x13d30958 ssb_device_is_enabled -EXPORT_SYMBOL drivers/ssb/ssb 0x18548d91 ssb_device_disable -EXPORT_SYMBOL drivers/ssb/ssb 0x2686e50e ssb_driver_unregister -EXPORT_SYMBOL drivers/ssb/ssb 0x45543ec6 ssb_clockspeed -EXPORT_SYMBOL drivers/ssb/ssb 0x4885edbb __ssb_driver_register -EXPORT_SYMBOL drivers/ssb/ssb 0x4c126439 ssb_bus_powerup -EXPORT_SYMBOL drivers/ssb/ssb 0x50fb3bb8 ssb_pcicore_dev_irqvecs_enable -EXPORT_SYMBOL drivers/ssb/ssb 0x6337c124 ssb_pcihost_register -EXPORT_SYMBOL drivers/ssb/ssb 0x6a67f686 ssb_pmu_set_ldo_voltage -EXPORT_SYMBOL drivers/ssb/ssb 0x7058289b ssb_bus_resume -EXPORT_SYMBOL drivers/ssb/ssb 0x744adae8 ssb_bus_unregister -EXPORT_SYMBOL drivers/ssb/ssb 0x854dbcec ssb_bus_suspend -EXPORT_SYMBOL drivers/ssb/ssb 0x9d66bfd1 ssb_bus_may_powerdown -EXPORT_SYMBOL drivers/ssb/ssb 0xb2c02e3f ssb_set_devtypedata -EXPORT_SYMBOL drivers/ssb/ssb 0xb47d035d ssb_commit_settings -EXPORT_SYMBOL drivers/ssb/ssb 0xb689b65d ssb_bus_sdiobus_register -EXPORT_SYMBOL drivers/ssb/ssb 0xbbf04c99 ssb_dma_translation +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x3db49cf5 cdns_reset_page_addr +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x441fbe8e sdw_cdns_exit_reset +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x49591e07 cdns_bus_conf +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x55d73013 sdw_cdns_enable_interrupt +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x5981e73c sdw_cdns_check_self_clearing_bits +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x7bc47329 cdns_set_sdw_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x86edbc12 sdw_cdns_config_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xa9681ab9 sdw_cdns_is_clock_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xb560565f sdw_cdns_clock_restart +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xc009c807 sdw_cdns_init +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xcbe7d149 sdw_cdns_probe +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xdf335312 sdw_cdns_clock_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xefdb93e6 cdns_xfer_msg_defer +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xf3ebebfb cdns_xfer_msg +EXPORT_SYMBOL drivers/soundwire/soundwire-generic-allocation 0x8add9b94 sdw_compute_params +EXPORT_SYMBOL drivers/ssb/ssb 0x09d2e882 ssb_pcicore_dev_irqvecs_enable +EXPORT_SYMBOL drivers/ssb/ssb 0x1cf5b209 ssb_device_disable +EXPORT_SYMBOL drivers/ssb/ssb 0x26a4cd19 ssb_device_is_enabled +EXPORT_SYMBOL drivers/ssb/ssb 0x3424217a ssb_dma_translation +EXPORT_SYMBOL drivers/ssb/ssb 0x3b32a7b3 ssb_pmu_set_ldo_paref +EXPORT_SYMBOL drivers/ssb/ssb 0x3beadb4e ssb_bus_powerup +EXPORT_SYMBOL drivers/ssb/ssb 0x4868df3f ssb_set_devtypedata +EXPORT_SYMBOL drivers/ssb/ssb 0x88b7f8aa ssb_pcihost_register +EXPORT_SYMBOL drivers/ssb/ssb 0x8c925cd8 ssb_driver_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0x9b1f941e ssb_bus_suspend +EXPORT_SYMBOL drivers/ssb/ssb 0xae9cb05c ssb_bus_resume +EXPORT_SYMBOL drivers/ssb/ssb 0xb5f1ea0d ssb_chipco_gpio_control +EXPORT_SYMBOL drivers/ssb/ssb 0xb65b65c3 ssb_pmu_set_ldo_voltage +EXPORT_SYMBOL drivers/ssb/ssb 0xc03315a7 ssb_commit_settings +EXPORT_SYMBOL drivers/ssb/ssb 0xc2f4843c ssb_bus_unregister EXPORT_SYMBOL drivers/ssb/ssb 0xcb17f1cb ssb_admatch_base -EXPORT_SYMBOL drivers/ssb/ssb 0xde1fca7f ssb_device_enable +EXPORT_SYMBOL drivers/ssb/ssb 0xd1dc2217 ssb_bus_may_powerdown EXPORT_SYMBOL drivers/ssb/ssb 0xdfc7c6ef ssb_admatch_size -EXPORT_SYMBOL drivers/ssb/ssb 0xf5e93344 ssb_chipco_gpio_control -EXPORT_SYMBOL drivers/ssb/ssb 0xf8c75310 ssb_pmu_set_ldo_paref -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x01b9c1bd fbtft_write_vmem16_bus9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x05825026 fbtft_write_vmem8_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x174cf610 fbtft_write_buf_dc -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x17a0228d fbtft_remove_common -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x2185ff6d fbtft_write_vmem16_bus16 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x382578eb fbtft_write_gpio16_wr_latched -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x38ad37ea fbtft_write_gpio16_wr -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x3c64c355 fbtft_framebuffer_alloc -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x46a8f8c4 fbtft_unregister_backlight -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x4fcf2bbf fbtft_probe_common -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x7ab29792 fbtft_dbg_hex -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x8b5f3787 fbtft_framebuffer_release -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x8e08e445 fbtft_unregister_framebuffer -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x94c50e9d fbtft_write_reg8_bus9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x9bbbd95b fbtft_write_reg16_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x9c9cdfd2 fbtft_register_backlight -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xa6a10ec1 fbtft_write_spi_emulate_9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xa8270497 fbtft_write_reg8_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xabb9b26d fbtft_write_gpio8_wr -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xb8765b28 fbtft_init_display -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xb88dd63b fbtft_read_spi -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xbb956f3d fbtft_write_vmem16_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xcba42c24 fbtft_register_framebuffer -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf608220a fbtft_write_spi -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xfa850d97 fbtft_write_reg16_bus16 -EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x30120f9a gbaudio_unregister_module -EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x910fbf57 gbaudio_module_update -EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0xbab6e495 gbaudio_register_module -EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0xec6210d5 adt7316_probe -EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0x34e9bfff ade7854_probe -EXPORT_SYMBOL drivers/staging/media/av7110/sp8870 0xc432247d sp8870_attach -EXPORT_SYMBOL drivers/staging/media/zoran/videocodec 0x45ba34d9 videocodec_detach -EXPORT_SYMBOL drivers/staging/media/zoran/videocodec 0x621675da videocodec_unregister -EXPORT_SYMBOL drivers/staging/media/zoran/videocodec 0x7814861f videocodec_attach -EXPORT_SYMBOL drivers/staging/media/zoran/videocodec 0xc7030d39 videocodec_register -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x027d1cff rtllib_DisableIntelPromiscuousMode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x02f8df72 rtllib_wx_get_encode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x09391b19 free_rtllib -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x188ac5ff dot11d_init -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1aafd7a3 rtllib_wx_set_freq -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1ce34a33 rtllib_wx_get_name -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1f33fcc6 rtllib_legal_channel -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x20994ca4 rtllib_wx_get_rts +EXPORT_SYMBOL drivers/ssb/ssb 0xe3f7fd78 ssb_bus_sdiobus_register +EXPORT_SYMBOL drivers/ssb/ssb 0xf0277694 ssb_device_enable +EXPORT_SYMBOL drivers/ssb/ssb 0xf9f6bd40 ssb_clockspeed +EXPORT_SYMBOL drivers/ssb/ssb 0xfe1be053 __ssb_driver_register +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x052e9154 fbtft_register_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x0cb6b962 fbtft_write_buf_dc +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x0f5dee50 fbtft_framebuffer_release +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x15e1797d fbtft_write_reg8_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x17da2122 fbtft_write_vmem16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x20f96f4d fbtft_write_gpio16_wr_latched +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x3520ac26 fbtft_dbg_hex +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x42b36e28 fbtft_framebuffer_alloc +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x4b2802ed fbtft_write_gpio16_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x55269ecb fbtft_init_display +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x5a323863 fbtft_unregister_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x5a99ce80 fbtft_remove_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x74e99ef8 fbtft_read_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x826561e8 fbtft_write_vmem16_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x9e5b0098 fbtft_write_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xa9faf6e6 fbtft_register_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xaea96037 fbtft_write_vmem8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xb0077e21 fbtft_write_vmem16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xb618057c fbtft_probe_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xba30cb75 fbtft_write_reg16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xd3661c30 fbtft_unregister_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xd697a74d fbtft_write_gpio8_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xeae84513 fbtft_write_reg8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf5a1bcb0 fbtft_write_reg16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf9f0511e fbtft_write_spi_emulate_9 +EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x2b05ec84 gbaudio_register_module +EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x886f7f32 gbaudio_unregister_module +EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x999f2c68 gbaudio_module_update +EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0x89bb02b6 adt7316_probe +EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0xea236c1e ade7854_probe +EXPORT_SYMBOL drivers/staging/media/av7110/sp8870 0x2cef5b80 sp8870_attach +EXPORT_SYMBOL drivers/staging/media/zoran/videocodec 0x367b824d videocodec_detach +EXPORT_SYMBOL drivers/staging/media/zoran/videocodec 0x4ba5a409 videocodec_unregister +EXPORT_SYMBOL drivers/staging/media/zoran/videocodec 0x4c2966ea videocodec_register +EXPORT_SYMBOL drivers/staging/media/zoran/videocodec 0xa8b87c16 videocodec_attach +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1d8bd27c free_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x20130c8b rtllib_wx_set_mlme EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x22166084 rt_global_debug_component -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x24ce3dfb rtllib_reset_queue -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x25adf202 rtllib_ps_tx_ack -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2a237edc rtllib_wx_set_mode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2bbdfa55 rtllib_stop_scan_syncro -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2de1e485 rtllib_wx_set_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x304132f2 alloc_rtllib -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x336696c7 rtllib_wx_set_mlme -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x358ab775 rtllib_wx_get_rate -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x397a06e9 rtllib_softmac_start_protocol -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x447ae586 rtllib_wx_set_rts -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x54c465d3 dot11d_channel_map -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x60e1ec7d rtllib_EnableIntelPromiscuousMode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x64e4a2f8 rtllib_start_send_beacons -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x667ef966 rtllib_wx_set_encode_ext -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x77f64530 rtllib_wx_set_gen_ie -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7e839788 rtllib_MgntDisconnect -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7ff7f9fa rtllib_wx_set_encode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x80247797 rtllib_act_scanning -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x80568032 rtllib_start_scan_syncro -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x82677390 rtllib_wx_set_wap -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x90cbd7c2 rtllib_get_beacon -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x92236f51 rtllib_xmit -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x932f2472 rtllib_stop_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x98263007 rtllib_sta_ps_send_null_frame -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9ca7d9c5 rtllib_wx_set_rawtx -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa3175589 rtllib_wx_get_essid -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa91a3b40 rtllib_rx -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xabaf6c06 rtllib_wx_set_essid -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xacb98d8d rtllib_stop_send_beacons -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb07764a7 rtllib_wx_get_power -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb4f92a0c notify_wx_assoc_event -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb8cf5d28 rtllib_wx_set_power -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xcfab75ee rtllib_wx_get_freq -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdca247c2 RemovePeerTS -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdf161b55 HT_update_self_and_peer_setting +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x241e7b58 rtllib_start_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2cc4b0ac rtllib_wx_set_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2e9178de rtllib_reset_queue +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2f6a70e1 rtllib_sta_ps_send_null_frame +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2fd8efa7 rtllib_wx_get_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x30aab959 rtllib_wx_get_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x37bc5b54 rtllib_wx_get_name +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x392d4656 rtllib_wx_set_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x464b4813 HT_update_self_and_peer_setting +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4aba31d3 rtllib_wx_get_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4edda056 dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x516567fa rtllib_wx_get_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x57dfc528 rtllib_wx_get_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5949a9f7 rtllib_get_beacon +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x59fe408f rtllib_start_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6915f857 rtllib_softmac_stop_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x74969294 dot11d_channel_map +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x75e8a77d rtllib_rx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7a198ac1 rtllib_wx_get_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7ee86741 rtllib_ps_tx_ack +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x84d663ff rtllib_wx_set_auth +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x895df788 rtllib_wx_set_gen_ie +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8b5ef86d rtllib_DisableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8c793bca rtllib_wx_set_rawtx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8cf3d625 rtllib_wx_set_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x997e6699 rtllib_wx_set_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa2e05039 rtllib_wx_get_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xad9d79c7 rtllib_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xaf02c35b rtllib_stop_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb52ad59b rtllib_stop_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb709a6c3 rtllib_wx_get_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbab3022b rtllib_MgntDisconnect +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc75a8585 notify_wx_assoc_event +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xcc12d347 rtllib_wx_set_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xccde172b rtllib_stop_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd0fdbb9b rtllib_EnableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd17727bc rtllib_wx_set_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd3cd5501 rtllib_wx_set_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdb8e9c81 rtllib_act_scanning +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdc27fdf0 alloc_rtllib EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdf78f620 rtllib_wlan_frequencies -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe08e1538 rtllib_wx_set_rate -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe684dab2 rtllib_wx_get_wap -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf04a444b rtllib_softmac_stop_protocol -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf5b60e4b rtllib_wx_set_auth -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf8e546c8 rtllib_wx_get_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xff27dc91 rtllib_wx_get_mode -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0440ff12 ieee80211_stop_scan_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x082d1ad8 ieee80211_softmac_stop_protocol_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x12679529 ieee80211_wx_get_scan_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1463cd3b ieee80211_wx_set_auth_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x15c60147 ieee80211_wpa_supplicant_ioctl_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1660afc2 ieee80211_wx_get_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe9518332 rtllib_xmit +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xef90dd4c rtllib_wx_set_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf24e5e78 rtllib_wx_set_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf36f3b12 rtllib_wx_set_encode_ext +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf4ff252a rtllib_softmac_start_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf81c1225 RemovePeerTS +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf92184b8 rtllib_wx_get_encode +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0118b0a9 ieee80211_start_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x10ab862d ieee80211_stop_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x12921566 ieee80211_start_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1530b7aa ieee80211_wx_set_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x15d2d09f HTUpdateSelfAndPeerSetting +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x183e5b49 ieee80211_softmac_stop_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1b22852d ieee80211_wake_queue_rsl EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1d66a0ff ieee80211_is_shortslot_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x299724e0 ieee80211_softmac_start_protocol_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2f0790fd ieee80211_wx_get_rts_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x35867c31 notify_wx_assoc_event_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3a0ad4a4 ieee80211_reset_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3a536f39 ieee80211_disassociate_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3b117baa dot11d_get_max_tx_pwr_in_dbm -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x454f1e2b ieee80211_wx_set_encode_ext_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x46ddd366 ieee80211_wx_set_rts_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4a4e3985 ieee80211_rx_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x54cfe397 ieee80211_start_send_beacons_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x679da97e to_legal_channel -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x75d305a6 ieee80211_wx_set_scan_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7e2ee1e9 ieee80211_softmac_xmit_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7fbaec59 ieee80211_wx_set_wap_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x87beaa36 ieee80211_wx_set_gen_ie_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x87e54ef1 ieee80211_wx_set_mode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x87f9642a ieee80211_wx_set_freq_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8df8d01e is_legal_channel -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8ee81104 HTUpdateSelfAndPeerSetting -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x993dbfa9 ieee80211_get_beacon_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9a98ea64 ieee80211_start_scan_syncro_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9d1ff7d0 ieee80211_softmac_scan_syncro_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa27df0fc ieee80211_ps_tx_ack_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa4279b5e ieee80211_wx_get_encode_ext_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa74c9249 ieee80211_stop_send_beacons_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa9d75447 ieee80211_wx_get_essid_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xab0eeafd ieee80211_wx_set_encode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb7459f3f ieee80211_stop_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb95886b2 SendDisassociation_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb99a39d7 rtl8192u_dot11d_init -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbb01edad ieee80211_txb_free_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbbe22164 ieee80211_wx_get_rate_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbc486dfa ieee80211_wx_get_power_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc12847db ieee80211_wx_set_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1f3ce956 ieee80211_disassociate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2141a492 ieee80211_ps_tx_ack_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2542fc8e SendDisassociation_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x29f33f42 ieee80211_wx_get_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3257e72c notify_wx_assoc_event_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3f001dfe ieee80211_wx_set_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4375bdd3 ieee80211_rx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x514f6475 dot11d_reset +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x51729d19 ieee80211_wx_set_gen_ie_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x53c943c0 ieee80211_wx_set_auth_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x548af255 dot11d_get_max_tx_pwr_in_dbm +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x58ba0544 ieee80211_wx_set_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5a1ede7c rtl8192u_dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5e4483e8 ieee80211_get_beacon_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5f0c3121 ieee80211_reset_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x64781efb ieee80211_rx_mgt_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x68112ddb ieee80211_wx_get_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6a66c2da ieee80211_stop_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7bfc5c93 ieee80211_wx_set_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x85b2a770 ieee80211_txb_free_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x902cf986 ieee80211_softmac_start_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x91748eaf ieee80211_wx_get_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9ea79f08 ieee80211_wx_set_mlme_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa6aac43b dot11d_update_country_ie +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xaa635ce7 ieee80211_wx_set_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb4ac157b ieee80211_wx_set_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb7b97e7a ieee80211_wx_get_name_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xba00214d ieee80211_softmac_xmit_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbbb63f2d ieee80211_wx_get_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbe62ff9e ieee80211_wx_set_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbee016ee ieee80211_wx_get_wap_rsl EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc370a43e ieee80211_wlan_frequencies_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc5866169 ieee80211_wx_get_name_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xccabd1b9 ieee80211_rx_mgt_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd200eec7 ieee80211_wake_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd4b77e66 ieee80211_wx_set_essid_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xda355ad6 dot11d_scan_complete -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xdc56b1eb ieee80211_wx_set_rate_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe04df4a5 ieee80211_wx_get_freq_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe051de7e ieee80211_wx_get_mode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe67ee54f ieee80211_wx_set_rawtx_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe71a9a89 ieee80211_wx_get_encode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xeafa8bda dot11d_update_country_ie +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc5689fb0 dot11d_scan_complete +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcde2bb54 ieee80211_wx_get_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xce86f0df ieee80211_wx_get_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd4df3093 ieee80211_wx_set_rawtx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd88c329f ieee80211_stop_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd961f15d ieee80211_wx_set_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xddec181c ieee80211_wx_set_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xde846d50 to_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe4b65a8b ieee80211_wx_get_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe6a376aa ieee80211_wx_get_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe9b95cfc ieee80211_wx_set_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xec6d9c4f ieee80211_wx_get_scan_rsl EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xecc5fb1b ieee80211_is_54g_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf737daad ieee80211_wx_set_mlme_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf9ee1c14 dot11d_reset -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x09702cd9 iscsit_process_scsi_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1296aaed __iscsit_check_dataout_hdr -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x18dda959 iscsit_aborted_task -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1ad36530 iscsit_handle_logout_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1e3a0cd6 iscsit_setup_text_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x23aaf2e9 iscsit_get_datain_values -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x23c1353c iscsit_unregister_transport -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x27c4aabe iscsit_process_nop_out -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x29ff4d2e iscsit_immediate_queue -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x323f6210 iscsit_queue_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x32bca684 iscsit_release_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x386a98fe iscsit_build_r2ts_for_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x39662fd9 iscsit_setup_nop_out -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3ae6eae8 iscsit_increment_maxcmdsn -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4165f396 iscsit_build_nopin_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4a4c6825 iscsit_stop_dataout_timer -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5577c41f iscsit_build_rsp_pdu -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5ba5b2b9 iscsit_process_text_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5bf87594 iscsit_build_reject -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x656f3a48 iscsit_setup_scsi_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6e2b8437 iscsit_check_dataout_payload -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6ed6d537 iscsit_handle_task_mgt_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x71673655 iscsi_target_check_login_request -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x76596158 iscsit_check_dataout_hdr -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x79422269 iscsit_cause_connection_reinstatement -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7e6378e1 iscsit_add_cmd_to_immediate_queue -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7edad4aa iscsit_sequence_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x91d4834a iscsit_find_cmd_from_itt -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9dc9dc3a iscsit_build_logout_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9ee962d4 iscsit_tmr_post_handler -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa11abe19 iscsit_reject_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xaa3c131d iscsit_response_queue -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb8bb1632 iscsit_free_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbbebf135 iscsit_set_unsolicited_dataout -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbe34d007 iscsit_allocate_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc3adfaf1 iscsit_find_cmd_from_itt_or_dump -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xda98d0b1 iscsit_handle_snack -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe0fee06e iscsit_build_datain_pdu -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe294afb8 iscsit_logout_post_handler -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe3d04849 iscsit_add_reject -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe4e0a52a iscsit_register_transport -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xec59ccd4 iscsit_build_text_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xedb8a015 iscsi_change_param_sprintf +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf1ce6f67 ieee80211_wpa_supplicant_ioctl_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfdb51cf6 is_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xffa94aef ieee80211_softmac_scan_syncro_rsl +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x02499e0b iscsit_stop_dataout_timer +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x07f04122 iscsit_add_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x09ba2a07 iscsit_register_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x158a27a7 iscsit_add_cmd_to_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1d2f0632 iscsi_target_check_login_request +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x23481218 iscsit_find_cmd_from_itt_or_dump +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2ce98b75 iscsit_handle_logout_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x38853d4d iscsit_build_logout_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4324c364 iscsit_setup_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x495761f7 iscsit_unregister_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4e04e440 iscsit_logout_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4ff38107 iscsit_get_datain_values +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x50738ddc iscsit_build_text_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5b33f959 iscsit_response_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x658e24dc iscsit_set_unsolicited_dataout +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x72c917ff iscsit_free_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x79c0d604 iscsit_build_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7c4f702f iscsit_sequence_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7e336335 __iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x875370c6 iscsit_build_nopin_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9358d3a8 iscsit_process_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9ea0bf73 iscsit_release_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xaeb86c01 iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb64992f7 iscsit_build_rsp_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb651a4b3 iscsi_change_param_sprintf +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb6d5600d iscsit_reject_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb83ac935 iscsit_process_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbc3e52cf iscsit_build_datain_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbfd294d2 iscsit_handle_task_mgt_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xcaeb08c9 iscsit_aborted_task +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd2d21f23 iscsit_increment_maxcmdsn +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd5c388ac iscsit_setup_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd7ec9f7e iscsit_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xdafc9560 iscsit_find_cmd_from_itt +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xdd0b9095 iscsit_process_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe1a8b7cb iscsit_setup_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xec707b51 iscsit_tmr_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xeee5aa8f iscsit_queue_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf19b766d 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 0xff2cb588 iscsit_build_task_mgt_rsp -EXPORT_SYMBOL drivers/target/target_core_mod 0x038194f5 transport_alloc_session +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf731c638 iscsit_cause_connection_reinstatement +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf77c132b iscsit_check_dataout_payload +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xfb01006d iscsit_build_r2ts_for_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xfd47c925 iscsit_allocate_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xffae5aeb iscsit_handle_snack +EXPORT_SYMBOL drivers/target/target_core_mod 0x0330925f transport_kmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x0769e04f spc_parse_cdb EXPORT_SYMBOL drivers/target/target_core_mod 0x0871ffd6 transport_set_vpd_ident -EXPORT_SYMBOL drivers/target/target_core_mod 0x09062672 target_set_cmd_data_length -EXPORT_SYMBOL drivers/target/target_core_mod 0x0aad8b26 target_backend_unregister -EXPORT_SYMBOL drivers/target/target_core_mod 0x0af58ad4 core_tpg_check_initiator_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0x0c188ae4 transport_handle_cdb_direct -EXPORT_SYMBOL drivers/target/target_core_mod 0x1273416f transport_wait_for_tasks -EXPORT_SYMBOL drivers/target/target_core_mod 0x1373ec89 target_wait_for_sess_cmds +EXPORT_SYMBOL drivers/target/target_core_mod 0x0d56cee6 sbc_dif_copy_prot +EXPORT_SYMBOL drivers/target/target_core_mod 0x0dafaf1b core_tpg_get_initiator_node_acl EXPORT_SYMBOL drivers/target/target_core_mod 0x142072c0 transport_set_vpd_assoc -EXPORT_SYMBOL drivers/target/target_core_mod 0x1533f747 passthrough_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x22f2b91c target_setup_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x283ce047 target_complete_cmd_with_length -EXPORT_SYMBOL drivers/target/target_core_mod 0x31600e73 sbc_dif_copy_prot -EXPORT_SYMBOL drivers/target/target_core_mod 0x3843ee7a transport_deregister_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x17236266 transport_init_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x1aabfd4f transport_generic_request_failure +EXPORT_SYMBOL drivers/target/target_core_mod 0x2287eb8e spc_emulate_evpd_83 +EXPORT_SYMBOL drivers/target/target_core_mod 0x2463a90c target_execute_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x27525b35 target_cmd_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x27da0a1e transport_lookup_tmr_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x2abbc6b7 passthrough_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x2c8a93f8 transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x2f18355e target_undepend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0x2fe87422 target_nacl_find_deve +EXPORT_SYMBOL drivers/target/target_core_mod 0x32647beb target_send_busy +EXPORT_SYMBOL drivers/target/target_core_mod 0x37184b10 transport_deregister_session_configfs +EXPORT_SYMBOL drivers/target/target_core_mod 0x378218da transport_lookup_cmd_lun EXPORT_SYMBOL drivers/target/target_core_mod 0x3a20a9d7 transport_set_vpd_ident_type -EXPORT_SYMBOL drivers/target/target_core_mod 0x3a44323c transport_register_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x3bb64e97 target_complete_cmd_with_sense -EXPORT_SYMBOL drivers/target/target_core_mod 0x3bb86d76 spc_emulate_inquiry_std -EXPORT_SYMBOL drivers/target/target_core_mod 0x3ff83c6e target_submit_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x4099d82d transport_kmap_data_sg -EXPORT_SYMBOL drivers/target/target_core_mod 0x4d2e5695 target_undepend_item -EXPORT_SYMBOL drivers/target/target_core_mod 0x4ef7497f core_tpg_set_initiator_node_queue_depth -EXPORT_SYMBOL drivers/target/target_core_mod 0x5090633b __target_init_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x52734dcf target_tpg_has_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0x5411c7a6 target_depend_item -EXPORT_SYMBOL drivers/target/target_core_mod 0x5ba502ac __transport_register_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x5bdb912c core_allocate_nexus_loss_ua -EXPORT_SYMBOL drivers/target/target_core_mod 0x5d4b0ba9 target_unregister_template -EXPORT_SYMBOL drivers/target/target_core_mod 0x6213853e target_put_nacl -EXPORT_SYMBOL drivers/target/target_core_mod 0x62660784 transport_init_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x3cb5e36d target_complete_cmd_with_length +EXPORT_SYMBOL drivers/target/target_core_mod 0x3eda0fcb target_stop_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x43b5e44b target_complete_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x445d4b67 transport_generic_free_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x4d88a49a transport_wait_for_tasks +EXPORT_SYMBOL drivers/target/target_core_mod 0x520b9b60 transport_copy_sense_to_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x52973282 target_unregister_template +EXPORT_SYMBOL drivers/target/target_core_mod 0x590cf3c8 target_set_cmd_data_length EXPORT_SYMBOL drivers/target/target_core_mod 0x638bffb7 target_free_sgl -EXPORT_SYMBOL drivers/target/target_core_mod 0x67a430e2 target_show_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x67d67aa4 target_configure_unmap_from_queue -EXPORT_SYMBOL drivers/target/target_core_mod 0x6ded1f39 target_complete_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x7078b41a sbc_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x713a0f7c passthrough_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0x76beb959 target_nacl_find_deve -EXPORT_SYMBOL drivers/target/target_core_mod 0x76d77547 target_get_sess_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x78d091b3 core_tpg_register -EXPORT_SYMBOL drivers/target/target_core_mod 0x79b33b55 core_tpg_deregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x672fe91a sbc_dif_verify +EXPORT_SYMBOL drivers/target/target_core_mod 0x69917cbc transport_free_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x6aed0b0e target_put_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x6c48478b target_cmd_init_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x6ca8d094 target_lun_is_rdonly +EXPORT_SYMBOL drivers/target/target_core_mod 0x70df83d1 core_tpg_check_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x72fea1f6 core_allocate_nexus_loss_ua EXPORT_SYMBOL drivers/target/target_core_mod 0x7a1d0d3c target_alloc_sgl -EXPORT_SYMBOL drivers/target/target_core_mod 0x7aa9f371 spc_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x810942f1 core_tpg_get_initiator_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0x8a6f209d transport_generic_handle_tmr -EXPORT_SYMBOL drivers/target/target_core_mod 0x8b4686e4 target_cmd_init_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x95c42b49 sbc_get_device_type -EXPORT_SYMBOL drivers/target/target_core_mod 0x96a918cd target_register_template -EXPORT_SYMBOL drivers/target/target_core_mod 0x9838437e target_execute_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x9e7d87f5 transport_alloc_session_tags -EXPORT_SYMBOL drivers/target/target_core_mod 0xa177c8df transport_deregister_session_configfs -EXPORT_SYMBOL drivers/target/target_core_mod 0xa28eaf6d target_stop_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xa6c9350d transport_send_check_condition_and_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0x7a4542ca transport_handle_cdb_direct +EXPORT_SYMBOL drivers/target/target_core_mod 0x802b888e target_backend_unregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x80595413 target_get_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x81b1e604 transport_alloc_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x8200addd transport_alloc_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0x826a1d4f transport_generic_handle_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x8f612d06 core_tpg_set_initiator_node_queue_depth +EXPORT_SYMBOL drivers/target/target_core_mod 0x8fc8e960 target_register_template +EXPORT_SYMBOL drivers/target/target_core_mod 0x9a216195 target_depend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0x9a8fac73 core_tpg_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x9bec206f target_put_nacl +EXPORT_SYMBOL drivers/target/target_core_mod 0x9dc1f0c2 target_complete_cmd_with_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0x9e0a43f3 target_submit_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xa46b172e sbc_get_write_same_sectors EXPORT_SYMBOL drivers/target/target_core_mod 0xa897a9ce core_tmr_alloc_req -EXPORT_SYMBOL drivers/target/target_core_mod 0xa8d8afea transport_backend_register -EXPORT_SYMBOL drivers/target/target_core_mod 0xad55e81b target_remove_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xafd7eacd transport_lookup_tmr_lun -EXPORT_SYMBOL drivers/target/target_core_mod 0xb295b081 target_submit_tmr -EXPORT_SYMBOL drivers/target/target_core_mod 0xbb898d8e transport_lookup_cmd_lun -EXPORT_SYMBOL drivers/target/target_core_mod 0xbe86b7c1 core_alua_check_nonop_delay -EXPORT_SYMBOL drivers/target/target_core_mod 0xc13a38a3 target_lun_is_rdonly -EXPORT_SYMBOL drivers/target/target_core_mod 0xc3097a9e sbc_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0xc3e59420 target_send_busy -EXPORT_SYMBOL drivers/target/target_core_mod 0xc4ecd15f target_show_dynamic_sessions -EXPORT_SYMBOL drivers/target/target_core_mod 0xc5a8ebe3 core_tpg_set_initiator_node_tag -EXPORT_SYMBOL drivers/target/target_core_mod 0xcc416554 target_to_linux_sector -EXPORT_SYMBOL drivers/target/target_core_mod 0xce7a5de7 transport_generic_new_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xd37dbdd4 target_cmd_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0xd4b6d2d6 spc_emulate_evpd_83 -EXPORT_SYMBOL drivers/target/target_core_mod 0xe69c218f sbc_get_write_same_sectors -EXPORT_SYMBOL drivers/target/target_core_mod 0xe808593c passthrough_pr_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0xe819cccc sbc_dif_verify -EXPORT_SYMBOL drivers/target/target_core_mod 0xe9dbc9bf transport_generic_free_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xee878788 transport_copy_sense_to_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xf0eb7452 transport_kunmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0xaa4893c3 target_configure_unmap_from_queue +EXPORT_SYMBOL drivers/target/target_core_mod 0xaadb29b0 __transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xae8995f9 passthrough_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0xafe5e02f transport_backend_register +EXPORT_SYMBOL drivers/target/target_core_mod 0xb3f6afda transport_generic_new_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xb844a767 core_tpg_deregister +EXPORT_SYMBOL drivers/target/target_core_mod 0xc2ea558b target_setup_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xc7eff236 sbc_get_device_type +EXPORT_SYMBOL drivers/target/target_core_mod 0xcc368202 target_remove_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xcee95316 __target_init_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xd3c83466 transport_deregister_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xd4adc2cb core_alua_check_nonop_delay +EXPORT_SYMBOL drivers/target/target_core_mod 0xd630002e passthrough_pr_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0xd9399bb1 transport_kunmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0xda503f10 core_tpg_set_initiator_node_tag +EXPORT_SYMBOL drivers/target/target_core_mod 0xdda56a41 target_to_linux_sector +EXPORT_SYMBOL drivers/target/target_core_mod 0xe24fb475 target_wait_for_sess_cmds +EXPORT_SYMBOL drivers/target/target_core_mod 0xe3b7009f target_submit_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0xe7d8e491 transport_send_check_condition_and_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0xec8582fe spc_emulate_inquiry_std +EXPORT_SYMBOL drivers/target/target_core_mod 0xee7723a2 sbc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xf178d3dc spc_emulate_report_luns +EXPORT_SYMBOL drivers/target/target_core_mod 0xf1952cb5 target_tpg_has_node_acl EXPORT_SYMBOL drivers/target/target_core_mod 0xf3c2dfe0 transport_set_vpd_proto_id -EXPORT_SYMBOL drivers/target/target_core_mod 0xf797ccef transport_generic_request_failure -EXPORT_SYMBOL drivers/target/target_core_mod 0xf8328df3 target_put_sess_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xfd1e433e spc_emulate_report_luns -EXPORT_SYMBOL drivers/target/target_core_mod 0xfdc4a195 transport_free_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xfa6b97c2 target_show_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xff3e9816 target_show_dynamic_sessions +EXPORT_SYMBOL drivers/target/target_core_mod 0xffa32e72 sbc_attrib_attrs EXPORT_SYMBOL drivers/thermal/intel/int340x_thermal/acpi_thermal_rel 0x111eefed acpi_parse_art 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 0xf0f9fe0d acpi_parse_trt -EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0xf9239a7f usb_cdc_wdm_register -EXPORT_SYMBOL drivers/usb/gadget/libcomposite 0xd49efd27 usb_os_desc_prepare_interf_dir -EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0x0116d648 sl811h_driver -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x1c3e691f usb_wwan_resume -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x213218de usb_wwan_tiocmset -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x46e69507 usb_wwan_dtr_rts -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x52c7c2ac usb_wwan_port_remove -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x7190bf24 usb_wwan_chars_in_buffer -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x80de6f3e usb_wwan_close -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x95949bba usb_wwan_suspend -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x9e8a1eee usb_wwan_write -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xde2206ac usb_wwan_write_room -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xe878c9bc usb_wwan_tiocmget -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xf1a69f29 usb_wwan_open -EXPORT_SYMBOL drivers/usb/serial/usbserial 0x3011b2d5 usb_serial_resume -EXPORT_SYMBOL drivers/usb/serial/usbserial 0x5480f301 usb_serial_suspend -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x2bbb4751 mdev_get_type_group_id -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x677fe859 mdev_register_driver -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x6db81179 mtype_get_parent_dev -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x7853598c mdev_parent_dev -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xd4126027 mtype_get_type_group_id -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xef425796 mdev_register_device -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xefd3f257 mdev_unregister_driver -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xfadaf1ff mdev_unregister_device -EXPORT_SYMBOL drivers/vhost/vhost 0x0e2379f6 vhost_chr_write_iter -EXPORT_SYMBOL drivers/vhost/vhost 0x30f33069 vhost_chr_poll +EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0xe5a71075 usb_cdc_wdm_register +EXPORT_SYMBOL drivers/usb/gadget/libcomposite 0x4f38c96e usb_os_desc_prepare_interf_dir +EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0x1d0b0fa6 sl811h_driver +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x13d67a40 usb_wwan_tiocmget +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x17774384 usb_wwan_close +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x1bd3cd2c usb_wwan_open +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x2b0fa240 usb_wwan_port_remove +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x31f1f85d usb_wwan_suspend +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x33553af8 usb_wwan_write_room +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x8fc3e44b usb_wwan_write +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x949ac794 usb_wwan_dtr_rts +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xc2a3d049 usb_wwan_tiocmset +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xca668ef7 usb_wwan_chars_in_buffer +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xf38fcd06 usb_wwan_resume +EXPORT_SYMBOL drivers/usb/serial/usbserial 0x33eb5ee4 usb_serial_resume +EXPORT_SYMBOL drivers/usb/serial/usbserial 0x6e00ceaf usb_serial_suspend +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x0c14c0fc mdev_unregister_device +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x3d200d29 mdev_parent_dev +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x6bea64b9 mdev_register_device +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xa4b169f7 mdev_get_type_group_id +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xa5d03661 mtype_get_parent_dev +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xbd0ce564 mdev_register_driver +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xd2445387 mdev_unregister_driver +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xfed3bb6e mtype_get_type_group_id +EXPORT_SYMBOL drivers/vhost/vhost 0x0954f157 vhost_chr_write_iter +EXPORT_SYMBOL drivers/vhost/vhost 0x6173fd1f 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 @@ -4584,144 +4594,144 @@ 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 0x5e9a3bfd devm_lcd_device_unregister -EXPORT_SYMBOL drivers/video/backlight/lcd 0x6f5b9b64 devm_lcd_device_register -EXPORT_SYMBOL drivers/video/backlight/lcd 0x9e1ec6a4 lcd_device_register -EXPORT_SYMBOL drivers/video/backlight/lcd 0xe70d0d5b lcd_device_unregister +EXPORT_SYMBOL drivers/video/backlight/lcd 0x1e3737d4 devm_lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0x2a1188db devm_lcd_device_unregister +EXPORT_SYMBOL drivers/video/backlight/lcd 0xdee85383 lcd_device_unregister +EXPORT_SYMBOL drivers/video/backlight/lcd 0xf634a59a lcd_device_register EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x17f3f471 svga_set_default_seq_regs EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x1be6dc30 svga_set_textmode_vga_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x28c2f63a svga_get_caps EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x4ab38ef2 svga_set_default_crt_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x4f9c5591 svga_get_tilemax -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x5e543428 svga_tileblit -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x675a0515 svga_tilecursor -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x72f94375 svga_tilecopy -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x7a03f59f svga_tilefill +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x56ac581e svga_tileblit +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x63451858 svga_settile EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x83a41489 svga_set_timings EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x84c337c2 svga_wcrt_multi EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x84c97d2a svga_match_format +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x8f58b256 svga_tilecopy +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xa345ab94 svga_get_caps +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xa73d04d7 svga_tilefill EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xb0ab2b2e svga_check_timings +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xb8712c40 svga_get_tilemax +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xc2772327 svga_tilecursor EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd22ca511 svga_set_default_atc_regs EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd6ec2c44 svga_compute_pll EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xdcc5a013 svga_wseq_multi EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xe28d2a49 svga_set_default_gfx_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xee13bff4 svga_settile -EXPORT_SYMBOL drivers/video/fbdev/core/syscopyarea 0x833b5e68 sys_copyarea -EXPORT_SYMBOL drivers/video/fbdev/core/sysfillrect 0x356bc845 sys_fillrect -EXPORT_SYMBOL drivers/video/fbdev/core/sysimgblt 0xac1490dd sys_imageblit -EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x05b54bad cyber2000fb_attach +EXPORT_SYMBOL drivers/video/fbdev/core/syscopyarea 0x000075a2 sys_copyarea +EXPORT_SYMBOL drivers/video/fbdev/core/sysfillrect 0xcd9fea39 sys_fillrect +EXPORT_SYMBOL drivers/video/fbdev/core/sysimgblt 0xa4a5b2ec sys_imageblit EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x0cc3ede5 cyber2000fb_detach +EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x2aab0794 cyber2000fb_attach EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x534b6f18 cyber2000fb_disable_extregs EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0xb39f68d1 cyber2000fb_enable_extregs +EXPORT_SYMBOL drivers/video/fbdev/macmodes 0x0a741c3c mac_find_mode EXPORT_SYMBOL drivers/video/fbdev/macmodes 0x233917d1 mac_vmode_to_var -EXPORT_SYMBOL drivers/video/fbdev/macmodes 0xb432cf7e mac_find_mode EXPORT_SYMBOL drivers/video/fbdev/macmodes 0xe2304303 mac_map_monitor_sense -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x6b304f63 g450_mnp2f -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x7a514e63 matroxfb_g450_setpll_cond -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xbd3c3acf matroxfb_g450_setclk -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x3425b556 DAC1064_global_restore -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x7aaeefa5 matrox_mystique -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xcb37676c matrox_G100 -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xdf2ffb12 DAC1064_global_init -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_Ti3026 0xb019e3aa matrox_millennium -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_accel 0xb163070f matrox_cfbX_init -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x6bcad248 matroxfb_unregister_driver -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xdfeb39f9 matroxfb_register_driver -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xe366da6b matroxfb_enable_irq -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xf5bc32ca matroxfb_wait_for_sync -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x533306cf matroxfb_g450_connect -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x5c31c08f matroxfb_g450_shutdown -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x056927e9 matroxfb_read_pins +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x9279ce81 g450_mnp2f +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xab03b9eb matroxfb_g450_setpll_cond +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xcd4604b1 matroxfb_g450_setclk +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x000c26bf matrox_G100 +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x0f13ea25 matrox_mystique +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xa5eee53f DAC1064_global_restore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xdf7e031d DAC1064_global_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_Ti3026 0xfbf0fad3 matrox_millennium +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_accel 0xfc080771 matrox_cfbX_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x0f8b3262 matroxfb_wait_for_sync +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x2c926ae7 matroxfb_unregister_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x2da1aef5 matroxfb_enable_irq +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x63fd1a06 matroxfb_register_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x69d09047 matroxfb_g450_connect +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0xa9cc14ce matroxfb_g450_shutdown +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x0049393f matroxfb_vgaHWinit +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x06b1fb37 matroxfb_read_pins +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x0bdf1d87 matroxfb_vgaHWrestore EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x25cf8049 matroxfb_PLL_calcclock -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x351004ec matroxfb_DAC_out -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x35e315f6 matroxfb_vgaHWinit -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x4d767866 matroxfb_DAC_in -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x77841efe matroxfb_vgaHWrestore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x41260d68 matroxfb_DAC_in +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xcb823a28 matroxfb_DAC_out 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/virt/vboxguest/vboxguest 0x18dbbf03 vbg_hgcm_call +EXPORT_SYMBOL drivers/virt/vboxguest/vboxguest 0x21aed665 vbg_hgcm_disconnect EXPORT_SYMBOL drivers/virt/vboxguest/vboxguest 0x260590c0 vbg_err +EXPORT_SYMBOL drivers/virt/vboxguest/vboxguest 0x28971e57 vbg_hgcm_connect EXPORT_SYMBOL drivers/virt/vboxguest/vboxguest 0x569b312f vbg_info +EXPORT_SYMBOL drivers/virt/vboxguest/vboxguest 0x5abeabfe vbg_get_gdev EXPORT_SYMBOL drivers/virt/vboxguest/vboxguest 0x68f1cf1a vbg_err_ratelimited -EXPORT_SYMBOL drivers/virt/vboxguest/vboxguest 0x6979d0d7 vbg_hgcm_connect EXPORT_SYMBOL drivers/virt/vboxguest/vboxguest 0x70cdcbfd vbg_warn -EXPORT_SYMBOL drivers/virt/vboxguest/vboxguest 0x72da447a vbg_get_gdev +EXPORT_SYMBOL drivers/virt/vboxguest/vboxguest 0x85a8cbc0 vbg_put_gdev EXPORT_SYMBOL drivers/virt/vboxguest/vboxguest 0x9c072aa8 vbg_status_code_to_errno -EXPORT_SYMBOL drivers/virt/vboxguest/vboxguest 0x9c8d23cd vbg_put_gdev -EXPORT_SYMBOL drivers/virt/vboxguest/vboxguest 0xaac63531 vbg_hgcm_disconnect -EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x50ab05be virtio_dma_buf_get_uuid -EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x7b99b3ec virtio_dma_buf_export -EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x8eae6499 virtio_dma_buf_attach -EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x9a98cffe is_virtio_dma_buf -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x54317bd3 w1_ds2780_io -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x727e4206 w1_ds2780_eeprom_cmd -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x776b01ee w1_ds2781_io -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0xdb0ef848 w1_ds2781_eeprom_cmd -EXPORT_SYMBOL drivers/w1/wire 0x7df80dc5 w1_add_master_device -EXPORT_SYMBOL drivers/w1/wire 0x9ae0f3fc w1_register_family -EXPORT_SYMBOL drivers/w1/wire 0x9d5cda35 w1_unregister_family -EXPORT_SYMBOL drivers/w1/wire 0xd381b77a w1_remove_master_device +EXPORT_SYMBOL drivers/virt/vboxguest/vboxguest 0xbebb298d vbg_hgcm_call +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x20eaf108 virtio_dma_buf_attach +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x79785bab is_virtio_dma_buf +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x9289ecd1 virtio_dma_buf_get_uuid +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0xac6c9522 virtio_dma_buf_export +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x6a9cd7ac w1_ds2780_io +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0xf3a20be9 w1_ds2780_eeprom_cmd +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x9576839e w1_ds2781_eeprom_cmd +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0xc9b5ea23 w1_ds2781_io +EXPORT_SYMBOL drivers/w1/wire 0x81458bcd w1_add_master_device +EXPORT_SYMBOL drivers/w1/wire 0xc799ed09 w1_remove_master_device +EXPORT_SYMBOL drivers/w1/wire 0xd5ec0dd6 w1_register_family +EXPORT_SYMBOL drivers/w1/wire 0xe42a5edc w1_unregister_family EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0x04e133fc iTCO_vendor_check_noreboot_on EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0x75bec08d iTCO_vendor_pre_stop EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0xc8930f32 iTCO_vendor_pre_start EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0xed2a3373 iTCO_vendorsupport -EXPORT_SYMBOL fs/fscache/fscache 0x05248bf5 __fscache_disable_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x06bcc838 fscache_object_mark_killed -EXPORT_SYMBOL fs/fscache/fscache 0x0b1fb688 fscache_obtained_object -EXPORT_SYMBOL fs/fscache/fscache 0x162a7435 __fscache_read_or_alloc_page -EXPORT_SYMBOL fs/fscache/fscache 0x1ae5003d __fscache_alloc_page -EXPORT_SYMBOL fs/fscache/fscache 0x1b182302 __fscache_uncache_page -EXPORT_SYMBOL fs/fscache/fscache 0x2a06b1ba __fscache_update_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x39378f3b fscache_op_complete -EXPORT_SYMBOL fs/fscache/fscache 0x56dc6035 fscache_put_operation -EXPORT_SYMBOL fs/fscache/fscache 0x654ce526 __fscache_attr_changed -EXPORT_SYMBOL fs/fscache/fscache 0x69267c81 __fscache_wait_on_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0x137d19d6 fscache_object_lookup_negative +EXPORT_SYMBOL fs/fscache/fscache 0x1e7fc807 __fscache_wait_on_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0x1fb467b5 fscache_put_operation +EXPORT_SYMBOL fs/fscache/fscache 0x2fcac71a fscache_io_error +EXPORT_SYMBOL fs/fscache/fscache 0x337da359 __fscache_update_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x363489bb __fscache_readpages_cancel +EXPORT_SYMBOL fs/fscache/fscache 0x37a7016c __fscache_begin_read_operation +EXPORT_SYMBOL fs/fscache/fscache 0x3f4eb238 __fscache_attr_changed +EXPORT_SYMBOL fs/fscache/fscache 0x4179130a __fscache_maybe_release_page +EXPORT_SYMBOL fs/fscache/fscache 0x47086d19 __fscache_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0x4c521b43 fscache_op_complete +EXPORT_SYMBOL fs/fscache/fscache 0x645af7ea __fscache_invalidate EXPORT_SYMBOL fs/fscache/fscache 0x6acefa42 fscache_cache_cleared_wq -EXPORT_SYMBOL fs/fscache/fscache 0x6b6342e6 __fscache_maybe_release_page -EXPORT_SYMBOL fs/fscache/fscache 0x6bde0e18 __fscache_check_page_write -EXPORT_SYMBOL fs/fscache/fscache 0x6c660875 fscache_enqueue_operation +EXPORT_SYMBOL fs/fscache/fscache 0x72bfc202 __fscache_register_netfs EXPORT_SYMBOL fs/fscache/fscache 0x74530ecd fscache_op_debug_id -EXPORT_SYMBOL fs/fscache/fscache 0x7cfd38dd __fscache_acquire_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x7da7dbe0 __fscache_invalidate -EXPORT_SYMBOL fs/fscache/fscache 0x8da237b7 fscache_io_error -EXPORT_SYMBOL fs/fscache/fscache 0x9015cfab __fscache_readpages_cancel -EXPORT_SYMBOL fs/fscache/fscache 0x9109b741 __fscache_begin_read_operation -EXPORT_SYMBOL fs/fscache/fscache 0x946310c1 fscache_init_cache -EXPORT_SYMBOL fs/fscache/fscache 0x94d17687 __fscache_enable_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x960aa468 __fscache_read_or_alloc_pages -EXPORT_SYMBOL fs/fscache/fscache 0x96c70f32 fscache_check_aux -EXPORT_SYMBOL fs/fscache/fscache 0x990249fd fscache_object_init -EXPORT_SYMBOL fs/fscache/fscache 0x9af9a171 fscache_withdraw_cache -EXPORT_SYMBOL fs/fscache/fscache 0xac0894e5 fscache_operation_init -EXPORT_SYMBOL fs/fscache/fscache 0xaf626759 fscache_add_cache -EXPORT_SYMBOL fs/fscache/fscache 0xb13efb10 __fscache_unregister_netfs -EXPORT_SYMBOL fs/fscache/fscache 0xc94a40b0 fscache_mark_pages_cached -EXPORT_SYMBOL fs/fscache/fscache 0xca538fa9 __fscache_register_netfs -EXPORT_SYMBOL fs/fscache/fscache 0xcbafc723 fscache_object_lookup_negative -EXPORT_SYMBOL fs/fscache/fscache 0xd5669d2b __fscache_wait_on_page_write -EXPORT_SYMBOL fs/fscache/fscache 0xd64527ee __fscache_check_consistency -EXPORT_SYMBOL fs/fscache/fscache 0xd73d5180 __fscache_relinquish_cookie -EXPORT_SYMBOL fs/fscache/fscache 0xde77cef7 fscache_mark_page_cached -EXPORT_SYMBOL fs/fscache/fscache 0xe00cb57d fscache_fsdef_index -EXPORT_SYMBOL fs/fscache/fscache 0xe5160bfd __fscache_uncache_all_inode_pages -EXPORT_SYMBOL fs/fscache/fscache 0xf6179940 fscache_object_destroy -EXPORT_SYMBOL fs/fscache/fscache 0xf9d78b26 __fscache_write_page -EXPORT_SYMBOL fs/fscache/fscache 0xfe1be10d fscache_object_retrying_stale -EXPORT_SYMBOL fs/netfs/netfs 0x6651b8b4 netfs_write_begin -EXPORT_SYMBOL fs/netfs/netfs 0x6678d88c netfs_readahead -EXPORT_SYMBOL fs/netfs/netfs 0x6c67631b netfs_subreq_terminated -EXPORT_SYMBOL fs/netfs/netfs 0x9b57e38a netfs_stats_show -EXPORT_SYMBOL fs/netfs/netfs 0xcc6b742a netfs_readpage +EXPORT_SYMBOL fs/fscache/fscache 0x7475fc87 __fscache_wait_on_page_write +EXPORT_SYMBOL fs/fscache/fscache 0x75e6906b __fscache_disable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x7af9978b fscache_enqueue_operation +EXPORT_SYMBOL fs/fscache/fscache 0x7d1fce7a __fscache_write_page +EXPORT_SYMBOL fs/fscache/fscache 0x7fb81b7b fscache_object_retrying_stale +EXPORT_SYMBOL fs/fscache/fscache 0x86ed6aaa fscache_mark_page_cached +EXPORT_SYMBOL fs/fscache/fscache 0x8a7d13c7 __fscache_unregister_netfs +EXPORT_SYMBOL fs/fscache/fscache 0x8dfac9ae __fscache_read_or_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0x8f446bad fscache_add_cache +EXPORT_SYMBOL fs/fscache/fscache 0x93fcdb91 fscache_mark_pages_cached +EXPORT_SYMBOL fs/fscache/fscache 0x99bed44f __fscache_relinquish_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xa2ae53a2 fscache_operation_init +EXPORT_SYMBOL fs/fscache/fscache 0xab165dd9 __fscache_check_page_write +EXPORT_SYMBOL fs/fscache/fscache 0xb1f17bcc fscache_fsdef_index +EXPORT_SYMBOL fs/fscache/fscache 0xb97fecb1 fscache_check_aux +EXPORT_SYMBOL fs/fscache/fscache 0xbd514580 fscache_object_destroy +EXPORT_SYMBOL fs/fscache/fscache 0xc2a24591 fscache_object_init +EXPORT_SYMBOL fs/fscache/fscache 0xc8340d92 __fscache_uncache_all_inode_pages +EXPORT_SYMBOL fs/fscache/fscache 0xc9350909 fscache_withdraw_cache +EXPORT_SYMBOL fs/fscache/fscache 0xd4b4e4f3 fscache_init_cache +EXPORT_SYMBOL fs/fscache/fscache 0xd55b1d2f __fscache_enable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xdee03556 __fscache_uncache_page +EXPORT_SYMBOL fs/fscache/fscache 0xf025a634 fscache_obtained_object +EXPORT_SYMBOL fs/fscache/fscache 0xf6481d03 __fscache_read_or_alloc_pages +EXPORT_SYMBOL fs/fscache/fscache 0xfae70f44 __fscache_acquire_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xfb5156f6 fscache_object_mark_killed +EXPORT_SYMBOL fs/fscache/fscache 0xfc3b1025 __fscache_check_consistency +EXPORT_SYMBOL fs/netfs/netfs 0x3743631b netfs_readpage +EXPORT_SYMBOL fs/netfs/netfs 0x8a0b80a6 netfs_write_begin +EXPORT_SYMBOL fs/netfs/netfs 0xa08dd706 netfs_readahead +EXPORT_SYMBOL fs/netfs/netfs 0xcd687e6d netfs_subreq_terminated +EXPORT_SYMBOL fs/netfs/netfs 0xeb161e04 netfs_stats_show EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active -EXPORT_SYMBOL fs/quota/quota_tree 0x000309f0 qtree_write_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0x25dd29fb qtree_delete_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0x3932c921 qtree_release_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0x640bebf5 qtree_get_next_id -EXPORT_SYMBOL fs/quota/quota_tree 0x66ab26b8 qtree_read_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0xfcc3cef4 qtree_entry_unused +EXPORT_SYMBOL fs/quota/quota_tree 0x1fb61768 qtree_read_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x294b4bae qtree_get_next_id +EXPORT_SYMBOL fs/quota/quota_tree 0x643028e5 qtree_delete_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xc0b2e71d qtree_write_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xcd8cd745 qtree_release_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xe5fff4cb qtree_entry_unused 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 @@ -4752,19 +4762,19 @@ EXPORT_SYMBOL lib/libcrc32c 0xb15b4109 crc32c EXPORT_SYMBOL lib/lru_cache 0x0641307b lc_destroy EXPORT_SYMBOL lib/lru_cache 0x098d2ed9 lc_try_get -EXPORT_SYMBOL lib/lru_cache 0x0ed2bdf8 lc_seq_printf_stats EXPORT_SYMBOL lib/lru_cache 0x2d47ac83 lc_committed EXPORT_SYMBOL lib/lru_cache 0x2f3dcecb lc_index_of EXPORT_SYMBOL lib/lru_cache 0x4522d82a lc_reset EXPORT_SYMBOL lib/lru_cache 0x4cf5f5a8 lc_is_used EXPORT_SYMBOL lib/lru_cache 0x5752f31b lc_del +EXPORT_SYMBOL lib/lru_cache 0x5afd605a lc_seq_printf_stats EXPORT_SYMBOL lib/lru_cache 0x7257beee lc_element_by_index EXPORT_SYMBOL lib/lru_cache 0x9134feb7 lc_get -EXPORT_SYMBOL lib/lru_cache 0x999ad4d7 lc_seq_dump_details EXPORT_SYMBOL lib/lru_cache 0xb672aa97 lc_create EXPORT_SYMBOL lib/lru_cache 0xbfbe53d5 lc_get_cumulative EXPORT_SYMBOL lib/lru_cache 0xc3a98c1d lc_try_lock EXPORT_SYMBOL lib/lru_cache 0xcc979a91 lc_set +EXPORT_SYMBOL lib/lru_cache 0xcdc109d0 lc_seq_dump_details EXPORT_SYMBOL lib/lru_cache 0xefec290a lc_find EXPORT_SYMBOL lib/lru_cache 0xfd525ec7 lc_put EXPORT_SYMBOL lib/lz4/lz4_compress 0x4f4d78c5 LZ4_compress_default @@ -4834,163 +4844,163 @@ EXPORT_SYMBOL lib/zstd/zstd_compress 0xefe4f679 ZSTD_CCtxWorkspaceBound EXPORT_SYMBOL lib/zstd/zstd_compress 0xfdf70093 ZSTD_CStreamOutSize EXPORT_SYMBOL lib/zstd/zstd_compress 0xff9c4b56 ZSTD_compressBound -EXPORT_SYMBOL net/6lowpan/6lowpan 0x1ac99dae lowpan_unregister_netdev -EXPORT_SYMBOL net/6lowpan/6lowpan 0x1bff3135 lowpan_unregister_netdevice -EXPORT_SYMBOL net/6lowpan/6lowpan 0x62624443 lowpan_nhc_del -EXPORT_SYMBOL net/6lowpan/6lowpan 0x820051ff lowpan_register_netdevice -EXPORT_SYMBOL net/6lowpan/6lowpan 0xea1186e8 lowpan_nhc_add -EXPORT_SYMBOL net/6lowpan/6lowpan 0xf001d8f4 lowpan_register_netdev -EXPORT_SYMBOL net/802/p8022 0x5f32d133 unregister_8022_client -EXPORT_SYMBOL net/802/p8022 0xc729ef40 register_8022_client -EXPORT_SYMBOL net/802/psnap 0x659d29cf register_snap_client -EXPORT_SYMBOL net/802/psnap 0xd4b5bae0 unregister_snap_client -EXPORT_SYMBOL net/9p/9pnet 0x0499cc23 p9_client_renameat -EXPORT_SYMBOL net/9p/9pnet 0x051d5055 p9_client_destroy -EXPORT_SYMBOL net/9p/9pnet 0x07ac907a p9_client_rename -EXPORT_SYMBOL net/9p/9pnet 0x0a22e26b p9_client_symlink +EXPORT_SYMBOL net/6lowpan/6lowpan 0x18673372 lowpan_nhc_del +EXPORT_SYMBOL net/6lowpan/6lowpan 0x8b2279df lowpan_nhc_add +EXPORT_SYMBOL net/6lowpan/6lowpan 0x8d769a9a lowpan_register_netdev +EXPORT_SYMBOL net/6lowpan/6lowpan 0xb5bc1f2d lowpan_unregister_netdev +EXPORT_SYMBOL net/6lowpan/6lowpan 0xd543f529 lowpan_register_netdevice +EXPORT_SYMBOL net/6lowpan/6lowpan 0xe3e06a00 lowpan_unregister_netdevice +EXPORT_SYMBOL net/802/p8022 0x5e04696e unregister_8022_client +EXPORT_SYMBOL net/802/p8022 0xd5a9210e register_8022_client +EXPORT_SYMBOL net/802/psnap 0x37a0e355 unregister_snap_client +EXPORT_SYMBOL net/802/psnap 0xc138cdfc register_snap_client +EXPORT_SYMBOL net/9p/9pnet 0x01ef8e9a p9_client_mkdir_dotl +EXPORT_SYMBOL net/9p/9pnet 0x05083f5e p9_client_create +EXPORT_SYMBOL net/9p/9pnet 0x081a3e1b p9_client_getattr_dotl +EXPORT_SYMBOL net/9p/9pnet 0x0b25e72a p9_client_mknod_dotl +EXPORT_SYMBOL net/9p/9pnet 0x0f407ff5 p9_client_destroy +EXPORT_SYMBOL net/9p/9pnet 0x109dead9 p9_client_attach EXPORT_SYMBOL net/9p/9pnet 0x1430723c p9_req_put -EXPORT_SYMBOL net/9p/9pnet 0x21721c9c p9_client_fsync -EXPORT_SYMBOL net/9p/9pnet 0x285a7c2e p9_client_clunk +EXPORT_SYMBOL net/9p/9pnet 0x18c14abb p9_client_open +EXPORT_SYMBOL net/9p/9pnet 0x1a89acb9 p9_client_lock_dotl +EXPORT_SYMBOL net/9p/9pnet 0x1aa5ff8e p9_client_link +EXPORT_SYMBOL net/9p/9pnet 0x1d32dfd4 p9_client_symlink +EXPORT_SYMBOL net/9p/9pnet 0x20efcb6a p9_client_walk +EXPORT_SYMBOL net/9p/9pnet 0x3906a0c2 p9_client_fcreate EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno -EXPORT_SYMBOL net/9p/9pnet 0x3fb78e00 p9_client_mkdir_dotl EXPORT_SYMBOL net/9p/9pnet 0x41ce9823 p9stat_read -EXPORT_SYMBOL net/9p/9pnet 0x45c1088c p9_client_read -EXPORT_SYMBOL net/9p/9pnet 0x49ecea15 p9_client_lock_dotl -EXPORT_SYMBOL net/9p/9pnet 0x58114b28 p9_client_statfs -EXPORT_SYMBOL net/9p/9pnet 0x62476cba p9_client_create -EXPORT_SYMBOL net/9p/9pnet 0x6a27911f p9_client_attach -EXPORT_SYMBOL net/9p/9pnet 0x6f972cc2 p9_client_remove -EXPORT_SYMBOL net/9p/9pnet 0x719c811a p9_release_pages -EXPORT_SYMBOL net/9p/9pnet 0x7d9d01cf p9_is_proto_dotl -EXPORT_SYMBOL net/9p/9pnet 0x80b40d90 p9_client_link -EXPORT_SYMBOL net/9p/9pnet 0x82723d9e p9_client_write -EXPORT_SYMBOL net/9p/9pnet 0x8679c1be p9_client_stat -EXPORT_SYMBOL net/9p/9pnet 0x8932d185 p9_show_client_options -EXPORT_SYMBOL net/9p/9pnet 0x8e541156 p9_client_mknod_dotl -EXPORT_SYMBOL net/9p/9pnet 0x941561d2 p9_client_begin_disconnect +EXPORT_SYMBOL net/9p/9pnet 0x4408bbe7 p9_is_proto_dotl +EXPORT_SYMBOL net/9p/9pnet 0x45dc85c2 v9fs_get_trans_by_name +EXPORT_SYMBOL net/9p/9pnet 0x4f81138c v9fs_get_default_trans +EXPORT_SYMBOL net/9p/9pnet 0x5546c18d p9_client_stat +EXPORT_SYMBOL net/9p/9pnet 0x5f9cd057 v9fs_unregister_trans +EXPORT_SYMBOL net/9p/9pnet 0x61096543 p9_client_cb +EXPORT_SYMBOL net/9p/9pnet 0x6a7e1ac6 p9_client_getlock_dotl +EXPORT_SYMBOL net/9p/9pnet 0x6c748295 p9_client_remove +EXPORT_SYMBOL net/9p/9pnet 0x7eb45164 p9_client_wstat +EXPORT_SYMBOL net/9p/9pnet 0x8fc9a230 p9_client_readlink EXPORT_SYMBOL net/9p/9pnet 0x95bd8f96 p9dirent_read EXPORT_SYMBOL net/9p/9pnet 0x984c5e73 p9_fcall_fini -EXPORT_SYMBOL net/9p/9pnet 0x9957850d p9_client_getlock_dotl -EXPORT_SYMBOL net/9p/9pnet 0x9ab84bc9 v9fs_get_default_trans -EXPORT_SYMBOL net/9p/9pnet 0xad62327d v9fs_get_trans_by_name -EXPORT_SYMBOL net/9p/9pnet 0xaf1f674b p9_is_proto_dotu -EXPORT_SYMBOL net/9p/9pnet 0xb26610f9 p9_client_disconnect -EXPORT_SYMBOL net/9p/9pnet 0xb40ea39b p9_client_fcreate +EXPORT_SYMBOL net/9p/9pnet 0x9ccaa2ee p9_client_setattr +EXPORT_SYMBOL net/9p/9pnet 0x9e0982b7 p9_client_read +EXPORT_SYMBOL net/9p/9pnet 0x9f288a93 p9_client_read_once +EXPORT_SYMBOL net/9p/9pnet 0x9f42b602 p9_client_fsync +EXPORT_SYMBOL net/9p/9pnet 0xa59df7ff p9_client_create_dotl +EXPORT_SYMBOL net/9p/9pnet 0xa5e80160 p9_client_begin_disconnect +EXPORT_SYMBOL net/9p/9pnet 0xa7851877 p9_client_statfs +EXPORT_SYMBOL net/9p/9pnet 0xa8f02b47 v9fs_register_trans EXPORT_SYMBOL net/9p/9pnet 0xb79f25fd p9_parse_header -EXPORT_SYMBOL net/9p/9pnet 0xc1e64172 v9fs_register_trans -EXPORT_SYMBOL net/9p/9pnet 0xc21ef426 v9fs_unregister_trans -EXPORT_SYMBOL net/9p/9pnet 0xc70ce732 p9_client_readlink -EXPORT_SYMBOL net/9p/9pnet 0xca88a119 p9_client_wstat -EXPORT_SYMBOL net/9p/9pnet 0xcb7dacab p9_client_readdir -EXPORT_SYMBOL net/9p/9pnet 0xccfc1174 p9_client_setattr -EXPORT_SYMBOL net/9p/9pnet 0xd03ae76b p9_client_unlinkat +EXPORT_SYMBOL net/9p/9pnet 0xb9f5c76c p9_client_renameat +EXPORT_SYMBOL net/9p/9pnet 0xc1688a4d p9_client_disconnect +EXPORT_SYMBOL net/9p/9pnet 0xc9bdeeb0 p9_client_unlinkat +EXPORT_SYMBOL net/9p/9pnet 0xd0417a73 p9_show_client_options +EXPORT_SYMBOL net/9p/9pnet 0xd3803be4 p9_is_proto_dotu EXPORT_SYMBOL net/9p/9pnet 0xd384c683 p9stat_free -EXPORT_SYMBOL net/9p/9pnet 0xd3953db1 p9_client_getattr_dotl -EXPORT_SYMBOL net/9p/9pnet 0xd3e766c6 p9_tag_lookup +EXPORT_SYMBOL net/9p/9pnet 0xd4c119b7 p9_client_clunk EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init -EXPORT_SYMBOL net/9p/9pnet 0xf0cea5e1 p9_client_walk -EXPORT_SYMBOL net/9p/9pnet 0xf9a74495 p9_client_create_dotl -EXPORT_SYMBOL net/9p/9pnet 0xfb297ac0 p9_client_read_once -EXPORT_SYMBOL net/9p/9pnet 0xfe9e8d06 p9_client_open -EXPORT_SYMBOL net/9p/9pnet 0xffda9880 p9_client_cb -EXPORT_SYMBOL net/appletalk/appletalk 0x00046a6e aarp_send_ddp -EXPORT_SYMBOL net/appletalk/appletalk 0x5c80ea12 atalk_find_dev_addr -EXPORT_SYMBOL net/appletalk/appletalk 0x698ad073 atrtr_get_dev -EXPORT_SYMBOL net/appletalk/appletalk 0x6d9dd2d3 alloc_ltalkdev -EXPORT_SYMBOL net/atm/atm 0x087e3d7c atm_dev_signal_change -EXPORT_SYMBOL net/atm/atm 0x23ce323e atm_alloc_charge -EXPORT_SYMBOL net/atm/atm 0x29078318 atm_dev_deregister +EXPORT_SYMBOL net/9p/9pnet 0xebe4f89c p9_client_write +EXPORT_SYMBOL net/9p/9pnet 0xf5785290 p9_client_readdir +EXPORT_SYMBOL net/9p/9pnet 0xf9810194 p9_tag_lookup +EXPORT_SYMBOL net/9p/9pnet 0xfc3ecf55 p9_client_rename +EXPORT_SYMBOL net/9p/9pnet 0xff945319 p9_release_pages +EXPORT_SYMBOL net/appletalk/appletalk 0x4670e5b6 aarp_send_ddp +EXPORT_SYMBOL net/appletalk/appletalk 0x6c6039e8 alloc_ltalkdev +EXPORT_SYMBOL net/appletalk/appletalk 0x8cf21dc6 atalk_find_dev_addr +EXPORT_SYMBOL net/appletalk/appletalk 0xb1b7756f atrtr_get_dev EXPORT_SYMBOL net/atm/atm 0x2cc2d52d vcc_hash -EXPORT_SYMBOL net/atm/atm 0x3c3a408e vcc_insert_socket +EXPORT_SYMBOL net/atm/atm 0x3a3304c2 atm_alloc_charge +EXPORT_SYMBOL net/atm/atm 0x3e88dbb1 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 0x69cc17ce register_atm_ioctl -EXPORT_SYMBOL net/atm/atm 0x6ab0d6ff vcc_release_async -EXPORT_SYMBOL net/atm/atm 0x74170561 atm_charge +EXPORT_SYMBOL net/atm/atm 0x4ca53478 atm_dev_signal_change +EXPORT_SYMBOL net/atm/atm 0x4cadcb91 deregister_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0x5dfabd9d atm_dev_lookup +EXPORT_SYMBOL net/atm/atm 0x6b99bf6f atm_dev_deregister +EXPORT_SYMBOL net/atm/atm 0x8c01c68b atm_dev_release_vccs +EXPORT_SYMBOL net/atm/atm 0x98e58759 register_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0x9ece0f00 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 0xc59a7298 deregister_atm_ioctl -EXPORT_SYMBOL net/atm/atm 0xce4776da atm_init_aal5 -EXPORT_SYMBOL net/atm/atm 0xd36a5e9e vcc_process_recv_queue -EXPORT_SYMBOL net/atm/atm 0xd9d96f95 atm_dev_release_vccs -EXPORT_SYMBOL net/atm/atm 0xed40dbee atm_dev_lookup +EXPORT_SYMBOL net/atm/atm 0xbbbbaafd atm_init_aal5 +EXPORT_SYMBOL net/atm/atm 0xcd3513de vcc_process_recv_queue +EXPORT_SYMBOL net/atm/atm 0xd375b219 atm_dev_register +EXPORT_SYMBOL net/atm/atm 0xd411f57d atm_charge EXPORT_SYMBOL net/atm/atm 0xf49bc67a atm_pcr_goal -EXPORT_SYMBOL net/atm/atm 0xfa35ce18 atm_dev_register -EXPORT_SYMBOL net/ax25/ax25 0x06050bac ax25_linkfail_release -EXPORT_SYMBOL net/ax25/ax25 0x09ce4969 ax25_find_cb EXPORT_SYMBOL net/ax25/ax25 0x14cecd59 ax25_display_timer -EXPORT_SYMBOL net/ax25/ax25 0x16317613 ax25_linkfail_register EXPORT_SYMBOL net/ax25/ax25 0x242852b9 ax25_uid_policy -EXPORT_SYMBOL net/ax25/ax25 0x281ce9fe ax25_ip_xmit -EXPORT_SYMBOL net/ax25/ax25 0x35df853a ax25_header_ops +EXPORT_SYMBOL net/ax25/ax25 0x24327d55 ax25_header_ops +EXPORT_SYMBOL net/ax25/ax25 0x3ac8bc2a ax25_ip_xmit EXPORT_SYMBOL net/ax25/ax25 0x4502c65a asc2ax +EXPORT_SYMBOL net/ax25/ax25 0x45a27a79 ax25_linkfail_release EXPORT_SYMBOL net/ax25/ax25 0x53dea1ff ax2asc -EXPORT_SYMBOL net/ax25/ax25 0x8904c8df ax25_send_frame +EXPORT_SYMBOL net/ax25/ax25 0x6105039f ax25_listen_release EXPORT_SYMBOL net/ax25/ax25 0x8ede9e26 ax25_protocol_release -EXPORT_SYMBOL net/ax25/ax25 0xa2d986d8 ax25_listen_release +EXPORT_SYMBOL net/ax25/ax25 0x90480b83 ax25_send_frame +EXPORT_SYMBOL net/ax25/ax25 0xb9e075c8 ax25_linkfail_register EXPORT_SYMBOL net/ax25/ax25 0xc1444946 ax25cmp EXPORT_SYMBOL net/ax25/ax25 0xd43ecbf1 null_ax25_address +EXPORT_SYMBOL net/ax25/ax25 0xdb919bc7 ax25_listen_register +EXPORT_SYMBOL net/ax25/ax25 0xe815ec95 ax25_find_cb EXPORT_SYMBOL net/ax25/ax25 0xee02e420 ax25_findbyuid -EXPORT_SYMBOL net/ax25/ax25 0xee985321 ax25_listen_register -EXPORT_SYMBOL net/bluetooth/bluetooth 0x056962f6 hci_set_fw_info EXPORT_SYMBOL net/bluetooth/bluetooth 0x0718b8b7 bt_info -EXPORT_SYMBOL net/bluetooth/bluetooth 0x0a441aaf hci_conn_switch_role -EXPORT_SYMBOL net/bluetooth/bluetooth 0x0d353e44 bt_sock_wait_state -EXPORT_SYMBOL net/bluetooth/bluetooth 0x129acca2 l2cap_conn_get -EXPORT_SYMBOL net/bluetooth/bluetooth 0x181791d9 bt_accept_dequeue -EXPORT_SYMBOL net/bluetooth/bluetooth 0x191a3da9 l2cap_conn_put -EXPORT_SYMBOL net/bluetooth/bluetooth 0x209056c8 __hci_cmd_sync_ev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0eeaecd4 bt_sock_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0x14d8c54f hci_recv_frame +EXPORT_SYMBOL net/bluetooth/bluetooth 0x167fef10 hci_free_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x1f75ef3c hci_register_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0x20ff667b hci_reset_dev EXPORT_SYMBOL net/bluetooth/bluetooth 0x214e4265 bt_warn -EXPORT_SYMBOL net/bluetooth/bluetooth 0x26cea484 hci_reset_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x27466798 hci_set_hw_info -EXPORT_SYMBOL net/bluetooth/bluetooth 0x28595e8b hci_resume_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x30c6e110 bt_sock_reclassify_lock -EXPORT_SYMBOL net/bluetooth/bluetooth 0x340d39f0 bt_accept_unlink -EXPORT_SYMBOL net/bluetooth/bluetooth 0x3e431973 hci_release_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x3eaa0aaa bt_procfs_cleanup -EXPORT_SYMBOL net/bluetooth/bluetooth 0x44d38c71 l2cap_unregister_user -EXPORT_SYMBOL net/bluetooth/bluetooth 0x48e0f99b l2cap_chan_close -EXPORT_SYMBOL net/bluetooth/bluetooth 0x54492ffd hci_alloc_dev_priv -EXPORT_SYMBOL net/bluetooth/bluetooth 0x54661d00 l2cap_register_user -EXPORT_SYMBOL net/bluetooth/bluetooth 0x66ea429f hci_register_cb -EXPORT_SYMBOL net/bluetooth/bluetooth 0x714c8b7e hci_recv_frame -EXPORT_SYMBOL net/bluetooth/bluetooth 0x71b7a679 __hci_cmd_send -EXPORT_SYMBOL net/bluetooth/bluetooth 0x746da9b4 hci_mgmt_chan_unregister -EXPORT_SYMBOL net/bluetooth/bluetooth 0x785b7ea0 bt_sock_stream_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2339d1b1 bt_sock_poll +EXPORT_SYMBOL net/bluetooth/bluetooth 0x274fc400 l2cap_conn_get +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2f39ddac bt_sock_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0x307325f0 bt_procfs_cleanup +EXPORT_SYMBOL net/bluetooth/bluetooth 0x408c43e8 bt_procfs_init +EXPORT_SYMBOL net/bluetooth/bluetooth 0x47f4d52e hci_unregister_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4c67971a hci_mgmt_chan_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5e45ad8e bt_sock_wait_ready +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5fb29448 bt_accept_dequeue +EXPORT_SYMBOL net/bluetooth/bluetooth 0x68473a32 hci_suspend_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x69c18f03 l2cap_register_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0x6d4e1e38 hci_get_route +EXPORT_SYMBOL net/bluetooth/bluetooth 0x6d5fefcd hci_recv_diag +EXPORT_SYMBOL net/bluetooth/bluetooth 0x71358f75 hci_set_fw_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0x714482ac hci_conn_security +EXPORT_SYMBOL net/bluetooth/bluetooth 0x79201ced hci_set_hw_info EXPORT_SYMBOL net/bluetooth/bluetooth 0x7aad008b bt_to_errno +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7b0ac6ae bt_accept_unlink EXPORT_SYMBOL net/bluetooth/bluetooth 0x7b5ce5c3 baswap EXPORT_SYMBOL net/bluetooth/bluetooth 0x7b8c32f1 bt_err -EXPORT_SYMBOL net/bluetooth/bluetooth 0x84abacd9 __hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7fc1774d __hci_cmd_send +EXPORT_SYMBOL net/bluetooth/bluetooth 0x869da77a l2cap_is_socket EXPORT_SYMBOL net/bluetooth/bluetooth 0x8fea24bd bt_sock_unregister -EXPORT_SYMBOL net/bluetooth/bluetooth 0x98b356a9 bt_sock_poll -EXPORT_SYMBOL net/bluetooth/bluetooth 0xa39fa9d6 hci_conn_security -EXPORT_SYMBOL net/bluetooth/bluetooth 0xa9e4b79a bt_sock_wait_ready -EXPORT_SYMBOL net/bluetooth/bluetooth 0xae9e2340 hci_unregister_cb -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb0a01504 bt_sock_link -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb6f1e55f bt_procfs_init -EXPORT_SYMBOL net/bluetooth/bluetooth 0xba89e026 bt_accept_enqueue -EXPORT_SYMBOL net/bluetooth/bluetooth 0xc7f4722b hci_mgmt_chan_register -EXPORT_SYMBOL net/bluetooth/bluetooth 0xd086fa08 bt_sock_ioctl -EXPORT_SYMBOL net/bluetooth/bluetooth 0xd0929cc7 hci_conn_check_secure -EXPORT_SYMBOL net/bluetooth/bluetooth 0xd6f42c7e hci_get_route +EXPORT_SYMBOL net/bluetooth/bluetooth 0x9ae228a2 hci_conn_check_secure +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa322881f hci_conn_switch_role +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa53c70e3 l2cap_chan_close +EXPORT_SYMBOL net/bluetooth/bluetooth 0xaf35a170 hci_mgmt_chan_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb05aae69 __hci_cmd_sync_ev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb7ca1da4 hci_alloc_dev_priv +EXPORT_SYMBOL net/bluetooth/bluetooth 0xbd9cbe54 l2cap_unregister_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc516a9d6 bt_accept_enqueue +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc9081cf1 bt_sock_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0xcab2eb28 hci_release_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xcbb8e3e6 bt_sock_link +EXPORT_SYMBOL net/bluetooth/bluetooth 0xcdbae295 bt_sock_stream_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0xcfaa6956 hci_cmd_sync EXPORT_SYMBOL net/bluetooth/bluetooth 0xd7613212 bt_err_ratelimited -EXPORT_SYMBOL net/bluetooth/bluetooth 0xd9141e0d l2cap_is_socket -EXPORT_SYMBOL net/bluetooth/bluetooth 0xda37b397 bt_sock_recvmsg -EXPORT_SYMBOL net/bluetooth/bluetooth 0xdaf05a00 bt_sock_register -EXPORT_SYMBOL net/bluetooth/bluetooth 0xdc27508a hci_suspend_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xda8661f5 hci_resume_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xdbc4b7d3 bt_sock_reclassify_lock +EXPORT_SYMBOL net/bluetooth/bluetooth 0xdc609571 hci_register_dev EXPORT_SYMBOL net/bluetooth/bluetooth 0xddacccf6 bt_warn_ratelimited -EXPORT_SYMBOL net/bluetooth/bluetooth 0xe092571e hci_recv_diag -EXPORT_SYMBOL net/bluetooth/bluetooth 0xe282b552 hci_free_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xebcf3e1b hci_unregister_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xf34d7045 hci_register_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xfed2df45 hci_cmd_sync -EXPORT_SYMBOL net/bluetooth/bluetooth 0xff145663 bt_sock_unlink -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x106234fe ebt_unregister_template -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x69b37d8e ebt_do_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xa3688f46 ebt_register_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xc9d102c2 ebt_unregister_table_pre_exit -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xd1bb9582 ebt_unregister_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xee597430 ebt_register_template +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe196772e l2cap_conn_put +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe2c34e85 bt_sock_ioctl +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf0ad4724 bt_sock_wait_state +EXPORT_SYMBOL net/bluetooth/bluetooth 0xfd6f4186 __hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0xfef3e5ea hci_unregister_cb +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x046f1a4c ebt_register_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x1a176b2f ebt_unregister_template +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x411e9293 ebt_do_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x596e4569 ebt_unregister_table_pre_exit +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x5c3c622a ebt_register_template +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xa5ed6199 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 @@ -4998,651 +5008,652 @@ 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 0x5f3ab699 cfcnfg_add_phy_layer -EXPORT_SYMBOL net/caif/caif 0x743a72ca caif_enroll_dev +EXPORT_SYMBOL net/caif/caif 0x50e3acf6 caif_enroll_dev +EXPORT_SYMBOL net/caif/caif 0x67dc98bd get_cfcnfg EXPORT_SYMBOL net/caif/caif 0x839ddb7b cfcnfg_set_phy_state -EXPORT_SYMBOL net/caif/caif 0x8c567062 get_cfcnfg -EXPORT_SYMBOL net/caif/caif 0x9a9827ff caif_disconnect_client +EXPORT_SYMBOL net/caif/caif 0x89ae408f cfcnfg_add_phy_layer +EXPORT_SYMBOL net/caif/caif 0x9d11b2e8 caif_disconnect_client EXPORT_SYMBOL net/caif/caif 0x9e3e305d cfpkt_set_prio EXPORT_SYMBOL net/caif/caif 0xb7b6874e caif_free_client -EXPORT_SYMBOL net/caif/caif 0xcab19094 caif_connect_client -EXPORT_SYMBOL net/can/can 0x2391f40f can_proto_register -EXPORT_SYMBOL net/can/can 0x42a1898e can_proto_unregister -EXPORT_SYMBOL net/can/can 0xa014951c can_send -EXPORT_SYMBOL net/can/can 0xb6a2b5bd can_sock_destruct -EXPORT_SYMBOL net/can/can 0xd999a5b0 can_rx_register -EXPORT_SYMBOL net/can/can 0xfbe2118f can_rx_unregister -EXPORT_SYMBOL net/ceph/libceph 0x0172d460 osd_req_op_extent_osd_data -EXPORT_SYMBOL net/ceph/libceph 0x036ab634 ceph_put_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x036f2fd6 ceph_con_init +EXPORT_SYMBOL net/caif/caif 0xe7a2793c caif_connect_client +EXPORT_SYMBOL net/can/can 0x1ae368ba can_send +EXPORT_SYMBOL net/can/can 0x3d6868b5 can_sock_destruct +EXPORT_SYMBOL net/can/can 0x3e29449b can_proto_register +EXPORT_SYMBOL net/can/can 0x40b2cde0 can_rx_unregister +EXPORT_SYMBOL net/can/can 0x6c0b2bd3 can_proto_unregister +EXPORT_SYMBOL net/can/can 0xd370095f can_rx_register +EXPORT_SYMBOL net/ceph/libceph 0x019a5004 ceph_osdc_start_request EXPORT_SYMBOL net/ceph/libceph 0x04cad6f0 ceph_pg_poolid_by_name -EXPORT_SYMBOL net/ceph/libceph 0x059248f6 ceph_osdc_call -EXPORT_SYMBOL net/ceph/libceph 0x06704489 ceph_osdc_notify_ack -EXPORT_SYMBOL net/ceph/libceph 0x06987ef6 ceph_msg_data_add_bvecs -EXPORT_SYMBOL net/ceph/libceph 0x076fbbda ceph_osdc_abort_requests -EXPORT_SYMBOL net/ceph/libceph 0x0848cf84 ceph_monc_blocklist_add -EXPORT_SYMBOL net/ceph/libceph 0x0a46230d ceph_osdc_sync -EXPORT_SYMBOL net/ceph/libceph 0x0c6f54e0 osd_req_op_extent_osd_data_pages -EXPORT_SYMBOL net/ceph/libceph 0x0c7104cf ceph_msg_new2 -EXPORT_SYMBOL net/ceph/libceph 0x0ef15f4f osd_req_op_raw_data_in_pages +EXPORT_SYMBOL net/ceph/libceph 0x079ff139 ceph_auth_invalidate_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x08638e2c osd_req_op_cls_init +EXPORT_SYMBOL net/ceph/libceph 0x089e9d72 ceph_monc_open_session EXPORT_SYMBOL net/ceph/libceph 0x1378aba3 ceph_pg_pool_name_by_id +EXPORT_SYMBOL net/ceph/libceph 0x15db8142 ceph_client_addr EXPORT_SYMBOL net/ceph/libceph 0x165b1948 ceph_pagelist_free_reserve -EXPORT_SYMBOL net/ceph/libceph 0x17548871 ceph_alloc_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x165eb799 ceph_cls_unlock EXPORT_SYMBOL net/ceph/libceph 0x17c17611 ceph_pg_to_acting_primary -EXPORT_SYMBOL net/ceph/libceph 0x17d327c9 ceph_auth_get_authorizer -EXPORT_SYMBOL net/ceph/libceph 0x1a0c0b0d ceph_copy_from_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x1a82f2f3 ceph_open_session -EXPORT_SYMBOL net/ceph/libceph 0x1de345d5 ceph_auth_handle_svc_reply_more +EXPORT_SYMBOL net/ceph/libceph 0x1c2b0814 ceph_auth_add_authorizer_challenge +EXPORT_SYMBOL net/ceph/libceph 0x1ffe6f48 osd_req_op_extent_dup_last EXPORT_SYMBOL net/ceph/libceph 0x2087719e ceph_oid_copy EXPORT_SYMBOL net/ceph/libceph 0x2101cbc9 ceph_oid_destroy -EXPORT_SYMBOL net/ceph/libceph 0x2272959b ceph_check_fsid -EXPORT_SYMBOL net/ceph/libceph 0x2753ac1f ceph_monc_init +EXPORT_SYMBOL net/ceph/libceph 0x21d92576 ceph_osdc_sync +EXPORT_SYMBOL net/ceph/libceph 0x2215d718 ceph_cls_break_lock +EXPORT_SYMBOL net/ceph/libceph 0x2276fb4b ceph_auth_is_authenticated +EXPORT_SYMBOL net/ceph/libceph 0x230d0d50 ceph_osdc_notify +EXPORT_SYMBOL net/ceph/libceph 0x23c2e621 ceph_monc_blocklist_add +EXPORT_SYMBOL net/ceph/libceph 0x259005e0 ceph_compare_options +EXPORT_SYMBOL net/ceph/libceph 0x26b1ec44 ceph_put_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x29a8f77f ceph_osdc_clear_abort_err +EXPORT_SYMBOL net/ceph/libceph 0x29e97b2b ceph_monc_got_map EXPORT_SYMBOL net/ceph/libceph 0x2a983d26 ceph_pagelist_release -EXPORT_SYMBOL net/ceph/libceph 0x2ae06221 ceph_cls_unlock -EXPORT_SYMBOL net/ceph/libceph 0x32773dec ceph_cls_lock -EXPORT_SYMBOL net/ceph/libceph 0x36931e29 osd_req_op_extent_init +EXPORT_SYMBOL net/ceph/libceph 0x2aea7639 __ceph_auth_get_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x2bf6006e osd_req_op_extent_osd_data_bio +EXPORT_SYMBOL net/ceph/libceph 0x2e7db234 ceph_osdc_update_epoch_barrier +EXPORT_SYMBOL net/ceph/libceph 0x3039de47 __ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x3259505f osd_req_op_init +EXPORT_SYMBOL net/ceph/libceph 0x36b8326b ceph_monc_get_version_async +EXPORT_SYMBOL net/ceph/libceph 0x36d830f8 osd_req_op_cls_request_data_bvecs +EXPORT_SYMBOL net/ceph/libceph 0x37438969 ceph_msg_data_add_bvecs EXPORT_SYMBOL net/ceph/libceph 0x38f2d94e ceph_file_to_extents -EXPORT_SYMBOL net/ceph/libceph 0x395d0495 osd_req_op_init -EXPORT_SYMBOL net/ceph/libceph 0x3b41635b ceph_parse_mon_ips EXPORT_SYMBOL net/ceph/libceph 0x3c8d7111 ceph_get_num_objects -EXPORT_SYMBOL net/ceph/libceph 0x3f835953 ceph_con_open EXPORT_SYMBOL net/ceph/libceph 0x417a9131 ceph_oloc_destroy -EXPORT_SYMBOL net/ceph/libceph 0x44fea0d4 ceph_release_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x42e08a36 ceph_monc_renew_subs EXPORT_SYMBOL net/ceph/libceph 0x466b85b8 libceph_compatible -EXPORT_SYMBOL net/ceph/libceph 0x4a5acb8e ceph_copy_to_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x4d0e11b4 ceph_parse_param -EXPORT_SYMBOL net/ceph/libceph 0x4f1e0d8e ceph_osdc_copy_from +EXPORT_SYMBOL net/ceph/libceph 0x474fdb15 ceph_con_send EXPORT_SYMBOL net/ceph/libceph 0x50603ce3 ceph_decode_entity_addrvec -EXPORT_SYMBOL net/ceph/libceph 0x52417b76 ceph_msg_new -EXPORT_SYMBOL net/ceph/libceph 0x54cef0b4 ceph_osdc_clear_abort_err -EXPORT_SYMBOL net/ceph/libceph 0x5506d2aa ceph_wait_for_latest_osdmap -EXPORT_SYMBOL net/ceph/libceph 0x56b47cf6 ceph_osdc_flush_notifies +EXPORT_SYMBOL net/ceph/libceph 0x54e5e28e ceph_osdc_maybe_request_map EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash -EXPORT_SYMBOL net/ceph/libceph 0x5979026c ceph_con_keepalive -EXPORT_SYMBOL net/ceph/libceph 0x5ac2851a ceph_osdc_alloc_messages +EXPORT_SYMBOL net/ceph/libceph 0x592ec30c ceph_cls_lock_info +EXPORT_SYMBOL net/ceph/libceph 0x5a47e46c ceph_wait_for_latest_osdmap EXPORT_SYMBOL net/ceph/libceph 0x5aeeee62 ceph_oid_aprintf -EXPORT_SYMBOL net/ceph/libceph 0x5afa00fd ceph_cls_break_lock -EXPORT_SYMBOL net/ceph/libceph 0x5b79384e ceph_auth_handle_svc_reply_done -EXPORT_SYMBOL net/ceph/libceph 0x5e2192a6 ceph_copy_user_to_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x5e57ed6f osd_req_op_extent_osd_data_bvec_pos -EXPORT_SYMBOL net/ceph/libceph 0x629214c0 ceph_osdc_get_request +EXPORT_SYMBOL net/ceph/libceph 0x5b959fc8 ceph_osdc_cancel_request +EXPORT_SYMBOL net/ceph/libceph 0x5bde7754 osd_req_op_raw_data_in_pages +EXPORT_SYMBOL net/ceph/libceph 0x60669c8e ceph_auth_handle_bad_authorizer EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name -EXPORT_SYMBOL net/ceph/libceph 0x63f05217 ceph_cls_assert_locked -EXPORT_SYMBOL net/ceph/libceph 0x6972ccfc osd_req_op_cls_request_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x63b74af6 osd_req_op_cls_response_data_pages EXPORT_SYMBOL net/ceph/libceph 0x6a7a38a0 ceph_pr_addr -EXPORT_SYMBOL net/ceph/libceph 0x7395c337 __ceph_auth_get_authorizer -EXPORT_SYMBOL net/ceph/libceph 0x7c9af340 ceph_auth_invalidate_authorizer -EXPORT_SYMBOL net/ceph/libceph 0x7f156056 ceph_osdc_list_watchers +EXPORT_SYMBOL net/ceph/libceph 0x6bca8d3b ceph_osdc_watch +EXPORT_SYMBOL net/ceph/libceph 0x6c2dcb79 ceph_monc_do_statfs +EXPORT_SYMBOL net/ceph/libceph 0x6e303cbb osd_req_op_extent_osd_data_bvecs +EXPORT_SYMBOL net/ceph/libceph 0x70550af4 osd_req_op_extent_update +EXPORT_SYMBOL net/ceph/libceph 0x72d8b87b ceph_cls_set_cookie +EXPORT_SYMBOL net/ceph/libceph 0x75cbdcf1 ceph_parse_param +EXPORT_SYMBOL net/ceph/libceph 0x77c82f1d ceph_con_close +EXPORT_SYMBOL net/ceph/libceph 0x78db9e57 ceph_copy_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x7a56542b osd_req_op_xattr_init +EXPORT_SYMBOL net/ceph/libceph 0x7c2bfc31 ceph_monc_get_version +EXPORT_SYMBOL net/ceph/libceph 0x7c7139fc ceph_osdc_new_request +EXPORT_SYMBOL net/ceph/libceph 0x7cadf338 ceph_print_client_options +EXPORT_SYMBOL net/ceph/libceph 0x7f51d30c ceph_auth_handle_svc_reply_more EXPORT_SYMBOL net/ceph/libceph 0x86fca7e4 ceph_put_snap_context -EXPORT_SYMBOL net/ceph/libceph 0x88959261 ceph_osdc_maybe_request_map -EXPORT_SYMBOL net/ceph/libceph 0x894b9501 __ceph_open_session -EXPORT_SYMBOL net/ceph/libceph 0x898ed54a ceph_monc_validate_auth -EXPORT_SYMBOL net/ceph/libceph 0x8bad2d05 ceph_zero_page_vector_range -EXPORT_SYMBOL net/ceph/libceph 0x8d168b5b osd_req_op_extent_osd_data_bio -EXPORT_SYMBOL net/ceph/libceph 0x8eb801f9 osd_req_op_extent_osd_data_bvecs -EXPORT_SYMBOL net/ceph/libceph 0x90131a6b ceph_osdc_alloc_request -EXPORT_SYMBOL net/ceph/libceph 0x916e62fb ceph_monc_open_session +EXPORT_SYMBOL net/ceph/libceph 0x876370da ceph_msg_new2 +EXPORT_SYMBOL net/ceph/libceph 0x8cde317f ceph_monc_stop +EXPORT_SYMBOL net/ceph/libceph 0x8d7752c9 ceph_osdc_put_request EXPORT_SYMBOL net/ceph/libceph 0x92b7b4ce ceph_pg_pool_flags +EXPORT_SYMBOL net/ceph/libceph 0x938f23e5 ceph_create_client +EXPORT_SYMBOL net/ceph/libceph 0x9623d1b3 osd_req_op_extent_osd_data_pages EXPORT_SYMBOL net/ceph/libceph 0x987d3968 ceph_alloc_options -EXPORT_SYMBOL net/ceph/libceph 0x9a2a2d41 ceph_monc_get_version_async -EXPORT_SYMBOL net/ceph/libceph 0x9ba1185a ceph_auth_verify_authorizer_reply +EXPORT_SYMBOL net/ceph/libceph 0x98d4c101 ceph_osdc_call +EXPORT_SYMBOL net/ceph/libceph 0x99159ada ceph_copy_user_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x9979ac29 ceph_auth_get_authorizer EXPORT_SYMBOL net/ceph/libceph 0x9bc6b539 ceph_find_or_create_string -EXPORT_SYMBOL net/ceph/libceph 0x9ca6ebc3 ceph_osdc_start_request +EXPORT_SYMBOL net/ceph/libceph 0x9c0c69af ceph_osdc_alloc_messages EXPORT_SYMBOL net/ceph/libceph 0x9ca95932 ceph_create_snap_context +EXPORT_SYMBOL net/ceph/libceph 0x9f6371bb ceph_msg_data_add_bio EXPORT_SYMBOL net/ceph/libceph 0x9fbba67f ceph_buffer_new -EXPORT_SYMBOL net/ceph/libceph 0x9fddfcd1 osd_req_op_cls_request_data_pages EXPORT_SYMBOL net/ceph/libceph 0x9fefa3cb ceph_calc_file_object_mapping -EXPORT_SYMBOL net/ceph/libceph 0xa64c0927 ceph_osdc_wait_request +EXPORT_SYMBOL net/ceph/libceph 0xa082c47f ceph_monc_init +EXPORT_SYMBOL net/ceph/libceph 0xa2eb0754 ceph_osdc_flush_notifies +EXPORT_SYMBOL net/ceph/libceph 0xa45be509 osd_req_op_cls_request_data_pages +EXPORT_SYMBOL net/ceph/libceph 0xa5f81429 osd_req_op_extent_osd_data_pagelist EXPORT_SYMBOL net/ceph/libceph 0xa698f998 ceph_free_lockers -EXPORT_SYMBOL net/ceph/libceph 0xa8105c83 ceph_msg_dump -EXPORT_SYMBOL net/ceph/libceph 0xa81787ce ceph_osdc_update_epoch_barrier -EXPORT_SYMBOL net/ceph/libceph 0xa98fe080 ceph_con_close -EXPORT_SYMBOL net/ceph/libceph 0xac6207f9 ceph_monc_wait_osdmap -EXPORT_SYMBOL net/ceph/libceph 0xad0b2e70 ceph_monc_get_version +EXPORT_SYMBOL net/ceph/libceph 0xa6a0f156 ceph_msg_data_add_pages +EXPORT_SYMBOL net/ceph/libceph 0xa7568c48 osd_req_op_alloc_hint_init +EXPORT_SYMBOL net/ceph/libceph 0xa849df79 ceph_msg_get +EXPORT_SYMBOL net/ceph/libceph 0xab9bcf84 ceph_auth_handle_svc_reply_done +EXPORT_SYMBOL net/ceph/libceph 0xac9c60b6 ceph_msg_data_add_pagelist EXPORT_SYMBOL net/ceph/libceph 0xad703657 ceph_auth_destroy_authorizer -EXPORT_SYMBOL net/ceph/libceph 0xae6bdc16 ceph_reset_client_addr EXPORT_SYMBOL net/ceph/libceph 0xafb8a407 ceph_msgr_flush -EXPORT_SYMBOL net/ceph/libceph 0xb03f6c58 ceph_print_client_options -EXPORT_SYMBOL net/ceph/libceph 0xb1dd7ea5 ceph_monc_got_map -EXPORT_SYMBOL net/ceph/libceph 0xb284bdba ceph_auth_add_authorizer_challenge -EXPORT_SYMBOL net/ceph/libceph 0xb332e3ff ceph_osdc_watch -EXPORT_SYMBOL net/ceph/libceph 0xb4671911 osd_req_op_extent_osd_data_pagelist -EXPORT_SYMBOL net/ceph/libceph 0xb5199448 ceph_con_send EXPORT_SYMBOL net/ceph/libceph 0xb54676fa ceph_msg_type_name -EXPORT_SYMBOL net/ceph/libceph 0xb70c3454 osd_req_op_alloc_hint_init EXPORT_SYMBOL net/ceph/libceph 0xb72c162e ceph_buffer_release -EXPORT_SYMBOL net/ceph/libceph 0xb77a905b ceph_osdc_put_request -EXPORT_SYMBOL net/ceph/libceph 0xb807e135 ceph_monc_want_map -EXPORT_SYMBOL net/ceph/libceph 0xb96b5253 ceph_msg_data_add_pagelist +EXPORT_SYMBOL net/ceph/libceph 0xb8a0721c ceph_monc_wait_osdmap +EXPORT_SYMBOL net/ceph/libceph 0xb9d7cca6 ceph_osdc_list_watchers +EXPORT_SYMBOL net/ceph/libceph 0xbbc28882 ceph_release_page_vector EXPORT_SYMBOL net/ceph/libceph 0xbd2f79ae ceph_oloc_copy -EXPORT_SYMBOL net/ceph/libceph 0xbd4725d5 ceph_monc_do_statfs -EXPORT_SYMBOL net/ceph/libceph 0xbe109766 osd_req_op_cls_request_data_bvecs EXPORT_SYMBOL net/ceph/libceph 0xbe3879aa ceph_get_snap_context -EXPORT_SYMBOL net/ceph/libceph 0xc1e1f523 osd_req_op_xattr_init +EXPORT_SYMBOL net/ceph/libceph 0xbf3c367c ceph_osdc_alloc_request EXPORT_SYMBOL net/ceph/libceph 0xc366bfa1 ceph_pagelist_truncate -EXPORT_SYMBOL net/ceph/libceph 0xc747af6a ceph_monc_stop +EXPORT_SYMBOL net/ceph/libceph 0xc3ef7142 ceph_con_keepalive +EXPORT_SYMBOL net/ceph/libceph 0xc7c4dcaf osd_req_op_extent_osd_data +EXPORT_SYMBOL net/ceph/libceph 0xc87479c6 ceph_msg_put EXPORT_SYMBOL net/ceph/libceph 0xca80437b ceph_extent_to_file -EXPORT_SYMBOL net/ceph/libceph 0xcd780ab2 osd_req_op_cls_response_data_pages -EXPORT_SYMBOL net/ceph/libceph 0xcf42184b ceph_osdc_new_request -EXPORT_SYMBOL net/ceph/libceph 0xd401c1c4 ceph_osdc_notify +EXPORT_SYMBOL net/ceph/libceph 0xca8c302e ceph_msg_dump +EXPORT_SYMBOL net/ceph/libceph 0xcbb2e3a6 ceph_con_init +EXPORT_SYMBOL net/ceph/libceph 0xcbf6c835 ceph_msg_new +EXPORT_SYMBOL net/ceph/libceph 0xcec02bb6 ceph_monc_want_map +EXPORT_SYMBOL net/ceph/libceph 0xd24ffb2a ceph_auth_verify_authorizer_reply EXPORT_SYMBOL net/ceph/libceph 0xd4d736db ceph_destroy_options +EXPORT_SYMBOL net/ceph/libceph 0xd4ddaa5e ceph_destroy_client EXPORT_SYMBOL net/ceph/libceph 0xd4eb7735 ceph_decode_entity_addr -EXPORT_SYMBOL net/ceph/libceph 0xd87e7239 ceph_msg_get -EXPORT_SYMBOL net/ceph/libceph 0xd9f83a22 osd_req_op_extent_dup_last -EXPORT_SYMBOL net/ceph/libceph 0xdaaab4f2 ceph_osdc_cancel_request -EXPORT_SYMBOL net/ceph/libceph 0xdcfdabee ceph_auth_handle_bad_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xd661c827 ceph_parse_mon_ips +EXPORT_SYMBOL net/ceph/libceph 0xd67448f9 ceph_cls_lock +EXPORT_SYMBOL net/ceph/libceph 0xd9d9b28f osd_req_op_extent_osd_data_bvec_pos +EXPORT_SYMBOL net/ceph/libceph 0xdbab9899 ceph_osdc_copy_from EXPORT_SYMBOL net/ceph/libceph 0xdf6ef4a1 ceph_oid_printf EXPORT_SYMBOL net/ceph/libceph 0xdfc091f9 ceph_entity_type_name -EXPORT_SYMBOL net/ceph/libceph 0xe0676e8e ceph_destroy_client -EXPORT_SYMBOL net/ceph/libceph 0xe16a84fe ceph_monc_renew_subs +EXPORT_SYMBOL net/ceph/libceph 0xe1f51585 ceph_check_fsid EXPORT_SYMBOL net/ceph/libceph 0xe34a59f2 ceph_object_locator_to_pg -EXPORT_SYMBOL net/ceph/libceph 0xe7315d40 ceph_client_addr +EXPORT_SYMBOL net/ceph/libceph 0xe45870ff ceph_alloc_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xe4871d7d ceph_reset_client_addr +EXPORT_SYMBOL net/ceph/libceph 0xe5891d2b osd_req_op_extent_init +EXPORT_SYMBOL net/ceph/libceph 0xe75796d7 ceph_cls_assert_locked EXPORT_SYMBOL net/ceph/libceph 0xe76e7226 ceph_pagelist_alloc -EXPORT_SYMBOL net/ceph/libceph 0xeb5a5f07 ceph_msg_put -EXPORT_SYMBOL net/ceph/libceph 0xedaad379 ceph_cls_lock_info +EXPORT_SYMBOL net/ceph/libceph 0xe7781942 ceph_client_gid +EXPORT_SYMBOL net/ceph/libceph 0xea76dcc7 ceph_osdc_abort_requests 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 0xeffd2654 ceph_client_gid +EXPORT_SYMBOL net/ceph/libceph 0xefebee13 ceph_zero_page_vector_range EXPORT_SYMBOL net/ceph/libceph 0xf03fe862 ceph_pagelist_set_cursor -EXPORT_SYMBOL net/ceph/libceph 0xf05036b6 ceph_auth_is_authenticated -EXPORT_SYMBOL net/ceph/libceph 0xf1807eff ceph_msg_data_add_pages -EXPORT_SYMBOL net/ceph/libceph 0xf2571c41 osd_req_op_extent_update -EXPORT_SYMBOL net/ceph/libceph 0xf27cff49 ceph_msg_data_add_bio -EXPORT_SYMBOL net/ceph/libceph 0xf66a7718 ceph_create_client -EXPORT_SYMBOL net/ceph/libceph 0xfdd83e31 ceph_osdc_unwatch -EXPORT_SYMBOL net/ceph/libceph 0xfe4db8f1 ceph_compare_options -EXPORT_SYMBOL net/ceph/libceph 0xff0bab5d osd_req_op_cls_init -EXPORT_SYMBOL net/ceph/libceph 0xfffdd43c ceph_cls_set_cookie -EXPORT_SYMBOL net/dccp/dccp_ipv4 0xa42e5f7a dccp_syn_ack_timeout -EXPORT_SYMBOL net/dccp/dccp_ipv4 0xf33b3fbb dccp_req_err -EXPORT_SYMBOL net/hsr/hsr 0x133d977d is_hsr_master -EXPORT_SYMBOL net/hsr/hsr 0x389b63d1 hsr_get_version -EXPORT_SYMBOL net/ieee802154/ieee802154 0x3c7d0d7f wpan_phy_free -EXPORT_SYMBOL net/ieee802154/ieee802154 0x5124436c wpan_phy_find -EXPORT_SYMBOL net/ieee802154/ieee802154 0x534d09bf wpan_phy_new -EXPORT_SYMBOL net/ieee802154/ieee802154 0xa8a200bb wpan_phy_register -EXPORT_SYMBOL net/ieee802154/ieee802154 0xef8abf4c wpan_phy_unregister -EXPORT_SYMBOL net/ieee802154/ieee802154 0xef8ca1d2 wpan_phy_for_each +EXPORT_SYMBOL net/ceph/libceph 0xf2823e63 ceph_con_open +EXPORT_SYMBOL net/ceph/libceph 0xf2d17d28 ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0xf3cd999f ceph_copy_from_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xf48d6220 ceph_monc_validate_auth +EXPORT_SYMBOL net/ceph/libceph 0xf6d028d9 ceph_osdc_get_request +EXPORT_SYMBOL net/ceph/libceph 0xf9d7994e ceph_osdc_unwatch +EXPORT_SYMBOL net/ceph/libceph 0xfbcb8c8a ceph_osdc_wait_request +EXPORT_SYMBOL net/ceph/libceph 0xfef45bf7 ceph_osdc_notify_ack +EXPORT_SYMBOL net/ceph/libceph 0xffdc219b osd_req_op_cls_request_data_pagelist +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x4291ee26 dccp_syn_ack_timeout +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x6abc761f dccp_req_err +EXPORT_SYMBOL net/hsr/hsr 0x0cc59aa9 hsr_get_version +EXPORT_SYMBOL net/hsr/hsr 0x660da4d5 is_hsr_master +EXPORT_SYMBOL net/ieee802154/ieee802154 0x136fb80a wpan_phy_new +EXPORT_SYMBOL net/ieee802154/ieee802154 0x7605c50c wpan_phy_register +EXPORT_SYMBOL net/ieee802154/ieee802154 0x7d962c0f wpan_phy_free +EXPORT_SYMBOL net/ieee802154/ieee802154 0xc408af7b wpan_phy_find +EXPORT_SYMBOL net/ieee802154/ieee802154 0xc8b8dc0a wpan_phy_unregister +EXPORT_SYMBOL net/ieee802154/ieee802154 0xe34f78ec wpan_phy_for_each EXPORT_SYMBOL net/ipv4/fou 0x1757d1a4 fou_encap_hlen -EXPORT_SYMBOL net/ipv4/fou 0x1ee057fa __fou_build_header -EXPORT_SYMBOL net/ipv4/fou 0x2d4b88e0 __gue_build_header +EXPORT_SYMBOL net/ipv4/fou 0x8037af48 __fou_build_header +EXPORT_SYMBOL net/ipv4/fou 0xa7768a86 __gue_build_header EXPORT_SYMBOL net/ipv4/fou 0xf13914b3 gue_encap_hlen -EXPORT_SYMBOL net/ipv4/gre 0xa78c3673 gre_parse_header -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x8e77bd99 ip_tunnel_encap_add_ops -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x962b3275 ip_tunnel_get_link_net -EXPORT_SYMBOL net/ipv4/ip_tunnel 0xe1dbafdd ip_tunnel_encap_del_ops -EXPORT_SYMBOL net/ipv4/ip_tunnel 0xf4b3a622 ip_tunnel_get_iflink -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x750c3ef2 arpt_unregister_table -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x8b877d4c arpt_unregister_table_pre_exit -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xb48a0917 arpt_do_table -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xd22fcf92 arpt_register_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x29b862c7 ipt_do_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x4a478da3 ipt_unregister_table_pre_exit -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x65f81115 ipt_register_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x6e49d1c6 ipt_unregister_table_exit -EXPORT_SYMBOL net/ipv4/tunnel4 0x55a82fac xfrm4_tunnel_register -EXPORT_SYMBOL net/ipv4/tunnel4 0xfccb588d xfrm4_tunnel_deregister -EXPORT_SYMBOL net/ipv4/udp_tunnel 0x3958874e udp_sock_create4 -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x3de778bf ip6_tnl_xmit -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x578385a4 ip6_tnl_parse_tlv_enc_lim -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x6b01f7be ip6_tnl_rcv -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x73d2df1d ip6_tnl_change_mtu -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x742b4620 ip6_tnl_get_cap -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x96d2b634 ip6_tnl_encap_add_ops -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xb332e7e1 ip6_tnl_get_iflink -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xb4de7c11 ip6_tnl_encap_del_ops -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xba5a7758 ip6_tnl_get_link_net -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x078127de ip6t_register_table -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x6fd47400 ip6t_unregister_table_exit -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x9663fd27 ip6t_unregister_table_pre_exit -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xefe21bc5 ip6t_do_table -EXPORT_SYMBOL net/ipv6/tunnel6 0xe8a70c6a xfrm6_tunnel_register -EXPORT_SYMBOL net/ipv6/tunnel6 0xe8d696ab xfrm6_tunnel_deregister -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x4fe0a772 xfrm6_tunnel_alloc_spi -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xecb458b2 xfrm6_tunnel_spi_lookup -EXPORT_SYMBOL net/lapb/lapb 0x271a8038 lapb_unregister -EXPORT_SYMBOL net/lapb/lapb 0x500c52d8 lapb_register -EXPORT_SYMBOL net/lapb/lapb 0x5d88c985 lapb_disconnect_request -EXPORT_SYMBOL net/lapb/lapb 0xb6c5e1e3 lapb_connect_request -EXPORT_SYMBOL net/lapb/lapb 0xc5a02a86 lapb_data_received -EXPORT_SYMBOL net/lapb/lapb 0xdb41aee5 lapb_data_request -EXPORT_SYMBOL net/lapb/lapb 0xdc2664e7 lapb_getparms -EXPORT_SYMBOL net/lapb/lapb 0xe6e87f09 lapb_setparms -EXPORT_SYMBOL net/llc/llc 0x01e3b112 llc_sap_close -EXPORT_SYMBOL net/llc/llc 0x1e354f8b llc_sap_find +EXPORT_SYMBOL net/ipv4/gre 0x45d36fee gre_parse_header +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x3d5f708a ip_tunnel_get_iflink +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x577c405e ip_tunnel_encap_del_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x87a283d4 ip_tunnel_get_link_net +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xe3eed31e ip_tunnel_encap_add_ops +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x36b82d41 arpt_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x52694f92 arpt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x5a25b1d1 arpt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x6a9e7981 arpt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x0e178fed ipt_unregister_table_exit +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x30be152a ipt_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x8a237735 ipt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xd87567ce ipt_do_table +EXPORT_SYMBOL net/ipv4/tunnel4 0x956fb80a xfrm4_tunnel_deregister +EXPORT_SYMBOL net/ipv4/tunnel4 0xeaff0b18 xfrm4_tunnel_register +EXPORT_SYMBOL net/ipv4/udp_tunnel 0x43ad8b3b udp_sock_create4 +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x0452b66e ip6_tnl_encap_add_ops +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x0ac9482a ip6_tnl_get_link_net +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x2683649f ip6_tnl_encap_del_ops +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x4c18ed0b ip6_tnl_rcv +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x74224dc5 ip6_tnl_get_iflink +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x7efcb0cb ip6_tnl_xmit +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x9d4fd757 ip6_tnl_get_cap +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xcba39741 ip6_tnl_parse_tlv_enc_lim +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xfa4064f9 ip6_tnl_change_mtu +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x12e232ca ip6t_register_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x64451541 ip6t_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x975c65da ip6t_do_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xafd964f2 ip6t_unregister_table_exit +EXPORT_SYMBOL net/ipv6/tunnel6 0x67012a62 xfrm6_tunnel_register +EXPORT_SYMBOL net/ipv6/tunnel6 0xb216659a xfrm6_tunnel_deregister +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x500ca1ce xfrm6_tunnel_spi_lookup +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xdaf1880d xfrm6_tunnel_alloc_spi +EXPORT_SYMBOL net/lapb/lapb 0x1660fd78 lapb_connect_request +EXPORT_SYMBOL net/lapb/lapb 0x23be963c lapb_unregister +EXPORT_SYMBOL net/lapb/lapb 0x3e3fb72c lapb_data_request +EXPORT_SYMBOL net/lapb/lapb 0x48795ade lapb_setparms +EXPORT_SYMBOL net/lapb/lapb 0x4a7cbac4 lapb_getparms +EXPORT_SYMBOL net/lapb/lapb 0x7a0c81a6 lapb_disconnect_request +EXPORT_SYMBOL net/lapb/lapb 0x94be9512 lapb_data_received +EXPORT_SYMBOL net/lapb/lapb 0xd055f39f lapb_register +EXPORT_SYMBOL net/llc/llc 0x0929fecc llc_sap_close +EXPORT_SYMBOL net/llc/llc 0x2c1c0284 llc_sap_open EXPORT_SYMBOL net/llc/llc 0x38b92846 llc_remove_pack EXPORT_SYMBOL net/llc/llc 0x52d7b2fd llc_sap_list -EXPORT_SYMBOL net/llc/llc 0x5a0a1f77 llc_mac_hdr_init -EXPORT_SYMBOL net/llc/llc 0xa9b9849c llc_add_pack -EXPORT_SYMBOL net/llc/llc 0xbf914b1c llc_sap_open -EXPORT_SYMBOL net/llc/llc 0xc07ae53f llc_set_station_handler -EXPORT_SYMBOL net/llc/llc 0xca448c22 llc_build_and_send_ui_pkt +EXPORT_SYMBOL net/llc/llc 0x5aa166c5 llc_build_and_send_ui_pkt +EXPORT_SYMBOL net/llc/llc 0xbabb8401 llc_set_station_handler +EXPORT_SYMBOL net/llc/llc 0xc0719d8e llc_mac_hdr_init +EXPORT_SYMBOL net/llc/llc 0xc381a8ce llc_sap_find +EXPORT_SYMBOL net/llc/llc 0xe0a63def llc_add_pack +EXPORT_SYMBOL net/mac80211/mac80211 0x03fb188b ieee80211_beacon_get_tim +EXPORT_SYMBOL net/mac80211/mac80211 0x0612d328 ieee80211_rx_ba_timer_expired EXPORT_SYMBOL net/mac80211/mac80211 0x063f5308 ieee80211_get_tkip_p1k_iv -EXPORT_SYMBOL net/mac80211/mac80211 0x063f9033 ieee80211_sta_eosp -EXPORT_SYMBOL net/mac80211/mac80211 0x08945614 ieee80211_txq_airtime_check -EXPORT_SYMBOL net/mac80211/mac80211 0x09b0243d ieee80211_nullfunc_get -EXPORT_SYMBOL net/mac80211/mac80211 0x0be40cce ieee80211_connection_loss -EXPORT_SYMBOL net/mac80211/mac80211 0x0fa95f27 rate_control_set_rates -EXPORT_SYMBOL net/mac80211/mac80211 0x13e584ee ieee80211_report_wowlan_wakeup -EXPORT_SYMBOL net/mac80211/mac80211 0x14b48adb ieee80211_get_buffered_bc -EXPORT_SYMBOL net/mac80211/mac80211 0x1697ebcb ieee80211_schedule_txq -EXPORT_SYMBOL net/mac80211/mac80211 0x16b0d0ce ieee80211_mark_rx_ba_filtered_frames -EXPORT_SYMBOL net/mac80211/mac80211 0x16d8ef1c ieee80211_next_txq +EXPORT_SYMBOL net/mac80211/mac80211 0x094e51dd ieee80211_iter_keys +EXPORT_SYMBOL net/mac80211/mac80211 0x0eb45e3e ieee80211_pspoll_get +EXPORT_SYMBOL net/mac80211/mac80211 0x0f65433e ieee80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/mac80211/mac80211 0x0fb2b087 rate_control_set_rates +EXPORT_SYMBOL net/mac80211/mac80211 0x1115f27f ieee80211_sta_block_awake +EXPORT_SYMBOL net/mac80211/mac80211 0x114b2832 ieee80211_queue_work +EXPORT_SYMBOL net/mac80211/mac80211 0x14b4cf44 ieee80211_stop_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x154d6f77 ieee80211_txq_schedule_start +EXPORT_SYMBOL net/mac80211/mac80211 0x17e4bf11 ieee80211_mark_rx_ba_filtered_frames +EXPORT_SYMBOL net/mac80211/mac80211 0x182da0e3 ieee80211_start_tx_ba_cb_irqsafe EXPORT_SYMBOL net/mac80211/mac80211 0x183dcd3b ieee80211_get_key_rx_seq EXPORT_SYMBOL net/mac80211/mac80211 0x19f37f0d ieee80211_update_p2p_noa EXPORT_SYMBOL net/mac80211/mac80211 0x1a66fc17 ieee80211_get_tkip_rx_p1k -EXPORT_SYMBOL net/mac80211/mac80211 0x1d45b5f4 ieee80211_sta_pspoll -EXPORT_SYMBOL net/mac80211/mac80211 0x20c7c064 ieee80211_cqm_rssi_notify -EXPORT_SYMBOL net/mac80211/mac80211 0x235e4d63 ieee80211_rts_duration -EXPORT_SYMBOL net/mac80211/mac80211 0x2a1bef17 ieee80211_nan_func_match -EXPORT_SYMBOL net/mac80211/mac80211 0x2f367e71 ieee80211_rx_ba_timer_expired -EXPORT_SYMBOL net/mac80211/mac80211 0x380ef112 ieee80211_iter_keys_rcu -EXPORT_SYMBOL net/mac80211/mac80211 0x38f30f2a ieee80211_scan_completed -EXPORT_SYMBOL net/mac80211/mac80211 0x3aba88fd ieee80211_iter_keys -EXPORT_SYMBOL net/mac80211/mac80211 0x3de6e3ee ieee80211_tdls_oper_request -EXPORT_SYMBOL net/mac80211/mac80211 0x3e437e87 __ieee80211_get_assoc_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x3e673650 ieee80211_wake_queue -EXPORT_SYMBOL net/mac80211/mac80211 0x4299fea1 ieee80211_tx_dequeue -EXPORT_SYMBOL net/mac80211/mac80211 0x49c72439 __ieee80211_create_tpt_led_trigger -EXPORT_SYMBOL net/mac80211/mac80211 0x4afd2447 ieee80211_find_sta -EXPORT_SYMBOL net/mac80211/mac80211 0x517cc8a6 ieee80211_tx_status -EXPORT_SYMBOL net/mac80211/mac80211 0x54177861 ieee80211_beacon_set_cntdwn -EXPORT_SYMBOL net/mac80211/mac80211 0x590d6d51 ieee80211_disable_rssi_reports -EXPORT_SYMBOL net/mac80211/mac80211 0x5bcb3c47 ieee80211_unregister_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x5c42f646 ieee80211_rx_list -EXPORT_SYMBOL net/mac80211/mac80211 0x5ebe4b42 ieee80211_queue_delayed_work -EXPORT_SYMBOL net/mac80211/mac80211 0x60234e07 ieee80211_sched_scan_stopped -EXPORT_SYMBOL net/mac80211/mac80211 0x62dface0 ieee80211_stop_rx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0x64839292 ieee80211_radar_detected -EXPORT_SYMBOL net/mac80211/mac80211 0x64f773ad ieee80211_stop_tx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0x681699f2 __ieee80211_get_tx_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x6a58bc8a ieee80211_restart_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x71217f2f ieee80211_tx_rate_update -EXPORT_SYMBOL net/mac80211/mac80211 0x71c13803 ieee80211_sta_register_airtime -EXPORT_SYMBOL net/mac80211/mac80211 0x75ec6869 ieee80211_sta_set_buffered -EXPORT_SYMBOL net/mac80211/mac80211 0x7831602b ieee80211_txq_get_depth -EXPORT_SYMBOL net/mac80211/mac80211 0x81bd7c2f ieee80211_get_fils_discovery_tmpl -EXPORT_SYMBOL net/mac80211/mac80211 0x83918065 ieee80211_pspoll_get -EXPORT_SYMBOL net/mac80211/mac80211 0x841e89be ieee80211_enable_rssi_reports -EXPORT_SYMBOL net/mac80211/mac80211 0x8466b8ec ieee80211_generic_frame_duration -EXPORT_SYMBOL net/mac80211/mac80211 0x88387ac5 ieee80211_rate_control_unregister -EXPORT_SYMBOL net/mac80211/mac80211 0x89b9629f ieee80211_cqm_beacon_loss_notify -EXPORT_SYMBOL net/mac80211/mac80211 0x89ebdfbc ieee80211_rx_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x904d8088 ieee80211_proberesp_get -EXPORT_SYMBOL net/mac80211/mac80211 0x95cfdb67 ieee80211_rx_napi -EXPORT_SYMBOL net/mac80211/mac80211 0x95f35378 ieee80211_reserve_tid -EXPORT_SYMBOL net/mac80211/mac80211 0x96d8d6fa ieee80211_rate_control_register -EXPORT_SYMBOL net/mac80211/mac80211 0x979078ca ieee80211_return_txq +EXPORT_SYMBOL net/mac80211/mac80211 0x2051b384 ieee80211_tx_rate_update +EXPORT_SYMBOL net/mac80211/mac80211 0x24b2693c ieee80211_disable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0x26a58198 ieee80211_beacon_update_cntdwn +EXPORT_SYMBOL net/mac80211/mac80211 0x28074ea0 ieee80211_sched_scan_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0x2d57d8a6 ieee80211_get_buffered_bc +EXPORT_SYMBOL net/mac80211/mac80211 0x3051d5fa ieee80211_chswitch_done +EXPORT_SYMBOL net/mac80211/mac80211 0x3375f38a ieee80211_tx_status_8023 +EXPORT_SYMBOL net/mac80211/mac80211 0x3444d47e ieee80211_free_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x3d04a846 ieee80211_sta_set_buffered +EXPORT_SYMBOL net/mac80211/mac80211 0x3e0b6ba8 ieee80211_sched_scan_results +EXPORT_SYMBOL net/mac80211/mac80211 0x3e43b32b ieee80211_get_fils_discovery_tmpl +EXPORT_SYMBOL net/mac80211/mac80211 0x3e9d2f4a ieee80211_txq_may_transmit +EXPORT_SYMBOL net/mac80211/mac80211 0x418f576c ieee80211_rts_get +EXPORT_SYMBOL net/mac80211/mac80211 0x41f19731 ieee80211_rate_control_unregister +EXPORT_SYMBOL net/mac80211/mac80211 0x467d1871 __ieee80211_create_tpt_led_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0x4dd202a9 ieee80211_wake_queue +EXPORT_SYMBOL net/mac80211/mac80211 0x4ed62396 ieee80211_alloc_hw_nm +EXPORT_SYMBOL net/mac80211/mac80211 0x50284e8a ieee80211_sta_pspoll +EXPORT_SYMBOL net/mac80211/mac80211 0x5411798c ieee80211_sta_uapsd_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0x575972e2 ieee80211_stop_queue +EXPORT_SYMBOL net/mac80211/mac80211 0x57da26d4 ieee80211_tx_prepare_skb +EXPORT_SYMBOL net/mac80211/mac80211 0x5c4d43b0 ieee80211_find_sta +EXPORT_SYMBOL net/mac80211/mac80211 0x5eeef4d7 ieee80211_report_wowlan_wakeup +EXPORT_SYMBOL net/mac80211/mac80211 0x60d9f0cf ieee80211_disconnect +EXPORT_SYMBOL net/mac80211/mac80211 0x6544becd ieee80211_register_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x6ee17175 ieee80211_sta_eosp +EXPORT_SYMBOL net/mac80211/mac80211 0x727ea159 ieee80211_unregister_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x7a20539f ieee80211_generic_frame_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x7be82afc ieee80211_send_bar +EXPORT_SYMBOL net/mac80211/mac80211 0x7f4e811c ieee80211_beacon_loss +EXPORT_SYMBOL net/mac80211/mac80211 0x7f5dd533 ieee80211_tx_status_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x81f19164 ieee80211_return_txq +EXPORT_SYMBOL net/mac80211/mac80211 0x857e5b39 ieee80211_tdls_oper_request +EXPORT_SYMBOL net/mac80211/mac80211 0x8b747985 ieee80211_beacon_set_cntdwn +EXPORT_SYMBOL net/mac80211/mac80211 0x8b9c59ab ieee80211_scan_completed +EXPORT_SYMBOL net/mac80211/mac80211 0x8cbd4348 ieee80211_txq_airtime_check +EXPORT_SYMBOL net/mac80211/mac80211 0x8e8f205e wiphy_to_ieee80211_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x8f5ba9ec ieee80211_cqm_rssi_notify +EXPORT_SYMBOL net/mac80211/mac80211 0x91c00cbc ieee80211_stop_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x975ae35a ieee80211_nan_func_match +EXPORT_SYMBOL net/mac80211/mac80211 0x9850418c ieee80211_queue_delayed_work EXPORT_SYMBOL net/mac80211/mac80211 0x991a0ca0 ieee80211_parse_p2p_noa -EXPORT_SYMBOL net/mac80211/mac80211 0x9a23c351 ieee80211_stop_tx_ba_cb_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x9aa09f10 ieee80211_sta_ps_transition -EXPORT_SYMBOL net/mac80211/mac80211 0x9dfdca43 ieee80211_nan_func_terminated -EXPORT_SYMBOL net/mac80211/mac80211 0xa43fed87 ieee80211_manage_rx_ba_offl -EXPORT_SYMBOL net/mac80211/mac80211 0xa51f2009 ieee80211_beacon_get_tim -EXPORT_SYMBOL net/mac80211/mac80211 0xaf38afbc ieee80211_chswitch_done -EXPORT_SYMBOL net/mac80211/mac80211 0xb1ddb140 ieee80211_tx_status_8023 -EXPORT_SYMBOL net/mac80211/mac80211 0xb4acc6cd ieee80211_get_tkip_p2k -EXPORT_SYMBOL net/mac80211/mac80211 0xb76cc99d ieee80211_sta_block_awake -EXPORT_SYMBOL net/mac80211/mac80211 0xbab812dd ieee80211_csa_finish -EXPORT_SYMBOL net/mac80211/mac80211 0xbbd18882 ieee80211_send_eosp_nullfunc -EXPORT_SYMBOL net/mac80211/mac80211 0xbd5e5114 wiphy_to_ieee80211_hw -EXPORT_SYMBOL net/mac80211/mac80211 0xc0e8bd49 ieee80211_probereq_get -EXPORT_SYMBOL net/mac80211/mac80211 0xc3b020a9 ieee80211_txq_schedule_start -EXPORT_SYMBOL net/mac80211/mac80211 0xc57ab093 ieee80211_beacon_loss -EXPORT_SYMBOL net/mac80211/mac80211 0xc643596d ieee80211_report_low_ack -EXPORT_SYMBOL net/mac80211/mac80211 0xc65eaabe ieee80211_tx_status_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0xc713afba ieee80211_rts_get -EXPORT_SYMBOL net/mac80211/mac80211 0xc7d76ad5 ieee80211_unreserve_tid -EXPORT_SYMBOL net/mac80211/mac80211 0xc9aafe34 ieee80211_get_tx_rates -EXPORT_SYMBOL net/mac80211/mac80211 0xca42a6f7 ieee80211_register_hw -EXPORT_SYMBOL net/mac80211/mac80211 0xcad11383 __ieee80211_get_radio_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0xcaf20bdb ieee80211_queue_work -EXPORT_SYMBOL net/mac80211/mac80211 0xccfb0baa ieee80211_tx_prepare_skb -EXPORT_SYMBOL net/mac80211/mac80211 0xcddadc69 ieee80211_start_tx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0xd01fc6da ieee80211_alloc_hw_nm -EXPORT_SYMBOL net/mac80211/mac80211 0xd131afc3 ieee80211_ctstoself_get -EXPORT_SYMBOL net/mac80211/mac80211 0xd5287332 ieee80211_queue_stopped -EXPORT_SYMBOL net/mac80211/mac80211 0xd6d7149c ieee80211_ap_probereq_get -EXPORT_SYMBOL net/mac80211/mac80211 0xd7a9eb57 ieee80211_beacon_cntdwn_is_complete -EXPORT_SYMBOL net/mac80211/mac80211 0xd8592ca8 ieee80211_free_txskb -EXPORT_SYMBOL net/mac80211/mac80211 0xdad9abd1 ieee80211_sched_scan_results -EXPORT_SYMBOL net/mac80211/mac80211 0xde62d7b6 ieee80211_beacon_update_cntdwn -EXPORT_SYMBOL net/mac80211/mac80211 0xdec89e19 ieee80211_stop_queues -EXPORT_SYMBOL net/mac80211/mac80211 0xe2096f6f ieee80211_start_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x9af98418 ieee80211_report_low_ack +EXPORT_SYMBOL net/mac80211/mac80211 0x9cbfa409 ieee80211_unreserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0xa01a9a8b ieee80211_reserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0xa13e5c07 ieee80211_send_eosp_nullfunc +EXPORT_SYMBOL net/mac80211/mac80211 0xa19168b1 ieee80211_queue_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0xa41b7d82 ieee80211_proberesp_get +EXPORT_SYMBOL net/mac80211/mac80211 0xab7cfb2f ieee80211_enable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0xad13a98e ieee80211_rx_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xb2231a66 ieee80211_sta_ps_transition +EXPORT_SYMBOL net/mac80211/mac80211 0xb231b23b __ieee80211_get_radio_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xb5e703c7 ieee80211_wake_queues +EXPORT_SYMBOL net/mac80211/mac80211 0xbb4f5f98 ieee80211_beacon_get_template +EXPORT_SYMBOL net/mac80211/mac80211 0xbbbdd187 ieee80211_iter_keys_rcu +EXPORT_SYMBOL net/mac80211/mac80211 0xbd4c735e ieee80211_stop_rx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0xc612e40b ieee80211_connection_loss +EXPORT_SYMBOL net/mac80211/mac80211 0xc6efb486 ieee80211_rate_control_register +EXPORT_SYMBOL net/mac80211/mac80211 0xc7f20443 ieee80211_stop_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xc83848c8 ieee80211_tx_status_ext +EXPORT_SYMBOL net/mac80211/mac80211 0xcb519bdd ieee80211_manage_rx_ba_offl +EXPORT_SYMBOL net/mac80211/mac80211 0xcc4d2ffb ieee80211_get_tx_rates +EXPORT_SYMBOL net/mac80211/mac80211 0xcfbc20fa ieee80211_tx_dequeue +EXPORT_SYMBOL net/mac80211/mac80211 0xcff74a45 ieee80211_get_tkip_p2k +EXPORT_SYMBOL net/mac80211/mac80211 0xd58b8e85 ieee80211_nullfunc_get +EXPORT_SYMBOL net/mac80211/mac80211 0xd69311ed ieee80211_restart_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xd8be0ffa __ieee80211_get_tx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xd8f1f37d __ieee80211_get_rx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xd92d610c ieee80211_rx_list +EXPORT_SYMBOL net/mac80211/mac80211 0xda8680b0 __ieee80211_get_assoc_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xdb56b32c ieee80211_start_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0xdd7326ee ieee80211_free_txskb +EXPORT_SYMBOL net/mac80211/mac80211 0xe0b5eb62 ieee80211_schedule_txq +EXPORT_SYMBOL net/mac80211/mac80211 0xe246a9ed ieee80211_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0xe2d01559 ieee80211_rts_duration EXPORT_SYMBOL net/mac80211/mac80211 0xe5752af3 ieee80211_get_bssid -EXPORT_SYMBOL net/mac80211/mac80211 0xea2cd4c4 ieee80211_ctstoself_duration -EXPORT_SYMBOL net/mac80211/mac80211 0xece0af2c ieee80211_tx_status_ext -EXPORT_SYMBOL net/mac80211/mac80211 0xececfc6c ieee80211_sta_uapsd_trigger -EXPORT_SYMBOL net/mac80211/mac80211 0xf01cd18c ieee80211_free_hw -EXPORT_SYMBOL net/mac80211/mac80211 0xf0e43666 ieee80211_wake_queues -EXPORT_SYMBOL net/mac80211/mac80211 0xf131e8c5 ieee80211_disconnect -EXPORT_SYMBOL net/mac80211/mac80211 0xf3db2a1c ieee80211_txq_may_transmit -EXPORT_SYMBOL net/mac80211/mac80211 0xf4582602 ieee80211_send_bar -EXPORT_SYMBOL net/mac80211/mac80211 0xf76ac60c ieee80211_stop_queue -EXPORT_SYMBOL net/mac80211/mac80211 0xfb6ac711 __ieee80211_get_rx_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0xfc0cd03e ieee80211_beacon_get_template -EXPORT_SYMBOL net/mac80211/mac80211 0xff0e2949 ieee80211_get_unsol_bcast_probe_resp_tmpl -EXPORT_SYMBOL net/mac802154/mac802154 0x1773fbc4 ieee802154_free_hw -EXPORT_SYMBOL net/mac802154/mac802154 0x383e7fa8 ieee802154_rx_irqsafe -EXPORT_SYMBOL net/mac802154/mac802154 0x51f95aec ieee802154_register_hw -EXPORT_SYMBOL net/mac802154/mac802154 0x534d4629 ieee802154_xmit_complete -EXPORT_SYMBOL net/mac802154/mac802154 0x568b0489 ieee802154_alloc_hw -EXPORT_SYMBOL net/mac802154/mac802154 0xa16e80a9 ieee802154_unregister_hw -EXPORT_SYMBOL net/mac802154/mac802154 0xb3e66b22 ieee802154_wake_queue -EXPORT_SYMBOL net/mac802154/mac802154 0xc9a9f282 ieee802154_stop_queue -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x1ceeefe5 unregister_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x1ed6b33c ip_vs_new_conn_out -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x2e192246 ip_vs_nfct_expect_related -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x3d4dbf46 ip_vs_conn_in_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x5fa532c8 unregister_ip_vs_app -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x7806f21b ip_vs_proto_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x941cab0e ip_vs_proto_data_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x9601a424 register_ip_vs_app -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xa6473403 ip_vs_scheduler_err -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xaf113c24 ip_vs_conn_put -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xb8bbdc8c ip_vs_tcp_conn_listen -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xbf2465d0 ip_vs_conn_out_get +EXPORT_SYMBOL net/mac80211/mac80211 0xe6be4a6d ieee80211_beacon_cntdwn_is_complete +EXPORT_SYMBOL net/mac80211/mac80211 0xe786196a ieee80211_sta_register_airtime +EXPORT_SYMBOL net/mac80211/mac80211 0xeb34957f ieee80211_nan_func_terminated +EXPORT_SYMBOL net/mac80211/mac80211 0xecdb9baf ieee80211_txq_get_depth +EXPORT_SYMBOL net/mac80211/mac80211 0xef3446e1 ieee80211_ap_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0xf273ad7f ieee80211_radar_detected +EXPORT_SYMBOL net/mac80211/mac80211 0xf50d8507 ieee80211_csa_finish +EXPORT_SYMBOL net/mac80211/mac80211 0xf6c8f413 ieee80211_rx_napi +EXPORT_SYMBOL net/mac80211/mac80211 0xf94ae72a ieee80211_next_txq +EXPORT_SYMBOL net/mac80211/mac80211 0xf97772df ieee80211_ctstoself_duration +EXPORT_SYMBOL net/mac80211/mac80211 0xfc1e2f7d ieee80211_get_unsol_bcast_probe_resp_tmpl +EXPORT_SYMBOL net/mac80211/mac80211 0xfe185dc1 ieee80211_tx_status +EXPORT_SYMBOL net/mac80211/mac80211 0xff9ec541 ieee80211_ctstoself_get +EXPORT_SYMBOL net/mac802154/mac802154 0x20f311ea ieee802154_xmit_complete +EXPORT_SYMBOL net/mac802154/mac802154 0x3107cfc1 ieee802154_stop_queue +EXPORT_SYMBOL net/mac802154/mac802154 0x6087a969 ieee802154_wake_queue +EXPORT_SYMBOL net/mac802154/mac802154 0x903884db ieee802154_register_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xa3a6cad6 ieee802154_alloc_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xb270bbd1 ieee802154_free_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xcc1e24f8 ieee802154_unregister_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xfb41fde8 ieee802154_rx_irqsafe +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x2955df52 ip_vs_conn_in_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x3096feb3 ip_vs_proto_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x5287ef8a unregister_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x63d022b0 register_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x7bd40018 register_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x7eb9d9c0 ip_vs_conn_put +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x8d091516 ip_vs_scheduler_err +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xa3dbc95c ip_vs_conn_new +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xa5eaa9cd ip_vs_conn_out_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xabdf290a unregister_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xb43356f8 ip_vs_new_conn_out +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xce16d32a ip_vs_tcp_conn_listen EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xdb06be55 register_ip_vs_app_inc -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xf1889f9d register_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xfcd8b4ed ip_vs_conn_new -EXPORT_SYMBOL net/netfilter/nf_conntrack 0xdfc420a7 nf_ct_ext_add +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xe8e531d3 register_ip_vs_app_inc +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xf5cdc017 ip_vs_proto_data_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xfd70848e ip_vs_nfct_expect_related +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x375e4615 nf_ct_ext_add +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x3b08a8f0 nf_ct_destroy EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0xf2a36612 pptp_msg_name -EXPORT_SYMBOL net/netfilter/nf_nat 0x0168e576 nf_nat_mangle_udp_packet -EXPORT_SYMBOL net/netfilter/nf_nat 0x204ad939 nf_nat_follow_master -EXPORT_SYMBOL net/netfilter/nf_nat 0xb32cd7d1 nf_nat_setup_info -EXPORT_SYMBOL net/netfilter/nf_nat 0xef7a362f __nf_nat_mangle_tcp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0x463cd367 nf_nat_follow_master +EXPORT_SYMBOL net/netfilter/nf_nat 0x508793eb nf_nat_setup_info +EXPORT_SYMBOL net/netfilter/nf_nat 0x744f6bb1 nf_nat_mangle_udp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0x92c8cf64 __nf_nat_mangle_tcp_packet EXPORT_SYMBOL net/netfilter/nft_fib 0xb3c36947 nft_fib_policy EXPORT_SYMBOL net/netfilter/x_tables 0x0d7f5fcd xt_alloc_entry_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0x158eaf71 xt_register_matches -EXPORT_SYMBOL net/netfilter/x_tables 0x17590239 xt_find_table +EXPORT_SYMBOL net/netfilter/x_tables 0x0e342c1d xt_unregister_targets +EXPORT_SYMBOL net/netfilter/x_tables 0x197edc25 xt_register_target EXPORT_SYMBOL net/netfilter/x_tables 0x3bf9d084 xt_check_table_hooks +EXPORT_SYMBOL net/netfilter/x_tables 0x3dc0d141 xt_find_match EXPORT_SYMBOL net/netfilter/x_tables 0x48012e28 xt_check_proc_name +EXPORT_SYMBOL net/netfilter/x_tables 0x4c9d4a42 xt_register_targets EXPORT_SYMBOL net/netfilter/x_tables 0x50873741 xt_compat_init_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0x53960d43 xt_register_match -EXPORT_SYMBOL net/netfilter/x_tables 0x79e13747 xt_find_match -EXPORT_SYMBOL net/netfilter/x_tables 0x8023a604 xt_unregister_matches -EXPORT_SYMBOL net/netfilter/x_tables 0x82536247 xt_unregister_target -EXPORT_SYMBOL net/netfilter/x_tables 0x869ef494 xt_register_target -EXPORT_SYMBOL net/netfilter/x_tables 0x8f9fce9c xt_unregister_match -EXPORT_SYMBOL net/netfilter/x_tables 0x9170364a xt_register_targets +EXPORT_SYMBOL net/netfilter/x_tables 0x9138710f xt_unregister_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 0xb18a1ef0 xt_unregister_targets +EXPORT_SYMBOL net/netfilter/x_tables 0xb7a0dc42 xt_unregister_target +EXPORT_SYMBOL net/netfilter/x_tables 0xc475f734 xt_unregister_matches 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 0xdd22dddc xt_find_table +EXPORT_SYMBOL net/netfilter/x_tables 0xdf8bc41d xt_register_matches EXPORT_SYMBOL net/netfilter/x_tables 0xe204e042 xt_free_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0xfbecad46 xt_register_match EXPORT_SYMBOL net/netfilter/x_tables 0xfef779fa xt_find_jump_offset -EXPORT_SYMBOL net/nfc/hci/hci 0x0153974b nfc_hci_recv_frame -EXPORT_SYMBOL net/nfc/hci/hci 0x1c141d7d nfc_hci_get_clientdata -EXPORT_SYMBOL net/nfc/hci/hci 0x21da741a nfc_hci_free_device -EXPORT_SYMBOL net/nfc/hci/hci 0x28ba829d nfc_hci_send_cmd -EXPORT_SYMBOL net/nfc/hci/hci 0x371d6f9a nfc_hci_reset_pipes_per_host -EXPORT_SYMBOL net/nfc/hci/hci 0x44a32972 nfc_hci_disconnect_gate -EXPORT_SYMBOL net/nfc/hci/hci 0x694eaf29 nfc_hci_get_param -EXPORT_SYMBOL net/nfc/hci/hci 0x704dff60 nfc_hci_reset_pipes -EXPORT_SYMBOL net/nfc/hci/hci 0x7347da0c nfc_hci_target_discovered +EXPORT_SYMBOL net/nfc/hci/hci 0x0ff840c4 nfc_hci_reset_pipes_per_host +EXPORT_SYMBOL net/nfc/hci/hci 0x1028562f nfc_hci_get_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0x107e8d4e nfc_hci_allocate_device +EXPORT_SYMBOL net/nfc/hci/hci 0x1dc083d0 nfc_hci_driver_failure +EXPORT_SYMBOL net/nfc/hci/hci 0x22b9073b nfc_hci_send_cmd +EXPORT_SYMBOL net/nfc/hci/hci 0x24fd9de5 nfc_hci_recv_frame +EXPORT_SYMBOL net/nfc/hci/hci 0x465507ea nfc_hci_send_event +EXPORT_SYMBOL net/nfc/hci/hci 0x51965444 nfc_hci_set_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0x55c63f60 nfc_llc_stop +EXPORT_SYMBOL net/nfc/hci/hci 0x588c55c5 nfc_hci_reset_pipes +EXPORT_SYMBOL net/nfc/hci/hci 0x5a967b57 nfc_hci_connect_gate EXPORT_SYMBOL net/nfc/hci/hci 0x74fe3670 nfc_hci_result_to_errno -EXPORT_SYMBOL net/nfc/hci/hci 0x78e3815d nfc_hci_driver_failure -EXPORT_SYMBOL net/nfc/hci/hci 0x96b28e50 nfc_hci_allocate_device -EXPORT_SYMBOL net/nfc/hci/hci 0xa960fa8e nfc_hci_register_device -EXPORT_SYMBOL net/nfc/hci/hci 0xb7aa984a nfc_llc_stop -EXPORT_SYMBOL net/nfc/hci/hci 0xbb0f2d82 nfc_hci_unregister_device -EXPORT_SYMBOL net/nfc/hci/hci 0xbc045eee nfc_hci_connect_gate -EXPORT_SYMBOL net/nfc/hci/hci 0xbc46768d nfc_hci_set_clientdata -EXPORT_SYMBOL net/nfc/hci/hci 0xc252cfa7 nfc_hci_set_param -EXPORT_SYMBOL net/nfc/hci/hci 0xd39c24be nfc_llc_start +EXPORT_SYMBOL net/nfc/hci/hci 0x88c54095 nfc_llc_start +EXPORT_SYMBOL net/nfc/hci/hci 0x904ad683 nfc_hci_unregister_device +EXPORT_SYMBOL net/nfc/hci/hci 0x9abd177f nfc_hci_disconnect_all_gates +EXPORT_SYMBOL net/nfc/hci/hci 0xa4193122 nfc_hci_send_cmd_async +EXPORT_SYMBOL net/nfc/hci/hci 0xa5949aa2 nfc_hci_register_device +EXPORT_SYMBOL net/nfc/hci/hci 0xab3d4dd6 nfc_hci_free_device +EXPORT_SYMBOL net/nfc/hci/hci 0xc847d457 nfc_hci_set_param +EXPORT_SYMBOL net/nfc/hci/hci 0xd297a9ed nfc_hci_get_param EXPORT_SYMBOL net/nfc/hci/hci 0xdd231c55 nfc_hci_sak_to_protocol -EXPORT_SYMBOL net/nfc/hci/hci 0xf34aafde nfc_hci_disconnect_all_gates -EXPORT_SYMBOL net/nfc/hci/hci 0xf9752f9f nfc_hci_send_cmd_async -EXPORT_SYMBOL net/nfc/hci/hci 0xfaa2f510 nfc_hci_send_event -EXPORT_SYMBOL net/nfc/nci/nci 0x0a990245 nci_hci_clear_all_pipes -EXPORT_SYMBOL net/nfc/nci/nci 0x0c0cc41e nci_conn_max_data_pkt_payload_size -EXPORT_SYMBOL net/nfc/nci/nci 0x0daf6520 nci_hci_connect_gate -EXPORT_SYMBOL net/nfc/nci/nci 0x0db5af80 nci_nfcee_mode_set -EXPORT_SYMBOL net/nfc/nci/nci 0x132455bf nci_prop_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0x179db8ef nci_hci_set_param -EXPORT_SYMBOL net/nfc/nci/nci 0x17da219a nci_core_conn_close -EXPORT_SYMBOL net/nfc/nci/nci 0x1dd60ec5 nci_register_device -EXPORT_SYMBOL net/nfc/nci/nci 0x2f9576e5 nci_hci_send_event -EXPORT_SYMBOL net/nfc/nci/nci 0x3669f894 nci_req_complete -EXPORT_SYMBOL net/nfc/nci/nci 0x3c45284d nci_hci_send_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0x3d2ca372 nci_nfcee_discover -EXPORT_SYMBOL net/nfc/nci/nci 0x47c76e77 nci_recv_frame -EXPORT_SYMBOL net/nfc/nci/nci 0x5594ac3c nci_nfcc_loopback -EXPORT_SYMBOL net/nfc/nci/nci 0x5825854b nci_send_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0x66fbfcb7 nci_core_conn_create -EXPORT_SYMBOL net/nfc/nci/nci 0x73d654a2 nci_core_init -EXPORT_SYMBOL net/nfc/nci/nci 0x819b5eac nci_unregister_device -EXPORT_SYMBOL net/nfc/nci/nci 0x83fa6257 nci_send_frame -EXPORT_SYMBOL net/nfc/nci/nci 0x924dafe2 nci_hci_get_param -EXPORT_SYMBOL net/nfc/nci/nci 0x981f2896 nci_send_data -EXPORT_SYMBOL net/nfc/nci/nci 0xa68a3dd4 nci_free_device -EXPORT_SYMBOL net/nfc/nci/nci 0xa81a9790 nci_get_conn_info_by_dest_type_params -EXPORT_SYMBOL net/nfc/nci/nci 0xabf9b503 nci_core_reset +EXPORT_SYMBOL net/nfc/hci/hci 0xdee476bf nfc_hci_target_discovered +EXPORT_SYMBOL net/nfc/hci/hci 0xeaf009c2 nfc_hci_disconnect_gate +EXPORT_SYMBOL net/nfc/nci/nci 0x06b553e0 nci_allocate_device +EXPORT_SYMBOL net/nfc/nci/nci 0x0a61b661 nci_core_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x0c470665 nci_recv_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x199b338e nci_core_reset +EXPORT_SYMBOL net/nfc/nci/nci 0x1e55ae6f nci_req_complete +EXPORT_SYMBOL net/nfc/nci/nci 0x2a33245f nci_hci_connect_gate +EXPORT_SYMBOL net/nfc/nci/nci 0x2f9b7584 nci_send_data +EXPORT_SYMBOL net/nfc/nci/nci 0x3c0cdf9d nci_hci_clear_all_pipes +EXPORT_SYMBOL net/nfc/nci/nci 0x4f4c5ad4 nci_get_conn_info_by_dest_type_params +EXPORT_SYMBOL net/nfc/nci/nci 0x510eecb4 nci_prop_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x69d517a3 nci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x6c1f88bb nci_free_device +EXPORT_SYMBOL net/nfc/nci/nci 0x6f7e5e6a nci_conn_max_data_pkt_payload_size +EXPORT_SYMBOL net/nfc/nci/nci 0x83717eb2 nci_unregister_device +EXPORT_SYMBOL net/nfc/nci/nci 0x899c53df nci_core_conn_create +EXPORT_SYMBOL net/nfc/nci/nci 0xa7eb963e nci_hci_send_event EXPORT_SYMBOL net/nfc/nci/nci 0xba490602 nci_to_errno -EXPORT_SYMBOL net/nfc/nci/nci 0xe823a230 nci_hci_open_pipe -EXPORT_SYMBOL net/nfc/nci/nci 0xe945cfc6 nci_hci_dev_session_init -EXPORT_SYMBOL net/nfc/nci/nci 0xf4b3508a nci_set_config -EXPORT_SYMBOL net/nfc/nci/nci 0xfc38965d nci_allocate_device -EXPORT_SYMBOL net/nfc/nci/nci 0xffa100c1 nci_core_cmd -EXPORT_SYMBOL net/nfc/nfc 0x1ed9bb69 nfc_tm_activated -EXPORT_SYMBOL net/nfc/nfc 0x2b689b23 nfc_fw_download_done -EXPORT_SYMBOL net/nfc/nfc 0x35fb6247 nfc_class -EXPORT_SYMBOL net/nfc/nfc 0x404d6aa2 __nfc_alloc_vendor_cmd_reply_skb -EXPORT_SYMBOL net/nfc/nfc 0x488ce446 nfc_find_se -EXPORT_SYMBOL net/nfc/nfc 0x48daac80 nfc_set_remote_general_bytes -EXPORT_SYMBOL net/nfc/nfc 0x4f8ce99e nfc_send_to_raw_sock -EXPORT_SYMBOL net/nfc/nfc 0x63de2295 nfc_unregister_device -EXPORT_SYMBOL net/nfc/nfc 0x67137bed nfc_dep_link_is_up -EXPORT_SYMBOL net/nfc/nfc 0x6e564f94 nfc_tm_deactivated -EXPORT_SYMBOL net/nfc/nfc 0x80de31d2 nfc_proto_unregister -EXPORT_SYMBOL net/nfc/nfc 0x8c2527c3 nfc_get_local_general_bytes -EXPORT_SYMBOL net/nfc/nfc 0x9644254a nfc_remove_se -EXPORT_SYMBOL net/nfc/nfc 0x97040503 nfc_se_connectivity -EXPORT_SYMBOL net/nfc/nfc 0x9b3aa158 nfc_alloc_recv_skb -EXPORT_SYMBOL net/nfc/nfc 0xaabe6be0 nfc_tm_data_received -EXPORT_SYMBOL net/nfc/nfc 0xada533e7 nfc_proto_register -EXPORT_SYMBOL net/nfc/nfc 0xae650cb1 nfc_vendor_cmd_reply -EXPORT_SYMBOL net/nfc/nfc 0xb47dfe31 nfc_add_se -EXPORT_SYMBOL net/nfc/nfc 0xb9ea1376 nfc_target_lost -EXPORT_SYMBOL net/nfc/nfc 0xbe16d41d nfc_register_device -EXPORT_SYMBOL net/nfc/nfc 0xbf43d202 nfc_driver_failure -EXPORT_SYMBOL net/nfc/nfc 0xcc9cab24 nfc_targets_found -EXPORT_SYMBOL net/nfc/nfc 0xe8cd94e0 nfc_allocate_device -EXPORT_SYMBOL net/nfc/nfc 0xf95a2ec3 nfc_se_transaction -EXPORT_SYMBOL net/nfc/nfc_digital 0x14cc1f16 nfc_digital_register_device -EXPORT_SYMBOL net/nfc/nfc_digital 0x6bd74b50 nfc_digital_allocate_device -EXPORT_SYMBOL net/nfc/nfc_digital 0xacf84674 nfc_digital_free_device -EXPORT_SYMBOL net/nfc/nfc_digital 0xfa5828a8 nfc_digital_unregister_device -EXPORT_SYMBOL net/phonet/phonet 0x3b2b87c2 pn_sock_get_port -EXPORT_SYMBOL net/phonet/phonet 0x3d629a98 phonet_proto_unregister -EXPORT_SYMBOL net/phonet/phonet 0x52cde2ee pn_sock_unhash -EXPORT_SYMBOL net/phonet/phonet 0x5bec004a phonet_stream_ops -EXPORT_SYMBOL net/phonet/phonet 0x7e6b2699 phonet_proto_register -EXPORT_SYMBOL net/phonet/phonet 0x8a18646b pn_skb_send -EXPORT_SYMBOL net/phonet/phonet 0xa48e916b phonet_header_ops -EXPORT_SYMBOL net/phonet/phonet 0xcefaed37 pn_sock_hash -EXPORT_SYMBOL net/rxrpc/rxrpc 0x02ecc61f rxrpc_kernel_end_call -EXPORT_SYMBOL net/rxrpc/rxrpc 0x142f633c rxrpc_get_server_data_key -EXPORT_SYMBOL net/rxrpc/rxrpc 0x16359af5 rxrpc_kernel_set_max_life -EXPORT_SYMBOL net/rxrpc/rxrpc 0x1b9dc62c rxrpc_kernel_send_data -EXPORT_SYMBOL net/rxrpc/rxrpc 0x1ddb911a rxrpc_kernel_recv_data +EXPORT_SYMBOL net/nfc/nci/nci 0xc06fc2b3 nci_hci_set_param +EXPORT_SYMBOL net/nfc/nci/nci 0xc6973d73 nci_hci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xc7502aaa nci_hci_get_param +EXPORT_SYMBOL net/nfc/nci/nci 0xc796e1fc nci_register_device +EXPORT_SYMBOL net/nfc/nci/nci 0xce372d6e nci_hci_dev_session_init +EXPORT_SYMBOL net/nfc/nci/nci 0xd73546bb nci_set_config +EXPORT_SYMBOL net/nfc/nci/nci 0xe406249b nci_nfcee_mode_set +EXPORT_SYMBOL net/nfc/nci/nci 0xe4287106 nci_core_conn_close +EXPORT_SYMBOL net/nfc/nci/nci 0xe4af64fd nci_nfcee_discover +EXPORT_SYMBOL net/nfc/nci/nci 0xea9cad69 nci_core_init +EXPORT_SYMBOL net/nfc/nci/nci 0xeb54f408 nci_hci_open_pipe +EXPORT_SYMBOL net/nfc/nci/nci 0xfea0745d nci_send_frame +EXPORT_SYMBOL net/nfc/nci/nci 0xff0a3b7b nci_nfcc_loopback +EXPORT_SYMBOL net/nfc/nfc 0x0c8a8d60 nfc_se_connectivity +EXPORT_SYMBOL net/nfc/nfc 0x0d388d69 nfc_allocate_device +EXPORT_SYMBOL net/nfc/nfc 0x21863c38 nfc_remove_se +EXPORT_SYMBOL net/nfc/nfc 0x2197378c nfc_set_remote_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0x30c04bb8 nfc_tm_activated +EXPORT_SYMBOL net/nfc/nfc 0x42966830 nfc_tm_deactivated +EXPORT_SYMBOL net/nfc/nfc 0x4a9f8e5d nfc_proto_unregister +EXPORT_SYMBOL net/nfc/nfc 0x4e7eea09 nfc_class +EXPORT_SYMBOL net/nfc/nfc 0x5b9b3e3d nfc_se_transaction +EXPORT_SYMBOL net/nfc/nfc 0x6272f81c nfc_unregister_device +EXPORT_SYMBOL net/nfc/nfc 0x633a30d2 nfc_register_device +EXPORT_SYMBOL net/nfc/nfc 0x6832545f nfc_tm_data_received +EXPORT_SYMBOL net/nfc/nfc 0x6dc8435e nfc_target_lost +EXPORT_SYMBOL net/nfc/nfc 0x8d2f542b nfc_add_se +EXPORT_SYMBOL net/nfc/nfc 0x96c241f2 __nfc_alloc_vendor_cmd_reply_skb +EXPORT_SYMBOL net/nfc/nfc 0xaf6a0c56 nfc_alloc_recv_skb +EXPORT_SYMBOL net/nfc/nfc 0xc94533dc nfc_proto_register +EXPORT_SYMBOL net/nfc/nfc 0xd4a431fa nfc_send_to_raw_sock +EXPORT_SYMBOL net/nfc/nfc 0xe1026b86 nfc_dep_link_is_up +EXPORT_SYMBOL net/nfc/nfc 0xe1545ccd nfc_driver_failure +EXPORT_SYMBOL net/nfc/nfc 0xe505e7d1 nfc_find_se +EXPORT_SYMBOL net/nfc/nfc 0xea2eb109 nfc_get_local_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0xf50b05e3 nfc_targets_found +EXPORT_SYMBOL net/nfc/nfc 0xfe09e22a nfc_vendor_cmd_reply +EXPORT_SYMBOL net/nfc/nfc 0xfe9d5a1d nfc_fw_download_done +EXPORT_SYMBOL net/nfc/nfc_digital 0x3f1ef28b nfc_digital_allocate_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x5b662542 nfc_digital_unregister_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x90ad1084 nfc_digital_free_device +EXPORT_SYMBOL net/nfc/nfc_digital 0xeba02549 nfc_digital_register_device +EXPORT_SYMBOL net/phonet/phonet 0x325d9127 pn_sock_unhash +EXPORT_SYMBOL net/phonet/phonet 0x5dd5c632 phonet_proto_unregister +EXPORT_SYMBOL net/phonet/phonet 0x5f26d59d pn_sock_get_port +EXPORT_SYMBOL net/phonet/phonet 0x67022209 pn_skb_send +EXPORT_SYMBOL net/phonet/phonet 0x98f166c2 phonet_proto_register +EXPORT_SYMBOL net/phonet/phonet 0x9ada70e0 phonet_stream_ops +EXPORT_SYMBOL net/phonet/phonet 0xa315f16a phonet_header_ops +EXPORT_SYMBOL net/phonet/phonet 0xba059389 pn_sock_hash +EXPORT_SYMBOL net/rxrpc/rxrpc 0x11d9ceed rxrpc_kernel_check_life +EXPORT_SYMBOL net/rxrpc/rxrpc 0x12155801 rxrpc_kernel_new_call_notification +EXPORT_SYMBOL net/rxrpc/rxrpc 0x17d25162 rxrpc_kernel_recv_data +EXPORT_SYMBOL net/rxrpc/rxrpc 0x21867541 key_type_rxrpc +EXPORT_SYMBOL net/rxrpc/rxrpc 0x2e2e308f rxrpc_get_server_data_key EXPORT_SYMBOL net/rxrpc/rxrpc 0x31bf3ca3 rxrpc_debug_id -EXPORT_SYMBOL net/rxrpc/rxrpc 0x543a1839 rxrpc_sock_set_min_security_level -EXPORT_SYMBOL net/rxrpc/rxrpc 0x5f6feaf8 rxrpc_kernel_get_epoch -EXPORT_SYMBOL net/rxrpc/rxrpc 0x67435076 rxrpc_get_null_key -EXPORT_SYMBOL net/rxrpc/rxrpc 0x6cdecf4a rxrpc_kernel_get_peer -EXPORT_SYMBOL net/rxrpc/rxrpc 0x773c431b rxrpc_kernel_get_reply_time -EXPORT_SYMBOL net/rxrpc/rxrpc 0x78ddd312 rxrpc_kernel_charge_accept -EXPORT_SYMBOL net/rxrpc/rxrpc 0x808717a4 rxrpc_kernel_get_srtt -EXPORT_SYMBOL net/rxrpc/rxrpc 0x847ca016 rxrpc_kernel_abort_call -EXPORT_SYMBOL net/rxrpc/rxrpc 0x9442c826 rxrpc_kernel_new_call_notification -EXPORT_SYMBOL net/rxrpc/rxrpc 0xb5c2b369 rxrpc_kernel_set_tx_length -EXPORT_SYMBOL net/rxrpc/rxrpc 0xbfc98df1 key_type_rxrpc -EXPORT_SYMBOL net/rxrpc/rxrpc 0xd08c82d4 rxrpc_kernel_begin_call -EXPORT_SYMBOL net/rxrpc/rxrpc 0xef9b1ad3 rxrpc_kernel_check_life -EXPORT_SYMBOL net/sctp/sctp 0x847c0bac sctp_do_peeloff -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x3110920e gss_pseudoflavor_to_service -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x70d8d62a gss_mech_get -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x73dd350e gss_mech_put -EXPORT_SYMBOL net/sunrpc/sunrpc 0x19e5b572 get_srcport -EXPORT_SYMBOL net/sunrpc/sunrpc 0x2eb35671 xdr_truncate_encode -EXPORT_SYMBOL net/sunrpc/sunrpc 0x9c51a51c xdr_restrict_buflen -EXPORT_SYMBOL net/sunrpc/sunrpc 0xfad18034 svc_pool_stats_open -EXPORT_SYMBOL net/tipc/tipc 0x92888a39 tipc_sk_fill_sock_diag -EXPORT_SYMBOL net/tipc/tipc 0xad890311 tipc_nl_sk_walk -EXPORT_SYMBOL net/tipc/tipc 0xc5bf397b tipc_dump_start -EXPORT_SYMBOL net/tipc/tipc 0xf01e74cb tipc_dump_done -EXPORT_SYMBOL net/tls/tls 0xb95c3b92 tls_get_record -EXPORT_SYMBOL net/wireless/cfg80211 0x00307b64 cfg80211_check_combinations -EXPORT_SYMBOL net/wireless/cfg80211 0x039c3286 ieee80211_data_to_8023_exthdr -EXPORT_SYMBOL net/wireless/cfg80211 0x05215e10 cfg80211_reg_can_beacon -EXPORT_SYMBOL net/wireless/cfg80211 0x065fe0f5 cfg80211_send_layer2_update -EXPORT_SYMBOL net/wireless/cfg80211 0x083b4680 cfg80211_iftype_allowed -EXPORT_SYMBOL net/wireless/cfg80211 0x09b5f75c ieee80211_get_channel_khz -EXPORT_SYMBOL net/wireless/cfg80211 0x0b8f34e3 cfg80211_pmksa_candidate_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x1137746c ieee80211_get_num_supported_channels +EXPORT_SYMBOL net/rxrpc/rxrpc 0x3eb4a672 rxrpc_kernel_send_data +EXPORT_SYMBOL net/rxrpc/rxrpc 0x4388ea13 rxrpc_kernel_set_tx_length +EXPORT_SYMBOL net/rxrpc/rxrpc 0x4449f50a rxrpc_kernel_begin_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0x584d4ba3 rxrpc_kernel_get_epoch +EXPORT_SYMBOL net/rxrpc/rxrpc 0x61a03c99 rxrpc_kernel_get_peer +EXPORT_SYMBOL net/rxrpc/rxrpc 0x63d6fd02 rxrpc_kernel_charge_accept +EXPORT_SYMBOL net/rxrpc/rxrpc 0x694653db rxrpc_kernel_set_max_life +EXPORT_SYMBOL net/rxrpc/rxrpc 0x7dd5d4e9 rxrpc_kernel_get_reply_time +EXPORT_SYMBOL net/rxrpc/rxrpc 0x8860f5a3 rxrpc_kernel_get_srtt +EXPORT_SYMBOL net/rxrpc/rxrpc 0xbac8db99 rxrpc_get_null_key +EXPORT_SYMBOL net/rxrpc/rxrpc 0xd67cd5e6 rxrpc_kernel_end_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0xe89546b2 rxrpc_kernel_abort_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0xfd056c66 rxrpc_sock_set_min_security_level +EXPORT_SYMBOL net/sctp/sctp 0x58b642a8 sctp_do_peeloff +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x4ed1326f gss_mech_put +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xd6230b09 gss_mech_get +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xe294c5d2 gss_pseudoflavor_to_service +EXPORT_SYMBOL net/sunrpc/sunrpc 0x1af211e7 get_srcport +EXPORT_SYMBOL net/sunrpc/sunrpc 0x2ee5956d xdr_restrict_buflen +EXPORT_SYMBOL net/sunrpc/sunrpc 0x40b99689 svc_pool_stats_open +EXPORT_SYMBOL net/sunrpc/sunrpc 0x99971a43 xdr_truncate_encode +EXPORT_SYMBOL net/tipc/tipc 0x063228a8 tipc_nl_sk_walk +EXPORT_SYMBOL net/tipc/tipc 0x61c06148 tipc_sk_fill_sock_diag +EXPORT_SYMBOL net/tipc/tipc 0xa20312cf tipc_dump_done +EXPORT_SYMBOL net/tipc/tipc 0xdcdf8a26 tipc_dump_start +EXPORT_SYMBOL net/tls/tls 0xa49372f8 tls_get_record +EXPORT_SYMBOL net/wireless/cfg80211 0x0044304a cfg80211_disconnected +EXPORT_SYMBOL net/wireless/cfg80211 0x013e1dd0 cfg80211_crit_proto_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0x02e4e755 cfg80211_gtk_rekey_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x04db3f91 cfg80211_radar_event +EXPORT_SYMBOL net/wireless/cfg80211 0x05312c1f cfg80211_any_usable_channels +EXPORT_SYMBOL net/wireless/cfg80211 0x095afda2 cfg80211_check_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0x0b4126c0 cfg80211_connect_done +EXPORT_SYMBOL net/wireless/cfg80211 0x0f1f9049 cfg80211_register_netdevice EXPORT_SYMBOL net/wireless/cfg80211 0x117aca91 cfg80211_merge_profile -EXPORT_SYMBOL net/wireless/cfg80211 0x138c82e3 cfg80211_ch_switch_started_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x140eb601 cfg80211_sched_scan_stopped_locked EXPORT_SYMBOL net/wireless/cfg80211 0x15a37cf3 cfg80211_calculate_bitrate EXPORT_SYMBOL net/wireless/cfg80211 0x1879fcbd bridge_tunnel_header +EXPORT_SYMBOL net/wireless/cfg80211 0x18eb0763 cfg80211_sta_opmode_change_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x18f0912c cfg80211_inform_bss_frame_data +EXPORT_SYMBOL net/wireless/cfg80211 0x192db1a3 cfg80211_auth_timeout EXPORT_SYMBOL net/wireless/cfg80211 0x1ce2497f reg_query_regdb_wmm -EXPORT_SYMBOL net/wireless/cfg80211 0x1fa20e8e cfg80211_ibss_joined -EXPORT_SYMBOL net/wireless/cfg80211 0x1faab507 cfg80211_iter_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0x1d72c129 cfg80211_tx_mgmt_expired +EXPORT_SYMBOL net/wireless/cfg80211 0x1e781670 cfg80211_cac_event EXPORT_SYMBOL net/wireless/cfg80211 0x2310adee ieee80211_bss_get_elem -EXPORT_SYMBOL net/wireless/cfg80211 0x25454993 wiphy_apply_custom_regulatory +EXPORT_SYMBOL net/wireless/cfg80211 0x233f8d11 cfg80211_conn_failed EXPORT_SYMBOL net/wireless/cfg80211 0x275269b3 ieee80211_ie_split_ric -EXPORT_SYMBOL net/wireless/cfg80211 0x27e22216 wiphy_free EXPORT_SYMBOL net/wireless/cfg80211 0x27efff25 ieee80211_s1g_channel_width EXPORT_SYMBOL net/wireless/cfg80211 0x2a5d816f cfg80211_chandef_valid -EXPORT_SYMBOL net/wireless/cfg80211 0x2ee39aa0 cfg80211_unlink_bss -EXPORT_SYMBOL net/wireless/cfg80211 0x34342472 cfg80211_reg_can_beacon_relax -EXPORT_SYMBOL net/wireless/cfg80211 0x3523cab6 cfg80211_scan_done -EXPORT_SYMBOL net/wireless/cfg80211 0x36179a13 cfg80211_ch_switch_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x3a4f46de cfg80211_inform_bss_frame_data -EXPORT_SYMBOL net/wireless/cfg80211 0x3d2e8345 __cfg80211_alloc_event_skb -EXPORT_SYMBOL net/wireless/cfg80211 0x3d680a27 cfg80211_new_sta +EXPORT_SYMBOL net/wireless/cfg80211 0x3194692c cfg80211_bss_iter +EXPORT_SYMBOL net/wireless/cfg80211 0x35ae6139 __cfg80211_alloc_reply_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x3a5759ee cfg80211_rx_assoc_resp +EXPORT_SYMBOL net/wireless/cfg80211 0x3cf6b789 cfg80211_new_sta EXPORT_SYMBOL net/wireless/cfg80211 0x3d8e5894 cfg80211_chandef_compatible -EXPORT_SYMBOL net/wireless/cfg80211 0x40e810fa cfg80211_report_obss_beacon_khz +EXPORT_SYMBOL net/wireless/cfg80211 0x3e404454 cfg80211_pmksa_candidate_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x3e4e2f2d wiphy_rfkill_start_polling +EXPORT_SYMBOL net/wireless/cfg80211 0x3f972496 ieee80211_get_channel_khz +EXPORT_SYMBOL net/wireless/cfg80211 0x3fdee4aa cfg80211_scan_done +EXPORT_SYMBOL net/wireless/cfg80211 0x418ab040 cfg80211_nan_func_terminated +EXPORT_SYMBOL net/wireless/cfg80211 0x42734167 cfg80211_michael_mic_failure EXPORT_SYMBOL net/wireless/cfg80211 0x43afadee ieee80211_radiotap_iterator_init -EXPORT_SYMBOL net/wireless/cfg80211 0x43e2fd85 cfg80211_remain_on_channel_expired -EXPORT_SYMBOL net/wireless/cfg80211 0x4808b424 cfg80211_external_auth_request -EXPORT_SYMBOL net/wireless/cfg80211 0x4f3f2393 cfg80211_inform_bss_data -EXPORT_SYMBOL net/wireless/cfg80211 0x50740b2b cfg80211_mgmt_tx_status -EXPORT_SYMBOL net/wireless/cfg80211 0x52353aaa cfg80211_update_owe_info_event -EXPORT_SYMBOL net/wireless/cfg80211 0x54bd3664 cfg80211_bss_color_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x557f69b6 cfg80211_michael_mic_failure -EXPORT_SYMBOL net/wireless/cfg80211 0x5f8cc4ac __cfg80211_alloc_reply_skb -EXPORT_SYMBOL net/wireless/cfg80211 0x606e0173 cfg80211_tdls_oper_request -EXPORT_SYMBOL net/wireless/cfg80211 0x60bf8017 regulatory_set_wiphy_regd_sync +EXPORT_SYMBOL net/wireless/cfg80211 0x44c525c4 cfg80211_rx_control_port +EXPORT_SYMBOL net/wireless/cfg80211 0x455f2074 cfg80211_mgmt_tx_status +EXPORT_SYMBOL net/wireless/cfg80211 0x46bf8e96 cfg80211_classify8021d +EXPORT_SYMBOL net/wireless/cfg80211 0x4e61a13d cfg80211_report_obss_beacon_khz +EXPORT_SYMBOL net/wireless/cfg80211 0x4f1abab0 cfg80211_ch_switch_started_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x4f661f7d ieee80211_get_hdrlen_from_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x4f7760ca wiphy_unregister +EXPORT_SYMBOL net/wireless/cfg80211 0x5a9afb3a __cfg80211_alloc_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x5b8e8b63 cfg80211_probe_status +EXPORT_SYMBOL net/wireless/cfg80211 0x5d0d8388 cfg80211_get_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x5f427f14 wiphy_apply_custom_regulatory +EXPORT_SYMBOL net/wireless/cfg80211 0x6232d4f6 regulatory_pre_cac_allowed EXPORT_SYMBOL net/wireless/cfg80211 0x652aeedf ieee80211_mandatory_rates -EXPORT_SYMBOL net/wireless/cfg80211 0x653becec cfg80211_ft_event -EXPORT_SYMBOL net/wireless/cfg80211 0x69433699 cfg80211_sched_scan_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0x661746a6 cfg80211_chandef_usable +EXPORT_SYMBOL net/wireless/cfg80211 0x68c9f5d0 cfg80211_sched_scan_stopped_locked EXPORT_SYMBOL net/wireless/cfg80211 0x69b18f43 rfc1042_header EXPORT_SYMBOL net/wireless/cfg80211 0x6bedf402 ieee80211_freq_khz_to_channel -EXPORT_SYMBOL net/wireless/cfg80211 0x6dbe7e03 cfg80211_control_port_tx_status -EXPORT_SYMBOL net/wireless/cfg80211 0x6e4d82eb cfg80211_get_bss -EXPORT_SYMBOL net/wireless/cfg80211 0x72560d71 cfg80211_cqm_rssi_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x73ba8401 cfg80211_del_sta_sinfo -EXPORT_SYMBOL net/wireless/cfg80211 0x79172bd0 cfg80211_tx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x6de05443 ieee80211_data_to_8023_exthdr +EXPORT_SYMBOL net/wireless/cfg80211 0x6e720d52 cfg80211_check_station_change +EXPORT_SYMBOL net/wireless/cfg80211 0x70a188db cfg80211_reg_can_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0x74e1c67a regulatory_set_wiphy_regd EXPORT_SYMBOL net/wireless/cfg80211 0x79b82a71 cfg80211_find_vendor_elem -EXPORT_SYMBOL net/wireless/cfg80211 0x7a4fb430 cfg80211_nan_func_terminated -EXPORT_SYMBOL net/wireless/cfg80211 0x7a518dff get_wiphy_regdom EXPORT_SYMBOL net/wireless/cfg80211 0x7acb86ed ieee80211_radiotap_iterator_next -EXPORT_SYMBOL net/wireless/cfg80211 0x7c297fd0 cfg80211_probe_status EXPORT_SYMBOL net/wireless/cfg80211 0x7c3ac925 ieee80211_get_vht_max_nss -EXPORT_SYMBOL net/wireless/cfg80211 0x7c4d421f wiphy_unregister +EXPORT_SYMBOL net/wireless/cfg80211 0x7c45bad5 get_wiphy_regdom +EXPORT_SYMBOL net/wireless/cfg80211 0x7c6111ec cfg80211_put_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x7ec0ab82 cfg80211_cqm_beacon_loss_notify EXPORT_SYMBOL net/wireless/cfg80211 0x7ef39823 ieee80211_hdrlen -EXPORT_SYMBOL net/wireless/cfg80211 0x7f141909 cfg80211_chandef_dfs_required +EXPORT_SYMBOL net/wireless/cfg80211 0x7f58220f wiphy_rfkill_set_hw_state_reason +EXPORT_SYMBOL net/wireless/cfg80211 0x7fa37a9d cfg80211_get_station EXPORT_SYMBOL net/wireless/cfg80211 0x81874735 ieee80211_get_response_rate -EXPORT_SYMBOL net/wireless/cfg80211 0x81e6cb34 cfg80211_chandef_usable -EXPORT_SYMBOL net/wireless/cfg80211 0x836a9491 ieee80211_get_hdrlen_from_skb -EXPORT_SYMBOL net/wireless/cfg80211 0x8d840ccc cfg80211_gtk_rekey_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x8e48394f cfg80211_report_wowlan_wakeup -EXPORT_SYMBOL net/wireless/cfg80211 0x8e6d4527 cfg80211_radar_event +EXPORT_SYMBOL net/wireless/cfg80211 0x827f3096 cfg80211_notify_new_peer_candidate +EXPORT_SYMBOL net/wireless/cfg80211 0x83853be8 ieee80211_amsdu_to_8023s +EXPORT_SYMBOL net/wireless/cfg80211 0x846bd9ce cfg80211_ibss_joined +EXPORT_SYMBOL net/wireless/cfg80211 0x859c20b8 cfg80211_bss_flush +EXPORT_SYMBOL net/wireless/cfg80211 0x8c9c6247 freq_reg_info +EXPORT_SYMBOL net/wireless/cfg80211 0x8e0dcca9 wiphy_new_nm +EXPORT_SYMBOL net/wireless/cfg80211 0x8e2feb8e cfg80211_iftype_allowed EXPORT_SYMBOL net/wireless/cfg80211 0x8fa02936 cfg80211_free_nan_func -EXPORT_SYMBOL net/wireless/cfg80211 0x9395175d cfg80211_cac_event -EXPORT_SYMBOL net/wireless/cfg80211 0x98a969a6 cfg80211_stop_iface -EXPORT_SYMBOL net/wireless/cfg80211 0x9b5c7e09 cfg80211_rx_mgmt_khz -EXPORT_SYMBOL net/wireless/cfg80211 0x9becf247 cfg80211_rx_control_port +EXPORT_SYMBOL net/wireless/cfg80211 0x91dc42ba ieee80211_get_num_supported_channels +EXPORT_SYMBOL net/wireless/cfg80211 0x9475bb9c cfg80211_report_wowlan_wakeup +EXPORT_SYMBOL net/wireless/cfg80211 0x98a5ceea cfg80211_tdls_oper_request +EXPORT_SYMBOL net/wireless/cfg80211 0x9b0628b1 cfg80211_stop_iface +EXPORT_SYMBOL net/wireless/cfg80211 0x9bf9da92 cfg80211_ref_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x9c669154 cfg80211_tx_mlme_mgmt EXPORT_SYMBOL net/wireless/cfg80211 0x9d6cba30 cfg80211_find_elem_match -EXPORT_SYMBOL net/wireless/cfg80211 0xa1dfff62 cfg80211_rx_unexpected_4addr_frame -EXPORT_SYMBOL net/wireless/cfg80211 0xa200a5e6 cfg80211_cqm_pktloss_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xa41af9ae cfg80211_get_drvinfo -EXPORT_SYMBOL net/wireless/cfg80211 0xa41f0f0e cfg80211_bss_flush -EXPORT_SYMBOL net/wireless/cfg80211 0xab538a2b cfg80211_notify_new_peer_candidate -EXPORT_SYMBOL net/wireless/cfg80211 0xaf98bfb8 cfg80211_sched_scan_results -EXPORT_SYMBOL net/wireless/cfg80211 0xb18e2ddb cfg80211_auth_timeout -EXPORT_SYMBOL net/wireless/cfg80211 0xb65d1d8a cfg80211_conn_failed -EXPORT_SYMBOL net/wireless/cfg80211 0xb7049cee cfg80211_sta_opmode_change_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xa5ceb2ec cfg80211_assoc_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0xa633c485 cfg80211_sched_scan_results +EXPORT_SYMBOL net/wireless/cfg80211 0xa8b36968 cfg80211_remain_on_channel_expired +EXPORT_SYMBOL net/wireless/cfg80211 0xa9d8c42c regulatory_hint +EXPORT_SYMBOL net/wireless/cfg80211 0xab3ed908 cfg80211_nan_match +EXPORT_SYMBOL net/wireless/cfg80211 0xabd3bfb0 cfg80211_external_auth_request +EXPORT_SYMBOL net/wireless/cfg80211 0xaf260d52 cfg80211_control_port_tx_status +EXPORT_SYMBOL net/wireless/cfg80211 0xaf84d5d6 cfg80211_rx_spurious_frame +EXPORT_SYMBOL net/wireless/cfg80211 0xb11b36d1 cfg80211_sched_scan_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0xb37fadbf cfg80211_bss_color_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xb4c3bad2 cfg80211_ready_on_channel +EXPORT_SYMBOL net/wireless/cfg80211 0xb55449c1 cfg80211_del_sta_sinfo EXPORT_SYMBOL net/wireless/cfg80211 0xb73aafb1 ieee80211_chandef_to_operating_class -EXPORT_SYMBOL net/wireless/cfg80211 0xb807b81d wiphy_rfkill_start_polling -EXPORT_SYMBOL net/wireless/cfg80211 0xb917d47d cfg80211_rx_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0xba2f3fdd cfg80211_unregister_wdev -EXPORT_SYMBOL net/wireless/cfg80211 0xbf5b9f6a regulatory_set_wiphy_regd -EXPORT_SYMBOL net/wireless/cfg80211 0xc10ec3d9 cfg80211_cqm_txe_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xb7d03adb cfg80211_port_authorized +EXPORT_SYMBOL net/wireless/cfg80211 0xbcb16d7d cfg80211_iter_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0xbd932108 wiphy_register +EXPORT_SYMBOL net/wireless/cfg80211 0xc00cb531 cfg80211_cqm_pktloss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xc05cef31 cfg80211_rx_unexpected_4addr_frame +EXPORT_SYMBOL net/wireless/cfg80211 0xc0ef2752 cfg80211_reg_can_beacon_relax EXPORT_SYMBOL net/wireless/cfg80211 0xc1b99792 ieee80211_channel_to_freq_khz -EXPORT_SYMBOL net/wireless/cfg80211 0xc23dcaf6 cfg80211_roamed -EXPORT_SYMBOL net/wireless/cfg80211 0xc3f58dbb cfg80211_ready_on_channel EXPORT_SYMBOL net/wireless/cfg80211 0xc5dcacef ieee80211_operating_class_to_band -EXPORT_SYMBOL net/wireless/cfg80211 0xc6d071be cfg80211_cqm_beacon_loss_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xca986158 cfg80211_tx_mgmt_expired +EXPORT_SYMBOL net/wireless/cfg80211 0xc5ddd7ce cfg80211_unlink_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xc9211915 cfg80211_cqm_txe_notify EXPORT_SYMBOL net/wireless/cfg80211 0xcc1a7c48 cfg80211_is_element_inherited -EXPORT_SYMBOL net/wireless/cfg80211 0xcd92a5f0 cfg80211_connect_done -EXPORT_SYMBOL net/wireless/cfg80211 0xcf8d6b3e cfg80211_crit_proto_stopped -EXPORT_SYMBOL net/wireless/cfg80211 0xd11ad7ee wiphy_rfkill_set_hw_state_reason -EXPORT_SYMBOL net/wireless/cfg80211 0xd2645713 cfg80211_abandon_assoc +EXPORT_SYMBOL net/wireless/cfg80211 0xce67bc2b wiphy_free +EXPORT_SYMBOL net/wireless/cfg80211 0xce8fddf2 cfg80211_ch_switch_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xd01d03ae cfg80211_roamed EXPORT_SYMBOL net/wireless/cfg80211 0xd56d55f3 ieee80211_get_mesh_hdrlen -EXPORT_SYMBOL net/wireless/cfg80211 0xd5bbe800 freq_reg_info +EXPORT_SYMBOL net/wireless/cfg80211 0xd794ca3e cfg80211_rx_unprot_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0xd93687a1 cfg80211_update_owe_info_event EXPORT_SYMBOL net/wireless/cfg80211 0xdba126c1 reg_initiator_name -EXPORT_SYMBOL net/wireless/cfg80211 0xde5f86ba cfg80211_assoc_timeout -EXPORT_SYMBOL net/wireless/cfg80211 0xdfa4a3c3 __cfg80211_send_event_skb -EXPORT_SYMBOL net/wireless/cfg80211 0xdff00bc5 cfg80211_nan_match +EXPORT_SYMBOL net/wireless/cfg80211 0xde6d3721 __cfg80211_send_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xe19d84bf cfg80211_rx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0xe233acc9 cfg80211_inform_bss_data EXPORT_SYMBOL net/wireless/cfg80211 0xe334e6df cfg80211_sinfo_alloc_tid_stats -EXPORT_SYMBOL net/wireless/cfg80211 0xe642c63a cfg80211_check_station_change -EXPORT_SYMBOL net/wireless/cfg80211 0xe818dee2 cfg80211_port_authorized -EXPORT_SYMBOL net/wireless/cfg80211 0xec262554 cfg80211_disconnected -EXPORT_SYMBOL net/wireless/cfg80211 0xec50972c regulatory_pre_cac_allowed -EXPORT_SYMBOL net/wireless/cfg80211 0xee111c85 cfg80211_classify8021d -EXPORT_SYMBOL net/wireless/cfg80211 0xee128d3b ieee80211_amsdu_to_8023s +EXPORT_SYMBOL net/wireless/cfg80211 0xe46fba43 regulatory_set_wiphy_regd_sync +EXPORT_SYMBOL net/wireless/cfg80211 0xe5945321 cfg80211_get_drvinfo +EXPORT_SYMBOL net/wireless/cfg80211 0xe817be2a cfg80211_ft_event +EXPORT_SYMBOL net/wireless/cfg80211 0xe8551703 cfg80211_unregister_wdev EXPORT_SYMBOL net/wireless/cfg80211 0xef265f27 cfg80211_chandef_create -EXPORT_SYMBOL net/wireless/cfg80211 0xf157d4a4 cfg80211_bss_iter -EXPORT_SYMBOL net/wireless/cfg80211 0xf3a61652 cfg80211_ref_bss -EXPORT_SYMBOL net/wireless/cfg80211 0xf4edb496 cfg80211_put_bss -EXPORT_SYMBOL net/wireless/cfg80211 0xf53d6eb4 wiphy_register +EXPORT_SYMBOL net/wireless/cfg80211 0xf2f05ba3 cfg80211_send_layer2_update EXPORT_SYMBOL net/wireless/cfg80211 0xf5596d89 cfg80211_get_p2p_attr -EXPORT_SYMBOL net/wireless/cfg80211 0xf6f54c65 cfg80211_rx_assoc_resp -EXPORT_SYMBOL net/wireless/cfg80211 0xf96ad659 cfg80211_rx_unprot_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0xf9ce6011 regulatory_hint -EXPORT_SYMBOL net/wireless/cfg80211 0xfaaefee6 cfg80211_any_usable_channels -EXPORT_SYMBOL net/wireless/cfg80211 0xfae4f6c2 wiphy_new_nm -EXPORT_SYMBOL net/wireless/cfg80211 0xfbf56811 cfg80211_get_station -EXPORT_SYMBOL net/wireless/cfg80211 0xfe9641a4 cfg80211_rx_spurious_frame -EXPORT_SYMBOL net/wireless/cfg80211 0xff3668b0 cfg80211_register_netdevice -EXPORT_SYMBOL net/wireless/lib80211 0x1d1306b7 lib80211_unregister_crypto_ops -EXPORT_SYMBOL net/wireless/lib80211 0x69006321 lib80211_crypt_info_free -EXPORT_SYMBOL net/wireless/lib80211 0xb488cd22 lib80211_register_crypto_ops -EXPORT_SYMBOL net/wireless/lib80211 0xb61df048 lib80211_crypt_delayed_deinit -EXPORT_SYMBOL net/wireless/lib80211 0xceebeda9 lib80211_crypt_info_init -EXPORT_SYMBOL net/wireless/lib80211 0xefb02809 lib80211_get_crypto_ops -EXPORT_SYMBOL sound/ac97_bus 0xb364d480 ac97_bus_type -EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0xfe68210d snd_mixer_oss_ioctl_card +EXPORT_SYMBOL net/wireless/cfg80211 0xf57c8683 cfg80211_cqm_rssi_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xf8a56757 cfg80211_chandef_dfs_required +EXPORT_SYMBOL net/wireless/cfg80211 0xfb573840 cfg80211_rx_mgmt_khz +EXPORT_SYMBOL net/wireless/cfg80211 0xfcf26c01 cfg80211_abandon_assoc +EXPORT_SYMBOL net/wireless/lib80211 0x60873ea0 lib80211_register_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x732832c5 lib80211_get_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x738e62bd lib80211_crypt_info_init +EXPORT_SYMBOL net/wireless/lib80211 0x7b7fc408 lib80211_unregister_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0xcc388829 lib80211_crypt_delayed_deinit +EXPORT_SYMBOL net/wireless/lib80211 0xfc13e7ea lib80211_crypt_info_free +EXPORT_SYMBOL sound/ac97_bus 0xec43662b ac97_bus_type +EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0x864c958b 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 0x2ec2e864 snd_seq_create_kernel_client EXPORT_SYMBOL sound/core/seq/snd-seq 0x3061c52d snd_use_lock_sync_helper +EXPORT_SYMBOL sound/core/seq/snd-seq 0x355324a0 snd_seq_kernel_client_enqueue EXPORT_SYMBOL sound/core/seq/snd-seq 0x3fb4d161 snd_seq_kernel_client_dispatch EXPORT_SYMBOL sound/core/seq/snd-seq 0x6bb71038 snd_seq_delete_kernel_client -EXPORT_SYMBOL sound/core/seq/snd-seq 0x6c1a9593 snd_seq_event_port_attach 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 0x8397c5c5 snd_seq_kernel_client_write_poll +EXPORT_SYMBOL sound/core/seq/snd-seq 0xa0614f8d snd_seq_event_port_attach +EXPORT_SYMBOL sound/core/seq/snd-seq 0xad99f6ea snd_seq_kernel_client_write_poll EXPORT_SYMBOL sound/core/seq/snd-seq 0xb8e448a0 snd_seq_set_queue_tempo +EXPORT_SYMBOL sound/core/seq/snd-seq 0xdbcb52b7 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 0xeef4e324 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 @@ -5654,434 +5665,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 0xd96e433a snd_virmidi_new -EXPORT_SYMBOL sound/core/snd 0x02246b7e snd_jack_set_parent -EXPORT_SYMBOL sound/core/snd 0x029caac9 snd_card_file_add -EXPORT_SYMBOL sound/core/snd 0x05030d43 snd_unregister_oss_device -EXPORT_SYMBOL sound/core/snd 0x12fd2186 _snd_ctl_add_follower -EXPORT_SYMBOL sound/core/snd 0x171eb8f8 snd_ctl_notify +EXPORT_SYMBOL sound/core/seq/snd-seq-virmidi 0xe6addaa6 snd_virmidi_new +EXPORT_SYMBOL sound/core/snd 0x01b21a9d snd_ctl_unregister_ioctl_compat +EXPORT_SYMBOL sound/core/snd 0x0202a80e snd_ctl_free_one +EXPORT_SYMBOL sound/core/snd 0x042e9e3d snd_card_file_add +EXPORT_SYMBOL sound/core/snd 0x09996840 snd_card_free_when_closed +EXPORT_SYMBOL sound/core/snd 0x0b640583 snd_info_free_entry +EXPORT_SYMBOL sound/core/snd 0x108c9f84 snd_jack_new +EXPORT_SYMBOL sound/core/snd 0x187d5586 snd_ctl_remove EXPORT_SYMBOL sound/core/snd 0x18e1683f snd_dma_program EXPORT_SYMBOL sound/core/snd 0x191e88cf snd_dma_pointer EXPORT_SYMBOL sound/core/snd 0x198788b4 snd_lookup_oss_minor_data -EXPORT_SYMBOL sound/core/snd 0x1a674917 snd_device_free -EXPORT_SYMBOL sound/core/snd 0x21e1aa34 snd_card_new -EXPORT_SYMBOL sound/core/snd 0x2464f6b2 snd_ctl_notify_one +EXPORT_SYMBOL sound/core/snd 0x1fd7849f snd_mixer_oss_notify_callback +EXPORT_SYMBOL sound/core/snd 0x20227da4 snd_jack_add_new_kctl EXPORT_SYMBOL sound/core/snd 0x24a94b26 snd_info_get_line -EXPORT_SYMBOL sound/core/snd 0x25d93c34 snd_power_wait -EXPORT_SYMBOL sound/core/snd 0x291716bc snd_ctl_replace +EXPORT_SYMBOL sound/core/snd 0x2d198c1a _snd_ctl_add_follower EXPORT_SYMBOL sound/core/snd 0x342a2354 copy_to_user_fromio -EXPORT_SYMBOL sound/core/snd 0x3566950f snd_card_register -EXPORT_SYMBOL sound/core/snd 0x37592e2c snd_card_file_remove -EXPORT_SYMBOL sound/core/snd 0x38238762 snd_ctl_register_ioctl +EXPORT_SYMBOL sound/core/snd 0x344c1500 snd_ctl_boolean_stereo_info +EXPORT_SYMBOL sound/core/snd 0x36972e7b snd_card_file_remove EXPORT_SYMBOL sound/core/snd 0x3971b4df snd_ecards_limit -EXPORT_SYMBOL sound/core/snd 0x48d34f8a snd_ctl_free_one +EXPORT_SYMBOL sound/core/snd 0x3b3a9c22 snd_component_add +EXPORT_SYMBOL sound/core/snd 0x3c9cae42 snd_ctl_find_numid +EXPORT_SYMBOL sound/core/snd 0x47e85c82 snd_ctl_register_ioctl EXPORT_SYMBOL sound/core/snd 0x4a3ea5c0 snd_request_card -EXPORT_SYMBOL sound/core/snd 0x59293ca4 snd_register_device -EXPORT_SYMBOL sound/core/snd 0x5bb7549b snd_device_new -EXPORT_SYMBOL sound/core/snd 0x62be1c8b snd_ctl_find_id -EXPORT_SYMBOL sound/core/snd 0x68e04306 snd_mixer_oss_notify_callback -EXPORT_SYMBOL sound/core/snd 0x6b77a5e4 snd_info_create_module_entry -EXPORT_SYMBOL sound/core/snd 0x6e45213a snd_ctl_find_numid +EXPORT_SYMBOL sound/core/snd 0x5891d22f snd_ctl_add +EXPORT_SYMBOL sound/core/snd 0x5e8a3113 snd_jack_set_parent +EXPORT_SYMBOL sound/core/snd 0x63d84646 snd_jack_set_key +EXPORT_SYMBOL sound/core/snd 0x6b046316 snd_ctl_notify +EXPORT_SYMBOL sound/core/snd 0x6cf6e29c snd_seq_root +EXPORT_SYMBOL sound/core/snd 0x6cfd094f snd_info_register EXPORT_SYMBOL sound/core/snd 0x70c15ac1 snd_dma_disable -EXPORT_SYMBOL sound/core/snd 0x7110aaa1 snd_ctl_unregister_ioctl_compat -EXPORT_SYMBOL sound/core/snd 0x72ed6c02 snd_jack_new EXPORT_SYMBOL sound/core/snd 0x73076315 snd_pci_quirk_lookup_id -EXPORT_SYMBOL sound/core/snd 0x7365a4cd snd_ctl_make_virtual_master -EXPORT_SYMBOL sound/core/snd 0x75f23278 snd_unregister_device -EXPORT_SYMBOL sound/core/snd 0x78338242 snd_ctl_remove_id -EXPORT_SYMBOL sound/core/snd 0x792b36f7 snd_jack_report -EXPORT_SYMBOL sound/core/snd 0x7a773a22 snd_info_free_entry -EXPORT_SYMBOL sound/core/snd 0x7d2a06c5 snd_ctl_rename_id -EXPORT_SYMBOL sound/core/snd 0x84cb407f snd_jack_set_key -EXPORT_SYMBOL sound/core/snd 0x8be7f659 snd_info_register +EXPORT_SYMBOL sound/core/snd 0x76caf4ee snd_unregister_device +EXPORT_SYMBOL sound/core/snd 0x773425a5 snd_jack_report +EXPORT_SYMBOL sound/core/snd 0x78672252 snd_ctl_rename_id +EXPORT_SYMBOL sound/core/snd 0x7da1e2fa snd_device_free +EXPORT_SYMBOL sound/core/snd 0x812594d6 snd_ctl_boolean_mono_info +EXPORT_SYMBOL sound/core/snd 0x8275a42e snd_ctl_new1 +EXPORT_SYMBOL sound/core/snd 0x85eea1a7 snd_info_create_module_entry +EXPORT_SYMBOL sound/core/snd 0x8815ee50 snd_pci_quirk_lookup +EXPORT_SYMBOL sound/core/snd 0x8a9b834c snd_ctl_replace EXPORT_SYMBOL sound/core/snd 0x8df3789f snd_oss_info_register EXPORT_SYMBOL sound/core/snd 0x8f595b11 snd_major -EXPORT_SYMBOL sound/core/snd 0x94edf066 snd_card_free +EXPORT_SYMBOL sound/core/snd 0x905a2f3f snd_card_set_id +EXPORT_SYMBOL sound/core/snd 0x93eefe4a snd_ctl_register_ioctl_compat EXPORT_SYMBOL sound/core/snd 0x9e6d79f8 snd_info_get_str -EXPORT_SYMBOL sound/core/snd 0x9efa098a snd_seq_root -EXPORT_SYMBOL sound/core/snd 0xb0195743 snd_card_disconnect -EXPORT_SYMBOL sound/core/snd 0xb1d042ea snd_card_free_when_closed +EXPORT_SYMBOL sound/core/snd 0xa11fff93 snd_register_oss_device +EXPORT_SYMBOL sound/core/snd 0xa8c1176f snd_device_register +EXPORT_SYMBOL sound/core/snd 0xaa8611bf snd_card_register EXPORT_SYMBOL sound/core/snd 0xb2e5ae4a snd_lookup_minor_data -EXPORT_SYMBOL sound/core/snd 0xb72a1c88 snd_info_create_card_entry -EXPORT_SYMBOL sound/core/snd 0xb9c65489 snd_jack_add_new_kctl -EXPORT_SYMBOL sound/core/snd 0xb9efa720 snd_register_oss_device -EXPORT_SYMBOL sound/core/snd 0xbb09b51d snd_ctl_boolean_stereo_info +EXPORT_SYMBOL sound/core/snd 0xb569b965 snd_ctl_notify_one +EXPORT_SYMBOL sound/core/snd 0xb6c21530 snd_unregister_oss_device EXPORT_SYMBOL sound/core/snd 0xc5a6d10b release_and_free_resource EXPORT_SYMBOL sound/core/snd 0xcc6a729f snd_ctl_enum_info -EXPORT_SYMBOL sound/core/snd 0xcc79c402 snd_card_set_id -EXPORT_SYMBOL sound/core/snd 0xceeaf1e6 snd_ctl_remove -EXPORT_SYMBOL sound/core/snd 0xd4245cb8 snd_pci_quirk_lookup -EXPORT_SYMBOL sound/core/snd 0xd42b502a snd_ctl_register_ioctl_compat -EXPORT_SYMBOL sound/core/snd 0xdb8bd0c2 snd_component_add -EXPORT_SYMBOL sound/core/snd 0xe4f3f091 snd_ctl_add -EXPORT_SYMBOL sound/core/snd 0xe7594881 snd_ctl_new1 -EXPORT_SYMBOL sound/core/snd 0xec4bab23 snd_ctl_boolean_mono_info -EXPORT_SYMBOL sound/core/snd 0xf3953494 snd_ctl_unregister_ioctl -EXPORT_SYMBOL sound/core/snd 0xf670ac64 snd_device_register +EXPORT_SYMBOL sound/core/snd 0xd408801a snd_card_disconnect +EXPORT_SYMBOL sound/core/snd 0xd57d00ed snd_card_new +EXPORT_SYMBOL sound/core/snd 0xdcc3055a snd_ctl_find_id +EXPORT_SYMBOL sound/core/snd 0xdf707983 snd_card_free +EXPORT_SYMBOL sound/core/snd 0xe0567cbd snd_info_create_card_entry +EXPORT_SYMBOL sound/core/snd 0xe129ca00 snd_ctl_remove_id +EXPORT_SYMBOL sound/core/snd 0xe2d3a609 snd_ctl_unregister_ioctl +EXPORT_SYMBOL sound/core/snd 0xe759f45e snd_register_device +EXPORT_SYMBOL sound/core/snd 0xee0d7b45 snd_ctl_make_virtual_master +EXPORT_SYMBOL sound/core/snd 0xf24de88f snd_device_new +EXPORT_SYMBOL sound/core/snd 0xfc7f686b snd_power_wait EXPORT_SYMBOL sound/core/snd 0xfffd89db copy_from_user_toio -EXPORT_SYMBOL sound/core/snd-compress 0x26357578 snd_compr_malloc_pages -EXPORT_SYMBOL sound/core/snd-compress 0xaa65547e snd_compr_free_pages -EXPORT_SYMBOL sound/core/snd-hwdep 0xeb6c607a snd_hwdep_new +EXPORT_SYMBOL sound/core/snd-compress 0xe2159dfd snd_compr_free_pages +EXPORT_SYMBOL sound/core/snd-compress 0xee6c8b8f snd_compr_malloc_pages +EXPORT_SYMBOL sound/core/snd-hwdep 0xb331b38f snd_hwdep_new +EXPORT_SYMBOL sound/core/snd-pcm 0x012f0b1d snd_pcm_hw_constraint_list EXPORT_SYMBOL sound/core/snd-pcm 0x0283dfe3 _snd_pcm_hw_params_any EXPORT_SYMBOL sound/core/snd-pcm 0x04cda566 snd_interval_refine -EXPORT_SYMBOL sound/core/snd-pcm 0x04eb296a snd_dma_buffer_mmap -EXPORT_SYMBOL sound/core/snd-pcm 0x04eecb57 snd_pcm_new_internal -EXPORT_SYMBOL sound/core/snd-pcm 0x0d75d443 snd_pcm_lib_ioctl -EXPORT_SYMBOL sound/core/snd-pcm 0x0dd5b20a snd_dma_alloc_pages_fallback +EXPORT_SYMBOL sound/core/snd-pcm 0x04d5391d snd_pcm_lib_malloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x05e9add0 snd_pcm_lib_free_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0x06d7037e snd_pcm_lib_preallocate_pages_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0x0934b7be snd_sgbuf_get_addr +EXPORT_SYMBOL sound/core/snd-pcm 0x094f64bc snd_pcm_new +EXPORT_SYMBOL sound/core/snd-pcm 0x0fc238e7 snd_pcm_lib_get_vmalloc_page EXPORT_SYMBOL sound/core/snd-pcm 0x11eba48e snd_pcm_create_iec958_consumer_hw_params +EXPORT_SYMBOL sound/core/snd-pcm 0x14d35bf8 snd_pcm_set_managed_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0x1c55a6c0 snd_pcm_hw_constraint_mask64 EXPORT_SYMBOL sound/core/snd-pcm 0x1d027e4b snd_pcm_format_signed -EXPORT_SYMBOL sound/core/snd-pcm 0x1f0b88da snd_pcm_hw_rule_add -EXPORT_SYMBOL sound/core/snd-pcm 0x28855e20 snd_pcm_period_elapsed_under_stream_lock -EXPORT_SYMBOL sound/core/snd-pcm 0x2bddbeee _snd_pcm_lib_alloc_vmalloc_buffer -EXPORT_SYMBOL sound/core/snd-pcm 0x2d1765b8 snd_pcm_hw_constraint_minmax -EXPORT_SYMBOL sound/core/snd-pcm 0x32ec79e0 snd_pcm_hw_constraint_mask64 -EXPORT_SYMBOL sound/core/snd-pcm 0x36d42c4f snd_pcm_lib_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x2e27f9d0 snd_pcm_lib_preallocate_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x360a5e9f snd_pcm_release_substream +EXPORT_SYMBOL sound/core/snd-pcm 0x3738005f snd_dma_alloc_pages EXPORT_SYMBOL sound/core/snd-pcm 0x3796bdcc snd_pcm_format_little_endian +EXPORT_SYMBOL sound/core/snd-pcm 0x38716f21 snd_pcm_set_managed_buffer_all EXPORT_SYMBOL sound/core/snd-pcm 0x39bf9301 _snd_pcm_hw_param_setempty -EXPORT_SYMBOL sound/core/snd-pcm 0x4a4f1eb3 snd_sgbuf_get_addr +EXPORT_SYMBOL sound/core/snd-pcm 0x49943366 snd_pcm_hw_constraint_step 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 0x51249ae8 snd_pcm_kernel_ioctl EXPORT_SYMBOL sound/core/snd-pcm 0x52e3e4a5 snd_pcm_hw_param_value -EXPORT_SYMBOL sound/core/snd-pcm 0x544eb269 snd_pcm_hw_constraint_ranges -EXPORT_SYMBOL sound/core/snd-pcm 0x58f0a902 snd_pcm_stop +EXPORT_SYMBOL sound/core/snd-pcm 0x57e6515e snd_pcm_stop +EXPORT_SYMBOL sound/core/snd-pcm 0x59119b5a snd_pcm_mmap_data EXPORT_SYMBOL sound/core/snd-pcm 0x5e7f4920 snd_pcm_format_set_silence -EXPORT_SYMBOL sound/core/snd-pcm 0x5f4886b8 snd_pcm_hw_constraint_pow2 -EXPORT_SYMBOL sound/core/snd-pcm 0x62daae09 snd_pcm_lib_preallocate_pages_for_all EXPORT_SYMBOL sound/core/snd-pcm 0x650f8603 snd_pcm_format_silence_64 -EXPORT_SYMBOL sound/core/snd-pcm 0x66f2da0b snd_pcm_hw_constraint_step 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 0x6aa2fbfe __snd_pcm_lib_xfer -EXPORT_SYMBOL sound/core/snd-pcm 0x6de6d122 snd_pcm_open_substream EXPORT_SYMBOL sound/core/snd-pcm 0x6ef8fcd8 snd_pcm_format_linear -EXPORT_SYMBOL sound/core/snd-pcm 0x736c74c0 snd_sgbuf_get_chunk_size -EXPORT_SYMBOL sound/core/snd-pcm 0x75949e46 snd_pcm_set_sync -EXPORT_SYMBOL sound/core/snd-pcm 0x778b1723 snd_pcm_lib_malloc_pages -EXPORT_SYMBOL sound/core/snd-pcm 0x78bdb4d7 snd_pcm_lib_mmap_iomem -EXPORT_SYMBOL sound/core/snd-pcm 0x7c61aab6 snd_pcm_hw_rule_noresample -EXPORT_SYMBOL sound/core/snd-pcm 0x8249458b snd_pcm_lib_preallocate_free_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0x6fe41c72 snd_pcm_hw_constraint_ratnums +EXPORT_SYMBOL sound/core/snd-pcm 0x744151bd snd_pcm_lib_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x761a12b7 snd_pcm_open_substream +EXPORT_SYMBOL sound/core/snd-pcm 0x7807ab01 snd_pcm_hw_constraint_ranges +EXPORT_SYMBOL sound/core/snd-pcm 0x7cb63146 snd_pcm_hw_constraint_ratdens EXPORT_SYMBOL sound/core/snd-pcm 0x834dc955 snd_pcm_format_size -EXPORT_SYMBOL sound/core/snd-pcm 0x86dbc9a2 snd_pcm_set_ops +EXPORT_SYMBOL sound/core/snd-pcm 0x83fc9f88 snd_pcm_new_internal +EXPORT_SYMBOL sound/core/snd-pcm 0x847aba3c snd_dma_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x85742036 snd_dma_alloc_pages_fallback +EXPORT_SYMBOL sound/core/snd-pcm 0x8a1f5fb4 snd_pcm_set_ops +EXPORT_SYMBOL sound/core/snd-pcm 0x8e554491 snd_pcm_hw_rule_noresample +EXPORT_SYMBOL sound/core/snd-pcm 0x90ddcf83 snd_pcm_set_sync +EXPORT_SYMBOL sound/core/snd-pcm 0x9101b729 snd_pcm_kernel_ioctl EXPORT_SYMBOL sound/core/snd-pcm 0x94098ff8 snd_interval_list -EXPORT_SYMBOL sound/core/snd-pcm 0x9954617e snd_pcm_hw_refine -EXPORT_SYMBOL sound/core/snd-pcm 0x9a1bf361 snd_pcm_hw_constraint_integer -EXPORT_SYMBOL sound/core/snd-pcm 0x9ecbc8b9 snd_pcm_hw_param_last -EXPORT_SYMBOL sound/core/snd-pcm 0xa2db3e87 snd_pcm_hw_param_first +EXPORT_SYMBOL sound/core/snd-pcm 0x9cf2c77c snd_pcm_create_iec958_consumer +EXPORT_SYMBOL sound/core/snd-pcm 0xa05c986c snd_sgbuf_get_page EXPORT_SYMBOL sound/core/snd-pcm 0xa61aa028 snd_pcm_format_unsigned -EXPORT_SYMBOL sound/core/snd-pcm 0xa7ae4611 snd_dma_free_pages -EXPORT_SYMBOL sound/core/snd-pcm 0xa827cf8d snd_dma_alloc_pages -EXPORT_SYMBOL sound/core/snd-pcm 0xa8c3df40 snd_pcm_lib_get_vmalloc_page -EXPORT_SYMBOL sound/core/snd-pcm 0xa9fe7104 snd_pcm_hw_constraint_ratdens +EXPORT_SYMBOL sound/core/snd-pcm 0xa75387d7 _snd_pcm_lib_alloc_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0xa9920d03 snd_pcm_period_elapsed +EXPORT_SYMBOL sound/core/snd-pcm 0xac3387c7 snd_pcm_lib_ioctl EXPORT_SYMBOL sound/core/snd-pcm 0xac437f7b snd_interval_ratnum -EXPORT_SYMBOL sound/core/snd-pcm 0xad1ae00e snd_pcm_new_stream -EXPORT_SYMBOL sound/core/snd-pcm 0xae8af6a9 snd_pcm_suspend_all -EXPORT_SYMBOL sound/core/snd-pcm 0xb0fcb13e snd_sgbuf_get_page -EXPORT_SYMBOL sound/core/snd-pcm 0xb766834d snd_pcm_period_elapsed +EXPORT_SYMBOL sound/core/snd-pcm 0xacc619d6 snd_dma_buffer_mmap +EXPORT_SYMBOL sound/core/snd-pcm 0xaf45ed02 snd_pcm_hw_constraint_integer +EXPORT_SYMBOL sound/core/snd-pcm 0xb08b6a64 snd_pcm_hw_param_last EXPORT_SYMBOL sound/core/snd-pcm 0xb9638db4 snd_pcm_rate_to_rate_bit -EXPORT_SYMBOL sound/core/snd-pcm 0xbdcce4bf snd_pcm_release_substream -EXPORT_SYMBOL sound/core/snd-pcm 0xc0c30272 snd_pcm_lib_free_vmalloc_buffer -EXPORT_SYMBOL sound/core/snd-pcm 0xc2ab3d7c snd_pcm_hw_constraint_ratnums -EXPORT_SYMBOL sound/core/snd-pcm 0xc3ee725d snd_pcm_hw_constraint_list -EXPORT_SYMBOL sound/core/snd-pcm 0xcd2cc911 snd_pcm_set_managed_buffer -EXPORT_SYMBOL sound/core/snd-pcm 0xceefcc81 snd_pcm_mmap_data -EXPORT_SYMBOL sound/core/snd-pcm 0xda4a615b snd_pcm_new -EXPORT_SYMBOL sound/core/snd-pcm 0xe2b59886 snd_pcm_set_managed_buffer_all -EXPORT_SYMBOL sound/core/snd-pcm 0xe4599344 snd_pcm_lib_preallocate_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xbb4cdb37 snd_sgbuf_get_chunk_size +EXPORT_SYMBOL sound/core/snd-pcm 0xc04f6c7c snd_pcm_lib_mmap_iomem +EXPORT_SYMBOL sound/core/snd-pcm 0xc3856377 __snd_pcm_lib_xfer +EXPORT_SYMBOL sound/core/snd-pcm 0xc739cbed snd_pcm_hw_constraint_minmax +EXPORT_SYMBOL sound/core/snd-pcm 0xc82c4348 snd_pcm_period_elapsed_under_stream_lock +EXPORT_SYMBOL sound/core/snd-pcm 0xc8c2cbaf snd_pcm_hw_constraint_msbits +EXPORT_SYMBOL sound/core/snd-pcm 0xcf4eab88 snd_pcm_new_stream +EXPORT_SYMBOL sound/core/snd-pcm 0xd1424993 snd_pcm_suspend_all +EXPORT_SYMBOL sound/core/snd-pcm 0xd9193734 snd_pcm_hw_rule_add +EXPORT_SYMBOL sound/core/snd-pcm 0xdc2bff0f snd_pcm_hw_param_first EXPORT_SYMBOL sound/core/snd-pcm 0xe56a9336 snd_pcm_format_width -EXPORT_SYMBOL sound/core/snd-pcm 0xe75a6fb1 snd_pcm_hw_constraint_msbits -EXPORT_SYMBOL sound/core/snd-pcm 0xfa77b2c6 snd_pcm_create_iec958_consumer +EXPORT_SYMBOL sound/core/snd-pcm 0xf910989d snd_pcm_hw_refine +EXPORT_SYMBOL sound/core/snd-pcm 0xf97c84ae snd_pcm_hw_constraint_pow2 +EXPORT_SYMBOL sound/core/snd-pcm 0xfdf47b9e snd_pcm_lib_preallocate_free_for_all EXPORT_SYMBOL sound/core/snd-pcm 0xff6104d0 snd_pcm_rate_bit_to_rate -EXPORT_SYMBOL sound/core/snd-rawmidi 0x14acacce snd_rawmidi_receive -EXPORT_SYMBOL sound/core/snd-rawmidi 0x22474881 snd_rawmidi_transmit_empty -EXPORT_SYMBOL sound/core/snd-rawmidi 0x26b36cc8 snd_rawmidi_kernel_write -EXPORT_SYMBOL sound/core/snd-rawmidi 0x2bb8778a snd_rawmidi_kernel_release -EXPORT_SYMBOL sound/core/snd-rawmidi 0x4056bf17 snd_rawmidi_transmit_ack -EXPORT_SYMBOL sound/core/snd-rawmidi 0x57f10d54 snd_rawmidi_transmit_peek -EXPORT_SYMBOL sound/core/snd-rawmidi 0x63c1cc7a snd_rawmidi_drop_output -EXPORT_SYMBOL sound/core/snd-rawmidi 0x64257d93 snd_rawmidi_kernel_read -EXPORT_SYMBOL sound/core/snd-rawmidi 0x76992529 snd_rawmidi_transmit -EXPORT_SYMBOL sound/core/snd-rawmidi 0x7f5d3022 __snd_rawmidi_transmit_ack -EXPORT_SYMBOL sound/core/snd-rawmidi 0x881bb141 snd_rawmidi_set_ops -EXPORT_SYMBOL sound/core/snd-rawmidi 0x8bb84a32 snd_rawmidi_proceed -EXPORT_SYMBOL sound/core/snd-rawmidi 0x9acbe5dc snd_rawmidi_output_params -EXPORT_SYMBOL sound/core/snd-rawmidi 0x9d597b13 snd_rawmidi_drain_output -EXPORT_SYMBOL sound/core/snd-rawmidi 0xad7834d7 snd_rawmidi_kernel_open -EXPORT_SYMBOL sound/core/snd-rawmidi 0xca77404e snd_rawmidi_new -EXPORT_SYMBOL sound/core/snd-rawmidi 0xced1b9da __snd_rawmidi_transmit_peek -EXPORT_SYMBOL sound/core/snd-rawmidi 0xde35e8b4 snd_rawmidi_input_params -EXPORT_SYMBOL sound/core/snd-rawmidi 0xde544be4 snd_rawmidi_drain_input -EXPORT_SYMBOL sound/core/snd-rawmidi 0xfb04d077 snd_rawmidi_info_select +EXPORT_SYMBOL sound/core/snd-rawmidi 0x02fd9c21 snd_rawmidi_kernel_release +EXPORT_SYMBOL sound/core/snd-rawmidi 0x07743474 snd_rawmidi_drain_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0x1260e488 snd_rawmidi_receive +EXPORT_SYMBOL sound/core/snd-rawmidi 0x16cc6652 snd_rawmidi_set_ops +EXPORT_SYMBOL sound/core/snd-rawmidi 0x1913846a snd_rawmidi_transmit +EXPORT_SYMBOL sound/core/snd-rawmidi 0x367de63a snd_rawmidi_kernel_write +EXPORT_SYMBOL sound/core/snd-rawmidi 0x3eb05492 snd_rawmidi_new +EXPORT_SYMBOL sound/core/snd-rawmidi 0x424b9de4 snd_rawmidi_output_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0x47ead4d6 snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0x520a08f1 snd_rawmidi_info_select +EXPORT_SYMBOL sound/core/snd-rawmidi 0x670c514d snd_rawmidi_transmit_empty +EXPORT_SYMBOL sound/core/snd-rawmidi 0x85dffb1a snd_rawmidi_kernel_open +EXPORT_SYMBOL sound/core/snd-rawmidi 0x8dcf21c8 __snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0x966407eb __snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0x995a13ca snd_rawmidi_drop_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0xa5feadee snd_rawmidi_input_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0xc15e3478 snd_rawmidi_proceed +EXPORT_SYMBOL sound/core/snd-rawmidi 0xce9f460d snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0xd3e604ec snd_rawmidi_drain_input +EXPORT_SYMBOL sound/core/snd-rawmidi 0xddaf0911 snd_rawmidi_kernel_read EXPORT_SYMBOL sound/core/snd-seq-device 0x091def1c snd_seq_autoload_exit -EXPORT_SYMBOL sound/core/snd-seq-device 0x15094571 snd_seq_device_new +EXPORT_SYMBOL sound/core/snd-seq-device 0x0bafdde2 snd_seq_device_new EXPORT_SYMBOL sound/core/snd-seq-device 0x370a0736 snd_seq_autoload_init EXPORT_SYMBOL sound/core/snd-seq-device 0x6339b6d0 snd_seq_device_load_drivers -EXPORT_SYMBOL sound/core/snd-timer 0x0d7899db snd_timer_open -EXPORT_SYMBOL sound/core/snd-timer 0x12a8bfaf snd_timer_global_register -EXPORT_SYMBOL sound/core/snd-timer 0x16f16983 snd_timer_start -EXPORT_SYMBOL sound/core/snd-timer 0x35c5a7db snd_timer_close -EXPORT_SYMBOL sound/core/snd-timer 0x4e73240a snd_timer_instance_free -EXPORT_SYMBOL sound/core/snd-timer 0x59134147 snd_timer_new -EXPORT_SYMBOL sound/core/snd-timer 0x5c60fe5b snd_timer_continue -EXPORT_SYMBOL sound/core/snd-timer 0x6e230c1e snd_timer_stop -EXPORT_SYMBOL sound/core/snd-timer 0x72b2be91 snd_timer_global_new -EXPORT_SYMBOL sound/core/snd-timer 0x9dbc1574 snd_timer_pause -EXPORT_SYMBOL sound/core/snd-timer 0xa17f8438 snd_timer_global_free -EXPORT_SYMBOL sound/core/snd-timer 0xb0c97a52 snd_timer_interrupt -EXPORT_SYMBOL sound/core/snd-timer 0xba3dfa9b snd_timer_instance_new -EXPORT_SYMBOL sound/core/snd-timer 0xc90261f2 snd_timer_notify -EXPORT_SYMBOL sound/core/snd-timer 0xebfde664 snd_timer_resolution +EXPORT_SYMBOL sound/core/snd-timer 0x00116f32 snd_timer_global_free +EXPORT_SYMBOL sound/core/snd-timer 0x4b5f79a6 snd_timer_pause +EXPORT_SYMBOL sound/core/snd-timer 0x4f461307 snd_timer_new +EXPORT_SYMBOL sound/core/snd-timer 0x51b5b448 snd_timer_interrupt +EXPORT_SYMBOL sound/core/snd-timer 0x52b748d6 snd_timer_start +EXPORT_SYMBOL sound/core/snd-timer 0x59e334b8 snd_timer_notify +EXPORT_SYMBOL sound/core/snd-timer 0x612c6669 snd_timer_global_new +EXPORT_SYMBOL sound/core/snd-timer 0x678a6fa5 snd_timer_instance_free +EXPORT_SYMBOL sound/core/snd-timer 0x70d192d3 snd_timer_global_register +EXPORT_SYMBOL sound/core/snd-timer 0x87c530d6 snd_timer_stop +EXPORT_SYMBOL sound/core/snd-timer 0x8cddc0a9 snd_timer_continue +EXPORT_SYMBOL sound/core/snd-timer 0x94400066 snd_timer_resolution +EXPORT_SYMBOL sound/core/snd-timer 0x9817f59a snd_timer_instance_new +EXPORT_SYMBOL sound/core/snd-timer 0xa5f204ae snd_timer_open +EXPORT_SYMBOL sound/core/snd-timer 0xd1a3db0b snd_timer_close +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x4ab66b46 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 0xa9cfb8d2 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 0x12aa1afc snd_opl3_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x12ce5ba3 snd_opl3_reset -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x17613198 snd_opl3_interrupt -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x607230d7 snd_opl3_timer_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x6360b17e snd_opl3_init -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x690a9d00 snd_opl3_load_patch -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x8c84db83 snd_opl3_hwdep_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xae7c3e09 snd_opl3_create -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xe486575b snd_opl3_find_patch -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x0910e807 snd_vx_check_reg_bit +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x0ad1882f snd_opl3_timer_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x765ce3cd snd_opl3_hwdep_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x7cbb96e9 snd_opl3_init +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x8e2809f4 snd_opl3_load_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x9c677b4f snd_opl3_reset +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xa68b2c9d snd_opl3_create +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xbb14bef1 snd_opl3_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xbcf4582b snd_opl3_interrupt +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xe2e81237 snd_opl3_find_patch +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x055d85f5 snd_vx_check_reg_bit +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x0df29826 snd_vx_load_boot_image EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x226138b0 snd_vx_threaded_irq_handler -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x2db7cf60 snd_vx_free_firmware -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x421338f7 snd_vx_create -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x44df197d snd_vx_load_boot_image -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x7a9f4e6b snd_vx_suspend -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x810d71b3 snd_vx_dsp_boot -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x84f29780 snd_vx_setup_firmware -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xbcc4a401 snd_vx_dsp_load -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf1400b3d snd_vx_resume +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x28a7b5b1 snd_vx_suspend +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x2e92c231 snd_vx_dsp_load +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x2fd6e79d snd_vx_setup_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x6ed2219c snd_vx_resume +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x82a80df4 snd_vx_create +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xb9e23234 snd_vx_dsp_boot EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf1f04d23 snd_vx_irq_handler -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x028bd8d5 cmp_connection_reserve -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x098a876f amdtp_stream_pcm_prepare -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x0d4dc125 fw_iso_resources_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x120186d6 cmp_connection_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x1f17ef84 cmp_connection_release +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xfc9aae4d snd_vx_free_firmware +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x00105b46 fw_iso_resources_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x08928f72 cmp_connection_release +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x09438fe2 amdtp_stream_pcm_abort +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x0c7d2493 cmp_connection_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x0cdfd360 fw_iso_resources_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x0fd6c904 fw_iso_resources_allocate +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x14309a8e fcp_bus_reset +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x1aa01f5f avc_general_get_plug_info +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x1ad203ee amdtp_stream_set_parameters EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x20254e45 amdtp_syt_intervals -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x210137dd avc_general_get_plug_info -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2a82494b amdtp_stream_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2f0606b0 avc_general_set_sig_fmt -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x39f77c62 iso_packets_buffer_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3e0f0101 cmp_connection_establish -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x408007a3 fw_iso_resources_free -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x467beb3f fw_iso_resources_allocate -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x4e58072e fw_iso_resources_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x320e0cd2 amdtp_stream_pcm_prepare +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x4ecb333e cmp_connection_break +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x52a8736b avc_general_set_sig_fmt EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x53ca18e8 amdtp_rate_table -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x66e9f4cd fcp_bus_reset -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x6dc131a8 amdtp_stream_set_parameters -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x768364f0 amdtp_stream_pcm_abort -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x79f0ff9d cmp_connection_check_used -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x88c665ee cmp_connection_update -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x9680fed1 fcp_avc_transaction -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x9d0bbcd3 cmp_connection_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb59fcae6 amdtp_stream_get_max_payload -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb99d6211 snd_fw_transaction -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xcc3e7bdc amdtp_stream_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xcf77dbe0 iso_packets_buffer_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd6454bdf avc_general_get_sig_fmt -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe228c5e0 amdtp_stream_add_pcm_hw_constraints -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xede35aa1 cmp_connection_break -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xf0964477 amdtp_stream_update -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xf36510de fw_iso_resources_update -EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0xe5992c96 snd_ak4113_resume -EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0xf3dbf167 snd_ak4113_suspend -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x2d976e7b snd_ak4114_suspend -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x688d6eba snd_ak4114_external_rate -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x7359c7af snd_ak4114_check_rate_and_errors -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x7e0336ae snd_ak4114_reinit -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xa54a4f40 snd_ak4114_resume -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xc6d19558 snd_ak4114_build -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xe6078819 snd_ak4114_create -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xf861e984 snd_ak4114_reg_write -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x01eb9793 snd_ak4117_check_rate_and_errors -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x109c1488 snd_ak4117_build -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x7dd4b38b snd_ak4117_reinit -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x9e8678ca snd_ak4117_reg_write -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xbe130f8e snd_ak4117_external_rate -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xec1a79ad snd_ak4117_create -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x13fb87b3 snd_akm4xxx_init -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x8558b26e snd_akm4xxx_build_controls -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xd44ebf4e snd_akm4xxx_write -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xf14206cb snd_akm4xxx_reset -EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x4f396b71 snd_pt2258_build_controls -EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0xe169dbf7 snd_pt2258_reset -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x13b63421 snd_cs8427_create -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x29021f00 snd_cs8427_reg_write -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x2d390df6 snd_cs8427_init -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x57b357a4 snd_cs8427_iec958_active -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x5d9509d5 snd_cs8427_iec958_build -EXPORT_SYMBOL sound/i2c/snd-cs8427 0xdfe60a3a snd_cs8427_iec958_pcm -EXPORT_SYMBOL sound/i2c/snd-i2c 0x0f4418a2 snd_i2c_device_create -EXPORT_SYMBOL sound/i2c/snd-i2c 0x24a9602c snd_i2c_bus_create -EXPORT_SYMBOL sound/i2c/snd-i2c 0x537dde20 snd_i2c_device_free -EXPORT_SYMBOL sound/i2c/snd-i2c 0xa80bbf32 snd_i2c_sendbytes -EXPORT_SYMBOL sound/i2c/snd-i2c 0xdddabb51 snd_i2c_probeaddr -EXPORT_SYMBOL sound/i2c/snd-i2c 0xf758ae5d snd_i2c_readbytes -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x0aeed291 snd_sbdsp_get_byte -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x53eb9631 snd_sbdsp_reset -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x5cbf66f0 snd_sbmixer_resume -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x74a488fe snd_sbdsp_command -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x814c4a67 snd_sbdsp_create -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x90a26f06 snd_sbmixer_add_ctl -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x9cd6085c snd_sbmixer_suspend -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xde48c919 snd_sbmixer_new -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xecede8a9 snd_sbmixer_read -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xef2d6f1b snd_sbmixer_write -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x04ab5d75 snd_ac97_write_cache -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x04d1d94b snd_ac97_update -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x133f241f snd_ac97_set_rate -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x234217ce snd_ac97_resume -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x2e9b1c4a snd_ac97_update_bits -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x4cc40feb snd_ac97_tune_hardware -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x50f24979 snd_ac97_update_power -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x769c9790 snd_ac97_pcm_close -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x7d95b5aa snd_ac97_suspend -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x887967cb snd_ac97_write -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x931978d9 snd_ac97_pcm_assign -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x96ef29de snd_ac97_read -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x9a325e92 snd_ac97_get_short_name -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xc1938595 snd_ac97_bus -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xce9162fb snd_ac97_pcm_open -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xeaf5423a snd_ac97_pcm_double_rate_rules -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xfb857086 snd_ac97_mixer -EXPORT_SYMBOL sound/pci/asihpi/snd-asihpi 0x1b8160bf hpi_send_recv -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x0260d591 snd_emu10k1_synth_bzero -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x27ea5224 snd_emu10k1_synth_free -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x2c7866e4 snd_emu10k1_ptr_write -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x33d29b88 snd_emu10k1_voice_alloc -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x34483775 snd_emu10k1_synth_copy_from_user -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x46ba4570 snd_emu10k1_memblk_map -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x511c5fe0 snd_emu10k1_voice_free -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x955b0bd0 snd_emu10k1_synth_alloc -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xf9939f54 snd_emu10k1_ptr_read -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x2abf9469 snd_ice1712_akm4xxx_init -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x7fa277ec snd_ice1712_akm4xxx_free -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xcf63203a snd_ice1712_akm4xxx_build_controls -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x16b31f2c oxygen_read_ac97 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x1994b03c oxygen_write_spi -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x1ccc2d51 oxygen_pci_shutdown -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x21d581a7 oxygen_write_uart -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x24fbca77 oxygen_read32 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x30c9acc3 oxygen_write8 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x410ee40f oxygen_read16 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x66676df1 oxygen_write_i2c -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x71081356 oxygen_update_dac_routing -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x79121e98 oxygen_pci_probe -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x9d0b4a21 oxygen_write8_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xb1a42eeb oxygen_write16 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xc02d71b0 oxygen_pci_pm -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xc82c381c oxygen_write_ac97 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xcd4f4aec oxygen_write32_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xd73a3f3a oxygen_reset_uart -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xd91abddd oxygen_read8 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xe76c0547 oxygen_write_ac97_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xe9b6c8ab oxygen_write16_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xf1a590c2 oxygen_write32 -EXPORT_SYMBOL sound/pci/trident/snd-trident 0x43508a11 snd_trident_write_voice_regs -EXPORT_SYMBOL sound/pci/trident/snd-trident 0x91e0a4f9 snd_trident_stop_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0xa4ff879d snd_trident_alloc_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0xc1badc15 snd_trident_free_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0xe4aef498 snd_trident_start_voice +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x65bcd825 amdtp_stream_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x66752060 fcp_avc_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x6bfaac26 cmp_connection_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7040f973 fw_iso_resources_free +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7bf997b5 iso_packets_buffer_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x8485bb43 cmp_connection_check_used +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x86ba2621 cmp_connection_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x8715b560 iso_packets_buffer_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x9a0ae8a4 amdtp_stream_add_pcm_hw_constraints +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x9e2c299d avc_general_get_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb6ec24cd cmp_connection_establish +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb9e62f89 amdtp_stream_get_max_payload +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xbbeebb0d cmp_connection_reserve +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc053ccd4 snd_fw_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc0db31ea fw_iso_resources_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd7657568 amdtp_stream_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe24de5ae amdtp_stream_destroy +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x7d41411a snd_ak4113_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x828f4ee7 snd_ak4113_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x0adc1464 snd_ak4114_check_rate_and_errors +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x4e829684 snd_ak4114_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x609b2e31 snd_ak4114_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x6f5181e4 snd_ak4114_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x769b94a5 snd_ak4114_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x97204715 snd_ak4114_build +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xb366ee74 snd_ak4114_reinit +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xd2a15498 snd_ak4114_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x02e6b90c snd_ak4117_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x114a9ea8 snd_ak4117_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x7f3ad292 snd_ak4117_check_rate_and_errors +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x84fd9058 snd_ak4117_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x93018790 snd_ak4117_build +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xa13b5ec2 snd_ak4117_reinit +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x1bb4e738 snd_akm4xxx_build_controls +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x2abb489d snd_akm4xxx_init +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x367e7ccc snd_akm4xxx_reset +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xec7e8eab snd_akm4xxx_write +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0xbc99cd82 snd_pt2258_reset +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0xd832a0c2 snd_pt2258_build_controls +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x430fa06d snd_cs8427_iec958_build +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x54e6fc84 snd_cs8427_reg_write +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x5f3b1510 snd_cs8427_init +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x6db5d16d snd_cs8427_create +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x73af2fc5 snd_cs8427_iec958_pcm +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x99925fb1 snd_cs8427_iec958_active +EXPORT_SYMBOL sound/i2c/snd-i2c 0x1f45f7f5 snd_i2c_sendbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0x46ecb028 snd_i2c_readbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0x4721abe3 snd_i2c_device_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0x5d2a82b4 snd_i2c_bus_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0x5d976492 snd_i2c_device_free +EXPORT_SYMBOL sound/i2c/snd-i2c 0xf2edd5e3 snd_i2c_probeaddr +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x31f73d87 snd_sbmixer_add_ctl +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x5d70475e snd_sbdsp_command +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x5efd2456 snd_sbmixer_suspend +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x7b45857c snd_sbmixer_resume +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x96dbfab8 snd_sbmixer_read +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xa218b3f0 snd_sbdsp_get_byte +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xb9039379 snd_sbmixer_write +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xcfe8570e snd_sbmixer_new +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xd2e22fdd snd_sbdsp_reset +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xd49c7d11 snd_sbdsp_create +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x11879e26 snd_ac97_pcm_open +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x3d3ee1ef snd_ac97_write_cache +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x58d0ccc7 snd_ac97_resume +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x59448a02 snd_ac97_mixer +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x5d14394d snd_ac97_update +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x5d63e219 snd_ac97_get_short_name +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x60f1b994 snd_ac97_suspend +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x653283c6 snd_ac97_read +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x7fdda4d1 snd_ac97_pcm_assign +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x80e48f31 snd_ac97_tune_hardware +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x8296267e snd_ac97_update_power +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x95fb4a7a snd_ac97_write +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x9db08a39 snd_ac97_pcm_double_rate_rules +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xa6717a48 snd_ac97_pcm_close +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xaf388536 snd_ac97_update_bits +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xb6a79817 snd_ac97_set_rate +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xf49ccd9e snd_ac97_bus +EXPORT_SYMBOL sound/pci/asihpi/snd-asihpi 0x061b93fa hpi_send_recv +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x3ff0b136 snd_emu10k1_ptr_write +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x408ac40c snd_emu10k1_voice_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x657cf995 snd_emu10k1_synth_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x69cb6163 snd_emu10k1_synth_bzero +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x6ddd7791 snd_emu10k1_ptr_read +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x9525d909 snd_emu10k1_synth_copy_from_user +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xa427b082 snd_emu10k1_voice_alloc +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xdef76929 snd_emu10k1_memblk_map +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xe767d210 snd_emu10k1_synth_alloc +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x1cd42158 snd_ice1712_akm4xxx_build_controls +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x37aba52f snd_ice1712_akm4xxx_init +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x7b852cce snd_ice1712_akm4xxx_free +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x0e7d90b8 oxygen_reset_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x11216683 oxygen_write_i2c +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x18ecd99a oxygen_write_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x19c05266 oxygen_write32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x221ef245 oxygen_read8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x2ce1912f oxygen_pci_pm +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x381ef7f8 oxygen_write8_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x417f7378 oxygen_write16_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x57a6e635 oxygen_write8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x5ffa776e oxygen_write_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x6c11048b oxygen_write16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x77c4fbc4 oxygen_write32_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x978d423b oxygen_write_ac97_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xa0ad57c4 oxygen_read_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xac8d10f9 oxygen_update_dac_routing +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xb65a6309 oxygen_read32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xc857f72b oxygen_write_spi +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xd857411f oxygen_read16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xe12755e7 oxygen_pci_shutdown +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xf3a1856e oxygen_pci_probe +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x245480bf snd_trident_start_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x25637e29 snd_trident_write_voice_regs +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x8b0a54f4 snd_trident_free_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x9b45f0f8 snd_trident_stop_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xcdce6110 snd_trident_alloc_voice EXPORT_SYMBOL sound/soc/amd/acp_audio_dma 0xea74f232 bt_uart_enable -EXPORT_SYMBOL sound/soc/codecs/snd-soc-adau1372 0x1a3e3409 adau1372_probe -EXPORT_SYMBOL sound/soc/codecs/snd-soc-lpass-wsa-macro 0x6901be97 wsa_macro_set_spkr_mode -EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0x25eb6560 pcm3060_regmap -EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0x9b8050bf pcm3060_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-adau1372 0xf883bf3d adau1372_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-lpass-wsa-macro 0x4081898f wsa_macro_set_spkr_mode +EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0x1b4df79d pcm3060_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0x78f4bddc pcm3060_regmap EXPORT_SYMBOL sound/soc/codecs/snd-soc-rt715 0xed2acb24 hda_to_sdw -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0xbed21e1d tlv320aic23_probe -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0xc760f8fb tlv320aic23_regmap -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x6cc2d343 aic32x4_remove -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0xc94ee1ad aic32x4_regmap_config -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0xd4dc6701 aic32x4_probe -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic3x 0x295ed1b1 aic3x_probe -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic3x 0x58aaea4d aic3x_remove +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x9417bdcd tlv320aic23_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0xcbde4e86 tlv320aic23_regmap +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x34d1009f aic32x4_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x645d04e0 aic32x4_remove +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0xe2835ab5 aic32x4_regmap_config +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic3x 0x98339f17 aic3x_remove +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic3x 0xeabe34c8 aic3x_probe EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x3a195ca9 wcd_mbhc_get_impedance -EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x44df824f wcd_mbhc_start -EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x526972be 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 0x95f81f99 wcd_dt_parse_mbhc_data +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x8b37905a wcd_mbhc_start +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x8ead8ea2 wcd_mbhc_init +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x9cb9223f wcd_dt_parse_mbhc_data EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0xa5758a49 wcd_mbhc_get_hph_type EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0xd094df47 wcd_mbhc_deinit EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0xe2beca26 wcd_mbhc_stop -EXPORT_SYMBOL sound/soc/snd-soc-core 0xe647927e snd_soc_alloc_ac97_component -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x02ad33a9 snd_sof_ipc_init -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x064b34bd sof_machine_check -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x08020005 snd_sof_resume -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x0dc9074f sof_block_read -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x0eb7fc24 snd_sof_pcm_period_elapsed -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x12f25e6d snd_sof_init_trace -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x145654a2 snd_sof_ipc_free -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x1596afda snd_sof_ipc_reply -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x1adc292f snd_sof_load_firmware_raw +EXPORT_SYMBOL sound/soc/snd-soc-core 0x121a152c snd_soc_alloc_ac97_component +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x00c0f347 sof_fw_ready +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x093bd6c9 sof_dai_get_bclk +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x0bb2be00 snd_sof_pci_update_bits +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x111669ce snd_sof_dsp_update_bits +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x12eb5e3d snd_sof_dsp_mailbox_init +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x14f232e5 snd_sof_device_shutdown +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x15bc5cf0 snd_sof_fw_unload +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x1d1e3508 sof_io_write EXPORT_SYMBOL sound/soc/sof/snd-sof 0x1d22a5ea sof_ipc_tx_message_no_pm -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x1d340505 snd_sof_dsp_update_bits64 -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x1fa18f43 snd_sof_prepare -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x23cf3108 snd_sof_ipc_set_get_comp_data -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x28f5322d snd_sof_pci_update_bits -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x2cad7566 snd_sof_dsp_mailbox_init -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x2d141c77 sof_pcm_dai_link_fixup -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x34a5cd43 snd_sof_dsp_update_bits_forced -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x3750ff2c snd_sof_fw_unload -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x37d26441 snd_sof_release_trace -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x3b52c643 sof_fw_ready -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x3f184752 sof_io_write -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x46e3c86a snd_sof_trace_notify_for_error -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x4f87bcbe snd_sof_dsp_panic -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x55ee4199 snd_sof_complete -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x57773dfc snd_sof_handle_fw_exception -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x5f93f09c snd_sof_device_probe_completed -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x6141055b snd_sof_load_firmware_memcpy -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x63154a3b snd_sof_ipc_stream_posn -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x6381d358 sof_mailbox_write -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x69e1b4d8 sof_dai_get_mclk -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x6a78b59e sof_machine_register -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x6dcea985 snd_sof_dsp_update_bits_unlocked -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x6f303170 snd_sof_runtime_suspend -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x701a8766 snd_sof_dsp_update_bits64_unlocked -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x85a44168 snd_sof_dsp_update_bits -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x8bb798c8 sof_dai_get_bclk -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x9553704b sof_block_write -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x97c4ebf5 snd_sof_device_remove -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x99328d84 sof_io_write64 -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x9be3f164 snd_sof_run_firmware -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa0ebc589 snd_sof_parse_module_memcpy -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa234bf94 snd_sof_get_status -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa418e0dd snd_sof_runtime_resume -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xac9bf320 sof_io_read -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb73aa2ed sof_io_read64 -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xbb9c3d99 snd_sof_device_shutdown -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xbcd67f61 snd_sof_free_trace -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xbe5dd92b snd_sof_ipc_valid -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc2a59d67 snd_sof_runtime_idle -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc4779612 snd_sof_device_probe -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc980e757 sof_machine_unregister -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xcb978fbf snd_sof_load_topology +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x282bd5d7 snd_sof_suspend +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x2c274a45 sof_machine_check +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x30f15196 snd_sof_device_probe_completed +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x3f5313dd snd_sof_ipc_set_get_comp_data +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x460a3de5 snd_sof_runtime_resume +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x4d7d35f3 sof_mailbox_read +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x4e2c0e4b snd_sof_ipc_stream_posn +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x5e1d311c snd_sof_create_page_table +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x5efc235a snd_sof_init_trace +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x60af41fb snd_sof_load_firmware_memcpy +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x61677b7c snd_sof_ipc_free +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x65a67be3 snd_sof_ipc_reply +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x69ed35a0 snd_sof_dsp_panic +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x709f82f3 sof_io_write64 +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x76f75c63 snd_sof_load_firmware_raw +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x7bcd5e7f snd_sof_trace_notify_for_error +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x7d9900c7 snd_sof_ipc_valid +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x7e047fca snd_sof_device_remove +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x7e986e7b sof_io_read64 +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x7ffebf81 snd_sof_free_trace +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x83a9576e snd_sof_runtime_idle +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x8818dde1 sof_block_read +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x8b467a59 snd_sof_dsp_update_bits_forced +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x8c076aa4 sof_block_write +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x923a1ef6 sof_io_read +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x92dcd5e1 snd_sof_dsp_update_bits64 +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x96723870 snd_sof_handle_fw_exception +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x9a068446 snd_sof_load_firmware +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa05a06b8 snd_sof_fw_parse_ext_data +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa7816c70 snd_sof_ipc_init +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa792bb1e sof_machine_unregister +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa8cf270f snd_sof_load_topology +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xaa83816c sof_dai_get_mclk +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb2cf1335 sof_mailbox_write +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xbc323e8d snd_sof_dsp_only_d0i3_compatible_stream_active +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc8462e33 snd_sof_dsp_update_bits_unlocked +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc94c183a sof_pcm_dai_link_fixup EXPORT_SYMBOL sound/soc/sof/snd-sof 0xcfdc5f98 sof_ipc_tx_message -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xde175275 sof_mailbox_read -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xe62dac36 snd_sof_ipc_msgs_rx -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xe7947176 snd_sof_suspend -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xee4a6354 snd_sof_create_page_table -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf0202db3 snd_sof_fw_parse_ext_data -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xfc1720f5 snd_sof_dsp_only_d0i3_compatible_stream_active -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xfeae2d8e snd_sof_load_firmware -EXPORT_SYMBOL sound/soundcore 0x4db7acca register_sound_dsp -EXPORT_SYMBOL sound/soundcore 0x6a475ef5 sound_class +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd7fb2ef5 snd_sof_prepare +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xdc776abb snd_sof_parse_module_memcpy +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xdda07afb snd_sof_complete +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xddc0cd3d snd_sof_pcm_period_elapsed +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xe16bbde7 snd_sof_get_status +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xe58f42db snd_sof_resume +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xe7cc600f snd_sof_dsp_update_bits64_unlocked +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xe9e94d03 snd_sof_runtime_suspend +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf3c83136 snd_sof_ipc_msgs_rx +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf3ff9e5e snd_sof_release_trace +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf61a137c snd_sof_run_firmware +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xfa071979 sof_machine_register +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xfe20b878 snd_sof_device_probe +EXPORT_SYMBOL sound/soundcore 0x1c5f86f0 sound_class +EXPORT_SYMBOL sound/soundcore 0x767d9fcc register_sound_special_device EXPORT_SYMBOL sound/soundcore 0x7afc9d8a unregister_sound_mixer -EXPORT_SYMBOL sound/soundcore 0x97f19884 register_sound_mixer +EXPORT_SYMBOL sound/soundcore 0x87607ce8 register_sound_special EXPORT_SYMBOL sound/soundcore 0x99c95fa5 unregister_sound_special -EXPORT_SYMBOL sound/soundcore 0xbc539c20 register_sound_special_device EXPORT_SYMBOL sound/soundcore 0xcd083b10 unregister_sound_dsp -EXPORT_SYMBOL sound/soundcore 0xe5b59ce4 register_sound_special -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x2ccc6b73 snd_emux_free -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x3f63871b snd_emux_new -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x507e3885 snd_emux_terminate_all +EXPORT_SYMBOL sound/soundcore 0xee875b0e register_sound_dsp +EXPORT_SYMBOL sound/soundcore 0xfb02e485 register_sound_mixer +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x0f5cb01b snd_emux_register EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x655cb202 snd_sf_linear_to_log -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xa6fe4d11 snd_emux_lock_voice -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xed09c2f8 snd_emux_register -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xf6975fb3 snd_emux_unlock_voice +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x7f9b60b4 snd_emux_lock_voice +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x864e33ce snd_emux_free +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xbe9e1bfd snd_emux_unlock_voice +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xdc849ea4 snd_emux_new +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xfc57a1df snd_emux_terminate_all 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 @@ -6091,5655 +6102,5661 @@ 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 0x597aae92 __snd_usbmidi_create +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x4c403be0 __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 0x00094fdb dm_table_get_md -EXPORT_SYMBOL vmlinux 0x000e0d69 fscrypt_put_encryption_info -EXPORT_SYMBOL vmlinux 0x000f046e set_create_files_as -EXPORT_SYMBOL vmlinux 0x0011c792 netdev_features_change EXPORT_SYMBOL vmlinux 0x00148653 vsnprintf -EXPORT_SYMBOL vmlinux 0x001ffb5f pci_assign_resource -EXPORT_SYMBOL vmlinux 0x0020c596 serio_rescan -EXPORT_SYMBOL vmlinux 0x0022a64d nd_btt_probe -EXPORT_SYMBOL vmlinux 0x00384299 netdev_unbind_sb_channel -EXPORT_SYMBOL vmlinux 0x006f80a5 md_error -EXPORT_SYMBOL vmlinux 0x00723d41 devm_alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0x00314ee6 __serio_register_port +EXPORT_SYMBOL vmlinux 0x0039a5c8 msi_desc_to_pci_dev +EXPORT_SYMBOL vmlinux 0x00686492 skb_tx_error EXPORT_SYMBOL vmlinux 0x00a4b044 amd_iommu_deactivate_guest_mode +EXPORT_SYMBOL vmlinux 0x00b4d10a bioset_init_from_src EXPORT_SYMBOL vmlinux 0x00b4e615 posix_acl_equiv_mode -EXPORT_SYMBOL vmlinux 0x00c6bb06 jbd2_fc_wait_bufs +EXPORT_SYMBOL vmlinux 0x00b8a548 tcf_action_set_ctrlact +EXPORT_SYMBOL vmlinux 0x00cdfe6a security_task_getsecid_subj EXPORT_SYMBOL vmlinux 0x00d7e722 vme_lm_count -EXPORT_SYMBOL vmlinux 0x00dce391 skb_csum_hwoffload_help -EXPORT_SYMBOL vmlinux 0x00dec27b unregister_cdrom -EXPORT_SYMBOL vmlinux 0x00e70f4b neigh_event_ns -EXPORT_SYMBOL vmlinux 0x00e762fe mroute6_is_socket +EXPORT_SYMBOL vmlinux 0x00f406e3 pci_prepare_to_sleep EXPORT_SYMBOL vmlinux 0x01000e51 schedule +EXPORT_SYMBOL vmlinux 0x0112ea30 generic_cont_expand_simple EXPORT_SYMBOL vmlinux 0x011bab86 prepare_creds -EXPORT_SYMBOL vmlinux 0x0124bf64 devm_register_netdev -EXPORT_SYMBOL vmlinux 0x012d4186 blk_mq_init_queue +EXPORT_SYMBOL vmlinux 0x0127466f generic_shutdown_super +EXPORT_SYMBOL vmlinux 0x012dee77 module_refcount +EXPORT_SYMBOL vmlinux 0x013af3d6 security_old_inode_init_security EXPORT_SYMBOL vmlinux 0x013f26ae dma_fence_get_stub EXPORT_SYMBOL vmlinux 0x0147812c kblockd_mod_delayed_work_on -EXPORT_SYMBOL vmlinux 0x01517cf3 tcp_setsockopt +EXPORT_SYMBOL vmlinux 0x014fc2eb devm_devfreq_register_notifier EXPORT_SYMBOL vmlinux 0x015af7f4 system_state -EXPORT_SYMBOL vmlinux 0x01639fa9 sock_no_bind -EXPORT_SYMBOL vmlinux 0x016af119 hmm_range_fault +EXPORT_SYMBOL vmlinux 0x015e1e4b __wait_on_buffer EXPORT_SYMBOL vmlinux 0x01757935 rdmacg_register_device +EXPORT_SYMBOL vmlinux 0x01768976 request_key_rcu EXPORT_SYMBOL vmlinux 0x017de3d5 nr_cpu_ids +EXPORT_SYMBOL vmlinux 0x0183a9ac blk_rq_map_user +EXPORT_SYMBOL vmlinux 0x0183db6c kmem_cache_size EXPORT_SYMBOL vmlinux 0x018574a1 mb_cache_entry_delete EXPORT_SYMBOL vmlinux 0x0188cd88 vme_alloc_consistent -EXPORT_SYMBOL vmlinux 0x019461d8 fwnode_get_mac_address +EXPORT_SYMBOL vmlinux 0x0192180b iov_iter_pipe EXPORT_SYMBOL vmlinux 0x0199c3bd ethtool_intersect_link_masks EXPORT_SYMBOL vmlinux 0x01b6865c xa_get_mark +EXPORT_SYMBOL vmlinux 0x01b82f92 mmc_set_blocklen EXPORT_SYMBOL vmlinux 0x01bf55fc paddr_vmcoreinfo_note -EXPORT_SYMBOL vmlinux 0x01d12356 __traceiter_module_get -EXPORT_SYMBOL vmlinux 0x020d00c2 inet_shutdown +EXPORT_SYMBOL vmlinux 0x01c1afa8 bio_copy_data EXPORT_SYMBOL vmlinux 0x020dbf27 bitmap_alloc EXPORT_SYMBOL vmlinux 0x02124474 ip_send_check -EXPORT_SYMBOL vmlinux 0x021e14f2 find_vma -EXPORT_SYMBOL vmlinux 0x0224455c build_skb EXPORT_SYMBOL vmlinux 0x0228925f iowrite64_hi_lo EXPORT_SYMBOL vmlinux 0x02293ac3 dma_fence_chain_ops -EXPORT_SYMBOL vmlinux 0x02326574 __neigh_for_each_release +EXPORT_SYMBOL vmlinux 0x02371725 __alloc_disk_node EXPORT_SYMBOL vmlinux 0x0237b57a arch_unregister_cpu EXPORT_SYMBOL vmlinux 0x023d1b90 wrmsr_on_cpu EXPORT_SYMBOL vmlinux 0x0248efd3 kstrtobool_from_user -EXPORT_SYMBOL vmlinux 0x024b98b7 __genphy_config_aneg -EXPORT_SYMBOL vmlinux 0x025420f3 __mod_lruvec_page_state +EXPORT_SYMBOL vmlinux 0x026d0b30 flow_rule_match_vlan +EXPORT_SYMBOL vmlinux 0x0272adb0 put_cmsg_scm_timestamping64 EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues -EXPORT_SYMBOL vmlinux 0x0285ad22 tcf_idr_create_from_flags -EXPORT_SYMBOL vmlinux 0x02871f55 memory_cgrp_subsys -EXPORT_SYMBOL vmlinux 0x028ca835 cfb_copyarea +EXPORT_SYMBOL vmlinux 0x0288442c dev_get_iflink +EXPORT_SYMBOL vmlinux 0x028b51d7 vga_set_legacy_decoding +EXPORT_SYMBOL vmlinux 0x02951c18 kmem_cache_create EXPORT_SYMBOL vmlinux 0x0296695f refcount_warn_saturate -EXPORT_SYMBOL vmlinux 0x02a18c74 nf_conntrack_destroy -EXPORT_SYMBOL vmlinux 0x02acc83d neigh_seq_stop -EXPORT_SYMBOL vmlinux 0x02b84184 mr_table_alloc EXPORT_SYMBOL vmlinux 0x02b8ab42 sg_copy_to_buffer -EXPORT_SYMBOL vmlinux 0x02c4cf48 eth_prepare_mac_addr_change EXPORT_SYMBOL vmlinux 0x02c656b6 acpi_enable_all_runtime_gpes -EXPORT_SYMBOL vmlinux 0x02c8fe8d tcp_v4_md5_lookup -EXPORT_SYMBOL vmlinux 0x02ccdbdc migrate_vma_finalize -EXPORT_SYMBOL vmlinux 0x02ceff1c __find_get_block -EXPORT_SYMBOL vmlinux 0x02dc9006 devfreq_update_status -EXPORT_SYMBOL vmlinux 0x02fb00bf dns_query -EXPORT_SYMBOL vmlinux 0x031e3a99 pci_bus_set_ops -EXPORT_SYMBOL vmlinux 0x0327190c unix_get_socket -EXPORT_SYMBOL vmlinux 0x0327fad4 xfrm_input -EXPORT_SYMBOL vmlinux 0x032fadfe tcp_timewait_state_process +EXPORT_SYMBOL vmlinux 0x02cfd9ef devm_backlight_device_register +EXPORT_SYMBOL vmlinux 0x02d2c18a km_report +EXPORT_SYMBOL vmlinux 0x02da1294 tcf_idr_release +EXPORT_SYMBOL vmlinux 0x02f69722 dev_set_promiscuity +EXPORT_SYMBOL vmlinux 0x031508d8 inode_set_bytes +EXPORT_SYMBOL vmlinux 0x031e6886 blk_mq_run_hw_queue +EXPORT_SYMBOL vmlinux 0x0324cc99 fs_param_is_blockdev EXPORT_SYMBOL vmlinux 0x0334795d icst307_s2div EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl -EXPORT_SYMBOL vmlinux 0x03535a1e input_set_abs_params +EXPORT_SYMBOL vmlinux 0x03391905 migrate_vma_setup +EXPORT_SYMBOL vmlinux 0x034f06b6 mmc_cqe_post_req +EXPORT_SYMBOL vmlinux 0x0353e158 zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0x03544f5d dcb_ieee_setapp +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 0x036bb8cd scsi_set_medium_removal -EXPORT_SYMBOL vmlinux 0x03741cd6 security_inet_conn_request EXPORT_SYMBOL vmlinux 0x037a0cba kfree -EXPORT_SYMBOL vmlinux 0x037efa77 finish_no_open EXPORT_SYMBOL vmlinux 0x03815f35 ledtrig_disk_activity -EXPORT_SYMBOL vmlinux 0x038630bd vfs_fsync -EXPORT_SYMBOL vmlinux 0x03946575 flow_rule_match_mpls +EXPORT_SYMBOL vmlinux 0x0381662c d_alloc_parallel EXPORT_SYMBOL vmlinux 0x0397edd5 fb_edid_to_monspecs +EXPORT_SYMBOL vmlinux 0x03a40164 vm_map_pages_zero +EXPORT_SYMBOL vmlinux 0x03b260f6 bio_kmalloc EXPORT_SYMBOL vmlinux 0x03bf0e5a acpi_walk_resource_buffer -EXPORT_SYMBOL vmlinux 0x03c51236 skb_flow_dissect_hash -EXPORT_SYMBOL vmlinux 0x03f3f80c register_mii_timestamper -EXPORT_SYMBOL vmlinux 0x03f4d5bf edac_mc_find +EXPORT_SYMBOL vmlinux 0x03cfe778 pci_release_regions +EXPORT_SYMBOL vmlinux 0x03dd6e8c done_path_create +EXPORT_SYMBOL vmlinux 0x03e4d581 blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0x03e880fc tcp_gro_complete EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram -EXPORT_SYMBOL vmlinux 0x03fea4f3 tcp_make_synack -EXPORT_SYMBOL vmlinux 0x04032028 scsi_device_set_state -EXPORT_SYMBOL vmlinux 0x041922af inet6_add_offload -EXPORT_SYMBOL vmlinux 0x042e1750 devm_free_irq -EXPORT_SYMBOL vmlinux 0x042fa5a2 km_policy_notify +EXPORT_SYMBOL vmlinux 0x04037085 pcim_enable_device +EXPORT_SYMBOL vmlinux 0x040c21a4 ipv6_select_ident +EXPORT_SYMBOL vmlinux 0x04203253 netdev_sk_get_lowest_dev +EXPORT_SYMBOL vmlinux 0x04259d18 tcf_idr_create_from_flags +EXPORT_SYMBOL vmlinux 0x042887ed devfreq_monitor_resume +EXPORT_SYMBOL vmlinux 0x042ff3c1 md_write_inc +EXPORT_SYMBOL vmlinux 0x0437c51c __mdiobus_read EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator -EXPORT_SYMBOL vmlinux 0x045093e2 unregister_shrinker +EXPORT_SYMBOL vmlinux 0x04499bbd tcp_release_cb EXPORT_SYMBOL vmlinux 0x0474edef kstrtou16_from_user +EXPORT_SYMBOL vmlinux 0x04796361 kern_unmount EXPORT_SYMBOL vmlinux 0x0484c6c4 acpi_enter_sleep_state_prep EXPORT_SYMBOL vmlinux 0x04863e28 hdmi_audio_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0x0490b1f9 dev_mc_sync_multiple -EXPORT_SYMBOL vmlinux 0x049f336c scsi_target_quiesce -EXPORT_SYMBOL vmlinux 0x04a88ab4 dquot_scan_active -EXPORT_SYMBOL vmlinux 0x04ab6d84 pci_clear_master +EXPORT_SYMBOL vmlinux 0x049ded71 uart_add_one_port EXPORT_SYMBOL vmlinux 0x04c62fd7 __memset -EXPORT_SYMBOL vmlinux 0x04d7dc57 page_pool_release_page +EXPORT_SYMBOL vmlinux 0x04c83dcd read_cache_pages EXPORT_SYMBOL vmlinux 0x04d8c750 release_perfctr_nmi EXPORT_SYMBOL vmlinux 0x04d9bf4e blk_set_stacking_limits -EXPORT_SYMBOL vmlinux 0x04de193b i2c_register_driver EXPORT_SYMBOL vmlinux 0x04ea5d10 ksize -EXPORT_SYMBOL vmlinux 0x04f513c0 pcim_iomap_table -EXPORT_SYMBOL vmlinux 0x04f923fd acpi_register_debugger +EXPORT_SYMBOL vmlinux 0x04ef049e skb_realloc_headroom EXPORT_SYMBOL vmlinux 0x050877b9 dmi_first_match +EXPORT_SYMBOL vmlinux 0x05103521 mipi_dsi_dcs_get_power_mode EXPORT_SYMBOL vmlinux 0x051d58e8 dma_fence_wait_any_timeout -EXPORT_SYMBOL vmlinux 0x051e188d fqdir_exit +EXPORT_SYMBOL vmlinux 0x05226e16 bio_add_page EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch -EXPORT_SYMBOL vmlinux 0x052ebff6 vlan_vids_del_by_dev -EXPORT_SYMBOL vmlinux 0x05341b29 udp_seq_start +EXPORT_SYMBOL vmlinux 0x052a49c1 __mmap_lock_do_trace_start_locking EXPORT_SYMBOL vmlinux 0x054496b4 schedule_timeout_interruptible +EXPORT_SYMBOL vmlinux 0x05584880 netpoll_poll_dev EXPORT_SYMBOL vmlinux 0x055e77e8 jiffies_64 -EXPORT_SYMBOL vmlinux 0x057b71b0 con_is_visible -EXPORT_SYMBOL vmlinux 0x05887fdf ndisc_mc_map +EXPORT_SYMBOL vmlinux 0x05615cd8 thread_group_exited +EXPORT_SYMBOL vmlinux 0x0584b357 nd_region_acquire_lane +EXPORT_SYMBOL vmlinux 0x058c9502 pci_select_bars EXPORT_SYMBOL vmlinux 0x059e1482 __traceiter_dma_fence_emit -EXPORT_SYMBOL vmlinux 0x05a36b41 neigh_seq_next -EXPORT_SYMBOL vmlinux 0x05ae45c4 simple_get_link -EXPORT_SYMBOL vmlinux 0x05b61d4d vfs_iter_read +EXPORT_SYMBOL vmlinux 0x05a76773 arp_xmit +EXPORT_SYMBOL vmlinux 0x05baab09 file_update_time +EXPORT_SYMBOL vmlinux 0x05c9d2e1 inet_sock_destruct +EXPORT_SYMBOL vmlinux 0x05e31932 rproc_mem_entry_init +EXPORT_SYMBOL vmlinux 0x05eec3bc fs_param_is_s32 +EXPORT_SYMBOL vmlinux 0x05f2737a __xfrm_policy_check EXPORT_SYMBOL vmlinux 0x06052f8d __memmove -EXPORT_SYMBOL vmlinux 0x06060154 keyring_clear +EXPORT_SYMBOL vmlinux 0x0605c93f try_lookup_one_len EXPORT_SYMBOL vmlinux 0x060ba97c gen_pool_free_owner -EXPORT_SYMBOL vmlinux 0x060fe4c6 vfs_unlink EXPORT_SYMBOL vmlinux 0x061651be strcat +EXPORT_SYMBOL vmlinux 0x061d3b40 fddi_type_trans +EXPORT_SYMBOL vmlinux 0x0621d637 eth_mac_addr +EXPORT_SYMBOL vmlinux 0x06297603 generic_file_write_iter +EXPORT_SYMBOL vmlinux 0x062a99b7 __tcp_md5_do_lookup EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user -EXPORT_SYMBOL vmlinux 0x0636395e bh_uptodate_or_lock -EXPORT_SYMBOL vmlinux 0x0645c92b sk_stop_timer_sync +EXPORT_SYMBOL vmlinux 0x066128e7 ethtool_op_get_link +EXPORT_SYMBOL vmlinux 0x0667e8ac rawv6_mh_filter_register EXPORT_SYMBOL vmlinux 0x0668b595 _kstrtoul -EXPORT_SYMBOL vmlinux 0x066da19a security_inode_invalidate_secctx -EXPORT_SYMBOL vmlinux 0x067b2ff2 uart_remove_one_port -EXPORT_SYMBOL vmlinux 0x068230ff fscrypt_free_inode -EXPORT_SYMBOL vmlinux 0x0682363d request_firmware_nowait -EXPORT_SYMBOL vmlinux 0x068d52f5 tcp_peek_len +EXPORT_SYMBOL vmlinux 0x066d0f3a eth_commit_mac_addr_change +EXPORT_SYMBOL vmlinux 0x066da8f5 neigh_carrier_down +EXPORT_SYMBOL vmlinux 0x06a13ac7 __skb_gro_checksum_complete EXPORT_SYMBOL vmlinux 0x06a86bc1 iowrite16 -EXPORT_SYMBOL vmlinux 0x06b218f4 agp_copy_info -EXPORT_SYMBOL vmlinux 0x06b788a4 page_cache_prev_miss -EXPORT_SYMBOL vmlinux 0x06b9398e dma_resv_init -EXPORT_SYMBOL vmlinux 0x06b9825b blk_get_request EXPORT_SYMBOL vmlinux 0x06bd88b5 ucs2_strnlen EXPORT_SYMBOL vmlinux 0x06c8f2de slhc_compress -EXPORT_SYMBOL vmlinux 0x06dfea9a lease_get_mtime -EXPORT_SYMBOL vmlinux 0x06ff09ac uart_add_one_port -EXPORT_SYMBOL vmlinux 0x07004ca9 key_revoke -EXPORT_SYMBOL vmlinux 0x0724862d pci_scan_root_bus_bridge +EXPORT_SYMBOL vmlinux 0x06c91157 tc_setup_cb_add +EXPORT_SYMBOL vmlinux 0x06d29268 dev_mc_unsync +EXPORT_SYMBOL vmlinux 0x06f5d20e security_tun_dev_attach +EXPORT_SYMBOL vmlinux 0x06fc4490 dentry_open +EXPORT_SYMBOL vmlinux 0x071e1bb9 dquot_claim_space_nodirty +EXPORT_SYMBOL vmlinux 0x072323e6 seq_read_iter +EXPORT_SYMBOL vmlinux 0x0727db97 __netdev_alloc_skb EXPORT_SYMBOL vmlinux 0x072f901c vme_master_rmw -EXPORT_SYMBOL vmlinux 0x073b3203 devm_gen_pool_create -EXPORT_SYMBOL vmlinux 0x07447145 __udp_disconnect +EXPORT_SYMBOL vmlinux 0x0745117a devm_backlight_device_unregister EXPORT_SYMBOL vmlinux 0x0745a981 xa_erase -EXPORT_SYMBOL vmlinux 0x074e078b pcie_ptm_enabled -EXPORT_SYMBOL vmlinux 0x075a7ec0 __xfrm_decode_session -EXPORT_SYMBOL vmlinux 0x0768756c generic_file_read_iter -EXPORT_SYMBOL vmlinux 0x076ba6d0 pci_irq_vector +EXPORT_SYMBOL vmlinux 0x07563c64 buffer_migrate_page +EXPORT_SYMBOL vmlinux 0x079ff98a ptp_schedule_worker +EXPORT_SYMBOL vmlinux 0x07a208cd phy_resume EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit EXPORT_SYMBOL vmlinux 0x07ceeac9 panic_notifier_list -EXPORT_SYMBOL vmlinux 0x07e1bc3a md_finish_reshape -EXPORT_SYMBOL vmlinux 0x07f21d81 netdev_class_remove_file_ns +EXPORT_SYMBOL vmlinux 0x07efdd4f generic_block_bmap EXPORT_SYMBOL vmlinux 0x07f57478 pci_unmap_iospace EXPORT_SYMBOL vmlinux 0x0800473f __cond_resched -EXPORT_SYMBOL vmlinux 0x0800f31e netdev_reset_tc -EXPORT_SYMBOL vmlinux 0x0801a0e6 alloc_pages_vma EXPORT_SYMBOL vmlinux 0x0805f2c8 ecryptfs_get_auth_tok_key +EXPORT_SYMBOL vmlinux 0x08099b55 mmc_sw_reset EXPORT_SYMBOL vmlinux 0x08162c74 free_bucket_spinlocks -EXPORT_SYMBOL vmlinux 0x08179021 filemap_flush EXPORT_SYMBOL vmlinux 0x08249512 iwe_stream_add_point -EXPORT_SYMBOL vmlinux 0x082a74ee pci_dev_get EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister -EXPORT_SYMBOL vmlinux 0x08418bb3 mpage_writepage -EXPORT_SYMBOL vmlinux 0x0851811c tcp_openreq_init_rwin -EXPORT_SYMBOL vmlinux 0x086dd3cd mmc_is_req_done -EXPORT_SYMBOL vmlinux 0x0874cf06 vlan_ioctl_set +EXPORT_SYMBOL vmlinux 0x085b5be5 tcf_chain_put_by_act +EXPORT_SYMBOL vmlinux 0x08623c3b new_inode +EXPORT_SYMBOL vmlinux 0x0877430c param_get_charp +EXPORT_SYMBOL vmlinux 0x08822894 udp6_seq_ops EXPORT_SYMBOL vmlinux 0x0882a449 security_xfrm_policy_alloc -EXPORT_SYMBOL vmlinux 0x088a6699 __serio_register_port -EXPORT_SYMBOL vmlinux 0x0890f584 udp_lib_rehash -EXPORT_SYMBOL vmlinux 0x08a58d33 phy_sfp_probe -EXPORT_SYMBOL vmlinux 0x08e6aca9 uart_get_divisor -EXPORT_SYMBOL vmlinux 0x090e379f ip6_dst_check -EXPORT_SYMBOL vmlinux 0x090f1185 iget_failed -EXPORT_SYMBOL vmlinux 0x0916cbc4 filemap_map_pages +EXPORT_SYMBOL vmlinux 0x0892a69c twl6040_get_vibralr_status +EXPORT_SYMBOL vmlinux 0x0898cbfc __SCK__tp_func_spi_transfer_start +EXPORT_SYMBOL vmlinux 0x08e970b1 bio_integrity_add_page +EXPORT_SYMBOL vmlinux 0x08ee7235 nvdimm_namespace_capacity +EXPORT_SYMBOL vmlinux 0x091925b6 tcp_v4_mtu_reduced +EXPORT_SYMBOL vmlinux 0x091992e1 uart_write_wakeup +EXPORT_SYMBOL vmlinux 0x091b981d mmc_card_alternative_gpt_sector EXPORT_SYMBOL vmlinux 0x092e26bf acpi_remove_address_space_handler -EXPORT_SYMBOL vmlinux 0x092ff60d pcim_iomap_regions +EXPORT_SYMBOL vmlinux 0x092f8b3b tc_setup_cb_reoffload EXPORT_SYMBOL vmlinux 0x093712e5 acpi_purge_cached_objects -EXPORT_SYMBOL vmlinux 0x09382951 blk_mq_free_tag_set -EXPORT_SYMBOL vmlinux 0x0941720f rtnl_configure_link +EXPORT_SYMBOL vmlinux 0x0942305f tty_port_hangup +EXPORT_SYMBOL vmlinux 0x09425b91 simple_unlink +EXPORT_SYMBOL vmlinux 0x09483e69 cdrom_release +EXPORT_SYMBOL vmlinux 0x0968f54c sk_page_frag_refill +EXPORT_SYMBOL vmlinux 0x0975a7c1 rproc_coredump_add_custom_segment EXPORT_SYMBOL vmlinux 0x09769037 dmt_modes EXPORT_SYMBOL vmlinux 0x097af021 neigh_proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0x0989b317 thermal_zone_device_critical EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap -EXPORT_SYMBOL vmlinux 0x0995c81f kernel_param_unlock -EXPORT_SYMBOL vmlinux 0x0997b276 d_instantiate_new +EXPORT_SYMBOL vmlinux 0x0990c70c skb_append EXPORT_SYMBOL vmlinux 0x0998cc3c hdmi_infoframe_unpack -EXPORT_SYMBOL vmlinux 0x09b133b5 dquot_load_quota_inode -EXPORT_SYMBOL vmlinux 0x09b63db1 acpi_get_hp_hw_control_from_firmware -EXPORT_SYMBOL vmlinux 0x09ca9320 kern_path +EXPORT_SYMBOL vmlinux 0x09bbb336 agp_backend_release EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions -EXPORT_SYMBOL vmlinux 0x09d8be2c skb_tunnel_check_pmtu EXPORT_SYMBOL vmlinux 0x09da0ba4 xa_set_mark -EXPORT_SYMBOL vmlinux 0x09e1880f xfrm_input_resume -EXPORT_SYMBOL vmlinux 0x09fdb5d5 __tracepoint_kmalloc -EXPORT_SYMBOL vmlinux 0x0a01bac2 d_rehash EXPORT_SYMBOL vmlinux 0x0a0ebc08 __xa_cmpxchg +EXPORT_SYMBOL vmlinux 0x0a142b7a security_sb_clone_mnt_opts +EXPORT_SYMBOL vmlinux 0x0a1d9b3d dev_disable_lro EXPORT_SYMBOL vmlinux 0x0a1dbc76 tcp_rx_skb_cache_key EXPORT_SYMBOL vmlinux 0x0a2a0bce nla_append -EXPORT_SYMBOL vmlinux 0x0a2fbd15 genl_notify -EXPORT_SYMBOL vmlinux 0x0a357c9d devm_extcon_unregister_notifier_all +EXPORT_SYMBOL vmlinux 0x0a2e3fd7 ethtool_get_phc_vclocks +EXPORT_SYMBOL vmlinux 0x0a4e5941 mipi_dsi_dcs_soft_reset +EXPORT_SYMBOL vmlinux 0x0a4f674c key_validate +EXPORT_SYMBOL vmlinux 0x0a5f7577 netdev_adjacent_change_prepare +EXPORT_SYMBOL vmlinux 0x0a62c1e4 d_mark_dontcache EXPORT_SYMBOL vmlinux 0x0a770832 register_memory_notifier -EXPORT_SYMBOL vmlinux 0x0a8295e0 nd_device_notify -EXPORT_SYMBOL vmlinux 0x0a846e63 _copy_from_iter_nocache EXPORT_SYMBOL vmlinux 0x0a92ec74 boot_cpu_data -EXPORT_SYMBOL vmlinux 0x0a94bc07 tcp_sendpage +EXPORT_SYMBOL vmlinux 0x0a9b316f ethtool_op_get_ts_info +EXPORT_SYMBOL vmlinux 0x0a9ff11a seq_dentry +EXPORT_SYMBOL vmlinux 0x0aa01b60 nvdimm_bus_lock EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq -EXPORT_SYMBOL vmlinux 0x0aa6ba79 pci_release_region +EXPORT_SYMBOL vmlinux 0x0aa5e92e eth_header EXPORT_SYMBOL vmlinux 0x0aaccc92 pci_remap_iospace -EXPORT_SYMBOL vmlinux 0x0ab0bfdc inet6_del_offload -EXPORT_SYMBOL vmlinux 0x0ab47393 vga_get -EXPORT_SYMBOL vmlinux 0x0ab80ba5 cdev_set_parent -EXPORT_SYMBOL vmlinux 0x0abe636f pci_scan_root_bus +EXPORT_SYMBOL vmlinux 0x0ab0f2b6 ip_do_fragment +EXPORT_SYMBOL vmlinux 0x0ab20f3e __cgroup_bpf_run_filter_sk EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all -EXPORT_SYMBOL vmlinux 0x0ae0d861 I_BDEV -EXPORT_SYMBOL vmlinux 0x0ae4a2f8 flow_rule_match_enc_opts -EXPORT_SYMBOL vmlinux 0x0aea3098 ipv6_getsockopt -EXPORT_SYMBOL vmlinux 0x0af14eea elevator_alloc -EXPORT_SYMBOL vmlinux 0x0af99fe7 remove_watch_from_object -EXPORT_SYMBOL vmlinux 0x0b093c9e iov_iter_single_seg_count -EXPORT_SYMBOL vmlinux 0x0b0c6b5b nobh_truncate_page +EXPORT_SYMBOL vmlinux 0x0ae14a66 register_shrinker +EXPORT_SYMBOL vmlinux 0x0aeeee71 xsk_get_pool_from_qid EXPORT_SYMBOL vmlinux 0x0b19b445 ioread8 EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user -EXPORT_SYMBOL vmlinux 0x0b244104 get_thermal_instance EXPORT_SYMBOL vmlinux 0x0b26b8c8 acpi_run_osc EXPORT_SYMBOL vmlinux 0x0b290ada dma_fence_chain_walk -EXPORT_SYMBOL vmlinux 0x0b3bf0c9 fb_prepare_logo -EXPORT_SYMBOL vmlinux 0x0b42e36c __dquot_alloc_space -EXPORT_SYMBOL vmlinux 0x0b43ce2f netif_tx_wake_queue -EXPORT_SYMBOL vmlinux 0x0b4e49af sock_set_reuseport +EXPORT_SYMBOL vmlinux 0x0b2bebfc dquot_drop +EXPORT_SYMBOL vmlinux 0x0b2c8752 dquot_get_next_id +EXPORT_SYMBOL vmlinux 0x0b58a3fc account_page_redirty EXPORT_SYMBOL vmlinux 0x0b637410 cr4_update_irqsoff +EXPORT_SYMBOL vmlinux 0x0b6f01c7 __mark_inode_dirty EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol +EXPORT_SYMBOL vmlinux 0x0b79032b seq_lseek +EXPORT_SYMBOL vmlinux 0x0b7b91b2 max8925_bulk_write +EXPORT_SYMBOL vmlinux 0x0b94deba kmem_cache_free_bulk EXPORT_SYMBOL vmlinux 0x0ba0b938 vm_brk EXPORT_SYMBOL vmlinux 0x0bbfa78c set_security_override_from_ctx EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type -EXPORT_SYMBOL vmlinux 0x0bdcfe8d end_buffer_read_sync -EXPORT_SYMBOL vmlinux 0x0beb371c max8925_bulk_read -EXPORT_SYMBOL vmlinux 0x0bef4c2c i2c_del_adapter -EXPORT_SYMBOL vmlinux 0x0bf49d13 d_prune_aliases +EXPORT_SYMBOL vmlinux 0x0bf7b8e2 xp_dma_map EXPORT_SYMBOL vmlinux 0x0bfc1d1a check_zeroed_user +EXPORT_SYMBOL vmlinux 0x0c018434 fasync_helper +EXPORT_SYMBOL vmlinux 0x0c022331 uart_suspend_port EXPORT_SYMBOL vmlinux 0x0c0f79af ZSTD_getDictID_fromFrame -EXPORT_SYMBOL vmlinux 0x0c1c56d6 pagevec_lookup_range EXPORT_SYMBOL vmlinux 0x0c25ec48 secure_tcpv6_seq -EXPORT_SYMBOL vmlinux 0x0c2cd114 netdev_lower_dev_get_private +EXPORT_SYMBOL vmlinux 0x0c269fd4 tcp_simple_retransmit EXPORT_SYMBOL vmlinux 0x0c3690fc _raw_spin_lock_bh -EXPORT_SYMBOL vmlinux 0x0c48f870 proc_remove -EXPORT_SYMBOL vmlinux 0x0c4d56c8 blk_integrity_compare +EXPORT_SYMBOL vmlinux 0x0c48b8f6 inet_select_addr +EXPORT_SYMBOL vmlinux 0x0c4c6382 sock_wfree EXPORT_SYMBOL vmlinux 0x0c575719 __cond_resched_rwlock_write -EXPORT_SYMBOL vmlinux 0x0c5d8d50 tcp_time_wait -EXPORT_SYMBOL vmlinux 0x0c62f642 xfrm_policy_bysel_ctx EXPORT_SYMBOL vmlinux 0x0c6bdc3f vme_master_read -EXPORT_SYMBOL vmlinux 0x0c6dbdf9 is_nd_dax -EXPORT_SYMBOL vmlinux 0x0c8e35bd dev_addr_flush -EXPORT_SYMBOL vmlinux 0x0c96a3e3 devm_request_threaded_irq -EXPORT_SYMBOL vmlinux 0x0ca59bcd sk_stream_error -EXPORT_SYMBOL vmlinux 0x0ca59f0c qdisc_warn_nonwc +EXPORT_SYMBOL vmlinux 0x0c8c62d8 __bforget +EXPORT_SYMBOL vmlinux 0x0c947a66 get_tree_nodev +EXPORT_SYMBOL vmlinux 0x0c9fd908 mdio_device_remove +EXPORT_SYMBOL vmlinux 0x0ca4df32 __zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0x0cb69491 scsi_get_device_flags_keyed +EXPORT_SYMBOL vmlinux 0x0cb8bc5f devfreq_monitor_stop +EXPORT_SYMBOL vmlinux 0x0cc07244 netlbl_calipso_ops_register EXPORT_SYMBOL vmlinux 0x0cc4b4b6 crc_ccitt_false EXPORT_SYMBOL vmlinux 0x0cd5835b ipv6_flowlabel_exclusive +EXPORT_SYMBOL vmlinux 0x0cd9b0bc scsi_target_resume EXPORT_SYMBOL vmlinux 0x0cdce87c rfkill_set_hw_state_reason +EXPORT_SYMBOL vmlinux 0x0cdf0b47 crypto_sha256_finup EXPORT_SYMBOL vmlinux 0x0ce19729 mb_cache_entry_touch -EXPORT_SYMBOL vmlinux 0x0cef183f blk_queue_max_segment_size -EXPORT_SYMBOL vmlinux 0x0d03cd12 fscrypt_decrypt_bio EXPORT_SYMBOL vmlinux 0x0d07f543 get_anon_bdev -EXPORT_SYMBOL vmlinux 0x0d118151 from_kprojid -EXPORT_SYMBOL vmlinux 0x0d145aa6 get_vm_area -EXPORT_SYMBOL vmlinux 0x0d1ef3ec scsi_rescan_device -EXPORT_SYMBOL vmlinux 0x0d2708f0 tcf_chain_put_by_act -EXPORT_SYMBOL vmlinux 0x0d449169 ip6_xmit -EXPORT_SYMBOL vmlinux 0x0d4c5c2d would_dump +EXPORT_SYMBOL vmlinux 0x0d092edd key_type_keyring +EXPORT_SYMBOL vmlinux 0x0d2126fc fuse_mount_destroy +EXPORT_SYMBOL vmlinux 0x0d366a76 security_dentry_init_security EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type +EXPORT_SYMBOL vmlinux 0x0d5f7c75 sock_queue_rcv_skb EXPORT_SYMBOL vmlinux 0x0d61eeee __bitmap_subset -EXPORT_SYMBOL vmlinux 0x0d6f30cf max8998_bulk_read -EXPORT_SYMBOL vmlinux 0x0d7d7f7c tcf_action_check_ctrlact -EXPORT_SYMBOL vmlinux 0x0da2f194 pcie_capability_read_dword -EXPORT_SYMBOL vmlinux 0x0dbdb217 xp_dma_unmap -EXPORT_SYMBOL vmlinux 0x0dc74e45 csum_and_copy_to_iter -EXPORT_SYMBOL vmlinux 0x0dd27fd6 mipi_dsi_dcs_set_display_on -EXPORT_SYMBOL vmlinux 0x0dd6a710 phy_drivers_unregister -EXPORT_SYMBOL vmlinux 0x0e06de7b empty_aops -EXPORT_SYMBOL vmlinux 0x0e11a04d tcp_sock_set_cork -EXPORT_SYMBOL vmlinux 0x0e120a26 fs_lookup_param +EXPORT_SYMBOL vmlinux 0x0d674098 blk_mq_run_hw_queues +EXPORT_SYMBOL vmlinux 0x0d7134a2 jbd2_journal_clear_features +EXPORT_SYMBOL vmlinux 0x0d74a111 proc_create_mount_point +EXPORT_SYMBOL vmlinux 0x0d773bb9 may_setattr +EXPORT_SYMBOL vmlinux 0x0d788286 inet_csk_init_xmit_timers +EXPORT_SYMBOL vmlinux 0x0d8069aa set_page_dirty +EXPORT_SYMBOL vmlinux 0x0d88f88a agp_generic_destroy_pages +EXPORT_SYMBOL vmlinux 0x0d8f7315 phy_driver_register +EXPORT_SYMBOL vmlinux 0x0d9d9b90 call_fib_notifiers +EXPORT_SYMBOL vmlinux 0x0dcf5be5 dquot_quotactl_sysfile_ops +EXPORT_SYMBOL vmlinux 0x0df40eed xfrm_policy_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x0df96f92 tcp_enter_cwr +EXPORT_SYMBOL vmlinux 0x0dfeabb1 pci_get_subsys +EXPORT_SYMBOL vmlinux 0x0e04e947 mipi_dsi_device_register_full EXPORT_SYMBOL vmlinux 0x0e17678a siphash_4u64 EXPORT_SYMBOL vmlinux 0x0e23b37f alloc_cpumask_var_node -EXPORT_SYMBOL vmlinux 0x0e2875a2 tcp_syn_ack_timeout -EXPORT_SYMBOL vmlinux 0x0e38c73d sock_edemux EXPORT_SYMBOL vmlinux 0x0e4262c6 __siphash_unaligned -EXPORT_SYMBOL vmlinux 0x0e6fca13 __xfrm_dst_lookup EXPORT_SYMBOL vmlinux 0x0e74ad2d utf8ncursor -EXPORT_SYMBOL vmlinux 0x0e7f253a pci_set_master -EXPORT_SYMBOL vmlinux 0x0e83155b ppp_input +EXPORT_SYMBOL vmlinux 0x0e778fb5 forget_all_cached_acls +EXPORT_SYMBOL vmlinux 0x0e894fe7 skb_seq_read +EXPORT_SYMBOL vmlinux 0x0e89de93 xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0x0ea12bdf inode_add_bytes EXPORT_SYMBOL vmlinux 0x0ea3c74e tasklet_kill EXPORT_SYMBOL vmlinux 0x0ea593f6 hdmi_drm_infoframe_init EXPORT_SYMBOL vmlinux 0x0eb6eb87 add_taint -EXPORT_SYMBOL vmlinux 0x0eb87a8e end_buffer_write_sync -EXPORT_SYMBOL vmlinux 0x0ebeeffb phy_read_mmd -EXPORT_SYMBOL vmlinux 0x0ec4a839 mdiobus_get_phy +EXPORT_SYMBOL vmlinux 0x0ebc4a3e __task_pid_nr_ns EXPORT_SYMBOL vmlinux 0x0ec5babe vme_dma_free -EXPORT_SYMBOL vmlinux 0x0ec6834e pcie_capability_clear_and_set_dword -EXPORT_SYMBOL vmlinux 0x0ed444b0 ipv6_chk_prefix -EXPORT_SYMBOL vmlinux 0x0ee8c3f4 jbd2_journal_inode_ranged_write -EXPORT_SYMBOL vmlinux 0x0ef76139 __scsi_device_lookup -EXPORT_SYMBOL vmlinux 0x0ef9a57e __cgroup_bpf_run_filter_sk +EXPORT_SYMBOL vmlinux 0x0edf8eaa pagecache_isize_extended +EXPORT_SYMBOL vmlinux 0x0ef8f61c discard_new_inode EXPORT_SYMBOL vmlinux 0x0f09cc34 schedule_timeout_killable -EXPORT_SYMBOL vmlinux 0x0f0b41f1 ethtool_get_phc_vclocks -EXPORT_SYMBOL vmlinux 0x0f0ba80a security_sctp_assoc_request -EXPORT_SYMBOL vmlinux 0x0f1bea54 mdiobus_unregister_device +EXPORT_SYMBOL vmlinux 0x0f25f6f1 flow_indr_dev_setup_offload EXPORT_SYMBOL vmlinux 0x0f37ca89 lockref_put_not_zero -EXPORT_SYMBOL vmlinux 0x0f4c5c3f vme_register_bridge -EXPORT_SYMBOL vmlinux 0x0f6a45b2 rt6_lookup -EXPORT_SYMBOL vmlinux 0x0f7d21e2 tcp_sendmsg +EXPORT_SYMBOL vmlinux 0x0f501c9c mipi_dsi_dcs_write_buffer +EXPORT_SYMBOL vmlinux 0x0f704312 jbd2_journal_clear_err +EXPORT_SYMBOL vmlinux 0x0f75b581 security_socket_socketpair +EXPORT_SYMBOL vmlinux 0x0f7b9c87 flow_rule_match_meta +EXPORT_SYMBOL vmlinux 0x0f7d7e15 xfrm_stateonly_find EXPORT_SYMBOL vmlinux 0x0f86f560 kthread_delayed_work_timer_fn -EXPORT_SYMBOL vmlinux 0x0f9018dc rtc_add_groups -EXPORT_SYMBOL vmlinux 0x0f906e5e crypto_sha256_finup -EXPORT_SYMBOL vmlinux 0x0f9a8974 mipi_dsi_dcs_nop +EXPORT_SYMBOL vmlinux 0x0f8abc8c sock_set_reuseaddr +EXPORT_SYMBOL vmlinux 0x0f8ce128 skb_flow_dissect_meta +EXPORT_SYMBOL vmlinux 0x0f9e10ad set_bh_page EXPORT_SYMBOL vmlinux 0x0fab1ab0 hdmi_spd_infoframe_pack -EXPORT_SYMBOL vmlinux 0x0fb28111 __phy_write_mmd EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 -EXPORT_SYMBOL vmlinux 0x0fcb8685 udp_gro_receive -EXPORT_SYMBOL vmlinux 0x0fce48b7 devm_extcon_unregister_notifier +EXPORT_SYMBOL vmlinux 0x0fc9841e pci_add_new_bus EXPORT_SYMBOL vmlinux 0x0fd902db mb_cache_entry_create -EXPORT_SYMBOL vmlinux 0x0fe5c3be ip_tunnel_header_ops +EXPORT_SYMBOL vmlinux 0x0fda4aef dmam_alloc_attrs +EXPORT_SYMBOL vmlinux 0x0ff3ac75 phy_disconnect EXPORT_SYMBOL vmlinux 0x0ff80f59 zalloc_cpumask_var +EXPORT_SYMBOL vmlinux 0x0ffaed7c kill_pgrp EXPORT_SYMBOL vmlinux 0x0fff5afc time64_to_tm -EXPORT_SYMBOL vmlinux 0x10001929 seq_putc +EXPORT_SYMBOL vmlinux 0x100079e3 md_bitmap_end_sync +EXPORT_SYMBOL vmlinux 0x1023f12a bmap +EXPORT_SYMBOL vmlinux 0x10251eb2 devm_nvmem_cell_put EXPORT_SYMBOL vmlinux 0x1035c7c2 __release_region -EXPORT_SYMBOL vmlinux 0x103997b9 legacy_pic -EXPORT_SYMBOL vmlinux 0x10466fcc t10_pi_type3_crc -EXPORT_SYMBOL vmlinux 0x104d6093 qdisc_tree_reduce_backlog EXPORT_SYMBOL vmlinux 0x1057a279 bsearch -EXPORT_SYMBOL vmlinux 0x1064c661 padata_alloc_shell +EXPORT_SYMBOL vmlinux 0x105b279e agp_generic_alloc_user EXPORT_SYMBOL vmlinux 0x1068004b gf128mul_bbe +EXPORT_SYMBOL vmlinux 0x10734a19 generic_file_llseek +EXPORT_SYMBOL vmlinux 0x1076505a tcp_seq_stop EXPORT_SYMBOL vmlinux 0x107be0b0 percpu_counter_sync EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd +EXPORT_SYMBOL vmlinux 0x1095cb47 jbd2_journal_get_write_access +EXPORT_SYMBOL vmlinux 0x10a0cf37 skb_set_owner_w EXPORT_SYMBOL vmlinux 0x10c3f57e __gnet_stats_copy_queue -EXPORT_SYMBOL vmlinux 0x10c59444 vfs_clone_file_range -EXPORT_SYMBOL vmlinux 0x10c9ace3 mipi_dsi_dcs_soft_reset +EXPORT_SYMBOL vmlinux 0x10cc9a2c pci_request_irq EXPORT_SYMBOL vmlinux 0x10d9f885 scsi_sense_desc_find EXPORT_SYMBOL vmlinux 0x10e6f74a free_contig_range +EXPORT_SYMBOL vmlinux 0x10f50fc8 dst_alloc +EXPORT_SYMBOL vmlinux 0x1103d1b3 __vfs_removexattr +EXPORT_SYMBOL vmlinux 0x1103fa9d ip_check_defrag EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype -EXPORT_SYMBOL vmlinux 0x111533c8 take_dentry_name_snapshot -EXPORT_SYMBOL vmlinux 0x1115729d lookup_one_len_unlocked -EXPORT_SYMBOL vmlinux 0x1119d198 irq_set_chip -EXPORT_SYMBOL vmlinux 0x111f837f skb_flow_dissect_ct -EXPORT_SYMBOL vmlinux 0x113a7e4e blk_mq_alloc_tag_set -EXPORT_SYMBOL vmlinux 0x116258ce generic_splice_sendpage +EXPORT_SYMBOL vmlinux 0x11167dce param_set_int +EXPORT_SYMBOL vmlinux 0x112f2bd0 mark_buffer_write_io_error +EXPORT_SYMBOL vmlinux 0x11433102 key_reject_and_link +EXPORT_SYMBOL vmlinux 0x11469777 pci_free_irq EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init -EXPORT_SYMBOL vmlinux 0x1176eb97 d_instantiate -EXPORT_SYMBOL vmlinux 0x1182a960 __dquot_free_space -EXPORT_SYMBOL vmlinux 0x1183cf65 __tracepoint_rdpmc -EXPORT_SYMBOL vmlinux 0x118e2f89 rproc_of_resm_mem_entry_init -EXPORT_SYMBOL vmlinux 0x11aefc02 file_check_and_advance_wb_err -EXPORT_SYMBOL vmlinux 0x11c1ca25 padata_free_shell +EXPORT_SYMBOL vmlinux 0x117eaac9 phy_get_c45_ids +EXPORT_SYMBOL vmlinux 0x1196091f md_register_thread +EXPORT_SYMBOL vmlinux 0x11a75357 dma_resv_fini +EXPORT_SYMBOL vmlinux 0x11bc077a vfs_fileattr_set +EXPORT_SYMBOL vmlinux 0x11da6e35 genlmsg_put EXPORT_SYMBOL vmlinux 0x11e0ec41 dm_read_arg EXPORT_SYMBOL vmlinux 0x11e30762 chacha_block_generic +EXPORT_SYMBOL vmlinux 0x11e61c4c dev_mc_add_excl EXPORT_SYMBOL vmlinux 0x11f47d8c utf8_strncmp -EXPORT_SYMBOL vmlinux 0x11f7ed4c hex_to_bin -EXPORT_SYMBOL vmlinux 0x11fc3e25 __sk_backlog_rcv -EXPORT_SYMBOL vmlinux 0x1201029d amd_iommu_flush_page -EXPORT_SYMBOL vmlinux 0x12023253 cdrom_ioctl EXPORT_SYMBOL vmlinux 0x120b336a __rb_insert_augmented -EXPORT_SYMBOL vmlinux 0x12150788 __SCK__tp_func_dma_fence_signaled -EXPORT_SYMBOL vmlinux 0x12371273 migrate_vma_setup -EXPORT_SYMBOL vmlinux 0x12432006 blkdev_issue_write_same -EXPORT_SYMBOL vmlinux 0x1245d58b filemap_write_and_wait_range +EXPORT_SYMBOL vmlinux 0x1231ae49 tcp_poll EXPORT_SYMBOL vmlinux 0x124bad4d kstrtobool -EXPORT_SYMBOL vmlinux 0x124cafed __tracepoint_kmalloc_node -EXPORT_SYMBOL vmlinux 0x124f85b1 xen_free_unpopulated_pages -EXPORT_SYMBOL vmlinux 0x125be0d1 security_sb_clone_mnt_opts -EXPORT_SYMBOL vmlinux 0x125eb901 configfs_depend_item -EXPORT_SYMBOL vmlinux 0x126ef489 netdev_info -EXPORT_SYMBOL vmlinux 0x127b408a blkdev_issue_flush -EXPORT_SYMBOL vmlinux 0x12989d69 xsk_clear_rx_need_wakeup -EXPORT_SYMBOL vmlinux 0x12bcac88 __f_setown +EXPORT_SYMBOL vmlinux 0x12591633 __lock_page +EXPORT_SYMBOL vmlinux 0x125f820e sock_recv_errqueue +EXPORT_SYMBOL vmlinux 0x1279966d pcie_set_readrq +EXPORT_SYMBOL vmlinux 0x127a024e follow_down_one +EXPORT_SYMBOL vmlinux 0x12baa06f d_alloc +EXPORT_SYMBOL vmlinux 0x12c3d045 netdev_txq_to_tc +EXPORT_SYMBOL vmlinux 0x12c8ddf2 netif_set_real_num_tx_queues +EXPORT_SYMBOL vmlinux 0x12ca6438 skb_queue_purge EXPORT_SYMBOL vmlinux 0x12cabc89 siphash_2u64 -EXPORT_SYMBOL vmlinux 0x12d4b8a5 rfkill_alloc -EXPORT_SYMBOL vmlinux 0x12eef9fe mipi_dsi_picture_parameter_set +EXPORT_SYMBOL vmlinux 0x12f29f81 input_release_device EXPORT_SYMBOL vmlinux 0x12f6f69c fb_videomode_to_var +EXPORT_SYMBOL vmlinux 0x130708c7 tcp_setsockopt EXPORT_SYMBOL vmlinux 0x130afd75 acpi_get_sleep_type_data EXPORT_SYMBOL vmlinux 0x13110126 request_resource -EXPORT_SYMBOL vmlinux 0x13151c68 param_ops_ulong EXPORT_SYMBOL vmlinux 0x131a6146 xa_clear_mark EXPORT_SYMBOL vmlinux 0x13243d4b wl1251_get_platform_data -EXPORT_SYMBOL vmlinux 0x1335e5e9 security_dentry_init_security -EXPORT_SYMBOL vmlinux 0x133d294f module_layout -EXPORT_SYMBOL vmlinux 0x133e7a87 page_readlink +EXPORT_SYMBOL vmlinux 0x132efbb4 jbd2_trans_will_send_data_barrier +EXPORT_SYMBOL vmlinux 0x13347e25 fb_class EXPORT_SYMBOL vmlinux 0x1344d7e6 acpi_enable_gpe EXPORT_SYMBOL vmlinux 0x134cdd34 inet_frag_rbtree_purge -EXPORT_SYMBOL vmlinux 0x135770ca pneigh_enqueue -EXPORT_SYMBOL vmlinux 0x135a657e register_netdevice +EXPORT_SYMBOL vmlinux 0x135b9cd0 submit_bh +EXPORT_SYMBOL vmlinux 0x13696373 nf_hook_slow_list +EXPORT_SYMBOL vmlinux 0x1371b6cd sock_set_keepalive EXPORT_SYMBOL vmlinux 0x1389619c __max_die_per_package -EXPORT_SYMBOL vmlinux 0x138975e4 skb_store_bits -EXPORT_SYMBOL vmlinux 0x139537f1 i2c_transfer_buffer_flags -EXPORT_SYMBOL vmlinux 0x13986602 security_inode_notifysecctx -EXPORT_SYMBOL vmlinux 0x139b428c dquot_get_dqblk EXPORT_SYMBOL vmlinux 0x139f2189 __kfifo_alloc -EXPORT_SYMBOL vmlinux 0x13ab5756 vfs_readlink -EXPORT_SYMBOL vmlinux 0x13b70bdf dm_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x13b5fc01 scsi_print_sense_hdr EXPORT_SYMBOL vmlinux 0x13c49cc2 _copy_from_user -EXPORT_SYMBOL vmlinux 0x13cd096f posix_acl_chmod EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out -EXPORT_SYMBOL vmlinux 0x13e17532 locks_remove_posix -EXPORT_SYMBOL vmlinux 0x13e58e8b genphy_read_abilities -EXPORT_SYMBOL vmlinux 0x13e72a20 inet6_unregister_protosw -EXPORT_SYMBOL vmlinux 0x13e7f649 truncate_inode_pages_final -EXPORT_SYMBOL vmlinux 0x13efa7e2 vlan_uses_dev +EXPORT_SYMBOL vmlinux 0x13e1519a proc_create_single_data EXPORT_SYMBOL vmlinux 0x13f42152 system_entering_hibernation +EXPORT_SYMBOL vmlinux 0x14080d69 xfrm_state_delete EXPORT_SYMBOL vmlinux 0x141271bf acpi_dev_found -EXPORT_SYMBOL vmlinux 0x144a0842 param_set_copystring -EXPORT_SYMBOL vmlinux 0x144f31f3 scsi_report_opcode -EXPORT_SYMBOL vmlinux 0x145eadaa udp_pre_connect -EXPORT_SYMBOL vmlinux 0x145ed6a6 __xfrm_state_destroy +EXPORT_SYMBOL vmlinux 0x142f372c udp_ioctl +EXPORT_SYMBOL vmlinux 0x1431d29b generic_setlease +EXPORT_SYMBOL vmlinux 0x1442042b ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0x144224ce tcp_time_wait +EXPORT_SYMBOL vmlinux 0x14510d60 logfc +EXPORT_SYMBOL vmlinux 0x14590ae0 timestamp_truncate +EXPORT_SYMBOL vmlinux 0x14591760 add_to_page_cache_locked +EXPORT_SYMBOL vmlinux 0x14596ffc xfrm_spd_getinfo EXPORT_SYMBOL vmlinux 0x14605535 dma_fence_context_alloc EXPORT_SYMBOL vmlinux 0x146289b7 crc16_table -EXPORT_SYMBOL vmlinux 0x1469e915 generic_key_instantiate -EXPORT_SYMBOL vmlinux 0x146cda1e module_refcount -EXPORT_SYMBOL vmlinux 0x14707176 wireless_send_event +EXPORT_SYMBOL vmlinux 0x146e979a sock_edemux EXPORT_SYMBOL vmlinux 0x1486ded2 dma_fence_allocate_private_stub -EXPORT_SYMBOL vmlinux 0x14873ad6 blk_mq_delay_kick_requeue_list -EXPORT_SYMBOL vmlinux 0x1490cd6b tcp_seq_stop -EXPORT_SYMBOL vmlinux 0x1492003b cdev_del -EXPORT_SYMBOL vmlinux 0x1499d340 __getblk_gfp -EXPORT_SYMBOL vmlinux 0x14a0953e lock_page_memcg -EXPORT_SYMBOL vmlinux 0x14ba882c tcf_em_register +EXPORT_SYMBOL vmlinux 0x149a5ed2 __skb_wait_for_more_packets EXPORT_SYMBOL vmlinux 0x14c67e3e tcp_tx_delay_enabled -EXPORT_SYMBOL vmlinux 0x14cf0d2a tcp_sock_set_syncnt -EXPORT_SYMBOL vmlinux 0x14e3efac blk_queue_max_write_same_sectors -EXPORT_SYMBOL vmlinux 0x14f590c8 xfrm_lookup -EXPORT_SYMBOL vmlinux 0x15014f01 param_ops_hexint +EXPORT_SYMBOL vmlinux 0x14dbead4 netif_schedule_queue EXPORT_SYMBOL vmlinux 0x151f4898 schedule_timeout_uninterruptible +EXPORT_SYMBOL vmlinux 0x15203af1 udp_lib_setsockopt +EXPORT_SYMBOL vmlinux 0x15232ab3 mmc_gpiod_request_cd EXPORT_SYMBOL vmlinux 0x1526b301 unix_tot_inflight -EXPORT_SYMBOL vmlinux 0x152a4974 inet_unregister_protosw -EXPORT_SYMBOL vmlinux 0x152ccc27 ppp_unit_number +EXPORT_SYMBOL vmlinux 0x1527de43 tcp_add_backlog +EXPORT_SYMBOL vmlinux 0x152aabfa locks_copy_lock +EXPORT_SYMBOL vmlinux 0x152be4fa jbd2_journal_wipe +EXPORT_SYMBOL vmlinux 0x15311240 xfrm4_protocol_register +EXPORT_SYMBOL vmlinux 0x153556c0 phy_write_paged +EXPORT_SYMBOL vmlinux 0x1537ea48 vlan_ioctl_set +EXPORT_SYMBOL vmlinux 0x153b1153 devm_extcon_register_notifier_all +EXPORT_SYMBOL vmlinux 0x15442368 pci_bus_write_config_word +EXPORT_SYMBOL vmlinux 0x15491558 cdrom_open EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy -EXPORT_SYMBOL vmlinux 0x156b977f dev_addr_del -EXPORT_SYMBOL vmlinux 0x15785c74 simple_rename -EXPORT_SYMBOL vmlinux 0x157fb5e7 mdiobus_scan -EXPORT_SYMBOL vmlinux 0x158e733a jbd2__journal_start +EXPORT_SYMBOL vmlinux 0x1561e014 generic_listxattr +EXPORT_SYMBOL vmlinux 0x15664a49 submit_bio_wait +EXPORT_SYMBOL vmlinux 0x156716e7 agp_generic_free_gatt_table +EXPORT_SYMBOL vmlinux 0x1572ec2b scsi_device_get +EXPORT_SYMBOL vmlinux 0x15849457 blk_mq_alloc_tag_set +EXPORT_SYMBOL vmlinux 0x158526b9 tcp_stream_memory_free EXPORT_SYMBOL vmlinux 0x15a66331 kobject_set_name -EXPORT_SYMBOL vmlinux 0x15a7b75c __bforget EXPORT_SYMBOL vmlinux 0x15ba50a6 jiffies EXPORT_SYMBOL vmlinux 0x15bafe29 unregister_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x15bb49e5 vme_slave_request EXPORT_SYMBOL vmlinux 0x15bed7a5 LZ4_decompress_safe_partial EXPORT_SYMBOL vmlinux 0x15c85de3 mempool_init -EXPORT_SYMBOL vmlinux 0x15cf22cb sk_page_frag_refill -EXPORT_SYMBOL vmlinux 0x15fdbcb1 agp_free_memory -EXPORT_SYMBOL vmlinux 0x16000599 locks_free_lock -EXPORT_SYMBOL vmlinux 0x16006fc4 mipi_dsi_device_register_full -EXPORT_SYMBOL vmlinux 0x1603858d netif_device_detach -EXPORT_SYMBOL vmlinux 0x1627a8c1 pm860x_bulk_write +EXPORT_SYMBOL vmlinux 0x15c9ff25 kfree_skb_list +EXPORT_SYMBOL vmlinux 0x15cf6c54 seg6_hmac_validate_skb +EXPORT_SYMBOL vmlinux 0x15f3c7fa amd_iommu_domain_enable_v2 +EXPORT_SYMBOL vmlinux 0x160dc378 finish_no_open +EXPORT_SYMBOL vmlinux 0x161bd817 __generic_file_write_iter EXPORT_SYMBOL vmlinux 0x16286538 iowrite64be_lo_hi EXPORT_SYMBOL vmlinux 0x162893fd hashlen_string -EXPORT_SYMBOL vmlinux 0x162e291f neigh_direct_output EXPORT_SYMBOL vmlinux 0x16301b34 wrmsrl_on_cpu EXPORT_SYMBOL vmlinux 0x16316a10 ZSTD_getFrameContentSize EXPORT_SYMBOL vmlinux 0x1632bc21 kvasprintf_const -EXPORT_SYMBOL vmlinux 0x1649abb2 kernel_recvmsg -EXPORT_SYMBOL vmlinux 0x1662d030 mmc_of_parse_clk_phase -EXPORT_SYMBOL vmlinux 0x167b7dc4 tcp_initialize_rcv_mss +EXPORT_SYMBOL vmlinux 0x1636e833 devm_extcon_unregister_notifier_all +EXPORT_SYMBOL vmlinux 0x16612f39 ip_mc_check_igmp +EXPORT_SYMBOL vmlinux 0x167ab08f inode_init_once EXPORT_SYMBOL vmlinux 0x167c5967 print_hex_dump EXPORT_SYMBOL vmlinux 0x167e7f9d __get_user_1 -EXPORT_SYMBOL vmlinux 0x169677a2 alloc_skb_with_frags +EXPORT_SYMBOL vmlinux 0x168088d4 page_pool_destroy EXPORT_SYMBOL vmlinux 0x169938c1 __sysfs_match_string -EXPORT_SYMBOL vmlinux 0x16a5096d pci_ep_cfs_add_epc_group -EXPORT_SYMBOL vmlinux 0x16a722e8 xsk_tx_peek_release_desc_batch -EXPORT_SYMBOL vmlinux 0x16ad1060 sk_common_release +EXPORT_SYMBOL vmlinux 0x169dfbfe flow_block_cb_free +EXPORT_SYMBOL vmlinux 0x16b514eb input_mt_get_slot_by_key +EXPORT_SYMBOL vmlinux 0x16c86cf7 skb_copy_and_csum_bits EXPORT_SYMBOL vmlinux 0x16cdc340 acpi_get_table EXPORT_SYMBOL vmlinux 0x16dee44d dma_fence_init EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait -EXPORT_SYMBOL vmlinux 0x16e5ff6a follow_pfn -EXPORT_SYMBOL vmlinux 0x16e6d66c rtnl_create_link EXPORT_SYMBOL vmlinux 0x170ddf79 acpi_install_notify_handler -EXPORT_SYMBOL vmlinux 0x1715774c phy_ethtool_ksettings_get -EXPORT_SYMBOL vmlinux 0x1722cb34 iov_iter_pipe -EXPORT_SYMBOL vmlinux 0x174ac4ff sget_fc -EXPORT_SYMBOL vmlinux 0x175cc539 unregister_quota_format +EXPORT_SYMBOL vmlinux 0x1719533d simple_transaction_release +EXPORT_SYMBOL vmlinux 0x1723d1b4 dcb_ieee_getapp_default_prio_mask +EXPORT_SYMBOL vmlinux 0x174416b8 nvdimm_bus_unlock +EXPORT_SYMBOL vmlinux 0x174b5355 acpi_dev_get_next_match_dev +EXPORT_SYMBOL vmlinux 0x1757ba0e nf_ct_attach +EXPORT_SYMBOL vmlinux 0x175d49cf netdev_upper_dev_link EXPORT_SYMBOL vmlinux 0x175e33fb dma_spin_lock -EXPORT_SYMBOL vmlinux 0x17768747 dev_disable_lro +EXPORT_SYMBOL vmlinux 0x1761754f pci_bus_set_ops +EXPORT_SYMBOL vmlinux 0x1766bd3f softnet_data +EXPORT_SYMBOL vmlinux 0x176c6441 inet_frag_find +EXPORT_SYMBOL vmlinux 0x1770ef2b ptp_clock_event +EXPORT_SYMBOL vmlinux 0x1787282b truncate_pagecache_range +EXPORT_SYMBOL vmlinux 0x178e495f rproc_add_carveout +EXPORT_SYMBOL vmlinux 0x17966d9f dev_change_proto_down_reason +EXPORT_SYMBOL vmlinux 0x17a1f545 send_sig_info +EXPORT_SYMBOL vmlinux 0x17aaa68d serio_rescan EXPORT_SYMBOL vmlinux 0x17be68ca acpi_clear_event -EXPORT_SYMBOL vmlinux 0x17c72bf3 dcb_ieee_delapp -EXPORT_SYMBOL vmlinux 0x17cdafcf nd_pfn_validate -EXPORT_SYMBOL vmlinux 0x17e220f4 agp_generic_alloc_user -EXPORT_SYMBOL vmlinux 0x17eb9e15 pci_unmap_rom -EXPORT_SYMBOL vmlinux 0x17ebfc33 vfio_pin_pages -EXPORT_SYMBOL vmlinux 0x17f2afce xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0x17cd4ba5 param_set_ulong +EXPORT_SYMBOL vmlinux 0x17d1cf93 thaw_bdev +EXPORT_SYMBOL vmlinux 0x17d66a51 flow_rule_match_enc_ipv6_addrs +EXPORT_SYMBOL vmlinux 0x17e954e3 mmc_hw_reset EXPORT_SYMBOL vmlinux 0x17f341a0 i8042_lock_chip EXPORT_SYMBOL vmlinux 0x17f813a9 __SCT__tp_func_kmalloc -EXPORT_SYMBOL vmlinux 0x17fa4b4a inet_csk_reqsk_queue_drop -EXPORT_SYMBOL vmlinux 0x18133453 proc_set_size -EXPORT_SYMBOL vmlinux 0x1827e746 acpi_device_hid -EXPORT_SYMBOL vmlinux 0x1829320a eth_commit_mac_addr_change +EXPORT_SYMBOL vmlinux 0x1800378d __alloc_pages +EXPORT_SYMBOL vmlinux 0x18094600 mmc_wait_for_req EXPORT_SYMBOL vmlinux 0x18345b8e __bitmap_replace -EXPORT_SYMBOL vmlinux 0x1840cc70 tty_do_resize -EXPORT_SYMBOL vmlinux 0x1854885d phy_queue_state_machine -EXPORT_SYMBOL vmlinux 0x1867faf3 param_ops_uint -EXPORT_SYMBOL vmlinux 0x1873c6e1 mipi_dsi_dcs_get_pixel_format -EXPORT_SYMBOL vmlinux 0x1877bf21 udp_sendmsg +EXPORT_SYMBOL vmlinux 0x1836c066 neigh_parms_release +EXPORT_SYMBOL vmlinux 0x18374c50 scsi_scan_host +EXPORT_SYMBOL vmlinux 0x183976ec rt_dst_clone +EXPORT_SYMBOL vmlinux 0x1842b850 xfrm6_rcv_spi +EXPORT_SYMBOL vmlinux 0x1868bb65 locks_init_lock EXPORT_SYMBOL vmlinux 0x18888d00 downgrade_write EXPORT_SYMBOL vmlinux 0x188ea314 jiffies_to_timespec64 -EXPORT_SYMBOL vmlinux 0x18a640c6 mmc_register_driver -EXPORT_SYMBOL vmlinux 0x18b3089e pci_enable_msi +EXPORT_SYMBOL vmlinux 0x189c52c5 iov_iter_zero +EXPORT_SYMBOL vmlinux 0x18aff2c5 cros_ec_query_all EXPORT_SYMBOL vmlinux 0x18b72573 register_kmmio_probe +EXPORT_SYMBOL vmlinux 0x18b8fa91 kern_unmount_array +EXPORT_SYMBOL vmlinux 0x18cbc359 xfrm_lookup_with_ifid +EXPORT_SYMBOL vmlinux 0x18cc694a ata_dev_printk +EXPORT_SYMBOL vmlinux 0x18cca498 serio_reconnect EXPORT_SYMBOL vmlinux 0x18d832e2 config_item_get EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start -EXPORT_SYMBOL vmlinux 0x18f17d2f flow_rule_match_tcp -EXPORT_SYMBOL vmlinux 0x18fbea20 lookup_one_len -EXPORT_SYMBOL vmlinux 0x19082f6d xp_can_alloc -EXPORT_SYMBOL vmlinux 0x1909491d neigh_table_init -EXPORT_SYMBOL vmlinux 0x1909b944 sock_no_connect -EXPORT_SYMBOL vmlinux 0x19127ed7 nf_log_bind_pf -EXPORT_SYMBOL vmlinux 0x191f8a55 qdisc_watchdog_cancel -EXPORT_SYMBOL vmlinux 0x192e1d71 generic_parse_monolithic +EXPORT_SYMBOL vmlinux 0x18edf861 skb_copy +EXPORT_SYMBOL vmlinux 0x18f4b78b phy_set_sym_pause EXPORT_SYMBOL vmlinux 0x192ea14f __SCT__tp_func_dma_fence_signaled -EXPORT_SYMBOL vmlinux 0x19357ea4 napi_get_frags -EXPORT_SYMBOL vmlinux 0x1937ef3f rproc_resource_cleanup +EXPORT_SYMBOL vmlinux 0x192fe06d vfs_getattr +EXPORT_SYMBOL vmlinux 0x193e11f6 tso_build_hdr +EXPORT_SYMBOL vmlinux 0x1940fafb padata_free_shell EXPORT_SYMBOL vmlinux 0x1953c958 mempool_create EXPORT_SYMBOL vmlinux 0x19567d06 vfio_info_cap_shift -EXPORT_SYMBOL vmlinux 0x196a1636 cookie_ecn_ok +EXPORT_SYMBOL vmlinux 0x19582956 dev_change_proto_down +EXPORT_SYMBOL vmlinux 0x1967d8fe pci_scan_bridge +EXPORT_SYMBOL vmlinux 0x1976ed8e sb_min_blocksize EXPORT_SYMBOL vmlinux 0x1984d421 out_of_line_wait_on_bit EXPORT_SYMBOL vmlinux 0x198620d7 security_add_mnt_opt -EXPORT_SYMBOL vmlinux 0x19994957 iov_iter_xarray -EXPORT_SYMBOL vmlinux 0x19996922 dm_table_get_mode -EXPORT_SYMBOL vmlinux 0x199abc3b seq_file_path -EXPORT_SYMBOL vmlinux 0x199ce85e current_in_userns +EXPORT_SYMBOL vmlinux 0x199572b4 vfio_register_notifier EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp -EXPORT_SYMBOL vmlinux 0x19b029bc __ip_options_compile -EXPORT_SYMBOL vmlinux 0x19b0df0c napi_gro_receive EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec +EXPORT_SYMBOL vmlinux 0x19c75959 request_key_with_auxdata +EXPORT_SYMBOL vmlinux 0x19cb1343 d_genocide EXPORT_SYMBOL vmlinux 0x19d200ec __SCT__tp_func_kmalloc_node EXPORT_SYMBOL vmlinux 0x19df99b9 acpi_finish_gpe -EXPORT_SYMBOL vmlinux 0x1a04a340 mdiobus_write_nested +EXPORT_SYMBOL vmlinux 0x1a010761 agp_generic_alloc_page +EXPORT_SYMBOL vmlinux 0x1a088471 inet6_ioctl EXPORT_SYMBOL vmlinux 0x1a1bac9c ZSTD_decompressDCtx +EXPORT_SYMBOL vmlinux 0x1a21250d __qdisc_calculate_pkt_len +EXPORT_SYMBOL vmlinux 0x1a2362e1 sock_kfree_s +EXPORT_SYMBOL vmlinux 0x1a31b7e0 agp_find_bridge EXPORT_SYMBOL vmlinux 0x1a45cb6c acpi_disabled -EXPORT_SYMBOL vmlinux 0x1a50df65 xfrm_dst_ifdown -EXPORT_SYMBOL vmlinux 0x1a582a4d in_dev_finish_destroy -EXPORT_SYMBOL vmlinux 0x1a5aea34 rproc_vq_interrupt -EXPORT_SYMBOL vmlinux 0x1a62ea44 inet_twsk_deschedule_put EXPORT_SYMBOL vmlinux 0x1a63af34 vga_switcheroo_process_delayed_switch -EXPORT_SYMBOL vmlinux 0x1a689d41 jbd2_journal_check_used_features -EXPORT_SYMBOL vmlinux 0x1a73e9e7 skb_coalesce_rx_frag +EXPORT_SYMBOL vmlinux 0x1a6b9596 pcie_port_service_register EXPORT_SYMBOL vmlinux 0x1a79c8e9 __x86_indirect_thunk_r13 -EXPORT_SYMBOL vmlinux 0x1a817d0b __blk_rq_map_sg -EXPORT_SYMBOL vmlinux 0x1a842018 bioset_init -EXPORT_SYMBOL vmlinux 0x1a93a598 done_path_create +EXPORT_SYMBOL vmlinux 0x1a7bef1f proc_set_user +EXPORT_SYMBOL vmlinux 0x1a871737 tcp_md5_do_del +EXPORT_SYMBOL vmlinux 0x1a8ce7ec mmc_is_req_done EXPORT_SYMBOL vmlinux 0x1a9a433c prandom_u32_state EXPORT_SYMBOL vmlinux 0x1aa9fba0 vfio_dma_rw +EXPORT_SYMBOL vmlinux 0x1abfb788 vme_bus_error_handler EXPORT_SYMBOL vmlinux 0x1ac5d3cb strcspn -EXPORT_SYMBOL vmlinux 0x1adb4f70 mpage_readpage -EXPORT_SYMBOL vmlinux 0x1af6176d scsi_dma_map +EXPORT_SYMBOL vmlinux 0x1ad080ab i2c_del_adapter +EXPORT_SYMBOL vmlinux 0x1af3d059 __insert_inode_hash +EXPORT_SYMBOL vmlinux 0x1afa055c xfrm4_rcv_encap +EXPORT_SYMBOL vmlinux 0x1afe1047 dst_discard_out EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist -EXPORT_SYMBOL vmlinux 0x1b1518f9 request_firmware_into_buf -EXPORT_SYMBOL vmlinux 0x1b3e177b mipi_dsi_attach -EXPORT_SYMBOL vmlinux 0x1b3f356e tcp_get_cookie_sock -EXPORT_SYMBOL vmlinux 0x1b4d236e mmc_run_bkops +EXPORT_SYMBOL vmlinux 0x1b1b46a7 ipv6_push_frag_opts +EXPORT_SYMBOL vmlinux 0x1b202934 iommu_get_dma_cookie +EXPORT_SYMBOL vmlinux 0x1b3c980d vme_new_dma_list +EXPORT_SYMBOL vmlinux 0x1b4332af phy_ethtool_get_strings +EXPORT_SYMBOL vmlinux 0x1b435954 cad_pid +EXPORT_SYMBOL vmlinux 0x1b4e869f flow_rule_match_enc_ipv4_addrs +EXPORT_SYMBOL vmlinux 0x1b50189a __tracepoint_mmap_lock_released EXPORT_SYMBOL vmlinux 0x1b597b7a swake_up_all -EXPORT_SYMBOL vmlinux 0x1b61f82f qdisc_put_unlocked +EXPORT_SYMBOL vmlinux 0x1b5e4881 xfrm4_rcv EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton +EXPORT_SYMBOL vmlinux 0x1b65deb1 inet6_del_offload +EXPORT_SYMBOL vmlinux 0x1b72299e hdmi_infoframe_log EXPORT_SYMBOL vmlinux 0x1b777357 rdmacg_unregister_device EXPORT_SYMBOL vmlinux 0x1b8b95ad i8042_unlock_chip -EXPORT_SYMBOL vmlinux 0x1b90ee1c input_allocate_device -EXPORT_SYMBOL vmlinux 0x1b912c94 disk_start_io_acct -EXPORT_SYMBOL vmlinux 0x1b9e58e7 d_mark_dontcache +EXPORT_SYMBOL vmlinux 0x1b944176 devm_pci_remap_cfg_resource +EXPORT_SYMBOL vmlinux 0x1b9456f7 truncate_inode_pages_range +EXPORT_SYMBOL vmlinux 0x1b9590b9 tcf_action_exec EXPORT_SYMBOL vmlinux 0x1ba59527 __kmalloc_node -EXPORT_SYMBOL vmlinux 0x1ba5e615 netif_receive_skb_core EXPORT_SYMBOL vmlinux 0x1bb51249 tcp_have_smc -EXPORT_SYMBOL vmlinux 0x1bb5e852 ihold -EXPORT_SYMBOL vmlinux 0x1bbcb7b6 iunique -EXPORT_SYMBOL vmlinux 0x1bc7d41a iget_locked +EXPORT_SYMBOL vmlinux 0x1bb9aad8 pci_iomap_range +EXPORT_SYMBOL vmlinux 0x1bbb8f5c mpage_readahead +EXPORT_SYMBOL vmlinux 0x1bc3ef30 neigh_connected_output +EXPORT_SYMBOL vmlinux 0x1bd36833 i8042_remove_filter EXPORT_SYMBOL vmlinux 0x1bd59dbe vme_free_consistent -EXPORT_SYMBOL vmlinux 0x1bda4ab5 gro_find_complete_by_type -EXPORT_SYMBOL vmlinux 0x1c05a1e3 ioc_lookup_icq -EXPORT_SYMBOL vmlinux 0x1c11dfc5 key_payload_reserve -EXPORT_SYMBOL vmlinux 0x1c17fd80 phy_get_eee_err -EXPORT_SYMBOL vmlinux 0x1c278b2b iterate_supers_type -EXPORT_SYMBOL vmlinux 0x1c27c54e padata_alloc -EXPORT_SYMBOL vmlinux 0x1c343c63 always_delete_dentry -EXPORT_SYMBOL vmlinux 0x1c34c202 genphy_handle_interrupt_no_ack -EXPORT_SYMBOL vmlinux 0x1c44110a elv_rb_former_request -EXPORT_SYMBOL vmlinux 0x1c477a1c is_nd_btt -EXPORT_SYMBOL vmlinux 0x1c507669 dev_vprintk_emit +EXPORT_SYMBOL vmlinux 0x1be27b96 __tcf_em_tree_match +EXPORT_SYMBOL vmlinux 0x1c01f5c6 genphy_read_abilities +EXPORT_SYMBOL vmlinux 0x1c0fb4c6 i2c_register_driver +EXPORT_SYMBOL vmlinux 0x1c199ba5 build_skb_around +EXPORT_SYMBOL vmlinux 0x1c25ac1a dm_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x1c32e95c show_init_ipc_ns +EXPORT_SYMBOL vmlinux 0x1c3f9ffb block_write_begin EXPORT_SYMBOL vmlinux 0x1c58427f acpi_remove_notify_handler +EXPORT_SYMBOL vmlinux 0x1c5ab553 fifo_set_limit EXPORT_SYMBOL vmlinux 0x1c5e3878 icst525_idx2s -EXPORT_SYMBOL vmlinux 0x1c67dbc7 cad_pid -EXPORT_SYMBOL vmlinux 0x1c72c914 seq_open_private -EXPORT_SYMBOL vmlinux 0x1c77f740 max8998_read_reg -EXPORT_SYMBOL vmlinux 0x1c7c6545 param_ops_int +EXPORT_SYMBOL vmlinux 0x1c621f96 input_mt_report_finger_count +EXPORT_SYMBOL vmlinux 0x1c6a2a88 unpin_user_page_range_dirty_lock +EXPORT_SYMBOL vmlinux 0x1c73218e dma_free_attrs +EXPORT_SYMBOL vmlinux 0x1c891f97 ndo_dflt_fdb_del +EXPORT_SYMBOL vmlinux 0x1c8927ca blk_mq_init_allocated_queue +EXPORT_SYMBOL vmlinux 0x1c8e5ade phy_get_eee_err +EXPORT_SYMBOL vmlinux 0x1ca12a46 xp_alloc EXPORT_SYMBOL vmlinux 0x1ca527fa ioread64be_hi_lo -EXPORT_SYMBOL vmlinux 0x1cac6024 inc_zone_page_state EXPORT_SYMBOL vmlinux 0x1cb11044 inetpeer_invalidate_tree -EXPORT_SYMBOL vmlinux 0x1ccccca9 cdrom_open -EXPORT_SYMBOL vmlinux 0x1ccd1f33 scsi_free_host_dev +EXPORT_SYMBOL vmlinux 0x1cb9afc9 thermal_cdev_update +EXPORT_SYMBOL vmlinux 0x1cba434d devm_devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0x1cbd5078 kernel_listen EXPORT_SYMBOL vmlinux 0x1cd8438b pxm_to_node -EXPORT_SYMBOL vmlinux 0x1ce07da8 update_region -EXPORT_SYMBOL vmlinux 0x1ce1c241 __ip4_datagram_connect -EXPORT_SYMBOL vmlinux 0x1cef51bf netpoll_poll_enable -EXPORT_SYMBOL vmlinux 0x1cf4d564 tcf_exts_change -EXPORT_SYMBOL vmlinux 0x1cfbd37a fddi_type_trans +EXPORT_SYMBOL vmlinux 0x1cdf624a __kfree_skb +EXPORT_SYMBOL vmlinux 0x1ce53b87 path_is_under +EXPORT_SYMBOL vmlinux 0x1ceda010 __SCK__tp_func_mmap_lock_released EXPORT_SYMBOL vmlinux 0x1d07e365 memdup_user_nul -EXPORT_SYMBOL vmlinux 0x1d0ab7fd vga_client_register -EXPORT_SYMBOL vmlinux 0x1d11d6a5 __lock_page +EXPORT_SYMBOL vmlinux 0x1d161f84 pci_match_id EXPORT_SYMBOL vmlinux 0x1d19f77b physical_mask EXPORT_SYMBOL vmlinux 0x1d1abdf0 acpi_get_physical_device_location EXPORT_SYMBOL vmlinux 0x1d24c881 ___ratelimit EXPORT_SYMBOL vmlinux 0x1d2d6d15 wait_iff_congested EXPORT_SYMBOL vmlinux 0x1d40b6f3 idr_for_each -EXPORT_SYMBOL vmlinux 0x1d40d569 tcf_block_put_ext -EXPORT_SYMBOL vmlinux 0x1d539105 security_path_mkdir -EXPORT_SYMBOL vmlinux 0x1d5ff8ad ps2_handle_response -EXPORT_SYMBOL vmlinux 0x1d6207f9 close_fd_get_file -EXPORT_SYMBOL vmlinux 0x1d63627d generic_iommu_put_resv_regions -EXPORT_SYMBOL vmlinux 0x1d6b4ae7 skb_kill_datagram -EXPORT_SYMBOL vmlinux 0x1d828ff3 __bio_clone_fast -EXPORT_SYMBOL vmlinux 0x1d982cfa kernel_bind -EXPORT_SYMBOL vmlinux 0x1da52fa3 sync_inode_metadata -EXPORT_SYMBOL vmlinux 0x1da9e584 __dynamic_ibdev_dbg -EXPORT_SYMBOL vmlinux 0x1db4b590 __cleancache_invalidate_fs +EXPORT_SYMBOL vmlinux 0x1d434823 ppp_unregister_channel +EXPORT_SYMBOL vmlinux 0x1d50e8dc _dev_notice +EXPORT_SYMBOL vmlinux 0x1d6815ba d_exact_alias +EXPORT_SYMBOL vmlinux 0x1d90b463 xfrm_policy_hash_rebuild +EXPORT_SYMBOL vmlinux 0x1d92c77c blk_mq_delay_run_hw_queue +EXPORT_SYMBOL vmlinux 0x1d967436 pci_scan_root_bus +EXPORT_SYMBOL vmlinux 0x1da13955 pcim_iomap_table +EXPORT_SYMBOL vmlinux 0x1daee735 phy_connect_direct EXPORT_SYMBOL vmlinux 0x1db7706b __copy_user_nocache EXPORT_SYMBOL vmlinux 0x1dc6c93b lookup_user_key EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap -EXPORT_SYMBOL vmlinux 0x1ddd643c flow_hash_from_keys +EXPORT_SYMBOL vmlinux 0x1dd85ded nobh_write_end EXPORT_SYMBOL vmlinux 0x1de4ccb2 get_sg_io_hdr -EXPORT_SYMBOL vmlinux 0x1df99429 amd_iommu_domain_clear_gcr3 -EXPORT_SYMBOL vmlinux 0x1e05777b iter_file_splice_write +EXPORT_SYMBOL vmlinux 0x1de6b9c4 inet_pton_with_scope EXPORT_SYMBOL vmlinux 0x1e0a0c24 mod_timer_pending EXPORT_SYMBOL vmlinux 0x1e0cd7fe acpi_detach_data -EXPORT_SYMBOL vmlinux 0x1e170ec0 cros_ec_get_host_event +EXPORT_SYMBOL vmlinux 0x1e16d694 sock_queue_err_skb EXPORT_SYMBOL vmlinux 0x1e1e140e ns_to_timespec64 -EXPORT_SYMBOL vmlinux 0x1e2f8515 kernel_read -EXPORT_SYMBOL vmlinux 0x1e5b7e65 fb_validate_mode -EXPORT_SYMBOL vmlinux 0x1e698b96 skb_copy_and_csum_bits +EXPORT_SYMBOL vmlinux 0x1e21f57b devfreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x1e288775 twl6040_get_pll +EXPORT_SYMBOL vmlinux 0x1e36ccef complete_request_key EXPORT_SYMBOL vmlinux 0x1e6adaa0 bitmap_print_bitmask_to_buf EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr -EXPORT_SYMBOL vmlinux 0x1e6e13f5 neigh_resolve_output -EXPORT_SYMBOL vmlinux 0x1e7608b3 nlmsg_notify -EXPORT_SYMBOL vmlinux 0x1e8ab164 create_empty_buffers +EXPORT_SYMBOL vmlinux 0x1e8cc7de tcf_block_put_ext +EXPORT_SYMBOL vmlinux 0x1e99300b __test_set_page_writeback +EXPORT_SYMBOL vmlinux 0x1e9a380e configfs_depend_item EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu +EXPORT_SYMBOL vmlinux 0x1ea3d0d3 pci_bus_find_capability EXPORT_SYMBOL vmlinux 0x1eb922a3 IO_APIC_get_PCI_irq_vector -EXPORT_SYMBOL vmlinux 0x1ec16f6e __ClearPageMovable -EXPORT_SYMBOL vmlinux 0x1ed4a2f1 refresh_frequency_limits +EXPORT_SYMBOL vmlinux 0x1ece534c mmc_run_bkops EXPORT_SYMBOL vmlinux 0x1ed7eb60 __sg_free_table EXPORT_SYMBOL vmlinux 0x1edb69d6 ktime_get_raw_ts64 -EXPORT_SYMBOL vmlinux 0x1effb4ea scsi_host_busy -EXPORT_SYMBOL vmlinux 0x1f1423df udp_flush_pending_frames EXPORT_SYMBOL vmlinux 0x1f199d24 copy_user_generic_string -EXPORT_SYMBOL vmlinux 0x1f19b492 skb_vlan_untag -EXPORT_SYMBOL vmlinux 0x1f20926f notify_change -EXPORT_SYMBOL vmlinux 0x1f4748b1 get_cached_acl_rcu +EXPORT_SYMBOL vmlinux 0x1f1ce5bf udp_sendmsg +EXPORT_SYMBOL vmlinux 0x1f477d20 __dec_zone_page_state +EXPORT_SYMBOL vmlinux 0x1f4ec2d5 netdev_lower_get_next_private +EXPORT_SYMBOL vmlinux 0x1f551990 ip6_dst_check EXPORT_SYMBOL vmlinux 0x1f557414 gen_pool_has_addr -EXPORT_SYMBOL vmlinux 0x1f6eb7a6 nvdimm_namespace_capacity -EXPORT_SYMBOL vmlinux 0x1f715873 devm_devfreq_register_notifier -EXPORT_SYMBOL vmlinux 0x1f7dc3a5 sock_no_mmap -EXPORT_SYMBOL vmlinux 0x1f8f82b8 bio_advance -EXPORT_SYMBOL vmlinux 0x1f96a343 tcp_v4_md5_hash_skb +EXPORT_SYMBOL vmlinux 0x1f581caf vme_bus_type +EXPORT_SYMBOL vmlinux 0x1f8c4c5c inet_csk_delete_keepalive_timer +EXPORT_SYMBOL vmlinux 0x1f934351 kill_block_super +EXPORT_SYMBOL vmlinux 0x1f97b796 xsk_tx_release EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio +EXPORT_SYMBOL vmlinux 0x1fbef312 pci_release_resource EXPORT_SYMBOL vmlinux 0x1fc0cc7c intel_gtt_insert_sg_entries -EXPORT_SYMBOL vmlinux 0x1fcded11 serio_open +EXPORT_SYMBOL vmlinux 0x1fc249b2 keyring_alloc EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag -EXPORT_SYMBOL vmlinux 0x1fdc4714 netlink_unicast -EXPORT_SYMBOL vmlinux 0x1ff4ac05 inet_sk_rx_dst_set -EXPORT_SYMBOL vmlinux 0x1fff5a5b __vlan_find_dev_deep_rcu +EXPORT_SYMBOL vmlinux 0x1fe634de mdio_driver_register +EXPORT_SYMBOL vmlinux 0x1ff8e02f unregister_fib_notifier EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul -EXPORT_SYMBOL vmlinux 0x2005420f cpufreq_get_policy +EXPORT_SYMBOL vmlinux 0x2006c1b3 __dynamic_netdev_dbg EXPORT_SYMBOL vmlinux 0x200b2041 in6addr_any -EXPORT_SYMBOL vmlinux 0x20169c4d vfs_tmpfile -EXPORT_SYMBOL vmlinux 0x202cc732 request_key_rcu -EXPORT_SYMBOL vmlinux 0x202d8618 sync_inodes_sb -EXPORT_SYMBOL vmlinux 0x2036ad55 _dev_err -EXPORT_SYMBOL vmlinux 0x203f7511 ip_ct_attach +EXPORT_SYMBOL vmlinux 0x202e6d3c d_find_alias +EXPORT_SYMBOL vmlinux 0x202e7e0b pci_request_region +EXPORT_SYMBOL vmlinux 0x203c1bcf pci_enable_device EXPORT_SYMBOL vmlinux 0x20463df4 wait_for_completion_killable EXPORT_SYMBOL vmlinux 0x204af5b5 netlbl_audit_start EXPORT_SYMBOL vmlinux 0x204c19f5 tcp_alloc_md5sig_pool EXPORT_SYMBOL vmlinux 0x204c5067 scsi_dev_info_add_list -EXPORT_SYMBOL vmlinux 0x206660ad qdisc_watchdog_init +EXPORT_SYMBOL vmlinux 0x20859c60 fs_param_is_u32 +EXPORT_SYMBOL vmlinux 0x2089e1a9 blk_execute_rq +EXPORT_SYMBOL vmlinux 0x209e95b1 __ethtool_get_link_ksettings EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data -EXPORT_SYMBOL vmlinux 0x20ab9185 eth_get_headlen EXPORT_SYMBOL vmlinux 0x20ba4f3e rdmsr_on_cpu -EXPORT_SYMBOL vmlinux 0x20beb856 tty_driver_flush_buffer -EXPORT_SYMBOL vmlinux 0x20c80e58 nf_setsockopt +EXPORT_SYMBOL vmlinux 0x20bd7e68 eisa_driver_register +EXPORT_SYMBOL vmlinux 0x20bfee7a tso_build_data +EXPORT_SYMBOL vmlinux 0x20c0aca3 __mod_node_page_state EXPORT_SYMBOL vmlinux 0x20cbb30a __percpu_counter_init -EXPORT_SYMBOL vmlinux 0x20d639e3 splice_direct_to_actor +EXPORT_SYMBOL vmlinux 0x20cf3615 mr_mfc_find_any_parent EXPORT_SYMBOL vmlinux 0x20d65e40 fb_find_nearest_mode -EXPORT_SYMBOL vmlinux 0x20d8fb5a agp_backend_release -EXPORT_SYMBOL vmlinux 0x20d97030 pcim_iomap_regions_request_all EXPORT_SYMBOL vmlinux 0x20eadeb6 ip_compute_csum -EXPORT_SYMBOL vmlinux 0x20fc8507 vme_irq_handler EXPORT_SYMBOL vmlinux 0x20fff6ec ZSTD_DStreamInSize -EXPORT_SYMBOL vmlinux 0x2100b160 xfrm_stateonly_find -EXPORT_SYMBOL vmlinux 0x210489a0 clocksource_change_rating +EXPORT_SYMBOL vmlinux 0x21013503 file_write_and_wait_range EXPORT_SYMBOL vmlinux 0x21059cd7 audit_log_task_context -EXPORT_SYMBOL vmlinux 0x2111109b dev_mc_init EXPORT_SYMBOL vmlinux 0x211130c1 alloc_cpumask_var +EXPORT_SYMBOL vmlinux 0x21126970 phy_set_max_speed +EXPORT_SYMBOL vmlinux 0x211f8ab1 param_set_charp +EXPORT_SYMBOL vmlinux 0x21259460 agp_free_memory EXPORT_SYMBOL vmlinux 0x21271fd0 copy_user_enhanced_fast_string -EXPORT_SYMBOL vmlinux 0x21357e6c __traceiter_spi_transfer_stop +EXPORT_SYMBOL vmlinux 0x212c2331 file_remove_privs +EXPORT_SYMBOL vmlinux 0x212d3aac netdev_features_change +EXPORT_SYMBOL vmlinux 0x2134d33e devfreq_register_notifier +EXPORT_SYMBOL vmlinux 0x2136111f i2c_smbus_read_word_data EXPORT_SYMBOL vmlinux 0x213a738d memregion_alloc EXPORT_SYMBOL vmlinux 0x213e4965 ps2_is_keyboard_id -EXPORT_SYMBOL vmlinux 0x2158d239 file_remove_privs +EXPORT_SYMBOL vmlinux 0x2143dd7e filemap_fdatawrite_range +EXPORT_SYMBOL vmlinux 0x2144d42e i2c_smbus_read_byte +EXPORT_SYMBOL vmlinux 0x21471aab __SCK__tp_func_dma_fence_emit EXPORT_SYMBOL vmlinux 0x215a8ec8 slhc_init -EXPORT_SYMBOL vmlinux 0x2165dd78 rproc_elf_find_loaded_rsc_table -EXPORT_SYMBOL vmlinux 0x21736b30 device_get_mac_address -EXPORT_SYMBOL vmlinux 0x21751b01 mmc_cqe_recovery +EXPORT_SYMBOL vmlinux 0x215c420d mpage_writepage +EXPORT_SYMBOL vmlinux 0x2164ba7d mdio_find_bus EXPORT_SYMBOL vmlinux 0x2177bd71 acpi_disable_event -EXPORT_SYMBOL vmlinux 0x218069e7 uart_suspend_port EXPORT_SYMBOL vmlinux 0x218e600b pci_add_resource_offset -EXPORT_SYMBOL vmlinux 0x21925936 sock_queue_rcv_skb -EXPORT_SYMBOL vmlinux 0x219a91c2 dmam_pool_create -EXPORT_SYMBOL vmlinux 0x21a07dda security_unix_stream_connect -EXPORT_SYMBOL vmlinux 0x21aae73c mmc_retune_pause -EXPORT_SYMBOL vmlinux 0x21ab3675 prepare_kernel_cred +EXPORT_SYMBOL vmlinux 0x21914bd4 seg6_push_hmac +EXPORT_SYMBOL vmlinux 0x21a5148c set_cached_acl +EXPORT_SYMBOL vmlinux 0x21b297f0 mipi_dsi_host_register EXPORT_SYMBOL vmlinux 0x21bdb523 errseq_check_and_advance EXPORT_SYMBOL vmlinux 0x21be37e1 hdmi_avi_infoframe_check -EXPORT_SYMBOL vmlinux 0x21dead3a rproc_del +EXPORT_SYMBOL vmlinux 0x21cb163d setup_new_exec +EXPORT_SYMBOL vmlinux 0x21d1d9b2 fb_find_mode +EXPORT_SYMBOL vmlinux 0x21d8902c netdev_name_node_alt_destroy EXPORT_SYMBOL vmlinux 0x21e13cb3 inet_peer_xrlim_allow +EXPORT_SYMBOL vmlinux 0x21e77b72 notify_change EXPORT_SYMBOL vmlinux 0x21ef374c try_wait_for_completion -EXPORT_SYMBOL vmlinux 0x2216749a key_unlink -EXPORT_SYMBOL vmlinux 0x2225a291 vfs_mkdir -EXPORT_SYMBOL vmlinux 0x2229a443 __phy_resume +EXPORT_SYMBOL vmlinux 0x21f6d7c3 rproc_of_resm_mem_entry_init +EXPORT_SYMBOL vmlinux 0x2201f1f5 bioset_exit +EXPORT_SYMBOL vmlinux 0x221db308 backlight_device_get_by_type +EXPORT_SYMBOL vmlinux 0x222ddca8 device_add_disk EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq EXPORT_SYMBOL vmlinux 0x2234ca51 acpi_match_platform_list -EXPORT_SYMBOL vmlinux 0x223a6f50 param_set_bool -EXPORT_SYMBOL vmlinux 0x223f325a mini_qdisc_pair_swap -EXPORT_SYMBOL vmlinux 0x2240685e scsi_is_host_device -EXPORT_SYMBOL vmlinux 0x224499d1 bio_chain -EXPORT_SYMBOL vmlinux 0x22561302 ip_fraglist_init -EXPORT_SYMBOL vmlinux 0x227ea385 seq_path -EXPORT_SYMBOL vmlinux 0x2299ad78 md_write_inc -EXPORT_SYMBOL vmlinux 0x229dc67e __fib6_flush_trees -EXPORT_SYMBOL vmlinux 0x22b1dede to_ndd +EXPORT_SYMBOL vmlinux 0x2236f377 xfrm_state_lookup_byspi +EXPORT_SYMBOL vmlinux 0x223af750 tty_flip_buffer_push +EXPORT_SYMBOL vmlinux 0x223dd4ba jbd2_journal_begin_ordered_truncate +EXPORT_SYMBOL vmlinux 0x2240dffe phy_queue_state_machine +EXPORT_SYMBOL vmlinux 0x225afc69 inode_permission +EXPORT_SYMBOL vmlinux 0x2285aafd sock_create +EXPORT_SYMBOL vmlinux 0x228c8d3f fb_set_var +EXPORT_SYMBOL vmlinux 0x228e4e38 input_mt_report_pointer_emulation +EXPORT_SYMBOL vmlinux 0x229dc037 xfrm_find_acq +EXPORT_SYMBOL vmlinux 0x22abd4f5 tty_port_alloc_xmit_buf EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound -EXPORT_SYMBOL vmlinux 0x22ca3aa7 ip_mc_check_igmp -EXPORT_SYMBOL vmlinux 0x22d502c8 pci_enable_device_io -EXPORT_SYMBOL vmlinux 0x22dc88b5 serial8250_set_isa_configurator -EXPORT_SYMBOL vmlinux 0x22dcd6ce jbd2_journal_finish_inode_data_buffers +EXPORT_SYMBOL vmlinux 0x22d4fa10 km_new_mapping EXPORT_SYMBOL vmlinux 0x22de4931 amd_iommu_register_ga_log_notifier -EXPORT_SYMBOL vmlinux 0x22eb8488 pci_remove_bus -EXPORT_SYMBOL vmlinux 0x22eb999d key_move -EXPORT_SYMBOL vmlinux 0x22efb0f2 flow_indr_dev_register -EXPORT_SYMBOL vmlinux 0x22fa1399 xp_alloc -EXPORT_SYMBOL vmlinux 0x2302aada page_pool_put_page -EXPORT_SYMBOL vmlinux 0x2304213c tcf_exts_dump_stats -EXPORT_SYMBOL vmlinux 0x230722db flow_rule_match_ports -EXPORT_SYMBOL vmlinux 0x231836ab xfrm6_rcv -EXPORT_SYMBOL vmlinux 0x231fe2c2 dma_async_device_register -EXPORT_SYMBOL vmlinux 0x23201ea6 flow_indr_dev_setup_offload -EXPORT_SYMBOL vmlinux 0x232c3e98 freezing_slow_path -EXPORT_SYMBOL vmlinux 0x23339b31 netif_set_real_num_queues -EXPORT_SYMBOL vmlinux 0x2343e2f0 devm_devfreq_unregister_notifier -EXPORT_SYMBOL vmlinux 0x234f19c9 ipv6_dev_get_saddr -EXPORT_SYMBOL vmlinux 0x2357cb59 framebuffer_alloc -EXPORT_SYMBOL vmlinux 0x2363fd14 dquot_disable +EXPORT_SYMBOL vmlinux 0x2311bd53 misc_register +EXPORT_SYMBOL vmlinux 0x231e271c xsk_set_rx_need_wakeup +EXPORT_SYMBOL vmlinux 0x232518a3 pci_unmap_rom +EXPORT_SYMBOL vmlinux 0x233c2ffb genphy_soft_reset EXPORT_SYMBOL vmlinux 0x2364c85a tasklet_init -EXPORT_SYMBOL vmlinux 0x237320e6 invalidate_mapping_pages -EXPORT_SYMBOL vmlinux 0x23787d3a jbd2_submit_inode_data +EXPORT_SYMBOL vmlinux 0x2369303b __inc_zone_page_state +EXPORT_SYMBOL vmlinux 0x2371d1c3 vfio_pin_pages +EXPORT_SYMBOL vmlinux 0x2372ef0e pm860x_page_reg_write EXPORT_SYMBOL vmlinux 0x237a0b5c __traceiter_dma_fence_signaled +EXPORT_SYMBOL vmlinux 0x23848dc1 rproc_elf_load_rsc_table EXPORT_SYMBOL vmlinux 0x238b099f mipi_dsi_packet_format_is_short -EXPORT_SYMBOL vmlinux 0x238d0e13 ip_sock_set_freebind -EXPORT_SYMBOL vmlinux 0x238fc86b jbd2_journal_set_features +EXPORT_SYMBOL vmlinux 0x23969263 phy_sfp_probe +EXPORT_SYMBOL vmlinux 0x23b0cc23 nlmsg_notify +EXPORT_SYMBOL vmlinux 0x23b4ca12 get_agp_version EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path -EXPORT_SYMBOL vmlinux 0x23bdb5a4 ip_mc_leave_group -EXPORT_SYMBOL vmlinux 0x23c3676a pci_bus_alloc_resource EXPORT_SYMBOL vmlinux 0x23cabbb1 register_sysctl_paths -EXPORT_SYMBOL vmlinux 0x23d26ca2 __mod_node_page_state +EXPORT_SYMBOL vmlinux 0x23d29aaa filemap_write_and_wait_range +EXPORT_SYMBOL vmlinux 0x23d44269 uart_get_baud_rate +EXPORT_SYMBOL vmlinux 0x23d62b34 seq_bprintf EXPORT_SYMBOL vmlinux 0x23daa989 mipi_dsi_create_packet +EXPORT_SYMBOL vmlinux 0x23ecb8bd dquot_get_dqblk EXPORT_SYMBOL vmlinux 0x23ee13fd mb_cache_entry_find_first -EXPORT_SYMBOL vmlinux 0x23f0f42d tcf_block_netif_keep_dst EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node -EXPORT_SYMBOL vmlinux 0x240e8462 phy_start +EXPORT_SYMBOL vmlinux 0x241d672a pci_assign_resource +EXPORT_SYMBOL vmlinux 0x241dc0ee fb_prepare_logo EXPORT_SYMBOL vmlinux 0x24212d86 __frontswap_invalidate_page +EXPORT_SYMBOL vmlinux 0x2423608b pcie_relaxed_ordering_enabled +EXPORT_SYMBOL vmlinux 0x24417838 __xfrm_state_destroy +EXPORT_SYMBOL vmlinux 0x2456aef9 hash_and_copy_to_iter EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline -EXPORT_SYMBOL vmlinux 0x2463c1b6 mfd_cell_enable -EXPORT_SYMBOL vmlinux 0x24669bf2 udp_prot -EXPORT_SYMBOL vmlinux 0x246b7d42 fscrypt_zeroout_range -EXPORT_SYMBOL vmlinux 0x2476f419 generic_pipe_buf_try_steal -EXPORT_SYMBOL vmlinux 0x2483e8f3 tcp_mtup_init +EXPORT_SYMBOL vmlinux 0x245e92cb setattr_copy EXPORT_SYMBOL vmlinux 0x2484adc3 __kfifo_to_user_r -EXPORT_SYMBOL vmlinux 0x248fadd5 setattr_copy -EXPORT_SYMBOL vmlinux 0x249857de sock_no_recvmsg -EXPORT_SYMBOL vmlinux 0x249ccef2 dev_queue_xmit_accel -EXPORT_SYMBOL vmlinux 0x24b4fcc6 xfrm_trans_queue -EXPORT_SYMBOL vmlinux 0x24b7e1b0 __put_user_ns +EXPORT_SYMBOL vmlinux 0x24a02746 vme_irq_free +EXPORT_SYMBOL vmlinux 0x24a0a594 posix_acl_update_mode +EXPORT_SYMBOL vmlinux 0x24b820d0 phy_request_interrupt +EXPORT_SYMBOL vmlinux 0x24c67c02 skb_queue_tail EXPORT_SYMBOL vmlinux 0x24d273d1 add_timer -EXPORT_SYMBOL vmlinux 0x24e4901a unmap_mapping_range +EXPORT_SYMBOL vmlinux 0x24e051d5 netdev_lower_dev_get_private +EXPORT_SYMBOL vmlinux 0x24e5fb7a dquot_alloc_inode +EXPORT_SYMBOL vmlinux 0x24fc1586 neigh_ifdown EXPORT_SYMBOL vmlinux 0x2505bf18 kstrtol_from_user -EXPORT_SYMBOL vmlinux 0x25368135 input_unregister_handler -EXPORT_SYMBOL vmlinux 0x2574b91b input_alloc_absinfo +EXPORT_SYMBOL vmlinux 0x25352553 unregister_quota_format +EXPORT_SYMBOL vmlinux 0x254f12a9 tcp_ioctl +EXPORT_SYMBOL vmlinux 0x25546b2c stream_open +EXPORT_SYMBOL vmlinux 0x255ce15f agp_collect_device_status +EXPORT_SYMBOL vmlinux 0x25692371 dev_get_mac_address +EXPORT_SYMBOL vmlinux 0x2572b7c8 jbd2_journal_forget +EXPORT_SYMBOL vmlinux 0x257a1102 blk_mq_queue_stopped +EXPORT_SYMBOL vmlinux 0x257f02a4 inet_stream_ops EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid +EXPORT_SYMBOL vmlinux 0x25839274 fwnode_mdio_find_device +EXPORT_SYMBOL vmlinux 0x2583ddb8 tty_lock +EXPORT_SYMBOL vmlinux 0x2587f690 i8042_install_filter EXPORT_SYMBOL vmlinux 0x258a2c02 _raw_write_trylock EXPORT_SYMBOL vmlinux 0x258d2f76 net_dim_get_tx_moderation -EXPORT_SYMBOL vmlinux 0x2594a11b vfs_fileattr_get EXPORT_SYMBOL vmlinux 0x25974000 wait_for_completion -EXPORT_SYMBOL vmlinux 0x259bdd54 pcie_relaxed_ordering_enabled -EXPORT_SYMBOL vmlinux 0x25a77be6 pci_alloc_dev -EXPORT_SYMBOL vmlinux 0x25abb34b devm_pci_remap_iospace -EXPORT_SYMBOL vmlinux 0x25aee6bc dev_get_by_index_rcu -EXPORT_SYMBOL vmlinux 0x25b52e86 pci_msi_vec_count -EXPORT_SYMBOL vmlinux 0x25b88e2a agp_generic_alloc_pages -EXPORT_SYMBOL vmlinux 0x25cc95c0 agp_generic_type_to_mask_type -EXPORT_SYMBOL vmlinux 0x25d49bef neigh_seq_start -EXPORT_SYMBOL vmlinux 0x25d83810 __netlink_ns_capable -EXPORT_SYMBOL vmlinux 0x25d9cb25 __brelse +EXPORT_SYMBOL vmlinux 0x25a182b7 bio_add_pc_page +EXPORT_SYMBOL vmlinux 0x25c05412 neigh_seq_next +EXPORT_SYMBOL vmlinux 0x25c0848b tcf_em_unregister +EXPORT_SYMBOL vmlinux 0x25d20f94 dev_get_by_napi_id +EXPORT_SYMBOL vmlinux 0x25d810ff write_dirty_buffer EXPORT_SYMBOL vmlinux 0x25db1577 do_trace_write_msr +EXPORT_SYMBOL vmlinux 0x25e3f931 rproc_shutdown EXPORT_SYMBOL vmlinux 0x25e58a09 hdmi_avi_infoframe_init EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free -EXPORT_SYMBOL vmlinux 0x25ee0478 flow_block_cb_setup_simple +EXPORT_SYMBOL vmlinux 0x25f82d08 rtnl_set_sk_err +EXPORT_SYMBOL vmlinux 0x25ff46cf netdev_class_create_file_ns +EXPORT_SYMBOL vmlinux 0x26029bff napi_consume_skb +EXPORT_SYMBOL vmlinux 0x2606cecd pagecache_write_end EXPORT_SYMBOL vmlinux 0x260a095a __sg_alloc_table -EXPORT_SYMBOL vmlinux 0x2624a8af crypto_sha1_finup -EXPORT_SYMBOL vmlinux 0x2627e9ac submit_bio_noacct +EXPORT_SYMBOL vmlinux 0x260e37ff register_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x261b4245 dcb_ieee_getapp_dscp_prio_mask_map +EXPORT_SYMBOL vmlinux 0x261c0e8d dev_set_alias EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions EXPORT_SYMBOL vmlinux 0x263c3152 bcmp -EXPORT_SYMBOL vmlinux 0x26405549 __filemap_set_wb_err -EXPORT_SYMBOL vmlinux 0x2662943a __free_pages -EXPORT_SYMBOL vmlinux 0x266c2f1c backlight_device_unregister -EXPORT_SYMBOL vmlinux 0x266d5884 pmem_sector_size +EXPORT_SYMBOL vmlinux 0x26538862 dev_alloc_name +EXPORT_SYMBOL vmlinux 0x26556bab pci_set_master +EXPORT_SYMBOL vmlinux 0x2660459e phy_init_hw +EXPORT_SYMBOL vmlinux 0x2668e977 flow_block_cb_incref +EXPORT_SYMBOL vmlinux 0x266a1918 jbd2_wait_inode_data EXPORT_SYMBOL vmlinux 0x2688ec10 bitmap_zalloc -EXPORT_SYMBOL vmlinux 0x268bfbfd dev_mc_unsync -EXPORT_SYMBOL vmlinux 0x269482ec sb_min_blocksize -EXPORT_SYMBOL vmlinux 0x26c22676 km_state_notify -EXPORT_SYMBOL vmlinux 0x26c34c82 vfs_fsync_range +EXPORT_SYMBOL vmlinux 0x26b36c6d xfrm_register_type_offload +EXPORT_SYMBOL vmlinux 0x26c3fd6b tty_unregister_ldisc EXPORT_SYMBOL vmlinux 0x26cc73c3 complete_and_exit -EXPORT_SYMBOL vmlinux 0x26d94433 __ip_mc_dec_group -EXPORT_SYMBOL vmlinux 0x26df0ac2 flush_signals EXPORT_SYMBOL vmlinux 0x26e298e0 unregister_memory_notifier -EXPORT_SYMBOL vmlinux 0x26e627cb elv_rb_latter_request -EXPORT_SYMBOL vmlinux 0x26e7ca08 sock_kfree_s EXPORT_SYMBOL vmlinux 0x26f8f0b8 iowrite16be +EXPORT_SYMBOL vmlinux 0x2706491a lease_modify EXPORT_SYMBOL vmlinux 0x270cf88f dump_stack_lvl -EXPORT_SYMBOL vmlinux 0x270e85d9 ps2_sendbyte EXPORT_SYMBOL vmlinux 0x271cba95 acpi_bus_private_data_handler +EXPORT_SYMBOL vmlinux 0x27206e8c fs_context_for_reconfigure EXPORT_SYMBOL vmlinux 0x272a8933 udp_memory_allocated -EXPORT_SYMBOL vmlinux 0x272f2589 scsi_host_put +EXPORT_SYMBOL vmlinux 0x272ec678 xsk_clear_rx_need_wakeup +EXPORT_SYMBOL vmlinux 0x273344e3 jbd2_transaction_committed EXPORT_SYMBOL vmlinux 0x2733eaf7 scsi_dev_info_list_add_keyed +EXPORT_SYMBOL vmlinux 0x27407de3 proc_remove +EXPORT_SYMBOL vmlinux 0x2744b429 scsi_ioctl EXPORT_SYMBOL vmlinux 0x27479d14 param_free_charp -EXPORT_SYMBOL vmlinux 0x2747a906 dma_sync_single_for_cpu -EXPORT_SYMBOL vmlinux 0x2750a338 netdev_master_upper_dev_get_rcu EXPORT_SYMBOL vmlinux 0x275f3d49 hdmi_vendor_infoframe_check +EXPORT_SYMBOL vmlinux 0x2766b7cc pci_enable_device_io +EXPORT_SYMBOL vmlinux 0x2767c82f tcp_enter_quickack_mode +EXPORT_SYMBOL vmlinux 0x27690119 mdio_device_create EXPORT_SYMBOL vmlinux 0x27756bc8 scsi_sanitize_inquiry_string -EXPORT_SYMBOL vmlinux 0x277db725 __SCK__tp_func_mmap_lock_start_locking +EXPORT_SYMBOL vmlinux 0x27810252 input_match_device_id 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 0x278ac0e8 mmc_request_done -EXPORT_SYMBOL vmlinux 0x2797f5d8 nf_unregister_net_hook -EXPORT_SYMBOL vmlinux 0x27b9827a mipi_dsi_set_maximum_return_packet_size +EXPORT_SYMBOL vmlinux 0x2790291c param_ops_byte +EXPORT_SYMBOL vmlinux 0x2795aa45 __inet6_lookup_established EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync +EXPORT_SYMBOL vmlinux 0x27bd670a input_set_capability +EXPORT_SYMBOL vmlinux 0x27c5d88a key_link EXPORT_SYMBOL vmlinux 0x27cdca93 pci_add_resource -EXPORT_SYMBOL vmlinux 0x27d0f889 generic_file_splice_read -EXPORT_SYMBOL vmlinux 0x281238d1 vfs_dedupe_file_range -EXPORT_SYMBOL vmlinux 0x2813a195 dcache_readdir +EXPORT_SYMBOL vmlinux 0x27d075d2 pldmfw_op_pci_match_record +EXPORT_SYMBOL vmlinux 0x27d47fa6 max8998_bulk_read +EXPORT_SYMBOL vmlinux 0x27d4eb5e sg_miter_start +EXPORT_SYMBOL vmlinux 0x27e49661 __free_pages +EXPORT_SYMBOL vmlinux 0x27f244c9 tty_port_close +EXPORT_SYMBOL vmlinux 0x27ff1079 vme_master_mmap EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek -EXPORT_SYMBOL vmlinux 0x28339e46 bio_clone_fast -EXPORT_SYMBOL vmlinux 0x283a3b4a rtc_add_group -EXPORT_SYMBOL vmlinux 0x283a6b39 xfrm_init_replay +EXPORT_SYMBOL vmlinux 0x28466e52 page_pool_put_page_bulk EXPORT_SYMBOL vmlinux 0x284faa6b __x86_indirect_thunk_r11 -EXPORT_SYMBOL vmlinux 0x28504bbb free_buffer_head -EXPORT_SYMBOL vmlinux 0x28545f97 mr_rtm_dumproute -EXPORT_SYMBOL vmlinux 0x286cd597 rproc_add -EXPORT_SYMBOL vmlinux 0x2873b0ac netdev_pick_tx +EXPORT_SYMBOL vmlinux 0x285ac2d9 __scm_send EXPORT_SYMBOL vmlinux 0x2875a315 utf32_to_utf8 -EXPORT_SYMBOL vmlinux 0x289d5194 acpi_match_device_ids -EXPORT_SYMBOL vmlinux 0x28a8c522 vfs_parse_fs_string -EXPORT_SYMBOL vmlinux 0x28abae97 tty_register_driver -EXPORT_SYMBOL vmlinux 0x28add24c dma_get_sgtable_attrs -EXPORT_SYMBOL vmlinux 0x28cfc577 seq_escape +EXPORT_SYMBOL vmlinux 0x2877a6bd inet_reqsk_alloc +EXPORT_SYMBOL vmlinux 0x289f5aa8 tcp_initialize_rcv_mss +EXPORT_SYMBOL vmlinux 0x28a9f0c8 pci_request_selected_regions_exclusive +EXPORT_SYMBOL vmlinux 0x28b048f5 update_devfreq +EXPORT_SYMBOL vmlinux 0x28b6f8b5 rproc_add +EXPORT_SYMBOL vmlinux 0x28b88124 touchscreen_report_pos EXPORT_SYMBOL vmlinux 0x28e09af1 iosf_mbi_available +EXPORT_SYMBOL vmlinux 0x28e69114 param_ops_short EXPORT_SYMBOL vmlinux 0x28f94604 __ubsan_handle_builtin_unreachable -EXPORT_SYMBOL vmlinux 0x28f9f386 __sk_dst_check EXPORT_SYMBOL vmlinux 0x291ee747 csum_and_copy_to_user +EXPORT_SYMBOL vmlinux 0x2927248f kmem_cache_free EXPORT_SYMBOL vmlinux 0x29332499 __x86_indirect_thunk_rsi -EXPORT_SYMBOL vmlinux 0x293496af sock_i_ino -EXPORT_SYMBOL vmlinux 0x29378ee3 mr_table_dump -EXPORT_SYMBOL vmlinux 0x295dcc16 get_unmapped_area +EXPORT_SYMBOL vmlinux 0x293e3d04 inet6_add_offload +EXPORT_SYMBOL vmlinux 0x293e5a7b mmc_free_host +EXPORT_SYMBOL vmlinux 0x2953c4e4 param_set_short EXPORT_SYMBOL vmlinux 0x29604158 napi_busy_loop -EXPORT_SYMBOL vmlinux 0x2971ca12 pci_biosrom_size -EXPORT_SYMBOL vmlinux 0x29886f56 __tracepoint_module_get -EXPORT_SYMBOL vmlinux 0x299927cf pci_dev_driver -EXPORT_SYMBOL vmlinux 0x29a88f00 wait_for_key_construction +EXPORT_SYMBOL vmlinux 0x296982df acpi_register_debugger +EXPORT_SYMBOL vmlinux 0x299c89f0 netpoll_poll_enable EXPORT_SYMBOL vmlinux 0x29ad8e33 x86_hyper_type -EXPORT_SYMBOL vmlinux 0x29d800c5 buffer_check_dirty_writeback +EXPORT_SYMBOL vmlinux 0x29bf73ca unix_get_socket +EXPORT_SYMBOL vmlinux 0x29ca8bef cfb_copyarea +EXPORT_SYMBOL vmlinux 0x29dcf8be mmc_retune_timer_stop EXPORT_SYMBOL vmlinux 0x29e1e204 hdmi_audio_infoframe_pack -EXPORT_SYMBOL vmlinux 0x29e3e1dc netdev_lower_state_changed +EXPORT_SYMBOL vmlinux 0x29ea95d0 set_anon_super_fc +EXPORT_SYMBOL vmlinux 0x29f7d07e inet_dgram_ops +EXPORT_SYMBOL vmlinux 0x2a1417ae param_get_ullong +EXPORT_SYMBOL vmlinux 0x2a157cb5 input_handler_for_each_handle +EXPORT_SYMBOL vmlinux 0x2a19da37 pnp_request_card_device +EXPORT_SYMBOL vmlinux 0x2a267b54 pci_dev_get +EXPORT_SYMBOL vmlinux 0x2a2ded6f vfs_iocb_iter_read EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature -EXPORT_SYMBOL vmlinux 0x2a4c2955 dma_supported -EXPORT_SYMBOL vmlinux 0x2a546b7e pci_bus_read_dev_vendor_id +EXPORT_SYMBOL vmlinux 0x2a3d555e pcie_capability_clear_and_set_dword +EXPORT_SYMBOL vmlinux 0x2a59485f amd_iommu_flush_page +EXPORT_SYMBOL vmlinux 0x2a5b4c4a input_set_keycode +EXPORT_SYMBOL vmlinux 0x2a5eb26e igrab +EXPORT_SYMBOL vmlinux 0x2a6a48ff ip6_find_1stfragopt EXPORT_SYMBOL vmlinux 0x2a6fa0d0 __SCT__tp_func_module_get -EXPORT_SYMBOL vmlinux 0x2a77436d sock_set_rcvbuf -EXPORT_SYMBOL vmlinux 0x2a84fc68 xfrm_if_register_cb -EXPORT_SYMBOL vmlinux 0x2a8db161 dma_set_mask +EXPORT_SYMBOL vmlinux 0x2a869b30 user_path_create +EXPORT_SYMBOL vmlinux 0x2a8ce363 bio_reset +EXPORT_SYMBOL vmlinux 0x2a9477bf blk_mq_init_queue 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 0x2ac69e9b max8925_bulk_write -EXPORT_SYMBOL vmlinux 0x2acad413 phy_find_first -EXPORT_SYMBOL vmlinux 0x2ae61355 phy_do_ioctl_running -EXPORT_SYMBOL vmlinux 0x2af3f7cc md_wait_for_blocked_rdev -EXPORT_SYMBOL vmlinux 0x2b0d2956 genphy_aneg_done -EXPORT_SYMBOL vmlinux 0x2b0e3dd3 jbd2_journal_restart -EXPORT_SYMBOL vmlinux 0x2b13f750 dev_mc_sync -EXPORT_SYMBOL vmlinux 0x2b32fff4 kthread_create_on_node -EXPORT_SYMBOL vmlinux 0x2b47ac5e pci_disable_device -EXPORT_SYMBOL vmlinux 0x2b4f5b4a ata_print_version +EXPORT_SYMBOL vmlinux 0x2ac2c532 xfrm_replay_seqhi +EXPORT_SYMBOL vmlinux 0x2ac6067b amd_iommu_domain_clear_gcr3 +EXPORT_SYMBOL vmlinux 0x2acda660 netif_carrier_on +EXPORT_SYMBOL vmlinux 0x2adb5b70 md_bitmap_close_sync +EXPORT_SYMBOL vmlinux 0x2aded526 __tracepoint_mmap_lock_start_locking +EXPORT_SYMBOL vmlinux 0x2aeec88f page_pool_alloc_frag +EXPORT_SYMBOL vmlinux 0x2b0dad62 ip_sock_set_recverr +EXPORT_SYMBOL vmlinux 0x2b20affc scsi_change_queue_depth +EXPORT_SYMBOL vmlinux 0x2b3d898d fb_get_mode +EXPORT_SYMBOL vmlinux 0x2b457862 serial8250_set_isa_configurator +EXPORT_SYMBOL vmlinux 0x2b46c933 pcie_capability_write_word +EXPORT_SYMBOL vmlinux 0x2b498e70 tcf_action_check_ctrlact +EXPORT_SYMBOL vmlinux 0x2b54356a dev_close EXPORT_SYMBOL vmlinux 0x2b593aa8 gen_pool_alloc_algo_owner -EXPORT_SYMBOL vmlinux 0x2b6148d2 netdev_notice +EXPORT_SYMBOL vmlinux 0x2b5c3f1a ww_mutex_lock EXPORT_SYMBOL vmlinux 0x2b68bd2f del_timer -EXPORT_SYMBOL vmlinux 0x2b6b90bf blk_rq_map_kern EXPORT_SYMBOL vmlinux 0x2b6f0962 __cpu_dying_mask -EXPORT_SYMBOL vmlinux 0x2b75f8dd discard_new_inode -EXPORT_SYMBOL vmlinux 0x2b78cbdb remap_vmalloc_range -EXPORT_SYMBOL vmlinux 0x2b7c3665 mdiobus_register_device -EXPORT_SYMBOL vmlinux 0x2b7c7046 xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x2b8ad416 d_find_any_alias EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock -EXPORT_SYMBOL vmlinux 0x2ba738ee devm_pci_remap_cfg_resource -EXPORT_SYMBOL vmlinux 0x2bb5289a begin_new_exec EXPORT_SYMBOL vmlinux 0x2bb6099e dq_data_lock EXPORT_SYMBOL vmlinux 0x2bd60ab9 acpi_reset -EXPORT_SYMBOL vmlinux 0x2bdb06d0 phy_ethtool_get_sset_count -EXPORT_SYMBOL vmlinux 0x2bf4ac58 filemap_fdatawrite -EXPORT_SYMBOL vmlinux 0x2bf53849 bio_add_page -EXPORT_SYMBOL vmlinux 0x2c08e991 unregister_filesystem -EXPORT_SYMBOL vmlinux 0x2c0cd93a md_write_end -EXPORT_SYMBOL vmlinux 0x2c0ee47c tc_setup_cb_reoffload -EXPORT_SYMBOL vmlinux 0x2c116bde nf_register_sockopt +EXPORT_SYMBOL vmlinux 0x2bec7a0c get_acl +EXPORT_SYMBOL vmlinux 0x2bfddadb blkdev_compat_ptr_ioctl +EXPORT_SYMBOL vmlinux 0x2c06ad95 skb_get_hash_perturb +EXPORT_SYMBOL vmlinux 0x2c13ed0d inet_accept +EXPORT_SYMBOL vmlinux 0x2c158c96 param_ops_invbool +EXPORT_SYMBOL vmlinux 0x2c1afc1f prepare_to_swait_exclusive EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar +EXPORT_SYMBOL vmlinux 0x2c447a17 acpi_get_hp_hw_control_from_firmware +EXPORT_SYMBOL vmlinux 0x2c49963f mr_mfc_seq_next +EXPORT_SYMBOL vmlinux 0x2c4f02fb skb_expand_head EXPORT_SYMBOL vmlinux 0x2c541e7b radix_tree_next_chunk -EXPORT_SYMBOL vmlinux 0x2c5b451b jbd2_journal_init_inode +EXPORT_SYMBOL vmlinux 0x2c6c7c80 sync_inodes_sb EXPORT_SYMBOL vmlinux 0x2c71fbfb proc_dobool -EXPORT_SYMBOL vmlinux 0x2c7ff751 wait_on_page_bit -EXPORT_SYMBOL vmlinux 0x2c85a011 kfree_skb_partial -EXPORT_SYMBOL vmlinux 0x2c89e977 neigh_for_each -EXPORT_SYMBOL vmlinux 0x2c92a16e xfrm_state_lookup -EXPORT_SYMBOL vmlinux 0x2cadd6cb gnet_stats_copy_app +EXPORT_SYMBOL vmlinux 0x2c792d3d vme_slot_num +EXPORT_SYMBOL vmlinux 0x2c886f8f blk_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x2c8ebe69 ip_mc_join_group +EXPORT_SYMBOL vmlinux 0x2c96f721 sock_efree EXPORT_SYMBOL vmlinux 0x2caf63d1 topology_phys_to_logical_die -EXPORT_SYMBOL vmlinux 0x2cb835ab uart_unregister_driver EXPORT_SYMBOL vmlinux 0x2ccd059a dim_on_top +EXPORT_SYMBOL vmlinux 0x2ccddd3c rproc_free EXPORT_SYMBOL vmlinux 0x2cdf87a1 proc_dointvec_minmax -EXPORT_SYMBOL vmlinux 0x2ce4c015 dquot_resume +EXPORT_SYMBOL vmlinux 0x2cf0107e refresh_frequency_limits EXPORT_SYMBOL vmlinux 0x2cf0f2cc config_item_init_type_name +EXPORT_SYMBOL vmlinux 0x2cf1c111 serial8250_do_set_termios +EXPORT_SYMBOL vmlinux 0x2d066a7d dma_resv_reserve_shared +EXPORT_SYMBOL vmlinux 0x2d1221ef blk_mq_stop_hw_queue EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock EXPORT_SYMBOL vmlinux 0x2d192c70 sg_zero_buffer -EXPORT_SYMBOL vmlinux 0x2d26b0fd blk_queue_segment_boundary -EXPORT_SYMBOL vmlinux 0x2d2c4fb2 __devm_mdiobus_register +EXPORT_SYMBOL vmlinux 0x2d2f7b89 inet_shutdown EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged EXPORT_SYMBOL vmlinux 0x2d3385d3 system_wq EXPORT_SYMBOL vmlinux 0x2d39b0a7 kstrdup -EXPORT_SYMBOL vmlinux 0x2d3f358e try_module_get -EXPORT_SYMBOL vmlinux 0x2d457bca tcp_v4_syn_recv_sock EXPORT_SYMBOL vmlinux 0x2d4c773a hdmi_spd_infoframe_init EXPORT_SYMBOL vmlinux 0x2d4daef5 find_font -EXPORT_SYMBOL vmlinux 0x2d564c25 pci_bus_write_config_dword -EXPORT_SYMBOL vmlinux 0x2d58632c fb_find_mode -EXPORT_SYMBOL vmlinux 0x2d59620c iov_iter_advance -EXPORT_SYMBOL vmlinux 0x2d673f4c acpi_bus_get_device +EXPORT_SYMBOL vmlinux 0x2d62c52d dma_resv_add_shared_fence +EXPORT_SYMBOL vmlinux 0x2d6a3ac8 pci_enable_ptm +EXPORT_SYMBOL vmlinux 0x2d89f04f tcp_seq_next EXPORT_SYMBOL vmlinux 0x2d912bca dmi_get_bios_year -EXPORT_SYMBOL vmlinux 0x2d91c8a5 generic_error_remove_page EXPORT_SYMBOL vmlinux 0x2d994605 security_inode_copy_up_xattr -EXPORT_SYMBOL vmlinux 0x2da1bca1 mmc_can_trim -EXPORT_SYMBOL vmlinux 0x2daaa227 km_state_expired -EXPORT_SYMBOL vmlinux 0x2dac5e24 scsi_device_resume -EXPORT_SYMBOL vmlinux 0x2db42de5 clear_nlink -EXPORT_SYMBOL vmlinux 0x2db95a58 vfs_create_mount +EXPORT_SYMBOL vmlinux 0x2da21edb flow_block_cb_priv +EXPORT_SYMBOL vmlinux 0x2da76546 simple_nosetlease +EXPORT_SYMBOL vmlinux 0x2dcc1733 kernel_sendmsg_locked +EXPORT_SYMBOL vmlinux 0x2dcf0fce scsi_unblock_requests EXPORT_SYMBOL vmlinux 0x2dd16564 arch_register_cpu -EXPORT_SYMBOL vmlinux 0x2dd41fc3 pldmfw_op_pci_match_record -EXPORT_SYMBOL vmlinux 0x2dd6582d agp_generic_enable +EXPORT_SYMBOL vmlinux 0x2dd189ee dup_iter +EXPORT_SYMBOL vmlinux 0x2dd5e45b skb_copy_expand +EXPORT_SYMBOL vmlinux 0x2dd89b7a inode_needs_sync +EXPORT_SYMBOL vmlinux 0x2dd9d2af ipv6_chk_prefix EXPORT_SYMBOL vmlinux 0x2de125c0 page_frag_alloc_align -EXPORT_SYMBOL vmlinux 0x2ded4fff pci_unregister_driver +EXPORT_SYMBOL vmlinux 0x2de9ff5b vlan_vid_del +EXPORT_SYMBOL vmlinux 0x2dec881b intel_gmch_probe EXPORT_SYMBOL vmlinux 0x2def7f76 rtc_cmos_write -EXPORT_SYMBOL vmlinux 0x2df701f4 __skb_checksum_complete_head -EXPORT_SYMBOL vmlinux 0x2dfb2649 xp_raw_get_data -EXPORT_SYMBOL vmlinux 0x2e0a0cf0 mmc_free_host EXPORT_SYMBOL vmlinux 0x2e0b1deb dma_fence_get_status -EXPORT_SYMBOL vmlinux 0x2e0e7813 twl6040_get_vibralr_status -EXPORT_SYMBOL vmlinux 0x2e175e87 __tracepoint_kmem_cache_free -EXPORT_SYMBOL vmlinux 0x2e187800 dev_getbyhwaddr_rcu -EXPORT_SYMBOL vmlinux 0x2e1b88c7 ether_setup +EXPORT_SYMBOL vmlinux 0x2e0f15bc seg6_hmac_info_lookup +EXPORT_SYMBOL vmlinux 0x2e11ddac __SCK__tp_func_kmalloc_node +EXPORT_SYMBOL vmlinux 0x2e1607df __blk_mq_alloc_disk +EXPORT_SYMBOL vmlinux 0x2e169df2 skb_vlan_pop +EXPORT_SYMBOL vmlinux 0x2e1bdf4a eth_header_cache EXPORT_SYMBOL vmlinux 0x2e1ca751 clk_put -EXPORT_SYMBOL vmlinux 0x2e2b1a21 audit_log +EXPORT_SYMBOL vmlinux 0x2e1f8a71 ata_scsi_cmd_error_handler +EXPORT_SYMBOL vmlinux 0x2e274476 dev_uc_sync_multiple EXPORT_SYMBOL vmlinux 0x2e2b40d2 strncat -EXPORT_SYMBOL vmlinux 0x2e2e1c17 filemap_fdatawait_keep_errors -EXPORT_SYMBOL vmlinux 0x2e306d6b rdmacg_uncharge +EXPORT_SYMBOL vmlinux 0x2e2c694c jbd2_journal_errno EXPORT_SYMBOL vmlinux 0x2e3bcce2 wait_for_completion_interruptible -EXPORT_SYMBOL vmlinux 0x2e3ee606 jbd2_journal_start_commit EXPORT_SYMBOL vmlinux 0x2e439142 drm_get_panel_orientation_quirk -EXPORT_SYMBOL vmlinux 0x2e450da5 open_exec -EXPORT_SYMBOL vmlinux 0x2e4fed5e dev_deactivate +EXPORT_SYMBOL vmlinux 0x2e444cac udp_poll EXPORT_SYMBOL vmlinux 0x2e5fe036 __skb_ext_put -EXPORT_SYMBOL vmlinux 0x2e69466b devm_rproc_alloc -EXPORT_SYMBOL vmlinux 0x2e75648d unix_destruct_scm -EXPORT_SYMBOL vmlinux 0x2e9744cc nvdimm_bus_lock +EXPORT_SYMBOL vmlinux 0x2e6a1dfb seq_pad +EXPORT_SYMBOL vmlinux 0x2e7ebd98 devfreq_update_status +EXPORT_SYMBOL vmlinux 0x2e94f669 simple_dir_inode_operations +EXPORT_SYMBOL vmlinux 0x2e95ef68 pci_clear_master +EXPORT_SYMBOL vmlinux 0x2e9f1c56 inode_insert5 EXPORT_SYMBOL vmlinux 0x2ea52d3e dma_fence_chain_init -EXPORT_SYMBOL vmlinux 0x2ec5fb01 blk_rq_append_bio +EXPORT_SYMBOL vmlinux 0x2ea87189 blkdev_issue_write_same +EXPORT_SYMBOL vmlinux 0x2ec1438c t10_pi_type3_crc EXPORT_SYMBOL vmlinux 0x2ec6bba0 errseq_set -EXPORT_SYMBOL vmlinux 0x2ec7927d iommu_get_msi_cookie -EXPORT_SYMBOL vmlinux 0x2ecd7fd6 generic_pipe_buf_release -EXPORT_SYMBOL vmlinux 0x2ed9975a jbd2_journal_release_jbd_inode +EXPORT_SYMBOL vmlinux 0x2ec70217 dst_release_immediate +EXPORT_SYMBOL vmlinux 0x2ec91f8d mdio_driver_unregister EXPORT_SYMBOL vmlinux 0x2ee4c2b1 hdmi_avi_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0x2eecfb0e mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x2eec7036 __cleancache_init_fs EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc -EXPORT_SYMBOL vmlinux 0x2f1bf1e3 seq_open -EXPORT_SYMBOL vmlinux 0x2f2103da give_up_console +EXPORT_SYMBOL vmlinux 0x2f116645 dev_trans_start +EXPORT_SYMBOL vmlinux 0x2f12adb6 jbd2_journal_load +EXPORT_SYMBOL vmlinux 0x2f212f3d vme_register_bridge EXPORT_SYMBOL vmlinux 0x2f2e91b2 security_ib_alloc_security EXPORT_SYMBOL vmlinux 0x2f384db3 acpi_is_video_device -EXPORT_SYMBOL vmlinux 0x2f5a67ea seq_bprintf -EXPORT_SYMBOL vmlinux 0x2f6eab6e dma_set_coherent_mask -EXPORT_SYMBOL vmlinux 0x2f748dff tcf_em_unregister +EXPORT_SYMBOL vmlinux 0x2f3e5e91 flow_rule_match_enc_ports +EXPORT_SYMBOL vmlinux 0x2f587d70 md_update_sb +EXPORT_SYMBOL vmlinux 0x2f711446 __brelse EXPORT_SYMBOL vmlinux 0x2f7754a8 dma_pool_free -EXPORT_SYMBOL vmlinux 0x2fa5d171 reuseport_migrate_sock -EXPORT_SYMBOL vmlinux 0x2fae3e61 stream_open -EXPORT_SYMBOL vmlinux 0x2faeb983 agp3_generic_tlbflush -EXPORT_SYMBOL vmlinux 0x2faf0c4e __xfrm_init_state +EXPORT_SYMBOL vmlinux 0x2f820e17 phy_device_create +EXPORT_SYMBOL vmlinux 0x2f96ee30 blkdev_issue_flush +EXPORT_SYMBOL vmlinux 0x2fa37508 vfs_rmdir EXPORT_SYMBOL vmlinux 0x2fb6de5d add_device_randomness -EXPORT_SYMBOL vmlinux 0x2fd67e7f xfrm_policy_hash_rebuild -EXPORT_SYMBOL vmlinux 0x2fe18f2e fib_default_rule_add +EXPORT_SYMBOL vmlinux 0x2fbbdba5 backlight_device_get_by_name +EXPORT_SYMBOL vmlinux 0x2fc0e4aa dentry_path_raw EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier -EXPORT_SYMBOL vmlinux 0x300aee6a tty_hangup +EXPORT_SYMBOL vmlinux 0x300d8d7a put_cmsg +EXPORT_SYMBOL vmlinux 0x301020cc eth_prepare_mac_addr_change EXPORT_SYMBOL vmlinux 0x301304c2 __get_user_nocheck_8 -EXPORT_SYMBOL vmlinux 0x302b9eb7 genphy_check_and_restart_aneg +EXPORT_SYMBOL vmlinux 0x30231bde validate_slab_cache +EXPORT_SYMBOL vmlinux 0x3027a55c vfs_create +EXPORT_SYMBOL vmlinux 0x30301b37 __blk_mq_end_request +EXPORT_SYMBOL vmlinux 0x304ad119 dquot_reclaim_space_nodirty EXPORT_SYMBOL vmlinux 0x3052fecd ptp_convert_timestamp EXPORT_SYMBOL vmlinux 0x305a916c __x86_indirect_thunk_rdi -EXPORT_SYMBOL vmlinux 0x305aa8c4 __frontswap_test -EXPORT_SYMBOL vmlinux 0x30703080 dev_get_phys_port_id +EXPORT_SYMBOL vmlinux 0x3069c540 filemap_page_mkwrite +EXPORT_SYMBOL vmlinux 0x306cb10b pci_set_power_state +EXPORT_SYMBOL vmlinux 0x308a0289 scsi_bios_ptable +EXPORT_SYMBOL vmlinux 0x308aec87 dquot_get_next_dqblk +EXPORT_SYMBOL vmlinux 0x308e72e8 serio_unregister_driver +EXPORT_SYMBOL vmlinux 0x3094599a nd_pfn_probe EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep -EXPORT_SYMBOL vmlinux 0x309da84d ppp_register_compressor EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user EXPORT_SYMBOL vmlinux 0x30acfde9 hsiphash_2u32 -EXPORT_SYMBOL vmlinux 0x30be9d97 pps_unregister_source -EXPORT_SYMBOL vmlinux 0x30e0d178 neigh_parms_release +EXPORT_SYMBOL vmlinux 0x30b35b06 jbd2_journal_force_commit_nested +EXPORT_SYMBOL vmlinux 0x30d14678 unregister_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x30d75539 balance_dirty_pages_ratelimited +EXPORT_SYMBOL vmlinux 0x30e531f6 pci_write_config_dword EXPORT_SYMBOL vmlinux 0x30e74134 tty_termios_copy_hw -EXPORT_SYMBOL vmlinux 0x30e75488 ata_dev_printk -EXPORT_SYMBOL vmlinux 0x30f16cf3 input_mt_report_slot_state -EXPORT_SYMBOL vmlinux 0x30fbf1ff agp_bind_memory EXPORT_SYMBOL vmlinux 0x3100cff9 lockref_get_or_lock EXPORT_SYMBOL vmlinux 0x3102d70b frontswap_curr_pages -EXPORT_SYMBOL vmlinux 0x3113114e param_ops_long -EXPORT_SYMBOL vmlinux 0x311cb263 pskb_trim_rcsum_slow +EXPORT_SYMBOL vmlinux 0x31085754 nf_ip_checksum +EXPORT_SYMBOL vmlinux 0x311a89e3 crypto_sha1_finup +EXPORT_SYMBOL vmlinux 0x311be8de seq_escape EXPORT_SYMBOL vmlinux 0x3126a9e8 siphash_1u64 -EXPORT_SYMBOL vmlinux 0x312a446b zero_fill_bio -EXPORT_SYMBOL vmlinux 0x312fd833 vlan_vid_add -EXPORT_SYMBOL vmlinux 0x3130edb6 mmc_hw_reset -EXPORT_SYMBOL vmlinux 0x3133e7a7 dma_sync_sg_for_cpu -EXPORT_SYMBOL vmlinux 0x31417080 xfrm_policy_walk_done -EXPORT_SYMBOL vmlinux 0x315141b8 tty_port_tty_set +EXPORT_SYMBOL vmlinux 0x31411e5e agp_generic_enable +EXPORT_SYMBOL vmlinux 0x314b130b dquot_get_state EXPORT_SYMBOL vmlinux 0x31549b2a __x86_indirect_thunk_r10 -EXPORT_SYMBOL vmlinux 0x31729ec5 fput -EXPORT_SYMBOL vmlinux 0x318a6a8c sk_stream_kill_queues +EXPORT_SYMBOL vmlinux 0x3159b32c dst_dev_put +EXPORT_SYMBOL vmlinux 0x31635d6a jbd2_journal_ack_err +EXPORT_SYMBOL vmlinux 0x3164c5e5 nd_btt_probe +EXPORT_SYMBOL vmlinux 0x3199259e follow_up EXPORT_SYMBOL vmlinux 0x319d493d proc_dostring -EXPORT_SYMBOL vmlinux 0x31a25f2d iommu_get_dma_cookie -EXPORT_SYMBOL vmlinux 0x31a54b71 i2c_verify_client -EXPORT_SYMBOL vmlinux 0x31d7c709 nexthop_set_hw_flags -EXPORT_SYMBOL vmlinux 0x31dde6f0 __netdev_notify_peers -EXPORT_SYMBOL vmlinux 0x31f47ebf tcp_add_backlog -EXPORT_SYMBOL vmlinux 0x32039c5f __put_page +EXPORT_SYMBOL vmlinux 0x31c6e7ac dquot_resume +EXPORT_SYMBOL vmlinux 0x31c8e3ce security_sb_set_mnt_opts +EXPORT_SYMBOL vmlinux 0x31d18630 xfrm_policy_bysel_ctx +EXPORT_SYMBOL vmlinux 0x31d79f25 security_inode_getsecctx +EXPORT_SYMBOL vmlinux 0x31f4f895 mpage_writepages +EXPORT_SYMBOL vmlinux 0x31ff198e inet_csk_reqsk_queue_drop_and_put EXPORT_SYMBOL vmlinux 0x3213f038 mutex_unlock -EXPORT_SYMBOL vmlinux 0x3226c408 phy_ethtool_get_wol -EXPORT_SYMBOL vmlinux 0x322e30b0 nosteal_pipe_buf_ops -EXPORT_SYMBOL vmlinux 0x3257641c block_invalidatepage -EXPORT_SYMBOL vmlinux 0x325ad2e1 dm_kcopyd_zero -EXPORT_SYMBOL vmlinux 0x325e81c9 jbd2_journal_unlock_updates +EXPORT_SYMBOL vmlinux 0x321d74c5 __ClearPageMovable +EXPORT_SYMBOL vmlinux 0x323bb9d7 mmc_can_gpio_ro +EXPORT_SYMBOL vmlinux 0x32462aae ptp_find_pin +EXPORT_SYMBOL vmlinux 0x32573c0f ps2_cmd_aborted EXPORT_SYMBOL vmlinux 0x326425ca pci_unmap_biosrom -EXPORT_SYMBOL vmlinux 0x3266de15 io_uring_get_socket -EXPORT_SYMBOL vmlinux 0x32672742 phy_support_asym_pause -EXPORT_SYMBOL vmlinux 0x326b4084 __hw_addr_ref_unsync_dev +EXPORT_SYMBOL vmlinux 0x32759f3d d_path EXPORT_SYMBOL vmlinux 0x327c84bf vme_lm_attach +EXPORT_SYMBOL vmlinux 0x32816367 tcf_exts_terse_dump EXPORT_SYMBOL vmlinux 0x3283e6b0 prandom_seed_full_state -EXPORT_SYMBOL vmlinux 0x3283e6f0 device_match_acpi_dev -EXPORT_SYMBOL vmlinux 0x32bcf629 param_set_uint +EXPORT_SYMBOL vmlinux 0x32a432d2 mmc_release_host +EXPORT_SYMBOL vmlinux 0x32a70a60 page_pool_return_skb_page +EXPORT_SYMBOL vmlinux 0x32c35a94 __inc_node_page_state EXPORT_SYMBOL vmlinux 0x32ce3777 radix_tree_preload -EXPORT_SYMBOL vmlinux 0x32d0892f inet_proto_csum_replace4 -EXPORT_SYMBOL vmlinux 0x32d65a13 tcp_ioctl +EXPORT_SYMBOL vmlinux 0x32cecab2 jbd2__journal_start +EXPORT_SYMBOL vmlinux 0x32e477e3 rtnl_link_get_net EXPORT_SYMBOL vmlinux 0x32e6f1a0 acpi_video_backlight_string -EXPORT_SYMBOL vmlinux 0x32e8e052 nf_ct_get_tuple_skb -EXPORT_SYMBOL vmlinux 0x32f866b9 __SCK__tp_func_dma_fence_enable_signal +EXPORT_SYMBOL vmlinux 0x32ee76f2 pnp_stop_dev +EXPORT_SYMBOL vmlinux 0x33036802 neigh_lookup +EXPORT_SYMBOL vmlinux 0x330c037c mntput +EXPORT_SYMBOL vmlinux 0x33154daa dma_find_channel +EXPORT_SYMBOL vmlinux 0x33162851 ip_fraglist_prepare EXPORT_SYMBOL vmlinux 0x3324ef3b acpi_set_firmware_waking_vector -EXPORT_SYMBOL vmlinux 0x33350a0e add_watch_to_object -EXPORT_SYMBOL vmlinux 0x33360e44 cros_ec_get_next_event -EXPORT_SYMBOL vmlinux 0x33547840 __skb_try_recv_datagram +EXPORT_SYMBOL vmlinux 0x33277a6d xfrm_input_resume +EXPORT_SYMBOL vmlinux 0x332bb7a8 configfs_register_default_group +EXPORT_SYMBOL vmlinux 0x33353723 security_locked_down +EXPORT_SYMBOL vmlinux 0x33550739 __find_get_block +EXPORT_SYMBOL vmlinux 0x33568d7b param_ops_ushort +EXPORT_SYMBOL vmlinux 0x335cd955 vme_register_error_handler +EXPORT_SYMBOL vmlinux 0x33659451 tty_schedule_flip EXPORT_SYMBOL vmlinux 0x33736a1d __genradix_ptr_alloc -EXPORT_SYMBOL vmlinux 0x33ab3536 sock_bind_add -EXPORT_SYMBOL vmlinux 0x33ad9ec4 devm_clk_release_clkdev -EXPORT_SYMBOL vmlinux 0x33b03868 __tracepoint_dma_fence_emit -EXPORT_SYMBOL vmlinux 0x33b13e04 jbd2_journal_forget +EXPORT_SYMBOL vmlinux 0x3375e52e blk_mq_tag_to_rq +EXPORT_SYMBOL vmlinux 0x337afd21 d_instantiate_new +EXPORT_SYMBOL vmlinux 0x3386c180 blk_dump_rq_flags +EXPORT_SYMBOL vmlinux 0x3390f761 nobh_truncate_page +EXPORT_SYMBOL vmlinux 0x3391ecd2 netif_rx_any_context +EXPORT_SYMBOL vmlinux 0x33a9c44a from_kprojid_munged EXPORT_SYMBOL vmlinux 0x33b84f74 copy_page -EXPORT_SYMBOL vmlinux 0x33c2d578 set_pages_array_uc -EXPORT_SYMBOL vmlinux 0x33ded1f2 nexthop_res_grp_activity_update +EXPORT_SYMBOL vmlinux 0x33c8dfae nf_ct_get_tuple_skb +EXPORT_SYMBOL vmlinux 0x33d93949 component_match_add_typed EXPORT_SYMBOL vmlinux 0x33f0768c cpufreq_quick_get_max EXPORT_SYMBOL vmlinux 0x33fc2a31 get_user_ifreq EXPORT_SYMBOL vmlinux 0x33fcf44a __kfifo_out_r EXPORT_SYMBOL vmlinux 0x33fd9da4 acpi_get_gpe_device -EXPORT_SYMBOL vmlinux 0x3410e175 xen_alloc_unpopulated_pages -EXPORT_SYMBOL vmlinux 0x341f70a6 mmc_of_parse_voltage -EXPORT_SYMBOL vmlinux 0x342055e3 hdmi_infoframe_log +EXPORT_SYMBOL vmlinux 0x3415fe08 pcie_capability_write_dword +EXPORT_SYMBOL vmlinux 0x3423f397 sock_no_sendmsg EXPORT_SYMBOL vmlinux 0x3424daf8 __traceiter_dma_fence_enable_signal -EXPORT_SYMBOL vmlinux 0x342b3082 insert_inode_locked4 +EXPORT_SYMBOL vmlinux 0x3426abb2 blk_queue_split EXPORT_SYMBOL vmlinux 0x3441445f msrs_free -EXPORT_SYMBOL vmlinux 0x3451f932 default_llseek -EXPORT_SYMBOL vmlinux 0x3454fa7c __mmap_lock_do_trace_released -EXPORT_SYMBOL vmlinux 0x345a09b0 rproc_elf_get_boot_addr -EXPORT_SYMBOL vmlinux 0x346115af prepare_to_swait_event -EXPORT_SYMBOL vmlinux 0x347572ca register_netdevice_notifier_dev_net -EXPORT_SYMBOL vmlinux 0x34775772 ps2_begin_command -EXPORT_SYMBOL vmlinux 0x347a3102 __module_put_and_exit -EXPORT_SYMBOL vmlinux 0x3483213a devfreq_add_device -EXPORT_SYMBOL vmlinux 0x3483e892 netdev_port_same_parent_id +EXPORT_SYMBOL vmlinux 0x34491d99 xsk_tx_peek_release_desc_batch +EXPORT_SYMBOL vmlinux 0x3456e428 nf_unregister_net_hooks +EXPORT_SYMBOL vmlinux 0x346bbbb6 bdev_dax_pgoff +EXPORT_SYMBOL vmlinux 0x347203ce write_one_page EXPORT_SYMBOL vmlinux 0x3489859f acpi_enter_sleep_state_s4bios +EXPORT_SYMBOL vmlinux 0x34928690 skb_flow_dissect_ct +EXPORT_SYMBOL vmlinux 0x3493c00a pnp_possible_config +EXPORT_SYMBOL vmlinux 0x349aed3d mmc_gpio_set_cd_wake EXPORT_SYMBOL vmlinux 0x349cba85 strchr EXPORT_SYMBOL vmlinux 0x34a1f7e3 acpi_processor_get_psd +EXPORT_SYMBOL vmlinux 0x34b4b80b poll_freewait EXPORT_SYMBOL vmlinux 0x34c7cdbc lookup_bdev EXPORT_SYMBOL vmlinux 0x34db050b _raw_spin_lock_irqsave +EXPORT_SYMBOL vmlinux 0x34dd40f9 console_start +EXPORT_SYMBOL vmlinux 0x34ee2f20 dm_table_event EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue +EXPORT_SYMBOL vmlinux 0x34f6058f max8925_reg_read EXPORT_SYMBOL vmlinux 0x34f89363 acpi_terminate_debugger -EXPORT_SYMBOL vmlinux 0x34ff4a2d genl_unregister_family -EXPORT_SYMBOL vmlinux 0x3502dded __SCK__tp_func_kfree -EXPORT_SYMBOL vmlinux 0x3505edfb mipi_dsi_host_unregister -EXPORT_SYMBOL vmlinux 0x350d5b06 mdiobus_write +EXPORT_SYMBOL vmlinux 0x35045ebc unregister_shrinker EXPORT_SYMBOL vmlinux 0x350ea558 dma_fence_default_wait EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier +EXPORT_SYMBOL vmlinux 0x351f5c35 netlink_capable EXPORT_SYMBOL vmlinux 0x3539f11b match_strlcpy -EXPORT_SYMBOL vmlinux 0x353a6dd4 arch_debugfs_dir +EXPORT_SYMBOL vmlinux 0x353a9e43 flow_rule_match_enc_control +EXPORT_SYMBOL vmlinux 0x353e4c33 dev_get_by_index_rcu EXPORT_SYMBOL vmlinux 0x354b4a1e acpi_ut_trace -EXPORT_SYMBOL vmlinux 0x354d0dde km_policy_expired -EXPORT_SYMBOL vmlinux 0x3550583b page_symlink EXPORT_SYMBOL vmlinux 0x356461c8 rtc_time64_to_tm -EXPORT_SYMBOL vmlinux 0x356e2453 kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0x35788f7c pcix_get_max_mmrbc -EXPORT_SYMBOL vmlinux 0x35a0e68f tcp_v4_send_check +EXPORT_SYMBOL vmlinux 0x35654ca9 scsi_device_put +EXPORT_SYMBOL vmlinux 0x356dabc2 bio_chain +EXPORT_SYMBOL vmlinux 0x3595c0c1 blk_set_queue_depth EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 -EXPORT_SYMBOL vmlinux 0x35b35bb5 napi_enable -EXPORT_SYMBOL vmlinux 0x35c7db4c dqput -EXPORT_SYMBOL vmlinux 0x35f4bbae phy_trigger_machine -EXPORT_SYMBOL vmlinux 0x35fdd93f security_sb_set_mnt_opts +EXPORT_SYMBOL vmlinux 0x35c9fabd tcp_v4_connect +EXPORT_SYMBOL vmlinux 0x35d146f1 __SCK__tp_func_write_msr +EXPORT_SYMBOL vmlinux 0x35e097d9 __netif_schedule +EXPORT_SYMBOL vmlinux 0x35e17b35 param_ops_bint +EXPORT_SYMBOL vmlinux 0x35e5f777 phy_stop +EXPORT_SYMBOL vmlinux 0x35ef797d neigh_table_init +EXPORT_SYMBOL vmlinux 0x35fbb423 path_get +EXPORT_SYMBOL vmlinux 0x3603054d qdisc_tree_reduce_backlog +EXPORT_SYMBOL vmlinux 0x36064197 loop_register_transfer EXPORT_SYMBOL vmlinux 0x360b1afe probe_irq_mask -EXPORT_SYMBOL vmlinux 0x360f51d8 phy_ethtool_get_link_ksettings -EXPORT_SYMBOL vmlinux 0x361e9d45 nf_unregister_net_hooks -EXPORT_SYMBOL vmlinux 0x362f77b4 __tracepoint_mmap_lock_acquire_returned -EXPORT_SYMBOL vmlinux 0x3632d0f1 md_reload_sb -EXPORT_SYMBOL vmlinux 0x3634ce55 udp6_set_csum -EXPORT_SYMBOL vmlinux 0x3640391d md_unregister_thread +EXPORT_SYMBOL vmlinux 0x36119c27 scsi_block_when_processing_errors +EXPORT_SYMBOL vmlinux 0x3620a99c mipi_dsi_driver_unregister +EXPORT_SYMBOL vmlinux 0x36320301 sock_alloc_send_skb +EXPORT_SYMBOL vmlinux 0x3637c312 ata_std_end_eh EXPORT_SYMBOL vmlinux 0x364850b1 down_write_killable EXPORT_SYMBOL vmlinux 0x364c23ad mutex_is_locked -EXPORT_SYMBOL vmlinux 0x364d0eab vfs_create EXPORT_SYMBOL vmlinux 0x365acda7 set_normalized_timespec64 EXPORT_SYMBOL vmlinux 0x365e7911 kstrdup_const -EXPORT_SYMBOL vmlinux 0x3662d119 devm_pci_alloc_host_bridge -EXPORT_SYMBOL vmlinux 0x3663a8f7 skb_copy -EXPORT_SYMBOL vmlinux 0x367f1e70 acpi_dev_hid_uid_match -EXPORT_SYMBOL vmlinux 0x368c8964 nf_unregister_sockopt -EXPORT_SYMBOL vmlinux 0x3690268d vfs_get_fsid -EXPORT_SYMBOL vmlinux 0x3696b0c6 trace_raw_output_prep +EXPORT_SYMBOL vmlinux 0x3668c082 agp_generic_alloc_by_type +EXPORT_SYMBOL vmlinux 0x366b4380 param_ops_string +EXPORT_SYMBOL vmlinux 0x366c5036 __check_sticky +EXPORT_SYMBOL vmlinux 0x3676ead9 max8998_update_reg +EXPORT_SYMBOL vmlinux 0x36917e04 fscrypt_decrypt_pagecache_blocks +EXPORT_SYMBOL vmlinux 0x36956194 mmc_of_parse_clk_phase +EXPORT_SYMBOL vmlinux 0x36973b96 fscrypt_fname_disk_to_usr +EXPORT_SYMBOL vmlinux 0x36a720bc lease_get_mtime +EXPORT_SYMBOL vmlinux 0x36b08000 agp_unbind_memory EXPORT_SYMBOL vmlinux 0x36b6ebbf down_killable -EXPORT_SYMBOL vmlinux 0x36da91ea __alloc_disk_node -EXPORT_SYMBOL vmlinux 0x36fef4bd block_write_full_page -EXPORT_SYMBOL vmlinux 0x370858b7 mount_nodev -EXPORT_SYMBOL vmlinux 0x370e7a2e netdev_get_xmit_slave +EXPORT_SYMBOL vmlinux 0x36c369af acpi_bus_unregister_driver +EXPORT_SYMBOL vmlinux 0x36ce719a devm_ioremap +EXPORT_SYMBOL vmlinux 0x36f3a5df inet_listen +EXPORT_SYMBOL vmlinux 0x36fafde5 __breadahead_gfp +EXPORT_SYMBOL vmlinux 0x370bf69e seg6_hmac_net_exit EXPORT_SYMBOL vmlinux 0x37110088 remove_wait_queue -EXPORT_SYMBOL vmlinux 0x37272c9a dump_page +EXPORT_SYMBOL vmlinux 0x3715c46b pci_scan_slot +EXPORT_SYMBOL vmlinux 0x37285a83 skb_dump +EXPORT_SYMBOL vmlinux 0x372f3c1d wake_up_process +EXPORT_SYMBOL vmlinux 0x3733c2b0 netlink_set_err +EXPORT_SYMBOL vmlinux 0x3737830d mdio_device_reset EXPORT_SYMBOL vmlinux 0x3737d9a9 ZSTD_DStreamWorkspaceBound EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn -EXPORT_SYMBOL vmlinux 0x3751a6c6 seq_vprintf -EXPORT_SYMBOL vmlinux 0x3754b699 jbd2_journal_submit_inode_data_buffers EXPORT_SYMBOL vmlinux 0x3755f990 gf128mul_init_64k_bbe -EXPORT_SYMBOL vmlinux 0x37692e44 ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0x375ec0b0 sg_miter_stop +EXPORT_SYMBOL vmlinux 0x376b6bff flow_rule_match_eth_addrs EXPORT_SYMBOL vmlinux 0x37746fde ZSTD_initDStream +EXPORT_SYMBOL vmlinux 0x37751c19 jbd2_journal_release_jbd_inode +EXPORT_SYMBOL vmlinux 0x3779cfdc proc_create_seq_private +EXPORT_SYMBOL vmlinux 0x377baada in_dev_finish_destroy EXPORT_SYMBOL vmlinux 0x377d8004 acpi_error -EXPORT_SYMBOL vmlinux 0x377fa36b skb_push -EXPORT_SYMBOL vmlinux 0x379fdb42 __d_lookup_done +EXPORT_SYMBOL vmlinux 0x37a2e20f uart_get_divisor EXPORT_SYMBOL vmlinux 0x37b8b39e screen_info EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs -EXPORT_SYMBOL vmlinux 0x37dacb7e agp_find_bridge EXPORT_SYMBOL vmlinux 0x37db8f19 dmi_get_date -EXPORT_SYMBOL vmlinux 0x37dddb6f vfs_setpos -EXPORT_SYMBOL vmlinux 0x37e825c5 ip_setsockopt -EXPORT_SYMBOL vmlinux 0x37f3dd17 timestamp_truncate -EXPORT_SYMBOL vmlinux 0x3808103e security_socket_socketpair +EXPORT_SYMBOL vmlinux 0x37e71815 blk_queue_dma_alignment +EXPORT_SYMBOL vmlinux 0x37edc444 simple_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0x37fd26e9 make_kuid +EXPORT_SYMBOL vmlinux 0x38097497 devm_rproc_add +EXPORT_SYMBOL vmlinux 0x3812e014 vfs_parse_fs_string EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus -EXPORT_SYMBOL vmlinux 0x381fad16 mount_single -EXPORT_SYMBOL vmlinux 0x38223742 kthread_create_worker -EXPORT_SYMBOL vmlinux 0x38400b52 key_invalidate -EXPORT_SYMBOL vmlinux 0x384bb4a7 alloc_netdev_mqs +EXPORT_SYMBOL vmlinux 0x381da148 writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0x383789a6 netlink_ns_capable +EXPORT_SYMBOL vmlinux 0x383eb392 pm860x_bulk_read +EXPORT_SYMBOL vmlinux 0x38456707 pci_unregister_driver EXPORT_SYMBOL vmlinux 0x3854774b kstrtoll -EXPORT_SYMBOL vmlinux 0x387b26ab tc_setup_cb_destroy -EXPORT_SYMBOL vmlinux 0x387d5a4e in6_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x388372af register_quota_format 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 0x38945e27 file_ns_capable EXPORT_SYMBOL vmlinux 0x389617b0 LZ4_decompress_fast_continue +EXPORT_SYMBOL vmlinux 0x38a1d493 bdi_put EXPORT_SYMBOL vmlinux 0x38a71b7e pci_free_resource_list EXPORT_SYMBOL vmlinux 0x38a9f7c5 in6addr_loopback -EXPORT_SYMBOL vmlinux 0x38c0876b iptun_encaps -EXPORT_SYMBOL vmlinux 0x38c548dc key_reject_and_link -EXPORT_SYMBOL vmlinux 0x38c955fa flow_rule_match_enc_keyid -EXPORT_SYMBOL vmlinux 0x38e2f7f7 proto_register +EXPORT_SYMBOL vmlinux 0x38ac71ea cros_ec_get_host_event +EXPORT_SYMBOL vmlinux 0x38b8866f pci_iomap +EXPORT_SYMBOL vmlinux 0x38b8de24 devm_clk_put +EXPORT_SYMBOL vmlinux 0x38cc32b8 inet_release +EXPORT_SYMBOL vmlinux 0x38d30a82 ilookup5 +EXPORT_SYMBOL vmlinux 0x38e25ab1 get_tree_bdev EXPORT_SYMBOL vmlinux 0x38e46431 mempool_exit +EXPORT_SYMBOL vmlinux 0x38eb342a md_integrity_register +EXPORT_SYMBOL vmlinux 0x38ee6b4f blk_rq_unmap_user +EXPORT_SYMBOL vmlinux 0x38f08f3b skb_trim EXPORT_SYMBOL vmlinux 0x38f48af7 put_user_ifreq +EXPORT_SYMBOL vmlinux 0x38f97b16 make_kprojid EXPORT_SYMBOL vmlinux 0x39081193 __max_logical_packages -EXPORT_SYMBOL vmlinux 0x390887f5 __skb_get_hash +EXPORT_SYMBOL vmlinux 0x39150db7 ata_print_version +EXPORT_SYMBOL vmlinux 0x3921ee3d mark_buffer_dirty_inode +EXPORT_SYMBOL vmlinux 0x39276e6e kmem_cache_create_usercopy EXPORT_SYMBOL vmlinux 0x392b1fea wait_for_completion_io -EXPORT_SYMBOL vmlinux 0x39305b8f set_user_nice EXPORT_SYMBOL vmlinux 0x3939f8f0 rfkill_pause_polling EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p -EXPORT_SYMBOL vmlinux 0x3949487a tty_chars_in_buffer +EXPORT_SYMBOL vmlinux 0x3946fdda tty_port_tty_get EXPORT_SYMBOL vmlinux 0x394a1e11 phy_sfp_attach EXPORT_SYMBOL vmlinux 0x3955fcf6 __kfifo_in_r -EXPORT_SYMBOL vmlinux 0x398b8272 param_set_invbool +EXPORT_SYMBOL vmlinux 0x3980d9f2 eisa_bus_type +EXPORT_SYMBOL vmlinux 0x39884e19 ata_link_printk EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow EXPORT_SYMBOL vmlinux 0x399ad043 __kfifo_dma_out_finish_r +EXPORT_SYMBOL vmlinux 0x39a0c8d6 __pagevec_release EXPORT_SYMBOL vmlinux 0x39b52d19 __bitmap_and -EXPORT_SYMBOL vmlinux 0x39b55bcc blk_mq_stop_hw_queues -EXPORT_SYMBOL vmlinux 0x39b918b5 dst_alloc -EXPORT_SYMBOL vmlinux 0x39ba5c12 dquot_operations -EXPORT_SYMBOL vmlinux 0x39bc5ff4 validate_slab_cache -EXPORT_SYMBOL vmlinux 0x39c1f4d6 tty_unthrottle -EXPORT_SYMBOL vmlinux 0x39c9121d vme_master_request -EXPORT_SYMBOL vmlinux 0x39cb4282 t10_pi_type1_ip +EXPORT_SYMBOL vmlinux 0x39c73e7c max8925_bulk_read +EXPORT_SYMBOL vmlinux 0x39e0561f try_to_free_buffers EXPORT_SYMBOL vmlinux 0x39e3c030 do_trace_read_msr +EXPORT_SYMBOL vmlinux 0x39e7fa90 insert_inode_locked4 +EXPORT_SYMBOL vmlinux 0x39fd098d buffer_check_dirty_writeback +EXPORT_SYMBOL vmlinux 0x3a034e36 tty_unregister_device EXPORT_SYMBOL vmlinux 0x3a08475f platform_thermal_notify EXPORT_SYMBOL vmlinux 0x3a099605 __get_user_nocheck_4 EXPORT_SYMBOL vmlinux 0x3a13f54a sgl_alloc -EXPORT_SYMBOL vmlinux 0x3a2099af twl6040_get_sysclk +EXPORT_SYMBOL vmlinux 0x3a1a69b3 param_set_ullong EXPORT_SYMBOL vmlinux 0x3a2d1dfa rdmsr_safe_regs_on_cpu EXPORT_SYMBOL vmlinux 0x3a2f6702 sg_alloc_table -EXPORT_SYMBOL vmlinux 0x3a301827 md_bitmap_close_sync EXPORT_SYMBOL vmlinux 0x3a32839e intel_gtt_chipset_flush -EXPORT_SYMBOL vmlinux 0x3a350548 param_get_long -EXPORT_SYMBOL vmlinux 0x3a4ba32e get_ipc_ns_exported +EXPORT_SYMBOL vmlinux 0x3a3d4980 ip_defrag +EXPORT_SYMBOL vmlinux 0x3a4cc797 free_cgroup_ns EXPORT_SYMBOL vmlinux 0x3a4f9d28 rng_is_initialized -EXPORT_SYMBOL vmlinux 0x3a5e0a79 tcp_poll -EXPORT_SYMBOL vmlinux 0x3a8e10c1 jbd2_journal_set_triggers -EXPORT_SYMBOL vmlinux 0x3a9156cb pipe_unlock +EXPORT_SYMBOL vmlinux 0x3a51139f __sk_backlog_rcv +EXPORT_SYMBOL vmlinux 0x3a698b1e dquot_disable +EXPORT_SYMBOL vmlinux 0x3a97f4e9 tcf_qevent_validate_change +EXPORT_SYMBOL vmlinux 0x3aa2c428 vmf_insert_mixed_prot +EXPORT_SYMBOL vmlinux 0x3aa76eca vfs_create_mount EXPORT_SYMBOL vmlinux 0x3ab7b1cc scsi_set_sense_field_pointer +EXPORT_SYMBOL vmlinux 0x3ac9d88c netdev_warn EXPORT_SYMBOL vmlinux 0x3aca0190 _raw_write_lock_irq -EXPORT_SYMBOL vmlinux 0x3ad4a6ec jbd2_journal_force_commit EXPORT_SYMBOL vmlinux 0x3ad5cda3 lockref_get_not_zero -EXPORT_SYMBOL vmlinux 0x3ad6036a iov_iter_alignment -EXPORT_SYMBOL vmlinux 0x3ad79d24 inetdev_by_index EXPORT_SYMBOL vmlinux 0x3ad7a5d5 acpi_evaluate_reference -EXPORT_SYMBOL vmlinux 0x3ad8c0f0 kmem_cache_alloc_bulk +EXPORT_SYMBOL vmlinux 0x3ad9d70f __mod_zone_page_state EXPORT_SYMBOL vmlinux 0x3ada9e06 acpi_check_region -EXPORT_SYMBOL vmlinux 0x3af260d2 wireless_spy_update +EXPORT_SYMBOL vmlinux 0x3ae1c269 nf_register_net_hook +EXPORT_SYMBOL vmlinux 0x3aeff1b6 __traceiter_spi_transfer_stop EXPORT_SYMBOL vmlinux 0x3aff3200 acpi_evaluate_object_typed EXPORT_SYMBOL vmlinux 0x3b029f48 acpi_install_fixed_event_handler -EXPORT_SYMBOL vmlinux 0x3b1d56ee misc_register +EXPORT_SYMBOL vmlinux 0x3b04292c i2c_smbus_read_i2c_block_data +EXPORT_SYMBOL vmlinux 0x3b1630f1 udp_set_csum +EXPORT_SYMBOL vmlinux 0x3b1a4535 invalidate_mapping_pages +EXPORT_SYMBOL vmlinux 0x3b1eebe1 audit_log_start EXPORT_SYMBOL vmlinux 0x3b20fb95 dma_fence_remove_callback EXPORT_SYMBOL vmlinux 0x3b321462 LZ4_setStreamDecode -EXPORT_SYMBOL vmlinux 0x3b37a362 max8925_set_bits -EXPORT_SYMBOL vmlinux 0x3b4db775 filemap_invalidate_lock_two -EXPORT_SYMBOL vmlinux 0x3b50a723 sk_net_capable +EXPORT_SYMBOL vmlinux 0x3b482cec tty_port_raise_dtr_rts +EXPORT_SYMBOL vmlinux 0x3b50e95f seq_write +EXPORT_SYMBOL vmlinux 0x3b5a2eee nonseekable_open +EXPORT_SYMBOL vmlinux 0x3b5c61a7 jbd2_journal_submit_inode_data_buffers +EXPORT_SYMBOL vmlinux 0x3b63b7e9 xsk_tx_peek_desc EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left -EXPORT_SYMBOL vmlinux 0x3b683227 ethtool_op_get_ts_info EXPORT_SYMBOL vmlinux 0x3b6c41ea kstrtouint -EXPORT_SYMBOL vmlinux 0x3b731d3a netdev_refcnt_read EXPORT_SYMBOL vmlinux 0x3b83610f cpu_sibling_map -EXPORT_SYMBOL vmlinux 0x3b8f162b make_kgid EXPORT_SYMBOL vmlinux 0x3b9144c9 acpi_get_current_resources -EXPORT_SYMBOL vmlinux 0x3b9cc1b4 devfreq_update_target -EXPORT_SYMBOL vmlinux 0x3baf73f3 inode_init_owner -EXPORT_SYMBOL vmlinux 0x3bb98de1 phy_free_interrupt +EXPORT_SYMBOL vmlinux 0x3bab7ddd simple_transaction_set +EXPORT_SYMBOL vmlinux 0x3bbf4fc9 elv_rb_add +EXPORT_SYMBOL vmlinux 0x3bc28c74 dma_sync_single_for_device +EXPORT_SYMBOL vmlinux 0x3bd1fc28 hmm_range_fault EXPORT_SYMBOL vmlinux 0x3be7643e security_xfrm_policy_free -EXPORT_SYMBOL vmlinux 0x3bed9e09 inet_csk_reset_keepalive_timer -EXPORT_SYMBOL vmlinux 0x3c09a14b dma_unmap_resource -EXPORT_SYMBOL vmlinux 0x3c1699bb blk_cleanup_disk +EXPORT_SYMBOL vmlinux 0x3c09bb36 dquot_quota_off +EXPORT_SYMBOL vmlinux 0x3c0cc22b neigh_seq_start EXPORT_SYMBOL vmlinux 0x3c185c61 page_put_link -EXPORT_SYMBOL vmlinux 0x3c2367d4 ppp_channel_index -EXPORT_SYMBOL vmlinux 0x3c3202ae dquot_release -EXPORT_SYMBOL vmlinux 0x3c327871 cdev_init +EXPORT_SYMBOL vmlinux 0x3c2008aa phy_config_aneg EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip EXPORT_SYMBOL vmlinux 0x3c3ff9fd sprintf EXPORT_SYMBOL vmlinux 0x3c427f67 cpu_die_map -EXPORT_SYMBOL vmlinux 0x3c46bd1b vlan_filter_drop_vids -EXPORT_SYMBOL vmlinux 0x3c4bf994 configfs_depend_item_unlocked -EXPORT_SYMBOL vmlinux 0x3c4caa8a rproc_coredump_using_sections -EXPORT_SYMBOL vmlinux 0x3c63d69c nonseekable_open -EXPORT_SYMBOL vmlinux 0x3c768675 i2c_smbus_read_word_data -EXPORT_SYMBOL vmlinux 0x3c82940a blk_mq_run_hw_queue -EXPORT_SYMBOL vmlinux 0x3c87b223 seq_put_decimal_ll -EXPORT_SYMBOL vmlinux 0x3c8875c9 alloc_buffer_head -EXPORT_SYMBOL vmlinux 0x3cb65c24 tcf_get_next_chain -EXPORT_SYMBOL vmlinux 0x3cd08fdd phy_remove_link_mode -EXPORT_SYMBOL vmlinux 0x3cdcbf57 pci_get_slot -EXPORT_SYMBOL vmlinux 0x3ce267e0 clk_hw_get_clk +EXPORT_SYMBOL vmlinux 0x3c606a3b km_query +EXPORT_SYMBOL vmlinux 0x3c61d4d8 inet_csk_reqsk_queue_drop +EXPORT_SYMBOL vmlinux 0x3c76c085 in6_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x3c7ef1a7 blk_rq_count_integrity_sg +EXPORT_SYMBOL vmlinux 0x3c998ca7 netdev_state_change +EXPORT_SYMBOL vmlinux 0x3ca12c97 cdrom_number_of_slots +EXPORT_SYMBOL vmlinux 0x3cc9836e neigh_changeaddr +EXPORT_SYMBOL vmlinux 0x3cd24d00 sk_send_sigurg +EXPORT_SYMBOL vmlinux 0x3cd6a6d7 super_setup_bdi_name +EXPORT_SYMBOL vmlinux 0x3cd739be dquot_file_open EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq -EXPORT_SYMBOL vmlinux 0x3ce732ca amd_iommu_complete_ppr -EXPORT_SYMBOL vmlinux 0x3cfa1b2b skb_ensure_writable -EXPORT_SYMBOL vmlinux 0x3d024c0e dquot_claim_space_nodirty +EXPORT_SYMBOL vmlinux 0x3cead61f pm860x_reg_read +EXPORT_SYMBOL vmlinux 0x3cf1f5f7 dm_io +EXPORT_SYMBOL vmlinux 0x3cf5c42b jbd2_journal_revoke EXPORT_SYMBOL vmlinux 0x3d02cd70 dma_fence_signal_locked -EXPORT_SYMBOL vmlinux 0x3d08edd7 __cgroup_bpf_run_filter_skb -EXPORT_SYMBOL vmlinux 0x3d1c9d3d mr_mfc_seq_idx +EXPORT_SYMBOL vmlinux 0x3d039c8e security_path_rename +EXPORT_SYMBOL vmlinux 0x3d0c313d clear_inode EXPORT_SYMBOL vmlinux 0x3d210724 gen_pool_dma_zalloc_align -EXPORT_SYMBOL vmlinux 0x3d2689e2 security_inode_copy_up -EXPORT_SYMBOL vmlinux 0x3d3bdd71 i2c_verify_adapter -EXPORT_SYMBOL vmlinux 0x3d4b736e genphy_soft_reset +EXPORT_SYMBOL vmlinux 0x3d299b48 ether_setup +EXPORT_SYMBOL vmlinux 0x3d366ed9 scsi_add_host_with_dma +EXPORT_SYMBOL vmlinux 0x3d3a4b9a pci_alloc_dev +EXPORT_SYMBOL vmlinux 0x3d3f011f scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x3d45db94 agp_generic_mask_memory +EXPORT_SYMBOL vmlinux 0x3d53c2e1 netdev_notify_peers EXPORT_SYMBOL vmlinux 0x3d56e7b3 utf8_unload -EXPORT_SYMBOL vmlinux 0x3d590062 input_close_device -EXPORT_SYMBOL vmlinux 0x3d5a7f46 param_set_int -EXPORT_SYMBOL vmlinux 0x3d708fcc pci_enable_msix_range -EXPORT_SYMBOL vmlinux 0x3d8e4bcb reuseport_detach_sock -EXPORT_SYMBOL vmlinux 0x3d9227ba ptp_cancel_worker_sync -EXPORT_SYMBOL vmlinux 0x3d9930e9 __alloc_skb +EXPORT_SYMBOL vmlinux 0x3d5a2d4d seq_put_decimal_ull +EXPORT_SYMBOL vmlinux 0x3d6040a3 sk_wait_data +EXPORT_SYMBOL vmlinux 0x3d646cd0 tcf_exts_num_actions +EXPORT_SYMBOL vmlinux 0x3d674209 fscrypt_free_inode +EXPORT_SYMBOL vmlinux 0x3d75026d backlight_device_register +EXPORT_SYMBOL vmlinux 0x3d76791b vc_resize +EXPORT_SYMBOL vmlinux 0x3d7e2f4a pci_clear_mwi +EXPORT_SYMBOL vmlinux 0x3d92f5ee md_bitmap_sync_with_cluster +EXPORT_SYMBOL vmlinux 0x3d9d537f inet6_unregister_protosw +EXPORT_SYMBOL vmlinux 0x3d9e418c __bread_gfp +EXPORT_SYMBOL vmlinux 0x3d9ef63c security_socket_getpeersec_dgram EXPORT_SYMBOL vmlinux 0x3da171f9 pci_mem_start EXPORT_SYMBOL vmlinux 0x3dabf271 memcg_sockets_enabled_key EXPORT_SYMBOL vmlinux 0x3dac779a bpf_sk_lookup_enabled -EXPORT_SYMBOL vmlinux 0x3dad2b10 vme_init_bridge EXPORT_SYMBOL vmlinux 0x3dad9978 cancel_delayed_work +EXPORT_SYMBOL vmlinux 0x3dbe48fb blk_integrity_register EXPORT_SYMBOL vmlinux 0x3dc619d3 swake_up_locked -EXPORT_SYMBOL vmlinux 0x3dc8e1e9 blk_queue_split EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data -EXPORT_SYMBOL vmlinux 0x3dd23362 pci_select_bars +EXPORT_SYMBOL vmlinux 0x3dce4c3e has_capability +EXPORT_SYMBOL vmlinux 0x3dd2e7ea pci_set_mwi +EXPORT_SYMBOL vmlinux 0x3dd330bf d_delete EXPORT_SYMBOL vmlinux 0x3dd9b230 proc_dointvec_userhz_jiffies EXPORT_SYMBOL vmlinux 0x3ddc6c04 x86_bios_cpu_apicid +EXPORT_SYMBOL vmlinux 0x3ddd9e2d __skb_vlan_pop +EXPORT_SYMBOL vmlinux 0x3de8ac6b dev_uc_del +EXPORT_SYMBOL vmlinux 0x3deae395 irq_domain_set_info +EXPORT_SYMBOL vmlinux 0x3df403af dm_register_target +EXPORT_SYMBOL vmlinux 0x3df856a9 alloc_fddidev EXPORT_SYMBOL vmlinux 0x3dfb86b9 resource_list_create_entry EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head -EXPORT_SYMBOL vmlinux 0x3dfdb081 phy_loopback -EXPORT_SYMBOL vmlinux 0x3e05ad68 dev_change_carrier -EXPORT_SYMBOL vmlinux 0x3e15f9db do_SAK +EXPORT_SYMBOL vmlinux 0x3e2a61c1 phy_print_status +EXPORT_SYMBOL vmlinux 0x3e2c4f03 param_get_short +EXPORT_SYMBOL vmlinux 0x3e3143c5 node_data EXPORT_SYMBOL vmlinux 0x3e3bad0a __tasklet_hi_schedule -EXPORT_SYMBOL vmlinux 0x3e3fb0e6 netpoll_send_skb -EXPORT_SYMBOL vmlinux 0x3e5326ee netdev_upper_dev_unlink -EXPORT_SYMBOL vmlinux 0x3e53c7ac __tracepoint_mmap_lock_released -EXPORT_SYMBOL vmlinux 0x3e582cd5 kernel_sock_ip_overhead -EXPORT_SYMBOL vmlinux 0x3e5b3b7a nf_reinject -EXPORT_SYMBOL vmlinux 0x3e67c9f8 nf_register_net_hook -EXPORT_SYMBOL vmlinux 0x3e6c2fab phy_stop -EXPORT_SYMBOL vmlinux 0x3e7946b7 task_work_add -EXPORT_SYMBOL vmlinux 0x3ea2c9fa balance_dirty_pages_ratelimited -EXPORT_SYMBOL vmlinux 0x3ed8d735 dev_mc_flush +EXPORT_SYMBOL vmlinux 0x3e3f069a page_symlink +EXPORT_SYMBOL vmlinux 0x3e5781d3 do_SAK +EXPORT_SYMBOL vmlinux 0x3e587b76 vfs_get_tree +EXPORT_SYMBOL vmlinux 0x3e5fde81 file_path +EXPORT_SYMBOL vmlinux 0x3e7290d2 simple_setattr +EXPORT_SYMBOL vmlinux 0x3e805d25 ipv6_chk_addr +EXPORT_SYMBOL vmlinux 0x3e981dea devm_ioremap_np +EXPORT_SYMBOL vmlinux 0x3eaf2577 ip6_route_me_harder +EXPORT_SYMBOL vmlinux 0x3ec4c831 write_cache_pages +EXPORT_SYMBOL vmlinux 0x3ed077cf pcix_set_mmrbc +EXPORT_SYMBOL vmlinux 0x3ee26e35 dev_change_carrier +EXPORT_SYMBOL vmlinux 0x3ee7db76 inet_put_port EXPORT_SYMBOL vmlinux 0x3eeb2322 __wake_up EXPORT_SYMBOL vmlinux 0x3efe1703 phy_unregister_fixup_for_id +EXPORT_SYMBOL vmlinux 0x3efe2376 simple_get_link EXPORT_SYMBOL vmlinux 0x3f0eabd2 xxh64_update -EXPORT_SYMBOL vmlinux 0x3f0fd71c iommu_dma_get_resv_regions -EXPORT_SYMBOL vmlinux 0x3f210bb0 fsync_bdev -EXPORT_SYMBOL vmlinux 0x3f219ca2 udp_seq_ops -EXPORT_SYMBOL vmlinux 0x3f351aa7 phy_start_cable_test -EXPORT_SYMBOL vmlinux 0x3f3e9cce mmc_gpio_get_cd +EXPORT_SYMBOL vmlinux 0x3f1e5841 shrink_dcache_sb +EXPORT_SYMBOL vmlinux 0x3f29ca7e skb_copy_bits +EXPORT_SYMBOL vmlinux 0x3f410c0f __skb_get_hash EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd +EXPORT_SYMBOL vmlinux 0x3f454dad pcim_iomap_regions EXPORT_SYMBOL vmlinux 0x3f4bd846 gen_pool_first_fit_order_align -EXPORT_SYMBOL vmlinux 0x3f4e505d input_free_device -EXPORT_SYMBOL vmlinux 0x3f551fd0 dmam_free_coherent EXPORT_SYMBOL vmlinux 0x3f89071b security_ib_pkey_access -EXPORT_SYMBOL vmlinux 0x3fa3e19e vlan_vids_add_by_dev -EXPORT_SYMBOL vmlinux 0x3fa668d4 i2c_smbus_write_byte EXPORT_SYMBOL vmlinux 0x3fbf3c89 vme_slave_set -EXPORT_SYMBOL vmlinux 0x3fc801aa seq_read_iter -EXPORT_SYMBOL vmlinux 0x3fcc6988 input_mt_report_pointer_emulation +EXPORT_SYMBOL vmlinux 0x3fcb3149 flow_rule_match_ipv4_addrs +EXPORT_SYMBOL vmlinux 0x3fd0192a tcp_v4_do_rcv EXPORT_SYMBOL vmlinux 0x3fd78f3b register_chrdev_region -EXPORT_SYMBOL vmlinux 0x3fe259e7 inet_csk_reqsk_queue_add +EXPORT_SYMBOL vmlinux 0x3fddb566 inet6_del_protocol EXPORT_SYMBOL vmlinux 0x3fe2ccbe memweight EXPORT_SYMBOL vmlinux 0x3fe8173f config_group_init_type_name -EXPORT_SYMBOL vmlinux 0x3ffc8306 vga_con -EXPORT_SYMBOL vmlinux 0x4000a56d mdio_bus_type -EXPORT_SYMBOL vmlinux 0x4009010f put_devmap_managed_page -EXPORT_SYMBOL vmlinux 0x4046ffcc mmc_can_gpio_ro -EXPORT_SYMBOL vmlinux 0x405582c9 xsk_set_rx_need_wakeup +EXPORT_SYMBOL vmlinux 0x3fea1b37 mipi_dsi_shutdown_peripheral +EXPORT_SYMBOL vmlinux 0x401c7fbe md_handle_request +EXPORT_SYMBOL vmlinux 0x4036de2a wireless_send_event +EXPORT_SYMBOL vmlinux 0x40479e68 wait_for_key_construction +EXPORT_SYMBOL vmlinux 0x404aa673 proc_set_size +EXPORT_SYMBOL vmlinux 0x404cd1aa dev_getfirstbyhwtype EXPORT_SYMBOL vmlinux 0x4055a920 acpi_remove_fixed_event_handler -EXPORT_SYMBOL vmlinux 0x40565763 __generic_file_write_iter -EXPORT_SYMBOL vmlinux 0x40822eaa seg6_hmac_validate_skb +EXPORT_SYMBOL vmlinux 0x405f0cb7 input_set_poll_interval +EXPORT_SYMBOL vmlinux 0x4067beb8 sk_capable +EXPORT_SYMBOL vmlinux 0x4079a63d mipi_dsi_dcs_set_tear_on +EXPORT_SYMBOL vmlinux 0x40824741 __module_get +EXPORT_SYMBOL vmlinux 0x408350d5 udp_flush_pending_frames +EXPORT_SYMBOL vmlinux 0x40858073 param_ops_ullong +EXPORT_SYMBOL vmlinux 0x408931f0 xfrm_input EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem EXPORT_SYMBOL vmlinux 0x409873e3 tty_termios_baud_rate EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc -EXPORT_SYMBOL vmlinux 0x40aafb78 tcp_getsockopt +EXPORT_SYMBOL vmlinux 0x40acd126 pcim_iounmap_regions EXPORT_SYMBOL vmlinux 0x40c7247c si_meminfo -EXPORT_SYMBOL vmlinux 0x40cbca19 sk_wait_data EXPORT_SYMBOL vmlinux 0x40d04664 console_trylock -EXPORT_SYMBOL vmlinux 0x40d57dfd fiemap_prep EXPORT_SYMBOL vmlinux 0x40d59096 unregister_restart_handler -EXPORT_SYMBOL vmlinux 0x40d73e77 unregister_framebuffer EXPORT_SYMBOL vmlinux 0x40d84a37 ZSTD_getFrameParams -EXPORT_SYMBOL vmlinux 0x40de0ffa filemap_fdatawait_range_keep_errors -EXPORT_SYMBOL vmlinux 0x40e3c32a mmc_card_is_blockaddr -EXPORT_SYMBOL vmlinux 0x40f572eb rproc_shutdown -EXPORT_SYMBOL vmlinux 0x40f9a733 blk_mq_delay_run_hw_queue -EXPORT_SYMBOL vmlinux 0x41078a4c tty_schedule_flip -EXPORT_SYMBOL vmlinux 0x412650a1 dget_parent -EXPORT_SYMBOL vmlinux 0x412e3473 km_new_mapping +EXPORT_SYMBOL vmlinux 0x40e03cd7 seq_release_private +EXPORT_SYMBOL vmlinux 0x40e91877 get_phy_device +EXPORT_SYMBOL vmlinux 0x40e97cb6 security_inet_conn_established +EXPORT_SYMBOL vmlinux 0x40eeee70 __put_page +EXPORT_SYMBOL vmlinux 0x40f36d84 pci_disable_msi +EXPORT_SYMBOL vmlinux 0x40f5a45f is_bad_inode +EXPORT_SYMBOL vmlinux 0x4106ddac __nlmsg_put +EXPORT_SYMBOL vmlinux 0x410d0bac input_allocate_device +EXPORT_SYMBOL vmlinux 0x4115f22c mdiobus_read_nested EXPORT_SYMBOL vmlinux 0x412f893c page_offline_begin -EXPORT_SYMBOL vmlinux 0x41344879 handle_edge_irq -EXPORT_SYMBOL vmlinux 0x4141972a eth_type_trans +EXPORT_SYMBOL vmlinux 0x413a489d tcf_idr_cleanup +EXPORT_SYMBOL vmlinux 0x413de095 jbd2_journal_inode_ranged_wait EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user -EXPORT_SYMBOL vmlinux 0x4166a29f cdrom_release -EXPORT_SYMBOL vmlinux 0x417588ad tcp_sock_set_keepintvl -EXPORT_SYMBOL vmlinux 0x417aa675 start_tty +EXPORT_SYMBOL vmlinux 0x414fd8ce page_pool_put_page +EXPORT_SYMBOL vmlinux 0x4150810e rtnl_create_link EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time -EXPORT_SYMBOL vmlinux 0x419f3503 inet6_getname -EXPORT_SYMBOL vmlinux 0x41b41a27 agp_alloc_page_array -EXPORT_SYMBOL vmlinux 0x41baf181 input_inject_event -EXPORT_SYMBOL vmlinux 0x41c808bc iget5_locked +EXPORT_SYMBOL vmlinux 0x418c14cb nf_unregister_sockopt +EXPORT_SYMBOL vmlinux 0x41ad57a7 fs_param_is_path +EXPORT_SYMBOL vmlinux 0x41c539dd param_set_long EXPORT_SYMBOL vmlinux 0x41d7b6d2 load_nls_default -EXPORT_SYMBOL vmlinux 0x41d9a19a unregister_key_type +EXPORT_SYMBOL vmlinux 0x41e13bbf md_set_array_sectors EXPORT_SYMBOL vmlinux 0x41efdeaf radix_tree_lookup_slot -EXPORT_SYMBOL vmlinux 0x41fdc66e configfs_unregister_subsystem -EXPORT_SYMBOL vmlinux 0x41fe0406 pcie_port_service_register -EXPORT_SYMBOL vmlinux 0x42026d87 zap_page_range -EXPORT_SYMBOL vmlinux 0x4204abd7 mfd_add_devices +EXPORT_SYMBOL vmlinux 0x41fb9182 set_trace_device +EXPORT_SYMBOL vmlinux 0x41fdd513 dma_pool_create EXPORT_SYMBOL vmlinux 0x420964e3 __nla_parse +EXPORT_SYMBOL vmlinux 0x420f6ff0 freezing_slow_path EXPORT_SYMBOL vmlinux 0x42160169 flush_workqueue -EXPORT_SYMBOL vmlinux 0x421d7e54 set_bdi_congested -EXPORT_SYMBOL vmlinux 0x4223e108 con_is_bound -EXPORT_SYMBOL vmlinux 0x4223efc8 simple_release_fs -EXPORT_SYMBOL vmlinux 0x422405cf truncate_pagecache_range +EXPORT_SYMBOL vmlinux 0x4219cea2 free_inode_nonrcu +EXPORT_SYMBOL vmlinux 0x42228ef7 iov_iter_xarray +EXPORT_SYMBOL vmlinux 0x422292c4 vga_client_register EXPORT_SYMBOL vmlinux 0x4230a8d7 sg_nents_for_len -EXPORT_SYMBOL vmlinux 0x423be9a0 sg_miter_start EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running +EXPORT_SYMBOL vmlinux 0x42498bc1 xfrm_state_register_afinfo EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp -EXPORT_SYMBOL vmlinux 0x424f76b5 jbd2_journal_get_write_access EXPORT_SYMBOL vmlinux 0x42578e80 acpi_get_type EXPORT_SYMBOL vmlinux 0x42595e58 vgacon_text_force -EXPORT_SYMBOL vmlinux 0x42729dfc mdiobus_alloc_size -EXPORT_SYMBOL vmlinux 0x4275164a phy_ethtool_get_eee -EXPORT_SYMBOL vmlinux 0x4276a725 twl6030_mmc_card_detect -EXPORT_SYMBOL vmlinux 0x4281b8fe truncate_pagecache -EXPORT_SYMBOL vmlinux 0x4288fdba mmc_of_parse -EXPORT_SYMBOL vmlinux 0x4293afd5 pci_add_new_bus -EXPORT_SYMBOL vmlinux 0x42a0b345 vfs_dedupe_file_range_one -EXPORT_SYMBOL vmlinux 0x42a7373a fuse_dequeue_forget +EXPORT_SYMBOL vmlinux 0x4276d5fc da903x_query_status +EXPORT_SYMBOL vmlinux 0x427eeec9 dev_uc_sync +EXPORT_SYMBOL vmlinux 0x4293d376 i2c_transfer +EXPORT_SYMBOL vmlinux 0x42971bee skb_abort_seq_read +EXPORT_SYMBOL vmlinux 0x42aed08e kernel_sock_ip_overhead EXPORT_SYMBOL vmlinux 0x42bed8d4 unix_gc_lock -EXPORT_SYMBOL vmlinux 0x42d30c79 icmpv6_ndo_send -EXPORT_SYMBOL vmlinux 0x42e63490 __task_pid_nr_ns +EXPORT_SYMBOL vmlinux 0x42c9e1c8 address_space_init_once +EXPORT_SYMBOL vmlinux 0x42cbc14d pci_bus_read_config_word +EXPORT_SYMBOL vmlinux 0x42e40161 dma_resv_add_excl_fence EXPORT_SYMBOL vmlinux 0x42f1b900 fb_pad_unaligned_buffer -EXPORT_SYMBOL vmlinux 0x42f1e0f6 rproc_free -EXPORT_SYMBOL vmlinux 0x42f2cca8 blk_rq_unmap_user +EXPORT_SYMBOL vmlinux 0x42f66315 memory_cgrp_subsys EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages -EXPORT_SYMBOL vmlinux 0x4309a998 tcf_qevent_handle -EXPORT_SYMBOL vmlinux 0x430b11e2 t10_pi_type3_ip -EXPORT_SYMBOL vmlinux 0x4311499b genphy_c37_config_aneg -EXPORT_SYMBOL vmlinux 0x43157dc3 skb_tx_error +EXPORT_SYMBOL vmlinux 0x43132f9e unregister_netdevice_notifier_net +EXPORT_SYMBOL vmlinux 0x431bda4f ipv6_getsockopt EXPORT_SYMBOL vmlinux 0x431ec3a9 __nla_validate +EXPORT_SYMBOL vmlinux 0x4331d0fd remap_pfn_range EXPORT_SYMBOL vmlinux 0x4336fcca ucs2_as_utf8 EXPORT_SYMBOL vmlinux 0x433cabfb acpi_decode_pld_buffer -EXPORT_SYMBOL vmlinux 0x4343c9ee blk_rq_map_user_iov -EXPORT_SYMBOL vmlinux 0x434e0ea7 __blk_alloc_disk +EXPORT_SYMBOL vmlinux 0x43407d96 vga_switcheroo_client_fb_set EXPORT_SYMBOL vmlinux 0x4351577a fb_parse_edid -EXPORT_SYMBOL vmlinux 0x43517363 phy_start_aneg -EXPORT_SYMBOL vmlinux 0x4374505e open_with_fake_path +EXPORT_SYMBOL vmlinux 0x43541273 call_netdevice_notifiers EXPORT_SYMBOL vmlinux 0x437a0d6d __sock_tx_timestamp +EXPORT_SYMBOL vmlinux 0x437bef83 fs_param_is_blob +EXPORT_SYMBOL vmlinux 0x437fdda8 jbd2_journal_init_jbd_inode EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security -EXPORT_SYMBOL vmlinux 0x43b34717 phy_attached_info -EXPORT_SYMBOL vmlinux 0x43cb6928 i2c_smbus_xfer -EXPORT_SYMBOL vmlinux 0x43cc8419 __traceiter_mmap_lock_released +EXPORT_SYMBOL vmlinux 0x4391c96f pci_map_rom +EXPORT_SYMBOL vmlinux 0x4395266b phy_free_interrupt +EXPORT_SYMBOL vmlinux 0x439660b8 phy_ethtool_get_wol +EXPORT_SYMBOL vmlinux 0x43a43e36 acpi_device_hid +EXPORT_SYMBOL vmlinux 0x43a54a87 rproc_elf_find_loaded_rsc_table +EXPORT_SYMBOL vmlinux 0x43ac3e83 fiemap_prep +EXPORT_SYMBOL vmlinux 0x43b202e1 ipv6_setsockopt EXPORT_SYMBOL vmlinux 0x43d22fb9 groups_alloc -EXPORT_SYMBOL vmlinux 0x43e15094 kernel_connect -EXPORT_SYMBOL vmlinux 0x43fcb158 pci_alloc_host_bridge -EXPORT_SYMBOL vmlinux 0x4406ba73 lease_modify -EXPORT_SYMBOL vmlinux 0x441f4233 param_ops_short -EXPORT_SYMBOL vmlinux 0x4428e9fa sync_mapping_buffers -EXPORT_SYMBOL vmlinux 0x4430440c pcim_pin_device +EXPORT_SYMBOL vmlinux 0x43e1d23c i2c_verify_client +EXPORT_SYMBOL vmlinux 0x43e63e69 netif_set_real_num_queues +EXPORT_SYMBOL vmlinux 0x43e6cde6 dma_get_sgtable_attrs +EXPORT_SYMBOL vmlinux 0x43eb0a5d xfrm_state_delete_tunnel +EXPORT_SYMBOL vmlinux 0x43ef520b dev_mc_add +EXPORT_SYMBOL vmlinux 0x43fd3308 ppp_register_channel +EXPORT_SYMBOL vmlinux 0x4402e1cb genphy_read_status +EXPORT_SYMBOL vmlinux 0x440c7a8a mnt_set_expiry +EXPORT_SYMBOL vmlinux 0x441fb495 vm_mmap EXPORT_SYMBOL vmlinux 0x44414ff2 iosf_mbi_unblock_punit_i2c_access -EXPORT_SYMBOL vmlinux 0x44458bf7 blk_mq_tagset_wait_completed_request +EXPORT_SYMBOL vmlinux 0x44465f5d phy_remove_link_mode EXPORT_SYMBOL vmlinux 0x44469a76 crc_ccitt_false_table -EXPORT_SYMBOL vmlinux 0x44550800 jbd2_complete_transaction -EXPORT_SYMBOL vmlinux 0x445700da blk_mq_tagset_busy_iter -EXPORT_SYMBOL vmlinux 0x445cd5d8 skb_ext_add -EXPORT_SYMBOL vmlinux 0x445e6c16 proc_create_data +EXPORT_SYMBOL vmlinux 0x445f491c skb_copy_and_csum_datagram_msg EXPORT_SYMBOL vmlinux 0x4462d35e cpufreq_get_hw_max_freq -EXPORT_SYMBOL vmlinux 0x446c1e29 i2c_add_adapter +EXPORT_SYMBOL vmlinux 0x446408b4 d_obtain_alias +EXPORT_SYMBOL vmlinux 0x4464161a param_get_hexint +EXPORT_SYMBOL vmlinux 0x448c6518 netlink_ack EXPORT_SYMBOL vmlinux 0x44902cff acpi_enable_event EXPORT_SYMBOL vmlinux 0x449ad0a7 memcmp -EXPORT_SYMBOL vmlinux 0x44a39e46 netdev_rx_csum_fault EXPORT_SYMBOL vmlinux 0x44a6e90a irq_cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x44aa2bb7 pci_pme_active EXPORT_SYMBOL vmlinux 0x44aaf30f tsc_khz -EXPORT_SYMBOL vmlinux 0x44e3e15b __break_lease +EXPORT_SYMBOL vmlinux 0x44acdc67 cleancache_register_ops +EXPORT_SYMBOL vmlinux 0x44b94fc5 __tracepoint_read_msr +EXPORT_SYMBOL vmlinux 0x44c11a1f vfs_setpos +EXPORT_SYMBOL vmlinux 0x44d250ff tcp_close +EXPORT_SYMBOL vmlinux 0x44dfab06 configfs_depend_item_unlocked +EXPORT_SYMBOL vmlinux 0x44e0e9cc cdrom_ioctl +EXPORT_SYMBOL vmlinux 0x44e1e05c pagecache_get_page +EXPORT_SYMBOL vmlinux 0x44e45f40 vga_get EXPORT_SYMBOL vmlinux 0x44e9a829 match_token -EXPORT_SYMBOL vmlinux 0x44eef9e7 __dst_destroy_metrics_generic -EXPORT_SYMBOL vmlinux 0x44f0aaec xfrm_state_update +EXPORT_SYMBOL vmlinux 0x44e9f252 rproc_alloc +EXPORT_SYMBOL vmlinux 0x44fd2f8c max8925_set_bits EXPORT_SYMBOL vmlinux 0x45006cee default_red -EXPORT_SYMBOL vmlinux 0x45028df6 kernel_sendpage EXPORT_SYMBOL vmlinux 0x45081703 ec_get_handle -EXPORT_SYMBOL vmlinux 0x450a8243 ip_options_rcv_srr -EXPORT_SYMBOL vmlinux 0x4527f247 vfs_dup_fs_context EXPORT_SYMBOL vmlinux 0x452ba683 ipv6_ext_hdr EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled +EXPORT_SYMBOL vmlinux 0x45431ad1 __neigh_create EXPORT_SYMBOL vmlinux 0x45535485 xxh32_update -EXPORT_SYMBOL vmlinux 0x45567256 input_mt_sync_frame -EXPORT_SYMBOL vmlinux 0x4560f2b7 dquot_get_next_id +EXPORT_SYMBOL vmlinux 0x4557e16e phy_drivers_unregister +EXPORT_SYMBOL vmlinux 0x45587008 cdrom_dummy_generic_packet EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user -EXPORT_SYMBOL vmlinux 0x45ab8969 nd_dax_probe -EXPORT_SYMBOL vmlinux 0x45b6bffe dev_set_promiscuity -EXPORT_SYMBOL vmlinux 0x45c8ee57 get_fs_type +EXPORT_SYMBOL vmlinux 0x458c7e3d rproc_vq_interrupt +EXPORT_SYMBOL vmlinux 0x458f3a71 mipi_dsi_dcs_set_display_on +EXPORT_SYMBOL vmlinux 0x45966183 phy_ethtool_ksettings_get +EXPORT_SYMBOL vmlinux 0x45996f96 inet_dgram_connect +EXPORT_SYMBOL vmlinux 0x45a126ee sock_diag_put_filterinfo +EXPORT_SYMBOL vmlinux 0x45c9417d pin_user_pages +EXPORT_SYMBOL vmlinux 0x45cf0dd1 pnp_activate_dev EXPORT_SYMBOL vmlinux 0x45d246da node_to_cpumask_map -EXPORT_SYMBOL vmlinux 0x45e453d7 blk_queue_flag_clear +EXPORT_SYMBOL vmlinux 0x45e5e2ee mmc_can_erase EXPORT_SYMBOL vmlinux 0x45e8d7b5 native_write_cr0 -EXPORT_SYMBOL vmlinux 0x45f746f6 register_console -EXPORT_SYMBOL vmlinux 0x45fc8e41 lock_rename -EXPORT_SYMBOL vmlinux 0x4608a1d3 compat_ptr_ioctl -EXPORT_SYMBOL vmlinux 0x460ee515 iterate_dir +EXPORT_SYMBOL vmlinux 0x45f55088 ping_prot +EXPORT_SYMBOL vmlinux 0x45fa4057 page_get_link +EXPORT_SYMBOL vmlinux 0x46019b22 amd_iommu_domain_direct_map +EXPORT_SYMBOL vmlinux 0x46050236 pci_write_vpd +EXPORT_SYMBOL vmlinux 0x46065c15 mdiobus_setup_mdiodev_from_board_info +EXPORT_SYMBOL vmlinux 0x460cac3f netdev_reset_tc +EXPORT_SYMBOL vmlinux 0x460f4a34 flow_hash_from_keys +EXPORT_SYMBOL vmlinux 0x46171970 end_buffer_write_sync EXPORT_SYMBOL vmlinux 0x461d16ca sg_nents +EXPORT_SYMBOL vmlinux 0x46227fea inet_confirm_addr +EXPORT_SYMBOL vmlinux 0x462728bd tcp_sock_set_keepidle EXPORT_SYMBOL vmlinux 0x4629334c __preempt_count -EXPORT_SYMBOL vmlinux 0x4630d987 __tracepoint_kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0x46303d1a netdev_bind_sb_channel_queue EXPORT_SYMBOL vmlinux 0x463219fb tcp_hashinfo -EXPORT_SYMBOL vmlinux 0x4639ff4c tcf_action_update_stats -EXPORT_SYMBOL vmlinux 0x464d449a cros_ec_check_result -EXPORT_SYMBOL vmlinux 0x465c0216 tcf_block_get_ext EXPORT_SYMBOL vmlinux 0x465e24ff ucs2_utf8size +EXPORT_SYMBOL vmlinux 0x4662bc0a set_pages_uc +EXPORT_SYMBOL vmlinux 0x466321de blk_queue_max_discard_sectors +EXPORT_SYMBOL vmlinux 0x466533c6 xfrm_policy_byid +EXPORT_SYMBOL vmlinux 0x466776f6 get_task_cred EXPORT_SYMBOL vmlinux 0x466c14a7 __delay -EXPORT_SYMBOL vmlinux 0x466f6901 tcf_chain_get_by_act -EXPORT_SYMBOL vmlinux 0x4678888b skb_dequeue_tail +EXPORT_SYMBOL vmlinux 0x4670a8ca __lock_sock_fast +EXPORT_SYMBOL vmlinux 0x467319f4 dquot_commit EXPORT_SYMBOL vmlinux 0x467df16d netdev_rss_key_fill -EXPORT_SYMBOL vmlinux 0x467f8786 nf_log_unbind_pf -EXPORT_SYMBOL vmlinux 0x4689fcd3 secpath_set -EXPORT_SYMBOL vmlinux 0x46968958 ip_generic_getfrag -EXPORT_SYMBOL vmlinux 0x4697f381 netlink_capable +EXPORT_SYMBOL vmlinux 0x468979ca dcache_readdir +EXPORT_SYMBOL vmlinux 0x468e9ae2 input_reset_device EXPORT_SYMBOL vmlinux 0x469a6ec7 tcp_parse_md5sig_option -EXPORT_SYMBOL vmlinux 0x46a1d5e8 f_setown -EXPORT_SYMBOL vmlinux 0x46b71cad disk_stack_limits +EXPORT_SYMBOL vmlinux 0x46ac383a vfs_mknod +EXPORT_SYMBOL vmlinux 0x46ada4ce sk_stream_wait_memory EXPORT_SYMBOL vmlinux 0x46c47fb6 __node_distance -EXPORT_SYMBOL vmlinux 0x46ce08d0 agp_generic_alloc_page +EXPORT_SYMBOL vmlinux 0x46c6f4b4 security_path_unlink +EXPORT_SYMBOL vmlinux 0x46c76d87 kfree_skb EXPORT_SYMBOL vmlinux 0x46cf10eb cachemode2protval -EXPORT_SYMBOL vmlinux 0x46dc4af7 ip_cmsg_recv_offset -EXPORT_SYMBOL vmlinux 0x46eb330d mipi_dsi_dcs_set_column_address -EXPORT_SYMBOL vmlinux 0x46ee68eb neigh_parms_alloc -EXPORT_SYMBOL vmlinux 0x46efcff8 ppp_register_channel +EXPORT_SYMBOL vmlinux 0x46e0ae33 dev_get_by_name_rcu +EXPORT_SYMBOL vmlinux 0x46f00e56 devm_pci_remap_iospace +EXPORT_SYMBOL vmlinux 0x46f65036 twl6040_set_bits +EXPORT_SYMBOL vmlinux 0x47120dd1 vme_irq_request EXPORT_SYMBOL vmlinux 0x4715a909 acpi_load_table -EXPORT_SYMBOL vmlinux 0x47252bc9 bd_abort_claiming +EXPORT_SYMBOL vmlinux 0x4716fa57 i2c_smbus_read_i2c_block_data_or_emulated EXPORT_SYMBOL vmlinux 0x4740b3bc xen_arch_unregister_cpu -EXPORT_SYMBOL vmlinux 0x474aa841 clk_add_alias -EXPORT_SYMBOL vmlinux 0x474d3c58 __dynamic_dev_dbg -EXPORT_SYMBOL vmlinux 0x4759fb5f ip_sock_set_tos +EXPORT_SYMBOL vmlinux 0x475896a3 rdmacg_uncharge +EXPORT_SYMBOL vmlinux 0x4764ed6e pskb_trim_rcsum_slow EXPORT_SYMBOL vmlinux 0x47709e42 free_anon_bdev -EXPORT_SYMBOL vmlinux 0x4772fd3d pnp_unregister_driver -EXPORT_SYMBOL vmlinux 0x47808e68 sock_set_keepalive -EXPORT_SYMBOL vmlinux 0x478dac95 fifo_set_limit +EXPORT_SYMBOL vmlinux 0x477760e8 crypto_sha512_finup +EXPORT_SYMBOL vmlinux 0x478e6f17 set_pages_wb EXPORT_SYMBOL vmlinux 0x47960bc4 proc_do_large_bitmap -EXPORT_SYMBOL vmlinux 0x47990cc3 pci_bus_write_config_word +EXPORT_SYMBOL vmlinux 0x479923ca bh_submit_read EXPORT_SYMBOL vmlinux 0x47a0cdcb mb_cache_entry_find_next -EXPORT_SYMBOL vmlinux 0x47a8c280 gro_cells_receive +EXPORT_SYMBOL vmlinux 0x47a76cd7 pagevec_lookup_range +EXPORT_SYMBOL vmlinux 0x47ba372e dump_align +EXPORT_SYMBOL vmlinux 0x47bb7a30 udp_lib_get_port EXPORT_SYMBOL vmlinux 0x47c20f8a refcount_dec_not_one EXPORT_SYMBOL vmlinux 0x47c65bfc unregister_inet6addr_validator_notifier EXPORT_SYMBOL vmlinux 0x47cfd825 kstrtouint_from_user EXPORT_SYMBOL vmlinux 0x47d8d301 __cond_resched_rwlock_read -EXPORT_SYMBOL vmlinux 0x47f43054 mark_buffer_dirty -EXPORT_SYMBOL vmlinux 0x47f49248 kill_block_super -EXPORT_SYMBOL vmlinux 0x47fb7197 scsi_unblock_requests +EXPORT_SYMBOL vmlinux 0x47f8d635 __get_hash_from_flowi6 +EXPORT_SYMBOL vmlinux 0x480d8990 pci_dev_put EXPORT_SYMBOL vmlinux 0x48112d76 _raw_read_lock_irq +EXPORT_SYMBOL vmlinux 0x48128ea3 jbd2_journal_set_features +EXPORT_SYMBOL vmlinux 0x48184059 inet6_bind EXPORT_SYMBOL vmlinux 0x48193639 acpi_lid_open EXPORT_SYMBOL vmlinux 0x4829cf6b fscrypt_enqueue_decrypt_work +EXPORT_SYMBOL vmlinux 0x483057c9 to_ndd +EXPORT_SYMBOL vmlinux 0x48340537 sk_error_report +EXPORT_SYMBOL vmlinux 0x483983c2 mdiobus_write EXPORT_SYMBOL vmlinux 0x4841bdee strnchr EXPORT_SYMBOL vmlinux 0x48476bcb intel_gtt_insert_page +EXPORT_SYMBOL vmlinux 0x484909d2 jbd2_journal_grab_journal_head EXPORT_SYMBOL vmlinux 0x484f6edf ktime_get_coarse_real_ts64 +EXPORT_SYMBOL vmlinux 0x4855aabf inet_del_protocol EXPORT_SYMBOL vmlinux 0x4859b8bb rtc_year_days +EXPORT_SYMBOL vmlinux 0x485d6e36 xfrm_trans_queue_net EXPORT_SYMBOL vmlinux 0x486075c8 gen_pool_dma_alloc -EXPORT_SYMBOL vmlinux 0x486ddfbb fasync_helper EXPORT_SYMBOL vmlinux 0x4871d75d clk_hw_register_clkdev -EXPORT_SYMBOL vmlinux 0x4889f596 sock_no_sendpage -EXPORT_SYMBOL vmlinux 0x48937ac8 fwnode_irq_get -EXPORT_SYMBOL vmlinux 0x4893d398 pci_ep_cfs_add_epf_group -EXPORT_SYMBOL vmlinux 0x4899c1f7 _dev_crit +EXPORT_SYMBOL vmlinux 0x4876a933 deactivate_locked_super +EXPORT_SYMBOL vmlinux 0x487ed25d __alloc_skb EXPORT_SYMBOL vmlinux 0x489f6e0b rdma_dim -EXPORT_SYMBOL vmlinux 0x489f8ce1 param_set_byte -EXPORT_SYMBOL vmlinux 0x48a0bd1a sdev_prefix_printk -EXPORT_SYMBOL vmlinux 0x48a28fdb scsi_vpd_lun_id +EXPORT_SYMBOL vmlinux 0x48a0b6b8 pci_enable_msix_range +EXPORT_SYMBOL vmlinux 0x48a202b3 vme_dma_list_add +EXPORT_SYMBOL vmlinux 0x48a78b94 i2c_verify_adapter EXPORT_SYMBOL vmlinux 0x48a81d7e vfio_group_pin_pages -EXPORT_SYMBOL vmlinux 0x48a8d4ba thermal_zone_device_critical EXPORT_SYMBOL vmlinux 0x48a91171 string_get_size +EXPORT_SYMBOL vmlinux 0x48abe457 twl6040_clear_bits EXPORT_SYMBOL vmlinux 0x48b99a13 vme_lm_free EXPORT_SYMBOL vmlinux 0x48c093fb _atomic_dec_and_lock_irqsave +EXPORT_SYMBOL vmlinux 0x48c4e200 jbd2_complete_transaction EXPORT_SYMBOL vmlinux 0x48c5dd72 config_group_find_item -EXPORT_SYMBOL vmlinux 0x48ccc104 dev_close +EXPORT_SYMBOL vmlinux 0x48d4a089 pm860x_set_bits EXPORT_SYMBOL vmlinux 0x48d50e79 amd_iommu_register_ppr_notifier -EXPORT_SYMBOL vmlinux 0x48d657b0 sock_release -EXPORT_SYMBOL vmlinux 0x48d895e1 blkdev_compat_ptr_ioctl -EXPORT_SYMBOL vmlinux 0x48f22ac0 phy_device_free +EXPORT_SYMBOL vmlinux 0x48e6e4f0 open_with_fake_path +EXPORT_SYMBOL vmlinux 0x48fea3cf kernel_getpeername EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert -EXPORT_SYMBOL vmlinux 0x4904f705 dquot_quota_off -EXPORT_SYMBOL vmlinux 0x49152e85 configfs_register_default_group -EXPORT_SYMBOL vmlinux 0x4946c733 phy_attach -EXPORT_SYMBOL vmlinux 0x494ac670 proc_set_user +EXPORT_SYMBOL vmlinux 0x490a03ab is_nd_dax +EXPORT_SYMBOL vmlinux 0x491d2541 tty_register_device +EXPORT_SYMBOL vmlinux 0x492997e0 simple_recursive_removal EXPORT_SYMBOL vmlinux 0x494e3393 vm_get_page_prot +EXPORT_SYMBOL vmlinux 0x49511c80 sync_dirty_buffer EXPORT_SYMBOL vmlinux 0x495e378d __pv_queued_spin_lock_slowpath EXPORT_SYMBOL vmlinux 0x4967e79f radix_tree_iter_resume -EXPORT_SYMBOL vmlinux 0x4969c39a inet6_bind +EXPORT_SYMBOL vmlinux 0x49874daa file_modified EXPORT_SYMBOL vmlinux 0x498e9128 ZSTD_findDecompressedSize -EXPORT_SYMBOL vmlinux 0x4990ab50 bio_endio EXPORT_SYMBOL vmlinux 0x499f0ecf nd_sb_checksum -EXPORT_SYMBOL vmlinux 0x49aa919f twl6040_reg_read +EXPORT_SYMBOL vmlinux 0x49ab1182 tcp_sendmsg EXPORT_SYMBOL vmlinux 0x49b163b8 acpi_bus_scan -EXPORT_SYMBOL vmlinux 0x49c5e873 ip_defrag -EXPORT_SYMBOL vmlinux 0x49d43039 __skb_flow_get_ports -EXPORT_SYMBOL vmlinux 0x49e11cce skb_vlan_pop -EXPORT_SYMBOL vmlinux 0x4a089de0 mipi_dsi_compression_mode +EXPORT_SYMBOL vmlinux 0x49b7a669 pci_resize_resource +EXPORT_SYMBOL vmlinux 0x49c7a6a1 pci_get_device +EXPORT_SYMBOL vmlinux 0x49e85e7e fuse_dequeue_forget +EXPORT_SYMBOL vmlinux 0x4a019e78 inet_rcv_saddr_equal +EXPORT_SYMBOL vmlinux 0x4a0cd2f7 agp_enable EXPORT_SYMBOL vmlinux 0x4a165127 kobject_put -EXPORT_SYMBOL vmlinux 0x4a168599 tcf_em_tree_validate -EXPORT_SYMBOL vmlinux 0x4a29ccb9 unregister_console +EXPORT_SYMBOL vmlinux 0x4a1cdb35 create_empty_buffers +EXPORT_SYMBOL vmlinux 0x4a32dbe8 skb_flow_dissect_tunnel_info EXPORT_SYMBOL vmlinux 0x4a3ad70e wait_for_completion_timeout +EXPORT_SYMBOL vmlinux 0x4a3b442b __seq_open_private EXPORT_SYMBOL vmlinux 0x4a453f53 iowrite32 -EXPORT_SYMBOL vmlinux 0x4a499c8d devm_kvasprintf -EXPORT_SYMBOL vmlinux 0x4a5a1c53 regset_get -EXPORT_SYMBOL vmlinux 0x4a5e4152 block_is_partially_uptodate +EXPORT_SYMBOL vmlinux 0x4a468d36 skb_put +EXPORT_SYMBOL vmlinux 0x4a60796a iterate_fd +EXPORT_SYMBOL vmlinux 0x4a66ddee __page_frag_cache_drain +EXPORT_SYMBOL vmlinux 0x4a6873a6 lookup_one_len +EXPORT_SYMBOL vmlinux 0x4a6911b8 ps2_sliced_command +EXPORT_SYMBOL vmlinux 0x4a796aec io_uring_get_socket EXPORT_SYMBOL vmlinux 0x4a8a6949 get_random_bytes_arch EXPORT_SYMBOL vmlinux 0x4a96a8eb xxh32_digest +EXPORT_SYMBOL vmlinux 0x4aa393ea security_skb_classify_flow +EXPORT_SYMBOL vmlinux 0x4aba39ea phy_read_paged EXPORT_SYMBOL vmlinux 0x4abb7d10 cpu_rmap_update EXPORT_SYMBOL vmlinux 0x4aea463f crc32_le_shift -EXPORT_SYMBOL vmlinux 0x4aed7b88 nf_log_packet -EXPORT_SYMBOL vmlinux 0x4af171e1 kernel_sendpage_locked +EXPORT_SYMBOL vmlinux 0x4aed1d1c try_to_release_page EXPORT_SYMBOL vmlinux 0x4af6ddf0 kstrtou16 EXPORT_SYMBOL vmlinux 0x4afb2238 add_wait_queue +EXPORT_SYMBOL vmlinux 0x4b045d31 mr_table_alloc EXPORT_SYMBOL vmlinux 0x4b085dbf agp3_generic_configure -EXPORT_SYMBOL vmlinux 0x4b593ed7 vif_device_init -EXPORT_SYMBOL vmlinux 0x4b5b2d47 sock_gettstamp +EXPORT_SYMBOL vmlinux 0x4b0895d1 km_policy_expired +EXPORT_SYMBOL vmlinux 0x4b299de1 netdev_has_upper_dev_all_rcu +EXPORT_SYMBOL vmlinux 0x4b33abe0 __xfrm_init_state +EXPORT_SYMBOL vmlinux 0x4b3b4857 xattr_full_name +EXPORT_SYMBOL vmlinux 0x4b550d20 generic_fillattr EXPORT_SYMBOL vmlinux 0x4b5e3a47 __get_user_nocheck_1 EXPORT_SYMBOL vmlinux 0x4b5fd49e dm_kcopyd_do_callback +EXPORT_SYMBOL vmlinux 0x4b6a83f0 filemap_range_has_page EXPORT_SYMBOL vmlinux 0x4b6df007 acpi_evaluate_reg -EXPORT_SYMBOL vmlinux 0x4b7383ea __dec_zone_page_state -EXPORT_SYMBOL vmlinux 0x4b8da3e8 jbd2_journal_destroy -EXPORT_SYMBOL vmlinux 0x4b92a016 pci_prepare_to_sleep -EXPORT_SYMBOL vmlinux 0x4ba11faa __sk_mem_raise_allocated -EXPORT_SYMBOL vmlinux 0x4badf63b netif_set_xps_queue -EXPORT_SYMBOL vmlinux 0x4bbb4645 param_get_byte -EXPORT_SYMBOL vmlinux 0x4bc98a06 dev_set_group +EXPORT_SYMBOL vmlinux 0x4b77245b __hw_addr_unsync_dev +EXPORT_SYMBOL vmlinux 0x4b98e043 dma_sync_sg_for_device +EXPORT_SYMBOL vmlinux 0x4ba29a53 generic_file_open +EXPORT_SYMBOL vmlinux 0x4ba82f3d iget5_locked +EXPORT_SYMBOL vmlinux 0x4ba8a144 agp_generic_free_by_type +EXPORT_SYMBOL vmlinux 0x4bac6a2f rproc_set_firmware +EXPORT_SYMBOL vmlinux 0x4bba7bfd netdev_master_upper_dev_get_rcu +EXPORT_SYMBOL vmlinux 0x4bc590b2 end_buffer_async_write +EXPORT_SYMBOL vmlinux 0x4bcb3dab generic_file_fsync EXPORT_SYMBOL vmlinux 0x4bcc2662 mempool_init_node -EXPORT_SYMBOL vmlinux 0x4bcd65d9 put_cmsg_scm_timestamping -EXPORT_SYMBOL vmlinux 0x4be71285 ip6_err_gen_icmpv6_unreach -EXPORT_SYMBOL vmlinux 0x4be83c99 agp_generic_remove_memory +EXPORT_SYMBOL vmlinux 0x4bd53847 __napi_schedule_irqoff EXPORT_SYMBOL vmlinux 0x4bef1c67 empty_name -EXPORT_SYMBOL vmlinux 0x4bfd77d8 gnet_stats_finish_copy +EXPORT_SYMBOL vmlinux 0x4bf98093 blk_pm_runtime_init +EXPORT_SYMBOL vmlinux 0x4c00702c scsi_mode_sense EXPORT_SYMBOL vmlinux 0x4c07a7e0 acpi_processor_unregister_performance -EXPORT_SYMBOL vmlinux 0x4c1a5309 uart_write_wakeup EXPORT_SYMBOL vmlinux 0x4c236f6f __x86_indirect_thunk_r15 -EXPORT_SYMBOL vmlinux 0x4c30837d __neigh_set_probe_once EXPORT_SYMBOL vmlinux 0x4c38d4e0 utf8_strncasecmp_folded -EXPORT_SYMBOL vmlinux 0x4c4160f9 filemap_fdatawrite_wbc EXPORT_SYMBOL vmlinux 0x4c416eb9 LZ4_decompress_fast -EXPORT_SYMBOL vmlinux 0x4c506f58 kernel_sendmsg -EXPORT_SYMBOL vmlinux 0x4c726280 ip_check_defrag -EXPORT_SYMBOL vmlinux 0x4c765c39 sync_dirty_buffer -EXPORT_SYMBOL vmlinux 0x4c775dd3 i2c_del_driver -EXPORT_SYMBOL vmlinux 0x4c7d3553 shrink_dcache_sb -EXPORT_SYMBOL vmlinux 0x4c7db510 dcache_dir_open -EXPORT_SYMBOL vmlinux 0x4c8b4e50 inet_ioctl +EXPORT_SYMBOL vmlinux 0x4c75eeab cdev_add EXPORT_SYMBOL vmlinux 0x4c9d28b0 phys_base -EXPORT_SYMBOL vmlinux 0x4ca0287f jbd2_journal_wipe +EXPORT_SYMBOL vmlinux 0x4ca4b25b __page_cache_alloc +EXPORT_SYMBOL vmlinux 0x4cb1f317 clocksource_unregister EXPORT_SYMBOL vmlinux 0x4cba441d iwe_stream_add_event -EXPORT_SYMBOL vmlinux 0x4cbcdc69 security_inet_conn_established +EXPORT_SYMBOL vmlinux 0x4cc8a740 pm860x_bulk_write EXPORT_SYMBOL vmlinux 0x4cd5bc5e rdmsr_safe_regs EXPORT_SYMBOL vmlinux 0x4ceae601 get_cpu_entry_area -EXPORT_SYMBOL vmlinux 0x4d03510c ppp_input_error -EXPORT_SYMBOL vmlinux 0x4d068f06 register_netdev -EXPORT_SYMBOL vmlinux 0x4d1568b9 kmem_cache_free -EXPORT_SYMBOL vmlinux 0x4d229c7f netif_tx_stop_all_queues -EXPORT_SYMBOL vmlinux 0x4d290af6 serio_reconnect -EXPORT_SYMBOL vmlinux 0x4d2acf6f ipv6_dev_mc_inc +EXPORT_SYMBOL vmlinux 0x4cf8f2a4 jbd2_journal_stop +EXPORT_SYMBOL vmlinux 0x4d2201c6 block_is_partially_uptodate EXPORT_SYMBOL vmlinux 0x4d2c7133 acpi_info -EXPORT_SYMBOL vmlinux 0x4d38a6f7 sock_from_file -EXPORT_SYMBOL vmlinux 0x4d517a6f acpi_device_set_power -EXPORT_SYMBOL vmlinux 0x4d8cbd53 bdev_dax_pgoff +EXPORT_SYMBOL vmlinux 0x4d43db69 __ip_dev_find +EXPORT_SYMBOL vmlinux 0x4d4d6fd9 inet_addr_type EXPORT_SYMBOL vmlinux 0x4d924f20 memremap +EXPORT_SYMBOL vmlinux 0x4d984e74 dev_deactivate EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase -EXPORT_SYMBOL vmlinux 0x4dae2721 napi_build_skb -EXPORT_SYMBOL vmlinux 0x4dbb4774 xfrm6_rcv_encap -EXPORT_SYMBOL vmlinux 0x4dc9a038 netif_rx EXPORT_SYMBOL vmlinux 0x4dca08ee sync_file_get_fence -EXPORT_SYMBOL vmlinux 0x4dd1e79e component_match_add_typed -EXPORT_SYMBOL vmlinux 0x4ddeb02a tcp_seq_next +EXPORT_SYMBOL vmlinux 0x4de40126 ip_route_me_harder EXPORT_SYMBOL vmlinux 0x4de995ec gen_pool_dma_alloc_algo +EXPORT_SYMBOL vmlinux 0x4dea7c50 blk_mq_tagset_wait_completed_request +EXPORT_SYMBOL vmlinux 0x4deaf917 flow_rule_match_basic EXPORT_SYMBOL vmlinux 0x4df02057 crc32_be EXPORT_SYMBOL vmlinux 0x4df2ea84 gen_estimator_read EXPORT_SYMBOL vmlinux 0x4dfa8d4b mutex_lock -EXPORT_SYMBOL vmlinux 0x4e04d39a inet6_register_protosw -EXPORT_SYMBOL vmlinux 0x4e1ad626 xfrm_state_alloc -EXPORT_SYMBOL vmlinux 0x4e1d882a inet6_del_protocol +EXPORT_SYMBOL vmlinux 0x4dfb0626 napi_schedule_prep +EXPORT_SYMBOL vmlinux 0x4e0c2b83 phy_read_mmd EXPORT_SYMBOL vmlinux 0x4e20bcf8 radix_tree_tag_set -EXPORT_SYMBOL vmlinux 0x4e21a6c8 d_lookup -EXPORT_SYMBOL vmlinux 0x4e2a64e7 nvdimm_check_and_set_ro EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int -EXPORT_SYMBOL vmlinux 0x4e35ad9f sget EXPORT_SYMBOL vmlinux 0x4e36cdc4 __ubsan_handle_divrem_overflow -EXPORT_SYMBOL vmlinux 0x4e36e571 dev_loopback_xmit EXPORT_SYMBOL vmlinux 0x4e4f0f16 dma_fence_chain_find_seqno EXPORT_SYMBOL vmlinux 0x4e547048 __kmalloc_node_track_caller +EXPORT_SYMBOL vmlinux 0x4e651f96 page_readlink +EXPORT_SYMBOL vmlinux 0x4e66a2b1 do_clone_file_range EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder EXPORT_SYMBOL vmlinux 0x4e6e4b41 radix_tree_delete EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console -EXPORT_SYMBOL vmlinux 0x4e7def06 tcp_sync_mss -EXPORT_SYMBOL vmlinux 0x4e88b720 inet_rtx_syn_ack -EXPORT_SYMBOL vmlinux 0x4e935f48 mdio_driver_register -EXPORT_SYMBOL vmlinux 0x4e958a61 pci_get_device -EXPORT_SYMBOL vmlinux 0x4e95fc70 lock_two_nondirectories -EXPORT_SYMBOL vmlinux 0x4e9e769e dma_unmap_sg_attrs +EXPORT_SYMBOL vmlinux 0x4e809b03 blk_mq_delay_run_hw_queues +EXPORT_SYMBOL vmlinux 0x4e89292d noop_qdisc +EXPORT_SYMBOL vmlinux 0x4e89ccbf __tracepoint_dma_fence_enable_signal +EXPORT_SYMBOL vmlinux 0x4e96287c flow_indr_dev_register EXPORT_SYMBOL vmlinux 0x4ea25709 dql_reset -EXPORT_SYMBOL vmlinux 0x4eaa7cef rtnl_set_sk_err +EXPORT_SYMBOL vmlinux 0x4ea41392 param_set_copystring EXPORT_SYMBOL vmlinux 0x4eada8f7 security_secid_to_secctx -EXPORT_SYMBOL vmlinux 0x4eb9fda7 tcp_enter_cwr -EXPORT_SYMBOL vmlinux 0x4ebac764 blk_put_request EXPORT_SYMBOL vmlinux 0x4ec54e78 bitmap_to_arr32 -EXPORT_SYMBOL vmlinux 0x4ecc2dc1 blk_cleanup_queue -EXPORT_SYMBOL vmlinux 0x4f014045 netdev_has_upper_dev -EXPORT_SYMBOL vmlinux 0x4f0286e3 pnp_device_attach +EXPORT_SYMBOL vmlinux 0x4ed1d89b devm_pci_remap_cfgspace +EXPORT_SYMBOL vmlinux 0x4efcffe5 __xfrm_decode_session EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create +EXPORT_SYMBOL vmlinux 0x4f1e48e4 pci_ep_cfs_remove_epf_group +EXPORT_SYMBOL vmlinux 0x4f217008 dst_init +EXPORT_SYMBOL vmlinux 0x4f21a207 rdmacg_try_charge EXPORT_SYMBOL vmlinux 0x4f2250ba rtc_tm_to_time64 -EXPORT_SYMBOL vmlinux 0x4f51db16 ___pskb_trim +EXPORT_SYMBOL vmlinux 0x4f244584 dec_zone_page_state +EXPORT_SYMBOL vmlinux 0x4f2af6c5 mmc_detect_card_removed +EXPORT_SYMBOL vmlinux 0x4f36f247 make_kgid +EXPORT_SYMBOL vmlinux 0x4f45494f netdev_lower_get_first_private_rcu EXPORT_SYMBOL vmlinux 0x4f55166f acpi_set_current_resources -EXPORT_SYMBOL vmlinux 0x4f5a5e06 input_get_poll_interval -EXPORT_SYMBOL vmlinux 0x4f66d743 devm_memunmap -EXPORT_SYMBOL vmlinux 0x4f66e0fd input_release_device +EXPORT_SYMBOL vmlinux 0x4f5d47a3 devm_clk_get_optional EXPORT_SYMBOL vmlinux 0x4f709989 security_binder_transfer_binder EXPORT_SYMBOL vmlinux 0x4f711f84 intel_scu_ipc_dev_iowrite8 -EXPORT_SYMBOL vmlinux 0x4f830b6b finalize_exec -EXPORT_SYMBOL vmlinux 0x4f88e33b sock_alloc_file -EXPORT_SYMBOL vmlinux 0x4f9da9ef configfs_unregister_default_group -EXPORT_SYMBOL vmlinux 0x4fc59849 blk_mq_unique_tag +EXPORT_SYMBOL vmlinux 0x4f8ad4df blk_put_request +EXPORT_SYMBOL vmlinux 0x4f94134d mipi_dsi_dcs_enter_sleep_mode EXPORT_SYMBOL vmlinux 0x4fdee897 i8042_command -EXPORT_SYMBOL vmlinux 0x4fe1313b no_llseek -EXPORT_SYMBOL vmlinux 0x4fee8898 nf_hook_slow +EXPORT_SYMBOL vmlinux 0x4ff4542f dev_get_flags +EXPORT_SYMBOL vmlinux 0x4ffea883 flow_block_cb_lookup EXPORT_SYMBOL vmlinux 0x50097088 security_tun_dev_free_security EXPORT_SYMBOL vmlinux 0x5009c71d glob_match -EXPORT_SYMBOL vmlinux 0x501ed773 rtnl_unicast +EXPORT_SYMBOL vmlinux 0x50109c2d rproc_of_parse_firmware +EXPORT_SYMBOL vmlinux 0x5016178f __SCK__tp_func_kmem_cache_alloc_node EXPORT_SYMBOL vmlinux 0x5021bd81 _raw_write_lock_irqsave +EXPORT_SYMBOL vmlinux 0x5022b710 free_buffer_head EXPORT_SYMBOL vmlinux 0x5027bde2 acpi_acquire_mutex +EXPORT_SYMBOL vmlinux 0x505c47ba xp_dma_sync_for_cpu_slow EXPORT_SYMBOL vmlinux 0x50624917 sha1_init +EXPORT_SYMBOL vmlinux 0x506d82ef agp_alloc_bridge EXPORT_SYMBOL vmlinux 0x506dff1a __genradix_free -EXPORT_SYMBOL vmlinux 0x506eb759 sock_bindtoindex -EXPORT_SYMBOL vmlinux 0x50785698 bio_integrity_add_page -EXPORT_SYMBOL vmlinux 0x508cd89c pci_bus_size_bridges -EXPORT_SYMBOL vmlinux 0x509419fe bio_copy_data_iter +EXPORT_SYMBOL vmlinux 0x506eb06b __phy_read_mmd +EXPORT_SYMBOL vmlinux 0x507544f7 sync_file_create +EXPORT_SYMBOL vmlinux 0x5078fd67 mmc_erase +EXPORT_SYMBOL vmlinux 0x508489ba tty_hung_up_p +EXPORT_SYMBOL vmlinux 0x50875f44 mmc_detect_change +EXPORT_SYMBOL vmlinux 0x508f1a8f ipv6_dev_mc_dec +EXPORT_SYMBOL vmlinux 0x508f4fd7 proc_create_data +EXPORT_SYMBOL vmlinux 0x509b04a8 __fib6_flush_trees EXPORT_SYMBOL vmlinux 0x509b64ea acpi_has_method EXPORT_SYMBOL vmlinux 0x50a4698c fb_videomode_to_modelist +EXPORT_SYMBOL vmlinux 0x50acaeb4 __napi_schedule +EXPORT_SYMBOL vmlinux 0x50ade865 mdiobus_is_registered_device +EXPORT_SYMBOL vmlinux 0x50b27055 __sock_create EXPORT_SYMBOL vmlinux 0x50b73ce2 rfkill_find_type EXPORT_SYMBOL vmlinux 0x50be748d security_ib_free_security EXPORT_SYMBOL vmlinux 0x50cf7585 hex2bin EXPORT_SYMBOL vmlinux 0x50d035c2 vsscanf +EXPORT_SYMBOL vmlinux 0x50d4c06e tcp_mtup_init EXPORT_SYMBOL vmlinux 0x50d68377 arch_phys_wc_del -EXPORT_SYMBOL vmlinux 0x50da5547 single_open -EXPORT_SYMBOL vmlinux 0x50df3410 scsi_device_lookup -EXPORT_SYMBOL vmlinux 0x50e4d04b key_task_permission -EXPORT_SYMBOL vmlinux 0x50f8b300 blk_rq_map_user +EXPORT_SYMBOL vmlinux 0x50e0bdcf pci_bus_assign_resources EXPORT_SYMBOL vmlinux 0x50f91491 __genradix_ptr EXPORT_SYMBOL vmlinux 0x5102a30b do_wait_intr_irq EXPORT_SYMBOL vmlinux 0x5107701c __do_once_done -EXPORT_SYMBOL vmlinux 0x51225d72 vfs_rename +EXPORT_SYMBOL vmlinux 0x5107e021 netdev_has_any_upper_dev +EXPORT_SYMBOL vmlinux 0x5120dca4 inode_init_owner +EXPORT_SYMBOL vmlinux 0x51219d22 bio_clone_fast EXPORT_SYMBOL vmlinux 0x512afb54 nla_put_nohdr -EXPORT_SYMBOL vmlinux 0x514aba6b iov_iter_npages EXPORT_SYMBOL vmlinux 0x515083bf acpi_release_mutex -EXPORT_SYMBOL vmlinux 0x5152dbbf phy_ethtool_nway_reset EXPORT_SYMBOL vmlinux 0x51641162 opal_unlock_from_suspend -EXPORT_SYMBOL vmlinux 0x5170bf9d seg6_push_hmac -EXPORT_SYMBOL vmlinux 0x5172a450 inet6_protos -EXPORT_SYMBOL vmlinux 0x5185e43a generic_file_llseek +EXPORT_SYMBOL vmlinux 0x518ed934 bprm_change_interp EXPORT_SYMBOL vmlinux 0x51a511eb _raw_write_lock_bh -EXPORT_SYMBOL vmlinux 0x51c3a45d pci_restore_state +EXPORT_SYMBOL vmlinux 0x51cab70f mipi_dsi_dcs_set_tear_off +EXPORT_SYMBOL vmlinux 0x51ccf021 alloc_xenballooned_pages EXPORT_SYMBOL vmlinux 0x51d12d4e acpi_pci_disabled -EXPORT_SYMBOL vmlinux 0x51e867d0 netpoll_setup +EXPORT_SYMBOL vmlinux 0x51f0c67a register_tcf_proto_ops EXPORT_SYMBOL vmlinux 0x51f298e0 intel_scu_ipc_dev_ioread8 EXPORT_SYMBOL vmlinux 0x51f86a1a blk_limits_io_opt -EXPORT_SYMBOL vmlinux 0x52047d3c address_space_init_once -EXPORT_SYMBOL vmlinux 0x5204a18c security_binder_transfer_file -EXPORT_SYMBOL vmlinux 0x5206684e tcf_block_get -EXPORT_SYMBOL vmlinux 0x52125574 key_put +EXPORT_SYMBOL vmlinux 0x5200f6e3 generic_pipe_buf_try_steal +EXPORT_SYMBOL vmlinux 0x520ba3c7 xfrm_trans_queue +EXPORT_SYMBOL vmlinux 0x520c9c77 ip_frag_next EXPORT_SYMBOL vmlinux 0x52185192 __nla_reserve_nohdr -EXPORT_SYMBOL vmlinux 0x521beb47 no_seek_end_llseek -EXPORT_SYMBOL vmlinux 0x521cc303 agp_generic_create_gatt_table -EXPORT_SYMBOL vmlinux 0x524b4be2 blk_mq_start_hw_queues -EXPORT_SYMBOL vmlinux 0x52697496 inode_io_list_del +EXPORT_SYMBOL vmlinux 0x521cb51c pnpacpi_protocol +EXPORT_SYMBOL vmlinux 0x521fdd53 set_nlink +EXPORT_SYMBOL vmlinux 0x52295be9 tcp_sock_set_nodelay +EXPORT_SYMBOL vmlinux 0x522d7305 iov_iter_get_pages +EXPORT_SYMBOL vmlinux 0x525fc19d sb_set_blocksize +EXPORT_SYMBOL vmlinux 0x52673010 current_task EXPORT_SYMBOL vmlinux 0x526eef2c hdmi_vendor_infoframe_pack -EXPORT_SYMBOL vmlinux 0x528b43e6 init_pseudo -EXPORT_SYMBOL vmlinux 0x528b7bb3 ip_queue_xmit +EXPORT_SYMBOL vmlinux 0x526fb1d4 fscrypt_zeroout_range +EXPORT_SYMBOL vmlinux 0x5271c5c9 init_pseudo +EXPORT_SYMBOL vmlinux 0x528062f1 rproc_get_by_child EXPORT_SYMBOL vmlinux 0x52983a4f vme_master_write -EXPORT_SYMBOL vmlinux 0x52991b5f skb_udp_tunnel_segment -EXPORT_SYMBOL vmlinux 0x52a3141b generic_file_fsync -EXPORT_SYMBOL vmlinux 0x52a36d8b sk_dst_check -EXPORT_SYMBOL vmlinux 0x52a634a4 dev_get_by_name_rcu -EXPORT_SYMBOL vmlinux 0x52accca0 tcp_rcv_established -EXPORT_SYMBOL vmlinux 0x52ae99d8 inode_needs_sync +EXPORT_SYMBOL vmlinux 0x52adc523 ethtool_rx_flow_rule_destroy EXPORT_SYMBOL vmlinux 0x52ba6325 __cpuhp_setup_state -EXPORT_SYMBOL vmlinux 0x52baf13a devm_clk_hw_register_clkdev +EXPORT_SYMBOL vmlinux 0x52bf1119 iommu_put_dma_cookie EXPORT_SYMBOL vmlinux 0x52d717da xz_dec_init EXPORT_SYMBOL vmlinux 0x52dcb85b __traceiter_kmalloc -EXPORT_SYMBOL vmlinux 0x52e22aaa skb_headers_offset_update -EXPORT_SYMBOL vmlinux 0x52e2c2c7 neigh_destroy +EXPORT_SYMBOL vmlinux 0x52e5a242 scsi_host_alloc EXPORT_SYMBOL vmlinux 0x52ecbc75 crc_ccitt -EXPORT_SYMBOL vmlinux 0x53097e28 acpi_dev_get_first_match_dev +EXPORT_SYMBOL vmlinux 0x52f40404 elv_rb_find +EXPORT_SYMBOL vmlinux 0x52f94908 zpool_register_driver EXPORT_SYMBOL vmlinux 0x530b1e98 pm_suspend -EXPORT_SYMBOL vmlinux 0x530c9ea5 dev_lstats_read EXPORT_SYMBOL vmlinux 0x53126ecc __percpu_counter_sum EXPORT_SYMBOL vmlinux 0x531b604e __virt_addr_valid -EXPORT_SYMBOL vmlinux 0x53291077 deactivate_super -EXPORT_SYMBOL vmlinux 0x532be4a5 blk_queue_flag_set +EXPORT_SYMBOL vmlinux 0x531eb0bb dev_mc_sync EXPORT_SYMBOL vmlinux 0x533206b5 sort_r -EXPORT_SYMBOL vmlinux 0x5336afd7 vme_dma_request +EXPORT_SYMBOL vmlinux 0x5333b7c9 tcf_em_tree_dump EXPORT_SYMBOL vmlinux 0x5338184f ethtool_sprintf -EXPORT_SYMBOL vmlinux 0x53448d20 tcp_create_openreq_child +EXPORT_SYMBOL vmlinux 0x5339f419 pnp_register_card_driver +EXPORT_SYMBOL vmlinux 0x534755be dcb_setapp +EXPORT_SYMBOL vmlinux 0x534ff463 mipi_dsi_device_unregister +EXPORT_SYMBOL vmlinux 0x5351d1ac mark_buffer_dirty EXPORT_SYMBOL vmlinux 0x53569707 this_cpu_off -EXPORT_SYMBOL vmlinux 0x535823dd iov_iter_zero -EXPORT_SYMBOL vmlinux 0x53830956 tcf_action_exec -EXPORT_SYMBOL vmlinux 0x53830c60 dma_find_channel -EXPORT_SYMBOL vmlinux 0x5383242b __scsi_iterate_devices -EXPORT_SYMBOL vmlinux 0x5393ca75 phy_print_status -EXPORT_SYMBOL vmlinux 0x53a247c3 phy_config_aneg -EXPORT_SYMBOL vmlinux 0x53a8967d __mmc_claim_host +EXPORT_SYMBOL vmlinux 0x5357b250 udp_read_sock +EXPORT_SYMBOL vmlinux 0x5372d5f9 unregister_cdrom +EXPORT_SYMBOL vmlinux 0x5379a449 kiocb_set_cancel_fn +EXPORT_SYMBOL vmlinux 0x53834d61 pcibios_resource_to_bus +EXPORT_SYMBOL vmlinux 0x5384b96d __netdev_notify_peers +EXPORT_SYMBOL vmlinux 0x539d0586 sock_no_mmap EXPORT_SYMBOL vmlinux 0x53b954a2 up_read -EXPORT_SYMBOL vmlinux 0x53c975aa sock_register -EXPORT_SYMBOL vmlinux 0x53cf7dc8 blk_mq_queue_stopped -EXPORT_SYMBOL vmlinux 0x53dae330 blk_mq_rq_cpu +EXPORT_SYMBOL vmlinux 0x53b999fe mipi_dsi_dcs_get_pixel_format +EXPORT_SYMBOL vmlinux 0x53d5f6f7 phy_error EXPORT_SYMBOL vmlinux 0x53e50ffa first_ec +EXPORT_SYMBOL vmlinux 0x53f0a5a3 xfrm_state_check_expire EXPORT_SYMBOL vmlinux 0x53fa36d1 ZSTD_decompressBlock -EXPORT_SYMBOL vmlinux 0x53ff8668 sock_no_listen +EXPORT_SYMBOL vmlinux 0x5405dfa1 dev_pick_tx_zero +EXPORT_SYMBOL vmlinux 0x5414d56a flow_rule_match_tcp EXPORT_SYMBOL vmlinux 0x54175c5f acpi_read_bit_register -EXPORT_SYMBOL vmlinux 0x5418e2c5 devm_ioremap -EXPORT_SYMBOL vmlinux 0x5425e96c flow_block_cb_lookup -EXPORT_SYMBOL vmlinux 0x5427fbc5 __scm_destroy +EXPORT_SYMBOL vmlinux 0x542d0705 iterate_dir EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start -EXPORT_SYMBOL vmlinux 0x54426b0d fwnode_mdiobus_register_phy -EXPORT_SYMBOL vmlinux 0x5456cd7a genphy_setup_forced +EXPORT_SYMBOL vmlinux 0x544e4f51 block_write_full_page +EXPORT_SYMBOL vmlinux 0x545138fa netif_stacked_transfer_operstate +EXPORT_SYMBOL vmlinux 0x54659d25 set_binfmt +EXPORT_SYMBOL vmlinux 0x546cd2e3 set_pages_array_wb +EXPORT_SYMBOL vmlinux 0x5478b13a vm_map_pages +EXPORT_SYMBOL vmlinux 0x54792084 blk_rq_append_bio EXPORT_SYMBOL vmlinux 0x547e3344 acpi_disable -EXPORT_SYMBOL vmlinux 0x549e0d4c inet6_ioctl +EXPORT_SYMBOL vmlinux 0x54896885 devm_get_clk_from_child +EXPORT_SYMBOL vmlinux 0x54a234f0 simple_statfs +EXPORT_SYMBOL vmlinux 0x54a24feb alloc_pages +EXPORT_SYMBOL vmlinux 0x54a6fa26 noop_llseek EXPORT_SYMBOL vmlinux 0x54b1fac6 __ubsan_handle_load_invalid_value EXPORT_SYMBOL vmlinux 0x54b22bb1 __SCT__tp_func_mmap_lock_acquire_returned -EXPORT_SYMBOL vmlinux 0x54d8764e kernel_param_lock -EXPORT_SYMBOL vmlinux 0x54da7769 vga_set_legacy_decoding -EXPORT_SYMBOL vmlinux 0x54dd6159 blk_queue_dma_alignment -EXPORT_SYMBOL vmlinux 0x54dfc4f9 cdrom_check_events -EXPORT_SYMBOL vmlinux 0x54e093d2 gnet_stats_start_copy_compat +EXPORT_SYMBOL vmlinux 0x54c5ba86 xfrm_unregister_type_offload EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp EXPORT_SYMBOL vmlinux 0x54ea6dfe xen_start_flags -EXPORT_SYMBOL vmlinux 0x55024ba6 file_path EXPORT_SYMBOL vmlinux 0x5506b8f7 netlbl_bitmap_setbit -EXPORT_SYMBOL vmlinux 0x550af12a kthread_associate_blkcg +EXPORT_SYMBOL vmlinux 0x551381c7 mmc_can_trim EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color -EXPORT_SYMBOL vmlinux 0x552a52cc devfreq_unregister_notifier EXPORT_SYMBOL vmlinux 0x55385e2e __x86_indirect_thunk_r14 -EXPORT_SYMBOL vmlinux 0x553b4d29 writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0x5540a05e ip_local_deliver EXPORT_SYMBOL vmlinux 0x554ae3a4 irq_poll_sched -EXPORT_SYMBOL vmlinux 0x5560542a backlight_device_set_brightness +EXPORT_SYMBOL vmlinux 0x555ac490 neigh_xmit EXPORT_SYMBOL vmlinux 0x556422b3 ioremap_cache EXPORT_SYMBOL vmlinux 0x556b5d62 __kfifo_dma_in_prepare_r EXPORT_SYMBOL vmlinux 0x556cca46 x86_apple_machine +EXPORT_SYMBOL vmlinux 0x557c1522 pcim_set_mwi +EXPORT_SYMBOL vmlinux 0x5588be9d fs_lookup_param EXPORT_SYMBOL vmlinux 0x558b281d aes_expandkey -EXPORT_SYMBOL vmlinux 0x55a48ea1 mmc_gpio_get_ro -EXPORT_SYMBOL vmlinux 0x55badf61 skb_page_frag_refill +EXPORT_SYMBOL vmlinux 0x558b3a00 __set_page_dirty_buffers +EXPORT_SYMBOL vmlinux 0x5591a871 netif_tx_wake_queue +EXPORT_SYMBOL vmlinux 0x55965170 jbd2_journal_start_reserved +EXPORT_SYMBOL vmlinux 0x559b972f max8998_write_reg +EXPORT_SYMBOL vmlinux 0x55a278b8 wait_on_page_private_2 +EXPORT_SYMBOL vmlinux 0x55bafe15 vga_switcheroo_register_client +EXPORT_SYMBOL vmlinux 0x55dc419c param_ops_int EXPORT_SYMBOL vmlinux 0x55e31703 ethtool_convert_link_mode_to_legacy_u32 +EXPORT_SYMBOL vmlinux 0x55e4fb7d sock_common_getsockopt EXPORT_SYMBOL vmlinux 0x55f95e07 ioremap_prot -EXPORT_SYMBOL vmlinux 0x562aa3c5 pnp_request_card_device +EXPORT_SYMBOL vmlinux 0x5634d021 give_up_console EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user -EXPORT_SYMBOL vmlinux 0x56431ee2 scsi_eh_finish_cmd EXPORT_SYMBOL vmlinux 0x56470118 __warn_printk -EXPORT_SYMBOL vmlinux 0x5648a10f thaw_bdev EXPORT_SYMBOL vmlinux 0x564f7608 acpi_reconfig_notifier_register EXPORT_SYMBOL vmlinux 0x56555401 nla_put_64bit -EXPORT_SYMBOL vmlinux 0x565b0476 security_sctp_sk_clone -EXPORT_SYMBOL vmlinux 0x565b4808 phy_support_sym_pause -EXPORT_SYMBOL vmlinux 0x565deead sk_send_sigurg -EXPORT_SYMBOL vmlinux 0x56656db2 page_pool_create -EXPORT_SYMBOL vmlinux 0x56708903 dev_queue_xmit +EXPORT_SYMBOL vmlinux 0x565c3945 cros_ec_prepare_tx +EXPORT_SYMBOL vmlinux 0x567d59d2 md_flush_request +EXPORT_SYMBOL vmlinux 0x567dbdb1 pcie_capability_read_word EXPORT_SYMBOL vmlinux 0x56802ae8 rps_cpu_mask -EXPORT_SYMBOL vmlinux 0x568c5427 agp_generic_destroy_page -EXPORT_SYMBOL vmlinux 0x56936ca4 get_user_pages_unlocked -EXPORT_SYMBOL vmlinux 0x56aa6ad0 flow_rule_match_ip -EXPORT_SYMBOL vmlinux 0x56b9aa4f seq_lseek -EXPORT_SYMBOL vmlinux 0x56c6cdbd pci_set_power_state +EXPORT_SYMBOL vmlinux 0x568a1812 devm_input_allocate_device +EXPORT_SYMBOL vmlinux 0x569b18a8 bioset_init +EXPORT_SYMBOL vmlinux 0x56a0c081 devm_extcon_unregister_notifier +EXPORT_SYMBOL vmlinux 0x56a2a50b scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x56a2b92f jbd2_journal_free_reserved +EXPORT_SYMBOL vmlinux 0x56a92b68 register_netdevice +EXPORT_SYMBOL vmlinux 0x56a9cd6f blk_queue_flag_clear EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x56d20853 netdev_update_features EXPORT_SYMBOL vmlinux 0x56de5ace __cpuhp_remove_state -EXPORT_SYMBOL vmlinux 0x56e8df72 dma_alloc_attrs -EXPORT_SYMBOL vmlinux 0x56fbd4c5 file_open_root -EXPORT_SYMBOL vmlinux 0x570e4c9d inet_protos -EXPORT_SYMBOL vmlinux 0x57123923 genphy_update_link -EXPORT_SYMBOL vmlinux 0x571ce320 xfrm_sad_getinfo -EXPORT_SYMBOL vmlinux 0x571cee00 serio_interrupt -EXPORT_SYMBOL vmlinux 0x57370d9a input_register_handler -EXPORT_SYMBOL vmlinux 0x57443f90 set_nlink -EXPORT_SYMBOL vmlinux 0x574927c8 vga_switcheroo_register_handler +EXPORT_SYMBOL vmlinux 0x57041777 phy_do_ioctl_running +EXPORT_SYMBOL vmlinux 0x5719e9ac amd_iommu_domain_set_gcr3 +EXPORT_SYMBOL vmlinux 0x571a3caa scsi_report_opcode +EXPORT_SYMBOL vmlinux 0x57371abd dquot_quota_on EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region -EXPORT_SYMBOL vmlinux 0x57554830 ipmi_platform_add +EXPORT_SYMBOL vmlinux 0x574e08e4 fqdir_init EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put -EXPORT_SYMBOL vmlinux 0x5765c890 phy_modify_paged_changed +EXPORT_SYMBOL vmlinux 0x57703b68 skb_copy_and_csum_dev +EXPORT_SYMBOL vmlinux 0x577d2735 simple_write_begin EXPORT_SYMBOL vmlinux 0x578a408b ZSTD_initDCtx EXPORT_SYMBOL vmlinux 0x57900416 gen_pool_fixed_alloc EXPORT_SYMBOL vmlinux 0x5792f848 strlcpy +EXPORT_SYMBOL vmlinux 0x579c8f71 __SCK__tp_func_kmem_cache_free +EXPORT_SYMBOL vmlinux 0x57ba5f76 pci_scan_single_device EXPORT_SYMBOL vmlinux 0x57bc19d2 down_write -EXPORT_SYMBOL vmlinux 0x57be4501 reuseport_attach_prog -EXPORT_SYMBOL vmlinux 0x57c276c5 genl_register_family -EXPORT_SYMBOL vmlinux 0x57d043f7 crypto_sha256_update -EXPORT_SYMBOL vmlinux 0x57d37f86 pci_get_class -EXPORT_SYMBOL vmlinux 0x57e04438 agp_backend_acquire -EXPORT_SYMBOL vmlinux 0x57e5cc89 blkdev_get_by_path -EXPORT_SYMBOL vmlinux 0x57ee674f netdev_bind_sb_channel_queue -EXPORT_SYMBOL vmlinux 0x57f0033a mmc_can_discard -EXPORT_SYMBOL vmlinux 0x57f5f464 proc_mkdir_mode -EXPORT_SYMBOL vmlinux 0x5801cbc6 fc_mount -EXPORT_SYMBOL vmlinux 0x58026b2c security_tun_dev_attach +EXPORT_SYMBOL vmlinux 0x57c0e987 pci_reenable_device +EXPORT_SYMBOL vmlinux 0x57d93f10 fscrypt_decrypt_block_inplace +EXPORT_SYMBOL vmlinux 0x58111506 user_revoke EXPORT_SYMBOL vmlinux 0x58125fbb nla_reserve_64bit -EXPORT_SYMBOL vmlinux 0x58177095 tcp_fastopen_defer_connect EXPORT_SYMBOL vmlinux 0x5818fe3c posix_acl_from_mode -EXPORT_SYMBOL vmlinux 0x581953a2 input_match_device_id +EXPORT_SYMBOL vmlinux 0x581e0fb8 pci_enable_wake EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate -EXPORT_SYMBOL vmlinux 0x5825ccb1 sg_alloc_table_from_pages_segment -EXPORT_SYMBOL vmlinux 0x582765db netdev_notify_peers EXPORT_SYMBOL vmlinux 0x582b6275 xfrm_if_unregister_cb -EXPORT_SYMBOL vmlinux 0x58355869 blk_dump_rq_flags +EXPORT_SYMBOL vmlinux 0x5836696d seq_put_decimal_ll EXPORT_SYMBOL vmlinux 0x5838f6c9 rtc_valid_tm -EXPORT_SYMBOL vmlinux 0x5840758d intel_gmch_probe -EXPORT_SYMBOL vmlinux 0x58547200 qdisc_hash_del -EXPORT_SYMBOL vmlinux 0x585956e1 i2c_smbus_write_byte_data -EXPORT_SYMBOL vmlinux 0x586090d4 udp_poll -EXPORT_SYMBOL vmlinux 0x58720486 jbd2_journal_init_dev +EXPORT_SYMBOL vmlinux 0x5844fd44 md_bitmap_update_sb +EXPORT_SYMBOL vmlinux 0x585a5340 sock_common_recvmsg +EXPORT_SYMBOL vmlinux 0x586b2019 param_get_byte +EXPORT_SYMBOL vmlinux 0x5870f4ac tcp_conn_request +EXPORT_SYMBOL vmlinux 0x5872033f input_alloc_absinfo +EXPORT_SYMBOL vmlinux 0x58741241 ipv4_dst_check EXPORT_SYMBOL vmlinux 0x587b0954 kvasprintf EXPORT_SYMBOL vmlinux 0x587f22d7 devmap_managed_key -EXPORT_SYMBOL vmlinux 0x5894c16f __ip_mc_inc_group -EXPORT_SYMBOL vmlinux 0x58acaa11 netdev_emerg +EXPORT_SYMBOL vmlinux 0x587f8c4f md_unregister_thread +EXPORT_SYMBOL vmlinux 0x5888bed0 dcache_dir_close +EXPORT_SYMBOL vmlinux 0x5890250a md_integrity_add_rdev +EXPORT_SYMBOL vmlinux 0x5899e7a9 inet_sk_rx_dst_set EXPORT_SYMBOL vmlinux 0x58acf24b mdiobus_register_board_info -EXPORT_SYMBOL vmlinux 0x58adec6d sock_no_shutdown EXPORT_SYMBOL vmlinux 0x58b4645c dev_close_many EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard -EXPORT_SYMBOL vmlinux 0x58caec60 genlmsg_multicast_allns -EXPORT_SYMBOL vmlinux 0x58d2278e __nd_driver_register -EXPORT_SYMBOL vmlinux 0x58de480d iov_iter_get_pages +EXPORT_SYMBOL vmlinux 0x58bde00f skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x58c5fbc3 iter_file_splice_write +EXPORT_SYMBOL vmlinux 0x58d1a081 flow_block_cb_alloc +EXPORT_SYMBOL vmlinux 0x58ddee7e xfrm_state_lookup EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io -EXPORT_SYMBOL vmlinux 0x590174f2 send_sig -EXPORT_SYMBOL vmlinux 0x590c6582 iov_iter_kvec -EXPORT_SYMBOL vmlinux 0x5918e461 eth_header_parse -EXPORT_SYMBOL vmlinux 0x5919aeed mr_mfc_find_any -EXPORT_SYMBOL vmlinux 0x592c8969 pci_read_config_byte -EXPORT_SYMBOL vmlinux 0x59326d3b pcie_port_service_unregister -EXPORT_SYMBOL vmlinux 0x5938b390 dev_set_threaded -EXPORT_SYMBOL vmlinux 0x593dde4f watchdog_unregister_governor +EXPORT_SYMBOL vmlinux 0x58e56371 __napi_alloc_skb +EXPORT_SYMBOL vmlinux 0x58f79f91 register_nexthop_notifier +EXPORT_SYMBOL vmlinux 0x58ff24ad sock_pfree +EXPORT_SYMBOL vmlinux 0x5909f405 dcb_ieee_getapp_mask +EXPORT_SYMBOL vmlinux 0x590f5240 padata_do_parallel +EXPORT_SYMBOL vmlinux 0x5917344a ps2_drain +EXPORT_SYMBOL vmlinux 0x59197476 dm_kcopyd_copy EXPORT_SYMBOL vmlinux 0x593edc4b cpu_tlbstate_shared EXPORT_SYMBOL vmlinux 0x594bf15b ioport_map -EXPORT_SYMBOL vmlinux 0x594fc28a pfifo_fast_ops -EXPORT_SYMBOL vmlinux 0x5957b8f0 md_bitmap_cond_end_sync +EXPORT_SYMBOL vmlinux 0x594e3646 __skb_warn_lro_forwarding EXPORT_SYMBOL vmlinux 0x595d8002 hdmi_infoframe_pack -EXPORT_SYMBOL vmlinux 0x59795f0d send_sig_info -EXPORT_SYMBOL vmlinux 0x5982f58a iw_handler_set_thrspy +EXPORT_SYMBOL vmlinux 0x5970ef82 scm_detach_fds +EXPORT_SYMBOL vmlinux 0x599f2318 serio_close EXPORT_SYMBOL vmlinux 0x599fb41c kvmalloc_node EXPORT_SYMBOL vmlinux 0x59a2f0ee packing EXPORT_SYMBOL vmlinux 0x59b4ac3e tcp_memory_allocated -EXPORT_SYMBOL vmlinux 0x59db2485 i2c_transfer -EXPORT_SYMBOL vmlinux 0x59f1112d freeze_super -EXPORT_SYMBOL vmlinux 0x59f52d42 readahead_expand -EXPORT_SYMBOL vmlinux 0x59f737a9 kill_fasync -EXPORT_SYMBOL vmlinux 0x59fd45e6 tc_setup_cb_replace +EXPORT_SYMBOL vmlinux 0x59b61fe8 pcie_bandwidth_available +EXPORT_SYMBOL vmlinux 0x5a0a2905 ip6_err_gen_icmpv6_unreach EXPORT_SYMBOL vmlinux 0x5a0b73d0 zlib_deflateInit2 -EXPORT_SYMBOL vmlinux 0x5a24b985 frontswap_register_ops -EXPORT_SYMBOL vmlinux 0x5a269aaa ip6mr_rule_default +EXPORT_SYMBOL vmlinux 0x5a26ffd7 bio_init +EXPORT_SYMBOL vmlinux 0x5a28939e __scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x5a28e1c9 tcp_rtx_synack EXPORT_SYMBOL vmlinux 0x5a290250 hdmi_drm_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0x5a2bd9c4 blk_queue_max_discard_sectors +EXPORT_SYMBOL vmlinux 0x5a2a12c3 security_binder_transfer_file EXPORT_SYMBOL vmlinux 0x5a44f8cb __crypto_memneq EXPORT_SYMBOL vmlinux 0x5a4896a8 __put_user_2 +EXPORT_SYMBOL vmlinux 0x5a4b31b2 __post_watch_notification EXPORT_SYMBOL vmlinux 0x5a4d313e gf128mul_4k_lle EXPORT_SYMBOL vmlinux 0x5a5a2271 __cpu_online_mask -EXPORT_SYMBOL vmlinux 0x5a7784be jbd2_journal_invalidatepage -EXPORT_SYMBOL vmlinux 0x5a89506a udp_ioctl +EXPORT_SYMBOL vmlinux 0x5a691c80 clear_nlink +EXPORT_SYMBOL vmlinux 0x5a75b00b pm8606_osc_disable EXPORT_SYMBOL vmlinux 0x5a8ae15a ZSTD_initDDict -EXPORT_SYMBOL vmlinux 0x5a90ed25 scsicam_bios_param EXPORT_SYMBOL vmlinux 0x5a921311 strncmp -EXPORT_SYMBOL vmlinux 0x5a9cfd48 vme_dma_list_exec -EXPORT_SYMBOL vmlinux 0x5aa77284 pps_register_source -EXPORT_SYMBOL vmlinux 0x5ac099d3 path_get -EXPORT_SYMBOL vmlinux 0x5acfabd8 inet_select_addr +EXPORT_SYMBOL vmlinux 0x5a99a0d7 flow_get_u32_dst +EXPORT_SYMBOL vmlinux 0x5aa7e49b tty_devnum +EXPORT_SYMBOL vmlinux 0x5aa89648 locks_lock_inode_wait EXPORT_SYMBOL vmlinux 0x5ae1154b __traceiter_kfree -EXPORT_SYMBOL vmlinux 0x5ae7813b eth_header_cache -EXPORT_SYMBOL vmlinux 0x5b024c64 show_init_ipc_ns +EXPORT_SYMBOL vmlinux 0x5af7b1fc devm_clk_release_clkdev +EXPORT_SYMBOL vmlinux 0x5b0907f0 tcp_mss_to_mtu +EXPORT_SYMBOL vmlinux 0x5b232ee3 d_alloc_anon EXPORT_SYMBOL vmlinux 0x5b2f27fb do_wait_intr -EXPORT_SYMBOL vmlinux 0x5b34d07e dev_set_alias +EXPORT_SYMBOL vmlinux 0x5b346e47 scsi_host_lookup EXPORT_SYMBOL vmlinux 0x5b36d5dd utf8agemax EXPORT_SYMBOL vmlinux 0x5b3e282f xa_store -EXPORT_SYMBOL vmlinux 0x5b5329c9 uart_match_port EXPORT_SYMBOL vmlinux 0x5b56860c vm_munmap -EXPORT_SYMBOL vmlinux 0x5b574c7f tty_port_close_end +EXPORT_SYMBOL vmlinux 0x5b62ac59 netpoll_send_udp EXPORT_SYMBOL vmlinux 0x5b641283 arch_phys_wc_add -EXPORT_SYMBOL vmlinux 0x5b701164 md_bitmap_startwrite -EXPORT_SYMBOL vmlinux 0x5b7c287d dma_unmap_page_attrs -EXPORT_SYMBOL vmlinux 0x5b8fa0fe fscrypt_encrypt_block_inplace -EXPORT_SYMBOL vmlinux 0x5b971f97 tcp_rcv_state_process -EXPORT_SYMBOL vmlinux 0x5b9f43fd mdio_device_create +EXPORT_SYMBOL vmlinux 0x5b768272 pcim_iomap +EXPORT_SYMBOL vmlinux 0x5b7f9a35 mr_rtm_dumproute +EXPORT_SYMBOL vmlinux 0x5b8239ca __x86_return_thunk +EXPORT_SYMBOL vmlinux 0x5b8490f3 registered_fb +EXPORT_SYMBOL vmlinux 0x5b92a111 filemap_fault +EXPORT_SYMBOL vmlinux 0x5bad084e vfs_unlink EXPORT_SYMBOL vmlinux 0x5bd4ff88 flow_action_cookie_create -EXPORT_SYMBOL vmlinux 0x5bd74afc tcp_mtu_to_mss +EXPORT_SYMBOL vmlinux 0x5be0ca40 vlan_dev_vlan_proto EXPORT_SYMBOL vmlinux 0x5be63c5b crc32c_csum_stub -EXPORT_SYMBOL vmlinux 0x5bea0f69 vfs_fadvise -EXPORT_SYMBOL vmlinux 0x5bfd2d6a xfrm_register_km +EXPORT_SYMBOL vmlinux 0x5bf9ec01 agp_generic_create_gatt_table +EXPORT_SYMBOL vmlinux 0x5c09ec49 tcf_em_register +EXPORT_SYMBOL vmlinux 0x5c215541 __SCK__tp_func_read_msr EXPORT_SYMBOL vmlinux 0x5c26a53b wait_for_completion_io_timeout +EXPORT_SYMBOL vmlinux 0x5c26d60c netdev_emerg +EXPORT_SYMBOL vmlinux 0x5c2a1caa dev_remove_pack EXPORT_SYMBOL vmlinux 0x5c3c7387 kstrtoull -EXPORT_SYMBOL vmlinux 0x5c67a135 locks_copy_lock -EXPORT_SYMBOL vmlinux 0x5c7024a3 devm_request_resource -EXPORT_SYMBOL vmlinux 0x5c73cd3b input_set_poll_interval -EXPORT_SYMBOL vmlinux 0x5c9930ff iov_iter_discard -EXPORT_SYMBOL vmlinux 0x5c9a2e35 kernel_getpeername -EXPORT_SYMBOL vmlinux 0x5cc2faeb xfrm_replay_seqhi -EXPORT_SYMBOL vmlinux 0x5cd1efd3 flow_rule_match_ipv6_addrs +EXPORT_SYMBOL vmlinux 0x5c556bdd pci_bus_write_config_byte +EXPORT_SYMBOL vmlinux 0x5c56aceb tcp_make_synack +EXPORT_SYMBOL vmlinux 0x5c6c6cdc skb_dequeue +EXPORT_SYMBOL vmlinux 0x5c73129f netif_rx +EXPORT_SYMBOL vmlinux 0x5c9f7334 dev_change_proto_down_generic +EXPORT_SYMBOL vmlinux 0x5caaf358 generic_error_remove_page +EXPORT_SYMBOL vmlinux 0x5cb23121 sock_bind_add +EXPORT_SYMBOL vmlinux 0x5cbc2a1d fscrypt_ioctl_get_policy +EXPORT_SYMBOL vmlinux 0x5cd09b97 sock_init_data +EXPORT_SYMBOL vmlinux 0x5ce1d2ea phy_attach +EXPORT_SYMBOL vmlinux 0x5ce80727 scsi_set_medium_removal EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor +EXPORT_SYMBOL vmlinux 0x5cfb1bba would_dump EXPORT_SYMBOL vmlinux 0x5cfb26a0 acpi_enter_sleep_state -EXPORT_SYMBOL vmlinux 0x5d138bba mipi_dsi_driver_register_full -EXPORT_SYMBOL vmlinux 0x5d21ea11 inet_dev_addr_type -EXPORT_SYMBOL vmlinux 0x5d25d431 jbd2_journal_inode_ranged_wait -EXPORT_SYMBOL vmlinux 0x5d2648c5 devm_devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0x5d2cb57f inet_sk_rebuild_header +EXPORT_SYMBOL vmlinux 0x5d317469 tcf_exts_change +EXPORT_SYMBOL vmlinux 0x5d37036c mr_mfc_seq_idx EXPORT_SYMBOL vmlinux 0x5d3bae9c textsearch_prepare -EXPORT_SYMBOL vmlinux 0x5d423177 generic_pipe_buf_get EXPORT_SYMBOL vmlinux 0x5d49aabc init_wait_var_entry -EXPORT_SYMBOL vmlinux 0x5d4ad74c _dev_alert -EXPORT_SYMBOL vmlinux 0x5d59a314 md_bitmap_free -EXPORT_SYMBOL vmlinux 0x5d8c7854 vga_switcheroo_client_fb_set -EXPORT_SYMBOL vmlinux 0x5d8ecec7 t10_pi_type1_crc -EXPORT_SYMBOL vmlinux 0x5d9c3f61 tty_name -EXPORT_SYMBOL vmlinux 0x5dbd2385 deactivate_locked_super -EXPORT_SYMBOL vmlinux 0x5dc1d830 dma_resv_fini -EXPORT_SYMBOL vmlinux 0x5dfd64f1 udp_seq_next +EXPORT_SYMBOL vmlinux 0x5d50c2ca pcie_capability_clear_and_set_word +EXPORT_SYMBOL vmlinux 0x5d6ad41f cdev_device_add +EXPORT_SYMBOL vmlinux 0x5d85988f netdev_info +EXPORT_SYMBOL vmlinux 0x5d88a63f nd_btt_version +EXPORT_SYMBOL vmlinux 0x5dafbaea xp_dma_sync_for_device_slow +EXPORT_SYMBOL vmlinux 0x5dc7001c scsi_device_set_state +EXPORT_SYMBOL vmlinux 0x5dc7860e __cleancache_invalidate_fs +EXPORT_SYMBOL vmlinux 0x5dd25391 iw_handler_get_spy +EXPORT_SYMBOL vmlinux 0x5de64b97 tcp_shutdown +EXPORT_SYMBOL vmlinux 0x5df97964 find_get_pages_contig +EXPORT_SYMBOL vmlinux 0x5dfbfdec get_thermal_instance EXPORT_SYMBOL vmlinux 0x5dffb495 ZSTD_decompress_usingDDict -EXPORT_SYMBOL vmlinux 0x5e05a9bd jbd2_transaction_committed EXPORT_SYMBOL vmlinux 0x5e06bc5c refcount_dec_and_lock EXPORT_SYMBOL vmlinux 0x5e0ccb9f sha1_transform -EXPORT_SYMBOL vmlinux 0x5e157f43 alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0x5e11892b pci_alloc_irq_vectors_affinity +EXPORT_SYMBOL vmlinux 0x5e13ead6 __skb_flow_get_ports +EXPORT_SYMBOL vmlinux 0x5e1a30a2 bio_alloc_bioset +EXPORT_SYMBOL vmlinux 0x5e32bff9 md_wakeup_thread EXPORT_SYMBOL vmlinux 0x5e332b52 __var_waitqueue EXPORT_SYMBOL vmlinux 0x5e373fb4 gf128mul_64k_bbe -EXPORT_SYMBOL vmlinux 0x5e384720 is_subdir -EXPORT_SYMBOL vmlinux 0x5e4988fd set_anon_super_fc -EXPORT_SYMBOL vmlinux 0x5e551aa4 redraw_screen -EXPORT_SYMBOL vmlinux 0x5e594872 mmc_erase_group_aligned -EXPORT_SYMBOL vmlinux 0x5e5dc429 del_random_ready_callback -EXPORT_SYMBOL vmlinux 0x5e63713a tty_port_lower_dtr_rts -EXPORT_SYMBOL vmlinux 0x5e7db37e unpin_user_page +EXPORT_SYMBOL vmlinux 0x5e44213c find_get_pages_range_tag EXPORT_SYMBOL vmlinux 0x5e855e56 gen_pool_first_fit_align -EXPORT_SYMBOL vmlinux 0x5e8ace17 inet_csk_clear_xmit_timers +EXPORT_SYMBOL vmlinux 0x5e92ac69 device_get_mac_address EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask -EXPORT_SYMBOL vmlinux 0x5e96bafa path_is_mountpoint -EXPORT_SYMBOL vmlinux 0x5e97ce35 __skb_checksum_complete -EXPORT_SYMBOL vmlinux 0x5e99bd9d tcf_idr_cleanup +EXPORT_SYMBOL vmlinux 0x5ea48a64 mmc_retune_unpause EXPORT_SYMBOL vmlinux 0x5eb24829 dm_shift_arg -EXPORT_SYMBOL vmlinux 0x5eb5d431 kmem_cache_free_bulk EXPORT_SYMBOL vmlinux 0x5ec4aee6 put_sg_io_hdr -EXPORT_SYMBOL vmlinux 0x5ec55ad9 skb_seq_read EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch EXPORT_SYMBOL vmlinux 0x5ed90adc int_to_scsilun -EXPORT_SYMBOL vmlinux 0x5ee16721 flow_get_u32_src -EXPORT_SYMBOL vmlinux 0x5ef470b3 generic_file_readonly_mmap +EXPORT_SYMBOL vmlinux 0x5ee0645e vfs_parse_fs_param +EXPORT_SYMBOL vmlinux 0x5eee368b inet6_release EXPORT_SYMBOL vmlinux 0x5ef6a672 gen_pool_for_each_chunk EXPORT_SYMBOL vmlinux 0x5efde8e6 proc_doulongvec_ms_jiffies_minmax +EXPORT_SYMBOL vmlinux 0x5efe48d0 pps_event EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters -EXPORT_SYMBOL vmlinux 0x5f0b34b3 _dev_warn -EXPORT_SYMBOL vmlinux 0x5f0ddb3d gnet_stats_copy_rate_est -EXPORT_SYMBOL vmlinux 0x5f2cbcee __dynamic_netdev_dbg -EXPORT_SYMBOL vmlinux 0x5f3d4423 d_instantiate_anon -EXPORT_SYMBOL vmlinux 0x5f4228d6 kmem_cache_alloc_trace -EXPORT_SYMBOL vmlinux 0x5f4319af input_event -EXPORT_SYMBOL vmlinux 0x5f439914 configfs_register_group -EXPORT_SYMBOL vmlinux 0x5f4d5d4c mmc_erase -EXPORT_SYMBOL vmlinux 0x5f51ce52 rt_dst_alloc +EXPORT_SYMBOL vmlinux 0x5f3ac97e disk_stack_limits +EXPORT_SYMBOL vmlinux 0x5f4e6489 skb_kill_datagram +EXPORT_SYMBOL vmlinux 0x5f522e65 mdiobus_unregister_device EXPORT_SYMBOL vmlinux 0x5f5441c8 __ubsan_handle_alignment_assumption EXPORT_SYMBOL vmlinux 0x5f56663b rdmsrl_on_cpu +EXPORT_SYMBOL vmlinux 0x5f596c88 linkwatch_fire_event EXPORT_SYMBOL vmlinux 0x5f6b889c rproc_va_to_pa -EXPORT_SYMBOL vmlinux 0x5f748d22 vme_dma_list_add -EXPORT_SYMBOL vmlinux 0x5f8dc3d7 __vfs_getxattr +EXPORT_SYMBOL vmlinux 0x5f73f519 dns_query EXPORT_SYMBOL vmlinux 0x5f93525c acpi_extract_package EXPORT_SYMBOL vmlinux 0x5f99383a ioread64_hi_lo -EXPORT_SYMBOL vmlinux 0x5fa47882 sock_create_kern -EXPORT_SYMBOL vmlinux 0x5fae6990 pcie_capability_clear_and_set_word +EXPORT_SYMBOL vmlinux 0x5fa24501 __module_put_and_exit +EXPORT_SYMBOL vmlinux 0x5facf12e copy_page_from_iter EXPORT_SYMBOL vmlinux 0x5fc67252 ioread16_rep EXPORT_SYMBOL vmlinux 0x5fc72f0e alloc_pages_exact -EXPORT_SYMBOL vmlinux 0x5fc7528f pci_release_resource EXPORT_SYMBOL vmlinux 0x5fe13529 __SCT__tp_func_spi_transfer_start -EXPORT_SYMBOL vmlinux 0x5febd46b find_get_pages_range_tag -EXPORT_SYMBOL vmlinux 0x5fee2c18 processors +EXPORT_SYMBOL vmlinux 0x5ff4deb1 ip_sock_set_pktinfo EXPORT_SYMBOL vmlinux 0x5ff9eb0e lockref_mark_dead EXPORT_SYMBOL vmlinux 0x5ffedf63 __nla_put_nohdr -EXPORT_SYMBOL vmlinux 0x60036e0f phy_error EXPORT_SYMBOL vmlinux 0x6005c351 zpool_has_pool EXPORT_SYMBOL vmlinux 0x600683d3 do_unblank_screen +EXPORT_SYMBOL vmlinux 0x601e790b vlan_uses_dev +EXPORT_SYMBOL vmlinux 0x601ef429 inet6_protos EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create -EXPORT_SYMBOL vmlinux 0x6030bb34 mmc_can_gpio_cd +EXPORT_SYMBOL vmlinux 0x60268e8c scsi_device_resume EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier -EXPORT_SYMBOL vmlinux 0x6043e4d7 write_dirty_buffer -EXPORT_SYMBOL vmlinux 0x604e4be4 dma_resv_add_shared_fence EXPORT_SYMBOL vmlinux 0x605790dc fiemap_fill_next_extent +EXPORT_SYMBOL vmlinux 0x605e9cb6 get_user_pages_remote +EXPORT_SYMBOL vmlinux 0x60687206 dev_set_allmulti +EXPORT_SYMBOL vmlinux 0x60699a78 icmp6_send +EXPORT_SYMBOL vmlinux 0x607641b6 xsk_tx_completed +EXPORT_SYMBOL vmlinux 0x6078253d skb_prepare_seq_read +EXPORT_SYMBOL vmlinux 0x60798750 jbd2_journal_get_undo_access EXPORT_SYMBOL vmlinux 0x608741b5 __init_swait_queue_head -EXPORT_SYMBOL vmlinux 0x608dbc1a rproc_da_to_va -EXPORT_SYMBOL vmlinux 0x608f9bbf skb_unlink EXPORT_SYMBOL vmlinux 0x6091b333 unregister_chrdev_region EXPORT_SYMBOL vmlinux 0x609bcd98 in6_pton EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net EXPORT_SYMBOL vmlinux 0x60a32ea9 pm_power_off -EXPORT_SYMBOL vmlinux 0x60b0d5bd __pagevec_release +EXPORT_SYMBOL vmlinux 0x60a90cbe pcim_iounmap EXPORT_SYMBOL vmlinux 0x60b3071f neigh_proc_dointvec +EXPORT_SYMBOL vmlinux 0x60b53ab3 udp_skb_destructor +EXPORT_SYMBOL vmlinux 0x60bcee79 vfs_get_super +EXPORT_SYMBOL vmlinux 0x60d50327 agp_put_bridge EXPORT_SYMBOL vmlinux 0x60d8ab30 vme_lm_get -EXPORT_SYMBOL vmlinux 0x60d8cdbb mdiobus_free -EXPORT_SYMBOL vmlinux 0x60f1fc70 free_netdev -EXPORT_SYMBOL vmlinux 0x60f6362c release_pages +EXPORT_SYMBOL vmlinux 0x60e41c24 xen_free_unpopulated_pages +EXPORT_SYMBOL vmlinux 0x60e622c6 tcp_md5_hash_key EXPORT_SYMBOL vmlinux 0x61073e4a acpi_os_map_generic_address -EXPORT_SYMBOL vmlinux 0x6117f88e inet_frags_fini -EXPORT_SYMBOL vmlinux 0x611c220d qdisc_offload_graft_helper -EXPORT_SYMBOL vmlinux 0x612123cd __hw_addr_ref_sync_dev -EXPORT_SYMBOL vmlinux 0x6124db4b netpoll_poll_disable +EXPORT_SYMBOL vmlinux 0x610dfda9 filemap_fdatawait_range_keep_errors EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit -EXPORT_SYMBOL vmlinux 0x612c6ed7 vga_switcheroo_client_probe_defer -EXPORT_SYMBOL vmlinux 0x6146caa6 tty_vhangup -EXPORT_SYMBOL vmlinux 0x614e03a3 netpoll_cleanup +EXPORT_SYMBOL vmlinux 0x612c6608 generic_read_dir +EXPORT_SYMBOL vmlinux 0x6130ce94 genphy_read_mmd_unsupported EXPORT_SYMBOL vmlinux 0x615911d7 __bitmap_set -EXPORT_SYMBOL vmlinux 0x6159561b inet_sendpage -EXPORT_SYMBOL vmlinux 0x61619ec2 skb_copy_expand +EXPORT_SYMBOL vmlinux 0x615ecf3e __i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0x616284cb blk_queue_io_min EXPORT_SYMBOL vmlinux 0x6167e72c vmalloc_no_huge -EXPORT_SYMBOL vmlinux 0x61775a81 scsi_print_result +EXPORT_SYMBOL vmlinux 0x61777da4 napi_gro_flush EXPORT_SYMBOL vmlinux 0x617c452b queued_read_lock_slowpath +EXPORT_SYMBOL vmlinux 0x6184eb99 nosteal_pipe_buf_ops EXPORT_SYMBOL vmlinux 0x6185b747 radix_tree_gang_lookup_tag +EXPORT_SYMBOL vmlinux 0x61874011 phy_mii_ioctl EXPORT_SYMBOL vmlinux 0x618911fc numa_node -EXPORT_SYMBOL vmlinux 0x619131ab tcp_sock_set_nodelay -EXPORT_SYMBOL vmlinux 0x6194809e mipi_dsi_device_unregister EXPORT_SYMBOL vmlinux 0x619cb7dd simple_read_from_buffer EXPORT_SYMBOL vmlinux 0x619dfcdc intel_scu_ipc_dev_readv +EXPORT_SYMBOL vmlinux 0x61aacc6c jbd2_journal_init_inode +EXPORT_SYMBOL vmlinux 0x61aafbd8 inet6_csk_route_req EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull -EXPORT_SYMBOL vmlinux 0x61cd6fd1 pldmfw_flash_image -EXPORT_SYMBOL vmlinux 0x61cdaa74 dquot_get_next_dqblk +EXPORT_SYMBOL vmlinux 0x61c2eaf9 delete_from_page_cache +EXPORT_SYMBOL vmlinux 0x61d13589 put_fs_context EXPORT_SYMBOL vmlinux 0x61e272c9 sha256_final -EXPORT_SYMBOL vmlinux 0x61e5532d phy_suspend +EXPORT_SYMBOL vmlinux 0x61e70ff1 cpufreq_get_policy EXPORT_SYMBOL vmlinux 0x61ea189b fb_pad_aligned_buffer -EXPORT_SYMBOL vmlinux 0x620db18a passthru_features_check -EXPORT_SYMBOL vmlinux 0x62104d74 request_partial_firmware_into_buf +EXPORT_SYMBOL vmlinux 0x61f6b8a6 md_error EXPORT_SYMBOL vmlinux 0x6214aef2 cpufreq_unregister_notifier -EXPORT_SYMBOL vmlinux 0x621f98cd dput +EXPORT_SYMBOL vmlinux 0x621edd54 capable_wrt_inode_uidgid EXPORT_SYMBOL vmlinux 0x6226b9fa machine_to_phys_mapping +EXPORT_SYMBOL vmlinux 0x62283f07 dec_node_page_state EXPORT_SYMBOL vmlinux 0x6228c21f smp_call_function_single -EXPORT_SYMBOL vmlinux 0x623605b3 xfrm_spd_getinfo -EXPORT_SYMBOL vmlinux 0x624609da tso_build_hdr -EXPORT_SYMBOL vmlinux 0x6255e526 netif_napi_add -EXPORT_SYMBOL vmlinux 0x625a29db dquot_quotactl_sysfile_ops +EXPORT_SYMBOL vmlinux 0x622e92ab __ip_select_ident +EXPORT_SYMBOL vmlinux 0x62571523 qdisc_watchdog_cancel EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister +EXPORT_SYMBOL vmlinux 0x6274e216 alloc_file_pseudo EXPORT_SYMBOL vmlinux 0x62849ac7 dev_valid_name EXPORT_SYMBOL vmlinux 0x629079b3 dma_fence_signal_timestamp EXPORT_SYMBOL vmlinux 0x62949074 acpi_buffer_to_resource -EXPORT_SYMBOL vmlinux 0x62a4f9d8 configfs_undepend_item -EXPORT_SYMBOL vmlinux 0x62a8cac9 phy_connect_direct +EXPORT_SYMBOL vmlinux 0x6299aa8a tcp_sock_set_keepintvl +EXPORT_SYMBOL vmlinux 0x629a90df mipi_dsi_attach +EXPORT_SYMBOL vmlinux 0x62a6c856 __SCK__tp_func_mmap_lock_acquire_returned +EXPORT_SYMBOL vmlinux 0x62b2635d jbd2_journal_inode_ranged_write EXPORT_SYMBOL vmlinux 0x62bf6edf utf8agemin -EXPORT_SYMBOL vmlinux 0x62c8adaf free_cgroup_ns -EXPORT_SYMBOL vmlinux 0x62cd763f vlan_vid_del +EXPORT_SYMBOL vmlinux 0x62c7a8a9 tc_setup_cb_destroy +EXPORT_SYMBOL vmlinux 0x62efabca netif_receive_skb EXPORT_SYMBOL vmlinux 0x62f7e207 down_read_killable -EXPORT_SYMBOL vmlinux 0x62fbe40d serio_close +EXPORT_SYMBOL vmlinux 0x62fcdbb5 rtc_add_groups +EXPORT_SYMBOL vmlinux 0x6309e287 t10_pi_type1_crc +EXPORT_SYMBOL vmlinux 0x630a52f3 pipe_lock EXPORT_SYMBOL vmlinux 0x63187451 pcie_aspm_support_enabled EXPORT_SYMBOL vmlinux 0x631d06aa cpu_rmap_put -EXPORT_SYMBOL vmlinux 0x632f02b1 __invalidate_device -EXPORT_SYMBOL vmlinux 0x63382fe8 mount_subtree -EXPORT_SYMBOL vmlinux 0x6361b1e4 flow_indr_block_cb_alloc +EXPORT_SYMBOL vmlinux 0x631f8248 __tty_alloc_driver EXPORT_SYMBOL vmlinux 0x636257f7 get_ibs_caps -EXPORT_SYMBOL vmlinux 0x6377d6a5 icmp6_send +EXPORT_SYMBOL vmlinux 0x637c5dbb pci_get_class EXPORT_SYMBOL vmlinux 0x6383b27c __x86_indirect_thunk_rdx -EXPORT_SYMBOL vmlinux 0x6391ef02 mmput_async -EXPORT_SYMBOL vmlinux 0x6399d107 brioctl_set EXPORT_SYMBOL vmlinux 0x63a58370 flow_action_cookie_destroy -EXPORT_SYMBOL vmlinux 0x63a6cd97 inet_proto_csum_replace_by_diff EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region -EXPORT_SYMBOL vmlinux 0x63a9b324 unlock_rename +EXPORT_SYMBOL vmlinux 0x63a9691a mipi_dsi_dcs_set_tear_scanline +EXPORT_SYMBOL vmlinux 0x63bcddcf mmc_register_driver +EXPORT_SYMBOL vmlinux 0x63be0bdd xfrm_if_register_cb +EXPORT_SYMBOL vmlinux 0x63beb6f4 param_get_ulong EXPORT_SYMBOL vmlinux 0x63c4d61f __bitmap_weight -EXPORT_SYMBOL vmlinux 0x63c59872 get_tz_trend -EXPORT_SYMBOL vmlinux 0x63d58716 lookup_one -EXPORT_SYMBOL vmlinux 0x63d70a82 xattr_full_name +EXPORT_SYMBOL vmlinux 0x63ceba4c invalidate_inode_buffers +EXPORT_SYMBOL vmlinux 0x63da114f ppp_unregister_compressor +EXPORT_SYMBOL vmlinux 0x63e5f373 ipv6_sock_mc_join EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink -EXPORT_SYMBOL vmlinux 0x63f1e69f pcie_get_readrq +EXPORT_SYMBOL vmlinux 0x63efe28a xfrm_policy_insert EXPORT_SYMBOL vmlinux 0x63f835ba on_each_cpu_cond_mask +EXPORT_SYMBOL vmlinux 0x6400496f stop_tty EXPORT_SYMBOL vmlinux 0x6405dcd3 slhc_toss EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off -EXPORT_SYMBOL vmlinux 0x641d9199 sock_enable_timestamps +EXPORT_SYMBOL vmlinux 0x6418d4fa security_sctp_assoc_request +EXPORT_SYMBOL vmlinux 0x642a475a gro_find_receive_by_type EXPORT_SYMBOL vmlinux 0x642eb5c6 xen_poll_irq_timeout -EXPORT_SYMBOL vmlinux 0x645819f2 neigh_lookup -EXPORT_SYMBOL vmlinux 0x645c20b9 phy_device_remove -EXPORT_SYMBOL vmlinux 0x645c5257 cpufreq_generic_suspend -EXPORT_SYMBOL vmlinux 0x6461bee3 sk_stop_timer +EXPORT_SYMBOL vmlinux 0x642f6ab6 __netif_napi_del +EXPORT_SYMBOL vmlinux 0x6434c394 pci_bus_write_config_dword +EXPORT_SYMBOL vmlinux 0x643f53e7 regset_get +EXPORT_SYMBOL vmlinux 0x6448fba3 d_add +EXPORT_SYMBOL vmlinux 0x6449dff1 inet_addr_type_table EXPORT_SYMBOL vmlinux 0x6481ffe0 hsiphash_1u32 -EXPORT_SYMBOL vmlinux 0x6484c055 jbd2_journal_revoke -EXPORT_SYMBOL vmlinux 0x6485c52e pci_find_bus EXPORT_SYMBOL vmlinux 0x648eb59d gc_inflight_list EXPORT_SYMBOL vmlinux 0x64999478 congestion_wait -EXPORT_SYMBOL vmlinux 0x64a0f091 inet_add_protocol EXPORT_SYMBOL vmlinux 0x64a9c928 default_blu -EXPORT_SYMBOL vmlinux 0x64b1c239 genphy_restart_aneg -EXPORT_SYMBOL vmlinux 0x64b4bcce netif_stacked_transfer_operstate +EXPORT_SYMBOL vmlinux 0x64ba0fb4 pagevec_lookup_range_tag EXPORT_SYMBOL vmlinux 0x64bbc288 string_unescape -EXPORT_SYMBOL vmlinux 0x64ce0b16 d_exact_alias -EXPORT_SYMBOL vmlinux 0x64db0036 path_put -EXPORT_SYMBOL vmlinux 0x64eeb6d8 d_alloc_anon -EXPORT_SYMBOL vmlinux 0x64f6b577 loop_register_transfer -EXPORT_SYMBOL vmlinux 0x64f8194a __SCK__tp_func_kmalloc_node +EXPORT_SYMBOL vmlinux 0x64dfb939 __tracepoint_spi_transfer_stop +EXPORT_SYMBOL vmlinux 0x64ef6609 xfrm_input_register_afinfo +EXPORT_SYMBOL vmlinux 0x64fdaf17 serio_interrupt +EXPORT_SYMBOL vmlinux 0x650b683b pci_bus_read_config_byte +EXPORT_SYMBOL vmlinux 0x6510ded1 netif_receive_skb_core EXPORT_SYMBOL vmlinux 0x6513a3fa fb_get_color_depth +EXPORT_SYMBOL vmlinux 0x6514c1e6 flow_get_u32_src +EXPORT_SYMBOL vmlinux 0x651680f9 tcf_qevent_handle EXPORT_SYMBOL vmlinux 0x651a4139 test_taint EXPORT_SYMBOL vmlinux 0x652032cb mac_pton EXPORT_SYMBOL vmlinux 0x652ce9aa nla_memcmp +EXPORT_SYMBOL vmlinux 0x652f6c7d unix_attach_fds EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob -EXPORT_SYMBOL vmlinux 0x6545bdb7 generic_write_end EXPORT_SYMBOL vmlinux 0x65464c16 clkdev_drop EXPORT_SYMBOL vmlinux 0x65487097 __x86_indirect_thunk_rax -EXPORT_SYMBOL vmlinux 0x654fa7ba poll_initwait -EXPORT_SYMBOL vmlinux 0x65698c27 get_user_pages_remote +EXPORT_SYMBOL vmlinux 0x6548a725 blkdev_get_by_dev +EXPORT_SYMBOL vmlinux 0x6569f432 pci_enable_device_mem +EXPORT_SYMBOL vmlinux 0x656a606c dev_loopback_xmit EXPORT_SYMBOL vmlinux 0x656c1a0e string_escape_mem EXPORT_SYMBOL vmlinux 0x656e4a6e snprintf -EXPORT_SYMBOL vmlinux 0x65792167 tcp_filter EXPORT_SYMBOL vmlinux 0x658ce1a8 xxh64_reset +EXPORT_SYMBOL vmlinux 0x658eea77 pmem_sector_size EXPORT_SYMBOL vmlinux 0x659ded26 xfrm_flush_gc -EXPORT_SYMBOL vmlinux 0x65a144a6 md_handle_request EXPORT_SYMBOL vmlinux 0x65b992ac xen_alloc_p2m_entry -EXPORT_SYMBOL vmlinux 0x65ce047c kern_unmount_array +EXPORT_SYMBOL vmlinux 0x65c8b84d prepare_kernel_cred EXPORT_SYMBOL vmlinux 0x65cf8831 ZSTD_decompress_usingDict EXPORT_SYMBOL vmlinux 0x65d1bab2 acpi_bios_warning -EXPORT_SYMBOL vmlinux 0x65d9c2eb posix_test_lock +EXPORT_SYMBOL vmlinux 0x65d679a8 blk_rq_map_integrity_sg EXPORT_SYMBOL vmlinux 0x65d9e877 cpufreq_register_notifier EXPORT_SYMBOL vmlinux 0x65dccf13 xz_dec_end -EXPORT_SYMBOL vmlinux 0x65dd7510 __SetPageMovable EXPORT_SYMBOL vmlinux 0x65df35ca __put_user_nocheck_2 EXPORT_SYMBOL vmlinux 0x65e0d6d7 memory_read_from_buffer -EXPORT_SYMBOL vmlinux 0x65ffbe11 skb_trim -EXPORT_SYMBOL vmlinux 0x6607aa25 mdiobus_unregister -EXPORT_SYMBOL vmlinux 0x66247d24 unix_detach_fds +EXPORT_SYMBOL vmlinux 0x65efb4ea xfrm6_input_addr +EXPORT_SYMBOL vmlinux 0x65f30ef0 nf_setsockopt +EXPORT_SYMBOL vmlinux 0x6612a660 rproc_coredump_using_sections +EXPORT_SYMBOL vmlinux 0x66264f10 blk_mq_free_tag_set EXPORT_SYMBOL vmlinux 0x6626afca down EXPORT_SYMBOL vmlinux 0x663182c9 acpi_get_gpe_status +EXPORT_SYMBOL vmlinux 0x663a0304 of_find_mipi_dsi_host_by_node +EXPORT_SYMBOL vmlinux 0x663bbe74 cookie_timestamp_decode EXPORT_SYMBOL vmlinux 0x66628bf3 ip_tunnel_metadata_cnt EXPORT_SYMBOL vmlinux 0x6673f96d xxh32_reset -EXPORT_SYMBOL vmlinux 0x667bbc69 devm_backlight_device_register +EXPORT_SYMBOL vmlinux 0x6677cc14 vme_irq_handler EXPORT_SYMBOL vmlinux 0x668b19a1 down_read -EXPORT_SYMBOL vmlinux 0x6691b356 mmc_cqe_start_req -EXPORT_SYMBOL vmlinux 0x66989450 ipv6_sock_mc_drop -EXPORT_SYMBOL vmlinux 0x669b1bc1 hash_and_copy_to_iter -EXPORT_SYMBOL vmlinux 0x66a369ba flow_block_cb_decref +EXPORT_SYMBOL vmlinux 0x66a49b9b jbd2_fc_begin_commit EXPORT_SYMBOL vmlinux 0x66af1fd1 lockref_put_or_lock EXPORT_SYMBOL vmlinux 0x66b4cc41 kmemdup -EXPORT_SYMBOL vmlinux 0x66b51c16 __SCK__tp_func_spi_transfer_start +EXPORT_SYMBOL vmlinux 0x66bb7592 rproc_add_subdev EXPORT_SYMBOL vmlinux 0x66cca4f9 __x86_indirect_thunk_rcx -EXPORT_SYMBOL vmlinux 0x66e33494 blk_queue_update_dma_alignment -EXPORT_SYMBOL vmlinux 0x66e6cb92 genphy_suspend -EXPORT_SYMBOL vmlinux 0x66e6dd3a tcf_exts_terse_dump -EXPORT_SYMBOL vmlinux 0x66fa1a3d netdev_lower_get_first_private_rcu -EXPORT_SYMBOL vmlinux 0x66ffdf0b unpin_user_pages_dirty_lock +EXPORT_SYMBOL vmlinux 0x66d316de skb_store_bits +EXPORT_SYMBOL vmlinux 0x66ec2462 nexthop_set_hw_flags +EXPORT_SYMBOL vmlinux 0x66fc316f alloc_fcdev +EXPORT_SYMBOL vmlinux 0x66fcd2e3 cros_ec_check_result EXPORT_SYMBOL vmlinux 0x670ecece __x86_indirect_thunk_rbx -EXPORT_SYMBOL vmlinux 0x670f929a jbd2_journal_flush +EXPORT_SYMBOL vmlinux 0x67210972 sock_no_sendpage_locked EXPORT_SYMBOL vmlinux 0x6721fc7c security_cred_getsecid EXPORT_SYMBOL vmlinux 0x6729d3df __get_user_4 -EXPORT_SYMBOL vmlinux 0x673b2d0d dquot_set_dqblk -EXPORT_SYMBOL vmlinux 0x673dce89 dma_sync_sg_for_device +EXPORT_SYMBOL vmlinux 0x67359fb5 __scsi_iterate_devices +EXPORT_SYMBOL vmlinux 0x67364750 seq_escape_mem +EXPORT_SYMBOL vmlinux 0x673e633c inet_dev_addr_type EXPORT_SYMBOL vmlinux 0x673f815e agp_bridges -EXPORT_SYMBOL vmlinux 0x67475192 nf_log_trace +EXPORT_SYMBOL vmlinux 0x67404b98 prepare_to_swait_event EXPORT_SYMBOL vmlinux 0x6749d53f hdmi_vendor_infoframe_init -EXPORT_SYMBOL vmlinux 0x6771f04e ipv6_dev_mc_dec -EXPORT_SYMBOL vmlinux 0x677b769b acpi_bus_get_status +EXPORT_SYMBOL vmlinux 0x674b4e75 clk_add_alias +EXPORT_SYMBOL vmlinux 0x675fd2c6 __skb_checksum +EXPORT_SYMBOL vmlinux 0x6763de7c neigh_sysctl_register +EXPORT_SYMBOL vmlinux 0x6774bbfb dm_kobject_release EXPORT_SYMBOL vmlinux 0x678b96ec dma_pool_alloc -EXPORT_SYMBOL vmlinux 0x67a068c0 alloc_fcdev -EXPORT_SYMBOL vmlinux 0x67a62d0f pci_choose_state +EXPORT_SYMBOL vmlinux 0x678fe812 devm_gen_pool_create +EXPORT_SYMBOL vmlinux 0x679cee22 tcf_idrinfo_destroy +EXPORT_SYMBOL vmlinux 0x67a49b9c lock_sock_nested EXPORT_SYMBOL vmlinux 0x67b27ec1 tty_std_termios -EXPORT_SYMBOL vmlinux 0x67b6f336 tty_register_ldisc +EXPORT_SYMBOL vmlinux 0x67b303ec mdiobus_get_phy EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu +EXPORT_SYMBOL vmlinux 0x67bec6bb sock_alloc_file EXPORT_SYMBOL vmlinux 0x67c13ea0 acpi_read -EXPORT_SYMBOL vmlinux 0x67d357bf dquot_writeback_dquots -EXPORT_SYMBOL vmlinux 0x67d37d69 ps2_drain -EXPORT_SYMBOL vmlinux 0x67d9aa35 __tracepoint_dma_fence_signaled -EXPORT_SYMBOL vmlinux 0x67f0b833 register_tcf_proto_ops -EXPORT_SYMBOL vmlinux 0x67f166bf mnt_set_expiry -EXPORT_SYMBOL vmlinux 0x67feb1cc clear_page_dirty_for_io +EXPORT_SYMBOL vmlinux 0x67d33915 __cleancache_init_shared_fs +EXPORT_SYMBOL vmlinux 0x67eac628 xfrm6_rcv_tnl +EXPORT_SYMBOL vmlinux 0x67ecfc1a vfs_readlink +EXPORT_SYMBOL vmlinux 0x6811f2f8 agp_generic_remove_memory +EXPORT_SYMBOL vmlinux 0x68122208 kernel_connect EXPORT_SYMBOL vmlinux 0x681b6670 is_firmware_framebuffer -EXPORT_SYMBOL vmlinux 0x681ca866 d_alloc -EXPORT_SYMBOL vmlinux 0x681dc90c vga_switcheroo_init_domain_pm_ops -EXPORT_SYMBOL vmlinux 0x6835b151 blk_mq_start_request EXPORT_SYMBOL vmlinux 0x683a9560 __gnet_stats_copy_basic -EXPORT_SYMBOL vmlinux 0x683ca401 blk_queue_virt_boundary -EXPORT_SYMBOL vmlinux 0x6846b829 blkdev_put EXPORT_SYMBOL vmlinux 0x6851664e wrmsrl_safe_on_cpu -EXPORT_SYMBOL vmlinux 0x687afed8 pci_scan_slot +EXPORT_SYMBOL vmlinux 0x6852669d redraw_screen +EXPORT_SYMBOL vmlinux 0x6878e657 phy_ethtool_get_link_ksettings EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval -EXPORT_SYMBOL vmlinux 0x687d8883 reuseport_alloc -EXPORT_SYMBOL vmlinux 0x68821f19 __skb_free_datagram_locked -EXPORT_SYMBOL vmlinux 0x6892cbb7 vme_slot_num +EXPORT_SYMBOL vmlinux 0x688d7113 qdisc_watchdog_init_clockid +EXPORT_SYMBOL vmlinux 0x689681a7 dev_driver_string +EXPORT_SYMBOL vmlinux 0x68afed12 filemap_map_pages EXPORT_SYMBOL vmlinux 0x68c4b824 cpumask_any_but -EXPORT_SYMBOL vmlinux 0x68d09a2b inode_set_flags -EXPORT_SYMBOL vmlinux 0x68d1a98f ps2_command -EXPORT_SYMBOL vmlinux 0x68e1d033 tty_insert_flip_string_fixed_flag -EXPORT_SYMBOL vmlinux 0x68f1ac1a pcim_enable_device +EXPORT_SYMBOL vmlinux 0x68d9ed59 fwnode_mdiobus_register_phy +EXPORT_SYMBOL vmlinux 0x68e1d2a9 thaw_super +EXPORT_SYMBOL vmlinux 0x68e5b664 security_inode_setsecctx +EXPORT_SYMBOL vmlinux 0x68e9292a nvdimm_namespace_disk_name EXPORT_SYMBOL vmlinux 0x68fb581a icst307_idx2s -EXPORT_SYMBOL vmlinux 0x68ff9fa3 phy_start_cable_test_tdr -EXPORT_SYMBOL vmlinux 0x69020062 nvdimm_namespace_locked +EXPORT_SYMBOL vmlinux 0x6902eba8 cdrom_get_last_written EXPORT_SYMBOL vmlinux 0x69049cd2 radix_tree_replace_slot EXPORT_SYMBOL vmlinux 0x6917a77e __traceiter_kmem_cache_free -EXPORT_SYMBOL vmlinux 0x69453dbc blk_queue_max_hw_sectors +EXPORT_SYMBOL vmlinux 0x692986b5 jbd2_journal_update_sb_errno +EXPORT_SYMBOL vmlinux 0x692abf19 skb_checksum_help EXPORT_SYMBOL vmlinux 0x69585523 __ksize -EXPORT_SYMBOL vmlinux 0x695d293f udp6_csum_init +EXPORT_SYMBOL vmlinux 0x69643203 blk_queue_bounce_limit EXPORT_SYMBOL vmlinux 0x69668826 netdev_increment_features +EXPORT_SYMBOL vmlinux 0x696c885d __devm_mdiobus_register EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days +EXPORT_SYMBOL vmlinux 0x69726346 tcf_idr_create EXPORT_SYMBOL vmlinux 0x697ed5f0 memcpy_and_pad +EXPORT_SYMBOL vmlinux 0x698184d2 phy_aneg_done +EXPORT_SYMBOL vmlinux 0x69860b9d secpath_set EXPORT_SYMBOL vmlinux 0x6988d0ca cpu_dr7 -EXPORT_SYMBOL vmlinux 0x698f59a2 agp_generic_free_by_type -EXPORT_SYMBOL vmlinux 0x69a30d70 devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0x698ab341 pci_free_irq_vectors EXPORT_SYMBOL vmlinux 0x69acdf38 memcpy -EXPORT_SYMBOL vmlinux 0x69c8cfda netif_device_attach +EXPORT_SYMBOL vmlinux 0x69d33091 flow_rule_match_ip EXPORT_SYMBOL vmlinux 0x69d53cbc posix_acl_from_xattr EXPORT_SYMBOL vmlinux 0x69dd3b5b crc32_le EXPORT_SYMBOL vmlinux 0x69de8757 vme_check_window -EXPORT_SYMBOL vmlinux 0x69e2cea4 skb_dump +EXPORT_SYMBOL vmlinux 0x69f95b51 pcie_capability_read_dword EXPORT_SYMBOL vmlinux 0x6a03751f sgl_free_order EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree -EXPORT_SYMBOL vmlinux 0x6a0c69a8 phy_ethtool_get_stats -EXPORT_SYMBOL vmlinux 0x6a163cd0 tcf_idr_search -EXPORT_SYMBOL vmlinux 0x6a1ac9cb arp_send -EXPORT_SYMBOL vmlinux 0x6a24025a seq_puts -EXPORT_SYMBOL vmlinux 0x6a2409ce inet_proto_csum_replace16 +EXPORT_SYMBOL vmlinux 0x6a0b713f skb_tunnel_check_pmtu +EXPORT_SYMBOL vmlinux 0x6a114f2b tty_driver_flush_buffer EXPORT_SYMBOL vmlinux 0x6a261b78 irq_stat -EXPORT_SYMBOL vmlinux 0x6a2f5a21 ipv6_chk_addr -EXPORT_SYMBOL vmlinux 0x6a326e7a __mmap_lock_do_trace_start_locking +EXPORT_SYMBOL vmlinux 0x6a2a3eda phy_trigger_machine +EXPORT_SYMBOL vmlinux 0x6a3b27ab tcf_em_tree_validate +EXPORT_SYMBOL vmlinux 0x6a3be49d input_mt_destroy_slots +EXPORT_SYMBOL vmlinux 0x6a4312a9 ip6_dst_alloc EXPORT_SYMBOL vmlinux 0x6a449c4f register_sysctl_table -EXPORT_SYMBOL vmlinux 0x6a517e4d mmc_card_alternative_gpt_sector -EXPORT_SYMBOL vmlinux 0x6a584ad5 sk_free -EXPORT_SYMBOL vmlinux 0x6a59c2c2 pci_dev_put +EXPORT_SYMBOL vmlinux 0x6a52fb59 vga_switcheroo_get_client_state EXPORT_SYMBOL vmlinux 0x6a5cb5ee __get_free_pages EXPORT_SYMBOL vmlinux 0x6a5ecb18 unregister_module_notifier EXPORT_SYMBOL vmlinux 0x6a5fa363 sigprocmask -EXPORT_SYMBOL vmlinux 0x6a682076 __sk_mem_reduce_allocated EXPORT_SYMBOL vmlinux 0x6a6e05bf kstrtou8 -EXPORT_SYMBOL vmlinux 0x6a6fff58 __serio_register_driver -EXPORT_SYMBOL vmlinux 0x6a85a49c fscrypt_encrypt_pagecache_blocks +EXPORT_SYMBOL vmlinux 0x6a8d13a8 crypto_sha256_update EXPORT_SYMBOL vmlinux 0x6aa11aa6 sgl_free_n_order EXPORT_SYMBOL vmlinux 0x6aa8cddf config_item_set_name -EXPORT_SYMBOL vmlinux 0x6aabeee9 dev_open +EXPORT_SYMBOL vmlinux 0x6ac18d68 pcie_port_service_unregister +EXPORT_SYMBOL vmlinux 0x6ac774d7 flow_indr_dev_unregister +EXPORT_SYMBOL vmlinux 0x6acd088a qdisc_hash_add +EXPORT_SYMBOL vmlinux 0x6adc7663 dma_map_sg_attrs EXPORT_SYMBOL vmlinux 0x6add5c9a dmi_find_device EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset -EXPORT_SYMBOL vmlinux 0x6b02d503 seq_put_decimal_ull -EXPORT_SYMBOL vmlinux 0x6b106e7c has_capability +EXPORT_SYMBOL vmlinux 0x6af21d97 skb_coalesce_rx_frag +EXPORT_SYMBOL vmlinux 0x6af3375f mmc_cqe_request_done EXPORT_SYMBOL vmlinux 0x6b10bee1 _copy_to_user -EXPORT_SYMBOL vmlinux 0x6b19267a tcf_block_put -EXPORT_SYMBOL vmlinux 0x6b1929d2 sock_common_setsockopt EXPORT_SYMBOL vmlinux 0x6b27729b radix_tree_gang_lookup -EXPORT_SYMBOL vmlinux 0x6b2931dd vfs_iocb_iter_read EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack -EXPORT_SYMBOL vmlinux 0x6b4cc26d __hw_addr_sync_dev -EXPORT_SYMBOL vmlinux 0x6b53dec1 jbd2_journal_update_sb_errno +EXPORT_SYMBOL vmlinux 0x6b2f7c08 generic_pipe_buf_get +EXPORT_SYMBOL vmlinux 0x6b3287f1 serial8250_register_8250_port +EXPORT_SYMBOL vmlinux 0x6b3a2396 tcp_disconnect +EXPORT_SYMBOL vmlinux 0x6b49db39 fs_param_is_string EXPORT_SYMBOL vmlinux 0x6b55acd0 rtnl_lock_killable -EXPORT_SYMBOL vmlinux 0x6b598b7c mipi_dsi_dcs_set_tear_on -EXPORT_SYMBOL vmlinux 0x6b598bd5 add_random_ready_callback -EXPORT_SYMBOL vmlinux 0x6b5e64f9 trace_event_printf -EXPORT_SYMBOL vmlinux 0x6b6662fd dquot_commit -EXPORT_SYMBOL vmlinux 0x6b6e174e vme_new_dma_list +EXPORT_SYMBOL vmlinux 0x6b6889b6 seq_read +EXPORT_SYMBOL vmlinux 0x6b695cf1 zen_untrain_ret +EXPORT_SYMBOL vmlinux 0x6b71e986 ip_getsockopt +EXPORT_SYMBOL vmlinux 0x6b8222d2 mipi_dsi_driver_register_full EXPORT_SYMBOL vmlinux 0x6b853d06 ns_to_kernel_old_timeval EXPORT_SYMBOL vmlinux 0x6b8bf149 netif_receive_skb_list -EXPORT_SYMBOL vmlinux 0x6b95c0bc inet_frag_find -EXPORT_SYMBOL vmlinux 0x6b97fe10 setattr_prepare EXPORT_SYMBOL vmlinux 0x6b9d1c95 security_req_classify_flow +EXPORT_SYMBOL vmlinux 0x6ba45df3 inet_csk_accept +EXPORT_SYMBOL vmlinux 0x6baa0967 try_module_get +EXPORT_SYMBOL vmlinux 0x6bad552c ppp_register_net_channel +EXPORT_SYMBOL vmlinux 0x6bb0109b clear_page_dirty_for_io +EXPORT_SYMBOL vmlinux 0x6bbb373b security_inode_invalidate_secctx +EXPORT_SYMBOL vmlinux 0x6bbc39db scsi_register_interface EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev -EXPORT_SYMBOL vmlinux 0x6bc9fff1 scsi_register_driver +EXPORT_SYMBOL vmlinux 0x6bca9595 inode_newsize_ok +EXPORT_SYMBOL vmlinux 0x6bd0e288 jbd2_fc_get_buf EXPORT_SYMBOL vmlinux 0x6bd0e573 down_interruptible +EXPORT_SYMBOL vmlinux 0x6bda962b pcie_get_readrq EXPORT_SYMBOL vmlinux 0x6be1c1f8 acpi_install_method -EXPORT_SYMBOL vmlinux 0x6be3e00b scsi_get_host_dev -EXPORT_SYMBOL vmlinux 0x6bf6d968 vfs_parse_fs_param_source -EXPORT_SYMBOL vmlinux 0x6bfeef93 vfs_ioctl -EXPORT_SYMBOL vmlinux 0x6c0fbaab napi_gro_flush -EXPORT_SYMBOL vmlinux 0x6c151cd3 param_ops_bool +EXPORT_SYMBOL vmlinux 0x6bf2d5e5 kernel_read +EXPORT_SYMBOL vmlinux 0x6c0888f4 register_netdev +EXPORT_SYMBOL vmlinux 0x6c0c1590 pnp_is_active +EXPORT_SYMBOL vmlinux 0x6c0c26b9 __invalidate_device EXPORT_SYMBOL vmlinux 0x6c224cda gen_pool_destroy EXPORT_SYMBOL vmlinux 0x6c257ac0 tty_termios_hw_change EXPORT_SYMBOL vmlinux 0x6c28be5a vfio_info_add_capability -EXPORT_SYMBOL vmlinux 0x6c59e418 dquot_initialize_needed +EXPORT_SYMBOL vmlinux 0x6c32f5ba unpin_user_pages_dirty_lock +EXPORT_SYMBOL vmlinux 0x6c3b8b72 netdev_class_remove_file_ns +EXPORT_SYMBOL vmlinux 0x6c457d21 devfreq_monitor_start +EXPORT_SYMBOL vmlinux 0x6c4c3f35 input_set_max_poll_interval +EXPORT_SYMBOL vmlinux 0x6c52b842 cdrom_get_media_event +EXPORT_SYMBOL vmlinux 0x6c5d7ed0 genlmsg_multicast_allns EXPORT_SYMBOL vmlinux 0x6c5dae23 scsi_kmap_atomic_sg EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb -EXPORT_SYMBOL vmlinux 0x6c6aabec blk_mq_stop_hw_queue -EXPORT_SYMBOL vmlinux 0x6c865543 get_user_pages_locked -EXPORT_SYMBOL vmlinux 0x6c8cd945 dev_uc_sync_multiple -EXPORT_SYMBOL vmlinux 0x6c906239 devm_devfreq_register_opp_notifier -EXPORT_SYMBOL vmlinux 0x6c9c4d70 dm_register_target -EXPORT_SYMBOL vmlinux 0x6ca2dafe set_blocksize -EXPORT_SYMBOL vmlinux 0x6ca5ddb4 netdev_set_num_tc -EXPORT_SYMBOL vmlinux 0x6ca655a6 generic_listxattr EXPORT_SYMBOL vmlinux 0x6cb2f5a1 cpumask_next_and EXPORT_SYMBOL vmlinux 0x6cb46525 netlbl_catmap_walk -EXPORT_SYMBOL vmlinux 0x6cbe98c2 xfrm_find_acq_byseq -EXPORT_SYMBOL vmlinux 0x6cbf767f pm860x_reg_read +EXPORT_SYMBOL vmlinux 0x6cb4ddc5 devm_ioremap_wc EXPORT_SYMBOL vmlinux 0x6cc09945 ioread32_rep -EXPORT_SYMBOL vmlinux 0x6cf6a53e ip_route_me_harder +EXPORT_SYMBOL vmlinux 0x6cc66986 _copy_from_iter +EXPORT_SYMBOL vmlinux 0x6cc91a6b jbd2_journal_try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x6cd72552 tcf_action_dump_1 +EXPORT_SYMBOL vmlinux 0x6cda7699 key_task_permission +EXPORT_SYMBOL vmlinux 0x6cea943c scsi_rescan_device +EXPORT_SYMBOL vmlinux 0x6cf44b07 netpoll_send_skb +EXPORT_SYMBOL vmlinux 0x6cf5f8db unlock_buffer +EXPORT_SYMBOL vmlinux 0x6d138658 kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0x6d1420ef mmc_gpio_get_cd EXPORT_SYMBOL vmlinux 0x6d16c104 mutex_lock_killable +EXPORT_SYMBOL vmlinux 0x6d25f011 param_get_long EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies -EXPORT_SYMBOL vmlinux 0x6d2e6625 reuseport_detach_prog +EXPORT_SYMBOL vmlinux 0x6d3284f6 eth_get_headlen EXPORT_SYMBOL vmlinux 0x6d334118 __get_user_8 EXPORT_SYMBOL vmlinux 0x6d340f64 tty_termios_input_baud_rate +EXPORT_SYMBOL vmlinux 0x6d402b10 set_blocksize +EXPORT_SYMBOL vmlinux 0x6d44fa6a pci_rebar_get_possible_sizes EXPORT_SYMBOL vmlinux 0x6d58f69e agp3_generic_sizes +EXPORT_SYMBOL vmlinux 0x6d5b03ef pci_request_selected_regions EXPORT_SYMBOL vmlinux 0x6d5f5b91 radix_tree_tagged -EXPORT_SYMBOL vmlinux 0x6d607daa filemap_fdatawrite_range -EXPORT_SYMBOL vmlinux 0x6d764602 netlink_rcv_skb +EXPORT_SYMBOL vmlinux 0x6d7bbf39 bio_put EXPORT_SYMBOL vmlinux 0x6d7c7dcc bitmap_cut -EXPORT_SYMBOL vmlinux 0x6db99662 n_tty_ioctl_helper -EXPORT_SYMBOL vmlinux 0x6dc18f76 find_inode_by_ino_rcu +EXPORT_SYMBOL vmlinux 0x6da9733e skb_find_text EXPORT_SYMBOL vmlinux 0x6dc35b25 radix_tree_iter_delete +EXPORT_SYMBOL vmlinux 0x6dc3fc87 tso_count_descs +EXPORT_SYMBOL vmlinux 0x6dcb2e7b sk_stop_timer_sync +EXPORT_SYMBOL vmlinux 0x6dcebb6a __mod_lruvec_page_state EXPORT_SYMBOL vmlinux 0x6dcf857f uuid_null EXPORT_SYMBOL vmlinux 0x6dd17e7b acpi_get_table_header -EXPORT_SYMBOL vmlinux 0x6de5e879 fb_is_primary_device +EXPORT_SYMBOL vmlinux 0x6ddd2578 tty_hangup EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction -EXPORT_SYMBOL vmlinux 0x6dfee059 blk_rq_init -EXPORT_SYMBOL vmlinux 0x6e0631f7 __get_hash_from_flowi6 -EXPORT_SYMBOL vmlinux 0x6e177782 msi_desc_to_pci_dev -EXPORT_SYMBOL vmlinux 0x6e1f19d2 __tty_alloc_driver -EXPORT_SYMBOL vmlinux 0x6e25681a register_framebuffer -EXPORT_SYMBOL vmlinux 0x6e35268f nd_integrity_init -EXPORT_SYMBOL vmlinux 0x6e42e742 simple_recursive_removal -EXPORT_SYMBOL vmlinux 0x6e45099c pci_bus_read_config_byte -EXPORT_SYMBOL vmlinux 0x6e470f07 __breadahead +EXPORT_SYMBOL vmlinux 0x6e06a909 init_net +EXPORT_SYMBOL vmlinux 0x6e09262a set_capacity +EXPORT_SYMBOL vmlinux 0x6e130454 unregister_key_type +EXPORT_SYMBOL vmlinux 0x6e16f50c vfs_path_lookup +EXPORT_SYMBOL vmlinux 0x6e2a98bb __skb_checksum_complete EXPORT_SYMBOL vmlinux 0x6e5b8651 xz_dec_run -EXPORT_SYMBOL vmlinux 0x6e5d827b get_cached_acl +EXPORT_SYMBOL vmlinux 0x6e67f8f0 netdev_lower_get_next EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock -EXPORT_SYMBOL vmlinux 0x6e7c8c4b xattr_supported_namespace +EXPORT_SYMBOL vmlinux 0x6e746096 tcp_v4_md5_lookup EXPORT_SYMBOL vmlinux 0x6e841389 cpu_info EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put -EXPORT_SYMBOL vmlinux 0x6ea0933f watchdog_register_governor EXPORT_SYMBOL vmlinux 0x6ea7575d acpi_dispatch_gpe -EXPORT_SYMBOL vmlinux 0x6ea8f650 mmc_detect_card_removed EXPORT_SYMBOL vmlinux 0x6ea9363b force_sig -EXPORT_SYMBOL vmlinux 0x6ec59237 sock_cmsg_send -EXPORT_SYMBOL vmlinux 0x6ecc89fb dquot_free_inode -EXPORT_SYMBOL vmlinux 0x6ed98750 cdrom_number_of_slots -EXPORT_SYMBOL vmlinux 0x6ee5e489 param_set_ulong -EXPORT_SYMBOL vmlinux 0x6eeba719 sock_queue_err_skb -EXPORT_SYMBOL vmlinux 0x6ef85c66 security_sock_graft -EXPORT_SYMBOL vmlinux 0x6efa025f genphy_c37_read_status -EXPORT_SYMBOL vmlinux 0x6f07d756 neigh_carrier_down -EXPORT_SYMBOL vmlinux 0x6f0bee60 sched_autogroup_detach -EXPORT_SYMBOL vmlinux 0x6f12a8ba inc_nlink -EXPORT_SYMBOL vmlinux 0x6f189a98 skb_add_rx_frag -EXPORT_SYMBOL vmlinux 0x6f1a6b8d alloc_file_pseudo -EXPORT_SYMBOL vmlinux 0x6f1e4ce1 __ip_select_ident +EXPORT_SYMBOL vmlinux 0x6eb44e72 __serio_register_driver +EXPORT_SYMBOL vmlinux 0x6eb579e3 alloc_pages_vma +EXPORT_SYMBOL vmlinux 0x6ebbded7 sock_enable_timestamps +EXPORT_SYMBOL vmlinux 0x6ec66290 bdi_set_max_ratio +EXPORT_SYMBOL vmlinux 0x6ef320b6 key_alloc +EXPORT_SYMBOL vmlinux 0x6f079fb3 vme_dma_list_free EXPORT_SYMBOL vmlinux 0x6f41a428 acpi_get_vendor_resource -EXPORT_SYMBOL vmlinux 0x6f431625 ip6_dst_hoplimit -EXPORT_SYMBOL vmlinux 0x6f49655e reuseport_stop_listen_sock +EXPORT_SYMBOL vmlinux 0x6f4220c3 remove_proc_subtree +EXPORT_SYMBOL vmlinux 0x6f523b75 jbd2_journal_start_commit EXPORT_SYMBOL vmlinux 0x6f5ab52f acpi_get_local_address -EXPORT_SYMBOL vmlinux 0x6f7232ef tcf_action_set_ctrlact -EXPORT_SYMBOL vmlinux 0x6f7dc785 md_update_sb +EXPORT_SYMBOL vmlinux 0x6f660031 tcp_sock_set_cork +EXPORT_SYMBOL vmlinux 0x6f735ed9 rtnl_kfree_skbs +EXPORT_SYMBOL vmlinux 0x6f7bdf20 unlock_rename +EXPORT_SYMBOL vmlinux 0x6f877f63 devfreq_recommended_opp +EXPORT_SYMBOL vmlinux 0x6f88ad18 blk_rq_map_kern EXPORT_SYMBOL vmlinux 0x6f8f674a bpf_dispatcher_xdp_func EXPORT_SYMBOL vmlinux 0x6f915a45 dqstats -EXPORT_SYMBOL vmlinux 0x6fa0a946 udp_lib_getsockopt EXPORT_SYMBOL vmlinux 0x6fb49676 queue_rcu_work -EXPORT_SYMBOL vmlinux 0x6fb70625 backlight_device_register -EXPORT_SYMBOL vmlinux 0x6fb92076 cdrom_get_media_event EXPORT_SYMBOL vmlinux 0x6fbc6a00 radix_tree_insert +EXPORT_SYMBOL vmlinux 0x6fc20b51 build_skb +EXPORT_SYMBOL vmlinux 0x6fc35596 input_event EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog -EXPORT_SYMBOL vmlinux 0x6fd851ef reuseport_add_sock +EXPORT_SYMBOL vmlinux 0x6fd396e6 tcf_exts_validate +EXPORT_SYMBOL vmlinux 0x6fd78284 inode_dio_wait EXPORT_SYMBOL vmlinux 0x6fd9c35a __clzdi2 -EXPORT_SYMBOL vmlinux 0x6fdd4451 blk_pre_runtime_resume -EXPORT_SYMBOL vmlinux 0x6ff1724d netdev_lower_get_next_private_rcu +EXPORT_SYMBOL vmlinux 0x6fdeb815 inode_sub_bytes +EXPORT_SYMBOL vmlinux 0x6ff6101b ps2_sendbyte EXPORT_SYMBOL vmlinux 0x70002fe8 siphash_1u32 -EXPORT_SYMBOL vmlinux 0x70067ee6 from_kprojid_munged +EXPORT_SYMBOL vmlinux 0x7014f90d fs_param_is_u64 EXPORT_SYMBOL vmlinux 0x7023bea8 unregister_acpi_notifier -EXPORT_SYMBOL vmlinux 0x70286235 pci_find_capability EXPORT_SYMBOL vmlinux 0x702946da ucs2_strlen EXPORT_SYMBOL vmlinux 0x7040fff9 rtc_lock EXPORT_SYMBOL vmlinux 0x7054a3e4 request_dma -EXPORT_SYMBOL vmlinux 0x7073759d set_disk_ro -EXPORT_SYMBOL vmlinux 0x707c8b3f cdev_device_add -EXPORT_SYMBOL vmlinux 0x70824405 kmem_cache_alloc_node -EXPORT_SYMBOL vmlinux 0x709319da i2c_put_adapter +EXPORT_SYMBOL vmlinux 0x70a29958 dev_get_stats +EXPORT_SYMBOL vmlinux 0x70a5c092 ipv6_mc_check_mld EXPORT_SYMBOL vmlinux 0x70ad75fb radix_tree_lookup -EXPORT_SYMBOL vmlinux 0x70c7fc22 __pci_register_driver -EXPORT_SYMBOL vmlinux 0x70ce0ec6 pci_save_state -EXPORT_SYMBOL vmlinux 0x70d7a839 vmalloc_to_page -EXPORT_SYMBOL vmlinux 0x70e32afd page_zero_new_buffers -EXPORT_SYMBOL vmlinux 0x70f43b17 get_tree_single_reconf -EXPORT_SYMBOL vmlinux 0x70f5a2e2 set_page_dirty -EXPORT_SYMBOL vmlinux 0x71054be3 try_to_release_page -EXPORT_SYMBOL vmlinux 0x7109f745 inode_sub_bytes -EXPORT_SYMBOL vmlinux 0x71174f32 rproc_coredump_add_segment -EXPORT_SYMBOL vmlinux 0x7117d2f8 acpi_mdiobus_register -EXPORT_SYMBOL vmlinux 0x711e9e72 sk_mc_loop -EXPORT_SYMBOL vmlinux 0x71268054 bio_put -EXPORT_SYMBOL vmlinux 0x71284678 ip6_fraglist_prepare +EXPORT_SYMBOL vmlinux 0x70db86cb ww_mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0x70de4c9d current_in_userns +EXPORT_SYMBOL vmlinux 0x70e93863 __dst_destroy_metrics_generic +EXPORT_SYMBOL vmlinux 0x70f8ef79 xp_set_rxq_info +EXPORT_SYMBOL vmlinux 0x70ff2395 fs_context_for_submount +EXPORT_SYMBOL vmlinux 0x71009ac7 dev_pre_changeaddr_notify +EXPORT_SYMBOL vmlinux 0x71110e42 proto_register +EXPORT_SYMBOL vmlinux 0x711ce26c blk_post_runtime_resume +EXPORT_SYMBOL vmlinux 0x711fa1e2 rtnl_notify +EXPORT_SYMBOL vmlinux 0x71216354 rproc_da_to_va EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc -EXPORT_SYMBOL vmlinux 0x712a0ff8 wait_on_page_private_2 -EXPORT_SYMBOL vmlinux 0x7139cf40 skb_copy_datagram_from_iter -EXPORT_SYMBOL vmlinux 0x7148342f lookup_positive_unlocked -EXPORT_SYMBOL vmlinux 0x7154c21b iov_iter_fault_in_readable -EXPORT_SYMBOL vmlinux 0x7157b7e0 __tracepoint_write_msr +EXPORT_SYMBOL vmlinux 0x712a9037 blk_mq_requeue_request +EXPORT_SYMBOL vmlinux 0x71311bba blk_get_queue +EXPORT_SYMBOL vmlinux 0x714e4da8 rproc_elf_get_boot_addr EXPORT_SYMBOL vmlinux 0x715a5ed0 vprintk +EXPORT_SYMBOL vmlinux 0x716c251a vlan_filter_push_vids EXPORT_SYMBOL vmlinux 0x7171121c overflowgid +EXPORT_SYMBOL vmlinux 0x71803478 phy_device_remove EXPORT_SYMBOL vmlinux 0x718a4693 __SCT__tp_func_mmap_lock_start_locking -EXPORT_SYMBOL vmlinux 0x718eece8 ip6_frag_init -EXPORT_SYMBOL vmlinux 0x719f56ea ip6_route_me_harder -EXPORT_SYMBOL vmlinux 0x71a44e95 phy_aneg_done +EXPORT_SYMBOL vmlinux 0x7198bc16 udplite_prot +EXPORT_SYMBOL vmlinux 0x719b65e8 legacy_pic +EXPORT_SYMBOL vmlinux 0x719be626 blk_queue_logical_block_size EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy -EXPORT_SYMBOL vmlinux 0x71af503f md_bitmap_update_sb -EXPORT_SYMBOL vmlinux 0x71bb6b65 put_watch_queue +EXPORT_SYMBOL vmlinux 0x71b5029f devm_clk_hw_register_clkdev +EXPORT_SYMBOL vmlinux 0x71cfa456 devfreq_monitor_suspend EXPORT_SYMBOL vmlinux 0x71dfc095 acpi_walk_resources -EXPORT_SYMBOL vmlinux 0x71ea3996 udp_read_sock -EXPORT_SYMBOL vmlinux 0x71fc6c26 udp_push_pending_frames -EXPORT_SYMBOL vmlinux 0x7201c48b devm_iounmap +EXPORT_SYMBOL vmlinux 0x71e09afa ps2_begin_command +EXPORT_SYMBOL vmlinux 0x71eda7ab udp_seq_ops EXPORT_SYMBOL vmlinux 0x720a27a7 __register_blkdev -EXPORT_SYMBOL vmlinux 0x720ddcb9 security_inode_listsecurity -EXPORT_SYMBOL vmlinux 0x721ee701 tty_port_destroy +EXPORT_SYMBOL vmlinux 0x720c3119 pci_bus_read_config_dword +EXPORT_SYMBOL vmlinux 0x72433791 configfs_undepend_item +EXPORT_SYMBOL vmlinux 0x7247e708 tcp_openreq_init_rwin EXPORT_SYMBOL vmlinux 0x724ddac7 utf8version_is_supported -EXPORT_SYMBOL vmlinux 0x7266f065 acpi_processor_notify_smm +EXPORT_SYMBOL vmlinux 0x7262ab16 blk_cleanup_disk EXPORT_SYMBOL vmlinux 0x726bc3c7 wait_for_completion_killable_timeout -EXPORT_SYMBOL vmlinux 0x728b6ad3 vm_insert_page -EXPORT_SYMBOL vmlinux 0x728bba7e dev_remove_offload -EXPORT_SYMBOL vmlinux 0x72936794 cookie_timestamp_decode +EXPORT_SYMBOL vmlinux 0x7282de31 tcf_unregister_action +EXPORT_SYMBOL vmlinux 0x7283634e vfs_iocb_iter_write +EXPORT_SYMBOL vmlinux 0x72839fb4 _dev_err +EXPORT_SYMBOL vmlinux 0x729b0a7e set_pages_array_wc EXPORT_SYMBOL vmlinux 0x72b243d4 free_dma -EXPORT_SYMBOL vmlinux 0x72b575fa generic_file_llseek_size +EXPORT_SYMBOL vmlinux 0x72b361cb mfd_add_devices +EXPORT_SYMBOL vmlinux 0x72b4d4db inet_csk_complete_hashdance EXPORT_SYMBOL vmlinux 0x72b9d287 default_grn EXPORT_SYMBOL vmlinux 0x72d79d83 pgdir_shift -EXPORT_SYMBOL vmlinux 0x72d9b7f6 __scsi_device_lookup_by_target -EXPORT_SYMBOL vmlinux 0x72e39321 console_start -EXPORT_SYMBOL vmlinux 0x72e5baa2 sk_ns_capable +EXPORT_SYMBOL vmlinux 0x72dc0ad4 mmc_card_is_blockaddr +EXPORT_SYMBOL vmlinux 0x72e80b9b set_anon_super EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type -EXPORT_SYMBOL vmlinux 0x72efa8f2 padata_set_cpumask EXPORT_SYMBOL vmlinux 0x72f14ff7 acpi_get_object_info -EXPORT_SYMBOL vmlinux 0x731323e4 devfreq_register_notifier -EXPORT_SYMBOL vmlinux 0x731478eb dma_map_resource +EXPORT_SYMBOL vmlinux 0x72f92f10 sk_mc_loop +EXPORT_SYMBOL vmlinux 0x72fb8ccb ip_cmsg_recv_offset +EXPORT_SYMBOL vmlinux 0x72fffa9f skb_vlan_untag +EXPORT_SYMBOL vmlinux 0x730a089f inc_zone_page_state EXPORT_SYMBOL vmlinux 0x7315a4e9 twl6030_mmc_card_detect_config +EXPORT_SYMBOL vmlinux 0x73189af4 devm_nvmem_unregister EXPORT_SYMBOL vmlinux 0x731c4a9c dma_fence_signal -EXPORT_SYMBOL vmlinux 0x7325d519 scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x732517a1 devm_mfd_add_devices EXPORT_SYMBOL vmlinux 0x732dd326 groups_free -EXPORT_SYMBOL vmlinux 0x7340976c xfrm_lookup_route +EXPORT_SYMBOL vmlinux 0x733b268c brioctl_set +EXPORT_SYMBOL vmlinux 0x733bd183 mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0x734b3802 ipv6_dev_get_saddr +EXPORT_SYMBOL vmlinux 0x73536f55 serio_open +EXPORT_SYMBOL vmlinux 0x7354b574 qdisc_class_hash_grow EXPORT_SYMBOL vmlinux 0x735a0bd5 native_io_delay EXPORT_SYMBOL vmlinux 0x735e6a81 acpi_evaluate_integer -EXPORT_SYMBOL vmlinux 0x73606e8e xfrm_dev_state_flush -EXPORT_SYMBOL vmlinux 0x73636723 skb_checksum_help -EXPORT_SYMBOL vmlinux 0x736ded30 mmc_cqe_request_done +EXPORT_SYMBOL vmlinux 0x73657b18 tty_port_init +EXPORT_SYMBOL vmlinux 0x7368666d netdev_bonding_info_change +EXPORT_SYMBOL vmlinux 0x736bda55 iov_iter_bvec EXPORT_SYMBOL vmlinux 0x7380dffa argv_split -EXPORT_SYMBOL vmlinux 0x73a3a1ad sk_stream_wait_close +EXPORT_SYMBOL vmlinux 0x73944f77 bdevname EXPORT_SYMBOL vmlinux 0x73abb180 alloc_contig_range -EXPORT_SYMBOL vmlinux 0x73b740f4 bprm_change_interp +EXPORT_SYMBOL vmlinux 0x73b7e0c0 blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0x73b8caf1 migrate_page_copy EXPORT_SYMBOL vmlinux 0x73bc5522 kobject_add -EXPORT_SYMBOL vmlinux 0x73c01e2c inet_add_offload -EXPORT_SYMBOL vmlinux 0x73c0ea21 ppp_dev_name -EXPORT_SYMBOL vmlinux 0x73c31af7 dquot_transfer -EXPORT_SYMBOL vmlinux 0x73d2a963 nobh_write_begin -EXPORT_SYMBOL vmlinux 0x73d2def8 dump_emit EXPORT_SYMBOL vmlinux 0x73dd54eb irq_fpu_usable -EXPORT_SYMBOL vmlinux 0x73e6e8df generic_delete_inode -EXPORT_SYMBOL vmlinux 0x73e86df8 scsi_bios_ptable +EXPORT_SYMBOL vmlinux 0x73e21730 sget +EXPORT_SYMBOL vmlinux 0x73eee3d7 scsi_print_command +EXPORT_SYMBOL vmlinux 0x74087878 dquot_alloc EXPORT_SYMBOL vmlinux 0x740a1b95 reserve_evntsel_nmi +EXPORT_SYMBOL vmlinux 0x740a7073 compat_ptr_ioctl EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace EXPORT_SYMBOL vmlinux 0x7412ed5b kvfree_sensitive EXPORT_SYMBOL vmlinux 0x7413793a EISA_bus +EXPORT_SYMBOL vmlinux 0x7413c975 no_seek_end_llseek +EXPORT_SYMBOL vmlinux 0x74179728 writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0x74185cc8 jbd2_journal_put_journal_head +EXPORT_SYMBOL vmlinux 0x74203f13 get_vm_area EXPORT_SYMBOL vmlinux 0x742578a5 wait_for_random_bytes EXPORT_SYMBOL vmlinux 0x7429e20c kstrtos8 -EXPORT_SYMBOL vmlinux 0x7434cb4f fget -EXPORT_SYMBOL vmlinux 0x743b3adc cdrom_mode_sense -EXPORT_SYMBOL vmlinux 0x7445423f vme_lm_request -EXPORT_SYMBOL vmlinux 0x7445eb72 do_splice_direct -EXPORT_SYMBOL vmlinux 0x7448db2a dquot_quota_on_mount -EXPORT_SYMBOL vmlinux 0x744b5aea phy_get_internal_delay +EXPORT_SYMBOL vmlinux 0x742d4ba8 register_mii_tstamp_controller EXPORT_SYMBOL vmlinux 0x7453d3e8 security_release_secctx -EXPORT_SYMBOL vmlinux 0x74566860 inode_add_bytes -EXPORT_SYMBOL vmlinux 0x74575e4c filp_close -EXPORT_SYMBOL vmlinux 0x74688512 phy_ethtool_set_wol +EXPORT_SYMBOL vmlinux 0x746f51ac tcp_sock_set_user_timeout EXPORT_SYMBOL vmlinux 0x74754435 acpi_bus_generate_netlink_event -EXPORT_SYMBOL vmlinux 0x747f88ea vfs_parse_fs_param -EXPORT_SYMBOL vmlinux 0x74827846 pmem_should_map_pages EXPORT_SYMBOL vmlinux 0x7483dc59 pci_dev_present -EXPORT_SYMBOL vmlinux 0x74897d6b from_kuid -EXPORT_SYMBOL vmlinux 0x748bb827 user_path_create -EXPORT_SYMBOL vmlinux 0x749533a4 vga_switcheroo_register_audio_client -EXPORT_SYMBOL vmlinux 0x749d376f amd_iommu_device_info -EXPORT_SYMBOL vmlinux 0x749f6773 dst_discard_out -EXPORT_SYMBOL vmlinux 0x74b887b4 netif_carrier_on +EXPORT_SYMBOL vmlinux 0x748ba78d mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x748db22f nd_namespace_blk_validate +EXPORT_SYMBOL vmlinux 0x749b7585 mmc_retune_pause +EXPORT_SYMBOL vmlinux 0x74a018ad phy_loopback +EXPORT_SYMBOL vmlinux 0x74ad88f2 sock_setsockopt +EXPORT_SYMBOL vmlinux 0x74b260a5 __dquot_free_space EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 -EXPORT_SYMBOL vmlinux 0x74c35bed pm8606_osc_disable -EXPORT_SYMBOL vmlinux 0x74cceb2d mr_mfc_find_parent -EXPORT_SYMBOL vmlinux 0x74ce534a tty_unregister_ldisc -EXPORT_SYMBOL vmlinux 0x74daed27 filp_open +EXPORT_SYMBOL vmlinux 0x74cec01f pid_task +EXPORT_SYMBOL vmlinux 0x74cf1021 vme_dma_request +EXPORT_SYMBOL vmlinux 0x74e4343e pci_write_config_byte EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable -EXPORT_SYMBOL vmlinux 0x7500ba8c dcbnl_ieee_notify -EXPORT_SYMBOL vmlinux 0x7503b7a3 current_time -EXPORT_SYMBOL vmlinux 0x75082432 ram_aops -EXPORT_SYMBOL vmlinux 0x750b71be xfrm_policy_insert -EXPORT_SYMBOL vmlinux 0x750ebfde padata_free +EXPORT_SYMBOL vmlinux 0x74e9e342 iov_iter_alignment +EXPORT_SYMBOL vmlinux 0x74f1761c mipi_dsi_compression_mode +EXPORT_SYMBOL vmlinux 0x750014f9 vfs_iter_read +EXPORT_SYMBOL vmlinux 0x750a4fa5 ipv6_chk_addr_and_flags +EXPORT_SYMBOL vmlinux 0x750eed91 phy_ethtool_get_stats +EXPORT_SYMBOL vmlinux 0x750f22cd scsi_register_driver +EXPORT_SYMBOL vmlinux 0x75156e1e vme_bus_num +EXPORT_SYMBOL vmlinux 0x751dbe21 is_acpi_data_node +EXPORT_SYMBOL vmlinux 0x75269c97 end_page_private_2 EXPORT_SYMBOL vmlinux 0x7530bb0c __SCT__tp_func_write_msr EXPORT_SYMBOL vmlinux 0x7538b132 agp_off -EXPORT_SYMBOL vmlinux 0x753e524a clear_inode -EXPORT_SYMBOL vmlinux 0x754c55cb cdev_device_del EXPORT_SYMBOL vmlinux 0x754d539c strlen -EXPORT_SYMBOL vmlinux 0x755563ba flow_indr_dev_unregister -EXPORT_SYMBOL vmlinux 0x7566ab16 tty_port_init +EXPORT_SYMBOL vmlinux 0x75542510 sock_no_sendpage +EXPORT_SYMBOL vmlinux 0x75543f1f uart_update_timeout +EXPORT_SYMBOL vmlinux 0x757f176d ps2_handle_response EXPORT_SYMBOL vmlinux 0x75871f5e acpi_get_next_object +EXPORT_SYMBOL vmlinux 0x758f5ed4 __traceiter_module_get EXPORT_SYMBOL vmlinux 0x75943e25 i8253_lock -EXPORT_SYMBOL vmlinux 0x759da253 __set_page_dirty_buffers +EXPORT_SYMBOL vmlinux 0x759eee3a unregister_mii_timestamper EXPORT_SYMBOL vmlinux 0x75bda77a seq_hlist_next +EXPORT_SYMBOL vmlinux 0x75c30d17 vfs_dedupe_file_range_one EXPORT_SYMBOL vmlinux 0x75d0deb9 nsecs_to_jiffies64 -EXPORT_SYMBOL vmlinux 0x75d3d78c __d_drop EXPORT_SYMBOL vmlinux 0x75d499dd vmcore_add_device_dump -EXPORT_SYMBOL vmlinux 0x75dacaca rawv6_mh_filter_register -EXPORT_SYMBOL vmlinux 0x75df2afc scsi_block_requests -EXPORT_SYMBOL vmlinux 0x75e4c2f0 register_netdevice_notifier_net -EXPORT_SYMBOL vmlinux 0x75f4470e dev_load -EXPORT_SYMBOL vmlinux 0x75fd62c6 dev_add_offload +EXPORT_SYMBOL vmlinux 0x75db8dd4 truncate_inode_pages +EXPORT_SYMBOL vmlinux 0x76001984 vfs_copy_file_range +EXPORT_SYMBOL vmlinux 0x7602b036 get_cached_acl_rcu +EXPORT_SYMBOL vmlinux 0x76071dcc mr_vif_seq_idx EXPORT_SYMBOL vmlinux 0x760a0f4f yield -EXPORT_SYMBOL vmlinux 0x761318bd page_pool_return_skb_page +EXPORT_SYMBOL vmlinux 0x7610a87d alloc_skb_with_frags +EXPORT_SYMBOL vmlinux 0x76173964 mfd_remove_devices EXPORT_SYMBOL vmlinux 0x7618af39 hdmi_infoframe_check EXPORT_SYMBOL vmlinux 0x7624249e dim_park_tired +EXPORT_SYMBOL vmlinux 0x762d0ec6 phy_ethtool_set_link_ksettings EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq -EXPORT_SYMBOL vmlinux 0x765ac915 sg_miter_next +EXPORT_SYMBOL vmlinux 0x7656aa7c phy_suspend EXPORT_SYMBOL vmlinux 0x765ff474 crc_t10dif_generic -EXPORT_SYMBOL vmlinux 0x7664a9be tcf_qevent_dump +EXPORT_SYMBOL vmlinux 0x7660343f rps_may_expire_flow +EXPORT_SYMBOL vmlinux 0x7663cae4 qdisc_reset EXPORT_SYMBOL vmlinux 0x766a0927 mempool_alloc_pages -EXPORT_SYMBOL vmlinux 0x767c2a64 vga_remove_vgacon +EXPORT_SYMBOL vmlinux 0x766b321d cdev_set_parent +EXPORT_SYMBOL vmlinux 0x766cb169 __block_write_full_page EXPORT_SYMBOL vmlinux 0x767dce4b acpi_disable_all_gpes EXPORT_SYMBOL vmlinux 0x767ddb02 set_memory_wc -EXPORT_SYMBOL vmlinux 0x76817562 vme_irq_free -EXPORT_SYMBOL vmlinux 0x7694b3ad udp_seq_stop -EXPORT_SYMBOL vmlinux 0x769d4f40 scsi_alloc_sgtables +EXPORT_SYMBOL vmlinux 0x768d85b5 pci_alloc_host_bridge EXPORT_SYMBOL vmlinux 0x769f6e64 errseq_check -EXPORT_SYMBOL vmlinux 0x76a83ddb flow_rule_match_enc_ports -EXPORT_SYMBOL vmlinux 0x76af1bb3 dma_map_sg_attrs +EXPORT_SYMBOL vmlinux 0x76bd9ade key_invalidate EXPORT_SYMBOL vmlinux 0x76c30af9 unregister_nls EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode -EXPORT_SYMBOL vmlinux 0x76dc723e d_splice_alias -EXPORT_SYMBOL vmlinux 0x76ee68ab jbd2_journal_put_journal_head -EXPORT_SYMBOL vmlinux 0x76f33b91 mipi_dsi_dcs_set_display_off -EXPORT_SYMBOL vmlinux 0x76f3f1b8 unregister_fib_notifier EXPORT_SYMBOL vmlinux 0x76fb08a7 amd_iommu_unregister_ppr_notifier -EXPORT_SYMBOL vmlinux 0x77063af6 tty_port_block_til_ready -EXPORT_SYMBOL vmlinux 0x770deaba blkdev_issue_zeroout -EXPORT_SYMBOL vmlinux 0x77129b14 sock_recv_errqueue -EXPORT_SYMBOL vmlinux 0x7713ade4 register_filesystem -EXPORT_SYMBOL vmlinux 0x77195407 xsk_uses_need_wakeup -EXPORT_SYMBOL vmlinux 0x772807c3 __register_chrdev -EXPORT_SYMBOL vmlinux 0x772c8d7f sock_kmalloc +EXPORT_SYMBOL vmlinux 0x770eb0f6 tty_port_lower_dtr_rts +EXPORT_SYMBOL vmlinux 0x772fc361 tty_check_change EXPORT_SYMBOL vmlinux 0x7732159c free_irq_cpu_rmap EXPORT_SYMBOL vmlinux 0x77358855 iomem_resource EXPORT_SYMBOL vmlinux 0x773fa409 __kfifo_dma_in_finish_r EXPORT_SYMBOL vmlinux 0x77456e0a acpi_root_dir -EXPORT_SYMBOL vmlinux 0x77676b10 dma_pool_create EXPORT_SYMBOL vmlinux 0x777a47ff override_creds -EXPORT_SYMBOL vmlinux 0x777f3676 dquot_load_quota_sb +EXPORT_SYMBOL vmlinux 0x779014e1 get_tree_single EXPORT_SYMBOL vmlinux 0x7791193f icst525_s2div -EXPORT_SYMBOL vmlinux 0x77924493 tcp_v4_mtu_reduced -EXPORT_SYMBOL vmlinux 0x7794f647 find_inode_rcu -EXPORT_SYMBOL vmlinux 0x779ea92d netdev_bonding_info_change +EXPORT_SYMBOL vmlinux 0x779c7a8b sock_recvmsg EXPORT_SYMBOL vmlinux 0x77b0fed9 __next_node_in -EXPORT_SYMBOL vmlinux 0x77b949df tty_kref_put +EXPORT_SYMBOL vmlinux 0x77b3aae4 phy_modify_paged EXPORT_SYMBOL vmlinux 0x77bc13a0 strim EXPORT_SYMBOL vmlinux 0x77be46b2 config_item_put -EXPORT_SYMBOL vmlinux 0x77d193d2 skb_pull -EXPORT_SYMBOL vmlinux 0x77e75914 devfreq_add_governor +EXPORT_SYMBOL vmlinux 0x77db3598 param_set_ushort +EXPORT_SYMBOL vmlinux 0x77e996b5 inode_set_flags EXPORT_SYMBOL vmlinux 0x77e9eb37 aes_encrypt -EXPORT_SYMBOL vmlinux 0x77f9fb7d jbd2_journal_begin_ordered_truncate -EXPORT_SYMBOL vmlinux 0x77fbb558 netlink_ns_capable +EXPORT_SYMBOL vmlinux 0x77f1435d pnp_disable_dev +EXPORT_SYMBOL vmlinux 0x77f5c8b9 devm_register_reboot_notifier EXPORT_SYMBOL vmlinux 0x7807f0f8 schedule_timeout_idle EXPORT_SYMBOL vmlinux 0x780fdfd1 intel_enable_gtt -EXPORT_SYMBOL vmlinux 0x782a42a5 vfs_fileattr_set +EXPORT_SYMBOL vmlinux 0x7816a1f6 set_posix_acl EXPORT_SYMBOL vmlinux 0x7834defd vfio_group_unpin_pages -EXPORT_SYMBOL vmlinux 0x783e23ce iov_iter_init -EXPORT_SYMBOL vmlinux 0x7843f071 fs_param_is_string EXPORT_SYMBOL vmlinux 0x7846af3e __kfifo_len_r -EXPORT_SYMBOL vmlinux 0x785e13ab fs_param_is_enum +EXPORT_SYMBOL vmlinux 0x7861c155 ip6_frag_init +EXPORT_SYMBOL vmlinux 0x787989ac blk_queue_io_opt +EXPORT_SYMBOL vmlinux 0x787c2fa7 dmam_free_coherent EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback -EXPORT_SYMBOL vmlinux 0x788f0448 sg_miter_skip +EXPORT_SYMBOL vmlinux 0x789026db jbd2_journal_dirty_metadata EXPORT_SYMBOL vmlinux 0x789affb1 frontswap_tmem_exclusive_gets EXPORT_SYMBOL vmlinux 0x78a16f48 aes_decrypt -EXPORT_SYMBOL vmlinux 0x78a613e0 skb_dequeue -EXPORT_SYMBOL vmlinux 0x78aa8bf5 jbd2_journal_load -EXPORT_SYMBOL vmlinux 0x78b4c608 inet_reqsk_alloc +EXPORT_SYMBOL vmlinux 0x78b7dd6b input_mt_init_slots EXPORT_SYMBOL vmlinux 0x78b887ed vsprintf -EXPORT_SYMBOL vmlinux 0x78cc378c inet_addr_type_dev_table -EXPORT_SYMBOL vmlinux 0x78d5b49c ndo_dflt_fdb_del -EXPORT_SYMBOL vmlinux 0x78dba907 scsi_add_device EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices -EXPORT_SYMBOL vmlinux 0x78e73875 ipv6_find_hdr -EXPORT_SYMBOL vmlinux 0x78e8c441 scsi_command_normalize_sense -EXPORT_SYMBOL vmlinux 0x7904ab93 component_match_add_release +EXPORT_SYMBOL vmlinux 0x78fe4763 fs_bio_set EXPORT_SYMBOL vmlinux 0x790bafd4 blk_stack_limits -EXPORT_SYMBOL vmlinux 0x79204062 eisa_driver_unregister -EXPORT_SYMBOL vmlinux 0x79487a58 _copy_from_iter -EXPORT_SYMBOL vmlinux 0x794e3fcf inet_csk_reqsk_queue_drop_and_put -EXPORT_SYMBOL vmlinux 0x796b87cc netlink_set_err +EXPORT_SYMBOL vmlinux 0x790f8bf2 get_user_pages +EXPORT_SYMBOL vmlinux 0x7924f575 d_instantiate_anon +EXPORT_SYMBOL vmlinux 0x79355ece pnp_start_dev +EXPORT_SYMBOL vmlinux 0x793abf03 csum_and_copy_from_iter +EXPORT_SYMBOL vmlinux 0x7943df8a flow_rule_match_enc_ip +EXPORT_SYMBOL vmlinux 0x7944d408 napi_gro_frags +EXPORT_SYMBOL vmlinux 0x7953a7be uart_resume_port +EXPORT_SYMBOL vmlinux 0x79589e9d qdisc_put_unlocked EXPORT_SYMBOL vmlinux 0x79739c3c utf8nagemin -EXPORT_SYMBOL vmlinux 0x7976e341 tcf_classify -EXPORT_SYMBOL vmlinux 0x79815e8e pnp_possible_config -EXPORT_SYMBOL vmlinux 0x7983879f d_add_ci +EXPORT_SYMBOL vmlinux 0x797931a5 twl6040_set_pll EXPORT_SYMBOL vmlinux 0x7984eefc key_update -EXPORT_SYMBOL vmlinux 0x7985cfa9 dev_change_flags -EXPORT_SYMBOL vmlinux 0x798bfeb3 agp_generic_mask_memory -EXPORT_SYMBOL vmlinux 0x79924a39 noop_fsync -EXPORT_SYMBOL vmlinux 0x799515c0 softnet_data -EXPORT_SYMBOL vmlinux 0x79969c0b vc_resize +EXPORT_SYMBOL vmlinux 0x7993bdcd netdev_get_xmit_slave +EXPORT_SYMBOL vmlinux 0x79961d5a blk_queue_segment_boundary EXPORT_SYMBOL vmlinux 0x79a33f85 vme_get_size EXPORT_SYMBOL vmlinux 0x79aa04a2 get_random_bytes -EXPORT_SYMBOL vmlinux 0x79c582c8 devm_pci_remap_cfgspace -EXPORT_SYMBOL vmlinux 0x79c5c311 __blockdev_direct_IO -EXPORT_SYMBOL vmlinux 0x79ca6864 key_alloc -EXPORT_SYMBOL vmlinux 0x79cd2b77 elv_rb_find +EXPORT_SYMBOL vmlinux 0x79aaffbf devm_iounmap +EXPORT_SYMBOL vmlinux 0x79c08ebc sock_no_socketpair +EXPORT_SYMBOL vmlinux 0x79c166a8 alloc_netdev_mqs +EXPORT_SYMBOL vmlinux 0x79c7b957 __d_lookup_done +EXPORT_SYMBOL vmlinux 0x79c9cf3d reuseport_detach_sock +EXPORT_SYMBOL vmlinux 0x79d40c06 blk_mq_rq_cpu EXPORT_SYMBOL vmlinux 0x79df9633 ioremap_encrypted EXPORT_SYMBOL vmlinux 0x79ec8f93 blk_start_plug -EXPORT_SYMBOL vmlinux 0x79fd9680 proc_create_mount_point -EXPORT_SYMBOL vmlinux 0x7a046641 __dev_remove_pack +EXPORT_SYMBOL vmlinux 0x79fda94f vfs_get_fsid +EXPORT_SYMBOL vmlinux 0x7a081076 nvmem_get_mac_address EXPORT_SYMBOL vmlinux 0x7a09a064 seg6_hmac_compute -EXPORT_SYMBOL vmlinux 0x7a0c0b17 kmem_cache_size +EXPORT_SYMBOL vmlinux 0x7a1bb92f bdi_register EXPORT_SYMBOL vmlinux 0x7a1bcd59 gf128mul_x8_ble +EXPORT_SYMBOL vmlinux 0x7a212360 dev_getbyhwaddr_rcu EXPORT_SYMBOL vmlinux 0x7a2af7b4 cpu_number -EXPORT_SYMBOL vmlinux 0x7a42fb53 inode_dio_wait -EXPORT_SYMBOL vmlinux 0x7a68bf39 fs_param_is_bool -EXPORT_SYMBOL vmlinux 0x7a7eb355 qdisc_watchdog_init_clockid -EXPORT_SYMBOL vmlinux 0x7a856db8 dquot_quota_on -EXPORT_SYMBOL vmlinux 0x7a876955 pci_get_domain_bus_and_slot +EXPORT_SYMBOL vmlinux 0x7a2ed176 __register_binfmt +EXPORT_SYMBOL vmlinux 0x7a36b586 elevator_alloc +EXPORT_SYMBOL vmlinux 0x7a6106ce mmc_can_secure_erase_trim +EXPORT_SYMBOL vmlinux 0x7a68ccab param_get_string +EXPORT_SYMBOL vmlinux 0x7a6cebaa udp_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0x7a7cc9ef devfreq_remove_governor +EXPORT_SYMBOL vmlinux 0x7a871407 ip_generic_getfrag EXPORT_SYMBOL vmlinux 0x7a88da87 iosf_mbi_write -EXPORT_SYMBOL vmlinux 0x7a95be59 devm_clk_put +EXPORT_SYMBOL vmlinux 0x7a8d7432 __SCK__tp_func_dma_fence_enable_signal EXPORT_SYMBOL vmlinux 0x7a95e5ae do_settimeofday64 EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree +EXPORT_SYMBOL vmlinux 0x7ab0c481 mmc_gpiod_request_ro EXPORT_SYMBOL vmlinux 0x7ab45d25 dma_fence_array_create EXPORT_SYMBOL vmlinux 0x7ab88a45 system_freezing_cnt -EXPORT_SYMBOL vmlinux 0x7abeafba jbd2_fc_end_commit EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt EXPORT_SYMBOL vmlinux 0x7adc0fbf rb_replace_node_rcu -EXPORT_SYMBOL vmlinux 0x7ae56065 clk_get -EXPORT_SYMBOL vmlinux 0x7aff1619 sock_set_reuseaddr EXPORT_SYMBOL vmlinux 0x7aff77a3 __cpu_present_mask -EXPORT_SYMBOL vmlinux 0x7b06d759 pci_match_id -EXPORT_SYMBOL vmlinux 0x7b2ad7f0 udp_lib_get_port +EXPORT_SYMBOL vmlinux 0x7b226ad8 dev_mc_init +EXPORT_SYMBOL vmlinux 0x7b23ab24 vfs_rename +EXPORT_SYMBOL vmlinux 0x7b26be11 wireless_spy_update +EXPORT_SYMBOL vmlinux 0x7b3311a8 sock_set_reuseport EXPORT_SYMBOL vmlinux 0x7b37d4a7 _find_first_zero_bit -EXPORT_SYMBOL vmlinux 0x7b49cee8 finish_swait EXPORT_SYMBOL vmlinux 0x7b4da6ff __init_rwsem -EXPORT_SYMBOL vmlinux 0x7b594993 nf_ip6_checksum -EXPORT_SYMBOL vmlinux 0x7b5ad9c3 blk_queue_io_opt +EXPORT_SYMBOL vmlinux 0x7b4fe2a3 udp_disconnect +EXPORT_SYMBOL vmlinux 0x7b526d3b unlock_new_inode EXPORT_SYMBOL vmlinux 0x7b5b8f31 sha256_update -EXPORT_SYMBOL vmlinux 0x7b700832 mmc_alloc_host -EXPORT_SYMBOL vmlinux 0x7b7ffe44 pci_read_config_word +EXPORT_SYMBOL vmlinux 0x7b5ea52f input_register_handle +EXPORT_SYMBOL vmlinux 0x7b820db7 pnp_unregister_driver EXPORT_SYMBOL vmlinux 0x7b82b9a1 idr_replace -EXPORT_SYMBOL vmlinux 0x7b89025c tcp_parse_options -EXPORT_SYMBOL vmlinux 0x7b8cd942 dev_uc_add_excl -EXPORT_SYMBOL vmlinux 0x7b8e6e5b tcp_v4_connect -EXPORT_SYMBOL vmlinux 0x7b923216 ethtool_notify -EXPORT_SYMBOL vmlinux 0x7ba1dbf6 tcf_idr_create -EXPORT_SYMBOL vmlinux 0x7badda77 bio_integrity_alloc -EXPORT_SYMBOL vmlinux 0x7bb20083 request_key_with_auxdata +EXPORT_SYMBOL vmlinux 0x7babf8ec netdev_name_node_alt_create EXPORT_SYMBOL vmlinux 0x7bb50b88 acpi_write -EXPORT_SYMBOL vmlinux 0x7bb85bdb pci_iounmap EXPORT_SYMBOL vmlinux 0x7bbccd05 nr_node_ids -EXPORT_SYMBOL vmlinux 0x7bdff2b3 kthread_bind -EXPORT_SYMBOL vmlinux 0x7be04c25 param_get_uint -EXPORT_SYMBOL vmlinux 0x7be586ca page_pool_alloc_pages -EXPORT_SYMBOL vmlinux 0x7be7c28c bio_free_pages -EXPORT_SYMBOL vmlinux 0x7c01e415 block_truncate_page -EXPORT_SYMBOL vmlinux 0x7c0326e6 touchscreen_report_pos -EXPORT_SYMBOL vmlinux 0x7c08192b fb_pan_display -EXPORT_SYMBOL vmlinux 0x7c14dd60 set_bh_page +EXPORT_SYMBOL vmlinux 0x7bc72124 eth_validate_addr +EXPORT_SYMBOL vmlinux 0x7bcae7fb mipi_dsi_generic_write +EXPORT_SYMBOL vmlinux 0x7bcbbf1c fwnode_get_mac_address +EXPORT_SYMBOL vmlinux 0x7bcbe16b phy_set_asym_pause +EXPORT_SYMBOL vmlinux 0x7bce05f0 sock_set_sndtimeo +EXPORT_SYMBOL vmlinux 0x7bd0a6d1 __dev_kfree_skb_any +EXPORT_SYMBOL vmlinux 0x7becbdd1 mipi_dsi_dcs_write +EXPORT_SYMBOL vmlinux 0x7bee4bed ip6mr_rule_default EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement -EXPORT_SYMBOL vmlinux 0x7c1d3e28 pci_request_selected_regions -EXPORT_SYMBOL vmlinux 0x7c275337 mark_buffer_async_write -EXPORT_SYMBOL vmlinux 0x7c281d97 igrab -EXPORT_SYMBOL vmlinux 0x7c2e6b75 eth_platform_get_mac_address -EXPORT_SYMBOL vmlinux 0x7c418bfa i2c_smbus_read_byte_data +EXPORT_SYMBOL vmlinux 0x7c259ff6 skb_dequeue_tail +EXPORT_SYMBOL vmlinux 0x7c3c139e drop_super_exclusive +EXPORT_SYMBOL vmlinux 0x7c3ccfcc napi_disable EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get -EXPORT_SYMBOL vmlinux 0x7c6368c1 inet_pton_with_scope -EXPORT_SYMBOL vmlinux 0x7c7467fd sock_efree -EXPORT_SYMBOL vmlinux 0x7c7d21c1 netpoll_poll_dev +EXPORT_SYMBOL vmlinux 0x7c607bb2 netdev_set_sb_channel +EXPORT_SYMBOL vmlinux 0x7c904c78 scsi_scan_target EXPORT_SYMBOL vmlinux 0x7c9ca58f __sg_page_iter_next -EXPORT_SYMBOL vmlinux 0x7c9d9d65 put_disk -EXPORT_SYMBOL vmlinux 0x7caae863 __scm_send -EXPORT_SYMBOL vmlinux 0x7caccecb __ip_dev_find EXPORT_SYMBOL vmlinux 0x7cb1aea1 devlink_dpipe_header_ethernet -EXPORT_SYMBOL vmlinux 0x7cc5777f serio_bus -EXPORT_SYMBOL vmlinux 0x7cd2e211 put_fs_context -EXPORT_SYMBOL vmlinux 0x7cd5644a xfrm_unregister_type +EXPORT_SYMBOL vmlinux 0x7cc35e25 scsi_vpd_tpg_id +EXPORT_SYMBOL vmlinux 0x7cd5330f page_cache_next_miss EXPORT_SYMBOL vmlinux 0x7cd8d75e page_offset_base +EXPORT_SYMBOL vmlinux 0x7cdbf7d3 inode_update_time EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid EXPORT_SYMBOL vmlinux 0x7ce58981 kvrealloc EXPORT_SYMBOL vmlinux 0x7cf35220 vme_master_free +EXPORT_SYMBOL vmlinux 0x7cf817ab ip_sock_set_mtu_discover EXPORT_SYMBOL vmlinux 0x7cfe368d net_dim_get_def_tx_moderation -EXPORT_SYMBOL vmlinux 0x7d05e811 skb_append +EXPORT_SYMBOL vmlinux 0x7d089b62 vga_con +EXPORT_SYMBOL vmlinux 0x7d08cc9c param_set_byte EXPORT_SYMBOL vmlinux 0x7d0ba682 gen_pool_virt_to_phys EXPORT_SYMBOL vmlinux 0x7d0db45c jiffies_to_clock_t EXPORT_SYMBOL vmlinux 0x7d12d76d acpi_get_parent -EXPORT_SYMBOL vmlinux 0x7d132dab flow_rule_match_meta -EXPORT_SYMBOL vmlinux 0x7d32bdda xfrm_trans_queue_net -EXPORT_SYMBOL vmlinux 0x7d41fbb1 dquot_drop +EXPORT_SYMBOL vmlinux 0x7d2a3b34 flow_rule_match_ct +EXPORT_SYMBOL vmlinux 0x7d2d930a input_set_timestamp EXPORT_SYMBOL vmlinux 0x7d4b176a netlbl_catmap_setbit -EXPORT_SYMBOL vmlinux 0x7d58b739 vfs_mkobj +EXPORT_SYMBOL vmlinux 0x7d4fcc9a ptp_clock_unregister +EXPORT_SYMBOL vmlinux 0x7d57bd84 __neigh_set_probe_once EXPORT_SYMBOL vmlinux 0x7d5e1008 __crc32c_le_shift -EXPORT_SYMBOL vmlinux 0x7d5e49a6 pci_wake_from_d3 EXPORT_SYMBOL vmlinux 0x7d628444 memcpy_fromio -EXPORT_SYMBOL vmlinux 0x7d69835f inet_del_offload -EXPORT_SYMBOL vmlinux 0x7d6ba910 nd_region_to_nstype +EXPORT_SYMBOL vmlinux 0x7d725a2e padata_alloc EXPORT_SYMBOL vmlinux 0x7d74d522 kstrtoull_from_user -EXPORT_SYMBOL vmlinux 0x7d75c7f8 max8925_reg_write -EXPORT_SYMBOL vmlinux 0x7d7f078e file_update_time -EXPORT_SYMBOL vmlinux 0x7d97b8ab con_set_default_unimap -EXPORT_SYMBOL vmlinux 0x7d9a3266 jbd2_journal_clear_err -EXPORT_SYMBOL vmlinux 0x7da0459f tcp_sock_set_user_timeout +EXPORT_SYMBOL vmlinux 0x7d90cb2f fget_raw +EXPORT_SYMBOL vmlinux 0x7da08b10 gnet_stats_start_copy EXPORT_SYMBOL vmlinux 0x7daece67 quota_send_warning -EXPORT_SYMBOL vmlinux 0x7dbaca8c dma_async_tx_descriptor_init -EXPORT_SYMBOL vmlinux 0x7dce5ad6 writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0x7dbacc05 dev_printk_emit +EXPORT_SYMBOL vmlinux 0x7dbf5938 kernel_accept +EXPORT_SYMBOL vmlinux 0x7dc7e541 security_task_getsecid_obj EXPORT_SYMBOL vmlinux 0x7dcf4135 __xa_insert +EXPORT_SYMBOL vmlinux 0x7dd54595 pci_get_domain_bus_and_slot EXPORT_SYMBOL vmlinux 0x7dd554fc unregister_kmmio_probe EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args EXPORT_SYMBOL vmlinux 0x7df44163 textsearch_find_continuous -EXPORT_SYMBOL vmlinux 0x7e1d5a4d devm_of_find_backlight -EXPORT_SYMBOL vmlinux 0x7e217049 mr_mfc_seq_next EXPORT_SYMBOL vmlinux 0x7e3191f6 try_to_del_timer_sync -EXPORT_SYMBOL vmlinux 0x7e41ae28 page_pool_destroy -EXPORT_SYMBOL vmlinux 0x7e51b3f3 skb_mac_gso_segment -EXPORT_SYMBOL vmlinux 0x7e5b4dab bh_submit_read -EXPORT_SYMBOL vmlinux 0x7e5f7da6 xp_dma_map +EXPORT_SYMBOL vmlinux 0x7e3334e5 iw_handler_get_thrspy +EXPORT_SYMBOL vmlinux 0x7e48f54b write_inode_now +EXPORT_SYMBOL vmlinux 0x7e4f8f17 ps2_end_command +EXPORT_SYMBOL vmlinux 0x7e649906 tty_port_block_til_ready +EXPORT_SYMBOL vmlinux 0x7e688787 skb_unlink EXPORT_SYMBOL vmlinux 0x7e7bcf26 acpi_map_cpu -EXPORT_SYMBOL vmlinux 0x7e89d4ea of_find_mipi_dsi_device_by_node -EXPORT_SYMBOL vmlinux 0x7e997906 amd_iommu_domain_enable_v2 -EXPORT_SYMBOL vmlinux 0x7e9a4336 get_phy_device -EXPORT_SYMBOL vmlinux 0x7e9a7acd devfreq_remove_device -EXPORT_SYMBOL vmlinux 0x7eaae137 pm860x_page_bulk_read -EXPORT_SYMBOL vmlinux 0x7eaba08b devm_ioport_map -EXPORT_SYMBOL vmlinux 0x7eacc47e key_validate -EXPORT_SYMBOL vmlinux 0x7ebcd5f2 block_read_full_page -EXPORT_SYMBOL vmlinux 0x7ec03c2e pnp_is_active -EXPORT_SYMBOL vmlinux 0x7ec0a14b get_task_cred -EXPORT_SYMBOL vmlinux 0x7ec6e0ee netlink_kernel_release -EXPORT_SYMBOL vmlinux 0x7ed3a77c ipv6_select_ident -EXPORT_SYMBOL vmlinux 0x7ee362d2 udplite_prot +EXPORT_SYMBOL vmlinux 0x7e82e785 mmput_async +EXPORT_SYMBOL vmlinux 0x7e888c85 gnet_stats_start_copy_compat +EXPORT_SYMBOL vmlinux 0x7eadf0bc skb_eth_pop +EXPORT_SYMBOL vmlinux 0x7eb176eb vfs_mkobj +EXPORT_SYMBOL vmlinux 0x7ebca4fe locks_delete_block EXPORT_SYMBOL vmlinux 0x7f02188f __msecs_to_jiffies EXPORT_SYMBOL vmlinux 0x7f03b6a9 crc_ccitt_table EXPORT_SYMBOL vmlinux 0x7f07418b __SCT__tp_func_kmem_cache_alloc_node -EXPORT_SYMBOL vmlinux 0x7f0cac6c from_kuid_munged +EXPORT_SYMBOL vmlinux 0x7f0881d2 scsi_alloc_sgtables EXPORT_SYMBOL vmlinux 0x7f14ac73 config_group_init -EXPORT_SYMBOL vmlinux 0x7f1e6094 free_xenballooned_pages -EXPORT_SYMBOL vmlinux 0x7f21badd ipv4_mtu EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs -EXPORT_SYMBOL vmlinux 0x7f35d164 vfs_iocb_iter_write -EXPORT_SYMBOL vmlinux 0x7f4e7afd set_page_dirty_lock +EXPORT_SYMBOL vmlinux 0x7f321fd0 dquot_commit_info +EXPORT_SYMBOL vmlinux 0x7f40f011 md_bitmap_unplug EXPORT_SYMBOL vmlinux 0x7f52071a net_dim -EXPORT_SYMBOL vmlinux 0x7f5954d8 xfrm_state_unregister_afinfo -EXPORT_SYMBOL vmlinux 0x7f5a989c zpool_unregister_driver EXPORT_SYMBOL vmlinux 0x7f5b4fe4 sg_free_table -EXPORT_SYMBOL vmlinux 0x7f6361c1 eisa_bus_type -EXPORT_SYMBOL vmlinux 0x7f659e9b __tty_insert_flip_char -EXPORT_SYMBOL vmlinux 0x7f6bde97 param_get_ulong -EXPORT_SYMBOL vmlinux 0x7f73d729 tcf_action_dump_1 EXPORT_SYMBOL vmlinux 0x7f7f7bb4 irq_poll_disable -EXPORT_SYMBOL vmlinux 0x7f99e7e6 jbd2_journal_try_to_free_buffers -EXPORT_SYMBOL vmlinux 0x7fa9f639 phy_get_c45_ids -EXPORT_SYMBOL vmlinux 0x7fbc8ba4 ppp_unregister_compressor +EXPORT_SYMBOL vmlinux 0x7f968487 vga_remove_vgacon +EXPORT_SYMBOL vmlinux 0x7fa66cf6 kill_anon_super +EXPORT_SYMBOL vmlinux 0x7fb63f4b d_make_root +EXPORT_SYMBOL vmlinux 0x7fb9eafc skb_clone_sk +EXPORT_SYMBOL vmlinux 0x7fbe6a28 sock_wmalloc +EXPORT_SYMBOL vmlinux 0x7fbebc07 neigh_event_ns EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node -EXPORT_SYMBOL vmlinux 0x7ff227c5 pci_request_regions -EXPORT_SYMBOL vmlinux 0x7ff340eb inet_dgram_ops -EXPORT_SYMBOL vmlinux 0x7ff3c6d4 vme_register_error_handler -EXPORT_SYMBOL vmlinux 0x7ff95587 mount_bdev -EXPORT_SYMBOL vmlinux 0x7ffe786e sock_i_uid -EXPORT_SYMBOL vmlinux 0x802bb5e7 input_enable_softrepeat -EXPORT_SYMBOL vmlinux 0x802ecbeb mmc_sw_reset -EXPORT_SYMBOL vmlinux 0x8037059d dev_activate +EXPORT_SYMBOL vmlinux 0x7fe46041 insert_inode_locked +EXPORT_SYMBOL vmlinux 0x7fea90bc generic_copy_file_range +EXPORT_SYMBOL vmlinux 0x7feccf4f param_ops_ulong +EXPORT_SYMBOL vmlinux 0x7ff8d4f4 mmc_command_done +EXPORT_SYMBOL vmlinux 0x80006262 xfrm_policy_walk +EXPORT_SYMBOL vmlinux 0x800bc135 phy_reset_after_clk_enable +EXPORT_SYMBOL vmlinux 0x8039cb34 scm_fp_dup EXPORT_SYMBOL vmlinux 0x803ddbb6 __posix_acl_create -EXPORT_SYMBOL vmlinux 0x8040745a flow_rule_match_control EXPORT_SYMBOL vmlinux 0x804af87c wrmsr_safe_on_cpu -EXPORT_SYMBOL vmlinux 0x80682648 dcb_ieee_getapp_default_prio_mask -EXPORT_SYMBOL vmlinux 0x8068d081 pskb_expand_head -EXPORT_SYMBOL vmlinux 0x808d3ef9 get_tree_bdev -EXPORT_SYMBOL vmlinux 0x808eaa20 sock_rfree -EXPORT_SYMBOL vmlinux 0x8091f2e9 vme_dma_list_free +EXPORT_SYMBOL vmlinux 0x80517863 __put_user_ns +EXPORT_SYMBOL vmlinux 0x806596ea dquot_transfer +EXPORT_SYMBOL vmlinux 0x807a4b24 __devm_request_region +EXPORT_SYMBOL vmlinux 0x8082e6b2 kthread_create_worker_on_cpu EXPORT_SYMBOL vmlinux 0x809712ff hdmi_avi_infoframe_pack -EXPORT_SYMBOL vmlinux 0x8099f0e1 linkwatch_fire_event -EXPORT_SYMBOL vmlinux 0x80a36000 tty_port_free_xmit_buf EXPORT_SYMBOL vmlinux 0x80a717a8 __percpu_counter_compare EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd +EXPORT_SYMBOL vmlinux 0x80cf93d1 uart_register_driver EXPORT_SYMBOL vmlinux 0x80d68d3e fb_register_client -EXPORT_SYMBOL vmlinux 0x80daf9f7 pci_claim_resource +EXPORT_SYMBOL vmlinux 0x80e3c62a wait_on_page_bit_killable EXPORT_SYMBOL vmlinux 0x80e5f86f fscrypt_fname_alloc_buffer -EXPORT_SYMBOL vmlinux 0x80ea378b __skb_wait_for_more_packets -EXPORT_SYMBOL vmlinux 0x81042681 __i2c_transfer -EXPORT_SYMBOL vmlinux 0x8109ec00 pci_free_irq +EXPORT_SYMBOL vmlinux 0x80e7db91 __generic_file_fsync +EXPORT_SYMBOL vmlinux 0x80f22171 agp_alloc_page_array EXPORT_SYMBOL vmlinux 0x810bef7e sg_free_append_table -EXPORT_SYMBOL vmlinux 0x810d60bf simple_dir_operations EXPORT_SYMBOL vmlinux 0x8112b3d2 scsi_build_sense_buffer +EXPORT_SYMBOL vmlinux 0x8112ca63 bfifo_qdisc_ops EXPORT_SYMBOL vmlinux 0x81188c30 match_string -EXPORT_SYMBOL vmlinux 0x8129cf8f bio_uninit -EXPORT_SYMBOL vmlinux 0x813b4a02 xfrm_state_walk -EXPORT_SYMBOL vmlinux 0x815215c3 agp_enable +EXPORT_SYMBOL vmlinux 0x813ea612 __traceiter_spi_transfer_start +EXPORT_SYMBOL vmlinux 0x813ed031 qdisc_offload_graft_helper +EXPORT_SYMBOL vmlinux 0x814161f4 sk_reset_timer 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 0x817e246f rproc_get_by_child EXPORT_SYMBOL vmlinux 0x818416e1 scsi_set_sense_information -EXPORT_SYMBOL vmlinux 0x81969da7 blk_post_runtime_resume -EXPORT_SYMBOL vmlinux 0x819b3b7f skb_checksum -EXPORT_SYMBOL vmlinux 0x819cff8f ethtool_op_get_link +EXPORT_SYMBOL vmlinux 0x81927bed generic_fill_statx_attr EXPORT_SYMBOL vmlinux 0x81ac5e33 trace_print_hex_dump_seq -EXPORT_SYMBOL vmlinux 0x81ce28ce netdev_adjacent_change_abort +EXPORT_SYMBOL vmlinux 0x81ac851b scsi_vpd_lun_id +EXPORT_SYMBOL vmlinux 0x81b28e4c kernel_sendmsg +EXPORT_SYMBOL vmlinux 0x81b45f78 genphy_c37_read_status +EXPORT_SYMBOL vmlinux 0x81b4888e nd_region_release_lane +EXPORT_SYMBOL vmlinux 0x81b51ed1 tty_port_open +EXPORT_SYMBOL vmlinux 0x81bccdd3 uart_unregister_driver +EXPORT_SYMBOL vmlinux 0x81c4038f phy_modify_paged_changed EXPORT_SYMBOL vmlinux 0x81ce9941 intel_scu_ipc_dev_writev -EXPORT_SYMBOL vmlinux 0x81d52b0c inc_node_page_state EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset -EXPORT_SYMBOL vmlinux 0x81de81bf ip6_dst_alloc -EXPORT_SYMBOL vmlinux 0x81e4fc01 tso_build_data EXPORT_SYMBOL vmlinux 0x81e6b37f dmi_get_system_info -EXPORT_SYMBOL vmlinux 0x81f6b73d pcie_set_mps -EXPORT_SYMBOL vmlinux 0x81fa860d netdev_adjacent_change_commit -EXPORT_SYMBOL vmlinux 0x822fa6ff bdev_read_only -EXPORT_SYMBOL vmlinux 0x8231552a security_inode_init_security -EXPORT_SYMBOL vmlinux 0x8237b55c d_add +EXPORT_SYMBOL vmlinux 0x81e7d603 genphy_c37_config_aneg +EXPORT_SYMBOL vmlinux 0x82084194 __bio_clone_fast +EXPORT_SYMBOL vmlinux 0x8226e08f should_remove_suid +EXPORT_SYMBOL vmlinux 0x82378986 devm_of_iomap EXPORT_SYMBOL vmlinux 0x823c19ea iosf_mbi_unregister_pmic_bus_access_notifier_unlocked -EXPORT_SYMBOL vmlinux 0x82420516 dev_get_mac_address -EXPORT_SYMBOL vmlinux 0x8249f4fe xsk_tx_release +EXPORT_SYMBOL vmlinux 0x82505e2c kfree_skb_partial +EXPORT_SYMBOL vmlinux 0x825296c7 genphy_handle_interrupt_no_ack EXPORT_SYMBOL vmlinux 0x8263a6d9 proc_douintvec -EXPORT_SYMBOL vmlinux 0x8272b0bd iov_iter_bvec +EXPORT_SYMBOL vmlinux 0x8268047a con_is_bound +EXPORT_SYMBOL vmlinux 0x82733da4 vlan_filter_drop_vids EXPORT_SYMBOL vmlinux 0x828062b1 __frontswap_init -EXPORT_SYMBOL vmlinux 0x82b07fc8 release_sock -EXPORT_SYMBOL vmlinux 0x82c867bc skb_queue_head +EXPORT_SYMBOL vmlinux 0x828e9e8f jbd2_submit_inode_data EXPORT_SYMBOL vmlinux 0x82c87ad5 nr_online_nodes -EXPORT_SYMBOL vmlinux 0x8316cd47 __neigh_create -EXPORT_SYMBOL vmlinux 0x831832d5 tcp_v4_destroy_sock -EXPORT_SYMBOL vmlinux 0x8338ef49 param_get_bool -EXPORT_SYMBOL vmlinux 0x833dc885 nf_log_unregister -EXPORT_SYMBOL vmlinux 0x834db6e7 request_key_tag -EXPORT_SYMBOL vmlinux 0x835484b2 phy_driver_register +EXPORT_SYMBOL vmlinux 0x82d92ee0 __frontswap_store +EXPORT_SYMBOL vmlinux 0x8331cffe set_bdi_congested +EXPORT_SYMBOL vmlinux 0x8331da8b iunique +EXPORT_SYMBOL vmlinux 0x8354a10e pci_disable_msix EXPORT_SYMBOL vmlinux 0x83581089 gf128mul_init_4k_lle EXPORT_SYMBOL vmlinux 0x837b7b09 __dynamic_pr_debug -EXPORT_SYMBOL vmlinux 0x8385d27a unregister_md_personality +EXPORT_SYMBOL vmlinux 0x837d8225 devfreq_add_governor +EXPORT_SYMBOL vmlinux 0x8389e7b6 devm_request_any_context_irq +EXPORT_SYMBOL vmlinux 0x838af98f vif_device_init EXPORT_SYMBOL vmlinux 0x838d2bc8 siphash_3u32 -EXPORT_SYMBOL vmlinux 0x83931441 security_sb_mnt_opts_compat -EXPORT_SYMBOL vmlinux 0x83b4ca7e skb_vlan_push -EXPORT_SYMBOL vmlinux 0x83b98530 xfrm_parse_spi +EXPORT_SYMBOL vmlinux 0x83918c86 mod_node_page_state +EXPORT_SYMBOL vmlinux 0x839b892b dump_page +EXPORT_SYMBOL vmlinux 0x839e7291 padata_alloc_shell +EXPORT_SYMBOL vmlinux 0x839fcbe6 __devm_release_region +EXPORT_SYMBOL vmlinux 0x83a38ef7 flow_rule_match_mpls +EXPORT_SYMBOL vmlinux 0x83c2ad7b vfs_get_link +EXPORT_SYMBOL vmlinux 0x83c4b297 blk_mq_alloc_request EXPORT_SYMBOL vmlinux 0x83c52fba xfrm4_protocol_init -EXPORT_SYMBOL vmlinux 0x83d0bfbc vmf_insert_mixed_mkwrite -EXPORT_SYMBOL vmlinux 0x83d23733 jbd2_journal_get_undo_access -EXPORT_SYMBOL vmlinux 0x83d378ab __dev_set_mtu -EXPORT_SYMBOL vmlinux 0x83e3f191 dquot_commit_info -EXPORT_SYMBOL vmlinux 0x83e6c4bb configfs_register_subsystem -EXPORT_SYMBOL vmlinux 0x83e8f2fe dev_pm_opp_unregister_notifier -EXPORT_SYMBOL vmlinux 0x83f6397a drop_super_exclusive +EXPORT_SYMBOL vmlinux 0x83c5504f i2c_get_adapter +EXPORT_SYMBOL vmlinux 0x83d749bc pci_pme_capable +EXPORT_SYMBOL vmlinux 0x83dee01a devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0x83e6ac87 misc_deregister +EXPORT_SYMBOL vmlinux 0x83f2dc25 dev_mc_del EXPORT_SYMBOL vmlinux 0x840342c6 sgl_free -EXPORT_SYMBOL vmlinux 0x840c9b9e unregister_mii_timestamper -EXPORT_SYMBOL vmlinux 0x84124d12 bdevname -EXPORT_SYMBOL vmlinux 0x841940ed sock_alloc EXPORT_SYMBOL vmlinux 0x8427cc7b _raw_spin_lock_irq -EXPORT_SYMBOL vmlinux 0x842c0618 seq_dentry EXPORT_SYMBOL vmlinux 0x842c8e9d ioread16 +EXPORT_SYMBOL vmlinux 0x842cdab3 jbd2_journal_invalidatepage EXPORT_SYMBOL vmlinux 0x8455e3a7 dma_fence_signal_timestamp_locked -EXPORT_SYMBOL vmlinux 0x845a0b8c md_cluster_ops -EXPORT_SYMBOL vmlinux 0x8461556a neigh_table_clear -EXPORT_SYMBOL vmlinux 0x847ebe35 clear_bdi_congested +EXPORT_SYMBOL vmlinux 0x847f5b72 i2c_smbus_write_i2c_block_data EXPORT_SYMBOL vmlinux 0x84823cf3 nla_strscpy -EXPORT_SYMBOL vmlinux 0x8485ea67 scsi_add_host_with_dma EXPORT_SYMBOL vmlinux 0x848d372e iowrite8 -EXPORT_SYMBOL vmlinux 0x84998142 skb_eth_pop -EXPORT_SYMBOL vmlinux 0x849d1506 inet_addr_type_table -EXPORT_SYMBOL vmlinux 0x84a6488f phy_init_eee +EXPORT_SYMBOL vmlinux 0x8494d3b7 mark_buffer_async_write +EXPORT_SYMBOL vmlinux 0x84a9baf5 dev_get_phys_port_id +EXPORT_SYMBOL vmlinux 0x84b48d8f ip_ct_attach +EXPORT_SYMBOL vmlinux 0x84b74d98 md_bitmap_endwrite +EXPORT_SYMBOL vmlinux 0x84b9ae8b netif_device_detach EXPORT_SYMBOL vmlinux 0x84c03e9a rtnl_nla_parse_ifla EXPORT_SYMBOL vmlinux 0x84c1c552 proc_dointvec_ms_jiffies EXPORT_SYMBOL vmlinux 0x84c4040c security_binder_set_context_mgr -EXPORT_SYMBOL vmlinux 0x84d5a468 blk_mq_start_stopped_hw_queues -EXPORT_SYMBOL vmlinux 0x84fa463e dma_ops -EXPORT_SYMBOL vmlinux 0x8501267b devm_nvmem_unregister -EXPORT_SYMBOL vmlinux 0x85043e8e scsi_mode_sense -EXPORT_SYMBOL vmlinux 0x850912b0 fs_param_is_u64 +EXPORT_SYMBOL vmlinux 0x84c6e146 sock_no_ioctl +EXPORT_SYMBOL vmlinux 0x84d9be02 ppp_channel_index +EXPORT_SYMBOL vmlinux 0x84dceffe dev_set_mac_address +EXPORT_SYMBOL vmlinux 0x84f3da35 security_sock_graft +EXPORT_SYMBOL vmlinux 0x850215be inode_get_bytes +EXPORT_SYMBOL vmlinux 0x850e4e72 dev_remove_offload +EXPORT_SYMBOL vmlinux 0x85127459 tcp_get_cookie_sock +EXPORT_SYMBOL vmlinux 0x8512a23a is_subdir EXPORT_SYMBOL vmlinux 0x8518a4a6 _raw_spin_trylock_bh -EXPORT_SYMBOL vmlinux 0x851d803b blk_execute_rq EXPORT_SYMBOL vmlinux 0x8522d6bc strncpy_from_user -EXPORT_SYMBOL vmlinux 0x85578ef6 agp_create_memory -EXPORT_SYMBOL vmlinux 0x855afe4a fb_get_mode -EXPORT_SYMBOL vmlinux 0x856326ee fb_set_cmap +EXPORT_SYMBOL vmlinux 0x853b2ed4 cpufreq_generic_suspend +EXPORT_SYMBOL vmlinux 0x853d0849 mfd_remove_devices_late +EXPORT_SYMBOL vmlinux 0x85579874 rproc_boot +EXPORT_SYMBOL vmlinux 0x855f4aab devm_clk_get EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked -EXPORT_SYMBOL vmlinux 0x85726cc1 pci_bus_find_capability -EXPORT_SYMBOL vmlinux 0x8574974d netlink_net_capable -EXPORT_SYMBOL vmlinux 0x857a27d5 __icmp_send -EXPORT_SYMBOL vmlinux 0x858bebb6 inet6_csk_route_req -EXPORT_SYMBOL vmlinux 0x858d9e1c security_path_mknod +EXPORT_SYMBOL vmlinux 0x856ceb9a pci_read_config_byte +EXPORT_SYMBOL vmlinux 0x8573f7b6 sg_miter_next +EXPORT_SYMBOL vmlinux 0x85770058 __remove_inode_hash +EXPORT_SYMBOL vmlinux 0x857b5e8a inet_recvmsg +EXPORT_SYMBOL vmlinux 0x858303a8 nd_region_to_nstype EXPORT_SYMBOL vmlinux 0x8591d7d5 ledtrig_mtd_activity -EXPORT_SYMBOL vmlinux 0x859a8b3d pagevec_lookup_range_tag -EXPORT_SYMBOL vmlinux 0x859ddc1b agp_alloc_bridge -EXPORT_SYMBOL vmlinux 0x859e765f tty_flip_buffer_push -EXPORT_SYMBOL vmlinux 0x859f51bd dma_map_page_attrs EXPORT_SYMBOL vmlinux 0x85b4cf2f utf8nlen EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states -EXPORT_SYMBOL vmlinux 0x85b6ef1c kernel_getsockname EXPORT_SYMBOL vmlinux 0x85bd1608 __request_region -EXPORT_SYMBOL vmlinux 0x85c593ce dma_resv_add_excl_fence +EXPORT_SYMBOL vmlinux 0x85cdd940 page_pool_update_nid EXPORT_SYMBOL vmlinux 0x85df9b6c strsep -EXPORT_SYMBOL vmlinux 0x85efc5de buffer_migrate_page +EXPORT_SYMBOL vmlinux 0x85e7d1ca scmd_printk EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn -EXPORT_SYMBOL vmlinux 0x85f907ae pnp_disable_dev EXPORT_SYMBOL vmlinux 0x85fbc931 slhc_uncompress -EXPORT_SYMBOL vmlinux 0x86016fcb md_reap_sync_thread -EXPORT_SYMBOL vmlinux 0x860543a5 blk_mq_init_allocated_queue -EXPORT_SYMBOL vmlinux 0x8632e196 security_path_rename +EXPORT_SYMBOL vmlinux 0x85fff579 block_invalidatepage EXPORT_SYMBOL vmlinux 0x863a276a color_table -EXPORT_SYMBOL vmlinux 0x86588c4b __sk_receive_skb -EXPORT_SYMBOL vmlinux 0x866321c6 xsk_tx_peek_desc -EXPORT_SYMBOL vmlinux 0x8663a1d3 jbd2_fc_end_commit_fallback -EXPORT_SYMBOL vmlinux 0x8669db48 __skb_flow_dissect +EXPORT_SYMBOL vmlinux 0x8640f76e udp_lib_getsockopt +EXPORT_SYMBOL vmlinux 0x8643f2b3 nf_log_unset +EXPORT_SYMBOL vmlinux 0x864ebb0f noop_fsync +EXPORT_SYMBOL vmlinux 0x86528d6c get_fs_type +EXPORT_SYMBOL vmlinux 0x8656812f i2c_transfer_buffer_flags +EXPORT_SYMBOL vmlinux 0x8667db27 __fs_parse +EXPORT_SYMBOL vmlinux 0x8671d099 inet_rtx_syn_ack +EXPORT_SYMBOL vmlinux 0x86852bbb i2c_smbus_write_byte_data EXPORT_SYMBOL vmlinux 0x868acba5 get_options -EXPORT_SYMBOL vmlinux 0x8691d624 dev_set_mac_address_user -EXPORT_SYMBOL vmlinux 0x86b8a3b1 dquot_alloc -EXPORT_SYMBOL vmlinux 0x86c5a440 pm8606_osc_enable +EXPORT_SYMBOL vmlinux 0x86a08dcc keyring_clear +EXPORT_SYMBOL vmlinux 0x86a3919c xfrm_policy_delete EXPORT_SYMBOL vmlinux 0x86c7272b iosf_mbi_read -EXPORT_SYMBOL vmlinux 0x86ce217e devm_of_iomap +EXPORT_SYMBOL vmlinux 0x86cae202 phy_start EXPORT_SYMBOL vmlinux 0x86d52ba5 lookup_constant +EXPORT_SYMBOL vmlinux 0x86d77516 blk_mq_start_stopped_hw_queues +EXPORT_SYMBOL vmlinux 0x86df3264 devfreq_update_interval +EXPORT_SYMBOL vmlinux 0x86e994ff d_rehash +EXPORT_SYMBOL vmlinux 0x86ed0e86 udp_seq_stop EXPORT_SYMBOL vmlinux 0x86f27420 iosf_mbi_block_punit_i2c_access EXPORT_SYMBOL vmlinux 0x86fb4536 cpumask_any_and_distribute EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user -EXPORT_SYMBOL vmlinux 0x871164eb ilookup5_nowait +EXPORT_SYMBOL vmlinux 0x86ff2a04 kill_fasync +EXPORT_SYMBOL vmlinux 0x8707a745 pci_bus_type +EXPORT_SYMBOL vmlinux 0x87129019 __tty_insert_flip_char EXPORT_SYMBOL vmlinux 0x8714563b csum_and_copy_from_user -EXPORT_SYMBOL vmlinux 0x871620f3 nf_log_unset -EXPORT_SYMBOL vmlinux 0x873554bf inet6_release +EXPORT_SYMBOL vmlinux 0x87163bba __blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0x87220e61 kernel_write +EXPORT_SYMBOL vmlinux 0x8746f308 acpi_match_device_ids +EXPORT_SYMBOL vmlinux 0x874f4f77 dev_graft_qdisc +EXPORT_SYMBOL vmlinux 0x87533036 jbd2_log_wait_commit +EXPORT_SYMBOL vmlinux 0x8753c78b ipv6_dev_mc_inc EXPORT_SYMBOL vmlinux 0x8761c87b rps_needed EXPORT_SYMBOL vmlinux 0x87706d4e __put_user_nocheck_8 -EXPORT_SYMBOL vmlinux 0x87712ef8 xfrm6_input_addr EXPORT_SYMBOL vmlinux 0x87761528 __traceiter_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x877851fe generic_perform_write +EXPORT_SYMBOL vmlinux 0x877c8cb0 __page_symlink EXPORT_SYMBOL vmlinux 0x878469bd ZSTD_decompressStream +EXPORT_SYMBOL vmlinux 0x8786e625 param_set_bool +EXPORT_SYMBOL vmlinux 0x879f8885 tcp_init_sock EXPORT_SYMBOL vmlinux 0x87a21cb3 __ubsan_handle_out_of_bounds +EXPORT_SYMBOL vmlinux 0x87ae4911 copy_page_to_iter EXPORT_SYMBOL vmlinux 0x87b8798d sg_next -EXPORT_SYMBOL vmlinux 0x8803cedb dm_get_device -EXPORT_SYMBOL vmlinux 0x8807d24b set_binfmt +EXPORT_SYMBOL vmlinux 0x87c64920 __tracepoint_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x87d772aa generic_key_instantiate +EXPORT_SYMBOL vmlinux 0x87e68e32 arp_tbl +EXPORT_SYMBOL vmlinux 0x87e8d13d locks_free_lock +EXPORT_SYMBOL vmlinux 0x87f5475c blkdev_put +EXPORT_SYMBOL vmlinux 0x880ca6f1 sock_from_file EXPORT_SYMBOL vmlinux 0x8810754a _find_first_bit -EXPORT_SYMBOL vmlinux 0x881ae722 netlink_ack +EXPORT_SYMBOL vmlinux 0x88159459 pci_bus_read_dev_vendor_id EXPORT_SYMBOL vmlinux 0x881c4413 gen_pool_first_fit -EXPORT_SYMBOL vmlinux 0x8823e68c generic_block_bmap -EXPORT_SYMBOL vmlinux 0x8826c193 dev_mc_add -EXPORT_SYMBOL vmlinux 0x885824fe dev_trans_start -EXPORT_SYMBOL vmlinux 0x885a5938 fscrypt_ioctl_get_policy -EXPORT_SYMBOL vmlinux 0x885bc025 sock_no_sendpage_locked -EXPORT_SYMBOL vmlinux 0x88630231 xfrm_state_walk_done +EXPORT_SYMBOL vmlinux 0x8836e4e6 __blk_alloc_disk +EXPORT_SYMBOL vmlinux 0x8846fb1d unlock_page +EXPORT_SYMBOL vmlinux 0x8848a688 vme_master_request +EXPORT_SYMBOL vmlinux 0x884d305c dma_map_resource +EXPORT_SYMBOL vmlinux 0x8855e649 ipmi_platform_add +EXPORT_SYMBOL vmlinux 0x886a0c23 tag_pages_for_writeback +EXPORT_SYMBOL vmlinux 0x88734b7c pci_bus_alloc_resource +EXPORT_SYMBOL vmlinux 0x88763533 sock_no_linger EXPORT_SYMBOL vmlinux 0x88822d38 unregister_blocking_lsm_notifier EXPORT_SYMBOL vmlinux 0x8888f1fe xxh32 -EXPORT_SYMBOL vmlinux 0x8889866e ip_sock_set_mtu_discover -EXPORT_SYMBOL vmlinux 0x888caca8 __traceiter_spi_transfer_start EXPORT_SYMBOL vmlinux 0x889b1370 _raw_read_trylock -EXPORT_SYMBOL vmlinux 0x88a262e7 input_set_capability EXPORT_SYMBOL vmlinux 0x88abb78b ZSTD_insertBlock -EXPORT_SYMBOL vmlinux 0x88b2cda6 sched_autogroup_create_attach -EXPORT_SYMBOL vmlinux 0x88b438a0 pci_bus_add_devices -EXPORT_SYMBOL vmlinux 0x88bef8f6 input_mt_drop_unused -EXPORT_SYMBOL vmlinux 0x88d1d84e __dquot_transfer +EXPORT_SYMBOL vmlinux 0x88ae73fc simple_link +EXPORT_SYMBOL vmlinux 0x88af5eb2 sk_filter_trim_cap +EXPORT_SYMBOL vmlinux 0x88c8cd8a vma_set_file +EXPORT_SYMBOL vmlinux 0x88cb0112 iov_iter_gap_alignment +EXPORT_SYMBOL vmlinux 0x88d622f0 kthread_bind +EXPORT_SYMBOL vmlinux 0x88d6c968 nf_ip6_checksum +EXPORT_SYMBOL vmlinux 0x88d8b4ae send_sig_mceerr EXPORT_SYMBOL vmlinux 0x88db9f48 __check_object_size -EXPORT_SYMBOL vmlinux 0x88ddec47 uart_get_baud_rate EXPORT_SYMBOL vmlinux 0x88e1d0f0 page_frag_free -EXPORT_SYMBOL vmlinux 0x88f6f785 phy_validate_pause -EXPORT_SYMBOL vmlinux 0x8907d398 dquot_get_state -EXPORT_SYMBOL vmlinux 0x89353305 phy_drivers_register +EXPORT_SYMBOL vmlinux 0x88e6934e generic_remap_file_range_prep +EXPORT_SYMBOL vmlinux 0x89290491 rt_dst_alloc EXPORT_SYMBOL vmlinux 0x89434b4b radix_tree_tag_clear -EXPORT_SYMBOL vmlinux 0x896c736e netlbl_calipso_ops_register -EXPORT_SYMBOL vmlinux 0x8975cc34 tcp_sock_set_keepcnt -EXPORT_SYMBOL vmlinux 0x897b866b thaw_super -EXPORT_SYMBOL vmlinux 0x898deac0 sock_set_mark +EXPORT_SYMBOL vmlinux 0x894452f3 dev_addr_flush +EXPORT_SYMBOL vmlinux 0x8949d33d jbd2_journal_unlock_updates +EXPORT_SYMBOL vmlinux 0x89617adb dev_addr_init +EXPORT_SYMBOL vmlinux 0x897d8c28 tty_unlock +EXPORT_SYMBOL vmlinux 0x898a9bb3 i2c_clients_command EXPORT_SYMBOL vmlinux 0x89940875 mutex_lock_interruptible -EXPORT_SYMBOL vmlinux 0x8997ec26 i2c_smbus_read_byte -EXPORT_SYMBOL vmlinux 0x8999d32e inet_dgram_connect -EXPORT_SYMBOL vmlinux 0x89b9fea2 inet_frags_init +EXPORT_SYMBOL vmlinux 0x89aad104 fput +EXPORT_SYMBOL vmlinux 0x89b67b9c dev_uc_init EXPORT_SYMBOL vmlinux 0x89d93ef7 __nla_reserve_64bit -EXPORT_SYMBOL vmlinux 0x89eba3d0 fwnode_graph_parse_endpoint -EXPORT_SYMBOL vmlinux 0x8a020001 jbd2__journal_restart -EXPORT_SYMBOL vmlinux 0x8a066316 sock_no_sendmsg_locked -EXPORT_SYMBOL vmlinux 0x8a143df2 make_kuid -EXPORT_SYMBOL vmlinux 0x8a2ee75d set_anon_super +EXPORT_SYMBOL vmlinux 0x89f63291 pmem_should_map_pages +EXPORT_SYMBOL vmlinux 0x89fdb2fc sock_i_ino +EXPORT_SYMBOL vmlinux 0x8a01838a nd_integrity_init +EXPORT_SYMBOL vmlinux 0x8a0d988e pcix_get_mmrbc +EXPORT_SYMBOL vmlinux 0x8a0ed02e sg_alloc_append_table_from_pages +EXPORT_SYMBOL vmlinux 0x8a1cb78e pci_read_config_word +EXPORT_SYMBOL vmlinux 0x8a215c6e phy_attached_info_irq EXPORT_SYMBOL vmlinux 0x8a35b432 sme_me_mask -EXPORT_SYMBOL vmlinux 0x8a41de28 __sock_cmsg_send +EXPORT_SYMBOL vmlinux 0x8a37c7a9 ip_setsockopt EXPORT_SYMBOL vmlinux 0x8a47043d LZ4_decompress_safe_continue EXPORT_SYMBOL vmlinux 0x8a490c90 rfkill_set_sw_state -EXPORT_SYMBOL vmlinux 0x8a4a3f93 kill_anon_super -EXPORT_SYMBOL vmlinux 0x8a4dbb32 xfrm_policy_walk -EXPORT_SYMBOL vmlinux 0x8a57faa5 netpoll_print_options -EXPORT_SYMBOL vmlinux 0x8a626dd7 serio_unregister_child_port +EXPORT_SYMBOL vmlinux 0x8a493456 sk_net_capable +EXPORT_SYMBOL vmlinux 0x8a6ae4eb phy_start_cable_test +EXPORT_SYMBOL vmlinux 0x8a6b53de napi_complete_done EXPORT_SYMBOL vmlinux 0x8a6c7139 acpi_mask_gpe EXPORT_SYMBOL vmlinux 0x8a7094ba vm_brk_flags +EXPORT_SYMBOL vmlinux 0x8a7be95d dma_alloc_attrs EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory -EXPORT_SYMBOL vmlinux 0x8a7f26c9 dcbnl_cee_notify -EXPORT_SYMBOL vmlinux 0x8a8d9403 serial8250_do_pm EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab -EXPORT_SYMBOL vmlinux 0x8a9e2632 bpf_prog_get_type_path +EXPORT_SYMBOL vmlinux 0x8a9d1a06 ppp_dev_name +EXPORT_SYMBOL vmlinux 0x8aa31d69 vfs_llseek EXPORT_SYMBOL vmlinux 0x8ac3334b net_dim_get_def_rx_moderation EXPORT_SYMBOL vmlinux 0x8ac743de sg_copy_buffer -EXPORT_SYMBOL vmlinux 0x8ad0f415 generic_setlease -EXPORT_SYMBOL vmlinux 0x8ad8d7d0 scsi_host_get -EXPORT_SYMBOL vmlinux 0x8af68515 inet_listen -EXPORT_SYMBOL vmlinux 0x8afc07ec rtnetlink_put_metrics -EXPORT_SYMBOL vmlinux 0x8afe88da nf_log_set +EXPORT_SYMBOL vmlinux 0x8ac96856 tcf_qevent_init +EXPORT_SYMBOL vmlinux 0x8ae125a4 pci_back_from_sleep +EXPORT_SYMBOL vmlinux 0x8ae58ee3 cdev_device_del +EXPORT_SYMBOL vmlinux 0x8aeda894 __inet_hash +EXPORT_SYMBOL vmlinux 0x8afc824f __dynamic_ibdev_dbg EXPORT_SYMBOL vmlinux 0x8b0088d1 LZ4_decompress_safe_usingDict +EXPORT_SYMBOL vmlinux 0x8b051d1a dma_async_device_unregister EXPORT_SYMBOL vmlinux 0x8b07b51d flow_block_cb_is_busy -EXPORT_SYMBOL vmlinux 0x8b376c0a seg6_hmac_net_init -EXPORT_SYMBOL vmlinux 0x8b4083d6 rproc_of_parse_firmware -EXPORT_SYMBOL vmlinux 0x8b55b0c6 ip_tunnel_parse_protocol -EXPORT_SYMBOL vmlinux 0x8b60647a bioset_exit +EXPORT_SYMBOL vmlinux 0x8b393a2f dquot_destroy EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid -EXPORT_SYMBOL vmlinux 0x8b690629 pci_set_mwi +EXPORT_SYMBOL vmlinux 0x8b7696de release_pages EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p +EXPORT_SYMBOL vmlinux 0x8b81a3f9 __tracepoint_spi_transfer_start +EXPORT_SYMBOL vmlinux 0x8b89e0e4 __SCK__tp_func_mmap_lock_start_locking EXPORT_SYMBOL vmlinux 0x8b910be2 errseq_sample -EXPORT_SYMBOL vmlinux 0x8b9412ab jbd2_journal_start_reserved -EXPORT_SYMBOL vmlinux 0x8b953751 end_buffer_async_write EXPORT_SYMBOL vmlinux 0x8b966b63 sn_rtc_cycles_per_second EXPORT_SYMBOL vmlinux 0x8b989cf9 acpi_bus_can_wakeup -EXPORT_SYMBOL vmlinux 0x8b9dd842 __quota_error EXPORT_SYMBOL vmlinux 0x8b9ea582 ZSTD_copyDCtx -EXPORT_SYMBOL vmlinux 0x8ba95c13 shrink_dcache_parent -EXPORT_SYMBOL vmlinux 0x8bb6843d scsi_track_queue_full -EXPORT_SYMBOL vmlinux 0x8bba3357 netdev_has_any_upper_dev -EXPORT_SYMBOL vmlinux 0x8bbfac3c tc_cleanup_flow_action -EXPORT_SYMBOL vmlinux 0x8bc00827 tcp_gro_complete -EXPORT_SYMBOL vmlinux 0x8bcc40c8 security_dentry_create_files_as +EXPORT_SYMBOL vmlinux 0x8ba09f3b pci_request_regions_exclusive +EXPORT_SYMBOL vmlinux 0x8bab469b backlight_force_update +EXPORT_SYMBOL vmlinux 0x8bc51e11 readahead_expand EXPORT_SYMBOL vmlinux 0x8bd577d0 acpi_ut_exit -EXPORT_SYMBOL vmlinux 0x8c08bf5e __napi_schedule +EXPORT_SYMBOL vmlinux 0x8bd65ff4 kmem_cache_alloc_trace +EXPORT_SYMBOL vmlinux 0x8befb204 bio_advance +EXPORT_SYMBOL vmlinux 0x8c17783d scsi_block_requests EXPORT_SYMBOL vmlinux 0x8c26d495 prepare_to_wait_event -EXPORT_SYMBOL vmlinux 0x8c3690f2 inode_permission -EXPORT_SYMBOL vmlinux 0x8c3be502 iw_handler_get_spy -EXPORT_SYMBOL vmlinux 0x8c3e7abf pci_request_regions_exclusive -EXPORT_SYMBOL vmlinux 0x8c546ab4 vfs_iter_write -EXPORT_SYMBOL vmlinux 0x8c5fd113 netpoll_parse_options -EXPORT_SYMBOL vmlinux 0x8c62d417 end_page_private_2 +EXPORT_SYMBOL vmlinux 0x8c33765f regset_get_alloc EXPORT_SYMBOL vmlinux 0x8c683fcd posix_acl_to_xattr -EXPORT_SYMBOL vmlinux 0x8c775fac netif_set_real_num_rx_queues +EXPORT_SYMBOL vmlinux 0x8c738c77 nf_register_sockopt EXPORT_SYMBOL vmlinux 0x8c8569cb kstrtoint -EXPORT_SYMBOL vmlinux 0x8c9616f3 jbd2_journal_errno +EXPORT_SYMBOL vmlinux 0x8c88a58b netdev_err EXPORT_SYMBOL vmlinux 0x8c9e338f acpi_bios_error -EXPORT_SYMBOL vmlinux 0x8caa8875 __blkdev_issue_discard EXPORT_SYMBOL vmlinux 0x8caf9305 uuid_is_valid -EXPORT_SYMBOL vmlinux 0x8cb36bbf __SCK__tp_func_kmem_cache_free -EXPORT_SYMBOL vmlinux 0x8cb634c4 jbd2_journal_blocks_per_page -EXPORT_SYMBOL vmlinux 0x8cb97c63 jbd2_journal_dirty_metadata -EXPORT_SYMBOL vmlinux 0x8cbf3e14 vme_unregister_bridge +EXPORT_SYMBOL vmlinux 0x8cbef044 scsi_host_put +EXPORT_SYMBOL vmlinux 0x8cc35cdd __cleancache_invalidate_page EXPORT_SYMBOL vmlinux 0x8cc79cab iowrite16_rep -EXPORT_SYMBOL vmlinux 0x8ccf8d12 bdi_alloc +EXPORT_SYMBOL vmlinux 0x8cd519a5 get_user_pages_unlocked EXPORT_SYMBOL vmlinux 0x8cda8029 xen_clear_irq_pending -EXPORT_SYMBOL vmlinux 0x8cdf6f08 dev_change_proto_down_generic -EXPORT_SYMBOL vmlinux 0x8ce6b075 tty_check_change -EXPORT_SYMBOL vmlinux 0x8cf03d66 vga_switcheroo_fini_domain_pm_ops -EXPORT_SYMBOL vmlinux 0x8cf41250 gnet_stats_copy_queue -EXPORT_SYMBOL vmlinux 0x8cf87e46 iput -EXPORT_SYMBOL vmlinux 0x8d01848e phy_attached_info_irq -EXPORT_SYMBOL vmlinux 0x8d35fcc2 md_check_no_bitmap +EXPORT_SYMBOL vmlinux 0x8ce330d9 jbd2_journal_restart +EXPORT_SYMBOL vmlinux 0x8cea1b7b key_revoke +EXPORT_SYMBOL vmlinux 0x8d0f933d keyring_search +EXPORT_SYMBOL vmlinux 0x8d19ad3a pci_enable_atomic_ops_to_root +EXPORT_SYMBOL vmlinux 0x8d28f740 posix_acl_chmod +EXPORT_SYMBOL vmlinux 0x8d2c0ee6 dev_add_offload +EXPORT_SYMBOL vmlinux 0x8d44c6b6 iommu_get_msi_cookie +EXPORT_SYMBOL vmlinux 0x8d47481e blk_queue_max_write_same_sectors +EXPORT_SYMBOL vmlinux 0x8d4c6c5d iommu_dma_get_resv_regions EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq +EXPORT_SYMBOL vmlinux 0x8d56498e rtnl_unicast EXPORT_SYMBOL vmlinux 0x8d60652c __SCT__tp_func_mmap_lock_released -EXPORT_SYMBOL vmlinux 0x8d6a5d22 nd_region_acquire_lane +EXPORT_SYMBOL vmlinux 0x8d609ee9 param_get_int +EXPORT_SYMBOL vmlinux 0x8d6a902a xfrm_policy_walk_done EXPORT_SYMBOL vmlinux 0x8d6aff89 __put_user_nocheck_4 -EXPORT_SYMBOL vmlinux 0x8d6ef3b6 inet_confirm_addr +EXPORT_SYMBOL vmlinux 0x8d6c56e8 update_region EXPORT_SYMBOL vmlinux 0x8d73278e hex_asc_upper -EXPORT_SYMBOL vmlinux 0x8d847dc7 nd_device_unregister -EXPORT_SYMBOL vmlinux 0x8d870766 genphy_read_status -EXPORT_SYMBOL vmlinux 0x8d929b03 __xfrm_state_delete -EXPORT_SYMBOL vmlinux 0x8d944048 pnp_unregister_card_driver +EXPORT_SYMBOL vmlinux 0x8d967b4a forget_cached_acl +EXPORT_SYMBOL vmlinux 0x8d96f88e dquot_writeback_dquots EXPORT_SYMBOL vmlinux 0x8d9ca0e6 dma_fence_enable_sw_signaling -EXPORT_SYMBOL vmlinux 0x8daeb3c8 pci_clear_mwi +EXPORT_SYMBOL vmlinux 0x8da8270e blk_queue_max_write_zeroes_sectors EXPORT_SYMBOL vmlinux 0x8db22efe acpi_setup_gpe_for_wake -EXPORT_SYMBOL vmlinux 0x8dd595db mmc_cqe_post_req +EXPORT_SYMBOL vmlinux 0x8db72f65 from_kgid +EXPORT_SYMBOL vmlinux 0x8dcad30b free_xenballooned_pages EXPORT_SYMBOL vmlinux 0x8ddd8aad schedule_timeout -EXPORT_SYMBOL vmlinux 0x8de06a55 __skb_recv_datagram -EXPORT_SYMBOL vmlinux 0x8dedf538 blk_queue_update_dma_pad +EXPORT_SYMBOL vmlinux 0x8de8023a vm_insert_page EXPORT_SYMBOL vmlinux 0x8dee722d _raw_read_lock_bh EXPORT_SYMBOL vmlinux 0x8df92f66 memchr_inv EXPORT_SYMBOL vmlinux 0x8df9dd10 guid_null -EXPORT_SYMBOL vmlinux 0x8e00cc77 acpi_dev_get_next_match_dev -EXPORT_SYMBOL vmlinux 0x8e0b576e phy_register_fixup_for_id -EXPORT_SYMBOL vmlinux 0x8e0c114b crypto_sha512_update +EXPORT_SYMBOL vmlinux 0x8dfa6ec7 pci_wait_for_pending_transaction +EXPORT_SYMBOL vmlinux 0x8e0a436d mipi_dsi_dcs_nop EXPORT_SYMBOL vmlinux 0x8e17b3ae idr_destroy +EXPORT_SYMBOL vmlinux 0x8e1d88b9 __dev_get_by_flags EXPORT_SYMBOL vmlinux 0x8e21c9a1 dma_fence_add_callback -EXPORT_SYMBOL vmlinux 0x8e2fa79a xfrm_policy_byid -EXPORT_SYMBOL vmlinux 0x8e419949 xsk_set_tx_need_wakeup -EXPORT_SYMBOL vmlinux 0x8e48ccca netdev_err +EXPORT_SYMBOL vmlinux 0x8e3456fe serio_bus +EXPORT_SYMBOL vmlinux 0x8e3e0f7d fault_in_readable +EXPORT_SYMBOL vmlinux 0x8e4fdf87 pipe_unlock +EXPORT_SYMBOL vmlinux 0x8e5dce78 inet_stream_connect +EXPORT_SYMBOL vmlinux 0x8e615c31 simple_rename EXPORT_SYMBOL vmlinux 0x8e663d0f zalloc_cpumask_var_node -EXPORT_SYMBOL vmlinux 0x8e678e0e scsi_print_sense_hdr -EXPORT_SYMBOL vmlinux 0x8e802e12 qdisc_offload_dump_helper -EXPORT_SYMBOL vmlinux 0x8e8f65f9 ip6tun_encaps +EXPORT_SYMBOL vmlinux 0x8e819857 __hw_addr_sync_dev +EXPORT_SYMBOL vmlinux 0x8e841a01 peernet2id +EXPORT_SYMBOL vmlinux 0x8e84a1ce max8998_read_reg EXPORT_SYMBOL vmlinux 0x8e93bd24 security_secctx_to_secid -EXPORT_SYMBOL vmlinux 0x8e97c0dc inet_offloads EXPORT_SYMBOL vmlinux 0x8eaf2a5f vga_switcheroo_unregister_handler -EXPORT_SYMBOL vmlinux 0x8ec3fe59 dcb_ieee_setapp -EXPORT_SYMBOL vmlinux 0x8ec90e37 sync_file_create -EXPORT_SYMBOL vmlinux 0x8ed4139c agp_generic_alloc_by_type -EXPORT_SYMBOL vmlinux 0x8edbf9e9 pci_bus_type -EXPORT_SYMBOL vmlinux 0x8ee0cc46 gnet_stats_start_copy -EXPORT_SYMBOL vmlinux 0x8efdc9fc posix_lock_file +EXPORT_SYMBOL vmlinux 0x8ebff97a security_inet_conn_request +EXPORT_SYMBOL vmlinux 0x8ec3c272 fb_validate_mode +EXPORT_SYMBOL vmlinux 0x8ed2bae7 neigh_seq_stop +EXPORT_SYMBOL vmlinux 0x8ed8219a __SCK__tp_func_rdpmc +EXPORT_SYMBOL vmlinux 0x8ee4c865 remap_vmalloc_range EXPORT_SYMBOL vmlinux 0x8f01afd6 twl6030_interrupt_mask -EXPORT_SYMBOL vmlinux 0x8f1daa21 devfreq_update_interval +EXPORT_SYMBOL vmlinux 0x8f18ea42 nf_log_packet +EXPORT_SYMBOL vmlinux 0x8f1ecaf0 generic_fadvise EXPORT_SYMBOL vmlinux 0x8f2703b7 wbinvd_on_all_cpus -EXPORT_SYMBOL vmlinux 0x8f4af56e xfrm_input_unregister_afinfo -EXPORT_SYMBOL vmlinux 0x8f5300ea dev_get_iflink -EXPORT_SYMBOL vmlinux 0x8f59f856 sock_sendmsg +EXPORT_SYMBOL vmlinux 0x8f402941 n_tty_ioctl_helper +EXPORT_SYMBOL vmlinux 0x8f4dd1df __filemap_set_wb_err +EXPORT_SYMBOL vmlinux 0x8f62c62b genphy_aneg_done +EXPORT_SYMBOL vmlinux 0x8f6b428c splice_direct_to_actor EXPORT_SYMBOL vmlinux 0x8f80bf11 acpi_install_gpe_raw_handler -EXPORT_SYMBOL vmlinux 0x8f921a06 tcp_rtx_synack -EXPORT_SYMBOL vmlinux 0x8f93d52b nd_dev_to_uuid +EXPORT_SYMBOL vmlinux 0x8f82c38b dma_mmap_attrs +EXPORT_SYMBOL vmlinux 0x8f968a0b inet_proto_csum_replace16 EXPORT_SYMBOL vmlinux 0x8f996a30 ethtool_convert_legacy_u32_to_link_mode EXPORT_SYMBOL vmlinux 0x8f9c199c __get_user_2 EXPORT_SYMBOL vmlinux 0x8fa25c24 xa_find -EXPORT_SYMBOL vmlinux 0x8fa71705 pnp_device_detach -EXPORT_SYMBOL vmlinux 0x8fa933b5 inet_csk_accept -EXPORT_SYMBOL vmlinux 0x8facaf84 seq_release_private -EXPORT_SYMBOL vmlinux 0x8fb4c182 ip_do_fragment -EXPORT_SYMBOL vmlinux 0x8fb91e5e udp_sk_rx_dst_set -EXPORT_SYMBOL vmlinux 0x8fbe9cbe __napi_alloc_skb -EXPORT_SYMBOL vmlinux 0x8fc41191 xfrm4_protocol_deregister -EXPORT_SYMBOL vmlinux 0x8fcee65b pci_pme_capable +EXPORT_SYMBOL vmlinux 0x8fa2b863 register_filesystem +EXPORT_SYMBOL vmlinux 0x8fce0ea2 fscrypt_has_permitted_context EXPORT_SYMBOL vmlinux 0x8fdb0752 abort_creds -EXPORT_SYMBOL vmlinux 0x8fedb1c2 i2c_smbus_write_i2c_block_data +EXPORT_SYMBOL vmlinux 0x8fe98525 mroute6_is_socket +EXPORT_SYMBOL vmlinux 0x8fea4a2a __scsi_add_device EXPORT_SYMBOL vmlinux 0x8ff89ed0 seg6_hmac_exit EXPORT_SYMBOL vmlinux 0x90006be6 dm_kcopyd_client_flush -EXPORT_SYMBOL vmlinux 0x901469ba remove_proc_subtree -EXPORT_SYMBOL vmlinux 0x9017f671 mark_buffer_write_io_error -EXPORT_SYMBOL vmlinux 0x90188db2 xfrm_state_insert -EXPORT_SYMBOL vmlinux 0x902caaf8 thread_group_exited +EXPORT_SYMBOL vmlinux 0x90094103 devfreq_update_target +EXPORT_SYMBOL vmlinux 0x900e9e64 con_copy_unimap +EXPORT_SYMBOL vmlinux 0x9020094a freeze_bdev +EXPORT_SYMBOL vmlinux 0x9028dbd1 pci_disable_link_state_locked EXPORT_SYMBOL vmlinux 0x902d8722 vme_slave_get +EXPORT_SYMBOL vmlinux 0x902ddeff tcp_get_md5sig_pool +EXPORT_SYMBOL vmlinux 0x90325e6a generic_pipe_buf_release EXPORT_SYMBOL vmlinux 0x9034a696 mempool_destroy -EXPORT_SYMBOL vmlinux 0x903d5f71 __tracepoint_mmap_lock_start_locking +EXPORT_SYMBOL vmlinux 0x90354892 devm_ioport_unmap +EXPORT_SYMBOL vmlinux 0x903dca2f __netlink_kernel_create EXPORT_SYMBOL vmlinux 0x905695ab sg_copy_from_buffer EXPORT_SYMBOL vmlinux 0x90576ec4 vmemdup_user +EXPORT_SYMBOL vmlinux 0x90588d04 neigh_sysctl_unregister +EXPORT_SYMBOL vmlinux 0x906bca96 ip_options_compile EXPORT_SYMBOL vmlinux 0x907ea00e set_security_override -EXPORT_SYMBOL vmlinux 0x908dd0c7 ipv6_dev_find -EXPORT_SYMBOL vmlinux 0x9098fa1c pagecache_write_begin -EXPORT_SYMBOL vmlinux 0x90db21ba mr_vif_seq_idx +EXPORT_SYMBOL vmlinux 0x907ed58c mr_vif_seq_next +EXPORT_SYMBOL vmlinux 0x90867a5b ps2_handle_ack +EXPORT_SYMBOL vmlinux 0x9087e246 sock_alloc +EXPORT_SYMBOL vmlinux 0x90ac7f61 __SCK__tp_func_dma_fence_signaled +EXPORT_SYMBOL vmlinux 0x90ca7010 edac_mc_find +EXPORT_SYMBOL vmlinux 0x90cddeaf fwnode_mdiobus_phy_device_register EXPORT_SYMBOL vmlinux 0x90e273e2 cred_fscmp +EXPORT_SYMBOL vmlinux 0x90fe233a dm_table_run_md_queue_async EXPORT_SYMBOL vmlinux 0x9114b616 __xa_alloc -EXPORT_SYMBOL vmlinux 0x911ea4a8 noop_qdisc -EXPORT_SYMBOL vmlinux 0x913334ab mipi_dsi_dcs_read -EXPORT_SYMBOL vmlinux 0x913fe8da path_is_under -EXPORT_SYMBOL vmlinux 0x9142d0f0 dev_uc_unsync -EXPORT_SYMBOL vmlinux 0x914c0bac __page_cache_alloc -EXPORT_SYMBOL vmlinux 0x91543f85 flow_rule_match_ct -EXPORT_SYMBOL vmlinux 0x915d6366 inet_frag_queue_insert +EXPORT_SYMBOL vmlinux 0x911af42c scsi_device_quiesce EXPORT_SYMBOL vmlinux 0x91607d95 set_memory_wb EXPORT_SYMBOL vmlinux 0x9166fada strncpy EXPORT_SYMBOL vmlinux 0x9176145b acpi_install_global_event_handler -EXPORT_SYMBOL vmlinux 0x918cc87e unregister_netdevice_notifier_dev_net -EXPORT_SYMBOL vmlinux 0x91951f17 kmem_cache_create -EXPORT_SYMBOL vmlinux 0x9197d4fd inet_csk_complete_hashdance -EXPORT_SYMBOL vmlinux 0x91993282 simple_rmdir +EXPORT_SYMBOL vmlinux 0x91785adc xfrm_state_free +EXPORT_SYMBOL vmlinux 0x917ef980 mipi_dsi_dcs_set_column_address +EXPORT_SYMBOL vmlinux 0x9188721e skb_mac_gso_segment +EXPORT_SYMBOL vmlinux 0x919949a7 d_instantiate EXPORT_SYMBOL vmlinux 0x919c58f3 __clzsi2 -EXPORT_SYMBOL vmlinux 0x919f24db __netlink_dump_start EXPORT_SYMBOL vmlinux 0x91a10c61 intel_scu_ipc_dev_simple_command +EXPORT_SYMBOL vmlinux 0x91a21d9d filp_close EXPORT_SYMBOL vmlinux 0x91a488ac __netdev_alloc_frag_align +EXPORT_SYMBOL vmlinux 0x91a60249 acpi_mdiobus_register +EXPORT_SYMBOL vmlinux 0x91a68853 fault_in_iov_iter_readable EXPORT_SYMBOL vmlinux 0x91a7b1da qdisc_class_hash_remove EXPORT_SYMBOL vmlinux 0x91c0980e icst_hz -EXPORT_SYMBOL vmlinux 0x91d03404 sock_kzfree_s -EXPORT_SYMBOL vmlinux 0x91d834ea of_find_mipi_dsi_host_by_node +EXPORT_SYMBOL vmlinux 0x91c22d05 devm_release_resource EXPORT_SYMBOL vmlinux 0x91f44510 idr_alloc_cyclic EXPORT_SYMBOL vmlinux 0x91f68ea1 __hw_addr_sync -EXPORT_SYMBOL vmlinux 0x92119395 PageMovable -EXPORT_SYMBOL vmlinux 0x92193143 scsi_target_resume -EXPORT_SYMBOL vmlinux 0x922c5403 flow_rule_match_icmp +EXPORT_SYMBOL vmlinux 0x920a12c3 _dev_alert +EXPORT_SYMBOL vmlinux 0x922ab6f3 vmf_insert_pfn_prot +EXPORT_SYMBOL vmlinux 0x922cdc41 inode_owner_or_capable EXPORT_SYMBOL vmlinux 0x922f45a6 __bitmap_clear -EXPORT_SYMBOL vmlinux 0x9232dc89 dma_resv_copy_fences -EXPORT_SYMBOL vmlinux 0x923a8f2b ip_frag_init EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get +EXPORT_SYMBOL vmlinux 0x9243ba26 bd_abort_claiming +EXPORT_SYMBOL vmlinux 0x9246763c genphy_loopback EXPORT_SYMBOL vmlinux 0x92540fbf finish_wait -EXPORT_SYMBOL vmlinux 0x9258816d i2c_smbus_write_word_data +EXPORT_SYMBOL vmlinux 0x92543bc7 setattr_prepare +EXPORT_SYMBOL vmlinux 0x925668d5 devm_alloc_etherdev_mqs EXPORT_SYMBOL vmlinux 0x9258c776 hdmi_vendor_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x92610ca9 __scm_destroy EXPORT_SYMBOL vmlinux 0x92774cf8 __kfence_pool +EXPORT_SYMBOL vmlinux 0x92884c98 simple_release_fs EXPORT_SYMBOL vmlinux 0x92897e3d default_idle -EXPORT_SYMBOL vmlinux 0x928b85b0 sk_reset_timer EXPORT_SYMBOL vmlinux 0x9291cd3b memdup_user +EXPORT_SYMBOL vmlinux 0x9296b360 flow_rule_match_enc_keyid EXPORT_SYMBOL vmlinux 0x92997ed8 _printk -EXPORT_SYMBOL vmlinux 0x92a0e039 security_sock_rcv_skb EXPORT_SYMBOL vmlinux 0x92a51e56 acpi_debug_print_raw +EXPORT_SYMBOL vmlinux 0x92ad5d80 seq_vprintf +EXPORT_SYMBOL vmlinux 0x92b3840d finalize_exec +EXPORT_SYMBOL vmlinux 0x92b557cd vme_unregister_bridge EXPORT_SYMBOL vmlinux 0x92b99a33 acpi_put_table EXPORT_SYMBOL vmlinux 0x92b9b180 slash_name -EXPORT_SYMBOL vmlinux 0x92bfaba9 tty_port_open -EXPORT_SYMBOL vmlinux 0x92c38563 tcf_exts_destroy -EXPORT_SYMBOL vmlinux 0x92d3dfc1 xfrm6_protocol_deregister +EXPORT_SYMBOL vmlinux 0x92cd5b9b neigh_update +EXPORT_SYMBOL vmlinux 0x92d02cb7 input_mt_assign_slots EXPORT_SYMBOL vmlinux 0x92d5838e request_threaded_irq +EXPORT_SYMBOL vmlinux 0x92e3535d mmc_erase_group_aligned +EXPORT_SYMBOL vmlinux 0x92e399c0 tcf_em_tree_destroy EXPORT_SYMBOL vmlinux 0x92e683f5 down_timeout +EXPORT_SYMBOL vmlinux 0x92e8a7db scsi_host_busy +EXPORT_SYMBOL vmlinux 0x92ea3647 can_nice EXPORT_SYMBOL vmlinux 0x92ec510d jiffies64_to_msecs -EXPORT_SYMBOL vmlinux 0x92f6a541 dquot_mark_dquot_dirty EXPORT_SYMBOL vmlinux 0x92fa5abb vme_lm_detach EXPORT_SYMBOL vmlinux 0x93022ba6 __scsi_format_command EXPORT_SYMBOL vmlinux 0x9305f8e6 cpufreq_get -EXPORT_SYMBOL vmlinux 0x930b2a8f skb_find_text -EXPORT_SYMBOL vmlinux 0x930d0f38 param_ops_string -EXPORT_SYMBOL vmlinux 0x931b081c devfreq_suspend_device -EXPORT_SYMBOL vmlinux 0x933f301c stop_tty -EXPORT_SYMBOL vmlinux 0x93458e71 ip_mc_join_group +EXPORT_SYMBOL vmlinux 0x93212bb0 gnet_stats_copy_queue +EXPORT_SYMBOL vmlinux 0x932f0a2d vlan_vids_add_by_dev +EXPORT_SYMBOL vmlinux 0x93398d1c xfrm_policy_flush +EXPORT_SYMBOL vmlinux 0x9353d687 param_ops_bool +EXPORT_SYMBOL vmlinux 0x936ce5c5 genphy_check_and_restart_aneg +EXPORT_SYMBOL vmlinux 0x937145e1 __dev_get_by_name EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid -EXPORT_SYMBOL vmlinux 0x937b29f5 devfreq_monitor_suspend -EXPORT_SYMBOL vmlinux 0x93837471 proto_unregister +EXPORT_SYMBOL vmlinux 0x93895571 dev_addr_del +EXPORT_SYMBOL vmlinux 0x9397a423 phy_get_pause +EXPORT_SYMBOL vmlinux 0x9397e363 __frontswap_test EXPORT_SYMBOL vmlinux 0x93a6e0b2 io_schedule EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier -EXPORT_SYMBOL vmlinux 0x93b6786f super_setup_bdi -EXPORT_SYMBOL vmlinux 0x93b8179a phy_mac_interrupt -EXPORT_SYMBOL vmlinux 0x93b943e0 iov_iter_revert -EXPORT_SYMBOL vmlinux 0x93bd3209 max8925_reg_read -EXPORT_SYMBOL vmlinux 0x93beb637 dst_cow_metrics_generic -EXPORT_SYMBOL vmlinux 0x93c247b2 mipi_dsi_shutdown_peripheral -EXPORT_SYMBOL vmlinux 0x93d523e0 serial8250_do_set_termios +EXPORT_SYMBOL vmlinux 0x93c00967 generic_writepages EXPORT_SYMBOL vmlinux 0x93d6dd8c complete_all -EXPORT_SYMBOL vmlinux 0x93e66178 submit_bio_wait +EXPORT_SYMBOL vmlinux 0x93d6eeee lookup_one +EXPORT_SYMBOL vmlinux 0x93d76ac7 reuseport_add_sock +EXPORT_SYMBOL vmlinux 0x93e81aac udp6_csum_init +EXPORT_SYMBOL vmlinux 0x93ee527a dget_parent EXPORT_SYMBOL vmlinux 0x93f12561 nla_put -EXPORT_SYMBOL vmlinux 0x940228a7 bfifo_qdisc_ops -EXPORT_SYMBOL vmlinux 0x94066377 pin_user_pages_locked -EXPORT_SYMBOL vmlinux 0x94071173 param_set_short -EXPORT_SYMBOL vmlinux 0x9416e364 ip_sock_set_recverr +EXPORT_SYMBOL vmlinux 0x93f6cc18 put_disk +EXPORT_SYMBOL vmlinux 0x940d3eb9 generic_file_readonly_mmap +EXPORT_SYMBOL vmlinux 0x9411780b pneigh_enqueue +EXPORT_SYMBOL vmlinux 0x941772e8 pci_irq_vector EXPORT_SYMBOL vmlinux 0x9428f816 dim_turn -EXPORT_SYMBOL vmlinux 0x942c3017 __dev_get_by_index +EXPORT_SYMBOL vmlinux 0x942b93c7 udp_prot EXPORT_SYMBOL vmlinux 0x944375db _totalram_pages -EXPORT_SYMBOL vmlinux 0x944780c4 skb_split EXPORT_SYMBOL vmlinux 0x944a564d is_console_locked -EXPORT_SYMBOL vmlinux 0x944b1667 console_stop -EXPORT_SYMBOL vmlinux 0x944eefb7 mdiobus_read -EXPORT_SYMBOL vmlinux 0x94559d76 seg6_hmac_net_exit -EXPORT_SYMBOL vmlinux 0x9475dc31 mini_qdisc_pair_init -EXPORT_SYMBOL vmlinux 0x9478fb9b pci_map_biosrom EXPORT_SYMBOL vmlinux 0x9487d3e1 ns_capable -EXPORT_SYMBOL vmlinux 0x9493a487 dev_mc_del EXPORT_SYMBOL vmlinux 0x9493fc86 node_states +EXPORT_SYMBOL vmlinux 0x949578b5 ipv4_mtu EXPORT_SYMBOL vmlinux 0x94961283 vunmap -EXPORT_SYMBOL vmlinux 0x949dc2bb reuseport_select_sock +EXPORT_SYMBOL vmlinux 0x94aafe31 __SCK__tp_func_kmalloc EXPORT_SYMBOL vmlinux 0x94bb7ec3 gen_pool_dma_zalloc_algo -EXPORT_SYMBOL vmlinux 0x94beb29a dump_skip_to +EXPORT_SYMBOL vmlinux 0x94bbf366 input_register_handler EXPORT_SYMBOL vmlinux 0x94bf03ca utf8_to_utf32 -EXPORT_SYMBOL vmlinux 0x94cc9bf1 tso_start +EXPORT_SYMBOL vmlinux 0x94c4426e scsi_dma_map +EXPORT_SYMBOL vmlinux 0x94ca2690 mmc_wait_for_cmd +EXPORT_SYMBOL vmlinux 0x94d9501b __dquot_alloc_space EXPORT_SYMBOL vmlinux 0x94e50ad4 call_fib_notifier -EXPORT_SYMBOL vmlinux 0x94e8abb9 sock_alloc_send_pskb +EXPORT_SYMBOL vmlinux 0x95070e3f rproc_coredump_set_elf_info EXPORT_SYMBOL vmlinux 0x9507c90f copy_fsxattr_to_user -EXPORT_SYMBOL vmlinux 0x95131c58 simple_transaction_get -EXPORT_SYMBOL vmlinux 0x952917d3 __sk_queue_drop_skb -EXPORT_SYMBOL vmlinux 0x9535279f tcp_shutdown +EXPORT_SYMBOL vmlinux 0x9512d402 to_nd_dax +EXPORT_SYMBOL vmlinux 0x95268167 vmalloc_to_page +EXPORT_SYMBOL vmlinux 0x954826b4 pci_bus_add_devices EXPORT_SYMBOL vmlinux 0x954cef6f init_on_alloc -EXPORT_SYMBOL vmlinux 0x954e005a inet_frag_reasm_prepare EXPORT_SYMBOL vmlinux 0x954f099c idr_preload -EXPORT_SYMBOL vmlinux 0x95607bc0 phy_set_max_speed -EXPORT_SYMBOL vmlinux 0x95648296 security_inode_getsecctx -EXPORT_SYMBOL vmlinux 0x9566f279 bioset_integrity_create -EXPORT_SYMBOL vmlinux 0x958113d8 clk_bulk_get -EXPORT_SYMBOL vmlinux 0x958de5ae nd_pfn_probe -EXPORT_SYMBOL vmlinux 0x959d0587 pm_vt_switch_unregister -EXPORT_SYMBOL vmlinux 0x959d8bbf cros_ec_cmd_xfer_status +EXPORT_SYMBOL vmlinux 0x9551f977 sk_alloc +EXPORT_SYMBOL vmlinux 0x95545922 devm_mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0x955efec7 input_set_abs_params +EXPORT_SYMBOL vmlinux 0x956494de tty_chars_in_buffer EXPORT_SYMBOL vmlinux 0x95a67b07 udp_table -EXPORT_SYMBOL vmlinux 0x95bd8554 dev_pick_tx_cpu_id -EXPORT_SYMBOL vmlinux 0x95bf5304 md_flush_request -EXPORT_SYMBOL vmlinux 0x95c51c8e __tracepoint_kfree -EXPORT_SYMBOL vmlinux 0x95d5db47 inode_init_always -EXPORT_SYMBOL vmlinux 0x95ead502 dev_change_proto_down_reason -EXPORT_SYMBOL vmlinux 0x95f783e0 mmc_retune_release -EXPORT_SYMBOL vmlinux 0x9604c23d param_get_hexint -EXPORT_SYMBOL vmlinux 0x960851f9 security_sctp_bind_connect -EXPORT_SYMBOL vmlinux 0x960bdd00 dev_set_mac_address -EXPORT_SYMBOL vmlinux 0x960de067 locks_init_lock -EXPORT_SYMBOL vmlinux 0x961a86a9 nobh_writepage +EXPORT_SYMBOL vmlinux 0x95a79a3c tcp_fastopen_defer_connect +EXPORT_SYMBOL vmlinux 0x95c24207 xfrm_user_policy +EXPORT_SYMBOL vmlinux 0x95dfef5f sock_set_rcvbuf +EXPORT_SYMBOL vmlinux 0x95ed115e devm_extcon_register_notifier +EXPORT_SYMBOL vmlinux 0x95f214f2 migrate_vma_finalize +EXPORT_SYMBOL vmlinux 0x960b36ae skb_checksum +EXPORT_SYMBOL vmlinux 0x9622be48 tcf_exts_dump_stats EXPORT_SYMBOL vmlinux 0x9625695d acpi_install_gpe_block -EXPORT_SYMBOL vmlinux 0x962a2e01 mr_fill_mroute EXPORT_SYMBOL vmlinux 0x962c4977 clkdev_add -EXPORT_SYMBOL vmlinux 0x9630c1c3 param_ops_ushort -EXPORT_SYMBOL vmlinux 0x9660f4a1 page_cache_next_miss +EXPORT_SYMBOL vmlinux 0x9636a588 sock_no_sendmsg_locked +EXPORT_SYMBOL vmlinux 0x96429bdf sk_stream_kill_queues +EXPORT_SYMBOL vmlinux 0x96481f19 page_pool_alloc_pages +EXPORT_SYMBOL vmlinux 0x964b176c single_release +EXPORT_SYMBOL vmlinux 0x965ec006 scsicam_bios_param +EXPORT_SYMBOL vmlinux 0x9660d852 blk_mq_stop_hw_queues EXPORT_SYMBOL vmlinux 0x96848186 scnprintf +EXPORT_SYMBOL vmlinux 0x968d088b bio_integrity_alloc +EXPORT_SYMBOL vmlinux 0x96a0e785 inet_bind +EXPORT_SYMBOL vmlinux 0x96ab55b6 iput +EXPORT_SYMBOL vmlinux 0x96b0eb11 security_sock_rcv_skb EXPORT_SYMBOL vmlinux 0x96b29254 strncasecmp -EXPORT_SYMBOL vmlinux 0x96bc20ae default_qdisc_ops EXPORT_SYMBOL vmlinux 0x96c17136 fb_var_to_videomode -EXPORT_SYMBOL vmlinux 0x96c5d9e6 netdev_adjacent_change_prepare +EXPORT_SYMBOL vmlinux 0x96c45045 mmc_gpio_get_ro EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string -EXPORT_SYMBOL vmlinux 0x96d59c89 generic_ro_fops EXPORT_SYMBOL vmlinux 0x96e5d30f gen_pool_set_algo EXPORT_SYMBOL vmlinux 0x96eab78b iosf_mbi_modify EXPORT_SYMBOL vmlinux 0x96fab350 dim_park_on_top -EXPORT_SYMBOL vmlinux 0x96fd08d2 block_write_begin -EXPORT_SYMBOL vmlinux 0x9709a0ad sdev_disable_disk_events -EXPORT_SYMBOL vmlinux 0x970a8c57 fb_firmware_edid -EXPORT_SYMBOL vmlinux 0x9714ee54 blk_mq_delay_run_hw_queues -EXPORT_SYMBOL vmlinux 0x9725c6d9 simple_unlink -EXPORT_SYMBOL vmlinux 0x9738e3de fs_param_is_blockdev +EXPORT_SYMBOL vmlinux 0x9708e48f dev_uc_unsync +EXPORT_SYMBOL vmlinux 0x97225fad fscrypt_free_bounce_page +EXPORT_SYMBOL vmlinux 0x9734d871 kthread_associate_blkcg +EXPORT_SYMBOL vmlinux 0x973a3e00 ipv6_dev_find EXPORT_SYMBOL vmlinux 0x973fa82e register_acpi_notifier EXPORT_SYMBOL vmlinux 0x9746eb89 ZSTD_decompressBegin_usingDict -EXPORT_SYMBOL vmlinux 0x975c99ab flow_block_cb_alloc -EXPORT_SYMBOL vmlinux 0x97648307 tcp_read_sock +EXPORT_SYMBOL vmlinux 0x976225fe may_umount EXPORT_SYMBOL vmlinux 0x97651e6c vmemmap_base -EXPORT_SYMBOL vmlinux 0x9766e804 pcie_set_readrq -EXPORT_SYMBOL vmlinux 0x97795e9c md_bitmap_unplug -EXPORT_SYMBOL vmlinux 0x97873a17 cont_write_begin -EXPORT_SYMBOL vmlinux 0x97876906 ipv6_chk_addr_and_flags -EXPORT_SYMBOL vmlinux 0x9787e3d8 i2c_smbus_read_i2c_block_data +EXPORT_SYMBOL vmlinux 0x976a3992 dmam_pool_create +EXPORT_SYMBOL vmlinux 0x9775810b dmaengine_get_unmap_data +EXPORT_SYMBOL vmlinux 0x9777427e qdisc_create_dflt +EXPORT_SYMBOL vmlinux 0x97862103 alloc_buffer_head EXPORT_SYMBOL vmlinux 0x97934ecf del_timer_sync -EXPORT_SYMBOL vmlinux 0x979d4ecd ptp_clock_unregister +EXPORT_SYMBOL vmlinux 0x97974cdc f_setown EXPORT_SYMBOL vmlinux 0x97a57333 crc_t10dif_update -EXPORT_SYMBOL vmlinux 0x97a7eec4 register_md_personality EXPORT_SYMBOL vmlinux 0x97a841aa textsearch_unregister -EXPORT_SYMBOL vmlinux 0x97aa87b8 tso_count_descs EXPORT_SYMBOL vmlinux 0x97adb487 utf8s_to_utf16s +EXPORT_SYMBOL vmlinux 0x97ae2e4f ptp_cancel_worker_sync EXPORT_SYMBOL vmlinux 0x97bdfa60 scsi_dev_info_remove_list -EXPORT_SYMBOL vmlinux 0x97bf9e87 security_old_inode_init_security -EXPORT_SYMBOL vmlinux 0x97c2642b phy_device_register -EXPORT_SYMBOL vmlinux 0x97cdcd6a ptp_clock_event -EXPORT_SYMBOL vmlinux 0x97d6fb2e ethtool_rx_flow_rule_destroy +EXPORT_SYMBOL vmlinux 0x97c036a0 page_zero_new_buffers +EXPORT_SYMBOL vmlinux 0x97db4430 qdisc_watchdog_init EXPORT_SYMBOL vmlinux 0x97e2789a commit_creds -EXPORT_SYMBOL vmlinux 0x97eab803 dquot_set_dqinfo -EXPORT_SYMBOL vmlinux 0x97fe0866 filemap_invalidate_unlock_two -EXPORT_SYMBOL vmlinux 0x98179f36 scsi_test_unit_ready +EXPORT_SYMBOL vmlinux 0x97f53aaf tcf_exts_destroy +EXPORT_SYMBOL vmlinux 0x97feda72 input_setup_polling +EXPORT_SYMBOL vmlinux 0x981179be unlock_two_nondirectories EXPORT_SYMBOL vmlinux 0x9829fc11 __kfifo_out_peek_r -EXPORT_SYMBOL vmlinux 0x98644c80 xp_dma_sync_for_device_slow -EXPORT_SYMBOL vmlinux 0x987884f3 simple_pin_fs -EXPORT_SYMBOL vmlinux 0x988366a1 skb_queue_tail -EXPORT_SYMBOL vmlinux 0x9895536d regset_get_alloc -EXPORT_SYMBOL vmlinux 0x98b0b934 cdc_parse_cdc_header -EXPORT_SYMBOL vmlinux 0x98b2b1fe pci_write_config_word +EXPORT_SYMBOL vmlinux 0x982fdd6a cookie_ecn_ok +EXPORT_SYMBOL vmlinux 0x984ac316 tty_unthrottle +EXPORT_SYMBOL vmlinux 0x985030e1 pci_try_set_mwi +EXPORT_SYMBOL vmlinux 0x98709439 dev_mc_del_global +EXPORT_SYMBOL vmlinux 0x988a2989 devm_of_find_backlight +EXPORT_SYMBOL vmlinux 0x989fbb7a kernel_sendpage_locked +EXPORT_SYMBOL vmlinux 0x98af1118 __neigh_for_each_release EXPORT_SYMBOL vmlinux 0x98c039dc dma_fence_wait_timeout +EXPORT_SYMBOL vmlinux 0x98c3b531 ethtool_rx_flow_rule_create EXPORT_SYMBOL vmlinux 0x98c89ade security_xfrm_state_alloc -EXPORT_SYMBOL vmlinux 0x98cc53dd tcp_md5_hash_skb_data -EXPORT_SYMBOL vmlinux 0x98d25f48 vm_map_pages -EXPORT_SYMBOL vmlinux 0x98d9c647 cdrom_dummy_generic_packet -EXPORT_SYMBOL vmlinux 0x98e38ec0 __tcp_md5_do_lookup +EXPORT_SYMBOL vmlinux 0x98d3370b dev_pm_opp_register_notifier +EXPORT_SYMBOL vmlinux 0x98dd54ea bio_copy_data_iter EXPORT_SYMBOL vmlinux 0x98e508ef ignore_console_lock_warning -EXPORT_SYMBOL vmlinux 0x98eb8424 ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0x990590ed md_reap_sync_thread EXPORT_SYMBOL vmlinux 0x99078b39 trace_print_flags_seq -EXPORT_SYMBOL vmlinux 0x9912e8be unpin_user_pages -EXPORT_SYMBOL vmlinux 0x991d2627 tcp_splice_read -EXPORT_SYMBOL vmlinux 0x99228ba0 fs_context_for_submount +EXPORT_SYMBOL vmlinux 0x990c9bc9 inode_init_always +EXPORT_SYMBOL vmlinux 0x99148266 mmc_request_done +EXPORT_SYMBOL vmlinux 0x9928309e PDE_DATA EXPORT_SYMBOL vmlinux 0x9939eba0 backlight_unregister_notifier -EXPORT_SYMBOL vmlinux 0x993b00fd zpool_register_driver -EXPORT_SYMBOL vmlinux 0x993e52cf tcp_mmap -EXPORT_SYMBOL vmlinux 0x9941d212 vme_bus_num -EXPORT_SYMBOL vmlinux 0x994b7162 phy_disconnect +EXPORT_SYMBOL vmlinux 0x99425843 __sk_mem_reduce_allocated +EXPORT_SYMBOL vmlinux 0x9942a4f9 skb_flow_dissect_hash EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable +EXPORT_SYMBOL vmlinux 0x996d50e1 phy_do_ioctl EXPORT_SYMBOL vmlinux 0x9975dc22 acpi_get_handle -EXPORT_SYMBOL vmlinux 0x9976d7c8 flow_rule_match_vlan -EXPORT_SYMBOL vmlinux 0x998472f0 phy_attach_direct -EXPORT_SYMBOL vmlinux 0x999022c5 phy_register_fixup_for_uid -EXPORT_SYMBOL vmlinux 0x99964bb6 __generic_file_fsync +EXPORT_SYMBOL vmlinux 0x997affe6 input_unregister_handle EXPORT_SYMBOL vmlinux 0x999e8297 vfree -EXPORT_SYMBOL vmlinux 0x99a3502f devm_clk_get_optional +EXPORT_SYMBOL vmlinux 0x99a9e8ad md_write_end +EXPORT_SYMBOL vmlinux 0x99c5e95a xfrm_state_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x99d46c9d udp_lib_unhash EXPORT_SYMBOL vmlinux 0x99d472b1 net_dim_get_rx_moderation EXPORT_SYMBOL vmlinux 0x99daa9bf try_offline_node -EXPORT_SYMBOL vmlinux 0x99e79015 sg_miter_stop EXPORT_SYMBOL vmlinux 0x99f068d5 x86_cpu_to_node_map EXPORT_SYMBOL vmlinux 0x99f7371c refcount_dec_and_mutex_lock -EXPORT_SYMBOL vmlinux 0x99f840f6 unpin_user_page_range_dirty_lock EXPORT_SYMBOL vmlinux 0x99f9638f __napi_alloc_frag_align -EXPORT_SYMBOL vmlinux 0x99fa17fe cdrom_mode_select +EXPORT_SYMBOL vmlinux 0x99ff2484 deactivate_super +EXPORT_SYMBOL vmlinux 0x9a0936e7 acpi_bus_register_driver EXPORT_SYMBOL vmlinux 0x9a0c3a18 vme_unregister_error_handler -EXPORT_SYMBOL vmlinux 0x9a0d0667 mod_node_page_state -EXPORT_SYMBOL vmlinux 0x9a19ec50 make_flow_keys_digest +EXPORT_SYMBOL vmlinux 0x9a0fb64c pci_disable_link_state +EXPORT_SYMBOL vmlinux 0x9a15af73 xfrm6_rcv +EXPORT_SYMBOL vmlinux 0x9a19bbd6 __SCK__tp_func_module_get EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk +EXPORT_SYMBOL vmlinux 0x9a1f7f85 unregister_netdev EXPORT_SYMBOL vmlinux 0x9a22391e radix_tree_gang_lookup_tag_slot -EXPORT_SYMBOL vmlinux 0x9a3250b5 jbd2_journal_clear_features -EXPORT_SYMBOL vmlinux 0x9a4588e8 skb_free_datagram -EXPORT_SYMBOL vmlinux 0x9a4d9eb9 dm_table_get_size +EXPORT_SYMBOL vmlinux 0x9a22cd67 filemap_fdatawrite_wbc +EXPORT_SYMBOL vmlinux 0x9a51d455 fwnode_graph_parse_endpoint +EXPORT_SYMBOL vmlinux 0x9a547d62 generic_permission EXPORT_SYMBOL vmlinux 0x9a583306 netlbl_bitmap_walk +EXPORT_SYMBOL vmlinux 0x9a62c0db ll_rw_block +EXPORT_SYMBOL vmlinux 0x9a65940e netlink_unicast +EXPORT_SYMBOL vmlinux 0x9a73aeaa migrate_vma_pages EXPORT_SYMBOL vmlinux 0x9a73b032 ZSTD_initDStream_usingDDict -EXPORT_SYMBOL vmlinux 0x9a84a2ed inode_insert5 -EXPORT_SYMBOL vmlinux 0x9a8959bd kernel_sendmsg_locked -EXPORT_SYMBOL vmlinux 0x9a977f30 nvdimm_namespace_disk_name -EXPORT_SYMBOL vmlinux 0x9aa76971 capable_wrt_inode_uidgid +EXPORT_SYMBOL vmlinux 0x9a8bebd2 request_firmware_nowait +EXPORT_SYMBOL vmlinux 0x9a98a8c7 xfrm_policy_destroy EXPORT_SYMBOL vmlinux 0x9aaeefce sysctl_nf_log_all_netns -EXPORT_SYMBOL vmlinux 0x9ab89014 cleancache_register_ops +EXPORT_SYMBOL vmlinux 0x9ab1e530 netpoll_poll_disable +EXPORT_SYMBOL vmlinux 0x9acd9152 __tracepoint_kfree +EXPORT_SYMBOL vmlinux 0x9ad541ec ip6_fraglist_prepare EXPORT_SYMBOL vmlinux 0x9ad7a582 iosf_mbi_assert_punit_acquired +EXPORT_SYMBOL vmlinux 0x9adfa2d4 mount_nodev EXPORT_SYMBOL vmlinux 0x9ae47436 _find_last_bit -EXPORT_SYMBOL vmlinux 0x9ae67556 mipi_dsi_dcs_set_tear_scanline -EXPORT_SYMBOL vmlinux 0x9af43129 tcp_seq_start -EXPORT_SYMBOL vmlinux 0x9b173c8d __mark_inode_dirty +EXPORT_SYMBOL vmlinux 0x9aef9e1f jbd2_log_start_commit +EXPORT_SYMBOL vmlinux 0x9b19ea4e security_path_mkdir +EXPORT_SYMBOL vmlinux 0x9b21d994 mipi_dsi_dcs_exit_sleep_mode +EXPORT_SYMBOL vmlinux 0x9b236b40 phy_attached_print EXPORT_SYMBOL vmlinux 0x9b2560b9 gf128mul_init_4k_bbe -EXPORT_SYMBOL vmlinux 0x9b274d71 ww_mutex_lock EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x9b35f40b sock_no_connect EXPORT_SYMBOL vmlinux 0x9b420478 utf8_strncasecmp EXPORT_SYMBOL vmlinux 0x9b496b21 posix_acl_alloc -EXPORT_SYMBOL vmlinux 0x9b6decad dm_unregister_target +EXPORT_SYMBOL vmlinux 0x9b5ceb73 __dev_get_by_index +EXPORT_SYMBOL vmlinux 0x9b6a4431 pldmfw_flash_image +EXPORT_SYMBOL vmlinux 0x9b718aff mdiobus_read EXPORT_SYMBOL vmlinux 0x9b72478f acpi_unload_parent_table -EXPORT_SYMBOL vmlinux 0x9b74355b ip_sock_set_pktinfo -EXPORT_SYMBOL vmlinux 0x9b8529c0 tty_insert_flip_string_flags EXPORT_SYMBOL vmlinux 0x9b9eb858 unload_nls -EXPORT_SYMBOL vmlinux 0x9ba0ef09 netif_rx_ni +EXPORT_SYMBOL vmlinux 0x9ba58910 rawv6_mh_filter_unregister +EXPORT_SYMBOL vmlinux 0x9ba6cd02 jbd2_fc_end_commit EXPORT_SYMBOL vmlinux 0x9bb4e317 ioread32be -EXPORT_SYMBOL vmlinux 0x9c00c997 phy_request_interrupt -EXPORT_SYMBOL vmlinux 0x9c04234b fixed_size_llseek +EXPORT_SYMBOL vmlinux 0x9be16f81 tso_start +EXPORT_SYMBOL vmlinux 0x9be31b1a dev_mc_flush +EXPORT_SYMBOL vmlinux 0x9bec009e input_mt_report_slot_state +EXPORT_SYMBOL vmlinux 0x9bf6c388 devfreq_resume_device +EXPORT_SYMBOL vmlinux 0x9bf9ec72 fb_get_buffer_offset +EXPORT_SYMBOL vmlinux 0x9c09bda5 tty_port_free_xmit_buf +EXPORT_SYMBOL vmlinux 0x9c0dccf2 tcp_timewait_state_process EXPORT_SYMBOL vmlinux 0x9c122bcf mempool_create_node -EXPORT_SYMBOL vmlinux 0x9c3e24c7 flow_rule_match_cvlan -EXPORT_SYMBOL vmlinux 0x9c4ea502 phy_detach -EXPORT_SYMBOL vmlinux 0x9c547584 d_alloc_name +EXPORT_SYMBOL vmlinux 0x9c1b1ed0 ip6_frag_next +EXPORT_SYMBOL vmlinux 0x9c3a02fa clocksource_change_rating +EXPORT_SYMBOL vmlinux 0x9c3fb5aa __set_page_dirty_nobuffers +EXPORT_SYMBOL vmlinux 0x9c616e8f mini_qdisc_pair_init EXPORT_SYMBOL vmlinux 0x9c65b78a csum_partial_copy_nocheck -EXPORT_SYMBOL vmlinux 0x9c78dff5 unregister_netdevice_queue +EXPORT_SYMBOL vmlinux 0x9c70ae3b phy_validate_pause EXPORT_SYMBOL vmlinux 0x9c86b9ab fileattr_fill_flags -EXPORT_SYMBOL vmlinux 0x9c8dcdb6 tcp_check_req -EXPORT_SYMBOL vmlinux 0x9c957e0a blk_mq_requeue_request -EXPORT_SYMBOL vmlinux 0x9ca4e3f2 __kfree_skb -EXPORT_SYMBOL vmlinux 0x9ca8d895 netdev_txq_to_tc +EXPORT_SYMBOL vmlinux 0x9ca14e85 alloc_etherdev_mqs EXPORT_SYMBOL vmlinux 0x9cab34a6 rfkill_set_led_trigger_name +EXPORT_SYMBOL vmlinux 0x9cab4c6c tcp_md5_do_add +EXPORT_SYMBOL vmlinux 0x9cb559e7 init_special_inode EXPORT_SYMBOL vmlinux 0x9cb986f2 vmalloc_base -EXPORT_SYMBOL vmlinux 0x9cca8b7f file_modified EXPORT_SYMBOL vmlinux 0x9ccf7171 vme_dma_pci_attribute -EXPORT_SYMBOL vmlinux 0x9cd68583 jbd2_journal_force_commit_nested EXPORT_SYMBOL vmlinux 0x9cd91791 register_sysctl EXPORT_SYMBOL vmlinux 0x9cdfb3f7 sysctl_fb_tunnels_only_for_init_net +EXPORT_SYMBOL vmlinux 0x9ce3b184 phy_get_internal_delay +EXPORT_SYMBOL vmlinux 0x9ceab00e xfrm_parse_spi EXPORT_SYMBOL vmlinux 0x9ced41ad __SCT__tp_func_read_msr -EXPORT_SYMBOL vmlinux 0x9cf6adfa wait_on_page_private_2_killable -EXPORT_SYMBOL vmlinux 0x9cf86cdd make_kprojid -EXPORT_SYMBOL vmlinux 0x9d094fc4 agp_generic_destroy_pages +EXPORT_SYMBOL vmlinux 0x9cfd1b91 seg6_hmac_net_init EXPORT_SYMBOL vmlinux 0x9d099a39 acpi_remove_gpe_handler EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier -EXPORT_SYMBOL vmlinux 0x9d143686 i8042_remove_filter -EXPORT_SYMBOL vmlinux 0x9d18629a genphy_read_status_fixed -EXPORT_SYMBOL vmlinux 0x9d1d7984 account_page_redirty +EXPORT_SYMBOL vmlinux 0x9d213e69 neigh_for_each EXPORT_SYMBOL vmlinux 0x9d250156 __nla_put EXPORT_SYMBOL vmlinux 0x9d2ab8ac __tasklet_schedule -EXPORT_SYMBOL vmlinux 0x9d2e5198 init_task +EXPORT_SYMBOL vmlinux 0x9d2b7b5b security_inode_listsecurity EXPORT_SYMBOL vmlinux 0x9d2e7707 unregister_sysrq_key -EXPORT_SYMBOL vmlinux 0x9d3b3e39 netdev_set_sb_channel -EXPORT_SYMBOL vmlinux 0x9d49b5dc simple_transaction_read +EXPORT_SYMBOL vmlinux 0x9d54f149 sock_no_accept EXPORT_SYMBOL vmlinux 0x9d61e994 ucs2_strncmp -EXPORT_SYMBOL vmlinux 0x9d64ee79 dmaengine_get_unmap_data -EXPORT_SYMBOL vmlinux 0x9d6cd3aa tcp_close -EXPORT_SYMBOL vmlinux 0x9d6e8494 devm_extcon_register_notifier_all +EXPORT_SYMBOL vmlinux 0x9d6ae4ed mr_dump +EXPORT_SYMBOL vmlinux 0x9d6f20a3 xfrm_policy_register_afinfo EXPORT_SYMBOL vmlinux 0x9d70541a native_save_fl +EXPORT_SYMBOL vmlinux 0x9d755577 __mmap_lock_do_trace_acquire_returned +EXPORT_SYMBOL vmlinux 0x9d800cc0 make_bad_inode +EXPORT_SYMBOL vmlinux 0x9d8baab6 __sk_dst_check +EXPORT_SYMBOL vmlinux 0x9d8ff744 fb_firmware_edid EXPORT_SYMBOL vmlinux 0x9d92f3ad __wait_on_bit_lock EXPORT_SYMBOL vmlinux 0x9d97ab2c audit_log_object_context -EXPORT_SYMBOL vmlinux 0x9d99bdd0 inet_rcv_saddr_equal -EXPORT_SYMBOL vmlinux 0x9da51b3e skb_orphan_partial -EXPORT_SYMBOL vmlinux 0x9dcee01f kmem_cache_destroy -EXPORT_SYMBOL vmlinux 0x9dceea25 peernet2id -EXPORT_SYMBOL vmlinux 0x9def7939 set_cached_acl -EXPORT_SYMBOL vmlinux 0x9e056ccd input_get_timestamp +EXPORT_SYMBOL vmlinux 0x9d97b619 dma_sync_wait +EXPORT_SYMBOL vmlinux 0x9dac06e9 km_state_expired +EXPORT_SYMBOL vmlinux 0x9dc7a059 netdev_has_upper_dev +EXPORT_SYMBOL vmlinux 0x9dddfeb8 dev_get_phys_port_name +EXPORT_SYMBOL vmlinux 0x9df4fee8 set_user_nice +EXPORT_SYMBOL vmlinux 0x9e01b01c pci_find_parent_resource EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node EXPORT_SYMBOL vmlinux 0x9e0fa5ae hsiphash_3u32 EXPORT_SYMBOL vmlinux 0x9e13f6f6 gf128mul_lle -EXPORT_SYMBOL vmlinux 0x9e1ef9ae flow_rule_match_enc_ip -EXPORT_SYMBOL vmlinux 0x9e2476b6 inode_update_time EXPORT_SYMBOL vmlinux 0x9e2737f0 acpi_install_interface_handler -EXPORT_SYMBOL vmlinux 0x9e35490a xfrm_state_lookup_byspi -EXPORT_SYMBOL vmlinux 0x9e36b14e xfrm_state_check_expire -EXPORT_SYMBOL vmlinux 0x9e4339b8 generic_copy_file_range -EXPORT_SYMBOL vmlinux 0x9e4a1205 kmem_cache_shrink +EXPORT_SYMBOL vmlinux 0x9e4ed337 security_sctp_sk_clone EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy -EXPORT_SYMBOL vmlinux 0x9e5913ff pci_alloc_irq_vectors_affinity EXPORT_SYMBOL vmlinux 0x9e61bb05 set_freezable EXPORT_SYMBOL vmlinux 0x9e64fbfe rtc_cmos_read EXPORT_SYMBOL vmlinux 0x9e683f75 __cpu_possible_mask -EXPORT_SYMBOL vmlinux 0x9e733e0c __splice_from_pipe EXPORT_SYMBOL vmlinux 0x9e7d6bd0 __udelay -EXPORT_SYMBOL vmlinux 0x9e92684d security_d_instantiate -EXPORT_SYMBOL vmlinux 0x9e969a97 touchscreen_parse_properties EXPORT_SYMBOL vmlinux 0x9e99837e __nla_put_64bit EXPORT_SYMBOL vmlinux 0x9e9eab95 devcgroup_check_permission EXPORT_SYMBOL vmlinux 0x9e9fdd9d memunmap EXPORT_SYMBOL vmlinux 0x9eacf8a5 kstrndup +EXPORT_SYMBOL vmlinux 0x9eaf90b3 tcf_register_action +EXPORT_SYMBOL vmlinux 0x9ebb5c5f __xfrm_route_forward EXPORT_SYMBOL vmlinux 0x9ec0e639 twl6030_interrupt_unmask -EXPORT_SYMBOL vmlinux 0x9ec37b07 __frontswap_load EXPORT_SYMBOL vmlinux 0x9ec6ca96 ktime_get_real_ts64 +EXPORT_SYMBOL vmlinux 0x9ed0b133 proc_symlink EXPORT_SYMBOL vmlinux 0x9ed978de vme_lm_set -EXPORT_SYMBOL vmlinux 0x9ee4c134 ping_prot -EXPORT_SYMBOL vmlinux 0x9ee67477 wait_on_page_bit_killable -EXPORT_SYMBOL vmlinux 0x9eeed8ec __dec_node_page_state +EXPORT_SYMBOL vmlinux 0x9ee2a381 __skb_try_recv_datagram EXPORT_SYMBOL vmlinux 0x9ef0eee7 __SCT__tp_func_spi_transfer_stop -EXPORT_SYMBOL vmlinux 0x9efda233 netdev_upper_dev_link -EXPORT_SYMBOL vmlinux 0x9f0ee057 netdev_has_upper_dev_all_rcu -EXPORT_SYMBOL vmlinux 0x9f213ccd mdiobus_is_registered_device -EXPORT_SYMBOL vmlinux 0x9f297163 xfrm_find_acq +EXPORT_SYMBOL vmlinux 0x9f007bfd __skb_flow_dissect +EXPORT_SYMBOL vmlinux 0x9f1778e3 iterate_supers_type +EXPORT_SYMBOL vmlinux 0x9f1905a5 tty_register_ldisc +EXPORT_SYMBOL vmlinux 0x9f226f96 d_add_ci +EXPORT_SYMBOL vmlinux 0x9f23b322 phy_register_fixup_for_uid +EXPORT_SYMBOL vmlinux 0x9f43e767 phy_mac_interrupt EXPORT_SYMBOL vmlinux 0x9f46ced8 __sw_hweight64 EXPORT_SYMBOL vmlinux 0x9f4f2aa3 acpi_gbl_FADT EXPORT_SYMBOL vmlinux 0x9f50b770 keyring_restrict -EXPORT_SYMBOL vmlinux 0x9f5175e8 pci_fixup_cardbus EXPORT_SYMBOL vmlinux 0x9f54ead7 gro_cells_destroy -EXPORT_SYMBOL vmlinux 0x9f5c3f70 fget_raw -EXPORT_SYMBOL vmlinux 0x9f5f83f6 locks_copy_conflock -EXPORT_SYMBOL vmlinux 0x9f7e0e1b dcb_getapp +EXPORT_SYMBOL vmlinux 0x9f5591ed acpi_bus_get_device +EXPORT_SYMBOL vmlinux 0x9f89a412 pci_find_next_bus EXPORT_SYMBOL vmlinux 0x9f984513 strrchr -EXPORT_SYMBOL vmlinux 0x9fa479c1 __dev_kfree_skb_any +EXPORT_SYMBOL vmlinux 0x9f991d3d register_md_personality EXPORT_SYMBOL vmlinux 0x9fa7184a cancel_delayed_work_sync -EXPORT_SYMBOL vmlinux 0x9fae7ac4 seq_printf -EXPORT_SYMBOL vmlinux 0x9faf2a01 mark_buffer_dirty_inode -EXPORT_SYMBOL vmlinux 0x9fc6328b vfs_statfs +EXPORT_SYMBOL vmlinux 0x9faa4cd4 page_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0x9fc7fc15 dev_open +EXPORT_SYMBOL vmlinux 0x9fcf1761 kmem_cache_alloc_bulk +EXPORT_SYMBOL vmlinux 0x9fd41136 filemap_fdatawait_keep_errors EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many -EXPORT_SYMBOL vmlinux 0x9feec6cb nf_hook_slow_list +EXPORT_SYMBOL vmlinux 0x9fe3b625 inc_node_page_state +EXPORT_SYMBOL vmlinux 0x9feb7ca5 blk_mq_unique_tag EXPORT_SYMBOL vmlinux 0x9feed7ce timer_reduce -EXPORT_SYMBOL vmlinux 0x9ff909fb scsi_scan_host EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog -EXPORT_SYMBOL vmlinux 0x9ffc2fe9 kthread_blkcg EXPORT_SYMBOL vmlinux 0xa00aca2a dql_completed -EXPORT_SYMBOL vmlinux 0xa013f196 pci_scan_bridge EXPORT_SYMBOL vmlinux 0xa01d3df6 font_vga_8x16 +EXPORT_SYMBOL vmlinux 0xa01e65e4 crypto_sha1_update EXPORT_SYMBOL vmlinux 0xa022c739 call_usermodehelper_setup +EXPORT_SYMBOL vmlinux 0xa0265ded tcf_classify EXPORT_SYMBOL vmlinux 0xa02aa74a __cond_resched_lock +EXPORT_SYMBOL vmlinux 0xa02f7f95 skb_checksum_trimmed EXPORT_SYMBOL vmlinux 0xa033d747 next_arg EXPORT_SYMBOL vmlinux 0xa0436e98 in6addr_linklocal_allnodes -EXPORT_SYMBOL vmlinux 0xa046dd08 tcf_qevent_init -EXPORT_SYMBOL vmlinux 0xa04922e1 generic_cont_expand_simple -EXPORT_SYMBOL vmlinux 0xa056eccf pci_free_host_bridge +EXPORT_SYMBOL vmlinux 0xa0485de4 pfifo_fast_ops +EXPORT_SYMBOL vmlinux 0xa04e16b5 serio_unregister_child_port EXPORT_SYMBOL vmlinux 0xa057df8f twl_set_regcache_bypass +EXPORT_SYMBOL vmlinux 0xa058c85f drop_super EXPORT_SYMBOL vmlinux 0xa05b6be2 psched_ppscfg_precompute EXPORT_SYMBOL vmlinux 0xa07a37f0 memchr EXPORT_SYMBOL vmlinux 0xa07d1b3c tasklet_setup -EXPORT_SYMBOL vmlinux 0xa081dcd9 i2c_clients_command EXPORT_SYMBOL vmlinux 0xa084749a __bitmap_or EXPORT_SYMBOL vmlinux 0xa084f79f cpumask_next_wrap -EXPORT_SYMBOL vmlinux 0xa08a064b qdisc_reset EXPORT_SYMBOL vmlinux 0xa095e02e generic_check_addressable -EXPORT_SYMBOL vmlinux 0xa0990933 dm_io -EXPORT_SYMBOL vmlinux 0xa09c819f gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0xa099f73d vme_irq_generate +EXPORT_SYMBOL vmlinux 0xa0a85b54 sock_cmsg_send EXPORT_SYMBOL vmlinux 0xa0ae1e73 siphash_3u64 EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 +EXPORT_SYMBOL vmlinux 0xa0be2358 fault_in_iov_iter_writeable +EXPORT_SYMBOL vmlinux 0xa0d41481 fib_notifier_ops_unregister EXPORT_SYMBOL vmlinux 0xa0d87339 qdisc_get_rtab EXPORT_SYMBOL vmlinux 0xa0dad88e netdev_adjacent_get_private -EXPORT_SYMBOL vmlinux 0xa0db056e remove_proc_entry -EXPORT_SYMBOL vmlinux 0xa0dbc7ce __hw_addr_unsync_dev +EXPORT_SYMBOL vmlinux 0xa0e826d6 rtc_add_group 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 0xa10324b9 d_obtain_root EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max -EXPORT_SYMBOL vmlinux 0xa10f07bc drop_super -EXPORT_SYMBOL vmlinux 0xa11371df dcb_setapp -EXPORT_SYMBOL vmlinux 0xa113dfdc sock_wmalloc -EXPORT_SYMBOL vmlinux 0xa1220943 simple_lookup -EXPORT_SYMBOL vmlinux 0xa122154f tc_setup_cb_call -EXPORT_SYMBOL vmlinux 0xa122fe9d tcp_simple_retransmit -EXPORT_SYMBOL vmlinux 0xa1245613 __insert_inode_hash -EXPORT_SYMBOL vmlinux 0xa1293472 fib_notifier_ops_register -EXPORT_SYMBOL vmlinux 0xa12d5988 kernel_write -EXPORT_SYMBOL vmlinux 0xa130cf6b twl6040_get_pll +EXPORT_SYMBOL vmlinux 0xa12a54a0 nf_hook_slow EXPORT_SYMBOL vmlinux 0xa13e780a gen_replace_estimator -EXPORT_SYMBOL vmlinux 0xa152808c nd_device_register -EXPORT_SYMBOL vmlinux 0xa152b9ef xfrm_unregister_type_offload -EXPORT_SYMBOL vmlinux 0xa16248e6 pin_user_pages_unlocked -EXPORT_SYMBOL vmlinux 0xa16b389a mr_mfc_find_any_parent -EXPORT_SYMBOL vmlinux 0xa18ae5f3 call_fib_notifiers -EXPORT_SYMBOL vmlinux 0xa18f1894 alloc_fddidev -EXPORT_SYMBOL vmlinux 0xa19719bc bio_reset -EXPORT_SYMBOL vmlinux 0xa1abdc4c __mdiobus_write -EXPORT_SYMBOL vmlinux 0xa1acceb1 netdev_update_features +EXPORT_SYMBOL vmlinux 0xa162539a __skb_recv_datagram +EXPORT_SYMBOL vmlinux 0xa17b00f4 __skb_recv_udp +EXPORT_SYMBOL vmlinux 0xa17b6900 blk_rq_init +EXPORT_SYMBOL vmlinux 0xa17e177a __pskb_pull_tail +EXPORT_SYMBOL vmlinux 0xa187b662 tcp_mmap +EXPORT_SYMBOL vmlinux 0xa1b1c96b security_sctp_bind_connect +EXPORT_SYMBOL vmlinux 0xa1b44c78 agp_allocate_memory +EXPORT_SYMBOL vmlinux 0xa1b55079 inet_csk_clear_xmit_timers +EXPORT_SYMBOL vmlinux 0xa1b6b407 arch_debugfs_dir EXPORT_SYMBOL vmlinux 0xa1bedd72 amd_iommu_pc_get_max_counters -EXPORT_SYMBOL vmlinux 0xa1bfd946 iw_handler_get_thrspy -EXPORT_SYMBOL vmlinux 0xa1d20605 udp_lib_setsockopt -EXPORT_SYMBOL vmlinux 0xa1de4ca1 vfs_path_lookup -EXPORT_SYMBOL vmlinux 0xa1efb2d8 arp_xmit -EXPORT_SYMBOL vmlinux 0xa1f3dbb5 blk_set_queue_depth -EXPORT_SYMBOL vmlinux 0xa2029c30 skb_copy_and_csum_datagram_msg +EXPORT_SYMBOL vmlinux 0xa1cfdadc ps2_command +EXPORT_SYMBOL vmlinux 0xa1d5ffb7 pnp_device_attach +EXPORT_SYMBOL vmlinux 0xa1f405c4 dma_supported +EXPORT_SYMBOL vmlinux 0xa2005ee6 xfrm_register_km EXPORT_SYMBOL vmlinux 0xa2060911 inet_current_timestamp -EXPORT_SYMBOL vmlinux 0xa219b43d register_qdisc +EXPORT_SYMBOL vmlinux 0xa20c97d8 seq_hex_dump +EXPORT_SYMBOL vmlinux 0xa221bf0d pci_release_region EXPORT_SYMBOL vmlinux 0xa2326c49 acpi_remove_table_handler -EXPORT_SYMBOL vmlinux 0xa2380a80 sock_alloc_send_skb -EXPORT_SYMBOL vmlinux 0xa23f854b tc_setup_cb_add +EXPORT_SYMBOL vmlinux 0xa2365e51 pci_irq_get_affinity EXPORT_SYMBOL vmlinux 0xa23ffc04 groups_sort -EXPORT_SYMBOL vmlinux 0xa24df4b8 try_to_free_buffers EXPORT_SYMBOL vmlinux 0xa24f23d8 __request_module -EXPORT_SYMBOL vmlinux 0xa250c673 devfreq_resume_device -EXPORT_SYMBOL vmlinux 0xa2536e22 twl6040_set_bits -EXPORT_SYMBOL vmlinux 0xa256602b __blk_mq_alloc_disk -EXPORT_SYMBOL vmlinux 0xa25ad81c devm_extcon_register_notifier +EXPORT_SYMBOL vmlinux 0xa25960a5 scsi_is_host_device EXPORT_SYMBOL vmlinux 0xa25b90ab utf8byte EXPORT_SYMBOL vmlinux 0xa263892b fscrypt_fname_free_buffer -EXPORT_SYMBOL vmlinux 0xa265474c iov_iter_get_pages_alloc -EXPORT_SYMBOL vmlinux 0xa26abfae netif_schedule_queue +EXPORT_SYMBOL vmlinux 0xa2885d57 devm_free_irq EXPORT_SYMBOL vmlinux 0xa28cfcc0 gen_estimator_active -EXPORT_SYMBOL vmlinux 0xa2a893f7 fifo_create_dflt -EXPORT_SYMBOL vmlinux 0xa2b4c6d1 __blk_mq_end_request -EXPORT_SYMBOL vmlinux 0xa2b74afb __page_frag_cache_drain -EXPORT_SYMBOL vmlinux 0xa2be0027 md_bitmap_end_sync -EXPORT_SYMBOL vmlinux 0xa2ccb6bd __inc_zone_page_state -EXPORT_SYMBOL vmlinux 0xa2ce485a genphy_config_eee_advert -EXPORT_SYMBOL vmlinux 0xa2d1c123 ip6_frag_next -EXPORT_SYMBOL vmlinux 0xa2d9824c inet_csk_delete_keepalive_timer -EXPORT_SYMBOL vmlinux 0xa3412e37 input_get_keycode -EXPORT_SYMBOL vmlinux 0xa34ae963 agp_put_bridge -EXPORT_SYMBOL vmlinux 0xa35b1522 tcf_register_action -EXPORT_SYMBOL vmlinux 0xa35b851a flow_rule_match_enc_ipv4_addrs -EXPORT_SYMBOL vmlinux 0xa36309c1 ata_link_printk -EXPORT_SYMBOL vmlinux 0xa36caa93 elv_rb_del -EXPORT_SYMBOL vmlinux 0xa38dabd2 agp_generic_insert_memory +EXPORT_SYMBOL vmlinux 0xa2915a3c icmp_ndo_send +EXPORT_SYMBOL vmlinux 0xa2c160fd netif_carrier_off +EXPORT_SYMBOL vmlinux 0xa2cd114c __SetPageMovable +EXPORT_SYMBOL vmlinux 0xa2dba9c7 netdev_refcnt_read +EXPORT_SYMBOL vmlinux 0xa2e6eafc dquot_acquire +EXPORT_SYMBOL vmlinux 0xa2efcfda inet_csk_prepare_forced_close +EXPORT_SYMBOL vmlinux 0xa30c642e pci_save_state +EXPORT_SYMBOL vmlinux 0xa31af479 simple_fill_super +EXPORT_SYMBOL vmlinux 0xa366f9aa phy_support_asym_pause +EXPORT_SYMBOL vmlinux 0xa3821f1c blk_mq_end_request +EXPORT_SYMBOL vmlinux 0xa3840fda scsi_is_sdev_device +EXPORT_SYMBOL vmlinux 0xa389ed00 inet_sendpage EXPORT_SYMBOL vmlinux 0xa38f21b9 amd_iommu_update_ga -EXPORT_SYMBOL vmlinux 0xa39be002 posix_acl_update_mode -EXPORT_SYMBOL vmlinux 0xa3a46705 mark_info_dirty EXPORT_SYMBOL vmlinux 0xa3b6c0d8 kobject_del EXPORT_SYMBOL vmlinux 0xa3be8342 __ubsan_handle_type_mismatch -EXPORT_SYMBOL vmlinux 0xa3ce7b19 bio_split +EXPORT_SYMBOL vmlinux 0xa3d3a2a8 sk_dst_check +EXPORT_SYMBOL vmlinux 0xa3e2bb60 pm8606_osc_enable EXPORT_SYMBOL vmlinux 0xa3e4f871 acpi_initialize_debugger +EXPORT_SYMBOL vmlinux 0xa3f4e4e6 fsync_bdev EXPORT_SYMBOL vmlinux 0xa3fb735a blk_set_default_limits EXPORT_SYMBOL vmlinux 0xa3fea172 sha224_final -EXPORT_SYMBOL vmlinux 0xa4002f2f pagecache_get_page -EXPORT_SYMBOL vmlinux 0xa40851d2 PDE_DATA -EXPORT_SYMBOL vmlinux 0xa4091d3c vmf_insert_mixed_prot +EXPORT_SYMBOL vmlinux 0xa4072395 tcf_get_next_proto EXPORT_SYMBOL vmlinux 0xa40ff01b acpi_dbg_layer +EXPORT_SYMBOL vmlinux 0xa4120eac rproc_put +EXPORT_SYMBOL vmlinux 0xa41367f6 phy_driver_unregister EXPORT_SYMBOL vmlinux 0xa4191c0b memset_io -EXPORT_SYMBOL vmlinux 0xa4251b5b mdio_device_remove -EXPORT_SYMBOL vmlinux 0xa43cbee9 devm_rproc_add -EXPORT_SYMBOL vmlinux 0xa441f376 phy_ethtool_set_eee -EXPORT_SYMBOL vmlinux 0xa4422e50 scsi_device_quiesce -EXPORT_SYMBOL vmlinux 0xa45a46b1 __SCK__tp_func_write_msr -EXPORT_SYMBOL vmlinux 0xa46c55b0 md_bitmap_start_sync +EXPORT_SYMBOL vmlinux 0xa41e6b16 flow_rule_match_ipv6_addrs +EXPORT_SYMBOL vmlinux 0xa426acf3 framebuffer_alloc +EXPORT_SYMBOL vmlinux 0xa42c126e napi_get_frags +EXPORT_SYMBOL vmlinux 0xa43a7867 __lock_buffer +EXPORT_SYMBOL vmlinux 0xa44b94cf scsi_partsize +EXPORT_SYMBOL vmlinux 0xa459161f arp_send EXPORT_SYMBOL vmlinux 0xa47a31c8 security_binder_transaction -EXPORT_SYMBOL vmlinux 0xa4864cbd bio_copy_data -EXPORT_SYMBOL vmlinux 0xa492be37 pnp_get_resource +EXPORT_SYMBOL vmlinux 0xa47cf551 eth_header_parse +EXPORT_SYMBOL vmlinux 0xa495538e _dev_warn +EXPORT_SYMBOL vmlinux 0xa49793a3 vfs_link EXPORT_SYMBOL vmlinux 0xa4b94fea iowrite8_rep +EXPORT_SYMBOL vmlinux 0xa4bb8b17 acpi_dev_get_first_match_dev EXPORT_SYMBOL vmlinux 0xa4c6afdf kset_unregister +EXPORT_SYMBOL vmlinux 0xa4cedcee mmc_can_gpio_cd +EXPORT_SYMBOL vmlinux 0xa4cf9d22 dput EXPORT_SYMBOL vmlinux 0xa4d4f0e6 global_cache_flush -EXPORT_SYMBOL vmlinux 0xa4dfe876 inode_owner_or_capable +EXPORT_SYMBOL vmlinux 0xa4dbd2eb pci_find_resource +EXPORT_SYMBOL vmlinux 0xa4e1b450 __cleancache_put_page +EXPORT_SYMBOL vmlinux 0xa4ea2dc9 km_policy_notify EXPORT_SYMBOL vmlinux 0xa4faf62a acpi_disable_gpe -EXPORT_SYMBOL vmlinux 0xa503425f skb_recv_datagram +EXPORT_SYMBOL vmlinux 0xa4fc6929 mdiobus_unregister EXPORT_SYMBOL vmlinux 0xa507125e acpi_clear_gpe EXPORT_SYMBOL vmlinux 0xa50a3da7 _find_next_bit EXPORT_SYMBOL vmlinux 0xa50bcff0 x86_cpu_to_apicid EXPORT_SYMBOL vmlinux 0xa52bedf6 xenbus_dev_request_and_reply -EXPORT_SYMBOL vmlinux 0xa52e17e2 xfrm_register_type_offload -EXPORT_SYMBOL vmlinux 0xa52fc8e2 pci_find_parent_resource -EXPORT_SYMBOL vmlinux 0xa5389dd6 xfrm_policy_destroy -EXPORT_SYMBOL vmlinux 0xa54c61ff inet_stream_ops +EXPORT_SYMBOL vmlinux 0xa53c5a54 flow_rule_match_control EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color -EXPORT_SYMBOL vmlinux 0xa5750f69 pci_rebar_get_possible_sizes -EXPORT_SYMBOL vmlinux 0xa57ed92d pnp_activate_dev +EXPORT_SYMBOL vmlinux 0xa5700515 kthread_stop +EXPORT_SYMBOL vmlinux 0xa577b7d8 phy_register_fixup_for_id +EXPORT_SYMBOL vmlinux 0xa5953d74 pci_wake_from_d3 EXPORT_SYMBOL vmlinux 0xa5976e4f dev_base_lock -EXPORT_SYMBOL vmlinux 0xa59eb46d blk_mq_alloc_request +EXPORT_SYMBOL vmlinux 0xa59bd7a2 dev_activate +EXPORT_SYMBOL vmlinux 0xa5a350be pci_fixup_device EXPORT_SYMBOL vmlinux 0xa5ac3e33 ZSTD_DCtxWorkspaceBound -EXPORT_SYMBOL vmlinux 0xa5bf4954 devm_input_allocate_device -EXPORT_SYMBOL vmlinux 0xa5c036a7 tcp_md5_hash_key -EXPORT_SYMBOL vmlinux 0xa5e4bfae i2c_get_adapter +EXPORT_SYMBOL vmlinux 0xa5e1ea92 qdisc_put EXPORT_SYMBOL vmlinux 0xa5e55057 rdmsrl_safe_on_cpu -EXPORT_SYMBOL vmlinux 0xa61040bd tcp_ld_RTO_revert -EXPORT_SYMBOL vmlinux 0xa61ab99b mmc_add_host +EXPORT_SYMBOL vmlinux 0xa5ef1863 dma_sync_sg_for_cpu +EXPORT_SYMBOL vmlinux 0xa5f2a041 do_splice_direct +EXPORT_SYMBOL vmlinux 0xa5f36e0e blk_queue_virt_boundary +EXPORT_SYMBOL vmlinux 0xa6040fdf bio_integrity_clone +EXPORT_SYMBOL vmlinux 0xa61006c0 xfrm_alloc_spi +EXPORT_SYMBOL vmlinux 0xa615cba4 phy_attached_info EXPORT_SYMBOL vmlinux 0xa61ced89 qdisc_put_rtab EXPORT_SYMBOL vmlinux 0xa6257a2f complete -EXPORT_SYMBOL vmlinux 0xa6485ba9 generic_set_encrypted_ci_d_ops EXPORT_SYMBOL vmlinux 0xa648e561 __ubsan_handle_shift_out_of_bounds -EXPORT_SYMBOL vmlinux 0xa6622841 tty_port_close -EXPORT_SYMBOL vmlinux 0xa66684dd ip6_mtu +EXPORT_SYMBOL vmlinux 0xa6516ab5 input_mt_sync_frame +EXPORT_SYMBOL vmlinux 0xa66062c3 dquot_scan_active EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid -EXPORT_SYMBOL vmlinux 0xa69740ea d_alloc_parallel -EXPORT_SYMBOL vmlinux 0xa6b390da __scsi_add_device -EXPORT_SYMBOL vmlinux 0xa6b8b87d dst_release -EXPORT_SYMBOL vmlinux 0xa6c7e170 pci_write_vpd -EXPORT_SYMBOL vmlinux 0xa6dfdec5 tcp_enter_quickack_mode -EXPORT_SYMBOL vmlinux 0xa6ed60ee devm_mfd_add_devices -EXPORT_SYMBOL vmlinux 0xa6ede8f6 security_path_unlink -EXPORT_SYMBOL vmlinux 0xa70311f4 dev_pm_opp_register_notifier -EXPORT_SYMBOL vmlinux 0xa707d8e8 acpi_notifier_call_chain +EXPORT_SYMBOL vmlinux 0xa68f354a genphy_suspend +EXPORT_SYMBOL vmlinux 0xa6c0bfdc vmap +EXPORT_SYMBOL vmlinux 0xa6c638e8 seg6_hmac_info_del +EXPORT_SYMBOL vmlinux 0xa6d30197 cros_ec_cmd_xfer_status +EXPORT_SYMBOL vmlinux 0xa6e96df1 lock_two_nondirectories +EXPORT_SYMBOL vmlinux 0xa6f3f55f jbd2_journal_flush +EXPORT_SYMBOL vmlinux 0xa6fab48e __inode_sub_bytes +EXPORT_SYMBOL vmlinux 0xa6fad711 netdev_adjacent_change_commit +EXPORT_SYMBOL vmlinux 0xa6fb46a7 dma_async_tx_descriptor_init +EXPORT_SYMBOL vmlinux 0xa7013843 genphy_read_status_fixed +EXPORT_SYMBOL vmlinux 0xa7032948 ppp_register_compressor +EXPORT_SYMBOL vmlinux 0xa7058693 padata_do_serial +EXPORT_SYMBOL vmlinux 0xa7063b3a remove_conflicting_pci_framebuffers +EXPORT_SYMBOL vmlinux 0xa709960d rproc_get_by_phandle EXPORT_SYMBOL vmlinux 0xa70fabbe release_evntsel_nmi EXPORT_SYMBOL vmlinux 0xa70fb761 flow_keys_basic_dissector -EXPORT_SYMBOL vmlinux 0xa7125e79 vfs_getattr_nosec +EXPORT_SYMBOL vmlinux 0xa715db6d free_netdev +EXPORT_SYMBOL vmlinux 0xa719e1f0 configfs_unregister_default_group EXPORT_SYMBOL vmlinux 0xa71d2e2c ioread16be EXPORT_SYMBOL vmlinux 0xa72035f9 xa_get_order -EXPORT_SYMBOL vmlinux 0xa7257481 should_remove_suid +EXPORT_SYMBOL vmlinux 0xa721f407 __splice_from_pipe +EXPORT_SYMBOL vmlinux 0xa727dda1 __SCK__tp_func_kmem_cache_alloc EXPORT_SYMBOL vmlinux 0xa72cfb7d ioremap_wt -EXPORT_SYMBOL vmlinux 0xa7419838 __dev_kfree_skb_irq +EXPORT_SYMBOL vmlinux 0xa73d063b mdiobus_register_device EXPORT_SYMBOL vmlinux 0xa74c9877 refcount_dec_and_rtnl_lock -EXPORT_SYMBOL vmlinux 0xa756fae4 submit_bio -EXPORT_SYMBOL vmlinux 0xa757a73d read_cache_page -EXPORT_SYMBOL vmlinux 0xa7597c89 ethtool_virtdev_set_link_ksettings -EXPORT_SYMBOL vmlinux 0xa7610b69 __block_write_begin -EXPORT_SYMBOL vmlinux 0xa765fe0e _dev_printk -EXPORT_SYMBOL vmlinux 0xa773c546 kmalloc_caches +EXPORT_SYMBOL vmlinux 0xa7568e3e agp_backend_acquire +EXPORT_SYMBOL vmlinux 0xa75714c5 unregister_md_personality +EXPORT_SYMBOL vmlinux 0xa7779b0a mini_qdisc_pair_swap EXPORT_SYMBOL vmlinux 0xa77bfd29 register_inet6addr_validator_notifier +EXPORT_SYMBOL vmlinux 0xa7875be0 unregister_mii_tstamp_controller EXPORT_SYMBOL vmlinux 0xa78af5f3 ioread32 +EXPORT_SYMBOL vmlinux 0xa791a825 ram_aops EXPORT_SYMBOL vmlinux 0xa796679d __SCT__tp_func_dma_fence_emit -EXPORT_SYMBOL vmlinux 0xa7b7ddcd tty_unregister_device -EXPORT_SYMBOL vmlinux 0xa7ce0eef may_umount -EXPORT_SYMBOL vmlinux 0xa7cfa013 devm_backlight_device_unregister +EXPORT_SYMBOL vmlinux 0xa7989dc5 ipv6_skip_exthdr +EXPORT_SYMBOL vmlinux 0xa798a595 set_disk_ro +EXPORT_SYMBOL vmlinux 0xa7b38c38 __tracepoint_mmap_lock_acquire_returned +EXPORT_SYMBOL vmlinux 0xa7c01c07 dcb_getapp +EXPORT_SYMBOL vmlinux 0xa7ca7ddb inet_frag_queue_insert +EXPORT_SYMBOL vmlinux 0xa7d452fb sock_kmalloc EXPORT_SYMBOL vmlinux 0xa7d5f92e ida_destroy EXPORT_SYMBOL vmlinux 0xa7eedcc4 call_usermodehelper EXPORT_SYMBOL vmlinux 0xa805ecfc acpi_release_global_lock +EXPORT_SYMBOL vmlinux 0xa807774f ip6_dst_hoplimit EXPORT_SYMBOL vmlinux 0xa8181adf proc_dointvec +EXPORT_SYMBOL vmlinux 0xa81f7cc2 genl_notify EXPORT_SYMBOL vmlinux 0xa836ba02 wrmsr_safe_regs +EXPORT_SYMBOL vmlinux 0xa84001d3 security_inode_copy_up EXPORT_SYMBOL vmlinux 0xa843805a get_unused_fd_flags EXPORT_SYMBOL vmlinux 0xa84ce9e0 crypto_aes_inv_sbox +EXPORT_SYMBOL vmlinux 0xa84f3304 vfs_fadvise EXPORT_SYMBOL vmlinux 0xa85300fe kobject_get_unless_zero EXPORT_SYMBOL vmlinux 0xa853396b xa_extract +EXPORT_SYMBOL vmlinux 0xa8566d41 blk_sync_queue EXPORT_SYMBOL vmlinux 0xa85a3e6d xa_load -EXPORT_SYMBOL vmlinux 0xa85ca38d iov_iter_gap_alignment +EXPORT_SYMBOL vmlinux 0xa86839c5 nf_log_unbind_pf EXPORT_SYMBOL vmlinux 0xa8694ecd kblockd_schedule_work -EXPORT_SYMBOL vmlinux 0xa86baa43 generic_remap_file_range_prep -EXPORT_SYMBOL vmlinux 0xa8859c78 __napi_schedule_irqoff -EXPORT_SYMBOL vmlinux 0xa889fb56 dcache_dir_close -EXPORT_SYMBOL vmlinux 0xa89775b2 unlock_two_nondirectories +EXPORT_SYMBOL vmlinux 0xa871939f mini_qdisc_pair_block_init EXPORT_SYMBOL vmlinux 0xa897e3e7 mempool_free EXPORT_SYMBOL vmlinux 0xa89a1cf1 ipmi_dmi_get_slave_addr -EXPORT_SYMBOL vmlinux 0xa89d32b2 mmc_wait_for_cmd +EXPORT_SYMBOL vmlinux 0xa8b5893e mfd_cell_enable +EXPORT_SYMBOL vmlinux 0xa8bb05ef vfs_dup_fs_context EXPORT_SYMBOL vmlinux 0xa8caa845 clk_bulk_put_all +EXPORT_SYMBOL vmlinux 0xa8e419ed iw_handler_set_spy EXPORT_SYMBOL vmlinux 0xa8e6933a qdf2400_e44_present -EXPORT_SYMBOL vmlinux 0xa8efa19d get_tree_nodev +EXPORT_SYMBOL vmlinux 0xa8f62b00 from_kgid_munged EXPORT_SYMBOL vmlinux 0xa8f6c843 ip_frag_ecn_table +EXPORT_SYMBOL vmlinux 0xa90c8b46 mdiobus_write_nested EXPORT_SYMBOL vmlinux 0xa90ca0de flush_rcu_work EXPORT_SYMBOL vmlinux 0xa916b694 strnlen -EXPORT_SYMBOL vmlinux 0xa9232661 __ps2_command EXPORT_SYMBOL vmlinux 0xa924b4aa __traceiter_kmem_cache_alloc_node -EXPORT_SYMBOL vmlinux 0xa92cb19f generic_file_direct_write -EXPORT_SYMBOL vmlinux 0xa92d8c60 page_pool_alloc_frag -EXPORT_SYMBOL vmlinux 0xa930939e unlock_buffer EXPORT_SYMBOL vmlinux 0xa931af8a asm_load_gs_index -EXPORT_SYMBOL vmlinux 0xa934bc4b flow_get_u32_dst -EXPORT_SYMBOL vmlinux 0xa93dcdee register_quota_format +EXPORT_SYMBOL vmlinux 0xa93bfc46 remove_proc_entry +EXPORT_SYMBOL vmlinux 0xa9488db5 tty_port_close_end EXPORT_SYMBOL vmlinux 0xa94a09bb mem_section -EXPORT_SYMBOL vmlinux 0xa94d0e93 iw_handler_set_spy -EXPORT_SYMBOL vmlinux 0xa95055da copy_page_from_iter -EXPORT_SYMBOL vmlinux 0xa95dccc7 dev_get_flags +EXPORT_SYMBOL vmlinux 0xa94d49a8 start_tty +EXPORT_SYMBOL vmlinux 0xa952927e pci_restore_state +EXPORT_SYMBOL vmlinux 0xa95a173d jbd2_journal_abort EXPORT_SYMBOL vmlinux 0xa965ca81 reciprocal_value -EXPORT_SYMBOL vmlinux 0xa96d609a pci_request_irq EXPORT_SYMBOL vmlinux 0xa976957d bitmap_remap +EXPORT_SYMBOL vmlinux 0xa976eaa8 ip_fraglist_init EXPORT_SYMBOL vmlinux 0xa9785b49 cpu_core_map +EXPORT_SYMBOL vmlinux 0xa982616e vfs_parse_fs_param_source EXPORT_SYMBOL vmlinux 0xa99b39c2 prandom_bytes -EXPORT_SYMBOL vmlinux 0xa9a8306d dquot_initialize -EXPORT_SYMBOL vmlinux 0xa9a8b7fa nd_namespace_blk_validate -EXPORT_SYMBOL vmlinux 0xa9b98d3a try_to_writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0xa9a8e571 configfs_unregister_subsystem +EXPORT_SYMBOL vmlinux 0xa9aa5de5 clk_hw_get_clk +EXPORT_SYMBOL vmlinux 0xa9b263d0 sock_register +EXPORT_SYMBOL vmlinux 0xa9bf8d4a scsi_remove_device +EXPORT_SYMBOL vmlinux 0xa9c53be3 d_splice_alias EXPORT_SYMBOL vmlinux 0xa9c72303 amd_iommu_pc_get_max_banks -EXPORT_SYMBOL vmlinux 0xa9f8a609 __mmap_lock_do_trace_acquire_returned +EXPORT_SYMBOL vmlinux 0xa9c75a71 input_get_timestamp +EXPORT_SYMBOL vmlinux 0xa9cdcd88 tcp_v4_conn_request +EXPORT_SYMBOL vmlinux 0xa9e91d2d cdev_alloc +EXPORT_SYMBOL vmlinux 0xa9ef01ed mdio_device_register EXPORT_SYMBOL vmlinux 0xaa00fdc0 ec_transaction +EXPORT_SYMBOL vmlinux 0xaa0b83c3 inet_twsk_deschedule_put EXPORT_SYMBOL vmlinux 0xaa0c318b vscnprintf EXPORT_SYMBOL vmlinux 0xaa19e4aa _kstrtol -EXPORT_SYMBOL vmlinux 0xaa251bab bioset_init_from_src +EXPORT_SYMBOL vmlinux 0xaa2eae91 netdev_set_num_tc EXPORT_SYMBOL vmlinux 0xaa341905 acpi_bios_exception -EXPORT_SYMBOL vmlinux 0xaa386b40 _copy_to_iter +EXPORT_SYMBOL vmlinux 0xaa35a4f2 register_cdrom +EXPORT_SYMBOL vmlinux 0xaa366274 twl6040_power EXPORT_SYMBOL vmlinux 0xaa44a707 cpumask_next +EXPORT_SYMBOL vmlinux 0xaa46449a backlight_device_unregister +EXPORT_SYMBOL vmlinux 0xaa508a05 t10_pi_type3_ip EXPORT_SYMBOL vmlinux 0xaa6f23ad rfkill_get_led_trigger_name -EXPORT_SYMBOL vmlinux 0xaa838e14 clk_bulk_get_all -EXPORT_SYMBOL vmlinux 0xaa864bdc xfrm6_rcv_tnl +EXPORT_SYMBOL vmlinux 0xaaa026fb param_set_uint EXPORT_SYMBOL vmlinux 0xaaa4b9bc hchacha_block_generic -EXPORT_SYMBOL vmlinux 0xaac8fa7e eth_gro_complete +EXPORT_SYMBOL vmlinux 0xaaa585d3 bpf_prog_get_type_path +EXPORT_SYMBOL vmlinux 0xaaadf703 udp_lib_rehash +EXPORT_SYMBOL vmlinux 0xaabb51b9 simple_transaction_read +EXPORT_SYMBOL vmlinux 0xaac85222 md_bitmap_start_sync 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 0xaadabb63 find_inode_by_ino_rcu EXPORT_SYMBOL vmlinux 0xaae8ab0e acpi_bus_power_manageable -EXPORT_SYMBOL vmlinux 0xaaf33e8c blk_queue_alignment_offset -EXPORT_SYMBOL vmlinux 0xaafc4a36 tcf_idr_release EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp -EXPORT_SYMBOL vmlinux 0xab04292e scsi_device_get -EXPORT_SYMBOL vmlinux 0xab053141 fs_context_for_mount -EXPORT_SYMBOL vmlinux 0xab22b615 __vfs_removexattr -EXPORT_SYMBOL vmlinux 0xab24ee29 unregister_qdisc -EXPORT_SYMBOL vmlinux 0xab32e5aa dma_mmap_attrs +EXPORT_SYMBOL vmlinux 0xab16ff6a rproc_report_crash +EXPORT_SYMBOL vmlinux 0xab1aaf48 clk_bulk_get EXPORT_SYMBOL vmlinux 0xab3697e4 irq_poll_init -EXPORT_SYMBOL vmlinux 0xab38e329 inet_getname -EXPORT_SYMBOL vmlinux 0xab3a1897 remap_pfn_range +EXPORT_SYMBOL vmlinux 0xab3ae5f0 fwnode_get_phy_id EXPORT_SYMBOL vmlinux 0xab3b75ea vme_dma_pattern_attribute -EXPORT_SYMBOL vmlinux 0xab4edf50 __SCK__tp_func_kmalloc +EXPORT_SYMBOL vmlinux 0xab472892 pci_scan_root_bus_bridge +EXPORT_SYMBOL vmlinux 0xab4e3567 netdev_change_features +EXPORT_SYMBOL vmlinux 0xab58b515 __mdiobus_register EXPORT_SYMBOL vmlinux 0xab600421 probe_irq_off EXPORT_SYMBOL vmlinux 0xab63baa5 unregister_inetaddr_validator_notifier EXPORT_SYMBOL vmlinux 0xab65ed80 set_memory_uc EXPORT_SYMBOL vmlinux 0xab67a0ac dql_init -EXPORT_SYMBOL vmlinux 0xab739f37 dquot_quota_sync +EXPORT_SYMBOL vmlinux 0xab6c9cdf kthread_create_on_node +EXPORT_SYMBOL vmlinux 0xab6d5b3b hex_to_bin +EXPORT_SYMBOL vmlinux 0xab7572be ptp_clock_register EXPORT_SYMBOL vmlinux 0xab781570 fb_get_options -EXPORT_SYMBOL vmlinux 0xaba5c1ec da903x_query_status -EXPORT_SYMBOL vmlinux 0xabd5d23e simple_empty -EXPORT_SYMBOL vmlinux 0xabdcd209 read_cache_page_gfp -EXPORT_SYMBOL vmlinux 0xabe24615 pci_enable_atomic_ops_to_root +EXPORT_SYMBOL vmlinux 0xab8758c0 generic_file_mmap +EXPORT_SYMBOL vmlinux 0xab8a66f4 ihold +EXPORT_SYMBOL vmlinux 0xab992ada input_open_device +EXPORT_SYMBOL vmlinux 0xab9b74ee __dquot_transfer +EXPORT_SYMBOL vmlinux 0xabc71e47 __ip_mc_dec_group +EXPORT_SYMBOL vmlinux 0xabd11fef __traceiter_mmap_lock_released +EXPORT_SYMBOL vmlinux 0xabd94e6d nd_device_notify +EXPORT_SYMBOL vmlinux 0xabe07f45 __nd_driver_register EXPORT_SYMBOL vmlinux 0xabeb9438 skb_flow_dissector_init EXPORT_SYMBOL vmlinux 0xabf32f29 utf16s_to_utf8s -EXPORT_SYMBOL vmlinux 0xabff382b ww_mutex_lock_interruptible -EXPORT_SYMBOL vmlinux 0xac01f9fe dev_getfirstbyhwtype -EXPORT_SYMBOL vmlinux 0xac130b66 page_pool_update_nid -EXPORT_SYMBOL vmlinux 0xac16e5af mfd_cell_disable +EXPORT_SYMBOL vmlinux 0xabf361df lookup_one_len_unlocked +EXPORT_SYMBOL vmlinux 0xac169542 register_console EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier +EXPORT_SYMBOL vmlinux 0xac21b27a vlan_vids_del_by_dev +EXPORT_SYMBOL vmlinux 0xac245465 flow_block_cb_setup_simple EXPORT_SYMBOL vmlinux 0xac3201b0 udp_flow_hashrnd -EXPORT_SYMBOL vmlinux 0xac3fdcdd input_set_min_poll_interval +EXPORT_SYMBOL vmlinux 0xac372ab8 jbd2_fc_release_bufs +EXPORT_SYMBOL vmlinux 0xac3993c7 tty_name EXPORT_SYMBOL vmlinux 0xac537ac2 percpu_counter_destroy EXPORT_SYMBOL vmlinux 0xac5fcec0 in4_pton -EXPORT_SYMBOL vmlinux 0xac70207e pci_get_subsys +EXPORT_SYMBOL vmlinux 0xac63a9f0 tty_do_resize +EXPORT_SYMBOL vmlinux 0xac80faec is_nd_pfn EXPORT_SYMBOL vmlinux 0xac8597d5 mb_cache_entry_get -EXPORT_SYMBOL vmlinux 0xac9eba5c add_to_page_cache_locked -EXPORT_SYMBOL vmlinux 0xaca6ab90 pid_task +EXPORT_SYMBOL vmlinux 0xaca93ff7 phy_support_sym_pause EXPORT_SYMBOL vmlinux 0xacaa4c72 dma_fence_match_context EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu -EXPORT_SYMBOL vmlinux 0xacac2dc2 key_instantiate_and_link -EXPORT_SYMBOL vmlinux 0xaccfbd38 tcp_md5_do_del +EXPORT_SYMBOL vmlinux 0xacb1829a sock_no_listen +EXPORT_SYMBOL vmlinux 0xacbce0d7 vc_cons +EXPORT_SYMBOL vmlinux 0xacc537ff md_bitmap_cond_end_sync +EXPORT_SYMBOL vmlinux 0xacd3dc87 tcp_prot EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache EXPORT_SYMBOL vmlinux 0xacddd806 ptp_get_vclocks_index -EXPORT_SYMBOL vmlinux 0xace980b0 page_mapped +EXPORT_SYMBOL vmlinux 0xace7c0a7 phy_ethtool_ksettings_set EXPORT_SYMBOL vmlinux 0xacea8173 acpi_debug_print -EXPORT_SYMBOL vmlinux 0xacf3f291 mmc_gpio_set_cd_wake EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup EXPORT_SYMBOL vmlinux 0xacf649bf audit_log_task_info EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex EXPORT_SYMBOL vmlinux 0xad1036a2 amd_iommu_activate_guest_mode -EXPORT_SYMBOL vmlinux 0xad1e4ef5 vmap -EXPORT_SYMBOL vmlinux 0xad288cc8 init_special_inode -EXPORT_SYMBOL vmlinux 0xad28a8c7 input_mt_assign_slots +EXPORT_SYMBOL vmlinux 0xad1850f3 free_task EXPORT_SYMBOL vmlinux 0xad357133 __traceiter_kmalloc_node -EXPORT_SYMBOL vmlinux 0xad387d7d agp_allocate_memory -EXPORT_SYMBOL vmlinux 0xad50c9ea file_ns_capable EXPORT_SYMBOL vmlinux 0xad536c91 x86_cpu_to_acpiid +EXPORT_SYMBOL vmlinux 0xad5c99cf del_gendisk +EXPORT_SYMBOL vmlinux 0xad6840fb super_setup_bdi EXPORT_SYMBOL vmlinux 0xad6ba40e radix_tree_tag_get -EXPORT_SYMBOL vmlinux 0xad6f5e6b __wait_on_buffer EXPORT_SYMBOL vmlinux 0xad73041f autoremove_wake_function -EXPORT_SYMBOL vmlinux 0xad77fba9 ip_local_deliver EXPORT_SYMBOL vmlinux 0xad9901ae bit_waitqueue EXPORT_SYMBOL vmlinux 0xad995dac netdev_stats_to_stats64 EXPORT_SYMBOL vmlinux 0xada31e57 gen_pool_dma_alloc_align -EXPORT_SYMBOL vmlinux 0xadaceab3 xfrm_user_policy -EXPORT_SYMBOL vmlinux 0xadaf76a8 complete_request_key -EXPORT_SYMBOL vmlinux 0xadb52fe2 __i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0xadab2d73 blk_mq_delay_kick_requeue_list +EXPORT_SYMBOL vmlinux 0xadaf733b tcp_filter +EXPORT_SYMBOL vmlinux 0xadb94b89 unpin_user_page EXPORT_SYMBOL vmlinux 0xadbeed61 mipi_dsi_packet_format_is_long EXPORT_SYMBOL vmlinux 0xadc044b7 vfio_set_irqs_validate_and_prepare +EXPORT_SYMBOL vmlinux 0xadc14fd0 d_set_d_op +EXPORT_SYMBOL vmlinux 0xadc70f7b dst_cow_metrics_generic EXPORT_SYMBOL vmlinux 0xadcba50b ZSTD_findFrameCompressedSize EXPORT_SYMBOL vmlinux 0xadd139d4 rfs_needed -EXPORT_SYMBOL vmlinux 0xadd3e536 md_integrity_register +EXPORT_SYMBOL vmlinux 0xadd1431d page_mapped +EXPORT_SYMBOL vmlinux 0xade33262 pm860x_page_bulk_read +EXPORT_SYMBOL vmlinux 0xadefaddb unregister_console EXPORT_SYMBOL vmlinux 0xadfdfcef __bitmap_andnot EXPORT_SYMBOL vmlinux 0xae04012c __vmalloc -EXPORT_SYMBOL vmlinux 0xae0fecb2 ipv6_mc_check_mld -EXPORT_SYMBOL vmlinux 0xae18fee0 input_mt_destroy_slots -EXPORT_SYMBOL vmlinux 0xae2656e6 fscrypt_fname_disk_to_usr -EXPORT_SYMBOL vmlinux 0xae2c1360 page_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0xae243cde filemap_check_errors +EXPORT_SYMBOL vmlinux 0xae2d69d1 shmem_aops +EXPORT_SYMBOL vmlinux 0xae3010c7 pci_bus_claim_resources EXPORT_SYMBOL vmlinux 0xae316c11 icmpv6_err_convert +EXPORT_SYMBOL vmlinux 0xae323df4 bio_free_pages +EXPORT_SYMBOL vmlinux 0xae327b2e __SCK__tp_func_spi_transfer_stop +EXPORT_SYMBOL vmlinux 0xae3ff1c4 input_enable_softrepeat +EXPORT_SYMBOL vmlinux 0xae49a199 lock_page_memcg EXPORT_SYMBOL vmlinux 0xae5a04bb acpi_evaluate_dsm -EXPORT_SYMBOL vmlinux 0xae7b648f scsi_ioctl -EXPORT_SYMBOL vmlinux 0xae8cb553 __nlmsg_put -EXPORT_SYMBOL vmlinux 0xaea3fc36 jbd2_log_start_commit +EXPORT_SYMBOL vmlinux 0xae801c9b backlight_device_set_brightness +EXPORT_SYMBOL vmlinux 0xae883996 sock_alloc_send_pskb +EXPORT_SYMBOL vmlinux 0xae96fbe0 skb_free_datagram +EXPORT_SYMBOL vmlinux 0xaea9db76 sdev_disable_disk_events EXPORT_SYMBOL vmlinux 0xaeac049a generate_random_guid EXPORT_SYMBOL vmlinux 0xaeb082ad _raw_read_unlock_bh +EXPORT_SYMBOL vmlinux 0xaeba09ab pcix_get_max_mmrbc +EXPORT_SYMBOL vmlinux 0xaeba17b2 tcf_action_update_stats +EXPORT_SYMBOL vmlinux 0xaebba036 mr_table_dump EXPORT_SYMBOL vmlinux 0xaebd12f0 acpi_get_name -EXPORT_SYMBOL vmlinux 0xaec6529e tcf_em_tree_destroy -EXPORT_SYMBOL vmlinux 0xaecaa908 security_lock_kernel_down -EXPORT_SYMBOL vmlinux 0xaee3a072 genphy_read_mmd_unsupported -EXPORT_SYMBOL vmlinux 0xaf142edf fib6_info_hw_flags_set -EXPORT_SYMBOL vmlinux 0xaf1d6db6 simple_transaction_set +EXPORT_SYMBOL vmlinux 0xaee931f3 ip_sock_set_tos +EXPORT_SYMBOL vmlinux 0xaf1f736c csum_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0xaf23f04f mipi_dsi_dcs_get_display_brightness +EXPORT_SYMBOL vmlinux 0xaf2da7ce dump_skip EXPORT_SYMBOL vmlinux 0xaf354bbe cpu_tss_rw +EXPORT_SYMBOL vmlinux 0xaf369bf8 dev_get_port_parent_id +EXPORT_SYMBOL vmlinux 0xaf37b2c1 dm_table_get_mode +EXPORT_SYMBOL vmlinux 0xaf38b07f i2c_smbus_write_word_data EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level -EXPORT_SYMBOL vmlinux 0xaf4c6064 bio_integrity_prep -EXPORT_SYMBOL vmlinux 0xaf538953 __tracepoint_dma_fence_enable_signal -EXPORT_SYMBOL vmlinux 0xaf570036 netpoll_send_udp -EXPORT_SYMBOL vmlinux 0xaf6132a4 write_one_page -EXPORT_SYMBOL vmlinux 0xaf71e75c proc_mkdir +EXPORT_SYMBOL vmlinux 0xaf5757d6 param_set_hexint +EXPORT_SYMBOL vmlinux 0xaf80382f get_tree_single_reconf +EXPORT_SYMBOL vmlinux 0xaf8321b8 param_ops_charp +EXPORT_SYMBOL vmlinux 0xaf8e5a00 tcp_getsockopt +EXPORT_SYMBOL vmlinux 0xaf925600 flow_rule_match_icmp +EXPORT_SYMBOL vmlinux 0xafa59214 genphy_setup_forced +EXPORT_SYMBOL vmlinux 0xafac005d genphy_update_link +EXPORT_SYMBOL vmlinux 0xafaded6d netdev_master_upper_dev_get EXPORT_SYMBOL vmlinux 0xafb864c1 refcount_dec_and_lock_irqsave -EXPORT_SYMBOL vmlinux 0xafbe7d4d generic_fillattr EXPORT_SYMBOL vmlinux 0xafc08054 dotdot_name +EXPORT_SYMBOL vmlinux 0xafc8142e configfs_unregister_group +EXPORT_SYMBOL vmlinux 0xafcac0fb netif_device_attach EXPORT_SYMBOL vmlinux 0xafd5ff2c amd_iommu_v2_supported +EXPORT_SYMBOL vmlinux 0xafd68e98 netdev_set_tc_queue EXPORT_SYMBOL vmlinux 0xafd744c6 __x86_indirect_thunk_rbp -EXPORT_SYMBOL vmlinux 0xafe2d77e __sk_mem_reclaim -EXPORT_SYMBOL vmlinux 0xaffe8a45 neigh_ifdown -EXPORT_SYMBOL vmlinux 0xb007b283 udp_gro_complete -EXPORT_SYMBOL vmlinux 0xb00fb1cc blk_queue_io_min -EXPORT_SYMBOL vmlinux 0xb014b638 xp_dma_sync_for_cpu_slow +EXPORT_SYMBOL vmlinux 0xafdca1af unregister_netdevice_queue +EXPORT_SYMBOL vmlinux 0xaff7c9d9 zap_page_range EXPORT_SYMBOL vmlinux 0xb01bebf9 xfrm_get_acqseq -EXPORT_SYMBOL vmlinux 0xb02c3afc input_set_keycode +EXPORT_SYMBOL vmlinux 0xb02aa907 pm_vt_switch_unregister EXPORT_SYMBOL vmlinux 0xb02df2d6 __traceiter_rdpmc -EXPORT_SYMBOL vmlinux 0xb0437259 phy_set_sym_pause +EXPORT_SYMBOL vmlinux 0xb03f3018 xfrm_state_alloc EXPORT_SYMBOL vmlinux 0xb04a43ad __xa_alloc_cyclic -EXPORT_SYMBOL vmlinux 0xb04ce8b2 amd_iommu_domain_set_gcr3 +EXPORT_SYMBOL vmlinux 0xb04ffb61 dm_table_get_md +EXPORT_SYMBOL vmlinux 0xb05b909a take_dentry_name_snapshot EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max -EXPORT_SYMBOL vmlinux 0xb0653996 device_add_disk -EXPORT_SYMBOL vmlinux 0xb06adf83 devfreq_monitor_resume -EXPORT_SYMBOL vmlinux 0xb06d5ac0 flow_rule_match_enc_ipv6_addrs -EXPORT_SYMBOL vmlinux 0xb0747f49 skb_set_owner_w -EXPORT_SYMBOL vmlinux 0xb085b3fc jbd2_wait_inode_data -EXPORT_SYMBOL vmlinux 0xb08c570d __test_set_page_writeback -EXPORT_SYMBOL vmlinux 0xb09d1e5b twl6040_power +EXPORT_SYMBOL vmlinux 0xb06703b9 param_ops_hexint +EXPORT_SYMBOL vmlinux 0xb06dfbdd pps_register_source +EXPORT_SYMBOL vmlinux 0xb075722d ilookup5_nowait +EXPORT_SYMBOL vmlinux 0xb08dc265 skb_orphan_partial +EXPORT_SYMBOL vmlinux 0xb0916ea8 unregister_binfmt EXPORT_SYMBOL vmlinux 0xb0a0da0c rational_best_approximation -EXPORT_SYMBOL vmlinux 0xb0be5f58 napi_consume_skb +EXPORT_SYMBOL vmlinux 0xb0b68d41 inet_add_protocol +EXPORT_SYMBOL vmlinux 0xb0b7f792 reuseport_select_sock +EXPORT_SYMBOL vmlinux 0xb0bcde4f pskb_extract EXPORT_SYMBOL vmlinux 0xb0c5e247 lockref_put_return +EXPORT_SYMBOL vmlinux 0xb0d0e7e7 d_obtain_root +EXPORT_SYMBOL vmlinux 0xb0d60f81 devm_request_resource EXPORT_SYMBOL vmlinux 0xb0e10781 get_option EXPORT_SYMBOL vmlinux 0xb0e602eb memmove +EXPORT_SYMBOL vmlinux 0xb0ecfd6b pci_stop_and_remove_bus_device EXPORT_SYMBOL vmlinux 0xb0f389ee utf8_normalize -EXPORT_SYMBOL vmlinux 0xb103937f xfrm_alloc_spi +EXPORT_SYMBOL vmlinux 0xb0f4e4d3 tcf_block_netif_keep_dst +EXPORT_SYMBOL vmlinux 0xb0fd07c3 xfrm_dev_state_flush +EXPORT_SYMBOL vmlinux 0xb109f1cc poll_initwait +EXPORT_SYMBOL vmlinux 0xb10df160 devm_devfreq_add_device EXPORT_SYMBOL vmlinux 0xb10e7df4 __kfifo_dma_in_prepare +EXPORT_SYMBOL vmlinux 0xb11cb947 invalidate_bdev EXPORT_SYMBOL vmlinux 0xb121390a probe_irq_on -EXPORT_SYMBOL vmlinux 0xb12a35a9 ppp_output_wakeup +EXPORT_SYMBOL vmlinux 0xb12c175c skb_copy_and_hash_datagram_iter EXPORT_SYMBOL vmlinux 0xb12cbacb fb_unregister_client +EXPORT_SYMBOL vmlinux 0xb1307368 scsi_free_host_dev EXPORT_SYMBOL vmlinux 0xb1342cdb _raw_read_lock_irqsave -EXPORT_SYMBOL vmlinux 0xb13b3457 xfrm_policy_delete -EXPORT_SYMBOL vmlinux 0xb144469d simple_write_begin -EXPORT_SYMBOL vmlinux 0xb14464ae pci_request_region EXPORT_SYMBOL vmlinux 0xb14ab1ef hdmi_audio_infoframe_init EXPORT_SYMBOL vmlinux 0xb14fc46a find_next_clump8 -EXPORT_SYMBOL vmlinux 0xb153b0d6 locks_delete_block -EXPORT_SYMBOL vmlinux 0xb19065c3 i2c_smbus_read_i2c_block_data_or_emulated -EXPORT_SYMBOL vmlinux 0xb1967bcf vlan_dev_real_dev +EXPORT_SYMBOL vmlinux 0xb15b93df md_reload_sb +EXPORT_SYMBOL vmlinux 0xb175123f __quota_error +EXPORT_SYMBOL vmlinux 0xb17b741d genl_register_family +EXPORT_SYMBOL vmlinux 0xb18c05a6 pci_scan_bus EXPORT_SYMBOL vmlinux 0xb19a5453 __per_cpu_offset -EXPORT_SYMBOL vmlinux 0xb1a9ddbd bio_devname -EXPORT_SYMBOL vmlinux 0xb1bd3fff inode_init_once +EXPORT_SYMBOL vmlinux 0xb1a17f65 __skb_ext_del +EXPORT_SYMBOL vmlinux 0xb1b2b1de amd_iommu_device_info +EXPORT_SYMBOL vmlinux 0xb1be5a8c rproc_remove_subdev EXPORT_SYMBOL vmlinux 0xb1c3a01a oops_in_progress -EXPORT_SYMBOL vmlinux 0xb1d195ed inet_frag_pull_head EXPORT_SYMBOL vmlinux 0xb1d3a15c blk_finish_plug EXPORT_SYMBOL vmlinux 0xb1ddf995 jiffies_64_to_clock_t -EXPORT_SYMBOL vmlinux 0xb1f32180 netdev_master_upper_dev_link -EXPORT_SYMBOL vmlinux 0xb200d352 mdiobus_setup_mdiodev_from_board_info -EXPORT_SYMBOL vmlinux 0xb2119de3 unix_attach_fds +EXPORT_SYMBOL vmlinux 0xb1e92497 ppp_input_error +EXPORT_SYMBOL vmlinux 0xb1f5f235 _dev_crit +EXPORT_SYMBOL vmlinux 0xb201ec34 scsi_dma_unmap EXPORT_SYMBOL vmlinux 0xb219d56c wbinvd_on_cpu -EXPORT_SYMBOL vmlinux 0xb221ecd5 migrate_page -EXPORT_SYMBOL vmlinux 0xb2277429 user_revoke -EXPORT_SYMBOL vmlinux 0xb22bf493 follow_down_one +EXPORT_SYMBOL vmlinux 0xb226e891 md_finish_reshape EXPORT_SYMBOL vmlinux 0xb22e16d5 radix_tree_maybe_preload +EXPORT_SYMBOL vmlinux 0xb22efb20 sock_i_uid EXPORT_SYMBOL vmlinux 0xb23027c1 kstrtos16_from_user EXPORT_SYMBOL vmlinux 0xb2338d81 __x86_indirect_thunk_rsp -EXPORT_SYMBOL vmlinux 0xb2433b1f put_ipc_ns -EXPORT_SYMBOL vmlinux 0xb2485c1e migrate_vma_pages +EXPORT_SYMBOL vmlinux 0xb233ac22 iov_iter_get_pages_alloc +EXPORT_SYMBOL vmlinux 0xb249a24c __starget_for_each_device EXPORT_SYMBOL vmlinux 0xb2601486 __SCT__tp_func_dma_fence_enable_signal -EXPORT_SYMBOL vmlinux 0xb28928c1 skb_copy_header -EXPORT_SYMBOL vmlinux 0xb28beced ilookup5 -EXPORT_SYMBOL vmlinux 0xb2a5d05e d_find_any_alias -EXPORT_SYMBOL vmlinux 0xb2a77d80 rio_query_mport -EXPORT_SYMBOL vmlinux 0xb2ae6919 rproc_detach +EXPORT_SYMBOL vmlinux 0xb2781d12 dma_unmap_page_attrs +EXPORT_SYMBOL vmlinux 0xb2846702 unlock_page_memcg +EXPORT_SYMBOL vmlinux 0xb297da53 phy_attach_direct +EXPORT_SYMBOL vmlinux 0xb2b060d7 inet6_offloads +EXPORT_SYMBOL vmlinux 0xb2b43b86 vfs_clone_file_range EXPORT_SYMBOL vmlinux 0xb2bcb088 acpi_current_gpe_count EXPORT_SYMBOL vmlinux 0xb2c96edc convert_art_ns_to_tsc -EXPORT_SYMBOL vmlinux 0xb2d2abe0 phy_attached_print -EXPORT_SYMBOL vmlinux 0xb2de2a8c inet_frag_reasm_finish EXPORT_SYMBOL vmlinux 0xb2dfdf3c kset_register -EXPORT_SYMBOL vmlinux 0xb2f0d492 amd_iommu_flush_tlb -EXPORT_SYMBOL vmlinux 0xb2f2e8c5 vm_mmap EXPORT_SYMBOL vmlinux 0xb2f35c6a xxh64 EXPORT_SYMBOL vmlinux 0xb2f579c7 __cpuhp_remove_state_cpuslocked EXPORT_SYMBOL vmlinux 0xb2f74fb6 intel_gmch_remove EXPORT_SYMBOL vmlinux 0xb2fabf63 efi EXPORT_SYMBOL vmlinux 0xb2fcb56d queue_delayed_work_on EXPORT_SYMBOL vmlinux 0xb2fd5ceb __put_user_4 +EXPORT_SYMBOL vmlinux 0xb2fe07f7 mipi_dsi_detach EXPORT_SYMBOL vmlinux 0xb308c97d wait_woken EXPORT_SYMBOL vmlinux 0xb30b9822 vme_master_set +EXPORT_SYMBOL vmlinux 0xb31a8a49 fixed_size_llseek EXPORT_SYMBOL vmlinux 0xb320cc0e sg_init_one EXPORT_SYMBOL vmlinux 0xb3258f79 __ubsan_handle_type_mismatch_v1 EXPORT_SYMBOL vmlinux 0xb32a5973 acpi_ut_status_exit -EXPORT_SYMBOL vmlinux 0xb33f7157 __phy_read_mmd -EXPORT_SYMBOL vmlinux 0xb3485526 __inode_sub_bytes -EXPORT_SYMBOL vmlinux 0xb34c4191 scsi_register_interface -EXPORT_SYMBOL vmlinux 0xb34d820f __SCK__tp_func_read_msr -EXPORT_SYMBOL vmlinux 0xb34e8b6d tcf_get_next_proto -EXPORT_SYMBOL vmlinux 0xb35eea16 forget_all_cached_acls -EXPORT_SYMBOL vmlinux 0xb3618da9 d_path -EXPORT_SYMBOL vmlinux 0xb361ddb3 input_set_max_poll_interval +EXPORT_SYMBOL vmlinux 0xb33bbfe2 scsi_target_quiesce +EXPORT_SYMBOL vmlinux 0xb356dd8b mmc_cqe_start_req +EXPORT_SYMBOL vmlinux 0xb365acd2 console_stop EXPORT_SYMBOL vmlinux 0xb3687850 out_of_line_wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0xb36be830 lru_cache_add +EXPORT_SYMBOL vmlinux 0xb36c84ad flow_rule_match_ports EXPORT_SYMBOL vmlinux 0xb3863a67 acpi_set_gpe_wake_mask -EXPORT_SYMBOL vmlinux 0xb395e05f dma_free_attrs -EXPORT_SYMBOL vmlinux 0xb39e72c5 tcf_qevent_destroy +EXPORT_SYMBOL vmlinux 0xb39c86c8 open_exec +EXPORT_SYMBOL vmlinux 0xb3a1dfd1 phy_device_register EXPORT_SYMBOL vmlinux 0xb3a2dfdf nmi_panic -EXPORT_SYMBOL vmlinux 0xb3aaefc7 xfrm4_rcv_encap EXPORT_SYMBOL vmlinux 0xb3bd68cc security_secmark_relabel_packet -EXPORT_SYMBOL vmlinux 0xb3c182c7 __devm_release_region +EXPORT_SYMBOL vmlinux 0xb3c8c5a3 sdev_enable_disk_events +EXPORT_SYMBOL vmlinux 0xb3c97566 napi_build_skb EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string -EXPORT_SYMBOL vmlinux 0xb3e77ec9 param_set_long +EXPORT_SYMBOL vmlinux 0xb3d71182 pin_user_pages_locked +EXPORT_SYMBOL vmlinux 0xb3e8089c md_wait_for_blocked_rdev EXPORT_SYMBOL vmlinux 0xb3f49446 kstrtos8_from_user EXPORT_SYMBOL vmlinux 0xb3f548ad kmemdup_nul +EXPORT_SYMBOL vmlinux 0xb3f60218 mipi_dsi_dcs_set_display_brightness EXPORT_SYMBOL vmlinux 0xb3f7646e kthread_should_stop -EXPORT_SYMBOL vmlinux 0xb3f9c2a0 ps2_end_command -EXPORT_SYMBOL vmlinux 0xb3f9e0ab security_locked_down EXPORT_SYMBOL vmlinux 0xb4043948 acpi_execute_simple_method -EXPORT_SYMBOL vmlinux 0xb4088426 mipi_dsi_generic_read -EXPORT_SYMBOL vmlinux 0xb40b5ca4 invalidate_inode_buffers +EXPORT_SYMBOL vmlinux 0xb405092f configfs_remove_default_groups +EXPORT_SYMBOL vmlinux 0xb407ab15 ip6tun_encaps +EXPORT_SYMBOL vmlinux 0xb4129a4d __tracepoint_kmalloc_node +EXPORT_SYMBOL vmlinux 0xb4159e70 __vfs_getxattr EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked -EXPORT_SYMBOL vmlinux 0xb430e114 kmem_cache_alloc_node_trace -EXPORT_SYMBOL vmlinux 0xb4381e07 mmc_gpiod_request_cd -EXPORT_SYMBOL vmlinux 0xb44315e8 scsi_device_put -EXPORT_SYMBOL vmlinux 0xb447b05e skb_abort_seq_read -EXPORT_SYMBOL vmlinux 0xb4520ae1 mmc_calc_max_discard +EXPORT_SYMBOL vmlinux 0xb4247c65 nf_getsockopt +EXPORT_SYMBOL vmlinux 0xb431fb2d inet_csk_destroy_sock EXPORT_SYMBOL vmlinux 0xb4577003 acpi_dev_present -EXPORT_SYMBOL vmlinux 0xb474b8e4 rproc_coredump_set_elf_info +EXPORT_SYMBOL vmlinux 0xb45abc69 amd_iommu_flush_tlb +EXPORT_SYMBOL vmlinux 0xb46281d1 netpoll_print_options +EXPORT_SYMBOL vmlinux 0xb4698824 pnp_release_card_device EXPORT_SYMBOL vmlinux 0xb47cca30 csum_ipv6_magic -EXPORT_SYMBOL vmlinux 0xb48093bb tcp_md5_do_add +EXPORT_SYMBOL vmlinux 0xb47e5e5b dmaenginem_async_device_register EXPORT_SYMBOL vmlinux 0xb48d4d22 security_sb_eat_lsm_opts -EXPORT_SYMBOL vmlinux 0xb4bbcdfd generic_fill_statx_attr -EXPORT_SYMBOL vmlinux 0xb4c20505 vga_switcheroo_get_client_state -EXPORT_SYMBOL vmlinux 0xb4cd4476 sock_set_priority -EXPORT_SYMBOL vmlinux 0xb4dc3e18 cfb_fillrect -EXPORT_SYMBOL vmlinux 0xb4df6f09 dm_kcopyd_copy -EXPORT_SYMBOL vmlinux 0xb4e44d3f kfree_skb +EXPORT_SYMBOL vmlinux 0xb4bec646 dquot_set_dqblk +EXPORT_SYMBOL vmlinux 0xb4c2c266 kill_pid +EXPORT_SYMBOL vmlinux 0xb4c6ceba dst_destroy +EXPORT_SYMBOL vmlinux 0xb4cc4da4 simple_open +EXPORT_SYMBOL vmlinux 0xb4da3c7d set_pages_array_uc EXPORT_SYMBOL vmlinux 0xb4f13d2a abort -EXPORT_SYMBOL vmlinux 0xb5020f79 devm_release_resource -EXPORT_SYMBOL vmlinux 0xb50e772b sk_stream_wait_connect +EXPORT_SYMBOL vmlinux 0xb50bc733 ppp_output_wakeup +EXPORT_SYMBOL vmlinux 0xb50e02e8 copy_page_from_iter_atomic +EXPORT_SYMBOL vmlinux 0xb51cace1 xfrm_state_update EXPORT_SYMBOL vmlinux 0xb52ee8be intel_gtt_clear_range +EXPORT_SYMBOL vmlinux 0xb5342ed3 dqput +EXPORT_SYMBOL vmlinux 0xb536753d block_read_full_page EXPORT_SYMBOL vmlinux 0xb53f2810 tcp_sockets_allocated -EXPORT_SYMBOL vmlinux 0xb54660f3 pci_bus_write_config_byte -EXPORT_SYMBOL vmlinux 0xb55ad6e0 find_get_pages_contig -EXPORT_SYMBOL vmlinux 0xb56e321f vme_bus_error_handler +EXPORT_SYMBOL vmlinux 0xb541dd8e inet6_getname +EXPORT_SYMBOL vmlinux 0xb54a5321 vm_insert_pages +EXPORT_SYMBOL vmlinux 0xb5653f88 ps2_init EXPORT_SYMBOL vmlinux 0xb57343c2 frontswap_shrink +EXPORT_SYMBOL vmlinux 0xb579d7ca eth_header_parse_protocol +EXPORT_SYMBOL vmlinux 0xb57ac929 qdisc_watchdog_schedule_range_ns EXPORT_SYMBOL vmlinux 0xb58aeaab kernel_cpustat +EXPORT_SYMBOL vmlinux 0xb5a0a3d7 phy_ethtool_set_eee EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy EXPORT_SYMBOL vmlinux 0xb5ab892d uv_undefined EXPORT_SYMBOL vmlinux 0xb5b63711 fileattr_fill_xflags -EXPORT_SYMBOL vmlinux 0xb5b7fa53 rtnl_kfree_skbs -EXPORT_SYMBOL vmlinux 0xb5b9a586 end_page_writeback -EXPORT_SYMBOL vmlinux 0xb5bff520 seq_write -EXPORT_SYMBOL vmlinux 0xb5c53f68 phy_device_create EXPORT_SYMBOL vmlinux 0xb5e73116 flush_delayed_work -EXPORT_SYMBOL vmlinux 0xb5ec1559 dquot_alloc_inode -EXPORT_SYMBOL vmlinux 0xb6025b7a tty_port_alloc_xmit_buf -EXPORT_SYMBOL vmlinux 0xb60abc82 proc_symlink -EXPORT_SYMBOL vmlinux 0xb60ca92c scsi_report_device_reset -EXPORT_SYMBOL vmlinux 0xb617ca03 __inode_add_bytes +EXPORT_SYMBOL vmlinux 0xb5ea17c3 i2c_del_driver +EXPORT_SYMBOL vmlinux 0xb6012cff mmc_alloc_host EXPORT_SYMBOL vmlinux 0xb61d6fc2 down_read_interruptible -EXPORT_SYMBOL vmlinux 0xb6261909 skb_copy_and_hash_datagram_iter EXPORT_SYMBOL vmlinux 0xb633f115 irq_poll_enable -EXPORT_SYMBOL vmlinux 0xb63dac6e get_agp_version +EXPORT_SYMBOL vmlinux 0xb63f7bc1 vmf_insert_mixed +EXPORT_SYMBOL vmlinux 0xb64e2b4f mdiobus_scan EXPORT_SYMBOL vmlinux 0xb654ef65 acpi_os_read_port -EXPORT_SYMBOL vmlinux 0xb65bca9f dev_get_phys_port_name +EXPORT_SYMBOL vmlinux 0xb655a26c inet6_register_protosw +EXPORT_SYMBOL vmlinux 0xb666d5a3 __sk_receive_skb EXPORT_SYMBOL vmlinux 0xb674a534 acpi_unmap_cpu +EXPORT_SYMBOL vmlinux 0xb675f979 i2c_smbus_read_block_data EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt EXPORT_SYMBOL vmlinux 0xb67c9280 utf8cursor +EXPORT_SYMBOL vmlinux 0xb67ca50f dquot_quota_on_mount +EXPORT_SYMBOL vmlinux 0xb67e322c tcf_block_put EXPORT_SYMBOL vmlinux 0xb67fec0e uuid_parse -EXPORT_SYMBOL vmlinux 0xb68d8de9 irq_domain_set_info -EXPORT_SYMBOL vmlinux 0xb6921bd7 pci_resize_resource EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin -EXPORT_SYMBOL vmlinux 0xb69802e9 generic_update_time -EXPORT_SYMBOL vmlinux 0xb69b7209 framebuffer_release -EXPORT_SYMBOL vmlinux 0xb6aa8507 lru_cache_add +EXPORT_SYMBOL vmlinux 0xb69d6192 acpi_device_set_power +EXPORT_SYMBOL vmlinux 0xb6a87191 sget_fc +EXPORT_SYMBOL vmlinux 0xb6ac3e0b __break_lease EXPORT_SYMBOL vmlinux 0xb6acaa13 phy_sfp_detach -EXPORT_SYMBOL vmlinux 0xb6affb77 generic_file_open -EXPORT_SYMBOL vmlinux 0xb6b7c398 nexthop_bucket_set_hw_flags +EXPORT_SYMBOL vmlinux 0xb6cb78e1 sock_release EXPORT_SYMBOL vmlinux 0xb6cd5c4c kobject_init -EXPORT_SYMBOL vmlinux 0xb6cfb878 __cleancache_put_page -EXPORT_SYMBOL vmlinux 0xb6d5cb86 generic_writepages -EXPORT_SYMBOL vmlinux 0xb6d7cfb2 cdev_alloc -EXPORT_SYMBOL vmlinux 0xb6dbe3cb is_bad_inode +EXPORT_SYMBOL vmlinux 0xb6cecc44 xfrm_sad_getinfo +EXPORT_SYMBOL vmlinux 0xb6cf4090 __f_setown +EXPORT_SYMBOL vmlinux 0xb6df422e i2c_smbus_write_block_data EXPORT_SYMBOL vmlinux 0xb6e36ce2 psched_ratecfg_precompute -EXPORT_SYMBOL vmlinux 0xb6fd544a phy_ethtool_set_link_ksettings +EXPORT_SYMBOL vmlinux 0xb6efdbea __mdiobus_write EXPORT_SYMBOL vmlinux 0xb6fde909 close_fd +EXPORT_SYMBOL vmlinux 0xb70dd4da pcim_iomap_regions_request_all EXPORT_SYMBOL vmlinux 0xb71589f0 skip_spaces +EXPORT_SYMBOL vmlinux 0xb717a3ca nf_register_queue_handler EXPORT_SYMBOL vmlinux 0xb71ed69f __hw_addr_unsync +EXPORT_SYMBOL vmlinux 0xb72e0b6a tcf_qevent_destroy +EXPORT_SYMBOL vmlinux 0xb7302fe0 iptun_encaps EXPORT_SYMBOL vmlinux 0xb737b185 gen_pool_best_fit EXPORT_SYMBOL vmlinux 0xb7593ddc iosf_mbi_unregister_pmic_bus_access_notifier -EXPORT_SYMBOL vmlinux 0xb75f263e xfrm_policy_flush +EXPORT_SYMBOL vmlinux 0xb779cf53 __tracepoint_kmalloc +EXPORT_SYMBOL vmlinux 0xb7814477 netdev_port_same_parent_id EXPORT_SYMBOL vmlinux 0xb784154f utf8_casefold_hash +EXPORT_SYMBOL vmlinux 0xb78ad7cf dev_load EXPORT_SYMBOL vmlinux 0xb78debe3 LZ4_decompress_fast_usingDict -EXPORT_SYMBOL vmlinux 0xb7930e11 netdev_set_tc_queue -EXPORT_SYMBOL vmlinux 0xb79e1385 eth_header_parse_protocol +EXPORT_SYMBOL vmlinux 0xb792f963 put_ipc_ns +EXPORT_SYMBOL vmlinux 0xb7b6d82f audit_log EXPORT_SYMBOL vmlinux 0xb7c0f443 sort EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags -EXPORT_SYMBOL vmlinux 0xb7dab1f8 rproc_elf_sanity_check -EXPORT_SYMBOL vmlinux 0xb7e10c00 i2c_smbus_read_block_data -EXPORT_SYMBOL vmlinux 0xb80fd5d4 scsi_get_device_flags_keyed +EXPORT_SYMBOL vmlinux 0xb7d05a00 register_framebuffer +EXPORT_SYMBOL vmlinux 0xb7da0932 blk_queue_chunk_sectors +EXPORT_SYMBOL vmlinux 0xb7e6521d skb_copy_datagram_iter +EXPORT_SYMBOL vmlinux 0xb801951b register_key_type +EXPORT_SYMBOL vmlinux 0xb815bb95 pcie_print_link_status +EXPORT_SYMBOL vmlinux 0xb82f622a vme_unregister_driver EXPORT_SYMBOL vmlinux 0xb83129db ZSTD_decompressContinue -EXPORT_SYMBOL vmlinux 0xb840fe14 kern_path_create -EXPORT_SYMBOL vmlinux 0xb8640457 bio_init +EXPORT_SYMBOL vmlinux 0xb83d7b55 dma_map_page_attrs +EXPORT_SYMBOL vmlinux 0xb84270b7 nf_register_net_hooks +EXPORT_SYMBOL vmlinux 0xb86440f3 ip_options_rcv_srr EXPORT_SYMBOL vmlinux 0xb868ac5c register_sysrq_key EXPORT_SYMBOL vmlinux 0xb86f74c5 free_cpumask_var -EXPORT_SYMBOL vmlinux 0xb876891b skb_get_hash_perturb -EXPORT_SYMBOL vmlinux 0xb8893a09 filemap_range_has_page +EXPORT_SYMBOL vmlinux 0xb8738e68 dev_set_threaded +EXPORT_SYMBOL vmlinux 0xb88198d5 tcp_sync_mss EXPORT_SYMBOL vmlinux 0xb88fd035 set_groups -EXPORT_SYMBOL vmlinux 0xb8912900 __zerocopy_sg_from_iter -EXPORT_SYMBOL vmlinux 0xb8945dc3 udp_skb_destructor EXPORT_SYMBOL vmlinux 0xb89b6e6b guid_parse -EXPORT_SYMBOL vmlinux 0xb8a0e4cf __bread_gfp EXPORT_SYMBOL vmlinux 0xb8b043f2 kfree_link -EXPORT_SYMBOL vmlinux 0xb8b29ce3 forget_cached_acl EXPORT_SYMBOL vmlinux 0xb8b9f817 kmalloc_order_trace -EXPORT_SYMBOL vmlinux 0xb8c29806 clocksource_unregister +EXPORT_SYMBOL vmlinux 0xb8bbc9ab jbd2_journal_blocks_per_page +EXPORT_SYMBOL vmlinux 0xb8cb335f d_prune_aliases +EXPORT_SYMBOL vmlinux 0xb8db7d46 mark_info_dirty EXPORT_SYMBOL vmlinux 0xb8e7ce2c __put_user_8 -EXPORT_SYMBOL vmlinux 0xb9021525 vfs_mknod +EXPORT_SYMBOL vmlinux 0xb8f07155 netpoll_setup +EXPORT_SYMBOL vmlinux 0xb8f33f24 simple_empty EXPORT_SYMBOL vmlinux 0xb9056bb6 remove_conflicting_framebuffers EXPORT_SYMBOL vmlinux 0xb907513f unpoison_memory EXPORT_SYMBOL vmlinux 0xb911bb58 minmax_running_max -EXPORT_SYMBOL vmlinux 0xb9211a40 sock_no_sendmsg -EXPORT_SYMBOL vmlinux 0xb93557e4 bio_alloc_bioset +EXPORT_SYMBOL vmlinux 0xb915e83f netif_skb_features +EXPORT_SYMBOL vmlinux 0xb91e02dc kmem_cache_shrink +EXPORT_SYMBOL vmlinux 0xb9221cf8 pci_msi_vec_count +EXPORT_SYMBOL vmlinux 0xb922e99e gro_cells_init EXPORT_SYMBOL vmlinux 0xb94339c4 qdisc_put_stab +EXPORT_SYMBOL vmlinux 0xb946acff pci_write_config_word EXPORT_SYMBOL vmlinux 0xb9478d90 hdmi_drm_infoframe_unpack_only -EXPORT_SYMBOL vmlinux 0xb9493cde set_pages_array_wb +EXPORT_SYMBOL vmlinux 0xb95d0890 tcf_idr_search +EXPORT_SYMBOL vmlinux 0xb95e49ca tcf_exts_dump +EXPORT_SYMBOL vmlinux 0xb96b1905 __sk_queue_drop_skb EXPORT_SYMBOL vmlinux 0xb97220ff bitmap_parse -EXPORT_SYMBOL vmlinux 0xb974040f pci_enable_ptm -EXPORT_SYMBOL vmlinux 0xb97a780a iommu_put_dma_cookie +EXPORT_SYMBOL vmlinux 0xb979955e sk_stream_wait_connect EXPORT_SYMBOL vmlinux 0xb97f7045 acpi_install_gpe_handler -EXPORT_SYMBOL vmlinux 0xb9a8f36f setup_new_exec -EXPORT_SYMBOL vmlinux 0xb9adfa85 devm_nvmem_cell_put +EXPORT_SYMBOL vmlinux 0xb9a6d126 mmc_remove_host +EXPORT_SYMBOL vmlinux 0xb9add18c xfrm_register_type EXPORT_SYMBOL vmlinux 0xb9af1d0d __xa_clear_mark -EXPORT_SYMBOL vmlinux 0xb9c940d7 pci_bus_read_config_word -EXPORT_SYMBOL vmlinux 0xb9cc9398 __netlink_kernel_create -EXPORT_SYMBOL vmlinux 0xb9d37ee6 genphy_read_lpa +EXPORT_SYMBOL vmlinux 0xb9b2940c __register_chrdev +EXPORT_SYMBOL vmlinux 0xb9b3210d eth_platform_get_mac_address +EXPORT_SYMBOL vmlinux 0xb9b8cf17 udp_seq_next EXPORT_SYMBOL vmlinux 0xb9e276cf wrmsr_safe_regs_on_cpu EXPORT_SYMBOL vmlinux 0xb9e7429c memcpy_toio EXPORT_SYMBOL vmlinux 0xb9e8e2cc in6addr_sitelocal_allrouters -EXPORT_SYMBOL vmlinux 0xb9f4d461 tty_port_close_start +EXPORT_SYMBOL vmlinux 0xb9ebcff7 xfrm_find_acq_byseq +EXPORT_SYMBOL vmlinux 0xb9f94fb1 sock_create_lite +EXPORT_SYMBOL vmlinux 0xb9fbab28 netdev_lower_state_changed +EXPORT_SYMBOL vmlinux 0xba04fedd sock_no_shutdown EXPORT_SYMBOL vmlinux 0xba0676e2 vm_zone_stat -EXPORT_SYMBOL vmlinux 0xba0eac87 simple_transaction_release +EXPORT_SYMBOL vmlinux 0xba0b3464 __udp_disconnect EXPORT_SYMBOL vmlinux 0xba1008c8 __crc32c_le -EXPORT_SYMBOL vmlinux 0xba1b81bd pci_disable_msi -EXPORT_SYMBOL vmlinux 0xba202f35 unregister_mii_tstamp_controller -EXPORT_SYMBOL vmlinux 0xba25e6b3 pci_find_next_bus -EXPORT_SYMBOL vmlinux 0xba2a454a thermal_cdev_update -EXPORT_SYMBOL vmlinux 0xba31196d d_make_root -EXPORT_SYMBOL vmlinux 0xba33ea13 input_set_timestamp -EXPORT_SYMBOL vmlinux 0xba35ab59 qdisc_put -EXPORT_SYMBOL vmlinux 0xba37ecbd fscrypt_decrypt_pagecache_blocks -EXPORT_SYMBOL vmlinux 0xba38bc0b devm_ioremap_resource -EXPORT_SYMBOL vmlinux 0xba3eac39 udp_lib_unhash +EXPORT_SYMBOL vmlinux 0xba1bc0f3 netdev_upper_dev_unlink +EXPORT_SYMBOL vmlinux 0xba216758 devm_pci_alloc_host_bridge +EXPORT_SYMBOL vmlinux 0xba2f4c90 pps_lookup_dev +EXPORT_SYMBOL vmlinux 0xba2f6e85 _copy_from_iter_nocache EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy -EXPORT_SYMBOL vmlinux 0xba4acc3a arp_create -EXPORT_SYMBOL vmlinux 0xba4e8a7c blk_pm_runtime_init EXPORT_SYMBOL vmlinux 0xba53adab nla_policy_len -EXPORT_SYMBOL vmlinux 0xba645fa9 unregister_tcf_proto_ops -EXPORT_SYMBOL vmlinux 0xba6c31ba pci_msix_vec_count -EXPORT_SYMBOL vmlinux 0xba6f8109 mnt_drop_write_file -EXPORT_SYMBOL vmlinux 0xba74196a devfreq_unregister_opp_notifier -EXPORT_SYMBOL vmlinux 0xba7b0c9e netdev_state_change -EXPORT_SYMBOL vmlinux 0xba87636c phy_register_fixup -EXPORT_SYMBOL vmlinux 0xba8ae6dd simple_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0xba828366 nf_log_bind_pf EXPORT_SYMBOL vmlinux 0xba8fbd64 _raw_spin_lock -EXPORT_SYMBOL vmlinux 0xba93cd08 blk_mq_run_hw_queues -EXPORT_SYMBOL vmlinux 0xbaae6cb3 generic_fadvise -EXPORT_SYMBOL vmlinux 0xbab61b27 scsi_block_when_processing_errors -EXPORT_SYMBOL vmlinux 0xbaba1df6 __skb_gso_segment -EXPORT_SYMBOL vmlinux 0xbae8a4fe blk_integrity_unregister -EXPORT_SYMBOL vmlinux 0xbaebee1f tcf_exts_validate -EXPORT_SYMBOL vmlinux 0xbaed7599 sk_filter_trim_cap -EXPORT_SYMBOL vmlinux 0xbaf5dacb vfs_getattr +EXPORT_SYMBOL vmlinux 0xba9bb08b d_drop +EXPORT_SYMBOL vmlinux 0xbaaef323 pci_enable_msi +EXPORT_SYMBOL vmlinux 0xbab41df2 starget_for_each_device +EXPORT_SYMBOL vmlinux 0xbad5cdf1 vga_put +EXPORT_SYMBOL vmlinux 0xbaf21d33 tcp_connect +EXPORT_SYMBOL vmlinux 0xbaff2431 posix_lock_file EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset EXPORT_SYMBOL vmlinux 0xbb13595e smp_call_function_many EXPORT_SYMBOL vmlinux 0xbb1bac24 acpi_unregister_debugger EXPORT_SYMBOL vmlinux 0xbb24f607 init_cdrom_command -EXPORT_SYMBOL vmlinux 0xbb32f683 rproc_coredump_add_custom_segment +EXPORT_SYMBOL vmlinux 0xbb32e6ab pnp_register_driver EXPORT_SYMBOL vmlinux 0xbb35675b __bitmap_intersects EXPORT_SYMBOL vmlinux 0xbb4f4766 simple_write_to_buffer -EXPORT_SYMBOL vmlinux 0xbb5c27cf inode_nohighmem -EXPORT_SYMBOL vmlinux 0xbb743c11 scsi_scan_target -EXPORT_SYMBOL vmlinux 0xbb7aed4c vfs_rmdir -EXPORT_SYMBOL vmlinux 0xbb7e68da blk_queue_max_write_zeroes_sectors -EXPORT_SYMBOL vmlinux 0xbb7f37dc skb_clone_sk -EXPORT_SYMBOL vmlinux 0xbb8cf3c2 vlan_dev_vlan_id +EXPORT_SYMBOL vmlinux 0xbb5330bc neigh_direct_output +EXPORT_SYMBOL vmlinux 0xbb53eda4 __scsi_print_sense +EXPORT_SYMBOL vmlinux 0xbb54d807 rio_query_mport +EXPORT_SYMBOL vmlinux 0xbb687edb mipi_dsi_picture_parameter_set +EXPORT_SYMBOL vmlinux 0xbb7bf1ef blk_integrity_unregister +EXPORT_SYMBOL vmlinux 0xbb81e622 bio_devname +EXPORT_SYMBOL vmlinux 0xbb8d4512 __blk_rq_map_sg EXPORT_SYMBOL vmlinux 0xbb8e169a vga_switcheroo_handler_flags EXPORT_SYMBOL vmlinux 0xbb9ed3bf mutex_trylock -EXPORT_SYMBOL vmlinux 0xbba7c602 rproc_elf_load_rsc_table -EXPORT_SYMBOL vmlinux 0xbba886e7 free_task -EXPORT_SYMBOL vmlinux 0xbbbc9c43 flow_rule_match_eth_addrs -EXPORT_SYMBOL vmlinux 0xbbd4283c blk_set_runtime_active -EXPORT_SYMBOL vmlinux 0xbbde9bc5 inet_bind +EXPORT_SYMBOL vmlinux 0xbba3886e __skb_checksum_complete_head +EXPORT_SYMBOL vmlinux 0xbba48d25 ipmr_rule_default +EXPORT_SYMBOL vmlinux 0xbbaf544e xfrm_lookup +EXPORT_SYMBOL vmlinux 0xbbc769d2 fib6_info_hw_flags_set +EXPORT_SYMBOL vmlinux 0xbbd692c7 vm_map_ram +EXPORT_SYMBOL vmlinux 0xbbd87727 nobh_write_begin EXPORT_SYMBOL vmlinux 0xbbe80fdb kmalloc_order -EXPORT_SYMBOL vmlinux 0xbbeb77fa netdev_master_upper_dev_get -EXPORT_SYMBOL vmlinux 0xbbfd2f63 netdev_warn -EXPORT_SYMBOL vmlinux 0xbc05612b __ethtool_get_link_ksettings -EXPORT_SYMBOL vmlinux 0xbc09ba5b submit_bh -EXPORT_SYMBOL vmlinux 0xbc09e1fa simple_setattr -EXPORT_SYMBOL vmlinux 0xbc15d738 ip_mc_inc_group -EXPORT_SYMBOL vmlinux 0xbc1c509f dm_table_run_md_queue_async +EXPORT_SYMBOL vmlinux 0xbc0e2bfa scsi_eh_restore_cmnd +EXPORT_SYMBOL vmlinux 0xbc0ee372 from_kprojid +EXPORT_SYMBOL vmlinux 0xbc184a94 __netlink_dump_start +EXPORT_SYMBOL vmlinux 0xbc1d93c4 register_qdisc +EXPORT_SYMBOL vmlinux 0xbc1f3b63 send_sig EXPORT_SYMBOL vmlinux 0xbc2031de acpi_processor_get_bios_limit -EXPORT_SYMBOL vmlinux 0xbc3eb2f7 skb_expand_head -EXPORT_SYMBOL vmlinux 0xbc463616 inet_accept -EXPORT_SYMBOL vmlinux 0xbc4c11b4 dentry_open -EXPORT_SYMBOL vmlinux 0xbc4d39e9 vmf_insert_pfn +EXPORT_SYMBOL vmlinux 0xbc21023c vlan_dev_real_dev +EXPORT_SYMBOL vmlinux 0xbc302a3c d_invalidate +EXPORT_SYMBOL vmlinux 0xbc400d45 scsi_command_normalize_sense +EXPORT_SYMBOL vmlinux 0xbc502767 skb_checksum_setup +EXPORT_SYMBOL vmlinux 0xbc5ea2f0 md_done_sync +EXPORT_SYMBOL vmlinux 0xbc6d86e4 xfrm_state_flush +EXPORT_SYMBOL vmlinux 0xbc7770b4 posix_test_lock +EXPORT_SYMBOL vmlinux 0xbc8a398b get_unmapped_area +EXPORT_SYMBOL vmlinux 0xbc9d4ea8 add_to_pipe EXPORT_SYMBOL vmlinux 0xbcab6ee6 sscanf -EXPORT_SYMBOL vmlinux 0xbcb1cca4 xfrm6_rcv_spi -EXPORT_SYMBOL vmlinux 0xbcb2dc89 udp_set_csum -EXPORT_SYMBOL vmlinux 0xbcc50690 pcie_capability_write_word -EXPORT_SYMBOL vmlinux 0xbcd2dcda input_mt_report_finger_count -EXPORT_SYMBOL vmlinux 0xbcdc702b seg6_hmac_info_add -EXPORT_SYMBOL vmlinux 0xbcf0270b __set_page_dirty_no_writeback -EXPORT_SYMBOL vmlinux 0xbcfda2b2 dev_set_mtu -EXPORT_SYMBOL vmlinux 0xbd0372eb twl6040_set_pll -EXPORT_SYMBOL vmlinux 0xbd129aa9 pnp_start_dev -EXPORT_SYMBOL vmlinux 0xbd1f23d5 tty_port_raise_dtr_rts -EXPORT_SYMBOL vmlinux 0xbd21b171 get_user_pages +EXPORT_SYMBOL vmlinux 0xbce7db29 cdc_parse_cdc_header +EXPORT_SYMBOL vmlinux 0xbceb1aa8 ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0xbd19e47d tty_kref_put +EXPORT_SYMBOL vmlinux 0xbd314daf ptp_find_pin_unlocked EXPORT_SYMBOL vmlinux 0xbd393ca3 ioread64be_lo_hi +EXPORT_SYMBOL vmlinux 0xbd3fdc56 i2c_put_adapter EXPORT_SYMBOL vmlinux 0xbd462b55 __kfifo_init +EXPORT_SYMBOL vmlinux 0xbd49ebec mount_bdev +EXPORT_SYMBOL vmlinux 0xbd5608db to_nd_btt +EXPORT_SYMBOL vmlinux 0xbd66e806 unregister_netdevice_notifier_dev_net EXPORT_SYMBOL vmlinux 0xbd6841d4 crc16 -EXPORT_SYMBOL vmlinux 0xbd7cfb85 fbcon_update_vcs -EXPORT_SYMBOL vmlinux 0xbd8a3226 vfs_symlink -EXPORT_SYMBOL vmlinux 0xbd8a37e7 nobh_write_end -EXPORT_SYMBOL vmlinux 0xbda13e25 __skb_ext_del -EXPORT_SYMBOL vmlinux 0xbda85c10 dmaenginem_async_device_register -EXPORT_SYMBOL vmlinux 0xbdb41fda kmem_cache_create_usercopy -EXPORT_SYMBOL vmlinux 0xbdb4ec25 truncate_inode_pages_range -EXPORT_SYMBOL vmlinux 0xbdb5ffae pipe_lock -EXPORT_SYMBOL vmlinux 0xbdba3c9e simple_statfs -EXPORT_SYMBOL vmlinux 0xbdd84a1a netif_set_real_num_tx_queues -EXPORT_SYMBOL vmlinux 0xbdde11bb nf_getsockopt -EXPORT_SYMBOL vmlinux 0xbde1c91b __SCK__tp_func_mmap_lock_acquire_returned -EXPORT_SYMBOL vmlinux 0xbde6c386 fb_set_suspend -EXPORT_SYMBOL vmlinux 0xbde7b408 dev_uc_flush +EXPORT_SYMBOL vmlinux 0xbd6f2eb9 con_is_visible +EXPORT_SYMBOL vmlinux 0xbd885c23 devm_devfreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0xbd8fd13b reuseport_detach_prog +EXPORT_SYMBOL vmlinux 0xbdb95b75 elv_bio_merge_ok +EXPORT_SYMBOL vmlinux 0xbdba8c91 blk_integrity_compare +EXPORT_SYMBOL vmlinux 0xbdc0a793 task_work_add +EXPORT_SYMBOL vmlinux 0xbdce5c56 dev_get_by_index +EXPORT_SYMBOL vmlinux 0xbddb6208 mnt_drop_write_file +EXPORT_SYMBOL vmlinux 0xbdde68b0 netlink_rcv_skb EXPORT_SYMBOL vmlinux 0xbdfb6dbb __fentry__ EXPORT_SYMBOL vmlinux 0xbe0110e7 acpi_set_gpe -EXPORT_SYMBOL vmlinux 0xbe0c184d inet_csk_init_xmit_timers +EXPORT_SYMBOL vmlinux 0xbe022902 vmf_insert_mixed_mkwrite EXPORT_SYMBOL vmlinux 0xbe1427af __printk_cpu_unlock -EXPORT_SYMBOL vmlinux 0xbe1dc6d5 __lock_sock_fast -EXPORT_SYMBOL vmlinux 0xbe282e45 __pskb_copy_fclone -EXPORT_SYMBOL vmlinux 0xbe3cd774 register_shrinker +EXPORT_SYMBOL vmlinux 0xbe2bc928 genphy_resume +EXPORT_SYMBOL vmlinux 0xbe394ee9 rproc_elf_sanity_check +EXPORT_SYMBOL vmlinux 0xbe3bcfdf simple_dentry_operations EXPORT_SYMBOL vmlinux 0xbe49252c acpi_os_write_port EXPORT_SYMBOL vmlinux 0xbe4eb6ed secure_dccpv6_sequence_number -EXPORT_SYMBOL vmlinux 0xbe5636d9 to_nd_pfn +EXPORT_SYMBOL vmlinux 0xbe52acbe gnet_stats_copy_basic EXPORT_SYMBOL vmlinux 0xbe5a24e9 xxh32_copy_state -EXPORT_SYMBOL vmlinux 0xbe627808 mmc_put_card +EXPORT_SYMBOL vmlinux 0xbe5d4fd0 inet_unregister_protosw +EXPORT_SYMBOL vmlinux 0xbe62c866 netdev_adjacent_change_abort +EXPORT_SYMBOL vmlinux 0xbe689821 simple_dir_operations EXPORT_SYMBOL vmlinux 0xbe6a866f __wait_on_bit -EXPORT_SYMBOL vmlinux 0xbe75e571 sk_alloc -EXPORT_SYMBOL vmlinux 0xbe76257d pv_ops +EXPORT_SYMBOL vmlinux 0xbe768a2a from_kuid_munged +EXPORT_SYMBOL vmlinux 0xbe7cd6ae pci_ep_cfs_add_epc_group EXPORT_SYMBOL vmlinux 0xbe7e05a8 acpi_tb_install_and_load_table -EXPORT_SYMBOL vmlinux 0xbe865e90 sock_no_getname -EXPORT_SYMBOL vmlinux 0xbe8981ce param_array_ops -EXPORT_SYMBOL vmlinux 0xbe978a88 blk_queue_physical_block_size -EXPORT_SYMBOL vmlinux 0xbe998409 tcp_select_initial_window -EXPORT_SYMBOL vmlinux 0xbea7555b netdev_class_create_file_ns -EXPORT_SYMBOL vmlinux 0xbeb13d8c phy_mii_ioctl -EXPORT_SYMBOL vmlinux 0xbeb976aa devm_register_reboot_notifier -EXPORT_SYMBOL vmlinux 0xbec4e6bc ipv6_sock_mc_join -EXPORT_SYMBOL vmlinux 0xbece9d5e prepare_to_swait_exclusive -EXPORT_SYMBOL vmlinux 0xbecedd48 bdi_set_max_ratio -EXPORT_SYMBOL vmlinux 0xbed7a8fb scsi_dma_unmap -EXPORT_SYMBOL vmlinux 0xbedda649 path_has_submounts -EXPORT_SYMBOL vmlinux 0xbee00895 blk_post_runtime_suspend +EXPORT_SYMBOL vmlinux 0xbe94cbed dm_unregister_target +EXPORT_SYMBOL vmlinux 0xbe9c996d bdev_read_only +EXPORT_SYMBOL vmlinux 0xbea3371b netif_rx_ni +EXPORT_SYMBOL vmlinux 0xbecdc1af mipi_dsi_dcs_set_display_off +EXPORT_SYMBOL vmlinux 0xbedaa89e phy_detach +EXPORT_SYMBOL vmlinux 0xbedabeba tcp_splice_read +EXPORT_SYMBOL vmlinux 0xbedb3323 jbd2_journal_lock_updates +EXPORT_SYMBOL vmlinux 0xbedbc321 skb_try_coalesce +EXPORT_SYMBOL vmlinux 0xbee6de5e km_state_notify EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule EXPORT_SYMBOL vmlinux 0xbefa51a3 gen_pool_add_owner -EXPORT_SYMBOL vmlinux 0xbf05de65 dst_dev_put -EXPORT_SYMBOL vmlinux 0xbf1d01f1 set_pages_array_wc +EXPORT_SYMBOL vmlinux 0xbf104af8 mmc_set_data_timeout +EXPORT_SYMBOL vmlinux 0xbf2fe4d6 vme_init_bridge EXPORT_SYMBOL vmlinux 0xbf3193ec acpi_unregister_ioapic -EXPORT_SYMBOL vmlinux 0xbf47bd2c register_md_cluster_operations +EXPORT_SYMBOL vmlinux 0xbf44cace netdev_notice +EXPORT_SYMBOL vmlinux 0xbf505638 __inet_stream_connect +EXPORT_SYMBOL vmlinux 0xbf5149a8 close_fd_get_file EXPORT_SYMBOL vmlinux 0xbf59c419 posix_acl_init -EXPORT_SYMBOL vmlinux 0xbf7433de genphy_resume -EXPORT_SYMBOL vmlinux 0xbf82b5b6 __fs_parse +EXPORT_SYMBOL vmlinux 0xbf5edb26 consume_skb +EXPORT_SYMBOL vmlinux 0xbf6dc44a fc_mount +EXPORT_SYMBOL vmlinux 0xbf70f778 pci_claim_resource EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set -EXPORT_SYMBOL vmlinux 0xbfb05592 __cancel_dirty_page -EXPORT_SYMBOL vmlinux 0xbfc099cb xfrm_register_type +EXPORT_SYMBOL vmlinux 0xbfc11b2a bio_integrity_trim EXPORT_SYMBOL vmlinux 0xbfc177bc iowrite32_rep -EXPORT_SYMBOL vmlinux 0xbfcf2bd6 devm_ioremap_wc -EXPORT_SYMBOL vmlinux 0xbfd7c48e phy_modify_paged -EXPORT_SYMBOL vmlinux 0xbfe20c05 xfrm_state_add -EXPORT_SYMBOL vmlinux 0xbfe4de8b jbd2_journal_extend +EXPORT_SYMBOL vmlinux 0xbfc68289 sync_blockdev +EXPORT_SYMBOL vmlinux 0xbfca7b1f mdio_bus_type +EXPORT_SYMBOL vmlinux 0xbfdf681f scsi_eh_finish_cmd EXPORT_SYMBOL vmlinux 0xbfee3ad5 loop_unregister_transfer -EXPORT_SYMBOL vmlinux 0xbff0ce06 __post_watch_notification -EXPORT_SYMBOL vmlinux 0xbff7ebfb mipi_dsi_detach -EXPORT_SYMBOL vmlinux 0xc00df2b1 vme_unregister_driver +EXPORT_SYMBOL vmlinux 0xbff76629 acpi_dev_hid_uid_match +EXPORT_SYMBOL vmlinux 0xc01d7c93 tc_setup_flow_action +EXPORT_SYMBOL vmlinux 0xc01e97a4 iov_iter_advance EXPORT_SYMBOL vmlinux 0xc0243ea6 nla_reserve_nohdr -EXPORT_SYMBOL vmlinux 0xc0508ca8 security_socket_getpeersec_dgram -EXPORT_SYMBOL vmlinux 0xc05c8fe4 __SCK__tp_func_mmap_lock_released -EXPORT_SYMBOL vmlinux 0xc072db5c sock_common_recvmsg +EXPORT_SYMBOL vmlinux 0xc0364007 fault_in_writeable +EXPORT_SYMBOL vmlinux 0xc0404376 touch_buffer +EXPORT_SYMBOL vmlinux 0xc0431ad1 bioset_integrity_create +EXPORT_SYMBOL vmlinux 0xc05385fa inet_proto_csum_replace4 +EXPORT_SYMBOL vmlinux 0xc05c0e29 phy_register_fixup +EXPORT_SYMBOL vmlinux 0xc074ab6a watchdog_register_governor EXPORT_SYMBOL vmlinux 0xc0763484 rfkill_blocked EXPORT_SYMBOL vmlinux 0xc07b0863 fb_destroy_modedb -EXPORT_SYMBOL vmlinux 0xc0937719 copy_string_kernel -EXPORT_SYMBOL vmlinux 0xc0a7dddf tty_port_hangup -EXPORT_SYMBOL vmlinux 0xc0ac801e twl6040_clear_bits +EXPORT_SYMBOL vmlinux 0xc07b1f48 get_bitmap_from_slot +EXPORT_SYMBOL vmlinux 0xc07f96fe vga_switcheroo_lock_ddc EXPORT_SYMBOL vmlinux 0xc0afb5d7 cgroup_bpf_enabled_key -EXPORT_SYMBOL vmlinux 0xc0b07081 gnet_stats_copy_basic_hw EXPORT_SYMBOL vmlinux 0xc0b2664d devlink_dpipe_header_ipv4 -EXPORT_SYMBOL vmlinux 0xc0b3699e pci_free_irq_vectors -EXPORT_SYMBOL vmlinux 0xc0b79a4c dmam_alloc_attrs EXPORT_SYMBOL vmlinux 0xc0bca0f1 ZSTD_nextSrcSizeToDecompress -EXPORT_SYMBOL vmlinux 0xc0c42b5e vme_irq_generate -EXPORT_SYMBOL vmlinux 0xc0e6db96 inet_release -EXPORT_SYMBOL vmlinux 0xc0fb3633 eth_mac_addr +EXPORT_SYMBOL vmlinux 0xc0e6cc15 phy_device_free +EXPORT_SYMBOL vmlinux 0xc0eaf529 sk_stream_error EXPORT_SYMBOL vmlinux 0xc0ff12fb nla_strdup EXPORT_SYMBOL vmlinux 0xc0ff21c1 input_get_new_minor -EXPORT_SYMBOL vmlinux 0xc107deb2 is_acpi_data_node -EXPORT_SYMBOL vmlinux 0xc111309b vfs_copy_file_range +EXPORT_SYMBOL vmlinux 0xc1025998 single_open EXPORT_SYMBOL vmlinux 0xc111ae64 intel_gtt_get -EXPORT_SYMBOL vmlinux 0xc12360cb phy_write_paged -EXPORT_SYMBOL vmlinux 0xc12aba8c write_cache_pages -EXPORT_SYMBOL vmlinux 0xc12ad317 skb_checksum_setup +EXPORT_SYMBOL vmlinux 0xc11218f8 __i2c_transfer EXPORT_SYMBOL vmlinux 0xc1365323 acpi_enable_all_wakeup_gpes EXPORT_SYMBOL vmlinux 0xc14dc168 acpi_get_data -EXPORT_SYMBOL vmlinux 0xc14f575e dm_table_event EXPORT_SYMBOL vmlinux 0xc1514a3b free_irq -EXPORT_SYMBOL vmlinux 0xc152f388 scsi_is_sdev_device -EXPORT_SYMBOL vmlinux 0xc1549807 dst_release_immediate -EXPORT_SYMBOL vmlinux 0xc15e14f2 ps2_handle_ack EXPORT_SYMBOL vmlinux 0xc16410b9 ZSTD_getDictID_fromDDict -EXPORT_SYMBOL vmlinux 0xc16754e2 security_task_getsecid_subj +EXPORT_SYMBOL vmlinux 0xc168dfd4 inet_ioctl EXPORT_SYMBOL vmlinux 0xc16be39d iter_div_u64_rem -EXPORT_SYMBOL vmlinux 0xc17034e0 tty_port_carrier_raised -EXPORT_SYMBOL vmlinux 0xc1710c34 pci_iomap_range -EXPORT_SYMBOL vmlinux 0xc1735c84 build_skb_around -EXPORT_SYMBOL vmlinux 0xc17e997c xp_free -EXPORT_SYMBOL vmlinux 0xc186f80b phy_connect -EXPORT_SYMBOL vmlinux 0xc1a1141e bio_integrity_trim -EXPORT_SYMBOL vmlinux 0xc1c5a05c pci_map_rom -EXPORT_SYMBOL vmlinux 0xc1c915ea input_reset_device -EXPORT_SYMBOL vmlinux 0xc1cbceb6 jbd2_journal_abort -EXPORT_SYMBOL vmlinux 0xc1cc106b single_release -EXPORT_SYMBOL vmlinux 0xc1d065cf __inet_stream_connect +EXPORT_SYMBOL vmlinux 0xc1b4a786 tcp_select_initial_window +EXPORT_SYMBOL vmlinux 0xc1c51135 neigh_app_ns +EXPORT_SYMBOL vmlinux 0xc1c9c028 dqget +EXPORT_SYMBOL vmlinux 0xc1cbb744 input_get_keycode EXPORT_SYMBOL vmlinux 0xc1d5d504 scsi_cmd_allowed EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget -EXPORT_SYMBOL vmlinux 0xc1fcc3ea mntput -EXPORT_SYMBOL vmlinux 0xc23f3800 add_to_pipe +EXPORT_SYMBOL vmlinux 0xc1e85138 flow_rule_match_enc_opts +EXPORT_SYMBOL vmlinux 0xc20083b0 migrate_page_move_mapping +EXPORT_SYMBOL vmlinux 0xc20d443d skb_eth_push +EXPORT_SYMBOL vmlinux 0xc210182f pci_setup_cardbus +EXPORT_SYMBOL vmlinux 0xc2209527 __sk_mem_raise_allocated +EXPORT_SYMBOL vmlinux 0xc2267d06 end_page_writeback +EXPORT_SYMBOL vmlinux 0xc227f9fc netdev_lower_get_next_private_rcu +EXPORT_SYMBOL vmlinux 0xc22c07c1 inet_frags_fini +EXPORT_SYMBOL vmlinux 0xc23297b7 flush_signals EXPORT_SYMBOL vmlinux 0xc2424641 agp3_generic_cleanup +EXPORT_SYMBOL vmlinux 0xc24458f4 pci_iounmap +EXPORT_SYMBOL vmlinux 0xc2481626 inet_frag_reasm_finish +EXPORT_SYMBOL vmlinux 0xc248d990 kernel_getsockname +EXPORT_SYMBOL vmlinux 0xc25234a0 input_mt_drop_unused +EXPORT_SYMBOL vmlinux 0xc25c9f33 md_cluster_ops EXPORT_SYMBOL vmlinux 0xc267960e utf8_validate -EXPORT_SYMBOL vmlinux 0xc26d5f6c adjust_managed_page_count EXPORT_SYMBOL vmlinux 0xc278c965 cpu_all_bits -EXPORT_SYMBOL vmlinux 0xc286b1bc vga_switcheroo_unregister_client +EXPORT_SYMBOL vmlinux 0xc27a52dc phy_drivers_register +EXPORT_SYMBOL vmlinux 0xc2826b30 d_alloc_name EXPORT_SYMBOL vmlinux 0xc29bf967 strspn EXPORT_SYMBOL vmlinux 0xc2a17ebe seqno_fence_ops -EXPORT_SYMBOL vmlinux 0xc2b628b8 blk_integrity_register -EXPORT_SYMBOL vmlinux 0xc2d4023c dev_add_pack -EXPORT_SYMBOL vmlinux 0xc2dd599f seg6_hmac_info_del +EXPORT_SYMBOL vmlinux 0xc2c5a607 security_sb_remount +EXPORT_SYMBOL vmlinux 0xc2ccfae1 nf_log_unregister +EXPORT_SYMBOL vmlinux 0xc2df1450 rtnl_configure_link EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices -EXPORT_SYMBOL vmlinux 0xc303a654 mmc_start_request EXPORT_SYMBOL vmlinux 0xc3055d20 usleep_range_state EXPORT_SYMBOL vmlinux 0xc310b981 strnstr EXPORT_SYMBOL vmlinux 0xc31db0ce is_vmalloc_addr EXPORT_SYMBOL vmlinux 0xc32c71af register_inetaddr_validator_notifier -EXPORT_SYMBOL vmlinux 0xc349804b kernel_sock_shutdown -EXPORT_SYMBOL vmlinux 0xc349b4ff netdev_name_node_alt_destroy -EXPORT_SYMBOL vmlinux 0xc3532ae1 dev_alloc_name -EXPORT_SYMBOL vmlinux 0xc36863f6 devfreq_monitor_start -EXPORT_SYMBOL vmlinux 0xc369e971 tcf_generic_walker +EXPORT_SYMBOL vmlinux 0xc336541f wait_on_page_private_2_killable +EXPORT_SYMBOL vmlinux 0xc353292e dump_skip_to +EXPORT_SYMBOL vmlinux 0xc364cfe0 blk_set_runtime_active +EXPORT_SYMBOL vmlinux 0xc3672388 follow_pfn EXPORT_SYMBOL vmlinux 0xc36a3bd4 __acpi_handle_debug EXPORT_SYMBOL vmlinux 0xc3762aec mempool_alloc -EXPORT_SYMBOL vmlinux 0xc37af29f param_ops_charp +EXPORT_SYMBOL vmlinux 0xc378c4c5 sg_alloc_table_from_pages_segment EXPORT_SYMBOL vmlinux 0xc37f9c6e cpufreq_update_policy EXPORT_SYMBOL vmlinux 0xc38c83b8 mod_timer -EXPORT_SYMBOL vmlinux 0xc38e3a4b mipi_dsi_dcs_get_display_brightness -EXPORT_SYMBOL vmlinux 0xc3a928e6 scmd_printk +EXPORT_SYMBOL vmlinux 0xc38f5a40 submit_bio_noacct +EXPORT_SYMBOL vmlinux 0xc3a1cc09 cdev_init EXPORT_SYMBOL vmlinux 0xc3aaf0a9 __put_user_1 -EXPORT_SYMBOL vmlinux 0xc3ba6bf0 iterate_fd +EXPORT_SYMBOL vmlinux 0xc3bc111d jbd2_journal_finish_inode_data_buffers EXPORT_SYMBOL vmlinux 0xc3bc72ad trace_print_array_seq -EXPORT_SYMBOL vmlinux 0xc3c2d4bf mpage_writepages -EXPORT_SYMBOL vmlinux 0xc3cb1bfe register_cdrom -EXPORT_SYMBOL vmlinux 0xc3ee4311 napi_disable -EXPORT_SYMBOL vmlinux 0xc3f47c46 param_get_short -EXPORT_SYMBOL vmlinux 0xc3fbd0ba __dev_get_by_flags -EXPORT_SYMBOL vmlinux 0xc3fc28f6 neigh_update -EXPORT_SYMBOL vmlinux 0xc3fc9a5f devm_request_any_context_irq +EXPORT_SYMBOL vmlinux 0xc3bdc6e6 simple_lookup +EXPORT_SYMBOL vmlinux 0xc3e76c5e ip_route_input_noref +EXPORT_SYMBOL vmlinux 0xc3fedcf1 blk_rq_map_user_iov EXPORT_SYMBOL vmlinux 0xc3ff38c2 down_read_trylock EXPORT_SYMBOL vmlinux 0xc41bc980 iwe_stream_add_value -EXPORT_SYMBOL vmlinux 0xc41c4e03 param_set_bint -EXPORT_SYMBOL vmlinux 0xc41d66b7 __xfrm_route_forward EXPORT_SYMBOL vmlinux 0xc4212ab9 qdisc_class_hash_insert -EXPORT_SYMBOL vmlinux 0xc42ccf82 inet_sendmsg +EXPORT_SYMBOL vmlinux 0xc425bfd3 netpoll_cleanup EXPORT_SYMBOL vmlinux 0xc42dcb99 acpi_evaluate_ost -EXPORT_SYMBOL vmlinux 0xc4443ebf no_seek_end_llseek_size +EXPORT_SYMBOL vmlinux 0xc4569562 skb_vlan_push +EXPORT_SYMBOL vmlinux 0xc46905cf jbd2_journal_start EXPORT_SYMBOL vmlinux 0xc4777aa9 __ctzsi2 -EXPORT_SYMBOL vmlinux 0xc4831bc2 ata_std_end_eh -EXPORT_SYMBOL vmlinux 0xc494696f blk_pre_runtime_suspend -EXPORT_SYMBOL vmlinux 0xc497583c freeze_bdev -EXPORT_SYMBOL vmlinux 0xc4a0d78c unregister_nexthop_notifier +EXPORT_SYMBOL vmlinux 0xc478fe79 genphy_config_eee_advert EXPORT_SYMBOL vmlinux 0xc4ae915e arch_touch_nmi_watchdog -EXPORT_SYMBOL vmlinux 0xc4af6b87 blkdev_issue_discard -EXPORT_SYMBOL vmlinux 0xc4b01d90 mark_page_accessed -EXPORT_SYMBOL vmlinux 0xc4b9d924 tcf_qevent_validate_change -EXPORT_SYMBOL vmlinux 0xc4f7029a xp_raw_get_dma -EXPORT_SYMBOL vmlinux 0xc50218f3 is_nd_pfn -EXPORT_SYMBOL vmlinux 0xc50fa4ab tcp_init_sock +EXPORT_SYMBOL vmlinux 0xc4efd60c tc_setup_cb_call +EXPORT_SYMBOL vmlinux 0xc517d372 ata_port_printk +EXPORT_SYMBOL vmlinux 0xc523b987 nf_log_set +EXPORT_SYMBOL vmlinux 0xc52561a2 gnet_stats_copy_app EXPORT_SYMBOL vmlinux 0xc528a49a queued_write_lock_slowpath -EXPORT_SYMBOL vmlinux 0xc531a03d __check_sticky -EXPORT_SYMBOL vmlinux 0xc5339669 __lock_buffer +EXPORT_SYMBOL vmlinux 0xc52e0039 inet6_add_protocol EXPORT_SYMBOL vmlinux 0xc558530d profile_pc +EXPORT_SYMBOL vmlinux 0xc570cdd5 max8998_bulk_write EXPORT_SYMBOL vmlinux 0xc57c48a3 idr_get_next +EXPORT_SYMBOL vmlinux 0xc57d279c sockfd_lookup +EXPORT_SYMBOL vmlinux 0xc57f1219 jbd2_fc_wait_bufs EXPORT_SYMBOL vmlinux 0xc58d5a90 kstrtoll_from_user -EXPORT_SYMBOL vmlinux 0xc5945d9c neigh_lookup_nodev EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xc5a2c1d0 input_grab_device +EXPORT_SYMBOL vmlinux 0xc5b6718f netlink_kernel_release EXPORT_SYMBOL vmlinux 0xc5b6f236 queue_work_on -EXPORT_SYMBOL vmlinux 0xc5c80250 blk_put_queue -EXPORT_SYMBOL vmlinux 0xc5c9fe2d page_pool_put_page_bulk +EXPORT_SYMBOL vmlinux 0xc5c5c72b nexthop_bucket_set_hw_flags +EXPORT_SYMBOL vmlinux 0xc5cf884c __mmc_claim_host EXPORT_SYMBOL vmlinux 0xc5d9c46c agp_try_unsupported_boot +EXPORT_SYMBOL vmlinux 0xc5dbf69f pcie_get_width_cap +EXPORT_SYMBOL vmlinux 0xc5ddd54a page_mapping EXPORT_SYMBOL vmlinux 0xc5e74216 release_resource -EXPORT_SYMBOL vmlinux 0xc5ede8a7 flow_block_cb_incref -EXPORT_SYMBOL vmlinux 0xc5f7b279 send_sig_mceerr +EXPORT_SYMBOL vmlinux 0xc5f38e6a scsi_remove_target EXPORT_SYMBOL vmlinux 0xc5f7e801 sg_last EXPORT_SYMBOL vmlinux 0xc60d0620 __num_online_cpus -EXPORT_SYMBOL vmlinux 0xc61589d1 acpi_pm_device_sleep_state +EXPORT_SYMBOL vmlinux 0xc6196a83 skb_ext_add EXPORT_SYMBOL vmlinux 0xc61ca65e iowrite64be_hi_lo EXPORT_SYMBOL vmlinux 0xc622556f prepare_to_wait_exclusive EXPORT_SYMBOL vmlinux 0xc631580a console_unlock EXPORT_SYMBOL vmlinux 0xc633d82d phy_unregister_fixup -EXPORT_SYMBOL vmlinux 0xc63e8fb9 __inc_node_page_state -EXPORT_SYMBOL vmlinux 0xc6405b8e ll_rw_block -EXPORT_SYMBOL vmlinux 0xc6430524 mipi_dsi_dcs_enter_sleep_mode -EXPORT_SYMBOL vmlinux 0xc64ae91b insert_inode_locked +EXPORT_SYMBOL vmlinux 0xc642280d devm_ioport_map EXPORT_SYMBOL vmlinux 0xc65e4e97 secure_dccp_sequence_number EXPORT_SYMBOL vmlinux 0xc666a132 crc_t10dif EXPORT_SYMBOL vmlinux 0xc66a8304 cpu_rmap_add -EXPORT_SYMBOL vmlinux 0xc675afaa padata_do_serial +EXPORT_SYMBOL vmlinux 0xc67d78fc touchscreen_parse_properties +EXPORT_SYMBOL vmlinux 0xc6895030 devm_kvasprintf EXPORT_SYMBOL vmlinux 0xc6910aa0 do_trace_rdpmc -EXPORT_SYMBOL vmlinux 0xc6918aac napi_complete_done -EXPORT_SYMBOL vmlinux 0xc6a42262 dma_async_device_unregister -EXPORT_SYMBOL vmlinux 0xc6b26db4 jbd2_journal_ack_err -EXPORT_SYMBOL vmlinux 0xc6ca6512 dentry_path_raw -EXPORT_SYMBOL vmlinux 0xc6caf935 call_netdevice_notifiers +EXPORT_SYMBOL vmlinux 0xc6a58396 get_tz_trend +EXPORT_SYMBOL vmlinux 0xc6a8d77b __dev_set_mtu +EXPORT_SYMBOL vmlinux 0xc6afab09 ip_mc_leave_group +EXPORT_SYMBOL vmlinux 0xc6b47d7b clk_get +EXPORT_SYMBOL vmlinux 0xc6b4f16e simple_rmdir EXPORT_SYMBOL vmlinux 0xc6cb465a __kfifo_max_r EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable EXPORT_SYMBOL vmlinux 0xc6d09aa9 release_firmware -EXPORT_SYMBOL vmlinux 0xc6e7b43c kthread_stop +EXPORT_SYMBOL vmlinux 0xc6e5bbba copy_string_kernel EXPORT_SYMBOL vmlinux 0xc6f3b3fc refcount_dec_if_one EXPORT_SYMBOL vmlinux 0xc6f46339 init_timer_key -EXPORT_SYMBOL vmlinux 0xc6f7bcb1 pci_write_config_dword +EXPORT_SYMBOL vmlinux 0xc6f7a63e generic_parse_monolithic EXPORT_SYMBOL vmlinux 0xc708f1fe ec_write -EXPORT_SYMBOL vmlinux 0xc70edfe2 _dev_notice -EXPORT_SYMBOL vmlinux 0xc71c70dc configfs_unregister_group -EXPORT_SYMBOL vmlinux 0xc71f7065 jbd2_journal_grab_journal_head +EXPORT_SYMBOL vmlinux 0xc71a0db6 begin_new_exec +EXPORT_SYMBOL vmlinux 0xc71bdcdf iov_iter_discard EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port -EXPORT_SYMBOL vmlinux 0xc7210bf7 zerocopy_sg_from_iter -EXPORT_SYMBOL vmlinux 0xc7330160 seq_release -EXPORT_SYMBOL vmlinux 0xc749a8fd tty_unregister_driver -EXPORT_SYMBOL vmlinux 0xc74d51c5 finish_open -EXPORT_SYMBOL vmlinux 0xc74de32e neigh_changeaddr -EXPORT_SYMBOL vmlinux 0xc77e34d9 pci_release_selected_regions +EXPORT_SYMBOL vmlinux 0xc72f3510 generic_iommu_put_resv_regions +EXPORT_SYMBOL vmlinux 0xc74bda00 tty_register_driver +EXPORT_SYMBOL vmlinux 0xc7690883 wait_on_page_bit EXPORT_SYMBOL vmlinux 0xc781bd9f rfkill_resume_polling +EXPORT_SYMBOL vmlinux 0xc7852744 __inode_add_bytes EXPORT_SYMBOL vmlinux 0xc7856a3d inet6addr_notifier_call_chain -EXPORT_SYMBOL vmlinux 0xc7927716 pci_bus_claim_resources -EXPORT_SYMBOL vmlinux 0xc79ab4ac setup_arg_pages +EXPORT_SYMBOL vmlinux 0xc7880f6d inet_del_offload +EXPORT_SYMBOL vmlinux 0xc79c55e4 fib_notifier_ops_register +EXPORT_SYMBOL vmlinux 0xc79fad87 reuseport_attach_prog EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock +EXPORT_SYMBOL vmlinux 0xc7b06662 key_payload_reserve +EXPORT_SYMBOL vmlinux 0xc7b07888 acpi_notifier_call_chain +EXPORT_SYMBOL vmlinux 0xc7b1b1dc migrate_page_states +EXPORT_SYMBOL vmlinux 0xc7b5c414 skb_copy_datagram_from_iter +EXPORT_SYMBOL vmlinux 0xc7b7dda9 tty_port_tty_set EXPORT_SYMBOL vmlinux 0xc7c1107a LZ4_decompress_safe -EXPORT_SYMBOL vmlinux 0xc7c150c3 seq_read -EXPORT_SYMBOL vmlinux 0xc7c3dd17 alloc_pages EXPORT_SYMBOL vmlinux 0xc7d094b5 dm_read_arg_group -EXPORT_SYMBOL vmlinux 0xc7f62d79 napi_schedule_prep -EXPORT_SYMBOL vmlinux 0xc8025473 truncate_setsize +EXPORT_SYMBOL vmlinux 0xc7e9d43a put_devmap_managed_page +EXPORT_SYMBOL vmlinux 0xc8077e74 input_free_device EXPORT_SYMBOL vmlinux 0xc80ab559 swake_up_one -EXPORT_SYMBOL vmlinux 0xc80f47eb mntget -EXPORT_SYMBOL vmlinux 0xc8354c10 __dev_direct_xmit +EXPORT_SYMBOL vmlinux 0xc80eba9b tcf_qevent_dump +EXPORT_SYMBOL vmlinux 0xc81b81ac acpi_pm_device_sleep_state +EXPORT_SYMBOL vmlinux 0xc83492ef kmalloc_caches +EXPORT_SYMBOL vmlinux 0xc83ef10e tcp_sendpage EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu -EXPORT_SYMBOL vmlinux 0xc85deaff get_acl -EXPORT_SYMBOL vmlinux 0xc8655c21 jbd2_journal_free_reserved -EXPORT_SYMBOL vmlinux 0xc86f5028 nd_btt_arena_is_valid -EXPORT_SYMBOL vmlinux 0xc8728c9d dma_sync_wait +EXPORT_SYMBOL vmlinux 0xc870e905 sock_create_kern EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes +EXPORT_SYMBOL vmlinux 0xc87e7352 netlink_broadcast EXPORT_SYMBOL vmlinux 0xc8827b75 sysctl_vals -EXPORT_SYMBOL vmlinux 0xc88a5908 ptp_clock_register EXPORT_SYMBOL vmlinux 0xc890c008 zlib_deflateEnd -EXPORT_SYMBOL vmlinux 0xc8974b48 skb_flow_dissect_meta -EXPORT_SYMBOL vmlinux 0xc8a6a784 d_obtain_alias EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread -EXPORT_SYMBOL vmlinux 0xc8b6be6c seg6_hmac_info_lookup -EXPORT_SYMBOL vmlinux 0xc8cdfe11 put_cmsg -EXPORT_SYMBOL vmlinux 0xc8d72be6 tty_wait_until_sent +EXPORT_SYMBOL vmlinux 0xc8b5c0ae security_unix_may_send +EXPORT_SYMBOL vmlinux 0xc8cb5ff3 __mmap_lock_do_trace_released +EXPORT_SYMBOL vmlinux 0xc8d90458 filp_open EXPORT_SYMBOL vmlinux 0xc8dcc62a krealloc -EXPORT_SYMBOL vmlinux 0xc8de24f9 qdisc_hash_add -EXPORT_SYMBOL vmlinux 0xc8fcf6a5 inode_set_bytes -EXPORT_SYMBOL vmlinux 0xc919de6c follow_up -EXPORT_SYMBOL vmlinux 0xc9210ebf vme_slave_request +EXPORT_SYMBOL vmlinux 0xc8dd6c52 mntget +EXPORT_SYMBOL vmlinux 0xc8fa4765 sched_autogroup_create_attach +EXPORT_SYMBOL vmlinux 0xc8fb2544 scsi_get_host_dev +EXPORT_SYMBOL vmlinux 0xc904c9a7 md_check_recovery +EXPORT_SYMBOL vmlinux 0xc90e1f2a path_is_mountpoint +EXPORT_SYMBOL vmlinux 0xc90ee5dc ___pskb_trim +EXPORT_SYMBOL vmlinux 0xc90feeb1 rc5t583_ext_power_req_config +EXPORT_SYMBOL vmlinux 0xc912b4bb filemap_invalidate_unlock_two EXPORT_SYMBOL vmlinux 0xc9216a82 recalibrate_cpu_khz -EXPORT_SYMBOL vmlinux 0xc922be09 vme_master_mmap -EXPORT_SYMBOL vmlinux 0xc92a4021 mr_dump +EXPORT_SYMBOL vmlinux 0xc9244936 scsi_print_sense +EXPORT_SYMBOL vmlinux 0xc92ade81 security_lock_kernel_down +EXPORT_SYMBOL vmlinux 0xc93ab26a xfrm6_rcv_encap EXPORT_SYMBOL vmlinux 0xc93e8461 acpi_get_event_resources -EXPORT_SYMBOL vmlinux 0xc9562e0b __netif_schedule +EXPORT_SYMBOL vmlinux 0xc953df5a locks_copy_conflock EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters EXPORT_SYMBOL vmlinux 0xc972449f mempool_alloc_slab -EXPORT_SYMBOL vmlinux 0xc97830dc dev_pick_tx_zero -EXPORT_SYMBOL vmlinux 0xc97e8d86 noop_llseek EXPORT_SYMBOL vmlinux 0xc9822234 clk_register_clkdev EXPORT_SYMBOL vmlinux 0xc9831ad7 flow_keys_dissector +EXPORT_SYMBOL vmlinux 0xc98a970c rfkill_alloc EXPORT_SYMBOL vmlinux 0xc99e2a55 twl_rev +EXPORT_SYMBOL vmlinux 0xc9aad668 ndo_dflt_fdb_dump +EXPORT_SYMBOL vmlinux 0xc9b0cb21 devm_register_netdev EXPORT_SYMBOL vmlinux 0xc9b33111 cpumask_any_distribute -EXPORT_SYMBOL vmlinux 0xc9cd9d2a may_setattr +EXPORT_SYMBOL vmlinux 0xc9c24801 xp_raw_get_data +EXPORT_SYMBOL vmlinux 0xc9ca884c register_netdevice_notifier_dev_net +EXPORT_SYMBOL vmlinux 0xc9d4126a jbd2_journal_set_triggers EXPORT_SYMBOL vmlinux 0xc9df055a xfrm_policy_walk_init -EXPORT_SYMBOL vmlinux 0xc9e98bd8 sock_no_socketpair -EXPORT_SYMBOL vmlinux 0xc9eb546b rproc_report_crash +EXPORT_SYMBOL vmlinux 0xc9e281da path_put +EXPORT_SYMBOL vmlinux 0xc9ef0765 skb_clone EXPORT_SYMBOL vmlinux 0xc9f34c1d acpi_acquire_global_lock -EXPORT_SYMBOL vmlinux 0xc9fab121 rt_dst_clone -EXPORT_SYMBOL vmlinux 0xc9fe2d4c dev_get_by_napi_id +EXPORT_SYMBOL vmlinux 0xc9fdf322 rt6_lookup +EXPORT_SYMBOL vmlinux 0xca02072d simple_pin_fs +EXPORT_SYMBOL vmlinux 0xca0f9cb9 vfs_dedupe_file_range EXPORT_SYMBOL vmlinux 0xca15413f ZSTD_resetDStream EXPORT_SYMBOL vmlinux 0xca21ebd3 bitmap_free +EXPORT_SYMBOL vmlinux 0xca3816f8 xfrm_unregister_type EXPORT_SYMBOL vmlinux 0xca431c05 wake_bit_function -EXPORT_SYMBOL vmlinux 0xca52b6fa mipi_dsi_dcs_set_page_address -EXPORT_SYMBOL vmlinux 0xca7d92c4 max8998_update_reg -EXPORT_SYMBOL vmlinux 0xca82e40a xp_set_rxq_info -EXPORT_SYMBOL vmlinux 0xca88b1cf __alloc_pages +EXPORT_SYMBOL vmlinux 0xca5655cd no_seek_end_llseek_size +EXPORT_SYMBOL vmlinux 0xca7912dc block_write_end +EXPORT_SYMBOL vmlinux 0xca7b3a21 agp_bridge +EXPORT_SYMBOL vmlinux 0xca8bb4cb con_set_default_unimap EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next -EXPORT_SYMBOL vmlinux 0xca9b2040 migrate_page_states EXPORT_SYMBOL vmlinux 0xca9beaa4 __xa_store -EXPORT_SYMBOL vmlinux 0xcaa2ede5 __cleancache_invalidate_inode -EXPORT_SYMBOL vmlinux 0xcaa7b161 param_ops_bint -EXPORT_SYMBOL vmlinux 0xcaa80741 dev_addr_init -EXPORT_SYMBOL vmlinux 0xcab99919 netdev_printk -EXPORT_SYMBOL vmlinux 0xcabd2f09 mipi_dsi_dcs_set_pixel_format +EXPORT_SYMBOL vmlinux 0xcaa04ea9 dm_table_get_size +EXPORT_SYMBOL vmlinux 0xcabbfbec xp_raw_get_dma EXPORT_SYMBOL vmlinux 0xcad1aca8 acpi_exception -EXPORT_SYMBOL vmlinux 0xcadd537d vmf_insert_pfn_prot -EXPORT_SYMBOL vmlinux 0xcaf055c3 dqget +EXPORT_SYMBOL vmlinux 0xcadbde0e devfreq_remove_device +EXPORT_SYMBOL vmlinux 0xcaecdb5a unregister_nexthop_notifier EXPORT_SYMBOL vmlinux 0xcaf2c603 scsi_sd_pm_domain +EXPORT_SYMBOL vmlinux 0xcaf89d98 flow_block_cb_decref EXPORT_SYMBOL vmlinux 0xcb0288ea ledtrig_cpu -EXPORT_SYMBOL vmlinux 0xcb0c4af5 rproc_boot -EXPORT_SYMBOL vmlinux 0xcb35bffc kernel_accept +EXPORT_SYMBOL vmlinux 0xcb05cefb get_tree_keyed +EXPORT_SYMBOL vmlinux 0xcb22ddeb pci_find_bus +EXPORT_SYMBOL vmlinux 0xcb371b4c acpi_processor_notify_smm EXPORT_SYMBOL vmlinux 0xcb3ae215 call_blocking_lsm_notifier -EXPORT_SYMBOL vmlinux 0xcb3d26d6 __skb_warn_lro_forwarding -EXPORT_SYMBOL vmlinux 0xcb44f8f8 __netif_napi_del -EXPORT_SYMBOL vmlinux 0xcb4b405d phy_write_mmd +EXPORT_SYMBOL vmlinux 0xcb440b5e module_layout +EXPORT_SYMBOL vmlinux 0xcb495aea fd_install +EXPORT_SYMBOL vmlinux 0xcb5553c5 skb_add_rx_frag +EXPORT_SYMBOL vmlinux 0xcb597227 dquot_initialize +EXPORT_SYMBOL vmlinux 0xcb64726b devm_memunmap +EXPORT_SYMBOL vmlinux 0xcb6a46ba blackhole_netdev +EXPORT_SYMBOL vmlinux 0xcb6fc8e2 dev_addr_add +EXPORT_SYMBOL vmlinux 0xcb7024a4 agp_create_memory EXPORT_SYMBOL vmlinux 0xcb733bf2 acpi_bus_set_power -EXPORT_SYMBOL vmlinux 0xcb7bc1a6 dma_resv_reserve_shared -EXPORT_SYMBOL vmlinux 0xcb9f6a90 pcie_capability_read_word -EXPORT_SYMBOL vmlinux 0xcba48d39 key_link -EXPORT_SYMBOL vmlinux 0xcbadd9d6 __blkdev_issue_zeroout -EXPORT_SYMBOL vmlinux 0xcbc6deae proc_create +EXPORT_SYMBOL vmlinux 0xcb742707 twl6030_mmc_card_detect +EXPORT_SYMBOL vmlinux 0xcb98503c __netlink_ns_capable +EXPORT_SYMBOL vmlinux 0xcba7bcab amd_iommu_complete_ppr +EXPORT_SYMBOL vmlinux 0xcbb9c0ac find_inode_rcu EXPORT_SYMBOL vmlinux 0xcbc88a23 ZSTD_isFrame -EXPORT_SYMBOL vmlinux 0xcbcd9d43 blk_mq_complete_request EXPORT_SYMBOL vmlinux 0xcbd4898c fortify_panic EXPORT_SYMBOL vmlinux 0xcbe53c46 convert_art_to_tsc -EXPORT_SYMBOL vmlinux 0xcbf5a0c0 vme_irq_request EXPORT_SYMBOL vmlinux 0xcbfb33e4 init_opal_dev -EXPORT_SYMBOL vmlinux 0xcc0f73e1 inet_frag_destroy +EXPORT_SYMBOL vmlinux 0xcc092313 nd_device_unregister +EXPORT_SYMBOL vmlinux 0xcc0f4bb8 d_lookup EXPORT_SYMBOL vmlinux 0xcc1b882a idr_get_next_ul +EXPORT_SYMBOL vmlinux 0xcc22a788 d_hash_and_lookup EXPORT_SYMBOL vmlinux 0xcc23002a hdmi_infoframe_pack_only EXPORT_SYMBOL vmlinux 0xcc248d26 serial8250_suspend_port -EXPORT_SYMBOL vmlinux 0xcc27c5d3 touch_atime -EXPORT_SYMBOL vmlinux 0xcc2a99c4 fuse_mount_destroy +EXPORT_SYMBOL vmlinux 0xcc279f00 agp_generic_destroy_page EXPORT_SYMBOL vmlinux 0xcc328a5c reservation_ww_class -EXPORT_SYMBOL vmlinux 0xcc41e8d9 param_set_charp EXPORT_SYMBOL vmlinux 0xcc445ceb __sg_page_iter_dma_next -EXPORT_SYMBOL vmlinux 0xcc4c1961 inet_stream_connect +EXPORT_SYMBOL vmlinux 0xcc4579f7 sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0xcc465a25 __cgroup_bpf_run_filter_sock_addr EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible +EXPORT_SYMBOL vmlinux 0xcc5c1911 cdrom_mode_sense EXPORT_SYMBOL vmlinux 0xcc5c2df4 trace_print_symbols_seq EXPORT_SYMBOL vmlinux 0xcc5d22d9 can_do_mlock -EXPORT_SYMBOL vmlinux 0xcc9405b2 fscrypt_has_permitted_context -EXPORT_SYMBOL vmlinux 0xcc96c1a8 __qdisc_calculate_pkt_len +EXPORT_SYMBOL vmlinux 0xcc70a290 register_mii_timestamper +EXPORT_SYMBOL vmlinux 0xcc7b9d88 __ip_queue_xmit +EXPORT_SYMBOL vmlinux 0xcc8d913b key_move +EXPORT_SYMBOL vmlinux 0xcc90bbaa netlink_net_capable EXPORT_SYMBOL vmlinux 0xcca5839d xen_vcpu_id -EXPORT_SYMBOL vmlinux 0xccc792a2 remove_arg_zero -EXPORT_SYMBOL vmlinux 0xccd38656 fs_context_for_reconfigure +EXPORT_SYMBOL vmlinux 0xccbe41dc __SCK__tp_func_kfree EXPORT_SYMBOL vmlinux 0xccd4c999 __sg_page_iter_start -EXPORT_SYMBOL vmlinux 0xccd661ec security_sb_remount -EXPORT_SYMBOL vmlinux 0xcce1490c tty_driver_kref_put -EXPORT_SYMBOL vmlinux 0xcce7936b param_get_charp +EXPORT_SYMBOL vmlinux 0xccd8b300 blk_queue_alignment_offset +EXPORT_SYMBOL vmlinux 0xcce1b5f8 get_user_pages_locked EXPORT_SYMBOL vmlinux 0xccef37e4 ZSTD_DStreamOutSize 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 0xcd116517 vfs_link -EXPORT_SYMBOL vmlinux 0xcd1472e8 pci_release_regions -EXPORT_SYMBOL vmlinux 0xcd1587bc netlink_broadcast_filtered -EXPORT_SYMBOL vmlinux 0xcd1e4ab9 mmc_command_done -EXPORT_SYMBOL vmlinux 0xcd24a11f keyring_search +EXPORT_SYMBOL vmlinux 0xcd0615bc __phy_write_mmd +EXPORT_SYMBOL vmlinux 0xcd0b3c57 block_page_mkwrite EXPORT_SYMBOL vmlinux 0xcd256667 tcp_md5_needed EXPORT_SYMBOL vmlinux 0xcd279169 nla_find -EXPORT_SYMBOL vmlinux 0xcd5ca4e5 i2c_smbus_write_block_data -EXPORT_SYMBOL vmlinux 0xcd61611e mipi_dsi_dcs_set_display_brightness -EXPORT_SYMBOL vmlinux 0xcd706b2d devfreq_monitor_stop -EXPORT_SYMBOL vmlinux 0xcd8c1e96 import_single_range +EXPORT_SYMBOL vmlinux 0xcd380335 seq_release +EXPORT_SYMBOL vmlinux 0xcd751e65 dev_mc_add_global +EXPORT_SYMBOL vmlinux 0xcd7bc171 fs_param_is_enum EXPORT_SYMBOL vmlinux 0xcd8ce890 acpi_format_exception -EXPORT_SYMBOL vmlinux 0xcd975875 pci_read_config_dword -EXPORT_SYMBOL vmlinux 0xcd9dadbe dcb_ieee_getapp_dscp_prio_mask_map -EXPORT_SYMBOL vmlinux 0xcdb67d4d copy_page_from_iter_atomic +EXPORT_SYMBOL vmlinux 0xcda3100f sock_gettstamp +EXPORT_SYMBOL vmlinux 0xcda6e974 filemap_flush +EXPORT_SYMBOL vmlinux 0xcdae49e1 param_get_uint +EXPORT_SYMBOL vmlinux 0xcdb038c4 input_inject_event EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel -EXPORT_SYMBOL vmlinux 0xcdd60175 datagram_poll -EXPORT_SYMBOL vmlinux 0xcde54d31 blk_rq_count_integrity_sg +EXPORT_SYMBOL vmlinux 0xcddc77bc mount_subtree EXPORT_SYMBOL vmlinux 0xcde77bcc free_opal_dev -EXPORT_SYMBOL vmlinux 0xcdebd4ae genlmsg_put -EXPORT_SYMBOL vmlinux 0xcdf11c49 mr_vif_seq_next -EXPORT_SYMBOL vmlinux 0xcdf7ea8c dev_uc_init -EXPORT_SYMBOL vmlinux 0xce025a55 nd_region_release_lane +EXPORT_SYMBOL vmlinux 0xcdf3c15f udp_gro_complete +EXPORT_SYMBOL vmlinux 0xcdfb3fad submit_bio +EXPORT_SYMBOL vmlinux 0xce053976 skb_push EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake -EXPORT_SYMBOL vmlinux 0xce4b06e7 vga_switcheroo_register_client +EXPORT_SYMBOL vmlinux 0xce301b0c i2c_add_adapter +EXPORT_SYMBOL vmlinux 0xce313745 tcf_get_next_chain +EXPORT_SYMBOL vmlinux 0xce42594e netpoll_parse_options EXPORT_SYMBOL vmlinux 0xce4cdb8e fb_find_best_mode -EXPORT_SYMBOL vmlinux 0xce4e1908 skb_put EXPORT_SYMBOL vmlinux 0xce4e47b6 __kfifo_skip_r +EXPORT_SYMBOL vmlinux 0xce4ed5e2 unmap_mapping_range +EXPORT_SYMBOL vmlinux 0xce55db1a param_ops_long +EXPORT_SYMBOL vmlinux 0xce58dba9 pci_map_biosrom EXPORT_SYMBOL vmlinux 0xce5ac24f zlib_inflate_workspacesize -EXPORT_SYMBOL vmlinux 0xce5ccacb tcf_unregister_action -EXPORT_SYMBOL vmlinux 0xce6d0583 phy_read_paged EXPORT_SYMBOL vmlinux 0xce76c257 acpi_get_irq_routing_table +EXPORT_SYMBOL vmlinux 0xce7eec7f netdev_master_upper_dev_link EXPORT_SYMBOL vmlinux 0xce807a25 up_write -EXPORT_SYMBOL vmlinux 0xce83f938 inet6_add_protocol -EXPORT_SYMBOL vmlinux 0xce8d5471 __cgroup_bpf_run_filter_sock_ops -EXPORT_SYMBOL vmlinux 0xce912965 crypto_sha512_finup -EXPORT_SYMBOL vmlinux 0xce9ea517 param_set_hexint EXPORT_SYMBOL vmlinux 0xcea381dd x86_match_cpu EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul -EXPORT_SYMBOL vmlinux 0xceaf298a uart_update_timeout -EXPORT_SYMBOL vmlinux 0xcec5e7cb sb_set_blocksize +EXPORT_SYMBOL vmlinux 0xceb70310 frontswap_register_ops +EXPORT_SYMBOL vmlinux 0xcec06a10 pci_release_selected_regions EXPORT_SYMBOL vmlinux 0xced0f4d4 gen_pool_create -EXPORT_SYMBOL vmlinux 0xced9082d input_register_device -EXPORT_SYMBOL vmlinux 0xcee95219 phy_ethtool_get_strings +EXPORT_SYMBOL vmlinux 0xced77e58 trace_raw_output_prep EXPORT_SYMBOL vmlinux 0xceec8abd __mb_cache_entry_free +EXPORT_SYMBOL vmlinux 0xcef3a3b0 file_fdatawait_range +EXPORT_SYMBOL vmlinux 0xcef79383 mmc_unregister_driver EXPORT_SYMBOL vmlinux 0xcefb0c9f __mutex_init EXPORT_SYMBOL vmlinux 0xcefcd99a serial8250_unregister_port -EXPORT_SYMBOL vmlinux 0xcf06dc1d migrate_page_copy -EXPORT_SYMBOL vmlinux 0xcf0e1377 km_query +EXPORT_SYMBOL vmlinux 0xcefe5127 generic_file_splice_read +EXPORT_SYMBOL vmlinux 0xcf02d6a2 mr_mfc_find_parent +EXPORT_SYMBOL vmlinux 0xcf08d3b6 __dec_node_page_state +EXPORT_SYMBOL vmlinux 0xcf229f9e dump_emit +EXPORT_SYMBOL vmlinux 0xcf237c93 dma_sync_single_for_cpu EXPORT_SYMBOL vmlinux 0xcf2a6966 up -EXPORT_SYMBOL vmlinux 0xcf353e96 inet_recvmsg +EXPORT_SYMBOL vmlinux 0xcf4191c9 ppp_unit_number +EXPORT_SYMBOL vmlinux 0xcf48d9ba tty_wait_until_sent +EXPORT_SYMBOL vmlinux 0xcf496b6f __block_write_begin +EXPORT_SYMBOL vmlinux 0xcf4d6de3 fs_param_is_bool EXPORT_SYMBOL vmlinux 0xcf4fdd4d _atomic_dec_and_lock -EXPORT_SYMBOL vmlinux 0xcf8cd0f7 kill_pgrp +EXPORT_SYMBOL vmlinux 0xcf622f3d __skb_free_datagram_locked +EXPORT_SYMBOL vmlinux 0xcf644742 vlan_dev_vlan_id +EXPORT_SYMBOL vmlinux 0xcf6b400a get_cached_acl +EXPORT_SYMBOL vmlinux 0xcf6cc643 __dynamic_dev_dbg +EXPORT_SYMBOL vmlinux 0xcf729eb5 simple_getattr +EXPORT_SYMBOL vmlinux 0xcf8afbe8 nf_unregister_net_hook EXPORT_SYMBOL vmlinux 0xcf9b558d touchscreen_set_mt_pos EXPORT_SYMBOL vmlinux 0xcfa7e913 posix_acl_valid -EXPORT_SYMBOL vmlinux 0xcfa94170 udp6_seq_ops -EXPORT_SYMBOL vmlinux 0xcfab90c4 __devm_request_region -EXPORT_SYMBOL vmlinux 0xcfb69ae3 skb_copy_datagram_iter -EXPORT_SYMBOL vmlinux 0xcfc7152a module_put +EXPORT_SYMBOL vmlinux 0xcfacdd5f sock_no_getname +EXPORT_SYMBOL vmlinux 0xcfba62a1 seq_path +EXPORT_SYMBOL vmlinux 0xcfbfc1e0 simple_transaction_get +EXPORT_SYMBOL vmlinux 0xcfc42682 padata_free +EXPORT_SYMBOL vmlinux 0xcfc61c6f __vlan_find_dev_deep_rcu +EXPORT_SYMBOL vmlinux 0xcfc91613 current_time EXPORT_SYMBOL vmlinux 0xcfc9deaf atomic_dec_and_mutex_lock EXPORT_SYMBOL vmlinux 0xcfd884a8 __hsiphash_unaligned -EXPORT_SYMBOL vmlinux 0xcfe747e6 md_bitmap_endwrite -EXPORT_SYMBOL vmlinux 0xcff3d3fe tc_setup_flow_action -EXPORT_SYMBOL vmlinux 0xcff4d609 pagecache_write_end -EXPORT_SYMBOL vmlinux 0xcffc8c93 rproc_add_subdev -EXPORT_SYMBOL vmlinux 0xd00dac64 ethtool_rx_flow_rule_create -EXPORT_SYMBOL vmlinux 0xd02c36b7 blk_get_queue +EXPORT_SYMBOL vmlinux 0xcff27c63 tcf_chain_get_by_act +EXPORT_SYMBOL vmlinux 0xd00940f4 vfio_unpin_pages +EXPORT_SYMBOL vmlinux 0xd0188843 blk_queue_update_dma_alignment +EXPORT_SYMBOL vmlinux 0xd0192e44 eth_gro_receive +EXPORT_SYMBOL vmlinux 0xd02bb253 security_d_instantiate +EXPORT_SYMBOL vmlinux 0xd02bf827 md_bitmap_startwrite +EXPORT_SYMBOL vmlinux 0xd041a9e6 __sock_cmsg_send EXPORT_SYMBOL vmlinux 0xd04c1a64 sysctl_devconf_inherit_init_net -EXPORT_SYMBOL vmlinux 0xd05c369b icmp_ndo_send +EXPORT_SYMBOL vmlinux 0xd04f43e8 unix_detach_fds EXPORT_SYMBOL vmlinux 0xd0654aba woken_wake_function -EXPORT_SYMBOL vmlinux 0xd070ea0e xfrm_unregister_km EXPORT_SYMBOL vmlinux 0xd0760fc0 kfree_sensitive -EXPORT_SYMBOL vmlinux 0xd0761731 flow_rule_alloc -EXPORT_SYMBOL vmlinux 0xd07b9a96 sock_set_sndtimeo -EXPORT_SYMBOL vmlinux 0xd07f452e eth_header -EXPORT_SYMBOL vmlinux 0xd086a177 acpi_bus_register_driver +EXPORT_SYMBOL vmlinux 0xd07dd611 inet_get_local_port_range +EXPORT_SYMBOL vmlinux 0xd07e9ad7 blk_queue_max_segments EXPORT_SYMBOL vmlinux 0xd08adb2b trace_seq_hex_dump -EXPORT_SYMBOL vmlinux 0xd09cbd2e kiocb_set_cancel_fn -EXPORT_SYMBOL vmlinux 0xd09ffe63 vga_switcheroo_unlock_ddc +EXPORT_SYMBOL vmlinux 0xd08bda26 ip6_fraglist_init +EXPORT_SYMBOL vmlinux 0xd090d965 t10_pi_type1_ip +EXPORT_SYMBOL vmlinux 0xd0a988e9 set_page_dirty_lock EXPORT_SYMBOL vmlinux 0xd0ae5f55 __printk_cpu_trylock EXPORT_SYMBOL vmlinux 0xd0b74705 acpi_install_interface -EXPORT_SYMBOL vmlinux 0xd0bd46ca dev_driver_string -EXPORT_SYMBOL vmlinux 0xd0c51d40 scsi_change_queue_depth -EXPORT_SYMBOL vmlinux 0xd0cd5e45 skb_eth_push -EXPORT_SYMBOL vmlinux 0xd0cdbbd1 fwnode_mdio_find_device +EXPORT_SYMBOL vmlinux 0xd0b79180 blk_mq_start_request +EXPORT_SYMBOL vmlinux 0xd0c7f5dc param_get_invbool EXPORT_SYMBOL vmlinux 0xd0da656b __stack_chk_fail -EXPORT_SYMBOL vmlinux 0xd0e47a0d fwnode_mdiobus_phy_device_register -EXPORT_SYMBOL vmlinux 0xd0ee7657 debugfs_create_automount +EXPORT_SYMBOL vmlinux 0xd0ece1d0 security_sk_clone EXPORT_SYMBOL vmlinux 0xd0f284b8 mmiotrace_printk +EXPORT_SYMBOL vmlinux 0xd0f67c53 dcb_ieee_delapp +EXPORT_SYMBOL vmlinux 0xd0f86e6e dm_get_device EXPORT_SYMBOL vmlinux 0xd0fe8d51 sg_pcopy_from_buffer EXPORT_SYMBOL vmlinux 0xd0fef3b2 agp_free_key -EXPORT_SYMBOL vmlinux 0xd102c885 rproc_remove_subdev -EXPORT_SYMBOL vmlinux 0xd10866df blk_rq_map_integrity_sg -EXPORT_SYMBOL vmlinux 0xd12895da phy_resume -EXPORT_SYMBOL vmlinux 0xd134fb59 dst_init +EXPORT_SYMBOL vmlinux 0xd11b60c6 gnet_stats_copy_rate_est +EXPORT_SYMBOL vmlinux 0xd11b7b42 dm_kcopyd_zero +EXPORT_SYMBOL vmlinux 0xd1278887 input_get_poll_interval +EXPORT_SYMBOL vmlinux 0xd1341534 phy_ethtool_get_sset_count EXPORT_SYMBOL vmlinux 0xd1363cc1 ucs2_strsize -EXPORT_SYMBOL vmlinux 0xd1475e82 bio_integrity_clone EXPORT_SYMBOL vmlinux 0xd15eada0 nla_reserve -EXPORT_SYMBOL vmlinux 0xd170bd9b super_setup_bdi_name -EXPORT_SYMBOL vmlinux 0xd1729b50 ptp_find_pin +EXPORT_SYMBOL vmlinux 0xd16ef55c key_unlink +EXPORT_SYMBOL vmlinux 0xd171f438 bio_endio EXPORT_SYMBOL vmlinux 0xd1769161 kobject_get -EXPORT_SYMBOL vmlinux 0xd17ff9dd inet_sock_destruct EXPORT_SYMBOL vmlinux 0xd1816f32 frontswap_writethrough -EXPORT_SYMBOL vmlinux 0xd1893052 vfio_unregister_notifier +EXPORT_SYMBOL vmlinux 0xd193830a tcp_v4_destroy_sock EXPORT_SYMBOL vmlinux 0xd194ddf9 acpi_gpe_count -EXPORT_SYMBOL vmlinux 0xd1b1a430 fb_set_var -EXPORT_SYMBOL vmlinux 0xd1bc8a8f flow_rule_match_basic -EXPORT_SYMBOL vmlinux 0xd1c2106b dm_kobject_release -EXPORT_SYMBOL vmlinux 0xd1cb693e tty_unlock +EXPORT_SYMBOL vmlinux 0xd1a8db29 xfrm_lookup_route +EXPORT_SYMBOL vmlinux 0xd1c63e32 napi_enable EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string -EXPORT_SYMBOL vmlinux 0xd1e2cb72 pci_request_selected_regions_exclusive -EXPORT_SYMBOL vmlinux 0xd1f25a9c inet_put_port EXPORT_SYMBOL vmlinux 0xd1f60a89 arch_io_free_memtype_wc EXPORT_SYMBOL vmlinux 0xd1f6c5f3 smp_num_siblings -EXPORT_SYMBOL vmlinux 0xd1f6db40 copy_page_to_iter -EXPORT_SYMBOL vmlinux 0xd1f7511f devm_devfreq_remove_device -EXPORT_SYMBOL vmlinux 0xd206f33a tty_write_room -EXPORT_SYMBOL vmlinux 0xd2071d99 bdev_check_media_change -EXPORT_SYMBOL vmlinux 0xd209b1ce __neigh_event_send -EXPORT_SYMBOL vmlinux 0xd213578b mmc_remove_host +EXPORT_SYMBOL vmlinux 0xd1f8df1f blk_mq_complete_request +EXPORT_SYMBOL vmlinux 0xd1f920cf elv_rb_former_request +EXPORT_SYMBOL vmlinux 0xd20045bf reuseport_alloc +EXPORT_SYMBOL vmlinux 0xd2040e9f inode_io_list_del +EXPORT_SYMBOL vmlinux 0xd2186f99 remove_arg_zero EXPORT_SYMBOL vmlinux 0xd21c5139 iowrite64_lo_hi EXPORT_SYMBOL vmlinux 0xd2237016 radix_tree_delete_item +EXPORT_SYMBOL vmlinux 0xd244cf16 netdev_rx_csum_fault +EXPORT_SYMBOL vmlinux 0xd2475c9b phy_start_cable_test_tdr EXPORT_SYMBOL vmlinux 0xd25d4f74 console_blank_hook -EXPORT_SYMBOL vmlinux 0xd264ee30 mmc_gpio_set_cd_isr -EXPORT_SYMBOL vmlinux 0xd26930cb put_cmsg_scm_timestamping64 -EXPORT_SYMBOL vmlinux 0xd26df6cc mfd_remove_devices_late +EXPORT_SYMBOL vmlinux 0xd264a9db tcf_block_get_ext +EXPORT_SYMBOL vmlinux 0xd27052e9 param_array_ops EXPORT_SYMBOL vmlinux 0xd2779731 blk_limits_io_min EXPORT_SYMBOL vmlinux 0xd27b25dd blk_check_plugged -EXPORT_SYMBOL vmlinux 0xd2913759 tcp_child_process -EXPORT_SYMBOL vmlinux 0xd29de9f1 bio_kmalloc +EXPORT_SYMBOL vmlinux 0xd2800691 nf_conntrack_destroy +EXPORT_SYMBOL vmlinux 0xd2818730 truncate_inode_pages_final EXPORT_SYMBOL vmlinux 0xd2bc5c46 __get_user_nocheck_2 -EXPORT_SYMBOL vmlinux 0xd2c5a9b6 generic_perform_write -EXPORT_SYMBOL vmlinux 0xd2c5e03d pm_vt_switch_required EXPORT_SYMBOL vmlinux 0xd2c99738 __kmalloc_track_caller +EXPORT_SYMBOL vmlinux 0xd2d27f48 generic_ro_fops +EXPORT_SYMBOL vmlinux 0xd2d5cef7 __set_page_dirty_no_writeback EXPORT_SYMBOL vmlinux 0xd2d7a581 __register_nls EXPORT_SYMBOL vmlinux 0xd2da1048 register_netdevice_notifier -EXPORT_SYMBOL vmlinux 0xd2da215b block_page_mkwrite +EXPORT_SYMBOL vmlinux 0xd2dd1f19 rtnetlink_put_metrics +EXPORT_SYMBOL vmlinux 0xd2de7e3c pm860x_reg_write EXPORT_SYMBOL vmlinux 0xd2e2a9d0 hdmi_spd_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0xd2e6037f jbd2_trans_will_send_data_barrier +EXPORT_SYMBOL vmlinux 0xd2e43462 security_dentry_create_files_as EXPORT_SYMBOL vmlinux 0xd2ea49b8 acpi_leave_sleep_state_prep -EXPORT_SYMBOL vmlinux 0xd2f01102 scsi_remove_target -EXPORT_SYMBOL vmlinux 0xd304451a __scsi_print_sense -EXPORT_SYMBOL vmlinux 0xd31034c0 phy_reset_after_clk_enable +EXPORT_SYMBOL vmlinux 0xd313525a unpin_user_pages +EXPORT_SYMBOL vmlinux 0xd316666b __tracepoint_kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0xd3206ce7 __vfs_setxattr +EXPORT_SYMBOL vmlinux 0xd3245227 _copy_to_iter +EXPORT_SYMBOL vmlinux 0xd3373f6e inode_nohighmem EXPORT_SYMBOL vmlinux 0xd338ea7e __SCT__tp_func_kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0xd34335f8 ipmr_rule_default -EXPORT_SYMBOL vmlinux 0xd344478a mipi_dsi_driver_unregister -EXPORT_SYMBOL vmlinux 0xd34cd1fe amd_iommu_domain_direct_map EXPORT_SYMBOL vmlinux 0xd3543063 memcg_kmem_enabled_key EXPORT_SYMBOL vmlinux 0xd35a6d31 mempool_kmalloc EXPORT_SYMBOL vmlinux 0xd35cce70 _raw_spin_unlock_irqrestore -EXPORT_SYMBOL vmlinux 0xd364c90d backlight_device_get_by_name +EXPORT_SYMBOL vmlinux 0xd3696b9a kernel_param_unlock EXPORT_SYMBOL vmlinux 0xd36dc10c get_random_u32 EXPORT_SYMBOL vmlinux 0xd36e3d59 prandom_bytes_state -EXPORT_SYMBOL vmlinux 0xd384943a pneigh_lookup +EXPORT_SYMBOL vmlinux 0xd37b51a1 mipi_dsi_dcs_set_pixel_format EXPORT_SYMBOL vmlinux 0xd38cd261 __default_kernel_pte_mask -EXPORT_SYMBOL vmlinux 0xd393fa22 filemap_fault -EXPORT_SYMBOL vmlinux 0xd3959a1a mmc_unregister_driver -EXPORT_SYMBOL vmlinux 0xd3a1420c __starget_for_each_device -EXPORT_SYMBOL vmlinux 0xd3b45d3e pm860x_reg_write -EXPORT_SYMBOL vmlinux 0xd3bc1af1 grab_cache_page_write_begin -EXPORT_SYMBOL vmlinux 0xd3c0c9df ppp_register_net_channel -EXPORT_SYMBOL vmlinux 0xd3d3e98a fd_install +EXPORT_SYMBOL vmlinux 0xd3da5fe9 import_single_range EXPORT_SYMBOL vmlinux 0xd3eaf1ed devlink_dpipe_entry_clear +EXPORT_SYMBOL vmlinux 0xd3f6f63a __cancel_dirty_page EXPORT_SYMBOL vmlinux 0xd406d266 fb_mode_is_equal -EXPORT_SYMBOL vmlinux 0xd40eb2ab pci_stop_and_remove_bus_device -EXPORT_SYMBOL vmlinux 0xd439d1b4 dev_get_by_name -EXPORT_SYMBOL vmlinux 0xd4537fe8 pci_find_resource +EXPORT_SYMBOL vmlinux 0xd437cde9 dma_set_coherent_mask EXPORT_SYMBOL vmlinux 0xd45cc6ca bin2hex -EXPORT_SYMBOL vmlinux 0xd47fc414 dev_addr_add +EXPORT_SYMBOL vmlinux 0xd47e4028 tcp_v4_send_check EXPORT_SYMBOL vmlinux 0xd4835ef8 dmi_check_system -EXPORT_SYMBOL vmlinux 0xd49ce4cd input_unregister_device +EXPORT_SYMBOL vmlinux 0xd48dfaf0 tcp_sock_set_syncnt +EXPORT_SYMBOL vmlinux 0xd49b403a netif_napi_add EXPORT_SYMBOL vmlinux 0xd4bb4a82 inet6addr_validator_notifier_call_chain -EXPORT_SYMBOL vmlinux 0xd4c62d6a pcix_set_mmrbc +EXPORT_SYMBOL vmlinux 0xd4c1b8af mipi_dsi_dcs_read +EXPORT_SYMBOL vmlinux 0xd4cc66fb ip_tunnel_header_ops +EXPORT_SYMBOL vmlinux 0xd4cd6c7c tc_cleanup_flow_action EXPORT_SYMBOL vmlinux 0xd4d1983c udplite_table -EXPORT_SYMBOL vmlinux 0xd4d8a8e7 vlan_filter_push_vids -EXPORT_SYMBOL vmlinux 0xd4f09f9f mipi_dsi_dcs_set_tear_off +EXPORT_SYMBOL vmlinux 0xd4db4114 ipv6_find_hdr +EXPORT_SYMBOL vmlinux 0xd4ed1b13 dm_put_device EXPORT_SYMBOL vmlinux 0xd4fa2b69 textsearch_destroy EXPORT_SYMBOL vmlinux 0xd4fa5a87 __kfifo_dma_out_prepare -EXPORT_SYMBOL vmlinux 0xd500831c pcie_get_width_cap -EXPORT_SYMBOL vmlinux 0xd50410ff tcp_mss_to_mtu -EXPORT_SYMBOL vmlinux 0xd50c3232 ata_port_printk -EXPORT_SYMBOL vmlinux 0xd513a986 input_mt_init_slots +EXPORT_SYMBOL vmlinux 0xd502c802 ip_output +EXPORT_SYMBOL vmlinux 0xd50685b2 serial8250_do_pm +EXPORT_SYMBOL vmlinux 0xd50a6c01 dquot_mark_dquot_dirty +EXPORT_SYMBOL vmlinux 0xd51bc238 pci_biosrom_size EXPORT_SYMBOL vmlinux 0xd5263820 mb_cache_destroy -EXPORT_SYMBOL vmlinux 0xd52653d7 inet_csk_prepare_forced_close -EXPORT_SYMBOL vmlinux 0xd52dcdcf vm_map_pages_zero EXPORT_SYMBOL vmlinux 0xd5346bfc acpi_get_possible_resources -EXPORT_SYMBOL vmlinux 0xd53980f5 ptp_clock_index -EXPORT_SYMBOL vmlinux 0xd551942c touch_buffer -EXPORT_SYMBOL vmlinux 0xd5525626 poll_freewait -EXPORT_SYMBOL vmlinux 0xd56cac34 dup_iter +EXPORT_SYMBOL vmlinux 0xd53a65dc __icmp_send +EXPORT_SYMBOL vmlinux 0xd552e10a scsi_report_bus_reset +EXPORT_SYMBOL vmlinux 0xd56367e7 __hw_addr_ref_sync_dev EXPORT_SYMBOL vmlinux 0xd58e70dd net_rand_noise -EXPORT_SYMBOL vmlinux 0xd59877dd fs_param_is_u32 -EXPORT_SYMBOL vmlinux 0xd5999341 cros_ec_query_all -EXPORT_SYMBOL vmlinux 0xd599f680 param_set_ullong -EXPORT_SYMBOL vmlinux 0xd59a632f crypto_sha1_update -EXPORT_SYMBOL vmlinux 0xd59feaa2 pci_enable_device -EXPORT_SYMBOL vmlinux 0xd5a83f69 blk_mq_kick_requeue_list -EXPORT_SYMBOL vmlinux 0xd5ab06cf sock_pfree +EXPORT_SYMBOL vmlinux 0xd5ab30cc dma_resv_copy_fences +EXPORT_SYMBOL vmlinux 0xd5b26be0 netdev_pick_tx EXPORT_SYMBOL vmlinux 0xd5b3d0d5 xxh64_copy_state -EXPORT_SYMBOL vmlinux 0xd5b500d9 ipv4_dst_check -EXPORT_SYMBOL vmlinux 0xd5ddedd8 param_get_ushort -EXPORT_SYMBOL vmlinux 0xd5f17072 kill_litter_super -EXPORT_SYMBOL vmlinux 0xd5f25dc8 param_get_invbool +EXPORT_SYMBOL vmlinux 0xd5c9bba7 fb_pan_display EXPORT_SYMBOL vmlinux 0xd5fd90f1 prepare_to_wait +EXPORT_SYMBOL vmlinux 0xd606d03f phy_advertise_supported EXPORT_SYMBOL vmlinux 0xd60736ec gf128mul_free_64k -EXPORT_SYMBOL vmlinux 0xd61b9533 skb_prepare_seq_read -EXPORT_SYMBOL vmlinux 0xd6291a7e __cgroup_bpf_run_filter_sock_addr +EXPORT_SYMBOL vmlinux 0xd6186c00 pci_fixup_cardbus +EXPORT_SYMBOL vmlinux 0xd61ab5b9 __ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0xd61c5df9 generic_write_checks +EXPORT_SYMBOL vmlinux 0xd62e985c inet_addr_type_dev_table EXPORT_SYMBOL vmlinux 0xd62ecd49 rps_sock_flow_table -EXPORT_SYMBOL vmlinux 0xd63d9478 netdev_lower_get_next EXPORT_SYMBOL vmlinux 0xd63fd8d1 utf8nagemax EXPORT_SYMBOL vmlinux 0xd643239a acpi_leave_sleep_state -EXPORT_SYMBOL vmlinux 0xd66e7a90 dev_get_port_parent_id +EXPORT_SYMBOL vmlinux 0xd6436f8c tcp_set_rcvlowat +EXPORT_SYMBOL vmlinux 0xd64b260b kthread_destroy_worker +EXPORT_SYMBOL vmlinux 0xd64e00fc pcibios_bus_to_resource +EXPORT_SYMBOL vmlinux 0xd64e9ebe adjust_managed_page_count +EXPORT_SYMBOL vmlinux 0xd6842c73 put_cmsg_scm_timestamping EXPORT_SYMBOL vmlinux 0xd688716b dm_kcopyd_client_create -EXPORT_SYMBOL vmlinux 0xd689aa58 __SCK__tp_func_module_get EXPORT_SYMBOL vmlinux 0xd68c5a1f adjust_resource EXPORT_SYMBOL vmlinux 0xd691c6a9 unregister_sysctl_table EXPORT_SYMBOL vmlinux 0xd6a91f54 twl_i2c_read +EXPORT_SYMBOL vmlinux 0xd6ab78a4 clear_bdi_congested EXPORT_SYMBOL vmlinux 0xd6b2ed5f generate_pm_trace +EXPORT_SYMBOL vmlinux 0xd6b3019b udp6_set_csum EXPORT_SYMBOL vmlinux 0xd6b33026 cpu_khz -EXPORT_SYMBOL vmlinux 0xd6ca3bcd dev_remove_pack +EXPORT_SYMBOL vmlinux 0xd6c8e62e xen_alloc_unpopulated_pages +EXPORT_SYMBOL vmlinux 0xd6e74c03 mark_page_accessed EXPORT_SYMBOL vmlinux 0xd6eaaea1 full_name_hash +EXPORT_SYMBOL vmlinux 0xd6ebb245 register_netdevice_notifier_net EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc -EXPORT_SYMBOL vmlinux 0xd6eeb31c agp_collect_device_status -EXPORT_SYMBOL vmlinux 0xd6eecbdc security_sk_clone +EXPORT_SYMBOL vmlinux 0xd6efe886 configfs_register_subsystem EXPORT_SYMBOL vmlinux 0xd6fde043 is_module_sig_enforced -EXPORT_SYMBOL vmlinux 0xd70981f0 xfrm_input_register_afinfo -EXPORT_SYMBOL vmlinux 0xd70a1f06 ipv4_specific -EXPORT_SYMBOL vmlinux 0xd70c2800 rproc_add_carveout EXPORT_SYMBOL vmlinux 0xd70d35a1 gf128mul_4k_bbe EXPORT_SYMBOL vmlinux 0xd70f62b6 acpi_os_execute EXPORT_SYMBOL vmlinux 0xd738ca1b phy_unregister_fixup_for_uid -EXPORT_SYMBOL vmlinux 0xd7538576 blk_queue_logical_block_size -EXPORT_SYMBOL vmlinux 0xd755b566 xfrm_state_lookup_byaddr -EXPORT_SYMBOL vmlinux 0xd768b2be pskb_extract -EXPORT_SYMBOL vmlinux 0xd77406c2 rproc_get_by_phandle -EXPORT_SYMBOL vmlinux 0xd7ba4af4 inet_get_local_port_range +EXPORT_SYMBOL vmlinux 0xd738f30c tty_port_put +EXPORT_SYMBOL vmlinux 0xd768c410 twl6040_get_sysclk +EXPORT_SYMBOL vmlinux 0xd77b4053 tcp_syn_ack_timeout +EXPORT_SYMBOL vmlinux 0xd78bae50 blkdev_get_by_path +EXPORT_SYMBOL vmlinux 0xd78e34b4 request_partial_firmware_into_buf +EXPORT_SYMBOL vmlinux 0xd7af363d filemap_fdatawait_range +EXPORT_SYMBOL vmlinux 0xd7b7686f dma_unmap_resource +EXPORT_SYMBOL vmlinux 0xd7bab60a __breadahead EXPORT_SYMBOL vmlinux 0xd7d280ad irq_poll_complete -EXPORT_SYMBOL vmlinux 0xd7dbc8ae __sync_dirty_buffer EXPORT_SYMBOL vmlinux 0xd7dd777b reserve_perfctr_nmi +EXPORT_SYMBOL vmlinux 0xd7e1633f qdisc_offload_dump_helper EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll EXPORT_SYMBOL vmlinux 0xd7ea7094 nf_unregister_queue_handler -EXPORT_SYMBOL vmlinux 0xd7f45bf4 sync_filesystem -EXPORT_SYMBOL vmlinux 0xd7fa073b eth_validate_addr -EXPORT_SYMBOL vmlinux 0xd80d5975 jbd2_fc_release_bufs -EXPORT_SYMBOL vmlinux 0xd844576a sock_dequeue_err_skb +EXPORT_SYMBOL vmlinux 0xd7ec96e4 end_buffer_read_sync +EXPORT_SYMBOL vmlinux 0xd80dc5ad cont_write_begin EXPORT_SYMBOL vmlinux 0xd846c315 acpi_write_bit_register -EXPORT_SYMBOL vmlinux 0xd8485c80 read_cache_pages -EXPORT_SYMBOL vmlinux 0xd8605821 napi_gro_frags -EXPORT_SYMBOL vmlinux 0xd873987d acpi_bus_unregister_driver -EXPORT_SYMBOL vmlinux 0xd878e36e ps2_init -EXPORT_SYMBOL vmlinux 0xd880e354 md_check_recovery -EXPORT_SYMBOL vmlinux 0xd88e3267 phy_advertise_supported -EXPORT_SYMBOL vmlinux 0xd89bd126 __cleancache_get_page +EXPORT_SYMBOL vmlinux 0xd8551726 mmc_gpio_set_cd_isr +EXPORT_SYMBOL vmlinux 0xd85b13b6 mmc_start_request +EXPORT_SYMBOL vmlinux 0xd88a473f iget_failed +EXPORT_SYMBOL vmlinux 0xd88d935d tty_unregister_driver +EXPORT_SYMBOL vmlinux 0xd898d1c0 dma_set_mask EXPORT_SYMBOL vmlinux 0xd89da37f movable_zone +EXPORT_SYMBOL vmlinux 0xd8a5911e put_watch_queue EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format -EXPORT_SYMBOL vmlinux 0xd8b2624e __cleancache_init_shared_fs EXPORT_SYMBOL vmlinux 0xd8b61304 get_default_font -EXPORT_SYMBOL vmlinux 0xd8c63983 blk_queue_max_segments -EXPORT_SYMBOL vmlinux 0xd8cd01ce nvdimm_bus_unlock +EXPORT_SYMBOL vmlinux 0xd8b8465a xfrm_state_walk_done +EXPORT_SYMBOL vmlinux 0xd8bba3a0 inet_frag_kill +EXPORT_SYMBOL vmlinux 0xd8bc66aa fscrypt_encrypt_block_inplace +EXPORT_SYMBOL vmlinux 0xd8bfdd3b add_watch_to_object EXPORT_SYMBOL vmlinux 0xd8cef6e1 clear_user -EXPORT_SYMBOL vmlinux 0xd8d6e348 param_ops_byte EXPORT_SYMBOL vmlinux 0xd8df08ac acpi_handle_printk -EXPORT_SYMBOL vmlinux 0xd8df1418 skb_queue_purge -EXPORT_SYMBOL vmlinux 0xd8ed5836 filemap_fdatawait_range -EXPORT_SYMBOL vmlinux 0xd8ff033d xfrm_lookup_with_ifid -EXPORT_SYMBOL vmlinux 0xd901cab8 security_sk_classify_flow -EXPORT_SYMBOL vmlinux 0xd9057c59 dec_node_page_state -EXPORT_SYMBOL vmlinux 0xd90e68a7 nf_ct_attach -EXPORT_SYMBOL vmlinux 0xd91b158b _dev_info +EXPORT_SYMBOL vmlinux 0xd8e25adf dev_queue_xmit +EXPORT_SYMBOL vmlinux 0xd8fb8a79 fb_blank +EXPORT_SYMBOL vmlinux 0xd90273c3 dma_unmap_sg_attrs +EXPORT_SYMBOL vmlinux 0xd90c84cc from_kuid +EXPORT_SYMBOL vmlinux 0xd912cb94 uart_match_port +EXPORT_SYMBOL vmlinux 0xd915579c pnp_device_detach +EXPORT_SYMBOL vmlinux 0xd91a3511 dev_get_by_name EXPORT_SYMBOL vmlinux 0xd91f6ab6 strnlen_user EXPORT_SYMBOL vmlinux 0xd92deb6b acpi_evaluate_object EXPORT_SYMBOL vmlinux 0xd933f209 __SCT__tp_func_rdpmc EXPORT_SYMBOL vmlinux 0xd9491c14 xa_destroy +EXPORT_SYMBOL vmlinux 0xd94bda6e zpool_unregister_driver EXPORT_SYMBOL vmlinux 0xd971c6c4 xen_arch_register_cpu -EXPORT_SYMBOL vmlinux 0xd975a0f8 jbd2_journal_get_create_access -EXPORT_SYMBOL vmlinux 0xd97d46fb __frontswap_store +EXPORT_SYMBOL vmlinux 0xd979247c clean_bdev_aliases EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages -EXPORT_SYMBOL vmlinux 0xd98a12b0 pnp_register_card_driver -EXPORT_SYMBOL vmlinux 0xd98cc101 flow_rule_match_enc_control +EXPORT_SYMBOL vmlinux 0xd98dbd04 __tracepoint_kmem_cache_free +EXPORT_SYMBOL vmlinux 0xd990d734 mr_fill_mroute +EXPORT_SYMBOL vmlinux 0xd993c62a __pskb_copy_fclone +EXPORT_SYMBOL vmlinux 0xd99bbc8b gro_find_complete_by_type +EXPORT_SYMBOL vmlinux 0xd9a0b9b0 genphy_write_mmd_unsupported EXPORT_SYMBOL vmlinux 0xd9a5ea54 __init_waitqueue_head EXPORT_SYMBOL vmlinux 0xd9b85ef6 lockref_get -EXPORT_SYMBOL vmlinux 0xd9c044de rproc_put -EXPORT_SYMBOL vmlinux 0xd9c877af sock_wake_async -EXPORT_SYMBOL vmlinux 0xd9d30a5a tcp_req_err +EXPORT_SYMBOL vmlinux 0xd9cd27a7 arp_create EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler EXPORT_SYMBOL vmlinux 0xd9d952d1 crypto_aes_sbox -EXPORT_SYMBOL vmlinux 0xd9e270ba xfrm_state_delete_tunnel -EXPORT_SYMBOL vmlinux 0xd9ff396e is_acpi_device_node -EXPORT_SYMBOL vmlinux 0xda0a58b1 sg_alloc_append_table_from_pages +EXPORT_SYMBOL vmlinux 0xd9dc1fcd phy_write_mmd +EXPORT_SYMBOL vmlinux 0xd9e4feb6 __tracepoint_rdpmc +EXPORT_SYMBOL vmlinux 0xd9f03521 __frontswap_load +EXPORT_SYMBOL vmlinux 0xd9f1049d dev_change_flags +EXPORT_SYMBOL vmlinux 0xda0d59ed input_flush_device +EXPORT_SYMBOL vmlinux 0xda13959d netif_tx_stop_all_queues +EXPORT_SYMBOL vmlinux 0xda1c7ad1 zero_fill_bio EXPORT_SYMBOL vmlinux 0xda1ddef1 acpi_mark_gpe_for_wake -EXPORT_SYMBOL vmlinux 0xda209ae1 pcim_iounmap -EXPORT_SYMBOL vmlinux 0xda23ed05 security_unix_may_send -EXPORT_SYMBOL vmlinux 0xda265c78 netdev_lower_get_next_private +EXPORT_SYMBOL vmlinux 0xda259abb __traceiter_mmap_lock_acquire_returned EXPORT_SYMBOL vmlinux 0xda26b8ea __irq_regs +EXPORT_SYMBOL vmlinux 0xda3c31a2 d_tmpfile EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open -EXPORT_SYMBOL vmlinux 0xda3d745a vm_map_ram -EXPORT_SYMBOL vmlinux 0xda3e7333 from_kgid -EXPORT_SYMBOL vmlinux 0xda4834eb pci_scan_bus -EXPORT_SYMBOL vmlinux 0xda4f9d16 simple_nosetlease -EXPORT_SYMBOL vmlinux 0xda54db4b d_delete -EXPORT_SYMBOL vmlinux 0xda5845d2 sock_common_getsockopt -EXPORT_SYMBOL vmlinux 0xda6b77ee __page_symlink +EXPORT_SYMBOL vmlinux 0xda3f8b76 fwnode_irq_get +EXPORT_SYMBOL vmlinux 0xda43164c page_cache_prev_miss +EXPORT_SYMBOL vmlinux 0xda4c2a4f pcim_pin_device +EXPORT_SYMBOL vmlinux 0xda715a35 kernel_sock_shutdown EXPORT_SYMBOL vmlinux 0xda72a7ec ZSTD_nextInputType -EXPORT_SYMBOL vmlinux 0xda749ebf pcie_get_mps +EXPORT_SYMBOL vmlinux 0xda73e8cd jbd2_journal_get_create_access +EXPORT_SYMBOL vmlinux 0xda74d3f0 truncate_setsize +EXPORT_SYMBOL vmlinux 0xda778b1d secure_tcpv6_ts_off EXPORT_SYMBOL vmlinux 0xda89ea3b ip_idents_reserve -EXPORT_SYMBOL vmlinux 0xda985b8d ndo_dflt_fdb_add -EXPORT_SYMBOL vmlinux 0xda9ac6be kfree_skb_list -EXPORT_SYMBOL vmlinux 0xdaa5e6d1 tcf_idr_check_alloc -EXPORT_SYMBOL vmlinux 0xdaae1599 netdev_next_lower_dev_rcu -EXPORT_SYMBOL vmlinux 0xdab4ae8a scsi_is_target_device -EXPORT_SYMBOL vmlinux 0xdab82e38 __module_get -EXPORT_SYMBOL vmlinux 0xdab8e26f genphy_loopback +EXPORT_SYMBOL vmlinux 0xda8a249b agp_copy_info EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region +EXPORT_SYMBOL vmlinux 0xdac9ec67 skb_copy_header +EXPORT_SYMBOL vmlinux 0xdacb3e3b sync_mapping_buffers EXPORT_SYMBOL vmlinux 0xdad13544 ptrs_per_p4d -EXPORT_SYMBOL vmlinux 0xdae1c4a6 to_nd_dax -EXPORT_SYMBOL vmlinux 0xdb05c2fd current_task +EXPORT_SYMBOL vmlinux 0xdb02271e netdev_unbind_sb_channel EXPORT_SYMBOL vmlinux 0xdb16b170 topology_phys_to_logical_pkg -EXPORT_SYMBOL vmlinux 0xdb19013b md_wakeup_thread -EXPORT_SYMBOL vmlinux 0xdb1d46fc fscrypt_ioctl_set_policy -EXPORT_SYMBOL vmlinux 0xdb1ffd67 do_clone_file_range -EXPORT_SYMBOL vmlinux 0xdb201df2 __SCK__tp_func_kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0xdb33ad3b elv_rb_add +EXPORT_SYMBOL vmlinux 0xdb47fbcb crypto_sha512_update +EXPORT_SYMBOL vmlinux 0xdb4961ce __pci_register_driver EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy +EXPORT_SYMBOL vmlinux 0xdb70e588 module_put EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free -EXPORT_SYMBOL vmlinux 0xdb864f86 uart_register_driver -EXPORT_SYMBOL vmlinux 0xdb884948 cdev_add +EXPORT_SYMBOL vmlinux 0xdb830de9 pci_find_capability EXPORT_SYMBOL vmlinux 0xdb95e185 intel_scu_ipc_dev_command_with_size -EXPORT_SYMBOL vmlinux 0xdb9ae57a file_write_and_wait_range -EXPORT_SYMBOL vmlinux 0xdba0a3d5 pcim_set_mwi -EXPORT_SYMBOL vmlinux 0xdbaab60b vfio_unpin_pages +EXPORT_SYMBOL vmlinux 0xdb9897d2 __sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0xdba728be vfio_unregister_notifier +EXPORT_SYMBOL vmlinux 0xdba963a6 scsi_report_device_reset +EXPORT_SYMBOL vmlinux 0xdbb0414a watchdog_unregister_governor +EXPORT_SYMBOL vmlinux 0xdbbd4e3f mmc_of_parse EXPORT_SYMBOL vmlinux 0xdbcf041a acpi_install_address_space_handler -EXPORT_SYMBOL vmlinux 0xdbd8b80a udp_disconnect EXPORT_SYMBOL vmlinux 0xdbdf6c92 ioport_resource -EXPORT_SYMBOL vmlinux 0xdbee89c7 jbd2_journal_stop -EXPORT_SYMBOL vmlinux 0xdbfb6e62 xfrm_policy_register_afinfo -EXPORT_SYMBOL vmlinux 0xdc0c7f0b flow_block_cb_free -EXPORT_SYMBOL vmlinux 0xdc134ce5 d_set_d_op +EXPORT_SYMBOL vmlinux 0xdbf2d352 lock_rename +EXPORT_SYMBOL vmlinux 0xdbf64228 skb_queue_head +EXPORT_SYMBOL vmlinux 0xdc00f118 dma_resv_init +EXPORT_SYMBOL vmlinux 0xdc04f791 tcp_check_req EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems -EXPORT_SYMBOL vmlinux 0xdc171772 pci_fixup_device -EXPORT_SYMBOL vmlinux 0xdc18fe70 xfrm4_protocol_register -EXPORT_SYMBOL vmlinux 0xdc256055 eisa_driver_register -EXPORT_SYMBOL vmlinux 0xdc25eca1 backlight_force_update +EXPORT_SYMBOL vmlinux 0xdc23314e tty_port_close_start +EXPORT_SYMBOL vmlinux 0xdc4688ba import_iovec EXPORT_SYMBOL vmlinux 0xdc49c198 reciprocal_value_adv EXPORT_SYMBOL vmlinux 0xdc512134 backlight_register_notifier -EXPORT_SYMBOL vmlinux 0xdc546bae kthread_create_worker_on_cpu -EXPORT_SYMBOL vmlinux 0xdc5603c9 tcf_exts_dump EXPORT_SYMBOL vmlinux 0xdc5736d5 acpi_register_ioapic -EXPORT_SYMBOL vmlinux 0xdc757765 pci_disable_msix -EXPORT_SYMBOL vmlinux 0xdc7b4059 phy_init_hw -EXPORT_SYMBOL vmlinux 0xdc8c86e9 xsk_clear_tx_need_wakeup -EXPORT_SYMBOL vmlinux 0xdc97ee85 page_get_link -EXPORT_SYMBOL vmlinux 0xdc99e810 __sock_queue_rcv_skb -EXPORT_SYMBOL vmlinux 0xdc9c70ac mmc_retune_timer_stop -EXPORT_SYMBOL vmlinux 0xdcaeedb0 kill_pid -EXPORT_SYMBOL vmlinux 0xdce47837 get_tree_single -EXPORT_SYMBOL vmlinux 0xdce6d455 generic_file_write_iter -EXPORT_SYMBOL vmlinux 0xdce953be neigh_sysctl_register +EXPORT_SYMBOL vmlinux 0xdc5edd58 udp_gro_receive +EXPORT_SYMBOL vmlinux 0xdc5ee216 dev_queue_xmit_accel +EXPORT_SYMBOL vmlinux 0xdc65f32e sync_filesystem +EXPORT_SYMBOL vmlinux 0xdc6fa400 mdio_device_free +EXPORT_SYMBOL vmlinux 0xdc7e2137 dquot_initialize_needed +EXPORT_SYMBOL vmlinux 0xdc8796e5 pci_remove_bus +EXPORT_SYMBOL vmlinux 0xdc9a721e skb_split +EXPORT_SYMBOL vmlinux 0xdca137db devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0xdca75ac8 ndisc_mc_map +EXPORT_SYMBOL vmlinux 0xdcaa8ba0 pm_vt_switch_required +EXPORT_SYMBOL vmlinux 0xdcbf006f rproc_detach +EXPORT_SYMBOL vmlinux 0xdccc5108 jbd2_journal_destroy +EXPORT_SYMBOL vmlinux 0xdcd5ebdc generic_file_llseek_size EXPORT_SYMBOL vmlinux 0xdd00447a acpi_resource_to_address64 +EXPORT_SYMBOL vmlinux 0xdd06ee3c neigh_table_clear EXPORT_SYMBOL vmlinux 0xdd18a993 acpi_check_dsm -EXPORT_SYMBOL vmlinux 0xdd2378ed shmem_aops -EXPORT_SYMBOL vmlinux 0xdd2b48d3 unlock_page_memcg -EXPORT_SYMBOL vmlinux 0xdd2c0f0c kern_unmount +EXPORT_SYMBOL vmlinux 0xdd1d3f70 pci_disable_device +EXPORT_SYMBOL vmlinux 0xdd207dbf ip_queue_xmit +EXPORT_SYMBOL vmlinux 0xdd26d8f1 inet_offloads EXPORT_SYMBOL vmlinux 0xdd2c169b mb_cache_create -EXPORT_SYMBOL vmlinux 0xdd359d8b __skb_checksum -EXPORT_SYMBOL vmlinux 0xdd3c5acb inet_del_protocol +EXPORT_SYMBOL vmlinux 0xdd4197ea mipi_dsi_set_maximum_return_packet_size EXPORT_SYMBOL vmlinux 0xdd64e639 strscpy +EXPORT_SYMBOL vmlinux 0xdd69ce0f fqdir_exit EXPORT_SYMBOL vmlinux 0xdd8166a1 dma_fence_free +EXPORT_SYMBOL vmlinux 0xdd81cd44 udp_push_pending_frames EXPORT_SYMBOL vmlinux 0xdd849d51 scsi_get_sense_info_fld -EXPORT_SYMBOL vmlinux 0xdda7253f pci_bus_read_config_dword EXPORT_SYMBOL vmlinux 0xddad7952 acpi_dbg_level EXPORT_SYMBOL vmlinux 0xddafdd31 vm_node_stat -EXPORT_SYMBOL vmlinux 0xddb58082 __ip_queue_xmit +EXPORT_SYMBOL vmlinux 0xddb64d4d mpage_readpage +EXPORT_SYMBOL vmlinux 0xddb8ec8d nvdimm_namespace_locked EXPORT_SYMBOL vmlinux 0xddcbe1f3 acpi_ut_value_exit +EXPORT_SYMBOL vmlinux 0xddd84252 __ip4_datagram_connect EXPORT_SYMBOL vmlinux 0xddf6ad7a completion_done -EXPORT_SYMBOL vmlinux 0xddf73f4c fqdir_init -EXPORT_SYMBOL vmlinux 0xde049fed phy_set_asym_pause -EXPORT_SYMBOL vmlinux 0xde1cc769 pci_irq_get_affinity +EXPORT_SYMBOL vmlinux 0xddf6ce1f dcbnl_cee_notify +EXPORT_SYMBOL vmlinux 0xde1514a1 scsi_remove_host +EXPORT_SYMBOL vmlinux 0xde1a90e6 ip_sock_set_freebind +EXPORT_SYMBOL vmlinux 0xde235396 nd_btt_arena_is_valid EXPORT_SYMBOL vmlinux 0xde293f9e add_wait_queue_exclusive -EXPORT_SYMBOL vmlinux 0xde46938d unregister_netdev +EXPORT_SYMBOL vmlinux 0xde31125b inet_proto_csum_replace_by_diff +EXPORT_SYMBOL vmlinux 0xde45725d dquot_quota_sync +EXPORT_SYMBOL vmlinux 0xde48a29a nd_dax_probe EXPORT_SYMBOL vmlinux 0xde4d4ace dim_calc_stats EXPORT_SYMBOL vmlinux 0xde4eeab5 __register_nmi_handler +EXPORT_SYMBOL vmlinux 0xde51984d pnp_unregister_card_driver +EXPORT_SYMBOL vmlinux 0xde5413de kmem_cache_destroy +EXPORT_SYMBOL vmlinux 0xde6580b4 ipv6_sock_mc_drop +EXPORT_SYMBOL vmlinux 0xde727b9c vga_switcheroo_register_audio_client EXPORT_SYMBOL vmlinux 0xde80cd09 ioremap -EXPORT_SYMBOL vmlinux 0xde90ab1a mini_qdisc_pair_block_init -EXPORT_SYMBOL vmlinux 0xde9807a9 ww_mutex_unlock +EXPORT_SYMBOL vmlinux 0xde98f0d0 pci_read_config_dword EXPORT_SYMBOL vmlinux 0xde9b17ed agp3_generic_fetch_size -EXPORT_SYMBOL vmlinux 0xde9f1d75 set_pages_uc -EXPORT_SYMBOL vmlinux 0xdea2ba71 fb_class -EXPORT_SYMBOL vmlinux 0xdeb62500 dquot_acquire +EXPORT_SYMBOL vmlinux 0xdeafe4ca md_bitmap_free +EXPORT_SYMBOL vmlinux 0xdec9c0cd md_write_start +EXPORT_SYMBOL vmlinux 0xdecdcf74 dev_pm_opp_unregister_notifier +EXPORT_SYMBOL vmlinux 0xded0aeb2 gnet_stats_copy_basic_hw +EXPORT_SYMBOL vmlinux 0xded215b5 sock_no_recvmsg EXPORT_SYMBOL vmlinux 0xded39a6b gen_kill_estimator -EXPORT_SYMBOL vmlinux 0xdeeb67be set_trace_device EXPORT_SYMBOL vmlinux 0xdef7c893 fb_match_mode EXPORT_SYMBOL vmlinux 0xdef8d0ae __SCT__tp_func_kfree -EXPORT_SYMBOL vmlinux 0xdefd372d __tracepoint_read_msr -EXPORT_SYMBOL vmlinux 0xdefd7cde xfrm_init_state -EXPORT_SYMBOL vmlinux 0xdf088241 vmf_insert_mixed -EXPORT_SYMBOL vmlinux 0xdf137e6f devm_ioport_unmap +EXPORT_SYMBOL vmlinux 0xdeffaef3 inetdev_by_index +EXPORT_SYMBOL vmlinux 0xdf04d399 ioc_lookup_icq +EXPORT_SYMBOL vmlinux 0xdf1c99d2 __tracepoint_write_msr EXPORT_SYMBOL vmlinux 0xdf256037 kstrtou8_from_user +EXPORT_SYMBOL vmlinux 0xdf27fc4b fs_context_for_mount EXPORT_SYMBOL vmlinux 0xdf2c2742 rb_last -EXPORT_SYMBOL vmlinux 0xdf2d6ced __SCK__tp_func_kmem_cache_alloc_node EXPORT_SYMBOL vmlinux 0xdf2ebb87 _raw_read_unlock_irqrestore EXPORT_SYMBOL vmlinux 0xdf36914b xa_find_after -EXPORT_SYMBOL vmlinux 0xdf3bb934 block_write_end -EXPORT_SYMBOL vmlinux 0xdf52cc06 backlight_device_get_by_type +EXPORT_SYMBOL vmlinux 0xdf3f235b agp_generic_alloc_pages +EXPORT_SYMBOL vmlinux 0xdf471492 inet_sendmsg EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier -EXPORT_SYMBOL vmlinux 0xdf557604 pci_back_from_sleep +EXPORT_SYMBOL vmlinux 0xdf5a3a47 ethtool_notify EXPORT_SYMBOL vmlinux 0xdf6b082f proc_dointvec_jiffies -EXPORT_SYMBOL vmlinux 0xdf7c235c nvmem_get_mac_address EXPORT_SYMBOL vmlinux 0xdf8c695a __ndelay EXPORT_SYMBOL vmlinux 0xdf8d781f acpi_update_all_gpes EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid EXPORT_SYMBOL vmlinux 0xdf93b9d8 timespec64_to_jiffies -EXPORT_SYMBOL vmlinux 0xdf9a566f pcie_bandwidth_available -EXPORT_SYMBOL vmlinux 0xdfa6069a ipv6_push_frag_opts -EXPORT_SYMBOL vmlinux 0xdfc28085 netdev_crit +EXPORT_SYMBOL vmlinux 0xdf99ffde dst_release +EXPORT_SYMBOL vmlinux 0xdfa07367 device_match_acpi_dev +EXPORT_SYMBOL vmlinux 0xdfa2d2a3 inet_frag_reasm_prepare +EXPORT_SYMBOL vmlinux 0xdfa392b3 vfs_mkdir +EXPORT_SYMBOL vmlinux 0xdfadbdbd netif_set_real_num_rx_queues +EXPORT_SYMBOL vmlinux 0xdfbf0b2b tcp_v4_md5_hash_skb +EXPORT_SYMBOL vmlinux 0xdfc137f6 param_set_invbool +EXPORT_SYMBOL vmlinux 0xdfc61113 tcp_peek_len +EXPORT_SYMBOL vmlinux 0xdfc774ae always_delete_dentry EXPORT_SYMBOL vmlinux 0xdfca1c71 load_nls EXPORT_SYMBOL vmlinux 0xdfcc992c current_work -EXPORT_SYMBOL vmlinux 0xdfd0de54 rproc_mem_entry_init -EXPORT_SYMBOL vmlinux 0xdfd65d82 inode_newsize_ok -EXPORT_SYMBOL vmlinux 0xdfd696bb pci_disable_link_state_locked -EXPORT_SYMBOL vmlinux 0xdfdd42de registered_fb +EXPORT_SYMBOL vmlinux 0xdfd1cb93 fscrypt_encrypt_pagecache_blocks +EXPORT_SYMBOL vmlinux 0xdfdcd435 __scsi_device_lookup EXPORT_SYMBOL vmlinux 0xdfdfa9e7 utf8nfdi +EXPORT_SYMBOL vmlinux 0xdff703e8 tcp_read_sock EXPORT_SYMBOL vmlinux 0xdff905e5 vme_slave_free EXPORT_SYMBOL vmlinux 0xdffc80fc vesa_modes -EXPORT_SYMBOL vmlinux 0xe008ea41 phy_get_pause -EXPORT_SYMBOL vmlinux 0xe00cedaf devm_clk_get EXPORT_SYMBOL vmlinux 0xe0112fc4 __x86_indirect_thunk_r9 -EXPORT_SYMBOL vmlinux 0xe0154818 sock_create_lite -EXPORT_SYMBOL vmlinux 0xe0180961 __tracepoint_spi_transfer_stop +EXPORT_SYMBOL vmlinux 0xe0250749 read_cache_page_gfp EXPORT_SYMBOL vmlinux 0xe02ba436 trace_print_hex_seq EXPORT_SYMBOL vmlinux 0xe02c9c92 __xa_erase -EXPORT_SYMBOL vmlinux 0xe031a47b __mdiobus_register EXPORT_SYMBOL vmlinux 0xe033cb29 native_queued_spin_lock_slowpath -EXPORT_SYMBOL vmlinux 0xe034d3cb pm860x_page_reg_write EXPORT_SYMBOL vmlinux 0xe03a689d dma_fence_array_ops EXPORT_SYMBOL vmlinux 0xe0419ac4 kstrtos16 -EXPORT_SYMBOL vmlinux 0xe0504e4f is_nvdimm_bus_locked -EXPORT_SYMBOL vmlinux 0xe05f927d mipi_dsi_dcs_write_buffer -EXPORT_SYMBOL vmlinux 0xe0610b0e __inet6_lookup_established -EXPORT_SYMBOL vmlinux 0xe0758db5 tcp_conn_request -EXPORT_SYMBOL vmlinux 0xe07daf7b generic_read_dir +EXPORT_SYMBOL vmlinux 0xe04a0c5b pci_ep_cfs_add_epf_group +EXPORT_SYMBOL vmlinux 0xe0691b47 neigh_parms_alloc +EXPORT_SYMBOL vmlinux 0xe06b895b iov_iter_kvec +EXPORT_SYMBOL vmlinux 0xe06bccdc pneigh_lookup +EXPORT_SYMBOL vmlinux 0xe0725c48 udp_seq_start +EXPORT_SYMBOL vmlinux 0xe0740678 scsi_test_unit_ready +EXPORT_SYMBOL vmlinux 0xe0794aff neigh_destroy +EXPORT_SYMBOL vmlinux 0xe07ac6e4 __ip_options_compile +EXPORT_SYMBOL vmlinux 0xe07b981b icmpv6_ndo_send EXPORT_SYMBOL vmlinux 0xe07e5f44 acpi_reconfig_notifier_unregister EXPORT_SYMBOL vmlinux 0xe080e8f0 set_current_groups EXPORT_SYMBOL vmlinux 0xe082e88d acpi_check_address_range -EXPORT_SYMBOL vmlinux 0xe08901ee ip_getsockopt -EXPORT_SYMBOL vmlinux 0xe09169a0 ipv6_chk_custom_prefix EXPORT_SYMBOL vmlinux 0xe091c977 list_sort EXPORT_SYMBOL vmlinux 0xe0955f76 utf8_casefold -EXPORT_SYMBOL vmlinux 0xe09fd855 skb_flow_dissect_tunnel_info +EXPORT_SYMBOL vmlinux 0xe095d19e pfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0xe0a74a4a remove_watch_from_object +EXPORT_SYMBOL vmlinux 0xe0a9d268 key_instantiate_and_link +EXPORT_SYMBOL vmlinux 0xe0ae5039 skb_ensure_writable EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free +EXPORT_SYMBOL vmlinux 0xe0b3b607 reuseport_migrate_sock EXPORT_SYMBOL vmlinux 0xe0bef318 icst_hz_to_vco -EXPORT_SYMBOL vmlinux 0xe0d1b8da rtnl_notify -EXPORT_SYMBOL vmlinux 0xe0d7f9a9 ptp_schedule_worker -EXPORT_SYMBOL vmlinux 0xe0e492f9 dev_uc_del +EXPORT_SYMBOL vmlinux 0xe0c61837 netdev_alert +EXPORT_SYMBOL vmlinux 0xe0c7dac6 sg_miter_skip +EXPORT_SYMBOL vmlinux 0xe0d498de nd_device_register +EXPORT_SYMBOL vmlinux 0xe0e893fa inet_register_protosw +EXPORT_SYMBOL vmlinux 0xe0ed298b sk_stream_wait_close +EXPORT_SYMBOL vmlinux 0xe0f80e93 security_inode_init_security +EXPORT_SYMBOL vmlinux 0xe0fe3045 jbd2_journal_init_dev +EXPORT_SYMBOL vmlinux 0xe105f0b6 kern_path +EXPORT_SYMBOL vmlinux 0xe10bbebb mem_cgroup_from_task +EXPORT_SYMBOL vmlinux 0xe10de432 I_BDEV +EXPORT_SYMBOL vmlinux 0xe1125134 vga_switcheroo_init_domain_pm_ops EXPORT_SYMBOL vmlinux 0xe113bbbc csum_partial +EXPORT_SYMBOL vmlinux 0xe1185d9a no_llseek EXPORT_SYMBOL vmlinux 0xe11ca997 ZSTD_getDictID_fromDict EXPORT_SYMBOL vmlinux 0xe123f3d9 dma_fence_release EXPORT_SYMBOL vmlinux 0xe12bda79 vme_dma_free_attribute +EXPORT_SYMBOL vmlinux 0xe12cb39c genl_unregister_family EXPORT_SYMBOL vmlinux 0xe138fb8c percpu_counter_add_batch EXPORT_SYMBOL vmlinux 0xe13cd8a7 dmi_name_in_vendors -EXPORT_SYMBOL vmlinux 0xe17db503 write_inode_now -EXPORT_SYMBOL vmlinux 0xe1808e56 dm_put_device -EXPORT_SYMBOL vmlinux 0xe18e469d get_tree_keyed -EXPORT_SYMBOL vmlinux 0xe1959b83 sk_capable -EXPORT_SYMBOL vmlinux 0xe195bc0a seq_hex_dump -EXPORT_SYMBOL vmlinux 0xe197d327 nf_register_queue_handler -EXPORT_SYMBOL vmlinux 0xe1a1fe04 dev_mc_add_global +EXPORT_SYMBOL vmlinux 0xe140dd0b xp_free +EXPORT_SYMBOL vmlinux 0xe1466127 sync_inode_metadata +EXPORT_SYMBOL vmlinux 0xe15b818e blk_put_queue +EXPORT_SYMBOL vmlinux 0xe17334be kernel_sendpage +EXPORT_SYMBOL vmlinux 0xe17fc217 alloc_anon_inode +EXPORT_SYMBOL vmlinux 0xe18cf30f seq_open_private EXPORT_SYMBOL vmlinux 0xe1a4f16a secure_ipv6_port_ephemeral -EXPORT_SYMBOL vmlinux 0xe1a6f0dd dev_printk_emit -EXPORT_SYMBOL vmlinux 0xe1ac861a input_flush_device +EXPORT_SYMBOL vmlinux 0xe1b32bc5 __ps2_command EXPORT_SYMBOL vmlinux 0xe1bee700 __traceiter_read_msr -EXPORT_SYMBOL vmlinux 0xe1c41348 file_fdatawait_range -EXPORT_SYMBOL vmlinux 0xe1d5afe6 sync_blockdev -EXPORT_SYMBOL vmlinux 0xe1d77dda get_watch_queue +EXPORT_SYMBOL vmlinux 0xe1bfc607 ppp_input +EXPORT_SYMBOL vmlinux 0xe1d71654 cdev_del EXPORT_SYMBOL vmlinux 0xe1dcf64a audit_log_format -EXPORT_SYMBOL vmlinux 0xe1e0dd03 devm_memremap -EXPORT_SYMBOL vmlinux 0xe1ef9f9c mdio_find_bus -EXPORT_SYMBOL vmlinux 0xe1ff1f73 mmc_release_host -EXPORT_SYMBOL vmlinux 0xe2065279 param_set_ushort -EXPORT_SYMBOL vmlinux 0xe21b4cb3 find_inode_nowait +EXPORT_SYMBOL vmlinux 0xe1f2efed devm_ioremap_resource +EXPORT_SYMBOL vmlinux 0xe200e3ea agp3_generic_tlbflush +EXPORT_SYMBOL vmlinux 0xe219759e blk_mq_start_hw_queues EXPORT_SYMBOL vmlinux 0xe21f18ac __genradix_iter_peek -EXPORT_SYMBOL vmlinux 0xe22cdeab can_nice -EXPORT_SYMBOL vmlinux 0xe256b86d single_open_size -EXPORT_SYMBOL vmlinux 0xe26e3fd6 pci_reenable_device +EXPORT_SYMBOL vmlinux 0xe22bad60 tcf_generic_walker +EXPORT_SYMBOL vmlinux 0xe248be32 nf_log_register +EXPORT_SYMBOL vmlinux 0xe2635b41 vga_switcheroo_unregister_client +EXPORT_SYMBOL vmlinux 0xe264ad82 generic_file_read_iter EXPORT_SYMBOL vmlinux 0xe273d75d alloc_cpu_rmap -EXPORT_SYMBOL vmlinux 0xe276a9b2 mipi_dsi_turn_on_peripheral -EXPORT_SYMBOL vmlinux 0xe279eb86 rc5t583_ext_power_req_config -EXPORT_SYMBOL vmlinux 0xe2929eb6 input_handler_for_each_handle -EXPORT_SYMBOL vmlinux 0xe2aa51da mmc_gpiod_request_ro +EXPORT_SYMBOL vmlinux 0xe2b8aad0 dev_set_mtu +EXPORT_SYMBOL vmlinux 0xe2bbede3 serio_unregister_port +EXPORT_SYMBOL vmlinux 0xe2cf86c7 _dev_info EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp -EXPORT_SYMBOL vmlinux 0xe2d6f004 netif_rx_any_context -EXPORT_SYMBOL vmlinux 0xe2db3376 mdio_device_register EXPORT_SYMBOL vmlinux 0xe2e28fc0 __traceiter_write_msr -EXPORT_SYMBOL vmlinux 0xe2f572bc flow_block_cb_priv -EXPORT_SYMBOL vmlinux 0xe31ead6c sock_no_ioctl -EXPORT_SYMBOL vmlinux 0xe321f4fa wake_up_process -EXPORT_SYMBOL vmlinux 0xe32904c9 make_bad_inode +EXPORT_SYMBOL vmlinux 0xe2e48fe2 uart_remove_one_port +EXPORT_SYMBOL vmlinux 0xe2e4a0b4 dma_ops +EXPORT_SYMBOL vmlinux 0xe2fd09e4 xfrm6_protocol_deregister +EXPORT_SYMBOL vmlinux 0xe30b62e4 generic_update_time +EXPORT_SYMBOL vmlinux 0xe30f66ba tty_driver_kref_put EXPORT_SYMBOL vmlinux 0xe32ab4d8 xxh64_digest -EXPORT_SYMBOL vmlinux 0xe32f8104 sk_stream_wait_memory -EXPORT_SYMBOL vmlinux 0xe35610f3 pnp_register_driver -EXPORT_SYMBOL vmlinux 0xe36f6975 pcim_iounmap_regions -EXPORT_SYMBOL vmlinux 0xe37085b0 inet_sk_rebuild_header -EXPORT_SYMBOL vmlinux 0xe383cfb6 init_net -EXPORT_SYMBOL vmlinux 0xe3898b66 fb_blank +EXPORT_SYMBOL vmlinux 0xe34926e7 sock_bindtoindex +EXPORT_SYMBOL vmlinux 0xe3639ad6 scsi_is_target_device +EXPORT_SYMBOL vmlinux 0xe373b511 xfrm_state_insert EXPORT_SYMBOL vmlinux 0xe39b2ea5 sha256 -EXPORT_SYMBOL vmlinux 0xe3b6b3e5 __cleancache_invalidate_page -EXPORT_SYMBOL vmlinux 0xe3c5f6fa scsi_eh_restore_cmnd -EXPORT_SYMBOL vmlinux 0xe3c6ad4b devm_mdiobus_alloc_size -EXPORT_SYMBOL vmlinux 0xe3d12594 skb_try_coalesce +EXPORT_SYMBOL vmlinux 0xe3a4cbb5 genphy_read_lpa +EXPORT_SYMBOL vmlinux 0xe3a5d862 inet_frag_destroy +EXPORT_SYMBOL vmlinux 0xe3c66112 agp_bind_memory EXPORT_SYMBOL vmlinux 0xe3d857ea __cpu_active_mask -EXPORT_SYMBOL vmlinux 0xe3e7cf33 generic_write_checks +EXPORT_SYMBOL vmlinux 0xe3e33b9c netdev_next_lower_dev_rcu EXPORT_SYMBOL vmlinux 0xe3ec2f2b alloc_chrdev_region -EXPORT_SYMBOL vmlinux 0xe3fc4aa6 try_lookup_one_len +EXPORT_SYMBOL vmlinux 0xe3f5985f kill_litter_super +EXPORT_SYMBOL vmlinux 0xe3f634c5 input_unregister_handler EXPORT_SYMBOL vmlinux 0xe3feba56 tasklet_unlock_spin_wait EXPORT_SYMBOL vmlinux 0xe3ff2c41 get_random_u64 EXPORT_SYMBOL vmlinux 0xe40976c0 pnp_range_reserved EXPORT_SYMBOL vmlinux 0xe40c37ea down_write_trylock -EXPORT_SYMBOL vmlinux 0xe41622af blk_queue_chunk_sectors +EXPORT_SYMBOL vmlinux 0xe4133be1 init_task EXPORT_SYMBOL vmlinux 0xe419bc99 iowrite32be -EXPORT_SYMBOL vmlinux 0xe42c41d7 devfreq_recommended_opp +EXPORT_SYMBOL vmlinux 0xe41e0ba1 sched_autogroup_detach +EXPORT_SYMBOL vmlinux 0xe42fe985 dev_add_pack +EXPORT_SYMBOL vmlinux 0xe431d225 pcie_get_speed_cap EXPORT_SYMBOL vmlinux 0xe4329092 __ctzdi2 -EXPORT_SYMBOL vmlinux 0xe43fb753 d_set_fallthru -EXPORT_SYMBOL vmlinux 0xe457dac4 kthread_destroy_worker -EXPORT_SYMBOL vmlinux 0xe45b7546 pcibios_resource_to_bus +EXPORT_SYMBOL vmlinux 0xe4551474 cfb_fillrect EXPORT_SYMBOL vmlinux 0xe46021ca _raw_spin_unlock_bh -EXPORT_SYMBOL vmlinux 0xe482bfee tcp_prot -EXPORT_SYMBOL vmlinux 0xe4862226 __tcf_em_tree_match -EXPORT_SYMBOL vmlinux 0xe486a7c9 lock_sock_nested -EXPORT_SYMBOL vmlinux 0xe4986ec4 __destroy_inode -EXPORT_SYMBOL vmlinux 0xe499c3dc dma_sync_single_for_device -EXPORT_SYMBOL vmlinux 0xe4acedbb bdi_register -EXPORT_SYMBOL vmlinux 0xe4b1409c input_open_device +EXPORT_SYMBOL vmlinux 0xe465a703 scsi_add_device +EXPORT_SYMBOL vmlinux 0xe46706e0 param_get_bool +EXPORT_SYMBOL vmlinux 0xe469e2f8 get_watch_queue +EXPORT_SYMBOL vmlinux 0xe4723e39 iov_iter_revert EXPORT_SYMBOL vmlinux 0xe4bc2c2f hdmi_drm_infoframe_pack -EXPORT_SYMBOL vmlinux 0xe4c1c9dc vlan_dev_vlan_proto -EXPORT_SYMBOL vmlinux 0xe4d2c3c3 netlink_broadcast +EXPORT_SYMBOL vmlinux 0xe4c2b07c xfrm4_protocol_deregister EXPORT_SYMBOL vmlinux 0xe4d80bf4 acpi_enable -EXPORT_SYMBOL vmlinux 0xe4df0bc3 blk_sync_queue -EXPORT_SYMBOL vmlinux 0xe4ef581e ip_output +EXPORT_SYMBOL vmlinux 0xe4de07dc param_set_bint +EXPORT_SYMBOL vmlinux 0xe4ef23c5 get_mem_cgroup_from_mm +EXPORT_SYMBOL vmlinux 0xe4f7f8c5 __tracepoint_dma_fence_emit EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq -EXPORT_SYMBOL vmlinux 0xe523dd0f simple_dir_inode_operations -EXPORT_SYMBOL vmlinux 0xe52e6bed cdrom_get_last_written -EXPORT_SYMBOL vmlinux 0xe53496a3 __vfs_setxattr -EXPORT_SYMBOL vmlinux 0xe53ca6aa jbd2_journal_start -EXPORT_SYMBOL vmlinux 0xe551f895 to_nd_btt -EXPORT_SYMBOL vmlinux 0xe56a5de0 d_drop +EXPORT_SYMBOL vmlinux 0xe533ab93 dquot_operations +EXPORT_SYMBOL vmlinux 0xe54b6b82 tty_port_carrier_raised +EXPORT_SYMBOL vmlinux 0xe5526a6f neigh_resolve_output +EXPORT_SYMBOL vmlinux 0xe56d776c blk_mq_start_hw_queue +EXPORT_SYMBOL vmlinux 0xe57710bf qdisc_hash_del EXPORT_SYMBOL vmlinux 0xe58090ca security_ib_endport_manage_subnet EXPORT_SYMBOL vmlinux 0xe590dea3 sk_busy_loop_end +EXPORT_SYMBOL vmlinux 0xe595aacc pci_msix_vec_count +EXPORT_SYMBOL vmlinux 0xe59aa4da sock_wake_async +EXPORT_SYMBOL vmlinux 0xe5b3f70b ww_mutex_unlock +EXPORT_SYMBOL vmlinux 0xe5ba5288 xp_can_alloc EXPORT_SYMBOL vmlinux 0xe5bc9a53 slhc_free -EXPORT_SYMBOL vmlinux 0xe5c4d903 serio_unregister_port EXPORT_SYMBOL vmlinux 0xe5c60bd2 percpu_counter_set EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen -EXPORT_SYMBOL vmlinux 0xe5c7ed02 serio_unregister_driver -EXPORT_SYMBOL vmlinux 0xe5e3cccb param_ops_ullong -EXPORT_SYMBOL vmlinux 0xe5e567e5 __set_page_dirty_nobuffers -EXPORT_SYMBOL vmlinux 0xe5f08521 register_mii_tstamp_controller -EXPORT_SYMBOL vmlinux 0xe5f12f90 fscrypt_setup_filename -EXPORT_SYMBOL vmlinux 0xe5f5d4e0 set_posix_acl -EXPORT_SYMBOL vmlinux 0xe6061689 tcp_disconnect -EXPORT_SYMBOL vmlinux 0xe610af38 fwnode_phy_find_device EXPORT_SYMBOL vmlinux 0xe613a798 inet_addr_is_any -EXPORT_SYMBOL vmlinux 0xe615136d mfd_remove_devices -EXPORT_SYMBOL vmlinux 0xe6423978 sock_setsockopt -EXPORT_SYMBOL vmlinux 0xe64a46fb mdiobus_read_nested -EXPORT_SYMBOL vmlinux 0xe650042c mipi_dsi_dcs_exit_sleep_mode -EXPORT_SYMBOL vmlinux 0xe6587f3c clean_bdev_aliases +EXPORT_SYMBOL vmlinux 0xe639c024 bdi_alloc +EXPORT_SYMBOL vmlinux 0xe643eb22 inet_protos +EXPORT_SYMBOL vmlinux 0xe64ddd03 kern_path_create +EXPORT_SYMBOL vmlinux 0xe6602656 del_random_ready_callback +EXPORT_SYMBOL vmlinux 0xe66804aa to_nd_pfn +EXPORT_SYMBOL vmlinux 0xe67fbd17 dcbnl_ieee_notify +EXPORT_SYMBOL vmlinux 0xe68ac1d6 _dev_printk +EXPORT_SYMBOL vmlinux 0xe68bf1e8 dma_async_device_register EXPORT_SYMBOL vmlinux 0xe68efe41 _raw_write_lock -EXPORT_SYMBOL vmlinux 0xe690103b pci_scan_single_device +EXPORT_SYMBOL vmlinux 0xe690feaf page_pool_create EXPORT_SYMBOL vmlinux 0xe691ac7f ZSTD_decompressBegin -EXPORT_SYMBOL vmlinux 0xe699c6a7 devm_get_clk_from_child -EXPORT_SYMBOL vmlinux 0xe6a4b19d skb_clone -EXPORT_SYMBOL vmlinux 0xe6bbcd4d mmc_set_data_timeout -EXPORT_SYMBOL vmlinux 0xe6c820e0 alloc_xenballooned_pages +EXPORT_SYMBOL vmlinux 0xe69337fa mipi_dsi_turn_on_peripheral +EXPORT_SYMBOL vmlinux 0xe694b5e8 vlan_for_each +EXPORT_SYMBOL vmlinux 0xe69867fe input_register_device +EXPORT_SYMBOL vmlinux 0xe69e00c7 fb_show_logo +EXPORT_SYMBOL vmlinux 0xe6ae8c5c truncate_pagecache +EXPORT_SYMBOL vmlinux 0xe6b71c3c __genphy_config_aneg +EXPORT_SYMBOL vmlinux 0xe6bba667 scsi_track_queue_full +EXPORT_SYMBOL vmlinux 0xe6cdfa61 redirty_page_for_writepage EXPORT_SYMBOL vmlinux 0xe6d2458e do_trace_netlink_extack -EXPORT_SYMBOL vmlinux 0xe6f2601a xfrm6_protocol_register -EXPORT_SYMBOL vmlinux 0xe6f95da5 register_nexthop_notifier +EXPORT_SYMBOL vmlinux 0xe6e1bd6d tcp_sock_set_keepcnt +EXPORT_SYMBOL vmlinux 0xe6e8f665 handle_edge_irq +EXPORT_SYMBOL vmlinux 0xe6f49732 iw_handler_set_thrspy EXPORT_SYMBOL vmlinux 0xe6fa06a2 rename_lock EXPORT_SYMBOL vmlinux 0xe70877d4 acpi_remove_sci_handler -EXPORT_SYMBOL vmlinux 0xe71c1118 mdio_driver_unregister -EXPORT_SYMBOL vmlinux 0xe7214250 generic_shutdown_super +EXPORT_SYMBOL vmlinux 0xe72130a7 param_ops_uint EXPORT_SYMBOL vmlinux 0xe7257ab8 xa_store_range -EXPORT_SYMBOL vmlinux 0xe726d0dc tty_lock -EXPORT_SYMBOL vmlinux 0xe72eb339 set_capacity EXPORT_SYMBOL vmlinux 0xe7324b9a utf8nfdicf -EXPORT_SYMBOL vmlinux 0xe73568f5 sk_error_report -EXPORT_SYMBOL vmlinux 0xe7497a89 __remove_inode_hash -EXPORT_SYMBOL vmlinux 0xe766260f __dev_get_by_name -EXPORT_SYMBOL vmlinux 0xe785b51b ps2_cmd_aborted +EXPORT_SYMBOL vmlinux 0xe73a8e95 vfs_symlink +EXPORT_SYMBOL vmlinux 0xe73f4be4 d_move +EXPORT_SYMBOL vmlinux 0xe7474e70 dev_set_group +EXPORT_SYMBOL vmlinux 0xe7524e00 __destroy_inode +EXPORT_SYMBOL vmlinux 0xe770df88 proto_unregister EXPORT_SYMBOL vmlinux 0xe787698f acpi_processor_register_performance +EXPORT_SYMBOL vmlinux 0xe78d1a1a vfs_ioctl EXPORT_SYMBOL vmlinux 0xe7a02573 ida_alloc_range -EXPORT_SYMBOL vmlinux 0xe7a97630 __mdiobus_read +EXPORT_SYMBOL vmlinux 0xe7a0d7a8 bio_uninit +EXPORT_SYMBOL vmlinux 0xe7a4bdfe seq_printf EXPORT_SYMBOL vmlinux 0xe7ab1ecc _raw_write_unlock_bh -EXPORT_SYMBOL vmlinux 0xe7c9c87e neigh_sysctl_unregister -EXPORT_SYMBOL vmlinux 0xe7d3230b __skb_vlan_pop +EXPORT_SYMBOL vmlinux 0xe7c0890d mdiobus_free +EXPORT_SYMBOL vmlinux 0xe7cabb5a dev_set_mac_address_user +EXPORT_SYMBOL vmlinux 0xe7cb1994 tty_vhangup EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next -EXPORT_SYMBOL vmlinux 0xe7e4bf42 dquot_reclaim_space_nodirty -EXPORT_SYMBOL vmlinux 0xe7f2e143 security_inode_setsecctx -EXPORT_SYMBOL vmlinux 0xe7f5fb6d md_integrity_add_rdev -EXPORT_SYMBOL vmlinux 0xe80c8172 del_gendisk -EXPORT_SYMBOL vmlinux 0xe817cef9 _dev_emerg -EXPORT_SYMBOL vmlinux 0xe82f1f6d audit_log_start +EXPORT_SYMBOL vmlinux 0xe7e4691a mipi_dsi_host_unregister +EXPORT_SYMBOL vmlinux 0xe7f3f267 xp_dma_unmap +EXPORT_SYMBOL vmlinux 0xe7f5ad65 fwnode_phy_find_device +EXPORT_SYMBOL vmlinux 0xe80271b3 fb_set_cmap +EXPORT_SYMBOL vmlinux 0xe8065719 security_unix_stream_connect +EXPORT_SYMBOL vmlinux 0xe80c3054 devm_memremap +EXPORT_SYMBOL vmlinux 0xe81d8116 block_truncate_page +EXPORT_SYMBOL vmlinux 0xe832bcc7 proc_create EXPORT_SYMBOL vmlinux 0xe8330a5a call_usermodehelper_exec +EXPORT_SYMBOL vmlinux 0xe8398856 passthru_features_check +EXPORT_SYMBOL vmlinux 0xe83b5b5e skb_flow_get_icmp_tci +EXPORT_SYMBOL vmlinux 0xe83d130b generic_splice_sendpage +EXPORT_SYMBOL vmlinux 0xe845b0b6 dcache_dir_lseek +EXPORT_SYMBOL vmlinux 0xe85d7510 pci_free_host_bridge EXPORT_SYMBOL vmlinux 0xe85f2123 acpi_tb_unload_table -EXPORT_SYMBOL vmlinux 0xe86376de xfrm_state_flush -EXPORT_SYMBOL vmlinux 0xe8757cd5 follow_down -EXPORT_SYMBOL vmlinux 0xe87ae7de keyring_alloc -EXPORT_SYMBOL vmlinux 0xe8831fea ipv6_skip_exthdr -EXPORT_SYMBOL vmlinux 0xe89b15dd dcache_dir_lseek -EXPORT_SYMBOL vmlinux 0xe8bcafd8 d_invalidate -EXPORT_SYMBOL vmlinux 0xe8e07eed pci_ep_cfs_remove_epf_group -EXPORT_SYMBOL vmlinux 0xe8e1b773 dev_mc_del_global -EXPORT_SYMBOL vmlinux 0xe8e376b9 __SCK__tp_func_spi_transfer_stop +EXPORT_SYMBOL vmlinux 0xe869948a blk_queue_max_segment_size +EXPORT_SYMBOL vmlinux 0xe8706c10 pci_choose_state +EXPORT_SYMBOL vmlinux 0xe8d6788c vm_iomap_memory +EXPORT_SYMBOL vmlinux 0xe8e3f6da setup_arg_pages +EXPORT_SYMBOL vmlinux 0xe8e5e61c ilookup +EXPORT_SYMBOL vmlinux 0xe8f7d778 cros_ec_get_next_event EXPORT_SYMBOL vmlinux 0xe8fbf4fa __alloc_bucket_spinlocks -EXPORT_SYMBOL vmlinux 0xe8fdbfc6 fb_show_logo EXPORT_SYMBOL vmlinux 0xe909997a bitmap_print_list_to_buf -EXPORT_SYMBOL vmlinux 0xe90ad164 param_ops_invbool +EXPORT_SYMBOL vmlinux 0xe911f468 netlink_broadcast_filtered EXPORT_SYMBOL vmlinux 0xe914e41e strcpy -EXPORT_SYMBOL vmlinux 0xe939bc38 pm860x_bulk_read -EXPORT_SYMBOL vmlinux 0xe951e764 md_bitmap_sync_with_cluster +EXPORT_SYMBOL vmlinux 0xe91633fc xsk_set_tx_need_wakeup +EXPORT_SYMBOL vmlinux 0xe920f280 lookup_positive_unlocked +EXPORT_SYMBOL vmlinux 0xe929c350 pagecache_write_begin +EXPORT_SYMBOL vmlinux 0xe92d116c mmc_retune_release +EXPORT_SYMBOL vmlinux 0xe93a08b2 fbcon_update_vcs +EXPORT_SYMBOL vmlinux 0xe94b0e01 xfrm_dst_ifdown +EXPORT_SYMBOL vmlinux 0xe94f2d3f tc_setup_cb_replace EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino -EXPORT_SYMBOL vmlinux 0xe9662d8e agp_unbind_memory -EXPORT_SYMBOL vmlinux 0xe97a2544 ndo_dflt_fdb_dump -EXPORT_SYMBOL vmlinux 0xe994bacf md_register_thread -EXPORT_SYMBOL vmlinux 0xe9960758 simple_fill_super -EXPORT_SYMBOL vmlinux 0xe99acd04 pps_lookup_dev +EXPORT_SYMBOL vmlinux 0xe9566df8 iget_locked +EXPORT_SYMBOL vmlinux 0xe957712c page_pool_release_page +EXPORT_SYMBOL vmlinux 0xe968cc5b bio_split +EXPORT_SYMBOL vmlinux 0xe970fdc7 key_put +EXPORT_SYMBOL vmlinux 0xe975c670 genphy_restart_aneg +EXPORT_SYMBOL vmlinux 0xe9858313 vga_switcheroo_register_handler +EXPORT_SYMBOL vmlinux 0xe98a86ba pci_dev_driver +EXPORT_SYMBOL vmlinux 0xe9958e7e seq_file_path +EXPORT_SYMBOL vmlinux 0xe9a2ea63 phy_find_first EXPORT_SYMBOL vmlinux 0xe9a5e67f intel_graphics_stolen_res EXPORT_SYMBOL vmlinux 0xe9aaf799 vm_event_states EXPORT_SYMBOL vmlinux 0xe9af7397 __xa_set_mark -EXPORT_SYMBOL vmlinux 0xe9b052ac vlan_for_each -EXPORT_SYMBOL vmlinux 0xe9b8b8f0 update_devfreq -EXPORT_SYMBOL vmlinux 0xe9b92357 jbd2_fc_begin_commit -EXPORT_SYMBOL vmlinux 0xe9beba1c tty_register_device -EXPORT_SYMBOL vmlinux 0xe9d37c5f tcp_stream_memory_free -EXPORT_SYMBOL vmlinux 0xe9e31d83 sock_no_accept EXPORT_SYMBOL vmlinux 0xe9e8faeb efi_tpm_final_log_size -EXPORT_SYMBOL vmlinux 0xe9f0b4ad alloc_anon_inode EXPORT_SYMBOL vmlinux 0xe9f7149c zlib_deflate_workspacesize -EXPORT_SYMBOL vmlinux 0xe9fef785 vfs_get_link EXPORT_SYMBOL vmlinux 0xe9ffc063 down_trylock -EXPORT_SYMBOL vmlinux 0xea039f5c twl6040_reg_write +EXPORT_SYMBOL vmlinux 0xea01aa24 dev_vprintk_emit +EXPORT_SYMBOL vmlinux 0xea1434ec __dev_remove_pack +EXPORT_SYMBOL vmlinux 0xea1e5767 nvdimm_namespace_common_probe EXPORT_SYMBOL vmlinux 0xea3c8e4e scsilun_to_int -EXPORT_SYMBOL vmlinux 0xea5f690c __breadahead_gfp +EXPORT_SYMBOL vmlinux 0xea59368d napi_gro_receive +EXPORT_SYMBOL vmlinux 0xea5af676 nexthop_res_grp_activity_update EXPORT_SYMBOL vmlinux 0xea6f9a36 zlib_deflate_dfltcc_enabled -EXPORT_SYMBOL vmlinux 0xea76ba50 __sk_mem_schedule EXPORT_SYMBOL vmlinux 0xea778fab sg_pcopy_to_buffer -EXPORT_SYMBOL vmlinux 0xea8cb9cd phy_do_ioctl +EXPORT_SYMBOL vmlinux 0xeaa00a82 dev_uc_flush +EXPORT_SYMBOL vmlinux 0xeaa33c9b blk_post_runtime_suspend +EXPORT_SYMBOL vmlinux 0xeaa5c9e9 sock_rfree +EXPORT_SYMBOL vmlinux 0xeaa948db blk_mq_tagset_busy_iter EXPORT_SYMBOL vmlinux 0xeab6f4c4 acpi_check_resource_conflict -EXPORT_SYMBOL vmlinux 0xeabc1b9f pci_write_config_byte -EXPORT_SYMBOL vmlinux 0xeac92235 unregister_binfmt -EXPORT_SYMBOL vmlinux 0xead31c79 bmap +EXPORT_SYMBOL vmlinux 0xead66f0c __cgroup_bpf_run_filter_sock_ops +EXPORT_SYMBOL vmlinux 0xead88a83 sock_set_priority EXPORT_SYMBOL vmlinux 0xeae3dfd6 __const_udelay +EXPORT_SYMBOL vmlinux 0xeaf25420 security_sk_classify_flow EXPORT_SYMBOL vmlinux 0xeafc141f __posix_acl_chmod EXPORT_SYMBOL vmlinux 0xeb078aee _raw_write_unlock_irqrestore -EXPORT_SYMBOL vmlinux 0xeb0e1eb3 netif_carrier_off -EXPORT_SYMBOL vmlinux 0xeb145330 seq_pad -EXPORT_SYMBOL vmlinux 0xeb1f3bed dump_align -EXPORT_SYMBOL vmlinux 0xeb22866a jbd2_journal_check_available_features +EXPORT_SYMBOL vmlinux 0xeb0a5604 kthread_blkcg EXPORT_SYMBOL vmlinux 0xeb233a45 __kmalloc EXPORT_SYMBOL vmlinux 0xeb2391c9 gen_new_estimator +EXPORT_SYMBOL vmlinux 0xeb268e49 jbd2_fc_end_commit_fallback EXPORT_SYMBOL vmlinux 0xeb31aee8 acpi_trace_point +EXPORT_SYMBOL vmlinux 0xeb32bab0 disk_start_io_acct EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end -EXPORT_SYMBOL vmlinux 0xeb440c71 __cleancache_init_fs EXPORT_SYMBOL vmlinux 0xeb44339a free_pages_exact -EXPORT_SYMBOL vmlinux 0xeb482844 pci_bus_assign_resources -EXPORT_SYMBOL vmlinux 0xeb668bed rtnl_link_get_net +EXPORT_SYMBOL vmlinux 0xeb50385c ndo_dflt_fdb_add +EXPORT_SYMBOL vmlinux 0xeb5b160e elv_rb_latter_request EXPORT_SYMBOL vmlinux 0xeb7f6046 acpi_get_devices +EXPORT_SYMBOL vmlinux 0xeb9b5568 pci_read_vpd EXPORT_SYMBOL vmlinux 0xeb9e913d sgl_alloc_order EXPORT_SYMBOL vmlinux 0xeb9eef52 match_uint -EXPORT_SYMBOL vmlinux 0xeba84356 pci_pme_active -EXPORT_SYMBOL vmlinux 0xebcf839d scsi_host_lookup -EXPORT_SYMBOL vmlinux 0xebf0b990 blk_mq_tag_to_rq -EXPORT_SYMBOL vmlinux 0xebf75572 vfs_get_super -EXPORT_SYMBOL vmlinux 0xec1b02ea eth_gro_receive +EXPORT_SYMBOL vmlinux 0xebaa67c4 blk_get_request +EXPORT_SYMBOL vmlinux 0xebaab297 block_commit_write +EXPORT_SYMBOL vmlinux 0xebd0cd48 filemap_fdatawrite +EXPORT_SYMBOL vmlinux 0xebffc8d2 dquot_load_quota_inode +EXPORT_SYMBOL vmlinux 0xec094a0e mount_single +EXPORT_SYMBOL vmlinux 0xec1ebfb8 request_firmware_into_buf EXPORT_SYMBOL vmlinux 0xec2b8a42 acpi_walk_namespace -EXPORT_SYMBOL vmlinux 0xec2c7714 __skb_recv_udp EXPORT_SYMBOL vmlinux 0xec2e1c8f proc_doulongvec_minmax -EXPORT_SYMBOL vmlinux 0xec39b470 ppp_unregister_channel -EXPORT_SYMBOL vmlinux 0xec39be4d __netdev_alloc_skb -EXPORT_SYMBOL vmlinux 0xec3c54a1 inet_sk_set_state -EXPORT_SYMBOL vmlinux 0xec42d096 sdev_enable_disk_events -EXPORT_SYMBOL vmlinux 0xec4cc8c3 security_skb_classify_flow EXPORT_SYMBOL vmlinux 0xec4d9e3a clk_get_sys -EXPORT_SYMBOL vmlinux 0xec697c1f mipi_dsi_dcs_get_power_mode -EXPORT_SYMBOL vmlinux 0xec7023bb user_path_at_empty -EXPORT_SYMBOL vmlinux 0xec8ed78c mmc_detect_change -EXPORT_SYMBOL vmlinux 0xeca3033d starget_for_each_device +EXPORT_SYMBOL vmlinux 0xec6e17f7 scsi_host_get +EXPORT_SYMBOL vmlinux 0xeca904e6 mmc_can_discard EXPORT_SYMBOL vmlinux 0xecac8407 __memcpy -EXPORT_SYMBOL vmlinux 0xecbf1c29 vfs_llseek -EXPORT_SYMBOL vmlinux 0xecc8f873 xfrm_state_free -EXPORT_SYMBOL vmlinux 0xecda7acb key_type_keyring +EXPORT_SYMBOL vmlinux 0xecbc0938 dcb_ieee_getapp_prio_dscp_mask_map +EXPORT_SYMBOL vmlinux 0xecc59e3d tcp_md5_hash_skb_data +EXPORT_SYMBOL vmlinux 0xecc7fbd3 i2c_smbus_xfer EXPORT_SYMBOL vmlinux 0xecdcabd2 copy_user_generic_unrolled -EXPORT_SYMBOL vmlinux 0xecdfc464 vc_cons -EXPORT_SYMBOL vmlinux 0xece4ac43 vga_switcheroo_lock_ddc +EXPORT_SYMBOL vmlinux 0xece5e47f tcp_mtu_to_mss EXPORT_SYMBOL vmlinux 0xece784c2 rb_first -EXPORT_SYMBOL vmlinux 0xecec6a11 vm_insert_pages +EXPORT_SYMBOL vmlinux 0xeceb5a68 tcp_sock_set_quickack EXPORT_SYMBOL vmlinux 0xecfd68ef acpi_get_node EXPORT_SYMBOL vmlinux 0xed00c4fb acpi_os_printf -EXPORT_SYMBOL vmlinux 0xed13f78a phy_ethtool_ksettings_set +EXPORT_SYMBOL vmlinux 0xed04561d md_check_no_bitmap +EXPORT_SYMBOL vmlinux 0xed07d0df __xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xed13e69f xfrm_init_replay EXPORT_SYMBOL vmlinux 0xed238617 __put_cred -EXPORT_SYMBOL vmlinux 0xed24155f md_set_array_sectors -EXPORT_SYMBOL vmlinux 0xed32ea8a neigh_connected_output +EXPORT_SYMBOL vmlinux 0xed26d298 xsk_clear_tx_need_wakeup EXPORT_SYMBOL vmlinux 0xed34ebbc acpi_any_gpe_status_set -EXPORT_SYMBOL vmlinux 0xed35b77d d_move +EXPORT_SYMBOL vmlinux 0xed38dd83 fifo_create_dflt +EXPORT_SYMBOL vmlinux 0xed40e94e pps_unregister_source +EXPORT_SYMBOL vmlinux 0xed48bb1e jbd2_journal_check_available_features EXPORT_SYMBOL vmlinux 0xed5376c5 __printk_wait_on_cpu_lock EXPORT_SYMBOL vmlinux 0xed55f929 acpi_os_unmap_generic_address +EXPORT_SYMBOL vmlinux 0xed600a77 kernel_bind EXPORT_SYMBOL vmlinux 0xed656e30 udp_encap_disable -EXPORT_SYMBOL vmlinux 0xed7dd173 tty_port_tty_get -EXPORT_SYMBOL vmlinux 0xed872363 pci_try_set_mwi -EXPORT_SYMBOL vmlinux 0xed9ae301 jbd2_log_wait_commit +EXPORT_SYMBOL vmlinux 0xed8140d2 __skb_pad +EXPORT_SYMBOL vmlinux 0xed97114d dcache_dir_open +EXPORT_SYMBOL vmlinux 0xed9d797f jbd2_journal_force_commit +EXPORT_SYMBOL vmlinux 0xed9edc4d iov_iter_single_seg_count +EXPORT_SYMBOL vmlinux 0xedaaa984 generic_write_end EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp EXPORT_SYMBOL vmlinux 0xedc03953 iounmap -EXPORT_SYMBOL vmlinux 0xedc9a97d netdev_upper_get_next_dev_rcu -EXPORT_SYMBOL vmlinux 0xedcd030c logfc -EXPORT_SYMBOL vmlinux 0xedceb863 tcp_sock_set_quickack -EXPORT_SYMBOL vmlinux 0xeddba77f input_mt_get_slot_by_key -EXPORT_SYMBOL vmlinux 0xedefa6a9 sock_wfree -EXPORT_SYMBOL vmlinux 0xedf713d3 dev_uc_sync -EXPORT_SYMBOL vmlinux 0xedf75ea5 dcb_ieee_getapp_mask -EXPORT_SYMBOL vmlinux 0xee17a13e __block_write_full_page -EXPORT_SYMBOL vmlinux 0xee1d765c sock_diag_put_filterinfo +EXPORT_SYMBOL vmlinux 0xedca311a inet_frags_init +EXPORT_SYMBOL vmlinux 0xedcbb0d0 ip_tunnel_parse_protocol +EXPORT_SYMBOL vmlinux 0xedcf2f10 _dev_emerg +EXPORT_SYMBOL vmlinux 0xee0890ab pcie_ptm_enabled +EXPORT_SYMBOL vmlinux 0xee0921d6 request_firmware +EXPORT_SYMBOL vmlinux 0xee12ed7b skb_page_frag_refill EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable -EXPORT_SYMBOL vmlinux 0xee2d34cb sock_create -EXPORT_SYMBOL vmlinux 0xee358db9 xfrm_policy_unregister_afinfo +EXPORT_SYMBOL vmlinux 0xee2d9706 nf_reinject +EXPORT_SYMBOL vmlinux 0xee3475d0 shrink_dcache_parent +EXPORT_SYMBOL vmlinux 0xee39b2ff mmc_calc_max_discard +EXPORT_SYMBOL vmlinux 0xee42c2b2 param_get_ushort +EXPORT_SYMBOL vmlinux 0xee4739d4 pin_user_pages_remote +EXPORT_SYMBOL vmlinux 0xee55797d unregister_qdisc EXPORT_SYMBOL vmlinux 0xee58e970 fb_add_videomode -EXPORT_SYMBOL vmlinux 0xee5ab732 unregister_netdevice_notifier_net EXPORT_SYMBOL vmlinux 0xee7d7deb gen_pool_dma_zalloc EXPORT_SYMBOL vmlinux 0xee7eb9e1 pnp_platform_devices -EXPORT_SYMBOL vmlinux 0xee8a56cd phy_driver_unregister +EXPORT_SYMBOL vmlinux 0xee858655 mmc_get_card +EXPORT_SYMBOL vmlinux 0xee8928fa __cleancache_invalidate_inode EXPORT_SYMBOL vmlinux 0xee8c02e9 vprintk_emit +EXPORT_SYMBOL vmlinux 0xee8d0fc4 default_qdisc_ops EXPORT_SYMBOL vmlinux 0xee8d74d6 jiffies64_to_nsecs EXPORT_SYMBOL vmlinux 0xee91879b rb_first_postorder -EXPORT_SYMBOL vmlinux 0xeea7b766 mdio_device_free +EXPORT_SYMBOL vmlinux 0xee9a9113 __cleancache_get_page +EXPORT_SYMBOL vmlinux 0xee9ed266 disk_end_io_acct +EXPORT_SYMBOL vmlinux 0xeea28fc1 devm_request_threaded_irq EXPORT_SYMBOL vmlinux 0xeea9dbaf bitmap_bitremap -EXPORT_SYMBOL vmlinux 0xeeb5bd8f __tracepoint_spi_transfer_start -EXPORT_SYMBOL vmlinux 0xeed57548 drop_nlink -EXPORT_SYMBOL vmlinux 0xeee4dbe4 d_genocide -EXPORT_SYMBOL vmlinux 0xeeeb3484 dev_get_stats -EXPORT_SYMBOL vmlinux 0xeefedaf3 ip_fraglist_prepare -EXPORT_SYMBOL vmlinux 0xeeff36fe from_kgid_munged -EXPORT_SYMBOL vmlinux 0xef01293b __SCK__tp_func_rdpmc -EXPORT_SYMBOL vmlinux 0xef040891 tcp_v4_do_rcv +EXPORT_SYMBOL vmlinux 0xeebda58e phy_ethtool_nway_reset +EXPORT_SYMBOL vmlinux 0xeec9b9ce clk_bulk_get_all +EXPORT_SYMBOL vmlinux 0xeee617ce d_set_fallthru +EXPORT_SYMBOL vmlinux 0xeef86318 __tracepoint_dma_fence_signaled +EXPORT_SYMBOL vmlinux 0xeef94084 dev_lstats_read +EXPORT_SYMBOL vmlinux 0xef0fb01b kernel_param_lock +EXPORT_SYMBOL vmlinux 0xef163db1 eth_header_cache_update +EXPORT_SYMBOL vmlinux 0xef1c81ff unregister_filesystem EXPORT_SYMBOL vmlinux 0xef209413 textsearch_register -EXPORT_SYMBOL vmlinux 0xef41ecd0 padata_do_parallel -EXPORT_SYMBOL vmlinux 0xef43572b __skb_pad -EXPORT_SYMBOL vmlinux 0xef6ffbcb neigh_app_ns -EXPORT_SYMBOL vmlinux 0xef70954b pci_setup_cardbus -EXPORT_SYMBOL vmlinux 0xef7d9edd netdev_change_features -EXPORT_SYMBOL vmlinux 0xef7feed6 fs_param_is_fd -EXPORT_SYMBOL vmlinux 0xef849339 vga_put +EXPORT_SYMBOL vmlinux 0xef214766 default_llseek +EXPORT_SYMBOL vmlinux 0xef303f36 processors +EXPORT_SYMBOL vmlinux 0xef4abf84 trace_event_printf +EXPORT_SYMBOL vmlinux 0xef56c9b2 i2c_smbus_read_byte_data +EXPORT_SYMBOL vmlinux 0xef61be54 irq_set_chip +EXPORT_SYMBOL vmlinux 0xef644861 fb_set_suspend +EXPORT_SYMBOL vmlinux 0xef8ee602 file_open_root EXPORT_SYMBOL vmlinux 0xef9aedfc boot_option_idle_override -EXPORT_SYMBOL vmlinux 0xefa88383 eth_header_cache_update +EXPORT_SYMBOL vmlinux 0xefadb9e4 unix_destruct_scm EXPORT_SYMBOL vmlinux 0xefaf2e4f tcf_queue_work -EXPORT_SYMBOL vmlinux 0xefb4c647 remove_conflicting_pci_framebuffers EXPORT_SYMBOL vmlinux 0xefb80ad6 config_item_get_unless_zero -EXPORT_SYMBOL vmlinux 0xefc05419 proc_create_single_data +EXPORT_SYMBOL vmlinux 0xefcb3d52 nf_log_trace EXPORT_SYMBOL vmlinux 0xefcea2e7 acpi_warning +EXPORT_SYMBOL vmlinux 0xefcfa776 dev_pick_tx_cpu_id +EXPORT_SYMBOL vmlinux 0xefd94a47 eth_gro_complete +EXPORT_SYMBOL vmlinux 0xefe9c866 __tracepoint_module_get +EXPORT_SYMBOL vmlinux 0xefee77e8 jbd2__journal_restart EXPORT_SYMBOL vmlinux 0xefee932c acpi_get_data_full -EXPORT_SYMBOL vmlinux 0xeff079e0 scm_fp_dup +EXPORT_SYMBOL vmlinux 0xeff116cc proc_mkdir_mode EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list EXPORT_SYMBOL vmlinux 0xf008a885 seg6_hmac_init -EXPORT_SYMBOL vmlinux 0xf017d2de pnp_release_card_device -EXPORT_SYMBOL vmlinux 0xf0183080 skb_copy_and_csum_dev -EXPORT_SYMBOL vmlinux 0xf01bdb22 jbd2_journal_lock_updates -EXPORT_SYMBOL vmlinux 0xf01d79db rproc_set_firmware EXPORT_SYMBOL vmlinux 0xf02aa937 wait_for_completion_interruptible_timeout -EXPORT_SYMBOL vmlinux 0xf03dabe8 pnpacpi_protocol +EXPORT_SYMBOL vmlinux 0xf02bf8c6 xfrm_input_unregister_afinfo +EXPORT_SYMBOL vmlinux 0xf03a22e2 pci_request_regions +EXPORT_SYMBOL vmlinux 0xf03c0918 dquot_release EXPORT_SYMBOL vmlinux 0xf05c32ad rdmsr_on_cpus -EXPORT_SYMBOL vmlinux 0xf06f8377 netdev_name_node_alt_create -EXPORT_SYMBOL vmlinux 0xf0762e39 qdisc_class_hash_grow -EXPORT_SYMBOL vmlinux 0xf0954624 sock_no_linger -EXPORT_SYMBOL vmlinux 0xf09643dc pci_read_vpd +EXPORT_SYMBOL vmlinux 0xf06e62a4 mmc_put_card EXPORT_SYMBOL vmlinux 0xf09b5d9a get_zeroed_page +EXPORT_SYMBOL vmlinux 0xf0a19556 max8925_reg_write EXPORT_SYMBOL vmlinux 0xf0a71b1b revert_creds -EXPORT_SYMBOL vmlinux 0xf0ac9873 pci_enable_device_mem -EXPORT_SYMBOL vmlinux 0xf0b42a77 set_pages_wb -EXPORT_SYMBOL vmlinux 0xf0d2d88f import_iovec -EXPORT_SYMBOL vmlinux 0xf0f32801 fs_param_is_s32 +EXPORT_SYMBOL vmlinux 0xf0aed214 tcp_child_process +EXPORT_SYMBOL vmlinux 0xf0b52976 finish_swait +EXPORT_SYMBOL vmlinux 0xf0c47f18 devfreq_add_device +EXPORT_SYMBOL vmlinux 0xf0f074b8 eth_type_trans EXPORT_SYMBOL vmlinux 0xf102033e slhc_remember -EXPORT_SYMBOL vmlinux 0xf104f975 __seq_open_private +EXPORT_SYMBOL vmlinux 0xf10823ab ip6_mtu +EXPORT_SYMBOL vmlinux 0xf11dbaf0 mipi_dsi_generic_read EXPORT_SYMBOL vmlinux 0xf11dd46e _page_poisoning_enabled_early -EXPORT_SYMBOL vmlinux 0xf14dcd2d dev_set_allmulti -EXPORT_SYMBOL vmlinux 0xf14ff0d9 mmc_can_secure_erase_trim +EXPORT_SYMBOL vmlinux 0xf13ae043 pci_ep_cfs_remove_epc_group +EXPORT_SYMBOL vmlinux 0xf13f94f1 seq_putc +EXPORT_SYMBOL vmlinux 0xf15ca31d is_nvdimm_bus_locked EXPORT_SYMBOL vmlinux 0xf1848ee2 acpi_install_sci_handler -EXPORT_SYMBOL vmlinux 0xf1898277 ps2_sliced_command -EXPORT_SYMBOL vmlinux 0xf18f0576 max8998_write_reg -EXPORT_SYMBOL vmlinux 0xf18f6932 tcp_release_cb EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps EXPORT_SYMBOL vmlinux 0xf1969a8e __usecs_to_jiffies EXPORT_SYMBOL vmlinux 0xf1a68107 acpi_processor_preregister_performance +EXPORT_SYMBOL vmlinux 0xf1ac5e06 locks_remove_posix +EXPORT_SYMBOL vmlinux 0xf1ad1c8c xfrm_state_add +EXPORT_SYMBOL vmlinux 0xf1b61f25 mmc_of_parse_voltage +EXPORT_SYMBOL vmlinux 0xf1bd39c6 pcie_set_mps +EXPORT_SYMBOL vmlinux 0xf1bfd35e rproc_coredump_add_segment +EXPORT_SYMBOL vmlinux 0xf1ce7203 ipv4_specific EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy EXPORT_SYMBOL vmlinux 0xf1e046cc panic -EXPORT_SYMBOL vmlinux 0xf1e22c10 __scsi_execute +EXPORT_SYMBOL vmlinux 0xf1e586be tcp_rcv_state_process EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun -EXPORT_SYMBOL vmlinux 0xf1f3f664 generic_file_mmap -EXPORT_SYMBOL vmlinux 0xf1f4dbb8 vfs_get_tree -EXPORT_SYMBOL vmlinux 0xf1f97b43 pci_disable_link_state -EXPORT_SYMBOL vmlinux 0xf215f697 jbd2_journal_init_jbd_inode -EXPORT_SYMBOL vmlinux 0xf223b441 tty_devnum -EXPORT_SYMBOL vmlinux 0xf223dee6 gro_find_receive_by_type -EXPORT_SYMBOL vmlinux 0xf23996b4 input_unregister_handle +EXPORT_SYMBOL vmlinux 0xf1ff3cb8 cdrom_check_events +EXPORT_SYMBOL vmlinux 0xf20eb9c5 sdev_prefix_printk +EXPORT_SYMBOL vmlinux 0xf2168be5 netdev_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0xf2322769 find_inode_nowait EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in -EXPORT_SYMBOL vmlinux 0xf24adb69 ip6_find_1stfragopt -EXPORT_SYMBOL vmlinux 0xf2670b96 simple_link -EXPORT_SYMBOL vmlinux 0xf282caf5 inet_frag_kill +EXPORT_SYMBOL vmlinux 0xf2553530 fscrypt_ioctl_set_policy +EXPORT_SYMBOL vmlinux 0xf25a1ad6 __blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0xf26eec69 grab_cache_page_write_begin EXPORT_SYMBOL vmlinux 0xf28404cf devlink_dpipe_header_ipv6 -EXPORT_SYMBOL vmlinux 0xf28441d2 mmc_wait_for_req_done +EXPORT_SYMBOL vmlinux 0xf284d583 inet_csk_reqsk_queue_add 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 0xf29f8515 __kfifo_dma_out_prepare_r -EXPORT_SYMBOL vmlinux 0xf2a5bb6e dump_skip +EXPORT_SYMBOL vmlinux 0xf2a1b5cb devm_rproc_alloc EXPORT_SYMBOL vmlinux 0xf2b81b64 arch_io_reserve_memtype_wc -EXPORT_SYMBOL vmlinux 0xf2bdd7b7 genphy_write_mmd_unsupported -EXPORT_SYMBOL vmlinux 0xf2c3e2b6 dev_mc_add_excl EXPORT_SYMBOL vmlinux 0xf2c43f3f zlib_deflate -EXPORT_SYMBOL vmlinux 0xf2c51eab delete_from_page_cache +EXPORT_SYMBOL vmlinux 0xf2d225a4 blk_pre_runtime_resume +EXPORT_SYMBOL vmlinux 0xf2d5b014 release_sock +EXPORT_SYMBOL vmlinux 0xf2db63ed vmf_insert_pfn +EXPORT_SYMBOL vmlinux 0xf2dba74f pskb_expand_head EXPORT_SYMBOL vmlinux 0xf2e5bd87 security_free_mnt_opts -EXPORT_SYMBOL vmlinux 0xf2e66fe7 d_find_alias +EXPORT_SYMBOL vmlinux 0xf2eaba4a xsk_uses_need_wakeup +EXPORT_SYMBOL vmlinux 0xf2f0b9d7 flow_rule_match_cvlan EXPORT_SYMBOL vmlinux 0xf2f53617 memregion_free -EXPORT_SYMBOL vmlinux 0xf2fd1e98 nf_register_net_hooks +EXPORT_SYMBOL vmlinux 0xf302cbaa iov_iter_init EXPORT_SYMBOL vmlinux 0xf30965ac iosf_mbi_register_pmic_bus_access_notifier -EXPORT_SYMBOL vmlinux 0xf30ddf74 nd_btt_version EXPORT_SYMBOL vmlinux 0xf3107926 sha224_update -EXPORT_SYMBOL vmlinux 0xf32a8463 pagecache_isize_extended +EXPORT_SYMBOL vmlinux 0xf314fe16 vfs_fsync +EXPORT_SYMBOL vmlinux 0xf32ed1f1 pnp_get_resource +EXPORT_SYMBOL vmlinux 0xf32ed34a mr_mfc_find_any +EXPORT_SYMBOL vmlinux 0xf337550d input_close_device +EXPORT_SYMBOL vmlinux 0xf341a2f5 vlan_vid_add EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head -EXPORT_SYMBOL vmlinux 0xf3483730 ip_frag_next -EXPORT_SYMBOL vmlinux 0xf34f2f18 __traceiter_mmap_lock_acquire_returned -EXPORT_SYMBOL vmlinux 0xf353890e tcf_exts_num_actions EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier -EXPORT_SYMBOL vmlinux 0xf377d132 xsk_get_pool_from_qid -EXPORT_SYMBOL vmlinux 0xf37c3094 ip_options_compile -EXPORT_SYMBOL vmlinux 0xf3800159 __tracepoint_kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0xf383443f devfreq_remove_governor -EXPORT_SYMBOL vmlinux 0xf38c8644 scm_detach_fds +EXPORT_SYMBOL vmlinux 0xf3634c0a tcp_seq_start +EXPORT_SYMBOL vmlinux 0xf3899fa9 security_path_mknod +EXPORT_SYMBOL vmlinux 0xf38f5f01 qdisc_warn_nonwc EXPORT_SYMBOL vmlinux 0xf3916987 global_cursor_default -EXPORT_SYMBOL vmlinux 0xf39be309 sock_init_data +EXPORT_SYMBOL vmlinux 0xf3a4ecd4 datagram_poll EXPORT_SYMBOL vmlinux 0xf3a57892 release_dentry_name_snapshot -EXPORT_SYMBOL vmlinux 0xf3ab4479 blk_queue_bounce_limit EXPORT_SYMBOL vmlinux 0xf3b30a06 utf8version_latest -EXPORT_SYMBOL vmlinux 0xf3c8bf4b skb_checksum_trimmed +EXPORT_SYMBOL vmlinux 0xf3c0ed4b input_set_min_poll_interval +EXPORT_SYMBOL vmlinux 0xf3c6ff97 blk_queue_update_dma_pad +EXPORT_SYMBOL vmlinux 0xf3da2912 netdev_printk EXPORT_SYMBOL vmlinux 0xf3e0e1df allocate_resource +EXPORT_SYMBOL vmlinux 0xf3e2d30a dev_mc_sync_multiple EXPORT_SYMBOL vmlinux 0xf3e6402e __bitmap_equal +EXPORT_SYMBOL vmlinux 0xf3ea1892 udp_pre_connect +EXPORT_SYMBOL vmlinux 0xf3f471f6 vga_switcheroo_fini_domain_pm_ops EXPORT_SYMBOL vmlinux 0xf3fc8a70 ns_capable_noaudit -EXPORT_SYMBOL vmlinux 0xf41c2466 xfrm_state_register_afinfo -EXPORT_SYMBOL vmlinux 0xf42ab485 devm_ioremap_np +EXPORT_SYMBOL vmlinux 0xf40b235b __hw_addr_ref_unsync_dev +EXPORT_SYMBOL vmlinux 0xf42ee8a6 bdev_check_media_change EXPORT_SYMBOL vmlinux 0xf43d2caa acpi_remove_interface -EXPORT_SYMBOL vmlinux 0xf4447937 __mod_zone_page_state -EXPORT_SYMBOL vmlinux 0xf4493181 ptp_find_pin_unlocked +EXPORT_SYMBOL vmlinux 0xf44a8297 inet_getname EXPORT_SYMBOL vmlinux 0xf44a904a net_ns_barrier -EXPORT_SYMBOL vmlinux 0xf47420b3 free_inode_nonrcu +EXPORT_SYMBOL vmlinux 0xf44c635c rproc_elf_load_segments +EXPORT_SYMBOL vmlinux 0xf465bdfc xfrm_init_state EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const -EXPORT_SYMBOL vmlinux 0xf488857d fs_param_is_path -EXPORT_SYMBOL vmlinux 0xf4934feb fscrypt_decrypt_block_inplace -EXPORT_SYMBOL vmlinux 0xf4a319ad rawv6_mh_filter_unregister +EXPORT_SYMBOL vmlinux 0xf4870461 __sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0xf4954ba7 bio_integrity_prep +EXPORT_SYMBOL vmlinux 0xf4993d1b skb_pull EXPORT_SYMBOL vmlinux 0xf4a565fd wrmsr_on_cpus +EXPORT_SYMBOL vmlinux 0xf4a7fb3c elv_rb_del +EXPORT_SYMBOL vmlinux 0xf4aa653f generic_set_encrypted_ci_d_ops EXPORT_SYMBOL vmlinux 0xf4b754fd acpi_resources_are_enforced EXPORT_SYMBOL vmlinux 0xf4bdbeb9 __frontswap_invalidate_area +EXPORT_SYMBOL vmlinux 0xf4bddebd __cgroup_bpf_run_filter_skb +EXPORT_SYMBOL vmlinux 0xf4bfb855 phy_init_eee EXPORT_SYMBOL vmlinux 0xf4db35bc stpcpy +EXPORT_SYMBOL vmlinux 0xf4e3931e vfs_iter_write +EXPORT_SYMBOL vmlinux 0xf4e727bb __phy_resume EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock -EXPORT_SYMBOL vmlinux 0xf4ff7982 tcp_get_md5sig_pool -EXPORT_SYMBOL vmlinux 0xf5135573 dec_zone_page_state -EXPORT_SYMBOL vmlinux 0xf51c92cf new_inode -EXPORT_SYMBOL vmlinux 0xf527abdd max8998_bulk_write -EXPORT_SYMBOL vmlinux 0xf5297ea7 fwnode_get_phy_id -EXPORT_SYMBOL vmlinux 0xf53bdeef generic_permission +EXPORT_SYMBOL vmlinux 0xf5094228 netdev_crit +EXPORT_SYMBOL vmlinux 0xf5289216 vme_register_driver +EXPORT_SYMBOL vmlinux 0xf5336c49 single_open_size +EXPORT_SYMBOL vmlinux 0xf5354c67 proc_mkdir EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy -EXPORT_SYMBOL vmlinux 0xf55947d3 vma_set_file -EXPORT_SYMBOL vmlinux 0xf55fa9dc simple_open -EXPORT_SYMBOL vmlinux 0xf56a9a53 dev_get_by_index -EXPORT_SYMBOL vmlinux 0xf5705487 rt_mutex_base_init -EXPORT_SYMBOL vmlinux 0xf585335a pfifo_qdisc_ops -EXPORT_SYMBOL vmlinux 0xf58f5cde pin_user_pages +EXPORT_SYMBOL vmlinux 0xf5422e9a mfd_cell_disable +EXPORT_SYMBOL vmlinux 0xf54980fc sock_no_bind +EXPORT_SYMBOL vmlinux 0xf54d127d __traceiter_mmap_lock_start_locking +EXPORT_SYMBOL vmlinux 0xf55a04f4 add_random_ready_callback +EXPORT_SYMBOL vmlinux 0xf56d773c cdrom_mode_select +EXPORT_SYMBOL vmlinux 0xf58d345e inc_nlink +EXPORT_SYMBOL vmlinux 0xf58e4006 devfreq_suspend_device EXPORT_SYMBOL vmlinux 0xf591753d nf_hooks_needed -EXPORT_SYMBOL vmlinux 0xf594e557 uart_resume_port EXPORT_SYMBOL vmlinux 0xf5a20ed2 __genradix_prealloc EXPORT_SYMBOL vmlinux 0xf5a5c84c msrs_alloc -EXPORT_SYMBOL vmlinux 0xf5ace163 input_register_handle EXPORT_SYMBOL vmlinux 0xf5add0ae ns_capable_setid -EXPORT_SYMBOL vmlinux 0xf5beaef3 pci_wait_for_pending_transaction -EXPORT_SYMBOL vmlinux 0xf5bf92bd con_copy_unimap -EXPORT_SYMBOL vmlinux 0xf5c22a86 scsi_remove_host +EXPORT_SYMBOL vmlinux 0xf5d11c67 ip_frag_init +EXPORT_SYMBOL vmlinux 0xf5d3ecd8 inet_add_offload +EXPORT_SYMBOL vmlinux 0xf5d8ffcf __d_drop +EXPORT_SYMBOL vmlinux 0xf5da3712 inet_frag_pull_head EXPORT_SYMBOL vmlinux 0xf5e7ea40 ktime_get_coarse_ts64 -EXPORT_SYMBOL vmlinux 0xf5f04283 nf_ip_checksum -EXPORT_SYMBOL vmlinux 0xf60472e5 get_bitmap_from_slot -EXPORT_SYMBOL vmlinux 0xf6079846 pcim_iomap +EXPORT_SYMBOL vmlinux 0xf5fbc450 flow_indr_block_cb_alloc +EXPORT_SYMBOL vmlinux 0xf607b8e0 scsi_print_result EXPORT_SYMBOL vmlinux 0xf60ab926 acpi_get_event_status -EXPORT_SYMBOL vmlinux 0xf62444ed jbd2_fc_get_buf +EXPORT_SYMBOL vmlinux 0xf60eb171 tcp_create_openreq_child +EXPORT_SYMBOL vmlinux 0xf6211624 padata_set_cpumask +EXPORT_SYMBOL vmlinux 0xf6245a3c vga_switcheroo_unlock_ddc EXPORT_SYMBOL vmlinux 0xf643d104 hsiphash_4u32 -EXPORT_SYMBOL vmlinux 0xf64e09fc ip_route_input_noref -EXPORT_SYMBOL vmlinux 0xf65e3d59 fs_param_is_blob +EXPORT_SYMBOL vmlinux 0xf65088e8 neigh_lookup_nodev +EXPORT_SYMBOL vmlinux 0xf6586de3 vga_switcheroo_client_probe_defer EXPORT_SYMBOL vmlinux 0xf665f74f sock_load_diag_module -EXPORT_SYMBOL vmlinux 0xf67080a3 mipi_dsi_host_register -EXPORT_SYMBOL vmlinux 0xf67201e2 md_done_sync -EXPORT_SYMBOL vmlinux 0xf681ba80 tcf_idrinfo_destroy EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier -EXPORT_SYMBOL vmlinux 0xf6856d0f km_report -EXPORT_SYMBOL vmlinux 0xf6b0557c pci_enable_wake -EXPORT_SYMBOL vmlinux 0xf6c8003f register_key_type -EXPORT_SYMBOL vmlinux 0xf6cabf36 proc_create_seq_private -EXPORT_SYMBOL vmlinux 0xf6cc5860 agp_bridge -EXPORT_SYMBOL vmlinux 0xf6ce5f93 mdio_device_reset -EXPORT_SYMBOL vmlinux 0xf6e29152 block_commit_write +EXPORT_SYMBOL vmlinux 0xf6948359 gro_cells_receive +EXPORT_SYMBOL vmlinux 0xf69a2938 nobh_writepage +EXPORT_SYMBOL vmlinux 0xf6a5ff5d ptp_clock_index +EXPORT_SYMBOL vmlinux 0xf6c3f41f inet_sk_set_state +EXPORT_SYMBOL vmlinux 0xf6e89897 jbd2_journal_check_used_features EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit +EXPORT_SYMBOL vmlinux 0xf6edff68 dev_uc_add_excl +EXPORT_SYMBOL vmlinux 0xf6f90425 tcp_v4_syn_recv_sock EXPORT_SYMBOL vmlinux 0xf6f9d58d init_on_free EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor -EXPORT_SYMBOL vmlinux 0xf70c62ce sockfd_lookup -EXPORT_SYMBOL vmlinux 0xf7169104 pci_ep_cfs_remove_epc_group -EXPORT_SYMBOL vmlinux 0xf728232e xsk_tx_completed -EXPORT_SYMBOL vmlinux 0xf72b48a9 __traceiter_mmap_lock_start_locking -EXPORT_SYMBOL vmlinux 0xf72dc04b neigh_xmit +EXPORT_SYMBOL vmlinux 0xf6ff5900 generic_delete_inode +EXPORT_SYMBOL vmlinux 0xf7097d67 blk_queue_max_hw_sectors +EXPORT_SYMBOL vmlinux 0xf70fe192 sock_dequeue_err_skb EXPORT_SYMBOL vmlinux 0xf738d1be register_blocking_lsm_notifier -EXPORT_SYMBOL vmlinux 0xf73adfd2 locks_lock_inode_wait -EXPORT_SYMBOL vmlinux 0xf73c8dba inet6_offloads -EXPORT_SYMBOL vmlinux 0xf759a6e4 __register_binfmt -EXPORT_SYMBOL vmlinux 0xf7606e5c nvdimm_namespace_common_probe +EXPORT_SYMBOL vmlinux 0xf741a4ee devm_devfreq_remove_device +EXPORT_SYMBOL vmlinux 0xf76f473b dquot_set_dqinfo +EXPORT_SYMBOL vmlinux 0xf771afd4 kernel_recvmsg EXPORT_SYMBOL vmlinux 0xf77337a1 hdmi_audio_infoframe_check -EXPORT_SYMBOL vmlinux 0xf77bb062 vm_iomap_memory -EXPORT_SYMBOL vmlinux 0xf77df897 tcp_recvmsg -EXPORT_SYMBOL vmlinux 0xf78b6783 pcix_get_mmrbc -EXPORT_SYMBOL vmlinux 0xf79a46d7 arp_tbl +EXPORT_SYMBOL vmlinux 0xf7776a4e get_ipc_ns_exported +EXPORT_SYMBOL vmlinux 0xf77dacd4 security_sb_mnt_opts_compat +EXPORT_SYMBOL vmlinux 0xf7844209 i2c_smbus_write_byte EXPORT_SYMBOL vmlinux 0xf79ca3bb acpi_remove_gpe_block -EXPORT_SYMBOL vmlinux 0xf79dbfb4 unlock_page -EXPORT_SYMBOL vmlinux 0xf7a69176 seq_escape_mem -EXPORT_SYMBOL vmlinux 0xf7b3b499 filemap_check_errors -EXPORT_SYMBOL vmlinux 0xf7b43af7 d_hash_and_lookup -EXPORT_SYMBOL vmlinux 0xf7c197bb pin_user_pages_remote +EXPORT_SYMBOL vmlinux 0xf7cba721 dquot_free_inode EXPORT_SYMBOL vmlinux 0xf7d31de9 kstrtoul_from_user -EXPORT_SYMBOL vmlinux 0xf7d46ae2 security_task_getsecid_obj -EXPORT_SYMBOL vmlinux 0xf7d5a9d3 scsi_print_sense +EXPORT_SYMBOL vmlinux 0xf7d72503 skb_udp_tunnel_segment EXPORT_SYMBOL vmlinux 0xf7da6e6f acpi_unload_table -EXPORT_SYMBOL vmlinux 0xf7daf7c1 scsi_report_bus_reset +EXPORT_SYMBOL vmlinux 0xf7dca380 blk_queue_physical_block_size +EXPORT_SYMBOL vmlinux 0xf7e1d6db touch_atime EXPORT_SYMBOL vmlinux 0xf7ef9a79 iosf_mbi_punit_release -EXPORT_SYMBOL vmlinux 0xf802c7d1 netif_skb_features +EXPORT_SYMBOL vmlinux 0xf7fa9908 PageMovable +EXPORT_SYMBOL vmlinux 0xf801a969 xfrm_unregister_km EXPORT_SYMBOL vmlinux 0xf80be44e rdmsr_safe_on_cpu +EXPORT_SYMBOL vmlinux 0xf80c68ea sock_kzfree_s +EXPORT_SYMBOL vmlinux 0xf80c693f file_check_and_advance_wb_err EXPORT_SYMBOL vmlinux 0xf811e69d scsi_eh_flush_done_q +EXPORT_SYMBOL vmlinux 0xf8127f4d component_match_add_release EXPORT_SYMBOL vmlinux 0xf812cff6 memscan -EXPORT_SYMBOL vmlinux 0xf818fe51 invalidate_bdev -EXPORT_SYMBOL vmlinux 0xf81f2f78 skb_realloc_headroom -EXPORT_SYMBOL vmlinux 0xf826e0a7 tty_port_put +EXPORT_SYMBOL vmlinux 0xf817d3e1 nvdimm_check_and_set_ro EXPORT_SYMBOL vmlinux 0xf82abc1d isa_dma_bridge_buggy -EXPORT_SYMBOL vmlinux 0xf82cca8f simple_dentry_operations EXPORT_SYMBOL vmlinux 0xf82ec573 rb_prev -EXPORT_SYMBOL vmlinux 0xf847127c node_data +EXPORT_SYMBOL vmlinux 0xf835ddde sk_free +EXPORT_SYMBOL vmlinux 0xf83b3d4c may_umount_tree EXPORT_SYMBOL vmlinux 0xf84bd6ee bpf_stats_enabled_key -EXPORT_SYMBOL vmlinux 0xf84e267b mipi_dsi_dcs_write -EXPORT_SYMBOL vmlinux 0xf84f89e9 inode_get_bytes -EXPORT_SYMBOL vmlinux 0xf86a4e23 mmc_gpiod_request_cd_irq -EXPORT_SYMBOL vmlinux 0xf86b3ac8 filemap_page_mkwrite -EXPORT_SYMBOL vmlinux 0xf876d6e7 scsi_partsize +EXPORT_SYMBOL vmlinux 0xf8502435 vfs_statfs +EXPORT_SYMBOL vmlinux 0xf868942f vfs_getattr_nosec +EXPORT_SYMBOL vmlinux 0xf86adcb4 fscrypt_put_encryption_info +EXPORT_SYMBOL vmlinux 0xf86f4166 vfs_fsync_range +EXPORT_SYMBOL vmlinux 0xf88086c5 eisa_driver_unregister EXPORT_SYMBOL vmlinux 0xf888ca21 sg_init_table -EXPORT_SYMBOL vmlinux 0xf8ab153f __skb_gro_checksum_complete +EXPORT_SYMBOL vmlinux 0xf8a2ce08 gnet_stats_finish_copy EXPORT_SYMBOL vmlinux 0xf8b05467 __nla_reserve -EXPORT_SYMBOL vmlinux 0xf8b4ec1a rdmacg_try_charge EXPORT_SYMBOL vmlinux 0xf8bf8e22 ZSTD_DDictWorkspaceBound +EXPORT_SYMBOL vmlinux 0xf8bfc3c1 seq_puts +EXPORT_SYMBOL vmlinux 0xf8c1e1ae bh_uptodate_or_lock EXPORT_SYMBOL vmlinux 0xf8d07858 bitmap_from_arr32 -EXPORT_SYMBOL vmlinux 0xf8d41970 mmc_retune_unpause -EXPORT_SYMBOL vmlinux 0xf8dda4f5 page_mapping -EXPORT_SYMBOL vmlinux 0xf8e616b6 bio_add_pc_page -EXPORT_SYMBOL vmlinux 0xf8f02276 pcie_get_speed_cap +EXPORT_SYMBOL vmlinux 0xf8d3d9dc xfrm6_protocol_register +EXPORT_SYMBOL vmlinux 0xf8dfab61 __scsi_execute +EXPORT_SYMBOL vmlinux 0xf8f4e6f1 fget EXPORT_SYMBOL vmlinux 0xf8f61ebc wake_up_var EXPORT_SYMBOL vmlinux 0xf90a1e85 __x86_indirect_thunk_r8 -EXPORT_SYMBOL vmlinux 0xf92277da register_fib_notifier -EXPORT_SYMBOL vmlinux 0xf927bbce scsi_print_command -EXPORT_SYMBOL vmlinux 0xf92a3c7b agp_generic_free_gatt_table -EXPORT_SYMBOL vmlinux 0xf92b71bc blk_mq_start_hw_queue +EXPORT_SYMBOL vmlinux 0xf9287a13 xfrm_state_lookup_byaddr +EXPORT_SYMBOL vmlinux 0xf931e0bd register_fib_notifier EXPORT_SYMBOL vmlinux 0xf93fd09c fb_find_mode_cvt -EXPORT_SYMBOL vmlinux 0xf9532fb8 pps_event +EXPORT_SYMBOL vmlinux 0xf942cebd tty_insert_flip_string_fixed_flag +EXPORT_SYMBOL vmlinux 0xf95e0fb3 pv_ops +EXPORT_SYMBOL vmlinux 0xf967223a vfs_tmpfile +EXPORT_SYMBOL vmlinux 0xf969b7ba ethtool_virtdev_set_link_ksettings EXPORT_SYMBOL vmlinux 0xf971cea8 utf8len EXPORT_SYMBOL vmlinux 0xf9722676 twl_i2c_write -EXPORT_SYMBOL vmlinux 0xf98f4578 netdev_alert -EXPORT_SYMBOL vmlinux 0xf991b6cd unlock_new_inode +EXPORT_SYMBOL vmlinux 0xf97233dd sk_stop_timer +EXPORT_SYMBOL vmlinux 0xf98dcdfe vfs_fileattr_get EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep -EXPORT_SYMBOL vmlinux 0xf9afc76f mipi_dsi_generic_write -EXPORT_SYMBOL vmlinux 0xf9bba587 ip6_fraglist_init +EXPORT_SYMBOL vmlinux 0xf9a9cc48 request_key_tag +EXPORT_SYMBOL vmlinux 0xf9acc47d skb_headers_offset_update EXPORT_SYMBOL vmlinux 0xf9c0b663 strlcat -EXPORT_SYMBOL vmlinux 0xf9c176b0 get_mem_cgroup_from_mm +EXPORT_SYMBOL vmlinux 0xf9c663d5 of_find_mipi_dsi_device_by_node EXPORT_SYMBOL vmlinux 0xf9ca2eb4 kstrtoint_from_user -EXPORT_SYMBOL vmlinux 0xf9d49a27 vme_bus_type -EXPORT_SYMBOL vmlinux 0xf9e3e0c1 migrate_page_move_mapping -EXPORT_SYMBOL vmlinux 0xf9f35096 vme_register_driver +EXPORT_SYMBOL vmlinux 0xf9ce1654 nd_dev_to_uuid +EXPORT_SYMBOL vmlinux 0xf9ce2e2f pci_bus_size_bridges +EXPORT_SYMBOL vmlinux 0xf9d0ea91 __neigh_event_send +EXPORT_SYMBOL vmlinux 0xf9f037c1 skb_csum_hwoffload_help EXPORT_SYMBOL vmlinux 0xf9f3696e __cpuhp_setup_state_cpuslocked -EXPORT_SYMBOL vmlinux 0xf9fb6cc3 nf_log_register -EXPORT_SYMBOL vmlinux 0xfa05d6c4 scsi_vpd_tpg_id EXPORT_SYMBOL vmlinux 0xfa08c34a page_offline_end -EXPORT_SYMBOL vmlinux 0xfa0bca23 pnp_stop_dev -EXPORT_SYMBOL vmlinux 0xfa1ef92b elv_bio_merge_ok -EXPORT_SYMBOL vmlinux 0xfa22c625 dst_destroy EXPORT_SYMBOL vmlinux 0xfa297415 acpi_map_pxm_to_node -EXPORT_SYMBOL vmlinux 0xfa2d1695 fs_bio_set EXPORT_SYMBOL vmlinux 0xfa2e5f32 i2c_smbus_pec -EXPORT_SYMBOL vmlinux 0xfa3d470e scsi_remove_device +EXPORT_SYMBOL vmlinux 0xfa393b9c tcp_recvmsg EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier -EXPORT_SYMBOL vmlinux 0xfa605dbc ip6_output -EXPORT_SYMBOL vmlinux 0xfa67e608 param_get_int -EXPORT_SYMBOL vmlinux 0xfa6c7c99 xfrm4_rcv -EXPORT_SYMBOL vmlinux 0xfa718806 __pskb_pull_tail -EXPORT_SYMBOL vmlinux 0xfa7449e3 gro_cells_init -EXPORT_SYMBOL vmlinux 0xfa7a4c69 tcf_em_tree_dump +EXPORT_SYMBOL vmlinux 0xfa5ffed7 sk_ns_capable +EXPORT_SYMBOL vmlinux 0xfa66860e pin_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0xfa85ad8b security_inode_notifysecctx EXPORT_SYMBOL vmlinux 0xfa873ad0 prandom_seed -EXPORT_SYMBOL vmlinux 0xfa8c2bc8 fib_notifier_ops_unregister -EXPORT_SYMBOL vmlinux 0xfa92b6fa scsi_host_alloc -EXPORT_SYMBOL vmlinux 0xfa9e33f2 blkdev_get_by_dev +EXPORT_SYMBOL vmlinux 0xfa89510b user_path_at_empty +EXPORT_SYMBOL vmlinux 0xfa98f8d3 fb_is_primary_device +EXPORT_SYMBOL vmlinux 0xfaa33c44 tcp_req_err EXPORT_SYMBOL vmlinux 0xfaaa12d0 _page_poisoning_enabled EXPORT_SYMBOL vmlinux 0xfac19588 __clear_user -EXPORT_SYMBOL vmlinux 0xfac86fd1 cfb_imageblit EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max -EXPORT_SYMBOL vmlinux 0xfade2f8e cros_ec_prepare_tx -EXPORT_SYMBOL vmlinux 0xfaef0607 inet_addr_type -EXPORT_SYMBOL vmlinux 0xfb08bccf input_setup_polling -EXPORT_SYMBOL vmlinux 0xfb0a9809 skb_copy_bits -EXPORT_SYMBOL vmlinux 0xfb0aa246 rps_may_expire_flow -EXPORT_SYMBOL vmlinux 0xfb15dd25 dev_change_proto_down -EXPORT_SYMBOL vmlinux 0xfb16682e serial8250_register_8250_port -EXPORT_SYMBOL vmlinux 0xfb29de3f disk_end_io_acct +EXPORT_SYMBOL vmlinux 0xfac8d468 seg6_hmac_info_add +EXPORT_SYMBOL vmlinux 0xfad1fcce read_cache_page +EXPORT_SYMBOL vmlinux 0xfad429c4 __sk_mem_schedule +EXPORT_SYMBOL vmlinux 0xfae14c09 __dev_kfree_skb_irq +EXPORT_SYMBOL vmlinux 0xfaedb7aa twl6040_reg_read +EXPORT_SYMBOL vmlinux 0xfaf43c28 flow_rule_alloc +EXPORT_SYMBOL vmlinux 0xfaf47771 blk_queue_flag_set +EXPORT_SYMBOL vmlinux 0xfafb27d2 tcp_rcv_established +EXPORT_SYMBOL vmlinux 0xfb096ba3 generic_file_direct_write +EXPORT_SYMBOL vmlinux 0xfb10e3de twl6040_reg_write +EXPORT_SYMBOL vmlinux 0xfb192d05 phy_ethtool_get_eee +EXPORT_SYMBOL vmlinux 0xfb1e237d mmc_add_host +EXPORT_SYMBOL vmlinux 0xfb229a31 __blockdev_direct_IO +EXPORT_SYMBOL vmlinux 0xfb2d3c40 agp_generic_type_to_mask_type +EXPORT_SYMBOL vmlinux 0xfb348fea fault_in_safe_writeable EXPORT_SYMBOL vmlinux 0xfb384d37 kasprintf -EXPORT_SYMBOL vmlinux 0xfb3efb93 mmc_set_blocklen -EXPORT_SYMBOL vmlinux 0xfb4d07ef tty_hung_up_p -EXPORT_SYMBOL vmlinux 0xfb4fd107 dquot_destroy -EXPORT_SYMBOL vmlinux 0xfb50cbe4 __inet_hash +EXPORT_SYMBOL vmlinux 0xfb3d22c5 kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0xfb3e20a2 dquot_load_quota_sb +EXPORT_SYMBOL vmlinux 0xfb481240 xattr_supported_namespace EXPORT_SYMBOL vmlinux 0xfb578fc5 memset -EXPORT_SYMBOL vmlinux 0xfb637533 input_grab_device +EXPORT_SYMBOL vmlinux 0xfb5aed36 follow_down +EXPORT_SYMBOL vmlinux 0xfb5fd4ca try_to_writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0xfb61ed2f drop_nlink EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending -EXPORT_SYMBOL vmlinux 0xfb6e2f85 netdev_sk_get_lowest_dev -EXPORT_SYMBOL vmlinux 0xfb6e5737 fscrypt_free_bounce_page -EXPORT_SYMBOL vmlinux 0xfb7d6d8a request_firmware -EXPORT_SYMBOL vmlinux 0xfb951156 vfio_register_notifier -EXPORT_SYMBOL vmlinux 0xfb9d7c9a devm_devfreq_add_device -EXPORT_SYMBOL vmlinux 0xfba0c53f blk_mq_end_request +EXPORT_SYMBOL vmlinux 0xfb751763 empty_aops +EXPORT_SYMBOL vmlinux 0xfb8fbcfd iov_iter_npages EXPORT_SYMBOL vmlinux 0xfba7ddd2 match_u64 -EXPORT_SYMBOL vmlinux 0xfba821a8 i8042_install_filter EXPORT_SYMBOL vmlinux 0xfbaaf01e console_lock EXPORT_SYMBOL vmlinux 0xfbab1bb1 ioread8_rep EXPORT_SYMBOL vmlinux 0xfbad3cf0 scsi_normalize_sense -EXPORT_SYMBOL vmlinux 0xfbb6512a consume_skb +EXPORT_SYMBOL vmlinux 0xfbaf4775 phy_ethtool_set_wol EXPORT_SYMBOL vmlinux 0xfbb8a761 strscpy_pad +EXPORT_SYMBOL vmlinux 0xfbbf5e5c filemap_invalidate_lock_two EXPORT_SYMBOL vmlinux 0xfbc4f89e io_schedule_timeout -EXPORT_SYMBOL vmlinux 0xfbd20bf4 tcp_v4_conn_request -EXPORT_SYMBOL vmlinux 0xfbdec59c redirty_page_for_writepage -EXPORT_SYMBOL vmlinux 0xfbe1ec08 tcp_connect +EXPORT_SYMBOL vmlinux 0xfbc9fdcf __getblk_gfp EXPORT_SYMBOL vmlinux 0xfbe8ee28 acpi_get_table_by_index -EXPORT_SYMBOL vmlinux 0xfbf1ff7c pm860x_set_bits -EXPORT_SYMBOL vmlinux 0xfbff3c8f misc_deregister -EXPORT_SYMBOL vmlinux 0xfc042094 qdisc_watchdog_schedule_range_ns -EXPORT_SYMBOL vmlinux 0xfc07f1ff pcie_capability_write_dword -EXPORT_SYMBOL vmlinux 0xfc25ebce mem_cgroup_from_task +EXPORT_SYMBOL vmlinux 0xfbe9f8e7 configfs_register_group +EXPORT_SYMBOL vmlinux 0xfc0bde00 __xfrm_dst_lookup +EXPORT_SYMBOL vmlinux 0xfc13a375 blk_cleanup_queue EXPORT_SYMBOL vmlinux 0xfc336d2e __wake_up_bit +EXPORT_SYMBOL vmlinux 0xfc3752a7 blk_pre_runtime_suspend +EXPORT_SYMBOL vmlinux 0xfc395e17 finish_open EXPORT_SYMBOL vmlinux 0xfc399557 utf8_load EXPORT_SYMBOL vmlinux 0xfc39e32f ioport_unmap EXPORT_SYMBOL vmlinux 0xfc3d53cb __put_user_nocheck_1 -EXPORT_SYMBOL vmlinux 0xfc406310 bdi_put EXPORT_SYMBOL vmlinux 0xfc4152fc ec_read -EXPORT_SYMBOL vmlinux 0xfc51f7ed dev_uc_add -EXPORT_SYMBOL vmlinux 0xfc8e0dd8 __SCK__tp_func_dma_fence_emit -EXPORT_SYMBOL vmlinux 0xfcb048ca rproc_alloc -EXPORT_SYMBOL vmlinux 0xfcb5216d configfs_remove_default_groups +EXPORT_SYMBOL vmlinux 0xfc4f9416 fscrypt_decrypt_bio +EXPORT_SYMBOL vmlinux 0xfc57b5fa vme_dma_list_exec +EXPORT_SYMBOL vmlinux 0xfc5a4662 framebuffer_release +EXPORT_SYMBOL vmlinux 0xfc7bb38c ipv6_chk_custom_prefix +EXPORT_SYMBOL vmlinux 0xfc92ce1a agp_generic_insert_memory +EXPORT_SYMBOL vmlinux 0xfc98c5df sock_set_mark +EXPORT_SYMBOL vmlinux 0xfc9c47f1 tcp_ld_RTO_revert +EXPORT_SYMBOL vmlinux 0xfca18a85 devm_devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0xfca2633f tcp_parse_options +EXPORT_SYMBOL vmlinux 0xfca808f5 __sk_mem_reclaim +EXPORT_SYMBOL vmlinux 0xfcbabc52 unregister_framebuffer EXPORT_SYMBOL vmlinux 0xfcd1819a hdmi_spd_infoframe_check -EXPORT_SYMBOL vmlinux 0xfce13abb blackhole_netdev -EXPORT_SYMBOL vmlinux 0xfce3f667 qdisc_create_dflt +EXPORT_SYMBOL vmlinux 0xfce5ac8c kmem_cache_alloc_node_trace EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq -EXPORT_SYMBOL vmlinux 0xfcee9b9c pcie_print_link_status -EXPORT_SYMBOL vmlinux 0xfcf50b4b dquot_file_open -EXPORT_SYMBOL vmlinux 0xfcf9e8fc __xfrm_policy_check -EXPORT_SYMBOL vmlinux 0xfcfe64ef md_write_start -EXPORT_SYMBOL vmlinux 0xfd00e107 pci_iomap -EXPORT_SYMBOL vmlinux 0xfd1c08b5 tcp_sock_set_keepidle -EXPORT_SYMBOL vmlinux 0xfd2835fe mpage_readahead -EXPORT_SYMBOL vmlinux 0xfd2a5c5d param_get_string -EXPORT_SYMBOL vmlinux 0xfd2e636e may_umount_tree -EXPORT_SYMBOL vmlinux 0xfd3678a7 sock_recvmsg -EXPORT_SYMBOL vmlinux 0xfd36abda tcp_set_rcvlowat -EXPORT_SYMBOL vmlinux 0xfd3864e4 simple_getattr -EXPORT_SYMBOL vmlinux 0xfd5af465 csum_and_copy_from_iter -EXPORT_SYMBOL vmlinux 0xfd8bf102 dcb_ieee_getapp_prio_dscp_mask_map +EXPORT_SYMBOL vmlinux 0xfcf9da19 fib_default_rule_add +EXPORT_SYMBOL vmlinux 0xfd103f05 input_unregister_device +EXPORT_SYMBOL vmlinux 0xfd106527 tcf_block_get +EXPORT_SYMBOL vmlinux 0xfd277e3e pci_get_slot +EXPORT_SYMBOL vmlinux 0xfd4329b8 tcf_idr_check_alloc +EXPORT_SYMBOL vmlinux 0xfd500481 fs_param_is_fd +EXPORT_SYMBOL vmlinux 0xfd549f6c tty_write_room +EXPORT_SYMBOL vmlinux 0xfd5ea0b9 tty_insert_flip_string_flags +EXPORT_SYMBOL vmlinux 0xfd63447e migrate_page +EXPORT_SYMBOL vmlinux 0xfd649d7e mmc_gpiod_request_cd_irq +EXPORT_SYMBOL vmlinux 0xfd7720cb netif_set_xps_queue +EXPORT_SYMBOL vmlinux 0xfd9357bf jbd2_journal_extend +EXPORT_SYMBOL vmlinux 0xfd93caae sk_common_release EXPORT_SYMBOL vmlinux 0xfd93ee35 ioremap_wc -EXPORT_SYMBOL vmlinux 0xfd9b054f dev_pre_changeaddr_notify +EXPORT_SYMBOL vmlinux 0xfda33edb ip6_output EXPORT_SYMBOL vmlinux 0xfda9581f prandom_u32 -EXPORT_SYMBOL vmlinux 0xfdae5971 skb_flow_get_icmp_tci +EXPORT_SYMBOL vmlinux 0xfdb2a0ad mmc_wait_for_req_done EXPORT_SYMBOL vmlinux 0xfdb6576f acpi_set_debugger_thread_id -EXPORT_SYMBOL vmlinux 0xfdc6422d d_tmpfile +EXPORT_SYMBOL vmlinux 0xfdbcd56c rt_mutex_base_init EXPORT_SYMBOL vmlinux 0xfdcb4ed3 acpi_os_get_line EXPORT_SYMBOL vmlinux 0xfdcc8a0e fb_find_best_display +EXPORT_SYMBOL vmlinux 0xfdcfa659 freeze_super EXPORT_SYMBOL vmlinux 0xfdd4216d pcibios_align_resource -EXPORT_SYMBOL vmlinux 0xfdf5e214 secure_tcpv6_ts_off +EXPORT_SYMBOL vmlinux 0xfdd72404 path_has_submounts +EXPORT_SYMBOL vmlinux 0xfde304e5 acpi_bus_get_status +EXPORT_SYMBOL vmlinux 0xfdf380f8 tty_port_destroy +EXPORT_SYMBOL vmlinux 0xfdf52245 dev_uc_add +EXPORT_SYMBOL vmlinux 0xfdf7ae5e nd_pfn_validate EXPORT_SYMBOL vmlinux 0xfdfb792f amd_iommu_pc_supported -EXPORT_SYMBOL vmlinux 0xfe00a945 __sock_create -EXPORT_SYMBOL vmlinux 0xfe00d6d9 pcibios_bus_to_resource EXPORT_SYMBOL vmlinux 0xfe029963 unregister_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xfe03ce57 set_create_files_as EXPORT_SYMBOL vmlinux 0xfe052363 ioread64_lo_hi +EXPORT_SYMBOL vmlinux 0xfe133931 inet_csk_reset_keepalive_timer EXPORT_SYMBOL vmlinux 0xfe1d2e94 key_create_or_update -EXPORT_SYMBOL vmlinux 0xfe3b2b9b mmc_wait_for_req +EXPORT_SYMBOL vmlinux 0xfe1e1e36 scsi_eh_prep_cmnd +EXPORT_SYMBOL vmlinux 0xfe33abdf kthread_create_worker +EXPORT_SYMBOL vmlinux 0xfe472069 rproc_resource_cleanup EXPORT_SYMBOL vmlinux 0xfe487975 init_wait_entry -EXPORT_SYMBOL vmlinux 0xfe55b359 mmc_get_card +EXPORT_SYMBOL vmlinux 0xfe4c9b58 vme_lm_request EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz -EXPORT_SYMBOL vmlinux 0xfe64a009 kernel_listen -EXPORT_SYMBOL vmlinux 0xfe8b2f73 ilookup EXPORT_SYMBOL vmlinux 0xfe8c61f0 _raw_read_lock EXPORT_SYMBOL vmlinux 0xfe916dc6 hex_dump_to_buffer EXPORT_SYMBOL vmlinux 0xfe9ebbbb acpi_osi_is_win8 +EXPORT_SYMBOL vmlinux 0xfea19995 is_nd_btt +EXPORT_SYMBOL vmlinux 0xfea8b482 phy_connect +EXPORT_SYMBOL vmlinux 0xfeb126bb debugfs_create_automount +EXPORT_SYMBOL vmlinux 0xfeb4d149 rproc_del EXPORT_SYMBOL vmlinux 0xfeb5d0aa verify_spi_info +EXPORT_SYMBOL vmlinux 0xfebeb27e __dev_direct_xmit 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 0xfef63cd3 ata_scsi_cmd_error_handler EXPORT_SYMBOL vmlinux 0xfefcb98e vme_dma_vme_attribute +EXPORT_SYMBOL vmlinux 0xff06d4ad xfrm_state_walk +EXPORT_SYMBOL vmlinux 0xff125091 seq_open EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start EXPORT_SYMBOL vmlinux 0xff282521 rfkill_register -EXPORT_SYMBOL vmlinux 0xff28b1ca param_get_ullong -EXPORT_SYMBOL vmlinux 0xff4a4ade truncate_inode_pages EXPORT_SYMBOL vmlinux 0xff52848a __SCT__tp_func_kmem_cache_free +EXPORT_SYMBOL vmlinux 0xff530090 mipi_dsi_dcs_set_page_address +EXPORT_SYMBOL vmlinux 0xff64a2d7 phy_start_aneg +EXPORT_SYMBOL vmlinux 0xff684469 ip6_xmit EXPORT_SYMBOL vmlinux 0xff6878cf fb_default_cmap -EXPORT_SYMBOL vmlinux 0xff7ba734 tag_pages_for_writeback EXPORT_SYMBOL vmlinux 0xff87cd18 lockref_get_not_dead -EXPORT_SYMBOL vmlinux 0xff9fce78 dev_graft_qdisc -EXPORT_SYMBOL vmlinux 0xffb2e4a6 scsi_eh_prep_cmnd +EXPORT_SYMBOL vmlinux 0xff92585c reuseport_stop_listen_sock +EXPORT_SYMBOL vmlinux 0xff9db05f mmc_cqe_recovery +EXPORT_SYMBOL vmlinux 0xffb17667 __skb_gso_segment EXPORT_SYMBOL vmlinux 0xffb7c514 ida_free +EXPORT_SYMBOL vmlinux 0xffb9c2c6 sock_sendmsg EXPORT_SYMBOL vmlinux 0xffc30c3a acpi_processor_power_init_bm_check EXPORT_SYMBOL vmlinux 0xffcc4ec7 tcp_bpf_bypass_getsockopt EXPORT_SYMBOL vmlinux 0xffcd7f49 iosf_mbi_punit_acquire -EXPORT_SYMBOL vmlinux 0xffd37f06 mmc_can_erase -EXPORT_SYMBOL vmlinux 0xffdb0c9c flow_rule_match_ipv4_addrs -EXPORT_SYMBOL vmlinux 0xffdb635b rproc_elf_load_segments +EXPORT_SYMBOL vmlinux 0xffd698c6 is_acpi_device_node +EXPORT_SYMBOL vmlinux 0xffd79fd1 pcie_get_mps +EXPORT_SYMBOL vmlinux 0xffdd1a5f find_vma +EXPORT_SYMBOL vmlinux 0xffe89df4 cfb_imageblit +EXPORT_SYMBOL vmlinux 0xffea01b1 fscrypt_setup_filename EXPORT_SYMBOL vmlinux 0xffeedf6a delayed_work_timer_fn -EXPORT_SYMBOL vmlinux 0xfff38aa7 inet_register_protosw -EXPORT_SYMBOL vmlinux 0xfff4a342 fb_get_buffer_offset -EXPORT_SYMBOL vmlinux 0xfffc3a05 inet_csk_destroy_sock -EXPORT_SYMBOL vmlinux 0xfffda7b8 netif_receive_skb EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-aesni-avx-x86_64 0x2c8b5dbf camellia_ecb_enc_16way EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-aesni-avx-x86_64 0x339c33c5 camellia_cbc_dec_16way EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-aesni-avx-x86_64 0x8b44ee75 camellia_ecb_dec_16way @@ -11764,406 +11781,406 @@ 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 0x00e8fd41 gfn_to_page_many_atomic -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x01b5a546 kvm_read_guest_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x021c275f kvm_lapic_find_highest_irr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0260eef5 __tracepoint_kvm_exit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x02f68fb4 kvm_set_cr4 -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x033ff94f __tracepoint_kvm_avic_unaccelerated_access +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x00b34e61 kvm_inject_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x036df4a8 kvm_handle_memory_failure +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x037876bb __SCK__tp_func_kvm_ple_window_update +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0482df4c __SCK__tp_func_kvm_fast_mmio EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x053614ec kvm_set_user_return_msr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x05d58a74 kvm_fixup_and_inject_pf_error -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0650fc56 __SCK__tp_func_kvm_skinit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x069edef7 __tracepoint_kvm_entry +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x06b2e3e4 kvm_arch_start_assignment EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x06cdc8d1 kvm_configure_mmu -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x06e9429e vcpu_put -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0777a8c9 __SCK__tp_func_kvm_vmgexit_msr_protocol_enter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x06d33a1f kvm_make_all_cpus_request EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0814dd11 __SCT__kvm_x86_tlb_flush_current -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x082ea5a5 kvm_slot_page_track_remove_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x083204d7 kvm_set_apic_base -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x087e1272 load_pdptrs -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x095a5a5f kvm_fast_pio -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x09f7d2b8 kvm_post_set_cr0 -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0a6729a3 __tracepoint_kvm_vmgexit_enter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0902c787 kvm_arch_no_poll +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x09e0f7ba kvm_vcpu_yield_to +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x09fa3882 kvm_mmu_gva_to_gpa_read +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0a598e40 kvm_vcpu_unmap +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0b0b73fd kvm_inject_pending_timer_irqs 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 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 0x0d8f4740 kvm_mce_cap_supported -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0ec616bc __tracepoint_kvm_msr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x105900c9 kvm_debugfs_dir +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0db2428b __SCK__tp_func_kvm_avic_unaccelerated_access +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0e226741 kvm_apic_update_apicv +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0fa40b5d kvm_vcpu_kick EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x114eb824 __traceiter_kvm_nested_vmexit_inject +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x122438fc kvm_emulate_mwait EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1235000a kvm_tsc_scaling_ratio_frac_bits -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x128da5cc kvm_queue_exception_p +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x12bc5fd5 kvm_emulate_halt EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x130fd155 supported_xss -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1352bcdb __tracepoint_kvm_inj_virq -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x137b46e9 kvm_apic_update_irr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x13a5575e __SCK__tp_func_kvm_nested_vmexit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x13b026d4 kvm_set_cr8 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1351a8e9 kvm_hv_assist_page_enabled EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1412f042 __traceiter_kvm_ple_window_update +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x152bff1e __tracepoint_kvm_apicv_update_request EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x159b8d5e host_efer EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x17f9cfe3 __traceiter_kvm_cr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x191a7149 kvm_apic_update_apicv -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x19320c0b kvm_read_guest_cached -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1946405d kvm_emulate_wrmsr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1ba2828f kvm_require_dr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1c808548 kvm_apic_update_ppr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x18e17f32 gfn_to_hva +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1a001d7c __SCK__tp_func_kvm_vmgexit_msr_protocol_enter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1b4944d3 kvm_read_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1b6bd6cf kvm_msr_allowed EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1cf65ffc kvm_max_guest_tsc_khz 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 0x1db1c372 enable_vmware_backdoor -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1e2201c4 kvm_vcpu_gfn_to_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1e2e2229 kvm_io_bus_get_dev -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1eb56bb4 kvm_apic_has_interrupt -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1fee05fe __traceiter_kvm_entry -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x205e9535 __tracepoint_kvm_nested_intercepts -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x20ae6cf6 kvm_handle_page_fault -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x20f48741 __SCK__tp_func_kvm_nested_vmrun -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x214c0514 file_is_kvm +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1e1f0db1 __kvm_request_apicv_update +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1f12f24c __tracepoint_kvm_cr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1f3eb2ec kvm_lapic_reg_read +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1f6aaf2c kvm_put_kvm +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1f943ea7 kvm_vcpu_update_apicv +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x222beffc 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 0x23d8a254 kvm_get_rflags -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x24026024 kvm_sev_es_mmio_read -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x25014274 kvm_hv_get_assist_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x23df79a7 __tracepoint_kvm_write_tsc_offset +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x24e11b38 __SCK__tp_func_kvm_entry EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2510fc6d __SCT__tp_func_kvm_nested_vmexit EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x25c07225 __traceiter_kvm_vmgexit_msr_protocol_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x26abc9a1 __kvm_request_immediate_exit EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x26d4bb26 kvm_cpu_caps EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x27046576 kvm_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x27bdf5ed kvm_apic_update_irr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x28171238 kvm_get_dr EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x28411ed7 kvm_max_tsc_scaling_ratio -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x284cd845 vcpu_load -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x28987822 __SCK__tp_func_kvm_ple_window_update +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x295b4e66 __tracepoint_kvm_nested_vmrun EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2976b749 __gfn_to_pfn_memslot -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2ad3e52d kvm_emulate_as_nop -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2adcb7fe __tracepoint_kvm_page_fault -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2be45433 kvm_read_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2977db43 __tracepoint_kvm_nested_intercepts +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x29ea2451 handle_ud +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2b819580 kvm_require_cpl +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2bf7797d kvm_valid_efer EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2d82cc24 kvm_spec_ctrl_test_value -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2daac6a0 kvm_emulate_ap_reset_hold -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2e998d56 kvm_get_linear_rip -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2f18d687 __SCK__tp_func_kvm_vmgexit_enter -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x30d903f3 __tracepoint_kvm_nested_vmrun -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x30e18061 kvm_mmu_page_fault -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x31bbd1da kvm_arch_unregister_noncoherent_dma -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x33b783b2 kvm_update_cpuid_runtime -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x34fdd3b6 kvm_sev_es_mmio_write -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x36daa87a __tracepoint_kvm_nested_vmexit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3778d6bc gfn_to_hva +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2e9e49d3 kvm_set_dr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2f16cfa8 __tracepoint_kvm_fast_mmio +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2fc3e653 kvm_complete_insn_gp +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3176b81b kvm_emulate_monitor +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x319ed225 kvm_lapic_hv_timer_in_use +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x32a8cdd4 kvm_fixup_and_inject_pf_error +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3302f100 kvm_lapic_expired_hv_timer +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x330fa206 kvm_release_page_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x34e20eea __traceiter_kvm_nested_vmexit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x35a862e0 kvm_gfn_to_hva_cache_init +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x35ca9e25 __SCK__tp_func_kvm_nested_intr_vmexit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3717bf3b kvm_vcpu_write_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x377f1cff kvm_init_shadow_npt_mmu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x37f88689 kvm_put_kvm_no_destroy EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x388e0e10 __SCT__tp_func_kvm_pi_irte_update +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x38d7d35e kvm_requeue_exception +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x390e5d06 kvm_vcpu_gfn_to_hva +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x398662ad reprogram_counter EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x39fd83db halt_poll_ns_shrink +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3a10733d __SCK__tp_func_kvm_nested_vmrun EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3ab2794c kvm_find_user_return_msr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3b1c699b kvm_apic_match_dest EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3ba6c794 gfn_to_pfn_memslot -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3bcbe88d kvm_arch_has_assigned_device -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3c1da55c kvm_vcpu_kick -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3c3573ce kvm_inject_page_fault -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3c92af21 kvm_vcpu_gfn_to_pfn -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3e5d36b8 kvm_lapic_switch_to_hv_timer +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3c23f3fe gfn_to_page_many_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3ecec52f kvm_arch_end_assignment EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3f510ff5 kvm_has_noapic_vcpu -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x403968b6 kvm_emulate_xsetbv -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x40492efc kvm_emulate_instruction_from_buffer -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4249e68d kvm_is_linear_rip -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4453ce25 kvm_requeue_exception -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x45208003 kvm_set_msi_irq +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3fa641c2 __tracepoint_kvm_vmgexit_msr_protocol_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x428d892d kvm_inject_emulated_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x429bc7fe kvm_page_track_register_notifier +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4460ec41 kvm_write_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4483d169 __tracepoint_kvm_vmgexit_msr_protocol_enter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4565dc99 kvm_arch_has_assigned_device +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x45d62b17 kvm_apic_set_eoi_accelerated EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x45e80fdf __traceiter_kvm_pi_irte_update -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4642ec3a kvm_vcpu_read_guest -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x47b923c4 kvm_irq_has_notifier 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 0x491cfb01 __tracepoint_kvm_skinit EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4942be67 __SCT__tp_func_kvm_avic_incomplete_ipi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x49d659ae kvm_emulate_hypercall +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4a0c8ebd __SCK__tp_func_kvm_nested_vmexit EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4a1c261b __SCT__tp_func_kvm_invlpga -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4a93d7ff kvm_emulate_rdpmc -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4af233ca kvm_emulate_cpuid -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4afed5d6 __SCK__tp_func_kvm_pi_irte_update -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4b454a02 __SCK__kvm_x86_get_cs_db_l_bits -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4baa4597 kvm_vcpu_block -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4cad5c49 __tracepoint_kvm_avic_ga_log -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4d23de42 kvm_unmap_gfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4af189f5 kvm_get_kvm +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4b11e343 kvm_cpu_has_interrupt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4c1d1506 kvm_is_visible_gfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4d1d42e6 kvm_vcpu_reset +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4d308eb3 kvm_emulate_wbinvd +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4d7534a3 kvm_is_valid_cr4 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4db55f75 kvm_arch_unregister_noncoherent_dma EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4e3fd1b4 kvm_release_pfn_clean -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5037f06b kvm_vcpu_update_apicv -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x50b2efd6 kvm_init_mmu -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x50c03931 kvm_lmsw -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x51b5426b kvm_can_use_hv_timer -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x523528cf __SCK__tp_func_kvm_nested_intercepts -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x535361ee kvm_lapic_switch_to_sw_timer +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4ef1d467 kvm_deliver_exception_payload +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4f2d2d72 reprogram_fixed_counter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4f742934 kvm_update_cpuid_runtime +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x508759f3 __tracepoint_kvm_avic_unaccelerated_access +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x51a1be7e __SCK__kvm_x86_get_cs_db_l_bits +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5227c753 kvm_apicv_activated +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x53d23b05 kvm_fast_pio EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x53d9f927 __SCT__kvm_x86_get_cs_db_l_bits -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x54aae58e kvm_vcpu_map +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x53da8bae __tracepoint_kvm_ple_window_update +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x54cc6339 kvm_wait_lapic_expire EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x54cd466b __traceiter_kvm_apicv_update_request -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x56e1c276 kvm_set_memory_region -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x57dcefb6 kvm_handle_memory_failure -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x583d785a kvm_update_dr7 -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5884315e kvm_vcpu_yield_to +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x564ed9ae kvm_mmu_new_pgd +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x56c1704f __SCK__tp_func_kvm_invlpga +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x579bbcbd kvm_vcpu_gfn_to_pfn_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5847d833 __tracepoint_kvm_nested_intr_vmexit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x588ce22e kvm_set_cr4 EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x59387ba3 __SCT__kvm_x86_cache_reg EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x59e640c0 halt_poll_ns -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x59f252ee kvm_page_track_unregister_notifier -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5a478f43 __SCK__tp_func_kvm_apicv_update_request -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5af3c5d8 __tracepoint_kvm_ple_window_update +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5b585c95 hv_remote_flush_tlb 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 0x5d996b31 kvm_set_cpu_caps -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5dd79fe8 __SCK__tp_func_kvm_exit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5f7e436a kvm_write_guest_cached -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5fb87142 kvm_write_guest_virt_system +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5f590dfc __tracepoint_kvm_page_fault EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5fb8848b halt_poll_ns_grow_start -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6022a76b kvm_x86_ops +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x600f2aa3 kvm_vcpu_on_spin +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x60fdcdf0 kvm_vcpu_is_visible_gfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x61088b45 kvm_queue_exception EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x616e6c95 __SCT__tp_func_kvm_exit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x61e22470 kvm_flush_remote_tlbs EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6243ac82 __kvm_apic_update_irr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x628215d9 kvm_get_apic_mode -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x62934c45 kvm_clear_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x62935aba __SCK__tp_func_kvm_vmgexit_msr_protocol_exit EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6303c089 kvm_calc_nested_tsc_offset EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x63270977 kvm_default_tsc_scaling_ratio -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x64b054ff mark_page_dirty -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x64e55d43 __kvm_request_immediate_exit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x65c041ae kvm_inject_pending_timer_irqs -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x65c7055f __SCK__tp_func_kvm_entry +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x649d76af kvm_mmu_reset_context +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x660fb56f kvm_get_apic_mode +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x66dad4ff kvm_slot_page_track_remove_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x66e8a85f kvm_write_guest_cached EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6756347e __traceiter_kvm_page_fault -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x67a7c208 kvm_lapic_reg_write EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6892e3c3 kvm_set_pfn_accessed -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x68c8c3cd gfn_to_memslot -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x691f1112 __tracepoint_kvm_apicv_update_request -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x69b32db1 __traceiter_kvm_nested_vmexit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6a0d2289 kvm_write_guest_offset_cached +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6abad87d gfn_to_memslot EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6ada8f59 kvm_mmu_set_mmio_spte_mask -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6bb6c86b kvm_get_dr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6b20e4bc kvm_cpu_has_injectable_intr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6b55ca9e kvm_irq_has_notifier +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6b6cac51 kvm_apic_clear_irr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6bb1a772 kvm_write_guest_virt_system +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6bdd0c18 kvm_mmu_free_roots EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6becaded __SCT__tp_func_kvm_inj_virq -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6c1ee17e __tracepoint_kvm_vmgexit_msr_protocol_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6c2a4a1d kvm_read_guest_offset_cached EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6c95726c host_xss -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6d09bc5a __kvm_request_apicv_update -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6d95e7eb __tracepoint_kvm_pml_full -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6dafbeb2 kvm_write_guest -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6db4c373 kvm_emulate_invd -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6ef9c775 kvm_deliver_exception_payload +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6cdfccd5 __tracepoint_kvm_avic_incomplete_ipi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6d73dc66 kvm_apic_update_ppr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6ec6266e x86_decode_emulated_instruction EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x70288943 __SCT__tp_func_kvm_nested_vmrun EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x709cd8cb kvm_spurious_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x712519fa kvm_set_rflags +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x719782d0 kvm_apic_match_dest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x71b42515 kvm_set_msr_common EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7263ae77 __traceiter_kvm_nested_vmrun -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x743181e1 kvm_load_guest_xsave_state +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x72831408 __tracepoint_kvm_pi_irte_update +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7332793a __tracepoint_kvm_invlpga +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x73a4cfcd __SCK__tp_func_kvm_pi_irte_update +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x74ad4b10 handle_fastpath_set_msr_irqoff +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x74d92e65 kvm_emulate_cpuid +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x75059745 kvm_load_guest_xsave_state EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x752c2b00 __traceiter_kvm_fast_mmio -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x76ce6cae __SCK__tp_func_kvm_fast_mmio -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x76d84ef8 __tracepoint_kvm_pi_irte_update +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x755bb450 __SCK__tp_func_kvm_nested_vmexit_inject +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x76b10f64 __SCK__tp_func_kvm_vmgexit_enter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x76e4325b kvm_apic_write_nodecode EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x778e30b9 __SCT__tp_func_kvm_cr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x79581694 kvm_set_msr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x79761449 kvm_get_running_vcpu -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7a9f80a7 kvm_lapic_hv_timer_in_use -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7aedd360 kvm_wait_lapic_expire -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7af7432c hv_remote_flush_tlb +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x793781a3 kvm_cpu_get_interrupt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x79cbdfae kvm_service_local_tlb_flush_requests +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x79d52656 __SCK__tp_func_kvm_nested_intercepts +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7a040e52 kvm_lapic_switch_to_sw_timer +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7a190156 kvm_queue_exception_e EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7afe324e halt_poll_ns_grow -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7bba051a kvm_arch_register_noncoherent_dma EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7c94c99a kvm_release_pfn_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7e03a932 kvm_slot_page_track_add_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7e3ee729 kvm_get_running_vcpu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7fb39843 __SCK__tp_func_kvm_exit EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7fe19488 kvm_add_user_return_msr EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7ff2a104 __SCT__tp_func_kvm_page_fault -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8414d29d __tracepoint_kvm_cr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x848792fe kvm_mmu_gva_to_gpa_write -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x84de771b __tracepoint_kvm_avic_incomplete_ipi -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x85fa51ce kvm_write_guest_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8607966e __tracepoint_kvm_vmgexit_msr_protocol_enter -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x863fe691 kvm_apic_clear_irr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8672f16a __SCK__tp_func_kvm_invlpga -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x87898d16 kvm_page_track_register_notifier -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8851a234 kvm_post_set_cr4 -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x891b5830 __SCK__tp_func_kvm_nested_vmenter_failed -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8a4866a3 __tracepoint_kvm_nested_vmexit_inject +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x81517912 __SCK__tp_func_kvm_pml_full +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8255d46e kvm_unmap_gfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8282c84e kvm_flush_remote_tlbs +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x835ad1ca kvm_read_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8407b99d kvm_set_cr0 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x845350d7 __SCK__tp_func_kvm_write_tsc_offset +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x84a5a621 kvm_set_memory_region +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8573b5c7 __SCK__tp_func_kvm_avic_ga_log +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x85cbb5b7 mark_page_dirty_in_slot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8699c5ec kvm_get_cr8 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x86e04216 kvm_update_dr7 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8866682b kvm_sev_es_string_io +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x88d404c8 kvm_emulate_ap_reset_hold +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8a1bcc25 __tracepoint_kvm_vmgexit_enter EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8a7fe54a __SCT__tp_func_kvm_vmgexit_enter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8a9c5224 kvm_handle_page_fault EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8b618aa6 __SCT__tp_func_kvm_nested_vmexit_inject -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8b9376ba kvm_vcpu_unmap +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8b6f49b7 kvm_mmu_page_fault EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8cc07ada gfn_to_hva_memslot -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8cdeae14 kvm_cpuid -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8d0872b0 kvm_vcpu_on_spin -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8d7cf281 gfn_to_pfn -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8e4d720c kvm_emulate_rdmsr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8f021fe6 kvm_emulate_mwait -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x902e5206 kvm_set_msr_common -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9042c5d8 hv_remote_flush_tlb_with_range -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x909727f8 kvm_vcpu_is_visible_gfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8cecf419 kvm_vcpu_destroy +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8fe28f13 kvm_set_msi_irq +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x90755f82 kvm_scale_tsc EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x912a9286 __traceiter_kvm_nested_intr_vmexit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x926e98e8 kvm_make_all_cpus_request -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x935db48f kvm_scale_tsc -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x93955869 kvm_read_guest_page_mmu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x918c512d kvm_vcpu_mark_page_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x935f509f kvm_handle_invalid_op EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x93a3e40e __SCT__tp_func_kvm_ple_window_update EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x944882ed kvm_has_bus_lock_exit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x94b0af94 kvm_skip_emulated_instruction -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x951cc215 kvm_emulate_wbinvd -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x954461cc __tracepoint_kvm_nested_vmenter_failed +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x95129821 kvm_find_cpuid_entry +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x95adfacc kvm_mtrr_valid +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x960cc3e1 __SCK__tp_func_kvm_apicv_update_request +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9866f4c2 __SCK__tp_func_kvm_avic_incomplete_ipi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x98a1d338 __x86_set_memory_region EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x98b40401 gfn_to_pfn_memslot_atomic -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x98de92fe kvm_release_page_dirty EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x98f9ad3b __SCT__tp_func_kvm_apicv_update_request -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9c49c408 kvm_vcpu_write_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9a98b5f5 kvm_vcpu_read_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9ad8d7d7 gfn_to_pfn_prot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9b4fb393 kvm_lapic_switch_to_hv_timer +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9c8e1909 __tracepoint_kvm_nested_vmenter_failed EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9cf59e7a allow_smaller_maxphyaddr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9e0a2624 kvm_complete_insn_gp +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9d9988bb kvm_requeue_exception_e EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9e20b2bc __traceiter_kvm_avic_incomplete_ipi -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9e68d731 kvm_mmu_new_pgd -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9f48b382 current_vcpu -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9f559425 kvm_get_kvm +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9e99e6bf kvm_get_linear_rip EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9f68faa3 __traceiter_kvm_avic_unaccelerated_access -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9fa0d106 kvm_vcpu_deliver_sipi_vector -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa0d77cfe kvm_put_kvm_no_destroy -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa1711b6d kvm_arch_end_assignment +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa1069bc5 kvm_intr_is_single_vcpu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa11b0fa8 __tracepoint_kvm_pml_full +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa12da165 __tracepoint_kvm_exit EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa1c4231f kvm_set_pfn_dirty -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa2368baa __SCK__tp_func_kvm_vmgexit_msr_protocol_exit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa3a794c2 kvm_cpu_has_interrupt -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa4ea0d76 kvm_msr_allowed +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa25d3304 kvm_set_apic_base +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa2d6b8df __tracepoint_kvm_avic_ga_log +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa308b4f7 kvm_init +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa33455d5 kvm_io_bus_get_dev +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa5432285 kvm_inject_nmi EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa588ef67 __SCT__tp_func_kvm_nested_intercepts -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa59f986d __x86_set_memory_region -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa65ceacb kvm_cpu_get_interrupt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa5ca0080 kvm_emulate_invd EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa6a50230 __traceiter_kvm_nested_intercepts +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa6f6fac1 kvm_vcpu_deliver_sipi_vector EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa7022320 __traceiter_kvm_avic_ga_log -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa7ebca93 kvm_emulate_instruction +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa7403229 kvm_get_rflags EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa80595a6 __traceiter_kvm_inj_virq -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa8308c32 kvm_is_visible_gfn EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa84a2e73 __SCT__tp_func_kvm_write_tsc_offset -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa868edda kvm_gfn_to_hva_cache_init -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xaa62e9b8 gfn_to_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xabfdcd78 __kvm_set_memory_region -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xac53c723 kvm_inject_emulated_page_fault -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xae996b82 kvm_get_msr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xaf484719 kvm_arch_has_noncoherent_dma -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xafcc42ef kvm_inject_nmi -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb0dff057 kvm_handle_invalid_op -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb11a4f54 kvm_read_guest_offset_cached -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb33583c5 kvm_emulate_hypercall -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb44245e4 __SCK__tp_func_kvm_inj_virq -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb47460df kvm_handle_invpcid -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb663706a __SCK__tp_func_kvm_page_fault -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb6c898c2 kvm_mtrr_valid -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb6df7e09 kvm_is_valid_cr4 -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb6e491f3 kvm_lapic_expired_hv_timer -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb737cdc7 kvm_vcpu_write_guest_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb80a68c6 kvm_release_page_clean -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb834ef5d kvm_init_shadow_ept_mmu -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb85270b8 kvm_find_cpuid_entry -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb910f8f2 __SCK__tp_func_kvm_nested_vmexit_inject -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb943a730 kvm_vcpu_gfn_to_hva +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xaa3b89d8 current_vcpu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xaa81fc5f kvm_init_mmu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xaacf3578 __traceiter_kvm_entry +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xab5dbca9 kvm_read_guest_cached +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xabbc8338 kvm_set_cr3 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xabf2a86c kvm_mmu_free_guest_mode_roots +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xaeb2efc9 kvm_arch_register_noncoherent_dma +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xaf409bca kvm_mtrr_get_guest_memory_type +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xafb808bf kvm_vcpu_read_guest_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xafd0fd21 kvm_vcpu_is_reset_bsp +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb07294f4 kvm_read_guest_virt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb10fd1b8 __SCK__tp_func_kvm_nested_vmenter_failed +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb1bd8e02 kvm_get_cs_db_l_bits +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb418e16f kvm_read_l1_tsc +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb479fd37 kvm_task_switch +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb5aac210 kvm_lapic_reg_write +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb673efa9 kvm_map_gfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb6a64dfc __tracepoint_kvm_nested_vmexit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb6ce2153 kvm_lmsw EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb96e9aa1 __traceiter_kvm_skinit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb9fb14d5 kvm_arch_start_assignment -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbb1beaab kvm_set_cr0 -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbb358b90 __SCK__kvm_x86_cache_reg -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbb53b4d3 __SCK__tp_func_kvm_avic_ga_log -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbc1f61a4 kvm_vcpu_mark_page_dirty -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbc3255cb __SCK__tp_func_kvm_nested_intr_vmexit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbc3f0385 __SCK__tp_func_kvm_msr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbcdd24ab __tracepoint_kvm_write_tsc_offset -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbe218148 kvm_get_msr_common -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbf0e684e kvm_intr_is_single_vcpu -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbf1d02f2 kvm_put_kvm -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbf4a40f3 kvm_set_cr3 -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbfcd7230 kvm_valid_efer -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc00ac324 __SCK__tp_func_kvm_cr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc00f516a __tracepoint_kvm_fast_mmio -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc01114a7 kvm_emulate_monitor +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb97e731a kvm_write_guest_offset_cached +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb9aa3c72 kvm_require_dr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbcf95440 kvm_read_guest_page_mmu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbf1f4778 __SCK__kvm_x86_tlb_flush_current EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc071e99f __SCT__tp_func_kvm_entry -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc348a566 handle_ud -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc6089458 kvm_vcpu_is_reset_bsp +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc0766769 kvm_debugfs_dir +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc087b297 kvm_clear_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc0ea3828 kvm_emulate_as_nop +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc13f83bf kvm_inject_realmode_interrupt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc2c7481d kvm_emulate_instruction +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc2ee7457 kvm_hv_get_assist_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc3a0e86d kvm_vcpu_gfn_to_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc407afaa kvm_set_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc5eabc29 hv_remote_flush_tlb_with_range EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc60d7d0c __traceiter_kvm_pml_full -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc79f70f8 reprogram_counter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc64b4842 kvm_arch_has_noncoherent_dma +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc65f92b5 __tracepoint_kvm_vmgexit_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc71852f4 kvm_io_bus_write +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc775e9ac kvm_handle_invpcid +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc77a5039 __traceiter_kvm_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc8b75e92 gfn_to_page EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc96d35f4 report_ignored_msrs -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc98278c4 kvm_load_host_xsave_state -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xca851ed4 __SCK__tp_func_kvm_pml_full -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xca94d883 handle_fastpath_set_msr_irqoff -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcbe8313c kvm_init_shadow_npt_mmu -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcce6d6ef kvm_vcpu_read_guest_atomic -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcd17939b __SCK__tp_func_kvm_avic_unaccelerated_access -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcd22ee35 kvm_service_local_tlb_flush_requests +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc99c99a0 kvm_lapic_find_highest_irr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcc584b09 load_pdptrs +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcc650d93 kvm_vcpu_wake_up +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcc6f6339 kvm_get_kvm_safe EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xce576a13 enable_apicv -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcff05b92 __SCK__tp_func_kvm_vmgexit_exit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd0075b6d __SCK__tp_func_kvm_write_tsc_offset +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xce82b359 kvm_cpuid +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xced444d5 kvm_vcpu_block +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcede1c72 kvm_mmu_gva_to_gpa_write +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd000361c kvm_write_guest_page EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd0459e67 kvm_has_tsc_control +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd0950559 vcpu_load EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd09da48b __SCT__tp_func_kvm_nested_intr_vmexit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd0dc1d46 kvm_read_guest_virt -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd194411a kvm_require_cpl -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd271a5c6 kvm_hv_assist_page_enabled -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd5954686 mark_page_dirty_in_slot -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd5a497e8 kvm_task_switch -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd6de4269 kvm_apic_set_eoi_accelerated -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd8eb25b3 kvm_queue_exception -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xda00d7bc __traceiter_kvm_exit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdbdbeb26 x86_decode_emulated_instruction +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd1e17ed4 kvm_get_apic_base +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd3e6e96a kvm_emulate_rdpmc +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd49913b9 kvm_vcpu_read_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd4fa2a00 kvm_request_apicv_update +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd514afee __SCK__tp_func_kvm_vmgexit_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd5c72eb3 __SCK__tp_func_kvm_skinit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd7075aa5 kvm_sev_es_mmio_write +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd723bffe __SCK__tp_func_kvm_cr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd80aec36 kvm_is_linear_rip +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd8440b2e kvm_post_set_cr0 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd8cff1c9 kvm_init_shadow_ept_mmu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xda2e1133 __SCK__tp_func_kvm_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdb1c804c kvm_apic_has_interrupt EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdc7369fe __traceiter_kvm_msr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdde01648 kvm_vcpu_reset -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xde0a955d reprogram_gp_counter -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xde3e8e57 __tracepoint_kvm_skinit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdebd2fc8 kvm_mmu_free_roots EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdf026a18 __traceiter_kvm_vmgexit_exit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdf5dc376 __SCK__tp_func_kvm_avic_incomplete_ipi -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdf9ae993 kvm_vcpu_halt -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdfdddf20 __tracepoint_kvm_vmgexit_exit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe072006c kvm_vcpu_wake_up +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdfdc5498 __tracepoint_kvm_inj_virq +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe01825c9 kvm_vcpu_write_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe0e55d01 kvm_release_page_clean EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe0e786a7 __SCT__tp_func_kvm_skinit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe1282574 __tracepoint_kvm_nested_intr_vmexit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe1345c20 kvm_mmu_invlpg -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe1815b39 kvm_mmu_gva_to_gpa_read -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe2395d2a kvm_io_bus_write -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe27b564c kvm_apicv_activated -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe3627cd2 kvm_inject_realmode_interrupt -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe39ca909 kvm_vcpu_read_guest_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe51ee9ea kvm_mmu_free_guest_mode_roots -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe580d57e kvm_init -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe5e4c05a kvm_get_apic_base -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe64f4ffa kvm_request_apicv_update -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe6a360ae gfn_to_pfn_prot -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe6b69e9b __SCK__kvm_x86_tlb_flush_current +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe1470e87 mark_page_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe48cfb6c kvm_can_use_hv_timer +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe60a2e1d kvm_get_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe61da469 gfn_to_pfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe66008ba kvm_set_cr8 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe7e098ed kvm_sev_es_mmio_read +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe852bde5 kvm_page_track_unregister_notifier EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe93dfc8c __SCT__tp_func_kvm_nested_vmenter_failed +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe94d6610 kvm_queue_exception_p EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe9674a16 supported_xcr0 -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe97cf191 kvm_apic_write_nodecode -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe98a7f80 kvm_slot_page_track_add_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xea05c173 kvm_sev_es_string_io EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xea5cda33 __SCT__tp_func_kvm_fast_mmio -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xec9bee31 kvm_map_gfn -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xecb471d7 kvm_read_l1_tsc -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xed1ea719 kvm_vcpu_gfn_to_pfn_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xeabadb61 kvm_load_host_xsave_state +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xec2168e7 vcpu_put +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xec401138 kvm_emulate_rdmsr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xed4e2664 kvm_emulate_instruction_from_buffer +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xedb9eca0 kvm_skip_emulated_instruction EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xef14fd98 kvm_calc_nested_tsc_multiplier -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xef8d3c76 kvm_lapic_set_eoi -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xefe40d3d kvm_vcpu_destroy +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xef726894 kvm_emulate_wrmsr EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf084b57d __SCT__tp_func_kvm_msr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf1adaf8e __tracepoint_kvm_invlpga -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf25d7dd6 kvm_set_rflags +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf0b5b9e6 kvm_lapic_set_eoi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf0f57ed2 kvm_emulate_xsetbv EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf2df48f3 __SCT__tp_func_kvm_pml_full +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf3152a95 kvm_post_set_cr4 EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf32dff97 __SCT__tp_func_kvm_avic_unaccelerated_access -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf3b3e969 kvm_emulate_halt -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf3eeaf3d kvm_lapic_reg_read -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf4319928 kvm_set_dr EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf4668dfb __traceiter_kvm_vmgexit_enter -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf48eba1d kvm_queue_exception_e +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf53ac6d5 kvm_mmu_invlpg EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf54e2886 __SCT__tp_func_kvm_vmgexit_msr_protocol_enter -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf7af4a5e kvm_mmu_reset_context -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf80c24e6 kvm_get_cr8 -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfa0f092d kvm_mtrr_get_guest_memory_type -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfa309826 kvm_get_kvm_safe -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfaaa5427 kvm_get_cs_db_l_bits -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfc372ac4 reprogram_fixed_counter -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfca5e08d kvm_arch_no_poll -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfcf52675 kvm_cpu_has_injectable_intr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfea9ae8f kvm_requeue_exception_e -EXPORT_SYMBOL_GPL crypto/af_alg 0x06f2c832 af_alg_free_resources -EXPORT_SYMBOL_GPL crypto/af_alg 0x0dcfe8fc af_alg_unregister_type -EXPORT_SYMBOL_GPL crypto/af_alg 0x194ecffe af_alg_poll -EXPORT_SYMBOL_GPL crypto/af_alg 0x297bf07b af_alg_get_rsgl -EXPORT_SYMBOL_GPL crypto/af_alg 0x3c7d3d8b af_alg_free_sg -EXPORT_SYMBOL_GPL crypto/af_alg 0x486608b7 af_alg_wmem_wakeup -EXPORT_SYMBOL_GPL crypto/af_alg 0x491bf36f af_alg_release -EXPORT_SYMBOL_GPL crypto/af_alg 0x536632b3 af_alg_accept -EXPORT_SYMBOL_GPL crypto/af_alg 0x57e51351 af_alg_sendmsg -EXPORT_SYMBOL_GPL crypto/af_alg 0x7b07bc3f af_alg_async_cb -EXPORT_SYMBOL_GPL crypto/af_alg 0x866d81b4 af_alg_register_type -EXPORT_SYMBOL_GPL crypto/af_alg 0x914b0a04 af_alg_release_parent -EXPORT_SYMBOL_GPL crypto/af_alg 0x9ee08aa8 af_alg_pull_tsgl -EXPORT_SYMBOL_GPL crypto/af_alg 0x9f95641e af_alg_count_tsgl -EXPORT_SYMBOL_GPL crypto/af_alg 0xa1886c6d af_alg_make_sg -EXPORT_SYMBOL_GPL crypto/af_alg 0xc7f3ab0c af_alg_sendpage -EXPORT_SYMBOL_GPL crypto/af_alg 0xd2d538e3 af_alg_alloc_areq -EXPORT_SYMBOL_GPL crypto/af_alg 0xdf586471 af_alg_wait_for_data +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf63200fc __tracepoint_kvm_entry +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf6750f86 kvm_x86_ops +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf67c88af __tracepoint_kvm_nested_vmexit_inject +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf815bf8d __SCK__tp_func_kvm_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf8a1702b kvm_vcpu_map +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf9359f62 __kvm_set_memory_region +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf9365a0f file_is_kvm +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfa1395f7 __SCK__kvm_x86_cache_reg +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfb527b5f kvm_get_msr_common +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfbf9d79f kvm_vcpu_halt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfcde1667 reprogram_gp_counter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xff89f2de __tracepoint_kvm_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xff962222 __SCK__tp_func_kvm_inj_virq +EXPORT_SYMBOL_GPL crypto/af_alg 0x0c65ae24 af_alg_sendpage +EXPORT_SYMBOL_GPL crypto/af_alg 0x146ca9e5 af_alg_async_cb +EXPORT_SYMBOL_GPL crypto/af_alg 0x22ddbcd4 af_alg_wmem_wakeup +EXPORT_SYMBOL_GPL crypto/af_alg 0x3b4cf983 af_alg_count_tsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0x56b46ab7 af_alg_register_type +EXPORT_SYMBOL_GPL crypto/af_alg 0x57e3c49c af_alg_unregister_type +EXPORT_SYMBOL_GPL crypto/af_alg 0x699d0910 af_alg_sendmsg +EXPORT_SYMBOL_GPL crypto/af_alg 0x6ba7e835 af_alg_accept +EXPORT_SYMBOL_GPL crypto/af_alg 0x7a485865 af_alg_free_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x8941e02e af_alg_free_resources +EXPORT_SYMBOL_GPL crypto/af_alg 0x8bf62f69 af_alg_poll +EXPORT_SYMBOL_GPL crypto/af_alg 0x98633f87 af_alg_wait_for_data +EXPORT_SYMBOL_GPL crypto/af_alg 0xa7b37f60 af_alg_make_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0xa99b5620 af_alg_alloc_areq +EXPORT_SYMBOL_GPL crypto/af_alg 0xc69dafe3 af_alg_get_rsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0xd45aa57d af_alg_release +EXPORT_SYMBOL_GPL crypto/af_alg 0xd9a3f4c1 af_alg_pull_tsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0xf942e649 af_alg_release_parent +EXPORT_SYMBOL_GPL crypto/asymmetric_keys/asym_tpm 0x6a8699fb asym_tpm_subtype EXPORT_SYMBOL_GPL crypto/asymmetric_keys/asym_tpm 0x7430f97c tpm_key_create -EXPORT_SYMBOL_GPL crypto/asymmetric_keys/asym_tpm 0xefdb6db4 asym_tpm_subtype -EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0x694061ce async_memcpy -EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x075e7cbe async_gen_syndrome -EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x975ab68e async_syndrome_val -EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0xf3a1a3ed async_raid6_datap_recov -EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0xfd09974e async_raid6_2data_recov -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x896491c3 __async_tx_find_channel -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x9890d628 async_tx_quiesce -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xa3dd3c9c async_tx_submit -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xd5d7fa5f async_trigger_callback -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x87f25fd5 async_xor -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xd45b3fb5 async_xor_offs -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xede48562 async_xor_val_offs -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xeea02d3d async_xor_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0x28190230 async_memcpy +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x5406f19f async_syndrome_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0xd6ef1fcb async_gen_syndrome +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x7f36c34f async_raid6_2data_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0xd3ac4073 async_raid6_datap_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x02981aa2 async_trigger_callback +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x8a8d2b7e async_tx_submit +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x969e2eb9 async_tx_quiesce +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xb083824e __async_tx_find_channel +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x3c394840 async_xor_offs +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x3ef848c0 async_xor_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x608a4b54 async_xor +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xd951d3d7 async_xor_val_offs EXPORT_SYMBOL_GPL crypto/authenc 0x2479193e crypto_authenc_extractkeys -EXPORT_SYMBOL_GPL crypto/blowfish_common 0x2b39b6b8 blowfish_setkey +EXPORT_SYMBOL_GPL crypto/blowfish_common 0x211ab8da blowfish_setkey EXPORT_SYMBOL_GPL crypto/cast5_generic 0x188d9d26 __cast5_decrypt EXPORT_SYMBOL_GPL crypto/cast5_generic 0x3b2dce97 cast5_setkey EXPORT_SYMBOL_GPL crypto/cast5_generic 0xef81a4af __cast5_encrypt @@ -12175,32 +12192,32 @@ 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 0x0bd91c8a cryptd_alloc_skcipher -EXPORT_SYMBOL_GPL crypto/cryptd 0x1b3700f2 cryptd_aead_queued -EXPORT_SYMBOL_GPL crypto/cryptd 0x206e80d9 cryptd_ahash_child -EXPORT_SYMBOL_GPL crypto/cryptd 0x2c001f96 cryptd_free_ahash -EXPORT_SYMBOL_GPL crypto/cryptd 0x31e2e54a cryptd_skcipher_queued -EXPORT_SYMBOL_GPL crypto/cryptd 0x448fcf69 cryptd_free_skcipher -EXPORT_SYMBOL_GPL crypto/cryptd 0x486b51a0 cryptd_skcipher_child -EXPORT_SYMBOL_GPL crypto/cryptd 0x81c968a1 cryptd_shash_desc -EXPORT_SYMBOL_GPL crypto/cryptd 0x8e6e4335 cryptd_alloc_ahash -EXPORT_SYMBOL_GPL crypto/cryptd 0xa30b7b1f cryptd_aead_child -EXPORT_SYMBOL_GPL crypto/cryptd 0xaec237e0 cryptd_alloc_aead -EXPORT_SYMBOL_GPL crypto/cryptd 0xaeed4cbd cryptd_ahash_queued -EXPORT_SYMBOL_GPL crypto/cryptd 0xff3783b3 cryptd_free_aead -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x05d0d5d0 crypto_transfer_hash_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x10432152 crypto_engine_stop -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x23e6ac94 crypto_finalize_hash_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x3a82f082 crypto_engine_exit -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x4ca6fc8a crypto_finalize_aead_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x69a87508 crypto_finalize_akcipher_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x7caf31eb crypto_transfer_akcipher_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x84a4ac71 crypto_engine_start -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xb3b0f2d4 crypto_engine_alloc_init_and_set -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xeda974a9 crypto_transfer_aead_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xf1ba53f3 crypto_finalize_skcipher_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xf56410d8 crypto_engine_alloc_init -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xfa3e54c9 crypto_transfer_skcipher_request_to_engine +EXPORT_SYMBOL_GPL crypto/cryptd 0x004de8eb cryptd_alloc_skcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0x114299d0 cryptd_skcipher_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0x3ecb77d5 cryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0x59808d3e cryptd_aead_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x69ba566b cryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x74637fd3 cryptd_free_skcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0x7973ede9 cryptd_skcipher_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x7de913b8 cryptd_ahash_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0xad5d7959 cryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0xcacbad55 cryptd_aead_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0xdf0bcaeb cryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/cryptd 0xe836597e cryptd_alloc_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0xe98e6381 cryptd_free_aead +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x05339fc8 crypto_engine_start +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x6010b3b7 crypto_engine_alloc_init +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x7be2c2a3 crypto_finalize_skcipher_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x7e56f2a3 crypto_transfer_hash_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x800e583d crypto_engine_alloc_init_and_set +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x80250362 crypto_transfer_skcipher_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x954d7d80 crypto_finalize_hash_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x98c5940d crypto_engine_exit +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xcaf86b01 crypto_finalize_akcipher_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xd7dd386c crypto_finalize_aead_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xe3600173 crypto_transfer_aead_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xf19ed6f3 crypto_engine_stop +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xf5795e1a crypto_transfer_akcipher_request_to_engine EXPORT_SYMBOL_GPL crypto/crypto_simd 0x3f1e318f simd_register_aeads_compat EXPORT_SYMBOL_GPL crypto/crypto_simd 0x504cb053 simd_aead_create_compat EXPORT_SYMBOL_GPL crypto/crypto_simd 0x561b206c simd_unregister_aeads @@ -12221,13 +12238,44 @@ EXPORT_SYMBOL_GPL crypto/sm3_generic 0x0bddca87 sm3_zero_message_hash EXPORT_SYMBOL_GPL crypto/twofish_common 0x3db90ee2 twofish_setkey EXPORT_SYMBOL_GPL crypto/twofish_common 0xe22b7787 __twofish_setkey +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x0f1072be spk_var_store +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x1a78a89e synth_remove +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x1e39eb14 synth_putws +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x23df4e1b spk_synth_flush +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x3a5f46f7 spk_ttyio_synth_immediate +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 0x466f5eb7 synth_putwc +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x5bdf11fe spk_do_catch_up +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x62e33603 spk_ttyio_ops +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x6325fcdf spk_var_show +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x64e7ed2a spk_synth_is_alive_restart +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x7052f92e synth_add +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x76d40046 synth_buffer_skip_nonlatin1 +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x832f8035 synth_current +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 0xaadb0612 synth_buffer_peek +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xb21ed026 spk_synth_is_alive_nop +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xb68a7630 spk_do_catch_up_unicode +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 0xc33c7d1e spk_synth_get_index +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xc6a06d16 spk_get_var +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 0xe42ec16b spk_ttyio_synth_probe +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xfad6f556 spk_ttyio_release 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 0x88ebb2fd acpi_nfit_ctl -EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0xccb08b70 acpi_nfit_init -EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0xee9e87c3 acpi_nfit_desc_init -EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0xf064b4ea __acpi_nvdimm_notify -EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0xf6c6d009 __acpi_nfit_notify +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x5530d026 __acpi_nfit_notify +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x794a4355 acpi_nfit_init +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0xaf1b7316 acpi_nfit_desc_init +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0xc8315b30 acpi_nfit_ctl +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0xe9fa9490 __acpi_nvdimm_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 @@ -12235,48 +12283,48 @@ 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 0x0f4f7e84 ahci_print_info -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x0f5499c1 ahci_host_activate -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x0f6b3cf8 ahci_kick_engine -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x12013c06 ahci_start_fis_rx -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x145f6090 ahci_shost_attrs -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x1467975b ahci_do_softreset -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x2111e3d8 ahci_save_initial_config -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x2c71e24f ahci_start_engine -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x30bd4b03 ahci_port_resume -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x35a7892d ahci_qc_issue -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x39751830 ahci_handle_port_intr -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x3fb68fcd ahci_reset_controller -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x481d4ec5 ahci_pmp_retry_srst_ops -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x498c247f ahci_ops -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x619f8d18 ahci_do_hardreset -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x6b0f6bb5 ahci_sdev_attrs -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x754319a8 ahci_stop_engine -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x92e3c287 ahci_reset_em -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xde8f1965 ahci_init_controller -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xe15df3e9 ahci_dev_classify -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xe6b2d7f8 ahci_check_ready -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xe8ab33c3 ahci_set_em_messages +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x02597a0c ahci_start_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x0994d028 ahci_reset_em +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x143a19cc ahci_do_hardreset +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x1795e8fa ahci_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x1b168fb3 ahci_error_handler +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x1ebf6d85 ahci_host_activate +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x25a0a034 ahci_sdev_attrs +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x3bfaaceb ahci_pmp_retry_srst_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x40c153b5 ahci_handle_port_intr +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x40f2ddf6 ahci_print_info +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x4332d255 ahci_start_fis_rx +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x4b3f8515 ahci_stop_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x6b275407 ahci_port_resume +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x7fcbb1d4 ahci_reset_controller +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x8eae7ced ahci_shost_attrs +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x92b55728 ahci_do_softreset +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xa2210296 ahci_fill_cmd_slot +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xba54d9c4 ahci_qc_issue +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xc97423d5 ahci_kick_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xd517d757 ahci_save_initial_config +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xd792a66d ahci_check_ready +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xdd218edc ahci_dev_classify +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xe7718067 ahci_set_em_messages +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xe9f587d7 ahci_init_controller EXPORT_SYMBOL_GPL drivers/ata/libahci 0xea50dad3 ahci_ignore_sss -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xef48002a ahci_error_handler -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xfee87777 ahci_fill_cmd_slot -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x219e62fc ahci_platform_disable_resources -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x26ca1a24 ahci_platform_get_resources -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x64f5db55 ahci_platform_ops -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x67997382 ahci_platform_init_host -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x6efa19f4 ahci_platform_resume_host -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x8177b634 ahci_platform_suspend_host -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xb0372b0a ahci_platform_disable_phys -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xb129d3a9 ahci_platform_enable_resources -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xbae16505 ahci_platform_enable_clks -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xc4e00785 ahci_platform_disable_clks -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xc831cd46 ahci_platform_shutdown -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xce36498a ahci_platform_enable_phys -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xd43bb96f ahci_platform_resume -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xe3a1cb4f ahci_platform_enable_regulators -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xe483ac5e ahci_platform_suspend -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xf830d985 ahci_platform_disable_regulators -EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0x8f98bb3f __pata_platform_probe +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x03c5c0fc ahci_platform_enable_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x0ca11545 ahci_platform_suspend +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x11060078 ahci_platform_disable_clks +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x24bfd810 ahci_platform_disable_regulators +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x39262685 ahci_platform_init_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x50d2a405 ahci_platform_enable_clks +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x5a6b61fa ahci_platform_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x8be59af9 ahci_platform_shutdown +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x8f10a86a ahci_platform_get_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xa36c8978 ahci_platform_disable_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xad4b94c7 ahci_platform_enable_phys +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xc5f01c60 ahci_platform_resume +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xceca3660 ahci_platform_enable_regulators +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xec69b6ed ahci_platform_suspend_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xec9f30ba ahci_platform_disable_phys +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xef067193 ahci_platform_resume_host +EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0xe8afdbc4 __pata_platform_probe EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0x02ff9464 cfag12864b_isinited EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0x0ecb2e5d cfag12864b_disable EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0x305dc3c6 cfag12864b_isenabled @@ -12310,247 +12358,247 @@ EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xbf4774db ks0108_writecontrol EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xedde6df2 ks0108_page EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xfee8ef7b ks0108_address -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-i3c 0x53fc8ace __devm_regmap_init_i3c -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0x33b84f5a __devm_regmap_init_sccb -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0x4efc9aa8 __regmap_init_sccb -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw 0x6729ac5c __devm_regmap_init_sdw -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw 0x98a0a344 __regmap_init_sdw -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw-mbq 0x9662e6d6 __regmap_init_sdw_mbq -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw-mbq 0xcfd01214 __devm_regmap_init_sdw_mbq -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0x45d731a7 __regmap_init_slimbus -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0xcd8a3505 __devm_regmap_init_slimbus -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spi-avmm 0x49823cc9 __devm_regmap_init_spi_avmm -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spi-avmm 0xefeb6b53 __regmap_init_spi_avmm -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x026f0955 __regmap_init_spmi_ext -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x1b325a34 __devm_regmap_init_spmi_ext -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x96e5d000 __regmap_init_spmi_base -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xac49dc9d __devm_regmap_init_spmi_base -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0x9ff40f0f __regmap_init_w1 -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0xfc43a7b0 __devm_regmap_init_w1 -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x031e086b bcma_host_pci_up -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x04ad085f bcma_pmu_spuravoid_pllupdate -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x0fc22472 bcma_chipco_gpio_control -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x1b30a91d bcma_pmu_get_bus_clock -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x229c1729 bcma_chipco_gpio_outen -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x274d53af bcma_chipco_gpio_out -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x3659a965 bcma_find_core_unit -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x3dc9c07b bcma_core_enable -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x488d3f27 bcma_chipco_pll_write -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x6a2a4028 __bcma_driver_register -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7c33a2cc bcma_host_pci_down -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7d2a6409 bcma_driver_unregister -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x8ccb01cf bcma_chipco_pll_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x8d7066bc bcma_chipco_chipctl_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x90a0bfb5 bcma_chipco_b_mii_write -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x9e317dcb bcma_core_pll_ctl -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa0c3b6cb bcma_core_is_enabled -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa45b689e bcma_core_pci_power_save -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa49dfd52 bcma_host_pci_irq_ctl -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xad09048c bcma_chipco_pll_read -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc02067cd bcma_chipco_regctl_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xce47ac35 bcma_core_set_clockmode -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xdb8e188b bcma_core_disable -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xfba5a067 bcma_chipco_get_alp_clock -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x067a3070 btbcm_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x0a3b45fb btbcm_read_pcm_int_params -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x1dd2a9b4 btbcm_write_pcm_int_params -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x444ee318 btbcm_initialize -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x6d9ca79c btbcm_finalize -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xa24e7002 btbcm_check_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xa9c8806a btbcm_setup_apple -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xeb6391ff btbcm_setup_patchram -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x0d312df8 btintel_configure_setup -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x1245733b btintel_bootup -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x1d402149 btintel_enter_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x1fb3dc10 btintel_set_diag -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x22afb41a btintel_send_intel_reset -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x233b4952 btintel_secure_send_result -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x2381f77e btintel_download_firmware -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x26ab151f btintel_set_event_mask_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x3811dd19 btintel_check_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x384ce251 btintel_load_ddc_config -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x701bf6ea btintel_read_boot_params -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xa8616b70 btintel_read_version -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xb39bea21 btintel_version_info -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xc05dfdb1 btintel_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xd27df29d btintel_regmap_init -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xd95d9fda btintel_exit_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x008801d7 btmrvl_process_event -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x0c45cc97 btmrvl_enable_ps -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x2f301ac3 btmrvl_send_hscfg_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x37984987 btmrvl_register_hdev -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x72e3b286 btmrvl_interrupt -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x736ae5d9 btmrvl_remove_card -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x796b014a btmrvl_add_card -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x81d9af70 btmrvl_enable_hs -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x8d2d9e9f btmrvl_check_evtpkt -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xcd9902e1 btmrvl_pscan_window_reporting -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xd08e8a5d btmrvl_send_module_cfg_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x1c0a5c89 qca_read_soc_version -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x21b49fa5 qca_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x979cf209 qca_set_bdaddr_rome -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xb3dd4e75 qca_uart_setup -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xc64f42c4 qca_send_pre_shutdown_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x0113d803 btrtl_download_firmware -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x0e914817 btrtl_initialize -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x1af61af5 btrtl_setup_realtek -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x7b7c9d93 btrtl_get_uart_settings +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-i3c 0x8c24228f __devm_regmap_init_i3c +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0x5ffbfc78 __regmap_init_sccb +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0xf296ad49 __devm_regmap_init_sccb +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw 0x33e41a1e __regmap_init_sdw +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw 0x4f903a18 __devm_regmap_init_sdw +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw-mbq 0x228aa437 __devm_regmap_init_sdw_mbq +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw-mbq 0x2d4c3cee __regmap_init_sdw_mbq +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0x307a6076 __regmap_init_slimbus +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0x894648ab __devm_regmap_init_slimbus +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spi-avmm 0x5d200311 __regmap_init_spi_avmm +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spi-avmm 0xa26d6dde __devm_regmap_init_spi_avmm +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x0407938e __devm_regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x107a550b __devm_regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x4e4ebde9 __regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xc3e6e8de __regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0x9299976c __regmap_init_w1 +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0xaf844558 __devm_regmap_init_w1 +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x0be374e8 bcma_core_set_clockmode +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x0c161488 bcma_chipco_gpio_out +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x25734d8e bcma_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x25b429a3 bcma_chipco_get_alp_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x3454fb4a bcma_chipco_pll_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x39e45294 bcma_chipco_pll_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x3afd7f91 bcma_chipco_b_mii_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x47d5eaa8 bcma_chipco_gpio_outen +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x5502f0fa bcma_chipco_chipctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x553ad765 bcma_core_enable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x691c083f bcma_core_is_enabled +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x69f435a4 bcma_driver_unregister +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x720b0379 __bcma_driver_register +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x8d87b961 bcma_pmu_get_bus_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa0c335c5 bcma_host_pci_up +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa6292ee4 bcma_core_disable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xaed5dcc4 bcma_core_pci_power_save +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc290e428 bcma_chipco_pll_read +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc3ca27a9 bcma_find_core_unit +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xdd7f1149 bcma_host_pci_down +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xdfc9427b bcma_chipco_gpio_control +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe9a59f3b bcma_host_pci_irq_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xea4412e6 bcma_core_pll_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xfd552adf bcma_chipco_regctl_maskset +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x59e33dbb btbcm_read_pcm_int_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x907b3081 btbcm_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x945400dc btbcm_write_pcm_int_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xa0338d52 btbcm_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xa26b9106 btbcm_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xad35fe60 btbcm_finalize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xafd06373 btbcm_setup_apple +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xb74fcf03 btbcm_setup_patchram +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x05c21854 btintel_version_info +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x099155f8 btintel_send_intel_reset +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x1c1e5774 btintel_regmap_init +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x32fd9bbc btintel_read_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x4d459f8b btintel_set_diag +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x767daf20 btintel_bootup +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x80d79f74 btintel_configure_setup +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x8114f7ce btintel_exit_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xa489cc55 btintel_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xb811a678 btintel_set_event_mask_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xb81da242 btintel_read_boot_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xbee6d322 btintel_load_ddc_config +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xc5eb6193 btintel_download_firmware +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xcb6017b7 btintel_enter_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xecd0dce0 btintel_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xf3ba4cc5 btintel_secure_send_result +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x0494bc06 btmrvl_process_event +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x16862ffc btmrvl_interrupt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x2a3ea730 btmrvl_check_evtpkt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x2ab88d55 btmrvl_send_module_cfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x5a85fae4 btmrvl_enable_ps +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x6b047e6f btmrvl_enable_hs +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x77a126be btmrvl_pscan_window_reporting +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x843e716e btmrvl_send_hscfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x94a6b1a4 btmrvl_register_hdev +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xbb201ef3 btmrvl_add_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xda314894 btmrvl_remove_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x00b27b17 qca_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x0a24e385 qca_read_soc_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x3fa93a81 qca_send_pre_shutdown_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xc0ae446b qca_uart_setup +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xfa35b74e qca_set_bdaddr_rome +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x1edd7571 btrtl_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x60ba1f0d btrtl_get_uart_settings +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x7ceb8577 btrtl_set_quirks +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x9ee6b030 btrtl_download_firmware EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xaf78f260 btrtl_free -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xbebfcfbe btrtl_shutdown_realtek -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xc7b8ee24 btrtl_set_quirks -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x6757e32b hci_uart_tx_wakeup -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x9a03164b h4_recv_buf -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0xc06c5977 hci_uart_register_device -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0xe8d1bc29 hci_uart_unregister_device -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x05fca181 mhi_pm_resume_force -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x0d5977a0 mhi_soc_reset -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x112d30cb mhi_notify -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x180d48f2 mhi_pm_resume -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x19396f55 __mhi_driver_register -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x258d2b9f mhi_download_rddm_image -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x2595d773 mhi_free_controller -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x3b5c89e0 mhi_queue_is_full -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x3e7bf6c2 mhi_poll -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x421907b4 mhi_force_rddm_mode -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x4fad61d4 mhi_queue_skb -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x61ef93f3 mhi_pm_suspend -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x62585dba mhi_queue_dma -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x628c10cf mhi_unregister_controller -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x62c183cd mhi_device_get -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x7f5d2089 mhi_unprepare_from_transfer -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x826daccb mhi_register_controller -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x8f56cec9 mhi_async_power_up -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x90abd886 mhi_prepare_for_transfer -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x954b6a30 mhi_get_exec_env -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xab058b30 mhi_get_mhi_state -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xb8b1ba1b mhi_get_free_desc_count -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xc0d159b8 mhi_unprepare_after_power_down -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xc1032ab4 mhi_driver_unregister -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xc49d21f2 mhi_queue_buf -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xd1f733cb mhi_device_get_sync -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xdcef236e mhi_device_put -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xddc349fd mhi_alloc_controller -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xf63cbf2d mhi_prepare_for_power_up -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xf7b66a9f mhi_power_down -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x05c7521f comedi_buf_write_alloc -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x06b13072 comedi_request_region -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x0977dfbc comedi_nscans_left -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x0afccd2b comedi_buf_read_alloc +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xd87cd115 btrtl_setup_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xf47c7ede btrtl_shutdown_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0xa0c24c6c hci_uart_tx_wakeup +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0xae9183ce hci_uart_register_device +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0xcb2ed6d2 hci_uart_unregister_device +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0xcb7a20cb h4_recv_buf +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x0fa0fd3b mhi_get_exec_env +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x1552dcaa mhi_download_rddm_image +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x1ab1f17e mhi_device_get_sync +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x1d590440 mhi_free_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x27d3f544 mhi_unprepare_after_power_down +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x31fea773 mhi_get_mhi_state +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x36e26fae mhi_pm_resume +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x3d02fe23 mhi_pm_resume_force +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x3e5da1f6 mhi_unregister_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x401215f6 mhi_queue_buf +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x581a15d0 mhi_async_power_up +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x5a6fcee0 mhi_queue_dma +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x5aec7296 mhi_queue_skb +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x68c43683 mhi_soc_reset +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x6fd5c7bc __mhi_driver_register +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x7e69c102 mhi_notify +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x825c76c4 mhi_alloc_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x86e2b4ec mhi_power_down +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x8a271562 mhi_queue_is_full +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x9416434b mhi_prepare_for_power_up +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x9a373d02 mhi_driver_unregister +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xa21e448c mhi_device_get +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xa64f9dec mhi_poll +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xa735da32 mhi_device_put +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xb0d55001 mhi_unprepare_from_transfer +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xbe311236 mhi_pm_suspend +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xd646c908 mhi_get_free_desc_count +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xe18ca1ac mhi_prepare_for_transfer +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xeb8781c1 mhi_register_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xf45e9085 mhi_force_rddm_mode +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x06fdcc13 comedi_is_subdevice_running +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x092009f1 comedi_buf_read_alloc EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x0cd330f4 range_unknown -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x11d05ded comedi_buf_read_free -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x14b6f39e comedi_dio_insn_config -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x1a15e397 comedi_dio_update_state -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x1becfaf3 comedi_inc_scan_progress +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x0dcfdef5 comedi_bytes_per_scan_cmd +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x129a9e30 comedi_buf_write_samples +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x1db11162 comedi_handle_events +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x1f38e674 comedi_load_firmware EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x21102f87 range_0_32mA -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x25c9f97d comedi_event -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x2ab65da4 comedi_buf_write_free -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x2d50a178 __comedi_request_region +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x21e606d1 comedi_alloc_subdev_readback +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x24a6331f comedi_nscans_left +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x254b27d1 comedi_set_hw_dev +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x291019e6 comedi_readback_insn_read +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x2aa2b86e comedi_dio_insn_config EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x2f0ad9d3 range_bipolar5 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x3a0dc62c comedi_timeout -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x3cbc9347 comedi_buf_read_n_available -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x3f48513b comedi_load_firmware +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x2f7c8967 comedi_dev_put +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x37aeb5e7 comedi_buf_write_alloc +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x38a2a798 comedi_buf_read_free +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x39dbd4a0 comedi_dio_update_state +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x40bea39c comedi_buf_read_samples EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4236eaaf range_4_20mA -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x42c055df comedi_bytes_per_scan -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x43855947 comedi_auto_config -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x48b838ce comedi_bytes_per_scan_cmd -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4a7fa95e comedi_buf_read_samples -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4bb9ff36 comedi_auto_unconfig EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4fe634f3 range_bipolar2_5 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x59224738 comedi_set_hw_dev -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x5bf21d85 comedi_nsamples_left -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x638c18cb comedi_driver_register -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x6805b92b comedi_alloc_subdevices -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x6badea45 comedi_readback_insn_read -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x78fa9abf comedi_handle_events +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x5d7f94ea comedi_nsamples_left +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x6755f1b9 comedi_dev_get_from_minor +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x72e8d04a comedi_bytes_per_scan +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x79af5c6d comedi_driver_unregister EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x8113872c range_unipolar10 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x847a120a comedi_buf_write_samples -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x84e658f5 comedi_is_subdevice_running -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x91d61308 comedi_alloc_devpriv -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x98cdef10 comedi_driver_unregister -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xa294d5d0 comedi_set_spriv_auto_free +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x854cd343 comedi_check_chanlist +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x9d422b1f comedi_inc_scan_progress +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x9efd66dc comedi_alloc_subdevices +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xa57cea2d comedi_auto_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xadf269f0 comedi_timeout EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xb679cebc range_0_20mA EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xbb52fc7f range_bipolar10 EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xbdbe75c6 range_unipolar2_5 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xc45004ce comedi_alloc_spriv -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xc7341449 comedi_dev_put -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xd251c614 comedi_legacy_detach -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xd69d8494 comedi_dev_get_from_minor +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xcac372cc comedi_legacy_detach +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xd364264c comedi_alloc_devpriv +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xd699e46a comedi_event +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xd75e02d9 comedi_alloc_spriv +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xd8126c2c comedi_auto_unconfig +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xd8696a7f comedi_buf_write_free EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xdb2044b2 range_unipolar5 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xe320431d comedi_alloc_subdev_readback -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xe91f20b5 comedi_check_chanlist -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x0773a5ef comedi_to_pci_dev -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x142b1fc8 comedi_pci_driver_unregister -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x1c052553 comedi_pci_enable -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x50d1fc9f comedi_pci_disable -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xb0e8084b comedi_pci_auto_unconfig -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xc2803149 comedi_pci_detach -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xd95e1aa7 comedi_pci_driver_register -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xdecfef3c comedi_pci_auto_config -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pcmcia 0x10a7bbc5 comedi_pcmcia_driver_unregister -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pcmcia 0x3a0b9b20 comedi_pcmcia_driver_register -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pcmcia 0x6d19e39f comedi_pcmcia_enable -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pcmcia 0x72ffd664 comedi_to_pcmcia_dev -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pcmcia 0x85767951 comedi_pcmcia_disable -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pcmcia 0xa0d6d844 comedi_pcmcia_auto_config -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pcmcia 0xacdabfd1 comedi_pcmcia_auto_unconfig -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x06cc2901 comedi_usb_auto_unconfig -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x111f4e51 comedi_usb_driver_register -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x3ca66ece comedi_to_usb_interface -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x7667a6e7 comedi_usb_driver_unregister -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x8c8e903d comedi_usb_auto_config -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x92710bd2 comedi_to_usb_dev -EXPORT_SYMBOL_GPL drivers/comedi/drivers/addi_watchdog 0x1bd8d4f8 addi_watchdog_init +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xe1ddea53 comedi_set_spriv_auto_free +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xe4a80868 comedi_request_region +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xec08c22c comedi_driver_register +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xf31208ca comedi_buf_read_n_available +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xf4655490 __comedi_request_region +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x0ea6f6a9 comedi_pci_disable +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x79f902e8 comedi_pci_detach +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x7cfd704e comedi_to_pci_dev +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x855309da comedi_pci_auto_unconfig +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x9756bb27 comedi_pci_driver_unregister +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x9d9d70ad comedi_pci_enable +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xce6da91d comedi_pci_driver_register +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xf0479284 comedi_pci_auto_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pcmcia 0x0f057cbc comedi_to_pcmcia_dev +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pcmcia 0x0f749d39 comedi_pcmcia_disable +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pcmcia 0x19dc6582 comedi_pcmcia_enable +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pcmcia 0x47162db1 comedi_pcmcia_driver_unregister +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pcmcia 0x824324d9 comedi_pcmcia_auto_unconfig +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pcmcia 0x8551beb4 comedi_pcmcia_auto_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pcmcia 0xd4ea1bc7 comedi_pcmcia_driver_register +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x21d99bdc comedi_usb_auto_unconfig +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x2a805ef4 comedi_usb_auto_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x3d210783 comedi_usb_driver_register +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x9c2d2d28 comedi_to_usb_interface +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0xcdd8d380 comedi_to_usb_dev +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0xebc08042 comedi_usb_driver_unregister +EXPORT_SYMBOL_GPL drivers/comedi/drivers/addi_watchdog 0x390597e4 addi_watchdog_init EXPORT_SYMBOL_GPL drivers/comedi/drivers/addi_watchdog 0x79f4a6cf addi_watchdog_reset -EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_dio200_common 0x4aa479c0 amplc_dio200_common_attach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_dio200_common 0x53822a6f amplc_dio200_set_enhance -EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_pc236_common 0x8a4e4f4b amplc_pc236_common_attach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x12427584 comedi_8254_init -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x16914fdb comedi_8254_subdevice_init -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x7619d35c comedi_8254_mm_init -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x91308eee comedi_8254_cascade_ns_to_timer -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x949b7a9d comedi_8254_read -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xabb9bf53 comedi_8254_load -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xb9038acb comedi_8254_ns_to_timer -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xbedee5ec comedi_8254_status -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xc2492b61 comedi_8254_set_mode -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xc72bef47 comedi_8254_pacer_enable -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xe66490ea comedi_8254_update_divisors -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xf2a59e83 comedi_8254_set_busy -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xf60b226c comedi_8254_write -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0x03059b47 subdev_8255_mm_init -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0x2b9b11ac subdev_8255_regbase -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0x57d3c7e5 subdev_8255_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_dio200_common 0x3a9f0a3b amplc_dio200_common_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_dio200_common 0x67726b28 amplc_dio200_set_enhance +EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_pc236_common 0xe78c88c6 amplc_pc236_common_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x1caa659f comedi_8254_cascade_ns_to_timer +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x26eba24d comedi_8254_mm_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x45b93002 comedi_8254_read +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x46ae1c84 comedi_8254_pacer_enable +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x67c4c43e comedi_8254_subdevice_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x7b9936e5 comedi_8254_set_busy +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x99b97435 comedi_8254_ns_to_timer +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xbad54273 comedi_8254_update_divisors +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xbc0ad768 comedi_8254_status +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xcfa006aa comedi_8254_load +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xe09557a0 comedi_8254_set_mode +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xe23595d2 comedi_8254_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xfb370377 comedi_8254_write +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0x324c14d5 subdev_8255_regbase +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0x5e4caf2d subdev_8255_mm_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0xb7eeb7ea subdev_8255_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_isadma 0x0fe1e7b5 comedi_isadma_alloc 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 0x5dbe78a7 comedi_isadma_alloc +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_isadma 0x97388b47 comedi_isadma_poll EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_isadma 0xca784d4b comedi_isadma_set_mode +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_isadma 0xe56f842c comedi_isadma_free EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_isadma 0xea878430 comedi_isadma_program -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_isadma 0xf0ed5623 comedi_isadma_poll -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_isadma 0xfda15953 comedi_isadma_free -EXPORT_SYMBOL_GPL drivers/comedi/drivers/das08 0x1bd29428 das08_common_attach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x12f7792a mite_release_channel -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x1896d3c7 mite_request_channel -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x1db8b9f8 mite_ack_linkc -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x3e3fe3e6 mite_done -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x3f0bda02 mite_sync_dma -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x4f31361e mite_prep_dma -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x5239207e mite_attach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x5d03477c mite_dma_arm -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x66d8a0ff mite_init_ring_descriptors -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x833d693a mite_buf_change -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x894e6610 mite_free_ring -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x9569588e mite_request_channel_in_range -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xa6a0f6c8 mite_detach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xc6446790 mite_dma_disarm -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xe46f86eb mite_bytes_in_transit -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xee588a9a mite_alloc_ring -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_common 0x3ed36a88 labpc_common_detach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_common 0x824ef9d2 labpc_common_attach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_isadma 0x4015dc52 labpc_handle_dma_status -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_isadma 0x880cc8cc labpc_free_dma_chan -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_isadma 0x8b13b9d3 labpc_drain_dma -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_isadma 0xf1e42e99 labpc_setup_dma -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_isadma 0xf5a722f7 labpc_init_dma_chan +EXPORT_SYMBOL_GPL drivers/comedi/drivers/das08 0x28a5d8b8 das08_common_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x0437ee04 mite_request_channel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x24ff10da mite_prep_dma +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x272767c5 mite_init_ring_descriptors +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x2c7e01e2 mite_alloc_ring +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x31c25947 mite_detach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x3a90675a mite_sync_dma +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x3b70137f mite_buf_change +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x45e9b7a1 mite_done +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x48ab232f mite_free_ring +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x674c2521 mite_dma_arm +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x85088a7b mite_release_channel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x93f43803 mite_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x9a136192 mite_dma_disarm +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xb866d536 mite_bytes_in_transit +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xd3f75590 mite_ack_linkc +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xe02aa3ff mite_request_channel_in_range +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_common 0x05f38a93 labpc_common_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_common 0xe16393a8 labpc_common_detach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_isadma 0x0b60b57e labpc_init_dma_chan +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_isadma 0x0cd6ba22 labpc_free_dma_chan +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_isadma 0x7f069cf5 labpc_setup_dma +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_isadma 0xad3b27dc labpc_drain_dma +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_isadma 0xf56fc4d4 labpc_handle_dma_status EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x076bc308 ni_find_route_source EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x0921123e ni_lookup_route_register EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x1facf7f8 ni_is_cmd_dest @@ -12561,930 +12609,926 @@ 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 0x1085e963 ni_tio_get_soft_copy -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x264bb86a ni_tio_unset_routing -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x3aee0183 ni_tio_set_gate_src -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x4091e4c7 ni_tio_insn_write -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x425484b5 ni_tio_init_counter -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x4dec47b4 ni_tio_insn_read -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x58c8601c ni_tio_set_gate_src_raw -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x6ee09fee ni_gpct_device_destroy -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x9f75e038 ni_gpct_device_construct -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xa3e6b464 ni_tio_set_bits -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xab61f597 ni_tio_insn_config -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xac3c002c ni_tio_get_routing -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xb9eb3a1a ni_tio_set_routing -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xc0eddacf ni_tio_write -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xcd5647d6 ni_tio_arm -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xd19494b9 ni_tio_read -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x01bcb8fc ni_tio_cancel -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x1a226c89 ni_tio_acknowledge -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x4eb3daf4 ni_tio_cmdtest -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xc4cbb6ff ni_tio_cmd -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xd814297c ni_tio_set_mite_channel -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xe4fd8844 ni_tio_handle_interrupt -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x14b289b0 comedi_get_n_channels -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x3a93ac61 comedi_dio_get_config -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x6d5d28b6 comedi_open -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x82811091 comedi_close -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xb40d5b44 comedi_dio_config -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xbce1672c comedi_find_subdevice_by_type -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xeb8c961f comedi_dio_bitfield2 +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x09d35ff5 ni_tio_init_counter +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x19fbd776 ni_gpct_device_construct +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x1d7f73b5 ni_gpct_device_destroy +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x1f71fef5 ni_tio_insn_write +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x20337579 ni_tio_set_routing +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x2beb49e6 ni_tio_arm +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x324eed07 ni_tio_write +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x8374dfc4 ni_tio_read +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x8c920a5a ni_tio_set_bits +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x8df81452 ni_tio_get_routing +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x95acaf89 ni_tio_unset_routing +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xa80aaa81 ni_tio_get_soft_copy +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xae51aba0 ni_tio_insn_read +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xbd645018 ni_tio_insn_config +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xc2e4c691 ni_tio_set_gate_src +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xc762f997 ni_tio_set_gate_src_raw +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x2583007b ni_tio_handle_interrupt +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x550890ad ni_tio_cancel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x8bd978f7 ni_tio_acknowledge +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xd4c30a25 ni_tio_set_mite_channel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xe231c142 ni_tio_cmd +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xe3bb9d9d ni_tio_cmdtest +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x1eb4f44f comedi_open +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x3fd4210b comedi_get_n_channels +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x96723850 comedi_close +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xac7b756f comedi_dio_bitfield2 +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xacb04be9 comedi_dio_get_config +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xb0a8fb23 comedi_dio_config +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xe53b34ed comedi_find_subdevice_by_type EXPORT_SYMBOL_GPL drivers/counter/counter 0x01aab51b counter_count_direction_str -EXPORT_SYMBOL_GPL drivers/counter/counter 0x01cb52ac counter_count_enum_write -EXPORT_SYMBOL_GPL drivers/counter/counter 0x057cd41e counter_device_enum_available_read -EXPORT_SYMBOL_GPL drivers/counter/counter 0x1076d85c counter_count_enum_available_read -EXPORT_SYMBOL_GPL drivers/counter/counter 0x1c41fa84 devm_counter_register -EXPORT_SYMBOL_GPL drivers/counter/counter 0x1feef397 counter_unregister -EXPORT_SYMBOL_GPL drivers/counter/counter 0x3a1ff233 counter_device_enum_write -EXPORT_SYMBOL_GPL drivers/counter/counter 0x70a1f9ae counter_signal_enum_read -EXPORT_SYMBOL_GPL drivers/counter/counter 0x749c9caa counter_register -EXPORT_SYMBOL_GPL drivers/counter/counter 0x8638a72c counter_signal_enum_available_read -EXPORT_SYMBOL_GPL drivers/counter/counter 0x8ec92bbe counter_signal_enum_write -EXPORT_SYMBOL_GPL drivers/counter/counter 0xb14a2f00 counter_count_enum_read -EXPORT_SYMBOL_GPL drivers/counter/counter 0xdba0ed6f devm_counter_unregister -EXPORT_SYMBOL_GPL drivers/counter/counter 0xe5defd94 counter_device_enum_read +EXPORT_SYMBOL_GPL drivers/counter/counter 0x0afb635d counter_signal_enum_write +EXPORT_SYMBOL_GPL drivers/counter/counter 0x0ebecbe3 counter_count_enum_available_read +EXPORT_SYMBOL_GPL drivers/counter/counter 0x1517343a counter_count_enum_write +EXPORT_SYMBOL_GPL drivers/counter/counter 0x1ff11bd7 counter_device_enum_write +EXPORT_SYMBOL_GPL drivers/counter/counter 0x32efe6cb counter_device_enum_available_read +EXPORT_SYMBOL_GPL drivers/counter/counter 0x65fe25f3 devm_counter_register +EXPORT_SYMBOL_GPL drivers/counter/counter 0x735a4a66 counter_count_enum_read +EXPORT_SYMBOL_GPL drivers/counter/counter 0x84a4dded devm_counter_unregister +EXPORT_SYMBOL_GPL drivers/counter/counter 0xa93555f4 counter_signal_enum_read +EXPORT_SYMBOL_GPL drivers/counter/counter 0xb02e8e12 counter_register +EXPORT_SYMBOL_GPL drivers/counter/counter 0xe2b28a47 counter_device_enum_read EXPORT_SYMBOL_GPL drivers/counter/counter 0xee526d0f counter_count_mode_str +EXPORT_SYMBOL_GPL drivers/counter/counter 0xef0d34a2 counter_unregister +EXPORT_SYMBOL_GPL drivers/counter/counter 0xff23cbb2 counter_signal_enum_available_read 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 0x134132d8 sev_issue_cmd_external_user -EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x1b56ad1c ccp_enqueue_cmd EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x2e6a6147 psp_copy_user_blob EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x3a1a3979 ccp_version EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x3e059f28 sev_guest_activate EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x4073e924 sev_guest_deactivate EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x843d6541 sev_guest_decommission EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x8fac14a2 sev_guest_df_flush +EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x900225b8 sev_issue_cmd_external_user EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x91722dce sev_platform_status +EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x9afc3ac8 ccp_enqueue_cmd EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0xd02e197f sev_platform_init -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x08216344 adf_sriov_configure -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x1a015e29 adf_dev_start -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x20d23470 adf_devmgr_rm_dev +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x0103ae83 adf_cfg_dev_add +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x155e45fe adf_init_arb +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x2345aaf0 adf_devmgr_pci_to_accel_dev +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x29c0a1c8 adf_gen2_get_accel_cap 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 0x2cfda433 adf_disable_aer -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x30677e0d adf_gen2_cfg_iov_thds -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x3e4a031d adf_cfg_dev_remove +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x2d405d1b adf_exit_arb +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x336eb26a adf_init_etr_data +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x35e704ee adf_disable_aer +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x3b93f045 adf_dev_get +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x3bdd23df adf_devmgr_add_dev +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x3bf8afc1 adf_init_admin_comms +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x3cb33119 adf_dev_put 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 0x3f3844b8 adf_disable_sriov -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x43bde8cb adf_devmgr_pci_to_accel_dev -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x5880635d adf_devmgr_update_class_index -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x5d6be8eb adf_reset_flr -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x5e9190d6 adf_isr_resource_alloc -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x647e2deb adf_disable_pf2vf_interrupts -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x67b9e767 adf_cfg_add_key_value_param -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x68d15253 adf_flush_vf_wq -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x6c982a5b adf_dev_stop -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x745cef6f adf_send_admin_init -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x760790b3 adf_cfg_section_add -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x782fcfa3 adf_init_etr_data -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7f2bb590 adf_enable_vf2pf_comms -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x85ee17ac adf_vf_isr_resource_alloc -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x8b729c97 adf_dev_started -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x8eeeb88a adf_init_admin_comms -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x948b7fbd adf_isr_resource_free -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x952d7328 adf_init_arb -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x9b62c042 adf_vf2pf_notify_init -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x9bf8e80c adf_dev_shutdown -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xa571aa5b adf_dev_in_use -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xa650c7b7 qat_crypto_dev_config -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xa9fbcaea adf_gen2_set_ssm_wdtimer -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xac6e81fd adf_vf_isr_resource_free -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xba2406ad adf_dev_init -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xbd8edf4e adf_exit_admin_comms +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x3e72be37 adf_devmgr_rm_dev +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x4abd5a2e adf_dev_started +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x5ff4a132 adf_dev_in_use +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7133474c adf_gen4_set_ssm_wdtimer +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x749f9f85 adf_reset_flr +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x87a5e387 adf_vf2pf_notify_shutdown +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x88f03e29 adf_send_admin_init +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x8d699b67 adf_flush_vf_wq +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x94a2c4ff adf_vf2pf_notify_init +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x97060863 adf_gen2_cfg_iov_thds +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x9ad44d3a adf_dev_shutdown +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x9ee414de adf_reset_sbr +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x9fcd0686 adf_disable_pf2vf_interrupts +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xa3fde837 adf_dev_stop +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xa4d30c8d adf_exit_admin_comms +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xb08d1543 adf_cfg_dev_remove +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xb283950b adf_vf_isr_resource_alloc +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xb70400c8 qat_crypto_dev_config +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xbc9f4981 adf_gen2_set_ssm_wdtimer +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xbdffa25b adf_vf_isr_resource_free +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xc36e6954 adf_devmgr_update_class_index 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 0xc503c4bd adf_gen2_get_accel_cap -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xc5be5271 adf_cleanup_etr_data -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xcab82ed5 adf_exit_arb -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xcb40358c adf_gen4_set_ssm_wdtimer +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xc50cbf8f adf_devmgr_in_reset +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xc6b763bf adf_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 0xd2e65805 adf_reset_sbr -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xd4ccc42d adf_dev_put -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xd5641afb adf_dev_get 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 0xd925c5c6 adf_devmgr_in_reset -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xdd15d2e9 adf_devmgr_add_dev -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xea524a68 adf_enable_aer -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xf0023322 adf_vf2pf_notify_shutdown -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xf48ddfae adf_cfg_dev_add -EXPORT_SYMBOL_GPL drivers/dax/device_dax 0x25db59da dev_dax_probe -EXPORT_SYMBOL_GPL drivers/dax/pmem/dax_pmem_core 0xb82b9ec3 __dax_pmem_probe +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xd9b11ec5 adf_disable_sriov +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xdb0f5196 adf_enable_vf2pf_comms +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xddebab3e adf_dev_start +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xed338153 adf_cfg_section_add +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xf13a23c1 adf_enable_aer +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xf19574d3 adf_cfg_add_key_value_param +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xf7be959d adf_isr_resource_alloc +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xf96a9fd7 adf_sriov_configure +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xfbed1657 adf_cleanup_etr_data +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xffe7b55a adf_dev_init +EXPORT_SYMBOL_GPL drivers/dax/device_dax 0x044d81ff dev_dax_probe +EXPORT_SYMBOL_GPL drivers/dax/pmem/dax_pmem_core 0x01703906 __dax_pmem_probe EXPORT_SYMBOL_GPL drivers/dca/dca 0x01a33ab9 dca_unregister_notify -EXPORT_SYMBOL_GPL drivers/dca/dca 0x1f6e248e register_dca_provider -EXPORT_SYMBOL_GPL drivers/dca/dca 0x25b69585 dca3_get_tag -EXPORT_SYMBOL_GPL drivers/dca/dca 0x4ec2e8b5 unregister_dca_provider -EXPORT_SYMBOL_GPL drivers/dca/dca 0x629833c3 free_dca_provider -EXPORT_SYMBOL_GPL drivers/dca/dca 0xa3296284 alloc_dca_provider +EXPORT_SYMBOL_GPL drivers/dca/dca 0x488d450d dca_remove_requester +EXPORT_SYMBOL_GPL drivers/dca/dca 0x5ccae4b4 dca3_get_tag +EXPORT_SYMBOL_GPL drivers/dca/dca 0x74cc224e dca_add_requester +EXPORT_SYMBOL_GPL drivers/dca/dca 0x962872bb alloc_dca_provider +EXPORT_SYMBOL_GPL drivers/dca/dca 0xa2130ea2 unregister_dca_provider +EXPORT_SYMBOL_GPL drivers/dca/dca 0xa83b3b95 register_dca_provider EXPORT_SYMBOL_GPL drivers/dca/dca 0xaa634427 dca_get_tag EXPORT_SYMBOL_GPL drivers/dca/dca 0xac34ecec dca_register_notify -EXPORT_SYMBOL_GPL drivers/dca/dca 0xc6019049 dca_remove_requester -EXPORT_SYMBOL_GPL drivers/dca/dca 0xd031a039 dca_add_requester -EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0x6c8f4858 dw_edma_remove -EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0x91e94c39 dw_edma_probe -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x13fa6543 dw_dma_acpi_controller_free -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x3fc6f2ac idma32_dma_probe -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x4b9022bc do_dw_dma_enable -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x7d80d41f dw_dma_remove -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x7f3c7f9d do_dw_dma_disable -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x8ea96265 dw_dma_probe -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xb1b7a80b dw_dma_filter -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xe4c4c6e1 idma32_dma_remove -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xf0b9ea47 dw_dma_acpi_controller_register -EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x709973d4 hsu_dma_remove -EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0xcd3adc85 hsu_dma_do_irq -EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0xf8702a5f hsu_dma_get_status -EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0xff9f12fd hsu_dma_probe -EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0x9bb28f17 hidma_mgmt_setup -EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0xdba0a178 hidma_mgmt_init_sys +EXPORT_SYMBOL_GPL drivers/dca/dca 0xb892c964 free_dca_provider +EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0x454120f3 dw_edma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0xe3e64be7 dw_edma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x193f0a8b do_dw_dma_enable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x453102fa dw_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x63621e6e dw_dma_acpi_controller_free +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x826ffb5e dw_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x89ffb6fa dw_dma_acpi_controller_register +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xa712dc63 idma32_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xc9a03db9 dw_dma_filter +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xefc940f6 do_dw_dma_disable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xf521ff39 idma32_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0x25b117a9 hidma_mgmt_setup +EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0xbf7c205c 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 0xe86fb5c7 fw_card_release -EXPORT_SYMBOL_GPL drivers/fpga/altera-pr-ip-core 0x427eb3be alt_pr_register -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x20097b65 dfl_fpga_port_ops_put -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x25f71ef0 dfl_fpga_enum_info_add_dfl -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x2d2de18a dfl_fpga_port_ops_get -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x4d46a2e2 dfl_feature_ioctl_get_num_irqs -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x54e07dfe dfl_fpga_cdev_assign_port -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x554f0691 dfl_fpga_enum_info_free -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x612a591f dfl_fpga_check_port_id -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x71896de1 dfl_fpga_port_ops_add -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x780e777b dfl_fpga_feature_devs_enumerate -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x9a8ad51c dfl_fpga_set_irq_triggers -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x9e37d556 dfl_feature_ioctl_set_irq -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xa2b0d99f dfl_fpga_dev_feature_uinit -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xaf601b98 dfl_fpga_dev_ops_register -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xbd4a2c52 dfl_fpga_feature_devs_remove -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xc536866f __dfl_fpga_cdev_find_port -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xcf76c744 dfl_fpga_enum_info_add_irq -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xd1ef61a1 dfl_fpga_enum_info_alloc -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xdb6c916c dfl_fpga_cdev_config_ports_vf -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xdf501682 dfl_fpga_port_ops_del -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xe445c876 dfl_fpga_cdev_config_ports_pf -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xe919aadf dfl_fpga_dev_feature_init -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xf3b3b635 dfl_fpga_dev_ops_unregister -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xf6243a91 dfl_fpga_cdev_release_port -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x02d9ed81 of_fpga_bridge_get +EXPORT_SYMBOL_GPL drivers/fpga/altera-pr-ip-core 0xe018cc00 alt_pr_register +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x0336d36f dfl_fpga_cdev_assign_port +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x0fbdf6b0 dfl_fpga_port_ops_put +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x2b25e43d dfl_fpga_enum_info_alloc +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x2fdbbe91 dfl_fpga_feature_devs_remove +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x58092ca4 __dfl_fpga_cdev_find_port +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x5c945195 dfl_fpga_enum_info_free +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x643c0182 dfl_fpga_port_ops_add +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x8b97565c dfl_fpga_dev_feature_uinit +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x8d43fbda dfl_feature_ioctl_set_irq +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x96d6d9e6 dfl_fpga_port_ops_del +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x97624a22 dfl_fpga_cdev_release_port +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xa2d8a236 dfl_fpga_port_ops_get +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xa5ff75e4 dfl_fpga_dev_ops_unregister +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xa684b78b dfl_fpga_dev_ops_register +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xada92d73 dfl_fpga_cdev_config_ports_pf +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xbf0d7218 dfl_feature_ioctl_get_num_irqs +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xc23ae44d dfl_fpga_enum_info_add_dfl +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xcd5f412f dfl_fpga_set_irq_triggers +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xcfd3df05 dfl_fpga_enum_info_add_irq +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xd0bf4411 dfl_fpga_feature_devs_enumerate +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xd694d875 dfl_fpga_dev_feature_init +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xdbcb947d dfl_fpga_cdev_config_ports_vf +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xece06c60 dfl_fpga_check_port_id 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 0x1c145678 fpga_bridge_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x1a0e3350 fpga_bridge_get_to_list +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x29e1450c fpga_bridge_register EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x2c8167cf fpga_bridges_disable -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x2edf39d7 fpga_bridge_enable -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x3f3067e8 fpga_bridge_free -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x65d4b322 fpga_bridge_register -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x6d9ed0cd fpga_bridge_disable -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x7f57fc47 fpga_bridge_get_to_list -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x82c64d1f fpga_bridge_create -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x9f93bd85 devm_fpga_bridge_create -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xa81fac57 fpga_bridge_put -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xcb1fc6d6 of_fpga_bridge_get_to_list -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xda1060f1 fpga_bridge_unregister -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x077ebc0d of_fpga_mgr_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x1a4ec7a9 fpga_image_info_alloc -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x2d35007a fpga_mgr_lock -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x3796f8f9 fpga_mgr_register -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x7609781c fpga_mgr_free -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x7be412ee fpga_mgr_unregister -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x7f5a89bf fpga_mgr_put -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x80df797e devm_fpga_mgr_register -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x87bce161 fpga_mgr_load -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x8a81d0af devm_fpga_mgr_create -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xa064f619 fpga_image_info_free -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xa2a79acd fpga_mgr_create -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xe3c79bd8 fpga_mgr_unlock -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xf7ed1061 fpga_mgr_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x261b5a39 fpga_region_program_fpga -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x2629b5d1 devm_fpga_region_create -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x287f881a fpga_region_class_find -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x865baf9c fpga_region_register -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x89c0d2d5 fpga_region_create -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0xd18f518e fpga_region_unregister -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0xf1554032 fpga_region_free -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x1013c450 gnss_deregister_device -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x42e09eeb gnss_allocate_device -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x54275fdb gnss_insert_raw -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x66499c15 gnss_put_device -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0xa47339c7 gnss_register_device -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x2f2e3a66 gnss_serial_pm_ops -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x3c3789b6 gnss_serial_free -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x5f5a3b58 gnss_serial_allocate -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x76d07ea2 gnss_serial_deregister -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0xa93d60ac gnss_serial_register -EXPORT_SYMBOL_GPL drivers/gpio/gpio-generic 0x0a4c1da9 bgpio_init -EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x09ce312d __max730x_remove -EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x82ccc175 __max730x_probe -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x03369a62 analogix_dp_unbind -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x1de28fdf analogix_dp_resume +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x7ee42282 fpga_bridge_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x7fd3e5df fpga_bridge_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x859e8601 fpga_bridge_disable +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x91ae13a7 devm_fpga_bridge_create +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x9b4989e1 fpga_bridge_enable +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xb1c75529 fpga_bridge_free +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xde390e90 of_fpga_bridge_get_to_list +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xeaaf2cf3 of_fpga_bridge_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xf0e24ad9 fpga_bridge_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xf41cc4a4 fpga_bridge_create +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x0070196d fpga_mgr_unlock +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x0383a7a2 fpga_mgr_lock +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x0ce9508a fpga_mgr_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x1d8107fb devm_fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x47ab2657 of_fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x4b9f9e04 fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x4eded463 fpga_image_info_free +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x6b029588 fpga_mgr_load +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x74498cf5 fpga_mgr_free +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x7b01d728 fpga_mgr_create +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x7bd7947b fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x842dd766 fpga_image_info_alloc +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x8ec44764 devm_fpga_mgr_create +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xde7f752b fpga_mgr_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x23bfa7eb fpga_region_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x40ce2d17 devm_fpga_region_create +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x4c9388c7 fpga_region_create +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x4e9810dc fpga_region_class_find +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x66eb92c4 fpga_region_program_fpga +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x9ae180cb fpga_region_free +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0xd6c9bce7 fpga_region_unregister +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x0795d8bd gnss_allocate_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x41841eff gnss_deregister_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x8b9de691 gnss_put_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0xa84baec1 gnss_insert_raw +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0xc9c5f20a gnss_register_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x43900561 gnss_serial_register +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x715b859c gnss_serial_free +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x8400b776 gnss_serial_deregister +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0xf3f2bf22 gnss_serial_allocate +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0xfdcd28fb gnss_serial_pm_ops +EXPORT_SYMBOL_GPL drivers/gpio/gpio-generic 0x2315bab8 bgpio_init +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x96e320cd __max730x_remove +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0xa2c5e04b __max730x_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x2298e962 analogix_dp_bind +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x22b37c3f analogix_dp_resume +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x38c7d61a analogix_dp_unbind +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x3d3d9a5f analogix_dp_probe EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x3ee0dd60 anx_dp_aux_transfer -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x57bceaf6 analogix_dp_bind -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x6193a75b analogix_dp_probe -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x628566cc analogix_dp_start_crc -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x8ebfbd54 analogix_dp_suspend -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xb18e35d5 analogix_dp_stop_crc -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xee7a56d6 analogix_dp_remove -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x02d15e1d drm_crtc_add_crc_entry -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x2311d5f7 drm_gem_shmem_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x256f65a5 drm_gem_shmem_mmap -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x2671fbfa drm_bridge_get_edid -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x2e85f2fd drm_bridge_detect -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x34587f89 drm_gem_dumb_map_offset -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x34dee5eb drm_hdcp_check_ksvs_revoked -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x3bb7b087 drm_gem_cma_mmap -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x3c750f69 drm_class_device_unregister -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x3fde4b72 drm_gem_shmem_prime_import_sg_table -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x46fd598f drm_gem_cma_vm_ops -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x4fbe9075 drm_gem_cma_dumb_create_internal -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x523e7dc3 drm_do_get_edid -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x561c7624 drm_gem_cma_free_object -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x5dd4ab6a drm_gem_cma_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x4ddb8381 analogix_dp_stop_crc +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x668a38eb analogix_dp_start_crc +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x91987172 analogix_dp_suspend +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xcb390f95 analogix_dp_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x0841112e drm_gem_shmem_get_pages_sgt +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x2220bbc7 drm_gem_dumb_map_offset +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x23241082 drm_class_device_unregister +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x30b08a00 drm_crtc_add_crc_entry +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x4aed006e drm_gem_shmem_prime_import_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x524af532 drm_bridge_get_modes +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x56752f65 drm_gem_cma_mmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x5ffae9b3 drm_gem_cma_get_sg_table EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x66cf2f64 drm_display_mode_from_videomode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x70298f8f drm_bridge_hpd_enable -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x807889fa drm_bridge_hpd_notify -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x8bb1f45a drm_get_unmapped_area -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x98cb8e55 drm_gem_shmem_dumb_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x99259461 drm_bridge_get_modes -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xa3058ea9 drm_gem_shmem_get_pages_sgt +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x6c7b0970 drmm_kstrdup +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x80a3f2a4 drm_gem_shmem_free_object +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x8ebbd23c drm_bridge_hpd_enable +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x91557b6b drm_gem_cma_vmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x91bd9504 drm_gem_shmem_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x95fe3463 drm_gem_cma_dumb_create_internal +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x964fa842 drm_class_device_register +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x9eb313a6 drm_gem_shmem_mmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xa9ed12ed drm_bridge_get_edid EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xad885165 drm_bus_flags_from_videomode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xb6132071 drm_gem_shmem_free_object -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xc52a2567 drm_gem_cma_prime_import_sg_table -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xc7d91e6a drm_class_device_register -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xcf93d1b7 drm_gem_cma_vmap -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xd8a35b9e drm_gem_shmem_get_sg_table -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xe7099bb9 drm_gem_cma_dumb_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xeff6b43b drm_bridge_hpd_disable -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xf4f35ea1 drm_gem_cma_get_sg_table -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xf77cb733 drmm_kstrdup +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xaf5d58ba drm_get_unmapped_area +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xb18e6ff0 drm_gem_cma_free_object +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xba6c0c05 drm_bridge_hpd_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xc2b3ebbf drm_bridge_detect +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xc364706a drm_hdcp_check_ksvs_revoked +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xc4ea9b5d drm_gem_cma_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xc98610a0 drm_do_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xcac2e567 drm_gem_cma_prime_import_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xd609bf3e drm_gem_shmem_dumb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xdb3d1b2b drm_gem_cma_vm_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xdebcd4b1 drm_gem_cma_dumb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xe730c8f2 drm_bridge_hpd_notify +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xf0580642 drm_gem_shmem_get_sg_table EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xfe9f72f3 drm_display_mode_to_videomode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x0c17fe48 drm_gem_fb_create_with_dirty -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x1222c7ee drm_fb_cma_sync_non_coherent -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x281658c1 drm_gem_fb_init_with_funcs -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x4f33add4 drm_bridge_connector_enable_hpd -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x5362d8d0 drm_gem_fb_create_with_funcs -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x541f3443 drm_gem_fb_afbc_init -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x84dc3192 drm_bridge_connector_init -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xa1fd94a7 drm_gem_plane_helper_prepare_fb -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xbcd383c8 drm_fb_cma_get_gem_obj -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xc9cc07ce drm_gem_fb_get_obj -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xd3f4cb37 drm_fb_cma_get_gem_addr -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xddb8ad5a drm_bridge_connector_disable_hpd -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xde809baf drm_gem_fb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x1cbb5444 drm_bridge_connector_enable_hpd +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x2a9f8d01 drm_gem_fb_init_with_funcs +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x3a5be061 drm_gem_fb_afbc_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x495fa61e drm_fb_cma_get_gem_addr +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x62416820 drm_gem_fb_create_with_dirty +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x65812986 drm_gem_plane_helper_prepare_fb +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x69bb88c1 drm_fb_cma_get_gem_obj +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x76a64132 drm_gem_fb_create_with_funcs +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x8802fa9c drm_fb_cma_sync_non_coherent +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xbc67a941 drm_bridge_connector_disable_hpd +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xc00609f8 drm_bridge_connector_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xe627feda drm_gem_fb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xf7ba2cf3 drm_gem_fb_get_obj 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 0x3ff8f544 intel_gvt_register_hypervisor 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 0x6fbc5503 intel_gvt_unregister_hypervisor +EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0xda184e25 intel_gvt_register_hypervisor EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0xe7237b0b i915_gpu_turbo_disable -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x03e0a9c6 __traceiter_gb_hd_add -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x0918e940 gb_hd_add +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x0413c413 gb_connection_disable_forced EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x10d1b03e __SCT__tp_func_gb_hd_in -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x12ea0e65 greybus_message_sent -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x15a1609d gb_hd_output +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x143f9810 __traceiter_gb_hd_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x15219792 gb_operation_result EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x15d1942f greybus_disabled -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x169a68ad __SCK__tp_func_gb_hd_add -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x169aa038 gb_hd_del -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x18975276 __traceiter_gb_hd_in -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x19df4152 gb_connection_latency_tag_enable -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x1ba64bef __traceiter_gb_hd_create -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x2b4cadee gb_hd_create -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x306ea7c1 gb_connection_enable_tx -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x32b546a8 gb_connection_create_flags -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x330824ce gb_operation_cancel -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x339d1ac4 greybus_deregister_driver -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x3b8d809b __traceiter_gb_hd_release -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x4d3ae42d gb_operation_create_flags -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x511e1b75 __tracepoint_gb_hd_release -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x5194f4d7 __tracepoint_gb_hd_in -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x53792bf3 __tracepoint_gb_hd_del -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x5c47d958 gb_svc_intf_set_power_mode -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x5d748020 gb_operation_request_send_sync_timeout -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x75de3135 gb_operation_request_send +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x1fae5518 __tracepoint_gb_hd_in +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x25e5e7b0 gb_operation_get_payload_size_max +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x290009a0 gb_hd_cport_reserve +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x35c66fae gb_hd_shutdown +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x3d295195 gb_operation_response_alloc +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x3d8f76a6 gb_connection_enable_tx +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x3e931a06 gb_connection_destroy +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x50b1b135 gb_operation_request_send_sync_timeout +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x5209f2ec __SCK__tp_func_gb_hd_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x52ddffb1 gb_operation_put +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x57888c4f __traceiter_gb_hd_add +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x58ecce73 __tracepoint_gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x61143374 __traceiter_gb_hd_release +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x62d89bce __SCK__tp_func_gb_hd_add +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x62e31441 gb_interface_request_mode_switch +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x64921371 gb_operation_create_flags +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x67c8a8a8 gb_hd_put +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x709369db gb_connection_enable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7207cf36 __SCK__tp_func_gb_hd_release +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x769f46a8 gb_svc_intf_set_power_mode +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x775bb2a0 greybus_register_driver EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x78fedb98 __SCT__tp_func_gb_message_submit -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7931c2f0 __SCK__tp_func_gb_hd_release -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7c300131 __traceiter_gb_hd_del -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7c80a462 __SCK__tp_func_gb_hd_in -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x8017a73d gb_operation_get -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x8895bc46 gb_debugfs_get -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x8d5e51c8 gb_operation_get_payload_size_max -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x90657608 gb_operation_result -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x923c378f gb_operation_unidirectional_timeout -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x92ba0e1b __tracepoint_gb_hd_create -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x95a8e193 gb_hd_shutdown -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x95b184fc gb_connection_disable_forced -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x9d39df38 gb_hd_put -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x9e93cd87 gb_interface_request_mode_switch -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xa7a6c6e8 gb_connection_create -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xaa6534f6 gb_connection_create_offloaded -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xab8e7f30 gb_operation_sync_timeout -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xadbc3bfe __tracepoint_gb_hd_add +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7acf826c greybus_data_rcvd +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x84b84d94 __SCK__tp_func_gb_message_submit +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x8626454a __tracepoint_gb_message_submit +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x888a18d2 __tracepoint_gb_hd_release +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x8bf2ef40 __traceiter_gb_message_submit +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x8fa15de1 __SCK__tp_func_gb_hd_in +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x9063c3c0 gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x9216a251 gb_operation_unidirectional_timeout +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x9863acff gb_connection_latency_tag_disable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x9954b1e8 gb_connection_disable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x9a62ffd7 gb_connection_disable_rx +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x9c1d8bc3 __SCK__tp_func_gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x9c42d9fb gb_operation_request_send +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xa4efa213 gb_hd_add +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xa629de7e __tracepoint_gb_hd_add +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xa9b13b07 gb_connection_create_flags +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xaaf405e3 gb_connection_create_offloaded EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xadd7926d __SCT__tp_func_gb_hd_create EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xae877457 __SCT__tp_func_gb_hd_release -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xb622c2f0 gb_connection_destroy -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xbefeffc1 __tracepoint_gb_message_submit +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xaf05bc84 gb_hd_output +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xb9b7d408 __traceiter_gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xbea2bfe0 greybus_message_sent EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xbfb52284 __SCT__tp_func_gb_hd_del -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xbfdb1523 __SCK__tp_func_gb_hd_create -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xc18827e0 __SCK__tp_func_gb_message_submit -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xcc116747 gb_connection_enable -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd8321788 gb_hd_cport_release_reserved -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xdcb954de gb_connection_latency_tag_disable -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xdf30fb7a gb_operation_response_alloc -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe4209c9b gb_connection_disable_rx +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xbfb5e836 gb_hd_cport_release_reserved +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xc442c674 __traceiter_gb_hd_in +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xc7067a45 gb_hd_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd0e375f2 __tracepoint_gb_hd_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd32f2388 gb_connection_latency_tag_enable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xda0892b4 greybus_deregister_driver +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xdb17a75f gb_connection_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xde6d0803 gb_operation_sync_timeout +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe51336dd gb_operation_get EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe6b45fb6 __SCT__tp_func_gb_hd_add -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe85f78a0 __SCK__tp_func_gb_hd_del -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe8f1cf7d gb_hd_cport_reserve -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe92aa864 __traceiter_gb_message_submit -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xea889139 greybus_register_driver -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf3d72f85 greybus_data_rcvd -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf937c9f1 gb_connection_disable -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xfff35da6 gb_operation_put +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xfe3972b5 gb_debugfs_get +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xfebdd5b3 gb_operation_cancel EXPORT_SYMBOL_GPL drivers/hid/hid 0x05495392 hid_debug -EXPORT_SYMBOL_GPL drivers/hid/hid 0x081a7938 hidinput_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x102e60d6 hidinput_find_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0x10715ce5 hid_ignore -EXPORT_SYMBOL_GPL drivers/hid/hid 0x13a4ea11 hid_hw_open -EXPORT_SYMBOL_GPL drivers/hid/hid 0x16917bee hidinput_calc_abs_res -EXPORT_SYMBOL_GPL drivers/hid/hid 0x186fded3 hid_hw_stop +EXPORT_SYMBOL_GPL drivers/hid/hid 0x069cd84e hid_unregister_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0x098f7782 hid_validate_values +EXPORT_SYMBOL_GPL drivers/hid/hid 0x09b6e359 hid_check_keys_pressed +EXPORT_SYMBOL_GPL drivers/hid/hid 0x130abae1 hid_dump_input +EXPORT_SYMBOL_GPL drivers/hid/hid 0x13877df9 hid_compare_device_paths EXPORT_SYMBOL_GPL drivers/hid/hid 0x19d52f1f hid_quirks_exit -EXPORT_SYMBOL_GPL drivers/hid/hid 0x220c1f71 hid_dump_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0x24d2ea4d hid_parse_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x2c30dcc8 hid_open_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x30bed740 hid_validate_values -EXPORT_SYMBOL_GPL drivers/hid/hid 0x31a4b9e2 hid_alloc_report_buf -EXPORT_SYMBOL_GPL drivers/hid/hid 0x3408f8ba hid_allocate_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0x3db8617f hidinput_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x54913d35 hid_match_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0x55f7cd75 hid_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x5aa49a4a hid_destroy_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0x671b1513 hidraw_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0x6cd69991 hid_lookup_quirk -EXPORT_SYMBOL_GPL drivers/hid/hid 0x6d9afa38 hidraw_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x763e735b hidinput_count_leds -EXPORT_SYMBOL_GPL drivers/hid/hid 0x8091ff35 hid_dump_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x83b40898 hid_field_extract -EXPORT_SYMBOL_GPL drivers/hid/hid 0x841e635e hid_compare_device_paths -EXPORT_SYMBOL_GPL drivers/hid/hid 0x847fed3d hid_register_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x8577a1fe hid_report_raw_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0x89f3c1fd __hid_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0x1b3333aa hidinput_calc_abs_res +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3a91870c hid_destroy_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3d365daf hid_debug_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x404a6f7e hid_output_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x42dcf1a3 hid_dump_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x460c7ee7 hidraw_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4dc7eb8c hid_dump_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4e4a4aac hid_ignore +EXPORT_SYMBOL_GPL drivers/hid/hid 0x6bb8fb82 hid_match_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x769f6a0e hid_dump_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7bd0b5e5 hid_hw_stop +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7d95414a __hid_register_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0x89ee4c0e hid_parse_report EXPORT_SYMBOL_GPL drivers/hid/hid 0x8b13a8b8 hid_snto32 -EXPORT_SYMBOL_GPL drivers/hid/hid 0x8c4e60bc hid_set_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0x8f6059a4 hidinput_get_led_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0x934a1392 hid_hw_start -EXPORT_SYMBOL_GPL drivers/hid/hid 0x98ff6077 hid_add_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0x9c1c4b68 hid_setup_resolution_multiplier -EXPORT_SYMBOL_GPL drivers/hid/hid 0x9ebefcf4 hid_dump_input -EXPORT_SYMBOL_GPL drivers/hid/hid 0x9f62863c hidraw_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x9fccac50 __hid_register_driver -EXPORT_SYMBOL_GPL drivers/hid/hid 0xa5f0332c hid_resolv_usage -EXPORT_SYMBOL_GPL drivers/hid/hid 0xa6ad8449 hid_dump_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0xa93372e2 hid_unregister_driver -EXPORT_SYMBOL_GPL drivers/hid/hid 0xb3f12303 hid_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0xb9bdf3cb hid_hw_close -EXPORT_SYMBOL_GPL drivers/hid/hid 0xbc543560 hid_input_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0xc730718e hidinput_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0xd81fffac hid_debug_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0xf6f3ccba hid_check_keys_pressed +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8d43bb12 hid_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x923123fd hid_hw_close +EXPORT_SYMBOL_GPL drivers/hid/hid 0x95a352e1 hid_allocate_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x964186fb hid_set_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x96cbeb36 hid_open_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x99eb741b hidinput_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x9a8852fe hidraw_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa07d55ce hid_register_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xab5535af hid_hw_start +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb3b33cdd hidinput_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb7556f98 hidinput_get_led_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb92e3143 hid_alloc_report_buf +EXPORT_SYMBOL_GPL drivers/hid/hid 0xbb21750b hidinput_count_leds +EXPORT_SYMBOL_GPL drivers/hid/hid 0xbc7e511a hidinput_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc840923c hid_setup_resolution_multiplier +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd01d5632 hid_resolv_usage +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd4aba1b6 hid_add_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd6d8c4ec hid_field_extract +EXPORT_SYMBOL_GPL drivers/hid/hid 0xdc8376ab hid_input_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xe921efb1 hidinput_find_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xedb6c474 __hid_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0xeec1cd60 hid_report_raw_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xef7eba5b hidraw_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf4a66d31 hid_lookup_quirk +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf67d2037 hid_hw_open EXPORT_SYMBOL_GPL drivers/hid/hid 0xfa355613 hid_quirks_init -EXPORT_SYMBOL_GPL drivers/hid/hid 0xff2f8b4f hid_output_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xfe17ad16 hid_connect EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x2f622ea1 roccat_disconnect EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x3e4427c8 roccat_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0xadf5bbe9 roccat_connect -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x2795b274 roccat_common2_send -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x3ff35d49 roccat_common2_receive -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x46e2327f roccat_common2_sysfs_read -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xb81eb11c roccat_common2_send_with_status -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xc7fd335f roccat_common2_device_init_struct -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xec41e009 roccat_common2_sysfs_write -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x4e0b9acd sensor_hub_get_feature -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x54cf146f sensor_hub_remove_callback -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x57e9a4db sensor_hub_device_open -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x58d4edae sensor_hub_register_callback -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x8673f8c9 sensor_hub_input_attr_get_raw_value -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x9e247613 sensor_hub_device_close -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xaad9e58b sensor_hub_set_feature -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xee032a06 sensor_hub_input_get_attribute_info -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xfb5961ed hid_sensor_get_usage_index -EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x492227eb i2c_hid_core_remove -EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x6563da36 i2c_hid_core_probe -EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x68a8946e i2c_hid_ll_driver -EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0xc06bdcc8 i2c_hid_core_shutdown -EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0xf73c1daa i2c_hid_core_pm -EXPORT_SYMBOL_GPL drivers/hid/intel-ish-hid/intel-ishtp 0x97a0a115 ishtp_wait_resume -EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0x22df6485 surface_hid_device_add -EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0x47862cfa surface_hid_device_destroy -EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0xe93fc711 surface_hid_pm_ops -EXPORT_SYMBOL_GPL drivers/hid/uhid 0x5cd47f5c uhid_hid_driver -EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x392f48dd usb_hid_driver -EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0xa57fb6e5 hiddev_hid_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x0e99637d hsi_put_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x0f00b89a hsi_register_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x1f8a4f51 hsi_free_msg -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x25b3ec28 hsi_event +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0xecb680cb roccat_connect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x00ddebe0 roccat_common2_device_init_struct +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x432bc687 roccat_common2_sysfs_read +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xa2fc92c1 roccat_common2_send +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xbf24929c roccat_common2_send_with_status +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xf7d28f8b roccat_common2_sysfs_write +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xfeb38ced roccat_common2_receive +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x18b761aa sensor_hub_remove_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x2cc14bc8 sensor_hub_device_close +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x80a1190f sensor_hub_get_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x81b4b9e5 sensor_hub_input_attr_get_raw_value +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x904029b3 sensor_hub_input_get_attribute_info +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x9605aae6 sensor_hub_device_open +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xd4b15c59 hid_sensor_get_usage_index +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xdcb5b014 sensor_hub_register_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xf7261c0e sensor_hub_set_feature +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x1c480aa0 i2c_hid_core_remove +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x3acb65d2 i2c_hid_ll_driver +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x7fef803f i2c_hid_core_probe +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0xe1030947 i2c_hid_core_pm +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0xf4305263 i2c_hid_core_shutdown +EXPORT_SYMBOL_GPL drivers/hid/intel-ish-hid/intel-ishtp 0x09d62037 ishtp_wait_resume +EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0x3e7114d6 surface_hid_device_destroy +EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0x51951ab4 surface_hid_pm_ops +EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0xfea1969e surface_hid_device_add +EXPORT_SYMBOL_GPL drivers/hid/uhid 0xa7812f6f uhid_hid_driver +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x1987fa4e usb_hid_driver +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x485d9e6d hiddev_hid_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x27da690e hsi_port_unregister_clients +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x35c6f995 hsi_alloc_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x3db1dcc9 hsi_free_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x4a242955 hsi_event EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5210a5bf hsi_board_list -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x60559345 hsi_remove_client -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x727950f6 hsi_get_channel_id_by_name -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x7b76ccfc hsi_async -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x93fea5e9 hsi_port_unregister_clients -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x956628a4 hsi_unregister_port_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x9ae46fee hsi_register_client_driver -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xbc8f0a30 hsi_release_port -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xcab00485 hsi_alloc_msg -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xd10b2c56 hsi_alloc_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xd19e735a hsi_unregister_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xdef95fb4 hsi_new_client -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xe4666554 hsi_claim_port -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xf8fdcb72 hsi_register_port_event -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x048e10a2 vmbus_set_chn_rescind_callback -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x0768098c vmbus_hvsock_device_unregister -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x0a9a3a65 vmbus_connection -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x1231a443 vmbus_open +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x58e50515 hsi_claim_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x61c300c8 hsi_async +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x6e36fb61 hsi_register_client_driver +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x748199c5 hsi_release_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x787cb4fc hsi_put_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x7a48bca7 hsi_alloc_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xa194f78a hsi_register_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xa228e28d hsi_register_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xbda7c4aa hsi_unregister_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xc86ccfce hsi_get_channel_id_by_name +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xcba4caec hsi_new_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xdd9c2acd hsi_unregister_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xf5995e5c hsi_remove_client +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x0b4a2638 vmbus_set_chn_rescind_callback +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x0b6449a9 vmbus_free_ring +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x2053f83b __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 0x337d7ce1 vmbus_free_ring -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x383e74d4 vmbus_are_subchannels_present -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x3893cbb5 vmbus_driver_unregister +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x35d2385b vmbus_next_request_id EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x46a417ca vmbus_proto_version -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x48fe92dc vmbus_set_event +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x46c87c61 vmbus_connection EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x4b2210b8 vmbus_send_tl_connect_request -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x6251270d vmbus_set_sc_create_callback +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x595d13ed vmbus_alloc_ring +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x602ad20d vmbus_teardown_gpadl EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x674e657e hv_ringbuffer_get_debuginfo -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x74a682dd __vmbus_driver_register -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x7bfbb93f vmbus_connect_ring -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x804e9b69 vmbus_setevent -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x8081bdd3 vmbus_establish_gpadl -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x82def9cc vmbus_sendpacket_mpb_desc -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x872a79a3 vmbus_teardown_gpadl -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x87413d41 hv_pkt_iter_close -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x8b824883 hv_pkt_iter_first -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x8f22d86e hv_pkt_iter_first_raw -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x9f84779a __hv_pkt_iter_next -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xa1fadf5b vmbus_alloc_ring -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xaf515a36 vmbus_close -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xaf64b144 vmbus_next_request_id -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xc1853733 vmbus_request_addr -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xc3f1dcf8 vmbus_send_modifychannel -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xc97bd28f vmbus_allocate_mmio -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xd693936b vmbus_sendpacket_pagebuffer -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xf3af9c64 vmbus_disconnect_ring -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xffc68535 vmbus_recvpacket_raw -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0xba58c301 adt7x10_probe -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0xc1fcc7ac adt7x10_dev_pm_ops -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0xe841d7de adt7x10_remove +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x69debd6a vmbus_hvsock_device_unregister +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x6f0d0e29 vmbus_open +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x7366d7c6 vmbus_sendpacket_mpb_desc +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x7641f8cd vmbus_driver_unregister +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x832d3e38 vmbus_send_modifychannel +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x834ce163 vmbus_close +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x93e15371 vmbus_sendpacket_pagebuffer +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x9889cab8 vmbus_allocate_mmio +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x9ca5f8b7 vmbus_setevent +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x9e17922c vmbus_establish_gpadl +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xa09b2886 vmbus_set_event +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xa1c062e6 vmbus_request_addr +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xb63ef2fd vmbus_set_sc_create_callback +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xbc360957 vmbus_connect_ring +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xbcc6c34c __hv_pkt_iter_next +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xd143d639 vmbus_are_subchannels_present +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xe74a86c4 vmbus_recvpacket_raw +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xec4416d6 hv_pkt_iter_close +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xedf44ea8 hv_pkt_iter_first_raw +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xf330fd29 hv_pkt_iter_first +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xfd8203c7 vmbus_disconnect_ring +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x68e31a0a adt7x10_dev_pm_ops +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x84112971 adt7x10_remove +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0xe78d48d1 adt7x10_probe EXPORT_SYMBOL_GPL drivers/hwmon/ltc2947-core 0x5cbb5274 ltc2947_core_probe -EXPORT_SYMBOL_GPL drivers/hwmon/ltc2947-core 0x846051bb ltc2947_pm_ops +EXPORT_SYMBOL_GPL drivers/hwmon/ltc2947-core 0xac352918 ltc2947_pm_ops EXPORT_SYMBOL_GPL drivers/hwmon/ltc2947-core 0xbc54f93e ltc2947_of_match -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x0a9f26bc intel_th_trace_enable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x117c45c8 intel_th_set_output -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x339da58e intel_th_driver_unregister -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x6bccc972 intel_th_free -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x7d86bd29 intel_th_trace_switch -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x82a21bad intel_th_alloc -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x9da27187 intel_th_output_enable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xc148180f intel_th_trace_disable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xc8bed903 intel_th_driver_register -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x420423f7 intel_th_msu_buffer_unregister -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x6049b053 intel_th_msc_window_unlock -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x71a9cf4d intel_th_msu_buffer_register -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x1a2cfc23 stm_source_write -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x29643393 stm_data_write -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x3832834d to_pdrv_policy_node -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x46c1c937 stm_unregister_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x7e9dcb3c stm_unregister_protocol -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xdc4b6eaf stm_register_protocol -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xe40f0873 stm_source_register_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xe6848fc6 stm_source_unregister_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xf0579688 stm_register_device -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0x00ee3c32 amd_mp2_rw -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0x36d10c4d amd_mp2_rw_timeout -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0x5c3a0a71 amd_mp2_find_device -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0xa0f7afd3 amd_mp2_unregister_cb -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0xa3476c3e amd_mp2_process_event -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0xbfaa7b58 amd_mp2_register_cb -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0xc3e751e0 amd_mp2_bus_enable_set -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-nforce2 0x1d2533df nforce2_smbus -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x4250982d i2c_root_adapter -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x5fb7e611 i2c_mux_alloc -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x845e776d i2c_mux_del_adapters -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x86889c26 i2c_mux_add_adapter -EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x18ec7d9a i2c_handle_smbus_alert -EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x2eb3658b i2c_register_spd -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x0423eb2a i3c_master_get_free_addr -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x0bcb3099 i3c_driver_register_with_owner -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x0f9d251a i3c_master_set_info -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x14f90cfc i3c_generic_ibi_recycle_slot -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x1a5c88f6 i3c_master_entdaa_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x1ea80e47 i3cdev_to_dev -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x22228bf6 i3c_master_queue_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x3434c0b4 i3c_generic_ibi_get_free_slot -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x4dd5f79b i3c_master_defslvs_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x5bc5e06b i3c_master_disec_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x5cfdc27a i3c_device_do_priv_xfers -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x72eb58ef i3c_master_add_i3c_dev_locked +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x07695290 intel_th_driver_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x33ad6445 intel_th_free +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x38fadfbd intel_th_trace_disable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x454ed06a intel_th_driver_register +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x56494214 intel_th_set_output +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x8d8e2613 intel_th_trace_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xccf4fdb8 intel_th_alloc +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xdcc7f4de intel_th_trace_switch +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xe0135c68 intel_th_output_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x1660d887 intel_th_msc_window_unlock +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x75074f20 intel_th_msu_buffer_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x9c309b05 intel_th_msu_buffer_register +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x2fac403f stm_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x3a55b068 stm_source_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x4718d16e stm_data_write +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x6bb6277c stm_unregister_protocol +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x6e41c093 stm_register_protocol +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xdd4a442e stm_source_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xeabfd6cf stm_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xf392725a to_pdrv_policy_node +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xfff18e1e stm_source_write +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0x1b05ef22 amd_mp2_process_event +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0x5652e6cf amd_mp2_rw +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0x57910a97 amd_mp2_find_device +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0x8125a700 amd_mp2_rw_timeout +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0x832960b8 amd_mp2_bus_enable_set +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0x8b01d21b amd_mp2_register_cb +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0xa1ae5521 amd_mp2_unregister_cb +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-nforce2 0x75a73b9c nforce2_smbus +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x601d4a60 i2c_mux_del_adapters +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x8b4739f5 i2c_mux_add_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xdec06893 i2c_mux_alloc +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xec942451 i2c_root_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x88dc3ac1 i2c_handle_smbus_alert +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xa873d0e4 i2c_register_spd +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x03f9aec2 i3c_master_entdaa_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x06f35af5 i3c_master_add_i3c_dev_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x084a039d i3c_device_request_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x0ac830ce i3c_master_register +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x0c973a51 i3c_master_do_daa +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x195b660e i3c_device_free_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x264ca8ce i3c_master_queue_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x27c4943b i3c_master_unregister +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x354688cd i3c_device_match_id +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x52358087 i3c_device_do_priv_xfers +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x53b33e0f i3c_driver_register_with_owner +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x5d696d1b i3c_master_disec_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x66156572 i3c_generic_ibi_alloc_pool +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x704591be i3c_master_set_info EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x76fe3e05 i3c_generic_ibi_free_pool -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x7ec6a037 i3c_device_free_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x81edbf87 dev_to_i3cdev -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x99da4367 i3c_master_enec_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xa1cebe0e i3c_master_register -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xa4ee174f i3c_master_do_daa -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xbbffd63c i3c_generic_ibi_alloc_pool -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xbcb7c66e i3c_device_match_id -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xbd6c6b93 i3c_device_get_info -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xc5918362 i3c_device_enable_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xdaaddfe8 i3c_driver_unregister -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xe254f92a i3c_master_unregister -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xe8c3612c i3c_device_request_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xeb8ed8e6 i3c_device_disable_ibi -EXPORT_SYMBOL_GPL drivers/iio/accel/adxl372 0x2d02eca9 adxl372_probe -EXPORT_SYMBOL_GPL drivers/iio/accel/adxl372 0x419147e4 adxl372_readable_noinc_reg -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x1b858856 bmc150_accel_core_remove -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xc838805e bmc150_regmap_conf -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xd4066fab bmc150_accel_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xf380ff79 bmc150_accel_core_probe -EXPORT_SYMBOL_GPL drivers/iio/accel/bmi088-accel-core 0x2344fa6a bmi088_accel_core_remove -EXPORT_SYMBOL_GPL drivers/iio/accel/bmi088-accel-core 0x2f184905 bmi088_accel_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/accel/bmi088-accel-core 0x9f6da40a bmi088_regmap_conf -EXPORT_SYMBOL_GPL drivers/iio/accel/bmi088-accel-core 0xabd208f5 bmi088_accel_core_probe -EXPORT_SYMBOL_GPL drivers/iio/accel/fxls8962af-core 0x03665233 fxls8962af_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/accel/fxls8962af-core 0x25f2c44b fxls8962af_core_probe -EXPORT_SYMBOL_GPL drivers/iio/accel/fxls8962af-core 0x33a339a0 fxls8962af_i2c_regmap_conf -EXPORT_SYMBOL_GPL drivers/iio/accel/fxls8962af-core 0x917dad65 fxls8962af_spi_regmap_conf -EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0x8bfd7a7a mma7455_core_remove -EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0xa80d9ded mma7455_core_regmap -EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0xfaf00169 mma7455_core_probe -EXPORT_SYMBOL_GPL drivers/iio/adc/ad7091r-base 0x0de19f24 ad7091r_regmap_config -EXPORT_SYMBOL_GPL drivers/iio/adc/ad7091r-base 0x8863e875 ad7091r_probe -EXPORT_SYMBOL_GPL drivers/iio/adc/ad7606 0xb3c15aa4 ad7606_probe -EXPORT_SYMBOL_GPL drivers/iio/adc/ad7606 0xd43f4eb6 ad7606_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x0ed5ef6c ad_sd_calibrate -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x127003dc ad_sigma_delta_single_conversion -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x1ba5474e ad_sd_reset -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x1c461891 ad_sd_validate_trigger -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x46f29a16 ad_sd_calibrate_all -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x78daf1c4 devm_ad_sd_setup_buffer_and_trigger -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x95455d02 ad_sd_write_reg -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xb8c6ce51 ad_sd_init -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xf253021b ad_sd_set_comm -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xfbba0d16 ad_sd_read_reg +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x85223512 i3c_master_enec_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x85b76c5e i3c_generic_ibi_get_free_slot +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x93b22df0 dev_to_i3cdev +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x985b970f i3c_device_disable_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xa40272b7 i3c_master_defslvs_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xbfe05aac i3c_device_enable_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xd29c9e5f i3c_master_get_free_addr +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xdc86262a i3c_driver_unregister +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xde55526e i3c_device_get_info +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xe03a548b i3cdev_to_dev +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xe1d6934a i3c_generic_ibi_recycle_slot +EXPORT_SYMBOL_GPL drivers/iio/accel/adxl372 0xca1933ef adxl372_readable_noinc_reg +EXPORT_SYMBOL_GPL drivers/iio/accel/adxl372 0xcd56e61e adxl372_probe +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x3983cf7f bmc150_accel_core_remove +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xcd4b03b0 bmc150_accel_core_probe +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xd34a697f bmc150_regmap_conf +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xea80eb35 bmc150_accel_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/accel/bmi088-accel-core 0x464d2bcf bmi088_regmap_conf +EXPORT_SYMBOL_GPL drivers/iio/accel/bmi088-accel-core 0x570228db bmi088_accel_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/accel/bmi088-accel-core 0xba0c7f67 bmi088_accel_core_remove +EXPORT_SYMBOL_GPL drivers/iio/accel/bmi088-accel-core 0xd9a833a0 bmi088_accel_core_probe +EXPORT_SYMBOL_GPL drivers/iio/accel/fxls8962af-core 0x48f78674 fxls8962af_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/accel/fxls8962af-core 0x63432630 fxls8962af_spi_regmap_conf +EXPORT_SYMBOL_GPL drivers/iio/accel/fxls8962af-core 0xc19db2f5 fxls8962af_i2c_regmap_conf +EXPORT_SYMBOL_GPL drivers/iio/accel/fxls8962af-core 0xf269fe6c fxls8962af_core_probe +EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0x43da8b5d mma7455_core_regmap +EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0x566aacfe mma7455_core_remove +EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0xbb90a8b2 mma7455_core_probe +EXPORT_SYMBOL_GPL drivers/iio/adc/ad7091r-base 0x60a5804a ad7091r_probe +EXPORT_SYMBOL_GPL drivers/iio/adc/ad7091r-base 0xa9798d1f ad7091r_regmap_config +EXPORT_SYMBOL_GPL drivers/iio/adc/ad7606 0x5df8f9f5 ad7606_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/adc/ad7606 0xc75ac74a ad7606_probe +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x0b078d03 ad_sd_set_comm +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x3294c2e2 ad_sd_init +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x3b94ea38 ad_sd_read_reg +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x6e118b9a ad_sd_write_reg +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x77350817 ad_sd_validate_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x8f1d664d ad_sigma_delta_single_conversion +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xaa1a3cdd devm_ad_sd_setup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xbfa52c89 ad_sd_calibrate +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xd746aef7 ad_sd_reset +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xf108f03b ad_sd_calibrate_all 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 0x2bc14a34 iio_channel_get_all_cb +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x2e9249be 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 0x873dca52 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 0xd1360c3e iio_channel_cb_get_iio_dev -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0xdafc77be iio_channel_cb_get_channels -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x27ba240d iio_dma_buffer_block_done -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x347cb8db iio_dma_buffer_data_available -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x5011588c iio_dma_buffer_set_bytes_per_datum -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x51bf3dbe iio_dma_buffer_request_update -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x6e13ac5d iio_dma_buffer_block_list_abort -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x771f09c0 iio_dma_buffer_release -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x7846b62b iio_dma_buffer_read -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x9f823ae4 iio_dma_buffer_exit -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xbad20aab iio_dma_buffer_enable -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xe39de737 iio_dma_buffer_disable -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xef2a9e19 iio_dma_buffer_init -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xf36da169 iio_dma_buffer_set_length -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dmaengine 0x8a8b5db7 devm_iio_dmaengine_buffer_setup -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x01ea053e iio_hw_consumer_alloc +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0xd309ab6f iio_channel_cb_get_iio_dev +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x038281a5 iio_dma_buffer_request_update +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x05ba60fb iio_dma_buffer_exit +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x2b41c4f9 iio_dma_buffer_disable +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x363cf2b6 iio_dma_buffer_data_available +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x4180744f iio_dma_buffer_init +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x52383458 iio_dma_buffer_block_done +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x56e30540 iio_dma_buffer_set_length +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x65915334 iio_dma_buffer_read +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x86fb8201 iio_dma_buffer_release +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x8d7e8f7f iio_dma_buffer_block_list_abort +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xc5555f5d iio_dma_buffer_enable +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xfa126693 iio_dma_buffer_set_bytes_per_datum +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dmaengine 0x8fca0e27 devm_iio_dmaengine_buffer_setup +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x16b174f0 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 0x8e2883b7 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 0x037c669b devm_iio_triggered_buffer_setup_ext -EXPORT_SYMBOL_GPL drivers/iio/buffer/kfifo_buf 0x805e62d5 devm_iio_kfifo_buffer_setup_ext -EXPORT_SYMBOL_GPL drivers/iio/chemical/bme680_core 0x8db79cf0 bme680_core_probe -EXPORT_SYMBOL_GPL drivers/iio/chemical/sps30 0xae475b98 sps30_probe -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x19bc0b59 cros_ec_sensors_read_cmd -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x1ea157df cros_ec_motion_send_host_cmd -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x2447ef25 cros_ec_sensors_core_init -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x6e62db79 cros_ec_sensors_read_lpc -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x7590ad2d cros_ec_sensors_push_data +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0xe53931c2 devm_iio_hw_consumer_alloc +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-triggered-buffer 0x25ea6609 devm_iio_triggered_buffer_setup_ext +EXPORT_SYMBOL_GPL drivers/iio/buffer/kfifo_buf 0x9ed393d4 devm_iio_kfifo_buffer_setup_ext +EXPORT_SYMBOL_GPL drivers/iio/chemical/bme680_core 0xd6286ecb bme680_core_probe +EXPORT_SYMBOL_GPL drivers/iio/chemical/sps30 0xc12cd5a6 sps30_probe +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x5c623dbb cros_ec_sensors_core_read +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x719ec6ef cros_ec_sensors_core_init +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x7e66ecb4 cros_ec_sensors_core_write +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x83f8a471 cros_ec_sensors_core_read_avail +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x926bfa1c cros_ec_motion_send_host_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 0x9d05abcd cros_ec_sensors_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xc7f0878d cros_ec_sensors_core_read_avail -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xcc427d42 cros_ec_sensors_core_read -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xd00c0363 cros_ec_sensors_ext_info -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xf34fa5c6 cros_ec_sensors_core_write -EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0xcb64a824 ad5592r_remove -EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0xe919e0e2 ad5592r_probe -EXPORT_SYMBOL_GPL drivers/iio/dac/ad5686 0x6ed234bc ad5686_remove -EXPORT_SYMBOL_GPL drivers/iio/dac/ad5686 0xbe8b7c8e ad5686_probe -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x8d4bc5a1 bmg160_core_remove -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x99b4a491 bmg160_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xffb39f58 bmg160_core_probe -EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0x2dfd7db9 fxas21002c_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0x42c83dc9 fxas21002c_core_remove -EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0xa78e33f3 fxas21002c_core_probe -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x2955302f __adis_check_status -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x32ff3a16 adis_update_scan_mode -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x59f7ef78 devm_adis_probe_trigger -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x65afadc2 adis_init -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x686b1a22 __adis_initial_startup -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x6d989dab __adis_read_reg -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x8c52f579 __adis_write_reg -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x96a8d071 adis_single_conversion -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x9ac6a72a __adis_update_bits_base -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xc3436373 devm_adis_setup_buffer_and_trigger -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xcb76c4c7 __adis_reset -EXPORT_SYMBOL_GPL drivers/iio/imu/bmi160/bmi160_core 0x506f7e14 bmi160_core_probe -EXPORT_SYMBOL_GPL drivers/iio/imu/fxos8700_core 0xcab1b89f fxos8700_core_probe -EXPORT_SYMBOL_GPL drivers/iio/imu/inv_icm42600/inv-icm42600 0x957fff6a inv_icm42600_core_probe -EXPORT_SYMBOL_GPL drivers/iio/imu/inv_icm42600/inv-icm42600 0xc929bf25 inv_icm42600_regmap_config -EXPORT_SYMBOL_GPL drivers/iio/imu/inv_icm42600/inv-icm42600 0xf8be1181 inv_icm42600_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0x54d55cef inv_mpu_pmops -EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0x794e45be inv_mpu_core_probe -EXPORT_SYMBOL_GPL drivers/iio/imu/st_lsm9ds0/st_lsm9ds0 0x0ab32011 st_lsm9ds0_probe -EXPORT_SYMBOL_GPL drivers/iio/imu/st_lsm9ds0/st_lsm9ds0 0xebf255a3 st_lsm9ds0_remove -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x00021cfb __devm_iio_trigger_register -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x036d7435 devm_iio_device_alloc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x050bca2f iio_read_channel_ext_info -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x059d3fa4 iio_get_debugfs_dentry -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0b29e8a9 iio_write_channel_attribute -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x17abe79a iio_device_release_direct_mode -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1b829cf3 iio_update_buffers -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1be404ca iio_read_channel_processed -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x24e3a58d iio_device_id -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2573c7ca iio_channel_release -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x26954795 iio_read_channel_scale -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x26f1baaa iio_enum_available_read +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x9b961013 cros_ec_sensors_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xa5dacba9 cros_ec_sensors_ext_info +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xe2c9f889 cros_ec_sensors_push_data +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xeaea071c cros_ec_sensors_read_cmd +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xf7447bb2 cros_ec_sensors_read_lpc +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0x55e71b57 ad5592r_probe +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0x931e2f50 ad5592r_remove +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5686 0x1a843ebe ad5686_probe +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5686 0xf25096bf ad5686_remove +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x0685aefa bmg160_core_remove +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x5ea4282a bmg160_core_probe +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xe0d92110 bmg160_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0x666ca9fe fxas21002c_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0x7cebd663 fxas21002c_core_probe +EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0xd125dfbc fxas21002c_core_remove +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x3198fb56 __adis_update_bits_base +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x508e8e70 __adis_initial_startup +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x57cd14d2 devm_adis_setup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x60bee662 __adis_reset +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x748ec6e2 adis_update_scan_mode +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x794188de __adis_check_status +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x854243e6 __adis_read_reg +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xc9f748ac devm_adis_probe_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xf0d27121 adis_init +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xf23529b4 adis_single_conversion +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xf7b28208 __adis_write_reg +EXPORT_SYMBOL_GPL drivers/iio/imu/bmi160/bmi160_core 0xfc8e676d bmi160_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/fxos8700_core 0x7ba4879c fxos8700_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_icm42600/inv-icm42600 0x2b53a181 inv_icm42600_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_icm42600/inv-icm42600 0xd6eb4bf7 inv_icm42600_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_icm42600/inv-icm42600 0xdca33903 inv_icm42600_regmap_config +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0x2db8d96e inv_mpu_pmops +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0x5dd08bb2 inv_mpu_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/st_lsm9ds0/st_lsm9ds0 0x59b1f8f3 st_lsm9ds0_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/st_lsm9ds0/st_lsm9ds0 0x6c714587 st_lsm9ds0_remove +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0127d0f8 iio_map_array_unregister +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0ee587fe iio_read_channel_offset +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x11e952c7 iio_read_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2260e888 devm_of_iio_channel_get_by_name EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x26f6b499 iio_str_to_fixpoint -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2842bdfa iio_write_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x284de554 iio_write_channel_ext_info -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4168f2c6 iio_channel_get -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4296bcc9 devm_of_iio_channel_get_by_name -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4dbeaa12 iio_read_channel_offset +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2bb15197 iio_channel_release_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2c9c5ac9 devm_iio_trigger_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2de9bc52 iio_push_to_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x33eeaeba iio_enum_available_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x364d83a8 iio_read_channel_ext_info +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x36b79b71 iio_channel_release +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x37fb618f iio_enum_write +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x44df25f2 iio_read_max_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x46cf1b6a iio_write_channel_raw EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4dce7dd4 iio_format_value -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x52d1b1d6 iio_device_attach_buffer -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5307f056 iio_read_max_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x591ccf6e iio_dealloc_pollfunc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6733733c iio_get_channel_ext_info_count -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6761c06a iio_read_avail_channel_attribute -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x681a6951 iio_show_mount_matrix -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7132a53a iio_alloc_pollfunc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7ed0eab7 iio_channel_release_all -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8954975a iio_read_avail_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x89636557 iio_read_channel_processed_scale -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x946c2960 iio_device_claim_direct_mode -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x97d9927c iio_convert_raw_to_processed -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa0ada0d5 iio_push_to_buffers -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa534a40c iio_read_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa9e00dd1 iio_validate_scan_mask_onehot -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xad02df52 iio_buffer_get -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xadf3d89d iio_channel_get_all -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb4b01df7 iio_get_channel_type -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb84fc810 devm_iio_trigger_alloc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xbd9c2e04 __devm_iio_device_register -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xbe600af2 devm_iio_channel_get -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xbf1d54e7 iio_buffer_put -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd6c9e03e iio_map_array_unregister -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd7c6dae9 iio_enum_read -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd8731aa4 iio_read_channel_attribute -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd93b5624 iio_map_array_register -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xdcb34ad3 devm_iio_channel_get_all -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf96e5645 iio_read_channel_average_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xfd05dc62 iio_enum_write +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5c6e299d iio_write_channel_ext_info +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6322db50 iio_enum_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x65ac0864 iio_read_avail_channel_attribute +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x687eed3f iio_buffer_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6b58bd0f iio_read_channel_average_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6b7de0d1 iio_channel_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x75526086 iio_read_channel_processed_scale +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x758b4f24 iio_map_array_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x795a1de1 iio_device_attach_buffer +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x795ba496 iio_validate_scan_mask_onehot +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7bcaec71 __devm_iio_device_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7ecc1678 iio_alloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x80dcdb7e iio_read_channel_attribute +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x884f9c42 iio_buffer_put +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x972b2070 iio_device_release_direct_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9e609be0 iio_write_channel_attribute +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9e9434dd iio_convert_raw_to_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb3b835c9 iio_read_channel_scale +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc2c3a263 iio_read_avail_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc7701887 iio_channel_get_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd360af68 iio_read_channel_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd39c44cc iio_update_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd6ff68ee devm_iio_device_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd81e173d iio_device_claim_direct_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd9ac0d0e iio_get_channel_ext_info_count +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe33673c7 devm_iio_channel_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe4edf85a __devm_iio_trigger_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe53e1ff5 iio_dealloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe5f277d8 iio_show_mount_matrix +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf71cdfe8 iio_get_debugfs_dentry +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xfa20a04c iio_get_channel_type +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xfccf0d02 devm_iio_channel_get_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xfddf6d90 iio_device_id EXPORT_SYMBOL_GPL drivers/iio/magnetometer/rm3100-core 0x0a1424e0 rm3100_volatile_table -EXPORT_SYMBOL_GPL drivers/iio/magnetometer/rm3100-core 0x7e7a5e37 rm3100_common_probe +EXPORT_SYMBOL_GPL drivers/iio/magnetometer/rm3100-core 0x37129277 rm3100_common_probe EXPORT_SYMBOL_GPL drivers/iio/magnetometer/rm3100-core 0xaa911f08 rm3100_readable_table EXPORT_SYMBOL_GPL drivers/iio/magnetometer/rm3100-core 0xcc7209be rm3100_writable_table -EXPORT_SYMBOL_GPL drivers/iio/pressure/mpl115 0x01326602 mpl115_probe -EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0x1b04d897 zpa2326_isreg_precious -EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0x2cefa932 zpa2326_remove -EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0xb1f42af0 zpa2326_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0xd41bc7e4 zpa2326_probe -EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0xdc7b5379 zpa2326_isreg_writeable -EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0xf20d20ef zpa2326_isreg_readable +EXPORT_SYMBOL_GPL drivers/iio/pressure/mpl115 0x98e2371e mpl115_probe +EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0x5ea8fd6d zpa2326_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0x8f829d4e zpa2326_isreg_writeable +EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0xb6c759ab zpa2326_isreg_precious +EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0xc11f5615 zpa2326_remove +EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0xe6d2e5e4 zpa2326_isreg_readable +EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0xef83b765 zpa2326_probe EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x07346106 rtrs_start_hb -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x1c845084 rtrs_iu_post_send -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x29536c27 rtrs_iu_free -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x2a6a60a0 rtrs_iu_post_recv -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x4caa1955 rtrs_send_hb_ack -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x4dce03de rtrs_iu_alloc -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x6976c93d rtrs_cq_qp_destroy -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x88ac520e rtrs_init_hb -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xa6071f29 rtrs_cq_qp_create -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xb475c6be rtrs_iu_post_rdma_write_imm -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xb6813256 rtrs_post_recv_empty -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xfa80681b rtrs_stop_hb -EXPORT_SYMBOL_GPL drivers/input/ff-memless 0x93faded5 input_ff_create_memless -EXPORT_SYMBOL_GPL drivers/input/matrix-keymap 0x2bf4a795 matrix_keypad_parse_properties +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x031aa062 rtrs_cq_qp_create +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x13f318d6 rtrs_send_hb_ack +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x28524292 rtrs_iu_post_rdma_write_imm +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x39510ca7 rtrs_stop_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x50718c11 rtrs_start_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x5a12ed78 rtrs_iu_post_recv +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x68ccfdd2 rtrs_iu_alloc +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x878d8d25 rtrs_iu_free +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x99ee60d8 rtrs_iu_post_send +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xd91d601a rtrs_init_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xe5e3de53 rtrs_cq_qp_destroy +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xf30efe74 rtrs_post_recv_empty +EXPORT_SYMBOL_GPL drivers/input/ff-memless 0x122e1dbf input_ff_create_memless +EXPORT_SYMBOL_GPL drivers/input/matrix-keymap 0x9bd83ca6 matrix_keypad_parse_properties EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x49a4fcbd adxl34x_remove EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x66535a18 adxl34x_suspend -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xa236a1a5 adxl34x_probe +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x7972ea8f adxl34x_probe EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xe4586827 adxl34x_resume -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x23868de1 rmi_2d_sensor_of_probe -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x36bb24ef rmi_2d_sensor_abs_process -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x41403666 rmi_2d_sensor_abs_report -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x47e428e7 rmi_set_attn_data -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x4f512dd0 rmi_driver_resume -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x6d78b2de rmi_2d_sensor_rel_report -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x7338c179 rmi_of_property_read_u32 -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x76d29c09 rmi_dbg -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x7a2be024 rmi_register_transport_device -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x84d3308d rmi_driver_suspend -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xb307c9d8 rmi_2d_sensor_configure_input -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xdc891f14 __rmi_register_function_handler -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xf1eafa4a rmi_unregister_function_handler -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x2a2fc21d cyttsp4_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x70a38691 cyttsp4_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xb3ab8cc8 cyttsp4_remove -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x67c6cbd6 cyttsp_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0xede1b66e cyttsp_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0xc5426fc5 cyttsp_i2c_write_block_data -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0xcb2d9c75 cyttsp_i2c_read_block_data -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x13358bbf tsc200x_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x77dd00f7 tsc200x_regmap_config -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xb46fd759 tsc200x_remove -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xc94cab4f tsc200x_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x10e0435c wm97xx_register_mach_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x183c3fb9 wm97xx_get_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x459322d2 wm9713_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x78fcf9c8 wm97xx_set_suspend_mode -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x8939224c wm9712_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x94873f16 wm9705_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xa48ced55 wm97xx_set_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xb7b75461 wm97xx_reg_write -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xc6e8b1e3 wm97xx_read_aux_adc -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xc813bb3d wm97xx_reg_read -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xd924abe2 wm97xx_config_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xfdef6d45 wm97xx_unregister_mach_ops -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x0cce67d5 ipack_device_del -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x36a2b05d ipack_device_init -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x3a36c85a ipack_get_device -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x42f7b66b ipack_bus_register -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x4d0d68a5 ipack_device_add -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x94c13c24 ipack_driver_unregister -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xd73c7d46 ipack_driver_register -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xe66f283b ipack_bus_unregister -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xea1b9b61 ipack_put_device -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x4ac92ff2 led_classdev_flash_register_ext -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x4c429cb1 led_set_flash_brightness -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x4dd94809 led_get_flash_fault -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x6399b2e8 devm_led_classdev_flash_register_ext -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xa78f971e led_classdev_flash_unregister -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xb4c43f90 led_set_flash_timeout -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xb845b71c devm_led_classdev_flash_unregister -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xedb751fe led_update_flash_brightness -EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x29318975 led_mc_calc_color_components -EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x52b69953 led_classdev_multicolor_unregister -EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x59a1a842 devm_led_classdev_multicolor_unregister -EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x60e70a4d devm_led_classdev_multicolor_register_ext -EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0xbb6ed8dd led_classdev_multicolor_register_ext +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x06636db5 rmi_dbg +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x284aa53d rmi_of_property_read_u32 +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x3b083a37 rmi_set_attn_data +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x472f72f6 rmi_driver_resume +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x6013774a rmi_unregister_function_handler +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x6f878a0e rmi_2d_sensor_abs_report +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x74224a08 rmi_2d_sensor_configure_input +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x801a66bb __rmi_register_function_handler +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x83513704 rmi_2d_sensor_of_probe +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xb0ff16c3 rmi_2d_sensor_rel_report +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xd00f6131 rmi_driver_suspend +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xe78f29ed rmi_register_transport_device +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xf51b7fd6 rmi_2d_sensor_abs_process +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x1ddb06fd cyttsp4_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x6dbd3ea0 cyttsp4_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x82ec7701 cyttsp4_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x2779853f cyttsp_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x918dea2c cyttsp_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x0c6d8bad cyttsp_i2c_read_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x0fb6c624 cyttsp_i2c_write_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xab502745 tsc200x_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xad082eb2 tsc200x_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xcb946313 tsc200x_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xeae57fa1 tsc200x_regmap_config +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x07ba9516 wm97xx_reg_write +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x0f37efb3 wm9705_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x1289f2e9 wm9712_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x70b1b012 wm97xx_set_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xb8713cdb wm97xx_read_aux_adc +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xc8681e43 wm97xx_config_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xcce57bf4 wm97xx_register_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xd64ab07a wm97xx_reg_read +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xd98d6d2a wm97xx_set_suspend_mode +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xde23f277 wm9713_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xf06d2e3f wm97xx_get_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xfb7be47a wm97xx_unregister_mach_ops +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x0ed2b171 ipack_get_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x2046b1bb ipack_driver_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x31a968ac ipack_put_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x35c234b0 ipack_device_del +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x389f8101 ipack_bus_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x42543e3b ipack_device_init +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x46c46363 ipack_driver_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x80c35fc3 ipack_bus_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xa5e1fb1d ipack_device_add +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x20dc3a82 devm_led_classdev_flash_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x2c2d657f led_set_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x385a9e85 devm_led_classdev_flash_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x507e8fe6 led_update_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x9baeaeb3 led_get_flash_fault +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xa71b4f6d led_set_flash_timeout +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xa7a3d3e0 led_classdev_flash_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xf1979f46 led_classdev_flash_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x388609e6 led_classdev_multicolor_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x9eabac8a led_mc_calc_color_components +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0xc51b2e85 devm_led_classdev_multicolor_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0xcb97e235 led_classdev_multicolor_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0xebe05307 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 0x00fd4586 __SCK__tp_func_bcache_bypass_sequential -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x01e7fc2c __tracepoint_bcache_btree_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x03b2ff8c __traceiter_bcache_btree_node_split -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x03bb7857 __SCK__tp_func_bcache_request_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0499d3aa __traceiter_bcache_read -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x09e60419 __traceiter_bcache_read_retry -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0d811162 __SCK__tp_func_bcache_btree_gc_coalesce -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0e9cb204 __traceiter_bcache_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1051db7a __traceiter_bcache_journal_entry_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1342cae8 __tracepoint_bcache_btree_node_free -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x13d7cb19 __traceiter_bcache_journal_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x17090387 __SCK__tp_func_bcache_btree_set_root -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1726f60d __traceiter_bcache_journal_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1232e0bb __SCK__tp_func_bcache_btree_cache_cannibalize +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x15eb76ab __tracepoint_bcache_btree_insert_key EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x17a83e40 __traceiter_bcache_writeback -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1b4fbf4f __SCK__tp_func_bcache_btree_insert_key -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1b753797 __tracepoint_bcache_btree_insert_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x192d48f5 __SCK__tp_func_bcache_writeback_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x19ddb92b __tracepoint_bcache_request_end EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1c599ebe __traceiter_bcache_btree_gc_coalesce -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1ee57b46 __SCK__tp_func_bcache_journal_entry_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1f0955db __traceiter_bcache_btree_insert_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1df4c86e __SCK__tp_func_bcache_writeback +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x202e6938 __tracepoint_bcache_btree_node_alloc +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x20811633 __traceiter_bcache_btree_cache_cannibalize EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x21b87a42 __SCT__tp_func_bcache_btree_node_alloc -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x233728df __SCK__tp_func_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2293520a __tracepoint_bcache_read_retry +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2488efb2 __traceiter_bcache_btree_node_split 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 0x279bfa79 __tracepoint_bcache_read_retry EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x287090dc __SCT__tp_func_bcache_journal_write EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x297e0da3 __SCT__tp_func_bcache_btree_node_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x29ca12e8 __SCK__tp_func_bcache_btree_node_free -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2a80cde6 __tracepoint_bcache_btree_set_root -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2af28f29 __SCK__tp_func_bcache_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2aff138f __traceiter_bcache_invalidate -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2bc9ca4f __SCK__tp_func_bcache_journal_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2e8aa0dc __SCK__tp_func_bcache_btree_node_alloc -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2eb02804 __tracepoint_bcache_btree_node_alloc +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x29e60428 __SCK__tp_func_bcache_gc_copy_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2c0d2b2f __SCK__tp_func_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2ce872f6 __tracepoint_bcache_journal_replay_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2e79bd32 __SCK__tp_func_bcache_journal_replay_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2f68f754 __SCK__tp_func_bcache_btree_node_split EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x300c8ff4 __SCT__tp_func_bcache_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x30cbc49a __SCK__tp_func_bcache_journal_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x317afc05 __SCK__tp_func_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x32a59ebf __tracepoint_bcache_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x330db979 __SCK__tp_func_bcache_gc_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x347be046 __SCK__tp_func_bcache_btree_set_root +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x35d13a8a __tracepoint_bcache_read EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x36f317a4 __SCT__tp_func_bcache_gc_copy -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3df9dbaa __SCK__tp_func_bcache_request_start -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4218a2d6 __tracepoint_bcache_gc_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x42c17863 __tracepoint_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3cd2b0cb __tracepoint_bcache_btree_set_root +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3d5d30d3 __traceiter_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4276e97c __traceiter_bcache_btree_node_alloc +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4350910a __tracepoint_bcache_gc_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x442014f5 __tracepoint_bcache_journal_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x453378e0 __SCK__tp_func_bcache_request_end EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4543b49b __SCT__tp_func_bcache_writeback_collision -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x484bbcb0 __SCK__tp_func_bcache_btree_node_compact -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4a1e63a8 __SCK__tp_func_bcache_btree_cache_cannibalize -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4ea02087 __tracepoint_bcache_cache_insert -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5682036e __tracepoint_bcache_writeback_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4e5009be __tracepoint_bcache_gc_copy +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4eebd071 __traceiter_bcache_request_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x52100510 __tracepoint_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x568bc4e0 __tracepoint_bcache_btree_node_free +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x56b45d09 __SCK__tp_func_bcache_btree_gc_coalesce +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5bc809ed __SCK__tp_func_bcache_bypass_sequential EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5dd80bd5 __SCT__tp_func_bcache_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5ec07491 __tracepoint_bcache_journal_replay_key -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5ffc931b __SCK__tp_func_bcache_read EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x629c9180 __SCT__tp_func_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6479173e __SCK__tp_func_bcache_read EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x64e39418 __traceiter_bcache_writeback_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x65886ab5 __SCK__tp_func_bcache_journal_full EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6677ebf0 __SCT__tp_func_bcache_gc_start -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x66901073 __traceiter_bcache_btree_set_root -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6921e5f4 __traceiter_bcache_btree_node_compact -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6ca26dcf __tracepoint_bcache_request_start -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6e4ec35a __traceiter_bcache_btree_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6f8847ff __traceiter_bcache_gc_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x72d34843 __SCK__tp_func_bcache_gc_copy_collision -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x74ae4ce7 __tracepoint_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x69629f4c __tracepoint_bcache_journal_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6cb6aac8 __tracepoint_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6de07606 __SCK__tp_func_bcache_bypass_congested +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6f265d5d __traceiter_bcache_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x71a6e494 __tracepoint_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x74202e16 __SCK__tp_func_bcache_gc_copy EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x752f7fa4 __SCT__tp_func_bcache_cache_insert EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x787810b2 __SCT__tp_func_bcache_read_retry -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x796708c9 __tracepoint_bcache_gc_start -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7a927c2a __tracepoint_bcache_journal_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7ef4e607 __tracepoint_bcache_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7cb90fd6 __traceiter_bcache_journal_full EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7f252e00 __SCT__tp_func_bcache_bypass_congested +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7f389db1 __SCK__tp_func_bcache_read_retry +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x804db4b8 __SCK__tp_func_bcache_journal_write 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 0x84005b30 __SCK__tp_func_bcache_gc_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8589710c __tracepoint_bcache_btree_gc_coalesce -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x860200b9 __SCK__tp_func_bcache_bypass_congested -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x86388861 __tracepoint_bcache_bypass_congested -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x877a44e7 __traceiter_bcache_btree_read -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x889b80c6 __SCK__tp_func_bcache_gc_copy -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x88f525e8 __tracepoint_bcache_bypass_sequential -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x93ef264e __tracepoint_bcache_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8526df93 __tracepoint_bcache_writeback_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x86148920 __traceiter_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8626f76b __SCK__tp_func_bcache_gc_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x88a6c95d __tracepoint_bcache_bypass_congested +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x89356fe5 __traceiter_bcache_btree_insert_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8cfbaade __traceiter_bcache_btree_set_root +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8e9a350d __traceiter_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x90e1fee8 __tracepoint_bcache_btree_node_compact +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9270312c __SCK__tp_func_bcache_btree_node_compact +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x92bf2460 __tracepoint_bcache_cache_insert +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x940015c9 __SCK__tp_func_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x95d1ca14 __traceiter_bcache_btree_node_free +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x967da55d __SCK__tp_func_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x96e78e3d __tracepoint_bcache_alloc_fail EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x972aa384 __SCT__tp_func_bcache_btree_insert_key -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9913f0ed __traceiter_bcache_btree_node_free -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9a2a81b8 __tracepoint_bcache_invalidate EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9d28d153 __SCT__tp_func_bcache_btree_node_split -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9e86531e __SCK__tp_func_bcache_read_retry +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9e55d199 __SCK__tp_func_bcache_cache_insert +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9efdb226 __traceiter_bcache_gc_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9f2229cb __tracepoint_bcache_invalidate EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa15bd7c4 __SCT__tp_func_bcache_btree_gc_coalesce -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa1e744fe __tracepoint_bcache_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa277cde6 __traceiter_bcache_bypass_sequential +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa6b229c1 __traceiter_bcache_read EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa784e073 __SCT__tp_func_bcache_btree_node_compact -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xaa5f3407 __traceiter_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa794c72e __tracepoint_bcache_bypass_sequential +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa9228d5c __traceiter_bcache_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa9e717b8 __traceiter_bcache_journal_entry_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xaabdab5a __traceiter_bcache_gc_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xaae893ca __tracepoint_bcache_btree_gc_coalesce EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xad6440b4 __traceiter_bcache_gc_copy -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xada27f25 __SCK__tp_func_bcache_writeback -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb4673f79 __tracepoint_bcache_journal_entry_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb522d003 __SCK__tp_func_bcache_gc_start -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb57d9bab __tracepoint_bcache_journal_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xae23bbcd __traceiter_bcache_btree_read EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb5a62a8c __traceiter_bcache_cache_insert -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb5c710c4 __SCK__tp_func_bcache_write EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb7e5379d __SCT__tp_func_bcache_journal_replay_key -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb9885831 __traceiter_bcache_btree_node_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc134df72 __tracepoint_bcache_gc_copy -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc48a81eb __SCK__tp_func_bcache_btree_node_split -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc4b00933 __tracepoint_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc289e670 __SCK__tp_func_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc4def6da __SCK__tp_func_bcache_journal_entry_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc568d663 __SCK__tp_func_bcache_btree_node_alloc +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc58a922d __SCK__tp_func_bcache_btree_node_free +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc64f391e __tracepoint_bcache_journal_entry_full EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc73e0c99 __SCT__tp_func_bcache_invalidate -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xcb167fb6 __SCK__tp_func_bcache_cache_insert -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xcb401818 __tracepoint_bcache_btree_cache_cannibalize -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xcdb3e580 __SCK__tp_func_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc8eed402 __tracepoint_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xca2e480f __tracepoint_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xcb4c4186 __SCK__tp_func_bcache_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xce380f9b __traceiter_bcache_btree_node_compact EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xce451ad8 __SCT__tp_func_bcache_btree_read -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd0d49105 __tracepoint_bcache_request_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd2686a18 __traceiter_bcache_request_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd288157e __SCK__tp_func_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xceeaccae __traceiter_bcache_journal_write EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd30206ff __SCT__tp_func_bcache_gc_copy_collision -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd6c407d4 __traceiter_bcache_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd6df1153 __tracepoint_bcache_writeback +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd5bacaeb __tracepoint_bcache_gc_copy_collision EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd7a376b3 __SCT__tp_func_bcache_gc_end EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd7a7fbec __SCT__tp_func_bcache_request_start EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xdb0682eb __SCT__tp_func_bcache_journal_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe04eac17 __SCK__tp_func_bcache_writeback_collision -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe0cc41c1 __traceiter_bcache_btree_cache_cannibalize -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe2c9f88f __tracepoint_bcache_btree_node_compact -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe37b81e0 __traceiter_bcache_gc_start -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xeabe6b66 __traceiter_bcache_bypass_congested +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xde207194 __tracepoint_bcache_writeback +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe137cdd1 __traceiter_bcache_bypass_congested +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe399d097 __traceiter_bcache_read_retry +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xeb3ae284 __tracepoint_bcache_gc_start EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xec29e22a __traceiter_bcache_gc_copy_collision -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xece28535 __traceiter_bcache_bypass_sequential EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xedf90bb3 __SCT__tp_func_bcache_read -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf34a3228 __traceiter_bcache_btree_node_alloc -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf44230ae __SCK__tp_func_bcache_journal_replay_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xee6ee0b5 __tracepoint_bcache_btree_cache_cannibalize +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf0adc9f0 __SCK__tp_func_bcache_btree_insert_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf231277d __traceiter_bcache_btree_write EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf57f81ae __SCT__tp_func_bcache_bypass_sequential EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf7a5edc7 __SCT__tp_func_bcache_journal_entry_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfa55b269 __SCK__tp_func_bcache_btree_node_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfadb282d __tracepoint_bcache_gc_copy_collision EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfb767f16 __SCT__tp_func_bcache_writeback EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfce76b1e __SCT__tp_func_bcache_request_end -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x03b89261 dm_cell_get_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x1322f9a6 dm_bio_prison_free_cell +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfef84107 __SCK__tp_func_bcache_write +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x0248ad58 dm_get_cell EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x17dd39d6 dm_deferred_set_create +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x24b6e540 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 0x3e9fd9a7 dm_bio_prison_free_cell_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x48ca6244 dm_cell_unlock_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x4a6a616a dm_get_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x4ffaee8d dm_bio_detain +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x3c2f20b5 dm_bio_prison_alloc_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x486881c5 dm_bio_prison_alloc_cell_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x5595834f dm_cell_unlock_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x58a1fef6 dm_cell_put_v2 EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x6791a44e dm_deferred_entry_dec -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x74441993 dm_cell_release_no_holder EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x753e20b2 dm_bio_prison_create -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x81536899 dm_cell_visit_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x86bec9c5 dm_cell_lock_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x95104431 dm_cell_promote_or_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xa0c06998 dm_cell_put_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x7e78b28e dm_bio_prison_free_cell_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x8f67e2d4 dm_cell_quiesce_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x97e8a319 dm_cell_release_no_holder +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xa848b441 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 0xb498aac9 dm_cell_promote_or_release EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb6d5c65d dm_deferred_set_add_work EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb70b342a dm_bio_prison_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xc80a9bce dm_cell_error +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb83885cc dm_cell_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xc277b72e dm_cell_lock_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xc28ae4f1 dm_bio_detain EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xca2e3a88 dm_deferred_entry_inc -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xcfc6ba42 dm_cell_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xd6437dc0 dm_bio_prison_alloc_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xcedb0b6d dm_cell_visit_release EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xd99e003d dm_bio_prison_create_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xdcbcc2db dm_cell_lock_promote_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xf94938e5 dm_bio_prison_alloc_cell_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xf94a5e0d dm_cell_quiesce_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xde86c289 dm_cell_error +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xe54f1928 dm_cell_lock_promote_v2 EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x0ad0dc4f dm_bufio_mark_buffer_dirty EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x111ab12a dm_bufio_mark_partial_buffer_dirty EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x24772bfe dm_bufio_get @@ -13495,7 +13539,6 @@ EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x74dcd98c dm_bufio_get_aux_data EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x7c381a76 dm_bufio_get_block_size EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x867e87eb dm_bufio_get_dm_io_client -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x93ef3e96 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 @@ -13505,49 +13548,50 @@ EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xcd2ba798 dm_bufio_forget EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xd4bddf5c dm_bufio_issue_flush EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xd991e3b9 dm_bufio_get_device_size +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xde931938 dm_bufio_client_create EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xe6024e59 dm_bufio_release EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xebcc64a4 dm_bufio_get_block_data EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xeca7949e dm_bufio_client_destroy EXPORT_SYMBOL_GPL drivers/md/dm-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 0x0efbca4c btracker_promotion_already_present +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x4c96da6d dm_cache_policy_unregister EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x5adc2807 btracker_destroy EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x5de611a9 btracker_nr_writebacks_queued -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x6b98c83f dm_cache_policy_unregister EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x7890d535 dm_cache_policy_get_name EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x87bee547 btracker_queue EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x890723f7 dm_cache_policy_get_version -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xa054cbaf dm_cache_policy_register 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 0xadbefda4 dm_cache_policy_destroy EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xbf1a2968 btracker_create EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xccfe6409 btracker_nr_demotions_queued EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xcf8c2590 dm_cache_policy_get_hint_size +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xd7ae75b1 dm_cache_policy_register EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xe1bdae47 dm_cache_policy_create -EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x6e7ffedb dm_unregister_path_selector -EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0xb3cc1d7e dm_register_path_selector -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x00709758 dm_rh_bio_to_region +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x845d9e3b dm_unregister_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0xef30a41b 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 0x1e134d46 dm_region_hash_create +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x061376ca dm_rh_bio_to_region +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x32e1ae4f 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 0x45cf54d9 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 0x780d4f17 dm_rh_mark_nosync EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7d053fc5 dm_rh_start_recovery EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7d5e1815 dm_rh_get_region_key -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x8d71be4a dm_rh_dirty_log EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa53387c7 dm_rh_flush EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa83588eb dm_rh_recovery_end +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xbc9caaeb dm_rh_inc_pending EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xbe38a431 dm_rh_recovery_prepare -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xd733799f 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 0xf462798f dm_region_hash_create +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xf90b2bcd 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/dm-region-hash 0xfed5289b dm_rh_delay 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 0x11fbbe02 dm_bitset_set_bit EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x15085586 dm_btree_cursor_begin @@ -13571,6 +13615,7 @@ EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x46768dbf dm_btree_remove_leaves EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x48e323be dm_bm_unlock EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x4f477261 dm_bm_checksum +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5125c77e dm_block_manager_create EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5375ca71 dm_bm_write_lock EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5475ba9e dm_block_location EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5736c9c5 dm_bitset_flush @@ -13610,7 +13655,6 @@ EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xb3d7482b dm_bitset_new EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xb6879c01 dm_btree_lookup_next EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xb720ee73 dm_array_cursor_begin -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbf2cc03c dm_block_manager_create EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xc0d7c2d1 dm_array_resize EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xc0fadb13 dm_bitset_del EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xc36559ad dm_btree_cursor_next @@ -13622,75 +13666,75 @@ EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xe8438eb5 dm_array_del EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf82dba90 dm_btree_empty EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xfce51d79 dm_array_empty -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x0d3d6294 cec_queue_pin_cec_event -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x277e5a5e cec_s_conn_info -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x3036408b cec_notifier_cec_adap_unregister -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x3db29d20 cec_allocate_adapter -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x509d0178 cec_queue_pin_5v_event -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x5e1f29d2 cec_delete_adapter -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x5f07185b cec_register_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x07b2b504 cec_transmit_attempt_done_ts +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x09f19101 cec_s_phys_addr_from_edid +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x15c76fe8 cec_register_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x1a36d105 cec_delete_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x2192f901 cec_notifier_parse_hdmi_phandle +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x34dfa4e0 cec_notifier_cec_adap_register +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x473415ed cec_notifier_cec_adap_unregister +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x501e19b9 cec_received_msg_ts +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x56e066ab cec_queue_pin_cec_event +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x5c69bd6a cec_s_conn_info +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x5fd0f8f0 cec_queue_pin_5v_event EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x67e1dfdc cec_notifier_set_phys_addr_from_edid -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x7133c279 cec_notifier_conn_register -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x782a9440 cec_s_phys_addr_from_edid -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x7b87f1f5 cec_queue_pin_hpd_event -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x84712273 cec_s_phys_addr -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x8d889bb4 cec_received_msg_ts +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x6b0d0a3b cec_transmit_done_ts +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x7f7776b2 cec_notifier_conn_register +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x80dc5a98 cec_transmit_msg +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x8edfc637 cec_unregister_adapter EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xa01fbb6b cec_notifier_set_phys_addr -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xa0532bd9 cec_transmit_done_ts -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xac1666a5 cec_s_log_addrs EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xaee236c6 cec_notifier_conn_unregister EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xbe4de675 cec_get_edid_phys_addr -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xbf6a3063 cec_notifier_cec_adap_register -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xcae35200 cec_notifier_parse_hdmi_phandle -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xe02b1570 cec_transmit_attempt_done_ts -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xe3cf233c cec_unregister_adapter -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xedc957fe cec_transmit_msg -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xfdc49096 cec_fill_conn_info_from_drm +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xbfd9d5e2 cec_allocate_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xc32969ba cec_queue_pin_hpd_event +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xca7aad0f cec_fill_conn_info_from_drm +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xd3270220 cec_s_log_addrs +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xe65d0c93 cec_s_phys_addr EXPORT_SYMBOL_GPL drivers/media/common/b2c2/b2c2-flexcop 0x66c0289a b2c2_flexcop_debug -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x07ead909 saa7146_unregister_extension -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x280d1aa3 saa7146_pgtable_build_single -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x44b91323 saa7146_setgpio -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x59c61f24 saa7146_pgtable_free -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x5c08f7e0 saa7146_register_extension -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x88b1d3ee saa7146_pgtable_alloc -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xaf7f985b saa7146_vfree_destroy_pgtable -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xc1eb8d33 saa7146_wait_for_debi_done -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xcf0abe7f saa7146_vmalloc_build_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x068e8ef6 saa7146_i2c_adapter_prepare +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x47c87087 saa7146_pgtable_alloc +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x4af21c6f saa7146_pgtable_build_single +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x8f10aa2d saa7146_register_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x916bee3a saa7146_wait_for_debi_done +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xb653a1f3 saa7146_setgpio +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xba2d4926 saa7146_vmalloc_build_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xbe482bf6 saa7146_unregister_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xc490ce85 saa7146_pgtable_free EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe3cd9b5c saa7146_debug -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe7f4601f saa7146_i2c_adapter_prepare -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x0efc8e3b saa7146_set_hps_source_and_sync -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x682e4c78 saa7146_register_device -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xb47925d0 saa7146_vv_init -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xb9bfb344 saa7146_vv_release -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xbfb218fe saa7146_unregister_device -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xc77a8f7f saa7146_stop_preview -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xeb98b0ab saa7146_start_preview -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x0ce8c685 sms_board_led_feedback -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x0fd94d8e smscore_onresponse -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x14504371 sms_board_lna_control +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xedb23951 saa7146_vfree_destroy_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x1b154535 saa7146_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x3c2beb25 saa7146_set_hps_source_and_sync +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x49673180 saa7146_register_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x5ad64655 saa7146_start_preview +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x7bef889d saa7146_vv_init +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xd2bab13e saa7146_stop_preview +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xdc694d0f saa7146_vv_release +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x05eea4a4 smscore_register_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x0e621720 smscore_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x12f7cd1b smscore_get_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x206e2953 smscore_start_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x211f6a80 smscore_getbuffer EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x21e36bf2 smscore_registry_getmode +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x25e10548 sms_board_event +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x31893906 sms_board_lna_control EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x34bf0e61 smscore_translate_msg -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x35c3f2a1 sms_board_setup EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x37d91069 smsendian_handle_tx_message +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x4424a2c8 sms_board_power EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x45284ae9 smsendian_handle_rx_message -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x47fef0e3 smscore_unregister_hotplug -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x74a43241 smscore_set_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x4fd87b1d sms_board_setup +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x5adf9e02 sms_board_led_feedback +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x6cd28030 smscore_unregister_hotplug EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x74ee9098 sms_board_load_modules EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7c576277 smsendian_handle_message_header +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x804def8a smscore_get_device_mode +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x83406d7a smscore_onresponse EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x844539ae sms_get_board -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x90825728 sms_board_event EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x99a81ab3 smsclient_sendrequest -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x9f397730 smscore_putbuffer -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xa21ea5b0 sms_board_power -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xa97e2399 smscore_get_board_id -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xb8cc6e65 smscore_get_device_mode EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbbdb5c42 smscore_unregister_client -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xc663e396 smscore_unregister_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xd181098b smscore_start_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xd22f6d07 smscore_getbuffer -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xe33f8c03 smscore_register_hotplug -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xe848a673 smscore_register_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xfb3626d2 smscore_register_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xc37f5b37 smscore_putbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xdf0643ae smscore_set_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xf5fd155a smscore_register_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xff8a7493 smscore_register_device EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x03005a48 tpg_alloc EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x040dc7cd tpg_aspect_strings EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x4d1d285c tpg_init @@ -13708,309 +13752,336 @@ EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xce8159bb tpg_pattern_strings EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xf4aef3a4 tpg_gen_text EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xf65c5e46 tpg_fillbuffer -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x0b0fca4b __traceiter_vb2_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x0e3bc616 __SCK__tp_func_vb2_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x147c0b8d vb2_plane_cookie -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x1488bbb6 __tracepoint_vb2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x15a530ce __tracepoint_vb2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x1649e941 vb2_core_streamon -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x16ec6529 vb2_plane_vaddr -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x1c60a524 __SCK__tp_func_vb2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x1d6b37d1 vb2_core_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x23f529fe __SCK__tp_func_vb2_buf_done -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x27671f22 __traceiter_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x0b75ea01 vb2_core_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x0bf5fd5e vb2_plane_vaddr +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x0c46328f __traceiter_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x1b4582f1 vb2_discard_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x21feefd2 __tracepoint_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x23e7d35c vb2_read 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 0x30a629b2 vb2_thread_stop -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x3685066c vb2_core_querybuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x45bf1879 vb2_queue_error -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x485eafee vb2_core_expbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x34e7608d vb2_thread_stop +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x478eae1a vb2_thread_start +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x4872e95e vb2_core_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x4983c2cb __tracepoint_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x4cf7ba50 vb2_core_streamoff 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 0x4f6d710e __traceiter_vb2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x512d1fa1 vb2_core_queue_release -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x57294337 vb2_core_create_bufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x5ad42930 vb2_core_reqbufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x61f533b2 vb2_discard_done -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x65db7cbe vb2_read -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x6bad523e vb2_wait_for_all_buffers -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x6ca175f1 vb2_request_object_is_buffer -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x7c4987b7 vb2_core_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x89ee1989 vb2_mmap -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x8b18795b __tracepoint_vb2_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x8c28664d __SCK__tp_func_vb2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x994180a1 __traceiter_vb2_buf_done -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x9fb2f150 vb2_write -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xa7f210fd __tracepoint_vb2_buf_done -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xabe6ec24 vb2_buffer_done -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xb49caa33 vb2_core_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xba371841 vb2_core_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x50ece650 vb2_core_queue_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x52aeb0a1 vb2_core_create_bufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x65b3d521 vb2_buffer_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x65baf633 vb2_core_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x69774f92 __SCK__tp_func_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x725966e4 __traceiter_vb2_buf_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x791a3676 vb2_request_object_is_buffer +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x7c58a0d1 __traceiter_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x7d890455 vb2_plane_cookie +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x8135b50c __SCK__tp_func_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x92f4f094 __tracepoint_vb2_buf_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x934af79e vb2_core_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x94fbc40c __traceiter_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x9e7984ae vb2_core_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xa962fb33 __SCK__tp_func_vb2_buf_done EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xc54c863e __SCT__tp_func_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xc5f1ed56 vb2_write +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xc7345ccf vb2_core_expbuf EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xc7920841 __SCT__tp_func_vb2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xd426a71f vb2_request_buffer_cnt -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xee2b6e4e vb2_core_streamoff -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xf55b25d0 vb2_thread_start -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xfe63c455 vb2_core_queue_init -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0x68d76c80 vb2_dma_contig_set_max_seg_size -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0xe64117b0 vb2_dma_contig_memops -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-sg 0x77b03229 vb2_dma_sg_memops -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-memops 0x26afff71 vb2_common_vm_ops -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x0092be43 vb2_ioctl_expbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x076b8403 vb2_fop_write -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x087e5932 vb2_expbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x0ac32210 _vb2_fop_release -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x0d066ef4 vb2_queue_init -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x0ee7fb29 vb2_ioctl_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x1fbdc2a9 vb2_ioctl_reqbufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x25cd46f1 vb2_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x314f0460 vb2_reqbufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x37f17b85 vb2_ops_wait_finish -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x404304ed vb2_streamon -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x43fb8df5 vb2_queue_init_name -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x56f48df5 vb2_ioctl_querybuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x5b5bf9df vb2_queue_release -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x661510a9 vb2_fop_release -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x66f66440 vb2_ioctl_streamon -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x71c8b7db vb2_create_bufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x74c9155f vb2_poll -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x79713fe3 vb2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x814b7404 vb2_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x843b036f vb2_ioctl_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x8d1c87a3 vb2_request_validate -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x8ead8c0f vb2_request_queue -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x917bb738 vb2_fop_mmap -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x91e14ec8 vb2_ioctl_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x963d7c05 vb2_fop_read -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xbbaf2fed vb2_ops_wait_prepare -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xbf87d582 vb2_queue_change_type -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xc3e7551d vb2_streamoff -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xc8b8705e vb2_find_timestamp -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xca537732 vb2_fop_poll -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xddd27e21 vb2_video_unregister_device -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xeb3ce5e8 vb2_ioctl_streamoff -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xf8ce7d20 vb2_ioctl_create_bufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-vmalloc 0x3b185263 vb2_vmalloc_memops -EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0x7c1e780e dvb_module_probe -EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0xcdb63760 dvb_create_media_graph -EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0xce5a4a69 dvb_module_release -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/as102_fe 0xd1887fd9 as102_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24117 0xf3ee1626 cx24117_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/gp8psk-fe 0x2f2b6d7f gp8psk_fe_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mxl5xx 0x71ea274c mxl5xx_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0910 0xf923551b stv0910_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv6111 0x85d9a391 stv6111_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0x3741ce6f tda18271c2dd_attach -EXPORT_SYMBOL_GPL drivers/media/i2c/aptina-pll 0x233f4e19 aptina_pll_calculate -EXPORT_SYMBOL_GPL drivers/media/i2c/ccs-pll 0x6d75e4f1 ccs_pll_calculate -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x0a2f8892 max9271_configure_i2c -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x15b42442 max9271_set_high_threshold -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x185e7410 max9271_set_gpios -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x266bd63f max9271_wake_up -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x3d4859da max9271_set_deserializer_address -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x3e498d7b max9271_set_translation -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x477afc6f max9271_configure_gmsl_link -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x60816bc8 max9271_enable_gpios -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x9513cfcb max9271_verify_id -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xa2408249 max9271_set_serial_link -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xcb5e2e25 max9271_disable_gpios -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xcf80746c max9271_set_address -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xd0071977 max9271_clear_gpios -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x09963029 media_create_intf_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x0aca97cc media_device_usb_allocate -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x10c97eb3 media_devnode_remove -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x1c339854 media_devnode_create -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x1fee349f __media_pipeline_stop -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x2087a06d media_entity_get_fwnode_pad -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x21422413 media_request_object_find -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x2337423a media_pipeline_stop -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x2cda11ca media_device_unregister_entity_notify -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x2fbd49d0 media_request_object_put -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x36598e26 media_entity_remove_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x37480dc9 media_entity_find_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x45e8b69a media_device_unregister_entity -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x464a74b2 __media_entity_setup_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x47a27732 media_request_object_unbind -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x49bfc713 media_remove_intf_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x4aabe962 media_graph_walk_start -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x4adc09f0 media_device_register_entity -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x4eb9b824 media_remove_intf_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x537b5eaa media_device_delete -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x5fec6ec9 media_entity_pads_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x62af3104 media_create_pad_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x62c3f3c1 media_entity_setup_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x698c77c8 media_request_object_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x737984d2 media_graph_walk_next -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x781d0711 media_create_pad_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x78692628 media_device_unregister -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7f37f1f3 __media_entity_remove_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x853a30ae __media_device_usb_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x8bf4075d media_device_cleanup -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x9b8bea77 media_device_pci_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xa4764705 media_device_register_entity_notify -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xb849f000 __media_remove_intf_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc1955102 media_entity_remote_pad -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc949bb71 __media_pipeline_start -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xcae2d116 media_request_get_by_fd -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd1c93d72 media_graph_walk_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd2688ecb media_get_pad_index -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd3a24e93 media_graph_walk_cleanup -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd4c73fe8 media_request_object_complete -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd7ff3cd9 media_request_put +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xca917977 vb2_mmap +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xd59d9536 vb2_core_queue_init +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xd7355bf1 vb2_queue_error +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xda56c4d3 vb2_core_querybuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xde1f9857 vb2_wait_for_all_buffers +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xe18d522d __SCK__tp_func_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xe87a06a1 __tracepoint_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xf1de472a vb2_request_buffer_cnt +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xf6eb6d2d vb2_core_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0x955ed8b9 vb2_dma_contig_memops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0xcf00c4e6 vb2_dma_contig_set_max_seg_size +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-sg 0x7b01d030 vb2_dma_sg_memops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-memops 0x3686f3d2 vb2_common_vm_ops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x073c694d vb2_queue_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x0a14b0dc vb2_ops_wait_finish +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x0cf0ccac vb2_fop_write +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x14351c93 vb2_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x17606ab4 vb2_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x1a9ceede vb2_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x1bcd0a49 vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x21612a27 vb2_find_timestamp +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x231e3194 vb2_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x2f71df97 vb2_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x30f3104a vb2_expbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x33d030a7 vb2_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x34906976 vb2_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x6b99e56f vb2_create_bufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x6dc6ddbf vb2_queue_init_name +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x703f3265 vb2_streamoff +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x7c2c9a53 vb2_request_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x82753c5d vb2_fop_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x8c1ea3c6 vb2_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x9ef5242b vb2_request_validate +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xb879975f vb2_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xc0c906ed vb2_queue_init +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xc557624e vb2_video_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xcb33f33c vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xccc3fe96 vb2_ops_wait_prepare +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xccc60401 vb2_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xcdbe6844 vb2_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xcfe6ec2b vb2_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xd1134c1f _vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xd2ec4e9b vb2_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xd4b1c4d0 vb2_queue_change_type +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xd9b9e42b vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xe3a36a86 vb2_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xe95f72cf vb2_fop_read +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-vmalloc 0x5f7f4b41 vb2_vmalloc_memops +EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0x42172dbf dvb_module_probe +EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0x57b08730 dvb_module_release +EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0xb3fe9085 dvb_create_media_graph +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/as102_fe 0x346879d3 as102_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24117 0xbaaea2c1 cx24117_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/gp8psk-fe 0xcfe30753 gp8psk_fe_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mxl5xx 0x7bb7230b mxl5xx_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0910 0x9849b493 stv0910_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv6111 0x9062330c stv6111_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0x5d293b8f tda18271c2dd_attach +EXPORT_SYMBOL_GPL drivers/media/i2c/aptina-pll 0xe242d654 aptina_pll_calculate +EXPORT_SYMBOL_GPL drivers/media/i2c/ccs-pll 0x04ebd112 ccs_pll_calculate +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x108974c1 max9271_set_address +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x2fddc5ed max9271_disable_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x5bc0d538 max9271_set_translation +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x818f5098 max9271_set_high_threshold +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x84f01b4c max9271_set_serial_link +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x9e6a1b30 max9271_wake_up +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xa6c928cc max9271_enable_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xb7894b9b max9271_set_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xc4039db9 max9271_clear_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xc9e68187 max9271_set_deserializer_address +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xd4e2349e max9271_configure_gmsl_link +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xf4cb6c5d max9271_configure_i2c +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xfca670f9 max9271_verify_id +EXPORT_SYMBOL_GPL drivers/media/i2c/power_ctrl_logic 0x61e30e03 power_ctrl_logic_set_power +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x009721bf media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x02c0d32f media_device_register_entity_notify +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x037cad27 media_devnode_create +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x0eab00b0 media_remove_intf_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x123716bd media_device_unregister_entity +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x1b623c69 media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x234a1ba5 media_device_unregister_entity_notify +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x24f200a3 media_graph_walk_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x2880c13d media_request_object_put +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x2f6a9334 media_entity_pads_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x325e1429 __media_remove_intf_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x359435fa media_device_unregister +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x3f67a04a media_device_usb_allocate +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x47c59995 media_device_delete +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x52363c66 media_request_get_by_fd +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x56f13835 __media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x5751302c media_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x5bb76671 media_remove_intf_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x60ffe39e media_request_object_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x64320c11 media_graph_walk_next +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x6877ead9 __media_remove_intf_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x69d89f9a media_device_register_entity +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x71f62f6f __media_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x727fe2d8 media_graph_walk_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x790fc90b media_request_put +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x829cb1f8 media_create_intf_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x8706674b media_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x8c72ad1c media_request_object_complete +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x8cb6b6e2 media_entity_find_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x99a0c53d media_device_pci_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x9eedcf61 media_request_object_unbind +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xaded4730 media_create_pad_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xae4351a1 __media_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xb155994a media_get_pad_index +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xba631230 media_devnode_remove +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xbd9fd6d5 __media_device_register +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc3066cd2 __media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc3a41e41 media_entity_get_fwnode_pad +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc6e6ad70 media_device_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xccc7923b media_request_object_find +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe1c68d52 media_device_cleanup EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe5ceecd6 media_entity_enum_cleanup -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe8a47279 __media_device_register -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe9d33777 media_device_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xef3f4902 __media_remove_intf_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf772c866 media_request_object_bind +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe9f0fa87 media_graph_walk_cleanup +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xebcca3c6 media_entity_remote_pad +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf20a6f0c media_create_pad_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf634d937 media_request_object_bind +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf80c6057 __media_device_usb_init EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xfc781c47 __media_entity_enum_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xffebb6a2 media_pipeline_start -EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0x1cd304f6 cx88_setup_xc3028 -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x25b49471 mantis_stream_control -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x4288797e mantis_uart_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x49e9ff89 mantis_i2c_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x4d803f74 mantis_dma_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x4e4996ef mantis_get_mac -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x51b20678 mantis_gpio_set_bits -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x68f68b9b mantis_i2c_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x6c62ff85 mantis_input_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x6c9f4b66 mantis_dma_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x717d3ceb mantis_ca_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x74986eed mantis_ca_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x866a6f75 mantis_frontend_soft_reset -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x8675ad87 mantis_dvb_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xa76ad995 mantis_dvb_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xaa6f6c4e mantis_pci_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xcb9c5be2 mantis_uart_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xdfff35ee mantis_input_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xe7f9c3f1 mantis_pci_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xfde614a8 mantis_frontend_power -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x04a601f3 saa7134_s_frequency -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x0da430b0 saa7134_ts_buffer_init -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x21d19df7 saa7134_s_tuner -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x322cde0e saa7134_g_frequency -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x55d4dd61 saa7134_g_tuner -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x6843b659 saa7134_stop_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x6c59f800 saa7134_g_std -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x7b0ae816 saa7134_ts_buffer_prepare -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x7c08ba1f saa7134_ts_qops -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x843b2520 saa7134_s_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x8b5fe4e7 saa7134_ts_queue_setup -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x939c7a2c saa7134_ts_stop_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xa1f56ab5 saa7134_querycap -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xa1f5e114 saa7134_querystd -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xa9f8b09b saa7134_ts_start_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xc1c3cf64 saa7134_s_std -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xe6bae59a saa7134_vb2_buffer_queue -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xf67e915f saa7134_g_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xf92ae8d0 saa7134_enum_input -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x016e3944 ttpci_budget_debiwrite -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x1f7ea79c ttpci_budget_deinit -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x391d8275 ttpci_budget_init -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x542418da ttpci_budget_init_hooks -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x567cb8f9 ttpci_budget_irq10_handler +EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0x9af0e14a cx88_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/pci/intel/ipu6/intel-ipu6 0x218eb7d6 ipu_fw_com_prepare +EXPORT_SYMBOL_GPL drivers/media/pci/intel/ipu6/intel-ipu6 0x2b42c6f7 ipu_cpd_pkg_dir_get_num_entries +EXPORT_SYMBOL_GPL drivers/media/pci/intel/ipu6/intel-ipu6 0x36a1aae2 ipu_buttress_add_psys_constraint +EXPORT_SYMBOL_GPL drivers/media/pci/intel/ipu6/intel-ipu6 0x453df549 ipu_trace_restore +EXPORT_SYMBOL_GPL drivers/media/pci/intel/ipu6/intel-ipu6 0x58745343 ipu_send_get_token +EXPORT_SYMBOL_GPL drivers/media/pci/intel/ipu6/intel-ipu6 0x5a973c99 ipu_buttress_tsc_ticks_to_ns +EXPORT_SYMBOL_GPL drivers/media/pci/intel/ipu6/intel-ipu6 0x5d5d2189 ipu_recv_put_token +EXPORT_SYMBOL_GPL drivers/media/pci/intel/ipu6/intel-ipu6 0x62010f0d ipu_trace_uninit +EXPORT_SYMBOL_GPL drivers/media/pci/intel/ipu6/intel-ipu6 0x64aaeec2 ipu_cpd_pkg_dir_get_address +EXPORT_SYMBOL_GPL drivers/media/pci/intel/ipu6/intel-ipu6 0x66dc0351 ipu_buttress_unmap_fw_image +EXPORT_SYMBOL_GPL drivers/media/pci/intel/ipu6/intel-ipu6 0x68d3521a ipu_cpd_validate_cpd_file +EXPORT_SYMBOL_GPL drivers/media/pci/intel/ipu6/intel-ipu6 0x6c08abb9 ipu_buttress_tsc_read +EXPORT_SYMBOL_GPL drivers/media/pci/intel/ipu6/intel-ipu6 0x7842c730 ipu_cpd_pkg_dir_get_type +EXPORT_SYMBOL_GPL drivers/media/pci/intel/ipu6/intel-ipu6 0x7b2c0f76 ipu_cpd_create_pkg_dir +EXPORT_SYMBOL_GPL drivers/media/pci/intel/ipu6/intel-ipu6 0x8a99a3ea ipu_cpd_free_pkg_dir +EXPORT_SYMBOL_GPL drivers/media/pci/intel/ipu6/intel-ipu6 0xa996e10f ipu_fw_com_release +EXPORT_SYMBOL_GPL drivers/media/pci/intel/ipu6/intel-ipu6 0xc17c9beb ipu_buttress_remove_psys_constraint +EXPORT_SYMBOL_GPL drivers/media/pci/intel/ipu6/intel-ipu6 0xc481fd27 ipu_buttress_map_fw_image +EXPORT_SYMBOL_GPL drivers/media/pci/intel/ipu6/intel-ipu6 0xc76903d5 ipu_fw_com_close +EXPORT_SYMBOL_GPL drivers/media/pci/intel/ipu6/intel-ipu6 0xcfff394e ipu_fw_com_open +EXPORT_SYMBOL_GPL drivers/media/pci/intel/ipu6/intel-ipu6 0xd82eb3df ipu_cpd_pkg_dir_get_size +EXPORT_SYMBOL_GPL drivers/media/pci/intel/ipu6/intel-ipu6 0xe10e6751 ipu_fw_com_ready +EXPORT_SYMBOL_GPL drivers/media/pci/intel/ipu6/intel-ipu6 0xe5b4e933 ipu_trace_init +EXPORT_SYMBOL_GPL drivers/media/pci/intel/ipu6/intel-ipu6 0xeb0a3d62 ipu_trace_stop +EXPORT_SYMBOL_GPL drivers/media/pci/intel/ipu6/intel-ipu6 0xf19708cf ipu_send_put_token +EXPORT_SYMBOL_GPL drivers/media/pci/intel/ipu6/intel-ipu6 0xf4be7a05 ipu_recv_get_token +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x0c1e43bf mantis_pci_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x2203491a mantis_uart_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x2cf9b0b5 mantis_uart_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x4a6e41be mantis_dvb_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x4b8ba074 mantis_ca_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x53700599 mantis_stream_control +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x5555c3f1 mantis_dvb_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x583b47fb mantis_input_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x644d4ab2 mantis_frontend_soft_reset +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x7a065e85 mantis_gpio_set_bits +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xaaceafeb mantis_get_mac +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xabbad71d mantis_dma_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xb4815552 mantis_dma_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xcbfa2385 mantis_input_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xce8ab7f3 mantis_ca_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xd3557d2b mantis_pci_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xd7587f09 mantis_frontend_power +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xe0ca43ac mantis_i2c_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xfff1c1e3 mantis_i2c_exit +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x00d9ba58 saa7134_querycap +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x26484b12 saa7134_ts_start_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x2f70dbed saa7134_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x3df52e8b saa7134_s_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x3e6e4232 saa7134_querystd +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x519a8b4b saa7134_ts_buffer_prepare +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x59b90ee9 saa7134_g_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x60cf3c00 saa7134_ts_qops +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x6db4c479 saa7134_g_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x84c8e646 saa7134_s_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x91828c68 saa7134_s_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xa1ee5788 saa7134_ts_buffer_init +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xb67b7721 saa7134_s_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xd3015429 saa7134_ts_queue_setup +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xdb3a42ee saa7134_g_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xe33d9864 saa7134_g_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xe4d2e0a0 saa7134_vb2_buffer_queue +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xf4ab1dfb saa7134_ts_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xfb771157 saa7134_enum_input +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x2898f650 ttpci_budget_init_hooks +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x66c137c8 ttpci_budget_deinit +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x66f3947d ttpci_budget_debiwrite EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x7948c222 budget_debug -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x9918e806 ttpci_budget_set_video_port -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xe7310723 ttpci_budget_debiread -EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0x23590d51 mccic_shutdown -EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0x46f1e209 mccic_irq -EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0x4c0306a4 mccic_suspend -EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0xa66f046d mccic_resume -EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0xeb0941ea mccic_register -EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x60fb6ace radio_tea5777_exit -EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x98195046 radio_tea5777_init -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x098d1acd si470x_stop -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x1cbe28d8 si470x_ctrl_ops -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x52fc9d8c si470x_viddev_template -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x76d1336f si470x_set_freq -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xd7a2e6b1 si470x_start -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x0b0dc3c2 rc_free_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x1b7d0880 rc_repeat -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x2b948570 rc_g_keycode_from_table +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x8abfc8a4 ttpci_budget_set_video_port +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x8c499df1 ttpci_budget_irq10_handler +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xd7510392 ttpci_budget_debiread +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xf0b0379c ttpci_budget_init +EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0x30df0594 mccic_suspend +EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0xa7387297 mccic_resume +EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0xb0a2998d mccic_shutdown +EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0xc9c5b3a9 mccic_irq +EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0xd44250a2 mccic_register +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x1eff596c radio_tea5777_exit +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x5d9f100a radio_tea5777_init +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x42883d93 si470x_set_freq +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x42e50c55 si470x_start +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x8e8d87c3 si470x_ctrl_ops +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xdf1c416e si470x_viddev_template +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xf095e231 si470x_stop +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x284ef7b3 rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x29842714 ir_raw_event_set_idle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x2c85df62 rc_keyup EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x2ed90ced rc_map_unregister -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x349cc42c devm_rc_register_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x367c1224 ir_raw_event_store_with_filter -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x3a4ed08c ir_raw_event_store_with_timeout -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x3bf6f906 devm_rc_allocate_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x45b001bb rc_allocate_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x57b441de rc_keydown_notimeout -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x67d217bd rc_keyup -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x987b0978 rc_register_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x9fc92063 rc_keydown -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xa3460921 ir_raw_event_set_idle -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xa46be13a ir_raw_event_handle -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xafdc740d lirc_scancode_event -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb698f8b6 ir_raw_event_store_edge -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb711f783 ir_raw_event_store +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x414bb78b rc_keydown_notimeout +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x4884296f devm_rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x67300f99 ir_raw_event_store_with_filter +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x6a134fe5 devm_rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x71faa783 rc_keydown +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x8c27c38f ir_raw_event_store_edge +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x97f20aea ir_raw_event_store +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xad1c58b9 rc_unregister_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb59aa3ad ir_raw_event_handle EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb960f15c rc_map_register -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xd6d67c19 rc_unregister_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xc42fbcdd rc_repeat +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xc55f81aa rc_free_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xd925fc01 lirc_scancode_event +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xde637971 ir_raw_event_store_with_timeout +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xe1445fff rc_g_keycode_from_table +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xe885b469 rc_allocate_device EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xfc5d3079 rc_map_get -EXPORT_SYMBOL_GPL drivers/media/tuners/mt2063 0x0613e535 mt2063_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/mt20xx 0x01711686 microtune_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5007t 0x6e329ba5 mxl5007t_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/r820t 0x4d54994c r820t_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda18271 0xf536b708 tda18271_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda827x 0xc8d5c897 tda827x_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x6f86c9b3 tda829x_probe -EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0xcd0e3987 tda829x_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda9887 0xac84db87 tda9887_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x8a65dd48 tea5761_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0xed86a5dc tea5761_autodetection -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x242e8e74 tea5767_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x759417d3 tea5767_autodetection -EXPORT_SYMBOL_GPL drivers/media/tuners/tuner-simple 0x69dd94f7 simple_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mt2063 0x7ee062f3 mt2063_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mt20xx 0x3591642e microtune_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5007t 0x3e3f7cda mxl5007t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/r820t 0xe4ffa58c r820t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda18271 0xf991a292 tda18271_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda827x 0x943c41d3 tda827x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x7144ed10 tda829x_probe +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0xfd587ecd tda829x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda9887 0x69561133 tda9887_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x4fb717fc tea5761_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x94fd8396 tea5761_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x31951ee9 tea5767_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x99dd83dd tea5767_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tuner-simple 0x3002084a simple_tuner_attach EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x017ea7c7 cx231xx_tuner_callback -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x024aa331 cx231xx_send_usb_command -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x07e596ee cx231xx_dev_uninit -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x09f3989e cx231xx_init_bulk -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x184b2e59 cx231xx_capture_start -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x2459d9e4 cx231xx_demod_reset -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x3c1b9a4d cx231xx_send_gpio_cmd -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x5b4bc4c5 cx231xx_set_mode -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x5d7aeb11 cx231xx_init_vbi_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x639a36db cx231xx_dev_init -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x64bafa3a cx231xx_enable_i2c_port_3 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x6f4e6c9c cx231xx_enable656 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x7571e50f cx231xx_unmute_audio -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x7a190156 cx231xx_uninit_vbi_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x862bfcc4 cx231xx_disable656 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x943ee1d5 cx231xx_uninit_bulk -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xabff11e5 cx231xx_init_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xaedce143 cx231xx_set_alt_setting -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xaf2b346d cx231xx_get_i2c_adap -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xb1891677 cx231xx_uninit_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xee924e1c is_fw_load -EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0xc0a654ec mxl111sf_demod_attach -EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0xe2566823 mxl111sf_tuner_attach -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x039d8227 em28xx_audio_analog_set -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x0feb8094 em28xx_set_mode -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x12dd44ac em28xx_init_camera -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x1d0a8d58 em28xx_alloc_urbs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x225bc958 em28xx_uninit_usb_xfer -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x337588af em28xx_write_ac97 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x581b513e em28xx_setup_xc3028 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x65136224 em28xx_gpio_set -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x67ffb4df em28xx_write_reg +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x04fb7d66 cx231xx_capture_start +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x1cc25b0c cx231xx_uninit_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x29611e58 cx231xx_enable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x32409133 cx231xx_send_gpio_cmd +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x55f3e437 cx231xx_send_usb_command +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x5ec586f8 cx231xx_demod_reset +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x65b21e34 cx231xx_unmute_audio +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x67f0f0e2 cx231xx_disable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x71a288b7 cx231xx_uninit_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x75506175 cx231xx_enable_i2c_port_3 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x8f14be8e cx231xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x96e935ca cx231xx_get_i2c_adap +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x9dce78a8 cx231xx_dev_uninit +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xb21f87a3 cx231xx_init_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xb66ab4b3 cx231xx_init_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xbc52456f cx231xx_init_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xc8ba4701 cx231xx_dev_init +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xd1941a76 cx231xx_set_alt_setting +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xd7a6d3c5 cx231xx_uninit_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xf92fedf1 is_fw_load +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0x6f776ad0 mxl111sf_demod_attach +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0xd3b072a3 mxl111sf_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x067f1862 em28xx_init_camera +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x1f7c9b3a em28xx_audio_setup +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x636aea7e em28xx_find_led +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x682ebd48 em28xx_write_reg_bits EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x721f7cc7 em28xx_free_device -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x76ea9db1 em28xx_init_usb_xfer -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7bb8033a em28xx_write_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x788ad77f em28xx_read_reg EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7fc8652c em28xx_tuner_callback -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x83fc14b1 em28xx_write_regs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x817251a6 em28xx_alloc_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x83c78b31 em28xx_gpio_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x9083bd7b em28xx_uninit_usb_xfer EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x921d7c65 em28xx_boards -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xca5f4d2a em28xx_find_led -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xd4fffcd9 em28xx_read_ac97 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xdf22728a em28xx_audio_setup -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xe4f60298 em28xx_read_reg -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xea97d078 em28xx_stop_urbs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xec1880d6 em28xx_toggle_reg_bits -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x03214b96 tm6000_set_reg -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x1b6191c4 tm6000_set_audio_bitrate +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x930b20ed em28xx_stop_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xa1a36cef em28xx_write_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xcf7b071d em28xx_write_regs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xd1a89ef5 em28xx_init_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xd437e67c em28xx_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xe6b889ae em28xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xe7b4d029 em28xx_write_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xfd241eb9 em28xx_audio_analog_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xff83eca0 em28xx_read_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xffdf7d47 em28xx_toggle_reg_bits EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x2309a6d6 tm6000_xc5000_callback +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x7010b1ef tm6000_set_reg_mask EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x89b611dd tm6000_debug -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xa29dfd60 tm6000_get_reg -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xd0451fb8 tm6000_set_reg_mask +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x90e52606 tm6000_set_audio_bitrate +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xb2928e76 tm6000_set_reg EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xdff8e89d tm6000_tuner_callback -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x1feb17a2 __v4l2_async_notifier_add_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x3a47d5e6 __v4l2_async_notifier_add_i2c_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x5cd370e4 __v4l2_async_notifier_add_fwnode_remote_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x8cb93bc4 __v4l2_async_notifier_add_fwnode_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0xa0ca8960 v4l2_async_notifier_cleanup +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xe01d8bf3 tm6000_get_reg +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x29966b80 __v4l2_async_notifier_add_fwnode_remote_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x313f8808 __v4l2_async_notifier_add_i2c_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x62dd5bad v4l2_async_notifier_cleanup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x9b2c7526 __v4l2_async_notifier_add_fwnode_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0xa3f27787 __v4l2_async_notifier_add_subdev EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x01612c0b v4l2_detect_gtf EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x08402862 v4l2_print_dv_timings EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x0958448b v4l2_set_edid_phys_addr @@ -14028,393 +14099,397 @@ EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xef15cc44 v4l2_hdmi_rx_colorimetry 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 0x65721ce6 v4l2_flash_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x84d22f0a v4l2_flash_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0xca2b3ccf v4l2_flash_indicator_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x235b1130 v4l2_fwnode_endpoint_parse -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x3df752a3 v4l2_async_register_subdev_sensor -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x3f9edeba v4l2_fwnode_endpoint_alloc_parse -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x4032c5aa v4l2_fwnode_put_link +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x0813aa8c v4l2_flash_indicator_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x61a783f6 v4l2_flash_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0xf7613612 v4l2_flash_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x0d40678b v4l2_fwnode_parse_link +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x4e39345d 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 0x63993a78 v4l2_fwnode_parse_link -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xb2baad7b v4l2_fwnode_endpoint_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xb5b0d6c1 v4l2_fwnode_connector_parse -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xb70677b3 v4l2_fwnode_connector_add_link -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xbb6b56bc v4l2_async_notifier_parse_fwnode_endpoints -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xcf7aaefc v4l2_fwnode_device_parse -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x039578a7 v4l2_m2m_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x04bb4779 v4l2_m2m_ioctl_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x11e293ed v4l2_m2m_ioctl_stateless_decoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x169bbffc v4l2_m2m_ioctl_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1b9a3d45 v4l2_m2m_ioctl_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x21858337 v4l2_m2m_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x2bbd6dd8 v4l2_m2m_ioctl_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x2f164d5d v4l2_m2m_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3444df03 v4l2_m2m_ioctl_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x489e9ffc v4l2_m2m_ioctl_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x54e7f64c v4l2_m2m_encoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x553a72ad v4l2_m2m_next_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5a570235 v4l2_m2m_ioctl_decoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5a8e0578 v4l2_m2m_ioctl_try_encoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5ebd3f7a v4l2_m2m_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5f9ba23a v4l2_m2m_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6244c753 v4l2_m2m_update_stop_streaming_state -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7249bd01 v4l2_m2m_ctx_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x6aaef6a2 v4l2_fwnode_endpoint_alloc_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x7ce2d51c v4l2_fwnode_device_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x966d4b0e v4l2_async_notifier_parse_fwnode_endpoints +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xa3619737 v4l2_fwnode_endpoint_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xa9ee1b19 v4l2_fwnode_put_link +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xc577ac85 v4l2_fwnode_connector_add_link +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xc922784d v4l2_async_register_subdev_sensor +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xcd60e1f5 v4l2_fwnode_connector_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x01248313 v4l2_m2m_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0cf6b5f8 v4l2_m2m_ctx_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x156d9cda v4l2_m2m_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1f6cac0b v4l2_m2m_register_media_controller +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x25cd0b28 v4l2_m2m_ioctl_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x2fdd1cb3 v4l2_m2m_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x47b08507 v4l2_m2m_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x482f70fe v4l2_m2m_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4b6cc4c8 v4l2_m2m_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5571aec2 v4l2_m2m_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x56f74c7f v4l2_m2m_fop_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5cf18af8 v4l2_m2m_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5ef82873 v4l2_m2m_ctx_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x61772bc5 v4l2_m2m_last_buf EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x730f2eae v4l2_m2m_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x73534fea v4l2_m2m_fop_mmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x814b61bf v4l2_m2m_ioctl_try_decoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x82f2eedd v4l2_m2m_ioctl_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x835ce24d v4l2_m2m_buf_copy_metadata -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x96a64481 v4l2_m2m_ioctl_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x9bce14ed v4l2_m2m_buf_remove_by_idx -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa41250a8 v4l2_m2m_decoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa71667ca v4l2_m2m_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa7d2049f v4l2_m2m_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xacc45a88 v4l2_m2m_request_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb4042776 v4l2_m2m_try_schedule -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb5e66787 v4l2_m2m_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb6db029b v4l2_m2m_fop_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb9536de8 v4l2_m2m_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7d63d664 v4l2_m2m_ioctl_try_encoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8085901f v4l2_m2m_buf_remove +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8eb503a4 v4l2_m2m_try_schedule +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8edd345d v4l2_m2m_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x93531fdb v4l2_m2m_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa37dbda0 v4l2_m2m_ioctl_try_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa85a8c2a v4l2_m2m_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa9233a60 v4l2_m2m_ioctl_stateless_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa9686527 v4l2_m2m_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb229866e v4l2_m2m_last_buffer_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb7548926 v4l2_m2m_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb837b57c v4l2_m2m_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc220a30f v4l2_m2m_expbuf EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc6fca5ad v4l2_m2m_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc890d181 v4l2_m2m_update_start_streaming_state -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc9800e54 v4l2_m2m_ctx_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xcd14a47d v4l2_m2m_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd6c70966 v4l2_m2m_last_buffer_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xdb75246c v4l2_m2m_register_media_controller -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xdec4017b v4l2_m2m_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe6c6e0eb v4l2_m2m_ioctl_stateless_try_decoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xeb42e568 v4l2_m2m_buf_remove +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc96f541a v4l2_m2m_buf_copy_metadata +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xcd406286 v4l2_m2m_next_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xcee96bb1 v4l2_m2m_buf_remove_by_idx +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd5c04707 v4l2_m2m_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd7390bc0 v4l2_m2m_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd88c420f v4l2_m2m_ioctl_encoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe3981242 v4l2_m2m_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe85ba752 v4l2_m2m_update_start_streaming_state +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xed0753f0 v4l2_m2m_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf06ab814 v4l2_m2m_update_stop_streaming_state EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf13ff84d v4l2_m2m_unregister_media_controller -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf2d7c044 v4l2_m2m_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf8f175e2 v4l2_m2m_ioctl_encoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf90d3bee v4l2_m2m_last_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xfd14a8a1 v4l2_m2m_buf_remove_by_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x0feab220 __videobuf_mmap_setup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x15478481 videobuf_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x1b85e680 videobuf_mmap_mapper -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x1fffb7e5 videobuf_next_field -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x238db2e9 videobuf_queue_core_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x30785ed1 videobuf_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x32528ef5 videobuf_queue_cancel -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x36b57b43 videobuf_read_start -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x4e025047 videobuf_alloc_vb -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x50400564 videobuf_waiton -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x5ca2fc0a videobuf_iolock -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x617829ad videobuf_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x6dd62cc9 videobuf_read_stream -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x77c17a2f videobuf_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x838f0a91 videobuf_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xa9d49c80 videobuf_mmap_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xc5b6e9ba videobuf_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xcb6c9a9b videobuf_queue_is_busy -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd7bc349a videobuf_queue_to_vaddr -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xddcfb159 videobuf_read_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xe344325f videobuf_poll_stream -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xf487a487 videobuf_read_one -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xf4f860bc videobuf_mmap_setup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xf538ca2d videobuf_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf2e60dbc v4l2_m2m_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf30c0283 v4l2_m2m_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf741e938 v4l2_m2m_request_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf756a068 v4l2_m2m_encoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf8644b6d v4l2_m2m_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xfc8753bc v4l2_m2m_ioctl_stateless_try_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xfef5ae25 v4l2_m2m_buf_remove_by_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x022e186e videobuf_read_one +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x13a72752 __videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x1916be4e videobuf_mmap_mapper +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x1fff1585 videobuf_queue_cancel +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x34a137d7 videobuf_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x4994e725 videobuf_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x4f9a4e0b videobuf_queue_to_vaddr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x54fdc6a1 videobuf_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x5a376d7e videobuf_iolock +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x66398bba videobuf_read_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x889755f7 videobuf_queue_is_busy +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x9013977f videobuf_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x9981f453 videobuf_read_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x9fa45bc1 videobuf_next_field +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xaf172903 videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xb4b2f744 videobuf_queue_core_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xb5d17dd3 videobuf_poll_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xbae8b027 videobuf_waiton +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xc17667dd videobuf_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xc3f0b58c videobuf_alloc_vb +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xcfde58eb videobuf_read_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd2b21e28 videobuf_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd43a1b99 videobuf_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xfb114c69 videobuf_mmap_free EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x553a86d0 videobuf_sg_alloc -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x7f3489df videobuf_dma_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xb360ddb8 videobuf_queue_sg_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xea49f9f7 videobuf_to_dma -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xef448600 videobuf_dma_unmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x5e14d131 videobuf_queue_vmalloc_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x7320a075 videobuf_vmalloc_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x864ad858 videobuf_to_vmalloc -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x05edc4b3 __traceiter_vb2_v4l2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x075f446f v4l2_i2c_subdev_set_name -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0d07190d v4l2_event_subscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x10f86a25 __SCK__tp_func_vb2_v4l2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x11156345 v4l2_event_pending -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x130529b4 v4l2_pipeline_pm_get -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x15e03693 v4l2_create_fwnode_links -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x16fd5e68 v4l2_mc_create_media_graph -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1808340e v4l2_fh_add -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1c9b3087 v4l2_spi_new_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1e499c6c __SCK__tp_func_vb2_v4l2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x20efffdd __SCK__tp_func_vb2_v4l2_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2460c045 v4l2_i2c_subdev_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x25596f1f v4l2_event_wake_all -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x278fb4af __traceiter_vb2_v4l2_buf_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x297ef161 v4l2_event_queue_fh -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2eb2406d v4l2_create_fwnode_links_to_pad -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x30ae47fc v4l2_get_link_freq -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3585692c __tracepoint_vb2_v4l2_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3c23ea00 v4l2_device_register_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x43bc8c79 v4l2_spi_subdev_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x46961ee9 v4l2_compat_ioctl32 -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x54a935ff v4l2_src_change_event_subdev_subscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x66ad79c5 v4l2_subdev_get_fwnode_pad_1_to_1 +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x6111983f videobuf_queue_sg_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x79e385ab videobuf_dma_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xd4a17e7d videobuf_dma_unmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xf1b44e3a videobuf_to_dma +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0xc3831b08 videobuf_to_vmalloc +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0xd84e1fef videobuf_queue_vmalloc_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0xe8a24581 videobuf_vmalloc_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x043025fd v4l2_g_parm_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x043186bf v4l2_device_unregister +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0dcbe242 v4l2_fh_del +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1611953c __traceiter_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1806fd51 v4l2_src_change_event_subdev_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x183d77b6 v4l2_spi_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x19230b87 __tracepoint_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1a0f9856 v4l2_device_put +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1b0cdf5a v4l2_device_set_name +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1b8b2850 v4l2_ctrl_request_hdl_ctrl_find +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1bd99e70 v4l2_event_subdev_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1beb60ec v4l2_i2c_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1e53202d __tracepoint_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x210d42e6 v4l2_event_pending +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x21b43f2f __traceiter_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x27ab99b0 v4l2_pipeline_pm_get +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x28a4a849 v4l2_subdev_link_validate_default +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x28c3c293 v4l2_create_fwnode_links +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x353fa948 v4l2_fh_add +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3f4f09d4 v4l2_i2c_subdev_set_name +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3f86cd39 __SCK__tp_func_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x40a97e9e __traceiter_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x46da33da __v4l2_ctrl_handler_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x491e6a06 v4l2_i2c_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4a2b64b4 v4l2_create_fwnode_links_to_pad +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4e62c3f4 v4l2_fh_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x59358815 v4l2_subdev_link_validate +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5a66f0f8 v4l2_pipeline_pm_put +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x654c550b v4l2_src_change_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6cbffcd4 __SCK__tp_func_vb2_v4l2_dqbuf EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6d3d6bc6 __SCT__tp_func_vb2_v4l2_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6d75122d v4l2_fh_exit -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6e078dfc v4l2_subdev_alloc_state EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6e9acc41 v4l2_fill_pixfmt_mp -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6f23b38a v4l_disable_media_source -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x72c4e01e v4l2_event_subdev_unsubscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7ce42690 v4l2_i2c_new_subdev_board -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7f4c8e38 v4l2_src_change_event_subscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7f67b156 __traceiter_vb2_v4l2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7fecb687 v4l2_fh_is_singular -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x81c3f31b __tracepoint_vb2_v4l2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x82b0217a v4l2_subdev_notify_event -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x898f3480 v4l2_fh_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8cbab341 v4l2_event_dequeue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8ecfab09 v4l2_device_unregister -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8fe6658a v4l2_event_unsubscribe_all -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x90819332 __SCK__tp_func_vb2_v4l2_buf_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x928c41aa __v4l2_ctrl_handler_setup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x962de849 __traceiter_vb2_v4l2_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x98658d4e v4l2_i2c_new_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9993e3b1 v4l2_device_unregister_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9a40a151 v4l2_pipeline_link_notify +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x769322aa v4l2_event_wake_all +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7962ed22 v4l_enable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7d594a40 v4l2_pipeline_link_notify +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x815c8fec v4l2_device_disconnect +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x835680f4 v4l2_s_parm_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8730c6ff v4l2_device_unregister_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x98d0e713 v4l2_fh_open +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9bc8fb08 v4l2_event_dequeue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9f0af283 v4l2_event_unsubscribe_all EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9fef35ac v4l2_apply_frmsize_constraints -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa0a67801 v4l_vb2q_enable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9ff24e04 v4l2_spi_subdev_init EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa1893d14 __SCT__tp_func_vb2_v4l2_buf_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa48fbc18 v4l2_device_set_name -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa4da0155 v4l2_i2c_subdev_addr -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa50a4174 __tracepoint_vb2_v4l2_buf_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xac98d6f5 v4l2_device_disconnect +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa47c57f7 v4l2_ctrl_request_hdl_find +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa5cb79f7 __tracepoint_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xaaff4fe8 v4l2_i2c_subdev_addr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xad07870d v4l_disable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xad7b24e6 __tracepoint_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xaf11caf2 v4l2_subdev_get_fwnode_pad_1_to_1 +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xaf6448bd v4l2_subdev_alloc_state EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb13d41a0 v4l2_subdev_free_state -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb21062ec v4l2_device_put -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc2dd06b1 v4l2_subdev_link_validate +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb2843bf7 __v4l2_device_register_subdev_nodes +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb70fa685 v4l2_fh_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb996d473 v4l2_fh_is_singular +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbb384d5b v4l2_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbb96b913 __SCK__tp_func_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbc062bfa v4l2_device_register +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbd0fe3c8 v4l_vb2q_enable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc6fba733 v4l2_compat_ioctl32 EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc8dd867f __SCT__tp_func_vb2_v4l2_buf_queue EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcc501597 v4l2_fill_pixfmt -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd0037035 v4l2_g_parm_cap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd0c8116a v4l2_pipeline_pm_put -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd4c5da2a __v4l2_device_register_subdev_nodes +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd053f947 __traceiter_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd140cc76 v4l2_subdev_notify_event EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd541e31a __SCT__tp_func_vb2_v4l2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd5d114ce v4l2_ctrl_request_hdl_ctrl_find -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd866d58d v4l2_fh_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xda57c239 __tracepoint_vb2_v4l2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe050956c v4l2_device_register -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe1cf4976 v4l_enable_media_source -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe2370cf5 v4l2_s_parm_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd5dea533 v4l2_fh_exit +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd987e50b v4l2_event_queue_fh EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe2822320 __v4l2_find_nearest_size -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xec5ccd78 v4l2_subdev_link_validate_default -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xee05c20a v4l2_fh_open +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe55c9bca v4l2_get_link_freq +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe9c78f49 v4l2_event_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xeb247306 __SCK__tp_func_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xefca3360 v4l2_mc_create_media_graph +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf1663789 v4l2_i2c_new_subdev_board 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 0xf976a254 v4l2_ctrl_request_hdl_find -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfa44050d v4l2_event_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfbce075a v4l2_event_unsubscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfc55e70b v4l2_fh_del -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x087e92ca pm80x_pm_ops -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xcfe86da7 pm80x_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfcf1f7e4 v4l2_device_register_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfdfe803f v4l2_event_queue +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x1980643f pm80x_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x554dac6b pm80x_init +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x569f0180 pm80x_regmap_config EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xd99fd720 pm80x_deinit -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xeea31a0f pm80x_regmap_config -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x18cfb193 wm5110_patch -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x19346dbb wm5110_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x29bd7c93 cs47l24_patch -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x39fbf59d arizona_dev_exit -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x3e928956 arizona_set_irq_wake +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x0168b932 wm5102_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x01722bec arizona_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x146208ed arizona_clk32k_disable +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x3730c4de arizona_free_irq EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x4048fbbc wm8997_aod +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x4250787e wm5102_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x4767e09f wm5110_patch EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x4c087981 wm5110_aod -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x5a0cacf7 wm5110_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x636ea7e6 arizona_pm_ops -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x82820cdf arizona_request_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x4de49537 cs47l24_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x53a2ae8a wm8998_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x74d27bbf wm8997_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x8aa68eca cs47l24_patch +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x945daff0 arizona_dev_exit EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xa6b70564 wm8997_irq EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xa727bd3b cs47l24_irq -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xa75ff8ca wm5102_i2c_regmap EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xaaf78759 wm5110_irq -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xb0404291 wm8997_patch -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xc6ef056d arizona_clk32k_disable +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xbf032c43 wm5110_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xc7a0c3cb wm8997_patch EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xc81b43ab wm5110_revd_irq -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xce77713a arizona_clk32k_enable -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xd2e53a47 wm8997_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xd8a72e96 arizona_free_irq -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xe11b632b arizona_dev_init -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xe4673986 wm5102_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xf595ef72 wm8998_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xfe24d858 cs47l24_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0x1794c78c atc260x_match_device -EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0x749d0547 atc260x_device_probe -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x334838be da9150_bulk_write -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x3f2a4bf9 da9150_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x6b0c6c2d da9150_read_qif -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x81295c59 da9150_set_bits -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x957e12fb da9150_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xeda9e19b da9150_bulk_read -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xfe79ef49 da9150_write_qif -EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x810d582e intel_lpss_suspend -EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x8cfe506b intel_lpss_probe -EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0xbeb460f7 intel_lpss_resume -EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0xf46a9ae3 intel_lpss_remove -EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0xfa469163 intel_lpss_prepare -EXPORT_SYMBOL_GPL drivers/mfd/intel_pmc_bxt 0x4294701f intel_pmc_gcr_read64 -EXPORT_SYMBOL_GPL drivers/mfd/intel_pmc_bxt 0x62da873f intel_pmc_s0ix_counter_read -EXPORT_SYMBOL_GPL drivers/mfd/intel_pmc_bxt 0xb08c80e2 intel_pmc_gcr_update +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xca1a119b arizona_clk32k_enable +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xce8d0521 arizona_request_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xcf6bae0f arizona_dev_init +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xf14e98f1 arizona_set_irq_wake +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xfc3bed0f wm5110_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0x5eff92ce atc260x_device_probe +EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0xd565db13 atc260x_match_device +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x37efc300 da9150_bulk_read +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x47297807 da9150_bulk_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x54e67d02 da9150_read_qif +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x5cc4f549 da9150_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x69d04220 da9150_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xc686e517 da9150_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xd4b8f2a5 da9150_write_qif +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x3ffcb9ca intel_lpss_resume +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x5c11f80e intel_lpss_suspend +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x645c46d4 intel_lpss_probe +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0xda084209 intel_lpss_remove +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0xdc37ed0e intel_lpss_prepare +EXPORT_SYMBOL_GPL drivers/mfd/intel_pmc_bxt 0x34556501 intel_pmc_gcr_read64 +EXPORT_SYMBOL_GPL drivers/mfd/intel_pmc_bxt 0x640d3bea intel_pmc_s0ix_counter_read +EXPORT_SYMBOL_GPL drivers/mfd/intel_pmc_bxt 0x898a7cd1 intel_pmc_gcr_update EXPORT_SYMBOL_GPL drivers/mfd/iqs62x 0xa436f4de iqs62x_events -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x5268ecf0 kempld_write8 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x61bbd4d8 kempld_release_mutex -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x80425f3f kempld_read8 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x8850ed6f kempld_write16 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x906e4e5a kempld_read16 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xababcc8d kempld_read32 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xb4e35df6 kempld_get_mutex -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xcf5f3245 kempld_write32 -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x18d15001 lm3533_update -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xca69b459 lm3533_read -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xfb6eb336 lm3533_write -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x13602783 lm3533_ctrlbank_get_brightness -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x14ea8129 lm3533_ctrlbank_set_pwm -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x40dad908 lm3533_ctrlbank_disable -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x70fd575b lm3533_ctrlbank_get_pwm -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x96f08392 lm3533_ctrlbank_set_max_current -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xbbba591f lm3533_ctrlbank_enable -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xc1a6a8a1 lm3533_ctrlbank_set_brightness -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x10493b7d lp3943_write_byte -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x5e618abe lp3943_update_bits -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xa153426f lp3943_read_byte +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x02e2615d kempld_write32 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x37657b8e kempld_release_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x88b1b1fe kempld_get_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x9e8fa8c9 kempld_read16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xa54c38da kempld_read32 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xa794770a kempld_write16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xdba38f2f kempld_read8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xf0f74ca2 kempld_write8 +EXPORT_SYMBOL_GPL drivers/mfd/ljca 0x0a56540c ljca_transfer +EXPORT_SYMBOL_GPL drivers/mfd/ljca 0x98d4ad26 ljca_register_event_cb +EXPORT_SYMBOL_GPL drivers/mfd/ljca 0x9d247e57 ljca_transfer_noack +EXPORT_SYMBOL_GPL drivers/mfd/ljca 0xe21cebd7 ljca_unregister_event_cb +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x02f16bbd lm3533_update +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xb2e9e297 lm3533_write +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xc8a89c9e lm3533_read +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x2e411552 lm3533_ctrlbank_enable +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x40f645f2 lm3533_ctrlbank_set_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x4c01f5d6 lm3533_ctrlbank_set_max_current +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x5725497a lm3533_ctrlbank_set_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x5add4521 lm3533_ctrlbank_disable +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x5c4d3681 lm3533_ctrlbank_get_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xcf46cd2e lm3533_ctrlbank_get_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x0a2d5c9e lp3943_write_byte +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x7ac2b039 lp3943_update_bits +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xca5b3cb5 lp3943_read_byte +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x0197fa73 cs47l35_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x019a2633 cs47l35_32bit_spi_regmap EXPORT_SYMBOL_GPL drivers/mfd/madera 0x0f379262 madera_of_match -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x22055bdc cs47l90_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x23c0df87 cs47l15_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x23cd03c7 cs47l15_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x3cf42a99 madera_dev_exit -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x60f5c28b cs47l15_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x60f81ecb cs47l15_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x6674e509 cs47l35_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x7540201a madera_pm_ops -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x8091848f cs47l90_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x809c58cf cs47l90_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x82cfe69a cs47l92_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x93668bed madera_dev_init -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x9844f33f cs47l85_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x98492f7f cs47l85_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xa70beebe cs47l85_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xaa366847 cs47l35_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xaa3bb407 cs47l35_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xb7109f72 cs47l92_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xb71d4332 cs47l92_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xc3a49983 cs47l90_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xc3a945c3 cs47l90_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xdb71ee33 cs47l85_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xdb7c3273 cs47l85_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xe903754b cs47l35_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xe90ea90b cs47l35_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x1cb10d46 cs47l92_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x1cbcd106 cs47l92_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x2b3016bb cs47l90_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x2b3dcafb cs47l90_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x33e5610b cs47l85_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x33e8bd4b cs47l85_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x35ff6ef3 madera_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x42a2e77f cs47l35_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x42af3b3f cs47l35_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x45e95ce1 cs47l92_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x5e5ffb11 cs47l85_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x5f84104a cs47l92_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x5f89cc0a cs47l92_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x68050bb7 cs47l90_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x6808d7f7 cs47l90_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x70d07c07 cs47l85_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x70dda047 cs47l85_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x8456e973 cs47l90_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x88614db3 cs47l15_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x886c91f3 cs47l15_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xadfde4b1 madera_dev_init +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xc78669ab cs47l15_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xcb5450bf cs47l15_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xcb598cff cs47l15_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xd80ebb71 madera_dev_exit +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xd9462476 cs47l35_patch EXPORT_SYMBOL_GPL drivers/mfd/madera 0xebe384cb madera_name_from_type -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xf425827e cs47l92_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xf4285e3e cs47l92_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xf96bcb11 cs47l15_patch -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x000c598f mc13xxx_variant_mc13783 -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x1203ace7 mc13xxx_variant_mc34708 -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x40b612af mc13xxx_variant_mc13892 -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x8795cb00 mc13xxx_common_init -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xb806d3c6 mc13xxx_adc_do_conversion -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xbf6143db mc13xxx_common_exit -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x13d3185d pcf50633_reg_set_bit_mask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x1905ad36 pcf50633_irq_unmask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x6292548d pcf50633_free_irq -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x63779165 pcf50633_register_irq -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x774494a9 pcf50633_irq_mask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x9d9ef1f7 pcf50633_reg_clear_bits -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xab2d77ff pcf50633_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xacd626d4 pcf50633_irq_mask_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xcf12dca7 pcf50633_write_block -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xd6432245 pcf50633_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xef788de3 pcf50633_read_block -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x31adf889 pcf50633_adc_sync_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0xc1f5deec pcf50633_adc_async_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x03289851 pcf50633_gpio_power_supply_set -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x5abef61e pcf50633_gpio_invert_set -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x5f75d296 pcf50633_gpio_invert_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x8253ff0a pcf50633_gpio_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x88fdc0ab pcf50633_gpio_set +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x2c70607f mc13xxx_common_init +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x7f78c189 mc13xxx_adc_do_conversion +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xb839763c mc13xxx_variant_mc13892 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xea8cc874 mc13xxx_variant_mc34708 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xf8833d1c mc13xxx_variant_mc13783 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xff7c87a6 mc13xxx_common_exit +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x0ecd1c64 pcf50633_irq_mask_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x1a3661d2 pcf50633_free_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x2fe9b7b2 pcf50633_read_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x415aaada pcf50633_reg_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x4e8f2b34 pcf50633_reg_set_bit_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x4fa8d7a2 pcf50633_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x53912032 pcf50633_write_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x7c23e759 pcf50633_irq_unmask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x821523f7 pcf50633_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x93a24f68 pcf50633_register_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xb3cbb775 pcf50633_irq_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x9bb4904c pcf50633_adc_async_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0xefa25e2a pcf50633_adc_sync_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x48c92186 pcf50633_gpio_power_supply_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x4fcf5e51 pcf50633_gpio_invert_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x81f11eec pcf50633_gpio_invert_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x9fc984e1 pcf50633_gpio_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xb026f0e1 pcf50633_gpio_get EXPORT_SYMBOL_GPL drivers/mfd/rave-sp 0x43e53ef9 rave_sp_exec -EXPORT_SYMBOL_GPL drivers/mfd/rave-sp 0x7f729771 devm_rave_sp_register_event_notifier +EXPORT_SYMBOL_GPL drivers/mfd/rave-sp 0xb7f76b98 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 0x12a4cc30 si476x_core_cmd_get_property -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x14bfbc13 si476x_core_cmd_am_tune_freq -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x161ca3b9 si476x_core_cmd_zif_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x1a7441d9 si476x_core_cmd_fm_seek_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x1e2d4310 si476x_core_cmd_intb_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x21219835 si476x_core_cmd_fm_phase_div_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x24506a01 si476x_core_cmd_fm_rsq_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x24f64d4a si476x_core_has_diversity -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x25c2c712 si476x_core_cmd_ana_audio_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x2c0c3483 si476x_core_cmd_dig_audio_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3ca8240a si476x_core_stop -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3fe9c0bd si476x_core_cmd_power_up -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4746adc7 si476x_core_cmd_power_down -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x47ae83a4 si476x_core_cmd_set_property -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4c783783 si476x_core_is_a_primary_tuner -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x63033279 si476x_core_cmd_am_acf_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x633f21af si476x_core_cmd_func_info -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6459df6f si476x_core_i2c_xfer -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x66653175 si476x_core_cmd_ic_link_gpo_ctl_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x68fa845c si476x_core_cmd_am_rsq_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x690e2265 si476x_core_cmd_fm_rds_blockcount -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x73615235 si476x_core_is_a_secondary_tuner -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x76bd5fdc si476x_core_has_am -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x869e4cdb si476x_core_is_in_am_receiver_mode -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x894003e5 si476x_core_cmd_am_seek_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9fdbc110 si476x_core_cmd_agc_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb1d907c7 si476x_core_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xba1dd68f si476x_core_cmd_fm_phase_diversity -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd75d2d79 si476x_core_cmd_fm_acf_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xdce859a6 si476x_core_set_power_state -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe1bb8d2e si476x_core_cmd_fm_tune_freq -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xeff9473f devm_regmap_init_si476x -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf0940d0e si476x_core_cmd_fm_rds_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xfb381c9c si476x_core_is_powered_up -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x1c3132fe sm501_unit_power -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x38e475eb sm501_modify_reg -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x8a1e02d1 sm501_misc_control -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xa25a3dbd sm501_set_clock -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xbc1c166d sm501_find_clock -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x1c1eb151 am335x_tsc_se_set_once -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x1f0d1d10 am335x_tsc_se_set_cache -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x34c6116d am335x_tsc_se_adc_done -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x8f4d6adc am335x_tsc_se_clr -EXPORT_SYMBOL_GPL drivers/mfd/ucb1400_core 0x0b4749fb ucb1400_adc_read -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x8f731a78 alcor_read8 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xa5b18d17 alcor_write8 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xbc20bb33 alcor_write16 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xce4c9643 alcor_write32be -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xda846ec8 alcor_read32be -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xe8860c43 alcor_read32 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xf70f69da alcor_write32 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x036e564b rtsx_pci_switch_clock -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x440a76ef rtsx_pci_card_exist -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x50c7aa84 rtsx_pci_read_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x634befdd rtsx_pci_card_pull_ctl_enable -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x65e56403 rtsx_pci_dma_transfer -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x6ef7a534 rtsx_pci_dma_unmap_sg -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x71adcad3 rtsx_pci_send_cmd_no_wait -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x7dd6e4e1 rtsx_pci_switch_output_voltage -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x8175bdcb rtsx_pci_start_run -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x8e597b35 rtsx_pci_write_phy_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xa53c9b21 rtsx_pci_card_power_off -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xa6a409d9 rtsx_pci_dma_map_sg -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xaf01c739 rtsx_pci_read_phy_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xbe1035d6 rtsx_pci_stop_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xc413a962 rtsx_pci_write_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xd032ff0a rtsx_pci_card_pull_ctl_disable -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xd36841fa rtsx_pci_card_power_on -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xd43f96cf rtsx_pci_write_ppbuf -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xd6097131 rtsx_pci_card_exclusive_check -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xd918a970 rtsx_pci_complete_unfinished_transfer -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xe07c287e rtsx_pci_transfer_data -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xe22990e8 rtsx_pci_read_ppbuf -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xf2effadd rtsx_pci_add_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xf73c021b rtsx_pci_send_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x0a001e0a rtsx_usb_ep0_write_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x0bc2d5a0 rtsx_usb_ep0_read_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x25a397f3 rtsx_usb_switch_clock -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x4550b5d0 rtsx_usb_add_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x4acc1c84 rtsx_usb_write_ppbuf -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x4c3c1e54 rtsx_usb_get_rsp -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x4c6263ea rtsx_usb_transfer_data -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x70767a6c rtsx_usb_read_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x9dd8681c rtsx_usb_card_exclusive_check -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xa2587f54 rtsx_usb_get_card_status -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xa3c196e1 rtsx_usb_write_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xbf50bf96 rtsx_usb_read_ppbuf -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xddc7ef19 rtsx_usb_send_cmd -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x22175a25 cb710_sg_dwiter_write_next_block -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x2c32fb47 cb710_sg_dwiter_read_next_block -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xa9b79737 cb710_pci_update_config_reg -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xfbc1bf5d cb710_set_irq_handler +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x032f0af0 si476x_core_cmd_fm_rds_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0a3fb4d1 si476x_core_cmd_agc_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0f362805 si476x_core_cmd_fm_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x11ca0531 si476x_core_cmd_intb_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x1389beab si476x_core_cmd_power_down +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x155ec0a3 si476x_core_cmd_ic_link_gpo_ctl_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x18919527 devm_regmap_init_si476x +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x246c04d0 si476x_core_cmd_fm_phase_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x24dc1d68 si476x_core_cmd_am_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x36d2264d si476x_core_cmd_set_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x565fd2b9 si476x_core_cmd_am_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5ede625c si476x_core_cmd_func_info +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x66a9f406 si476x_core_is_a_secondary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6d2015b2 si476x_core_cmd_get_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x78be4818 si476x_core_has_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7b457b8c si476x_core_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8b3cad3c si476x_core_cmd_fm_phase_div_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x936e3029 si476x_core_is_a_primary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x98e0f45b si476x_core_cmd_zif_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa1a1b81d si476x_core_stop +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xaacfe36d si476x_core_cmd_fm_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb372e9fb si476x_core_cmd_fm_rds_blockcount +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb7533dc0 si476x_core_cmd_ana_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb7e5874c si476x_core_cmd_fm_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc10b06ae si476x_core_is_powered_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc7f1703a si476x_core_set_power_state +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xcb758d6f si476x_core_i2c_xfer +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xccdd8af8 si476x_core_is_in_am_receiver_mode +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd01f2576 si476x_core_cmd_am_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd692a735 si476x_core_cmd_dig_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe41d68b9 si476x_core_cmd_am_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe5a1bd20 si476x_core_cmd_fm_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf38a607d si476x_core_has_am +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf52dff5b si476x_core_cmd_power_up +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x2e283bf1 sm501_set_clock +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x8ff54004 sm501_find_clock +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xa199da6c sm501_unit_power +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xd8260f8c sm501_modify_reg +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xff8e9d90 sm501_misc_control +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x3b4eaf98 am335x_tsc_se_clr +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x3eb39b12 am335x_tsc_se_adc_done +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x7a303317 am335x_tsc_se_set_once +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xc367def3 am335x_tsc_se_set_cache +EXPORT_SYMBOL_GPL drivers/mfd/ucb1400_core 0x6e03d31c ucb1400_adc_read +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x184a8439 alcor_read8 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x3306f075 alcor_write16 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x37f7c23b alcor_read32be +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x48041fb2 alcor_read32 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xa7204448 alcor_write32 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xbd39005b alcor_write32be +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xec925803 alcor_write8 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x15b70775 rtsx_pci_dma_map_sg +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x2bb4305a rtsx_pci_card_power_on +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x36068a7f rtsx_pci_read_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x381693e7 rtsx_pci_read_phy_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x397adce7 rtsx_pci_switch_output_voltage +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x39b8f302 rtsx_pci_card_pull_ctl_enable +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x51b58f72 rtsx_pci_switch_clock +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x52fdc2e9 rtsx_pci_card_exist +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x55b5ffda rtsx_pci_complete_unfinished_transfer +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x5b053cd7 rtsx_pci_write_phy_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x8935fb7b rtsx_pci_dma_unmap_sg +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x89ef7495 rtsx_pci_card_pull_ctl_disable +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x8f396aa9 rtsx_pci_write_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x9981b740 rtsx_pci_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x9d861c74 rtsx_pci_start_run +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xa3deca88 rtsx_pci_add_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xacfd9a58 rtsx_pci_stop_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xbdbd436d rtsx_pci_send_cmd_no_wait +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xdb3ee7d3 rtsx_pci_read_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xe1b1bbef rtsx_pci_transfer_data +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xe9787ad7 rtsx_pci_dma_transfer +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xf02b2c87 rtsx_pci_card_power_off +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xf4c94d23 rtsx_pci_send_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xfde8a7aa rtsx_pci_write_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x016bdb6b rtsx_usb_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x16c03396 rtsx_usb_read_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x28a10fd3 rtsx_usb_write_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x2dee5f8b rtsx_usb_get_card_status +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x39ba4bb2 rtsx_usb_send_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x3ff3fc6f rtsx_usb_ep0_write_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x51117b9f rtsx_usb_switch_clock +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x5a703d7f rtsx_usb_read_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x84acefcd rtsx_usb_add_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xc7777270 rtsx_usb_get_rsp +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xdc47f1b5 rtsx_usb_write_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xe0fee2f2 rtsx_usb_ep0_read_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xe458db1d rtsx_usb_transfer_data +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x41e6cfea cb710_sg_dwiter_read_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x5cb93ecd cb710_pci_update_config_reg +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x875fd94e cb710_sg_dwiter_write_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xc6521962 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 @@ -14428,55 +14503,61 @@ 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 0x37441d39 enclosure_remove_device -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x3a231ef1 enclosure_find -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x40bedbf4 enclosure_register -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x415b9f59 enclosure_component_register -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xb172e7e2 enclosure_for_each_device -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xcda7dd21 enclosure_add_device -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xd63cc6f1 enclosure_unregister -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xd79dd51c enclosure_component_alloc -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x106467c6 lis3lv02d_joystick_disable -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x4111e0e0 lis3lv02d_init_dt -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x8e716882 lis3lv02d_remove_fs -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xa28dc433 lis3lv02d_poweron -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xd05d5f24 lis3lv02d_init_device -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xe55aaa8d lis3_dev -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xf3946113 lis3lv02d_joystick_enable -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xf539da4f lis3lv02d_poweroff -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x180f8eac mei_deregister -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x1c89ebd2 mei_cldev_get_drvdata -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x210c0f08 __mei_cldev_driver_register -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x30480dde mei_cldev_disable -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x32236015 mei_cldev_ver -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x33282a36 mei_cldev_recv_nonblock_vtag -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x38c66145 mei_cldev_recv_vtag -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x3ee2cf17 mei_restart -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x419d0de1 mei_hbm_pg -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x4bcdd1cc mei_cldev_set_drvdata -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x5c4fbb70 mei_cldev_recv -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x5e610889 mei_irq_compl_handler -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x5f4a4b40 mei_register -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x5f770e01 mei_write_is_idle -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x6300aa26 mei_cldev_enable -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x6715e9b5 mei_cldev_send_vtag -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x6f059767 mei_cldev_register_notif_cb -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x7756e4b6 mei_cldev_send -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x7dfbd437 mei_cldev_register_rx_cb -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x8a15ffc7 mei_start -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x8ac5ae47 mei_reset -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x8c035eb9 mei_cldev_recv_nonblock +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x1ea20fc1 enclosure_add_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x3364c36d enclosure_find +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x33992907 enclosure_component_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x74bd61dd enclosure_remove_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x7a289a01 enclosure_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x91e73cd5 enclosure_for_each_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x9cc184c7 enclosure_unregister +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xff5839e0 enclosure_component_alloc +EXPORT_SYMBOL_GPL drivers/misc/ivsc/intel_vsc 0x11ec310c vsc_unregister_csi +EXPORT_SYMBOL_GPL drivers/misc/ivsc/intel_vsc 0x45138f90 vsc_register_csi +EXPORT_SYMBOL_GPL drivers/misc/ivsc/intel_vsc 0x5763033e vsc_acquire_camera_sensor +EXPORT_SYMBOL_GPL drivers/misc/ivsc/intel_vsc 0x6b97696c vsc_release_camera_sensor +EXPORT_SYMBOL_GPL drivers/misc/ivsc/intel_vsc 0x77b2fb7c vsc_unregister_ace +EXPORT_SYMBOL_GPL drivers/misc/ivsc/intel_vsc 0xfaaaa50d vsc_register_ace +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x10038a83 lis3lv02d_joystick_enable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x4a4732ee lis3lv02d_poweroff +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x7f3862e3 lis3lv02d_init_dt +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x827a7d1d lis3lv02d_joystick_disable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x95d3b28e lis3lv02d_init_device +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xc21237e1 lis3_dev +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xcec7b196 lis3lv02d_remove_fs +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xd7494fb2 lis3lv02d_poweron +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x04e81a89 mei_cldev_send +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x0e5f646b mei_cldev_set_drvdata +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x1df61fde mei_device_init +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x223e4804 mei_cldev_send_vtag +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x2861ac0a mei_cldev_enabled +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x2fea9da2 mei_irq_read_handler +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x30245db9 mei_reset +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x318f6759 mei_deregister +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x31a84228 mei_restart +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x34022685 mei_cldev_register_rx_cb +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x47921469 mei_cldev_disable +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x5b9123df mei_cldev_uuid +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x5e296763 mei_hbm_pg +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x663c5897 mei_cancel_work +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x683ba6e6 mei_stop +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x756e1ecb mei_write_is_idle +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x76603f6e mei_hbm_pg_resume +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x79094d4b mei_cldev_ver +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x7aea8e04 mei_cldev_recv +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x7bb450c3 mei_cldev_recv_nonblock_vtag +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x7ebe576f mei_cldev_get_drvdata +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x834e9e65 mei_cldev_recv_vtag EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x90a24af4 mei_fw_status2str -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xa9ac28d4 mei_device_init -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xac761d8f mei_cldev_enabled -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xb10a232f mei_cancel_work -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xbaecfe0a mei_irq_read_handler -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xbf72274f mei_cldev_uuid -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xc9006e71 mei_irq_write_handler -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xd02e4c29 mei_cldev_driver_unregister -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xf0dbdc40 mei_stop -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xfa0ad501 mei_hbm_pg_resume -EXPORT_SYMBOL_GPL drivers/misc/pvpanic/pvpanic 0x7d586964 devm_pvpanic_probe +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x930fc6d8 mei_cldev_register_notif_cb +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xa09d2a31 mei_irq_compl_handler +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xa521f245 mei_cldev_enable +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xad643528 mei_irq_write_handler +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xc83b053c __mei_cldev_driver_register +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xd358f6da mei_cldev_driver_unregister +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xdcc6d586 mei_register +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xdeb1d2bc mei_cldev_recv_nonblock +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xf6151340 mei_start +EXPORT_SYMBOL_GPL drivers/misc/pvpanic/pvpanic 0x7d2f3a5d 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 @@ -14500,16 +14581,16 @@ EXPORT_SYMBOL_GPL drivers/misc/sgi-xp/xp 0xf3b47f67 xp_partition_id EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0x472340b2 st_unregister EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0xc8e56e36 st_register -EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0x00c62641 uacce_alloc -EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0x70f6298c uacce_register -EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0xaf925e72 uacce_remove +EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0x579524d0 uacce_register +EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0x9feb9cbf uacce_remove +EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0xe070a386 uacce_alloc EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x024d14bc vmci_qpair_produce_free_space EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x046dd187 vmci_datagram_create_handle EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x056837fb vmci_get_context_id EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x1fd4782d vmci_qpair_get_produce_indexes EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x2449459d vmci_event_subscribe +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x35a3dd36 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 0x4663f64f vmci_qpair_enquev EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x4ba5c46b vmci_qpair_peek EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x5591b58e vmci_context_get_priv_flags EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x5e949e0a vmci_doorbell_destroy @@ -14520,1625 +14601,1625 @@ 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 0xb96e23bb vmci_qpair_dequev EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xbcb85f62 vmci_doorbell_notify EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xc04c7e84 vmci_qpair_get_consume_indexes EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xc403cafe vmci_is_context_owner -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xd585c161 vmci_qpair_peekv +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xc6784f1a vmci_qpair_peekv +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xda4d5822 vmci_qpair_enquev EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xde3abc2e vmci_datagram_create_handle_priv EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xe0cc9c92 vmci_qpair_alloc EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xe11895c1 vmci_event_unsubscribe EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xe67343c1 vmci_qpair_enqueue EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xea143610 vmci_datagram_send EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xea61eefe vmci_qpair_produce_buf_ready -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x026327ff sdhci_cqe_irq -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x06fc4cd5 __sdhci_set_timeout -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x0b6ec3ce sdhci_alloc_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x0d5814d8 sdhci_set_power_noreg -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x126326d9 sdhci_end_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x165ebcfd sdhci_start_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x18dbdc2a sdhci_set_bus_width -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x2f28fc5e sdhci_set_ios -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x2fa5e261 sdhci_add_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x31bd253a sdhci_start_signal_voltage_switch -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x33055994 sdhci_calc_clk -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x340bbc8d sdhci_setup_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x53d1a937 sdhci_adma_write_desc -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x592974fe sdhci_abort_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x601d86c0 sdhci_request_atomic -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x6c7f453c sdhci_cleanup_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x71fecc39 sdhci_execute_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x728a75c0 sdhci_dumpregs -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x789c9d1c sdhci_set_clock -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x829996a3 sdhci_set_uhs_signaling -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x8361ef94 sdhci_remove_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x868e3b66 sdhci_cqe_enable -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x8b5f50a1 sdhci_request -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x8ff5c2c4 sdhci_set_data_timeout_irq -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x92cf0c27 sdhci_enable_clk -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x93980703 sdhci_switch_external_dma -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x99c52763 sdhci_runtime_resume_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x9aa10432 sdhci_runtime_suspend_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa3ab0c5e sdhci_reset_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xaa57b986 sdhci_cqe_disable -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xb1931be8 sdhci_set_power_and_bus_voltage -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xb3ac8b74 sdhci_enable_v4_mode -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xb484bf14 sdhci_send_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xb87d0ad5 sdhci_resume_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xd40a39ea sdhci_free_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xd415e384 __sdhci_read_caps -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xd762a3af sdhci_set_power -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xf09dd5bb sdhci_suspend_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xf58befb9 sdhci_enable_sdio_irq -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xfcbd4307 sdhci_reset -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xff6feb3f __sdhci_add_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x0754dc24 sdhci_pltfm_pmops -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x15b7d243 sdhci_pltfm_clk_get_max_clock -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x20b46ea4 sdhci_pltfm_unregister -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x42f30c4d sdhci_pltfm_init -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x6a17491a sdhci_pltfm_suspend -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x6f9802ee sdhci_pltfm_free -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x742f4567 sdhci_pltfm_resume -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x9da60672 sdhci_get_property -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xc4a78223 sdhci_pltfm_register -EXPORT_SYMBOL_GPL drivers/most/most_core 0x1f37c310 most_stop_channel -EXPORT_SYMBOL_GPL drivers/most/most_core 0x3cd69577 most_put_mbo -EXPORT_SYMBOL_GPL drivers/most/most_core 0x40a6db68 most_deregister_component -EXPORT_SYMBOL_GPL drivers/most/most_core 0x444e9a7b most_submit_mbo -EXPORT_SYMBOL_GPL drivers/most/most_core 0x46186fcb most_start_channel -EXPORT_SYMBOL_GPL drivers/most/most_core 0x627ea4b6 most_register_component -EXPORT_SYMBOL_GPL drivers/most/most_core 0x81716d7b most_resume_enqueue -EXPORT_SYMBOL_GPL drivers/most/most_core 0x9477f515 most_register_interface -EXPORT_SYMBOL_GPL drivers/most/most_core 0xa6d41ecf most_deregister_configfs_subsys -EXPORT_SYMBOL_GPL drivers/most/most_core 0xbba114f4 channel_has_mbo -EXPORT_SYMBOL_GPL drivers/most/most_core 0xbd113dc6 most_stop_enqueue -EXPORT_SYMBOL_GPL drivers/most/most_core 0xce4a0146 most_deregister_interface -EXPORT_SYMBOL_GPL drivers/most/most_core 0xdc7f94b6 most_register_configfs_subsys -EXPORT_SYMBOL_GPL drivers/most/most_core 0xe1690e0e most_get_mbo -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x5502954c cfi_cmdset_0003 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x6a2bb0a4 cfi_cmdset_0001 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xa81cb0da cfi_cmdset_0200 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x34c44c68 cfi_cmdset_0006 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x4a9607b8 cfi_cmdset_0002 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xb96fc83e cfi_cmdset_0701 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0xdb51613f cfi_cmdset_0020 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x205db528 cfi_qry_present -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x61365499 cfi_qry_mode_off -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xd60d3e81 cfi_qry_mode_on -EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0x0fdf8c4b hyperbus_register_device -EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0x9de84b2f hyperbus_unregister_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x02d03a25 mtd_lock -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0cefa4d7 mtd_lock_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1525a8c1 deregister_mtd_parser -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x152d5c37 mtd_read_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x23a9e7bf mtd_writev -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2d867164 mtd_is_locked -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x32ac0953 get_tree_mtd -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x49efd969 __mtd_next_device +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x0293c5d6 sdhci_set_ios +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x05697193 sdhci_cqe_disable +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x08982477 __sdhci_set_timeout +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x0d55839b sdhci_remove_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x0f4fc4ab sdhci_set_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x0fe8a2ec sdhci_free_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x21733e13 sdhci_cqe_enable +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x2bdd21fa sdhci_set_power_and_bus_voltage +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x2c94dd03 sdhci_start_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x4172d97c sdhci_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x4a42603f sdhci_start_signal_voltage_switch +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x4f11f101 sdhci_calc_clk +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x51d94626 sdhci_runtime_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x59b0bf95 sdhci_alloc_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x5ca79062 sdhci_set_bus_width +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x607a3ed5 sdhci_set_uhs_signaling +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x669bc9a3 sdhci_set_power_noreg +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x741ef5bb sdhci_adma_write_desc +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x7754ca10 sdhci_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x79d95a30 sdhci_send_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x7b2d9318 sdhci_add_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x8d5c8a18 sdhci_request_atomic +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x973e1a3e sdhci_reset_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa45bfc69 sdhci_end_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xab21c50e sdhci_enable_sdio_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xadda53b3 sdhci_cleanup_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xb50e15c7 __sdhci_add_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xb855e651 sdhci_runtime_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xbdb12aa8 sdhci_abort_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xbf616eb8 sdhci_cqe_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xbfc42fea sdhci_dumpregs +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc198ef10 sdhci_enable_v4_mode +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc4a6f246 sdhci_reset +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xca3c73ed sdhci_setup_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xca5155e0 sdhci_execute_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xcf98bc77 sdhci_request +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xd1a441ca sdhci_enable_clk +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xd6ffa7b2 sdhci_set_power +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xee24daf6 sdhci_set_data_timeout_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xfc0dc45d __sdhci_read_caps +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xfe171df5 sdhci_switch_external_dma +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x02f2b278 sdhci_get_property +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x32b3a6bd sdhci_pltfm_clk_get_max_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x3cc378e1 sdhci_pltfm_resume +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x665ac793 sdhci_pltfm_free +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x71e55047 sdhci_pltfm_init +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x85e722b3 sdhci_pltfm_register +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xa8787936 sdhci_pltfm_unregister +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xad2fa789 sdhci_pltfm_pmops +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xf2fa5fa9 sdhci_pltfm_suspend +EXPORT_SYMBOL_GPL drivers/most/most_core 0x204fe88f channel_has_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0x44d41afe most_stop_channel +EXPORT_SYMBOL_GPL drivers/most/most_core 0x494d4e6e most_register_component +EXPORT_SYMBOL_GPL drivers/most/most_core 0x765a6429 most_start_channel +EXPORT_SYMBOL_GPL drivers/most/most_core 0x7eb844de most_deregister_configfs_subsys +EXPORT_SYMBOL_GPL drivers/most/most_core 0x83fd3f1a most_submit_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0x8bfa7acb most_deregister_interface +EXPORT_SYMBOL_GPL drivers/most/most_core 0xae261f2e most_get_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0xbb1608e7 most_register_configfs_subsys +EXPORT_SYMBOL_GPL drivers/most/most_core 0xbf032306 most_resume_enqueue +EXPORT_SYMBOL_GPL drivers/most/most_core 0xd1e035c5 most_stop_enqueue +EXPORT_SYMBOL_GPL drivers/most/most_core 0xeac5411f most_register_interface +EXPORT_SYMBOL_GPL drivers/most/most_core 0xfaf60319 most_put_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0xfb7bda4f most_deregister_component +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x670bba8a cfi_cmdset_0200 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x9a159f1c cfi_cmdset_0003 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xa53cbaf4 cfi_cmdset_0001 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x7678c26e cfi_cmdset_0701 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x85810de8 cfi_cmdset_0002 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xfbd34638 cfi_cmdset_0006 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0x14466b6f cfi_cmdset_0020 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x15eb019c cfi_qry_mode_off +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x61628a7c cfi_qry_mode_on +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x93092221 cfi_qry_present +EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0x0b67d33c hyperbus_register_device +EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0x334be8fe hyperbus_unregister_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x06de8e47 mtd_device_parse_register +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x08382fe7 mtd_get_user_prot_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0a7cbe30 kill_mtd_super +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0d887397 mtd_del_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0e57525f mtd_ooblayout_find_eccregion +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0eb433d4 mtd_write_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1055b6d0 mtd_pairing_groups +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1403fdc2 mtd_read_fact_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1be502ac mtd_unpoint +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x21c56080 get_mtd_device_nm +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3e35b4ab mtd_ooblayout_count_eccbytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x42d13439 mtd_wunit_to_pairing_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4a031dff mtd_ooblayout_set_databytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4ca83bb4 mtd_add_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5056f7db mtd_block_isreserved EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x50dabc2f mtd_table_mutex -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5fb55c34 __put_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5fd2fcd5 mtd_unpoint -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x603d6263 mtd_ooblayout_get_databytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6d5dd462 kill_mtd_super -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x706f18cc mtd_ooblayout_count_eccbytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x70999570 mtd_add_partition -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x78a46940 put_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7ef89c99 __get_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8031949a mtd_block_isbad -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x803c1c54 mtd_read -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x81ae9762 mtd_ooblayout_count_freebytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x861c9799 mtd_kmalloc_up_to -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8c6270c9 mtd_get_device_size -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8e1addf4 mtd_erase -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9d212fe2 mtd_ooblayout_get_eccbytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa69dd50c mtd_block_isreserved -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa905c017 mtd_device_parse_register -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xab1e4aab mtd_ooblayout_ecc -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xabb051cb mtd_ooblayout_find_eccregion -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb4d2826a mtd_write_oob -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xbea986f2 mtd_wunit_to_pairing_info -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xbf1e310c unregister_mtd_user -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xbf3c4d6c get_mtd_device_nm -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc021890c mtd_del_partition -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc05ac438 register_mtd_user -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc3b12525 mtd_pairing_info_to_wunit -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc7513643 mtd_ooblayout_set_databytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xcc8d1419 mtd_block_markbad -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd167d975 mtd_panic_write -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd5116cec mtd_erase_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd60c4436 mtd_ooblayout_set_eccbytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd963c343 mtd_unlock -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xda29a03f __register_mtd_parser -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xdafce5dd mtd_point -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xdd0c9772 mtd_get_fact_prot_info -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe2593ee7 get_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe380909c mtd_get_user_prot_info -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xeaa08fb8 mtd_read_oob -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf38897f7 mtd_device_unregister -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf4bc37ac mtd_write -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf6eab50a mtd_ooblayout_free -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf75d69d0 mtd_read_fact_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf9793130 mtd_write_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xfe82b3b0 mtd_get_unmapped_area -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xff57f600 mtd_pairing_groups -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x11260b49 del_mtd_blktrans_dev -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x3589ec67 register_mtd_blktrans -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x61d2c206 add_mtd_blktrans_dev -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x9464e5c7 deregister_mtd_blktrans -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xe055ea45 mtd_blktrans_cease_background -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x3325ebb7 nanddev_bbt_cleanup -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x3aadc29a nanddev_cleanup -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x417f3871 nanddev_init -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x45001f3a nanddev_bbt_init -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x5c111add nand_get_large_page_ooblayout -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x5c3c3756 nand_ecc_cleanup_req_tweaking -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x5e55b11e nand_ecc_init_req_tweaking -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x663d8a52 nanddev_mtd_erase -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x67630049 nanddev_bbt_update -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x6cb21100 nanddev_markbad -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x70c866a7 nanddev_ecc_engine_init -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x7230b7e2 nanddev_isreserved -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x73d21d60 nand_get_large_page_hamming_ooblayout -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x829c5f64 nanddev_bbt_get_block_status -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x82b89000 nand_get_small_page_ooblayout -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x97ecadb2 nand_ecc_tweak_req -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xa0b951af nand_ecc_restore_req -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xa4d0a159 nanddev_isbad -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xb8bcf974 nanddev_mtd_max_bad_blocks -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xd531a5a5 nanddev_bbt_set_block_status -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xeee2a36e nanddev_erase -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xeff44a95 nanddev_ecc_engine_cleanup -EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0x7e953444 onenand_release -EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0xef3d5f0b onenand_scan -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/denali 0x1f850d70 denali_chip_init -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x07858e27 nand_soft_waitrdy +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5146564d mtd_ooblayout_count_freebytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x53818604 mtd_block_isbad +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x54146a6a mtd_read_oob +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x55a202ed mtd_point +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x57b6129d mtd_read_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5b04e2fa mtd_lock_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6bffb735 mtd_ooblayout_set_eccbytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6e61ad40 __get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x764d2166 mtd_block_markbad +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x77193758 __put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x779c40c0 mtd_unlock +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7adf1ace mtd_writev +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x809e30d9 mtd_lock +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8b886a12 mtd_kmalloc_up_to +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x95a3141a mtd_ooblayout_get_eccbytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa2a737a2 __register_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa81de43c mtd_get_device_size +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xaa353d7c mtd_is_locked +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xac312298 __mtd_next_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xae94ed33 mtd_erase +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb3eb3f5a put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb4b78224 mtd_pairing_info_to_wunit +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc14590ca mtd_get_unmapped_area +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc4e78735 get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc7b51383 mtd_ooblayout_get_databytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xca85cfff mtd_ooblayout_ecc +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xcc98f334 register_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xced48e4b deregister_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd45cb574 mtd_erase_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd6ecaae7 mtd_panic_write +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xdad5535c mtd_read +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe15a7613 mtd_device_unregister +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe17dd4ee mtd_write_oob +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe2ea01bf mtd_ooblayout_free +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xed850a4a mtd_write +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf27afa41 get_tree_mtd +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf3afd66d mtd_get_fact_prot_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf59de2b1 unregister_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x228d5026 register_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x5f5f055f del_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x88f8d767 mtd_blktrans_cease_background +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xb3c326fa add_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xde7f04c6 deregister_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x0351d711 nanddev_bbt_set_block_status +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x25028de0 nand_get_large_page_ooblayout +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x2bfe8980 nanddev_isreserved +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x36f5e1f5 nand_get_large_page_hamming_ooblayout +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x45faf0f6 nanddev_erase +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x4ab52e23 nand_ecc_cleanup_req_tweaking +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x4eb43d40 nanddev_markbad +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x57097a71 nanddev_mtd_max_bad_blocks +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x5bb00c7b nand_ecc_init_req_tweaking +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x5c67d05c nanddev_cleanup +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x5f2798ab nand_ecc_tweak_req +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x8066a88b nanddev_bbt_cleanup +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x9307f3d9 nanddev_bbt_init +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xae1b3c55 nanddev_init +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xb071995b nanddev_isbad +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xb604fc7a nanddev_ecc_engine_init +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xb8e59f36 nand_ecc_restore_req +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xd599a0e1 nanddev_mtd_erase +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xf031afdd nanddev_ecc_engine_cleanup +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xf893c2c1 nanddev_bbt_get_block_status +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xfbab073d nand_get_small_page_ooblayout +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xfc0419a6 nanddev_bbt_update +EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0x02cc5602 onenand_scan +EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0x832587c9 onenand_release +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/denali 0xdd72c18b denali_chip_init +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x0856a939 nand_prog_page_end_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x0b4abb69 nand_select_target +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x0bd8b810 nand_ecc_choose_conf EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x11091291 nand_extract_bits -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x24ba0bf2 nand_write_data_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x2bbd3c62 nand_wait_ready +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x1a051815 nand_prog_page_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x1e7bbfec nand_op_parser_exec_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x29602850 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 0x3361a374 nand_change_write_column_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x3423945b nand_read_data_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x532c02d0 nand_gpio_waitrdy +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x31ef8cd5 nand_change_write_column_op EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x5632e63d nand_subop_get_num_addr_cyc -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x5e7be0d6 nand_deselect_target -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x667b3952 nand_prog_page_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x6ec7cb0f nand_status_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x78392085 nand_reset -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x78ce2455 nand_cleanup -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x8a0bb7ee nand_reset_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x8f45225e nand_read_oob_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x9add3552 nand_prog_page_begin_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x9f1b279c nand_prog_page_end_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x9fbd52ff nand_change_read_column_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xa9f684c1 nand_select_target -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xbc216385 nand_ecc_choose_conf -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xc3b4a0ce nand_decode_ext_id -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xcc10fbc2 nand_erase_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x574f52e8 nand_deselect_target +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x57997dda nand_decode_ext_id +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x62d7b558 nand_reset_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x6893eff2 nand_soft_waitrdy +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x6daab904 nand_change_read_column_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x7b82e8f4 nand_gpio_waitrdy +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x84be8c58 nand_prog_page_begin_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x8fe614c8 nand_wait_ready +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x9cd987fc nand_reset +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xa0db98ab nand_read_oob_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xa5c300e0 nand_read_page_hwecc_oob_first +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xb1b6db0a nand_status_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xcdbbc921 nand_read_data_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xd0a05292 nand_cleanup 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 0xdc178374 nand_readid_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xefaedebc nand_read_page_hwecc_oob_first -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xf46650de nand_op_parser_exec_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xfe3e997c nand_read_page_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/sm_common 0xdaa9187e sm_register_device -EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0x01e6ab8b spi_nor_restore -EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0x9b199ee2 spi_nor_scan -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x1b230195 ubi_leb_change -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x1cb561a2 ubi_open_volume -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x1da3a9b2 ubi_get_volume_info -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x2d551358 ubi_leb_read_sg -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x35e124a6 ubi_leb_erase +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xd4e506f4 nand_erase_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xf9064ae6 nand_readid_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xfe80d77f nand_read_page_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/sm_common 0x941a4740 sm_register_device +EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0x9ecbf80c spi_nor_scan +EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0xadb0217d spi_nor_restore +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x007ba3a1 ubi_close_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x08e975d6 ubi_is_mapped +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x19932a29 ubi_open_volume_path +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x238f70fb ubi_open_volume_nm EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x38e10c1d ubi_flush -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x3afc7778 ubi_leb_write +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x3f997da6 ubi_get_volume_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x414c7155 ubi_leb_read EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x42801d20 ubi_sync -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x5b019a56 ubi_close_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x4ad9e7d0 ubi_open_volume EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x66011ab6 ubi_get_device_info -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x679c289d ubi_leb_read -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x82681aae ubi_leb_unmap +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x7c07c4e8 ubi_leb_map +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x7e7c8194 ubi_leb_change EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x85a8ee76 ubi_unregister_volume_notifier -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x9ec84505 ubi_is_mapped -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xbe394c4e ubi_open_volume_nm -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xc98a3ea7 ubi_do_get_device_info -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xd4459646 ubi_open_volume_path +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x88b3ad80 ubi_do_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x8b29e5e1 ubi_leb_write +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xa20baf0a ubi_leb_erase EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf5ee9ba8 ubi_register_volume_notifier -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf9954c2f ubi_leb_map -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x0800fa2e mux_chip_alloc -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x163b720e mux_control_try_select -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x1859b5c2 mux_control_deselect -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x1cf0a336 mux_control_states -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x2aeb9f45 mux_chip_unregister -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x42e70223 mux_chip_register -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x6b91e914 mux_chip_free -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x7fe8da76 mux_control_get -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x951f7190 devm_mux_chip_alloc -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xba792f4b devm_mux_chip_register -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xd0291799 devm_mux_control_get -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xdd69a3e1 mux_control_put -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xea9c81b6 mux_control_select -EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x05c8b4f8 arcnet_led_event -EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x9c21c965 devm_arcnet_led_init -EXPORT_SYMBOL_GPL drivers/net/bareudp 0x34f74dc2 bareudp_dev_create -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x383d6816 c_can_power_down -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x5ae276ad c_can_power_up -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xb7032aee register_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xcafebd50 free_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xe14bd389 unregister_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xfd5dfc71 alloc_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x0da439f4 free_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x519a47ff unregister_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x90f0de29 register_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xa105bd95 alloc_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x0029c65b can_put_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x03333464 alloc_can_err_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x1091dd3d alloc_canfd_skb +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xfac9d2ed ubi_leb_read_sg +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xfe891b61 ubi_leb_unmap +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x07426779 mux_control_try_select +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x0a169d0a mux_control_deselect +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x6132d01f mux_chip_free +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x889eb946 devm_mux_chip_register +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x8969e790 mux_control_select +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xa73be7e5 mux_chip_alloc +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xa8088d4f devm_mux_chip_alloc +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xa9211bf6 mux_chip_unregister +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xbdfd08f6 mux_control_states +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xc17ef93f mux_control_put +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xc8412262 devm_mux_control_get +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xdaedc0d9 mux_control_get +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xdbdd5559 mux_chip_register +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x628b7b34 arcnet_led_event +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x62ac4225 devm_arcnet_led_init +EXPORT_SYMBOL_GPL drivers/net/bareudp 0xfbae9f5b bareudp_dev_create +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x06d1442f alloc_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x46d54e91 unregister_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x46dd7d12 free_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x85e0e583 c_can_power_up +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x8605936e register_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xa9a4728d c_can_power_down +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x276fd40d free_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xa7c38a1e register_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xbf3a537f alloc_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xc3dbf38c unregister_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x06b461cd can_change_state +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x06d7099d can_rx_offload_threaded_irq_finish EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x10d892eb can_get_state_str -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x2daba59a free_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x361d8275 can_rx_offload_add_fifo -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x4105e60b can_rx_offload_queue_sorted +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x1437c547 can_rx_offload_irq_finish +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x15c91e05 alloc_can_err_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x17deee0d unregister_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x25d8ce67 can_rx_offload_irq_offload_fifo +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x26e9ae56 close_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x2b86cd5b alloc_candev_mqs +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x31259dbd safe_candev_priv +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x39ec9906 can_rx_offload_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x3eb39038 alloc_canfd_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x4a502cd7 can_rx_offload_add_manual +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x5804ee19 open_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x5e112083 free_candev EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6047ede6 can_fd_len2dlc -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6dc20335 can_rx_offload_add_manual -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6f18dc4c can_rx_offload_enable -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x7a69ad82 can_rx_offload_get_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x7d39c06e can_rx_offload_irq_offload_fifo -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x8b04eab5 can_bus_off -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x8d98bafe can_get_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x92126a80 can_rx_offload_irq_offload_timestamp -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x9a9cc2e2 unregister_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x9fc479cd can_change_state -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xa5687d4f safe_candev_priv -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xa7ada2b4 close_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xac76c539 can_rx_offload_irq_finish -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xb5650402 can_rx_offload_add_timestamp -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xc23d505b can_change_mtu -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xc8fbd6e0 open_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xccf6c935 alloc_can_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xcd56c29b can_rx_offload_threaded_irq_finish -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xdb3777e0 can_rx_offload_queue_tail -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xe86b481c can_rx_offload_del -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xecb4d4df register_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xed048c72 can_skb_get_frame_len +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x7e17522c can_bus_off +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x8c01675a can_rx_offload_del +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x967894eb can_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xa2eacd53 can_rx_offload_add_timestamp +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xac5f0e8a can_skb_get_frame_len +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xba8a2276 alloc_can_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xbaea160c can_put_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xc5225f13 register_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xc598d63b can_rx_offload_queue_tail +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xcbbe7621 can_free_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xd642c125 can_rx_offload_enable +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xd679050b can_rx_offload_irq_offload_timestamp +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xd7c3eaab can_rx_offload_queue_sorted +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xdeb9d7c3 can_rx_offload_add_fifo +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xe6ccc1d2 can_change_mtu EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf12d9387 can_fd_dlc2len -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf9080e9d can_free_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xfc5aa437 alloc_candev_mqs -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x347f36a7 m_can_class_unregister -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x3837afe8 m_can_class_resume -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x7923cc20 m_can_init_ram -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x907f4175 m_can_class_register -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xb2853dd2 m_can_class_get_clocks -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xd0d85dc5 m_can_class_allocate_dev -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xf13d2404 m_can_class_free_dev -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xfaf4e828 m_can_class_suspend +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x05efc98b m_can_class_resume +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x6b17eb2c m_can_class_unregister +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x8b80d5b5 m_can_class_suspend +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x928499ae m_can_init_ram +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xa3592b7c m_can_class_register +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xbee624cf m_can_class_get_clocks +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xe1f813c8 m_can_class_free_dev +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xebc1cad8 m_can_class_allocate_dev EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x88e8e0a1 alloc_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xa460bedd unregister_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xf0296713 free_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xfad136ce register_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/dsa/lan9303-core 0x1a69b6a4 lan9303_indirect_phy_ops -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x0560fc75 ksz_enable_port -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x230d85fc ksz_port_fast_age -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x2d875b9a ksz_port_bridge_leave -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x2eca6f23 ksz_sset_count -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x2f625a8d ksz_port_bridge_join -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x3579257e ksz_port_fdb_dump -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x5d9effc2 ksz_phy_write16 -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x6e57877f ksz_phy_read16 -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x89ae2f75 ksz_mac_link_down -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x8ce95050 ksz_update_port_member -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x99c9e54e ksz_init_mib_timer -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xaa1b0116 ksz_get_ethtool_stats -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xd683c00b ksz_port_mdb_add -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xe2c5be97 ksz_port_mdb_del -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x18092183 rtl8366_enable_vlan4k -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x19a2f86a rtl8366_init_vlan -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x1c3b76aa rtl8366rb_variant -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x32a273ad rtl8366_get_ethtool_stats -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x3600b508 realtek_smi_write_reg_noack -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x425d97a8 rtl8366_reset_vlan -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x568c4889 rtl8366_get_strings -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x5cd5828d rtl8366_set_pvid -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x64daa9ed rtl8366_vlan_add -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x6bc6dd19 rtl8366_vlan_del -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x6ec090a1 rtl8366_mc_is_used -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x79003e05 rtl8366_vlan_filtering -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xe29334f9 rtl8366_enable_vlan -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xed27e160 rtl8366_set_vlan -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xf187adbf rtl8366_get_sset_count -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0xbc8ff332 i40e_client_device_unregister -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0xc554449f i40e_client_device_register -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x0c8c52bf ice_del_rdma_qset -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x30487dff ice_get_qos_params -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x4ccfb95a ice_rdma_update_vsi_filter -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x6f16fd54 ice_add_rdma_qset -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xa11ba0fd ice_rdma_request_reset -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0178cae3 mlx4_get_vf_config -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x04ad271d mlx4_mw_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x080476bc mlx4_qp_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x08e35356 mlx4_uar_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0a966557 mlx4_map_sw_to_hw_steering_mode -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0decd737 mlx4_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x12669f32 mlx4_mr_hw_put_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x13f4ca93 mlx4_mw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x150f77b3 mlx4_srq_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x15c1dd83 mlx4_unregister_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x18d5647d mlx4_wol_read -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1b1d51f4 mlx4_flow_steer_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1bf0b94b mlx4_get_vf_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1f950bf7 mlx4_get_slave_default_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1fe1f953 mlx4_counter_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x21577381 mlx4_unicast_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x218dbfb7 mlx4_vf_set_enable_smi_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x23722f39 mlx4_xrcd_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x28186906 mlx4_mr_hw_change_access -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2dc115a7 mlx4_free_cmd_mailbox -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x30be49a6 mlx4_qp_release_range -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x369e4e9c mlx4_cq_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x36a4544d mlx4_qp_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x395a130e mlx4_get_base_qpn -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3adf96bf mlx4_set_vf_spoofchk -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4094652b mlx4_srq_arm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x410eccac mlx4_free_hwq_res -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4247d5a3 mlx4_buf_write_mtt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x42ff2a10 mlx4_CLOSE_PORT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x436559e2 mlx4_db_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x44a9f93c mlx4_mr_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x45a037bd mlx4_flow_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x46a27fc3 mlx4_mr_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x470dc85c mlx4_qp_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x473e0650 mlx4_mr_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4a05c8f3 mlx4_unicast_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4cf67e1e mlx4_unicast_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4ecc3c4a mlx4_srq_lookup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4ef7cdcf mlx4_register_interface -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4f71665d mlx4_qp_reserve_range -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4fdb98c7 mlx4_buf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x57a613b4 mlx4_cq_resize -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5807eef1 mlx4_get_active_ports -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5bf5065c __mlx4_replace_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5e6ef09d mlx4_register_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5fb4b63e mlx4_ACCESS_PTYS_REG -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6164a2a7 mlx4_mr_hw_change_pd -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x625fec2b mlx4_unicast_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x638cf2be mlx4_srq_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x63b76329 mlx4_multicast_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x677dea9e mlx4_mr_rereg_mem_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6baa4c7d mlx4_srq_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6eaee786 mlx4_mr_hw_write_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x70909a2c mlx4_port_map_set -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7113b06a mlx4_config_vxlan_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x71a981d7 mlx4_phys_to_slaves_pport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x71e2a72d mlx4_db_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x73975e54 mlx4_qp_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x742df2f5 mlx4_get_counter_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x76783aa7 mlx4_get_devlink_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7ceea0ca mlx4_SYNC_TPT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7f2eb528 mlx4_config_dev_retrieval -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x84dbe6d5 mlx4_alloc_hwq_res -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9775307b mlx4_xrcd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x97860745 mlx4_get_base_gid_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9b0e6c4d mlx4_phys_to_slaves_pport_actv -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9b34d0c5 mlx4_mtt_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9c14c28a mlx4_update_qp -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9e87a661 mlx4_set_vf_rate -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9ff755f5 mlx4_cq_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa27b7988 mlx4_mr_rereg_mem_cleanup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa3b1a1bb mlx4_read_clock -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa3ea02a6 mlx4_flow_steer_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa4aa43d5 mlx4_mtt_cleanup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa52d9ccd mlx4_config_roce_v2_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa77e613f mlx4_write_mtt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa7c797f8 mlx4_multicast_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa7eec8bd mlx4_pd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaa4e431d mlx4_uar_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaab0b5cf mlx4_INIT_PORT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb477ebcb mlx4_wol_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb4ba16f6 mlx4_set_vf_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb71ebdcb mlx4_multicast_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb9f365f9 mlx4_multicast_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbab7b98e mlx4_get_internal_clock_params -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbccef45e mlx4_FLOW_STEERING_IB_UC_QP_RANGE -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbea9f1ed __mlx4_register_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc06d7e92 mlx4_qp_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc12bbf33 mlx4_find_cached_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc229d01f __mlx4_cmd -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc5d71b9d mlx4_counter_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc5e8c8b0 mlx4_vf_get_enable_smi_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc69977fd mlx4_bond -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc7411c43 mlx4_vf_smi_enabled -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc8348952 mlx4_set_vf_link_state -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xca32ca60 mlx4_unbond -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcae606d3 mlx4_set_admin_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcafca339 mlx4_mtt_addr -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xceac7fe3 mlx4_hw_rule_sz -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcf66bfc4 mlx4_cq_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd2790214 mlx4_get_protocol_dev -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd2fa712c mlx4_replace_zero_macs -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd418956e mlx4_get_default_counter_index -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdcdbc821 mlx4_register_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xde4abc92 mlx4_phys_to_slave_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdf25ab10 mlx4_set_vf_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe319b05a mlx4_qp_to_ready -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe32f6f67 mlx4_map_sw_to_hw_steering_id -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe43958df mlx4_bf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xec3d3ec1 mlx4_unregister_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xedc2b0b3 mlx4_alloc_cmd_mailbox -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xee4da075 mlx4_slave_convert_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xef127ae1 mlx4_pd_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf14387ff mlx4_flow_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf26783aa mlx4_mr_hw_get_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf7a319f2 mlx4_find_cached_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf9cf08d1 mlx4_bf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfa56c5c2 mlx4_unregister_interface -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfd686159 mlx4_mw_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xff2039b5 __mlx4_unregister_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xff4784ef mlx4_get_admin_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x01db1d6c mlx5_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x02e104ca mlx5_core_query_sq_state -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x06381534 mlx5_query_hca_vport_gid +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49fdade5 free_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x6bcb2a87 alloc_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xa4c11028 register_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xce6f5530 unregister_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/dsa/lan9303-core 0x7bbe4dd2 lan9303_indirect_phy_ops +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x01fafff0 ksz_init_mib_timer +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x47774f35 ksz_port_fdb_dump +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x498593fe ksz_port_mdb_del +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x49ced6ae ksz_phy_read16 +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x517b1d31 ksz_port_mdb_add +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x57044b86 ksz_port_bridge_join +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x5cb54ad1 ksz_sset_count +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x8abf9fe8 ksz_enable_port +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x9e7dc23b ksz_get_ethtool_stats +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xa2f72fb9 ksz_port_bridge_leave +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xb4443987 ksz_mac_link_down +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xc5c2838f ksz_phy_write16 +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xe479628d ksz_update_port_member +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xe566581e ksz_port_fast_age +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x01aa4fd4 rtl8366_enable_vlan4k +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x26bf5f59 rtl8366_get_sset_count +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x2fdbe3c8 rtl8366_set_pvid +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x4df3ce50 rtl8366_init_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x681eee46 rtl8366_get_strings +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x6bd4d0b2 rtl8366rb_variant +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x7c8c3e4a rtl8366_mc_is_used +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x8a03b299 rtl8366_get_ethtool_stats +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x9d6ba96b rtl8366_reset_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xb84b92e3 rtl8366_vlan_filtering +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xc454094b realtek_smi_write_reg_noack +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xd0add2b8 rtl8366_enable_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xf74777d2 rtl8366_vlan_add +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xf94e23aa rtl8366_vlan_del +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xfcbe2cb1 rtl8366_set_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0x5b183914 i40e_client_device_unregister +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0xc2e1b203 i40e_client_device_register +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x2fd2e733 ice_del_rdma_qset +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x34f77696 ice_rdma_update_vsi_filter +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x6de09f04 ice_add_rdma_qset +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xc3fd0a49 ice_get_qos_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xe9a58188 ice_rdma_request_reset +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x00860939 mlx4_get_vf_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x00c5165f mlx4_multicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x00fae299 __mlx4_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0156d63e mlx4_get_counter_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0208797e mlx4_srq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x03eb7843 mlx4_flow_steer_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x081fdfdb mlx4_wol_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x08f1115c mlx4_qp_release_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0e11a416 mlx4_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x128d9c43 mlx4_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1533abdc mlx4_srq_lookup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x16888cc8 mlx4_pd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x170df5c9 mlx4_cq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1734e27b mlx4_set_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x178911a0 mlx4_get_devlink_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1b163bf3 mlx4_mr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1b80685e mlx4_unicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1f04f0ab mlx4_mr_hw_get_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1f9c8395 mlx4_find_cached_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x231851bb mlx4_vf_smi_enabled +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x254f4dd3 mlx4_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3104e226 mlx4_unicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x31a95bec mlx4_map_sw_to_hw_steering_id +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x32a68a64 mlx4_flow_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x330289ea mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x34d7dda2 mlx4_get_base_gid_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x34f57226 mlx4_phys_to_slaves_pport_actv +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3519c296 mlx4_config_roce_v2_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x35378902 mlx4_vf_set_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x36157400 mlx4_mr_hw_write_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x382ee33c mlx4_set_vf_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x39443a89 mlx4_register_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3b963c85 mlx4_config_dev_retrieval +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3c6fc500 mlx4_INIT_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x416d3358 mlx4_mtt_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x423695fe mlx4_bf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x43e9fc13 mlx4_slave_convert_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x463f21dc mlx4_mw_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x46bcbaf3 mlx4_set_vf_spoofchk +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x46ec52a6 mlx4_pd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x48ebfad2 mlx4_phys_to_slave_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4f4b1b30 mlx4_mtt_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4f9e5d06 mlx4_qp_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x53c9a4e4 mlx4_mr_rereg_mem_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x56302b1b mlx4_SYNC_TPT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x56972282 mlx4_update_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x594e8318 mlx4_multicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x59d29615 mlx4_qp_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5bbec453 mlx4_buf_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5d81112e mlx4_set_vf_rate +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5f324462 mlx4_vf_get_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6186b08e mlx4_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x63da9854 mlx4_srq_arm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x64717f96 mlx4_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x65e051ea mlx4_bond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x67fe6fc3 mlx4_mr_hw_change_pd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6a0fa703 mlx4_mr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6a550cb8 mlx4_uar_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6d4df6e2 mlx4_counter_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x70ab712c mlx4_unregister_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x711ee228 mlx4_unregister_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x72050bb4 mlx4_alloc_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x76a0acaa mlx4_cq_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x79961f75 mlx4_replace_zero_macs +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7d1a0b7a mlx4_wol_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x81319134 mlx4_uar_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x826df80d mlx4_unicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8291ebd2 mlx4_get_internal_clock_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x86c2f9f0 mlx4_flow_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x880c3964 mlx4_unicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x88f1ea3f mlx4_srq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x89f6111d mlx4_get_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8e6f8544 mlx4_qp_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8f757667 mlx4_mr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x93f6ce18 mlx4_get_base_qpn +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x947b1045 mlx4_alloc_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x95ac918f mlx4_counter_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x95ae3efb mlx4_mw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x96ca1303 mlx4_mtt_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x98314381 mlx4_port_map_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x98d905ac mlx4_get_vf_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x98f7bd03 mlx4_set_vf_link_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9bece969 mlx4_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9d22e6c5 mlx4_bf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa1cc8c56 mlx4_mr_rereg_mem_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa1d28669 mlx4_qp_to_ready +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa6461036 mlx4_cq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa7625314 mlx4_cq_resize +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa898038b mlx4_hw_rule_sz +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa9a0a7ba mlx4_get_default_counter_index +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaa54882e mlx4_get_protocol_dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb100acef mlx4_ACCESS_PTYS_REG +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb20fd83c mlx4_find_cached_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb32cdbee mlx4_phys_to_slaves_pport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb6c25c34 mlx4_config_vxlan_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xba0599b4 mlx4_qp_reserve_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbd3c76f0 mlx4_read_clock +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc0eb2d67 mlx4_xrcd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc506c30f mlx4_mr_hw_change_access +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc51e54f8 mlx4_CLOSE_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc58ab057 mlx4_map_sw_to_hw_steering_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc91c13e7 mlx4_mr_hw_put_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcf7d9985 mlx4_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd7c23f5a mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd865b4ba mlx4_register_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdb7f687a __mlx4_replace_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdcf95bf5 mlx4_multicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdd2a8d23 mlx4_mw_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdeba4e58 mlx4_flow_steer_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe4b06cbf mlx4_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe5cc8efd mlx4_get_slave_default_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe633899d mlx4_free_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe6f4e911 mlx4_unbond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xea5cd50b mlx4_get_active_ports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xec0038ce __mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xef2b2127 mlx4_free_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf5fc4393 mlx4_FLOW_STEERING_IB_UC_QP_RANGE +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf8818604 mlx4_set_vf_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfc964e5b mlx4_multicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfd41834b mlx4_srq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xff9227f7 __mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x01a87017 mlx5_query_nic_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x01e1c180 mlx5_query_port_prio_tc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x065fdb39 mlx5_query_nic_vport_mtu EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x072460c4 mlx5_fill_page_frag_array -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0b89dcae mlx5_query_nic_vport_node_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x14b357cc mlx5_query_nic_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x152f7370 mlx5_query_port_oper_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x18aeec8d mlx5_core_access_reg -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2054a49d mlx5_db_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x235dbafb mlx5_query_hca_vport_pkey -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x26e64d5c mlx5_accel_esp_create_xfrm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x28e3c24b mlx5_query_port_pfc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x29330a18 mlx5_query_port_tc_bw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x32ef8c87 mlx5_query_port_wol -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x34dd89b9 mlx5_db_alloc_node -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x38ecda1f mlx5_query_nic_vport_promisc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x40c119eb mlx5_set_port_admin_status -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x40efaedc mlx5_query_port_admin_status -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x481152ce mlx5_query_nic_vport_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4d87dc17 mlx5_nic_vport_update_local_lb -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x50be3760 mlx5_modify_port_ets_rate_limit -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x50eba7f1 mlx5_query_nic_vport_qkey_viol_cntr -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x568dd9dd mlx5_query_module_eeprom -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6053b818 mlx5_frag_buf_alloc_node -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x62baad78 mlx5_set_port_tc_bw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x66bce356 mlx5_dm_sw_icm_dealloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x66c9e69e mlx5_set_port_pfc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6b635034 mlx5_query_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6bf5ba47 mlx5_core_query_ib_ppcnt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x71fc76ea mlx5_modify_nic_vport_vlans -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x79bd512d mlx5_query_nic_vport_mac_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7dc0427a mlx5_core_reserved_gids_count +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0b24c8f4 mlx5_query_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0d5218a4 mlx5_query_hca_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0dbfb56e mlx5_query_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x104790cd mlx5_toggle_port_link +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1968c2c9 mlx5_set_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1d9c8c0a mlx5_set_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x26286ba1 mlx5_query_hca_vport_pkey +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x27621974 mlx5_nic_vport_update_local_lb +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2869c848 mlx5_query_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2cd95b30 mlx5_accel_esp_create_xfrm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2f71f3c8 mlx5_query_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x33e8196c mlx5_accel_esp_destroy_xfrm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x36ba082d mlx5_query_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x38681206 mlx5_query_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3c03225f mlx5_accel_esp_modify_xfrm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x42230118 mlx5_nic_vport_affiliate_multiport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x43d5a4c4 mlx5_query_nic_vport_qkey_viol_cntr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x466da1cc mlx5_query_port_oper_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x46dba686 mlx5_query_nic_vport_min_inline +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x48c447cd mlx5_modify_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4de77ce7 mlx5_modify_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4f1d7f21 mlx5_nic_vport_unaffiliate_multiport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5ac5a193 mlx5_query_port_max_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5ae7d381 mlx5_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5bd09a36 mlx5_nic_vport_enable_roce +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5ef72e5b mlx5_modify_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5fa4ac83 mlx5_core_query_ib_ppcnt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x60e281f7 mlx5_query_port_tc_group +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x622a94e9 mlx5_set_port_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x62c5c837 mlx5_query_port_ptys +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x67a9630d mlx5_set_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6a4d091f mlx5_core_modify_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6aa574a5 mlx5_eswitch_get_total_vports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6c074336 mlx5_eswitch_mode 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 0x8469c33f mlx5_query_nic_vport_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8a189108 mlx5_dm_sw_icm_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8badf188 mlx5_set_port_pause -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8e627a03 mlx5_frag_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x94a300a0 mlx5_core_query_vport_counter -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x994e7833 mlx5_core_modify_hca_vport_context -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x998c4677 mlx5_set_port_wol -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9a29c240 mlx5_eswitch_mode -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9a6898f7 mlx5_query_port_vl_hw_cap -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9b8ad253 mlx5_modify_nic_vport_mac_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9be1e75d mlx5_modify_nic_vport_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9e64590b mlx5_query_hca_vport_context -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa18f6577 mlx5_query_hca_vport_node_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa2542769 mlx5_nic_vport_unaffiliate_multiport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x89fb9945 mlx5_set_port_tc_bw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8a1a9735 mlx5_core_reserved_gids_count +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8eab0178 mlx5_modify_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8eb53953 mlx5_query_hca_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x92cb9360 mlx5_query_nic_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x98c085d6 mlx5_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9c3d3e2e mlx5_dm_sw_icm_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9f6e9895 mlx5_query_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa09636fb mlx5_modify_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa13e117b mlx5_set_port_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa3f45a44 mlx5_set_port_pause EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa75f49d6 mlx5_fill_page_array -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaac6bd8b mlx5_query_min_inline -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xad71578c mlx5_accel_ipsec_device_caps -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb3566be4 mlx5_accel_esp_destroy_xfrm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb47551de mlx5_accel_esp_modify_xfrm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb58a11e4 mlx5_query_nic_vport_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbcc17384 mlx5_set_port_tc_group -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbd47111e mlx5_nic_vport_affiliate_multiport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbe76b491 mlx5_query_port_ets_rate_limit -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc418c051 mlx5_query_hca_vport_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcc5d9817 mlx5_query_nic_vport_min_inline -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd8c6eb42 mlx5_modify_nic_vport_promisc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd9c331a6 mlx5_query_module_eeprom_by_page -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe0bc3108 mlx5_query_port_tc_group -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe25c8f52 mlx5_query_port_ptys -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe6792639 mlx5_set_port_caps -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeaa1a4f8 mlx5_set_port_prio_tc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xed7b0788 mlx5_set_port_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xed89be9b mlx5_nic_vport_enable_roce -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeeac57f3 mlx5_db_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xef67044a mlx5_query_port_max_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf3c58b00 mlx5_modify_nic_vport_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf6c4077f mlx5_query_port_pause -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf6cdf339 mlx5_eswitch_get_total_vports -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf82d4e8f mlx5_nic_vport_query_local_lb -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfda43793 mlx5_query_port_prio_tc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfe057f5b mlx5_toggle_port_link -EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x7ab67987 ks8851_probe_common -EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x9c8b0af1 ks8851_resume -EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0xb774c40b ks8851_remove_common -EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0xe918d30a ks8851_suspend +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa989cd81 mlx5_modify_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xab3dd75d mlx5_query_port_vl_hw_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xad863da6 mlx5_query_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb0b47284 mlx5_query_nic_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbdd817e2 mlx5_query_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc0f95cd5 mlx5_nic_vport_query_local_lb +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc6c96011 mlx5_frag_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc7f02535 mlx5_core_query_vport_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcc8dd784 mlx5_query_min_inline +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xccee3633 mlx5_query_hca_vport_gid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd54a9fec mlx5_core_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd5669fc7 mlx5_set_port_tc_group +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xde8e8981 mlx5_query_module_eeprom +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdf34a262 mlx5_query_module_eeprom_by_page +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe570fb7b mlx5_query_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe6be0f28 mlx5_query_port_tc_bw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeb865d01 mlx5_core_query_sq_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xec70fa98 mlx5_dm_sw_icm_dealloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xed3611b2 mlx5_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xee62d6e2 mlx5_frag_buf_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfd0f1dd2 mlx5_db_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfde0e19a mlx5_set_port_prio_tc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfe0dfcd7 mlx5_accel_ipsec_device_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x3c8fd222 ks8851_suspend +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x4fd7e30a ks8851_remove_common +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0xd5484a32 ks8851_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0xe9e39acd ks8851_probe_common EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0xcc4fa41a regmap_encx24j600_spi_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0xe84dee27 devm_regmap_init_encx24j600 +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0xd355da86 devm_regmap_init_encx24j600 EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0xe8c8c6c2 regmap_encx24j600_spi_read -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x223da3a7 ocelot_phylink_mac_link_down -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x28f53ff0 ocelot_port_rmwl -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2ae2bd12 ocelot_cls_flower_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x31cf08f1 ocelot_port_writel -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x41c17a50 ocelot_port_readl -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x68fd9be9 ocelot_cls_flower_destroy -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x80790121 __ocelot_read_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x82eb4faf __ocelot_write_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8a065334 ocelot_regfields_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x948bbe24 ocelot_regmap_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x974ac0ce ocelot_phylink_mac_link_up -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xab68150d ocelot_cls_flower_replace -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xdcd5831c __ocelot_rmw_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x1b101b10 stmmac_suspend -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x50725479 stmmac_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x18933125 ocelot_port_readl +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2081143a ocelot_cls_flower_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x258f3423 ocelot_regmap_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3ac5c4ff ocelot_phylink_mac_link_up +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x50351443 __ocelot_read_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5ad2b751 ocelot_cls_flower_replace +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5c57c4fa ocelot_regfields_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6636b713 ocelot_port_writel +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6f038fd7 __ocelot_write_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9ba6d522 ocelot_cls_flower_destroy +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa57ca3ee __ocelot_rmw_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbdc9660e ocelot_phylink_mac_link_down +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc7a31525 ocelot_port_rmwl +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x189aec5a stmmac_suspend +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x50089047 stmmac_dvr_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x68105c23 stmmac_bus_clks_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x6a32cdd1 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 0xa2feede8 stmmac_bus_clks_config -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xb20186b1 stmmac_dvr_probe -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xc5fba8d7 stmmac_init_tstamp_counter -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xcb02c50e stmmac_dvr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xa7f11de8 stmmac_init_tstamp_counter EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xd1cc24db stmmac_set_mac_addr -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x41261d0b stmmac_pltfr_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x5c887b99 stmmac_get_platform_resources -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x66bb8715 stmmac_probe_config_dt -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xb0375329 stmmac_remove_config_dt -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xe87fff54 stmmac_pltfr_pm_ops -EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x384cddf3 w5100_probe -EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xb5dcd7d5 w5100_pm_ops -EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xcb71dc84 w5100_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xea307de8 w5100_ops_priv -EXPORT_SYMBOL_GPL drivers/net/geneve 0x3d138aa6 geneve_dev_create_fb -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x1675ff0b ipvlan_count_rx -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x302b7305 ipvlan_link_register -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x36b81dc5 ipvlan_link_delete -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x3884b41b ipvlan_link_setup -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xf25b9f00 ipvlan_link_new -EXPORT_SYMBOL_GPL drivers/net/macsec 0x52bb2bf2 macsec_pn_wrapped -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x64e5fb63 macvlan_dellink -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x8f8cd90b macvlan_common_setup -EXPORT_SYMBOL_GPL drivers/net/macvlan 0xf0af42ec macvlan_link_register -EXPORT_SYMBOL_GPL drivers/net/macvlan 0xf61acc2b macvlan_common_newlink -EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-i2c 0xbb62bbd1 mdio_i2c_alloc -EXPORT_SYMBOL_GPL drivers/net/net_failover 0x8ee2c245 net_failover_destroy -EXPORT_SYMBOL_GPL drivers/net/net_failover 0xc3f5a0cb net_failover_create -EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x070bebc5 xpcs_config_eee -EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x47cd5c81 xpcs_get_an_mode -EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x8edcbe0f xpcs_do_config -EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xac0adf7d xpcs_destroy -EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xae1876c5 xpcs_create -EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xdef71d02 xpcs_validate +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xd7d72779 stmmac_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x03206812 stmmac_pltfr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x517fe628 stmmac_get_platform_resources +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x761708e9 stmmac_remove_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xae56c355 stmmac_probe_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xc4a0954f stmmac_pltfr_pm_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x05cb2fda w5100_ops_priv +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xb48b5efd w5100_pm_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xb809a943 w5100_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xfe941689 w5100_remove +EXPORT_SYMBOL_GPL drivers/net/geneve 0xe1de00d6 geneve_dev_create_fb +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x313ef6c4 ipvlan_link_new +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x4b741f1b ipvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x5d36ec4e ipvlan_link_delete +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x9079a289 ipvlan_count_rx +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x926b4f4a ipvlan_link_setup +EXPORT_SYMBOL_GPL drivers/net/macsec 0xf0d6e9b0 macsec_pn_wrapped +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x6b80d0ef macvlan_dellink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x74215d6b macvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xd5fb8a40 macvlan_common_newlink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xe86eb972 macvlan_common_setup +EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-i2c 0x35d8d691 mdio_i2c_alloc +EXPORT_SYMBOL_GPL drivers/net/net_failover 0x8fc20e2c net_failover_create +EXPORT_SYMBOL_GPL drivers/net/net_failover 0x931a7605 net_failover_destroy +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x0b32d3cb xpcs_create +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x86715515 xpcs_get_an_mode +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x90a2c731 xpcs_config_eee +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xad5053f3 xpcs_do_config +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xb34f78ff xpcs_destroy +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xc0d1bff4 xpcs_validate EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xe05362b0 xpcs_link_up -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x04a6f70c bcm_phy_ack_intr -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x0592c2c1 bcm_phy_get_stats -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x07447b0e bcm_phy_read_misc -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x07f45090 bcm_phy_modify_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x0a910457 bcm_phy_set_eee -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x1b679cc3 bcm_phy_read_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x1df10a05 bcm_phy_enable_apd -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x1e136a55 bcm_phy_get_strings -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x1ea128ec bcm_phy_downshift_set -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x2496e9d0 bcm_phy_handle_interrupt -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x270707b7 bcm_phy_read_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x3625d754 bcm_phy_enable_jumbo -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x36e01f5e bcm_phy_28nm_a0b0_afe_config_init -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x420da685 bcm_phy_cable_test_start -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7b373c3f bcm_phy_cable_test_start_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7f6ca6ec __bcm_phy_modify_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x891085cb bcm_phy_r_rc_cal_reset -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x8f2c02d6 bcm_phy_read_shadow -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x9fcac28d bcm_phy_cable_test_get_status -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xad575294 bcm_phy_downshift_get -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xbbf45dc1 __bcm_phy_modify_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc36cabbd bcm_phy_modify_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc6445cf4 __bcm_phy_read_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc8c2d4d7 bcm_phy_write_misc -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xca71e51b bcm_phy_cable_test_get_status_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xd43fac01 __bcm_phy_write_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xda7eafd8 bcm_phy_write_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xdb9bb52e bcm_phy_get_sset_count -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xeaee5989 bcm_phy_write_shadow -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf04a2368 bcm_phy_config_intr -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf40d1e20 __bcm_phy_write_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xfa24c780 __bcm_phy_read_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xfa4c1df9 bcm_phy_write_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xff149454 bcm54xx_auxctl_read +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x179a2fd6 __bcm_phy_modify_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x1ffcc3ce __bcm_phy_modify_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x21133e6e bcm_phy_read_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x236a58c8 bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x25e8c8a3 bcm_phy_cable_test_get_status_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x2f3f8517 __bcm_phy_write_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x4596be2a bcm_phy_modify_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x463f288d bcm_phy_cable_test_start_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x4a0b3899 bcm_phy_downshift_set +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x4df05232 bcm_phy_modify_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x504a3a85 bcm_phy_28nm_a0b0_afe_config_init +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x525b5f81 bcm_phy_downshift_get +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x5498fba1 bcm_phy_read_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x6006d8b1 bcm_phy_handle_interrupt +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x91bf6cc0 __bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x963f2524 bcm_phy_enable_jumbo +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x9deab11f bcm_phy_write_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x9e6f87fc bcm_phy_read_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xabb3409d __bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb02954b2 bcm_phy_write_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xbb2975d7 bcm_phy_cable_test_get_status +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc7182370 bcm_phy_ack_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xcf7070af bcm_phy_write_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xd247f308 bcm_phy_config_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xd833ac32 __bcm_phy_read_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xdfb7f612 bcm_phy_get_sset_count +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe414ed1b bcm_phy_r_rc_cal_reset +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xea2edc5d bcm54xx_auxctl_read +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xedef6b53 bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xefa85b84 bcm_phy_set_eee +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf0252964 bcm_phy_cable_test_start +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf1a2af4b bcm_phy_get_stats +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xfa55e585 bcm_phy_get_strings +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xfbd9d4a9 bcm_phy_enable_apd EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x08213956 phylink_ethtool_get_wol EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x12135396 phylink_mac_change EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x131e8b94 phylink_helper_basex_speed EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x15c4e3e2 phylink_ethtool_set_pauseparam +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x1644a1e7 phylink_fwnode_phy_connect EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x16ca1a8a phylink_suspend -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x1fc03794 phylink_mii_c45_pcs_get_state +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x1b1bc19c phylink_mii_c22_pcs_set_advertisement +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x1eb64880 phylink_connect_phy +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x23492d1b phylink_of_phy_connect EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x2c8e28ee phylink_ethtool_get_eee -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x2d482665 phylink_mii_c22_pcs_an_restart +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x45d47a5b phylink_mii_c45_pcs_get_state +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x45fe82b5 phylink_create +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x4d9ac6b4 phylink_mii_c22_pcs_config 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 0x5b11b073 phylink_mii_c22_pcs_get_state EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x5d0c4dcc phylink_speed_up EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x62104126 phylink_ethtool_set_wol EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x6831eccf phylink_ethtool_ksettings_get EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x6fa426d2 phylink_ethtool_nway_reset -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x7ff14e89 phylink_fwnode_phy_connect EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x825c7340 phylink_get_eee_err EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x911fcd6c phylink_start EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x983276da phylink_disconnect_phy EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x9ad6f36d phylink_decode_usxgmii_word -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xa034c88f phylink_of_phy_connect +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xb5c1db94 phylink_mii_c22_pcs_an_restart 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 0xc27baad7 phylink_connect_phy EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xc3906c58 phylink_ethtool_ksettings_set -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xcca367d1 phylink_create -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xd4be54e8 phylink_mii_c22_pcs_set_advertisement EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xdcb0a2c0 phylink_stop EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xde66f4a7 phylink_mii_ioctl +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xe16dc660 phylink_mii_c22_pcs_get_state EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xe8c137ed phylink_set_pcs EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xec02ebe0 phylink_init_eee EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xf3083a1d phylink_destroy EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xf8fe5642 phylink_ethtool_get_pauseparam -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xf9c95751 phylink_mii_c22_pcs_config -EXPORT_SYMBOL_GPL drivers/net/tap 0x1703b164 tap_get_minor -EXPORT_SYMBOL_GPL drivers/net/tap 0x49ae8730 tap_get_socket -EXPORT_SYMBOL_GPL drivers/net/tap 0x61c7b54a tap_free_minor -EXPORT_SYMBOL_GPL drivers/net/tap 0x7a234836 tap_destroy_cdev -EXPORT_SYMBOL_GPL drivers/net/tap 0xb1d80c38 tap_create_cdev -EXPORT_SYMBOL_GPL drivers/net/tap 0xb8db22ae tap_queue_resize -EXPORT_SYMBOL_GPL drivers/net/tap 0xea59dab9 tap_handle_frame -EXPORT_SYMBOL_GPL drivers/net/tap 0xf0f7bd77 tap_del_queues -EXPORT_SYMBOL_GPL drivers/net/tap 0xf3420af0 tap_get_ptr_ring -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x83d331d8 usbnet_ether_cdc_bind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x912b6e7c usbnet_cdc_update_filter -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x958d9858 usbnet_cdc_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x9f226c9f usbnet_generic_cdc_bind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xc0768b2c usbnet_cdc_status -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xc7ef0757 usbnet_cdc_bind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x1367c59a cdc_ncm_fill_tx_frame -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x42354608 cdc_ncm_change_mtu -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x48dface6 cdc_ncm_rx_verify_ndp32 -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x7573cce7 cdc_ncm_rx_verify_nth32 -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x9836cfde cdc_ncm_select_altsetting -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x9e2b2370 cdc_ncm_rx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xa3c9645c cdc_ncm_bind_common -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xa40f6701 cdc_ncm_rx_verify_nth16 -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xbd1dcd5c cdc_ncm_rx_verify_ndp16 -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xe3d7eafe cdc_ncm_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xf9aca65f cdc_ncm_tx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/r8152 0xc4df4382 rtl8152_get_version -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x01f5b135 rndis_tx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x36b939e4 generic_rndis_bind -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x671669df rndis_rx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x9a76714a rndis_command -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xdd9e3937 rndis_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xfb125dc9 rndis_status -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x0015aeea usbnet_open -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x0a859bb8 usbnet_status_stop -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1b198852 usbnet_unlink_rx_urbs -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1b63286f usbnet_start_xmit -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x20a74ab5 usbnet_skb_return -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2b9df8a9 usbnet_status_start -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2e1d188e usbnet_write_cmd_async -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x46083e27 usbnet_disconnect -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x49879b76 usbnet_nway_reset -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4fe34082 usbnet_write_cmd -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x50025e0b usbnet_get_msglevel -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x504ec82d usbnet_probe -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5e91be32 usbnet_set_link_ksettings_mii -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6641788f usbnet_suspend -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6962ee7f usbnet_stop -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6bd811b8 usbnet_get_link -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x72d1f018 usbnet_purge_paused_rxq -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x73b2fb29 usbnet_get_endpoints -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x82c3c697 usbnet_get_ethernet_addr -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x96e7822e usbnet_change_mtu -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9d5f6745 usbnet_set_rx_mode -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa0fcb032 usbnet_read_cmd -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa21b0944 usbnet_set_msglevel -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb29e27a8 usbnet_get_drvinfo -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xbdb83e3b usbnet_tx_timeout -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc5635519 usbnet_update_max_qlen -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xcb4f0a84 usbnet_read_cmd_nopm -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xcb861195 usbnet_defer_kevent -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xcdfc9213 usbnet_resume -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xcf4f8f3a usbnet_write_cmd_nopm -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xdc7e1993 usbnet_resume_rx -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xec5fcc02 usbnet_get_link_ksettings_internal -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xedb52f2a usbnet_pause_rx -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf66c17c2 usbnet_get_link_ksettings_mii -EXPORT_SYMBOL_GPL drivers/net/vxlan 0x4015153c vxlan_dev_create -EXPORT_SYMBOL_GPL drivers/net/vxlan 0x65cacf7b vxlan_fdb_clear_offload -EXPORT_SYMBOL_GPL drivers/net/vxlan 0xa7c5f297 vxlan_fdb_find_uc -EXPORT_SYMBOL_GPL drivers/net/vxlan 0xcb0dc44b vxlan_fdb_replay -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/ipw2x00/libipw 0xc0af3374 libipw_rx_any -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x02d23983 _il_grab_nic_access -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1d23fef6 il_dealloc_bcast_stations -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x27a10b23 il_mac_tx_last_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6053fbc5 il_prep_station -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc78409e2 il_remove_station -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x06fc20d7 iwl_write_prph64_no_grab -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x08c28a32 iwl_clear_bits_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x0972b388 iwl_configure_rxq -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x10a2dbde iwl_fw_dbg_stop_restart_recording -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x11501872 iwl_parse_eeprom_data +EXPORT_SYMBOL_GPL drivers/net/tap 0x533bff44 tap_handle_frame +EXPORT_SYMBOL_GPL drivers/net/tap 0x839a905b tap_del_queues +EXPORT_SYMBOL_GPL drivers/net/tap 0xab098fdf tap_create_cdev +EXPORT_SYMBOL_GPL drivers/net/tap 0xae5ef741 tap_free_minor +EXPORT_SYMBOL_GPL drivers/net/tap 0xc3eef32c tap_get_socket +EXPORT_SYMBOL_GPL drivers/net/tap 0xdeb6efbc tap_get_ptr_ring +EXPORT_SYMBOL_GPL drivers/net/tap 0xe516330d tap_destroy_cdev +EXPORT_SYMBOL_GPL drivers/net/tap 0xe6024ad6 tap_get_minor +EXPORT_SYMBOL_GPL drivers/net/tap 0xe64f06b0 tap_queue_resize +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x2a941bf0 usbnet_generic_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x53229ae7 usbnet_cdc_update_filter +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x54548e58 usbnet_ether_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x8db9e666 usbnet_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x9ec28d51 usbnet_cdc_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xfbedb42b usbnet_cdc_status +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x021c8753 cdc_ncm_bind_common +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x163fdcc0 cdc_ncm_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x2e174826 cdc_ncm_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x5c514c46 cdc_ncm_rx_verify_nth16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x7c9e2ab0 cdc_ncm_rx_verify_ndp16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x84551561 cdc_ncm_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x8c9a0957 cdc_ncm_rx_verify_ndp32 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x982c8e7e cdc_ncm_fill_tx_frame +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xa2d323c2 cdc_ncm_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xb5d18a81 cdc_ncm_rx_verify_nth32 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xda839ebf cdc_ncm_select_altsetting +EXPORT_SYMBOL_GPL drivers/net/usb/r8152 0xcaaada61 rtl8152_get_version +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x1fbc0dd0 rndis_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x33613ca4 rndis_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x3dfe7ae0 rndis_status +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x7615c69b generic_rndis_bind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xee18aa37 rndis_command +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xfbe67094 rndis_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x07dc3304 usbnet_set_rx_mode +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1492d55d usbnet_read_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x18f73cbb usbnet_open +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x20710a34 usbnet_nway_reset +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2137655d usbnet_probe +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2bb3b727 usbnet_status_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x31cdaf2b usbnet_write_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3c5b6560 usbnet_defer_kevent +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3cf91bf7 usbnet_get_ethernet_addr +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x41d48697 usbnet_write_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x44d295a8 usbnet_get_endpoints +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4ec86165 usbnet_get_drvinfo +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5213b508 usbnet_read_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x53234272 usbnet_update_max_qlen +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6037ee62 usbnet_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x616b35e1 usbnet_purge_paused_rxq +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x631b1ec4 usbnet_start_xmit +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7ab9771b usbnet_tx_timeout +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7e5ac2d8 usbnet_pause_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7eb07ad9 usbnet_unlink_rx_urbs +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7edd246f usbnet_get_link +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x882c245c usbnet_suspend +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x95757083 usbnet_get_link_ksettings_mii +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x95e5e858 usbnet_get_link_ksettings_internal +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9e43f013 usbnet_set_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa2ac299a usbnet_set_link_ksettings_mii +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb130684d usbnet_skb_return +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb8de800b usbnet_get_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc9984982 usbnet_write_cmd_async +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xcdbd3216 usbnet_resume_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xcdc0a436 usbnet_status_start +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe3980882 usbnet_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf497f81d usbnet_resume +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf5d1374c usbnet_disconnect +EXPORT_SYMBOL_GPL drivers/net/vxlan 0x24f9d758 vxlan_fdb_replay +EXPORT_SYMBOL_GPL drivers/net/vxlan 0x2f0a719b vxlan_fdb_find_uc +EXPORT_SYMBOL_GPL drivers/net/vxlan 0x34aa86ba vxlan_dev_create +EXPORT_SYMBOL_GPL drivers/net/vxlan 0xb8bac5b8 vxlan_fdb_clear_offload +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/ipw2x00/libipw 0x87cfe794 libipw_rx_any +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0f13f60f _il_grab_nic_access +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3fb4c452 il_mac_tx_last_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x75bac0e2 il_remove_station +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb4ffcd10 il_dealloc_bcast_stations +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdbd39079 il_prep_station +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x0217baf0 iwl_acpi_get_wifi_pkg +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x02b9a58f iwl_get_nvm +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x081d04c9 iwl_opmode_register +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x11d13e72 iwl_acpi_get_pwr_limit EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1332e4de iwl_abort_notification_waits -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x152c96ac iwl_dbg_tlv_del_timers -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1539812b iwl_sar_get_wrds_table -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x15d79304 iwl_free_fw_paging -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1ae76fb2 iwl_get_shared_mem_conf -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1dfa5e34 iwl_parse_nvm_mcc_info -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1e61dbb7 iwl_get_nvm +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x14102fcf iwl_fw_dbg_stop_sync +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1adc7c47 iwl_fw_dbg_error_collect +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1d50d5f9 iwl_fw_dbg_stop_restart_recording +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1dae5cc2 iwl_free_fw_paging +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1e47518f iwl_fw_dbg_collect_trig +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1f090105 __iwl_err +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x24b523ed iwl_fw_dbg_collect +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x26234934 iwl_configure_rxq EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2710c362 iwl_dump_desc_assert -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x27150e39 iwl_fw_dbg_error_collect -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x28bc815d iwl_sar_geo_init -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2c39b1c1 iwl_read_external_nvm -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2e6a6a79 iwl_write64 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x28b3c3f3 iwl_fw_dbg_collect_desc EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x35033c81 iwl_phy_db_free -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x35d540c0 __iwl_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x3b7a2715 iwl_fw_dbg_collect -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x3bf8a51f iwl_fw_runtime_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x4038c0c3 iwl_fw_runtime_init -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x43cde6a2 iwl_set_soc_latency -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x49373229 iwl_read32 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x4e431a12 iwl_read_prph_no_grab -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x520f7368 iwl_acpi_get_eckv -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5884f76d iwl_init_paging +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x3cfc6b86 iwl_read_direct32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x4723d7bf iwl_acpi_get_lari_config_bitmap +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x481e5fcf iwl_poll_direct_bit +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x48505146 iwl_clear_bits_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x4a542960 iwl_fw_start_dbg_conf +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x51115e8a iwl_fw_runtime_init +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x53cc3aa0 iwl_get_shared_mem_conf EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5987fe45 iwl_fw_lookup_assert_desc EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5988395c iwl_notification_wait_init -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x599516d7 iwl_write32 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5a83a53b iwl_pnvm_load -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5b88410e iwl_fw_dbg_collect_desc EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5c52e109 iwl_opmode_deregister -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5dac491a iwl_read_direct32 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x64b373b9 iwl_read_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x65763fcf iwl_write_prph_no_grab -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x66963b9c iwl_cmd_groups_verify_sorted -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x75210676 iwl_force_nmi +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x61f657cb iwl_sar_geo_support +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x635ee26b iwl_fwrt_dump_error_logs +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x6a3d6e15 __iwl_crit +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x7163017a iwl_cmd_groups_verify_sorted +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x7424cc8c iwl_dbg_tlv_del_timers +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x7624e6e2 iwl_read32 EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x776221bf iwl_send_phy_db_data -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x798636dd iwl_sar_geo_support -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x7a040be7 iwl_acpi_get_lari_config_bitmap -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x7eb2179d __iwl_crit -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x81f1d7f8 iwl_acpi_get_dsm_u32 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8459ba4c iwl_acpi_get_tas -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8611146c iwl_fw_dbg_collect_trig -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8789c0bb iwl_opmode_register +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x79385525 iwl_read_external_nvm +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x80c9e284 iwl_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x82bc9d1c iwl_fw_runtime_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x888503d1 iwl_write_prph64_no_grab EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8cd2f16c iwl_fw_lookup_notif_ver +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8e86700b iwl_sar_select_profile EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x9038811a iwl_rfi_guid -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x94fd820f iwl_acpi_get_wifi_pkg -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x989d9834 iwl_set_bits_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x9a12449d iwl_acpi_get_mcc -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa0360653 iwl_acpi_get_dsm_u8 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa280179f __iwl_err -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa6bac14d iwl_fw_start_dbg_conf -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa8780524 iwl_finish_nic_init -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa95b9018 iwl_acpi_get_object +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x90e0d8bb iwl_acpi_get_tas +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x915c8472 iwl_parse_nvm_data +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x96608276 iwl_set_soc_latency +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x96a70148 iwl_fw_dbg_read_d3_debug_data +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa13ce371 iwl_sar_geo_init +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa343d92a iwl_write_prph_no_grab +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa78c13e2 iwl_get_cmd_string +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa96a3508 iwl_phy_db_init EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa9f05394 iwlwifi_mod_params +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xaae081b7 _iwl_dbg_tlv_time_point EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb1338340 iwl_fw_lookup_cmd_ver -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb2f3933b iwl_fw_runtime_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb3c6771c iwl_write_direct64 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb4369f41 iwl_write8 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb32df9b9 iwl_write_direct64 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb531bb52 iwl_read_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb5e6191b iwl_set_bits_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb699f51e iwl_fw_runtime_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb75066e5 iwl_acpi_get_dsm_u8 EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xbafc8994 iwl_wait_notification -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc4390bb2 iwl_write_direct32 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xcb580d40 iwl_sar_get_ewrd_table +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xbb32ae46 iwl_acpi_get_dsm_u32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xbea6f07c iwl_write_direct32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xbf76854c iwl_pnvm_load +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc224e7a1 __iwl_info +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc55f492f iwl_acpi_get_object +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xca248288 __iwl_warn EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xce0c6460 iwl_phy_db_set_section -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd1abb84a iwl_read_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd1ad87c0 iwl_fwrt_dump_error_logs -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd5b481e6 iwl_set_bits_mask_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd70edb77 __iwl_info -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd9c9a3ff iwl_parse_nvm_data -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xdcf64237 iwl_acpi_get_pwr_limit -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xddf94832 iwl_phy_db_init -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xdf062a15 iwl_poll_bit +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xcf7a5356 iwl_acpi_get_mcc +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd5d593c4 iwl_finish_nic_init +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd8dc969c iwl_acpi_get_eckv +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xdc2a620a __iwl_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xdc5c4711 iwl_sar_get_wgds_table +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xdf37c520 iwl_init_paging +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xdf5d2126 iwl_parse_nvm_mcc_info EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe0eb5838 iwl_init_notification_wait -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe171887b iwl_poll_direct_bit -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe2333ac6 iwl_fw_dbg_read_d3_debug_data -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe4a7f6bc iwl_write_prph_delay -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe53279a9 iwl_sar_get_wgds_table +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe2f80c1a iwl_force_nmi EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe75b7e77 iwl_notification_wait -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xea00bbd2 iwl_trans_send_cmd EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xea1b26fc iwl_nvm_fixups -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xea8053a9 _iwl_dbg_tlv_time_point -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xebefb099 __iwl_warn -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf6bd01ed iwl_sar_select_profile +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xea22c1b1 iwl_write_prph_delay +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xed685144 iwl_poll_bit +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xee17be81 iwl_sar_get_wrds_table +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xef5f6e6b iwl_set_bits_mask_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf141c2a0 iwl_write64 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf1ffb389 iwl_parse_eeprom_data +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf688221d iwl_trans_send_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf6b3593b iwl_read_prph_no_grab EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf88964e4 iwl_remove_notification -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf9215ed8 iwl_fw_dbg_stop_sync -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xfa9c1101 iwl_get_cmd_string EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xfc1e6f41 iwl_guid -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x2c56c81c p54_free_common -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x45ef4e6a p54_free_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x4c92a4ab p54_init_common -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x750c2c84 p54_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x8e879a66 p54_unregister_common -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x9fa3646a p54_read_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xc89fda28 p54_register_common -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xe36419d8 p54_parse_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xf639dbcd p54_parse_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x0ae50333 lbs_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x0c41f78e lbs_get_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x11a95019 __lbs_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x2256ed6e lbs_notify_command_response -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x3c2f7d7d lbs_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x56de593c lbs_process_rxed_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x5b26adb7 lbs_queue_event +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xfccacb65 iwl_write32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xfe7c1c49 iwl_sar_get_ewrd_table +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xffae18bb iwl_write8 +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x30bfb98e p54_register_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x37a3beba p54_free_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x3879c471 p54_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x40b02bd9 p54_parse_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x87ef8eb8 p54_parse_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xca5e8f9d p54_free_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xded151c4 p54_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xe4d90825 p54_init_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xe9427748 p54_unregister_common +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x1dcf53ab __lbs_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x2f323997 lbs_process_rxed_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x49228723 lbs_start_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x4f3e73c6 lbs_queue_event +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x5d99195c lbs_send_tx_feedback EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x5fdf38b8 lbs_disablemesh -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x8ab3419b lbs_host_sleep_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x8b4f2b41 lbs_start_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xa80bde36 lbs_host_to_card_done -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xba6751c6 lbs_cmd_copyback -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xd6fc6f09 lbs_send_tx_feedback -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xe16d06b7 lbs_stop_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xebedb162 lbs_get_firmware_async -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xf42f1708 lbs_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x75f27770 lbs_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x7fc52814 lbs_host_to_card_done +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x87830f1a lbs_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x8f259f70 lbs_notify_command_response +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x939f470d lbs_get_firmware_async +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xa5791935 lbs_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xba0e1a7d lbs_host_sleep_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xbdf75aa3 lbs_stop_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xe1c6a9f4 lbs_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xeb46f66d lbs_get_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xf240f472 lbs_cmd_copyback EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xf64277de lbs_debug -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xfab87e0d lbs_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x157662ed lbtf_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x211b7bfe __lbtf_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x68f0ad26 lbtf_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x7237dd03 lbtf_send_tx_feedback -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xa929f60a lbtf_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xb3c4c90e lbtf_bcn_sent -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xb550a9ee lbtf_cmd_response_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xc2207d34 lbtf_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x02d6b601 lbtf_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x6da40b6f lbtf_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x93e286dc 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/mwifiex/mwifiex 0x01ca06f1 mwifiex_init_shutdown_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x1693e781 mwifiex_prepare_fw_dump_info -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x1c3710de mwifiex_shutdown_sw -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x1fcba007 mwifiex_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x20b39ebd mwifiex_reinit_sw -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x25d02705 mwifiex_enable_hs -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x27b41e26 mwifiex_deauthenticate_all -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x36ccda2a mwifiex_fw_dump_event -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x3e77c3ca mwifiex_multi_chan_resync -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x4965d392 mwifiex_write_data_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x5024a8db mwifiex_dnld_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x5e1eadab mwifiex_upload_device_dump -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x67cc9b17 mwifiex_main_process -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x73d01cc9 mwifiex_add_virtual_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x84a402dd mwifiex_queue_main_work -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x86ebebf3 mwifiex_handle_rx_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x942e0471 mwifiex_process_sleep_confirm_resp -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x9e81eb06 _mwifiex_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xb0ec49d6 mwifiex_disable_auto_ds -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xbac7c6e0 mwifiex_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xccd16e52 mwifiex_del_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xce3db112 lbtf_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xcfd16f53 lbtf_bcn_sent +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xd5868353 lbtf_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xea0da1c8 __lbtf_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xf451af74 lbtf_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x10f50beb mwifiex_write_data_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x11371a09 mwifiex_add_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x15885aef mwifiex_dnld_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x15ee317d mwifiex_multi_chan_resync +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x18cb20ce mwifiex_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x18d7b64e mwifiex_handle_rx_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x221393ea mwifiex_reinit_sw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x246b2de0 mwifiex_init_shutdown_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x29557112 mwifiex_deauthenticate_all +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x2d45ebc8 mwifiex_shutdown_sw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x58c07141 mwifiex_del_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x6c3fe427 mwifiex_process_hs_config +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x7ee12acd mwifiex_main_process +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x80d31ab2 mwifiex_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x85b86b02 mwifiex_enable_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x8a146dee mwifiex_cancel_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x9275d30f mwifiex_drv_info_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x93b233c7 mwifiex_queue_main_work +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xa5e3dbf6 mwifiex_upload_device_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xaedc10e2 mwifiex_process_sleep_confirm_resp +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xb7e4b678 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 0xddfbe313 mwifiex_process_hs_config -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xf2e14913 mwifiex_drv_info_dump -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xf94cd35a mwifiex_cancel_hs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x012fecc5 mt76_skb_adjust_pad -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x03884290 __SCK__tp_func_dev_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x06462ac4 mt76_insert_ccmp_hdr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0c84c63b mt76_unregister_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0ca55846 mt76_token_consume -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x14596c4f mt76_register_debugfs_fops -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x17a751ad mt76_tx_status_skb_add +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xdea80188 mwifiex_prepare_fw_dump_info +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xe6c74e1a mwifiex_fw_dump_event +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xf4032a6e _mwifiex_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x04f26f5a mt76_token_release +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x069e11ff mt76_register_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0732f0e2 mt76_insert_ccmp_hdr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0bfc454a mt76_dma_attach +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0f740704 mt76_has_tx_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0fcb8a9f mt76_set_stream_caps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x10f90d3f mt76_tx_check_agg_ssn +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x112f68ee __tracepoint_mac_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x170b2cf0 mt76_get_rate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x172f608b mt76_mcu_send_and_get_msg EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x17f568e9 mt76_rates -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1ac70944 __SCK__tp_func_mac_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1bdaac7a mt76_get_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1aa70044 mt76_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1ae60725 mt76_free_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1e361070 mt76_token_consume EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1ec57b4f __mt76_worker_fn -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x234d056a mt76_rx_poll_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x29736d45 mt76_mcu_msg_alloc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2b506270 __mt76_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x33ea83a3 mt76_queues_read -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x34200e98 __mt76_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x370e4b45 mt76_register_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3996586d mt76_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3b3b2dbc mt76_mcu_send_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3d146234 mt76_tx_worker_run -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4158fbb0 mt76_sw_scan_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x43e914b4 mt76_sta_state -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x44b61f6b mt76_eeprom_override -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x46bcff87 mt76_wake_tx_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4881b21e __mt76_set_tx_blocked -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x490619c1 __tracepoint_mac_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4ad9f3dd mt76_mcu_rx_event -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4b973f7a mt76_pci_disable_aspm -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5036e554 mt76_tx_status_unlock -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x51a947ef __traceiter_mac_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x541718f0 mt76_put_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x555a2f00 mt76_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5d3a791e mt76_sta_pre_rcu_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5e6eb999 mt76_token_release -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x636b6b82 mt76_get_rate_power_limits -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x68e4317b __mt76_poll_msec -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6bfd62f5 mt76_mcu_send_and_get_msg -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6fbe5a83 __tracepoint_dev_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x74cc97dd mt76_get_min_avg_rssi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x759317f9 mt76_tx_check_agg_ssn -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7a16143d mt76_update_survey_active_time -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7b254380 mt76_eeprom_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7ee89606 mt76_get_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8053ebc5 mt76_alloc_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x805adae0 mt76_tx_status_lock -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8221f21d mt76_mmio_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x850f53ce mt76_txq_schedule -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8573c15e mt76_register_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8a147e25 mt76_update_survey -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8e775361 mt76_tx_status_skb_done -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9a47eb87 mt76_mcu_skb_send_and_get_msg -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9b2748de mt76_set_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9bde951b mt76_dma_rx_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9ce1e775 mt76_csa_finish -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9f390a90 mt76_has_tx_pending -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa0f1f8c4 mt76_get_of_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa74de14e mt76_set_stream_caps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa850815c mt76_set_irq_mask -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xabb327c0 mt76_free_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xaca45a34 __traceiter_dev_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xadc49c0d mt76_tx_status_check -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb0f7ba50 mt76_stop_tx_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb521a479 mt76_seq_puts_array -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb930677d mt76_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x21c07104 mt76_update_survey_active_time +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x231df7b0 mt76_tx_status_skb_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2537342a mt76_csa_check +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x254064eb mt76_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x259b08cd __traceiter_dev_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x28503360 __tracepoint_dev_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2c5ab5e1 mt76_eeprom_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2e90af3a mt76_dma_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x31258e86 mt76_tx_status_skb_done +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x32ef6440 mt76_mcu_msg_alloc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3f29367f mt76_tx_status_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x452199f0 mt76_wake_tx_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x49727f19 __mt76_set_tx_blocked +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x49f3d624 mt76_get_rate_power_limits +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4d2ef63c mt76_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x522bb2af mt76_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x527f587e mt76_rx_aggr_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5a21462a mt76_release_buffered_frames +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5c50f7ec __mt76_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x60e9db75 __mt76_poll_msec +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x682bfd8c mt76_tx_worker_run +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6ae9c518 mt76_txq_schedule +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6c1fb4ff mt76_alloc_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6cf821f9 mt76_unregister_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6d0cb4a3 __mt76_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6dc2b69c __SCK__tp_func_dev_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7261069e __mt76_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x752d57f8 mt76_update_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x785249f9 mt76_pci_disable_aspm +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7d08cbad mt76_csa_finish +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7d8a284f mt76_mcu_send_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7dc8ef92 mt76_sta_pre_rcu_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x87b0d346 mt76_sta_state +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x98ff58d7 mt76_mcu_get_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa0a42f11 mt76_eeprom_override +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa2629533 mt76_register_debugfs_fops +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa6ca4900 mt76_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa8816492 mt76_get_of_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa94406ce mt76_rx_poll_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb0a9c409 mt76_queues_read +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb3c03616 mt76_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb592b725 mt76_set_irq_mask +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb7aa1867 mt76_stop_tx_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb83c0cb8 mt76_set_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xba3f63f8 mt76_txq_schedule_all EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbb31a266 __SCT__tp_func_mac_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbb40bf74 mt76_unregister_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbb60db68 mt76_csa_check -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc29668b5 mt76_dma_attach +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbc2beb06 mt76_dma_rx_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbc942eb5 mt76_mmio_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbd036b81 mt76_tx_status_check +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbfb8f06b mt76_mcu_rx_event +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc0a5ddfe mt76_init_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc55cf374 __traceiter_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 0xc7a7dbd1 mt76_txq_schedule_all -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xcadf68c4 mt76_tx_status_skb_get -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xdb241e03 mt76_rx_aggr_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xdc38d17e mt76_sw_scan -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xde9bd90c mt76_alloc_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xdf0c872d mt76_queue_tx_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xdfda8f05 mt76_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc926a934 mt76_tx_status_skb_get +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xcaf13a20 mt76_seq_puts_array +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd420ee03 mt76_get_min_avg_rssi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd6c5d64d mt76_get_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xda72dcc6 mt76_tx_status_unlock EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe40b66ef mt76_wcid_alloc EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe45628cb __SCT__tp_func_dev_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe6733b67 mt76_release_buffered_frames -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe6f6a252 mt76_mcu_get_response -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xeb8fcff9 __mt76_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xebe5f84c mt76_init_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xee162f0f mt76_get_rate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf2cba45a mt76_rx_aggr_start -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf9759e19 mt76_dma_cleanup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x0a9e2820 mt76_connac_mcu_sta_update_hdr_trans -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x0deb3150 mt76_connac_mcu_sched_scan_req -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x0e727e20 mt76_connac_mcu_chip_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x188ee198 mt76_connac_mcu_set_rate_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x1bf7d0a2 mt76_connac_mcu_set_channel_domain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x1c527afa mt76_connac_mcu_add_nested_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x1d5874c0 mt76_connac_mcu_sta_ba -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x2e0b1010 mt76_connac_mcu_init_download -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x2e382704 mt76_connac_pm_dequeue_skbs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x2f20b2bc mt76_connac_mcu_beacon_loss_iter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x2fcf8754 mt76_connac_mcu_hw_scan -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x3709b685 mt76_connac_mcu_set_suspend_iter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x3ff3167c mt76_connac_mcu_patch_sem_ctrl -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x42edfd46 mt76_connac_mcu_start_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4f5450f9 mt76_connac_mcu_sta_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x54022cd9 mt76_connac_mcu_get_nic_capability -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x801bb873 mt76_connac_power_save_sched -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x835a82b4 mt76_connac_mcu_update_arp_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe9ef133a mt76_skb_adjust_pad +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xeac00d2f mt76_mcu_skb_send_and_get_msg +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xedab03a7 mt76_sw_scan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xee6a77b8 mt76_rx_aggr_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf28b961c mt76_queue_tx_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf4f11fff mt76_put_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf5047c79 __SCK__tp_func_mac_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf517b696 mt76_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf92c0e7c mt76_alloc_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xfd46eadc mt76_unregister_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x00f208bb mt76_connac_mcu_set_suspend_iter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x0b2d7821 mt76_connac_mcu_alloc_wtbl_req +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x11ebf6e4 mt76_connac_mcu_sched_scan_enable +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x12961cfa mt76_connac_mcu_get_nic_capability +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x1cc65610 mt76_connac_mcu_add_nested_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x1f09455e mt76_connac_mcu_start_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x2bf14029 mt76_connac_mcu_sta_ba +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x32ef1379 mt76_connac_mcu_set_rts_thresh +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x3d436c51 mt76_connac_mcu_coredump_event +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x416cc54f mt76_connac_sta_state_dp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x49095285 mt76_connac_mcu_wtbl_ht_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x5987c59a mt76_connac_mcu_chip_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x5a0d9bfe mt76_connac_mcu_hw_scan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x5aa23f93 mt76_connac_mcu_uni_add_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x5b02b40d mt76_connac_mcu_wtbl_hdr_trans_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x5dcf6a2d mt76_connac_mcu_set_rate_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x5ec03166 mt76_connac_mcu_update_arp_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x65e2ef6e mt76_connac_mcu_cancel_hw_scan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x6fde4da3 mt76_connac_mcu_uni_add_bss +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x75ccc695 mt76_connac_mcu_wtbl_generic_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x75d4184a mt76_connac_pm_dequeue_skbs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7eabd7d1 mt76_connac_mcu_sta_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x81b7378c mt76_connac_mcu_set_mac_enable +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x8f5824d2 mt76_connac_mcu_beacon_loss_iter 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 0x92729296 mt76_connac_mcu_alloc_sta_req -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x92db9250 mt76_connac_mcu_coredump_event -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x951086fb mt76_connac_mcu_alloc_wtbl_req -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x99672d91 mt76_connac_mcu_sta_basic_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x9fa730cc mt76_connac_mcu_wtbl_generic_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa00e3ff8 mt76_connac_pm_queue_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa30d769f mt76_connac_mcu_start_patch -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa5338c7f mt76_connac_mcu_sta_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb08ac3b0 mt76_connac_free_pending_tx_skbs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xbcf65364 mt76_connac_mcu_set_hif_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc6c9e16f mt76_connac_pm_wake -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc78c84af mt76_connac_mcu_set_vif_ps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xcfe743c8 mt76_connac_mcu_update_gtk_rekey -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd05f36b4 mt76_connac_mcu_set_rts_thresh -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd4978199 mt76_connac_mcu_set_deep_sleep -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd643dcd2 mt76_connac_mcu_cancel_hw_scan -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd65b95f6 mt76_connac_mcu_wtbl_ba_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xdc87b301 mt76_connac_mcu_uni_add_bss -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xde6f26f6 mt76_connac_mcu_wtbl_hdr_trans_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xdf487973 mt76_connac_mcu_sched_scan_enable -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xefccb28e mt76_connac_mcu_set_mac_enable -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf1038205 mt76_connac_mcu_wtbl_ht_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xfa16dd58 mt76_connac_mcu_uni_add_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xfb1e512b mt76_connac_mcu_sta_ba_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xfbdac1fb mt76_connac_sta_state_dp -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x7c7f1fec mt76s_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xa4fc78c1 mt76s_alloc_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xf55556b3 mt76s_deinit -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x02a585c3 mt76u_stop_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x043ba0d2 mt76u_alloc_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x1a9d33d8 mt76u_stop_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x6d582d1c mt76u_resume_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x7bb3e776 mt76u_alloc_mcu_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x87b4fb30 mt76u_vendor_request -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x90e910b8 mt76u_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xb9ef4cb2 mt76u_queues_deinit -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xc7a8f52e mt76u_single_wr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x028c7dd0 mt7615_register_ext_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x05c23f88 mt7615_update_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x0b882da4 mt7615_wait_for_mcu_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x0fc657a0 mt7622_trigger_hif_int -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x132eba73 mt7615_thermal_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x1a70c78a mt7615_mac_sta_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x1e49a581 mt7615_mcu_restart -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x3142375b mt7615_init_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x3c6622a4 mt7615_mac_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x59bb26a8 mt7615_init_work -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x59cf327b mt7615_mac_set_rates -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x6acf9163 mt7615_ops -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x6b9ccacd mt7615_init_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x6ff1bc3a mt7615_tx_token_put -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x706f4fe2 mt7615_mcu_exit -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x7cdd16bd mt7615_init_debugfs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x84c56bfd mt7615_sta_ps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x8f3edf56 mt7615_mcu_reg_wr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xc25cfe67 mt7615_mac_write_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xc25f6d39 mt7615_unregister_ext_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xcb46b1b5 mt7615_eeprom_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xce057eae __mt7663_load_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xd35422e4 mt7615_mcu_reg_rr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xd3eebaf9 mt7615_queue_rx_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xd4f43c5d mt7615_mac_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xd4fce8f4 mt7615_mcu_parse_response -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xeacc09b0 mt7615_txp_skb_unmap -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xf3086508 mt7615_mcu_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xfcb6f371 mt7615_mcu_fill_msg -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615e 0xeab0cf1e mt7615_dma_reset -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x11ea298a mt7663_usb_sdio_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x9416bd6c mt76_connac_mcu_sta_ba_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x94939159 mt76_connac_mcu_sta_basic_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x9c43f67d mt76_connac_free_pending_tx_skbs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa584c418 mt76_connac_mcu_alloc_sta_req +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa66192d2 mt76_connac_mcu_sta_update_hdr_trans +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb1d1b657 mt76_connac_mcu_start_patch +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb49de477 mt76_connac_pm_queue_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb4f13e02 mt76_connac_mcu_wtbl_ba_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb923006a mt76_connac_mcu_update_gtk_rekey +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb99e17ae mt76_connac_mcu_patch_sem_ctrl +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xbab9f344 mt76_connac_mcu_set_hif_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc96d23ab mt76_connac_mcu_sched_scan_req +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd3bd3c8f mt76_connac_mcu_set_vif_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd413cf6f mt76_connac_mcu_sta_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd7a57f41 mt76_connac_power_save_sched +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xeb481f18 mt76_connac_pm_wake +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xee459192 mt76_connac_mcu_set_channel_domain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf4df388e mt76_connac_mcu_set_deep_sleep +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xfcdc6cb4 mt76_connac_mcu_init_download +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x5e3b6502 mt76s_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xcb5b24e5 mt76s_alloc_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xede8519b mt76s_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x08342c36 mt76u_stop_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x1e05da9d mt76u_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x257e85cc mt76u_alloc_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x3ffa5d0e mt76u_alloc_mcu_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x6e6d2120 mt76u_stop_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x85863b16 mt76u_single_wr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xb04494f7 mt76u_queues_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xd47304e3 mt76u_resume_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xe00416c9 mt76u_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x0687330c mt7615_init_work +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x077def43 mt7615_init_debugfs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x0be91a36 mt7615_mcu_parse_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x0dd4db6f mt7615_mcu_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x1a224825 mt7615_mac_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x1b10ea41 mt7615_mcu_fill_msg +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x25ab0bc7 mt7615_init_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x28fa368a mt7615_mac_sta_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x3b21b73c mt7615_queue_rx_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x4e7e3aa9 mt7622_trigger_hif_int +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x529a6063 mt7615_mcu_reg_rr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x530ccdc2 mt7615_init_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x610459d1 mt7615_wait_for_mcu_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x64c28d43 mt7615_update_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x6b6ce0ca mt7615_tx_token_put +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x77fdc7e3 mt7615_mcu_exit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x846e5911 mt7615_register_ext_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x8ce02cbf mt7615_txp_skb_unmap +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x93498cc2 mt7615_unregister_ext_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x95be2bf1 mt7615_mac_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x9b0547df mt7615_mcu_restart +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xa2a065e4 mt7615_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xa476f0e8 mt7615_eeprom_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xad1e0f77 mt7615_mac_set_rates +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xb2a66eb4 mt7615_mcu_reg_wr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xc369b356 mt7615_mac_write_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xc7de7fe6 __mt7663_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xeeb74a01 mt7615_thermal_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xf38703e4 mt7615_sta_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615e 0x582ca822 mt7615_dma_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x112e0783 mt7663_usb_sdio_register_device 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 0x7f92848e mt7663_usb_sdio_register_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x7fe11850 mt7663_usb_sdio_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0xaa58a2e2 mt7663_usb_sdio_tx_status_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x0869ddd4 mt76x0_register_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x0f9b61e0 mt76x0_chip_onoff -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x19d16acc mt76x0_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xb0b0f8f9 mt76x0_init_hardware -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xbf4b8f83 mt76x0_mac_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xd7f1df16 mt76x0_phy_calibrate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0276f923 mt76x02_dma_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x030ae0f7 mt76x02_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x030efad3 mt76x02_ext_pa_enabled +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x2c15f145 mt7663_usb_sdio_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x3ca6dbeb mt7663_usb_sdio_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x677e037b mt7663_usb_sdio_tx_status_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x1486bcb3 mt76x0_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x42c15642 mt76x0_mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x602e1172 mt76x0_init_hardware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x886ccf68 mt76x0_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x977af146 mt76x0_phy_calibrate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xcd5a9e2d mt76x0_chip_onoff EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0462ce68 mt76x02_add_rate_power_offset -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x099e344e mt76x02_mcu_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x063de727 mt76x02_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x07f51d25 mt76x02_phy_set_txdac EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0d4023ec mt76x02_get_max_rate_power -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x14666fd5 mt76x02_mac_write_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x17e033af mt76x02_mac_reset_counters -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x19f35b27 mt76x02_mac_set_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1a466cd1 mt76x02_remove_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2706af72 mt76x02_ampdu_action -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2d289b9d mt76x02_dma_disable -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2e631481 mt76x02_mac_shared_key_setup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2edf1668 mt76x02_tx_status_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x321f1536 mt76x02_mcu_msg_send -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x33e09caa mt76x02_set_coverage_class +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0ebf31d4 mt76x02_eeprom_copy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x106fe10f mt76x02_mac_shared_key_setup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x12475997 mt76x02_mcu_set_radio_state +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x13e6dff1 mt76x02_phy_set_bw +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x152fdf4a mt76x02_remove_hdr_pad +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1561e933 mt76x02_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x24f17d46 mt76x02_ext_pa_enabled +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2c32f421 mt76x02_reconfig_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x324a2fd8 mt76x02_dma_disable +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x34cdd23d mt76x02_init_debugfs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x351bde46 mt76x02_mac_write_txwi EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x35d2834d mt76x02_limit_rate_power -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x38406d3e mt76x02_mcu_parse_response -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3ba68ea7 mt76x02_resync_beacon_timer -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x44e17d76 mt76x02_mac_cc_reset -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x48c51999 mt76x02_init_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4928b0ff mt76x02_edcca_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5664ac1a mt76x02_queue_rx_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5b41ef0d mt76x02_mcu_function_select +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x369eab2c mt76x02_get_rx_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3807bcb2 mt76x02_set_ethtool_fwver +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x391557fd mt76x02_init_agc_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x44804ebf mt76x02_resync_beacon_timer +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x44cb7f90 mt76x02_rx_poll_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x48c80b16 mt76x02_tx_status_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x514dd505 mt76x02_mcu_calibrate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x53f8e070 mt76x02_mac_wcid_setup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5408a206 mt76x02_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5467c167 mt76x02_phy_set_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x54ee856a mt76x02_phy_set_band +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5918b3a6 mt76x02_mac_reset_counters EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5bd84fd5 mt76x02_rates -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5e3466ac mt76x02_rx_poll_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5f031737 mt76x02_reconfig_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x613663a1 mt76x02_phy_dfs_adjust_agc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6395ab8f mt76x02_mac_wcid_setup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x63fc7343 mt76x02_tx_set_txpwr_auto -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x69d14a7e mt76x02_phy_set_rxpath -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x70507965 mt76x02_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x72f382b0 mt76x02_phy_set_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x752090fd mt76x02_get_rx_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x79a184f5 mt76x02_eeprom_copy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7c8d7f83 mt76x02_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7cc59334 mt76x02_mcu_set_radio_state -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7e616a6a mt76x02_init_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x80faf67a mt76x02_configure_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8849b10f mt76x02_add_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x89ea57c6 mt76x02e_init_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8a4bb493 mt76x02_sta_rate_tbl_update -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8cfddc4d mt76x02_update_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x63400a5c mt76x02_get_lna_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x660727ad mt76x02_queue_rx_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6d8004d2 mt76x02_config_mac_addr_list +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6d98c8b3 mt76x02_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x707392a6 mt76x02_mcu_function_select +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x71726333 mt76x02_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x725fbd4d mt76x02_dma_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x755d73a8 mt76x02_update_beacon_iter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x76e8a3c7 mt76x02_dfs_init_params +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x78708084 mt76x02_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7d946049 mt76x02_sta_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7fd256ac mt76x02_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x84e9e77c mt76x02_tx_set_txpwr_auto +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8cd9ac3a mt76x02_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8e44ed14 mt76x02_mac_set_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x902fd5c1 mt76x02_update_channel EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x91d5b9ee mt76x02_irq_handler -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x93a5cd6d mt76x02_dfs_init_params -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x93a9c1df mt76x02_remove_hdr_pad -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x93fea292 mt76x02_sw_scan_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x95dc9faa mt76x02_init_agc_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9aa55c17 mt76x02_get_efuse_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa6327acc mt76x02_update_beacon_iter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa8e4c206 mt76x02_sta_ps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb143aaf2 mt76x02_phy_set_bw -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb554cdc3 mt76x02_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc1a1e532 mt76x02_mac_setaddr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc6108378 mt76x02_mac_start -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc75f1fa2 mt76x02_phy_set_band -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc799cf25 mt76x02_set_ethtool_fwver -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd514fdd8 mt76x02_get_lna_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xda951724 mt76x02_bss_info_changed -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xdd68cc0c mt76x02_set_tx_ackto -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xddaac203 mt76x02_config_mac_addr_list -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe2887e00 mt76x02_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe2c0b63d mt76x02_init_debugfs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe368049f mt76x02_enqueue_buffered_bc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xea0df731 mt76x02_eeprom_parse_hw_cap -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xeae1262f mt76x02_phy_set_txdac -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xeca924ae mt76x02_mcu_calibrate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xefa073bc mt76x02_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf7747155 mt76x02_tx_prepare_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf982fa74 mt76x02_phy_adjust_vga_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xfd406927 mt76x02_set_rts_threshold -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x2291e970 mt76x02u_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x3139812d mt76x02u_init_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x4f630f5e mt76x02u_exit_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x53cff77b mt76x02u_mcu_fw_reset -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x60cbe020 mt76x02u_mac_start -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x77928ad3 mt76x02u_init_mcu -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x789f6cc8 mt76x02u_tx_prepare_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xf573c21f mt76x02u_mcu_fw_send_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x015e36f3 mt76x2_apply_gain_adj -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x11e926a7 mt76x2_phy_update_channel_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x16ed2e48 mt76x2_reset_wlan -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x208d396e mt76x2_eeprom_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x306dee58 mt76x2_phy_set_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x46ffb63b mt76x2_phy_set_txpower_regs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x8ad9e61b mt76_write_mac_initvals -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x9069b15b mt76x2_read_rx_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x9c4aab87 mt76x2_get_power_info -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xa0aa9f5d mt76x2_mcu_tssi_comp -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xaaf972a5 mt76x2_mcu_set_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xb4633d89 mt76x2_configure_tx_delay -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xb9307368 mt76x2_init_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xbfdd4818 mt76x2_mcu_init_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xddf77fcb mt76x2_mcu_load_cr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xf3f2d5dc mt76x2_mac_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xf48b84d7 mt76x2_phy_tssi_compensate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xf8aeae75 mt76x2_get_rate_power -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xf9df969e mt76x2_get_temp_comp -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x01499a5f host_wakeup_notify -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x3f3e7745 host_sleep_notify -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x7fbce876 wilc_cfg80211_init -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xbbc1bd44 wilc_netdev_cleanup -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xc83b1d77 wilc_handle_isr -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xc90b0db6 chip_allow_sleep -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xe6fb5867 chip_wakeup -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x201857df qtnf_wake_all_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x92c0a0c6 mt76x02_mac_setaddr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x96dae02b mt76x02_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9ad54171 mt76x02_init_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa07f37e5 mt76x02_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa4bbb842 mt76x02_enqueue_buffered_bc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb10e72ab mt76x02_eeprom_parse_hw_cap +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb178f1b9 mt76x02_set_coverage_class +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb78fcafe mt76x02_mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc70bf537 mt76x02_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xca7fc73b mt76x02_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xcf677cf6 mt76x02_mac_cc_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd0418abf mt76x02_edcca_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd41e6c0e mt76x02_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd555333a mt76x02_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xdad446ed mt76x02_phy_set_rxpath +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xdb06751a mt76x02_mcu_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xdf240285 mt76x02_get_efuse_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe1e3bd48 mt76x02_phy_dfs_adjust_agc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe38a6457 mt76x02_set_tx_ackto +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xecbe1ef6 mt76x02_mcu_parse_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xef77e9b5 mt76x02_mcu_msg_send +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf111b52a mt76x02_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf4c7febd mt76x02e_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf8511f50 mt76x02_phy_adjust_vga_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xfa6831df mt76x02_sta_rate_tbl_update +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x324751b8 mt76x02u_exit_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x38aed269 mt76x02u_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x3ffad378 mt76x02u_init_mcu +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x58bebd77 mt76x02u_mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x60bbfa3f mt76x02u_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x6bb51165 mt76x02u_mcu_fw_send_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xb33ae211 mt76x02u_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xcf264f13 mt76x02u_mcu_fw_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x108f679f mt76x2_mcu_load_cr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x161b31fe mt76x2_phy_set_txpower_regs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x2c4e5d5f mt76x2_phy_set_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x4b2bf7dc mt76x2_apply_gain_adj +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x5698ce73 mt76x2_read_rx_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x585f4b16 mt76x2_init_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x68473692 mt76x2_phy_update_channel_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x729901c8 mt76_write_mac_initvals +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x75efe0f0 mt76x2_mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x7b1397e8 mt76x2_get_power_info +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x814980af mt76x2_reset_wlan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x91809583 mt76x2_phy_tssi_compensate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x93ad5679 mt76x2_mcu_set_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xbeae1a5b mt76x2_get_temp_comp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xc4d67d9c mt76x2_eeprom_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xd1d02579 mt76x2_mcu_init_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xd772e17a mt76x2_get_rate_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xf396ce49 mt76x2_configure_tx_delay +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xffdddd1c mt76x2_mcu_tssi_comp +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x2a59f85f wilc_netdev_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x63ac5f35 chip_allow_sleep +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x73ceb86b host_wakeup_notify +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x747bc088 wilc_handle_isr +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x7c34829e chip_wakeup +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xa2cfd99b host_sleep_notify +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xa8384177 wilc_cfg80211_init +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x0c71d4eb qtnf_wake_all_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x2722f3c1 qtnf_core_attach EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x31fab83c qtnf_chipid_to_string -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x34c95dbc qtnf_core_detach -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x36d34d3f qtnf_classify_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x4bfaa17f qtnf_get_debugfs_dir -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x73accedf qtnf_trans_handle_rx_ctl_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xce14f576 qtnf_core_attach -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x007e3c6c rt2800_read_eeprom_efuse -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x07bf8308 rt2800_efuse_detect -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x07f8372f rt2800_set_rts_threshold -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x180d59b0 rt2800_process_rxwi -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x19f67fb2 rt2800_write_tx_data -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x1a465e14 rt2800_config_pairwise_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x1c773fff rt2800_disable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x1eeb742f rt2800_enable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x226c3ce5 rt2800_txdone_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x2360e9b5 rt2800_mcu_request -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x2b660dff rt2800_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x32f9ba71 rt2800_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x3537dc99 rt2800_wait_csr_ready -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x36a9074a rt2800_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x3d1daedf rt2800_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x42efbcbd rt2800_write_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x460750f5 rt2800_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x49aba270 rt2800_load_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x63dbb984 rt2800_get_txwi_rxwi_size -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x66864cdf rt2800_config_erp -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6d888737 rt2800_rfkill_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6f436c6c rt2800_config_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x771cec76 rt2800_ampdu_action -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7cfa6d94 rt2800_probe_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x82e6f8d6 rt2800_config_shared_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x83e55251 rt2800_txstatus_timeout -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x9e77ba99 rt2800_get_survey -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa5b9d8ec rt2800_txdone_nostatus -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xafd01f4c rt2800_get_key_seq -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb22caebc rt2800_vco_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb8c013d4 rt2800_watchdog -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xba8db9df rt2800_config_ant -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xbdaf9fbe rt2800_pre_reset_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc4394ef1 rt2800_reset_tuner -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc683d9a7 rt2800_gain_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc791161e rt2800_clear_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xcac744cb rt2800_check_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd3ae4393 rt2800_config_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd3c35fc8 rt2800_get_tsf -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd71213d4 rt2800_link_tuner -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xdf7200a9 rt2800_disable_wpdma -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe7f1498e rt2800_link_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xea6f829f rt2800_wait_wpdma_ready -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xfca74ef1 rt2800_txstatus_pending -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x0b3f5d0d rt2800mmio_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x562ca0a1 qtnf_get_debugfs_dir +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x6e7a2e96 qtnf_core_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xb740d89f qtnf_trans_handle_rx_ctl_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xe5ed6146 qtnf_classify_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x02e7ecea rt2800_config_erp +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x05a47ac0 rt2800_get_tsf +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x09d7b72d rt2800_disable_wpdma +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x0d48e7c4 rt2800_txstatus_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x23b60b91 rt2800_config_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x320e5181 rt2800_probe_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x367a8626 rt2800_check_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x40f2395b rt2800_reset_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x47b507cc rt2800_txdone_nostatus +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x563d54dc rt2800_vco_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x5dbaf15f rt2800_link_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x5f3ac0fb rt2800_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x664fc3f2 rt2800_get_key_seq +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6ed53142 rt2800_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x71003df7 rt2800_link_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x729797a0 rt2800_process_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7443a220 rt2800_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x769463dd rt2800_txstatus_timeout +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x77bf4d4d rt2800_gain_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7c26374c rt2800_wait_wpdma_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7cbad691 rt2800_clear_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7dac2a46 rt2800_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7f3eb2a9 rt2800_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x89bfd309 rt2800_txdone_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x8dc0b7df rt2800_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x8e52210e rt2800_wait_csr_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x91a88e65 rt2800_read_eeprom_efuse +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x92a311e7 rt2800_config_shared_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x93c7a9fa rt2800_config_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x969f3bd7 rt2800_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x96dea4d5 rt2800_efuse_detect +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x9840d196 rt2800_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa8a5d5db rt2800_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xbe6b7070 rt2800_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xbed629be rt2800_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xbf79ce17 rt2800_get_txwi_rxwi_size +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc0ee0d32 rt2800_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc561a938 rt2800_config_pairwise_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc70c824a rt2800_write_tx_data +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc71904d0 rt2800_write_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xccf9455f rt2800_mcu_request +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd827f4b4 rt2800_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe0be2b85 rt2800_pre_reset_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xeff71270 rt2800_config_ant +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x0e983904 rt2800mmio_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x108448a1 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 0x35a3ed0f 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 0x42124128 rt2800mmio_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x42381584 rt2800mmio_get_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x48dc660b rt2800mmio_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x4af34090 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 0x532a68ed rt2800mmio_stop_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x56d72597 rt2800mmio_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x52baf8fe rt2800mmio_init_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x533b843d rt2800mmio_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x575afe0d rt2800mmio_clear_entry EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5fa4db64 rt2800mmio_interrupt -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x62a41fce rt2800mmio_write_tx_desc -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x6d8321ce rt2800mmio_kick_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x6f545440 rt2800mmio_get_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x87de8377 rt2800mmio_start_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x889fcf60 rt2800mmio_queue_init +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x64edef09 rt2800mmio_get_entry_state +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x727b1374 rt2800mmio_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x7a84af68 rt2800mmio_toggle_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x813ec18b rt2800mmio_fill_rxdone 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 0xa1c8e073 rt2800mmio_init_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xa4a380bf rt2800mmio_get_entry_state -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xc2790e65 rt2800mmio_probe_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xc3234d8b rt2800mmio_toggle_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xca9987a5 rt2800mmio_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xda9ea713 rt2800mmio_init_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xe68f878c rt2800mmio_get_dma_done -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xfb5b2555 rt2800mmio_fill_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x0f770f25 rt2x00queue_stop_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x142b2bd5 rt2x00lib_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1bdcea90 rt2x00mac_set_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1d4a1a79 rt2x00queue_unmap_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x2a924f5d rt2x00lib_remove_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x2bcc7aca rt2x00mac_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x30f5bc3a rt2x00lib_set_mac_address -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4343c89d rt2x00lib_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x496254ba rt2x00queue_flush_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4a894f84 rt2x00lib_txdone_nomatch -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4bef9ee5 rt2x00queue_start_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4c46de6e rt2x00mac_flush -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x523a1a72 rt2x00queue_get_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x52a4075c rt2x00mac_remove_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x53716409 rt2x00mac_configure_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x56097030 rt2x00mac_start -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x5e1a4f42 rt2x00queue_pause_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x6e406f59 rt2x00queue_stop_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x707673f3 rt2x00queue_unpause_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x75188822 rt2x00queue_for_each_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7723b253 rt2x00mac_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x857a9e67 rt2x00mac_bss_info_changed -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x87582364 rt2x00mac_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x87819804 rt2x00queue_map_txskb -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x879e0f29 rt2x00mac_sw_scan_start -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x9869545f rt2x00lib_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x9913e3cd rt2x00mac_tx_frames_pending -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa218fe51 rt2x00lib_beacondone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa3b27f3d rt2x00lib_txdone_noinfo -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa87d9ac4 rt2x00mac_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xaafebf21 rt2x00mac_rfkill_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xab28db0b rt2x00mac_get_ringparam -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xad5c317d rt2x00queue_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb3869393 rt2x00lib_dmastart -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xba1e721e rt2x00lib_get_bssidx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc8276559 rt2x00mac_reconfig_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xcd855f73 rt2x00queue_start_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd30bb48a rt2x00mac_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd446acfc rt2x00lib_pretbtt -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd6ffce1d rt2x00mac_get_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd9066266 rt2x00lib_probe_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xdb1cc91f rt2x00mac_sw_scan_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xdb7f6fff rt2x00lib_dmadone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe49d3666 rt2x00mac_get_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe545f4ea rt2x00mac_set_tim -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe9350cc7 rt2x00mac_add_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xeddfcb3c rt2x00lib_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x26fd8973 rt2x00mmio_initialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x31db9ee7 rt2x00mmio_uninitialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x9c7da809 rt2x00mmio_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xbd846d13 rt2x00mmio_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xe2cf8cd2 rt2x00mmio_regbusy_read -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x001d260c rt2x00pci_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x08b07034 rt2x00pci_pm_ops -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x5fe54eb9 rt2x00pci_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x022a0c2f rt2x00usb_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x27abb53e rt2x00usb_register_read_async -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x2e9c1736 rt2x00usb_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x545b1e41 rt2x00usb_vendor_request -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x610eb546 rt2x00usb_vendor_req_buff_lock -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x6da513b7 rt2x00usb_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x969699ce rt2x00usb_watchdog -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x9931ab9a rt2x00usb_initialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x9e90c892 rt2x00usb_kick_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xa0a71e3f rt2x00usb_regbusy_read -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xa6d9afd5 rt2x00usb_disconnect -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xc4e7e69a rt2x00usb_clear_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xd4fed850 rt2x00usb_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xd7f5bdad rt2x00usb_disable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xf045bcd9 rt2x00usb_uninitialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xf69ceb70 rt2x00usb_vendor_request_buff -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x01580627 dm_writepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3d5a5f78 rtl92c_set_p2p_ps_offload_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xbc8e263c dm_restorepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd23dbbc0 dm_savepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x003554ce rtl8723_dm_init_dynamic_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x064e804d rtl8723_phy_init_bb_rf_reg_def -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x06b59907 rtl8723_phy_path_adda_on -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0dd46805 rtl8723_phy_rf_serial_read -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x2c8a8c21 rtl8723_phy_save_mac_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x2f3e77db rtl8723_phy_reload_mac_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x39029b6f rtl8723_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xd3c9e6f9 rt2800mmio_probe_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xd9bddc19 rt2800mmio_queue_init +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x01126be2 rt2x00queue_start_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x151a703c rt2x00mac_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1b06ad64 rt2x00lib_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1f1aa659 rt2x00queue_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x25de9e03 rt2x00mac_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x2e47cd52 rt2x00lib_txdone_noinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x300c6566 rt2x00mac_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x35517493 rt2x00mac_set_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x38b5eedb rt2x00mac_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3e2a5813 rt2x00mac_reconfig_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x431f0466 rt2x00queue_stop_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x45f7e4cc rt2x00lib_dmadone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x51109b43 rt2x00lib_pretbtt +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x5a0fcc5e rt2x00mac_tx_frames_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x5cabeac8 rt2x00lib_get_bssidx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x63338d5a rt2x00mac_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x6770f6f0 rt2x00queue_map_txskb +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x67cbdde3 rt2x00mac_get_ringparam +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x69c85d4f rt2x00mac_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x6ca18154 rt2x00queue_unpause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x752e2a54 rt2x00mac_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7cdf7a15 rt2x00lib_txdone_nomatch +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x82c929b2 rt2x00mac_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x8e01a04d rt2x00mac_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x8e9ad3ca rt2x00lib_probe_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x93b98b7d rt2x00queue_for_each_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x94106755 rt2x00mac_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x948688d1 rt2x00mac_get_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x957972a5 rt2x00lib_dmastart +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x99cc49c4 rt2x00lib_set_mac_address +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x9bfedcd4 rt2x00mac_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x9c6d88e9 rt2x00lib_beacondone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa0ed4e70 rt2x00queue_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xae4f9c41 rt2x00mac_sw_scan_start +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb0644412 rt2x00mac_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb12f1b26 rt2x00mac_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb67bc3b2 rt2x00lib_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xbd0d158f rt2x00queue_flush_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc03a3597 rt2x00lib_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xcc36c500 rt2x00lib_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xccbe142d rt2x00queue_pause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xcf7b7d4b rt2x00mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xdb7b7f4e rt2x00lib_remove_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xdbf3ee7a rt2x00queue_unmap_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe36900ed rt2x00queue_get_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe756df3e rt2x00queue_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xed8a6b42 rt2x00mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x4b9fb09d rt2x00mmio_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x8cecdc7b rt2x00mmio_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x94f9cb31 rt2x00mmio_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x9df5fa23 rt2x00mmio_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xe13271c5 rt2x00mmio_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x016db780 rt2x00pci_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x733af282 rt2x00pci_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0xf6780058 rt2x00pci_pm_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x1544d5fe rt2x00usb_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x5e5203bb rt2x00usb_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x7a0c418e rt2x00usb_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x7e52cdd8 rt2x00usb_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x821a0d7b rt2x00usb_vendor_req_buff_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xb1461352 rt2x00usb_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xb4e10d7b rt2x00usb_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xc4296490 rt2x00usb_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xc672568d rt2x00usb_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xca6533e1 rt2x00usb_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xd2860369 rt2x00usb_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xd79309ca rt2x00usb_disconnect +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xe82166d9 rt2x00usb_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xe9b6984f rt2x00usb_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xfbc62008 rt2x00usb_vendor_request_buff +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xfcadd8a2 rt2x00usb_register_read_async +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x04178d13 dm_restorepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1d5eb396 dm_writepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3163f0d1 rtl92c_set_p2p_ps_offload_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc035f7e8 dm_savepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0cbc69b6 rtl8723_dm_init_edca_turbo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x2abea3d9 rtl8723_phy_pi_mode_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x2b6757a5 rtl8723be_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x2c444731 rtl8723_phy_reload_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x37626930 rtl8723_dm_init_dynamic_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x3886af83 rtl8723_phy_path_adda_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x3bb2a101 rtl8723_save_adda_registers EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x3f5bf9c0 rtl8723_phy_calculate_bit_shift -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x40277ff2 rtl8723_enable_fw_download -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x47ed7ddc rtl8723ae_firmware_selfreset -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x4db549b7 rtl8723_download_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x4e62bcba rtl8723_cmd_send_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x582a8995 rtl8723_dm_init_dynamic_bb_powersaving -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6a5e6a01 rtl8723_phy_query_bb_reg -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x7902963a rtl8723_phy_rf_serial_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x4b44cab4 rtl8723_phy_save_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x4dd5d907 rtl8723_phy_mac_setting_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x53c529b3 rtl8723ae_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x556e49eb rtl8723_write_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x5cc82b50 rtl8723_enable_fw_download +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6224026d rtl8723_phy_reload_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8b0e1721 rtl8723_phy_txpwr_idx_to_dbm 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 0x963fc0c8 rtl8723_phy_set_bb_reg -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x97e5b24b rtl8723_save_adda_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb4301273 rtl8723_dm_init_edca_turbo -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb8359db7 rtl8723be_firmware_selfreset -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xbf76d074 rtl8723_fw_free_to_go -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe210ff5f rtl8723_phy_path_a_standby -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe5de6183 rtl8723_phy_reload_adda_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xebf4dc10 rtl8723_phy_path_a_fill_iqk_matrix -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf129b4c1 rtl8723_phy_mac_setting_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf1bf8114 rtl8723_write_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xfdccba5e rtl8723_phy_pi_mode_switch -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0cb9bbc2 rtl_fw_block_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0fd25b1b read_efuse_byte -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x16433794 rtl_efuse_ops_init -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1a88d96f rtl_tx_ackqueue +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa0341f60 rtl8723_phy_set_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xad664d3f rtl8723_phy_init_bb_rf_reg_def +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb9cc961f rtl8723_phy_rf_serial_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xbf0577d4 rtl8723_fw_free_to_go +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xc611cd00 rtl8723_phy_rf_serial_read +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe5fe6621 rtl8723_phy_path_a_fill_iqk_matrix +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe6a36eec rtl8723_download_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xedee4174 rtl8723_dm_init_dynamic_bb_powersaving +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xfa027bdf rtl8723_phy_path_a_standby +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xfbd5b1ea rtl8723_cmd_send_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xffb291d3 rtl8723_phy_query_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0561a00e rtl_tx_report_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x08803028 rtl_is_special_data +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0b609065 rtl_get_hal_edca_param +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x22358b5a 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 0x2ab63b13 rtl_get_hwinfo 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 0x2f9fee05 rtl_beacon_statistic -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3120dc32 rtl_init_rx_config -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x34defabb rtl_init_core -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3dc3f8c3 rtl_lps_leave -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3ec6d25b rtl_deinit_rfkill -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x46ace79e rtl_recognize_peer -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4b73e67b rtl_fw_page_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x31bb318e rtl_deinit_rfkill +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3c4c5740 rtl_tx_mgmt_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3deecfc7 read_efuse_byte +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4a2a2c2e rtl_p2p_info EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4e94cd48 rtl_global_var -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x688ca6ae rtl_deinit_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x508c0141 rtl_deinit_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x50925afe rtl_fw_page_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x50c4763d rtl_lps_leave +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x68e07220 rtl_init_rx_config +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6ce4d087 rtl_deinit_deferred_work EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6db3ba37 rtl_update_beacon_work_callback -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x752ac02e rtl_lps_enter -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7fc2873d rtl_is_special_data -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x90802d15 rtl_swlps_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x84b160a2 rtl_recognize_peer +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x898b70d9 rtl_get_hwinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8cc29e6f rtl_init_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x90cbb7fe rtl_efuse_ops_init EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x97e05663 rtl_tid_to_ac -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xaeb3febe rtl_ops -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb6554521 rtl_ips_nic_on -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb802e172 rtl_action_proc -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbc3cb8d6 rtl_set_tx_report -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc688924b rtl_get_hal_edca_param -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xcc3cd62c rtl_tx_mgmt_proc -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe274339a rtl_tx_report_handler -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe818f45c rtl_deinit_deferred_work -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xfec00c40 rtl_p2p_info +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xaa6625bb rtl_lps_enter +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xaf46dc09 rtl_beacon_statistic +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbbc9be69 rtl_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xcc924bec rtl_swlps_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xec679bd1 rtl_action_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf75195c0 rtl_fw_block_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xfc7c4556 rtl_set_tx_report +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xfff09160 rtl_tx_ackqueue +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x04b3ea30 rsi_mac80211_detach EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x0f5c3ce9 rsi_zone_enabled -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x4bf22084 rsi_hal_device_init -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x7f434a1b rsi_91x_init -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x9adc5453 rsi_read_pkt +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x3be244c4 rsi_read_pkt +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x6a58200b rsi_91x_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x7c0f5519 rsi_91x_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x86a42944 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 0xd0785c5d rsi_91x_deinit -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xef56e426 rsi_mac80211_detach -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x13ae0438 cw1200_core_release -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x18f1e915 cw1200_irq_handler -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x1ec992ec cw1200_core_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x627db4e7 cw1200_can_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x0b779cf6 wl1251_alloc_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x1de3f3dd wl1251_free_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x4fedbed6 wl1251_init_ieee80211 -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x00372a78 wlcore_event_beacon_loss -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x029f52e5 wlcore_disable_interrupts_nosync +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x9dbdf320 cw1200_core_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x9e9bc790 cw1200_can_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xf07fd000 cw1200_core_release +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xf2229bd1 cw1200_irq_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x834c4771 wl1251_init_ieee80211 +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xa132ba48 wl1251_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xb167feb7 wl1251_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x03857f81 wlcore_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x04668b8b wlcore_scan_sched_scan_results +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x05606336 wlcore_event_soft_gemini_sense EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x06d3b27e wl12xx_debug_level -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0d7c5aaf wlcore_event_max_tx_failure -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1e5a36e2 wlcore_boot_upload_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x11357ce9 wlcore_cmd_wait_for_event_or_timeout EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x20351125 wlcore_get_native_channel_type -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2ba85147 wlcore_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2fb4d360 wlcore_scan_sched_scan_results -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x42c7b9ea wlcore_free_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x43955bce wl12xx_cmd_build_probe_req -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x48984d09 wlcore_event_fw_logger -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4a05ee50 wl1271_cmd_data_path -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4db97fc4 wlcore_event_sched_scan_completed -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x55a8e0bf wlcore_event_ba_rx_constraint -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5e6853c0 wl1271_debugfs_update_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5ea28c17 wlcore_boot_upload_nvs -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6186335b wl1271_acx_pm_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x62bfee95 wlcore_enable_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x68ea4897 wl1271_cmd_send -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x69421776 wlcore_event_rssi_trigger -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7024de27 wlcore_set_scan_chan_params -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x725dc1c6 wlcore_boot_run_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7313078b wlcore_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x80c46387 wlcore_event_dummy_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x80eff0df wlcore_scan_sched_scan_ssid_list -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8139e976 wlcore_event_channel_switch -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x82c300c9 wlcore_set_partition +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x254b53f3 wl1271_cmd_data_path +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2b3a1fe2 wl1271_cmd_configure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x31c3b13c wl1271_tx_min_rate_get +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3aae826b wl1271_tx_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4dcb504b wlcore_event_max_tx_failure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x501a22a5 wlcore_set_partition +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5195cb3c wl12xx_acx_mem_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x614cf5e9 wlcore_boot_upload_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6258396e wlcore_boot_upload_nvs +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x695ae860 wlcore_scan_sched_scan_ssid_list +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6ec52a82 wlcore_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x753848c2 wlcore_event_channel_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x783b52ba wl1271_debugfs_update_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7fe24644 wlcore_event_ba_rx_constraint +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7ff94a03 wlcore_synchronize_interrupts EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x85498cd1 wl1271_format_buffer -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x925bf8ed wlcore_synchronize_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9aebb555 wlcore_cmd_wait_for_event_or_timeout -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9d2f21ee wlcore_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa46c03a5 wlcore_event_soft_gemini_sense -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa4daccfc wlcore_event_roc_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa5de08e0 wlcore_disable_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb0c64315 wl1271_acx_init_mem_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc8a7e287 wlcore_cmd_generic_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xcad14500 wlcore_event_inactive_sta -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xcd34e122 wl12xx_acx_mem_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd4345642 wl1271_cmd_configure -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xdcab3635 wlcore_alloc_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe592e08d wl1271_tx_min_rate_get -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xee1f0fc6 wl1271_tx_flush -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xef4102f5 wl1271_acx_set_ht_capabilities -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf53a4dad wl1271_cmd_test -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xfdf31e8d wlcore_translate_addr -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xfe3001d7 wl1271_acx_sleep_auth +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8c2817c9 wlcore_event_fw_logger +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8d128d88 wlcore_event_inactive_sta +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x95cf7fcf wl1271_cmd_test +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x971c7ee7 wlcore_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9ddcefe7 wlcore_boot_run_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa357742d wl1271_cmd_send +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa4254602 wl1271_acx_sleep_auth +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb29f1427 wlcore_event_rssi_trigger +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb645b3d4 wl12xx_cmd_build_probe_req +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc2c19d50 wlcore_set_scan_chan_params +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc47156ca wl1271_acx_pm_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xcb82ddf2 wlcore_cmd_generic_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xcfa24c28 wlcore_event_beacon_loss +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xcfce24e9 wlcore_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd02cdf48 wlcore_translate_addr +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd19a591e wlcore_enable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd208b77c wl1271_acx_init_mem_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd4510e2d wl1271_acx_set_ht_capabilities +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd574f917 wlcore_event_dummy_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd89a05e3 wlcore_disable_interrupts_nosync +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe3fd1790 wlcore_disable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xef1109ad wlcore_event_sched_scan_completed +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf098b7f8 wlcore_event_roc_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xfaab5d3a wlcore_probe +EXPORT_SYMBOL_GPL drivers/nfc/mei_phy 0x10bda05e nfc_mei_phy_free EXPORT_SYMBOL_GPL drivers/nfc/mei_phy 0x14575c46 mei_phy_ops -EXPORT_SYMBOL_GPL drivers/nfc/mei_phy 0x208ee734 nfc_mei_phy_free -EXPORT_SYMBOL_GPL drivers/nfc/mei_phy 0x88ab3d5a nfc_mei_phy_alloc -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x2931c15a nfcmrvl_parse_dt -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x4f1d0c33 nfcmrvl_nci_unregister_dev -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x636e4926 nfcmrvl_nci_recv_frame -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x63d4e650 nfcmrvl_nci_register_dev -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x41aa5c95 pn533_finalize_setup -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x64bfd533 pn53x_common_clean -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x7fee6487 pn53x_common_init -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x8dabfc5e pn532_i2c_nfc_alloc -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x97b31cdd pn53x_register_nfc -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xd78336f6 pn53x_unregister_nfc +EXPORT_SYMBOL_GPL drivers/nfc/mei_phy 0xaa74e387 nfc_mei_phy_alloc +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x3557d750 nfcmrvl_nci_register_dev +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x868fd7a1 nfcmrvl_nci_recv_frame +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xa5d1030f nfcmrvl_parse_dt +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xc02046c5 nfcmrvl_nci_unregister_dev +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x1c2f531c pn533_rx_frame_is_cmd_response +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x21281c7e pn533_finalize_setup +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x262322d6 pn53x_common_clean +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x59bbca31 pn53x_register_nfc +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xbad66545 pn532_i2c_nfc_alloc EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xdecfd339 pn533_rx_frame_is_ack -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xefb2eb06 pn533_rx_frame_is_cmd_response -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x1e233600 st_nci_hci_event_received -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x25ebc9ac st_nci_remove -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x2c445e64 st_nci_hci_cmd_received -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x70d3d982 st_nci_disable_se -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x9b05bbac st_nci_hci_load_session -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xd6264310 st_nci_discover_se -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xf4f183e3 st_nci_probe -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xf74194fc st_nci_enable_se -EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x98ac6455 st95hf_spi_send -EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x9f00de17 st95hf_spi_recv_echo_res -EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0xd5819bc1 st95hf_spi_recv_response +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xf1ef5804 pn53x_common_init +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xf6282b3f pn53x_unregister_nfc +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x1dcb675e st_nci_remove +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x31ce0f68 st_nci_hci_cmd_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x351c88ba st_nci_disable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xb7656468 st_nci_hci_load_session +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xccf8c7e3 st_nci_discover_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xd86e0243 st_nci_enable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xe6575152 st_nci_hci_event_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xf1936df7 st_nci_probe +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x5ebc8f03 st95hf_spi_recv_response +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x9e09e780 st95hf_spi_recv_echo_res +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0xba48f91f st95hf_spi_send EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x0862001f ntb_transport_tx_free_entry +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x1cb8e587 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 0x411fcedb ntb_transport_unregister_client EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x436098aa ntb_transport_link_down -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x49c1a36e ntb_transport_create_queue EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x82e6c13d ntb_transport_qp_num EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x9c992c8f ntb_transport_link_up EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc270dc24 ntb_transport_free_queue EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc37d9036 ntb_transport_rx_remove +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc50ccc75 ntb_transport_register_client EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xd40e7a02 ntb_transport_rx_enqueue -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xd8547630 ntb_transport_register_client -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xed8c7300 ntb_transport_unregister_client EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf55d6313 ntb_transport_register_client_dev EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf9eb813f ntb_transport_unregister_client_dev -EXPORT_SYMBOL_GPL drivers/nvdimm/nd_virtio 0x6a29f6b9 async_pmem_flush -EXPORT_SYMBOL_GPL drivers/nvdimm/nd_virtio 0x998b6c39 virtio_pmem_host_ack -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x00401115 nvme_stop_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x00562a8c nvme_cancel_admin_tagset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0259bcff nvme_delete_ctrl +EXPORT_SYMBOL_GPL drivers/nvdimm/nd_virtio 0x2c451193 async_pmem_flush +EXPORT_SYMBOL_GPL drivers/nvdimm/nd_virtio 0x949c16c0 virtio_pmem_host_ack +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x01647d60 nvme_wait_freeze EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x02fc8d7f __tracepoint_nvme_sq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x031b22d0 nvme_sync_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x19c7889b nvme_init_ctrl_finish -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1a1f5e20 nvme_disable_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x205eb092 nvme_init_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x24a3ecb2 nvme_set_features +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0541fa0e nvme_try_sched_reset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x10a5bf9c nvme_set_queue_count +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x13215d08 nvme_enable_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x14e6ded8 nvme_alloc_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x17d1198b nvme_kill_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1a290d85 nvme_complete_rq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2592d6d3 __traceiter_nvme_sq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x30130b4f nvme_complete_async_event +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x366bcf84 nvme_reset_ctrl EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3bf2393a __SCT__tp_func_nvme_sq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3bf2e549 nvme_complete_async_event -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3e021889 nvme_change_ctrl_state -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x40577c1a nvme_setup_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x47f25296 nvme_fail_nonready_command +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x43b2698f __nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x46368f18 __nvme_check_ready +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x46b5ae1b nvme_remove_namespaces EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x49224181 nvme_reset_wq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x4d620fe4 nvme_reset_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x561bb43f __traceiter_nvme_sq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x59d3cd19 nvme_wait_freeze -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x5b4ae95c nvme_sync_io_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x6298d8c6 nvme_unfreeze -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x640da80b __nvme_check_ready +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x4a816baf nvme_sync_io_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x5c1c8623 nvme_disable_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x5cd93d1a nvme_unfreeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x5d87e078 nvme_cancel_admin_tagset EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x64b62862 nvme_wq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x6599f845 nvme_start_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x79065c12 nvme_get_features +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x6642a2b5 nvme_wait_reset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x6b89faca nvme_host_path_error +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x6bded66e nvme_stop_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x75f34e16 nvme_change_ctrl_state EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x813cf212 nvme_io_timeout +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8477b488 nvme_fail_nonready_command +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x84e782ee nvme_cleanup_cmd EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8a9c70ed nvme_sec_submit -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8c5d4c19 nvme_start_freeze -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x919b5dc4 nvme_alloc_request -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x9ba9e459 nvme_submit_sync_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x9e64fe75 __nvme_submit_sync_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa801aaaf nvme_enable_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xac29a6f4 nvme_kill_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb598d2f2 nvme_cleanup_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb8ed7724 nvme_stop_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb9fbfacd nvme_uninit_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xba472c02 nvme_host_path_error -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc757e70b nvme_cancel_tagset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc7608ef0 nvme_set_queue_count -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc90615f2 nvme_wait_freeze_timeout +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8abd4311 nvme_uninit_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8bf35424 nvme_shutdown_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x93febc8c nvme_get_features +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x9a27979f nvme_wait_freeze_timeout +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa5e9665c nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa89eae41 nvme_set_features +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb45414e6 nvme_stop_keep_alive +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc4a4b830 nvme_start_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc6ab82c9 nvme_init_ctrl_finish EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc991c03f __SCK__tp_func_nvme_sq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd09f8fb8 nvme_wait_reset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xcf390e60 nvme_stop_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xcf887107 nvme_sync_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd0df2865 nvme_start_ctrl EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd45434ee admin_timeout EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd58bbbcb nvme_delete_wq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xdb801575 nvme_start_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xeb1cfd70 nvme_cancel_request -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf13bf367 nvme_stop_keep_alive -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf4d19a73 nvme_shutdown_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf8533a35 nvme_remove_namespaces -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xfa6c1342 nvme_try_sched_reset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xfbd80124 nvme_complete_rq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x036bf56e nvmf_reg_read32 -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x0a3f3eb7 nvmf_get_address -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x1193a971 nvmf_connect_admin_queue -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x2411a535 nvmf_reg_read64 -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x289918d3 nvmf_reg_write32 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd9e6c799 nvme_cancel_tagset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe40912e6 nvme_cancel_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xec3d6a9c nvme_start_freeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xed3a9186 nvme_init_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf3e275f3 nvme_delete_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xfa0d1718 nvme_setup_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x0896fbd4 nvmf_ip_options_match +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x1cd53b8b nvmf_connect_io_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x1d9a313f nvmf_reg_read64 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x27c70180 nvmf_get_address EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x51c659eb nvmf_free_options -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x5a26781b nvmf_unregister_transport -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x5fb02ba3 nvmf_should_reconnect -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x668157f7 nvmf_ip_options_match -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x70f68344 nvmf_register_transport -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xad0fe2dd nvmf_connect_io_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x57ff1cda nvmf_connect_admin_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x6894b645 nvmf_unregister_transport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x7cb83a31 nvmf_reg_write32 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x97188d4d nvmf_register_transport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xc987e16e nvmf_should_reconnect +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xee791941 nvmf_reg_read32 EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x0d12e564 nvme_fc_register_remoteport EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x3884f8b8 nvme_fc_unregister_localport EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x3e33ac54 nvme_fc_rescan_remoteport -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x459881be nvme_fc_register_localport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x580eb0ce 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 0x0af45231 nvmet_req_alloc_sgls -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x21d304d1 nvmet_register_transport -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x406ae2a1 nvmet_req_free_sgls -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x521954fb nvmet_unregister_transport -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x542d7898 nvmet_check_transfer_len -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x76783e5c nvmet_req_complete -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xa368b5f8 nvmet_sq_init -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xb2097298 nvmet_ctrl_fatal_error -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xcbd0f3c5 nvmet_req_init -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xe41625f0 nvmet_sq_destroy -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xe7e9d81c nvmet_req_uninit +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x1ca3b98c nvmet_check_transfer_len +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x5315f241 nvmet_req_alloc_sgls +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x840bf63d nvmet_register_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x890e39a4 nvmet_sq_destroy +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x89bbfbec nvmet_req_complete +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x9fdb68f7 nvmet_req_init +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xa6a8bfe6 nvmet_sq_init +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xa98b2045 nvmet_ctrl_fatal_error +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xac38dcd2 nvmet_unregister_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xde0bfd5b nvmet_req_uninit +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xe12000ab 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 0x1048b92a nvmet_fc_rcv_fcp_req -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x3b464b17 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 0x7fa5302a nvmet_fc_rcv_fcp_abort EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x9ef76d99 nvmet_fc_unregister_targetport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0xe4b02ca0 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 0xd6bc2b8a switchtec_class -EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0x027ff3f3 mcp23x08_regmap -EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0x3204571c mcp23x17_regmap -EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0xdefaee6f mcp23s08_probe_one -EXPORT_SYMBOL_GPL drivers/platform/chrome/cros-ec-sensorhub 0x63329dd2 cros_ec_sensorhub_unregister_push_data -EXPORT_SYMBOL_GPL drivers/platform/chrome/cros-ec-sensorhub 0x78baaa86 cros_ec_sensorhub_register_push_data +EXPORT_SYMBOL_GPL drivers/pci/switch/switchtec 0x30998438 switchtec_class +EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0x5c11222d mcp23s08_probe_one +EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0xc1eefe4c mcp23x17_regmap +EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0xf1955aa3 mcp23x08_regmap +EXPORT_SYMBOL_GPL drivers/platform/chrome/cros-ec-sensorhub 0x3548dd89 cros_ec_sensorhub_unregister_push_data +EXPORT_SYMBOL_GPL drivers/platform/chrome/cros-ec-sensorhub 0x4abdf0e8 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 0x2021b7da wilco_ec_mailbox EXPORT_SYMBOL_GPL drivers/platform/chrome/wilco_ec/wilco_ec 0x24eef51f wilco_ec_get_byte_property EXPORT_SYMBOL_GPL drivers/platform/chrome/wilco_ec/wilco_ec 0x75bf4d33 wilco_ec_get_property EXPORT_SYMBOL_GPL drivers/platform/chrome/wilco_ec/wilco_ec 0x8b8ae425 wilco_ec_set_byte_property -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x11f4781a ssam_device_type -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x1487a515 ssam_device_driver_unregister -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x18e7aefd __ssam_device_driver_register -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x286e220d ssam_controller_statelock -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x2cc24ffd ssam_request_sync_with_buffer -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x2d30ec05 ssam_device_get_match_data -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x2e9436a4 ssam_controller_device -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x334643ef ssam_device_alloc -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x3f981959 ssam_controller_get -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x44e880f9 ssam_device_add -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x48a6f799 ssh_packet_put -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x4a2b537f ssam_bus_type -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x60cae642 ssam_request_sync_alloc -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x6585ffc4 ssam_device_remove -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x65d46520 ssam_request_sync_free -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x6ae7e7b0 ssam_device_get_match -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x71903643 ssam_get_controller -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x75b24a53 ssam_request_sync_init -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x763c2bef ssam_notifier_unregister -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x9c6c6c54 ssam_request_sync -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x9ea48a76 ssam_client_bind -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xaf3c2b7f ssam_request_sync_submit -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xb042eb98 ssam_controller_event_disable -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xb5300316 ssam_controller_event_enable -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xbad0c877 ssam_controller_put -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xbb29b46f ssam_client_link -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xbfe9233d ssh_packet_get -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xc1a0bf11 ssam_request_write_data +EXPORT_SYMBOL_GPL drivers/platform/chrome/wilco_ec/wilco_ec 0xdbc8eb0a wilco_ec_mailbox +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x014a99d8 ssam_request_sync_submit +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x02ac984b ssam_device_get_match_data +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x043ef2ee ssam_controller_stateunlock +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x094fc486 ssam_controller_event_disable +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x1a8eadf2 ssam_controller_get +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x1b3a2eda ssh_packet_get +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x1d1d767e ssam_get_controller +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x21ef8bd6 ssam_device_add +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x268f0c04 ssam_request_sync +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x30cbf605 __ssam_device_driver_register +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x3a8b24e9 ssam_client_bind +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x3df05cb9 ssam_controller_put +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x5a838900 ssam_device_driver_unregister +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x6b038bf7 ssam_device_remove +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x7110ab77 ssam_notifier_unregister +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x735598ea ssam_controller_device +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x7a897462 ssam_controller_statelock +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x7adea6b7 ssam_device_type +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x8dabfe3b ssh_packet_put +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x9fbd8f5b ssam_controller_event_enable +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xa6184cd9 ssam_request_sync_init +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xa8cf7f2a ssam_bus_type +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xbb40b34a ssam_client_link +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xc14bf8f5 ssam_request_sync_free EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xc2bd582d ssam_device_id_match -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xd9bdac65 ssam_notifier_register -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xfee15d5f ssam_controller_stateunlock -EXPORT_SYMBOL_GPL drivers/platform/surface/surface_acpi_notify 0x3be0c1ca san_client_link +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xc47d1d92 ssam_request_write_data +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xc74daada ssam_notifier_register +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xd8e6c598 ssam_request_sync_alloc +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xe7970e77 ssam_device_get_match +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xe7d0ec85 ssam_device_alloc +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xf899b74e ssam_request_sync_with_buffer +EXPORT_SYMBOL_GPL drivers/platform/surface/surface_acpi_notify 0x1732e681 san_client_link EXPORT_SYMBOL_GPL drivers/platform/surface/surface_acpi_notify 0x48cf4c48 san_dgpu_notifier_register EXPORT_SYMBOL_GPL drivers/platform/surface/surface_acpi_notify 0xd60bd773 san_dgpu_notifier_unregister -EXPORT_SYMBOL_GPL drivers/platform/x86/asus-wmi 0x25efbf79 asus_wmi_unregister_driver EXPORT_SYMBOL_GPL drivers/platform/x86/asus-wmi 0x57c46ceb asus_wmi_evaluate_method -EXPORT_SYMBOL_GPL drivers/platform/x86/asus-wmi 0xd83b8593 asus_wmi_register_driver +EXPORT_SYMBOL_GPL drivers/platform/x86/asus-wmi 0x890fc1c1 asus_wmi_register_driver +EXPORT_SYMBOL_GPL drivers/platform/x86/asus-wmi 0xf6bc5374 asus_wmi_unregister_driver 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 0x13745f73 dell_smbios_register_device -EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-smbios 0x1741d6ec dell_smbios_unregister_device +EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-smbios 0x1656eede dell_smbios_register_device EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-smbios 0x1b0b3141 dell_laptop_register_notifier -EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-smbios 0x25198745 dell_smbios_call_filter +EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-smbios 0x21adc561 dell_smbios_unregister_device EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-smbios 0x45170471 dell_smbios_call +EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-smbios 0x6cea2e0f dell_smbios_call_filter EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-smbios 0x7fd2ce06 dell_smbios_find_token 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 @@ -16151,15 +16232,15 @@ EXPORT_SYMBOL_GPL drivers/platform/x86/firmware_attributes_class 0x4f63c5af 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 0x742258a9 intel_pmt_dev_destroy -EXPORT_SYMBOL_GPL drivers/platform/x86/intel/pmt/pmt_class 0x9122cbe0 intel_pmt_is_early_client_hw -EXPORT_SYMBOL_GPL drivers/platform/x86/intel/pmt/pmt_class 0xd03fed66 intel_pmt_dev_create +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/pmt/pmt_class 0x0775b902 intel_pmt_dev_destroy +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/pmt/pmt_class 0x2c4c494b intel_pmt_is_early_client_hw +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/pmt/pmt_class 0x9c14f2f1 intel_pmt_dev_create 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 0x33c51078 isst_if_get_pci_dev EXPORT_SYMBOL_GPL drivers/platform/x86/intel/speed_select_if/isst_if_common 0x58a8261f isst_if_mbox_cmd_invalid EXPORT_SYMBOL_GPL drivers/platform/x86/intel/speed_select_if/isst_if_common 0x861369f8 isst_resume_common -EXPORT_SYMBOL_GPL drivers/platform/x86/intel/speed_select_if/isst_if_common 0x8809d9b5 isst_if_cdev_register +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/speed_select_if/isst_if_common 0x94ffe5da isst_if_get_pci_dev 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 0xc173368d isst_if_cdev_register EXPORT_SYMBOL_GPL drivers/platform/x86/intel/speed_select_if/isst_if_common 0xe18f42a5 isst_if_cdev_unregister EXPORT_SYMBOL_GPL drivers/platform/x86/intel/telemetry/intel_telemetry_core 0x1c7565c2 telemetry_read_events EXPORT_SYMBOL_GPL drivers/platform/x86/intel/telemetry/intel_telemetry_core 0x35db93a6 telemetry_get_trace_verbosity @@ -16183,106 +16264,106 @@ 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 0x5b643ad2 wmidev_block_query EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0x6068bedf wmi_evaluate_method +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0x71530dbe 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 0xd02b655a set_required_buffer_size EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xd7752b86 wmi_set_block -EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xdc9d114e set_required_buffer_size +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xe33006b8 wmidev_evaluate_method EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xf18bdd75 wmi_install_notify_handler -EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xf6d772b3 wmidev_evaluate_method -EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0x8e255003 bq27xxx_battery_update -EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0xcf181552 bq27xxx_battery_setup -EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0xea662e81 bq27xxx_battery_teardown -EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x4045ffd5 pcf50633_mbc_get_status -EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0xb28d0a8c pcf50633_mbc_usb_curlim_set -EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0xc4f64f16 pcf50633_mbc_get_usb_online_status -EXPORT_SYMBOL_GPL drivers/powercap/intel_rapl_common 0x2a7f0c0a rapl_find_package_domain -EXPORT_SYMBOL_GPL drivers/powercap/intel_rapl_common 0x9f5af080 rapl_remove_package -EXPORT_SYMBOL_GPL drivers/powercap/intel_rapl_common 0xf1b80102 rapl_add_package -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x3ecae206 mc13xxx_regulator_ops -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xed852310 mc13xxx_fixed_regulator_set_voltage -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xff5cf7bb mc13xxx_fixed_regulator_ops -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x033d3457 wm8350_dcdc25_set_mode -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x730dbfb5 wm8350_dcdc_set_slot -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x808080c7 wm8350_register_regulator -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x9905ae43 wm8350_ldo_set_slot -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xa93bc77d wm8350_isink_set_flash -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xaaa7806e wm8350_register_led -EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0xec47161b wm8400_register_regulator +EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0x58a5d631 bq27xxx_battery_teardown +EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0x7d3d3925 bq27xxx_battery_setup +EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0xdd130396 bq27xxx_battery_update +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x133b4804 pcf50633_mbc_get_usb_online_status +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x8ed0c768 pcf50633_mbc_usb_curlim_set +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x98e848f9 pcf50633_mbc_get_status +EXPORT_SYMBOL_GPL drivers/powercap/intel_rapl_common 0x23c83c13 rapl_find_package_domain +EXPORT_SYMBOL_GPL drivers/powercap/intel_rapl_common 0xa53bd8f4 rapl_remove_package +EXPORT_SYMBOL_GPL drivers/powercap/intel_rapl_common 0xd35a287b rapl_add_package +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x3c25d21e mc13xxx_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x3c604acb mc13xxx_fixed_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xc2bd46f1 mc13xxx_fixed_regulator_set_voltage +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x315a7938 wm8350_ldo_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x6ce058b6 wm8350_register_regulator +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x975a48f4 wm8350_dcdc_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xa22e1fb5 wm8350_register_led +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xa8649d97 wm8350_dcdc25_set_mode +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xe770f7c2 wm8350_isink_set_flash +EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0x42c59872 wm8400_register_regulator EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0x149236da qcom_glink_native_remove -EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0xf115730c qcom_glink_native_probe +EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0xa98a9693 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 0x00dfb7f2 cxgbi_sock_skb_entail -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0687f78d cxgbi_conn_tx_open -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x06b8db9a cxgbi_set_host_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0d9a748f cxgbi_ep_disconnect -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0ee833e7 cxgbi_sock_rcv_wr_ack -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2220fa22 cxgbi_iscsi_init -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2931fef0 cxgbi_device_find_by_netdev -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x29932705 cxgbi_get_conn_stats -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2b061ed9 cxgbi_hbas_remove -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x33b36d8d cxgbi_sock_rcv_close_conn_rpl -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x33bb3810 cxgbi_device_register -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3b24d00f cxgbi_hbas_add -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4608ec0e cxgbi_sock_established -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x497ea127 cxgbi_ep_poll -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x514a5332 cxgbi_conn_xmit_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x553fc53c cxgbi_sock_rcv_abort_rpl -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x56aaa8a9 cxgbi_parse_pdu_itt -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x58e5f4f6 cxgbi_device_portmap_create -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5bae855a cxgbi_device_portmap_cleanup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5bc2d991 cxgbi_sock_purge_wr_queue -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5c145919 cxgbi_device_find_by_lldev -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5fc69a17 cxgbi_get_ep_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x605f6e89 cxgbi_sock_rcv_peer_close -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x63dc0046 cxgbi_sock_act_open_req_arp_failure -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7640ae47 cxgbi_set_conn_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x794d85a8 cxgbi_cleanup_task -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7b1d79ea cxgbi_bind_conn -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7cf5704d cxgbi_device_unregister +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0114c58e cxgbi_ddp_ppm_setup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x06cce666 cxgbi_sock_rcv_close_conn_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0c0d43d0 cxgbi_sock_closed +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x15445999 cxgbi_device_find_by_lldev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x17daf0ba cxgbi_device_find_by_netdev_rcu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1b05bf58 cxgbi_device_portmap_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x20a9c5f9 cxgbi_device_find_by_netdev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x23b9a5cc cxgbi_iscsi_init +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x282a8401 cxgbi_get_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2faa3249 cxgbi_get_ep_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4b6ce76e cxgbi_ep_connect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4e037b38 cxgbi_hbas_add +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x50070f23 cxgbi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x570faa5d cxgbi_sock_established +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x61888133 cxgbi_iscsi_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6629a359 cxgbi_conn_tx_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6bd3e647 cxgbi_sock_purge_wr_queue +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7255853a cxgbi_device_register +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x747a367b cxgbi_sock_free_cpl_skbs +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x79bbcee0 cxgbi_sock_fail_act_open EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fdb6004 cxgbi_device_unregister_all -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x82a80df7 cxgbi_device_find_by_netdev_rcu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8ea7f312 cxgbi_conn_init_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9a19b29c cxgbi_ddp_ppm_setup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9fc01dea cxgbi_iscsi_cleanup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa3669914 cxgbi_sock_fail_act_open -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa62d1609 cxgbi_sock_select_mss -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xaf029bb8 cxgbi_ep_connect -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb6cc4a33 cxgbi_sock_free_cpl_skbs +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8097a46f cxgbi_set_conn_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8324dd1f cxgbi_ep_poll +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8502943f cxgbi_conn_pdu_ready +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x89cde2f0 cxgbi_device_portmap_create +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8b75b9e4 cxgbi_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8eecdd62 cxgbi_sock_act_open_req_arp_failure +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x94ca6d45 cxgbi_bind_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x959f084f cxgbi_sock_skb_entail +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa79d565a cxgbi_set_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb138cfff cxgbi_sock_check_wr_invariants +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb1aa460b cxgbi_sock_rcv_wr_ack +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb53aa310 cxgbi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb72081c5 cxgbi_sock_select_mss +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xba2e7005 cxgbi_conn_init_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbb414265 cxgbi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbebf1146 cxgbi_ep_disconnect EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc011af75 cxgbi_ddp_set_one_ppod -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc65fbb35 cxgbi_create_session -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xcc1758a1 cxgbi_destroy_session -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd0b75cf7 cxgbi_conn_alloc_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe10d1006 cxgbi_get_host_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe124dbce cxgbi_sock_closed -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xeabbb118 cxgbi_create_conn -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xeea52a0b cxgbi_sock_check_wr_invariants +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc7e47ef9 cxgbi_get_conn_stats +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xcb918f4e cxgbi_sock_rcv_abort_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xcc0399ff cxgbi_conn_xmit_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xcf44c0aa cxgbi_sock_rcv_peer_close +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd3ac86f8 cxgbi_conn_alloc_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd54f8630 cxgbi_hbas_remove +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe5f09857 cxgbi_parse_pdu_itt EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xef346615 cxgbi_attr_is_visible -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf43ef97d cxgbi_conn_pdu_ready -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0922ffbc fcoe_ctlr_device_add -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x37a965be fcoe_ctlr_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x3a3b481b fcoe_get_paged_crc_eof -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x49aaf6a9 fcoe_validate_vport_create -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x4b488f09 fcoe_get_wwn -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x5145ac28 fcoe_fcf_device_add -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x6ad74b76 fcoe_libfc_config +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf15d7c35 cxgbi_device_unregister +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x132bb9cf fcoe_start_io +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x179c813f fcoe_libfc_config +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x5b3ef5c1 fcoe_check_wait_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x678b4282 fcoe_fcf_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x78624196 fcoe_ctlr_get_lesb EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x7e92994b fcoe_wwn_from_mac -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x8503eb32 fcoe_start_io -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x8d1f0c77 fcoe_fc_crc -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x9f7408fd fcoe_ctlr_device_delete -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xa2991fd7 fcoe_link_speed_update -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xae6dd9a9 fcoe_clean_pending_queue -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xb10b8249 fcoe_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xb6bef136 __fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x7fed3805 fcoe_get_paged_crc_eof +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x82a80708 fcoe_link_speed_update +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x93e7d3a6 fcoe_clean_pending_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xb147c7d6 fcoe_fc_crc +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xb1687207 fcoe_ctlr_device_add EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xbac58840 fcoe_queue_timer -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xd1bd04ea fcoe_fcf_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xc02b9a4e fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xcb0faddd fcoe_validate_vport_create +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xd73cf2b8 fcoe_ctlr_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xdaeb9a94 __fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xe7fb06cd fcoe_fcf_device_delete EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf167cb7a fcoe_wwn_to_str -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf816c7db fcoe_check_wait_queue -EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0x6c608f29 fdomain_destroy -EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0xa47ae2ad fdomain_create +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf43ccb30 fcoe_get_wwn +EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0x529c51d3 fdomain_destroy +EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0xddc980ad fdomain_create EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x16b11127 iscsi_boot_create_kset EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x1cad663e iscsi_boot_create_ethernet EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x748654c5 iscsi_boot_create_initiator @@ -16291,309 +16372,309 @@ EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xbefe618c iscsi_boot_destroy_kset EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xea29c8ae iscsi_boot_create_target EXPORT_SYMBOL_GPL drivers/scsi/libfc/libfc 0x66f43542 fc_seq_els_rsp_send -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x00d64487 iscsi_complete_scsi_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x05ddfcee iscsi_host_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0ab39e7e iscsi_host_set_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x126308f0 iscsi_conn_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x079928ca iscsi_itt_to_ctask +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0be7161f iscsi_host_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0d326c87 iscsi_host_add +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0d4ff114 iscsi_prep_data_out_pdu EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12f6a906 __iscsi_complete_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1ba25c78 iscsi_session_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1fe392fc iscsi_suspend_queue -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x23e9b937 iscsi_conn_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x25dd0435 iscsi_conn_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2718eb42 iscsi_complete_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x39fd2d83 iscsi_conn_queue_work -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3a475480 iscsi_session_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1356aa5b iscsi_conn_unbind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x22b7a617 iscsi_eh_device_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x24295647 iscsi_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x315f8694 iscsi_conn_bind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x38aff4c4 iscsi_conn_queue_work EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3dc47395 iscsi_session_failure -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x44e8fd2a iscsi_set_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4b879cfb iscsi_eh_abort -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x57f81b20 iscsi_update_cmdsn -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x58cf9b12 iscsi_eh_session_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5f8a5ad5 iscsi_conn_start -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6c11de50 iscsi_host_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6e938c51 iscsi_queuecommand -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x70e969d6 iscsi_suspend_tx -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x772299b9 iscsi_conn_stop -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7a3f869b __iscsi_get_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x81cc02fc iscsi_conn_send_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x87593bdf iscsi_conn_bind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3d5fa913 iscsi_requeue_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4769be8e iscsi_suspend_tx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4aade812 iscsi_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4bfe7f9c iscsi_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4cdfe77d iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x53f79dba iscsi_itt_to_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5cedd647 iscsi_host_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x633b76ea iscsi_conn_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6567ecc4 iscsi_conn_stop +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x67e4d1b8 iscsi_host_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7306a8e1 iscsi_host_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x79b95fb8 iscsi_host_get_max_scsi_cmds +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x802d70c4 iscsi_complete_scsi_task EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x94f8aa08 iscsi_session_recovery_timedout -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x96795760 iscsi_eh_device_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa50b35cb iscsi_session_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xac9b452b iscsi_requeue_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xacb50abc iscsi_target_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xaee82a4c iscsi_conn_unbind -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xafce0933 iscsi_host_add -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb780766f iscsi_eh_cmd_timed_out -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb905216d __iscsi_put_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb99934e3 iscsi_verify_itt -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbc79dd7b iscsi_host_get_max_scsi_cmds -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc7e93b88 iscsi_itt_to_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc83f96bc iscsi_host_remove -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcc40dcd3 iscsi_prep_data_out_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcfda67ec iscsi_itt_to_ctask -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdf02c1f7 iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x925d2a2d __iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x92d979ec iscsi_update_cmdsn +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x988c3eb7 iscsi_eh_abort +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9e7a74f4 iscsi_conn_start +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb23d7e0a iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb502a971 iscsi_verify_itt +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbfc8f60e iscsi_session_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc15a0705 __iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc6ca66fd iscsi_conn_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd38d33b3 __iscsi_get_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd5f3a11c iscsi_conn_send_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdb4e64f3 iscsi_session_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdd3d61db iscsi_session_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdf3a8907 iscsi_session_recovery_timedout +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe0bc8bae iscsi_host_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe2181227 iscsi_suspend_queue +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe56cfa7e iscsi_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe91e6f85 iscsi_queuecommand EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeab9cbd5 iscsi_conn_get_addr_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeb53deca iscsi_conn_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfa159765 iscsi_host_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfbb6dfc5 iscsi_eh_recover_target -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x2a129e92 iscsi_tcp_hdr_recv_prep -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x34319ca9 iscsi_tcp_recv_skb -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x3fd82c95 iscsi_segment_seek_sg -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x4789bdd2 iscsi_tcp_r2tpool_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x506974f6 iscsi_tcp_task_xmit -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x6705be69 iscsi_tcp_segment_unmap -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x721a55b8 iscsi_tcp_segment_done -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x75ea0a2f iscsi_segment_init_linear -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x7ae66bb2 iscsi_tcp_cleanup_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x8164d27c iscsi_tcp_r2tpool_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x90482b81 iscsi_tcp_conn_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xa3711425 iscsi_tcp_conn_get_stats -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xa4d65014 iscsi_tcp_dgst_header -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xa51809e3 iscsi_tcp_conn_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xe41849fb iscsi_tcp_set_max_r2t -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xeae3b453 iscsi_tcp_task_init -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xf5977e32 iscsi_tcp_recv_segment_is_hdr -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x00114171 sas_ssp_task_response -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x00fe6519 sas_eh_abort_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x04c43257 sas_unregister_ha -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0925e228 dev_attr_phy_event_threshold -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0d273a9b sas_free_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x15367913 sas_alloc_slow_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x184b2cff sas_alloc_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1e6848e4 sas_slave_configure -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x30202a35 sas_request_addr -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4d27930a sas_queuecommand -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x54555e0b sas_domain_attach_transport -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7822e390 sas_eh_device_reset_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7f2a46e7 sas_target_destroy -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x863ee1e5 sas_get_local_phy -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8c26939d sas_register_ha -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8f254536 sas_eh_target_reset_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9480d72e sas_phy_reset -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa1b71587 sas_slave_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xbc530226 sas_bios_param -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xbde19eff sas_ioctl -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc9030150 sas_ata_schedule_reset -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xcb3ed7b4 sas_change_queue_depth -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd5240fbe sas_notify_port_event -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd719c61d sas_drain_work -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe62d3896 sas_task_abort -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf6beec9c sas_notify_phy_event -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf70db900 sas_target_alloc -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_fc 0xf9f03b5e fc_eh_should_retry_cmd -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x003cb4d3 iscsi_destroy_iface -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0e2fea82 iscsi_get_port_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0e4eb8cb iscsi_destroy_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x156a6089 __tracepoint_iscsi_dbg_session +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf5942164 iscsi_eh_session_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf6aadb2d iscsi_session_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf7ca50a3 iscsi_eh_recover_target +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xff96d02a iscsi_eh_cmd_timed_out +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x0a64e6ea iscsi_tcp_segment_done +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x0f56cee4 iscsi_tcp_task_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x25796e7d iscsi_segment_init_linear +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x2f046a8a iscsi_tcp_r2tpool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x33b522a0 iscsi_tcp_conn_get_stats +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x47439911 iscsi_tcp_recv_skb +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x4d92d91e iscsi_tcp_recv_segment_is_hdr +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x6cc03a22 iscsi_tcp_dgst_header +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x7496f2e5 iscsi_tcp_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x84137540 iscsi_tcp_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x8f843308 iscsi_segment_seek_sg +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x925139b3 iscsi_tcp_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xbad39bd5 iscsi_tcp_task_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xd6a1bf18 iscsi_tcp_hdr_recv_prep +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xe7982b8e iscsi_tcp_segment_unmap +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xec363b9a iscsi_tcp_set_max_r2t +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xf6c4fa99 iscsi_tcp_r2tpool_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x01b4dc28 sas_get_local_phy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x05244348 sas_eh_abort_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x075827d6 sas_request_addr +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0b3fdb42 sas_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0f1551c0 sas_slave_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2f8932cb sas_drain_work +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3d05d378 sas_phy_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3e25aee6 sas_notify_port_event +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3e7b8412 sas_free_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4cf10797 sas_slave_configure +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4e7c8540 sas_domain_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4fb33793 sas_change_queue_depth +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x614ff962 sas_eh_device_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6473b60c dev_attr_phy_event_threshold +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x700608dc sas_alloc_slow_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x73c612ed sas_alloc_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x758cb1d4 sas_ioctl +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8ec6cd76 sas_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9223505d sas_ata_schedule_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9c58ce13 sas_eh_target_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa23fa546 sas_notify_phy_event +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa824d959 sas_register_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xae460c24 sas_bios_param +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb8332807 sas_task_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc77314f9 sas_target_destroy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd9f3a928 sas_unregister_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf373bc6f sas_ssp_task_response +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_fc 0x760bebf5 fc_eh_should_retry_cmd +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x01e9cc43 iscsi_session_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x05e87216 iscsi_scan_finished +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x10215be8 iscsi_destroy_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1059961c iscsi_get_port_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x14b0457d __traceiter_iscsi_dbg_tcp EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x15dc8bab __SCT__tp_func_iscsi_dbg_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x170dfc37 __traceiter_iscsi_dbg_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x173ada23 iscsi_block_scsi_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1cc97805 iscsi_get_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1daafbe5 iscsi_destroy_all_flashnode -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x216b1d03 iscsi_is_session_online -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x262b754c iscsi_post_host_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2fe95dcb __traceiter_iscsi_dbg_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x32dc3e95 iscsi_unblock_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x39760ea8 __tracepoint_iscsi_dbg_sw_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3d36b079 __tracepoint_iscsi_dbg_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x48c147ba iscsi_create_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4d654d0f iscsi_create_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x168b16f9 iscsi_destroy_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x16fc4431 __SCK__tp_func_iscsi_dbg_sw_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x170085bb iscsi_destroy_all_flashnode +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x21c451a3 iscsi_flashnode_bus_match +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x229f23d5 iscsi_alloc_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2b45cb75 iscsi_conn_error_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x337977f5 iscsi_free_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x36c7b532 iscsi_get_port_speed_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x424a3706 __traceiter_iscsi_dbg_sw_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4904bda8 __traceiter_iscsi_dbg_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4e1fa866 __tracepoint_iscsi_dbg_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4f8ca407 __tracepoint_iscsi_dbg_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x51b274c3 iscsi_ping_comp_event EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x52575134 __SCT__tp_func_iscsi_dbg_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5df151d7 iscsi_alloc_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5ec22be7 iscsi_free_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x609da8c6 __SCK__tp_func_iscsi_dbg_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x60be1b69 __tracepoint_iscsi_dbg_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x63418fd0 __traceiter_iscsi_dbg_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x531f14ce iscsi_block_scsi_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x54e4d725 iscsi_dbg_trace +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5814121a iscsi_recv_pdu +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5919360e iscsi_destroy_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5a8d5711 __tracepoint_iscsi_dbg_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5df48c48 iscsi_unblock_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5f3fcd10 iscsi_session_chkready +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6324903e iscsi_create_endpoint EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x699fe53e iscsi_get_discovery_parent_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6a03f488 iscsi_add_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x79d35ef2 __SCK__tp_func_iscsi_dbg_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7b5f2db3 __SCK__tp_func_iscsi_dbg_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7cf51374 iscsi_scan_finished -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7cfcbad4 iscsi_conn_login_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7eca6986 iscsi_create_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x78c656af __traceiter_iscsi_dbg_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x78ff42cd iscsi_add_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7f24b0dc iscsi_block_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7f2a2f15 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 0x85f1030d iscsi_session_chkready -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x86dd98fc __SCK__tp_func_iscsi_dbg_sw_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8a9172c0 iscsi_remove_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8b2217ac iscsi_unregister_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8fd5c96f iscsi_create_iface -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x94848de1 __tracepoint_iscsi_dbg_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x95633326 iscsi_recv_pdu -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x95aa524f iscsi_is_session_dev -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x95ee866d iscsi_find_flashnode_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x963da028 iscsi_conn_error_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x98571ae8 iscsi_find_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9e954ea8 iscsi_destroy_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8deec541 iscsi_find_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9210fc17 __tracepoint_iscsi_dbg_sw_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9343dd2b iscsi_destroy_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x998448ab iscsi_is_session_online +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9c96c123 __SCK__tp_func_iscsi_dbg_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9d7b168a iscsi_create_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa2940333 iscsi_find_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa2d5a41c __SCK__tp_func_iscsi_dbg_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa384c4e1 __SCK__tp_func_iscsi_dbg_tcp EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa8c4b5e1 __SCT__tp_func_iscsi_dbg_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb57dbff5 iscsi_put_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb73722e1 __SCK__tp_func_iscsi_dbg_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xac2a8fc2 iscsi_create_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xae69a67a iscsi_put_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb1029ad4 __traceiter_iscsi_dbg_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb77052e3 iscsi_conn_login_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xba54cb2e iscsi_is_session_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbb797afc iscsi_create_session EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc071179 iscsi_get_ipaddress_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc22effd4 iscsi_offload_mesg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc430520e iscsi_destroy_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc54d9632 __traceiter_iscsi_dbg_sw_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd1437e03 __traceiter_iscsi_dbg_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd87cdc93 iscsi_ping_comp_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdbe427ac iscsi_block_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdd6f330f iscsi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc5016fcf iscsi_put_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd0755a33 iscsi_get_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd29d606f iscsi_post_host_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xddcde0af __tracepoint_iscsi_dbg_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xde9681b4 __SCK__tp_func_iscsi_dbg_conn EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdf515c49 __SCT__tp_func_iscsi_dbg_sw_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe4e2ad10 iscsi_session_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe9096ee9 iscsi_put_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xec3ef742 iscsi_create_flashnode_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xedb8a49d iscsi_get_port_speed_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf5bbe131 iscsi_host_for_each_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf6a92213 iscsi_flashnode_bus_match -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf7429349 iscsi_register_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe33c6170 iscsi_lookup_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe3e504a7 iscsi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe9b22a2c iscsi_register_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xeb735283 iscsi_create_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf45b3055 iscsi_unregister_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf62af3f5 iscsi_offload_mesg EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf7e749fb __SCT__tp_func_iscsi_dbg_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfde09808 iscsi_dbg_trace -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfed298c8 iscsi_lookup_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x3a6a9391 sas_is_tlr_enabled -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x7e3d7220 sas_disable_tlr -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xb0da4fcf sas_tlr_supported -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xdc137e86 sas_enable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xff074d5b iscsi_host_for_each_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x0714dd7a sas_tlr_supported +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x972c7908 sas_disable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xeb95a0d6 sas_is_tlr_enabled +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xf419632d sas_enable_tlr EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x0ef06974 spi_populate_ppr_msg EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xa0c71dac spi_populate_sync_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xc6de6659 spi_populate_tag_msg EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xcffa2aff spi_populate_width_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x182afcd3 srp_rport_del +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xd5c9e392 spi_populate_tag_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x089c0068 srp_rport_del +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x09b8b40f srp_remove_host EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x1902178a srp_tmo_valid -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x2f74e360 srp_attach_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x302e88af srp_rport_add -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x7c0500d4 srp_release_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x919e23c8 srp_stop_rport_timers -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xe66bfc81 srp_remove_host -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x023820ff ufshcd_hba_enable -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x47b22152 ufshcd_release -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x4fd7cddb ufshcd_update_evt_hist -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x4ff774da ufshcd_suspend_prepare -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x5475770b ufshcd_dme_get_attr -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x6cf625b4 ufshcd_init -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x6f6b2d75 ufshcd_hold +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x29c40462 srp_rport_add +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x577f98c9 srp_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x7b87992f srp_stop_rport_timers +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xd2f075a3 srp_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x0e01e7f3 ufshcd_release +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x0eb97fad ufshcd_remove +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x1a9a44a6 ufshcd_update_evt_hist +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x20ca0f52 ufshcd_init +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x3a93bbc5 ufshcd_link_recovery +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x3aa104fc ufshcd_dme_set_attr +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x3daaf3df ufshcd_hba_enable +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x59f5e561 ufshcd_auto_hibern8_update +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x67b8398f ufshcd_dme_configure_adapt EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x723b1abf ufshcd_delay_us -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x7257735d ufshcd_uic_hibern8_exit -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x859481b8 ufshcd_link_recovery -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x92c9443b ufshcd_fixup_dev_quirks -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xa48411cf ufshcd_auto_hibern8_update -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xa7a20deb ufshcd_dme_configure_adapt -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xb33aed70 ufshcd_make_hba_operational -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xbaef3f72 ufshcd_config_pwr_mode -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xbe541539 ufshcd_dme_set_attr -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xd6f9abe9 ufshcd_dump_regs -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xda05750f ufshcd_remove -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xe421baf9 ufshcd_hba_stop -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xeae5b636 ufshcd_resume_complete -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xf1d6cc9e ufshcd_dealloc_host -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x421de3b3 ufshcd_pltfrm_shutdown +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x7d5b84c0 ufshcd_fixup_dev_quirks +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x7deebe3d ufshcd_hold +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x8f9e0f54 ufshcd_dump_regs +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x9b7d513f ufshcd_dme_get_attr +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xb1f8bfaa ufshcd_uic_hibern8_exit +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xb1fa75e2 ufshcd_hba_stop +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xbbb78558 ufshcd_suspend_prepare +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xd7722cb2 ufshcd_dealloc_host +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xd8b24f02 ufshcd_make_hba_operational +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xd9e8efeb ufshcd_resume_complete +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xe48f54cd ufshcd_config_pwr_mode +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x4294ca49 ufshcd_pltfrm_init EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x54c946de ufshcd_init_pwr_dev_param -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xb3019632 ufshcd_pltfrm_init +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x99a0b713 ufshcd_pltfrm_shutdown EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xff85cd6b ufshcd_get_pwr_dev_param -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x33416d19 siox_device_synced -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x369484f8 siox_master_alloc -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x4a593786 siox_master_unregister -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x5201fa61 __siox_driver_register -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x8fee5251 siox_master_register -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xfa4640c3 siox_device_connected -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x0df5be16 slim_device_report_present -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x10fba765 slim_readb -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x1525f8b0 of_slim_get_device -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x2352f935 slim_get_logical_addr -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x2d1a823d slim_ctrl_clk_pause -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x2f3f4bf9 slim_do_transfer -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x43329613 slim_stream_allocate -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x5943e64e slim_stream_disable -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x5ec7064f __slim_driver_register -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x60e98994 slim_unregister_controller -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x6163b896 slim_writeb -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x65d49de2 slim_stream_free -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x715f645f slim_stream_prepare -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x86199ea8 slim_report_absent -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x966a5b13 slim_get_device -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xbbde3918 slim_driver_unregister -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xc3cac970 slimbus_bus -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xc558b0b8 slim_stream_enable -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xc5d4288c slim_msg_response -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xcb2a698b slim_read -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xd82d1742 slim_stream_unprepare -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xdfab4962 slim_register_controller -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xe51e5d96 slim_xfer_msg -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xf1734204 slim_write -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xf5c36997 slim_alloc_txn_tid -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xff3eb5a3 slim_free_txn_tid -EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x09bc1f5e __sdw_register_driver -EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0xbf26b151 sdw_unregister_driver -EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0xdd84a7b0 sdw_bus_type -EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-cadence 0x209a21fc sdw_cdns_debugfs_init -EXPORT_SYMBOL_GPL drivers/spi/spi-altera-core 0xa1542fb6 altera_spi_init_master +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x8f98adf7 __siox_driver_register +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x91be22fe siox_device_synced +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xc77fa699 siox_master_register +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xe310d577 siox_master_alloc +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xf9e4fbcf siox_master_unregister +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xfdfe418a siox_device_connected +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x06d2d47f slim_ctrl_clk_pause +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x0f2b55c0 slim_stream_unprepare +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x1b9792c4 slim_free_txn_tid +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x2b63ba09 of_slim_get_device +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x34eb9e63 slim_get_logical_addr +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x430e92bf slim_write +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x54d8b0a2 slim_xfer_msg +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x56483c2d slim_driver_unregister +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x587df1fc slim_stream_enable +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x5d97157b slim_stream_free +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x61dc4ec5 slim_writeb +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x65a2ed7a slim_stream_disable +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x7238af80 slim_stream_prepare +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x7b951d86 slim_msg_response +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x924b438d slim_stream_allocate +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xa89ecc7d slim_do_transfer +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xaf080e24 slimbus_bus +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xb32cfafd slim_device_report_present +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xb931bad0 slim_get_device +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xbdf3bb81 slim_register_controller +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xc63eedb3 __slim_driver_register +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xcc97ff33 slim_unregister_controller +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xf80825cc slim_readb +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xfa933612 slim_report_absent +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xfaae482e slim_read +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xfd5ebb59 slim_alloc_txn_tid +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x76cf7ab1 __sdw_register_driver +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0xd90fb657 sdw_bus_type +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0xe8a9ec94 sdw_unregister_driver +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-cadence 0xe270bca8 sdw_cdns_debugfs_init +EXPORT_SYMBOL_GPL drivers/spi/spi-altera-core 0x961069a8 altera_spi_init_master EXPORT_SYMBOL_GPL drivers/spi/spi-altera-core 0xb9edd149 altera_spi_irq -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xa8998358 spi_bitbang_setup -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xb43203e0 spi_bitbang_stop -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xcf8b0629 spi_bitbang_start -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xdb3645c8 spi_bitbang_setup_transfer -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xe820a7c7 spi_bitbang_init -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xe94d63a3 spi_bitbang_cleanup -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x0be116d0 dw_spi_resume_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x18b584ac dw_spi_dma_setup_mfld -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x2a9a4c3b dw_spi_set_cs -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x2d530360 dw_spi_dma_setup_generic -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x3f4cd44a dw_spi_check_status -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x87bc0449 dw_spi_add_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xbbcfb1c6 dw_spi_suspend_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xe5db459a dw_spi_remove_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xfef8eaab dw_spi_update_config -EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x06247d6c spi_test_run_test -EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x3fbabc3a spi_test_execute_msg -EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x8ed38752 spi_test_run_tests -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x10b2517a spmi_register_read -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x40ee33aa spmi_command_wakeup -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x41fe7727 spmi_register_zero_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x4a529ccb spmi_device_alloc -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x7055059d spmi_ext_register_read -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x77ac7613 spmi_command_shutdown -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xa29394ed spmi_ext_register_writel -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xb59a3d09 spmi_ext_register_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xbcedbcf9 spmi_device_add -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xbe5364c7 spmi_ext_register_readl -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xc2d70ae4 spmi_command_reset -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xc8551058 spmi_controller_remove -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xccce5f11 spmi_controller_add -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xd86c4ca2 spmi_command_sleep -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xed43e1bd spmi_register_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xeeec41e7 spmi_device_remove -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xf76486df __spmi_driver_register -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xf79fca4c spmi_controller_alloc -EXPORT_SYMBOL_GPL drivers/ssb/ssb 0x8fa9db88 ssb_pmu_spuravoid_pllupdate -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x5416dd03 fieldbus_dev_online_changed -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x57f7f762 fieldbus_dev_unregister -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x760a9174 fieldbus_dev_area_updated -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x7b1a2ffb fieldbus_dev_register -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x01542447 gb_audio_apbridgea_unregister_cport -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x0b7e77d2 gb_audio_apbridgea_stop_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x1436d6f4 gb_audio_apbridgea_prepare_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x240f84d5 gb_audio_apbridgea_shutdown_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x32bb3499 gb_audio_apbridgea_start_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x3e973d1f gb_audio_apbridgea_set_config -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x42f11a6e gb_audio_apbridgea_shutdown_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x441e4777 gb_audio_apbridgea_set_rx_data_size -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x4b63a5e4 gb_audio_apbridgea_set_tx_data_size -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x6d80e969 gb_audio_apbridgea_stop_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x72c8484f gb_audio_apbridgea_prepare_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x92eb0414 gb_audio_apbridgea_register_cport -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xef1269b4 gb_audio_apbridgea_start_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x31117ca2 gb_audio_gb_set_rx_data_size -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x516a8b1c gb_audio_gb_set_pcm -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x568c0d61 gb_audio_gb_deactivate_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x5872afd8 gb_audio_gb_disable_widget -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x5a3870d1 gb_audio_gb_get_control -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x61b15aef gb_audio_gb_activate_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x9153bebc gb_audio_gb_deactivate_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xa66ee932 gb_audio_gb_activate_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xadda0215 gb_audio_gb_set_tx_data_size -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xb7c77d7d gb_audio_gb_get_pcm -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xbe90c2df gb_audio_gb_enable_widget -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xc5c70f9b gb_audio_gb_get_topology -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xe2a9e0e2 gb_audio_gb_set_control +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x3e60a123 spi_bitbang_setup_transfer +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x6656ab89 spi_bitbang_stop +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x6a4ff758 spi_bitbang_start +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x9a981b88 spi_bitbang_cleanup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xbfa6413a spi_bitbang_setup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xf3049272 spi_bitbang_init +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x0e3bf7d6 dw_spi_dma_setup_generic +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x1be8b5ea dw_spi_check_status +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x597026ef dw_spi_set_cs +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x5a534356 dw_spi_add_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x9d8c197b dw_spi_dma_setup_mfld +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xca19bf57 dw_spi_resume_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xf201b3f8 dw_spi_update_config +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xfa9d7421 dw_spi_suspend_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xfbf8c7f6 dw_spi_remove_host +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x13ee0a11 spi_test_run_tests +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x86252385 spi_test_execute_msg +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0xab9bdd59 spi_test_run_test +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x0686d13d spmi_controller_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x3a9c67ad spmi_ext_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x4e53dc10 spmi_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x5d7ccb68 spmi_command_shutdown +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x649ecafe spmi_command_wakeup +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x6be82aa5 spmi_ext_register_writel +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x6cb1aab6 spmi_controller_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x72358d1f spmi_device_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x80148131 spmi_ext_register_readl +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x934488a0 spmi_device_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x98c8d16a spmi_command_sleep +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xc07548e7 spmi_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xcf9575c2 spmi_register_zero_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xcfd9cd4b spmi_ext_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xe04d74fd spmi_controller_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xe5dcba76 __spmi_driver_register +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xed46387e spmi_device_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xef45e01e spmi_command_reset +EXPORT_SYMBOL_GPL drivers/ssb/ssb 0x41dff457 ssb_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x2d476c75 fieldbus_dev_register +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x3124b322 fieldbus_dev_online_changed +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x93dad230 fieldbus_dev_unregister +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0xe153cb34 fieldbus_dev_area_updated +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x08866d61 gb_audio_apbridgea_set_config +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x29af078a gb_audio_apbridgea_stop_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x33b1c762 gb_audio_apbridgea_set_tx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x377b9d26 gb_audio_apbridgea_prepare_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x43ed24a4 gb_audio_apbridgea_shutdown_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x4e88224f gb_audio_apbridgea_register_cport +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x667b05dc gb_audio_apbridgea_unregister_cport +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xafba0e2e gb_audio_apbridgea_shutdown_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xc5f82d00 gb_audio_apbridgea_stop_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xdb2cb7ac gb_audio_apbridgea_prepare_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xef3c2562 gb_audio_apbridgea_set_rx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xf35b2c34 gb_audio_apbridgea_start_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xfdca519d gb_audio_apbridgea_start_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x11bce3b1 gb_audio_gb_deactivate_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x1227dd87 gb_audio_gb_set_control +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x5a26cb17 gb_audio_gb_activate_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x5fe572ed gb_audio_gb_set_rx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x6244a434 gb_audio_gb_get_pcm +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x64664668 gb_audio_gb_disable_widget +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xa26a1cde gb_audio_gb_get_control +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xa7c9ded8 gb_audio_gb_deactivate_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xad646330 gb_audio_gb_set_pcm +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xb4abee39 gb_audio_gb_enable_widget +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xbf670336 gb_audio_gb_get_topology +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xe24ce8a4 gb_audio_gb_set_tx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xec53f67e gb_audio_gb_activate_rx EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x09bd7f9f gb_audio_manager_get_module EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x19e9e6b1 gb_audio_manager_remove_all EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x32e6391e gb_audio_manager_remove @@ -16601,383 +16682,382 @@ 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-gbphy 0x34836571 gb_gbphy_register_driver -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0xe0c0b22f gb_gbphy_deregister_driver -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0x6eef0226 gb_spilib_master_exit -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0xf9f169d4 gb_spilib_master_init -EXPORT_SYMBOL_GPL drivers/staging/iio/addac/adt7316 0x7cc461e0 adt7316_pm_ops -EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/i2c/atomisp-libmsrlisthelper 0x807cd35d release_msr_list -EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/i2c/atomisp-libmsrlisthelper 0xe482fb7a apply_msr_data -EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/i2c/atomisp-libmsrlisthelper 0xe78b5e58 load_msr_list -EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/pci/atomisp_gmin_platform 0x0336e0a6 gmin_get_var_int -EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/pci/atomisp_gmin_platform 0x2929b3bc atomisp_gmin_find_subdev -EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/pci/atomisp_gmin_platform 0x3492a844 camera_sensor_csi -EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/pci/atomisp_gmin_platform 0x4282cb07 atomisp_get_platform_data -EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/pci/atomisp_gmin_platform 0x5fd732e6 atomisp_register_i2c_module -EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/pci/atomisp_gmin_platform 0xb0888347 atomisp_gmin_remove_subdev +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0x6f79f98e gb_gbphy_deregister_driver +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0xadc3dd4e gb_gbphy_register_driver +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0x36522677 gb_spilib_master_exit +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0x7bffbe5f gb_spilib_master_init +EXPORT_SYMBOL_GPL drivers/staging/iio/addac/adt7316 0x0240c196 adt7316_pm_ops +EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/i2c/atomisp-libmsrlisthelper 0x27405fa8 load_msr_list +EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/i2c/atomisp-libmsrlisthelper 0x8678cd79 apply_msr_data +EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/i2c/atomisp-libmsrlisthelper 0xaa8704e4 release_msr_list +EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/pci/atomisp_gmin_platform 0x29090cc1 atomisp_get_platform_data +EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/pci/atomisp_gmin_platform 0x495addb3 atomisp_gmin_remove_subdev +EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/pci/atomisp_gmin_platform 0x53a793fa gmin_camera_platform_data +EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/pci/atomisp_gmin_platform 0x57080ccc camera_sensor_csi +EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/pci/atomisp_gmin_platform 0x7a273b8c gmin_get_var_int +EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/pci/atomisp_gmin_platform 0x8ab7a4e3 atomisp_gmin_register_vcm_control EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/pci/atomisp_gmin_platform 0xbae0e12f atomisp_get_default_camera_caps -EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/pci/atomisp_gmin_platform 0xbd9ae510 gmin_camera_platform_data -EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/pci/atomisp_gmin_platform 0xe447d22b atomisp_gmin_register_vcm_control -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x5d5b9b2c target_submit_prep -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x99f932e3 target_queue_submission -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xcf9a8c08 target_init_cmd -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xfbc62a8e target_submit -EXPORT_SYMBOL_GPL drivers/tee/tee 0x04564f2e tee_shm_pool_free -EXPORT_SYMBOL_GPL drivers/tee/tee 0x069f0843 tee_shm_get_from_id -EXPORT_SYMBOL_GPL drivers/tee/tee 0x1b877e8f tee_shm_pool_alloc -EXPORT_SYMBOL_GPL drivers/tee/tee 0x29ab4362 tee_client_open_context -EXPORT_SYMBOL_GPL drivers/tee/tee 0x355b0825 teedev_open -EXPORT_SYMBOL_GPL drivers/tee/tee 0x4641fd93 tee_client_open_session -EXPORT_SYMBOL_GPL drivers/tee/tee 0x468b8afe tee_client_close_context -EXPORT_SYMBOL_GPL drivers/tee/tee 0x4d55688e tee_device_register -EXPORT_SYMBOL_GPL drivers/tee/tee 0x56934cbf tee_shm_alloc -EXPORT_SYMBOL_GPL drivers/tee/tee 0x573a554d tee_client_get_version -EXPORT_SYMBOL_GPL drivers/tee/tee 0x6958a8a7 tee_shm_free -EXPORT_SYMBOL_GPL drivers/tee/tee 0x6e7a065b tee_shm_va2pa -EXPORT_SYMBOL_GPL drivers/tee/tee 0x74027d4a tee_bus_type -EXPORT_SYMBOL_GPL drivers/tee/tee 0x7d674058 tee_shm_pool_alloc_res_mem -EXPORT_SYMBOL_GPL drivers/tee/tee 0x83270943 tee_device_unregister -EXPORT_SYMBOL_GPL drivers/tee/tee 0x837002a8 teedev_close_context -EXPORT_SYMBOL_GPL drivers/tee/tee 0x853a1e48 tee_shm_register +EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/pci/atomisp_gmin_platform 0xd759a0ec atomisp_register_i2c_module +EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/pci/atomisp_gmin_platform 0xde0de20e atomisp_gmin_find_subdev +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x3d018ab8 target_submit +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x5757f920 target_submit_prep +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x5d00381e target_queue_submission +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xccc2130c target_init_cmd +EXPORT_SYMBOL_GPL drivers/tee/tee 0x046aadbc tee_shm_get_from_id +EXPORT_SYMBOL_GPL drivers/tee/tee 0x2be92dd8 tee_device_unregister +EXPORT_SYMBOL_GPL drivers/tee/tee 0x2e3e4e26 tee_shm_register +EXPORT_SYMBOL_GPL drivers/tee/tee 0x416eb260 tee_device_alloc +EXPORT_SYMBOL_GPL drivers/tee/tee 0x4711c826 tee_shm_free +EXPORT_SYMBOL_GPL drivers/tee/tee 0x500b25f6 tee_device_register +EXPORT_SYMBOL_GPL drivers/tee/tee 0x52e932f9 teedev_close_context +EXPORT_SYMBOL_GPL drivers/tee/tee 0x563b5c67 tee_shm_put +EXPORT_SYMBOL_GPL drivers/tee/tee 0x667f9187 tee_shm_get_pa +EXPORT_SYMBOL_GPL drivers/tee/tee 0x79abd7fc tee_shm_get_va +EXPORT_SYMBOL_GPL drivers/tee/tee 0x7a995a18 tee_shm_pool_mgr_alloc_res_mem +EXPORT_SYMBOL_GPL drivers/tee/tee 0x7d6389ef tee_client_get_version +EXPORT_SYMBOL_GPL drivers/tee/tee 0x7d9fbb18 teedev_open +EXPORT_SYMBOL_GPL drivers/tee/tee 0x7ffec2af tee_shm_pool_free EXPORT_SYMBOL_GPL drivers/tee/tee 0x85fd9922 tee_session_calc_client_uuid -EXPORT_SYMBOL_GPL drivers/tee/tee 0x884f273e tee_shm_put -EXPORT_SYMBOL_GPL drivers/tee/tee 0x8f9c7c52 tee_shm_pa2va -EXPORT_SYMBOL_GPL drivers/tee/tee 0x958c3d18 tee_get_drvdata -EXPORT_SYMBOL_GPL drivers/tee/tee 0x9c591298 tee_shm_get_va -EXPORT_SYMBOL_GPL drivers/tee/tee 0x9ff49702 tee_client_invoke_func -EXPORT_SYMBOL_GPL drivers/tee/tee 0xbd03cfc2 tee_client_close_session -EXPORT_SYMBOL_GPL drivers/tee/tee 0xc86f8e90 tee_shm_get_pa -EXPORT_SYMBOL_GPL drivers/tee/tee 0xcb31d93c tee_device_alloc -EXPORT_SYMBOL_GPL drivers/tee/tee 0xd81e126e tee_shm_pool_mgr_alloc_res_mem -EXPORT_SYMBOL_GPL drivers/tee/tee 0xe221ea20 tee_shm_alloc_kernel_buf -EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/int340x_thermal_zone 0x56e657b0 int340x_thermal_zone_add -EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/int340x_thermal_zone 0x62733fd7 int340x_thermal_read_trips -EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/int340x_thermal_zone 0xa1acd98f int340x_thermal_zone_remove -EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_device 0x1d7e39ab proc_thermal_resume -EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_device 0x6129191a proc_thermal_suspend -EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_device 0x83061879 proc_thermal_mmio_add -EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_device 0xc08e283f proc_thermal_add -EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_device 0xeb7c3d43 proc_thermal_mmio_remove -EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_device 0xf0ed4ab4 proc_thermal_remove -EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_mbox 0xa407c4fa proc_thermal_mbox_add -EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_mbox 0xbd7bed1b proc_thermal_mbox_remove +EXPORT_SYMBOL_GPL drivers/tee/tee 0x8e964594 tee_client_open_context +EXPORT_SYMBOL_GPL drivers/tee/tee 0x95fc373f tee_client_open_session +EXPORT_SYMBOL_GPL drivers/tee/tee 0x980703af tee_client_invoke_func +EXPORT_SYMBOL_GPL drivers/tee/tee 0x9e7807b9 tee_client_close_context +EXPORT_SYMBOL_GPL drivers/tee/tee 0xac376339 tee_bus_type +EXPORT_SYMBOL_GPL drivers/tee/tee 0xbc0cc953 tee_client_close_session +EXPORT_SYMBOL_GPL drivers/tee/tee 0xc5a7b1c2 tee_shm_va2pa +EXPORT_SYMBOL_GPL drivers/tee/tee 0xdbeab5dc tee_shm_pool_alloc_res_mem +EXPORT_SYMBOL_GPL drivers/tee/tee 0xe1dc5294 tee_shm_pa2va +EXPORT_SYMBOL_GPL drivers/tee/tee 0xe75573ea tee_get_drvdata +EXPORT_SYMBOL_GPL drivers/tee/tee 0xee66cbc5 tee_shm_alloc_kernel_buf +EXPORT_SYMBOL_GPL drivers/tee/tee 0xf6ac366f tee_shm_alloc +EXPORT_SYMBOL_GPL drivers/tee/tee 0xfcd97e75 tee_shm_pool_alloc +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/int340x_thermal_zone 0x43928726 int340x_thermal_zone_remove +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/int340x_thermal_zone 0xaebad1e7 int340x_thermal_zone_add +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/int340x_thermal_zone 0xfce87109 int340x_thermal_read_trips +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_device 0x5910e0c0 proc_thermal_mmio_remove +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_device 0xb3cc1f9e proc_thermal_mmio_add +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_device 0xcc394f07 proc_thermal_remove +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_device 0xd78b5ad5 proc_thermal_suspend +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_device 0xfdefc33d proc_thermal_add +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_device 0xfdff1708 proc_thermal_resume +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_mbox 0x1971099c proc_thermal_mbox_add +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_mbox 0x3acdafec proc_thermal_mbox_remove 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 0x2c737664 proc_thermal_rapl_add -EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_rfim 0x2c81fc62 proc_thermal_rfim_add -EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_rfim 0x85e89128 proc_thermal_rfim_remove -EXPORT_SYMBOL_GPL drivers/thermal/intel/intel_soc_dts_iosf 0x783cc4ec intel_soc_dts_iosf_exit -EXPORT_SYMBOL_GPL drivers/thermal/intel/intel_soc_dts_iosf 0xe80a698b intel_soc_dts_iosf_interrupt_handler -EXPORT_SYMBOL_GPL drivers/thermal/intel/intel_soc_dts_iosf 0xedf1e6a8 intel_soc_dts_iosf_init -EXPORT_SYMBOL_GPL drivers/thermal/intel/intel_soc_dts_iosf 0xf849b1a0 intel_soc_dts_iosf_add_read_only_critical_trip +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_rapl 0xdd66588a proc_thermal_rapl_add +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_rfim 0xba8bb5f7 proc_thermal_rfim_add +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_rfim 0xcd97a950 proc_thermal_rfim_remove +EXPORT_SYMBOL_GPL drivers/thermal/intel/intel_soc_dts_iosf 0x5b655eac intel_soc_dts_iosf_init +EXPORT_SYMBOL_GPL drivers/thermal/intel/intel_soc_dts_iosf 0x8e3b42fc intel_soc_dts_iosf_exit +EXPORT_SYMBOL_GPL drivers/thermal/intel/intel_soc_dts_iosf 0xc07aff6c intel_soc_dts_iosf_add_read_only_critical_trip +EXPORT_SYMBOL_GPL drivers/thermal/intel/intel_soc_dts_iosf 0xf6899e25 intel_soc_dts_iosf_interrupt_handler EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x01d23ee1 tb_property_create_dir -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x10dd94ca tb_xdomain_lane_bonding_disable -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x1c8424a4 tb_xdomain_find_by_route -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x2200ca73 tb_xdomain_alloc_in_hopid -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x2304ba3e tb_ring_poll_complete +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x0a98003f tb_xdomain_lane_bonding_disable +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x13c73208 tb_xdomain_release_out_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x168eb7d0 tb_ring_poll +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x1936fa6a tb_xdomain_find_by_uuid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x26497d34 tb_xdomain_enable_paths +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x3792d01a tb_xdomain_alloc_out_hopid EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x393b4f2f tb_property_free_dir -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x3d4657f1 tb_ring_start -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x441db7f3 tb_ring_stop -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x44f1e214 tb_xdomain_find_by_uuid -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x45dd1784 tb_service_type +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x4cf30806 tb_unregister_service_driver +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x4d79fd77 tb_service_type +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x4e3f223b tb_xdomain_release_in_hopid EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x4e5064a7 tb_property_find EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x4e64bdfd tb_register_protocol_handler -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x5a3b23d3 tb_ring_alloc_tx +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x5bb82301 tb_xdomain_disable_paths +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x5f93223e tb_xdomain_response EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x603249ed tb_unregister_property_dir EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x658e3d97 tb_property_add_immediate +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x67e53036 tb_ring_free +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x6b0d7ff3 tb_ring_alloc_rx EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x73ad2acb tb_property_get_next -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x773a3f25 tb_xdomain_release_out_hopid EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x785eb82c tb_property_remove -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x8a9945c7 tb_xdomain_alloc_out_hopid -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x8b18671c tb_xdomain_response +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x815c5c43 tb_ring_poll_complete EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x8b62f95e tb_property_add_dir -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x8db711a4 tb_unregister_service_driver -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x907e2bd2 tb_ring_alloc_rx -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x9912a7aa tb_register_service_driver -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x99fb0c93 tb_xdomain_request +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xa3261742 tb_xdomain_type EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xa3d2b403 tb_property_add_data -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xab82fdb1 tb_xdomain_type -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xb0171cd5 tb_xdomain_enable_paths +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xa95e6d81 tb_xdomain_request +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xaf7e96c8 tb_xdomain_alloc_in_hopid EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xb7c7cdce tb_property_add_text -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xd1b28414 __tb_ring_enqueue -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xd8805f6d tb_xdomain_disable_paths -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xe3835269 tb_xdomain_release_in_hopid -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xe59ad75d tb_ring_free -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xeeca7695 tb_xdomain_lane_bonding_enable +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xb7e3531d tb_register_service_driver +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xb82cf0dd tb_ring_stop +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xbf1f69fe tb_ring_start +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xd296562d tb_xdomain_lane_bonding_enable +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xe103a0d2 tb_ring_alloc_tx +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xeb971bd0 tb_xdomain_find_by_route +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xee012bad __tb_ring_enqueue EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xf1cfd1ff tb_register_property_dir EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xf76028c7 tb_unregister_protocol_handler -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xfdd0c299 tb_ring_poll -EXPORT_SYMBOL_GPL drivers/uio/uio 0x372b40f6 __devm_uio_register_device -EXPORT_SYMBOL_GPL drivers/uio/uio 0x8d0d6da9 __uio_register_device -EXPORT_SYMBOL_GPL drivers/uio/uio 0xc339fa06 uio_event_notify -EXPORT_SYMBOL_GPL drivers/uio/uio 0xfd93bff5 uio_unregister_device -EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x60fb8098 usbatm_usb_probe -EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0xd48f6014 usbatm_usb_disconnect -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x2cd4303a cdns_remove -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x50cfecf0 cdns_set_vbus -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x5ea26f1a cdns_power_is_lost -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x67d6ae35 cdns_clear_vbus -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x983a38d5 cdns_drd_gadget_off -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xaeb4c3c7 cdns_suspend -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xb23fd9e8 cdns_resume -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xb6586caf cdns_drd_gadget_on -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xd655f995 cdns_init -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x1a74f4ec ci_hdrc_add_device -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x7533959f ci_hdrc_remove_device -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xd53f6854 ci_hdrc_query_available_role -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xed090b79 hw_phymode_configure -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x0ac4dc38 __ulpi_register_driver -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x28622fc7 ulpi_write -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x432f39bf ulpi_register_interface -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xab1bd67c ulpi_unregister_interface -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xb2952e94 ulpi_read -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xbbb3a4a9 ulpi_unregister_driver -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x0c985684 g_audio_setup -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x1507578d u_audio_stop_playback -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x3f9a806a u_audio_stop_capture -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x491262f6 g_audio_cleanup -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x882f6598 u_audio_get_volume -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x8ad32e82 u_audio_set_volume -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xa5878d70 u_audio_start_capture -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xb8a9a752 u_audio_get_mute -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xbb144559 u_audio_set_mute -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xe8ffb3fa u_audio_start_playback -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x25cde5cb gether_get_host_addr_cdc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x3b0abd69 gether_set_qmult -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x44014e10 gether_setup_name_default -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x4898f058 gether_set_dev_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x4d7b1653 gether_get_qmult -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x5b88ecba gether_get_ifname -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x636fbd32 gether_get_host_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x67e72740 gether_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x723e58c0 gether_set_gadget +EXPORT_SYMBOL_GPL drivers/uio/uio 0x15bc36fa uio_event_notify +EXPORT_SYMBOL_GPL drivers/uio/uio 0x1bac0f7f __uio_register_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0x35dc85c4 uio_unregister_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0x494df493 __devm_uio_register_device +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x375f248c usbatm_usb_probe +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0xfa55c909 usbatm_usb_disconnect +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x251499e0 cdns_power_is_lost +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x3ddb805b cdns_suspend +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x7b873566 cdns_clear_vbus +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x816675ef cdns_resume +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x97cd3492 cdns_init +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xd515fb5d cdns_drd_gadget_on +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xe7291f49 cdns_drd_gadget_off +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xf2e1138a cdns_remove +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xf8d785eb cdns_set_vbus +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x453c81d1 hw_phymode_configure +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x6634c3f0 ci_hdrc_query_available_role +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x7f0752dc ci_hdrc_remove_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xc4340fdc ci_hdrc_add_device +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x0e41cb06 ulpi_register_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x13985984 ulpi_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x6497d505 ulpi_write +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xb739abdb ulpi_read +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xc52c54f5 ulpi_unregister_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xcafb5b95 __ulpi_register_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x0b22aa6e u_audio_stop_capture +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x1491ce43 u_audio_set_mute +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x2407b29b u_audio_stop_playback +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x3e9f28c3 u_audio_start_capture +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x4b55ec56 g_audio_setup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x8c55d04c u_audio_start_playback +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xab448194 u_audio_set_volume +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xb70408bc g_audio_cleanup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xf7dd3c38 u_audio_get_mute +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xf84858d9 u_audio_get_volume +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x0a45204d gether_setup_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x2c49fdec gether_get_host_addr_u8 +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x2ec8ed4e gether_get_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x3f708dc6 gether_get_ifname +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x518936a5 gether_set_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x78026f20 gether_connect EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8878cfa6 gether_cleanup -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x94a7293b gether_register_netdev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xa8413335 gether_set_ifname -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xa8583453 gether_get_dev_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xde950dd8 gether_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xeffa53c3 gether_setup_name -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xf540985d gether_get_host_addr_u8 -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xf609edb5 gether_set_host_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x0d9b3014 gserial_suspend -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x11059b81 gserial_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x9f75c98e gether_set_ifname +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xad18ad53 gether_get_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xb39fdc2f gether_set_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xd8e3063f gether_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xecba5185 gether_register_netdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xf2dba617 gether_get_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xf3ca8c79 gether_set_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xf779bf72 gether_set_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xf9826506 gether_setup_name_default +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xfc14a40f 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 0x48b55d36 gserial_resume +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x40fb4f29 gserial_suspend EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x4a3df9d0 gs_alloc_req -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x5afc93f7 gserial_disconnect EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x60db48f5 gserial_get_console EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x60ea48a0 gs_free_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x7e884272 gserial_resume +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x90f30ca5 gserial_disconnect EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xb6652875 gserial_free_line EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xc0a01527 gserial_set_console +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xd34a8787 gserial_connect EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xe89dc424 gserial_alloc_line_no_console EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x6c825859 ffs_lock -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x86ec468b ffs_single_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0xe371516e ffs_name_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x0975a6a5 fsg_store_nofua +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x72ee520e ffs_single_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0xc4a67420 ffs_name_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x006bffba fsg_show_inquiry_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x13d1a752 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 0x1a9cce8d fsg_show_file -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1b446f4c fsg_store_removable EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1ccb58f7 fsg_common_set_num_buffers -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1e6afd77 fsg_lun_fsync_sub +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x23a57b3a 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 0x32ad971c 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 0x423845e4 fsg_ss_bulk_in_comp_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x42a2f574 fsg_store_ro -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x4a93719f fsg_common_set_cdev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x54f60126 fsg_store_file +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x55671a86 fsg_store_nofua EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x56344daf fsg_hs_bulk_out_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x6a52a9a0 fsg_lun_open 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 0x6ff15f38 fsg_store_inquiry_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x6b785433 fsg_lun_close +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x6f1af16f fsg_store_cdrom +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x72815075 fsg_common_remove_lun +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x72e10fa4 fsg_store_removable EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7e26d4a5 fsg_common_set_sysfs EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x857b6dc2 fsg_hs_function EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x95cffb3e fsg_hs_bulk_in_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x979f975c fsg_common_remove_lun EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x9a0221c7 fsg_common_free_buffers +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x9d4f1a31 fsg_show_ro +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa3000889 fsg_show_file EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa5cae92f fsg_ss_bulk_out_comp_desc EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa5f99b69 fsg_fs_function EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 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 0xbb96859b fsg_lun_open -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xc5b6db65 fsg_store_cdrom -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xc9ce944a fsg_show_ro -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xcace39b0 fsg_show_inquiry_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xbbe57649 fsg_store_file EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xd1a3e8e0 fsg_common_create_luns -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xda99c7e7 fsg_show_removable -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xe2cfec19 fsg_show_cdrom -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xe97137bc fsg_lun_close -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf4239c70 fsg_show_nofua +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xe0f678d7 fsg_common_set_cdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xe882d500 fsg_show_removable +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xebc6e5e1 fsg_store_ro EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf4efc0c8 fsg_ss_bulk_out_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x3183fcc4 rndis_set_param_medium -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x3307d689 rndis_set_host_mac -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x3a389b11 rndis_register -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x68e24f1b rndis_set_param_vendor -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x73fe952e rndis_msg_parser -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x77e34868 rndis_get_next_response -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x8f19e8b1 rndis_uninit -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x940009ab rndis_add_hdr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x9739bb9a rndis_signal_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x9f3dd5d5 rndis_rm_hdr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x9febf5fe rndis_borrow_net -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xb153eebb rndis_deregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xceb76f90 rndis_free_response -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xde93a42e rndis_set_param_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xf81127f0 rndis_signal_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x00ab1467 usb_function_unregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x07a9f550 usb_assign_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x07ac16e7 usb_get_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0b46031a usb_composite_setup_continue +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xfe8f4ff8 fsg_show_nofua +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x0b70e3b7 rndis_add_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x132cf5cd rndis_free_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x4a7f4f60 rndis_set_host_mac +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x56c4272f rndis_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x6150e4d4 rndis_uninit +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x6d4172b9 rndis_set_param_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x6f3caaf5 rndis_get_next_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xb96753d5 rndis_borrow_net +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xc9172bb3 rndis_deregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xcc65444b rndis_msg_parser +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xd18f3b46 rndis_signal_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xd398e09d rndis_set_param_medium +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xdfe05b8c rndis_set_param_vendor +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xe42ee76c rndis_signal_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xeb1a94f9 rndis_rm_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x02542ba7 usb_string_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0c1c92eb usb_get_function EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0c589aba usb_validate_langid EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0cb7e477 usb_ep_autoconfig_release -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x184c92b5 usb_get_function_instance -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x1f25fa88 usb_remove_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x21d3077f usb_gstrings_attach -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x236f3821 usb_otg_descriptor_init -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x27ebf5ae config_ep_by_speed_and_alt +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x148616e1 usb_composite_overwrite_options +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x1ac09c4d usb_add_config_only +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x1dd5e6e6 usb_function_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x26f21554 usb_add_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2c591c06 usb_function_deactivate EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2e09263f usb_copy_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x33922f89 usb_free_all_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3e972ad8 usb_add_config -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x43f3551a usb_composite_probe +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x36ad9f41 config_ep_by_speed +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x37c16d36 usb_add_config +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x42acd76a usb_free_all_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x431f43c1 usb_composite_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4a261ba2 usb_put_function EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4beb505d usb_gadget_get_string -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x60fb78a8 usb_composite_unregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x629312fd usb_add_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6f757172 usb_put_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x78042847 usb_otg_descriptor_alloc -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7ae61e80 unregister_gadget_item -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x89b6db08 config_ep_by_speed -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8b129cae usb_add_config_only -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x92217614 usb_put_function_instance -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x936cdeb5 usb_composite_overwrite_options -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa522ae53 usb_function_deactivate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4e54f709 usb_composite_probe +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5d29656d usb_interface_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5dcf167d usb_function_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5f4bc1af unregister_gadget_item +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x660dea37 usb_assign_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6f87bb6a usb_string_ids_tab +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x79339c71 usb_function_activate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7a1304f4 usb_otg_descriptor_alloc +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x9799c643 usb_remove_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x990c1080 usb_gstrings_attach +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa9d5aea7 usb_string_ids_n +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xac9fcb53 usb_ep_autoconfig_ss EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb775db55 alloc_ep_req -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb842e4f4 usb_function_activate -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xcc03ae3a usb_ep_autoconfig_ss +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb995a8c4 usb_ep_autoconfig +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc22b8b51 usb_otg_descriptor_init +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc7fc84c7 config_ep_by_speed_and_alt EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd2ea2134 usb_descriptor_fillbuf -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd353657d usb_string_ids_tab -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd83c7512 usb_ep_autoconfig -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe8341d40 usb_string_id -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xeafb6b1c usb_interface_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xded792da usb_put_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf2b3e0d6 usb_composite_setup_continue EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf474a207 usb_gadget_config_buf -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xfba7095c usb_string_ids_n -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xfbc82819 usb_function_register -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xfc614c8e usb_ep_autoconfig_reset -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x36ba0454 udc_basic_init -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x4203947f udc_enable_dev_setup_interrupts +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf5a7ce7f usb_ep_autoconfig_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xfc3c12d4 usb_get_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x19756919 udc_enable_dev_setup_interrupts +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x5075804c udc_basic_init +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x522fac85 free_dma_pools +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x59e71f49 udc_probe EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x5d01d078 udc_irq -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x6e9dae4d udc_remove -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xa3d211a1 udc_probe -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xace9ec05 empty_req_queue -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xbd63cfb7 udc_mask_unused_interrupts -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xc3dc66b7 gadget_release -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xd9432569 init_dma_pools -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xeeedb526 free_dma_pools +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x8a4ff32b empty_req_queue +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x9969f736 init_dma_pools +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x9e05b2f7 udc_remove +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xca381edf udc_mask_unused_interrupts +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xf9bcb557 gadget_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x00a9b37e usb_gadget_map_request_by_dev EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x01b12bfb usb_ep_free_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x084d31c1 usb_gadget_unregister_driver EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x0a8c3b4b usb_ep_set_halt EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x0acfe2e7 usb_ep_set_wedge -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x0bb2232a usb_add_gadget_udc_release -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x0c420510 usb_del_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x0c7b84d0 usb_add_gadget EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x0d90d784 usb_ep_fifo_flush -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x2050667a usb_gadget_probe_driver -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x27ee06fc usb_initialize_gadget -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x2b288b45 usb_gadget_vbus_draw -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x2fee678d usb_gadget_udc_reset -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x324bf48f usb_del_gadget -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x3c133377 usb_add_gadget -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x3e0c6a5d usb_gadget_set_state -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x428c4917 usb_gadget_activate -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x469be69e usb_gadget_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x1214718f usb_gadget_vbus_draw +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x164a4511 usb_gadget_unmap_request_by_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x295b8310 usb_gadget_udc_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x30ca3120 gadget_find_ep_by_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x49bafa48 usb_gadget_disconnect EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x49d9f030 usb_ep_fifo_status -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x4fa6f8df usb_gadget_map_request_by_dev EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x506ab3a9 usb_ep_queue EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x50b88f41 usb_get_gadget_udc_name -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x56acc405 usb_gadget_wakeup -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x5ed1517c usb_gadget_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x5ee22e67 usb_gadget_ep_match_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x5bcad1e0 usb_gadget_frame_number +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x5c152c28 usb_gadget_set_selfpowered +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x5da45123 usb_gadget_connect EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x5fc294ef usb_ep_clear_halt -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x62a202de usb_gadget_unmap_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x61d9e6b0 usb_gadget_set_state +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x65110cd1 usb_del_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x657a5830 usb_initialize_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x6fc0f43b usb_gadget_check_config +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x73db8256 usb_add_gadget_udc EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x7a41b9f2 usb_ep_set_maxpacket_limit EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x7be89624 usb_gadget_giveback_request EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x882077d5 usb_ep_dequeue -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x8c15f4bd usb_gadget_deactivate -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x951c5321 usb_gadget_unregister_driver -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x959bde1c usb_gadget_vbus_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x993157ef usb_udc_vbus_handler +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x8acb462a usb_gadget_vbus_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x9e5d61d6 usb_gadget_ep_match_desc EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x9eb52803 usb_ep_disable -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa6d098f5 usb_add_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x9ee5394f usb_gadget_vbus_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa329c53f usb_gadget_clear_selfpowered EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa9e74462 usb_ep_alloc_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xabc57e16 usb_gadget_unmap_request_by_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xaca27799 usb_gadget_frame_number EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xaf201fa6 usb_ep_enable -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xbd0a9cd3 usb_gadget_check_config -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc2757b6d usb_gadget_set_selfpowered -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc74a5d72 usb_gadget_map_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xcd3a5bf4 usb_gadget_clear_selfpowered -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xf8a67baf gadget_find_ep_by_name -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xf8e3ba46 usb_gadget_vbus_connect -EXPORT_SYMBOL_GPL drivers/usb/host/xhci-pci-renesas 0xfdbc338c renesas_xhci_check_request_fw -EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x36d435d2 ezusb_fx1_ihex_firmware_download -EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x65e2fd08 ezusb_fx1_set_reset -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x0d808f94 usb_ftdi_elan_edset_output -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x15b827cd ftdi_elan_gone_away -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x210d131a usb_ftdi_elan_edset_setup -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x71c53337 usb_ftdi_elan_edset_flush -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x7b90e40d usb_ftdi_elan_write_pcimem -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xabf730c4 usb_ftdi_elan_edset_input -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xae203139 usb_ftdi_elan_read_pcimem -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xd68ed3a2 usb_ftdi_elan_edset_empty -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xf5d86a1b usb_ftdi_elan_edset_single +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xb917e4d1 usb_gadget_wakeup +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xbfbb2d5b usb_del_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xca871172 usb_gadget_probe_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xcbf322d9 usb_udc_vbus_handler +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xe158d2e3 usb_gadget_map_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xed0fc886 usb_add_gadget_udc_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xf5c281fc usb_gadget_activate +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xfac9d123 usb_gadget_deactivate +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xfe9ab4f2 usb_gadget_unmap_request +EXPORT_SYMBOL_GPL drivers/usb/host/xhci-pci-renesas 0x3e700a12 renesas_xhci_check_request_fw +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x70cb11b9 ezusb_fx1_set_reset +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x9ccb687e ezusb_fx1_ihex_firmware_download +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x16df81db usb_ftdi_elan_edset_single +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x32da5b92 usb_ftdi_elan_edset_flush +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x424ed6c4 ftdi_elan_gone_away +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x65b92bb3 usb_ftdi_elan_edset_output +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x74a60881 usb_ftdi_elan_edset_setup +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x8e0219a2 usb_ftdi_elan_edset_input +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x9b23f3ae usb_ftdi_elan_edset_empty +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xaeaed2e8 usb_ftdi_elan_read_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xce7e857b 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 0x1f8120f2 musb_get_mode +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x171c994c musb_interrupt EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x2734197f musb_readb -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x4adae71b musb_root_disconnect -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x5fe0fb59 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 0x89da65d0 musb_set_host -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x9f5d10ad musb_interrupt +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x7febfd1f musb_root_disconnect +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x883dfdd2 musb_set_host +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xa656c60b musb_set_peripheral EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xade3e56c musb_writew -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xc1e14553 musb_set_peripheral +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xc31efa44 musb_get_mode +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xe18677f9 musb_queue_resume_work 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 0x47704626 usb_phy_generic_register -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x63a1f8e5 usb_phy_gen_create_phy -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x6c5c448c usb_gen_phy_init -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0xac383095 usb_phy_generic_unregister -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0xe11a371b usb_gen_phy_shutdown -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-isp1301 0xb4f9a3a4 isp1301_get_client -EXPORT_SYMBOL_GPL drivers/usb/serial/usb_wwan 0x7ea0753d usb_wwan_port_probe -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x022b23cd usb_serial_generic_submit_read_urbs -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x10c4ad52 usb_serial_generic_chars_in_buffer -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x13cb828c usb_serial_deregister_drivers -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x213d7ecc usb_serial_register_drivers -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x399948d9 usb_serial_claim_interface -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x3abb94fb usb_serial_generic_write_bulk_callback -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x53532bce usb_serial_generic_write_start -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x54fa129f usb_serial_generic_close -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x57de7fbb usb_serial_handle_dcd_change -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x60843503 usb_serial_generic_get_icount -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x6502d9ee usb_serial_generic_read_bulk_callback -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x8bfc3e55 usb_serial_generic_process_read_urb -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x8f00034a usb_serial_generic_resume -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x99c545eb usb_serial_generic_tiocmiwait -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xae101073 usb_serial_generic_open -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xd95a0abc usb_serial_generic_unthrottle -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xe4968419 usb_serial_generic_wait_until_sent -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xe809da67 usb_serial_port_softint -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xfa66d6ef usb_serial_generic_write -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xff62d33c usb_serial_generic_throttle -EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0x28956d00 dp_altmode_probe -EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0x2ffedaeb dp_altmode_remove -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0x196f89a4 tcpci_register_port +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x60c2e725 usb_gen_phy_init +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x9af10a07 usb_phy_generic_unregister +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x9e8da7f5 usb_gen_phy_shutdown +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0xb77490f0 usb_phy_generic_register +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0xe3c77cc5 usb_phy_gen_create_phy +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-isp1301 0xa8c63261 isp1301_get_client +EXPORT_SYMBOL_GPL drivers/usb/serial/usb_wwan 0xa48947de usb_wwan_port_probe +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x05784b0e usb_serial_generic_get_icount +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x0c711229 usb_serial_generic_submit_read_urbs +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x152ceeda usb_serial_handle_dcd_change +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x1fb863c1 usb_serial_generic_tiocmiwait +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x2e7a1183 usb_serial_port_softint +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x45c9311b usb_serial_generic_chars_in_buffer +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x563c8f01 usb_serial_generic_write_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x5cdf07ef usb_serial_deregister_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x5ea5504b usb_serial_generic_read_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x6bd94910 usb_serial_generic_write_start +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x773cf5fa usb_serial_generic_unthrottle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x7f793f98 usb_serial_generic_open +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x8d6f39ac usb_serial_generic_write +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x9ae96f87 usb_serial_generic_resume +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xb632b81c usb_serial_generic_process_read_urb +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xb6dc3b67 usb_serial_register_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xc10c6ef4 usb_serial_generic_wait_until_sent +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xdc60224b usb_serial_generic_close +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xdcdf8090 usb_serial_claim_interface +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xde13514a usb_serial_generic_throttle +EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0x86560cb2 dp_altmode_remove +EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0xf30ba377 dp_altmode_probe +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0x1f268f28 tcpci_register_port EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0x6f497a3c tcpci_irq EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0xbe111953 tcpci_get_tcpm_port EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0xc529e32e tcpci_unregister_port EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x10ec6d2d tcpm_sink_frs -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x2723a21f tcpm_register_port EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x3b84657b tcpm_pd_transmit_complete EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x76eeda4b tcpm_unregister_port EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x9e0bd753 tcpm_pd_hard_reset @@ -16986,149 +17066,150 @@ 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 0x016546ea typec_set_data_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x02dec336 typec_register_plug -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x03b6aa57 typec_match_altmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x0495a0ed typec_mux_put -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x0ca528fb typec_set_vconn_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x10421ad0 typec_switch_register -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x193ea3ee typec_cable_put -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x1cab0bd8 typec_plug_set_num_altmodes -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x20146d7b typec_altmode2port -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x21b0d59f typec_mux_register -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x25feb7fe typec_partner_register_altmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2851462f typec_altmode_get_partner -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2b20953f typec_mux_set_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xf6fe58b3 tcpm_register_port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x0277c437 typec_altmode_update_active +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x0a1523f6 typec_set_pwr_opmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x0ce3eb28 typec_cable_is_active +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x138fb483 typec_altmode_exit +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x1530d607 typec_unregister_partner +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x16c2fb3c typec_partner_set_svdm_version +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x1993d2c1 typec_register_cable +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x19ca52e6 typec_set_data_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x22662a25 typec_unregister_port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x22d962d3 typec_get_negotiated_svdm_version +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x269b665e typec_register_partner +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x27651bd8 typec_altmode_vdm +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x27eaa413 typec_unregister_cable +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x293169ff typec_set_vconn_role EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2d1e301d typec_find_power_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x329a3431 fwnode_typec_switch_get -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x33ba32b3 typec_partner_set_svdm_version -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x3630f832 typec_unregister_partner -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x36b90ffd typec_get_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x3d786a52 typec_unregister_plug -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x3ea0f9ab typec_switch_set_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x448db0eb typec_partner_set_identity -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x4596863d typec_set_orientation -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x4669267d typec_unlink_port -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x488898b3 typec_plug_register_altmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x49c593f9 typec_port_register_altmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x4b99253a typec_mux_get_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x59a246ea typec_altmode_put_plug -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5c4152e1 typec_port_register_altmodes -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5d069850 typec_altmode_get_plug -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6779e7c9 typec_altmode_attention -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6b3623fc typec_mux_set -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6db966a2 typec_link_port -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7a5939ab typec_register_port -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7b322d50 typec_set_pwr_opmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7cfc3069 typec_altmode_exit -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7d2ef9bb typec_switch_put +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2d3e5377 typec_cable_set_identity +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2ea04c47 fwnode_typec_switch_get +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x306b3063 fwnode_typec_mux_get +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x31edb5d0 typec_cable_get +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x3758482b typec_unregister_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x4bcd068a typec_altmode_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x4d619dc9 typec_mux_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x4dd1fc00 typec_set_pwr_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x54b10181 typec_switch_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x57806023 typec_altmode_enter +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5c2ac8b4 typec_altmode_notify +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x66225b1b typec_link_port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x669be2b1 typec_get_orientation +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x67c58496 typec_altmode_put_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6bff8003 typec_mux_put +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6d3384c7 typec_switch_set_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7a8bdf8e typec_switch_register +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x88909a83 typec_set_orientation +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x8b9a96a7 __typec_altmode_register_driver EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9049491e typec_find_port_data_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9787c441 typec_altmode_notify +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9b826a72 typec_plug_register_altmode EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa254de98 typec_find_orientation -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa286d926 typec_altmode_update_active -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa62fc0bd typec_switch_get_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xbc017398 typec_cable_set_identity -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xbec51516 typec_get_orientation -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xbef4d812 typec_partner_set_pd_revision -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc1f4cc86 typec_set_mode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc28e6b91 typec_register_partner -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc2f0b87f typec_mux_unregister -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc66a40da typec_register_cable -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc6d80aae typec_altmode_vdm -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc8192a91 typec_unregister_cable -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc84f6424 typec_unregister_altmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xca46b2d4 fwnode_typec_mux_get -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xcc8e0b5d typec_cable_is_active -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd29cc5ed typec_unregister_port -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd480f2d7 typec_partner_set_num_altmodes -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd8c65e6a typec_switch_unregister -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xda653da0 __typec_altmode_register_driver -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe020d3c4 typec_get_negotiated_svdm_version -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe486b21c typec_cable_get +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa5f7fd22 typec_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa749c4f8 typec_port_register_altmodes +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xaaa73c90 typec_partner_set_pd_revision +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xaaf343d3 typec_switch_set +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xaca5d24e typec_unregister_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb0ea43d0 typec_port_register_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb39d3978 typec_switch_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xbcf00423 typec_altmode2port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc29d21f1 typec_set_mode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc9f6cdf2 typec_altmode_get_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xca3775bd typec_unlink_port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd50e5bff typec_mux_set +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd7ebd1e7 typec_register_port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd82175f6 typec_switch_put +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xdb02bfa0 typec_plug_set_num_altmodes +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xdb408bba typec_partner_set_num_altmodes +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe0fb70e8 typec_register_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe101bc22 typec_partner_set_identity +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe702d594 typec_partner_register_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe97c6c29 typec_cable_put +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xea343fc4 typec_mux_set_drvdata EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xeafc1eb8 typec_find_port_power_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xee605c9e typec_switch_set +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf0aa2a32 typec_altmode_attention EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf1234a8b typec_find_pwr_opmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf49c962b typec_set_pwr_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf858db7e typec_altmode_unregister_driver -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xfff5f340 typec_altmode_enter -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x3ab67ced ucsi_create -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x3bcdff9d ucsi_get_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x3dbf3319 ucsi_resume -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x3e90ae3f ucsi_set_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x47a797d3 ucsi_destroy -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xa4fe04e0 ucsi_register -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xb929f34b ucsi_send_command -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xe2b18474 ucsi_unregister -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xf82516e4 ucsi_connector_change -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x012d0f9b usbip_in_eh -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x32bdd778 dev_attr_usbip_debug -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x3f9e8471 usbip_start_eh -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x442e94da usbip_alloc_iso_desc_pdu -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x4e57b7e3 usbip_recv_xbuff -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x52e94898 usbip_recv_iso -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x5778719f usbip_dump_urb -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x5946967e usbip_event_happened +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf318adad typec_mux_register +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf5c5f984 typec_altmode_get_partner +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xfed92e07 typec_mux_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xffc1e9ae typec_match_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x304c7619 ucsi_send_command +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x49fc55a2 ucsi_connector_change +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x514d42e8 ucsi_set_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x59e4e2e2 ucsi_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x5b1c1139 ucsi_destroy +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xa8ac8977 ucsi_register +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xc94707f9 ucsi_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xe5ee1ebf ucsi_resume +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xf4542376 ucsi_create +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x3413242e usbip_pack_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x491e52fe usbip_recv_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x58fc98f5 usbip_recv_xbuff +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x753034d8 usbip_start_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x75bd87d5 usbip_in_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x784ae47a 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 0x877dce3c usbip_stop_eh -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xbd9f3e57 usbip_pack_pdu -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xbde47da3 usbip_event_add -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xc010f524 usbip_recv -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xcc0f7007 usbip_pad_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xb749643d usbip_event_happened +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xb86f1022 usbip_recv EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd02753dc usbip_header_correct_endian +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xde32c497 dev_attr_usbip_debug +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe0ea99d0 usbip_event_add EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe1ea0586 usbip_dump_header -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x47b29455 vdpa_unregister_device -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x86e56157 vdpa_register_device -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x9456d6b8 vdpa_mgmtdev_unregister -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x9942bfcc vdpa_mgmtdev_register -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xac0aa958 _vdpa_unregister_device -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xc54fb84c __vdpa_register_driver -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xd2c22aa9 _vdpa_register_device -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xdaec842a vdpa_unregister_driver -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xfddc1e73 __vdpa_alloc_device -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa_sim/vdpa_sim 0xcb3b580f vdpasim_create -EXPORT_SYMBOL_GPL drivers/vfio/mdev/mdev 0x3d9d1219 mdev_bus_type -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x007a9a56 vhost_vring_ioctl -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x07375ee4 vhost_signal -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x16ee483a vhost_exceeds_weight -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2401e126 vhost_get_vq_desc -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x250b2cfb vhost_add_used_n -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2b946af4 vhost_new_msg -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2ed1d02f vhost_vq_is_setup -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x34b0a126 vhost_dev_stop -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x35c5dc9c vhost_dev_has_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x44fd53d9 vhost_vq_avail_empty -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4a1f4e60 vhost_dev_cleanup -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5405cde2 vhost_work_dev_flush -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5564825f vq_meta_prefetch -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5937c194 vhost_log_write -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5d75cc4f vhost_discard_vq_desc -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5edcd379 vhost_poll_stop -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x60e7f48f vhost_dequeue_msg -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6a3a1fad vhost_dev_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x70dd957d vhost_dev_check_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7d78d017 vhost_add_used -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7dbaab41 vhost_vq_access_ok -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8018e1bf vhost_set_backend_features -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x87fca513 vhost_enqueue_msg -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x93d9f627 vhost_dev_ioctl -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x94415890 vhost_poll_start -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9ac5e315 vhost_add_used_and_signal_n -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9c6f797a vhost_vq_init_access -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa215e94a vhost_add_used_and_signal -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa5916d28 vhost_poll_queue +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe88df226 usbip_dump_urb +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xf49e9e36 usbip_pad_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xf70b5788 usbip_stop_eh +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x205da532 __vdpa_register_driver +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x36cc9dad vdpa_register_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x4e0d8e5a _vdpa_register_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x60353aa0 vdpa_unregister_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xb031b442 vdpa_unregister_driver +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xb469d920 _vdpa_unregister_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xe269755d vdpa_mgmtdev_register +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xe27dd696 __vdpa_alloc_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xfce2e5d5 vdpa_mgmtdev_unregister +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa_sim/vdpa_sim 0x475cf2ce vdpasim_create +EXPORT_SYMBOL_GPL drivers/vfio/mdev/mdev 0xe17792c6 mdev_bus_type +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x06188b3b vhost_dev_cleanup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0829d65a vhost_dev_has_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0a11bf8b vhost_dev_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0e20f4ac vhost_exceeds_weight +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1ee43ab3 vhost_work_dev_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x21dddf4d vhost_log_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x30f1133f vhost_vq_init_access +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x35d04ccb vhost_new_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3ec1962d vhost_dev_set_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x42095f7e vhost_dev_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x44567a9c vhost_poll_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x47583166 vhost_poll_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x47e76ded vhost_poll_start +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4beada0a vhost_vq_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x526b994d vhost_dev_check_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x54c2dc30 vhost_vq_is_setup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x569c7df4 vhost_vring_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5d9d85ee vhost_set_backend_features +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x60523198 vhost_dev_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x62ad7167 vhost_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x702f1a9e vhost_work_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7729bd7d vhost_has_work +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8c5d2812 vq_meta_prefetch +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8cae2b6e vhost_enqueue_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x94b0c5d5 vhost_poll_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x96d161c4 vhost_get_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa417c6d4 vhost_dev_reset_owner EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa909cfc5 vhost_work_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb4a08549 vhost_enable_notify -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb543a5fc vhost_poll_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb7cc9e9f vhost_chr_read_iter -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xcfff1325 vhost_disable_notify -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd4749b07 vhost_log_access_ok -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd5c39d59 vhost_poll_flush -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf2dfd57a vhost_dev_reset_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf85673f9 vhost_init_device_iotlb -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfc992380 vhost_work_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb17cab78 vhost_disable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb1923324 vhost_discard_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xbeac13a8 vhost_add_used +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xbf542ae7 vhost_add_used_and_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc518def6 vhost_poll_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xcbfe1a9e vhost_chr_read_iter +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xcd8d7d8f vhost_log_write +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd0a651a1 vhost_add_used_and_signal_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd28c1ca6 vhost_add_used_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xdf7f4238 vhost_init_device_iotlb +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe2bd64fd vhost_enable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe81469bb vhost_dequeue_msg EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfd2b3e45 vhost_dev_reset_owner_prepare -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfe188a65 vhost_dev_set_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xff8621a3 vhost_has_work +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfe9cdcf3 vhost_vq_avail_empty 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 @@ -17140,419 +17221,417 @@ 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 0x177344f6 ili9320_probe_spi -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x27e941cf ili9320_resume -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x709b616c ili9320_remove -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xa7bd8082 ili9320_write -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xac603b60 ili9320_suspend -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xae3c78c8 ili9320_shutdown -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xb03f5b9d ili9320_write_regs -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0x0d695e9b fb_ddc_read -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x01d55092 fb_sys_read -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x8770c63b fb_sys_write -EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x1333721f sis_malloc_new -EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x3436523c sis_free_new +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x0f29d593 ili9320_probe_spi +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x2b28184f ili9320_write +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x3f364b7f ili9320_suspend +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x8eec35c7 ili9320_resume +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xa579234d ili9320_remove +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xf0ce178d ili9320_write_regs +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xfde2bb37 ili9320_shutdown +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0x4036bbda fb_ddc_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x4e6dedd5 fb_sys_write +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x9f12f7ac fb_sys_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x2a761bd4 sis_free_new +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0xc3d2d239 sis_malloc_new EXPORT_SYMBOL_GPL drivers/video/fbdev/vermilion/vmlfb 0x016e6c20 vmlfb_unregister_subsys EXPORT_SYMBOL_GPL drivers/video/fbdev/vermilion/vmlfb 0x90c018c6 vmlfb_register_subsys EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0x0e1cee08 viafb_dma_copy_out_sg 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 0x90279dfe 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 0xbf0b4ff5 viafb_find_i2c_adapter 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 0xfff2dfd2 viafb_gpio_lookup -EXPORT_SYMBOL_GPL drivers/visorbus/visorbus 0x09e3c740 visorbus_read_channel EXPORT_SYMBOL_GPL drivers/visorbus/visorbus 0x0e338292 visorchannel_signalempty -EXPORT_SYMBOL_GPL drivers/visorbus/visorbus 0x464b2931 visorbus_unregister_visor_driver +EXPORT_SYMBOL_GPL drivers/visorbus/visorbus 0x1e26dbb0 visorbus_read_channel +EXPORT_SYMBOL_GPL drivers/visorbus/visorbus 0x33c89256 visorbus_disable_channel_interrupts EXPORT_SYMBOL_GPL drivers/visorbus/visorbus 0x4de03230 visorchannel_signalinsert EXPORT_SYMBOL_GPL drivers/visorbus/visorbus 0x56401853 visorchannel_signalremove -EXPORT_SYMBOL_GPL drivers/visorbus/visorbus 0x77c0a7e8 visorbus_write_channel -EXPORT_SYMBOL_GPL drivers/visorbus/visorbus 0x99434dfa visorbus_enable_channel_interrupts -EXPORT_SYMBOL_GPL drivers/visorbus/visorbus 0xb4497e6f visorbus_register_visor_driver +EXPORT_SYMBOL_GPL drivers/visorbus/visorbus 0x6f17cb98 visorbus_write_channel +EXPORT_SYMBOL_GPL drivers/visorbus/visorbus 0x9e383f76 visorbus_register_visor_driver +EXPORT_SYMBOL_GPL drivers/visorbus/visorbus 0xaaf6189f visorbus_unregister_visor_driver EXPORT_SYMBOL_GPL drivers/visorbus/visorbus 0xc455c651 visorchannel_get_guid -EXPORT_SYMBOL_GPL drivers/visorbus/visorbus 0xda213372 visorbus_disable_channel_interrupts -EXPORT_SYMBOL_GPL drivers/w1/wire 0x0ad8855f w1_triplet -EXPORT_SYMBOL_GPL drivers/w1/wire 0x2dcd6158 w1_touch_block -EXPORT_SYMBOL_GPL drivers/w1/wire 0x4f12b381 w1_reset_select_slave +EXPORT_SYMBOL_GPL drivers/visorbus/visorbus 0xd34a898c visorbus_enable_channel_interrupts +EXPORT_SYMBOL_GPL drivers/w1/wire 0x0354c628 w1_read_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x23c88f87 w1_triplet +EXPORT_SYMBOL_GPL drivers/w1/wire 0x60f7a8e6 w1_write_block EXPORT_SYMBOL_GPL drivers/w1/wire 0x63757e92 w1_calc_crc8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0x69ee1e36 w1_write_8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0x7b29e625 w1_reset_resume_command -EXPORT_SYMBOL_GPL drivers/w1/wire 0x84a1481e w1_write_block -EXPORT_SYMBOL_GPL drivers/w1/wire 0x8ed43df0 w1_next_pullup -EXPORT_SYMBOL_GPL drivers/w1/wire 0xa1269d9b w1_touch_bit -EXPORT_SYMBOL_GPL drivers/w1/wire 0xc6971fd8 w1_read_8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0xc78ebaf6 w1_reset_bus -EXPORT_SYMBOL_GPL drivers/w1/wire 0xf2f351f7 w1_read_block -EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x1c2f1972 xen_front_pgdir_shbuf_get_dir_start -EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x34721949 xen_front_pgdir_shbuf_alloc -EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x3b2fd7f8 xen_front_pgdir_shbuf_map -EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0xb37c7603 xen_front_pgdir_shbuf_free -EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0xe03ee4f6 xen_front_pgdir_shbuf_unmap -EXPORT_SYMBOL_GPL drivers/xen/xen-privcmd 0x15e4c614 xen_privcmd_fops -EXPORT_SYMBOL_GPL drivers/xen/xen-privcmd 0xd7ee923a xen_privcmdbuf_fops -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x488a1b71 dlm_posix_lock +EXPORT_SYMBOL_GPL drivers/w1/wire 0x85fd9906 w1_reset_bus +EXPORT_SYMBOL_GPL drivers/w1/wire 0x86e2c90c w1_read_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x9971c4d1 w1_touch_bit +EXPORT_SYMBOL_GPL drivers/w1/wire 0xa64a3f40 w1_write_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0xc3797175 w1_next_pullup +EXPORT_SYMBOL_GPL drivers/w1/wire 0xd6ebcd2a w1_touch_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0xdc52a948 w1_reset_select_slave +EXPORT_SYMBOL_GPL drivers/w1/wire 0xf139faf6 w1_reset_resume_command +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x189db76d xen_front_pgdir_shbuf_unmap +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x5cf86466 xen_front_pgdir_shbuf_get_dir_start +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x66993999 xen_front_pgdir_shbuf_map +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x85febe3e xen_front_pgdir_shbuf_free +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0xed55ca92 xen_front_pgdir_shbuf_alloc +EXPORT_SYMBOL_GPL drivers/xen/xen-privcmd 0xbc0b3356 xen_privcmdbuf_fops +EXPORT_SYMBOL_GPL drivers/xen/xen-privcmd 0xc859f3e4 xen_privcmd_fops EXPORT_SYMBOL_GPL fs/dlm/dlm 0x4b62826c dlm_unlock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x505d3b88 dlm_posix_unlock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x5b160724 dlm_posix_lock EXPORT_SYMBOL_GPL fs/dlm/dlm 0x647d6170 dlm_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x654fa48b dlm_posix_get +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x8c867ccd dlm_posix_unlock EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcd224e1d dlm_new_lockspace EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcf9f3328 dlm_release_lockspace -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xd81ea13f dlm_posix_get EXPORT_SYMBOL_GPL fs/fscache/fscache 0x092cf98e fscache_object_sleep_till_congested -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x09af869e nlmclnt_proc EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77e35ccc nlmsvc_unlock_all_by_ip -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x79cd589f nlmsvc_ops -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x890e8e34 lockd_up -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xc19f0707 nlmsvc_unlock_all_by_sb -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xc2608ca8 nlmclnt_done -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xc7566e2d lockd_down -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xdc0956f7 nlmclnt_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x01d0131a nfs_kill_super +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x7b043f64 lockd_up +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x902104c3 nlmclnt_proc +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x91eba1bf nlmsvc_ops +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x95258855 lockd_down +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xc47b1039 nlmsvc_unlock_all_by_sb +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xd103718c nlmclnt_done +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xd42ef273 nlmclnt_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0150a8a8 nfs_may_open EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0294c6a2 nfs_callback_nr_threads -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x02cc7cdf nfs_retry_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x06e827e2 __tracepoint_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0838399d nfs_alloc_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x084a73a6 nfs_commitdata_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0a3dc15d nfs_generic_pg_test -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0a622eb7 alloc_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0b524a40 nfs_file_fsync -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0dd9edee nfs_wb_all +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x04dce0c8 nfs_client_for_each_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x05b87bba nfs_setsecurity +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x069d0276 __traceiter_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0866ca74 nfs_sb_active +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x089f8703 nfs_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0925dc2f nfs_mknod +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0a66860b nfs_commitdata_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0b6b6f7d __traceiter_nfs_xdr_bad_filehandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0d0a064d nfs_pgio_current_mirror +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0d98c7b3 nfs_setattr_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0e8f8918 nfs_revalidate_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0ebed842 alloc_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0ff57e0d nfs_umount_begin EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10962bc2 nfs_auth_info_match -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1205363e nfs_revalidate_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x12c78701 nfs_sops -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x134c974c nfs_server_copy_userdata -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1394d7a0 nfs_set_verifier EXPORT_SYMBOL_GPL fs/nfs/nfs 0x14feb109 nfs_access_set_mask -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x162806ed nfs_commit_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x19934efb nfs_getattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1bb62310 __tracepoint_nfs_xdr_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1c2f76a2 nfs_unlink -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1e2cd051 nfs_alloc_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1ec9b325 nfs_mkdir -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x21c86ce5 nfs_init_server_rpcclient -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x221e112d nfs_rename +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x17da89d5 nfs_request_add_commit_list_locked +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x195271d3 nfs_pgheader_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1a507f32 nfs_filemap_write_and_wait_range +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1b843a2b nfs_fscache_open_file +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1c2bb382 nfs_reconfigure +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1ce37159 unregister_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1fbb8f2c nfs_clone_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x20909c04 nfs_wait_on_request +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x20acb30e nfs_pageio_resend +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x22d60a41 nfs_file_fsync EXPORT_SYMBOL_GPL fs/nfs/nfs 0x22d795a8 _nfs_display_fhandle_hash -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x23f7e9e9 nfs_lookup -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2462b56b nfs_pgio_header_free -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x247f4963 nfs_sb_deactive -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x24ac4d8e nfs_inode_attach_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x25be41c9 nfs_set_cache_invalid +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x237983b9 nfs_free_inode EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x29944073 nfs_file_release -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2f521e0d nfs_sb_active -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2f853146 nfs_writeback_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x32e79d00 nfs_lock -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x335b834e nfs_init_cinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26addaef nfs_writeback_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2811c205 nfs_file_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x28fd59de register_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2958d260 nfs_show_devname +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x29bdd2db nfs_rename +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2c88e354 nfs4_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2d17daaf nfs_sops EXPORT_SYMBOL_GPL fs/nfs/nfs 0x37239e6d __SCT__tp_func_nfs_xdr_bad_filehandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x37c752f2 nfs4_label_alloc EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3b3ec5af nfs_create_rpc_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3d5abb01 nfs4_fs_type -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3ddc1ed1 nfs_file_llseek -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3ded4e58 nfs_refresh_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3eb65561 nfs_alloc_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3ab22fd9 nfs_drop_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3c1e4472 nfs_init_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3c2f39d9 nfs_permission +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3e2400ed nfs_sb_deactive +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3ea6c1ea nfs_show_path EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f2690f2 nfs_check_flags +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f26e617 nfs_write_inode EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40739385 nfs_wait_bit_killable -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42c440b5 nfs_get_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40d6e860 nfs_file_write EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f2c81f nfs4_client_id_uniquifier -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x434b0c30 nfs_show_stats -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x44c02e83 nfs_invalidate_atime -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x470f47eb nfs_add_or_obtain -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x494304a5 __traceiter_nfs_xdr_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4a923271 nfs_show_options -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4b92148c nfs_flock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x43e9980c nfs_get_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x45834765 get_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x49d74be8 nfs_force_lookup_revalidate EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4ea4fb6a __SCK__tp_func_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4fbcd261 nfs_pageio_reset_read_mds -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x508c2f07 nfs_wait_on_request +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cd4241e nfs_create_rpc_client EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51a705f0 nfs_reconfigure -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51ab8c75 nfs_request_add_commit_list_locked -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x53faff98 __SCK__tp_func_nfs_xdr_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5452c198 nfs_link +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x54ffb853 nfs_client_init_is_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x55a88856 nfs_initiate_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x57c6ffdc nfs_create_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x580d8507 nfs_try_get_tree EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584b8482 nfs_inc_attr_generation_counter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5b651c33 nfs_try_get_tree -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5c2c3586 nfs_statfs -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6049affc nfs_client_init_is_complete -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x61ca8100 nfs_clear_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x639e8ec6 nfs_write_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x656f4af3 nfs_filemap_write_and_wait_range -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x67caacaf nfs_file_set_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x683cb141 nfs_access_add_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x684ad102 nfs_create -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x68e2072e nfs_file_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x691e43c1 nfs_wait_client_init_complete -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6ae9f3ab nfs_clone_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6ce5418b nfs_async_iocounter_wait -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6f88d1c8 nfs_initiate_pgio -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6fd67224 nfs_generic_pgio -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x743151ac nfs_close_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x75be5449 nfs_drop_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x768b2c30 nfs_commit_free -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x78736db7 nfs_rmdir -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x791656af __traceiter_nfs_fsync_enter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x79e1e83e nfs_free_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7a12227b nfs_may_open -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7bc056b7 __tracepoint_nfs_xdr_bad_filehandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5ad3ba72 nfs_file_llseek +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x65da14de nfs_zap_acl_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x667df4fd nfs_server_insert_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x679716a3 nfs_put_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x69b423e7 nfs_statfs +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6aad356b nfs_show_stats +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6bc80cf9 __tracepoint_nfs_xdr_bad_filehandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6e5ec0aa nfs_close_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6e7b2703 nfs_wait_client_init_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x71ebaa3e nfs_generic_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x727a0783 nfs_access_zap_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7487b228 nfs_init_cinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x753ea3e0 __SCK__tp_func_nfs_xdr_bad_filehandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x766421d8 nfs_commitdata_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x768a717e nfs_alloc_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x769a9106 nfs_pgio_header_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x793cbaa4 nfs_scan_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7c404844 nfs_pageio_reset_write_mds EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7c9722ba nfs_dreq_bytes_left -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fd4bfc7 __tracepoint_nfs_fsync_enter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x806117a1 nfs_do_submount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8170ce51 nfs_scan_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x817afce6 nfs_pgio_header_alloc EXPORT_SYMBOL_GPL fs/nfs/nfs 0x832e8f0b nfs_alloc_fattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8378f33d nfs_fhget -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x840a7a19 nfs_submount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x87647876 __SCK__tp_func_nfs_xdr_bad_filehandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x88fac2b5 register_nfs_version -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8a244917 nfs_server_remove_lists -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8cbbea33 nfs_setattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x83ed1b09 nfs_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x86d98751 nfs_commit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x87aa27ee nfs_file_set_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8a549024 nfs_pageio_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8b0badb9 nfs_check_cache_invalid +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8d641616 nfs_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8d75284f nfs_refresh_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8e0d6238 nfs_getattr EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90a5530f nfsiod_workqueue EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91d1fe52 max_session_slots -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x936d0a4a nfs_permission -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x937f706e nfs_pageio_reset_write_mds -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x94a6fbda nfs_setsecurity -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x95892c5d nfs_zap_acl_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x95a08444 nfs_setattr_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x95df8fc0 nfs_free_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9727c36e nfs_init_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x940bb2aa nfs_wb_all +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9457bb9a __traceiter_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x959303e3 nfs_link +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9594207f nfs_release_request +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x960ff905 nfs_mkdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x978dbde2 nfs_commit_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x979b146d nfs_do_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x97e04979 nfs_init_commit EXPORT_SYMBOL_GPL fs/nfs/nfs 0x98b0ece8 nfs_init_timeout_values -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x99659c1f nfs_server_insert_lists -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9cfff809 __SCK__tp_func_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x999fff24 nfs_probe_fsinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9bd9b055 nfs_alloc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9c75962d __SCK__tp_func_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9d2a7ded nfs_lookup EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9d919c44 __SCT__tp_func_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9e1bff90 nfs_access_get_cached +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9dbba8c4 nfs_file_mmap +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9f995485 nfs_unlink EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa05ca625 nfs_fattr_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa47af4be nfs_free_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa5d6b4b0 nfs_commitdata_release -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa6faeec5 nfs_init_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa37ee054 nfs_symlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa3d7b286 nfs_inode_attach_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa587807b nfs_show_options EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e9e1ae send_implementation_id -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa99b7e39 nfs_post_op_update_inode_force_wcc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa9aa4566 __tracepoint_nfs_fsync_enter EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaafd4acc max_session_cb_slots -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xafa896f0 put_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb7d26814 nfs_force_lookup_revalidate -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb8c2a2d4 nfs_probe_fsinfo -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb8ff464d __traceiter_nfs_xdr_bad_filehandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb99add87 nfs_access_zap_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbc19ba13 nfs_path -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbd405ec7 nfs_initiate_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbe12533f nfs_release_request -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbe8d1454 nfs_file_mmap -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc2644fc0 nfs_pageio_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc2c73e08 nfs_request_remove_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xacd0bd02 nfs_retry_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xad0583ba nfs_get_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaeb16e42 __tracepoint_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaf2a4f66 nfs_kill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb36f255b nfs_fhget +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb3ef6ab0 __tracepoint_nfs_xdr_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb532edd6 nfs_add_or_obtain +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb6fd3a24 nfs_access_add_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb81acc26 nfs_invalidate_atime +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xba056345 nfs_set_cache_invalid +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xba60d54f nfs_request_remove_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbe6f8305 nfs_file_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbe765234 nfs_mark_client_ready +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc0c055b7 nfs_flock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc1900990 nfs_create +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc1998c2b nfs_setattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc19e8c4b nfs_post_op_update_inode EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3a2be67 nfs_net_id -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc76af641 nfs_clear_verifier_delegated -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc8882454 nfs_show_devname -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc99913de nfs_put_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xca582b73 nfs_get_lock_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcac96a6c get_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcf508b37 unregister_nfs_version -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcfe5c6e3 __traceiter_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd38b6ad3 nfs_mark_client_ready -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd456341d nfs_show_path -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd5d5cd85 nfs_sync_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd976b3f6 nfs_mknod -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae41a31 nfs_file_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3f98919 nfs_clear_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc4cadf6a __SCK__tp_func_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc61ad2cb nfs_access_get_cached +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xca29b5d8 nfs_file_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcb05ebb1 nfs_atomic_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd34ee12b nfs_alloc_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd36d2b57 nfs_rmdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd3e29f03 nfs_clear_verifier_delegated +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd4e4cb9a nfs_post_op_update_inode_force_wcc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd5d19645 nfs_pageio_reset_read_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd6020ec4 nfs_put_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd69eefff nfs_initiate_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd81e3063 nfs_lock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd9088f31 nfs_free_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd994db98 __SCK__tp_func_nfs_xdr_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xda669497 nfs_pgio_header_alloc EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdc24d309 nfs_check_cache_invalid -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xde164234 nfs_open -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xde57bbca nfs_umount_begin -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xde751ea3 nfs_put_lock_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdea8ccc1 nfs_pageio_resend -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdfe496bd nfs_request_add_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe078a6a2 nfs_client_init_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe2e0be05 nfs_client_for_each_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe2e6fba8 nfs_pgheader_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe3249e32 nfs_atomic_open -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe6a9ba79 nfs_file_write -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe7e13ce2 nfs_dentry_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeaa6b9ec nfs_symlink -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xee40d4de nfs_post_op_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf473a178 nfs_instantiate -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf4b5d941 nfs_pgio_current_mirror -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf6d12924 nfs_fs_type -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf8a34e55 nfs_pageio_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf9410dfc nfs_fscache_open_file -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf9d2168c nfs4_dentry_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfaa1b317 nfs_create_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfb2203f6 nfs4_label_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdd5500c0 nfs_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xde99a81c nfs_sync_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdeaac980 put_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdeee4493 nfs_set_verifier +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe1f1b870 nfs_free_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe3366a13 nfs_async_iocounter_wait +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeb61f259 __traceiter_nfs_xdr_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeda37163 nfs_client_init_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xef6727dc nfs_pageio_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf08e3ac0 nfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf3015c74 nfs_instantiate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf3c43a3e nfs_init_server_rpcclient +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf5f65fbe nfs4_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf7008a8d nfs_request_add_commit_list EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc619abd _nfs_display_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfcb9f02a nfs_server_remove_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfce82999 nfs_server_copy_userdata 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 0xe492cdfa nfs3_set_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x00050bc6 pnfs_ld_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0141de69 nfs4_mark_deviceid_available -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0214ef50 pnfs_generic_layout_insert_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0275ff00 __traceiter_ff_layout_read_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0x5fbe35a9 nfs3_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0227d123 nfs4_find_or_create_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x050d538e nfs4_init_ds_session EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x05d03d3d pnfs_generic_pg_readpages -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x073ede14 nfs41_sequence_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x09a857be __traceiter_ff_layout_write_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0d7fd65e nfs4_find_get_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0d9bc6ee pnfs_generic_pg_check_range -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0e5d209c __SCK__tp_func_pnfs_mds_fallback_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x10d78526 __tracepoint_pnfs_mds_fallback_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x10e0a294 __SCK__tp_func_pnfs_mds_fallback_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x11aafc3c __traceiter_nfs4_pnfs_commit_ds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x14b04990 nfs_remove_bad_delegation -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x14bac706 pnfs_alloc_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x09dc8b6b __traceiter_pnfs_mds_fallback_read_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0b9201e1 pnfs_add_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0e65a94c __traceiter_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x107332b5 pnfs_generic_commit_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1406ce47 nfs4_test_session_trunk +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x15a6d54f __traceiter_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x17e1ddcb __traceiter_pnfs_mds_fallback_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x17e9d810 nfs4_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x187cf4f9 __SCK__tp_func_pnfs_mds_fallback_pg_get_mirror_count EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x18e75751 __SCT__tp_func_pnfs_mds_fallback_write_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1b23bdf5 nfs4_schedule_stateid_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2090f101 nfs4_set_rw_stateid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x255e67c6 pnfs_read_resend_pnfs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2666d825 __tracepoint_ff_layout_write_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x268a04b0 __traceiter_pnfs_mds_fallback_write_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x19ca4e6f pnfs_set_layoutcommit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1bdea1c8 pnfs_set_lo_fail +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1c94da59 pnfs_update_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1fbfab03 pnfs_register_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x23f55d67 nfs4_mark_deviceid_available +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x24c5b7a2 __SCK__tp_func_nfs4_pnfs_commit_ds EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2b16e909 __SCT__tp_func_nfs4_pnfs_commit_ds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2be944a9 pnfs_generic_pg_check_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2c7d2b48 nfs4_init_deviceid_node -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x376265dd nfs4_test_deviceid_unavailable -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3c8b6479 pnfs_generic_write_commit_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3d240b78 nfs4_schedule_session_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x41cd41b8 __tracepoint_ff_layout_commit_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x43c41abe pnfs_generic_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x46853a21 nfs4_sequence_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x47a8cc42 __traceiter_nfs4_pnfs_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x495afbc0 __traceiter_ff_layout_commit_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x49c00d5b pnfs_generic_pg_cleanup -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4a9c5ac6 __SCK__tp_func_nfs4_pnfs_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4b756edc pnfs_generic_recover_commit_reqs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4db0de64 __SCK__tp_func_nfs4_pnfs_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x508fddc1 nfs4_put_deviceid_node -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x51dd0422 __traceiter_pnfs_mds_fallback_read_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x53e09137 __SCK__tp_func_pnfs_mds_fallback_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x57178da0 pnfs_generic_prepare_to_resend_writes -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x58e6eb85 __traceiter_pnfs_mds_fallback_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5d625199 nfs4_setup_sequence -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5ec41012 pnfs_report_layoutstat -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x602f2805 nfs4_pnfs_ds_put +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x31b07160 nfs4_pnfs_ds_connect +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x35180050 __tracepoint_pnfs_mds_fallback_write_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x353a7af5 __tracepoint_pnfs_mds_fallback_pg_get_mirror_count +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x360ee0c9 pnfs_read_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x38b6d7a1 nfs4_set_rw_stateid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3a767dce pnfs_write_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3d26543e pnfs_generic_recover_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3db8cd45 nfs4_delete_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x44fdc825 __tracepoint_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x451f8b41 pnfs_error_mark_layout_for_return +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4ddb3741 pnfs_ld_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4ea97f2e pnfs_generic_write_commit_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5327a57a pnfs_ld_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5ecbe74d pnfs_read_resend_pnfs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x602c656f __SCK__tp_func_nfs4_pnfs_write EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6085edbd nfs_map_string_to_numeric -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x619a6e72 __SCK__tp_func_pnfs_mds_fallback_pg_get_mirror_count -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x61bae13b __tracepoint_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x617a83f3 __tracepoint_pnfs_mds_fallback_write_done EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x63826d35 __SCT__tp_func_nfs4_pnfs_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6954e43f pnfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x66c8bd97 pnfs_generic_pg_writepages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x67c81816 __traceiter_pnfs_mds_fallback_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x684f6f0f pnfs_generic_search_commit_reqs EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d46d5d pnfs_register_layoutdriver 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 0x6d34992d pnfs_generic_search_commit_reqs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x73f42bac pnfs_set_layoutcommit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x74d06c6a __traceiter_pnfs_mds_fallback_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x77006efa __traceiter_pnfs_mds_fallback_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7b0dd8ce pnfs_write_done_resend_to_mds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7d957937 nfs4_schedule_lease_moved_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6abe04a7 nfs4_find_get_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6cf650d9 __SCK__tp_func_ff_layout_write_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6e0f671d pnfs_generic_ds_cinfo_destroy +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6e3f0c0e nfs4_schedule_migration_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6e6d856a nfs4_schedule_lease_moved_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6e7f0d6f __traceiter_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x708c5ad5 nfs4_decode_mp_ds_addr +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x73cf11da nfs4_pnfs_ds_add +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x745dfa3f pnfs_alloc_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x778ed78a pnfs_free_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x77ae1591 pnfs_put_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7802f7d2 pnfs_generic_pg_check_range +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7866e19c __traceiter_pnfs_mds_fallback_read_done EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7e42bd3f __SCT__tp_func_ff_layout_read_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7ec9cf5f nfs4_set_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x82a3e05b __traceiter_pnfs_mds_fallback_pg_get_mirror_count -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x834393b8 nfs4_init_ds_session -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x87fccda2 pnfs_ld_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x889cf451 pnfs_generic_clear_request_commit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8aabca90 __SCK__tp_func_pnfs_mds_fallback_write_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8f63523f pnfs_put_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x90ec3d0f __SCK__tp_func_pnfs_mds_fallback_read_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9129af0f nfs4_pnfs_ds_add +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x85468926 __SCK__tp_func_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x872d1e62 pnfs_layout_mark_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8a7746ad __traceiter_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9153bfc5 __tracepoint_ff_layout_commit_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x92846d6c pnfs_destroy_layout EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x930a94fd __SCT__tp_func_pnfs_mds_fallback_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x95ad964c pnfs_error_mark_layout_for_return +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x94987311 pnfs_generic_pg_readpages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x957f0435 __traceiter_ff_layout_read_error EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x96c4643f __SCT__tp_func_pnfs_mds_fallback_pg_get_mirror_count -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x993d8e78 __tracepoint_nfs4_pnfs_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9d239d15 nfs4_find_or_create_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa25de782 pnfs_unregister_layoutdriver -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa2e4b831 __SCK__tp_func_nfs4_pnfs_commit_ds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa62512b0 __SCK__tp_func_ff_layout_write_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa680a3c0 pnfs_nfs_generic_sync -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa74b24fc pnfs_update_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xabcbfda9 pnfs_generic_scan_commit_lists -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xaddad463 pnfs_generic_pg_writepages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x992c1810 __SCK__tp_func_ff_layout_read_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa1c074f1 __SCK__tp_func_pnfs_mds_fallback_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xab244477 __tracepoint_pnfs_mds_fallback_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xad85880e __SCK__tp_func_pnfs_mds_fallback_read_pagelist EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xadeca730 __SCT__tp_func_nfs4_pnfs_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xaf29fcaa nfs4_decode_mp_ds_addr -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb3d1d1c4 pnfs_generic_commit_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb57db7bd nfs4_test_session_trunk -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb583d888 __tracepoint_pnfs_mds_fallback_read_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb6f2baf3 pnfs_add_commit_array -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbc2af919 pnfs_set_lo_fail -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc05d3259 pnfs_layout_mark_request_commit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc12865b9 __SCK__tp_func_ff_layout_commit_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc2a8bbfc pnfs_destroy_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xadffd02a nfs4_schedule_session_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xae57ab34 nfs4_schedule_stateid_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xae7cee27 nfs4_proc_getdeviceinfo +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xae9852d7 pnfs_nfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb8be8607 pnfs_layoutcommit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbb1a6e9d pnfs_report_layoutstat +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbc8c47a6 pnfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbcca3675 __traceiter_pnfs_mds_fallback_pg_get_mirror_count +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbd5a4889 __tracepoint_pnfs_mds_fallback_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc29f9f87 nfs4_schedule_lease_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc34a6940 __traceiter_pnfs_mds_fallback_write_pagelist EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc361c3c5 __SCT__tp_func_pnfs_mds_fallback_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc4610d15 nfs42_proc_layouterror -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc7281613 pnfs_read_done_resend_to_mds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc88f9244 __SCK__tp_func_pnfs_mds_fallback_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc4341fe1 __tracepoint_pnfs_mds_fallback_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc579ab00 pnfs_generic_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc96f487b pnfs_generic_ds_cinfo_release_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcb540938 nfs4_put_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcba37e3a pnfs_unregister_layoutdriver EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcc21ce5c __SCT__tp_func_ff_layout_commit_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcc8eea4d pnfs_generic_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcf0a16f4 pnfs_generic_ds_cinfo_release_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd57a0aee __tracepoint_pnfs_mds_fallback_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd601a574 __tracepoint_ff_layout_read_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd68a8101 __tracepoint_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcd72dd54 __tracepoint_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xced07608 __traceiter_ff_layout_commit_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcf3d8fc1 nfs4_test_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd13a2d4a nfs_remove_bad_delegation +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd4c8dc39 __SCK__tp_func_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd74114f7 pnfs_generic_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd81f29a7 nfs4_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd88e52c0 __tracepoint_ff_layout_write_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdb4d7059 nfs42_proc_layouterror +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdc679e23 pnfs_generic_pg_check_layout EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdeb5edce __SCT__tp_func_pnfs_mds_fallback_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdfd861e3 __tracepoint_pnfs_mds_fallback_pg_get_mirror_count -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe095c2bc nfs4_schedule_migration_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe1cdd740 __traceiter_nfs4_pnfs_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe21f0381 pnfs_generic_sync -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe23c1973 nfs4_proc_getdeviceinfo -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe3416462 pnfs_layoutcommit_inode -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe4b1b762 nfs4_pnfs_ds_connect -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe9e68378 nfs4_delete_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xeb7bea38 pnfs_free_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdf837085 nfs4_init_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe30f2129 pnfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xea9036ec __tracepoint_ff_layout_read_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xeb46bcad pnfs_generic_clear_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xebc78c32 nfs4_pnfs_ds_put EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed15fb41 nfs4_print_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xede077c3 __tracepoint_pnfs_mds_fallback_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xede13021 nfs4_schedule_lease_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf01905b2 __traceiter_pnfs_mds_fallback_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf0acfbe1 __SCK__tp_func_ff_layout_read_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf1d4d077 __tracepoint_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed4a361d pnfs_generic_prepare_to_resend_writes +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xedf8a153 __tracepoint_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf106f25e pnfs_generic_pg_cleanup EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf32fa2b7 __SCT__tp_func_ff_layout_write_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf5d15e6d nfs4_mark_deviceid_unavailable -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf60464ef pnfs_generic_ds_cinfo_destroy +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf347eb3c __tracepoint_pnfs_mds_fallback_read_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf38d0914 nfs4_mark_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf3dc76c0 nfs41_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf4589a89 pnfs_generic_scan_commit_lists +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf58c6f07 __SCK__tp_func_ff_layout_commit_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf5e62745 __SCK__tp_func_pnfs_mds_fallback_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf6f1c16d __SCK__tp_func_pnfs_mds_fallback_read_done EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf7801360 nfs41_maxgetdevinfo_overhead -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf952b3f6 __tracepoint_pnfs_mds_fallback_write_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf860b607 pnfs_generic_layout_insert_lseg EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf999267e pnfs_generic_commit_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfd9193b3 __SCK__tp_func_pnfs_mds_fallback_write_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfe330b42 nfs4_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfe592982 __traceiter_ff_layout_write_error EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fe1e1ad locks_end_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x552671d2 opens_in_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xbcd624cf locks_in_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xd30162da locks_start_grace -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x23dcba43 nfsacl_encode -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x7f4b04bf nfs_stream_encode_acl -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x81d43c8f nfsacl_decode -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x9fa26751 nfs_stream_decode_acl -EXPORT_SYMBOL_GPL fs/nfsd/nfsd 0x803c6413 nfsd4_ssc_init_umount_work +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x40d0d6c7 locks_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x565f55fc locks_start_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x6f34ad50 opens_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x031fcc9a nfs_stream_decode_acl +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x296007aa nfsacl_decode +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x55dd2457 nfs_stream_encode_acl +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xa597d660 nfsacl_encode +EXPORT_SYMBOL_GPL fs/nfsd/nfsd 0x0bc21551 nfsd4_ssc_init_umount_work EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1b89c6ee o2hb_fill_node_map -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x3217e0cc o2nm_get_node_by_num +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x3e2fb0f5 o2nm_get_node_by_num EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x4900035b o2hb_stop_all_regions -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x4d8bf3d2 o2hb_setup_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x51cf415e o2nm_node_get 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 0x6ada6e59 o2hb_register_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x74d943c2 o2nm_get_node_by_ip +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x7b39a190 o2nm_node_get EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x81a17396 mlog_and_bits -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x957f0c44 o2hb_unregister_callback EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa87bc9e7 o2nm_configured_node_map -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xadfff500 o2hb_register_callback EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xb6ebf62a o2nm_this_node -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xb90127a8 o2nm_node_put 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 0xcdda781b o2nm_get_node_by_ip +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xca178485 o2nm_node_put +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd3688c87 o2hb_setup_callback EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd859ac8c o2net_fill_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xdd0e3eb0 o2hb_unregister_callback EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf1a5611d o2net_unregister_handler_list EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf56c2017 mlog_not_bits EXPORT_SYMBOL_GPL fs/ocfs2/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 0x03342091 dlm_register_domain -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x3c091306 dlm_unregister_domain -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x4259e8b7 dlm_register_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x68be3f11 dlm_print_one_lock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x1c22f7ec dlm_unregister_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x33f8fcfc dlmunlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x6d82cd17 dlm_register_domain EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7a1211f8 dlm_setup_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x880f9a34 dlmunlock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x9573e682 dlmlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xa2dfd54a dlm_register_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xb1f0a6f1 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 0xeaa2407f dlmlock EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xfb86b96f dlm_errname +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x02d26d32 ocfs2_plock 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 0x2ad02e4c ocfs2_stack_glue_unregister EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4d3af7fa ocfs2_cluster_hangup -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x5e7c621e ocfs2_kset +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x5b34fc1e ocfs2_stack_glue_unregister EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x76f40744 ocfs2_dlm_lvb +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x90467e1f ocfs2_stack_glue_register EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x9507547f ocfs2_cluster_disconnect -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x9abb0dd5 ocfs2_plock -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xa975f47e 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 @@ -17560,11 +17639,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 0xe324be85 ocfs2_kset +EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0x15eb1093 unregister_pstore_device EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0x43cc3d4b pstore_blk_get_config -EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0x7fa28639 unregister_pstore_device -EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0xbfe4202f register_pstore_device -EXPORT_SYMBOL_GPL fs/pstore/pstore_zone 0xafe8d2d0 unregister_pstore_zone -EXPORT_SYMBOL_GPL fs/pstore/pstore_zone 0xe7f04002 register_pstore_zone +EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0xfb69b454 register_pstore_device +EXPORT_SYMBOL_GPL fs/pstore/pstore_zone 0x59960923 register_pstore_zone +EXPORT_SYMBOL_GPL fs/pstore/pstore_zone 0x76d6e927 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 @@ -17589,8 +17669,8 @@ EXPORT_SYMBOL_GPL lib/crypto/libpoly1305 0xfa617389 poly1305_update_generic EXPORT_SYMBOL_GPL lib/crypto/libsm4 0x24e254e8 sm4_expandkey EXPORT_SYMBOL_GPL lib/crypto/libsm4 0xfa81970e sm4_crypt_block -EXPORT_SYMBOL_GPL lib/notifier-error-inject 0xb83d21b5 notifier_err_inject_dir -EXPORT_SYMBOL_GPL lib/notifier-error-inject 0xd2036250 notifier_err_inject_init +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x596216e4 notifier_err_inject_dir +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x6068c962 notifier_err_inject_init EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x1803a6ed raid6_2data_recov EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x2b30f429 raid6_call EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0xe4b051cf raid6_datap_recov @@ -17600,1063 +17680,1064 @@ 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 0x4f3818ad lowpan_header_compress -EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0xcfac658c lowpan_header_decompress -EXPORT_SYMBOL_GPL net/802/garp 0x23e5e78f garp_unregister_application -EXPORT_SYMBOL_GPL net/802/garp 0x2a248ebc garp_init_applicant -EXPORT_SYMBOL_GPL net/802/garp 0x74f8fd33 garp_request_join -EXPORT_SYMBOL_GPL net/802/garp 0xd1dfd606 garp_register_application -EXPORT_SYMBOL_GPL net/802/garp 0xdddd6558 garp_uninit_applicant -EXPORT_SYMBOL_GPL net/802/garp 0xf7847a7e garp_request_leave -EXPORT_SYMBOL_GPL net/802/mrp 0x1b953126 mrp_init_applicant -EXPORT_SYMBOL_GPL net/802/mrp 0x43eac44d mrp_register_application -EXPORT_SYMBOL_GPL net/802/mrp 0x44eabbf2 mrp_request_join -EXPORT_SYMBOL_GPL net/802/mrp 0x8fde4c42 mrp_request_leave -EXPORT_SYMBOL_GPL net/802/mrp 0xcda9ad2c mrp_unregister_application -EXPORT_SYMBOL_GPL net/802/mrp 0xdfa48431 mrp_uninit_applicant -EXPORT_SYMBOL_GPL net/802/stp 0x9f4f886d stp_proto_register -EXPORT_SYMBOL_GPL net/802/stp 0xa12d970d stp_proto_unregister -EXPORT_SYMBOL_GPL net/9p/9pnet 0x182b9435 p9_client_xattrcreate -EXPORT_SYMBOL_GPL net/9p/9pnet 0xf8557a0d p9_client_xattrwalk +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0xdc36081a lowpan_header_compress +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0xf0d3d85a lowpan_header_decompress +EXPORT_SYMBOL_GPL net/802/garp 0x0425b39e garp_register_application +EXPORT_SYMBOL_GPL net/802/garp 0x5078a208 garp_request_leave +EXPORT_SYMBOL_GPL net/802/garp 0x727f2e89 garp_unregister_application +EXPORT_SYMBOL_GPL net/802/garp 0x811397e2 garp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/garp 0x830bfeae garp_init_applicant +EXPORT_SYMBOL_GPL net/802/garp 0xb57b3374 garp_request_join +EXPORT_SYMBOL_GPL net/802/mrp 0x12a539fb mrp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0x3141ddbc mrp_unregister_application +EXPORT_SYMBOL_GPL net/802/mrp 0x3e55ec9b mrp_register_application +EXPORT_SYMBOL_GPL net/802/mrp 0x9732ef85 mrp_request_leave +EXPORT_SYMBOL_GPL net/802/mrp 0xb495e1c3 mrp_request_join +EXPORT_SYMBOL_GPL net/802/mrp 0xd551a688 mrp_init_applicant +EXPORT_SYMBOL_GPL net/802/stp 0x97fd9be8 stp_proto_register +EXPORT_SYMBOL_GPL net/802/stp 0xac47ac7a stp_proto_unregister +EXPORT_SYMBOL_GPL net/9p/9pnet 0xbbe4addd p9_client_xattrcreate +EXPORT_SYMBOL_GPL net/9p/9pnet 0xf0256b6e 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 0x55b43870 ax25_register_pid +EXPORT_SYMBOL_GPL net/ax25/ax25 0x946f9d35 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 0x108fac81 l2cap_chan_connect -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x1ad9af61 bt_debugfs -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x57c5b010 l2cap_chan_create -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x7b4d5bba l2cap_add_psm -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x816eadd7 l2cap_chan_set_defaults -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x87dc3420 l2cap_chan_send -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x9eb3baf9 l2cap_chan_put -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xb2e0c5cc l2cap_chan_list -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xfc15ccee l2cap_chan_del -EXPORT_SYMBOL_GPL net/bluetooth/hidp/hidp 0xcf790e3e hidp_hid_driver -EXPORT_SYMBOL_GPL net/bridge/bridge 0x0a3f23f5 br_fdb_clear_offload -EXPORT_SYMBOL_GPL net/bridge/bridge 0x0b0309f1 br_fdb_find_port -EXPORT_SYMBOL_GPL net/bridge/bridge 0x0f16ffcc nf_br_ops -EXPORT_SYMBOL_GPL net/bridge/bridge 0x1b993c20 br_multicast_has_router_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0x346b8030 br_multicast_list_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0x35bf2727 br_handle_frame_finish -EXPORT_SYMBOL_GPL net/bridge/bridge 0x44ef1b6a br_forward -EXPORT_SYMBOL_GPL net/bridge/bridge 0x4f66abe2 br_multicast_router -EXPORT_SYMBOL_GPL net/bridge/bridge 0x5240d3f3 br_vlan_get_pvid -EXPORT_SYMBOL_GPL net/bridge/bridge 0x56ea6b6c br_get_ageing_time -EXPORT_SYMBOL_GPL net/bridge/bridge 0x5747f938 br_vlan_enabled -EXPORT_SYMBOL_GPL net/bridge/bridge 0x84690197 br_vlan_get_info -EXPORT_SYMBOL_GPL net/bridge/bridge 0x953de3a5 br_multicast_has_querier_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0x9be915f6 br_port_flag_is_set -EXPORT_SYMBOL_GPL net/bridge/bridge 0xa7b3554d br_multicast_has_querier_anywhere -EXPORT_SYMBOL_GPL net/bridge/bridge 0xa8e8d580 br_vlan_get_pvid_rcu -EXPORT_SYMBOL_GPL net/bridge/bridge 0xb3dae138 br_forward_finish -EXPORT_SYMBOL_GPL net/bridge/bridge 0xb5596c18 br_multicast_enabled -EXPORT_SYMBOL_GPL net/bridge/bridge 0xb85a2662 br_vlan_get_proto -EXPORT_SYMBOL_GPL net/bridge/bridge 0xd5df29cd br_port_get_stp_state -EXPORT_SYMBOL_GPL net/bridge/bridge 0xe066538f br_vlan_get_info_rcu -EXPORT_SYMBOL_GPL net/bridge/bridge 0xf272cfd0 br_dev_queue_push_xmit -EXPORT_SYMBOL_GPL net/core/failover 0x19fed72a failover_unregister -EXPORT_SYMBOL_GPL net/core/failover 0x4c67dc9c failover_slave_unregister -EXPORT_SYMBOL_GPL net/core/failover 0x9ceea4ea failover_register -EXPORT_SYMBOL_GPL net/dccp/dccp 0x0e7ad2da dccp_create_openreq_child -EXPORT_SYMBOL_GPL net/dccp/dccp 0x101be1a9 dccp_getsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0x12c5c639 dccp_send_sync +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x01609edb l2cap_chan_del +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x0201af95 bt_debugfs +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x0c18dbd4 l2cap_chan_list +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x7a8ccda6 l2cap_chan_connect +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x9041558f l2cap_chan_set_defaults +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x9de6da11 l2cap_add_psm +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xa49d6e79 l2cap_chan_put +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xac704374 l2cap_chan_create +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xf183f127 l2cap_chan_send +EXPORT_SYMBOL_GPL net/bluetooth/hidp/hidp 0xa29798bf hidp_hid_driver +EXPORT_SYMBOL_GPL net/bridge/bridge 0x342769b7 br_vlan_get_pvid +EXPORT_SYMBOL_GPL net/bridge/bridge 0x3e54e697 br_vlan_get_pvid_rcu +EXPORT_SYMBOL_GPL net/bridge/bridge 0x465a8960 br_vlan_get_proto +EXPORT_SYMBOL_GPL net/bridge/bridge 0x4a6de41c br_multicast_has_router_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x52bf62ce br_fdb_clear_offload +EXPORT_SYMBOL_GPL net/bridge/bridge 0x5a423bba br_multicast_has_querier_anywhere +EXPORT_SYMBOL_GPL net/bridge/bridge 0x5e50950f br_get_ageing_time +EXPORT_SYMBOL_GPL net/bridge/bridge 0x61ec3aad br_port_flag_is_set +EXPORT_SYMBOL_GPL net/bridge/bridge 0x6a4ff74d br_vlan_get_info +EXPORT_SYMBOL_GPL net/bridge/bridge 0x77be5775 nf_br_ops +EXPORT_SYMBOL_GPL net/bridge/bridge 0x7a228200 br_forward +EXPORT_SYMBOL_GPL net/bridge/bridge 0x83eddc5b br_multicast_router +EXPORT_SYMBOL_GPL net/bridge/bridge 0x9244a454 br_dev_queue_push_xmit +EXPORT_SYMBOL_GPL net/bridge/bridge 0x9cf26d68 br_multicast_has_querier_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0xa71c2d70 br_handle_frame_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0xb81fe61d br_vlan_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0xb8d9f051 br_multicast_list_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0xba0a0e61 br_forward_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0xc321f6ae br_port_get_stp_state +EXPORT_SYMBOL_GPL net/bridge/bridge 0xd737bee9 br_vlan_get_info_rcu +EXPORT_SYMBOL_GPL net/bridge/bridge 0xe11a7a8a br_fdb_find_port +EXPORT_SYMBOL_GPL net/bridge/bridge 0xf07915bd br_multicast_enabled +EXPORT_SYMBOL_GPL net/core/failover 0xb4be9977 failover_unregister +EXPORT_SYMBOL_GPL net/core/failover 0xd034d226 failover_register +EXPORT_SYMBOL_GPL net/core/failover 0xdce8594c failover_slave_unregister +EXPORT_SYMBOL_GPL net/dccp/dccp 0x007138d3 dccp_disconnect +EXPORT_SYMBOL_GPL net/dccp/dccp 0x08c20825 dccp_recvmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0x0ba76e4b inet_dccp_listen +EXPORT_SYMBOL_GPL net/dccp/dccp 0x10ce01c3 dccp_setsockopt EXPORT_SYMBOL_GPL net/dccp/dccp 0x182ec2bf dccp_ackvec_parsed_add -EXPORT_SYMBOL_GPL net/dccp/dccp 0x188534f6 dccp_check_req -EXPORT_SYMBOL_GPL net/dccp/dccp 0x1a87a0ef dccp_child_process -EXPORT_SYMBOL_GPL net/dccp/dccp 0x24d36342 dccp_disconnect -EXPORT_SYMBOL_GPL net/dccp/dccp 0x25dee7d6 dccp_feat_signal_nn_change -EXPORT_SYMBOL_GPL net/dccp/dccp 0x357c8474 dccp_setsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0x35e3427e dccp_set_state -EXPORT_SYMBOL_GPL net/dccp/dccp 0x3aca2965 dccp_destroy_sock -EXPORT_SYMBOL_GPL net/dccp/dccp 0x3ba87338 dccp_close -EXPORT_SYMBOL_GPL net/dccp/dccp 0x40de0dca dccp_sync_mss +EXPORT_SYMBOL_GPL net/dccp/dccp 0x2487f92b dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x29be82ce dccp_close +EXPORT_SYMBOL_GPL net/dccp/dccp 0x30556404 dccp_init_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x36c8c52d dccp_ioctl +EXPORT_SYMBOL_GPL net/dccp/dccp 0x433c11c4 dccp_check_req +EXPORT_SYMBOL_GPL net/dccp/dccp 0x46fba2f7 dccp_set_state +EXPORT_SYMBOL_GPL net/dccp/dccp 0x47187bb3 dccp_feat_signal_nn_change EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4edc8e1a dccp_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4e3faad4 dccp_rcv_established +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5398e849 dccp_done EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics -EXPORT_SYMBOL_GPL net/dccp/dccp 0x5aa0f1b0 dccp_reqsk_send_ack -EXPORT_SYMBOL_GPL net/dccp/dccp 0x6836570d dccp_feat_nn_get +EXPORT_SYMBOL_GPL net/dccp/dccp 0x609da1a3 dccp_make_response +EXPORT_SYMBOL_GPL net/dccp/dccp 0x6157896d dccp_destroy_sock EXPORT_SYMBOL_GPL net/dccp/dccp 0x722630de dccp_hashinfo +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7db9013d dccp_send_sync EXPORT_SYMBOL_GPL net/dccp/dccp 0x80993155 dccp_timestamp EXPORT_SYMBOL_GPL net/dccp/dccp 0x86be7924 dccp_packet_name EXPORT_SYMBOL_GPL net/dccp/dccp 0x884a32bd dccp_death_row -EXPORT_SYMBOL_GPL net/dccp/dccp 0x8c629141 dccp_rcv_established -EXPORT_SYMBOL_GPL net/dccp/dccp 0x8d4bf94d dccp_parse_options -EXPORT_SYMBOL_GPL net/dccp/dccp 0x8e8f93b9 dccp_rcv_state_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0x897bd421 dccp_reqsk_init +EXPORT_SYMBOL_GPL net/dccp/dccp 0x8a954d1f dccp_reqsk_send_ack EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup -EXPORT_SYMBOL_GPL net/dccp/dccp 0x98dec903 dccp_make_response -EXPORT_SYMBOL_GPL net/dccp/dccp 0xa4370140 dccp_reqsk_init -EXPORT_SYMBOL_GPL net/dccp/dccp 0xa946de03 dccp_ioctl -EXPORT_SYMBOL_GPL net/dccp/dccp 0xab427b09 dccp_sendmsg -EXPORT_SYMBOL_GPL net/dccp/dccp 0xb625b5e1 dccp_init_sock -EXPORT_SYMBOL_GPL net/dccp/dccp 0xbce4de23 dccp_insert_option -EXPORT_SYMBOL_GPL net/dccp/dccp 0xbe77c47e dccp_recvmsg -EXPORT_SYMBOL_GPL net/dccp/dccp 0xc0a63261 dccp_ctl_make_reset -EXPORT_SYMBOL_GPL net/dccp/dccp 0xc5436905 dccp_done -EXPORT_SYMBOL_GPL net/dccp/dccp 0xd07e5d7f dccp_shutdown -EXPORT_SYMBOL_GPL net/dccp/dccp 0xd2370422 dccp_poll +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9c389934 dccp_feat_nn_get +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa169b80d dccp_sync_mss +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa1d52e38 dccp_ctl_make_reset +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa4d2f412 dccp_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0xad4c678b dccp_poll +EXPORT_SYMBOL_GPL net/dccp/dccp 0xb0d3c755 dccp_create_openreq_child +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc928e692 dccp_insert_option +EXPORT_SYMBOL_GPL net/dccp/dccp 0xcaa7a3ef dccp_child_process EXPORT_SYMBOL_GPL net/dccp/dccp 0xd75b7072 dccp_orphan_count -EXPORT_SYMBOL_GPL net/dccp/dccp 0xda16bd9d inet_dccp_listen -EXPORT_SYMBOL_GPL net/dccp/dccp 0xf88ac07c dccp_connect -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x26f2700e dccp_v4_conn_request -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x2959d082 dccp_invalid_packet -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x37f9930c dccp_v4_connect -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x786a3f77 dccp_v4_request_recv_sock -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xceeb8ca3 dccp_v4_do_rcv -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xd772cf56 dccp_v4_send_check -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x0821b292 dsa_tag_8021q_bridge_tx_fwd_offload -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x0e29f3ce dsa_devlink_params_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x11dd8217 dsa_port_get_ethtool_phy_stats -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x18047b99 dsa_devlink_resource_occ_get_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x38559470 dsa_port_phylink_mac_change -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x3f388f5d dsa_devlink_params_unregister +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd9c9af45 dccp_shutdown +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe574e37d dccp_parse_options +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe9f326dd dccp_connect +EXPORT_SYMBOL_GPL net/dccp/dccp 0xed5c6fc5 dccp_rcv_state_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf5973568 dccp_sendmsg +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x335ea8f3 dccp_invalid_packet +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x43b5aeb6 dccp_v4_do_rcv +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x513fae7b dccp_v4_connect +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x5b3a085e dccp_v4_request_recv_sock +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x9dd8c6b2 dccp_v4_send_check +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xbfb70792 dccp_v4_conn_request +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x0c9a6766 dsa_switch_suspend +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x1cff5b59 dsa_dev_to_net_device +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x259d5c27 dsa_8021q_xmit +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x2e802b9d dsa_devlink_port_region_create +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x327a0098 dsa_devlink_params_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x35080b15 dsa_devlink_param_set +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x360e518c dsa_devlink_resources_unregister EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x417d1fed dsa_8021q_rx_switch_id -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x4535b9fc dsa_register_switch -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x47e1e41c dsa_devlink_resources_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x49364b5b dsa_devlink_port_region_create -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x49c2a388 dsa_enqueue_skb -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x4b00810b dsa_port_get_phy_sset_count -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x551c21db dsa_8021q_rcv -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x5730c0e9 dsa_tag_drivers_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x428e01ea dsa_devlink_resource_occ_get_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x48cbfc60 dsa_port_get_ethtool_phy_stats +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x4c15cd91 dsa_tag_drivers_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x4f854420 dsa_switch_resume EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x5928bba7 vid_is_dsa_8021q_rxvlan -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x6c3c262b dsa_tag_8021q_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x8226b025 dsa_switch_suspend -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x82bc8196 dsa_8021q_rx_vid -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x8afe1988 dsa_devlink_region_create -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x8e3757e7 dsa_switch_resume -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x95bbec83 dsa_devlink_param_get +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x59738856 dsa_devlink_region_create +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x6cdbdd19 dsa_port_phylink_mac_change +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x740cac9c dsa_tag_8021q_bridge_tx_fwd_unoffload +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x7483a9c8 dsa_switch_shutdown +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x938416f9 dsa_devlink_param_get +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x95213f59 dsa_switch_find EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x9e59271d dsa_8021q_rx_source_port -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xa1655eec dsa_switch_shutdown -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xadce8275 dsa_8021q_tx_vid -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xb64b92e7 dsa_tag_8021q_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xb77a5ea8 dsa_port_from_netdev +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xa889290d dsa_register_switch +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xac416738 dsa_8021q_rcv +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xbb5e8f3a dsa_unregister_switch EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xbe3856fc dsa_8021q_bridge_tx_fwd_offload_vid +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xbfc7f050 dsa_slave_dev_check +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc106cc18 dsa_8021q_rx_vid EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc23e8d5f dsa_devlink_region_destroy -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc5d5d817 dsa_switch_find -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc8a5b0a5 dsa_tag_8021q_bridge_tx_fwd_unoffload -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xca62f3e0 dsa_slave_dev_check -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xd06f1f42 dsa_unregister_switch -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xd973e51c dsa_devlink_resource_occ_get_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xe3ed650b dsa_8021q_xmit -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xe6175f3d dsa_devlink_resource_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xe7908737 dsa_dev_to_net_device -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xe810bbc9 dsa_tag_drivers_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xebcee3da dsa_port_get_phy_strings +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc7ef027b dsa_devlink_resource_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc8e24bb3 dsa_port_from_netdev +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xd7029b05 dsa_devlink_params_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xda88f8e0 dsa_devlink_resource_occ_get_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xe6da9f73 dsa_port_get_phy_sset_count +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xe7e04d3f dsa_tag_8021q_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xe877ad07 dsa_tag_8021q_bridge_tx_fwd_offload +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xeb354eff dsa_port_get_phy_strings +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf0b58c66 dsa_tag_drivers_unregister EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf13e1803 vid_is_dsa_8021q EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf6f3b5c8 vid_is_dsa_8021q_txvlan -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xfa24ea31 dsa_devlink_param_set -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x158fc105 ieee802154_hdr_push -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x1c58cf0b ieee802154_hdr_peek -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x43147e0f ieee802154_hdr_peek_addrs +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xfa03e20d dsa_8021q_tx_vid +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xfc3c55ee dsa_enqueue_skb +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xfef9f240 dsa_tag_8021q_register +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x15d5333d ieee802154_hdr_peek_addrs EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x87e2553b ieee802154_max_payload -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xb4e21b96 ieee802154_hdr_pull +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xab67c24b ieee802154_hdr_pull +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xbea2f1ec ieee802154_hdr_peek +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xfac78fcb ieee802154_hdr_push +EXPORT_SYMBOL_GPL net/ife/ife 0x273d7d72 ife_decode +EXPORT_SYMBOL_GPL net/ife/ife 0x4267a1bf 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 0x7adb9dae ife_decode -EXPORT_SYMBOL_GPL net/ife/ife 0xe64f1e79 ife_encode EXPORT_SYMBOL_GPL net/ife/ife 0xe7888e98 ife_tlv_meta_encode -EXPORT_SYMBOL_GPL net/ipv4/esp4 0x39cdd2e6 esp_input_done2 -EXPORT_SYMBOL_GPL net/ipv4/esp4 0x45144029 esp_output_head -EXPORT_SYMBOL_GPL net/ipv4/esp4 0x5597089e esp_output_tail -EXPORT_SYMBOL_GPL net/ipv4/gre 0xcd3e8476 gre_add_protocol -EXPORT_SYMBOL_GPL net/ipv4/gre 0xe6d4126b gre_del_protocol -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x28f48eda inet_diag_bc_sk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x3b4da0df inet_diag_msg_common_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x7068d1e0 inet_diag_dump_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x72a9ee21 inet_diag_register -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x7caf1dbd inet_diag_msg_attrs_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x880ba65b inet_sk_diag_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xc53debab inet_diag_dump_one_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xd6fe1208 inet_diag_find_one_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xde7b3b3d inet_diag_unregister -EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0x4d37430d gretap_fb_dev_create -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x02403a16 ip_tunnel_changelink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x0a36946f ip_md_tunnel_xmit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x17901d27 ip_tunnel_init -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x25892a89 ip_tunnel_lookup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x2e8a97e2 ip_tunnel_init_net -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x5527391a ip_tunnel_dellink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x5b17f4fd ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x62cea232 ip_tunnel_rcv -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x6b8a2fc7 ip_tunnel_delete_nets -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x7b1661b7 ip_tunnel_newlink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xab2fbc13 __ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xbe50e557 ip_tunnel_setup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xc561f7e6 ip_tunnel_encap_setup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xd1d40838 ip_tunnel_siocdevprivate -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xd8746a31 ip_tunnel_xmit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xd8e11581 ip_tunnel_ctl -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xf64c6fa5 ip_tunnel_uninit -EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0x17b748cc arpt_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0x8d8567e1 ipt_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x2fce1f90 nf_defrag_ipv4_enable -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x96f20ac6 nf_defrag_ipv4_disable -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0xd115f8c6 nf_dup_ipv4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x16f4c199 nf_reject_ip_tcphdr_get -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x24e0f75e nf_reject_ip_tcphdr_put -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x2c0d38c0 nf_reject_skb_v4_unreach -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x351c9dac nf_send_reset -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xbcd50638 nf_reject_skb_v4_tcp_reset -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xc21a98d8 nf_send_unreach -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xc8a83abd nf_reject_iphdr_put -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_socket_ipv4 0xe1ca751d nf_sk_lookup_slow_v4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x3882e424 nf_tproxy_get_sock_v4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x5173dea4 nf_tproxy_handle_time_wait4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x77b6e08c nf_tproxy_laddr4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0x2e28f506 nft_fib4_eval_type -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0xaf5046e8 nft_fib4_eval -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x007623b6 tcp_vegas_get_info -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x1c7c4147 tcp_vegas_cwnd_event -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xb2f0a8a4 tcp_vegas_init -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xc70af335 tcp_vegas_state -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xed1efe6b tcp_vegas_pkts_acked -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x30c0d311 udp_tun_rx_dst -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x6f12ad47 udp_tunnel_drop_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x71cb0931 udp_tunnel_xmit_skb -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x916b0d6d udp_tunnel_notify_del_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x956a6cc3 udp_tunnel_sock_release -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xb3f0696f udp_tunnel_push_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xcd6225a7 udp_tunnel_notify_add_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xf8a1f96c setup_udp_tunnel_sock -EXPORT_SYMBOL_GPL net/ipv6/esp6 0x61b0eb37 esp6_input_done2 -EXPORT_SYMBOL_GPL net/ipv6/esp6 0x682523f4 esp6_output_head -EXPORT_SYMBOL_GPL net/ipv6/esp6 0x98b642eb esp6_output_tail -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x31ea5de7 ip6_tnl_encap_setup -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x4735975d ip6_tnl_xmit_ctl -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x767006a8 ip6_tnl_rcv_ctl -EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x4cc378ba udp_tunnel6_xmit_skb -EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x7c3ff090 udp_sock_create6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0x94de3756 ip6t_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x3d8549b1 nf_defrag_ipv6_disable -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x97d067c0 nf_ct_frag6_gather -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xa1ff8079 nf_defrag_ipv6_enable -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0x059fcdb9 nf_dup_ipv6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x1c5bec17 nf_reject_ip6hdr_put -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x486ff4b5 nf_reject_ip6_tcphdr_put -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x773741de nf_reject_skb_v6_unreach -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xa63b56d1 nf_reject_skb_v6_tcp_reset -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xbe5a8362 nf_send_unreach6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xc8c7fc04 nf_reject_ip6_tcphdr_get -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xfe2986d2 nf_send_reset6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_socket_ipv6 0x66add474 nf_sk_lookup_slow_v6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x4a9e4896 nf_tproxy_get_sock_v6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x9fd82c6c nf_tproxy_laddr6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0xe006f0dd nf_tproxy_handle_time_wait6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0xecf78691 nft_fib6_eval -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0xf020ca03 nft_fib6_eval_type -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x072744b2 l2tp_tunnel_inc_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x2dee916f l2tp_session_dec_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x40573574 l2tp_tunnel_get_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x49c6e70c l2tp_session_get_by_ifname -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x4a7051d1 l2tp_tunnel_get_session -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x62341ae4 l2tp_session_get_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x68b0d16a l2tp_udp_encap_recv -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x699517dc l2tp_session_set_header_len -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x69fe9af2 l2tp_xmit_skb -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x87eec2d0 l2tp_session_inc_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x897f24a1 l2tp_tunnel_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb7ef30ac l2tp_tunnel_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xc130ea67 l2tp_tunnel_register -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xc248b610 l2tp_session_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xcd664ff7 l2tp_tunnel_get -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd19ddd99 l2tp_session_get -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd319ffe8 l2tp_session_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xe2acd094 l2tp_session_register -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xe8433496 l2tp_sk_to_tunnel -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf796bb24 l2tp_tunnel_dec_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xfe540369 l2tp_recv_common -EXPORT_SYMBOL_GPL net/l2tp/l2tp_ip 0xfc399c17 l2tp_ioctl +EXPORT_SYMBOL_GPL net/ipv4/esp4 0x6ef8e032 esp_output_head +EXPORT_SYMBOL_GPL net/ipv4/esp4 0x9ce22909 esp_output_tail +EXPORT_SYMBOL_GPL net/ipv4/esp4 0xee158bed esp_input_done2 +EXPORT_SYMBOL_GPL net/ipv4/gre 0x1d5994e3 gre_add_protocol +EXPORT_SYMBOL_GPL net/ipv4/gre 0x29fb8eff gre_del_protocol +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x3a782bd4 inet_diag_dump_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x43289bfd inet_diag_msg_common_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x54dd5f4c inet_diag_dump_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x82d93557 inet_diag_bc_sk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x92d1e352 inet_sk_diag_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x98490b58 inet_diag_find_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x9fd3c678 inet_diag_register +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xa1df6bb3 inet_diag_unregister +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xddd68e24 inet_diag_msg_attrs_fill +EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0x3ee87439 gretap_fb_dev_create +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x0cb79f02 ip_tunnel_lookup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x14352588 ip_tunnel_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x1dec8f40 ip_tunnel_encap_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x24f0032a ip_tunnel_init +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x405a8e5a ip_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x44c236f9 __ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x5a242e01 ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x7622f8fe ip_tunnel_newlink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x78d2d6c2 ip_tunnel_rcv +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x803c0d8b ip_tunnel_siocdevprivate +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xbb8f5d80 ip_tunnel_delete_nets +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xbfba4bbe ip_tunnel_ctl +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xc21778b3 ip_tunnel_changelink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xc4cbf107 ip_tunnel_uninit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xc4fc2e0c ip_tunnel_dellink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xcb0ca981 ip_md_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xe938d068 ip_tunnel_init_net +EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0xa386e6d5 arpt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0xb4797a65 ipt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x23b7faff nf_defrag_ipv4_disable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0xff761037 nf_defrag_ipv4_enable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0x33a4a75d nf_dup_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x316aef9c nf_send_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x34088f0d nf_reject_skb_v4_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x569256ca nf_reject_ip_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x58b57188 nf_reject_iphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xbf4be758 nf_reject_skb_v4_tcp_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xc2b47460 nf_send_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xeef75fcf nf_reject_ip_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_socket_ipv4 0xbfde326c nf_sk_lookup_slow_v4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x84f6d406 nf_tproxy_laddr4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x85a081c8 nf_tproxy_handle_time_wait4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0xa97f94cd nf_tproxy_get_sock_v4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0x172c480e nft_fib4_eval_type +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0xf216e5a3 nft_fib4_eval +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x2d8191e8 tcp_vegas_get_info +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x304c4817 tcp_vegas_cwnd_event +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x56a44ffa tcp_vegas_init +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xa77cd427 tcp_vegas_pkts_acked +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xa803464e tcp_vegas_state +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x403db120 udp_tunnel_xmit_skb +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x85889e91 udp_tunnel_drop_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x9c5e7d32 udp_tun_rx_dst +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xa1d55747 udp_tunnel_notify_del_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xb3a8625e udp_tunnel_notify_add_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xd9fad3b5 udp_tunnel_push_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xe29660a7 setup_udp_tunnel_sock +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xe6fc517a udp_tunnel_sock_release +EXPORT_SYMBOL_GPL net/ipv6/esp6 0x30aabdb0 esp6_output_head +EXPORT_SYMBOL_GPL net/ipv6/esp6 0x70ee9c11 esp6_input_done2 +EXPORT_SYMBOL_GPL net/ipv6/esp6 0xee2ba31c esp6_output_tail +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x0aaea91c ip6_tnl_encap_setup +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xdab3aa28 ip6_tnl_xmit_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xeb0fbfb6 ip6_tnl_rcv_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x6bd83d6b udp_tunnel6_xmit_skb +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x70b742c8 udp_sock_create6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0x614f4ae2 ip6t_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x826bcc28 nf_defrag_ipv6_enable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x8f8481a6 nf_defrag_ipv6_disable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xca6c5666 nf_ct_frag6_gather +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0x9de793d6 nf_dup_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x022f5234 nf_send_unreach6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x17f20802 nf_reject_ip6_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x76b8b571 nf_reject_ip6hdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x882c1551 nf_reject_skb_v6_unreach +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xaa1b933c nf_reject_ip6_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xb0ab9777 nf_reject_skb_v6_tcp_reset +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xd1d79f2e nf_send_reset6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_socket_ipv6 0x38b99305 nf_sk_lookup_slow_v6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x3c78961b nf_tproxy_laddr6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x99957afa nf_tproxy_get_sock_v6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0xb69db0b4 nf_tproxy_handle_time_wait6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0x8be57762 nft_fib6_eval +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0xdb09c644 nft_fib6_eval_type +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x0a73f440 l2tp_session_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x0bb0b4ee l2tp_sk_to_tunnel +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x0c934262 l2tp_tunnel_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x0ce506d6 l2tp_session_get +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x1060e288 l2tp_tunnel_get +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x22325481 l2tp_recv_common +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x32aa01d8 l2tp_session_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x49c5c205 l2tp_session_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x5debd362 l2tp_session_register +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x610b66f0 l2tp_tunnel_get_session +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x82ab8d1c l2tp_xmit_skb +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x868089c7 l2tp_tunnel_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x9bb01257 l2tp_tunnel_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x9f89c259 l2tp_session_get_by_ifname +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xa6400b91 l2tp_session_inc_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xa831cdd7 l2tp_tunnel_register +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb28138cf l2tp_tunnel_inc_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xc983358e l2tp_session_dec_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd88a9472 l2tp_session_set_header_len +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf6eb5927 l2tp_udp_encap_recv +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xfb7e7e54 l2tp_tunnel_dec_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_ip 0x05f7d0ee l2tp_ioctl EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops -EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x5bd2a47a l2tp_nl_register_ops -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x182ec97c ieee80211_resume_disconnect -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x1e2d4bd6 ieee80211_iter_chan_contexts_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x282de526 ieee80211_calc_tx_airtime -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x30101066 ieee80211_color_change_finish -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x4f4c0889 ieee80211_ready_on_channel -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x4f8d7e49 ieee80211_find_sta_by_ifaddr +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0xa64cf6ef l2tp_nl_register_ops +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x0414ab2b ieee80211_remain_on_channel_expired +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x09776155 ieee80211_iterate_stations_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x19f9f367 wdev_to_ieee80211_vif +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x1d638d31 ieee80211_calc_tx_airtime +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x2877f7ba ieeee80211_obss_color_collision_notify +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x3ba9c8a2 ieee80211_ave_rssi +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x5057b0d3 ieee80211_color_change_finish +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x511a5b0d ieee80211_ready_on_channel EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x5250cf98 ieee80211_tkip_add_iv +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x53f0d198 ieee80211_resume_disconnect EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x59c13bed ieee80211_key_mic_failure -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x5dd0222f ieee80211_iterate_active_interfaces_mtx -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7e72465f ieee80211_gtk_rekey_notify -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7e842f39 ieee80211_remain_on_channel_expired -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x947238ed ieee80211_update_mu_groups -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x99bd4c4f wdev_to_ieee80211_vif +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x5e55ffed ieee80211_gtk_rekey_notify +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x6f33d350 ieee80211_iter_chan_contexts_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7acc8b35 ieee80211_find_sta_by_ifaddr +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7afb2139 ieee80211_vif_to_wdev +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7d1f3c1f ieee80211_iterate_interfaces +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x95333145 ieee80211_iterate_active_interfaces_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x97ed36f8 ieee80211_update_mu_groups EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xa1247034 ieee80211_remove_key -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xa444bc00 ieeee80211_obss_color_collision_notify +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xa16888bc ieee80211_gtk_rekey_add +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xa2d83b92 ieee80211_request_smps EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xa4b2b77e ieee80211_key_replay -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xa5f75204 ieee80211_iterate_active_interfaces_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xb64ac594 ieee80211_iterate_stations_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xbcc44a61 ieee80211_ave_rssi -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xc697b8f2 ieee80211_iterate_interfaces -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd747d2c8 ieee80211_vif_to_wdev +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xc66031ac ieee80211_calc_rx_airtime +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xcb699cee ieee80211_iterate_active_interfaces_mtx EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd8e09da4 ieee80211_set_key_rx_seq -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xe7de1a19 ieee80211_gtk_rekey_add -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf019a4c1 ieee80211_request_smps -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf57e0a08 ieee80211_calc_rx_airtime -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x38bf8347 mpls_output_possible -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x4f94a67e mpls_stats_inc_outucastpkts -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x6e21898f mpls_pkt_too_big -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x74263eb3 mpls_dev_mtu +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x07560b4e mpls_pkt_too_big EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x7670b536 nla_get_labels -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xe4ff838f nla_put_labels -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x1966abfa ip_set_del +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x800fbd8c nla_put_labels +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x85559a69 mpls_stats_inc_outucastpkts +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x92afbb0a mpls_dev_mtu +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xdcdb94fe mpls_output_possible +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x037705c1 ip_set_elem_len +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x1091f926 ip_set_get_byname +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x10fbc1be ip_set_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x2236175b 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 0x33631c01 ip_set_type_unregister +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x2e21d70b ip_set_del EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x46da1f54 ip_set_test -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x4b784ce8 ip_set_type_register -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x56a291c7 ip_set_add -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x5a1aa55e ip_set_nfnl_get_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x676d2b1c ip_set_nfnl_put +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x3bd9280f ip_set_nfnl_put +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x4e190aec ip_set_get_ip4_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x5e594e1a ip_set_name_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x5f91f2a8 ip_set_nfnl_get_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x611e0bc2 ip_set_init_comment +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x781e8446 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 0x7bf8bbfb 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 0x8a66b019 ip_set_get_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x8d94bda5 ip_set_elem_len -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x950f1287 ip_set_get_byname -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x96b16a35 ip_set_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9a1c0da2 ip_set_match_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9121f4b8 ip_set_put_byindex EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9e98722b ip_set_get_ipaddr6 EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa293f8a6 ip_set_get_ipaddr4 -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa91c6971 ip_set_init_comment -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xb61a1004 ip_set_put_flags -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xd540b572 ip_set_put_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xd9d8b3d8 ip_set_get_ip4_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xdfb6a2e8 ip_set_name_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf39f3b0f ip_set_put_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xaca8f80e ip_set_get_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xc0bbad40 ip_set_put_flags +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xc134be79 ip_set_get_ip6_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xce0a1639 ip_set_put_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xcfe0c093 ip_set_type_register +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xd0f65c31 ip_set_add EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf3b4d4ae ip_set_alloc -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x20cfbed2 ip_vs_conn_out_get_proto -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x6493fc86 unregister_ip_vs_pe -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x8efe3784 ip_vs_conn_in_get_proto -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xefe8772c register_ip_vs_pe -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x14c2f708 nf_conncount_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x3f2842c1 nf_conncount_gc_list +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xfa489e8a ip_set_test +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x44e67d09 ip_vs_conn_in_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x4533024c register_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xb30c5905 ip_vs_conn_out_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xdfac8d01 unregister_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x1624af1d nf_conncount_init EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x3ff55ad3 nf_conncount_cache_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x64398171 nf_conncount_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x52bec16c nf_conncount_count +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x6d6e376d nf_conncount_destroy EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x8c4cb9c3 nf_conncount_list_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xc71d65bc nf_conncount_count -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xe8fc0d9a nf_conncount_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x03376430 nf_ct_helper_expectfn_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x04202a40 nf_ct_delete -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x06347d60 nf_conntrack_helper_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x06f33eb8 nf_ct_acct_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0809222a nf_ct_helper_expectfn_find_by_name -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x09cb1997 __nf_conntrack_confirm -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0baa2327 nf_connlabels_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x90419cf9 nf_conncount_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xa454f114 nf_conncount_gc_list +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x00ded4fb nf_conntrack_count +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x01863cec nf_ct_unlink_expect_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x036a11f0 nf_conntrack_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x04d307ed nf_ct_extend_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x09c713af nf_ct_acct_add EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0bc00f80 nf_nat_helper_try_module_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0e2bddb2 nf_conntrack_helper_try_module_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0eb61217 nf_ct_tcp_seqadj_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x10ba26e9 __nf_conntrack_helper_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x11975a3f nf_ct_helper_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x15deb825 nf_ct_expect_related_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1dbef0d4 nf_conntrack_hash_check_insert -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x21bd18c6 nf_conntrack_tuple_taken -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x23361a0d nf_ct_l4proto_log_invalid +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0efdf465 nf_conntrack_in +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x10f3d13b nf_ct_get_id +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x176f7aa5 nf_ct_netns_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x18654fbd nf_ct_helper_expectfn_find_by_name +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1fc3c212 nf_ct_tmpl_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x26f0b09a nf_ct_expect_related_report 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 0x32a37f2e nf_ct_expect_iterate_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3346bab6 nf_ct_port_tuple_to_nlattr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3ece9a34 nf_ct_helper_log -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4098f81b nf_conntrack_helpers_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4176d856 nf_ct_deliver_cached_events -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x44ad2c4d nf_ct_seq_offset -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x44d90434 nf_ct_tmpl_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x47844c43 nf_conntrack_helpers_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4992be85 nf_ct_destroy_timeout -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x545a5565 nf_ct_timeout_put_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x564655ad nf_nat_helper_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5c620337 nf_nat_helper_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x61a27dca nf_conntrack_helper_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x621d75c5 nf_connlabels_replace -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x62634d59 nf_conntrack_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x66c5dcfd nf_conntrack_alter_reply +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x292e3d14 nf_ct_set_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2c284b90 nf_ct_deliver_cached_events +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x32014dc3 nf_ct_untimeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x387ed20b nf_conntrack_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3aaf4210 nf_ct_helper_expectfn_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x401d21d5 nf_nat_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4379f7f9 nf_ct_gre_keymap_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x43b035dc nf_ct_bridge_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x43fc20db nf_conntrack_hash_check_insert +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4480f4c4 nf_ct_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x48bcb011 nf_ct_get_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4b7e4e3e nf_ct_tcp_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4d979ff3 __nf_conntrack_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x639d229a nf_ct_seq_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x65bf4702 nf_ct_helper_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x65fc0f3f nf_ct_remove_expectations +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x68005000 nf_ct_tmpl_alloc EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x693c3961 nf_ct_helper_hash -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x711b25db nf_ct_helper_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7368df69 nf_ct_iterate_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7571ceb6 nf_nat_helper_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x78b072d0 nf_ct_netns_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x78d2bd3d nf_ct_timeout_find_get_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x79b9cf4d nf_conntrack_unregister_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7b609f4c nf_ct_remove_expect -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7c08f413 __nf_ct_refresh_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7c631571 nf_conntrack_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7f1a943a nf_ct_expect_iterate_net -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x80238149 nf_conntrack_register_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x80949ee9 nf_ct_unexpect_related -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x813e3969 nf_connlabels_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x824efef2 nf_ct_expect_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x838bed52 nf_ct_gre_keymap_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x86a73a5e nf_ct_get_tuplepr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8c6ce2ad nf_ct_seq_adjust -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8cc9f54a nf_conntrack_eventmask_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8d5ce1bd nf_ct_gre_keymap_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x699e598d nf_ct_l4proto_log_invalid +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6ceb3b6f nf_ct_kill_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6cefee87 nf_ct_destroy_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6e439706 nf_ct_unconfirmed_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x73d84c45 nf_ct_netns_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7c1ff9c5 __nf_conntrack_helper_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x80dfbad2 nf_ct_expect_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x87706585 nf_ct_seqadj_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x89375a3d nf_nat_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x89d59280 nf_ct_delete +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ebb0166 nf_ct_timeout_find_get_hook EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ffe7e89 nf_conntrack_htable_size -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9a1e8deb nf_conntrack_in +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9016253f nf_conntrack_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x93760ac4 nf_nat_helper_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x950d2de3 nf_ct_extend_unregister EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9adb7399 nf_conntrack_expect_lock -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa5dad894 nf_ct_tmpl_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa65ec9e0 nf_conntrack_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa7e2f657 nf_ct_bridge_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xaad3b1b0 nf_ct_kill_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xaaf1f2fd nf_ct_seqadj_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xaaf3fc48 nf_ct_helper_expectfn_find_by_symbol +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9ade160a nf_ct_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9b37d497 nf_conntrack_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9b512d6c nf_ct_helper_log +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9fc68142 nf_conntrack_helper_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9fdc8d82 nf_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9ffbe8e0 nf_ct_seq_offset +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa4e14794 nf_ct_iterate_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa73334f6 nf_connlabels_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa7f0ed1c nf_ct_helper_expectfn_find_by_symbol +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa8fe31cc nf_conntrack_alter_reply +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xab3a37ae nf_ct_expect_alloc EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xaf0847f0 nf_conntrack_locks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xaf22fe54 nf_conntrack_register_notifier EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xafbd6cf5 nf_ct_port_nlattr_to_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb0cda6e7 nf_ct_iterate_cleanup_net -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb43317b7 nf_ct_remove_expectations -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb7efa398 nf_ct_netns_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb29f4c5e nf_conntrack_helpers_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb46accce __nf_ct_refresh_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb635301e nf_ct_bridge_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbd8af8c1 nf_ct_expect_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbd94fb02 nf_conntrack_tuple_taken +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbdab89b6 nf_conntrack_eventmask_report EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc18ac88d nf_ct_expect_hsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc1f27b15 nf_ct_extend_unregister EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc40f284c nf_ct_helper_hsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc80c8544 nf_ct_untimeout -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcbdf4606 nf_ct_get_id -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcbecafc1 nf_conntrack_count -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcf1ed0da nf_ct_seqadj_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd2527b42 nf_ct_expect_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd4963b82 __nf_ct_expect_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc5f8a93e nf_ct_iterate_cleanup_net +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc608cdd3 nf_conntrack_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc812ee65 nf_ct_helper_expectfn_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xca8ab966 nf_ct_timeout_put_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xccea852f nf_ct_expect_iterate_net +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcefe68df nf_ct_port_tuple_to_nlattr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd1ea425b nf_ct_remove_expect EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd505c3e0 nf_ct_port_nlattr_tuple_size -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd925ce8c nf_ct_bridge_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd98b054f nf_ct_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd78a14b7 nf_connlabels_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd9fa749e nf_ct_unexpect_related EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdba7326b nf_conntrack_lock -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdbed9b55 nf_conntrack_helper_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdd67f590 nf_ct_extend_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdc72b8dd nf_ct_gre_keymap_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdef43994 nf_conntrack_helpers_unregister EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdf0aed48 nf_ct_port_nla_policy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe106a221 nf_ct_unlink_expect_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe5e95d6d nf_ct_helper_expectfn_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe62caaff __nf_ct_try_assign_helper -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe6325bfe nf_confirm -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe8532309 nf_ct_expect_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xea992223 nf_ct_unconfirmed_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe0e54c6e nf_l4proto_log_invalid +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe6965233 nf_ct_set_auto_assign_helper_warned +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe86ac316 nf_conntrack_helper_try_module_get EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xec8beba6 nf_ct_expect_hash -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xef202ca5 nf_ct_set_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xeefea40d nf_ct_expect_iterate_destroy EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf52e8d4a nf_l4proto_log_invalid -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf9179ec3 nf_ct_expect_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf922971a __nf_ct_try_assign_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf967fce1 nf_connlabels_replace +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfb7cee18 nf_ct_helper_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfc894039 nf_ct_expect_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfd5379a2 nf_conntrack_helper_register EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfe731af8 nf_ct_invert_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0x80b92eff nf_nat_amanda_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0x78f6d3e5 nf_conntrack_broadcast_help -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0x7e33ac78 nf_nat_ftp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x02d8ecf6 set_sig_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x1e372832 nat_callforwarding_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x2fb091f4 set_h245_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x37add8bc nat_rtp_rtcp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x649e20cd set_h225_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x790ab4f8 get_h225_addr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xaa535533 nat_h245_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xb996341a set_ras_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xbdd7f1fd nat_q931_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xe6b0b179 nat_t120_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0x2d536f7c nf_nat_irc_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x0f5d2ecc nf_nat_pptp_hook_exp_gre -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x2151c44d nf_nat_pptp_hook_outbound -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x28bfc606 nf_nat_pptp_hook_inbound -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xd8c87b19 nf_nat_pptp_hook_expectfn -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x0a2b415f ct_sip_parse_numerical_param -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x919bc193 ct_sip_parse_request -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xbb7cb2a3 ct_sip_get_header -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xc1dfc296 ct_sip_parse_header_uri -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xd40a71db ct_sip_parse_address_param -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xd9bd779f ct_sip_get_sdp_header -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xf62d049f nf_nat_sip_hooks -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0xb5b503f2 nf_nat_snmp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0xa475de8e nf_nat_tftp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x067a665e nf_dup_netdev_egress -EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x0bdde689 nf_fwd_netdev_egress -EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x671fe90c nft_fwd_dup_netdev_offload -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x0972dfdb nf_flow_table_cleanup -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x0e9454b5 flow_offload_teardown -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x1a4a1745 flow_offload_free -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x1fad9179 nf_flow_rule_route_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x288ec5d0 nf_flow_table_init -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x2a332143 nf_flow_dnat_port -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x353984d9 nf_flow_offload_ipv6_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x3fd4095d flow_offload_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x454003f3 flow_offload_add -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x4ca49cf7 nf_flow_offload_ip_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x5722faf2 flow_offload_route_init -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x91f111f9 nf_flow_snat_port -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xa50a518a flow_offload_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xa904e1c2 flow_offload_refresh -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xbf8e38a4 nf_flow_table_free -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xe491d708 nf_flow_rule_route_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xf6102fd8 nf_flow_table_offload_setup -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x1064bce4 nf_nat_ipv4_register_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x19bf7c08 nf_nat_redirect_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x1b20ffff nf_nat_masquerade_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x32c864b1 nf_nat_icmpv6_reply_translation +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xff7c43ac __nf_ct_expect_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0xf52f77f1 nf_nat_amanda_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0xf493f931 nf_conntrack_broadcast_help +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0xf778f50a nf_nat_ftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x0e3f652f get_h225_addr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x1307fd30 nat_rtp_rtcp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x1a40698f set_h225_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x48b5decb nat_h245_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x4e27d2cd set_h245_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x8c50b567 set_sig_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xb72664eb nat_q931_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xc96f49d1 nat_t120_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xd91bb423 set_ras_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xf671107d nat_callforwarding_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0x7c5895d2 nf_nat_irc_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x02baa898 nf_nat_pptp_hook_inbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x55ae1772 nf_nat_pptp_hook_outbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x891f16fb nf_nat_pptp_hook_exp_gre +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xef0e093e nf_nat_pptp_hook_expectfn +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x23ddc83c ct_sip_parse_address_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x363a1693 ct_sip_parse_request +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x3cb14ce6 ct_sip_get_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x92c3711b ct_sip_parse_header_uri +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xa732d065 ct_sip_get_sdp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xea5e901f ct_sip_parse_numerical_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xffaacd58 nf_nat_sip_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0xecbf9dd7 nf_nat_snmp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0x960d4d59 nf_nat_tftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x6c10e5ba nf_dup_netdev_egress +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x83c53def nf_fwd_netdev_egress +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0xa996a7e1 nft_fwd_dup_netdev_offload +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x1c8818e4 flow_offload_route_init +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x1dabb00a nf_flow_offload_ip_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x32fba3c1 nf_flow_offload_ipv6_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x433d5320 flow_offload_free +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x4a314143 nf_flow_snat_port +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x860d6c70 flow_offload_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x8c13f656 nf_flow_rule_route_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x9d5719f2 nf_flow_table_init +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xa6c8734b flow_offload_refresh +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xb3610c29 nf_flow_table_cleanup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xd6e18e84 flow_offload_add +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xe894b492 flow_offload_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xea753a7a flow_offload_teardown +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xec136281 nf_flow_table_free +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xec6430de nf_flow_rule_route_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xf177fce1 nf_flow_table_offload_setup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xfcd4243e nf_flow_dnat_port +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x06105c20 nf_nat_ipv4_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x0b92161c nf_nat_inet_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x23d51e3f nf_nat_ipv6_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x2e1771e1 nf_nat_ipv6_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x39be4056 nf_nat_inet_fn EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3bc17c49 nf_nat_masquerade_inet_register_notifiers -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3dfa2bf5 nf_nat_inet_register_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x471497e9 nf_nat_icmp_reply_translation -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x699eced7 nf_nat_masquerade_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x69dffc29 nf_nat_redirect_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x8b455d48 nf_nat_alloc_null_binding -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x8db550e2 nf_nat_inet_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x9654afc4 nf_nat_ipv6_register_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xc6b97dcc nf_nat_inet_unregister_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xc955ac75 nf_ct_nat_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd38e977f nf_nat_packet +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x43cf95bb nf_nat_inet_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x7b9f7a06 nf_nat_ipv4_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x8c0a62fa nf_nat_icmp_reply_translation +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xad231b6f nf_nat_packet +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xaece08a5 nf_nat_redirect_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xb1a6f558 nf_nat_masquerade_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xb6562316 nf_nat_redirect_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd6974d80 nf_nat_alloc_null_binding +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd90e9a56 nf_ct_nat_ext_add EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd9c25654 nf_nat_masquerade_inet_unregister_notifiers -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xea3196e9 nf_nat_ipv6_unregister_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xfb0b75a5 nf_nat_ipv4_unregister_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x06175c67 nf_synproxy_ipv4_fini -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x09ea7e85 nf_synproxy_ipv6_init +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xecd970b3 nf_nat_masquerade_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xf06b479f nf_nat_icmpv6_reply_translation +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x01b478ba nf_synproxy_ipv6_init +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x1be5c2f9 nf_synproxy_ipv6_fini EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x1f099794 synproxy_init_timestamp_cookie -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x36e903ff ipv4_synproxy_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x72538043 synproxy_recv_client_ack -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x84eb75f0 synproxy_send_client_synack -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xad834680 synproxy_send_client_synack_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xb0a89a95 ipv6_synproxy_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xbd7641bb synproxy_parse_options +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x31a63d33 ipv4_synproxy_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x49a802b7 nf_synproxy_ipv4_fini +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x4f2f6f72 synproxy_send_client_synack_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x53f9b8f4 nf_synproxy_ipv4_init +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x7362037b synproxy_recv_client_ack +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x79dab0b4 ipv6_synproxy_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x9d895227 synproxy_recv_client_ack_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xa3cbeb17 synproxy_send_client_synack EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xca9fc082 synproxy_net_id -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xd723a66d synproxy_recv_client_ack_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xe113ecdd nf_synproxy_ipv4_init -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xeeeece3f nf_synproxy_ipv6_fini -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x019111b0 nft_meta_set_init +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xfecf1b70 synproxy_parse_options +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x00bb494d nft_set_lookup_global EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x06c6ca47 nft_meta_policy -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x19a388c8 nft_do_chain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1f8c52fb nf_tables_deactivate_flowtable +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x09f9214b nft_unregister_obj +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0adbad35 nft_meta_set_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0c54121e nft_set_elem_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0cff0d47 nft_register_flowtable_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x104b59ef nft_unregister_flowtable_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1ee6d305 nft_obj_notify +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x23c395ee nft_register_obj +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2477a613 nft_set_catchall_gc EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3251d762 nf_tables_trans_destroy_flush_work +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x36e95fa2 nft_meta_set_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3932db53 __nft_release_basechain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3b6064b0 nft_do_chain EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x41b71e65 nft_trace_enabled -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4e3c681c nft_meta_set_dump -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x506a769e nft_data_dump -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x51b4c5d9 nft_parse_register_store -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x56fc28a6 nft_meta_set_validate -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x57686df8 nft_register_chain_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x58083365 nft_unregister_flowtable_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5ed54980 nft_unregister_chain_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x62e073a6 nft_set_lookup_global -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6f036c0f nft_flowtable_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x72030205 nft_register_flowtable_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x75530cdc nf_tables_deactivate_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7ba14a7c nft_unregister_expr -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7fb4c4fc nf_tables_bind_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8049a005 __nft_release_basechain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8117d0fb nft_chain_validate -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x86608bcb nft_dump_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x45207880 nft_chain_validate +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4e1ed104 nft_meta_set_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4f0429c9 nft_meta_set_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x530ffeea nf_tables_destroy_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x58e03d3e nft_register_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5f7bd677 nft_request_module +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7cadf481 nft_set_catchall_lookup EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8b5ae838 nft_chain_validate_dependency -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x92e59368 nft_set_catchall_gc -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x95538c92 nf_tables_destroy_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x96744435 nft_register_obj -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9cad54c8 nft_set_catchall_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9dc01844 nft_meta_get_eval -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa0271735 nft_obj_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa5f17c4f nft_meta_get_init -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa97da71e nft_request_module -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa9ccb018 nft_register_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x998300e5 nft_meta_set_validate +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9edd4fa6 nft_data_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa5320b2e nf_tables_deactivate_flowtable +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xac3456bd nft_parse_register_store +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb165e2fa nft_set_do_lookup EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb3bd62b8 nft_data_release -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb6c3c936 nft_obj_notify -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb8123f98 nft_data_init -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbc95e8e5 nft_meta_set_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbd7f7216 nft_data_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc0248978 nft_register_chain_type EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc23cd9bb nft_chain_validate_hooks -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcd29576d nft_set_do_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd64dcc5c nft_meta_set_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd72438eb nft_set_elem_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc8bf0eea nf_tables_deactivate_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xdc328a5a nft_meta_get_init EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xde57b5f5 nft_parse_u32_check +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xdea7be12 nft_meta_get_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xded38684 nft_obj_lookup EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe2b8cc13 nft_parse_register_load -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe3f0f1b5 nft_meta_get_dump -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf2354eee nft_unregister_obj -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x08d4419d nfnetlink_subsys_unregister -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x161d77f7 nfnetlink_has_listeners -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x3ee936b9 nfnetlink_unicast -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x4e5d7417 nfnetlink_send -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x50ddd2b7 nfnetlink_subsys_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe6333432 nft_flowtable_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe70f253e nft_meta_get_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xee49d442 nf_tables_bind_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xee6c04f6 nft_unregister_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xfde9448a nft_unregister_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xff549010 nft_dump_register +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x13377d7d nfnetlink_subsys_register +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x1f964cbe nfnetlink_unicast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x24b7fb0d nfnetlink_broadcast EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xd2191a88 nfnetlink_set_err +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x8ceeb658 nfnetlink_set_err +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xd601f8e1 nfnetlink_send EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xf5f25101 nfnetlink_broadcast -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x06c14f9c nfnl_acct_overquota -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x77a75d18 nfnl_acct_update -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xa674c9c3 nfnl_acct_find_get +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xf7978a4c nfnetlink_has_listeners +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xfacc4f50 nfnetlink_subsys_unregister +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x0cd045a1 nfnl_acct_overquota +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x0dc102bc nfnl_acct_find_get +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x48d1d774 nfnl_acct_update EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbecf5d14 nfnl_acct_put -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x1870fb88 nf_osf_match EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x35eff5e0 nf_osf_fingers -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0xe64d400e nf_osf_find -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x7fc063e1 nft_fib_validate -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x87abfcf0 nft_fib_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xd866ca1e nft_fib_init -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xe435d749 nft_fib_store_result +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x46fba609 nf_osf_match +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0xad433866 nf_osf_find +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x135d4c0c nft_fib_store_result +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xcfad8d3d nft_fib_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xe3ca3de2 nft_fib_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xf1467837 nft_fib_init EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x1de558c1 nft_reject_icmpv6_code -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x4444f8d7 nft_reject_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x2db1755d nft_reject_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x4511cfbe nft_reject_validate EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x6081751d nft_reject_policy -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xb380dd44 nft_reject_init -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xca593faf nft_reject_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xbfceebe9 nft_reject_init EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xe2c84666 nft_reject_icmp_code -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x032925b8 xt_unregister_template EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x04e27719 xt_compat_flush_offsets -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x0c58f700 xt_compat_match_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x27007d89 xt_check_match -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x28fecf94 xt_proto_fini -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x29e0c669 xt_request_find_match -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x2ae84ebb xt_unregister_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x315d400d xt_compat_target_offset -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x359c9508 xt_match_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x4429acae xt_target_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x47053eeb xt_compat_match_from_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x67958f37 xt_register_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x72816048 xt_compat_target_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x1279603c xt_match_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x191373fb xt_register_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x2f4af919 xt_request_find_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x4d691381 xt_table_unlock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x58b4e77f xt_compat_match_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5f4cd462 xt_compat_target_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5fc1384a xt_proto_init +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x6a187c86 xt_replace_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x772addca xt_register_template EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7bce4603 xt_data_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7f66b958 xt_compat_target_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7d7edb69 xt_check_target EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x807d2b2c xt_recseq +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x8088f0f3 xt_compat_match_offset EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x823edea5 xt_compat_add_offset -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x88c73501 xt_proto_init +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9b7ab84c xt_compat_target_to_user EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9c995c69 xt_percpu_counter_alloc -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9e663766 xt_find_table_lock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa6f98daf xt_request_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9ff682ea xt_proto_fini +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa55f6fa0 xt_target_to_user EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa7c94f1d xt_compat_lock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbd491151 xt_hook_ops_alloc -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbf1803b4 xt_table_unlock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa937a1f2 xt_unregister_template +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xb2a559b1 xt_hook_ops_alloc 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 0xca2f7ac6 xt_compat_target_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xcaacd47b xt_compat_match_to_user EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd1e246a2 xt_compat_unlock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd3077a6c xt_compat_match_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd3ab6669 xt_unregister_table EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd3fcc511 xt_tee_enabled EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd9bb821b xt_copy_counters -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xdb7a3639 xt_request_find_target EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xddf68fc6 xt_find_revision -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xdfde9939 xt_replace_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe4886c2d xt_register_template -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe93fce4e xt_check_target -EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x3d91a4bc xt_rateest_put -EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0xc32af4ef xt_rateest_lookup -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x21e3c2ff nci_spi_send -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x9ad31343 nci_spi_allocate_spi -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xedbd312c nci_spi_read -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x4627e0fa nci_uart_unregister -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xc8373226 nci_uart_register -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xe63c318f nci_uart_set_config -EXPORT_SYMBOL_GPL net/nsh/nsh 0x0f53a499 nsh_pop -EXPORT_SYMBOL_GPL net/nsh/nsh 0x3909738c nsh_push -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x0de5ee31 ovs_netdev_link -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x1a01ac49 ovs_vport_ops_unregister -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x63584621 ovs_netdev_tunnel_destroy -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xaf32a3ae ovs_vport_free -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xb6dfa59d __ovs_vport_ops_register -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xb8111409 ovs_vport_alloc -EXPORT_SYMBOL_GPL net/psample/psample 0x6d905ee0 psample_sample_packet -EXPORT_SYMBOL_GPL net/psample/psample 0x7a32d303 psample_group_take -EXPORT_SYMBOL_GPL net/psample/psample 0xba5a3510 psample_group_put -EXPORT_SYMBOL_GPL net/psample/psample 0xfda32304 psample_group_get +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe0d1c166 xt_check_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xee7c74d9 xt_request_find_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xf2da57a3 xt_request_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xff8eeab0 xt_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x58cd5840 xt_rateest_put +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x98ff08da xt_rateest_lookup +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x807fa5ad nci_spi_allocate_spi +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xacce8011 nci_spi_send +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xfb2bab46 nci_spi_read +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xbc770d90 nci_uart_register +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xdb66114f nci_uart_set_config +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xf21936f9 nci_uart_unregister +EXPORT_SYMBOL_GPL net/nsh/nsh 0x1c37589b nsh_pop +EXPORT_SYMBOL_GPL net/nsh/nsh 0xcb7d4c15 nsh_push +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x04ada1fd ovs_vport_free +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x600f2668 ovs_vport_alloc +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x665e491d ovs_netdev_tunnel_destroy +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x8a0d9350 ovs_vport_ops_unregister +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xa8890889 __ovs_vport_ops_register +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xca21944b ovs_netdev_link +EXPORT_SYMBOL_GPL net/psample/psample 0x28beec6d psample_sample_packet +EXPORT_SYMBOL_GPL net/psample/psample 0x73fbdc5a psample_group_take +EXPORT_SYMBOL_GPL net/psample/psample 0xf3aec8de psample_group_get +EXPORT_SYMBOL_GPL net/psample/psample 0xf97d5e98 psample_group_put EXPORT_SYMBOL_GPL net/qrtr/ns 0x8d25501f qrtr_ns_remove EXPORT_SYMBOL_GPL net/qrtr/ns 0xa47e91ba qrtr_ns_init -EXPORT_SYMBOL_GPL net/qrtr/qrtr 0xa50dfe11 qrtr_endpoint_post -EXPORT_SYMBOL_GPL net/qrtr/qrtr 0xbea1133c qrtr_endpoint_unregister -EXPORT_SYMBOL_GPL net/qrtr/qrtr 0xd60ac84f qrtr_endpoint_register +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x457b6809 qrtr_endpoint_register +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0xc70cc94e qrtr_endpoint_post +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0xe12eea05 qrtr_endpoint_unregister EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq -EXPORT_SYMBOL_GPL net/rds/rds 0x03f44e8f rds_atomic_send_complete -EXPORT_SYMBOL_GPL net/rds/rds 0x0aafad63 rds_inc_path_init -EXPORT_SYMBOL_GPL net/rds/rds 0x26fb2a9b rds_rdma_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x07f577c4 rds_conn_create_outgoing +EXPORT_SYMBOL_GPL net/rds/rds 0x1266aaeb rds_conn_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0x1494f835 rds_message_unmapped +EXPORT_SYMBOL_GPL net/rds/rds 0x1a81fc1a rds_conn_create +EXPORT_SYMBOL_GPL net/rds/rds 0x1b314191 rds_rdma_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x26497a98 rds_send_path_reset EXPORT_SYMBOL_GPL net/rds/rds 0x2b0d543c rds_message_add_extension -EXPORT_SYMBOL_GPL net/rds/rds 0x2eac3e6c rds_recv_incoming +EXPORT_SYMBOL_GPL net/rds/rds 0x335cfa33 rds_connect_path_complete EXPORT_SYMBOL_GPL net/rds/rds 0x36087aa4 rds_stats +EXPORT_SYMBOL_GPL net/rds/rds 0x3d99a492 rds_inc_path_init EXPORT_SYMBOL_GPL net/rds/rds 0x45a4781e rds_addr_cmp -EXPORT_SYMBOL_GPL net/rds/rds 0x47cf903f rds_conn_connect_if_down -EXPORT_SYMBOL_GPL net/rds/rds 0x4e0649b6 rds_conn_create_outgoing -EXPORT_SYMBOL_GPL net/rds/rds 0x50b621a7 rds_message_unmapped -EXPORT_SYMBOL_GPL net/rds/rds 0x5704f930 rds_conn_destroy +EXPORT_SYMBOL_GPL net/rds/rds 0x5252bbc6 rds_inc_put +EXPORT_SYMBOL_GPL net/rds/rds 0x56ff6463 rds_conn_drop EXPORT_SYMBOL_GPL net/rds/rds 0x582fe5cf rds_message_add_rdma_dest_extension -EXPORT_SYMBOL_GPL net/rds/rds 0x584aafab rds_send_xmit EXPORT_SYMBOL_GPL net/rds/rds 0x585f567b rds_message_populate_header -EXPORT_SYMBOL_GPL net/rds/rds 0x69512da0 rds_send_path_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0x6af286ab rds_send_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0x6f4789dd rds_message_addref +EXPORT_SYMBOL_GPL net/rds/rds 0x739e4dfa rds_trans_unregister EXPORT_SYMBOL_GPL net/rds/rds 0x7b399e66 rds_page_remainder_alloc +EXPORT_SYMBOL_GPL net/rds/rds 0x7cc8b63c rds_send_path_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0x7e66df26 rds_message_put +EXPORT_SYMBOL_GPL net/rds/rds 0x7f0770b2 rds_send_xmit EXPORT_SYMBOL_GPL net/rds/rds 0x85e4e520 rds_stats_info_copy -EXPORT_SYMBOL_GPL net/rds/rds 0x8692b33a rds_trans_unregister -EXPORT_SYMBOL_GPL net/rds/rds 0x9518b9f5 rds_info_register_func -EXPORT_SYMBOL_GPL net/rds/rds 0x95fe3dcb rds_conn_path_drop -EXPORT_SYMBOL_GPL net/rds/rds 0x9d4c7ad3 rds_connect_complete -EXPORT_SYMBOL_GPL net/rds/rds 0xa68f519a rds_conn_path_connect_if_down -EXPORT_SYMBOL_GPL net/rds/rds 0xa8ffe6e9 rds_inc_init -EXPORT_SYMBOL_GPL net/rds/rds 0xb238f858 rds_trans_register -EXPORT_SYMBOL_GPL net/rds/rds 0xbaf462c6 rds_send_ping -EXPORT_SYMBOL_GPL net/rds/rds 0xbd5ae014 rds_message_addref +EXPORT_SYMBOL_GPL net/rds/rds 0x9b6748d1 rds_conn_path_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0xae14a42f rds_send_ping +EXPORT_SYMBOL_GPL net/rds/rds 0xb12179df rds_conn_destroy +EXPORT_SYMBOL_GPL net/rds/rds 0xb31ff480 rds_trans_register +EXPORT_SYMBOL_GPL net/rds/rds 0xb46e1913 rds_info_register_func +EXPORT_SYMBOL_GPL net/rds/rds 0xc18efebe rds_for_each_conn_info EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy -EXPORT_SYMBOL_GPL net/rds/rds 0xcbaa5aab rds_conn_drop -EXPORT_SYMBOL_GPL net/rds/rds 0xcd5bd070 rds_send_path_reset -EXPORT_SYMBOL_GPL net/rds/rds 0xd9e4d3bb rds_send_drop_acked -EXPORT_SYMBOL_GPL net/rds/rds 0xedc6f574 rds_info_deregister_func -EXPORT_SYMBOL_GPL net/rds/rds 0xee02f445 rds_conn_create -EXPORT_SYMBOL_GPL net/rds/rds 0xf1ab1a99 rds_for_each_conn_info -EXPORT_SYMBOL_GPL net/rds/rds 0xf3194082 rds_inc_put -EXPORT_SYMBOL_GPL net/rds/rds 0xf6fe2a80 rds_message_put -EXPORT_SYMBOL_GPL net/rds/rds 0xf93a6a1d rds_connect_path_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xc35eeb0d rds_atomic_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xd473cb6c rds_connect_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xd4db5100 rds_info_deregister_func +EXPORT_SYMBOL_GPL net/rds/rds 0xd70eff04 rds_inc_init +EXPORT_SYMBOL_GPL net/rds/rds 0xe5ef1c1b rds_conn_path_drop +EXPORT_SYMBOL_GPL net/rds/rds 0xf11fc757 rds_recv_incoming EXPORT_SYMBOL_GPL net/rds/rds 0xfd22dd56 rds_cong_map_updated -EXPORT_SYMBOL_GPL net/sched/sch_pie 0x23aac604 pie_process_dequeue EXPORT_SYMBOL_GPL net/sched/sch_pie 0x6ce9b467 pie_calculate_probability -EXPORT_SYMBOL_GPL net/sched/sch_pie 0xac21d0d2 pie_drop_early +EXPORT_SYMBOL_GPL net/sched/sch_pie 0xd03ee3fd pie_drop_early +EXPORT_SYMBOL_GPL net/sched/sch_pie 0xda2d8ec1 pie_process_dequeue EXPORT_SYMBOL_GPL net/sched/sch_taprio 0x5fc3c6ed taprio_offload_free EXPORT_SYMBOL_GPL net/sched/sch_taprio 0xa7f08102 taprio_offload_get -EXPORT_SYMBOL_GPL net/sctp/sctp 0x82cbadd0 sctp_for_each_endpoint -EXPORT_SYMBOL_GPL net/sctp/sctp 0xc1ee736b sctp_transport_lookup_process -EXPORT_SYMBOL_GPL net/sctp/sctp 0xf9bfb574 sctp_get_sctp_info -EXPORT_SYMBOL_GPL net/sctp/sctp 0xffc26a09 sctp_transport_traverse_process -EXPORT_SYMBOL_GPL net/smc/smc 0x1174c3a2 smcd_register_dev -EXPORT_SYMBOL_GPL net/smc/smc 0x421facb4 smcd_unregister_dev -EXPORT_SYMBOL_GPL net/smc/smc 0x906e4aaf smc_hash_sk -EXPORT_SYMBOL_GPL net/smc/smc 0x9f0f0e35 smcd_handle_event -EXPORT_SYMBOL_GPL net/smc/smc 0xa0fd64e2 smcd_alloc_dev -EXPORT_SYMBOL_GPL net/smc/smc 0xce4f281d smc_proto6 -EXPORT_SYMBOL_GPL net/smc/smc 0xd5724720 smc_proto -EXPORT_SYMBOL_GPL net/smc/smc 0xdba24c0f smcd_handle_irq -EXPORT_SYMBOL_GPL net/smc/smc 0xe076d873 smcd_free_dev -EXPORT_SYMBOL_GPL net/smc/smc 0xf44c6159 smc_unhash_sk -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x24ff1b17 svcauth_gss_register_pseudoflavor -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x294d1490 svcauth_gss_flavor +EXPORT_SYMBOL_GPL net/sctp/sctp 0x002160aa sctp_for_each_endpoint +EXPORT_SYMBOL_GPL net/sctp/sctp 0x0fc826b6 sctp_get_sctp_info +EXPORT_SYMBOL_GPL net/sctp/sctp 0x78969523 sctp_transport_lookup_process +EXPORT_SYMBOL_GPL net/sctp/sctp 0x8c0ece7f sctp_transport_traverse_process +EXPORT_SYMBOL_GPL net/smc/smc 0x0015c207 smc_hash_sk +EXPORT_SYMBOL_GPL net/smc/smc 0x08ec915d smcd_free_dev +EXPORT_SYMBOL_GPL net/smc/smc 0x3e0108b6 smcd_handle_event +EXPORT_SYMBOL_GPL net/smc/smc 0x3f012d52 smc_proto6 +EXPORT_SYMBOL_GPL net/smc/smc 0x4717854c smc_unhash_sk +EXPORT_SYMBOL_GPL net/smc/smc 0x4f954af1 smc_proto +EXPORT_SYMBOL_GPL net/smc/smc 0x679ad0b0 smcd_handle_irq +EXPORT_SYMBOL_GPL net/smc/smc 0x6c7ac3c3 smcd_register_dev +EXPORT_SYMBOL_GPL net/smc/smc 0xa1967a45 smcd_alloc_dev +EXPORT_SYMBOL_GPL net/smc/smc 0xeca257a1 smcd_unregister_dev +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x24ca9f80 gss_mech_unregister +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x2d541966 svcauth_gss_register_pseudoflavor EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x38d3dce5 g_make_token_header EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x482ac5a4 g_token_size -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xa9f598f9 gss_mech_register -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xab74a5de gss_mech_unregister +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x9246dd41 gss_mech_register EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xd7673035 g_verify_token_header -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x01d4c391 svc_sock_update_bufs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x02fce031 svc_xprt_enqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x04cd25b2 rpc_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x04db948f xdr_init_decode +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xdeadbb14 svcauth_gss_flavor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00a779d9 xdr_page_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00e377ef xprt_release_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x02243f3a rpc_uaddr2sockaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x03050d00 xdr_terminate_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0387cf50 rpc_put_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05a3752f svc_fill_write_vector 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 0x07062575 rpc_clone_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x07ec3f37 svc_xprt_do_enqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x085df8b0 xdr_buf_trim -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0897c7a9 rpc_pton -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x096bc485 cache_unregister_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x09fbd16a svc_drop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0b0d7a1e rpc_mkpipe_dentry -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0eccfde2 rpc_d_lookup_sb -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0fd78388 read_bytes_from_xdr_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0ff5148c rpc_wake_up_queued_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x119073ba xprt_unregister_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x11f8c8ee xprt_wake_up_backlog -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1339c668 rpcauth_lookupcred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x17b6e7b0 rpc_call_null -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x18851350 xdr_stream_decode_opaque -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x19c2c4fa cache_destroy_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x19e27781 svc_close_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1a02f115 xdr_stream_decode_opaque_dup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1d013470 svc_xprt_deferred_close -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1d83db1e auth_domain_lookup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1dafa064 rpc_peeraddr2str +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x09507012 svc_alien_sock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x09b14aba svc_xprt_do_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0adaa65f xdr_encode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0b9ae642 cache_seq_start_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0d116151 svc_prepare_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f05ab07 rpc_clnt_iterate_for_each_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f56e1e0 xdr_shift_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x10c33d09 xdr_process_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x10e15f6e sunrpc_cache_update +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1169c1b9 xprt_free_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x142d6616 cache_create_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x15dd986c svc_xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1612404f xdr_decode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1681d5ac sunrpc_cache_pipe_upcall_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x18ccd4cb svc_destroy +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x18d3b85f rpcauth_stringify_acceptor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x195335b7 xprt_reserve_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x19ee1039 sunrpc_cache_unregister_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1a51cb8b xprt_reconnect_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1b19cd17 rpc_peeraddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1beb6e1b rpcauth_wrap_req_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1cc42b2a svc_set_num_threads_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1ce10ccb rpc_exit EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e119a79 rpcauth_get_pseudoflavor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e13efca cache_create_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f26936f rpc_malloc EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f2a9970 rpc_ntop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f2df8da xprt_adjust_cwnd -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f9b9cd7 svc_create_pooled -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1ff07cfe xdr_enter_page -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x20d8d84e rpc_peeraddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x20dcb403 rpc_run_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x215453e3 svc_seq_show -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2192bca0 rpc_task_release_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x230f52f1 xprt_wait_for_reply_request_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x23fd3b48 xdr_page_pos -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x24bcaa94 rpc_force_rebind -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x24d7608c rpc_clone_client_set_auth -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x25d88f62 sunrpc_cache_register_pipefs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x26df322e xdr_terminate_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2822d12e xprt_complete_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2154341d rpc_clnt_xprt_switch_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x21778f7f write_bytes_to_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x21bbd0ee rpc_pton +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x21cf26b2 rpc_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x252776e8 rpcauth_destroy_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x25fc5844 rpc_shutdown_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2753e4b7 _copy_from_pages EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2a45aaae xprt_disconnect_done -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2b5909ab xprt_reserve_xprt_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2ba1780a rpc_clnt_xprt_switch_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2c163b1c xprt_lookup_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f1886b4 svc_generic_rpcbind_set -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x305150c1 sunrpc_destroy_cache_detail -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x30cb9db4 rpc_clnt_xprt_switch_has_addr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x30db9e31 rpc_wake_up_first -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31804944 auth_domain_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2bbc8d15 rpcauth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2bc77df1 svc_seq_show +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2c281882 svc_age_temp_xprts_now +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2c686604 svc_rqst_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2cb1b009 rpc_find_or_alloc_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2dc13c49 xdr_buf_from_iov EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x32c46791 rpc_count_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3464358f rpcauth_wrap_req_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31d750d0 sunrpc_cache_lookup_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3274191b read_bytes_from_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x34324d4e rpcauth_unwrap_resp_decode EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x34d184de rpc_wake_up_status -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x35559008 rpc_killall_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x36e3feff rpc_init_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x37b83a4d rpc_call_start -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x383d2db0 svc_process -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3852b7f6 svc_rpcb_setup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x371c8d8d xprt_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x37c287b1 xdr_encode_array2 EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x395551a3 xprt_reconnect_backoff -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x39efcff2 svc_create_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3a6f8c3c put_rpccred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3b13b133 rpc_alloc_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3b1dad31 xprt_force_disconnect -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3b233d20 rpc_clnt_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3b86d740 rpc_clnt_swap_deactivate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3dc6e9c1 xprt_wait_for_buffer_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3eb1949e svc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3a46c16e xprt_release_rqst_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3a6b5907 svc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3af1c586 rpc_run_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3d09d24f svc_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f5a4382 __rpc_wait_for_completion_task EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f9a2b0b rpcauth_get_gssinfo -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x40247734 rpc_call_sync -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x41348719 svc_xprt_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x413d68b4 rpc_add_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x414f1f0d rpc_queue_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x41d58510 sunrpc_cache_update -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x41e3a404 rpc_destroy_pipe_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x420f154a svc_rqst_replace_page -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x441dce0a svc_prepare_thread -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x44570749 xprt_reserve_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3fd19ef5 rpc_add_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x417e4b26 rpcb_getport_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x41c83fec svc_xprt_deferred_close +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x42fa240d xprt_register_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x43b1b234 rpc_mkpipe_dentry +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x441cbea0 xprt_disconnect_done +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x449f4a3a rpc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x44f0df38 xdr_read_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x450d7907 svc_create_xprt EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x453efa54 svc_pool_map -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x46437b43 svc_addsock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4a0d7dfb rpc_net_ns -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4a47dcdb xprt_register_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4a8b6606 rpc_restart_call -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4ad9a4d4 rpcauth_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x45bba760 svc_xprt_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x46ba44f1 cache_check +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4814d13c xprt_unlock_connect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x482bce4c rpc_set_connect_timeout EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4afedab1 xprtiod_workqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4d054102 svc_rpcbind_set_version -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4d2c8106 rpc_wake_up_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4b610407 rpcauth_lookupcred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4b9c6407 xprt_reserve_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4bf7842e rpc_call_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4cd3d666 cache_purge EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4dac77f0 xdr_encode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4dc1782e rpc_setbufsize EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e8f6ca7 sunrpc_net_id -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4fd62f50 rpc_proc_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5047a400 svc_encode_result_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5102fa4f svc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x525655af svc_bind -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5256b397 xdr_read_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x52b23830 xprt_pin_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e9eeb7a xprt_lookup_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4efa7b7d auth_domain_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4f401e0b rpc_call_null +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x51d835cb rpc_pipe_generic_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x520f5baf svc_reserve +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5310a08c svc_fill_symlink_pathname EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5466f9ea rpcauth_init_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x550ba1fa rpc_put_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x55545028 rpcauth_init_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x570d42f2 rpc_clnt_xprt_switch_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x58be6a94 rpc_release_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5414bd6e svc_xprt_received +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x54874c49 svc_encode_result_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x548de00c bc_svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x55a8505e rpc_unlink +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x56e8d3f3 xprt_reconnect_backoff +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x571bdbd1 rpc_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x57de6124 xprt_destroy_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x57deca4c rpc_d_lookup_sb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x59ce4ee7 rpc_clnt_xprt_switch_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x59f9e58a sunrpc_cache_pipe_upcall EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a45ba31 svc_auth_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a5fbb6c sunrpc_cache_unregister_pipefs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a969ff6 _copy_from_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a98d4fd svc_age_temp_xprts_now -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5c4eb6e3 rpc_sleep_on -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5d2207fa xdr_init_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5d46b1ad rpc_sleep_on_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5e2b1ec4 xprt_write_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5e711ef3 rpc_switch_client_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x636c8dbb rpc_unlink -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x63d90f4b xdr_decode_array2 -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x63e7b8e6 xprt_lock_connect -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x648e66b0 write_bytes_to_xdr_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x65bcdcc2 xprt_unlock_connect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5b597640 svc_xprt_names +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5b9b0e3c xprt_force_disconnect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5c281bde xdr_stream_decode_string_dup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5c403c70 xdr_stream_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5de8deb5 svc_xprt_copy_addrs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5ea7b0e0 rpc_net_ns +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5f21453b cache_seq_next_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5f4198da xdr_stream_decode_opaque_dup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5fa792cd svc_rpcb_cleanup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x62339460 rpc_clnt_swap_activate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x62807787 xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x63775872 xprt_adjust_cwnd +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x63cb9f9c svc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x653bced0 xprt_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x65f33c9b rpc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x666b2a15 svc_auth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66b46a6c svcauth_unix_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66b7ec54 rpc_proc_unregister EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66ed2439 rpc_destroy_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6714ec34 rpc_exit -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x67bfca97 svcauth_unix_set_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6cbac111 rpcauth_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6df22fd3 xdr_decode_word -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6e5550bc sunrpc_cache_unhash -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x719cfd4d csum_partial_copy_to_xdr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6819544e svc_generic_init_request +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x68512a89 xdr_write_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x68737a94 xprt_release_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6b4d6843 rpc_clnt_swap_deactivate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6be7ee23 auth_domain_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6d523fd2 xdr_stream_decode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7107ee38 rpc_alloc_iostats 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 0x72b9787e rpcauth_destroy_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x72e25d5e rpc_restart_call_prepare -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x734ab3d6 rpc_clnt_show_stats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7390b3e0 sunrpc_cache_pipe_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x767e99ca xprt_alloc_slot -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7696088a rpc_setbufsize -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x792e4b77 rpc_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x79a7f64b rpc_count_iostats_metrics -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7b681be2 xprt_destroy_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7269ed17 xdr_align_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x72a58095 rpc_clone_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x735371f7 svc_shutdown_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x744431bc rpc_clnt_xprt_switch_has_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7476d28f rpc_call_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x74b31c7d xprt_complete_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x772eb293 rpc_sleep_on_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x783967c8 rpc_wake_up_queued_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7a3f12ac rpc_put_task_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7acb6fdf svc_print_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7b24d6a8 svc_bind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7bfc414b rpc_killall_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7c0c6ba0 xprt_add_backlog +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7d151f55 auth_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7d5fa4d0 sunrpc_cache_register_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7da6c178 rpc_restart_call EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7e5973c5 xprt_unpin_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7f0da099 cache_seq_stop_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x823e01ca svc_rqst_alloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8259ceca rpc_num_bc_slots -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x833ba3b4 xprt_wake_pending_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x83eb1258 xprt_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x855de7da xdr_stream_pos -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x86af359b xprt_release_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x88d8684a svc_authenticate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x89792a55 xdr_encode_array2 -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x89a666de rpc_max_bc_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8afd6912 rpcauth_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8b019eec rpcauth_lookup_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8f526487 svc_auth_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8fd1a89e auth_domain_find -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x90582046 sunrpc_cache_lookup_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x915a9287 rpc_proc_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x918e394c svc_reserve -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9227fb19 svc_exit_thread -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x922cbea7 svc_recv -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x92ff603b xdr_write_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x947a8ffa xprt_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x962a2119 xdr_align_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7f8667db rpc_peeraddr2str +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fc1fde9 put_rpccred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8350865c cache_unregister_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x83e2a435 rpc_switch_client_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x86957e57 rpc_queue_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8885ea51 rpc_clnt_show_stats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x89515d2e svc_rqst_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8b811cbc xprt_lock_connect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8f230044 svc_drop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8f3adf66 xdr_init_decode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x90357cf6 xprt_pin_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x90bd4e66 xdr_stream_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x90f1eed7 svc_exit_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x91c541c1 svc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x92c86368 svc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x938fb4e5 xdr_buf_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x94391742 svc_proc_unregister EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9670b5a1 rpc_free_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x96b81152 xdr_process_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9722c95d xprt_request_get_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9745c732 xprt_setup_backchannel -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x997d2f09 rpc_sleep_on_priority +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x96a5134a rpc_task_release_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98a4d2b7 rpc_restart_call_prepare EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x99aee353 rpc_init_priority_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9a9d0a5c rpc_get_sb_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9c140e44 cache_seq_start_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9cc76f18 sunrpc_init_cache_detail -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9d32256c svc_xprt_names -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9f3094f2 svc_wake_up -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa01b5fd3 rpc_delay -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa044289c svc_shutdown_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9ca1acc4 svc_rpcb_setup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9d2c3998 xdr_inline_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9dbd405e rpc_max_bc_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa030b24c rpc_mkpipe_data EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa13acdb8 svc_pool_map_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa1483e1e rpc_clnt_swap_activate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa3599ed2 cache_seq_next_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa540929c xdr_buf_subsegment -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa5ff351d rpc_localaddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa8f7fbad svc_xprt_init -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa950cd62 xdr_expand_hole -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa9aa714c rpc_clnt_iterate_for_each_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaa2c273d bc_svc_process -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xac6b4364 xprt_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xae9b0fd0 xdr_buf_from_iov +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa1a445a0 xprt_unpin_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa1dd6e0b rpcauth_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa218a3d5 svc_rqst_replace_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa2299f99 rpc_task_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa272044e svc_generic_rpcbind_set +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa2ce4cd4 rpc_wake_up_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa51582d4 xdr_reserve_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa6e9dddf rpc_bind_new_program +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa80963af rpc_sleep_on +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa97a0a63 rpc_init_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaa9ec1d9 rpc_clone_client_set_auth +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xae0bf58c xprt_update_rtt EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb067ad2a xdr_reserve_space_vec -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb0e1863c gssd_running +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5fcc5a xprt_setup_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb0b8012e rpc_wake_up_first +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb238cab1 rpc_clnt_test_and_add_xprt EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb312d0c4 svc_pool_map_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb3abbbe2 xdr_reserve_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb43d641d sunrpc_destroy_cache_detail EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb6dbf003 svc_unreg_xprt_class -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb77a07f5 xdr_stream_decode_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb8849745 rpc_task_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xba7c0405 xdr_commit_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbb067fc9 cache_register_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbb274c86 rpc_set_connect_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbdd70e79 cache_check -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbed61ccb svc_find_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb645f434 xdr_expand_hole +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb82a4e6c svc_create_pooled +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb977e023 svc_sock_update_bufs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbc4d71eb svc_addsock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbcdbee1b xdr_init_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbd16e61c rpc_get_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbd5e13e4 rpc_destroy_pipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf71ca29 svc_process EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc055821c xprt_release_xprt_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc060b39f xprt_free_slot -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc11de826 rpc_remove_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbfd2cd44 svc_reg_xprt_class EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12435e3 rpc_calc_rto -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc130a428 xdr_init_decode_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc14bed59 rpc_clnt_test_and_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc2f8ab6d xdr_stream_decode_string_dup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc312f4d6 rpcauth_stringify_acceptor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc45b21d0 svc_reg_xprt_class -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc6fe0450 svc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc1fbc74f xdr_commit_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc268e764 rpc_num_bc_slots +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc37c5e34 rpcauth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc47c824a xdr_enter_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc7d00108 xprt_wait_for_reply_request_rtt EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcbe8a8a8 svc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8edd89f xprt_wait_for_reply_request_def +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc97bafd2 rpc_force_rebind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xca853abf xprt_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcaca98ae rpc_count_iostats_metrics +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcc139d19 svc_unreg_xprt_class EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce678a59 xdr_decode_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xced6e979 rpc_clnt_setup_test_and_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcf7b0c53 svc_set_num_threads_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcf4d1cd5 cache_seq_stop_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd0e0b78a rpc_create EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd10d1d5b rpc_machine_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd12c684c svcauth_unix_purge -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd18afa82 xdr_inline_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd6e75637 rpc_put_task_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd7e471e7 xprt_add_backlog -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd803da10 rpc_call_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd8232dbb svc_alien_sock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd8329eef svc_xprt_received -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd1aefe2 rpc_bind_new_program +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd1f41dc6 rpc_prepare_reply_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd2a956e3 rpc_put_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd4d41a79 sunrpc_init_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd4fb4177 svc_close_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd5c7876e xdr_inline_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd5cd4b23 xprt_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd6749133 xprt_wait_for_buffer_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd84844fe xprt_unregister_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd849b105 svc_set_num_threads +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd8940a29 gssd_running +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd8aa937f xdr_decode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdc6a19a9 svc_rpcbind_set_version EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd691402 xprt_find_transport_ident -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xde6f5c8d rpc_shutdown_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdf4bd1c2 svc_fill_write_vector -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe00eaeaf xdr_encode_word -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe0a4b11e rpc_put_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdec03bc7 cache_register_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdfa338c6 rpc_clnt_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe085fbca sunrpc_cache_unhash +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe0955e0e rpc_localaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe0f945b3 xdr_buf_trim +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe24f9031 xdr_stream_decode_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe33a145f rpc_sleep_on_priority_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe472ca73 rpc_init_pipe_dir_head EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe656bb81 xprt_wait_for_reply_request_def -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe679644e xdr_inline_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe856f109 xprt_reconnect_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5c55834 csum_partial_copy_to_xdr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe755d579 unix_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe868431f rpc_call_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe873b68f rpc_count_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe8d4322a rpc_sleep_on_priority EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe9e6ef89 xprt_release_rqst_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeb12415f rpc_sleep_on_priority_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xecbf6b65 rpc_find_or_alloc_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeda8ac4c rpc_uaddr2sockaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe99df2f3 svc_find_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xebef7ddd xdr_init_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xed2e33a3 xprt_write_space EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedcf6be4 qword_add +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xee69c09e xprt_request_get_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xee73044e cache_destroy_net EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeeacab69 rpc_update_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf0a0c407 xprt_update_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xef0742cb svc_authenticate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xef9fa3af rpcauth_init_cred EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf0b7775d rpc_init_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf0c331a1 unix_domain_find -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf195396c svc_fill_symlink_pathname -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf217b20d rpcb_getport_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf21bfa6b svc_rpcb_cleanup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf2203509 xdr_shift_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf46704e0 rpc_init_pipe_dir_head -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf4ae5cbb svc_print_addr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf5c610b7 svc_set_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf76b6765 rpc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf8b074df rpc_pipe_generic_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf90884c6 svc_set_num_threads -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf935e95d sunrpc_cache_pipe_upcall_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfa427b39 svc_xprt_copy_addrs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfab8c28e cache_purge -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfac363a5 rpc_mkpipe_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfb37e0a4 xprt_alloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfb84e6e8 svc_generic_init_request -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfc7769ac __rpc_wait_for_completion_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfda82816 svc_destroy -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfdbbcb9e svc_rqst_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfde174d3 rpc_prepare_reply_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfde7163b rpc_malloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfe58aa62 rpcauth_unwrap_resp_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfea8c56c xdr_stream_subsegment -EXPORT_SYMBOL_GPL net/tls/tls 0xd34fbf79 tls_validate_xmit_skb -EXPORT_SYMBOL_GPL net/tls/tls 0xf0f17c4a tls_encrypt_skb -EXPORT_SYMBOL_GPL net/tls/tls 0xf52490ce tls_device_sk_destruct -EXPORT_SYMBOL_GPL net/tls/tls 0xfd6d7c24 tls_offload_tx_resync_request +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf1cd3d7e rpc_remove_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf2d8d830 xprt_wake_pending_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf6e1a457 svc_xprt_init +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf74a9a70 svc_recv +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf8e8456b rpc_release_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfa74d739 svcauth_unix_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfad8b5d8 rpc_clnt_setup_test_and_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfb6002b4 rpcauth_init_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfb6a7f84 xdr_reserve_space_vec +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfc3d3b3c xprt_wake_up_backlog +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xffb4a328 rpcauth_lookup_credcache +EXPORT_SYMBOL_GPL net/tls/tls 0x5d29bf39 tls_offload_tx_resync_request +EXPORT_SYMBOL_GPL net/tls/tls 0x613bf87c tls_encrypt_skb +EXPORT_SYMBOL_GPL net/tls/tls 0x7f5215d3 tls_validate_xmit_skb +EXPORT_SYMBOL_GPL net/tls/tls 0xad67cc84 tls_device_sk_destruct +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x01db9b66 virtio_transport_do_socket_init 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 0x054975db virtio_transport_seqpacket_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x07625234 virtio_transport_release -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x143bb903 virtio_transport_notify_recv_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x1579f8e2 virtio_transport_stream_rcvhiwat -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x17d6caef virtio_transport_notify_send_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x1e991538 virtio_transport_stream_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x268a3624 virtio_transport_dgram_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x298d7da4 virtio_transport_destruct -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2d94e3cc virtio_transport_put_credit -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x3657cc7c virtio_transport_deliver_tap_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x38f49e00 virtio_transport_notify_send_pre_block -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x4115a91c virtio_transport_stream_is_active -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x4e9a3aae virtio_transport_stream_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x581537e5 virtio_transport_notify_recv_pre_block -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x59a97f88 virtio_transport_shutdown -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x5d844586 virtio_transport_notify_recv_post_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x5ebca6da virtio_transport_stream_has_space -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x63b293db virtio_transport_notify_buffer_size -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x63c2eec4 virtio_transport_free_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x6410daf4 virtio_transport_recv_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x6a2f0c09 virtio_transport_dgram_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x78015463 virtio_transport_notify_send_pre_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7ddc768f virtio_transport_notify_recv_pre_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7f6d45aa virtio_transport_do_socket_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x843d1a71 virtio_transport_seqpacket_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x8996eece virtio_transport_stream_has_data -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x9b743a82 virtio_transport_get_credit -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa1516751 virtio_transport_notify_poll_out -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xad0d4d48 virtio_transport_seqpacket_has_data -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xae0847d0 virtio_transport_notify_poll_in -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb446ffc8 virtio_transport_connect +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x09a323ee virtio_transport_put_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x0a6edd27 virtio_transport_notify_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x1a1afe00 virtio_transport_connect +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x1d123cbe virtio_transport_release +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x204e05dd virtio_transport_destruct +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x22dbdfa9 virtio_transport_seqpacket_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2ab12fd3 virtio_transport_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x339e8781 virtio_transport_deliver_tap_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x345848a9 virtio_transport_stream_is_active +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x3f36902d virtio_transport_seqpacket_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x45b8fd17 virtio_transport_recv_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x4d05c733 virtio_transport_free_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x4fa3dec8 virtio_transport_notify_send_post_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x569e0e1e virtio_transport_inc_tx_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x5c4e8f14 virtio_transport_notify_recv_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x6ce67b15 virtio_transport_stream_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7773091f virtio_transport_stream_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x854a11bb virtio_transport_seqpacket_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x85e3d3a3 virtio_transport_shutdown +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x866025aa virtio_transport_dgram_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x952620f6 virtio_transport_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x981495c5 virtio_transport_dgram_bind +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb2ada4c9 virtio_transport_notify_poll_in 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 0xbeabaaa8 virtio_transport_inc_tx_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd747437b virtio_transport_notify_send_post_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd9e556eb virtio_transport_dgram_bind +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xbcfee723 virtio_transport_notify_recv_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xbd2ebf3f virtio_transport_get_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xc48a4134 virtio_transport_dgram_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xcf2e6035 virtio_transport_notify_poll_out +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd7798be3 virtio_transport_notify_send_pre_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf0d48038 virtio_transport_notify_send_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf1a0df05 virtio_transport_notify_recv_pre_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf492eb4c virtio_transport_notify_send_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf9485721 virtio_transport_notify_recv_post_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf9d8bf3a virtio_transport_stream_rcvhiwat +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x042d0427 vsock_remove_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0e992122 vsock_deliver_tap EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0e9bc9b6 vsock_addr_unbind -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x11eccc4e vsock_remove_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x107c32a9 vsock_enqueue_accept +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x10e15a81 vsock_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x1973280f vsock_find_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x1ebec13f vsock_remove_sock EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x284e07d8 vsock_bind_table +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x32123903 vsock_remove_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x357d4f80 vsock_core_register +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x381121c4 vsock_stream_has_data EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x3d4b0fca vsock_addr_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x3eac6f6c vsock_remove_sock -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x3f6f3bfe vsock_assign_transport +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x42e3e39c vsock_assign_transport EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4b99648c vsock_addr_bound -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4dc2abb2 vsock_insert_connected -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x73c83f5d vsock_remove_connected -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x740a271b vsock_create_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x5c51821d vsock_create_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x74b7ee82 vsock_core_unregister EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x77c14317 vsock_addr_cast -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7a640857 vsock_remove_bound -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7dfcec95 vsock_remove_tap -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7e2647b7 vsock_core_get_transport -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x8d70df3b vsock_core_register +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7f7a776f vsock_remove_tap EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x90aa8549 vsock_find_cid -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9624f485 vsock_find_bound_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x97e018e9 vsock_for_each_connected_socket EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9bb6fd09 vsock_connected_table -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xa053be8c vsock_core_unregister -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xa6531572 vsock_add_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9f7927c1 vsock_insert_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xae1f6d48 vsock_add_pending EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xaf2674b5 vsock_addr_equals_addr -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc3d7584c vsock_stream_has_data -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc61dbc6b vsock_add_tap -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc8fef668 vsock_find_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xb03690f1 vsock_add_tap EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc92f7f50 vsock_table_lock -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd169e58a vsock_enqueue_accept -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd988a939 vsock_for_each_connected_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xe61d0f88 vsock_deliver_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xda084075 vsock_core_get_transport +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xdef1ab75 vsock_remove_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xe45a096a vsock_find_bound_socket EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xec96eadf vsock_addr_validate -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xfc4a32e1 vsock_stream_has_space -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x11f2ab23 cfg80211_pmsr_report -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x289e88c1 cfg80211_wext_siwscan -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x3de5accd cfg80211_wext_giwmode -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x4590dbb7 cfg80211_wext_giwfrag -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x5011f954 cfg80211_pmsr_complete -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x663e480a cfg80211_wext_siwrts -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x75f3cf0f cfg80211_vendor_cmd_reply -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x88800779 cfg80211_wext_giwrange -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x91d36d24 cfg80211_wext_giwscan -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xa64ab2c5 cfg80211_wext_siwmode -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xac6dfd8e cfg80211_wext_giwrts -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xac808ab1 cfg80211_wext_giwname -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xaf8fcf3b cfg80211_wext_siwfrag -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xcc9b90f9 cfg80211_shutdown_all_interfaces -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xda7a1e90 cfg80211_vendor_cmd_get_sender -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xee3a8acf cfg80211_wext_giwretry +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x0094ac86 cfg80211_wext_giwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x134b41db cfg80211_wext_siwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x2c5c6430 cfg80211_shutdown_all_interfaces +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x3607dbef cfg80211_wext_siwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x3d56c35e cfg80211_wext_giwretry +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x42929f4e cfg80211_pmsr_report +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x50a5c606 cfg80211_pmsr_complete +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x5d2d113c cfg80211_wext_giwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x74d24a44 cfg80211_vendor_cmd_reply +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x78dcaa12 cfg80211_wext_giwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xa9dd7707 cfg80211_wext_giwrange +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xcab4b8fc cfg80211_wext_siwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xd2fccf25 cfg80211_wext_siwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xe1dd037f cfg80211_vendor_cmd_get_sender +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xe6a485ae cfg80211_wext_giwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xfb6ac1d6 cfg80211_wext_giwname 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 @@ -18672,7485 +18753,7523 @@ -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x098f5bfc ipcomp_output -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x2825f3db ipcomp_input -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x4593cada ipcomp_init_state -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x6862a94f ipcomp_destroy +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x0a09156b ipcomp_destroy +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x1697dda1 ipcomp_init_state +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x3b3e302a ipcomp_output +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x83bc4379 ipcomp_input EXPORT_SYMBOL_GPL net/xfrm/xfrm_user 0x4a0c7516 xfrm_msg_min EXPORT_SYMBOL_GPL net/xfrm/xfrm_user 0xe2521b1c xfrma_policy -EXPORT_SYMBOL_GPL sound/ac97_bus 0xf38506ee snd_ac97_reset +EXPORT_SYMBOL_GPL sound/ac97_bus 0x8b840954 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 0x16a07c47 snd_card_add_dev_attr -EXPORT_SYMBOL_GPL sound/core/snd 0x25ce0152 snd_card_ref -EXPORT_SYMBOL_GPL sound/core/snd 0x26269a55 snd_power_ref_and_wait -EXPORT_SYMBOL_GPL sound/core/snd 0x28c48506 snd_ctl_disconnect_layer -EXPORT_SYMBOL_GPL sound/core/snd 0x2dbf2591 snd_device_disconnect -EXPORT_SYMBOL_GPL sound/core/snd 0x39009cba snd_ctl_apply_vmaster_followers -EXPORT_SYMBOL_GPL sound/core/snd 0x39594077 snd_device_get_state -EXPORT_SYMBOL_GPL sound/core/snd 0x47b15efb snd_ctl_register_layer -EXPORT_SYMBOL_GPL sound/core/snd 0x493af784 snd_card_rw_proc_new -EXPORT_SYMBOL_GPL sound/core/snd 0x51739427 snd_ctl_add_vmaster_hook -EXPORT_SYMBOL_GPL sound/core/snd 0x55733151 snd_ctl_activate_id -EXPORT_SYMBOL_GPL sound/core/snd 0x66ddb50e snd_ctl_sync_vmaster -EXPORT_SYMBOL_GPL sound/core/snd 0x7368660b snd_devm_card_new -EXPORT_SYMBOL_GPL sound/core/snd 0x7c46bb6f snd_card_disconnect_sync -EXPORT_SYMBOL_GPL sound/core/snd 0xc8e6a01d snd_device_initialize -EXPORT_SYMBOL_GPL sound/core/snd 0xd55dc31b snd_devm_request_dma -EXPORT_SYMBOL_GPL sound/core/snd 0xd575fb78 snd_ctl_get_preferred_subdevice +EXPORT_SYMBOL_GPL sound/core/snd 0x3b4b01af snd_card_disconnect_sync +EXPORT_SYMBOL_GPL sound/core/snd 0x3d280693 snd_device_disconnect +EXPORT_SYMBOL_GPL sound/core/snd 0x56d6aff0 snd_devm_card_new +EXPORT_SYMBOL_GPL sound/core/snd 0x7d8ef9e0 snd_device_get_state +EXPORT_SYMBOL_GPL sound/core/snd 0x80a63922 snd_ctl_disconnect_layer +EXPORT_SYMBOL_GPL sound/core/snd 0x898de21a snd_card_free_on_error +EXPORT_SYMBOL_GPL sound/core/snd 0x9a3b5556 snd_card_rw_proc_new +EXPORT_SYMBOL_GPL sound/core/snd 0xa0bdec02 snd_device_initialize +EXPORT_SYMBOL_GPL sound/core/snd 0xaf81063d snd_ctl_register_layer +EXPORT_SYMBOL_GPL sound/core/snd 0xb75a0e9a snd_ctl_activate_id +EXPORT_SYMBOL_GPL sound/core/snd 0xb7dbcc2b snd_ctl_apply_vmaster_followers +EXPORT_SYMBOL_GPL sound/core/snd 0xc62ab5ab snd_power_ref_and_wait +EXPORT_SYMBOL_GPL sound/core/snd 0xd7142c82 snd_ctl_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/core/snd 0xe786cbc2 snd_ctl_get_preferred_subdevice +EXPORT_SYMBOL_GPL sound/core/snd 0xf4732ac6 snd_devm_request_dma +EXPORT_SYMBOL_GPL sound/core/snd 0xf7a50876 snd_ctl_sync_vmaster EXPORT_SYMBOL_GPL sound/core/snd 0xfaf598c6 snd_ctl_request_layer -EXPORT_SYMBOL_GPL sound/core/snd-compress 0x356a8865 snd_compress_new -EXPORT_SYMBOL_GPL sound/core/snd-compress 0xf96824ff snd_compr_stop_error +EXPORT_SYMBOL_GPL sound/core/snd 0xfafe8b7b snd_card_ref +EXPORT_SYMBOL_GPL sound/core/snd 0xffe59fa9 snd_card_add_dev_attr +EXPORT_SYMBOL_GPL sound/core/snd-compress 0x47799e6f snd_compress_new +EXPORT_SYMBOL_GPL sound/core/snd-compress 0xcb73616d snd_compr_stop_error EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x04e1b99f snd_pcm_std_chmaps EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x09e913c1 snd_pcm_alt_chmaps -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x104cf378 snd_pcm_fill_iec958_consumer -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x1fc14c24 snd_pcm_lib_default_mmap -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x331df142 snd_pcm_stream_unlock -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x4779b947 snd_pcm_stream_unlock_irqrestore -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x5a9980ec snd_pcm_stop_xrun +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x140e08a9 snd_pcm_stream_lock +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x4345ac32 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 0x6456e9df snd_pcm_hw_constraint_eld +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x61cdf4d5 snd_pcm_stream_unlock_irq EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x649892e8 snd_pcm_create_iec958_consumer_default -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x6ceb9a62 snd_devm_alloc_pages -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x7ae9149e _snd_pcm_stream_lock_irqsave +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x722807fc snd_pcm_stream_unlock EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x8d864069 snd_pcm_rate_range_to_bits -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x8eb7a6d6 snd_pcm_add_chmap_ctls -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x9d201966 snd_pcm_stream_lock_irq +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x998f86c3 snd_pcm_lib_default_mmap EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xa286a234 snd_pcm_format_name +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xa8d4bbda snd_devm_alloc_pages EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xab8bc1a2 snd_pcm_rate_mask_intersect -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xc11a390d snd_pcm_stream_lock -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xdd199302 snd_pcm_stream_unlock_irq -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x053c2885 snd_dmaengine_pcm_pointer_no_residue -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x0c7efc37 snd_dmaengine_pcm_request_channel -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x135ff470 snd_dmaengine_pcm_open_request_chan -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x213dd0b3 snd_dmaengine_pcm_trigger -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x3002ad77 snd_dmaengine_pcm_pointer -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x3c7dee4e snd_dmaengine_pcm_refine_runtime_hwparams -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x4d59ceed snd_dmaengine_pcm_get_chan -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x98a32b3a snd_dmaengine_pcm_close_release_chan -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xa748b6f1 snd_dmaengine_pcm_close -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xd24de97e snd_hwparams_to_dma_slave_config -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xd672adfa snd_dmaengine_pcm_open -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xeeb61d8a snd_dmaengine_pcm_set_config_from_dai_data -EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0x4a587e74 __snd_seq_driver_register -EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0x66e3a310 snd_seq_driver_unregister -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x2807b8fb amdtp_am824_set_parameters -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x403f4f7f amdtp_domain_add_stream -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x4160c773 amdtp_domain_start -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x4329e353 amdtp_am824_add_pcm_hw_constraints -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x5256a25a amdtp_am824_midi_trigger -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x57feac73 amdtp_am824_set_pcm_position -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x5899476c amdtp_domain_destroy -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x88516ecc amdtp_am824_set_midi_position -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x8b8d52d2 amdtp_domain_stop -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x8c3713be amdtp_domain_init -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xb4fa4364 amdtp_am824_init -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xc74134a8 amdtp_domain_stream_pcm_pointer -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xe53d46b1 amdtp_domain_stream_pcm_ack -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x11e4028b snd_hdac_ext_stream_get_spbmaxfifo -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x123780f1 snd_hdac_ext_link_stream_start -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x24d4e3c3 snd_hdac_ext_link_set_stream_id -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x2636331e snd_hdac_ext_stream_init_all -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x27f32e38 snd_hdac_stream_free_all -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x2f3c770e snd_hdac_ext_bus_device_remove -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x31d2fa97 snd_hdac_ext_bus_link_power_up_all -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x3ea23c2a snd_hdac_ext_bus_link_power_up -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x4079b38c snd_hdac_ext_bus_init -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x5100873f snd_hdac_ext_stream_drsm_enable -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x517b7abe snd_hda_ext_driver_unregister -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x560de96b snd_hdac_ext_bus_ppcap_enable -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x5bca5c1a snd_hdac_ext_bus_link_power_down_all -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x5c7d167d snd_hdac_ext_stream_spbcap_enable -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x6942beb3 snd_hdac_ext_link_clear_stream_id -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x707914f6 snd_hdac_ext_stream_set_dpibr -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x714feffe snd_hdac_ext_bus_device_init -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x788ffba7 snd_hdac_ext_link_stream_reset -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x7eb36e58 snd_hdac_ext_bus_get_link -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x850ef80f snd_hdac_ext_bus_link_put -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x88384f55 snd_hdac_ext_stream_init -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x8956cf97 snd_hdac_ext_link_stream_setup -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x9407c6c3 snd_hdac_ext_stop_streams -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x96bd2359 snd_hdac_ext_stream_release -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x96d442a2 snd_hdac_link_free_all -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x98a19642 snd_hdac_ext_stream_decouple_locked -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xa4c907eb snd_hdac_ext_bus_link_get -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xa8d430df snd_hdac_ext_bus_link_power -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xb6b55b37 snd_hdac_ext_bus_get_ml_capabilities -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xb9a6e275 snd_hdac_ext_stream_assign -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xbc0e2fb6 snd_hdac_ext_bus_link_power_down -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xc2f16579 snd_hdac_ext_bus_device_exit -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xc7b987b1 snd_hda_ext_driver_register -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xcf77d32d snd_hdac_ext_bus_ppcap_int_enable -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xe9ffe366 snd_hdac_ext_link_stream_clear -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xea942871 snd_hdac_ext_bus_exit -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xeaec87c2 snd_hdac_ext_stream_set_spib -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xf21dee9d snd_hdac_ext_stream_set_lpib -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xf36ff069 snd_hdac_ext_stream_decouple -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x00234712 snd_hdac_device_unregister -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x052cad59 snd_hdac_bus_enter_link_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x066e6b73 snd_hdac_stream_set_params -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0b075379 snd_hdac_stream_start -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0e8bb2b7 snd_hdac_i915_set_bclk -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x18b6a0bd snd_hdac_sync_audio_rate -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x19f3251b snd_hdac_stream_release -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1cc9c9bf snd_hdac_acomp_get_eld -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1d09231b hdac_get_device_id -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1dfdf2f4 snd_hdac_bus_init_cmd_io -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1e61fd5b snd_hdac_power_up_pm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1e74ad1f snd_hdac_dsp_trigger -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2ac85189 snd_hdac_bus_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2bce8e22 snd_hdac_query_supported_pcm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2c0010f7 snd_hdac_bus_stop_cmd_io -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2c584647 snd_hdac_stream_sync_trigger -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2f56733b snd_hdac_regmap_sync -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x32cd8a68 snd_hdac_power_down -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x33a469c3 snd_hdac_regmap_update_raw_once -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3a0b1db7 snd_hdac_bus_get_response -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3a87a46a snd_hdac_regmap_write_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3b063d1e snd_hdac_i915_init +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xb715cefd snd_pcm_stream_unlock_irqrestore +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xb926d9a0 _snd_pcm_stream_lock_irqsave +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xc3355a2e snd_pcm_fill_iec958_consumer +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xd20cd442 snd_pcm_hw_constraint_eld +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xf14d0b31 snd_pcm_stream_lock_irq +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xf6b0928b snd_pcm_stop_xrun +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x0e71b762 snd_dmaengine_pcm_refine_runtime_hwparams +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x1ce5f174 snd_dmaengine_pcm_open +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x1fd40a1a snd_dmaengine_pcm_trigger +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x2472419a snd_hwparams_to_dma_slave_config +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x3b79d970 snd_dmaengine_pcm_get_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x62a06314 snd_dmaengine_pcm_close_release_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xb9573a0b snd_dmaengine_pcm_pointer +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xc7a08aa5 snd_dmaengine_pcm_open_request_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xd40436d5 snd_dmaengine_pcm_request_channel +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xd49fde0d snd_dmaengine_pcm_close +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xec084658 snd_dmaengine_pcm_set_config_from_dai_data +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xf2701629 snd_dmaengine_pcm_pointer_no_residue +EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0x1d4b6543 snd_seq_driver_unregister +EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0xbcf6ba2f __snd_seq_driver_register +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x16cc38a6 amdtp_am824_add_pcm_hw_constraints +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x1a95c5e7 amdtp_domain_add_stream +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x50a13430 amdtp_am824_init +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x571784f9 amdtp_domain_start +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x62504ad4 amdtp_domain_stream_pcm_ack +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xa725d55f amdtp_am824_set_pcm_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xaa230647 amdtp_domain_destroy +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xbd86df88 amdtp_domain_stop +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xe3b8d91e amdtp_am824_set_parameters +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xe4c1ac51 amdtp_domain_init +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xf4ca231d amdtp_am824_set_midi_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xf5b1fc20 amdtp_am824_midi_trigger +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xf79f9ba6 amdtp_domain_stream_pcm_pointer +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x090a95d0 snd_hdac_ext_stop_streams +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x14f20950 snd_hdac_ext_stream_init +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x1cf950ac snd_hdac_ext_stream_decouple_locked +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x1d402292 snd_hda_ext_driver_register +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x1ed1205f snd_hdac_ext_stream_release +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x271775f5 snd_hdac_stream_free_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x2e6f367b snd_hdac_ext_bus_link_get +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x32370867 snd_hdac_ext_bus_exit +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x36ef7be4 snd_hdac_ext_bus_link_power_up +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x3c642f3a snd_hdac_ext_stream_spbcap_enable +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x3eef9e13 snd_hdac_ext_bus_device_init +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x47b88012 snd_hdac_ext_stream_assign +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x49fa5d7f snd_hda_ext_driver_unregister +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x4b69569d snd_hdac_ext_stream_set_lpib +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x52abe92a snd_hdac_ext_link_stream_clear +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x52decaa7 snd_hdac_ext_stream_get_spbmaxfifo +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x58ffb246 snd_hdac_ext_bus_get_ml_capabilities +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x5e48ca7e snd_hdac_ext_stream_set_dpibr +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x657bac12 snd_hdac_ext_bus_ppcap_int_enable +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x69421bbe snd_hdac_ext_bus_link_power_down +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x6c2de300 snd_hdac_ext_bus_link_power +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x7effe323 snd_hdac_ext_bus_link_put +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x865263ce snd_hdac_ext_bus_get_link +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x8dc73ddb snd_hdac_ext_bus_device_exit +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x946b9eda snd_hdac_ext_bus_ppcap_enable +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x968886bc snd_hdac_ext_bus_link_power_up_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xa26475c1 snd_hdac_ext_bus_init +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xaa4aeedd snd_hdac_ext_stream_decouple +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xb4073459 snd_hdac_ext_bus_link_power_down_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xb6be5077 snd_hdac_ext_stream_set_spib +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xb8ff6031 snd_hdac_ext_link_set_stream_id +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xc507062b snd_hdac_ext_link_stream_start +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xc5b6494d snd_hdac_link_free_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xcae2722f snd_hdac_ext_stream_drsm_enable +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xd3bff963 snd_hdac_ext_link_clear_stream_id +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xd40bd8e4 snd_hdac_ext_bus_device_remove +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xd7041a78 snd_hdac_ext_link_stream_reset +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xde3591f5 snd_hdac_ext_stream_init_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xe12b3484 snd_hdac_ext_link_stream_setup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x01bdd217 snd_hdac_is_supported_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x053dab0e snd_hdac_setup_channel_mapping +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x05f74baa snd_hdac_regmap_write_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x09fd1fd4 snd_hdac_read_parm_uncached +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x10c0197c snd_hdac_stream_timecounter_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1e81d915 snd_hdac_i915_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2157686d snd_hdac_device_register +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x23d2d8ba snd_hda_bus_type +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x252d3780 snd_hdac_get_connections +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2a99b87c snd_hdac_stream_sync_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2d448e43 snd_hdac_set_codec_wakeup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2f61eeef snd_hdac_power_up +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x34a33a93 snd_hdac_bus_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3531955e snd_hdac_sync_audio_rate +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3781aa2e snd_hdac_regmap_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x389c0e5e snd_hdac_get_stream +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3b4dcce2 snd_hdac_codec_write EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3bd544c2 snd_hdac_get_active_channels -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3eda2a8c snd_hdac_bus_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x436d40b8 snd_hdac_bus_update_rirb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x46dd0437 snd_hdac_get_stream_stripe_ctl -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x48509b2d snd_hdac_add_chmap_ctls -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x48b97f5e snd_hdac_bus_free_stream_pages -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4bbe1e12 snd_hdac_power_up +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3e6f0e82 snd_hdac_regmap_sync +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x41d366eb snd_hdac_bus_exec_verb_unlocked +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4395ed38 snd_hdac_acomp_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4668bc1c snd_hdac_stream_start +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x46d4063b snd_hdac_register_chmap_ops +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x478d0808 snd_hdac_bus_update_rirb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x49cb40d6 snd_hdac_power_down +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4adeec1a snd_hdac_bus_reset_link EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4c7ec4b6 snd_hdac_get_ch_alloc_from_ca -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4dca798a snd_hdac_stream_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x54edb269 snd_hdac_bus_exec_verb_unlocked -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x54f59a3b snd_hdac_device_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x560cf2c6 _snd_hdac_read_parm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x568b431e snd_hdac_bus_init_chip -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x57e2d1ef snd_hdac_bus_parse_capabilities -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5c052c4a snd_hdac_stream_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4dfef975 snd_hdac_codec_link_up +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x50041938 snd_hdac_bus_stop_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5253a666 snd_hdac_bus_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x532a721d snd_hdac_codec_modalias +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5511743b snd_hdac_codec_link_down +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x58e8e6f3 snd_hdac_acomp_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5a53980e snd_hdac_get_stream_stripe_ctl +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5a60f77f snd_hdac_channel_allocation EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5c07cb49 snd_hdac_calc_stream_format -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5d1f079e snd_hdac_refresh_widgets -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6288882c snd_hdac_override_parm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6495621c snd_hdac_codec_link_up -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x64a52c01 snd_hda_bus_type +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5ced0371 snd_hdac_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x60455352 snd_hdac_bus_handle_stream_irq +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x61638b4d snd_hdac_device_unregister +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x636e55d8 snd_hdac_override_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6717e6e4 snd_hdac_sync_power_state EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x67bfe791 snd_hdac_spk_to_chmap -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6c487976 snd_hdac_stream_sync -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x73aa3ec5 snd_hdac_bus_stop_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x67d4923e snd_hdac_check_power_state +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x69f0fafa snd_hdac_bus_init_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6a358eef snd_hdac_query_supported_pcm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x72f8da97 snd_hdac_get_sub_nodes EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x77c754a8 snd_hdac_chmap_to_spk_mask -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x784f7aab snd_hdac_stream_assign -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x78afdd74 snd_hdac_is_supported_format -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7ad5c94e snd_hdac_register_chmap_ops -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7c81960a snd_hdac_stream_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x841f85fd snd_hdac_bus_handle_stream_irq -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8471b582 snd_hdac_device_set_chip_name -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x84861102 snd_hdac_codec_read -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8fbc7595 snd_hdac_stream_setup_periods -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8fdc4491 snd_hdac_device_register -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x91592326 snd_hdac_display_power -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x927519a8 snd_hdac_regmap_add_vendor_verb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x93a34367 snd_hdac_acomp_register_notifier -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9540f32b snd_hdac_sync_power_state -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x969a68b4 snd_hdac_regmap_read_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x977ea3ca snd_hdac_read_parm_uncached -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9884e379 snd_hdac_stream_clear +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x790a7846 snd_hdac_bus_alloc_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x79a570c5 snd_hdac_bus_free_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7a3a200a snd_hdac_regmap_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7add2963 snd_hdac_stream_stop +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7c3b835f snd_hdac_refresh_widgets +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7d4953c3 snd_hdac_stream_release +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7e8a5011 snd_hdac_stream_assign +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x81918c25 snd_hdac_stream_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x82ecedf6 snd_hdac_stream_setup_periods +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x84880472 snd_hdac_regmap_update_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8494b870 snd_hdac_stream_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x901b4577 snd_hdac_regmap_read_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9275b3c3 hdac_get_device_id +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x936cdbef snd_hdac_bus_enter_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x94d2d52d snd_hdac_codec_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9954a071 snd_hdac_power_up_pm EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9a8e1877 snd_array_free -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9b267f3c snd_hdac_power_down_pm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa36a04d9 snd_hdac_device_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa606e996 snd_hdac_get_stream -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa959504e snd_hdac_get_connections -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xab224336 snd_hdac_bus_link_power -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xaf5d9b30 snd_hdac_channel_allocation -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb26c5cfe snd_hdac_dsp_cleanup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb5d4e994 snd_hdac_bus_send_cmd -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb7fc05ab snd_hdac_get_sub_nodes -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb93f18de snd_hdac_stream_setup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb9ec2001 snd_hdac_regmap_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbc2a9596 snd_hdac_setup_channel_mapping +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9b08fd5c snd_hdac_bus_parse_capabilities +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9cf06959 snd_hdac_device_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa26275b8 snd_hdac_bus_link_power +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa46bcbda snd_hdac_dsp_prepare +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa81add77 snd_hdac_display_power +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa8ead5ca snd_hdac_acomp_register_notifier +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xaad7696e snd_hdac_stream_clear +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xac1a16ec snd_hdac_bus_init_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xadd79515 snd_hdac_i915_set_bclk +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb469a599 snd_hdac_power_down_pm EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe7dd7dc snd_array_new -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc433c22f snd_hdac_acomp_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc4a957e3 snd_hdac_stream_stop -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc9e28b01 snd_hdac_stream_timecounter_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd0675e2a snd_hdac_codec_link_down -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd7cca876 snd_hdac_set_codec_wakeup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc2e2e84a snd_hdac_bus_get_response +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc3488815 snd_hdac_regmap_update_raw_once +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc8e1e304 snd_hdac_stream_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc9741389 snd_hdac_stream_set_params +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcfba9324 snd_hdac_regmap_add_vendor_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd4b86a82 snd_hdac_device_set_chip_name +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd73ceaff snd_hdac_device_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd80a7d5d _snd_hdac_read_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdec50337 snd_hdac_dsp_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdee49933 snd_hdac_stream_setup EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe4e07754 snd_hdac_print_channel_allocation -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe7d1cf14 snd_hdac_check_power_state -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe8d5ec92 snd_hdac_bus_exit_link_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xeb9fe45e snd_hdac_codec_write -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xec55dd4f snd_hdac_bus_reset_link -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf39bfed4 snd_hdac_read -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf5d2b97d snd_hdac_regmap_update_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf955511d snd_hdac_bus_alloc_stream_pages -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfa502f4b snd_hdac_regmap_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfb2ca971 snd_hdac_acomp_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfc53880f snd_hdac_dsp_prepare -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfee3458b snd_hdac_codec_modalias +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xeb75a095 snd_hdac_add_chmap_ctls +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xefc2adaf snd_hdac_stream_sync +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf18fe093 snd_hdac_bus_send_cmd +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf52687b0 snd_hdac_dsp_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf843629e snd_hdac_bus_exit_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfba751c6 snd_hdac_bus_stop_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfca4db2d snd_hdac_acomp_get_eld EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x4e859456 intel_nhlt_free -EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x6e95e853 intel_nhlt_get_dmic_geo -EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0xad2ed8ab snd_intel_dsp_driver_probe -EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0xd5635a25 intel_nhlt_init -EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0xfcb49ba6 snd_intel_acpi_dsp_driver_probe -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x2083c241 snd_ak4113_create -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x67a02e87 snd_ak4113_reinit -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x70252a56 snd_ak4113_external_rate -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x779a7ac5 snd_ak4113_build -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xa08971c2 snd_ak4113_reg_write -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xedf1b3db snd_ak4113_check_rate_and_errors -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x040a6773 snd_hda_override_conn_list -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x04eaab2f snd_hda_codec_new +EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x559d2ab6 intel_nhlt_init +EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x857352a1 snd_intel_acpi_dsp_driver_probe +EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x9be130e6 snd_intel_dsp_driver_probe +EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0xc331b40d intel_nhlt_get_dmic_geo +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x2b18b8ff snd_ak4113_reinit +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x5e677463 snd_ak4113_reg_write +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x686fa7b3 snd_ak4113_external_rate +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x83452e25 snd_ak4113_build +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xa30bb258 snd_ak4113_create +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xdddbd805 snd_ak4113_check_rate_and_errors +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x002efbd7 snd_hda_enable_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x04a3f983 snd_hda_sync_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x05d38742 snd_hda_codec_amp_init EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0676f5ac snd_hda_get_input_pin_attr -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0810587b snd_hda_get_connections -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0ee59d18 snd_hda_correct_pin_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0f30189f snd_hda_create_spdif_share_sw -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0ffa0f65 snd_hda_jack_set_dirty_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x10f34112 snd_hda_add_new_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1147f9ad snd_hda_get_bool_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x11c4db7f snd_hda_mixer_amp_volume_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x13794407 snd_hda_codec_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x14511218 snd_hda_find_mixer_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x158023b4 snd_hda_codec_set_pincfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x18dd4a4e snd_hda_jack_unsol_event -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1a9927ac snd_hda_codec_load_dsp_trigger -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2152722c snd_hda_codec_parse_pcms -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x21e543b0 snd_hda_add_vmaster_hook -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x26b95cc6 __snd_hda_add_vmaster -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x28a7a3c8 snd_hda_parse_pin_defcfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x294e1c15 azx_get_pos_lpib -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x29a0fa27 snd_hda_shutup_pins -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2c2d3bb9 snd_hda_pick_pin_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2c5de9a6 snd_hda_add_verbs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2e53db70 snd_hda_codec_amp_update -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2e9f32a6 snd_hda_set_vmaster_tlv -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x31c78a47 azx_stop_all_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x33ac31eb snd_hda_codec_set_pin_target -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x364680cd snd_hda_jack_report_sync +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x06a7e39f snd_hda_get_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0a71a7f8 snd_hda_jack_detect_enable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0a7f80c2 snd_hda_apply_pincfgs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0cd9979e snd_hda_mixer_amp_switch_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0ff0d925 snd_hda_jack_pin_sense +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1054c6c9 snd_hda_mixer_amp_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x105af7e5 query_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x11f2e1b3 __snd_hda_codec_cleanup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x16f3f54c snd_hda_codec_get_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x19af1221 snd_hda_codec_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1fde9233 snd_hda_jack_detect_enable_callback_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x22f9bd43 snd_hda_pick_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x24d69d30 snd_hda_mixer_amp_volume_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x269b7355 snd_hda_get_int_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x28bef106 snd_hda_check_amp_list_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x29c9bc6b snd_hda_get_num_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2bf6f68d snd_hda_codec_set_name +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2c785047 snd_hda_override_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2d30d46c snd_hda_load_patch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2e585d4b snd_hda_parse_pin_defcfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2eefaddc snd_hda_attach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2ff0e6cf snd_hda_codec_pcm_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x30dd0acb snd_hda_sequence_write +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x327424b8 snd_hda_codec_amp_update +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x37983734 snd_hda_enum_helper_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x38520467 snd_hda_multi_out_analog_prepare EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x38ce402b azx_interrupt -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3fd85253 snd_hda_get_conn_index -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x424b9fd7 hda_codec_driver_unregister -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x42862c0e snd_hda_multi_out_analog_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x43859390 snd_hda_enable_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4501feb6 __snd_hda_codec_cleanup_stream -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x458ee348 snd_hda_set_dev_select -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4a40c8a2 snd_hda_apply_pincfgs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4a94a5ab hda_get_autocfg_input_label -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4c297afc azx_get_pos_posbuf -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4fa3b3ac snd_hda_check_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x53ec3113 snd_hda_jack_add_kctl_mst -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x543bf28e snd_hda_get_int_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x547352d9 snd_hda_override_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x595fb116 snd_hda_add_imux_item -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5990f419 snd_hda_sync_vmaster_hook -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5af6112b snd_hda_add_nid -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5c547467 snd_hda_jack_detect_enable_callback_mst -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5ecf975b snd_hda_unlock_devices -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x61580de8 snd_hda_jack_set_button_state -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x615ae7d7 snd_hda_sequence_write -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x62ab7312 snd_hda_codec_get_pin_target -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x64d34ce8 snd_hda_get_conn_list -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x64eb4daf snd_hda_multi_out_dig_open -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x693bf1a1 snd_hda_mixer_amp_tlv -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6d33d970 snd_hda_mixer_amp_switch_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x70e08a33 azx_init_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x730972d8 snd_hda_attach_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x73653272 snd_hda_spdif_ctls_unassign -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7419bab1 snd_hda_codec_configure -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x76718cea snd_hda_create_dig_out_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7777bd71 snd_hda_get_default_vref -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x77c17557 snd_hda_mixer_amp_volume_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x77ecbfb0 snd_hda_jack_detect_enable -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7adec9c9 snd_hda_jack_tbl_get_mst -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7dad52f2 snd_hda_pick_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7e9f5c0c is_jack_detectable -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x821f3c88 snd_hda_input_mux_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x874db294 snd_hda_codec_amp_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x89dc09a2 snd_hda_mixer_amp_volume_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8a02d81a snd_hda_mixer_amp_switch_get_beep -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8ac3b4b2 snd_hda_lock_devices -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8d780721 snd_hda_enum_helper_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8e635125 snd_hda_spdif_ctls_assign -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x932ea585 snd_hda_mixer_amp_switch_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x97278fe6 snd_hda_jack_add_kctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9a408ade snd_hda_codec_build_controls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9b82c94a azx_free_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9bb5a9be query_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9ce37700 azx_stop_chip -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9d56387c snd_hda_codec_eapd_power_filter -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9d9a33ba snd_hda_codec_amp_init_stereo -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9e3d2d9a snd_hda_codec_set_power_to_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa0eb5c81 snd_hda_codec_amp_stereo -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa26867d1 snd_hda_jack_tbl_get_from_tag -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa3f7d536 snd_hda_codec_load_dsp_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa54796b3 snd_hda_codec_update_widgets -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa5b19788 snd_hda_ctl_add -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa7b8a1e4 snd_hda_jack_pin_sense -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaa22f61f azx_codec_configure -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xacf6d252 snd_hda_get_num_devices -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xad97e866 snd_hda_multi_out_dig_close -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaea9db79 _snd_hda_set_pin_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaf49c435 snd_hda_codec_load_dsp_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb340f749 snd_hda_apply_verbs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb3eb0128 azx_get_position -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb448699a snd_hda_get_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbbc204ca snd_hda_get_dev_select -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc0fd7bc2 __hda_codec_driver_register -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc15e20bc snd_hda_get_pin_label -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc4a1d328 snd_hda_codec_setup_stream -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc848c5c9 snd_hda_codec_cleanup_for_unbind -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc9fb09bd snd_hda_jack_poll_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcdb1dd96 snd_hda_detach_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xce22c290 snd_hda_codec_set_name -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd019b5aa azx_bus_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd03d372e azx_probe_codecs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd0d9be38 snd_hda_multi_out_analog_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd0e4c52d snd_hda_codec_get_pincfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd756fdea snd_hda_codec_pcm_new -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdbff182c snd_hda_multi_out_dig_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdda1b37d snd_hda_jack_set_gating_jack -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdf14067d snd_hda_set_power_save +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x395f275f snd_hda_jack_add_kctl_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3fcfdc4a snd_hda_apply_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x41ddc82b snd_hda_check_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x459d9ac4 snd_hda_multi_out_analog_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x481aceb6 snd_hda_codec_pcm_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x48e377cb azx_probe_codecs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x498e5307 snd_hda_multi_out_dig_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x53ed855f snd_hda_get_default_vref +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x56fef6b3 snd_hda_set_vmaster_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5993b06a azx_bus_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5c45dbc0 snd_hda_jack_set_dirty_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5cea21fc azx_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5ea84e98 azx_init_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6042494b azx_get_pos_lpib +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x64e4d91c snd_hda_codec_eapd_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x654df5df snd_hda_mixer_amp_volume_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6764c05e azx_free_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x69064184 snd_hda_get_bool_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6ef6bdf0 snd_hda_codec_amp_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6f9d4fbf snd_hda_create_spdif_share_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x75b65e35 snd_hda_codec_cleanup_for_unbind +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x77cdedde snd_hda_jack_bind_keymap +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x78b5c824 snd_hda_codec_build_controls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x79275ccd snd_hda_multi_out_analog_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7b8a314a snd_hda_get_pin_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7c150df5 hda_codec_driver_unregister +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7c76ed95 snd_hda_jack_poll_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x84b15d61 snd_hda_get_connections +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x84b8b968 _snd_hda_set_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x89465f61 snd_hda_create_spdif_in_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x89bf4de3 snd_hda_multi_out_dig_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8a90e5bb snd_hda_codec_load_dsp_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9091a2b3 snd_hda_override_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x912bc7c1 snd_hda_lock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x965a6205 snd_hda_add_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9aac29bf __hda_codec_driver_register +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9ac7a1a0 snd_hda_spdif_ctls_unassign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9c377d3b snd_hda_ctl_add +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9d34bfe4 snd_hda_jack_add_kctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9ff3b2fa snd_hda_jack_report_sync +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa04af2cb snd_hda_apply_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa2c675d9 snd_hda_codec_parse_pcms +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa39c1d0a snd_hda_codec_load_dsp_trigger +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa4986fae snd_hda_codec_device_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa5629c44 snd_hda_shutup_pins +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa627efd6 snd_hda_jack_set_gating_jack +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa6d0fe8c snd_hda_codec_load_dsp_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa8454710 snd_hda_add_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa8e60a62 snd_hda_get_dev_select +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa94d9631 snd_hda_set_dev_select +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaa5e0d39 snd_hda_correct_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaa607bd6 snd_hda_get_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xabd830ab snd_hda_codec_set_power_to_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xae8cbba4 snd_hda_multi_out_dig_close +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xafe2cfa1 snd_hda_set_power_save +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb596af2c hda_get_autocfg_input_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb60e3797 azx_get_pos_posbuf +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb8b67dfd snd_hda_mixer_amp_switch_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb91c7205 snd_hda_jack_tbl_get_from_tag +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb9cf5ab4 azx_stop_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xba405a00 snd_hda_jack_tbl_get_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbbc83ec7 snd_hda_mixer_amp_switch_put_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbc734b46 snd_hda_multi_out_dig_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbd7b1db8 azx_init_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbfa32635 snd_hda_mixer_amp_switch_get_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc0b0f684 snd_hda_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc27f5a3f snd_hda_codec_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc46c2f8d snd_hda_find_mixer_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc6b4e6ac snd_hda_codec_set_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xca18f10f snd_hda_detach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd1221fbc snd_hda_mixer_amp_volume_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd19259da snd_hda_spdif_ctls_assign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd2065c37 snd_hda_add_new_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd6239e3e snd_hda_pick_pin_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd65b0c77 snd_hda_codec_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xda66fd95 snd_hda_add_imux_item +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdbff9e34 snd_hda_jack_unsol_event +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdc5fee85 snd_hda_codec_set_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdd7c14c1 snd_hda_jack_set_button_state EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe118de5d snd_pcm_2_1_chmaps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe2475e39 snd_hda_check_amp_list_power -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe37ad609 snd_hda_codec_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe979a0d6 snd_hda_apply_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe9939916 snd_hda_codec_get_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeaed9052 snd_hda_unlock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeb50c222 is_jack_detectable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xebc221e0 snd_hda_codec_configure EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeda3a721 snd_print_pcm_bits -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xee1f2d29 azx_init_chip -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf0532c7b snd_hda_multi_out_analog_open -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf28af76d snd_hda_jack_detect_state_mst -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf3d80889 snd_hda_jack_bind_keymap -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf470d78e snd_hda_multi_out_dig_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf50196c0 snd_hda_create_spdif_in_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf52b0bad snd_hda_mixer_amp_switch_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf71f5a09 snd_hda_mixer_amp_switch_put_beep -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf847998e snd_hda_spdif_out_of_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xef350ffd snd_hda_input_mux_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xef9b8998 snd_hda_jack_detect_state_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf5985bf5 snd_hda_spdif_out_of_nid EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf8dc35ac snd_hda_input_mux_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfbedc9f2 snd_hda_codec_pcm_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfe07e247 snd_hda_codec_device_new -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xff2f5013 snd_hda_load_patch -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x02627944 snd_hda_gen_add_mute_led_cdev -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x084c21fe snd_hda_add_new_path -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x14b49629 snd_hda_gen_check_power_status -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x20b677cb snd_hda_get_path_idx -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x59540d51 snd_hda_gen_add_kctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x59bd772d snd_hda_gen_add_micmute_led_cdev -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x6097011b snd_hda_gen_stream_pm +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf92d1512 snd_hda_mixer_amp_switch_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf961b32f __snd_hda_add_vmaster +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfb3edefc snd_hda_codec_setup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfb3f0280 snd_hda_create_dig_out_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfbc318d4 snd_hda_codec_amp_init_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfca81306 snd_hda_codec_update_widgets +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfdb72f5a azx_stop_all_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfdcd9ffc snd_hda_get_conn_index +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xff0e2843 azx_get_position +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x15b82c7d snd_hda_add_new_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x36d4c682 snd_hda_gen_fix_pin_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x3f00cd0d snd_hda_gen_build_pcms +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x404f7128 snd_hda_gen_build_controls EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x76dc6871 hda_main_out_badness -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x8205f78b snd_hda_gen_update_outputs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x86d671a2 snd_hda_gen_line_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x771efbd3 snd_hda_gen_mic_autoswitch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x804efaab snd_hda_get_path_from_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x8145cbd5 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 0x8b4a6950 snd_hda_gen_free -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x8cdcf662 snd_hda_gen_fix_pin_power -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x9a6c0784 snd_hda_gen_hp_automute -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x9e18577d snd_hda_activate_path -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xa4b67056 snd_hda_gen_parse_auto_config -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xafd155dc snd_hda_gen_spec_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xbe87c34a snd_hda_gen_build_pcms -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xc3578d9a snd_hda_gen_mic_autoswitch -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xc3d14e60 snd_hda_gen_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xe0d14fc6 snd_hda_get_path_from_idx -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xed4784cd snd_hda_gen_path_power_filter -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xf74563f2 snd_hda_gen_build_controls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x90558534 snd_hda_gen_add_micmute_led_cdev +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x925918fc snd_hda_gen_free +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x9f20e241 snd_hda_gen_hp_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xa3d88d59 snd_hda_gen_add_mute_led_cdev +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xa99a1d9c snd_hda_gen_check_power_status +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xac2a7f16 snd_hda_gen_spec_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xae8ef8a9 snd_hda_gen_line_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xb3d34125 snd_hda_get_path_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xb95150a8 snd_hda_gen_path_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xbb5ab862 snd_hda_gen_update_outputs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xd8e5eef3 snd_hda_gen_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xe11f1974 snd_hda_gen_parse_auto_config +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xe5931497 snd_hda_gen_add_kctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xf3bb13ee snd_hda_activate_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 0xaff69f43 adau1372_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0x18ae15e1 adau1761_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0x9400e95d adau1761_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x08dd041d adau17x1_readable_register -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x17e50ab3 adau17x1_add_widgets -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x1e8f66b5 adau17x1_resume -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x1f2653f3 adau17x1_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x87963690 adau17x1_volatile_register -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x93649d55 adau17x1_dai_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xabe2d143 adau17x1_add_routes -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xbf2c8d3f adau17x1_precious_register -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xd304ef84 adau17x1_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xd671831e adau17x1_set_micbias_voltage -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau7118 0x8769795b adau7118_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x0091f8a4 arizona_ng_hold -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x0637a0a2 arizona_init_dvfs -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x08eacaef arizona_init_gpio -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x0ba332ad arizona_out_vd_ramp -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x147bdff5 arizona_isrc_fsh -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x18276c1f arizona_init_fll -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x267e4c8d arizona_set_sysclk -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x31bdb6e1 arizona_dvfs_down -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x38087f6f arizona_jack_codec_dev_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x41f49867 arizona_in_ev -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x459a6f71 arizona_init_mono +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1372 0x8480aabd adau1372_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0xf352acf1 adau1761_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0xf5800ec6 adau1761_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x04e38166 adau17x1_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x20224797 adau17x1_readable_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x26024f49 adau17x1_volatile_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x4039b8cf adau17x1_add_widgets +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x4d490f9a adau17x1_precious_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x4e55fc5f adau17x1_resume +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x5d10c0e7 adau17x1_set_micbias_voltage +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x8cc5d2c9 adau17x1_add_routes +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x8f59c138 adau17x1_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xa9ab6f4a adau17x1_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau7118 0xac4e39ad adau7118_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x0082b552 arizona_lhpf_coeff_put +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x0c2e23e1 arizona_set_output_mode +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x0ec1da61 arizona_asrc_rate1 +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x10d26283 arizona_dvfs_up +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x14305bae arizona_out_vd_ramp +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x16d4341a arizona_lhpf3_mode +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x16fc5f30 arizona_isrc_fsl +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x17f688b3 arizona_anc_ev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x1a9eb94e arizona_in_hpf_cut_enum +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x1f2b6e40 arizona_input_analog +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x279c0d2b arizona_out_ev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x2841f400 arizona_set_fll +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x28cba12b arizona_output_anc_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x2d39e081 arizona_init_spk +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x2debec01 arizona_in_ev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x2feefe10 arizona_init_spk_irqs +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x36e7e129 arizona_free_spk_irqs EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x46277216 arizona_rate_val -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x467dbc43 arizona_lhpf_coeff_put -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x472bb7b2 arizona_asrc_rate1 -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x4c2f11ba arizona_input_analog -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x537bcdbe arizona_anc_ng_enum -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x54a0b794 arizona_out_ev -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x58650c84 arizona_init_dai -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x5f3e59c9 arizona_lhpf3_mode -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x67fc4b6c arizona_free_spk_irqs +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x4a984996 arizona_in_dmic_osr +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x4ce8a4bd arizona_anc_ng_enum +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x53644800 arizona_jack_codec_dev_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x638d2368 arizona_init_mono EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x69102a20 arizona_sample_rate_text -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x6a74536d arizona_out_vi_ramp -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x71920654 arizona_init_common +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x6b480006 arizona_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x703a363c arizona_of_get_audio_pdata EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x729a5ef3 arizona_mixer_values -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x74989ff2 arizona_init_spk_irqs -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x78148ea9 arizona_clk_ev -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x7ac2eb83 arizona_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x75e73a6e arizona_out_vi_ramp +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x780f1aec arizona_init_common +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x7bc2f8be arizona_anc_input_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x7c7e4a5b arizona_eq_coeff_put 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 0x817416ff arizona_set_fll -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x8be3802c arizona_hp_ev -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x8fea9de3 arizona_isrc_fsl -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x96cb9615 arizona_jack_set_jack -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x98493223 arizona_in_hpf_cut_enum -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x9a996747 arizona_lhpf4_mode -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x9e9a72d8 arizona_voice_trigger_switch -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xa804ff2d arizona_output_anc_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xa8a6ca43 arizona_simple_dai_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xa9ee2f91 arizona_set_output_mode +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x80e9241d arizona_voice_trigger_switch +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x814b2533 arizona_lhpf1_mode +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x8d6d1d26 arizona_isrc_fsh +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x8f2d66c9 arizona_dvfs_down +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x9698a23b arizona_init_vol_limit +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x9717e984 arizona_in_vd_ramp +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x9f89d6cb arizona_init_dvfs +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xa26f8038 arizona_ng_hold +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xa646029d arizona_jack_codec_dev_remove EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xab4d845c arizona_rate_text -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xb664046f arizona_set_fll_refclk -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xbc5cd198 arizona_adsp2_rate_controls -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xbf2ae597 arizona_in_vi_ramp -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xc1bbe722 arizona_init_vol_limit -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xc84fc2fb arizona_in_dmic_osr -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xc8a148e0 arizona_lhpf1_mode +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xb0a33fae arizona_lhpf2_mode +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xc175a0d2 arizona_simple_dai_ops EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xc9c29637 arizona_mixer_tlv -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xcf5880d3 arizona_dvfs_sysclk_ev -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xd1fb352b arizona_anc_input_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xd295fdf3 arizona_jack_codec_dev_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xd9fe566d arizona_anc_ev -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xdefd8457 arizona_in_vd_ramp -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xdf489fcc arizona_init_spk +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xcef87c0a arizona_adsp2_rate_controls +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xd23c0973 arizona_init_gpio +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xd3730a94 arizona_lhpf4_mode +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xd45c8117 arizona_dvfs_sysclk_ev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xd6717bfd arizona_init_fll +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xd725b014 arizona_dai_ops EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xdfe804b8 arizona_sample_rate_val -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xe25fc471 arizona_dvfs_up -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xf048f530 arizona_of_get_audio_pdata -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xf949527d arizona_lhpf2_mode -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xfc433144 arizona_eq_coeff_put -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x6c03832b cs4271_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0xbca3e8e1 cs4271_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x2361caf7 cs42l51_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x33667ff0 cs42l51_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xefcecfa8 arizona_clk_ev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xf54f8218 arizona_hp_ev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xf5834468 arizona_set_fll_refclk +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xf6c08844 arizona_in_vi_ramp +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xf973a8c6 arizona_init_dai +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xfe073029 arizona_jack_set_jack +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0x2dabe141 cs35l41_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0xd2bfdfad cs35l41_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0xf58158bb cs35l41_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x2f743618 cs35l41_register_errata_patch +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x3a0a045c cs35l41_regmap_i2c +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x8c5f0283 cs35l41_regmap_spi +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x9261eee2 cs35l41_set_channels +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x9af26225 cs35l41_test_key_lock +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xb702b86e cs35l41_boost_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xbd75f64f cs35l41_otp_unpack +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xdfa84ac8 cs35l41_test_key_unlock +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0xc0370ff4 cs4271_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0xd31030f2 cs4271_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x33aae125 cs42l51_suspend EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x375ad98c cs42l51_of_match -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x3762c44c cs42l51_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x65a6bbe2 cs42l51_suspend -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xcfb9fbfb cs42l51_resume +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x97b6ba9e cs42l51_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xaa2b86ca cs42l51_resume +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xd9730361 cs42l51_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xf98fce6a cs42l51_remove EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x0245c4f2 cs42xx8_of_match -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x60c19a2a cs42xx8_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x3c88e194 cs42xx8_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x451a7ebc cs42xx8_pm EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x7cac7292 cs42888_data -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x9436e0d3 cs42xx8_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x9ea62046 cs42xx8_probe EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xcd3794c9 cs42448_data -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xf52f1ffd cs42xx8_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0x7e8391b2 da7219_aad_jack_det -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0x8fc8ff31 da7219_aad_exit -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0xacd268e6 da7219_aad_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0xfd40118d da7219_aad_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0xef216761 es8328_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0xf7d722c3 es8328_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hdac-hda 0x11354822 snd_soc_hdac_hda_get_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hdac-hdmi 0x379d0a8e hdac_hdmi_jack_port_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hdac-hdmi 0xac068112 hdac_hdmi_jack_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98090 0xf3593d3d max98090_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x696d9336 soc_codec_dev_max98373 -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x7179ed74 max98373_reset -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0xd65f4943 max98373_slot_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0xf9aa66b7 soc_codec_dev_max98373_sdw -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8824 0x9c2eff1b nau8824_enable_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8825 0xf33fbe84 nau8825_enable_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0xafcde619 pcm1789_common_exit -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0xd7d97a52 pcm1789_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0xff5d8313 pcm1789_common_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0xd069d67a pcm179x_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0xd3aa15b9 pcm179x_common_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0x2dab26b9 pcm186x_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0xac2f4286 pcm186x_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x5b4e0853 pcm3168a_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x8e16050f pcm3168a_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x90c14f58 pcm3168a_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0xb73e8862 pcm3168a_pm_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x52f8ea32 pcm512x_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x56a9de8d pcm512x_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xc1737699 pcm512x_pm_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xdd8fe706 pcm512x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0x2d5b3602 da7219_aad_exit +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0x3fe7faa9 da7219_aad_jack_det +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0x4ab71edd da7219_aad_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0x8ad04d36 da7219_aad_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x2ce944a9 es8328_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x44ff8812 es8328_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hdac-hda 0x681e8a55 snd_soc_hdac_hda_get_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hdac-hdmi 0x11433f3f hdac_hdmi_jack_port_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hdac-hdmi 0x75d84c85 hdac_hdmi_jack_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98090 0x01fb2e03 max98090_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x4b4a03ae soc_codec_dev_max98373 +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x702a8a31 max98373_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x73e8e48d soc_codec_dev_max98373_sdw +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0xcd72f76c max98373_slot_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x03a40367 mt6358_mtkaif_calibration_disable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0xb90d6803 mt6358_mtkaif_calibration_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0xe2777bbc mt6358_set_mtkaif_protocol +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0xf79ad56e mt6358_set_mtkaif_calibration_phase +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8824 0x727f4075 nau8824_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8825 0x79702c23 nau8825_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x15b616e8 pcm1789_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x2c8f12af pcm1789_common_exit +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x75cedb16 pcm1789_common_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0x1206bac0 pcm179x_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0x4dda3ea3 pcm179x_common_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0x28798854 pcm186x_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0x423e85ab pcm186x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x09251c02 pcm3168a_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x73276a40 pcm3168a_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0xc4020aae pcm3168a_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0xd84d2e2f pcm3168a_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x339e202b pcm512x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x9c3a5f76 pcm512x_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xde7b780e pcm512x_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xf98314a4 pcm512x_remove EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x5dc92cdf rl6231_pll_calc EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x70617a04 rl6231_get_clk_info EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x8d7fa148 rl6231_get_pre_div EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0xdba4502f rl6231_calc_dmic_clk EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6347a 0xa7aa810f rl6347a_hw_write EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6347a 0xade4bf4c rl6347a_hw_read -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt286 0xc9de0a6b rt286_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt298 0x4c769c8e rt298_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt286 0x96691ef6 rt286_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt298 0x207c70b3 rt298_mic_detect 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 0x109b032b rt5640_detect_headset -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x2fb6be4b rt5640_set_ovcd_params -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x57325287 rt5640_dmic_enable -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x651a0688 rt5640_enable_micbias1_for_ovcd -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xb6de3d11 rt5640_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xe8a12233 rt5640_disable_micbias1_for_ovcd -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0x17d86ec3 rt5645_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0x5b2bc595 rt5645_set_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5659 0x71e44aea rt5659_set_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5663 0x7257216e rt5663_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0x0f14e88e rt5670_jack_suspend +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x1fae4d89 rt5640_enable_micbias1_for_ovcd +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x2321f655 rt5640_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x3afcd31e rt5640_disable_micbias1_for_ovcd +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x786454cc rt5640_set_ovcd_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xb413e246 rt5640_dmic_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xc0de0fe6 rt5640_detect_headset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0xb7c84d7e rt5645_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0xd8ac3bf4 rt5645_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5659 0x10e70e23 rt5659_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5663 0xd5405fdd rt5663_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0x2458fc12 rt5670_set_jack_detect EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0x2f5ee4db rt5670_components -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0x7ef661c4 rt5670_set_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0xa4c655a4 rt5670_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0xe230b76c rt5670_jack_resume -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677 0x1bd70a70 rt5677_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0xa3b14fa8 rt5670_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0xb1a0d164 rt5670_jack_suspend +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0xf8b3d13f rt5670_jack_resume +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677 0x2deea6ee 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 0x0496af14 rt5682_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x0fb3f8be rt5682_soc_component_dev EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x28730696 rt5682_supply_names -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x43b5d3fe rt5682_aif2_dai_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x4746c708 rt5682_volatile_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x30d3fd14 rt5682_aif2_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x3a3a1220 rt5682_volatile_register EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x59d3d967 rt5682_jack_detect_handler -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x5cc22052 rt5682_readable_register -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x6b25ff26 rt5682_apply_patch_list -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x6fefa405 rt5682_headset_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x73856b71 rt5682_parse_dt -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x900247ad rt5682_calibrate -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xa88268fd rt5682_aif1_dai_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xaa86cde4 rt5682_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x62883c2d rt5682_apply_patch_list +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x6412ae15 rt5682_parse_dt +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x673c7463 rt5682_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x77cdb9a2 rt5682_soc_component_dev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xb4c07596 rt5682_headset_detect EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xb897de56 rt5682_reg -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x0d334cff sigmadsp_reset -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x5442de57 sigmadsp_attach -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x769fa703 sigmadsp_setup -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xa04214bc sigmadsp_restrict_params -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xfb599ce0 devm_sigmadsp_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-i2c 0xe56d27df devm_sigmadsp_init_i2c -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-regmap 0x39c2a54f devm_sigmadsp_init_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x558a9195 ssm2602_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0xfaf920a6 ssm2602_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic32x4 0x05f3324f aic32x4_register_clocks -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic3x 0xe78aa8b5 aic3x_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0x868abb27 ts3a227e_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xc450a290 rt5682_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xc49139bf rt5682_calibrate +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xdbe44617 rt5682_aif1_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xfe01c7a9 rt5682_readable_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x148fb7eb sigmadsp_setup +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x7b8f4e00 devm_sigmadsp_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x7ce6a36f sigmadsp_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x98437c52 sigmadsp_restrict_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xc56c2753 sigmadsp_attach +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-i2c 0xf79d3c57 devm_sigmadsp_init_i2c +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-regmap 0xa9948c51 devm_sigmadsp_init_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x66ccfadd ssm2602_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x97e5fd2f ssm2602_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic32x4 0xe6672cb1 aic32x4_register_clocks +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic3x 0x30afdc8e aic3x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0xa0a050d0 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 0x622d272f wcd938x_swr_get_current_bank -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x70890cdf wcd938x_sdw_device_get -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x7fb9ac80 wcd938x_sdw_free -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0xb94d6104 wcd938x_sdw_hw_params -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0xe01b20c6 wcd938x_sdw_set_sdw_stream -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x048ee5c4 wm_adsp_compr_free -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x08994d40 wm_adsp2_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x0bc9347a wm_adsp_compr_trigger -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x2c207d6f wm_adsp_fw_get -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x3a2317af wm_adsp_fw_put -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x402545ab wm_adsp2_component_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x49bcbec0 wm_adsp_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x09facc1c wcd938x_swr_get_current_bank +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x2264bafb wcd938x_sdw_device_get +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x4e98c948 wcd938x_sdw_hw_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x6c0aa560 wcd938x_sdw_set_sdw_stream +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0xc5f542cd wcd938x_sdw_free +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x174bf909 wm_adsp2_preloader_put +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x1a9f6b1e wm_adsp_compr_handle_irq +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x1f5d3274 wm_adsp2_component_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x33fb7a5c wm_adsp2_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x348e5b4e wm_adsp2_preloader_get +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x4166d35b wm_adsp_compr_free +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x4a90082b wm_adsp_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x4ebbbe0a wm_adsp_compr_get_caps 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 0x5ee5fd97 wm_adsp_compr_copy -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x66739e14 wm_adsp1_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x6bb489e9 wm_halo_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x81ed2f70 wm_adsp2_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x8bf97466 wm_adsp_compr_open -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x8c39391a wm_adsp_write_ctl -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x9d885921 wm_adsp_compr_handle_irq -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x9eb19219 wm_adsp_read_ctl -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xabc6e655 wm_adsp2_preloader_get -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xb2d0fefb wm_adsp_early_event -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xbd79fd70 wm_adsp_compr_get_caps -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xbdc58c95 wm_adsp2_preloader_put -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xc386aaa2 wm_adsp_fw_enum -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xd5f0e392 wm_adsp_event -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xd6f57d3c wm_adsp_compr_pointer -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xd778acd0 wm_adsp1_event +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x564761bf wm_adsp_event +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x657694ac wm_adsp1_event +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x7440571c wm_adsp2_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x753cb4ae wm_adsp_early_event +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x9ca39638 wm_adsp_fw_put +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xa13da0e6 wm_adsp2_component_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xaf216290 wm_adsp_compr_open +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xb4050398 wm_adsp1_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xbdd758b5 wm_adsp_fw_enum +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xbf66347f wm_adsp_fw_get +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xcc0e38b8 wm_adsp_read_ctl +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xd2f6e971 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 0xe2f346a0 wm_adsp2_component_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xddfdf1c9 wm_adsp_compr_pointer +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xe23cb686 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 0xed8214a0 wm_adsp2_set_dspclk -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x37f6a4d3 wm8804_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x49546f0c wm8804_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x71f6377c wm8804_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xdb0fdff6 wm8804_pm -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0x194c7f23 wm8903_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0x25cc870b wm8962_mic_detect -EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0x28a6de92 fsl_asrc_component +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xeb550872 wm_adsp2_set_dspclk +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xecbbfff2 wm_adsp_compr_trigger +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xee849ac9 wm_halo_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x391a2e6d wm8804_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x571010b5 wm8804_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x6f39e944 wm8804_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x9c284ba0 wm8804_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0x3877389b wm8903_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0xf9865dbd wm8962_mic_detect +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0x12f6bcda 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 0x1289f9f1 asoc_simple_parse_clk -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x1ff53373 asoc_simple_startup -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x2372ca82 asoc_simple_parse_pin_switches -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x37f8783a asoc_simple_shutdown -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x55544fb2 asoc_simple_parse_routing -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x5994dec1 asoc_simple_hw_params -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x62633678 asoc_simple_parse_widgets -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x7ff58da1 asoc_simple_parse_convert -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x91eb85c3 asoc_simple_clean_reference -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x985a65ec asoc_simple_be_hw_params_fixup -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x9fd1da6e asoc_graph_card_probe -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xa80b92cf asoc_simple_parse_daifmt -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xac32d850 asoc_simple_parse_card_name -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xdf4da933 asoc_simple_remove -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xe1fdac29 asoc_simple_init_jack -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xe6f32114 asoc_simple_canonicalize_cpu -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xf0893218 asoc_simple_init_priv +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x1183317f asoc_simple_parse_pin_switches +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x1eaa7975 asoc_simple_parse_widgets +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x1ef4c620 asoc_simple_be_hw_params_fixup +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x20879b90 asoc_simple_parse_routing +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x2acca685 asoc_simple_clean_reference +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x2e48c9df asoc_simple_startup +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x3b01f22b asoc_simple_parse_clk +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x4966da12 asoc_simple_parse_card_name +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x51d871e6 asoc_simple_shutdown +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x70c78f97 asoc_simple_canonicalize_cpu +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x7cc3e2ec asoc_simple_set_dailink_name +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x82492a9d asoc_simple_dai_init +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x89f21cd9 asoc_simple_init_priv +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xacf2f257 asoc_simple_parse_daifmt +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xb5f713d1 asoc_simple_hw_params +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xc5268692 asoc_simple_canonicalize_platform +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xc87b4527 asoc_simple_remove +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xdde6a207 asoc_simple_parse_convert +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xe31a7136 asoc_simple_init_jack +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xe45b5b5d asoc_graph_card_probe EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xf3bafb75 asoc_simple_convert_fixup -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xf3d5e008 asoc_simple_canonicalize_platform -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xf4670b6b asoc_simple_set_dailink_name -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xfe047eef asoc_simple_dai_init -EXPORT_SYMBOL_GPL sound/soc/intel/atom/snd-soc-sst-atom-hifi2-platform 0x09f6a763 sst_unregister_dsp -EXPORT_SYMBOL_GPL sound/soc/intel/atom/snd-soc-sst-atom-hifi2-platform 0x4c2ff39a sst_register_dsp -EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x1399a8d9 sst_context_init -EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x29b472ed sst_configure_runtime_pm -EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x421677b0 sst_alloc_drv_context +EXPORT_SYMBOL_GPL sound/soc/intel/atom/snd-soc-sst-atom-hifi2-platform 0x02cf43d8 sst_register_dsp +EXPORT_SYMBOL_GPL sound/soc/intel/atom/snd-soc-sst-atom-hifi2-platform 0x4c19c314 sst_unregister_dsp +EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x2478c5f0 sst_configure_runtime_pm +EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x3d42d267 sst_alloc_drv_context +EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x553e2ded intel_sst_pm +EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x6d368888 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 0xcb333056 intel_sst_pm -EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0xf8be49bb sst_context_cleanup -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x0054e77c snd_soc_acpi_intel_hda_machines +EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0xde98284e sst_context_cleanup EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x0281834b snd_soc_acpi_intel_cherrytrail_machines -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x162edd2e snd_soc_acpi_intel_icl_sdw_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x18a66882 snd_soc_acpi_intel_cnl_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x23c0f582 snd_soc_acpi_intel_icl_machines EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x2c4fd0d6 snd_soc_acpi_intel_tgl_machines EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x482cc324 snd_soc_acpi_intel_jsl_machines -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x49c6e5aa snd_soc_acpi_intel_ehl_machines EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x55eef082 snd_soc_acpi_intel_broadwell_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x5994f4d4 snd_soc_acpi_intel_kbl_machines EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x5add5149 snd_soc_acpi_intel_baytrail_machines -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x6149d388 snd_soc_acpi_intel_cnl_sdw_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x75ae2ce9 snd_soc_acpi_intel_skl_machines EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x7c617496 snd_soc_acpi_intel_haswell_machines EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x7f0cf4cf snd_soc_acpi_intel_bxt_machines EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x80e36ae3 snd_soc_acpi_intel_cfl_sdw_machines -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x8605a646 snd_soc_acpi_intel_icl_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x91ca40fa snd_soc_acpi_intel_icl_sdw_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0xa591b4b8 snd_soc_acpi_intel_hda_machines EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0xa95e3688 snd_soc_acpi_intel_glk_machines EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0xaee91d12 snd_soc_acpi_intel_adl_sdw_machines EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0xb291f19b snd_soc_acpi_intel_cml_sdw_machines EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0xb5e4a471 snd_soc_acpi_intel_cfl_machines -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0xbd633b46 snd_soc_acpi_intel_cnl_machines EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0xc787c511 snd_soc_acpi_intel_tgl_sdw_machines -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0xd06b7f2d snd_soc_acpi_intel_skl_machines EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0xe67811d5 snd_soc_acpi_intel_adl_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0xe6ad4e5c snd_soc_acpi_intel_cnl_sdw_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0xec03b66e snd_soc_acpi_intel_ehl_machines EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0xef3f8fcc snd_soc_acpi_intel_cml_machines -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0xfc51a710 snd_soc_acpi_intel_kbl_machines -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x0dd64276 sst_dsp_register_poll 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 0x236d9784 sst_dsp_shim_update_bits_forced_unlocked -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x2c939778 sst_dsp_shim_update_bits_forced -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x3591129a sst_dsp_shim_write -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x4e0d4adc sst_dsp_shim_write_unlocked -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x587a1b59 sst_dsp_outbox_write -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x5c370892 sst_dsp_shim_read -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x67ad5692 sst_dsp_shim_update_bits -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x7fa85993 sst_dsp_shim_read_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x2e85ec13 sst_dsp_shim_read_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x385867d7 sst_dsp_shim_update_bits_forced +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x3c1a3645 sst_dsp_shim_write_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x46c436b8 sst_dsp_mailbox_init +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x59f24601 sst_dsp_inbox_write +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x59f7b58d sst_dsp_outbox_write +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x6b083fc5 sst_dsp_shim_read +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x8725aee0 sst_dsp_shim_update_bits_forced_unlocked EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x87cdf7d2 sst_shim32_write64 -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x97f88cec sst_dsp_inbox_write -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xa7bafff8 sst_dsp_shim_update_bits_unlocked -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xc612bce4 sst_dsp_inbox_read +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x946af591 sst_dsp_shim_write +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xa3269c40 sst_dsp_outbox_read +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xa6d51040 sst_dsp_inbox_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 0xe9be54e7 sst_dsp_mailbox_init +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xe3c8b9c4 sst_dsp_shim_update_bits_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xe5c51ce5 sst_dsp_register_poll 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 0xfe1090d2 sst_dsp_outbox_read -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x366985a4 sst_ipc_tx_message_wait -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x56ac73fc sst_ipc_init -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x740e853f sst_ipc_reply_find_msg -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x7789fab0 sst_ipc_fini -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0xa5aa6c0e sst_ipc_tx_message_nowait -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0xf440ac2e sst_ipc_tx_message_nopm -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0xf576548a sst_ipc_tx_msg_reply_complete -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x02a0a9f6 bxt_sst_init_fw -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x043b9762 skl_put_pvt_id -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x16785914 skl_get_pvt_id -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x2396be6b skl_ipc_delete_pipeline -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x2757cd26 skl_ipc_set_large_config -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x2a20c7cb skl_ipc_set_dx -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x38141607 skl_get_pvt_instance_id_map -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x3815f89b skl_dsp_put_core -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x3b24409a skl_ipc_init_instance -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x4dd854bd bxt_sst_dsp_init -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x4ff723a7 skl_ipc_load_modules -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x51512906 cnl_sst_dsp_cleanup -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x57cb4e8a skl_ipc_get_large_config -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x5ae80e05 skl_ipc_bind_unbind -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x5b981401 skl_dsp_sleep -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x68075677 skl_ipc_save_pipeline -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x79cc3c10 is_skl_dsp_running -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x7dbe953a skl_ipc_unload_modules -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x841f040a skl_sst_dsp_cleanup -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x942dbfe7 skl_dsp_set_dma_control -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xa03167c4 skl_ipc_set_d0ix -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xa52fd867 bxt_sst_dsp_cleanup -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xaf839684 skl_sst_dsp_init -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xb250052b skl_dsp_wake -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xb3b260d1 skl_dsp_get_core -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xc7340707 cnl_sst_dsp_init -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xcdaa48ae skl_clear_module_cnt -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xcf53e9be cnl_sst_init_fw -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xcff86dce skl_sst_ipc_load_library -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xd9c42095 skl_ipc_create_pipeline -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xdb6cec4c skl_dsp_free -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xec2a6c93 cnl_dsp_free -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xfce1a80d skl_ipc_restore_pipeline -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xff2072f9 skl_sst_init_fw -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xffc28781 skl_ipc_set_pipeline_state +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xffc2ec1d sst_dsp_shim_update_bits +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x590a53f4 sst_ipc_init +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x60c2f3a6 sst_ipc_tx_message_nopm +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x7c92791c sst_ipc_tx_message_wait +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0xb0a04542 sst_ipc_reply_find_msg +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0xb681ec70 sst_ipc_tx_msg_reply_complete +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0xb87dd6fe sst_ipc_tx_message_nowait +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0xf2b161c6 sst_ipc_fini +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x06bce8ff skl_sst_init_fw +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x2522ac37 skl_put_pvt_id +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x3162569a skl_ipc_save_pipeline +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x31861bc2 skl_ipc_load_modules +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x4050fb3d cnl_sst_dsp_init +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x5af58505 skl_sst_ipc_load_library +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x6200bf01 cnl_sst_dsp_cleanup +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x6ae2b8d0 skl_ipc_get_large_config +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x76d7b036 skl_dsp_sleep +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x7700ec68 skl_get_pvt_instance_id_map +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x7a32a49e skl_dsp_put_core +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x7ccbf644 skl_ipc_unload_modules +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x7d4a811c skl_ipc_set_dx +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x7d522482 bxt_sst_init_fw +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x911ae812 cnl_sst_init_fw +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x9323683b skl_dsp_get_core +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x97981f0f skl_get_pvt_id +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x9b29aea9 is_skl_dsp_running +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xa5cf2400 skl_sst_dsp_init +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xa782aa72 skl_dsp_wake +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xb3165434 skl_ipc_bind_unbind +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xb549ba7c skl_ipc_delete_pipeline +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xb6cc03fa skl_ipc_init_instance +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xb725fbbf skl_ipc_set_d0ix +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xbd65b735 skl_ipc_restore_pipeline +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xc01992b2 skl_ipc_set_large_config +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xc844a5f6 skl_ipc_create_pipeline +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xd0233b6c skl_sst_dsp_cleanup +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xd66588f5 skl_dsp_set_dma_control +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xd6e95adf bxt_sst_dsp_cleanup +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xd81e0708 skl_clear_module_cnt +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xe2f876ad cnl_dsp_free +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xebc681d6 bxt_sst_dsp_init +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xf0ba1b7a skl_ipc_set_pipeline_state +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xfa277f5d skl_dsp_free EXPORT_SYMBOL_GPL sound/soc/snd-soc-acpi 0x508e2567 snd_soc_acpi_codec_list EXPORT_SYMBOL_GPL sound/soc/snd-soc-acpi 0x6c5d2bcd snd_soc_acpi_find_package_from_hid EXPORT_SYMBOL_GPL sound/soc/snd-soc-acpi 0xe3a526be snd_soc_acpi_find_machine -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0003ebb9 snd_soc_dai_active -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x006baa5d snd_soc_component_nc_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x00c90be3 snd_soc_component_set_pll -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x01c4c0b9 snd_soc_dpcm_be_can_update -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x075e92f3 snd_soc_dapm_del_routes -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x079c75cf snd_soc_put_volsw_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0891f199 snd_soc_add_dai_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0896a450 snd_soc_dapm_new_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x09a127b7 snd_soc_component_compr_get_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x09a51132 snd_soc_dapm_put_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x09c264f7 snd_soc_dai_set_tristate -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0bb18f2c snd_soc_find_dai -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0c766a44 snd_soc_new_ac97_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0c9a92e8 snd_soc_component_disable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0cc628ba snd_soc_dai_compr_shutdown -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0eb111ab snd_soc_put_xr_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0fb44db2 snd_soc_tplg_component_load -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0fe27a30 snd_soc_info_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x12d45a87 snd_soc_get_pcm_runtime -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1424b7e6 snd_soc_of_get_dai_name -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x154d7711 snd_soc_of_get_slot_mask -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1589ca0d snd_soc_find_dai_with_mutex -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1647781f snd_soc_dapm_disable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x168a3d63 dapm_pinctrl_event -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x17a6e368 snd_soc_resume -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x18b187ac snd_soc_jack_get_type -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x18bbd5d0 snd_soc_component_async_complete -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1a043745 snd_soc_of_parse_aux_devs -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1b46715d snd_soc_of_parse_tdm_slot -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1c13d762 snd_soc_jack_notifier_unregister -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1c26cd30 snd_soc_runtime_calc_hw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1ce5cb34 snd_soc_dapm_mux_update_power -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1d3150c1 snd_soc_dapm_get_pin_status -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1ef766ea snd_soc_dapm_put_pin_switch -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x209905c3 snd_soc_dapm_sync -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x224b5550 snd_soc_component_compr_open -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x23a73d3b snd_soc_dapm_sync_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x23b897ec snd_soc_dapm_mixer_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0021096a snd_soc_dpcm_fe_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x00d9f396 snd_soc_component_compr_pointer +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x017057b1 snd_soc_limit_volume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0415d943 snd_soc_get_dai_id +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x057b372d snd_soc_runtime_action +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x05ad7f5b snd_soc_component_update_bits_async +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x05b8d24e snd_soc_new_compress +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x07b33c0e snd_soc_component_compr_set_metadata +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0890f0ad snd_soc_set_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0a48d495 snd_soc_dai_compr_startup +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0a4b4778 snd_soc_lookup_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0aa814c6 snd_soc_dapm_nc_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0b809595 snd_soc_dapm_new_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0bea148f snd_soc_find_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0cff692d snd_soc_dapm_new_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0f2e4662 snd_soc_component_compr_copy +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0fe2810d snd_soc_dpcm_get_substream +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x105d328d snd_soc_component_force_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x13892029 snd_soc_dapm_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x13ba669a snd_soc_of_get_dai_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x15cfe713 snd_soc_dapm_update_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x16793852 snd_soc_component_update_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x184216d7 snd_soc_dapm_disable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x194e9f74 snd_soc_component_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1a73d6ed snd_soc_get_dai_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1ad85bb4 snd_soc_bytes_info +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1d3d6c8a snd_dmaengine_pcm_prepare_slave_config +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1d5715f9 snd_soc_lookup_component_nolocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x23a598f0 snd_soc_set_ac97_ops_of_reset +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x247d4c5c snd_soc_of_get_slot_mask +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x25043f61 snd_soc_card_jack_new EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2541a979 snd_soc_calc_frame_size -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2553f34e snd_soc_info_volsw_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2588111e snd_soc_add_component_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x273d361c snd_soc_dai_compr_ack -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x29833446 snd_soc_component_nc_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2c3d5518 snd_soc_jack_add_pins -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2d2bb3f7 snd_soc_set_ac97_ops_of_reset -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2e4091b5 snd_soc_dai_digital_mute -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2fef97cc snd_soc_cnew -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x30d81fd3 snd_soc_dapm_weak_routes -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x32251824 devm_snd_dmaengine_pcm_register -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x324a916c snd_soc_put_volsw_range -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x329bbea2 snd_soc_component_compr_pointer -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x33549ec4 snd_soc_dapm_kcontrol_widget -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x34f27c0d snd_soc_get_xr_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x367fbe74 snd_soc_dapm_enable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x36848584 snd_soc_jack_add_zones -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3932c156 snd_soc_component_compr_get_metadata -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3c233d7e snd_soc_dpcm_get_substream -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3cf047f6 snd_soc_get_volsw_range -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3d24f054 snd_soc_add_card_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3d2a0052 snd_soc_dai_compr_trigger -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3d768ca3 snd_soc_new_compress -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3e3c20dc dapm_mark_endpoints_dirty -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3e475efd snd_soc_poweroff -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x44f6308b snd_soc_component_enable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4d8a1bb0 snd_soc_dai_set_sysclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4f1fb70d snd_soc_dai_compr_set_metadata -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x52d58d4a snd_soc_jack_add_gpios -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5348e8de snd_soc_dapm_kcontrol_dapm -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x539eb013 snd_soc_jack_report -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x53d470dc snd_soc_card_get_kcontrol -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x54044841 snd_soc_set_dmi_name -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x55242ccc snd_soc_component_update_bits_async -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5593e188 snd_soc_link_compr_startup -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x563d1c83 snd_soc_dapm_force_enable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x58057b0f snd_soc_dai_set_bclk_ratio -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x58ced10d snd_soc_dapm_nc_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x59772234 snd_soc_tplg_widget_bind_event -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x59824594 snd_soc_component_compr_copy -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x599138c2 snd_soc_dpcm_can_be_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5b12039c snd_soc_of_parse_audio_routing -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5c8e0c0e snd_soc_rtdcom_lookup -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5d6ac522 dapm_kcontrol_get_value -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5d79f272 snd_soc_component_read_field -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5deee7e6 snd_soc_dapm_nc_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5e0d772f dapm_regulator_event -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5ea7d285 snd_soc_dai_set_tdm_slot -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5eafcdd9 snd_soc_unregister_dai -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5eb589d3 snd_soc_dai_compr_pointer -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5ff790bc snd_soc_component_test_bits -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x614ccfe1 snd_soc_of_parse_node_prefix -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x62db7665 snd_soc_close_delayed_work -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x657a2215 snd_soc_add_pcm_runtime -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x672f3cdf snd_soc_set_runtime_hwparams -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x69f1e897 dpcm_be_dai_trigger -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6bf82a75 snd_soc_tplg_component_remove -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6cb945ea snd_soc_debugfs_root -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6f913f4e snd_soc_component_update_bits -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x76107228 snd_soc_dai_compr_startup -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x783b8ee0 snd_soc_component_initialize -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x79302e26 snd_soc_component_write_field -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x79c48c82 snd_soc_info_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7de57c29 snd_soc_dapm_put_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e4bdc4a devm_snd_soc_register_card -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e5ac67a snd_soc_link_compr_shutdown +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x27b7200c snd_soc_tplg_widget_bind_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x28237ae3 snd_soc_add_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x282d9920 snd_soc_component_get_pin_status +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x29363484 snd_soc_info_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2b461567 snd_soc_component_compr_get_caps +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2c6a66bc snd_soc_jack_add_gpiods +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2cf1ee12 snd_soc_dai_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x302fdadc snd_soc_component_force_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x330fbaaf snd_soc_close_delayed_work +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3351d02a snd_soc_component_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x335c037e snd_soc_card_remove_dai_link +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x34604255 snd_soc_dapm_put_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x35673ea3 snd_soc_jack_add_zones +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x36519772 snd_soc_dapm_stream_stop +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x366003fd dapm_pinctrl_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x372367d8 snd_soc_dai_set_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3800a1b5 snd_soc_dai_link_set_capabilities +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x39a9564d snd_soc_of_parse_card_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3d8ee552 snd_soc_of_parse_audio_routing +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3e3cdfe4 snd_soc_dapm_get_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3ec9bf7f snd_soc_dai_set_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4026337d snd_soc_dapm_disable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x403e46c6 snd_soc_of_parse_node_prefix +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4385dc90 devm_snd_soc_register_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x43a5395d dapm_regulator_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x43e55c8f snd_soc_add_pcm_runtime +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x45368045 snd_soc_dai_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x46b832e8 snd_soc_dapm_new_control +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x49d510bd snd_soc_component_nc_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4a26b4a3 snd_soc_component_disable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4a47aa08 snd_soc_dai_get_channel_map +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4d5b41f7 snd_soc_component_write_field +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4e4752d8 snd_soc_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4e4be0b6 snd_soc_bytes_tlv_callback +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4ec89e06 snd_soc_component_test_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5068ad05 snd_soc_dapm_sync +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5084fd1d snd_soc_component_compr_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x54f9f27e snd_soc_get_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x559e03ba snd_soc_dai_active +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5788dcb3 snd_soc_dai_compr_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x59c34a80 snd_soc_dapm_info_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5b177543 snd_soc_unregister_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5bd5a09a snd_soc_dai_set_channel_map +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5c00c50b snd_soc_component_nc_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5c0599a0 snd_soc_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5c8fc798 snd_soc_card_get_kcontrol +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x60220dc2 snd_soc_free_ac97_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x606b8c1f snd_soc_dapm_free +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x62897976 snd_soc_remove_pcm_runtime +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x62dd751b snd_soc_bytes_info_ext +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x631bf37c snd_soc_runtime_calc_hw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x638c56d0 snd_soc_pm_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6672fd94 snd_soc_set_runtime_hwparams +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6826b82c snd_soc_get_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x69b75210 snd_soc_dai_compr_get_metadata +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6a52140c snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6ba344d7 devm_snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6ced8aef snd_soc_dapm_kcontrol_widget +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x71f732ae snd_soc_dapm_force_bias_level +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x725cda52 snd_soc_get_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x736fbf89 snd_soc_dpcm_runtime_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x73a66c60 snd_soc_unregister_component_by_driver +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x74dfffed snd_soc_runtime_set_dai_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x75367a91 snd_dmaengine_pcm_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x776f187f snd_soc_dai_compr_ack +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x78f278a0 snd_soc_put_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7a0a07cd snd_soc_dai_compr_pointer +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7ab8e4f5 snd_soc_cnew +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7b301985 snd_soc_dai_action +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7b30e31e snd_soc_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7b90b454 snd_soc_dapm_init +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7cae876d snd_soc_dapm_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7df26dc6 snd_soc_of_put_dai_link_codecs EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e606130 snd_soc_calc_bclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7eab1835 snd_soc_set_ac97_ops -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x80ac7692 devm_snd_soc_register_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x81c2960d snd_soc_dpcm_fe_can_update -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x82647c10 dapm_clock_event -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x829d7e13 snd_soc_dapm_ignore_suspend -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x844e7818 snd_soc_runtime_action -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x86da75ac snd_soc_component_compr_ack -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x892334d1 snd_soc_dapm_get_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x89406b9c snd_soc_remove_pcm_runtime -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8bdb924b snd_soc_component_compr_get_caps -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8e24ec9b snd_soc_component_force_enable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8f344ab4 snd_soc_bytes_get -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8f40b6c5 soc_ac97_ops -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8fddea25 snd_dmaengine_pcm_unregister -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x90d213db snd_soc_get_dai_id -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x92ec1a01 snd_soc_dapm_stream_stop -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x935f7364 snd_soc_dapm_disable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x939cda9b snd_soc_lookup_component_nolocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9417d8fe snd_soc_register_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x96c1a4b1 snd_soc_of_parse_audio_simple_widgets -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9b55f5d6 snd_soc_component_force_enable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9ba2c3e1 snd_soc_component_compr_get_codec_caps +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7fe790f7 snd_soc_dapm_del_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8191cf4e snd_soc_tplg_component_remove +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x81add864 snd_soc_jack_free_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x82c0e9df dapm_mark_endpoints_dirty +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x848660fd snd_soc_set_dmi_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x892c1bac snd_soc_component_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8e7a0ac7 snd_soc_dai_set_tristate +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8ea282b5 snd_soc_component_compr_open +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8f66943b snd_soc_info_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x92d141fb soc_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x93f2fb72 snd_soc_resume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x994dbc68 snd_soc_of_parse_audio_simple_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x99a5090c snd_soc_jack_add_pins +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9a194f38 snd_soc_add_card_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9b1b6571 snd_soc_add_dai_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9b688ad2 snd_soc_dapm_kcontrol_dapm +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9b8004e2 snd_soc_dai_digital_mute EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9bfde704 snd_soc_daifmt_clock_provider_fliped -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9e72e43d snd_soc_free_ac97_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9f1af019 snd_soc_dai_set_pll -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa0e82c5a snd_soc_component_compr_trigger -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa3a60483 snd_soc_bytes_info_ext -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa97d1407 snd_soc_link_compr_set_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa9f5b137 snd_soc_of_get_dai_link_codecs -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaa178a72 snd_soc_dapm_init -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaafe06d0 snd_soc_of_put_dai_link_codecs -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaff3e102 snd_soc_get_dai_name -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb83b539a snd_soc_dapm_free -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb8a1fecc snd_soc_dai_set_fmt -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb8cbbd29 devm_snd_soc_register_dai -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb91a810f snd_soc_dai_set_channel_map -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb9b8402d snd_soc_of_parse_card_name -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbbe816f1 snd_soc_component_init_regmap -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbc67ecb3 snd_soc_component_set_sysclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbf90239d snd_soc_register_card -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc0172c09 snd_soc_daifmt_parse_format -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc04151ce snd_soc_jack_free_gpios -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc0c69a13 snd_soc_bytes_info -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc1bc1945 snd_soc_component_get_pin_status -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc20997a6 snd_soc_unregister_component_by_driver -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc21f444b snd_soc_component_set_jack -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc39a08cc snd_soc_dai_action -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc5e9553d snd_soc_dai_link_set_capabilities -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc692bf5e snd_soc_bytes_tlv_callback -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc69efd0d snd_soc_dapm_new_widgets -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc6cc8f03 snd_soc_jack_add_gpiods -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc746e1a4 snd_soc_dai_compr_get_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9c41c7bf snd_soc_bytes_put +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9c5295ca snd_soc_info_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9f2455b2 devm_snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa0a77cfd dapm_kcontrol_get_value +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa17a4346 snd_soc_poweroff +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa27ef822 snd_soc_component_compr_get_codec_caps +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa3ce820f snd_soc_bytes_get +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa3f7e9b8 snd_soc_component_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa3f7f46d snd_soc_dpcm_be_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa48921ce snd_soc_dai_compr_set_metadata +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa5f4a8cd snd_soc_card_add_dai_link +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa675aa29 snd_soc_component_read_field +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa6d18ba7 snd_soc_dpcm_can_be_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa839177c snd_soc_dai_set_clkdiv +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa9694237 null_dailink_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xae50769d snd_soc_component_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaefdd23a snd_soc_component_compr_get_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb038c680 snd_soc_dapm_force_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb06c6ed2 snd_soc_link_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb0e7e9b5 snd_soc_put_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb45abaf1 snd_soc_find_dai_with_mutex +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb694d77d snd_soc_debugfs_root +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb7660b57 devm_snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb8c5fd52 snd_soc_get_pcm_runtime +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbaab63d5 snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbf05b76a snd_soc_component_exit_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc0c258ea snd_soc_dapm_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc1a51179 snd_soc_component_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc321b8ba snd_soc_jack_get_type +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc488bf0e snd_soc_dpcm_can_be_free_stop +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc507e774 snd_soc_component_disable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc5dd9437 snd_soc_link_compr_shutdown +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc675b8ae snd_soc_new_ac97_component EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8269f94 snd_soc_params_to_frame_size -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc893084a snd_soc_component_disable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc895cb98 snd_soc_info_xr_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc94c67d8 snd_soc_dai_compr_get_metadata -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xca4787a8 snd_soc_card_jack_new -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcc240bb5 snd_soc_component_compr_free -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcf3f77f6 snd_soc_limit_volume -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcf8730f7 snd_soc_put_strobe -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd0292341 snd_soc_add_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd161ff21 snd_dmaengine_pcm_prepare_slave_config -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd1f8ace2 snd_soc_component_compr_set_metadata -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd29f7210 snd_dmaengine_pcm_register -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd356811a snd_soc_daifmt_parse_clock_provider_raw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd4cca15c snd_soc_dapm_force_bias_level -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd6247ee7 snd_soc_component_read -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd67b4dc0 snd_soc_put_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd71b9f56 snd_soc_card_remove_dai_link -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd93e43b5 snd_soc_dpcm_can_be_free_stop -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdaefc69c snd_soc_suspend -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdb7867c1 snd_soc_jack_notifier_register -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdbbce902 snd_soc_dapm_force_enable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdd48d149 snd_soc_dapm_enable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe1cd3ab8 snd_soc_info_volsw_range -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe2cbf036 snd_soc_component_exit_regmap -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe2e14034 snd_soc_component_write -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe5ef51e7 snd_soc_get_volsw_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe7382701 snd_soc_dapm_get_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe835040d snd_soc_dapm_update_dai -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe98a3fdd snd_soc_dai_set_clkdiv -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xea08fb4a snd_soc_component_enable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xea0a56b5 snd_soc_card_add_dai_link -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xea34f99e snd_soc_unregister_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xca4ac93f snd_soc_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcbd9f0fa snd_soc_dai_compr_shutdown +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcf5a6a84 snd_soc_dapm_sync_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd037f925 snd_soc_put_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd039acc2 snd_soc_link_compr_startup +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd1faa566 snd_soc_of_parse_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd53d8680 snd_soc_of_get_dai_link_codecs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd60242a0 snd_soc_dapm_mux_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd78dd294 snd_soc_component_compr_get_metadata +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd80e1008 snd_soc_component_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd8c91978 snd_soc_dapm_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd9413fe3 snd_soc_tplg_component_load +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xda46496e snd_soc_jack_notifier_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xda9e09b3 snd_soc_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdabeef43 snd_soc_dapm_mixer_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdb5680dd snd_soc_dapm_get_pin_status +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdc532db5 snd_soc_unregister_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdc592230 snd_soc_component_async_complete +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdf80c188 snd_soc_daifmt_parse_clock_provider_raw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdf965aee snd_soc_get_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe2d0530c snd_soc_component_compr_free +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe3bcd12a snd_soc_component_compr_ack +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe6e64765 snd_soc_component_set_jack +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe786f0b5 snd_soc_dai_compr_get_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe7b3ca07 snd_soc_jack_notifier_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe7c426c5 snd_soc_daifmt_parse_format +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe8a614a3 snd_soc_info_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xea2a6c56 snd_soc_dai_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeae1eb28 snd_soc_put_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeae881b8 snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb17e945 snd_soc_component_initialize +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb48f3e8 snd_soc_unregister_dai EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb711ae7 snd_soc_params_to_bclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xec382066 snd_soc_get_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xec839dd1 snd_soc_runtime_set_dai_fmt -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xecf43c0f snd_soc_bytes_put -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xee2e1842 snd_soc_dai_compr_set_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xee8b21bf snd_soc_dai_get_channel_map -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf0087547 snd_soc_get_strobe -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf11f1fc1 snd_soc_dapm_add_routes -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf23a0166 snd_soc_pm_ops -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf2b7e18f snd_soc_dpcm_runtime_update -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf393c91e snd_soc_dapm_new_control -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf3f1447e snd_soc_dapm_info_pin_switch -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf4de4168 snd_soc_put_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf5313432 snd_soc_component_compr_set_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf8a96770 snd_soc_lookup_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xed1ca31a snd_soc_info_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xed5f7538 snd_soc_dapm_force_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xed9a0552 dapm_clock_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeef1f658 snd_soc_add_component_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xef488792 snd_soc_jack_add_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xef5d3f97 snd_soc_dapm_add_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf082b2ef snd_soc_of_parse_aux_devs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf16366b4 snd_soc_dapm_ignore_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf1a2a5e1 dpcm_be_dai_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf348a5e2 snd_soc_dapm_weak_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf3bc4451 snd_soc_dapm_nc_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf72911f4 snd_soc_dapm_get_volsw EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf9622dd1 snd_soc_daifmt_clock_provider_from_bitmap -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfa27f61a null_dailink_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfa6497f2 snd_soc_get_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfdb40b2a snd_soc_unregister_card -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfdb54e7f snd_soc_dapm_get_pin_switch -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x0b9f4484 snd_sof_debugfs_buf_item -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0xd95703f3 snd_sof_dbg_memory_info_init -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0xd998af17 snd_sof_dbg_init -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0xed9258b6 snd_sof_debugfs_io_item -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0xf929cfc0 snd_sof_free_debug -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x028699d7 line6_send_raw_message_async +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf96d4a3d snd_soc_dapm_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfaee5c49 snd_soc_component_init_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfdc3e2af snd_soc_jack_report +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfed71a65 snd_soc_dai_set_bclk_ratio +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xffbcc7b5 snd_soc_rtdcom_lookup +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x26e0f5d3 snd_sof_debugfs_buf_item +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x442555b6 snd_sof_free_debug +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0xb119db93 snd_sof_dbg_init +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0xc515d3d9 snd_sof_debugfs_io_item +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0xe2ee125e snd_sof_dbg_memory_info_init +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x0ea6465e line6_pcm_release +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x12c917dd line6_pcm_acquire EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x202a1b1b line6_midi_id -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x28329a17 line6_read_data -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x29011f25 line6_init_pcm -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x45fcdb92 line6_alloc_sysex_buffer -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x499387a1 line6_disconnect -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x5fe28e6b line6_pcm_acquire -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x66dfd72e line6_suspend -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x67b52937 line6_version_request_async -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x79281aa1 line6_send_sysex_message -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x96729890 line6_probe -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xd7365fb8 line6_pcm_release -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xdbb7019e line6_resume -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xe206c448 line6_init_midi -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xe82a7b26 line6_send_raw_message -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xeb63e29d line6_read_serial_number -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xf9ddbc6d line6_write_data -EXPORT_SYMBOL_GPL vmlinux 0x0010c583 powercap_unregister_zone +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x39e35fab line6_send_sysex_message +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x488350cd line6_suspend +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x4ca0f454 line6_resume +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x600fc9f8 line6_version_request_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x644cc284 line6_send_raw_message +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x6bd2dbed line6_init_pcm +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x721f1bc5 line6_read_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x780eca62 line6_send_raw_message_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x8515b551 line6_init_midi +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x9b7ec442 line6_probe +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xa8f747ed line6_write_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xc6b7a1ae line6_alloc_sysex_buffer +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xeed7a059 line6_read_serial_number +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xf96a76c1 line6_disconnect +EXPORT_SYMBOL_GPL vmlinux 0x00011cb2 i2c_parse_fw_timings +EXPORT_SYMBOL_GPL vmlinux 0x000efcf0 inet_twsk_hashdance EXPORT_SYMBOL_GPL vmlinux 0x001b074f mce_is_correctable -EXPORT_SYMBOL_GPL vmlinux 0x0022828a umd_cleanup_helper -EXPORT_SYMBOL_GPL vmlinux 0x0028e267 __traceiter_devlink_hwmsg +EXPORT_SYMBOL_GPL vmlinux 0x001fd799 tcp_ca_openreq_child EXPORT_SYMBOL_GPL vmlinux 0x0034f3b6 xen_has_pv_nic_devices -EXPORT_SYMBOL_GPL vmlinux 0x00493a43 clk_hw_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x00351b2a crypto_stats_rng_generate +EXPORT_SYMBOL_GPL vmlinux 0x003a67d2 mmc_sanitize +EXPORT_SYMBOL_GPL vmlinux 0x00415dc0 tcp_bpf_update_proto +EXPORT_SYMBOL_GPL vmlinux 0x0043f4ab noop_invalidatepage +EXPORT_SYMBOL_GPL vmlinux 0x004814da page_cache_sync_ra EXPORT_SYMBOL_GPL vmlinux 0x00513f58 get_timespec64 EXPORT_SYMBOL_GPL vmlinux 0x00531a17 xen_xlate_map_ballooned_pages +EXPORT_SYMBOL_GPL vmlinux 0x0055af31 tps6586x_clr_bits EXPORT_SYMBOL_GPL vmlinux 0x00565f18 pernet_ops_rwsem -EXPORT_SYMBOL_GPL vmlinux 0x00592e55 acpi_subsys_suspend_late EXPORT_SYMBOL_GPL vmlinux 0x005f18a6 add_wait_queue_priority -EXPORT_SYMBOL_GPL vmlinux 0x0067cb62 devm_spi_register_controller +EXPORT_SYMBOL_GPL vmlinux 0x00649233 ata_bmdma_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x0070e7f1 __tracepoint_devlink_hwerr EXPORT_SYMBOL_GPL vmlinux 0x008539f0 klp_shadow_alloc -EXPORT_SYMBOL_GPL vmlinux 0x00917be1 irq_domain_create_simple -EXPORT_SYMBOL_GPL vmlinux 0x00aaf34d kernel_kobj +EXPORT_SYMBOL_GPL vmlinux 0x008f5f75 trace_event_raw_init +EXPORT_SYMBOL_GPL vmlinux 0x00c67380 __SCK__tp_func_block_bio_remap EXPORT_SYMBOL_GPL vmlinux 0x00d4c500 usb_decode_interval -EXPORT_SYMBOL_GPL vmlinux 0x00dafb0c devlink_flash_update_timeout_notify +EXPORT_SYMBOL_GPL vmlinux 0x00d8a8cd __efivar_entry_delete +EXPORT_SYMBOL_GPL vmlinux 0x00de70a1 vp_modern_get_num_queues EXPORT_SYMBOL_GPL vmlinux 0x00df9837 ioasid_register_allocator -EXPORT_SYMBOL_GPL vmlinux 0x00f8038d iommu_uapi_cache_invalidate -EXPORT_SYMBOL_GPL vmlinux 0x01100e69 ata_port_pbar_desc -EXPORT_SYMBOL_GPL vmlinux 0x011043eb regcache_cache_bypass -EXPORT_SYMBOL_GPL vmlinux 0x0114a3c4 led_trigger_remove -EXPORT_SYMBOL_GPL vmlinux 0x011f76d4 pm_clk_add -EXPORT_SYMBOL_GPL vmlinux 0x0120d838 acpi_storage_d3 -EXPORT_SYMBOL_GPL vmlinux 0x012d28e4 regulator_list_voltage_pickable_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x00ec992e kthread_mod_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0x00f35144 efivars_register +EXPORT_SYMBOL_GPL vmlinux 0x00f4ed0c pciserial_init_ports +EXPORT_SYMBOL_GPL vmlinux 0x00fc17fb iommu_sva_unbind_gpasid +EXPORT_SYMBOL_GPL vmlinux 0x00fdc84a regmap_multi_reg_write_bypassed +EXPORT_SYMBOL_GPL vmlinux 0x00ffce78 ima_inode_hash +EXPORT_SYMBOL_GPL vmlinux 0x0110e90d regmap_field_read EXPORT_SYMBOL_GPL vmlinux 0x012e730e apei_exec_noop -EXPORT_SYMBOL_GPL vmlinux 0x012fd10e virtio_max_dma_size -EXPORT_SYMBOL_GPL vmlinux 0x01321e4f rtc_update_irq -EXPORT_SYMBOL_GPL vmlinux 0x0132627c ip6_datagram_connect_v6_only -EXPORT_SYMBOL_GPL vmlinux 0x013d0fa9 extcon_dev_register -EXPORT_SYMBOL_GPL vmlinux 0x01668ec1 xdp_return_frame -EXPORT_SYMBOL_GPL vmlinux 0x016df731 devm_namespace_enable -EXPORT_SYMBOL_GPL vmlinux 0x017d6b51 tty_buffer_unlock_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x01846f00 pci_create_slot +EXPORT_SYMBOL_GPL vmlinux 0x0147564f devm_platform_ioremap_resource +EXPORT_SYMBOL_GPL vmlinux 0x015dc454 __traceiter_devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0x0160d8f4 __tracepoint_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0x0174c77a regulator_set_voltage_time_sel EXPORT_SYMBOL_GPL vmlinux 0x01848a8e local_apic_timer_c2_ok -EXPORT_SYMBOL_GPL vmlinux 0x01857836 handle_simple_irq EXPORT_SYMBOL_GPL vmlinux 0x01866a57 ezx_pcap_set_bits EXPORT_SYMBOL_GPL vmlinux 0x018b3d1e intel_pt_validate_cap -EXPORT_SYMBOL_GPL vmlinux 0x018ef805 ip_route_output_key_hash -EXPORT_SYMBOL_GPL vmlinux 0x01947979 bd_prepare_to_claim +EXPORT_SYMBOL_GPL vmlinux 0x019a7271 gpiod_to_chip EXPORT_SYMBOL_GPL vmlinux 0x01a0cb78 property_entries_free -EXPORT_SYMBOL_GPL vmlinux 0x01a6f713 crypto_find_alg -EXPORT_SYMBOL_GPL vmlinux 0x01abf765 spi_bus_lock -EXPORT_SYMBOL_GPL vmlinux 0x01c01f7e da903x_write +EXPORT_SYMBOL_GPL vmlinux 0x01ad26af free_fib_info +EXPORT_SYMBOL_GPL vmlinux 0x01ae2756 __iptunnel_pull_header EXPORT_SYMBOL_GPL vmlinux 0x01c12c32 cpu_bit_bitmap -EXPORT_SYMBOL_GPL vmlinux 0x01c6190d nvdimm_kobj -EXPORT_SYMBOL_GPL vmlinux 0x01c70c4c regulator_set_mode -EXPORT_SYMBOL_GPL vmlinux 0x01dc5c95 usb_autopm_get_interface_no_resume +EXPORT_SYMBOL_GPL vmlinux 0x01c28ea9 pinctrl_pm_select_sleep_state +EXPORT_SYMBOL_GPL vmlinux 0x01ceba9f net_selftest +EXPORT_SYMBOL_GPL vmlinux 0x01d082a1 ehci_handshake +EXPORT_SYMBOL_GPL vmlinux 0x01d09d1e od_register_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0x01d8a414 __tracepoint_neigh_timer_handler +EXPORT_SYMBOL_GPL vmlinux 0x01dd9016 securityfs_create_symlink EXPORT_SYMBOL_GPL vmlinux 0x01e1a8de kgdb_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x01ec3e23 blk_mark_disk_dead +EXPORT_SYMBOL_GPL vmlinux 0x01e9644f agp_add_bridge EXPORT_SYMBOL_GPL vmlinux 0x01ee5532 smp_call_function_any -EXPORT_SYMBOL_GPL vmlinux 0x02052553 gpiod_set_value EXPORT_SYMBOL_GPL vmlinux 0x0207a6c6 reset_control_bulk_acquire -EXPORT_SYMBOL_GPL vmlinux 0x022676bc edac_pci_create_generic_ctl +EXPORT_SYMBOL_GPL vmlinux 0x021addb7 extcon_get_extcon_dev +EXPORT_SYMBOL_GPL vmlinux 0x022cce7d irq_chip_disable_parent +EXPORT_SYMBOL_GPL vmlinux 0x0231e321 tpm_tis_resume +EXPORT_SYMBOL_GPL vmlinux 0x0236aaef pwm_get_chip_data EXPORT_SYMBOL_GPL vmlinux 0x02394899 play_idle_precise +EXPORT_SYMBOL_GPL vmlinux 0x023c91e1 regulator_allow_bypass EXPORT_SYMBOL_GPL vmlinux 0x024d13dd request_free_mem_region -EXPORT_SYMBOL_GPL vmlinux 0x02684f28 pm_generic_thaw_early -EXPORT_SYMBOL_GPL vmlinux 0x026ce95e xenbus_dev_remove -EXPORT_SYMBOL_GPL vmlinux 0x026f4486 vfio_init_group_dev -EXPORT_SYMBOL_GPL vmlinux 0x02aba624 regulator_disable_regmap -EXPORT_SYMBOL_GPL vmlinux 0x02bb4b1b relay_late_setup_files -EXPORT_SYMBOL_GPL vmlinux 0x02c4efe4 pci_enable_pasid -EXPORT_SYMBOL_GPL vmlinux 0x02d50242 do_truncate -EXPORT_SYMBOL_GPL vmlinux 0x02f07a09 synth_event_add_next_val -EXPORT_SYMBOL_GPL vmlinux 0x02fa0979 __clk_hw_register_mux -EXPORT_SYMBOL_GPL vmlinux 0x03121360 do_take_over_console +EXPORT_SYMBOL_GPL vmlinux 0x0251f427 kthread_queue_work +EXPORT_SYMBOL_GPL vmlinux 0x0254c982 dma_buf_unmap_attachment +EXPORT_SYMBOL_GPL vmlinux 0x0257b847 regulator_count_voltages +EXPORT_SYMBOL_GPL vmlinux 0x0262b317 pci_generic_config_write32 +EXPORT_SYMBOL_GPL vmlinux 0x026c04c3 devm_gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0x02767072 __xenmem_reservation_va_mapping_reset +EXPORT_SYMBOL_GPL vmlinux 0x0296134b page_cache_ra_unbounded +EXPORT_SYMBOL_GPL vmlinux 0x02a9d387 rdev_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x02bde296 iommu_unmap_fast +EXPORT_SYMBOL_GPL vmlinux 0x02c65785 spi_finalize_current_transfer +EXPORT_SYMBOL_GPL vmlinux 0x02c6f76c metadata_dst_free_percpu +EXPORT_SYMBOL_GPL vmlinux 0x02d9bfe9 gpiod_direction_output_raw +EXPORT_SYMBOL_GPL vmlinux 0x02dcf4ce rio_mport_chk_dev_access +EXPORT_SYMBOL_GPL vmlinux 0x02eff3e4 dev_pm_opp_add EXPORT_SYMBOL_GPL vmlinux 0x0312b3b0 reset_controller_add_lookup +EXPORT_SYMBOL_GPL vmlinux 0x031438ae ping_unhash EXPORT_SYMBOL_GPL vmlinux 0x033832c7 usb_amd_hang_symptom_quirk -EXPORT_SYMBOL_GPL vmlinux 0x033dfbc8 devm_pci_epc_destroy -EXPORT_SYMBOL_GPL vmlinux 0x0342b5db cpci_hp_register_controller +EXPORT_SYMBOL_GPL vmlinux 0x033ee88f __tracepoint_rpm_suspend EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list -EXPORT_SYMBOL_GPL vmlinux 0x03515938 fscrypt_symlink_getattr -EXPORT_SYMBOL_GPL vmlinux 0x03571b53 edac_mc_alloc +EXPORT_SYMBOL_GPL vmlinux 0x035b0f9a of_icc_xlate_onecell EXPORT_SYMBOL_GPL vmlinux 0x036de383 perf_event_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x0384a006 strp_process +EXPORT_SYMBOL_GPL vmlinux 0x03948aa8 serdev_controller_add EXPORT_SYMBOL_GPL vmlinux 0x03952887 ktime_add_safe -EXPORT_SYMBOL_GPL vmlinux 0x03b45dbf dev_pm_opp_put_opp_table -EXPORT_SYMBOL_GPL vmlinux 0x03b4ebb5 put_pid +EXPORT_SYMBOL_GPL vmlinux 0x03aeca13 tty_get_pgrp 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 0x03ce9f67 attribute_container_register -EXPORT_SYMBOL_GPL vmlinux 0x03d4a2b9 pci_set_cacheline_size -EXPORT_SYMBOL_GPL vmlinux 0x03d83ced pci_cfg_access_lock -EXPORT_SYMBOL_GPL vmlinux 0x03f15934 vfio_pci_core_sriov_configure +EXPORT_SYMBOL_GPL vmlinux 0x03e027b3 iomap_is_partially_uptodate +EXPORT_SYMBOL_GPL vmlinux 0x03edb1ba devres_find EXPORT_SYMBOL_GPL vmlinux 0x0402cbbf preempt_notifier_inc -EXPORT_SYMBOL_GPL vmlinux 0x040b00ee devm_platform_get_and_ioremap_resource -EXPORT_SYMBOL_GPL vmlinux 0x0419f975 virtqueue_get_vring_size -EXPORT_SYMBOL_GPL vmlinux 0x041c1406 thermal_zone_unbind_cooling_device -EXPORT_SYMBOL_GPL vmlinux 0x041d83a8 led_trigger_set_default EXPORT_SYMBOL_GPL vmlinux 0x042522f2 sched_trace_rd_span -EXPORT_SYMBOL_GPL vmlinux 0x042972a4 iommu_device_link +EXPORT_SYMBOL_GPL vmlinux 0x0425a1c0 nvmem_cell_get +EXPORT_SYMBOL_GPL vmlinux 0x04271a15 dev_pm_set_dedicated_wake_irq EXPORT_SYMBOL_GPL vmlinux 0x042c9a04 em_cpu_get -EXPORT_SYMBOL_GPL vmlinux 0x0434897a tpm_chip_unregister +EXPORT_SYMBOL_GPL vmlinux 0x043a18a1 __SCK__tp_func_mc_event EXPORT_SYMBOL_GPL vmlinux 0x044a0f90 __tracepoint_xdp_bulk_tx EXPORT_SYMBOL_GPL vmlinux 0x04599779 kset_create_and_add -EXPORT_SYMBOL_GPL vmlinux 0x045eb7d8 mbox_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x0459aaa3 lwtunnel_build_state +EXPORT_SYMBOL_GPL vmlinux 0x045f795c of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x046369bc dw_pcie_ep_init EXPORT_SYMBOL_GPL vmlinux 0x0465a073 regmap_reg_in_ranges -EXPORT_SYMBOL_GPL vmlinux 0x046aac40 device_change_owner -EXPORT_SYMBOL_GPL vmlinux 0x046c4aa6 battery_hook_register EXPORT_SYMBOL_GPL vmlinux 0x048b5f8d twl4030_audio_get_mclk -EXPORT_SYMBOL_GPL vmlinux 0x048b928c acpi_device_fwnode_ops -EXPORT_SYMBOL_GPL vmlinux 0x049cb9f0 relay_open -EXPORT_SYMBOL_GPL vmlinux 0x049ce40b device_create_managed_software_node +EXPORT_SYMBOL_GPL vmlinux 0x048e3039 spi_mem_dtr_supports_op +EXPORT_SYMBOL_GPL vmlinux 0x0492a7c6 __inode_attach_wb EXPORT_SYMBOL_GPL vmlinux 0x049e5156 gnttab_try_end_foreign_access -EXPORT_SYMBOL_GPL vmlinux 0x04a25d4f gpiod_set_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x04a1a3b3 pwm_request EXPORT_SYMBOL_GPL vmlinux 0x04bf0092 io_cgrp_subsys_enabled_key EXPORT_SYMBOL_GPL vmlinux 0x04c4f603 mpi_get_buffer EXPORT_SYMBOL_GPL vmlinux 0x04c8aebf console_verbose -EXPORT_SYMBOL_GPL vmlinux 0x04d441ad tps65912_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x04d1bada tty_set_ldisc EXPORT_SYMBOL_GPL vmlinux 0x04df8fbc lzo1x_decompress_safe -EXPORT_SYMBOL_GPL vmlinux 0x051c10ea dev_pm_opp_set_prop_name -EXPORT_SYMBOL_GPL vmlinux 0x0528791c __fscrypt_prepare_rename +EXPORT_SYMBOL_GPL vmlinux 0x051c7aaf icc_disable +EXPORT_SYMBOL_GPL vmlinux 0x0526a657 fscrypt_ioctl_get_policy_ex +EXPORT_SYMBOL_GPL vmlinux 0x052903dd acpi_get_pci_dev EXPORT_SYMBOL_GPL vmlinux 0x052c9aed ktime_get_real_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0x052dec84 sk_set_peek_off -EXPORT_SYMBOL_GPL vmlinux 0x053d4d27 transport_add_device -EXPORT_SYMBOL_GPL vmlinux 0x054b86f6 gen10g_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0x0544c3f5 virtqueue_detach_unused_buf EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt -EXPORT_SYMBOL_GPL vmlinux 0x0569d1cd rio_request_outb_dbell -EXPORT_SYMBOL_GPL vmlinux 0x057086d4 device_get_match_data -EXPORT_SYMBOL_GPL vmlinux 0x0583a5d3 vfio_group_get_external_user +EXPORT_SYMBOL_GPL vmlinux 0x05613442 pci_epf_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x0566304c xfrm_dev_offload_ok +EXPORT_SYMBOL_GPL vmlinux 0x0570b4a5 cpuidle_register +EXPORT_SYMBOL_GPL vmlinux 0x05789018 icc_set_bw +EXPORT_SYMBOL_GPL vmlinux 0x057d5f65 virtio_device_restore EXPORT_SYMBOL_GPL vmlinux 0x05883efb __traceiter_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0x058b4b01 sysfs_create_groups EXPORT_SYMBOL_GPL vmlinux 0x058f9366 apei_exec_collect_resources -EXPORT_SYMBOL_GPL vmlinux 0x059868eb thermal_zone_device_register -EXPORT_SYMBOL_GPL vmlinux 0x059e7dda spi_mem_adjust_op_size -EXPORT_SYMBOL_GPL vmlinux 0x05bedec0 fwnode_property_present -EXPORT_SYMBOL_GPL vmlinux 0x05c74d6b blk_set_pm_only -EXPORT_SYMBOL_GPL vmlinux 0x05d3bc93 netlink_has_listeners -EXPORT_SYMBOL_GPL vmlinux 0x05dd22d6 dma_buf_fd -EXPORT_SYMBOL_GPL vmlinux 0x05ebf362 __SCK__tp_func_devlink_hwmsg -EXPORT_SYMBOL_GPL vmlinux 0x05f33c4e icc_sync_state -EXPORT_SYMBOL_GPL vmlinux 0x05f6e2d0 __devm_intel_scu_ipc_register -EXPORT_SYMBOL_GPL vmlinux 0x0602182e class_destroy -EXPORT_SYMBOL_GPL vmlinux 0x060c9d7c gov_update_cpu_data +EXPORT_SYMBOL_GPL vmlinux 0x05a03d50 ata_bmdma_dumb_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x05a0f3b4 debugfs_create_file_unsafe +EXPORT_SYMBOL_GPL vmlinux 0x05a3956c pci_epc_remove_epf +EXPORT_SYMBOL_GPL vmlinux 0x05a39d94 da903x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x05aaa935 usb_find_interface +EXPORT_SYMBOL_GPL vmlinux 0x05be8dd3 __netif_set_xps_queue +EXPORT_SYMBOL_GPL vmlinux 0x05cea07f kgdb_unregister_io_module +EXPORT_SYMBOL_GPL vmlinux 0x05d1e7c9 fwnode_get_name +EXPORT_SYMBOL_GPL vmlinux 0x05e11c0d __SCK__tp_func_pelt_rt_tp +EXPORT_SYMBOL_GPL vmlinux 0x060217b9 rio_del_device +EXPORT_SYMBOL_GPL vmlinux 0x060bdf39 regulator_set_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0x061204df generic_fsdax_supported EXPORT_SYMBOL_GPL vmlinux 0x06209f49 phy_lookup_setting -EXPORT_SYMBOL_GPL vmlinux 0x06213053 icc_set_bw EXPORT_SYMBOL_GPL vmlinux 0x0626da5f od_unregister_powersave_bias_handler -EXPORT_SYMBOL_GPL vmlinux 0x0629d9de __traceiter_tcp_bad_csum +EXPORT_SYMBOL_GPL vmlinux 0x0638ac66 blk_ksm_update_capabilities +EXPORT_SYMBOL_GPL vmlinux 0x063a9ddc devres_get +EXPORT_SYMBOL_GPL vmlinux 0x063acc87 register_wide_hw_breakpoint EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry -EXPORT_SYMBOL_GPL vmlinux 0x06524ef1 msg_zerocopy_put_abort -EXPORT_SYMBOL_GPL vmlinux 0x066db65d crypto_unregister_rngs -EXPORT_SYMBOL_GPL vmlinux 0x06758a0e pci_msi_unmask_irq -EXPORT_SYMBOL_GPL vmlinux 0x069374e4 blkcg_root +EXPORT_SYMBOL_GPL vmlinux 0x0669c816 compat_only_sysfs_link_entry_to_kobj +EXPORT_SYMBOL_GPL vmlinux 0x066da201 crypto_unregister_kpp +EXPORT_SYMBOL_GPL vmlinux 0x0671521e spi_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x0689de61 thermal_cooling_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x069736d2 led_trigger_blink_oneshot EXPORT_SYMBOL_GPL vmlinux 0x069ce6c3 srcu_barrier -EXPORT_SYMBOL_GPL vmlinux 0x06c249c8 nd_region_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x06a8637b scsi_dh_attached_handler_name EXPORT_SYMBOL_GPL vmlinux 0x06cca30b ring_buffer_record_off -EXPORT_SYMBOL_GPL vmlinux 0x06e1f98a spi_finalize_current_message -EXPORT_SYMBOL_GPL vmlinux 0x07106eed usb_get_intf -EXPORT_SYMBOL_GPL vmlinux 0x0713d9ca __SCK__tp_func_sched_update_nr_running_tp +EXPORT_SYMBOL_GPL vmlinux 0x06d5139e nfs_ssc_register +EXPORT_SYMBOL_GPL vmlinux 0x06dd4564 mmu_notifier_put +EXPORT_SYMBOL_GPL vmlinux 0x06e630cb dax_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x070d9ea5 usb_get_from_anchor +EXPORT_SYMBOL_GPL vmlinux 0x07135e35 dma_mmap_pages EXPORT_SYMBOL_GPL vmlinux 0x07242d92 put_dax -EXPORT_SYMBOL_GPL vmlinux 0x072b5350 dma_buf_unpin -EXPORT_SYMBOL_GPL vmlinux 0x072d0ab2 acpi_pci_check_ejectable +EXPORT_SYMBOL_GPL vmlinux 0x07303e98 __vfs_setxattr_noperm +EXPORT_SYMBOL_GPL vmlinux 0x07368164 generic_handle_domain_irq EXPORT_SYMBOL_GPL vmlinux 0x07483e13 cn_del_callback -EXPORT_SYMBOL_GPL vmlinux 0x0749eba8 dummy_con +EXPORT_SYMBOL_GPL vmlinux 0x074a6044 xdp_rxq_info_is_reg EXPORT_SYMBOL_GPL vmlinux 0x074f98db synth_event_add_field -EXPORT_SYMBOL_GPL vmlinux 0x0752caa8 rio_request_dma -EXPORT_SYMBOL_GPL vmlinux 0x07537fd9 hwspin_lock_get_id -EXPORT_SYMBOL_GPL vmlinux 0x075eb031 nvdimm_pmem_region_create +EXPORT_SYMBOL_GPL vmlinux 0x075e8254 tpm_put_ops EXPORT_SYMBOL_GPL vmlinux 0x076356e7 sfp_may_have_phy -EXPORT_SYMBOL_GPL vmlinux 0x0763f670 dma_release_channel EXPORT_SYMBOL_GPL vmlinux 0x07646cee ata_tf_to_fis -EXPORT_SYMBOL_GPL vmlinux 0x0786c086 inet6_csk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x078a6ae0 ata_std_bios_param -EXPORT_SYMBOL_GPL vmlinux 0x0793d8e9 __tracepoint_sched_overutilized_tp -EXPORT_SYMBOL_GPL vmlinux 0x0796aa93 mmc_send_status -EXPORT_SYMBOL_GPL vmlinux 0x079a43cc usb_register_dev -EXPORT_SYMBOL_GPL vmlinux 0x07a0c6c4 __tracepoint_rpm_return_int -EXPORT_SYMBOL_GPL vmlinux 0x07a34723 usb_put_dev -EXPORT_SYMBOL_GPL vmlinux 0x07a63281 x86_vector_domain +EXPORT_SYMBOL_GPL vmlinux 0x076bb6dc crypto_unregister_ahashes +EXPORT_SYMBOL_GPL vmlinux 0x07ab3342 dma_vmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x07ab792f inet_ctl_sock_create EXPORT_SYMBOL_GPL vmlinux 0x07b21f85 kdb_get_kbd_char -EXPORT_SYMBOL_GPL vmlinux 0x07b37ea0 genphy_c45_aneg_done +EXPORT_SYMBOL_GPL vmlinux 0x07b4e170 wwan_port_rx EXPORT_SYMBOL_GPL vmlinux 0x07b52e38 rtnl_unregister EXPORT_SYMBOL_GPL vmlinux 0x07b64d81 hyperv_stop_tsc_emulation +EXPORT_SYMBOL_GPL vmlinux 0x07bb36a8 spi_mem_dirmap_create EXPORT_SYMBOL_GPL vmlinux 0x07be6905 net_inc_egress_queue -EXPORT_SYMBOL_GPL vmlinux 0x07c9ea01 ethnl_cable_test_pulse -EXPORT_SYMBOL_GPL vmlinux 0x07eca3bd efivar_entry_set_get_size -EXPORT_SYMBOL_GPL vmlinux 0x07ef1414 hwmon_device_register -EXPORT_SYMBOL_GPL vmlinux 0x07fa75ce regulator_map_voltage_linear_range -EXPORT_SYMBOL_GPL vmlinux 0x07fc1454 scsi_dh_attached_handler_name -EXPORT_SYMBOL_GPL vmlinux 0x080f7df3 event_triggers_post_call -EXPORT_SYMBOL_GPL vmlinux 0x0810e203 thermal_zone_device_update +EXPORT_SYMBOL_GPL vmlinux 0x07c692ed __nf_ip6_route +EXPORT_SYMBOL_GPL vmlinux 0x07cc6fad devlink_dpipe_entry_ctx_close +EXPORT_SYMBOL_GPL vmlinux 0x07f55603 devlink_resource_register +EXPORT_SYMBOL_GPL vmlinux 0x07f5565f register_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x07f6461b fscrypt_mergeable_bio_bh +EXPORT_SYMBOL_GPL vmlinux 0x0811c918 iomap_seek_data EXPORT_SYMBOL_GPL vmlinux 0x08135613 dax_write_cache -EXPORT_SYMBOL_GPL vmlinux 0x081500f2 pm_clk_remove -EXPORT_SYMBOL_GPL vmlinux 0x081a5a9b nvmem_cell_get -EXPORT_SYMBOL_GPL vmlinux 0x0828d609 mc146818_get_time -EXPORT_SYMBOL_GPL vmlinux 0x0829ca7e virtqueue_kick -EXPORT_SYMBOL_GPL vmlinux 0x0847009f iommu_get_domain_for_dev -EXPORT_SYMBOL_GPL vmlinux 0x084b8978 bus_set_iommu -EXPORT_SYMBOL_GPL vmlinux 0x0855fc94 receive_fd -EXPORT_SYMBOL_GPL vmlinux 0x086733cd pci_probe_reset_slot -EXPORT_SYMBOL_GPL vmlinux 0x0876428e tty_release_struct +EXPORT_SYMBOL_GPL vmlinux 0x0819c7c1 pm_runtime_no_callbacks +EXPORT_SYMBOL_GPL vmlinux 0x081acab6 isa_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x0845b596 xdp_do_redirect +EXPORT_SYMBOL_GPL vmlinux 0x0855b1d0 extcon_get_state +EXPORT_SYMBOL_GPL vmlinux 0x085d762d pci_user_write_config_byte +EXPORT_SYMBOL_GPL vmlinux 0x085eb4ee uart_get_rs485_mode +EXPORT_SYMBOL_GPL vmlinux 0x08672cc3 tcp_cong_avoid_ai +EXPORT_SYMBOL_GPL vmlinux 0x086825df devfreq_event_set_event +EXPORT_SYMBOL_GPL vmlinux 0x08724909 __regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0x087d441d ipv4_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0x087f5dc5 wm831x_of_match -EXPORT_SYMBOL_GPL vmlinux 0x087f9beb debugfs_attr_read -EXPORT_SYMBOL_GPL vmlinux 0x0881fa25 page_mkclean -EXPORT_SYMBOL_GPL vmlinux 0x088b699a crypto_hash_walk_done -EXPORT_SYMBOL_GPL vmlinux 0x089551f9 sdio_get_host_pm_caps -EXPORT_SYMBOL_GPL vmlinux 0x089d1046 pci_epf_unbind +EXPORT_SYMBOL_GPL vmlinux 0x08807171 sdio_release_host +EXPORT_SYMBOL_GPL vmlinux 0x08820234 sock_diag_save_cookie +EXPORT_SYMBOL_GPL vmlinux 0x0886a4a1 rio_mport_get_feature +EXPORT_SYMBOL_GPL vmlinux 0x088cbf9f devlink_trap_policers_unregister +EXPORT_SYMBOL_GPL vmlinux 0x08b9a3b9 blkcg_deactivate_policy EXPORT_SYMBOL_GPL vmlinux 0x08c78cf7 offline_and_remove_memory -EXPORT_SYMBOL_GPL vmlinux 0x08e1a5e2 percpu_down_write -EXPORT_SYMBOL_GPL vmlinux 0x08f1fbca tty_find_polling_driver -EXPORT_SYMBOL_GPL vmlinux 0x09052cc0 dev_pm_genpd_set_performance_state +EXPORT_SYMBOL_GPL vmlinux 0x08fddd49 wm831x_reg_lock EXPORT_SYMBOL_GPL vmlinux 0x0907d14d blocking_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0x09154e6e trace_put_event_file +EXPORT_SYMBOL_GPL vmlinux 0x09117257 usb_ep0_reinit +EXPORT_SYMBOL_GPL vmlinux 0x0918e394 firmware_request_nowarn EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies -EXPORT_SYMBOL_GPL vmlinux 0x0923ed38 pci_enable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x0923496b acpi_cppc_processor_probe EXPORT_SYMBOL_GPL vmlinux 0x0925493f clear_page_orig -EXPORT_SYMBOL_GPL vmlinux 0x092ca193 kernel_read_file +EXPORT_SYMBOL_GPL vmlinux 0x0926ce66 __tracepoint_xhci_dbg_quirks +EXPORT_SYMBOL_GPL vmlinux 0x092d9c48 devm_regmap_field_free EXPORT_SYMBOL_GPL vmlinux 0x09337cd0 __wake_up_locked_key -EXPORT_SYMBOL_GPL vmlinux 0x0936f87e xen_xenbus_fops +EXPORT_SYMBOL_GPL vmlinux 0x09374ace list_lru_walk_one EXPORT_SYMBOL_GPL vmlinux 0x093786cf synth_event_add_field_str -EXPORT_SYMBOL_GPL vmlinux 0x093e4704 fuse_dev_alloc -EXPORT_SYMBOL_GPL vmlinux 0x095bc99d invalidate_inode_pages2 +EXPORT_SYMBOL_GPL vmlinux 0x0946426f crypto_alloc_acomp +EXPORT_SYMBOL_GPL vmlinux 0x094a183d vp_modern_config_vector +EXPORT_SYMBOL_GPL vmlinux 0x0955cef5 __traceiter_pelt_se_tp EXPORT_SYMBOL_GPL vmlinux 0x096a7e6f x86_spec_ctrl_base -EXPORT_SYMBOL_GPL vmlinux 0x099711e7 software_node_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x09a5b81f xhci_check_bandwidth -EXPORT_SYMBOL_GPL vmlinux 0x09a877aa alloc_dax_region -EXPORT_SYMBOL_GPL vmlinux 0x09aaadcc devres_open_group -EXPORT_SYMBOL_GPL vmlinux 0x09afe722 usb_control_msg +EXPORT_SYMBOL_GPL vmlinux 0x0973454e dma_get_merge_boundary +EXPORT_SYMBOL_GPL vmlinux 0x09735c28 crypto_unregister_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x09775aa7 dev_attr_ncq_prio_supported +EXPORT_SYMBOL_GPL vmlinux 0x099a28ea crypto_alloc_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x09a2bd0a devm_gpiod_unhinge EXPORT_SYMBOL_GPL vmlinux 0x09b53e14 interval_tree_remove -EXPORT_SYMBOL_GPL vmlinux 0x09b92808 irq_domain_update_bus_token -EXPORT_SYMBOL_GPL vmlinux 0x09c6a2db fwnode_handle_get +EXPORT_SYMBOL_GPL vmlinux 0x09ba1a95 usb_add_hcd +EXPORT_SYMBOL_GPL vmlinux 0x09c479f3 iomap_page_mkwrite +EXPORT_SYMBOL_GPL vmlinux 0x09d1be30 pwm_free EXPORT_SYMBOL_GPL vmlinux 0x09d63265 list_lru_count_node -EXPORT_SYMBOL_GPL vmlinux 0x09fca8bb __SCK__tp_func_pelt_irq_tp -EXPORT_SYMBOL_GPL vmlinux 0x09fd5db0 iomap_zero_range -EXPORT_SYMBOL_GPL vmlinux 0x0a12dd4b sfp_bus_add_upstream -EXPORT_SYMBOL_GPL vmlinux 0x0a16d81c devfreq_event_disable_edev -EXPORT_SYMBOL_GPL vmlinux 0x0a282a5f ima_file_check +EXPORT_SYMBOL_GPL vmlinux 0x09dcb9b3 serial8250_modem_status +EXPORT_SYMBOL_GPL vmlinux 0x09dfdc5a tty_kopen_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x09ef8fb6 dev_pm_opp_free_cpufreq_table +EXPORT_SYMBOL_GPL vmlinux 0x0a283a41 virtqueue_poll +EXPORT_SYMBOL_GPL vmlinux 0x0a45840f acpi_subsys_runtime_suspend EXPORT_SYMBOL_GPL vmlinux 0x0a502c98 dmar_platform_optin +EXPORT_SYMBOL_GPL vmlinux 0x0a50a199 screen_glyph EXPORT_SYMBOL_GPL vmlinux 0x0a52c511 hv_query_ext_cap +EXPORT_SYMBOL_GPL vmlinux 0x0a56a2e7 serial8250_do_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x0a595856 spi_sync_locked +EXPORT_SYMBOL_GPL vmlinux 0x0a5cf34a badblocks_init +EXPORT_SYMBOL_GPL vmlinux 0x0a627208 devfreq_cooling_em_register EXPORT_SYMBOL_GPL vmlinux 0x0a6c4041 cn_netlink_send -EXPORT_SYMBOL_GPL vmlinux 0x0a80366b tty_buffer_request_room -EXPORT_SYMBOL_GPL vmlinux 0x0a8a108f __devm_regmap_init_mmio_clk -EXPORT_SYMBOL_GPL vmlinux 0x0aa32394 devm_kstrdup_const -EXPORT_SYMBOL_GPL vmlinux 0x0aac46c1 pm_genpd_add_subdomain +EXPORT_SYMBOL_GPL vmlinux 0x0a6c991d devm_power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0x0a8c1032 iomap_bmap +EXPORT_SYMBOL_GPL vmlinux 0x0a913aaf locks_release_private +EXPORT_SYMBOL_GPL vmlinux 0x0a925547 dev_pm_opp_put +EXPORT_SYMBOL_GPL vmlinux 0x0a93a548 iopf_queue_add_device +EXPORT_SYMBOL_GPL vmlinux 0x0aadb512 led_sysfs_disable EXPORT_SYMBOL_GPL vmlinux 0x0abcbf05 pkcs7_parse_message -EXPORT_SYMBOL_GPL vmlinux 0x0ac85dc6 devlink_dpipe_action_put EXPORT_SYMBOL_GPL vmlinux 0x0ad137d3 lpit_read_residency_count_address -EXPORT_SYMBOL_GPL vmlinux 0x0ae582a5 devm_thermal_of_cooling_device_register -EXPORT_SYMBOL_GPL vmlinux 0x0ae6b8a4 device_get_next_child_node -EXPORT_SYMBOL_GPL vmlinux 0x0aec3ae0 fscrypt_set_context +EXPORT_SYMBOL_GPL vmlinux 0x0ad2c934 usb_altnum_to_altsetting +EXPORT_SYMBOL_GPL vmlinux 0x0add1f23 regulator_get_exclusive EXPORT_SYMBOL_GPL vmlinux 0x0af40724 iommu_alloc_resv_region +EXPORT_SYMBOL_GPL vmlinux 0x0afa252e device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0b01d350 l3mdev_link_scope_lookup +EXPORT_SYMBOL_GPL vmlinux 0x0b02d0a8 ata_sas_port_start +EXPORT_SYMBOL_GPL vmlinux 0x0b05a6b3 device_match_any EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct -EXPORT_SYMBOL_GPL vmlinux 0x0b089e69 call_switchdev_notifiers -EXPORT_SYMBOL_GPL vmlinux 0x0b1d32f7 lwtunnel_state_alloc EXPORT_SYMBOL_GPL vmlinux 0x0b2db2d5 remove_resource -EXPORT_SYMBOL_GPL vmlinux 0x0b3e3531 fib_new_table +EXPORT_SYMBOL_GPL vmlinux 0x0b3819de devm_fwnode_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x0b3e2ba9 acpi_storage_d3 EXPORT_SYMBOL_GPL vmlinux 0x0b4ed3f7 housekeeping_cpumask EXPORT_SYMBOL_GPL vmlinux 0x0b52e502 apei_resources_add -EXPORT_SYMBOL_GPL vmlinux 0x0b53c2ca ata_bmdma_qc_prep -EXPORT_SYMBOL_GPL vmlinux 0x0b7b5a93 param_ops_bool_enable_only -EXPORT_SYMBOL_GPL vmlinux 0x0b81a98f ata_sas_tport_delete -EXPORT_SYMBOL_GPL vmlinux 0x0b838de6 pci_user_write_config_word -EXPORT_SYMBOL_GPL vmlinux 0x0b863408 pci_user_read_config_word -EXPORT_SYMBOL_GPL vmlinux 0x0b87d96e vfio_pci_core_disable -EXPORT_SYMBOL_GPL vmlinux 0x0b988924 devlink_port_param_driverinit_value_set +EXPORT_SYMBOL_GPL vmlinux 0x0b6a365b clocksource_verify_percpu +EXPORT_SYMBOL_GPL vmlinux 0x0b70ed9e nvmem_device_find +EXPORT_SYMBOL_GPL vmlinux 0x0b82b2ed __pci_hp_initialize +EXPORT_SYMBOL_GPL vmlinux 0x0b84ade4 blkcg_print_blkgs +EXPORT_SYMBOL_GPL vmlinux 0x0b9a5863 device_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x0b9dcb3e ata_bmdma_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x0ba1b36e ata_dev_next +EXPORT_SYMBOL_GPL vmlinux 0x0ba70940 bus_set_iommu +EXPORT_SYMBOL_GPL vmlinux 0x0bb8a4b7 crypto_ahash_final EXPORT_SYMBOL_GPL vmlinux 0x0bbdc9b2 remove_memory EXPORT_SYMBOL_GPL vmlinux 0x0bbeaeba uv_bios_enum_ports -EXPORT_SYMBOL_GPL vmlinux 0x0bdaeb81 sdio_writesb -EXPORT_SYMBOL_GPL vmlinux 0x0bdb8f51 crypto_enqueue_request -EXPORT_SYMBOL_GPL vmlinux 0x0be0ea30 dma_async_device_channel_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0bf7298d __inet_inherit_port +EXPORT_SYMBOL_GPL vmlinux 0x0bc7eafe acpi_is_pnp_device +EXPORT_SYMBOL_GPL vmlinux 0x0bcacc78 crypto_unregister_rngs +EXPORT_SYMBOL_GPL vmlinux 0x0beb6c39 acpi_bind_one EXPORT_SYMBOL_GPL vmlinux 0x0bfa3a19 rcu_idle_exit -EXPORT_SYMBOL_GPL vmlinux 0x0c001583 gpiod_get_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x0c0478f8 fwnode_device_is_available -EXPORT_SYMBOL_GPL vmlinux 0x0c21e7a5 acpi_device_uevent_modalias +EXPORT_SYMBOL_GPL vmlinux 0x0c2893ec dax_iomap_fault EXPORT_SYMBOL_GPL vmlinux 0x0c2c5802 work_busy EXPORT_SYMBOL_GPL vmlinux 0x0c32ff8a edac_pci_alloc_index -EXPORT_SYMBOL_GPL vmlinux 0x0c3317d1 scsi_mode_select -EXPORT_SYMBOL_GPL vmlinux 0x0c3866f7 icc_get_name -EXPORT_SYMBOL_GPL vmlinux 0x0c72370e usb_get_maximum_ssp_rate -EXPORT_SYMBOL_GPL vmlinux 0x0c7df8ac cpufreq_freq_transition_end -EXPORT_SYMBOL_GPL vmlinux 0x0c7e501f unregister_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x0c473d27 virtqueue_get_buf +EXPORT_SYMBOL_GPL vmlinux 0x0c4846b5 devlink_param_value_changed +EXPORT_SYMBOL_GPL vmlinux 0x0c52f39c regmap_reinit_cache +EXPORT_SYMBOL_GPL vmlinux 0x0c54f20a ip_build_and_send_pkt +EXPORT_SYMBOL_GPL vmlinux 0x0c593bae gpiochip_generic_free +EXPORT_SYMBOL_GPL vmlinux 0x0c638839 devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0x0c7f348c dma_buf_dynamic_attach EXPORT_SYMBOL_GPL vmlinux 0x0c805f93 clflush_cache_range EXPORT_SYMBOL_GPL vmlinux 0x0c88c1c3 pci_vpd_find_id_string -EXPORT_SYMBOL_GPL vmlinux 0x0c978041 ata_pci_bmdma_init -EXPORT_SYMBOL_GPL vmlinux 0x0c9850ec skb_append_pagefrags -EXPORT_SYMBOL_GPL vmlinux 0x0cab033a dev_pm_enable_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0x0cb43da5 securityfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0x0c8a674c __tracepoint_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0x0ca9cf2f kthread_func +EXPORT_SYMBOL_GPL vmlinux 0x0cace266 hsu_dma_do_irq +EXPORT_SYMBOL_GPL vmlinux 0x0cb1f2dd blockdev_superblock +EXPORT_SYMBOL_GPL vmlinux 0x0cb2f0bc mbox_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0cb903ee subsys_dev_iter_exit EXPORT_SYMBOL_GPL vmlinux 0x0cbe3ee2 software_node_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0cbfb991 device_property_read_u16_array -EXPORT_SYMBOL_GPL vmlinux 0x0cf89f6a devlink_port_params_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0ce0139e sk_msg_return EXPORT_SYMBOL_GPL vmlinux 0x0cfe59cb hyperv_fill_flush_guest_mapping_list -EXPORT_SYMBOL_GPL vmlinux 0x0d01e603 vma_kernel_pagesize -EXPORT_SYMBOL_GPL vmlinux 0x0d0606b0 fscrypt_d_revalidate -EXPORT_SYMBOL_GPL vmlinux 0x0d091ed1 pinctrl_put -EXPORT_SYMBOL_GPL vmlinux 0x0d0a3e4c auxiliary_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0d1e4a5a pm_runtime_barrier -EXPORT_SYMBOL_GPL vmlinux 0x0d2909a8 efivar_entry_delete -EXPORT_SYMBOL_GPL vmlinux 0x0d2bd6aa kill_device +EXPORT_SYMBOL_GPL vmlinux 0x0d08dc28 regmap_irq_get_domain +EXPORT_SYMBOL_GPL vmlinux 0x0d18d5e7 pci_ioremap_wc_bar +EXPORT_SYMBOL_GPL vmlinux 0x0d2e3787 usb_poison_urb +EXPORT_SYMBOL_GPL vmlinux 0x0d3900fc pm_clk_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x0d410a25 usb_get_hcd EXPORT_SYMBOL_GPL vmlinux 0x0d459213 work_on_cpu_safe EXPORT_SYMBOL_GPL vmlinux 0x0d4961de nf_log_buf_open EXPORT_SYMBOL_GPL vmlinux 0x0d4e3f8c iopf_queue_alloc -EXPORT_SYMBOL_GPL vmlinux 0x0d51f0ce fwnode_count_parents -EXPORT_SYMBOL_GPL vmlinux 0x0d5a2c3f bsg_job_put +EXPORT_SYMBOL_GPL vmlinux 0x0d4f1c16 devm_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x0d53a363 cpufreq_driver_target EXPORT_SYMBOL_GPL vmlinux 0x0d5cecc6 ima_measure_critical_data -EXPORT_SYMBOL_GPL vmlinux 0x0d5de9e5 xenbus_dev_suspend -EXPORT_SYMBOL_GPL vmlinux 0x0d684b25 perf_event_create_kernel_counter -EXPORT_SYMBOL_GPL vmlinux 0x0d69c345 devm_platform_ioremap_resource_byname -EXPORT_SYMBOL_GPL vmlinux 0x0d99bfc6 watchdog_init_timeout -EXPORT_SYMBOL_GPL vmlinux 0x0d9fb793 tcp_reno_ssthresh +EXPORT_SYMBOL_GPL vmlinux 0x0d90d9c2 phy_speed_down +EXPORT_SYMBOL_GPL vmlinux 0x0d930cdc blk_mq_start_stopped_hw_queue +EXPORT_SYMBOL_GPL vmlinux 0x0da40651 ata_sff_dma_pause +EXPORT_SYMBOL_GPL vmlinux 0x0da5c525 __rt_mutex_init +EXPORT_SYMBOL_GPL vmlinux 0x0da7b10a usb_debug_root +EXPORT_SYMBOL_GPL vmlinux 0x0db720d0 sk_clone_lock EXPORT_SYMBOL_GPL vmlinux 0x0dcb3ee8 divider_recalc_rate +EXPORT_SYMBOL_GPL vmlinux 0x0dcdc0db ip_route_output_flow +EXPORT_SYMBOL_GPL vmlinux 0x0dd9fb5f usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0x0ddadea2 __SCT__tp_func_pelt_thermal_tp EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order -EXPORT_SYMBOL_GPL vmlinux 0x0ddf6f1a xenbus_dev_fatal -EXPORT_SYMBOL_GPL vmlinux 0x0de29e54 crypto_larval_kill -EXPORT_SYMBOL_GPL vmlinux 0x0dea7870 cpufreq_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x0dedb725 security_inode_setattr -EXPORT_SYMBOL_GPL vmlinux 0x0df39665 devlink_flash_update_status_notify +EXPORT_SYMBOL_GPL vmlinux 0x0dde5cbe ip_route_output_key_hash +EXPORT_SYMBOL_GPL vmlinux 0x0de824a3 fwnode_graph_get_remote_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x0df3d389 l3mdev_fib_table_by_index +EXPORT_SYMBOL_GPL vmlinux 0x0dfa9924 i2c_unregister_device EXPORT_SYMBOL_GPL vmlinux 0x0e007edf xen_evtchn_nr_channels -EXPORT_SYMBOL_GPL vmlinux 0x0e0f4f9b __tracepoint_non_standard_event EXPORT_SYMBOL_GPL vmlinux 0x0e1194d5 hrtimer_try_to_cancel EXPORT_SYMBOL_GPL vmlinux 0x0e13cb4d apei_resources_release +EXPORT_SYMBOL_GPL vmlinux 0x0e1b8480 pci_disable_sriov EXPORT_SYMBOL_GPL vmlinux 0x0e1fc8ef __SCT__tp_func_non_standard_event -EXPORT_SYMBOL_GPL vmlinux 0x0e38b289 regmap_fields_update_bits_base -EXPORT_SYMBOL_GPL vmlinux 0x0e5ec11a clk_hw_get_rate +EXPORT_SYMBOL_GPL vmlinux 0x0e31d3d0 dev_pm_get_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0x0e39d9c5 md_submit_discard_bio +EXPORT_SYMBOL_GPL vmlinux 0x0e50626e device_set_wakeup_capable +EXPORT_SYMBOL_GPL vmlinux 0x0e533db6 fwnode_graph_get_remote_node +EXPORT_SYMBOL_GPL vmlinux 0x0e68e482 __root_device_register EXPORT_SYMBOL_GPL vmlinux 0x0e6b79af static_key_disable_cpuslocked -EXPORT_SYMBOL_GPL vmlinux 0x0e780225 serial8250_read_char -EXPORT_SYMBOL_GPL vmlinux 0x0e9c3e40 init_user_ns +EXPORT_SYMBOL_GPL vmlinux 0x0e7a4788 device_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x0e90059e is_nvdimm_sync +EXPORT_SYMBOL_GPL vmlinux 0x0ea0e751 md_bitmap_copy_from_slot EXPORT_SYMBOL_GPL vmlinux 0x0ea5cbce xen_irq_lateeoi -EXPORT_SYMBOL_GPL vmlinux 0x0ea7d3b8 perf_pmu_migrate_context -EXPORT_SYMBOL_GPL vmlinux 0x0eb44984 xfrm_audit_policy_delete -EXPORT_SYMBOL_GPL vmlinux 0x0eb4de86 phy_create -EXPORT_SYMBOL_GPL vmlinux 0x0eba298a of_reset_control_array_get -EXPORT_SYMBOL_GPL vmlinux 0x0ebefb05 usb_ifnum_to_if +EXPORT_SYMBOL_GPL vmlinux 0x0eb9fadf simple_attr_release EXPORT_SYMBOL_GPL vmlinux 0x0ec096b0 hv_read_reference_counter -EXPORT_SYMBOL_GPL vmlinux 0x0ecb6dcf devm_power_supply_register -EXPORT_SYMBOL_GPL vmlinux 0x0ecce368 devlink_region_create -EXPORT_SYMBOL_GPL vmlinux 0x0ee6e4ed i2c_acpi_find_bus_speed EXPORT_SYMBOL_GPL vmlinux 0x0eeae3e8 key_type_encrypted -EXPORT_SYMBOL_GPL vmlinux 0x0efbe00f fscrypt_ioctl_get_key_status -EXPORT_SYMBOL_GPL vmlinux 0x0f00600a dm_path_uevent +EXPORT_SYMBOL_GPL vmlinux 0x0eeeecdc __cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0x0ef21baf wwan_register_ops +EXPORT_SYMBOL_GPL vmlinux 0x0ef89073 pci_epc_add_epf EXPORT_SYMBOL_GPL vmlinux 0x0f0b21fe pm_trace_rtc_abused -EXPORT_SYMBOL_GPL vmlinux 0x0f10b47f xfrm_output_resume -EXPORT_SYMBOL_GPL vmlinux 0x0f157446 crypto_get_default_null_skcipher EXPORT_SYMBOL_GPL vmlinux 0x0f180070 ring_buffer_free_read_page +EXPORT_SYMBOL_GPL vmlinux 0x0f1d6a9c iomap_file_buffered_write +EXPORT_SYMBOL_GPL vmlinux 0x0f22bd0d devm_i2c_new_dummy_device +EXPORT_SYMBOL_GPL vmlinux 0x0f249353 bpf_prog_inc_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x0f2cdc77 em_pd_get EXPORT_SYMBOL_GPL vmlinux 0x0f2d7d87 mce_unregister_decode_chain -EXPORT_SYMBOL_GPL vmlinux 0x0f46effe i2c_get_device_id -EXPORT_SYMBOL_GPL vmlinux 0x0f478770 dm_disk -EXPORT_SYMBOL_GPL vmlinux 0x0f4a92de ata_acpi_cbl_80wire +EXPORT_SYMBOL_GPL vmlinux 0x0f36ad24 vfio_unregister_group_dev +EXPORT_SYMBOL_GPL vmlinux 0x0f637d96 fuse_request_end +EXPORT_SYMBOL_GPL vmlinux 0x0f6dd919 component_del EXPORT_SYMBOL_GPL vmlinux 0x0f72ada1 acpi_dev_resource_io -EXPORT_SYMBOL_GPL vmlinux 0x0f780049 tty_port_default_client_ops +EXPORT_SYMBOL_GPL vmlinux 0x0f72b9f3 i2c_acpi_find_adapter_by_handle +EXPORT_SYMBOL_GPL vmlinux 0x0f7a7c35 dax_copy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0x0f7ab655 devres_close_group EXPORT_SYMBOL_GPL vmlinux 0x0f7ca236 dmi_memdev_name -EXPORT_SYMBOL_GPL vmlinux 0x0f7e952f blk_queue_max_discard_segments -EXPORT_SYMBOL_GPL vmlinux 0x0f8d38aa __tracepoint_neigh_timer_handler -EXPORT_SYMBOL_GPL vmlinux 0x0f9892bf lwtunnel_encap_add_ops +EXPORT_SYMBOL_GPL vmlinux 0x0f8566fb to_software_node +EXPORT_SYMBOL_GPL vmlinux 0x0f8f660e crypto_register_template +EXPORT_SYMBOL_GPL vmlinux 0x0f91f5f1 ata_sff_wait_ready +EXPORT_SYMBOL_GPL vmlinux 0x0f9ba4be crypto_stats_aead_encrypt EXPORT_SYMBOL_GPL vmlinux 0x0f9fc04e uv_get_archtype -EXPORT_SYMBOL_GPL vmlinux 0x0fb14d1c fwnode_get_nth_parent EXPORT_SYMBOL_GPL vmlinux 0x0fbb7344 memremap_compat_align EXPORT_SYMBOL_GPL vmlinux 0x0fc37562 amd_smn_read -EXPORT_SYMBOL_GPL vmlinux 0x0fc3fee1 is_current_mnt_ns +EXPORT_SYMBOL_GPL vmlinux 0x0fc7f8d6 __tracepoint_remove_device_from_group EXPORT_SYMBOL_GPL vmlinux 0x0fcc1969 copy_from_user_nmi -EXPORT_SYMBOL_GPL vmlinux 0x0fd3cd92 bind_interdomain_evtchn_to_irq_lateeoi EXPORT_SYMBOL_GPL vmlinux 0x0fd4610e kmem_dump_obj -EXPORT_SYMBOL_GPL vmlinux 0x0ffb2642 usb_interrupt_msg -EXPORT_SYMBOL_GPL vmlinux 0x100bbc03 regulator_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x1011c748 raw_seq_start +EXPORT_SYMBOL_GPL vmlinux 0x0fd8ac05 __SCK__tp_func_devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0x0fe0675c __tracepoint_sched_util_est_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x0fe175ad ata_sas_port_alloc +EXPORT_SYMBOL_GPL vmlinux 0x0fe5cb47 debugfs_attr_read +EXPORT_SYMBOL_GPL vmlinux 0x10028485 gpiochip_irq_domain_activate +EXPORT_SYMBOL_GPL vmlinux 0x10112813 rio_lock_device EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on -EXPORT_SYMBOL_GPL vmlinux 0x101934f1 param_set_uint_minmax +EXPORT_SYMBOL_GPL vmlinux 0x1016f1ae smp_ops +EXPORT_SYMBOL_GPL vmlinux 0x102ee76d nf_ipv6_ops +EXPORT_SYMBOL_GPL vmlinux 0x102eeced sysfs_remove_mount_point +EXPORT_SYMBOL_GPL vmlinux 0x1036e842 is_software_node EXPORT_SYMBOL_GPL vmlinux 0x1038b96f adxl_get_component_names -EXPORT_SYMBOL_GPL vmlinux 0x103bde85 gpiod_to_chip -EXPORT_SYMBOL_GPL vmlinux 0x103cef66 wm8350_device_init -EXPORT_SYMBOL_GPL vmlinux 0x104fb082 fscrypt_ioctl_get_policy_ex -EXPORT_SYMBOL_GPL vmlinux 0x10672c19 __inode_attach_wb -EXPORT_SYMBOL_GPL vmlinux 0x1077e79a blk_trace_setup -EXPORT_SYMBOL_GPL vmlinux 0x107b3aa9 __traceiter_pelt_se_tp -EXPORT_SYMBOL_GPL vmlinux 0x10804cfe ipv6_find_tlv +EXPORT_SYMBOL_GPL vmlinux 0x10410ac1 __traceiter_neigh_event_send_dead +EXPORT_SYMBOL_GPL vmlinux 0x104890b1 udp_destruct_sock +EXPORT_SYMBOL_GPL vmlinux 0x104e11b6 irq_domain_set_hwirq_and_chip +EXPORT_SYMBOL_GPL vmlinux 0x105a5314 console_drivers +EXPORT_SYMBOL_GPL vmlinux 0x1061459c sata_link_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x1067eea7 trace_seq_path +EXPORT_SYMBOL_GPL vmlinux 0x106cdeb0 blk_mark_disk_dead +EXPORT_SYMBOL_GPL vmlinux 0x107e1e5f device_driver_attach +EXPORT_SYMBOL_GPL vmlinux 0x1082c700 tracing_snapshot_cond_enable +EXPORT_SYMBOL_GPL vmlinux 0x10859c5e dax_writeback_mapping_range EXPORT_SYMBOL_GPL vmlinux 0x1088ea76 ftrace_set_notrace -EXPORT_SYMBOL_GPL vmlinux 0x10890771 devfreq_event_enable_edev EXPORT_SYMBOL_GPL vmlinux 0x108a0acd bstr_printf -EXPORT_SYMBOL_GPL vmlinux 0x10a63531 param_set_bool_enable_only -EXPORT_SYMBOL_GPL vmlinux 0x10b54bf4 crypto_stats_get -EXPORT_SYMBOL_GPL vmlinux 0x10c451ca __devm_of_phy_provider_register -EXPORT_SYMBOL_GPL vmlinux 0x10c6ee9f pci_rescan_bus -EXPORT_SYMBOL_GPL vmlinux 0x10dfca39 serial8250_rpm_put_tx -EXPORT_SYMBOL_GPL vmlinux 0x10e993ae crypto_grab_akcipher -EXPORT_SYMBOL_GPL vmlinux 0x10eb3f97 device_property_present -EXPORT_SYMBOL_GPL vmlinux 0x10ec77d1 __sock_recv_wifi_status +EXPORT_SYMBOL_GPL vmlinux 0x109274ed iterate_mounts +EXPORT_SYMBOL_GPL vmlinux 0x1092f231 irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x10986888 crypto_shash_digest +EXPORT_SYMBOL_GPL vmlinux 0x109c449a __class_create +EXPORT_SYMBOL_GPL vmlinux 0x10b1e530 sk_detach_filter +EXPORT_SYMBOL_GPL vmlinux 0x10b505d1 ip6_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x10bb6ebf __static_call_update +EXPORT_SYMBOL_GPL vmlinux 0x10bbaf54 page_cache_async_ra +EXPORT_SYMBOL_GPL vmlinux 0x10c42ab0 ata_dummy_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x10c67e1a of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x10ccbecc i2c_generic_scl_recovery +EXPORT_SYMBOL_GPL vmlinux 0x10ced9f2 acpi_pm_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0x10d5099d lookup_address_in_mm +EXPORT_SYMBOL_GPL vmlinux 0x10d536e5 __tracepoint_non_standard_event EXPORT_SYMBOL_GPL vmlinux 0x10ecc52c usb_amd_quirk_pll_enable +EXPORT_SYMBOL_GPL vmlinux 0x10f5231a platform_get_irq_optional EXPORT_SYMBOL_GPL vmlinux 0x110106c1 cper_severity_to_aer -EXPORT_SYMBOL_GPL vmlinux 0x110ce716 ata_qc_complete -EXPORT_SYMBOL_GPL vmlinux 0x1113bf4b phy_remove_lookup -EXPORT_SYMBOL_GPL vmlinux 0x1122f01d virtio_device_restore -EXPORT_SYMBOL_GPL vmlinux 0x1132bed3 clk_hw_register_fractional_divider -EXPORT_SYMBOL_GPL vmlinux 0x1152b3d4 tpm_transmit_cmd -EXPORT_SYMBOL_GPL vmlinux 0x1154f929 usb_get_urb -EXPORT_SYMBOL_GPL vmlinux 0x11550ddd blk_mq_sched_mark_restart_hctx -EXPORT_SYMBOL_GPL vmlinux 0x11551f8b get_governor_parent_kobj -EXPORT_SYMBOL_GPL vmlinux 0x115caedb cpufreq_cpu_put -EXPORT_SYMBOL_GPL vmlinux 0x115e465b inet_twsk_put -EXPORT_SYMBOL_GPL vmlinux 0x115e86fe nfs_ssc_client_tbl -EXPORT_SYMBOL_GPL vmlinux 0x115eabd9 gpiod_export_link +EXPORT_SYMBOL_GPL vmlinux 0x1112928b devm_irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x112130da i2c_dw_probe_master +EXPORT_SYMBOL_GPL vmlinux 0x112be59d ata_host_resume +EXPORT_SYMBOL_GPL vmlinux 0x114ef14e pinctrl_dev_get_devname +EXPORT_SYMBOL_GPL vmlinux 0x115fc064 nexthop_for_each_fib6_nh EXPORT_SYMBOL_GPL vmlinux 0x116180b5 hv_current_partition_id -EXPORT_SYMBOL_GPL vmlinux 0x1164043c extcon_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x11652945 blk_mq_hctx_set_fq_lock_class -EXPORT_SYMBOL_GPL vmlinux 0x1179be52 pci_epc_unmap_addr -EXPORT_SYMBOL_GPL vmlinux 0x117bdee0 mmu_notifier_get_locked -EXPORT_SYMBOL_GPL vmlinux 0x1198ac47 regulator_list_voltage_linear -EXPORT_SYMBOL_GPL vmlinux 0x119fca15 devm_gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x116d5f75 usb_hcd_start_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x1174cd77 irq_domain_alloc_irqs_parent +EXPORT_SYMBOL_GPL vmlinux 0x1178b411 dev_pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0x118c7a96 pwm_capture +EXPORT_SYMBOL_GPL vmlinux 0x118ecdd4 perf_aux_output_end +EXPORT_SYMBOL_GPL vmlinux 0x11a10b77 gpiod_export_link EXPORT_SYMBOL_GPL vmlinux 0x11a2e0ac crypto_dh_key_len -EXPORT_SYMBOL_GPL vmlinux 0x11a78539 __xenmem_reservation_va_mapping_reset -EXPORT_SYMBOL_GPL vmlinux 0x11abec34 ata_acpi_gtm_xfermask -EXPORT_SYMBOL_GPL vmlinux 0x11b66120 fib6_new_table -EXPORT_SYMBOL_GPL vmlinux 0x11cb9e7d relay_buf_full -EXPORT_SYMBOL_GPL vmlinux 0x11cf0a07 pci_vfs_assigned -EXPORT_SYMBOL_GPL vmlinux 0x11d1e0a7 phy_check_downshift -EXPORT_SYMBOL_GPL vmlinux 0x11d5dbbb virtqueue_add_inbuf +EXPORT_SYMBOL_GPL vmlinux 0x11bae19b dev_pm_opp_adjust_voltage 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 0x11e84432 spi_register_controller -EXPORT_SYMBOL_GPL vmlinux 0x1201369c devlink_port_register -EXPORT_SYMBOL_GPL vmlinux 0x1208ac5e sysfs_notify -EXPORT_SYMBOL_GPL vmlinux 0x120c7602 ip6_dst_lookup_tunnel +EXPORT_SYMBOL_GPL vmlinux 0x11e99422 usb_acpi_power_manageable +EXPORT_SYMBOL_GPL vmlinux 0x11eb507a cpufreq_register_governor +EXPORT_SYMBOL_GPL vmlinux 0x120862e6 ata_bmdma_irq_clear EXPORT_SYMBOL_GPL vmlinux 0x12189359 __SCT__tp_func_block_unplug -EXPORT_SYMBOL_GPL vmlinux 0x121a0840 pci_enable_pcie_error_reporting EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier -EXPORT_SYMBOL_GPL vmlinux 0x1222e110 regmap_raw_write_async EXPORT_SYMBOL_GPL vmlinux 0x1234e483 get_cpu_iowait_time_us EXPORT_SYMBOL_GPL vmlinux 0x1234ffa1 cper_estatus_check_header -EXPORT_SYMBOL_GPL vmlinux 0x1238e495 dma_buf_begin_cpu_access -EXPORT_SYMBOL_GPL vmlinux 0x1263bfe3 extcon_get_edev_name +EXPORT_SYMBOL_GPL vmlinux 0x1256205d __SCK__tp_func_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0x12651cec crypto_alloc_aead EXPORT_SYMBOL_GPL vmlinux 0x1268f357 resume_device_irqs EXPORT_SYMBOL_GPL vmlinux 0x127c109b __SCT__tp_func_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0x1284a72b ip6_datagram_recv_ctl EXPORT_SYMBOL_GPL vmlinux 0x129334ae sfp_parse_support -EXPORT_SYMBOL_GPL vmlinux 0x129f89db transport_configure_device -EXPORT_SYMBOL_GPL vmlinux 0x12aa73cb lwtunnel_cmp_encap -EXPORT_SYMBOL_GPL vmlinux 0x12b4f820 fsverity_ioctl_read_metadata -EXPORT_SYMBOL_GPL vmlinux 0x12c00450 ip6_datagram_release_cb -EXPORT_SYMBOL_GPL vmlinux 0x12ce62b0 usb_driver_release_interface +EXPORT_SYMBOL_GPL vmlinux 0x12b1230f irq_create_mapping_affinity +EXPORT_SYMBOL_GPL vmlinux 0x12c0c5fd clean_record_shared_mapping_range EXPORT_SYMBOL_GPL vmlinux 0x12db3a8b kvm_clock EXPORT_SYMBOL_GPL vmlinux 0x12e285ec is_uv_system -EXPORT_SYMBOL_GPL vmlinux 0x12e4a81a usb_driver_set_configuration -EXPORT_SYMBOL_GPL vmlinux 0x12e9f36a __sock_recv_timestamp EXPORT_SYMBOL_GPL vmlinux 0x12ee1173 memory_group_unregister -EXPORT_SYMBOL_GPL vmlinux 0x12f190ff cpufreq_disable_fast_switch -EXPORT_SYMBOL_GPL vmlinux 0x12f2a96a devres_close_group +EXPORT_SYMBOL_GPL vmlinux 0x12ef49d7 tty_perform_flush +EXPORT_SYMBOL_GPL vmlinux 0x13006034 scsi_host_unblock +EXPORT_SYMBOL_GPL vmlinux 0x13058a25 regmap_add_irq_chip EXPORT_SYMBOL_GPL vmlinux 0x131a5ed7 regmap_del_irq_chip EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq -EXPORT_SYMBOL_GPL vmlinux 0x1325c563 tty_port_tty_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x1326e427 crypto_type_has_alg +EXPORT_SYMBOL_GPL vmlinux 0x1325a392 acpi_gpiochip_request_interrupts +EXPORT_SYMBOL_GPL vmlinux 0x132ec649 sdio_disable_func +EXPORT_SYMBOL_GPL vmlinux 0x1338e398 phy_remove_lookup EXPORT_SYMBOL_GPL vmlinux 0x133969d7 __trace_printk -EXPORT_SYMBOL_GPL vmlinux 0x13406125 sdio_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x13503787 devm_spi_mem_dirmap_create -EXPORT_SYMBOL_GPL vmlinux 0x1354a27c acpi_dma_request_slave_chan_by_name -EXPORT_SYMBOL_GPL vmlinux 0x13567271 acpi_subsys_complete -EXPORT_SYMBOL_GPL vmlinux 0x135880b5 xfrm_register_translator +EXPORT_SYMBOL_GPL vmlinux 0x133e57fb gov_attr_set_init +EXPORT_SYMBOL_GPL vmlinux 0x135aed83 iomap_ioend_try_merge EXPORT_SYMBOL_GPL vmlinux 0x136209db power_supply_reg_notifier -EXPORT_SYMBOL_GPL vmlinux 0x1364e359 raw_abort -EXPORT_SYMBOL_GPL vmlinux 0x1365cf9f tty_buffer_set_limit -EXPORT_SYMBOL_GPL vmlinux 0x136d4eb6 devm_kasprintf +EXPORT_SYMBOL_GPL vmlinux 0x136b023b tty_find_polling_driver +EXPORT_SYMBOL_GPL vmlinux 0x136f2bd2 driver_register +EXPORT_SYMBOL_GPL vmlinux 0x1375457a __SCK__tp_func_pelt_thermal_tp +EXPORT_SYMBOL_GPL vmlinux 0x13899ba9 spi_mem_default_supports_op EXPORT_SYMBOL_GPL vmlinux 0x138aff76 gnttab_init EXPORT_SYMBOL_GPL vmlinux 0x138e0957 dax_write_cache_enabled -EXPORT_SYMBOL_GPL vmlinux 0x1392a072 bio_start_io_acct_time -EXPORT_SYMBOL_GPL vmlinux 0x13967154 spi_unregister_controller -EXPORT_SYMBOL_GPL vmlinux 0x139748b3 find_vpid -EXPORT_SYMBOL_GPL vmlinux 0x139e97a2 xen_remap_vma_range -EXPORT_SYMBOL_GPL vmlinux 0x13a659b9 usb_get_from_anchor -EXPORT_SYMBOL_GPL vmlinux 0x13bd28f0 pcie_aspm_enabled +EXPORT_SYMBOL_GPL vmlinux 0x1399a606 max8997_write_reg +EXPORT_SYMBOL_GPL vmlinux 0x139a300d __dax_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x13b13adb acpi_dev_get_first_consumer_dev +EXPORT_SYMBOL_GPL vmlinux 0x13b972bc call_switchdev_blocking_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x13bb477c ata_sff_check_status EXPORT_SYMBOL_GPL vmlinux 0x13ce87e8 asn1_ber_decoder -EXPORT_SYMBOL_GPL vmlinux 0x13d60154 pinctrl_add_gpio_ranges -EXPORT_SYMBOL_GPL vmlinux 0x13ec0f46 devlink_trap_groups_register +EXPORT_SYMBOL_GPL vmlinux 0x13d65713 create_signature +EXPORT_SYMBOL_GPL vmlinux 0x13eb3e37 __SCK__tp_func_unmap EXPORT_SYMBOL_GPL vmlinux 0x13ed8784 sdev_evt_alloc +EXPORT_SYMBOL_GPL vmlinux 0x13f265b9 rio_local_set_device_id EXPORT_SYMBOL_GPL vmlinux 0x13fab921 cpuidle_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0x13ff221c ata_sff_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x13fb7f18 xfrm_audit_state_replay_overflow EXPORT_SYMBOL_GPL vmlinux 0x1403ad09 cpufreq_add_update_util_hook -EXPORT_SYMBOL_GPL vmlinux 0x141118e5 power_supply_unregister -EXPORT_SYMBOL_GPL vmlinux 0x141d7d18 l3mdev_table_lookup_register +EXPORT_SYMBOL_GPL vmlinux 0x14091489 vfs_read +EXPORT_SYMBOL_GPL vmlinux 0x140cd897 xenbus_dev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x1419eb33 ip6_local_out EXPORT_SYMBOL_GPL vmlinux 0x141f38bf ktime_get_raw_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0x1426ecde devm_krealloc -EXPORT_SYMBOL_GPL vmlinux 0x142a1e44 vfio_virqfd_enable -EXPORT_SYMBOL_GPL vmlinux 0x142a8383 usb_reset_device -EXPORT_SYMBOL_GPL vmlinux 0x144c594f rio_mport_write_config_8 -EXPORT_SYMBOL_GPL vmlinux 0x14560527 wbt_disable_default -EXPORT_SYMBOL_GPL vmlinux 0x145d03c2 ipv4_sk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x1464cba0 perf_pmu_register +EXPORT_SYMBOL_GPL vmlinux 0x14315ce9 devres_add +EXPORT_SYMBOL_GPL vmlinux 0x143ff829 devm_of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x14402321 tty_port_install +EXPORT_SYMBOL_GPL vmlinux 0x14429fb8 ip6_sk_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x1446b301 __SCK__tp_func_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0x14541836 gpiod_set_raw_value +EXPORT_SYMBOL_GPL vmlinux 0x146ac9c6 tpm_chip_unregister EXPORT_SYMBOL_GPL vmlinux 0x146cc88f bpf_master_redirect_enabled_key EXPORT_SYMBOL_GPL vmlinux 0x146dc897 get_state_synchronize_srcu -EXPORT_SYMBOL_GPL vmlinux 0x1476b1ae extcon_find_edev_by_node -EXPORT_SYMBOL_GPL vmlinux 0x147ac15c of_icc_xlate_onecell -EXPORT_SYMBOL_GPL vmlinux 0x147c4afb gpiod_put -EXPORT_SYMBOL_GPL vmlinux 0x147d42ff led_put -EXPORT_SYMBOL_GPL vmlinux 0x148ec601 usb_disable_ltm -EXPORT_SYMBOL_GPL vmlinux 0x149c2fed blk_mq_start_stopped_hw_queue -EXPORT_SYMBOL_GPL vmlinux 0x14a4f874 usb_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x1472a721 nvdimm_volatile_region_create +EXPORT_SYMBOL_GPL vmlinux 0x147a7203 ata_sff_prereset +EXPORT_SYMBOL_GPL vmlinux 0x148e9dfb pci_user_write_config_word +EXPORT_SYMBOL_GPL vmlinux 0x14a3ab55 crypto_hash_alg_has_setkey +EXPORT_SYMBOL_GPL vmlinux 0x14ac07e9 mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0x14ad2e84 hsu_dma_probe +EXPORT_SYMBOL_GPL vmlinux 0x14bf22f3 tty_save_termios +EXPORT_SYMBOL_GPL vmlinux 0x14c37c9d get_user_pages_fast_only EXPORT_SYMBOL_GPL vmlinux 0x14d01690 clk_mux_index_to_val +EXPORT_SYMBOL_GPL vmlinux 0x14d7457e path_noexec +EXPORT_SYMBOL_GPL vmlinux 0x14d84019 crypto_aead_setkey +EXPORT_SYMBOL_GPL vmlinux 0x14dc50df bpf_offload_dev_netdev_register +EXPORT_SYMBOL_GPL vmlinux 0x14dd781b governor_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0x14e5667f fuse_free_conn EXPORT_SYMBOL_GPL vmlinux 0x14ec4fdb evtchn_put -EXPORT_SYMBOL_GPL vmlinux 0x1500fbf4 pci_restore_msi_state +EXPORT_SYMBOL_GPL vmlinux 0x14f6020b led_update_brightness EXPORT_SYMBOL_GPL vmlinux 0x15021b4a xa_delete_node -EXPORT_SYMBOL_GPL vmlinux 0x15143d4a crypto_rng_reset -EXPORT_SYMBOL_GPL vmlinux 0x1535a6f8 __tracepoint_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0x1505feb5 xfrm_audit_policy_delete +EXPORT_SYMBOL_GPL vmlinux 0x15198e9b usb_sg_init +EXPORT_SYMBOL_GPL vmlinux 0x151f437a __rio_local_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x153a2c6f usb_register_driver EXPORT_SYMBOL_GPL vmlinux 0x153b60a6 klist_del -EXPORT_SYMBOL_GPL vmlinux 0x153ca41d __tracepoint_kfree_skb -EXPORT_SYMBOL_GPL vmlinux 0x1541a59d cpufreq_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x1545b2f1 fwnode_get_next_parent -EXPORT_SYMBOL_GPL vmlinux 0x154a0cba alloc_skb_for_msg +EXPORT_SYMBOL_GPL vmlinux 0x15414ada phy_save_page EXPORT_SYMBOL_GPL vmlinux 0x15510a89 devlink_fmsg_binary_put -EXPORT_SYMBOL_GPL vmlinux 0x155ffe66 dst_cache_get_ip6 -EXPORT_SYMBOL_GPL vmlinux 0x1566b434 pci_pasid_features -EXPORT_SYMBOL_GPL vmlinux 0x1568a8cf dma_run_dependencies +EXPORT_SYMBOL_GPL vmlinux 0x155283a4 free_io_pgtable_ops EXPORT_SYMBOL_GPL vmlinux 0x156e8afe __SCT__tp_func_fib6_table_lookup -EXPORT_SYMBOL_GPL vmlinux 0x1575fc52 blkdev_nr_zones -EXPORT_SYMBOL_GPL vmlinux 0x1576a9ad fib_rules_lookup -EXPORT_SYMBOL_GPL vmlinux 0x15859616 power_supply_register -EXPORT_SYMBOL_GPL vmlinux 0x15875f7d skb_mpls_dec_ttl -EXPORT_SYMBOL_GPL vmlinux 0x158bb9fb tty_set_ldisc -EXPORT_SYMBOL_GPL vmlinux 0x159b2a9a shash_free_singlespawn_instance -EXPORT_SYMBOL_GPL vmlinux 0x15b7af44 tcpv6_prot -EXPORT_SYMBOL_GPL vmlinux 0x15ba6f0a extcon_register_notifier_all +EXPORT_SYMBOL_GPL vmlinux 0x15995085 __traceiter_xdp_bulk_tx +EXPORT_SYMBOL_GPL vmlinux 0x159b904c xdp_rxq_info_unreg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0x15ade1cc filter_irq_stacks +EXPORT_SYMBOL_GPL vmlinux 0x15ae2700 sysfs_file_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x15b4b02b pci_probe_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0x15bb8ee9 devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0x15bc4eb7 xfrm_audit_state_notfound_simple +EXPORT_SYMBOL_GPL vmlinux 0x15c74e07 __tracepoint_error_report_end EXPORT_SYMBOL_GPL vmlinux 0x15cc30f1 cc_platform_has +EXPORT_SYMBOL_GPL vmlinux 0x15d3c754 devm_gpiod_get_from_of_node +EXPORT_SYMBOL_GPL vmlinux 0x15e04690 dma_release_channel EXPORT_SYMBOL_GPL vmlinux 0x15ea2648 hwpoison_filter_flags_mask -EXPORT_SYMBOL_GPL vmlinux 0x15fb007f platform_device_add -EXPORT_SYMBOL_GPL vmlinux 0x16095813 fsverity_file_open -EXPORT_SYMBOL_GPL vmlinux 0x160ab96e devlink_port_attrs_pci_vf_set -EXPORT_SYMBOL_GPL vmlinux 0x160de8e8 bpf_trace_run8 -EXPORT_SYMBOL_GPL vmlinux 0x16268b2f sched_trace_cfs_rq_avg -EXPORT_SYMBOL_GPL vmlinux 0x16288d6d debugfs_rename -EXPORT_SYMBOL_GPL vmlinux 0x163fcbc3 usb_hcd_link_urb_to_ep -EXPORT_SYMBOL_GPL vmlinux 0x164613b8 tpm_send +EXPORT_SYMBOL_GPL vmlinux 0x162fa2d0 debugfs_create_x32 EXPORT_SYMBOL_GPL vmlinux 0x16516798 osc_pc_lpi_support_confirmed -EXPORT_SYMBOL_GPL vmlinux 0x1662d402 hwspin_lock_unregister EXPORT_SYMBOL_GPL vmlinux 0x166db1b5 sched_clock_idle_wakeup_event EXPORT_SYMBOL_GPL vmlinux 0x167d7113 acpi_bus_register_early_device -EXPORT_SYMBOL_GPL vmlinux 0x16820069 pci_user_read_config_byte +EXPORT_SYMBOL_GPL vmlinux 0x16847916 acpi_subsys_restore_early EXPORT_SYMBOL_GPL vmlinux 0x1687ec20 tty_get_frame_size EXPORT_SYMBOL_GPL vmlinux 0x1690b503 usb_role_switch_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x169652f6 __pci_epc_create -EXPORT_SYMBOL_GPL vmlinux 0x1698faa6 devlink_rate_nodes_destroy -EXPORT_SYMBOL_GPL vmlinux 0x169a14d5 cpufreq_generic_attr -EXPORT_SYMBOL_GPL vmlinux 0x16aed224 crypto_stats_skcipher_decrypt -EXPORT_SYMBOL_GPL vmlinux 0x16b6b3f4 sata_scr_read -EXPORT_SYMBOL_GPL vmlinux 0x16ba8072 devm_irq_setup_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x16bc1941 trace_seq_path -EXPORT_SYMBOL_GPL vmlinux 0x16ca90f9 md_allow_write -EXPORT_SYMBOL_GPL vmlinux 0x16cd0781 rt_mutex_lock +EXPORT_SYMBOL_GPL vmlinux 0x1696dd0a ip4_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0x16b4cb69 blk_next_bio +EXPORT_SYMBOL_GPL vmlinux 0x16cd1f8f crypto_stats_init EXPORT_SYMBOL_GPL vmlinux 0x16da1f88 devlink_fmsg_u32_put -EXPORT_SYMBOL_GPL vmlinux 0x16de26e8 cros_ec_check_features +EXPORT_SYMBOL_GPL vmlinux 0x16dd6fcf __reset_control_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x16e26077 usb_enable_autosuspend EXPORT_SYMBOL_GPL vmlinux 0x16e66b43 crypto_aes_set_key -EXPORT_SYMBOL_GPL vmlinux 0x16efc87a __tracepoint_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0x16ea3d47 irq_get_domain_generic_chip EXPORT_SYMBOL_GPL vmlinux 0x16f15139 bind_evtchn_to_irq -EXPORT_SYMBOL_GPL vmlinux 0x16fc7e7e percpu_free_rwsem -EXPORT_SYMBOL_GPL vmlinux 0x1705ff7b crypto_alloc_base +EXPORT_SYMBOL_GPL vmlinux 0x1706e513 fscrypt_mergeable_bio EXPORT_SYMBOL_GPL vmlinux 0x170cc36c put_timespec64 -EXPORT_SYMBOL_GPL vmlinux 0x1723af9b modify_user_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x1723d37b ehci_init_driver -EXPORT_SYMBOL_GPL vmlinux 0x1729bf4f acpi_dev_resume -EXPORT_SYMBOL_GPL vmlinux 0x172fe032 pm_generic_restore_noirq +EXPORT_SYMBOL_GPL vmlinux 0x170dc63e spi_get_next_queued_message +EXPORT_SYMBOL_GPL vmlinux 0x172d7126 crypto_shoot_alg +EXPORT_SYMBOL_GPL vmlinux 0x17329413 __SCK__tp_func_rpm_idle EXPORT_SYMBOL_GPL vmlinux 0x1741ddee trace_seq_puts EXPORT_SYMBOL_GPL vmlinux 0x17480d56 x509_free_certificate EXPORT_SYMBOL_GPL vmlinux 0x174c6274 ring_buffer_time_stamp -EXPORT_SYMBOL_GPL vmlinux 0x1755d545 usb_match_id +EXPORT_SYMBOL_GPL vmlinux 0x17554408 udp4_hwcsum +EXPORT_SYMBOL_GPL vmlinux 0x175f4e62 thermal_zone_get_slope EXPORT_SYMBOL_GPL vmlinux 0x176031a7 devlink_fmsg_string_put -EXPORT_SYMBOL_GPL vmlinux 0x17604ec2 sata_scr_write EXPORT_SYMBOL_GPL vmlinux 0x17614bf3 apei_resources_sub EXPORT_SYMBOL_GPL vmlinux 0x176adf76 xenmem_reservation_decrease EXPORT_SYMBOL_GPL vmlinux 0x177c338d twl_get_version -EXPORT_SYMBOL_GPL vmlinux 0x17821115 hrtimer_sleeper_start_expires -EXPORT_SYMBOL_GPL vmlinux 0x178e72e5 perf_event_read_value -EXPORT_SYMBOL_GPL vmlinux 0x17923316 i2c_new_ancillary_device -EXPORT_SYMBOL_GPL vmlinux 0x17ad16d3 pm_clk_create +EXPORT_SYMBOL_GPL vmlinux 0x1787a59e mbox_chan_received_data +EXPORT_SYMBOL_GPL vmlinux 0x179b9452 __traceiter_tcp_send_reset EXPORT_SYMBOL_GPL vmlinux 0x17add64b gdt_page -EXPORT_SYMBOL_GPL vmlinux 0x17cdb353 gpiochip_line_is_valid -EXPORT_SYMBOL_GPL vmlinux 0x17d0172d devm_of_phy_get_by_index -EXPORT_SYMBOL_GPL vmlinux 0x17d16979 ip6_route_input_lookup -EXPORT_SYMBOL_GPL vmlinux 0x17dfe129 md_bitmap_load +EXPORT_SYMBOL_GPL vmlinux 0x17bc17ea irq_chip_set_wake_parent +EXPORT_SYMBOL_GPL vmlinux 0x17bc88d7 fwnode_handle_put EXPORT_SYMBOL_GPL vmlinux 0x17e01f11 erst_clear -EXPORT_SYMBOL_GPL vmlinux 0x17e29562 usb_create_hcd -EXPORT_SYMBOL_GPL vmlinux 0x17e7afc8 inet6_csk_xmit -EXPORT_SYMBOL_GPL vmlinux 0x17fce301 __vfs_removexattr_locked +EXPORT_SYMBOL_GPL vmlinux 0x17f1daa7 kernfs_find_and_get_ns EXPORT_SYMBOL_GPL vmlinux 0x18008c59 ring_buffer_resize -EXPORT_SYMBOL_GPL vmlinux 0x180a0c44 crypto_unregister_scomps -EXPORT_SYMBOL_GPL vmlinux 0x180a1cda gpiochip_lock_as_irq -EXPORT_SYMBOL_GPL vmlinux 0x180c0cf8 serial8250_em485_config -EXPORT_SYMBOL_GPL vmlinux 0x180deac2 ethnl_cable_test_result -EXPORT_SYMBOL_GPL vmlinux 0x180f5851 virtqueue_kick_prepare -EXPORT_SYMBOL_GPL vmlinux 0x1812c912 rt_mutex_lock_interruptible -EXPORT_SYMBOL_GPL vmlinux 0x18411ef4 ipv4_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0x180a5966 phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0x18194514 crypto_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x181a294d regulator_set_voltage_rdev +EXPORT_SYMBOL_GPL vmlinux 0x185021be fscrypt_file_open EXPORT_SYMBOL_GPL vmlinux 0x18582826 amd_pmu_disable_virt +EXPORT_SYMBOL_GPL vmlinux 0x185a59eb regulator_suspend_disable EXPORT_SYMBOL_GPL vmlinux 0x18615d35 efivar_supports_writes -EXPORT_SYMBOL_GPL vmlinux 0x1873103a ping_recvmsg -EXPORT_SYMBOL_GPL vmlinux 0x1883c72a debugfs_create_u64 -EXPORT_SYMBOL_GPL vmlinux 0x188c0b92 cpufreq_policy_transition_delay_us -EXPORT_SYMBOL_GPL vmlinux 0x188c9881 usb_hcd_platform_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x18993fe8 fwnode_graph_get_remote_endpoint -EXPORT_SYMBOL_GPL vmlinux 0x1899c37c skcipher_walk_complete -EXPORT_SYMBOL_GPL vmlinux 0x189abeaf irq_get_irq_data -EXPORT_SYMBOL_GPL vmlinux 0x18a0b378 fixed_phy_unregister -EXPORT_SYMBOL_GPL vmlinux 0x18add284 irq_domain_pop_irq +EXPORT_SYMBOL_GPL vmlinux 0x189abad2 devres_release +EXPORT_SYMBOL_GPL vmlinux 0x18ab27e8 mmc_get_ext_csd +EXPORT_SYMBOL_GPL vmlinux 0x18acf061 nf_queue_entry_get_refs EXPORT_SYMBOL_GPL vmlinux 0x18b2790f uv_bios_obj_count -EXPORT_SYMBOL_GPL vmlinux 0x18b6aa7c fwnode_get_parent -EXPORT_SYMBOL_GPL vmlinux 0x18c661e6 __tracepoint_attach_device_to_domain -EXPORT_SYMBOL_GPL vmlinux 0x18c79d25 wm831x_reg_lock -EXPORT_SYMBOL_GPL vmlinux 0x18d8f5bc dax_copy_to_iter -EXPORT_SYMBOL_GPL vmlinux 0x18e1547e dma_buf_vmap +EXPORT_SYMBOL_GPL vmlinux 0x18c44ad9 devm_bitmap_zalloc +EXPORT_SYMBOL_GPL vmlinux 0x18d2432c __inet_lookup_established EXPORT_SYMBOL_GPL vmlinux 0x18e4f8aa swphy_read_reg -EXPORT_SYMBOL_GPL vmlinux 0x18ea428d devm_of_icc_get -EXPORT_SYMBOL_GPL vmlinux 0x18fab4b4 devlink_params_unpublish EXPORT_SYMBOL_GPL vmlinux 0x18fb2caf cpus_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0x19083c29 icc_disable -EXPORT_SYMBOL_GPL vmlinux 0x1910ef25 xdp_rxq_info_unreg -EXPORT_SYMBOL_GPL vmlinux 0x1923b183 iommu_domain_free -EXPORT_SYMBOL_GPL vmlinux 0x19264443 sata_set_spd -EXPORT_SYMBOL_GPL vmlinux 0x1926d02b serial8250_clear_and_reinit_fifos +EXPORT_SYMBOL_GPL vmlinux 0x18ff8ce2 pinctrl_pm_select_default_state +EXPORT_SYMBOL_GPL vmlinux 0x1904ce91 bpf_prog_create +EXPORT_SYMBOL_GPL vmlinux 0x192a7d75 key_type_logon EXPORT_SYMBOL_GPL vmlinux 0x193dfdf6 klp_get_prev_state -EXPORT_SYMBOL_GPL vmlinux 0x194cbe98 __tracepoint_block_rq_insert -EXPORT_SYMBOL_GPL vmlinux 0x194fb1f1 tcp_done +EXPORT_SYMBOL_GPL vmlinux 0x19521296 rio_unmap_outb_region EXPORT_SYMBOL_GPL vmlinux 0x196614ce hw_breakpoint_restore -EXPORT_SYMBOL_GPL vmlinux 0x198c2c97 xfrm_put_translator -EXPORT_SYMBOL_GPL vmlinux 0x19a09d9a wm831x_auxadc_read_uv +EXPORT_SYMBOL_GPL vmlinux 0x197e6d18 virtqueue_get_buf_ctx +EXPORT_SYMBOL_GPL vmlinux 0x19887624 fwnode_property_get_reference_args +EXPORT_SYMBOL_GPL vmlinux 0x1988ad7a device_store_ulong +EXPORT_SYMBOL_GPL vmlinux 0x199400a6 ipv6_stub +EXPORT_SYMBOL_GPL vmlinux 0x19a162db fwnode_get_named_gpiod EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled -EXPORT_SYMBOL_GPL vmlinux 0x19b2b15f ping_seq_start -EXPORT_SYMBOL_GPL vmlinux 0x19b7a47e tcp_set_state +EXPORT_SYMBOL_GPL vmlinux 0x19b1e7a4 regcache_cache_only +EXPORT_SYMBOL_GPL vmlinux 0x19b25f75 sdev_evt_send EXPORT_SYMBOL_GPL vmlinux 0x19e0ae50 __SCT__tp_func_br_fdb_external_learn_add -EXPORT_SYMBOL_GPL vmlinux 0x19e257f4 iommu_iova_to_phys EXPORT_SYMBOL_GPL vmlinux 0x19e81304 btree_alloc +EXPORT_SYMBOL_GPL vmlinux 0x19e9f843 platform_device_add +EXPORT_SYMBOL_GPL vmlinux 0x19ec6dc9 __tracepoint_cpu_frequency +EXPORT_SYMBOL_GPL vmlinux 0x19ec8552 ata_pci_shutdown_one EXPORT_SYMBOL_GPL vmlinux 0x19edd064 blkg_rwstat_exit -EXPORT_SYMBOL_GPL vmlinux 0x19eef0e7 handle_bad_irq -EXPORT_SYMBOL_GPL vmlinux 0x19f9338e irq_create_mapping_affinity -EXPORT_SYMBOL_GPL vmlinux 0x19fc1e0c devm_add_action -EXPORT_SYMBOL_GPL vmlinux 0x1a057009 bdi_dev_name +EXPORT_SYMBOL_GPL vmlinux 0x19ef8684 kstrdup_quotable_file +EXPORT_SYMBOL_GPL vmlinux 0x19f5bb2e rio_mport_initialize +EXPORT_SYMBOL_GPL vmlinux 0x19f80ec8 devlink_param_driverinit_value_set +EXPORT_SYMBOL_GPL vmlinux 0x1a0c9e23 gpiochip_irqchip_add_domain EXPORT_SYMBOL_GPL vmlinux 0x1a10c32b crypto_ft_tab EXPORT_SYMBOL_GPL vmlinux 0x1a146ec3 usb_ep_type_string -EXPORT_SYMBOL_GPL vmlinux 0x1a1887ad wp_shared_mapping_range -EXPORT_SYMBOL_GPL vmlinux 0x1a1f8cc3 pci_max_pasids -EXPORT_SYMBOL_GPL vmlinux 0x1a2309c9 get_net_ns_by_fd -EXPORT_SYMBOL_GPL vmlinux 0x1a23751a acpi_bind_one -EXPORT_SYMBOL_GPL vmlinux 0x1a31bdb3 tpm_chip_register -EXPORT_SYMBOL_GPL vmlinux 0x1a45201e ata_pci_device_suspend -EXPORT_SYMBOL_GPL vmlinux 0x1a45d21d spi_mem_dirmap_write -EXPORT_SYMBOL_GPL vmlinux 0x1a5285e0 devlink_region_snapshot_id_put -EXPORT_SYMBOL_GPL vmlinux 0x1a602081 dma_buf_unmap_attachment -EXPORT_SYMBOL_GPL vmlinux 0x1a62e411 n_tty_inherit_ops -EXPORT_SYMBOL_GPL vmlinux 0x1a67e311 i2c_add_numbered_adapter +EXPORT_SYMBOL_GPL vmlinux 0x1a168aa1 l3mdev_fib_table_rcu +EXPORT_SYMBOL_GPL vmlinux 0x1a16fb65 ata_std_sched_eh +EXPORT_SYMBOL_GPL vmlinux 0x1a2388d3 regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x1a4191cf blk_mq_complete_request_remote +EXPORT_SYMBOL_GPL vmlinux 0x1a422b1f __traceiter_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0x1a4685e6 vfs_truncate +EXPORT_SYMBOL_GPL vmlinux 0x1a503a13 extcon_dev_free EXPORT_SYMBOL_GPL vmlinux 0x1a6bf28f fsnotify_get_cookie -EXPORT_SYMBOL_GPL vmlinux 0x1a6f9958 devm_gpiod_put -EXPORT_SYMBOL_GPL vmlinux 0x1a739941 dev_pm_qos_hide_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0x1a8864a0 pingv6_ops +EXPORT_SYMBOL_GPL vmlinux 0x1a6ecd90 __SCK__tp_func_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0x1a70ea85 blkdev_zone_mgmt +EXPORT_SYMBOL_GPL vmlinux 0x1a7df1bf ethtool_set_ethtool_phy_ops +EXPORT_SYMBOL_GPL vmlinux 0x1a83dd63 dev_pm_domain_detach +EXPORT_SYMBOL_GPL vmlinux 0x1a863fa2 nd_region_provider_data EXPORT_SYMBOL_GPL vmlinux 0x1a9754cf sbitmap_queue_min_shallow_depth -EXPORT_SYMBOL_GPL vmlinux 0x1aa74c6b pwm_request_from_chip -EXPORT_SYMBOL_GPL vmlinux 0x1ac1709a devm_gpio_request_one -EXPORT_SYMBOL_GPL vmlinux 0x1acc13df nvmem_cell_read_u16 +EXPORT_SYMBOL_GPL vmlinux 0x1a976cab regulator_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x1a9e08da sock_map_unhash +EXPORT_SYMBOL_GPL vmlinux 0x1a9e3289 xenbus_dev_cancel +EXPORT_SYMBOL_GPL vmlinux 0x1ab57075 dst_cache_set_ip6 +EXPORT_SYMBOL_GPL vmlinux 0x1aba0d1e bdev_disk_changed +EXPORT_SYMBOL_GPL vmlinux 0x1abdf701 nvdimm_badblocks_populate EXPORT_SYMBOL_GPL vmlinux 0x1acd18c8 cpuset_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x1ad29467 crypto_stats_ahash_update -EXPORT_SYMBOL_GPL vmlinux 0x1ad9bc59 usb_pipe_type_check +EXPORT_SYMBOL_GPL vmlinux 0x1ad3a65e pci_aer_clear_nonfatal_status +EXPORT_SYMBOL_GPL vmlinux 0x1ad3debb pinctrl_get_group_pins +EXPORT_SYMBOL_GPL vmlinux 0x1ad49c5e pcie_port_find_device +EXPORT_SYMBOL_GPL vmlinux 0x1ad57e20 bio_associate_blkg +EXPORT_SYMBOL_GPL vmlinux 0x1ae33913 __rio_local_write_config_8 EXPORT_SYMBOL_GPL vmlinux 0x1af267f8 int_pow -EXPORT_SYMBOL_GPL vmlinux 0x1afaf5ae fscrypt_ioctl_add_key +EXPORT_SYMBOL_GPL vmlinux 0x1afd2a1d seg6_do_srh_inline EXPORT_SYMBOL_GPL vmlinux 0x1aff3d55 mce_register_injector_chain -EXPORT_SYMBOL_GPL vmlinux 0x1b0b68af vp_modern_queue_address -EXPORT_SYMBOL_GPL vmlinux 0x1b1e0863 __auxiliary_driver_register -EXPORT_SYMBOL_GPL vmlinux 0x1b1f632f acomp_request_free -EXPORT_SYMBOL_GPL vmlinux 0x1b31550d xhci_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x1b3373c9 vc_scrolldelta_helper -EXPORT_SYMBOL_GPL vmlinux 0x1b38d246 ata_sff_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x1b414151 regulator_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x1b4c7698 relay_close +EXPORT_SYMBOL_GPL vmlinux 0x1b14fdfd ip6_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x1b1ac155 regulator_irq_helper +EXPORT_SYMBOL_GPL vmlinux 0x1b1be431 __device_reset +EXPORT_SYMBOL_GPL vmlinux 0x1b1fdcad scsi_autopm_put_device +EXPORT_SYMBOL_GPL vmlinux 0x1b208f7c pm_generic_suspend +EXPORT_SYMBOL_GPL vmlinux 0x1b35e695 scsi_target_block +EXPORT_SYMBOL_GPL vmlinux 0x1b3d18e9 pinctrl_force_default EXPORT_SYMBOL_GPL vmlinux 0x1b5059ce ata_id_xfermask -EXPORT_SYMBOL_GPL vmlinux 0x1b531473 phy_resolve_aneg_pause -EXPORT_SYMBOL_GPL vmlinux 0x1b563d74 pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0x1b5ebb8c usb_put_hcd EXPORT_SYMBOL_GPL vmlinux 0x1b5f4377 trace_seq_putc -EXPORT_SYMBOL_GPL vmlinux 0x1b82fb8d inet6_sk_rebuild_header +EXPORT_SYMBOL_GPL vmlinux 0x1b6e90a0 spi_mem_supports_op +EXPORT_SYMBOL_GPL vmlinux 0x1b7bb329 __tracepoint_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0x1b7bb96a wm8350_clear_bits EXPORT_SYMBOL_GPL vmlinux 0x1b8822d8 pinctrl_gpio_direction_output -EXPORT_SYMBOL_GPL vmlinux 0x1b8c519c __inet_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x1b88354a usb_driver_release_interface EXPORT_SYMBOL_GPL vmlinux 0x1b92e41d inet_putpeer -EXPORT_SYMBOL_GPL vmlinux 0x1b9cfae1 input_device_enabled EXPORT_SYMBOL_GPL vmlinux 0x1ba237b0 default_cpu_present_to_apicid -EXPORT_SYMBOL_GPL vmlinux 0x1bb47cad clk_hw_get_parent_index -EXPORT_SYMBOL_GPL vmlinux 0x1bb89540 __vfs_setxattr_locked -EXPORT_SYMBOL_GPL vmlinux 0x1bc12f24 regmap_add_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0x1bc157df ata_pci_sff_activate_host -EXPORT_SYMBOL_GPL vmlinux 0x1bc3764a iomap_swapfile_activate +EXPORT_SYMBOL_GPL vmlinux 0x1ba781eb xhci_check_bandwidth +EXPORT_SYMBOL_GPL vmlinux 0x1ba7b2de rio_request_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x1bab21dd __kthread_init_worker +EXPORT_SYMBOL_GPL vmlinux 0x1bad7b1e raw_unhash_sk +EXPORT_SYMBOL_GPL vmlinux 0x1bb64ab4 regmap_async_complete +EXPORT_SYMBOL_GPL vmlinux 0x1bb7c0bd sk_msg_return_zero +EXPORT_SYMBOL_GPL vmlinux 0x1bb9ff6b phy_driver_is_genphy +EXPORT_SYMBOL_GPL vmlinux 0x1bc0cbba get_task_mm EXPORT_SYMBOL_GPL vmlinux 0x1bc5eebe pinctrl_gpio_direction_input -EXPORT_SYMBOL_GPL vmlinux 0x1bdbc1c2 scsi_nl_sock +EXPORT_SYMBOL_GPL vmlinux 0x1be28414 __SCK__tp_func_add_device_to_group EXPORT_SYMBOL_GPL vmlinux 0x1bee4974 sg_alloc_table_chained -EXPORT_SYMBOL_GPL vmlinux 0x1bf242ad regulator_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x1c0a6be0 __blkg_prfill_u64 -EXPORT_SYMBOL_GPL vmlinux 0x1c0bda9e __tracepoint_cpu_frequency -EXPORT_SYMBOL_GPL vmlinux 0x1c104b87 pci_ioremap_bar -EXPORT_SYMBOL_GPL vmlinux 0x1c2c4b1c vring_create_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0x1c314c86 pci_load_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x1c2082ef ethnl_cable_test_step +EXPORT_SYMBOL_GPL vmlinux 0x1c3f3ff2 dm_device_name +EXPORT_SYMBOL_GPL vmlinux 0x1c4b5987 proc_get_parent_data EXPORT_SYMBOL_GPL vmlinux 0x1c5541bd cpufreq_boost_enabled -EXPORT_SYMBOL_GPL vmlinux 0x1c57013f __ata_ehi_push_desc EXPORT_SYMBOL_GPL vmlinux 0x1c5b1f28 irq_free_descs EXPORT_SYMBOL_GPL vmlinux 0x1c5ff742 clk_get_phase -EXPORT_SYMBOL_GPL vmlinux 0x1c70b451 icc_nodes_remove +EXPORT_SYMBOL_GPL vmlinux 0x1c660b86 clone_private_mount +EXPORT_SYMBOL_GPL vmlinux 0x1c6bf333 __pci_hp_register EXPORT_SYMBOL_GPL vmlinux 0x1c764526 __SCT__tp_func_rpm_suspend -EXPORT_SYMBOL_GPL vmlinux 0x1c7eba9c i2c_acpi_new_device +EXPORT_SYMBOL_GPL vmlinux 0x1c7f4f6e fuse_dev_fiq_ops EXPORT_SYMBOL_GPL vmlinux 0x1c80d27d btree_geo128 EXPORT_SYMBOL_GPL vmlinux 0x1c87a811 __round_jiffies_up -EXPORT_SYMBOL_GPL vmlinux 0x1c8d281a iommu_set_fault_handler -EXPORT_SYMBOL_GPL vmlinux 0x1c8e8456 sysfs_remove_group -EXPORT_SYMBOL_GPL vmlinux 0x1c9f0df1 set_cpus_allowed_ptr +EXPORT_SYMBOL_GPL vmlinux 0x1c89a0af iommu_group_for_each_dev EXPORT_SYMBOL_GPL vmlinux 0x1ca3aa97 alarm_forward -EXPORT_SYMBOL_GPL vmlinux 0x1ca957e0 __SCK__tp_func_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0x1cadd587 handle_bad_irq EXPORT_SYMBOL_GPL vmlinux 0x1cb7c983 apei_exec_read_register_value EXPORT_SYMBOL_GPL vmlinux 0x1cb9a1c8 xenbus_gather EXPORT_SYMBOL_GPL vmlinux 0x1cbd92b0 cpu_mitigations_off -EXPORT_SYMBOL_GPL vmlinux 0x1cd04440 clk_register_fixed_rate -EXPORT_SYMBOL_GPL vmlinux 0x1cd12c19 kthread_park -EXPORT_SYMBOL_GPL vmlinux 0x1cd3b941 crypto_unregister_aeads -EXPORT_SYMBOL_GPL vmlinux 0x1cf93c1c devfreq_cooling_em_register -EXPORT_SYMBOL_GPL vmlinux 0x1cf9a6e2 add_to_page_cache_lru +EXPORT_SYMBOL_GPL vmlinux 0x1ccdfdf5 dev_pm_domain_set +EXPORT_SYMBOL_GPL vmlinux 0x1cd374f5 tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x1ce7322e phy_power_on +EXPORT_SYMBOL_GPL vmlinux 0x1cf4ab3d kernfs_put +EXPORT_SYMBOL_GPL vmlinux 0x1cf53839 gpiod_set_raw_value_cansleep EXPORT_SYMBOL_GPL vmlinux 0x1cfe4101 clkdev_hw_create -EXPORT_SYMBOL_GPL vmlinux 0x1d0b1c96 input_ff_event +EXPORT_SYMBOL_GPL vmlinux 0x1d0dfcc9 handle_level_irq EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state -EXPORT_SYMBOL_GPL vmlinux 0x1d5550e3 component_bind_all -EXPORT_SYMBOL_GPL vmlinux 0x1d60f16a vfio_device_put -EXPORT_SYMBOL_GPL vmlinux 0x1d779366 iomap_seek_hole +EXPORT_SYMBOL_GPL vmlinux 0x1d3bca42 pci_hp_create_module_link +EXPORT_SYMBOL_GPL vmlinux 0x1d4528d0 ata_sas_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x1d56f704 device_move +EXPORT_SYMBOL_GPL vmlinux 0x1d5836d4 devlink_alloc_ns EXPORT_SYMBOL_GPL vmlinux 0x1d77b0f8 unix_socket_table +EXPORT_SYMBOL_GPL vmlinux 0x1d7b2181 usb_wakeup_notification +EXPORT_SYMBOL_GPL vmlinux 0x1d8a434f fuse_simple_background EXPORT_SYMBOL_GPL vmlinux 0x1d94a218 dmi_memdev_handle -EXPORT_SYMBOL_GPL vmlinux 0x1db9c5b7 extcon_unregister_notifier_all -EXPORT_SYMBOL_GPL vmlinux 0x1dc56e1a acpi_device_fix_up_power +EXPORT_SYMBOL_GPL vmlinux 0x1dad6926 dev_pm_domain_attach +EXPORT_SYMBOL_GPL vmlinux 0x1dae1942 led_put +EXPORT_SYMBOL_GPL vmlinux 0x1dc88a04 xfrm_audit_state_replay EXPORT_SYMBOL_GPL vmlinux 0x1ddd29fc __SCK__tp_func_xdp_bulk_tx -EXPORT_SYMBOL_GPL vmlinux 0x1de7bb9b fib_rules_seq_read -EXPORT_SYMBOL_GPL vmlinux 0x1df3e81e __tracepoint_sched_update_nr_running_tp -EXPORT_SYMBOL_GPL vmlinux 0x1df4ee2d serdev_device_alloc -EXPORT_SYMBOL_GPL vmlinux 0x1df5a06d fuse_do_open +EXPORT_SYMBOL_GPL vmlinux 0x1de37546 dev_pm_qos_hide_flags +EXPORT_SYMBOL_GPL vmlinux 0x1ded5c84 mptcp_pm_get_subflows_max EXPORT_SYMBOL_GPL vmlinux 0x1dfa5dbd mpi_invm -EXPORT_SYMBOL_GPL vmlinux 0x1e016707 crypto_unregister_ahashes +EXPORT_SYMBOL_GPL vmlinux 0x1e049057 genphy_c45_config_aneg EXPORT_SYMBOL_GPL vmlinux 0x1e0670c6 reset_control_release -EXPORT_SYMBOL_GPL vmlinux 0x1e1e65ab devm_regulator_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x1e2a4170 __bio_crypt_clone +EXPORT_SYMBOL_GPL vmlinux 0x1e0db472 bio_alloc_kiocb +EXPORT_SYMBOL_GPL vmlinux 0x1e0ee97e __percpu_init_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x1e14a4fe fat_search_long +EXPORT_SYMBOL_GPL vmlinux 0x1e3e1a79 bpf_offload_dev_netdev_unregister EXPORT_SYMBOL_GPL vmlinux 0x1e424d61 user_preparse EXPORT_SYMBOL_GPL vmlinux 0x1e4e98c0 acpi_dev_filter_resource_type -EXPORT_SYMBOL_GPL vmlinux 0x1e505acc clean_acked_data_enable +EXPORT_SYMBOL_GPL vmlinux 0x1e52c8e4 ata_dummy_port_info EXPORT_SYMBOL_GPL vmlinux 0x1e5a5f22 sn_partition_id -EXPORT_SYMBOL_GPL vmlinux 0x1e60e859 pstore_unregister -EXPORT_SYMBOL_GPL vmlinux 0x1e63d123 ping_seq_next -EXPORT_SYMBOL_GPL vmlinux 0x1e688e65 __synth_event_gen_cmd_start -EXPORT_SYMBOL_GPL vmlinux 0x1e6a9529 __devm_clk_hw_register_divider -EXPORT_SYMBOL_GPL vmlinux 0x1e6adb9c ata_eh_freeze_port -EXPORT_SYMBOL_GPL vmlinux 0x1e6ef74e crypto_stats_kpp_generate_public_key -EXPORT_SYMBOL_GPL vmlinux 0x1e774bdb sysfs_break_active_protection -EXPORT_SYMBOL_GPL vmlinux 0x1e7910d2 led_set_brightness_sync -EXPORT_SYMBOL_GPL vmlinux 0x1e7ba0e1 vfio_iommu_group_get +EXPORT_SYMBOL_GPL vmlinux 0x1e674f14 efivar_entry_get +EXPORT_SYMBOL_GPL vmlinux 0x1e790cb2 trace_array_set_clr_event EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart -EXPORT_SYMBOL_GPL vmlinux 0x1e7da74a irq_domain_alloc_irqs_parent -EXPORT_SYMBOL_GPL vmlinux 0x1e8782c2 crypto_register_scomp +EXPORT_SYMBOL_GPL vmlinux 0x1e7c8391 devm_clk_bulk_get_all +EXPORT_SYMBOL_GPL vmlinux 0x1e7f998b devm_watchdog_register_device EXPORT_SYMBOL_GPL vmlinux 0x1e8fac8e wireless_nlevent_flush -EXPORT_SYMBOL_GPL vmlinux 0x1e905742 blk_mq_sched_try_merge EXPORT_SYMBOL_GPL vmlinux 0x1e912415 uv_bios_get_heapsize EXPORT_SYMBOL_GPL vmlinux 0x1e9872f6 sbitmap_finish_wait -EXPORT_SYMBOL_GPL vmlinux 0x1e9b9d4a ip_route_output_flow EXPORT_SYMBOL_GPL vmlinux 0x1e9bc719 freq_qos_update_request EXPORT_SYMBOL_GPL vmlinux 0x1e9c590a usb_find_common_endpoints_reverse -EXPORT_SYMBOL_GPL vmlinux 0x1eab26e5 mdiobus_modify -EXPORT_SYMBOL_GPL vmlinux 0x1eac11b3 get_net_ns +EXPORT_SYMBOL_GPL vmlinux 0x1eb882a3 usb_deregister_dev EXPORT_SYMBOL_GPL vmlinux 0x1eb9516e round_jiffies_relative EXPORT_SYMBOL_GPL vmlinux 0x1ebf6c2a pci_power_names -EXPORT_SYMBOL_GPL vmlinux 0x1ec478e7 devres_remove_group -EXPORT_SYMBOL_GPL vmlinux 0x1ec75fbb sfp_bus_find_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x1ed09652 switchdev_bridge_port_unoffload EXPORT_SYMBOL_GPL vmlinux 0x1ed4d2eb percpu_ref_kill_and_confirm -EXPORT_SYMBOL_GPL vmlinux 0x1ef06574 __traceiter_sched_util_est_se_tp -EXPORT_SYMBOL_GPL vmlinux 0x1ef41a20 __traceiter_neigh_update_done -EXPORT_SYMBOL_GPL vmlinux 0x1f08cc18 device_show_int -EXPORT_SYMBOL_GPL vmlinux 0x1f0a3d95 xdp_return_frame_bulk +EXPORT_SYMBOL_GPL vmlinux 0x1ee84085 key_type_asymmetric +EXPORT_SYMBOL_GPL vmlinux 0x1f03fb30 housekeeping_affine +EXPORT_SYMBOL_GPL vmlinux 0x1f09dd4e ata_sff_irq_on EXPORT_SYMBOL_GPL vmlinux 0x1f0cb5bf pm_power_off_prepare -EXPORT_SYMBOL_GPL vmlinux 0x1f1a3993 spi_mem_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1f169efa mbox_client_peek_data +EXPORT_SYMBOL_GPL vmlinux 0x1f2f9da6 bind_interdomain_evtchn_to_irq_lateeoi EXPORT_SYMBOL_GPL vmlinux 0x1f38a4f6 mpi_set_highbit -EXPORT_SYMBOL_GPL vmlinux 0x1f38cb50 nvdimm_to_bus -EXPORT_SYMBOL_GPL vmlinux 0x1f40f60c __SCK__tp_func_tcp_send_reset +EXPORT_SYMBOL_GPL vmlinux 0x1f39f02f __tracepoint_map EXPORT_SYMBOL_GPL vmlinux 0x1f449588 mctrl_gpio_disable_ms -EXPORT_SYMBOL_GPL vmlinux 0x1f4da122 ata_scsi_port_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x1f4a2c68 irq_create_fwspec_mapping EXPORT_SYMBOL_GPL vmlinux 0x1f563160 bpf_offload_dev_priv +EXPORT_SYMBOL_GPL vmlinux 0x1f5640cd serdev_device_write_flush +EXPORT_SYMBOL_GPL vmlinux 0x1f5a6c8b vfio_iommu_group_get +EXPORT_SYMBOL_GPL vmlinux 0x1f5b63f0 __SCK__tp_func_tcp_send_reset EXPORT_SYMBOL_GPL vmlinux 0x1f5ece97 cond_wakeup_cpu0 -EXPORT_SYMBOL_GPL vmlinux 0x1f69f5e1 crypto_stats_akcipher_sign -EXPORT_SYMBOL_GPL vmlinux 0x1f6cffa3 fwnode_graph_get_next_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x1f64d919 xhci_add_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x1f6885d3 serial8250_update_uartclk +EXPORT_SYMBOL_GPL vmlinux 0x1f698f43 clockevent_delta2ns EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout -EXPORT_SYMBOL_GPL vmlinux 0x1f8c223e iommu_unmap -EXPORT_SYMBOL_GPL vmlinux 0x1f99eef5 devlink_dpipe_entry_ctx_close -EXPORT_SYMBOL_GPL vmlinux 0x1f9a0bda rio_mport_get_physefb +EXPORT_SYMBOL_GPL vmlinux 0x1f86633a regmap_get_raw_read_max +EXPORT_SYMBOL_GPL vmlinux 0x1f9484d0 da903x_reads EXPORT_SYMBOL_GPL vmlinux 0x1fa1d95c sha256_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x1fa8ef6d dma_map_sgtable -EXPORT_SYMBOL_GPL vmlinux 0x1fb3c9c8 dma_buf_get +EXPORT_SYMBOL_GPL vmlinux 0x1fa846bf fuse_dax_cancel_work EXPORT_SYMBOL_GPL vmlinux 0x1fb70eb9 gnttab_end_foreign_transfer_ref -EXPORT_SYMBOL_GPL vmlinux 0x1fb753e1 dev_pm_qos_remove_request -EXPORT_SYMBOL_GPL vmlinux 0x1fbe9476 devm_of_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0x1fc4c05c tps65912_device_init -EXPORT_SYMBOL_GPL vmlinux 0x1fd076c0 fwnode_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0x1fc23e4b pm_runtime_suspended_time +EXPORT_SYMBOL_GPL vmlinux 0x1fcf6dfa regulator_list_voltage +EXPORT_SYMBOL_GPL vmlinux 0x1fd40c6f dm_report_zones +EXPORT_SYMBOL_GPL vmlinux 0x1fd625ed rio_map_inb_region EXPORT_SYMBOL_GPL vmlinux 0x1fe6e504 gpiod_add_hogs -EXPORT_SYMBOL_GPL vmlinux 0x1ff5c445 regmap_get_max_register -EXPORT_SYMBOL_GPL vmlinux 0x1ff6aa0a ip6_datagram_send_ctl -EXPORT_SYMBOL_GPL vmlinux 0x20001d4a skb_send_sock_locked -EXPORT_SYMBOL_GPL vmlinux 0x2006061c ip_build_and_send_pkt -EXPORT_SYMBOL_GPL vmlinux 0x200765ce serdev_device_remove EXPORT_SYMBOL_GPL vmlinux 0x2009e400 devlink_info_board_serial_number_put -EXPORT_SYMBOL_GPL vmlinux 0x2012a289 list_lru_count_one -EXPORT_SYMBOL_GPL vmlinux 0x2015bda8 raw_hash_sk -EXPORT_SYMBOL_GPL vmlinux 0x201848a8 sock_diag_check_cookie -EXPORT_SYMBOL_GPL vmlinux 0x2028e694 __traceiter_kfree_skb -EXPORT_SYMBOL_GPL vmlinux 0x202b40f9 dax_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x2020c29a skb_pull_rcsum EXPORT_SYMBOL_GPL vmlinux 0x202d4ed6 nvmem_cell_write -EXPORT_SYMBOL_GPL vmlinux 0x20497de6 hwpoison_filter -EXPORT_SYMBOL_GPL vmlinux 0x204d9cca vfs_setlease -EXPORT_SYMBOL_GPL vmlinux 0x204e1152 devm_usb_get_phy_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x203f5fff __clk_hw_register_mux +EXPORT_SYMBOL_GPL vmlinux 0x204ea3a4 blk_req_needs_zone_write_lock EXPORT_SYMBOL_GPL vmlinux 0x204f2c5c gnttab_free_grant_reference +EXPORT_SYMBOL_GPL vmlinux 0x205812aa spi_res_add +EXPORT_SYMBOL_GPL vmlinux 0x2060fc9f crypto_register_scomps EXPORT_SYMBOL_GPL vmlinux 0x20619177 fpu_alloc_guest_fpstate -EXPORT_SYMBOL_GPL vmlinux 0x20665831 virtqueue_is_broken -EXPORT_SYMBOL_GPL vmlinux 0x207c4ceb __SCK__tp_func_block_rq_insert -EXPORT_SYMBOL_GPL vmlinux 0x207e79c0 usb_disable_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0x20824df1 ata_dummy_port_info +EXPORT_SYMBOL_GPL vmlinux 0x20732891 devm_pinctrl_register_and_init +EXPORT_SYMBOL_GPL vmlinux 0x2077ba09 devm_platform_ioremap_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0x20814159 __clk_hw_register_fixed_rate EXPORT_SYMBOL_GPL vmlinux 0x20835a9f __xdp_release_frame +EXPORT_SYMBOL_GPL vmlinux 0x2085499d crypto_destroy_tfm EXPORT_SYMBOL_GPL vmlinux 0x20899467 hv_stimer0_isr +EXPORT_SYMBOL_GPL vmlinux 0x209069bc genphy_c45_pma_resume +EXPORT_SYMBOL_GPL vmlinux 0x209106e0 devm_regulator_bulk_get EXPORT_SYMBOL_GPL vmlinux 0x20978fb9 idr_find -EXPORT_SYMBOL_GPL vmlinux 0x20a73cfb dev_pm_opp_free_cpufreq_table -EXPORT_SYMBOL_GPL vmlinux 0x20ea48d6 bd_unlink_disk_holder -EXPORT_SYMBOL_GPL vmlinux 0x20ea689d irq_set_chained_handler_and_data -EXPORT_SYMBOL_GPL vmlinux 0x20ebfe56 unmap_mapping_pages -EXPORT_SYMBOL_GPL vmlinux 0x20f8858d class_find_device +EXPORT_SYMBOL_GPL vmlinux 0x20a69dbd tps6586x_write +EXPORT_SYMBOL_GPL vmlinux 0x20cd9c1a da903x_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x20dc2b01 regulator_register +EXPORT_SYMBOL_GPL vmlinux 0x20f18bdd ping_common_sendmsg +EXPORT_SYMBOL_GPL vmlinux 0x20f2ff37 inet6_csk_xmit +EXPORT_SYMBOL_GPL vmlinux 0x20f51ccf __inet_twsk_schedule EXPORT_SYMBOL_GPL vmlinux 0x20fc44ac serdev_acpi_get_uart_resource -EXPORT_SYMBOL_GPL vmlinux 0x2120fe39 fsnotify_add_mark -EXPORT_SYMBOL_GPL vmlinux 0x212dfb4d gpiod_set_raw_value -EXPORT_SYMBOL_GPL vmlinux 0x212f28a7 regulator_get_current_limit_regmap -EXPORT_SYMBOL_GPL vmlinux 0x21360e07 inet_ctl_sock_create -EXPORT_SYMBOL_GPL vmlinux 0x21436b63 inet_twsk_hashdance -EXPORT_SYMBOL_GPL vmlinux 0x21565c3c bpf_redirect_info -EXPORT_SYMBOL_GPL vmlinux 0x215c2cc7 sata_link_debounce -EXPORT_SYMBOL_GPL vmlinux 0x215c7bec serial8250_set_defaults -EXPORT_SYMBOL_GPL vmlinux 0x2162d922 regmap_write +EXPORT_SYMBOL_GPL vmlinux 0x21018018 ata_host_alloc +EXPORT_SYMBOL_GPL vmlinux 0x21027788 sched_setattr_nocheck +EXPORT_SYMBOL_GPL vmlinux 0x210f4c18 perf_pmu_migrate_context +EXPORT_SYMBOL_GPL vmlinux 0x2123beac cpufreq_cpu_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x213876e5 device_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x21521d8b ata_qc_complete_multiple +EXPORT_SYMBOL_GPL vmlinux 0x21530558 rdev_get_id +EXPORT_SYMBOL_GPL vmlinux 0x2154324e virtio_max_dma_size EXPORT_SYMBOL_GPL vmlinux 0x216de4e1 rcu_get_gp_kthreads_prio -EXPORT_SYMBOL_GPL vmlinux 0x2171c3d2 tracing_cond_snapshot_data +EXPORT_SYMBOL_GPL vmlinux 0x216e045b i2c_add_numbered_adapter EXPORT_SYMBOL_GPL vmlinux 0x2176e42a hwpoison_filter_memcg -EXPORT_SYMBOL_GPL vmlinux 0x21821521 kgdb_register_io_module +EXPORT_SYMBOL_GPL vmlinux 0x2185f7d0 nvdimm_security_setup_events +EXPORT_SYMBOL_GPL vmlinux 0x2188096a kill_dev_dax +EXPORT_SYMBOL_GPL vmlinux 0x218b406b tcp_ca_get_key_by_name +EXPORT_SYMBOL_GPL vmlinux 0x218da5b6 debugfs_create_size_t EXPORT_SYMBOL_GPL vmlinux 0x21a563da clk_get_accuracy EXPORT_SYMBOL_GPL vmlinux 0x21ac8b77 iommu_group_get_by_id +EXPORT_SYMBOL_GPL vmlinux 0x21ad114b crypto_remove_spawns +EXPORT_SYMBOL_GPL vmlinux 0x21b812b7 irq_gc_ack_set_bit EXPORT_SYMBOL_GPL vmlinux 0x21c34c8f gnttab_end_foreign_transfer EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher EXPORT_SYMBOL_GPL vmlinux 0x21ce3ed1 dev_fetch_sw_netstats -EXPORT_SYMBOL_GPL vmlinux 0x21d72ec3 devm_gpiod_get_optional -EXPORT_SYMBOL_GPL vmlinux 0x220b1667 mmu_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x22112045 extcon_sync -EXPORT_SYMBOL_GPL vmlinux 0x2211400b vchan_dma_desc_free_list +EXPORT_SYMBOL_GPL vmlinux 0x21cee50a devm_extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0x21e2bda0 __iomap_dio_rw +EXPORT_SYMBOL_GPL vmlinux 0x220a5c45 devlink_resource_size_get +EXPORT_SYMBOL_GPL vmlinux 0x220d1809 pci_epc_put EXPORT_SYMBOL_GPL vmlinux 0x2211a4c0 blk_op_str -EXPORT_SYMBOL_GPL vmlinux 0x22136ca7 pktgen_xfrm_outer_mode_output -EXPORT_SYMBOL_GPL vmlinux 0x221bfdc9 devm_gpiochip_add_data_with_key +EXPORT_SYMBOL_GPL vmlinux 0x22171bea fsnotify_init_mark +EXPORT_SYMBOL_GPL vmlinux 0x22190309 xenbus_unregister_driver EXPORT_SYMBOL_GPL vmlinux 0x221eab6d scatterwalk_copychunks -EXPORT_SYMBOL_GPL vmlinux 0x222abe09 pci_status_get_and_clear_errors -EXPORT_SYMBOL_GPL vmlinux 0x222b3357 devlink_param_register -EXPORT_SYMBOL_GPL vmlinux 0x2236d299 gpiod_set_config +EXPORT_SYMBOL_GPL vmlinux 0x22250a1b pci_generic_config_read32 +EXPORT_SYMBOL_GPL vmlinux 0x22376927 raw_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x223b397b ata_sff_pause +EXPORT_SYMBOL_GPL vmlinux 0x22433c95 tps6586x_update EXPORT_SYMBOL_GPL vmlinux 0x224f51bf nvmem_device_cell_read -EXPORT_SYMBOL_GPL vmlinux 0x225ec605 regulator_register -EXPORT_SYMBOL_GPL vmlinux 0x2262bb08 dw_pcie_host_deinit -EXPORT_SYMBOL_GPL vmlinux 0x2264a81a tcp_set_keepalive -EXPORT_SYMBOL_GPL vmlinux 0x226f053c iomap_page_mkwrite -EXPORT_SYMBOL_GPL vmlinux 0x227df411 serial8250_rx_dma_flush -EXPORT_SYMBOL_GPL vmlinux 0x227f5930 mddev_suspend -EXPORT_SYMBOL_GPL vmlinux 0x228909be debugfs_create_devm_seqfile -EXPORT_SYMBOL_GPL vmlinux 0x229bbef2 regulator_get_hardware_vsel_register +EXPORT_SYMBOL_GPL vmlinux 0x2253a42f pci_set_pcie_reset_state +EXPORT_SYMBOL_GPL vmlinux 0x2294d44f crypto_unregister_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x22950f56 rio_unlock_device +EXPORT_SYMBOL_GPL vmlinux 0x2297ec36 sata_link_resume +EXPORT_SYMBOL_GPL vmlinux 0x22affb81 __tracepoint_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x22b51218 spi_res_alloc +EXPORT_SYMBOL_GPL vmlinux 0x22c01402 xhci_dbg_trace +EXPORT_SYMBOL_GPL vmlinux 0x22d337e1 pinctrl_utils_reserve_map EXPORT_SYMBOL_GPL vmlinux 0x22d60537 tcf_frag_xmit_count EXPORT_SYMBOL_GPL vmlinux 0x22d9409b iomap_sort_ioends -EXPORT_SYMBOL_GPL vmlinux 0x22e5aa9c devm_hwspin_lock_unregister EXPORT_SYMBOL_GPL vmlinux 0x22ec5205 cpu_latency_qos_remove_request -EXPORT_SYMBOL_GPL vmlinux 0x22faf56a debugfs_file_put +EXPORT_SYMBOL_GPL vmlinux 0x22ed25bc usb_reset_configuration +EXPORT_SYMBOL_GPL vmlinux 0x22f8762f vfio_pci_core_mmap EXPORT_SYMBOL_GPL vmlinux 0x22fd08ba cpuacct_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x2315e30a pinctrl_find_and_add_gpio_range -EXPORT_SYMBOL_GPL vmlinux 0x2319b217 virtqueue_get_buf -EXPORT_SYMBOL_GPL vmlinux 0x231fffdf devlink_params_register -EXPORT_SYMBOL_GPL vmlinux 0x232232e7 iommu_aux_detach_device -EXPORT_SYMBOL_GPL vmlinux 0x23257aea ata_pci_device_do_resume -EXPORT_SYMBOL_GPL vmlinux 0x232a146b device_find_child -EXPORT_SYMBOL_GPL vmlinux 0x2335fd06 rio_route_clr_table +EXPORT_SYMBOL_GPL vmlinux 0x23084260 __vfs_setxattr_locked +EXPORT_SYMBOL_GPL vmlinux 0x23125517 dax_supported +EXPORT_SYMBOL_GPL vmlinux 0x2331cc0b vfs_write +EXPORT_SYMBOL_GPL vmlinux 0x233ca332 msg_zerocopy_realloc EXPORT_SYMBOL_GPL vmlinux 0x23412816 rtc_tm_to_ktime -EXPORT_SYMBOL_GPL vmlinux 0x2342fe92 sk_setup_caps EXPORT_SYMBOL_GPL vmlinux 0x234cf416 devlink_fmsg_string_pair_put -EXPORT_SYMBOL_GPL vmlinux 0x2363ac92 rtc_update_irq_enable -EXPORT_SYMBOL_GPL vmlinux 0x236b9f16 clk_register -EXPORT_SYMBOL_GPL vmlinux 0x236f358a spi_get_device_id -EXPORT_SYMBOL_GPL vmlinux 0x23707c8f serdev_controller_add -EXPORT_SYMBOL_GPL vmlinux 0x2373aee3 ip6_redirect +EXPORT_SYMBOL_GPL vmlinux 0x234d88a5 anon_transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x235267e7 iomap_finish_ioends +EXPORT_SYMBOL_GPL vmlinux 0x2352de98 phy_modify_changed EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node EXPORT_SYMBOL_GPL vmlinux 0x2386c0ea __SCT__tp_func_cpu_frequency -EXPORT_SYMBOL_GPL vmlinux 0x238f92d8 phy_led_triggers_unregister +EXPORT_SYMBOL_GPL vmlinux 0x238774a3 ata_pci_device_suspend EXPORT_SYMBOL_GPL vmlinux 0x2396c7f0 clk_set_parent EXPORT_SYMBOL_GPL vmlinux 0x23b4e0d7 clear_page_rep -EXPORT_SYMBOL_GPL vmlinux 0x23ba4d36 pm_clk_resume -EXPORT_SYMBOL_GPL vmlinux 0x23ba74d9 clockevents_config_and_register -EXPORT_SYMBOL_GPL vmlinux 0x23ca8aa9 __efivar_entry_iter -EXPORT_SYMBOL_GPL vmlinux 0x23d16d0b skcipher_walk_aead_encrypt -EXPORT_SYMBOL_GPL vmlinux 0x23e86356 ata_std_sched_eh -EXPORT_SYMBOL_GPL vmlinux 0x23f0d330 sk_psock_init -EXPORT_SYMBOL_GPL vmlinux 0x2405c040 acpi_subsys_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x23b5dd74 __fib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x23bb4ff4 acpi_get_and_request_gpiod +EXPORT_SYMBOL_GPL vmlinux 0x23bde5b4 badblocks_clear +EXPORT_SYMBOL_GPL vmlinux 0x23c400f3 pci_epc_set_msi +EXPORT_SYMBOL_GPL vmlinux 0x23c97c8f crypto_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x23d1a4f2 vp_modern_remove +EXPORT_SYMBOL_GPL vmlinux 0x23d6545e dev_fill_metadata_dst +EXPORT_SYMBOL_GPL vmlinux 0x23de86b7 extcon_set_state_sync +EXPORT_SYMBOL_GPL vmlinux 0x23f79c5c fwnode_handle_get +EXPORT_SYMBOL_GPL vmlinux 0x2400403a nfs_ssc_unregister +EXPORT_SYMBOL_GPL vmlinux 0x240c1667 inet6_hash_connect EXPORT_SYMBOL_GPL vmlinux 0x2410c338 x86_virt_spec_ctrl +EXPORT_SYMBOL_GPL vmlinux 0x24142e07 key_set_timeout EXPORT_SYMBOL_GPL vmlinux 0x2421097b mpi_const -EXPORT_SYMBOL_GPL vmlinux 0x24217cc8 skb_mpls_pop -EXPORT_SYMBOL_GPL vmlinux 0x24286a98 vfio_group_iommu_domain -EXPORT_SYMBOL_GPL vmlinux 0x24380309 vp_modern_set_queue_enable -EXPORT_SYMBOL_GPL vmlinux 0x243eb539 check_move_unevictable_pages -EXPORT_SYMBOL_GPL vmlinux 0x244eb063 fuse_sync_release -EXPORT_SYMBOL_GPL vmlinux 0x2450b6b5 __traceiter_neigh_timer_handler -EXPORT_SYMBOL_GPL vmlinux 0x2454bb69 vfs_read -EXPORT_SYMBOL_GPL vmlinux 0x2461c090 mddev_unlock +EXPORT_SYMBOL_GPL vmlinux 0x242aecaa put_pid +EXPORT_SYMBOL_GPL vmlinux 0x24390eba __rio_local_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x243b9253 uprobe_register_refctr +EXPORT_SYMBOL_GPL vmlinux 0x2455b2c0 rio_mport_get_physefb +EXPORT_SYMBOL_GPL vmlinux 0x245b4e7e __traceiter_pelt_irq_tp EXPORT_SYMBOL_GPL vmlinux 0x2464da17 gen_pool_size +EXPORT_SYMBOL_GPL vmlinux 0x24660333 uart_try_toggle_sysrq +EXPORT_SYMBOL_GPL vmlinux 0x246a69d3 vfs_getxattr EXPORT_SYMBOL_GPL vmlinux 0x24709b2f trace_seq_putmem -EXPORT_SYMBOL_GPL vmlinux 0x247c7b89 set_selection_kernel +EXPORT_SYMBOL_GPL vmlinux 0x247582bf regmap_mmio_attach_clk +EXPORT_SYMBOL_GPL vmlinux 0x24781936 register_acpi_bus_type EXPORT_SYMBOL_GPL vmlinux 0x2484e789 vbin_printf +EXPORT_SYMBOL_GPL vmlinux 0x24856ce9 driver_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x2488bbc9 sysfs_create_bin_file EXPORT_SYMBOL_GPL vmlinux 0x248bc867 raw_notifier_call_chain_robust EXPORT_SYMBOL_GPL vmlinux 0x248e1473 kfree_strarray -EXPORT_SYMBOL_GPL vmlinux 0x249b87f4 usb_urb_ep_type_check +EXPORT_SYMBOL_GPL vmlinux 0x2496e8a2 crypto_unregister_ahash +EXPORT_SYMBOL_GPL vmlinux 0x24a1fed0 report_iommu_fault EXPORT_SYMBOL_GPL vmlinux 0x24ad11db wakeup_sources_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0x24b8221d tty_standard_install -EXPORT_SYMBOL_GPL vmlinux 0x24d7a2b5 crypto_unregister_acomp +EXPORT_SYMBOL_GPL vmlinux 0x24bca9ec component_add_typed +EXPORT_SYMBOL_GPL vmlinux 0x24c2dbfe devm_nvmem_device_get +EXPORT_SYMBOL_GPL vmlinux 0x24c94dde __tracepoint_pelt_dl_tp +EXPORT_SYMBOL_GPL vmlinux 0x24c9dd97 regmap_get_val_bytes +EXPORT_SYMBOL_GPL vmlinux 0x24d22f98 __clk_get_hw EXPORT_SYMBOL_GPL vmlinux 0x24da0093 rcu_inkernel_boot_has_ended -EXPORT_SYMBOL_GPL vmlinux 0x24dc7740 trace_array_printk +EXPORT_SYMBOL_GPL vmlinux 0x24dc0c04 xhci_gen_setup +EXPORT_SYMBOL_GPL vmlinux 0x24e5b047 sysfs_notify +EXPORT_SYMBOL_GPL vmlinux 0x24e8f7d4 __blkg_prfill_u64 EXPORT_SYMBOL_GPL vmlinux 0x24eb7e32 leds_list EXPORT_SYMBOL_GPL vmlinux 0x24f39c39 reset_control_reset EXPORT_SYMBOL_GPL vmlinux 0x24f63dcf ata_xfer_mask2mode +EXPORT_SYMBOL_GPL vmlinux 0x24f8ddd4 tcp_abort EXPORT_SYMBOL_GPL vmlinux 0x24fc50f4 kdb_unregister -EXPORT_SYMBOL_GPL vmlinux 0x24fdee8d bpf_trace_run4 -EXPORT_SYMBOL_GPL vmlinux 0x2513677a blk_mq_rdma_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x250925c3 sata_scr_write_flush +EXPORT_SYMBOL_GPL vmlinux 0x2518ae4a __tracepoint_sched_overutilized_tp +EXPORT_SYMBOL_GPL vmlinux 0x25191c76 platform_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0x252c7614 regulator_get_current_limit_regmap EXPORT_SYMBOL_GPL vmlinux 0x25301bc6 arch_wb_cache_pmem +EXPORT_SYMBOL_GPL vmlinux 0x2532ad03 devm_nvdimm_memremap EXPORT_SYMBOL_GPL vmlinux 0x25379e73 clk_set_min_rate -EXPORT_SYMBOL_GPL vmlinux 0x253b90d7 is_software_node -EXPORT_SYMBOL_GPL vmlinux 0x254a29ba fuse_dev_free -EXPORT_SYMBOL_GPL vmlinux 0x2573fd1f sk_attach_filter -EXPORT_SYMBOL_GPL vmlinux 0x25818efc efivars_register +EXPORT_SYMBOL_GPL vmlinux 0x254208b0 devm_usb_get_phy_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x254614c7 pcc_mbox_free_channel +EXPORT_SYMBOL_GPL vmlinux 0x255ec22f __irq_domain_add EXPORT_SYMBOL_GPL vmlinux 0x2592fc6c console_printk -EXPORT_SYMBOL_GPL vmlinux 0x25a02a8a root_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x25b10758 da903x_update +EXPORT_SYMBOL_GPL vmlinux 0x25b35014 dst_blackhole_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0x25bbfa9a security_kernel_load_data -EXPORT_SYMBOL_GPL vmlinux 0x25bc38e5 class_create_file_ns -EXPORT_SYMBOL_GPL vmlinux 0x25bd5337 vp_modern_remove -EXPORT_SYMBOL_GPL vmlinux 0x25bde255 key_type_logon -EXPORT_SYMBOL_GPL vmlinux 0x25e09b64 acpi_driver_match_device -EXPORT_SYMBOL_GPL vmlinux 0x25f010df strp_check_rcv +EXPORT_SYMBOL_GPL vmlinux 0x25c9aa78 fuse_dev_alloc_install EXPORT_SYMBOL_GPL vmlinux 0x25f02c87 xen_p2m_addr -EXPORT_SYMBOL_GPL vmlinux 0x25fb28aa ata_pci_bmdma_prepare_host -EXPORT_SYMBOL_GPL vmlinux 0x2611333d fwnode_property_get_reference_args -EXPORT_SYMBOL_GPL vmlinux 0x2616265d vfio_register_iommu_driver -EXPORT_SYMBOL_GPL vmlinux 0x261ce715 __fscrypt_prepare_readdir -EXPORT_SYMBOL_GPL vmlinux 0x26239cf2 pci_epc_raise_irq +EXPORT_SYMBOL_GPL vmlinux 0x25f76e9e tty_port_register_device +EXPORT_SYMBOL_GPL vmlinux 0x26107ef6 inet_csk_listen_stop EXPORT_SYMBOL_GPL vmlinux 0x262a7063 xen_start_info -EXPORT_SYMBOL_GPL vmlinux 0x2639cde0 pci_msi_create_irq_domain -EXPORT_SYMBOL_GPL vmlinux 0x2639e559 mptcp_pm_get_local_addr_max +EXPORT_SYMBOL_GPL vmlinux 0x262d9250 dma_buf_get +EXPORT_SYMBOL_GPL vmlinux 0x26315425 dev_pm_opp_find_freq_ceil +EXPORT_SYMBOL_GPL vmlinux 0x2632dc30 sock_diag_put_meminfo EXPORT_SYMBOL_GPL vmlinux 0x263f039e xas_nomem +EXPORT_SYMBOL_GPL vmlinux 0x263f7f8e make_device_exclusive_range EXPORT_SYMBOL_GPL vmlinux 0x26520970 vm_memory_committed +EXPORT_SYMBOL_GPL vmlinux 0x26559269 rio_release_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x2655ce2f pm_clk_remove_clk EXPORT_SYMBOL_GPL vmlinux 0x265b6e29 hyperv_flush_guest_mapping_range EXPORT_SYMBOL_GPL vmlinux 0x265bbef9 kexec_crash_loaded EXPORT_SYMBOL_GPL vmlinux 0x266a4b08 tasklet_unlock -EXPORT_SYMBOL_GPL vmlinux 0x26746c29 sock_diag_unregister -EXPORT_SYMBOL_GPL vmlinux 0x267914ae phy_power_off +EXPORT_SYMBOL_GPL vmlinux 0x266b6f14 pci_add_dynid +EXPORT_SYMBOL_GPL vmlinux 0x267480d9 scsi_queue_work EXPORT_SYMBOL_GPL vmlinux 0x267df662 smp_call_on_cpu -EXPORT_SYMBOL_GPL vmlinux 0x268e47fa register_user_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x26916a41 badblocks_show -EXPORT_SYMBOL_GPL vmlinux 0x26952be3 tty_ldisc_flush -EXPORT_SYMBOL_GPL vmlinux 0x26959bdb xdp_do_redirect +EXPORT_SYMBOL_GPL vmlinux 0x268fac7c of_pm_clk_add_clks +EXPORT_SYMBOL_GPL vmlinux 0x269b2eb2 sdio_register_driver EXPORT_SYMBOL_GPL vmlinux 0x26a93eb2 verify_pkcs7_signature EXPORT_SYMBOL_GPL vmlinux 0x26ab4755 put_old_itimerspec32 -EXPORT_SYMBOL_GPL vmlinux 0x26ac81f3 extcon_set_property_capability -EXPORT_SYMBOL_GPL vmlinux 0x26b6c53e dev_pm_opp_register_set_opp_helper -EXPORT_SYMBOL_GPL vmlinux 0x26b7bc04 tty_encode_baud_rate -EXPORT_SYMBOL_GPL vmlinux 0x26bc01e5 bpf_prog_sub +EXPORT_SYMBOL_GPL vmlinux 0x26b620a2 usb_get_descriptor +EXPORT_SYMBOL_GPL vmlinux 0x26c35f51 mmput EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense EXPORT_SYMBOL_GPL vmlinux 0x26cda94f e820__mapped_raw_any -EXPORT_SYMBOL_GPL vmlinux 0x26d791fe rio_release_inb_mbox -EXPORT_SYMBOL_GPL vmlinux 0x26dd5fcf dm_send_uevents -EXPORT_SYMBOL_GPL vmlinux 0x26e2a90a cpuidle_get_driver -EXPORT_SYMBOL_GPL vmlinux 0x26e46323 pci_epc_write_header +EXPORT_SYMBOL_GPL vmlinux 0x26ce4837 ehci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x26d2cadf pci_disable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0x26d6d4af sdio_readsb EXPORT_SYMBOL_GPL vmlinux 0x26ed2186 register_vmap_purge_notifier -EXPORT_SYMBOL_GPL vmlinux 0x26fa6f72 trace_array_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0x26edff79 vfio_pci_core_finish_enable EXPORT_SYMBOL_GPL vmlinux 0x26fd13e7 smca_banks -EXPORT_SYMBOL_GPL vmlinux 0x2704a906 dev_forward_skb -EXPORT_SYMBOL_GPL vmlinux 0x2722f6ef __tracepoint_io_page_fault -EXPORT_SYMBOL_GPL vmlinux 0x2724074d __netdev_watchdog_up +EXPORT_SYMBOL_GPL vmlinux 0x26fe5e5d __pm_runtime_set_status +EXPORT_SYMBOL_GPL vmlinux 0x27106679 dev_pm_domain_start +EXPORT_SYMBOL_GPL vmlinux 0x2710737b ata_sff_freeze +EXPORT_SYMBOL_GPL vmlinux 0x2715e6da cgroup_get_from_fd +EXPORT_SYMBOL_GPL vmlinux 0x2732fe0f intel_pinctrl_probe_by_hid +EXPORT_SYMBOL_GPL vmlinux 0x273651ee ipv6_recv_error EXPORT_SYMBOL_GPL vmlinux 0x273aab74 xen_have_vector_callback EXPORT_SYMBOL_GPL vmlinux 0x273aff5c __SCT__tp_func_block_bio_remap -EXPORT_SYMBOL_GPL vmlinux 0x274cc4d1 crypto_shash_digest +EXPORT_SYMBOL_GPL vmlinux 0x273bed01 hwspin_lock_request_specific +EXPORT_SYMBOL_GPL vmlinux 0x27455082 dev_pm_opp_get_opp_count +EXPORT_SYMBOL_GPL vmlinux 0x274d20fa clk_hw_register_fixed_factor EXPORT_SYMBOL_GPL vmlinux 0x274dd1a3 sg_free_table_chained -EXPORT_SYMBOL_GPL vmlinux 0x274e1f9d usb_bulk_msg -EXPORT_SYMBOL_GPL vmlinux 0x274fbe3b usb_add_phy -EXPORT_SYMBOL_GPL vmlinux 0x275b3ae7 tps6586x_read +EXPORT_SYMBOL_GPL vmlinux 0x27619328 irq_domain_translate_twocell EXPORT_SYMBOL_GPL vmlinux 0x2773c485 __wake_up_locked -EXPORT_SYMBOL_GPL vmlinux 0x277a9c31 ptp_classify_raw -EXPORT_SYMBOL_GPL vmlinux 0x277c3cf1 __SCK__tp_func_error_report_end -EXPORT_SYMBOL_GPL vmlinux 0x277c74a9 __tracepoint_neigh_cleanup_and_release -EXPORT_SYMBOL_GPL vmlinux 0x277d4446 acpi_data_fwnode_ops -EXPORT_SYMBOL_GPL vmlinux 0x278e5c59 dma_resv_get_fences -EXPORT_SYMBOL_GPL vmlinux 0x27967a59 __traceiter_wbc_writepage -EXPORT_SYMBOL_GPL vmlinux 0x27a7a70e blk_queue_max_zone_append_sectors -EXPORT_SYMBOL_GPL vmlinux 0x27c2baf3 pinctrl_select_default_state -EXPORT_SYMBOL_GPL vmlinux 0x27c7bfd0 pci_cfg_access_trylock +EXPORT_SYMBOL_GPL vmlinux 0x27768d1b blk_mq_debugfs_rq_show +EXPORT_SYMBOL_GPL vmlinux 0x277a1de1 pm_genpd_remove_subdomain +EXPORT_SYMBOL_GPL vmlinux 0x278de2e8 sfp_bus_add_upstream +EXPORT_SYMBOL_GPL vmlinux 0x2795ab54 ping_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0x2796a887 pci_epc_destroy +EXPORT_SYMBOL_GPL vmlinux 0x27a02e41 da903x_read +EXPORT_SYMBOL_GPL vmlinux 0x27a3bda0 __raw_v6_lookup +EXPORT_SYMBOL_GPL vmlinux 0x27a6ff93 dma_buf_put +EXPORT_SYMBOL_GPL vmlinux 0x27b9d467 trace_event_ignore_this_pid +EXPORT_SYMBOL_GPL vmlinux 0x27bf566b dev_pm_genpd_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0x27f2aeb4 put_device EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter EXPORT_SYMBOL_GPL vmlinux 0x27fa66e1 nr_free_buffer_pages -EXPORT_SYMBOL_GPL vmlinux 0x28048748 yield_to -EXPORT_SYMBOL_GPL vmlinux 0x28100756 thermal_zone_get_offset -EXPORT_SYMBOL_GPL vmlinux 0x281259be ping_seq_stop -EXPORT_SYMBOL_GPL vmlinux 0x2814a0cf acct_bioset_exit +EXPORT_SYMBOL_GPL vmlinux 0x28061861 kgdb_register_io_module +EXPORT_SYMBOL_GPL vmlinux 0x280a36bf iommu_group_add_device +EXPORT_SYMBOL_GPL vmlinux 0x2810d1cc devlink_sb_register EXPORT_SYMBOL_GPL vmlinux 0x2817f7fd cppc_get_desired_perf -EXPORT_SYMBOL_GPL vmlinux 0x28297f39 mmc_cmdq_enable EXPORT_SYMBOL_GPL vmlinux 0x282cdabc usb_led_activity -EXPORT_SYMBOL_GPL vmlinux 0x282f2ee2 ata_sff_irq_on -EXPORT_SYMBOL_GPL vmlinux 0x28423ab2 driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0x284d82df cpufreq_dbs_governor_start -EXPORT_SYMBOL_GPL vmlinux 0x285cd96e cgrp_dfl_root +EXPORT_SYMBOL_GPL vmlinux 0x282e0569 rio_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x283b49c4 iommu_domain_free +EXPORT_SYMBOL_GPL vmlinux 0x283ceaa1 fib_rules_dump EXPORT_SYMBOL_GPL vmlinux 0x2864abc9 klist_node_attached -EXPORT_SYMBOL_GPL vmlinux 0x286c1b33 device_property_read_u8_array EXPORT_SYMBOL_GPL vmlinux 0x286cc647 async_synchronize_cookie_domain +EXPORT_SYMBOL_GPL vmlinux 0x286d1468 sched_trace_rq_cpu_capacity +EXPORT_SYMBOL_GPL vmlinux 0x28818ec0 dma_run_dependencies EXPORT_SYMBOL_GPL vmlinux 0x2882d40e usb_role_switch_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2888b264 tcp_abort -EXPORT_SYMBOL_GPL vmlinux 0x2888f04b clk_hw_register_composite -EXPORT_SYMBOL_GPL vmlinux 0x2898168f ip6_append_data -EXPORT_SYMBOL_GPL vmlinux 0x2899a3d7 blk_mq_virtio_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x28916151 usb_string EXPORT_SYMBOL_GPL vmlinux 0x28aa6a67 call_rcu EXPORT_SYMBOL_GPL vmlinux 0x28ab4fb9 pinctrl_gpio_free +EXPORT_SYMBOL_GPL vmlinux 0x28af9a16 __tracepoint_rpm_return_int EXPORT_SYMBOL_GPL vmlinux 0x28afbb08 cpu_latency_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0x28b047fe skb_complete_wifi_ack +EXPORT_SYMBOL_GPL vmlinux 0x28bcbb66 icc_std_aggregate EXPORT_SYMBOL_GPL vmlinux 0x28be0cef misc_cg_res_total_usage -EXPORT_SYMBOL_GPL vmlinux 0x28c6bfbd phy_select_page -EXPORT_SYMBOL_GPL vmlinux 0x28e60c30 __platform_driver_register EXPORT_SYMBOL_GPL vmlinux 0x28e64c64 xen_has_pv_and_legacy_disk_devices -EXPORT_SYMBOL_GPL vmlinux 0x28fd94f5 usb_get_status +EXPORT_SYMBOL_GPL vmlinux 0x28eed335 vma_kernel_pagesize +EXPORT_SYMBOL_GPL vmlinux 0x28fb1266 hwmon_device_register EXPORT_SYMBOL_GPL vmlinux 0x291876f3 mpi_ec_get_affine -EXPORT_SYMBOL_GPL vmlinux 0x292607a3 tpm2_get_tpm_pt -EXPORT_SYMBOL_GPL vmlinux 0x29287c13 __devm_regmap_init +EXPORT_SYMBOL_GPL vmlinux 0x291e4ce4 phy_reset EXPORT_SYMBOL_GPL vmlinux 0x29366b61 register_ftrace_direct -EXPORT_SYMBOL_GPL vmlinux 0x293f5b6f dev_pm_set_dedicated_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x294da4b3 devlink_unregister EXPORT_SYMBOL_GPL vmlinux 0x2951a872 trace_clock_local -EXPORT_SYMBOL_GPL vmlinux 0x29533074 xhci_resume -EXPORT_SYMBOL_GPL vmlinux 0x29568be3 of_devfreq_cooling_register_power -EXPORT_SYMBOL_GPL vmlinux 0x2970ceec usb_wakeup_notification -EXPORT_SYMBOL_GPL vmlinux 0x2970fd60 devm_device_remove_groups -EXPORT_SYMBOL_GPL vmlinux 0x297c72f5 devlink_trap_report -EXPORT_SYMBOL_GPL vmlinux 0x2982bc83 get_task_mm -EXPORT_SYMBOL_GPL vmlinux 0x2989f92f intel_pinctrl_resume_noirq -EXPORT_SYMBOL_GPL vmlinux 0x298bc3ce tty_port_register_device_serdev -EXPORT_SYMBOL_GPL vmlinux 0x2998e45b devm_nvmem_register -EXPORT_SYMBOL_GPL vmlinux 0x29a2205e __platform_create_bundle -EXPORT_SYMBOL_GPL vmlinux 0x29b76674 fscrypt_mergeable_bio_bh -EXPORT_SYMBOL_GPL vmlinux 0x29bef2ef crypto_unregister_template -EXPORT_SYMBOL_GPL vmlinux 0x29ca290f genphy_c45_config_aneg -EXPORT_SYMBOL_GPL vmlinux 0x29e84fec ata_scsi_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0x29525eae virtio_device_freeze +EXPORT_SYMBOL_GPL vmlinux 0x29573b35 __mdiobus_modify_changed +EXPORT_SYMBOL_GPL vmlinux 0x29642e86 nd_blk_memremap_flags +EXPORT_SYMBOL_GPL vmlinux 0x297ad24b spi_mem_dirmap_write +EXPORT_SYMBOL_GPL vmlinux 0x2982353b gnttab_unmap_refs_async +EXPORT_SYMBOL_GPL vmlinux 0x29841370 cpufreq_freq_transition_begin +EXPORT_SYMBOL_GPL vmlinux 0x29853fa0 lp8788_write_byte +EXPORT_SYMBOL_GPL vmlinux 0x29abe5a1 devfreq_event_reset_event +EXPORT_SYMBOL_GPL vmlinux 0x29addfd4 dma_get_any_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x29aed7de power_supply_changed +EXPORT_SYMBOL_GPL vmlinux 0x29b1534a wm831x_auxadc_read_uv +EXPORT_SYMBOL_GPL vmlinux 0x29b6d1fe pinctrl_register +EXPORT_SYMBOL_GPL vmlinux 0x29b6f2b1 pci_walk_bus +EXPORT_SYMBOL_GPL vmlinux 0x29c1aca6 usb_phy_roothub_resume EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async -EXPORT_SYMBOL_GPL vmlinux 0x2a063eb6 class_dev_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0x2a09425c gpiochip_irqchip_add_domain -EXPORT_SYMBOL_GPL vmlinux 0x2a19d6e8 led_trigger_register_simple -EXPORT_SYMBOL_GPL vmlinux 0x2a253b0f xenbus_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x29efc24a do_unregister_con_driver +EXPORT_SYMBOL_GPL vmlinux 0x29fd7114 mctrl_gpio_free +EXPORT_SYMBOL_GPL vmlinux 0x2a034e1a usb_block_urb +EXPORT_SYMBOL_GPL vmlinux 0x2a042743 __skb_get_hash_symmetric +EXPORT_SYMBOL_GPL vmlinux 0x2a0c76f2 tps6586x_get_version +EXPORT_SYMBOL_GPL vmlinux 0x2a118afb __phy_modify_mmd_changed +EXPORT_SYMBOL_GPL vmlinux 0x2a1b06f3 devlink_param_driverinit_value_get +EXPORT_SYMBOL_GPL vmlinux 0x2a1cc42f skb_mpls_pop +EXPORT_SYMBOL_GPL vmlinux 0x2a29a7b5 regulator_get_bypass_regmap EXPORT_SYMBOL_GPL vmlinux 0x2a2aea17 clk_fixed_rate_ops -EXPORT_SYMBOL_GPL vmlinux 0x2a3e31cb gpiod_set_transitory -EXPORT_SYMBOL_GPL vmlinux 0x2a50e84d handle_mm_fault -EXPORT_SYMBOL_GPL vmlinux 0x2a528f13 dma_request_chan_by_mask -EXPORT_SYMBOL_GPL vmlinux 0x2a54da8d devm_of_led_get +EXPORT_SYMBOL_GPL vmlinux 0x2a3b8ae0 __clk_mux_determine_rate_closest +EXPORT_SYMBOL_GPL vmlinux 0x2a48ec68 hvc_alloc EXPORT_SYMBOL_GPL vmlinux 0x2a5ea9ef rhashtable_destroy EXPORT_SYMBOL_GPL vmlinux 0x2a62cb3a ring_buffer_overrun_cpu EXPORT_SYMBOL_GPL vmlinux 0x2a678a13 __suspend_report_result -EXPORT_SYMBOL_GPL vmlinux 0x2a84e41e fat_sync_inode -EXPORT_SYMBOL_GPL vmlinux 0x2a89a9d6 devm_hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2a6d2c21 rio_release_inb_dbell EXPORT_SYMBOL_GPL vmlinux 0x2a8af55a acpi_ec_add_query_handler -EXPORT_SYMBOL_GPL vmlinux 0x2a8c6400 devlink_port_params_register -EXPORT_SYMBOL_GPL vmlinux 0x2a8fbd30 perf_tp_event -EXPORT_SYMBOL_GPL vmlinux 0x2aa68fc7 devm_devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0x2a956466 blk_queue_zone_write_granularity +EXPORT_SYMBOL_GPL vmlinux 0x2aa69dff dma_buf_begin_cpu_access EXPORT_SYMBOL_GPL vmlinux 0x2aadad1a efi_capsule_update -EXPORT_SYMBOL_GPL vmlinux 0x2ab24df6 gnttab_foreach_grant_in_range -EXPORT_SYMBOL_GPL vmlinux 0x2ac26102 hwmon_notify_event -EXPORT_SYMBOL_GPL vmlinux 0x2ae69648 dev_pm_opp_add +EXPORT_SYMBOL_GPL vmlinux 0x2ab55e2e syscon_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0x2ac22493 devlink_port_register +EXPORT_SYMBOL_GPL vmlinux 0x2ad31def usb_submit_urb +EXPORT_SYMBOL_GPL vmlinux 0x2ae51e1c debugfs_create_blob +EXPORT_SYMBOL_GPL vmlinux 0x2afb7db5 blk_mq_free_request EXPORT_SYMBOL_GPL vmlinux 0x2aff68f9 perf_guest_get_msrs EXPORT_SYMBOL_GPL vmlinux 0x2b0765ca xen_store_interface +EXPORT_SYMBOL_GPL vmlinux 0x2b0d85b8 bpf_prog_inc EXPORT_SYMBOL_GPL vmlinux 0x2b0fe000 gnttab_cancel_free_callback -EXPORT_SYMBOL_GPL vmlinux 0x2b1bb7b7 __page_file_mapping -EXPORT_SYMBOL_GPL vmlinux 0x2b35bc62 pci_add_dynid +EXPORT_SYMBOL_GPL vmlinux 0x2b2bd200 platform_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2b32287d pci_test_config_bits +EXPORT_SYMBOL_GPL vmlinux 0x2b334e01 __page_file_index EXPORT_SYMBOL_GPL vmlinux 0x2b3acc3b __SCT__tp_func_remove_device_from_group EXPORT_SYMBOL_GPL vmlinux 0x2b4509dd devlink_health_reporter_state_update -EXPORT_SYMBOL_GPL vmlinux 0x2b4840f2 pci_store_saved_state -EXPORT_SYMBOL_GPL vmlinux 0x2b4aee4f sysfs_create_link_nowarn -EXPORT_SYMBOL_GPL vmlinux 0x2b5c32cb generic_online_page +EXPORT_SYMBOL_GPL vmlinux 0x2b4b3901 serial8250_rx_dma_flush +EXPORT_SYMBOL_GPL vmlinux 0x2b52370b ata_sas_sync_probe +EXPORT_SYMBOL_GPL vmlinux 0x2b57054f xenbus_dev_resume EXPORT_SYMBOL_GPL vmlinux 0x2b6150fb power_supply_temp2resist_simple EXPORT_SYMBOL_GPL vmlinux 0x2b67b6b7 mds_idle_clear -EXPORT_SYMBOL_GPL vmlinux 0x2b6948d1 icc_set_tag -EXPORT_SYMBOL_GPL vmlinux 0x2b6a3072 iommu_group_for_each_dev EXPORT_SYMBOL_GPL vmlinux 0x2b6d960d synth_event_cmd_init +EXPORT_SYMBOL_GPL vmlinux 0x2b6fbc2e devfreq_event_is_enabled EXPORT_SYMBOL_GPL vmlinux 0x2b7fc385 hv_init_clocksource +EXPORT_SYMBOL_GPL vmlinux 0x2b8c1c21 led_set_brightness_nopm +EXPORT_SYMBOL_GPL vmlinux 0x2b9220cd ata_sff_wait_after_reset EXPORT_SYMBOL_GPL vmlinux 0x2b952517 clk_has_parent EXPORT_SYMBOL_GPL vmlinux 0x2b9997fb atomic_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0x2ba34dc8 phy_get -EXPORT_SYMBOL_GPL vmlinux 0x2ba76dd9 wm831x_reg_unlock -EXPORT_SYMBOL_GPL vmlinux 0x2bc5d776 genphy_c45_read_pma -EXPORT_SYMBOL_GPL vmlinux 0x2be9d4ac bpf_trace_run12 -EXPORT_SYMBOL_GPL vmlinux 0x2bec45df __pci_hp_initialize -EXPORT_SYMBOL_GPL vmlinux 0x2beca5cd i2c_new_dummy_device -EXPORT_SYMBOL_GPL vmlinux 0x2bf85944 sysfs_rename_link_ns -EXPORT_SYMBOL_GPL vmlinux 0x2bf88715 sysfs_add_link_to_group -EXPORT_SYMBOL_GPL vmlinux 0x2bfe93c8 acomp_request_alloc -EXPORT_SYMBOL_GPL vmlinux 0x2c076b53 __devm_spi_alloc_controller -EXPORT_SYMBOL_GPL vmlinux 0x2c0c946b ip6_dst_lookup_flow -EXPORT_SYMBOL_GPL vmlinux 0x2c0ce161 pci_epc_set_bar -EXPORT_SYMBOL_GPL vmlinux 0x2c1b450f evm_inode_init_security +EXPORT_SYMBOL_GPL vmlinux 0x2bab6eb9 task_active_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x2bbea65d fib_nh_common_init +EXPORT_SYMBOL_GPL vmlinux 0x2be56056 vchan_tx_desc_free +EXPORT_SYMBOL_GPL vmlinux 0x2bfdfd7c blkcg_policy_register EXPORT_SYMBOL_GPL vmlinux 0x2c208607 power_supply_is_system_supplied -EXPORT_SYMBOL_GPL vmlinux 0x2c23313d raw_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x2c2ad9ce cpu_subsys EXPORT_SYMBOL_GPL vmlinux 0x2c2f5a09 x86_family EXPORT_SYMBOL_GPL vmlinux 0x2c3054f9 net_inc_ingress_queue -EXPORT_SYMBOL_GPL vmlinux 0x2c370987 gpiod_direction_output_raw -EXPORT_SYMBOL_GPL vmlinux 0x2c4cd2e6 xfrm_dev_offload_ok -EXPORT_SYMBOL_GPL vmlinux 0x2c5b3b44 ip6_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x2c48134a pci_probe_reset_bus EXPORT_SYMBOL_GPL vmlinux 0x2c61bb09 uv_bios_get_pci_topology +EXPORT_SYMBOL_GPL vmlinux 0x2c6280c3 dev_pm_qos_hide_latency_limit EXPORT_SYMBOL_GPL vmlinux 0x2c635527 arch_invalidate_pmem -EXPORT_SYMBOL_GPL vmlinux 0x2c6634cb dev_pm_opp_find_freq_exact EXPORT_SYMBOL_GPL vmlinux 0x2c66ac85 devlink_info_serial_number_put -EXPORT_SYMBOL_GPL vmlinux 0x2c6a56bb tpm_is_tpm2 +EXPORT_SYMBOL_GPL vmlinux 0x2c69dcd9 pci_epc_mem_alloc_addr +EXPORT_SYMBOL_GPL vmlinux 0x2c78e66a blk_ksm_reprogram_all_keys EXPORT_SYMBOL_GPL vmlinux 0x2c7c79ce srcu_torture_stats_print EXPORT_SYMBOL_GPL vmlinux 0x2c7db649 irq_dispose_mapping -EXPORT_SYMBOL_GPL vmlinux 0x2c8ced37 gpiod_get_value +EXPORT_SYMBOL_GPL vmlinux 0x2c7ffeb6 acpi_initialize_hp_context EXPORT_SYMBOL_GPL vmlinux 0x2c8dd6b8 edac_mem_types -EXPORT_SYMBOL_GPL vmlinux 0x2ca3c9b3 ehci_setup +EXPORT_SYMBOL_GPL vmlinux 0x2c8deb45 device_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0x2ca2c7e3 usb_hcd_link_urb_to_ep EXPORT_SYMBOL_GPL vmlinux 0x2ca41024 ioasid_get -EXPORT_SYMBOL_GPL vmlinux 0x2cb48e39 extcon_dev_free -EXPORT_SYMBOL_GPL vmlinux 0x2cb7194c dequeue_signal -EXPORT_SYMBOL_GPL vmlinux 0x2cbb518f __bio_add_page -EXPORT_SYMBOL_GPL vmlinux 0x2cd6fa70 acpi_bus_trim -EXPORT_SYMBOL_GPL vmlinux 0x2ce5fb9d regulator_is_equal -EXPORT_SYMBOL_GPL vmlinux 0x2ce624f2 clk_hw_get_parent_by_index +EXPORT_SYMBOL_GPL vmlinux 0x2ca5ce34 add_page_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x2caee8a7 pfn_to_online_page +EXPORT_SYMBOL_GPL vmlinux 0x2cb56837 ping_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x2cc5ccc5 devm_acpi_dev_remove_driver_gpios +EXPORT_SYMBOL_GPL vmlinux 0x2cc82802 crypto_register_rngs +EXPORT_SYMBOL_GPL vmlinux 0x2cc85f71 perf_event_sysfs_show +EXPORT_SYMBOL_GPL vmlinux 0x2cc86fc8 driver_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x2ce18152 __clk_mux_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0x2ce22cba dev_pm_genpd_suspend +EXPORT_SYMBOL_GPL vmlinux 0x2ce48c8a ata_sas_tport_delete EXPORT_SYMBOL_GPL vmlinux 0x2cea32ee unregister_oldmem_pfn_is_ram -EXPORT_SYMBOL_GPL vmlinux 0x2cf70688 loop_backing_file +EXPORT_SYMBOL_GPL vmlinux 0x2cee70a1 devlink_sb_unregister EXPORT_SYMBOL_GPL vmlinux 0x2cfbb2b5 __SCT__tp_func_pelt_dl_tp EXPORT_SYMBOL_GPL vmlinux 0x2d0684a9 hrtimer_init -EXPORT_SYMBOL_GPL vmlinux 0x2d1894f0 ata_dev_next +EXPORT_SYMBOL_GPL vmlinux 0x2d175249 generic_access_phys +EXPORT_SYMBOL_GPL vmlinux 0x2d18c4ff nvmem_device_get EXPORT_SYMBOL_GPL vmlinux 0x2d1b02d2 usermodehelper_read_lock_wait +EXPORT_SYMBOL_GPL vmlinux 0x2d25fa93 clk_gate_restore_context +EXPORT_SYMBOL_GPL vmlinux 0x2d2a4cd1 __traceiter_devlink_hwerr EXPORT_SYMBOL_GPL vmlinux 0x2d2dd36f kobj_ns_grab_current -EXPORT_SYMBOL_GPL vmlinux 0x2d30b6ed tty_port_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0x2d31d994 device_wakeup_disable -EXPORT_SYMBOL_GPL vmlinux 0x2d340575 led_set_brightness_nosleep +EXPORT_SYMBOL_GPL vmlinux 0x2d2fdfdc sysfs_add_file_to_group EXPORT_SYMBOL_GPL vmlinux 0x2d393f48 intel_soc_pmic_exec_mipi_pmic_seq_element EXPORT_SYMBOL_GPL vmlinux 0x2d41e6f5 __trace_puts -EXPORT_SYMBOL_GPL vmlinux 0x2d42583b register_trace_event EXPORT_SYMBOL_GPL vmlinux 0x2d44be3b __SCT__tp_func_br_fdb_add -EXPORT_SYMBOL_GPL vmlinux 0x2d4f4b3f serial8250_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0x2d503947 usb_get_hcd -EXPORT_SYMBOL_GPL vmlinux 0x2d5dc390 rdev_get_regmap +EXPORT_SYMBOL_GPL vmlinux 0x2d491e9c pci_device_group +EXPORT_SYMBOL_GPL vmlinux 0x2d5cc4a7 iommu_fwspec_free EXPORT_SYMBOL_GPL vmlinux 0x2d5f69b3 rcu_read_unlock_strict EXPORT_SYMBOL_GPL vmlinux 0x2d6aa0f0 arch_apei_enable_cmcff -EXPORT_SYMBOL_GPL vmlinux 0x2d711f09 wakeup_source_create -EXPORT_SYMBOL_GPL vmlinux 0x2d74e498 gnttab_unmap_refs_sync -EXPORT_SYMBOL_GPL vmlinux 0x2d7941fc pci_disable_pcie_error_reporting -EXPORT_SYMBOL_GPL vmlinux 0x2d81f9a0 gnttab_dma_alloc_pages +EXPORT_SYMBOL_GPL vmlinux 0x2d80160a efivar_entry_find EXPORT_SYMBOL_GPL vmlinux 0x2d89b1ad __SCT__tp_func_attach_device_to_domain -EXPORT_SYMBOL_GPL vmlinux 0x2da505be __irq_domain_add -EXPORT_SYMBOL_GPL vmlinux 0x2db08a53 regulator_get -EXPORT_SYMBOL_GPL vmlinux 0x2dbb3f01 mbox_chan_received_data -EXPORT_SYMBOL_GPL vmlinux 0x2dc3bc20 iommu_map -EXPORT_SYMBOL_GPL vmlinux 0x2dcb75d1 acpi_cppc_processor_probe -EXPORT_SYMBOL_GPL vmlinux 0x2de1de00 sysfs_groups_change_owner -EXPORT_SYMBOL_GPL vmlinux 0x2ded2987 pinctrl_utils_add_map_configs -EXPORT_SYMBOL_GPL vmlinux 0x2df0fea0 ohci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0x2d8ea96f vfs_kern_mount +EXPORT_SYMBOL_GPL vmlinux 0x2d8fcebd fscrypt_symlink_getattr +EXPORT_SYMBOL_GPL vmlinux 0x2dcb2401 relay_switch_subbuf +EXPORT_SYMBOL_GPL vmlinux 0x2dd4a6a7 watchdog_set_restart_priority +EXPORT_SYMBOL_GPL vmlinux 0x2dd64366 vfio_device_get_from_dev +EXPORT_SYMBOL_GPL vmlinux 0x2dd72ec2 __traceiter_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0x2dd7c4f8 blk_ksm_register +EXPORT_SYMBOL_GPL vmlinux 0x2df0baa9 unregister_acpi_bus_type EXPORT_SYMBOL_GPL vmlinux 0x2e028ae6 rcutorture_get_gp_data -EXPORT_SYMBOL_GPL vmlinux 0x2e05eafa fwnode_get_named_child_node EXPORT_SYMBOL_GPL vmlinux 0x2e08226d badrange_add +EXPORT_SYMBOL_GPL vmlinux 0x2e1a0953 irq_set_default_host EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace -EXPORT_SYMBOL_GPL vmlinux 0x2e2ddac8 tpm2_get_cc_attrs_tbl +EXPORT_SYMBOL_GPL vmlinux 0x2e2c9c36 kernel_read_file EXPORT_SYMBOL_GPL vmlinux 0x2e2df7f4 irq_remapping_cap -EXPORT_SYMBOL_GPL vmlinux 0x2e3a5605 fscrypt_prepare_symlink +EXPORT_SYMBOL_GPL vmlinux 0x2e34ff0c cros_ec_check_features +EXPORT_SYMBOL_GPL vmlinux 0x2e4b0d58 acpi_create_platform_device +EXPORT_SYMBOL_GPL vmlinux 0x2e4b1c1a gnttab_unmap_refs +EXPORT_SYMBOL_GPL vmlinux 0x2e54282a debugfs_create_x8 +EXPORT_SYMBOL_GPL vmlinux 0x2e567edf serial8250_rx_chars EXPORT_SYMBOL_GPL vmlinux 0x2e670427 sbitmap_queue_wake_all +EXPORT_SYMBOL_GPL vmlinux 0x2e6760d0 firmware_kobj EXPORT_SYMBOL_GPL vmlinux 0x2e678211 xas_find_conflict -EXPORT_SYMBOL_GPL vmlinux 0x2e6bf52e __auxiliary_device_add -EXPORT_SYMBOL_GPL vmlinux 0x2e7599f2 acpi_gpiochip_free_interrupts +EXPORT_SYMBOL_GPL vmlinux 0x2e688563 misc_cg_uncharge +EXPORT_SYMBOL_GPL vmlinux 0x2e766185 bpf_prog_create_from_user EXPORT_SYMBOL_GPL vmlinux 0x2e7a17d4 vmap_pfn -EXPORT_SYMBOL_GPL vmlinux 0x2e80b942 __traceiter_xdp_bulk_tx -EXPORT_SYMBOL_GPL vmlinux 0x2e83a3ca sched_trace_rq_avg_irq -EXPORT_SYMBOL_GPL vmlinux 0x2e88833b int_active_memcg -EXPORT_SYMBOL_GPL vmlinux 0x2e9e4d24 debugfs_create_file_size +EXPORT_SYMBOL_GPL vmlinux 0x2e7d0087 pm_runtime_force_suspend +EXPORT_SYMBOL_GPL vmlinux 0x2e85d437 pci_scan_child_bus +EXPORT_SYMBOL_GPL vmlinux 0x2e8ca627 usb_hcd_giveback_urb +EXPORT_SYMBOL_GPL vmlinux 0x2ea2036a gpiod_unexport +EXPORT_SYMBOL_GPL vmlinux 0x2eadf424 sdio_f0_readb +EXPORT_SYMBOL_GPL vmlinux 0x2eb6e8de dax_driver_unregister EXPORT_SYMBOL_GPL vmlinux 0x2ebb19fd execute_in_process_context EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable -EXPORT_SYMBOL_GPL vmlinux 0x2ec6ca8a subsys_dev_iter_init -EXPORT_SYMBOL_GPL vmlinux 0x2ed5a3ea cpufreq_driver_fast_switch -EXPORT_SYMBOL_GPL vmlinux 0x2ed7666b pwm_apply_state +EXPORT_SYMBOL_GPL vmlinux 0x2ebe86ba kthread_flush_worker +EXPORT_SYMBOL_GPL vmlinux 0x2ed6696e dev_attr_em_message EXPORT_SYMBOL_GPL vmlinux 0x2eda4807 is_uv_hubbed -EXPORT_SYMBOL_GPL vmlinux 0x2ee529ff __SCK__tp_func_sched_util_est_cfs_tp EXPORT_SYMBOL_GPL vmlinux 0x2ee7c52b btree_visitor -EXPORT_SYMBOL_GPL vmlinux 0x2eeadaf4 crypto_dequeue_request -EXPORT_SYMBOL_GPL vmlinux 0x2f0beb18 dma_get_required_mask -EXPORT_SYMBOL_GPL vmlinux 0x2f0c596b device_pm_wait_for_dev +EXPORT_SYMBOL_GPL vmlinux 0x2ef177bc acpi_dev_remove_driver_gpios +EXPORT_SYMBOL_GPL vmlinux 0x2ef24059 __tracepoint_sched_update_nr_running_tp +EXPORT_SYMBOL_GPL vmlinux 0x2f0a5044 usb_reset_endpoint EXPORT_SYMBOL_GPL vmlinux 0x2f0d9053 usb_otg_state_string -EXPORT_SYMBOL_GPL vmlinux 0x2f0fd32c genphy_c45_an_config_aneg -EXPORT_SYMBOL_GPL vmlinux 0x2f1025c0 pm_runtime_set_memalloc_noio -EXPORT_SYMBOL_GPL vmlinux 0x2f1d36fc genphy_c45_read_mdix -EXPORT_SYMBOL_GPL vmlinux 0x2f25ae03 regulator_set_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x2f160b9a nf_checksum +EXPORT_SYMBOL_GPL vmlinux 0x2f21446d phy_power_off +EXPORT_SYMBOL_GPL vmlinux 0x2f24e9e2 clk_bulk_get_optional EXPORT_SYMBOL_GPL vmlinux 0x2f2c95c4 flush_work EXPORT_SYMBOL_GPL vmlinux 0x2f4880df static_key_slow_dec -EXPORT_SYMBOL_GPL vmlinux 0x2f6325fa regulator_suspend_enable +EXPORT_SYMBOL_GPL vmlinux 0x2f581620 alloc_empty_file +EXPORT_SYMBOL_GPL vmlinux 0x2f637c79 power_supply_set_battery_charged EXPORT_SYMBOL_GPL vmlinux 0x2f64415f unregister_acpi_hed_notifier -EXPORT_SYMBOL_GPL vmlinux 0x2f6f30bd i2c_dw_prepare_clk -EXPORT_SYMBOL_GPL vmlinux 0x2f6f8a38 regulator_set_suspend_voltage -EXPORT_SYMBOL_GPL vmlinux 0x2f767459 pm_generic_thaw_noirq +EXPORT_SYMBOL_GPL vmlinux 0x2f6928c4 pci_get_dsn EXPORT_SYMBOL_GPL vmlinux 0x2f8fd89d xas_split_alloc +EXPORT_SYMBOL_GPL vmlinux 0x2f99fe62 posix_acl_create +EXPORT_SYMBOL_GPL vmlinux 0x2f9ec63a blk_abort_request +EXPORT_SYMBOL_GPL vmlinux 0x2fa70bc2 register_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x2fa99bde percpu_up_write +EXPORT_SYMBOL_GPL vmlinux 0x2fb21811 __tracepoint_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0x2fb63054 devlink_param_unregister EXPORT_SYMBOL_GPL vmlinux 0x2fc1e0fe kmem_valid_obj -EXPORT_SYMBOL_GPL vmlinux 0x2fe6acfa pm_clk_suspend -EXPORT_SYMBOL_GPL vmlinux 0x3009c538 switchdev_handle_port_obj_del -EXPORT_SYMBOL_GPL vmlinux 0x300bf28f blk_rq_unprep_clone -EXPORT_SYMBOL_GPL vmlinux 0x30164f0b ksm_madvise -EXPORT_SYMBOL_GPL vmlinux 0x30375cdc __page_file_index -EXPORT_SYMBOL_GPL vmlinux 0x3048805d xfrm_audit_state_replay_overflow +EXPORT_SYMBOL_GPL vmlinux 0x2fc7934a ata_sff_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x2fe64b12 usb_asmedia_modifyflowcontrol +EXPORT_SYMBOL_GPL vmlinux 0x3008b27f __tracepoint_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0x301ae970 thermal_zone_bind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0x302e9398 mmc_send_status EXPORT_SYMBOL_GPL vmlinux 0x3061cfce ring_buffer_entries_cpu -EXPORT_SYMBOL_GPL vmlinux 0x307e617f vfio_pci_core_err_handlers -EXPORT_SYMBOL_GPL vmlinux 0x308b8a7f crypto_stats_aead_encrypt -EXPORT_SYMBOL_GPL vmlinux 0x3090c047 gnttab_unmap_refs -EXPORT_SYMBOL_GPL vmlinux 0x30911653 pci_find_next_ht_capability -EXPORT_SYMBOL_GPL vmlinux 0x30b26230 ip_local_out -EXPORT_SYMBOL_GPL vmlinux 0x30bbf35a __blkg_prfill_rwstat -EXPORT_SYMBOL_GPL vmlinux 0x30c9a74f tpm1_getcap -EXPORT_SYMBOL_GPL vmlinux 0x30ceb489 ethnl_cable_test_alloc +EXPORT_SYMBOL_GPL vmlinux 0x30759c10 phy_resolve_aneg_pause +EXPORT_SYMBOL_GPL vmlinux 0x30792b83 edac_mc_free +EXPORT_SYMBOL_GPL vmlinux 0x3087a641 tpm_pm_resume +EXPORT_SYMBOL_GPL vmlinux 0x30a0642b scsi_internal_device_unblock_nowait +EXPORT_SYMBOL_GPL vmlinux 0x30a1498b do_splice_to +EXPORT_SYMBOL_GPL vmlinux 0x30b6c6e7 debugfs_create_regset32 +EXPORT_SYMBOL_GPL vmlinux 0x30c04651 netlink_has_listeners +EXPORT_SYMBOL_GPL vmlinux 0x30c8128b __page_file_mapping EXPORT_SYMBOL_GPL vmlinux 0x30cf804f slow_virt_to_phys +EXPORT_SYMBOL_GPL vmlinux 0x30d26cc6 usb_free_coherent +EXPORT_SYMBOL_GPL vmlinux 0x30d3cc58 iommu_device_sysfs_add +EXPORT_SYMBOL_GPL vmlinux 0x30d7d696 crypto_grab_shash EXPORT_SYMBOL_GPL vmlinux 0x30e1ec25 apei_map_generic_address -EXPORT_SYMBOL_GPL vmlinux 0x30ef950a dma_free_noncontiguous -EXPORT_SYMBOL_GPL vmlinux 0x30f0dbb5 evict_inodes -EXPORT_SYMBOL_GPL vmlinux 0x30fe1272 sysfs_update_groups +EXPORT_SYMBOL_GPL vmlinux 0x30e3bc54 blk_mq_pci_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x30eecbcd fsverity_file_open +EXPORT_SYMBOL_GPL vmlinux 0x30fe3f33 screen_pos EXPORT_SYMBOL_GPL vmlinux 0x31019477 __ftrace_vbprintk -EXPORT_SYMBOL_GPL vmlinux 0x310d0b8c usb_reset_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x3109d8fe inet6_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x311101df dma_resv_get_fences EXPORT_SYMBOL_GPL vmlinux 0x31128b8e hv_remove_kexec_handler -EXPORT_SYMBOL_GPL vmlinux 0x3113dce3 gpiod_direction_output -EXPORT_SYMBOL_GPL vmlinux 0x311f631f spi_slave_abort -EXPORT_SYMBOL_GPL vmlinux 0x3120617c dw_pcie_upconfig_setup -EXPORT_SYMBOL_GPL vmlinux 0x3120d464 ata_qc_complete_multiple -EXPORT_SYMBOL_GPL vmlinux 0x3124f48f thp_get_unmapped_area +EXPORT_SYMBOL_GPL vmlinux 0x3115b6a2 acpi_dma_request_slave_chan_by_name +EXPORT_SYMBOL_GPL vmlinux 0x31230dd0 __netpoll_free EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave -EXPORT_SYMBOL_GPL vmlinux 0x3128819f ncsi_unregister_dev -EXPORT_SYMBOL_GPL vmlinux 0x31488799 dma_buf_mmap -EXPORT_SYMBOL_GPL vmlinux 0x315313a0 ata_bmdma32_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x316228e7 irq_domain_free_irqs_common +EXPORT_SYMBOL_GPL vmlinux 0x313c2943 disk_update_readahead +EXPORT_SYMBOL_GPL vmlinux 0x314536d8 irq_domain_xlate_twocell +EXPORT_SYMBOL_GPL vmlinux 0x3151179b usb_autopm_put_interface_no_suspend +EXPORT_SYMBOL_GPL vmlinux 0x31566e31 cpufreq_driver_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0x315f1f1b sysfs_remove_files +EXPORT_SYMBOL_GPL vmlinux 0x3161e2a6 _copy_mc_to_iter EXPORT_SYMBOL_GPL vmlinux 0x3165daa3 arbitrary_virt_to_machine EXPORT_SYMBOL_GPL vmlinux 0x31706316 __SCT__tp_func_error_report_end EXPORT_SYMBOL_GPL vmlinux 0x31839ad3 software_node_register_nodes -EXPORT_SYMBOL_GPL vmlinux 0x3185160d skb_gso_validate_mac_len -EXPORT_SYMBOL_GPL vmlinux 0x31867943 tcp_enter_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0x3189a871 device_link_remove EXPORT_SYMBOL_GPL vmlinux 0x3192d768 cpufreq_remove_update_util_hook +EXPORT_SYMBOL_GPL vmlinux 0x31959534 regulator_map_voltage_pickable_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x319782ba fscrypt_ioctl_remove_key EXPORT_SYMBOL_GPL vmlinux 0x3198bd55 __SCT__tp_func_detach_device_from_domain -EXPORT_SYMBOL_GPL vmlinux 0x319c0785 tty_get_icount +EXPORT_SYMBOL_GPL vmlinux 0x31a23a36 msg_zerocopy_alloc EXPORT_SYMBOL_GPL vmlinux 0x31a95e8b ring_buffer_record_enable_cpu -EXPORT_SYMBOL_GPL vmlinux 0x31b475db regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x31b4d99e ata_common_sdev_attrs +EXPORT_SYMBOL_GPL vmlinux 0x31b8394b regulator_get_hardware_vsel_register EXPORT_SYMBOL_GPL vmlinux 0x31c7970f pciserial_suspend_ports +EXPORT_SYMBOL_GPL vmlinux 0x31d3c89b usb_get_status EXPORT_SYMBOL_GPL vmlinux 0x31dca4d8 gnttab_claim_grant_reference -EXPORT_SYMBOL_GPL vmlinux 0x31ef572b pci_epc_destroy -EXPORT_SYMBOL_GPL vmlinux 0x31f32de9 mddev_resume -EXPORT_SYMBOL_GPL vmlinux 0x31fc7f56 __pci_hp_register -EXPORT_SYMBOL_GPL vmlinux 0x31fe408a rtc_class_close -EXPORT_SYMBOL_GPL vmlinux 0x32061239 rtnl_link_register -EXPORT_SYMBOL_GPL vmlinux 0x3209a5de debugfs_create_regset32 -EXPORT_SYMBOL_GPL vmlinux 0x321917c8 attribute_container_unregister -EXPORT_SYMBOL_GPL vmlinux 0x321b2b34 rio_unmap_inb_region -EXPORT_SYMBOL_GPL vmlinux 0x32217214 devm_release_action +EXPORT_SYMBOL_GPL vmlinux 0x31ee6c07 set_selection_kernel +EXPORT_SYMBOL_GPL vmlinux 0x31f0b13a __reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x3200b12e ohci_resume +EXPORT_SYMBOL_GPL vmlinux 0x32172004 acpi_dev_get_resources +EXPORT_SYMBOL_GPL vmlinux 0x32189e39 usb_put_intf EXPORT_SYMBOL_GPL vmlinux 0x3224b2a9 mpi_read_raw_from_sgl -EXPORT_SYMBOL_GPL vmlinux 0x322eb90a ata_sff_softreset -EXPORT_SYMBOL_GPL vmlinux 0x324244c9 crypto_alg_extsize -EXPORT_SYMBOL_GPL vmlinux 0x3268b220 __rio_local_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x322e7e23 regmap_async_complete_cb +EXPORT_SYMBOL_GPL vmlinux 0x32441de9 dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0x32451990 __tracepoint_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0x324ca3a2 crypto_unregister_acomp EXPORT_SYMBOL_GPL vmlinux 0x326cefe5 hwpoison_filter_dev_minor -EXPORT_SYMBOL_GPL vmlinux 0x3275184e devm_regmap_add_irq_chip EXPORT_SYMBOL_GPL vmlinux 0x327a2687 bind_evtchn_to_irq_lateeoi +EXPORT_SYMBOL_GPL vmlinux 0x327c774f __devm_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x32840cdf ata_pci_device_resume EXPORT_SYMBOL_GPL vmlinux 0x328e3354 __memcpy_flushcache -EXPORT_SYMBOL_GPL vmlinux 0x32969c75 fuse_dev_operations EXPORT_SYMBOL_GPL vmlinux 0x32ab06cc irq_percpu_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0x32b882a8 kthread_queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0x32b15260 ata_bmdma_port_start +EXPORT_SYMBOL_GPL vmlinux 0x32b9ea4d of_icc_get_from_provider EXPORT_SYMBOL_GPL vmlinux 0x32bc0fcf preempt_notifier_dec EXPORT_SYMBOL_GPL vmlinux 0x32c2bb04 list_lru_walk_node EXPORT_SYMBOL_GPL vmlinux 0x32c3cb4e class_compat_register -EXPORT_SYMBOL_GPL vmlinux 0x32cc3398 klp_get_state -EXPORT_SYMBOL_GPL vmlinux 0x32d029af sock_diag_register_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0x32c4f741 init_dummy_netdev +EXPORT_SYMBOL_GPL vmlinux 0x32cb0f52 pwm_put +EXPORT_SYMBOL_GPL vmlinux 0x32cc884e usb_hcd_check_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0x32d33370 edac_mc_alloc +EXPORT_SYMBOL_GPL vmlinux 0x32d957f9 anon_inode_getfile +EXPORT_SYMBOL_GPL vmlinux 0x32da9a26 devm_kstrdup_const +EXPORT_SYMBOL_GPL vmlinux 0x32dc31da devlink_dpipe_table_resource_set EXPORT_SYMBOL_GPL vmlinux 0x32e3b076 mxcsr_feature_mask EXPORT_SYMBOL_GPL vmlinux 0x32e4d1e0 sgx_virt_ecreate -EXPORT_SYMBOL_GPL vmlinux 0x32f20d9e subsys_dev_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0x32f63080 sata_async_notification +EXPORT_SYMBOL_GPL vmlinux 0x32efc5b8 tcp_twsk_destructor EXPORT_SYMBOL_GPL vmlinux 0x330010b6 cpuset_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x3300bd3b regulator_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x331555c1 __sync_filesystem -EXPORT_SYMBOL_GPL vmlinux 0x3353104c pci_hp_remove_module_link -EXPORT_SYMBOL_GPL vmlinux 0x3354bf58 dma_resv_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x3301dab0 fsstack_copy_inode_size +EXPORT_SYMBOL_GPL vmlinux 0x33030178 md_allow_write +EXPORT_SYMBOL_GPL vmlinux 0x331560c0 gnttab_dma_alloc_pages +EXPORT_SYMBOL_GPL vmlinux 0x3318f664 gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0x334fd472 vfs_listxattr EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0x335e7e79 devm_memunmap_pages EXPORT_SYMBOL_GPL vmlinux 0x3362b03c xen_p2m_size -EXPORT_SYMBOL_GPL vmlinux 0x336e4fb2 platform_get_resource_byname -EXPORT_SYMBOL_GPL vmlinux 0x33781a27 gpiod_get_raw_array_value -EXPORT_SYMBOL_GPL vmlinux 0x339c755e pci_epc_clear_bar -EXPORT_SYMBOL_GPL vmlinux 0x33c0df49 regmap_get_raw_write_max -EXPORT_SYMBOL_GPL vmlinux 0x33c0f385 pci_set_host_bridge_release -EXPORT_SYMBOL_GPL vmlinux 0x33db51c7 scsi_dh_activate -EXPORT_SYMBOL_GPL vmlinux 0x33f0f7a7 fib_alias_hw_flags_set -EXPORT_SYMBOL_GPL vmlinux 0x33fe0db9 edac_mc_find_csrow_by_page -EXPORT_SYMBOL_GPL vmlinux 0x3405351a phy_optional_get -EXPORT_SYMBOL_GPL vmlinux 0x340b47f6 __rio_local_write_config_8 -EXPORT_SYMBOL_GPL vmlinux 0x34146c82 dev_attr_unload_heads -EXPORT_SYMBOL_GPL vmlinux 0x341dfe9e mnt_drop_write -EXPORT_SYMBOL_GPL vmlinux 0x341eebe8 pcie_flr -EXPORT_SYMBOL_GPL vmlinux 0x3421cf94 bsg_register_queue -EXPORT_SYMBOL_GPL vmlinux 0x3422c7c6 irq_create_of_mapping -EXPORT_SYMBOL_GPL vmlinux 0x34297397 inet6_destroy_sock +EXPORT_SYMBOL_GPL vmlinux 0x336ecfa9 vfio_device_put +EXPORT_SYMBOL_GPL vmlinux 0x337e0094 usb_autopm_put_interface_async +EXPORT_SYMBOL_GPL vmlinux 0x33899049 transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x339b551e pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x33a2326f devm_pm_opp_set_regulators +EXPORT_SYMBOL_GPL vmlinux 0x33a85e67 __efivar_entry_iter +EXPORT_SYMBOL_GPL vmlinux 0x33b3f5f2 rio_request_mport_dma +EXPORT_SYMBOL_GPL vmlinux 0x33d6e866 fwnode_get_named_child_node +EXPORT_SYMBOL_GPL vmlinux 0x33dbb777 extcon_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x33dc4dca __tracepoint_br_fdb_update +EXPORT_SYMBOL_GPL vmlinux 0x33dd7cbf __tracepoint_neigh_update +EXPORT_SYMBOL_GPL vmlinux 0x33eb5c02 watchdog_init_timeout +EXPORT_SYMBOL_GPL vmlinux 0x33fe7601 add_swap_extent +EXPORT_SYMBOL_GPL vmlinux 0x34100937 phy_put +EXPORT_SYMBOL_GPL vmlinux 0x34325833 dev_pm_opp_get_freq EXPORT_SYMBOL_GPL vmlinux 0x34331f04 acpi_os_unmap_memory +EXPORT_SYMBOL_GPL vmlinux 0x34350afc mmu_interval_notifier_insert_locked +EXPORT_SYMBOL_GPL vmlinux 0x3436ea08 crypto_alg_mod_lookup EXPORT_SYMBOL_GPL vmlinux 0x343953c4 poll_state_synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0x343fa84d sdio_retune_release EXPORT_SYMBOL_GPL vmlinux 0x34407691 crypto_has_ahash EXPORT_SYMBOL_GPL vmlinux 0x344361a1 kdb_register EXPORT_SYMBOL_GPL vmlinux 0x344a2c84 iomap_dio_complete EXPORT_SYMBOL_GPL vmlinux 0x3450ad94 mpi_set_ui -EXPORT_SYMBOL_GPL vmlinux 0x34588e0c xenbus_probe_devices -EXPORT_SYMBOL_GPL vmlinux 0x3459d9cd __SCK__tp_func_neigh_update -EXPORT_SYMBOL_GPL vmlinux 0x347f31ab dev_pm_get_subsys_data -EXPORT_SYMBOL_GPL vmlinux 0x348243eb to_nvdimm_bus -EXPORT_SYMBOL_GPL vmlinux 0x3483ea4e pci_epc_add_epf -EXPORT_SYMBOL_GPL vmlinux 0x34a7cf70 kthread_queue_work -EXPORT_SYMBOL_GPL vmlinux 0x34b07da1 scsi_internal_device_block_nowait -EXPORT_SYMBOL_GPL vmlinux 0x34da4b15 iommu_sva_get_pasid +EXPORT_SYMBOL_GPL vmlinux 0x3452a531 switchdev_port_obj_del +EXPORT_SYMBOL_GPL vmlinux 0x345d15bd put_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x345e5dd5 sk_clear_memalloc +EXPORT_SYMBOL_GPL vmlinux 0x34638f78 fib_add_nexthop +EXPORT_SYMBOL_GPL vmlinux 0x3466ce63 x86_msi_msg_get_destid +EXPORT_SYMBOL_GPL vmlinux 0x346789df pci_check_and_unmask_intx +EXPORT_SYMBOL_GPL vmlinux 0x346ae42c usb_hub_release_port +EXPORT_SYMBOL_GPL vmlinux 0x3470a596 led_blink_set +EXPORT_SYMBOL_GPL vmlinux 0x34911f45 devlink_param_register +EXPORT_SYMBOL_GPL vmlinux 0x34b2d02c nvdimm_setup_pfn +EXPORT_SYMBOL_GPL vmlinux 0x34b811d3 irq_chip_enable_parent +EXPORT_SYMBOL_GPL vmlinux 0x34bd31d4 crypto_unregister_templates +EXPORT_SYMBOL_GPL vmlinux 0x34d21d7a bpf_map_inc +EXPORT_SYMBOL_GPL vmlinux 0x34d6db03 cpufreq_dbs_governor_start +EXPORT_SYMBOL_GPL vmlinux 0x34d9582d usb_hub_clear_tt_buffer +EXPORT_SYMBOL_GPL vmlinux 0x34e17acb led_trigger_write EXPORT_SYMBOL_GPL vmlinux 0x34eab46d bind_evtchn_to_irqhandler -EXPORT_SYMBOL_GPL vmlinux 0x34f1c069 edac_pci_release_generic_ctl -EXPORT_SYMBOL_GPL vmlinux 0x34fc6697 gpiod_set_value_cansleep EXPORT_SYMBOL_GPL vmlinux 0x350f6ce5 tasklet_unlock_wait +EXPORT_SYMBOL_GPL vmlinux 0x350f8ed9 scsi_internal_device_block_nowait +EXPORT_SYMBOL_GPL vmlinux 0x35114251 gen10g_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0x35258b22 fib_nl_newrule EXPORT_SYMBOL_GPL vmlinux 0x352b3813 maxim_charger_calc_reg_current +EXPORT_SYMBOL_GPL vmlinux 0x352c2f95 da903x_clr_bits EXPORT_SYMBOL_GPL vmlinux 0x352ec68b bpf_offload_dev_destroy -EXPORT_SYMBOL_GPL vmlinux 0x352fd689 crypto_register_kpp -EXPORT_SYMBOL_GPL vmlinux 0x353f2f2b skb_defer_rx_timestamp -EXPORT_SYMBOL_GPL vmlinux 0x3540d64c iommu_unmap_fast -EXPORT_SYMBOL_GPL vmlinux 0x355b1f20 thermal_zone_get_zone_by_name +EXPORT_SYMBOL_GPL vmlinux 0x353a72a6 ata_pci_sff_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0x353f9a1f proc_create_net_data_write +EXPORT_SYMBOL_GPL vmlinux 0x35460ae7 balloon_page_alloc +EXPORT_SYMBOL_GPL vmlinux 0x3553a1b5 gnttab_dma_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x355a6bb2 acpi_dev_resume EXPORT_SYMBOL_GPL vmlinux 0x355bc89a klist_next -EXPORT_SYMBOL_GPL vmlinux 0x355fe812 encrypt_blob -EXPORT_SYMBOL_GPL vmlinux 0x35662228 ata_sff_tf_load -EXPORT_SYMBOL_GPL vmlinux 0x3566859d gpiod_set_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0x35652883 iommu_device_register EXPORT_SYMBOL_GPL vmlinux 0x3567743b vfio_external_user_iommu_id EXPORT_SYMBOL_GPL vmlinux 0x356d09a1 unregister_kprobes -EXPORT_SYMBOL_GPL vmlinux 0x356da7e8 xen_remap_pfn +EXPORT_SYMBOL_GPL vmlinux 0x35752fef vfio_register_group_dev EXPORT_SYMBOL_GPL vmlinux 0x358ff60f twl_get_hfclk_rate -EXPORT_SYMBOL_GPL vmlinux 0x35a160be do_unregister_con_driver -EXPORT_SYMBOL_GPL vmlinux 0x35c44687 md_rdev_clear -EXPORT_SYMBOL_GPL vmlinux 0x35c8ce09 pci_test_config_bits +EXPORT_SYMBOL_GPL vmlinux 0x359567a7 usb_alloc_coherent +EXPORT_SYMBOL_GPL vmlinux 0x35b7e47c class_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x35b89fdc sbitmap_bitmap_show +EXPORT_SYMBOL_GPL vmlinux 0x35c73174 sdio_unregister_driver EXPORT_SYMBOL_GPL vmlinux 0x35d3dc46 crypto_alg_sem -EXPORT_SYMBOL_GPL vmlinux 0x35d4bcfa usb_alloc_streams -EXPORT_SYMBOL_GPL vmlinux 0x35e20da2 lwtunnel_input -EXPORT_SYMBOL_GPL vmlinux 0x35eed174 da9052_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0x35dcca6e crypto_req_done +EXPORT_SYMBOL_GPL vmlinux 0x35e8409a fat_detach EXPORT_SYMBOL_GPL vmlinux 0x35f43770 __clk_hw_register_gate +EXPORT_SYMBOL_GPL vmlinux 0x35f9f281 fib_rules_seq_read EXPORT_SYMBOL_GPL vmlinux 0x36075bb5 iommu_group_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x360c87b7 gpiochip_find -EXPORT_SYMBOL_GPL vmlinux 0x360f33df icc_provider_add -EXPORT_SYMBOL_GPL vmlinux 0x36154ef6 acpi_dma_request_slave_chan_by_index EXPORT_SYMBOL_GPL vmlinux 0x36173c1d phys_to_target_node -EXPORT_SYMBOL_GPL vmlinux 0x3622223c dev_pm_genpd_set_next_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x3618f93d crypto_alloc_tfm_node EXPORT_SYMBOL_GPL vmlinux 0x36242943 switchdev_deferred_process -EXPORT_SYMBOL_GPL vmlinux 0x36272a0f ethnl_cable_test_finished -EXPORT_SYMBOL_GPL vmlinux 0x36345bd0 serial8250_rpm_get -EXPORT_SYMBOL_GPL vmlinux 0x3648df5d fat_flush_inodes -EXPORT_SYMBOL_GPL vmlinux 0x364b1d49 fuse_abort_conn -EXPORT_SYMBOL_GPL vmlinux 0x364d6825 __SCK__tp_func_mc_event -EXPORT_SYMBOL_GPL vmlinux 0x365c0cdd ata_pio_need_iordy -EXPORT_SYMBOL_GPL vmlinux 0x366a6569 dma_buf_attach -EXPORT_SYMBOL_GPL vmlinux 0x366afd98 usb_hub_claim_port -EXPORT_SYMBOL_GPL vmlinux 0x368ece87 pci_dev_lock -EXPORT_SYMBOL_GPL vmlinux 0x369fb1c8 __SCK__tp_func_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0x3631d6fa usb_deregister +EXPORT_SYMBOL_GPL vmlinux 0x3634d707 regulator_set_voltage +EXPORT_SYMBOL_GPL vmlinux 0x365005a6 blk_mq_quiesce_queue +EXPORT_SYMBOL_GPL vmlinux 0x366436df usb_clear_halt +EXPORT_SYMBOL_GPL vmlinux 0x368e8a0d ata_host_register +EXPORT_SYMBOL_GPL vmlinux 0x36907679 set_task_ioprio +EXPORT_SYMBOL_GPL vmlinux 0x369847c5 sk_msg_alloc EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot -EXPORT_SYMBOL_GPL vmlinux 0x36a901c1 blkcg_root_css -EXPORT_SYMBOL_GPL vmlinux 0x36aee6a1 iommu_uapi_sva_bind_gpasid EXPORT_SYMBOL_GPL vmlinux 0x36b5497e intel_iommu_enabled -EXPORT_SYMBOL_GPL vmlinux 0x36c558f6 nfs42_ssc_unregister -EXPORT_SYMBOL_GPL vmlinux 0x36f3c160 icc_node_create +EXPORT_SYMBOL_GPL vmlinux 0x36c5133b __traceiter_tcp_bad_csum +EXPORT_SYMBOL_GPL vmlinux 0x36ca0c4b crypto_alloc_sync_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x36d038b4 md_find_rdev_rcu +EXPORT_SYMBOL_GPL vmlinux 0x36da62d5 pci_epf_alloc_space +EXPORT_SYMBOL_GPL vmlinux 0x36e35fda iommu_register_device_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0x36f0c205 __SCK__tp_func_block_split +EXPORT_SYMBOL_GPL vmlinux 0x36f3f4c8 loop_backing_file +EXPORT_SYMBOL_GPL vmlinux 0x36f48fb5 of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0x36f8e339 linear_hugepage_index +EXPORT_SYMBOL_GPL vmlinux 0x370a1d8c __tracepoint_pelt_se_tp EXPORT_SYMBOL_GPL vmlinux 0x37169f79 cpu_latency_qos_update_request -EXPORT_SYMBOL_GPL vmlinux 0x3722e179 virtqueue_get_vring +EXPORT_SYMBOL_GPL vmlinux 0x372395ad get_governor_parent_kobj +EXPORT_SYMBOL_GPL vmlinux 0x37257465 devm_clk_bulk_get EXPORT_SYMBOL_GPL vmlinux 0x372cfd6e gnttab_end_foreign_access -EXPORT_SYMBOL_GPL vmlinux 0x372efe8c bus_remove_file -EXPORT_SYMBOL_GPL vmlinux 0x3735ac92 dev_pm_opp_put_supported_hw +EXPORT_SYMBOL_GPL vmlinux 0x3739cf89 __traceiter_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0x37407993 mmc_crypto_setup_queue EXPORT_SYMBOL_GPL vmlinux 0x374c53e1 ata_get_cmd_descript EXPORT_SYMBOL_GPL vmlinux 0x3750d770 erst_read +EXPORT_SYMBOL_GPL vmlinux 0x375df2ba __fscrypt_prepare_lookup +EXPORT_SYMBOL_GPL vmlinux 0x375e2a50 pm_generic_suspend_late EXPORT_SYMBOL_GPL vmlinux 0x3763f509 kobject_rename -EXPORT_SYMBOL_GPL vmlinux 0x37679c6b tpm_tis_resume +EXPORT_SYMBOL_GPL vmlinux 0x37643318 device_rename +EXPORT_SYMBOL_GPL vmlinux 0x3768d956 sched_set_normal EXPORT_SYMBOL_GPL vmlinux 0x377bbcbc pm_suspend_target_state -EXPORT_SYMBOL_GPL vmlinux 0x378f7067 vfio_unregister_group_dev EXPORT_SYMBOL_GPL vmlinux 0x37914025 xenbus_write -EXPORT_SYMBOL_GPL vmlinux 0x3797412e ethnl_cable_test_fault_length +EXPORT_SYMBOL_GPL vmlinux 0x37a02f24 dev_pm_opp_unregister_set_opp_helper +EXPORT_SYMBOL_GPL vmlinux 0x37ae17ed of_phy_simple_xlate EXPORT_SYMBOL_GPL vmlinux 0x37bf7be3 percpu_ref_exit -EXPORT_SYMBOL_GPL vmlinux 0x37cea0d2 nfs_ssc_unregister -EXPORT_SYMBOL_GPL vmlinux 0x37e27cac __kthread_init_worker -EXPORT_SYMBOL_GPL vmlinux 0x37ed6a33 power_supply_changed -EXPORT_SYMBOL_GPL vmlinux 0x37f182c6 __SCK__tp_func_block_split +EXPORT_SYMBOL_GPL vmlinux 0x37ca3630 fsverity_cleanup_inode +EXPORT_SYMBOL_GPL vmlinux 0x37da1dfb zap_vma_ptes EXPORT_SYMBOL_GPL vmlinux 0x37f292c4 pmc_atom_write -EXPORT_SYMBOL_GPL vmlinux 0x37fe992e __rio_local_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x37fd21cc device_destroy EXPORT_SYMBOL_GPL vmlinux 0x3801776b __ioread32_copy EXPORT_SYMBOL_GPL vmlinux 0x38268b62 icc_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0x382d3c4e device_release_driver +EXPORT_SYMBOL_GPL vmlinux 0x382e4f07 ata_sff_softreset +EXPORT_SYMBOL_GPL vmlinux 0x382f612a badblocks_set EXPORT_SYMBOL_GPL vmlinux 0x38374815 clear_selection -EXPORT_SYMBOL_GPL vmlinux 0x383fdcf2 iommu_detach_device -EXPORT_SYMBOL_GPL vmlinux 0x38449724 tpm_tis_core_init -EXPORT_SYMBOL_GPL vmlinux 0x384936f2 dev_pm_qos_expose_latency_limit -EXPORT_SYMBOL_GPL vmlinux 0x3860620a bus_create_file -EXPORT_SYMBOL_GPL vmlinux 0x3862ee57 regmap_mmio_attach_clk EXPORT_SYMBOL_GPL vmlinux 0x3866e217 nvmem_device_write -EXPORT_SYMBOL_GPL vmlinux 0x3868ce0b devm_serdev_device_open EXPORT_SYMBOL_GPL vmlinux 0x38708e25 inet_peer_base_init EXPORT_SYMBOL_GPL vmlinux 0x38722f80 kernel_fpu_end -EXPORT_SYMBOL_GPL vmlinux 0x38725f40 mctrl_gpio_init_noauto -EXPORT_SYMBOL_GPL vmlinux 0x3898836f msi_desc_to_pci_sysdata +EXPORT_SYMBOL_GPL vmlinux 0x3875c3b6 bd_unlink_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0x388ad7c9 ata_sff_dev_select +EXPORT_SYMBOL_GPL vmlinux 0x3896b249 dma_free_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x3899b36d pcie_flr EXPORT_SYMBOL_GPL vmlinux 0x389b64a2 static_key_count EXPORT_SYMBOL_GPL vmlinux 0x38aa1397 gpiod_add_lookup_table -EXPORT_SYMBOL_GPL vmlinux 0x38adbf1a wakeup_source_unregister -EXPORT_SYMBOL_GPL vmlinux 0x38b186e7 scsi_build_sense +EXPORT_SYMBOL_GPL vmlinux 0x38b110b4 is_virtio_device EXPORT_SYMBOL_GPL vmlinux 0x38b6a890 __SCT__tp_func_sched_util_est_cfs_tp -EXPORT_SYMBOL_GPL vmlinux 0x38b6ae58 fwnode_find_reference EXPORT_SYMBOL_GPL vmlinux 0x38c3ff30 freq_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x38cbfb74 tcp_rate_check_app_limited +EXPORT_SYMBOL_GPL vmlinux 0x38ce8771 lwtunnel_cmp_encap EXPORT_SYMBOL_GPL vmlinux 0x38d324db srcu_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0x38de12e4 fib_nexthop_info +EXPORT_SYMBOL_GPL vmlinux 0x38da466e fixed_phy_set_link_update EXPORT_SYMBOL_GPL vmlinux 0x38e1fde7 mpi_set EXPORT_SYMBOL_GPL vmlinux 0x38e5bc5a clk_set_rate_range -EXPORT_SYMBOL_GPL vmlinux 0x390a2924 dev_pm_opp_set_rate -EXPORT_SYMBOL_GPL vmlinux 0x39147f61 devm_clk_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0x396c2720 bpf_prog_inc_not_zero -EXPORT_SYMBOL_GPL vmlinux 0x3975c23d devfreq_event_set_event -EXPORT_SYMBOL_GPL vmlinux 0x39992adb usb_deregister +EXPORT_SYMBOL_GPL vmlinux 0x38fc8041 pm_genpd_add_device +EXPORT_SYMBOL_GPL vmlinux 0x3933cae2 crypto_mod_put +EXPORT_SYMBOL_GPL vmlinux 0x393dfc08 __irq_resolve_mapping +EXPORT_SYMBOL_GPL vmlinux 0x39421ffd xdp_return_frame_rx_napi +EXPORT_SYMBOL_GPL vmlinux 0x3942a036 xen_remap_vma_range +EXPORT_SYMBOL_GPL vmlinux 0x39471a60 __traceiter_neigh_cleanup_and_release +EXPORT_SYMBOL_GPL vmlinux 0x39484941 regulator_list_voltage_pickable_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x3957500c dmaengine_desc_get_metadata_ptr +EXPORT_SYMBOL_GPL vmlinux 0x396c5e6f fb_deferred_io_open +EXPORT_SYMBOL_GPL vmlinux 0x396ddfe8 fwnode_graph_get_next_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x397f2ccd device_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0x399626db device_add_properties EXPORT_SYMBOL_GPL vmlinux 0x399eda0f sbitmap_add_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0x39a1475a edac_device_handle_ue_count EXPORT_SYMBOL_GPL vmlinux 0x39a7affc driver_deferred_probe_timeout -EXPORT_SYMBOL_GPL vmlinux 0x39a7bfdd __percpu_init_rwsem EXPORT_SYMBOL_GPL vmlinux 0x39aa4888 usb_role_string -EXPORT_SYMBOL_GPL vmlinux 0x39b46f03 sata_pmp_qc_defer_cmd_switch -EXPORT_SYMBOL_GPL vmlinux 0x39bab5d7 gov_attr_set_init -EXPORT_SYMBOL_GPL vmlinux 0x39be2467 regmap_multi_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x39c66a62 pinctrl_get -EXPORT_SYMBOL_GPL vmlinux 0x39d10ef8 ata_sas_port_suspend +EXPORT_SYMBOL_GPL vmlinux 0x39ba0462 device_get_dma_attr EXPORT_SYMBOL_GPL vmlinux 0x39ded098 rdma_cgrp_subsys_enabled_key EXPORT_SYMBOL_GPL vmlinux 0x39ded14f __SCT__tp_func_unmap -EXPORT_SYMBOL_GPL vmlinux 0x39e2d406 usb_hcd_start_port_resume -EXPORT_SYMBOL_GPL vmlinux 0x39f876f9 phy_modify_mmd -EXPORT_SYMBOL_GPL vmlinux 0x39f9e781 __traceiter_neigh_cleanup_and_release -EXPORT_SYMBOL_GPL vmlinux 0x39fd2131 __SCK__tp_func_sched_cpu_capacity_tp -EXPORT_SYMBOL_GPL vmlinux 0x3a20f0bf virtqueue_add_outbuf +EXPORT_SYMBOL_GPL vmlinux 0x39e164e6 pinctrl_utils_add_config +EXPORT_SYMBOL_GPL vmlinux 0x39ea9942 __pci_epc_create +EXPORT_SYMBOL_GPL vmlinux 0x39f30753 sdio_f0_writeb +EXPORT_SYMBOL_GPL vmlinux 0x39f3dfd1 cgroup_path_ns +EXPORT_SYMBOL_GPL vmlinux 0x39f6afc0 bsg_job_done +EXPORT_SYMBOL_GPL vmlinux 0x3a01ba42 alloc_skb_for_msg +EXPORT_SYMBOL_GPL vmlinux 0x3a08d710 debugfs_create_u64 +EXPORT_SYMBOL_GPL vmlinux 0x3a17f7d4 rcu_read_unlock_trace_special +EXPORT_SYMBOL_GPL vmlinux 0x3a195e0b bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3a1c2e7d crypto_register_rng +EXPORT_SYMBOL_GPL vmlinux 0x3a1f0011 devlink_params_register EXPORT_SYMBOL_GPL vmlinux 0x3a24fb2f percpu_ref_resurrect EXPORT_SYMBOL_GPL vmlinux 0x3a26ed11 sched_clock -EXPORT_SYMBOL_GPL vmlinux 0x3a27d0d7 sysfs_add_file_to_group -EXPORT_SYMBOL_GPL vmlinux 0x3a295718 devm_regmap_field_alloc -EXPORT_SYMBOL_GPL vmlinux 0x3a2b95fe __tracepoint_neigh_update_done -EXPORT_SYMBOL_GPL vmlinux 0x3a31db43 pm_generic_restore_early -EXPORT_SYMBOL_GPL vmlinux 0x3a36d83e blk_trace_remove -EXPORT_SYMBOL_GPL vmlinux 0x3a37e9fe devm_clk_hw_register_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0x3a4894d6 usb_ep0_reinit +EXPORT_SYMBOL_GPL vmlinux 0x3a2b145f sched_set_fifo_low +EXPORT_SYMBOL_GPL vmlinux 0x3a2e9d1f crypto_grab_spawn +EXPORT_SYMBOL_GPL vmlinux 0x3a45a419 pci_enable_pcie_error_reporting 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 0x3a5cab28 devm_led_classdev_register_ext -EXPORT_SYMBOL_GPL vmlinux 0x3a664ea2 show_class_attr_string -EXPORT_SYMBOL_GPL vmlinux 0x3a6f38b3 file_ra_state_init -EXPORT_SYMBOL_GPL vmlinux 0x3a7940e1 pinctrl_register_and_init +EXPORT_SYMBOL_GPL vmlinux 0x3a639555 device_add +EXPORT_SYMBOL_GPL vmlinux 0x3a6d00cc sysfs_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x3a711953 synth_event_create EXPORT_SYMBOL_GPL vmlinux 0x3a7d80f9 xen_max_p2m_pfn -EXPORT_SYMBOL_GPL vmlinux 0x3a830934 dst_cache_get_ip4 -EXPORT_SYMBOL_GPL vmlinux 0x3a83c91a __devm_clk_hw_register_mux -EXPORT_SYMBOL_GPL vmlinux 0x3a84b451 nvdimm_clear_poison +EXPORT_SYMBOL_GPL vmlinux 0x3a8813ac pm_generic_freeze_late EXPORT_SYMBOL_GPL vmlinux 0x3a8bbb8e trace_clock_jiffies -EXPORT_SYMBOL_GPL vmlinux 0x3a99c494 spi_finalize_current_transfer +EXPORT_SYMBOL_GPL vmlinux 0x3a8f9e8c thermal_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x3a9286df shmem_read_mapping_page_gfp EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial -EXPORT_SYMBOL_GPL vmlinux 0x3a9de9e4 handle_irq_desc -EXPORT_SYMBOL_GPL vmlinux 0x3aa9ef30 noop_invalidatepage -EXPORT_SYMBOL_GPL vmlinux 0x3aab579e __tracepoint_detach_device_from_domain -EXPORT_SYMBOL_GPL vmlinux 0x3ab09cd7 power_supply_set_battery_charged -EXPORT_SYMBOL_GPL vmlinux 0x3ab5ada5 pinctrl_enable -EXPORT_SYMBOL_GPL vmlinux 0x3abd87c0 dma_buf_detach +EXPORT_SYMBOL_GPL vmlinux 0x3a9f1345 led_classdev_resume +EXPORT_SYMBOL_GPL vmlinux 0x3aa3e9ea ata_host_activate EXPORT_SYMBOL_GPL vmlinux 0x3ac3feba rhltable_init EXPORT_SYMBOL_GPL vmlinux 0x3acdf325 twl4030_audio_enable_resource -EXPORT_SYMBOL_GPL vmlinux 0x3ade528f blk_queue_rq_timeout -EXPORT_SYMBOL_GPL vmlinux 0x3af18409 blk_mq_quiesce_queue_nowait +EXPORT_SYMBOL_GPL vmlinux 0x3ad3185c pci_restore_msi_state +EXPORT_SYMBOL_GPL vmlinux 0x3ad58691 ping_err +EXPORT_SYMBOL_GPL vmlinux 0x3ad764df fsnotify_alloc_group EXPORT_SYMBOL_GPL vmlinux 0x3af578f5 hyperv_report_panic -EXPORT_SYMBOL_GPL vmlinux 0x3b1171e7 usb_hcd_pci_probe -EXPORT_SYMBOL_GPL vmlinux 0x3b25d9d3 __SCK__tp_func_neigh_event_send_dead -EXPORT_SYMBOL_GPL vmlinux 0x3b26ab6d vfio_pci_register_dev_region -EXPORT_SYMBOL_GPL vmlinux 0x3b2cc719 __pm_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0x3b3b21e5 __xenmem_reservation_va_mapping_update +EXPORT_SYMBOL_GPL vmlinux 0x3b051014 devm_init_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x3b0e48d4 acpiphp_register_attention +EXPORT_SYMBOL_GPL vmlinux 0x3b13377b usb_get_dr_mode +EXPORT_SYMBOL_GPL vmlinux 0x3b280eb6 evm_verifyxattr +EXPORT_SYMBOL_GPL vmlinux 0x3b499172 mmu_notifier_get_locked EXPORT_SYMBOL_GPL vmlinux 0x3b4c240a display_timings_release -EXPORT_SYMBOL_GPL vmlinux 0x3b74f57c spi_write_then_read -EXPORT_SYMBOL_GPL vmlinux 0x3b7fbba2 ping_rcv -EXPORT_SYMBOL_GPL vmlinux 0x3b836eea fib_nh_common_release +EXPORT_SYMBOL_GPL vmlinux 0x3b4dc50e sysfs_unmerge_group +EXPORT_SYMBOL_GPL vmlinux 0x3b527659 badblocks_store +EXPORT_SYMBOL_GPL vmlinux 0x3b738f80 tty_buffer_lock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x3b7a7163 __static_call_return0 EXPORT_SYMBOL_GPL vmlinux 0x3b8979ea gnttab_grant_foreign_transfer_ref +EXPORT_SYMBOL_GPL vmlinux 0x3b8f446f scsi_eh_ready_devs EXPORT_SYMBOL_GPL vmlinux 0x3b91db5b intel_pt_handle_vmx -EXPORT_SYMBOL_GPL vmlinux 0x3b933bc9 ata_link_online EXPORT_SYMBOL_GPL vmlinux 0x3b95f543 klp_shadow_free EXPORT_SYMBOL_GPL vmlinux 0x3ba01b47 get_compat_sigset -EXPORT_SYMBOL_GPL vmlinux 0x3ba7291e ata_sas_port_start -EXPORT_SYMBOL_GPL vmlinux 0x3bb6e8a6 __skb_tstamp_tx -EXPORT_SYMBOL_GPL vmlinux 0x3bb778bb wakeup_source_remove -EXPORT_SYMBOL_GPL vmlinux 0x3bc0ce2f fixed_phy_register -EXPORT_SYMBOL_GPL vmlinux 0x3bc7bc05 pcie_update_link_speed +EXPORT_SYMBOL_GPL vmlinux 0x3ba3bef3 pm_generic_freeze +EXPORT_SYMBOL_GPL vmlinux 0x3bd35ac8 xenbus_dev_error EXPORT_SYMBOL_GPL vmlinux 0x3bdb5d28 alg_test -EXPORT_SYMBOL_GPL vmlinux 0x3be9bed3 tpm_pm_suspend -EXPORT_SYMBOL_GPL vmlinux 0x3beb883d acpi_subsys_poweroff -EXPORT_SYMBOL_GPL vmlinux 0x3bec5689 rcuwait_wake_up -EXPORT_SYMBOL_GPL vmlinux 0x3bf0bba0 blk_ksm_init_passthrough EXPORT_SYMBOL_GPL vmlinux 0x3bf17755 mpi_read_buffer -EXPORT_SYMBOL_GPL vmlinux 0x3bf4859f __kernel_write -EXPORT_SYMBOL_GPL vmlinux 0x3c02e993 spi_res_add -EXPORT_SYMBOL_GPL vmlinux 0x3c0c45c0 dma_buf_dynamic_attach +EXPORT_SYMBOL_GPL vmlinux 0x3c01c573 pktgen_xfrm_outer_mode_output +EXPORT_SYMBOL_GPL vmlinux 0x3c0c55a7 user_update EXPORT_SYMBOL_GPL vmlinux 0x3c0e8050 hyperv_pcpu_input_arg -EXPORT_SYMBOL_GPL vmlinux 0x3c1b4b48 transport_destroy_device EXPORT_SYMBOL_GPL vmlinux 0x3c1c3725 rcu_fwd_progress_check -EXPORT_SYMBOL_GPL vmlinux 0x3c3576ac md_rdev_init -EXPORT_SYMBOL_GPL vmlinux 0x3c35c317 user_update -EXPORT_SYMBOL_GPL vmlinux 0x3c3a6b58 platform_get_irq_optional -EXPORT_SYMBOL_GPL vmlinux 0x3c3cf851 devlink_port_attrs_pci_sf_set -EXPORT_SYMBOL_GPL vmlinux 0x3c46bb7b blk_mq_pci_map_queues -EXPORT_SYMBOL_GPL vmlinux 0x3c4c6bac badblocks_init -EXPORT_SYMBOL_GPL vmlinux 0x3c528645 dm_per_bio_data -EXPORT_SYMBOL_GPL vmlinux 0x3c556ba6 ata_wait_register +EXPORT_SYMBOL_GPL vmlinux 0x3c36cc90 pci_rescan_bus +EXPORT_SYMBOL_GPL vmlinux 0x3c38cdf0 dev_pm_disable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x3c3f5a58 crypto_shash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x3c4494a3 adp5520_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x3c4afaa9 debugfs_create_u8 +EXPORT_SYMBOL_GPL vmlinux 0x3c58837c l3mdev_master_upper_ifindex_by_index_rcu EXPORT_SYMBOL_GPL vmlinux 0x3c5d543a hrtimer_start_range_ns EXPORT_SYMBOL_GPL vmlinux 0x3c681dc4 ring_buffer_record_disable -EXPORT_SYMBOL_GPL vmlinux 0x3c789566 pm_stay_awake -EXPORT_SYMBOL_GPL vmlinux 0x3c7dc38d lp8788_read_byte -EXPORT_SYMBOL_GPL vmlinux 0x3c9c5485 pm_genpd_remove_subdomain -EXPORT_SYMBOL_GPL vmlinux 0x3ca1ff02 regulator_bulk_disable -EXPORT_SYMBOL_GPL vmlinux 0x3ca269a8 ptp_parse_header -EXPORT_SYMBOL_GPL vmlinux 0x3ca2a967 ata_sff_drain_fifo +EXPORT_SYMBOL_GPL vmlinux 0x3c875051 regmap_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0x3c9447e0 __ata_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x3cab9525 __SCK__tp_func_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x3cbc3121 pm_generic_resume_early EXPORT_SYMBOL_GPL vmlinux 0x3cc07be9 pv_info -EXPORT_SYMBOL_GPL vmlinux 0x3cc31ca9 fwnode_get_name +EXPORT_SYMBOL_GPL vmlinux 0x3cc2a351 dev_coredumpsg 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 0x3ce650fd phy_10gbit_features -EXPORT_SYMBOL_GPL vmlinux 0x3d1673e6 relay_flush -EXPORT_SYMBOL_GPL vmlinux 0x3d2b0a87 ata_do_dev_read_id -EXPORT_SYMBOL_GPL vmlinux 0x3d2f2038 usb_create_shared_hcd +EXPORT_SYMBOL_GPL vmlinux 0x3cefd444 clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0x3d1fb01f sata_std_hardreset EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end +EXPORT_SYMBOL_GPL vmlinux 0x3d42a900 acpi_bus_trim EXPORT_SYMBOL_GPL vmlinux 0x3d510a7b rcu_jiffies_till_stall_check -EXPORT_SYMBOL_GPL vmlinux 0x3d51545b sock_gen_put -EXPORT_SYMBOL_GPL vmlinux 0x3d54e9fe bsg_job_done -EXPORT_SYMBOL_GPL vmlinux 0x3d5b1fd3 cgroup_get_from_path -EXPORT_SYMBOL_GPL vmlinux 0x3d7022a2 intel_pmic_install_opregion_handler -EXPORT_SYMBOL_GPL vmlinux 0x3d83ebbc sata_sff_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x3d662fa4 wbc_detach_inode +EXPORT_SYMBOL_GPL vmlinux 0x3d7e84a2 crypto_register_skciphers EXPORT_SYMBOL_GPL vmlinux 0x3d8baf3b zs_huge_class_size EXPORT_SYMBOL_GPL vmlinux 0x3d8f29cc srcutorture_get_gp_data EXPORT_SYMBOL_GPL vmlinux 0x3d9bbf75 wwan_port_txon -EXPORT_SYMBOL_GPL vmlinux 0x3da9fd09 handle_level_irq +EXPORT_SYMBOL_GPL vmlinux 0x3da8172e fuse_direct_io EXPORT_SYMBOL_GPL vmlinux 0x3daa2540 nf_hooks_lwtunnel_enabled +EXPORT_SYMBOL_GPL vmlinux 0x3daefb4a pci_enable_ats EXPORT_SYMBOL_GPL vmlinux 0x3db48927 sbitmap_any_bit_set -EXPORT_SYMBOL_GPL vmlinux 0x3db8076a intel_pinctrl_probe_by_hid -EXPORT_SYMBOL_GPL vmlinux 0x3dbe4c33 fscrypt_prepare_new_inode -EXPORT_SYMBOL_GPL vmlinux 0x3dc03d2f tcp_bpf_update_proto -EXPORT_SYMBOL_GPL vmlinux 0x3dd15958 led_compose_name -EXPORT_SYMBOL_GPL vmlinux 0x3ddd0341 gpiod_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x3ddf9c12 nvmem_device_find +EXPORT_SYMBOL_GPL vmlinux 0x3db807d3 xfrm_audit_state_icvfail +EXPORT_SYMBOL_GPL vmlinux 0x3dc0bc84 nexthop_select_path +EXPORT_SYMBOL_GPL vmlinux 0x3dcfd4ff skcipher_walk_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x3ddd8e1a fuse_sync_release +EXPORT_SYMBOL_GPL vmlinux 0x3ddf608e dev_pm_qos_expose_flags EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final EXPORT_SYMBOL_GPL vmlinux 0x3df82d00 mce_log -EXPORT_SYMBOL_GPL vmlinux 0x3e035cea regulator_allow_bypass -EXPORT_SYMBOL_GPL vmlinux 0x3e039b39 gpiod_set_raw_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x3e2955cf dev_pm_genpd_resume -EXPORT_SYMBOL_GPL vmlinux 0x3e2fbdec gpiochip_unlock_as_irq -EXPORT_SYMBOL_GPL vmlinux 0x3e359b83 device_get_child_node_count -EXPORT_SYMBOL_GPL vmlinux 0x3e5af61c __traceiter_block_split -EXPORT_SYMBOL_GPL vmlinux 0x3e656c42 md_find_rdev_rcu +EXPORT_SYMBOL_GPL vmlinux 0x3e33abb1 ata_acpi_cbl_80wire +EXPORT_SYMBOL_GPL vmlinux 0x3e34265d ata_acpi_gtm +EXPORT_SYMBOL_GPL vmlinux 0x3e3e8db9 led_stop_software_blink +EXPORT_SYMBOL_GPL vmlinux 0x3e411fce irq_chip_mask_parent +EXPORT_SYMBOL_GPL vmlinux 0x3e4832b4 preempt_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3e51c405 sk_psock_tls_strp_read +EXPORT_SYMBOL_GPL vmlinux 0x3e52302f rio_dev_put EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer +EXPORT_SYMBOL_GPL vmlinux 0x3e88be73 sata_link_debounce +EXPORT_SYMBOL_GPL vmlinux 0x3ea36902 xenbus_register_driver_common EXPORT_SYMBOL_GPL vmlinux 0x3ea5196d apei_osc_setup -EXPORT_SYMBOL_GPL vmlinux 0x3eb40600 device_get_named_child_node -EXPORT_SYMBOL_GPL vmlinux 0x3ebfa687 __SCK__tp_func_cpu_frequency +EXPORT_SYMBOL_GPL vmlinux 0x3eaa855c blk_revalidate_disk_zones +EXPORT_SYMBOL_GPL vmlinux 0x3eaa91d7 dw_pcie_ep_linkup +EXPORT_SYMBOL_GPL vmlinux 0x3eb261d7 i2c_adapter_type EXPORT_SYMBOL_GPL vmlinux 0x3ec93255 hv_get_isolation_type EXPORT_SYMBOL_GPL vmlinux 0x3ecbce4e find_iova -EXPORT_SYMBOL_GPL vmlinux 0x3ecedc06 l3mdev_link_scope_lookup -EXPORT_SYMBOL_GPL vmlinux 0x3ed3eb8e uart_handle_cts_change -EXPORT_SYMBOL_GPL vmlinux 0x3ee07acb do_xdp_generic +EXPORT_SYMBOL_GPL vmlinux 0x3eef5ea7 platform_msi_domain_free_irqs EXPORT_SYMBOL_GPL vmlinux 0x3ef051c8 crypto_inc -EXPORT_SYMBOL_GPL vmlinux 0x3ef33e0f i2c_generic_scl_recovery -EXPORT_SYMBOL_GPL vmlinux 0x3ef46f5b transport_class_register -EXPORT_SYMBOL_GPL vmlinux 0x3ef4ec90 vga_default_device -EXPORT_SYMBOL_GPL vmlinux 0x3efc2232 ip6_dst_lookup -EXPORT_SYMBOL_GPL vmlinux 0x3efc94a7 vp_modern_get_driver_features EXPORT_SYMBOL_GPL vmlinux 0x3efd1889 dax_direct_access +EXPORT_SYMBOL_GPL vmlinux 0x3f0942e6 bpf_redirect_info +EXPORT_SYMBOL_GPL vmlinux 0x3f0e7e3f clk_hw_get_parent_index +EXPORT_SYMBOL_GPL vmlinux 0x3f1ec31c crypto_skcipher_decrypt EXPORT_SYMBOL_GPL vmlinux 0x3f2092e3 fl6_update_dst +EXPORT_SYMBOL_GPL vmlinux 0x3f282da4 ping_close EXPORT_SYMBOL_GPL vmlinux 0x3f491f49 reset_control_bulk_reset -EXPORT_SYMBOL_GPL vmlinux 0x3f4b66da pciserial_init_ports -EXPORT_SYMBOL_GPL vmlinux 0x3f56a826 acpi_register_gsi -EXPORT_SYMBOL_GPL vmlinux 0x3f63eacf sock_diag_put_meminfo -EXPORT_SYMBOL_GPL vmlinux 0x3f6738a5 irq_domain_get_irq_data -EXPORT_SYMBOL_GPL vmlinux 0x3f70e437 iommu_enable_nesting -EXPORT_SYMBOL_GPL vmlinux 0x3f78069d nvdimm_blk_region_create -EXPORT_SYMBOL_GPL vmlinux 0x3f7ca61b gpiochip_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0x3f4dc610 find_mci_by_dev +EXPORT_SYMBOL_GPL vmlinux 0x3f5a70b5 vfio_pci_core_uninit_device +EXPORT_SYMBOL_GPL vmlinux 0x3f61efe1 find_vpid +EXPORT_SYMBOL_GPL vmlinux 0x3f6d989a pci_find_next_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x3f79f955 ata_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0x3f83c8e2 pingv6_ops EXPORT_SYMBOL_GPL vmlinux 0x3f84bcd7 dax_alive -EXPORT_SYMBOL_GPL vmlinux 0x3f8aa41b inet_csk_clone_lock EXPORT_SYMBOL_GPL vmlinux 0x3f8ab72e devlink_fmsg_bool_put -EXPORT_SYMBOL_GPL vmlinux 0x3f93d905 __tracepoint_br_fdb_update -EXPORT_SYMBOL_GPL vmlinux 0x3fa9aed7 blk_stat_enable_accounting +EXPORT_SYMBOL_GPL vmlinux 0x3f9e1b82 serial8250_get_port EXPORT_SYMBOL_GPL vmlinux 0x3fae6ab0 hv_vp_index -EXPORT_SYMBOL_GPL vmlinux 0x3fbec2b1 nf_route -EXPORT_SYMBOL_GPL vmlinux 0x3fdc4bb5 firmware_kobj +EXPORT_SYMBOL_GPL vmlinux 0x3fb1c59a unmap_mapping_pages +EXPORT_SYMBOL_GPL vmlinux 0x3fc5cf1b devm_clk_register +EXPORT_SYMBOL_GPL vmlinux 0x3fd055c0 pm_generic_restore EXPORT_SYMBOL_GPL vmlinux 0x3fe35aea irq_bypass_unregister_consumer EXPORT_SYMBOL_GPL vmlinux 0x3fe6c346 devlink_fmsg_binary_pair_put +EXPORT_SYMBOL_GPL vmlinux 0x3fea9d25 __devm_of_phy_provider_register EXPORT_SYMBOL_GPL vmlinux 0x3ff82085 public_key_signature_free EXPORT_SYMBOL_GPL vmlinux 0x3ffdacf3 timerqueue_iterate_next -EXPORT_SYMBOL_GPL vmlinux 0x400194dc platform_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x3fff973a netdev_set_default_ethtool_ops +EXPORT_SYMBOL_GPL vmlinux 0x40051f31 bpf_trace_run9 EXPORT_SYMBOL_GPL vmlinux 0x400a024b acpi_scan_lock_release +EXPORT_SYMBOL_GPL vmlinux 0x401f9842 devm_pm_opp_set_supported_hw EXPORT_SYMBOL_GPL vmlinux 0x40267068 usb_anchor_resume_wakeups +EXPORT_SYMBOL_GPL vmlinux 0x4038674e nvmem_cell_read_variable_le_u64 EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one -EXPORT_SYMBOL_GPL vmlinux 0x404308be isa_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x404256d2 security_path_rmdir EXPORT_SYMBOL_GPL vmlinux 0x4044ca16 pkcs7_verify -EXPORT_SYMBOL_GPL vmlinux 0x4049d1a5 sdio_enable_func -EXPORT_SYMBOL_GPL vmlinux 0x40500b94 vring_new_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0x405cade1 iomap_truncate_page EXPORT_SYMBOL_GPL vmlinux 0x4065d168 pm_print_active_wakeup_sources +EXPORT_SYMBOL_GPL vmlinux 0x4069583a platform_find_device_by_driver EXPORT_SYMBOL_GPL vmlinux 0x406c4cb1 hrtimer_resolution -EXPORT_SYMBOL_GPL vmlinux 0x406e4203 usb_hcd_unlink_urb_from_ep EXPORT_SYMBOL_GPL vmlinux 0x4071b517 out_of_line_wait_on_bit_timeout -EXPORT_SYMBOL_GPL vmlinux 0x40776a94 fscrypt_show_test_dummy_encryption EXPORT_SYMBOL_GPL vmlinux 0x407af304 usb_wait_anchor_empty_timeout -EXPORT_SYMBOL_GPL vmlinux 0x40858783 devlink_free +EXPORT_SYMBOL_GPL vmlinux 0x408bab45 regmap_field_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0x408d6f6b devm_nvmem_device_put +EXPORT_SYMBOL_GPL vmlinux 0x40945dbb nvdimm_blk_region_create +EXPORT_SYMBOL_GPL vmlinux 0x4099f1d5 xfrm_local_error EXPORT_SYMBOL_GPL vmlinux 0x4099f919 tun_ptr_free +EXPORT_SYMBOL_GPL vmlinux 0x409d9d69 platform_device_add_data EXPORT_SYMBOL_GPL vmlinux 0x40a0aafc __flush_tlb_all -EXPORT_SYMBOL_GPL vmlinux 0x40a35145 tps80031_ext_power_req_config -EXPORT_SYMBOL_GPL vmlinux 0x40af68f7 __SCK__tp_func_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0x40a0df88 dmi_kobj +EXPORT_SYMBOL_GPL vmlinux 0x40b25c41 __mmc_send_status +EXPORT_SYMBOL_GPL vmlinux 0x40be5863 inet6_hash EXPORT_SYMBOL_GPL vmlinux 0x40d349b6 sbitmap_queue_resize -EXPORT_SYMBOL_GPL vmlinux 0x40dc3ea4 sched_trace_cfs_rq_cpu +EXPORT_SYMBOL_GPL vmlinux 0x40d71bdf devm_of_led_get +EXPORT_SYMBOL_GPL vmlinux 0x40e1613f hwspin_lock_free EXPORT_SYMBOL_GPL vmlinux 0x40f0683e reset_control_put -EXPORT_SYMBOL_GPL vmlinux 0x40f809f7 pci_stop_root_bus -EXPORT_SYMBOL_GPL vmlinux 0x40f83640 dw_pcie_ep_linkup 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 0x41104c04 invalidate_inode_pages2_range -EXPORT_SYMBOL_GPL vmlinux 0x411ec13b ata_host_resume -EXPORT_SYMBOL_GPL vmlinux 0x411ffb08 i2c_dw_validate_speed -EXPORT_SYMBOL_GPL vmlinux 0x4124461b usb_alloc_coherent +EXPORT_SYMBOL_GPL vmlinux 0x4115af2a usb_phy_get_charger_current +EXPORT_SYMBOL_GPL vmlinux 0x4125415e ncsi_vlan_rx_kill_vid +EXPORT_SYMBOL_GPL vmlinux 0x41274b5f __traceiter_block_rq_insert EXPORT_SYMBOL_GPL vmlinux 0x4129f5ee kernel_fpu_begin_mask EXPORT_SYMBOL_GPL vmlinux 0x412bc681 ring_buffer_empty_cpu -EXPORT_SYMBOL_GPL vmlinux 0x412e5861 serdev_device_close +EXPORT_SYMBOL_GPL vmlinux 0x4140b25d rio_mport_send_doorbell +EXPORT_SYMBOL_GPL vmlinux 0x41486664 tcp_reno_undo_cwnd EXPORT_SYMBOL_GPL vmlinux 0x414d119a videomode_from_timings -EXPORT_SYMBOL_GPL vmlinux 0x4154378d cpuidle_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4174f856 devm_usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0x4163abf8 crypto_drop_spawn +EXPORT_SYMBOL_GPL vmlinux 0x4163eaea nf_queue_nf_hook_drop +EXPORT_SYMBOL_GPL vmlinux 0x41679807 rcuwait_wake_up +EXPORT_SYMBOL_GPL vmlinux 0x417438c3 blk_req_zone_write_trylock EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval -EXPORT_SYMBOL_GPL vmlinux 0x41821045 cpuidle_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x4183c744 regulator_get EXPORT_SYMBOL_GPL vmlinux 0x418873cc irq_bypass_register_producer -EXPORT_SYMBOL_GPL vmlinux 0x418b9718 gpiochip_free_own_desc -EXPORT_SYMBOL_GPL vmlinux 0x419055ac fat_getattr -EXPORT_SYMBOL_GPL vmlinux 0x41916a66 xhci_dbg_trace +EXPORT_SYMBOL_GPL vmlinux 0x418e50eb strp_done +EXPORT_SYMBOL_GPL vmlinux 0x418fca04 rtc_initialize_alarm EXPORT_SYMBOL_GPL vmlinux 0x419e7efd sfp_module_stop +EXPORT_SYMBOL_GPL vmlinux 0x41aacdec blk_mq_quiesce_queue_nowait EXPORT_SYMBOL_GPL vmlinux 0x41b7e8e2 register_kretprobe EXPORT_SYMBOL_GPL vmlinux 0x41b9a6e6 bsg_unregister_queue EXPORT_SYMBOL_GPL vmlinux 0x41bce49a ghes_register_vendor_record_notifier -EXPORT_SYMBOL_GPL vmlinux 0x41c3f1b1 debugfs_create_file_unsafe -EXPORT_SYMBOL_GPL vmlinux 0x41c4297c bpf_prog_free -EXPORT_SYMBOL_GPL vmlinux 0x41c6a825 pm_genpd_remove_device -EXPORT_SYMBOL_GPL vmlinux 0x41cb429a regulator_set_bypass_regmap -EXPORT_SYMBOL_GPL vmlinux 0x41e1dbd7 __traceiter_block_unplug -EXPORT_SYMBOL_GPL vmlinux 0x41ea05cf vfio_register_group_dev +EXPORT_SYMBOL_GPL vmlinux 0x41cec67a handle_untracked_irq +EXPORT_SYMBOL_GPL vmlinux 0x41deb482 crypto_unregister_instance EXPORT_SYMBOL_GPL vmlinux 0x41ed3cec eventfd_ctx_remove_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0x41f8ed6c led_trigger_register -EXPORT_SYMBOL_GPL vmlinux 0x41fcd640 xen_register_device_domain_owner +EXPORT_SYMBOL_GPL vmlinux 0x41fe6d0a fscrypt_show_test_dummy_encryption EXPORT_SYMBOL_GPL vmlinux 0x42041512 i2c_get_dma_safe_msg_buf +EXPORT_SYMBOL_GPL vmlinux 0x4206e8c2 devm_regmap_field_bulk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x4208d496 dma_can_mmap EXPORT_SYMBOL_GPL vmlinux 0x420f3d01 nvmem_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x42120176 skb_pull_rcsum -EXPORT_SYMBOL_GPL vmlinux 0x421f7d42 proc_create_net_single -EXPORT_SYMBOL_GPL vmlinux 0x4228555a mbox_request_channel_byname +EXPORT_SYMBOL_GPL vmlinux 0x42219dff devm_request_free_mem_region EXPORT_SYMBOL_GPL vmlinux 0x422e578a __SCT__tp_func_add_device_to_group -EXPORT_SYMBOL_GPL vmlinux 0x423ee58b dev_pm_opp_remove_table -EXPORT_SYMBOL_GPL vmlinux 0x4244011e devlink_port_region_create -EXPORT_SYMBOL_GPL vmlinux 0x42476c48 devm_hwspin_lock_free -EXPORT_SYMBOL_GPL vmlinux 0x42534b6d phy_pm_runtime_put -EXPORT_SYMBOL_GPL vmlinux 0x42592bbf __iptunnel_pull_header +EXPORT_SYMBOL_GPL vmlinux 0x4237c724 serial8250_rpm_get_tx +EXPORT_SYMBOL_GPL vmlinux 0x423dd7d9 device_show_bool +EXPORT_SYMBOL_GPL vmlinux 0x423f9bfd clk_hw_get_num_parents +EXPORT_SYMBOL_GPL vmlinux 0x424434cc regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x42557e6b securityfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0x425beace mmc_cmdq_disable +EXPORT_SYMBOL_GPL vmlinux 0x426159f1 __tracepoint_fdb_delete EXPORT_SYMBOL_GPL vmlinux 0x42635d55 pm_suspend_global_flags +EXPORT_SYMBOL_GPL vmlinux 0x42638acd fat_scan EXPORT_SYMBOL_GPL vmlinux 0x426452a3 acpi_evaluation_failure_warn -EXPORT_SYMBOL_GPL vmlinux 0x42686cdc irq_domain_free_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x427bbd7e debugfs_create_x64 EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active -EXPORT_SYMBOL_GPL vmlinux 0x428439b8 pci_load_and_free_saved_state -EXPORT_SYMBOL_GPL vmlinux 0x428a8265 devm_gpiod_get_from_of_node -EXPORT_SYMBOL_GPL vmlinux 0x42a90356 aead_geniv_alloc -EXPORT_SYMBOL_GPL vmlinux 0x42b3e287 __devm_irq_alloc_descs -EXPORT_SYMBOL_GPL vmlinux 0x42de3fca ata_link_abort +EXPORT_SYMBOL_GPL vmlinux 0x428e58b6 device_link_add +EXPORT_SYMBOL_GPL vmlinux 0x42922b30 dev_pm_opp_get_max_transition_latency +EXPORT_SYMBOL_GPL vmlinux 0x42939948 file_ra_state_init +EXPORT_SYMBOL_GPL vmlinux 0x42ab3d56 ata_cable_sata +EXPORT_SYMBOL_GPL vmlinux 0x42c1b967 input_ff_create +EXPORT_SYMBOL_GPL vmlinux 0x42cb9621 irq_chip_mask_ack_parent EXPORT_SYMBOL_GPL vmlinux 0x42de5b6b srcu_init_notifier_head -EXPORT_SYMBOL_GPL vmlinux 0x42e13b1f fwnode_create_software_node -EXPORT_SYMBOL_GPL vmlinux 0x42e1dc65 lp8788_read_multi_bytes -EXPORT_SYMBOL_GPL vmlinux 0x42e3129a badblocks_clear EXPORT_SYMBOL_GPL vmlinux 0x42e445f6 clk_mux_val_to_index +EXPORT_SYMBOL_GPL vmlinux 0x42e4da4d sdio_writel EXPORT_SYMBOL_GPL vmlinux 0x42e9d0da ring_buffer_unlock_commit -EXPORT_SYMBOL_GPL vmlinux 0x42f5ca2b dax_layout_busy_page_range +EXPORT_SYMBOL_GPL vmlinux 0x42f35687 attribute_container_find_class_device EXPORT_SYMBOL_GPL vmlinux 0x42f728aa mctrl_gpio_get_outputs -EXPORT_SYMBOL_GPL vmlinux 0x4307d8d8 usb_queue_reset_device EXPORT_SYMBOL_GPL vmlinux 0x430d88ec __traceiter_arm_event -EXPORT_SYMBOL_GPL vmlinux 0x4315c8f5 ncsi_vlan_rx_kill_vid -EXPORT_SYMBOL_GPL vmlinux 0x432b44e6 ethnl_cable_test_amplitude -EXPORT_SYMBOL_GPL vmlinux 0x4332121c crypto_register_ahashes -EXPORT_SYMBOL_GPL vmlinux 0x435646ec gpiochip_remove_pin_ranges +EXPORT_SYMBOL_GPL vmlinux 0x43223ce2 yield_to +EXPORT_SYMBOL_GPL vmlinux 0x432d0bc1 virtqueue_get_avail_addr +EXPORT_SYMBOL_GPL vmlinux 0x434851f8 devlink_port_params_unregister EXPORT_SYMBOL_GPL vmlinux 0x4357074b fpstate_clear_xstate_component -EXPORT_SYMBOL_GPL vmlinux 0x435a8b54 hwmon_device_unregister EXPORT_SYMBOL_GPL vmlinux 0x436d817f mpi_clear_bit +EXPORT_SYMBOL_GPL vmlinux 0x437027db elv_register EXPORT_SYMBOL_GPL vmlinux 0x437eb1df ipv6_mod_enabled -EXPORT_SYMBOL_GPL vmlinux 0x43884c0c __tracepoint_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0x4384ebd6 __kernel_write +EXPORT_SYMBOL_GPL vmlinux 0x438abfe3 tun_get_tx_ring EXPORT_SYMBOL_GPL vmlinux 0x438d8df2 iova_cache_get -EXPORT_SYMBOL_GPL vmlinux 0x438e0825 usb_sg_init -EXPORT_SYMBOL_GPL vmlinux 0x4398eabc blkcg_policy_unregister -EXPORT_SYMBOL_GPL vmlinux 0x439f1b49 phy_restore_page EXPORT_SYMBOL_GPL vmlinux 0x43aa319e lease_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x43bdbc66 device_get_dma_attr -EXPORT_SYMBOL_GPL vmlinux 0x43c1bfbe device_store_ulong -EXPORT_SYMBOL_GPL vmlinux 0x43c44125 md_start -EXPORT_SYMBOL_GPL vmlinux 0x43c49d83 __fsnotify_inode_delete -EXPORT_SYMBOL_GPL vmlinux 0x43d7a76a ping_err -EXPORT_SYMBOL_GPL vmlinux 0x43e98511 devm_phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0x43c1170d dev_pm_qos_flags +EXPORT_SYMBOL_GPL vmlinux 0x43c59cde isa_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x43c87888 msi_desc_to_pci_sysdata +EXPORT_SYMBOL_GPL vmlinux 0x43ced7ac dm_copy_name_and_uuid +EXPORT_SYMBOL_GPL vmlinux 0x43d1629f dma_async_device_channel_register EXPORT_SYMBOL_GPL vmlinux 0x43f56e82 ata_xfer_mode2shift EXPORT_SYMBOL_GPL vmlinux 0x43f81957 clk_round_rate EXPORT_SYMBOL_GPL vmlinux 0x43f92edd wait_for_initramfs -EXPORT_SYMBOL_GPL vmlinux 0x440114b0 dma_buf_put +EXPORT_SYMBOL_GPL vmlinux 0x43fc6d5c phy_pm_runtime_allow EXPORT_SYMBOL_GPL vmlinux 0x4401e6c2 mpi_cmpabs -EXPORT_SYMBOL_GPL vmlinux 0x4408dc26 __netpoll_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x440feafc skb_complete_wifi_ack -EXPORT_SYMBOL_GPL vmlinux 0x4417557a pinctrl_register -EXPORT_SYMBOL_GPL vmlinux 0x441cbcdc __class_create +EXPORT_SYMBOL_GPL vmlinux 0x44075bd5 regmap_exit +EXPORT_SYMBOL_GPL vmlinux 0x440831bb __netpoll_setup EXPORT_SYMBOL_GPL vmlinux 0x442deaa9 poll_state_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0x443229ef pcie_port_find_device -EXPORT_SYMBOL_GPL vmlinux 0x44493752 pm_generic_poweroff -EXPORT_SYMBOL_GPL vmlinux 0x44557182 vfs_test_lock EXPORT_SYMBOL_GPL vmlinux 0x445a09c0 nvmem_device_cell_write -EXPORT_SYMBOL_GPL vmlinux 0x445e489a crypto_spawn_tfm -EXPORT_SYMBOL_GPL vmlinux 0x44635611 gpiod_get_array_value -EXPORT_SYMBOL_GPL vmlinux 0x446d622c xenbus_watch_path -EXPORT_SYMBOL_GPL vmlinux 0x447f31de vchan_tx_submit +EXPORT_SYMBOL_GPL vmlinux 0x446a09a6 perf_aux_output_skip +EXPORT_SYMBOL_GPL vmlinux 0x4477a7d2 edac_pci_del_device EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe -EXPORT_SYMBOL_GPL vmlinux 0x44a8e800 fuse_dax_cancel_work +EXPORT_SYMBOL_GPL vmlinux 0x448c6089 tpm_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0x44995757 sysfs_merge_group +EXPORT_SYMBOL_GPL vmlinux 0x44a407ca memremap_pages +EXPORT_SYMBOL_GPL vmlinux 0x44b16f62 fwnode_graph_get_remote_port_parent EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x44be83ea PageHuge EXPORT_SYMBOL_GPL vmlinux 0x44cf8cf0 blk_zone_cond_str -EXPORT_SYMBOL_GPL vmlinux 0x44dada36 __fscrypt_prepare_link -EXPORT_SYMBOL_GPL vmlinux 0x44df5901 cpufreq_dbs_governor_stop +EXPORT_SYMBOL_GPL vmlinux 0x44d7e11b __tracepoint_unmap EXPORT_SYMBOL_GPL vmlinux 0x44e1e9aa balloon_stats -EXPORT_SYMBOL_GPL vmlinux 0x44f5f102 kthread_unpark -EXPORT_SYMBOL_GPL vmlinux 0x44f92313 __udp_enqueue_schedule_skb +EXPORT_SYMBOL_GPL vmlinux 0x44e8cf18 debugfs_read_file_bool +EXPORT_SYMBOL_GPL vmlinux 0x44f2017f nvdimm_cmd_mask EXPORT_SYMBOL_GPL vmlinux 0x450110e8 perf_assign_events EXPORT_SYMBOL_GPL vmlinux 0x4507f4a8 cpuhp_tasks_frozen -EXPORT_SYMBOL_GPL vmlinux 0x450e3e45 pci_epc_put -EXPORT_SYMBOL_GPL vmlinux 0x451032d6 device_store_bool -EXPORT_SYMBOL_GPL vmlinux 0x4510edb7 md_stop_writes -EXPORT_SYMBOL_GPL vmlinux 0x451a8652 page_cache_async_ra -EXPORT_SYMBOL_GPL vmlinux 0x451ad420 blkcg_deactivate_policy -EXPORT_SYMBOL_GPL vmlinux 0x451e1abd fsnotify_get_group -EXPORT_SYMBOL_GPL vmlinux 0x45216d27 pci_aer_clear_nonfatal_status EXPORT_SYMBOL_GPL vmlinux 0x4531624f usb_decode_ctrl EXPORT_SYMBOL_GPL vmlinux 0x4531ab62 copy_from_kernel_nofault +EXPORT_SYMBOL_GPL vmlinux 0x45365077 device_property_match_string EXPORT_SYMBOL_GPL vmlinux 0x4541fe0d mtrr_state +EXPORT_SYMBOL_GPL vmlinux 0x45446a4a sk_msg_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0x454dca58 __unwind_start +EXPORT_SYMBOL_GPL vmlinux 0x454df881 regulator_force_disable +EXPORT_SYMBOL_GPL vmlinux 0x454dfe74 set_primary_fwnode EXPORT_SYMBOL_GPL vmlinux 0x45558f56 clk_unregister_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0x45585473 kill_dev_dax +EXPORT_SYMBOL_GPL vmlinux 0x455e8ed2 fuse_dev_install +EXPORT_SYMBOL_GPL vmlinux 0x456c22a1 skb_zerocopy_iter_dgram +EXPORT_SYMBOL_GPL vmlinux 0x457227f9 blkg_conf_finish EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list +EXPORT_SYMBOL_GPL vmlinux 0x45805e19 wm8400_reset_codec_reg_cache +EXPORT_SYMBOL_GPL vmlinux 0x458f3aea clk_hw_get_parent_by_index +EXPORT_SYMBOL_GPL vmlinux 0x45934267 regulator_get_current_limit EXPORT_SYMBOL_GPL vmlinux 0x459e6151 mm_unaccount_pinned_pages -EXPORT_SYMBOL_GPL vmlinux 0x459edc0a __percpu_down_read -EXPORT_SYMBOL_GPL vmlinux 0x459f8deb dm_hold -EXPORT_SYMBOL_GPL vmlinux 0x45a67e11 alloc_page_buffers -EXPORT_SYMBOL_GPL vmlinux 0x45b3bffb regulator_count_voltages -EXPORT_SYMBOL_GPL vmlinux 0x45b7f667 irq_get_domain_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x45a0dbab device_attach +EXPORT_SYMBOL_GPL vmlinux 0x45b31dc1 gpiod_direction_input +EXPORT_SYMBOL_GPL vmlinux 0x45bc34dc blk_mq_queue_inflight +EXPORT_SYMBOL_GPL vmlinux 0x45cc46d9 icc_put +EXPORT_SYMBOL_GPL vmlinux 0x45d00a63 dm_get_queue_limits EXPORT_SYMBOL_GPL vmlinux 0x45d14bdf hypercall_page -EXPORT_SYMBOL_GPL vmlinux 0x45d1bf83 __traceiter_pelt_cfs_tp -EXPORT_SYMBOL_GPL vmlinux 0x45d298c2 iommu_unregister_device_fault_handler -EXPORT_SYMBOL_GPL vmlinux 0x45d303ae vfio_uninit_group_dev -EXPORT_SYMBOL_GPL vmlinux 0x45d6637d pci_user_write_config_dword -EXPORT_SYMBOL_GPL vmlinux 0x45d70675 devm_reset_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x45f96cb4 evm_verifyxattr +EXPORT_SYMBOL_GPL vmlinux 0x45e3bf50 handle_irq_desc +EXPORT_SYMBOL_GPL vmlinux 0x45e69b37 bpf_trace_run7 +EXPORT_SYMBOL_GPL vmlinux 0x45ec9bd2 dev_pm_opp_put_supported_hw +EXPORT_SYMBOL_GPL vmlinux 0x45f1ac84 usb_unpoison_urb EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue EXPORT_SYMBOL_GPL vmlinux 0x46030074 __hrtimer_get_remaining -EXPORT_SYMBOL_GPL vmlinux 0x46275d20 ata_pci_bmdma_clear_simplex -EXPORT_SYMBOL_GPL vmlinux 0x462d5561 wm831x_auxadc_read +EXPORT_SYMBOL_GPL vmlinux 0x4611fcc0 genphy_c45_read_mdix +EXPORT_SYMBOL_GPL vmlinux 0x4620b930 __irq_set_handler +EXPORT_SYMBOL_GPL vmlinux 0x4620d473 __tracepoint_br_fdb_external_learn_add +EXPORT_SYMBOL_GPL vmlinux 0x4625208d pci_epc_start EXPORT_SYMBOL_GPL vmlinux 0x463d8290 __irq_alloc_descs -EXPORT_SYMBOL_GPL vmlinux 0x46421531 inet6_lookup -EXPORT_SYMBOL_GPL vmlinux 0x46448702 devm_gpiod_unhinge -EXPORT_SYMBOL_GPL vmlinux 0x464be711 scsi_register_device_handler -EXPORT_SYMBOL_GPL vmlinux 0x465d3394 acpi_set_modalias -EXPORT_SYMBOL_GPL vmlinux 0x46610750 con_debug_enter -EXPORT_SYMBOL_GPL vmlinux 0x46643703 blk_mq_flush_busy_ctxs -EXPORT_SYMBOL_GPL vmlinux 0x467d4b3c devlink_trap_policers_register -EXPORT_SYMBOL_GPL vmlinux 0x46834230 __devm_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x465cd835 mbox_free_channel +EXPORT_SYMBOL_GPL vmlinux 0x46654997 encrypt_blob +EXPORT_SYMBOL_GPL vmlinux 0x466d87d0 dm_internal_suspend_noflush +EXPORT_SYMBOL_GPL vmlinux 0x467bb9c2 regulator_disable_deferred +EXPORT_SYMBOL_GPL vmlinux 0x467cce71 __traceiter_neigh_event_send_done EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4694f2c5 cpufreq_cpu_get +EXPORT_SYMBOL_GPL vmlinux 0x469141d6 crypto_enqueue_request_head +EXPORT_SYMBOL_GPL vmlinux 0x469aaf02 usb_match_id EXPORT_SYMBOL_GPL vmlinux 0x46a4b118 hrtimer_cancel EXPORT_SYMBOL_GPL vmlinux 0x46a6c9ef hv_get_tsc_page -EXPORT_SYMBOL_GPL vmlinux 0x46a70cb0 irq_domain_disconnect_hierarchy -EXPORT_SYMBOL_GPL vmlinux 0x46c33f25 fixed_phy_register_with_gpiod +EXPORT_SYMBOL_GPL vmlinux 0x46a9bd2c pci_num_vf +EXPORT_SYMBOL_GPL vmlinux 0x46ae4f76 pci_epf_bind +EXPORT_SYMBOL_GPL vmlinux 0x46be2347 vchan_tx_submit EXPORT_SYMBOL_GPL vmlinux 0x46c5be22 clk_multiplier_ops -EXPORT_SYMBOL_GPL vmlinux 0x46c689c7 ata_scsi_slave_config -EXPORT_SYMBOL_GPL vmlinux 0x46ca4171 fscrypt_ioctl_remove_key_all_users -EXPORT_SYMBOL_GPL vmlinux 0x46df4fcb __SCK__tp_func_neigh_event_send_done -EXPORT_SYMBOL_GPL vmlinux 0x46ee1fb4 devm_bitmap_alloc +EXPORT_SYMBOL_GPL vmlinux 0x46c880c3 xdp_return_frame +EXPORT_SYMBOL_GPL vmlinux 0x46de8bfe ata_sff_qc_fill_rtf +EXPORT_SYMBOL_GPL vmlinux 0x46dfcfc9 genphy_c45_check_and_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0x46ecc43c crypto_grab_aead EXPORT_SYMBOL_GPL vmlinux 0x46f42be0 devlink_fmsg_u8_put -EXPORT_SYMBOL_GPL vmlinux 0x46f73297 put_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0x46f77f03 metadata_dst_free_percpu -EXPORT_SYMBOL_GPL vmlinux 0x47030293 security_path_truncate -EXPORT_SYMBOL_GPL vmlinux 0x470e4231 scsi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x471256fa dm_internal_resume_fast +EXPORT_SYMBOL_GPL vmlinux 0x46fd2993 usb_hcd_is_primary_hcd +EXPORT_SYMBOL_GPL vmlinux 0x47035c29 bio_start_io_acct +EXPORT_SYMBOL_GPL vmlinux 0x47097005 task_cgroup_path +EXPORT_SYMBOL_GPL vmlinux 0x470c9d71 phy_get +EXPORT_SYMBOL_GPL vmlinux 0x470cb3d4 tty_port_tty_hangup +EXPORT_SYMBOL_GPL vmlinux 0x470edf3d power_supply_am_i_supplied +EXPORT_SYMBOL_GPL vmlinux 0x4719b8a2 pingv6_prot EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x47253287 param_set_uint_minmax +EXPORT_SYMBOL_GPL vmlinux 0x472ed8b4 register_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x47309d8f blk_queue_set_zoned +EXPORT_SYMBOL_GPL vmlinux 0x47369a57 devm_regulator_register +EXPORT_SYMBOL_GPL vmlinux 0x4757c99c crypto_stats_compress +EXPORT_SYMBOL_GPL vmlinux 0x47601649 ohci_suspend EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier -EXPORT_SYMBOL_GPL vmlinux 0x47642c49 gpiod_get -EXPORT_SYMBOL_GPL vmlinux 0x476522d9 pci_hp_destroy -EXPORT_SYMBOL_GPL vmlinux 0x4776b9f0 usb_role_switch_get +EXPORT_SYMBOL_GPL vmlinux 0x4767d833 fuse_conn_put +EXPORT_SYMBOL_GPL vmlinux 0x477b882c clk_hw_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x477da3aa fwnode_graph_get_endpoint_by_id EXPORT_SYMBOL_GPL vmlinux 0x47884890 system_power_efficient_wq EXPORT_SYMBOL_GPL vmlinux 0x478debf5 phy_10gbit_fec_features +EXPORT_SYMBOL_GPL vmlinux 0x478e2991 crypto_register_templates EXPORT_SYMBOL_GPL vmlinux 0x478e81f8 tcp_orphan_count -EXPORT_SYMBOL_GPL vmlinux 0x478f6c00 vchan_find_desc +EXPORT_SYMBOL_GPL vmlinux 0x478f2fc4 vfio_init_group_dev +EXPORT_SYMBOL_GPL vmlinux 0x47917da9 crypto_register_acomps EXPORT_SYMBOL_GPL vmlinux 0x4791cb91 apei_mce_report_mem_error -EXPORT_SYMBOL_GPL vmlinux 0x479ef1a3 xhci_drop_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x4794ec19 mbox_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x4797fac4 __platform_driver_register EXPORT_SYMBOL_GPL vmlinux 0x479f7d4b clk_bulk_disable -EXPORT_SYMBOL_GPL vmlinux 0x47a2709a tpm_default_chip EXPORT_SYMBOL_GPL vmlinux 0x47aad3b9 have_governor_per_policy +EXPORT_SYMBOL_GPL vmlinux 0x47bbc16b pci_epc_init_notify +EXPORT_SYMBOL_GPL vmlinux 0x47c8438d dw_pcie_wait_for_link EXPORT_SYMBOL_GPL vmlinux 0x47d0eea2 acpi_lpat_temp_to_raw -EXPORT_SYMBOL_GPL vmlinux 0x47d2778d dev_pm_qos_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0x47d31608 ohci_suspend -EXPORT_SYMBOL_GPL vmlinux 0x47d84c00 __fat_fs_error +EXPORT_SYMBOL_GPL vmlinux 0x47da3627 ata_pci_device_do_resume EXPORT_SYMBOL_GPL vmlinux 0x47de0dc7 clk_unregister_mux -EXPORT_SYMBOL_GPL vmlinux 0x47e4eaa1 device_add -EXPORT_SYMBOL_GPL vmlinux 0x47e67b74 tcp_reno_undo_cwnd EXPORT_SYMBOL_GPL vmlinux 0x480305ca kmsg_dump_rewind -EXPORT_SYMBOL_GPL vmlinux 0x48047de3 ata_bmdma_port_start32 -EXPORT_SYMBOL_GPL vmlinux 0x48123ccb blk_revalidate_disk_zones +EXPORT_SYMBOL_GPL vmlinux 0x480c03f4 ata_host_put +EXPORT_SYMBOL_GPL vmlinux 0x481629d8 devm_gpiod_put EXPORT_SYMBOL_GPL vmlinux 0x481f9b7d mpi_mulm EXPORT_SYMBOL_GPL vmlinux 0x4828e77b acpi_scan_lock_acquire -EXPORT_SYMBOL_GPL vmlinux 0x484a7224 usb_hcd_setup_local_mem -EXPORT_SYMBOL_GPL vmlinux 0x48547601 crypto_aead_setkey -EXPORT_SYMBOL_GPL vmlinux 0x48556707 debugfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0x483b066e devm_i2c_add_adapter +EXPORT_SYMBOL_GPL vmlinux 0x48495e1e adp5520_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x484c8002 trace_put_event_file EXPORT_SYMBOL_GPL vmlinux 0x486dedc3 ghes_unregister_vendor_record_notifier -EXPORT_SYMBOL_GPL vmlinux 0x487349d8 i2c_dw_probe_master -EXPORT_SYMBOL_GPL vmlinux 0x487a3077 ata_host_detach -EXPORT_SYMBOL_GPL vmlinux 0x48805457 device_remove_software_node -EXPORT_SYMBOL_GPL vmlinux 0x4897d3d3 devres_remove -EXPORT_SYMBOL_GPL vmlinux 0x4897ff19 subsys_find_device_by_id +EXPORT_SYMBOL_GPL vmlinux 0x486ee08b phy_set_media +EXPORT_SYMBOL_GPL vmlinux 0x4870e73f dev_pm_opp_set_regulators +EXPORT_SYMBOL_GPL vmlinux 0x487ba4f2 aead_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x48857e0f __SCK__tp_func_non_standard_event EXPORT_SYMBOL_GPL vmlinux 0x48a3a923 pkcs7_get_content_data EXPORT_SYMBOL_GPL vmlinux 0x48a3d20b mctrl_gpio_get -EXPORT_SYMBOL_GPL vmlinux 0x48a80e01 gpiod_get_array -EXPORT_SYMBOL_GPL vmlinux 0x48abd5c7 security_kernel_read_file -EXPORT_SYMBOL_GPL vmlinux 0x48b2cc20 __SCK__tp_func_tcp_bad_csum -EXPORT_SYMBOL_GPL vmlinux 0x48b3c547 pid_nr_ns -EXPORT_SYMBOL_GPL vmlinux 0x48bd39ac crypto_register_acomps -EXPORT_SYMBOL_GPL vmlinux 0x48ce7503 serial8250_init_port -EXPORT_SYMBOL_GPL vmlinux 0x48d14fc6 usb_hub_find_child +EXPORT_SYMBOL_GPL vmlinux 0x48a98661 regulator_list_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0x48bc9974 ata_sff_hsm_move +EXPORT_SYMBOL_GPL vmlinux 0x48c4264a pinctrl_register_and_init +EXPORT_SYMBOL_GPL vmlinux 0x48cc54c9 cpufreq_generic_init +EXPORT_SYMBOL_GPL vmlinux 0x48d680a8 dw_pcie_ep_init_notify +EXPORT_SYMBOL_GPL vmlinux 0x48e4be63 iommu_page_response +EXPORT_SYMBOL_GPL vmlinux 0x48e9e625 ip_valid_fib_dump_req EXPORT_SYMBOL_GPL vmlinux 0x48f49400 apei_hest_parse -EXPORT_SYMBOL_GPL vmlinux 0x48fb6c0e split_page -EXPORT_SYMBOL_GPL vmlinux 0x491e1734 dev_xdp_prog_count +EXPORT_SYMBOL_GPL vmlinux 0x48f603d4 tpm_is_tpm2 +EXPORT_SYMBOL_GPL vmlinux 0x48f63164 usb_hcd_amd_remote_wakeup_quirk EXPORT_SYMBOL_GPL vmlinux 0x49242bc7 freezer_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x4926c580 ata_port_freeze -EXPORT_SYMBOL_GPL vmlinux 0x4928e8f8 l3mdev_fib_table_rcu +EXPORT_SYMBOL_GPL vmlinux 0x492d3f21 dw_pcie_find_capability +EXPORT_SYMBOL_GPL vmlinux 0x4933ac6f _proc_mkdir EXPORT_SYMBOL_GPL vmlinux 0x4934bdd0 crypto_check_attr_type +EXPORT_SYMBOL_GPL vmlinux 0x4938b98f gpiod_get_direction EXPORT_SYMBOL_GPL vmlinux 0x4939ebcd numa_map_to_online_node -EXPORT_SYMBOL_GPL vmlinux 0x49468fea fib_nl_delrule -EXPORT_SYMBOL_GPL vmlinux 0x494dec28 clk_hw_register -EXPORT_SYMBOL_GPL vmlinux 0x4951adc1 tty_port_install +EXPORT_SYMBOL_GPL vmlinux 0x494c4003 xdp_convert_zc_to_xdp_frame +EXPORT_SYMBOL_GPL vmlinux 0x494ed0e2 fat_free_clusters +EXPORT_SYMBOL_GPL vmlinux 0x49503abd root_device_unregister EXPORT_SYMBOL_GPL vmlinux 0x495a4221 __SCT__tp_func_rpm_return_int EXPORT_SYMBOL_GPL vmlinux 0x49608959 migrate_disable -EXPORT_SYMBOL_GPL vmlinux 0x4963f1e0 fixed_phy_change_carrier -EXPORT_SYMBOL_GPL vmlinux 0x49691a5e regcache_drop_region -EXPORT_SYMBOL_GPL vmlinux 0x4969b2fd serdev_device_add -EXPORT_SYMBOL_GPL vmlinux 0x49753ed8 ata_host_suspend -EXPORT_SYMBOL_GPL vmlinux 0x49850fa4 usb_put_hcd +EXPORT_SYMBOL_GPL vmlinux 0x4973c0c1 usb_role_switch_get +EXPORT_SYMBOL_GPL vmlinux 0x4975443b crypto_larval_kill +EXPORT_SYMBOL_GPL vmlinux 0x4977be3b scsi_register_device_handler +EXPORT_SYMBOL_GPL vmlinux 0x497b16e0 wakeup_source_destroy +EXPORT_SYMBOL_GPL vmlinux 0x4985a164 espintcp_push_skb +EXPORT_SYMBOL_GPL vmlinux 0x498670de param_set_bool_enable_only EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue +EXPORT_SYMBOL_GPL vmlinux 0x4992e3e2 rtnl_delete_link EXPORT_SYMBOL_GPL vmlinux 0x49951708 sev_enable_key -EXPORT_SYMBOL_GPL vmlinux 0x49a1b64e crypto_shash_update -EXPORT_SYMBOL_GPL vmlinux 0x49c42046 wm831x_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x49ca46cd xdp_convert_zc_to_xdp_frame +EXPORT_SYMBOL_GPL vmlinux 0x49b56ab7 iommu_domain_alloc +EXPORT_SYMBOL_GPL vmlinux 0x49bd4c38 fat_setattr +EXPORT_SYMBOL_GPL vmlinux 0x49c6ee9d nvmem_cell_read_u32 +EXPORT_SYMBOL_GPL vmlinux 0x49cced58 ehci_hub_control EXPORT_SYMBOL_GPL vmlinux 0x49cd25ed alloc_workqueue -EXPORT_SYMBOL_GPL vmlinux 0x49d87f42 dev_pm_opp_put +EXPORT_SYMBOL_GPL vmlinux 0x49d86ab7 ip_fib_metrics_init +EXPORT_SYMBOL_GPL vmlinux 0x49da6851 kick_process +EXPORT_SYMBOL_GPL vmlinux 0x49e65e87 clk_register_fractional_divider EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0x49eb4051 unregister_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x49f150a5 __SCK__tp_func_rpm_return_int -EXPORT_SYMBOL_GPL vmlinux 0x49fc5a3c wwan_port_rx -EXPORT_SYMBOL_GPL vmlinux 0x4a0ba74d fuse_init_fs_context_submount -EXPORT_SYMBOL_GPL vmlinux 0x4a0ea3dc dma_max_mapping_size -EXPORT_SYMBOL_GPL vmlinux 0x4a104150 mptcp_subflow_request_sock_ops +EXPORT_SYMBOL_GPL vmlinux 0x49f4fa96 of_icc_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x4a0c334e tcp_get_info EXPORT_SYMBOL_GPL vmlinux 0x4a17ed66 sysrq_mask -EXPORT_SYMBOL_GPL vmlinux 0x4a180380 edac_device_handle_ce_count -EXPORT_SYMBOL_GPL vmlinux 0x4a3f0bbd __rio_local_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x4a184003 hwspin_lock_register EXPORT_SYMBOL_GPL vmlinux 0x4a420d09 acpi_bus_detach_private_data -EXPORT_SYMBOL_GPL vmlinux 0x4a4a7cc7 __tracepoint_pelt_se_tp -EXPORT_SYMBOL_GPL vmlinux 0x4a5dcf5a metadata_dst_free -EXPORT_SYMBOL_GPL vmlinux 0x4a6203c1 clk_hw_round_rate -EXPORT_SYMBOL_GPL vmlinux 0x4a6cf6ed trace_define_field -EXPORT_SYMBOL_GPL vmlinux 0x4a7ef11e __netpoll_setup -EXPORT_SYMBOL_GPL vmlinux 0x4a88be05 led_update_brightness -EXPORT_SYMBOL_GPL vmlinux 0x4a8a6917 spi_busnum_to_master -EXPORT_SYMBOL_GPL vmlinux 0x4ad49db3 usb_control_msg_recv -EXPORT_SYMBOL_GPL vmlinux 0x4ad69739 pci_host_probe -EXPORT_SYMBOL_GPL vmlinux 0x4ad95d58 pci_epc_linkup -EXPORT_SYMBOL_GPL vmlinux 0x4ae36c63 ata_scsi_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x4afc60f9 device_bind_driver -EXPORT_SYMBOL_GPL vmlinux 0x4b0050da __tracepoint_rpm_idle -EXPORT_SYMBOL_GPL vmlinux 0x4b0af457 gpiochip_irq_domain_activate -EXPORT_SYMBOL_GPL vmlinux 0x4b0d50f3 usb_register_device_driver -EXPORT_SYMBOL_GPL vmlinux 0x4b21cd09 irq_domain_translate_twocell -EXPORT_SYMBOL_GPL vmlinux 0x4b26cc22 inverse_translate -EXPORT_SYMBOL_GPL vmlinux 0x4b31d191 crypto_stats_init -EXPORT_SYMBOL_GPL vmlinux 0x4b4f5ae8 bpf_trace_run7 +EXPORT_SYMBOL_GPL vmlinux 0x4a48025f nvdimm_bus_add_badrange +EXPORT_SYMBOL_GPL vmlinux 0x4a4829f9 kthread_cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x4a4c48f7 pci_vpd_alloc +EXPORT_SYMBOL_GPL vmlinux 0x4a539c79 wait_for_stable_page +EXPORT_SYMBOL_GPL vmlinux 0x4a691095 bus_register +EXPORT_SYMBOL_GPL vmlinux 0x4a6dcb32 ack_all_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x4a8b2f87 thermal_zone_get_offset +EXPORT_SYMBOL_GPL vmlinux 0x4a95a3db dev_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x4a99e523 pstore_register +EXPORT_SYMBOL_GPL vmlinux 0x4a9d201b virtqueue_get_used_addr +EXPORT_SYMBOL_GPL vmlinux 0x4aaa11f1 usb_control_msg_send +EXPORT_SYMBOL_GPL vmlinux 0x4abdd69f sfp_bus_find_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x4ac90577 udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x4ad445c3 __devm_clk_hw_register_mux +EXPORT_SYMBOL_GPL vmlinux 0x4adb7063 efivar_entry_iter +EXPORT_SYMBOL_GPL vmlinux 0x4ae4f2dc preempt_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x4b1f33d9 pci_find_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0x4b34aef9 adp5520_read +EXPORT_SYMBOL_GPL vmlinux 0x4b3b34ee icc_get_name EXPORT_SYMBOL_GPL vmlinux 0x4b51f74c ata_xfer_mode2mask -EXPORT_SYMBOL_GPL vmlinux 0x4b53c8fe device_property_read_u64_array -EXPORT_SYMBOL_GPL vmlinux 0x4b544bb9 vfio_pci_core_mmap EXPORT_SYMBOL_GPL vmlinux 0x4b56ce05 xenmem_reservation_increase EXPORT_SYMBOL_GPL vmlinux 0x4b5acf74 rhashtable_init -EXPORT_SYMBOL_GPL vmlinux 0x4b627c1e fuse_conn_put +EXPORT_SYMBOL_GPL vmlinux 0x4b6df577 led_classdev_suspend EXPORT_SYMBOL_GPL vmlinux 0x4b72009e dynamic_debug_exec_queries EXPORT_SYMBOL_GPL vmlinux 0x4b762828 start_thread EXPORT_SYMBOL_GPL vmlinux 0x4b931968 xen_features -EXPORT_SYMBOL_GPL vmlinux 0x4b93d7d7 acpi_dma_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x4ba6c819 device_remove_properties -EXPORT_SYMBOL_GPL vmlinux 0x4ba9ab69 skb_mpls_push -EXPORT_SYMBOL_GPL vmlinux 0x4bab2181 kobject_uevent -EXPORT_SYMBOL_GPL vmlinux 0x4bc4ce0c genphy_c45_loopback -EXPORT_SYMBOL_GPL vmlinux 0x4bc63ab4 find_extend_vma +EXPORT_SYMBOL_GPL vmlinux 0x4b9719b8 strp_stop +EXPORT_SYMBOL_GPL vmlinux 0x4b9756f9 gpiod_set_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x4b9bf7e2 events_sysfs_show +EXPORT_SYMBOL_GPL vmlinux 0x4bb85abc ata_pci_bmdma_init_one +EXPORT_SYMBOL_GPL vmlinux 0x4bbc6293 devlink_remote_reload_actions_performed EXPORT_SYMBOL_GPL vmlinux 0x4bc8727f xen_balloon_init +EXPORT_SYMBOL_GPL vmlinux 0x4bca0d0f switchdev_port_attr_set EXPORT_SYMBOL_GPL vmlinux 0x4bd6f08b misc_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x4be0b311 ata_sff_exec_command -EXPORT_SYMBOL_GPL vmlinux 0x4be225c8 proc_create_net_data -EXPORT_SYMBOL_GPL vmlinux 0x4be333ee device_add_software_node -EXPORT_SYMBOL_GPL vmlinux 0x4c04fbb8 crypto_alloc_akcipher -EXPORT_SYMBOL_GPL vmlinux 0x4c0aebd6 dw_pcie_ep_init -EXPORT_SYMBOL_GPL vmlinux 0x4c246873 phy_save_page -EXPORT_SYMBOL_GPL vmlinux 0x4c26c293 pci_dev_unlock +EXPORT_SYMBOL_GPL vmlinux 0x4be1743b devlink_port_region_create +EXPORT_SYMBOL_GPL vmlinux 0x4bf45827 scsi_host_block +EXPORT_SYMBOL_GPL vmlinux 0x4bf586ce devm_phy_put +EXPORT_SYMBOL_GPL vmlinux 0x4bff6ffb pm_clk_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4c0c5c06 dm_hold +EXPORT_SYMBOL_GPL vmlinux 0x4c0feb4d is_transparent_hugepage +EXPORT_SYMBOL_GPL vmlinux 0x4c2056ba badblocks_show +EXPORT_SYMBOL_GPL vmlinux 0x4c254e4a sk_msg_memcopy_from_iter EXPORT_SYMBOL_GPL vmlinux 0x4c2c0ea7 evtchn_make_refcounted -EXPORT_SYMBOL_GPL vmlinux 0x4c2e96ab iommu_dev_disable_feature +EXPORT_SYMBOL_GPL vmlinux 0x4c316204 bind_interdomain_evtchn_to_irqhandler_lateeoi +EXPORT_SYMBOL_GPL vmlinux 0x4c345b49 clk_hw_get_rate +EXPORT_SYMBOL_GPL vmlinux 0x4c49a0ce pci_assign_unassigned_bus_resources EXPORT_SYMBOL_GPL vmlinux 0x4c49f1de hv_clock_per_cpu +EXPORT_SYMBOL_GPL vmlinux 0x4c52862b fsnotify_add_mark +EXPORT_SYMBOL_GPL vmlinux 0x4c54199c fixed_phy_unregister EXPORT_SYMBOL_GPL vmlinux 0x4c549b36 __traceiter_xhci_dbg_quirks -EXPORT_SYMBOL_GPL vmlinux 0x4c68e3d3 crypto_register_template -EXPORT_SYMBOL_GPL vmlinux 0x4c6b4334 device_remove_file -EXPORT_SYMBOL_GPL vmlinux 0x4c6e257d dma_mmap_pages -EXPORT_SYMBOL_GPL vmlinux 0x4c70e3db crypto_stats_rng_seed +EXPORT_SYMBOL_GPL vmlinux 0x4c5e5619 security_file_permission EXPORT_SYMBOL_GPL vmlinux 0x4c762b5c x86_stepping +EXPORT_SYMBOL_GPL vmlinux 0x4c8a8ba1 serial8250_do_set_ldisc EXPORT_SYMBOL_GPL vmlinux 0x4c8adfe1 hv_root_partition -EXPORT_SYMBOL_GPL vmlinux 0x4c9a8ede rio_unregister_scan -EXPORT_SYMBOL_GPL vmlinux 0x4c9b0613 platform_add_devices -EXPORT_SYMBOL_GPL vmlinux 0x4ca2833e rcu_read_unlock_trace_special +EXPORT_SYMBOL_GPL vmlinux 0x4c8b2920 proc_create_net_data +EXPORT_SYMBOL_GPL vmlinux 0x4c9128a4 irq_domain_associate +EXPORT_SYMBOL_GPL vmlinux 0x4c9cd9a8 usb_phy_set_charger_state EXPORT_SYMBOL_GPL vmlinux 0x4cb27100 ktime_get_snapshot -EXPORT_SYMBOL_GPL vmlinux 0x4cb80581 devm_nvmem_device_get -EXPORT_SYMBOL_GPL vmlinux 0x4cb979de crypto_alloc_tfm_node -EXPORT_SYMBOL_GPL vmlinux 0x4cc27cd5 mmc_switch -EXPORT_SYMBOL_GPL vmlinux 0x4cc4c825 spi_statistics_add_transfer_stats -EXPORT_SYMBOL_GPL vmlinux 0x4cc6bd17 devlink_resource_size_get -EXPORT_SYMBOL_GPL vmlinux 0x4ccac8ad acpi_pm_wakeup_event -EXPORT_SYMBOL_GPL vmlinux 0x4ceb5f7c dev_pm_opp_find_freq_ceil_by_volt +EXPORT_SYMBOL_GPL vmlinux 0x4cb5126e fwnode_get_next_parent +EXPORT_SYMBOL_GPL vmlinux 0x4cce57aa regcache_sync EXPORT_SYMBOL_GPL vmlinux 0x4cf699b8 vfio_pci_core_set_params EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable +EXPORT_SYMBOL_GPL vmlinux 0x4d08b5d3 unix_peer_get +EXPORT_SYMBOL_GPL vmlinux 0x4d0b2dd5 devm_kasprintf EXPORT_SYMBOL_GPL vmlinux 0x4d0b752f alloc_iova -EXPORT_SYMBOL_GPL vmlinux 0x4d104d2b generic_handle_domain_irq -EXPORT_SYMBOL_GPL vmlinux 0x4d119f8a dma_buf_map_attachment -EXPORT_SYMBOL_GPL vmlinux 0x4d1d4079 nf_queue_entry_get_refs +EXPORT_SYMBOL_GPL vmlinux 0x4d161b5b umd_cleanup_helper +EXPORT_SYMBOL_GPL vmlinux 0x4d18e357 device_link_del EXPORT_SYMBOL_GPL vmlinux 0x4d202b8c __xas_prev -EXPORT_SYMBOL_GPL vmlinux 0x4d267ef4 serial8250_do_set_mctrl -EXPORT_SYMBOL_GPL vmlinux 0x4d3521f3 pci_acpi_set_companion_lookup_hook -EXPORT_SYMBOL_GPL vmlinux 0x4d37d02e posix_acl_create -EXPORT_SYMBOL_GPL vmlinux 0x4d45109f iommu_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x4d26168d nl_table +EXPORT_SYMBOL_GPL vmlinux 0x4d3bfd59 md_account_bio +EXPORT_SYMBOL_GPL vmlinux 0x4d497bb5 pci_user_read_config_dword EXPORT_SYMBOL_GPL vmlinux 0x4d4d7b79 blk_mq_map_queues -EXPORT_SYMBOL_GPL vmlinux 0x4d661c66 regulator_get_bypass_regmap -EXPORT_SYMBOL_GPL vmlinux 0x4d66ead8 pm_generic_resume_early +EXPORT_SYMBOL_GPL vmlinux 0x4d4fd465 __bio_add_page EXPORT_SYMBOL_GPL vmlinux 0x4d6d0bbc iommu_group_ref_get -EXPORT_SYMBOL_GPL vmlinux 0x4d6fcc58 __rtnl_link_unregister EXPORT_SYMBOL_GPL vmlinux 0x4d7272e4 migrate_enable -EXPORT_SYMBOL_GPL vmlinux 0x4d755021 edac_mc_handle_error +EXPORT_SYMBOL_GPL vmlinux 0x4d77412a ata_ehi_clear_desc +EXPORT_SYMBOL_GPL vmlinux 0x4d8965e5 trace_event_buffer_reserve EXPORT_SYMBOL_GPL vmlinux 0x4d8a96ab xas_set_mark -EXPORT_SYMBOL_GPL vmlinux 0x4d8fe9fe rio_set_port_lockout +EXPORT_SYMBOL_GPL vmlinux 0x4d8b6d34 __SCK__tp_func_sched_util_est_cfs_tp EXPORT_SYMBOL_GPL vmlinux 0x4da1f4a7 list_lru_del +EXPORT_SYMBOL_GPL vmlinux 0x4da749fc usb_hcd_pci_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0x4dac8262 ip6_datagram_release_cb EXPORT_SYMBOL_GPL vmlinux 0x4dae16e4 i2c_put_dma_safe_msg_buf -EXPORT_SYMBOL_GPL vmlinux 0x4dc044dd umd_load_blob +EXPORT_SYMBOL_GPL vmlinux 0x4dd7c6dc power_supply_put_battery_info EXPORT_SYMBOL_GPL vmlinux 0x4dd9d14d cn_netlink_send_mult EXPORT_SYMBOL_GPL vmlinux 0x4de17ab3 usb_state_string -EXPORT_SYMBOL_GPL vmlinux 0x4de3dfab gnttab_page_cache_put -EXPORT_SYMBOL_GPL vmlinux 0x4de9e48b __get_task_comm -EXPORT_SYMBOL_GPL vmlinux 0x4ded8eff ip_fib_metrics_init -EXPORT_SYMBOL_GPL vmlinux 0x4df06343 __rio_local_read_config_16 -EXPORT_SYMBOL_GPL vmlinux 0x4df2f6b9 to_software_node -EXPORT_SYMBOL_GPL vmlinux 0x4df88dac mbox_flush -EXPORT_SYMBOL_GPL vmlinux 0x4df961f1 scsi_queue_work +EXPORT_SYMBOL_GPL vmlinux 0x4ded9750 irq_domain_pop_irq +EXPORT_SYMBOL_GPL vmlinux 0x4deeba21 power_supply_powers +EXPORT_SYMBOL_GPL vmlinux 0x4deee8c9 invalidate_inode_pages2 +EXPORT_SYMBOL_GPL vmlinux 0x4df90aea inet_send_prepare EXPORT_SYMBOL_GPL vmlinux 0x4dff61e5 wwan_port_txoff -EXPORT_SYMBOL_GPL vmlinux 0x4e020984 public_key_subtype -EXPORT_SYMBOL_GPL vmlinux 0x4e0de60d devm_irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x4e087956 device_remove_properties 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 0x4e1bafb5 ata_pci_bmdma_init_one -EXPORT_SYMBOL_GPL vmlinux 0x4e1e06f6 phy_pm_runtime_get_sync -EXPORT_SYMBOL_GPL vmlinux 0x4e3b8e71 vp_modern_get_queue_size -EXPORT_SYMBOL_GPL vmlinux 0x4e40e009 fwnode_get_next_available_child_node +EXPORT_SYMBOL_GPL vmlinux 0x4e1bfaec skb_zerocopy +EXPORT_SYMBOL_GPL vmlinux 0x4e1fe77b net_ns_type_operations +EXPORT_SYMBOL_GPL vmlinux 0x4e22e47e pci_set_host_bridge_release +EXPORT_SYMBOL_GPL vmlinux 0x4e3766d2 attribute_container_register +EXPORT_SYMBOL_GPL vmlinux 0x4e38339a alloc_io_pgtable_ops +EXPORT_SYMBOL_GPL vmlinux 0x4e3abd79 bus_find_device +EXPORT_SYMBOL_GPL vmlinux 0x4e3ffc61 icc_provider_del EXPORT_SYMBOL_GPL vmlinux 0x4e4c37e2 freq_qos_remove_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4e775627 dm_noflush_suspending -EXPORT_SYMBOL_GPL vmlinux 0x4e785d22 cdrom_multisession -EXPORT_SYMBOL_GPL vmlinux 0x4ea0b9db nvdimm_volatile_region_create -EXPORT_SYMBOL_GPL vmlinux 0x4ea93a62 devres_release_group -EXPORT_SYMBOL_GPL vmlinux 0x4ea98f1c generic_fh_to_parent +EXPORT_SYMBOL_GPL vmlinux 0x4e690baf irq_domain_free_irqs_parent +EXPORT_SYMBOL_GPL vmlinux 0x4e692e3a x86_vector_domain +EXPORT_SYMBOL_GPL vmlinux 0x4e6d142f scsi_ioctl_block_when_processing_errors +EXPORT_SYMBOL_GPL vmlinux 0x4e7666d5 relay_reset +EXPORT_SYMBOL_GPL vmlinux 0x4e777d1e tcp_set_state +EXPORT_SYMBOL_GPL vmlinux 0x4e79ff61 mmc_send_abort_tuning +EXPORT_SYMBOL_GPL vmlinux 0x4e8764ad device_register +EXPORT_SYMBOL_GPL vmlinux 0x4e8b96d1 ata_pci_remove_one +EXPORT_SYMBOL_GPL vmlinux 0x4e915a82 vp_modern_probe EXPORT_SYMBOL_GPL vmlinux 0x4eac5fc1 cpu_mitigations_auto_nosmt -EXPORT_SYMBOL_GPL vmlinux 0x4eae3517 ethnl_cable_test_free +EXPORT_SYMBOL_GPL vmlinux 0x4eaf7c70 cpuidle_get_driver +EXPORT_SYMBOL_GPL vmlinux 0x4ebb7885 ip6_route_input_lookup +EXPORT_SYMBOL_GPL vmlinux 0x4ebeb171 fat_truncate_time +EXPORT_SYMBOL_GPL vmlinux 0x4ecc58fb rio_request_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x4ecdd143 irq_domain_simple_ops EXPORT_SYMBOL_GPL vmlinux 0x4ece3615 blocking_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4ed4630c bd_link_disk_holder -EXPORT_SYMBOL_GPL vmlinux 0x4edafc3e skcipher_walk_virt -EXPORT_SYMBOL_GPL vmlinux 0x4edbcbab skb_tstamp_tx -EXPORT_SYMBOL_GPL vmlinux 0x4edc4a7e rio_add_mport_pw_handler -EXPORT_SYMBOL_GPL vmlinux 0x4ee431ab ata_sff_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x4eeacd0e dma_async_device_channel_register -EXPORT_SYMBOL_GPL vmlinux 0x4ef16f99 __SCK__tp_func_pelt_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x4edc4ddc public_key_subtype EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context EXPORT_SYMBOL_GPL vmlinux 0x4efcf021 mpi_normalize -EXPORT_SYMBOL_GPL vmlinux 0x4eff929f icc_get -EXPORT_SYMBOL_GPL vmlinux 0x4f0be418 __SCK__tp_func_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x4f0c9ca7 __tracepoint_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0x4f0ccd34 regulator_set_load +EXPORT_SYMBOL_GPL vmlinux 0x4f133fda usb_hcd_pci_remove EXPORT_SYMBOL_GPL vmlinux 0x4f2593f0 btree_update EXPORT_SYMBOL_GPL vmlinux 0x4f2c996d kmsg_dump_get_line -EXPORT_SYMBOL_GPL vmlinux 0x4f3176c6 ata_pci_sff_prepare_host -EXPORT_SYMBOL_GPL vmlinux 0x4f3e6b42 regmap_update_bits_base -EXPORT_SYMBOL_GPL vmlinux 0x4f4aed6d rio_mport_write_config_32 -EXPORT_SYMBOL_GPL vmlinux 0x4f4c7067 rio_mport_chk_dev_access +EXPORT_SYMBOL_GPL vmlinux 0x4f2ccf8c devm_spi_mem_dirmap_destroy +EXPORT_SYMBOL_GPL vmlinux 0x4f366952 __tracepoint_tcp_bad_csum +EXPORT_SYMBOL_GPL vmlinux 0x4f437353 ata_sff_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x4f4f4792 xenbus_probe_devices +EXPORT_SYMBOL_GPL vmlinux 0x4f55864a ipv6_bpf_stub +EXPORT_SYMBOL_GPL vmlinux 0x4f62f906 vfio_external_group_match_file +EXPORT_SYMBOL_GPL vmlinux 0x4f64c949 lp8788_update_bits EXPORT_SYMBOL_GPL vmlinux 0x4f6a07fe show_rcu_gp_kthreads EXPORT_SYMBOL_GPL vmlinux 0x4f722eb0 acpi_ec_remove_query_handler EXPORT_SYMBOL_GPL vmlinux 0x4f72a987 uart_parse_options -EXPORT_SYMBOL_GPL vmlinux 0x4f74cf51 __cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0x4f803611 crypto_register_scomp EXPORT_SYMBOL_GPL vmlinux 0x4f8546af cpuidle_poll_state_init -EXPORT_SYMBOL_GPL vmlinux 0x4f8f2d83 dev_pm_qos_add_ancestor_request -EXPORT_SYMBOL_GPL vmlinux 0x4f979198 task_active_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0x4fac25e7 bpf_prog_inc -EXPORT_SYMBOL_GPL vmlinux 0x4fc5a8fa da9052_adc_manual_read -EXPORT_SYMBOL_GPL vmlinux 0x4fd66c21 devlink_params_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4f90e091 __ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0x4f9bb9b4 bdi_dev_name +EXPORT_SYMBOL_GPL vmlinux 0x4fac1708 device_add_software_node +EXPORT_SYMBOL_GPL vmlinux 0x4faf86a2 tcp_bpf_sendmsg_redir +EXPORT_SYMBOL_GPL vmlinux 0x4fc179a2 led_classdev_notify_brightness_hw_changed +EXPORT_SYMBOL_GPL vmlinux 0x4fd639ae inet_unhash EXPORT_SYMBOL_GPL vmlinux 0x4fdc945d sata_deb_timing_normal EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier -EXPORT_SYMBOL_GPL vmlinux 0x5006c1fc fscrypt_ioctl_remove_key EXPORT_SYMBOL_GPL vmlinux 0x500c768c apei_exec_read_register -EXPORT_SYMBOL_GPL vmlinux 0x50229499 regulator_list_hardware_vsel +EXPORT_SYMBOL_GPL vmlinux 0x500f032e serdev_device_add +EXPORT_SYMBOL_GPL vmlinux 0x50161c48 mmc_crypto_prepare_req EXPORT_SYMBOL_GPL vmlinux 0x5026585c xen_irq_from_gsi -EXPORT_SYMBOL_GPL vmlinux 0x502e132d rio_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x503ec2c5 devfreq_cooling_register -EXPORT_SYMBOL_GPL vmlinux 0x50434ccd pci_find_ext_capability -EXPORT_SYMBOL_GPL vmlinux 0x50495df1 ata_pci_sff_init_one -EXPORT_SYMBOL_GPL vmlinux 0x50608031 devm_free_percpu -EXPORT_SYMBOL_GPL vmlinux 0x50621e6e device_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0x506eeaa1 pinctrl_utils_add_config +EXPORT_SYMBOL_GPL vmlinux 0x5033e385 regulator_get_error_flags +EXPORT_SYMBOL_GPL vmlinux 0x503a9ea9 __alloc_pages_bulk +EXPORT_SYMBOL_GPL vmlinux 0x50409dc7 strp_init +EXPORT_SYMBOL_GPL vmlinux 0x50480aae ptp_classify_raw +EXPORT_SYMBOL_GPL vmlinux 0x504f8941 regulator_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x506b72f9 security_path_truncate EXPORT_SYMBOL_GPL vmlinux 0x50759163 kobject_init_and_add -EXPORT_SYMBOL_GPL vmlinux 0x5079e4a8 sched_trace_rq_avg_rt -EXPORT_SYMBOL_GPL vmlinux 0x507ab01c __alloc_pages_bulk -EXPORT_SYMBOL_GPL vmlinux 0x508a59b9 handle_fasteoi_nmi +EXPORT_SYMBOL_GPL vmlinux 0x5075f143 regmap_read +EXPORT_SYMBOL_GPL vmlinux 0x507b551a regulator_is_supported_voltage +EXPORT_SYMBOL_GPL vmlinux 0x508a8817 platform_device_del +EXPORT_SYMBOL_GPL vmlinux 0x508b07dc clk_hw_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x508d0d9f __clocksource_register_scale EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start -EXPORT_SYMBOL_GPL vmlinux 0x509791ec iptunnel_metadata_reply -EXPORT_SYMBOL_GPL vmlinux 0x509799f5 regulator_get_current_limit EXPORT_SYMBOL_GPL vmlinux 0x509d5f55 clk_divider_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0x509de98c blk_steal_bios -EXPORT_SYMBOL_GPL vmlinux 0x50a53232 debugfs_lookup +EXPORT_SYMBOL_GPL vmlinux 0x50a367d4 fuse_fill_super_common +EXPORT_SYMBOL_GPL vmlinux 0x50a6159d vfio_group_iommu_domain EXPORT_SYMBOL_GPL vmlinux 0x50b03f5d l1tf_vmx_mitigation +EXPORT_SYMBOL_GPL vmlinux 0x50b42ba1 entry_ibpb +EXPORT_SYMBOL_GPL vmlinux 0x50c30f7d fscrypt_drop_inode EXPORT_SYMBOL_GPL vmlinux 0x50d1f870 pgprot_writecombine -EXPORT_SYMBOL_GPL vmlinux 0x50d25a59 cpufreq_cpu_get_raw -EXPORT_SYMBOL_GPL vmlinux 0x50dbd418 irq_gc_set_wake -EXPORT_SYMBOL_GPL vmlinux 0x50dcd48a irq_find_matching_fwspec EXPORT_SYMBOL_GPL vmlinux 0x50df94f5 btree_insert +EXPORT_SYMBOL_GPL vmlinux 0x50e4f05f rio_unregister_driver EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num -EXPORT_SYMBOL_GPL vmlinux 0x50f4aa69 vmf_insert_pfn_pud_prot +EXPORT_SYMBOL_GPL vmlinux 0x50f73baf fuse_dev_operations EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up -EXPORT_SYMBOL_GPL vmlinux 0x5100dc66 em_pd_get -EXPORT_SYMBOL_GPL vmlinux 0x5101ab39 pci_disable_sriov -EXPORT_SYMBOL_GPL vmlinux 0x5102181b i2c_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x510bff45 devlink_port_attrs_pci_pf_set -EXPORT_SYMBOL_GPL vmlinux 0x51192987 iomap_ioend_try_merge -EXPORT_SYMBOL_GPL vmlinux 0x5123b298 dev_pm_opp_get_sharing_cpus -EXPORT_SYMBOL_GPL vmlinux 0x512f22e1 ata_bmdma_dumb_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x5100c3a3 ata_wait_register +EXPORT_SYMBOL_GPL vmlinux 0x5108d895 acpi_dev_pm_attach +EXPORT_SYMBOL_GPL vmlinux 0x51219695 devm_nvmem_cell_get +EXPORT_SYMBOL_GPL vmlinux 0x51339ad7 usb_enable_ltm EXPORT_SYMBOL_GPL vmlinux 0x51390c96 rcu_barrier_tasks_rude -EXPORT_SYMBOL_GPL vmlinux 0x5139b389 validate_xmit_skb_list -EXPORT_SYMBOL_GPL vmlinux 0x514881cd sfp_add_phy -EXPORT_SYMBOL_GPL vmlinux 0x515b258c __pm_runtime_use_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0x51684ac4 dm_table_device_name -EXPORT_SYMBOL_GPL vmlinux 0x516b8b41 pwm_request -EXPORT_SYMBOL_GPL vmlinux 0x517be142 sysfs_create_groups -EXPORT_SYMBOL_GPL vmlinux 0x517d9dcc unregister_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x513af47b ata_sff_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x514c3470 securityfs_create_file EXPORT_SYMBOL_GPL vmlinux 0x5187ac4b xen_store_evtchn EXPORT_SYMBOL_GPL vmlinux 0x518c2fc6 hpet_rtc_dropped_irq -EXPORT_SYMBOL_GPL vmlinux 0x51a15d88 rio_unregister_mport +EXPORT_SYMBOL_GPL vmlinux 0x51938e4c class_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x519493cb usb_for_each_port +EXPORT_SYMBOL_GPL vmlinux 0x5195b1d9 acpi_subsys_runtime_resume EXPORT_SYMBOL_GPL vmlinux 0x51a348cc usb_role_switch_set_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x51bef6f1 dev_pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0x51c86cc4 proc_create_net_single +EXPORT_SYMBOL_GPL vmlinux 0x51ccc6f8 debugfs_create_dir EXPORT_SYMBOL_GPL vmlinux 0x51d13875 nf_hooks_lwtunnel_sysctl_handler -EXPORT_SYMBOL_GPL vmlinux 0x51d7af39 xenbus_unmap_ring_vfree -EXPORT_SYMBOL_GPL vmlinux 0x51e10dac crypto_stats_compress -EXPORT_SYMBOL_GPL vmlinux 0x51e45ad0 __vring_new_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0x51e8eca6 class_remove_file_ns -EXPORT_SYMBOL_GPL vmlinux 0x51ed1803 __put_task_struct -EXPORT_SYMBOL_GPL vmlinux 0x51f9e551 dw_pcie_ep_init_complete -EXPORT_SYMBOL_GPL vmlinux 0x51fda823 acpi_dev_get_first_consumer_dev -EXPORT_SYMBOL_GPL vmlinux 0x51ff41de icc_put -EXPORT_SYMBOL_GPL vmlinux 0x520a2aa1 ip6_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0x51d400f4 phy_select_page +EXPORT_SYMBOL_GPL vmlinux 0x51ddee01 mm_kobj +EXPORT_SYMBOL_GPL vmlinux 0x51ef8759 get_task_pid +EXPORT_SYMBOL_GPL vmlinux 0x51f0288b irq_chip_set_affinity_parent +EXPORT_SYMBOL_GPL vmlinux 0x52071541 rio_add_net +EXPORT_SYMBOL_GPL vmlinux 0x5209e20e devres_open_group +EXPORT_SYMBOL_GPL vmlinux 0x520f45c4 pm_relax +EXPORT_SYMBOL_GPL vmlinux 0x521949b9 devlink_port_attrs_pci_pf_set EXPORT_SYMBOL_GPL vmlinux 0x52252316 clk_unregister_fixed_rate -EXPORT_SYMBOL_GPL vmlinux 0x5229f15b irq_chip_set_affinity_parent EXPORT_SYMBOL_GPL vmlinux 0x52431348 xenbus_transaction_start +EXPORT_SYMBOL_GPL vmlinux 0x52582ecc iommu_fwspec_add_ids EXPORT_SYMBOL_GPL vmlinux 0x525d0aa3 trace_seq_printf +EXPORT_SYMBOL_GPL vmlinux 0x5269b9d9 ip6_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0x526bcf2a wwan_port_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x526e7e04 devlink_port_param_driverinit_value_get -EXPORT_SYMBOL_GPL vmlinux 0x52899491 irq_chip_retrigger_hierarchy -EXPORT_SYMBOL_GPL vmlinux 0x529020c8 devres_release -EXPORT_SYMBOL_GPL vmlinux 0x52945f63 acpi_dev_clear_dependencies -EXPORT_SYMBOL_GPL vmlinux 0x52951fe9 devm_request_pci_bus_resources -EXPORT_SYMBOL_GPL vmlinux 0x52a48a9b skb_to_sgvec -EXPORT_SYMBOL_GPL vmlinux 0x52a88415 usb_store_new_id -EXPORT_SYMBOL_GPL vmlinux 0x52ad57fd dax_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5271c04d dma_buf_fd +EXPORT_SYMBOL_GPL vmlinux 0x527365a1 edac_device_del_device +EXPORT_SYMBOL_GPL vmlinux 0x52877b07 rdev_get_regmap +EXPORT_SYMBOL_GPL vmlinux 0x52943be4 unwind_next_frame +EXPORT_SYMBOL_GPL vmlinux 0x529a2330 fuse_file_poll +EXPORT_SYMBOL_GPL vmlinux 0x52a3136c acpi_dev_gpio_irq_get_by +EXPORT_SYMBOL_GPL vmlinux 0x52ae208e rio_request_inb_pwrite EXPORT_SYMBOL_GPL vmlinux 0x52b1e3c7 pci_flags +EXPORT_SYMBOL_GPL vmlinux 0x52b23ddb rio_mport_class +EXPORT_SYMBOL_GPL vmlinux 0x52b9c5cc __SCK__tp_func_extlog_mem_event EXPORT_SYMBOL_GPL vmlinux 0x52c35e83 call_rcu_tasks_trace +EXPORT_SYMBOL_GPL vmlinux 0x52cae2df tcp_unregister_ulp +EXPORT_SYMBOL_GPL vmlinux 0x52d1002b wait_on_page_writeback EXPORT_SYMBOL_GPL vmlinux 0x52d54fce devlink_info_version_stored_put -EXPORT_SYMBOL_GPL vmlinux 0x52e223f7 devm_hwmon_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x52e8dedf __traceiter_sched_update_nr_running_tp -EXPORT_SYMBOL_GPL vmlinux 0x52f84ccc pci_device_is_present -EXPORT_SYMBOL_GPL vmlinux 0x530b452d sysfs_unmerge_group -EXPORT_SYMBOL_GPL vmlinux 0x5311010c elv_rqhash_add +EXPORT_SYMBOL_GPL vmlinux 0x52df9167 thermal_remove_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0x52ef4ab0 pci_msi_mask_irq +EXPORT_SYMBOL_GPL vmlinux 0x52fa735e rtc_update_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0x52feff42 pci_user_read_config_word +EXPORT_SYMBOL_GPL vmlinux 0x5313ad49 usb_wakeup_enabled_descendants EXPORT_SYMBOL_GPL vmlinux 0x5321d3d6 sbitmap_get -EXPORT_SYMBOL_GPL vmlinux 0x532856e3 wm8350_reg_write EXPORT_SYMBOL_GPL vmlinux 0x532b90b5 kprobe_event_cmd_init -EXPORT_SYMBOL_GPL vmlinux 0x5356fac1 pm_generic_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0x5330e418 ata_pci_bmdma_init +EXPORT_SYMBOL_GPL vmlinux 0x53415467 gnttab_unmap_refs_sync EXPORT_SYMBOL_GPL vmlinux 0x5358864e devlink_fmsg_binary_pair_nest_end -EXPORT_SYMBOL_GPL vmlinux 0x5360a179 mmc_poll_for_busy EXPORT_SYMBOL_GPL vmlinux 0x536822e3 sfp_module_insert +EXPORT_SYMBOL_GPL vmlinux 0x5373e658 dm_send_uevents +EXPORT_SYMBOL_GPL vmlinux 0x53836fb3 ata_std_postreset +EXPORT_SYMBOL_GPL vmlinux 0x538c0324 ata_dev_disable EXPORT_SYMBOL_GPL vmlinux 0x538d073d phy_duplex_to_str +EXPORT_SYMBOL_GPL vmlinux 0x538e0ccb cgroup_get_from_id +EXPORT_SYMBOL_GPL vmlinux 0x53917890 genphy_c45_an_disable_aneg EXPORT_SYMBOL_GPL vmlinux 0x5391f2c7 gnttab_end_foreign_access_ref -EXPORT_SYMBOL_GPL vmlinux 0x5396ef5b __dma_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x5392bda1 key_type_user +EXPORT_SYMBOL_GPL vmlinux 0x539dddc4 devm_led_trigger_register EXPORT_SYMBOL_GPL vmlinux 0x539f157b pci_xen_swiotlb_init_late -EXPORT_SYMBOL_GPL vmlinux 0x53b1576d cpufreq_dbs_governor_limits -EXPORT_SYMBOL_GPL vmlinux 0x53b918d9 dev_pm_opp_init_cpufreq_table +EXPORT_SYMBOL_GPL vmlinux 0x53a8c4f5 spi_async EXPORT_SYMBOL_GPL vmlinux 0x53c089f5 property_entries_dup +EXPORT_SYMBOL_GPL vmlinux 0x53c87ec0 iomap_invalidatepage +EXPORT_SYMBOL_GPL vmlinux 0x53d71a40 rio_mport_write_config_16 EXPORT_SYMBOL_GPL vmlinux 0x53d7c01e __traceiter_cpu_idle -EXPORT_SYMBOL_GPL vmlinux 0x53e69ceb fwnode_get_phy_node -EXPORT_SYMBOL_GPL vmlinux 0x53f7a3e2 vp_modern_probe -EXPORT_SYMBOL_GPL vmlinux 0x5402d1e2 crypto_ahash_setkey -EXPORT_SYMBOL_GPL vmlinux 0x5405880f adp5520_write -EXPORT_SYMBOL_GPL vmlinux 0x541574e6 sdio_release_irq -EXPORT_SYMBOL_GPL vmlinux 0x541638be tcf_dev_queue_xmit -EXPORT_SYMBOL_GPL vmlinux 0x5416a706 ata_do_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x53ddf703 blkdev_nr_zones +EXPORT_SYMBOL_GPL vmlinux 0x53df8c28 sysfs_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x53eaa100 vp_modern_get_driver_features +EXPORT_SYMBOL_GPL vmlinux 0x53ff4a9a crypto_unregister_skciphers +EXPORT_SYMBOL_GPL vmlinux 0x5418ae5d edac_device_handle_ue_count EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run -EXPORT_SYMBOL_GPL vmlinux 0x541cd2b0 class_interface_register EXPORT_SYMBOL_GPL vmlinux 0x54215db5 visitor64 -EXPORT_SYMBOL_GPL vmlinux 0x543141b7 cpufreq_table_index_unsorted -EXPORT_SYMBOL_GPL vmlinux 0x54326657 iommu_uapi_sva_unbind_gpasid +EXPORT_SYMBOL_GPL vmlinux 0x542c6817 dm_table_set_type EXPORT_SYMBOL_GPL vmlinux 0x5435454c divider_ro_round_rate_parent -EXPORT_SYMBOL_GPL vmlinux 0x54400eb2 devm_pwmchip_add +EXPORT_SYMBOL_GPL vmlinux 0x54384a92 intel_pinctrl_suspend_noirq EXPORT_SYMBOL_GPL vmlinux 0x545025e5 nvmem_add_cell_table +EXPORT_SYMBOL_GPL vmlinux 0x54505598 ata_scsi_unlock_native_capacity +EXPORT_SYMBOL_GPL vmlinux 0x545550fc blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0x54625ae1 da9052_regmap_config EXPORT_SYMBOL_GPL vmlinux 0x54651f9b rhashtable_walk_next -EXPORT_SYMBOL_GPL vmlinux 0x5467b454 uart_console_device -EXPORT_SYMBOL_GPL vmlinux 0x5469180b iommu_device_unlink -EXPORT_SYMBOL_GPL vmlinux 0x547e60b8 gpiochip_irq_map -EXPORT_SYMBOL_GPL vmlinux 0x548d9e8f akcipher_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x5476d458 hwpoison_filter +EXPORT_SYMBOL_GPL vmlinux 0x547d793a smpboot_register_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0x548a16e8 max8997_update_reg +EXPORT_SYMBOL_GPL vmlinux 0x548a8439 usb_get_role_switch_default_mode +EXPORT_SYMBOL_GPL vmlinux 0x548b75ce mctrl_gpio_init +EXPORT_SYMBOL_GPL vmlinux 0x5491480a pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0x54916881 serdev_device_set_flow_control EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq -EXPORT_SYMBOL_GPL vmlinux 0x5496bda6 blk_poll -EXPORT_SYMBOL_GPL vmlinux 0x5496c1b8 ping_bind -EXPORT_SYMBOL_GPL vmlinux 0x54da4142 __ip6_local_out -EXPORT_SYMBOL_GPL vmlinux 0x54dcc107 sata_link_hardreset -EXPORT_SYMBOL_GPL vmlinux 0x54f45d98 phy_exit -EXPORT_SYMBOL_GPL vmlinux 0x54f6b5c0 dev_pm_genpd_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0x54f7b0a0 ptdump_walk_pgd_level_debugfs -EXPORT_SYMBOL_GPL vmlinux 0x5500ee42 tty_kopen_shared -EXPORT_SYMBOL_GPL vmlinux 0x550254d1 thermal_zone_device_disable +EXPORT_SYMBOL_GPL vmlinux 0x54969b1c driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x549cd0b1 dbs_update +EXPORT_SYMBOL_GPL vmlinux 0x54a22766 dm_set_target_max_io_len +EXPORT_SYMBOL_GPL vmlinux 0x54ae3dcc led_set_brightness_nosleep +EXPORT_SYMBOL_GPL vmlinux 0x54afbd10 devm_regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x54b82fc5 iommu_uapi_cache_invalidate +EXPORT_SYMBOL_GPL vmlinux 0x54cb2234 bpf_prog_sub +EXPORT_SYMBOL_GPL vmlinux 0x54dd7439 spi_add_device +EXPORT_SYMBOL_GPL vmlinux 0x54e24870 peernet2id_alloc +EXPORT_SYMBOL_GPL vmlinux 0x54e4fee6 platform_get_irq_byname_optional +EXPORT_SYMBOL_GPL vmlinux 0x54eaa407 nvdimm_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x54eab661 devm_acpi_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x54f3e5cc pinctrl_utils_add_map_mux +EXPORT_SYMBOL_GPL vmlinux 0x54ffe38c iomap_truncate_page EXPORT_SYMBOL_GPL vmlinux 0x550ce709 pat_enabled EXPORT_SYMBOL_GPL vmlinux 0x550f3e05 i2c_freq_mode_string -EXPORT_SYMBOL_GPL vmlinux 0x551c62cc sysfs_remove_file_ns -EXPORT_SYMBOL_GPL vmlinux 0x552202cb fuse_request_end -EXPORT_SYMBOL_GPL vmlinux 0x55273ecf netif_carrier_event +EXPORT_SYMBOL_GPL vmlinux 0x55107481 get_current_tty +EXPORT_SYMBOL_GPL vmlinux 0x5518b0c2 acpi_device_update_power EXPORT_SYMBOL_GPL vmlinux 0x55339365 flush_delayed_fput -EXPORT_SYMBOL_GPL vmlinux 0x55395949 ata_std_qc_defer EXPORT_SYMBOL_GPL vmlinux 0x553b49a4 cpufreq_get_driver_data -EXPORT_SYMBOL_GPL vmlinux 0x553f9464 acpi_dev_get_dma_resources EXPORT_SYMBOL_GPL vmlinux 0x55417264 unregister_vt_notifier -EXPORT_SYMBOL_GPL vmlinux 0x5566f943 devm_pm_opp_set_supported_hw -EXPORT_SYMBOL_GPL vmlinux 0x556a3d64 usb_phy_set_event +EXPORT_SYMBOL_GPL vmlinux 0x5541c90f regulator_disable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x55456770 nfnl_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0x554d0fea fuse_mount_remove +EXPORT_SYMBOL_GPL vmlinux 0x5557ed0f trace_event_buffer_commit +EXPORT_SYMBOL_GPL vmlinux 0x555f764a sdio_readw +EXPORT_SYMBOL_GPL vmlinux 0x55610e59 __traceiter_sched_update_nr_running_tp +EXPORT_SYMBOL_GPL vmlinux 0x5567692d __dev_forward_skb EXPORT_SYMBOL_GPL vmlinux 0x556e4390 clk_get_rate -EXPORT_SYMBOL_GPL vmlinux 0x55736f79 skb_partial_csum_set -EXPORT_SYMBOL_GPL vmlinux 0x55763256 of_icc_get_by_index +EXPORT_SYMBOL_GPL vmlinux 0x55711a5c rtnl_register_module +EXPORT_SYMBOL_GPL vmlinux 0x5572d0dd fork_usermode_driver EXPORT_SYMBOL_GPL vmlinux 0x55784228 regmap_irq_get_virq -EXPORT_SYMBOL_GPL vmlinux 0x557c7edd pci_hp_deregister -EXPORT_SYMBOL_GPL vmlinux 0x557d4da8 inet_csk_listen_start -EXPORT_SYMBOL_GPL vmlinux 0x5584137d lwtunnel_output -EXPORT_SYMBOL_GPL vmlinux 0x55a1b40d iomap_invalidatepage -EXPORT_SYMBOL_GPL vmlinux 0x55a8dc5c __pm_stay_awake -EXPORT_SYMBOL_GPL vmlinux 0x55aaa5d7 gpiochip_generic_config -EXPORT_SYMBOL_GPL vmlinux 0x55b32716 pwm_adjust_config -EXPORT_SYMBOL_GPL vmlinux 0x55c746a2 device_link_del +EXPORT_SYMBOL_GPL vmlinux 0x557e7b90 transport_configure_device +EXPORT_SYMBOL_GPL vmlinux 0x5582a4df max8997_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x55863186 ata_scsi_dma_need_drain +EXPORT_SYMBOL_GPL vmlinux 0x55a02bfc usb_driver_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0x55a06feb fsverity_ioctl_enable +EXPORT_SYMBOL_GPL vmlinux 0x55ba8c13 device_set_node EXPORT_SYMBOL_GPL vmlinux 0x55c76a23 ksys_sync_helper -EXPORT_SYMBOL_GPL vmlinux 0x55ccee53 fuse_free_conn -EXPORT_SYMBOL_GPL vmlinux 0x55decdbd __tracepoint_devlink_hwmsg -EXPORT_SYMBOL_GPL vmlinux 0x55e75eb1 devlink_sb_register -EXPORT_SYMBOL_GPL vmlinux 0x55ec481c pm_clk_remove_clk EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout EXPORT_SYMBOL_GPL vmlinux 0x56054c05 crypto_it_tab -EXPORT_SYMBOL_GPL vmlinux 0x56099e08 devm_phy_put +EXPORT_SYMBOL_GPL vmlinux 0x560fc5db perf_pmu_unregister EXPORT_SYMBOL_GPL vmlinux 0x56173654 pcap_set_ts_bits +EXPORT_SYMBOL_GPL vmlinux 0x56173900 fb_deferred_io_cleanup EXPORT_SYMBOL_GPL vmlinux 0x56256e8a orderly_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x56290e13 fwnode_device_is_available +EXPORT_SYMBOL_GPL vmlinux 0x562b7013 vc_scrolldelta_helper +EXPORT_SYMBOL_GPL vmlinux 0x562c0441 tcp_reno_ssthresh EXPORT_SYMBOL_GPL vmlinux 0x56310925 regulator_mode_to_status EXPORT_SYMBOL_GPL vmlinux 0x56398615 mark_tsc_unstable EXPORT_SYMBOL_GPL vmlinux 0x5641485b tty_termios_encode_baud_rate -EXPORT_SYMBOL_GPL vmlinux 0x56468f6d xenbus_dev_probe -EXPORT_SYMBOL_GPL vmlinux 0x564b941c pinctrl_utils_free_map -EXPORT_SYMBOL_GPL vmlinux 0x56599421 dev_pm_opp_get_max_clock_latency -EXPORT_SYMBOL_GPL vmlinux 0x565ca41b sched_trace_cfs_rq_path -EXPORT_SYMBOL_GPL vmlinux 0x566357cc pm_clk_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0x5692e860 devlink_params_publish -EXPORT_SYMBOL_GPL vmlinux 0x56abe6c1 anon_inode_getfd -EXPORT_SYMBOL_GPL vmlinux 0x56ba48a8 xfrm_audit_state_icvfail -EXPORT_SYMBOL_GPL vmlinux 0x56ca5425 hwspin_lock_register -EXPORT_SYMBOL_GPL vmlinux 0x56f1160c sched_set_fifo_low +EXPORT_SYMBOL_GPL vmlinux 0x564f9945 handle_fasteoi_irq +EXPORT_SYMBOL_GPL vmlinux 0x56699b2a subsys_virtual_register +EXPORT_SYMBOL_GPL vmlinux 0x567048ae skb_zerocopy_headlen +EXPORT_SYMBOL_GPL vmlinux 0x56811241 vfio_pci_core_init_device +EXPORT_SYMBOL_GPL vmlinux 0x56895410 genphy_c45_aneg_done +EXPORT_SYMBOL_GPL vmlinux 0x56948896 spec_ctrl_current +EXPORT_SYMBOL_GPL vmlinux 0x569b6256 dev_pm_opp_enable +EXPORT_SYMBOL_GPL vmlinux 0x569c94dd syscon_regmap_lookup_by_phandle_args +EXPORT_SYMBOL_GPL vmlinux 0x569f4418 regmap_mmio_detach_clk +EXPORT_SYMBOL_GPL vmlinux 0x56b07a6e crypto_hash_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x56b486a5 xenbus_dev_remove +EXPORT_SYMBOL_GPL vmlinux 0x56c1141f debugfs_create_file_size +EXPORT_SYMBOL_GPL vmlinux 0x56d29585 __fsnotify_inode_delete +EXPORT_SYMBOL_GPL vmlinux 0x56dd4194 thermal_zone_device_disable +EXPORT_SYMBOL_GPL vmlinux 0x56e7e192 vp_modern_map_vq_notify +EXPORT_SYMBOL_GPL vmlinux 0x56f4d765 usb_get_current_frame_number +EXPORT_SYMBOL_GPL vmlinux 0x56f5a69c xdp_attachment_setup EXPORT_SYMBOL_GPL vmlinux 0x56fbb130 no_hash_pointers -EXPORT_SYMBOL_GPL vmlinux 0x57099ead spi_controller_dma_unmap_mem_op_data -EXPORT_SYMBOL_GPL vmlinux 0x5722605c xfrm_audit_state_add -EXPORT_SYMBOL_GPL vmlinux 0x57231827 watchdog_set_restart_priority -EXPORT_SYMBOL_GPL vmlinux 0x5737e553 nd_region_dev +EXPORT_SYMBOL_GPL vmlinux 0x5702b479 regulator_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x57380783 xen_unmap_domain_gfn_range +EXPORT_SYMBOL_GPL vmlinux 0x5739b0db nvmem_cell_read_u16 EXPORT_SYMBOL_GPL vmlinux 0x573b5453 ipv6_fixup_options EXPORT_SYMBOL_GPL vmlinux 0x574609c5 apei_exec_write_register_value -EXPORT_SYMBOL_GPL vmlinux 0x576b5582 gnttab_map_refs +EXPORT_SYMBOL_GPL vmlinux 0x574c5417 debugfs_create_ulong +EXPORT_SYMBOL_GPL vmlinux 0x57678b85 device_create_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x57678c20 vfio_pci_core_request +EXPORT_SYMBOL_GPL vmlinux 0x5769b6da __rio_local_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x576cf7c9 icc_link_create EXPORT_SYMBOL_GPL vmlinux 0x57719632 gnttab_grant_foreign_access EXPORT_SYMBOL_GPL vmlinux 0x57732438 inet_twsk_purge -EXPORT_SYMBOL_GPL vmlinux 0x578bd712 gpiochip_get_desc +EXPORT_SYMBOL_GPL vmlinux 0x57795a4f __tracepoint_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x5788526c ata_bmdma_stop EXPORT_SYMBOL_GPL vmlinux 0x578eeb4d hugetlb_cgrp_subsys_enabled_key EXPORT_SYMBOL_GPL vmlinux 0x5790e7a0 pci_unlock_rescan_remove -EXPORT_SYMBOL_GPL vmlinux 0x579a7e1a ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0x579d3028 netlink_strict_get_check EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all -EXPORT_SYMBOL_GPL vmlinux 0x57a969f4 pcc_mbox_free_channel -EXPORT_SYMBOL_GPL vmlinux 0x57b180fd add_page_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0x57b9bf87 rio_mport_get_efb -EXPORT_SYMBOL_GPL vmlinux 0x57be3b3e serdev_device_write_flush +EXPORT_SYMBOL_GPL vmlinux 0x57bc1b36 blk_ksm_is_superset +EXPORT_SYMBOL_GPL vmlinux 0x57d2605b blk_mq_freeze_queue_wait EXPORT_SYMBOL_GPL vmlinux 0x57d4050a xhci_get_endpoint_index -EXPORT_SYMBOL_GPL vmlinux 0x57d4fbe4 dma_get_any_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0x57d8b2fb inode_dax -EXPORT_SYMBOL_GPL vmlinux 0x57dbd407 devm_hwmon_device_register_with_info -EXPORT_SYMBOL_GPL vmlinux 0x57e352a8 debugfs_attr_write +EXPORT_SYMBOL_GPL vmlinux 0x57df25af crypto_unregister_acomps +EXPORT_SYMBOL_GPL vmlinux 0x57e16efa extcon_find_edev_by_node +EXPORT_SYMBOL_GPL vmlinux 0x57edbc19 trace_event_reg EXPORT_SYMBOL_GPL vmlinux 0x57f576b9 mpi_ec_curve_point -EXPORT_SYMBOL_GPL vmlinux 0x57f5fcd2 devm_rtc_device_register EXPORT_SYMBOL_GPL vmlinux 0x57f70547 secure_ipv4_port_ephemeral -EXPORT_SYMBOL_GPL vmlinux 0x57fbfc72 find_get_pid -EXPORT_SYMBOL_GPL vmlinux 0x58184f12 usb_get_dr_mode +EXPORT_SYMBOL_GPL vmlinux 0x580428f3 pci_dev_run_wake +EXPORT_SYMBOL_GPL vmlinux 0x58178d20 bpf_preload_ops +EXPORT_SYMBOL_GPL vmlinux 0x5819ef1e ata_link_online EXPORT_SYMBOL_GPL vmlinux 0x58276f93 cper_next_record_id -EXPORT_SYMBOL_GPL vmlinux 0x582f3dd6 devm_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x583037cf l3mdev_table_lookup_unregister EXPORT_SYMBOL_GPL vmlinux 0x5831e062 cpus_read_trylock -EXPORT_SYMBOL_GPL vmlinux 0x583f7789 register_pernet_device -EXPORT_SYMBOL_GPL vmlinux 0x5845fd3d md_bitmap_resize -EXPORT_SYMBOL_GPL vmlinux 0x585ac475 spi_mem_driver_register_with_owner +EXPORT_SYMBOL_GPL vmlinux 0x5838c02c dw_pcie_setup_rc +EXPORT_SYMBOL_GPL vmlinux 0x58462e63 devlink_port_param_driverinit_value_get +EXPORT_SYMBOL_GPL vmlinux 0x58501478 hrtimer_init_sleeper +EXPORT_SYMBOL_GPL vmlinux 0x58584234 fat_fill_super +EXPORT_SYMBOL_GPL vmlinux 0x585ac734 badblocks_exit +EXPORT_SYMBOL_GPL vmlinux 0x585bbf33 dst_blackhole_mtu EXPORT_SYMBOL_GPL vmlinux 0x586bfc8a alarm_restart +EXPORT_SYMBOL_GPL vmlinux 0x586c72a0 dmaengine_desc_set_metadata_len EXPORT_SYMBOL_GPL vmlinux 0x5879a27d sfp_get_module_info -EXPORT_SYMBOL_GPL vmlinux 0x587e692d sdio_retune_hold_now -EXPORT_SYMBOL_GPL vmlinux 0x58847d12 da903x_read -EXPORT_SYMBOL_GPL vmlinux 0x58887bda sata_scr_valid -EXPORT_SYMBOL_GPL vmlinux 0x58894979 fib6_get_table -EXPORT_SYMBOL_GPL vmlinux 0x588dd459 spi_async -EXPORT_SYMBOL_GPL vmlinux 0x5892f601 bdev_disk_changed -EXPORT_SYMBOL_GPL vmlinux 0x58a24217 nvdimm_region_notify -EXPORT_SYMBOL_GPL vmlinux 0x58a7a6cc devfreq_event_reset_event -EXPORT_SYMBOL_GPL vmlinux 0x58c74c42 fsstack_copy_attr_all -EXPORT_SYMBOL_GPL vmlinux 0x58c8477d __kthread_should_park -EXPORT_SYMBOL_GPL vmlinux 0x58d0d93a usb_put_phy -EXPORT_SYMBOL_GPL vmlinux 0x58d3be02 attribute_container_find_class_device -EXPORT_SYMBOL_GPL vmlinux 0x58d3f347 unwind_next_frame +EXPORT_SYMBOL_GPL vmlinux 0x587a483d pm_generic_resume +EXPORT_SYMBOL_GPL vmlinux 0x588ea7a5 acpi_set_modalias +EXPORT_SYMBOL_GPL vmlinux 0x588fbcdb usb_find_alt_setting +EXPORT_SYMBOL_GPL vmlinux 0x58a11043 rtc_class_close +EXPORT_SYMBOL_GPL vmlinux 0x58a2bcd1 fwnode_property_present +EXPORT_SYMBOL_GPL vmlinux 0x58a37fab dmaengine_unmap_put +EXPORT_SYMBOL_GPL vmlinux 0x58a7f612 gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0x58aa2001 __udp_gso_segment +EXPORT_SYMBOL_GPL vmlinux 0x58ad9bbd regulator_is_enabled EXPORT_SYMBOL_GPL vmlinux 0x58d6311d trace_clock -EXPORT_SYMBOL_GPL vmlinux 0x58d73d74 devm_intel_scu_ipc_dev_get -EXPORT_SYMBOL_GPL vmlinux 0x58d8e460 netdev_walk_all_lower_dev_rcu EXPORT_SYMBOL_GPL vmlinux 0x58def6ca sfp_module_remove -EXPORT_SYMBOL_GPL vmlinux 0x58e93ef5 generic_fsdax_supported -EXPORT_SYMBOL_GPL vmlinux 0x590c9d90 housekeeping_affine -EXPORT_SYMBOL_GPL vmlinux 0x590f5fc2 nvdimm_has_flush -EXPORT_SYMBOL_GPL vmlinux 0x591475bd nvdimm_provider_data -EXPORT_SYMBOL_GPL vmlinux 0x5919e0ea tracing_snapshot_cond_disable -EXPORT_SYMBOL_GPL vmlinux 0x5925b09c irq_domain_reset_irq_data -EXPORT_SYMBOL_GPL vmlinux 0x59390eef gov_attr_set_get -EXPORT_SYMBOL_GPL vmlinux 0x593983d0 __SCK__tp_func_br_fdb_external_learn_add -EXPORT_SYMBOL_GPL vmlinux 0x593ab71e ip6_pol_route -EXPORT_SYMBOL_GPL vmlinux 0x5941225d mnt_want_write -EXPORT_SYMBOL_GPL vmlinux 0x5943226d scsi_host_block -EXPORT_SYMBOL_GPL vmlinux 0x594d9960 devm_fwnode_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x58f396ed blk_queue_max_zone_append_sectors +EXPORT_SYMBOL_GPL vmlinux 0x58f6bfa8 dev_attr_link_power_management_policy +EXPORT_SYMBOL_GPL vmlinux 0x59140728 dev_pm_opp_find_freq_floor +EXPORT_SYMBOL_GPL vmlinux 0x591698d7 devm_extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x591ef486 init_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x59254106 perf_get_aux +EXPORT_SYMBOL_GPL vmlinux 0x5930babe acpi_pci_check_ejectable +EXPORT_SYMBOL_GPL vmlinux 0x59375adc ata_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x5947d5a5 iommu_unmap +EXPORT_SYMBOL_GPL vmlinux 0x5950e996 rdev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x598010b3 relay_subbufs_consumed +EXPORT_SYMBOL_GPL vmlinux 0x598018d0 pcc_mbox_request_channel EXPORT_SYMBOL_GPL vmlinux 0x5986d190 kdb_printf -EXPORT_SYMBOL_GPL vmlinux 0x59892c95 __tracepoint_pelt_dl_tp -EXPORT_SYMBOL_GPL vmlinux 0x59991c6f blk_crypto_evict_key -EXPORT_SYMBOL_GPL vmlinux 0x599b60b1 edac_pci_handle_pe -EXPORT_SYMBOL_GPL vmlinux 0x59a4c753 wm8350_reg_unlock -EXPORT_SYMBOL_GPL vmlinux 0x59a7898f regulator_set_voltage_time_sel -EXPORT_SYMBOL_GPL vmlinux 0x59acaeb7 irq_chip_mask_parent +EXPORT_SYMBOL_GPL vmlinux 0x599d28a0 wbt_enable_default +EXPORT_SYMBOL_GPL vmlinux 0x59a686ba pci_hp_destroy EXPORT_SYMBOL_GPL vmlinux 0x59b2adbf input_ff_effect_from_user -EXPORT_SYMBOL_GPL vmlinux 0x59bd6895 xenbus_frontend_closed -EXPORT_SYMBOL_GPL vmlinux 0x59be61f0 devm_acpi_dev_remove_driver_gpios -EXPORT_SYMBOL_GPL vmlinux 0x59c11257 crypto_inst_setname +EXPORT_SYMBOL_GPL vmlinux 0x59b8997d dma_buf_export EXPORT_SYMBOL_GPL vmlinux 0x59c43dc9 __traceiter_non_standard_event EXPORT_SYMBOL_GPL vmlinux 0x59c6aff4 irq_set_affinity_hint +EXPORT_SYMBOL_GPL vmlinux 0x59cf574d pci_assign_unassigned_bridge_resources +EXPORT_SYMBOL_GPL vmlinux 0x59d300cf ip6_datagram_send_ctl EXPORT_SYMBOL_GPL vmlinux 0x59e0f053 fpu_free_guest_fpstate +EXPORT_SYMBOL_GPL vmlinux 0x59e7979b genphy_c45_loopback EXPORT_SYMBOL_GPL vmlinux 0x59f32720 mpi_subm -EXPORT_SYMBOL_GPL vmlinux 0x59f6c644 cn_add_callback +EXPORT_SYMBOL_GPL vmlinux 0x59fcdee4 acct_bioset_exit +EXPORT_SYMBOL_GPL vmlinux 0x5a028114 __SCK__tp_func_block_rq_insert +EXPORT_SYMBOL_GPL vmlinux 0x5a028285 serial8250_em485_config EXPORT_SYMBOL_GPL vmlinux 0x5a1d134a rcu_momentary_dyntick_idle -EXPORT_SYMBOL_GPL vmlinux 0x5a2624f1 dev_pm_opp_is_turbo -EXPORT_SYMBOL_GPL vmlinux 0x5a30f10e extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5a3f49f2 regmap_field_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0x5a41afce apply_to_existing_page_range +EXPORT_SYMBOL_GPL vmlinux 0x5a420630 alloc_page_buffers EXPORT_SYMBOL_GPL vmlinux 0x5a49dbc9 timerqueue_del -EXPORT_SYMBOL_GPL vmlinux 0x5a512bc1 transport_remove_device -EXPORT_SYMBOL_GPL vmlinux 0x5a53ac5f shmem_truncate_range -EXPORT_SYMBOL_GPL vmlinux 0x5a62b763 fib_add_nexthop +EXPORT_SYMBOL_GPL vmlinux 0x5a50e506 usb_phy_set_event +EXPORT_SYMBOL_GPL vmlinux 0x5a57895d devfreq_get_devfreq_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x5a64c083 lwtunnel_state_alloc EXPORT_SYMBOL_GPL vmlinux 0x5a6cdb52 nf_ct_zone_dflt -EXPORT_SYMBOL_GPL vmlinux 0x5a7847f9 sk_detach_filter +EXPORT_SYMBOL_GPL vmlinux 0x5a6e6046 pci_enable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x5a723f80 scsi_free_sgtables EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify -EXPORT_SYMBOL_GPL vmlinux 0x5a8e20f1 rio_request_mport_dma -EXPORT_SYMBOL_GPL vmlinux 0x5a98cc5c xenbus_watch_pathfmt +EXPORT_SYMBOL_GPL vmlinux 0x5a7f20a0 pci_hp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0x5a9365fa __SCK__tp_func_sched_cpu_capacity_tp EXPORT_SYMBOL_GPL vmlinux 0x5aa70984 acpi_reduced_hardware +EXPORT_SYMBOL_GPL vmlinux 0x5aa8feca iommu_enable_nesting +EXPORT_SYMBOL_GPL vmlinux 0x5aae81fd xenbus_switch_state EXPORT_SYMBOL_GPL vmlinux 0x5ab09745 edac_get_owner -EXPORT_SYMBOL_GPL vmlinux 0x5abf503d fuse_conn_init -EXPORT_SYMBOL_GPL vmlinux 0x5accfbdd __traceiter_rpm_suspend -EXPORT_SYMBOL_GPL vmlinux 0x5ad29594 exportfs_encode_fh -EXPORT_SYMBOL_GPL vmlinux 0x5ad5c25e ata_common_sdev_attrs -EXPORT_SYMBOL_GPL vmlinux 0x5b0673f6 of_devfreq_cooling_register -EXPORT_SYMBOL_GPL vmlinux 0x5b1f297c i2c_parse_fw_timings +EXPORT_SYMBOL_GPL vmlinux 0x5ab8c2b4 regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5acb0c4a is_skb_forwardable +EXPORT_SYMBOL_GPL vmlinux 0x5adad1e4 scsi_check_sense +EXPORT_SYMBOL_GPL vmlinux 0x5b12ee33 serial8250_em485_start_tx +EXPORT_SYMBOL_GPL vmlinux 0x5b1973e2 tty_ldisc_ref_wait +EXPORT_SYMBOL_GPL vmlinux 0x5b199d63 da903x_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5b1ddb15 proc_mkdir_data EXPORT_SYMBOL_GPL vmlinux 0x5b21ceff ring_buffer_iter_peek -EXPORT_SYMBOL_GPL vmlinux 0x5b35001f put_device +EXPORT_SYMBOL_GPL vmlinux 0x5b2fb1b2 subsys_system_register EXPORT_SYMBOL_GPL vmlinux 0x5b35c4f9 vfio_group_set_kvm -EXPORT_SYMBOL_GPL vmlinux 0x5b4b7abc ipv6_stub +EXPORT_SYMBOL_GPL vmlinux 0x5b3feed8 usb_sg_cancel +EXPORT_SYMBOL_GPL vmlinux 0x5b517245 devm_acpi_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0x5b5df9f7 driver_deferred_probe_check_state +EXPORT_SYMBOL_GPL vmlinux 0x5b5ec802 irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x5b6a1432 sk_msg_zerocopy_from_iter EXPORT_SYMBOL_GPL vmlinux 0x5b6b0329 swiotlb_max_segment -EXPORT_SYMBOL_GPL vmlinux 0x5b7a9d4d do_tcp_sendpages -EXPORT_SYMBOL_GPL vmlinux 0x5ba60277 ohci_hub_status_data -EXPORT_SYMBOL_GPL vmlinux 0x5ba900d4 kthread_flush_worker -EXPORT_SYMBOL_GPL vmlinux 0x5bb2b581 regmap_field_update_bits_base -EXPORT_SYMBOL_GPL vmlinux 0x5bb7c932 tps6586x_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0x5b6e0073 devres_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x5b7b6f82 dev_pm_domain_attach_by_name +EXPORT_SYMBOL_GPL vmlinux 0x5b84654a skcipher_walk_complete +EXPORT_SYMBOL_GPL vmlinux 0x5b85e5df serial8250_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0x5b8c5730 pci_create_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x5b9267ff debugfs_file_get +EXPORT_SYMBOL_GPL vmlinux 0x5bb759a7 pinctrl_utils_free_map EXPORT_SYMBOL_GPL vmlinux 0x5bbdfa26 scatterwalk_ffwd EXPORT_SYMBOL_GPL vmlinux 0x5bc950fe regulator_irq_helper_cancel EXPORT_SYMBOL_GPL vmlinux 0x5bd0748f crypto_del_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x5bd98886 is_virtio_device EXPORT_SYMBOL_GPL vmlinux 0x5bdae35b usb_phy_roothub_set_mode EXPORT_SYMBOL_GPL vmlinux 0x5bdbac4e rcu_unexpedite_gp -EXPORT_SYMBOL_GPL vmlinux 0x5bf26fdc ata_scsi_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x5be8d8be usb_autopm_get_interface +EXPORT_SYMBOL_GPL vmlinux 0x5bf93fb6 gpiod_set_debounce +EXPORT_SYMBOL_GPL vmlinux 0x5bffb693 sync_page_io EXPORT_SYMBOL_GPL vmlinux 0x5c0c165e __SCT__tp_func_neigh_update -EXPORT_SYMBOL_GPL vmlinux 0x5c0d53f9 devlink_resource_occ_get_register EXPORT_SYMBOL_GPL vmlinux 0x5c0eaf31 acpi_dev_resource_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x5c205bb9 vfio_pci_core_unregister_device EXPORT_SYMBOL_GPL vmlinux 0x5c2bcd37 bpf_warn_invalid_xdp_action +EXPORT_SYMBOL_GPL vmlinux 0x5c2c97c6 sock_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0x5c2c9ac7 pci_epf_create EXPORT_SYMBOL_GPL vmlinux 0x5c309e65 hibernate_quiet_exec -EXPORT_SYMBOL_GPL vmlinux 0x5c34cdc5 pinctrl_utils_reserve_map -EXPORT_SYMBOL_GPL vmlinux 0x5c34ead3 iptunnel_handle_offloads -EXPORT_SYMBOL_GPL vmlinux 0x5c36f8ee power_supply_get_by_name -EXPORT_SYMBOL_GPL vmlinux 0x5c39b2c5 ncsi_vlan_rx_add_vid +EXPORT_SYMBOL_GPL vmlinux 0x5c4b0ef3 tpm1_getcap +EXPORT_SYMBOL_GPL vmlinux 0x5c4cca9e __xenbus_register_frontend +EXPORT_SYMBOL_GPL vmlinux 0x5c4f9af7 serial8250_handle_irq EXPORT_SYMBOL_GPL vmlinux 0x5c5a1b16 tick_broadcast_control -EXPORT_SYMBOL_GPL vmlinux 0x5c5b800d crypto_aead_setauthsize EXPORT_SYMBOL_GPL vmlinux 0x5c5c6826 phy_10gbit_full_features -EXPORT_SYMBOL_GPL vmlinux 0x5c5fb2ab ethtool_set_ethtool_phy_ops -EXPORT_SYMBOL_GPL vmlinux 0x5c63c372 ping_getfrag -EXPORT_SYMBOL_GPL vmlinux 0x5c6b7a26 blkcg_activate_policy -EXPORT_SYMBOL_GPL vmlinux 0x5c765bbe vfio_pci_core_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x5c8d4b38 crypto_register_alg +EXPORT_SYMBOL_GPL vmlinux 0x5c9bea5d task_cls_state EXPORT_SYMBOL_GPL vmlinux 0x5cab9945 unregister_xenbus_watch EXPORT_SYMBOL_GPL vmlinux 0x5cad8fc3 power_supply_ocv2cap_simple -EXPORT_SYMBOL_GPL vmlinux 0x5cb35f13 __mdiobus_modify_changed -EXPORT_SYMBOL_GPL vmlinux 0x5cba2885 hwspin_lock_request -EXPORT_SYMBOL_GPL vmlinux 0x5cbcf6d3 __irq_alloc_domain_generic_chips -EXPORT_SYMBOL_GPL vmlinux 0x5cc0218d agp_remove_bridge -EXPORT_SYMBOL_GPL vmlinux 0x5ccd79c5 fsverity_verify_bio -EXPORT_SYMBOL_GPL vmlinux 0x5cd6179f rio_release_dma -EXPORT_SYMBOL_GPL vmlinux 0x5cdaccd3 dev_pm_opp_sync_regulators -EXPORT_SYMBOL_GPL vmlinux 0x5ce20714 crypto_enqueue_request_head -EXPORT_SYMBOL_GPL vmlinux 0x5ce35880 md_new_event +EXPORT_SYMBOL_GPL vmlinux 0x5cae6f63 iomap_dio_iopoll +EXPORT_SYMBOL_GPL vmlinux 0x5cb328ea led_sysfs_enable +EXPORT_SYMBOL_GPL vmlinux 0x5cbcac4f devlink_dpipe_match_put +EXPORT_SYMBOL_GPL vmlinux 0x5cc4963c validate_xmit_skb_list EXPORT_SYMBOL_GPL vmlinux 0x5cede0a7 xdp_flush_frame_bulk -EXPORT_SYMBOL_GPL vmlinux 0x5cf8ef60 tcp_is_ulp_esp -EXPORT_SYMBOL_GPL vmlinux 0x5d0907ec iterate_mounts -EXPORT_SYMBOL_GPL vmlinux 0x5d0c1781 vfio_device_get_from_dev -EXPORT_SYMBOL_GPL vmlinux 0x5d12af5a scsi_flush_work +EXPORT_SYMBOL_GPL vmlinux 0x5cf0c937 dma_buf_mmap +EXPORT_SYMBOL_GPL vmlinux 0x5d09697a pci_iov_virtfn_devfn EXPORT_SYMBOL_GPL vmlinux 0x5d17148b apei_write -EXPORT_SYMBOL_GPL vmlinux 0x5d267629 debugfs_create_u32 +EXPORT_SYMBOL_GPL vmlinux 0x5d19e7ff get_net_ns_by_pid +EXPORT_SYMBOL_GPL vmlinux 0x5d1d2144 perf_pmu_register +EXPORT_SYMBOL_GPL vmlinux 0x5d29cbdf sfp_add_phy EXPORT_SYMBOL_GPL vmlinux 0x5d2aa5fb rhashtable_walk_peek +EXPORT_SYMBOL_GPL vmlinux 0x5d2ad079 irq_generic_chip_ops EXPORT_SYMBOL_GPL vmlinux 0x5d2bc42a reset_control_rearm -EXPORT_SYMBOL_GPL vmlinux 0x5d323fcb __SCK__tp_func_pelt_dl_tp -EXPORT_SYMBOL_GPL vmlinux 0x5d340e5f pci_scan_child_bus -EXPORT_SYMBOL_GPL vmlinux 0x5d3ba0cb usb_alloc_dev -EXPORT_SYMBOL_GPL vmlinux 0x5d45db63 vfs_listxattr -EXPORT_SYMBOL_GPL vmlinux 0x5d51e288 bsg_remove_queue -EXPORT_SYMBOL_GPL vmlinux 0x5d57c7af is_dock_device -EXPORT_SYMBOL_GPL vmlinux 0x5d5ef50e filemap_read -EXPORT_SYMBOL_GPL vmlinux 0x5d67e879 tcp_sendmsg_locked -EXPORT_SYMBOL_GPL vmlinux 0x5d752b68 acpi_get_pci_dev -EXPORT_SYMBOL_GPL vmlinux 0x5d7780ef query_asymmetric_key -EXPORT_SYMBOL_GPL vmlinux 0x5d7edb53 pwm_put +EXPORT_SYMBOL_GPL vmlinux 0x5d3a4311 tps6586x_read +EXPORT_SYMBOL_GPL vmlinux 0x5d49f030 pci_epc_set_msix +EXPORT_SYMBOL_GPL vmlinux 0x5d5f26fa crypto_stats_get +EXPORT_SYMBOL_GPL vmlinux 0x5d811ad8 bsg_remove_queue EXPORT_SYMBOL_GPL vmlinux 0x5d8476d3 bpf_sk_storage_diag_alloc -EXPORT_SYMBOL_GPL vmlinux 0x5d8c0537 spi_mem_exec_op -EXPORT_SYMBOL_GPL vmlinux 0x5d921e75 rio_register_mport +EXPORT_SYMBOL_GPL vmlinux 0x5d9286f3 uprobe_register EXPORT_SYMBOL_GPL vmlinux 0x5d9317d7 uv_teardown_irq +EXPORT_SYMBOL_GPL vmlinux 0x5d954aa9 fat_flush_inodes +EXPORT_SYMBOL_GPL vmlinux 0x5d9c069c fs_dax_get_by_bdev EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact -EXPORT_SYMBOL_GPL vmlinux 0x5db58d30 regulator_list_voltage_linear_range -EXPORT_SYMBOL_GPL vmlinux 0x5dba2a46 perf_event_disable -EXPORT_SYMBOL_GPL vmlinux 0x5dbaa4ec tcp_bpf_sendmsg_redir +EXPORT_SYMBOL_GPL vmlinux 0x5db0c19b ata_link_abort +EXPORT_SYMBOL_GPL vmlinux 0x5db5691e shmem_zero_setup +EXPORT_SYMBOL_GPL vmlinux 0x5dbc240b extcon_unregister_notifier EXPORT_SYMBOL_GPL vmlinux 0x5dbcfa4f boot_cpu_physical_apicid -EXPORT_SYMBOL_GPL vmlinux 0x5dcb1962 ata_pci_device_do_suspend -EXPORT_SYMBOL_GPL vmlinux 0x5dcb407f dev_pm_opp_detach_genpd -EXPORT_SYMBOL_GPL vmlinux 0x5dd050b2 usb_role_switch_register -EXPORT_SYMBOL_GPL vmlinux 0x5dd85ad1 sysfs_merge_group -EXPORT_SYMBOL_GPL vmlinux 0x5ddca142 xenbus_map_ring_valloc -EXPORT_SYMBOL_GPL vmlinux 0x5df9a114 vp_modern_set_features -EXPORT_SYMBOL_GPL vmlinux 0x5e0940e6 xfrm_dev_state_add +EXPORT_SYMBOL_GPL vmlinux 0x5dc4a5c2 xenbus_frontend_closed +EXPORT_SYMBOL_GPL vmlinux 0x5de6cafa mbox_request_channel_byname +EXPORT_SYMBOL_GPL vmlinux 0x5de8b4e1 regulator_set_voltage_sel_pickable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x5df1aba1 do_xdp_generic +EXPORT_SYMBOL_GPL vmlinux 0x5e0b3d5d iommu_sva_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0x5e0be171 edac_pci_free_ctl_info EXPORT_SYMBOL_GPL vmlinux 0x5e173309 cpu_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x5e33a4a3 md_stop -EXPORT_SYMBOL_GPL vmlinux 0x5e3b7234 wb_writeout_inc -EXPORT_SYMBOL_GPL vmlinux 0x5e402d80 dev_pm_opp_attach_genpd -EXPORT_SYMBOL_GPL vmlinux 0x5e45e107 inet_csk_route_child_sock -EXPORT_SYMBOL_GPL vmlinux 0x5e4a1f34 ip6_flush_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x5e28f2f2 perf_tp_event +EXPORT_SYMBOL_GPL vmlinux 0x5e2e2f34 ping_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x5e36598f devlink_port_params_register +EXPORT_SYMBOL_GPL vmlinux 0x5e43e1d1 platform_unregister_drivers +EXPORT_SYMBOL_GPL vmlinux 0x5e4f48aa kernfs_notify EXPORT_SYMBOL_GPL vmlinux 0x5e515be6 ktime_get_ts64 -EXPORT_SYMBOL_GPL vmlinux 0x5e5da01b wakeup_sources_walk_start -EXPORT_SYMBOL_GPL vmlinux 0x5e7526ac debugfs_create_x16 +EXPORT_SYMBOL_GPL vmlinux 0x5e560fe7 switchdev_bridge_port_offload +EXPORT_SYMBOL_GPL vmlinux 0x5e56142e ethnl_cable_test_result +EXPORT_SYMBOL_GPL vmlinux 0x5e64ce27 platform_device_put EXPORT_SYMBOL_GPL vmlinux 0x5e798ffb divider_get_val -EXPORT_SYMBOL_GPL vmlinux 0x5e7bb0ef irq_gc_ack_set_bit -EXPORT_SYMBOL_GPL vmlinux 0x5e7f704c usb_set_interface -EXPORT_SYMBOL_GPL vmlinux 0x5e829ebc platform_get_mem_or_io +EXPORT_SYMBOL_GPL vmlinux 0x5e832dfc device_show_int EXPORT_SYMBOL_GPL vmlinux 0x5e85415b ring_buffer_consume -EXPORT_SYMBOL_GPL vmlinux 0x5e8866f1 iomap_writepages +EXPORT_SYMBOL_GPL vmlinux 0x5e9b0cd7 devlink_dpipe_headers_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5eabf867 device_pm_wait_for_dev EXPORT_SYMBOL_GPL vmlinux 0x5eae5408 clk_is_enabled_when_prepared -EXPORT_SYMBOL_GPL vmlinux 0x5eb95ac2 inet_twsk_alloc -EXPORT_SYMBOL_GPL vmlinux 0x5ec337aa devm_hwspin_lock_request_specific +EXPORT_SYMBOL_GPL vmlinux 0x5ebeb9fd sdio_memcpy_fromio +EXPORT_SYMBOL_GPL vmlinux 0x5ec17a07 clk_register +EXPORT_SYMBOL_GPL vmlinux 0x5ec2db59 vfs_setlease EXPORT_SYMBOL_GPL vmlinux 0x5ec62549 ata_dev_classify -EXPORT_SYMBOL_GPL vmlinux 0x5ecd8469 dmaengine_desc_get_metadata_ptr -EXPORT_SYMBOL_GPL vmlinux 0x5edb844e phy_driver_is_genphy_10g -EXPORT_SYMBOL_GPL vmlinux 0x5efafd2b tps6586x_get_version -EXPORT_SYMBOL_GPL vmlinux 0x5efc7cc9 netdev_is_rx_handler_busy -EXPORT_SYMBOL_GPL vmlinux 0x5f1e12d9 wm8400_reset_codec_reg_cache +EXPORT_SYMBOL_GPL vmlinux 0x5ecb3ebc pci_epc_get_msi +EXPORT_SYMBOL_GPL vmlinux 0x5eda7fed nf_nat_hook +EXPORT_SYMBOL_GPL vmlinux 0x5f0c92e2 devlink_dpipe_headers_register +EXPORT_SYMBOL_GPL vmlinux 0x5f1999b8 gnttab_pages_set_private +EXPORT_SYMBOL_GPL vmlinux 0x5f1b3268 ata_bmdma_setup EXPORT_SYMBOL_GPL vmlinux 0x5f23e3fa insert_resource -EXPORT_SYMBOL_GPL vmlinux 0x5f29eca2 iommu_group_get +EXPORT_SYMBOL_GPL vmlinux 0x5f28ea49 edac_mc_del_mc EXPORT_SYMBOL_GPL vmlinux 0x5f2da8c4 check_tsc_unstable EXPORT_SYMBOL_GPL vmlinux 0x5f2fcc83 ioremap_uc -EXPORT_SYMBOL_GPL vmlinux 0x5f488f74 simple_attr_open -EXPORT_SYMBOL_GPL vmlinux 0x5f5283c0 led_get_default_pattern -EXPORT_SYMBOL_GPL vmlinux 0x5f5ebfab mbox_send_message -EXPORT_SYMBOL_GPL vmlinux 0x5f68679f fscrypt_get_symlink +EXPORT_SYMBOL_GPL vmlinux 0x5f37c3ac debugfs_file_put +EXPORT_SYMBOL_GPL vmlinux 0x5f381bce dma_buf_unpin +EXPORT_SYMBOL_GPL vmlinux 0x5f3bbc12 dma_get_slave_caps +EXPORT_SYMBOL_GPL vmlinux 0x5f491048 ip6_route_lookup +EXPORT_SYMBOL_GPL vmlinux 0x5f58fbd5 fuse_conn_init +EXPORT_SYMBOL_GPL vmlinux 0x5f592b43 sdio_get_host_pm_caps +EXPORT_SYMBOL_GPL vmlinux 0x5f5ce2f1 i2c_acpi_new_device +EXPORT_SYMBOL_GPL vmlinux 0x5f6701de irq_chip_release_resources_parent EXPORT_SYMBOL_GPL vmlinux 0x5f6f1e9e dax_get_private -EXPORT_SYMBOL_GPL vmlinux 0x5f7f9d21 tty_kopen_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x5f850c00 pci_find_next_capability -EXPORT_SYMBOL_GPL vmlinux 0x5f97d361 i2c_adapter_depth -EXPORT_SYMBOL_GPL vmlinux 0x5f980822 pinctrl_find_gpio_range_from_pin_nolock -EXPORT_SYMBOL_GPL vmlinux 0x5f9be62b devm_extcon_dev_allocate -EXPORT_SYMBOL_GPL vmlinux 0x5f9bf106 fwnode_get_named_gpiod -EXPORT_SYMBOL_GPL vmlinux 0x5f9d8842 shash_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0x5f951a8b fscrypt_fname_siphash +EXPORT_SYMBOL_GPL vmlinux 0x5f9712f2 fwnode_property_read_u64_array EXPORT_SYMBOL_GPL vmlinux 0x5fa625ed mpi_ec_mul_point -EXPORT_SYMBOL_GPL vmlinux 0x5fb0f661 led_blink_set_oneshot -EXPORT_SYMBOL_GPL vmlinux 0x5fb8b4cd clk_bulk_get_optional -EXPORT_SYMBOL_GPL vmlinux 0x5fbe596b sata_pmp_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x5fb53c27 __ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0x5fc955b9 sbitmap_queue_show +EXPORT_SYMBOL_GPL vmlinux 0x5fce2346 tty_mode_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x5fdf4ff4 sk_psock_msg_verdict EXPORT_SYMBOL_GPL vmlinux 0x5fdfa2c1 amd_pmu_enable_virt -EXPORT_SYMBOL_GPL vmlinux 0x5feee425 devlink_port_health_reporter_create -EXPORT_SYMBOL_GPL vmlinux 0x5ff9adbc auxiliary_device_init -EXPORT_SYMBOL_GPL vmlinux 0x5ffec8f9 driver_create_file +EXPORT_SYMBOL_GPL vmlinux 0x5fee651c ata_host_suspend +EXPORT_SYMBOL_GPL vmlinux 0x5ff5bb3b icc_nodes_remove +EXPORT_SYMBOL_GPL vmlinux 0x5ff71cec pm_clk_create EXPORT_SYMBOL_GPL vmlinux 0x60069ee1 inet_ehash_locks_alloc EXPORT_SYMBOL_GPL vmlinux 0x60091316 clk_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x600c8a46 ping_queue_rcv_skb -EXPORT_SYMBOL_GPL vmlinux 0x601b1e42 trace_event_reg -EXPORT_SYMBOL_GPL vmlinux 0x60241787 __device_reset -EXPORT_SYMBOL_GPL vmlinux 0x6037d855 regmap_mmio_detach_clk -EXPORT_SYMBOL_GPL vmlinux 0x603ad549 device_property_read_string -EXPORT_SYMBOL_GPL vmlinux 0x603c3c5c netlink_remove_tap +EXPORT_SYMBOL_GPL vmlinux 0x600bdd16 __platform_driver_probe +EXPORT_SYMBOL_GPL vmlinux 0x600d2693 wakeup_source_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6036fbde seg6_do_srh_encap +EXPORT_SYMBOL_GPL vmlinux 0x603b7ba0 ata_sff_queue_pio_task EXPORT_SYMBOL_GPL vmlinux 0x603d0d51 acpi_os_map_iomem -EXPORT_SYMBOL_GPL vmlinux 0x604331d0 badblocks_check -EXPORT_SYMBOL_GPL vmlinux 0x604684a8 pm_clk_add_clk EXPORT_SYMBOL_GPL vmlinux 0x604722fd devices_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x60675304 iommu_present -EXPORT_SYMBOL_GPL vmlinux 0x606acea6 fuse_simple_background -EXPORT_SYMBOL_GPL vmlinux 0x606c5f4d debugfs_create_file -EXPORT_SYMBOL_GPL vmlinux 0x6078d1a9 pm_generic_resume_noirq +EXPORT_SYMBOL_GPL vmlinux 0x6053e25c usb_hcd_unmap_urb_setup_for_dma EXPORT_SYMBOL_GPL vmlinux 0x607c4683 devlink_info_version_fixed_put -EXPORT_SYMBOL_GPL vmlinux 0x60817255 ata_bmdma_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x608db8bd da9052_adc_read_temp +EXPORT_SYMBOL_GPL vmlinux 0x608183d7 spi_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0x6089b6e4 gpiochip_populate_parent_fwspec_fourcell EXPORT_SYMBOL_GPL vmlinux 0x6091797f synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x6097eeef synth_event_gen_cmd_array_start EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier EXPORT_SYMBOL_GPL vmlinux 0x60a634c4 vfio_info_cap_add -EXPORT_SYMBOL_GPL vmlinux 0x60b59e52 devm_hwrng_register -EXPORT_SYMBOL_GPL vmlinux 0x60be0c17 pin_get_name -EXPORT_SYMBOL_GPL vmlinux 0x60c203eb led_trigger_write -EXPORT_SYMBOL_GPL vmlinux 0x60e21c8b netdev_walk_all_lower_dev +EXPORT_SYMBOL_GPL vmlinux 0x60adcc8a regmap_can_raw_write +EXPORT_SYMBOL_GPL vmlinux 0x60bd1a93 ip6_flush_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x60ccf39f msg_zerocopy_put_abort +EXPORT_SYMBOL_GPL vmlinux 0x60d154e0 xfrm_register_translator +EXPORT_SYMBOL_GPL vmlinux 0x60eb28a2 dpm_for_each_dev EXPORT_SYMBOL_GPL vmlinux 0x60ebc96f ring_buffer_read_prepare EXPORT_SYMBOL_GPL vmlinux 0x60f99e1b cppc_set_perf -EXPORT_SYMBOL_GPL vmlinux 0x610b6dad blk_mq_quiesce_queue -EXPORT_SYMBOL_GPL vmlinux 0x61122fa2 vfio_pci_core_init_device -EXPORT_SYMBOL_GPL vmlinux 0x611b549a mmc_regulator_set_vqmmc +EXPORT_SYMBOL_GPL vmlinux 0x610305e2 nf_queue +EXPORT_SYMBOL_GPL vmlinux 0x610db812 ata_dev_pair EXPORT_SYMBOL_GPL vmlinux 0x611cfa85 klist_add_tail EXPORT_SYMBOL_GPL vmlinux 0x6129fb93 sfp_remove_phy -EXPORT_SYMBOL_GPL vmlinux 0x612af733 rio_enable_rx_tx_port EXPORT_SYMBOL_GPL vmlinux 0x612bfd89 errno_to_blk_status -EXPORT_SYMBOL_GPL vmlinux 0x612f3be8 phy_start_machine -EXPORT_SYMBOL_GPL vmlinux 0x61429dce devm_regmap_field_free -EXPORT_SYMBOL_GPL vmlinux 0x614481ae get_pid_task -EXPORT_SYMBOL_GPL vmlinux 0x6157a79f dev_pm_opp_set_opp +EXPORT_SYMBOL_GPL vmlinux 0x6144efbb reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x6146e16b memunmap_pages +EXPORT_SYMBOL_GPL vmlinux 0x61508f1c i2c_acpi_client_count EXPORT_SYMBOL_GPL vmlinux 0x615beeb5 __cpuhp_state_add_instance EXPORT_SYMBOL_GPL vmlinux 0x615d3447 kernel_read_file_from_path -EXPORT_SYMBOL_GPL vmlinux 0x615fbe76 rio_add_net -EXPORT_SYMBOL_GPL vmlinux 0x6163dd5e skb_morph -EXPORT_SYMBOL_GPL vmlinux 0x616cb463 platform_bus -EXPORT_SYMBOL_GPL vmlinux 0x61723919 xenbus_match EXPORT_SYMBOL_GPL vmlinux 0x617b026c hwrng_register EXPORT_SYMBOL_GPL vmlinux 0x6181e79f timerqueue_add -EXPORT_SYMBOL_GPL vmlinux 0x6181f5ec clockevents_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0x618a5630 phy_start_machine +EXPORT_SYMBOL_GPL vmlinux 0x61914d06 ping_hash +EXPORT_SYMBOL_GPL vmlinux 0x61941483 raw_seq_stop EXPORT_SYMBOL_GPL vmlinux 0x6198dfea __ring_buffer_alloc EXPORT_SYMBOL_GPL vmlinux 0x6199ad5d crypto_has_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x619af3a4 __sync_filesystem EXPORT_SYMBOL_GPL vmlinux 0x619d2eca acpi_gpio_get_irq_resource -EXPORT_SYMBOL_GPL vmlinux 0x61a1e693 gpiod_set_raw_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x61a98b90 ata_ncq_sdev_attrs -EXPORT_SYMBOL_GPL vmlinux 0x61aae252 pm_generic_freeze_late -EXPORT_SYMBOL_GPL vmlinux 0x61adc97d bpf_verifier_log_write +EXPORT_SYMBOL_GPL vmlinux 0x61adb224 dst_blackhole_redirect EXPORT_SYMBOL_GPL vmlinux 0x61ae1d2d xas_pause -EXPORT_SYMBOL_GPL vmlinux 0x61c227f3 __fl6_sock_lookup -EXPORT_SYMBOL_GPL vmlinux 0x61cb569e skb_complete_tx_timestamp -EXPORT_SYMBOL_GPL vmlinux 0x61d83276 crypto_shash_setkey -EXPORT_SYMBOL_GPL vmlinux 0x61dc6806 crypto_stats_akcipher_encrypt -EXPORT_SYMBOL_GPL vmlinux 0x61df3284 fat_time_unix2fat -EXPORT_SYMBOL_GPL vmlinux 0x61e0481b disk_force_media_change -EXPORT_SYMBOL_GPL vmlinux 0x61e7f209 irq_domain_create_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0x61b443f8 x86_spec_ctrl_current +EXPORT_SYMBOL_GPL vmlinux 0x61b78414 crypto_alg_extsize +EXPORT_SYMBOL_GPL vmlinux 0x61e1c89d bpf_trace_run4 +EXPORT_SYMBOL_GPL vmlinux 0x61eca6b8 usb_interrupt_msg +EXPORT_SYMBOL_GPL vmlinux 0x61eeb1ea nd_tbl EXPORT_SYMBOL_GPL vmlinux 0x61f67c92 phy_gbit_features_array -EXPORT_SYMBOL_GPL vmlinux 0x6214caa2 dev_coredumpsg -EXPORT_SYMBOL_GPL vmlinux 0x6219b1c3 crypto_shash_finup +EXPORT_SYMBOL_GPL vmlinux 0x620355e1 bpf_offload_dev_match +EXPORT_SYMBOL_GPL vmlinux 0x622b72e5 devm_gpio_request_one EXPORT_SYMBOL_GPL vmlinux 0x622c7922 register_oom_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6235bf37 screen_pos EXPORT_SYMBOL_GPL vmlinux 0x62377a7b blk_io_schedule +EXPORT_SYMBOL_GPL vmlinux 0x623d850d security_path_link EXPORT_SYMBOL_GPL vmlinux 0x6246a629 synchronize_rcu_tasks_trace -EXPORT_SYMBOL_GPL vmlinux 0x6247d6af syscon_regmap_lookup_by_phandle_optional -EXPORT_SYMBOL_GPL vmlinux 0x624a9ccf rio_alloc_net +EXPORT_SYMBOL_GPL vmlinux 0x624f1474 dev_pm_opp_get_sharing_cpus EXPORT_SYMBOL_GPL vmlinux 0x6257dda7 clk_rate_exclusive_get EXPORT_SYMBOL_GPL vmlinux 0x6259d291 clk_restore_context -EXPORT_SYMBOL_GPL vmlinux 0x627010af nf_nat_hook -EXPORT_SYMBOL_GPL vmlinux 0x628e83c7 devm_hwmon_device_register_with_groups -EXPORT_SYMBOL_GPL vmlinux 0x62973f94 pci_disable_ats -EXPORT_SYMBOL_GPL vmlinux 0x62af8b1f bio_iov_iter_get_pages -EXPORT_SYMBOL_GPL vmlinux 0x62b24a72 genphy_c45_read_status -EXPORT_SYMBOL_GPL vmlinux 0x62b4e9e1 ethnl_cable_test_step +EXPORT_SYMBOL_GPL vmlinux 0x625b32ee wakeup_source_register +EXPORT_SYMBOL_GPL vmlinux 0x626fc408 of_icc_get +EXPORT_SYMBOL_GPL vmlinux 0x627a10b6 spi_mem_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x628782ac i2c_acpi_find_bus_speed +EXPORT_SYMBOL_GPL vmlinux 0x628e4c11 pm_generic_restore_early +EXPORT_SYMBOL_GPL vmlinux 0x62aa3bb2 __sock_recv_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x62ad631e get_kernel_pages +EXPORT_SYMBOL_GPL vmlinux 0x62b1e19b devlink_net +EXPORT_SYMBOL_GPL vmlinux 0x62b2e275 adp5520_write +EXPORT_SYMBOL_GPL vmlinux 0x62b3cc2d __fsnotify_parent EXPORT_SYMBOL_GPL vmlinux 0x62bb09bf clocks_calc_mult_shift -EXPORT_SYMBOL_GPL vmlinux 0x62c43151 bpf_prog_select_runtime -EXPORT_SYMBOL_GPL vmlinux 0x62c4e48c crypto_unregister_instance -EXPORT_SYMBOL_GPL vmlinux 0x62c7fa56 crypto_lookup_template -EXPORT_SYMBOL_GPL vmlinux 0x62d82ce1 fuse_send_init -EXPORT_SYMBOL_GPL vmlinux 0x62e5e7e7 dev_attr_em_message -EXPORT_SYMBOL_GPL vmlinux 0x62ee9dbd dev_pm_opp_put_clkname -EXPORT_SYMBOL_GPL vmlinux 0x62f31345 do_splice_to -EXPORT_SYMBOL_GPL vmlinux 0x62fd0a19 __reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x62c1f3e4 crypto_stats_akcipher_sign +EXPORT_SYMBOL_GPL vmlinux 0x62c68b7e usb_add_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0x62d27652 devm_devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0x62db3a03 mmc_app_cmd +EXPORT_SYMBOL_GPL vmlinux 0x62e5b10f evm_inode_init_security EXPORT_SYMBOL_GPL vmlinux 0x63026490 unregister_kprobe -EXPORT_SYMBOL_GPL vmlinux 0x63035dd7 alarmtimer_get_rtcdev -EXPORT_SYMBOL_GPL vmlinux 0x6308a892 crypto_shash_alg_has_setkey -EXPORT_SYMBOL_GPL vmlinux 0x630a5b36 blkg_rwstat_recursive_sum -EXPORT_SYMBOL_GPL vmlinux 0x630d80df iomap_seek_data +EXPORT_SYMBOL_GPL vmlinux 0x6305d8ee sata_pmp_error_handler EXPORT_SYMBOL_GPL vmlinux 0x63150e06 clk_get_parent -EXPORT_SYMBOL_GPL vmlinux 0x63160cd9 icc_link_create EXPORT_SYMBOL_GPL vmlinux 0x63197685 s2idle_wake -EXPORT_SYMBOL_GPL vmlinux 0x631e775c clean_acked_data_disable -EXPORT_SYMBOL_GPL vmlinux 0x6325b41f xhci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x63278d0c netdev_walk_all_upper_dev_rcu +EXPORT_SYMBOL_GPL vmlinux 0x6329662a nexthop_find_by_id +EXPORT_SYMBOL_GPL vmlinux 0x6331ccca wm8350_device_init +EXPORT_SYMBOL_GPL vmlinux 0x63350915 relay_buf_full +EXPORT_SYMBOL_GPL vmlinux 0x63357bdc ata_bmdma_qc_prep EXPORT_SYMBOL_GPL vmlinux 0x6340434e x86_model -EXPORT_SYMBOL_GPL vmlinux 0x63500352 is_skb_forwardable -EXPORT_SYMBOL_GPL vmlinux 0x637b800d pinctrl_utils_add_map_mux -EXPORT_SYMBOL_GPL vmlinux 0x6380bea4 mbox_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x63427dbf posix_clock_unregister +EXPORT_SYMBOL_GPL vmlinux 0x637a2970 spi_controller_dma_unmap_mem_op_data +EXPORT_SYMBOL_GPL vmlinux 0x637a9f55 serial8250_do_set_divisor +EXPORT_SYMBOL_GPL vmlinux 0x6380eb3b rio_request_outb_dbell EXPORT_SYMBOL_GPL vmlinux 0x638a9653 memory_add_physaddr_to_nid EXPORT_SYMBOL_GPL vmlinux 0x638aff11 proc_douintvec_minmax -EXPORT_SYMBOL_GPL vmlinux 0x638f2e47 pci_intx -EXPORT_SYMBOL_GPL vmlinux 0x63965896 wm831x_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x63a801ae regmap_noinc_read -EXPORT_SYMBOL_GPL vmlinux 0x63a876ce inet6_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x639c62db phy_led_triggers_register +EXPORT_SYMBOL_GPL vmlinux 0x63acbcb7 md_stop_writes +EXPORT_SYMBOL_GPL vmlinux 0x63ae1317 security_inode_permission EXPORT_SYMBOL_GPL vmlinux 0x63c08029 clk_bulk_unprepare -EXPORT_SYMBOL_GPL vmlinux 0x63c837d6 simple_attr_write -EXPORT_SYMBOL_GPL vmlinux 0x63d5b8fa tpm1_do_selftest -EXPORT_SYMBOL_GPL vmlinux 0x63e99c55 get_device_system_crosststamp +EXPORT_SYMBOL_GPL vmlinux 0x63c172ba devres_remove +EXPORT_SYMBOL_GPL vmlinux 0x63d069bc hvc_instantiate +EXPORT_SYMBOL_GPL vmlinux 0x63da0bac irq_remove_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x63e37fb8 modify_user_hw_breakpoint EXPORT_SYMBOL_GPL vmlinux 0x63ea80b3 cper_mem_err_type_str -EXPORT_SYMBOL_GPL vmlinux 0x63f6b360 devm_init_badblocks -EXPORT_SYMBOL_GPL vmlinux 0x63f9a8ea pin_user_pages_fast_only -EXPORT_SYMBOL_GPL vmlinux 0x64394e9f udp4_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x644f9d1e pm_genpd_add_device -EXPORT_SYMBOL_GPL vmlinux 0x6457c651 usb_add_hcd -EXPORT_SYMBOL_GPL vmlinux 0x648a47c1 scsi_host_complete_all_commands +EXPORT_SYMBOL_GPL vmlinux 0x640a3817 gnttab_map_refs +EXPORT_SYMBOL_GPL vmlinux 0x64105920 crypto_larval_alloc +EXPORT_SYMBOL_GPL vmlinux 0x6411906c fuse_conn_destroy +EXPORT_SYMBOL_GPL vmlinux 0x642a3e1f sysfs_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x6436d556 crypto_register_acomp +EXPORT_SYMBOL_GPL vmlinux 0x644c16b7 device_show_ulong +EXPORT_SYMBOL_GPL vmlinux 0x645281c3 cdrom_multisession +EXPORT_SYMBOL_GPL vmlinux 0x6458b722 __tracepoint_pelt_irq_tp +EXPORT_SYMBOL_GPL vmlinux 0x64689ff8 __pm_stay_awake EXPORT_SYMBOL_GPL vmlinux 0x64925270 __dax_synchronous -EXPORT_SYMBOL_GPL vmlinux 0x6492ac55 is_transparent_hugepage -EXPORT_SYMBOL_GPL vmlinux 0x6493d577 vp_modern_get_num_queues +EXPORT_SYMBOL_GPL vmlinux 0x649287d4 pci_epc_get_msix +EXPORT_SYMBOL_GPL vmlinux 0x64a0bd6a devlink_traps_unregister EXPORT_SYMBOL_GPL vmlinux 0x64a31445 mutex_lock_io -EXPORT_SYMBOL_GPL vmlinux 0x64a53433 sdio_retune_crc_disable EXPORT_SYMBOL_GPL vmlinux 0x64a62e11 acpi_processor_ffh_cstate_enter -EXPORT_SYMBOL_GPL vmlinux 0x64a73070 input_ff_create +EXPORT_SYMBOL_GPL vmlinux 0x64aabb0c spi_new_device +EXPORT_SYMBOL_GPL vmlinux 0x64b04c73 __traceiter_pelt_thermal_tp EXPORT_SYMBOL_GPL vmlinux 0x64b71173 reserve_iova -EXPORT_SYMBOL_GPL vmlinux 0x64c9af06 pm_runtime_suspended_time EXPORT_SYMBOL_GPL vmlinux 0x64d3cc4e xas_load -EXPORT_SYMBOL_GPL vmlinux 0x64d8e027 regmap_add_irq_chip_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x64e1e70e devres_get EXPORT_SYMBOL_GPL vmlinux 0x64e27c4f synth_event_delete +EXPORT_SYMBOL_GPL vmlinux 0x64ebf5b6 tps6586x_writes EXPORT_SYMBOL_GPL vmlinux 0x64f36620 dax_flush -EXPORT_SYMBOL_GPL vmlinux 0x64f53f0e usb_get_maximum_speed -EXPORT_SYMBOL_GPL vmlinux 0x64fc3240 pm_generic_resume -EXPORT_SYMBOL_GPL vmlinux 0x64fec99b rio_del_mport_pw_handler +EXPORT_SYMBOL_GPL vmlinux 0x64fe7352 nd_blk_region_provider_data EXPORT_SYMBOL_GPL vmlinux 0x6502d9c2 xenbus_scanf +EXPORT_SYMBOL_GPL vmlinux 0x650368ab __phy_modify_mmd +EXPORT_SYMBOL_GPL vmlinux 0x6514b9c0 gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x6522cb22 crypto_create_tfm_node EXPORT_SYMBOL_GPL vmlinux 0x6527a231 dbgp_external_startup EXPORT_SYMBOL_GPL vmlinux 0x6531a37f mpi_add -EXPORT_SYMBOL_GPL vmlinux 0x654af0a8 crypto_spawn_tfm2 -EXPORT_SYMBOL_GPL vmlinux 0x6568ff5f free_vm_area -EXPORT_SYMBOL_GPL vmlinux 0x656dc648 dev_nit_active +EXPORT_SYMBOL_GPL vmlinux 0x653b4d8b devm_gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0x654c7c89 regulator_list_voltage_table +EXPORT_SYMBOL_GPL vmlinux 0x6554acb9 d_walk +EXPORT_SYMBOL_GPL vmlinux 0x6559fff5 devlink_region_create +EXPORT_SYMBOL_GPL vmlinux 0x655db637 ip6_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0x6561207c xfrm_get_translator +EXPORT_SYMBOL_GPL vmlinux 0x6567aace unregister_hw_breakpoint EXPORT_SYMBOL_GPL vmlinux 0x65704d22 hv_stimer_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x65943ea3 gpiod_to_irq -EXPORT_SYMBOL_GPL vmlinux 0x6598a9af mmc_crypto_prepare_req -EXPORT_SYMBOL_GPL vmlinux 0x65a12186 rio_dma_prep_xfer -EXPORT_SYMBOL_GPL vmlinux 0x65a2522a __blk_req_zone_write_unlock -EXPORT_SYMBOL_GPL vmlinux 0x65adcaf7 icc_std_aggregate -EXPORT_SYMBOL_GPL vmlinux 0x65b7b32c pinctrl_unregister -EXPORT_SYMBOL_GPL vmlinux 0x65c00025 dma_get_merge_boundary +EXPORT_SYMBOL_GPL vmlinux 0x657305cb verify_signature +EXPORT_SYMBOL_GPL vmlinux 0x6580e36d exportfs_encode_inode_fh +EXPORT_SYMBOL_GPL vmlinux 0x6593e792 regmap_multi_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x659810c0 acpi_subsys_freeze +EXPORT_SYMBOL_GPL vmlinux 0x65b80dfa thermal_zone_unbind_cooling_device EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers -EXPORT_SYMBOL_GPL vmlinux 0x65cfa5c2 dst_cache_get -EXPORT_SYMBOL_GPL vmlinux 0x65d5eee7 kstrdup_quotable_file -EXPORT_SYMBOL_GPL vmlinux 0x66081875 irq_chip_get_parent_state -EXPORT_SYMBOL_GPL vmlinux 0x660edce5 virtqueue_get_used_addr -EXPORT_SYMBOL_GPL vmlinux 0x660efe3d dev_pm_opp_get_level +EXPORT_SYMBOL_GPL vmlinux 0x65cee45c devlink_free +EXPORT_SYMBOL_GPL vmlinux 0x65d1633d powercap_register_zone +EXPORT_SYMBOL_GPL vmlinux 0x65d4b00d ethnl_cable_test_fault_length +EXPORT_SYMBOL_GPL vmlinux 0x65e126b8 generic_fh_to_parent +EXPORT_SYMBOL_GPL vmlinux 0x65e12ffa md_run +EXPORT_SYMBOL_GPL vmlinux 0x66093d91 devm_pm_opp_register_set_opp_helper EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol -EXPORT_SYMBOL_GPL vmlinux 0x662bb92b da903x_writes +EXPORT_SYMBOL_GPL vmlinux 0x6620ee9b dev_pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x6621895d irq_domain_disconnect_hierarchy EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity EXPORT_SYMBOL_GPL vmlinux 0x663bb448 devlink_fmsg_obj_nest_end -EXPORT_SYMBOL_GPL vmlinux 0x663ea6f1 unregister_wide_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x66452e57 serdev_controller_alloc -EXPORT_SYMBOL_GPL vmlinux 0x664b3ac7 rt_mutex_unlock -EXPORT_SYMBOL_GPL vmlinux 0x664eaf22 wakeup_sources_walk_next -EXPORT_SYMBOL_GPL vmlinux 0x66517775 tps6586x_writes +EXPORT_SYMBOL_GPL vmlinux 0x664275e2 __auxiliary_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x664af452 switchdev_port_obj_add +EXPORT_SYMBOL_GPL vmlinux 0x665e5e48 regulator_set_current_limit_regmap EXPORT_SYMBOL_GPL vmlinux 0x665e92a0 clk_set_duty_cycle -EXPORT_SYMBOL_GPL vmlinux 0x665f5f2e apply_to_existing_page_range -EXPORT_SYMBOL_GPL vmlinux 0x6662a33c uprobe_unregister -EXPORT_SYMBOL_GPL vmlinux 0x666675a8 irq_domain_free_irqs_parent -EXPORT_SYMBOL_GPL vmlinux 0x66689d2b crypto_alg_mod_lookup -EXPORT_SYMBOL_GPL vmlinux 0x66742a56 iommu_detach_group -EXPORT_SYMBOL_GPL vmlinux 0x667b1515 dev_pm_genpd_suspend +EXPORT_SYMBOL_GPL vmlinux 0x666adf47 simple_attr_open +EXPORT_SYMBOL_GPL vmlinux 0x666ae51b __tracepoint_pelt_thermal_tp +EXPORT_SYMBOL_GPL vmlinux 0x66812531 __tracepoint_neigh_event_send_dead EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x66863bf1 sysfs_remove_link -EXPORT_SYMBOL_GPL vmlinux 0x66969008 disk_update_readahead -EXPORT_SYMBOL_GPL vmlinux 0x6698a0c6 __intel_scu_ipc_register +EXPORT_SYMBOL_GPL vmlinux 0x669445a3 da903x_write EXPORT_SYMBOL_GPL vmlinux 0x66ae4727 mdio_bus_init EXPORT_SYMBOL_GPL vmlinux 0x66b26b2b clk_hw_unregister_divider -EXPORT_SYMBOL_GPL vmlinux 0x66b28366 ata_sff_queue_pio_task -EXPORT_SYMBOL_GPL vmlinux 0x66b7c419 unregister_asymmetric_key_parser EXPORT_SYMBOL_GPL vmlinux 0x66b97421 sfp_link_up -EXPORT_SYMBOL_GPL vmlinux 0x66c336a0 seg6_do_srh_encap -EXPORT_SYMBOL_GPL vmlinux 0x66ca762b vp_modern_queue_vector -EXPORT_SYMBOL_GPL vmlinux 0x66ce8dc7 power_supply_am_i_supplied -EXPORT_SYMBOL_GPL vmlinux 0x66d6e8ae find_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x66d2c7ee devm_platform_get_irqs_affinity EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr -EXPORT_SYMBOL_GPL vmlinux 0x66e15415 spi_new_device -EXPORT_SYMBOL_GPL vmlinux 0x66e24c4a pci_pr3_present -EXPORT_SYMBOL_GPL vmlinux 0x66fa81f8 irq_create_fwspec_mapping -EXPORT_SYMBOL_GPL vmlinux 0x6700607e vfio_external_group_match_file -EXPORT_SYMBOL_GPL vmlinux 0x6711ae93 input_ff_erase -EXPORT_SYMBOL_GPL vmlinux 0x6727471c vfio_assign_device_set +EXPORT_SYMBOL_GPL vmlinux 0x66ef2a99 device_initialize +EXPORT_SYMBOL_GPL vmlinux 0x66f35c29 i2c_match_id +EXPORT_SYMBOL_GPL vmlinux 0x670c376a blk_rq_unprep_clone EXPORT_SYMBOL_GPL vmlinux 0x6735d56e tcp_ca_get_name_by_key +EXPORT_SYMBOL_GPL vmlinux 0x67380375 sk_msg_free_partial EXPORT_SYMBOL_GPL vmlinux 0x6739a503 balloon_set_new_target -EXPORT_SYMBOL_GPL vmlinux 0x67459f2c dev_pm_genpd_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6741a3e7 pci_max_pasids +EXPORT_SYMBOL_GPL vmlinux 0x6741cf8d gpiod_direction_output +EXPORT_SYMBOL_GPL vmlinux 0x674473c0 tcp_is_ulp_esp +EXPORT_SYMBOL_GPL vmlinux 0x674d53f8 ip6_append_data +EXPORT_SYMBOL_GPL vmlinux 0x674f78fb acpi_subsys_suspend EXPORT_SYMBOL_GPL vmlinux 0x6759bd00 __SCT__tp_func_rpm_idle -EXPORT_SYMBOL_GPL vmlinux 0x6773650a __xenbus_register_backend -EXPORT_SYMBOL_GPL vmlinux 0x67769b92 gpiod_get_raw_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x678fb926 debugfs_write_file_bool +EXPORT_SYMBOL_GPL vmlinux 0x6771f377 acpi_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0x677b0247 shmem_file_setup EXPORT_SYMBOL_GPL vmlinux 0x6790ebd3 mce_is_memory_error -EXPORT_SYMBOL_GPL vmlinux 0x67955bcb regmap_can_raw_write EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits -EXPORT_SYMBOL_GPL vmlinux 0x67a9f22d spi_mem_get_name -EXPORT_SYMBOL_GPL vmlinux 0x67c9e83e pm_genpd_remove -EXPORT_SYMBOL_GPL vmlinux 0x67cae680 __tracepoint_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x6799d8b6 devlink_port_param_value_changed +EXPORT_SYMBOL_GPL vmlinux 0x67ad32a5 netif_carrier_event +EXPORT_SYMBOL_GPL vmlinux 0x67ba6d72 usb_acpi_set_power_state +EXPORT_SYMBOL_GPL vmlinux 0x67c1cb89 usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0x67c20f78 to_nd_blk_region +EXPORT_SYMBOL_GPL vmlinux 0x67cbb26d sk_psock_init +EXPORT_SYMBOL_GPL vmlinux 0x67d6996e serdev_controller_remove +EXPORT_SYMBOL_GPL vmlinux 0x67d986a9 mmc_cmdq_enable EXPORT_SYMBOL_GPL vmlinux 0x67da9f7c sha512_zero_message_hash EXPORT_SYMBOL_GPL vmlinux 0x67dcd76b uv_setup_irq -EXPORT_SYMBOL_GPL vmlinux 0x67edb398 thermal_zone_bind_cooling_device -EXPORT_SYMBOL_GPL vmlinux 0x67ef9225 acpi_subsys_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0x6811cfce vchan_init -EXPORT_SYMBOL_GPL vmlinux 0x6814c588 fsnotify_init_mark -EXPORT_SYMBOL_GPL vmlinux 0x6817620e iomap_is_partially_uptodate -EXPORT_SYMBOL_GPL vmlinux 0x681f59b5 component_add_typed -EXPORT_SYMBOL_GPL vmlinux 0x68237a5c efivar_entry_get +EXPORT_SYMBOL_GPL vmlinux 0x67e965b6 __SCK__tp_func_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0x67f56483 eventfd_fget +EXPORT_SYMBOL_GPL vmlinux 0x681f8288 gpiochip_generic_request EXPORT_SYMBOL_GPL vmlinux 0x682ff057 ring_buffer_commit_overrun_cpu -EXPORT_SYMBOL_GPL vmlinux 0x683739c3 dma_can_mmap -EXPORT_SYMBOL_GPL vmlinux 0x684052b1 dm_start_time_ns_from_clone -EXPORT_SYMBOL_GPL vmlinux 0x68420a75 subsys_dev_iter_next -EXPORT_SYMBOL_GPL vmlinux 0x6855df2e dm_accept_partial_bio -EXPORT_SYMBOL_GPL vmlinux 0x68608560 device_link_add -EXPORT_SYMBOL_GPL vmlinux 0x687ea6ba tty_ldisc_receive_buf +EXPORT_SYMBOL_GPL vmlinux 0x6832dbf6 icc_provider_add +EXPORT_SYMBOL_GPL vmlinux 0x6841cb4a __get_task_comm +EXPORT_SYMBOL_GPL vmlinux 0x686bca67 wm831x_auxadc_read +EXPORT_SYMBOL_GPL vmlinux 0x6888e2f8 xdp_build_skb_from_frame +EXPORT_SYMBOL_GPL vmlinux 0x689010d1 wwan_unregister_ops EXPORT_SYMBOL_GPL vmlinux 0x68952493 rcu_note_context_switch -EXPORT_SYMBOL_GPL vmlinux 0x689831af devlink_alloc_ns -EXPORT_SYMBOL_GPL vmlinux 0x68b4f603 __SCK__tp_func_fib6_table_lookup -EXPORT_SYMBOL_GPL vmlinux 0x68c2ca4e __fscrypt_encrypt_symlink -EXPORT_SYMBOL_GPL vmlinux 0x68ea1b0f extcon_set_property_sync -EXPORT_SYMBOL_GPL vmlinux 0x68ef1d5b iommu_capable -EXPORT_SYMBOL_GPL vmlinux 0x68fee01b usb_deregister_dev -EXPORT_SYMBOL_GPL vmlinux 0x6902bd80 __traceiter_io_page_fault -EXPORT_SYMBOL_GPL vmlinux 0x690a212f cpufreq_register_governor -EXPORT_SYMBOL_GPL vmlinux 0x690eefd2 trace_array_put +EXPORT_SYMBOL_GPL vmlinux 0x68961ded fib_rule_matchall +EXPORT_SYMBOL_GPL vmlinux 0x68b6ddb9 usb_hcd_pci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x68b9ed77 sata_set_spd +EXPORT_SYMBOL_GPL vmlinux 0x68c8104c evict_inodes +EXPORT_SYMBOL_GPL vmlinux 0x68ccdc31 regmap_get_raw_write_max +EXPORT_SYMBOL_GPL vmlinux 0x68cd1a83 pm_generic_freeze_noirq +EXPORT_SYMBOL_GPL vmlinux 0x68eea626 fat_alloc_new_dir +EXPORT_SYMBOL_GPL vmlinux 0x68f4e279 __tracepoint_block_split EXPORT_SYMBOL_GPL vmlinux 0x690f585e phy_basic_ports_array -EXPORT_SYMBOL_GPL vmlinux 0x6911a87d __tcp_send_ack -EXPORT_SYMBOL_GPL vmlinux 0x6924f1ff ata_sff_tf_read +EXPORT_SYMBOL_GPL vmlinux 0x6927f4f7 pm_clk_add_clk +EXPORT_SYMBOL_GPL vmlinux 0x692b104f sdev_evt_send_simple +EXPORT_SYMBOL_GPL vmlinux 0x6932f845 vp_modern_get_queue_enable +EXPORT_SYMBOL_GPL vmlinux 0x6950bb03 xenbus_dev_changed +EXPORT_SYMBOL_GPL vmlinux 0x695b1960 pwm_lpss_probe EXPORT_SYMBOL_GPL vmlinux 0x696340a5 __i2c_board_lock EXPORT_SYMBOL_GPL vmlinux 0x69637b2c __traceiter_powernv_throttle -EXPORT_SYMBOL_GPL vmlinux 0x696d2404 __traceiter_pelt_irq_tp +EXPORT_SYMBOL_GPL vmlinux 0x69668134 __traceiter_pelt_dl_tp EXPORT_SYMBOL_GPL vmlinux 0x696d7e0b l1tf_mitigation -EXPORT_SYMBOL_GPL vmlinux 0x697638ad regulator_set_load +EXPORT_SYMBOL_GPL vmlinux 0x697099a1 ata_link_next +EXPORT_SYMBOL_GPL vmlinux 0x6971dd87 irq_chip_request_resources_parent EXPORT_SYMBOL_GPL vmlinux 0x697c5d0d tracing_snapshot_alloc -EXPORT_SYMBOL_GPL vmlinux 0x6984f664 serial8250_get_port -EXPORT_SYMBOL_GPL vmlinux 0x69858e02 usb_autopm_get_interface -EXPORT_SYMBOL_GPL vmlinux 0x698f335b __tracepoint_fdb_delete -EXPORT_SYMBOL_GPL vmlinux 0x699659f6 crypto_unregister_kpp -EXPORT_SYMBOL_GPL vmlinux 0x699f1980 debugfs_create_x8 -EXPORT_SYMBOL_GPL vmlinux 0x69cddfd0 nvmem_cell_read_u8 +EXPORT_SYMBOL_GPL vmlinux 0x697fd21f devres_release_group +EXPORT_SYMBOL_GPL vmlinux 0x698171e5 of_clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0x69a9cb88 crypto_comp_compress +EXPORT_SYMBOL_GPL vmlinux 0x69aae194 gpiochip_get_data +EXPORT_SYMBOL_GPL vmlinux 0x69bc142a devm_krealloc +EXPORT_SYMBOL_GPL vmlinux 0x69c622de rt_mutex_lock_interruptible +EXPORT_SYMBOL_GPL vmlinux 0x69c9e3e1 free_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x69cc6416 blk_lld_busy EXPORT_SYMBOL_GPL vmlinux 0x69cf0632 mpi_fromstr -EXPORT_SYMBOL_GPL vmlinux 0x69cfba8e noop_backing_dev_info -EXPORT_SYMBOL_GPL vmlinux 0x69d0563f nd_blk_region_provider_data -EXPORT_SYMBOL_GPL vmlinux 0x69da7db8 tty_prepare_flip_string -EXPORT_SYMBOL_GPL vmlinux 0x69dcbe0e wakeup_source_add -EXPORT_SYMBOL_GPL vmlinux 0x69e53ace serial8250_do_get_mctrl +EXPORT_SYMBOL_GPL vmlinux 0x69d1886f devfreq_cooling_unregister EXPORT_SYMBOL_GPL vmlinux 0x69e683de uuid_gen +EXPORT_SYMBOL_GPL vmlinux 0x69e6c96f usb_disable_ltm +EXPORT_SYMBOL_GPL vmlinux 0x69e83605 mc146818_get_time +EXPORT_SYMBOL_GPL vmlinux 0x69ec3d12 spi_mem_poll_status EXPORT_SYMBOL_GPL vmlinux 0x69ee2220 linear_range_get_selector_high -EXPORT_SYMBOL_GPL vmlinux 0x69f09dce acpi_match_device +EXPORT_SYMBOL_GPL vmlinux 0x69eff2d4 pci_epc_mem_free_addr EXPORT_SYMBOL_GPL vmlinux 0x6a05b65b fb_videomode_from_videomode -EXPORT_SYMBOL_GPL vmlinux 0x6a0725d9 usb_disable_lpm -EXPORT_SYMBOL_GPL vmlinux 0x6a0c75eb rdev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x6a0ace96 inet6_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x6a10a529 tpm_pcr_read EXPORT_SYMBOL_GPL vmlinux 0x6a1733eb iommu_group_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6a190b30 aead_exit_geniv -EXPORT_SYMBOL_GPL vmlinux 0x6a1b2f6a i2c_probe_func_quick_read -EXPORT_SYMBOL_GPL vmlinux 0x6a374411 pinctrl_force_default +EXPORT_SYMBOL_GPL vmlinux 0x6a182c97 __bio_try_merge_page +EXPORT_SYMBOL_GPL vmlinux 0x6a28c35c usb_hcd_map_urb_for_dma EXPORT_SYMBOL_GPL vmlinux 0x6a421062 memory_failure_queue EXPORT_SYMBOL_GPL vmlinux 0x6a460dc5 schedule_hrtimeout -EXPORT_SYMBOL_GPL vmlinux 0x6a4bc8e8 trace_event_buffer_lock_reserve EXPORT_SYMBOL_GPL vmlinux 0x6a4f623b mmu_notifier_synchronize +EXPORT_SYMBOL_GPL vmlinux 0x6a558e11 security_inode_mkdir EXPORT_SYMBOL_GPL vmlinux 0x6a5e2bde __cookie_v6_init_sequence -EXPORT_SYMBOL_GPL vmlinux 0x6a5ed764 device_add_groups -EXPORT_SYMBOL_GPL vmlinux 0x6a70d485 ip6_sk_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x6a5fd8f0 input_ff_destroy +EXPORT_SYMBOL_GPL vmlinux 0x6a6f44c6 devlink_port_health_reporter_create +EXPORT_SYMBOL_GPL vmlinux 0x6a77b706 devlink_trap_groups_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6a829a04 _copy_from_iter_flushcache EXPORT_SYMBOL_GPL vmlinux 0x6a8441be cpci_hp_start -EXPORT_SYMBOL_GPL vmlinux 0x6a9c6db3 crypto_unregister_alg EXPORT_SYMBOL_GPL vmlinux 0x6aa2a877 xenbus_printf +EXPORT_SYMBOL_GPL vmlinux 0x6aa8f31e gpiod_set_consumer_name EXPORT_SYMBOL_GPL vmlinux 0x6aad9152 xen_set_callback_via -EXPORT_SYMBOL_GPL vmlinux 0x6ab18269 attribute_container_classdev_to_container -EXPORT_SYMBOL_GPL vmlinux 0x6abf1e74 devm_request_free_mem_region -EXPORT_SYMBOL_GPL vmlinux 0x6aeaed0b phy_restart_aneg -EXPORT_SYMBOL_GPL vmlinux 0x6b054f6e __spi_alloc_controller +EXPORT_SYMBOL_GPL vmlinux 0x6ac75ba6 iomap_dio_rw +EXPORT_SYMBOL_GPL vmlinux 0x6ad67c48 iommu_device_link +EXPORT_SYMBOL_GPL vmlinux 0x6adfd5c9 pci_dev_trylock +EXPORT_SYMBOL_GPL vmlinux 0x6ae9dfd9 __fscrypt_prepare_rename +EXPORT_SYMBOL_GPL vmlinux 0x6b0965f3 __devres_alloc_node EXPORT_SYMBOL_GPL vmlinux 0x6b0dc565 xen_set_irq_priority +EXPORT_SYMBOL_GPL vmlinux 0x6b1848ee __traceiter_rpm_idle EXPORT_SYMBOL_GPL vmlinux 0x6b198c77 led_colors +EXPORT_SYMBOL_GPL vmlinux 0x6b1d8760 devm_clk_hw_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6b2ac0b2 dev_attr_ncq_prio_enable EXPORT_SYMBOL_GPL vmlinux 0x6b2b69f7 static_key_enable -EXPORT_SYMBOL_GPL vmlinux 0x6b2dfa7f pci_epf_type_add_cfs -EXPORT_SYMBOL_GPL vmlinux 0x6b2e75e6 genphy_c45_check_and_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0x6b34b6a3 nvmem_cell_read_u8 EXPORT_SYMBOL_GPL vmlinux 0x6b35a16b intel_scu_ipc_dev_get EXPORT_SYMBOL_GPL vmlinux 0x6b3ae022 acpi_os_unmap_iomem -EXPORT_SYMBOL_GPL vmlinux 0x6b3e4762 ata_sas_port_stop -EXPORT_SYMBOL_GPL vmlinux 0x6b3ea820 __fib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x6b3b1837 request_firmware_direct EXPORT_SYMBOL_GPL vmlinux 0x6b413c9b sfp_link_down -EXPORT_SYMBOL_GPL vmlinux 0x6b600c07 kobject_uevent_env +EXPORT_SYMBOL_GPL vmlinux 0x6b4f0a1f usb_hub_claim_port +EXPORT_SYMBOL_GPL vmlinux 0x6b554980 usb_alloc_streams +EXPORT_SYMBOL_GPL vmlinux 0x6b588b5b blkcg_activate_policy +EXPORT_SYMBOL_GPL vmlinux 0x6b61d3ff serial8250_rpm_put_tx +EXPORT_SYMBOL_GPL vmlinux 0x6b6b3a5e devm_hwmon_device_unregister EXPORT_SYMBOL_GPL vmlinux 0x6b7a4335 hyperv_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x6b7d6576 pci_check_and_mask_intx EXPORT_SYMBOL_GPL vmlinux 0x6b81c38b power_supply_unreg_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6b8f89d6 pinctrl_lookup_state -EXPORT_SYMBOL_GPL vmlinux 0x6ba33dbb dma_request_chan +EXPORT_SYMBOL_GPL vmlinux 0x6b8c425f strp_check_rcv EXPORT_SYMBOL_GPL vmlinux 0x6ba36c6a hwpoison_filter_flags_value -EXPORT_SYMBOL_GPL vmlinux 0x6ba3b617 perf_trace_run_bpf_submit -EXPORT_SYMBOL_GPL vmlinux 0x6ba943fa regcache_sync_region -EXPORT_SYMBOL_GPL vmlinux 0x6baedf53 rio_attach_device -EXPORT_SYMBOL_GPL vmlinux 0x6bbc388d pci_sriov_configure_simple -EXPORT_SYMBOL_GPL vmlinux 0x6bc1b462 xen_xlate_unmap_gfn_range +EXPORT_SYMBOL_GPL vmlinux 0x6ba6159e ethnl_cable_test_pulse +EXPORT_SYMBOL_GPL vmlinux 0x6ba89a53 thermal_zone_device_register +EXPORT_SYMBOL_GPL vmlinux 0x6baac6b2 dev_pm_opp_init_cpufreq_table +EXPORT_SYMBOL_GPL vmlinux 0x6bac63ee ata_sff_data_xfer32 +EXPORT_SYMBOL_GPL vmlinux 0x6bbf925f debugfs_create_file EXPORT_SYMBOL_GPL vmlinux 0x6bcdedc0 mpi_point_init EXPORT_SYMBOL_GPL vmlinux 0x6bd1aa56 stack_trace_save -EXPORT_SYMBOL_GPL vmlinux 0x6bd1c3d8 device_show_ulong -EXPORT_SYMBOL_GPL vmlinux 0x6bd27bd4 wbc_account_cgroup_owner EXPORT_SYMBOL_GPL vmlinux 0x6bdef35c acpi_ec_mark_gpe_for_wake EXPORT_SYMBOL_GPL vmlinux 0x6be3a96b hv_remove_vmbus_handler -EXPORT_SYMBOL_GPL vmlinux 0x6beaf5c8 dma_need_sync -EXPORT_SYMBOL_GPL vmlinux 0x6bf41c29 fs_kobj -EXPORT_SYMBOL_GPL vmlinux 0x6bfaff10 xfrm_state_mtu -EXPORT_SYMBOL_GPL vmlinux 0x6bff7dfa pci_epc_mem_exit -EXPORT_SYMBOL_GPL vmlinux 0x6c0162df tracepoint_probe_register_prio -EXPORT_SYMBOL_GPL vmlinux 0x6c09e413 security_inode_create -EXPORT_SYMBOL_GPL vmlinux 0x6c0ce30f regulator_force_disable -EXPORT_SYMBOL_GPL vmlinux 0x6c1de9ae transport_setup_device +EXPORT_SYMBOL_GPL vmlinux 0x6be7cdbe usb_alloc_urb +EXPORT_SYMBOL_GPL vmlinux 0x6c13273c irq_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x6c1e2836 devm_led_classdev_register_ext EXPORT_SYMBOL_GPL vmlinux 0x6c205008 mpi_print +EXPORT_SYMBOL_GPL vmlinux 0x6c37c3ad skb_mpls_push EXPORT_SYMBOL_GPL vmlinux 0x6c389761 acpi_bus_get_private_data EXPORT_SYMBOL_GPL vmlinux 0x6c3f70e0 guid_gen -EXPORT_SYMBOL_GPL vmlinux 0x6c45e610 efivar_entry_find +EXPORT_SYMBOL_GPL vmlinux 0x6c437702 shmem_truncate_range EXPORT_SYMBOL_GPL vmlinux 0x6c4b6684 reset_control_assert -EXPORT_SYMBOL_GPL vmlinux 0x6c5399d8 fat_detach EXPORT_SYMBOL_GPL vmlinux 0x6c5ad0cd kmsg_dump_register +EXPORT_SYMBOL_GPL vmlinux 0x6c620e5f sysfs_remove_file_self EXPORT_SYMBOL_GPL vmlinux 0x6c655913 register_acpi_hed_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6c6d8f30 sfp_register_socket -EXPORT_SYMBOL_GPL vmlinux 0x6c77732d phy_pm_runtime_allow -EXPORT_SYMBOL_GPL vmlinux 0x6c9244b4 tps65912_device_exit +EXPORT_SYMBOL_GPL vmlinux 0x6c7b435f mc146818_does_rtc_work +EXPORT_SYMBOL_GPL vmlinux 0x6c803d95 fsverity_verify_bio EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain -EXPORT_SYMBOL_GPL vmlinux 0x6cbaa6ba rtc_alarm_irq_enable -EXPORT_SYMBOL_GPL vmlinux 0x6cc2d66b devm_clk_hw_get_clk -EXPORT_SYMBOL_GPL vmlinux 0x6cca33cf thermal_cooling_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x6cce32e8 ata_pci_device_resume -EXPORT_SYMBOL_GPL vmlinux 0x6ce449a1 do_unbind_con_driver -EXPORT_SYMBOL_GPL vmlinux 0x6ce63782 tcp_twsk_destructor -EXPORT_SYMBOL_GPL vmlinux 0x6cfbd3f4 for_each_kernel_tracepoint +EXPORT_SYMBOL_GPL vmlinux 0x6cccf5f6 bsg_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0x6cf590e7 regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6cfb78f4 relay_file_operations +EXPORT_SYMBOL_GPL vmlinux 0x6cff7709 edac_pci_alloc_ctl_info EXPORT_SYMBOL_GPL vmlinux 0x6d04891d inet_getpeer EXPORT_SYMBOL_GPL vmlinux 0x6d09843f copy_bpf_fprog_from_user EXPORT_SYMBOL_GPL vmlinux 0x6d0ae550 pinctrl_gpio_request -EXPORT_SYMBOL_GPL vmlinux 0x6d18e48d ata_sff_data_xfer -EXPORT_SYMBOL_GPL vmlinux 0x6d2a7e1b rt_mutex_trylock EXPORT_SYMBOL_GPL vmlinux 0x6d2e899d mce_usable_address EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list -EXPORT_SYMBOL_GPL vmlinux 0x6d667962 i2c_acpi_client_count -EXPORT_SYMBOL_GPL vmlinux 0x6d6c8230 usb_hcd_pci_pm_ops -EXPORT_SYMBOL_GPL vmlinux 0x6d6cb42c pm_runtime_forbid -EXPORT_SYMBOL_GPL vmlinux 0x6d6dfb07 __inet_lookup_established +EXPORT_SYMBOL_GPL vmlinux 0x6d30b50e __tracepoint_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0x6d44471b __udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x6d493da2 regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x6d547daf pm_generic_thaw_early +EXPORT_SYMBOL_GPL vmlinux 0x6d5a94ab xfrm_dev_state_add +EXPORT_SYMBOL_GPL vmlinux 0x6d5bc11b screen_glyph_unicode +EXPORT_SYMBOL_GPL vmlinux 0x6d69d5ad rtc_class_open EXPORT_SYMBOL_GPL vmlinux 0x6d6fec1f ktime_mono_to_any -EXPORT_SYMBOL_GPL vmlinux 0x6d74afac spi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x6d718342 acpi_pm_set_device_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x6d76ba92 devlink_trap_groups_register +EXPORT_SYMBOL_GPL vmlinux 0x6d77f38f da9052_enable_irq EXPORT_SYMBOL_GPL vmlinux 0x6d7e951e rcu_exp_batches_completed -EXPORT_SYMBOL_GPL vmlinux 0x6d9793cc led_classdev_register_ext +EXPORT_SYMBOL_GPL vmlinux 0x6d93f7cc handle_fasteoi_nmi +EXPORT_SYMBOL_GPL vmlinux 0x6da4b1b7 crypto_skcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x6da787be clean_acked_data_enable +EXPORT_SYMBOL_GPL vmlinux 0x6db2250c devm_blk_ksm_init EXPORT_SYMBOL_GPL vmlinux 0x6dbaafd3 put_old_timespec32 +EXPORT_SYMBOL_GPL vmlinux 0x6dc21e1b inet6_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x6dc4fb21 dev_pm_opp_get_voltage EXPORT_SYMBOL_GPL vmlinux 0x6dd5680d sprint_symbol_build_id -EXPORT_SYMBOL_GPL vmlinux 0x6dea1d13 usb_get_role_switch_default_mode -EXPORT_SYMBOL_GPL vmlinux 0x6dfdf1c5 dma_get_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x6dd93909 iommu_present +EXPORT_SYMBOL_GPL vmlinux 0x6de5733c cpufreq_dbs_governor_stop EXPORT_SYMBOL_GPL vmlinux 0x6e00fcfb modify_ftrace_direct -EXPORT_SYMBOL_GPL vmlinux 0x6e0d1347 unix_peer_get -EXPORT_SYMBOL_GPL vmlinux 0x6e14a329 pci_epc_mem_free_addr -EXPORT_SYMBOL_GPL vmlinux 0x6e1a0037 dev_pm_set_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x6e07d355 devm_rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0x6e174a01 udp_bpf_update_proto +EXPORT_SYMBOL_GPL vmlinux 0x6e215f84 blkg_rwstat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0x6e24cd93 spi_mem_exec_op EXPORT_SYMBOL_GPL vmlinux 0x6e3ff83a edac_device_alloc_index -EXPORT_SYMBOL_GPL vmlinux 0x6e48d1ee regulator_set_active_discharge_regmap EXPORT_SYMBOL_GPL vmlinux 0x6e4bc056 spi_res_free -EXPORT_SYMBOL_GPL vmlinux 0x6e4f967f nvdimm_badblocks_populate -EXPORT_SYMBOL_GPL vmlinux 0x6e747125 da903x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x6e5a4759 __rio_local_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x6e5cc8be debugfs_create_u32 +EXPORT_SYMBOL_GPL vmlinux 0x6e5d19e3 i2c_new_smbus_alert_device +EXPORT_SYMBOL_GPL vmlinux 0x6e626895 fwnode_get_next_available_child_node +EXPORT_SYMBOL_GPL vmlinux 0x6e65ac29 tpmm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0x6e6b0202 tcp_register_ulp EXPORT_SYMBOL_GPL vmlinux 0x6e7943ec iommu_group_id EXPORT_SYMBOL_GPL vmlinux 0x6e85b00b local_touch_nmi +EXPORT_SYMBOL_GPL vmlinux 0x6e88e088 unregister_trace_event EXPORT_SYMBOL_GPL vmlinux 0x6e89a560 regmap_irq_chip_get_base -EXPORT_SYMBOL_GPL vmlinux 0x6e8cc464 ata_dev_pair -EXPORT_SYMBOL_GPL vmlinux 0x6e90a5e2 sysfs_update_group -EXPORT_SYMBOL_GPL vmlinux 0x6e94b690 usb_mon_register -EXPORT_SYMBOL_GPL vmlinux 0x6e99e4fb irq_chip_mask_ack_parent -EXPORT_SYMBOL_GPL vmlinux 0x6e9b0d14 fib_info_nh_uses_dev -EXPORT_SYMBOL_GPL vmlinux 0x6ea4d1c9 gpiochip_line_is_persistent -EXPORT_SYMBOL_GPL vmlinux 0x6ebb1f7c usb_hub_clear_tt_buffer +EXPORT_SYMBOL_GPL vmlinux 0x6e905c7a ip6_route_output_flags +EXPORT_SYMBOL_GPL vmlinux 0x6ea16f61 scsi_target_unblock +EXPORT_SYMBOL_GPL vmlinux 0x6eb6c883 gnttab_page_cache_get EXPORT_SYMBOL_GPL vmlinux 0x6ebe366f ktime_get_mono_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0x6ec23877 proc_get_parent_data -EXPORT_SYMBOL_GPL vmlinux 0x6edec1bf device_find_child_by_name -EXPORT_SYMBOL_GPL vmlinux 0x6edfbf3c __pci_epf_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x6ec96b93 tcp_reno_cong_avoid +EXPORT_SYMBOL_GPL vmlinux 0x6ed07bdd bpf_trace_run10 +EXPORT_SYMBOL_GPL vmlinux 0x6ed1c52c pinctrl_dev_get_name +EXPORT_SYMBOL_GPL vmlinux 0x6ee65c12 pci_create_slot EXPORT_SYMBOL_GPL vmlinux 0x6ee8c94b sfp_get_module_eeprom +EXPORT_SYMBOL_GPL vmlinux 0x6eec0591 vfs_fallocate +EXPORT_SYMBOL_GPL vmlinux 0x6eee267d xdp_rxq_info_unused EXPORT_SYMBOL_GPL vmlinux 0x6ef6b54f ktime_get_boot_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0x6f09ce62 nf_hook_entries_delete_raw -EXPORT_SYMBOL_GPL vmlinux 0x6f0f0ffe pci_d3cold_enable -EXPORT_SYMBOL_GPL vmlinux 0x6f1061cd blk_mq_update_nr_hw_queues +EXPORT_SYMBOL_GPL vmlinux 0x6f025571 xen_xlate_remap_gfn_array EXPORT_SYMBOL_GPL vmlinux 0x6f12560a get_old_timespec32 -EXPORT_SYMBOL_GPL vmlinux 0x6f1fce8d fib_rules_register -EXPORT_SYMBOL_GPL vmlinux 0x6f404c99 dev_pm_opp_find_freq_floor -EXPORT_SYMBOL_GPL vmlinux 0x6f540568 mmc_crypto_setup_queue -EXPORT_SYMBOL_GPL vmlinux 0x6f714e99 msg_zerocopy_realloc -EXPORT_SYMBOL_GPL vmlinux 0x6f742d3b scsi_unregister_device_handler -EXPORT_SYMBOL_GPL vmlinux 0x6f79bd48 dev_pm_opp_set_clkname +EXPORT_SYMBOL_GPL vmlinux 0x6f27eda2 show_class_attr_string +EXPORT_SYMBOL_GPL vmlinux 0x6f41fb9c vmf_insert_pfn_pmd_prot +EXPORT_SYMBOL_GPL vmlinux 0x6f443658 dev_pm_put_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0x6f47f007 d_exchange +EXPORT_SYMBOL_GPL vmlinux 0x6f4ab388 metadata_dst_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x6f624161 crypto_inst_setname +EXPORT_SYMBOL_GPL vmlinux 0x6f7ccca1 cpufreq_driver_resolve_freq EXPORT_SYMBOL_GPL vmlinux 0x6f7e6040 irq_has_action -EXPORT_SYMBOL_GPL vmlinux 0x6f87b415 vfs_truncate -EXPORT_SYMBOL_GPL vmlinux 0x6f881b72 acpi_dev_gpio_irq_get_by EXPORT_SYMBOL_GPL vmlinux 0x6f935e35 ftrace_set_filter_ip +EXPORT_SYMBOL_GPL vmlinux 0x6f94231a firmware_request_cache EXPORT_SYMBOL_GPL vmlinux 0x6f95bb84 sbitmap_queue_init_node EXPORT_SYMBOL_GPL vmlinux 0x6f9e763b timecounter_read EXPORT_SYMBOL_GPL vmlinux 0x6fabae87 kobject_create_and_add -EXPORT_SYMBOL_GPL vmlinux 0x6fbdcf5d led_classdev_resume -EXPORT_SYMBOL_GPL vmlinux 0x6fceac9d dev_pm_domain_set +EXPORT_SYMBOL_GPL vmlinux 0x6fb13a7e gpiochip_line_is_irq +EXPORT_SYMBOL_GPL vmlinux 0x6fb216a9 iommu_report_device_fault +EXPORT_SYMBOL_GPL vmlinux 0x6fbfe4a0 set_cpus_allowed_ptr +EXPORT_SYMBOL_GPL vmlinux 0x6fc7f12b device_reprobe +EXPORT_SYMBOL_GPL vmlinux 0x6fcaccc6 md_new_event +EXPORT_SYMBOL_GPL vmlinux 0x6fcc7f7f virtqueue_add_sgs EXPORT_SYMBOL_GPL vmlinux 0x6fcef6ab ring_buffer_reset EXPORT_SYMBOL_GPL vmlinux 0x6fd6472c cleanup_srcu_struct -EXPORT_SYMBOL_GPL vmlinux 0x6fdc3408 inet_csk_reqsk_queue_hash_add -EXPORT_SYMBOL_GPL vmlinux 0x6fe7197e fuse_conn_get -EXPORT_SYMBOL_GPL vmlinux 0x6fe87eb8 crypto_register_ahash +EXPORT_SYMBOL_GPL vmlinux 0x6fe84a55 crypto_stats_akcipher_decrypt EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x6ff628cf nfs_ssc_client_tbl EXPORT_SYMBOL_GPL vmlinux 0x6ffce680 x86_cpu_has_min_microcode_rev -EXPORT_SYMBOL_GPL vmlinux 0x6ffcf451 generic_access_phys -EXPORT_SYMBOL_GPL vmlinux 0x7002e21e dma_vunmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x7005511c rdev_get_name EXPORT_SYMBOL_GPL vmlinux 0x7006586e iommu_get_group_resv_regions -EXPORT_SYMBOL_GPL vmlinux 0x7012c2eb sysfs_remove_mount_point -EXPORT_SYMBOL_GPL vmlinux 0x703929cc crypto_unregister_acomps -EXPORT_SYMBOL_GPL vmlinux 0x704592e6 xdp_rxq_info_unused -EXPORT_SYMBOL_GPL vmlinux 0x704d9df4 __regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0x7009e885 pci_epc_write_header +EXPORT_SYMBOL_GPL vmlinux 0x7010fce0 blk_ksm_init_passthrough +EXPORT_SYMBOL_GPL vmlinux 0x7013e363 __traceiter_neigh_update +EXPORT_SYMBOL_GPL vmlinux 0x701ef858 ata_cable_80wire +EXPORT_SYMBOL_GPL vmlinux 0x7021ea91 dev_pm_opp_remove_table EXPORT_SYMBOL_GPL vmlinux 0x7055c56e __sbitmap_queue_get_shallow +EXPORT_SYMBOL_GPL vmlinux 0x7056d069 watchdog_unregister_device EXPORT_SYMBOL_GPL vmlinux 0x70576fee acpi_processor_ffh_cstate_probe +EXPORT_SYMBOL_GPL vmlinux 0x70598409 irq_domain_translate_onecell +EXPORT_SYMBOL_GPL vmlinux 0x705da742 debugfs_create_atomic_t +EXPORT_SYMBOL_GPL vmlinux 0x7060e369 device_match_of_node +EXPORT_SYMBOL_GPL vmlinux 0x706990fd ata_do_dev_read_id EXPORT_SYMBOL_GPL vmlinux 0x7073c04f phy_10_100_features_array -EXPORT_SYMBOL_GPL vmlinux 0x7074c4dd serial8250_tx_chars -EXPORT_SYMBOL_GPL vmlinux 0x707ed60d usb_acpi_set_power_state -EXPORT_SYMBOL_GPL vmlinux 0x708674b0 ata_bmdma_setup -EXPORT_SYMBOL_GPL vmlinux 0x70884a29 tpm_try_get_ops -EXPORT_SYMBOL_GPL vmlinux 0x7094825d devlink_port_param_value_changed -EXPORT_SYMBOL_GPL vmlinux 0x7098342b sdio_readb -EXPORT_SYMBOL_GPL vmlinux 0x70a070e2 __dax_driver_register -EXPORT_SYMBOL_GPL vmlinux 0x70a71703 nvmem_device_get +EXPORT_SYMBOL_GPL vmlinux 0x707d3482 sdio_writeb +EXPORT_SYMBOL_GPL vmlinux 0x70820f59 __synth_event_gen_cmd_start +EXPORT_SYMBOL_GPL vmlinux 0x7094b28a regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0x709900fc bsg_job_put +EXPORT_SYMBOL_GPL vmlinux 0x70a67a16 dev_pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x70ad62f1 ata_sff_port_ops EXPORT_SYMBOL_GPL vmlinux 0x70b7c07a gnttab_grant_foreign_transfer -EXPORT_SYMBOL_GPL vmlinux 0x70b9d552 transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x70b98686 da9052_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0x70bb5752 devm_hwspin_lock_request 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 0x70c9964b bus_rescan_devices -EXPORT_SYMBOL_GPL vmlinux 0x70ca88a2 crypto_create_tfm_node +EXPORT_SYMBOL_GPL vmlinux 0x70cb8c69 ohci_init_driver EXPORT_SYMBOL_GPL vmlinux 0x70cf032f usb_hcd_irq -EXPORT_SYMBOL_GPL vmlinux 0x70d3ee76 sdio_writel -EXPORT_SYMBOL_GPL vmlinux 0x70d4fc24 dst_blackhole_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x70d0232e __SCK__tp_func_neigh_cleanup_and_release +EXPORT_SYMBOL_GPL vmlinux 0x70d746cf xhci_shutdown EXPORT_SYMBOL_GPL vmlinux 0x70e06e33 pkcs7_free_message -EXPORT_SYMBOL_GPL vmlinux 0x70eb23ac rtc_read_time -EXPORT_SYMBOL_GPL vmlinux 0x70eb5d23 regmap_noinc_write -EXPORT_SYMBOL_GPL vmlinux 0x70ec1c08 devm_pm_opp_set_regulators -EXPORT_SYMBOL_GPL vmlinux 0x70fd0a86 nvdimm_bus_check_dimm_count -EXPORT_SYMBOL_GPL vmlinux 0x7100a927 sched_trace_rq_cpu +EXPORT_SYMBOL_GPL vmlinux 0x70e5ff69 cookie_tcp_reqsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x70ec4b26 __tracepoint_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0x70fe2797 pinctrl_find_gpio_range_from_pin_nolock EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x71199280 bpf_map_inc_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x711fa0c4 devm_nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0x7122c317 spi_controller_dma_map_mem_op_data EXPORT_SYMBOL_GPL vmlinux 0x7129a6f4 osc_sb_native_usb4_support_confirmed -EXPORT_SYMBOL_GPL vmlinux 0x712c5718 anon_transport_class_register -EXPORT_SYMBOL_GPL vmlinux 0x7130138f dev_pm_opp_find_freq_ceil -EXPORT_SYMBOL_GPL vmlinux 0x713fdb84 alloc_io_pgtable_ops -EXPORT_SYMBOL_GPL vmlinux 0x716045ea irq_setup_alt_chip +EXPORT_SYMBOL_GPL vmlinux 0x712ab0ba phy_speed_up +EXPORT_SYMBOL_GPL vmlinux 0x712cfe84 usb_get_maximum_speed +EXPORT_SYMBOL_GPL vmlinux 0x712efd5b get_net_ns_by_fd +EXPORT_SYMBOL_GPL vmlinux 0x713aa5ea nvdimm_bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0x71439416 __list_lru_init +EXPORT_SYMBOL_GPL vmlinux 0x7145c32f gov_update_cpu_data +EXPORT_SYMBOL_GPL vmlinux 0x7148cd1d usb_hc_died EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized -EXPORT_SYMBOL_GPL vmlinux 0x7163d6be max8997_write_reg EXPORT_SYMBOL_GPL vmlinux 0x71650819 add_bootloader_randomness -EXPORT_SYMBOL_GPL vmlinux 0x717ae797 rio_request_outb_mbox -EXPORT_SYMBOL_GPL vmlinux 0x717cba44 __SCK__tp_func_suspend_resume -EXPORT_SYMBOL_GPL vmlinux 0x7180d325 dev_set_name +EXPORT_SYMBOL_GPL vmlinux 0x716ce3c0 nvdimm_flush +EXPORT_SYMBOL_GPL vmlinux 0x716e935e rtnl_get_net_ns_capable EXPORT_SYMBOL_GPL vmlinux 0x7181db30 atomic_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0x7183e4da edac_device_del_device -EXPORT_SYMBOL_GPL vmlinux 0x71939287 rio_free_net +EXPORT_SYMBOL_GPL vmlinux 0x7189e305 crypto_unregister_rng EXPORT_SYMBOL_GPL vmlinux 0x719e17ff clk_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0x71ade2dd trace_output_call EXPORT_SYMBOL_GPL vmlinux 0x71b15008 lwtunnel_valid_encap_type EXPORT_SYMBOL_GPL vmlinux 0x71b6cf94 dst_cache_reset_now +EXPORT_SYMBOL_GPL vmlinux 0x71bfdb91 ata_pci_sff_activate_host +EXPORT_SYMBOL_GPL vmlinux 0x71bff945 __traceiter_rpm_suspend EXPORT_SYMBOL_GPL vmlinux 0x71c059d8 __traceiter_map -EXPORT_SYMBOL_GPL vmlinux 0x71dadc8d badblocks_store -EXPORT_SYMBOL_GPL vmlinux 0x71e2ee00 tty_ldisc_ref_wait -EXPORT_SYMBOL_GPL vmlinux 0x71ee12e7 pinctrl_force_sleep -EXPORT_SYMBOL_GPL vmlinux 0x71ee655d fuse_conn_destroy +EXPORT_SYMBOL_GPL vmlinux 0x71c6250a mnt_want_write +EXPORT_SYMBOL_GPL vmlinux 0x71d805b3 pci_ignore_hotplug +EXPORT_SYMBOL_GPL vmlinux 0x71eb502a pci_iomap_wc_range +EXPORT_SYMBOL_GPL vmlinux 0x71ee50e7 bio_trim +EXPORT_SYMBOL_GPL vmlinux 0x71eed50c is_dock_device +EXPORT_SYMBOL_GPL vmlinux 0x71f4a7e6 device_find_child_by_name EXPORT_SYMBOL_GPL vmlinux 0x71f6670b __cookie_v6_check -EXPORT_SYMBOL_GPL vmlinux 0x71f8e846 anon_inode_getfd_secure -EXPORT_SYMBOL_GPL vmlinux 0x71fdfd7d irq_chip_ack_parent -EXPORT_SYMBOL_GPL vmlinux 0x720d07ea net_ns_get_ownership -EXPORT_SYMBOL_GPL vmlinux 0x72267c26 gpiochip_irq_domain_deactivate -EXPORT_SYMBOL_GPL vmlinux 0x72323696 __SCK__tp_func_unmap -EXPORT_SYMBOL_GPL vmlinux 0x723d7878 devm_led_trigger_register -EXPORT_SYMBOL_GPL vmlinux 0x7247ea5a __SCK__tp_func_arm_event -EXPORT_SYMBOL_GPL vmlinux 0x724936b7 key_set_timeout +EXPORT_SYMBOL_GPL vmlinux 0x71f82127 sdio_claim_irq +EXPORT_SYMBOL_GPL vmlinux 0x71f8a03a hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x7224d42e pcie_port_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x7235f7f3 devres_destroy +EXPORT_SYMBOL_GPL vmlinux 0x723d9755 ata_sff_lost_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x724c2e7d led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x72537c9e bpf_trace_run2 +EXPORT_SYMBOL_GPL vmlinux 0x7256c955 regulator_disable +EXPORT_SYMBOL_GPL vmlinux 0x7260c4d8 pci_find_ext_capability EXPORT_SYMBOL_GPL vmlinux 0x7262702b sfp_get_module_eeprom_by_page EXPORT_SYMBOL_GPL vmlinux 0x7265f2b0 pci_vpd_check_csum -EXPORT_SYMBOL_GPL vmlinux 0x72698a59 ata_host_start +EXPORT_SYMBOL_GPL vmlinux 0x72701dd4 netdev_walk_all_lower_dev EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events +EXPORT_SYMBOL_GPL vmlinux 0x7282c77d debugfs_remove EXPORT_SYMBOL_GPL vmlinux 0x7283161b percpu_ref_switch_to_percpu -EXPORT_SYMBOL_GPL vmlinux 0x7285fe1a raw_unhash_sk -EXPORT_SYMBOL_GPL vmlinux 0x72c21849 crypto_alloc_rng -EXPORT_SYMBOL_GPL vmlinux 0x72cea7d8 regulator_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0x72899eb7 gpiod_set_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x72a0ffb2 dma_buf_vunmap +EXPORT_SYMBOL_GPL vmlinux 0x72a48059 cpufreq_dbs_governor_exit +EXPORT_SYMBOL_GPL vmlinux 0x72a5d131 led_blink_set_oneshot +EXPORT_SYMBOL_GPL vmlinux 0x72b8d563 usb_free_streams +EXPORT_SYMBOL_GPL vmlinux 0x72d0e60a irqchip_fwnode_ops EXPORT_SYMBOL_GPL vmlinux 0x72d267dc nvmem_del_cell_lookups -EXPORT_SYMBOL_GPL vmlinux 0x72d438a7 dev_pm_clear_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0x72fb6ee2 pm_clk_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0x73050f9f battery_hook_unregister +EXPORT_SYMBOL_GPL vmlinux 0x72da37bb devm_hwmon_device_register_with_info +EXPORT_SYMBOL_GPL vmlinux 0x72f72ebd pci_find_host_bridge +EXPORT_SYMBOL_GPL vmlinux 0x730e2084 nd_cmd_out_size EXPORT_SYMBOL_GPL vmlinux 0x731dba7a xen_domain_type +EXPORT_SYMBOL_GPL vmlinux 0x73207f82 bio_associate_blkg_from_css EXPORT_SYMBOL_GPL vmlinux 0x732852fe xenbus_transaction_end -EXPORT_SYMBOL_GPL vmlinux 0x732b061b phy_destroy -EXPORT_SYMBOL_GPL vmlinux 0x73354c6d d_walk -EXPORT_SYMBOL_GPL vmlinux 0x733605e5 usb_kill_urb +EXPORT_SYMBOL_GPL vmlinux 0x73359f04 irq_set_chip_and_handler_name EXPORT_SYMBOL_GPL vmlinux 0x733ec33e __SCT__tp_func_fdb_delete -EXPORT_SYMBOL_GPL vmlinux 0x73693695 devlink_reload_disable -EXPORT_SYMBOL_GPL vmlinux 0x73809749 led_sysfs_disable +EXPORT_SYMBOL_GPL vmlinux 0x73450a2a l3mdev_update_flow +EXPORT_SYMBOL_GPL vmlinux 0x73511092 fwnode_find_reference EXPORT_SYMBOL_GPL vmlinux 0x7381287f trace_handle_return EXPORT_SYMBOL_GPL vmlinux 0x738fe32b amd_get_nodes_per_socket EXPORT_SYMBOL_GPL vmlinux 0x73a48b4a ata_sff_std_ports -EXPORT_SYMBOL_GPL vmlinux 0x73a897a3 iommu_map_sg -EXPORT_SYMBOL_GPL vmlinux 0x73b5fcf2 regulator_put -EXPORT_SYMBOL_GPL vmlinux 0x73bc58d4 sched_set_normal +EXPORT_SYMBOL_GPL vmlinux 0x73b3a4b1 dma_async_device_channel_unregister EXPORT_SYMBOL_GPL vmlinux 0x73c2554f __iowrite64_copy EXPORT_SYMBOL_GPL vmlinux 0x73cc8631 oiap -EXPORT_SYMBOL_GPL vmlinux 0x73d0708b iommu_sva_free_pasid -EXPORT_SYMBOL_GPL vmlinux 0x73ef3941 dma_buf_pin -EXPORT_SYMBOL_GPL vmlinux 0x74052f7e ata_sas_async_probe -EXPORT_SYMBOL_GPL vmlinux 0x740cb4d6 fib_nh_common_init -EXPORT_SYMBOL_GPL vmlinux 0x742fba8c devres_find +EXPORT_SYMBOL_GPL vmlinux 0x73d0fcc4 aead_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0x73eb7f3e ata_port_wait_eh +EXPORT_SYMBOL_GPL vmlinux 0x73f09383 usb_remove_hcd +EXPORT_SYMBOL_GPL vmlinux 0x73f7e632 vfio_iommu_group_put +EXPORT_SYMBOL_GPL vmlinux 0x73f90060 devlink_port_attrs_pci_sf_set +EXPORT_SYMBOL_GPL vmlinux 0x74244f48 get_device +EXPORT_SYMBOL_GPL vmlinux 0x742cc638 badblocks_check EXPORT_SYMBOL_GPL vmlinux 0x743a165e ata_pack_xfermask -EXPORT_SYMBOL_GPL vmlinux 0x743fd88b debugfs_create_blob EXPORT_SYMBOL_GPL vmlinux 0x74457e56 apei_resources_fini +EXPORT_SYMBOL_GPL vmlinux 0x745016db crypto_enqueue_request EXPORT_SYMBOL_GPL vmlinux 0x7452adff user_return_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x7456d2d8 ipv4_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x7484d2c9 dm_device_name -EXPORT_SYMBOL_GPL vmlinux 0x74abf6e1 wakeup_source_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7461bb38 dequeue_signal +EXPORT_SYMBOL_GPL vmlinux 0x74643528 crypto_shash_final +EXPORT_SYMBOL_GPL vmlinux 0x74776d88 debugfs_create_bool +EXPORT_SYMBOL_GPL vmlinux 0x74807640 fib4_rule_default +EXPORT_SYMBOL_GPL vmlinux 0x7496f610 sock_prot_inuse_add +EXPORT_SYMBOL_GPL vmlinux 0x74b0da0e extcon_sync EXPORT_SYMBOL_GPL vmlinux 0x74b5ea68 lcm_not_zero -EXPORT_SYMBOL_GPL vmlinux 0x74b9d6b7 cdrom_read_tocentry EXPORT_SYMBOL_GPL vmlinux 0x74baf17a tracing_is_on -EXPORT_SYMBOL_GPL vmlinux 0x74be2476 tpm_pcr_read +EXPORT_SYMBOL_GPL vmlinux 0x74c01b33 blk_mq_unfreeze_queue EXPORT_SYMBOL_GPL vmlinux 0x74c7bffa stack_trace_snprint -EXPORT_SYMBOL_GPL vmlinux 0x74dca96b rdev_clear_badblocks -EXPORT_SYMBOL_GPL vmlinux 0x74e05893 hypervisor_kobj +EXPORT_SYMBOL_GPL vmlinux 0x74c8d3ce rio_release_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x74c99447 cpufreq_register_driver EXPORT_SYMBOL_GPL vmlinux 0x74e73871 housekeeping_overridden -EXPORT_SYMBOL_GPL vmlinux 0x74f0fb64 elv_register +EXPORT_SYMBOL_GPL vmlinux 0x750f8809 blk_trace_setup EXPORT_SYMBOL_GPL vmlinux 0x75133f6e visitor128 -EXPORT_SYMBOL_GPL vmlinux 0x7515b57c dm_internal_resume -EXPORT_SYMBOL_GPL vmlinux 0x7517475c page_cache_ra_unbounded +EXPORT_SYMBOL_GPL vmlinux 0x751b2401 skb_send_sock_locked +EXPORT_SYMBOL_GPL vmlinux 0x7520a7b8 pskb_put EXPORT_SYMBOL_GPL vmlinux 0x7521afb6 leave_mm EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status -EXPORT_SYMBOL_GPL vmlinux 0x753514de sk_msg_is_readable -EXPORT_SYMBOL_GPL vmlinux 0x753d8cba gpiochip_relres_irq -EXPORT_SYMBOL_GPL vmlinux 0x75713cfe blk_clear_pm_only -EXPORT_SYMBOL_GPL vmlinux 0x75738e1d crypto_unregister_shashes -EXPORT_SYMBOL_GPL vmlinux 0x758220ab __tracepoint_napi_poll -EXPORT_SYMBOL_GPL vmlinux 0x758b6430 devm_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0x759395f2 devm_regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x752b8d72 account_locked_vm +EXPORT_SYMBOL_GPL vmlinux 0x7535586d bpf_trace_run6 +EXPORT_SYMBOL_GPL vmlinux 0x75363a46 dm_noflush_suspending +EXPORT_SYMBOL_GPL vmlinux 0x7551144d hwspin_lock_request +EXPORT_SYMBOL_GPL vmlinux 0x7557c2e0 dm_internal_suspend_fast +EXPORT_SYMBOL_GPL vmlinux 0x75670992 crypto_stats_skcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x75907e31 dst_cache_set_ip4 EXPORT_SYMBOL_GPL vmlinux 0x759bfe36 btree_destroy -EXPORT_SYMBOL_GPL vmlinux 0x759e61e2 __nvdimm_create -EXPORT_SYMBOL_GPL vmlinux 0x75a89ab7 posix_clock_register -EXPORT_SYMBOL_GPL vmlinux 0x75b4962e sbitmap_queue_show +EXPORT_SYMBOL_GPL vmlinux 0x75a9ecb5 devm_device_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0x75bc4ad2 usb_anchor_urb +EXPORT_SYMBOL_GPL vmlinux 0x75c3686c pm_genpd_init EXPORT_SYMBOL_GPL vmlinux 0x75cbfb09 add_interrupt_randomness -EXPORT_SYMBOL_GPL vmlinux 0x75d177c3 pci_hp_del -EXPORT_SYMBOL_GPL vmlinux 0x75d88030 mptcp_pm_get_subflows_max -EXPORT_SYMBOL_GPL vmlinux 0x75e01147 dw8250_setup_port -EXPORT_SYMBOL_GPL vmlinux 0x75e90525 adp5520_read +EXPORT_SYMBOL_GPL vmlinux 0x75d1bc70 pci_disable_pasid +EXPORT_SYMBOL_GPL vmlinux 0x75d73d84 pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0x75e56d1a gpiochip_add_pingroup_range EXPORT_SYMBOL_GPL vmlinux 0x75e9c735 pci_ats_disabled -EXPORT_SYMBOL_GPL vmlinux 0x75eccb54 devfreq_event_get_edev_count EXPORT_SYMBOL_GPL vmlinux 0x75f0e875 xas_store -EXPORT_SYMBOL_GPL vmlinux 0x75ff0863 platform_get_irq -EXPORT_SYMBOL_GPL vmlinux 0x760a73a2 usb_phy_set_charger_state -EXPORT_SYMBOL_GPL vmlinux 0x76118391 __mmdrop -EXPORT_SYMBOL_GPL vmlinux 0x76151e68 ata_sas_port_resume -EXPORT_SYMBOL_GPL vmlinux 0x761df15a iomap_migrate_page +EXPORT_SYMBOL_GPL vmlinux 0x7607e08c sched_trace_cfs_rq_path +EXPORT_SYMBOL_GPL vmlinux 0x7608f957 tty_port_default_client_ops +EXPORT_SYMBOL_GPL vmlinux 0x761381d8 efivar_entry_remove +EXPORT_SYMBOL_GPL vmlinux 0x76174e5d irq_gc_mask_clr_bit +EXPORT_SYMBOL_GPL vmlinux 0x761c1407 pinctrl_find_gpio_range_from_pin +EXPORT_SYMBOL_GPL vmlinux 0x76247766 relay_flush EXPORT_SYMBOL_GPL vmlinux 0x762640ab __SCT__tp_func_sched_cpu_capacity_tp -EXPORT_SYMBOL_GPL vmlinux 0x764b00eb shmem_file_setup +EXPORT_SYMBOL_GPL vmlinux 0x7639753a serdev_device_set_parity +EXPORT_SYMBOL_GPL vmlinux 0x764bb049 device_remove_file EXPORT_SYMBOL_GPL vmlinux 0x764ffefa page_reporting_register EXPORT_SYMBOL_GPL vmlinux 0x765f8830 __SCT__tp_func_neigh_event_send_dead -EXPORT_SYMBOL_GPL vmlinux 0x7660d46e i2c_bus_type EXPORT_SYMBOL_GPL vmlinux 0x7665a95b idr_remove EXPORT_SYMBOL_GPL vmlinux 0x7665ee72 crypto_dh_decode_key +EXPORT_SYMBOL_GPL vmlinux 0x767f2b20 __SCK__tp_func_devlink_hwerr EXPORT_SYMBOL_GPL vmlinux 0x7681946c unregister_pm_notifier -EXPORT_SYMBOL_GPL vmlinux 0x7681d560 blkdev_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x7685d032 efivars_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7681da17 clk_hw_register_fractional_divider EXPORT_SYMBOL_GPL vmlinux 0x769cefb5 percpu_ref_switch_to_atomic -EXPORT_SYMBOL_GPL vmlinux 0x76be06c8 spi_mem_dirmap_destroy -EXPORT_SYMBOL_GPL vmlinux 0x76cc6d44 led_trigger_unregister -EXPORT_SYMBOL_GPL vmlinux 0x76d24b18 register_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0x76a52ce4 __SCK__tp_func_br_fdb_add +EXPORT_SYMBOL_GPL vmlinux 0x76ce7913 __clk_determine_rate 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 0x76ddd699 vchan_tx_desc_free -EXPORT_SYMBOL_GPL vmlinux 0x76e7c66a device_init_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x76e80b18 ata_scsi_port_error_handler EXPORT_SYMBOL_GPL vmlinux 0x76e85b92 gnttab_request_free_callback -EXPORT_SYMBOL_GPL vmlinux 0x76e92ec4 crypto_unregister_templates EXPORT_SYMBOL_GPL vmlinux 0x76eeeb0f sha384_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x76fc014b nl_table -EXPORT_SYMBOL_GPL vmlinux 0x76fccb6f bpf_map_inc -EXPORT_SYMBOL_GPL vmlinux 0x76fe19cb ata_host_register -EXPORT_SYMBOL_GPL vmlinux 0x7703edaf fwnode_graph_get_remote_node +EXPORT_SYMBOL_GPL vmlinux 0x76ef9133 spi_sync +EXPORT_SYMBOL_GPL vmlinux 0x76f78356 __blk_req_zone_write_unlock +EXPORT_SYMBOL_GPL vmlinux 0x7707aeea regmap_test_bits EXPORT_SYMBOL_GPL vmlinux 0x7712771a unbind_from_irqhandler -EXPORT_SYMBOL_GPL vmlinux 0x7713642c __tracepoint_add_device_to_group -EXPORT_SYMBOL_GPL vmlinux 0x771732fe cros_ec_get_sensor_count -EXPORT_SYMBOL_GPL vmlinux 0x771c1cda efivar_entry_set +EXPORT_SYMBOL_GPL vmlinux 0x7712ddda device_match_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x7721c4c8 regulator_set_voltage_sel_regmap EXPORT_SYMBOL_GPL vmlinux 0x77222306 ring_buffer_read_page EXPORT_SYMBOL_GPL vmlinux 0x7729cbdd task_handoff_register EXPORT_SYMBOL_GPL vmlinux 0x772b0f64 __wake_up_pollfree -EXPORT_SYMBOL_GPL vmlinux 0x772bdec1 devm_free_pages -EXPORT_SYMBOL_GPL vmlinux 0x7737b79c crypto_skcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x772c0413 devm_hwrng_register EXPORT_SYMBOL_GPL vmlinux 0x773f2713 clk_hw_unregister_mux -EXPORT_SYMBOL_GPL vmlinux 0x774370bb clk_hw_set_parent +EXPORT_SYMBOL_GPL vmlinux 0x77413977 blk_ksm_init EXPORT_SYMBOL_GPL vmlinux 0x7757b51a clk_unregister -EXPORT_SYMBOL_GPL vmlinux 0x77633cd2 account_locked_vm -EXPORT_SYMBOL_GPL vmlinux 0x7768b8a4 devm_gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0x775f3d3a ksm_madvise +EXPORT_SYMBOL_GPL vmlinux 0x77640db6 pci_hp_del EXPORT_SYMBOL_GPL vmlinux 0x776a2dc5 synchronize_srcu_expedited -EXPORT_SYMBOL_GPL vmlinux 0x77708442 iommu_setup_dma_ops +EXPORT_SYMBOL_GPL vmlinux 0x7786a6f6 pci_epc_map_msi_irq EXPORT_SYMBOL_GPL vmlinux 0x7791e066 dw_pcie_read -EXPORT_SYMBOL_GPL vmlinux 0x77a9e433 component_del -EXPORT_SYMBOL_GPL vmlinux 0x77ad755b phy_package_leave EXPORT_SYMBOL_GPL vmlinux 0x77ae495d usb_speed_string -EXPORT_SYMBOL_GPL vmlinux 0x77b8e4f8 devm_blk_ksm_init -EXPORT_SYMBOL_GPL vmlinux 0x77caeed2 governor_sysfs_ops -EXPORT_SYMBOL_GPL vmlinux 0x77cbc6db sbitmap_bitmap_show -EXPORT_SYMBOL_GPL vmlinux 0x77d774cb platform_get_irq_byname_optional -EXPORT_SYMBOL_GPL vmlinux 0x77d928ae sched_trace_rq_nr_running -EXPORT_SYMBOL_GPL vmlinux 0x77db1601 gpio_to_desc +EXPORT_SYMBOL_GPL vmlinux 0x77dcdef0 blkdev_ioctl EXPORT_SYMBOL_GPL vmlinux 0x77e75be3 sfp_bus_put EXPORT_SYMBOL_GPL vmlinux 0x77ecf68d memalloc_socks_key -EXPORT_SYMBOL_GPL vmlinux 0x77fbf521 blk_queue_can_use_dma_map_merging +EXPORT_SYMBOL_GPL vmlinux 0x77fd463b gnttab_page_cache_shrink EXPORT_SYMBOL_GPL vmlinux 0x78041b8f byte_rev_table +EXPORT_SYMBOL_GPL vmlinux 0x78048416 clk_hw_register_composite +EXPORT_SYMBOL_GPL vmlinux 0x78082ec8 fsnotify_find_mark +EXPORT_SYMBOL_GPL vmlinux 0x781f1c4a device_match_name +EXPORT_SYMBOL_GPL vmlinux 0x78231de4 wbt_disable_default +EXPORT_SYMBOL_GPL vmlinux 0x78259737 irq_domain_reset_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x782ac76b __xenmem_reservation_va_mapping_update EXPORT_SYMBOL_GPL vmlinux 0x782adb74 hpet_rtc_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x783390e0 _copy_mc_to_iter -EXPORT_SYMBOL_GPL vmlinux 0x78379c69 paste_selection -EXPORT_SYMBOL_GPL vmlinux 0x7856eb94 sdio_disable_func +EXPORT_SYMBOL_GPL vmlinux 0x783f6b0a iommu_uapi_sva_bind_gpasid +EXPORT_SYMBOL_GPL vmlinux 0x78498150 skb_copy_ubufs EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available -EXPORT_SYMBOL_GPL vmlinux 0x785e8d53 usb_disable_xhci_ports -EXPORT_SYMBOL_GPL vmlinux 0x7861c28d inet_csk_route_req -EXPORT_SYMBOL_GPL vmlinux 0x786a6db5 misc_cg_try_charge -EXPORT_SYMBOL_GPL vmlinux 0x7871eaf7 acpi_kobj +EXPORT_SYMBOL_GPL vmlinux 0x785fd409 fwnode_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x78722749 pm_generic_poweroff_late EXPORT_SYMBOL_GPL vmlinux 0x787c882b lzo1x_1_compress -EXPORT_SYMBOL_GPL vmlinux 0x78894dac skb_segment_list EXPORT_SYMBOL_GPL vmlinux 0x788bfbad ring_buffer_empty -EXPORT_SYMBOL_GPL vmlinux 0x78984f4a dev_attr_em_message_type -EXPORT_SYMBOL_GPL vmlinux 0x789c47be crypto_unregister_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x789c71b6 switchdev_port_obj_add +EXPORT_SYMBOL_GPL vmlinux 0x7893daa6 mmc_switch EXPORT_SYMBOL_GPL vmlinux 0x789c73d9 rcu_cpu_stall_suppress_at_boot EXPORT_SYMBOL_GPL vmlinux 0x78bab66b irq_force_affinity +EXPORT_SYMBOL_GPL vmlinux 0x78cf510f crypto_stats_kpp_compute_shared_secret EXPORT_SYMBOL_GPL vmlinux 0x78ddb76b dmi_match -EXPORT_SYMBOL_GPL vmlinux 0x78f3fe6a dev_pm_opp_adjust_voltage +EXPORT_SYMBOL_GPL vmlinux 0x78de7086 kobject_uevent +EXPORT_SYMBOL_GPL vmlinux 0x78ee7436 tty_get_icount EXPORT_SYMBOL_GPL vmlinux 0x78fa64e2 fpu_copy_guest_fpstate_to_uabi -EXPORT_SYMBOL_GPL vmlinux 0x78fc8b4a usb_driver_claim_interface +EXPORT_SYMBOL_GPL vmlinux 0x79046a56 usb_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x790b0b00 gpiochip_irqchip_irq_valid EXPORT_SYMBOL_GPL vmlinux 0x790be0b9 usb_bus_idr -EXPORT_SYMBOL_GPL vmlinux 0x7914b787 dw_pcie_setup_rc -EXPORT_SYMBOL_GPL vmlinux 0x7915b784 fat_remove_entries EXPORT_SYMBOL_GPL vmlinux 0x7915cee5 do_machine_check EXPORT_SYMBOL_GPL vmlinux 0x791748c8 adxl_decode EXPORT_SYMBOL_GPL vmlinux 0x7918d817 memory_failure -EXPORT_SYMBOL_GPL vmlinux 0x793a8116 usb_hc_died -EXPORT_SYMBOL_GPL vmlinux 0x793f533c iommu_sva_bind_device -EXPORT_SYMBOL_GPL vmlinux 0x7942d2d5 ata_acpi_stm +EXPORT_SYMBOL_GPL vmlinux 0x7920c8cb ata_sas_port_destroy +EXPORT_SYMBOL_GPL vmlinux 0x792dde74 xen_xenbus_fops +EXPORT_SYMBOL_GPL vmlinux 0x7936be25 aead_exit_geniv +EXPORT_SYMBOL_GPL vmlinux 0x7938012f class_unregister EXPORT_SYMBOL_GPL vmlinux 0x7944e0fc tracing_off EXPORT_SYMBOL_GPL vmlinux 0x79470a2c TSS_authhmac -EXPORT_SYMBOL_GPL vmlinux 0x79492a7c isa_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x794a8917 acpi_unbind_one EXPORT_SYMBOL_GPL vmlinux 0x794b7271 orderly_reboot -EXPORT_SYMBOL_GPL vmlinux 0x795159a9 blkcg_print_blkgs -EXPORT_SYMBOL_GPL vmlinux 0x796882e0 dm_table_set_type +EXPORT_SYMBOL_GPL vmlinux 0x7952438f ipv6_opt_accepted +EXPORT_SYMBOL_GPL vmlinux 0x7962c564 clk_hw_set_parent +EXPORT_SYMBOL_GPL vmlinux 0x7984092d virtqueue_add_inbuf_ctx EXPORT_SYMBOL_GPL vmlinux 0x798b7682 klist_prev +EXPORT_SYMBOL_GPL vmlinux 0x79915b70 __traceiter_io_page_fault EXPORT_SYMBOL_GPL vmlinux 0x7991fd8d crash_vmclear_loaded_vmcss -EXPORT_SYMBOL_GPL vmlinux 0x79b0108a led_trigger_blink_oneshot -EXPORT_SYMBOL_GPL vmlinux 0x79ba560b pinctrl_pm_select_sleep_state +EXPORT_SYMBOL_GPL vmlinux 0x799701db pwmchip_add +EXPORT_SYMBOL_GPL vmlinux 0x79abc342 crypto_register_aead EXPORT_SYMBOL_GPL vmlinux 0x79bc842c usb_anchor_suspend_wakeups -EXPORT_SYMBOL_GPL vmlinux 0x79cdec16 devlink_port_attrs_set -EXPORT_SYMBOL_GPL vmlinux 0x79cef4af pm_runtime_irq_safe +EXPORT_SYMBOL_GPL vmlinux 0x79be727c devm_usb_get_phy_by_node +EXPORT_SYMBOL_GPL vmlinux 0x79cc78c2 devm_regmap_add_irq_chip EXPORT_SYMBOL_GPL vmlinux 0x79daf4de __SCT__tp_func_tcp_send_reset EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park -EXPORT_SYMBOL_GPL vmlinux 0x79e66cd3 spi_mem_dirmap_read EXPORT_SYMBOL_GPL vmlinux 0x79e69460 intel_iommu_gfx_mapped -EXPORT_SYMBOL_GPL vmlinux 0x79eac502 gpiochip_remove -EXPORT_SYMBOL_GPL vmlinux 0x79ec19d5 da9052_regmap_config EXPORT_SYMBOL_GPL vmlinux 0x79f697e4 lzorle1x_1_compress -EXPORT_SYMBOL_GPL vmlinux 0x79f8ad0b irq_generic_chip_ops -EXPORT_SYMBOL_GPL vmlinux 0x79fe25d6 mctrl_gpio_init -EXPORT_SYMBOL_GPL vmlinux 0x7a017a0a sysfs_remove_file_from_group -EXPORT_SYMBOL_GPL vmlinux 0x7a026b76 iommu_fwspec_init -EXPORT_SYMBOL_GPL vmlinux 0x7a0942f8 platform_msi_domain_alloc_irqs -EXPORT_SYMBOL_GPL vmlinux 0x7a33ce1f ata_sff_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0x7a1d3cef lwtunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0x7a244184 devm_pci_epc_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7a300f40 led_trigger_blink EXPORT_SYMBOL_GPL vmlinux 0x7a33f504 power_supply_find_ocv2cap_table -EXPORT_SYMBOL_GPL vmlinux 0x7a482e6e clockevent_delta2ns -EXPORT_SYMBOL_GPL vmlinux 0x7a4b9527 virtio_device_freeze -EXPORT_SYMBOL_GPL vmlinux 0x7a4f38f0 fwnode_connection_find_match +EXPORT_SYMBOL_GPL vmlinux 0x7a4c09be devlink_trap_policers_register +EXPORT_SYMBOL_GPL vmlinux 0x7a4edcb3 dev_pm_opp_get_max_volt_latency +EXPORT_SYMBOL_GPL vmlinux 0x7a52d74f scsi_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0x7a5a5463 crypto_register_ahash +EXPORT_SYMBOL_GPL vmlinux 0x7a6038b6 __put_net EXPORT_SYMBOL_GPL vmlinux 0x7a655f68 acpi_processor_claim_cst_control EXPORT_SYMBOL_GPL vmlinux 0x7a73e605 wm831x_isinkv_values -EXPORT_SYMBOL_GPL vmlinux 0x7a77c189 devlink_traps_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7a79bcfd wakeup_source_create +EXPORT_SYMBOL_GPL vmlinux 0x7a7ce750 shake_page +EXPORT_SYMBOL_GPL vmlinux 0x7a815201 rio_pw_enable EXPORT_SYMBOL_GPL vmlinux 0x7a81541b async_synchronize_cookie -EXPORT_SYMBOL_GPL vmlinux 0x7a8da28e usb_hcd_unmap_urb_setup_for_dma EXPORT_SYMBOL_GPL vmlinux 0x7a944007 rcu_idle_enter -EXPORT_SYMBOL_GPL vmlinux 0x7a9538d5 serdev_device_get_tiocm EXPORT_SYMBOL_GPL vmlinux 0x7a98f4b4 copy_from_user_nofault -EXPORT_SYMBOL_GPL vmlinux 0x7a9de669 crypto_comp_decompress EXPORT_SYMBOL_GPL vmlinux 0x7a9e4c23 software_node_register_node_group -EXPORT_SYMBOL_GPL vmlinux 0x7aa59290 dst_cache_set_ip4 -EXPORT_SYMBOL_GPL vmlinux 0x7aa68e16 fscrypt_set_bio_crypt_ctx_bh -EXPORT_SYMBOL_GPL vmlinux 0x7aabd7ce sata_std_hardreset -EXPORT_SYMBOL_GPL vmlinux 0x7aaecb1f tty_put_char -EXPORT_SYMBOL_GPL vmlinux 0x7ab8be7f __SCK__tp_func_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0x7ab7d96d scsi_host_busy_iter EXPORT_SYMBOL_GPL vmlinux 0x7ac10ad8 icst_clk_register -EXPORT_SYMBOL_GPL vmlinux 0x7ac442a3 genphy_c45_read_lpa -EXPORT_SYMBOL_GPL vmlinux 0x7ac4a2d2 events_hybrid_sysfs_show EXPORT_SYMBOL_GPL vmlinux 0x7ac722bd phy_all_ports_features_array -EXPORT_SYMBOL_GPL vmlinux 0x7acc2550 fsnotify EXPORT_SYMBOL_GPL vmlinux 0x7ad02a41 asn1_encode_tag -EXPORT_SYMBOL_GPL vmlinux 0x7ad1d7e3 cpufreq_dbs_governor_exit +EXPORT_SYMBOL_GPL vmlinux 0x7ad04926 __SCK__tp_func_kfree_skb EXPORT_SYMBOL_GPL vmlinux 0x7ad1ded1 pinctrl_register_mappings -EXPORT_SYMBOL_GPL vmlinux 0x7ae10aeb of_pm_clk_add_clk -EXPORT_SYMBOL_GPL vmlinux 0x7ae61c81 ata_sff_dev_select +EXPORT_SYMBOL_GPL vmlinux 0x7ad2b78c __mnt_is_readonly +EXPORT_SYMBOL_GPL vmlinux 0x7adb2099 class_compat_remove_link +EXPORT_SYMBOL_GPL vmlinux 0x7af42b88 pci_dev_lock EXPORT_SYMBOL_GPL vmlinux 0x7afcb7db __kprobe_event_add_fields -EXPORT_SYMBOL_GPL vmlinux 0x7b003030 ata_port_desc -EXPORT_SYMBOL_GPL vmlinux 0x7b01e641 device_property_read_string_array -EXPORT_SYMBOL_GPL vmlinux 0x7b033371 devfreq_event_get_event -EXPORT_SYMBOL_GPL vmlinux 0x7b0eda08 thermal_zone_device_enable +EXPORT_SYMBOL_GPL vmlinux 0x7aff3eb5 pci_platform_power_transition +EXPORT_SYMBOL_GPL vmlinux 0x7b065c5e devm_gpiochip_add_data_with_key +EXPORT_SYMBOL_GPL vmlinux 0x7b12f6ca perf_event_pause EXPORT_SYMBOL_GPL vmlinux 0x7b178afe unlock_system_sleep -EXPORT_SYMBOL_GPL vmlinux 0x7b2f7f31 dev_attr_sw_activity -EXPORT_SYMBOL_GPL vmlinux 0x7b4c422e crypto_register_scomps +EXPORT_SYMBOL_GPL vmlinux 0x7b22a974 power_supply_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x7b4d6f8a serial8250_release_dma EXPORT_SYMBOL_GPL vmlinux 0x7b5452b8 acpi_unregister_gsi EXPORT_SYMBOL_GPL vmlinux 0x7b5a4926 sha1_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x7b5a76a8 ata_host_init -EXPORT_SYMBOL_GPL vmlinux 0x7b63d424 ata_sff_busy_sleep -EXPORT_SYMBOL_GPL vmlinux 0x7b6bbbd8 ata_std_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x7b609f5b fwnode_connection_find_match EXPORT_SYMBOL_GPL vmlinux 0x7b6f9536 acpi_register_wakeup_handler -EXPORT_SYMBOL_GPL vmlinux 0x7b71cbdf ata_noop_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x7b87e31b to_nd_region +EXPORT_SYMBOL_GPL vmlinux 0x7b885cb3 skb_gso_validate_network_len +EXPORT_SYMBOL_GPL vmlinux 0x7b89607f __tracepoint_powernv_throttle EXPORT_SYMBOL_GPL vmlinux 0x7b8ea197 ethtool_params_from_link_mode +EXPORT_SYMBOL_GPL vmlinux 0x7b8f25e3 rio_add_mport_pw_handler EXPORT_SYMBOL_GPL vmlinux 0x7b90d1a9 bind_virq_to_irqhandler -EXPORT_SYMBOL_GPL vmlinux 0x7b95fb09 thermal_remove_hwmon_sysfs EXPORT_SYMBOL_GPL vmlinux 0x7b9793a2 get_cpu_idle_time_us -EXPORT_SYMBOL_GPL vmlinux 0x7b9873cf acpi_subsys_freeze -EXPORT_SYMBOL_GPL vmlinux 0x7b9db206 ata_host_put -EXPORT_SYMBOL_GPL vmlinux 0x7ba3a857 gpiod_get_index_optional -EXPORT_SYMBOL_GPL vmlinux 0x7ba876ff devm_regmap_add_irq_chip_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x7b98d5cf devm_regulator_unregister_notifier EXPORT_SYMBOL_GPL vmlinux 0x7bb045a7 __request_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0x7bb9686d to_nd_region -EXPORT_SYMBOL_GPL vmlinux 0x7bd76508 spi_take_timestamp_post -EXPORT_SYMBOL_GPL vmlinux 0x7c09b59f icc_node_add +EXPORT_SYMBOL_GPL vmlinux 0x7bb155ad aead_init_geniv +EXPORT_SYMBOL_GPL vmlinux 0x7bdf6b84 elv_rqhash_add +EXPORT_SYMBOL_GPL vmlinux 0x7bf30791 devm_phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7c02ec0d hwspin_lock_get_id +EXPORT_SYMBOL_GPL vmlinux 0x7c0492cb acpi_dma_request_slave_chan_by_index +EXPORT_SYMBOL_GPL vmlinux 0x7c05410e pinconf_generic_dump_config +EXPORT_SYMBOL_GPL vmlinux 0x7c113ed7 rio_get_comptag +EXPORT_SYMBOL_GPL vmlinux 0x7c14a500 power_supply_class EXPORT_SYMBOL_GPL vmlinux 0x7c20b6a0 load_direct_gdt -EXPORT_SYMBOL_GPL vmlinux 0x7c26b98b crypto_unregister_scomp EXPORT_SYMBOL_GPL vmlinux 0x7c291e86 show_rcu_tasks_trace_gp_kthread -EXPORT_SYMBOL_GPL vmlinux 0x7c292727 input_ff_destroy -EXPORT_SYMBOL_GPL vmlinux 0x7c2c7f46 regmap_check_range_table +EXPORT_SYMBOL_GPL vmlinux 0x7c2ca978 serdev_device_get_tiocm EXPORT_SYMBOL_GPL vmlinux 0x7c3d8a4b icc_bulk_put -EXPORT_SYMBOL_GPL vmlinux 0x7c3f868c serial8250_rpm_get_tx -EXPORT_SYMBOL_GPL vmlinux 0x7c49c675 tps6586x_write -EXPORT_SYMBOL_GPL vmlinux 0x7c51bb27 tcp_ca_openreq_child -EXPORT_SYMBOL_GPL vmlinux 0x7c51c2ee devm_pinctrl_register_and_init +EXPORT_SYMBOL_GPL vmlinux 0x7c4ade63 register_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x7c53eebb uart_console_write +EXPORT_SYMBOL_GPL vmlinux 0x7c569f7c pm_runtime_set_autosuspend_delay EXPORT_SYMBOL_GPL vmlinux 0x7c5f3711 ioasid_unregister_allocator EXPORT_SYMBOL_GPL vmlinux 0x7c626556 list_lru_destroy -EXPORT_SYMBOL_GPL vmlinux 0x7c87afb9 crypto_grab_aead -EXPORT_SYMBOL_GPL vmlinux 0x7c8a5e05 devlink_trap_groups_unregister -EXPORT_SYMBOL_GPL vmlinux 0x7c8f7f10 skb_to_sgvec_nomark +EXPORT_SYMBOL_GPL vmlinux 0x7c63ef3b fscrypt_ioctl_get_key_status +EXPORT_SYMBOL_GPL vmlinux 0x7c6ad9c1 devm_gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0x7c7084cc usb_store_new_id +EXPORT_SYMBOL_GPL vmlinux 0x7c845706 xenbus_read_otherend_details +EXPORT_SYMBOL_GPL vmlinux 0x7c8caf87 uhci_reset_hc EXPORT_SYMBOL_GPL vmlinux 0x7c983a5d dmi_walk EXPORT_SYMBOL_GPL vmlinux 0x7c9a7371 clk_prepare EXPORT_SYMBOL_GPL vmlinux 0x7ca85256 ms_hyperv +EXPORT_SYMBOL_GPL vmlinux 0x7cb547c3 __traceiter_block_split EXPORT_SYMBOL_GPL vmlinux 0x7cb803de btree_grim_visitor -EXPORT_SYMBOL_GPL vmlinux 0x7cc8ca6f virtqueue_enable_cb_prepare -EXPORT_SYMBOL_GPL vmlinux 0x7ccbc894 led_set_brightness -EXPORT_SYMBOL_GPL vmlinux 0x7ccca357 pcie_reset_flr EXPORT_SYMBOL_GPL vmlinux 0x7cceaf92 zs_pool_stats -EXPORT_SYMBOL_GPL vmlinux 0x7ccf32c1 inode_congested EXPORT_SYMBOL_GPL vmlinux 0x7cd6f042 cpufreq_get_current_driver -EXPORT_SYMBOL_GPL vmlinux 0x7ce02cd5 bio_associate_blkg_from_css -EXPORT_SYMBOL_GPL vmlinux 0x7ce6e65e tty_port_register_device EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0x7cf07269 gpiod_get_raw_value -EXPORT_SYMBOL_GPL vmlinux 0x7cf60e0b acpi_dev_suspend -EXPORT_SYMBOL_GPL vmlinux 0x7d002ab0 sysfs_remove_link_from_group +EXPORT_SYMBOL_GPL vmlinux 0x7cf5ce93 xhci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x7cf7cc9c devm_clk_hw_register EXPORT_SYMBOL_GPL vmlinux 0x7d00c65b nd_synchronize -EXPORT_SYMBOL_GPL vmlinux 0x7d0aea1f ata_slave_link_init EXPORT_SYMBOL_GPL vmlinux 0x7d0e1d95 hv_setup_crash_handler +EXPORT_SYMBOL_GPL vmlinux 0x7d194bb8 ip_icmp_error_rfc4884 EXPORT_SYMBOL_GPL vmlinux 0x7d1bb1d4 tnum_strn -EXPORT_SYMBOL_GPL vmlinux 0x7d1d1348 i2c_dw_adjust_bus_speed -EXPORT_SYMBOL_GPL vmlinux 0x7d2730f3 regulator_get_voltage_sel_pickable_regmap -EXPORT_SYMBOL_GPL vmlinux 0x7d2b19aa device_set_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0x7d33de1e sk_attach_filter +EXPORT_SYMBOL_GPL vmlinux 0x7d403ee0 pci_sriov_set_totalvfs EXPORT_SYMBOL_GPL vmlinux 0x7d491683 free_iova_fast -EXPORT_SYMBOL_GPL vmlinux 0x7d536575 iommu_group_add_device -EXPORT_SYMBOL_GPL vmlinux 0x7d597628 tty_port_tty_hangup +EXPORT_SYMBOL_GPL vmlinux 0x7d56eb97 tpm2_flush_context EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq -EXPORT_SYMBOL_GPL vmlinux 0x7d82be56 blk_freeze_queue_start -EXPORT_SYMBOL_GPL vmlinux 0x7d88733d crypto_ahash_final -EXPORT_SYMBOL_GPL vmlinux 0x7d8f878b regulator_is_supported_voltage -EXPORT_SYMBOL_GPL vmlinux 0x7d9dadf5 blk_ksm_destroy -EXPORT_SYMBOL_GPL vmlinux 0x7da16988 __mmc_poll_for_busy -EXPORT_SYMBOL_GPL vmlinux 0x7db73b12 __devres_alloc_node -EXPORT_SYMBOL_GPL vmlinux 0x7dc6f020 switchdev_handle_port_obj_add +EXPORT_SYMBOL_GPL vmlinux 0x7d5fe4d5 vfio_uninit_group_dev +EXPORT_SYMBOL_GPL vmlinux 0x7d7fc799 __irq_alloc_domain_generic_chips +EXPORT_SYMBOL_GPL vmlinux 0x7db36188 call_switchdev_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x7db68501 dev_pm_set_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x7dc5c1da devm_device_add_groups EXPORT_SYMBOL_GPL vmlinux 0x7dda30af unregister_tracepoint_module_notifier -EXPORT_SYMBOL_GPL vmlinux 0x7de41a3b __put_net 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 0x7ded8d0e pci_vpd_alloc -EXPORT_SYMBOL_GPL vmlinux 0x7df40794 blkg_lookup_slowpath -EXPORT_SYMBOL_GPL vmlinux 0x7dfebfff inet_unhash -EXPORT_SYMBOL_GPL vmlinux 0x7e0013ad devm_pm_clk_create -EXPORT_SYMBOL_GPL vmlinux 0x7e03e279 pci_remove_root_bus -EXPORT_SYMBOL_GPL vmlinux 0x7e12a4b0 devfreq_cooling_unregister -EXPORT_SYMBOL_GPL vmlinux 0x7e235600 acpi_subsys_restore_early -EXPORT_SYMBOL_GPL vmlinux 0x7e35f9fa led_blink_set -EXPORT_SYMBOL_GPL vmlinux 0x7e39b900 tun_get_socket +EXPORT_SYMBOL_GPL vmlinux 0x7df4c587 devm_pm_clk_create +EXPORT_SYMBOL_GPL vmlinux 0x7e021785 led_trigger_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7e2a4d3e tty_encode_baud_rate EXPORT_SYMBOL_GPL vmlinux 0x7e3bdecd __ftrace_vprintk -EXPORT_SYMBOL_GPL vmlinux 0x7e498c05 rio_request_inb_mbox -EXPORT_SYMBOL_GPL vmlinux 0x7e555dfd crypto_unregister_skciphers EXPORT_SYMBOL_GPL vmlinux 0x7e5db80b pstore_name_to_type +EXPORT_SYMBOL_GPL vmlinux 0x7e61db45 ipv6_dup_options EXPORT_SYMBOL_GPL vmlinux 0x7e64181d usb_calc_bus_time +EXPORT_SYMBOL_GPL vmlinux 0x7e653ac4 serial8250_em485_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7e67ad9b device_add_groups +EXPORT_SYMBOL_GPL vmlinux 0x7e7549f8 devlink_params_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7e756f6d attribute_container_unregister EXPORT_SYMBOL_GPL vmlinux 0x7e7a47c9 pci_acpi_clear_companion_lookup_hook -EXPORT_SYMBOL_GPL vmlinux 0x7e7a8b91 rdev_set_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x7e7d6ad7 phy_create EXPORT_SYMBOL_GPL vmlinux 0x7e7e3f58 ring_buffer_reset_cpu +EXPORT_SYMBOL_GPL vmlinux 0x7e7ed0bf fsstack_copy_attr_all +EXPORT_SYMBOL_GPL vmlinux 0x7e8574eb shash_register_instance EXPORT_SYMBOL_GPL vmlinux 0x7e8d8619 usb_anchor_empty EXPORT_SYMBOL_GPL vmlinux 0x7e9043b8 synchronize_srcu -EXPORT_SYMBOL_GPL vmlinux 0x7e9e35af tracepoint_probe_unregister -EXPORT_SYMBOL_GPL vmlinux 0x7ea24c46 pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x7ea051eb iommu_group_remove_device EXPORT_SYMBOL_GPL vmlinux 0x7ea75c24 __wake_up_locked_key_bookmark +EXPORT_SYMBOL_GPL vmlinux 0x7ea790ba acpi_cppc_processor_exit EXPORT_SYMBOL_GPL vmlinux 0x7eb808d0 add_cpu EXPORT_SYMBOL_GPL vmlinux 0x7ec814de inet_hashinfo_init +EXPORT_SYMBOL_GPL vmlinux 0x7ed9503c i2c_new_client_device +EXPORT_SYMBOL_GPL vmlinux 0x7edf5855 to_nvdimm_bus_dev EXPORT_SYMBOL_GPL vmlinux 0x7eea6b8b pcap_adc_async -EXPORT_SYMBOL_GPL vmlinux 0x7f0d343e dev_pm_opp_put_regulators -EXPORT_SYMBOL_GPL vmlinux 0x7f2785f2 tcp_get_info -EXPORT_SYMBOL_GPL vmlinux 0x7f31b995 acpi_initialize_hp_context -EXPORT_SYMBOL_GPL vmlinux 0x7f4e6ae0 serdev_device_set_baudrate -EXPORT_SYMBOL_GPL vmlinux 0x7f50c254 blk_abort_request -EXPORT_SYMBOL_GPL vmlinux 0x7f597abb thermal_of_cooling_device_register -EXPORT_SYMBOL_GPL vmlinux 0x7f5c0c41 security_path_link -EXPORT_SYMBOL_GPL vmlinux 0x7f5e0cc3 udp_cmsg_send +EXPORT_SYMBOL_GPL vmlinux 0x7ef2c13a dma_alloc_pages +EXPORT_SYMBOL_GPL vmlinux 0x7efda402 __bio_crypt_clone +EXPORT_SYMBOL_GPL vmlinux 0x7f42c7bb shash_free_singlespawn_instance +EXPORT_SYMBOL_GPL vmlinux 0x7f56c3cd of_hwspin_lock_get_id +EXPORT_SYMBOL_GPL vmlinux 0x7f65caae irq_chip_set_type_parent +EXPORT_SYMBOL_GPL vmlinux 0x7f67367e __account_locked_vm EXPORT_SYMBOL_GPL vmlinux 0x7f6cee89 rhashtable_free_and_destroy -EXPORT_SYMBOL_GPL vmlinux 0x7f7be7b5 vfio_pci_core_register_device +EXPORT_SYMBOL_GPL vmlinux 0x7f747793 cros_ec_get_sensor_count EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata -EXPORT_SYMBOL_GPL vmlinux 0x7f9873bd free_io_pgtable_ops -EXPORT_SYMBOL_GPL vmlinux 0x7f9d9d6f usb_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x7fa773a5 ata_bmdma_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x7f80caec pwm_adjust_config +EXPORT_SYMBOL_GPL vmlinux 0x7f81a821 lwtunnel_encap_del_ops +EXPORT_SYMBOL_GPL vmlinux 0x7f8f516a rtc_set_time +EXPORT_SYMBOL_GPL vmlinux 0x7f98d67c l3mdev_master_ifindex_rcu +EXPORT_SYMBOL_GPL vmlinux 0x7f9a9b09 blk_mq_virtio_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x7fa6fbfa crypto_default_rng EXPORT_SYMBOL_GPL vmlinux 0x7fa96509 erst_get_record_id_next +EXPORT_SYMBOL_GPL vmlinux 0x7faa8f58 irq_domain_push_irq EXPORT_SYMBOL_GPL vmlinux 0x7fafdec9 clk_fixed_factor_ops -EXPORT_SYMBOL_GPL vmlinux 0x7fb84d06 __root_device_register -EXPORT_SYMBOL_GPL vmlinux 0x7fcfb21b __rio_local_read_config_32 -EXPORT_SYMBOL_GPL vmlinux 0x7fd29f3b mmc_regulator_get_supply -EXPORT_SYMBOL_GPL vmlinux 0x7fdc3264 pci_msi_prepare -EXPORT_SYMBOL_GPL vmlinux 0x7fdf2387 devlink_param_value_changed -EXPORT_SYMBOL_GPL vmlinux 0x7ff3ba5d sdio_release_host -EXPORT_SYMBOL_GPL vmlinux 0x7ffdd7b7 spi_controller_suspend -EXPORT_SYMBOL_GPL vmlinux 0x8008122c blk_bio_list_merge -EXPORT_SYMBOL_GPL vmlinux 0x802ecd1e sis_info133_for_sata -EXPORT_SYMBOL_GPL vmlinux 0x80305a0f __irq_set_handler -EXPORT_SYMBOL_GPL vmlinux 0x8037ef29 sysfs_create_mount_point -EXPORT_SYMBOL_GPL vmlinux 0x80496f98 amd_iommu_is_attach_deferred +EXPORT_SYMBOL_GPL vmlinux 0x7fc15719 bpf_trace_run8 +EXPORT_SYMBOL_GPL vmlinux 0x7fe840e0 pm_clk_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x7fef26b8 anon_inode_getfd +EXPORT_SYMBOL_GPL vmlinux 0x7ff580bc __devm_regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0x8001b72a bpfilter_ops +EXPORT_SYMBOL_GPL vmlinux 0x800d2066 disk_force_media_change +EXPORT_SYMBOL_GPL vmlinux 0x8024a2cb mbox_client_txdone +EXPORT_SYMBOL_GPL vmlinux 0x802cf14d device_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x80508883 debugfs_create_u16 EXPORT_SYMBOL_GPL vmlinux 0x805667cf devlink_fmsg_u64_put -EXPORT_SYMBOL_GPL vmlinux 0x805f6e34 devlink_unregister -EXPORT_SYMBOL_GPL vmlinux 0x807032b3 blk_queue_required_elevator_features +EXPORT_SYMBOL_GPL vmlinux 0x8076e131 sysfs_remove_file_ns EXPORT_SYMBOL_GPL vmlinux 0x807766ea usb_scuttle_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x807f8b92 fuse_dev_alloc_install EXPORT_SYMBOL_GPL vmlinux 0x807fdcc4 call_rcu_tasks_rude +EXPORT_SYMBOL_GPL vmlinux 0x80839742 policy_has_boost_freq EXPORT_SYMBOL_GPL vmlinux 0x808a8088 handle_guest_split_lock EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested -EXPORT_SYMBOL_GPL vmlinux 0x80a0a533 wm8350_clear_bits -EXPORT_SYMBOL_GPL vmlinux 0x80ac6484 __strp_unpause -EXPORT_SYMBOL_GPL vmlinux 0x80c44566 __ndisc_fill_addr_option +EXPORT_SYMBOL_GPL vmlinux 0x808ee581 tcp_twsk_unique +EXPORT_SYMBOL_GPL vmlinux 0x809c9374 scsi_dh_activate +EXPORT_SYMBOL_GPL vmlinux 0x80a71951 tty_port_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x80a74b1e fsnotify +EXPORT_SYMBOL_GPL vmlinux 0x80b282be set_pages_array_wt +EXPORT_SYMBOL_GPL vmlinux 0x80b90b8e acpi_data_fwnode_ops EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close -EXPORT_SYMBOL_GPL vmlinux 0x80d5887f xenbus_free_evtchn +EXPORT_SYMBOL_GPL vmlinux 0x80cfb1ff pm_stay_awake EXPORT_SYMBOL_GPL vmlinux 0x80d5e57a mpi_free -EXPORT_SYMBOL_GPL vmlinux 0x80e7a168 cgroup_path_ns -EXPORT_SYMBOL_GPL vmlinux 0x80eb18e6 device_attach -EXPORT_SYMBOL_GPL vmlinux 0x80f56128 fb_bl_default_curve -EXPORT_SYMBOL_GPL vmlinux 0x80fa05de sdio_claim_host -EXPORT_SYMBOL_GPL vmlinux 0x810bbad6 nvmem_cell_read_variable_le_u64 -EXPORT_SYMBOL_GPL vmlinux 0x810d251c serial8250_do_set_divisor -EXPORT_SYMBOL_GPL vmlinux 0x8111623e xenbus_read_otherend_details -EXPORT_SYMBOL_GPL vmlinux 0x8112cf61 dst_blackhole_redirect -EXPORT_SYMBOL_GPL vmlinux 0x81180d24 fscrypt_file_open +EXPORT_SYMBOL_GPL vmlinux 0x80e37c33 pm_generic_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x80fcb52e __traceiter_xdp_exception +EXPORT_SYMBOL_GPL vmlinux 0x80fe21c8 __SCK__tp_func_pelt_dl_tp +EXPORT_SYMBOL_GPL vmlinux 0x810f4b26 dev_pm_genpd_set_next_wakeup EXPORT_SYMBOL_GPL vmlinux 0x811dc334 usb_unregister_notify -EXPORT_SYMBOL_GPL vmlinux 0x81209b57 dev_pm_opp_put_prop_name -EXPORT_SYMBOL_GPL vmlinux 0x8120b338 acpi_dma_controller_free EXPORT_SYMBOL_GPL vmlinux 0x81221cad amd_nb_num -EXPORT_SYMBOL_GPL vmlinux 0x812de1e3 gov_attr_set_put +EXPORT_SYMBOL_GPL vmlinux 0x8135208c bus_get_kset +EXPORT_SYMBOL_GPL vmlinux 0x81391124 __SCK__tp_func_sched_update_nr_running_tp +EXPORT_SYMBOL_GPL vmlinux 0x813a0b20 usb_sg_wait EXPORT_SYMBOL_GPL vmlinux 0x813cdf4a __free_iova -EXPORT_SYMBOL_GPL vmlinux 0x814b4c3c wm8350_gpio_config +EXPORT_SYMBOL_GPL vmlinux 0x8151edf8 usb_hcd_resume_root_hub +EXPORT_SYMBOL_GPL vmlinux 0x8153f3b3 blk_queue_write_cache EXPORT_SYMBOL_GPL vmlinux 0x815588a6 clk_enable -EXPORT_SYMBOL_GPL vmlinux 0x815f15b0 serial8250_update_uartclk +EXPORT_SYMBOL_GPL vmlinux 0x8156533c gpiochip_lock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0x815aa766 bus_register_notifier EXPORT_SYMBOL_GPL vmlinux 0x815fda83 sed_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x8163b792 clockevents_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0x8163dcf4 ata_dev_set_feature EXPORT_SYMBOL_GPL vmlinux 0x816a41ca cpufreq_update_limits EXPORT_SYMBOL_GPL vmlinux 0x8180cede asn1_encode_sequence +EXPORT_SYMBOL_GPL vmlinux 0x8188204f devlink_resource_occ_get_unregister +EXPORT_SYMBOL_GPL vmlinux 0x818f769f posix_clock_register +EXPORT_SYMBOL_GPL vmlinux 0x8192196b phy_configure EXPORT_SYMBOL_GPL vmlinux 0x819d72cb klist_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0x81a2c592 ima_inode_hash +EXPORT_SYMBOL_GPL vmlinux 0x81a07ccb iommu_aux_get_pasid +EXPORT_SYMBOL_GPL vmlinux 0x81a2a0da iomap_releasepage +EXPORT_SYMBOL_GPL vmlinux 0x81a42235 blk_crypto_evict_key EXPORT_SYMBOL_GPL vmlinux 0x81a7f541 percpu_ref_init -EXPORT_SYMBOL_GPL vmlinux 0x81a89977 ata_sas_port_destroy -EXPORT_SYMBOL_GPL vmlinux 0x81acaac3 setfl -EXPORT_SYMBOL_GPL vmlinux 0x81b025ff xdp_rxq_info_is_reg EXPORT_SYMBOL_GPL vmlinux 0x81b03377 efivar_entry_set_safe -EXPORT_SYMBOL_GPL vmlinux 0x81bf89d9 ip_route_output_tunnel -EXPORT_SYMBOL_GPL vmlinux 0x81cbfa14 spi_async_locked -EXPORT_SYMBOL_GPL vmlinux 0x81ddb1ec devm_spi_mem_dirmap_destroy -EXPORT_SYMBOL_GPL vmlinux 0x81e0ef75 event_triggers_call -EXPORT_SYMBOL_GPL vmlinux 0x81e4971e __pm_runtime_idle -EXPORT_SYMBOL_GPL vmlinux 0x81eb04e1 msg_zerocopy_alloc -EXPORT_SYMBOL_GPL vmlinux 0x81ed838c find_mci_by_dev +EXPORT_SYMBOL_GPL vmlinux 0x81b9b385 regmap_noinc_write +EXPORT_SYMBOL_GPL vmlinux 0x81bb61c2 mbox_flush +EXPORT_SYMBOL_GPL vmlinux 0x81ed412d wakeup_source_remove +EXPORT_SYMBOL_GPL vmlinux 0x81f19613 i2c_new_ancillary_device EXPORT_SYMBOL_GPL vmlinux 0x81f372a2 unregister_ftrace_export -EXPORT_SYMBOL_GPL vmlinux 0x81fdf81b devfreq_event_get_edev_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x8200940f iommu_fwspec_free +EXPORT_SYMBOL_GPL vmlinux 0x82017c89 usb_kill_urb +EXPORT_SYMBOL_GPL vmlinux 0x82030115 xenbus_dev_fatal +EXPORT_SYMBOL_GPL vmlinux 0x82051dba pci_store_saved_state EXPORT_SYMBOL_GPL vmlinux 0x82092899 badrange_forget -EXPORT_SYMBOL_GPL vmlinux 0x820b8071 blk_ksm_register -EXPORT_SYMBOL_GPL vmlinux 0x82117a3f ata_ehi_push_desc -EXPORT_SYMBOL_GPL vmlinux 0x8218fcb2 devres_add +EXPORT_SYMBOL_GPL vmlinux 0x8216ff48 cpuidle_unregister EXPORT_SYMBOL_GPL vmlinux 0x821ec7f1 clk_mux_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x8220e0de sata_async_notification EXPORT_SYMBOL_GPL vmlinux 0x82226c53 pinctrl_unregister_mappings -EXPORT_SYMBOL_GPL vmlinux 0x8230b033 inet_hash +EXPORT_SYMBOL_GPL vmlinux 0x82297240 tpm_tis_core_init EXPORT_SYMBOL_GPL vmlinux 0x823eae06 blocking_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x8250f0a1 usb_match_one_id -EXPORT_SYMBOL_GPL vmlinux 0x82736232 devm_nvdimm_memremap +EXPORT_SYMBOL_GPL vmlinux 0x8243e2e6 dm_per_bio_data +EXPORT_SYMBOL_GPL vmlinux 0x82721039 devm_hwrng_unregister EXPORT_SYMBOL_GPL vmlinux 0x827e61f8 acpi_has_watchdog -EXPORT_SYMBOL_GPL vmlinux 0x82811c1b scsi_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0x8288cfe6 ata_sff_busy_sleep EXPORT_SYMBOL_GPL vmlinux 0x828e22f4 hrtimer_forward -EXPORT_SYMBOL_GPL vmlinux 0x82929c2a rtnl_af_unregister -EXPORT_SYMBOL_GPL vmlinux 0x82a7665f serial8250_do_set_ldisc -EXPORT_SYMBOL_GPL vmlinux 0x82b6c78b kernfs_put -EXPORT_SYMBOL_GPL vmlinux 0x82c795b2 dev_attr_ncq_prio_supported -EXPORT_SYMBOL_GPL vmlinux 0x82d1c1ab sched_trace_rq_avg_dl -EXPORT_SYMBOL_GPL vmlinux 0x82d69435 metadata_dst_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x82951362 regulator_get_voltage_sel_pickable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x82a2c800 sata_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x82b31e67 clean_acked_data_disable +EXPORT_SYMBOL_GPL vmlinux 0x82cd08bd devlink_rate_leaf_destroy +EXPORT_SYMBOL_GPL vmlinux 0x82d615ae devm_of_phy_provider_unregister EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure -EXPORT_SYMBOL_GPL vmlinux 0x82db56de firmware_request_platform -EXPORT_SYMBOL_GPL vmlinux 0x82ec736a power_supply_set_input_current_limit_from_supplier +EXPORT_SYMBOL_GPL vmlinux 0x82d8a4d6 ping_rcv +EXPORT_SYMBOL_GPL vmlinux 0x82e26a79 anon_inode_getfd_secure +EXPORT_SYMBOL_GPL vmlinux 0x82e41572 subsys_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x82f2638c ata_port_freeze +EXPORT_SYMBOL_GPL vmlinux 0x82f7cc02 crypto_stats_akcipher_verify EXPORT_SYMBOL_GPL vmlinux 0x82ff4b95 clk_hw_unregister_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0x82ff9ff0 iommu_map_atomic -EXPORT_SYMBOL_GPL vmlinux 0x830d6196 trace_array_destroy -EXPORT_SYMBOL_GPL vmlinux 0x83186305 devm_clk_register -EXPORT_SYMBOL_GPL vmlinux 0x831eddcc crypto_alloc_acomp_node +EXPORT_SYMBOL_GPL vmlinux 0x83033ae1 mmc_regulator_set_ocr EXPORT_SYMBOL_GPL vmlinux 0x83202334 alloc_iova_fast +EXPORT_SYMBOL_GPL vmlinux 0x8323ac78 crypto_register_aeads +EXPORT_SYMBOL_GPL vmlinux 0x8323e4dc gnttab_page_cache_put EXPORT_SYMBOL_GPL vmlinux 0x8328673f uv_bios_get_master_nasid -EXPORT_SYMBOL_GPL vmlinux 0x8335c2d7 mptcp_pm_get_add_addr_signal_max EXPORT_SYMBOL_GPL vmlinux 0x8335ca43 __SCT__tp_func_io_page_fault EXPORT_SYMBOL_GPL vmlinux 0x8339df73 klist_add_behind -EXPORT_SYMBOL_GPL vmlinux 0x833a1aee regmap_field_read +EXPORT_SYMBOL_GPL vmlinux 0x833f6c1f usb_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0x8347e85c serial8250_rpm_put EXPORT_SYMBOL_GPL vmlinux 0x8349a895 nvmem_device_put EXPORT_SYMBOL_GPL vmlinux 0x8353dfff acpi_os_get_iomem -EXPORT_SYMBOL_GPL vmlinux 0x8366af1b fsnotify_alloc_user_group -EXPORT_SYMBOL_GPL vmlinux 0x836f7eee crypto_hash_walk_first -EXPORT_SYMBOL_GPL vmlinux 0x8375dbd2 pci_disable_rom -EXPORT_SYMBOL_GPL vmlinux 0x83863b61 user_read -EXPORT_SYMBOL_GPL vmlinux 0x838a664e devfreq_event_add_edev -EXPORT_SYMBOL_GPL vmlinux 0x839a8940 blk_ksm_intersect_modes -EXPORT_SYMBOL_GPL vmlinux 0x839f71f3 scsi_get_vpd_page -EXPORT_SYMBOL_GPL vmlinux 0x83b3ea29 mmu_interval_read_begin -EXPORT_SYMBOL_GPL vmlinux 0x83baf127 bio_associate_blkg -EXPORT_SYMBOL_GPL vmlinux 0x83c0414e device_property_read_u32_array -EXPORT_SYMBOL_GPL vmlinux 0x83c5b096 ata_std_prereset +EXPORT_SYMBOL_GPL vmlinux 0x835be8f8 devm_fwnode_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x835e5482 tty_ldisc_deref +EXPORT_SYMBOL_GPL vmlinux 0x8360635d tty_init_termios +EXPORT_SYMBOL_GPL vmlinux 0x83673db3 ata_port_pbar_desc +EXPORT_SYMBOL_GPL vmlinux 0x836fdafa pci_find_vsec_capability +EXPORT_SYMBOL_GPL vmlinux 0x8378a126 firmware_request_platform +EXPORT_SYMBOL_GPL vmlinux 0x837b3a9c phy_set_speed +EXPORT_SYMBOL_GPL vmlinux 0x837f1a74 bd_prepare_to_claim +EXPORT_SYMBOL_GPL vmlinux 0x8380edcb irq_domain_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x838509c8 __class_register +EXPORT_SYMBOL_GPL vmlinux 0x83892dc3 ptdump_walk_pgd_level_debugfs +EXPORT_SYMBOL_GPL vmlinux 0x839eb83b device_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x83ab6691 ata_msleep +EXPORT_SYMBOL_GPL vmlinux 0x83bb5065 blk_stat_enable_accounting +EXPORT_SYMBOL_GPL vmlinux 0x83c14913 gpiod_set_array_value EXPORT_SYMBOL_GPL vmlinux 0x83c6040d unregister_kretprobes -EXPORT_SYMBOL_GPL vmlinux 0x83fa0cc2 pinconf_generic_dump_config -EXPORT_SYMBOL_GPL vmlinux 0x840fee94 max8997_update_reg +EXPORT_SYMBOL_GPL vmlinux 0x83d954ca xfrm_audit_state_delete +EXPORT_SYMBOL_GPL vmlinux 0x83e31a7a em_dev_unregister_perf_domain +EXPORT_SYMBOL_GPL vmlinux 0x84006393 devlink_dpipe_table_counter_enabled +EXPORT_SYMBOL_GPL vmlinux 0x840489bf ata_sff_tf_read EXPORT_SYMBOL_GPL vmlinux 0x84106f36 devlink_trap_ctx_priv -EXPORT_SYMBOL_GPL vmlinux 0x8415e1a0 da9055_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0x8419c83b skb_mpls_update_lse -EXPORT_SYMBOL_GPL vmlinux 0x841e666f regmap_parse_val +EXPORT_SYMBOL_GPL vmlinux 0x8411e151 class_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x8413570f platform_get_resource +EXPORT_SYMBOL_GPL vmlinux 0x8417ff8d usb_hcd_setup_local_mem +EXPORT_SYMBOL_GPL vmlinux 0x841a3c4f usb_reset_device EXPORT_SYMBOL_GPL vmlinux 0x84264ced fs_umode_to_ftype -EXPORT_SYMBOL_GPL vmlinux 0x84277863 __SCK__tp_func_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0x84285fdb pci_epf_free_space EXPORT_SYMBOL_GPL vmlinux 0x842f046d usb_poison_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x843c54dc wait_on_page_writeback_killable -EXPORT_SYMBOL_GPL vmlinux 0x843c760b regmap_fields_read +EXPORT_SYMBOL_GPL vmlinux 0x84301bd3 kthread_use_mm EXPORT_SYMBOL_GPL vmlinux 0x843d70ef acpi_is_root_bridge -EXPORT_SYMBOL_GPL vmlinux 0x843f53d2 to_nvdimm -EXPORT_SYMBOL_GPL vmlinux 0x843f602c tps6586x_update -EXPORT_SYMBOL_GPL vmlinux 0x8443d3f8 xenbus_dev_is_online +EXPORT_SYMBOL_GPL vmlinux 0x844feef4 phy_validate EXPORT_SYMBOL_GPL vmlinux 0x84502a47 blk_status_to_errno -EXPORT_SYMBOL_GPL vmlinux 0x845710df platform_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x845bbefd __tracepoint_br_fdb_external_learn_add EXPORT_SYMBOL_GPL vmlinux 0x845dbf3b scatterwalk_map_and_copy -EXPORT_SYMBOL_GPL vmlinux 0x84622e3d rdev_get_dev EXPORT_SYMBOL_GPL vmlinux 0x8462cb62 atapi_cmd_type -EXPORT_SYMBOL_GPL vmlinux 0x8463a7b0 wait_for_stable_page EXPORT_SYMBOL_GPL vmlinux 0x84678725 __SCK__tp_func_xdp_exception -EXPORT_SYMBOL_GPL vmlinux 0x846b4494 component_add -EXPORT_SYMBOL_GPL vmlinux 0x8477c4d7 inet_csk_addr2sockaddr -EXPORT_SYMBOL_GPL vmlinux 0x847db2bf sdio_retune_release -EXPORT_SYMBOL_GPL vmlinux 0x848debf7 devm_usb_get_phy_by_node -EXPORT_SYMBOL_GPL vmlinux 0x8493b72a irq_get_default_host -EXPORT_SYMBOL_GPL vmlinux 0x8496fa7e acpi_dev_pm_attach -EXPORT_SYMBOL_GPL vmlinux 0x849d8155 cpufreq_freq_attr_scaling_available_freqs -EXPORT_SYMBOL_GPL vmlinux 0x84aaf054 devlink_param_driverinit_value_set +EXPORT_SYMBOL_GPL vmlinux 0x8469c501 da9052_adc_read_temp +EXPORT_SYMBOL_GPL vmlinux 0x847cce58 blk_queue_rq_timeout +EXPORT_SYMBOL_GPL vmlinux 0x848c84a5 tps65912_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x848daed2 extcon_set_state +EXPORT_SYMBOL_GPL vmlinux 0x848dee20 cpufreq_freq_attr_scaling_boost_freqs +EXPORT_SYMBOL_GPL vmlinux 0x84926662 vp_modern_queue_address +EXPORT_SYMBOL_GPL vmlinux 0x849c0bee ata_bmdma_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x849c9131 clk_hw_is_prepared EXPORT_SYMBOL_GPL vmlinux 0x84b268cf sn_coherency_id -EXPORT_SYMBOL_GPL vmlinux 0x84c06423 blk_mq_unquiesce_queue -EXPORT_SYMBOL_GPL vmlinux 0x84df569a ncsi_register_dev -EXPORT_SYMBOL_GPL vmlinux 0x84e1d253 tcp_register_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0x84bdbbe8 mnt_want_write_file +EXPORT_SYMBOL_GPL vmlinux 0x84c09e4d bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0x84ce6d7b ipv4_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0x84cef284 blk_freeze_queue_start +EXPORT_SYMBOL_GPL vmlinux 0x84d9c7fe vfio_pci_core_enable +EXPORT_SYMBOL_GPL vmlinux 0x84e8b0f6 spi_async_locked EXPORT_SYMBOL_GPL vmlinux 0x84ef27f5 synth_event_add_fields -EXPORT_SYMBOL_GPL vmlinux 0x84f29f8d tcp_sendpage_locked +EXPORT_SYMBOL_GPL vmlinux 0x84fec610 crypto_grab_skcipher EXPORT_SYMBOL_GPL vmlinux 0x8506baa8 clk_unregister_gate -EXPORT_SYMBOL_GPL vmlinux 0x8508c731 cookie_tcp_reqsk_alloc EXPORT_SYMBOL_GPL vmlinux 0x850bb6db devlink_health_reporter_destroy -EXPORT_SYMBOL_GPL vmlinux 0x851e0e15 devlink_reload_enable +EXPORT_SYMBOL_GPL vmlinux 0x850cb74d devm_regulator_get +EXPORT_SYMBOL_GPL vmlinux 0x850d3a75 auxiliary_find_device EXPORT_SYMBOL_GPL vmlinux 0x851e6003 usb_phy_roothub_calibrate -EXPORT_SYMBOL_GPL vmlinux 0x851eacc7 gpiochip_request_own_desc -EXPORT_SYMBOL_GPL vmlinux 0x852b6f5b __tracepoint_pelt_irq_tp -EXPORT_SYMBOL_GPL vmlinux 0x854efc3d pid_vnr -EXPORT_SYMBOL_GPL vmlinux 0x8551d3e4 pci_epc_set_msi +EXPORT_SYMBOL_GPL vmlinux 0x85401a17 device_create +EXPORT_SYMBOL_GPL vmlinux 0x85415607 __SCK__tp_func_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0x854da376 get_dev_pagemap EXPORT_SYMBOL_GPL vmlinux 0x85540ebc nvmem_cell_put -EXPORT_SYMBOL_GPL vmlinux 0x855eb4db gnttab_unmap_refs_async -EXPORT_SYMBOL_GPL vmlinux 0x856063a7 tpm2_probe -EXPORT_SYMBOL_GPL vmlinux 0x8563cd0c __traceiter_neigh_event_send_dead -EXPORT_SYMBOL_GPL vmlinux 0x856d8e0c __SCK__tp_func_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0x855be76f fixed_phy_register +EXPORT_SYMBOL_GPL vmlinux 0x855fc16a acpi_kobj +EXPORT_SYMBOL_GPL vmlinux 0x8563ba1b sdio_claim_host +EXPORT_SYMBOL_GPL vmlinux 0x85656cd0 rio_map_outb_region +EXPORT_SYMBOL_GPL vmlinux 0x857d8629 gnttab_alloc_pages +EXPORT_SYMBOL_GPL vmlinux 0x85847d62 blk_ksm_intersect_modes +EXPORT_SYMBOL_GPL vmlinux 0x8584d920 gnttab_free_pages EXPORT_SYMBOL_GPL vmlinux 0x85862277 ioasid_find +EXPORT_SYMBOL_GPL vmlinux 0x85912c19 sock_diag_check_cookie EXPORT_SYMBOL_GPL vmlinux 0x85935a61 acpi_dev_irq_flags -EXPORT_SYMBOL_GPL vmlinux 0x85a083a6 relay_reset +EXPORT_SYMBOL_GPL vmlinux 0x85af532a xhci_resume EXPORT_SYMBOL_GPL vmlinux 0x85b15444 arch_set_max_freq_ratio -EXPORT_SYMBOL_GPL vmlinux 0x85b95906 usb_hcd_pci_remove +EXPORT_SYMBOL_GPL vmlinux 0x85bc8fec __SCK__tp_func_devlink_hwmsg +EXPORT_SYMBOL_GPL vmlinux 0x85bec638 fib_nh_common_release EXPORT_SYMBOL_GPL vmlinux 0x85bfc5f9 __SCT__tp_func_block_rq_insert EXPORT_SYMBOL_GPL vmlinux 0x85c54b61 efivar_validate +EXPORT_SYMBOL_GPL vmlinux 0x85caa8a6 skb_zerocopy_iter_stream EXPORT_SYMBOL_GPL vmlinux 0x85cb2c45 xen_has_pv_devices -EXPORT_SYMBOL_GPL vmlinux 0x85d17a48 regmap_field_bulk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x85cda01c dev_pm_qos_hide_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x85d3e008 __tracepoint_arm_event +EXPORT_SYMBOL_GPL vmlinux 0x85d477fc usb_phy_roothub_alloc EXPORT_SYMBOL_GPL vmlinux 0x85d7edfd hpet_set_periodic_freq -EXPORT_SYMBOL_GPL vmlinux 0x85e48c53 virtqueue_get_desc_addr +EXPORT_SYMBOL_GPL vmlinux 0x85e0211f serdev_device_write_room +EXPORT_SYMBOL_GPL vmlinux 0x85ea2356 pinctrl_find_and_add_gpio_range EXPORT_SYMBOL_GPL vmlinux 0x85eed1be iopf_queue_discard_partial -EXPORT_SYMBOL_GPL vmlinux 0x861020ed uart_try_toggle_sysrq +EXPORT_SYMBOL_GPL vmlinux 0x85ef6efd palmas_ext_control_req_config EXPORT_SYMBOL_GPL vmlinux 0x86169f3e amd_smn_write EXPORT_SYMBOL_GPL vmlinux 0x862258db timecounter_init -EXPORT_SYMBOL_GPL vmlinux 0x86293945 iomap_dio_iopoll EXPORT_SYMBOL_GPL vmlinux 0x862bb17b linear_range_values_in_range_array -EXPORT_SYMBOL_GPL vmlinux 0x8633ce12 __traceiter_rpm_return_int -EXPORT_SYMBOL_GPL vmlinux 0x8633e0b9 dw_pcie_write_dbi -EXPORT_SYMBOL_GPL vmlinux 0x8637509a mddev_init -EXPORT_SYMBOL_GPL vmlinux 0x8643abf8 locks_alloc_lock EXPORT_SYMBOL_GPL vmlinux 0x86585a33 devlink_fmsg_obj_nest_start -EXPORT_SYMBOL_GPL vmlinux 0x865a6275 regulator_map_voltage_ascend EXPORT_SYMBOL_GPL vmlinux 0x86623fd7 notify_remote_via_irq -EXPORT_SYMBOL_GPL vmlinux 0x86694c2d fw_devlink_purge_absent_suppliers +EXPORT_SYMBOL_GPL vmlinux 0x8662d27f gpiod_cansleep EXPORT_SYMBOL_GPL vmlinux 0x86700220 acpi_get_cpuid EXPORT_SYMBOL_GPL vmlinux 0x8677245d unregister_switchdev_blocking_notifier EXPORT_SYMBOL_GPL vmlinux 0x8677f369 pvclock_get_pvti_cpu0_va -EXPORT_SYMBOL_GPL vmlinux 0x86807dea __tracepoint_sched_util_est_se_tp -EXPORT_SYMBOL_GPL vmlinux 0x86847aa7 blockdev_superblock +EXPORT_SYMBOL_GPL vmlinux 0x867f264e genphy_c45_restart_aneg EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get -EXPORT_SYMBOL_GPL vmlinux 0x868ff7cc nvmem_cell_read_u32 -EXPORT_SYMBOL_GPL vmlinux 0x86a22411 scsi_check_sense +EXPORT_SYMBOL_GPL vmlinux 0x868c75db xhci_drop_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x8691252b dev_xdp_prog_count +EXPORT_SYMBOL_GPL vmlinux 0x869286cc pci_epf_type_add_cfs +EXPORT_SYMBOL_GPL vmlinux 0x86a06995 metadata_dst_alloc +EXPORT_SYMBOL_GPL vmlinux 0x86aa9c0c irq_gc_set_wake +EXPORT_SYMBOL_GPL vmlinux 0x86aef10a blk_update_request EXPORT_SYMBOL_GPL vmlinux 0x86b13d2a usb_unpoison_anchored_urbs EXPORT_SYMBOL_GPL vmlinux 0x86b427ce clkdev_create -EXPORT_SYMBOL_GPL vmlinux 0x86b858f5 serial8250_request_dma -EXPORT_SYMBOL_GPL vmlinux 0x86c11190 dev_pm_opp_enable -EXPORT_SYMBOL_GPL vmlinux 0x86c1faa0 __tracepoint_mc_event EXPORT_SYMBOL_GPL vmlinux 0x86c43a8c cper_estatus_check EXPORT_SYMBOL_GPL vmlinux 0x86c961b3 __set_dax_synchronous -EXPORT_SYMBOL_GPL vmlinux 0x86cfb58c __tracepoint_sched_util_est_cfs_tp -EXPORT_SYMBOL_GPL vmlinux 0x86d35495 fsnotify_put_group -EXPORT_SYMBOL_GPL vmlinux 0x86d73f92 regulator_get_voltage_rdev -EXPORT_SYMBOL_GPL vmlinux 0x86dd6a24 spi_mem_supports_op EXPORT_SYMBOL_GPL vmlinux 0x86dda6ef rtm_getroute_parse_ip_proto -EXPORT_SYMBOL_GPL vmlinux 0x86e8e06f seg6_do_srh_inline -EXPORT_SYMBOL_GPL vmlinux 0x86f5e8e9 exportfs_decode_fh_raw +EXPORT_SYMBOL_GPL vmlinux 0x86f1717f __inet_lookup_listener EXPORT_SYMBOL_GPL vmlinux 0x86f6b99d synchronize_rcu_expedited EXPORT_SYMBOL_GPL vmlinux 0x86f85114 net_dec_egress_queue -EXPORT_SYMBOL_GPL vmlinux 0x86fae73d usb_add_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0x870247a1 devlink_port_attrs_pci_vf_set +EXPORT_SYMBOL_GPL vmlinux 0x870d6aee virtqueue_is_broken EXPORT_SYMBOL_GPL vmlinux 0x870e16b7 xen_test_irq_shared +EXPORT_SYMBOL_GPL vmlinux 0x8710ca12 i2c_dw_configure_master +EXPORT_SYMBOL_GPL vmlinux 0x87222004 __devm_spi_alloc_controller +EXPORT_SYMBOL_GPL vmlinux 0x8724e7ea platform_get_resource_byname EXPORT_SYMBOL_GPL vmlinux 0x872d4f7c __SCT__tp_func_xdp_bulk_tx -EXPORT_SYMBOL_GPL vmlinux 0x872d984e fwnode_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0x87354fea serdev_device_write EXPORT_SYMBOL_GPL vmlinux 0x8735ed3d irq_set_affinity_notifier -EXPORT_SYMBOL_GPL vmlinux 0x8748ea70 driver_find_device -EXPORT_SYMBOL_GPL vmlinux 0x875555da sb800_prefetch +EXPORT_SYMBOL_GPL vmlinux 0x8739b742 ata_platform_remove_one +EXPORT_SYMBOL_GPL vmlinux 0x8743bfa0 crypto_alloc_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x8751928b netdev_rx_handler_unregister EXPORT_SYMBOL_GPL vmlinux 0x875582b7 nvmem_del_cell_table -EXPORT_SYMBOL_GPL vmlinux 0x875a834e regmap_get_raw_read_max -EXPORT_SYMBOL_GPL vmlinux 0x878b31ca inet6_hash -EXPORT_SYMBOL_GPL vmlinux 0x879017eb __tracepoint_powernv_throttle -EXPORT_SYMBOL_GPL vmlinux 0x8799b816 pci_epc_init_notify -EXPORT_SYMBOL_GPL vmlinux 0x87a19635 xhci_reset_bandwidth -EXPORT_SYMBOL_GPL vmlinux 0x87a36dd5 crypto_register_acomp -EXPORT_SYMBOL_GPL vmlinux 0x87a53e70 usb_for_each_port -EXPORT_SYMBOL_GPL vmlinux 0x87c8869d posix_acl_default_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0x87647994 usb_hcd_poll_rh_status +EXPORT_SYMBOL_GPL vmlinux 0x876b40c3 ata_sas_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x8773e9a1 devm_memremap_pages +EXPORT_SYMBOL_GPL vmlinux 0x87743410 devm_release_action +EXPORT_SYMBOL_GPL vmlinux 0x878052f8 uprobe_unregister +EXPORT_SYMBOL_GPL vmlinux 0x878f00e3 crypto_unregister_aead +EXPORT_SYMBOL_GPL vmlinux 0x87b8af21 virtio_add_status EXPORT_SYMBOL_GPL vmlinux 0x87ce0be2 free_iova -EXPORT_SYMBOL_GPL vmlinux 0x87d627c6 shash_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x87d2f7c9 extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x87e478d9 usb_create_shared_hcd EXPORT_SYMBOL_GPL vmlinux 0x87e64181 amd_nb_has_feature -EXPORT_SYMBOL_GPL vmlinux 0x87e8603d dev_pm_qos_hide_latency_limit -EXPORT_SYMBOL_GPL vmlinux 0x87ec12c7 acpi_dev_get_property EXPORT_SYMBOL_GPL vmlinux 0x87f34e99 disable_kprobe -EXPORT_SYMBOL_GPL vmlinux 0x87faf7d8 bio_release_pages -EXPORT_SYMBOL_GPL vmlinux 0x880a8e7c acpi_subsys_suspend_noirq -EXPORT_SYMBOL_GPL vmlinux 0x883c2540 ohci_restart -EXPORT_SYMBOL_GPL vmlinux 0x8852c48e crypto_register_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x87f3d270 devm_regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x8810a61e raw_abort +EXPORT_SYMBOL_GPL vmlinux 0x881bd381 pci_stop_and_remove_bus_device_locked +EXPORT_SYMBOL_GPL vmlinux 0x8831df42 apply_to_page_range +EXPORT_SYMBOL_GPL vmlinux 0x8833d5f4 dev_pm_opp_find_level_exact +EXPORT_SYMBOL_GPL vmlinux 0x88355e3b tty_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0x88371b26 sdio_retune_crc_disable EXPORT_SYMBOL_GPL vmlinux 0x885528a6 ring_buffer_discard_commit -EXPORT_SYMBOL_GPL vmlinux 0x885cfce2 crypto_remove_spawns -EXPORT_SYMBOL_GPL vmlinux 0x8881b3d1 __phy_modify +EXPORT_SYMBOL_GPL vmlinux 0x8857dc91 dax_finish_sync_fault +EXPORT_SYMBOL_GPL vmlinux 0x886329a1 crypto_find_alg EXPORT_SYMBOL_GPL vmlinux 0x888c5be5 irq_bypass_register_consumer -EXPORT_SYMBOL_GPL vmlinux 0x889ad732 usb_hub_release_port -EXPORT_SYMBOL_GPL vmlinux 0x889b031d devm_regulator_get_optional -EXPORT_SYMBOL_GPL vmlinux 0x889c7b90 thermal_add_hwmon_sysfs -EXPORT_SYMBOL_GPL vmlinux 0x88a983bb kthread_use_mm +EXPORT_SYMBOL_GPL vmlinux 0x8891c5c0 devlink_param_unpublish +EXPORT_SYMBOL_GPL vmlinux 0x889ce1bb vfio_pci_core_match EXPORT_SYMBOL_GPL vmlinux 0x88ab6fe3 kgdb_active -EXPORT_SYMBOL_GPL vmlinux 0x88af8312 perf_aux_output_skip +EXPORT_SYMBOL_GPL vmlinux 0x88af1980 xenbus_free_evtchn +EXPORT_SYMBOL_GPL vmlinux 0x88b1fd4f i2c_adapter_depth EXPORT_SYMBOL_GPL vmlinux 0x88b4ae92 ring_buffer_normalize_time_stamp -EXPORT_SYMBOL_GPL vmlinux 0x88b54219 i2c_adapter_type -EXPORT_SYMBOL_GPL vmlinux 0x88b690c5 br_ip6_fragment -EXPORT_SYMBOL_GPL vmlinux 0x88dd5706 apei_get_debugfs_dir -EXPORT_SYMBOL_GPL vmlinux 0x88fa9164 acpi_device_get_match_data -EXPORT_SYMBOL_GPL vmlinux 0x8900a4d7 debugfs_create_x64 -EXPORT_SYMBOL_GPL vmlinux 0x89070d66 sk_msg_alloc +EXPORT_SYMBOL_GPL vmlinux 0x88cec5aa wb_writeout_inc +EXPORT_SYMBOL_GPL vmlinux 0x88e691e0 dma_request_chan +EXPORT_SYMBOL_GPL vmlinux 0x88e907ea ata_sff_data_xfer EXPORT_SYMBOL_GPL vmlinux 0x890f4f97 __kprobe_event_gen_cmd_start EXPORT_SYMBOL_GPL vmlinux 0x890fa0fa btree_get_prev +EXPORT_SYMBOL_GPL vmlinux 0x8915a044 xfrm_output +EXPORT_SYMBOL_GPL vmlinux 0x8918023a lwtunnel_get_encap_size EXPORT_SYMBOL_GPL vmlinux 0x891a5a7f gnttab_max_grant_frames +EXPORT_SYMBOL_GPL vmlinux 0x891adae3 gpiod_set_value +EXPORT_SYMBOL_GPL vmlinux 0x89210ffa vring_new_virtqueue EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0x892ba69a xen_find_device_domain_owner EXPORT_SYMBOL_GPL vmlinux 0x892f9f04 __SCT__tp_func_devlink_hwerr -EXPORT_SYMBOL_GPL vmlinux 0x8932e4ca icc_enable -EXPORT_SYMBOL_GPL vmlinux 0x8936afbb md_find_rdev_nr_rcu -EXPORT_SYMBOL_GPL vmlinux 0x8938d985 regulator_map_voltage_iterate EXPORT_SYMBOL_GPL vmlinux 0x893abbdd devlink_fmsg_u32_pair_put -EXPORT_SYMBOL_GPL vmlinux 0x8943fac1 device_phy_find_device -EXPORT_SYMBOL_GPL vmlinux 0x89468aa2 nvdimm_flush -EXPORT_SYMBOL_GPL vmlinux 0x89485111 max8997_read_reg +EXPORT_SYMBOL_GPL vmlinux 0x893cbc69 blk_mq_sched_try_insert_merge +EXPORT_SYMBOL_GPL vmlinux 0x89415b8c nvdimm_kobj EXPORT_SYMBOL_GPL vmlinux 0x89485687 iommu_group_put -EXPORT_SYMBOL_GPL vmlinux 0x894a56f3 preempt_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x89574626 regmap_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0x895cab77 skb_scrub_packet -EXPORT_SYMBOL_GPL vmlinux 0x895e8f67 __devm_reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0x89632add trace_event_buffer_reserve -EXPORT_SYMBOL_GPL vmlinux 0x896c6d2f pcie_bus_configure_settings -EXPORT_SYMBOL_GPL vmlinux 0x897044a9 class_compat_create_link -EXPORT_SYMBOL_GPL vmlinux 0x897b88df usb_get_current_frame_number -EXPORT_SYMBOL_GPL vmlinux 0x8986d0f4 rio_unmap_outb_region -EXPORT_SYMBOL_GPL vmlinux 0x89a2f010 crypto_unregister_rng -EXPORT_SYMBOL_GPL vmlinux 0x89ac31d1 dev_pm_opp_get_opp_count +EXPORT_SYMBOL_GPL vmlinux 0x89490763 __tracepoint_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0x8952d336 __dma_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x8974f0a9 event_triggers_post_call +EXPORT_SYMBOL_GPL vmlinux 0x897928b7 fwnode_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x898686f9 rio_add_device +EXPORT_SYMBOL_GPL vmlinux 0x8987c67e sbitmap_show +EXPORT_SYMBOL_GPL vmlinux 0x898981a4 pcie_aspm_enabled +EXPORT_SYMBOL_GPL vmlinux 0x89899646 device_remove_software_node +EXPORT_SYMBOL_GPL vmlinux 0x89985fe3 register_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0x899dae79 nfs42_ssc_register +EXPORT_SYMBOL_GPL vmlinux 0x89a88b9d pm_schedule_suspend +EXPORT_SYMBOL_GPL vmlinux 0x89ae02bf device_set_of_node_from_dev EXPORT_SYMBOL_GPL vmlinux 0x89ae7aa0 rsa_parse_pub_key -EXPORT_SYMBOL_GPL vmlinux 0x89b0e69b pci_ignore_hotplug -EXPORT_SYMBOL_GPL vmlinux 0x89b5d745 pci_reset_function_locked EXPORT_SYMBOL_GPL vmlinux 0x89bbafc6 usb_register_notify -EXPORT_SYMBOL_GPL vmlinux 0x89d38e35 dm_get_queue_limits +EXPORT_SYMBOL_GPL vmlinux 0x89c6225b vfio_register_iommu_driver +EXPORT_SYMBOL_GPL vmlinux 0x89ce1585 xenbus_probe_node +EXPORT_SYMBOL_GPL vmlinux 0x89ce332c pci_destroy_slot +EXPORT_SYMBOL_GPL vmlinux 0x89ce6f3d fat_get_dotdot_entry EXPORT_SYMBOL_GPL vmlinux 0x89e340cf acpi_bus_get_ejd -EXPORT_SYMBOL_GPL vmlinux 0x89e83e0d __hvc_resize -EXPORT_SYMBOL_GPL vmlinux 0x89e85d82 sdio_readsb -EXPORT_SYMBOL_GPL vmlinux 0x89fd3015 edac_mc_free -EXPORT_SYMBOL_GPL vmlinux 0x8a0ed99d spi_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x89e8baef gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0x89f03e2e fsnotify_destroy_mark +EXPORT_SYMBOL_GPL vmlinux 0x89f5069a sdio_memcpy_toio EXPORT_SYMBOL_GPL vmlinux 0x8a240bff __xas_next -EXPORT_SYMBOL_GPL vmlinux 0x8a27b437 pci_generic_config_write32 +EXPORT_SYMBOL_GPL vmlinux 0x8a290d48 sysfs_remove_file_from_group +EXPORT_SYMBOL_GPL vmlinux 0x8a3f4640 list_lru_count_one EXPORT_SYMBOL_GPL vmlinux 0x8a3f84ba linear_range_get_selector_low EXPORT_SYMBOL_GPL vmlinux 0x8a45a555 acpi_unregister_wakeup_handler -EXPORT_SYMBOL_GPL vmlinux 0x8a4652e1 dma_buf_end_cpu_access -EXPORT_SYMBOL_GPL vmlinux 0x8a4b354f devm_acpi_dma_controller_free -EXPORT_SYMBOL_GPL vmlinux 0x8a5ea14f devm_clk_hw_register -EXPORT_SYMBOL_GPL vmlinux 0x8a5f5dd5 net_selftest +EXPORT_SYMBOL_GPL vmlinux 0x8a48b518 crypto_shash_update +EXPORT_SYMBOL_GPL vmlinux 0x8a50c524 cpuidle_register_driver EXPORT_SYMBOL_GPL vmlinux 0x8a62b81b sfp_upstream_stop -EXPORT_SYMBOL_GPL vmlinux 0x8a71a897 phy_speed_up -EXPORT_SYMBOL_GPL vmlinux 0x8a745996 dst_cache_set_ip6 -EXPORT_SYMBOL_GPL vmlinux 0x8a798a42 nf_checksum +EXPORT_SYMBOL_GPL vmlinux 0x8a77a4f4 nf_ip_route +EXPORT_SYMBOL_GPL vmlinux 0x8a787de8 vfs_setxattr EXPORT_SYMBOL_GPL vmlinux 0x8a7cb9c4 platform_thermal_package_rate_control EXPORT_SYMBOL_GPL vmlinux 0x8a838ef6 intel_scu_ipc_dev_put EXPORT_SYMBOL_GPL vmlinux 0x8a83fb45 mpi_point_free_parts -EXPORT_SYMBOL_GPL vmlinux 0x8a918890 inet_csk_get_port -EXPORT_SYMBOL_GPL vmlinux 0x8a9ce47f regmap_write_async -EXPORT_SYMBOL_GPL vmlinux 0x8ab311fc serial8250_em485_destroy -EXPORT_SYMBOL_GPL vmlinux 0x8ab3b20e fwnode_graph_get_remote_port -EXPORT_SYMBOL_GPL vmlinux 0x8ab6aca1 regulator_set_voltage +EXPORT_SYMBOL_GPL vmlinux 0x8a970204 acpi_dev_get_dma_resources +EXPORT_SYMBOL_GPL vmlinux 0x8ab5431e crypto_stats_akcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x8ab5635b devlink_is_reload_failed EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files -EXPORT_SYMBOL_GPL vmlinux 0x8abb94d7 unix_inq_len -EXPORT_SYMBOL_GPL vmlinux 0x8ace3ad0 sata_pmp_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x8acf3db4 __traceiter_sched_util_est_cfs_tp -EXPORT_SYMBOL_GPL vmlinux 0x8ad25f58 regulator_set_pull_down_regmap -EXPORT_SYMBOL_GPL vmlinux 0x8ad37870 bpf_preload_ops EXPORT_SYMBOL_GPL vmlinux 0x8ad5ceb1 __uv_hub_info_list -EXPORT_SYMBOL_GPL vmlinux 0x8ad9b0f7 devm_kmemdup -EXPORT_SYMBOL_GPL vmlinux 0x8af8189f phy_modify_changed -EXPORT_SYMBOL_GPL vmlinux 0x8b05b46c tcp_unregister_congestion_control -EXPORT_SYMBOL_GPL vmlinux 0x8b08c74e bus_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x8af29511 skb_consume_udp EXPORT_SYMBOL_GPL vmlinux 0x8b149c36 clk_is_match -EXPORT_SYMBOL_GPL vmlinux 0x8b205d52 platform_irq_count -EXPORT_SYMBOL_GPL vmlinux 0x8b2a31e6 mmput -EXPORT_SYMBOL_GPL vmlinux 0x8b2f478c spi_mem_dtr_supports_op -EXPORT_SYMBOL_GPL vmlinux 0x8b2fdf63 pwmchip_remove +EXPORT_SYMBOL_GPL vmlinux 0x8b2534c5 sis_info133_for_sata +EXPORT_SYMBOL_GPL vmlinux 0x8b342118 umd_load_blob +EXPORT_SYMBOL_GPL vmlinux 0x8b3eb70b __rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8b46e9ba usb_root_hub_lost_power EXPORT_SYMBOL_GPL vmlinux 0x8b47ea1d __SCT__tp_func_extlog_mem_event -EXPORT_SYMBOL_GPL vmlinux 0x8b5593cd ata_sff_wait_ready -EXPORT_SYMBOL_GPL vmlinux 0x8b69b1ad xhci_add_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x8b50a078 irq_chip_set_parent_state +EXPORT_SYMBOL_GPL vmlinux 0x8b516cef iptunnel_handle_offloads +EXPORT_SYMBOL_GPL vmlinux 0x8b5daa0e iommu_sva_free_pasid +EXPORT_SYMBOL_GPL vmlinux 0x8b767388 acpi_dev_clear_dependencies EXPORT_SYMBOL_GPL vmlinux 0x8b8cc689 enable_kprobe -EXPORT_SYMBOL_GPL vmlinux 0x8b8d0ae3 bpf_trace_run6 EXPORT_SYMBOL_GPL vmlinux 0x8b9200fd lookup_address +EXPORT_SYMBOL_GPL vmlinux 0x8b95c5c1 usb_control_msg_recv EXPORT_SYMBOL_GPL vmlinux 0x8b95e6a2 __SCT__tp_func_pelt_irq_tp -EXPORT_SYMBOL_GPL vmlinux 0x8b972eb4 rtc_initialize_alarm -EXPORT_SYMBOL_GPL vmlinux 0x8b9c1200 devm_rtc_allocate_device -EXPORT_SYMBOL_GPL vmlinux 0x8bb063c3 iomap_writepage -EXPORT_SYMBOL_GPL vmlinux 0x8bb7f26e phy_pm_runtime_forbid -EXPORT_SYMBOL_GPL vmlinux 0x8bbe36da cpufreq_generic_init -EXPORT_SYMBOL_GPL vmlinux 0x8bd0d5ce reset_controller_unregister -EXPORT_SYMBOL_GPL vmlinux 0x8bd21cb7 rio_mport_read_config_32 -EXPORT_SYMBOL_GPL vmlinux 0x8bd48e68 irqd_cfg -EXPORT_SYMBOL_GPL vmlinux 0x8bd57af7 clk_hw_get_name -EXPORT_SYMBOL_GPL vmlinux 0x8be22ef7 serial8250_modem_status -EXPORT_SYMBOL_GPL vmlinux 0x8bfe9a87 __traceiter_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0x8baba89a fib_rules_lookup +EXPORT_SYMBOL_GPL vmlinux 0x8bbac0d9 irq_domain_xlate_onetwocell +EXPORT_SYMBOL_GPL vmlinux 0x8bc7f7ef rio_dma_prep_xfer +EXPORT_SYMBOL_GPL vmlinux 0x8bc88b31 platform_device_add_resources +EXPORT_SYMBOL_GPL vmlinux 0x8bcd72c5 xfrm_unregister_translator +EXPORT_SYMBOL_GPL vmlinux 0x8bd9faee crypto_unregister_shashes +EXPORT_SYMBOL_GPL vmlinux 0x8be462bd vga_default_device +EXPORT_SYMBOL_GPL vmlinux 0x8be557bf tpm2_get_cc_attrs_tbl +EXPORT_SYMBOL_GPL vmlinux 0x8bf04d3d crypto_stats_kpp_generate_public_key EXPORT_SYMBOL_GPL vmlinux 0x8c0215f2 pm_system_wakeup EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue -EXPORT_SYMBOL_GPL vmlinux 0x8c04c11d devm_hwspin_lock_request EXPORT_SYMBOL_GPL vmlinux 0x8c0ed103 rcu_check_boost_fail -EXPORT_SYMBOL_GPL vmlinux 0x8c1014d2 __SCK__tp_func_napi_poll -EXPORT_SYMBOL_GPL vmlinux 0x8c16957f ata_cable_40wire -EXPORT_SYMBOL_GPL vmlinux 0x8c1b4511 tracepoint_probe_register -EXPORT_SYMBOL_GPL vmlinux 0x8c26772a gnttab_alloc_pages -EXPORT_SYMBOL_GPL vmlinux 0x8c314425 serial8250_em485_stop_tx +EXPORT_SYMBOL_GPL vmlinux 0x8c1d82f3 crypto_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0x8c2bcb3f ip6_dst_lookup_tunnel +EXPORT_SYMBOL_GPL vmlinux 0x8c33969c ata_ehi_push_desc EXPORT_SYMBOL_GPL vmlinux 0x8c341c48 current_save_fsgs -EXPORT_SYMBOL_GPL vmlinux 0x8c38791a regulator_set_voltage_sel_regmap -EXPORT_SYMBOL_GPL vmlinux 0x8c3abc8b rio_map_outb_region -EXPORT_SYMBOL_GPL vmlinux 0x8c3edea0 decrypt_blob -EXPORT_SYMBOL_GPL vmlinux 0x8c44dacc xdp_attachment_setup +EXPORT_SYMBOL_GPL vmlinux 0x8c369b1f devlink_port_type_ib_set EXPORT_SYMBOL_GPL vmlinux 0x8c484409 gnttab_release_grant_reference +EXPORT_SYMBOL_GPL vmlinux 0x8c4fb465 io_cgrp_subsys EXPORT_SYMBOL_GPL vmlinux 0x8c4fded2 sgx_virt_einit -EXPORT_SYMBOL_GPL vmlinux 0x8c604a95 devfreq_event_remove_edev -EXPORT_SYMBOL_GPL vmlinux 0x8c696f19 crypto_register_algs +EXPORT_SYMBOL_GPL vmlinux 0x8c61ce3c iomap_seek_hole +EXPORT_SYMBOL_GPL vmlinux 0x8c704e07 icc_set_tag EXPORT_SYMBOL_GPL vmlinux 0x8c743fb6 reset_control_status -EXPORT_SYMBOL_GPL vmlinux 0x8c790054 pci_set_pcie_reset_state +EXPORT_SYMBOL_GPL vmlinux 0x8c747025 dax_region_put +EXPORT_SYMBOL_GPL vmlinux 0x8c85f61d power_supply_register EXPORT_SYMBOL_GPL vmlinux 0x8c89e3b8 usb_phy_roothub_power_off -EXPORT_SYMBOL_GPL vmlinux 0x8c8c1b58 acpiphp_register_attention -EXPORT_SYMBOL_GPL vmlinux 0x8c916769 __hwspin_lock_timeout -EXPORT_SYMBOL_GPL vmlinux 0x8ca02cdc devm_gpiod_get_index_optional -EXPORT_SYMBOL_GPL vmlinux 0x8ca2136f fwnode_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0x8ca959e2 mmc_get_ext_csd -EXPORT_SYMBOL_GPL vmlinux 0x8cb0d0c8 __tracepoint_unmap -EXPORT_SYMBOL_GPL vmlinux 0x8cbb332a unwind_get_return_address -EXPORT_SYMBOL_GPL vmlinux 0x8cc0aa3e memunmap_pages -EXPORT_SYMBOL_GPL vmlinux 0x8cc37114 __fscrypt_inode_uses_inline_crypto -EXPORT_SYMBOL_GPL vmlinux 0x8cd4e7ff xdp_rxq_info_reg -EXPORT_SYMBOL_GPL vmlinux 0x8ce823b3 devres_for_each_res -EXPORT_SYMBOL_GPL vmlinux 0x8cf3b179 skcipher_walk_aead_decrypt -EXPORT_SYMBOL_GPL vmlinux 0x8cf54322 fuse_dev_release -EXPORT_SYMBOL_GPL vmlinux 0x8d0db7b0 watchdog_notify_pretimeout -EXPORT_SYMBOL_GPL vmlinux 0x8d175ab4 edac_device_alloc_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0x8c8f252b subsys_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x8c97301a irq_chip_eoi_parent +EXPORT_SYMBOL_GPL vmlinux 0x8ca2090e crypto_spawn_tfm2 +EXPORT_SYMBOL_GPL vmlinux 0x8ca9e593 clockevents_register_device +EXPORT_SYMBOL_GPL vmlinux 0x8cd3c7cd xenbus_map_ring_valloc +EXPORT_SYMBOL_GPL vmlinux 0x8cd768e8 sdio_retune_crc_enable +EXPORT_SYMBOL_GPL vmlinux 0x8cdc03bf ata_sff_exec_command +EXPORT_SYMBOL_GPL vmlinux 0x8cdd2103 devm_get_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x8ce0909e __mmdrop +EXPORT_SYMBOL_GPL vmlinux 0x8ce24fd2 class_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x8ced208f vfs_test_lock +EXPORT_SYMBOL_GPL vmlinux 0x8cf2441a fs_kobj +EXPORT_SYMBOL_GPL vmlinux 0x8d09b51b find_extend_vma +EXPORT_SYMBOL_GPL vmlinux 0x8d148ff5 add_to_page_cache_lru +EXPORT_SYMBOL_GPL vmlinux 0x8d1fc814 phy_driver_is_genphy_10g EXPORT_SYMBOL_GPL vmlinux 0x8d22bb58 iommu_group_alloc EXPORT_SYMBOL_GPL vmlinux 0x8d3330b6 cpuacct_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x8d3acecb __iomap_dio_rw -EXPORT_SYMBOL_GPL vmlinux 0x8d498d16 regmap_get_val_bytes -EXPORT_SYMBOL_GPL vmlinux 0x8d5da464 blkdev_zone_mgmt -EXPORT_SYMBOL_GPL vmlinux 0x8d756eed fuse_dev_fiq_ops +EXPORT_SYMBOL_GPL vmlinux 0x8d4d09de unregister_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x8d573d23 virtio_config_changed +EXPORT_SYMBOL_GPL vmlinux 0x8d5b7b87 find_get_pid +EXPORT_SYMBOL_GPL vmlinux 0x8d5ec4a7 wm8350_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0x8d71a410 md_bitmap_load +EXPORT_SYMBOL_GPL vmlinux 0x8d790269 trace_get_event_file EXPORT_SYMBOL_GPL vmlinux 0x8d7e3373 hwpoison_filter_dev_major EXPORT_SYMBOL_GPL vmlinux 0x8d88ee64 sbitmap_queue_wake_up -EXPORT_SYMBOL_GPL vmlinux 0x8d8cedfe gpiod_set_debounce -EXPORT_SYMBOL_GPL vmlinux 0x8d8f061e __audit_inode_child -EXPORT_SYMBOL_GPL vmlinux 0x8d8ffd3d virtqueue_notify -EXPORT_SYMBOL_GPL vmlinux 0x8d98db93 devm_acpi_dma_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x8d9bae89 scsi_autopm_put_device -EXPORT_SYMBOL_GPL vmlinux 0x8da4f42c of_phy_provider_unregister -EXPORT_SYMBOL_GPL vmlinux 0x8da993af __traceiter_devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0x8d8a4c60 fib6_check_nexthop +EXPORT_SYMBOL_GPL vmlinux 0x8d8ff77b crypto_alloc_shash +EXPORT_SYMBOL_GPL vmlinux 0x8d91963b __devm_regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0x8da18c0a clk_hw_rate_is_protected EXPORT_SYMBOL_GPL vmlinux 0x8dafdded lwtunnel_valid_encap_type_attr -EXPORT_SYMBOL_GPL vmlinux 0x8dd0d97f __SCK__tp_func_br_fdb_update +EXPORT_SYMBOL_GPL vmlinux 0x8db9af78 acpi_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x8dc9f77d pci_hp_remove_module_link +EXPORT_SYMBOL_GPL vmlinux 0x8dcd76c4 ata_eh_freeze_port EXPORT_SYMBOL_GPL vmlinux 0x8dd218b0 icc_bulk_disable -EXPORT_SYMBOL_GPL vmlinux 0x8dd4f718 genphy_c45_pma_resume -EXPORT_SYMBOL_GPL vmlinux 0x8dd8aeee crypto_shash_final EXPORT_SYMBOL_GPL vmlinux 0x8de6817a acpi_dev_resource_address_space -EXPORT_SYMBOL_GPL vmlinux 0x8df74a42 subsys_system_register -EXPORT_SYMBOL_GPL vmlinux 0x8e2a9a99 crypto_mod_get +EXPORT_SYMBOL_GPL vmlinux 0x8deace0a dev_coredumpm +EXPORT_SYMBOL_GPL vmlinux 0x8df48f93 perf_event_create_kernel_counter +EXPORT_SYMBOL_GPL vmlinux 0x8e0987b1 devlink_port_param_driverinit_value_set +EXPORT_SYMBOL_GPL vmlinux 0x8e10de69 rtc_update_irq +EXPORT_SYMBOL_GPL vmlinux 0x8e1d5b0c disk_uevent +EXPORT_SYMBOL_GPL vmlinux 0x8e1d7f01 device_wakeup_disable +EXPORT_SYMBOL_GPL vmlinux 0x8e2990c9 usb_set_interface +EXPORT_SYMBOL_GPL vmlinux 0x8e2f4a20 __platform_register_drivers +EXPORT_SYMBOL_GPL vmlinux 0x8e354625 fwnode_remove_software_node EXPORT_SYMBOL_GPL vmlinux 0x8e3d911b arch_phys_wc_index -EXPORT_SYMBOL_GPL vmlinux 0x8e4180ad rio_mport_send_doorbell EXPORT_SYMBOL_GPL vmlinux 0x8e44823a sfp_select_interface -EXPORT_SYMBOL_GPL vmlinux 0x8e46fc41 phy_modify_mmd_changed +EXPORT_SYMBOL_GPL vmlinux 0x8e4a9074 pci_d3cold_disable EXPORT_SYMBOL_GPL vmlinux 0x8e4eb451 bpf_sk_storage_diag_free -EXPORT_SYMBOL_GPL vmlinux 0x8e5c2047 vp_modern_map_vq_notify -EXPORT_SYMBOL_GPL vmlinux 0x8e5dfc78 lookup_address_in_mm -EXPORT_SYMBOL_GPL vmlinux 0x8e668383 perf_event_refresh -EXPORT_SYMBOL_GPL vmlinux 0x8e6add20 gpiochip_generic_request EXPORT_SYMBOL_GPL vmlinux 0x8e6b1a9e net_selftest_get_count -EXPORT_SYMBOL_GPL vmlinux 0x8e6c4ff5 ata_msleep EXPORT_SYMBOL_GPL vmlinux 0x8e6fa8b5 apei_exec_pre_map_gars -EXPORT_SYMBOL_GPL vmlinux 0x8e81e5e2 wm8350_reg_lock -EXPORT_SYMBOL_GPL vmlinux 0x8e83b253 ata_sff_thaw -EXPORT_SYMBOL_GPL vmlinux 0x8e8da5fc cpci_hp_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0x8e6fd5b0 device_init_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x8e75940c __SCK__tp_func_xhci_dbg_quirks +EXPORT_SYMBOL_GPL vmlinux 0x8e79c245 pci_hp_deregister +EXPORT_SYMBOL_GPL vmlinux 0x8e7c1c25 crypto_register_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x8e803c6e __tracepoint_extlog_mem_event +EXPORT_SYMBOL_GPL vmlinux 0x8e89c64d tracepoint_probe_register_prio_may_exist +EXPORT_SYMBOL_GPL vmlinux 0x8e8f53b9 smpboot_unregister_percpu_thread EXPORT_SYMBOL_GPL vmlinux 0x8e92f7c4 static_key_slow_inc -EXPORT_SYMBOL_GPL vmlinux 0x8ea376bb kern_mount -EXPORT_SYMBOL_GPL vmlinux 0x8ea71a91 acpi_pci_find_root -EXPORT_SYMBOL_GPL vmlinux 0x8ea75de9 usb_altnum_to_altsetting +EXPORT_SYMBOL_GPL vmlinux 0x8e992230 sock_diag_register +EXPORT_SYMBOL_GPL vmlinux 0x8ea45ef3 nvdimm_in_overwrite +EXPORT_SYMBOL_GPL vmlinux 0x8eab5523 class_destroy EXPORT_SYMBOL_GPL vmlinux 0x8ead800c user_free_preparse -EXPORT_SYMBOL_GPL vmlinux 0x8eb9178e __clk_get_hw -EXPORT_SYMBOL_GPL vmlinux 0x8ed692a7 usb_poison_urb -EXPORT_SYMBOL_GPL vmlinux 0x8ed88348 __traceiter_block_rq_remap -EXPORT_SYMBOL_GPL vmlinux 0x8ee610ab pci_ioremap_wc_bar -EXPORT_SYMBOL_GPL vmlinux 0x8eebf06a task_cls_state +EXPORT_SYMBOL_GPL vmlinux 0x8ebcaa2f nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0x8ed03b23 wm8350_gpio_config +EXPORT_SYMBOL_GPL vmlinux 0x8ed06dd8 kthread_queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0x8ed99773 subsys_interface_register +EXPORT_SYMBOL_GPL vmlinux 0x8edc560b fb_deferred_io_fsync EXPORT_SYMBOL_GPL vmlinux 0x8eed0fa2 sbitmap_get_shallow EXPORT_SYMBOL_GPL vmlinux 0x8eee3399 dax_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0x8ef8e699 ata_eh_analyze_ncq_error EXPORT_SYMBOL_GPL vmlinux 0x8effb505 phy_gbit_features EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp -EXPORT_SYMBOL_GPL vmlinux 0x8f0dd623 uart_console_write -EXPORT_SYMBOL_GPL vmlinux 0x8f28ec45 preempt_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0x8f2961ba xfrm_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0x8f2305ff xen_pci_frontend EXPORT_SYMBOL_GPL vmlinux 0x8f2eb429 kvm_arch_para_hints +EXPORT_SYMBOL_GPL vmlinux 0x8f38353f ata_bmdma_port_start32 EXPORT_SYMBOL_GPL vmlinux 0x8f3ef401 srcu_batches_completed -EXPORT_SYMBOL_GPL vmlinux 0x8f43695e rio_release_inb_dbell -EXPORT_SYMBOL_GPL vmlinux 0x8f5db90f blk_mq_unfreeze_queue +EXPORT_SYMBOL_GPL vmlinux 0x8f3f5594 class_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8f43215c devm_clk_hw_get_clk +EXPORT_SYMBOL_GPL vmlinux 0x8f4d4e6e pci_status_get_and_clear_errors +EXPORT_SYMBOL_GPL vmlinux 0x8f518448 ima_file_check +EXPORT_SYMBOL_GPL vmlinux 0x8f586390 nfs42_ssc_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8f68fb0f regcache_sync_region EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative -EXPORT_SYMBOL_GPL vmlinux 0x8f6ef528 component_master_add_with_match +EXPORT_SYMBOL_GPL vmlinux 0x8f6f2455 spi_alloc_device EXPORT_SYMBOL_GPL vmlinux 0x8f786bee fs_umode_to_dtype -EXPORT_SYMBOL_GPL vmlinux 0x8f79c1ab dpm_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x8f7a9bbe of_phy_put +EXPORT_SYMBOL_GPL vmlinux 0x8f7b2abc gov_attr_set_get EXPORT_SYMBOL_GPL vmlinux 0x8f7bd0a6 btree_init_mempool -EXPORT_SYMBOL_GPL vmlinux 0x8f952ef9 crypto_register_shash +EXPORT_SYMBOL_GPL vmlinux 0x8f8871fe fwnode_create_software_node +EXPORT_SYMBOL_GPL vmlinux 0x8f8aa0e7 regulator_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0x8f8d5e41 usb_enable_lpm EXPORT_SYMBOL_GPL vmlinux 0x8fa9d9e8 __SCT__tp_func_xdp_exception EXPORT_SYMBOL_GPL vmlinux 0x8faa800d acpi_cpc_valid +EXPORT_SYMBOL_GPL vmlinux 0x8fbc5847 em_dev_register_perf_domain EXPORT_SYMBOL_GPL vmlinux 0x8fc12788 software_node_unregister_node_group -EXPORT_SYMBOL_GPL vmlinux 0x8fc4e2cc wwan_register_ops -EXPORT_SYMBOL_GPL vmlinux 0x8fc57455 blk_mq_alloc_sq_tag_set -EXPORT_SYMBOL_GPL vmlinux 0x8fd21f7a debugfs_create_bool -EXPORT_SYMBOL_GPL vmlinux 0x8fe008d9 irq_domain_associate_many -EXPORT_SYMBOL_GPL vmlinux 0x8ff1bbc9 xenbus_switch_state +EXPORT_SYMBOL_GPL vmlinux 0x8fdbbd0a regmap_get_max_register +EXPORT_SYMBOL_GPL vmlinux 0x8ff0312b power_supply_set_property EXPORT_SYMBOL_GPL vmlinux 0x8ff60436 mpi_ec_add_points EXPORT_SYMBOL_GPL vmlinux 0x8ffb1df7 acpi_get_psd_map -EXPORT_SYMBOL_GPL vmlinux 0x900308f2 driver_remove_file -EXPORT_SYMBOL_GPL vmlinux 0x90217812 i2c_dw_acpi_configure -EXPORT_SYMBOL_GPL vmlinux 0x902467a9 __phy_modify_mmd_changed +EXPORT_SYMBOL_GPL vmlinux 0x90059055 gpiochip_add_pin_range EXPORT_SYMBOL_GPL vmlinux 0x9024f443 mds_user_clear -EXPORT_SYMBOL_GPL vmlinux 0x90253b5b device_wakeup_enable -EXPORT_SYMBOL_GPL vmlinux 0x90273e94 bsg_setup_queue -EXPORT_SYMBOL_GPL vmlinux 0x902761c2 fsstack_copy_inode_size +EXPORT_SYMBOL_GPL vmlinux 0x9028351f __SCK__tp_func_pelt_irq_tp +EXPORT_SYMBOL_GPL vmlinux 0x90317a1e spi_write_then_read +EXPORT_SYMBOL_GPL vmlinux 0x90359476 __fscrypt_prepare_link +EXPORT_SYMBOL_GPL vmlinux 0x903a00d9 crypto_stats_skcipher_encrypt EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move -EXPORT_SYMBOL_GPL vmlinux 0x904a44ed nd_blk_memremap_flags -EXPORT_SYMBOL_GPL vmlinux 0x9062a8c6 pci_slots_kset -EXPORT_SYMBOL_GPL vmlinux 0x90666b19 fat_alloc_new_dir +EXPORT_SYMBOL_GPL vmlinux 0x90486463 __tracepoint_neigh_update_done +EXPORT_SYMBOL_GPL vmlinux 0x904a3557 ata_pci_device_do_suspend +EXPORT_SYMBOL_GPL vmlinux 0x904ae825 devm_regmap_del_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x905b6f3a do_truncate +EXPORT_SYMBOL_GPL vmlinux 0x905ea808 rt_mutex_trylock +EXPORT_SYMBOL_GPL vmlinux 0x90638932 fib6_rule_default +EXPORT_SYMBOL_GPL vmlinux 0x90672b6d dev_pm_opp_set_supported_hw EXPORT_SYMBOL_GPL vmlinux 0x90688bcd devlink_info_driver_name_put -EXPORT_SYMBOL_GPL vmlinux 0x9069daf9 tpm_chip_alloc -EXPORT_SYMBOL_GPL vmlinux 0x9075baad ata_bmdma_post_internal_cmd -EXPORT_SYMBOL_GPL vmlinux 0x9078a828 skb_consume_udp -EXPORT_SYMBOL_GPL vmlinux 0x908428e4 pm_clk_init EXPORT_SYMBOL_GPL vmlinux 0x9084b044 clear_page_erms -EXPORT_SYMBOL_GPL vmlinux 0x90905664 tracing_snapshot_cond_enable +EXPORT_SYMBOL_GPL vmlinux 0x908faa24 devlink_resource_occ_get_register EXPORT_SYMBOL_GPL vmlinux 0x90a9d8cc hv_is_hyperv_initialized EXPORT_SYMBOL_GPL vmlinux 0x90ad66b1 software_node_unregister_nodes EXPORT_SYMBOL_GPL vmlinux 0x90c8498c apei_exec_write_register -EXPORT_SYMBOL_GPL vmlinux 0x90da1d46 dev_queue_xmit_nit EXPORT_SYMBOL_GPL vmlinux 0x90de0452 platform_thermal_package_notify EXPORT_SYMBOL_GPL vmlinux 0x90de72a9 register_ftrace_function -EXPORT_SYMBOL_GPL vmlinux 0x90e04f80 crypto_stats_kpp_compute_shared_secret -EXPORT_SYMBOL_GPL vmlinux 0x90e05188 pci_disable_pri -EXPORT_SYMBOL_GPL vmlinux 0x90f5c5d6 regulator_get_voltage_sel_regmap -EXPORT_SYMBOL_GPL vmlinux 0x90f6e73c balloon_page_enqueue -EXPORT_SYMBOL_GPL vmlinux 0x91019d46 dev_pm_domain_attach +EXPORT_SYMBOL_GPL vmlinux 0x90defee6 __SCK__tp_func_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0x91061dc7 regulator_set_suspend_voltage +EXPORT_SYMBOL_GPL vmlinux 0x91066d7e ata_bmdma_start EXPORT_SYMBOL_GPL vmlinux 0x9107d224 __SCT__tp_func_arm_event -EXPORT_SYMBOL_GPL vmlinux 0x910b83a4 extcon_set_state EXPORT_SYMBOL_GPL vmlinux 0x910bdf6b trace_seq_vprintf -EXPORT_SYMBOL_GPL vmlinux 0x911f710d __udp4_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x9127eaff pci_find_ht_capability -EXPORT_SYMBOL_GPL vmlinux 0x912b8213 scsi_target_unblock -EXPORT_SYMBOL_GPL vmlinux 0x912c0e92 devm_device_add_groups -EXPORT_SYMBOL_GPL vmlinux 0x913632e8 serdev_device_set_tiocm -EXPORT_SYMBOL_GPL vmlinux 0x913a844b init_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0x913e6a65 ata_sff_freeze -EXPORT_SYMBOL_GPL vmlinux 0x9142ad39 led_trigger_unregister_simple -EXPORT_SYMBOL_GPL vmlinux 0x91526bc1 led_trigger_set -EXPORT_SYMBOL_GPL vmlinux 0x9155a8ab usb_hcd_giveback_urb -EXPORT_SYMBOL_GPL vmlinux 0x91668d04 serial8250_do_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x9173a4c8 ata_bmdma_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x9176254b __rt_mutex_init +EXPORT_SYMBOL_GPL vmlinux 0x91129b78 driver_find_device +EXPORT_SYMBOL_GPL vmlinux 0x9113833c switchdev_handle_port_attr_set +EXPORT_SYMBOL_GPL vmlinux 0x914a5e69 __mmc_poll_for_busy +EXPORT_SYMBOL_GPL vmlinux 0x915ba873 tcp_set_keepalive +EXPORT_SYMBOL_GPL vmlinux 0x9161289f xdp_rxq_info_reg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0x9164f41c ata_bmdma_status EXPORT_SYMBOL_GPL vmlinux 0x917d953b __SCT__tp_func_wbc_writepage -EXPORT_SYMBOL_GPL vmlinux 0x918a750e serdev_device_write_room -EXPORT_SYMBOL_GPL vmlinux 0x918b38d1 tty_ldisc_deref +EXPORT_SYMBOL_GPL vmlinux 0x91863c1d dma_resv_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x918c0fad perf_event_disable EXPORT_SYMBOL_GPL vmlinux 0x9194e18f xenbus_mkdir EXPORT_SYMBOL_GPL vmlinux 0x91955a9f start_poll_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0x91a22dc6 clean_record_shared_mapping_range +EXPORT_SYMBOL_GPL vmlinux 0x919d9d6c gnttab_pages_clear_private +EXPORT_SYMBOL_GPL vmlinux 0x91b082df spi_controller_suspend EXPORT_SYMBOL_GPL vmlinux 0x91b774a1 mpi_scanval EXPORT_SYMBOL_GPL vmlinux 0x91b9a4ba e820__mapped_any +EXPORT_SYMBOL_GPL vmlinux 0x91c27fd6 dma_resv_test_signaled EXPORT_SYMBOL_GPL vmlinux 0x91c6e5b0 pcap_to_irq EXPORT_SYMBOL_GPL vmlinux 0x91c9313c acpi_gpio_get_io_resource -EXPORT_SYMBOL_GPL vmlinux 0x91d5ede0 kernfs_get -EXPORT_SYMBOL_GPL vmlinux 0x91d7bd42 __tracepoint_sched_cpu_capacity_tp -EXPORT_SYMBOL_GPL vmlinux 0x91e2aede acpi_dma_simple_xlate -EXPORT_SYMBOL_GPL vmlinux 0x91ea3ac2 blk_mq_freeze_queue +EXPORT_SYMBOL_GPL vmlinux 0x91dfedf3 tracing_cond_snapshot_data EXPORT_SYMBOL_GPL vmlinux 0x91ea8726 asn1_encode_boolean -EXPORT_SYMBOL_GPL vmlinux 0x9205f05c addrconf_prefix_rcv_add_addr -EXPORT_SYMBOL_GPL vmlinux 0x9207db7c regmap_get_reg_stride -EXPORT_SYMBOL_GPL vmlinux 0x920c6e95 usb_hcd_resume_root_hub +EXPORT_SYMBOL_GPL vmlinux 0x91f1644a devm_regmap_field_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0x91f9f021 acpi_subsys_complete +EXPORT_SYMBOL_GPL vmlinux 0x91fe2877 synth_event_trace +EXPORT_SYMBOL_GPL vmlinux 0x91ff4ae0 dev_pm_genpd_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9201f538 pci_dev_unlock +EXPORT_SYMBOL_GPL vmlinux 0x9204fc5c dst_cache_get +EXPORT_SYMBOL_GPL vmlinux 0x920618b5 dev_queue_xmit_nit EXPORT_SYMBOL_GPL vmlinux 0x920cc389 visitorl EXPORT_SYMBOL_GPL vmlinux 0x92141343 kvm_async_pf_task_wake EXPORT_SYMBOL_GPL vmlinux 0x92295424 clk_register_gate EXPORT_SYMBOL_GPL vmlinux 0x9241b358 __static_key_slow_dec_deferred -EXPORT_SYMBOL_GPL vmlinux 0x9241ee18 __nf_ip6_route -EXPORT_SYMBOL_GPL vmlinux 0x924a0595 tracing_snapshot_cond EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object -EXPORT_SYMBOL_GPL vmlinux 0x9254e8ae usb_enable_ltm -EXPORT_SYMBOL_GPL vmlinux 0x925bdeb9 __account_locked_vm -EXPORT_SYMBOL_GPL vmlinux 0x9262c00c devres_destroy -EXPORT_SYMBOL_GPL vmlinux 0x926ecbf9 rtnl_delete_link -EXPORT_SYMBOL_GPL vmlinux 0x92781e0b usb_amd_pt_check_port -EXPORT_SYMBOL_GPL vmlinux 0x92953f69 nf_ip_route -EXPORT_SYMBOL_GPL vmlinux 0x92b57f63 bus_for_each_drv -EXPORT_SYMBOL_GPL vmlinux 0x92b5a2d1 __unwind_start -EXPORT_SYMBOL_GPL vmlinux 0x92b815de blk_rq_prep_clone +EXPORT_SYMBOL_GPL vmlinux 0x926bd932 skb_cow_data +EXPORT_SYMBOL_GPL vmlinux 0x9275c6cd efivar_entry_add +EXPORT_SYMBOL_GPL vmlinux 0x9282c885 thermal_zone_get_zone_by_name +EXPORT_SYMBOL_GPL vmlinux 0x928c3a74 __traceiter_pelt_rt_tp +EXPORT_SYMBOL_GPL vmlinux 0x92a48c1b spi_setup EXPORT_SYMBOL_GPL vmlinux 0x92b8c78b hyperv_pcpu_output_arg -EXPORT_SYMBOL_GPL vmlinux 0x92c009b5 dev_pm_opp_get_opp_table +EXPORT_SYMBOL_GPL vmlinux 0x92b93762 phy_modify_mmd +EXPORT_SYMBOL_GPL vmlinux 0x92c13774 inet_csk_route_req EXPORT_SYMBOL_GPL vmlinux 0x92d31cfb fixed_phy_add +EXPORT_SYMBOL_GPL vmlinux 0x92daabc9 dma_vunmap_noncontiguous EXPORT_SYMBOL_GPL vmlinux 0x92db8f68 do_trace_rcu_torture_read +EXPORT_SYMBOL_GPL vmlinux 0x92de0964 fscrypt_set_test_dummy_encryption EXPORT_SYMBOL_GPL vmlinux 0x92e8e9ab fsverity_enqueue_verify_work -EXPORT_SYMBOL_GPL vmlinux 0x92f419b4 mmc_send_abort_tuning -EXPORT_SYMBOL_GPL vmlinux 0x92f74e49 dev_pm_qos_expose_flags -EXPORT_SYMBOL_GPL vmlinux 0x92fc06ad spi_setup -EXPORT_SYMBOL_GPL vmlinux 0x92fe45da icc_node_del -EXPORT_SYMBOL_GPL vmlinux 0x930d2041 pci_bus_add_device +EXPORT_SYMBOL_GPL vmlinux 0x92ee7e40 raw_hash_sk +EXPORT_SYMBOL_GPL vmlinux 0x92f22e39 find_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x92f50a46 dax_copy_to_iter +EXPORT_SYMBOL_GPL vmlinux 0x93072756 gpiochip_irq_unmap +EXPORT_SYMBOL_GPL vmlinux 0x9307c67b hsu_dma_remove +EXPORT_SYMBOL_GPL vmlinux 0x930b5084 of_hwspin_lock_get_id_byname +EXPORT_SYMBOL_GPL vmlinux 0x930db6ad led_trigger_remove EXPORT_SYMBOL_GPL vmlinux 0x93255b2b ring_buffer_lock_reserve EXPORT_SYMBOL_GPL vmlinux 0x932c8d7a linear_range_get_value_array -EXPORT_SYMBOL_GPL vmlinux 0x93383855 dev_pm_domain_start +EXPORT_SYMBOL_GPL vmlinux 0x932fae68 battery_hook_unregister +EXPORT_SYMBOL_GPL vmlinux 0x933d719a __SCK__tp_func_pelt_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x933ec6e5 devm_spi_register_controller EXPORT_SYMBOL_GPL vmlinux 0x933f75e0 usb_unlink_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x9341a23f regcache_sync -EXPORT_SYMBOL_GPL vmlinux 0x935182d5 strp_stop -EXPORT_SYMBOL_GPL vmlinux 0x93572fde fwnode_handle_put -EXPORT_SYMBOL_GPL vmlinux 0x9368a2e5 vfs_cancel_lock -EXPORT_SYMBOL_GPL vmlinux 0x93715444 __mmu_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x93747267 dbs_update -EXPORT_SYMBOL_GPL vmlinux 0x93797f24 iommu_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x937f7b5b iommu_device_sysfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x93412381 syscon_regmap_lookup_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x93444eee nf_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0x9349ce2b is_current_mnt_ns +EXPORT_SYMBOL_GPL vmlinux 0x935a1ecc pci_host_probe +EXPORT_SYMBOL_GPL vmlinux 0x936071a0 kthread_unpark +EXPORT_SYMBOL_GPL vmlinux 0x93644f42 uart_handle_cts_change +EXPORT_SYMBOL_GPL vmlinux 0x936808d0 spi_finalize_current_message +EXPORT_SYMBOL_GPL vmlinux 0x93774c33 acpi_match_device +EXPORT_SYMBOL_GPL vmlinux 0x937b27e5 component_add EXPORT_SYMBOL_GPL vmlinux 0x9384cd49 ata_tf_from_fis -EXPORT_SYMBOL_GPL vmlinux 0x939d47be edac_pci_alloc_ctl_info -EXPORT_SYMBOL_GPL vmlinux 0x93ac9d55 cpufreq_frequency_table_get_index +EXPORT_SYMBOL_GPL vmlinux 0x9387b616 regmap_write_async +EXPORT_SYMBOL_GPL vmlinux 0x9393bcd0 sdio_writeb_readb +EXPORT_SYMBOL_GPL vmlinux 0x939e413e dma_buf_attach +EXPORT_SYMBOL_GPL vmlinux 0x93b9e4b1 virtqueue_notify +EXPORT_SYMBOL_GPL vmlinux 0x93bb1a4e spi_get_device_id EXPORT_SYMBOL_GPL vmlinux 0x93c7edeb usb_find_common_endpoints +EXPORT_SYMBOL_GPL vmlinux 0x93cd744c rio_release_inb_pwrite EXPORT_SYMBOL_GPL vmlinux 0x93d1d424 gnttab_free_grant_references +EXPORT_SYMBOL_GPL vmlinux 0x93d5f5c2 perf_event_period +EXPORT_SYMBOL_GPL vmlinux 0x93d61ae0 gpiochip_get_desc EXPORT_SYMBOL_GPL vmlinux 0x93dc2586 pgprot_writethrough -EXPORT_SYMBOL_GPL vmlinux 0x93e1fa35 virtqueue_poll +EXPORT_SYMBOL_GPL vmlinux 0x93e16bd6 udp_init_sock EXPORT_SYMBOL_GPL vmlinux 0x93edef07 devlink_health_report EXPORT_SYMBOL_GPL vmlinux 0x93f55fe0 power_supply_batinfo_ocv2cap -EXPORT_SYMBOL_GPL vmlinux 0x93f90b78 pci_epc_start EXPORT_SYMBOL_GPL vmlinux 0x941a3d4f clk_hw_unregister_fixed_rate EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put EXPORT_SYMBOL_GPL vmlinux 0x9424058f arch_haltpoll_disable -EXPORT_SYMBOL_GPL vmlinux 0x942558e0 power_supply_put_battery_info EXPORT_SYMBOL_GPL vmlinux 0x9425bb34 nvmem_dev_name -EXPORT_SYMBOL_GPL vmlinux 0x942aafdf devm_extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0x942de950 phy_check_downshift EXPORT_SYMBOL_GPL vmlinux 0x9430b198 trace_dump_stack +EXPORT_SYMBOL_GPL vmlinux 0x94323a3c irq_chip_get_parent_state +EXPORT_SYMBOL_GPL vmlinux 0x9434c4ae filemap_read EXPORT_SYMBOL_GPL vmlinux 0x9436e405 memory_group_register_dynamic EXPORT_SYMBOL_GPL vmlinux 0x943fc708 xen_setup_shutdown_event -EXPORT_SYMBOL_GPL vmlinux 0x944325f0 tty_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x945b8614 shake_page EXPORT_SYMBOL_GPL vmlinux 0x946dd559 sha224_zero_message_hash EXPORT_SYMBOL_GPL vmlinux 0x947b40c6 cpu_smt_possible -EXPORT_SYMBOL_GPL vmlinux 0x9482cb28 power_supply_external_power_changed -EXPORT_SYMBOL_GPL vmlinux 0x94942e41 ata_sff_dma_pause +EXPORT_SYMBOL_GPL vmlinux 0x9485d8c2 devm_rtc_allocate_device +EXPORT_SYMBOL_GPL vmlinux 0x9494ccf3 skb_to_sgvec EXPORT_SYMBOL_GPL vmlinux 0x949b5176 devlink_region_snapshot_create -EXPORT_SYMBOL_GPL vmlinux 0x949f6618 devm_nvmem_device_put EXPORT_SYMBOL_GPL vmlinux 0x949f7342 __alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0x94aba824 virtqueue_add_sgs -EXPORT_SYMBOL_GPL vmlinux 0x94b58028 firmware_request_cache -EXPORT_SYMBOL_GPL vmlinux 0x94c46f38 led_trigger_event -EXPORT_SYMBOL_GPL vmlinux 0x94c6a3cb blkg_conf_prep -EXPORT_SYMBOL_GPL vmlinux 0x94ca3cb5 usb_submit_urb -EXPORT_SYMBOL_GPL vmlinux 0x94e18342 perf_event_enable -EXPORT_SYMBOL_GPL vmlinux 0x94eabe2b adp5520_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x94a2f8f3 pci_epc_unmap_addr +EXPORT_SYMBOL_GPL vmlinux 0x94a94b43 fsl_mc_device_group +EXPORT_SYMBOL_GPL vmlinux 0x94aba2c5 dm_table_device_name +EXPORT_SYMBOL_GPL vmlinux 0x94c13f2f led_trigger_register_simple +EXPORT_SYMBOL_GPL vmlinux 0x94d0bb20 devm_free_percpu +EXPORT_SYMBOL_GPL vmlinux 0x94d59384 irq_create_of_mapping +EXPORT_SYMBOL_GPL vmlinux 0x94d631a1 devm_pinctrl_register +EXPORT_SYMBOL_GPL vmlinux 0x94d7b99b gpiochip_free_own_desc +EXPORT_SYMBOL_GPL vmlinux 0x94dcb96b fwnode_graph_get_port_parent +EXPORT_SYMBOL_GPL vmlinux 0x94eb2cb6 register_net_sysctl +EXPORT_SYMBOL_GPL vmlinux 0x94ed2fb9 cpuidle_get_cpu_driver EXPORT_SYMBOL_GPL vmlinux 0x94ef4d05 cpci_hp_stop -EXPORT_SYMBOL_GPL vmlinux 0x94fdae81 skb_zerocopy_headlen +EXPORT_SYMBOL_GPL vmlinux 0x94f2ec8d pci_user_read_config_byte +EXPORT_SYMBOL_GPL vmlinux 0x94fd2f9d crypto_register_shash EXPORT_SYMBOL_GPL vmlinux 0x9504df26 irq_wake_thread -EXPORT_SYMBOL_GPL vmlinux 0x950a9954 __tracepoint_error_report_end -EXPORT_SYMBOL_GPL vmlinux 0x950dd7e2 locks_release_private -EXPORT_SYMBOL_GPL vmlinux 0x95148016 blk_ksm_update_capabilities +EXPORT_SYMBOL_GPL vmlinux 0x9507cce9 regulator_set_ramp_delay_regmap +EXPORT_SYMBOL_GPL vmlinux 0x950ee92e pci_generic_config_read EXPORT_SYMBOL_GPL vmlinux 0x951a2773 crypto_has_alg +EXPORT_SYMBOL_GPL vmlinux 0x951bce1a blk_execute_rq_nowait EXPORT_SYMBOL_GPL vmlinux 0x952664c5 do_exit -EXPORT_SYMBOL_GPL vmlinux 0x95268a15 mptcp_get_reset_option -EXPORT_SYMBOL_GPL vmlinux 0x9526f816 ata_sff_qc_issue -EXPORT_SYMBOL_GPL vmlinux 0x953dd3d2 phy_power_on +EXPORT_SYMBOL_GPL vmlinux 0x952a8517 crypto_spawn_tfm +EXPORT_SYMBOL_GPL vmlinux 0x95395740 hrtimer_sleeper_start_expires +EXPORT_SYMBOL_GPL vmlinux 0x953bb110 pinctrl_add_gpio_ranges +EXPORT_SYMBOL_GPL vmlinux 0x953cd110 powercap_unregister_zone EXPORT_SYMBOL_GPL vmlinux 0x953e1b9e ktime_get_real_seconds -EXPORT_SYMBOL_GPL vmlinux 0x954b1291 vfio_pci_core_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0x954c6f55 devlink_region_snapshot_id_get +EXPORT_SYMBOL_GPL vmlinux 0x95402f74 cpuidle_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x9546c572 cpci_hp_register_bus EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn -EXPORT_SYMBOL_GPL vmlinux 0x9561e718 usb_phy_set_charger_current -EXPORT_SYMBOL_GPL vmlinux 0x9563dabd trace_event_raw_init +EXPORT_SYMBOL_GPL vmlinux 0x955feecf devm_kfree EXPORT_SYMBOL_GPL vmlinux 0x956ac400 ring_buffer_dropped_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0x957a93b5 pci_slots_kset EXPORT_SYMBOL_GPL vmlinux 0x95843030 mpi_ec_init -EXPORT_SYMBOL_GPL vmlinux 0x958712cb input_class -EXPORT_SYMBOL_GPL vmlinux 0x958723f9 sk_set_memalloc +EXPORT_SYMBOL_GPL vmlinux 0x9585de24 devm_regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9586cc36 devm_kmemdup EXPORT_SYMBOL_GPL vmlinux 0x958df3ac zs_free +EXPORT_SYMBOL_GPL vmlinux 0x9591497d device_change_owner EXPORT_SYMBOL_GPL vmlinux 0x9593ef31 register_ftrace_export -EXPORT_SYMBOL_GPL vmlinux 0x95a61368 bpf_prog_create -EXPORT_SYMBOL_GPL vmlinux 0x95af0623 spi_sync -EXPORT_SYMBOL_GPL vmlinux 0x95b57b9d crypto_unregister_algs +EXPORT_SYMBOL_GPL vmlinux 0x959643d0 pm_generic_resume_noirq +EXPORT_SYMBOL_GPL vmlinux 0x95992cc4 serdev_device_write_buf +EXPORT_SYMBOL_GPL vmlinux 0x959cbe24 hvc_poll +EXPORT_SYMBOL_GPL vmlinux 0x95a0ce5f pci_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x95aaf6fd syscon_regmap_lookup_by_phandle_optional EXPORT_SYMBOL_GPL vmlinux 0x95bc9078 btree_free -EXPORT_SYMBOL_GPL vmlinux 0x95c592a7 bpf_sk_storage_diag_put +EXPORT_SYMBOL_GPL vmlinux 0x95c25095 percpu_free_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x95c4c09d unregister_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x95d8c0b7 platform_bus EXPORT_SYMBOL_GPL vmlinux 0x95d95a56 __srcu_read_lock -EXPORT_SYMBOL_GPL vmlinux 0x95e4477c dax_supported +EXPORT_SYMBOL_GPL vmlinux 0x95de52fc nf_checksum_partial +EXPORT_SYMBOL_GPL vmlinux 0x95ea3514 fwnode_property_read_string EXPORT_SYMBOL_GPL vmlinux 0x95ef1ccc dmi_memdev_size +EXPORT_SYMBOL_GPL vmlinux 0x95efa4f6 rtc_read_alarm +EXPORT_SYMBOL_GPL vmlinux 0x95f1d5d2 acpi_dev_get_property +EXPORT_SYMBOL_GPL vmlinux 0x9603b33e ima_file_hash +EXPORT_SYMBOL_GPL vmlinux 0x9606d3c9 fat_update_time +EXPORT_SYMBOL_GPL vmlinux 0x960f4a86 synth_event_trace_end EXPORT_SYMBOL_GPL vmlinux 0x961286e0 ring_buffer_read_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0x96135fcc usb_role_switch_find_by_fwnode EXPORT_SYMBOL_GPL vmlinux 0x9615b005 hv_map_ioapic_interrupt EXPORT_SYMBOL_GPL vmlinux 0x9621d738 alarm_start_relative -EXPORT_SYMBOL_GPL vmlinux 0x9624a3ad badblocks_exit EXPORT_SYMBOL_GPL vmlinux 0x962523b1 kobj_sysfs_ops -EXPORT_SYMBOL_GPL vmlinux 0x962ba548 efivar_entry_add +EXPORT_SYMBOL_GPL vmlinux 0x9625f1d7 skb_complete_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x962b8e64 event_triggers_call EXPORT_SYMBOL_GPL vmlinux 0x962c8ae1 usb_kill_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x9645257f __SCK__tp_func_br_fdb_update EXPORT_SYMBOL_GPL vmlinux 0x96554810 register_keyboard_notifier -EXPORT_SYMBOL_GPL vmlinux 0x96675d1d acpi_get_first_physical_node -EXPORT_SYMBOL_GPL vmlinux 0x966cf15a intel_pinctrl_probe_by_uid +EXPORT_SYMBOL_GPL vmlinux 0x966bc7ac irq_domain_create_simple +EXPORT_SYMBOL_GPL vmlinux 0x96723e64 fib_info_nh_uses_dev +EXPORT_SYMBOL_GPL vmlinux 0x9676521a debugfs_create_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x96831560 to_nvdimm_bus EXPORT_SYMBOL_GPL vmlinux 0x9688b217 gnttab_batch_copy +EXPORT_SYMBOL_GPL vmlinux 0x968a8e3e dw_pcie_write_dbi +EXPORT_SYMBOL_GPL vmlinux 0x968e12e2 edac_device_add_device EXPORT_SYMBOL_GPL vmlinux 0x968f9a23 efivar_entry_iter_begin -EXPORT_SYMBOL_GPL vmlinux 0x969d2814 usb_root_hub_lost_power -EXPORT_SYMBOL_GPL vmlinux 0x96ad1eb6 register_virtio_device -EXPORT_SYMBOL_GPL vmlinux 0x96dd9c4d nd_tbl -EXPORT_SYMBOL_GPL vmlinux 0x96e8d5a2 strp_done -EXPORT_SYMBOL_GPL vmlinux 0x96e94e40 pci_find_host_bridge -EXPORT_SYMBOL_GPL vmlinux 0x96f47e39 tpm2_flush_context +EXPORT_SYMBOL_GPL vmlinux 0x9695249c bpf_prog_destroy +EXPORT_SYMBOL_GPL vmlinux 0x96997b27 mbox_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x96a61af8 dw_pcie_own_conf_map_bus +EXPORT_SYMBOL_GPL vmlinux 0x96ac0893 __mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0x96b053a7 extcon_register_notifier_all +EXPORT_SYMBOL_GPL vmlinux 0x96e01bec xdp_rxq_info_reg +EXPORT_SYMBOL_GPL vmlinux 0x96e13153 device_phy_find_device +EXPORT_SYMBOL_GPL vmlinux 0x96e60575 dev_pm_opp_get_level +EXPORT_SYMBOL_GPL vmlinux 0x96eb62cc crypto_alloc_kpp EXPORT_SYMBOL_GPL vmlinux 0x9714e0bb ktime_get_raw -EXPORT_SYMBOL_GPL vmlinux 0x97167cba crypto_register_aead -EXPORT_SYMBOL_GPL vmlinux 0x9719356b wm831x_regmap_config EXPORT_SYMBOL_GPL vmlinux 0x9719bcfd pmc_atom_read -EXPORT_SYMBOL_GPL vmlinux 0x972208a1 user_destroy -EXPORT_SYMBOL_GPL vmlinux 0x9723a517 tpm_get_timeouts -EXPORT_SYMBOL_GPL vmlinux 0x9727a575 bus_unregister -EXPORT_SYMBOL_GPL vmlinux 0x972d3f41 ata_sff_check_status -EXPORT_SYMBOL_GPL vmlinux 0x973107d5 cpci_hp_unregister_bus -EXPORT_SYMBOL_GPL vmlinux 0x9746d86a wm831x_device_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x97482a46 crypto_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x97492d60 ata_sas_scsi_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x974f601b fwnode_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x971f5c01 device_find_child +EXPORT_SYMBOL_GPL vmlinux 0x973e1601 spi_split_transfers_maxsize EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same -EXPORT_SYMBOL_GPL vmlinux 0x975e36f5 power_supply_set_property +EXPORT_SYMBOL_GPL vmlinux 0x976233a7 sk_msg_clone EXPORT_SYMBOL_GPL vmlinux 0x97623558 xas_create_range -EXPORT_SYMBOL_GPL vmlinux 0x97649fb6 md_bitmap_copy_from_slot -EXPORT_SYMBOL_GPL vmlinux 0x976c14fb crypto_stats_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x97652472 virtqueue_add_inbuf +EXPORT_SYMBOL_GPL vmlinux 0x97768bb6 check_move_unevictable_pages EXPORT_SYMBOL_GPL vmlinux 0x977be5c7 klist_iter_init_node -EXPORT_SYMBOL_GPL vmlinux 0x977e8548 pinctrl_pm_select_idle_state -EXPORT_SYMBOL_GPL vmlinux 0x979dd237 blk_mq_sched_try_insert_merge -EXPORT_SYMBOL_GPL vmlinux 0x97d85dd0 tty_init_termios +EXPORT_SYMBOL_GPL vmlinux 0x9799130e icc_link_destroy +EXPORT_SYMBOL_GPL vmlinux 0x97b919ef irq_domain_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0x97cebc36 mctrl_gpio_init_noauto +EXPORT_SYMBOL_GPL vmlinux 0x97d3220a regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x97dc7950 component_master_add_with_match EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent -EXPORT_SYMBOL_GPL vmlinux 0x97ea84f6 class_dev_iter_next -EXPORT_SYMBOL_GPL vmlinux 0x97f91f44 rtc_set_time -EXPORT_SYMBOL_GPL vmlinux 0x97ff5d6f rio_dev_get -EXPORT_SYMBOL_GPL vmlinux 0x9811fb7e crypto_alloc_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x981d113d regulator_irq_helper -EXPORT_SYMBOL_GPL vmlinux 0x98283a1d xfrm_unregister_translator +EXPORT_SYMBOL_GPL vmlinux 0x97e5648e wp_shared_mapping_range +EXPORT_SYMBOL_GPL vmlinux 0x97e8e3f0 fsverity_ioctl_measure +EXPORT_SYMBOL_GPL vmlinux 0x97ed4465 dev_pm_qos_expose_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0x97f73868 paste_selection +EXPORT_SYMBOL_GPL vmlinux 0x97fe54de bpf_prog_alloc +EXPORT_SYMBOL_GPL vmlinux 0x97ffea5d xenbus_alloc_evtchn +EXPORT_SYMBOL_GPL vmlinux 0x9814f0e7 power_supply_unregister +EXPORT_SYMBOL_GPL vmlinux 0x981608a8 dev_pm_opp_find_level_ceil EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick -EXPORT_SYMBOL_GPL vmlinux 0x9834bc4f sysfs_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x9837ec4e ipv6_proxy_select_ident +EXPORT_SYMBOL_GPL vmlinux 0x983a7f12 crypto_comp_decompress +EXPORT_SYMBOL_GPL vmlinux 0x983ad100 usb_intf_get_dma_device +EXPORT_SYMBOL_GPL vmlinux 0x984aceab sdio_enable_func EXPORT_SYMBOL_GPL vmlinux 0x98503a63 mpi_alloc +EXPORT_SYMBOL_GPL vmlinux 0x9851b171 bpf_trace_run1 EXPORT_SYMBOL_GPL vmlinux 0x985453e1 lease_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9863657d devm_pinctrl_get -EXPORT_SYMBOL_GPL vmlinux 0x986d2ce0 device_add_properties +EXPORT_SYMBOL_GPL vmlinux 0x98736d06 fuse_dev_alloc +EXPORT_SYMBOL_GPL vmlinux 0x98753f6d mddev_init EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x987c7d71 security_inode_mkdir -EXPORT_SYMBOL_GPL vmlinux 0x9883e1cd gpiochip_irq_unmap -EXPORT_SYMBOL_GPL vmlinux 0x98848cb4 __scsi_init_queue -EXPORT_SYMBOL_GPL vmlinux 0x9884e125 __tracepoint_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0x9883c23a crypto_register_kpp EXPORT_SYMBOL_GPL vmlinux 0x988a1a00 sn_region_size +EXPORT_SYMBOL_GPL vmlinux 0x988b67df blk_mq_update_nr_hw_queues EXPORT_SYMBOL_GPL vmlinux 0x989074ff kmsg_dump_reason_str -EXPORT_SYMBOL_GPL vmlinux 0x989ac138 dev_pm_opp_get_max_volt_latency -EXPORT_SYMBOL_GPL vmlinux 0x98a793d4 virtio_check_driver_offered_feature +EXPORT_SYMBOL_GPL vmlinux 0x98a0da13 __SCK__tp_func_arm_event +EXPORT_SYMBOL_GPL vmlinux 0x98a408ba adp5520_unregister_notifier EXPORT_SYMBOL_GPL vmlinux 0x98b142fa blk_fill_rwbs -EXPORT_SYMBOL_GPL vmlinux 0x98c00d28 extcon_get_edev_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x98d97be4 ata_host_alloc -EXPORT_SYMBOL_GPL vmlinux 0x98e2b722 thermal_cooling_device_register -EXPORT_SYMBOL_GPL vmlinux 0x98e4376a blkg_conf_finish -EXPORT_SYMBOL_GPL vmlinux 0x98e79b52 acpi_dma_configure_id +EXPORT_SYMBOL_GPL vmlinux 0x98c7b0b4 __spi_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x98e83651 spi_mem_dirmap_destroy EXPORT_SYMBOL_GPL vmlinux 0x98ee62b2 ring_buffer_record_disable_cpu +EXPORT_SYMBOL_GPL vmlinux 0x98efd52e kernfs_path_from_node EXPORT_SYMBOL_GPL vmlinux 0x98f4d306 hyperv_flush_guest_mapping EXPORT_SYMBOL_GPL vmlinux 0x98fa1e20 dm_get_reserved_rq_based_ios -EXPORT_SYMBOL_GPL vmlinux 0x9920622c inet6_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x9922701f netlink_remove_tap EXPORT_SYMBOL_GPL vmlinux 0x9930f8a3 uv_bios_change_memprotect +EXPORT_SYMBOL_GPL vmlinux 0x993e0717 vfio_pci_core_ioctl EXPORT_SYMBOL_GPL vmlinux 0x99430ba2 acpi_get_phys_id -EXPORT_SYMBOL_GPL vmlinux 0x994fb80b xfrm_state_afinfo_get_rcu -EXPORT_SYMBOL_GPL vmlinux 0x9956c996 register_acpi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x995684fa sk_set_peek_off +EXPORT_SYMBOL_GPL vmlinux 0x9957e529 fscrypt_set_bio_crypt_ctx_bh EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on EXPORT_SYMBOL_GPL vmlinux 0x9968aacb __audit_log_nfcfg -EXPORT_SYMBOL_GPL vmlinux 0x9979d336 ip6_push_pending_frames -EXPORT_SYMBOL_GPL vmlinux 0x9986865d fib_rules_dump -EXPORT_SYMBOL_GPL vmlinux 0x9987efb2 vfs_fallocate -EXPORT_SYMBOL_GPL vmlinux 0x9989dc12 kill_pid_usb_asyncio +EXPORT_SYMBOL_GPL vmlinux 0x996c47bf acomp_request_alloc +EXPORT_SYMBOL_GPL vmlinux 0x99748da7 usb_role_switch_register +EXPORT_SYMBOL_GPL vmlinux 0x998bce7c crypto_register_shashes EXPORT_SYMBOL_GPL vmlinux 0x998d79d6 x509_decode_time -EXPORT_SYMBOL_GPL vmlinux 0x99a76892 sysfs_change_owner -EXPORT_SYMBOL_GPL vmlinux 0x99d3b549 __pm_relax +EXPORT_SYMBOL_GPL vmlinux 0x99956f24 gpiochip_generic_config +EXPORT_SYMBOL_GPL vmlinux 0x99960507 dev_pm_opp_get_opp_table +EXPORT_SYMBOL_GPL vmlinux 0x99a3f3dd pci_epf_add_vepf +EXPORT_SYMBOL_GPL vmlinux 0x99a42585 rio_set_port_lockout +EXPORT_SYMBOL_GPL vmlinux 0x99a47c5c tcf_dev_queue_xmit +EXPORT_SYMBOL_GPL vmlinux 0x99bd4229 kern_mount +EXPORT_SYMBOL_GPL vmlinux 0x99c30db6 pci_cfg_access_lock +EXPORT_SYMBOL_GPL vmlinux 0x99d3f0f2 usb_choose_configuration EXPORT_SYMBOL_GPL vmlinux 0x99dd730c page_reporting_unregister -EXPORT_SYMBOL_GPL vmlinux 0x99e02e3b pci_epc_get_msi -EXPORT_SYMBOL_GPL vmlinux 0x99e4dca9 fat_get_dotdot_entry +EXPORT_SYMBOL_GPL vmlinux 0x99e54830 blkcg_policy_unregister +EXPORT_SYMBOL_GPL vmlinux 0x99e81e89 blk_queue_required_elevator_features EXPORT_SYMBOL_GPL vmlinux 0x99f018c4 nvmem_cell_read EXPORT_SYMBOL_GPL vmlinux 0x99f2d00a sysfs_emit_at -EXPORT_SYMBOL_GPL vmlinux 0x99fe99fc vring_transport_features -EXPORT_SYMBOL_GPL vmlinux 0x99ffbd88 __spi_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x9a0ad524 devlink_dpipe_table_unregister +EXPORT_SYMBOL_GPL vmlinux 0x99f81ce1 pm_runtime_autosuspend_expiration +EXPORT_SYMBOL_GPL vmlinux 0x9a0a14f9 pci_ioremap_bar EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name +EXPORT_SYMBOL_GPL vmlinux 0x9a13d105 crypto_shash_tfm_digest +EXPORT_SYMBOL_GPL vmlinux 0x9a16c4c4 acpi_device_uevent_modalias +EXPORT_SYMBOL_GPL vmlinux 0x9a18e83d devfreq_event_enable_edev EXPORT_SYMBOL_GPL vmlinux 0x9a23ea6b alarm_expires_remaining -EXPORT_SYMBOL_GPL vmlinux 0x9a2ba2f4 bpf_prog_alloc -EXPORT_SYMBOL_GPL vmlinux 0x9a4a5505 gen_pool_get -EXPORT_SYMBOL_GPL vmlinux 0x9a530b15 input_ff_flush +EXPORT_SYMBOL_GPL vmlinux 0x9a3615f4 pci_epc_raise_irq EXPORT_SYMBOL_GPL vmlinux 0x9a58dd2d trace_print_bitmask_seq EXPORT_SYMBOL_GPL vmlinux 0x9a5dce5c rhashtable_walk_start_check -EXPORT_SYMBOL_GPL vmlinux 0x9a798ed6 policy_has_boost_freq -EXPORT_SYMBOL_GPL vmlinux 0x9a7c3c48 nd_cmd_in_size -EXPORT_SYMBOL_GPL vmlinux 0x9a877268 pci_bus_resource_n -EXPORT_SYMBOL_GPL vmlinux 0x9a9cf4a1 sk_msg_free_nocharge +EXPORT_SYMBOL_GPL vmlinux 0x9a68df7b usb_hcd_end_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x9a6ca887 devm_kmalloc +EXPORT_SYMBOL_GPL vmlinux 0x9a88e0a3 xenbus_dev_probe +EXPORT_SYMBOL_GPL vmlinux 0x9a90d70c pci_epc_mem_init +EXPORT_SYMBOL_GPL vmlinux 0x9aa12009 klp_get_state EXPORT_SYMBOL_GPL vmlinux 0x9aa71c2a efi_query_variable_store EXPORT_SYMBOL_GPL vmlinux 0x9aaac699 dev_pm_opp_cpumask_remove_table -EXPORT_SYMBOL_GPL vmlinux 0x9abb6eb4 edac_pci_add_device -EXPORT_SYMBOL_GPL vmlinux 0x9abf2ce1 xhci_gen_setup EXPORT_SYMBOL_GPL vmlinux 0x9ac11b74 suspend_set_ops -EXPORT_SYMBOL_GPL vmlinux 0x9ae0baf0 xenbus_register_driver_common +EXPORT_SYMBOL_GPL vmlinux 0x9ac32127 task_user_regset_view +EXPORT_SYMBOL_GPL vmlinux 0x9ac4ee1d ata_eh_analyze_ncq_error +EXPORT_SYMBOL_GPL vmlinux 0x9ad3b4d4 genphy_c45_read_pma EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty -EXPORT_SYMBOL_GPL vmlinux 0x9af2c8e0 pci_bridge_secondary_bus_reset +EXPORT_SYMBOL_GPL vmlinux 0x9af3020c __phy_modify EXPORT_SYMBOL_GPL vmlinux 0x9af49514 icc_bulk_set_bw -EXPORT_SYMBOL_GPL vmlinux 0x9b08b47d vfs_write -EXPORT_SYMBOL_GPL vmlinux 0x9b0d3c76 ata_pci_sff_init_host -EXPORT_SYMBOL_GPL vmlinux 0x9b53effd __fput_sync +EXPORT_SYMBOL_GPL vmlinux 0x9b0624f0 blk_set_pm_only +EXPORT_SYMBOL_GPL vmlinux 0x9b17a0c5 usb_autopm_put_interface +EXPORT_SYMBOL_GPL vmlinux 0x9b1c901a dev_attr_unload_heads +EXPORT_SYMBOL_GPL vmlinux 0x9b1dc0c2 __traceiter_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0x9b373f7f tps6586x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x9b444a1f tcpv6_prot EXPORT_SYMBOL_GPL vmlinux 0x9b555c8c pm_suspend_default_s2idle +EXPORT_SYMBOL_GPL vmlinux 0x9b55b65b acpi_device_get_match_data +EXPORT_SYMBOL_GPL vmlinux 0x9b57babd dev_pm_domain_attach_by_id +EXPORT_SYMBOL_GPL vmlinux 0x9b5c4b52 cgrp_dfl_root +EXPORT_SYMBOL_GPL vmlinux 0x9b5cc715 skb_tstamp_tx EXPORT_SYMBOL_GPL vmlinux 0x9b698c42 ioasid_set_data -EXPORT_SYMBOL_GPL vmlinux 0x9b6b615a blk_execute_rq_nowait EXPORT_SYMBOL_GPL vmlinux 0x9b6ec967 ring_buffer_size -EXPORT_SYMBOL_GPL vmlinux 0x9b6f9962 nvdimm_name -EXPORT_SYMBOL_GPL vmlinux 0x9b73b4e7 tcp_cong_avoid_ai -EXPORT_SYMBOL_GPL vmlinux 0x9b7b8f4c spi_add_device +EXPORT_SYMBOL_GPL vmlinux 0x9b8192d7 regulator_enable_regmap EXPORT_SYMBOL_GPL vmlinux 0x9b896724 devlink_param_value_str_fill +EXPORT_SYMBOL_GPL vmlinux 0x9b8baeb8 __intel_scu_ipc_register EXPORT_SYMBOL_GPL vmlinux 0x9b9071cb get_old_itimerspec32 EXPORT_SYMBOL_GPL vmlinux 0x9b92d16e pinctrl_gpio_set_config +EXPORT_SYMBOL_GPL vmlinux 0x9b95b416 regulator_set_active_discharge_regmap EXPORT_SYMBOL_GPL vmlinux 0x9b9f3648 pcibios_scan_specific_bus EXPORT_SYMBOL_GPL vmlinux 0x9ba2bb2b gpio_request_array -EXPORT_SYMBOL_GPL vmlinux 0x9baab833 __udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x9ba6df6a fwnode_get_phy_node +EXPORT_SYMBOL_GPL vmlinux 0x9baa10bd regulator_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x9babe942 synth_event_trace_start EXPORT_SYMBOL_GPL vmlinux 0x9bad141d hv_hypercall_pg -EXPORT_SYMBOL_GPL vmlinux 0x9bb8fd86 bio_end_io_acct_remapped -EXPORT_SYMBOL_GPL vmlinux 0x9bbe58dc rtc_read_alarm -EXPORT_SYMBOL_GPL vmlinux 0x9bcc01c5 __vfs_removexattr_noperm +EXPORT_SYMBOL_GPL vmlinux 0x9bbe5430 extcon_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x9bc96635 ip6_route_output_flags_noref EXPORT_SYMBOL_GPL vmlinux 0x9bcf9f7d housekeeping_enabled -EXPORT_SYMBOL_GPL vmlinux 0x9bdf1f3f nd_blk_region_set_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x9bd01736 pstore_unregister EXPORT_SYMBOL_GPL vmlinux 0x9be30d27 mhp_get_pluggable_range EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui -EXPORT_SYMBOL_GPL vmlinux 0x9c18c816 power_supply_property_is_writeable -EXPORT_SYMBOL_GPL vmlinux 0x9c2a2423 uart_handle_dcd_change -EXPORT_SYMBOL_GPL vmlinux 0x9c2dd47f sata_scr_write_flush -EXPORT_SYMBOL_GPL vmlinux 0x9c514823 ehci_reset -EXPORT_SYMBOL_GPL vmlinux 0x9c6d23fc gnttab_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x9bedf0ed acomp_request_free +EXPORT_SYMBOL_GPL vmlinux 0x9befc31a blk_queue_flag_test_and_set +EXPORT_SYMBOL_GPL vmlinux 0x9bf297f5 balloon_page_list_enqueue +EXPORT_SYMBOL_GPL vmlinux 0x9c279d5b pinctrl_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x9c5351c2 irq_gc_mask_set_bit EXPORT_SYMBOL_GPL vmlinux 0x9c6febfc add_uevent_var EXPORT_SYMBOL_GPL vmlinux 0x9c803020 usb_phy_roothub_power_on -EXPORT_SYMBOL_GPL vmlinux 0x9c84928f em_dev_unregister_perf_domain -EXPORT_SYMBOL_GPL vmlinux 0x9c90aa4a __traceiter_br_fdb_add +EXPORT_SYMBOL_GPL vmlinux 0x9c84d2ad software_node_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x9c8cf0f3 tcp_sendmsg_locked EXPORT_SYMBOL_GPL vmlinux 0x9ca480cc clk_gate_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0x9cc0eaad wm8350_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x9cc312b8 i2c_new_client_device +EXPORT_SYMBOL_GPL vmlinux 0x9ca89e80 nvdimm_name +EXPORT_SYMBOL_GPL vmlinux 0x9cc0a42c input_device_enabled EXPORT_SYMBOL_GPL vmlinux 0x9cc4f70a register_pm_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9cc889f9 usb_get_dev -EXPORT_SYMBOL_GPL vmlinux 0x9cc92383 devlink_register +EXPORT_SYMBOL_GPL vmlinux 0x9cd276f2 pci_hp_add EXPORT_SYMBOL_GPL vmlinux 0x9cd7551a rhashtable_walk_stop -EXPORT_SYMBOL_GPL vmlinux 0x9cd818a9 of_pm_clk_add_clks +EXPORT_SYMBOL_GPL vmlinux 0x9cd86d03 vfio_pci_core_err_handlers EXPORT_SYMBOL_GPL vmlinux 0x9cdeca56 register_kretprobes -EXPORT_SYMBOL_GPL vmlinux 0x9ced2997 pwmchip_add -EXPORT_SYMBOL_GPL vmlinux 0x9cf1b2e0 devm_clk_bulk_get_all +EXPORT_SYMBOL_GPL vmlinux 0x9ce7f538 bus_rescan_devices EXPORT_SYMBOL_GPL vmlinux 0x9cf37c44 __iowrite32_copy -EXPORT_SYMBOL_GPL vmlinux 0x9d04c0a8 __tracepoint_xhci_dbg_quirks +EXPORT_SYMBOL_GPL vmlinux 0x9cf47b8f genphy_c45_an_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0x9cfa03f3 __SCK__tp_func_remove_device_from_group EXPORT_SYMBOL_GPL vmlinux 0x9d09e8ae ring_buffer_event_data EXPORT_SYMBOL_GPL vmlinux 0x9d14205c cr4_read_shadow -EXPORT_SYMBOL_GPL vmlinux 0x9d3fbf63 rio_dev_put +EXPORT_SYMBOL_GPL vmlinux 0x9d2c2bea shash_ahash_finup EXPORT_SYMBOL_GPL vmlinux 0x9d4894c8 x2apic_mode -EXPORT_SYMBOL_GPL vmlinux 0x9d51abfb sched_trace_rq_cpu_capacity -EXPORT_SYMBOL_GPL vmlinux 0x9d527c42 blk_lld_busy -EXPORT_SYMBOL_GPL vmlinux 0x9d54f29f rio_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x9d57f721 dma_resv_test_signaled -EXPORT_SYMBOL_GPL vmlinux 0x9d7074db espintcp_queue_out -EXPORT_SYMBOL_GPL vmlinux 0x9d72bae3 ata_sff_prereset -EXPORT_SYMBOL_GPL vmlinux 0x9d730dc5 md_kick_rdev_from_array -EXPORT_SYMBOL_GPL vmlinux 0x9d76b4e1 crypto_stats_kpp_set_secret -EXPORT_SYMBOL_GPL vmlinux 0x9d80181e udp6_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x9d9b3c96 __lock_page_killable -EXPORT_SYMBOL_GPL vmlinux 0x9d9f9eb5 devm_phy_optional_get -EXPORT_SYMBOL_GPL vmlinux 0x9da6a504 devlink_resource_occ_get_unregister -EXPORT_SYMBOL_GPL vmlinux 0x9da97fc6 pci_write_msi_msg -EXPORT_SYMBOL_GPL vmlinux 0x9db2c9f7 devm_gpiod_put_array -EXPORT_SYMBOL_GPL vmlinux 0x9ddb4a0b __traceiter_fib6_table_lookup -EXPORT_SYMBOL_GPL vmlinux 0x9ded96ca extcon_get_property -EXPORT_SYMBOL_GPL vmlinux 0x9df6cc86 thermal_zone_get_slope +EXPORT_SYMBOL_GPL vmlinux 0x9d4d46cc i2c_client_type +EXPORT_SYMBOL_GPL vmlinux 0x9d4ee614 dev_get_tstats64 +EXPORT_SYMBOL_GPL vmlinux 0x9d6b1a7e tty_ldisc_flush +EXPORT_SYMBOL_GPL vmlinux 0x9d7ea7e6 acpi_dev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x9d88d8fc pwm_apply_state +EXPORT_SYMBOL_GPL vmlinux 0x9da3f1a2 security_inode_setattr +EXPORT_SYMBOL_GPL vmlinux 0x9da74c4f sysfs_groups_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x9dabb8c4 thermal_zone_device_update +EXPORT_SYMBOL_GPL vmlinux 0x9dbd0045 devm_clk_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x9dc7117e gpiochip_line_is_valid +EXPORT_SYMBOL_GPL vmlinux 0x9de05309 nd_blk_region_to_dimm +EXPORT_SYMBOL_GPL vmlinux 0x9de0b154 tpm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0x9def5e87 genphy_c45_read_link +EXPORT_SYMBOL_GPL vmlinux 0x9def8944 mptcp_token_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x9dfa51e7 clk_hw_round_rate EXPORT_SYMBOL_GPL vmlinux 0x9e005e6f cppc_get_perf_caps -EXPORT_SYMBOL_GPL vmlinux 0x9e04166b gpiochip_add_pin_range -EXPORT_SYMBOL_GPL vmlinux 0x9e1d8cf6 pcie_aspm_capable +EXPORT_SYMBOL_GPL vmlinux 0x9e0ebfcb validate_xmit_xfrm +EXPORT_SYMBOL_GPL vmlinux 0x9e1de174 device_get_match_data EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field -EXPORT_SYMBOL_GPL vmlinux 0x9e4dd7a0 dst_blackhole_mtu -EXPORT_SYMBOL_GPL vmlinux 0x9e51dec4 crypto_register_skciphers EXPORT_SYMBOL_GPL vmlinux 0x9e523753 tracepoint_srcu -EXPORT_SYMBOL_GPL vmlinux 0x9e7cac33 sdio_signal_irq -EXPORT_SYMBOL_GPL vmlinux 0x9e9597c2 udp_destruct_sock -EXPORT_SYMBOL_GPL vmlinux 0x9ea12c76 edac_pci_free_ctl_info -EXPORT_SYMBOL_GPL vmlinux 0x9ea5c62c posix_clock_unregister -EXPORT_SYMBOL_GPL vmlinux 0x9eac9d88 spi_controller_dma_map_mem_op_data +EXPORT_SYMBOL_GPL vmlinux 0x9e86a3d8 udp_tunnel_nic_ops +EXPORT_SYMBOL_GPL vmlinux 0x9e88b1e4 clk_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x9e8c81aa crypto_unregister_shash +EXPORT_SYMBOL_GPL vmlinux 0x9ebf86ea efivar_entry_size EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9eeaaf66 pci_disable_pri EXPORT_SYMBOL_GPL vmlinux 0x9eebdde7 mpi_point_new -EXPORT_SYMBOL_GPL vmlinux 0x9eec55f7 nvdimm_bus_unregister -EXPORT_SYMBOL_GPL vmlinux 0x9ef626d3 gpiochip_line_is_irq -EXPORT_SYMBOL_GPL vmlinux 0x9ef937f9 xdp_rxq_info_reg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0x9ef508d9 __SCK__tp_func_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x9f05426f class_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x9f19bc3e sched_show_task EXPORT_SYMBOL_GPL vmlinux 0x9f223fe4 __tracepoint_xdp_exception -EXPORT_SYMBOL_GPL vmlinux 0x9f25fff3 ata_sas_port_init -EXPORT_SYMBOL_GPL vmlinux 0x9f31a8e0 crypto_stats_rng_generate -EXPORT_SYMBOL_GPL vmlinux 0x9f32e93d intel_pinctrl_suspend_noirq -EXPORT_SYMBOL_GPL vmlinux 0x9f3847af pci_dev_run_wake -EXPORT_SYMBOL_GPL vmlinux 0x9f3c8b10 sk_clear_memalloc +EXPORT_SYMBOL_GPL vmlinux 0x9f3991bf gnttab_page_cache_init +EXPORT_SYMBOL_GPL vmlinux 0x9f43962c vfs_cancel_lock +EXPORT_SYMBOL_GPL vmlinux 0x9f45ec9f bd_link_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0x9f4b7d65 pci_epc_multi_mem_init EXPORT_SYMBOL_GPL vmlinux 0x9f4c4aa0 spi_delay_to_ns -EXPORT_SYMBOL_GPL vmlinux 0x9f528c83 vring_del_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0x9f5f68a5 vfio_iommu_group_put -EXPORT_SYMBOL_GPL vmlinux 0x9f742f61 iommu_dev_feature_enabled -EXPORT_SYMBOL_GPL vmlinux 0x9f785744 securityfs_create_file -EXPORT_SYMBOL_GPL vmlinux 0x9f8a34d9 add_disk_randomness -EXPORT_SYMBOL_GPL vmlinux 0x9fac8d8a pci_epc_stop -EXPORT_SYMBOL_GPL vmlinux 0x9fbb2fb6 devlink_dpipe_match_put +EXPORT_SYMBOL_GPL vmlinux 0x9f63d6e8 devm_irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x9f7065c5 security_kernel_read_file +EXPORT_SYMBOL_GPL vmlinux 0x9f745d4d mddev_init_writes_pending +EXPORT_SYMBOL_GPL vmlinux 0x9f87d8cd wait_on_page_writeback_killable +EXPORT_SYMBOL_GPL vmlinux 0x9f9849b1 synth_event_add_val +EXPORT_SYMBOL_GPL vmlinux 0x9fbcf170 mptcp_token_get_sock EXPORT_SYMBOL_GPL vmlinux 0x9fbfebab erst_write -EXPORT_SYMBOL_GPL vmlinux 0x9fc33668 elv_unregister -EXPORT_SYMBOL_GPL vmlinux 0x9fc59938 strp_process -EXPORT_SYMBOL_GPL vmlinux 0x9fcd8a2d gpiod_get_direction EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x9fd05daf usb_phy_roothub_resume -EXPORT_SYMBOL_GPL vmlinux 0x9fd0df6a pci_probe_reset_bus -EXPORT_SYMBOL_GPL vmlinux 0x9fe46b1c devm_nvmem_cell_get -EXPORT_SYMBOL_GPL vmlinux 0x9fe791b0 phy_led_triggers_register -EXPORT_SYMBOL_GPL vmlinux 0x9fe83884 __clocksource_update_freq_scale +EXPORT_SYMBOL_GPL vmlinux 0x9fe2f3d0 pci_epf_remove_vepf EXPORT_SYMBOL_GPL vmlinux 0x9fe899b7 get_cpu_idle_time EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm -EXPORT_SYMBOL_GPL vmlinux 0x9ff25876 smpboot_unregister_percpu_thread -EXPORT_SYMBOL_GPL vmlinux 0x9ff9ccc6 netdev_walk_all_upper_dev_rcu +EXPORT_SYMBOL_GPL vmlinux 0x9fed11cc pci_bridge_secondary_bus_reset +EXPORT_SYMBOL_GPL vmlinux 0x9ff903cb pci_enable_pasid +EXPORT_SYMBOL_GPL vmlinux 0xa000a298 __SCK__tp_func_neigh_update +EXPORT_SYMBOL_GPL vmlinux 0xa005ec06 pwmchip_remove EXPORT_SYMBOL_GPL vmlinux 0xa00624b5 srcu_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xa007d24b device_match_of_node EXPORT_SYMBOL_GPL vmlinux 0xa01a8d9b nd_cmd_bus_desc -EXPORT_SYMBOL_GPL vmlinux 0xa0385342 fwnode_usb_role_switch_get -EXPORT_SYMBOL_GPL vmlinux 0xa03bcff0 gnttab_page_cache_get +EXPORT_SYMBOL_GPL vmlinux 0xa01bb933 dm_suspended +EXPORT_SYMBOL_GPL vmlinux 0xa022f6bc spi_mem_get_name +EXPORT_SYMBOL_GPL vmlinux 0xa0262dfc of_led_get +EXPORT_SYMBOL_GPL vmlinux 0xa0307135 regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xa032234f usb_unlocked_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xa03ec83d pinctrl_remove_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0xa0418428 tpm_try_get_ops +EXPORT_SYMBOL_GPL vmlinux 0xa04d7302 netlink_add_tap +EXPORT_SYMBOL_GPL vmlinux 0xa04e0d13 devm_clk_bulk_get_optional EXPORT_SYMBOL_GPL vmlinux 0xa04f945a cpus_read_lock +EXPORT_SYMBOL_GPL vmlinux 0xa061f9d2 device_create_file +EXPORT_SYMBOL_GPL vmlinux 0xa0704136 acpi_register_gsi +EXPORT_SYMBOL_GPL vmlinux 0xa07ced88 sdio_readl EXPORT_SYMBOL_GPL vmlinux 0xa080c5e5 smp_call_function_single_async -EXPORT_SYMBOL_GPL vmlinux 0xa08b8700 powercap_register_control_type -EXPORT_SYMBOL_GPL vmlinux 0xa08baabe xdp_build_skb_from_frame +EXPORT_SYMBOL_GPL vmlinux 0xa08568fa simple_attr_read EXPORT_SYMBOL_GPL vmlinux 0xa090478a arch_has_restricted_virtio_memory_access -EXPORT_SYMBOL_GPL vmlinux 0xa0991da8 __traceiter_pelt_rt_tp -EXPORT_SYMBOL_GPL vmlinux 0xa09a05cc pinctrl_pm_select_default_state -EXPORT_SYMBOL_GPL vmlinux 0xa0aff8f8 __SCK__tp_func_devlink_trap_report -EXPORT_SYMBOL_GPL vmlinux 0xa0b337f8 sdio_writeb_readb -EXPORT_SYMBOL_GPL vmlinux 0xa0bb0e0e store_sampling_rate -EXPORT_SYMBOL_GPL vmlinux 0xa0bb8899 dev_attr_ncq_prio_enable -EXPORT_SYMBOL_GPL vmlinux 0xa0bba456 kernfs_notify -EXPORT_SYMBOL_GPL vmlinux 0xa0beae08 sysfs_unbreak_active_protection +EXPORT_SYMBOL_GPL vmlinux 0xa0a2253c kill_device +EXPORT_SYMBOL_GPL vmlinux 0xa0bc4c94 __fl6_sock_lookup +EXPORT_SYMBOL_GPL vmlinux 0xa0bd4eca __SCK__tp_func_error_report_end EXPORT_SYMBOL_GPL vmlinux 0xa0c0f1d7 __SCT__tp_func_neigh_timer_handler -EXPORT_SYMBOL_GPL vmlinux 0xa0cb775d wwan_unregister_ops EXPORT_SYMBOL_GPL vmlinux 0xa0d3456d nr_swap_pages EXPORT_SYMBOL_GPL vmlinux 0xa0d81b76 __SCT__tp_func_devlink_hwmsg -EXPORT_SYMBOL_GPL vmlinux 0xa0e16f48 blk_queue_flag_test_and_set +EXPORT_SYMBOL_GPL vmlinux 0xa0d93702 gpiod_put EXPORT_SYMBOL_GPL vmlinux 0xa0e671d8 __SCT__tp_func_sched_update_nr_running_tp -EXPORT_SYMBOL_GPL vmlinux 0xa0f1669a gpiochip_add_pingroup_range -EXPORT_SYMBOL_GPL vmlinux 0xa0fc09f4 pm_runtime_force_resume -EXPORT_SYMBOL_GPL vmlinux 0xa1020536 acpi_create_platform_device -EXPORT_SYMBOL_GPL vmlinux 0xa1024d47 sk_clone_lock -EXPORT_SYMBOL_GPL vmlinux 0xa111ab9b device_driver_attach +EXPORT_SYMBOL_GPL vmlinux 0xa0eefae8 fwnode_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0xa10e41cb serdev_device_open EXPORT_SYMBOL_GPL vmlinux 0xa11216be xen_store_domain_type -EXPORT_SYMBOL_GPL vmlinux 0xa12576b5 __xdp_build_skb_from_frame -EXPORT_SYMBOL_GPL vmlinux 0xa13e3b87 gpiod_is_active_low -EXPORT_SYMBOL_GPL vmlinux 0xa14d1c4a efivar_entry_iter -EXPORT_SYMBOL_GPL vmlinux 0xa151ec7d xenbus_dev_groups -EXPORT_SYMBOL_GPL vmlinux 0xa155612c cpu_device_create +EXPORT_SYMBOL_GPL vmlinux 0xa119ef24 virtqueue_enable_cb_delayed +EXPORT_SYMBOL_GPL vmlinux 0xa129cee7 fib_nexthop_info EXPORT_SYMBOL_GPL vmlinux 0xa156a1f2 erst_get_record_id_end -EXPORT_SYMBOL_GPL vmlinux 0xa15e7a7a lwtunnel_get_encap_size -EXPORT_SYMBOL_GPL vmlinux 0xa164fea8 apply_to_page_range EXPORT_SYMBOL_GPL vmlinux 0xa1691b63 xas_find_marked EXPORT_SYMBOL_GPL vmlinux 0xa16deb13 sbitmap_resize -EXPORT_SYMBOL_GPL vmlinux 0xa16faf37 spi_new_ancillary_device -EXPORT_SYMBOL_GPL vmlinux 0xa176a231 devlink_rate_leaf_create -EXPORT_SYMBOL_GPL vmlinux 0xa17869db cpuidle_register -EXPORT_SYMBOL_GPL vmlinux 0xa17b1a36 tcp_get_syncookie_mss -EXPORT_SYMBOL_GPL vmlinux 0xa194c12c crypto_ahash_digest -EXPORT_SYMBOL_GPL vmlinux 0xa19a39d4 dw_pcie_ep_init_notify +EXPORT_SYMBOL_GPL vmlinux 0xa17a6b5f rtc_set_alarm +EXPORT_SYMBOL_GPL vmlinux 0xa17aff41 inet_twsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0xa17b8aed __devm_clk_hw_register_divider +EXPORT_SYMBOL_GPL vmlinux 0xa17dccc6 sock_diag_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa1957cde pci_user_write_config_dword +EXPORT_SYMBOL_GPL vmlinux 0xa198256f iommu_sva_get_pasid +EXPORT_SYMBOL_GPL vmlinux 0xa198b83f ata_std_bios_param +EXPORT_SYMBOL_GPL vmlinux 0xa1a7d781 dev_pm_qos_remove_notifier EXPORT_SYMBOL_GPL vmlinux 0xa1a97623 start_poll_synchronize_srcu -EXPORT_SYMBOL_GPL vmlinux 0xa1b8e28b regulator_desc_list_voltage_linear_range -EXPORT_SYMBOL_GPL vmlinux 0xa1bc265b dm_internal_suspend_noflush -EXPORT_SYMBOL_GPL vmlinux 0xa1be4367 ping_get_port -EXPORT_SYMBOL_GPL vmlinux 0xa1c35449 dev_pm_qos_update_request -EXPORT_SYMBOL_GPL vmlinux 0xa1d4658c clocksource_verify_percpu +EXPORT_SYMBOL_GPL vmlinux 0xa1ad4f3a driver_create_file +EXPORT_SYMBOL_GPL vmlinux 0xa1d6701b __tracepoint_pelt_rt_tp EXPORT_SYMBOL_GPL vmlinux 0xa1d8004a videomode_from_timing EXPORT_SYMBOL_GPL vmlinux 0xa1ed9c8b add_hwgenerator_randomness -EXPORT_SYMBOL_GPL vmlinux 0xa20a5cac gpiochip_irqchip_irq_valid +EXPORT_SYMBOL_GPL vmlinux 0xa1fae87a __clocksource_update_freq_scale EXPORT_SYMBOL_GPL vmlinux 0xa20d01ba __trace_bprintk -EXPORT_SYMBOL_GPL vmlinux 0xa216aa8b dev_fwnode -EXPORT_SYMBOL_GPL vmlinux 0xa22423c7 md_do_sync -EXPORT_SYMBOL_GPL vmlinux 0xa22af114 fscrypt_drop_inode -EXPORT_SYMBOL_GPL vmlinux 0xa2317d9b thermal_zone_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa241ce61 dev_pm_opp_get_max_transition_latency -EXPORT_SYMBOL_GPL vmlinux 0xa25dac2e __serdev_device_driver_register -EXPORT_SYMBOL_GPL vmlinux 0xa25edfdc serdev_device_write_buf -EXPORT_SYMBOL_GPL vmlinux 0xa25f6401 dm_bio_from_per_bio_data -EXPORT_SYMBOL_GPL vmlinux 0xa25feda4 vfio_unregister_iommu_driver -EXPORT_SYMBOL_GPL vmlinux 0xa26bf468 blk_ksm_init +EXPORT_SYMBOL_GPL vmlinux 0xa2198abb desc_to_gpio +EXPORT_SYMBOL_GPL vmlinux 0xa220c2c0 pin_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0xa2263536 __nvdimm_create +EXPORT_SYMBOL_GPL vmlinux 0xa2375c1b crypto_unregister_scomp +EXPORT_SYMBOL_GPL vmlinux 0xa23dff67 platform_add_devices +EXPORT_SYMBOL_GPL vmlinux 0xa250fa63 acpi_subsys_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0xa25886de fuse_do_open +EXPORT_SYMBOL_GPL vmlinux 0xa26bc64a pid_nr_ns EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested -EXPORT_SYMBOL_GPL vmlinux 0xa26f5611 rtnl_put_cacheinfo -EXPORT_SYMBOL_GPL vmlinux 0xa27b9692 perf_get_aux -EXPORT_SYMBOL_GPL vmlinux 0xa2808706 iomap_fiemap -EXPORT_SYMBOL_GPL vmlinux 0xa2835950 smp_ops -EXPORT_SYMBOL_GPL vmlinux 0xa295052d devm_of_phy_provider_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa29e072b misc_cg_uncharge -EXPORT_SYMBOL_GPL vmlinux 0xa2a30f14 pci_pri_supported -EXPORT_SYMBOL_GPL vmlinux 0xa2ae57e3 device_create +EXPORT_SYMBOL_GPL vmlinux 0xa271413a get_net_ns +EXPORT_SYMBOL_GPL vmlinux 0xa2727bc4 led_trigger_rename_static +EXPORT_SYMBOL_GPL vmlinux 0xa2752e26 ata_cable_40wire +EXPORT_SYMBOL_GPL vmlinux 0xa28d4777 __fscrypt_inode_uses_inline_crypto +EXPORT_SYMBOL_GPL vmlinux 0xa29f2f95 __traceiter_fdb_delete EXPORT_SYMBOL_GPL vmlinux 0xa2af54b3 irq_from_evtchn -EXPORT_SYMBOL_GPL vmlinux 0xa2b47fa8 vmf_insert_pfn_pmd_prot -EXPORT_SYMBOL_GPL vmlinux 0xa2b6e675 phy_calibrate +EXPORT_SYMBOL_GPL vmlinux 0xa2b5203f __traceiter_rpm_resume EXPORT_SYMBOL_GPL vmlinux 0xa2b99209 alarm_start -EXPORT_SYMBOL_GPL vmlinux 0xa2ba089c syscon_node_to_regmap -EXPORT_SYMBOL_GPL vmlinux 0xa2c09b8f iommu_page_response -EXPORT_SYMBOL_GPL vmlinux 0xa2d9255d pci_destroy_slot -EXPORT_SYMBOL_GPL vmlinux 0xa2e10246 key_type_asymmetric +EXPORT_SYMBOL_GPL vmlinux 0xa2bddace __hwspin_lock_timeout +EXPORT_SYMBOL_GPL vmlinux 0xa2ca6020 ncsi_register_dev +EXPORT_SYMBOL_GPL vmlinux 0xa2cd3bbf pci_intx +EXPORT_SYMBOL_GPL vmlinux 0xa2d0b59d mmio_stale_data_clear +EXPORT_SYMBOL_GPL vmlinux 0xa2d68d05 do_splice_from EXPORT_SYMBOL_GPL vmlinux 0xa2e1b3ef trace_printk_init_buffers -EXPORT_SYMBOL_GPL vmlinux 0xa2e85132 dev_attr_link_power_management_policy +EXPORT_SYMBOL_GPL vmlinux 0xa2e8575e input_ff_erase EXPORT_SYMBOL_GPL vmlinux 0xa2f7487f hv_is_hibernation_supported -EXPORT_SYMBOL_GPL vmlinux 0xa32b160a sock_diag_unregister_inet_compat -EXPORT_SYMBOL_GPL vmlinux 0xa33edd50 pci_find_vsec_capability -EXPORT_SYMBOL_GPL vmlinux 0xa351f66b pci_epc_multi_mem_init -EXPORT_SYMBOL_GPL vmlinux 0xa361fdd2 synth_event_trace_array -EXPORT_SYMBOL_GPL vmlinux 0xa364963a acpi_find_child_device -EXPORT_SYMBOL_GPL vmlinux 0xa36c10cb lwtunnel_fill_encap +EXPORT_SYMBOL_GPL vmlinux 0xa2fcfb85 input_ff_upload +EXPORT_SYMBOL_GPL vmlinux 0xa2fe5d1c ata_bmdma32_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xa303bd12 get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0xa312a6f9 rio_mport_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0xa31863de virtqueue_get_desc_addr +EXPORT_SYMBOL_GPL vmlinux 0xa31cbf1b transport_setup_device +EXPORT_SYMBOL_GPL vmlinux 0xa320ceec spi_register_controller +EXPORT_SYMBOL_GPL vmlinux 0xa3310a89 __ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0xa341d4ad tracing_snapshot_cond +EXPORT_SYMBOL_GPL vmlinux 0xa34ddc54 led_trigger_set EXPORT_SYMBOL_GPL vmlinux 0xa36f50fb is_binary_blacklisted -EXPORT_SYMBOL_GPL vmlinux 0xa382dfd9 __SCK__tp_func_io_page_fault -EXPORT_SYMBOL_GPL vmlinux 0xa383b11e fscrypt_fname_siphash -EXPORT_SYMBOL_GPL vmlinux 0xa383d8f4 sdev_evt_send EXPORT_SYMBOL_GPL vmlinux 0xa38602cd drain_workqueue EXPORT_SYMBOL_GPL vmlinux 0xa389a49a profile_event_register EXPORT_SYMBOL_GPL vmlinux 0xa38a9f71 get_itimerspec64 -EXPORT_SYMBOL_GPL vmlinux 0xa3908fab rio_mport_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0xa38c4cdc gpiod_get_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xa3948f6e md_kick_rdev_from_array +EXPORT_SYMBOL_GPL vmlinux 0xa395235b __SCK__tp_func_cpu_idle EXPORT_SYMBOL_GPL vmlinux 0xa3a04602 btree_geo64 -EXPORT_SYMBOL_GPL vmlinux 0xa3ad0a68 iomap_finish_ioends +EXPORT_SYMBOL_GPL vmlinux 0xa3b83ea2 edac_mc_handle_error EXPORT_SYMBOL_GPL vmlinux 0xa3b958ce reset_hung_task_detector -EXPORT_SYMBOL_GPL vmlinux 0xa3d4a99b clone_private_mount -EXPORT_SYMBOL_GPL vmlinux 0xa3dd0b2f mddev_init_writes_pending -EXPORT_SYMBOL_GPL vmlinux 0xa3e09c85 gnttab_pages_clear_private -EXPORT_SYMBOL_GPL vmlinux 0xa3e1b725 regulator_list_voltage +EXPORT_SYMBOL_GPL vmlinux 0xa3beb304 crypto_alloc_acomp_node +EXPORT_SYMBOL_GPL vmlinux 0xa3c4bac4 dev_pm_opp_set_opp +EXPORT_SYMBOL_GPL vmlinux 0xa3d07665 task_cputime_adjusted +EXPORT_SYMBOL_GPL vmlinux 0xa3d3dfc9 __serdev_device_driver_register +EXPORT_SYMBOL_GPL vmlinux 0xa3eb495a __SCK__tp_func_sched_util_est_se_tp EXPORT_SYMBOL_GPL vmlinux 0xa3ece414 freezer_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xa3ee1060 __efivar_entry_get EXPORT_SYMBOL_GPL vmlinux 0xa3f12f69 __crypto_xor -EXPORT_SYMBOL_GPL vmlinux 0xa3f2dd09 ata_link_offline -EXPORT_SYMBOL_GPL vmlinux 0xa3f8c023 ata_port_abort -EXPORT_SYMBOL_GPL vmlinux 0xa3fe1cf6 pci_epc_get +EXPORT_SYMBOL_GPL vmlinux 0xa3f9793c sysfs_add_link_to_group +EXPORT_SYMBOL_GPL vmlinux 0xa3faffdc gpiochip_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0xa400157b skb_scrub_packet +EXPORT_SYMBOL_GPL vmlinux 0xa4019668 irq_chip_ack_parent EXPORT_SYMBOL_GPL vmlinux 0xa4031b7f sfp_parse_port -EXPORT_SYMBOL_GPL vmlinux 0xa409d4cd cpufreq_freq_attr_scaling_boost_freqs +EXPORT_SYMBOL_GPL vmlinux 0xa4063913 bio_clone_blkg_association +EXPORT_SYMBOL_GPL vmlinux 0xa40f5dc8 md_rdev_init EXPORT_SYMBOL_GPL vmlinux 0xa410a295 devlink_region_destroy -EXPORT_SYMBOL_GPL vmlinux 0xa41aa3c9 max8997_bulk_write -EXPORT_SYMBOL_GPL vmlinux 0xa42411f7 debugfs_create_size_t -EXPORT_SYMBOL_GPL vmlinux 0xa434d7b9 scsi_internal_device_unblock_nowait -EXPORT_SYMBOL_GPL vmlinux 0xa43a7182 regmap_reinit_cache +EXPORT_SYMBOL_GPL vmlinux 0xa413e783 fwnode_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0xa41471b7 sdio_retune_hold_now +EXPORT_SYMBOL_GPL vmlinux 0xa41d3e76 devm_namespace_enable +EXPORT_SYMBOL_GPL vmlinux 0xa42963e9 platform_irq_count +EXPORT_SYMBOL_GPL vmlinux 0xa43fe9a6 pm_clk_suspend +EXPORT_SYMBOL_GPL vmlinux 0xa444c32f __tracepoint_sched_util_est_cfs_tp EXPORT_SYMBOL_GPL vmlinux 0xa44a1307 interval_tree_iter_first EXPORT_SYMBOL_GPL vmlinux 0xa452c297 hpet_mask_rtc_irq_bit EXPORT_SYMBOL_GPL vmlinux 0xa452f2a4 xen_pirq_from_irq +EXPORT_SYMBOL_GPL vmlinux 0xa45b8c46 device_del EXPORT_SYMBOL_GPL vmlinux 0xa45c7b90 stack_trace_print EXPORT_SYMBOL_GPL vmlinux 0xa462d5a6 __SCT__tp_func_sched_overutilized_tp -EXPORT_SYMBOL_GPL vmlinux 0xa4664858 __SCK__tp_func_extlog_mem_event -EXPORT_SYMBOL_GPL vmlinux 0xa46a7af4 usb_get_phy -EXPORT_SYMBOL_GPL vmlinux 0xa479e593 device_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0xa464e6ac phy_package_join +EXPORT_SYMBOL_GPL vmlinux 0xa46c26cb usb_set_device_state EXPORT_SYMBOL_GPL vmlinux 0xa48196c8 kdb_poll_idx -EXPORT_SYMBOL_GPL vmlinux 0xa491ca81 usb_hcd_poll_rh_status -EXPORT_SYMBOL_GPL vmlinux 0xa49eaf62 led_classdev_suspend +EXPORT_SYMBOL_GPL vmlinux 0xa4877f9b regulator_set_current_limit +EXPORT_SYMBOL_GPL vmlinux 0xa49621a0 serial8250_do_startup EXPORT_SYMBOL_GPL vmlinux 0xa4ab7c1c ring_buffer_overruns +EXPORT_SYMBOL_GPL vmlinux 0xa4acb628 get_cpu_device +EXPORT_SYMBOL_GPL vmlinux 0xa4af532d dev_pm_enable_wake_irq EXPORT_SYMBOL_GPL vmlinux 0xa4b07fe7 ring_buffer_change_overwrite -EXPORT_SYMBOL_GPL vmlinux 0xa4b57463 syscon_regmap_lookup_by_phandle_args EXPORT_SYMBOL_GPL vmlinux 0xa4c00324 asn1_encode_octet_string -EXPORT_SYMBOL_GPL vmlinux 0xa4c7d9dd blk_mq_queue_inflight +EXPORT_SYMBOL_GPL vmlinux 0xa4c4ef3f cpufreq_unregister_governor +EXPORT_SYMBOL_GPL vmlinux 0xa4c810df addrconf_prefix_rcv_add_addr EXPORT_SYMBOL_GPL vmlinux 0xa4eb5793 sbitmap_weight -EXPORT_SYMBOL_GPL vmlinux 0xa4f775b6 da903x_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xa4fc12b4 crypto_unregister_aead -EXPORT_SYMBOL_GPL vmlinux 0xa50a565f __inet_twsk_schedule +EXPORT_SYMBOL_GPL vmlinux 0xa4ee316f device_store_int +EXPORT_SYMBOL_GPL vmlinux 0xa4efe167 ping_seq_start +EXPORT_SYMBOL_GPL vmlinux 0xa4f5bd9b __tracepoint_tcp_send_reset +EXPORT_SYMBOL_GPL vmlinux 0xa4f5dc96 __of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0xa4f6f6bc trace_array_put +EXPORT_SYMBOL_GPL vmlinux 0xa5108036 nf_queue_entry_free +EXPORT_SYMBOL_GPL vmlinux 0xa5108db7 dax_layout_busy_page_range +EXPORT_SYMBOL_GPL vmlinux 0xa513e207 __skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0xa514a309 dw_pcie_read_dbi +EXPORT_SYMBOL_GPL vmlinux 0xa52dcc8e ata_noop_qc_prep EXPORT_SYMBOL_GPL vmlinux 0xa531471e clk_save_context -EXPORT_SYMBOL_GPL vmlinux 0xa532e7c4 devm_regulator_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0xa5343bc5 set_task_ioprio -EXPORT_SYMBOL_GPL vmlinux 0xa53a7354 kthread_cancel_delayed_work_sync -EXPORT_SYMBOL_GPL vmlinux 0xa53e9f01 devm_memremap_pages -EXPORT_SYMBOL_GPL vmlinux 0xa549d1e6 call_switchdev_blocking_notifiers -EXPORT_SYMBOL_GPL vmlinux 0xa56626db fscrypt_set_test_dummy_encryption -EXPORT_SYMBOL_GPL vmlinux 0xa56b4a92 __devm_regmap_init_i2c -EXPORT_SYMBOL_GPL vmlinux 0xa57132fe crypto_destroy_tfm -EXPORT_SYMBOL_GPL vmlinux 0xa5735f83 cpufreq_driver_target -EXPORT_SYMBOL_GPL vmlinux 0xa573e591 register_virtio_driver -EXPORT_SYMBOL_GPL vmlinux 0xa5747990 ahash_register_instance -EXPORT_SYMBOL_GPL vmlinux 0xa57ba92b pin_user_pages_fast -EXPORT_SYMBOL_GPL vmlinux 0xa57e0cb7 netdev_set_default_ethtool_ops -EXPORT_SYMBOL_GPL vmlinux 0xa5812f26 device_remove_groups -EXPORT_SYMBOL_GPL vmlinux 0xa5917670 usb_debug_root +EXPORT_SYMBOL_GPL vmlinux 0xa5747890 devm_pm_opp_set_clkname +EXPORT_SYMBOL_GPL vmlinux 0xa574ed03 of_pwm_xlate_with_flags +EXPORT_SYMBOL_GPL vmlinux 0xa5810036 dummy_con +EXPORT_SYMBOL_GPL vmlinux 0xa5864dba i2c_dw_prepare_clk EXPORT_SYMBOL_GPL vmlinux 0xa5a1793e unregister_ftrace_function -EXPORT_SYMBOL_GPL vmlinux 0xa5a205d9 mmc_sanitize +EXPORT_SYMBOL_GPL vmlinux 0xa5ae7a7b debugfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0xa5b1d14e __hwspin_unlock EXPORT_SYMBOL_GPL vmlinux 0xa5bda8a1 efi_capsule_supported -EXPORT_SYMBOL_GPL vmlinux 0xa5c806ee devm_mbox_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa5bdaaf8 led_trigger_register EXPORT_SYMBOL_GPL vmlinux 0xa5d7c388 pstore_type_to_name +EXPORT_SYMBOL_GPL vmlinux 0xa5e3757c synth_event_add_next_val +EXPORT_SYMBOL_GPL vmlinux 0xa5e51986 vfio_unregister_iommu_driver EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full -EXPORT_SYMBOL_GPL vmlinux 0xa60df9d5 fuse_fill_super_common -EXPORT_SYMBOL_GPL vmlinux 0xa61d6971 __tracepoint_devlink_hwerr -EXPORT_SYMBOL_GPL vmlinux 0xa61f0763 ata_host_activate -EXPORT_SYMBOL_GPL vmlinux 0xa6268deb hwmon_device_register_with_groups -EXPORT_SYMBOL_GPL vmlinux 0xa6289039 devm_acpi_dev_add_driver_gpios -EXPORT_SYMBOL_GPL vmlinux 0xa62d95a4 serdev_device_wait_until_sent -EXPORT_SYMBOL_GPL vmlinux 0xa63715ca mbox_controller_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa68347d5 __hwspin_unlock -EXPORT_SYMBOL_GPL vmlinux 0xa6855d00 kick_process -EXPORT_SYMBOL_GPL vmlinux 0xa689a597 class_compat_remove_link +EXPORT_SYMBOL_GPL vmlinux 0xa610788a br_ip6_fragment +EXPORT_SYMBOL_GPL vmlinux 0xa635f040 devlink_region_snapshot_id_get +EXPORT_SYMBOL_GPL vmlinux 0xa66a097d dm_get_md +EXPORT_SYMBOL_GPL vmlinux 0xa66f739b devlink_rate_nodes_destroy +EXPORT_SYMBOL_GPL vmlinux 0xa681b235 pinctrl_put EXPORT_SYMBOL_GPL vmlinux 0xa68bdef9 __srcu_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0xa68cc1a0 ping_init_sock -EXPORT_SYMBOL_GPL vmlinux 0xa68d82af iommu_device_register -EXPORT_SYMBOL_GPL vmlinux 0xa69a15f4 __netpoll_free -EXPORT_SYMBOL_GPL vmlinux 0xa69a8cc0 __tracepoint_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0xa693e1d3 serdev_device_remove +EXPORT_SYMBOL_GPL vmlinux 0xa69489c7 rio_register_driver EXPORT_SYMBOL_GPL vmlinux 0xa6a088b7 fscrypt_match_name +EXPORT_SYMBOL_GPL vmlinux 0xa6a1df6c acpi_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0xa6a56d3b class_for_each_device EXPORT_SYMBOL_GPL vmlinux 0xa6b06f65 ata_sff_queue_work EXPORT_SYMBOL_GPL vmlinux 0xa6b21ef2 dpm_suspend_end +EXPORT_SYMBOL_GPL vmlinux 0xa6cc2061 bpf_map_inc_not_zero EXPORT_SYMBOL_GPL vmlinux 0xa6e1a69d kick_all_cpus_sync -EXPORT_SYMBOL_GPL vmlinux 0xa6ed27dc usb_sg_wait -EXPORT_SYMBOL_GPL vmlinux 0xa6f0b503 rio_mport_initialize -EXPORT_SYMBOL_GPL vmlinux 0xa6f7fed2 usb_unlocked_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xa6eba64c perf_event_enable +EXPORT_SYMBOL_GPL vmlinux 0xa6fef336 trace_array_init_printk +EXPORT_SYMBOL_GPL vmlinux 0xa70693d9 da903x_update EXPORT_SYMBOL_GPL vmlinux 0xa709c835 fib6_info_destroy_rcu -EXPORT_SYMBOL_GPL vmlinux 0xa70b5e45 pm_generic_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0xa70b2fd1 crypto_stats_kpp_set_secret EXPORT_SYMBOL_GPL vmlinux 0xa7127da7 mce_unregister_injector_chain -EXPORT_SYMBOL_GPL vmlinux 0xa71385ca kthread_mod_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0xa71e3f6c cpufreq_dbs_governor_init EXPORT_SYMBOL_GPL vmlinux 0xa7218eba irq_set_affinity -EXPORT_SYMBOL_GPL vmlinux 0xa72613ed regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xa725273f __usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0xa72bcfa8 led_trigger_unregister_simple EXPORT_SYMBOL_GPL vmlinux 0xa731f387 nl_table_lock -EXPORT_SYMBOL_GPL vmlinux 0xa763d995 powercap_unregister_control_type -EXPORT_SYMBOL_GPL vmlinux 0xa7883529 scsi_host_unblock -EXPORT_SYMBOL_GPL vmlinux 0xa78b3712 sysfs_remove_file_self -EXPORT_SYMBOL_GPL vmlinux 0xa78fd04f usb_clear_halt -EXPORT_SYMBOL_GPL vmlinux 0xa796a13e __clk_mux_determine_rate -EXPORT_SYMBOL_GPL vmlinux 0xa798196a tpm_pcr_extend -EXPORT_SYMBOL_GPL vmlinux 0xa79ccbfa perf_aux_output_end -EXPORT_SYMBOL_GPL vmlinux 0xa7ba90a8 dw_pcie_wait_for_link -EXPORT_SYMBOL_GPL vmlinux 0xa7c1d4ec shash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xa7385c66 tpm_pm_suspend +EXPORT_SYMBOL_GPL vmlinux 0xa73b4838 crypto_mod_get +EXPORT_SYMBOL_GPL vmlinux 0xa7464fe7 __put_task_struct +EXPORT_SYMBOL_GPL vmlinux 0xa755661e vp_modern_get_status +EXPORT_SYMBOL_GPL vmlinux 0xa7657cd6 platform_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0xa7684d67 pci_common_swizzle +EXPORT_SYMBOL_GPL vmlinux 0xa77bf0e8 crypto_unregister_aeads +EXPORT_SYMBOL_GPL vmlinux 0xa78254dd pci_enable_rom +EXPORT_SYMBOL_GPL vmlinux 0xa7a5bb23 fsnotify_put_group +EXPORT_SYMBOL_GPL vmlinux 0xa7b818f8 devlink_health_reporter_create EXPORT_SYMBOL_GPL vmlinux 0xa7cba284 housekeeping_any_cpu -EXPORT_SYMBOL_GPL vmlinux 0xa7d65433 pinctrl_remove_gpio_range -EXPORT_SYMBOL_GPL vmlinux 0xa7e62df3 device_move -EXPORT_SYMBOL_GPL vmlinux 0xa7f81390 crypto_alloc_ahash -EXPORT_SYMBOL_GPL vmlinux 0xa7f95189 pci_iomap_wc_range -EXPORT_SYMBOL_GPL vmlinux 0xa801e0fe bpf_trace_run1 -EXPORT_SYMBOL_GPL vmlinux 0xa80269f7 zap_vma_ptes -EXPORT_SYMBOL_GPL vmlinux 0xa802c354 __tracepoint_block_split -EXPORT_SYMBOL_GPL vmlinux 0xa835b1a9 __traceiter_add_device_to_group -EXPORT_SYMBOL_GPL vmlinux 0xa8369bc6 xdp_rxq_info_unreg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0xa7cd6699 inverse_translate +EXPORT_SYMBOL_GPL vmlinux 0xa7ced458 regulator_get_mode +EXPORT_SYMBOL_GPL vmlinux 0xa7e6554e iommu_sva_bind_device +EXPORT_SYMBOL_GPL vmlinux 0xa7f72651 usb_driver_claim_interface +EXPORT_SYMBOL_GPL vmlinux 0xa8283d7d iommu_sva_find +EXPORT_SYMBOL_GPL vmlinux 0xa830a6ec tty_standard_install +EXPORT_SYMBOL_GPL vmlinux 0xa836969c dma_need_sync +EXPORT_SYMBOL_GPL vmlinux 0xa839876a devm_pwmchip_add +EXPORT_SYMBOL_GPL vmlinux 0xa839c9f1 crypto_rng_reset +EXPORT_SYMBOL_GPL vmlinux 0xa83ffe36 power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0xa8513b8b relay_open EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xa862dd85 edac_mc_add_mc_with_groups -EXPORT_SYMBOL_GPL vmlinux 0xa863c6c0 pm_runtime_autosuspend_expiration -EXPORT_SYMBOL_GPL vmlinux 0xa8706d8a crypto_grab_skcipher -EXPORT_SYMBOL_GPL vmlinux 0xa878cd35 security_path_chmod -EXPORT_SYMBOL_GPL vmlinux 0xa87e7e25 acct_bioset_init -EXPORT_SYMBOL_GPL vmlinux 0xa88a448b pci_sriov_get_totalvfs -EXPORT_SYMBOL_GPL vmlinux 0xa892a198 security_inode_permission -EXPORT_SYMBOL_GPL vmlinux 0xa895cb1b synth_event_trace_end -EXPORT_SYMBOL_GPL vmlinux 0xa8a779f8 icc_link_destroy -EXPORT_SYMBOL_GPL vmlinux 0xa8ca8b67 clk_hw_is_prepared -EXPORT_SYMBOL_GPL vmlinux 0xa8d2313d blkcg_policy_register -EXPORT_SYMBOL_GPL vmlinux 0xa8d5b06c regulator_desc_list_voltage_linear -EXPORT_SYMBOL_GPL vmlinux 0xa8dc96c2 device_property_match_string -EXPORT_SYMBOL_GPL vmlinux 0xa8e131ee blk_mq_freeze_queue_wait -EXPORT_SYMBOL_GPL vmlinux 0xa8e2814e clk_hw_register_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0xa900fdb3 __dev_forward_skb -EXPORT_SYMBOL_GPL vmlinux 0xa90382ea spi_sync_locked -EXPORT_SYMBOL_GPL vmlinux 0xa908fac7 power_supply_register_no_ws -EXPORT_SYMBOL_GPL vmlinux 0xa909933d regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa85c65bf platform_device_register +EXPORT_SYMBOL_GPL vmlinux 0xa85e5a8c usb_get_urb +EXPORT_SYMBOL_GPL vmlinux 0xa85ea807 crypto_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0xa862b819 fat_dir_empty +EXPORT_SYMBOL_GPL vmlinux 0xa8757a76 register_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0xa87fb320 vp_modern_set_queue_enable +EXPORT_SYMBOL_GPL vmlinux 0xa881370b cpufreq_cpu_get +EXPORT_SYMBOL_GPL vmlinux 0xa88abb76 __traceiter_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0xa89c02d4 usb_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0xa8a92f92 dw8250_setup_port +EXPORT_SYMBOL_GPL vmlinux 0xa8c114fb spi_mem_adjust_op_size +EXPORT_SYMBOL_GPL vmlinux 0xa8d27e7b __udp_enqueue_schedule_skb +EXPORT_SYMBOL_GPL vmlinux 0xa8d89003 __regmap_init +EXPORT_SYMBOL_GPL vmlinux 0xa8f82ad4 vring_del_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0xa902e43d iommu_map_sg +EXPORT_SYMBOL_GPL vmlinux 0xa9112e33 regmap_check_range_table EXPORT_SYMBOL_GPL vmlinux 0xa9126bff hpet_set_rtc_irq_bit -EXPORT_SYMBOL_GPL vmlinux 0xa913fffb scsi_ioctl_block_when_processing_errors -EXPORT_SYMBOL_GPL vmlinux 0xa91ff01b efivar_entry_remove -EXPORT_SYMBOL_GPL vmlinux 0xa92a982d __devm_reset_control_bulk_get EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds -EXPORT_SYMBOL_GPL vmlinux 0xa938d7e0 regulator_bulk_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0xa940bd0c md_account_bio -EXPORT_SYMBOL_GPL vmlinux 0xa9500fb5 pci_epc_get_features -EXPORT_SYMBOL_GPL vmlinux 0xa9518e41 genphy_c45_pma_suspend -EXPORT_SYMBOL_GPL vmlinux 0xa963b488 __efivar_entry_delete -EXPORT_SYMBOL_GPL vmlinux 0xa9690918 sysfs_remove_bin_file -EXPORT_SYMBOL_GPL vmlinux 0xa96c98ea sysfs_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0xa94f22cc vfs_getxattr_alloc +EXPORT_SYMBOL_GPL vmlinux 0xa95125be trace_output_call EXPORT_SYMBOL_GPL vmlinux 0xa96e8b4e hv_setup_vmbus_handler -EXPORT_SYMBOL_GPL vmlinux 0xa974d615 hvc_alloc -EXPORT_SYMBOL_GPL vmlinux 0xa977d491 netdev_rx_handler_register -EXPORT_SYMBOL_GPL vmlinux 0xa97f00f8 fat_scan -EXPORT_SYMBOL_GPL vmlinux 0xa9837bf8 edac_pci_del_device +EXPORT_SYMBOL_GPL vmlinux 0xa9804a42 regmap_field_bulk_alloc +EXPORT_SYMBOL_GPL vmlinux 0xa982ec8d devm_reset_control_array_get EXPORT_SYMBOL_GPL vmlinux 0xa9854364 umc_normaddr_to_sysaddr -EXPORT_SYMBOL_GPL vmlinux 0xa98aef15 blk_ksm_is_superset -EXPORT_SYMBOL_GPL vmlinux 0xa9919852 __sock_recv_ts_and_drops +EXPORT_SYMBOL_GPL vmlinux 0xa9902d59 __traceiter_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0xa994fcde __pm_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0xa99ba294 da9055_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0xa99ca074 edac_pci_handle_npe EXPORT_SYMBOL_GPL vmlinux 0xa99ef899 devlink_fmsg_bool_pair_put -EXPORT_SYMBOL_GPL vmlinux 0xa99faaa1 gnttab_page_cache_shrink -EXPORT_SYMBOL_GPL vmlinux 0xa9beb073 cpufreq_dbs_governor_init -EXPORT_SYMBOL_GPL vmlinux 0xa9d5fbb8 sync_page_io -EXPORT_SYMBOL_GPL vmlinux 0xa9d8723a l3mdev_master_ifindex_rcu +EXPORT_SYMBOL_GPL vmlinux 0xa9a200c9 efivars_kobject +EXPORT_SYMBOL_GPL vmlinux 0xa9ab33a9 devlink_dpipe_entry_ctx_prepare +EXPORT_SYMBOL_GPL vmlinux 0xa9b16fec pci_disable_rom +EXPORT_SYMBOL_GPL vmlinux 0xa9b7953b rio_unregister_scan +EXPORT_SYMBOL_GPL vmlinux 0xa9ccda21 kthread_cancel_delayed_work_sync +EXPORT_SYMBOL_GPL vmlinux 0xa9d57816 __auxiliary_device_add +EXPORT_SYMBOL_GPL vmlinux 0xa9d7681a blk_insert_cloned_request EXPORT_SYMBOL_GPL vmlinux 0xa9e18049 task_handoff_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa9f35b94 device_set_of_node_from_dev -EXPORT_SYMBOL_GPL vmlinux 0xaa0167ce dm_report_zones -EXPORT_SYMBOL_GPL vmlinux 0xaa10ad73 switchdev_bridge_port_offload -EXPORT_SYMBOL_GPL vmlinux 0xaa1e1ab6 devm_gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0xa9f61ab9 rio_route_clr_table +EXPORT_SYMBOL_GPL vmlinux 0xaa22f9f9 tpm_chip_register EXPORT_SYMBOL_GPL vmlinux 0xaa230f88 perf_unregister_guest_info_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xaa3a7e4d pm_wakeup_ws_event -EXPORT_SYMBOL_GPL vmlinux 0xaa3d3003 crypto_alloc_shash -EXPORT_SYMBOL_GPL vmlinux 0xaa3e69d3 devm_pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0xaa25ba4f devm_add_action +EXPORT_SYMBOL_GPL vmlinux 0xaa350709 ata_port_abort +EXPORT_SYMBOL_GPL vmlinux 0xaa38c3bb ata_ncq_sdev_attrs +EXPORT_SYMBOL_GPL vmlinux 0xaa39aa96 genphy_c45_read_status +EXPORT_SYMBOL_GPL vmlinux 0xaa3d82c7 rio_route_add_entry +EXPORT_SYMBOL_GPL vmlinux 0xaa450124 usb_enable_intel_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0xaa520026 gpiod_count EXPORT_SYMBOL_GPL vmlinux 0xaa5aee1c uv_bios_mq_watchlist_alloc -EXPORT_SYMBOL_GPL vmlinux 0xaa650745 regulator_bulk_free EXPORT_SYMBOL_GPL vmlinux 0xaa6a50f9 __static_key_deferred_flush -EXPORT_SYMBOL_GPL vmlinux 0xaa7392bb __netif_set_xps_queue -EXPORT_SYMBOL_GPL vmlinux 0xaa869c89 sysfs_file_change_owner +EXPORT_SYMBOL_GPL vmlinux 0xaa6c3e5b phy_pm_runtime_get_sync +EXPORT_SYMBOL_GPL vmlinux 0xaa6f2b67 devm_reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xaa741d76 ohci_restart +EXPORT_SYMBOL_GPL vmlinux 0xaa85e6c4 intel_pinctrl_probe_by_uid EXPORT_SYMBOL_GPL vmlinux 0xaa86cfb5 uv_possible_blades -EXPORT_SYMBOL_GPL vmlinux 0xaa875cb1 skb_gso_validate_network_len -EXPORT_SYMBOL_GPL vmlinux 0xaa939daa fwnode_property_read_u64_array -EXPORT_SYMBOL_GPL vmlinux 0xaa9709a6 fsverity_cleanup_inode +EXPORT_SYMBOL_GPL vmlinux 0xaa8c5c56 set_online_page_callback +EXPORT_SYMBOL_GPL vmlinux 0xaa8eb75d irq_domain_create_legacy +EXPORT_SYMBOL_GPL vmlinux 0xaa921642 device_for_each_child +EXPORT_SYMBOL_GPL vmlinux 0xaa9a672f devlink_flash_update_status_notify EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump -EXPORT_SYMBOL_GPL vmlinux 0xaabe1c86 xfer_to_guest_mode_handle_work -EXPORT_SYMBOL_GPL vmlinux 0xaac78cf3 fwnode_get_next_child_node -EXPORT_SYMBOL_GPL vmlinux 0xaace466f ping_close -EXPORT_SYMBOL_GPL vmlinux 0xaae9a5b2 regmap_bulk_write -EXPORT_SYMBOL_GPL vmlinux 0xaaea957a em_dev_register_perf_domain +EXPORT_SYMBOL_GPL vmlinux 0xaab26909 mptcp_subflow_request_sock_ops +EXPORT_SYMBOL_GPL vmlinux 0xaac2e87b dev_pm_opp_sync_regulators +EXPORT_SYMBOL_GPL vmlinux 0xaad841fd dev_pm_opp_disable EXPORT_SYMBOL_GPL vmlinux 0xaaebe644 init_srcu_struct -EXPORT_SYMBOL_GPL vmlinux 0xaaf42c1c rio_mport_get_feature -EXPORT_SYMBOL_GPL vmlinux 0xaaf95f2f irq_domain_create_legacy -EXPORT_SYMBOL_GPL vmlinux 0xab0a64ee regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0xaaf7fc67 dw_pcie_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0xaafc574d sock_diag_unregister_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0xaafe4be5 edac_device_free_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0xab06f574 virtio_break_device +EXPORT_SYMBOL_GPL vmlinux 0xab15d91d xfrm_output_resume +EXPORT_SYMBOL_GPL vmlinux 0xab196127 __tracepoint_block_rq_insert +EXPORT_SYMBOL_GPL vmlinux 0xab197cb6 tpm_get_random EXPORT_SYMBOL_GPL vmlinux 0xab1e0e93 hv_setup_kexec_handler -EXPORT_SYMBOL_GPL vmlinux 0xab41abc4 fib4_rule_default -EXPORT_SYMBOL_GPL vmlinux 0xab79fdcf devfreq_get_devfreq_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0xab7b49aa irq_set_chip_and_handler_name +EXPORT_SYMBOL_GPL vmlinux 0xab2134e4 vp_modern_get_queue_size +EXPORT_SYMBOL_GPL vmlinux 0xab2849e4 edac_mc_find_csrow_by_page +EXPORT_SYMBOL_GPL vmlinux 0xab386e9f fwnode_graph_get_remote_port +EXPORT_SYMBOL_GPL vmlinux 0xab3bf662 __xdp_build_skb_from_frame +EXPORT_SYMBOL_GPL vmlinux 0xab3fdf3b edac_device_handle_ce_count +EXPORT_SYMBOL_GPL vmlinux 0xab4b0695 blk_mq_unquiesce_queue +EXPORT_SYMBOL_GPL vmlinux 0xab5f91ae ata_port_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0xab67add9 __SCK__tp_func_map +EXPORT_SYMBOL_GPL vmlinux 0xab72b24f irq_domain_associate_many +EXPORT_SYMBOL_GPL vmlinux 0xab7453b8 iommu_aux_detach_device +EXPORT_SYMBOL_GPL vmlinux 0xab86f3c9 devlink_traps_register +EXPORT_SYMBOL_GPL vmlinux 0xab8a2ada ata_sff_thaw +EXPORT_SYMBOL_GPL vmlinux 0xab8dc20c crypto_unregister_scomps EXPORT_SYMBOL_GPL vmlinux 0xab9bd884 perf_register_guest_info_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xab9cd4ed ata_platform_remove_one -EXPORT_SYMBOL_GPL vmlinux 0xaba67d3f da9052_enable_irq -EXPORT_SYMBOL_GPL vmlinux 0xabb806c8 sysfs_remove_files +EXPORT_SYMBOL_GPL vmlinux 0xaba66d26 crypto_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xabb7c7c2 get_cached_msi_msg EXPORT_SYMBOL_GPL vmlinux 0xabc1661d fpu_swap_kvm_fpstate EXPORT_SYMBOL_GPL vmlinux 0xabc298d0 intel_scu_ipc_unregister +EXPORT_SYMBOL_GPL vmlinux 0xabc444c4 device_create_managed_software_node EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate -EXPORT_SYMBOL_GPL vmlinux 0xabc86dca ip6_datagram_recv_ctl -EXPORT_SYMBOL_GPL vmlinux 0xabcbbbc9 debugfs_create_ulong -EXPORT_SYMBOL_GPL vmlinux 0xabcc8537 subsys_virtual_register -EXPORT_SYMBOL_GPL vmlinux 0xabd9b6a4 driver_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0xabd4a36a devm_memunmap_pages +EXPORT_SYMBOL_GPL vmlinux 0xabd7a173 devlink_dpipe_table_unregister +EXPORT_SYMBOL_GPL vmlinux 0xabe9123a ata_pci_bmdma_prepare_host EXPORT_SYMBOL_GPL vmlinux 0xabf03fc3 __SCT__tp_func_xhci_dbg_quirks -EXPORT_SYMBOL_GPL vmlinux 0xabf30e43 gpiod_get_raw_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xabf7a704 vfio_pci_core_read -EXPORT_SYMBOL_GPL vmlinux 0xac0b3276 acpi_subsys_prepare -EXPORT_SYMBOL_GPL vmlinux 0xac354a20 bpf_prog_destroy -EXPORT_SYMBOL_GPL vmlinux 0xac3d7e22 of_phy_simple_xlate -EXPORT_SYMBOL_GPL vmlinux 0xac436bf0 br_fdb_test_addr_hook -EXPORT_SYMBOL_GPL vmlinux 0xac4db2a9 console_drivers -EXPORT_SYMBOL_GPL vmlinux 0xac501424 dev_pm_opp_remove -EXPORT_SYMBOL_GPL vmlinux 0xac549f4b perf_aux_output_flag -EXPORT_SYMBOL_GPL vmlinux 0xac54e735 rio_del_device -EXPORT_SYMBOL_GPL vmlinux 0xac565fcf pm_generic_suspend -EXPORT_SYMBOL_GPL vmlinux 0xac5be2d9 serdev_controller_remove -EXPORT_SYMBOL_GPL vmlinux 0xac60acf7 ata_scsi_slave_destroy -EXPORT_SYMBOL_GPL vmlinux 0xac716a38 skcipher_walk_done -EXPORT_SYMBOL_GPL vmlinux 0xac9e24e9 pm_clk_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0xabf4712e ata_sas_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0xabf5963b irq_domain_create_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0xac03f150 component_unbind_all +EXPORT_SYMBOL_GPL vmlinux 0xac2fc1f2 clk_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0xac467a6b gpiochip_request_own_desc +EXPORT_SYMBOL_GPL vmlinux 0xac4e766d __fscrypt_encrypt_symlink +EXPORT_SYMBOL_GPL vmlinux 0xac64d728 dma_wait_for_async_tx +EXPORT_SYMBOL_GPL vmlinux 0xac786407 blk_ksm_destroy +EXPORT_SYMBOL_GPL vmlinux 0xac823a90 dma_buf_move_notify +EXPORT_SYMBOL_GPL vmlinux 0xac854d78 metadata_dst_free +EXPORT_SYMBOL_GPL vmlinux 0xac912f70 devfreq_get_devfreq_by_node +EXPORT_SYMBOL_GPL vmlinux 0xaca2e7e5 pin_get_name +EXPORT_SYMBOL_GPL vmlinux 0xaca5dc8c led_init_default_state_get EXPORT_SYMBOL_GPL vmlinux 0xacb4d88c clk_rate_exclusive_put -EXPORT_SYMBOL_GPL vmlinux 0xacb62fbf dev_pm_opp_disable -EXPORT_SYMBOL_GPL vmlinux 0xacb6ea87 crypto_aead_encrypt -EXPORT_SYMBOL_GPL vmlinux 0xacb73647 sdio_register_driver -EXPORT_SYMBOL_GPL vmlinux 0xacbd5ea3 fscrypt_set_bio_crypt_ctx -EXPORT_SYMBOL_GPL vmlinux 0xacc1ddcd phy_configure +EXPORT_SYMBOL_GPL vmlinux 0xacb73b5d mptcp_pm_get_local_addr_max +EXPORT_SYMBOL_GPL vmlinux 0xacbfa9bb regulator_map_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0xacc4b905 n_tty_inherit_ops EXPORT_SYMBOL_GPL vmlinux 0xacc977ac alarm_forward_now -EXPORT_SYMBOL_GPL vmlinux 0xacd0c207 vfs_kern_mount -EXPORT_SYMBOL_GPL vmlinux 0xad02348a security_kernel_post_read_file +EXPORT_SYMBOL_GPL vmlinux 0xaccea427 dst_cache_get_ip6 +EXPORT_SYMBOL_GPL vmlinux 0xacd60e9a sysfs_remove_link_from_group +EXPORT_SYMBOL_GPL vmlinux 0xace1fdbe irq_get_default_host +EXPORT_SYMBOL_GPL vmlinux 0xacedb0d1 __netpoll_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xacf39a4a thp_get_unmapped_area +EXPORT_SYMBOL_GPL vmlinux 0xacf6bff1 power_supply_set_input_current_limit_from_supplier +EXPORT_SYMBOL_GPL vmlinux 0xad06e379 virtqueue_kick_prepare +EXPORT_SYMBOL_GPL vmlinux 0xad0aa9c5 ata_pio_need_iordy EXPORT_SYMBOL_GPL vmlinux 0xad0f2b6c unix_table_lock -EXPORT_SYMBOL_GPL vmlinux 0xad1d7cd7 regmap_raw_read -EXPORT_SYMBOL_GPL vmlinux 0xad22d409 __SCK__tp_func_rpm_resume -EXPORT_SYMBOL_GPL vmlinux 0xad37da82 get_kernel_pages +EXPORT_SYMBOL_GPL vmlinux 0xad101cfd __vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0xad1a4d29 skb_morph +EXPORT_SYMBOL_GPL vmlinux 0xad2ceeb2 rdev_clear_badblocks +EXPORT_SYMBOL_GPL vmlinux 0xad35f441 iomap_readahead EXPORT_SYMBOL_GPL vmlinux 0xad395dd9 mm_account_pinned_pages -EXPORT_SYMBOL_GPL vmlinux 0xad48342a dev_pm_opp_get_suspend_opp_freq -EXPORT_SYMBOL_GPL vmlinux 0xad4db4ba fixed_phy_set_link_update -EXPORT_SYMBOL_GPL vmlinux 0xad4e5e2d register_net_sysctl EXPORT_SYMBOL_GPL vmlinux 0xad4e6259 remove_cpu -EXPORT_SYMBOL_GPL vmlinux 0xad526fd3 iommu_sva_alloc_pasid -EXPORT_SYMBOL_GPL vmlinux 0xad54064b watchdog_register_device -EXPORT_SYMBOL_GPL vmlinux 0xad55278a __traceiter_tcp_send_reset EXPORT_SYMBOL_GPL vmlinux 0xad5737fc efivar_init -EXPORT_SYMBOL_GPL vmlinux 0xad57f134 blk_mq_alloc_request_hctx +EXPORT_SYMBOL_GPL vmlinux 0xad5b371a skb_clone_tx_timestamp EXPORT_SYMBOL_GPL vmlinux 0xad5f0017 perf_trace_buf_alloc EXPORT_SYMBOL_GPL vmlinux 0xad645234 register_switchdev_notifier -EXPORT_SYMBOL_GPL vmlinux 0xad7b7844 __vfs_setxattr_noperm -EXPORT_SYMBOL_GPL vmlinux 0xad8ccc3a xenbus_dev_cancel -EXPORT_SYMBOL_GPL vmlinux 0xad937c91 regmap_exit -EXPORT_SYMBOL_GPL vmlinux 0xad93b391 crypto_register_alg +EXPORT_SYMBOL_GPL vmlinux 0xad69e0be scsi_build_sense +EXPORT_SYMBOL_GPL vmlinux 0xad7514d1 bpf_prog_add +EXPORT_SYMBOL_GPL vmlinux 0xad8a4d87 sata_lpm_ignore_phy_events +EXPORT_SYMBOL_GPL vmlinux 0xad8b195b iommu_dev_disable_feature +EXPORT_SYMBOL_GPL vmlinux 0xad9182e2 virtqueue_get_vring +EXPORT_SYMBOL_GPL vmlinux 0xad9e5608 cpufreq_unregister_driver EXPORT_SYMBOL_GPL vmlinux 0xada38766 dst_cache_destroy -EXPORT_SYMBOL_GPL vmlinux 0xadbd1f9c skcipher_walk_async -EXPORT_SYMBOL_GPL vmlinux 0xadc3456f device_set_wakeup_capable -EXPORT_SYMBOL_GPL vmlinux 0xadcf1356 dma_wait_for_async_tx -EXPORT_SYMBOL_GPL vmlinux 0xadcf8352 synth_event_add_val -EXPORT_SYMBOL_GPL vmlinux 0xade941cd led_classdev_notify_brightness_hw_changed -EXPORT_SYMBOL_GPL vmlinux 0xadefd30e get_net_ns_by_pid -EXPORT_SYMBOL_GPL vmlinux 0xadf2b1c8 trace_event_buffer_commit +EXPORT_SYMBOL_GPL vmlinux 0xadb4198e iommu_detach_device +EXPORT_SYMBOL_GPL vmlinux 0xadc98a8b gpiochip_irq_map +EXPORT_SYMBOL_GPL vmlinux 0xadcc2605 set_secondary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xadcd9c1c __rio_local_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0xadda9b80 serial8250_init_port +EXPORT_SYMBOL_GPL vmlinux 0xade9d4f9 device_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xadeb34b8 param_ops_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0xadf17cae xfrm_audit_policy_add +EXPORT_SYMBOL_GPL vmlinux 0xadf74fc9 access_process_vm EXPORT_SYMBOL_GPL vmlinux 0xae0ecf40 usb_bus_idr_lock EXPORT_SYMBOL_GPL vmlinux 0xae1051b0 net_cls_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xae1367ef led_init_default_state_get -EXPORT_SYMBOL_GPL vmlinux 0xae173d27 register_wide_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0xae17d63d usb_phy_roothub_alloc -EXPORT_SYMBOL_GPL vmlinux 0xae1a4998 inet_csk_listen_stop -EXPORT_SYMBOL_GPL vmlinux 0xae229f56 irq_chip_enable_parent -EXPORT_SYMBOL_GPL vmlinux 0xae2d175d x86_msi_msg_get_destid +EXPORT_SYMBOL_GPL vmlinux 0xae16e0c6 sfp_register_socket EXPORT_SYMBOL_GPL vmlinux 0xae39f80e dst_cache_init -EXPORT_SYMBOL_GPL vmlinux 0xae472d2f rio_inb_pwrite_handler -EXPORT_SYMBOL_GPL vmlinux 0xae5b4d7d acpi_dev_remove_driver_gpios -EXPORT_SYMBOL_GPL vmlinux 0xae5c17ae regulator_set_ramp_delay_regmap +EXPORT_SYMBOL_GPL vmlinux 0xae5bbfb1 pm_genpd_remove_device EXPORT_SYMBOL_GPL vmlinux 0xae69b1c1 usermodehelper_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0xae772a92 genphy_c45_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0xae7c09e4 cn_add_callback EXPORT_SYMBOL_GPL vmlinux 0xae7c231d mpi_cmp -EXPORT_SYMBOL_GPL vmlinux 0xae7d0b1a __SCK__tp_func_rpm_suspend -EXPORT_SYMBOL_GPL vmlinux 0xae8d12bd bpf_prog_add -EXPORT_SYMBOL_GPL vmlinux 0xae8f2eba __SCK__tp_func_detach_device_from_domain -EXPORT_SYMBOL_GPL vmlinux 0xaea3f2b2 irq_chip_set_type_parent EXPORT_SYMBOL_GPL vmlinux 0xaea83791 call_srcu -EXPORT_SYMBOL_GPL vmlinux 0xaed19d30 spi_alloc_device -EXPORT_SYMBOL_GPL vmlinux 0xaed43a87 crypto_alloc_sync_skcipher -EXPORT_SYMBOL_GPL vmlinux 0xaed7d516 tpm_pm_resume -EXPORT_SYMBOL_GPL vmlinux 0xaedf3998 iomap_bmap +EXPORT_SYMBOL_GPL vmlinux 0xaeadc743 __traceiter_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0xaeb812a5 edac_mc_add_mc_with_groups +EXPORT_SYMBOL_GPL vmlinux 0xaebbe106 uhci_check_and_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0xaf06c2a1 pci_find_next_ht_capability EXPORT_SYMBOL_GPL vmlinux 0xaf076aec nd_fletcher64 EXPORT_SYMBOL_GPL vmlinux 0xaf0b6ba7 blkg_rwstat_init -EXPORT_SYMBOL_GPL vmlinux 0xaf211b55 inet_send_prepare -EXPORT_SYMBOL_GPL vmlinux 0xaf222d2e __tracepoint_tcp_send_reset -EXPORT_SYMBOL_GPL vmlinux 0xaf245167 screen_glyph -EXPORT_SYMBOL_GPL vmlinux 0xaf26471f vfio_pci_core_request +EXPORT_SYMBOL_GPL vmlinux 0xaf0cfa86 blk_steal_bios +EXPORT_SYMBOL_GPL vmlinux 0xaf0eeb77 relay_late_setup_files +EXPORT_SYMBOL_GPL vmlinux 0xaf1bff1e cpufreq_frequency_table_get_index +EXPORT_SYMBOL_GPL vmlinux 0xaf2171c3 ata_timing_compute +EXPORT_SYMBOL_GPL vmlinux 0xaf275692 regmap_raw_write +EXPORT_SYMBOL_GPL vmlinux 0xaf35bc6f iommu_set_fault_handler EXPORT_SYMBOL_GPL vmlinux 0xaf4014ff usb_amd_quirk_pll_check -EXPORT_SYMBOL_GPL vmlinux 0xaf4e333d dev_pm_domain_detach -EXPORT_SYMBOL_GPL vmlinux 0xaf588871 mmu_interval_notifier_insert_locked -EXPORT_SYMBOL_GPL vmlinux 0xaf588bc1 usb_autopm_get_interface_async -EXPORT_SYMBOL_GPL vmlinux 0xaf6a98e5 blk_req_zone_write_trylock +EXPORT_SYMBOL_GPL vmlinux 0xaf4f512f fsnotify_alloc_user_group +EXPORT_SYMBOL_GPL vmlinux 0xaf5261c3 ohci_hub_status_data +EXPORT_SYMBOL_GPL vmlinux 0xaf596003 blk_add_driver_data +EXPORT_SYMBOL_GPL vmlinux 0xaf600c26 reset_control_get_count +EXPORT_SYMBOL_GPL vmlinux 0xaf6f394a led_init_core EXPORT_SYMBOL_GPL vmlinux 0xaf793668 __alloc_percpu_gfp -EXPORT_SYMBOL_GPL vmlinux 0xaf7e9bfa pci_epf_create -EXPORT_SYMBOL_GPL vmlinux 0xaf8044e6 devm_kfree -EXPORT_SYMBOL_GPL vmlinux 0xaf82ed9f fat_attach +EXPORT_SYMBOL_GPL vmlinux 0xaf7ddd4a dev_pm_opp_find_freq_exact EXPORT_SYMBOL_GPL vmlinux 0xaf852873 cpuidle_register_device -EXPORT_SYMBOL_GPL vmlinux 0xaf9fda5b efivar_entry_size -EXPORT_SYMBOL_GPL vmlinux 0xaf9ff3d7 to_nvdimm_bus_dev -EXPORT_SYMBOL_GPL vmlinux 0xafa7126e ata_cable_sata -EXPORT_SYMBOL_GPL vmlinux 0xafb9449a __SCK__tp_func_sched_overutilized_tp -EXPORT_SYMBOL_GPL vmlinux 0xafd1cd08 nf_ipv6_ops +EXPORT_SYMBOL_GPL vmlinux 0xaf9eb782 wm8350_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0xafbbd6bd mmc_regulator_get_supply +EXPORT_SYMBOL_GPL vmlinux 0xafdb508b skb_partial_csum_set EXPORT_SYMBOL_GPL vmlinux 0xafddd545 ata_id_c_string -EXPORT_SYMBOL_GPL vmlinux 0xafe5b855 gpiochip_is_requested -EXPORT_SYMBOL_GPL vmlinux 0xaff2e055 __tracepoint_map -EXPORT_SYMBOL_GPL vmlinux 0xb0032841 __pneigh_lookup -EXPORT_SYMBOL_GPL vmlinux 0xb013a5aa bpf_trace_run2 -EXPORT_SYMBOL_GPL vmlinux 0xb018ff7a dev_pm_domain_attach_by_name +EXPORT_SYMBOL_GPL vmlinux 0xaffc6d68 thermal_add_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0xb00dae51 invalidate_inode_pages2_range +EXPORT_SYMBOL_GPL vmlinux 0xb01c221a pm_clk_init +EXPORT_SYMBOL_GPL vmlinux 0xb01c54b3 pm_clk_add +EXPORT_SYMBOL_GPL vmlinux 0xb02a194c mmu_notifier_range_update_to_read_only EXPORT_SYMBOL_GPL vmlinux 0xb02ac411 register_xenstore_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb03b106c iopf_queue_remove_device -EXPORT_SYMBOL_GPL vmlinux 0xb03f085d bus_get_kset -EXPORT_SYMBOL_GPL vmlinux 0xb052af76 devm_ioremap_uc -EXPORT_SYMBOL_GPL vmlinux 0xb0652c02 __traceiter_napi_poll -EXPORT_SYMBOL_GPL vmlinux 0xb06f6fad iopf_queue_flush_dev +EXPORT_SYMBOL_GPL vmlinux 0xb02d79e9 blk_mq_freeze_queue_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0xb041b325 dma_mmap_noncontiguous EXPORT_SYMBOL_GPL vmlinux 0xb0747ed2 rcu_cpu_stall_suppress EXPORT_SYMBOL_GPL vmlinux 0xb077e70a clk_unprepare -EXPORT_SYMBOL_GPL vmlinux 0xb08cf436 mmu_notifier_range_update_to_read_only -EXPORT_SYMBOL_GPL vmlinux 0xb09714fe class_for_each_device -EXPORT_SYMBOL_GPL vmlinux 0xb097b30b __of_phy_provider_register -EXPORT_SYMBOL_GPL vmlinux 0xb0a32737 usb_control_msg_send -EXPORT_SYMBOL_GPL vmlinux 0xb0aa10e9 device_dma_supported +EXPORT_SYMBOL_GPL vmlinux 0xb082a41f mddev_resume +EXPORT_SYMBOL_GPL vmlinux 0xb0b4235b ata_sas_async_probe EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset -EXPORT_SYMBOL_GPL vmlinux 0xb0bb1ee1 strp_unpause -EXPORT_SYMBOL_GPL vmlinux 0xb0c806af alloc_dax -EXPORT_SYMBOL_GPL vmlinux 0xb0d01f57 usb_set_device_state +EXPORT_SYMBOL_GPL vmlinux 0xb0b86aa5 serial8250_do_get_mctrl +EXPORT_SYMBOL_GPL vmlinux 0xb0b9859d hwspin_lock_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb0c14300 udp_abort EXPORT_SYMBOL_GPL vmlinux 0xb0d1656c gpio_free_array -EXPORT_SYMBOL_GPL vmlinux 0xb0d8e40c vfs_lock_file EXPORT_SYMBOL_GPL vmlinux 0xb0e8e671 xenbus_otherend_changed +EXPORT_SYMBOL_GPL vmlinux 0xb0ef8dfc iommu_device_unregister EXPORT_SYMBOL_GPL vmlinux 0xb0fbb722 clk_fractional_divider_ops -EXPORT_SYMBOL_GPL vmlinux 0xb0ffc159 trace_array_set_clr_event -EXPORT_SYMBOL_GPL vmlinux 0xb102a163 devlink_health_reporter_create +EXPORT_SYMBOL_GPL vmlinux 0xb10726a4 perf_event_release_kernel EXPORT_SYMBOL_GPL vmlinux 0xb10d964d devlink_fmsg_pair_nest_end -EXPORT_SYMBOL_GPL vmlinux 0xb1142239 ncsi_start_dev 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 0xb12c8e18 palmas_ext_control_req_config -EXPORT_SYMBOL_GPL vmlinux 0xb1494ca0 crypto_stats_skcipher_encrypt -EXPORT_SYMBOL_GPL vmlinux 0xb14a83fe balloon_page_list_dequeue -EXPORT_SYMBOL_GPL vmlinux 0xb14ef9b8 devlink_sb_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb14fe05b genphy_c45_read_link -EXPORT_SYMBOL_GPL vmlinux 0xb153f647 dmaengine_desc_set_metadata_len +EXPORT_SYMBOL_GPL vmlinux 0xb12742fa device_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0xb127fb1d bpf_trace_run3 +EXPORT_SYMBOL_GPL vmlinux 0xb13c423d nvdimm_clear_poison +EXPORT_SYMBOL_GPL vmlinux 0xb13d2062 filemap_range_needs_writeback +EXPORT_SYMBOL_GPL vmlinux 0xb14d47ed iomap_zero_range +EXPORT_SYMBOL_GPL vmlinux 0xb14f0762 mptcp_pm_get_add_addr_signal_max +EXPORT_SYMBOL_GPL vmlinux 0xb1565e78 da9052_disable_irq_nosync +EXPORT_SYMBOL_GPL vmlinux 0xb15b2164 gpiochip_is_requested EXPORT_SYMBOL_GPL vmlinux 0xb1647fc2 devlink_info_version_running_put -EXPORT_SYMBOL_GPL vmlinux 0xb169b2a1 irq_chip_set_wake_parent -EXPORT_SYMBOL_GPL vmlinux 0xb177a683 vfs_getxattr -EXPORT_SYMBOL_GPL vmlinux 0xb17d22ce ata_sff_data_xfer32 +EXPORT_SYMBOL_GPL vmlinux 0xb16abb23 pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0xb17ca9d6 rtc_read_time +EXPORT_SYMBOL_GPL vmlinux 0xb183684d i2c_recover_bus EXPORT_SYMBOL_GPL vmlinux 0xb18429eb suspend_device_irqs -EXPORT_SYMBOL_GPL vmlinux 0xb187cc81 add_swap_extent -EXPORT_SYMBOL_GPL vmlinux 0xb19a3c0b dev_coredumpv -EXPORT_SYMBOL_GPL vmlinux 0xb1a4cf9d acpi_processor_get_performance_info +EXPORT_SYMBOL_GPL vmlinux 0xb18947f5 bpf_map_inc_with_uref +EXPORT_SYMBOL_GPL vmlinux 0xb19ca25d ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0xb1ac770c bpf_trace_run11 EXPORT_SYMBOL_GPL vmlinux 0xb1bed25d dpm_resume_start +EXPORT_SYMBOL_GPL vmlinux 0xb1c771e9 iomap_swapfile_activate +EXPORT_SYMBOL_GPL vmlinux 0xb1dbb6b8 virtqueue_get_vring_size EXPORT_SYMBOL_GPL vmlinux 0xb1e25684 __trace_bputs +EXPORT_SYMBOL_GPL vmlinux 0xb1f12395 perf_event_addr_filters_sync +EXPORT_SYMBOL_GPL vmlinux 0xb1f7fb3d fuse_dev_free +EXPORT_SYMBOL_GPL vmlinux 0xb1fb0b64 netdev_walk_all_lower_dev_rcu +EXPORT_SYMBOL_GPL vmlinux 0xb1fb1260 int_active_memcg EXPORT_SYMBOL_GPL vmlinux 0xb1fc1782 pci_speed_string -EXPORT_SYMBOL_GPL vmlinux 0xb1fc9d14 acpi_get_and_request_gpiod -EXPORT_SYMBOL_GPL vmlinux 0xb1ff8516 pwm_lpss_probe EXPORT_SYMBOL_GPL vmlinux 0xb202f0d7 rht_bucket_nested_insert -EXPORT_SYMBOL_GPL vmlinux 0xb20565bc fwnode_property_read_u32_array -EXPORT_SYMBOL_GPL vmlinux 0xb213e081 usb_set_configuration -EXPORT_SYMBOL_GPL vmlinux 0xb21be7c4 pwm_capture +EXPORT_SYMBOL_GPL vmlinux 0xb20a4e27 tty_kclose +EXPORT_SYMBOL_GPL vmlinux 0xb21b2ca1 vfs_submount EXPORT_SYMBOL_GPL vmlinux 0xb2210d64 reset_control_deassert +EXPORT_SYMBOL_GPL vmlinux 0xb22ad8ab vfio_pci_core_read +EXPORT_SYMBOL_GPL vmlinux 0xb2306f15 crypto_unregister_algs +EXPORT_SYMBOL_GPL vmlinux 0xb232f7e8 spi_take_timestamp_pre +EXPORT_SYMBOL_GPL vmlinux 0xb239dfc9 amd_iommu_is_attach_deferred +EXPORT_SYMBOL_GPL vmlinux 0xb23e6d74 xfrm_state_afinfo_get_rcu EXPORT_SYMBOL_GPL vmlinux 0xb2405efc secure_tcp_seq -EXPORT_SYMBOL_GPL vmlinux 0xb2417a27 device_remove_bin_file -EXPORT_SYMBOL_GPL vmlinux 0xb252fa53 phy_package_join +EXPORT_SYMBOL_GPL vmlinux 0xb2415783 clk_hw_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0xb2482b7e regulator_desc_list_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0xb24d4c03 device_store_bool +EXPORT_SYMBOL_GPL vmlinux 0xb25af772 regulator_get_voltage_rdev EXPORT_SYMBOL_GPL vmlinux 0xb26066fe ibft_phys_addr +EXPORT_SYMBOL_GPL vmlinux 0xb265326a inet_ehash_nolisten EXPORT_SYMBOL_GPL vmlinux 0xb26a1add elfcorehdr_addr -EXPORT_SYMBOL_GPL vmlinux 0xb26ea6ae tcp_unregister_ulp -EXPORT_SYMBOL_GPL vmlinux 0xb274460b fb_deferred_io_init +EXPORT_SYMBOL_GPL vmlinux 0xb26c2558 devm_gpio_free +EXPORT_SYMBOL_GPL vmlinux 0xb2728574 pci_set_cacheline_size EXPORT_SYMBOL_GPL vmlinux 0xb285b8f8 xen_in_preemptible_hcall -EXPORT_SYMBOL_GPL vmlinux 0xb294945f balloon_page_list_enqueue EXPORT_SYMBOL_GPL vmlinux 0xb29533ee zs_malloc +EXPORT_SYMBOL_GPL vmlinux 0xb2a25fc7 __traceiter_sched_cpu_capacity_tp +EXPORT_SYMBOL_GPL vmlinux 0xb2bebbdd thermal_zone_device_enable EXPORT_SYMBOL_GPL vmlinux 0xb2c1732e rcu_gp_set_torture_wait -EXPORT_SYMBOL_GPL vmlinux 0xb2c7b610 _proc_mkdir -EXPORT_SYMBOL_GPL vmlinux 0xb2d1d604 sdio_memcpy_toio -EXPORT_SYMBOL_GPL vmlinux 0xb2de32b6 device_del +EXPORT_SYMBOL_GPL vmlinux 0xb2c5062e crypto_grab_ahash +EXPORT_SYMBOL_GPL vmlinux 0xb2dcb7d8 tps65912_device_exit EXPORT_SYMBOL_GPL vmlinux 0xb2de4cf2 clk_gate_ops EXPORT_SYMBOL_GPL vmlinux 0xb2e764e8 suspend_valid_only_mem -EXPORT_SYMBOL_GPL vmlinux 0xb2f66596 vfs_getxattr_alloc EXPORT_SYMBOL_GPL vmlinux 0xb307c909 devlink_fmsg_u64_pair_put -EXPORT_SYMBOL_GPL vmlinux 0xb3149323 replace_page_cache_page -EXPORT_SYMBOL_GPL vmlinux 0xb31a17e5 irq_domain_remove +EXPORT_SYMBOL_GPL vmlinux 0xb3090761 dev_attr_em_message_type +EXPORT_SYMBOL_GPL vmlinux 0xb31953e3 __raw_v4_lookup +EXPORT_SYMBOL_GPL vmlinux 0xb31e2939 xen_remap_pfn EXPORT_SYMBOL_GPL vmlinux 0xb3253ed9 hpet_rtc_timer_init -EXPORT_SYMBOL_GPL vmlinux 0xb32623c2 pci_create_root_bus -EXPORT_SYMBOL_GPL vmlinux 0xb3325361 sched_show_task -EXPORT_SYMBOL_GPL vmlinux 0xb3a8ab4b bsg_job_get -EXPORT_SYMBOL_GPL vmlinux 0xb3af10e0 sock_diag_destroy -EXPORT_SYMBOL_GPL vmlinux 0xb3b964de hvc_remove -EXPORT_SYMBOL_GPL vmlinux 0xb3bfaceb usb_acpi_power_manageable -EXPORT_SYMBOL_GPL vmlinux 0xb3c4118b crypto_register_rng +EXPORT_SYMBOL_GPL vmlinux 0xb35ccbe1 __tracepoint_sched_cpu_capacity_tp +EXPORT_SYMBOL_GPL vmlinux 0xb35ef6e8 regmap_parse_val +EXPORT_SYMBOL_GPL vmlinux 0xb363cab7 skcipher_walk_async +EXPORT_SYMBOL_GPL vmlinux 0xb367159c fixed_phy_register_with_gpiod +EXPORT_SYMBOL_GPL vmlinux 0xb375c782 devfreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0xb387abb7 edac_pci_add_device +EXPORT_SYMBOL_GPL vmlinux 0xb388a9ef pm_runtime_force_resume +EXPORT_SYMBOL_GPL vmlinux 0xb3b7e01f balloon_page_dequeue +EXPORT_SYMBOL_GPL vmlinux 0xb3cb0793 sysfs_update_group +EXPORT_SYMBOL_GPL vmlinux 0xb3d8c803 serial8250_read_char EXPORT_SYMBOL_GPL vmlinux 0xb3e6e60a __traceiter_sched_overutilized_tp -EXPORT_SYMBOL_GPL vmlinux 0xb3f2086b device_initialize -EXPORT_SYMBOL_GPL vmlinux 0xb3f77ef1 tcp_rate_check_app_limited -EXPORT_SYMBOL_GPL vmlinux 0xb4017c76 __static_call_update -EXPORT_SYMBOL_GPL vmlinux 0xb4030d99 __traceiter_block_bio_remap -EXPORT_SYMBOL_GPL vmlinux 0xb40f8583 device_create_with_groups -EXPORT_SYMBOL_GPL vmlinux 0xb43051dc __clocksource_register_scale +EXPORT_SYMBOL_GPL vmlinux 0xb3f0cc98 fscrypt_set_bio_crypt_ctx +EXPORT_SYMBOL_GPL vmlinux 0xb409e8f3 vp_modern_set_features +EXPORT_SYMBOL_GPL vmlinux 0xb41df173 open_related_ns +EXPORT_SYMBOL_GPL vmlinux 0xb422dbd2 devm_regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xb42c273e rio_enable_rx_tx_port EXPORT_SYMBOL_GPL vmlinux 0xb43f9365 ktime_get -EXPORT_SYMBOL_GPL vmlinux 0xb44136f5 iommu_sva_unbind_device -EXPORT_SYMBOL_GPL vmlinux 0xb4428d64 bio_clone_blkg_association EXPORT_SYMBOL_GPL vmlinux 0xb4429b64 acpi_dev_resource_ext_address_space +EXPORT_SYMBOL_GPL vmlinux 0xb44da8a7 hwmon_notify_event EXPORT_SYMBOL_GPL vmlinux 0xb44e18ea audit_enabled -EXPORT_SYMBOL_GPL vmlinux 0xb44eb5c5 kernfs_find_and_get_ns -EXPORT_SYMBOL_GPL vmlinux 0xb45d8e73 inet_hash_connect -EXPORT_SYMBOL_GPL vmlinux 0xb46571d6 devlink_dpipe_table_counter_enabled -EXPORT_SYMBOL_GPL vmlinux 0xb47734f3 xfrm_audit_state_notfound -EXPORT_SYMBOL_GPL vmlinux 0xb48b0760 pinctrl_dev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xb45c1d37 __pm_relax +EXPORT_SYMBOL_GPL vmlinux 0xb460f337 fw_devlink_purge_absent_suppliers +EXPORT_SYMBOL_GPL vmlinux 0xb46f130e dev_pm_clear_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xb48cc28d __pci_reset_function_locked EXPORT_SYMBOL_GPL vmlinux 0xb48f0638 software_node_register -EXPORT_SYMBOL_GPL vmlinux 0xb49d3501 dax_region_put -EXPORT_SYMBOL_GPL vmlinux 0xb4a6d3ba of_pwm_xlate_with_flags -EXPORT_SYMBOL_GPL vmlinux 0xb4b00643 virtqueue_enable_cb +EXPORT_SYMBOL_GPL vmlinux 0xb4a787ed devlink_port_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb4abb016 ata_sas_port_init +EXPORT_SYMBOL_GPL vmlinux 0xb4b15a66 fixup_user_fault EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb4c493ca subsys_interface_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb4d909ee iommu_set_pgtable_quirks -EXPORT_SYMBOL_GPL vmlinux 0xb4e3fbde usb_get_descriptor +EXPORT_SYMBOL_GPL vmlinux 0xb4bdd6b6 __trace_note_message +EXPORT_SYMBOL_GPL vmlinux 0xb4c483be serdev_device_set_tiocm +EXPORT_SYMBOL_GPL vmlinux 0xb4dee005 edac_pci_release_generic_ctl EXPORT_SYMBOL_GPL vmlinux 0xb4ea7cf7 kgdb_connected +EXPORT_SYMBOL_GPL vmlinux 0xb4ec447b serial8250_do_set_mctrl EXPORT_SYMBOL_GPL vmlinux 0xb4eda0da ring_buffer_event_length +EXPORT_SYMBOL_GPL vmlinux 0xb4f4b46c of_reset_control_array_get +EXPORT_SYMBOL_GPL vmlinux 0xb50118e1 ncsi_start_dev EXPORT_SYMBOL_GPL vmlinux 0xb501b2df nd_cmd_dimm_desc -EXPORT_SYMBOL_GPL vmlinux 0xb50b427f pci_device_group +EXPORT_SYMBOL_GPL vmlinux 0xb5025a39 usb_get_maximum_ssp_rate +EXPORT_SYMBOL_GPL vmlinux 0xb5061020 ehci_suspend EXPORT_SYMBOL_GPL vmlinux 0xb510c250 raw_v4_hashinfo +EXPORT_SYMBOL_GPL vmlinux 0xb5171275 ata_host_alloc_pinfo EXPORT_SYMBOL_GPL vmlinux 0xb51fbd64 edac_op_state EXPORT_SYMBOL_GPL vmlinux 0xb520eb79 btree_merge -EXPORT_SYMBOL_GPL vmlinux 0xb52a36aa regulator_bulk_force_disable -EXPORT_SYMBOL_GPL vmlinux 0xb54ccfcc serial8250_do_startup -EXPORT_SYMBOL_GPL vmlinux 0xb55765fa fwnode_graph_get_port_parent -EXPORT_SYMBOL_GPL vmlinux 0xb5673457 ip6_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0xb571445b sysfs_group_change_owner -EXPORT_SYMBOL_GPL vmlinux 0xb5716cd4 rio_map_inb_region -EXPORT_SYMBOL_GPL vmlinux 0xb57fa62a sdio_f0_writeb -EXPORT_SYMBOL_GPL vmlinux 0xb5807225 device_release_driver -EXPORT_SYMBOL_GPL vmlinux 0xb5a675ba badblocks_set -EXPORT_SYMBOL_GPL vmlinux 0xb5a833f2 hrtimer_init_sleeper +EXPORT_SYMBOL_GPL vmlinux 0xb53f282f tpm_get_timeouts +EXPORT_SYMBOL_GPL vmlinux 0xb5400459 devlink_dpipe_action_put +EXPORT_SYMBOL_GPL vmlinux 0xb566cc21 scsi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xb56b38d1 rio_dma_prep_slave_sg +EXPORT_SYMBOL_GPL vmlinux 0xb56cec07 pcie_reset_flr +EXPORT_SYMBOL_GPL vmlinux 0xb57a6655 phy_resolve_aneg_linkmode +EXPORT_SYMBOL_GPL vmlinux 0xb5a0a86d nf_hook_entries_delete_raw EXPORT_SYMBOL_GPL vmlinux 0xb5a83e35 gnttab_setup_auto_xlat_frames EXPORT_SYMBOL_GPL vmlinux 0xb5a8c226 acpi_gsi_to_irq -EXPORT_SYMBOL_GPL vmlinux 0xb5ce80d1 rio_mport_read_config_16 -EXPORT_SYMBOL_GPL vmlinux 0xb5d42ea0 synth_event_trace_start -EXPORT_SYMBOL_GPL vmlinux 0xb5e45631 synth_event_gen_cmd_array_start -EXPORT_SYMBOL_GPL vmlinux 0xb5ef9771 dm_bio_get_target_bio_nr -EXPORT_SYMBOL_GPL vmlinux 0xb6188b67 __list_lru_init +EXPORT_SYMBOL_GPL vmlinux 0xb5b64819 alloc_dax +EXPORT_SYMBOL_GPL vmlinux 0xb5bafd93 __devm_reset_control_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0xb5bde19d pci_epc_mem_exit +EXPORT_SYMBOL_GPL vmlinux 0xb5c33b6b devm_clk_hw_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0xb5cae4b7 xhci_reset_bandwidth +EXPORT_SYMBOL_GPL vmlinux 0xb5cdd866 pci_remove_root_bus +EXPORT_SYMBOL_GPL vmlinux 0xb5d0b84b get_pid_task +EXPORT_SYMBOL_GPL vmlinux 0xb5e7fb47 sysfs_remove_group +EXPORT_SYMBOL_GPL vmlinux 0xb5f18e97 regcache_cache_bypass +EXPORT_SYMBOL_GPL vmlinux 0xb61ad8d0 gpiochip_relres_irq +EXPORT_SYMBOL_GPL vmlinux 0xb61b9391 regulator_map_voltage_iterate EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb63013bb rio_local_get_device_id EXPORT_SYMBOL_GPL vmlinux 0xb6357e53 cpuidle_enable_device -EXPORT_SYMBOL_GPL vmlinux 0xb6380596 regulator_is_enabled_regmap -EXPORT_SYMBOL_GPL vmlinux 0xb63e9ea2 bpfilter_ops EXPORT_SYMBOL_GPL vmlinux 0xb6410433 mpi_addm -EXPORT_SYMBOL_GPL vmlinux 0xb64a8766 fwnode_graph_get_remote_port_parent -EXPORT_SYMBOL_GPL vmlinux 0xb64d85ee uhci_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0xb6510ed9 gpiod_get_array_optional EXPORT_SYMBOL_GPL vmlinux 0xb655f91b pci_epc_get_next_free_bar -EXPORT_SYMBOL_GPL vmlinux 0xb659d640 perf_event_period -EXPORT_SYMBOL_GPL vmlinux 0xb65f425a acpi_device_update_power -EXPORT_SYMBOL_GPL vmlinux 0xb6608a5b phy_pm_runtime_get -EXPORT_SYMBOL_GPL vmlinux 0xb664b193 pm_generic_suspend_late -EXPORT_SYMBOL_GPL vmlinux 0xb668a85f devm_pm_opp_attach_genpd -EXPORT_SYMBOL_GPL vmlinux 0xb675b402 anon_inode_getfile -EXPORT_SYMBOL_GPL vmlinux 0xb67662a6 usb_hcd_unmap_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0xb65b4954 debugfs_print_regs32 +EXPORT_SYMBOL_GPL vmlinux 0xb65c13cc usb_phy_set_charger_current +EXPORT_SYMBOL_GPL vmlinux 0xb662c570 skb_mpls_update_lse +EXPORT_SYMBOL_GPL vmlinux 0xb662d6fd nvmem_cell_read_variable_le_u32 +EXPORT_SYMBOL_GPL vmlinux 0xb66380a8 dev_pm_opp_get_required_pstate EXPORT_SYMBOL_GPL vmlinux 0xb6787346 sfp_unregister_socket +EXPORT_SYMBOL_GPL vmlinux 0xb67acb62 tpm_default_chip EXPORT_SYMBOL_GPL vmlinux 0xb6888188 klp_shadow_get_or_alloc -EXPORT_SYMBOL_GPL vmlinux 0xb68a8a32 regulator_set_soft_start_regmap -EXPORT_SYMBOL_GPL vmlinux 0xb697b8ea platform_unregister_drivers -EXPORT_SYMBOL_GPL vmlinux 0xb6b8bedf pskb_put -EXPORT_SYMBOL_GPL vmlinux 0xb6b99e99 __tracepoint_tcp_bad_csum -EXPORT_SYMBOL_GPL vmlinux 0xb6c33ff9 spi_replace_transfers +EXPORT_SYMBOL_GPL vmlinux 0xb68ce1a4 dev_pm_opp_put_regulators +EXPORT_SYMBOL_GPL vmlinux 0xb68daf65 regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0xb68e1c45 led_get_default_pattern +EXPORT_SYMBOL_GPL vmlinux 0xb690d5be devm_regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xb6969fcb bpf_offload_dev_create +EXPORT_SYMBOL_GPL vmlinux 0xb6bb35a5 phy_led_triggers_unregister EXPORT_SYMBOL_GPL vmlinux 0xb6c5e614 acpi_processor_evaluate_cst +EXPORT_SYMBOL_GPL vmlinux 0xb6d4a36d phy_package_leave +EXPORT_SYMBOL_GPL vmlinux 0xb6e54fbd lp8788_read_byte +EXPORT_SYMBOL_GPL vmlinux 0xb6e59daa __tracepoint_block_unplug EXPORT_SYMBOL_GPL vmlinux 0xb6e6d99d clk_disable EXPORT_SYMBOL_GPL vmlinux 0xb6eabe37 register_kprobes -EXPORT_SYMBOL_GPL vmlinux 0xb6f8780e phy_resolve_aneg_linkmode -EXPORT_SYMBOL_GPL vmlinux 0xb6feedb4 crypto_stats_ahash_final -EXPORT_SYMBOL_GPL vmlinux 0xb7071114 tcp_register_ulp -EXPORT_SYMBOL_GPL vmlinux 0xb7076568 gpiochip_enable_irq -EXPORT_SYMBOL_GPL vmlinux 0xb71b6997 pci_ats_supported -EXPORT_SYMBOL_GPL vmlinux 0xb72c2f3e nfs_ssc_register -EXPORT_SYMBOL_GPL vmlinux 0xb72caccd kstrdup_quotable_cmdline +EXPORT_SYMBOL_GPL vmlinux 0xb6ef7647 vring_create_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0xb701cfe5 ata_host_detach +EXPORT_SYMBOL_GPL vmlinux 0xb7197d09 get_device_system_crosststamp +EXPORT_SYMBOL_GPL vmlinux 0xb71e7d53 devm_namespace_disable +EXPORT_SYMBOL_GPL vmlinux 0xb729eba9 usb_hcd_unmap_urb_for_dma EXPORT_SYMBOL_GPL vmlinux 0xb7329c06 clk_set_phase EXPORT_SYMBOL_GPL vmlinux 0xb73713d7 nvmem_add_cell_lookups -EXPORT_SYMBOL_GPL vmlinux 0xb74673a9 syscon_regmap_lookup_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xb738e3ff platform_get_mem_or_io +EXPORT_SYMBOL_GPL vmlinux 0xb7458868 nvdimm_has_cache EXPORT_SYMBOL_GPL vmlinux 0xb74c31cd wwan_remove_port EXPORT_SYMBOL_GPL vmlinux 0xb75041d1 hv_stimer_legacy_init +EXPORT_SYMBOL_GPL vmlinux 0xb7580df9 usb_disable_lpm EXPORT_SYMBOL_GPL vmlinux 0xb761318b sev_active -EXPORT_SYMBOL_GPL vmlinux 0xb764013e ata_scsi_unlock_native_capacity -EXPORT_SYMBOL_GPL vmlinux 0xb78a0e04 i2c_recover_bus -EXPORT_SYMBOL_GPL vmlinux 0xb793acec devlink_param_driverinit_value_get -EXPORT_SYMBOL_GPL vmlinux 0xb7975a26 rio_register_scan -EXPORT_SYMBOL_GPL vmlinux 0xb7992248 l3mdev_update_flow +EXPORT_SYMBOL_GPL vmlinux 0xb765f118 security_path_symlink +EXPORT_SYMBOL_GPL vmlinux 0xb76a89a5 efivars_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb772c945 register_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xb783c7d1 proc_create_net_single_write +EXPORT_SYMBOL_GPL vmlinux 0xb797d95a bio_release_pages EXPORT_SYMBOL_GPL vmlinux 0xb7a387fc synchronize_rcu_tasks_rude -EXPORT_SYMBOL_GPL vmlinux 0xb7b60b6e edac_get_sysfs_subsys +EXPORT_SYMBOL_GPL vmlinux 0xb7aa97b5 iommu_map_atomic +EXPORT_SYMBOL_GPL vmlinux 0xb7bb7bc4 crypto_register_ahashes EXPORT_SYMBOL_GPL vmlinux 0xb7c69a63 unregister_vmap_purge_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb7ccaf26 regmap_register_patch -EXPORT_SYMBOL_GPL vmlinux 0xb7d25198 gpiod_unexport EXPORT_SYMBOL_GPL vmlinux 0xb7d7c12e hpet_set_alarm_time -EXPORT_SYMBOL_GPL vmlinux 0xb7d858ea blk_insert_cloned_request +EXPORT_SYMBOL_GPL vmlinux 0xb7d7c9e9 pci_device_is_present +EXPORT_SYMBOL_GPL vmlinux 0xb7f2c9f1 regulator_set_pull_down_regmap EXPORT_SYMBOL_GPL vmlinux 0xb7f73ef8 xas_init_marks EXPORT_SYMBOL_GPL vmlinux 0xb7f990e9 rht_bucket_nested -EXPORT_SYMBOL_GPL vmlinux 0xb811b48b debugfs_remove -EXPORT_SYMBOL_GPL vmlinux 0xb81285c4 wbt_enable_default -EXPORT_SYMBOL_GPL vmlinux 0xb8157938 dev_fill_metadata_dst -EXPORT_SYMBOL_GPL vmlinux 0xb81704df dev_pm_qos_expose_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0xb81fe4cf pci_generic_config_write EXPORT_SYMBOL_GPL vmlinux 0xb8273d0b __wake_up_sync EXPORT_SYMBOL_GPL vmlinux 0xb847585f is_hash_blacklisted -EXPORT_SYMBOL_GPL vmlinux 0xb84f898e __traceiter_block_bio_complete -EXPORT_SYMBOL_GPL vmlinux 0xb869c4d3 pm_genpd_init -EXPORT_SYMBOL_GPL vmlinux 0xb86f4edf mnt_want_write_file -EXPORT_SYMBOL_GPL vmlinux 0xb8833893 pinctrl_dev_get_devname -EXPORT_SYMBOL_GPL vmlinux 0xb88425a4 xen_find_device_domain_owner -EXPORT_SYMBOL_GPL vmlinux 0xb88672d2 handle_untracked_irq +EXPORT_SYMBOL_GPL vmlinux 0xb84a372c __irq_domain_alloc_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xb85279e6 iomap_readpage +EXPORT_SYMBOL_GPL vmlinux 0xb85a35a4 subsys_find_device_by_id +EXPORT_SYMBOL_GPL vmlinux 0xb867c3fc da9052_adc_manual_read +EXPORT_SYMBOL_GPL vmlinux 0xb87150ea __traceiter_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0xb87f40fe cppc_set_enable +EXPORT_SYMBOL_GPL vmlinux 0xb88937de hsu_dma_get_status EXPORT_SYMBOL_GPL vmlinux 0xb88bc47e arch_apei_report_mem_error +EXPORT_SYMBOL_GPL vmlinux 0xb88d820c regulator_set_voltage_time EXPORT_SYMBOL_GPL vmlinux 0xb88dbfce irq_set_irqchip_state -EXPORT_SYMBOL_GPL vmlinux 0xb892c20d regcache_mark_dirty +EXPORT_SYMBOL_GPL vmlinux 0xb896bb1e cpu_device_create EXPORT_SYMBOL_GPL vmlinux 0xb89e69b1 jump_label_update_timeout -EXPORT_SYMBOL_GPL vmlinux 0xb8a1e676 blk_trace_startstop -EXPORT_SYMBOL_GPL vmlinux 0xb8a40c78 __traceiter_fdb_delete -EXPORT_SYMBOL_GPL vmlinux 0xb8a8e1d8 device_set_node +EXPORT_SYMBOL_GPL vmlinux 0xb89eb6a3 genphy_c45_pma_setup_forced EXPORT_SYMBOL_GPL vmlinux 0xb8b2b1f7 mce_register_decode_chain -EXPORT_SYMBOL_GPL vmlinux 0xb8c67da0 platform_device_add_data -EXPORT_SYMBOL_GPL vmlinux 0xb8c6b140 ata_port_schedule_eh -EXPORT_SYMBOL_GPL vmlinux 0xb8cbd58f usb_enable_intel_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0xb8c450b6 spi_mem_driver_register_with_owner EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put -EXPORT_SYMBOL_GPL vmlinux 0xb8d32344 dev_fill_forward_path -EXPORT_SYMBOL_GPL vmlinux 0xb8df3393 pinctrl_add_gpio_range -EXPORT_SYMBOL_GPL vmlinux 0xb8eda953 pci_epc_mem_init +EXPORT_SYMBOL_GPL vmlinux 0xb8cddd9b inet_twsk_put +EXPORT_SYMBOL_GPL vmlinux 0xb8d081b3 thermal_zone_get_temp +EXPORT_SYMBOL_GPL vmlinux 0xb8e37e9c fscrypt_prepare_new_inode +EXPORT_SYMBOL_GPL vmlinux 0xb8eff640 pm_generic_poweroff_noirq EXPORT_SYMBOL_GPL vmlinux 0xb8f11603 idr_alloc -EXPORT_SYMBOL_GPL vmlinux 0xb8fd4be1 platform_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb8fea15f sock_diag_save_cookie -EXPORT_SYMBOL_GPL vmlinux 0xb90b3c1f cgroup_get_from_fd -EXPORT_SYMBOL_GPL vmlinux 0xb90fc8df regmap_async_complete +EXPORT_SYMBOL_GPL vmlinux 0xb8f8a5c8 tpm_transmit_cmd +EXPORT_SYMBOL_GPL vmlinux 0xb8f9ea36 device_set_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0xb8fcc798 mddev_suspend EXPORT_SYMBOL_GPL vmlinux 0xb912560d static_key_disable -EXPORT_SYMBOL_GPL vmlinux 0xb9278ae4 devm_clk_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0xb937541f devm_kmalloc -EXPORT_SYMBOL_GPL vmlinux 0xb93bebb8 bpf_trace_run3 -EXPORT_SYMBOL_GPL vmlinux 0xb94ecd4c blk_queue_write_cache +EXPORT_SYMBOL_GPL vmlinux 0xb922a2ee pci_pr3_present +EXPORT_SYMBOL_GPL vmlinux 0xb93a64f5 dma_alloc_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0xb93eaaea __lock_page_killable +EXPORT_SYMBOL_GPL vmlinux 0xb944436f of_devfreq_cooling_register_power +EXPORT_SYMBOL_GPL vmlinux 0xb9467689 watchdog_set_last_hw_keepalive EXPORT_SYMBOL_GPL vmlinux 0xb9681621 xdp_do_flush -EXPORT_SYMBOL_GPL vmlinux 0xb9686250 iommu_report_device_fault -EXPORT_SYMBOL_GPL vmlinux 0xb97fefe8 pwm_set_chip_data -EXPORT_SYMBOL_GPL vmlinux 0xb983c675 skb_copy_ubufs +EXPORT_SYMBOL_GPL vmlinux 0xb96fe365 relay_close +EXPORT_SYMBOL_GPL vmlinux 0xb97b019f bpfilter_umh_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xb97b5f40 efivar_entry_delete EXPORT_SYMBOL_GPL vmlinux 0xb9852d11 __traceiter_mc_event EXPORT_SYMBOL_GPL vmlinux 0xb98bb315 phy_gbit_fibre_features -EXPORT_SYMBOL_GPL vmlinux 0xb994c0c8 devm_fwnode_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0xb996a1b5 regulator_bulk_set_supply_names -EXPORT_SYMBOL_GPL vmlinux 0xb9a293b8 validate_xmit_xfrm -EXPORT_SYMBOL_GPL vmlinux 0xb9a85a99 sk_msg_free -EXPORT_SYMBOL_GPL vmlinux 0xb9b2b766 inet6_compat_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xb99d2e0e device_get_named_child_node EXPORT_SYMBOL_GPL vmlinux 0xb9b9df41 usb_amd_dev_put +EXPORT_SYMBOL_GPL vmlinux 0xb9bac1a5 phy_create_lookup +EXPORT_SYMBOL_GPL vmlinux 0xb9bc3576 power_supply_get_property EXPORT_SYMBOL_GPL vmlinux 0xb9c16f51 hv_max_vp_index EXPORT_SYMBOL_GPL vmlinux 0xb9c425de register_syscore_ops -EXPORT_SYMBOL_GPL vmlinux 0xb9c7c909 get_user_pages_fast EXPORT_SYMBOL_GPL vmlinux 0xb9d025c9 llist_del_first -EXPORT_SYMBOL_GPL vmlinux 0xb9d75846 virtqueue_get_avail_addr +EXPORT_SYMBOL_GPL vmlinux 0xb9d26788 spi_bus_lock +EXPORT_SYMBOL_GPL vmlinux 0xb9d8af4d ehci_adjust_port_wakeup_flags +EXPORT_SYMBOL_GPL vmlinux 0xb9edec6a posix_acl_default_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0xb9f10cb6 fib_nl_delrule EXPORT_SYMBOL_GPL vmlinux 0xba01ec83 hv_stimer_global_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xba02ca46 platform_get_irq_byname EXPORT_SYMBOL_GPL vmlinux 0xba057786 kernel_read_file_from_path_initns -EXPORT_SYMBOL_GPL vmlinux 0xba0f081f acpi_subsys_suspend -EXPORT_SYMBOL_GPL vmlinux 0xba18f180 bind_interdomain_evtchn_to_irqhandler_lateeoi +EXPORT_SYMBOL_GPL vmlinux 0xba089699 xenbus_grant_ring +EXPORT_SYMBOL_GPL vmlinux 0xba0afe5e __of_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0xba191009 pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0xba199410 fwnode_count_parents +EXPORT_SYMBOL_GPL vmlinux 0xba1e922b trace_array_printk EXPORT_SYMBOL_GPL vmlinux 0xba220db7 __wake_up_sync_key -EXPORT_SYMBOL_GPL vmlinux 0xba28aaa3 fat_update_time +EXPORT_SYMBOL_GPL vmlinux 0xba245bea fat_build_inode EXPORT_SYMBOL_GPL vmlinux 0xba2b7f64 cpufreq_generic_get -EXPORT_SYMBOL_GPL vmlinux 0xba622422 devm_pinctrl_register -EXPORT_SYMBOL_GPL vmlinux 0xba654497 crypto_alloc_kpp -EXPORT_SYMBOL_GPL vmlinux 0xba66f6da xen_pci_frontend -EXPORT_SYMBOL_GPL vmlinux 0xba68f60c pci_sriov_set_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0xba359043 blkcg_root_css +EXPORT_SYMBOL_GPL vmlinux 0xba39a59a pm_clk_destroy +EXPORT_SYMBOL_GPL vmlinux 0xba3a8afb devm_pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0xba3c7d4c crypto_hash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0xba54c287 pm_genpd_remove +EXPORT_SYMBOL_GPL vmlinux 0xba64a09c ata_cable_unknown +EXPORT_SYMBOL_GPL vmlinux 0xba6d6da0 udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xba7d0245 sk_free_unlock_clone +EXPORT_SYMBOL_GPL vmlinux 0xba81de94 vchan_find_desc EXPORT_SYMBOL_GPL vmlinux 0xba82f246 uv_bios_install_heap -EXPORT_SYMBOL_GPL vmlinux 0xbab3394b iommu_dev_enable_feature -EXPORT_SYMBOL_GPL vmlinux 0xbab9a334 pci_find_next_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0xba8a9a19 sdio_writesb +EXPORT_SYMBOL_GPL vmlinux 0xba8e813b kthread_park +EXPORT_SYMBOL_GPL vmlinux 0xbab9713a simple_attr_write EXPORT_SYMBOL_GPL vmlinux 0xbab9a9f0 maxim_charger_currents -EXPORT_SYMBOL_GPL vmlinux 0xbaca0458 rtnl_af_register +EXPORT_SYMBOL_GPL vmlinux 0xbab9eb30 ip6_input +EXPORT_SYMBOL_GPL vmlinux 0xbabb5491 input_class +EXPORT_SYMBOL_GPL vmlinux 0xbabeb0e7 tty_buffer_set_limit +EXPORT_SYMBOL_GPL vmlinux 0xbac49158 __SCK__tp_func_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0xbaccc6a7 ata_port_desc +EXPORT_SYMBOL_GPL vmlinux 0xbacf698c devlink_params_unpublish EXPORT_SYMBOL_GPL vmlinux 0xbaf22757 kvfree_call_rcu +EXPORT_SYMBOL_GPL vmlinux 0xbaf34f05 rio_unregister_mport EXPORT_SYMBOL_GPL vmlinux 0xbaf6850c fsnotify_wait_marks_destroyed EXPORT_SYMBOL_GPL vmlinux 0xbaf9d785 __tss_limit_invalid -EXPORT_SYMBOL_GPL vmlinux 0xbaff9af7 i2c_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xbb04cb16 fib6_new_table +EXPORT_SYMBOL_GPL vmlinux 0xbb08e511 ipv4_sk_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0xbb0ab47b debug_locks EXPORT_SYMBOL_GPL vmlinux 0xbb0b25d2 register_xenbus_watch -EXPORT_SYMBOL_GPL vmlinux 0xbb1bc2c1 irq_domain_associate -EXPORT_SYMBOL_GPL vmlinux 0xbb1d7d47 iommu_group_remove_device -EXPORT_SYMBOL_GPL vmlinux 0xbb205ee0 hvc_instantiate -EXPORT_SYMBOL_GPL vmlinux 0xbb22d3cc __traceiter_devlink_hwerr -EXPORT_SYMBOL_GPL vmlinux 0xbb50460c perf_event_sysfs_show -EXPORT_SYMBOL_GPL vmlinux 0xbb53bab1 usb_phy_roothub_suspend +EXPORT_SYMBOL_GPL vmlinux 0xbb23769d inet_csk_get_port +EXPORT_SYMBOL_GPL vmlinux 0xbb25b8c8 splice_to_pipe +EXPORT_SYMBOL_GPL vmlinux 0xbb262a50 bpf_prog_get_type_dev +EXPORT_SYMBOL_GPL vmlinux 0xbb276269 device_property_present +EXPORT_SYMBOL_GPL vmlinux 0xbb2d4bf4 cpufreq_disable_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0xbb31af4d unwind_get_return_address +EXPORT_SYMBOL_GPL vmlinux 0xbb3bec78 fib_rules_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbb4b2cef devm_request_pci_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0xbb5136e3 sock_diag_destroy EXPORT_SYMBOL_GPL vmlinux 0xbb5598ce get_llc_id -EXPORT_SYMBOL_GPL vmlinux 0xbb5c5b9a led_trigger_blink -EXPORT_SYMBOL_GPL vmlinux 0xbb641579 __regmap_init -EXPORT_SYMBOL_GPL vmlinux 0xbb66123a desc_to_gpio EXPORT_SYMBOL_GPL vmlinux 0xbb6a3cbd devlink_fmsg_arr_pair_nest_start +EXPORT_SYMBOL_GPL vmlinux 0xbb6dc668 posix_acl_access_xattr_handler EXPORT_SYMBOL_GPL vmlinux 0xbb6f025a asymmetric_key_generate_id EXPORT_SYMBOL_GPL vmlinux 0xbb7195a5 xdp_warn -EXPORT_SYMBOL_GPL vmlinux 0xbb80a6c1 uprobe_register_refctr -EXPORT_SYMBOL_GPL vmlinux 0xbb87b5b2 simple_attr_read -EXPORT_SYMBOL_GPL vmlinux 0xbb8d0c7b hwspin_lock_free +EXPORT_SYMBOL_GPL vmlinux 0xbb7a266a exportfs_encode_fh +EXPORT_SYMBOL_GPL vmlinux 0xbb8dd7fc __traceiter_neigh_timer_handler +EXPORT_SYMBOL_GPL vmlinux 0xbb8ea836 crypto_ahash_setkey EXPORT_SYMBOL_GPL vmlinux 0xbb93eec5 ioasid_alloc -EXPORT_SYMBOL_GPL vmlinux 0xbb98d397 ehci_resume +EXPORT_SYMBOL_GPL vmlinux 0xbb964362 devm_create_dev_dax EXPORT_SYMBOL_GPL vmlinux 0xbbb98859 edid_info -EXPORT_SYMBOL_GPL vmlinux 0xbbdf6656 irq_domain_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0xbbc5d232 phy_exit +EXPORT_SYMBOL_GPL vmlinux 0xbbc7c123 led_classdev_register_ext +EXPORT_SYMBOL_GPL vmlinux 0xbbe13ae7 iopf_queue_flush_dev EXPORT_SYMBOL_GPL vmlinux 0xbbe56404 sprint_OID +EXPORT_SYMBOL_GPL vmlinux 0xbbe7f964 rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbbeb0390 pm_runtime_irq_safe +EXPORT_SYMBOL_GPL vmlinux 0xbbf0d44f transport_add_device +EXPORT_SYMBOL_GPL vmlinux 0xbbf31862 __netdev_watchdog_up EXPORT_SYMBOL_GPL vmlinux 0xbbf4dfbe phy_basic_t1_features -EXPORT_SYMBOL_GPL vmlinux 0xbbfba2b3 tpm_get_random -EXPORT_SYMBOL_GPL vmlinux 0xbc03b9a9 mbox_free_channel -EXPORT_SYMBOL_GPL vmlinux 0xbc05d194 rtc_set_alarm -EXPORT_SYMBOL_GPL vmlinux 0xbc194743 i2c_dw_configure_master -EXPORT_SYMBOL_GPL vmlinux 0xbc19c94f devm_pinctrl_put -EXPORT_SYMBOL_GPL vmlinux 0xbc26dd9e pm_runtime_set_autosuspend_delay -EXPORT_SYMBOL_GPL vmlinux 0xbc35045c ata_dev_set_feature -EXPORT_SYMBOL_GPL vmlinux 0xbc37debb blk_update_request +EXPORT_SYMBOL_GPL vmlinux 0xbbfdde49 ehci_reset +EXPORT_SYMBOL_GPL vmlinux 0xbc01900f xenbus_watch_pathfmt +EXPORT_SYMBOL_GPL vmlinux 0xbc114e42 iomap_fiemap EXPORT_SYMBOL_GPL vmlinux 0xbc3f2cb0 timecounter_cyc2time -EXPORT_SYMBOL_GPL vmlinux 0xbc479595 fat_search_long -EXPORT_SYMBOL_GPL vmlinux 0xbc4bdd4b tps6586x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0xbc4942c9 gpiod_get_array_value EXPORT_SYMBOL_GPL vmlinux 0xbc4e24bb copy_mc_to_kernel -EXPORT_SYMBOL_GPL vmlinux 0xbc52cb92 ata_link_next -EXPORT_SYMBOL_GPL vmlinux 0xbc5ec65a pci_bus_max_busnr EXPORT_SYMBOL_GPL vmlinux 0xbc60dc37 cpufreq_show_cpus -EXPORT_SYMBOL_GPL vmlinux 0xbc65506b __xenbus_register_frontend -EXPORT_SYMBOL_GPL vmlinux 0xbc69d00d da903x_unregister_notifier EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0xbc8c87d9 report_iommu_fault -EXPORT_SYMBOL_GPL vmlinux 0xbc9319c9 led_init_core +EXPORT_SYMBOL_GPL vmlinux 0xbc8b8836 iommu_device_sysfs_remove EXPORT_SYMBOL_GPL vmlinux 0xbc9b8588 ehci_cf_port_reset_rwsem -EXPORT_SYMBOL_GPL vmlinux 0xbca09225 vfs_setxattr +EXPORT_SYMBOL_GPL vmlinux 0xbcb29169 irq_find_matching_fwspec +EXPORT_SYMBOL_GPL vmlinux 0xbcb2c2a4 devm_device_remove_group EXPORT_SYMBOL_GPL vmlinux 0xbcb838a1 amd_flush_garts -EXPORT_SYMBOL_GPL vmlinux 0xbcbeb76c __traceiter_rpm_resume EXPORT_SYMBOL_GPL vmlinux 0xbcc15e75 ktime_get_coarse_with_offset -EXPORT_SYMBOL_GPL vmlinux 0xbcc1e207 pm_runtime_get_if_active EXPORT_SYMBOL_GPL vmlinux 0xbccfd4d8 register_oldmem_pfn_is_ram -EXPORT_SYMBOL_GPL vmlinux 0xbcd824d1 udp4_hwcsum -EXPORT_SYMBOL_GPL vmlinux 0xbcd88c39 dma_alloc_noncontiguous -EXPORT_SYMBOL_GPL vmlinux 0xbcdb5d1a tty_kclose EXPORT_SYMBOL_GPL vmlinux 0xbcdd5b99 iommu_group_set_name -EXPORT_SYMBOL_GPL vmlinux 0xbcecca94 proc_create_net_single_write +EXPORT_SYMBOL_GPL vmlinux 0xbce02a04 phy_init EXPORT_SYMBOL_GPL vmlinux 0xbcf1f0e6 zs_create_pool -EXPORT_SYMBOL_GPL vmlinux 0xbd090654 iommu_sva_find -EXPORT_SYMBOL_GPL vmlinux 0xbd120ae1 __class_register -EXPORT_SYMBOL_GPL vmlinux 0xbd168124 regmap_get_val_endian -EXPORT_SYMBOL_GPL vmlinux 0xbd1e640e events_sysfs_show -EXPORT_SYMBOL_GPL vmlinux 0xbd2a0020 scsi_host_busy_iter -EXPORT_SYMBOL_GPL vmlinux 0xbd2e497b pci_epf_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0xbd33782f dma_vmap_noncontiguous -EXPORT_SYMBOL_GPL vmlinux 0xbd37eefa dev_err_probe -EXPORT_SYMBOL_GPL vmlinux 0xbd3a4509 blkdev_report_zones +EXPORT_SYMBOL_GPL vmlinux 0xbd05ab49 css_next_descendant_pre +EXPORT_SYMBOL_GPL vmlinux 0xbd0d674b fsverity_prepare_setattr +EXPORT_SYMBOL_GPL vmlinux 0xbd207e84 pci_load_and_free_saved_state +EXPORT_SYMBOL_GPL vmlinux 0xbd32d380 crypto_register_algs +EXPORT_SYMBOL_GPL vmlinux 0xbd399ddb nvdimm_to_bus EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq -EXPORT_SYMBOL_GPL vmlinux 0xbd705a90 set_online_page_callback -EXPORT_SYMBOL_GPL vmlinux 0xbd752d0e ata_scsi_dma_need_drain +EXPORT_SYMBOL_GPL vmlinux 0xbd59916e device_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0xbd5f0630 skb_defer_rx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0xbd6054a6 icc_enable +EXPORT_SYMBOL_GPL vmlinux 0xbd624b7c kernel_kobj +EXPORT_SYMBOL_GPL vmlinux 0xbd758b6e vp_modern_get_features EXPORT_SYMBOL_GPL vmlinux 0xbd7aaaee add_memory -EXPORT_SYMBOL_GPL vmlinux 0xbd973858 switchdev_port_attr_set +EXPORT_SYMBOL_GPL vmlinux 0xbd934286 tty_ldisc_receive_buf EXPORT_SYMBOL_GPL vmlinux 0xbd99e873 __SCT__tp_func_cpu_idle -EXPORT_SYMBOL_GPL vmlinux 0xbd9afe1d netlink_strict_get_check +EXPORT_SYMBOL_GPL vmlinux 0xbd9b99df ata_cable_ignore +EXPORT_SYMBOL_GPL vmlinux 0xbda262de fscrypt_ioctl_remove_key_all_users +EXPORT_SYMBOL_GPL vmlinux 0xbda73f0b inode_congested +EXPORT_SYMBOL_GPL vmlinux 0xbdab58be wakeup_sources_walk_start +EXPORT_SYMBOL_GPL vmlinux 0xbdae2246 ptp_parse_header EXPORT_SYMBOL_GPL vmlinux 0xbdb2217d hv_is_isolation_supported EXPORT_SYMBOL_GPL vmlinux 0xbdb2dfd5 uv_bios_reserved_page_pa -EXPORT_SYMBOL_GPL vmlinux 0xbdc0f34e xdp_master_redirect -EXPORT_SYMBOL_GPL vmlinux 0xbddf11eb ata_bmdma_port_start -EXPORT_SYMBOL_GPL vmlinux 0xbdf12e6e fat_truncate_time -EXPORT_SYMBOL_GPL vmlinux 0xbe172dfe unregister_virtio_driver -EXPORT_SYMBOL_GPL vmlinux 0xbe19e192 percpu_up_write -EXPORT_SYMBOL_GPL vmlinux 0xbe1e4a27 __mnt_is_readonly -EXPORT_SYMBOL_GPL vmlinux 0xbe263612 usb_unpoison_urb -EXPORT_SYMBOL_GPL vmlinux 0xbe27c06e devm_devfreq_event_remove_edev -EXPORT_SYMBOL_GPL vmlinux 0xbe2bddf8 crypto_shash_tfm_digest +EXPORT_SYMBOL_GPL vmlinux 0xbdb487b6 blk_mq_freeze_queue +EXPORT_SYMBOL_GPL vmlinux 0xbdf0d3c6 lwtunnel_encap_add_ops +EXPORT_SYMBOL_GPL vmlinux 0xbdf85834 iommu_attach_group +EXPORT_SYMBOL_GPL vmlinux 0xbe0d9b51 devm_hwspin_lock_free +EXPORT_SYMBOL_GPL vmlinux 0xbe0e0fac devlink_region_snapshot_id_put +EXPORT_SYMBOL_GPL vmlinux 0xbe51634b sata_pmp_qc_defer_cmd_switch EXPORT_SYMBOL_GPL vmlinux 0xbe5c888b crypto_chain -EXPORT_SYMBOL_GPL vmlinux 0xbe5f7844 __tracepoint_extlog_mem_event +EXPORT_SYMBOL_GPL vmlinux 0xbe615a3e iommu_dev_feature_enabled EXPORT_SYMBOL_GPL vmlinux 0xbe65e182 max_cswd_read_retries EXPORT_SYMBOL_GPL vmlinux 0xbe687e88 wake_up_all_idle_cpus +EXPORT_SYMBOL_GPL vmlinux 0xbe69c23a crypto_unregister_alg EXPORT_SYMBOL_GPL vmlinux 0xbe6d43d7 ioasid_put -EXPORT_SYMBOL_GPL vmlinux 0xbe72294f shmem_file_setup_with_mnt -EXPORT_SYMBOL_GPL vmlinux 0xbe733d5e spi_bus_unlock -EXPORT_SYMBOL_GPL vmlinux 0xbe740e0b irq_setup_generic_chip EXPORT_SYMBOL_GPL vmlinux 0xbe744257 efi_get_embedded_fw -EXPORT_SYMBOL_GPL vmlinux 0xbe7a0001 tun_get_tx_ring EXPORT_SYMBOL_GPL vmlinux 0xbe9a83d5 dw_pcie_write EXPORT_SYMBOL_GPL vmlinux 0xbea5ff1e static_key_initialized -EXPORT_SYMBOL_GPL vmlinux 0xbeadeecb iomap_dio_rw -EXPORT_SYMBOL_GPL vmlinux 0xbeb15e11 pci_enable_ats -EXPORT_SYMBOL_GPL vmlinux 0xbeb39a77 tty_port_link_device -EXPORT_SYMBOL_GPL vmlinux 0xbeb60146 blk_queue_set_zoned -EXPORT_SYMBOL_GPL vmlinux 0xbec13e6b adp5520_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xbeab3213 crypto_shash_alg_has_setkey +EXPORT_SYMBOL_GPL vmlinux 0xbeb3b298 balloon_aops +EXPORT_SYMBOL_GPL vmlinux 0xbeb3cfec dev_pm_qos_update_user_latency_tolerance EXPORT_SYMBOL_GPL vmlinux 0xbec66c3a __apei_exec_run -EXPORT_SYMBOL_GPL vmlinux 0xbec8ad40 mmu_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0xbecadd31 usb_block_urb -EXPORT_SYMBOL_GPL vmlinux 0xbed3753f devlink_resources_unregister -EXPORT_SYMBOL_GPL vmlinux 0xbedb5bdc dma_buf_export -EXPORT_SYMBOL_GPL vmlinux 0xbee9583e thermal_zone_get_temp -EXPORT_SYMBOL_GPL vmlinux 0xbef74985 mmc_regulator_set_ocr -EXPORT_SYMBOL_GPL vmlinux 0xbefac2f2 ip6_input -EXPORT_SYMBOL_GPL vmlinux 0xbf01d827 klp_enable_patch -EXPORT_SYMBOL_GPL vmlinux 0xbf03e0f4 sch_frag_xmit_hook +EXPORT_SYMBOL_GPL vmlinux 0xbedef698 fat_attach +EXPORT_SYMBOL_GPL vmlinux 0xbef129e1 __SCK__tp_func_cpu_frequency +EXPORT_SYMBOL_GPL vmlinux 0xbefe027c acpi_subsys_suspend_late EXPORT_SYMBOL_GPL vmlinux 0xbf041102 register_vt_notifier -EXPORT_SYMBOL_GPL vmlinux 0xbf0cdaa3 pci_epc_get_msix +EXPORT_SYMBOL_GPL vmlinux 0xbf067f42 sdio_release_irq +EXPORT_SYMBOL_GPL vmlinux 0xbf118c55 do_take_over_console +EXPORT_SYMBOL_GPL vmlinux 0xbf13dcb9 spi_busnum_to_master EXPORT_SYMBOL_GPL vmlinux 0xbf165dec __SCT__tp_func_pelt_se_tp -EXPORT_SYMBOL_GPL vmlinux 0xbf2f2fdf __skb_get_hash_symmetric -EXPORT_SYMBOL_GPL vmlinux 0xbf3cb7b1 pci_check_and_unmask_intx -EXPORT_SYMBOL_GPL vmlinux 0xbf5ec694 crypto_register_rngs -EXPORT_SYMBOL_GPL vmlinux 0xbf5ed004 splice_to_pipe -EXPORT_SYMBOL_GPL vmlinux 0xbf7fd2af unregister_virtio_device -EXPORT_SYMBOL_GPL vmlinux 0xbfa931fe devlink_dpipe_table_register -EXPORT_SYMBOL_GPL vmlinux 0xbfab2036 switchdev_handle_fdb_del_to_device -EXPORT_SYMBOL_GPL vmlinux 0xbfabeb27 component_unbind_all -EXPORT_SYMBOL_GPL vmlinux 0xbfb371b0 xenbus_probe_node -EXPORT_SYMBOL_GPL vmlinux 0xbfb55b27 platform_find_device_by_driver +EXPORT_SYMBOL_GPL vmlinux 0xbf54c4b5 blkg_conf_prep +EXPORT_SYMBOL_GPL vmlinux 0xbf570335 sysfs_group_change_owner +EXPORT_SYMBOL_GPL vmlinux 0xbf67a145 devm_free_pages +EXPORT_SYMBOL_GPL vmlinux 0xbf6f964a nd_region_dev +EXPORT_SYMBOL_GPL vmlinux 0xbf76d369 usb_hcd_platform_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xbf855eaa cpufreq_enable_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0xbf9a3e05 __SCK__tp_func_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0xbf9c5f2e nvmem_cell_read_u64 EXPORT_SYMBOL_GPL vmlinux 0xbfbc5434 pciserial_resume_ports -EXPORT_SYMBOL_GPL vmlinux 0xbfe2c6b4 pm_generic_freeze_noirq +EXPORT_SYMBOL_GPL vmlinux 0xbfc4f58e sk_msg_is_readable EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control +EXPORT_SYMBOL_GPL vmlinux 0xbfe7ac17 crypto_shash_finup EXPORT_SYMBOL_GPL vmlinux 0xbfed2cd9 __wait_rcu_gp -EXPORT_SYMBOL_GPL vmlinux 0xbff8f8ef tracepoint_probe_register_prio_may_exist -EXPORT_SYMBOL_GPL vmlinux 0xc021ddc1 vfio_pci_core_finish_enable -EXPORT_SYMBOL_GPL vmlinux 0xc0310dcf css_next_descendant_pre -EXPORT_SYMBOL_GPL vmlinux 0xc039dc1b usb_find_interface -EXPORT_SYMBOL_GPL vmlinux 0xc03c85e3 skb_splice_bits -EXPORT_SYMBOL_GPL vmlinux 0xc0400573 relay_switch_subbuf -EXPORT_SYMBOL_GPL vmlinux 0xc04c1e24 __traceiter_detach_device_from_domain -EXPORT_SYMBOL_GPL vmlinux 0xc06a880a regmap_test_bits -EXPORT_SYMBOL_GPL vmlinux 0xc089d24a rio_local_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0xbff0ccec dev_pm_opp_get_suspend_opp_freq +EXPORT_SYMBOL_GPL vmlinux 0xbffc6f83 __hwspin_trylock +EXPORT_SYMBOL_GPL vmlinux 0xbffd8191 nd_cmd_in_size +EXPORT_SYMBOL_GPL vmlinux 0xc002012b tty_buffer_unlock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xc0040e4a dma_buf_end_cpu_access +EXPORT_SYMBOL_GPL vmlinux 0xc01067b1 __tracepoint_mc_event +EXPORT_SYMBOL_GPL vmlinux 0xc03e8a5c switchdev_handle_port_obj_del +EXPORT_SYMBOL_GPL vmlinux 0xc0451e82 con_debug_enter +EXPORT_SYMBOL_GPL vmlinux 0xc0502706 rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc0621142 tps6586x_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0xc06652c3 tpm_chip_stop +EXPORT_SYMBOL_GPL vmlinux 0xc07a3ca6 sock_map_close +EXPORT_SYMBOL_GPL vmlinux 0xc0895ae6 dev_pm_opp_put_clkname +EXPORT_SYMBOL_GPL vmlinux 0xc0898507 ip6_push_pending_frames EXPORT_SYMBOL_GPL vmlinux 0xc08bbce6 irq_get_percpu_devid_partition EXPORT_SYMBOL_GPL vmlinux 0xc090c376 net_selftest_get_strings -EXPORT_SYMBOL_GPL vmlinux 0xc0921b60 __SCK__tp_func_neigh_update_done -EXPORT_SYMBOL_GPL vmlinux 0xc09670c0 dev_pm_put_subsys_data EXPORT_SYMBOL_GPL vmlinux 0xc0a96e14 rcu_gp_is_expedited -EXPORT_SYMBOL_GPL vmlinux 0xc0d64ec0 ip_valid_fib_dump_req +EXPORT_SYMBOL_GPL vmlinux 0xc0c52c79 pm_runtime_barrier +EXPORT_SYMBOL_GPL vmlinux 0xc0db97e7 hypervisor_kobj EXPORT_SYMBOL_GPL vmlinux 0xc0dcb59e edac_layer_name EXPORT_SYMBOL_GPL vmlinux 0xc0f0458a ip_tunnel_unneed_metadata -EXPORT_SYMBOL_GPL vmlinux 0xc0fefff2 devm_led_classdev_unregister EXPORT_SYMBOL_GPL vmlinux 0xc1086e0c sysrq_toggle_support EXPORT_SYMBOL_GPL vmlinux 0xc10fddb8 name_to_dev_t -EXPORT_SYMBOL_GPL vmlinux 0xc1130986 regulator_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0xc137f6e6 dev_pm_qos_hide_flags -EXPORT_SYMBOL_GPL vmlinux 0xc13b7a2f xfrm_audit_state_delete -EXPORT_SYMBOL_GPL vmlinux 0xc1516be2 follow_pte -EXPORT_SYMBOL_GPL vmlinux 0xc1560764 debugfs_create_atomic_t -EXPORT_SYMBOL_GPL vmlinux 0xc160a9c0 perf_event_addr_filters_sync -EXPORT_SYMBOL_GPL vmlinux 0xc16443c6 devm_hwspin_lock_register -EXPORT_SYMBOL_GPL vmlinux 0xc16b1412 dw_pcie_find_capability +EXPORT_SYMBOL_GPL vmlinux 0xc1113f79 cgroup_attach_task_all +EXPORT_SYMBOL_GPL vmlinux 0xc1297430 perf_event_refresh +EXPORT_SYMBOL_GPL vmlinux 0xc13d5cf9 acpi_get_first_physical_node +EXPORT_SYMBOL_GPL vmlinux 0xc151a1fd da903x_writes +EXPORT_SYMBOL_GPL vmlinux 0xc153ee7a blk_poll +EXPORT_SYMBOL_GPL vmlinux 0xc16c43d2 clk_mux_determine_rate_flags +EXPORT_SYMBOL_GPL vmlinux 0xc16cbb0b fib_new_table EXPORT_SYMBOL_GPL vmlinux 0xc1743430 cpuidle_disable_device EXPORT_SYMBOL_GPL vmlinux 0xc17515d7 usb_hcds_loaded -EXPORT_SYMBOL_GPL vmlinux 0xc1788a15 ata_sff_lost_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xc17e2c61 __blk_req_zone_write_lock EXPORT_SYMBOL_GPL vmlinux 0xc17e9946 usb_show_dynids +EXPORT_SYMBOL_GPL vmlinux 0xc1840f66 blk_mq_rdma_map_queues EXPORT_SYMBOL_GPL vmlinux 0xc18cdf36 amd_df_indirect_read -EXPORT_SYMBOL_GPL vmlinux 0xc191b511 bpf_prog_put -EXPORT_SYMBOL_GPL vmlinux 0xc1987fdd nvdimm_delete -EXPORT_SYMBOL_GPL vmlinux 0xc1a40e96 hwspin_lock_request_specific -EXPORT_SYMBOL_GPL vmlinux 0xc1c03835 nvdimm_in_overwrite -EXPORT_SYMBOL_GPL vmlinux 0xc1cc1e53 phy_put +EXPORT_SYMBOL_GPL vmlinux 0xc18d220a devlink_port_attrs_set +EXPORT_SYMBOL_GPL vmlinux 0xc19e13d7 cpufreq_table_index_unsorted +EXPORT_SYMBOL_GPL vmlinux 0xc1a86410 __kthread_should_park +EXPORT_SYMBOL_GPL vmlinux 0xc1b2c599 cpufreq_freq_transition_end +EXPORT_SYMBOL_GPL vmlinux 0xc1c0ade7 serial8250_tx_chars +EXPORT_SYMBOL_GPL vmlinux 0xc1c1fb56 sdio_readb +EXPORT_SYMBOL_GPL vmlinux 0xc1cc4287 xenbus_unmap_ring_vfree +EXPORT_SYMBOL_GPL vmlinux 0xc1d63166 sata_scr_valid EXPORT_SYMBOL_GPL vmlinux 0xc1d989c5 vfio_external_check_extension +EXPORT_SYMBOL_GPL vmlinux 0xc1ec935f battery_hook_register +EXPORT_SYMBOL_GPL vmlinux 0xc1f6fd52 device_remove_groups EXPORT_SYMBOL_GPL vmlinux 0xc2033d9f amd_get_highest_perf +EXPORT_SYMBOL_GPL vmlinux 0xc20ba8e8 serdev_device_wait_until_sent +EXPORT_SYMBOL_GPL vmlinux 0xc20db115 genphy_c45_pma_read_abilities +EXPORT_SYMBOL_GPL vmlinux 0xc210a5bb generic_online_page +EXPORT_SYMBOL_GPL vmlinux 0xc2281533 nd_blk_region_set_provider_data EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases -EXPORT_SYMBOL_GPL vmlinux 0xc2309023 dev_pm_qos_add_request -EXPORT_SYMBOL_GPL vmlinux 0xc2327e63 iommu_attach_group EXPORT_SYMBOL_GPL vmlinux 0xc23601c1 __SCT__tp_func_pelt_cfs_tp -EXPORT_SYMBOL_GPL vmlinux 0xc2424d2a get_current_tty -EXPORT_SYMBOL_GPL vmlinux 0xc246e6fb security_path_rmdir -EXPORT_SYMBOL_GPL vmlinux 0xc24b10d6 regulator_get_voltage -EXPORT_SYMBOL_GPL vmlinux 0xc251d1c7 devm_remove_action +EXPORT_SYMBOL_GPL vmlinux 0xc2434530 dm_bio_get_target_bio_nr +EXPORT_SYMBOL_GPL vmlinux 0xc24440cc devm_intel_scu_ipc_dev_get +EXPORT_SYMBOL_GPL vmlinux 0xc24623fc acpi_spi_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc2487e23 spi_controller_resume +EXPORT_SYMBOL_GPL vmlinux 0xc252a414 synth_event_trace_array EXPORT_SYMBOL_GPL vmlinux 0xc25b8971 hv_remove_crash_handler -EXPORT_SYMBOL_GPL vmlinux 0xc25d2f30 ata_acpi_gtm -EXPORT_SYMBOL_GPL vmlinux 0xc25f22e7 pm_runtime_force_suspend +EXPORT_SYMBOL_GPL vmlinux 0xc260a81d __SCK__tp_func_neigh_event_send_dead EXPORT_SYMBOL_GPL vmlinux 0xc2692173 wakeup_sources_read_lock -EXPORT_SYMBOL_GPL vmlinux 0xc2776c6d __traceiter_block_rq_insert +EXPORT_SYMBOL_GPL vmlinux 0xc2737a94 __pci_epf_register_driver EXPORT_SYMBOL_GPL vmlinux 0xc287d96a kvm_set_posted_intr_wakeup_handler +EXPORT_SYMBOL_GPL vmlinux 0xc2897aa9 user_describe EXPORT_SYMBOL_GPL vmlinux 0xc289e46d cpufreq_generic_frequency_table_verify -EXPORT_SYMBOL_GPL vmlinux 0xc296a63d sata_link_scr_lpm -EXPORT_SYMBOL_GPL vmlinux 0xc299cbb0 phy_reset -EXPORT_SYMBOL_GPL vmlinux 0xc29aafdb tpm_calc_ordinal_duration -EXPORT_SYMBOL_GPL vmlinux 0xc29c92f0 vfio_pci_core_match -EXPORT_SYMBOL_GPL vmlinux 0xc29f4523 __raw_v4_lookup +EXPORT_SYMBOL_GPL vmlinux 0xc298443e spi_new_ancillary_device +EXPORT_SYMBOL_GPL vmlinux 0xc29c9f80 i2c_probe_func_quick_read +EXPORT_SYMBOL_GPL vmlinux 0xc2a0c13d regcache_mark_dirty EXPORT_SYMBOL_GPL vmlinux 0xc2a1cbaf __cpuhp_state_remove_instance EXPORT_SYMBOL_GPL vmlinux 0xc2a3e570 errata EXPORT_SYMBOL_GPL vmlinux 0xc2a814db tcp_memory_pressure -EXPORT_SYMBOL_GPL vmlinux 0xc2b15343 vfio_virqfd_disable -EXPORT_SYMBOL_GPL vmlinux 0xc2b372cb ipv6_bpf_stub -EXPORT_SYMBOL_GPL vmlinux 0xc2b667b0 __SCK__tp_func_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0xc2afc49e dev_set_name +EXPORT_SYMBOL_GPL vmlinux 0xc2b91968 spi_mem_dirmap_read +EXPORT_SYMBOL_GPL vmlinux 0xc2ba1f7b tracepoint_probe_register +EXPORT_SYMBOL_GPL vmlinux 0xc2ba2e45 dax_layout_busy_page +EXPORT_SYMBOL_GPL vmlinux 0xc2bbf941 tpm_tis_remove EXPORT_SYMBOL_GPL vmlinux 0xc2c1c427 perf_event_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xc2c38951 fsverity_ioctl_enable -EXPORT_SYMBOL_GPL vmlinux 0xc2c856cf dw_pcie_read_dbi -EXPORT_SYMBOL_GPL vmlinux 0xc2cf9ac1 i2c_new_scanned_device -EXPORT_SYMBOL_GPL vmlinux 0xc2d3ed11 rio_request_inb_pwrite -EXPORT_SYMBOL_GPL vmlinux 0xc2db0eef spi_mem_poll_status +EXPORT_SYMBOL_GPL vmlinux 0xc2c208f8 inet_csk_reqsk_queue_hash_add +EXPORT_SYMBOL_GPL vmlinux 0xc2c8c669 __blk_mq_debugfs_rq_show +EXPORT_SYMBOL_GPL vmlinux 0xc2d14ad4 tcp_enter_memory_pressure EXPORT_SYMBOL_GPL vmlinux 0xc2de27ca hest_disable -EXPORT_SYMBOL_GPL vmlinux 0xc2dea978 ata_port_wait_eh -EXPORT_SYMBOL_GPL vmlinux 0xc2ec9528 devlink_trap_policers_unregister EXPORT_SYMBOL_GPL vmlinux 0xc2fb483f __SCT__tp_func_tcp_bad_csum -EXPORT_SYMBOL_GPL vmlinux 0xc2ff807c l3mdev_ifindex_lookup_by_table_id -EXPORT_SYMBOL_GPL vmlinux 0xc31db1c7 bus_sort_breadthfirst -EXPORT_SYMBOL_GPL vmlinux 0xc322e68f relay_file_operations -EXPORT_SYMBOL_GPL vmlinux 0xc32e38b8 irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xc2fcf8c0 blk_clear_pm_only +EXPORT_SYMBOL_GPL vmlinux 0xc3098324 __tracepoint_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0xc30a024b fsnotify_get_group +EXPORT_SYMBOL_GPL vmlinux 0xc30acfb3 exportfs_decode_fh_raw +EXPORT_SYMBOL_GPL vmlinux 0xc31abac1 cpci_hp_register_controller EXPORT_SYMBOL_GPL vmlinux 0xc3329c64 apic -EXPORT_SYMBOL_GPL vmlinux 0xc33a2986 sysfs_create_files -EXPORT_SYMBOL_GPL vmlinux 0xc33d5aa6 sysfs_create_group +EXPORT_SYMBOL_GPL vmlinux 0xc3389cbe class_find_device +EXPORT_SYMBOL_GPL vmlinux 0xc3392c83 power_supply_property_is_writeable EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object -EXPORT_SYMBOL_GPL vmlinux 0xc34240a7 verify_signature -EXPORT_SYMBOL_GPL vmlinux 0xc35b3808 spi_split_transfers_maxsize -EXPORT_SYMBOL_GPL vmlinux 0xc362d050 of_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0xc3647ba4 crypto_req_done -EXPORT_SYMBOL_GPL vmlinux 0xc36c659d pci_generic_config_write +EXPORT_SYMBOL_GPL vmlinux 0xc36ff88a __mmu_notifier_register EXPORT_SYMBOL_GPL vmlinux 0xc3708747 trace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0xc37ad31f bpf_prog_put EXPORT_SYMBOL_GPL vmlinux 0xc3805cd1 fs_ftype_to_dtype -EXPORT_SYMBOL_GPL vmlinux 0xc384b13f vp_modern_generation -EXPORT_SYMBOL_GPL vmlinux 0xc38869a9 watchdog_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0xc3992972 dev_pm_opp_set_supported_hw -EXPORT_SYMBOL_GPL vmlinux 0xc399b50e clk_register_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0xc3a27ede kthread_unuse_mm -EXPORT_SYMBOL_GPL vmlinux 0xc3af413f memremap_pages -EXPORT_SYMBOL_GPL vmlinux 0xc3b1c7c0 skb_cow_data -EXPORT_SYMBOL_GPL vmlinux 0xc3b34043 __rtnl_link_register -EXPORT_SYMBOL_GPL vmlinux 0xc3b44b86 irqchip_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0xc388ddff mmc_poll_for_busy +EXPORT_SYMBOL_GPL vmlinux 0xc3a429b7 rio_alloc_net EXPORT_SYMBOL_GPL vmlinux 0xc3c4c6cc hash_algo_name -EXPORT_SYMBOL_GPL vmlinux 0xc3c6654b usb_deregister_device_driver -EXPORT_SYMBOL_GPL vmlinux 0xc3d227de lwtunnel_encap_del_ops -EXPORT_SYMBOL_GPL vmlinux 0xc3dc23f8 __tracepoint_pelt_cfs_tp -EXPORT_SYMBOL_GPL vmlinux 0xc3dd97a2 devlink_port_type_ib_set +EXPORT_SYMBOL_GPL vmlinux 0xc3cb19fe edac_pci_handle_pe +EXPORT_SYMBOL_GPL vmlinux 0xc3ce4dbb sdio_set_host_pm_flags +EXPORT_SYMBOL_GPL vmlinux 0xc3ddf5ab lwtunnel_fill_encap EXPORT_SYMBOL_GPL vmlinux 0xc3de65ff ring_buffer_bytes_cpu -EXPORT_SYMBOL_GPL vmlinux 0xc3e4cc2f mmc_app_cmd EXPORT_SYMBOL_GPL vmlinux 0xc3ea5305 iommu_default_passthrough -EXPORT_SYMBOL_GPL vmlinux 0xc3f70024 tty_buffer_lock_exclusive -EXPORT_SYMBOL_GPL vmlinux 0xc403c18d skb_segment -EXPORT_SYMBOL_GPL vmlinux 0xc411975d da903x_reads +EXPORT_SYMBOL_GPL vmlinux 0xc418be67 unix_inq_len EXPORT_SYMBOL_GPL vmlinux 0xc426c51f klp_shadow_free_all EXPORT_SYMBOL_GPL vmlinux 0xc428068d sata_deb_timing_long EXPORT_SYMBOL_GPL vmlinux 0xc43e92b9 trace_seq_bprintf +EXPORT_SYMBOL_GPL vmlinux 0xc4467b10 skcipher_walk_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0xc448d6b8 __hvc_resize EXPORT_SYMBOL_GPL vmlinux 0xc454fc7b twl_get_type -EXPORT_SYMBOL_GPL vmlinux 0xc45c2ecc devm_platform_ioremap_resource EXPORT_SYMBOL_GPL vmlinux 0xc45d0d13 injectm EXPORT_SYMBOL_GPL vmlinux 0xc45e246f housekeeping_test_cpu EXPORT_SYMBOL_GPL vmlinux 0xc46324f6 dynevent_create -EXPORT_SYMBOL_GPL vmlinux 0xc4646f55 ata_sff_hsm_move EXPORT_SYMBOL_GPL vmlinux 0xc471c67a twl4030_audio_disable_resource -EXPORT_SYMBOL_GPL vmlinux 0xc4766f40 gpiochip_line_is_open_drain -EXPORT_SYMBOL_GPL vmlinux 0xc47d38fd dw_pcie_own_conf_map_bus +EXPORT_SYMBOL_GPL vmlinux 0xc4722a60 sysfs_update_groups +EXPORT_SYMBOL_GPL vmlinux 0xc47e0f5e pm_generic_thaw_noirq +EXPORT_SYMBOL_GPL vmlinux 0xc47e4396 gpiod_get_raw_array_value_cansleep EXPORT_SYMBOL_GPL vmlinux 0xc48b7ccf ata_mode_string +EXPORT_SYMBOL_GPL vmlinux 0xc490cfda usb_queue_reset_device EXPORT_SYMBOL_GPL vmlinux 0xc4913442 vfio_group_put_external_user EXPORT_SYMBOL_GPL vmlinux 0xc4a31146 rdma_cgrp_subsys_on_dfl_key EXPORT_SYMBOL_GPL vmlinux 0xc4a72936 trusted_tpm_send -EXPORT_SYMBOL_GPL vmlinux 0xc4abbfdb __clk_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0xc4ae3fc6 phy_calibrate +EXPORT_SYMBOL_GPL vmlinux 0xc4b90d43 gpiochip_remove_pin_ranges +EXPORT_SYMBOL_GPL vmlinux 0xc4c65d71 watchdog_notify_pretimeout EXPORT_SYMBOL_GPL vmlinux 0xc4d022cb __SCT__tp_func_napi_poll -EXPORT_SYMBOL_GPL vmlinux 0xc4d49250 ip4_datagram_release_cb -EXPORT_SYMBOL_GPL vmlinux 0xc4d7b7d2 regulator_get_error_flags +EXPORT_SYMBOL_GPL vmlinux 0xc4d6ead7 regulator_sync_voltage +EXPORT_SYMBOL_GPL vmlinux 0xc4d7e9ce blk_mq_hctx_set_fq_lock_class +EXPORT_SYMBOL_GPL vmlinux 0xc4e5b762 i2c_handle_smbus_host_notify +EXPORT_SYMBOL_GPL vmlinux 0xc4ee9f7d regmap_get_reg_stride +EXPORT_SYMBOL_GPL vmlinux 0xc4ef2432 tcp_unregister_congestion_control EXPORT_SYMBOL_GPL vmlinux 0xc4f0da12 ktime_get_with_offset +EXPORT_SYMBOL_GPL vmlinux 0xc506bb9b iommu_detach_group EXPORT_SYMBOL_GPL vmlinux 0xc50dca33 __SCT__tp_func_neigh_cleanup_and_release +EXPORT_SYMBOL_GPL vmlinux 0xc5102d67 devm_phy_get EXPORT_SYMBOL_GPL vmlinux 0xc512626a __supported_pte_mask -EXPORT_SYMBOL_GPL vmlinux 0xc55ba48d rtnl_get_net_ns_capable +EXPORT_SYMBOL_GPL vmlinux 0xc517accd __devm_irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0xc51db4ff wm831x_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0xc53d7bd3 fwnode_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xc53e5cf1 perf_trace_run_bpf_submit +EXPORT_SYMBOL_GPL vmlinux 0xc54dda50 vp_modern_set_status EXPORT_SYMBOL_GPL vmlinux 0xc55ff962 phy_basic_t1_features_array +EXPORT_SYMBOL_GPL vmlinux 0xc5600b63 lwtunnel_input EXPORT_SYMBOL_GPL vmlinux 0xc5604800 clk_set_rate_exclusive -EXPORT_SYMBOL_GPL vmlinux 0xc566d1d0 rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc5675f8a ncsi_stop_dev EXPORT_SYMBOL_GPL vmlinux 0xc569d8ce __clk_get_name +EXPORT_SYMBOL_GPL vmlinux 0xc56aaf2b usb_phy_roothub_suspend EXPORT_SYMBOL_GPL vmlinux 0xc575c737 debug_locks_off EXPORT_SYMBOL_GPL vmlinux 0xc5777fca linear_range_get_selector_low_array -EXPORT_SYMBOL_GPL vmlinux 0xc587e750 __tracepoint_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0xc57f55bf bus_remove_file +EXPORT_SYMBOL_GPL vmlinux 0xc583d74a device_dma_supported +EXPORT_SYMBOL_GPL vmlinux 0xc5875e81 generic_fh_to_dentry +EXPORT_SYMBOL_GPL vmlinux 0xc589c22e mmu_interval_notifier_insert EXPORT_SYMBOL_GPL vmlinux 0xc58a3ee6 icc_node_destroy +EXPORT_SYMBOL_GPL vmlinux 0xc59be49d lp8788_read_multi_bytes EXPORT_SYMBOL_GPL vmlinux 0xc5a5c678 uart_parse_earlycon -EXPORT_SYMBOL_GPL vmlinux 0xc5aecb29 bpf_offload_dev_match -EXPORT_SYMBOL_GPL vmlinux 0xc5b26ebc extcon_set_state_sync -EXPORT_SYMBOL_GPL vmlinux 0xc5b33e32 virtqueue_get_buf_ctx -EXPORT_SYMBOL_GPL vmlinux 0xc5b60e99 rio_bus_type -EXPORT_SYMBOL_GPL vmlinux 0xc5bb5d7e gpiochip_populate_parent_fwspec_fourcell -EXPORT_SYMBOL_GPL vmlinux 0xc5c10dbe fat_fill_super -EXPORT_SYMBOL_GPL vmlinux 0xc5d5d5ed ehci_suspend -EXPORT_SYMBOL_GPL vmlinux 0xc5ef6a36 pm_generic_thaw -EXPORT_SYMBOL_GPL vmlinux 0xc5f4bbe1 xhci_ext_cap_init -EXPORT_SYMBOL_GPL vmlinux 0xc5fabdef fib_rule_matchall +EXPORT_SYMBOL_GPL vmlinux 0xc5af490c pm_clk_resume +EXPORT_SYMBOL_GPL vmlinux 0xc5b93156 pinctrl_force_sleep +EXPORT_SYMBOL_GPL vmlinux 0xc5c16073 nvdimm_has_flush +EXPORT_SYMBOL_GPL vmlinux 0xc5c56c6e vfio_pci_core_disable +EXPORT_SYMBOL_GPL vmlinux 0xc5d7612a dev_pm_opp_set_clkname +EXPORT_SYMBOL_GPL vmlinux 0xc5e91d3e decrypt_blob +EXPORT_SYMBOL_GPL vmlinux 0xc5ed0ab8 scsi_unregister_device_handler EXPORT_SYMBOL_GPL vmlinux 0xc604ab28 __SCT__tp_func_kfree_skb -EXPORT_SYMBOL_GPL vmlinux 0xc60ffa17 tpmm_chip_alloc -EXPORT_SYMBOL_GPL vmlinux 0xc61112e2 bus_register +EXPORT_SYMBOL_GPL vmlinux 0xc60f2c90 debugfs_lookup EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier -EXPORT_SYMBOL_GPL vmlinux 0xc62407af addrconf_add_linklocal -EXPORT_SYMBOL_GPL vmlinux 0xc63bf682 crypto_stats_akcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0xc61922ad regulator_bulk_force_disable +EXPORT_SYMBOL_GPL vmlinux 0xc62530f0 __traceiter_sched_util_est_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0xc6333ad4 br_fdb_test_addr_hook +EXPORT_SYMBOL_GPL vmlinux 0xc63eaf49 gpio_to_desc +EXPORT_SYMBOL_GPL vmlinux 0xc6415ab3 vp_modern_generation +EXPORT_SYMBOL_GPL vmlinux 0xc642a121 __percpu_down_read +EXPORT_SYMBOL_GPL vmlinux 0xc64fcc79 blk_bio_list_merge EXPORT_SYMBOL_GPL vmlinux 0xc6572a90 xenbus_read_unsigned +EXPORT_SYMBOL_GPL vmlinux 0xc65d10a9 umd_unload_blob EXPORT_SYMBOL_GPL vmlinux 0xc66019cc xen_resume_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc668c388 bpf_trace_run10 EXPORT_SYMBOL_GPL vmlinux 0xc66b77b1 iommu_group_set_iommudata -EXPORT_SYMBOL_GPL vmlinux 0xc66d164e acpi_pm_set_device_wakeup EXPORT_SYMBOL_GPL vmlinux 0xc672a391 irq_work_sync EXPORT_SYMBOL_GPL vmlinux 0xc6779093 ring_buffer_record_enable -EXPORT_SYMBOL_GPL vmlinux 0xc680568d proc_create_net_data_write +EXPORT_SYMBOL_GPL vmlinux 0xc67fb2e1 noop_direct_IO EXPORT_SYMBOL_GPL vmlinux 0xc683da81 set_memory_decrypted -EXPORT_SYMBOL_GPL vmlinux 0xc6955adc nvdimm_security_setup_events -EXPORT_SYMBOL_GPL vmlinux 0xc696abf7 irq_domain_translate_onecell +EXPORT_SYMBOL_GPL vmlinux 0xc688d1bf iommu_group_get EXPORT_SYMBOL_GPL vmlinux 0xc697b0f7 nvmem_device_read EXPORT_SYMBOL_GPL vmlinux 0xc69b7ee5 zs_destroy_pool -EXPORT_SYMBOL_GPL vmlinux 0xc6a38845 lwtunnel_build_state +EXPORT_SYMBOL_GPL vmlinux 0xc6a09cc1 iommu_capable +EXPORT_SYMBOL_GPL vmlinux 0xc6a0f0c9 security_path_chmod EXPORT_SYMBOL_GPL vmlinux 0xc6a4a872 __clk_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0xc6c65822 devlink_rate_leaf_destroy -EXPORT_SYMBOL_GPL vmlinux 0xc6d09899 rio_request_inb_dbell -EXPORT_SYMBOL_GPL vmlinux 0xc6d479b0 class_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0xc6b267aa ping_bind +EXPORT_SYMBOL_GPL vmlinux 0xc6b96284 inet_csk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0xc6bfcf50 pwm_set_chip_data +EXPORT_SYMBOL_GPL vmlinux 0xc6bfeb2d events_hybrid_sysfs_show +EXPORT_SYMBOL_GPL vmlinux 0xc6dc4070 acpi_find_child_device EXPORT_SYMBOL_GPL vmlinux 0xc6def34b gnttab_empty_grant_references -EXPORT_SYMBOL_GPL vmlinux 0xc6e378de spi_res_alloc -EXPORT_SYMBOL_GPL vmlinux 0xc6e4f1b9 __tracepoint_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0xc6e0f062 perf_aux_output_begin EXPORT_SYMBOL_GPL vmlinux 0xc6e5bcf3 linear_range_get_selector_within +EXPORT_SYMBOL_GPL vmlinux 0xc6e8567f transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc6e8a37e elv_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc6e99d85 of_css EXPORT_SYMBOL_GPL vmlinux 0xc6eec8f5 clk_divider_ops -EXPORT_SYMBOL_GPL vmlinux 0xc70134ed clk_hw_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0xc6f8ee3a acpi_device_fix_up_power +EXPORT_SYMBOL_GPL vmlinux 0xc701b042 dma_get_slave_channel EXPORT_SYMBOL_GPL vmlinux 0xc7061ef3 iova_cache_put -EXPORT_SYMBOL_GPL vmlinux 0xc7062f77 tty_save_termios -EXPORT_SYMBOL_GPL vmlinux 0xc711f03c dmi_kobj -EXPORT_SYMBOL_GPL vmlinux 0xc71bdd4c generic_device_group +EXPORT_SYMBOL_GPL vmlinux 0xc70803bb pci_epc_stop +EXPORT_SYMBOL_GPL vmlinux 0xc70d0642 regulator_is_enabled_regmap EXPORT_SYMBOL_GPL vmlinux 0xc71e64a9 snmp_get_cpu_field -EXPORT_SYMBOL_GPL vmlinux 0xc7426cf6 proc_mkdir_data -EXPORT_SYMBOL_GPL vmlinux 0xc74e771c driver_attach -EXPORT_SYMBOL_GPL vmlinux 0xc7527caf irq_chip_set_vcpu_affinity_parent -EXPORT_SYMBOL_GPL vmlinux 0xc76175cd devlink_dpipe_entry_ctx_append -EXPORT_SYMBOL_GPL vmlinux 0xc764faeb __clk_hw_register_divider +EXPORT_SYMBOL_GPL vmlinux 0xc72c6021 crypto_stats_rng_seed +EXPORT_SYMBOL_GPL vmlinux 0xc7304595 dev_pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0xc737e63b fuse_do_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xc73f7d4f skcipher_alloc_instance_simple +EXPORT_SYMBOL_GPL vmlinux 0xc74488b3 led_set_brightness_sync +EXPORT_SYMBOL_GPL vmlinux 0xc752a177 acct_bioset_init EXPORT_SYMBOL_GPL vmlinux 0xc76f8048 __sbitmap_queue_get -EXPORT_SYMBOL_GPL vmlinux 0xc777563f dev_pm_opp_set_regulators -EXPORT_SYMBOL_GPL vmlinux 0xc77c4146 task_user_regset_view -EXPORT_SYMBOL_GPL vmlinux 0xc7820747 page_cache_sync_ra +EXPORT_SYMBOL_GPL vmlinux 0xc770b68d edac_get_sysfs_subsys +EXPORT_SYMBOL_GPL vmlinux 0xc77b9a8b gpiod_set_config EXPORT_SYMBOL_GPL vmlinux 0xc7856e74 __wake_up_locked_sync_key -EXPORT_SYMBOL_GPL vmlinux 0xc7876db0 power_supply_get_battery_info -EXPORT_SYMBOL_GPL vmlinux 0xc792a806 blk_mq_freeze_queue_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0xc79351c5 rtnl_af_register +EXPORT_SYMBOL_GPL vmlinux 0xc79ae016 sdio_signal_irq +EXPORT_SYMBOL_GPL vmlinux 0xc79fd018 regulator_put EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch EXPORT_SYMBOL_GPL vmlinux 0xc7a7e770 clk_bulk_enable -EXPORT_SYMBOL_GPL vmlinux 0xc7b21775 gpiochip_add_data_with_key -EXPORT_SYMBOL_GPL vmlinux 0xc7b33f0e clockevents_register_device -EXPORT_SYMBOL_GPL vmlinux 0xc7ba8ff2 blk_rq_err_bytes -EXPORT_SYMBOL_GPL vmlinux 0xc7c1292d __tracepoint_br_fdb_add +EXPORT_SYMBOL_GPL vmlinux 0xc7b3eab5 iomap_migrate_page +EXPORT_SYMBOL_GPL vmlinux 0xc7b798b7 attribute_container_classdev_to_container +EXPORT_SYMBOL_GPL vmlinux 0xc7beaf28 tcp_get_syncookie_mss EXPORT_SYMBOL_GPL vmlinux 0xc7c23ff0 xenbus_exists +EXPORT_SYMBOL_GPL vmlinux 0xc7d57a2a gpiochip_unlock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0xc7e0df46 dm_disk +EXPORT_SYMBOL_GPL vmlinux 0xc7e1e1ce usb_free_urb +EXPORT_SYMBOL_GPL vmlinux 0xc7e301c4 vfio_virqfd_disable EXPORT_SYMBOL_GPL vmlinux 0xc7e64fc2 asn1_encode_integer -EXPORT_SYMBOL_GPL vmlinux 0xc7e94c85 key_type_user -EXPORT_SYMBOL_GPL vmlinux 0xc7eb902a iomap_readahead +EXPORT_SYMBOL_GPL vmlinux 0xc7f9c80f wm831x_regmap_config EXPORT_SYMBOL_GPL vmlinux 0xc7fa4aa9 kobj_ns_drop -EXPORT_SYMBOL_GPL vmlinux 0xc7fd04c0 efivars_kobject -EXPORT_SYMBOL_GPL vmlinux 0xc803be6e kthread_func -EXPORT_SYMBOL_GPL vmlinux 0xc808bd51 dw_pcie_host_init -EXPORT_SYMBOL_GPL vmlinux 0xc8099578 devm_regulator_get -EXPORT_SYMBOL_GPL vmlinux 0xc8165642 of_icc_bulk_get EXPORT_SYMBOL_GPL vmlinux 0xc82c721f klist_remove +EXPORT_SYMBOL_GPL vmlinux 0xc82ff0ce switchdev_handle_fdb_del_to_device EXPORT_SYMBOL_GPL vmlinux 0xc839c1ce trace_seq_to_user -EXPORT_SYMBOL_GPL vmlinux 0xc83b2711 devlink_is_reload_failed -EXPORT_SYMBOL_GPL vmlinux 0xc849d6bf ata_sff_qc_fill_rtf -EXPORT_SYMBOL_GPL vmlinux 0xc84a6642 usb_lock_device_for_reset -EXPORT_SYMBOL_GPL vmlinux 0xc8570bc4 ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0xc84ba56a sched_trace_rq_avg_dl +EXPORT_SYMBOL_GPL vmlinux 0xc85671db dev_pm_opp_detach_genpd EXPORT_SYMBOL_GPL vmlinux 0xc8594d3d reset_control_acquire -EXPORT_SYMBOL_GPL vmlinux 0xc865b5f3 devm_power_supply_register_no_ws -EXPORT_SYMBOL_GPL vmlinux 0xc87286b8 crypto_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0xc8671aa7 bpf_prog_select_runtime +EXPORT_SYMBOL_GPL vmlinux 0xc86bc847 scsi_get_vpd_page EXPORT_SYMBOL_GPL vmlinux 0xc874d710 hv_unmap_ioapic_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xc876b6cc gpiod_export EXPORT_SYMBOL_GPL vmlinux 0xc87e487a sched_clock_idle_sleep_event EXPORT_SYMBOL_GPL vmlinux 0xc87fb025 xas_get_mark -EXPORT_SYMBOL_GPL vmlinux 0xc89cfe97 devm_create_dev_dax -EXPORT_SYMBOL_GPL vmlinux 0xc8ab033b init_dummy_netdev -EXPORT_SYMBOL_GPL vmlinux 0xc8ad16f8 tpm_put_ops -EXPORT_SYMBOL_GPL vmlinux 0xc8afd45b iptunnel_xmit -EXPORT_SYMBOL_GPL vmlinux 0xc8b6da4b sk_msg_return -EXPORT_SYMBOL_GPL vmlinux 0xc8c2d035 dma_alloc_pages -EXPORT_SYMBOL_GPL vmlinux 0xc8c87bfd crypto_shoot_alg +EXPORT_SYMBOL_GPL vmlinux 0xc88132b1 tps80031_ext_power_req_config +EXPORT_SYMBOL_GPL vmlinux 0xc881783a kill_pid_usb_asyncio +EXPORT_SYMBOL_GPL vmlinux 0xc89ee9d7 devm_spi_mem_dirmap_create +EXPORT_SYMBOL_GPL vmlinux 0xc8d87cff serial8250_request_dma +EXPORT_SYMBOL_GPL vmlinux 0xc8daff40 virtio_check_driver_offered_feature EXPORT_SYMBOL_GPL vmlinux 0xc8ddd5b5 kstrdup_quotable -EXPORT_SYMBOL_GPL vmlinux 0xc8fafef0 regulator_disable_deferred +EXPORT_SYMBOL_GPL vmlinux 0xc8e4e6cc spi_slave_abort +EXPORT_SYMBOL_GPL vmlinux 0xc8e95614 icc_sync_state +EXPORT_SYMBOL_GPL vmlinux 0xc8efdb15 iommu_set_pgtable_quirks +EXPORT_SYMBOL_GPL vmlinux 0xc90893b2 regmap_attach_dev +EXPORT_SYMBOL_GPL vmlinux 0xc9172348 dma_request_chan_by_mask +EXPORT_SYMBOL_GPL vmlinux 0xc91ca996 tpm_send +EXPORT_SYMBOL_GPL vmlinux 0xc91d9d02 bsg_job_get EXPORT_SYMBOL_GPL vmlinux 0xc91ee1b5 __SCT__tp_func_mc_event EXPORT_SYMBOL_GPL vmlinux 0xc91fdf58 percpu_ref_is_zero -EXPORT_SYMBOL_GPL vmlinux 0xc920df36 device_match_fwnode -EXPORT_SYMBOL_GPL vmlinux 0xc92b626a ata_bmdma_port_intr -EXPORT_SYMBOL_GPL vmlinux 0xc92f50f5 blk_add_driver_data -EXPORT_SYMBOL_GPL vmlinux 0xc92fb567 udp_bpf_update_proto +EXPORT_SYMBOL_GPL vmlinux 0xc9219c42 wm8350_reg_read EXPORT_SYMBOL_GPL vmlinux 0xc9345c0f digsig_verify -EXPORT_SYMBOL_GPL vmlinux 0xc93af78f perf_aux_output_begin EXPORT_SYMBOL_GPL vmlinux 0xc93ee1e7 usb_phy_roothub_init -EXPORT_SYMBOL_GPL vmlinux 0xc94ab7eb __fscrypt_prepare_setattr -EXPORT_SYMBOL_GPL vmlinux 0xc94ad9c8 md_submit_discard_bio -EXPORT_SYMBOL_GPL vmlinux 0xc951aae6 dm_get_md -EXPORT_SYMBOL_GPL vmlinux 0xc9559c0d serdev_device_set_flow_control EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist -EXPORT_SYMBOL_GPL vmlinux 0xc9613771 regcache_cache_only -EXPORT_SYMBOL_GPL vmlinux 0xc962a2a1 sk_msg_zerocopy_from_iter EXPORT_SYMBOL_GPL vmlinux 0xc9641b48 visitor32 -EXPORT_SYMBOL_GPL vmlinux 0xc9700bd1 fixup_user_fault -EXPORT_SYMBOL_GPL vmlinux 0xc9739639 rdev_get_name -EXPORT_SYMBOL_GPL vmlinux 0xc978a05b switchdev_handle_port_attr_set -EXPORT_SYMBOL_GPL vmlinux 0xc97fcc69 perf_pmu_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc967ea88 devm_phy_create +EXPORT_SYMBOL_GPL vmlinux 0xc969b0d6 dma_max_mapping_size +EXPORT_SYMBOL_GPL vmlinux 0xc96b3c7f tps65912_device_init EXPORT_SYMBOL_GPL vmlinux 0xc9827693 __bpf_call_base -EXPORT_SYMBOL_GPL vmlinux 0xc9910cd6 switchdev_handle_fdb_add_to_device -EXPORT_SYMBOL_GPL vmlinux 0xc991c6b4 eventfd_ctx_fileget +EXPORT_SYMBOL_GPL vmlinux 0xc9827aa7 extcon_set_property +EXPORT_SYMBOL_GPL vmlinux 0xc99036a1 pci_sriov_configure_simple +EXPORT_SYMBOL_GPL vmlinux 0xc99aa487 query_asymmetric_key EXPORT_SYMBOL_GPL vmlinux 0xc9a4b416 copy_to_user_nofault EXPORT_SYMBOL_GPL vmlinux 0xc9c3f176 hpet_register_irq_handler -EXPORT_SYMBOL_GPL vmlinux 0xc9c4c880 fwnode_property_read_u16_array -EXPORT_SYMBOL_GPL vmlinux 0xc9db6e4b nd_cmd_out_size -EXPORT_SYMBOL_GPL vmlinux 0xc9e11d3d dm_post_suspending -EXPORT_SYMBOL_GPL vmlinux 0xc9e338bb edac_device_add_device -EXPORT_SYMBOL_GPL vmlinux 0xc9ebba13 devlink_port_type_clear +EXPORT_SYMBOL_GPL vmlinux 0xc9d22bec pci_epc_linkup +EXPORT_SYMBOL_GPL vmlinux 0xc9d52acd __rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0xc9d68679 __pneigh_lookup +EXPORT_SYMBOL_GPL vmlinux 0xc9e075ef tty_buffer_request_room +EXPORT_SYMBOL_GPL vmlinux 0xc9e54be2 rt_mutex_lock EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu -EXPORT_SYMBOL_GPL vmlinux 0xc9ed79a4 get_user_pages_fast_only -EXPORT_SYMBOL_GPL vmlinux 0xc9edacdc devm_regmap_field_bulk_alloc -EXPORT_SYMBOL_GPL vmlinux 0xc9f260cc set_pages_array_wt -EXPORT_SYMBOL_GPL vmlinux 0xc9f8ff4b gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xc9ee09c4 scsi_autopm_get_device EXPORT_SYMBOL_GPL vmlinux 0xc9fd634a usb_role_switch_put -EXPORT_SYMBOL_GPL vmlinux 0xca049a83 shmem_zero_setup -EXPORT_SYMBOL_GPL vmlinux 0xca17ff17 dmaengine_desc_attach_metadata +EXPORT_SYMBOL_GPL vmlinux 0xca02be1e devm_regulator_irq_helper +EXPORT_SYMBOL_GPL vmlinux 0xca126c35 devm_regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xca13e23c apei_get_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0xca16a9af dev_pm_opp_set_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0xca212f91 ata_sff_drain_fifo +EXPORT_SYMBOL_GPL vmlinux 0xca30e6a8 __traceiter_remove_device_from_group EXPORT_SYMBOL_GPL vmlinux 0xca454a34 vt_get_leds EXPORT_SYMBOL_GPL vmlinux 0xca467318 hibernation_set_ops -EXPORT_SYMBOL_GPL vmlinux 0xca528b74 __tracepoint_neigh_update -EXPORT_SYMBOL_GPL vmlinux 0xca61a540 __traceiter_neigh_update +EXPORT_SYMBOL_GPL vmlinux 0xca5aa1b4 blk_trace_remove EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop -EXPORT_SYMBOL_GPL vmlinux 0xca7f830d wbc_detach_inode +EXPORT_SYMBOL_GPL vmlinux 0xca812e9d transport_remove_device +EXPORT_SYMBOL_GPL vmlinux 0xca96ed6a regmap_fields_update_bits_base EXPORT_SYMBOL_GPL vmlinux 0xca9a1d5e ring_buffer_free EXPORT_SYMBOL_GPL vmlinux 0xcaa68533 cpu_has_xfeatures -EXPORT_SYMBOL_GPL vmlinux 0xcaae434c iommu_fwspec_add_ids +EXPORT_SYMBOL_GPL vmlinux 0xcab012a9 uart_insert_char EXPORT_SYMBOL_GPL vmlinux 0xcabe04de cpuidle_resume_and_unlock -EXPORT_SYMBOL_GPL vmlinux 0xcad4fce7 device_match_name -EXPORT_SYMBOL_GPL vmlinux 0xcada57ad acpi_cppc_processor_exit -EXPORT_SYMBOL_GPL vmlinux 0xcae089ba crypto_skcipher_setkey +EXPORT_SYMBOL_GPL vmlinux 0xcabef7dc pinctrl_pm_select_idle_state +EXPORT_SYMBOL_GPL vmlinux 0xcacb8a2d crypto_unregister_template +EXPORT_SYMBOL_GPL vmlinux 0xcad559eb ata_qc_complete EXPORT_SYMBOL_GPL vmlinux 0xcaf1d958 evtchn_get -EXPORT_SYMBOL_GPL vmlinux 0xcaf6603e devm_pm_opp_set_clkname -EXPORT_SYMBOL_GPL vmlinux 0xcb013dad crypto_comp_compress -EXPORT_SYMBOL_GPL vmlinux 0xcb06c64f xenbus_alloc_evtchn EXPORT_SYMBOL_GPL vmlinux 0xcb15eee9 sdhci_pci_get_data +EXPORT_SYMBOL_GPL vmlinux 0xcb17c743 __pm_runtime_idle EXPORT_SYMBOL_GPL vmlinux 0xcb2bfe2b nvmem_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xcb367e9c pci_generic_config_read +EXPORT_SYMBOL_GPL vmlinux 0xcb451dba iommu_fwspec_init +EXPORT_SYMBOL_GPL vmlinux 0xcb51db83 ipv6_find_tlv +EXPORT_SYMBOL_GPL vmlinux 0xcb52900b pinctrl_dev_get_drvdata EXPORT_SYMBOL_GPL vmlinux 0xcb561441 mem_dump_obj -EXPORT_SYMBOL_GPL vmlinux 0xcb7f6438 fb_deferred_io_cleanup -EXPORT_SYMBOL_GPL vmlinux 0xcb882f7f pm_runtime_no_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xcb651ce0 addrconf_add_linklocal +EXPORT_SYMBOL_GPL vmlinux 0xcb6aac5e powercap_register_control_type EXPORT_SYMBOL_GPL vmlinux 0xcb8a461c hv_stimer_legacy_cleanup EXPORT_SYMBOL_GPL vmlinux 0xcb970751 stop_machine +EXPORT_SYMBOL_GPL vmlinux 0xcb988f3a handle_simple_irq +EXPORT_SYMBOL_GPL vmlinux 0xcba43ee0 pm_generic_restore_noirq +EXPORT_SYMBOL_GPL vmlinux 0xcbb4184a xen_unregister_device_domain_owner EXPORT_SYMBOL_GPL vmlinux 0xcbb46ca0 misc_cg_set_capacity -EXPORT_SYMBOL_GPL vmlinux 0xcbc35b47 __SCK__tp_func_sched_util_est_se_tp -EXPORT_SYMBOL_GPL vmlinux 0xcbc73808 pci_epc_remove_epf -EXPORT_SYMBOL_GPL vmlinux 0xcbd1bc6e ping_unhash +EXPORT_SYMBOL_GPL vmlinux 0xcbbec820 sched_trace_rq_avg_irq +EXPORT_SYMBOL_GPL vmlinux 0xcbc04c90 ata_std_qc_defer +EXPORT_SYMBOL_GPL vmlinux 0xcbc57410 spi_res_release +EXPORT_SYMBOL_GPL vmlinux 0xcbc58d7f usb_remove_phy +EXPORT_SYMBOL_GPL vmlinux 0xcbd6918c gov_attr_set_put EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages -EXPORT_SYMBOL_GPL vmlinux 0xcbebf80b platform_device_put -EXPORT_SYMBOL_GPL vmlinux 0xcc07ca3a create_signature -EXPORT_SYMBOL_GPL vmlinux 0xcc0e37fe gnttab_pages_set_private -EXPORT_SYMBOL_GPL vmlinux 0xcc17d917 dax_iomap_rw -EXPORT_SYMBOL_GPL vmlinux 0xcc29bade usb_remove_hcd +EXPORT_SYMBOL_GPL vmlinux 0xcbea4ca9 agp_remove_bridge +EXPORT_SYMBOL_GPL vmlinux 0xcbee1dde mbox_send_message +EXPORT_SYMBOL_GPL vmlinux 0xcbf697b4 regmap_get_device +EXPORT_SYMBOL_GPL vmlinux 0xcbfc3e87 fat_time_fat2unix +EXPORT_SYMBOL_GPL vmlinux 0xcc0f1756 devlink_port_type_eth_set EXPORT_SYMBOL_GPL vmlinux 0xcc2dbfd8 irq_domain_check_msi_remap -EXPORT_SYMBOL_GPL vmlinux 0xcc2f14e1 __udp_gso_segment +EXPORT_SYMBOL_GPL vmlinux 0xcc2fc2e9 debugfs_rename EXPORT_SYMBOL_GPL vmlinux 0xcc312197 clk_mux_ops EXPORT_SYMBOL_GPL vmlinux 0xcc39c03e nvmem_unregister -EXPORT_SYMBOL_GPL vmlinux 0xcc3e38fc user_describe -EXPORT_SYMBOL_GPL vmlinux 0xcc3e6c77 acpi_is_pnp_device -EXPORT_SYMBOL_GPL vmlinux 0xcc51a423 sdev_evt_send_simple -EXPORT_SYMBOL_GPL vmlinux 0xcc75038a fuse_mount_remove +EXPORT_SYMBOL_GPL vmlinux 0xcc3c93fb __scsi_init_queue +EXPORT_SYMBOL_GPL vmlinux 0xcc43bde2 regulator_get_linear_step +EXPORT_SYMBOL_GPL vmlinux 0xcc68cbe4 led_trigger_read +EXPORT_SYMBOL_GPL vmlinux 0xcc703b93 max8997_read_reg +EXPORT_SYMBOL_GPL vmlinux 0xcc81361d ata_scsi_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0xcc912d08 blk_mq_alloc_request_hctx EXPORT_SYMBOL_GPL vmlinux 0xcc9268fc hwpoison_filter_enable +EXPORT_SYMBOL_GPL vmlinux 0xcc930cfb mmc_regulator_set_vqmmc EXPORT_SYMBOL_GPL vmlinux 0xcc935375 walk_iomem_res_desc -EXPORT_SYMBOL_GPL vmlinux 0xcc960833 sdio_claim_irq -EXPORT_SYMBOL_GPL vmlinux 0xcca515d4 debugfs_create_x32 -EXPORT_SYMBOL_GPL vmlinux 0xccc3ddbb sk_psock_drop +EXPORT_SYMBOL_GPL vmlinux 0xcca06c93 devm_clk_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcca32e20 switchdev_bridge_port_unoffload +EXPORT_SYMBOL_GPL vmlinux 0xccad0b5e misc_cg_try_charge +EXPORT_SYMBOL_GPL vmlinux 0xccb2fc55 dev_pm_opp_register_set_opp_helper +EXPORT_SYMBOL_GPL vmlinux 0xcccd5e4e tty_port_register_device_attr EXPORT_SYMBOL_GPL vmlinux 0xcccfb2fa sata_deb_timing_hotplug -EXPORT_SYMBOL_GPL vmlinux 0xccd32334 devm_clk_unregister -EXPORT_SYMBOL_GPL vmlinux 0xccd5dbcd mmu_interval_notifier_insert +EXPORT_SYMBOL_GPL vmlinux 0xccd70051 __SCK__tp_func_sched_overutilized_tp EXPORT_SYMBOL_GPL vmlinux 0xccd86806 ata_id_string -EXPORT_SYMBOL_GPL vmlinux 0xcce7762b crypto_larval_alloc +EXPORT_SYMBOL_GPL vmlinux 0xcce3a666 ethnl_cable_test_alloc +EXPORT_SYMBOL_GPL vmlinux 0xcce69ffc xenbus_dev_groups EXPORT_SYMBOL_GPL vmlinux 0xccea4e34 perf_get_x86_pmu_capability +EXPORT_SYMBOL_GPL vmlinux 0xccf0ffdb sysfs_remove_groups EXPORT_SYMBOL_GPL vmlinux 0xccf396a3 x86_perf_get_lbr EXPORT_SYMBOL_GPL vmlinux 0xccf52bc9 sfp_upstream_start -EXPORT_SYMBOL_GPL vmlinux 0xccfff7b1 device_show_bool -EXPORT_SYMBOL_GPL vmlinux 0xcd04639c ata_std_postreset +EXPORT_SYMBOL_GPL vmlinux 0xccfab6ad iommu_dev_enable_feature +EXPORT_SYMBOL_GPL vmlinux 0xcd189c87 __SCK__tp_func_attach_device_to_domain EXPORT_SYMBOL_GPL vmlinux 0xcd24e146 hash_digest_size -EXPORT_SYMBOL_GPL vmlinux 0xcd3bf2bd sdio_set_host_pm_flags -EXPORT_SYMBOL_GPL vmlinux 0xcd3c977e list_lru_walk_one +EXPORT_SYMBOL_GPL vmlinux 0xcd25fc16 skb_segment +EXPORT_SYMBOL_GPL vmlinux 0xcd2de92f devm_hwmon_device_register_with_groups EXPORT_SYMBOL_GPL vmlinux 0xcd3e5c7c acpi_release_memory -EXPORT_SYMBOL_GPL vmlinux 0xcd43ef1e ehci_adjust_port_wakeup_flags -EXPORT_SYMBOL_GPL vmlinux 0xcd4e19ec debugfs_read_file_bool -EXPORT_SYMBOL_GPL vmlinux 0xcd675670 crypto_hash_alg_has_setkey +EXPORT_SYMBOL_GPL vmlinux 0xcd54f588 pci_vfs_assigned +EXPORT_SYMBOL_GPL vmlinux 0xcd6a9963 pci_disable_ats +EXPORT_SYMBOL_GPL vmlinux 0xcd6ddb52 fat_sync_inode EXPORT_SYMBOL_GPL vmlinux 0xcd6f2dc9 nf_log_buf_add -EXPORT_SYMBOL_GPL vmlinux 0xcd7e6d27 tpm_tis_remove EXPORT_SYMBOL_GPL vmlinux 0xcd81a945 switch_fpu_return EXPORT_SYMBOL_GPL vmlinux 0xcd8e8f82 uv_bios_enum_objs -EXPORT_SYMBOL_GPL vmlinux 0xcd90d60e cgroup_get_from_id +EXPORT_SYMBOL_GPL vmlinux 0xcd8ea4a2 usb_bulk_msg EXPORT_SYMBOL_GPL vmlinux 0xcd91b127 system_highpri_wq EXPORT_SYMBOL_GPL vmlinux 0xcd974f00 rcu_all_qs +EXPORT_SYMBOL_GPL vmlinux 0xcd994fae split_page EXPORT_SYMBOL_GPL vmlinux 0xcd9cd2ff wakeme_after_rcu +EXPORT_SYMBOL_GPL vmlinux 0xcdb0b547 sock_prot_inuse_get EXPORT_SYMBOL_GPL vmlinux 0xcdb6adcc ras_userspace_consumers -EXPORT_SYMBOL_GPL vmlinux 0xcdb9d4b7 udp_abort +EXPORT_SYMBOL_GPL vmlinux 0xcdb6b2ee ata_std_prereset EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs -EXPORT_SYMBOL_GPL vmlinux 0xcdd49722 ata_sas_tport_add -EXPORT_SYMBOL_GPL vmlinux 0xcddc692a __bio_try_merge_page -EXPORT_SYMBOL_GPL vmlinux 0xcddd5a57 platform_device_alloc EXPORT_SYMBOL_GPL vmlinux 0xcde26600 cppc_get_transition_latency -EXPORT_SYMBOL_GPL vmlinux 0xcde2907a usb_alloc_urb -EXPORT_SYMBOL_GPL vmlinux 0xce09ee2d hvc_poll +EXPORT_SYMBOL_GPL vmlinux 0xcde3d48a of_icc_get_by_index +EXPORT_SYMBOL_GPL vmlinux 0xcde76712 devres_for_each_res +EXPORT_SYMBOL_GPL vmlinux 0xcdf9f108 gpiochip_find +EXPORT_SYMBOL_GPL vmlinux 0xce02001a __traceiter_rpm_return_int EXPORT_SYMBOL_GPL vmlinux 0xce0a4020 xenbus_directory -EXPORT_SYMBOL_GPL vmlinux 0xce1a8dd7 blk_mq_debugfs_rq_show -EXPORT_SYMBOL_GPL vmlinux 0xce1f25c1 scsi_dh_attach -EXPORT_SYMBOL_GPL vmlinux 0xce3bb883 ndo_dflt_bridge_getlink -EXPORT_SYMBOL_GPL vmlinux 0xce45e5ba wait_on_page_writeback -EXPORT_SYMBOL_GPL vmlinux 0xce63eb7e clk_hw_get_parent +EXPORT_SYMBOL_GPL vmlinux 0xce100a68 blkcg_root +EXPORT_SYMBOL_GPL vmlinux 0xce2aaede fscrypt_get_symlink +EXPORT_SYMBOL_GPL vmlinux 0xce5d8c86 pcie_bus_configure_settings +EXPORT_SYMBOL_GPL vmlinux 0xce6388db led_trigger_event +EXPORT_SYMBOL_GPL vmlinux 0xce6a2e4e devfreq_event_get_edev_by_phandle EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching +EXPORT_SYMBOL_GPL vmlinux 0xce6ff9f1 regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xce70bf91 xfrm_state_mtu +EXPORT_SYMBOL_GPL vmlinux 0xce7c42a4 iommu_attach_device +EXPORT_SYMBOL_GPL vmlinux 0xce815bb1 perf_event_read_value EXPORT_SYMBOL_GPL vmlinux 0xce985658 kset_find_obj -EXPORT_SYMBOL_GPL vmlinux 0xce9f62aa dummy_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0xcea13853 __SCK__tp_func_non_standard_event -EXPORT_SYMBOL_GPL vmlinux 0xcea4cd9e usb_init_urb -EXPORT_SYMBOL_GPL vmlinux 0xcea68435 page_endio -EXPORT_SYMBOL_GPL vmlinux 0xcea7111e devm_get_free_pages EXPORT_SYMBOL_GPL vmlinux 0xceb1f126 mpi_read_raw_data EXPORT_SYMBOL_GPL vmlinux 0xceb66bec sched_clock_cpu -EXPORT_SYMBOL_GPL vmlinux 0xceb9e1a4 vp_modern_get_features -EXPORT_SYMBOL_GPL vmlinux 0xced4b855 regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xcebd321c usb_urb_ep_type_check +EXPORT_SYMBOL_GPL vmlinux 0xcebda906 spi_replace_transfers +EXPORT_SYMBOL_GPL vmlinux 0xcec1dfc0 crypto_get_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xcec3ec48 for_each_kernel_tracepoint +EXPORT_SYMBOL_GPL vmlinux 0xced6bfbb __tracepoint_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0xceda2e52 extcon_dev_register EXPORT_SYMBOL_GPL vmlinux 0xcee1641c kgdb_unregister_nmi_console -EXPORT_SYMBOL_GPL vmlinux 0xcefcc7bd nvdimm_cmd_mask -EXPORT_SYMBOL_GPL vmlinux 0xcf0291f7 ehci_handshake +EXPORT_SYMBOL_GPL vmlinux 0xcef0f8bf fscrypt_set_context EXPORT_SYMBOL_GPL vmlinux 0xcf02ab71 __SCT__tp_func_block_rq_remap -EXPORT_SYMBOL_GPL vmlinux 0xcf174f02 dev_pm_opp_find_level_ceil -EXPORT_SYMBOL_GPL vmlinux 0xcf1b4cd6 trace_get_event_file -EXPORT_SYMBOL_GPL vmlinux 0xcf2915ac virtio_add_status -EXPORT_SYMBOL_GPL vmlinux 0xcf2dfd5b serial8250_em485_start_tx -EXPORT_SYMBOL_GPL vmlinux 0xcf43bb6a fwnode_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0xcf18cf3d ata_slave_link_init +EXPORT_SYMBOL_GPL vmlinux 0xcf1dbfaa ipv4_redirect +EXPORT_SYMBOL_GPL vmlinux 0xcf2a77bc gpiod_set_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xcf2d92a6 skcipher_walk_virt +EXPORT_SYMBOL_GPL vmlinux 0xcf36d958 dma_buf_pin EXPORT_SYMBOL_GPL vmlinux 0xcf540422 ftrace_set_filter -EXPORT_SYMBOL_GPL vmlinux 0xcf677da0 __fsnotify_parent -EXPORT_SYMBOL_GPL vmlinux 0xcf82a121 scsi_free_sgtables -EXPORT_SYMBOL_GPL vmlinux 0xcf8d681d gpiod_get_index -EXPORT_SYMBOL_GPL vmlinux 0xcf907945 dmaengine_unmap_put -EXPORT_SYMBOL_GPL vmlinux 0xcf959e74 cpufreq_freq_transition_begin -EXPORT_SYMBOL_GPL vmlinux 0xcfa03637 devm_gpio_free -EXPORT_SYMBOL_GPL vmlinux 0xcfaa7217 wbc_attach_and_unlock_inode -EXPORT_SYMBOL_GPL vmlinux 0xcfade916 rio_pw_enable -EXPORT_SYMBOL_GPL vmlinux 0xcfaf97da pci_hp_create_module_link -EXPORT_SYMBOL_GPL vmlinux 0xcfafe52b crypto_grab_shash -EXPORT_SYMBOL_GPL vmlinux 0xcfbda21f regulator_get_mode +EXPORT_SYMBOL_GPL vmlinux 0xcf6bec58 gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0xcf6f7520 restore_online_page_callback +EXPORT_SYMBOL_GPL vmlinux 0xcf821a8c gpiod_toggle_active_low +EXPORT_SYMBOL_GPL vmlinux 0xcf9cdc0d ohci_setup +EXPORT_SYMBOL_GPL vmlinux 0xcfb8c4d0 of_devfreq_cooling_register EXPORT_SYMBOL_GPL vmlinux 0xcfc5108a devlink_fmsg_u8_pair_put EXPORT_SYMBOL_GPL vmlinux 0xcfc7b4e4 rcu_barrier_tasks_trace -EXPORT_SYMBOL_GPL vmlinux 0xcfca966b device_for_each_child_reverse +EXPORT_SYMBOL_GPL vmlinux 0xcfc9c02a scsi_dh_set_params EXPORT_SYMBOL_GPL vmlinux 0xcfd30d71 acpi_os_map_memory -EXPORT_SYMBOL_GPL vmlinux 0xcfd75f19 lwtunnel_xmit -EXPORT_SYMBOL_GPL vmlinux 0xcfe17cc4 lp8788_write_byte -EXPORT_SYMBOL_GPL vmlinux 0xcfe9f322 securityfs_create_symlink -EXPORT_SYMBOL_GPL vmlinux 0xcff64551 debugfs_create_u16 -EXPORT_SYMBOL_GPL vmlinux 0xcff6cfde dev_pm_opp_get_freq -EXPORT_SYMBOL_GPL vmlinux 0xd00586ec vfs_removexattr +EXPORT_SYMBOL_GPL vmlinux 0xcfecd62d __sock_recv_ts_and_drops +EXPORT_SYMBOL_GPL vmlinux 0xcff00ac7 devm_rtc_nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0xcff0b6fd dev_pm_opp_find_freq_ceil_by_volt +EXPORT_SYMBOL_GPL vmlinux 0xcff2d82e tcp_sendpage_locked +EXPORT_SYMBOL_GPL vmlinux 0xcffc72e7 __traceiter_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0xd00ad70d rio_inb_pwrite_handler EXPORT_SYMBOL_GPL vmlinux 0xd0177a65 acrn_setup_intr_handler -EXPORT_SYMBOL_GPL vmlinux 0xd0219289 rio_unlock_device -EXPORT_SYMBOL_GPL vmlinux 0xd022acb3 platform_device_register_full -EXPORT_SYMBOL_GPL vmlinux 0xd0247ff5 tty_register_device_attr -EXPORT_SYMBOL_GPL vmlinux 0xd026df39 devlink_param_unpublish -EXPORT_SYMBOL_GPL vmlinux 0xd02a2410 icc_provider_del +EXPORT_SYMBOL_GPL vmlinux 0xd01ac600 device_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0xd02ac095 dev_pm_qos_add_ancestor_request +EXPORT_SYMBOL_GPL vmlinux 0xd02b65ff dev_pm_qos_expose_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0xd037662d mptcp_subflow_init_cookie_req EXPORT_SYMBOL_GPL vmlinux 0xd03eaf4c schedule_hrtimeout_range +EXPORT_SYMBOL_GPL vmlinux 0xd0426b70 __traceiter_fib6_table_lookup EXPORT_SYMBOL_GPL vmlinux 0xd0458ccb xenbus_strstate -EXPORT_SYMBOL_GPL vmlinux 0xd04fcdb2 sk_msg_trim EXPORT_SYMBOL_GPL vmlinux 0xd051d489 srcu_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xd0646f75 gpiod_get_raw_array_value EXPORT_SYMBOL_GPL vmlinux 0xd06524ba raw_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd06795ee irq_chip_unmask_parent EXPORT_SYMBOL_GPL vmlinux 0xd067d3c5 system_freezable_power_efficient_wq -EXPORT_SYMBOL_GPL vmlinux 0xd07c4a07 regmap_get_device +EXPORT_SYMBOL_GPL vmlinux 0xd07bcaff usb_lock_device_for_reset +EXPORT_SYMBOL_GPL vmlinux 0xd08e0a5c dma_buf_vmap EXPORT_SYMBOL_GPL vmlinux 0xd09911a6 acpi_dev_get_irq_type EXPORT_SYMBOL_GPL vmlinux 0xd0a183cb kobject_get_path -EXPORT_SYMBOL_GPL vmlinux 0xd0aa030c blk_mq_complete_request_remote -EXPORT_SYMBOL_GPL vmlinux 0xd0aa8900 securityfs_remove -EXPORT_SYMBOL_GPL vmlinux 0xd0b4fc92 clk_hw_rate_is_protected +EXPORT_SYMBOL_GPL vmlinux 0xd0a21bed vchan_init +EXPORT_SYMBOL_GPL vmlinux 0xd0a54dc6 bus_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xd0b9723e spi_bus_unlock +EXPORT_SYMBOL_GPL vmlinux 0xd0bd8c45 crypto_alloc_rng EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart -EXPORT_SYMBOL_GPL vmlinux 0xd0c3b332 pingv6_prot +EXPORT_SYMBOL_GPL vmlinux 0xd0c4897c tcp_done +EXPORT_SYMBOL_GPL vmlinux 0xd0cb275a gpiochip_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0xd0d14bd6 xhci_suspend EXPORT_SYMBOL_GPL vmlinux 0xd0d156e9 __rht_bucket_nested EXPORT_SYMBOL_GPL vmlinux 0xd0d3f0a4 gen_pool_avail EXPORT_SYMBOL_GPL vmlinux 0xd0db0f12 run_dax EXPORT_SYMBOL_GPL vmlinux 0xd0df12ba __SCT__tp_func_powernv_throttle -EXPORT_SYMBOL_GPL vmlinux 0xd0fd83af devm_i2c_new_dummy_device -EXPORT_SYMBOL_GPL vmlinux 0xd11848c1 gpiochip_reqres_irq -EXPORT_SYMBOL_GPL vmlinux 0xd120111d device_create_bin_file -EXPORT_SYMBOL_GPL vmlinux 0xd12a4061 perf_event_release_kernel +EXPORT_SYMBOL_GPL vmlinux 0xd0e4e617 gpiod_set_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0xd0e6c95c mdiobus_modify +EXPORT_SYMBOL_GPL vmlinux 0xd0fab525 mmu_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd0fb15f3 shmem_file_setup_with_mnt +EXPORT_SYMBOL_GPL vmlinux 0xd0fd67ca sysfs_create_group +EXPORT_SYMBOL_GPL vmlinux 0xd104b666 rt_mutex_unlock +EXPORT_SYMBOL_GPL vmlinux 0xd1101d18 bsg_register_queue +EXPORT_SYMBOL_GPL vmlinux 0xd11a6c34 regmap_noinc_read +EXPORT_SYMBOL_GPL vmlinux 0xd127fa1e locks_alloc_lock +EXPORT_SYMBOL_GPL vmlinux 0xd13401d5 pwm_request_from_chip EXPORT_SYMBOL_GPL vmlinux 0xd1386738 x509_cert_parse EXPORT_SYMBOL_GPL vmlinux 0xd13a94d1 __SCT__tp_func_devlink_trap_report EXPORT_SYMBOL_GPL vmlinux 0xd1481de7 mpi_clear -EXPORT_SYMBOL_GPL vmlinux 0xd14dcecc usb_hcd_pci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xd149950a ata_sas_tport_add +EXPORT_SYMBOL_GPL vmlinux 0xd149f6ec intel_pinctrl_get_soc_data EXPORT_SYMBOL_GPL vmlinux 0xd159586c net_prio_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xd1698ad0 extcon_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xd17a17e6 cpufreq_enable_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0xd15a86a6 ata_pci_sff_init_host +EXPORT_SYMBOL_GPL vmlinux 0xd1760814 fuse_get_unique EXPORT_SYMBOL_GPL vmlinux 0xd17d2a22 phy_basic_features -EXPORT_SYMBOL_GPL vmlinux 0xd1a74ced bus_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xd1b1aef8 pm_schedule_suspend -EXPORT_SYMBOL_GPL vmlinux 0xd1b2ef30 spi_get_next_queued_message +EXPORT_SYMBOL_GPL vmlinux 0xd197b9df wm8350_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xd197e2de bio_iov_iter_get_pages +EXPORT_SYMBOL_GPL vmlinux 0xd19c0016 trace_array_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0xd19cd5bc gpiod_to_irq +EXPORT_SYMBOL_GPL vmlinux 0xd1a10e49 xen_register_device_domain_owner +EXPORT_SYMBOL_GPL vmlinux 0xd1c1dec9 acpi_device_modalias EXPORT_SYMBOL_GPL vmlinux 0xd1cac7bf unregister_ftrace_direct EXPORT_SYMBOL_GPL vmlinux 0xd1cbc23c add_timer_on -EXPORT_SYMBOL_GPL vmlinux 0xd1d49342 sbitmap_show +EXPORT_SYMBOL_GPL vmlinux 0xd1d23fb2 mmc_send_tuning +EXPORT_SYMBOL_GPL vmlinux 0xd1e66165 sk_set_memalloc EXPORT_SYMBOL_GPL vmlinux 0xd1e9b2ad __SCT__tp_func_rpm_resume EXPORT_SYMBOL_GPL vmlinux 0xd1f2eee2 nf_logger_find_get -EXPORT_SYMBOL_GPL vmlinux 0xd1ff3fb9 fib6_rule_default EXPORT_SYMBOL_GPL vmlinux 0xd20c66ab __SCT__tp_func_sched_util_est_se_tp -EXPORT_SYMBOL_GPL vmlinux 0xd20d42fb fl6_merge_options -EXPORT_SYMBOL_GPL vmlinux 0xd213a766 pci_epf_alloc_space +EXPORT_SYMBOL_GPL vmlinux 0xd2137e7f device_match_devt EXPORT_SYMBOL_GPL vmlinux 0xd217e9e6 trace_set_clr_event EXPORT_SYMBOL_GPL vmlinux 0xd21b61bd async_schedule_node_domain -EXPORT_SYMBOL_GPL vmlinux 0xd2203321 mbox_client_peek_data -EXPORT_SYMBOL_GPL vmlinux 0xd2314525 usb_string +EXPORT_SYMBOL_GPL vmlinux 0xd21f5d14 xfrm_audit_state_notfound +EXPORT_SYMBOL_GPL vmlinux 0xd22c901f rio_release_dma +EXPORT_SYMBOL_GPL vmlinux 0xd2321870 i2c_dw_acpi_configure +EXPORT_SYMBOL_GPL vmlinux 0xd23cd444 ata_qc_get_active +EXPORT_SYMBOL_GPL vmlinux 0xd2409398 crypto_alloc_base EXPORT_SYMBOL_GPL vmlinux 0xd2423f76 i2c_acpi_get_i2c_resource +EXPORT_SYMBOL_GPL vmlinux 0xd2467d21 perf_aux_output_flag EXPORT_SYMBOL_GPL vmlinux 0xd24e9e8c klist_init -EXPORT_SYMBOL_GPL vmlinux 0xd2534e57 crypto_mod_put +EXPORT_SYMBOL_GPL vmlinux 0xd252f1cc fixed_phy_change_carrier EXPORT_SYMBOL_GPL vmlinux 0xd260af0d ring_buffer_write EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative -EXPORT_SYMBOL_GPL vmlinux 0xd27e3cd3 _copy_from_iter_flushcache +EXPORT_SYMBOL_GPL vmlinux 0xd27ca5dc devm_mbox_controller_register EXPORT_SYMBOL_GPL vmlinux 0xd27f215d gnttab_alloc_grant_references -EXPORT_SYMBOL_GPL vmlinux 0xd2a2a8f2 unregister_pernet_device -EXPORT_SYMBOL_GPL vmlinux 0xd2abca39 pci_common_swizzle -EXPORT_SYMBOL_GPL vmlinux 0xd2ad8ee2 of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0xd2843dea __devm_intel_scu_ipc_register +EXPORT_SYMBOL_GPL vmlinux 0xd289b8bc switchdev_handle_port_obj_add +EXPORT_SYMBOL_GPL vmlinux 0xd2a4cf73 securityfs_remove +EXPORT_SYMBOL_GPL vmlinux 0xd2a640d7 i2c_dw_validate_speed +EXPORT_SYMBOL_GPL vmlinux 0xd2a94a19 regulator_get_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0xd2acdf25 gpiod_set_transitory EXPORT_SYMBOL_GPL vmlinux 0xd2b10a05 ata_timing_find_mode -EXPORT_SYMBOL_GPL vmlinux 0xd2b4bd3a devlink_resource_register -EXPORT_SYMBOL_GPL vmlinux 0xd2bb08f2 dma_mmap_noncontiguous -EXPORT_SYMBOL_GPL vmlinux 0xd2c31dc0 __tracepoint_block_bio_complete -EXPORT_SYMBOL_GPL vmlinux 0xd2cca607 irq_remove_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0xd2d00d93 pinctrl_dev_get_name -EXPORT_SYMBOL_GPL vmlinux 0xd2d32a99 __platform_register_drivers -EXPORT_SYMBOL_GPL vmlinux 0xd2d65a06 xfrm_audit_state_notfound_simple -EXPORT_SYMBOL_GPL vmlinux 0xd2de6730 nvmem_cell_read_variable_le_u32 -EXPORT_SYMBOL_GPL vmlinux 0xd2df3f42 usb_remove_phy -EXPORT_SYMBOL_GPL vmlinux 0xd2fa3074 sk_msg_return_zero -EXPORT_SYMBOL_GPL vmlinux 0xd30798fe ping_common_sendmsg -EXPORT_SYMBOL_GPL vmlinux 0xd31865c5 ima_file_hash +EXPORT_SYMBOL_GPL vmlinux 0xd2c866ca sk_psock_drop +EXPORT_SYMBOL_GPL vmlinux 0xd2e4637d __vfs_removexattr_noperm +EXPORT_SYMBOL_GPL vmlinux 0xd2f9e8b1 clk_register_divider_table +EXPORT_SYMBOL_GPL vmlinux 0xd3152292 inode_sb_list_add EXPORT_SYMBOL_GPL vmlinux 0xd31a2ac5 ring_buffer_oldest_event_ts EXPORT_SYMBOL_GPL vmlinux 0xd320ebaf pci_epc_get_first_free_bar -EXPORT_SYMBOL_GPL vmlinux 0xd34b5906 pm_generic_restore -EXPORT_SYMBOL_GPL vmlinux 0xd34dba3f gpiod_toggle_active_low -EXPORT_SYMBOL_GPL vmlinux 0xd36377fd pci_iov_virtfn_devfn +EXPORT_SYMBOL_GPL vmlinux 0xd32bce50 adp5520_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xd33e80e0 pci_load_saved_state +EXPORT_SYMBOL_GPL vmlinux 0xd3632dbe devm_pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0xd365d0c4 regmap_add_irq_chip_fwnode EXPORT_SYMBOL_GPL vmlinux 0xd36760ef __usb_get_extra_descriptor -EXPORT_SYMBOL_GPL vmlinux 0xd36b93a5 pci_generic_config_read32 +EXPORT_SYMBOL_GPL vmlinux 0xd36db9fc __page_mapcount EXPORT_SYMBOL_GPL vmlinux 0xd3752c27 atomic_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xd3883413 strp_init -EXPORT_SYMBOL_GPL vmlinux 0xd38d71a5 device_match_any -EXPORT_SYMBOL_GPL vmlinux 0xd38e670a __efivar_entry_get -EXPORT_SYMBOL_GPL vmlinux 0xd39baac9 fat_free_clusters +EXPORT_SYMBOL_GPL vmlinux 0xd3987846 __pm_runtime_use_autosuspend EXPORT_SYMBOL_GPL vmlinux 0xd39e9848 put_itimerspec64 -EXPORT_SYMBOL_GPL vmlinux 0xd3c10d4a ipv4_redirect -EXPORT_SYMBOL_GPL vmlinux 0xd3d55e1b regulator_set_voltage_sel_pickable_regmap -EXPORT_SYMBOL_GPL vmlinux 0xd3d8ae56 usb_role_switch_find_by_fwnode -EXPORT_SYMBOL_GPL vmlinux 0xd3e0a15f bio_alloc_kiocb +EXPORT_SYMBOL_GPL vmlinux 0xd3b590a2 phy_restore_page +EXPORT_SYMBOL_GPL vmlinux 0xd3c8f3c2 dm_path_uevent +EXPORT_SYMBOL_GPL vmlinux 0xd3cea814 __dev_change_net_namespace +EXPORT_SYMBOL_GPL vmlinux 0xd3e2e4bc wm831x_reg_read EXPORT_SYMBOL_GPL vmlinux 0xd3ec851c __traceiter_unmap -EXPORT_SYMBOL_GPL vmlinux 0xd3fe3438 metadata_dst_alloc +EXPORT_SYMBOL_GPL vmlinux 0xd3f02840 ncsi_vlan_rx_add_vid +EXPORT_SYMBOL_GPL vmlinux 0xd3f0f102 xen_xlate_unmap_gfn_range +EXPORT_SYMBOL_GPL vmlinux 0xd3f566d1 transport_destroy_device +EXPORT_SYMBOL_GPL vmlinux 0xd3f5cabb inet6_destroy_sock +EXPORT_SYMBOL_GPL vmlinux 0xd3f7e603 sata_scr_write +EXPORT_SYMBOL_GPL vmlinux 0xd3f7e97a __SCK__tp_func_br_fdb_external_learn_add EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq -EXPORT_SYMBOL_GPL vmlinux 0xd41135da perf_event_pause -EXPORT_SYMBOL_GPL vmlinux 0xd417837d phy_init +EXPORT_SYMBOL_GPL vmlinux 0xd40ffe22 rio_mport_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0xd416c5a1 akcipher_register_instance EXPORT_SYMBOL_GPL vmlinux 0xd426dbc4 erst_get_record_count -EXPORT_SYMBOL_GPL vmlinux 0xd42cca72 debugfs_file_get +EXPORT_SYMBOL_GPL vmlinux 0xd42dd9c8 devm_of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xd42decf5 skcipher_register_instance EXPORT_SYMBOL_GPL vmlinux 0xd42f1d4e show_rcu_tasks_rude_gp_kthread -EXPORT_SYMBOL_GPL vmlinux 0xd4303b73 aead_init_geniv +EXPORT_SYMBOL_GPL vmlinux 0xd42f7ea7 crypto_type_has_alg EXPORT_SYMBOL_GPL vmlinux 0xd4404350 __SCT__tp_func_block_split EXPORT_SYMBOL_GPL vmlinux 0xd44a5eac kgdb_register_nmi_console -EXPORT_SYMBOL_GPL vmlinux 0xd459839c irq_chip_request_resources_parent -EXPORT_SYMBOL_GPL vmlinux 0xd46638cb pfn_to_online_page EXPORT_SYMBOL_GPL vmlinux 0xd46af5ef cppc_get_perf_ctrs -EXPORT_SYMBOL_GPL vmlinux 0xd4ad8303 irq_chip_eoi_parent +EXPORT_SYMBOL_GPL vmlinux 0xd487e623 iommu_iova_to_phys +EXPORT_SYMBOL_GPL vmlinux 0xd493c629 usb_autopm_get_interface_async +EXPORT_SYMBOL_GPL vmlinux 0xd499e3f7 elv_rqhash_del +EXPORT_SYMBOL_GPL vmlinux 0xd4b3bd87 __spi_alloc_controller EXPORT_SYMBOL_GPL vmlinux 0xd4b6157e devlink_health_reporter_recovery_done EXPORT_SYMBOL_GPL vmlinux 0xd4b9a616 reset_control_bulk_put +EXPORT_SYMBOL_GPL vmlinux 0xd4bb12fa device_get_child_node_count EXPORT_SYMBOL_GPL vmlinux 0xd4c14632 system_unbound_wq -EXPORT_SYMBOL_GPL vmlinux 0xd4cc71ff pm_wakeup_dev_event -EXPORT_SYMBOL_GPL vmlinux 0xd4cf42f7 wm831x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xd4d0e4fd skb_zerocopy_iter_stream -EXPORT_SYMBOL_GPL vmlinux 0xd4d2009e ata_timing_compute -EXPORT_SYMBOL_GPL vmlinux 0xd4d5906c usb_wakeup_enabled_descendants -EXPORT_SYMBOL_GPL vmlinux 0xd4dc45ec fat_time_fat2unix +EXPORT_SYMBOL_GPL vmlinux 0xd4daf504 dma_map_sgtable +EXPORT_SYMBOL_GPL vmlinux 0xd4ddf544 sysfs_create_link +EXPORT_SYMBOL_GPL vmlinux 0xd4e41246 pci_ats_supported EXPORT_SYMBOL_GPL vmlinux 0xd4e6d7e0 linear_range_get_value +EXPORT_SYMBOL_GPL vmlinux 0xd4eb2a22 usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0xd4f125f5 usb_get_dev EXPORT_SYMBOL_GPL vmlinux 0xd4f5bfa5 iommu_queue_iopf -EXPORT_SYMBOL_GPL vmlinux 0xd51f8453 usb_asmedia_modifyflowcontrol +EXPORT_SYMBOL_GPL vmlinux 0xd5092b53 rio_register_scan +EXPORT_SYMBOL_GPL vmlinux 0xd50a260a phy_set_mode_ext +EXPORT_SYMBOL_GPL vmlinux 0xd50b86b6 usb_init_urb +EXPORT_SYMBOL_GPL vmlinux 0xd52cd997 nvdimm_pmem_region_create +EXPORT_SYMBOL_GPL vmlinux 0xd52d30a6 __SCK__tp_func_suspend_resume EXPORT_SYMBOL_GPL vmlinux 0xd5301b2c linear_range_get_max_value -EXPORT_SYMBOL_GPL vmlinux 0xd5330cd0 devm_reset_control_array_get -EXPORT_SYMBOL_GPL vmlinux 0xd5386c6a irq_domain_push_irq +EXPORT_SYMBOL_GPL vmlinux 0xd5366dc8 sysfs_remove_link EXPORT_SYMBOL_GPL vmlinux 0xd53c67b3 unregister_net_sysctl_table -EXPORT_SYMBOL_GPL vmlinux 0xd53d7e97 icmp_build_probe -EXPORT_SYMBOL_GPL vmlinux 0xd54255a9 mptcp_subflow_init_cookie_req EXPORT_SYMBOL_GPL vmlinux 0xd5474690 usb_role_switch_set_role -EXPORT_SYMBOL_GPL vmlinux 0xd55a2a2a nvmem_cell_read_u64 EXPORT_SYMBOL_GPL vmlinux 0xd55ad93b iommu_group_get_iommudata EXPORT_SYMBOL_GPL vmlinux 0xd57fbd31 hwrng_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd58387df bpf_event_output +EXPORT_SYMBOL_GPL vmlinux 0xd5809395 pci_epf_destroy +EXPORT_SYMBOL_GPL vmlinux 0xd585f6e6 crypto_stats_decompress +EXPORT_SYMBOL_GPL vmlinux 0xd58de95c fat_add_entries +EXPORT_SYMBOL_GPL vmlinux 0xd597e201 tty_put_char EXPORT_SYMBOL_GPL vmlinux 0xd59a1587 linkmode_resolve_pause -EXPORT_SYMBOL_GPL vmlinux 0xd5ab5a25 synth_event_create -EXPORT_SYMBOL_GPL vmlinux 0xd5b4770a __mmc_send_status -EXPORT_SYMBOL_GPL vmlinux 0xd5c7d508 do_splice_from +EXPORT_SYMBOL_GPL vmlinux 0xd5a5f271 pinctrl_select_default_state +EXPORT_SYMBOL_GPL vmlinux 0xd5ba088c phy_modify +EXPORT_SYMBOL_GPL vmlinux 0xd5bf0982 setfl +EXPORT_SYMBOL_GPL vmlinux 0xd5d3e576 usb_disable_xhci_ports EXPORT_SYMBOL_GPL vmlinux 0xd5f3bb7b set_memory_encrypted -EXPORT_SYMBOL_GPL vmlinux 0xd5ff26db mmu_notifier_put -EXPORT_SYMBOL_GPL vmlinux 0xd61a7d73 rio_route_add_entry -EXPORT_SYMBOL_GPL vmlinux 0xd61cfebd virtio_config_changed -EXPORT_SYMBOL_GPL vmlinux 0xd6234942 virtqueue_enable_cb_delayed -EXPORT_SYMBOL_GPL vmlinux 0xd62bc6ec xfrm_audit_state_replay -EXPORT_SYMBOL_GPL vmlinux 0xd63343f3 ip_icmp_error_rfc4884 -EXPORT_SYMBOL_GPL vmlinux 0xd6400b8b fsverity_prepare_setattr -EXPORT_SYMBOL_GPL vmlinux 0xd6411308 regulator_sync_voltage -EXPORT_SYMBOL_GPL vmlinux 0xd64a29a0 uart_insert_char +EXPORT_SYMBOL_GPL vmlinux 0xd5f48532 devm_pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd6197178 gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0xd6280b0e dma_get_required_mask +EXPORT_SYMBOL_GPL vmlinux 0xd62bcdcb strp_data_ready EXPORT_SYMBOL_GPL vmlinux 0xd64ed259 __memcat_p -EXPORT_SYMBOL_GPL vmlinux 0xd651a2a8 cpu_subsys -EXPORT_SYMBOL_GPL vmlinux 0xd672a436 ata_cable_unknown +EXPORT_SYMBOL_GPL vmlinux 0xd6574dde rio_register_mport +EXPORT_SYMBOL_GPL vmlinux 0xd65bf339 gpiochip_reqres_irq +EXPORT_SYMBOL_GPL vmlinux 0xd66479bc dm_bio_from_per_bio_data EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget -EXPORT_SYMBOL_GPL vmlinux 0xd67631f5 __pm_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0xd6a90703 anon_transport_class_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd6aa3b61 phy_led_trigger_change_speed -EXPORT_SYMBOL_GPL vmlinux 0xd6b512e2 hwmon_device_register_with_info -EXPORT_SYMBOL_GPL vmlinux 0xd6c66164 __traceiter_br_fdb_update -EXPORT_SYMBOL_GPL vmlinux 0xd6d49261 vp_modern_set_queue_size -EXPORT_SYMBOL_GPL vmlinux 0xd6e21614 acpi_debugfs_dir -EXPORT_SYMBOL_GPL vmlinux 0xd6ee4ed7 crypto_unregister_akcipher -EXPORT_SYMBOL_GPL vmlinux 0xd6f68fd5 disk_uevent +EXPORT_SYMBOL_GPL vmlinux 0xd6954827 pci_d3cold_enable +EXPORT_SYMBOL_GPL vmlinux 0xd698c89d fscrypt_ioctl_get_nonce +EXPORT_SYMBOL_GPL vmlinux 0xd6b5c43d led_compose_name +EXPORT_SYMBOL_GPL vmlinux 0xd6bf60eb acpi_dma_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0xd6c22420 fsverity_ioctl_read_metadata +EXPORT_SYMBOL_GPL vmlinux 0xd6deab33 ehci_setup +EXPORT_SYMBOL_GPL vmlinux 0xd6df79bc __SCK__tp_func_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0xd6edd1b8 dev_nit_active +EXPORT_SYMBOL_GPL vmlinux 0xd6f7a8cc auxiliary_device_init +EXPORT_SYMBOL_GPL vmlinux 0xd6f9d8c7 phy_destroy EXPORT_SYMBOL_GPL vmlinux 0xd6feefa5 agp_num_entries -EXPORT_SYMBOL_GPL vmlinux 0xd6fefcb7 acpi_device_modalias -EXPORT_SYMBOL_GPL vmlinux 0xd70d8707 fscrypt_ioctl_get_nonce -EXPORT_SYMBOL_GPL vmlinux 0xd71089ac nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0xd70196a0 devlink_params_publish +EXPORT_SYMBOL_GPL vmlinux 0xd70d07b5 lwtunnel_output +EXPORT_SYMBOL_GPL vmlinux 0xd718fe6d usb_amd_pt_check_port +EXPORT_SYMBOL_GPL vmlinux 0xd71c8d16 acpi_subsys_prepare EXPORT_SYMBOL_GPL vmlinux 0xd7269c64 osc_sb_native_usb4_control EXPORT_SYMBOL_GPL vmlinux 0xd7293ffc percpu_ref_reinit +EXPORT_SYMBOL_GPL vmlinux 0xd72c4431 netdev_is_rx_handler_busy EXPORT_SYMBOL_GPL vmlinux 0xd72feba2 xenbus_read_driver_state -EXPORT_SYMBOL_GPL vmlinux 0xd738e422 ohci_setup +EXPORT_SYMBOL_GPL vmlinux 0xd73073b8 inet_csk_route_child_sock EXPORT_SYMBOL_GPL vmlinux 0xd7399d2a efivar_entry_iter_end +EXPORT_SYMBOL_GPL vmlinux 0xd74d1bae fat_getattr +EXPORT_SYMBOL_GPL vmlinux 0xd74d1c6f devm_hwspin_lock_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd7574f46 ata_acpi_stm EXPORT_SYMBOL_GPL vmlinux 0xd75b20aa rsa_parse_priv_key -EXPORT_SYMBOL_GPL vmlinux 0xd75c08c9 platform_device_register EXPORT_SYMBOL_GPL vmlinux 0xd768e985 regulator_has_full_constraints -EXPORT_SYMBOL_GPL vmlinux 0xd76febca bus_get_device_klist -EXPORT_SYMBOL_GPL vmlinux 0xd7720883 pci_epf_bind +EXPORT_SYMBOL_GPL vmlinux 0xd76ad32a init_uts_ns +EXPORT_SYMBOL_GPL vmlinux 0xd7718101 regulator_is_equal EXPORT_SYMBOL_GPL vmlinux 0xd774957d mpi_write_to_sgl -EXPORT_SYMBOL_GPL vmlinux 0xd796bd0d xfrm_get_translator -EXPORT_SYMBOL_GPL vmlinux 0xd7a53974 request_firmware_direct +EXPORT_SYMBOL_GPL vmlinux 0xd77ce5c6 trace_array_destroy +EXPORT_SYMBOL_GPL vmlinux 0xd7892e65 sch_frag_xmit_hook EXPORT_SYMBOL_GPL vmlinux 0xd7b5dfee xas_split EXPORT_SYMBOL_GPL vmlinux 0xd7b7fb80 pkcs7_validate_trust -EXPORT_SYMBOL_GPL vmlinux 0xd7ca7473 nexthop_find_by_id -EXPORT_SYMBOL_GPL vmlinux 0xd7cc1e4e clk_hw_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd7c316b6 md_rdev_clear EXPORT_SYMBOL_GPL vmlinux 0xd7cea889 edac_mod_work EXPORT_SYMBOL_GPL vmlinux 0xd7d7f2a7 devlink_port_health_reporter_destroy -EXPORT_SYMBOL_GPL vmlinux 0xd7f1754a kthread_data -EXPORT_SYMBOL_GPL vmlinux 0xd7f51f89 compat_only_sysfs_link_entry_to_kobj -EXPORT_SYMBOL_GPL vmlinux 0xd7f8da4a rio_dma_prep_slave_sg -EXPORT_SYMBOL_GPL vmlinux 0xd7fc4ed5 wm8350_read_auxadc -EXPORT_SYMBOL_GPL vmlinux 0xd7ff5534 devm_namespace_disable -EXPORT_SYMBOL_GPL vmlinux 0xd80b8a25 crypto_grab_ahash -EXPORT_SYMBOL_GPL vmlinux 0xd8249307 nf_checksum_partial -EXPORT_SYMBOL_GPL vmlinux 0xd8291b90 genphy_c45_pma_read_abilities -EXPORT_SYMBOL_GPL vmlinux 0xd82d020e __SCK__tp_func_pelt_rt_tp -EXPORT_SYMBOL_GPL vmlinux 0xd841a631 devm_watchdog_register_device -EXPORT_SYMBOL_GPL vmlinux 0xd8450fd1 regmap_multi_reg_write_bypassed -EXPORT_SYMBOL_GPL vmlinux 0xd84528a7 dma_buf_move_notify +EXPORT_SYMBOL_GPL vmlinux 0xd7f0ccd6 pci_cfg_access_unlock +EXPORT_SYMBOL_GPL vmlinux 0xd7f644e6 usb_alloc_dev +EXPORT_SYMBOL_GPL vmlinux 0xd8063a9e iomap_writepages +EXPORT_SYMBOL_GPL vmlinux 0xd828119d dummy_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0xd82b0285 inet_hash EXPORT_SYMBOL_GPL vmlinux 0xd84d35bd dax_read_lock +EXPORT_SYMBOL_GPL vmlinux 0xd863a72c usb_add_phy +EXPORT_SYMBOL_GPL vmlinux 0xd87ad10f fib_rules_register EXPORT_SYMBOL_GPL vmlinux 0xd87fc0a0 usb_amd_prefetch_quirk -EXPORT_SYMBOL_GPL vmlinux 0xd881d16a pinctrl_find_gpio_range_from_pin -EXPORT_SYMBOL_GPL vmlinux 0xd88de24d fuse_direct_io -EXPORT_SYMBOL_GPL vmlinux 0xd8924a77 i2c_match_id -EXPORT_SYMBOL_GPL vmlinux 0xd8c042f7 skb_clone_tx_timestamp -EXPORT_SYMBOL_GPL vmlinux 0xd8c648f6 acpiphp_unregister_attention -EXPORT_SYMBOL_GPL vmlinux 0xd8c9ea7a virtio_break_device +EXPORT_SYMBOL_GPL vmlinux 0xd891c1e4 icc_node_del +EXPORT_SYMBOL_GPL vmlinux 0xd89bb244 sk_msg_trim +EXPORT_SYMBOL_GPL vmlinux 0xd8aa02c6 rio_unmap_inb_region +EXPORT_SYMBOL_GPL vmlinux 0xd8badf58 xhci_ext_cap_init EXPORT_SYMBOL_GPL vmlinux 0xd8d065dd hv_stimer_alloc +EXPORT_SYMBOL_GPL vmlinux 0xd8d1f5ad pm_runtime_forbid EXPORT_SYMBOL_GPL vmlinux 0xd8d68ab1 dmi_memdev_type -EXPORT_SYMBOL_GPL vmlinux 0xd8dc1e1c scsi_autopm_get_device -EXPORT_SYMBOL_GPL vmlinux 0xd8dc25c6 __tracepoint_block_rq_remap -EXPORT_SYMBOL_GPL vmlinux 0xd8e292d9 xenbus_grant_ring -EXPORT_SYMBOL_GPL vmlinux 0xd8e9a806 da9052_disable_irq_nosync +EXPORT_SYMBOL_GPL vmlinux 0xd8e6dae3 powercap_unregister_control_type +EXPORT_SYMBOL_GPL vmlinux 0xd8e8c981 pci_bus_resource_n +EXPORT_SYMBOL_GPL vmlinux 0xd8eb3692 __SCK__tp_func_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0xd8fa2b3a crypto_dequeue_request +EXPORT_SYMBOL_GPL vmlinux 0xd8fa6b13 skb_mpls_dec_ttl EXPORT_SYMBOL_GPL vmlinux 0xd8fbb14d net_cls_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xd90249e1 fwnode_remove_software_node -EXPORT_SYMBOL_GPL vmlinux 0xd917274e vp_modern_get_status +EXPORT_SYMBOL_GPL vmlinux 0xd90190e5 gpiod_get_array_value_cansleep EXPORT_SYMBOL_GPL vmlinux 0xd919806a amd_cache_northbridges EXPORT_SYMBOL_GPL vmlinux 0xd91dbd1f xdp_alloc_skb_bulk -EXPORT_SYMBOL_GPL vmlinux 0xd91f9a86 mmc_cmdq_disable EXPORT_SYMBOL_GPL vmlinux 0xd92ef192 security_kernel_post_load_data EXPORT_SYMBOL_GPL vmlinux 0xd92f0791 leds_list_lock +EXPORT_SYMBOL_GPL vmlinux 0xd9339b38 blk_rq_err_bytes EXPORT_SYMBOL_GPL vmlinux 0xd93a5cb1 efivar_variable_is_removable -EXPORT_SYMBOL_GPL vmlinux 0xd9439dc0 pci_reset_bus -EXPORT_SYMBOL_GPL vmlinux 0xd9545093 uprobe_register -EXPORT_SYMBOL_GPL vmlinux 0xd959a3f0 genphy_c45_an_disable_aneg -EXPORT_SYMBOL_GPL vmlinux 0xd95c5c31 __devm_rtc_register_device -EXPORT_SYMBOL_GPL vmlinux 0xd95ccb04 regmap_irq_get_domain +EXPORT_SYMBOL_GPL vmlinux 0xd9515524 uart_xchar_out +EXPORT_SYMBOL_GPL vmlinux 0xd95976c8 add_disk_randomness +EXPORT_SYMBOL_GPL vmlinux 0xd967a7b9 icmp_build_probe EXPORT_SYMBOL_GPL vmlinux 0xd96babb4 interval_tree_iter_next -EXPORT_SYMBOL_GPL vmlinux 0xd97a1173 crypto_drop_spawn -EXPORT_SYMBOL_GPL vmlinux 0xd98147dd is_swiotlb_active +EXPORT_SYMBOL_GPL vmlinux 0xd97259d1 clockevents_config_and_register +EXPORT_SYMBOL_GPL vmlinux 0xd97d252f udp_cmsg_send +EXPORT_SYMBOL_GPL vmlinux 0xd97f99a5 dm_accept_partial_bio EXPORT_SYMBOL_GPL vmlinux 0xd9916c3a idr_alloc_u32 +EXPORT_SYMBOL_GPL vmlinux 0xd996025a sysfs_create_link_nowarn EXPORT_SYMBOL_GPL vmlinux 0xd9992eb4 uv_bios_get_geoinfo -EXPORT_SYMBOL_GPL vmlinux 0xd9a03a5c device_remove_file_self -EXPORT_SYMBOL_GPL vmlinux 0xd9a21a27 fat_build_inode -EXPORT_SYMBOL_GPL vmlinux 0xd9bd6d59 balloon_aops -EXPORT_SYMBOL_GPL vmlinux 0xd9c64e5d __crypto_alloc_tfm -EXPORT_SYMBOL_GPL vmlinux 0xd9da6411 sdio_readw -EXPORT_SYMBOL_GPL vmlinux 0xd9de8b6f nexthop_select_path +EXPORT_SYMBOL_GPL vmlinux 0xd9c54656 dm_put +EXPORT_SYMBOL_GPL vmlinux 0xd9c7ede5 usb_get_intf +EXPORT_SYMBOL_GPL vmlinux 0xd9c896dd rio_mport_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0xd9d1cfb2 devlink_dpipe_table_register EXPORT_SYMBOL_GPL vmlinux 0xd9e24457 ring_buffer_peek -EXPORT_SYMBOL_GPL vmlinux 0xd9eeed6c crypto_grab_spawn -EXPORT_SYMBOL_GPL vmlinux 0xd9f67030 power_supply_get_property -EXPORT_SYMBOL_GPL vmlinux 0xd9fd9621 phy_validate +EXPORT_SYMBOL_GPL vmlinux 0xd9ed8513 of_pm_clk_add_clk EXPORT_SYMBOL_GPL vmlinux 0xd9ff2172 ezx_pcap_write -EXPORT_SYMBOL_GPL vmlinux 0xda067aff skb_zerocopy +EXPORT_SYMBOL_GPL vmlinux 0xda005ec0 sysfs_chmod_file EXPORT_SYMBOL_GPL vmlinux 0xda0947de kmsg_dump_unregister -EXPORT_SYMBOL_GPL vmlinux 0xda11fb40 spi_take_timestamp_pre -EXPORT_SYMBOL_GPL vmlinux 0xda12f8d7 unregister_acpi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xda1ad65f replace_page_cache_page EXPORT_SYMBOL_GPL vmlinux 0xda1f78ee clear_hv_tscchange_cb -EXPORT_SYMBOL_GPL vmlinux 0xda2a9c52 regulator_list_voltage_table -EXPORT_SYMBOL_GPL vmlinux 0xda2dabd0 ehci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0xda2c2abd watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0xda2d5201 cpci_hp_unregister_bus EXPORT_SYMBOL_GPL vmlinux 0xda320d31 sfp_module_start -EXPORT_SYMBOL_GPL vmlinux 0xda3cc721 ata_bmdma_status -EXPORT_SYMBOL_GPL vmlinux 0xda430390 crypto_ahash_finup -EXPORT_SYMBOL_GPL vmlinux 0xda58276e irq_chip_set_parent_state -EXPORT_SYMBOL_GPL vmlinux 0xda5ad754 fscrypt_mergeable_bio -EXPORT_SYMBOL_GPL vmlinux 0xda731cf8 dax_copy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0xda62195a pci_cfg_access_trylock +EXPORT_SYMBOL_GPL vmlinux 0xda64a34d devm_pm_opp_attach_genpd +EXPORT_SYMBOL_GPL vmlinux 0xda6a51ba dev_get_regmap EXPORT_SYMBOL_GPL vmlinux 0xda7912d4 freq_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0xda8129d6 rtnl_put_cacheinfo EXPORT_SYMBOL_GPL vmlinux 0xda8369a7 __traceiter_extlog_mem_event +EXPORT_SYMBOL_GPL vmlinux 0xda8b8bd6 power_supply_external_power_changed +EXPORT_SYMBOL_GPL vmlinux 0xda8c39f1 devm_extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0xda8df861 sock_gen_put EXPORT_SYMBOL_GPL vmlinux 0xda8e1302 software_node_find_by_name EXPORT_SYMBOL_GPL vmlinux 0xdaa06dc1 acpi_lpat_raw_to_temp -EXPORT_SYMBOL_GPL vmlinux 0xdaaa0b54 usb_enable_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0xdab07c93 rio_mport_class +EXPORT_SYMBOL_GPL vmlinux 0xdaa676da scsi_dh_attach EXPORT_SYMBOL_GPL vmlinux 0xdab5a1eb interval_tree_insert -EXPORT_SYMBOL_GPL vmlinux 0xdacd84d0 bus_find_device -EXPORT_SYMBOL_GPL vmlinux 0xdae1191b input_ff_upload -EXPORT_SYMBOL_GPL vmlinux 0xdae7f889 device_register -EXPORT_SYMBOL_GPL vmlinux 0xdaec6fb3 usb_autopm_put_interface +EXPORT_SYMBOL_GPL vmlinux 0xdac4f38f gpiochip_add_data_with_key +EXPORT_SYMBOL_GPL vmlinux 0xdac5907f virtqueue_kick +EXPORT_SYMBOL_GPL vmlinux 0xdad30bd3 scsi_mode_select +EXPORT_SYMBOL_GPL vmlinux 0xdad79a7e dm_internal_resume_fast +EXPORT_SYMBOL_GPL vmlinux 0xdad7f342 wm8350_block_read +EXPORT_SYMBOL_GPL vmlinux 0xdaef0de4 devm_usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0xdaef39fe pci_acpi_set_companion_lookup_hook EXPORT_SYMBOL_GPL vmlinux 0xdaf4dfb3 fb_mode_option EXPORT_SYMBOL_GPL vmlinux 0xdaf5c16e __cookie_v4_check -EXPORT_SYMBOL_GPL vmlinux 0xdb0c327e sock_map_unhash +EXPORT_SYMBOL_GPL vmlinux 0xdafa2223 spi_take_timestamp_post +EXPORT_SYMBOL_GPL vmlinux 0xdafe51a2 to_nd_desc +EXPORT_SYMBOL_GPL vmlinux 0xdb20f3e7 phy_modify_mmd_changed EXPORT_SYMBOL_GPL vmlinux 0xdb3498ab kobject_move -EXPORT_SYMBOL_GPL vmlinux 0xdb372a00 ata_bmdma_irq_clear -EXPORT_SYMBOL_GPL vmlinux 0xdb3a9c85 blk_queue_zone_write_granularity -EXPORT_SYMBOL_GPL vmlinux 0xdb3fd4ef pci_cfg_access_unlock +EXPORT_SYMBOL_GPL vmlinux 0xdb43263b vfio_pci_core_sriov_configure +EXPORT_SYMBOL_GPL vmlinux 0xdb4f4c32 dma_buf_map_attachment EXPORT_SYMBOL_GPL vmlinux 0xdb62dc67 __SCT__tp_func_map EXPORT_SYMBOL_GPL vmlinux 0xdb63a944 acpi_lpat_get_conversion_table -EXPORT_SYMBOL_GPL vmlinux 0xdb7ff96e ohci_init_driver -EXPORT_SYMBOL_GPL vmlinux 0xdb81d922 regulator_map_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0xdb7aa01a ata_scsi_slave_config +EXPORT_SYMBOL_GPL vmlinux 0xdb7cccff i2c_new_dummy_device EXPORT_SYMBOL_GPL vmlinux 0xdb82f71f sbitmap_init_node EXPORT_SYMBOL_GPL vmlinux 0xdb8a1b3f usermodehelper_read_trylock +EXPORT_SYMBOL_GPL vmlinux 0xdb8c0176 rio_route_get_entry +EXPORT_SYMBOL_GPL vmlinux 0xdb9d0a0f crypto_stats_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0xdb9ffe82 devm_gpiod_put_array EXPORT_SYMBOL_GPL vmlinux 0xdba0e344 machine_check_poll -EXPORT_SYMBOL_GPL vmlinux 0xdbd96caa nf_queue_entry_free +EXPORT_SYMBOL_GPL vmlinux 0xdbc16588 shash_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0xdbc4488a acpi_dev_add_driver_gpios +EXPORT_SYMBOL_GPL vmlinux 0xdbcda6c8 vfio_pci_register_dev_region +EXPORT_SYMBOL_GPL vmlinux 0xdbcf35f5 tty_buffer_space_avail +EXPORT_SYMBOL_GPL vmlinux 0xdbd671a2 input_ff_flush EXPORT_SYMBOL_GPL vmlinux 0xdbdb0e8b request_any_context_irq -EXPORT_SYMBOL_GPL vmlinux 0xdbe042b7 register_pernet_subsys -EXPORT_SYMBOL_GPL vmlinux 0xdbe1ce59 __SCK__tp_func_powernv_throttle -EXPORT_SYMBOL_GPL vmlinux 0xdbedbd14 crypto_register_templates +EXPORT_SYMBOL_GPL vmlinux 0xdbe1deec __traceiter_br_fdb_update +EXPORT_SYMBOL_GPL vmlinux 0xdbf03192 phy_pm_runtime_forbid EXPORT_SYMBOL_GPL vmlinux 0xdbf7cb70 mpi_get_nbits EXPORT_SYMBOL_GPL vmlinux 0xdc02eb39 dmi_available -EXPORT_SYMBOL_GPL vmlinux 0xdc085282 crypto_unregister_ahash -EXPORT_SYMBOL_GPL vmlinux 0xdc119182 devm_gpiod_get_array EXPORT_SYMBOL_GPL vmlinux 0xdc14a211 xen_hvm_evtchn_do_upcall -EXPORT_SYMBOL_GPL vmlinux 0xdc1e530f security_path_symlink -EXPORT_SYMBOL_GPL vmlinux 0xdc2485cb regulator_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0xdc2ecde1 ipv6_dup_options -EXPORT_SYMBOL_GPL vmlinux 0xdc3ff354 trace_array_init_printk -EXPORT_SYMBOL_GPL vmlinux 0xdc433eec irq_domain_add_legacy EXPORT_SYMBOL_GPL vmlinux 0xdc43bdc6 pci_vpd_find_ro_info_keyword EXPORT_SYMBOL_GPL vmlinux 0xdc45a5db edac_stop_work -EXPORT_SYMBOL_GPL vmlinux 0xdc56698a iommu_aux_attach_device +EXPORT_SYMBOL_GPL vmlinux 0xdc45ed6d pci_epc_get_features +EXPORT_SYMBOL_GPL vmlinux 0xdc54fd92 hwmon_device_register_with_info +EXPORT_SYMBOL_GPL vmlinux 0xdc5cbbe5 crypto_grab_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xdc5f7153 do_unbind_con_driver EXPORT_SYMBOL_GPL vmlinux 0xdc6596fa irq_set_parent EXPORT_SYMBOL_GPL vmlinux 0xdc6699cb acpi_dev_free_resource_list -EXPORT_SYMBOL_GPL vmlinux 0xdc68cc70 led_sysfs_enable -EXPORT_SYMBOL_GPL vmlinux 0xdc6fa12a cgroup_attach_task_all +EXPORT_SYMBOL_GPL vmlinux 0xdc7149c3 devm_gpiod_get_optional EXPORT_SYMBOL_GPL vmlinux 0xdc719bcd ftrace_ops_set_global_filter +EXPORT_SYMBOL_GPL vmlinux 0xdc744c91 crypto_lookup_template +EXPORT_SYMBOL_GPL vmlinux 0xdc76f0ee skb_gso_validate_mac_len +EXPORT_SYMBOL_GPL vmlinux 0xdc782297 sk_setup_caps EXPORT_SYMBOL_GPL vmlinux 0xdc7df67f apei_exec_ctx_init -EXPORT_SYMBOL_GPL vmlinux 0xdc7fff6d debugfs_print_regs32 EXPORT_SYMBOL_GPL vmlinux 0xdc825d6c usb_amd_quirk_pll_disable -EXPORT_SYMBOL_GPL vmlinux 0xdc82dc70 devm_regulator_register EXPORT_SYMBOL_GPL vmlinux 0xdc841b74 misc_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xdc961150 __tracepoint_pelt_rt_tp +EXPORT_SYMBOL_GPL vmlinux 0xdc8a29d4 regulator_map_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0xdc8a6c2a dw_pcie_upconfig_setup +EXPORT_SYMBOL_GPL vmlinux 0xdc977c49 wm831x_device_shutdown EXPORT_SYMBOL_GPL vmlinux 0xdc97af2e syscore_suspend EXPORT_SYMBOL_GPL vmlinux 0xdc9fa232 raw_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0xdca71adb da9052_free_irq -EXPORT_SYMBOL_GPL vmlinux 0xdcdd88b9 of_hwspin_lock_get_id -EXPORT_SYMBOL_GPL vmlinux 0xdcecef98 __phy_modify_mmd -EXPORT_SYMBOL_GPL vmlinux 0xdcfc5d00 iomap_file_buffered_write +EXPORT_SYMBOL_GPL vmlinux 0xdcae7be6 reset_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdcc1867e cdrom_read_tocentry +EXPORT_SYMBOL_GPL vmlinux 0xdcc3f237 blk_mq_alloc_sq_tag_set +EXPORT_SYMBOL_GPL vmlinux 0xdcc6ebea devfreq_event_get_event +EXPORT_SYMBOL_GPL vmlinux 0xdcc75598 regulator_list_hardware_vsel +EXPORT_SYMBOL_GPL vmlinux 0xdccb728d pm_generic_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0xdce70eea bpf_event_output +EXPORT_SYMBOL_GPL vmlinux 0xdce88344 irq_setup_alt_chip +EXPORT_SYMBOL_GPL vmlinux 0xdcebb775 __SCK__tp_func_tcp_bad_csum EXPORT_SYMBOL_GPL vmlinux 0xdd0762df set_worker_desc -EXPORT_SYMBOL_GPL vmlinux 0xdd0b988d pci_dev_trylock -EXPORT_SYMBOL_GPL vmlinux 0xdd343898 pinctrl_get_group_pins +EXPORT_SYMBOL_GPL vmlinux 0xdd0c1dd9 pci_bus_max_busnr +EXPORT_SYMBOL_GPL vmlinux 0xdd1acad5 devlink_param_publish +EXPORT_SYMBOL_GPL vmlinux 0xdd220b4d rio_request_dma +EXPORT_SYMBOL_GPL vmlinux 0xdd2dd8f5 acpi_processor_get_performance_info EXPORT_SYMBOL_GPL vmlinux 0xdd391eff profile_event_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdd41e9a8 dm_internal_resume EXPORT_SYMBOL_GPL vmlinux 0xdd4253c7 unregister_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0xdd49648e __traceiter_devlink_hwmsg +EXPORT_SYMBOL_GPL vmlinux 0xdd5823fd hwmon_device_unregister EXPORT_SYMBOL_GPL vmlinux 0xdd626ee3 fuse_len_args EXPORT_SYMBOL_GPL vmlinux 0xdd6ddcec __traceiter_error_report_end -EXPORT_SYMBOL_GPL vmlinux 0xdd79eef8 kthread_flush_work -EXPORT_SYMBOL_GPL vmlinux 0xdd928dd7 sock_map_close EXPORT_SYMBOL_GPL vmlinux 0xdd9dd80d xen_pvh -EXPORT_SYMBOL_GPL vmlinux 0xddbd0809 tty_buffer_space_avail +EXPORT_SYMBOL_GPL vmlinux 0xdda0d22c regmap_write +EXPORT_SYMBOL_GPL vmlinux 0xddadb43d ata_acpi_gtm_xfermask +EXPORT_SYMBOL_GPL vmlinux 0xddb187d2 fsnotify_put_mark +EXPORT_SYMBOL_GPL vmlinux 0xddb22d9e dev_pm_opp_set_prop_name EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove -EXPORT_SYMBOL_GPL vmlinux 0xddf26883 elv_rqhash_del -EXPORT_SYMBOL_GPL vmlinux 0xddfb84d5 vp_modern_get_queue_enable +EXPORT_SYMBOL_GPL vmlinux 0xdde04dc6 md_find_rdev_nr_rcu +EXPORT_SYMBOL_GPL vmlinux 0xdde6ba5a wwan_create_port +EXPORT_SYMBOL_GPL vmlinux 0xddfcd1ce bus_sort_breadthfirst +EXPORT_SYMBOL_GPL vmlinux 0xddffafed device_for_each_child_reverse EXPORT_SYMBOL_GPL vmlinux 0xde09a94d xas_find -EXPORT_SYMBOL_GPL vmlinux 0xde192d81 regulator_set_voltage_time -EXPORT_SYMBOL_GPL vmlinux 0xde21fe48 shash_ahash_finup -EXPORT_SYMBOL_GPL vmlinux 0xde2a8b9a mptcp_pm_get_add_addr_accept_max -EXPORT_SYMBOL_GPL vmlinux 0xde2c4e12 ack_all_badblocks -EXPORT_SYMBOL_GPL vmlinux 0xde39f455 usb_hcd_check_unlink_urb -EXPORT_SYMBOL_GPL vmlinux 0xde42bea7 crypto_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xde12a0af serdev_device_write_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xde21b1c8 usb_disable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0xde2556d9 dev_pm_opp_set_rate +EXPORT_SYMBOL_GPL vmlinux 0xde405b65 cpufreq_cpu_put +EXPORT_SYMBOL_GPL vmlinux 0xde408e7e iommu_setup_dma_ops +EXPORT_SYMBOL_GPL vmlinux 0xde433fd3 dev_pm_opp_attach_genpd +EXPORT_SYMBOL_GPL vmlinux 0xde546efd vchan_dma_desc_free_list +EXPORT_SYMBOL_GPL vmlinux 0xde5a884e serdev_device_alloc EXPORT_SYMBOL_GPL vmlinux 0xde6f1851 TSS_checkhmac1 -EXPORT_SYMBOL_GPL vmlinux 0xde8d2c83 dax_iomap_fault +EXPORT_SYMBOL_GPL vmlinux 0xde7922e3 edac_pci_create_generic_ctl +EXPORT_SYMBOL_GPL vmlinux 0xde90b271 ata_do_set_mode EXPORT_SYMBOL_GPL vmlinux 0xde9ab8c7 xenbus_rm -EXPORT_SYMBOL_GPL vmlinux 0xde9e8e64 crypto_unregister_shash -EXPORT_SYMBOL_GPL vmlinux 0xde9fe1ee sched_setattr_nocheck -EXPORT_SYMBOL_GPL vmlinux 0xdea64b34 fat_dir_empty -EXPORT_SYMBOL_GPL vmlinux 0xdebedf1d fib6_check_nexthop -EXPORT_SYMBOL_GPL vmlinux 0xdec0bca6 regulator_get_optional -EXPORT_SYMBOL_GPL vmlinux 0xdece8f00 tcp_leave_memory_pressure -EXPORT_SYMBOL_GPL vmlinux 0xded8508e debugfs_create_u8 -EXPORT_SYMBOL_GPL vmlinux 0xded86dc6 dev_coredumpm -EXPORT_SYMBOL_GPL vmlinux 0xdedcaeae regulator_disable -EXPORT_SYMBOL_GPL vmlinux 0xdef8f11e pm_generic_freeze -EXPORT_SYMBOL_GPL vmlinux 0xdefea069 __irq_domain_alloc_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xdedd392b devlink_rate_leaf_create +EXPORT_SYMBOL_GPL vmlinux 0xdedf34b4 regulator_get_voltage EXPORT_SYMBOL_GPL vmlinux 0xdeffa0a7 edac_raw_mc_handle_error EXPORT_SYMBOL_GPL vmlinux 0xdf0ca3f4 cpu_latency_qos_request_active EXPORT_SYMBOL_GPL vmlinux 0xdf0f75c6 eventfd_signal -EXPORT_SYMBOL_GPL vmlinux 0xdf139db7 irq_gc_mask_clr_bit EXPORT_SYMBOL_GPL vmlinux 0xdf1882af dbgp_reset_prep -EXPORT_SYMBOL_GPL vmlinux 0xdf25662c iommu_device_sysfs_add EXPORT_SYMBOL_GPL vmlinux 0xdf2738bb cpu_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xdf41f401 device_link_remove +EXPORT_SYMBOL_GPL vmlinux 0xdf2c4a88 blkdev_report_zones EXPORT_SYMBOL_GPL vmlinux 0xdf448d1c fanout_mutex -EXPORT_SYMBOL_GPL vmlinux 0xdf45d38e __trace_note_message -EXPORT_SYMBOL_GPL vmlinux 0xdf47ca01 of_phy_put -EXPORT_SYMBOL_GPL vmlinux 0xdf608e37 pci_epc_map_msi_irq +EXPORT_SYMBOL_GPL vmlinux 0xdf4be8fd clk_register_mux_table +EXPORT_SYMBOL_GPL vmlinux 0xdf506610 fuse_send_init +EXPORT_SYMBOL_GPL vmlinux 0xdf53e6bf lwtstate_free +EXPORT_SYMBOL_GPL vmlinux 0xdf555e76 ndo_dflt_bridge_getlink +EXPORT_SYMBOL_GPL vmlinux 0xdf5a05c5 rio_free_net +EXPORT_SYMBOL_GPL vmlinux 0xdf61946b page_mkclean +EXPORT_SYMBOL_GPL vmlinux 0xdf7c1028 xfer_to_guest_mode_handle_work +EXPORT_SYMBOL_GPL vmlinux 0xdf7d2cdb iptunnel_metadata_reply EXPORT_SYMBOL_GPL vmlinux 0xdf81924d uv_bios_mq_watchlist_free -EXPORT_SYMBOL_GPL vmlinux 0xdf84024b peernet2id_alloc -EXPORT_SYMBOL_GPL vmlinux 0xdf98cc4b set_capacity_and_notify -EXPORT_SYMBOL_GPL vmlinux 0xdfb344a0 ping_hash -EXPORT_SYMBOL_GPL vmlinux 0xdfb86369 pci_num_vf -EXPORT_SYMBOL_GPL vmlinux 0xdfb9e084 get_device +EXPORT_SYMBOL_GPL vmlinux 0xdfa0894f sata_pmp_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xdfa172b3 ata_scsi_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0xdfa1c507 dev_err_probe +EXPORT_SYMBOL_GPL vmlinux 0xdfabfbc0 bus_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xdfca55d1 regmap_register_patch EXPORT_SYMBOL_GPL vmlinux 0xdfcb6c90 mctrl_gpio_set -EXPORT_SYMBOL_GPL vmlinux 0xdfcd46ef make_device_exclusive_range -EXPORT_SYMBOL_GPL vmlinux 0xdfe04b38 devlink_param_publish -EXPORT_SYMBOL_GPL vmlinux 0xdfe7a96e unix_outq_len -EXPORT_SYMBOL_GPL vmlinux 0xe002580d bio_start_io_acct -EXPORT_SYMBOL_GPL vmlinux 0xe00cf02e acpi_dev_add_driver_gpios +EXPORT_SYMBOL_GPL vmlinux 0xdfcbab92 devm_ioremap_uc +EXPORT_SYMBOL_GPL vmlinux 0xdfe07b19 sched_trace_rq_avg_rt +EXPORT_SYMBOL_GPL vmlinux 0xe0055fbb acpi_unbind_one +EXPORT_SYMBOL_GPL vmlinux 0xe00be554 pci_msi_create_irq_domain +EXPORT_SYMBOL_GPL vmlinux 0xe01cd282 sk_msg_free_nocharge +EXPORT_SYMBOL_GPL vmlinux 0xe01fd6e9 tpm1_do_selftest +EXPORT_SYMBOL_GPL vmlinux 0xe02f786d unregister_asymmetric_key_parser EXPORT_SYMBOL_GPL vmlinux 0xe0313d71 rhashtable_insert_slow +EXPORT_SYMBOL_GPL vmlinux 0xe03f8518 __tracepoint_suspend_resume EXPORT_SYMBOL_GPL vmlinux 0xe04c78db __SCT__tp_func_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0xe04d85c6 __regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0xe0515c44 acpi_gpiochip_free_interrupts +EXPORT_SYMBOL_GPL vmlinux 0xe0522a6e cpci_hp_unregister_controller EXPORT_SYMBOL_GPL vmlinux 0xe05e2f85 nexthop_free_rcu -EXPORT_SYMBOL_GPL vmlinux 0xe068ac1a usb_unlocked_enable_lpm -EXPORT_SYMBOL_GPL vmlinux 0xe07494a8 dev_pm_domain_attach_by_id -EXPORT_SYMBOL_GPL vmlinux 0xe082cfe8 ipv6_proxy_select_ident +EXPORT_SYMBOL_GPL vmlinux 0xe0690574 usb_hcd_unlink_urb_from_ep +EXPORT_SYMBOL_GPL vmlinux 0xe0763fdd vfio_pci_core_close_device EXPORT_SYMBOL_GPL vmlinux 0xe089cfcc agp_memory_reserved -EXPORT_SYMBOL_GPL vmlinux 0xe0aad1bd rtc_class_open +EXPORT_SYMBOL_GPL vmlinux 0xe09291e7 ehci_resume +EXPORT_SYMBOL_GPL vmlinux 0xe0a3eaf0 usb_register_dev EXPORT_SYMBOL_GPL vmlinux 0xe0b1c103 clk_set_max_rate -EXPORT_SYMBOL_GPL vmlinux 0xe0b5b569 bpf_offload_dev_netdev_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe0b73a02 ata_host_alloc_pinfo -EXPORT_SYMBOL_GPL vmlinux 0xe0badb03 __tracepoint_wbc_writepage -EXPORT_SYMBOL_GPL vmlinux 0xe0bd1077 pm_generic_poweroff_late +EXPORT_SYMBOL_GPL vmlinux 0xe0b49a0b dev_pm_opp_get_max_clock_latency EXPORT_SYMBOL_GPL vmlinux 0xe0c77bb5 mce_notify_irq -EXPORT_SYMBOL_GPL vmlinux 0xe0cff543 of_hwspin_lock_get_id_byname +EXPORT_SYMBOL_GPL vmlinux 0xe0c9a910 security_file_ioctl EXPORT_SYMBOL_GPL vmlinux 0xe0d39f1c sgx_set_attribute -EXPORT_SYMBOL_GPL vmlinux 0xe0f6bf1e balloon_page_dequeue -EXPORT_SYMBOL_GPL vmlinux 0xe1088c1a fork_usermode_driver -EXPORT_SYMBOL_GPL vmlinux 0xe1089b5b bpf_map_inc_with_uref +EXPORT_SYMBOL_GPL vmlinux 0xe0d864d4 mptcp_pm_get_add_addr_accept_max +EXPORT_SYMBOL_GPL vmlinux 0xe0df8b34 serdev_device_close +EXPORT_SYMBOL_GPL vmlinux 0xe0e158da debugfs_write_file_bool +EXPORT_SYMBOL_GPL vmlinux 0xe0e85b57 fwnode_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0xe0f6e076 md_bitmap_resize EXPORT_SYMBOL_GPL vmlinux 0xe10cd6ad erst_get_record_id_begin -EXPORT_SYMBOL_GPL vmlinux 0xe115d2dc devlink_traps_register -EXPORT_SYMBOL_GPL vmlinux 0xe11e5b60 __SCK__tp_func_map -EXPORT_SYMBOL_GPL vmlinux 0xe1213273 tty_perform_flush -EXPORT_SYMBOL_GPL vmlinux 0xe137b9af devm_usb_get_phy -EXPORT_SYMBOL_GPL vmlinux 0xe14b9f71 rdev_get_id -EXPORT_SYMBOL_GPL vmlinux 0xe1630f9e xfrm_output -EXPORT_SYMBOL_GPL vmlinux 0xe174bbae dm_copy_name_and_uuid +EXPORT_SYMBOL_GPL vmlinux 0xe11af8db devm_acpi_dev_add_driver_gpios +EXPORT_SYMBOL_GPL vmlinux 0xe1203239 fwnode_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0xe1295712 tracing_snapshot_cond_disable +EXPORT_SYMBOL_GPL vmlinux 0xe13ce644 i2c_dw_adjust_bus_speed +EXPORT_SYMBOL_GPL vmlinux 0xe14531de devlink_reload_enable +EXPORT_SYMBOL_GPL vmlinux 0xe156d71f regmap_get_val_endian +EXPORT_SYMBOL_GPL vmlinux 0xe173c57f __regmap_init_spi EXPORT_SYMBOL_GPL vmlinux 0xe1775ee7 dm_get_reserved_bio_based_ios -EXPORT_SYMBOL_GPL vmlinux 0xe186e8b5 class_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe186f8f1 debugfs_create_u32_array -EXPORT_SYMBOL_GPL vmlinux 0xe1963ff3 kgdb_unregister_io_module -EXPORT_SYMBOL_GPL vmlinux 0xe19935a4 fuse_dev_install -EXPORT_SYMBOL_GPL vmlinux 0xe19cf85e devm_phy_package_join -EXPORT_SYMBOL_GPL vmlinux 0xe19d3b01 pci_disable_pasid -EXPORT_SYMBOL_GPL vmlinux 0xe1a35e3a tty_set_termios +EXPORT_SYMBOL_GPL vmlinux 0xe17e318c __audit_inode_child +EXPORT_SYMBOL_GPL vmlinux 0xe18315e3 sdio_set_block_size +EXPORT_SYMBOL_GPL vmlinux 0xe19ff41c power_supply_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0xe1a4a418 iommu_device_unlink +EXPORT_SYMBOL_GPL vmlinux 0xe1a5402b sb800_prefetch EXPORT_SYMBOL_GPL vmlinux 0xe1a8d7c9 net_rwsem -EXPORT_SYMBOL_GPL vmlinux 0xe1a9a3ce rio_release_outb_mbox EXPORT_SYMBOL_GPL vmlinux 0xe1aa2d62 set_hv_tscchange_cb +EXPORT_SYMBOL_GPL vmlinux 0xe1b33a49 dw_pcie_host_init +EXPORT_SYMBOL_GPL vmlinux 0xe1b6913a __devm_rtc_register_device EXPORT_SYMBOL_GPL vmlinux 0xe1bd6c99 rio_init_mports -EXPORT_SYMBOL_GPL vmlinux 0xe1c15a80 dev_pm_opp_find_level_exact EXPORT_SYMBOL_GPL vmlinux 0xe1c63523 blk_ksm_get_slot_idx -EXPORT_SYMBOL_GPL vmlinux 0xe1e9a8ec devlink_remote_reload_actions_performed -EXPORT_SYMBOL_GPL vmlinux 0xe1ff6bb2 get_cached_msi_msg -EXPORT_SYMBOL_GPL vmlinux 0xe20dcbb5 l3mdev_fib_table_by_index -EXPORT_SYMBOL_GPL vmlinux 0xe212da63 __hwspin_trylock -EXPORT_SYMBOL_GPL vmlinux 0xe21443eb led_classdev_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe222998f pm_generic_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0xe2261ca2 serdev_device_set_parity -EXPORT_SYMBOL_GPL vmlinux 0xe22ac538 clk_register_divider_table -EXPORT_SYMBOL_GPL vmlinux 0xe232425a to_nd_desc +EXPORT_SYMBOL_GPL vmlinux 0xe1cb340f acpi_device_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0xe1d335a7 kernfs_get +EXPORT_SYMBOL_GPL vmlinux 0xe1d5446b __devm_pci_epc_create +EXPORT_SYMBOL_GPL vmlinux 0xe1dc5dd4 regulator_set_soft_start_regmap +EXPORT_SYMBOL_GPL vmlinux 0xe1f18833 usb_deregister_device_driver +EXPORT_SYMBOL_GPL vmlinux 0xe220f753 devm_phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0xe22d700b subsys_interface_unregister EXPORT_SYMBOL_GPL vmlinux 0xe233762a input_event_from_user -EXPORT_SYMBOL_GPL vmlinux 0xe23bdadc __raw_v6_lookup -EXPORT_SYMBOL_GPL vmlinux 0xe247d29b clk_gate_restore_context -EXPORT_SYMBOL_GPL vmlinux 0xe2571124 serial8250_rpm_put +EXPORT_SYMBOL_GPL vmlinux 0xe23fe036 devm_gpiod_get_index EXPORT_SYMBOL_GPL vmlinux 0xe25d23f3 blocking_notifier_call_chain_robust EXPORT_SYMBOL_GPL vmlinux 0xe271f20c __SCT__tp_func_pelt_rt_tp -EXPORT_SYMBOL_GPL vmlinux 0xe278e859 device_rename -EXPORT_SYMBOL_GPL vmlinux 0xe288ee7b watchdog_set_last_hw_keepalive +EXPORT_SYMBOL_GPL vmlinux 0xe277fe25 unregister_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0xe2790749 led_trigger_set_default EXPORT_SYMBOL_GPL vmlinux 0xe295c0ff is_hpet_enabled +EXPORT_SYMBOL_GPL vmlinux 0xe2b06024 tty_ldisc_ref EXPORT_SYMBOL_GPL vmlinux 0xe2b3207a unregister_switchdev_notifier -EXPORT_SYMBOL_GPL vmlinux 0xe2bcd68f sdio_writew -EXPORT_SYMBOL_GPL vmlinux 0xe2c2020d da9052_request_irq -EXPORT_SYMBOL_GPL vmlinux 0xe2c7b623 gpiod_set_array_value +EXPORT_SYMBOL_GPL vmlinux 0xe2be9a8e devm_power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0xe2c27166 tty_port_link_device EXPORT_SYMBOL_GPL vmlinux 0xe2ce2b4d evm_set_key -EXPORT_SYMBOL_GPL vmlinux 0xe2cea7b7 reset_control_get_count -EXPORT_SYMBOL_GPL vmlinux 0xe2e7c41c udp_tunnel_nic_ops -EXPORT_SYMBOL_GPL vmlinux 0xe2eaabb2 usb_free_coherent -EXPORT_SYMBOL_GPL vmlinux 0xe2f1826b devm_device_add_group -EXPORT_SYMBOL_GPL vmlinux 0xe307602b nf_queue +EXPORT_SYMBOL_GPL vmlinux 0xe2e8a61f efivar_entry_set_get_size +EXPORT_SYMBOL_GPL vmlinux 0xe2eabbf5 class_compat_create_link +EXPORT_SYMBOL_GPL vmlinux 0xe2eba0e4 blk_queue_max_discard_segments +EXPORT_SYMBOL_GPL vmlinux 0xe2ef26cd user_read +EXPORT_SYMBOL_GPL vmlinux 0xe2fec491 serdev_device_set_baudrate +EXPORT_SYMBOL_GPL vmlinux 0xe30c9bcc devm_hwspin_lock_register EXPORT_SYMBOL_GPL vmlinux 0xe31315a4 spi_delay_exec -EXPORT_SYMBOL_GPL vmlinux 0xe322b145 component_master_del +EXPORT_SYMBOL_GPL vmlinux 0xe31fadb6 gpiod_get_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xe333b9f4 skcipher_walk_done EXPORT_SYMBOL_GPL vmlinux 0xe338c5ac inet_hashinfo2_init_mod -EXPORT_SYMBOL_GPL vmlinux 0xe3390d01 iomap_file_unshare -EXPORT_SYMBOL_GPL vmlinux 0xe33ad5bf devm_regulator_put -EXPORT_SYMBOL_GPL vmlinux 0xe3414823 shmem_read_mapping_page_gfp -EXPORT_SYMBOL_GPL vmlinux 0xe34622ee devfreq_event_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0xe35ce859 pm_runtime_enable -EXPORT_SYMBOL_GPL vmlinux 0xe372c82e fat_add_entries -EXPORT_SYMBOL_GPL vmlinux 0xe37acbf5 extcon_get_state -EXPORT_SYMBOL_GPL vmlinux 0xe3836eec msg_zerocopy_callback -EXPORT_SYMBOL_GPL vmlinux 0xe3919dd0 rio_lock_device +EXPORT_SYMBOL_GPL vmlinux 0xe34c6b26 devm_hwspin_lock_request_specific +EXPORT_SYMBOL_GPL vmlinux 0xe3620a76 devlink_register +EXPORT_SYMBOL_GPL vmlinux 0xe3643b6b serial8250_rpm_get +EXPORT_SYMBOL_GPL vmlinux 0xe369e2e8 gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0xe37522fd gpiochip_line_is_open_drain +EXPORT_SYMBOL_GPL vmlinux 0xe37e46ee pci_find_next_capability +EXPORT_SYMBOL_GPL vmlinux 0xe3856c3e tun_get_socket EXPORT_SYMBOL_GPL vmlinux 0xe397caf5 seq_buf_printf +EXPORT_SYMBOL_GPL vmlinux 0xe39a194b vp_modern_queue_vector EXPORT_SYMBOL_GPL vmlinux 0xe39d0794 usb_phy_roothub_exit -EXPORT_SYMBOL_GPL vmlinux 0xe3aace8d eventfd_fget +EXPORT_SYMBOL_GPL vmlinux 0xe3a05638 anon_transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0xe3abc58f pci_reset_function EXPORT_SYMBOL_GPL vmlinux 0xe3b09712 kprobe_event_delete EXPORT_SYMBOL_GPL vmlinux 0xe3bc7fd4 hpet_unregister_irq_handler -EXPORT_SYMBOL_GPL vmlinux 0xe3ca8cf1 ncsi_stop_dev -EXPORT_SYMBOL_GPL vmlinux 0xe3ccb13c mctrl_gpio_free +EXPORT_SYMBOL_GPL vmlinux 0xe3bd866d pci_epf_unbind +EXPORT_SYMBOL_GPL vmlinux 0xe3cd3fd9 phy_pm_runtime_get EXPORT_SYMBOL_GPL vmlinux 0xe3cd5fae klist_iter_init -EXPORT_SYMBOL_GPL vmlinux 0xe3d7d634 ata_sff_dev_classify -EXPORT_SYMBOL_GPL vmlinux 0xe3dae671 __traceiter_xdp_exception -EXPORT_SYMBOL_GPL vmlinux 0xe3dd4cd9 dev_get_tstats64 -EXPORT_SYMBOL_GPL vmlinux 0xe3e32ebc iomap_readpage EXPORT_SYMBOL_GPL vmlinux 0xe3e88acb __get_current_cr3_fast -EXPORT_SYMBOL_GPL vmlinux 0xe3fcf60d nfs42_ssc_register +EXPORT_SYMBOL_GPL vmlinux 0xe3ee5b91 dw_pcie_host_deinit +EXPORT_SYMBOL_GPL vmlinux 0xe3f7fb41 platform_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xe3fba990 cpufreq_generic_attr +EXPORT_SYMBOL_GPL vmlinux 0xe40505ef __vfs_removexattr_locked EXPORT_SYMBOL_GPL vmlinux 0xe40bb23e devlink_health_reporter_priv -EXPORT_SYMBOL_GPL vmlinux 0xe41fb387 nd_blk_region_to_dimm +EXPORT_SYMBOL_GPL vmlinux 0xe4154d37 __udp6_lib_lookup EXPORT_SYMBOL_GPL vmlinux 0xe4248980 cper_estatus_print EXPORT_SYMBOL_GPL vmlinux 0xe4309905 syscore_resume -EXPORT_SYMBOL_GPL vmlinux 0xe44d8cf0 edac_pci_handle_npe -EXPORT_SYMBOL_GPL vmlinux 0xe44fab0b node_to_amd_nb -EXPORT_SYMBOL_GPL vmlinux 0xe4630948 nf_queue_nf_hook_drop -EXPORT_SYMBOL_GPL vmlinux 0xe46a65cb netdev_rx_handler_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe47644aa devm_clk_bulk_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xe448088f usb_match_one_id +EXPORT_SYMBOL_GPL vmlinux 0xe44b214b unix_outq_len +EXPORT_SYMBOL_GPL vmlinux 0xe44e42c1 cgroup_get_e_css +EXPORT_SYMBOL_GPL vmlinux 0xe4641d33 uart_set_options +EXPORT_SYMBOL_GPL vmlinux 0xe4744cda tpm_chip_start +EXPORT_SYMBOL_GPL vmlinux 0xe475c173 gpiod_export +EXPORT_SYMBOL_GPL vmlinux 0xe478da5c devm_pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0xe47c8114 l3mdev_ifindex_lookup_by_table_id EXPORT_SYMBOL_GPL vmlinux 0xe48611ac trace_clock_global -EXPORT_SYMBOL_GPL vmlinux 0xe4898bc1 dw_pcie_find_ext_capability -EXPORT_SYMBOL_GPL vmlinux 0xe48aa101 switchdev_port_obj_del -EXPORT_SYMBOL_GPL vmlinux 0xe4902719 phy_driver_is_genphy EXPORT_SYMBOL_GPL vmlinux 0xe4971ade tracing_alloc_snapshot -EXPORT_SYMBOL_GPL vmlinux 0xe4adb867 sock_diag_register +EXPORT_SYMBOL_GPL vmlinux 0xe4ab9b0f regulator_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0xe4ae3103 efivar_entry_set EXPORT_SYMBOL_GPL vmlinux 0xe4b064f9 pcie_link_speed EXPORT_SYMBOL_GPL vmlinux 0xe4b818c3 phy_speed_to_str EXPORT_SYMBOL_GPL vmlinux 0xe4b93f27 public_key_verify_signature EXPORT_SYMBOL_GPL vmlinux 0xe4c2c66c rtc_ktime_to_tm -EXPORT_SYMBOL_GPL vmlinux 0xe4d79b72 firmware_request_nowarn -EXPORT_SYMBOL_GPL vmlinux 0xe4d952aa __SCK__tp_func_wbc_writepage -EXPORT_SYMBOL_GPL vmlinux 0xe4e3a9cc fib_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0xe4d821e4 serial8250_clear_and_reinit_fifos EXPORT_SYMBOL_GPL vmlinux 0xe4e48b12 swphy_validate_state -EXPORT_SYMBOL_GPL vmlinux 0xe4ecff14 ata_cable_80wire -EXPORT_SYMBOL_GPL vmlinux 0xe4f3ae05 regmap_attach_dev -EXPORT_SYMBOL_GPL vmlinux 0xe4f52e25 devm_clk_hw_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe50d0b50 devm_regmap_field_bulk_free -EXPORT_SYMBOL_GPL vmlinux 0xe51c674a __traceiter_pelt_dl_tp -EXPORT_SYMBOL_GPL vmlinux 0xe5396b2b skcipher_alloc_instance_simple -EXPORT_SYMBOL_GPL vmlinux 0xe5476efa irq_domain_xlate_twocell -EXPORT_SYMBOL_GPL vmlinux 0xe5490204 espintcp_push_skb -EXPORT_SYMBOL_GPL vmlinux 0xe5569112 i2c_acpi_find_adapter_by_handle -EXPORT_SYMBOL_GPL vmlinux 0xe557c048 devm_mbox_controller_register -EXPORT_SYMBOL_GPL vmlinux 0xe55fce88 dev_pm_qos_flags -EXPORT_SYMBOL_GPL vmlinux 0xe562aa58 xen_unregister_device_domain_owner -EXPORT_SYMBOL_GPL vmlinux 0xe569ee7b kthread_cancel_work_sync -EXPORT_SYMBOL_GPL vmlinux 0xe57e773d __tracepoint_neigh_event_send_dead -EXPORT_SYMBOL_GPL vmlinux 0xe5821cc7 __clk_hw_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0xe4f436c0 driver_find +EXPORT_SYMBOL_GPL vmlinux 0xe4f885a8 iommu_uapi_sva_unbind_gpasid +EXPORT_SYMBOL_GPL vmlinux 0xe5028deb bpf_trace_run12 +EXPORT_SYMBOL_GPL vmlinux 0xe5071e27 __tracepoint_neigh_cleanup_and_release +EXPORT_SYMBOL_GPL vmlinux 0xe51e7408 scsi_nl_sock +EXPORT_SYMBOL_GPL vmlinux 0xe529abd1 thermal_zone_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe53e61b0 dax_iomap_rw +EXPORT_SYMBOL_GPL vmlinux 0xe53f92f0 nf_route +EXPORT_SYMBOL_GPL vmlinux 0xe5461468 input_ff_event +EXPORT_SYMBOL_GPL vmlinux 0xe5480362 phy_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0xe54fe885 gpiod_is_active_low +EXPORT_SYMBOL_GPL vmlinux 0xe575363f wm831x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xe576c29c bpf_verifier_log_write +EXPORT_SYMBOL_GPL vmlinux 0xe57d1761 __traceiter_br_fdb_add EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe5917388 balloon_page_alloc -EXPORT_SYMBOL_GPL vmlinux 0xe5a7d0be vp_modern_set_status +EXPORT_SYMBOL_GPL vmlinux 0xe588b484 pm_generic_thaw +EXPORT_SYMBOL_GPL vmlinux 0xe5a2f3a1 tps6586x_reads +EXPORT_SYMBOL_GPL vmlinux 0xe5a34079 trace_event_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0xe5b303f1 do_tcp_sendpages +EXPORT_SYMBOL_GPL vmlinux 0xe5b3a056 fat_time_unix2fat +EXPORT_SYMBOL_GPL vmlinux 0xe5b50f0b genphy_c45_read_lpa +EXPORT_SYMBOL_GPL vmlinux 0xe5bbb438 devm_of_icc_get EXPORT_SYMBOL_GPL vmlinux 0xe5c02b64 freq_qos_remove_request -EXPORT_SYMBOL_GPL vmlinux 0xe5c5d59b nf_hook_entries_insert_raw -EXPORT_SYMBOL_GPL vmlinux 0xe5c63616 xfrm_audit_policy_add -EXPORT_SYMBOL_GPL vmlinux 0xe5ca48b4 pcc_mbox_request_channel EXPORT_SYMBOL_GPL vmlinux 0xe5ce1a56 rhashtable_walk_enter -EXPORT_SYMBOL_GPL vmlinux 0xe5e90397 __pm_runtime_set_status -EXPORT_SYMBOL_GPL vmlinux 0xe5fe68c1 __blk_mq_debugfs_rq_show -EXPORT_SYMBOL_GPL vmlinux 0xe5ffc06d devm_phy_get -EXPORT_SYMBOL_GPL vmlinux 0xe603c66a xenbus_dev_error +EXPORT_SYMBOL_GPL vmlinux 0xe5d82658 ip6_dst_lookup +EXPORT_SYMBOL_GPL vmlinux 0xe5da324e led_set_brightness +EXPORT_SYMBOL_GPL vmlinux 0xe5e05f7e usb_autopm_get_interface_no_resume +EXPORT_SYMBOL_GPL vmlinux 0xe5f9d476 irq_chip_set_vcpu_affinity_parent EXPORT_SYMBOL_GPL vmlinux 0xe60632a9 edac_queue_work EXPORT_SYMBOL_GPL vmlinux 0xe60a5e8d pids_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xe6155b37 sk_psock_msg_verdict -EXPORT_SYMBOL_GPL vmlinux 0xe620091d __regmap_init_i2c -EXPORT_SYMBOL_GPL vmlinux 0xe621bb85 regulator_set_current_limit_regmap -EXPORT_SYMBOL_GPL vmlinux 0xe624aa8e set_secondary_fwnode -EXPORT_SYMBOL_GPL vmlinux 0xe6266057 gpiochip_get_data +EXPORT_SYMBOL_GPL vmlinux 0xe6230250 sysfs_break_active_protection +EXPORT_SYMBOL_GPL vmlinux 0xe6259ac2 sysfs_create_files +EXPORT_SYMBOL_GPL vmlinux 0xe6289748 set_capacity_and_notify EXPORT_SYMBOL_GPL vmlinux 0xe628bb9f phy_fibre_port_array -EXPORT_SYMBOL_GPL vmlinux 0xe64a02bb devlink_dpipe_headers_register +EXPORT_SYMBOL_GPL vmlinux 0xe633ff75 ata_sff_tf_load EXPORT_SYMBOL_GPL vmlinux 0xe64ad8ea unregister_nmi_handler -EXPORT_SYMBOL_GPL vmlinux 0xe65a6b83 tpm_chip_start -EXPORT_SYMBOL_GPL vmlinux 0xe666b4dc skb_zerocopy_iter_dgram -EXPORT_SYMBOL_GPL vmlinux 0xe673c72a virtqueue_disable_cb -EXPORT_SYMBOL_GPL vmlinux 0xe674f409 vp_modern_config_vector -EXPORT_SYMBOL_GPL vmlinux 0xe67b9b10 pci_stop_and_remove_bus_device_locked +EXPORT_SYMBOL_GPL vmlinux 0xe6541f85 class_interface_register +EXPORT_SYMBOL_GPL vmlinux 0xe656a749 sched_trace_rq_nr_running +EXPORT_SYMBOL_GPL vmlinux 0xe66c78c7 iopf_queue_remove_device +EXPORT_SYMBOL_GPL vmlinux 0xe68b3645 blk_trace_startstop EXPORT_SYMBOL_GPL vmlinux 0xe6a257f1 divider_round_rate_parent -EXPORT_SYMBOL_GPL vmlinux 0xe6a28397 pci_epc_mem_alloc_addr -EXPORT_SYMBOL_GPL vmlinux 0xe6a79608 cpufreq_unregister_governor -EXPORT_SYMBOL_GPL vmlinux 0xe6b3cb27 init_uts_ns -EXPORT_SYMBOL_GPL vmlinux 0xe6ce9b58 nvdimm_has_cache -EXPORT_SYMBOL_GPL vmlinux 0xe6d09c89 find_asymmetric_key -EXPORT_SYMBOL_GPL vmlinux 0xe6d82c49 __SCK__tp_func_remove_device_from_group -EXPORT_SYMBOL_GPL vmlinux 0xe6e131be fsnotify_put_mark +EXPORT_SYMBOL_GPL vmlinux 0xe6b435d4 follow_pte +EXPORT_SYMBOL_GPL vmlinux 0xe6b68a28 regmap_fields_read +EXPORT_SYMBOL_GPL vmlinux 0xe6b7a25d ahash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xe6d26112 vfio_group_get_external_user_from_dev EXPORT_SYMBOL_GPL vmlinux 0xe6e40502 rcu_get_gp_seq -EXPORT_SYMBOL_GPL vmlinux 0xe6e8e533 ohci_resume +EXPORT_SYMBOL_GPL vmlinux 0xe6efb63a __crypto_alloc_tfm EXPORT_SYMBOL_GPL vmlinux 0xe6f52443 klist_add_head EXPORT_SYMBOL_GPL vmlinux 0xe6f5e6f5 xas_clear_mark +EXPORT_SYMBOL_GPL vmlinux 0xe6f6cbe6 ata_sff_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xe6f7b18e iptunnel_xmit EXPORT_SYMBOL_GPL vmlinux 0xe6f83837 acpi_bus_attach_private_data -EXPORT_SYMBOL_GPL vmlinux 0xe6fee441 fat_setattr -EXPORT_SYMBOL_GPL vmlinux 0xe6ff9725 gpiod_count EXPORT_SYMBOL_GPL vmlinux 0xe700d767 reset_control_bulk_deassert -EXPORT_SYMBOL_GPL vmlinux 0xe70a3a1b rio_local_set_device_id -EXPORT_SYMBOL_GPL vmlinux 0xe7145bde irq_domain_xlate_onetwocell -EXPORT_SYMBOL_GPL vmlinux 0xe7158680 exportfs_decode_fh -EXPORT_SYMBOL_GPL vmlinux 0xe71879c5 __irq_resolve_mapping +EXPORT_SYMBOL_GPL vmlinux 0xe7186e85 l3mdev_table_lookup_register EXPORT_SYMBOL_GPL vmlinux 0xe7232e0f user_return_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe72fbd64 serdev_device_open -EXPORT_SYMBOL_GPL vmlinux 0xe73d3c25 mbox_chan_txdone +EXPORT_SYMBOL_GPL vmlinux 0xe729baf2 xfrm_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0xe72c563f balloon_page_list_dequeue +EXPORT_SYMBOL_GPL vmlinux 0xe737f1b2 __clk_hw_register_divider EXPORT_SYMBOL_GPL vmlinux 0xe740b58a hv_vp_assist_page -EXPORT_SYMBOL_GPL vmlinux 0xe751d564 regulator_enable_regmap +EXPORT_SYMBOL_GPL vmlinux 0xe7517e22 ata_host_start EXPORT_SYMBOL_GPL vmlinux 0xe753b68d devlink_fmsg_arr_pair_nest_end -EXPORT_SYMBOL_GPL vmlinux 0xe76076d6 trace_event_ignore_this_pid EXPORT_SYMBOL_GPL vmlinux 0xe769232e sprint_symbol_no_offset -EXPORT_SYMBOL_GPL vmlinux 0xe773bd16 usb_unlink_urb -EXPORT_SYMBOL_GPL vmlinux 0xe7766dfc usb_intf_get_dma_device -EXPORT_SYMBOL_GPL vmlinux 0xe77d46e3 usb_sg_cancel +EXPORT_SYMBOL_GPL vmlinux 0xe77d637b crypto_register_skcipher EXPORT_SYMBOL_GPL vmlinux 0xe783e261 sysfs_emit -EXPORT_SYMBOL_GPL vmlinux 0xe7910339 tcp_slow_start -EXPORT_SYMBOL_GPL vmlinux 0xe796e696 dev_pm_opp_unregister_set_opp_helper +EXPORT_SYMBOL_GPL vmlinux 0xe79103e5 gpiochip_line_is_open_source EXPORT_SYMBOL_GPL vmlinux 0xe79bf0c4 klp_shadow_get -EXPORT_SYMBOL_GPL vmlinux 0xe7b6a8e2 regulator_get_linear_step -EXPORT_SYMBOL_GPL vmlinux 0xe7b8cc71 __reset_control_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0xe7aa66d7 sk_msg_free +EXPORT_SYMBOL_GPL vmlinux 0xe7b33b70 blk_mq_sched_mark_restart_hctx +EXPORT_SYMBOL_GPL vmlinux 0xe7b464e5 nvdimm_region_notify EXPORT_SYMBOL_GPL vmlinux 0xe7d6d2d4 filter_match_preds +EXPORT_SYMBOL_GPL vmlinux 0xe7dee077 ping_getfrag +EXPORT_SYMBOL_GPL vmlinux 0xe7e0204e acpi_dma_configure_id EXPORT_SYMBOL_GPL vmlinux 0xe7eee3d5 __cookie_v4_init_sequence -EXPORT_SYMBOL_GPL vmlinux 0xe7f6f9dd inet_ehash_nolisten -EXPORT_SYMBOL_GPL vmlinux 0xe7f7978f screen_glyph_unicode -EXPORT_SYMBOL_GPL vmlinux 0xe7fed65d fsnotify_destroy_mark -EXPORT_SYMBOL_GPL vmlinux 0xe80baf70 od_register_powersave_bias_handler -EXPORT_SYMBOL_GPL vmlinux 0xe80d6082 __platform_driver_probe +EXPORT_SYMBOL_GPL vmlinux 0xe7f8b098 dw_pcie_ep_init_complete +EXPORT_SYMBOL_GPL vmlinux 0xe7fb8660 extcon_get_property +EXPORT_SYMBOL_GPL vmlinux 0xe7fd4de4 __traceiter_br_fdb_external_learn_add +EXPORT_SYMBOL_GPL vmlinux 0xe80a794b __fscrypt_prepare_setattr +EXPORT_SYMBOL_GPL vmlinux 0xe81561a5 pci_msi_unmask_irq EXPORT_SYMBOL_GPL vmlinux 0xe818b32b ata_bmdma_interrupt EXPORT_SYMBOL_GPL vmlinux 0xe8199ff8 sbitmap_del_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0xe821ca1f iommu_domain_alloc EXPORT_SYMBOL_GPL vmlinux 0xe83eba32 itlb_multihit_kvm_mitigation EXPORT_SYMBOL_GPL vmlinux 0xe84f6e5c pciserial_remove_ports -EXPORT_SYMBOL_GPL vmlinux 0xe852661f __pm_runtime_disable -EXPORT_SYMBOL_GPL vmlinux 0xe857db0e pci_d3cold_disable -EXPORT_SYMBOL_GPL vmlinux 0xe8589ecd fb_deferred_io_fsync -EXPORT_SYMBOL_GPL vmlinux 0xe85ae78e power_supply_powers +EXPORT_SYMBOL_GPL vmlinux 0xe85a3239 ip6_redirect EXPORT_SYMBOL_GPL vmlinux 0xe862c4b7 dpm_suspend_start -EXPORT_SYMBOL_GPL vmlinux 0xe864489a fsverity_verify_page -EXPORT_SYMBOL_GPL vmlinux 0xe8734ea7 irq_domain_simple_ops -EXPORT_SYMBOL_GPL vmlinux 0xe873c037 __traceiter_attach_device_to_domain -EXPORT_SYMBOL_GPL vmlinux 0xe87c2739 xen_unmap_domain_gfn_range -EXPORT_SYMBOL_GPL vmlinux 0xe87f7215 bio_add_zone_append_page +EXPORT_SYMBOL_GPL vmlinux 0xe8771fae dma_free_pages +EXPORT_SYMBOL_GPL vmlinux 0xe8773c0a fscrypt_prepare_symlink +EXPORT_SYMBOL_GPL vmlinux 0xe87bd883 cpufreq_policy_transition_delay_us +EXPORT_SYMBOL_GPL vmlinux 0xe886f432 ata_bmdma_qc_issue EXPORT_SYMBOL_GPL vmlinux 0xe8874a05 irq_work_queue -EXPORT_SYMBOL_GPL vmlinux 0xe8bfb092 devm_bitmap_zalloc +EXPORT_SYMBOL_GPL vmlinux 0xe88e4933 fwnode_get_nth_parent +EXPORT_SYMBOL_GPL vmlinux 0xe8a240d9 debugfs_attr_write +EXPORT_SYMBOL_GPL vmlinux 0xe8a8fb0c fib_alias_hw_flags_set +EXPORT_SYMBOL_GPL vmlinux 0xe8b3d910 icc_node_create +EXPORT_SYMBOL_GPL vmlinux 0xe8be7c20 noop_backing_dev_info EXPORT_SYMBOL_GPL vmlinux 0xe8c0065d memory_group_register_static -EXPORT_SYMBOL_GPL vmlinux 0xe8c0d781 powercap_register_zone -EXPORT_SYMBOL_GPL vmlinux 0xe8d1de17 devlink_param_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe8db0afb xfrm_put_translator EXPORT_SYMBOL_GPL vmlinux 0xe8e235c8 arch_static_call_transform -EXPORT_SYMBOL_GPL vmlinux 0xe8e563a6 phy_create_lookup EXPORT_SYMBOL_GPL vmlinux 0xe911df29 eventfd_ctx_do_read -EXPORT_SYMBOL_GPL vmlinux 0xe9249b53 tty_mode_ioctl -EXPORT_SYMBOL_GPL vmlinux 0xe9260af4 dev_pm_opp_get_required_pstate -EXPORT_SYMBOL_GPL vmlinux 0xe92fa97a wm8350_block_write -EXPORT_SYMBOL_GPL vmlinux 0xe937bf45 acpi_gpiochip_request_interrupts +EXPORT_SYMBOL_GPL vmlinux 0xe91e0f44 __pm_runtime_disable +EXPORT_SYMBOL_GPL vmlinux 0xe91ec2b2 scsi_host_complete_all_commands EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free -EXPORT_SYMBOL_GPL vmlinux 0xe941cf41 crypto_alloc_acomp -EXPORT_SYMBOL_GPL vmlinux 0xe9456738 pci_msi_mask_irq -EXPORT_SYMBOL_GPL vmlinux 0xe95921b5 vfio_pci_core_uninit_device -EXPORT_SYMBOL_GPL vmlinux 0xe96b181e ata_sas_slave_configure -EXPORT_SYMBOL_GPL vmlinux 0xe96cfa66 ip6_route_output_flags_noref -EXPORT_SYMBOL_GPL vmlinux 0xe97485a4 ata_ehi_clear_desc -EXPORT_SYMBOL_GPL vmlinux 0xe97505cd clk_hw_get_num_parents -EXPORT_SYMBOL_GPL vmlinux 0xe98083e5 regulator_enable -EXPORT_SYMBOL_GPL vmlinux 0xe9973562 __traceiter_sched_cpu_capacity_tp -EXPORT_SYMBOL_GPL vmlinux 0xe9aeddbe kernfs_path_from_node -EXPORT_SYMBOL_GPL vmlinux 0xe9b05574 security_file_permission -EXPORT_SYMBOL_GPL vmlinux 0xe9b37f62 devm_kstrdup -EXPORT_SYMBOL_GPL vmlinux 0xe9bc6c3f tps6586x_reads +EXPORT_SYMBOL_GPL vmlinux 0xe940dc8b acpi_pci_find_root +EXPORT_SYMBOL_GPL vmlinux 0xe9410e86 regulator_enable +EXPORT_SYMBOL_GPL vmlinux 0xe9516a9a irq_chip_retrigger_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0xe95296a8 tcp_slow_start +EXPORT_SYMBOL_GPL vmlinux 0xe96ee375 clk_hw_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe97247a8 irq_set_chained_handler_and_data +EXPORT_SYMBOL_GPL vmlinux 0xe987928e __fscrypt_prepare_readdir +EXPORT_SYMBOL_GPL vmlinux 0xe993c73f da9052_free_irq +EXPORT_SYMBOL_GPL vmlinux 0xe999e41f xdp_return_frame_bulk +EXPORT_SYMBOL_GPL vmlinux 0xe9a3a2f9 bio_start_io_acct_time +EXPORT_SYMBOL_GPL vmlinux 0xe9b80fed bus_get_device_klist EXPORT_SYMBOL_GPL vmlinux 0xe9ce931a kvm_para_available EXPORT_SYMBOL_GPL vmlinux 0xe9d1b7cf irq_to_pcap -EXPORT_SYMBOL_GPL vmlinux 0xe9de9d3b ipv6_opt_accepted -EXPORT_SYMBOL_GPL vmlinux 0xe9e9eaeb crypto_register_shashes -EXPORT_SYMBOL_GPL vmlinux 0xe9fa9cb9 inode_sb_list_add +EXPORT_SYMBOL_GPL vmlinux 0xe9dbe43d i2c_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xe9e86c1b xenbus_dev_is_online +EXPORT_SYMBOL_GPL vmlinux 0xe9ead5cf power_supply_get_battery_info +EXPORT_SYMBOL_GPL vmlinux 0xe9f9ba7a ethnl_cable_test_free EXPORT_SYMBOL_GPL vmlinux 0xe9fadf16 __SCT__tp_func_neigh_update_done EXPORT_SYMBOL_GPL vmlinux 0xea018bbb mpi_test_bit +EXPORT_SYMBOL_GPL vmlinux 0xea086217 dst_cache_get_ip4 +EXPORT_SYMBOL_GPL vmlinux 0xea12241d devm_kstrdup EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd -EXPORT_SYMBOL_GPL vmlinux 0xea292ae1 __devm_pci_epc_create -EXPORT_SYMBOL_GPL vmlinux 0xea326e09 __pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0xea1a6a4a nf_hook_entries_insert_raw +EXPORT_SYMBOL_GPL vmlinux 0xea1c7e72 devm_regulator_put EXPORT_SYMBOL_GPL vmlinux 0xea38036f ring_buffer_entries EXPORT_SYMBOL_GPL vmlinux 0xea3a23f3 public_key_free -EXPORT_SYMBOL_GPL vmlinux 0xea42fe81 xhci_get_ep_ctx -EXPORT_SYMBOL_GPL vmlinux 0xea43b1f0 auxiliary_find_device -EXPORT_SYMBOL_GPL vmlinux 0xea440c5e md_run -EXPORT_SYMBOL_GPL vmlinux 0xea48a487 of_led_get -EXPORT_SYMBOL_GPL vmlinux 0xea4c5dbe usb_autopm_put_interface_async -EXPORT_SYMBOL_GPL vmlinux 0xea4fcba0 __SCK__tp_func_neigh_timer_handler -EXPORT_SYMBOL_GPL vmlinux 0xea5ee758 rio_mport_read_config_8 -EXPORT_SYMBOL_GPL vmlinux 0xea7efc3f sysfs_chmod_file -EXPORT_SYMBOL_GPL vmlinux 0xea88ea50 PageHuge -EXPORT_SYMBOL_GPL vmlinux 0xea8a618d device_match_devt -EXPORT_SYMBOL_GPL vmlinux 0xea92c480 wakeup_source_register -EXPORT_SYMBOL_GPL vmlinux 0xea9f4627 nfnl_ct_hook -EXPORT_SYMBOL_GPL vmlinux 0xeab65e69 dev_pm_opp_xlate_required_opp -EXPORT_SYMBOL_GPL vmlinux 0xeab9f1ee pci_hp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0xea4ae101 tty_prepare_flip_string +EXPORT_SYMBOL_GPL vmlinux 0xea4fcd27 tcp_register_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0xea6e33a2 sdio_align_size +EXPORT_SYMBOL_GPL vmlinux 0xea841d76 phy_pm_runtime_put +EXPORT_SYMBOL_GPL vmlinux 0xea85dea1 virtqueue_enable_cb_prepare +EXPORT_SYMBOL_GPL vmlinux 0xea94f2ac __devm_regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0xeaa42708 dev_pm_opp_put_prop_name +EXPORT_SYMBOL_GPL vmlinux 0xeac6adf5 crypto_stats_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0xeac74e16 pm_runtime_get_if_active +EXPORT_SYMBOL_GPL vmlinux 0xeac9246c gnttab_foreach_grant_in_range +EXPORT_SYMBOL_GPL vmlinux 0xeacb3d96 vfio_group_get_external_user +EXPORT_SYMBOL_GPL vmlinux 0xeace4da7 inet_csk_addr2sockaddr 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 0xead5da0a usb_unanchor_urb +EXPORT_SYMBOL_GPL vmlinux 0xeadb80db fwnode_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xeae0794a rio_mport_get_efb EXPORT_SYMBOL_GPL vmlinux 0xeae0f496 clean_acked_data_flush +EXPORT_SYMBOL_GPL vmlinux 0xeae872b7 wm8350_read_auxadc EXPORT_SYMBOL_GPL vmlinux 0xeaf0a57c look_up_OID -EXPORT_SYMBOL_GPL vmlinux 0xeafa85aa handle_fasteoi_irq -EXPORT_SYMBOL_GPL vmlinux 0xeb053c87 class_interface_unregister -EXPORT_SYMBOL_GPL vmlinux 0xeb3be000 fwnode_property_read_u8_array -EXPORT_SYMBOL_GPL vmlinux 0xeb4c6335 tty_port_register_device_attr_serdev -EXPORT_SYMBOL_GPL vmlinux 0xeb575f53 crypto_register_akcipher -EXPORT_SYMBOL_GPL vmlinux 0xeb637f3d mptcp_token_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xeaf4139b rtc_alarm_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0xeb066bfd vp_modern_set_queue_size +EXPORT_SYMBOL_GPL vmlinux 0xeb19a2f3 gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0xeb40e7ce gpiochip_irq_domain_deactivate EXPORT_SYMBOL_GPL vmlinux 0xeb833c22 xen_has_pv_disk_devices +EXPORT_SYMBOL_GPL vmlinux 0xeb93a98b shash_ahash_digest EXPORT_SYMBOL_GPL vmlinux 0xeb94536f x86_platform -EXPORT_SYMBOL_GPL vmlinux 0xeb959425 gpiochip_generic_free -EXPORT_SYMBOL_GPL vmlinux 0xeb9d9425 __SCK__tp_func_block_rq_remap -EXPORT_SYMBOL_GPL vmlinux 0xebaaf4f8 cpuidle_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0xebb7e8cc sk_psock_tls_strp_read -EXPORT_SYMBOL_GPL vmlinux 0xebc3b0e5 wwan_create_port -EXPORT_SYMBOL_GPL vmlinux 0xebc6a098 vfio_pci_core_write +EXPORT_SYMBOL_GPL vmlinux 0xeb98651e pm_generic_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0xeba54344 security_inode_create +EXPORT_SYMBOL_GPL vmlinux 0xeba65d99 dax_inode +EXPORT_SYMBOL_GPL vmlinux 0xebbc61b9 ata_bmdma_post_internal_cmd +EXPORT_SYMBOL_GPL vmlinux 0xebc19e77 irqd_cfg EXPORT_SYMBOL_GPL vmlinux 0xebc9a09f lock_system_sleep -EXPORT_SYMBOL_GPL vmlinux 0xebd07340 serial8250_rx_chars -EXPORT_SYMBOL_GPL vmlinux 0xebd335a3 blk_next_bio +EXPORT_SYMBOL_GPL vmlinux 0xebd0b729 mddev_unlock +EXPORT_SYMBOL_GPL vmlinux 0xebd27261 tracepoint_probe_register_prio EXPORT_SYMBOL_GPL vmlinux 0xebd4cc11 mctrl_gpio_enable_ms -EXPORT_SYMBOL_GPL vmlinux 0xebe28eea tty_get_pgrp -EXPORT_SYMBOL_GPL vmlinux 0xebf21230 sched_set_fifo -EXPORT_SYMBOL_GPL vmlinux 0xebfc2b67 gpiod_set_consumer_name -EXPORT_SYMBOL_GPL vmlinux 0xec1e3b42 synth_event_trace -EXPORT_SYMBOL_GPL vmlinux 0xec360ef4 bus_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0xec373b62 xenbus_dev_resume -EXPORT_SYMBOL_GPL vmlinux 0xec399a19 devm_pm_runtime_enable -EXPORT_SYMBOL_GPL vmlinux 0xec425e46 access_process_vm +EXPORT_SYMBOL_GPL vmlinux 0xebd7e3f0 dev_pm_opp_remove +EXPORT_SYMBOL_GPL vmlinux 0xebdc24c7 ata_std_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xebec726a acpi_driver_match_device +EXPORT_SYMBOL_GPL vmlinux 0xebfbd24a da9052_request_irq +EXPORT_SYMBOL_GPL vmlinux 0xec08d1be debugfs_create_devm_seqfile +EXPORT_SYMBOL_GPL vmlinux 0xec096a4d irq_domain_free_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xec10f19e inode_dax +EXPORT_SYMBOL_GPL vmlinux 0xec12ebf9 tcp_leave_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0xec1588ff dev_pm_opp_is_turbo +EXPORT_SYMBOL_GPL vmlinux 0xec1595df pci_epc_set_bar +EXPORT_SYMBOL_GPL vmlinux 0xec2f4387 __tracepoint_br_fdb_add +EXPORT_SYMBOL_GPL vmlinux 0xec360560 percpu_down_write +EXPORT_SYMBOL_GPL vmlinux 0xec4fe200 devm_led_classdev_unregister EXPORT_SYMBOL_GPL vmlinux 0xec5668f6 dax_zero_page_range +EXPORT_SYMBOL_GPL vmlinux 0xec5aa541 espintcp_queue_out EXPORT_SYMBOL_GPL vmlinux 0xec5ad73b trace_seq_bitmask -EXPORT_SYMBOL_GPL vmlinux 0xec5d6314 xfrm_local_error -EXPORT_SYMBOL_GPL vmlinux 0xec754dda subsys_interface_register +EXPORT_SYMBOL_GPL vmlinux 0xec6db916 wm831x_bulk_read EXPORT_SYMBOL_GPL vmlinux 0xec774acb cpufreq_frequency_table_verify EXPORT_SYMBOL_GPL vmlinux 0xec788566 acpi_target_system_state -EXPORT_SYMBOL_GPL vmlinux 0xec7d7006 gpiod_direction_input -EXPORT_SYMBOL_GPL vmlinux 0xec8c6a4f pci_assign_unassigned_bus_resources -EXPORT_SYMBOL_GPL vmlinux 0xec907b75 edac_device_free_ctl_info -EXPORT_SYMBOL_GPL vmlinux 0xec951a44 led_set_brightness_nopm -EXPORT_SYMBOL_GPL vmlinux 0xec9ac7e7 devm_regulator_bulk_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0xec9cafb3 usb_anchor_urb -EXPORT_SYMBOL_GPL vmlinux 0xecab430d __clk_mux_determine_rate_closest -EXPORT_SYMBOL_GPL vmlinux 0xecae9064 __SCK__tp_func_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0xec88bfbc iommu_map +EXPORT_SYMBOL_GPL vmlinux 0xec8bd90c klp_enable_patch +EXPORT_SYMBOL_GPL vmlinux 0xec9ba4ff pinctrl_lookup_state EXPORT_SYMBOL_GPL vmlinux 0xecba68e3 gnttab_batch_map -EXPORT_SYMBOL_GPL vmlinux 0xecbbf3f0 fib_rules_unregister -EXPORT_SYMBOL_GPL vmlinux 0xecbed530 serdev_device_write -EXPORT_SYMBOL_GPL vmlinux 0xecc0c02f power_supply_class -EXPORT_SYMBOL_GPL vmlinux 0xecd3ca86 debugfs_real_fops -EXPORT_SYMBOL_GPL vmlinux 0xecd7688b spi_mem_default_supports_op +EXPORT_SYMBOL_GPL vmlinux 0xecbbc789 tracepoint_probe_unregister +EXPORT_SYMBOL_GPL vmlinux 0xecc5efe2 pci_stop_root_bus +EXPORT_SYMBOL_GPL vmlinux 0xecd2d8da extcon_set_property_capability EXPORT_SYMBOL_GPL vmlinux 0xecd8f23d xenbus_read -EXPORT_SYMBOL_GPL vmlinux 0xecdd0b76 usb_enable_lpm -EXPORT_SYMBOL_GPL vmlinux 0xeced99bf extcon_get_property_capability -EXPORT_SYMBOL_GPL vmlinux 0xecfe74ba __regmap_init_mmio_clk -EXPORT_SYMBOL_GPL vmlinux 0xed0a7c55 gpiod_get_array_optional -EXPORT_SYMBOL_GPL vmlinux 0xed136452 wm831x_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0xed371bb7 dax_finish_sync_fault +EXPORT_SYMBOL_GPL vmlinux 0xecdb5296 max8997_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0xecdeac06 devm_thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0xecfcbd31 pm_wakeup_dev_event +EXPORT_SYMBOL_GPL vmlinux 0xed143386 msg_zerocopy_callback +EXPORT_SYMBOL_GPL vmlinux 0xed1cb075 iommu_get_domain_for_dev +EXPORT_SYMBOL_GPL vmlinux 0xed32354b usb_mon_register EXPORT_SYMBOL_GPL vmlinux 0xed39b7b8 parse_OID -EXPORT_SYMBOL_GPL vmlinux 0xed3c0862 gpiod_put_array -EXPORT_SYMBOL_GPL vmlinux 0xed3d5e97 ata_sff_postreset -EXPORT_SYMBOL_GPL vmlinux 0xed435c38 pci_enable_rom -EXPORT_SYMBOL_GPL vmlinux 0xed6436d7 __SCK__tp_func_block_unplug -EXPORT_SYMBOL_GPL vmlinux 0xed6c28dd raw_seq_next +EXPORT_SYMBOL_GPL vmlinux 0xed4022be rio_attach_device +EXPORT_SYMBOL_GPL vmlinux 0xed5ab00e __traceiter_neigh_update_done +EXPORT_SYMBOL_GPL vmlinux 0xed668492 __devm_regmap_init +EXPORT_SYMBOL_GPL vmlinux 0xed67fef2 devm_serdev_device_open +EXPORT_SYMBOL_GPL vmlinux 0xed6a97d1 irq_domain_update_bus_token +EXPORT_SYMBOL_GPL vmlinux 0xed6e68d4 regmap_raw_read +EXPORT_SYMBOL_GPL vmlinux 0xed7ab957 xdp_rxq_info_unreg EXPORT_SYMBOL_GPL vmlinux 0xed7c7b91 raw_v6_hashinfo -EXPORT_SYMBOL_GPL vmlinux 0xed92def7 udp_init_sock -EXPORT_SYMBOL_GPL vmlinux 0xed92fb1e debugfs_create_dir -EXPORT_SYMBOL_GPL vmlinux 0xedb5aead irq_domain_set_hwirq_and_chip -EXPORT_SYMBOL_GPL vmlinux 0xedca12d8 dax_writeback_mapping_range +EXPORT_SYMBOL_GPL vmlinux 0xed811d70 extcon_unregister_notifier_all +EXPORT_SYMBOL_GPL vmlinux 0xed8f4b4a strp_unpause +EXPORT_SYMBOL_GPL vmlinux 0xed927e71 crypto_skcipher_setkey +EXPORT_SYMBOL_GPL vmlinux 0xedb574e8 pci_epc_clear_bar +EXPORT_SYMBOL_GPL vmlinux 0xedbd206c devlink_reload_disable +EXPORT_SYMBOL_GPL vmlinux 0xedbfdde0 platform_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xedc3cebc pcie_update_link_speed +EXPORT_SYMBOL_GPL vmlinux 0xedce0fc6 pm_genpd_add_subdomain EXPORT_SYMBOL_GPL vmlinux 0xedd092d5 power_supply_notifier EXPORT_SYMBOL_GPL vmlinux 0xede98ec5 intel_pt_validate_hw_cap EXPORT_SYMBOL_GPL vmlinux 0xede9a09a btree_lookup -EXPORT_SYMBOL_GPL vmlinux 0xedf8414d regmap_read -EXPORT_SYMBOL_GPL vmlinux 0xedf8b40c iommu_register_device_fault_handler -EXPORT_SYMBOL_GPL vmlinux 0xee0e9af2 fsnotify_find_mark +EXPORT_SYMBOL_GPL vmlinux 0xedf44c10 edac_device_alloc_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0xedf50571 cpufreq_freq_attr_scaling_available_freqs +EXPORT_SYMBOL_GPL vmlinux 0xedf9b400 kobject_uevent_env +EXPORT_SYMBOL_GPL vmlinux 0xee0ed24f vfs_removexattr +EXPORT_SYMBOL_GPL vmlinux 0xee0f0db0 __acpi_node_get_property_reference EXPORT_SYMBOL_GPL vmlinux 0xee13e697 set_personality_ia32 -EXPORT_SYMBOL_GPL vmlinux 0xee2af45c fuse_do_ioctl EXPORT_SYMBOL_GPL vmlinux 0xee38ef57 register_switchdev_blocking_notifier -EXPORT_SYMBOL_GPL vmlinux 0xee4f96d4 iomap_releasepage +EXPORT_SYMBOL_GPL vmlinux 0xee40598c wm831x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xee4a0f14 devm_device_add_group EXPORT_SYMBOL_GPL vmlinux 0xee518148 kmsg_dump_get_buffer -EXPORT_SYMBOL_GPL vmlinux 0xee5566bb exportfs_encode_inode_fh -EXPORT_SYMBOL_GPL vmlinux 0xee56a50f usb_unanchor_urb -EXPORT_SYMBOL_GPL vmlinux 0xee671efe max8997_bulk_read 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 0xee6d2b98 intel_pinctrl_get_soc_data -EXPORT_SYMBOL_GPL vmlinux 0xee70c4fa pstore_register -EXPORT_SYMBOL_GPL vmlinux 0xee723f08 usb_hcd_is_primary_hcd -EXPORT_SYMBOL_GPL vmlinux 0xee75465a acpi_dev_get_resources -EXPORT_SYMBOL_GPL vmlinux 0xee7b1b0b nexthop_for_each_fib6_nh -EXPORT_SYMBOL_GPL vmlinux 0xeeaa642a tcp_ca_get_key_by_name +EXPORT_SYMBOL_GPL vmlinux 0xee707874 vfio_pci_core_register_device +EXPORT_SYMBOL_GPL vmlinux 0xee7385cc acpi_spi_count_resources +EXPORT_SYMBOL_GPL vmlinux 0xee7d61df __strp_unpause +EXPORT_SYMBOL_GPL vmlinux 0xee96f27f regmap_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0xeeab5742 devlink_resources_unregister EXPORT_SYMBOL_GPL vmlinux 0xeeab8650 smca_get_long_name -EXPORT_SYMBOL_GPL vmlinux 0xeeba968e task_cgroup_path -EXPORT_SYMBOL_GPL vmlinux 0xeecff725 generic_fh_to_dentry +EXPORT_SYMBOL_GPL vmlinux 0xeeb164d4 __tcp_send_ack +EXPORT_SYMBOL_GPL vmlinux 0xeeca0f6f bpf_sk_storage_diag_put EXPORT_SYMBOL_GPL vmlinux 0xeed0cea4 kernel_read_file_from_fd EXPORT_SYMBOL_GPL vmlinux 0xeedd987e phy_10gbit_features_array EXPORT_SYMBOL_GPL vmlinux 0xeedfcec3 task_work_run -EXPORT_SYMBOL_GPL vmlinux 0xeee17281 __SCK__tp_func_br_fdb_add +EXPORT_SYMBOL_GPL vmlinux 0xeee21093 xfrm_audit_state_add EXPORT_SYMBOL_GPL vmlinux 0xeee667d3 fpregs_assert_state_consistent -EXPORT_SYMBOL_GPL vmlinux 0xef0e399e gnttab_dma_free_pages +EXPORT_SYMBOL_GPL vmlinux 0xeee9e3d4 vmf_insert_pfn_pud_prot +EXPORT_SYMBOL_GPL vmlinux 0xeef2868a pci_sriov_get_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0xeef7e81a user_destroy +EXPORT_SYMBOL_GPL vmlinux 0xeefa20ea sysfs_unbreak_active_protection +EXPORT_SYMBOL_GPL vmlinux 0xeefe63b7 extcon_set_property_sync +EXPORT_SYMBOL_GPL vmlinux 0xef036ead pm_generic_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0xef07773b dev_attr_sw_activity +EXPORT_SYMBOL_GPL vmlinux 0xef08a49d __SCK__tp_func_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0xef1e4e9a wbc_account_cgroup_owner EXPORT_SYMBOL_GPL vmlinux 0xef1f6e23 apei_resources_request -EXPORT_SYMBOL_GPL vmlinux 0xef226491 sock_prot_inuse_add -EXPORT_SYMBOL_GPL vmlinux 0xef251167 __tracepoint_arm_event EXPORT_SYMBOL_GPL vmlinux 0xef29fcdd clk_bulk_put +EXPORT_SYMBOL_GPL vmlinux 0xef2e0dc4 icc_node_add +EXPORT_SYMBOL_GPL vmlinux 0xef307412 rio_release_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0xef311196 usb_hub_find_child EXPORT_SYMBOL_GPL vmlinux 0xef34bf3e hrtimer_active -EXPORT_SYMBOL_GPL vmlinux 0xef450107 devm_phy_create +EXPORT_SYMBOL_GPL vmlinux 0xef389e10 nvdimm_delete +EXPORT_SYMBOL_GPL vmlinux 0xef3e044e mptcp_get_reset_option EXPORT_SYMBOL_GPL vmlinux 0xef464c28 getboottime64 +EXPORT_SYMBOL_GPL vmlinux 0xef468665 bus_for_each_drv +EXPORT_SYMBOL_GPL vmlinux 0xef5b3db7 sched_trace_cfs_rq_avg +EXPORT_SYMBOL_GPL vmlinux 0xef5bed6e ping_init_sock EXPORT_SYMBOL_GPL vmlinux 0xef5db66d regulator_get_init_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xef6084cd irq_domain_free_irqs_common EXPORT_SYMBOL_GPL vmlinux 0xef6c3f70 round_jiffies_up_relative EXPORT_SYMBOL_GPL vmlinux 0xef70eb7e ring_buffer_iter_advance EXPORT_SYMBOL_GPL vmlinux 0xef744bb5 sbitmap_queue_clear +EXPORT_SYMBOL_GPL vmlinux 0xef757161 nvdimm_bus_register +EXPORT_SYMBOL_GPL vmlinux 0xef782389 rio_dev_get +EXPORT_SYMBOL_GPL vmlinux 0xef85a783 mmu_interval_read_begin EXPORT_SYMBOL_GPL vmlinux 0xef8fc95f kvm_async_pf_task_wait_schedule -EXPORT_SYMBOL_GPL vmlinux 0xef92d856 devm_device_remove_group EXPORT_SYMBOL_GPL vmlinux 0xef92ef33 btree_last -EXPORT_SYMBOL_GPL vmlinux 0xef98d6b6 device_for_each_child +EXPORT_SYMBOL_GPL vmlinux 0xefa12f7e fb_bl_default_curve EXPORT_SYMBOL_GPL vmlinux 0xefa2c27d register_tracepoint_module_notifier -EXPORT_SYMBOL_GPL vmlinux 0xefb70342 fsverity_ioctl_measure -EXPORT_SYMBOL_GPL vmlinux 0xefb7f924 inet_csk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0xefba31fe xdp_return_frame_rx_napi -EXPORT_SYMBOL_GPL vmlinux 0xefd27b13 fuse_get_unique -EXPORT_SYMBOL_GPL vmlinux 0xefd4ab2a genphy_c45_pma_setup_forced -EXPORT_SYMBOL_GPL vmlinux 0xefd573cc devm_regmap_del_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0xefdcd1f2 io_cgrp_subsys +EXPORT_SYMBOL_GPL vmlinux 0xefa4ab4e pci_check_and_mask_intx +EXPORT_SYMBOL_GPL vmlinux 0xefa6460c dev_fill_forward_path +EXPORT_SYMBOL_GPL vmlinux 0xefa9c0eb wakeup_sources_walk_next +EXPORT_SYMBOL_GPL vmlinux 0xefd5d30e regulator_unregister_supply_alias EXPORT_SYMBOL_GPL vmlinux 0xefeafcf1 edac_has_mcs -EXPORT_SYMBOL_GPL vmlinux 0xeff9e6ad phy_modify -EXPORT_SYMBOL_GPL vmlinux 0xeffd4035 ip6_route_output_flags -EXPORT_SYMBOL_GPL vmlinux 0xf0111986 net_ns_type_operations -EXPORT_SYMBOL_GPL vmlinux 0xf012c895 regmap_raw_write -EXPORT_SYMBOL_GPL vmlinux 0xf0192841 __ata_change_queue_depth -EXPORT_SYMBOL_GPL vmlinux 0xf021ca0d pm_relax -EXPORT_SYMBOL_GPL vmlinux 0xf02b4aac umd_unload_blob +EXPORT_SYMBOL_GPL vmlinux 0xefedaa88 devm_platform_get_and_ioremap_resource +EXPORT_SYMBOL_GPL vmlinux 0xeffb0011 iommu_unregister_device_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0xf00f6fde handle_mm_fault +EXPORT_SYMBOL_GPL vmlinux 0xf028c73f kthread_flush_work +EXPORT_SYMBOL_GPL vmlinux 0xf02972d1 alarmtimer_get_rtcdev +EXPORT_SYMBOL_GPL vmlinux 0xf0305912 genphy_c45_pma_suspend +EXPORT_SYMBOL_GPL vmlinux 0xf03592d7 cpufreq_dbs_governor_limits EXPORT_SYMBOL_GPL vmlinux 0xf04429b4 acpi_bus_get_status_handle -EXPORT_SYMBOL_GPL vmlinux 0xf0460171 reset_controller_register -EXPORT_SYMBOL_GPL vmlinux 0xf05437eb vfio_group_get_external_user_from_dev +EXPORT_SYMBOL_GPL vmlinux 0xf0558d6b pinctrl_select_state EXPORT_SYMBOL_GPL vmlinux 0xf05a52fe asn1_encode_oid -EXPORT_SYMBOL_GPL vmlinux 0xf05c2d60 sata_lpm_ignore_phy_events EXPORT_SYMBOL_GPL vmlinux 0xf05fbf09 pci_pio_to_address -EXPORT_SYMBOL_GPL vmlinux 0xf06098d3 devm_extcon_dev_free EXPORT_SYMBOL_GPL vmlinux 0xf0696401 acpi_pci_detect_ejectable -EXPORT_SYMBOL_GPL vmlinux 0xf06edd3a sdio_f0_readb -EXPORT_SYMBOL_GPL vmlinux 0xf070ea8f posix_acl_access_xattr_handler -EXPORT_SYMBOL_GPL vmlinux 0xf076ba3a dm_suspended -EXPORT_SYMBOL_GPL vmlinux 0xf085920d serial8250_release_dma +EXPORT_SYMBOL_GPL vmlinux 0xf06d7239 blkg_lookup_slowpath +EXPORT_SYMBOL_GPL vmlinux 0xf070862e clk_hw_get_flags +EXPORT_SYMBOL_GPL vmlinux 0xf072f48c usb_pipe_type_check +EXPORT_SYMBOL_GPL vmlinux 0xf07303b0 netdev_rx_handler_register +EXPORT_SYMBOL_GPL vmlinux 0xf09087ae dev_pm_opp_put_opp_table EXPORT_SYMBOL_GPL vmlinux 0xf0910075 sfp_bus_del_upstream +EXPORT_SYMBOL_GPL vmlinux 0xf09373f9 tty_port_register_device_attr_serdev +EXPORT_SYMBOL_GPL vmlinux 0xf09956e3 acpiphp_unregister_attention +EXPORT_SYMBOL_GPL vmlinux 0xf09add69 dev_pm_genpd_resume EXPORT_SYMBOL_GPL vmlinux 0xf0a0c69d init_iova_domain -EXPORT_SYMBOL_GPL vmlinux 0xf0c3ac39 dma_get_slave_caps +EXPORT_SYMBOL_GPL vmlinux 0xf0bc0e48 pci_iomap_wc EXPORT_SYMBOL_GPL vmlinux 0xf0d478c7 list_lru_add -EXPORT_SYMBOL_GPL vmlinux 0xf10cafcc is_nvdimm_sync -EXPORT_SYMBOL_GPL vmlinux 0xf1163130 dev_pm_opp_remove_all_dynamic -EXPORT_SYMBOL_GPL vmlinux 0xf1298527 clk_mux_determine_rate_flags -EXPORT_SYMBOL_GPL vmlinux 0xf12cd2a3 usb_free_urb -EXPORT_SYMBOL_GPL vmlinux 0xf1415a21 bpfilter_umh_cleanup -EXPORT_SYMBOL_GPL vmlinux 0xf16bf428 tps6586x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xf17549e5 devm_pm_opp_register_set_opp_helper -EXPORT_SYMBOL_GPL vmlinux 0xf183422d sk_msg_memcopy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0xf0d533cf pci_pri_supported +EXPORT_SYMBOL_GPL vmlinux 0xf0df1c1a irq_domain_add_legacy +EXPORT_SYMBOL_GPL vmlinux 0xf0e1102a fuse_init_fs_context_submount +EXPORT_SYMBOL_GPL vmlinux 0xf1178bdf spi_statistics_add_transfer_stats +EXPORT_SYMBOL_GPL vmlinux 0xf134d7a4 devm_extcon_dev_allocate +EXPORT_SYMBOL_GPL vmlinux 0xf1394886 __platform_create_bundle +EXPORT_SYMBOL_GPL vmlinux 0xf15b371d ping_get_port +EXPORT_SYMBOL_GPL vmlinux 0xf172b4f1 skb_to_sgvec_nomark +EXPORT_SYMBOL_GPL vmlinux 0xf18372d7 nvdimm_bus_check_dimm_count EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off EXPORT_SYMBOL_GPL vmlinux 0xf188a662 rhashtable_walk_exit -EXPORT_SYMBOL_GPL vmlinux 0xf19d46b3 power_supply_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0xf19e7210 phy_set_speed -EXPORT_SYMBOL_GPL vmlinux 0xf1af2958 l3mdev_master_upper_ifindex_by_index_rcu -EXPORT_SYMBOL_GPL vmlinux 0xf1cd31b6 get_cpu_device +EXPORT_SYMBOL_GPL vmlinux 0xf18d0d73 sata_link_scr_lpm +EXPORT_SYMBOL_GPL vmlinux 0xf19c9846 perf_event_update_userpage +EXPORT_SYMBOL_GPL vmlinux 0xf1ad6094 skb_segment_list EXPORT_SYMBOL_GPL vmlinux 0xf1cd8929 kvm_read_and_reset_apf_flags -EXPORT_SYMBOL_GPL vmlinux 0xf1d3ec82 gpiochip_populate_parent_fwspec_twocell -EXPORT_SYMBOL_GPL vmlinux 0xf1d555b3 __devm_regmap_init_spi -EXPORT_SYMBOL_GPL vmlinux 0xf1e49335 rio_release_outb_dbell -EXPORT_SYMBOL_GPL vmlinux 0xf1f7f030 pinctrl_select_state -EXPORT_SYMBOL_GPL vmlinux 0xf218a1a8 lwtstate_free +EXPORT_SYMBOL_GPL vmlinux 0xf1d72bf2 tpm2_probe +EXPORT_SYMBOL_GPL vmlinux 0xf1db669a __fput_sync +EXPORT_SYMBOL_GPL vmlinux 0xf1dd93b3 __tracepoint_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0xf1e29f51 ncsi_unregister_dev +EXPORT_SYMBOL_GPL vmlinux 0xf1e49ecb extcon_get_edev_name +EXPORT_SYMBOL_GPL vmlinux 0xf1ea8a8b devlink_port_type_clear +EXPORT_SYMBOL_GPL vmlinux 0xf2096a7e trace_define_field EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0xf2222a96 tty_ldisc_ref -EXPORT_SYMBOL_GPL vmlinux 0xf238a1e8 dev_pm_disable_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0xf2494eb3 bpf_prog_create_from_user -EXPORT_SYMBOL_GPL vmlinux 0xf25c6a9d platform_device_add_resources -EXPORT_SYMBOL_GPL vmlinux 0xf2750684 __mnt_drop_write -EXPORT_SYMBOL_GPL vmlinux 0xf2789f04 inet6_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0xf22c2401 store_sampling_rate +EXPORT_SYMBOL_GPL vmlinux 0xf23be34f fib6_get_table +EXPORT_SYMBOL_GPL vmlinux 0xf23bedbc unregister_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xf24062e1 __tracepoint_devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0xf24bd8c0 md_stop +EXPORT_SYMBOL_GPL vmlinux 0xf263c155 ethnl_cable_test_finished +EXPORT_SYMBOL_GPL vmlinux 0xf2738f04 dm_start_time_ns_from_clone +EXPORT_SYMBOL_GPL vmlinux 0xf2762528 inet_csk_listen_start EXPORT_SYMBOL_GPL vmlinux 0xf27d0a7b gnttab_grant_foreign_access_ref -EXPORT_SYMBOL_GPL vmlinux 0xf28776bb devlink_dpipe_headers_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf292982b clk_hw_get_flags EXPORT_SYMBOL_GPL vmlinux 0xf2967796 ring_buffer_record_on -EXPORT_SYMBOL_GPL vmlinux 0xf29a568d mbox_client_txdone -EXPORT_SYMBOL_GPL vmlinux 0xf2a50c09 device_reprobe -EXPORT_SYMBOL_GPL vmlinux 0xf2a8f5d8 dev_pm_qos_update_user_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0xf29fb5c6 serial8250_em485_stop_tx +EXPORT_SYMBOL_GPL vmlinux 0xf2aa999d inet_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0xf2affb1e net_ns_get_ownership EXPORT_SYMBOL_GPL vmlinux 0xf2b33cb7 memory_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xf2b6fcfb ata_pci_shutdown_one -EXPORT_SYMBOL_GPL vmlinux 0xf2bd36a3 device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf2d3d5fb pci_hp_add -EXPORT_SYMBOL_GPL vmlinux 0xf2d91d68 usb_hcd_amd_remote_wakeup_quirk -EXPORT_SYMBOL_GPL vmlinux 0xf2e843cf irq_chip_disable_parent -EXPORT_SYMBOL_GPL vmlinux 0xf2f9281e regmap_field_bulk_free -EXPORT_SYMBOL_GPL vmlinux 0xf2fa0665 vfio_pci_core_close_device +EXPORT_SYMBOL_GPL vmlinux 0xf2c53d53 pci_write_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0xf2d02563 md_do_sync +EXPORT_SYMBOL_GPL vmlinux 0xf2e9ac3f dev_pm_opp_remove_all_dynamic +EXPORT_SYMBOL_GPL vmlinux 0xf2f9fff1 xdp_master_redirect EXPORT_SYMBOL_GPL vmlinux 0xf2fb61bd vprintk_default -EXPORT_SYMBOL_GPL vmlinux 0xf2fce964 devm_i2c_add_adapter EXPORT_SYMBOL_GPL vmlinux 0xf30a5502 cpufreq_enable_boost_support -EXPORT_SYMBOL_GPL vmlinux 0xf30be213 rio_add_device EXPORT_SYMBOL_GPL vmlinux 0xf311e156 key_being_used_for EXPORT_SYMBOL_GPL vmlinux 0xf31632e0 ezx_pcap_read -EXPORT_SYMBOL_GPL vmlinux 0xf3185edb blk_req_needs_zone_write_lock EXPORT_SYMBOL_GPL vmlinux 0xf3189f7e __uv_cpu_info +EXPORT_SYMBOL_GPL vmlinux 0xf318df5a platform_get_irq +EXPORT_SYMBOL_GPL vmlinux 0xf31ae6ed vfio_assign_device_set EXPORT_SYMBOL_GPL vmlinux 0xf31b3fd1 workqueue_set_max_active -EXPORT_SYMBOL_GPL vmlinux 0xf31eef54 phy_speed_down +EXPORT_SYMBOL_GPL vmlinux 0xf321704a tty_set_termios +EXPORT_SYMBOL_GPL vmlinux 0xf324aae8 dma_buf_detach +EXPORT_SYMBOL_GPL vmlinux 0xf325b703 pinctrl_utils_add_map_configs +EXPORT_SYMBOL_GPL vmlinux 0xf32b169d ata_pci_bmdma_clear_simplex EXPORT_SYMBOL_GPL vmlinux 0xf32bdc5d unregister_xenstore_notifier EXPORT_SYMBOL_GPL vmlinux 0xf331236f btree_geo32 -EXPORT_SYMBOL_GPL vmlinux 0xf33e6973 dev_get_regmap -EXPORT_SYMBOL_GPL vmlinux 0xf3519cc7 devlink_dpipe_entry_ctx_prepare +EXPORT_SYMBOL_GPL vmlinux 0xf3418da0 xenbus_match EXPORT_SYMBOL_GPL vmlinux 0xf352023f memory_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xf35aaf5e extcon_get_extcon_dev +EXPORT_SYMBOL_GPL vmlinux 0xf356b9cc __SCK__tp_func_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0xf362ed27 pci_try_reset_function +EXPORT_SYMBOL_GPL vmlinux 0xf36bcd56 gpiochip_populate_parent_fwspec_twocell +EXPORT_SYMBOL_GPL vmlinux 0xf3701f0e i2c_bus_type EXPORT_SYMBOL_GPL vmlinux 0xf3797506 mpi_ec_deinit +EXPORT_SYMBOL_GPL vmlinux 0xf37c3dc6 inet6_sk_rebuild_header EXPORT_SYMBOL_GPL vmlinux 0xf3808cb1 get_state_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0xf38ab468 rdev_set_badblocks EXPORT_SYMBOL_GPL vmlinux 0xf39aee75 perf_msr_probe -EXPORT_SYMBOL_GPL vmlinux 0xf3b073a0 __traceiter_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0xf39f2db8 find_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0xf3a2a935 xenbus_watch_path +EXPORT_SYMBOL_GPL vmlinux 0xf3b3433d __tracepoint_devlink_hwmsg EXPORT_SYMBOL_GPL vmlinux 0xf3b451ca kdb_poll_funcs -EXPORT_SYMBOL_GPL vmlinux 0xf3b6f3bc pci_user_read_config_dword EXPORT_SYMBOL_GPL vmlinux 0xf3b95d79 btree_remove -EXPORT_SYMBOL_GPL vmlinux 0xf3bf857f usb_put_intf -EXPORT_SYMBOL_GPL vmlinux 0xf3c45ca8 uart_set_options -EXPORT_SYMBOL_GPL vmlinux 0xf3d18ec5 sk_msg_clone -EXPORT_SYMBOL_GPL vmlinux 0xf3d3748d netlink_add_tap -EXPORT_SYMBOL_GPL vmlinux 0xf3d5b2ae fib_nl_newrule -EXPORT_SYMBOL_GPL vmlinux 0xf3e11708 adp5520_clr_bits -EXPORT_SYMBOL_GPL vmlinux 0xf3e97ecc fsnotify_alloc_group -EXPORT_SYMBOL_GPL vmlinux 0xf3fa37fe __tracepoint_block_unplug -EXPORT_SYMBOL_GPL vmlinux 0xf40076fa tty_port_register_device_attr -EXPORT_SYMBOL_GPL vmlinux 0xf4026aa8 devlink_port_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf40b417a __traceiter_rpm_idle -EXPORT_SYMBOL_GPL vmlinux 0xf40bc5da devm_of_phy_get -EXPORT_SYMBOL_GPL vmlinux 0xf4239522 ipv6_recv_error -EXPORT_SYMBOL_GPL vmlinux 0xf425438d relay_subbufs_consumed -EXPORT_SYMBOL_GPL vmlinux 0xf43efdd0 pci_epf_remove_vepf -EXPORT_SYMBOL_GPL vmlinux 0xf44a51d2 sock_inuse_get -EXPORT_SYMBOL_GPL vmlinux 0xf44a86b2 d_exchange -EXPORT_SYMBOL_GPL vmlinux 0xf45807f6 pci_get_dsn -EXPORT_SYMBOL_GPL vmlinux 0xf4630a6d simple_attr_release -EXPORT_SYMBOL_GPL vmlinux 0xf4670501 pm_generic_poweroff_noirq +EXPORT_SYMBOL_GPL vmlinux 0xf3becd78 ata_scsi_slave_destroy +EXPORT_SYMBOL_GPL vmlinux 0xf3c115c1 gpiochip_line_is_persistent +EXPORT_SYMBOL_GPL vmlinux 0xf3c9d696 pm_wakeup_ws_event +EXPORT_SYMBOL_GPL vmlinux 0xf3d12546 usb_hcd_pci_probe +EXPORT_SYMBOL_GPL vmlinux 0xf3e23635 fuse_abort_conn +EXPORT_SYMBOL_GPL vmlinux 0xf4123bca __traceiter_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0xf412c3af exportfs_decode_fh +EXPORT_SYMBOL_GPL vmlinux 0xf415d62e sysfs_rename_link_ns +EXPORT_SYMBOL_GPL vmlinux 0xf41ed775 inet6_lookup +EXPORT_SYMBOL_GPL vmlinux 0xf420e0b7 xhci_get_ep_ctx +EXPORT_SYMBOL_GPL vmlinux 0xf423da23 regcache_drop_region +EXPORT_SYMBOL_GPL vmlinux 0xf4246d09 devm_bitmap_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf43139f1 devfreq_event_get_edev_count +EXPORT_SYMBOL_GPL vmlinux 0xf43a96cc component_bind_all +EXPORT_SYMBOL_GPL vmlinux 0xf44235e8 init_user_ns +EXPORT_SYMBOL_GPL vmlinux 0xf4456044 mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xf45420ef kthread_data EXPORT_SYMBOL_GPL vmlinux 0xf4689d50 linkmode_set_pause -EXPORT_SYMBOL_GPL vmlinux 0xf46b5b4f sk_msg_free_partial -EXPORT_SYMBOL_GPL vmlinux 0xf4713515 iommu_aux_get_pasid EXPORT_SYMBOL_GPL vmlinux 0xf47654df irq_check_status_bit -EXPORT_SYMBOL_GPL vmlinux 0xf47ac70e usb_autopm_put_interface_no_suspend -EXPORT_SYMBOL_GPL vmlinux 0xf47d663b edac_mc_del_mc -EXPORT_SYMBOL_GPL vmlinux 0xf494ce68 ata_sas_sync_probe -EXPORT_SYMBOL_GPL vmlinux 0xf4a51cd0 gpiochip_line_is_open_source +EXPORT_SYMBOL_GPL vmlinux 0xf493f37b iomap_file_unshare +EXPORT_SYMBOL_GPL vmlinux 0xf49dd5bf xhci_run +EXPORT_SYMBOL_GPL vmlinux 0xf49eb9d5 blk_mq_flush_busy_ctxs +EXPORT_SYMBOL_GPL vmlinux 0xf4a061b8 dev_coredumpv +EXPORT_SYMBOL_GPL vmlinux 0xf4a8c75c ip_route_output_tunnel +EXPORT_SYMBOL_GPL vmlinux 0xf4ae243a raw_seq_start EXPORT_SYMBOL_GPL vmlinux 0xf4af35c2 rcu_gp_is_normal -EXPORT_SYMBOL_GPL vmlinux 0xf4b6d97a xhci_suspend -EXPORT_SYMBOL_GPL vmlinux 0xf4bdfe01 iopf_queue_add_device EXPORT_SYMBOL_GPL vmlinux 0xf4cd9f8f reset_control_bulk_release -EXPORT_SYMBOL_GPL vmlinux 0xf4daa3a7 spi_res_release +EXPORT_SYMBOL_GPL vmlinux 0xf4d7f638 regulator_set_drvdata EXPORT_SYMBOL_GPL vmlinux 0xf4dd89bf uv_get_hubless_system +EXPORT_SYMBOL_GPL vmlinux 0xf4de70dc eventfd_ctx_fileget EXPORT_SYMBOL_GPL vmlinux 0xf4e35e28 sbitmap_prepare_to_wait -EXPORT_SYMBOL_GPL vmlinux 0xf4ea167a phy_set_mode_ext +EXPORT_SYMBOL_GPL vmlinux 0xf4eaf792 acpi_subsys_poweroff +EXPORT_SYMBOL_GPL vmlinux 0xf4ee4f61 rio_mport_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0xf4f0d9bc pm_runtime_set_memalloc_noio EXPORT_SYMBOL_GPL vmlinux 0xf4f69d1f clk_hw_unregister_gate -EXPORT_SYMBOL_GPL vmlinux 0xf5019dc5 __usb_create_hcd -EXPORT_SYMBOL_GPL vmlinux 0xf501e5a0 sata_port_ops -EXPORT_SYMBOL_GPL vmlinux 0xf506fb3f i2c_new_smbus_alert_device -EXPORT_SYMBOL_GPL vmlinux 0xf50db9c7 usb_find_alt_setting -EXPORT_SYMBOL_GPL vmlinux 0xf5156dd0 nvdimm_bus_add_badrange -EXPORT_SYMBOL_GPL vmlinux 0xf5214961 bpf_offload_dev_create -EXPORT_SYMBOL_GPL vmlinux 0xf52d6a87 cgroup_get_e_css -EXPORT_SYMBOL_GPL vmlinux 0xf53a0ffd usb_hcd_end_port_resume -EXPORT_SYMBOL_GPL vmlinux 0xf542ae9d alloc_empty_file +EXPORT_SYMBOL_GPL vmlinux 0xf4f797f6 __blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0xf4f79d86 vfio_pci_core_write +EXPORT_SYMBOL_GPL vmlinux 0xf509846a icc_get +EXPORT_SYMBOL_GPL vmlinux 0xf50bc657 iommu_aux_attach_device +EXPORT_SYMBOL_GPL vmlinux 0xf50e580e ip_local_out +EXPORT_SYMBOL_GPL vmlinux 0xf519f0c3 pci_msi_prepare +EXPORT_SYMBOL_GPL vmlinux 0xf51f8414 devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0xf520bd43 gpiod_get_raw_value +EXPORT_SYMBOL_GPL vmlinux 0xf523bc58 __devm_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0xf5240ace irq_domain_remove EXPORT_SYMBOL_GPL vmlinux 0xf548988d put_iova_domain EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm EXPORT_SYMBOL_GPL vmlinux 0xf553318d cpuidle_pause_and_lock -EXPORT_SYMBOL_GPL vmlinux 0xf559220c dma_buf_vunmap -EXPORT_SYMBOL_GPL vmlinux 0xf56193d9 rio_route_get_entry -EXPORT_SYMBOL_GPL vmlinux 0xf5641922 __traceiter_br_fdb_external_learn_add -EXPORT_SYMBOL_GPL vmlinux 0xf564797f pci_iomap_wc -EXPORT_SYMBOL_GPL vmlinux 0xf5649cb4 irq_chip_unmask_parent -EXPORT_SYMBOL_GPL vmlinux 0xf565fbba of_icc_get_from_provider -EXPORT_SYMBOL_GPL vmlinux 0xf5660e13 led_trigger_read -EXPORT_SYMBOL_GPL vmlinux 0xf574ae6c bpf_prog_get_type_dev -EXPORT_SYMBOL_GPL vmlinux 0xf57af9ab regulator_bulk_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0xf583c4f2 bpf_map_put -EXPORT_SYMBOL_GPL vmlinux 0xf588221e uhci_check_and_reset_hc -EXPORT_SYMBOL_GPL vmlinux 0xf58f4269 sata_link_resume -EXPORT_SYMBOL_GPL vmlinux 0xf59ea182 driver_register +EXPORT_SYMBOL_GPL vmlinux 0xf55589e4 i2c_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0xf5561012 devm_regmap_add_irq_chip_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xf572f758 ata_host_init +EXPORT_SYMBOL_GPL vmlinux 0xf57dd703 device_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0xf5868cce dev_pm_genpd_set_performance_state +EXPORT_SYMBOL_GPL vmlinux 0xf5906d3a regulator_map_voltage_ascend +EXPORT_SYMBOL_GPL vmlinux 0xf5949c76 kstrdup_quotable_cmdline +EXPORT_SYMBOL_GPL vmlinux 0xf59d5493 uart_console_device +EXPORT_SYMBOL_GPL vmlinux 0xf59da1ac spi_bus_type EXPORT_SYMBOL_GPL vmlinux 0xf5a3ba99 linear_range_values_in_range EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus -EXPORT_SYMBOL_GPL vmlinux 0xf5d299b7 devm_regulator_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0xf5dce657 blk_ksm_reprogram_all_keys -EXPORT_SYMBOL_GPL vmlinux 0xf5efbffb vfs_submount +EXPORT_SYMBOL_GPL vmlinux 0xf5aeea6e dm_post_suspending +EXPORT_SYMBOL_GPL vmlinux 0xf5b3c090 fscrypt_ioctl_add_key +EXPORT_SYMBOL_GPL vmlinux 0xf5be4dc6 regmap_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0xf5c2af64 virtqueue_disable_cb EXPORT_SYMBOL_GPL vmlinux 0xf5f370e0 async_schedule_node -EXPORT_SYMBOL_GPL vmlinux 0xf60264e8 sdio_align_size -EXPORT_SYMBOL_GPL vmlinux 0xf6115043 devm_rtc_nvmem_register -EXPORT_SYMBOL_GPL vmlinux 0xf623a09e get_task_pid -EXPORT_SYMBOL_GPL vmlinux 0xf62857ae __SCK__tp_func_devlink_hwerr -EXPORT_SYMBOL_GPL vmlinux 0xf62fe158 pwm_free -EXPORT_SYMBOL_GPL vmlinux 0xf6340baa device_store_int -EXPORT_SYMBOL_GPL vmlinux 0xf634cdb0 platform_get_resource -EXPORT_SYMBOL_GPL vmlinux 0xf6441674 ata_cable_ignore EXPORT_SYMBOL_GPL vmlinux 0xf64aaa25 alarm_init -EXPORT_SYMBOL_GPL vmlinux 0xf64c7dbf platform_msi_domain_free_irqs +EXPORT_SYMBOL_GPL vmlinux 0xf65a49b9 sched_trace_rq_cpu EXPORT_SYMBOL_GPL vmlinux 0xf663ee2f pcap_adc_sync -EXPORT_SYMBOL_GPL vmlinux 0xf664c52a uart_get_rs485_mode -EXPORT_SYMBOL_GPL vmlinux 0xf672d581 bpf_trace_run9 -EXPORT_SYMBOL_GPL vmlinux 0xf69f76c6 __tracepoint_devlink_trap_report EXPORT_SYMBOL_GPL vmlinux 0xf6a28554 region_intersects -EXPORT_SYMBOL_GPL vmlinux 0xf6a6446b usb_choose_configuration -EXPORT_SYMBOL_GPL vmlinux 0xf6ad1616 cpuidle_get_cpu_driver -EXPORT_SYMBOL_GPL vmlinux 0xf6b6c00e bpf_trace_run11 +EXPORT_SYMBOL_GPL vmlinux 0xf6a8fd9e pid_vnr +EXPORT_SYMBOL_GPL vmlinux 0xf6ac3402 __inet_inherit_port +EXPORT_SYMBOL_GPL vmlinux 0xf6b2e1e2 pm_clk_remove +EXPORT_SYMBOL_GPL vmlinux 0xf6b3d98b hvc_remove +EXPORT_SYMBOL_GPL vmlinux 0xf6bd6836 regulator_desc_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0xf6c6c344 tty_kopen_shared EXPORT_SYMBOL_GPL vmlinux 0xf6c71a25 cper_severity_str EXPORT_SYMBOL_GPL vmlinux 0xf6c8dc62 cpu_hotplug_enable -EXPORT_SYMBOL_GPL vmlinux 0xf6c9e67c phy_set_media -EXPORT_SYMBOL_GPL vmlinux 0xf6ddafb6 crypto_alloc_aead -EXPORT_SYMBOL_GPL vmlinux 0xf6df24b4 sdio_retune_crc_enable +EXPORT_SYMBOL_GPL vmlinux 0xf6dcb050 usb_register_device_driver EXPORT_SYMBOL_GPL vmlinux 0xf6e772c3 irq_bypass_unregister_producer EXPORT_SYMBOL_GPL vmlinux 0xf6e874f5 ata_timing_merge -EXPORT_SYMBOL_GPL vmlinux 0xf6f5bfca sysfs_create_bin_file -EXPORT_SYMBOL_GPL vmlinux 0xf6fd742f led_trigger_rename_static -EXPORT_SYMBOL_GPL vmlinux 0xf70643be restore_online_page_callback -EXPORT_SYMBOL_GPL vmlinux 0xf7086d45 __SCK__tp_func_xhci_dbg_quirks -EXPORT_SYMBOL_GPL vmlinux 0xf71107c6 wm8350_block_read -EXPORT_SYMBOL_GPL vmlinux 0xf7197995 cpufreq_driver_resolve_freq +EXPORT_SYMBOL_GPL vmlinux 0xf6f281e2 unregister_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0xf7016227 devm_gpiod_get_index_optional EXPORT_SYMBOL_GPL vmlinux 0xf72a65ea tty_get_char_size -EXPORT_SYMBOL_GPL vmlinux 0xf72ee1c7 irq_set_default_host -EXPORT_SYMBOL_GPL vmlinux 0xf74099ac dm_internal_suspend_fast +EXPORT_SYMBOL_GPL vmlinux 0xf732436a ip6_pol_route +EXPORT_SYMBOL_GPL vmlinux 0xf73ba6c4 sched_trace_cfs_rq_cpu EXPORT_SYMBOL_GPL vmlinux 0xf7455c16 input_event_to_user -EXPORT_SYMBOL_GPL vmlinux 0xf74975a0 ata_wait_after_reset 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 0xf75f0202 devlink_flash_update_timeout_notify EXPORT_SYMBOL_GPL vmlinux 0xf767ca35 fixed_percpu_data -EXPORT_SYMBOL_GPL vmlinux 0xf76d2cfd tcp_twsk_unique -EXPORT_SYMBOL_GPL vmlinux 0xf7743874 dev_pm_opp_set_sharing_cpus -EXPORT_SYMBOL_GPL vmlinux 0xf77ff7f6 fs_dax_get_by_bdev +EXPORT_SYMBOL_GPL vmlinux 0xf76cff9c pci_epc_get 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 0xf79c49a8 bio_trim EXPORT_SYMBOL_GPL vmlinux 0xf7afb369 btree_init +EXPORT_SYMBOL_GPL vmlinux 0xf7ba2996 pin_user_pages_fast_only EXPORT_SYMBOL_GPL vmlinux 0xf7bc95b0 devlink_fmsg_pair_nest_start EXPORT_SYMBOL_GPL vmlinux 0xf7c3f273 xen_resume_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0xf7c626b2 filemap_range_needs_writeback -EXPORT_SYMBOL_GPL vmlinux 0xf7d1ae06 sdio_set_block_size +EXPORT_SYMBOL_GPL vmlinux 0xf7cfe036 ata_sas_port_stop +EXPORT_SYMBOL_GPL vmlinux 0xf7d03ea5 to_nvdimm +EXPORT_SYMBOL_GPL vmlinux 0xf7d1108c scsi_flush_work +EXPORT_SYMBOL_GPL vmlinux 0xf7d3917d thermal_of_cooling_device_register EXPORT_SYMBOL_GPL vmlinux 0xf7d961d8 clk_hw_unregister_composite -EXPORT_SYMBOL_GPL vmlinux 0xf7e19cf7 pwm_get_chip_data -EXPORT_SYMBOL_GPL vmlinux 0xf7e29a27 pci_assign_unassigned_bridge_resources -EXPORT_SYMBOL_GPL vmlinux 0xf7f82b7b sock_prot_inuse_get -EXPORT_SYMBOL_GPL vmlinux 0xf7f86c78 strp_data_ready -EXPORT_SYMBOL_GPL vmlinux 0xf7f9333d xen_xlate_remap_gfn_array -EXPORT_SYMBOL_GPL vmlinux 0xf81737f5 path_noexec -EXPORT_SYMBOL_GPL vmlinux 0xf8295f89 usb_free_streams -EXPORT_SYMBOL_GPL vmlinux 0xf829d698 open_related_ns +EXPORT_SYMBOL_GPL vmlinux 0xf7e0b22f uart_handle_dcd_change +EXPORT_SYMBOL_GPL vmlinux 0xf7e42ade devm_of_phy_get_by_index +EXPORT_SYMBOL_GPL vmlinux 0xf7ece9b4 ethnl_cable_test_amplitude +EXPORT_SYMBOL_GPL vmlinux 0xf7f502f8 balloon_page_enqueue +EXPORT_SYMBOL_GPL vmlinux 0xf803e8b7 tpm_pcr_extend +EXPORT_SYMBOL_GPL vmlinux 0xf823e2ed debugfs_create_x16 +EXPORT_SYMBOL_GPL vmlinux 0xf824b346 rio_request_outb_mbox EXPORT_SYMBOL_GPL vmlinux 0xf82f3657 work_on_cpu -EXPORT_SYMBOL_GPL vmlinux 0xf8338eca fwnode_graph_get_endpoint_by_id -EXPORT_SYMBOL_GPL vmlinux 0xf839c20b devlink_net -EXPORT_SYMBOL_GPL vmlinux 0xf83a1ab6 ata_pci_remove_one -EXPORT_SYMBOL_GPL vmlinux 0xf83fc224 sk_free_unlock_clone -EXPORT_SYMBOL_GPL vmlinux 0xf86a8619 skcipher_register_instance -EXPORT_SYMBOL_GPL vmlinux 0xf86b7f97 smpboot_register_percpu_thread -EXPORT_SYMBOL_GPL vmlinux 0xf871a860 nf_ct_hook -EXPORT_SYMBOL_GPL vmlinux 0xf873bdc3 phy_pm_runtime_put_sync +EXPORT_SYMBOL_GPL vmlinux 0xf848af3b devlink_dpipe_entry_ctx_append +EXPORT_SYMBOL_GPL vmlinux 0xf860aacb auxiliary_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf8710536 sysfs_create_mount_point EXPORT_SYMBOL_GPL vmlinux 0xf873d4dc fpu_copy_uabi_to_guest_fpstate -EXPORT_SYMBOL_GPL vmlinux 0xf87b144b pci_epf_add_vepf -EXPORT_SYMBOL_GPL vmlinux 0xf87dc777 tcp_reno_cong_avoid +EXPORT_SYMBOL_GPL vmlinux 0xf877fdd0 device_bind_driver +EXPORT_SYMBOL_GPL vmlinux 0xf879887c fwnode_get_phy_mode EXPORT_SYMBOL_GPL vmlinux 0xf881cecd load_fixmap_gdt -EXPORT_SYMBOL_GPL vmlinux 0xf882dc79 pwm_get -EXPORT_SYMBOL_GPL vmlinux 0xf88a49bf pcie_port_bus_type -EXPORT_SYMBOL_GPL vmlinux 0xf8a8729f cpci_hp_register_bus -EXPORT_SYMBOL_GPL vmlinux 0xf8a9f205 security_file_ioctl -EXPORT_SYMBOL_GPL vmlinux 0xf8d074e2 usb_reset_configuration -EXPORT_SYMBOL_GPL vmlinux 0xf8d8e19f regmap_async_complete_cb +EXPORT_SYMBOL_GPL vmlinux 0xf8a1edad intel_pinctrl_resume_noirq +EXPORT_SYMBOL_GPL vmlinux 0xf8acb449 sata_scr_read +EXPORT_SYMBOL_GPL vmlinux 0xf8ce3620 dev_pm_opp_xlate_required_opp +EXPORT_SYMBOL_GPL vmlinux 0xf8cff7d5 mbox_chan_txdone +EXPORT_SYMBOL_GPL vmlinux 0xf8dc9a7f security_kernel_post_read_file +EXPORT_SYMBOL_GPL vmlinux 0xf8e80763 inet_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xf8e98436 __pm_runtime_suspend EXPORT_SYMBOL_GPL vmlinux 0xf8f3a0fb ata_ratelimit -EXPORT_SYMBOL_GPL vmlinux 0xf8f54929 rio_get_comptag EXPORT_SYMBOL_GPL vmlinux 0xf8fe3986 pat_pfn_immune_to_uc_mtrr -EXPORT_SYMBOL_GPL vmlinux 0xf91853d4 tpm_chip_stop -EXPORT_SYMBOL_GPL vmlinux 0xf92763f2 of_clk_hw_register -EXPORT_SYMBOL_GPL vmlinux 0xf94a4ea8 regulator_map_voltage_pickable_linear_range -EXPORT_SYMBOL_GPL vmlinux 0xf94fe657 pci_walk_bus +EXPORT_SYMBOL_GPL vmlinux 0xf90638a0 fb_deferred_io_init +EXPORT_SYMBOL_GPL vmlinux 0xf90bae9e ata_sff_postreset +EXPORT_SYMBOL_GPL vmlinux 0xf91c240a __tracepoint_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0xf91ec5dc pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xf924fa50 generic_device_group +EXPORT_SYMBOL_GPL vmlinux 0xf94730fc devm_gpio_request +EXPORT_SYMBOL_GPL vmlinux 0xf94c5e30 blk_mq_sched_try_merge EXPORT_SYMBOL_GPL vmlinux 0xf95322f4 kthread_parkme EXPORT_SYMBOL_GPL vmlinux 0xf955e9c5 bprintf -EXPORT_SYMBOL_GPL vmlinux 0xf9596203 regulator_set_voltage_rdev -EXPORT_SYMBOL_GPL vmlinux 0xf95ae3c0 to_nd_blk_region -EXPORT_SYMBOL_GPL vmlinux 0xf95fb015 pci_platform_power_transition -EXPORT_SYMBOL_GPL vmlinux 0xf9629d37 rio_release_inb_pwrite -EXPORT_SYMBOL_GPL vmlinux 0xf96b87cb fuse_file_poll -EXPORT_SYMBOL_GPL vmlinux 0xf9710b29 ata_dummy_port_ops -EXPORT_SYMBOL_GPL vmlinux 0xf97256bd devm_thermal_add_hwmon_sysfs -EXPORT_SYMBOL_GPL vmlinux 0xf988981e fsl_mc_device_group -EXPORT_SYMBOL_GPL vmlinux 0xf993db43 dm_set_target_max_io_len -EXPORT_SYMBOL_GPL vmlinux 0xf997015d nvdimm_bus_register -EXPORT_SYMBOL_GPL vmlinux 0xf9975a89 sdio_writeb -EXPORT_SYMBOL_GPL vmlinux 0xf99a420e security_path_chown +EXPORT_SYMBOL_GPL vmlinux 0xf9666b45 skb_splice_bits +EXPORT_SYMBOL_GPL vmlinux 0xf96dfccb alloc_dax_region +EXPORT_SYMBOL_GPL vmlinux 0xf9914eb7 __traceiter_sched_util_est_se_tp EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies -EXPORT_SYMBOL_GPL vmlinux 0xf9ac1650 da903x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xf9acc5eb xenbus_dev_changed -EXPORT_SYMBOL_GPL vmlinux 0xf9b13e50 aead_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xf9a60286 virtqueue_add_outbuf +EXPORT_SYMBOL_GPL vmlinux 0xf9b0f01e regmap_raw_write_async +EXPORT_SYMBOL_GPL vmlinux 0xf9b26b8a serdev_controller_alloc EXPORT_SYMBOL_GPL vmlinux 0xf9b34a0b iopf_queue_free -EXPORT_SYMBOL_GPL vmlinux 0xf9b63604 __page_mapcount -EXPORT_SYMBOL_GPL vmlinux 0xf9c33f96 sdio_readl -EXPORT_SYMBOL_GPL vmlinux 0xfa1e4984 __SCK__tp_func_neigh_cleanup_and_release +EXPORT_SYMBOL_GPL vmlinux 0xf9bf9755 usb_put_dev +EXPORT_SYMBOL_GPL vmlinux 0xf9d807ad devm_devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0xf9edc8dd fuse_conn_get +EXPORT_SYMBOL_GPL vmlinux 0xf9f456dd devm_mbox_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf9f71982 wm8350_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xfa00e7b1 ata_sas_port_suspend +EXPORT_SYMBOL_GPL vmlinux 0xfa0c0306 skb_append_pagefrags +EXPORT_SYMBOL_GPL vmlinux 0xfa1e999e regulator_bulk_disable EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops -EXPORT_SYMBOL_GPL vmlinux 0xfa201c58 adp5520_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xfa1f2667 __SCK__tp_func_neigh_update_done +EXPORT_SYMBOL_GPL vmlinux 0xfa2a3c70 wakeup_source_add EXPORT_SYMBOL_GPL vmlinux 0xfa349688 aer_recover_queue EXPORT_SYMBOL_GPL vmlinux 0xfa35044a alternatives_patched -EXPORT_SYMBOL_GPL vmlinux 0xfa53b198 regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xfa3d8923 regulator_bulk_set_supply_names +EXPORT_SYMBOL_GPL vmlinux 0xfa418645 devm_usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0xfa4c44aa tty_release_struct EXPORT_SYMBOL_GPL vmlinux 0xfa666974 queue_work_node EXPORT_SYMBOL_GPL vmlinux 0xfa690589 netdev_cmd_to_name -EXPORT_SYMBOL_GPL vmlinux 0xfa83b84e device_destroy +EXPORT_SYMBOL_GPL vmlinux 0xfa93e870 iomap_writepage EXPORT_SYMBOL_GPL vmlinux 0xfab30dc0 mdio_bus_exit EXPORT_SYMBOL_GPL vmlinux 0xfab53ed9 pinctrl_gpio_can_use_line -EXPORT_SYMBOL_GPL vmlinux 0xfad579d2 ata_sas_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0xfac287c5 platform_msi_domain_alloc_irqs +EXPORT_SYMBOL_GPL vmlinux 0xfac67f59 ata_sas_slave_configure +EXPORT_SYMBOL_GPL vmlinux 0xfac8d800 fsverity_verify_page EXPORT_SYMBOL_GPL vmlinux 0xfad9c827 kill_dax -EXPORT_SYMBOL_GPL vmlinux 0xfaded9eb free_fib_info -EXPORT_SYMBOL_GPL vmlinux 0xfafa22d4 of_icc_get -EXPORT_SYMBOL_GPL vmlinux 0xfb0848e2 dm_put -EXPORT_SYMBOL_GPL vmlinux 0xfb0b28bd pci_epc_set_msix -EXPORT_SYMBOL_GPL vmlinux 0xfb1495f4 gpiod_get_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xfb1f183b sysfs_create_link -EXPORT_SYMBOL_GPL vmlinux 0xfb2f9646 pci_epf_destroy +EXPORT_SYMBOL_GPL vmlinux 0xfae4cd05 ip6_datagram_connect_v6_only +EXPORT_SYMBOL_GPL vmlinux 0xfb0b9191 fscrypt_d_revalidate EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync -EXPORT_SYMBOL_GPL vmlinux 0xfb332794 clk_register_fractional_divider -EXPORT_SYMBOL_GPL vmlinux 0xfb3389db iommu_sva_unbind_gpasid -EXPORT_SYMBOL_GPL vmlinux 0xfb3628bb crypto_stats_akcipher_verify -EXPORT_SYMBOL_GPL vmlinux 0xfb3eb32d device_create_file -EXPORT_SYMBOL_GPL vmlinux 0xfb44f628 set_primary_fwnode -EXPORT_SYMBOL_GPL vmlinux 0xfb4e3dbb devm_regulator_irq_helper -EXPORT_SYMBOL_GPL vmlinux 0xfb531175 usb_phy_get_charger_current -EXPORT_SYMBOL_GPL vmlinux 0xfb539d36 crypto_stats_decompress -EXPORT_SYMBOL_GPL vmlinux 0xfb5fa472 sdio_memcpy_fromio +EXPORT_SYMBOL_GPL vmlinux 0xfb459bdb vfs_lock_file +EXPORT_SYMBOL_GPL vmlinux 0xfb50893d bpf_map_put +EXPORT_SYMBOL_GPL vmlinux 0xfb5852ee sata_sff_hardreset EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name -EXPORT_SYMBOL_GPL vmlinux 0xfb80d314 __ip6_datagram_connect -EXPORT_SYMBOL_GPL vmlinux 0xfb87d3bf blkg_prfill_rwstat -EXPORT_SYMBOL_GPL vmlinux 0xfba10064 scsi_dh_set_params -EXPORT_SYMBOL_GPL vmlinux 0xfbb9bd6b devlink_port_type_eth_set +EXPORT_SYMBOL_GPL vmlinux 0xfb7549c8 usb_unlocked_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xfb88e1f3 switchdev_handle_fdb_add_to_device +EXPORT_SYMBOL_GPL vmlinux 0xfb9daa2c debugfs_real_fops +EXPORT_SYMBOL_GPL vmlinux 0xfb9ebf41 cgroup_get_from_path +EXPORT_SYMBOL_GPL vmlinux 0xfba07505 sock_diag_register_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0xfba4c7eb usb_ifnum_to_if +EXPORT_SYMBOL_GPL vmlinux 0xfbbb34d1 bio_end_io_acct_remapped EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action -EXPORT_SYMBOL_GPL vmlinux 0xfbc32256 devm_regulator_get_exclusive -EXPORT_SYMBOL_GPL vmlinux 0xfbd10634 task_cputime_adjusted -EXPORT_SYMBOL_GPL vmlinux 0xfbe0ed32 pci_epc_map_addr -EXPORT_SYMBOL_GPL vmlinux 0xfbeba90c devm_extcon_dev_unregister -EXPORT_SYMBOL_GPL vmlinux 0xfbebd3fe serdev_device_write_wakeup -EXPORT_SYMBOL_GPL vmlinux 0xfbecba27 fb_deferred_io_open -EXPORT_SYMBOL_GPL vmlinux 0xfbed5cc9 sk_msg_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0xfbbdaa31 bus_create_file +EXPORT_SYMBOL_GPL vmlinux 0xfbe71c47 iommu_sva_alloc_pasid +EXPORT_SYMBOL_GPL vmlinux 0xfbec9cee usb_control_msg EXPORT_SYMBOL_GPL vmlinux 0xfbeeb13c phy_gbit_all_ports_features -EXPORT_SYMBOL_GPL vmlinux 0xfbf8f009 devlink_dpipe_table_resource_set +EXPORT_SYMBOL_GPL vmlinux 0xfbfaef0f crypto_alloc_ahash 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 0xfc09fb75 irq_chip_release_resources_parent -EXPORT_SYMBOL_GPL vmlinux 0xfc0bc9bd pci_user_write_config_byte EXPORT_SYMBOL_GPL vmlinux 0xfc14bb2e dm_get_dev_t EXPORT_SYMBOL_GPL vmlinux 0xfc19bc45 crypto_dh_encode_key -EXPORT_SYMBOL_GPL vmlinux 0xfc1e9024 get_dev_pagemap EXPORT_SYMBOL_GPL vmlinux 0xfc201b66 sprint_oid EXPORT_SYMBOL_GPL vmlinux 0xfc254d15 gnttab_free_auto_xlat_frames +EXPORT_SYMBOL_GPL vmlinux 0xfc3a632f kthread_unuse_mm +EXPORT_SYMBOL_GPL vmlinux 0xfc3ab3ea __traceiter_block_unplug EXPORT_SYMBOL_GPL vmlinux 0xfc3b4246 acpi_bus_update_power -EXPORT_SYMBOL_GPL vmlinux 0xfc3c6c49 noop_direct_IO -EXPORT_SYMBOL_GPL vmlinux 0xfc402345 regulator_suspend_disable -EXPORT_SYMBOL_GPL vmlinux 0xfc40a89d pm_clk_destroy -EXPORT_SYMBOL_GPL vmlinux 0xfc43b5f3 i2c_client_type -EXPORT_SYMBOL_GPL vmlinux 0xfc457e1d ata_qc_get_active -EXPORT_SYMBOL_GPL vmlinux 0xfc5b8c60 dax_layout_busy_page -EXPORT_SYMBOL_GPL vmlinux 0xfc5faad4 __of_reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0xfc67c56b driver_find -EXPORT_SYMBOL_GPL vmlinux 0xfc75ba0b agp_add_bridge -EXPORT_SYMBOL_GPL vmlinux 0xfc83431b ip6_datagram_connect -EXPORT_SYMBOL_GPL vmlinux 0xfc89a977 ata_sas_port_alloc -EXPORT_SYMBOL_GPL vmlinux 0xfc8c25e9 __dev_change_net_namespace -EXPORT_SYMBOL_GPL vmlinux 0xfc8c699f l3mdev_table_lookup_unregister -EXPORT_SYMBOL_GPL vmlinux 0xfca94096 i2c_handle_smbus_host_notify -EXPORT_SYMBOL_GPL vmlinux 0xfcb19890 blk_mq_free_request -EXPORT_SYMBOL_GPL vmlinux 0xfcb91d31 nvdimm_setup_pfn +EXPORT_SYMBOL_GPL vmlinux 0xfc63f0de fib_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0xfc656b00 ohci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0xfc7eea74 crypto_aead_setauthsize +EXPORT_SYMBOL_GPL vmlinux 0xfc9f38ba extcon_get_property_capability +EXPORT_SYMBOL_GPL vmlinux 0xfca95caf phy_pm_runtime_put_sync +EXPORT_SYMBOL_GPL vmlinux 0xfcb028f5 ata_pci_sff_init_one +EXPORT_SYMBOL_GPL vmlinux 0xfcb1cc6f devm_phy_package_join +EXPORT_SYMBOL_GPL vmlinux 0xfcb28fc9 sched_set_fifo EXPORT_SYMBOL_GPL vmlinux 0xfcbfec70 add_memory_driver_managed EXPORT_SYMBOL_GPL vmlinux 0xfcc1edd3 memory_block_size_bytes -EXPORT_SYMBOL_GPL vmlinux 0xfcc72e76 __acpi_node_get_property_reference +EXPORT_SYMBOL_GPL vmlinux 0xfcc8eb6c component_master_del EXPORT_SYMBOL_GPL vmlinux 0xfcca5424 register_kprobe -EXPORT_SYMBOL_GPL vmlinux 0xfcccd0d7 bpf_offload_dev_netdev_register -EXPORT_SYMBOL_GPL vmlinux 0xfcd0c150 virtqueue_add_inbuf_ctx -EXPORT_SYMBOL_GPL vmlinux 0xfcdcab39 mptcp_token_get_sock +EXPORT_SYMBOL_GPL vmlinux 0xfccc66fd power_supply_put +EXPORT_SYMBOL_GPL vmlinux 0xfcd7a81b regulator_suspend_enable +EXPORT_SYMBOL_GPL vmlinux 0xfcf034ea tty_port_register_device_serdev EXPORT_SYMBOL_GPL vmlinux 0xfcf9ef73 hw_protection_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xfd10107b pci_try_reset_function -EXPORT_SYMBOL_GPL vmlinux 0xfd113d08 xhci_run -EXPORT_SYMBOL_GPL vmlinux 0xfd2adf74 clk_register_mux_table -EXPORT_SYMBOL_GPL vmlinux 0xfd32ef21 dax_inode -EXPORT_SYMBOL_GPL vmlinux 0xfd35667b led_stop_software_blink -EXPORT_SYMBOL_GPL vmlinux 0xfd3aeeea regulator_set_current_limit -EXPORT_SYMBOL_GPL vmlinux 0xfd667967 ata_bmdma_stop +EXPORT_SYMBOL_GPL vmlinux 0xfd020546 driver_attach +EXPORT_SYMBOL_GPL vmlinux 0xfd33c28d phy_led_trigger_change_speed +EXPORT_SYMBOL_GPL vmlinux 0xfd37c0c5 fl6_merge_options +EXPORT_SYMBOL_GPL vmlinux 0xfd545eb1 pci_epc_map_addr +EXPORT_SYMBOL_GPL vmlinux 0xfd5acda3 fuse_dev_release +EXPORT_SYMBOL_GPL vmlinux 0xfd63b8e0 devm_remove_action +EXPORT_SYMBOL_GPL vmlinux 0xfd662bfb __SCK__tp_func_neigh_timer_handler +EXPORT_SYMBOL_GPL vmlinux 0xfd6bd4c9 node_to_amd_nb EXPORT_SYMBOL_GPL vmlinux 0xfd7243c7 erst_disable -EXPORT_SYMBOL_GPL vmlinux 0xfd762c84 bpf_trace_run5 -EXPORT_SYMBOL_GPL vmlinux 0xfd7f5195 devfreq_get_devfreq_by_node -EXPORT_SYMBOL_GPL vmlinux 0xfd8815e5 irq_gc_mask_set_bit -EXPORT_SYMBOL_GPL vmlinux 0xfd92f9a0 lp8788_update_bits -EXPORT_SYMBOL_GPL vmlinux 0xfda8f9bd rtnl_register_module +EXPORT_SYMBOL_GPL vmlinux 0xfda3a380 security_path_chown EXPORT_SYMBOL_GPL vmlinux 0xfdbd7a17 crypto_get_attr_type -EXPORT_SYMBOL_GPL vmlinux 0xfdc29ce1 mm_kobj -EXPORT_SYMBOL_GPL vmlinux 0xfdc818d8 virtqueue_detach_unused_buf -EXPORT_SYMBOL_GPL vmlinux 0xfdcf0476 platform_device_del -EXPORT_SYMBOL_GPL vmlinux 0xfdd4f013 mmu_interval_notifier_remove -EXPORT_SYMBOL_GPL vmlinux 0xfdd7346a pci_epf_free_space +EXPORT_SYMBOL_GPL vmlinux 0xfdcee7c7 gpiod_get_value +EXPORT_SYMBOL_GPL vmlinux 0xfdd0257b fwnode_usb_role_switch_get +EXPORT_SYMBOL_GPL vmlinux 0xfddf0e1d vring_transport_features +EXPORT_SYMBOL_GPL vmlinux 0xfde0c1a5 md_start +EXPORT_SYMBOL_GPL vmlinux 0xfde5c5ea mmu_interval_notifier_remove EXPORT_SYMBOL_GPL vmlinux 0xfdea2d04 alarm_cancel +EXPORT_SYMBOL_GPL vmlinux 0xfdea637c rio_mport_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0xfdf9eb4c device_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0xfdfdc9bb pci_bus_add_device +EXPORT_SYMBOL_GPL vmlinux 0xfe05a5a9 bio_add_zone_append_page EXPORT_SYMBOL_GPL vmlinux 0xfe0e7cd3 apei_exec_post_unmap_gars EXPORT_SYMBOL_GPL vmlinux 0xfe1a7a7b mpi_point_release -EXPORT_SYMBOL_GPL vmlinux 0xfe1caf5f ata_sff_pause -EXPORT_SYMBOL_GPL vmlinux 0xfe2c2d61 gnttab_page_cache_init +EXPORT_SYMBOL_GPL vmlinux 0xfe29569c intel_pmic_install_opregion_handler +EXPORT_SYMBOL_GPL vmlinux 0xfe2c6b81 sdio_writew +EXPORT_SYMBOL_GPL vmlinux 0xfe2d8ffa wbc_attach_and_unlock_inode EXPORT_SYMBOL_GPL vmlinux 0xfe3a6de3 alarm_try_to_cancel -EXPORT_SYMBOL_GPL vmlinux 0xfe3fe5e0 mmc_send_tuning -EXPORT_SYMBOL_GPL vmlinux 0xfe46fd45 perf_event_update_userpage EXPORT_SYMBOL_GPL vmlinux 0xfe476039 ktime_get_resolution_ns +EXPORT_SYMBOL_GPL vmlinux 0xfe4e832c pcie_aspm_capable +EXPORT_SYMBOL_GPL vmlinux 0xfe5138c1 ping_queue_rcv_skb EXPORT_SYMBOL_GPL vmlinux 0xfe5aad0c divider_ro_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0xfe646da9 blk_rq_prep_clone +EXPORT_SYMBOL_GPL vmlinux 0xfe67d540 pinctrl_enable EXPORT_SYMBOL_GPL vmlinux 0xfe727411 get_phys_to_machine -EXPORT_SYMBOL_GPL vmlinux 0xfe7c573c extcon_set_property +EXPORT_SYMBOL_GPL vmlinux 0xfe7e8303 inet6_compat_ioctl EXPORT_SYMBOL_GPL vmlinux 0xfe8cdb84 ring_buffer_alloc_read_page -EXPORT_SYMBOL_GPL vmlinux 0xfe954f0a vfio_pci_core_enable EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free -EXPORT_SYMBOL_GPL vmlinux 0xfe9cc79d spi_controller_resume -EXPORT_SYMBOL_GPL vmlinux 0xfe9dd207 ata_dev_disable -EXPORT_SYMBOL_GPL vmlinux 0xfeb025cb crypto_skcipher_encrypt -EXPORT_SYMBOL_GPL vmlinux 0xfeb9bd48 dev_pm_opp_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0xfea9d5fe clk_hw_get_name +EXPORT_SYMBOL_GPL vmlinux 0xfeb15673 crypto_stats_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0xfec0bfa0 __sock_recv_wifi_status +EXPORT_SYMBOL_GPL vmlinux 0xfec39d9b devm_thermal_add_hwmon_sysfs EXPORT_SYMBOL_GPL vmlinux 0xfec3bf84 icst_clk_setup -EXPORT_SYMBOL_GPL vmlinux 0xfec54ff0 dma_free_pages +EXPORT_SYMBOL_GPL vmlinux 0xfecba936 page_endio EXPORT_SYMBOL_GPL vmlinux 0xfed11ed1 usb_mon_deregister +EXPORT_SYMBOL_GPL vmlinux 0xfed560f8 tty_port_tty_wakeup EXPORT_SYMBOL_GPL vmlinux 0xfed561ff divider_determine_rate -EXPORT_SYMBOL_GPL vmlinux 0xfee0df1f wm8350_reg_read -EXPORT_SYMBOL_GPL vmlinux 0xfee82407 crypto_register_aeads +EXPORT_SYMBOL_GPL vmlinux 0xfedcfbd6 __ndisc_fill_addr_option +EXPORT_SYMBOL_GPL vmlinux 0xfee93e61 virtqueue_enable_cb EXPORT_SYMBOL_GPL vmlinux 0xfeeecd05 apei_read +EXPORT_SYMBOL_GPL vmlinux 0xfef15c95 receive_fd +EXPORT_SYMBOL_GPL vmlinux 0xfef98acd __fat_fs_error +EXPORT_SYMBOL_GPL vmlinux 0xfefae8ea tpm2_get_tpm_pt +EXPORT_SYMBOL_GPL vmlinux 0xfeff2c27 wm8350_block_write +EXPORT_SYMBOL_GPL vmlinux 0xff02b5d5 __xenbus_register_backend EXPORT_SYMBOL_GPL vmlinux 0xff05fa13 vring_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xff06e865 scsi_eh_ready_devs -EXPORT_SYMBOL_GPL vmlinux 0xff0b81c5 of_css +EXPORT_SYMBOL_GPL vmlinux 0xff0ac3ae __SCK__tp_func_block_rq_remap EXPORT_SYMBOL_GPL vmlinux 0xff1666f3 reset_control_bulk_assert +EXPORT_SYMBOL_GPL vmlinux 0xff1a5220 ata_link_offline EXPORT_SYMBOL_GPL vmlinux 0xff1e67b9 setup_APIC_eilvt EXPORT_SYMBOL_GPL vmlinux 0xff291ecf clk_unregister_divider -EXPORT_SYMBOL_GPL vmlinux 0xff364a50 platform_get_irq_byname +EXPORT_SYMBOL_GPL vmlinux 0xff34764f rio_del_mport_pw_handler +EXPORT_SYMBOL_GPL vmlinux 0xff396ce9 is_swiotlb_active +EXPORT_SYMBOL_GPL vmlinux 0xff3d6d20 blk_queue_can_use_dma_map_merging EXPORT_SYMBOL_GPL vmlinux 0xff42c374 usb_role_switch_get_role -EXPORT_SYMBOL_GPL vmlinux 0xff6bb866 ip6_route_lookup -EXPORT_SYMBOL_GPL vmlinux 0xff6d1c29 linear_hugepage_index +EXPORT_SYMBOL_GPL vmlinux 0xff44a92b i2c_new_scanned_device +EXPORT_SYMBOL_GPL vmlinux 0xff4cc60e pci_pasid_features EXPORT_SYMBOL_GPL vmlinux 0xff7e33bf mpi_sub_ui EXPORT_SYMBOL_GPL vmlinux 0xff81487d gpiod_remove_lookup_table -EXPORT_SYMBOL_GPL vmlinux 0xff8bbeca devm_platform_get_irqs_affinity +EXPORT_SYMBOL_GPL vmlinux 0xff8488f6 __blk_req_zone_write_lock EXPORT_SYMBOL_GPL vmlinux 0xff8e74e2 arch_haltpoll_enable -EXPORT_SYMBOL_GPL vmlinux 0xff8fb051 __fscrypt_prepare_lookup +EXPORT_SYMBOL_GPL vmlinux 0xff8f6bed dmaengine_desc_attach_metadata EXPORT_SYMBOL_GPL vmlinux 0xff9e23d1 hugetlb_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xffa9c361 rtnl_link_register EXPORT_SYMBOL_GPL vmlinux 0xffae8e8b nsecs_to_jiffies -EXPORT_SYMBOL_GPL vmlinux 0xffbbf180 spi_mem_dirmap_create -EXPORT_SYMBOL_GPL vmlinux 0xffcb3ba3 power_supply_put -EXPORT_SYMBOL_GPL vmlinux 0xffd377ba usb_hcd_map_urb_for_dma -EXPORT_SYMBOL_GPL vmlinux 0xffd9f42d scsi_target_block +EXPORT_SYMBOL_GPL vmlinux 0xffb2db35 bpf_trace_run5 +EXPORT_SYMBOL_GPL vmlinux 0xffb71e02 vfio_virqfd_enable +EXPORT_SYMBOL_GPL vmlinux 0xffe36cd8 devfreq_event_disable_edev +EXPORT_SYMBOL_GPL vmlinux 0xffe5d9ea fat_remove_entries FIRMWARE_LOADER_PRIVATE EXPORT_SYMBOL_GPL 0xd3ae7756 fw_fallback_config vmlinux -IDXD EXPORT_SYMBOL_GPL 0x039c7113 idxd_dmaengine_drv drivers/dma/idxd/idxd -IDXD EXPORT_SYMBOL_GPL 0x86ddf942 __idxd_driver_register drivers/dma/idxd/idxd_bus -IDXD EXPORT_SYMBOL_GPL 0x8a7c9b21 dsa_bus_type drivers/dma/idxd/idxd_bus -IDXD EXPORT_SYMBOL_GPL 0xbbbc4f35 idxd_drv drivers/dma/idxd/idxd -IDXD EXPORT_SYMBOL_GPL 0xc33568c1 idxd_driver_unregister drivers/dma/idxd/idxd_bus -IDXD EXPORT_SYMBOL_GPL 0xf26dbc76 idxd_user_drv drivers/dma/idxd/idxd -IIO_HID EXPORT_SYMBOL 0x23610ef9 hid_sensor_parse_common_attributes drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0x2964a185 hid_sensor_convert_timestamp drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0x4293ebd4 hid_sensor_write_raw_hyst_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0x571467c3 hid_sensor_read_samp_freq_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IDXD EXPORT_SYMBOL_GPL 0x47d832f8 __idxd_driver_register drivers/dma/idxd/idxd_bus +IDXD EXPORT_SYMBOL_GPL 0x4bc03118 idxd_user_drv drivers/dma/idxd/idxd +IDXD EXPORT_SYMBOL_GPL 0x6cd63507 dsa_bus_type drivers/dma/idxd/idxd_bus +IDXD EXPORT_SYMBOL_GPL 0x91799f9f idxd_drv drivers/dma/idxd/idxd +IDXD EXPORT_SYMBOL_GPL 0xd7e8e6b7 idxd_driver_unregister drivers/dma/idxd/idxd_bus +IDXD EXPORT_SYMBOL_GPL 0xd81fc78d idxd_dmaengine_drv drivers/dma/idxd/idxd +IIO_HID EXPORT_SYMBOL 0x07b75b88 hid_sensor_remove_trigger drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0x0b7e68b0 hid_sensor_write_raw_hyst_rel_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x177032d0 hid_sensor_pm_ops drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0x210e5e62 hid_sensor_parse_common_attributes drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x21a29bee hid_sensor_power_state drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0x3db6b8a8 hid_sensor_convert_timestamp drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x3fab4f04 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 0xa8ba4d5d hid_sensor_setup_trigger drivers/iio/common/hid-sensors/hid-sensor-trigger -IIO_HID EXPORT_SYMBOL 0xc3ae0e17 hid_sensor_read_raw_hyst_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0xc784a62b hid_sensor_remove_trigger drivers/iio/common/hid-sensors/hid-sensor-trigger -IIO_HID EXPORT_SYMBOL 0xc7b01159 hid_sensor_pm_ops drivers/iio/common/hid-sensors/hid-sensor-trigger -IIO_HID EXPORT_SYMBOL 0xd03338ae hid_sensor_write_raw_hyst_rel_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0xd8baa37a hid_sensor_read_raw_hyst_rel_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0xde6059cb hid_sensor_write_samp_freq_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0xe154b94b hid_sensor_power_state drivers/iio/common/hid-sensors/hid-sensor-trigger -IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x20ac2ccf hid_sensor_set_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x733634b4 hid_sensor_get_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x87462bba hid_sensor_batch_mode_supported drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0xaca06558 hid_sensor_read_poll_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -INT340X_THERMAL EXPORT_SYMBOL_GPL 0x38a2ea0c processor_thermal_send_mbox_write_cmd drivers/thermal/intel/int340x_thermal/processor_thermal_mbox -INT340X_THERMAL EXPORT_SYMBOL_GPL 0xb34af9c5 processor_thermal_send_mbox_read_cmd drivers/thermal/intel/int340x_thermal/processor_thermal_mbox -LTC2497 EXPORT_SYMBOL 0x340a5027 ltc2497core_probe drivers/iio/adc/ltc2497-core -LTC2497 EXPORT_SYMBOL 0x9b6c4108 ltc2497core_remove drivers/iio/adc/ltc2497-core -MCB EXPORT_SYMBOL_GPL 0x07d698d1 mcb_free_dev drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x26d99dc8 __mcb_register_driver drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x29d20bb7 mcb_alloc_bus drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x35296749 mcb_device_register drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x3e3c098a mcb_bus_add_devices drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x4d10bbf4 chameleon_parse_cells drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x59ea1a55 mcb_alloc_dev drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x82b9fe31 mcb_get_irq drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x8fa08e4c mcb_bus_put drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0xa4727906 mcb_unregister_driver drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0xc256f85b mcb_bus_get drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0xd06e826e mcb_request_mem drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0xd9d4c52e mcb_release_bus drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0xe0b1584f mcb_get_resource drivers/mcb/mcb +IIO_HID EXPORT_SYMBOL 0x8e341525 hid_sensor_write_samp_freq_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0xa081bc0f hid_sensor_read_raw_hyst_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0xb0a23fed hid_sensor_write_raw_hyst_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0xb8a3a38d hid_sensor_read_samp_freq_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0xfd1a72c6 hid_sensor_read_raw_hyst_rel_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x8feec6d8 hid_sensor_get_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0xac4daa96 hid_sensor_read_poll_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0xdaf0c4b1 hid_sensor_set_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0xdd876cf4 hid_sensor_batch_mode_supported drivers/iio/common/hid-sensors/hid-sensor-iio-common +INT340X_THERMAL EXPORT_SYMBOL_GPL 0x193f3367 processor_thermal_send_mbox_write_cmd drivers/thermal/intel/int340x_thermal/processor_thermal_mbox +INT340X_THERMAL EXPORT_SYMBOL_GPL 0x1b4837fe processor_thermal_send_mbox_read_cmd drivers/thermal/intel/int340x_thermal/processor_thermal_mbox +LTC2497 EXPORT_SYMBOL 0x183ebc88 ltc2497core_probe drivers/iio/adc/ltc2497-core +LTC2497 EXPORT_SYMBOL 0xf8c77806 ltc2497core_remove drivers/iio/adc/ltc2497-core +MCB EXPORT_SYMBOL_GPL 0x0792d725 mcb_get_resource drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x22303455 mcb_free_dev drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x3ed8d890 mcb_get_irq drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x4e8104b3 mcb_release_bus drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x74f36245 mcb_unregister_driver drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x90c22654 mcb_device_register drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x96055e05 mcb_bus_get drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xa2ec2f91 __mcb_register_driver drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xa55524e2 mcb_alloc_bus drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xc843d89e mcb_bus_add_devices drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xd293172c mcb_request_mem drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xd503b5a1 mcb_bus_put drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xd7868cd8 chameleon_parse_cells drivers/mcb/mcb MCB EXPORT_SYMBOL_GPL 0xeb2c8905 mcb_release_mem drivers/mcb/mcb -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x360d86ce nvme_ctrl_from_file drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x47d4289e nvme_command_effects drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x4dcf8e6b nvme_put_ns drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x624325b9 nvme_find_get_ns drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xee507e1e nvme_execute_passthru_rq drivers/nvme/host/nvme-core -PMBUS EXPORT_SYMBOL_GPL 0x07bccfc7 pmbus_set_update drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x2db51390 pmbus_check_byte_register drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x43f1afe5 pmbus_set_page drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x4ae2a50b pmbus_update_byte_data drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x525f6c05 pmbus_clear_cache drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x5f374dc8 pmbus_check_word_register drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x6af3db87 pmbus_write_byte drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x791cf3f2 pmbus_write_byte_data drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x86ff51c4 pmbus_clear_faults drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x995c21b7 pmbus_do_probe drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xadc98919 pmbus_read_byte_data drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xb91093ed pmbus_write_word_data drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xc0661db4 pmbus_get_fan_rate_cached drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xc10ca32c pmbus_get_fan_rate_device drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xc73cf618 pmbus_get_driver_info drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xcb0dd989 pmbus_get_debugfs_dir drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xd1133cd0 pmbus_regulator_ops drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xdd60278d pmbus_update_fan drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xf51cf411 pmbus_read_word_data drivers/hwmon/pmbus/pmbus_core +MCB EXPORT_SYMBOL_GPL 0xf52e38e7 mcb_alloc_dev drivers/mcb/mcb +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x6828b026 nvme_put_ns drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x817482fb nvme_execute_passthru_rq drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xd7f3df8f nvme_command_effects drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xf3f081b8 nvme_find_get_ns drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xfcde2687 nvme_ctrl_from_file drivers/nvme/host/nvme-core +PMBUS EXPORT_SYMBOL_GPL 0x030e5cd2 pmbus_set_update drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x03d19469 pmbus_get_fan_rate_device drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x0ff958ac pmbus_write_byte_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x1a712e32 pmbus_get_debugfs_dir drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x1b88d9b6 pmbus_update_byte_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x33eeaaf9 pmbus_get_driver_info drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x3c1d341d pmbus_update_fan drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x540123ed pmbus_do_probe drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x71d07f5e pmbus_read_byte_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x73ced860 pmbus_regulator_ops drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x759b5886 pmbus_write_byte drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x767f55b3 pmbus_clear_cache drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x7eb97a1d pmbus_write_word_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xae077089 pmbus_set_page drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xb6c8bb04 pmbus_clear_faults drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xbf0ba968 pmbus_get_fan_rate_cached drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xc2bbcfd1 pmbus_read_word_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xc4c8a92c pmbus_check_byte_register drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xe56f6ece pmbus_check_word_register drivers/hwmon/pmbus/pmbus_core +SND_HDA_SCODEC_CS35L41 EXPORT_SYMBOL_GPL 0x4f7b9264 cs35l41_hda_probe sound/pci/hda/snd-hda-scodec-cs35l41 +SND_HDA_SCODEC_CS35L41 EXPORT_SYMBOL_GPL 0x957e1129 cs35l41_hda_remove sound/pci/hda/snd-hda-scodec-cs35l41 SND_INTEL_SOUNDWIRE_ACPI EXPORT_SYMBOL 0xbb4f9d1f sdw_intel_acpi_scan sound/hda/snd-intel-sdw-acpi -SND_SOC_INTEL_HDA_DSP_COMMON EXPORT_SYMBOL 0xb8e39329 hda_dsp_hdmi_build_controls sound/soc/intel/boards/snd-soc-intel-hda-dsp-common -SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0x24b77a71 max_98373_spk_codec_init sound/soc/intel/boards/snd-soc-intel-sof-maxim-common -SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0x2531d15d max_98373_dapm_routes sound/soc/intel/boards/snd-soc-intel-sof-maxim-common -SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0x4ade9c4d max_98357a_dai_link sound/soc/intel/boards/snd-soc-intel-sof-maxim-common -SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0x7d5eaa82 max_98373_ops sound/soc/intel/boards/snd-soc-intel-sof-maxim-common -SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0x7f0985e2 max_98373_trigger sound/soc/intel/boards/snd-soc-intel-sof-maxim-common -SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0xade7e561 max_98373_set_codec_conf sound/soc/intel/boards/snd-soc-intel-sof-maxim-common -SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0xdda2f8b8 max_98373_components sound/soc/intel/boards/snd-soc-intel-sof-maxim-common -SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0xe8158603 max_98360a_dai_link sound/soc/intel/boards/snd-soc-intel-sof-maxim-common -SND_SOC_SOF_ACPI_DEV EXPORT_SYMBOL 0x05c8d4ec sof_acpi_probe sound/soc/sof/snd-sof-acpi -SND_SOC_SOF_ACPI_DEV EXPORT_SYMBOL 0x092d34db sof_acpi_pm sound/soc/sof/snd-sof-acpi -SND_SOC_SOF_ACPI_DEV EXPORT_SYMBOL 0x2c8ce62c sof_acpi_remove sound/soc/sof/snd-sof-acpi -SND_SOC_SOF_HDA_AUDIO_CODEC EXPORT_SYMBOL 0x15313cfc hda_codec_jack_check sound/soc/sof/intel/snd-sof-intel-hda -SND_SOC_SOF_HDA_AUDIO_CODEC EXPORT_SYMBOL 0x2e3ee7dd hda_codec_jack_wake_enable sound/soc/sof/intel/snd-sof-intel-hda -SND_SOC_SOF_HDA_AUDIO_CODEC EXPORT_SYMBOL 0xda4db349 hda_codec_probe_bus sound/soc/sof/intel/snd-sof-intel-hda -SND_SOC_SOF_HDA_AUDIO_CODEC_I915 EXPORT_SYMBOL 0x0bb75a67 hda_codec_i915_exit sound/soc/sof/intel/snd-sof-intel-hda -SND_SOC_SOF_HDA_AUDIO_CODEC_I915 EXPORT_SYMBOL 0x86a04380 hda_codec_i915_display_power sound/soc/sof/intel/snd-sof-intel-hda -SND_SOC_SOF_HDA_AUDIO_CODEC_I915 EXPORT_SYMBOL 0xb5d87f41 hda_codec_i915_init sound/soc/sof/intel/snd-sof-intel-hda -SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0x0e40e987 atom_get_mailbox_offset sound/soc/sof/intel/snd-sof-intel-atom +SND_SOC_INTEL_HDA_DSP_COMMON EXPORT_SYMBOL 0xcef7a3d5 hda_dsp_hdmi_build_controls sound/soc/intel/boards/snd-soc-intel-hda-dsp-common +SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0x296317aa max_98373_set_codec_conf sound/soc/intel/boards/snd-soc-intel-sof-maxim-common +SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0xa786eb20 max_98373_components sound/soc/intel/boards/snd-soc-intel-sof-maxim-common +SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0xc9c4ece3 max_98373_ops sound/soc/intel/boards/snd-soc-intel-sof-maxim-common +SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0xd0db9ef3 max_98373_spk_codec_init sound/soc/intel/boards/snd-soc-intel-sof-maxim-common +SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0xdfd74c22 max_98373_dapm_routes sound/soc/intel/boards/snd-soc-intel-sof-maxim-common +SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0xe209833c max_98360a_dai_link sound/soc/intel/boards/snd-soc-intel-sof-maxim-common +SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0xeb28c0d7 max_98373_trigger sound/soc/intel/boards/snd-soc-intel-sof-maxim-common +SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0xfca3421d max_98357a_dai_link sound/soc/intel/boards/snd-soc-intel-sof-maxim-common +SND_SOC_SOF_ACPI_DEV EXPORT_SYMBOL 0x07204141 sof_acpi_probe sound/soc/sof/snd-sof-acpi +SND_SOC_SOF_ACPI_DEV EXPORT_SYMBOL 0x1c4a5539 sof_acpi_remove sound/soc/sof/snd-sof-acpi +SND_SOC_SOF_ACPI_DEV EXPORT_SYMBOL 0x60a52cdc sof_acpi_pm sound/soc/sof/snd-sof-acpi +SND_SOC_SOF_HDA_AUDIO_CODEC EXPORT_SYMBOL 0x1fff1d20 hda_codec_probe_bus sound/soc/sof/intel/snd-sof-intel-hda +SND_SOC_SOF_HDA_AUDIO_CODEC EXPORT_SYMBOL 0x7c3e0a63 hda_codec_jack_check sound/soc/sof/intel/snd-sof-intel-hda +SND_SOC_SOF_HDA_AUDIO_CODEC EXPORT_SYMBOL 0x7f3bead5 hda_codec_jack_wake_enable sound/soc/sof/intel/snd-sof-intel-hda +SND_SOC_SOF_HDA_AUDIO_CODEC_I915 EXPORT_SYMBOL 0x082ddbda hda_codec_i915_display_power sound/soc/sof/intel/snd-sof-intel-hda +SND_SOC_SOF_HDA_AUDIO_CODEC_I915 EXPORT_SYMBOL 0x6bee4ada hda_codec_i915_exit sound/soc/sof/intel/snd-sof-intel-hda +SND_SOC_SOF_HDA_AUDIO_CODEC_I915 EXPORT_SYMBOL 0xcc91eb84 hda_codec_i915_init sound/soc/sof/intel/snd-sof-intel-hda +SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0x038c80bf atom_get_window_offset sound/soc/sof/intel/snd-sof-intel-atom +SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0x061e7399 atom_machine_select sound/soc/sof/intel/snd-sof-intel-atom +SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0x185a316a atom_get_mailbox_offset 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 0x381d8ea2 atom_run sound/soc/sof/intel/snd-sof-intel-atom -SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0x44040b36 atom_machine_select sound/soc/sof/intel/snd-sof-intel-atom -SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0x6db49e64 atom_dump sound/soc/sof/intel/snd-sof-intel-atom -SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0xbbb50016 atom_reset sound/soc/sof/intel/snd-sof-intel-atom -SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0xd2c2bad8 atom_dai sound/soc/sof/intel/snd-sof-intel-atom -SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0xe523b1e2 atom_set_mach_params sound/soc/sof/intel/snd-sof-intel-atom -SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0xe7ecd9d8 atom_send_msg sound/soc/sof/intel/snd-sof-intel-atom +SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0x3d21102e atom_reset sound/soc/sof/intel/snd-sof-intel-atom +SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0x92842013 atom_send_msg sound/soc/sof/intel/snd-sof-intel-atom +SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0x9861db61 atom_set_mach_params sound/soc/sof/intel/snd-sof-intel-atom +SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0xabc70748 atom_dai sound/soc/sof/intel/snd-sof-intel-atom +SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0xb31ab253 atom_dump sound/soc/sof/intel/snd-sof-intel-atom +SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0xb74c51c8 atom_run sound/soc/sof/intel/snd-sof-intel-atom SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0xefa4a41a atom_irq_handler sound/soc/sof/intel/snd-sof-intel-atom -SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0xfa8ad3eb atom_get_window_offset sound/soc/sof/intel/snd-sof-intel-atom -SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x08028af1 sof_cnl_ops sound/soc/sof/intel/snd-sof-intel-hda-common -SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x12beca67 tglh_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common -SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x317ad4e0 cnl_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common -SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x64b0878a adls_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common -SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x695d408b ehl_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common -SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x6c07ed04 jsl_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common -SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x7dc66a1f sof_apl_ops sound/soc/sof/intel/snd-sof-intel-hda-common -SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x9ef5ba27 apl_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common -SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0xa4616e05 icl_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common -SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0xb59048a4 tgl_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common -SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0xcfd4e57d hda_pci_intel_probe sound/soc/sof/intel/snd-sof-intel-hda-common -SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0xebe4f710 sof_tgl_ops sound/soc/sof/intel/snd-sof-intel-hda-common -SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0xf815f7f9 sof_icl_ops sound/soc/sof/intel/snd-sof-intel-hda-common -SND_SOC_SOF_INTEL_HIFI_EP_IPC EXPORT_SYMBOL 0x867057be intel_pcm_close sound/soc/sof/intel/snd-sof-intel-ipc -SND_SOC_SOF_INTEL_HIFI_EP_IPC EXPORT_SYMBOL 0x8ecb121f intel_ipc_msg_data sound/soc/sof/intel/snd-sof-intel-ipc -SND_SOC_SOF_INTEL_HIFI_EP_IPC EXPORT_SYMBOL 0x9a7182a4 intel_ipc_pcm_params sound/soc/sof/intel/snd-sof-intel-ipc -SND_SOC_SOF_INTEL_HIFI_EP_IPC EXPORT_SYMBOL 0xfc09b655 intel_pcm_open sound/soc/sof/intel/snd-sof-intel-ipc -SND_SOC_SOF_PCI_DEV EXPORT_SYMBOL 0x291b1512 sof_pci_pm sound/soc/sof/snd-sof-pci -SND_SOC_SOF_PCI_DEV EXPORT_SYMBOL 0x3177ef97 sof_pci_remove sound/soc/sof/snd-sof-pci -SND_SOC_SOF_PCI_DEV EXPORT_SYMBOL 0xc0c048e3 sof_pci_probe sound/soc/sof/snd-sof-pci -SND_SOC_SOF_PCI_DEV EXPORT_SYMBOL 0xda677a37 sof_pci_shutdown sound/soc/sof/snd-sof-pci -SND_SOC_SOF_XTENSA EXPORT_SYMBOL 0xa20bcf21 sof_xtensa_arch_ops sound/soc/sof/xtensa/snd-sof-xtensa-dsp -SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0x458638ea sdw_intel_exit drivers/soundwire/soundwire-intel -SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0x4f855283 sdw_intel_probe drivers/soundwire/soundwire-intel +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x30593f71 sof_apl_ops sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x459ddf9f sof_cnl_ops sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x4f4077bb apl_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x64258538 tgl_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x75d4a399 icl_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x9dd8ed28 adls_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0xa67ba27e sof_tgl_ops sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0xb58aa297 sof_icl_ops sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0xb8e88d17 ehl_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0xbdb22098 jsl_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0xcbfdd0a7 hda_pci_intel_probe sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0xe0cf197c cnl_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0xebd6a0c5 tglh_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HIFI_EP_IPC EXPORT_SYMBOL 0x376f1a81 intel_pcm_open sound/soc/sof/intel/snd-sof-intel-ipc +SND_SOC_SOF_INTEL_HIFI_EP_IPC EXPORT_SYMBOL 0x6086937b intel_ipc_pcm_params sound/soc/sof/intel/snd-sof-intel-ipc +SND_SOC_SOF_INTEL_HIFI_EP_IPC EXPORT_SYMBOL 0x6bda82cb intel_pcm_close sound/soc/sof/intel/snd-sof-intel-ipc +SND_SOC_SOF_INTEL_HIFI_EP_IPC EXPORT_SYMBOL 0xf15e0274 intel_ipc_msg_data sound/soc/sof/intel/snd-sof-intel-ipc +SND_SOC_SOF_PCI_DEV EXPORT_SYMBOL 0x61797f35 sof_pci_remove sound/soc/sof/snd-sof-pci +SND_SOC_SOF_PCI_DEV EXPORT_SYMBOL 0x9ec8a956 sof_pci_shutdown sound/soc/sof/snd-sof-pci +SND_SOC_SOF_PCI_DEV EXPORT_SYMBOL 0xa7c1ec81 sof_pci_pm sound/soc/sof/snd-sof-pci +SND_SOC_SOF_PCI_DEV EXPORT_SYMBOL 0xbe5e1b86 sof_pci_probe sound/soc/sof/snd-sof-pci +SND_SOC_SOF_XTENSA EXPORT_SYMBOL 0x8a169059 sof_xtensa_arch_ops sound/soc/sof/xtensa/snd-sof-xtensa-dsp +SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0x1a3ea506 sdw_intel_exit drivers/soundwire/soundwire-intel +SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0x22c2776d sdw_intel_startup drivers/soundwire/soundwire-intel SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0x5af438eb sdw_intel_enable_irq drivers/soundwire/soundwire-intel -SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0xa94f9bbe sdw_intel_startup drivers/soundwire/soundwire-intel +SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0x95a3eaa9 sdw_intel_probe drivers/soundwire/soundwire-intel SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0xaa52eba1 sdw_intel_thread drivers/soundwire/soundwire-intel -SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0xf801b6d4 sdw_intel_process_wakeen_event drivers/soundwire/soundwire-intel +SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0xd7ccb8fd sdw_intel_process_wakeen_event drivers/soundwire/soundwire-intel 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 0x0b5e028e usb_stor_post_reset drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x12090fa8 usb_stor_set_xfer_buf drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x1a2e78ff usb_stor_bulk_transfer_buf 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 0x24e2509c usb_stor_clear_halt drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x2e1cc8cc usb_stor_Bulk_reset drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x58ab3d5e usb_stor_probe1 drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x60a8ccaf usb_stor_reset_resume drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x645fb9c0 usb_stor_Bulk_transport drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x7c156e91 usb_stor_probe2 drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x7f19a82a usb_stor_disconnect drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x8b435cf7 usb_stor_bulk_srb drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x8e70fe2a usb_stor_bulk_transfer_buf drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xa9b9145a usb_stor_host_template_init drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xab3bf375 usb_stor_CB_reset drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xaba3a3f8 usb_stor_suspend drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xabe4db39 usb_stor_transparent_scsi_command drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xb1cd8364 usb_stor_resume drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xb2fba495 usb_stor_pre_reset drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xb52cb829 usb_stor_control_msg drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xbdb83ddd usb_stor_ctrl_transfer drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xd35ad490 usb_stor_CB_transport drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xd55320e1 usb_stor_adjust_quirks drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xdf26b5dd fill_inquiry_response drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xeb70fa8d usb_stor_bulk_transfer_sg drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xeec3f2d9 usb_stor_access_xfer_buf drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x1dc4dca4 fill_inquiry_response drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x216c530f usb_stor_CB_transport drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x36f14194 usb_stor_ctrl_transfer drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x3dd2bbdd usb_stor_post_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x42ea99c8 usb_stor_adjust_quirks drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x487a363a usb_stor_clear_halt drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x50812177 usb_stor_CB_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x569316ed usb_stor_reset_resume drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x6a359924 usb_stor_probe2 drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x6c297f2b usb_stor_suspend drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x6c4b0fca usb_stor_pre_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x7625da0b usb_stor_bulk_srb drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x7a7f69d3 usb_stor_host_template_init drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x7baa2522 usb_stor_Bulk_transport drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x8756e1f0 usb_stor_disconnect drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xa1a5079e usb_stor_probe1 drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xb2eda192 usb_stor_access_xfer_buf drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xb36e7836 usb_stor_Bulk_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xb432da3f usb_stor_transparent_scsi_command drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xc579f7c2 usb_stor_bulk_transfer_sg drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xcc2dd978 usb_stor_control_msg drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xd146af52 usb_stor_set_xfer_buf drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xfcc89252 usb_stor_resume drivers/usb/storage/usb-storage diff -u linux-intel-iotg-5.15-5.15.0/debian.master/abi/amd64/generic.modules linux-intel-iotg-5.15-5.15.0/debian.master/abi/amd64/generic.modules --- linux-intel-iotg-5.15-5.15.0/debian.master/abi/amd64/generic.modules +++ linux-intel-iotg-5.15-5.15.0/debian.master/abi/amd64/generic.modules @@ -16,7 +16,6 @@ 8250_exar 8250_lpss 8250_men_mcb -8250_mid 8255 8255_pci 8390 @@ -1609,6 +1608,7 @@ gpio-it87 gpio-janz-ttl gpio-kempld +gpio-ljca gpio-lp3943 gpio-lp873x gpio-madera @@ -1896,6 +1896,7 @@ hih6130 hinic hisi-spmi-controller +hm11b1 hmc425a hmc5843_core hmc5843_i2c @@ -1921,7 +1922,6 @@ hsi_char hso hsr -hsu_dma htc-pasic3 hts221 hts221_i2c @@ -1971,6 +1971,7 @@ i2c-isch i2c-ismt i2c-kempld +i2c-ljca i2c-matroxfb i2c-mlxcpld i2c-mux @@ -2138,6 +2139,9 @@ int51x1 intel-cstate intel-hid +intel-ipu6 +intel-ipu6-isys +intel-ipu6-psys intel-ish-ipc intel-ishtp intel-ishtp-hid @@ -2200,6 +2204,7 @@ intel_th_pti intel_th_sth intel_vr_nor +intel_vsc intelfb interact interrupt-cnt @@ -2562,7 +2567,6 @@ libahci_platform libarc4 libblake2s -libblake2s-generic libceph libchacha libchacha20poly1305 @@ -2594,6 +2598,7 @@ liquidio_vf lis3lv02d lis3lv02d_i2c +ljca lkkbd ll_temac llc @@ -2899,8 +2904,13 @@ mei mei-me mei-txe +mei-vsc +mei_ace +mei_ace_debug +mei_csi mei_hdcp mei_phy +mei_pse mei_wdt melfas_mip4 memory-notifier-error-inject @@ -3451,7 +3461,10 @@ orinoco_usb oti6858 otm3225a +ov01a10 +ov01a1s ov02a10 +ov02c10 ov13858 ov2640 ov2659 @@ -3694,6 +3707,7 @@ poly1305-x86_64 poly1305_generic port100 +power_ctrl_logic powermate powr1220 ppa @@ -4386,6 +4400,7 @@ sdricoh_cs seco-cec sensorhub +serial-multi-instantiate serial_cs serial_ir serio_raw @@ -4504,6 +4519,7 @@ snd-acp3x-rn snd-acp5x-i2s snd-acp5x-pcm-dma +snd-acp6x-pdm-dma snd-ad1889 snd-ak4113 snd-ak4114 @@ -4571,6 +4587,9 @@ snd-hda-core snd-hda-ext-core snd-hda-intel +snd-hda-scodec-cs35l41 +snd-hda-scodec-cs35l41-i2c +snd-hda-scodec-cs35l41-spi snd-hdmi-lpe-audio snd-hdsp snd-hdspm @@ -4615,6 +4634,7 @@ snd-oxygen-lib snd-pci-acp3x snd-pci-acp5x +snd-pci-acp6x snd-pcm snd-pcm-dmaengine snd-pcsp @@ -4643,6 +4663,7 @@ snd-soc-acp-da7219mx98357-mach snd-soc-acp-rt5645-mach snd-soc-acp-rt5682-mach +snd-soc-acp6x-mach snd-soc-acpi snd-soc-acpi-intel-match snd-soc-adau-utils @@ -4681,6 +4702,10 @@ snd-soc-cs35l34 snd-soc-cs35l35 snd-soc-cs35l36 +snd-soc-cs35l41 +snd-soc-cs35l41-i2c +snd-soc-cs35l41-lib +snd-soc-cs35l41-spi snd-soc-cs4234 snd-soc-cs4265 snd-soc-cs4270 @@ -4994,6 +5019,18 @@ spaceorb sparse-keymap spcp8x5 +speakup +speakup_acntsa +speakup_apollo +speakup_audptr +speakup_bns +speakup_decext +speakup_dectlk +speakup_dummy +speakup_ltlk +speakup_soft +speakup_spkout +speakup_txprt spectrum_cs speedfax speedstep-lib @@ -5012,6 +5049,7 @@ spi-dw-pci spi-gpio spi-lantiq-ssc +spi-ljca spi-lm70llp spi-loopback-test spi-mux diff -u linux-intel-iotg-5.15-5.15.0/debian.master/abi/arm64/generic linux-intel-iotg-5.15-5.15.0/debian.master/abi/arm64/generic --- linux-intel-iotg-5.15-5.15.0/debian.master/abi/arm64/generic +++ linux-intel-iotg-5.15-5.15.0/debian.master/abi/arm64/generic @@ -1,25 +1,25 @@ -CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x473eba24 crypto_cipher_decrypt_one vmlinux -CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x60f7b341 crypto_cipher_setkey vmlinux -CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0xaae11c2d crypto_cipher_encrypt_one vmlinux -CXL EXPORT_SYMBOL_GPL 0x0004043e cxl_probe_device_regs drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x1897991a devm_cxl_add_memdev drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x1b2d2b1e cxl_add_dport drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x256e4e8b devm_cxl_add_port drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x3ae80da3 cxl_map_component_regs drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x60363f07 cxl_bus_type drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x6117f0c1 cxl_map_device_regs drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x7274e1eb to_cxl_nvdimm_bridge drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x7c7e6969 cxl_probe_component_regs drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x7e623b01 is_cxl_nvdimm drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x9067d6c5 devm_cxl_add_nvdimm drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x93b1967f to_cxl_nvdimm drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x9f93e913 __cxl_driver_register drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xb8948bd7 to_cxl_decoder drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xc2cac904 devm_cxl_add_nvdimm_bridge drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xe46016ca devm_cxl_add_decoder drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xe880cd8c is_root_decoder drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xf4afa9c1 cxl_driver_unregister drivers/cxl/core/cxl_core -EXPORT_SYMBOL arch/arm64/crypto/aes-ce-cipher 0x4748b067 ce_aes_setkey +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x2899b210 crypto_cipher_decrypt_one vmlinux +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x5df4745d crypto_cipher_encrypt_one vmlinux +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0xcc01ebd7 crypto_cipher_setkey vmlinux +CXL EXPORT_SYMBOL_GPL 0x288b7c34 devm_cxl_add_memdev drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x30aa0761 __cxl_driver_register drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x4dcd8305 is_cxl_nvdimm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x58365c14 cxl_driver_unregister drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x653dd526 cxl_bus_type drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x6bfd4a8a cxl_add_dport drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x6e57ef12 cxl_map_component_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x8807bb4a devm_cxl_add_port drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x8eb5f922 cxl_probe_device_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x9a385c3e devm_cxl_add_nvdimm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x9bc86a9e to_cxl_nvdimm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xa2d740e0 cxl_map_device_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xb31a8879 is_root_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xbb191f3f devm_cxl_add_nvdimm_bridge drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xd7f91ab9 to_cxl_nvdimm_bridge drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xe78342db to_cxl_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xefd0d686 cxl_probe_component_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xf326aa73 devm_cxl_add_decoder drivers/cxl/core/cxl_core +EXPORT_SYMBOL arch/arm64/crypto/aes-ce-cipher 0x069f4284 ce_aes_setkey EXPORT_SYMBOL arch/arm64/crypto/aes-ce-cipher 0x68f275ad ce_aes_expandkey EXPORT_SYMBOL arch/arm64/crypto/aes-neon-blk 0x52d67a4e neon_aes_cbc_encrypt EXPORT_SYMBOL arch/arm64/crypto/aes-neon-blk 0xd5f41819 neon_aes_ecb_encrypt @@ -51,51 +51,51 @@ 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 0x1d65dc9a crypto_nhpoly1305_setkey -EXPORT_SYMBOL crypto/nhpoly1305 0x5b271d96 crypto_nhpoly1305_final -EXPORT_SYMBOL crypto/nhpoly1305 0x611af3da crypto_nhpoly1305_init -EXPORT_SYMBOL crypto/nhpoly1305 0x68638a02 crypto_nhpoly1305_final_helper -EXPORT_SYMBOL crypto/nhpoly1305 0xf0c9c626 crypto_nhpoly1305_update -EXPORT_SYMBOL crypto/nhpoly1305 0xf560f285 crypto_nhpoly1305_update_helper -EXPORT_SYMBOL crypto/sha3_generic 0x7a4a9780 crypto_sha3_final -EXPORT_SYMBOL crypto/sha3_generic 0xb07943b3 crypto_sha3_update -EXPORT_SYMBOL crypto/sha3_generic 0xe0f0910a crypto_sha3_init -EXPORT_SYMBOL crypto/sm2_generic 0xe5767d6e sm2_compute_z_digest -EXPORT_SYMBOL crypto/sm3_generic 0x37af8ec5 crypto_sm3_final -EXPORT_SYMBOL crypto/sm3_generic 0x9af39d3f crypto_sm3_update -EXPORT_SYMBOL crypto/sm3_generic 0xd0fcc442 crypto_sm3_finup +EXPORT_SYMBOL crypto/nhpoly1305 0x0442fee0 crypto_nhpoly1305_update +EXPORT_SYMBOL crypto/nhpoly1305 0x3cc9c401 crypto_nhpoly1305_final_helper +EXPORT_SYMBOL crypto/nhpoly1305 0x57959d04 crypto_nhpoly1305_final +EXPORT_SYMBOL crypto/nhpoly1305 0x678bd437 crypto_nhpoly1305_init +EXPORT_SYMBOL crypto/nhpoly1305 0xaef40dd6 crypto_nhpoly1305_setkey +EXPORT_SYMBOL crypto/nhpoly1305 0xe3743943 crypto_nhpoly1305_update_helper +EXPORT_SYMBOL crypto/sha3_generic 0x7c1c7239 crypto_sha3_update +EXPORT_SYMBOL crypto/sha3_generic 0x959c78e9 crypto_sha3_final +EXPORT_SYMBOL crypto/sha3_generic 0xbef57703 crypto_sha3_init +EXPORT_SYMBOL crypto/sm2_generic 0xf0e6c3e8 sm2_compute_z_digest +EXPORT_SYMBOL crypto/sm3_generic 0x9a9d06ec crypto_sm3_final +EXPORT_SYMBOL crypto/sm3_generic 0xcd43d0f5 crypto_sm3_finup +EXPORT_SYMBOL crypto/sm3_generic 0xd0f70e13 crypto_sm3_update EXPORT_SYMBOL crypto/xor 0x5b6c00e6 xor_blocks EXPORT_SYMBOL drivers/acpi/nfit/nfit 0x06848c60 to_nfit_uuid -EXPORT_SYMBOL drivers/atm/suni 0x90b3ac06 suni_init -EXPORT_SYMBOL drivers/bcma/bcma 0xa884c6e0 bcma_core_irq -EXPORT_SYMBOL drivers/bcma/bcma 0xe1c80f3d bcma_core_dma_translation +EXPORT_SYMBOL drivers/atm/suni 0xfd538dd0 suni_init +EXPORT_SYMBOL drivers/bcma/bcma 0x12a92b81 bcma_core_irq +EXPORT_SYMBOL drivers/bcma/bcma 0x3c782800 bcma_core_dma_translation EXPORT_SYMBOL drivers/block/drbd/drbd 0x127a5901 drbd_set_st_err_str EXPORT_SYMBOL drivers/block/drbd/drbd 0x35131b36 drbd_role_str EXPORT_SYMBOL drivers/block/drbd/drbd 0x7730f22d drbd_conn_str EXPORT_SYMBOL drivers/block/drbd/drbd 0xaf27bebf drbd_disk_str -EXPORT_SYMBOL drivers/bluetooth/btbcm 0xc9a05dbf btbcm_patchram -EXPORT_SYMBOL drivers/bluetooth/btrsi 0xed735176 rsi_bt_ops -EXPORT_SYMBOL drivers/bus/mhi/core/mhi 0x764c6235 mhi_sync_power_up +EXPORT_SYMBOL drivers/bluetooth/btbcm 0x9bb7c490 btbcm_patchram +EXPORT_SYMBOL drivers/bluetooth/btrsi 0xb32734be rsi_bt_ops +EXPORT_SYMBOL drivers/bus/mhi/core/mhi 0x35fd0ecf 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 0x0fde64e0 ipmi_smi_watcher_register +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x0d819c24 ipmi_get_smi_info EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x12dd1e77 ipmi_set_maintenance_mode -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1fdf793f ipmi_smi_watcher_unregister EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x230094ac ipmi_smi_watchdog_pretimeout EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x31cab048 ipmi_smi_msg_received EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x40f2b10c ipmi_alloc_smi_msg EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x4c2054d7 ipmi_request_settime -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x4e4efa1e ipmi_get_smi_info EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x50f65edf ipmi_set_gets_events +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x59501108 ipmi_smi_watcher_register EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x67369b42 ipmi_addr_src_to_str -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x67c6ebe3 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 0xaca90ebd ipmi_request_supply_msgs EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xae71627d ipmi_create_user +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xd31a3aad ipmi_add_smi EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xd54a5050 ipmi_unregister_for_cmd +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xd6ea0dce ipmi_smi_watcher_unregister 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 0xec1c2a90 ipmi_get_my_address @@ -103,41 +103,41 @@ 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/tpm/st33zp24/tpm_st33zp24 0x62561ae1 st33zp24_pm_suspend -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xc9ee0320 st33zp24_pm_resume -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xf7ae62f9 st33zp24_probe -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xfc8849d1 st33zp24_remove -EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0x078bcf72 xillybus_init_chrdev -EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0x51e4fa0e xillybus_find_inode -EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0x873033e4 xillybus_cleanup_chrdev +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x21b154f4 st33zp24_pm_resume +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x38f16bf6 st33zp24_remove +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x588492e0 st33zp24_pm_suspend +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xa7222b00 st33zp24_probe +EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0x11765f12 xillybus_find_inode +EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0x5e724c8d xillybus_init_chrdev +EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0x8a93dd70 xillybus_cleanup_chrdev EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x25978d50 xillybus_isr -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x3549d390 xillybus_endpoint_remove -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x724b07a5 xillybus_init_endpoint -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xf928d18f xillybus_endpoint_discovery +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x2907e203 xillybus_endpoint_remove +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x341cf6bb xillybus_init_endpoint +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x6d90a06c xillybus_endpoint_discovery EXPORT_SYMBOL drivers/clk/qcom/clk-qcom 0x25c98843 clk_alpha_pll_zonda_ops EXPORT_SYMBOL drivers/clk/qcom/clk-qcom 0xa03f8920 clk_alpha_pll_postdiv_lucid_5lpe_ops EXPORT_SYMBOL drivers/clk/qcom/clk-qcom 0xd89a02cf clk_alpha_pll_fixed_lucid_5lpe_ops EXPORT_SYMBOL drivers/clk/qcom/clk-qcom 0xed46e5cc clk_alpha_pll_lucid_5lpe_ops -EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x63bec8f2 atmel_i2c_send_receive +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x0021433d atmel_i2c_probe EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x80a11b1d atmel_i2c_init_read_cmd -EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xaabddbcc atmel_i2c_probe -EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xb562ef9d atmel_i2c_enqueue +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x86ce2265 atmel_i2c_enqueue +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xad63bc1d atmel_i2c_send_receive EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xc71ed50c atmel_i2c_init_genkey_cmd 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 0x17572340 caam_congested -EXPORT_SYMBOL drivers/crypto/caam/caam 0x1a0a9119 caam_drv_ctx_init -EXPORT_SYMBOL drivers/crypto/caam/caam 0x33a1ad5f caam_drv_ctx_update +EXPORT_SYMBOL drivers/crypto/caam/caam 0x275b330a caam_qi_enqueue +EXPORT_SYMBOL drivers/crypto/caam/caam 0x33f90d46 caam_drv_ctx_rel 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 0x5bc15db5 caam_drv_ctx_rel -EXPORT_SYMBOL drivers/crypto/caam/caam 0x7f079be8 caam_qi_enqueue +EXPORT_SYMBOL drivers/crypto/caam/caam 0x9bf9bcad caam_drv_ctx_update EXPORT_SYMBOL drivers/crypto/caam/caam 0xc0eaa792 qi_cache_alloc -EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x5e9fbe5f gen_split_key -EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x7dde8531 split_key_done -EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x81e3f17f caam_jr_free -EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0xa523af7c caam_jr_enqueue -EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0xdba0a4d2 caam_jr_alloc +EXPORT_SYMBOL drivers/crypto/caam/caam 0xfa236164 caam_drv_ctx_init +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x051e6c73 caam_jr_alloc +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x0bd541b5 gen_split_key +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x3039359f caam_jr_enqueue +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x45d19f4c split_key_done +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0xa01003ca 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 @@ -156,1073 +156,1073 @@ 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 0x2c0f3045 dpaa2_caam_enqueue +EXPORT_SYMBOL drivers/crypto/caam/dpaa2_caam 0x5f3fb682 dpaa2_caam_enqueue EXPORT_SYMBOL drivers/crypto/caam/error 0x53d0fc97 caam_ptr_sz -EXPORT_SYMBOL drivers/crypto/caam/error 0x86fa61d0 caam_strstatus EXPORT_SYMBOL drivers/crypto/caam/error 0xa51f16c7 caam_little_end EXPORT_SYMBOL drivers/crypto/caam/error 0xbd67c092 caam_imx EXPORT_SYMBOL drivers/crypto/caam/error 0xd25da602 caam_dump_sg -EXPORT_SYMBOL drivers/dma/xilinx/xilinx_dma 0x6dc8a64c xilinx_vdma_channel_set_config +EXPORT_SYMBOL drivers/crypto/caam/error 0xea951d50 caam_strstatus +EXPORT_SYMBOL drivers/dma/xilinx/xilinx_dma 0x0e681063 xilinx_vdma_channel_set_config +EXPORT_SYMBOL drivers/firewire/firewire-core 0x01c8573c fw_cancel_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0x054a55a8 fw_core_handle_response EXPORT_SYMBOL drivers/firewire/firewire-core 0x0bc6094c fw_core_remove_descriptor -EXPORT_SYMBOL drivers/firewire/firewire-core 0x172de6e9 fw_iso_context_flush_completions -EXPORT_SYMBOL drivers/firewire/firewire-core 0x19e3f71b fw_iso_context_queue -EXPORT_SYMBOL drivers/firewire/firewire-core 0x202ab2c3 fw_core_handle_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x0f2bd3d3 fw_iso_context_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0x11fda804 fw_core_add_address_handler EXPORT_SYMBOL drivers/firewire/firewire-core 0x2885fec5 fw_get_request_speed -EXPORT_SYMBOL drivers/firewire/firewire-core 0x28bf40ab fw_core_add_address_handler -EXPORT_SYMBOL drivers/firewire/firewire-core 0x2b51e9a8 fw_device_enable_phys_dma -EXPORT_SYMBOL drivers/firewire/firewire-core 0x2fb3f888 fw_core_remove_card EXPORT_SYMBOL drivers/firewire/firewire-core 0x3a771e39 fw_core_add_descriptor -EXPORT_SYMBOL drivers/firewire/firewire-core 0x3ba73ec2 fw_run_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3ad574ab fw_core_handle_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3afc36d8 fw_core_remove_address_handler EXPORT_SYMBOL drivers/firewire/firewire-core 0x3c56ef91 fw_workqueue -EXPORT_SYMBOL drivers/firewire/firewire-core 0x427f2348 fw_send_request -EXPORT_SYMBOL drivers/firewire/firewire-core 0x4af263c6 fw_iso_context_destroy -EXPORT_SYMBOL drivers/firewire/firewire-core 0x4b776a5c fw_bus_type -EXPORT_SYMBOL drivers/firewire/firewire-core 0x65c1447a fw_iso_buffer_destroy -EXPORT_SYMBOL drivers/firewire/firewire-core 0x678c6306 fw_iso_buffer_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0x45cfc671 fw_core_handle_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0x46495e7a fw_core_remove_card +EXPORT_SYMBOL drivers/firewire/firewire-core 0x47309fd1 fw_iso_context_create +EXPORT_SYMBOL drivers/firewire/firewire-core 0x48134fe0 fw_iso_context_queue +EXPORT_SYMBOL drivers/firewire/firewire-core 0x4a61203a fw_iso_context_flush_completions EXPORT_SYMBOL drivers/firewire/firewire-core 0x6dc50487 fw_csr_string -EXPORT_SYMBOL drivers/firewire/firewire-core 0x790618f6 fw_schedule_bus_reset -EXPORT_SYMBOL drivers/firewire/firewire-core 0x81210851 fw_iso_context_start +EXPORT_SYMBOL drivers/firewire/firewire-core 0x820a8297 fw_iso_buffer_destroy EXPORT_SYMBOL drivers/firewire/firewire-core 0x86468d44 fw_rcode_string -EXPORT_SYMBOL drivers/firewire/firewire-core 0x8863213d fw_send_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0x9d1b487e fw_iso_context_stop -EXPORT_SYMBOL drivers/firewire/firewire-core 0xa252b003 fw_card_initialize -EXPORT_SYMBOL drivers/firewire/firewire-core 0xaa8e3ced fw_core_handle_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0x8809bc85 fw_bus_type +EXPORT_SYMBOL drivers/firewire/firewire-core 0x999236e4 fw_fill_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x9ef73763 fw_run_transaction EXPORT_SYMBOL drivers/firewire/firewire-core 0xaedf84ce fw_high_memory_region -EXPORT_SYMBOL drivers/firewire/firewire-core 0xb502ecb8 fw_iso_context_queue_flush -EXPORT_SYMBOL drivers/firewire/firewire-core 0xbe4b84c2 fw_core_remove_address_handler -EXPORT_SYMBOL drivers/firewire/firewire-core 0xcc359ec0 fw_core_handle_request -EXPORT_SYMBOL drivers/firewire/firewire-core 0xd8d9b2d2 fw_fill_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0xd8fb0a3f fw_iso_resource_manage +EXPORT_SYMBOL drivers/firewire/firewire-core 0xc570ae73 fw_iso_resource_manage +EXPORT_SYMBOL drivers/firewire/firewire-core 0xc953503c fw_device_enable_phys_dma +EXPORT_SYMBOL drivers/firewire/firewire-core 0xcaab8804 fw_iso_context_queue_flush +EXPORT_SYMBOL drivers/firewire/firewire-core 0xcca0f981 fw_card_initialize +EXPORT_SYMBOL drivers/firewire/firewire-core 0xdf2c3e27 fw_schedule_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0xe28c061a fw_send_response EXPORT_SYMBOL drivers/firewire/firewire-core 0xe3fde125 fw_csr_iterator_next +EXPORT_SYMBOL drivers/firewire/firewire-core 0xe58018ee fw_iso_buffer_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0xe5b08fda fw_send_request EXPORT_SYMBOL drivers/firewire/firewire-core 0xe80e5087 fw_csr_iterator_init -EXPORT_SYMBOL drivers/firewire/firewire-core 0xf27f7eb6 fw_cancel_transaction -EXPORT_SYMBOL drivers/firewire/firewire-core 0xf5d88cc6 fw_card_add -EXPORT_SYMBOL drivers/firewire/firewire-core 0xf8c1edaa fw_iso_context_create +EXPORT_SYMBOL drivers/firewire/firewire-core 0xef9d036f fw_iso_context_stop +EXPORT_SYMBOL drivers/firewire/firewire-core 0xf22fc811 fw_card_add +EXPORT_SYMBOL drivers/firewire/firewire-core 0xff94ac32 fw_iso_context_start EXPORT_SYMBOL drivers/firmware/broadcom/tee_bnxt_fw 0x57b73b33 tee_bnxt_fw_load EXPORT_SYMBOL drivers/firmware/broadcom/tee_bnxt_fw 0xdfaff93c tee_bnxt_copy_coredump -EXPORT_SYMBOL drivers/firmware/imx/imx-dsp 0x04f28f45 imx_dsp_ring_doorbell -EXPORT_SYMBOL drivers/firmware/imx/imx-dsp 0x25a3b39c imx_dsp_request_channel -EXPORT_SYMBOL drivers/firmware/imx/imx-dsp 0xaaa4a938 imx_dsp_free_channel -EXPORT_SYMBOL drivers/fpga/dfl 0xd3dd8df3 dfl_driver_unregister -EXPORT_SYMBOL drivers/fpga/dfl 0xe3cfd9cd __dfl_driver_register +EXPORT_SYMBOL drivers/firmware/imx/imx-dsp 0x3198b0d4 imx_dsp_free_channel +EXPORT_SYMBOL drivers/firmware/imx/imx-dsp 0xb089ae62 imx_dsp_request_channel +EXPORT_SYMBOL drivers/firmware/imx/imx-dsp 0xb861a7dc imx_dsp_ring_doorbell +EXPORT_SYMBOL drivers/fpga/dfl 0x537083e9 dfl_driver_unregister +EXPORT_SYMBOL drivers/fpga/dfl 0x99339657 __dfl_driver_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0018cb3f drm_crtc_commit_wait EXPORT_SYMBOL drivers/gpu/drm/drm 0x00738a74 drm_driver_legacy_fb_format -EXPORT_SYMBOL drivers/gpu/drm/drm 0x008baca3 drm_display_info_set_bus_formats -EXPORT_SYMBOL drivers/gpu/drm/drm 0x00cfe54b drm_gem_prime_import -EXPORT_SYMBOL drivers/gpu/drm/drm 0x01258970 drm_gem_shmem_unpin -EXPORT_SYMBOL drivers/gpu/drm/drm 0x025929f0 drm_gem_cma_prime_import_sg_table_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x03afc6a8 drm_gem_fence_array_add_implicit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x01b23f03 drm_mode_create_from_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x021ca8ca drm_panel_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x02b203f8 drm_syncobj_find_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0x02d45f37 drm_hdmi_avi_infoframe_colorspace +EXPORT_SYMBOL drivers/gpu/drm/drm 0x032c99a6 drm_writeback_prepare_job EXPORT_SYMBOL drivers/gpu/drm/drm 0x03c63897 __drm_get_edid_firmware_path -EXPORT_SYMBOL drivers/gpu/drm/drm 0x044114a5 drm_mode_set_config_internal -EXPORT_SYMBOL drivers/gpu/drm/drm 0x04a16769 drm_of_crtc_port_mask -EXPORT_SYMBOL drivers/gpu/drm/drm 0x059f81b9 drm_plane_create_zpos_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x05de2199 drm_i2c_encoder_mode_fixup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x05e4a806 drm_connector_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x05861310 drm_debugfs_create_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0x05d72357 drm_open EXPORT_SYMBOL drivers/gpu/drm/drm 0x065e86ac drm_detect_hdmi_monitor -EXPORT_SYMBOL drivers/gpu/drm/drm 0x06b87822 drm_gem_put_pages EXPORT_SYMBOL drivers/gpu/drm/drm 0x070b28aa drm_ht_remove_item -EXPORT_SYMBOL drivers/gpu/drm/drm 0x078b32d5 drm_panel_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm 0x07d704ac __devm_drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x07ccf84a drm_connector_register EXPORT_SYMBOL drivers/gpu/drm/drm 0x07fb449a drm_vma_offset_manager_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x090bc69b drm_connector_list_iter_next -EXPORT_SYMBOL drivers/gpu/drm/drm 0x09989c5f drm_client_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x082131b7 drm_send_event_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x08702df0 drm_color_lut_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0x08916d23 drm_add_override_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x09b84651 drm_mode_create_content_type_property EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a72f765 drm_clflush_virt_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ce68087 drm_framebuffer_plane_height +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0b243efb drm_bridge_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0c31c2a5 drm_atomic_private_obj_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0cab6f76 drm_gem_unlock_reservations +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0cf8ad39 drm_connector_has_possible_encoder EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d9b4753 drm_mode_equal -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ec18b11 drm_crtc_vblank_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0edeeb7d drm_crtc_vblank_restore +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0dbf3e7b drm_crtc_vblank_on +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0e8dee60 drm_atomic_get_new_bridge_state EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f7acb66 drm_mm_print -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f81e793 drm_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f8bee6a drm_crtc_check_viewport -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fbfce68 drm_gem_object_init EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fd60df2 drm_get_connector_status_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x10689658 drm_mode_config_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x102c6966 drm_noop EXPORT_SYMBOL drivers/gpu/drm/drm 0x107742a9 drm_get_subpixel_order_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x10c98731 drm_atomic_private_obj_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x121fd8ae drm_atomic_check_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0x10811374 drm_av_sync_delay +EXPORT_SYMBOL drivers/gpu/drm/drm 0x11546e46 drm_syncobj_get_handle EXPORT_SYMBOL drivers/gpu/drm/drm 0x127a8c6b drm_flip_work_queue -EXPORT_SYMBOL drivers/gpu/drm/drm 0x12f65973 drm_add_override_edid_modes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x13141dc2 drm_atomic_state_clear -EXPORT_SYMBOL drivers/gpu/drm/drm 0x13a8658d drm_probe_ddc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1447381a drm_modeset_lock_single_interruptible -EXPORT_SYMBOL drivers/gpu/drm/drm 0x144a2f43 drm_modeset_unlock_all -EXPORT_SYMBOL drivers/gpu/drm/drm 0x149dc437 drm_universal_plane_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x172ee6d6 drm_connector_set_tile_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x174d8645 drm_gem_get_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0x17e8afbc drm_atomic_bridge_chain_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x184296b4 drm_dev_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x184413c7 drm_color_lut_check -EXPORT_SYMBOL drivers/gpu/drm/drm 0x19d0246b drm_syncobj_replace_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1310b964 drm_i2c_encoder_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x138f0b9f drm_atomic_print_new_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x13e81c81 drm_crtc_set_max_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x140c29bf drm_bridge_chain_mode_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x141a7db1 drm_mode_is_420 +EXPORT_SYMBOL drivers/gpu/drm/drm 0x16584fef drm_atomic_state_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0x169442a0 drm_i2c_encoder_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0x16b72a08 drm_gem_object_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x16ffb767 drm_object_attach_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x173eff59 drm_crtc_cleanup EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a411479 drm_syncobj_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1b18a72f drm_client_framebuffer_delete -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1bbfd62d drm_property_create_signed_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c0dc0ca drm_ioctl_permit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c2ba14a drm_framebuffer_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c3ceff4 drm_gem_prime_import_dev -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1ed5b168 __drmm_add_action -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1f6bd5a5 drm_i2c_encoder_detect -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2009b3b2 __drm_atomic_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm 0x20324326 drm_prime_sg_to_page_array -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2109753f drm_atomic_get_new_bridge_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x215d5d95 drm_plane_get_damage_clips_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a82addc drm_panel_get_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1ac0a198 drm_event_reserve_init_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1b051529 drm_atomic_get_new_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1bc23fe7 drm_vblank_work_schedule +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1be3e3ab drm_gem_shmem_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c2df275 drm_atomic_get_old_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d5d3b1f drm_gem_map_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1db527d1 drm_mode_validate_ycbcr420 +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1eafc69f drm_property_create_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1eef3b70 drm_crtc_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1f437057 drm_mode_find_dmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1fca8ac3 drm_atomic_state_default_clear EXPORT_SYMBOL drivers/gpu/drm/drm 0x2183c08c drm_mm_scan_add_block EXPORT_SYMBOL drivers/gpu/drm/drm 0x21d541eb drm_flip_work_queue_task -EXPORT_SYMBOL drivers/gpu/drm/drm 0x231ef191 drm_mode_object_find -EXPORT_SYMBOL drivers/gpu/drm/drm 0x243bc494 drm_mode_duplicate -EXPORT_SYMBOL drivers/gpu/drm/drm 0x24cbdc46 drm_i2c_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2282037b drm_gem_lock_reservations +EXPORT_SYMBOL drivers/gpu/drm/drm 0x228b9a84 drm_gem_shmem_madvise +EXPORT_SYMBOL drivers/gpu/drm/drm 0x22f1bdbc drm_connector_attach_max_bpc_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x230a641d drm_atomic_get_connector_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2392fbb5 drm_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x248c6cff drm_atomic_add_affected_planes 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 0x2555276d drm_atomic_get_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2599b25f drm_client_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0x25d32c89 drm_crtc_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x25354333 drm_encoder_cleanup EXPORT_SYMBOL drivers/gpu/drm/drm 0x25daad93 __drm_mm_interval_first -EXPORT_SYMBOL drivers/gpu/drm/drm 0x264af0f0 drm_modeset_acquire_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x26731ca1 drm_client_rotation -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2685125b drm_modeset_unlock -EXPORT_SYMBOL drivers/gpu/drm/drm 0x26d8649d drm_client_framebuffer_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x26dae1a3 drm_plane_create_alpha_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x26f3bbc9 drm_atomic_add_affected_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2632d0f3 drm_invalid_op +EXPORT_SYMBOL drivers/gpu/drm/drm 0x269784bf drm_panel_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0x26df9c92 drm_plane_get_damage_clips +EXPORT_SYMBOL drivers/gpu/drm/drm 0x26e1b268 drm_object_property_set_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x27373a2b __drmm_universal_plane_alloc EXPORT_SYMBOL drivers/gpu/drm/drm 0x2754dad8 drm_mm_reserve_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x282aac77 drm_i2c_encoder_detect +EXPORT_SYMBOL drivers/gpu/drm/drm 0x283743bc drm_modeset_acquire_fini EXPORT_SYMBOL drivers/gpu/drm/drm 0x28779e52 drm_printf +EXPORT_SYMBOL drivers/gpu/drm/drm 0x287e9da8 drm_connector_list_iter_begin +EXPORT_SYMBOL drivers/gpu/drm/drm 0x28af06c8 drm_gem_prime_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x291f94ee drm_framebuffer_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2975754c drm_client_rotation +EXPORT_SYMBOL drivers/gpu/drm/drm 0x29849d47 drm_crtc_vblank_waitqueue +EXPORT_SYMBOL drivers/gpu/drm/drm 0x29938834 drm_atomic_bridge_chain_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x29bd74df drm_release_noglobal EXPORT_SYMBOL drivers/gpu/drm/drm 0x29f078d1 drm_mode_legacy_fb_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a5d4ca7 drm_file_get_master EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a962499 drm_mm_scan_init_with_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2b077982 drm_state_dump -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2b830c5f drm_dev_unplug -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2bd1fe94 drm_panel_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2be2641f drm_gem_mmap_obj +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ab784b9 __devm_drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ba333e3 drm_connector_set_tile_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2cba36fa drm_bridge_chain_pre_enable EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d50570f drm_rect_calc_hscale -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2dac5e68 drm_connector_set_panel_orientation_with_quirk +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d73e810 drm_crtc_send_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2de7fa3f drm_writeback_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2dec0a89 drm_connector_attach_content_protection_property EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ed3c600 drm_mode_debug_printmodeline -EXPORT_SYMBOL drivers/gpu/drm/drm 0x30fb9f94 drm_mode_create_dvi_i_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f296746 drm_master_internal_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f9986d8 drm_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm 0x306f6c54 drm_cvt_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x31118ae8 drm_display_info_set_bus_formats +EXPORT_SYMBOL drivers/gpu/drm/drm 0x313c5110 drm_mode_validate_driver +EXPORT_SYMBOL drivers/gpu/drm/drm 0x31552971 drm_print_regset32 +EXPORT_SYMBOL drivers/gpu/drm/drm 0x315dae71 drm_mode_create_dp_colorspace_property EXPORT_SYMBOL drivers/gpu/drm/drm 0x31b8a5e3 __drm_set_edid_firmware_path -EXPORT_SYMBOL drivers/gpu/drm/drm 0x321de77e devm_aperture_acquire_from_firmware EXPORT_SYMBOL drivers/gpu/drm/drm 0x32a0cc37 drm_print_bits -EXPORT_SYMBOL drivers/gpu/drm/drm 0x33144f9b drm_vblank_work_flush -EXPORT_SYMBOL drivers/gpu/drm/drm 0x33857866 drm_connector_attach_dp_subconnector_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x33a57877 drm_mode_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x362950e9 drm_ioctl -EXPORT_SYMBOL drivers/gpu/drm/drm 0x369907a3 drm_syncobj_get_handle -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ab4375c drm_connector_init_with_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x32a12ee4 drm_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x32cafbb2 drm_panel_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x34396090 drm_plane_create_color_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x34448a1d drm_gem_map_dma_buf +EXPORT_SYMBOL drivers/gpu/drm/drm 0x36acb7f7 drm_mode_create_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x36b16c5f drm_connector_attach_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x36c20e31 drm_modeset_lock +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3792f364 drm_poll +EXPORT_SYMBOL drivers/gpu/drm/drm 0x37ef33c2 drm_atomic_state_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x37fac3d9 drm_mode_probed_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3806e71f drm_gem_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x382e2a31 drm_connector_attach_hdr_output_metadata_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x38624599 drm_client_buffer_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x39322f1a drm_dev_printk +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3990320c __drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm 0x39b642bd drm_gem_private_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3a401187 drm_gem_mmap EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ab87110 drm_mode_equal_no_clocks -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3acec4b8 drm_mode_create_aspect_ratio_property EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b0e5e9c __drm_puts_coredump -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b18602b drm_bridge_attach -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b2ccc1c drm_atomic_bridge_chain_check -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b591056 drm_atomic_set_fence_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b49f284 drm_vblank_work_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b4c2709 drm_put_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b77f0b5 drm_connector_attach_content_type_property EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ba17eab drm_ht_insert_item -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3bee826f drm_atomic_get_old_connector_for_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3bf94309 drm_framebuffer_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3bab9a4c drm_client_modeset_dpms EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c22a4d8 drm_vma_offset_manager_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3cc66533 drm_atomic_get_new_connector_for_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3cc92a48 drm_panel_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3d2165c7 drm_hdmi_avi_infoframe_from_display_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3d4c2bbe drm_crtc_enable_color_mgmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c2b8e8a drm_hdcp_update_content_protection +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c6292be of_drm_find_panel +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c851242 drm_prime_gem_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ca79379 drm_modeset_unlock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3d2e29ef drm_connector_set_panel_orientation EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e50b109 drm_gem_fence_array_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ea3d5d5 drm_panel_unprepare -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f2638e6 drm_aperture_remove_conflicting_pci_framebuffers EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f405489 __drm_printfn_err -EXPORT_SYMBOL drivers/gpu/drm/drm 0x40de85e7 drm_crtc_vblank_helper_get_vblank_timestamp_internal -EXPORT_SYMBOL drivers/gpu/drm/drm 0x418bf5a7 drm_property_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x418c7407 drm_object_property_get_value -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4197fa5d drm_any_plane_has_format -EXPORT_SYMBOL drivers/gpu/drm/drm 0x426e2c83 drm_connector_set_link_status_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x429fe848 drm_gem_shmem_put_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0x42fd0a47 drm_connector_attach_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0x435b66df drm_noop +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f85b3e4 drm_atomic_add_encoder_bridges +EXPORT_SYMBOL drivers/gpu/drm/drm 0x40a76d21 drm_i2c_encoder_restore +EXPORT_SYMBOL drivers/gpu/drm/drm 0x41a47c16 drm_atomic_set_crtc_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x42516d5a drm_mode_parse_command_line_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0x42744406 drm_connector_attach_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x438ef8c0 drm_i2c_encoder_save +EXPORT_SYMBOL drivers/gpu/drm/drm 0x43bde257 drm_i2c_encoder_mode_fixup EXPORT_SYMBOL drivers/gpu/drm/drm 0x4403a9c3 drm_mode_get_hv_timing -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4449c50b drm_connector_set_path_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x445a8dac drmm_kfree EXPORT_SYMBOL drivers/gpu/drm/drm 0x44a2cadb drm_prime_sg_to_dma_addr_array EXPORT_SYMBOL drivers/gpu/drm/drm 0x4575a0ca drm_mode_set_crtcinfo -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4580281f drm_of_component_probe -EXPORT_SYMBOL drivers/gpu/drm/drm 0x45b07157 drm_hdmi_avi_infoframe_colorspace -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4615342e drm_atomic_state_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x47757ecb drm_gem_shmem_create_with_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4599709d drm_writeback_get_out_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4727b5ba drm_add_modes_noedid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x477d5a86 drm_bridge_remove EXPORT_SYMBOL drivers/gpu/drm/drm 0x4831da6e drm_vma_offset_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x485cbbe6 drm_dev_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0x49ace30e drm_mode_plane_set_obj_prop -EXPORT_SYMBOL drivers/gpu/drm/drm 0x49fbfd6a drmm_kmalloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x49b89296 drm_crtc_vblank_count_and_time +EXPORT_SYMBOL drivers/gpu/drm/drm 0x49bafe34 drm_gem_shmem_purge_locked EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a35d30d drm_mode_set_name EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a7d75b0 drm_memcpy_from_wc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4aa22b19 drm_gem_shmem_purge +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4afa60cf drm_atomic_get_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b7473c3 drm_modeset_lock_all EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b7ebf95 drm_mm_remove_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ba19e09 drm_crtc_create_scaling_filter_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4bd96ef1 drm_client_modeset_probe -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c933a12 drm_property_create_enum -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ce93555 drm_property_create_bool -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d4b0e8f drm_prime_pages_to_sg -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d58d02c drm_atomic_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e16f07e drm_atomic_get_crtc_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e2858d3 drm_atomic_normalize_zpos -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e36f531 drm_plane_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4eb9bc38 drm_connector_attach_max_bpc_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ecbc26d of_drm_find_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c6f230e drm_vblank_work_flush +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d1ff96b __drmm_crtc_alloc_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4de7344b drm_gem_vm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ecb596e __drmm_add_action EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f18a150 __drm_debug -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f80c121 drm_dev_set_unique -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4fb1b633 drm_panel_of_backlight +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f2a7e74 drm_event_reserve_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f2ad5b1 drm_gem_vm_close +EXPORT_SYMBOL drivers/gpu/drm/drm 0x502f8b3f drm_connector_atomic_hdr_metadata_equal EXPORT_SYMBOL drivers/gpu/drm/drm 0x50674de7 drm_timeout_abs_to_jiffies -EXPORT_SYMBOL drivers/gpu/drm/drm 0x50df23bb drm_crtc_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50e846fc drm_i2c_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x51188bbd __drm_atomic_helper_disable_plane EXPORT_SYMBOL drivers/gpu/drm/drm 0x513072fe __drm_puts_seq_file -EXPORT_SYMBOL drivers/gpu/drm/drm 0x51c48f72 drm_client_framebuffer_flush EXPORT_SYMBOL drivers/gpu/drm/drm 0x521ad6d0 drm_puts -EXPORT_SYMBOL drivers/gpu/drm/drm 0x522f8b32 drm_gem_object_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x52f07dc2 drm_connector_attach_hdr_output_metadata_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x533e76bf drm_bridge_chain_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x534e1c6d drm_gem_unlock_reservations -EXPORT_SYMBOL drivers/gpu/drm/drm 0x54507700 drm_atomic_get_private_obj_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x54aaa433 drm_property_replace_global_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x531859c1 drm_plane_create_zpos_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x53c1043a drm_bridge_chain_enable EXPORT_SYMBOL drivers/gpu/drm/drm 0x5542443b drm_flip_work_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x561e596c drm_poll -EXPORT_SYMBOL drivers/gpu/drm/drm 0x571d5d71 drm_event_cancel_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0x57617283 drm_event_reserve_init_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x55f3c9a6 drm_crtc_vblank_reset EXPORT_SYMBOL drivers/gpu/drm/drm 0x57698a50 drm_mm_takedown -EXPORT_SYMBOL drivers/gpu/drm/drm 0x577224f9 drm_property_lookup_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0x57851ae4 drm_atomic_bridge_chain_pre_enable EXPORT_SYMBOL drivers/gpu/drm/drm 0x57b6efe3 drm_ioctl_flags +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57cbd8a1 drm_gem_shmem_create_with_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57fcfdeb drm_gem_prime_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0x58c4d853 drm_plane_create_blend_mode_property EXPORT_SYMBOL drivers/gpu/drm/drm 0x59056243 drm_mm_replace_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5954961b drm_atomic_set_crtc_for_connector EXPORT_SYMBOL drivers/gpu/drm/drm 0x599dea05 drm_edid_is_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x59d6525b drm_atomic_state_default_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5b711f7a drm_crtc_commit_wait -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5b81cd87 drm_object_property_set_value -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5bcd5781 drm_client_modeset_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c13e0ce drm_framebuffer_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c729f7c drm_mode_is_420_only -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c82a523 drm_hdcp_update_content_protection -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c9c1a3f drm_dev_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d278ef7 drm_gem_dmabuf_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5defaf03 drm_atomic_set_crtc_for_connector -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5e427871 drm_property_replace_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f5ddf68 drm_i2c_encoder_save +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5a4d8af8 drm_gem_create_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5cd4746e drm_gem_object_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5cef90e3 drm_connector_list_iter_next +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5dc8c117 drm_crtc_vblank_helper_get_vblank_timestamp_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5e0dfcc4 drm_property_create_signed_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f6f9745 drm_atomic_get_bridge_state EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f7985a5 drm_mm_scan_remove_block -EXPORT_SYMBOL drivers/gpu/drm/drm 0x608aa950 drm_put_dev -EXPORT_SYMBOL drivers/gpu/drm/drm 0x611cc9ba drm_display_mode_from_cea_vic -EXPORT_SYMBOL drivers/gpu/drm/drm 0x62dd0360 drm_gtf_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x63ca0f9b drm_crtc_vblank_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x64367969 drm_set_preferred_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6480b9b4 drm_modeset_acquire_fini -EXPORT_SYMBOL drivers/gpu/drm/drm 0x64f6807e drm_compat_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6014a277 drm_modeset_lock_all_ctx +EXPORT_SYMBOL drivers/gpu/drm/drm 0x61b1dbcb drm_atomic_bridge_chain_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x62c92f4a drm_sysfs_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x63561fff drm_modeset_lock_single_interruptible +EXPORT_SYMBOL drivers/gpu/drm/drm 0x640fd010 drm_connector_set_vrr_capable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6471658f drm_of_find_possible_crtcs +EXPORT_SYMBOL drivers/gpu/drm/drm 0x64a1f941 drm_handle_vblank EXPORT_SYMBOL drivers/gpu/drm/drm 0x65702bd6 drm_default_rgb_quant_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x65a06976 drm_plane_create_blend_mode_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x65f0b8f8 drm_property_blob_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x65f30fe6 drm_mode_create_from_cmdline_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x66bae3dd drm_gem_create_mmap_offset_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0x67040cab drm_clflush_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0x67e6312f drm_property_blob_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x65dbc68c drm_mode_object_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0x65f2d44f drm_gem_fence_array_add_implicit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x660176b6 drm_mode_create_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x66644b91 drm_gem_dmabuf_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x66873620 drm_connector_list_iter_end +EXPORT_SYMBOL drivers/gpu/drm/drm 0x681d6d67 drm_property_create_bool EXPORT_SYMBOL drivers/gpu/drm/drm 0x6914a422 drm_edid_are_equal -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6a8a6fc9 drm_mode_config_reset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6aa6796a drm_send_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b2c0944 drm_mode_prune_invalid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6c6e7e37 drm_vblank_work_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6dcbaf4e drm_gem_free_mmap_offset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e1b5c8f drm_bridge_chain_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6a34d08f drm_crtc_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6aab8aec drm_atomic_bridge_chain_post_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b257c64 drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b81ca49 drm_syncobj_replace_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6c0347bf drm_plane_force_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6d4b0658 drm_add_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6dd1acc5 drm_clflush_pages EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e30ba8e drm_rect_rotate_inv -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e321274 drm_gem_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6eba13e7 drm_i2c_encoder_dpms EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ef2f78e drm_format_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ff75daf drm_master_internal_acquire -EXPORT_SYMBOL drivers/gpu/drm/drm 0x70c3589b drm_property_create_bitmask -EXPORT_SYMBOL drivers/gpu/drm/drm 0x70fad5a8 drm_dev_has_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x710f8877 drm_gem_dmabuf_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x72ca4a5c drm_gem_handle_delete -EXPORT_SYMBOL drivers/gpu/drm/drm 0x732d99b4 drm_gem_shmem_get_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0x74b9ff34 __drmm_crtc_alloc_with_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x755e22bc drm_gem_shmem_print_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7594e20d drm_atomic_set_fb_for_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7605cf46 drm_mode_create_hdmi_colorspace_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x764222cd drm_plane_get_damage_clips -EXPORT_SYMBOL drivers/gpu/drm/drm 0x76a2ce18 drm_dev_printk -EXPORT_SYMBOL drivers/gpu/drm/drm 0x76d1572d drm_gem_vm_close -EXPORT_SYMBOL drivers/gpu/drm/drm 0x779746f2 drm_connector_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b1ed406 drm_syncobj_find_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7003b9b8 drm_client_modeset_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x703db344 drm_mode_is_420_also +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7073d5a1 drm_writeback_queue_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7189c8ce drm_gem_handle_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x731cbb72 drm_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7519815c drm_mode_create_suggested_offset_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x756ff866 devm_aperture_acquire_from_firmware +EXPORT_SYMBOL drivers/gpu/drm/drm 0x757860ff drm_atomic_private_obj_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x75b0fc42 drm_framebuffer_plane_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0x75ea2838 drm_property_create_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x75ef8a1a drm_connector_attach_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x77b3153f drm_gem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x77d49442 drm_gem_prime_import_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x79345e9b drm_panel_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7aceb0e2 drm_atomic_commit EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b2e2166 drm_vma_node_revoke -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e1b153f drm_vblank_work_cancel_sync -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7f0cbed8 drm_gem_shmem_purge -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fa270a0 drm_sysfs_connector_status_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fcca284 drm_connector_set_panel_orientation -EXPORT_SYMBOL drivers/gpu/drm/drm 0x801252f7 drm_connector_attach_colorspace_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x80e38353 drm_crtc_vblank_helper_get_vblank_timestamp +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7bd4cb77 drm_connector_attach_tv_margin_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7bf0a1d1 drm_property_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7f925a7d drm_mode_prune_invalid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fa5cad9 drm_mode_is_420_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0x80eccf71 drm_client_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8139a0f8 drm_plane_create_scaling_filter_property EXPORT_SYMBOL drivers/gpu/drm/drm 0x81992424 drm_edid_header_is_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x81f2b005 drm_wait_one_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x822073be drm_mode_find_dmt -EXPORT_SYMBOL drivers/gpu/drm/drm 0x823d5aa8 drm_file_get_master -EXPORT_SYMBOL drivers/gpu/drm/drm 0x82bc170e drm_mode_create_scaling_mode_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x833b5143 drm_gem_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x834ff0e4 drm_syncobj_add_point -EXPORT_SYMBOL drivers/gpu/drm/drm 0x840e8d0d drm_crtc_vblank_count_and_time +EXPORT_SYMBOL drivers/gpu/drm/drm 0x83371bac drm_connector_init_with_ddc EXPORT_SYMBOL drivers/gpu/drm/drm 0x842dd90c drm_flip_work_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x84caa5c3 drm_send_event_timestamp_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8475fc9f drm_crtc_create_scaling_filter_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x84987d9b drm_panel_of_backlight EXPORT_SYMBOL drivers/gpu/drm/drm 0x8563a554 drm_ht_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x85c829d9 drm_sysfs_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x86418e8e drm_crtc_send_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8703e940 drm_mode_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x85a4c517 drm_atomic_state_default_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x862b1feb drm_gem_shmem_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0x86849f1b drm_framebuffer_unregister_private EXPORT_SYMBOL drivers/gpu/drm/drm 0x871ab41a drm_rect_intersect -EXPORT_SYMBOL drivers/gpu/drm/drm 0x880a370b drm_crtc_vblank_on -EXPORT_SYMBOL drivers/gpu/drm/drm 0x89508c9a drm_is_current_master -EXPORT_SYMBOL drivers/gpu/drm/drm 0x89798843 drm_client_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8a5ced13 drm_mode_create_dp_colorspace_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8b8a3aa7 of_drm_find_panel -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c3af675 drm_object_attach_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c54ea62 drm_connector_attach_content_type_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d161925 drm_add_modes_noedid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8e1eac46 drm_syncobj_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8f1953a9 drm_crtc_set_max_vblank_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8f2ccf8d drm_gem_objects_lookup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8f6b11c7 drm_modeset_lock_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8f9cb9f8 drm_crtc_from_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8fc19327 drm_property_create_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x90d95651 drm_syncobj_find -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9176657b drm_hdmi_avi_infoframe_bars -EXPORT_SYMBOL drivers/gpu/drm/drm 0x91af6f5b drm_bridge_chain_post_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x91e75cdb __drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8768b85b drm_atomic_get_crtc_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x87b52bcc __drmm_add_action_or_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8978507f drm_property_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x89adea56 drm_dev_set_unique +EXPORT_SYMBOL drivers/gpu/drm/drm 0x89db9a5f drm_aperture_remove_conflicting_framebuffers +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8a147918 drm_mode_put_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8a47b979 drm_display_mode_from_cea_vic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8b8a2886 drm_state_dump +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8bf929d8 drm_atomic_get_new_connector_for_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8cd1ce84 drm_atomic_get_old_connector_for_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8cf23a8a drm_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d30abc4 drm_gem_unmap_dma_buf +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d6cd14e drm_atomic_bridge_chain_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8f1816fd drm_client_dev_hotplug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x91a1fa9e drm_property_blob_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x91b73f41 drm_client_framebuffer_flush EXPORT_SYMBOL drivers/gpu/drm/drm 0x91fec1cc drm_rect_calc_vscale -EXPORT_SYMBOL drivers/gpu/drm/drm 0x927054ba drm_bridge_chain_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0x92310dfb drm_plane_create_rotation_property EXPORT_SYMBOL drivers/gpu/drm/drm 0x92ee8a9d drm_get_format_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0x934e3ee2 drm_connector_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9481b6e5 drm_aperture_remove_conflicting_framebuffers -EXPORT_SYMBOL drivers/gpu/drm/drm 0x950e7d3d drm_connector_list_iter_end +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9307f06f drm_hdmi_avi_infoframe_content_type +EXPORT_SYMBOL drivers/gpu/drm/drm 0x942989d2 drm_gem_create_mmap_offset_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x94ef070e drm_bridge_chain_post_disable EXPORT_SYMBOL drivers/gpu/drm/drm 0x95dbc76d drm_ht_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x97069b66 drm_client_dev_hotplug -EXPORT_SYMBOL drivers/gpu/drm/drm 0x971ad3a0 drm_mode_get_tile_group -EXPORT_SYMBOL drivers/gpu/drm/drm 0x98adb1c5 drm_property_create_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0x98fd6dc1 drm_invalid_op -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9915969e drm_atomic_get_new_private_obj_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x99587dc9 drm_gem_map_dma_buf -EXPORT_SYMBOL drivers/gpu/drm/drm 0x99871e0c drm_gem_vm_open -EXPORT_SYMBOL drivers/gpu/drm/drm 0x99ca0f79 drm_crtc_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x96e6abb0 drm_property_replace_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x97429f1e drm_master_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x97fd2735 drm_aperture_remove_conflicting_pci_framebuffers +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9875a07a drm_crtc_arm_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x987cddf4 drm_gem_prime_fd_to_handle EXPORT_SYMBOL drivers/gpu/drm/drm 0x99fd20aa drm_rect_clip_scaled -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9a041c4e drm_atomic_nonblocking_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9a6cee67 drm_cvt_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ace57e2 drm_add_edid_modes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b1cccef drm_framebuffer_unregister_private +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9a468e72 drm_of_component_probe +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9af12db7 drm_panel_unprepare EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b285573 drm_match_cea_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b33fdee drm_mode_validate_ycbcr420 +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b6e3323 drm_dev_unplug EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b8a53f5 drm_ht_just_insert_please +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b90fd19 drm_client_buffer_vmap EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b95c885 drm_mode_match -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9baa2154 drm_master_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9bfad523 drm_crtc_init_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9bcf9530 drm_property_replace_global_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9be564d5 drm_client_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c0ebce4 drm_gem_shmem_pin +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c71f9c3 drm_gem_prime_import +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ccba0b4 drm_plane_create_alpha_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ccf8319 drm_crtc_init_with_planes EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ce050be drm_mode_copy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9d4eae30 drm_crtc_accurate_vblank_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9d7f12ce drm_atomic_bridge_chain_post_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9e3d71c2 drm_atomic_get_old_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9e594224 drm_gem_free_mmap_offset EXPORT_SYMBOL drivers/gpu/drm/drm 0x9e7e8009 drm_edid_to_sad -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9f6ec035 drm_release_noglobal -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9fd70dfc drm_gem_dma_resv_wait +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9edeef52 drm_gem_dmabuf_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9f5d8eb7 drm_modeset_unlock +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9f6cbe98 drm_atomic_normalize_zpos EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ffcdfdb drm_detect_monitor_audio +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa05cb722 drm_gem_shmem_get_pages EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0713087 drm_ht_find_item -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0b05435 drm_modeset_lock_all -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0d0c35f drm_crtc_arm_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa20f66a7 drm_modeset_lock_all_ctx -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa340a793 drm_get_edid_switcheroo -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa37bc53d drm_mode_parse_command_line_for_connector -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa445f2a0 drm_crtc_wait_one_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4f230fe drm_read -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa54bed90 drm_vblank_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa8e6a506 drm_connector_attach_vrr_capable_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa9511f2a drm_bridge_chain_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa9a84feb drm_writeback_connector_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaa8fe9ec drm_mode_object_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaba0ac89 drm_gem_prime_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaca6f1e9 drm_gem_map_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0c51f7d drm_crtc_check_viewport +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa2d28f1f drm_mode_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa37068d7 drm_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa3ef94b8 drm_syncobj_add_point +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4c09885 drm_modeset_acquire_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4fd876f drm_of_crtc_port_mask +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa66c80d4 drm_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa7ba0bdd drm_connector_attach_vrr_capable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa7c9e76c drm_gem_prime_handle_to_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa9f12755 drm_connector_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xab908465 drm_hdmi_avi_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xab939077 drm_atomic_set_mode_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xab949086 drm_client_framebuffer_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaccaa1a4 drm_mode_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xad225f4b drm_property_lookup_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xad24f674 drm_gem_shmem_unpin EXPORT_SYMBOL drivers/gpu/drm/drm 0xad4e902b drm_color_ctm_s31_32_to_qm_n -EXPORT_SYMBOL drivers/gpu/drm/drm 0xad78cf1c drm_mode_is_420_also -EXPORT_SYMBOL drivers/gpu/drm/drm 0xad9f18cf drm_client_modeset_commit_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xad5bbfa9 drm_atomic_set_fence_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0xada08e85 drm_gem_dmabuf_mmap EXPORT_SYMBOL drivers/gpu/drm/drm 0xae277372 __drm_crtc_commit_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0xae35af51 drm_gem_prime_handle_to_fd -EXPORT_SYMBOL drivers/gpu/drm/drm 0xae77a69d drm_mode_create_tv_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0xae944a8b drm_client_buffer_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb025c110 drm_writeback_cleanup_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaea9a608 drm_read EXPORT_SYMBOL drivers/gpu/drm/drm 0xb053adda drm_rect_rotate EXPORT_SYMBOL drivers/gpu/drm/drm 0xb0b05ff5 drm_clflush_sg -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb0bbcaf3 drm_calc_timestamping_constants -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb0d7cc86 drm_prime_gem_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb0ea34cc drm_hdmi_avi_infoframe_quant_range EXPORT_SYMBOL drivers/gpu/drm/drm 0xb11ac7a7 __drm_err -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb13cd043 drm_panel_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb174b97f drm_atomic_set_crtc_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb11c94e8 drm_crtc_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb166f81f drm_send_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb1f77bc8 of_drm_get_panel_orientation EXPORT_SYMBOL drivers/gpu/drm/drm 0xb22dfd68 drm_format_info_min_pitch -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb2816193 drm_dev_put EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4032484 drm_mm_insert_node_in_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb40edcbc drm_i2c_encoder_restore -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4bfd658 drm_connector_has_possible_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4df16e7 __drmm_add_action_or_reset -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb51d395e drm_gem_shmem_purge_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5112901 drm_framebuffer_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5e170ba drm_sysfs_connector_status_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5e69df3 drm_mode_duplicate EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6127243 drm_need_swiotlb -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb67a5d61 drm_hdmi_vendor_infoframe_from_display_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6c5395c drm_gem_dmabuf_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb7b5be14 drmm_mode_config_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb7e2a494 drm_mode_validate_driver -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb8e61e41 drm_connector_update_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb708bb8d drm_atomic_state_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb7649db3 drm_mode_create_tv_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb85ede2d drm_bridge_chain_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb8deaeb0 drm_mode_create_aspect_ratio_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9693aa8 drm_panel_add EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9cad492 __drm_atomic_state_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0xba03924c drm_writeback_prepare_job -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbb894c7b drm_gem_unmap_dma_buf -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbbc4b4d7 drm_gem_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbc82ff26 drm_atomic_print_new_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbe842e5c drm_of_find_possible_crtcs -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbf41fbeb drm_gem_map_detach -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbf824428 drm_client_modeset_check -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc0568485 drm_vblank_work_schedule -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc0de7216 drm_gem_dmabuf_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc1eea8f0 drm_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc26dcaa6 drm_gem_dmabuf_export -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc2dade3c drm_mode_create_suggested_offset_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc3190eba drm_i2c_encoder_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc392f9eb drm_modeset_backoff -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc435a9fd drm_dev_dbg -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc45cb323 drm_client_buffer_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc4e2d2a5 drm_crtc_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc52201d1 drm_send_event_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc56efd9d drm_hdmi_avi_infoframe_content_type -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc5992d16 drm_property_add_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0xba17af9b drm_plane_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbad53d89 drm_gtf_mode_complex +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbb343095 drm_i2c_encoder_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbb598e84 drm_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbcd340dc drm_mode_crtc_set_gamma_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbcde7dce drm_gem_cma_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbd0d9007 drm_hdmi_infoframe_set_hdr_metadata +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbe72803c drm_ioctl_permit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbf5539d1 drm_syncobj_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbfae4726 drm_atomic_check_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbfb95625 drm_property_blob_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc143b2df drm_gem_objects_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc25d695a drm_warn_on_modeset_not_all_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc3aa516c drm_i2c_encoder_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc464f539 drm_framebuffer_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc4b12f13 drm_connector_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc5416d5f drm_probe_ddc EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6323239 drm_flip_work_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6d693b6 drm_framebuffer_plane_width -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc722dca0 drm_mode_put_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6db2018 drm_modeset_drop_locks EXPORT_SYMBOL drivers/gpu/drm/drm 0xc7910e38 drm_vma_offset_lookup_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc7c5f5b8 __drmm_encoder_alloc EXPORT_SYMBOL drivers/gpu/drm/drm 0xc7d04fc5 drm_vma_node_allow -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc7e87d0c drm_property_create_object -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc7f9d3a9 drm_debugfs_remove_files -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc821672b drm_gem_lock_reservations -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc92f0039 drm_dev_enter -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc9421a3f drm_plane_enable_fb_damage_clips -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc94cc128 drmm_kfree +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc8705cd8 drm_send_event_timestamp_locked EXPORT_SYMBOL drivers/gpu/drm/drm 0xca190085 drm_format_info_block_height +EXPORT_SYMBOL drivers/gpu/drm/drm 0xca4ac725 drm_client_framebuffer_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0xca779ffe drm_gtf_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcab165d1 drm_debugfs_remove_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcae51d15 drm_bridge_chain_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcaf130d0 drm_master_internal_acquire EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb2340b8 drm_rect_debug_print +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb3ff56f drm_i2c_encoder_destroy EXPORT_SYMBOL drivers/gpu/drm/drm 0xccc59759 drm_format_info_block_width -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcdda20d0 drm_connector_set_vrr_capable_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcdf78426 drm_connector_attach_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd254e3e drm_gem_handle_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcdbe9898 drm_crtc_vblank_restore +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcdd3c5b8 drm_hdmi_vendor_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xce25db7f drm_dev_has_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xce9cb83f drm_gem_dma_resv_wait EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf11a549 drm_flip_work_allocate_task -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd0368c40 drm_panel_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcfe07082 drm_set_preferred_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd01905c9 drm_ioctl_kernel EXPORT_SYMBOL drivers/gpu/drm/drm 0xd05fda43 drm_prime_get_contiguous_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd08ae224 drm_plane_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd09026c6 drm_plane_from_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd09ce60b drm_av_sync_delay +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd08cfcc9 drm_dev_get EXPORT_SYMBOL drivers/gpu/drm/drm 0xd13f9985 drm_edid_block_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2a0f22a drm_hdmi_infoframe_set_hdr_metadata -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2d460c2 of_drm_get_panel_orientation -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2e78fc5 drm_crtc_vblank_waitqueue -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd569ee45 drm_panel_get_modes -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd579491e drm_modeset_lock +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd42b85c8 drm_atomic_get_old_bridge_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd46f7c10 drm_modeset_lock_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd4abc04d drm_mode_config_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd4b68c0e drm_property_add_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd4ec828a drm_plane_cleanup EXPORT_SYMBOL drivers/gpu/drm/drm 0xd60baf5a drm_edid_get_monitor_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd60e1410 drm_client_modeset_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd66f2605 drm_gem_cma_prime_import_sg_table_vmap EXPORT_SYMBOL drivers/gpu/drm/drm 0xd680a377 drm_gem_object_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7124800 drm_plane_create_zpos_immutable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd755e12d drm_prime_sg_to_page_array +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd76ac535 drm_bridge_chain_mode_fixup EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7a9cf42 drm_mode_validate_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd832f678 drm_master_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd9d1c747 drm_mode_is_420 -EXPORT_SYMBOL drivers/gpu/drm/drm 0xda46107a drm_atomic_state_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdafb6f65 drm_atomic_set_mode_for_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbaf9e10 drm_gem_prime_export -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdda3b23f drm_plane_force_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdecfc9ce drm_connector_attach_tv_margin_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdefc0fd5 drm_writeback_signal_completion +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7ef2e7c drm_gem_dmabuf_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd8851dfc drm_connector_update_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd8eef6f5 drm_panel_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd91dacf3 drm_universal_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd96be74a drm_framebuffer_plane_height +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd9dfe30e drm_mode_object_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xda18a86b drm_dev_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb471d08 drm_plane_get_damage_clips_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdba3a79a drm_atomic_set_fb_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdcef1ec2 drm_vblank_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdcef59c7 drm_connector_set_link_status_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf2c7625 drm_client_modeset_check EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf3f760d drm_mm_scan_color_evict -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf43d013 drm_plane_create_color_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf4f4118 drm_mode_set_config_internal EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf666902 drm_rotation_simplify -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdfc61f42 drm_bridge_chain_mode_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe05355a7 drm_gem_shmem_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe05a5290 drm_syncobj_get_fd -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe1966467 drm_hdmi_avi_infoframe_quant_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe19ee6cd drm_event_reserve_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe1e7eb1e __drmm_encoder_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe24272ff drm_gem_shmem_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf7a3687 drm_object_property_get_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdfa212ad drm_gem_shmem_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdfb4f928 drm_dev_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe0fb93e7 drm_crtc_vblank_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe1bdd92a drm_master_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe23fe446 drm_hdmi_avi_infoframe_bars +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe27a3a68 drm_crtc_vblank_helper_get_vblank_timestamp +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe2b4363b drm_plane_enable_fb_damage_clips EXPORT_SYMBOL drivers/gpu/drm/drm 0xe317082a __drm_printfn_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe3d79d2e drm_crtc_vblank_reset -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe3ee255e drm_writeback_queue_job -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe6305aeb drm_atomic_add_encoder_bridges -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe6ae1f6f drm_bridge_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7a65a82 drm_atomic_add_affected_connectors -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7d15fde drm_mode_create_tile_group -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7d707d1 drm_plane_create_scaling_filter_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe46b4f81 drm_mode_plane_set_obj_prop +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe516bede drm_property_create_object +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe57b9d2d drm_gem_shmem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe79e5195 drm_gem_map_detach +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7acdd13 drm_property_create_range EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8362900 drm_edid_duplicate 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 0xe8ea2a81 drm_connector_list_iter_begin -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe91b9545 drm_dev_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe93204a5 drm_modeset_drop_locks +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe9040d1e drm_writeback_cleanup_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe9deb59d drm_connector_init EXPORT_SYMBOL drivers/gpu/drm/drm 0xea00fe81 __drm_printfn_coredump -EXPORT_SYMBOL drivers/gpu/drm/drm 0xea0c9c71 drm_i2c_encoder_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm 0xea61ed24 drm_print_regset32 -EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb41606a drm_warn_on_modeset_not_all_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb4f9c80 __drmm_universal_plane_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xea7e6d56 drm_mode_get_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeabb8510 drm_gem_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeaf807d8 drm_atomic_bridge_chain_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb83d460 drm_framebuffer_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xebac0329 drm_crtc_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xebde7e98 drm_client_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0xebeb4638 drm_crtc_vblank_off EXPORT_SYMBOL drivers/gpu/drm/drm 0xec12af74 __drm_dbg -EXPORT_SYMBOL drivers/gpu/drm/drm 0xecbec1f0 drm_connector_atomic_hdr_metadata_equal -EXPORT_SYMBOL drivers/gpu/drm/drm 0xed9e287d drm_gtf_mode_complex -EXPORT_SYMBOL drivers/gpu/drm/drm 0xeda494ea drm_debugfs_create_files -EXPORT_SYMBOL drivers/gpu/drm/drm 0xedb155b4 drm_connector_attach_content_protection_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xeeb7c680 drm_writeback_get_out_fence -EXPORT_SYMBOL drivers/gpu/drm/drm 0xeed6266a drm_gem_private_object_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xef849cd5 drm_get_edid -EXPORT_SYMBOL drivers/gpu/drm/drm 0xef8523ea drm_master_internal_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0xefa5e1d1 drm_atomic_set_mode_prop_for_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf00062b7 drm_open -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf01160d1 drm_gem_create_mmap_offset -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf03c64c6 drm_gem_prime_fd_to_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0xecc3960a drm_is_current_master +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeda06cb1 drm_mode_create_hdmi_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xee1481d7 drm_mode_object_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf00776c9 drm_crtc_vblank_get 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 0xf17570c0 drm_gem_cma_print_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf192645a drm_atomic_get_bridge_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf178ed6e drm_modeset_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf190ea11 drm_connector_attach_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf19330df drm_connector_list_update EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1b5340a drm_mode_vrefresh -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf21b7439 drm_bridge_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf2e1cbcb drm_atomic_state_default_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1d4ee84 drm_atomic_nonblocking_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf31a941c drm_dev_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf3920f3e drm_gem_mmap_obj +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf3d46d2e drm_mode_create_dvi_i_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf3f7597f drm_vblank_work_cancel_sync EXPORT_SYMBOL drivers/gpu/drm/drm 0xf406e46a drm_get_connector_type_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf431efbe drm_encoder_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf481136f drm_mode_object_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf52a39e6 drm_panel_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf685f658 drm_gem_handle_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf6ecc245 drm_atomic_get_connector_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf6fbbe04 drm_ioctl_kernel -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf71fd239 drm_atomic_private_obj_fini -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf786887b drm_mode_probed_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf475a02f drm_atomic_set_mode_prop_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf49a9317 drmm_mode_config_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf52dcbb8 drm_plane_create_zpos_immutable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf5436b01 of_drm_find_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf59f382a drm_property_create_bitmask +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf5b9a56c drm_syncobj_get_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf60bfad2 drm_client_modeset_commit_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf6ee61b1 drm_compat_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf70405d8 drm_event_cancel_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf776b064 drm_connector_attach_dp_subconnector_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf787d103 drm_gem_dmabuf_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf793ff1f drm_atomic_add_affected_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf7d2409a drm_connector_set_path_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf7dd0525 drm_mode_config_cleanup EXPORT_SYMBOL drivers/gpu/drm/drm 0xf824c7db __drm_printfn_debug -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf9d3d763 drm_mode_crtc_set_gamma_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfac7c2a3 drm_gem_shmem_madvise -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb6d1c07 drm_framebuffer_lookup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb846902 drm_mode_create_content_type_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfbaf1e97 drm_atomic_get_old_bridge_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfccae962 drm_i2c_encoder_mode_set -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd6e46c1 drm_plane_create_rotation_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd79b007 drm_handle_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd8ef33d drm_atomic_bridge_chain_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfdbdb2c1 drm_bridge_chain_pre_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfe07b094 drm_property_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfe7c19ca drm_gem_shmem_pin -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfe9ac060 drm_connector_attach_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf93a0a96 drm_atomic_get_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf9739274 drm_mode_create_tv_margin_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf9832cec drm_crtc_accurate_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa1e4b57 drm_gem_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfabe7222 drm_gem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfaded9cb drm_dev_dbg +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb119f1c drmm_kmalloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb2a3979 drm_get_edid_switcheroo +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc5709d2 drm_crtc_enable_color_mgmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfca87f2c drm_any_plane_has_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfcba9d4e drm_dev_enter +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd1dd8dc drm_connector_set_panel_orientation_with_quirk +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfdc4af18 drm_writeback_signal_completion EXPORT_SYMBOL drivers/gpu/drm/drm 0xfeb953b1 __drm_printfn_seq_file EXPORT_SYMBOL drivers/gpu/drm/drm 0xfecc8840 drm_edid_to_speaker_allocation -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfed70ac7 drm_connector_list_update -EXPORT_SYMBOL drivers/gpu/drm/drm 0xff2c5371 drm_i2c_encoder_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xff3cb72b drm_gem_object_lookup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xff581f97 drm_mode_create_tv_margin_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfff8b0d4 drm_connector_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0xff941ed6 drm_client_modeset_probe +EXPORT_SYMBOL drivers/gpu/drm/drm 0xffb93999 drm_prime_pages_to_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfff9263e drm_syncobj_create EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x01c4bba9 drm_dp_lttpr_max_link_rate -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x02ad0508 drm_dp_get_phy_test_pattern -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x034279c8 __drm_gem_destroy_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0563d1d9 drm_fb_helper_cfb_fillrect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x05c02e63 drm_dp_pcon_frl_configure_1 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x05c44657 drm_fb_helper_sys_fillrect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x06833001 __drm_gem_duplicate_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x01f6847a drm_dp_mst_put_port_malloc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x02e6c4cf drm_fb_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x032f5d8b drm_atomic_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x039a3a48 __drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x039e7a5a drm_dp_read_lttpr_common_caps +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x03ea6753 drm_atomic_helper_async_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x057ca00c drm_dp_dual_mode_get_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x05eef361 drm_atomic_helper_check_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x06721b2d drm_atomic_helper_connector_duplicate_state EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x06c49551 drm_dp_dsc_sink_line_buf_depth +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x07251d7c drm_kms_helper_poll_disable EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x07a00858 drm_fb_memcpy_dstclip -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x09d0a5b5 drm_dp_pcon_frl_enable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0bab9c36 drm_atomic_helper_commit_tail -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0d627751 drm_mode_config_helper_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0dc7a4c3 drm_helper_mode_fill_fb_struct -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0f4e0b5f drm_primary_helper_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0fe04c12 drm_panel_bridge_add_typed -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1031acc1 drm_helper_disable_unused_functions -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x10dfa040 drm_dp_dual_mode_detect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x115246a0 drm_atomic_helper_commit_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x120ca10a drm_fb_helper_restore_fbdev_mode_unlocked -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x12557989 drm_fb_helper_sys_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x08770908 __drm_gem_duplicate_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x08b48564 drm_atomic_helper_commit_cleanup_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x09016a0e drm_dp_pcon_hdmi_link_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x099915f9 drm_dp_update_payload_part2 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0bf0db6a drm_dp_pcon_is_frl_ready +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0cfdf962 drm_dp_link_train_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0dcc5718 drm_dp_remote_aux_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0e3c492a drm_atomic_helper_check_plane_damage +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0ee2f724 drm_panel_bridge_add_typed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0f0832c8 drm_dp_pcon_hdmi_link_active +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0f341056 drm_dp_cec_register_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x10a26503 drm_dp_cec_set_edid +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x13601c29 drm_atomic_helper_commit_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x143a1141 __drm_atomic_helper_connector_state_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x14571fa1 drm_dp_mst_topology_mgr_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x15169409 drm_fb_helper_sys_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x15321ed1 devm_drm_panel_bridge_add_typed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x156db781 devm_drm_panel_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1577b118 drm_self_refresh_helper_cleanup EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1605d0ed drm_dp_lttpr_max_lane_count EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1709ddcf drm_dp_lttpr_link_train_clock_recovery_delay -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x187be137 __drm_atomic_helper_connector_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1966ef89 drm_fb_helper_lastclose -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1a54a9f6 drm_panel_bridge_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x173e4774 drm_fb_helper_deferred_io +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1871962f drm_atomic_helper_disable_plane EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1a5bf3ca drm_dsc_dp_rc_buffer_size -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1afe2042 drm_gem_simple_kms_destroy_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1af5a192 drm_atomic_helper_suspend EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1b0a1fdc drm_dp_lttpr_voltage_swing_level_3_supported -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1b52884f drm_atomic_helper_plane_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1bdea472 drm_dp_dual_mode_max_tmds_clock -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1e10fc17 drm_fb_helper_ioctl -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2105e3a9 drm_dp_cec_register_connector -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x21ab6f70 drm_fb_helper_set_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x21fa1d2d drm_scdc_get_scrambling_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x22a087f9 __drm_atomic_helper_crtc_state_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2337f847 drm_atomic_helper_commit_duplicated_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2350d9bc drm_dp_atomic_find_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x23741778 drm_atomic_helper_check_modeset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x243cbbda drm_fb_helper_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x246c3f46 drm_simple_display_pipe_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2532d162 drm_dp_read_mst_cap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x253d789a drm_dp_aux_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1b91ad1b drm_dp_stop_crc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1cbd0ccf drm_fb_helper_debug_enter +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1cddc643 drm_gem_reset_shadow_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1d909090 drm_kms_helper_poll_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1dcb2b4e drm_dp_mst_dump_topology +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1dd68d3c drm_panel_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1ef824f5 __drm_atomic_helper_plane_state_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1f7ecfe7 drm_fb_helper_initial_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x207c90d9 drm_atomic_helper_prepare_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2142cf5e drm_atomic_helper_commit_duplicated_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x21ac79b5 drm_fbdev_generic_setup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x21db4a7f drm_edp_backlight_set_level +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2258b49d drm_kms_helper_poll_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2376f283 __drm_gem_reset_shadow_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x24accb24 drm_dp_dual_mode_max_tmds_clock +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x26752ca1 drm_dp_read_desc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x26780b3c drm_dp_pcon_frl_configure_1 EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x26815dbc drm_dp_link_rate_to_bw_code -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x27573af3 drm_dp_read_lttpr_common_caps -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x286dbe08 drm_fb_helper_setcmap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x28790d13 drm_gem_fb_begin_cpu_access -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x29826dde drm_dp_downstream_id -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2a4fa121 drm_dp_mst_topology_mgr_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2b66aa42 drm_atomic_helper_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2c745533 drm_dp_dpcd_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2c8f918d drm_helper_move_panel_connectors_to_head -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2cfb630f drm_atomic_helper_check -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2d2ddb1b __drm_atomic_helper_crtc_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2de38bc3 drm_atomic_helper_damage_merged -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2f670312 drm_helper_encoder_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x26d39792 drm_dp_atomic_release_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x281a3da8 drm_dp_dual_mode_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x288eb8aa drm_atomic_helper_swap_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x290844fc drm_fb_helper_fill_info +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2a7f3c6d drm_fb_helper_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2b644ea0 drm_atomic_helper_check_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2c918267 __drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2cc1aa60 drm_dp_mst_atomic_enable_dsc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2df5f546 drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2f17daea drm_dp_atomic_find_vcpi_slots EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2fa94ef2 drm_dp_downstream_444_to_420_conversion -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3027542b drm_dp_mst_dump_topology -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x30863a48 drm_gem_simple_display_pipe_prepare_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x30f9e625 drm_dp_send_query_stream_enc_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x30e53c2c drm_dp_cec_unregister_connector EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3117b63b drm_dp_downstream_max_bpc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x33105dab drm_atomic_helper_dirtyfb -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x358d4d49 drm_atomic_helper_commit_hw_done -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x38d6469f __drm_atomic_helper_bridge_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x31514670 drm_atomic_helper_commit_tail +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x317471fb drm_dp_dual_mode_set_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x33a2f57d drm_simple_display_pipe_attach_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x34bd59c0 drm_helper_resume_force_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x35275b16 drm_gem_simple_kms_destroy_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x355d6075 __drm_atomic_helper_bridge_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3574f4f6 drm_self_refresh_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x35bf0a0e drm_atomic_helper_commit_modeset_enables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3629981c drm_fb_helper_set_suspend_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x36782d2a drm_atomic_get_mst_topology_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3800ca1e drm_dp_dual_mode_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3894a753 drm_scdc_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3896611b drm_helper_mode_fill_fb_struct EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x392a838b drm_dp_downstream_max_dotclock -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x39c38a08 drm_gem_fb_create_handle +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3a72e53a drm_fb_helper_sys_fillrect EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3a8063f3 drm_dp_dsc_sink_supported_input_bpcs -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3bcaef78 drm_gem_fb_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3d01bd24 drm_atomic_helper_commit_tail_rpm -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3f43ca74 drm_dp_read_dpcd_caps -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4084104f drm_fb_helper_deferred_io -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x40c67818 drm_atomic_helper_check_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4153a30f drm_atomic_helper_plane_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x41d27cf8 drm_atomic_helper_damage_iter_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x430edfa9 __drm_atomic_helper_plane_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x43b1631d drm_fbdev_generic_setup -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x44f74e6f drm_dp_pcon_enc_is_dsc_1_2 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4508c864 drm_dp_mst_get_port_malloc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x451ad18d drm_dp_set_phy_test_pattern -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x451afd46 drm_dp_dpcd_read_phy_link_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x459f7228 drm_panel_bridge_remove -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x463b71ce drm_self_refresh_helper_update_avg_times +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3b0d2449 drm_fb_helper_sys_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3b327554 drm_atomic_helper_async_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3b331cd3 drm_gem_fb_end_cpu_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3c4d21f4 drm_atomic_helper_shutdown +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3cc31c9e drm_dp_set_phy_test_pattern +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3d513a0e drm_gem_simple_kms_duplicate_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3e5847d1 drm_dp_aux_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3e924709 drm_dp_lttpr_link_train_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3f968289 drm_fb_helper_check_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4066b3e4 __drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x411feeba drm_fb_helper_set_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x42933526 drm_fb_helper_unregister_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x42b96485 drm_dp_mst_dsc_aux_for_port +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4487b53d drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4559959c drm_crtc_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x45e6c1fa drm_fb_helper_debug_leave +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4603c416 drm_dp_pcon_dsc_bpp_incr +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x465f0a8c drm_gem_fb_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4667aba6 drm_atomic_helper_update_plane EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4668c9dc drm_dp_downstream_min_tmds_clock -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4673c0ce drm_dp_update_payload_part1 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x46b95d3a drm_fb_helper_set_par -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x471efc66 drm_atomic_helper_setup_commit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4a718426 __drm_atomic_helper_bridge_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4ab6d2f8 drm_atomic_helper_commit_modeset_enables -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4bb6d40e drm_atomic_helper_connector_tv_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x47cb7b0e __drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4b01c953 drm_fb_helper_output_poll_changed EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4bb89424 drm_dp_downstream_max_tmds_clock -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4cb9edbd drm_self_refresh_helper_alter_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4c921f82 drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4ce2600d drm_atomic_helper_disable_planes_on_crtc EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4e41ad5c drm_fb_xrgb8888_to_rgb565 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4e5876b5 drm_dp_mst_get_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4f2dec5a drm_dp_find_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4f8f61cd drm_self_refresh_helper_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4fc0ce00 drm_dp_mst_hpd_irq -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x51834a9c drm_dp_mst_reset_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5227f57e drm_atomic_helper_plane_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x52d150ad __drmm_simple_encoder_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4e6d7ca0 drm_dp_pcon_pps_override_buf +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4fab2372 drm_dp_pcon_frl_configure_2 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4fc2fe47 drm_fb_helper_cfb_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x503bef87 drm_atomic_helper_connector_tv_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x52298123 drm_simple_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x52cb3c89 drm_dp_dpcd_write EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x537b8893 drm_fb_blit_rect_dstclip EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5407ae9e drm_dp_get_dual_mode_type_name -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x56f51b86 drm_gem_simple_kms_reset_shadow_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x577107da drm_atomic_helper_shutdown -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x57fd610a drm_helper_hpd_irq_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x555f114d drm_dp_mst_connector_late_register +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x55e83f43 drm_gem_simple_display_pipe_prepare_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x56f70e98 drm_panel_bridge_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x56fd17a3 drm_atomic_helper_bridge_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5707439c drm_lspcon_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x57a92a5b drm_dp_mst_topology_mgr_set_mst +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x57fdc85b drm_gem_cleanup_shadow_fb EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x582f248e drm_dp_get_adjust_request_pre_emphasis EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x58d8fcaa drm_dsc_pps_payload_pack -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x59082552 drm_atomic_helper_bridge_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x590e24bb drm_lspcon_set_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x59787888 drm_dp_vsc_sdp_log -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x59c3b878 drm_atomic_get_mst_topology_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x59f27ed7 drm_dp_pcon_enc_is_dsc_1_2 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5a3b5440 drm_atomic_helper_update_legacy_modeset_state EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5a4734d1 drm_kms_helper_is_poll_worker -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5a6bca5e drm_dp_mst_allocate_vcpi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5a937f85 drm_panel_dp_aux_backlight -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5a93b8bf drm_dp_mst_atomic_enable_dsc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5ac9544c drm_atomic_helper_wait_for_vblanks -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5b06f4ae drm_dp_pcon_dsc_bpp_incr -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5ca878f0 drm_atomic_helper_commit_cleanup_done -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5d9d0245 drm_dp_pcon_pps_default -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5e3e8040 drm_dp_read_sink_count_cap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5efb190a drm_gem_fb_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x61274264 drm_dp_get_vc_payload_bw -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x62123160 drm_fb_helper_check_var -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x62475c48 drm_dp_pcon_convert_rgb_to_ycbcr -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x626aed72 drm_dp_mst_topology_mgr_resume -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x62b31c67 devm_drm_panel_bridge_add_typed -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x63729649 drm_fb_helper_alloc_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6443c5f9 drm_crtc_helper_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5c5efb79 drm_atomic_helper_bridge_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5ca32a22 drm_crtc_helper_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5e5aa422 drm_fb_helper_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5e82b7c1 drm_dp_mst_hpd_irq +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5f0ef3a9 drm_kms_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5f25bd80 drm_dp_mst_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x612b5b52 drm_atomic_helper_check EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x648d953b drm_dsc_dp_pps_header_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x64b181b1 drm_scdc_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x64d23c6b drm_atomic_helper_bridge_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x64dbbc9e __drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x657dbbf6 drm_helper_encoder_in_use EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6615069e drm_dp_dsc_sink_max_slice_count -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x66d33382 drm_crtc_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6776ba98 drm_dp_read_downstream_info -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x68cd8619 drm_scdc_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x697d30f9 drm_atomic_helper_resume -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6a5bd0bd drm_atomic_helper_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x67491153 drm_atomic_helper_wait_for_vblanks +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x68fefe67 drm_dp_link_train_clock_recovery_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x69c0f942 drm_dp_mst_allocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6a81496f drm_gem_prepare_shadow_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6add014f __drmm_simple_encoder_alloc EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6b5c2b06 drm_atomic_helper_damage_iter_next -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6baf5ccc drm_dp_mst_topology_mgr_set_mst -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6bf654a3 drm_fb_helper_debug_enter -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6d0dd817 drm_atomic_helper_swap_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6d9a3ddd drm_lspcon_get_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6e4038c1 drm_atomic_helper_crtc_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6ef3e9d0 drm_dp_set_subconnector_property -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x70358b48 drm_dp_pcon_hdmi_link_active -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x70374102 drm_fb_helper_blank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6e397bbf drm_dp_pcon_hdmi_frl_link_error_count +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6e40f316 drm_dp_set_subconnector_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6f3c4aa1 drm_mode_config_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6febbaac drm_dp_send_power_updown_phy EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7053fa72 drm_dp_get_pcon_max_frl_bw -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x708d682c __drm_gem_reset_shadow_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x709058ad drm_dp_dual_mode_set_tmds_output -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x70a32aca drm_atomic_helper_bridge_propagate_bus_fmt -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x70fcef48 drm_atomic_helper_async_check -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x71da0ce2 drm_dp_update_payload_part2 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x70eb3dfc drm_dp_read_sink_count +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x71ca657a drm_panel_dp_aux_backlight EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x73011db0 drm_dp_bw_code_to_link_rate -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x735fcee7 drm_atomic_helper_async_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x74ca7f1d drm_dp_mst_add_affected_dsc_crtcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x753c9174 drm_dp_read_dpcd_caps +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x75806168 drm_lspcon_get_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x759ed9c4 drm_atomic_helper_check_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x75ee13e2 drm_atomic_helper_page_flip EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x76ff6644 drm_dp_lttpr_pre_emphasis_level_3_supported -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x774ac394 drm_gem_prepare_shadow_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x776b2ab7 drm_gem_cleanup_shadow_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x77862272 __drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x77d5fe02 drm_dp_vsc_sdp_log +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x78430215 drm_helper_hpd_irq_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x79dcd991 drm_atomic_helper_crtc_reset EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7ae669d0 drm_fb_xrgb8888_to_gray8 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7b2948ad drm_gem_fb_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7c332af9 drm_dp_lttpr_link_train_channel_eq_delay -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7e284178 __drm_atomic_helper_private_obj_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7f19a80b drm_crtc_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x80123f9d drm_gem_reset_shadow_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x80f64428 drm_gem_simple_kms_prepare_shadow_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x81000a45 drm_atomic_helper_disable_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x82c20695 drm_atomic_helper_wait_for_fences +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7bbe9113 drm_scdc_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7c596459 drm_dp_mst_get_port_malloc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7d45854c drm_atomic_helper_commit_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7e7bde8f drm_dp_update_payload_part1 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x819b6432 drm_helper_probe_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x836bf375 drm_atomic_helper_disable_all EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x838a8fa0 drm_fb_memcpy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x847a143f drm_kms_helper_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x84e8179f drm_dp_mst_get_edid -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x87c3e6b5 drm_fb_helper_fini -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x87f75b6c drm_dp_link_train_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x83ec9a5d drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x84ed0323 drm_helper_crtc_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x85380e38 drm_scdc_get_scrambling_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x85b8e42c drm_dp_pcon_frl_prepare EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x894b1f57 drm_dp_get_adjust_request_post_cursor -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x894f303e drm_atomic_helper_connector_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x89b75d96 drm_dp_downstream_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x89bf9a29 drm_dp_mst_connector_early_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x89afadca drm_fb_helper_fini EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x89d100ba drm_fb_xrgb8888_to_rgb888_dstclip -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8b272d46 drm_kms_helper_poll_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8bc9c40b drm_dp_read_sink_count -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8bcf3b7c drm_atomic_helper_disable_planes_on_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8c516019 drm_fb_helper_set_suspend_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x89d4eb08 drm_dp_mst_get_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8a1a1301 drm_fb_helper_blank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8a23f943 __drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8a55eb85 drm_dp_pcon_frl_enable EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8ca2d9e4 drm_dp_calc_pbn_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8cee86eb __drm_atomic_helper_crtc_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8cfb05c6 drm_atomic_helper_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8cf5d556 __drm_atomic_helper_bridge_reset EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8d701329 drm_dp_clock_recovery_ok -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8eaf3549 drm_atomic_helper_commit_planes_on_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x905fb00f drm_atomic_helper_cleanup_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9169698a __drm_atomic_helper_connector_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9488be7a drm_mode_config_helper_resume -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9575fcd6 drm_dp_pcon_is_frl_ready -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x968db2dd drm_atomic_helper_update_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x986aa4c8 drm_helper_resume_force_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x99293b61 drm_fb_helper_debug_leave -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9a266a9b drm_gem_fb_end_cpu_access -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9aa6f4e0 drm_atomic_helper_crtc_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9ba845eb drm_helper_crtc_in_use -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9c0b274b drm_dp_mst_put_port_malloc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9dbd2bd3 drm_dp_pcon_pps_override_buf -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9dc6357a drm_fb_helper_pan_display -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9f2a4938 drm_dp_downstream_debug +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8e9ddd85 drm_edp_backlight_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8f39caa0 drm_fb_helper_lastclose +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8f55a459 drm_scdc_set_high_tmds_clock_ratio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8fad6a61 drm_dp_send_query_stream_enc_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9041b4ea drm_dp_downstream_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x90d28a54 drm_atomic_helper_commit_tail_rpm +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x97524ca1 drm_primary_helper_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x98bfa6f1 drm_fb_helper_sys_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9ad6b8ca drm_atomic_helper_cleanup_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9b1cc1c6 drm_gem_fb_begin_cpu_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9b766de1 drm_atomic_helper_commit_hw_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9ebc6704 drm_kms_helper_poll_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9f81f46b drm_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa0b12ec3 drm_dp_mst_deallocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa0b40c8a drm_gem_simple_kms_reset_shadow_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa18946bb drm_fb_helper_setcmap EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa1fefe6a drm_dp_psr_setup_time -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa28c6199 drm_helper_force_disable_all -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa356c2f5 drm_dp_cec_unset_edid -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa4433dd0 drm_atomic_helper_wait_for_dependencies -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa45d390c drm_fb_helper_output_poll_changed -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa5563a63 drm_dp_dpcd_read_link_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa59dd2ee drm_atomic_helper_page_flip -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa687cb44 drm_dp_link_train_clock_recovery_delay -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa6fee424 drm_dp_mst_atomic_check -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa770999c drm_dp_pcon_hdmi_link_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa7d16a69 drm_fb_helper_unregister_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa8c19022 drm_kms_helper_poll_fini -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xab903113 drm_dp_stop_crc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaba92cef drm_dp_dual_mode_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xabb25c7a drm_atomic_helper_fake_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xac9fb141 drm_dp_mst_dsc_aux_for_port -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xae6726b0 drm_atomic_helper_prepare_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xae927dcc drm_dp_cec_set_edid +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa229d2a9 __drm_atomic_helper_crtc_state_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa38df171 drm_gem_duplicate_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa3c01371 drm_helper_move_panel_connectors_to_head +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa42dfd42 drm_atomic_helper_commit_modeset_disables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa4aa0db7 drm_atomic_helper_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa4be17dc drm_dp_pcon_pps_override_param +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa56d560c drm_dp_read_mst_cap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa636d117 drm_dp_read_sink_count_cap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa68a1cf9 drm_dp_downstream_id +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa77a9b63 drm_fb_helper_sys_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa8349b03 __drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa9188999 drm_gem_fb_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaa8df034 drm_atomic_helper_wait_for_dependencies +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xab5a8fa0 drm_atomic_helper_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xabd2dac7 drm_atomic_helper_wait_for_fences +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xac166ab6 drm_dp_send_real_edid_checksum EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaf267620 drm_dp_lttpr_count -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb0fa4df9 drm_dp_dpcd_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb3201690 drm_dp_pcon_pps_override_param -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb42bb75c drm_dp_mst_connector_late_register -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb73dfe4d drm_helper_probe_single_connector_modes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb79e0ecf drm_atomic_helper_check_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb9835296 drm_simple_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xba46fe2a drm_dp_aux_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xba7a8db0 __drm_atomic_helper_plane_state_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbb1754eb drm_fb_helper_fill_info -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbb818aef drm_dp_mst_add_affected_dsc_crtcs -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbdd74dc0 drm_dp_check_act_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc01850b3 drm_gem_duplicate_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc0428b4f drm_atomic_helper_crtc_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc2944048 drm_edp_backlight_enable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc57bd353 drm_atomic_helper_page_flip_target +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb399a71d drm_atomic_helper_setup_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb445be27 __drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb5f5e175 drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb7755b8b drm_gem_simple_kms_prepare_shadow_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb7d3dae2 drm_fb_helper_set_par +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb8f081e2 drm_dp_cec_unset_edid +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbb1b6dcf drm_atomic_helper_damage_merged +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbbf2ccea drm_atomic_helper_page_flip_target +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbff2e7a4 drm_dp_mst_reset_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc020c0c1 drm_dp_pcon_dsc_max_slice_width +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc1ffdce3 drm_self_refresh_helper_alter_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc384db0d drm_dp_mst_topology_mgr_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc4e4ef22 drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc5c06159 drm_mode_config_helper_resume EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc5c99a79 drm_dp_get_adjust_request_voltage -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc716efde drm_atomic_helper_bridge_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc5e89599 drm_fb_helper_pan_display +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc7341922 drm_dp_pcon_convert_rgb_to_ycbcr EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc79ecffb drm_dp_downstream_is_type -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc7bdc442 drm_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc80919d3 drm_gem_simple_kms_cleanup_shadow_fb EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc85e28e8 drm_fb_xrgb8888_to_rgb565_dstclip -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc9d5c4c5 drm_atomic_helper_commit_modeset_disables -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xca0ba7db drm_fb_helper_initial_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcd0429fa drm_panel_bridge_add -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcf37bf83 drm_atomic_helper_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcfa9b628 drm_gem_simple_kms_cleanup_shadow_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd176f916 drm_edp_backlight_set_level -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd19309d3 drm_simple_display_pipe_attach_bridge -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd20a67f6 drm_dp_dual_mode_get_tmds_output -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd240da88 drm_dp_remote_aux_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc9a33e58 drm_dp_aux_register +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc9f619ef drm_dp_aux_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcaa41665 drm_fb_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcaf3aec6 drm_helper_force_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcc853e3e drm_dp_check_act_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcd20a2e8 drm_dp_find_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xce523826 drm_dp_pcon_reset_frl_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xce8e18fe drm_dp_dual_mode_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xceab1fe7 drm_dp_pcon_pps_default +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcef17d27 drm_dp_dpcd_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcf3e4a8f drm_dp_mst_topology_state_funcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcf492698 drm_fb_helper_alloc_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcf6db2a7 drm_atomic_helper_crtc_destroy_state EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd2b0c7e6 drm_dp_downstream_is_tmds -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd2b69e04 drm_dp_mst_topology_mgr_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd3d22cbf drm_dp_dual_mode_write EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd4983d85 drm_fb_swab -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd6d3e20c drm_edp_backlight_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd8323d18 drm_dp_mst_detect_port -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd84bd3d0 __drm_atomic_helper_plane_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd893af91 drm_dp_mst_topology_state_funcs -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd982d837 drm_fb_helper_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd98462ea drm_atomic_helper_disable_all -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd9b35bfb drm_gem_destroy_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdac37ff0 drm_dp_pcon_reset_frl_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdb038164 drm_dp_mst_topology_mgr_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd4b9d86e drm_helper_probe_single_connector_modes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd5418f03 drm_dp_mst_connector_early_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd66f3b23 drm_atomic_helper_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd852acf8 drm_edp_backlight_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd85fc209 __drm_atomic_helper_private_obj_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd87ae495 drm_fb_helper_restore_fbdev_mode_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd8fa63b5 drm_dp_downstream_debug +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd8fde566 drm_dp_mst_topology_mgr_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdb6e9643 drm_gem_destroy_shadow_plane_state EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdbc3c128 drm_fb_blit_dstclip -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdd25f079 drm_dp_pcon_dsc_max_slice_width -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xde5d2a0f drm_atomic_helper_update_legacy_modeset_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe03fbdf5 drm_self_refresh_helper_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe072650a drm_dp_start_crc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe0727162 drm_fb_helper_sys_copyarea -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe0d5e6ec drm_fb_helper_cfb_copyarea -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe1c15fed drm_dp_read_desc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe22ae1a4 drm_atomic_helper_connector_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe2fd186d drm_fb_helper_cfb_imageblit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe48fb2a8 drm_atomic_helper_wait_for_flip_done -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe516aa27 drm_dp_mst_deallocate_vcpi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe7a20a23 drm_fb_helper_sys_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe80128cc drm_kms_helper_poll_enable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe891baee drm_fb_helper_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe8f2b2e0 drm_scdc_set_high_tmds_clock_ratio -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xea35baf1 drm_dp_atomic_release_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xea5c67ca drm_atomic_helper_connector_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeaabd64d __drm_atomic_helper_crtc_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeb503410 drm_fb_helper_sys_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeb99fc65 drm_dp_send_real_edid_checksum -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xedb73632 drm_edp_backlight_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdc3d3ee0 drm_helper_disable_unused_functions +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdd4e177e drm_atomic_helper_bridge_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xde8a9cd0 drm_crtc_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe03fccae drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe277e237 drm_primary_helper_funcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe38c0460 drm_panel_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe3b74e1d drm_atomic_helper_wait_for_flip_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe3cac9a7 drm_atomic_helper_dirtyfb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe3cbcfcb drm_dp_cec_irq +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe430c3d0 drm_self_refresh_helper_update_avg_times +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe5360b84 drm_dp_pcon_dsc_max_slices +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe5668e4f drm_gem_fb_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe741424a drm_dp_get_phy_test_pattern +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe7554fb5 __drm_gem_destroy_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe98bf84b drm_dp_dpcd_read_link_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe9a4b9ce drm_dp_mst_detect_port +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xea69c401 drm_atomic_helper_fake_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeac4bf06 drm_edp_backlight_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeb87d444 drm_simple_display_pipe_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xec2223cc drm_fb_helper_cfb_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xec9dc9f1 drm_dp_dpcd_read_phy_link_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xed5de2bf drm_fb_helper_cfb_fillrect EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xedcf81ce drm_dp_channel_eq_ok -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xee4b2e4a __drm_atomic_helper_connector_state_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeeee2149 drm_atomic_helper_check_plane_damage -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xef14aaa8 drm_dp_pcon_frl_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xef6d7e6d drm_scdc_set_scrambling -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeffacfac devm_drm_panel_bridge_add -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf1159cf0 drm_helper_probe_detect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf157c088 drm_dp_cec_irq -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf26e10ed drm_dp_send_power_updown_phy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf378c928 drm_dp_pcon_hdmi_frl_link_error_count -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf40eecd0 drm_kms_helper_poll_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf2b6155a drm_gem_fb_create_handle +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf4970aa5 drm_dp_read_downstream_info +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf4c5ab4e drm_scdc_set_scrambling +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf56d4eda __drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf5c9864f drm_atomic_helper_damage_iter_init EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf68741fb drm_dp_subconnector_type EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf689ad25 drm_dp_downstream_420_passthrough -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf6b77e1a drm_primary_helper_funcs -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf8333b3c drm_dp_pcon_dsc_max_slices -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf99085c7 drm_dp_aux_register -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfa0118c5 __drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf9e412ac drm_dp_mst_topology_mgr_init EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfb1a7a5a drm_dp_downstream_rgb_to_ycbcr_conversion -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfb7ab5cf drm_dp_read_lttpr_phy_caps -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfbc2b560 drm_dp_cec_unregister_connector -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfd96f303 drm_gem_simple_kms_duplicate_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfbdaacaa drm_dp_start_crc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfcae2ae5 drm_dp_read_lttpr_phy_caps +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfd81063f drm_atomic_helper_bridge_propagate_bus_fmt EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfe12bcb9 drm_dsc_compute_rc_parameters -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfe211fc5 drm_dp_pcon_frl_configure_2 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfe967c89 drm_atomic_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x03a404d5 mipi_dbi_debugfs_init -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x169fc33e mipi_dbi_command_read -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x189efc10 mipi_dbi_spi_cmd_max_speed -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x45108dd9 mipi_dbi_pipe_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x47b23f29 mipi_dbi_pipe_update -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x59e3d27e mipi_dbi_spi_init -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x6402d035 mipi_dbi_poweron_conditional_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x66444a99 mipi_dbi_buf_copy -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x73615b2f mipi_dbi_hw_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x8225b101 mipi_dbi_spi_transfer -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x9b353834 mipi_dbi_poweron_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xbd272775 mipi_dbi_display_is_on -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xc5b18795 mipi_dbi_command_stackbuf -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xd940c64d mipi_dbi_command_buf -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xe8bf4c71 mipi_dbi_enable_flush -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xefaf2b92 mipi_dbi_dev_init_with_formats -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xf8a523db mipi_dbi_dev_init -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x2e2f8b5f drm_gem_ttm_dumb_map_offset -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x30500d03 drm_gem_ttm_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x5d554eec drm_gem_ttm_print_info -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x6b13a0f1 drm_gem_ttm_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0xfdfa8bbc drm_gem_ttm_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x1c6bed2a drm_vram_helper_mode_valid -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x27b2f8bf drm_gem_vram_put -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x3aa200bc drm_gem_vram_offset -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x3e916b30 drm_gem_vram_plane_helper_cleanup_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x45ac4b4a drm_gem_vram_create -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x5f9cc6ed drm_gem_vram_fill_create_dumb -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x7c38e75f drm_vram_mm_debugfs_init -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x8458d59d drm_gem_vram_simple_display_pipe_prepare_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x8c3c52be drm_gem_vram_pin -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x95169e9a drm_gem_vram_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xc12f873b drm_gem_vram_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xe7dbcb3a drmm_vram_helper_init -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xee427749 drm_gem_vram_plane_helper_prepare_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xf58ffb78 drm_gem_vram_unpin -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xf5c3b7d4 drm_gem_vram_simple_display_pipe_cleanup_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xfb282793 drm_gem_vram_driver_dumb_create -EXPORT_SYMBOL drivers/gpu/drm/rockchip/rockchipdrm 0x0d9b8418 rockchip_drm_wait_vact_end -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x09032e98 drm_sched_reset_karma -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x2807a3d3 to_drm_sched_fence -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x42fc1817 drm_sched_entity_flush -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x444b991c drm_sched_pick_best -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x4a6e47b3 drm_sched_fini -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x5070d68b drm_sched_fault -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x5622a48f drm_sched_init -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x626ca0f8 drm_sched_entity_destroy -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x7dc25612 drm_sched_entity_set_priority -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x82cd2177 drm_sched_entity_fini -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x89b74be9 drm_sched_stop -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x8f1a4ff2 drm_sched_resubmit_jobs -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x920851f9 drm_sched_resume_timeout -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x94cdeecc drm_sched_dependency_optimized -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x96d9d6b8 drm_sched_start -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x987b9d69 drm_sched_entity_push_job -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x9aef86c3 drm_sched_job_cleanup -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xa0ec8148 drm_sched_entity_init -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xaf6ce9d3 drm_sched_entity_modify_sched -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xc9dacc8e drm_sched_resubmit_jobs_ext -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xd6f8c9f1 drm_sched_increase_karma -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xdbd5af58 drm_sched_increase_karma_ext -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xde9a07c6 drm_sched_job_init -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xf870eb04 drm_sched_suspend_timeout -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-frontend 0x152c367c sun4i_frontend_init -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-frontend 0x23849332 sun4i_frontend_exit -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-frontend 0x5b97d1b4 sun4i_frontend_update_formats -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-frontend 0x7aafd98a sun4i_frontend_update_coord +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfe14ba6e drm_dp_mst_atomic_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xffa3c17d drm_dp_get_vc_payload_bw +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x03fabbf3 mipi_dbi_dev_init_with_formats +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x17a9e48e mipi_dbi_debugfs_init +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x32a68dff mipi_dbi_hw_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x3b6c275e mipi_dbi_pipe_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x4cc11a23 mipi_dbi_pipe_update +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x4eee2fd5 mipi_dbi_enable_flush +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x4f45172c mipi_dbi_spi_init +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x7aa5e2cc mipi_dbi_display_is_on +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x7bf88b92 mipi_dbi_poweron_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x88620d7f mipi_dbi_spi_transfer +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x8f6646a2 mipi_dbi_command_buf +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x9141691b mipi_dbi_command_stackbuf +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xa71403ce mipi_dbi_dev_init +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xb975b47f mipi_dbi_command_read +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xcc5288c7 mipi_dbi_poweron_conditional_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xdc8d21e3 mipi_dbi_spi_cmd_max_speed +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xf360d6b7 mipi_dbi_buf_copy +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x72bb4a65 drm_gem_ttm_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x88794b41 drm_gem_ttm_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x8f49ec95 drm_gem_ttm_dumb_map_offset +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x9102f981 drm_gem_ttm_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0xc8641047 drm_gem_ttm_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x06eaca1c drm_gem_vram_driver_dumb_create +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x1163d81c drm_vram_mm_debugfs_init +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x1def9eaa drm_gem_vram_plane_helper_cleanup_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x20d88f29 drm_gem_vram_simple_display_pipe_prepare_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x52405b88 drm_gem_vram_create +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x554c08c0 drm_gem_vram_put +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x55af083b drm_gem_vram_pin +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xb398c443 drm_gem_vram_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xbc91f933 drm_gem_vram_plane_helper_prepare_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xc4a98c93 drm_vram_helper_mode_valid +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xd8ed066d drm_gem_vram_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xe453242b drm_gem_vram_unpin +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xe87cbda8 drm_gem_vram_offset +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xea6ca828 drm_gem_vram_simple_display_pipe_cleanup_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xf0fa8274 drmm_vram_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xf40a554c drm_gem_vram_fill_create_dumb +EXPORT_SYMBOL drivers/gpu/drm/rockchip/rockchipdrm 0xc57d5b75 rockchip_drm_wait_vact_end +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x110e740d drm_sched_entity_set_priority +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x11447ae0 drm_sched_entity_destroy +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x21ced098 drm_sched_entity_fini +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x224513dc drm_sched_dependency_optimized +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x22cb5852 drm_sched_entity_push_job +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x24745372 drm_sched_resubmit_jobs_ext +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x27fd775c drm_sched_pick_best +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x430b85c9 drm_sched_job_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x4d5296f5 drm_sched_entity_flush +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x4d58b6cc drm_sched_entity_modify_sched +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x53fac17a drm_sched_increase_karma_ext +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x5f738a8d drm_sched_fini +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x6265a0da drm_sched_job_cleanup +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x6b677ce8 drm_sched_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x75d198ef drm_sched_entity_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x79cbf10e drm_sched_stop +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x79ea82fe drm_sched_increase_karma +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x7cc5f81f to_drm_sched_fence +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x887bd4c3 drm_sched_start +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xb6bcb8e2 drm_sched_fault +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xb95aa09c drm_sched_resume_timeout +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xbca81b38 drm_sched_reset_karma +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xcf5bcd5f drm_sched_resubmit_jobs +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xe402ebcb drm_sched_suspend_timeout +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-frontend 0x956a6ece sun4i_frontend_update_formats EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-frontend 0x96413fdb sunxi_bt601_yuv2rgb_coef +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-frontend 0x9fd04fe3 sun4i_frontend_enable EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-frontend 0xa631b179 sun4i_frontend_format_is_supported -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-frontend 0xb2ba1338 sun4i_frontend_update_buffer +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-frontend 0xb4cdc2f2 sun4i_frontend_exit +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-frontend 0xbff27ca1 sun4i_frontend_update_coord +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-frontend 0xd9a52273 sun4i_frontend_init EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-frontend 0xe13164ef sun4i_frontend_of_table -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-frontend 0xfbf2589f sun4i_frontend_enable -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x04f3f584 sun4i_tcon_enable_vblank -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x119a6a32 sun4i_lvds_init -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x551575f6 sun4i_dclk_free +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-frontend 0xedb7a6f2 sun4i_frontend_update_buffer +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x057800ee sun4i_tcon_enable_vblank +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x5e66e70c sun4i_lvds_init EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x6c10c7a7 sun4i_tcon_of_table -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x8ed08d9a sun4i_dclk_create -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0xa11648c1 sun4i_tcon_mode_set -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0xef7d7f2d sun4i_rgb_init +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x7b278274 sun4i_dclk_create +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x9e11e560 sun4i_tcon_mode_set +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0xb11543f5 sun4i_dclk_free +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0xec3652b9 sun4i_rgb_init EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun8i_tcon_top 0x350e5dcd sun8i_tcon_top_of_table -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun8i_tcon_top 0x4ca34c5a sun8i_tcon_top_de_config -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun8i_tcon_top 0x95ff4a8a sun8i_tcon_top_set_hdmi_src -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x093f8e98 ttm_glob -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0cc39e22 ttm_bo_vm_close -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0d25b987 ttm_tt_populate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0ebce977 ttm_device_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x29dd58a0 ttm_pool_free -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x29fef2c8 ttm_kmap_iter_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2c115ca5 ttm_bo_vm_dummy_page -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2dffeadd ttm_eu_backoff_reservation -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3153a18a ttm_eu_reserve_buffers -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3763f8cc ttm_device_swapout -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x37b35ecd ttm_bo_vm_fault_reserved -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3ee84c75 ttm_tt_destroy_common -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4bfef4a3 ttm_bo_unlock_delayed_workqueue -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4c24175a ttm_bo_vm_access -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x50aeefc5 ttm_bo_move_accel_cleanup -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x51fd2531 ttm_pool_alloc -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x610a6010 ttm_bo_kmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x617644b7 ttm_bo_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6868d5e7 ttm_pool_debugfs -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6cd25a15 ttm_device_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7681493a ttm_resource_manager_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x78912f7e ttm_bo_vm_fault -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7dc1976d ttm_bo_mem_space -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8021c629 ttm_eu_fence_buffer_objects -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x843dd710 ttm_bo_vm_reserve -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x862ec73e ttm_bo_move_memcpy -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x89a8850b ttm_bo_put -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9601e421 ttm_bo_vm_open -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9a592954 ttm_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9f5a1122 ttm_bo_validate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa00a0830 ttm_bo_wait -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa2e869bf ttm_bo_kunmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa37b5237 ttm_tt_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa597a230 ttm_move_memcpy -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb0d4477c ttm_sg_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb3afa236 ttm_io_prot -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb4cbf967 ttm_bo_mmap_obj +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun8i_tcon_top 0x40838bb3 sun8i_tcon_top_de_config +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun8i_tcon_top 0x6f6f1060 sun8i_tcon_top_set_hdmi_src +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x073891fd ttm_move_memcpy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0bf21cac ttm_bo_move_memcpy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0e4d9577 ttm_bo_lock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x13f12793 ttm_device_swapout +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x16a07c2b ttm_pool_debugfs +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x17a9f00d ttm_bo_unmap_virtual +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1a7e91a5 ttm_pool_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x22b509ae ttm_resource_manager_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2354e989 ttm_bo_vm_dummy_page +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x31721859 ttm_eu_reserve_buffers +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3cd27c56 ttm_bo_vm_fault_reserved +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3d7b285a ttm_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3ef3e248 ttm_bo_mem_space +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3f77548e ttm_bo_unlock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4becae7e ttm_resource_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4dc8025b ttm_bo_init_reserved +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4ed8ed13 ttm_device_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4f07f722 ttm_bo_move_to_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5319b411 ttm_eu_fence_buffer_objects +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5b631117 ttm_range_man_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x61f351c5 ttm_bo_kmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x624400ab ttm_bo_validate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6439d8ed ttm_eu_backoff_reservation +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x657d21d4 ttm_bo_vm_close +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7b2e7eb1 ttm_bo_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x876cbf22 ttm_bo_vunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8beb1c68 ttm_bo_vm_reserve +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x90251cef ttm_resource_manager_debug +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x94405fde ttm_bo_vm_access +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x95614b71 ttm_sg_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9a7bcfcb ttm_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9b3fab12 ttm_bo_vmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9e508af7 ttm_tt_destroy_common +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa093dc5b ttm_glob +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb3cc6944 ttm_bo_mmap_obj EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb753ca08 ttm_bo_mem_compat -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbb1d1e0c ttm_bo_bulk_move_lru_tail -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc601e462 ttm_bo_vunmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc8f94099 ttm_resource_manager_debug -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc900aec7 ttm_global_swapout -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcef85c5f ttm_bo_init_reserved -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd20a3131 ttm_resource_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd8d49e63 ttm_range_man_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd959bb61 ttm_bo_eviction_valuable -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd9a19077 ttm_bo_move_to_lru_tail -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe2c624fc ttm_resource_free -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe891262f ttm_bo_lock_delayed_workqueue -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xee66506b ttm_range_man_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbd144d8e ttm_bo_kunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbdf6777a ttm_tt_populate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc3587e3d ttm_bo_vm_fault +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcd479e7b ttm_io_prot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcf330672 ttm_bo_eviction_valuable +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd4059cb1 ttm_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd42ea61c ttm_kmap_iter_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd57f90c2 ttm_bo_vm_open +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdba04139 ttm_resource_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xde071fe6 ttm_bo_bulk_move_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdeb4978a ttm_bo_wait +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe1831315 ttm_global_swapout +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe5aa0638 ttm_resource_manager_evict_all +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe641cf1e ttm_bo_move_accel_cleanup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe6e53d1e ttm_range_man_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xee10d8eb ttm_bo_put +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf02ddc33 ttm_pool_alloc EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf03f94e3 ttm_kmap_iter_iomap_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf46f9080 ttm_bo_unmap_virtual -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfb81321e ttm_bo_vmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfe0962de ttm_resource_manager_evict_all +EXPORT_SYMBOL drivers/gpu/drm/vmwgfx/vmwgfx 0x13104557 ttm_mem_global_free +EXPORT_SYMBOL drivers/gpu/drm/vmwgfx/vmwgfx 0x3520e4f3 ttm_mem_glob EXPORT_SYMBOL drivers/gpu/drm/vmwgfx/vmwgfx 0x446c961c ttm_base_object_noref_lookup EXPORT_SYMBOL drivers/gpu/drm/vmwgfx/vmwgfx 0x6052860c ttm_round_pot -EXPORT_SYMBOL drivers/gpu/drm/vmwgfx/vmwgfx 0x6b1f369c ttm_mem_glob -EXPORT_SYMBOL drivers/gpu/drm/vmwgfx/vmwgfx 0x969422cc ttm_mem_global_alloc -EXPORT_SYMBOL drivers/gpu/drm/vmwgfx/vmwgfx 0xc6db627c ttm_mem_global_free -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x02c7d74b host1x_syncpt_read_max -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x043f0962 host1x_device_init -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x12b58aea host1x_channel_get -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x14e1ff0e host1x_syncpt_read_min -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x16d53cca host1x_syncpt_incr_max -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x1bb5fa9d host1x_channel_request -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x1db268e5 host1x_get_dma_mask -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x2092a4e2 host1x_client_suspend -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x260c11be host1x_syncpt_get_base -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x28481498 host1x_syncpt_wait -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x326ac7a0 __host1x_client_register -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x3d8dc051 host1x_syncpt_read -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x44aeed68 host1x_syncpt_put +EXPORT_SYMBOL drivers/gpu/drm/vmwgfx/vmwgfx 0xe17de174 ttm_mem_global_alloc +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x0c503ff8 host1x_device_init +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x162cbaa6 host1x_job_alloc +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x24dd20fd host1x_syncpt_request +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x278d370f host1x_syncpt_get_by_id_noref +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x2fda9247 tegra_mipi_request +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x33d8bde0 host1x_syncpt_read_min +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x35102999 host1x_channel_request +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x3520ee4c __host1x_client_init +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x3ac71589 host1x_channel_put +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x3db90843 host1x_syncpt_wait +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x3e38bbfc host1x_syncpt_get_by_id +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x4394ea36 host1x_job_get EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x4fd3948d host1x_fence_create EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x51de13ce host1x_syncpt_base_id -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x568faea5 host1x_syncpt_incr -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x5c14d5fe host1x_driver_register_full -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x6315f633 host1x_job_submit -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x67bbcfca host1x_syncpt_alloc +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x598f99bd host1x_job_pin +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x60973a17 host1x_driver_register_full +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x6fac08bb __host1x_client_register +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x7113a05a host1x_syncpt_alloc EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x72e78e54 tegra_mipi_start_calibration -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x737fb0b1 host1x_job_get -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x74de71c4 host1x_driver_unregister -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x7c5887d5 host1x_job_alloc -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x83300f99 host1x_syncpt_get_by_id -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x889b98bd host1x_client_exit -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x88b89fe9 host1x_client_unregister -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x92c1429e host1x_syncpt_get_by_id_noref +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x76c10642 host1x_device_exit +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x7f293502 host1x_client_resume +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x840ea795 host1x_syncpt_put +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x9291eb3e host1x_syncpt_read +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x92ac4214 host1x_syncpt_release_vblank_reservation +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x93e69884 host1x_client_exit EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x9451a33e tegra_mipi_free -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x96981c2c host1x_syncpt_get -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x984d0346 host1x_job_pin -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x9de14818 host1x_device_exit +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x9bd0e618 host1x_driver_unregister +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xa210265a host1x_syncpt_get +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xa6b9b8bc host1x_syncpt_incr EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xa733ff60 tegra_mipi_disable -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xb2787145 host1x_job_add_wait -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xb67c0c60 host1x_job_put +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xb00c9597 host1x_client_suspend +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xb26582c2 host1x_syncpt_id +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xb585bbf6 host1x_syncpt_get_base EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xbcbe65a0 tegra_mipi_finish_calibration -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xc7f402c1 host1x_channel_put -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xcf8a4d33 host1x_job_unpin -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xd1c96ef9 __host1x_client_init -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xd42f74bf host1x_syncpt_request -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xdd984a2d host1x_job_add_gather -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xe4e26c60 host1x_syncpt_id -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xe6128b60 host1x_syncpt_release_vblank_reservation +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xc4ea517c host1x_syncpt_incr_max +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xdbf5000b host1x_job_unpin +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xdc8f6003 host1x_job_put +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xde637028 host1x_job_add_wait +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xdf18304c host1x_client_unregister +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xeada614d host1x_get_dma_mask +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xf5e7b282 host1x_syncpt_read_max EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xf8a79b19 tegra_mipi_enable -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xf93625a6 tegra_mipi_request -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xfa95afdd host1x_client_resume -EXPORT_SYMBOL drivers/hid/hid 0x7bb083b0 hid_bus_type -EXPORT_SYMBOL drivers/hv/hv_vmbus 0x623e1af7 vmbus_sendpacket -EXPORT_SYMBOL drivers/hv/hv_vmbus 0xfc69c264 vmbus_recvpacket +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xfa0c682b host1x_job_add_gather +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xfc7b9246 host1x_channel_get +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xff13f5c1 host1x_job_submit +EXPORT_SYMBOL drivers/hid/hid 0x847c9716 hid_bus_type +EXPORT_SYMBOL drivers/hv/hv_vmbus 0x4a6ff994 vmbus_recvpacket +EXPORT_SYMBOL drivers/hv/hv_vmbus 0xd2eaa592 vmbus_sendpacket EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x2f9e7f8e vid_which_vrm EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x446615bd vid_from_reg 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 0xa21feb74 sch56xx_watchdog_register EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xaa17a737 sch56xx_write_virtual_reg EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xb37b9b81 sch56xx_read_virtual_reg16 -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x13d34025 i2c_bit_algo -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x456de5c2 i2c_bit_add_numbered_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xbbbe8468 i2c_bit_add_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x9688b7ae i2c_pca_add_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0xf5734d1e i2c_pca_add_numbered_bus -EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0x6af154a7 amd756_smbus -EXPORT_SYMBOL drivers/iio/accel/bma400_core 0x1c7194f4 bma400_remove -EXPORT_SYMBOL drivers/iio/accel/bma400_core 0x46041925 bma400_regmap_config -EXPORT_SYMBOL drivers/iio/accel/bma400_core 0xda89f548 bma400_probe -EXPORT_SYMBOL drivers/iio/accel/kxsd9 0x196547a2 kxsd9_dev_pm_ops -EXPORT_SYMBOL drivers/iio/accel/kxsd9 0x20e9b61e kxsd9_common_remove -EXPORT_SYMBOL drivers/iio/accel/kxsd9 0x53858b59 kxsd9_common_probe -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x1ac9a6fe mma9551_gpio_config -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x1c2bf45c mma9551_set_power_state -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x26c7f172 mma9551_write_config_byte -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x2a3d5007 mma9551_read_status_word +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xf01b9062 sch56xx_watchdog_register +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x2bda86b6 i2c_bit_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x40c1c0c1 i2c_bit_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xfe5c8732 i2c_bit_algo +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0xa352fa65 i2c_pca_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0xdfae0bc2 i2c_pca_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0x5a11a8fa amd756_smbus +EXPORT_SYMBOL drivers/iio/accel/bma400_core 0x89d39ef8 bma400_remove +EXPORT_SYMBOL drivers/iio/accel/bma400_core 0x8d0eeceb bma400_regmap_config +EXPORT_SYMBOL drivers/iio/accel/bma400_core 0xdf3c54aa bma400_probe +EXPORT_SYMBOL drivers/iio/accel/kxsd9 0x6011e3c1 kxsd9_dev_pm_ops +EXPORT_SYMBOL drivers/iio/accel/kxsd9 0x9d4bb1f6 kxsd9_common_remove +EXPORT_SYMBOL drivers/iio/accel/kxsd9 0xb2eae996 kxsd9_common_probe +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x1a4dd604 mma9551_gpio_config +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x1cf7214a mma9551_app_reset +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x282b40ee mma9551_read_config_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x33320d5d mma9551_set_power_state +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x33af350b mma9551_write_config_word EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x41ef446c mma9551_read_accel_scale -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x42f3c2db mma9551_write_config_words -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x436dceb0 mma9551_read_config_word -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x43bbe27a mma9551_read_accel_chan -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x48b6f72d mma9551_read_version -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x522340d7 mma9551_read_config_words -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x72f36762 mma9551_app_reset -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x7510381f mma9551_set_device_state -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x81c42ef0 mma9551_read_config_byte -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x9c67322f mma9551_update_config_bits -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xb7d10566 mma9551_read_status_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x59c12ea0 mma9551_read_accel_chan +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x5cb3b8c1 mma9551_write_config_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x8ad71dff mma9551_read_version +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x8ea69bdf mma9551_update_config_bits +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x9490c4bb mma9551_read_status_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x9b34e203 mma9551_set_device_state +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xa1015ab8 mma9551_read_status_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xb5885228 mma9551_read_config_words EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xbcd7fe96 mma9551_sleep -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xd7986763 mma9551_read_status_byte -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xebbb3f88 mma9551_write_config_word -EXPORT_SYMBOL drivers/iio/accel/st_accel 0x2ff7fc0f st_accel_get_settings -EXPORT_SYMBOL drivers/iio/accel/st_accel 0x79da9fd1 st_accel_common_remove -EXPORT_SYMBOL drivers/iio/accel/st_accel 0x9a1ac630 st_accel_common_probe +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xcf05a01d mma9551_write_config_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xe1ab8a92 mma9551_read_status_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xf87be765 mma9551_read_config_word +EXPORT_SYMBOL drivers/iio/accel/st_accel 0x57b2cb08 st_accel_common_remove +EXPORT_SYMBOL drivers/iio/accel/st_accel 0xbb8acb59 st_accel_common_probe +EXPORT_SYMBOL drivers/iio/accel/st_accel 0xc30d1b7d st_accel_get_settings EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x10a4c688 qcom_adc5_hw_scale EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x12402a0a qcom_vadc_scale EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x39885d6b qcom_adc_tm5_temp_volt_scale @@ -1231,1215 +1231,1215 @@ 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 0x46c1052b iio_triggered_buffer_setup_ext -EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0xaa0befb2 iio_triggered_buffer_cleanup -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xf07de67a iio_kfifo_free -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xf57eaa63 iio_kfifo_allocate -EXPORT_SYMBOL drivers/iio/chemical/bme680_core 0x179d7003 bme680_regmap_config -EXPORT_SYMBOL drivers/iio/chemical/scd30_core 0x11809592 scd30_probe -EXPORT_SYMBOL drivers/iio/chemical/scd30_core 0xa3d15b26 scd30_suspend -EXPORT_SYMBOL drivers/iio/chemical/scd30_core 0xb3fdcded scd30_resume +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0x62ce0d00 iio_triggered_buffer_cleanup +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0xa443d57b iio_triggered_buffer_setup_ext +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x36f240e3 iio_kfifo_allocate +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x3c9a457c iio_kfifo_free +EXPORT_SYMBOL drivers/iio/chemical/bme680_core 0x3163e2c0 bme680_regmap_config +EXPORT_SYMBOL drivers/iio/chemical/scd30_core 0x5e93650d scd30_resume +EXPORT_SYMBOL drivers/iio/chemical/scd30_core 0x80c0bbff scd30_suspend +EXPORT_SYMBOL drivers/iio/chemical/scd30_core 0xb0822d0f scd30_probe EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x045688dd ms_sensors_read_prom_word -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x0bc7e5ea ms_sensors_show_heater -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x1fabe529 ms_sensors_ht_read_temperature -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x262906ee ms_sensors_write_resolution +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x144af329 ms_sensors_show_battery_low +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x19013719 ms_sensors_ht_read_temperature +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x26cee7cb ms_sensors_write_resolution +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x286facf6 ms_sensors_read_serial EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x2d2f5cd5 ms_sensors_reset -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x34f80d34 ms_sensors_read_temp_and_pressure EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x42b6a050 ms_sensors_convert_and_read -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x453956d3 ms_sensors_ht_read_humidity -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xf0266e9f ms_sensors_read_serial -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xf68115b8 ms_sensors_write_heater -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xf848f39c ms_sensors_tp_read_prom -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xfea0bc36 ms_sensors_show_battery_low -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x20b51072 ssp_get_sensor_delay -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x39baf583 ssp_register_consumer -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x81e66fce ssp_change_delay -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xec4e81a6 ssp_disable_sensor -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xf511e0ae ssp_enable_sensor -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x241bffa7 ssp_common_process_data -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x774648f4 ssp_common_buffer_postenable -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0xfd60fddd ssp_common_buffer_postdisable +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x69d28ee9 ms_sensors_write_heater +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x755a1cf1 ms_sensors_ht_read_humidity +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x8ac2457f ms_sensors_tp_read_prom +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x92c71725 ms_sensors_show_heater +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xa9e9bfa9 ms_sensors_read_temp_and_pressure +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x346e7ae1 ssp_disable_sensor +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x5512dbda ssp_get_sensor_delay +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x56c06ac2 ssp_change_delay +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x6f6815c9 ssp_register_consumer +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x9a08f957 ssp_enable_sensor +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x1175d42e ssp_common_process_data +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x242ca35a ssp_common_buffer_postenable +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0xf86bd128 ssp_common_buffer_postdisable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x0237e966 st_sensors_power_disable EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x074d7047 st_sensors_trigger_handler -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x1fdbddc2 st_sensors_validate_device -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x239be728 st_sensors_verify_id -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x244efdee st_sensors_set_odr -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x2efa12b0 st_sensors_set_dataready_irq -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x4a182a8b st_sensors_debugfs_reg_access -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x67dbbedf st_sensors_sysfs_sampling_frequency_avail -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x845f3830 st_sensors_sysfs_scale_avail -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x8cef3807 st_sensors_set_fullscale_by_gain -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x95f57c83 st_sensors_read_info_raw -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xa2e04921 st_sensors_power_disable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xa4f79e0f st_sensors_power_enable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xa9aff829 st_sensors_get_settings_index -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xc19bea0c st_sensors_init_sensor -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xce204dad st_sensors_set_axis_enable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xd43183ee st_sensors_dev_name_probe -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xe41f0330 st_sensors_deallocate_trigger -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xeaba5008 st_sensors_set_enable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xfbb99040 st_sensors_allocate_trigger -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0xdcda75a5 st_sensors_i2c_configure -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_spi 0x05f8327c st_sensors_spi_configure -EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0x1cc515ce mpu3050_dev_pm_ops -EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0x6132f833 mpu3050_common_remove -EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0xcc7e62dd mpu3050_common_probe -EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x5d550a92 st_gyro_get_settings -EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0xb9937eed st_gyro_common_probe -EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0xf1a97042 st_gyro_common_remove -EXPORT_SYMBOL drivers/iio/humidity/hts221 0x2871f57b hts221_probe -EXPORT_SYMBOL drivers/iio/humidity/hts221 0x49f376ac hts221_pm_ops -EXPORT_SYMBOL drivers/iio/imu/adis_lib 0x9a3d673c adis_enable_irq -EXPORT_SYMBOL drivers/iio/imu/adis_lib 0xd8f15767 adis_debugfs_reg_access +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x0f08226f st_sensors_get_settings_index +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x16465177 st_sensors_set_fullscale_by_gain +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x1a3333a9 st_sensors_set_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x20f58dc9 st_sensors_sysfs_sampling_frequency_avail +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x24f68d27 st_sensors_deallocate_trigger +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x50ef31c5 st_sensors_set_odr +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x54d83368 st_sensors_validate_device +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x6aadf16e st_sensors_verify_id +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x72b27e36 st_sensors_read_info_raw +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x7c636e7c st_sensors_sysfs_scale_avail +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x9ab91cfb st_sensors_debugfs_reg_access +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xaacf9855 st_sensors_init_sensor +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xafe5e1ba st_sensors_set_axis_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xb00c1a33 st_sensors_set_dataready_irq +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xb11f08af st_sensors_dev_name_probe +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xc356d7b8 st_sensors_allocate_trigger +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xecbd6fc3 st_sensors_power_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0x0c412447 st_sensors_i2c_configure +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_spi 0x429e267a st_sensors_spi_configure +EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0x513c0558 mpu3050_dev_pm_ops +EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0x56ee9098 mpu3050_common_remove +EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0x80bafb69 mpu3050_common_probe +EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x0cc74db8 st_gyro_common_remove +EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x8639b539 st_gyro_common_probe +EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0xc4405e53 st_gyro_get_settings +EXPORT_SYMBOL drivers/iio/humidity/hts221 0x605fad99 hts221_probe +EXPORT_SYMBOL drivers/iio/humidity/hts221 0xe0847566 hts221_pm_ops +EXPORT_SYMBOL drivers/iio/imu/adis_lib 0x96e3449d adis_debugfs_reg_access +EXPORT_SYMBOL drivers/iio/imu/adis_lib 0xf67b4052 adis_enable_irq +EXPORT_SYMBOL drivers/iio/imu/bmi160/bmi160_core 0x1a7572d9 bmi160_regmap_config EXPORT_SYMBOL drivers/iio/imu/bmi160/bmi160_core 0xca19cfae bmi160_enable_irq -EXPORT_SYMBOL drivers/iio/imu/bmi160/bmi160_core 0xe178a8f2 bmi160_regmap_config -EXPORT_SYMBOL drivers/iio/imu/fxos8700_core 0x2782f0f4 fxos8700_regmap_config -EXPORT_SYMBOL drivers/iio/imu/st_lsm6dsx/st_lsm6dsx 0x0ff2f967 st_lsm6dsx_probe -EXPORT_SYMBOL drivers/iio/imu/st_lsm6dsx/st_lsm6dsx 0xb269b811 st_lsm6dsx_pm_ops -EXPORT_SYMBOL drivers/iio/industrialio 0x06ef066c iio_device_unregister -EXPORT_SYMBOL drivers/iio/industrialio 0x13af9fd7 iio_bus_type -EXPORT_SYMBOL drivers/iio/industrialio 0x1ee67622 iio_device_free -EXPORT_SYMBOL drivers/iio/industrialio 0x2162b206 iio_push_event -EXPORT_SYMBOL drivers/iio/industrialio 0x22066735 iio_trigger_validate_own_device -EXPORT_SYMBOL drivers/iio/industrialio 0x2bdfd233 iio_get_time_res +EXPORT_SYMBOL drivers/iio/imu/fxos8700_core 0xd954a0ef fxos8700_regmap_config +EXPORT_SYMBOL drivers/iio/imu/st_lsm6dsx/st_lsm6dsx 0x21a9249f st_lsm6dsx_probe +EXPORT_SYMBOL drivers/iio/imu/st_lsm6dsx/st_lsm6dsx 0x66abfc57 st_lsm6dsx_pm_ops +EXPORT_SYMBOL drivers/iio/industrialio 0x031e17f4 iio_device_set_clock +EXPORT_SYMBOL drivers/iio/industrialio 0x14d4107c iio_device_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0x20dda781 iio_buffer_init EXPORT_SYMBOL drivers/iio/industrialio 0x2d6bcdcb iio_trigger_generic_data_rdy_poll -EXPORT_SYMBOL drivers/iio/industrialio 0x31b3e743 iio_device_set_clock -EXPORT_SYMBOL drivers/iio/industrialio 0x394f5fdb iio_trigger_set_immutable -EXPORT_SYMBOL drivers/iio/industrialio 0x4bb09355 iio_trigger_unregister -EXPORT_SYMBOL drivers/iio/industrialio 0x4f034a48 iio_trigger_poll -EXPORT_SYMBOL drivers/iio/industrialio 0x570aac36 iio_trigger_free -EXPORT_SYMBOL drivers/iio/industrialio 0x6714f7a8 iio_get_time_ns -EXPORT_SYMBOL drivers/iio/industrialio 0x6ff2114d iio_trigger_notify_done -EXPORT_SYMBOL drivers/iio/industrialio 0x7d8f4c75 iio_device_alloc -EXPORT_SYMBOL drivers/iio/industrialio 0x836a01fe iio_read_const_attr -EXPORT_SYMBOL drivers/iio/industrialio 0xb3331103 iio_trigger_using_own -EXPORT_SYMBOL drivers/iio/industrialio 0xbdde4cbd __iio_trigger_register -EXPORT_SYMBOL drivers/iio/industrialio 0xce54a27c iio_read_mount_matrix -EXPORT_SYMBOL drivers/iio/industrialio 0xd965df9b iio_trigger_poll_chained -EXPORT_SYMBOL drivers/iio/industrialio 0xd9ea1ea7 iio_buffer_init +EXPORT_SYMBOL drivers/iio/industrialio 0x31fb93e1 iio_trigger_notify_done +EXPORT_SYMBOL drivers/iio/industrialio 0x33196758 iio_read_mount_matrix +EXPORT_SYMBOL drivers/iio/industrialio 0x341bdc49 iio_trigger_free +EXPORT_SYMBOL drivers/iio/industrialio 0x3bd1c7db iio_trigger_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0x4321752f iio_get_time_res +EXPORT_SYMBOL drivers/iio/industrialio 0x648d595f iio_device_get_clock +EXPORT_SYMBOL drivers/iio/industrialio 0x6bc163c9 iio_device_free +EXPORT_SYMBOL drivers/iio/industrialio 0x8047f6ec iio_trigger_using_own +EXPORT_SYMBOL drivers/iio/industrialio 0x8935301c iio_trigger_poll_chained +EXPORT_SYMBOL drivers/iio/industrialio 0x93ab5044 __iio_device_register +EXPORT_SYMBOL drivers/iio/industrialio 0xae7aa466 iio_push_event +EXPORT_SYMBOL drivers/iio/industrialio 0xb688fd23 iio_get_time_ns +EXPORT_SYMBOL drivers/iio/industrialio 0xd0ec92a1 iio_trigger_poll +EXPORT_SYMBOL drivers/iio/industrialio 0xd6a4769e __iio_trigger_register +EXPORT_SYMBOL drivers/iio/industrialio 0xd795cba6 iio_trigger_alloc EXPORT_SYMBOL drivers/iio/industrialio 0xdf76bbeb iio_pollfunc_store_time -EXPORT_SYMBOL drivers/iio/industrialio 0xe8c18ab7 iio_device_get_clock -EXPORT_SYMBOL drivers/iio/industrialio 0xe9fa0eb0 iio_trigger_alloc -EXPORT_SYMBOL drivers/iio/industrialio 0xf96e5348 __iio_device_register -EXPORT_SYMBOL drivers/iio/industrialio-configfs 0x4c016e96 iio_configfs_subsys -EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x4a9fef4e iio_sw_device_destroy -EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x87545b05 iio_register_sw_device_type -EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x9fda1246 iio_sw_device_create -EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0xcec2ba67 iio_unregister_sw_device_type -EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x35a48f5f iio_sw_trigger_destroy -EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x461c9cf0 iio_register_sw_trigger_type -EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x6b1c64bb iio_unregister_sw_trigger_type -EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0xf8394160 iio_sw_trigger_create -EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x13153aaf iio_triggered_event_setup -EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x4dfbf909 iio_triggered_event_cleanup -EXPORT_SYMBOL drivers/iio/light/st_uvis25_core 0x9469c23f st_uvis25_pm_ops -EXPORT_SYMBOL drivers/iio/light/st_uvis25_core 0xf249ab5f st_uvis25_probe -EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0x53d22248 bmc150_magn_remove -EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0x8e223322 bmc150_magn_regmap_config -EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0x99fb85e5 bmc150_magn_probe -EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0xb198f0e5 bmc150_magn_pm_ops -EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0x41c019b5 hmc5843_common_remove -EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0x612922ff hmc5843_common_suspend -EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0x662d7930 hmc5843_common_probe -EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0xa5e7346e hmc5843_common_resume -EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x2f0be83e st_magn_common_probe -EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0xcca1c133 st_magn_get_settings -EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0xeee56bba st_magn_common_remove -EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x3811ccbc bmp280_regmap_config -EXPORT_SYMBOL drivers/iio/pressure/bmp280 0xd15beaf9 bmp280_common_probe -EXPORT_SYMBOL drivers/iio/pressure/bmp280 0xd29711de bmp180_regmap_config -EXPORT_SYMBOL drivers/iio/pressure/bmp280 0xe8ee48ff bmp280_dev_pm_ops -EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0x3a072beb ms5611_probe -EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0xbe7db74c ms5611_remove -EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x2993d641 st_press_get_settings -EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0xe610adf9 st_press_common_remove -EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0xefcc4b76 st_press_common_probe -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x186890c1 ib_send_cm_mra -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x271c368b ib_create_cm_id -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x417eb406 ib_destroy_cm_id -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x4507b210 ib_send_cm_rej +EXPORT_SYMBOL drivers/iio/industrialio 0xe2a51a6b iio_trigger_validate_own_device +EXPORT_SYMBOL drivers/iio/industrialio 0xe2cc1f75 iio_bus_type +EXPORT_SYMBOL drivers/iio/industrialio 0xe57d57e3 iio_trigger_set_immutable +EXPORT_SYMBOL drivers/iio/industrialio 0xec6a7d2d iio_device_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0xf1228520 iio_read_const_attr +EXPORT_SYMBOL drivers/iio/industrialio-configfs 0x91c6b83b iio_configfs_subsys +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x4d816d13 iio_sw_device_destroy +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x6803333d iio_sw_device_create +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0xba9c198b iio_register_sw_device_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0xc3f74967 iio_unregister_sw_device_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x0dce855a iio_unregister_sw_trigger_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x563adb4f iio_sw_trigger_create +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0xb687d935 iio_sw_trigger_destroy +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0xe05b484e iio_register_sw_trigger_type +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x7cdeae6c iio_triggered_event_cleanup +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0xc884f250 iio_triggered_event_setup +EXPORT_SYMBOL drivers/iio/light/st_uvis25_core 0x6e39ccf1 st_uvis25_pm_ops +EXPORT_SYMBOL drivers/iio/light/st_uvis25_core 0xbd4a5e56 st_uvis25_probe +EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0x04262fd2 bmc150_magn_probe +EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0x8e4adfef bmc150_magn_regmap_config +EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0xf2e7456b bmc150_magn_remove +EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0xfc61e073 bmc150_magn_pm_ops +EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0xb90efc30 hmc5843_common_probe +EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0xd47f60b1 hmc5843_common_resume +EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0xe745d354 hmc5843_common_suspend +EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0xec75049d hmc5843_common_remove +EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x55b495f2 st_magn_get_settings +EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x6080c979 st_magn_common_probe +EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x7afdb554 st_magn_common_remove +EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x00c959ff bmp180_regmap_config +EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x3c2c0cb9 bmp280_dev_pm_ops +EXPORT_SYMBOL drivers/iio/pressure/bmp280 0xca2ee5a6 bmp280_common_probe +EXPORT_SYMBOL drivers/iio/pressure/bmp280 0xea4f849d bmp280_regmap_config +EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0x04c88f40 ms5611_probe +EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0x46541f5e ms5611_remove +EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x6a49507e st_press_common_probe +EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0xc5693133 st_press_get_settings +EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0xf269bdf8 st_press_common_remove +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x04eac136 ib_send_cm_rtu +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x0b00d75a ib_send_cm_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x279a8fe1 ib_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x28d11539 ib_send_cm_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x3ad5da5d ib_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x491d3998 ib_send_cm_mra EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x69824a14 ibcm_reject_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x6c6a8091 ib_send_cm_dreq -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x7df16f41 ib_send_cm_sidr_req -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x7e9ea8e9 ib_send_cm_req -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x8bee277d ib_send_cm_sidr_rep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x8e06e69d ib_cm_notify -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xa0dc99fe ib_cm_insert_listen -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xaf62edaf ib_cm_listen -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xafe8e097 ib_send_cm_drep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xb202a9cc ib_send_cm_rep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xc0bf7665 ib_cm_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xff12a43c ib_send_cm_rtu -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x033f8485 ib_create_qp_security -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0365b809 ib_get_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x03b82f95 rdma_rw_ctx_signature_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x04f97beb rdma_nl_put_driver_u64 -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x096ccaae ib_create_ah_from_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0aeba4d3 rdma_rw_mr_factor +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x72018035 ib_send_cm_sidr_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x8ddad16f ib_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x92e32d7e ib_send_cm_drep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x93844aed ib_send_cm_rej +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xac22ce9b ib_cm_notify +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xcc1ac881 ib_send_cm_dreq +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xdbe8b841 ib_send_cm_sidr_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xe2398678 ib_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xfecfb38a ib_cm_insert_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x005e1058 ib_get_vf_config +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0095cd14 rdma_replace_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x01461c11 ib_qp_usecnt_dec +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x02ab3c96 rdma_query_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x068885f9 rdma_rw_mr_factor +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x093fd849 ib_destroy_srq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0a182e43 rdma_translate_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0b68ad15 rdma_nl_put_driver_u32_hex +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0bc96368 rdma_copy_ah_attr EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c86f5cb ib_sa_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c8beef4 __ib_alloc_cq_any -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0dca6b18 ib_sa_get_mcmember_rec -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0de1e5e0 ib_register_event_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0ea84c5b ib_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0f35b2fe rdma_rw_ctx_wrs -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0fb16cdd rdma_query_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x107922c6 ib_detach_mcast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x10bf180d ib_alloc_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x135a85ba ib_mr_pool_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0d58e595 rdma_query_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0fced9f0 ib_sa_guid_info_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0fe61bc6 rdma_user_mmap_io +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x10bad73e rdma_modify_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x11adfdd0 rdma_restrack_parent_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x11d822b4 ib_modify_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1297c432 ib_create_qp_kernel +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x133736f1 rdma_restrack_count +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1364cbea ib_dispatch_event +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x170224e1 ib_post_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x171b0d20 ib_create_wq EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x184621a4 ib_get_rdma_header_version -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1952caed ib_get_vf_guid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1a1dd9ec rdma_nl_stat_hwcounter_entry -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1a1e868f ib_destroy_qp_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x196ddebc rdma_restrack_set_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x19bca89b ib_get_vf_stats +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1a2f5233 rdma_nl_unicast EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1b037462 __rdma_block_iter_start -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1c739d06 ib_cq_pool_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1d69fa40 rdma_rw_ctx_post -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1eda8a5c rdma_restrack_add -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1f7ddb6f rdma_link_register -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x20711678 rdma_nl_put_driver_string +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1bcf6631 ib_sa_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1bf98b44 ib_mr_pool_destroy EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x22f3cf93 ib_pack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x23b2b3df ib_modify_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x283838cd rdma_restrack_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x28c89ada rdma_destroy_ah_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2b2e8e00 ib_destroy_srq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2c72b92c ib_dereg_mr_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2e20eb7d ib_create_qp_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2eb6caf3 ib_find_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2f4ecd52 rdma_nl_register +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2316565b ib_port_sysfs_get_ibdev_kobj +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x233b228b rdma_rw_ctx_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x248dfd6e rdma_user_mmap_entry_remove +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x25e430a1 ib_find_exact_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x260b1182 ib_create_srq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x26175dbe ib_free_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x27cc0da7 rdma_user_mmap_entry_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x28bbbb85 ib_get_device_fw_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2a712a6e ib_cq_pool_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2b81c11c __ib_alloc_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2bc1aad8 ib_free_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2d2f9c96 ib_rdmacg_try_charge +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2e27b848 rdma_destroy_ah_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2f5858be rdma_restrack_get_byid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2f6ae510 rdma_nl_put_driver_u64_hex EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2fc70b9e ib_get_gids_from_rdma_hdr EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x305e5701 rdma_addr_size_kss -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x31056c44 ib_get_net_dev_by_params -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x326fb984 rdma_set_cq_moderation -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3295a250 ib_attach_mcast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x332797c9 rdma_user_mmap_entry_insert_range -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x33a52881 rdma_restrack_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x349e0941 roce_gid_type_mask_support -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x34f136e8 ib_map_mr_sg_pi -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x36684a83 ib_advise_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x368bff02 ib_free_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x375945b8 ib_mad_kernel_rmpp_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x37a2b344 ib_port_immutable_read -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x38232191 ib_device_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x393521d8 ib_dealloc_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3966adff rdma_restrack_parent_name -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3bb4154b ib_modify_qp_with_udata -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3c2d803c rdma_nl_put_driver_u32_hex -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3c7102c7 ib_get_device_fw_str -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3e874620 ib_create_qp_kernel -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3f0f3577 rdma_nl_unicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3f9c87aa rdma_user_mmap_entry_remove -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3fa9332c rdma_query_gid_table +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x31313ad0 ib_modify_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x33e918a9 rdma_resolve_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x35aad509 rdma_read_gid_l2_fields +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x37693ebb ib_alloc_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x382e01fe rdma_read_gid_attr_ndev_rcu +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x38e0c05d rdma_destroy_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x396cb2ad rdma_restrack_new +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3a74aa0e ib_destroy_qp_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3bce4ccb rdma_link_register EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3fc2387c ib_ud_header_unpack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x41b6ffa8 ib_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x40fc5a8a rdma_rw_ctx_wrs +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x410c6f8b ib_set_vf_guid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x41594284 rdma_put_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x41d3ae1f ib_get_vf_guid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x428197cf ib_dealloc_pd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x430561b5 rdma_restrack_del 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 0x43aac3a6 ib_set_vf_link_state -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4445ae77 __ib_create_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x44ca231c rdma_restrack_add EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x45fb8985 rdma_nl_chk_listeners -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x480cdcae ibdev_printk -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4963c6c1 ib_set_device_ops -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x498bbf32 ib_unregister_device_queued -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4b4b8b08 rdma_translate_ip -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4caa4b2f ib_port_sysfs_get_ibdev_kobj -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4dc2b797 rdma_copy_src_l2_addr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x46791295 ib_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x46e5ffa6 ib_detach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4b999ac7 ib_get_rmpp_segment +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4be952e9 ib_sa_path_rec_get EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e155af0 ib_response_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e2aa808 rdma_put_gid_attr EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e90435c ib_sa_free_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4f4916c1 ib_set_vf_guid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4ff6be9f ib_qp_usecnt_inc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x503bf65e ib_query_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x52f603dc ib_create_srq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4fa059f7 ib_process_cq_direct +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x506a6365 ib_port_immutable_read +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x50de71df ib_drain_sq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5195226e ib_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x523083b0 ib_port_register_client_groups +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5325109e ibdev_info +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x55415b25 ib_device_get_by_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x555408ad ib_set_device_ops EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x55bb02f3 ib_cache_gid_type_str -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x56e53af7 rdma_read_gid_attr_ndev_rcu -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5773afef ib_sg_to_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x59022921 ib_dealloc_pd_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5b06dcdd ib_process_cq_direct -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5b0dbe85 ib_sa_path_rec_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5d434303 rdma_create_user_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6126c915 ib_dispatch_event +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5856ff8e rdma_nl_put_driver_u32 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x59437ed5 ib_drain_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x59cb631d ib_open_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x59d72d1a rdma_alloc_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5a42a33f rdma_rw_ctx_signature_init EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x613b1e2e ib_is_mad_class_rmpp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x613cbe7e ibdev_info -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x61c9c785 rdma_nl_put_driver_u64_hex +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x61848a07 ib_unregister_event_handler EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x61d24c52 ib_rate_to_mbps -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x63d0e549 ib_alloc_mr_integrity -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x646869d5 ib_unregister_mad_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6688fd7b ibnl_put_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6698362b ib_init_ah_attr_from_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x69ae7dfe ib_device_set_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x69c8f1ed rdma_nl_put_driver_u32 -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x69defa12 rdma_move_grh_sgid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x65093fcb ib_dealloc_xrcd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x656b66cd rdma_rw_ctx_post +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x67e4d847 rdma_restrack_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x685cad77 rdma_nl_put_driver_string +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x690dbce9 ibdev_warn +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b304631 ib_mr_pool_put EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b958320 ib_ud_ip4_csum -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6c3e34e3 ib_alloc_xrcd_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6e343243 ib_sa_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6c13d734 rdma_port_get_link_layer +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6c56fd40 ib_map_mr_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6d3540a4 ib_sg_to_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6e5793e9 rdma_create_ah EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f3614b6 rdma_is_zero_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6fa3f469 ib_open_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x72e32e96 rdma_move_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x72f2c239 ib_post_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x71b49eeb rdma_umap_priv_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x727a87ae ib_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x72815d51 ib_mad_kernel_rmpp_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x729ba33c rdma_find_gid_by_port EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x73baf9a2 ib_modify_qp_is_ok -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x742fd89a rdma_umap_priv_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x751161a4 ib_resize_cq EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x75a729a0 rdma_nl_unregister -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x77fe7224 ib_get_cached_port_state -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7853b760 ib_create_wq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x75f688da ib_qp_usecnt_inc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x777a9f55 ib_init_ah_attr_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7853179c ib_query_srq EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x787ccc4c ib_get_mad_data_offset -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x78d457f7 rdma_read_gid_l2_fields -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7958729a rdma_rw_ctx_destroy_signature -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x796e3f9c rdma_restrack_set_name -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7c9fde49 rdma_user_mmap_entry_insert -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7e5ff587 ib_get_vf_stats -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7f010035 ib_modify_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7f7d07c3 rdma_nl_unicast_wait -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8040402b ib_sa_guid_info_rec_query -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8229fa5f ib_free_recv_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8481a59a ib_set_client_data -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x84d2321b ib_get_cached_subnet_prefix -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x86962de0 ib_check_mr_status +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7b79c082 rdma_link_unregister +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7d768512 rdma_roce_rescan_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7d8619be ib_mr_pool_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7ffe6bcb ibnl_put_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x82973f46 ib_rdmacg_uncharge +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x83322034 ib_register_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x840d273e roce_gid_type_mask_support +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x841d61b5 ib_modify_qp_with_udata +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x84bb27c0 ib_alloc_xrcd_user EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x86cef180 rdma_addr_size -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x882477cd rdma_create_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8d2c75a4 rdma_restrack_new -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8d37a0df ib_mr_pool_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8e307b8a ib_unregister_device_and_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8874ed8f __ib_create_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x88bb0c1e ib_query_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x88d4de2e ib_get_cached_lmc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8a7647da ib_dealloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8b4d97db rdma_rw_ctx_destroy_signature EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8e7528da __rdma_block_iter_next +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8ef4ce0d rdma_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8fea3b7b ib_destroy_cq_user EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90e807c7 ib_cache_gid_parse_type_str -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x917608e1 ib_resize_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9201eb84 ib_port_unregister_client_groups -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x92edb87d rdma_link_unregister -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9924262b rdma_roce_rescan_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9d465118 ib_drain_sq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9e056bf2 rdma_resolve_ip -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9ede5d1c ib_device_get_by_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9fe0e1ac __ib_alloc_pd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa09bdaac rdma_alloc_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa2fc08c8 ib_get_eth_speed +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x91c55cbc rdma_user_mmap_entry_get_pgoff +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x923142d0 __ib_alloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x963bd235 ib_port_unregister_client_groups +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x973fa0f6 ib_find_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9cfbc9a8 ib_check_mr_status +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9ee60c16 rdma_move_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa1971a1a rdma_user_mmap_entry_get EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa432baf6 ib_unpack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa4dccf38 ib_find_exact_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa538cadd ib_modify_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa72ef073 ib_get_vf_config -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa7709406 ib_rdmacg_try_charge -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa81f0ef8 ib_init_ah_from_mcmember -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xab66e257 ib_register_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xabe30fba ib_close_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xac00161c rdma_restrack_del -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xac5d19fc rdma_replace_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xad2de3f7 rdma_user_mmap_io -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xad744022 ib_reg_user_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa54be4dd ib_device_get_by_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa66cc4ec ib_find_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa743db29 ib_mr_pool_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa992e6aa ib_init_ah_from_mcmember +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa9d709ab rdma_addr_cancel EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae956dce ib_rate_to_mult -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaf651e9a ibdev_alert +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb089ec1f ib_modify_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb0b6bbee rdma_hold_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb133cfd0 ib_register_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb1c0395f ib_drain_rq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb243c6cf rdma_user_mmap_entry_insert EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb36e4148 ib_sa_pack_path -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb47c6e13 ib_get_rmpp_segment -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb52ac802 rdma_port_get_link_layer -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb54556e3 rdma_query_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb54ba9c5 ib_register_mad_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb550d8e4 rdma_init_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb5bbb82a rdma_addr_cancel -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb77cbb62 ib_unregister_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb6572870 ibdev_printk +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb6869aad ib_sa_get_mcmember_rec EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb7852a05 ib_ud_header_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb9cef47f rdma_find_gid_by_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb9ea7a41 ib_qp_usecnt_dec -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xba7d3df3 ib_create_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbc781da8 rdma_find_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbe6250cd rdma_rw_ctx_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbe739832 ib_port_register_client_groups -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc368ef14 _ib_alloc_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc38efc7a ib_mr_pool_destroy -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc519c7f3 ib_query_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc52997e5 ib_drain_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc5b84e4f rdma_modify_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc78ef21c rdma_get_gid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc7c47f05 ib_init_ah_attr_from_path -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc865b053 ibdev_notice -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc9303d77 ib_destroy_wq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcbc8b37b ib_cq_pool_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcc7736c8 rdma_read_gid_hw_context -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xce095920 ib_query_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xce36a9a5 ib_query_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xce932b08 rdma_user_mmap_entry_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcf40666e ib_device_get_by_name -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcf821903 rdma_rw_ctx_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb9b250cf ib_query_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xba71a89e ib_get_eth_speed +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbab3a5ea rdma_nl_unicast_wait +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbc017d46 ib_advise_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbdb95689 ib_modify_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbdc3828f ib_modify_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbdf1a2d5 ibdev_emerg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbf8b0d0f ibdev_crit +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbffc762a ib_alloc_mr_integrity +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc0c93662 ib_reg_user_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc0e24325 ib_init_ah_attr_from_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc11ee37c ib_get_cached_port_state +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc54a21e6 ib_unregister_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc5619835 rdma_move_grh_sgid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc65745cb ib_device_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc6a378c1 _ib_alloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc6b46b05 ib_unregister_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc93fb58b ibnl_put_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc9e1550b ib_get_cached_subnet_prefix +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xca36c3b3 ib_dereg_mr_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xca3eb70d ib_free_recv_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcc50ff18 ib_get_net_dev_by_params EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcfbc053b ib_unregister_driver -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcfdb1484 ib_free_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd06676df rdma_user_mmap_entry_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd5e68187 ibdev_warn +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd0557b7a rdma_user_mmap_entry_insert_range +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd0f89ffe ibdev_err +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd1a45d42 rdma_create_user_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd25edc1e ib_dma_virt_map_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd5af107b rdma_nl_put_driver_u64 EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd6636ca6 rdma_addr_size_in6 -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd6ce247e ib_get_cached_lmc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd6e6e21d ibdev_err -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd83ba20d ib_map_mr_sg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd86356d8 ib_modify_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd9e5cb08 ib_create_send_mad EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda0d50ec ib_sa_cancel_query -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xddd230f6 ibdev_crit -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdf2cd774 rdma_dev_access_netns -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdfeb9c2c __ib_alloc_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe01cd287 rdma_hold_gid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe0df110d rdma_copy_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe21ce155 rdma_restrack_count -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe2846d79 ib_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe3bed32e ib_dma_virt_map_sg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe42db198 ib_unregister_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda467829 ib_map_mr_sg_pi +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdab5932d ib_create_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdad09179 rdma_init_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdb151a8a ib_attach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdbe09093 ibdev_alert +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdc0bbd89 ib_query_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdc7fcb84 ib_unregister_device_queued +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdde1c3d3 rdma_read_gid_hw_context +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdeaa467f rdma_query_gid_table +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xded80626 ib_create_qp_security +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdf4bdeee ibdev_notice +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdfde8e82 ib_device_set_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe1835c5f rdma_dev_access_netns +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe1f1893f rdma_rw_ctx_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe29b8448 rdma_copy_src_l2_addr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe3eb2320 rdma_nl_multicast EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5840ec6 ib_wc_status_msg EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5a78c1e ib_sa_unpack_path -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe639a8c0 ib_destroy_cq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe63e1d31 ib_modify_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe6b9a2cb rdma_set_cq_moderation +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe6f40886 ib_get_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe7566ed8 ib_unregister_device_and_put EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe7b52e5f mult_to_ib_rate -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9b0adee ib_find_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe7e3428b rdma_nl_register +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe86e1ed3 rdma_restrack_put EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9e799fc ib_ud_header_pack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xee24ed25 ib_drain_rq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf1205ec6 rdma_restrack_get_byid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf332cfc1 ib_mr_pool_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf39faa84 ibnl_put_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeba3f3ea ib_destroy_wq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeffae886 __ib_alloc_cq_any EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf5dedb30 rdma_node_get_transport -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf62a6859 rdma_nl_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf6d5b384 rdma_destroy_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf612c7cb ib_set_client_data EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf6ed3334 ib_event_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfb7ce032 ibdev_emerg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfcc87f51 ib_rdmacg_uncharge -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfdf485d0 rdma_user_mmap_entry_get_pgoff -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfebe856a ib_dealloc_xrcd_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x0a7905ed ib_umem_copy_from -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x0e262302 uverbs_copy_to_struct_or_zero -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1547c4fc uverbs_uobject_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf8729190 ib_register_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf88ee4e4 rdma_get_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf8c2852a ib_create_qp_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfac17676 ib_cq_pool_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfc374b3a ib_set_vf_link_state +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfdaad14d ib_close_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfe126cd2 rdma_nl_stat_hwcounter_entry +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x020437e5 uverbs_get_flags64 +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x022fc7c5 _uverbs_get_const_signed +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x086d4162 uverbs_idr_class +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x0939623b ib_copy_qp_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x0dd87fde flow_resources_add +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x103cdcb1 ib_umem_odp_map_dma_and_lock +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x167f2f7b ib_umem_get_peer +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1692af9f uverbs_copy_to_struct_or_zero EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1b54bd5d ib_copy_path_rec_from_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1b5d9011 ib_umem_odp_alloc_child -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1d643ddb uverbs_idr_class -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x26c63c62 ib_umem_odp_map_dma_and_lock -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x36b7bff0 uverbs_destroy_def_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x3dc239f1 uverbs_finalize_uobj_create -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x3e0c2090 ib_umem_dmabuf_map_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x43d6a711 uverbs_fd_class -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5b644344 ib_umem_stop_invalidation_notifier -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x625273dd ib_umem_odp_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x2d3e5a49 ib_umem_odp_alloc_implicit +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x33e1545f ib_umem_dmabuf_unmap_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x3c90b864 ib_umem_odp_alloc_child +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x56bd82aa ib_umem_odp_unmap_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5bf4d44b ib_uverbs_get_ucontext_file +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5cfd16bf uverbs_uobject_put EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x63057f4b ib_copy_path_rec_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x688a3726 uverbs_get_flags64 -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x6b1aff76 ib_umem_dmabuf_unmap_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x76626df8 ib_umem_dmabuf_get -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x77fc402e ib_umem_activate_invalidation_notifier -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7f9494c1 ib_uverbs_get_ucontext_file -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x804df23a ib_umem_get_peer -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x82c9c235 ib_umem_get -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x8737f163 _uverbs_alloc -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x8866aeb7 flow_resources_add -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x98ea5e53 ib_umem_release -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x9c6d06d7 ib_umem_find_best_pgsz -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x9cede777 _uverbs_get_const_unsigned -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x9ddd2259 ib_umem_odp_release -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa091c97a ib_register_peer_memory_client -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa73bd5b2 ib_umem_odp_unmap_dma_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa9435434 uverbs_copy_to -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xaa1cc563 flow_resources_alloc -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb5d8fa89 ib_umem_odp_alloc_implicit +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x718b9fe1 uverbs_get_flags32 +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7799bd19 ib_umem_odp_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x79d4bc3f ib_register_peer_memory_client +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7c5655e0 ib_copy_ah_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7dec5a9c _uverbs_alloc +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7e803426 ib_umem_stop_invalidation_notifier +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x81959a2f ib_umem_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x8bf6dcd4 ib_umem_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x8ccd600b ib_umem_copy_from +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x8f7eac53 uverbs_destroy_def_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x9087574c uverbs_fd_class +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x91b197bd uverbs_uobject_fd_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x98fa0b9a ib_umem_activate_invalidation_notifier +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa697aee8 ib_umem_find_best_pgsz +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa72c01c3 ib_uverbs_flow_resources_free +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb327f1b8 ib_umem_odp_release EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xbde5c050 ib_unregister_peer_memory_client -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd08344a8 uverbs_uobject_fd_release -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xdb0d13ce ib_uverbs_flow_resources_free -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf024c345 ib_copy_qp_attr_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf253f6de _uverbs_get_const_signed -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf86f92fb uverbs_get_flags32 -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xff1d325d ib_copy_ah_attr_to_user -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x0eb569da iw_cm_connect -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x4da26069 iw_create_cm_id -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x85ac7556 iw_cm_accept -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x8c3096ac iw_cm_reject -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xc070b876 iw_cm_disconnect -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xe038b5d8 iw_destroy_cm_id -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xe77d2c09 iw_cm_listen -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xef6ae661 iw_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc28a1de5 _uverbs_get_const_unsigned +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xddcb8a21 uverbs_copy_to +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe54c5359 ib_umem_dmabuf_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xebbe93b2 flow_resources_alloc +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf7603969 ib_umem_dmabuf_map_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf7976851 uverbs_finalize_uobj_create +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x111a36c7 iw_cm_disconnect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x1298d3a7 iw_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x1471236b iw_cm_connect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6b00fadc iw_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x7c18a4f7 iw_cm_reject +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x9bcdd367 iw_cm_accept +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xcc9756b2 iw_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd5a345e1 iw_cm_init_qp_attr EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf3df871f iwcm_reject_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0581d21a rdma_create_qp -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1313f2cd rdma_disconnect -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x19871c97 rdma_get_service_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x19ad56ce rdma_res_to_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1b8feb63 rdma_resolve_route -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x280c0f3a rdma_accept_ece -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2c8e6798 rdma_lock_handler -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3127a07c __rdma_create_kernel_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4774135e rdma_listen -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x48807e69 rdma_set_min_rnr_timer -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5af6982a rdma_connect -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6ce6c095 rdma_leave_multicast -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x70dac1b3 rdma_destroy_qp -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7dec646a rdma_unlock_handler -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7f031038 rdma_consumer_reject_data -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7fe060b8 rdma_set_service_type -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x81410195 rdma_connect_ece +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x09a9dcd5 rdma_notify +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1242b5ac rdma_listen +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1601130b rdma_connect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x203c53a9 rdma_set_afonly +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x28cb3eaa rdma_destroy_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x29a36d3e rdma_set_reuseaddr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x33063d9c rdma_resolve_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x33f1c383 rdma_bind_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3ee97a6f rdma_unlock_handler +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x455e299d rdma_read_gids +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4679052d rdma_consumer_reject_data +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4dec3f78 rdma_create_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x541e94d0 __rdma_create_kernel_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x589e9afc rdma_resolve_route +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x67a55ea9 rdma_create_user_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6a9aad07 rdma_connect_ece +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x83d4993c rdma_connect_locked +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8467e3b1 rdma_init_qp_attr EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9855fe1d rdma_set_ib_path -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9d709045 rdma_connect_locked -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa4dc0820 rdma_join_multicast -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xaddd29f1 rdma_accept -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xae6b92e9 rdma_set_reuseaddr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xaec05464 rdma_read_gids -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc939c80f rdma_set_ack_timeout -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xcb14adb8 rdma_resolve_addr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd0a7d1fe rdma_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd67ffd78 rdma_reject -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xda88674b rdma_create_user_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xdc97f744 rdma_iw_cm_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xdd5aa48b rdma_notify -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe45840db rdma_bind_addr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf618aaae rdma_destroy_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xfac3940c rdma_reject_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xfd3eab17 rdma_set_afonly -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x226dbbaf rtrs_clt_request -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x25a45e3a rtrs_clt_rdma_cq_direct -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x3976fbd5 rtrs_clt_put_permit -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x83468ee7 rtrs_clt_open -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x84589b76 rtrs_clt_close -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xad687f22 rtrs_clt_get_permit -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xd4e775fc rtrs_clt_query -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x1924cc0e rtrs_ib_dev_put -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x1f969488 rtrs_rdma_dev_pd_deinit +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9a83a4ff rdma_accept_ece +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xaf96fec6 rdma_res_to_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb1729c5f rdma_set_service_type +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb5a84b34 rdma_leave_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xbb12515c rdma_lock_handler +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xbfd7a15c rdma_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc4410f90 rdma_set_min_rnr_timer +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc7fb244c rdma_reject_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xcb816402 rdma_accept +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd0e4e9cd rdma_reject +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd366c764 rdma_get_service_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xda00c586 rdma_set_ack_timeout +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe3f30329 rdma_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf9e9db65 rdma_disconnect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xfcd53fee rdma_iw_cm_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xfd251691 rdma_set_ib_path +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x1360ce89 rtrs_clt_put_permit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x6a84ce4d rtrs_clt_open +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x74faaded rtrs_clt_close +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x77b55735 rtrs_clt_rdma_cq_direct +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x77d2dd81 rtrs_clt_get_permit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xcaac7c90 rtrs_clt_request +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xeaa49c40 rtrs_clt_query +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x17e8c8da rtrs_ib_dev_put EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x242a8646 rtrs_addr_to_str +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x4556119a rtrs_rdma_dev_pd_init +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x458166a6 rtrs_rdma_dev_pd_deinit EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x5b01e41d sockaddr_to_str -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x666acc47 rtrs_rdma_dev_pd_init EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x887302f3 rtrs_addr_to_sockaddr -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xd46fe5c5 rtrs_ib_dev_find_or_add -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x1cd370c2 rtrs_srv_close -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x262bc00a rtrs_srv_resp_rdma -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x2640eaeb rtrs_srv_get_sess_name -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x2a3ee546 rtrs_srv_get_queue_depth -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x721ac386 rtrs_srv_open -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xa06cd6aa rtrs_srv_set_sess_priv -EXPORT_SYMBOL drivers/input/gameport/gameport 0x02cf9964 gameport_close -EXPORT_SYMBOL drivers/input/gameport/gameport 0x036cff67 gameport_stop_polling -EXPORT_SYMBOL drivers/input/gameport/gameport 0x2ff5d547 gameport_start_polling -EXPORT_SYMBOL drivers/input/gameport/gameport 0x40e1ab13 gameport_unregister_port -EXPORT_SYMBOL drivers/input/gameport/gameport 0x58e07df8 gameport_set_phys -EXPORT_SYMBOL drivers/input/gameport/gameport 0x6135288e gameport_open -EXPORT_SYMBOL drivers/input/gameport/gameport 0x98047e9e __gameport_register_port -EXPORT_SYMBOL drivers/input/gameport/gameport 0xcaeafe13 gameport_unregister_driver -EXPORT_SYMBOL drivers/input/gameport/gameport 0xdb930163 __gameport_register_driver -EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x9ddfc22c iforce_init_device -EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0xa66b68e3 iforce_send_packet -EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0xf2ed8c85 iforce_process_packet -EXPORT_SYMBOL drivers/input/matrix-keymap 0xcc80102f matrix_keypad_build_keymap -EXPORT_SYMBOL drivers/input/misc/ad714x 0x0d688da6 ad714x_probe -EXPORT_SYMBOL drivers/input/misc/ad714x 0x5c197a01 ad714x_enable -EXPORT_SYMBOL drivers/input/misc/ad714x 0xa0fc8201 ad714x_disable -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x87b77810 cma3000_init +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xea4efdd9 rtrs_ib_dev_find_or_add +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x134ddbaf rtrs_srv_get_queue_depth +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x314dce5f rtrs_srv_open +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x5dbe6e49 rtrs_srv_get_sess_name +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xd2209b46 rtrs_srv_set_sess_priv +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xf12a8793 rtrs_srv_resp_rdma +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xf3fe05cc rtrs_srv_close +EXPORT_SYMBOL drivers/input/gameport/gameport 0x0e15fd0d __gameport_register_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0x2d805644 gameport_stop_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0x4dfe22bd gameport_close +EXPORT_SYMBOL drivers/input/gameport/gameport 0x59d6fd3b gameport_open +EXPORT_SYMBOL drivers/input/gameport/gameport 0x59ed783e gameport_unregister_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0x626f6b6d gameport_unregister_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0x72f81c6f gameport_start_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0x7ec820e9 __gameport_register_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0xc3ac197c gameport_set_phys +EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x13519d05 iforce_send_packet +EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0xc9e195e0 iforce_init_device +EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0xfa619743 iforce_process_packet +EXPORT_SYMBOL drivers/input/matrix-keymap 0x36eb0154 matrix_keypad_build_keymap +EXPORT_SYMBOL drivers/input/misc/ad714x 0x03396ef5 ad714x_disable +EXPORT_SYMBOL drivers/input/misc/ad714x 0x9836aec9 ad714x_probe +EXPORT_SYMBOL drivers/input/misc/ad714x 0xd67c1431 ad714x_enable +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x3123ec5b cma3000_init EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x892d76b2 cma3000_resume EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x89d9444e cma3000_exit EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0xca3f100a cma3000_suspend -EXPORT_SYMBOL drivers/input/rmi4/rmi_core 0x89c3daa8 rmi_unregister_transport_device -EXPORT_SYMBOL drivers/input/sparse-keymap 0x078c6d92 sparse_keymap_report_entry -EXPORT_SYMBOL drivers/input/sparse-keymap 0x27255c48 sparse_keymap_entry_from_keycode -EXPORT_SYMBOL drivers/input/sparse-keymap 0x920a6f69 sparse_keymap_entry_from_scancode -EXPORT_SYMBOL drivers/input/sparse-keymap 0xbfe49dca sparse_keymap_setup -EXPORT_SYMBOL drivers/input/sparse-keymap 0xf6d686c3 sparse_keymap_report_event -EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x7c5f9500 ad7879_pm_ops -EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x81b75132 ad7879_probe -EXPORT_SYMBOL drivers/interconnect/qcom/icc-smd-rpm 0x311ecf9b qnoc_probe -EXPORT_SYMBOL drivers/interconnect/qcom/icc-smd-rpm 0xd80d01f8 qnoc_remove -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x353c8bf1 detach_capi_ctr -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x994a5644 capi_ctr_ready -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe7233b9c capi_ctr_handle_message -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xf1fdf1e8 attach_capi_ctr -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xfbe20d51 capi_ctr_down +EXPORT_SYMBOL drivers/input/rmi4/rmi_core 0x389d59be rmi_unregister_transport_device +EXPORT_SYMBOL drivers/input/sparse-keymap 0x315de51a sparse_keymap_report_event +EXPORT_SYMBOL drivers/input/sparse-keymap 0x325fab94 sparse_keymap_entry_from_keycode +EXPORT_SYMBOL drivers/input/sparse-keymap 0xb046eac2 sparse_keymap_entry_from_scancode +EXPORT_SYMBOL drivers/input/sparse-keymap 0xbc5608b8 sparse_keymap_report_entry +EXPORT_SYMBOL drivers/input/sparse-keymap 0xf92d088e sparse_keymap_setup +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x7a5386a7 ad7879_probe +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0xd22dc456 ad7879_pm_ops +EXPORT_SYMBOL drivers/interconnect/qcom/icc-smd-rpm 0x17aef430 qnoc_remove +EXPORT_SYMBOL drivers/interconnect/qcom/icc-smd-rpm 0xbbda26b6 qnoc_probe +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x079598b7 capi_ctr_handle_message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x263e15c9 detach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x31e84f67 capi_ctr_ready +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xc1917c36 capi_ctr_down +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xcd468d60 attach_capi_ctr EXPORT_SYMBOL drivers/isdn/hardware/mISDN/isdnhdlc 0x27c58fd5 isdnhdlc_decode EXPORT_SYMBOL drivers/isdn/hardware/mISDN/isdnhdlc 0x4644eea5 isdnhdlc_out_init EXPORT_SYMBOL drivers/isdn/hardware/mISDN/isdnhdlc 0x5b835a58 isdnhdlc_rcv_init EXPORT_SYMBOL drivers/isdn/hardware/mISDN/isdnhdlc 0xef4ee223 isdnhdlc_encode -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x8077eae0 mISDNipac_irq -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x8e8bae0d mISDNisac_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xad04efcd mISDNipac_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xbcb78ed4 mISDNisac_irq -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0xe7296c8d mISDNisar_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0xf9fc92af mISDNisar_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x02446025 mISDNipac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x0289d42a mISDNipac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xa8a71f18 mISDNisac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xcb58272d mISDNisac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0xe36a868f mISDNisar_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0xe9a6b374 mISDNisar_init EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x03a68066 mISDN_FsmRestartTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x043e0e50 mISDN_register_Bprotocol -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1531da48 recv_Echannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x21c203ee mISDN_unregister_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x0478e220 mISDN_initdchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x11bb740b mISDN_initbchannel EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2348cc3c mISDN_FsmFree EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x26236de8 mISDN_clock_update EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x30d25b0d mISDN_FsmDelTimer EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x313b1fde mISDN_FsmAddTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x3651faaa recv_Bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x3700584c recv_Bchannel_skb -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x3733f611 mISDN_register_device -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x382c1c5c mISDN_initbchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x4e7a3a1b mISDN_initdchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x3d33f2f4 mISDN_clear_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x3dc6f463 recv_Dchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x4b1814b7 mISDN_freebchannel EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x50c2230c mISDN_FsmChangeState EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x588886a6 l1_event +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x5a5b48ac mISDN_unregister_device EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6047df40 mISDN_FsmInitTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x66bed229 mISDN_freedchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6c05d33d bchannel_senddata -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6cb9b2b9 mISDNDevName4ch -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6f9a7da6 dchannel_senddata -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7a43a17c get_next_bframe -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x858b5b3b mISDN_ctrl_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x647f385b recv_Echannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6efcd0d1 get_next_bframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x725802cd mISDN_register_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x78512ade mISDNDevName4ch +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8cf5c060 dchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x949191af mISDN_register_device EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9c928457 mISDN_FsmNew -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xafa157ba create_l1 -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb0963c82 queue_ch_frame -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb5b21f92 recv_Dchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xbe213df4 mISDN_freebchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb0265d13 get_next_dframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb985fb83 recv_Bchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xba7bc8fe mISDN_unregister_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc06e846d recv_Dchannel EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc3401729 mISDN_register_clock -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xca4addbc mISDN_unregister_Bprotocol EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd285995f mISDN_clock_get +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd4bf9c55 bchannel_senddata EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd5145151 mISDN_FsmEvent -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd9761957 recv_Dchannel_skb -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd9ea7abd get_next_dframe -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xdd9ebcf6 bchannel_get_rxbuf +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xdfa264df create_l1 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe31b1951 mISDN_freedchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe35cdc27 queue_ch_frame +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe611f282 recv_Bchannel EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe8f617eb mISDN_unregister_clock -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf124ba9c mISDN_clear_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf2b97657 mISDN_ctrl_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xffba5a6d bchannel_get_rxbuf EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x01087af0 mISDN_dsp_element_unregister EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x93df9e4b dsp_audio_law_to_s32 EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xb07a21b8 dsp_audio_s16_to_law EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xb98308d8 mISDN_dsp_element_register EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0x54a12ec4 ti_lmu_common_set_ramp -EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0xb9b76f1c ti_lmu_common_get_ramp_params +EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0x60b7b90c ti_lmu_common_get_ramp_params +EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0xc6901f62 ti_lmu_common_get_brt_res EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0xced72aae ti_lmu_common_set_brightness -EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0xeba34d68 ti_lmu_common_get_brt_res -EXPORT_SYMBOL drivers/mailbox/mtk-cmdq-mailbox 0x80b398b1 cmdq_get_shift_pa -EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0x1caf4997 omap_mbox_enable_irq -EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0xcf735b3c omap_mbox_disable_irq -EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0xf9077eba omap_mbox_request_channel -EXPORT_SYMBOL drivers/md/dm-log 0x20edd2cc dm_dirty_log_type_unregister -EXPORT_SYMBOL drivers/md/dm-log 0x2b8e8bda dm_dirty_log_create -EXPORT_SYMBOL drivers/md/dm-log 0x9e35bb29 dm_dirty_log_destroy -EXPORT_SYMBOL drivers/md/dm-log 0xa8ac7cf5 dm_dirty_log_type_register -EXPORT_SYMBOL drivers/md/dm-snapshot 0x03244fc0 dm_snap_origin -EXPORT_SYMBOL drivers/md/dm-snapshot 0x234cca66 dm_snap_cow -EXPORT_SYMBOL drivers/md/dm-snapshot 0x3557c39d dm_exception_store_destroy -EXPORT_SYMBOL drivers/md/dm-snapshot 0x689511f5 dm_exception_store_type_register -EXPORT_SYMBOL drivers/md/dm-snapshot 0x8725b46c dm_exception_store_create -EXPORT_SYMBOL drivers/md/dm-snapshot 0xb6b2081e dm_exception_store_type_unregister -EXPORT_SYMBOL drivers/md/raid456 0x6df2ccde r5c_journal_mode_set -EXPORT_SYMBOL drivers/md/raid456 0xbc6ab104 raid5_set_cache_size -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x0dcc5a65 flexcop_sram_set_dest -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x485f4f90 flexcop_sram_ctrl -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x530552bc flexcop_device_kmalloc -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x5e97b407 flexcop_device_initialize -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x646b3a7c flexcop_device_kfree -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x76bfa3b9 flexcop_eeprom_check_mac_addr -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x7b8d94cd flexcop_pass_dmx_packets -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x8ee6cafd flexcop_device_exit -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x91dca67c flexcop_pid_feed_control -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xbdca784a flexcop_dump_reg -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xc8be56c4 flexcop_i2c_request -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xd6458a5b flexcop_wan_set_speed -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xea276652 flexcop_pass_dmx_data -EXPORT_SYMBOL drivers/media/common/cx2341x 0x01912bed cx2341x_handler_set_busy +EXPORT_SYMBOL drivers/mailbox/mtk-cmdq-mailbox 0xf58db960 cmdq_get_shift_pa +EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0x01cb6cb9 omap_mbox_request_channel +EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0x9a7ed70b omap_mbox_disable_irq +EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0xe9287720 omap_mbox_enable_irq +EXPORT_SYMBOL drivers/md/dm-log 0x1076be93 dm_dirty_log_create +EXPORT_SYMBOL drivers/md/dm-log 0x53f58272 dm_dirty_log_destroy +EXPORT_SYMBOL drivers/md/dm-log 0x5b623cdd dm_dirty_log_type_unregister +EXPORT_SYMBOL drivers/md/dm-log 0x61fa4cd1 dm_dirty_log_type_register +EXPORT_SYMBOL drivers/md/dm-snapshot 0x06dfb06e dm_exception_store_type_unregister +EXPORT_SYMBOL drivers/md/dm-snapshot 0x2e282604 dm_snap_origin +EXPORT_SYMBOL drivers/md/dm-snapshot 0x8a9ac09c dm_snap_cow +EXPORT_SYMBOL drivers/md/dm-snapshot 0xa998ece9 dm_exception_store_destroy +EXPORT_SYMBOL drivers/md/dm-snapshot 0xd18abc9d dm_exception_store_type_register +EXPORT_SYMBOL drivers/md/dm-snapshot 0xdae6bdb8 dm_exception_store_create +EXPORT_SYMBOL drivers/md/raid456 0x21b6f58b r5c_journal_mode_set +EXPORT_SYMBOL drivers/md/raid456 0xf1f9f714 raid5_set_cache_size +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x067220d4 flexcop_dump_reg +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x144df2bd flexcop_pass_dmx_data +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x32ff7310 flexcop_i2c_request +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x52010bb1 flexcop_sram_ctrl +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x6567921e flexcop_device_exit +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x6cd51b06 flexcop_eeprom_check_mac_addr +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x7c6bdd9d flexcop_device_initialize +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x7d1b60a3 flexcop_device_kmalloc +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x90eb8b9c flexcop_sram_set_dest +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x95c35afd flexcop_pid_feed_control +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xb6aa290f flexcop_device_kfree +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xc1ea493b flexcop_pass_dmx_packets +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xfe0d33d1 flexcop_wan_set_speed +EXPORT_SYMBOL drivers/media/common/cx2341x 0x06198ed8 cx2341x_handler_setup 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 0x3642852f cx2341x_handler_setup +EXPORT_SYMBOL drivers/media/common/cx2341x 0x41b366e1 cx2341x_handler_set_busy EXPORT_SYMBOL drivers/media/common/cx2341x 0x55aa7c5f cx2341x_mpeg_ctrls -EXPORT_SYMBOL drivers/media/common/cx2341x 0x64598271 cx2341x_handler_init +EXPORT_SYMBOL drivers/media/common/cx2341x 0x785a6974 cx2341x_handler_init EXPORT_SYMBOL drivers/media/common/cx2341x 0x7b4dd2cb cx2341x_fill_defaults EXPORT_SYMBOL drivers/media/common/cx2341x 0xb2b9efb7 cx2341x_ext_ctrls EXPORT_SYMBOL drivers/media/common/cx2341x 0xdbc5583a cx2341x_update -EXPORT_SYMBOL drivers/media/common/cx2341x 0xddf40e6f cx2341x_handler_set_50hz EXPORT_SYMBOL drivers/media/common/cx2341x 0xe1fe1432 cx2341x_log_status -EXPORT_SYMBOL drivers/media/common/cypress_firmware 0x6eede401 cypress_load_firmware +EXPORT_SYMBOL drivers/media/common/cx2341x 0xe4b8a98f cx2341x_handler_set_50hz +EXPORT_SYMBOL drivers/media/common/cypress_firmware 0xf0184927 cypress_load_firmware +EXPORT_SYMBOL drivers/media/common/ttpci-eeprom 0x38bbe559 ttpci_eeprom_parse_mac EXPORT_SYMBOL drivers/media/common/ttpci-eeprom 0x693e74ba ttpci_eeprom_decode_mac -EXPORT_SYMBOL drivers/media/common/ttpci-eeprom 0xdae35420 ttpci_eeprom_parse_mac EXPORT_SYMBOL drivers/media/common/tveeprom 0x0dbf0296 tveeprom_hauppauge_analog -EXPORT_SYMBOL drivers/media/common/tveeprom 0x6b3703b7 tveeprom_read +EXPORT_SYMBOL drivers/media/common/tveeprom 0x6c041f59 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 0x330f1a38 vb2_verify_memory_type -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0xb418e847 vb2_buffer_in_use EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0xc2d9e090 get_vaddr_frames EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0xc5e5573a frame_vector_to_pages +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0xcee1e474 vb2_verify_memory_type +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0xd2f3665f vb2_buffer_in_use EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0xdffb744b frame_vector_to_pfns -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x050fc21e vb2_dvb_find_frontend -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x2af1f578 vb2_dvb_unregister_bus -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x3aa667ae vb2_dvb_get_frontend -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x5ad364d1 vb2_dvb_register_bus -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xbf9d599d vb2_dvb_alloc_frontend -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xff9990ef vb2_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x07759f10 vb2_dvb_get_frontend +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x181b09dd vb2_dvb_register_bus +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x76bd9d56 vb2_dvb_alloc_frontend +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xdbbcfb21 vb2_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xddd375fa vb2_dvb_unregister_bus +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xf96d1e2f vb2_dvb_find_frontend EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-memops 0xa21fa765 vb2_create_framevec EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-memops 0xccd197c7 vb2_destroy_framevec -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-v4l2 0x7fcedd4b vb2_querybuf +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-v4l2 0x13cc6b54 vb2_querybuf EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x08733236 intlog10 -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x0fdb12fb dvb_dmxdev_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1399a404 dvb_remove_device -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x176d59a7 dvb_ca_en50221_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x0e45b542 dvb_dmxdev_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x114ffbf1 dvb_ca_en50221_frda_irq EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x18acd31f dvb_dmx_swfilter_packets -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1f154f73 dvb_generic_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x21c51a87 dvb_frontend_reinitialise +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x21fcfb3c dvb_net_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x29ad29e5 dvb_unregister_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2aab60c9 dvb_ca_en50221_camready_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2bf5a01f dvb_ca_en50221_release EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2f5cdf80 dvb_ringbuffer_write -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x30544c20 dvb_register_adapter EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3b93d71a dvb_frontend_sleep_until -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3e312670 dvb_unregister_device -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4072f35d dvb_free_device -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x51a22a1b dvb_ca_en50221_camchange_irq -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x53532173 dvb_net_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x477b55e4 dvb_generic_ioctl +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x488e051f dvb_generic_open +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4e7c9cc1 dvb_unregister_adapter 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 0x604f5424 dvb_frontend_suspend -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x608e550f dvb_unregister_adapter EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6181aec0 dvb_ringbuffer_flush_spinlock_wakeup +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x680c0736 dvb_net_init EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6a9f708a dvb_dmx_swfilter_204 -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x728cf455 dvb_register_device -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7c5bb2e6 dvb_generic_ioctl -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x885456c6 dvb_frontend_resume +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x82335f4e dvb_register_frontend 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 0xa143e75f dvb_frontend_detach EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa4235824 dvb_dmx_swfilter_raw -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa7b4843c dvb_unregister_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa7bfed7a dvb_frontend_suspend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xad3a9462 dvb_frontend_detach +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb035e693 dvb_generic_release EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb3352dd2 dvb_ringbuffer_empty -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb92be97c dvb_ca_en50221_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xbe1cc116 dvb_frontend_reinitialise -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc215c451 dvb_net_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb96960ad dvb_dmxdev_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xbb8abc60 dvb_free_device EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc3f679f9 dvb_ringbuffer_write_user -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xcc89b9b3 dvb_dmxdev_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd3776550 dvb_register_frontend -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xdf081708 dvb_ca_en50221_camready_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc4280cff dvb_remove_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xccabf474 dvb_unregister_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe07c0760 dvb_ca_en50221_camchange_irq EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe138ce6b dvb_ringbuffer_avail -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe77782cc dvb_ca_en50221_frda_irq EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xebbc2d9b dvb_ringbuffer_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xeced6f86 dvb_register_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xeeb92be9 dvb_register_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf37f213b dvb_frontend_resume EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfb09f39a dvb_ringbuffer_read +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfb2a9180 dvb_ca_en50221_init 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 0xfffe5240 dvb_generic_open -EXPORT_SYMBOL drivers/media/dvb-frontends/ascot2e 0xdf0ae958 ascot2e_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/atbm8830 0x737a45e5 atbm8830_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x01fe87b7 au8522_readreg -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x19b275b6 au8522_release_state -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x28198d46 au8522_sleep -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x492423fb au8522_get_state -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x5b0c35ba au8522_writereg -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xabfdf10b au8522_led_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xaf21c4cb au8522_init -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xd81e0cf1 au8522_analog_i2c_gate_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xe253f085 au8522_i2c_gate_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_dig 0xdb47b45a au8522_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/bcm3510 0x13eb9e54 bcm3510_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx22700 0x6331c428 cx22700_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx22702 0x4ac62cdf cx22702_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24110 0x78218e47 cx24110_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x7e457b11 cx24113_agc_callback -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0xe673127e cx24113_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24116 0xa5907676 cx24116_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24120 0x5bb532d2 cx24120_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0xb4791782 cx24123_get_tuner_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0xdc622d2e cx24123_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2820r 0x94cfd091 cxd2820r_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x4ad34487 cxd2841er_attach_s -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x9f9e84a8 cxd2841er_attach_t_c -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2880/cxd2880 0x1d6945b4 cxd2880_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x6b30d8f3 dib0070_set_rf_output -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x7b4c1b0b dib0070_get_rf_output -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x9812db14 dib0070_ctrl_agc_filter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xaf94c91b dib0070_wbd_offset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xdd36b539 dib0070_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x175720f5 dib0090_get_wbd_offset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x1fe9d55d dib0090_pwm_gain_reset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x23d0c1ad dib0090_update_rframp_7090 -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x2a4354a1 dib0090_register -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x2dc91d6e dib0090_set_vga -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x46eb499e dib0090_get_wbd_target -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x4a3e9a20 dib0090_gain_control -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x59cfb94e dib0090_get_tune_state -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x8315797e dib0090_set_dc_servo -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x98357581 dib0090_fw_register -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x9deba1dc dib0090_dcc_freq -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xa23cf521 dib0090_set_tune_state -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xa8f8df0f dib0090_get_current_gain -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xf03568c5 dib0090_set_switch -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xfdaec142 dib0090_update_tuning_table_7090 -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mb 0x053b468b dib3000mb_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x068fc841 dib3000mc_get_tuner_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x6d32d097 dib3000mc_pid_parse -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x7785512d dib3000mc_set_config -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xdec7a312 dib3000mc_i2c_enumeration -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xefb61e39 dib3000mc_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xf0277465 dib3000mc_pid_control -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x3f8fc9af dib7000m_pid_filter_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x4cd1a4ce dib7000m_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x85342422 dib7000m_get_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xea53033c dib7000m_pid_filter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000p 0xfa5fbf1e dib7000p_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib8000 0xc7d7c095 dib8000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x44378745 dib9000_get_slave_frontend -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x475eb365 dib9000_fw_set_component_bus_speed -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x573605fc dib9000_set_gpio -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x680bcdd7 dib9000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x710c24da dib9000_i2c_enumeration -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x75db7161 dib9000_get_tuner_interface -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x84cdb707 dib9000_get_component_bus_interface -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x8809e234 dib9000_set_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x90773e61 dib9000_fw_pid_filter_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xa58464fc dib9000_firmware_post_pll_init -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xaa53d4a0 dib9000_fw_pid_filter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xb44336e0 dib9000_set_slave_frontend -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xd1acc1b4 dib9000_get_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x0cdb5d0e dibx000_exit_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x30c44688 dibx000_i2c_set_speed -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x35e6d111 dibx000_reset_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x373ff51f dibx000_init_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x7485c9da dibx000_get_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0x2286e229 drx39xxj_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/drxd 0x2e49c7cc drxd_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/drxk 0xf6500f9d drxk_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ds3000 0x6f3dfd04 ds3000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dvb-pll 0xaf094504 dvb_pll_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x5c4fdea6 dvb_dummy_fe_ofdm_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0xb6757e2c dvb_dummy_fe_qam_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0xf781face dvb_dummy_fe_qpsk_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ec100 0x71826dc7 ec100_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0x85aa7910 helene_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0xa88f2839 helene_attach_s -EXPORT_SYMBOL drivers/media/dvb-frontends/horus3a 0x60988353 horus3a_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/isl6405 0xfbfa81bd isl6405_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/isl6421 0x2c4709cf isl6421_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/isl6423 0x071f4966 isl6423_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/itd1000 0x50390885 itd1000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ix2505v 0x3bce7b04 ix2505v_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/l64781 0x7069434b l64781_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lg2160 0xdac80bd3 lg2160_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3305 0x197ae4ab lgdt3305_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3306a 0xf3e5d144 lgdt3306a_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt330x 0x7d91ef24 lgdt330x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gl5 0x3ac9d8a4 lgs8gl5_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gxx 0xf9f0b175 lgs8gxx_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh25 0x019efe85 lnbh25_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh29 0x90409129 lnbh29_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x7380248c lnbp21_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0xf0f5cde0 lnbh24_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp22 0xa7a1cfe6 lnbp22_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x3ef718d6 m88ds3103_get_agc_pwm -EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0xda159ddb m88ds3103_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/m88rs2000 0xa0b9763f m88rs2000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a16 0xa6f9e11a mb86a16_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a20s 0xe10530f8 mb86a20s_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mt312 0xb53b1549 mt312_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mt352 0x2d9795be mt352_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/nxt200x 0x329519c2 nxt200x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/nxt6000 0x5c5339fd nxt6000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/or51132 0xd026691e or51132_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/or51211 0xd7e0bfec or51211_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1409 0xa27715dd s5h1409_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1411 0xaac04db5 s5h1411_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x263587d6 s5h1420_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x6d077b05 s5h1420_get_tuner_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1432 0xa4716069 s5h1432_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s921 0xb1a00835 s921_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/si21xx 0x442de055 si21xx_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/sp887x 0xc9b979d3 sp887x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stb0899 0xfbbe4446 stb0899_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stb6000 0xda652325 stb6000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stb6100 0x1080081f stb6100_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0288 0x55157c76 stv0288_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0297 0x86402429 stv0297_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0299 0x2317fd22 stv0299_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x03a5330b stv0367ter_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x33552d31 stv0367ddb_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x8297c966 stv0367cab_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0900 0x23d020ea stv0900_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv090x 0xd2b2648d stv090x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110 0x6e17dbd5 stv6110_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110x 0x62da1fa5 stv6110x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10021 0x9e2aece3 tda10021_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10023 0x3075c255 tda10023_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10048 0x471359cc tda10048_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x13c84df2 tda10046_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x28455286 tda10045_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10086 0xc6974d35 tda10086_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda665x 0x0a3adc75 tda665x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda8083 0x0c30306e tda8083_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda8261 0x9eb7840b tda8261_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda826x 0x728689d9 tda826x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ts2020 0x74cb8e0f ts2020_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tua6100 0x48a913c1 tua6100_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ves1820 0x8982a9a6 ves1820_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ves1x93 0xf4ba0bbf ves1x93_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0xc21a0fd5 zd1301_demod_get_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0xd515227f zd1301_demod_get_dvb_frontend -EXPORT_SYMBOL drivers/media/dvb-frontends/zl10036 0xe495d51b zl10036_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/zl10039 0x774ed170 zl10039_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/zl10353 0x448bfb7f zl10353_attach -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x5da593bc flexcop_dma_free -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x7f692fb2 flexcop_dma_allocate -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xd7c236e8 flexcop_dma_config_timer -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xe0b330aa flexcop_dma_control_timer_irq -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xe4624bf0 flexcop_dma_config -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xe8c7fd56 flexcop_dma_xfer_control -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xefc1265c flexcop_dma_control_size_irq -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x7ef49c8b bt878_stop -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x98ee5bfc bt878 -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xac4057ae bt878_start -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xb467cff6 bt878_device_control +EXPORT_SYMBOL drivers/media/dvb-frontends/ascot2e 0xefe9dae2 ascot2e_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/atbm8830 0x4c7fd1b3 atbm8830_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x05266bb5 au8522_led_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x5897845a au8522_get_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x61c555cd au8522_readreg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xa3e9b0f1 au8522_init +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xb8c73746 au8522_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xdbc43486 au8522_sleep +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xdecec8dd au8522_release_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xfa08b9d5 au8522_analog_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xfae27799 au8522_writereg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_dig 0x545c0f62 au8522_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/bcm3510 0xff231bd7 bcm3510_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22700 0x1cb9ea4a cx22700_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22702 0xe7575d4f cx22702_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24110 0x07a9a025 cx24110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x7053311e cx24113_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x9369d98e cx24113_agc_callback +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24116 0x03156e11 cx24116_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24120 0xc97ce1c9 cx24120_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x9dd4da7d cx24123_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0xe3217613 cx24123_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2820r 0xa41a4133 cxd2820r_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x0b410da2 cxd2841er_attach_s +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x786dece9 cxd2841er_attach_t_c +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2880/cxd2880 0xa9c7ebca cxd2880_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x2875fc64 dib0070_set_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x3fc6035e dib0070_get_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x6292389a dib0070_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x73c7e837 dib0070_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x76907331 dib0070_ctrl_agc_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x05e95940 dib0090_fw_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x16b9b2cf dib0090_pwm_gain_reset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x1dadd34b dib0090_update_tuning_table_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x2949e38b dib0090_get_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x37d90741 dib0090_get_wbd_target +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x3a1b146b dib0090_get_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x69b5de3b dib0090_dcc_freq +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x81a498d5 dib0090_get_current_gain +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x91308869 dib0090_update_rframp_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x96f96a3a dib0090_set_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xa9939734 dib0090_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xba3f18c7 dib0090_gain_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xd9724e78 dib0090_set_dc_servo +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xedc1fb57 dib0090_set_vga +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xff1fbbd9 dib0090_set_switch +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mb 0xec2dd104 dib3000mb_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x26ee23d4 dib3000mc_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xaf737b5d dib3000mc_set_config +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xbbbd30cf dib3000mc_pid_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xd221da27 dib3000mc_get_tuner_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xe0e82042 dib3000mc_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xe9e8e471 dib3000mc_pid_parse +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x0b97b37a dib7000m_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xc25667d5 dib7000m_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xcd16710b dib7000m_pid_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xf992666c dib7000m_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000p 0x837cd70e dib7000p_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib8000 0xdcdbc1f0 dib8000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x1490ec8e dib9000_get_tuner_interface +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x3524542c dib9000_set_gpio +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x35e0c48d dib9000_get_slave_frontend +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x562e49e5 dib9000_firmware_post_pll_init +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x8de1e40a dib9000_set_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x91ef3364 dib9000_get_component_bus_interface +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x9af03ec6 dib9000_set_slave_frontend +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xaac8eabd dib9000_fw_pid_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xb59ad183 dib9000_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xc6691f95 dib9000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xcc145e54 dib9000_fw_set_component_bus_speed +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xccd46029 dib9000_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xd57c1f99 dib9000_fw_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x1aa1a9b7 dibx000_init_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x1f98c0e7 dibx000_i2c_set_speed +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x47fea932 dibx000_reset_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x627e66dd dibx000_exit_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x8144a2f6 dibx000_get_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0x4f1d1106 drx39xxj_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxd 0xd091327f drxd_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxk 0x2bf45d56 drxk_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ds3000 0x387d972c ds3000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb-pll 0xa214cce6 dvb_pll_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x743f82f8 dvb_dummy_fe_ofdm_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0xc491be14 dvb_dummy_fe_qam_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0xdff1a690 dvb_dummy_fe_qpsk_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ec100 0x3c5319bc ec100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0x2371a0a2 helene_attach_s +EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0x6ad045fa helene_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/horus3a 0x507bb0e9 horus3a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6405 0x8691f818 isl6405_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6421 0x624e9712 isl6421_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6423 0x0414386b isl6423_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/itd1000 0xa6c0deef itd1000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ix2505v 0xc8562a88 ix2505v_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/l64781 0xebca1b82 l64781_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lg2160 0x8549b5b2 lg2160_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3305 0x40af01a4 lgdt3305_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3306a 0x10b34514 lgdt3306a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt330x 0x6a1bf218 lgdt330x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gl5 0x4541f6c6 lgs8gl5_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gxx 0x3b92a69d lgs8gxx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh25 0x53b92cfc lnbh25_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh29 0xdf70de9a lnbh29_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x9c12d96f lnbh24_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0xfe1d8999 lnbp21_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp22 0x77265a92 lnbp22_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x9620480e m88ds3103_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0xc7619a70 m88ds3103_get_agc_pwm +EXPORT_SYMBOL drivers/media/dvb-frontends/m88rs2000 0xa185f451 m88rs2000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a16 0xbb3394b6 mb86a16_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a20s 0x0eb8d15b mb86a20s_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt312 0xe71cc730 mt312_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt352 0x315fe583 mt352_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt200x 0x996a30e2 nxt200x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt6000 0x6741c852 nxt6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51132 0x7bd9403e or51132_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51211 0xd444b453 or51211_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1409 0xf5aafb6d s5h1409_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1411 0x6a5b71d3 s5h1411_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x3a5f1a94 s5h1420_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x42a6e7b3 s5h1420_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1432 0x64ea5c0f s5h1432_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s921 0xa2efb128 s921_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/si21xx 0xe9bc91c5 si21xx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/sp887x 0x6f21e1fc sp887x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb0899 0x9c30d1b3 stb0899_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6000 0xaa7b85f6 stb6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6100 0x246314fe stb6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0288 0xb2e61437 stv0288_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0297 0xa8545d06 stv0297_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0299 0x03aa08fa stv0299_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x1e6f46a7 stv0367ter_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x2e9f589d stv0367ddb_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x9f5dbcca stv0367cab_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0900 0x7cd7a844 stv0900_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv090x 0x84631f86 stv090x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110 0xce6375a8 stv6110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110x 0xd4d2bd44 stv6110x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10021 0xc8698ac2 tda10021_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10023 0x3149403b tda10023_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10048 0xea78ba35 tda10048_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0xc87c45b6 tda10045_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0xf3f15ac2 tda10046_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10086 0x350f1cb9 tda10086_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda665x 0x27b80d8b tda665x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8083 0x73b81e0c tda8083_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8261 0x6c9432b2 tda8261_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda826x 0xfd7cc592 tda826x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ts2020 0xa96fdcc4 ts2020_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tua6100 0x38b7b512 tua6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1820 0xa2f70d89 ves1820_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1x93 0x1b07ea1c ves1x93_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0x43ed2e7e zd1301_demod_get_dvb_frontend +EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0x568544be zd1301_demod_get_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10036 0x7b35c425 zl10036_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10039 0x031c8d75 zl10039_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10353 0x8880e48f zl10353_attach +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x01a84208 flexcop_dma_allocate +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x0ff868da flexcop_dma_control_size_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x12f2f53a flexcop_dma_config +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x4159178b flexcop_dma_config_timer +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x68622724 flexcop_dma_xfer_control +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x820d32ba flexcop_dma_control_timer_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xf182692c flexcop_dma_free +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x1a4c16ca bt878_start +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x5e9a0948 bt878_device_control EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xd5d0bdef bt878_num +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xdc3827aa bt878_stop +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xe1a09959 bt878 EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x11dc4b6d bttv_gpio_enable +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x1dbbe255 bttv_sub_register +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x2df79abc bttv_sub_unregister EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x8ecf4acc bttv_write_gpio -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x9f00b360 bttv_sub_register EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xbcf2d2fb bttv_read_gpio -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xe29eb71f bttv_sub_unregister -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xeac3c604 bttv_get_pcidev -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x2d523f04 dst_error_bailout -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x38b7c980 dst_error_recovery -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x394ae9e4 dst_wait_dst_ready +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xfc01e8f4 bttv_get_pcidev +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x0df2e9bf dst_attach +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x1170c425 dst_pio_disable +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x18bbe095 read_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x236237b7 rdc_reset_state +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x23f04a82 dst_wait_dst_ready +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x2ae03cd8 dst_error_bailout +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x439f79bc dst_error_recovery EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x43a983fd dst_check_sum -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x5a75baf9 write_dst -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x6ab887f8 read_dst -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x76b90878 dst_pio_disable -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x8a46a6fa dst_comm_init -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x8e633885 dst_attach -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xae633df0 rdc_reset_state -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst_ca 0xae946233 dst_ca_attach -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2abcc280 cx18_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x5afb534b write_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x6b0f107b dst_comm_init +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst_ca 0x232a999a dst_ca_attach EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2cdea06d cx18_reset_ir_gpio -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x7566ec3c cx18_ext_init -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x9d52128c cx18_claim_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xaeddc1d5 cx18_stop_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xd217f57a cx18_release_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x42b01150 cx18_ext_init +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x42bc9521 cx18_release_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x6b8f3d15 cx18_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xb118610a cx18_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xbd7137ef cx18_claim_stream EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0x1ab311dc altera_ci_init EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0x6ff7510d altera_ci_tuner_reset EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xdb3faf38 altera_ci_release EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xe66b9812 altera_ci_irq +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x173f6610 cx25821_riscmem_alloc +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x30e43bf0 cx25821_sram_channel_setup_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x34fdbc2c cx25821_risc_databuffer_audio EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x44b517f5 cx25821_print_irqbits -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x4dbaf3f1 cx25821_set_gpiopin_direction -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x51764e7c cx25821_riscmem_alloc -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x534d5bab cx25821_dev_get -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x56741dc2 cx25821_sram_channel_dump_audio -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x71b5b2da cx25821_dev_unregister -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x819f152d cx25821_sram_channel_setup_audio -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xb5d3b983 cx25821_risc_databuffer_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x99f99a83 cx25821_sram_channel_dump_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xb897f8af cx25821_set_gpiopin_direction +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xc4431c5f cx25821_dev_get +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xe6ebb2ad cx25821_dev_unregister EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xe9050411 cx25821_sram_channels -EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x430f214e vp3054_i2c_probe -EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0xb68ea847 vp3054_i2c_remove -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x46a50ac5 cx88_set_freq -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x46b4d9a6 cx88_enum_input -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xa4c58b7c cx88_querycap -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xd1ad4423 cx88_video_mux -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x3615096d cx8802_cancel_buffers -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x54aaf0e8 cx8802_register_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x62a9ac67 cx8802_buf_prepare -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x6c876a89 cx8802_start_dma -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x7e20fc82 cx8802_get_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xbc90bfa6 cx8802_buf_queue -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xc7a413f4 cx8802_unregister_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x01771853 cx88_set_tvaudio -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x0b1321d6 cx88_get_stereo -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x15ce7d42 cx88_sram_channel_setup -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x15f3053e cx88_set_stereo -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x2a558383 cx88_risc_databuffer -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x3522c4fd cx88_core_put -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x39c020e9 cx88_dsp_detect_stereo_sap -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4d719ae0 cx88_ir_start -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x5e5bbfa4 cx88_core_get +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0xc69d214d vp3054_i2c_probe +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0xf79f5808 vp3054_i2c_remove +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x07ee9770 cx88_video_mux +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x083fdda4 cx88_enum_input +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x441926b5 cx88_set_freq +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x8af8d85f cx88_querycap +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x2abcbff9 cx8802_buf_queue +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x3a4bf4d9 cx8802_cancel_buffers +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x53ebb580 cx8802_buf_prepare +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x58e42178 cx8802_unregister_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x5a7fd818 cx8802_register_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x83d13266 cx8802_start_dma +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x90536fd7 cx8802_get_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x031839af cx88_get_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x0d6a8867 cx88_set_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x1a57b751 cx88_set_tvaudio +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x5389c04d cx88_reset +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x58fc071c cx88_core_put 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 0x6f081336 cx88_reset -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7f06321b cx88_core_irq -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x8599874d cx88_shutdown -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x8ccd18f2 cx88_sram_channel_dump +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x67db81ac cx88_wakeup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x74aadd28 cx88_newstation +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7b9ec67c cx88_risc_databuffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7d038e2b cx88_ir_start EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x8d88137a cx88_sram_channels EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x904b8696 cx88_audio_thread -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x985f4cc7 cx88_newstation -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x9f96f37d cx88_ir_stop -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xa0a624d4 cx88_wakeup -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xd0180677 cx88_vdev_init -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xe6b11abe cx88_set_tvnorm -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xf889b8aa cx88_set_scale -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xfa02e061 cx88_risc_buffer -EXPORT_SYMBOL drivers/media/pci/ddbridge/ddbridge-dummy-fe 0x78a8364a ddbridge_dummy_fe_qam_attach -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x04585c8a ivtv_udma_alloc -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x114f9c42 ivtv_udma_setup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x98a9f6a5 cx88_dsp_detect_stereo_sap +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x99b4ba4f cx88_set_tvnorm +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x9d852eaa cx88_core_get +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xa5258304 cx88_sram_channel_dump +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xae2acf9e cx88_vdev_init +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xb7a8007b cx88_core_irq +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xc7028588 cx88_set_scale +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xd5132db6 cx88_sram_channel_setup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xe0ed2f13 cx88_ir_stop +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xecd0e029 cx88_risc_buffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xed9c98cf cx88_shutdown +EXPORT_SYMBOL drivers/media/pci/ddbridge/ddbridge-dummy-fe 0x2c564803 ddbridge_dummy_fe_qam_attach +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x0845102e ivtv_claim_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x09af2960 ivtv_start_v4l2_encode_stream EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x14f67530 ivtv_debug -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x1f2ad6fe ivtv_firmware_check -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x23b28937 ivtv_start_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x2ff836c0 ivtv_reset_ir_gpio -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x375ac9a9 ivtv_claim_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x38e46d5c ivtv_set_irq_mask -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x4c0c1a65 ivtv_init_on_first_open -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x4eaddf7f ivtv_ext_init -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x5e71822e ivtv_vapi -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x5ffd378a ivtv_release_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x70350fc2 ivtv_udma_prepare -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x7e62b83a ivtv_clear_irq_mask -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x8dd89a64 ivtv_vapi_result -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xd83dc5ea ivtv_stop_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xda9a2811 ivtv_api -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xdbd7923b ivtv_udma_unmap +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x29130261 ivtv_vapi +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x3fba05ff ivtv_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x40d58202 ivtv_vapi_result +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x49458d04 ivtv_clear_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x5c472014 ivtv_api +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x5cb7c762 ivtv_udma_prepare +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x6303a31c ivtv_ext_init +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x654d193d ivtv_udma_alloc +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x666b05e7 ivtv_release_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x7e9a5ca3 ivtv_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x7f76b266 ivtv_init_on_first_open +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x9901ff92 ivtv_udma_unmap +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x9bdd8dd0 ivtv_firmware_check +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xc20cd4d7 ivtv_set_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xf1d8418a ivtv_udma_setup EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x04e83446 saa7134_tuner_callback -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x0847e5e9 saa7134_dmasound_exit -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x0f1b3b70 saa7134_pgtable_free +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x09d4bafc saa7134_ts_unregister EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x1211df5d saa7134_devlist -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x4f52136b saa7134_pgtable_build -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x665b614c saa7134_set_gpio +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x2d324142 saa7134_pgtable_free +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x4638f493 saa7134_set_gpio EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x730c4be3 saa7134_boards -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x7ca84322 saa7134_pgtable_alloc +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x83ae1a09 saa7134_pgtable_alloc EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x8f1ad46b saa7134_devlist_lock -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xa53e08d5 saa7134_tvaudio_setmute -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xae6bb7e5 saa7134_set_dmabits -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xaebfdb2d saa7134_ts_register -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xc285610e saa_dsp_writel -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xe8c008f6 saa7134_dmasound_init -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xf6d1b19e saa7134_ts_unregister +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x9339cd8f saa7134_dmasound_init +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x9f038287 saa7134_tvaudio_setmute +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xad9e8df1 saa7134_ts_register +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xc3751a8f saa7134_dmasound_exit +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xced3e1b3 saa7134_pgtable_build +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xe506b99e saa7134_set_dmabits +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xfcfa3583 saa_dsp_writel EXPORT_SYMBOL drivers/media/platform/allegro-dvt/allegro 0x2c79d0f2 msg_type_name -EXPORT_SYMBOL drivers/media/radio/tea575x 0x13c12bf4 snd_tea575x_exit -EXPORT_SYMBOL drivers/media/radio/tea575x 0x7296b475 snd_tea575x_enum_freq_bands -EXPORT_SYMBOL drivers/media/radio/tea575x 0x72b7b64f snd_tea575x_init -EXPORT_SYMBOL drivers/media/radio/tea575x 0x7d7861df snd_tea575x_s_hw_freq_seek -EXPORT_SYMBOL drivers/media/radio/tea575x 0x875b7a5d snd_tea575x_set_freq -EXPORT_SYMBOL drivers/media/radio/tea575x 0x8b48e790 snd_tea575x_g_tuner -EXPORT_SYMBOL drivers/media/radio/tea575x 0xc74fbef2 snd_tea575x_hw_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0x01c9301c snd_tea575x_s_hw_freq_seek +EXPORT_SYMBOL drivers/media/radio/tea575x 0x03975009 snd_tea575x_hw_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0x26d96d9a snd_tea575x_g_tuner +EXPORT_SYMBOL drivers/media/radio/tea575x 0xbdc88f88 snd_tea575x_enum_freq_bands +EXPORT_SYMBOL drivers/media/radio/tea575x 0xc5403a9d snd_tea575x_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0xd0c9ccc7 snd_tea575x_set_freq +EXPORT_SYMBOL drivers/media/radio/tea575x 0xd5b1c2be snd_tea575x_exit EXPORT_SYMBOL drivers/media/rc/rc-core 0x2ad91f6e ir_raw_gen_pl -EXPORT_SYMBOL drivers/media/rc/rc-core 0x3cd8e73d ir_raw_handler_unregister +EXPORT_SYMBOL drivers/media/rc/rc-core 0x69375929 ir_raw_handler_unregister EXPORT_SYMBOL drivers/media/rc/rc-core 0x7cf52901 ir_raw_gen_manchester +EXPORT_SYMBOL drivers/media/rc/rc-core 0x8aad2d0d ir_raw_handler_register EXPORT_SYMBOL drivers/media/rc/rc-core 0x9e12e343 ir_raw_gen_pd EXPORT_SYMBOL drivers/media/rc/rc-core 0xb5516017 ir_raw_encode_carrier -EXPORT_SYMBOL drivers/media/rc/rc-core 0xeb672665 ir_raw_handler_register EXPORT_SYMBOL drivers/media/rc/rc-core 0xf446074f ir_raw_encode_scancode -EXPORT_SYMBOL drivers/media/tuners/fc0011 0xa3a8a6e6 fc0011_attach -EXPORT_SYMBOL drivers/media/tuners/fc0012 0x86b64028 fc0012_attach -EXPORT_SYMBOL drivers/media/tuners/fc0013 0x2ca3d866 fc0013_rc_cal_add -EXPORT_SYMBOL drivers/media/tuners/fc0013 0x3fa94268 fc0013_attach -EXPORT_SYMBOL drivers/media/tuners/fc0013 0xe4b2eb87 fc0013_rc_cal_reset -EXPORT_SYMBOL drivers/media/tuners/max2165 0x4f85554f max2165_attach -EXPORT_SYMBOL drivers/media/tuners/mc44s803 0x4817263b mc44s803_attach -EXPORT_SYMBOL drivers/media/tuners/mt2060 0xe4bc5f8c mt2060_attach -EXPORT_SYMBOL drivers/media/tuners/mt2131 0xf920cd84 mt2131_attach -EXPORT_SYMBOL drivers/media/tuners/mt2266 0x0294a966 mt2266_attach -EXPORT_SYMBOL drivers/media/tuners/mxl5005s 0xc867f6dc mxl5005s_attach -EXPORT_SYMBOL drivers/media/tuners/qt1010 0xaf82fa62 qt1010_attach -EXPORT_SYMBOL drivers/media/tuners/tda18218 0x2b3c14a7 tda18218_attach +EXPORT_SYMBOL drivers/media/tuners/fc0011 0xef97f5de fc0011_attach +EXPORT_SYMBOL drivers/media/tuners/fc0012 0x5dd2e467 fc0012_attach +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x13f9985d fc0013_rc_cal_add +EXPORT_SYMBOL drivers/media/tuners/fc0013 0xe89f5559 fc0013_attach +EXPORT_SYMBOL drivers/media/tuners/fc0013 0xf28f901d fc0013_rc_cal_reset +EXPORT_SYMBOL drivers/media/tuners/max2165 0x2774dc0c max2165_attach +EXPORT_SYMBOL drivers/media/tuners/mc44s803 0x07276988 mc44s803_attach +EXPORT_SYMBOL drivers/media/tuners/mt2060 0xa9981ef7 mt2060_attach +EXPORT_SYMBOL drivers/media/tuners/mt2131 0xb4048cff mt2131_attach +EXPORT_SYMBOL drivers/media/tuners/mt2266 0x2dae1a8c mt2266_attach +EXPORT_SYMBOL drivers/media/tuners/mxl5005s 0x15c3a417 mxl5005s_attach +EXPORT_SYMBOL drivers/media/tuners/qt1010 0x80b84988 qt1010_attach +EXPORT_SYMBOL drivers/media/tuners/tda18218 0x8b48bada 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/tuner-xc2028 0x88e27a27 xc2028_attach -EXPORT_SYMBOL drivers/media/tuners/xc4000 0x20e6f45e xc4000_attach -EXPORT_SYMBOL drivers/media/tuners/xc5000 0x736ba211 xc5000_attach -EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x41f7dd6e cx231xx_unregister_extension -EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0xc7f89b11 cx231xx_register_extension -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x0d7221dc dvb_usbv2_probe -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x19215f4b dvb_usbv2_generic_rw -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x345b8155 dvb_usbv2_generic_rw_locked -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x634b38f7 dvb_usbv2_reset_resume -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x745e1616 dvb_usbv2_suspend -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x74ad490d dvb_usbv2_generic_write -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x8cd4abfe dvb_usbv2_generic_write_locked -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xb389f72d dvb_usbv2_disconnect -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xc2638224 dvb_usbv2_resume -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x363fc1d9 dvb_usb_generic_write -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x7ab58bc4 dvb_usb_device_init +EXPORT_SYMBOL drivers/media/tuners/tuner-xc2028 0x3b66b5e0 xc2028_attach +EXPORT_SYMBOL drivers/media/tuners/xc4000 0xe07dc838 xc4000_attach +EXPORT_SYMBOL drivers/media/tuners/xc5000 0x17f8c274 xc5000_attach +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x4578b0f1 cx231xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x8cfb83df cx231xx_register_extension +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x1334c84e dvb_usbv2_reset_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x5995ad17 dvb_usbv2_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x5f0ccb9a dvb_usbv2_suspend +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x7149b775 dvb_usbv2_probe +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x9ccce78a dvb_usbv2_generic_rw_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xaafa1e35 dvb_usbv2_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xaef54d3c dvb_usbv2_generic_write_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xc9b3891b dvb_usbv2_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xdd7ae0e7 dvb_usbv2_disconnect +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x29e89a25 dvb_usb_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x4cd07d02 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 0xab4dbc87 usb_cypress_load_firmware -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xaf056485 dvb_usb_generic_rw -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xd910dae2 dvb_usb_device_exit -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xec1f41aa dvb_usb_nec_rc_key_to_event +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xa33c36ea dvb_usb_device_exit +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xb67b3905 dvb_usb_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xdb64e01c usb_cypress_load_firmware +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xf783f6a7 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 0xa5174079 af9005_rc_decode +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x9412aa49 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 0x18b1095f dibusb_power_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x231ef04e dibusb2_0_power_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x29ea64e3 dibusb_rc_query -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x31bbb3ae dibusb_pid_filter -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x8dde32e1 dibusb_i2c_algo +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x0d05a962 dibusb_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x1f99df0d dibusb_pid_filter +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x614fa33e dibusb_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x6d7e3984 dibusb_rc_query +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x750c0d22 dibusb_read_eeprom_byte EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x93822ecb rc_map_dibusb_table -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xa1d52cd3 dibusb2_0_streaming_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xce0a2921 dibusb_pid_filter_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xdc3d25c6 dibusb_read_eeprom_byte -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xe9ad3ea9 dibusb_streaming_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0x3e0112a7 dibusb_dib3000mc_tuner_attach -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0xe78a20d6 dibusb_dib3000mc_frontend_attach -EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0xab3d8c5b em28xx_register_extension -EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0xbe8d18b5 em28xx_unregister_extension -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x25c52d15 go7007_update_board -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x38def4a3 go7007_snd_remove -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x404b28a8 go7007_read_interrupt -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x436b7e35 go7007_read_addr -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x58c29b9a go7007_snd_init -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x901deac7 go7007_register_encoder -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xd063d9d8 go7007_alloc -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xe4c2bd34 go7007_parse_video_stream -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xf4d35cd3 go7007_boot_encoder -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x072c0260 gspca_suspend -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x50ba896b gspca_disconnect -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x523a7612 gspca_expo_autogain -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x5af31163 gspca_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xb06ce3a3 dibusb2_0_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xc4266e0a dibusb_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xd36ba341 dibusb_i2c_algo +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xd48cd971 dibusb2_0_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0x8f0deadc dibusb_dib3000mc_frontend_attach +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0xaa5efe07 dibusb_dib3000mc_tuner_attach +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x09f977d6 em28xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x8d9371ff em28xx_register_extension +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x09e61999 go7007_read_interrupt +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x2d9da423 go7007_register_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x41d7c663 go7007_alloc +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x42e3fcea go7007_snd_init +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x459ac498 go7007_read_addr +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x611fca27 go7007_snd_remove +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x8f414f9e go7007_parse_video_stream +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xb4dd954e go7007_boot_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xfec78607 go7007_update_board +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x03cdcb03 gspca_coarse_grained_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x780aa903 gspca_dev_probe +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x8143577f gspca_dev_probe2 +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x850a4040 gspca_suspend EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9670af2c gspca_debug -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xa2350bf4 gspca_dev_probe -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xa87fe511 gspca_coarse_grained_expo_autogain -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xde00427b gspca_frame_add -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xe619e844 gspca_dev_probe2 -EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x46a81334 tm6000_unregister_extension -EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0xc08e7ed4 tm6000_init_digital_mode -EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0xd7d826d9 tm6000_register_extension -EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x1e5397f3 ttusbdecfe_dvbt_attach -EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x35949639 ttusbdecfe_dvbs_attach -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x2c472c82 v4l2_async_subdev_notifier_register -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x4c4c38e8 v4l2_async_notifier_init -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x6c21c9fd v4l2_async_unregister_subdev -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x82d8191f v4l2_async_notifier_unregister -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xc85b4b6b v4l2_async_register_subdev -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xd8e1ddec v4l2_async_notifier_register -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x03ecd76d v4l2_m2m_mmap +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xa45b5971 gspca_disconnect +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xea6127f3 gspca_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xf2382dad gspca_resume +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xf4233e68 gspca_frame_add +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x718b46f4 tm6000_init_digital_mode +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0xa18fd2ef tm6000_register_extension +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0xc4d0f0b1 tm6000_unregister_extension +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x1f7220c0 ttusbdecfe_dvbt_attach +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x34b5210a ttusbdecfe_dvbs_attach +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x2c55bd49 v4l2_async_notifier_unregister +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x59ce6371 v4l2_async_notifier_register +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x5a6fd3a5 v4l2_async_notifier_init +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x6e69c4a6 v4l2_async_unregister_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xb4c56259 v4l2_async_register_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xb7854bb6 v4l2_async_subdev_notifier_register +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x0c50702f v4l2_m2m_get_vq +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x1034be8d 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 0x8f92634d v4l2_m2m_get_vq -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xd5d0e8a0 v4l2_m2m_job_finish -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xdc3510fc v4l2_m2m_buf_done_and_job_finish +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x7401f7a0 v4l2_m2m_job_finish +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xcb2ca909 v4l2_m2m_buf_done_and_job_finish EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xf626dd03 v4l2_m2m_suspend -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x01b11442 v4l2_ctrl_cluster -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x04f6b968 v4l2_ctrl_new_std_compound EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0614dd5a v4l2_video_std_frame_period -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x07a24724 v4l2_s_ctrl EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x082737e8 v4l2_ctrl_merge -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0983cb06 __v4l2_ctrl_s_ctrl_int64 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x09c231ea v4l2_ctrl_poll -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0c435e92 video_devdata -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x11433408 v4l2_try_ext_ctrls EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x123959a1 v4l2_type_names +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x13cfa47c v4l2_ctrl_g_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x147facba __v4l2_ctrl_s_ctrl_compound +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x15cb4e79 v4l2_ctrl_notify EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x16244fe5 v4l2_prio_check -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1c97e44e v4l2_s_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x206a267c v4l2_ctrl_g_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1a599991 v4l2_s_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1fe95539 v4l2_queryctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x20f16a29 v4l2_ctrl_new_int_menu EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2342f1ae v4l2_prio_open +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x258ac99a v4l2_subdev_call_wrappers +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x27627f28 v4l2_ctrl_handler_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x27ff112b video_unregister_device EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x28b12cc9 v4l2_format_info -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2d036ad5 __v4l2_ctrl_s_ctrl_compound -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2ee17bb5 v4l2_ctrl_new_fwnode_properties +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2aef5d40 v4l2_ctrl_handler_init_class 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 0x37167158 video_device_release_empty -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x38131007 v4l2_ctrl_handler_setup +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x33e248f8 __v4l2_ctrl_s_ctrl EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3adbd595 v4l2_field_names EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3bdd0f94 v4l2_prio_change -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3c2fe14d v4l2_ctrl_subdev_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x402f4e9d v4l2_queryctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x46ef597e video_ioctl2 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4d0925f2 v4l2_ctrl_auto_cluster -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x57d7bb96 v4l2_ctrl_radio_filter -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x60ab50ce v4l2_ctrl_request_complete -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x626f3d7a __v4l2_ctrl_s_ctrl_string -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x64b83aac __v4l2_ctrl_modify_range -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7b9e7410 video_device_alloc -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7d71c58c v4l2_ctrl_new_std +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x427114b4 v4l2_ctrl_sub_ev_ops +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4aebb90d v4l2_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5010483a v4l2_ctrl_new_std +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x50231511 v4l2_ctrl_request_setup +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5288d592 v4l2_querymenu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5651ee7c v4l2_subdev_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x657b2e2f __v4l2_ctrl_s_ctrl_string +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6afbcdc5 v4l2_ctrl_request_complete +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6e0eb956 __v4l2_ctrl_modify_range +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x73e6160e v4l2_ctrl_auto_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7edcdd20 video_devdata EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8106095a v4l2_prio_max -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x83920ec0 v4l2_subdev_init -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x874ef025 v4l2_ctrl_sub_ev_ops +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x827f7e6b v4l2_ctrl_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x82c98aa5 __video_register_device EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x89e3897d v4l2_ctrl_query_fill -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8dc07881 v4l2_ctrl_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9658e899 video_unregister_device -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9c9a467d v4l2_ctrl_new_std_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa12ce660 v4l2_g_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa16d0f20 v4l2_ctrl_subdev_subscribe_event -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa44d5406 v4l2_ctrl_request_setup -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa747b76c v4l2_query_ext_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xab77a232 v4l2_ctrl_handler_init_class -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb1e573ac __v4l2_ctrl_grab +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8c38da73 v4l2_try_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9402f7d7 v4l2_ctrl_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x98b4830c v4l2_ctrl_poll +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9fd3ff04 __v4l2_ctrl_s_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa0149b64 v4l2_ctrl_new_std_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa450b730 v4l2_ctrl_new_custom +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa9d41580 v4l2_query_ext_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xad73a0cd v4l2_ctrl_new_std_menu_items +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb0787f84 video_ioctl2 EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb77b0159 v4l2_prio_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbc5584cf v4l2_ctrl_handler_free EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbc5671dc v4l_printk_ioctl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc4efe95b v4l2_ctrl_add_handler -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc6169dd4 v4l2_ctrl_g_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc780bda4 v4l2_ctrl_notify -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc97a0283 v4l2_ctrl_new_int_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcc37b742 v4l2_ctrl_handler_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc139839d __v4l2_ctrl_grab +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc2f60ad4 v4l2_ctrl_find +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc728ad05 video_device_release +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc8549fdd v4l2_ctrl_radio_filter EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcda04a5b v4l2_prio_close EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd16d9c01 v4l2_ctrl_get_int_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd4f97da3 v4l2_subdev_call_wrappers -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd8240da4 v4l2_querymenu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd1c034aa v4l2_ctrl_subdev_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd691011b v4l2_ctrl_new_std_compound +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xda032282 video_device_release_empty +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdaa7641d v4l2_g_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdb737bfb v4l2_ctrl_activate EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdc7e0128 v4l2_ctrl_fill -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdf898d7b __video_register_device -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdfce071a v4l2_ctrl_find -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2652be2 video_device_release +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdde22346 v4l2_ctrl_add_handler +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdef59243 v4l2_ctrl_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdf33649f v4l2_s_ctrl EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2b92059 v4l2_video_std_construct -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe4cfac95 v4l2_g_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xee9e3839 v4l2_ctrl_handler_free +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe570fc32 video_device_alloc +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe5bf4ffd v4l2_ctrl_handler_setup +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xeb6f7479 v4l2_ctrl_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xed6cd91a v4l2_ctrl_subdev_subscribe_event EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf3251e7b v4l2_norm_to_name -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf339fee9 __v4l2_ctrl_s_ctrl EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf50fecbc v4l2_ctrl_replace -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf6c5122b v4l2_ctrl_new_custom -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf79c04e9 v4l2_ctrl_subscribe_event -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf9aaf60e v4l2_ctrl_activate -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfaa44352 v4l2_ctrl_new_std_menu_items -EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0x55ba8e1e rpcif_sw_init -EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0x7f53c1dc rpcif_manual_xfer -EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0x83201eb0 rpcif_hw_init -EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0x86597417 rpcif_dirmap_read -EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0xa683e1ad rpcif_prepare -EXPORT_SYMBOL drivers/memstick/core/memstick 0x02171303 memstick_suspend_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x280811a1 memstick_new_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0x37600bef memstick_set_rw_addr +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfe28e751 v4l2_ctrl_new_fwnode_properties +EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0xb476cc60 rpcif_sw_init +EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0xbe210018 rpcif_dirmap_read +EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0xc56cc0c8 rpcif_manual_xfer +EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0xcf17f74c rpcif_hw_init +EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0xe1c29a80 rpcif_prepare +EXPORT_SYMBOL drivers/memstick/core/memstick 0x04427073 memstick_remove_host EXPORT_SYMBOL drivers/memstick/core/memstick 0x4a4e5778 memstick_init_req_sg -EXPORT_SYMBOL drivers/memstick/core/memstick 0x5421e6a9 memstick_next_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0x80020312 memstick_unregister_driver -EXPORT_SYMBOL drivers/memstick/core/memstick 0x810f4491 memstick_remove_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x900fca43 memstick_free_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x90301576 memstick_register_driver -EXPORT_SYMBOL drivers/memstick/core/memstick 0x9e53d171 memstick_resume_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x5e3073cd memstick_set_rw_addr +EXPORT_SYMBOL drivers/memstick/core/memstick 0x7221c6fa memstick_new_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0x7f7899b9 memstick_alloc_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x82b00960 memstick_add_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x8ff32296 memstick_register_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0xab952753 memstick_next_req EXPORT_SYMBOL drivers/memstick/core/memstick 0xae50437c memstick_init_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0xd5ff0207 memstick_alloc_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0xea293b02 memstick_add_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0xf18ce3bb memstick_detect_change +EXPORT_SYMBOL drivers/memstick/core/memstick 0xae7d179f memstick_unregister_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0xbfd03497 memstick_resume_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xc2e2eabf memstick_suspend_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xf401274d memstick_free_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xf6ef5d29 memstick_detect_change EXPORT_SYMBOL drivers/memstick/host/r592 0x52f1b23b memstick_debug_get_tpc_name -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x163cb02b mpt_free_fw_memory -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1720b1e7 mpt_clear_taskmgmt_in_progress_flag -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1faccfe5 mpt_findImVolumes -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x24ccb2dd mpt_suspend -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x39521ad8 mpt_detach -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x3f367cfa mpt_reset_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0da39bec mpt_suspend +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0fcb6f4f mpt_raid_phys_disk_pg1 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1740ba4a mpt_put_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x36922264 mpt_raid_phys_disk_pg0 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x40151c3c mpt_print_ioc_summary +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x44e07053 mpt_attach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x484cc246 mpt_free_msg_frame EXPORT_SYMBOL drivers/message/fusion/mptbase 0x502108d0 mpt_fwfault_debug -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x549326bb mpt_halt_firmware -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x5494527e mpt_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x5c11fed1 mpt_HardResetHandler -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x5def3152 mpt_raid_phys_disk_pg0 -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x5f1c2c63 mpt_alloc_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x52ece294 mpt_GetIocState EXPORT_SYMBOL drivers/message/fusion/mptbase 0x610b257e mpt_reset_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x66589382 mpt_raid_phys_disk_get_num_paths -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x6c077519 mpt_config -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x734b45a9 mpt_free_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x6242a1af mpt_event_register EXPORT_SYMBOL drivers/message/fusion/mptbase 0x74a0134a mpt_device_driver_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x78e4c238 mpt_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7a531066 mpt_Soft_Hard_ResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x8412fc52 mpt_reset_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x84cf88da mpt_raid_phys_disk_get_num_paths +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x9046e486 mpt_get_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x93c5d7dd mpt_config EXPORT_SYMBOL drivers/message/fusion/mptbase 0x981efe92 mpt_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa393729b mpt_resume -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb53f76fd mpt_verify_adapter -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd16ed097 mpt_set_taskmgmt_in_progress_flag -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd27d4884 mpt_raid_phys_disk_pg1 -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd2d586c2 mpt_print_ioc_summary -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdd09e535 mpt_put_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x9d0e29e5 mpt_put_msg_frame_hi_pri +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x9de97112 mpt_HardResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa1e6b0aa mpt_clear_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb2e6b7fb mpt_halt_firmware +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb436aa9f mpt_resume +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc1a01ba5 mpt_detach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc727d10c mpt_device_driver_register EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdd805159 ioc_list -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xde79aa4d mptbase_sas_persist_operation -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe0009865 mpt_put_msg_frame_hi_pri +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xde4ef02b mpt_alloc_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdf5e70d6 mpt_set_taskmgmt_in_progress_flag EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe6c1e126 mpt_event_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xec107a2a mpt_device_driver_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf04af564 mpt_GetIocState -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf08c2345 mpt_Soft_Hard_ResetHandler -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf92d84c2 mpt_attach -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xfd421105 mpt_send_handshake_request -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xfe6241c7 mpt_event_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xffbc9c45 mpt_get_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x1f25bd62 mptscsih_bus_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x2bc357f1 mptscsih_scandv_complete -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x33048eb3 mptscsih_slave_destroy -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x4efeaa1d mptscsih_raid_id_to_num -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x559d555a mptscsih_event_process -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x58945eec mptscsih_io_done -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x59d88305 mptscsih_host_attrs -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x760b9066 mptscsih_is_phys_disk -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7737430f mptscsih_shutdown -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x81083afe mptscsih_show_info -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x8d50a26a mptscsih_host_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x940acb60 mptscsih_info -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa4177c3f mptscsih_change_queue_depth -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb17b5926 mptscsih_taskmgmt_response_code -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb1a8fcd1 mptscsih_slave_configure -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc0a80a8b mptscsih_flush_running_cmds -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc1f8541f mptscsih_taskmgmt_complete -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc578fe6c mptscsih_qcmd -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc6542095 mptscsih_IssueTaskMgmt -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc88e5c76 mptscsih_abort -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd897bf69 mptscsih_get_scsi_lookup -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe4cf682a mptscsih_suspend -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe4e1cb0c mptscsih_bios_param -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe8656971 mptscsih_resume -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf03dfc60 mptscsih_remove -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf08a7d83 mptscsih_dev_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xfaae6cb6 mptscsih_ioc_reset -EXPORT_SYMBOL drivers/mfd/axp20x 0x010a9328 axp20x_device_remove -EXPORT_SYMBOL drivers/mfd/axp20x 0xd4eead84 axp20x_match_device -EXPORT_SYMBOL drivers/mfd/axp20x 0xffb0d630 axp20x_device_probe -EXPORT_SYMBOL drivers/mfd/dln2 0x57a66f7e dln2_transfer -EXPORT_SYMBOL drivers/mfd/dln2 0xa28b3b67 dln2_register_event_cb -EXPORT_SYMBOL drivers/mfd/dln2 0xc59fc815 dln2_unregister_event_cb -EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x5132face pasic3_read_register -EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x56ae4233 pasic3_write_register -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x10ce0e7d mc13xxx_irq_request -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x23744427 mc13xxx_get_flags -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x2cffc708 mc13xxx_irq_unmask -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x3de89610 mc13xxx_irq_mask -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x4293d229 mc13xxx_irq_status -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x56b30426 mc13xxx_unlock -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x6318c863 mc13xxx_reg_read -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x8a8ab04c mc13xxx_reg_write -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x94bb7ee9 mc13xxx_irq_free -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xa4e4afde mc13xxx_lock -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xb3d1d140 mc13xxx_reg_rmw +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xed195a37 mpt_verify_adapter +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf038b883 mpt_findImVolumes +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf571dfc4 mpt_free_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf7fdbbd2 mpt_send_handshake_request +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xfebc8a1e mptbase_sas_persist_operation +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x0d53da9b mptscsih_resume +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x123fb482 mptscsih_flush_running_cmds +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x1f84d427 mptscsih_show_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x2047b056 mptscsih_io_done +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x2a925d16 mptscsih_scandv_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3573b553 mptscsih_remove +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3fc26941 mptscsih_host_attrs +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x482d8646 mptscsih_event_process +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x4fcfc290 mptscsih_is_phys_disk +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x5af2025f mptscsih_raid_id_to_num +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x68d51c99 mptscsih_slave_destroy +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x6e13319d mptscsih_dev_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x78d67d69 mptscsih_taskmgmt_response_code +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x79425b7d mptscsih_IssueTaskMgmt +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x81fb5d3d mptscsih_shutdown +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x87932f34 mptscsih_host_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x8fa924b9 mptscsih_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x9688c50a mptscsih_ioc_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa2cd3427 mptscsih_slave_configure +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb77220e4 mptscsih_taskmgmt_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb99c4748 mptscsih_bus_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb9a11cc1 mptscsih_get_scsi_lookup +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd321bc2d mptscsih_bios_param +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd3d1a0fc mptscsih_qcmd +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xde6f61e8 mptscsih_change_queue_depth +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf5726951 mptscsih_abort +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf7362e53 mptscsih_suspend +EXPORT_SYMBOL drivers/mfd/axp20x 0x1b80ca94 axp20x_match_device +EXPORT_SYMBOL drivers/mfd/axp20x 0x56f8f1bb axp20x_device_remove +EXPORT_SYMBOL drivers/mfd/axp20x 0x6c0d2935 axp20x_device_probe +EXPORT_SYMBOL drivers/mfd/dln2 0x56647bac dln2_unregister_event_cb +EXPORT_SYMBOL drivers/mfd/dln2 0x8a694e5f dln2_transfer +EXPORT_SYMBOL drivers/mfd/dln2 0xbceb0247 dln2_register_event_cb +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0xab09dcc5 pasic3_write_register +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0xe0d935bf pasic3_read_register +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x0fca91ee mc13xxx_irq_unmask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x2daa17f1 mc13xxx_unlock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x8351724c mc13xxx_get_flags +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xa533c578 mc13xxx_irq_request +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xa64ce37d mc13xxx_irq_mask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xafbc4f95 mc13xxx_lock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xafcfb011 mc13xxx_reg_write +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xb2486aa5 mc13xxx_irq_status +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xc2a42ca7 mc13xxx_reg_read +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xde780031 mc13xxx_irq_free +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xe14b2693 mc13xxx_reg_rmw 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 @@ -2449,210 +2449,210 @@ 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 0x0c238496 wm8994_irq_init -EXPORT_SYMBOL drivers/mfd/wm8994 0x417dec7d wm8958_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994 0x734757e4 wm8994_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994 0x9c9443f4 wm8994_base_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994 0xc368929a wm8994_irq_exit -EXPORT_SYMBOL drivers/mfd/wm8994 0xde1fee50 wm1811_regmap_config -EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x3ec71612 ad_dpot_remove -EXPORT_SYMBOL drivers/misc/ad525x_dpot 0xc9248cd4 ad_dpot_probe +EXPORT_SYMBOL drivers/mfd/wm8994 0x37df8671 wm8994_irq_exit +EXPORT_SYMBOL drivers/mfd/wm8994 0x429981b1 wm8994_irq_init +EXPORT_SYMBOL drivers/mfd/wm8994 0x44673c53 wm8994_base_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0x6f7f5819 wm1811_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0xc227e1ad wm8994_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0xf01d5a34 wm8958_regmap_config +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x39667194 ad_dpot_remove +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0xbfe27611 ad_dpot_probe EXPORT_SYMBOL drivers/misc/altera-stapl/altera-stapl 0x5bafa76e altera_init -EXPORT_SYMBOL drivers/misc/c2port/core 0x56556dac c2port_device_unregister -EXPORT_SYMBOL drivers/misc/c2port/core 0x5bd8cee6 c2port_device_register -EXPORT_SYMBOL drivers/misc/tifm_core 0x07cb9ce8 tifm_unmap_sg -EXPORT_SYMBOL drivers/misc/tifm_core 0x091021c7 tifm_free_device +EXPORT_SYMBOL drivers/misc/c2port/core 0x68fe1d60 c2port_device_unregister +EXPORT_SYMBOL drivers/misc/c2port/core 0xf8bffd74 c2port_device_register +EXPORT_SYMBOL drivers/misc/tifm_core 0x075bee7b tifm_free_device EXPORT_SYMBOL drivers/misc/tifm_core 0x0ffb277f tifm_queue_work -EXPORT_SYMBOL drivers/misc/tifm_core 0x10883e84 tifm_has_ms_pif -EXPORT_SYMBOL drivers/misc/tifm_core 0x29167500 tifm_alloc_device -EXPORT_SYMBOL drivers/misc/tifm_core 0x3110794c tifm_unregister_driver -EXPORT_SYMBOL drivers/misc/tifm_core 0x34362876 tifm_register_driver -EXPORT_SYMBOL drivers/misc/tifm_core 0x5b94e67f tifm_eject -EXPORT_SYMBOL drivers/misc/tifm_core 0x91e3dff0 tifm_remove_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0x99f72036 tifm_free_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0xc3e61a91 tifm_alloc_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0xe76ae2d9 tifm_map_sg -EXPORT_SYMBOL drivers/misc/tifm_core 0xfd1c6f85 tifm_add_adapter -EXPORT_SYMBOL drivers/mmc/host/cqhci 0x52ba2757 cqhci_deactivate -EXPORT_SYMBOL drivers/mmc/host/cqhci 0x8c63e037 cqhci_resume -EXPORT_SYMBOL drivers/mmc/host/cqhci 0xb80b6fa8 cqhci_init -EXPORT_SYMBOL drivers/mmc/host/cqhci 0xd7d74f9f cqhci_irq -EXPORT_SYMBOL drivers/mmc/host/cqhci 0xfbafacc2 cqhci_pltfm_init -EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x1d063fab dw_mci_remove -EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0xc74dc0b7 dw_mci_runtime_resume -EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0xe2dce43e dw_mci_probe -EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0xf25a471d dw_mci_runtime_suspend -EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0x54b5b90b mmc_spi_put_pdata -EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0x9907de9d mmc_spi_get_pdata -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x041e6112 cfi_fixup -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x24bc5156 cfi_read_pri -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x354626c8 cfi_build_cmd_addr -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x9999f319 cfi_send_gen_cmd -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xb2703313 cfi_varsize_frob -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xb536fe35 cfi_build_cmd -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xfb25d78e cfi_merge_status +EXPORT_SYMBOL drivers/misc/tifm_core 0x22353f7b tifm_alloc_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x2a80a557 tifm_add_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x2e53de49 tifm_free_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x358ec699 tifm_remove_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x40f77efd tifm_register_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0x6cb6a4af tifm_unmap_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0xbe93119f tifm_has_ms_pif +EXPORT_SYMBOL drivers/misc/tifm_core 0xc8b291e6 tifm_map_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0xcf824441 tifm_eject +EXPORT_SYMBOL drivers/misc/tifm_core 0xe89061db tifm_alloc_device +EXPORT_SYMBOL drivers/misc/tifm_core 0xf2697525 tifm_unregister_driver +EXPORT_SYMBOL drivers/mmc/host/cqhci 0x0a24932c cqhci_resume +EXPORT_SYMBOL drivers/mmc/host/cqhci 0x4c380a11 cqhci_pltfm_init +EXPORT_SYMBOL drivers/mmc/host/cqhci 0x692fdf39 cqhci_init +EXPORT_SYMBOL drivers/mmc/host/cqhci 0xa955ecc3 cqhci_irq +EXPORT_SYMBOL drivers/mmc/host/cqhci 0xf115cb2d cqhci_deactivate +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x043000a4 dw_mci_runtime_suspend +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x6e70a32d dw_mci_probe +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x875a87dc dw_mci_remove +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0xb5f79232 dw_mci_runtime_resume +EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0x18d302f1 mmc_spi_put_pdata +EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0xc762510f mmc_spi_get_pdata +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x3f270420 cfi_fixup +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x434a0632 cfi_build_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x4d595b45 cfi_read_pri +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x63739d3f cfi_send_gen_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xab9554c6 cfi_varsize_frob +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xca39d532 cfi_build_cmd_addr +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xfd0e7ae8 cfi_merge_status EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xff9fa623 cfi_udelay -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x28c3738e map_destroy -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x2c08c102 unregister_mtd_chip_driver -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x2df15941 register_mtd_chip_driver -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x416dc86d do_map_probe -EXPORT_SYMBOL drivers/mtd/chips/gen_probe 0x9aba57be mtd_do_chip_probe -EXPORT_SYMBOL drivers/mtd/lpddr/lpddr_cmds 0xf3868adf lpddr_cmdset -EXPORT_SYMBOL drivers/mtd/maps/map_funcs 0xf5ca3ee5 simple_map_init -EXPORT_SYMBOL drivers/mtd/mtd 0x5fa2b5d5 mtd_concat_destroy -EXPORT_SYMBOL drivers/mtd/mtd 0x9729e0b5 mtd_concat_create -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x056a3b5b nand_ecc_get_on_die_hw_engine -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x1c465d99 nand_ecc_sw_bch_init_ctx -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x285690f0 nand_ecc_sw_hamming_get_engine -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x348d32fc of_get_nand_ecc_user_config -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x80dcbee8 nand_ecc_sw_hamming_calculate -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x8954fe5c nand_ecc_is_strong_enough -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x8fd56b59 nand_ecc_sw_bch_cleanup_ctx -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xa4da182a nand_ecc_cleanup_ctx -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xa65b2d87 nand_ecc_prepare_io_req -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xaab04c72 nand_ecc_sw_hamming_correct -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xb81311b8 nand_ecc_sw_hamming_init_ctx -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xbfb20ecf nand_ecc_sw_bch_correct -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xd383157f nand_ecc_get_sw_engine -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xd7690951 nand_ecc_finish_io_req -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xd8967642 nand_ecc_sw_bch_calculate -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xda2e1490 nand_ecc_sw_bch_get_engine +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xa4a9b2e4 register_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xcdf62a59 do_map_probe +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xdf61ec88 map_destroy +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xe63aeab4 unregister_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/gen_probe 0x75e1b934 mtd_do_chip_probe +EXPORT_SYMBOL drivers/mtd/lpddr/lpddr_cmds 0x4c72d156 lpddr_cmdset +EXPORT_SYMBOL drivers/mtd/maps/map_funcs 0x11c22233 simple_map_init +EXPORT_SYMBOL drivers/mtd/mtd 0x583aab62 mtd_concat_create +EXPORT_SYMBOL drivers/mtd/mtd 0xf134cb21 mtd_concat_destroy +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x04e54cad nand_ecc_sw_hamming_correct +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x0ec64c04 nand_ecc_sw_hamming_cleanup_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x27860da3 nand_ecc_get_on_die_hw_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x3488e600 nand_ecc_is_strong_enough +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x6e28240a nand_ecc_cleanup_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x9677c5f5 nand_ecc_sw_bch_get_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x9bd35fda of_get_nand_ecc_user_config +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xa5a34a51 nand_ecc_sw_bch_calculate +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xa6071960 nand_ecc_init_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xaee29a4b nand_ecc_sw_bch_cleanup_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xb0a108ec nand_ecc_sw_hamming_calculate +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xbcf62360 nand_ecc_sw_hamming_get_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xc2426023 nand_ecc_sw_hamming_init_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xcb45678c nand_ecc_prepare_io_req +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xcba0c4b2 nand_ecc_finish_io_req +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xd004648d nand_ecc_get_sw_engine EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xe6db989b ecc_sw_hamming_correct -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xe9ea7324 nand_ecc_sw_hamming_cleanup_ctx -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xfc2dc7aa nand_ecc_init_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xf459f201 nand_ecc_sw_bch_init_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xf84ad3b1 nand_ecc_sw_bch_correct EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xff4351b0 ecc_sw_hamming_calculate -EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0x35c3b6cc flexonenand_region -EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0x8c2b8d43 onenand_addr -EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x06d094c3 denali_remove +EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0x35f95897 onenand_addr +EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0x6fa1f1cc flexonenand_region +EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x1e7bd5dd denali_init EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x30db096f denali_calc_ecc_bytes -EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0xf94ef745 denali_init +EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x75417195 denali_remove EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0x102603bc mtk_ecc_get_parity_bits EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0x5437e775 mtk_ecc_disable EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0x5de55d81 mtk_ecc_get_stats EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0x6df58afb mtk_ecc_release EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0x76e53683 mtk_ecc_wait_done -EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0x89d1ecc2 of_mtk_ecc_get +EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0x83f520f7 of_mtk_ecc_get EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0x8dcc87d2 mtk_ecc_enable EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0xda64ef4a mtk_ecc_adjust_strength EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0xec8b9207 mtk_ecc_encode -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x0ec9b270 nand_create_bbt -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x129b44ba rawnand_sw_bch_init -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x141e92a4 nand_read_page_raw -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x355463f3 nand_monolithic_read_page_raw -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x3838e8c6 rawnand_sw_hamming_correct -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x55beb21c nand_write_oob_std -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x6598567a rawnand_sw_bch_cleanup -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x7737e964 nand_get_set_features_notsupp -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x77b40ed3 rawnand_sw_hamming_init -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x78c3dae4 nand_read_oob_std -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x79d974c1 rawnand_sw_hamming_calculate -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x7b408992 rawnand_dt_parse_gpio_cs +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x0cbd82c2 nand_scan_with_ids +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x0ef6b9ca rawnand_sw_hamming_init +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x10579293 rawnand_dt_parse_gpio_cs +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x235d7a7a rawnand_sw_bch_cleanup +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x290b8705 nand_monolithic_read_page_raw +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x52ffb016 rawnand_sw_bch_correct +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x583222ed nand_read_page_raw +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x726c63b0 nand_read_oob_std +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x7f6acbbd nand_create_bbt +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x89675101 nand_write_page_raw EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x8ecbb3b8 nand_check_erased_ecc_chunk -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xb340e212 rawnand_sw_hamming_cleanup -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xc6229227 nand_write_page_raw -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xcd84c3d6 nand_scan_with_ids -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xe1a59e0e rawnand_sw_bch_correct -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xf4530711 nand_monolithic_write_page_raw -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x06bb9447 arcnet_timeout -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x1a32173d alloc_arcdev -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x3caec122 arcnet_close -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x3d9a395a arc_proto_default -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x4df18133 arc_bcast_proto +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x8f4b2422 nand_monolithic_write_page_raw +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xae653f7a rawnand_sw_bch_init +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xc49b8cbe nand_get_set_features_notsupp +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xcb90a7ed rawnand_sw_hamming_cleanup +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xd289bc4c rawnand_sw_hamming_correct +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xe0a7ce17 rawnand_sw_hamming_calculate +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xf8732b67 nand_write_oob_std +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x142218cf arc_raw_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x26f98046 arcnet_open EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6de8e4cf free_arcdev -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x7481131a arc_proto_map -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x8588b4d3 arcnet_send_packet -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x95c18d77 arc_raw_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x9db2f2f5 arcnet_unregister_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x80375e89 alloc_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xbf5722cf free_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xd034779d arc_proto_map +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xd7e6a20c arcnet_send_packet +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xd8f632b9 arcnet_timeout +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xe18843ab arc_bcast_proto EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecb730b0 arcnet_interrupt -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xf4e7367e arcnet_open -EXPORT_SYMBOL drivers/net/arcnet/com20020 0x611396e5 com20020_found -EXPORT_SYMBOL drivers/net/arcnet/com20020 0x70ab179e com20020_check -EXPORT_SYMBOL drivers/net/arcnet/com20020 0xdd5f8a7e com20020_netdev_ops -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x0058f802 b53_get_ethtool_stats -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x0c9e9620 b53_mirror_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x1289d959 b53_br_flags -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x1f110719 b53_phylink_mac_config -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x22f3342d b53_get_sset_count -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x2380dc04 b53_get_mac_eee -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x277902ff b53_br_set_stp_state -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x296d5b30 b53_vlan_filtering -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x31fdc32a b53_get_ethtool_phy_stats -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x3d024f58 b53_brcm_hdr_setup -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x40c4c4ee b53_br_join -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x5119127e b53_imp_vlan_setup -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x52e9d153 b53_fdb_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x5550d05f b53_mirror_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x60285229 b53_br_fast_age -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x67723979 b53_fdb_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x67b0c9fa b53_switch_detect -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x717046f5 b53_set_mac_eee -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x72926263 b53_phylink_validate -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x78b4f8f7 b53_switch_alloc -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x8ffac1f5 b53_mdb_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x90b06645 b53_port_event -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa17ac938 b53_phylink_mac_an_restart -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa7e5c5f4 b53_br_leave -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa8a5a52b b53_eee_enable_set -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa9583794 b53_eee_init -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb1af1b1d b53_configure_vlan -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb4a6281d b53_get_strings -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xbbe49236 b53_phylink_mac_link_up -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xbf96795c b53_get_tag_protocol -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc0707fb9 b53_disable_port -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc122dcb7 b53_phylink_mac_link_state -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xcc8a260e b53_switch_register -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xcde6a64c b53_vlan_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd2a44cdf b53_vlan_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd749346e b53_enable_port -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xdeda534d b53_mdb_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xe9649459 b53_setup_devlink_resources -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf88936b7 b53_phylink_mac_link_down -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xfe89dd00 b53_fdb_dump -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xfef1b064 b53_br_flags_pre -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x007180ae b53_serdes_init -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x2a59a4e3 b53_serdes_phylink_validate -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x4c589521 b53_serdes_link_set -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x62af4268 b53_serdes_config -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x82557911 b53_serdes_link_state -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x9273555d b53_serdes_an_restart -EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x16467531 lan9303_probe -EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x88fb8a37 lan9303_shutdown +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xf162c490 arcnet_unregister_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xf16836ad arc_proto_default +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xfae616a9 arcnet_close +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x54e3871d com20020_netdev_ops +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x789f1e31 com20020_check +EXPORT_SYMBOL drivers/net/arcnet/com20020 0xbdd1a0dc com20020_found +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x0276ab51 b53_switch_detect +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x07438ce8 b53_eee_init +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x0c928ef2 b53_phylink_mac_an_restart +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x10124bde b53_fdb_dump +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x1b4caf74 b53_get_ethtool_phy_stats +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x1c5aa83e b53_enable_port +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x1e310f89 b53_vlan_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x1ece4fed b53_br_flags +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x2d54eaf5 b53_phylink_mac_link_down +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x304ac3d4 b53_configure_vlan +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x380c1adf b53_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x3afccb1f b53_disable_port +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x3fab6ef0 b53_mirror_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x3feb2b64 b53_vlan_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x410fc570 b53_get_ethtool_stats +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x4af2d52a b53_switch_register +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x4cc71f2b b53_br_flags_pre +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x5304b5fe b53_fdb_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x551361b3 b53_brcm_hdr_setup +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x632c03a5 b53_br_join +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x64b9031b b53_imp_vlan_setup +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x6873e1f5 b53_br_leave +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x72e54236 b53_setup_devlink_resources +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x75a540c4 b53_mirror_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7dffaa92 b53_phylink_mac_config +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x872bc9bc b53_mdb_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x8a9849d6 b53_fdb_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x8b42c6af b53_get_strings +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x9a6bab07 b53_vlan_filtering +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x9b1289c3 b53_set_mac_eee +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa9f2e664 b53_phylink_validate +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xaad64ad3 b53_br_set_stp_state +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb24dc4ad b53_br_fast_age +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc07d6077 b53_phylink_mac_link_state +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xed175d3e b53_mdb_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xed31f43a b53_get_sset_count +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xed99b150 b53_phylink_mac_link_up +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xedce0ee3 b53_get_tag_protocol +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf1f9d3e7 b53_port_event +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf7df8f74 b53_get_mac_eee +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xfe2286b3 b53_eee_enable_set +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x191c2610 b53_serdes_link_set +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x55e213dc b53_serdes_phylink_validate +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x7622f531 b53_serdes_config +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x90c7d32c b53_serdes_an_restart +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xb2a021b9 b53_serdes_init +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xee947b73 b53_serdes_link_state +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x81fca23d lan9303_shutdown EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xada83f40 lan9303_register_set -EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xef8b3ed1 lan9303_remove -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz8795 0xf92c4373 ksz8_switch_register -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz9477 0x46e8b12c ksz9477_switch_register -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0x0efdadde ksz_switch_alloc -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0x3c2d0211 ksz_switch_remove -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0x6ecafa02 ksz_switch_register -EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x73949aec vsc73xx_probe +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xc4d53336 lan9303_probe +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xc7309618 lan9303_remove +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz8795 0x7a52fbb9 ksz8_switch_register +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz9477 0x37627410 ksz9477_switch_register +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0x1185601c ksz_switch_remove +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0x425e2267 ksz_switch_register +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0x784639e5 ksz_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x04c2e901 vsc73xx_shutdown EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x99d242fe vsc73xx_is_addr_valid -EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0xb8328f17 vsc73xx_shutdown -EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0xc1671ed5 vsc73xx_remove -EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x15b41881 xrs700x_switch_shutdown -EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x1c0db2dc xrs700x_switch_remove -EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x4d4fb3ad xrs700x_switch_register -EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x5163ec50 xrs700x_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x99f2c9bf vsc73xx_probe +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0xb3a53c38 vsc73xx_remove +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x03174a77 xrs700x_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x601cff3b 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 0x96f6e888 xrs700x_switch_shutdown EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xb25facfa xrs7003e_info +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xb2a7b09a xrs700x_switch_remove EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xb89aa5e3 xrs7004e_info -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x0bb2c362 __alloc_ei_netdev EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x119721ac ei_interrupt -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x1267aa3c NS8390_init -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x3c9823ac ei_close -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x746fad01 ei_get_stats -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x7bbdb4cc ei_poll -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x9da06310 ei_start_xmit -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xa7020b1b ei_tx_timeout -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xd2188aee ei_netdev_ops -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xebf8efee ei_open -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xec0388de ei_set_multicast_list -EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnxt/bnxt_en 0xb5a5a320 bnxt_ulp_probe -EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x2c774c8c cnic_register_driver +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x26ad583c ei_set_multicast_list +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x2a897ae5 __alloc_ei_netdev +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x40d23a95 ei_close +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x7538cd3c ei_tx_timeout +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x854b51bf ei_netdev_ops +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xdf91cb97 NS8390_init +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xe1656c93 ei_start_xmit +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xef545325 ei_open +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xfd43c9e5 ei_poll +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xfd9b3231 ei_get_stats +EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnxt/bnxt_en 0x1a559ab5 bnxt_ulp_probe EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x636af174 cnic_unregister_driver -EXPORT_SYMBOL drivers/net/ethernet/cavium/common/cavium_ptp 0x3f9780b6 cavium_ptp_get -EXPORT_SYMBOL drivers/net/ethernet/cavium/common/cavium_ptp 0x4ab38e52 cavium_ptp_put +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x92e4ee9b cnic_register_driver +EXPORT_SYMBOL drivers/net/ethernet/cavium/common/cavium_ptp 0x26e08c9c cavium_ptp_get +EXPORT_SYMBOL drivers/net/ethernet/cavium/common/cavium_ptp 0x7bf63748 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 @@ -2670,366 +2670,365 @@ 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 0x0963ac3f cxgb3_ofld_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x17d70d9b cxgb3_queue_tid_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x34045411 cxgb3_alloc_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x5ce0373b cxgb3_free_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xa3048194 t3_l2t_send_event -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xb850f52d cxgb3_register_client -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xbcab51f1 cxgb3_insert_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xc5cf183d t3_l2t_send_slow -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xc919a915 cxgb3_remove_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xcf6b7f46 cxgb3_alloc_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xd49743b7 dev2t3cdev -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xd67d397d t3_register_cpl_handler -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xdefbbeb3 cxgb3_unregister_client -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xe3655a89 t3_l2t_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xe5080568 cxgb3_free_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xf81c0d7f t3_l2e_free -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x010a4028 cxgb4_update_root_dev_clip -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0a7393e8 cxgb4_clip_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x2b2ad208 cxgb3_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x3b142993 t3_l2t_send_event +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x4c5200ff cxgb3_insert_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x4cdb0994 cxgb3_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x5434923a cxgb3_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x5d834a7b cxgb3_register_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x6235f3a8 cxgb3_queue_tid_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x67f1a688 t3_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x81e67afa t3_l2e_free +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x94467a7c t3_register_cpl_handler +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x94997860 cxgb3_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xa08f3928 t3_l2t_send_slow +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xa4cead55 cxgb3_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xa4e1d2fe cxgb3_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xab07478c dev2t3cdev +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xbc7ce62f cxgb3_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x05d8ddf7 cxgb4_iscsi_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x09dee90a cxgb4_clip_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0dfaa496 cxgb4_inline_tx_skb EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0f1a5528 cxgb4_unregister_uld -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x10d8b690 cxgb4_create_server6 -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x13737d3c cxgb4_create_server -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x161a1382 cxgb4_port_e2cchan -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1c4c70d6 cxgb4_l2t_alloc_switching -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x22d73df9 cxgb4_alloc_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x239af68a cxgb4_map_skb -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x25294cfa cxgb4_reclaim_completed_tx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2a791bfc cxgb4_dbfifo_count -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x336984fd cxgb4_l2t_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x347f5c6c cxgb4_bar2_sge_qregs -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x372d5655 cxgb4_l2t_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x407b6345 cxgb4_read_sge_timestamp -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x425db016 cxgb4_write_sgl -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4ef550c8 cxgb4_clip_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x129381ce cxgb4_get_srq_entry +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x23abd0f2 cxgb4_port_chan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x275fb27f cxgb4_update_root_dev_clip +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x27fcb32c cxgb4_sync_txq_pidx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2e601ce0 cxgb4_alloc_sftid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x31994ea9 cxgb4_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x335e5103 cxgb4_write_sgl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x39a79d97 cxgb4_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3ecc3161 cxgb4_read_sge_timestamp +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x40986296 cxgb4_smt_alloc_switching +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x41888221 cxgb4_free_atid EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x50ee5c07 cxgb4_best_aligned_mtu -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x55190ce6 cxgb4_check_l2t_valid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5a79a134 cxgb4_ring_tx_db -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x62973f65 cxgb4_port_idx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x651fcd3f cxgb4_port_chan -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x66e6ce96 cxgb4_iscsi_init -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x67d0901b cxgb4_get_srq_entry -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6fa8304a cxgb4_flush_eq_cache -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7783ad13 cxgb4_free_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x796c81c7 cxgb4_remove_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x92d7112f cxgb4_remove_server -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa62c24ce cxgb4_ofld_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa779bb63 cxgb4_alloc_sftid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x524478f9 cxgb4_create_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5a8e15ef cxgb4_l2t_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x63da3717 cxgb4_dbfifo_count +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x687e9e2c cxgb4_port_viid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6e0db5e2 cxgb4_register_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x78e7c825 cxgb4_create_server6 +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x81c24900 cxgb4_remove_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8c732ff6 cxgb4_remove_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9ac4481f cxgb4_create_server EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa8db193f cxgb4_smt_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa96ac7bf cxgb4_alloc_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xab75f918 cxgb4_read_tpte -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb20451e2 cxgb4_port_viid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xbd3ae95f cxgb4_l2t_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc3991695 cxgb4_remove_server_filter -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xca753f16 cxgb4_create_server_filter -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd4bc3ac0 cxgb4_pktgl_to_skb -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd4e1e41d cxgb4_write_partial_sgl -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd5941821 cxgb4_sync_txq_pidx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa9351d32 cxgb4_write_partial_sgl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xad1e61b6 cxgb4_l2t_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb325747a cxgb4_select_ntuple +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb3c87366 cxgb4_crypto_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb6ad0a89 cxgb4_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xbc8d80cc cxgb4_read_tpte +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc5e6b96f cxgb4_port_idx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc894af72 cxgb4_check_l2t_valid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xcf7265a7 cxgb4_alloc_stid EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd69a0294 cxgb4_best_mtu -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd7d5b852 cxgb4_select_ntuple -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd803bb26 t4_cleanup_clip_tbl -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xdc578a62 cxgb4_get_tcp_stats -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe789d097 cxgb4_inline_tx_skb -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe9518414 cxgb4_immdata_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xed9a395a cxgb4_smt_alloc_switching -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf1505c38 cxgb4_register_uld -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf9603d0e cxgb4_free_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xfc4d5224 cxgb4_crypto_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x074af496 cxgbi_ppm_ppod_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x13ad1621 cxgbi_ppm_ppods_reserve +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd946382e cxgb4_pktgl_to_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xdaae8e8c cxgb4_reclaim_completed_tx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xdaf2557a cxgb4_map_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xdc807929 cxgb4_flush_eq_cache +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe0b26434 cxgb4_bar2_sge_qregs +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe53dd9d6 t4_cleanup_clip_tbl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe5410155 cxgb4_port_e2cchan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xedf8eb8a cxgb4_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xee70c1c9 cxgb4_immdata_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xeeb54c84 cxgb4_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xef0362ff cxgb4_l2t_alloc_switching +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf17a19c6 cxgb4_get_tcp_stats +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xfc125464 cxgb4_ring_tx_db +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xfe0335b0 cxgb4_clip_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x01a7f045 cxgbi_ppm_init EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x1bdaafe1 cxgbi_tagmask_set +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x247a2d83 cxgbi_ppm_ppods_reserve EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x255ab30f cxgb_get_4tuple -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x34a71ad1 cxgb_find_route6 -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x3a0a93f7 cxgbi_ppm_make_ppod_hdr -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x9da793d5 cxgbi_ppm_init -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xf11d32d5 cxgbi_ppm_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xfbb17cc6 cxgb_find_route -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x0d1ea61a vnic_dev_get_pdev -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x527bc534 vnic_dev_register -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x8977291f enic_api_devcmd_proxy_by_index -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x897a2ef0 vnic_dev_get_res_count -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xe3d8e09a vnic_dev_get_res -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xf4f4810f vnic_dev_unregister +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x5d05adac cxgbi_ppm_ppod_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x66d38932 cxgb_find_route +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x769e50f0 cxgb_find_route6 +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xd5b06b4f cxgbi_ppm_make_ppod_hdr +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xf268f9c7 cxgbi_ppm_release +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x12002215 vnic_dev_unregister +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x20fa325a vnic_dev_register +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x40f21bf0 vnic_dev_get_pdev +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x50854726 vnic_dev_get_res +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x5471a6ca enic_api_devcmd_proxy_by_index +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x7e817751 vnic_dev_get_res_count +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x43619120 be_roce_unregister_driver EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x4e2e10d2 be_roce_mcc_cmd -EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x98576c2e be_roce_register_driver -EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xc1041c6f be_roce_unregister_driver -EXPORT_SYMBOL drivers/net/ethernet/freescale/dpaa2/fsl-dpaa2-eth 0x236a9263 dpaa2_ptp +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xb1b7dc66 be_roce_register_driver EXPORT_SYMBOL drivers/net/ethernet/freescale/dpaa2/fsl-dpaa2-eth 0x4412391e dpaa2_phc_index -EXPORT_SYMBOL drivers/net/ethernet/freescale/enetc/fsl-enetc-ierb 0xe1e19850 enetc_ierb_register_pf +EXPORT_SYMBOL drivers/net/ethernet/freescale/dpaa2/fsl-dpaa2-eth 0xd388da0f dpaa2_ptp +EXPORT_SYMBOL drivers/net/ethernet/freescale/enetc/fsl-enetc-ierb 0xf18f3419 enetc_ierb_register_pf EXPORT_SYMBOL drivers/net/ethernet/freescale/enetc/fsl-enetc-ptp 0x5431a304 enetc_phc_index -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x5296a3fb hnae_ae_unregister -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x9db04798 hnae_ae_register +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x4be90f25 hnae_reinit_handle +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x94d0507d hnae_ae_register EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xb1266858 hnae_register_notifier -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xb5b6fc2c hnae_get_handle -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xb799fa78 hnae_reinit_handle +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xd7d2aac3 hnae_ae_unregister EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xdf24adef hnae_unregister_notifier -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xee6ce811 hnae_put_handle -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hns_dsaf 0x19622906 hns_dsaf_roce_reset -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x2da9a193 hnae3_set_client_init_flag -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x339dc4eb hnae3_unregister_client -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x64d38c5f hnae3_unregister_ae_algo -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x6921d5f9 hnae3_register_client -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x89607cf0 hnae3_unregister_ae_dev -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xa06d5a88 hnae3_unregister_ae_algo_prepare -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xb2222f0f hnae3_register_ae_algo -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xd3dc6de2 hnae3_register_ae_dev -EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0x288bf886 iavf_register_client -EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0xa86e933c iavf_unregister_client -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x04baad5c __traceiter_otx2_msg_process -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x1bd8dcc8 __otx2_mbox_reset -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x33b79e65 otx2_mbox_get_rsp +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xeb4ee45f hnae_put_handle +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xf56c2925 hnae_get_handle +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hns_dsaf 0x956a63a8 hns_dsaf_roce_reset +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x0610759c hnae3_unregister_ae_algo +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x081f7b9c hnae3_register_ae_dev +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x18814686 hnae3_register_ae_algo +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x1ddd259c hnae3_unregister_ae_algo_prepare +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x694573c4 hnae3_register_client +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x813beeec hnae3_unregister_ae_dev +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x84cecd41 hnae3_set_client_init_flag +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xe061e6b4 hnae3_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0x2b9cc917 iavf_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0x6d6e13f9 iavf_register_client +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x1a4f99b3 __traceiter_otx2_msg_alloc +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x241bc58c otx2_mbox_msg_send +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x2945ed43 otx2_mbox_init +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x2e396e96 otx2_mbox_regions_init 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 0x3cd059cd otx2_mbox_nonempty +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x3eda0e1e __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 0x52004a86 otx2_mbox_check_rsp_msgs -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x55bb19d0 otx2_mbox_wait_for_rsp -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x575d6f59 otx2_mbox_nonempty +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x5c9006a3 otx2_mbox_wait_for_rsp +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x5d36c20b otx2_mbox_busy_poll_for_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 0x69579834 otx2_mbox_reset -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x89dd0e90 otx2_mbox_init -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x8ef649f4 otx2_mbox_regions_init -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x8f11747e otx2_mbox_alloc_msg_rsp +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x6e6c3b49 __traceiter_otx2_msg_interrupt +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x751eaf70 otx2_mbox_alloc_msg_rsp +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x77c8d4f8 otx2_reply_invalid_msg +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x7b6c9609 otx2_mbox_check_rsp_msgs +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x88f71328 otx2_mbox_get_rsp +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x8b0aba38 __otx2_mbox_reset EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x8f772a3f otx2_mbox_id2name -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x98330348 otx2_reply_invalid_msg -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x9ed63236 otx2_mbox_msg_send 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 0xb5b79b0a 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 0xe2088f98 otx2_mbox_busy_poll_for_rsp -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xed4f12d0 __traceiter_otx2_msg_alloc -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xfd38d098 __traceiter_otx2_msg_interrupt -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x05e5f932 mbox_handler_npa_lf_alloc -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x08708fac mbox_handler_nix_bp_enable -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x3f29f121 mbox_handler_msix_offset -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x41ae9c0b otx2_tx_timeout -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x4311e72c otx2vf_mcam_flow_init -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x4fcae39a otx2_alloc_mcam_entries -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x5005634f otx2_attach_npa_nix -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x5012182e otx2_get_stats64 -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x5395bb92 cn10k_lmtst_init -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x6d27a9f2 mbox_handler_nix_txsch_alloc -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x728bf925 otx2vf_set_ethtool_ops -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x74f32604 otx2_stop -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x7c1fd10d otx2_tc_alloc_ent_bitmap -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x811bc602 otx2_get_mac_from_af -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xa49def20 otx2_detach_resources -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xb94d3c5f mbox_handler_nix_lf_alloc -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xc0ade466 otx2_sq_append_skb -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xc3cbf14c otx2_mcam_flow_del -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xd92c69f9 otx2_open -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xdb05e825 otx2_get_max_mtu -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xdc58a425 otx2_set_real_num_queues +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xd16eeefe otx2_mbox_destroy +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xf2008eb4 otx2_mbox_reset +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x0ff8cba3 otx2_detach_resources +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x1158a358 cn10k_lmtst_init +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x1a2b493b otx2_alloc_mcam_entries +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x1f6f48f9 otx2vf_mcam_flow_init +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x45257a29 mbox_handler_nix_bp_enable +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x4e7efce9 otx2_mbox_up_handler_cgx_link_event +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x4fb861d9 mbox_handler_npa_lf_alloc +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x516cf60b mbox_handler_nix_txsch_alloc +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x6bc0f400 otx2_get_mac_from_af +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x7f758b37 otx2_tc_alloc_ent_bitmap +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x84590de9 otx2_get_stats64 +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x896e7a54 otx2_set_mac_address +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x8f5b9d3f otx2_sq_append_skb +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xacf6cd5c otx2_attach_npa_nix +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xad3e207c otx2_mcam_flow_del +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xb5520d34 mbox_handler_msix_offset +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xb8bc797c otx2_set_real_num_queues +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xbd518099 otx2_get_max_mtu +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xc9bee483 otx2_open +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xda810db6 mbox_handler_nix_lf_alloc EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xeffd130b otx2_get_maxflows -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xf1f5201d otx2_mbox_up_handler_cgx_link_event -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xfdce60c6 otx2_set_mac_address -EXPORT_SYMBOL drivers/net/ethernet/marvell/prestera/prestera 0x14b6e6e5 prestera_device_unregister -EXPORT_SYMBOL drivers/net/ethernet/marvell/prestera/prestera 0x5ee3610f prestera_device_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x004bc5ff mlx4_get_eqs_per_port -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0b028543 mlx4_release_eq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0d5801b4 mlx4_SET_PORT_qpn_calc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x14383ff4 mlx4_get_module_info -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1ccf493e mlx4_get_is_vlan_offload_disabled -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1d09305d mlx4_get_parav_qkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x252c035b mlx4_SET_VPORT_QOS_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2ab96882 mlx4_get_roce_gid_from_slave -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2b5e1b1c mlx4_assign_eq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x32e9a8ba mlx4_ALLOCATE_VPP_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x40c12a69 mlx4_eq_get_irq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x40f3c49d mlx4_tunnel_steer_add -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x456511e1 mlx4_ALLOCATE_VPP_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6479b1c8 mlx4_SET_PORT_user_mac -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6a801da2 mlx4_gen_pkey_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6eddfd09 set_and_calc_slave_port_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7e09d91f mlx4_gen_slaves_port_mgt_ev +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xf73d435f otx2vf_set_ethtool_ops +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xf771c1f0 otx2_tx_timeout +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xfddb8cd8 otx2_stop +EXPORT_SYMBOL drivers/net/ethernet/marvell/prestera/prestera 0x3438661a prestera_device_register +EXPORT_SYMBOL drivers/net/ethernet/marvell/prestera/prestera 0x6ce6b89e prestera_device_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x00be14ef mlx4_gen_port_state_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x037692a2 mlx4_get_cpu_rmap +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x14faaefc mlx4_SET_PORT_BEACON +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x187bd37f mlx4_gen_pkey_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x18d1b4f9 mlx4_get_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1c135d1b mlx4_is_eq_shared +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x21c6775f mlx4_gen_guid_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2c0963cd mlx4_SET_PORT_user_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2f74588b mlx4_SET_PORT_user_mtu +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x33dbc2a0 mlx4_SET_PORT_SCHEDULER +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3bb6494d set_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3e8385e2 mlx4_ALLOCATE_VPP_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x44f2dea0 mlx4_max_tc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x45b2c629 mlx4_ALLOCATE_VPP_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x45e2234d mlx4_test_async +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4fae350c mlx4_assign_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5769a84b mlx4_SET_PORT_VXLAN +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5d0e8d52 mlx4_get_is_vlan_offload_disabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x67d64b43 mlx4_SET_PORT_general +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6aeb2566 mlx4_test_interrupt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x71950b84 mlx4_put_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x756a5162 mlx4_SET_PORT_fcs_check EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fdde0b4 mlx4_handle_eth_header_mcast_prio -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x80be8e5c mlx4_sync_pkey_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x83ed38da set_phv_bit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8d61449a mlx4_SET_PORT_BEACON -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9a7e4203 mlx4_SET_PORT_general -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9abfdcb9 mlx4_get_slave_pkey_gid_tbl_len -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9b0b1a74 mlx4_gen_port_state_change_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9d58a30e mlx4_query_diag_counters -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa4e2c864 mlx4_SET_VPORT_QOS_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xac9d9688 mlx4_SET_MCAST_FLTR -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb1910282 mlx4_get_slave_from_roce_gid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb79382ae mlx4_test_interrupt -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbbd4a865 mlx4_is_eq_vector_valid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc4edfeeb mlx4_is_slave_active -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc5db543a mlx4_max_tc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc784aee8 mlx4_get_cpu_rmap -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcbadba66 mlx4_SET_PORT_fcs_check -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcce53d00 mlx4_is_eq_shared -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xccf096c5 mlx4_gen_guid_change_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcd9ba9ab get_phv_bit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd0223d29 mlx4_test_async -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xda51ee24 mlx4_SET_PORT_user_mtu -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe71cccbb mlx4_put_slave_node_guid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf3ffe7f0 mlx4_get_slave_node_guid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf691bc7e mlx4_SET_PORT_SCHEDULER -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf8b3c8c7 mlx4_get_slave_port_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf962321a mlx4_SET_PORT_PRIO2TC -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfd7bb796 mlx4_SET_PORT_VXLAN -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x00e48799 mlx5_rl_add_rate -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x047e66d6 mlx5_rl_remove_rate -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x05d0321f mlx5_eq_get_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x071efa1b mlx5_lag_get_peer_mdev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x09292248 mlx5_eswitch_vport_rep -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x095bfbf4 mlx5_lag_is_shared_fdb -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0daa64b5 mlx5_get_flow_namespace -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1465b822 mlx5_modify_header_dealloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x17e02dc3 mlx5_core_modify_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x186640eb mlx5_lag_get_slave_port -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x196e72d3 mlx5_core_create_psv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1b62246e mlx5_del_flow_rules -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1be34a5f mlx5_fpga_sbu_conn_sendmsg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1cf10487 mlx5_core_create_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x81d2d932 mlx4_SET_VPORT_QOS_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x82cc41fa mlx4_is_slave_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8d6ff6c2 mlx4_is_eq_vector_valid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x925b7c75 set_and_calc_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x96c03523 mlx4_get_slave_from_roce_gid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x96d92df5 mlx4_SET_MCAST_FLTR +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9d6f2910 mlx4_gen_slaves_port_mgt_ev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9e38dbfb mlx4_eq_get_irq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa24dca41 mlx4_release_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb2db96eb get_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb9514f28 mlx4_get_roce_gid_from_slave +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc603ff9f mlx4_SET_VPORT_QOS_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd4df2aa3 mlx4_get_parav_qkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd87666b4 mlx4_get_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xda7bcdbb mlx4_get_slave_pkey_gid_tbl_len +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdb12df96 mlx4_query_diag_counters +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdccb2f03 mlx4_get_eqs_per_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdeb7f00b mlx4_sync_pkey_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe053df8e mlx4_SET_PORT_PRIO2TC +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe9248b93 mlx4_tunnel_steer_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf6e8d48e mlx4_get_module_info +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf85d9bfa mlx4_SET_PORT_qpn_calc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0489f3ba mlx5_fs_add_rx_underlay_qpn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0644212c mlx5_comp_vectors_count +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x071b2d6b mlx5_cmd_cleanup_async_ctx +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x089a6baf mlx5_cmd_init_async_ctx +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0972a8e2 mlx5_eswitch_register_vport_reps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0c080369 mlx5_lag_get_slave_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x10f73c65 mlx5_lag_get_roce_netdev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x12add8c8 mlx5_comp_irq_get_affinity_mask +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x15125a33 mlx5_rl_remove_rate_raw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x169b5e0f mlx5_rl_is_in_range +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1a24e04e mlx5_eswitch_get_vport_metadata_for_set +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 0x1ef27602 mlx5_eswitch_get_proto_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1f2c5d9c __traceiter_mlx5_fs_set_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x217d57b7 mlx5_eswitch_get_encap_mode 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 0x22fca019 mlx5_core_query_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x231a747b mlx5_core_destroy_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x26b1b220 mlx5_vector2eqn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x26d16241 mlx5_cmd_free_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x28993523 mlx5_notifier_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x298839c2 mlx5_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x239f01c5 mlx5_lag_is_shared_fdb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x275aa772 mlx5_rl_add_rate_raw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x29039606 mlx5_lag_is_sriov +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2a89af0a mlx5_mpfs_del_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2ab04112 mlx5_core_destroy_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2bc09419 mlx5_core_modify_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3080a6aa mlx5_core_detach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x326ef147 mlx5_core_query_mkey EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x32fc77d1 __tracepoint_mlx5_fs_del_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x331fd113 mlx5_create_flow_group +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3381895c mlx5_cmd_exec_polling +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3382467b mlx5_fc_query 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 0x369ba525 __traceiter_mlx5_fs_del_fg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3e4a3182 mlx5_destroy_flow_group -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3e4d394e mlx5_eswitch_get_vport_metadata_for_match -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3efa8f6e mlx5_cmd_create_vport_lag -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3f5750ba mlx5_eq_destroy_generic -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4053fb77 mlx5_cmd_exec_cb -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x40659749 mlx5_fpga_get_sbu_caps -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x413f6127 mlx5_qp_debugfs_init -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x420ce392 mlx5_lag_is_roce -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4274f806 mlx5_eq_enable -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4278061a mlx5_fpga_sbu_conn_destroy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x42a6e6f5 mlx5_eswitch_register_vport_reps -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x42c7522d mlx5_core_create_tis -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x430ffad7 mlx5_buf_alloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x43284c84 mlx5_packet_reformat_alloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x43b87d2c mlx5_debug_qp_remove +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x381246fd mlx5_eswitch_get_proto_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3964e11a mlx5_fpga_mem_read +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3995aeda mlx5_fpga_sbu_conn_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3bd0bd5a mlx5_fpga_sbu_conn_sendmsg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3ca4663b mlx5_rl_remove_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3df3e1af mlx5_qp_debugfs_cleanup +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x412f1f05 mlx5_add_flow_rules +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4435fc29 mlx5_lag_query_cong_counters EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x49580652 mlx5_create_auto_grouped_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4afd16ff mlx5_core_query_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4d395fcf mlx5_nic_vport_disable_roce +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4a627294 mlx5_get_flow_namespace +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4b16a958 mlx5_core_alloc_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 0x4fcd9e57 mlx5_core_create_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x500de799 mlx5_core_dealloc_transport_domain EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x503f3c9d __traceiter_mlx5_fs_add_ft -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x51f658e1 mlx5_rl_add_rate_raw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5109cfde mlx5_core_roce_gid_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5233fc5a mlx5_eq_create_generic +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x54cca140 mlx5_core_modify_tis 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 0x55b88c73 mlx5_create_lag_demux_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x58553039 mlx5_fc_create -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x58a736a8 mlx5_core_destroy_rqt -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5edfff81 mlx5_comp_vectors_count -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5f8caf3e mlx5_core_create_rqt -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5fcab93b mlx5_cmd_destroy_vport_lag +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x567f7acb mlx5_packet_reformat_dealloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x573b9a9f mlx5_cmd_exec_cb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x589e1fe0 mlx5_eswitch_vport_match_metadata_enabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5a0c9542 mlx5_rsc_dump_next +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5e10d7fe mlx5_alloc_bfreg EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x60ae791f __traceiter_mlx5_fs_del_ft 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 0x62f00587 mlx5_eswitch_add_send_to_vport_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x663c7206 mlx5_fpga_mem_read -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x66f9e27d mlx5_fc_query -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x68b78d66 mlx5_rsc_dump_next -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x68e6bd77 mlx5_core_query_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6a375a03 mlx5_eswitch_vport_match_metadata_enabled -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6e7a2bd7 mlx5_mpfs_add_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x61f08a4f mlx5_eswitch_unregister_vport_reps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x62401abc mlx5_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6332d02c mlx5_query_ib_port_oper +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6964cc31 mlx5_core_destroy_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6c7beeb9 mlx5_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6f024862 mlx5_modify_header_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x703dbf35 mlx5_core_destroy_psv 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 0x73b92d02 mlx5_get_fdb_sub_ns -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x749d8edd mlx5_eswitch_unregister_vport_reps -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7507fe9c mlx5_fpga_sbu_conn_create -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x78fd8762 mlx5_free_bfreg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x79988c9c mlx5_add_flow_rules +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x74661387 __traceiter_mlx5_fw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x76efa552 __traceiter_mlx5_fs_del_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7799476a mlx5_core_attach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x77ff9928 mlx5_eq_destroy_generic +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7a5c5477 mlx5_cmd_create_vport_lag 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 0x7cc61160 mlx5_eq_notifier_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fcb8302 mlx5_eq_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7c1ff0a7 mlx5_eq_disable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7c9eb1fc __traceiter_mlx5_fs_add_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7e6571c0 mlx5_cmd_alloc_uar 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 0x7ffe6bd4 mlx5_core_query_sq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x83df8b2b mlx5_eswitch_get_core_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x85338109 mlx5_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x81c6564b mlx5_eq_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8234282e mlx5_notifier_register 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 0x88476ff0 mlx5_core_alloc_pd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8e582468 mlx5_debugfs_root -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x905d4c06 mlx5_cmd_exec_polling -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x90904f4e __traceiter_mlx5_fs_add_fg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x90f493a9 mlx5_rl_is_in_range +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x87a176fa mlx5_modify_header_dealloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x899477ef mlx5_nic_vport_disable_roce +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x89e357bf mlx5_eswitch_vport_rep +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8c57b6c2 mlx5_qp_debugfs_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8de13c80 mlx5_core_dealloc_pd EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x91443f27 mlx5_create_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x91bf732e mlx5_query_ib_port_oper -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x93429c4e mlx5_core_modify_cq_moderation -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9535d431 mlx5_cmd_cleanup_async_ctx -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x95b24586 mlx5_qp_debugfs_cleanup -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96623455 mlx5_eswitch_get_vport_metadata_for_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x91eb4063 mlx5_lag_get_peer_mdev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x929b7530 mlx5_core_create_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9317fcef mlx5_put_uars_page +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9488f05d mlx5_debug_qp_remove EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96eb2c99 mlx5_fc_id -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9a8e40cf mlx5_eswitch_get_encap_mode -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9b1688c1 mlx5_core_destroy_tir -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9cc5b83b mlx5_core_modify_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9924c38e mlx5_fc_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x999c29c7 mlx5_core_destroy_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9bad07b9 mlx5_mpfs_add_mac 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 0x9e679013 mlx5_fc_destroy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa101046d mlx5_alloc_bfreg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa18f190a mlx5_eswitch_uplink_get_proto_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa29c576c mlx5_rdma_rn_get_params -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa74feeeb mlx5_core_create_tir -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa812363f __traceiter_mlx5_fs_del_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa8a8da28 mlx5_comp_irq_get_affinity_mask -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaaa6ed10 mlx5_debug_qp_add -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xab6c3a47 mlx5_lag_is_sriov -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xad005155 mlx5_core_destroy_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9e39df60 mlx5_eswitch_get_vport_metadata_for_match +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa00bb0ad mlx5_core_query_vendor_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa1898c1f mlx5_core_create_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa32e5735 mlx5_eswitch_reg_c1_loopback_enabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa458f43e mlx5_core_alloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa6a1cbc3 mlx5_core_create_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa735048f mlx5_create_flow_group +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaa7685a6 mlx5_core_query_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xacfd3eb4 __traceiter_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 0xaf39b2d8 __traceiter_mlx5_fs_set_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb6a37ad9 mlx5_core_dealloc_pd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb6be9531 mlx5_fs_remove_rx_underlay_qpn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb0cbc124 mlx5_core_query_sq +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 0xb5338b3b mlx5_del_flow_rules +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb5ce2616 mlx5_buf_alloc 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 0xba105c2c mlx5_eswitch_reg_c1_loopback_enabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb8849a07 mlx5_eq_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb89ea81a mlx5_eswitch_get_core_dev +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 0xbc51f461 mlx5_core_query_vendor_id -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbccb8df6 mlx5_rl_remove_rate_raw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbcfa6ce3 mlx5_modify_header_alloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbd599d08 mlx5_packet_reformat_dealloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc1c773f6 mlx5_core_modify_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc255eb98 mlx5_cmd_alloc_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc6481a22 mlx5_core_attach_mcg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc75e66b8 mlx5_lag_get_roce_netdev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc798f90e mlx5_eq_disable -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc89c6d12 mlx5_mpfs_del_mac -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcc384247 mlx5_fs_add_rx_underlay_qpn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcc9e9cc1 mlx5_put_uars_page -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd0a9038a mlx5_core_destroy_psv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd16d4194 mlx5_rsc_dump_cmd_create -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd2157602 __traceiter_mlx5_fs_del_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbb6932a5 mlx5_eswitch_add_send_to_vport_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbb929df4 mlx5_fpga_get_sbu_caps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbc07e751 mlx5_rdma_rn_get_params +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc1868520 mlx5_fc_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc2ad568c mlx5_packet_reformat_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc35b8a4d mlx5_lag_is_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc4d8f563 mlx5_eq_enable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc7725c39 mlx5_core_destroy_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc831963b mlx5_cmd_destroy_vport_lag +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc9bcd03c mlx5_core_modify_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcb73bf8f mlx5_cmd_free_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xce31aab9 mlx5_fpga_mem_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd0b7e7a2 mlx5_get_fdb_sub_ns +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd1b4c64c mlx5_core_modify_cq_moderation +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd30194be mlx5_core_modify_rq 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 0xd6e872f0 mlx5_core_dealloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd750ed9c mlx5_eq_get_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd751aa93 mlx5_rsc_dump_cmd_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd7b6cdb9 mlx5_core_destroy_mkey EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd8a12a67 mlx5_destroy_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xda67cbc5 mlx5_core_roce_gid_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdd58d0a4 mlx5_core_destroy_tis -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xded1d356 mlx5_fpga_mem_write -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe0060f44 mlx5_core_alloc_transport_domain -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe093ae18 mlx5_get_uars_page -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe0f8c5c1 mlx5_lag_is_active -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe15d4562 mlx5_core_destroy_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe36d4deb __traceiter_mlx5_fw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdf99c4d3 mlx5_core_query_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe17b1325 mlx5_fpga_sbu_conn_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe1e2d045 mlx5_get_uars_page +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe23c267a mlx5_free_bfreg EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe4e09c2b __tracepoint_mlx5_fw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe8a52a6c mlx5_cmd_init_async_ctx -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe9ebb167 mlx5_lag_query_cong_counters +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe544f4ec mlx5_fs_remove_rx_underlay_qpn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeafa1c21 mlx5_vector2eqn EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeb9a8bcf __SCK__tp_func_mlx5_fs_del_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xed70f817 mlx5_eq_create_generic -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf5b1bb55 __traceiter_mlx5_fs_add_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf6c32593 mlx5_core_create_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xebc92daa mlx5_debug_qp_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeda1a95a mlx5_eq_update_ci +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xefb3b03e mlx5_rl_add_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf0317fcf mlx5_lag_is_master +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf12851f6 mlx5_core_destroy_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf4b65456 mlx5_core_create_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf5efc6f4 mlx5_lag_is_roce +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf60b297e mlx5_eswitch_uplink_get_proto_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf71a0b1e mlx5_core_create_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf8282f55 mlx5_debugfs_root 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 0xf939fb1a mlx5_core_create_cq 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 0xfcfea2b1 mlx5_lag_is_master -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xff12f5cc mlx5_eq_update_ci -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xff204019 mlx5_core_modify_tis -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xff5917e1 mlx5_core_detach_mcg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxfw/mlxfw 0x0458d14e mlxfw_firmware_flash +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfe5f48a4 mlx5_core_create_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxfw/mlxfw 0xfc6d05c1 mlxfw_firmware_flash 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 0x04a00e86 mlxsw_afa_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x066a5552 mlxsw_afa_block_append_mirror EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x07abcc0c mlxsw_afa_block_append_trap -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0ad2761b mlxsw_core_skb_receive EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0ca34ccf mlxsw_core_max_ports EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0e81c09c mlxsw_afk_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0f6545c4 mlxsw_afa_create EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x120a1738 mlxsw_core_port_init -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x1565a2e2 mlxsw_env_get_module_eeprom EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x15801382 mlxsw_afk_key_info_put EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x18b0ad00 mlxsw_afa_block_append_police EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x19fa5852 mlxsw_core_flush_owq @@ -3038,19 +3037,20 @@ EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x202693f0 mlxsw_afa_block_cur_set EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x21daf3af mlxsw_afa_block_append_qos_dsfield EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x23eddc68 mlxsw_core_cpu_port_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x24309c0a mlxsw_core_driver_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 0x30d72838 mlxsw_env_get_module_eeprom_by_page EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x35ba2254 mlxsw_afk_values_add_u32 EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x38185d87 mlxsw_afa_block_append_qos_ecn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x3934ae76 mlxsw_core_trap_state_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x3bfd8080 mlxsw_core_ptp_transmitted EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x406b4614 mlxsw_afa_block_append_counter 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 0x484489a4 mlxsw_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4a4e4374 mlxsw_core_trap_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4a6ed376 mlxsw_core_port_fini EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4b0bae55 mlxsw_core_kvd_sizes_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x52b45706 mlxsw_core_ptp_transmitted -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x53fa3a00 mlxsw_core_skb_transmit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4d000817 mlxsw_core_port_eth_set EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5a099407 mlxsw_afa_block_append_qos_dscp 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 @@ -3059,6 +3059,8 @@ EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x63874d4c mlxsw_core_port_driver_priv EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x65e16da4 mlxsw_afk_key_info_get EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x692ac04e mlxsw_afk_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x6be8abef mlxsw_core_skb_transmit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x6d609214 mlxsw_env_get_module_eeprom EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x71e1d813 mlxsw_core_port_clear EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x749556a2 mlxsw_afk_key_info_subset EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x74eb7c9e mlxsw_core_res_valid @@ -3071,17 +3073,19 @@ EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x86a40342 mlxsw_core_res_get EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x87b88710 mlxsw_core_event_listener_unregister EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x8854d198 mlxsw_reg_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x8b566132 mlxsw_core_trap_state_set EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x8ba5fa7e mlxsw_core_lag_mapping_set EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x902c3533 mlxsw_core_schedule_dw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x95cf49c2 mlxsw_core_rx_listener_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x97035a9c mlxsw_afa_block_append_fid_set EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x97cf0ab9 mlxsw_core_port_is_xm EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x996c5d6d mlxsw_reg_trans_bulk_wait -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x9cbbddad mlxsw_core_rx_listener_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x9abe898b mlxsw_core_driver_unregister 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 0xa4859b0e mlxsw_core_rx_listener_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa64a7a24 mlxsw_core_port_devlink_port_get EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa7765e88 mlxsw_reg_query -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb5b54e27 mlxsw_core_trap_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa7e8272a mlxsw_core_trap_unregister EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb5e762fa mlxsw_afk_values_add_buf 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 0xb9f797a9 mlxsw_env_module_overheat_counter_get @@ -3090,120 +3094,116 @@ EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbc222a8d mlxsw_afk_clear EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbe82d6cc mlxsw_env_get_module_info EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbfb7df3c mlxsw_core_driver_priv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbfc029c5 mlxsw_afa_block_append_mirror EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbfd01f33 mlxsw_core_port_ib_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc0468979 mlxsw_core_skb_receive EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc9c2e4cc mlxsw_core_lag_mapping_clear EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xca257489 mlxsw_afa_block_append_fwd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xcb64e72e mlxsw_core_trap_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 0xccf3b1f2 mlxsw_core_bus_device_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd1a82f0b mlxsw_core_lag_mapping_get EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd252e62d mlxsw_core_skb_transmit_busy 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 0xd4874014 mlxsw_core_resources_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd69b496f mlxsw_core_rx_listener_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd71566b9 mlxsw_core_schedule_work EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd84eb6b0 mlxsw_afa_block_append_drop EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd9f711ae mlxsw_afa_block_append_mcrouter +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdb6c0b4e mlxsw_core_bus_device_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdc31781e mlxsw_reg_trans_write EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdc415cf1 mlxsw_afa_block_continue EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xde4e211f mlxsw_afa_block_append_l4port EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdeb1dc2e mlxsw_afa_block_first_kvdl_index EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe16986dd mlxsw_afa_block_activity_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe2b02ee6 mlxsw_core_driver_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe5ff97e9 mlxsw_core_port_eth_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe637a619 mlxsw_core_driver_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe6c25cc9 mlxsw_core_port_devlink_port_get EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xecab212a mlxsw_afa_cookie_lookup EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf2ca3bae mlxsw_core_res_query_enabled EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf4909bea mlxsw_core_port_type_get EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xff007c25 mlxsw_core_cpu_port_fini -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0x2d38b6ec mlxsw_i2c_driver_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0x3bfc0a72 mlxsw_i2c_driver_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0xbee062c6 mlxsw_pci_driver_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0xce3302df mlxsw_pci_driver_unregister -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x00490c79 ocelot_port_lag_leave -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x05f4c9bd ocelot_hwstamp_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x06c97779 ocelot_get_txtstamp -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x077fba91 ocelot_port_inject_frame -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0a6f0376 ocelot_mrp_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0b95b185 ocelot_sb_tc_pool_bind_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0d30e142 ocelot_drain_cpu_queue -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0fa926a4 ocelot_vlan_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x147c097a ocelot_fdb_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x187e35ad ocelot_get_ethtool_stats -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x189f81e7 ocelot_port_lag_join -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1bb440fe ocelot_deinit -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1f6dbcca ocelot_sb_pool_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x23bd6806 ocelot_sb_occ_max_clear -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x23db846f ocelot_sb_occ_tc_port_bind_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0x22fbe68a mlxsw_i2c_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0x75d9dbf6 mlxsw_i2c_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0x60d2f14d mlxsw_pci_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0xd78e4f74 mlxsw_pci_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x05bb499b ocelot_port_vlan_filtering +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0af4fffc ocelot_ptp_verify +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0afdcaae ocelot_sb_tc_pool_bind_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0c8acef4 ocelot_sb_pool_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x13b3d2f2 ocelot_xtr_poll_frame +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x13b857fd ocelot_sb_port_pool_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x183b6ecb ocelot_get_ethtool_stats +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1929c856 ocelot_get_max_mtu +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1b85c0a0 ocelot_mrp_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1ec11d9e ocelot_deinit_port +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x205d1e6c ocelot_vlan_prepare EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x274a0e05 ocelot_port_fdb_do_dump -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x289add5e ocelot_vlan_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x296eb8e1 ocelot_deinit_timestamp -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3521cbab ocelot_port_vlan_filtering -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3563648d ocelot_sb_port_pool_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x360ee2b2 ocelot_port_policer_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3c3e932d ocelot_ptp_gettime64 -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3e258710 ocelot_fdb_dump -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x41084f21 ocelot_can_inject -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4a80fde8 ocelot_mact_forget -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4b3b2f80 ocelot_set_ageing_time -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4bf5b3b5 ocelot_devlink_sb_unregister -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4de83a2a ocelot_mrp_add_ring_role -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x51d70e22 ocelot_port_pre_bridge_flags -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x528c49f9 ocelot_get_max_mtu -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x55e4d74d ocelot_xtr_poll_frame -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x62e2381b ocelot_deinit_port -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6349e7de ocelot_vcap_filter_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x656c5c28 ocelot_ptp_adjtime -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6774d8bf ocelot_ptp_verify -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6ad514b4 ocelot_port_mdb_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x71c9efa7 ocelot_hwstamp_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x72df528f ocelot_port_bridge_join -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7760a4af ocelot_mrp_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7d4570c7 ocelot_mrp_del_ring_role -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7fc6c861 ocelot_port_bridge_leave -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x82e0dfed ocelot_port_txtstamp_request -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x860aedac ocelot_apply_bridge_fwd_mask -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8740e245 ocelot_port_bridge_flags +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x30d678bd ocelot_sb_tc_pool_bind_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x31d7a824 ocelot_mrp_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x34ad0bb8 ocelot_get_strings +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x383851a0 ocelot_devlink_sb_register +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3a2f8bc0 ocelot_port_lag_change +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3c45d092 ocelot_sb_occ_tc_port_bind_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3f71c7ba ocelot_port_policer_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x448666ac ocelot_set_ageing_time +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x51e8470d ocelot_init +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x538a7afd ocelot_devlink_sb_unregister +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x54d3c975 ocelot_fdb_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x54f5cb61 ocelot_sb_pool_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x560c1e3c ocelot_vlan_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x591c133d ocelot_ptp_adjfine +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5ab560ae ocelot_port_bridge_flags +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x65a1fa87 ocelot_port_mdb_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x67b9db2c ocelot_mact_learn +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6892a11a ocelot_port_txtstamp_request +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x689ceb21 ocelot_ptp_adjtime +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x698930e9 ocelot_deinit +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6c4f54bf ocelot_get_sset_count +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x72b4c113 ocelot_apply_bridge_fwd_mask +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x755807ed ocelot_mrp_del_ring_role +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x755ecdce ocelot_port_lag_leave +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x795cc7bd ocelot_sb_port_pool_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x79bf8b84 ocelot_ptp_gettime64 +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7fa96e31 ocelot_vcap_filter_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x81417223 ocelot_vcap_filter_del EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8a85c6a8 ocelot_vcap_block_find_filter_by_id -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9490218c ocelot_init -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x997d4c0f ocelot_get_sset_count -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9b9f71ad ocelot_get_strings -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9e84995a ocelot_bridge_stp_state_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa4014270 ocelot_get_ts_info -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa654d0bb ocelot_mact_learn -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa7691a4c ocelot_vlan_prepare -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xae22d9c0 ocelot_init_port -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xaf4168a6 ocelot_port_mdb_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb78b535b ocelot_sb_occ_snapshot -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbeb10a30 ocelot_port_lag_change -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc2f246c9 ocelot_ptp_enable -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc707ad39 ocelot_sb_tc_pool_bind_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xccb4145f ocelot_fdb_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd25f5183 ocelot_sb_port_pool_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd332ef81 ocelot_sb_pool_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xdad9eda8 ocelot_ptp_settime64 -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xde0fdb35 ocelot_port_set_maxlen -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xde1db376 ocelot_port_policer_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe257c708 ocelot_ptp_adjfine -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xeb132904 ocelot_sb_occ_port_pool_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xec85a0b9 ocelot_init_timestamp -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf2d99f8d ocelot_vcap_filter_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf47389c8 ocelot_devlink_sb_register -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x1793f9d9 qed_get_eth_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x26d583f0 qed_get_fcoe_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x430d869e qed_get_iscsi_ops +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8b9beaab ocelot_port_pre_bridge_flags +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8f466077 ocelot_hwstamp_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x999f2db9 ocelot_deinit_timestamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x99f0ccb1 ocelot_port_policer_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9a9e95ed ocelot_port_set_maxlen +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9aacd286 ocelot_mact_forget +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa919afb2 ocelot_bridge_stp_state_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xad432f24 ocelot_get_txtstamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb2bd7fcb ocelot_port_lag_join +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbb481728 ocelot_hwstamp_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbf1c8179 ocelot_mrp_add_ring_role +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbfb59728 ocelot_init_timestamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc17e7f63 ocelot_init_port +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xcce29c7f ocelot_fdb_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd6968293 ocelot_drain_cpu_queue +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd6de5d83 ocelot_sb_occ_max_clear +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xdf0605cf ocelot_port_mdb_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xdf094d1f ocelot_fdb_dump +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xdfe04a86 ocelot_sb_occ_port_pool_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe1082950 ocelot_sb_occ_snapshot +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe4148ce9 ocelot_vlan_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe9fd8597 ocelot_port_inject_frame +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xea941861 ocelot_port_bridge_join +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf7063d9d ocelot_can_inject +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfaa369fe ocelot_ptp_enable +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfb17c440 ocelot_ptp_settime64 +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfd7298d8 ocelot_get_ts_info +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfdb6ae4c ocelot_port_bridge_leave EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x4f264472 qed_put_iscsi_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x6b97b537 qed_get_rdma_ops EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x992e03d0 qed_put_fcoe_ops EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x9eeeef48 qed_put_eth_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qede/qede 0x09d3c61a qede_rdma_register_driver -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qede/qede 0x693cb324 qede_rdma_unregister_driver -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x9011bb8a hdlcdrv_unregister -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xab38539e hdlcdrv_register -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xd8f96bdf hdlcdrv_transmitter -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xf54ba99e hdlcdrv_arbitrate -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xfcc4344f hdlcdrv_receiver +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xb672fed2 qed_get_eth_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xbdb0f7af qed_get_rdma_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xe366e08c qed_get_fcoe_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xed9b1eaf qed_get_iscsi_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qede/qede 0x1daed2e0 qede_rdma_register_driver +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qede/qede 0xf00ed167 qede_rdma_unregister_driver +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x1d246b51 hdlcdrv_transmitter +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x54fd4839 hdlcdrv_receiver +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x62d3b1ec hdlcdrv_unregister +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x93d24855 hdlcdrv_register +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xaf6889a0 hdlcdrv_arbitrate EXPORT_SYMBOL drivers/net/mdio 0x3e17f466 mdio_set_flag EXPORT_SYMBOL drivers/net/mdio 0x424a69a2 mdio45_ethtool_ksettings_get_npage EXPORT_SYMBOL drivers/net/mdio 0x60443957 mdio45_probe @@ -3211,1464 +3211,1467 @@ 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 0x09f5ae06 alloc_mdio_bitbang -EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0xafb19ca2 mdiobb_read -EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0xd5d60f2f free_mdio_bitbang -EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0xde586fc9 mdiobb_write -EXPORT_SYMBOL drivers/net/mdio/mdio-cavium 0x3219d7e0 cavium_mdiobus_read -EXPORT_SYMBOL drivers/net/mdio/mdio-cavium 0x672e1c18 cavium_mdiobus_write -EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0x0a43f5ec xgene_mdio_wr_mac -EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0x418cb4df xgene_mdio_rgmii_write -EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0x777dfff9 xgene_enet_phy_register -EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0xad8359c8 xgene_mdio_rd_mac -EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0xec3e375c xgene_mdio_rgmii_read -EXPORT_SYMBOL drivers/net/pcs/pcs-lynx 0x7de9f81d lynx_pcs_destroy -EXPORT_SYMBOL drivers/net/pcs/pcs-lynx 0xfb3dee58 lynx_pcs_create -EXPORT_SYMBOL drivers/net/phy/bcm-phy-lib 0xa984fd65 bcm54xx_auxctl_write -EXPORT_SYMBOL drivers/net/ppp/pppox 0x0a7ff75d pppox_unbind_sock -EXPORT_SYMBOL drivers/net/ppp/pppox 0x2dc4eedc pppox_compat_ioctl -EXPORT_SYMBOL drivers/net/ppp/pppox 0xaa780b18 pppox_ioctl -EXPORT_SYMBOL drivers/net/ppp/pppox 0xae827cd6 register_pppox_proto +EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0x15883cf5 alloc_mdio_bitbang +EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0x1775e508 mdiobb_read +EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0x31e074d5 mdiobb_write +EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0x505b25e3 free_mdio_bitbang +EXPORT_SYMBOL drivers/net/mdio/mdio-cavium 0x0bc87cdb cavium_mdiobus_read +EXPORT_SYMBOL drivers/net/mdio/mdio-cavium 0x633a0e04 cavium_mdiobus_write +EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0x4caecd8c xgene_enet_phy_register +EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0x66334bd9 xgene_mdio_rd_mac +EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0x6716d548 xgene_mdio_rgmii_write +EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0xc21f2886 xgene_mdio_rgmii_read +EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0xea06ff57 xgene_mdio_wr_mac +EXPORT_SYMBOL drivers/net/pcs/pcs-lynx 0x2c00ce2d lynx_pcs_create +EXPORT_SYMBOL drivers/net/pcs/pcs-lynx 0x49541718 lynx_pcs_destroy +EXPORT_SYMBOL drivers/net/phy/bcm-phy-lib 0xb872f441 bcm54xx_auxctl_write +EXPORT_SYMBOL drivers/net/ppp/pppox 0x94b66df5 register_pppox_proto +EXPORT_SYMBOL drivers/net/ppp/pppox 0xa0c9e0d5 pppox_compat_ioctl +EXPORT_SYMBOL drivers/net/ppp/pppox 0xae215be3 pppox_ioctl EXPORT_SYMBOL drivers/net/ppp/pppox 0xe0ff7a18 unregister_pppox_proto -EXPORT_SYMBOL drivers/net/sungem_phy 0x5e6c7114 sungem_phy_probe -EXPORT_SYMBOL drivers/net/team/team 0x202bdf11 team_mode_unregister -EXPORT_SYMBOL drivers/net/team/team 0x212cbf1a team_options_change_check -EXPORT_SYMBOL drivers/net/team/team 0x5b59b243 team_modeop_port_enter -EXPORT_SYMBOL drivers/net/team/team 0x9a45cb44 team_option_inst_set_change -EXPORT_SYMBOL drivers/net/team/team 0xca7e50de team_options_register -EXPORT_SYMBOL drivers/net/team/team 0xe87e6a79 team_mode_register -EXPORT_SYMBOL drivers/net/team/team 0xe8ddc17a team_modeop_port_change_dev_addr -EXPORT_SYMBOL drivers/net/team/team 0xef1ef939 team_options_unregister -EXPORT_SYMBOL drivers/net/usb/usbnet 0xa8ff144c usbnet_link_change -EXPORT_SYMBOL drivers/net/usb/usbnet 0xb6eddec2 usbnet_device_suggests_idle -EXPORT_SYMBOL drivers/net/usb/usbnet 0xcba0f993 usbnet_manage_power -EXPORT_SYMBOL drivers/net/wan/hdlc 0x30e4b9eb attach_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0x88197ea5 hdlc_ioctl -EXPORT_SYMBOL drivers/net/wan/hdlc 0x89fd4419 hdlc_open -EXPORT_SYMBOL drivers/net/wan/hdlc 0x8d61d503 alloc_hdlcdev -EXPORT_SYMBOL drivers/net/wan/hdlc 0xa10e7138 register_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0xb49501f1 unregister_hdlc_device -EXPORT_SYMBOL drivers/net/wan/hdlc 0xbaa07b99 detach_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0xc1720721 hdlc_start_xmit -EXPORT_SYMBOL drivers/net/wan/hdlc 0xc9327dfa hdlc_close -EXPORT_SYMBOL drivers/net/wan/hdlc 0xe96d8bb2 unregister_hdlc_protocol -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x0874ba21 ath_hw_keysetmac -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x0b5746a2 ath_is_mybeacon +EXPORT_SYMBOL drivers/net/ppp/pppox 0xe4b3e779 pppox_unbind_sock +EXPORT_SYMBOL drivers/net/sungem_phy 0x8a071414 sungem_phy_probe +EXPORT_SYMBOL drivers/net/team/team 0x259a9252 team_options_unregister +EXPORT_SYMBOL drivers/net/team/team 0x6331923b team_mode_register +EXPORT_SYMBOL drivers/net/team/team 0x72aee636 team_options_register +EXPORT_SYMBOL drivers/net/team/team 0x7f7fc2fd team_option_inst_set_change +EXPORT_SYMBOL drivers/net/team/team 0x83e4813a team_modeop_port_change_dev_addr +EXPORT_SYMBOL drivers/net/team/team 0xbd3c0b47 team_options_change_check +EXPORT_SYMBOL drivers/net/team/team 0xf16c50cb team_mode_unregister +EXPORT_SYMBOL drivers/net/team/team 0xf57ba2e1 team_modeop_port_enter +EXPORT_SYMBOL drivers/net/usb/usbnet 0xbcf9dc74 usbnet_device_suggests_idle +EXPORT_SYMBOL drivers/net/usb/usbnet 0xc63aa559 usbnet_link_change +EXPORT_SYMBOL drivers/net/usb/usbnet 0xfcf4a318 usbnet_manage_power +EXPORT_SYMBOL drivers/net/wan/hdlc 0x721ebbf3 alloc_hdlcdev +EXPORT_SYMBOL drivers/net/wan/hdlc 0x7967e660 unregister_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x82687cb4 hdlc_start_xmit +EXPORT_SYMBOL drivers/net/wan/hdlc 0x8befa963 hdlc_close +EXPORT_SYMBOL drivers/net/wan/hdlc 0x96969490 attach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xa3332e4f unregister_hdlc_device +EXPORT_SYMBOL drivers/net/wan/hdlc 0xa3a62e28 detach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xa503f74b hdlc_open +EXPORT_SYMBOL drivers/net/wan/hdlc 0xa6f5abae hdlc_ioctl +EXPORT_SYMBOL drivers/net/wan/hdlc 0xb8540fb6 register_hdlc_protocol EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x108b188f ath_is_49ghz_allowed +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x2313163b ath_hw_keyreset +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x2dbaf1da ath_key_delete +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x42b3118d ath_reg_notifier_apply EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x4571aea8 ath_is_world_regd -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x47b88b2a ath_hw_keyreset -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x57f37ad9 dfs_pattern_detector_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x5b34fe2d ath_hw_cycle_counters_update -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x62c44045 ath_hw_get_listen_time -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x67fe9c83 ath_printk -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x80ba25b1 ath_reg_notifier_apply +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x76cb7fed dfs_pattern_detector_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x843384e1 ath_is_mybeacon +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x98cccf0d ath_hw_setbssidmask EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xa18f224e ath_regd_find_country_by_name -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xa3631cb0 ath_key_config EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xb6588ba6 ath_bus_type_strings -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xccf31553 ath_rxbuf_alloc -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xcf61df81 ath_key_delete -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xdc77a00c ath_regd_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xed42344a ath_hw_setbssidmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xbf9f8dc0 ath_regd_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xd1a6f1b6 ath_hw_keysetmac +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xdaa9ecc8 ath_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xde22feb2 ath_key_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xe6c31303 ath_rxbuf_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xecd714f4 ath_hw_cycle_counters_update +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xf0aed118 ath_hw_get_listen_time EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xf98605d5 ath_regd_get_band_ctl +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x00321488 ath10k_core_napi_sync_disable EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x015e5db2 ath10k_debug_mask -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x15624347 ath10k_ce_alloc_rri -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x198f5758 ath10k_ce_free_rri -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x25c4b61c ath10k_htt_rx_hl_indication -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2e41085d ath10k_htc_rx_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2ef378ce __ath10k_ce_send_revert -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x379b9cfd ath10k_htt_txrx_compl_task -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x384e4036 ath10k_core_napi_sync_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3d66565a ath10k_coredump_new -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4489c9f5 ath10k_ce_per_engine_service -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4a54ed8f ath10k_core_check_dt -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x53bfa8b6 ath10k_core_destroy -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x54aedac9 ath10k_core_unregister -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5c02e13b ath10k_print_driver_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5e283675 ath10k_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6c66327d ath10k_core_stop -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x73266080 ath10k_ce_completed_recv_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x76c75b44 ath10k_htt_t2h_msg_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x788ce6d8 ath10k_htt_rx_pktlog_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7afac6b8 ath10k_core_register -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7cf3f20e ath10k_bmi_read_memory -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x80f769ff ath10k_ce_revoke_recv_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x828a6aa4 ath10k_ce_disable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8c3004bc ath10k_ce_rx_update_write_idx -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8c576a7e ath10k_ce_alloc_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x91feda97 ath10k_ce_cancel_send_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x939e18c0 ath10k_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x98e14186 ath10k_core_napi_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa00e9ba7 __ath10k_ce_rx_num_free_bufs +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0be0a675 ath10k_htt_hif_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0c371a35 ath10k_core_fetch_board_file +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0d819c86 ath10k_ce_rx_post_buf +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x142d6461 ath10k_core_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x163647fc ath10k_core_check_dt +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1cf3d10f ath10k_core_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x224f23fb ath10k_core_unregister +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x227be3a9 ath10k_ce_dump_registers +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2999bb23 ath10k_htc_notify_tx_completion +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2f599257 ath10k_ce_revoke_recv_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x35ef3692 ath10k_htc_process_trailer +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x37a9e76e ath10k_ce_completed_send_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3884c979 ath10k_ce_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x39c679ff ath10k_mac_tx_push_pending +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3fedeb13 ath10k_ce_disable_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x48121109 ath10k_ce_per_engine_service +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4a362a3a ath10k_ce_send_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x530d1f11 ath10k_coredump_get_mem_layout +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x55882928 ath10k_ce_completed_send_next_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x68602f3d ath10k_ce_alloc_rri +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x69a157bf ath10k_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7065a999 ath10k_core_napi_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7273ec20 ath10k_ce_completed_recv_next_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x77af8c93 ath10k_ce_alloc_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7aabaec0 ath10k_htt_t2h_msg_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7d2bec85 ath10k_htt_rx_hl_indication +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x87588bf5 ath10k_core_free_board_files +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x89289649 ath10k_ce_num_free_src_entries +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8a3afccc ath10k_ce_cancel_send_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8ed1ceca ath10k_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x95d092fa ath10k_ce_free_rri +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9ae7063e ath10k_bmi_read_memory +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9cfc7f82 ath10k_htc_tx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9f0a0783 ath10k_info EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa1e4849a __tracepoint_ath10k_log_dbg -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa384c947 ath10k_htt_hif_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa4274e9f ath10k_mac_tx_push_pending -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xad8b234e ath10k_htc_notify_tx_completion -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xae875dc0 ath10k_core_start_recovery -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb063a8d0 ath10k_htc_tx_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb973bb8b ath10k_bmi_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb9fee66d ath10k_warn -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xba61694b ath10k_coredump_get_mem_layout -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xbbe26e9e ath10k_ce_enable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc96f81d6 ath10k_ce_rx_post_buf -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xca0633da ath10k_htc_process_trailer -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xce314a1c ath10k_ce_completed_send_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd5b3e5a5 ath10k_ce_completed_recv_next_nolock -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd6adafc1 ath10k_ce_deinit_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd9ac6db5 ath10k_ce_free_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xdae942d9 ath10k_ce_enable_interrupt -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xdb1dc105 ath10k_core_free_board_files -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xdd4a349d ath10k_ce_dump_registers -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe5355a39 ath10k_core_fetch_board_file -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe58ed6ef ath10k_core_create -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe8fa2de4 ath10k_ce_completed_send_next_nolock -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe96f7cce ath10k_ce_send_nolock -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xeccf49c6 ath10k_ce_init_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf1aa8aea ath10k_ce_send -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf2263e60 ath10k_core_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf65a628b ath10k_ce_disable_interrupt -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf8654c65 ath10k_ce_num_free_src_entries -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xfccc5aed ath10k_ce_per_engine_service_any -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x0164128f ath11k_debugfs_soc_destroy -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x18b1c95e ath11k_core_pre_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x1ad924d7 ath11k_ce_get_attr_flags -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x2436b4ae ath11k_qmi_deinit_service -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x443b0ae5 ath11k_ce_cleanup_pipes -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x51941f29 ath11k_core_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x521147ec ath11k_ce_alloc_pipes -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x5224cc0f ath11k_hal_srng_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x684f3c14 ath11k_ce_free_pipes -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x6cbbf8e6 ath11k_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x76f9bbdd ath11k_core_alloc -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x7fefd7ca ath11k_core_resume -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x83487cc9 ath11k_warn -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x845b10cb ath11k_core_suspend +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa70326e4 ath10k_coredump_new +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xabc527e0 ath10k_core_register +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xadd827f3 ath10k_htc_rx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xadfe5a55 ath10k_ce_completed_recv_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb1355e7b ath10k_bmi_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb2c16700 ath10k_ce_free_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb7ed3f40 ath10k_ce_send +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xbde41b5a ath10k_htt_txrx_compl_task +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc5c8eac9 ath10k_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc9e09f98 __ath10k_ce_rx_num_free_bufs +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd1977725 ath10k_print_driver_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd29d55bc ath10k_ce_init_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd69b9159 __ath10k_ce_send_revert +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe60e3dae ath10k_ce_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe93b933d ath10k_htt_rx_pktlog_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xea98e785 ath10k_ce_rx_update_write_idx +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf7270e5e ath10k_ce_deinit_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf80f956d ath10k_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xfac2757b ath10k_core_start_recovery +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xfcc47ad3 ath10k_ce_per_engine_service_any +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xfe25bf6d ath10k_ce_enable_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x03d6e0da ath11k_qmi_deinit_service +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x068a83e4 ath11k_ce_rx_post_buf +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x126f4c6a ath11k_debugfs_soc_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x14a48ecb ath11k_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x17cf3f11 ath11k_core_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x1f5b1331 ath11k_hal_srng_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x1f63a857 ath11k_ce_per_engine_service +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x25171505 ath11k_core_pre_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x31bbb60a ath11k_core_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x41961e48 ath11k_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x436abea6 ath11k_core_suspend +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x5c059ab2 ath11k_core_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x95c7449f ath11k_dp_service_srng EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x9c51bcc4 ath11k_debug_mask -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xb1ac8fcd ath11k_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xb725513f ath11k_ce_rx_post_buf -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xbd938f61 ath11k_core_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xc49175dd ath11k_hal_srng_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xd25e9047 ath11k_ce_get_shadow_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xdb76bdda ath11k_dp_service_srng -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xdd48fac4 ath11k_ce_per_engine_service -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xe5786060 ath11k_core_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xa2d3ca08 ath11k_ce_cleanup_pipes +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xa7881bd0 ath11k_ce_free_pipes +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xab531016 ath11k_core_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xbcd79f29 ath11k_ce_get_shadow_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xc18a883f ath11k_ce_alloc_pipes +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xc45cd12c ath11k_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xcfac8011 ath11k_core_resume +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xd6ebff6c ath11k_ce_get_attr_flags +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xe5536532 ath11k_hal_srng_init EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xf0197188 ath11k_cold_boot_cal +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x023aab22 ath6kl_read_tgt_stats +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x09455aaf 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 0x27b7d8d6 ath6kl_cfg80211_resume +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x17a2cc99 ath6kl_hif_intr_bh_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x2a777b10 ath6kl_core_init EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x3502feef ath6kl_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x36f446f2 ath6kl_core_create -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x4dc85751 ath6kl_core_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x6cee8665 ath6kl_core_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x52a0f6a0 ath6kl_core_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x5d2270d3 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 0x9a0f4cb3 ath6kl_core_destroy -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xa55365f2 ath6kl_stop_txrx -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xa6b6fc15 ath6kl_hif_intr_bh_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xad56f169 ath6kl_core_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x9b072aab 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 0xccf0922f ath6kl_cfg80211_suspend -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xd1fd5a20 ath6kl_core_rx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xe77da8cc ath6kl_read_tgt_stats -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x1879244d ath9k_cmn_debug_modal_eeprom -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x1994b804 ath9k_cmn_spectral_scan_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x22a0a4d5 ath9k_cmn_spectral_deinit_debug -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2e6b246e ath9k_cmn_beacon_config_sta -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x3ce64486 ath9k_cmn_get_channel -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x3e71d27d ath9k_cmn_init_channels_rates -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x6b548fb0 ath9k_cmn_reload_chainmask -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x782cb265 ath9k_cmn_spectral_scan_trigger -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x7de1beb3 ath9k_cmn_update_txpow -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x8add64a2 ath9k_cmn_beacon_config_ap -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x92c5f267 ath9k_cmn_get_hw_crypto_keytype -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x9ec583bb ath9k_cmn_spectral_init_debug -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xa2635a6d ath9k_cmn_rx_skb_postprocess -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb42568da ath_cmn_process_fft -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb5281750 ath9k_cmn_debug_base_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xbe901193 ath6kl_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xc0615f95 ath6kl_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xc940e77e ath6kl_cfg80211_resume +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xed416666 ath6kl_core_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x01555c3f ath9k_cmn_reload_chainmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x01fae394 ath9k_cmn_debug_modal_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x0522738a ath9k_cmn_beacon_config_sta +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x0a1ca26d ath9k_cmn_get_channel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x11cfa237 ath9k_cmn_rx_skb_postprocess +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2bd58976 ath9k_cmn_process_rssi +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x36cca645 ath9k_cmn_spectral_scan_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x3d56c914 ath9k_cmn_debug_recv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x3f1c81ee ath9k_cmn_update_txpow +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x4510fd95 ath9k_cmn_rx_accept +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x4b4131de ath9k_cmn_spectral_init_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x51948ba1 ath9k_cmn_get_hw_crypto_keytype +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x57357d12 ath9k_cmn_setup_ht_cap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x820368dc ath9k_cmn_spectral_deinit_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x9119e232 ath9k_cmn_spectral_scan_trigger +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x96e89ea0 ath9k_cmn_debug_phy_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xa9689ee9 ath9k_cmn_init_channels_rates EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb76fccc7 ath9k_cmn_debug_stat_rx -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd1b13cc7 ath9k_cmn_debug_phy_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xbc22483f ath9k_cmn_beacon_config_ap EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd2981357 ath9k_cmn_count_streams -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xdc39a26a ath9k_cmn_beacon_config_adhoc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xe0b3b50d ath9k_cmn_setup_ht_cap -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xe1ba342a ath9k_cmn_init_crypto -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xe6f4b1e8 ath9k_cmn_rx_accept -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xef060d80 ath9k_cmn_process_rate -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf0cad578 ath9k_cmn_debug_recv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf9d8c531 ath9k_cmn_process_rssi -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x00277290 ar9003_mci_send_wlan_channels -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x00556895 ath9k_hw_check_nav -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x016d4568 ath9k_hw_check_alive -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x078c5161 ath9k_hw_gpio_request_out -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x09c68049 ar9003_get_pll_sqsum_dvc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0a9f6634 ath9k_hw_wait -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0af67e19 ath9k_hw_btcoex_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xe062a6fa ath9k_cmn_process_rate +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xe7cda485 ath_cmn_process_fft +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf4369e92 ath9k_cmn_debug_base_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf66eb452 ath9k_cmn_beacon_config_adhoc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf6c0a3eb ath9k_cmn_init_crypto +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x00230e78 ath9k_hw_putrxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x005754ba ath9k_hw_set_rx_bufsize +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x045ff211 ath9k_hw_setrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x06bfa5e2 ath9k_hw_phy_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0e2c8f53 ath9k_hw_setrxabort +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0ecbfe1f ath9k_hw_btcoex_disable EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0f77dafc ath9k_hw_get_tsf_offset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0f8f92cf ath9k_hw_getnf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x10048541 ar9003_mci_state -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x110b0b1b ath9k_hw_set_sta_beacon_timers -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x13ba17ea ath9k_hw_gen_timer_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x19dcbab3 ath9k_hw_gettsf32 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1e292638 ath9k_hw_btcoex_set_concur_txprio -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x226b1f0c ath9k_hw_computetxtime -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2497882b ath_gen_timer_free -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x250e74f7 ar9003_paprd_setup_gain_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x26aea9dd ar9003_mci_get_next_gpm_offset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2849755e ath9k_hw_btcoex_init_2wire -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x28a87e64 ath_gen_timer_isr -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2ab8e42a ath9k_hw_loadnf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3115d2f4 ath9k_hw_getchan_noise -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x375e5853 ath9k_hw_txstart -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x39d1f6d4 ath9k_hw_addrxbuf_edma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3b6cd856 ar9003_mci_set_bt_version -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3d6b3485 ath9k_hw_setuprxdesc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3df47ebe ath9k_hw_setuptxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x413843ae ath9k_hw_set_rx_bufsize -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x41b68eed ath9k_hw_init_global_settings -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x41b80532 ath9k_hw_ani_monitor -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x48fbeaa6 ath9k_hw_btcoex_init_mci -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4930dc88 ar9003_mci_get_interrupt -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4d42d66e ar9003_paprd_is_done -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4e673b8c ar9003_paprd_init_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4ee21527 ath9k_hw_set_tx_filter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4f3dd1f3 ath9k_hw_wow_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4fd2532d ath9k_hw_resume_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x504a3453 ar9003_mci_setup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x528223e8 ath9k_hw_releasetxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x54a565f8 ath9k_hw_wow_apply_pattern -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5724dd76 ath9k_hw_btcoex_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5a91abaa ath9k_hw_setantenna -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5e1be882 ath9k_hw_init_btcoex_hw -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x60537e00 ath9k_hw_getrxfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x62e179e5 ath9k_hw_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x66637dd8 ath9k_hw_setup_statusring -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6843cc7c ath9k_hw_setrxabort -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6c95ab2f ath9k_hw_numtxpending -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6d390c2d ath9k_hw_setmcastfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6e29ef07 ath9k_hw_set_tsfadjust -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6ecfdbc1 ath9k_hw_kill_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6faed558 ath9k_hw_reset_tsf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x708c76f1 ath9k_hw_enable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x768da782 ath9k_hw_rxprocdesc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x77b56037 ath9k_hw_startpcureceive -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x789d4c02 ath9k_hw_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7b39822a ath_gen_timer_alloc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7f6e4db6 ath9k_hw_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x843cb998 ath9k_hw_bstuck_nfcal -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8acedd9b ath9k_hw_reset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8b532c81 ath9k_hw_updatetxtriglevel -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8c0175bd ath9k_hw_btcoex_init_3wire -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8d71c003 ath9k_hw_setpower -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x938a5e5e ath9k_hw_disable_mib_counters -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9740d4a5 ath9k_hw_set_txpowerlimit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x981ee355 ar9003_hw_disable_phy_restart -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x99141ed2 ath9k_hw_stopdmarecv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9bfe529c ath9k_hw_gpio_get -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9f15456b ath9k_hw_wow_wakeup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa30a7c5c ath9k_hw_set_txq_props -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa430bbef ath9k_hw_setrxfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa7abed0f ath9k_hw_setopmode -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaa326c5b ar9003_hw_bb_watchdog_check -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xab271345 ath9k_hw_reset_calvalid -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xad699af7 ath9k_hw_get_txq_props -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xad91d79d ath9k_hw_process_rxdesc_edma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xae16e339 ath9k_hw_gpio_free -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaedfab35 ar9003_hw_bb_watchdog_dbg_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb2e939ca ath9k_hw_btcoex_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb39a3c37 ath9k_hw_gettxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb50f3442 ath9k_hw_putrxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb82d104f ath9k_hw_set_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb8a570ad ath9k_hw_btcoex_bt_stomp -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbacaa8b5 ar9003_mci_send_message -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbce52328 ath9k_hw_stop_dma_queue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbeb60a6b ath9k_hw_abort_tx_dma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc2b3c9bc ath9k_hw_beaconq_setup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc2d1166a ath9k_hw_abortpcurecv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc7038f04 ath9k_hw_gen_timer_stop -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc81d6125 ath9k_hw_beaconinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd6a6c602 ath9k_hw_settsf64 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdb87dbda ath9k_hw_name -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdc733c9c ath9k_hw_btcoex_set_weight -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdc740b17 ath9k_hw_write_associd -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe24d2d95 ar9003_paprd_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe321fd35 ath9k_hw_disable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe82d383e ar9003_is_paprd_enabled -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xee293c6e ath9k_hw_puttxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xee568d5b ath9k_hw_set_gpio -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xef7c770f ath9k_hw_gpio_request_in -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf353f33b ar9003_paprd_populate_single_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf5cf6072 ath9k_hw_phy_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf984d384 ath9k_hw_btcoex_init_scheme -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfa32124b ath9k_hw_intrpend -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfa87e4b6 ath9k_hw_gettsf64 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfb87ca85 ar9003_mci_cleanup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfea1f683 ath9k_hw_resettxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfee35cf9 ar9003_paprd_create_curve -EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x911e08d9 init_atmel_card -EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0xbdf3b639 atmel_open -EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0xccc6f17b stop_atmel_card -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x09df21e6 brcmu_pktq_mlen -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x17df0235 brcmu_pktq_penq +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x16dfa708 ath9k_hw_btcoex_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x17d55141 ar9003_paprd_populate_single_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x191b3766 ath9k_hw_init_global_settings +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1c5f16c3 ath9k_hw_loadnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1e715700 ath9k_hw_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1f2a459b ath9k_hw_btcoex_set_weight +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1f3b21fe ath9k_hw_init_btcoex_hw +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1fbf7bc7 ath9k_hw_get_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x202f90bb ath9k_hw_disable_mib_counters +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x20951a6d ath9k_hw_txstart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x22a2db19 ar9003_mci_get_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x25c535e0 ath9k_hw_write_associd +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x293ead50 ath9k_hw_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2e5f1656 ath9k_hw_set_gpio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2f7499f3 ar9003_mci_get_next_gpm_offset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x31894f3f ar9003_hw_bb_watchdog_check +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x36afd9b7 ath9k_hw_setmcastfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3af4eca6 ath9k_hw_check_alive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3ec372a0 ath9k_hw_puttxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x41d06a8a ath9k_hw_setopmode +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x43740a40 ath9k_hw_set_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4854397f ath9k_hw_gen_timer_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4affeb4c ath9k_hw_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4e48aeae ath9k_hw_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4e9061d1 ar9003_get_pll_sqsum_dvc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4ef27f3f ath9k_hw_gettxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5119e1b3 ath9k_hw_setantenna +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x53ab602e ath9k_hw_set_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x54159903 ath_gen_timer_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x541c0b40 ath9k_hw_abortpcurecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x573258ca ath9k_hw_btcoex_bt_stomp +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x586ba8dd ar9003_mci_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x59f3a9c0 ath9k_hw_bstuck_nfcal +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5a6c08f9 ath_gen_timer_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5bf91ce5 ath9k_hw_stopdmarecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5edb6349 ath9k_hw_gpio_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x627d1f4a ath9k_hw_updatetxtriglevel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x678ada5b ath9k_hw_resume_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6ae59a6a ar9003_mci_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x71a49a01 ath9k_hw_setpower +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x721ae9da ath9k_hw_gpio_request_out +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7463a920 ath9k_hw_gettsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x764a5cab ar9003_mci_send_wlan_channels +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x784fc8c4 ar9003_hw_bb_watchdog_dbg_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7bb8f86a ath9k_hw_setuprxdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x84c984cf ath9k_hw_abort_tx_dma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x86626f69 ath9k_hw_beaconinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x873b311e ath9k_hw_gettsf32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x87407d43 ath9k_hw_numtxpending +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x884e7c34 ath9k_hw_getrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8c112b6d ath9k_hw_ani_monitor +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8d836424 ath9k_hw_startpcureceive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8f2c8823 ar9003_mci_send_message +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x906ba0cb ath9k_hw_stop_dma_queue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x933f8261 ar9003_is_paprd_enabled +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9401ac85 ath9k_hw_releasetxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x96339d5a ath_gen_timer_isr +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9656560b ath9k_hw_name +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x979727b2 ath9k_hw_wow_wakeup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x97d079ae ath9k_hw_btcoex_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9e64cfab ath9k_hw_set_tsfadjust +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa1e32144 ath9k_hw_gpio_request_in +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa266fff7 ath9k_hw_reset_calvalid +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa3913188 ath9k_hw_computetxtime +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa4394b29 ar9003_mci_state +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa4970821 ath9k_hw_setuptxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa61de88f ath9k_hw_gen_timer_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xab3db3f0 ath9k_hw_addrxbuf_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xab8e6a9e ar9003_paprd_init_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xad6c5f1f ath9k_hw_gpio_get +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb1e9d380 ath9k_hw_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb2b287f5 ath9k_hw_resettxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb60c23a2 ar9003_paprd_setup_gain_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb64a46d8 ath9k_hw_process_rxdesc_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb64f9a98 ath9k_hw_btcoex_init_scheme +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb6adf622 ath9k_hw_reset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb852bee1 ath9k_hw_btcoex_init_mci +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb99d9a75 ath9k_hw_wow_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xba791474 ath9k_hw_getnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbbc8d574 ath9k_hw_btcoex_init_3wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbf5f5e51 ath9k_hw_wow_apply_pattern +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc6d16c33 ath9k_hw_wait +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc9c657d3 ath9k_hw_intrpend +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xccd7e30b ath9k_hw_getchan_noise +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd1483777 ath9k_hw_settsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd1a2be80 ath9k_hw_btcoex_set_concur_txprio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd50e90ac ar9003_paprd_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xda54302c ar9003_paprd_create_curve +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdc57cbcf ath9k_hw_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdfc5f8f4 ath9k_hw_set_tx_filter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe42f8b47 ath9k_hw_setup_statusring +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe82c5a6f ath9k_hw_kill_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe9c29563 ar9003_mci_set_bt_version +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xea5d759d ath9k_hw_btcoex_init_2wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xef1d77c7 ath9k_hw_set_txpowerlimit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf1366dec ath9k_hw_check_nav +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf30cc461 ath9k_hw_set_sta_beacon_timers +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf46e2460 ath9k_hw_rxprocdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf52fbafd ath9k_hw_beaconq_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf56991fe ar9003_hw_disable_phy_restart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfb49587d ar9003_paprd_is_done +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0xb31e4ba8 stop_atmel_card +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0xd08fb3d2 init_atmel_card +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0xe554a83a atmel_open +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x0f077d01 brcmu_pktq_penq EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x1906648e brcmu_boardrev_str -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x3424df7b brcmu_pktq_flush -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x455be6ba brcmu_pktq_pdeq -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x47c48b27 brcmu_pkt_buf_free_skb -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x6ca85ccc brcmu_pktq_pdeq_match -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x701e9b61 brcmu_pktq_mdeq -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x71315a12 brcmu_pktq_pflush -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x7d439f22 brcmu_pktq_penq_head -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x8e615e33 brcmu_pkt_buf_get_skb -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xa00bf3ad brcmu_pktq_peek_tail +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x1b3fcd7f brcmu_pktq_penq_head +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x1cabfffe brcmu_pktq_mlen +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x1d1ae946 brcmu_pktq_pdeq_match +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x1fe88a10 brcmu_pktq_flush +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x28a5e76d brcmu_pktq_pdeq_tail +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x402836b9 brcmu_pktq_init +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x4b1a620b brcmu_pkt_buf_get_skb +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x575ee635 brcmu_pktq_peek_tail +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x820aea9c brcmu_pkt_buf_free_skb +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x96639c84 brcmu_pktq_pdeq EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xa17c0ccf brcmu_dotrev_str -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xb25b8386 brcmu_pktq_pdeq_tail EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xd6217d91 brcmu_d11_attach -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xfafbcf5c brcmu_pktq_init -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x03f55e37 free_libipw -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x118723fa libipw_freq_to_channel -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x15d0e93b libipw_rx_mgt -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x2a04dc81 libipw_wx_get_encode -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x34b21a86 libipw_xmit -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x40edcc09 alloc_libipw -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x4664a9ff libipw_rx -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x4c5295be libipw_networks_age -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x54932fa5 libipw_channel_to_index -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x56c0be6b libipw_wx_get_scan -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x6897fb53 libipw_wx_set_encode -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x6c7087cd libipw_get_channel_flags -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x794ad5e0 libipw_channel_to_freq -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x7c47f03f libipw_get_geo -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xc65f7d31 libipw_txb_free -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xcaf7cab5 libipw_get_channel -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xd0a7aff9 libipw_is_valid_channel -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xdd07c315 libipw_wx_get_encodeext -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xe0c95292 libipw_wx_set_encodeext -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xfb340341 libipw_set_geo -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0156852f il_set_rxon_hwcrypto -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0869c788 il_clear_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0d492957 il_eeprom_query16 -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x111b15ea il_eeprom_query_addr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x161860d9 il_pm_ops -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x16bc0ace il_mac_flush -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x18780e45 il_scan_cancel -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x18add2ba il_get_passive_dwell_time -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x19529bb3 il_power_initialize -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1eb24df9 il_init_scan_params -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1f933db2 il_tx_queue_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1fbc6423 il_set_rxon_channel -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x219b3cef il_connection_init_rx_config -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2360911d il_send_cmd_pdu_async -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x24e4d26b il_hdl_error +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xef563296 brcmu_pktq_pflush +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xef6eb455 brcmu_pktq_mdeq +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x039daed6 libipw_wx_get_encodeext +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x0f2a4394 libipw_wx_set_encodeext +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x10c8f74a libipw_networks_age +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x1162c9de libipw_is_valid_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x1cf00ad7 libipw_get_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x319883ac libipw_freq_to_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x433320c9 libipw_channel_to_index +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x48862f35 libipw_get_channel_flags +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x5698b0ff libipw_wx_get_scan +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x6a8bf9d8 libipw_xmit +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x77399faf libipw_rx_mgt +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x7ffcc042 libipw_get_geo +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xa87d59ed libipw_rx +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xaa43072b libipw_channel_to_freq +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xafe7cec6 free_libipw +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xc79089de libipw_wx_get_encode +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xceb24521 libipw_wx_set_encode +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xd0db9c20 libipw_txb_free +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xe24dc79c alloc_libipw +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xf5ce22b3 libipw_set_geo +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0b633c9e il_get_free_ucode_key_idx +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0b637b89 il_init_geos +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0b7c1cc2 il_send_bt_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0fa90499 il_free_geos +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x16947808 il_get_lowest_plcp +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x170e5789 il_eeprom_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x17959009 il_rx_queue_alloc +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1e845a82 il_init_scan_params +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1ec0cbb4 il_clear_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1f91fc17 il_tx_queue_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x23e3c778 il_get_channel_info +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x26cc15de il_mac_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2a3e261f il_irq_handle_error +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2b578e11 il_mac_sta_remove EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2bf7eea6 il_queue_space -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2f59652f il_alloc_txq_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x30ce7bc3 il_send_cmd -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x31ce7e84 il_update_stats -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x337d77b1 il_send_rxon_timing -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x367af19f il_send_stats_request -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x37bbf460 il_send_add_sta -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x38e41248 il_get_active_dwell_time -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x39956e72 _il_apm_stop -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3bbb4add il_write_targ_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3f3df36a il_eeprom_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2db641d5 il_send_lq_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2df2b327 il_cancel_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x305adc3b il_send_add_sta +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x33e8149f il_force_reset +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3d2dd131 il_hdl_spectrum_measurement +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3df92986 il_mac_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3e170d52 il_rd_prph +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3eb15881 il_mac_change_interface EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x416bd26a il_debug_level -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4248524e il_restore_stations -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x45499e68 il_send_bt_config -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x487528e3 il_mac_add_interface -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x48e443c5 il_power_update_mode -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4980ed2a il_init_channel_map -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4a65a26b il_set_rxon_ht -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4e8352cd il_set_rate -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x53e096ad il_eeprom_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5461c9e8 il_leds_exit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x579d36ea il_set_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5c5dfb22 il_poll_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5ebe618c il_set_decrypted_flag -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5f3dd310 il_read_targ_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x61dc879c il_dbgfs_register -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x64eb392c il_chswitch_done -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x66b0bd20 il_add_beacon_time -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6915465b il_rx_queue_update_write_ptr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x694807d0 il_check_rxon_cmd -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6ac6b77b il_mac_remove_interface -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6b797d31 il_tx_cmd_complete -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x79ccc46e il_set_flags_for_band -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7a39f04d il_leds_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7b6dd299 il_get_single_channel_number -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7bc6fded il_rx_queue_space -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7cee12b6 il_free_channel_map -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7df61991 il_hdl_pm_sleep -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7f123734 il_hdl_pm_debug_stats -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x852656ca il_hdl_spectrum_measurement -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8766fe65 _il_poll_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8bca19ba il_apm_stop -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8d73e525 il_tx_queue_unmap -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8d75f67e il_send_cmd_pdu -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8de58a8d il_cmd_queue_free -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x97c65a9c il_mac_hw_scan -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9bbe2b3b il_rx_queue_alloc +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4187d72a il_leds_exit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x43caaef8 il_set_rxon_hwcrypto +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4486bd5a il_mac_conf_tx +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x45429249 il_usecs_to_beacons +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x46e1137a il_tx_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x48d3b4e3 il_dbgfs_unregister +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x48e6e00c il_dbgfs_register +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4ffbbb98 il_read_targ_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x584aa2ae il_send_stats_request +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5d06e9c1 il_power_initialize +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5e6d6591 il_txq_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5f8c996a il_free_channel_map +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5fa79288 il_cmd_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x60aff6a2 il_is_ht40_tx_allowed +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x61c495f2 il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6594f778 il_update_stats +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6716abe7 il_set_rxon_channel +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6d02bd26 il_alloc_txq_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x71f4ff73 il_tx_queue_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x76436eab il_setup_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x771ac9a1 il_free_txq_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7cd3d6b6 il_set_rxon_ht +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7e891ac2 il_rx_queue_space +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x820bd4f8 il_tx_cmd_complete +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8306740e il_mac_add_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x834d38d2 il_get_passive_dwell_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8a52a32a il_scan_cancel_timeout +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8a80b4a5 il_get_single_channel_number +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8d1e5d5f il_mac_hw_scan +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8f086c74 il_check_rxon_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x90defa6a il_wr_prph +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x91adebd0 il_hdl_csa +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x965c7121 il_restore_stations +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x97fa8807 il_cmd_queue_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9a450c3d il_apm_init EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9cc714af il_bg_watchdog -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9f679039 il_get_lowest_plcp -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa023b7c3 il_clear_ucode_stations -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa12f244d il_cancel_scan_deferred_work -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa1c45064 il_tx_cmd_protection -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa3c55eca il_init_geos -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa467b5e3 il_apm_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xac990612 il_setup_scan_deferred_work -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb06ee107 il_setup_watchdog -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb0d6ea7f il_get_channel_info -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb3ab7fe7 il_set_tx_power -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb471827b il_setup_rx_scan_handlers -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb4f4c374 il_mac_conf_tx +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa3ddb57e il_mac_flush +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa4febf25 il_eeprom_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa789763a _il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xab757713 il_hdl_error +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xae268c7d il_send_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb11327fe il_hdl_pm_debug_stats 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 0xbb95fa33 il_mac_reset_tsf -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbc46c6eb il_full_rxon_required -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc0a50bed il_send_cmd_sync -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc45ac721 il_hdl_csa -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xca5a6468 il_is_ht40_tx_allowed -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xca71c538 il_usecs_to_beacons -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd2c08d00 il_wr_prph -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd3c14a12 il_tx_queue_reset -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd5d25543 il_tx_queue_free -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd75a8d40 il_mac_bss_info_changed -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdb39c390 il_cmd_queue_unmap -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdb54952c il_mac_config -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdba4c1ae il_get_free_ucode_key_idx -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdbc5f989 il_mac_change_interface -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdedb8745 il_scan_cancel_timeout -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe0513793 il_rd_prph -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe09a2dde il_irq_handle_error -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe38148bb il_send_lq_cmd -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe3ed8a28 il_mac_sta_remove -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe4d31dbc il_txq_update_write_ptr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe54b515a il_fill_probe_req -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe5ec2d68 il_free_txq_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe9d59907 il_free_geos -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xed4c8d1f il_force_reset -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xede9766c il_add_station_common +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbe338d4e il_mac_bss_info_changed +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbecee903 il_tx_queue_reset +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbf2a2389 il_set_decrypted_flag +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc27fb7b0 il_rx_queue_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc6425f3b il_hdl_pm_sleep +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcd417e21 il_send_cmd_pdu +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcde149d6 il_full_rxon_required +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcec64371 il_set_rate +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd074016a il_pm_ops +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd1299ccb il_set_flags_for_band +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd3d2ccd3 il_fill_probe_req +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd90d3485 il_send_cmd_pdu_async +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd9f5ddfa il_eeprom_query_addr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdae51370 il_setup_watchdog +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdd5cd2b0 il_get_active_dwell_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdef5d578 il_connection_init_rx_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdf7f9c7a il_send_cmd_sync +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe05c204a il_add_beacon_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe0a6c452 il_setup_rx_scan_handlers +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe173f2cb il_power_update_mode +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe38a4a71 _il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe60f7d63 il_mac_remove_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xeb791e64 il_scan_cancel +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xec9afdde il_set_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xeee1dd9d il_init_channel_map +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf24d2d2c il_leds_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf2bddffe il_add_station_common +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf49f9fcb il_chswitch_done +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf5140884 il_tx_cmd_protection EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf70a693b il_bcast_addr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xffff2ead il_dbgfs_unregister -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x05644bca __traceiter_iwlwifi_dev_ucode_cont_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfa5b7d6e il_write_targ_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfa90e213 il_set_tx_power +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfabd4f1e il_clear_ucode_stations +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfca93754 il_send_rxon_timing +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfd5bd154 il_eeprom_query16 +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfef298e2 il_apm_stop 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 0x4a2e7b04 __traceiter_iwlwifi_dev_ucode_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x7ed26e57 __traceiter_iwlwifi_dev_ucode_wrap_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x84551942 __traceiter_iwlwifi_dev_ucode_cont_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x92f57450 __traceiter_iwlwifi_dev_ucode_event EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x970bf4ef __SCK__tp_func_iwlwifi_dev_ucode_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xaa3256d7 __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 0x029086c2 hostap_set_word +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x04609fc4 hostap_free_data +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x05aced1a hostap_set_roaming EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x13abdd5a hostap_dump_tx_header -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x2357f2c4 hostap_80211_rx -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x2cf52540 hostap_handle_sta_tx_exc -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x2ddf7f6c hostap_set_encryption -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x3af71e34 hostap_set_hostapd -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x3f112a19 prism2_update_comms_qual -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x42b2d601 hostap_free_data -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x4f63691a hostap_80211_ops -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x5a75b084 hostap_init_data -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x5b77d548 hostap_master_start_xmit -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x673342c6 hostap_remove_proc -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x6f913eee hostap_init_ap_proc -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x73f1d0cb hostap_get_porttype +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x21c75aaa hostap_add_interface +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x2cd10a27 hostap_80211_ops +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x2e59f34f hostap_80211_rx +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x343ee130 hostap_info_process +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x3fa2a950 hostap_remove_interface +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x62ddf037 prism2_update_comms_qual +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x66adbc01 hostap_set_hostapd +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x6f80910b 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 0x7dd28f4e hostap_set_auth_algs +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7a83bc20 hostap_set_word EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7fb75891 hostap_dump_rx_header -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x86d7decf hostap_setup_dev -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x8b755510 hostap_set_antsel -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x8cfb7f37 hostap_add_interface -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x8dd29b7e hostap_remove_interface -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x973fb66e hostap_set_roaming +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x87025641 hostap_set_auth_algs +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x8c9699d6 hostap_set_encryption +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x8d572828 hostap_info_init +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xa0cff48a hostap_master_start_xmit +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xa5804c34 hostap_init_data +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xa956a083 hostap_init_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xac353d4a hostap_handle_sta_tx_exc EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb4b77c8b hostap_80211_get_hdrlen -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xc9ea6dbf hostap_check_sta_fw_version -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xcefe7be4 hostap_set_string -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xd61f39a9 hostap_set_hostapd_sta -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xd98dd131 hostap_info_process -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xdb5a7ef7 hostap_init_proc -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xf382720d hostap_info_init -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x089d72e7 orinoco_if_del -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x0f0e2ae8 orinoco_tx_timeout -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x48b4e368 __orinoco_ev_info -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x52f02707 __orinoco_ev_rx -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x5e0ad4b9 orinoco_init -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x805a390a alloc_orinocodev -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x831514a8 orinoco_up -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x843c133c orinoco_change_mtu -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xa073b224 orinoco_down +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xc3b00758 hostap_set_hostapd_sta +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xc8c16e1c hostap_set_antsel +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xcf9e93da hostap_setup_dev +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xd5afa36c hostap_set_string +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xd7225fea hostap_init_ap_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xdbc5ca22 hostap_check_sta_fw_version +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xe40a8a24 hostap_get_porttype +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x06eb2336 orinoco_if_add +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x1a03aea5 orinoco_open +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x290f9f00 free_orinocodev +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x3434bbcd alloc_orinocodev +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x3dc41d5e orinoco_set_multicast_list +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x45dec1b2 orinoco_process_xmit_skb +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x4855a163 __orinoco_ev_info +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x7b944289 orinoco_if_del +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x94f257af __orinoco_ev_rx +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x9b5efa00 orinoco_change_mtu EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xa74c2dc5 hermes_struct_init -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xaa09ec58 orinoco_stop -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xb5fff047 orinoco_set_multicast_list -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xbd1cf753 free_orinocodev -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xeee03044 orinoco_if_add -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xf38e3a48 orinoco_process_xmit_skb -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xfc5763a9 orinoco_open +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xbf0e3f7f orinoco_init +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xc752a0e5 orinoco_up +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xee790a9f orinoco_down +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xf33d7412 orinoco_stop +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xfaacdf54 orinoco_tx_timeout EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xffe27bca orinoco_interrupt -EXPORT_SYMBOL drivers/net/wireless/mediatek/mt76/mt76 0x013280c1 mt76_wcid_key_setup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0x1360bc4b rtl_btc_get_ops_pointer -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x042da107 rtl8192_phy_check_is_legal_rfpath -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0d6502fd rtl92c_dm_init_edca_turbo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0f282f0e rtl92c_phy_set_bw_mode -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x15f6590b rtl92c_dm_rf_saving -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2154b231 rtl92c_phy_set_io_cmd +EXPORT_SYMBOL drivers/net/wireless/mediatek/mt76/mt76 0xa5003551 mt76_wcid_key_setup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0x8307b86d rtl_btc_get_ops_pointer +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x078786c5 rtl92c_bt_rssi_state_change +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0807cbaa rtl92c_phy_iq_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0d212ca1 _rtl92c_phy_fw_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1beefab1 _rtl92c_phy_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2067509a rtl92c_dm_check_txpower_tracking +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x210c47d7 rtl92c_dm_rf_saving +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x21e477d5 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 0x28b16dc3 rtl92c_phy_lc_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2de98a19 _rtl92c_phy_fw_rf_serial_write -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2f180ced rtl92c_phy_update_txpower_dbm -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x33885782 rtl92c_bt_rssi_state_change -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x34a714d4 rtl92c_dm_watchdog -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x42489da5 rtl92c_firmware_selfreset -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x44d5555d _rtl92c_phy_txpwr_idx_to_dbm -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x47aedb45 rtl92c_phy_set_txpower_level -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x511f6056 rtl92c_phy_sw_chnl -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x518b0785 _rtl92c_phy_bb8192c_config_parafile -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5362467c _rtl92c_phy_rf_serial_write -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x57c60934 _rtl92c_phy_fw_rf_serial_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x665f13db rtl92c_phy_set_bb_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6906dba7 rtl92c_set_fw_joinbss_report_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6abb6923 rtl92c_phy_set_io -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x892f5509 rtl92c_set_fw_rsvdpagepkt -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8c93e3f5 rtl92c_fill_h2c_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8f7a9696 _rtl92c_store_pwrindex_diffrate_offset -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8fdcc913 _rtl92c_phy_rf_serial_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9237f0c4 rtl92c_dm_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x98a5d50b rtl92c_phy_rf_config -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x98a71112 rtl92c_download_fw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xaabc6cfe rtl92c_phy_ap_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb089aef4 rtl92c_phy_iq_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc6acc7e2 rtl92c_phy_query_bb_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc73542d9 rtl92c_phy_sw_chnl_callback -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xcd907a9b rtl92c_dm_check_txpower_tracking -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xcdfd7b80 rtl92c_dm_bt_coexist -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd024d1b2 _rtl92c_phy_set_rf_sleep -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd467197e rtl92c_phy_set_rfpath_switch -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xdd2affd3 _rtl92c_phy_dbm_to_txpwr_idx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe0fd1875 _rtl92c_phy_init_bb_rf_register_definition -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe10ee0ad rtl92ce_phy_set_rf_on -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe784c554 rtl92c_dm_init_rate_adaptive_mask -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf7bc8e4c rtl92c_set_fw_pwrmode_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xfe903792 rtl92c_dm_write_dig -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x29dbc9dd rtl_pci_resume -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x330f3528 rtl_pci_suspend -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x55c0f5bf rtl_pci_disconnect -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x55dd195e rtl_pci_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x20014be5 rtl_usb_suspend -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x57cd7fba rtl_usb_disconnect -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x72a8d689 rtl_usb_resume -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xcf2258b7 rtl_usb_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x00b51d31 rtl_signal_scale_mapping -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0124fc6e rtl_get_tcb_desc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x06c14a0b efuse_read_1byte +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2abda08b _rtl92c_store_pwrindex_diffrate_offset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2d38555b rtl92c_phy_set_rfpath_switch +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2daf80e7 rtl92c_phy_set_txpower_level +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2e46d1b5 rtl92c_phy_sw_chnl +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3a467f8e rtl92c_phy_ap_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x467fa1e0 _rtl92c_phy_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x481728d1 rtl92c_phy_query_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4c7643b8 _rtl92c_phy_fw_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x54a4a7d2 rtl92ce_phy_set_rf_on +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5cf6533c rtl92c_phy_set_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x60294596 rtl92c_firmware_selfreset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x75b40bc0 _rtl92c_phy_init_bb_rf_register_definition +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x76a6ee70 rtl92c_phy_rf_config +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7894e74c _rtl92c_phy_dbm_to_txpwr_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x78a89747 _rtl92c_phy_bb8192c_config_parafile +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7950e448 rtl92c_set_fw_pwrmode_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x983d674f rtl92c_dm_init_edca_turbo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9d0042e9 rtl92c_dm_write_dig +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa443d913 rtl92c_phy_set_bw_mode +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xab74bb47 _rtl92c_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xafdde13f rtl92c_set_fw_rsvdpagepkt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb0edd7f6 rtl92c_download_fw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb641c462 rtl8192_phy_check_is_legal_rfpath +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xbdbdeb43 rtl92c_phy_lc_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc867d2df rtl92c_dm_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc9f0085c rtl92c_phy_sw_chnl_callback +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xcb9fa469 rtl92c_fill_h2c_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd3eb335f rtl92c_phy_set_io +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xee393cea _rtl92c_phy_set_rf_sleep +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xefa5137b rtl92c_set_fw_joinbss_report_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xefd5e53e rtl92c_dm_watchdog +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf2b30d42 rtl92c_dm_init_rate_adaptive_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xfb4410de rtl92c_phy_set_io_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xfe3f74d7 rtl92c_phy_update_txpower_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x3c38ba54 rtl_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x43164c97 rtl_pci_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xeb48568c rtl_pci_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xed7e519e rtl_pci_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x98fb6d50 rtl_usb_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xac3b62ef rtl_usb_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xc7312abc rtl_usb_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xcee0a9a4 rtl_usb_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x02f72f80 efuse_read_1byte +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x097044ba rtl_process_phyinfo EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0b038e24 channel5g_80m -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1102b58f rtl_process_phyinfo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x14b3d807 rtl_cam_mark_invalid -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1946a8da efuse_one_byte_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1aa49fdf rtl_rfreg_delay EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1b945315 rtl_addr_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1e642e8c rtl_ps_enable_nic -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x21acc2a2 efuse_shadow_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x22b0eb20 rtl_phy_scan_operation_backup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2d32c17e rtl_dm_diginit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1f5bd47b rtl_cam_add_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x249cf8fe rtl_ps_disable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2ab8ff0a rtl_dm_diginit EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x30a956d7 rtl_query_rxpwrpercentage -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3b8488e5 rtl_send_smps_action -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4683dec6 rtl_mrate_idx_to_arfr_id -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4686f33b rtl_cam_add_one_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x49d43cc4 rtl_cam_delete_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3a60161c rtl_ps_enable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x48d158e0 rtlwifi_rate_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4a149dab rtl_phy_scan_operation_backup EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x54824f58 channel5g -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x709562f4 efuse_power_switch -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x75f6254e rtl_efuse_shadow_map_update -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x894e07a8 rtl_collect_scan_list +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x59f90df7 rtl_hal_pwrseqcmdparsing +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5c20e57c rtl_get_tcb_desc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x638938a6 rtl_send_smps_action +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6b7c0661 rtl_c2hcmd_enqueue +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x71eff02f rtl_mrate_idx_to_arfr_id +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x72e603f4 rtl_cam_empty_entry EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8ea60059 rtl_fw_cb -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x93e8e4a0 rtl_cmd_send_packet -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9939f392 rtl_init_rfkill -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9a520f19 rtlwifi_rate_mapping -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9b6a2ff2 rtl_ps_disable_nic -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb0f821ae rtl_bb_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb78315cd rtl_cam_empty_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb78ca857 rtl_rfreg_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc035b731 rtl_cam_reset_all_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc4588bbf rtl_cam_del_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc499280e rtl_c2hcmd_enqueue -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe3d9208d rtl_hal_pwrseqcmdparsing -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe651fe2b rtl_rx_ampdu_apply +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9e465590 rtl_cam_delete_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9e4d1a27 rtl_cam_del_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa2020bdb rtl_cam_mark_invalid +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa4e6f29c rtl_init_rfkill +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa8a0d735 rtl_bb_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb04f0230 rtl_rx_ampdu_apply +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbd6440eb rtl_efuse_shadow_map_update +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc237948c efuse_shadow_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xcb71e0d5 rtl_signal_scale_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd1a81fe2 rtl_collect_scan_list +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd4374004 efuse_power_switch +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd9ff3814 rtl_cam_reset_all_entry 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 0xf28856d1 rtl_cam_get_free_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8723d 0x129f771b rtw8723d_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8821c 0x8f5f0096 rtw8821c_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822b 0xf97f0da9 rtw8822b_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822c 0x16bd6697 rtw8822c_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x05184a8b rtw_tx_fill_tx_desc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x121b6c81 rtw_fw_do_iqk -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1989cde3 rtw_coex_write_scbd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x21dfe819 rtw_bf_enable_bfee_su -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x24657e6e rtw_power_mode_change -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x2779e722 rtw_chip_info_setup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x2bbf7e0e rtw_parse_tbl_txpwr_lmt -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x33920fb6 rtw_phy_parsing_cfo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf7457089 rtl_cmd_send_packet +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf8d1f242 efuse_one_byte_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xfa0baabc rtl_cam_get_free_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8723d 0x67a37aae rtw8723d_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8821c 0xfa630d23 rtw8821c_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822b 0x8c43001c rtw8822b_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822c 0x63816b22 rtw8822c_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x06ae6854 rtw_phy_pwrtrack_thermal_changed +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x12e18408 rtw_phy_cfg_bb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x14ecf150 rtw_bf_remove_bfee_mu +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1b5cfb84 rtw_phy_set_tx_power_level +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1ca5afd3 rtw_parse_tbl_phy_cond +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x281b2933 rtw_restore_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x28cc6919 check_hw_ready +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x338d8a0a 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 0x36c5bfca rtw_disable_lps_deep_mode -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x36dfdc02 rtw_bf_cfg_csi_rate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x398154f6 rtw_dump_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x3f9c3cf1 rtw_tx_write_data_rsvd_page_get -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x40d290c3 rtw_phy_pwrtrack_avg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x3b6464f3 rtw_read8_physical_efuse +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x3d66ddb6 rtw_phy_pwrtrack_get_pwridx 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 0x495c0335 rtw_dump_fw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x49fa7b9d rtw_phy_load_tables +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x445a7876 rtw_phy_write_rf_reg_sipi +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x455ff4c5 rtw_phy_get_tx_power_index +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x4616315d rtw_phy_cfg_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x49783133 rtw_phy_read_rf_sipi +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x4d3fb569 rtw_bf_enable_bfee_mu +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x506264c0 __rtw_dbg EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x519c8ba9 rtw_rate_size -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x52838a7f rtw_phy_cfg_agc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x54624589 rtw_parse_tbl_phy_cond -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x571a6992 rtw_phy_pwrtrack_need_iqk +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x56a42d75 rtw_chip_info_setup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x57affef9 rtw_tx_write_data_rsvd_page_get EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x58210e60 rtw_rate_section -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x591415d7 rtw_phy_write_rf_reg_mix -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x62e7e36a rtw_fw_c2h_cmd_rx_irqsafe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x65b98204 rtw_coex_write_indirect_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x767d446c rtw_ops -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7d9bc8c2 rtw_read8_physical_efuse -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x800da4d0 rtw_core_deinit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x805f2f37 rtw_set_channel_mac -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x80680693 rtw_core_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x82b4e690 rtw_phy_read_rf_sipi -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x831eb62f rtw_tx_report_enqueue -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x835d3d20 rtw_bf_enable_bfee_mu -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x83e4ac7f rtw_bf_remove_bfee_mu -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x86940884 rtw_phy_pwrtrack_thermal_changed -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x8d7e5224 rtw_parse_tbl_bb_pg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x8f0899bb rtw_phy_cfg_bb -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x8f20e32a rtw_phy_cfg_mac -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x8f4e2eb0 __rtw_dbg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x96e9af49 rtw_bf_set_gid_table -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa8a344d5 rtw_phy_pwrtrack_get_pwridx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa8d7e63d rtw_phy_config_swing_table -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa8eadda2 rtw_rx_stats -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xacdb7a75 rtw_phy_pwrtrack_need_lck -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb154247c rtw_tx_write_data_h2c_get -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb3cec560 rtw_bf_remove_bfee_su -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb4963719 rtw_phy_read_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb6de71a6 rtw_phy_write_rf_reg_sipi -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xba48d538 rtw_fw_inform_rfk_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xbf74517d rtw_coex_read_indirect_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc43a0bcb rtw_unregister_hw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc6ec35c5 rtw_phy_cfg_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc82a95d1 rtw_phy_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xcc1a8fbf rtw_phy_pwrtrack_get_delta -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xcd60dcdb rtw_rx_fill_rx_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xcd851f0b rtw_restore_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xcd91cbe9 check_hw_ready -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd3d7c75d rtw_phy_set_tx_power_level -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd529177e rtw_bf_phy_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe0566718 rtw_phy_get_tx_power_index -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xebb5c2e6 rtw_fw_c2h_cmd_isr -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xedf282aa rtw_register_hw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x4361c98d rtw_pci_shutdown -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x8e54c0c7 rtw_pci_remove -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0xc23bc426 rtw_pci_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0xc3947bae rtw_pm_ops -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x104583fb rtw89_ser_notify -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x21677667 rtw89_core_deinit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x2b498bf9 rtw89_core_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x3fa85a28 rtw89_core_query_rxdesc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x401d76d5 rtw89_chip_info_setup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x4b66a994 rtw89_core_fill_txdesc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x6778289e rtw89_ops -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x67e64106 rtw8852a_chip_info -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x6963a99d rtw89_phy_read_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x6c3133b5 rtw89_core_unregister -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x847e82a6 rtw89_core_register -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xad029750 rtw89_core_rx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xaeb268b6 __rtw89_debug -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xafc7b202 rtw89_core_napi_stop -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xb622e585 rtw89_mac_set_err_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xcdc28d4f rtw89_core_napi_start -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xcea1c85e rtw89_phy_write_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x58eb2933 rtw_phy_read_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5d05c857 rtw_set_channel_mac +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x743d1b20 rtw_core_deinit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7800f511 rtw_parse_tbl_txpwr_lmt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7bda422e rtw_fw_c2h_cmd_isr +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7e2c277b rtw_phy_load_tables +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7e9af30f rtw_coex_read_indirect_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x827fa7c3 rtw_fw_inform_rfk_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x88b9dac0 rtw_phy_parsing_cfo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x89915ae1 rtw_dump_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x8a398c34 rtw_bf_cfg_csi_rate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x8a9cff52 rtw_core_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9d353bb5 rtw_coex_write_indirect_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9ef24a46 rtw_unregister_hw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa1043229 rtw_phy_pwrtrack_avg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa1f6954d rtw_dump_fw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa72e3258 rtw_bf_phy_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa98a6dc8 rtw_phy_pwrtrack_get_delta +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xab638459 rtw_bf_remove_bfee_su +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb14bf9ed rtw_tx_report_enqueue +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb35ad233 rtw_power_mode_change +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xbe250e74 rtw_parse_tbl_bb_pg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xbf1052b2 rtw_fw_do_iqk +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc5a411fc rtw_phy_pwrtrack_need_iqk +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc7d7dca9 rtw_tx_write_data_h2c_get +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd17190d3 rtw_phy_config_swing_table +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd4c33fa1 rtw_phy_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd8990611 rtw_coex_write_scbd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xdb507f70 rtw_bf_set_gid_table +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe1efea0b rtw_bf_enable_bfee_su +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe3f456a3 rtw_register_hw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe4735f10 rtw_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe504444b rtw_rx_fill_rx_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe76d1191 rtw_phy_cfg_mac +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe7cbca14 rtw_rx_stats +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xee7f471a rtw_fw_c2h_cmd_rx_irqsafe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf2f19ce2 rtw_phy_pwrtrack_need_lck +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf3077c62 rtw_phy_write_rf_reg_mix +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xff7f64b6 rtw_tx_fill_tx_desc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x43c5ff6e rtw_pci_remove +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x7b705c11 rtw_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x913af5f9 rtw_pm_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0xc05b261a rtw_pci_shutdown +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x01d4b958 rtw89_core_napi_stop +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x036638b7 rtw89_mac_set_err_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x1070ad45 rtw89_core_fill_txdesc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x2f221243 __rtw89_debug +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x4054a4da rtw89_core_napi_start +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x40ad45de rtw89_core_unregister +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x4eab5127 rtw89_core_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x5d048aff rtw89_core_register +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x668885ca rtw89_phy_read_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x67b0ef31 rtw89_core_query_rxdesc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x6976045b rtw89_chip_info_setup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x6e974586 rtw89_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x8040dc12 rtw89_mac_get_err_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x8ec69120 rtw8852a_chip_info +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x90437770 rtw89_core_napi_deinit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x913793d2 rtw89_ser_notify +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x9b56a000 rtw89_core_deinit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xc0652cce rtw89_core_napi_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xc29ada33 rtw89_core_rx EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe3f57b04 rtw89_debug_mask -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe7852d74 rtw89_mac_get_err_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xef07e3cb rtw89_core_napi_deinit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xef79b217 rtw89_core_napi_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x4ecb8a2c rtw89_pm_ops -EXPORT_SYMBOL drivers/net/wireless/rsi/rsi_91x 0xda1ee886 rsi_config_wowlan -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x01b34dea wl1271_free_tx_id -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x3b5dc52e wl12xx_is_dummy_packet -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x7d358027 wlcore_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xd1ae79fc wlcore_calc_packet_alignment -EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x10de491d fdp_nci_probe -EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x3ff4c62b fdp_nci_remove -EXPORT_SYMBOL drivers/nfc/microread/microread 0x6c20320c microread_probe -EXPORT_SYMBOL drivers/nfc/microread/microread 0x940a2712 microread_remove -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x2a7f058f nxp_nci_remove -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xa9df45f3 nxp_nci_fw_recv_frame -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xce98893f nxp_nci_probe -EXPORT_SYMBOL drivers/nfc/pn533/pn533 0x387e5ed1 pn533_recv_frame -EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x2da83383 pn544_hci_remove -EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x5a4a7f98 pn544_hci_probe -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x03c10b23 s3fwrn5_recv_frame -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x20874355 s3fwrn5_remove +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xf9c16273 rtw89_phy_write_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xb131bd36 rtw89_pm_ops +EXPORT_SYMBOL drivers/net/wireless/rsi/rsi_91x 0x395596d9 rsi_config_wowlan +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x434a529b wlcore_calc_packet_alignment +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x5b796826 wl12xx_is_dummy_packet +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x89ab8a7b wlcore_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xafd3b10f wl1271_free_tx_id +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x416d47a0 fdp_nci_remove +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x7565ccc8 fdp_nci_probe +EXPORT_SYMBOL drivers/nfc/microread/microread 0x646bd890 microread_probe +EXPORT_SYMBOL drivers/nfc/microread/microread 0xbbddb1f3 microread_remove +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x1d1eb1fa nxp_nci_fw_recv_frame +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x9207987e nxp_nci_probe +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xe89a929f nxp_nci_remove +EXPORT_SYMBOL drivers/nfc/pn533/pn533 0x6e8ff563 pn533_recv_frame +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x52eb9592 pn544_hci_probe +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0xd9a5a6d2 pn544_hci_remove +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x15fccbb3 s3fwrn5_remove +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x236a00b0 s3fwrn5_phy_power_ctrl EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x774203fc s3fwrn5_phy_set_wake -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x898bc448 s3fwrn5_probe -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x9c44a0ec s3fwrn5_phy_power_ctrl +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x781f4a43 s3fwrn5_probe +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xc1f8da45 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 0x0a221794 st_nci_se_deinit -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x1257fcb6 st_nci_se_init -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x2b90378a ndlc_remove -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x5896d9ef ndlc_send -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x5c3c7648 ndlc_open -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x6d821dc8 ndlc_probe -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x6e52475e ndlc_close -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x7b79b611 st_nci_vendor_cmds_init -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x89f19748 ndlc_recv -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xd69b7492 st_nci_se_io -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x03e37feb st21nfca_hci_se_io -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x0c0aa97d st21nfca_se_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x196a565a st21nfca_hci_enable_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x24d89ee1 st21nfca_vendor_cmds_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x27aa1110 st21nfca_im_send_atr_req -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x307bce2c st21nfca_connectivity_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x38f6b259 st21nfca_hci_disable_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x571bc3b0 st21nfca_tm_send_dep_res -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x610009de st21nfca_im_send_dep_req -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x70a0d0a3 st21nfca_dep_deinit -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x742a006c st21nfca_hci_remove -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x86b81ed9 st21nfca_dep_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xbc17fe5d st21nfca_dep_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xd8ca21a3 st21nfca_hci_discover_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xd93636e0 st21nfca_hci_probe -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xe7f2133e st21nfca_apdu_reader_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xefce05d3 st21nfca_se_deinit -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xfd8d5d1d st21nfca_hci_loopback_event_received -EXPORT_SYMBOL drivers/ntb/ntb 0x06018565 ntb_unregister_device -EXPORT_SYMBOL drivers/ntb/ntb 0x0663c24a ntb_msi_init -EXPORT_SYMBOL drivers/ntb/ntb 0x0b2a36b6 ntb_db_event -EXPORT_SYMBOL drivers/ntb/ntb 0x1ce941a8 ntb_default_peer_port_number -EXPORT_SYMBOL drivers/ntb/ntb 0x2466e6ae ntb_msi_peer_trigger -EXPORT_SYMBOL drivers/ntb/ntb 0x372f90a8 ntb_link_event -EXPORT_SYMBOL drivers/ntb/ntb 0x39c8dadf ntb_msi_setup_mws -EXPORT_SYMBOL drivers/ntb/ntb 0x3e90cb2f ntb_default_peer_port_count -EXPORT_SYMBOL drivers/ntb/ntb 0x4399b82d ntb_default_peer_port_idx -EXPORT_SYMBOL drivers/ntb/ntb 0x5199736d ntb_clear_ctx -EXPORT_SYMBOL drivers/ntb/ntb 0x6b62d5c6 ntb_msi_clear_mws -EXPORT_SYMBOL drivers/ntb/ntb 0x6bdfe7a2 ntbm_msi_free_irq -EXPORT_SYMBOL drivers/ntb/ntb 0x78f19811 __ntb_register_client -EXPORT_SYMBOL drivers/ntb/ntb 0x81c3c425 ntb_msi_peer_addr -EXPORT_SYMBOL drivers/ntb/ntb 0x81d07a9c ntbm_msi_request_threaded_irq -EXPORT_SYMBOL drivers/ntb/ntb 0x8407456e ntb_register_device -EXPORT_SYMBOL drivers/ntb/ntb 0x9a10f9aa ntb_unregister_client -EXPORT_SYMBOL drivers/ntb/ntb 0xc2d39ab8 ntb_default_port_number -EXPORT_SYMBOL drivers/ntb/ntb 0xcdd0eb8e ntb_set_ctx -EXPORT_SYMBOL drivers/ntb/ntb 0xe7b1faf3 ntb_msg_event -EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x3e805ac4 nvdimm_namespace_attach_btt -EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x86ddc9b2 nvdimm_namespace_detach_btt -EXPORT_SYMBOL drivers/parport/parport 0x0eff2f23 parport_ieee1284_read_nibble -EXPORT_SYMBOL drivers/parport/parport 0x1679372f parport_get_port -EXPORT_SYMBOL drivers/parport/parport 0x288ee9e5 parport_ieee1284_read_byte -EXPORT_SYMBOL drivers/parport/parport 0x2ed8163e parport_wait_event -EXPORT_SYMBOL drivers/parport/parport 0x429b99a3 parport_register_port -EXPORT_SYMBOL drivers/parport/parport 0x439cc9bb parport_del_port -EXPORT_SYMBOL drivers/parport/parport 0x45d4b6e4 parport_unregister_device -EXPORT_SYMBOL drivers/parport/parport 0x463a4a5e parport_remove_port -EXPORT_SYMBOL drivers/parport/parport 0x48d36d19 parport_put_port +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x2b4efae4 st_nci_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x2b9d3b85 st_nci_se_deinit +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x42e5b4f5 st_nci_se_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x4d248980 ndlc_close +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x8a5e0f8e st_nci_se_io +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xa25add7e ndlc_open +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xa677e961 ndlc_recv +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xac5b3756 ndlc_probe +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xf259bf28 ndlc_remove +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xfe0b9cc8 ndlc_send +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x0e7460ee st21nfca_hci_probe +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x164029f3 st21nfca_hci_enable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x2dfcb6cb st21nfca_im_send_dep_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x4418777b st21nfca_se_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x486d9f8a st21nfca_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x6fa337e8 st21nfca_hci_loopback_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x8e0787d1 st21nfca_hci_remove +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x8f04d2d7 st21nfca_dep_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x9887a2e7 st21nfca_se_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xace4f304 st21nfca_hci_se_io +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xc36c610f st21nfca_im_send_atr_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xc4897311 st21nfca_apdu_reader_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xc53c552c st21nfca_hci_disable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xc78555cd st21nfca_hci_discover_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xd955d546 st21nfca_tm_send_dep_res +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xdda0dcee st21nfca_connectivity_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xdda938ac st21nfca_dep_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xe4b21512 st21nfca_dep_init +EXPORT_SYMBOL drivers/ntb/ntb 0x038ff80e ntbm_msi_free_irq +EXPORT_SYMBOL drivers/ntb/ntb 0x155cf169 ntbm_msi_request_threaded_irq +EXPORT_SYMBOL drivers/ntb/ntb 0x19076621 ntb_default_peer_port_number +EXPORT_SYMBOL drivers/ntb/ntb 0x19f1b6c6 ntb_msi_clear_mws +EXPORT_SYMBOL drivers/ntb/ntb 0x208c8448 ntb_msi_peer_trigger +EXPORT_SYMBOL drivers/ntb/ntb 0x29aee284 __ntb_register_client +EXPORT_SYMBOL drivers/ntb/ntb 0x3d894ba1 ntb_db_event +EXPORT_SYMBOL drivers/ntb/ntb 0x3ea00766 ntb_default_peer_port_count +EXPORT_SYMBOL drivers/ntb/ntb 0x44d097fb ntb_msi_init +EXPORT_SYMBOL drivers/ntb/ntb 0x516d2164 ntb_register_device +EXPORT_SYMBOL drivers/ntb/ntb 0x679495ca ntb_msg_event +EXPORT_SYMBOL drivers/ntb/ntb 0x6e1d2bd1 ntb_msi_setup_mws +EXPORT_SYMBOL drivers/ntb/ntb 0x762ff0e4 ntb_unregister_client +EXPORT_SYMBOL drivers/ntb/ntb 0x84f54738 ntb_link_event +EXPORT_SYMBOL drivers/ntb/ntb 0xb2c9411f ntb_default_port_number +EXPORT_SYMBOL drivers/ntb/ntb 0xc0a8b0fc ntb_unregister_device +EXPORT_SYMBOL drivers/ntb/ntb 0xc5569691 ntb_default_peer_port_idx +EXPORT_SYMBOL drivers/ntb/ntb 0xcfcaaab9 ntb_clear_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0xd967c7de ntb_msi_peer_addr +EXPORT_SYMBOL drivers/ntb/ntb 0xf31f4d1f ntb_set_ctx +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x119a5b0d nvdimm_namespace_detach_btt +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x775cec58 nvdimm_namespace_attach_btt +EXPORT_SYMBOL drivers/parport/parport 0x13311c49 parport_ieee1284_epp_write_data +EXPORT_SYMBOL drivers/parport/parport 0x193e6834 parport_ieee1284_ecp_read_data +EXPORT_SYMBOL drivers/parport/parport 0x1cc2222a parport_read +EXPORT_SYMBOL drivers/parport/parport 0x23a3d668 parport_find_base +EXPORT_SYMBOL drivers/parport/parport 0x26675509 parport_unregister_device +EXPORT_SYMBOL drivers/parport/parport 0x308be060 parport_release +EXPORT_SYMBOL drivers/parport/parport 0x3542684e __parport_register_driver +EXPORT_SYMBOL drivers/parport/parport 0x4386577b parport_set_timeout +EXPORT_SYMBOL drivers/parport/parport 0x4b70d650 parport_wait_event EXPORT_SYMBOL drivers/parport/parport 0x4d2a941b parport_ieee1284_interrupt -EXPORT_SYMBOL drivers/parport/parport 0x5546f5ce parport_ieee1284_epp_read_data +EXPORT_SYMBOL drivers/parport/parport 0x50065e21 parport_negotiate +EXPORT_SYMBOL drivers/parport/parport 0x514e60ae parport_wait_peripheral +EXPORT_SYMBOL drivers/parport/parport 0x57bd05ca parport_ieee1284_read_nibble EXPORT_SYMBOL drivers/parport/parport 0x5e3a3912 parport_irq_handler -EXPORT_SYMBOL drivers/parport/parport 0x612452bd parport_ieee1284_ecp_write_addr -EXPORT_SYMBOL drivers/parport/parport 0x628f6be8 parport_wait_peripheral -EXPORT_SYMBOL drivers/parport/parport 0x69f8ea8c parport_ieee1284_ecp_write_data -EXPORT_SYMBOL drivers/parport/parport 0x7a173144 parport_write -EXPORT_SYMBOL drivers/parport/parport 0x7a50cb5c parport_ieee1284_epp_read_addr -EXPORT_SYMBOL drivers/parport/parport 0x8b30152e parport_register_dev_model -EXPORT_SYMBOL drivers/parport/parport 0x8d36c81c parport_ieee1284_ecp_read_data -EXPORT_SYMBOL drivers/parport/parport 0x91c2ac7a parport_unregister_driver -EXPORT_SYMBOL drivers/parport/parport 0x940ef1d2 __parport_register_driver -EXPORT_SYMBOL drivers/parport/parport 0x9959539d parport_set_timeout -EXPORT_SYMBOL drivers/parport/parport 0xa261568a parport_claim_or_block -EXPORT_SYMBOL drivers/parport/parport 0xba42485e parport_read -EXPORT_SYMBOL drivers/parport/parport 0xbb001a29 parport_claim -EXPORT_SYMBOL drivers/parport/parport 0xbb538372 parport_find_number -EXPORT_SYMBOL drivers/parport/parport 0xcb3a2bff parport_ieee1284_write_compat -EXPORT_SYMBOL drivers/parport/parport 0xe5a341c1 parport_announce_port -EXPORT_SYMBOL drivers/parport/parport 0xf0510630 parport_release -EXPORT_SYMBOL drivers/parport/parport 0xf76bcd7f parport_negotiate -EXPORT_SYMBOL drivers/parport/parport 0xf7729d2a parport_ieee1284_epp_write_data -EXPORT_SYMBOL drivers/parport/parport 0xfa2846ae parport_find_base -EXPORT_SYMBOL drivers/parport/parport 0xffae251b parport_ieee1284_epp_write_addr -EXPORT_SYMBOL drivers/pci/controller/pcie-iproc 0x6f0fec5d iproc_pcie_remove -EXPORT_SYMBOL drivers/pci/controller/pcie-iproc 0xe14ac95f iproc_pcie_setup -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x08444562 pcmcia_parse_events -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x1d4189d3 pcmcia_get_socket +EXPORT_SYMBOL drivers/parport/parport 0x620d9900 parport_ieee1284_epp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0x65fa8086 parport_unregister_driver +EXPORT_SYMBOL drivers/parport/parport 0x73e961e2 parport_find_number +EXPORT_SYMBOL drivers/parport/parport 0x77e26967 parport_announce_port +EXPORT_SYMBOL drivers/parport/parport 0x782587d6 parport_claim_or_block +EXPORT_SYMBOL drivers/parport/parport 0x7bd60d28 parport_get_port +EXPORT_SYMBOL drivers/parport/parport 0x7e2a6b4f parport_ieee1284_read_byte +EXPORT_SYMBOL drivers/parport/parport 0x86681939 parport_del_port +EXPORT_SYMBOL drivers/parport/parport 0x876d6cfb parport_remove_port +EXPORT_SYMBOL drivers/parport/parport 0x87a4f9c0 parport_ieee1284_ecp_write_data +EXPORT_SYMBOL drivers/parport/parport 0x87b41f92 parport_ieee1284_epp_read_data +EXPORT_SYMBOL drivers/parport/parport 0xd662c310 parport_ieee1284_epp_read_addr +EXPORT_SYMBOL drivers/parport/parport 0xd7697800 parport_write +EXPORT_SYMBOL drivers/parport/parport 0xd973c01f parport_put_port +EXPORT_SYMBOL drivers/parport/parport 0xdbbc03d2 parport_register_port +EXPORT_SYMBOL drivers/parport/parport 0xe57779f9 parport_register_dev_model +EXPORT_SYMBOL drivers/parport/parport 0xf4279452 parport_ieee1284_write_compat +EXPORT_SYMBOL drivers/parport/parport 0xf6987c89 parport_ieee1284_ecp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0xffbfc2da parport_claim +EXPORT_SYMBOL drivers/pci/controller/pcie-iproc 0x4aedf8da iproc_pcie_setup +EXPORT_SYMBOL drivers/pci/controller/pcie-iproc 0xbcb6760a iproc_pcie_remove EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x212db8d2 pcmcia_socket_list -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x2800b14e pcmcia_put_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x39699651 pcmcia_reset_card -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x68b1d37f pcmcia_unregister_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x80aa028d pcmcia_register_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x981c4760 pcmcia_get_socket_by_nr -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x9d86eaef pcmcia_parse_uevents -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xa3c025da pcmcia_socket_class -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xbdf64c04 pccard_register_pcmcia +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x402af3ff pccard_register_pcmcia +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x41c83168 pcmcia_register_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x5200ce0b pcmcia_reset_card +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x5e224199 pcmcia_parse_uevents +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x5f4fab83 pcmcia_get_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xa0a097f3 pcmcia_get_socket_by_nr +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xa17e2690 pcmcia_socket_class +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xa650ae7f pcmcia_parse_events EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xcf97f3bd dead_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xd2b3f857 pcmcia_unregister_socket EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xf942709b pcmcia_socket_list_rwsem -EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0xbd897b3f pccard_static_ops -EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x31d287c8 cros_ec_suspend -EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x639e766b cros_ec_resume -EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x7d937374 cros_ec_unregister -EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0xcc7409f7 cros_ec_register +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xf9619b4a pcmcia_put_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0x0ed58075 pccard_static_ops +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x4d7866f2 cros_ec_resume +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x54bb4bda cros_ec_unregister +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x908b8d3c cros_ec_suspend +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0xe87f03a5 cros_ec_register EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0xf25aacf5 cros_ec_irq_thread -EXPORT_SYMBOL drivers/regulator/rohm-regulator 0x3ba10416 rohm_regulator_set_dvs_levels +EXPORT_SYMBOL drivers/regulator/rohm-regulator 0x1539b138 rohm_regulator_set_dvs_levels EXPORT_SYMBOL drivers/rpmsg/qcom_smd 0x3330a1c8 qcom_smd_unregister_edge -EXPORT_SYMBOL drivers/rpmsg/qcom_smd 0xa0bc3d8f qcom_smd_register_edge -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x1b1693e0 rpmsg_create_channel -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x257664e6 rpmsg_sendto -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x44197b34 rpmsg_release_channel -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x50e5c079 rpmsg_trysendto -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x6fc48974 rpmsg_poll -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x7094fe3f rpmsg_destroy_ept -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x7c8f1140 rpmsg_create_ept -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x84d8819a rpmsg_unregister_device -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x9580d0ba rpmsg_find_device -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x9f8527d3 rpmsg_register_device -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xa5cd30f1 rpmsg_send -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xa9ddb8aa rpmsg_trysend -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xbc4cb95d __register_rpmsg_driver -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xc9988fcc rpmsg_trysend_offchannel -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xce7093d1 unregister_rpmsg_driver -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xd5002263 rpmsg_send_offchannel -EXPORT_SYMBOL drivers/rpmsg/rpmsg_ns 0xb7fa7d02 rpmsg_ns_register_device -EXPORT_SYMBOL drivers/rtc/rtc-ds1685 0x1f9e5c0e ds1685_rtc_poweroff -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x42d10162 scsi_esp_template +EXPORT_SYMBOL drivers/rpmsg/qcom_smd 0x5fd4909a qcom_smd_register_edge +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x12bd4827 rpmsg_destroy_ept +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x1696f2bd rpmsg_create_ept +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x1c054064 rpmsg_create_channel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x28aa73b7 rpmsg_poll +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x2dd74c84 rpmsg_register_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x30d50580 rpmsg_sendto +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x54045cb1 rpmsg_trysend_offchannel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x5bcf2d0c rpmsg_send +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x619f5dc3 rpmsg_trysendto +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xa2c82ece rpmsg_trysend +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xaf40f65f rpmsg_unregister_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xbbdc79f0 rpmsg_send_offchannel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xc85b059b rpmsg_find_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xd630de41 rpmsg_release_channel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xdf5b370a unregister_rpmsg_driver +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xfa285341 __register_rpmsg_driver +EXPORT_SYMBOL drivers/rpmsg/rpmsg_ns 0x837f5a67 rpmsg_ns_register_device +EXPORT_SYMBOL drivers/rtc/rtc-ds1685 0x908a6b22 ds1685_rtc_poweroff +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x25974895 scsi_esp_register EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4a29ab38 scsi_esp_intr -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x8bf02549 scsi_esp_unregister -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x9554d607 scsi_esp_cmd -EXPORT_SYMBOL drivers/scsi/esp_scsi 0xf2b690e4 scsi_esp_register -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x0865d795 fcoe_ctlr_init -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x153fbb19 fcoe_ctlr_recv -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x19878116 fcoe_ctlr_set_fip_mode -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x3434bbca fcoe_transport_attach -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x4953555f fcoe_ctlr_els_send -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x5019b6ca fcoe_ctlr_link_up -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x6d005dae fcoe_fcf_get_selected -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xaba30596 fcoe_ctlr_destroy -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xe6d80f92 fcoe_ctlr_recv_flogi -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xfd0e3e9b fcoe_transport_detach -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xfdbea1e8 fcoe_ctlr_link_down -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0d5355e6 fc_exch_seq_send -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x10a0df04 fc_get_host_speed -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x10a78029 fc_eh_host_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x11114e41 fc_get_host_port_state -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x15eb949a fc_fabric_login -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x182dbc8d fc_exch_update_stats -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x21aea165 fc_seq_send +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x7db0e340 scsi_esp_cmd +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x973a235e scsi_esp_template +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xe8f11853 scsi_esp_unregister +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x02fe1163 fcoe_ctlr_els_send +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x0fb818c3 fcoe_ctlr_recv_flogi +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x1f92f4d9 fcoe_ctlr_destroy +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x26404484 fcoe_transport_detach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x6ba87006 fcoe_ctlr_link_up +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x6f866bd9 fcoe_fcf_get_selected +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x7cd8ad58 fcoe_ctlr_link_down +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x96252e60 fcoe_ctlr_recv +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xca6f7923 fcoe_ctlr_init +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xd28c7f1f fcoe_ctlr_set_fip_mode +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xff8cac36 fcoe_transport_attach +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x000bacd7 fc_rport_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x025c0964 fc_fcp_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0462434a libfc_vport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x17378478 fc_queuecommand +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x21df7be2 fc_exch_update_stats EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22b90986 fc_exch_mgr_del -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22c857b7 fc_get_host_stats -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x250ca9af fc_rport_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x287399e8 fc_eh_abort +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x289fdc15 fc_exch_mgr_free +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x29abb72e fc_linkup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2a3f0579 fc_lport_destroy EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2eccbfa6 fc_lport_flogi_resp -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x37811f6d fc_disc_config -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3afab89d libfc_vport_create -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x44232c05 fc_exch_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4660f1ed fc_vport_id_lookup -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x48f94d52 fc_set_rport_loss_tmo -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4eecb4c9 fc_lport_destroy -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x53768906 fc_lport_iterate -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x55001a6f fc_rport_terminate_io -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x597741db fc_elsct_send -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5c7adbe0 fc_fc4_register_provider -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5c88a183 fc_lport_set_local_id -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x61a3c50e fc_set_mfs -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6db5e24c fc_eh_device_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x317a5458 fc_fabric_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x393a8215 fc_get_host_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3a3dcd6c fc_set_mfs +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3cce3e38 fc_exch_mgr_list_clone +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3d4b4166 fc_exch_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3ec28266 fc_fabric_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x41319bd6 fc_lport_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x419a3c0c fc_exch_seq_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x44f6140f fc_lport_set_local_id +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4795682f fc_disc_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4a52a5e5 fc_seq_assign +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4dfa5101 fc_exch_mgr_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x52ac079e fc_elsct_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5455cb5c fc_get_host_port_state +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5892a129 fc_rport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x607d973f fc_rport_recv_req +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x61848fa1 fc_exch_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6c2f26a2 fc_vport_setlink +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6d56ac1e fc_seq_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7293fc0d fc_get_host_speed EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x731837c4 fc_lport_logo_resp -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x74a69b9e fc_exch_mgr_list_clone -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7d04490b fc_linkdown +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x75d01a28 fc_disc_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x763483dc fc_slave_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x78f80a3a fc_vport_id_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7b09fa24 fc_set_rport_loss_tmo +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7e34fce0 fc_exch_mgr_alloc EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7f3407a7 fc_seq_start_next +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7f9e2b97 fc_lport_config EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x80e34c44 fc_frame_alloc_fill EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x811811e0 fc_exch_done EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8264d30a _fc_frame_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x85016847 fc_fabric_logoff -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8c88eece fc_fcp_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x937bf88b fc_exch_mgr_add -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x946bfe87 fc_rport_recv_req -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x951b4e1b fc_lport_bsg_request -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x97f55c4f fc_vport_setlink -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9889ee54 fc_lport_config -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x98d089a9 fc_fc4_deregister_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8cfe2163 fc_eh_device_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x92dc699a fc_lport_bsg_request +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x96e1a8f7 fc_fc4_deregister_provider EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9d50ed7e fc_rport_destroy -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9edc0898 fc_fcp_destroy -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa09b4be9 fc_rport_create -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa0a9b9b9 fc_lport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9fea8c07 fc_rport_login EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa1bcd198 fc_cpu_mask -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa8119d93 fc_queuecommand +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa725a06b fc_rport_terminate_io EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb0ddd5a1 fc_rport_flush_queue -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb55800ff fc_rport_lookup EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb689cd32 fc_frame_crc_check -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb8ff0f6a fc_eh_abort -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb94c6b03 fc_lport_recv -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc0df5628 fc_elsct_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc232abd2 fc_seq_assign -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc2cdb31c fc_rport_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc13a9674 fc_linkdown EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc2dd8cd4 fc_fill_reply_hdr -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd0eef46a fc_exch_mgr_free -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd4059ebe fc_exch_mgr_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd7caadf6 fc_linkup -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xda700d0b fc_exch_mgr_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xdbc238ba fc_disc_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc87ebbfb fc_fcp_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc9dfc86f fc_rport_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd74eef3a fc_fc4_register_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd8057c0e fc_eh_host_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd909cf93 fc_elsct_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe1c6d97b fc_lport_iterate EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe3b928e9 fc_fill_hdr -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe4a16066 fc_slave_alloc EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe5cf06b5 fc_lport_notifier_head +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe9d93179 fc_lport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf0fdbb98 fc_lport_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf53ad41c fc_exch_mgr_add EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfa4667d1 fc_seq_release -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfb4daad6 fc_exch_recv -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfd2fa51c fc_lport_reset EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfeb5a73f fc_seq_set_resp +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x1163438e sas_prep_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x246169f3 sas_resume_ha EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x4a8e3d34 try_test_sas_gpio_gp_bit -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x4cf815ae sas_suspend_ha -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x51361ca4 sas_resume_ha -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x88cb4545 sas_prep_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xeb7d23f9 sas_suspend_ha EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0xa21fafb9 mraid_mm_adapter_app_handle EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0xb2cf7c01 mraid_mm_unregister_adp -EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0xe89c9d6e mraid_mm_register_adp -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x06f2d0fa qlt_unreg_sess -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x0ba2e45b qlt_rdy_to_xfer -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x13c995af qlt_xmit_tm_rsp -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x3e3742d7 qlt_free_mcmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x464dacb6 qlt_free_cmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x5a8dab37 qlt_stop_phase2 -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xa1e60868 qlt_enable_vha -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xa46dc712 qlt_lport_deregister -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xc294aca6 qlt_xmit_response -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xceb04c80 qlt_lport_register -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xe6e12027 qlt_abort_cmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xfd022c6d qlt_stop_phase1 -EXPORT_SYMBOL drivers/scsi/raid_class 0x04f5996b raid_class_release -EXPORT_SYMBOL drivers/scsi/raid_class 0xf4090cfd raid_component_add -EXPORT_SYMBOL drivers/scsi/raid_class 0xfd503c5d raid_class_attach -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x182984aa fc_vport_terminate -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x1b59860b fc_block_scsi_eh -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x1d31fb54 fc_vport_create +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0xdb32f9dc mraid_mm_register_adp +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x0c66b2ed qlt_stop_phase1 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x1e609f51 qlt_rdy_to_xfer +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x351aced7 qlt_enable_vha +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x545e1cf0 qlt_abort_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x5f985696 qlt_free_mcmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x78eb3980 qlt_free_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x7d21d22b qlt_lport_deregister +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xa3b8cc89 qlt_stop_phase2 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xb055123a qlt_xmit_tm_rsp +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xc2bb7951 qlt_unreg_sess +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xc87a8422 qlt_xmit_response +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xfec35123 qlt_lport_register +EXPORT_SYMBOL drivers/scsi/raid_class 0x4a98d31e raid_class_release +EXPORT_SYMBOL drivers/scsi/raid_class 0x71ce33a1 raid_class_attach +EXPORT_SYMBOL drivers/scsi/raid_class 0x82781f37 raid_component_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x16a365d8 fc_vport_terminate +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x36aa93db fc_block_rport EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x375f8bbd fc_get_event_number -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x6374982a fc_remote_port_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x940f718e scsi_is_fc_rport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x951f3bdc fc_block_rport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x956ea8f0 fc_remote_port_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xaa04f2eb fc_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xb6500436 fc_remote_port_rolechg -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xb71e77d8 fc_host_fpin_rcv -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xce48e2d6 fc_find_rport_by_wwpn -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xe8a49444 fc_host_post_vendor_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xea6b8b4c fc_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xf2905aa0 fc_remove_host -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xf7271d94 fc_host_post_fc_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xfd1d5419 fc_eh_timed_out -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xfdae23ce fc_host_post_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0151499b sas_end_device_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0effb9a3 sas_rphy_unlink -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1a757f0a sas_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1ae856b6 sas_read_port_mode_page -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2e087276 sas_port_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3a5dd0db scsi_is_sas_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4e2b2fc4 sas_phy_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x56f63d0c sas_port_alloc_num -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5bc6827c scsi_is_sas_rphy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x601289be sas_rphy_remove -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x637ba70e sas_port_delete_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6478e5b8 sas_port_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7dbbdd6d sas_port_mark_backlink -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x817fa25a sas_port_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x857c17ed scsi_is_sas_port -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8ca7b7cc sas_remove_host -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x9c5401f4 sas_port_add_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa06f33e8 sas_phy_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa6f6f2d0 sas_expander_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xac1ed975 sas_rphy_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xaf0a16f6 sas_remove_children -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb8001b8c sas_port_get_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xbaa381a8 sas_rphy_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc0c39149 sas_phy_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc4d1fbcb sas_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd1b23dd2 sas_get_address -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe81dff0a sas_port_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf1fbef59 sas_rphy_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf8a59e50 sas_phy_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x271ef19d spi_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x4a4a72ce fc_host_fpin_rcv +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x57f84aeb fc_block_scsi_eh +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x5c805059 fc_remote_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x625f00ab fc_vport_create +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x77193907 fc_remote_port_rolechg +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x8b3c8617 scsi_is_fc_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x969b5496 fc_find_rport_by_wwpn +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xa8cbf538 fc_remote_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xafd9890d fc_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xb0bbb526 fc_host_post_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xb5117f4c fc_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xc81516b8 fc_eh_timed_out +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xdb78ad0f fc_host_post_fc_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xddd1bb26 fc_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xe6101d6c fc_host_post_vendor_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x00735a46 sas_read_port_mode_page +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x008a277b scsi_is_sas_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x00c64d04 sas_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x13de2381 sas_end_device_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1fdcb324 sas_phy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x276345e7 sas_port_get_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x287f9ac6 sas_port_delete_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x331032c6 sas_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x421fdae6 sas_port_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x51259e82 sas_rphy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x52787e41 sas_port_alloc_num +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x687785f4 sas_rphy_unlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x699de453 sas_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6f759bbe scsi_is_sas_port +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7cf85179 sas_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7dae3956 sas_get_address +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8fc2bdf3 sas_port_add_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x91b2d82a sas_port_mark_backlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x926e893d sas_port_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x942097b5 sas_phy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x9b47b0e2 sas_phy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa329a961 sas_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa6ccc111 sas_expander_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xbc48bcd6 sas_rphy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc91372ac sas_remove_children +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe2331377 sas_rphy_remove +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe3884b4a sas_phy_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xfccbfe42 scsi_is_sas_rphy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xfd3a8ed4 sas_rphy_delete EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xad7dbd8d spi_display_xfer_agreement -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xbc05a7e5 spi_schedule_dv_device -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xd711aa0e spi_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xdb7887b1 spi_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x5b686f2f spi_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x77028210 spi_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xd8565d55 spi_schedule_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xdd0463e5 spi_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xfc76f007 spi_display_xfer_agreement +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x3cc67525 srp_rport_get EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x405b6e05 srp_parse_tmo -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x49adec80 srp_rport_put -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x545d2b6c srp_rport_get -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x70b2ea69 srp_start_tl_fail_timers -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xc4f73fe2 srp_reconnect_rport -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xf2afc6bf srp_timed_out -EXPORT_SYMBOL drivers/scsi/ufs/tc-dwc-g210 0x484473ad tc_dwc_g210_config_40_bit -EXPORT_SYMBOL drivers/scsi/ufs/tc-dwc-g210 0x7ea1617b tc_dwc_g210_config_20_bit -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x1878c7b9 ufshcd_get_local_unipro_ver -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x4c8e842c ufshcd_system_suspend -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x5fde3dfe ufshcd_runtime_resume -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x81f489e0 ufshcd_map_desc_id_to_length -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x83a72466 ufshcd_system_resume -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x96b4c41f ufshcd_shutdown -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0xace7316b ufshcd_alloc_host -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0xb286e643 ufshcd_runtime_suspend -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-dwc 0x17a0033b ufshcd_dwc_dme_set_attrs -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-dwc 0x7a439507 ufshcd_dwc_link_startup_notify +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x4ecf0d7e srp_reconnect_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x63756f42 srp_timed_out +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xd9416acf srp_start_tl_fail_timers +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xfbf7d6c5 srp_rport_put +EXPORT_SYMBOL drivers/scsi/ufs/tc-dwc-g210 0x2fe0e0d3 tc_dwc_g210_config_40_bit +EXPORT_SYMBOL drivers/scsi/ufs/tc-dwc-g210 0x65914ae6 tc_dwc_g210_config_20_bit +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x22e8b598 ufshcd_system_resume +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x5ed7a7bf ufshcd_runtime_suspend +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x9f91a9cb ufshcd_runtime_resume +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0xa35b2eff ufshcd_alloc_host +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0xac08deed ufshcd_system_suspend +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0xc4448f75 ufshcd_shutdown +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0xd702b35a ufshcd_map_desc_id_to_length +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0xded7b2ce ufshcd_get_local_unipro_ver +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-dwc 0xbd195c62 ufshcd_dwc_link_startup_notify +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-dwc 0xfaee2d05 ufshcd_dwc_dme_set_attrs EXPORT_SYMBOL drivers/soc/fsl/dpio/fsl-mc-dpio 0x030f2d6c dpaa2_io_service_enqueue_fq EXPORT_SYMBOL drivers/soc/fsl/dpio/fsl-mc-dpio 0x3d01f417 dpaa2_io_service_pull_fq EXPORT_SYMBOL drivers/soc/fsl/dpio/fsl-mc-dpio 0xc4ccef03 dpaa2_io_get_cpu EXPORT_SYMBOL drivers/soc/fsl/dpio/fsl-mc-dpio 0xdb008703 dpaa2_io_service_enqueue_multiple_fq EXPORT_SYMBOL drivers/soc/fsl/dpio/fsl-mc-dpio 0xe0f67b93 dpaa2_io_service_enqueue_multiple_desc_fq EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x0f4b7285 cmdq_pkt_destroy -EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x17c86ee8 cmdq_mbox_destroy EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x1c91b6c6 cmdq_pkt_poll EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x1eb577f5 cmdq_pkt_write_s_value EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x27f7a778 cmdq_pkt_set_event EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x3bc70297 cmdq_pkt_write_s_mask_value EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x3d3c435f cmdq_pkt_jump -EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x42f90894 cmdq_mbox_create EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x461737cb cmdq_pkt_read_s +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x486364aa cmdq_dev_get_client_reg EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x4dd68ea8 cmdq_pkt_wfe EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x5bcc91ec cmdq_pkt_flush_async EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x62622035 cmdq_pkt_write_s EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x6482132a cmdq_pkt_poll_mask +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x6c155f0d cmdq_mbox_destroy EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x81232e95 cmdq_pkt_assign EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x91e6f300 cmdq_pkt_clear_event -EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x9f1132f7 cmdq_dev_get_client_reg EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0xa644a9a6 cmdq_pkt_write +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0xba4ad31b cmdq_pkt_create +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0xe5689bcf cmdq_mbox_create EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0xf79754da cmdq_pkt_write_s_mask EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0xf80937c2 cmdq_pkt_finalize EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0xfb55916e cmdq_pkt_write_mask -EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0xfb649500 cmdq_pkt_create -EXPORT_SYMBOL drivers/soc/qcom/ocmem 0x2b8e2b18 of_get_ocmem +EXPORT_SYMBOL drivers/soc/qcom/ocmem 0xac2cb5c9 of_get_ocmem EXPORT_SYMBOL drivers/soc/qcom/ocmem 0xc53d76b1 ocmem_allocate EXPORT_SYMBOL drivers/soc/qcom/ocmem 0xf9b05967 ocmem_free EXPORT_SYMBOL drivers/soc/qcom/pdr_interface 0x1c76ea4d pdr_restart_pd EXPORT_SYMBOL drivers/soc/qcom/pdr_interface 0x432975e6 pdr_add_lookup EXPORT_SYMBOL drivers/soc/qcom/pdr_interface 0x47b2ed49 pdr_handle_alloc EXPORT_SYMBOL drivers/soc/qcom/pdr_interface 0xf618ca5b pdr_handle_release -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x01450e57 geni_icc_enable -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x2f55b19a geni_se_resources_off -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x380c9d67 geni_se_rx_dma_prep -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x39fb5028 geni_se_tx_dma_prep -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x48a6a54c geni_se_tx_dma_unprep -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x5666dcb7 geni_se_get_qup_hw_version -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x63238ac5 geni_icc_set_bw -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x67a66bdb geni_icc_get -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x6c3fba83 geni_se_select_mode -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x76b8eafe geni_se_clk_freq_match -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x93b27cf2 geni_se_resources_on -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x99d3e7fa geni_icc_disable -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xa999eabd geni_icc_set_tag -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xaa630771 geni_se_clk_tbl_get -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xbe632326 geni_se_rx_dma_unprep -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xee05c658 geni_se_config_packing -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xf301ba09 geni_se_init -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x0220c2e6 qmi_send_response -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x051ebec9 qmi_handle_release +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x09bd688a geni_se_rx_dma_prep +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x176ebb6d geni_icc_disable +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x26eb5872 geni_icc_enable +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x40b04816 geni_se_resources_off +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x4d2b7304 geni_se_select_mode +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x54208b58 geni_se_tx_dma_prep +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x5cc0d4cc geni_icc_set_bw +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x649ccbd8 geni_se_clk_tbl_get +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x68ad7ed8 geni_icc_set_tag +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x98cfad13 geni_se_resources_on +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x9fd4d2a9 geni_se_config_packing +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xa73d402d geni_se_init +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xaa06218e geni_se_get_qup_hw_version +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xac6297ce geni_se_rx_dma_unprep +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xc9b55d70 geni_se_tx_dma_unprep +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xe42b90e8 geni_se_clk_freq_match +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xf8b1c345 geni_icc_get +EXPORT_SYMBOL drivers/soc/qcom/qcom_aoss 0x2333aed6 qmp_put +EXPORT_SYMBOL drivers/soc/qcom/qcom_aoss 0x9e2aa1df qmp_send +EXPORT_SYMBOL drivers/soc/qcom/qcom_aoss 0xed644250 qmp_get +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x0c196f4e qmi_send_response EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x0ef12cc9 qmi_encode_message -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x1dc8729b qmi_send_indication +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x1edf2172 qmi_send_indication EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x21ce5888 qmi_response_type_v01_ei -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x2c6c52db qmi_txn_cancel -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x4ca9444e qmi_add_server -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x6555a588 qmi_send_request +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x26e6fc61 qmi_handle_init +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x5bb12c86 qmi_add_server EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x68772745 qmi_decode_message -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xbe1c9324 qmi_add_lookup -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xc54e2566 qmi_handle_init -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xeadb60d7 qmi_txn_wait -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xf3b0dde4 qmi_txn_init +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x69607d5d qmi_handle_release +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x69a0cfdd qmi_txn_cancel +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xafaf6e21 qmi_txn_wait +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xd462978b qmi_add_lookup +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xff2ba544 qmi_send_request +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xff41db7e qmi_txn_init 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 0xe2b6b1cf qcom_wcnss_open_channel -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x03355817 sdw_bread_no_pm_unlocked -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x06fa44c5 sdw_write -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x0f47c1c6 sdw_stream_remove_master +EXPORT_SYMBOL drivers/soc/qcom/wcnss_ctrl 0x956e9cf5 qcom_wcnss_open_channel +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x0ddf68ce sdw_write_no_pm EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x16d1706b sdw_prepare_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x1828bd54 sdw_bus_prep_clk_stop EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x1deee061 sdw_find_row_index -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x2c75d62b sdw_stream_add_master -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x37087483 sdw_read_no_pm +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x36fa3c72 sdw_clear_slave_status +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x3abd2758 sdw_bread_no_pm_unlocked EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x3b0a8582 sdw_startup_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x3ba717d6 sdw_bus_master_add -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x41355cf9 sdw_nread -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x42397759 sdw_stream_remove_slave +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x4537957e sdw_update_no_pm EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x4cde88bf sdw_disable_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x50912903 sdw_bus_clk_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x4e180c2f sdw_compare_devid +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x5adf348c sdw_stream_add_master EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x60e31fbb sdw_find_col_index -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x6d349274 sdw_slave_read_prop -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x6db9f0cb sdw_update_no_pm 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 0x74f03547 sdw_bwrite_no_pm_unlocked -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x77c933a8 sdw_nwrite -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x8ce528a1 sdw_master_read_prop -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x9679fedb sdw_extract_slave_id -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x96bd8f8e sdw_slave_add -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x96c17537 sdw_handle_slave_status -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x96d25f33 sdw_bus_master_delete +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x8bfb3cfa sdw_nread +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x93eb7aea sdw_bus_exit_clk_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x95b9d609 sdw_stream_add_slave EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x9e122d79 sdw_alloc_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xa6abccaf sdw_update -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xac286f64 sdw_clear_slave_status -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xba39c4d8 sdw_compare_devid +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x9e8d0b20 sdw_stream_remove_slave +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x9f1bd5a6 sdw_bus_master_add +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xa83303ba sdw_slave_read_prop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xaa80b754 sdw_bwrite_no_pm_unlocked +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xab3baf62 sdw_write +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xb18c30c4 sdw_stream_remove_master +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xb74cce00 sdw_read +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xb78dad37 sdw_extract_slave_id EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xba54b904 sdw_cols EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xbbec2c2e sdw_enable_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xc3889b77 sdw_bus_clk_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xc592ee8a sdw_read_no_pm +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xd27ea2ef sdw_nwrite +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xd4b94ecb sdw_slave_add EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xda5bce09 sdw_release_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xe687b6ec sdw_stream_add_slave -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xed52e54b sdw_bus_exit_clk_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xe07a02ac sdw_bus_prep_clk_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xeb636489 sdw_master_read_prop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xec0fb108 sdw_handle_slave_status +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xf21a97bb sdw_update EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xf53ba0b8 sdw_rows -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xfcfb522f sdw_write_no_pm -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xfff7b375 sdw_read -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x067fb1c9 sdw_cdns_init -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x0f6d2997 sdw_cdns_probe -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x23600ad3 sdw_cdns_alloc_pdi +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xfae543ba sdw_bus_master_delete +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x02234615 sdw_cdns_config_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x0f61e00e cdns_set_sdw_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x179b129a sdw_cdns_clock_restart +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x2241fa9c sdw_cdns_pdi_init +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x29e5719a sdw_cdns_enable_interrupt +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x2edfc19d cdns_bus_conf +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x31462b0b sdw_cdns_exit_reset EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x34712074 sdw_cdns_irq -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x37868168 sdw_cdns_check_self_clearing_bits -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x56cb3b76 cdns_xfer_msg -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x645ac0bb cdns_bus_conf -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x67037b7b sdw_cdns_config_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x99447fce cdns_reset_page_addr -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xa9169665 sdw_cdns_pdi_init -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xb278928b sdw_cdns_clock_restart -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xcab0ed2f sdw_cdns_enable_interrupt -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xdadba953 sdw_cdns_is_clock_stop -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xe405c861 cdns_xfer_msg_defer -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xf82f569d cdns_set_sdw_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xfb7c3804 sdw_cdns_clock_stop -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xfdcb0fdf sdw_cdns_exit_reset -EXPORT_SYMBOL drivers/soundwire/soundwire-generic-allocation 0x4415b8f4 sdw_compute_params -EXPORT_SYMBOL drivers/ssb/ssb 0x0c4ae611 ssb_pmu_set_ldo_voltage -EXPORT_SYMBOL drivers/ssb/ssb 0x208e0f0c ssb_bus_unregister -EXPORT_SYMBOL drivers/ssb/ssb 0x367f761d ssb_bus_may_powerdown -EXPORT_SYMBOL drivers/ssb/ssb 0x45c8cd5d ssb_bus_suspend -EXPORT_SYMBOL drivers/ssb/ssb 0x563468d6 ssb_pmu_set_ldo_paref -EXPORT_SYMBOL drivers/ssb/ssb 0x768e1ff9 ssb_bus_powerup -EXPORT_SYMBOL drivers/ssb/ssb 0x8637481e ssb_device_is_enabled -EXPORT_SYMBOL drivers/ssb/ssb 0x8904c065 ssb_device_disable -EXPORT_SYMBOL drivers/ssb/ssb 0x8c16fe10 ssb_chipco_gpio_control -EXPORT_SYMBOL drivers/ssb/ssb 0x8dbee8e8 ssb_commit_settings -EXPORT_SYMBOL drivers/ssb/ssb 0x8e181d38 ssb_clockspeed -EXPORT_SYMBOL drivers/ssb/ssb 0xaedf15f6 ssb_set_devtypedata -EXPORT_SYMBOL drivers/ssb/ssb 0xaf67f2d3 __ssb_driver_register -EXPORT_SYMBOL drivers/ssb/ssb 0xb83912aa ssb_dma_translation -EXPORT_SYMBOL drivers/ssb/ssb 0xc7bfd324 ssb_bus_sdiobus_register +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x3564cb3a cdns_xfer_msg_defer +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x445f4224 sdw_cdns_probe +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x9c708b40 sdw_cdns_alloc_pdi +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xa1a8cf88 sdw_cdns_init +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xc2de0b7e sdw_cdns_clock_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xe587a066 cdns_reset_page_addr +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xe9ed951e cdns_xfer_msg +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xecb0597b sdw_cdns_is_clock_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xfcde0259 sdw_cdns_check_self_clearing_bits +EXPORT_SYMBOL drivers/soundwire/soundwire-generic-allocation 0xbfb77446 sdw_compute_params +EXPORT_SYMBOL drivers/ssb/ssb 0x223d96ef ssb_bus_resume +EXPORT_SYMBOL drivers/ssb/ssb 0x2c495194 ssb_bus_sdiobus_register +EXPORT_SYMBOL drivers/ssb/ssb 0x3b85d465 ssb_bus_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0x42b43c3f ssb_pmu_set_ldo_paref +EXPORT_SYMBOL drivers/ssb/ssb 0x4783162d ssb_dma_translation +EXPORT_SYMBOL drivers/ssb/ssb 0x63b98b4c ssb_set_devtypedata +EXPORT_SYMBOL drivers/ssb/ssb 0x7101e68e ssb_device_disable +EXPORT_SYMBOL drivers/ssb/ssb 0x8b51a6ef ssb_bus_may_powerdown +EXPORT_SYMBOL drivers/ssb/ssb 0x8e2ebec5 __ssb_driver_register +EXPORT_SYMBOL drivers/ssb/ssb 0x971b355a ssb_chipco_gpio_control +EXPORT_SYMBOL drivers/ssb/ssb 0xa4c1cf6d ssb_pmu_set_ldo_voltage +EXPORT_SYMBOL drivers/ssb/ssb 0xaddfbd8b ssb_pcihost_register +EXPORT_SYMBOL drivers/ssb/ssb 0xb76da5a4 ssb_bus_suspend +EXPORT_SYMBOL drivers/ssb/ssb 0xc3a8cc50 ssb_bus_powerup +EXPORT_SYMBOL drivers/ssb/ssb 0xc8667a93 ssb_device_is_enabled EXPORT_SYMBOL drivers/ssb/ssb 0xcb17f1cb ssb_admatch_base -EXPORT_SYMBOL drivers/ssb/ssb 0xcb382d21 ssb_pcicore_dev_irqvecs_enable -EXPORT_SYMBOL drivers/ssb/ssb 0xd85f4ef7 ssb_driver_unregister EXPORT_SYMBOL drivers/ssb/ssb 0xdfc7c6ef ssb_admatch_size -EXPORT_SYMBOL drivers/ssb/ssb 0xe1012b06 ssb_bus_resume -EXPORT_SYMBOL drivers/ssb/ssb 0xe6ce11ce ssb_device_enable -EXPORT_SYMBOL drivers/ssb/ssb 0xe6e4e3a7 ssb_pcihost_register -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x0447114f fbtft_write_vmem16_bus9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x0e3d5d06 fbtft_write_spi_emulate_9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x25cf5734 fbtft_probe_common -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x26045ccb fbtft_write_gpio8_wr -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x2a3bafcc fbtft_write_reg16_bus16 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x2db30084 fbtft_read_spi -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x2f9d3b29 fbtft_unregister_backlight -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x38b01a9a fbtft_write_vmem16_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x3ddec46f fbtft_write_reg16_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x428821b6 fbtft_framebuffer_alloc -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x44584227 fbtft_unregister_framebuffer -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x5481bbd0 fbtft_register_backlight -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x5771488f fbtft_register_framebuffer -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x615555fc fbtft_write_vmem8_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x62d0b80d fbtft_write_reg8_bus9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x778d1938 fbtft_write_gpio16_wr_latched -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x7c54469e fbtft_init_display -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x7d58bc85 fbtft_write_gpio16_wr -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x8b043232 fbtft_write_buf_dc -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x97c74e1e fbtft_write_reg8_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x99c99608 fbtft_remove_common -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xaf88fae8 fbtft_write_vmem16_bus16 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xb5dc948e fbtft_dbg_hex -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xef0e3844 fbtft_write_spi -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xfe05868e fbtft_framebuffer_release -EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x31e8acd9 gbaudio_unregister_module -EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0xb20c68de gbaudio_register_module -EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0xd1d8c37e gbaudio_module_update -EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0xb944ae29 adt7316_probe -EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0x4777a0bc ade7854_probe -EXPORT_SYMBOL drivers/staging/media/av7110/sp8870 0x11827210 sp8870_attach -EXPORT_SYMBOL drivers/staging/media/zoran/videocodec 0x176a0dbb videocodec_register -EXPORT_SYMBOL drivers/staging/media/zoran/videocodec 0x7e3f3b38 videocodec_unregister -EXPORT_SYMBOL drivers/staging/media/zoran/videocodec 0x9ce4c289 videocodec_attach -EXPORT_SYMBOL drivers/staging/media/zoran/videocodec 0xdcdf61a4 videocodec_detach -EXPORT_SYMBOL drivers/staging/nvec/nvec 0x679eb42d nvec_write_sync -EXPORT_SYMBOL drivers/staging/nvec/nvec 0xc69126a9 nvec_write_async -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x057af5fe rtllib_wx_set_rts -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x05c4a714 rtllib_rx -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x087b64f7 rtllib_wx_set_essid -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0983ef61 rtllib_wx_set_auth -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x141b8d8c rtllib_softmac_start_protocol -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x15eafdc9 rtllib_wx_set_wap -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1633cf8c rtllib_wx_set_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1741197d rtllib_get_beacon -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1c0bd8cc rtllib_wx_set_encode +EXPORT_SYMBOL drivers/ssb/ssb 0xe5ee132d ssb_pcicore_dev_irqvecs_enable +EXPORT_SYMBOL drivers/ssb/ssb 0xedb4dbe4 ssb_device_enable +EXPORT_SYMBOL drivers/ssb/ssb 0xf0395d8b ssb_driver_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0xf2488a29 ssb_commit_settings +EXPORT_SYMBOL drivers/ssb/ssb 0xfda2f1d5 ssb_clockspeed +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x098d720c fbtft_write_reg16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x1a1e85cc fbtft_write_gpio16_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x1f9ea5bd fbtft_write_gpio8_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x2e4fe477 fbtft_write_vmem16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x2ef3b84b fbtft_write_reg8_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x343e1b8e fbtft_register_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x3869ff47 fbtft_write_buf_dc +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x3e4492f9 fbtft_init_display +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x43610c47 fbtft_framebuffer_alloc +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x4564c2a5 fbtft_framebuffer_release +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x47c1d0fb fbtft_remove_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x49043e9d fbtft_unregister_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x59a9d29f fbtft_write_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x5ade0740 fbtft_write_gpio16_wr_latched +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x6b34d0d5 fbtft_probe_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x7d448e80 fbtft_write_vmem16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x94463fc0 fbtft_write_reg8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xb68327df fbtft_register_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc2e39e33 fbtft_write_vmem8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc3877820 fbtft_unregister_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xcc8758a9 fbtft_write_spi_emulate_9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xcc8f6851 fbtft_dbg_hex +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xd545fef9 fbtft_read_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xe890c377 fbtft_write_vmem16_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xfc5ed729 fbtft_write_reg16_bus16 +EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x14808951 gbaudio_register_module +EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x7752742f gbaudio_unregister_module +EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0xbe3fe5ef gbaudio_module_update +EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0xa6171a9b adt7316_probe +EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0x7b1cee3f ade7854_probe +EXPORT_SYMBOL drivers/staging/media/av7110/sp8870 0xb71aea3f sp8870_attach +EXPORT_SYMBOL drivers/staging/media/zoran/videocodec 0x100e2e21 videocodec_attach +EXPORT_SYMBOL drivers/staging/media/zoran/videocodec 0x22e360d0 videocodec_detach +EXPORT_SYMBOL drivers/staging/media/zoran/videocodec 0x68284158 videocodec_unregister +EXPORT_SYMBOL drivers/staging/media/zoran/videocodec 0xb528adb5 videocodec_register +EXPORT_SYMBOL drivers/staging/nvec/nvec 0x2a8f605f nvec_write_sync +EXPORT_SYMBOL drivers/staging/nvec/nvec 0xb57a1a61 nvec_write_async +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x06340183 alloc_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x08e863ad rtllib_wx_set_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0fd28cc3 rtllib_wx_get_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2057955a rtllib_wx_get_rate EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x22166084 rt_global_debug_component -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x25b65db0 rtllib_wx_get_freq -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x28266ee3 rtllib_xmit -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2cc380a6 rtllib_MgntDisconnect -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2e6897e4 rtllib_reset_queue -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3be26ea5 rtllib_start_scan_syncro -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3e61e00e dot11d_channel_map -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4a73d5e7 rtllib_wx_set_mlme -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4bf95b88 rtllib_wx_set_gen_ie -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x521c8014 rtllib_wx_get_mode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x53aeef5f rtllib_wx_get_encode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5b53a5c8 rtllib_DisableIntelPromiscuousMode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x65f37c69 rtllib_stop_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x679a14df rtllib_act_scanning -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6e50e847 HT_update_self_and_peer_setting -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x72bea554 rtllib_wx_get_essid -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7f379b54 rtllib_wx_get_rate -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x814a026f RemovePeerTS -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x84fa3a60 rtllib_wx_get_wap -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8a2d563b rtllib_wx_set_freq -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8c0aeeae rtllib_wx_get_power -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8f0cb4e0 rtllib_wx_set_rawtx -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x946a3257 rtllib_wx_get_rts -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa7a04740 rtllib_stop_send_beacons -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xaaa1fdc6 rtllib_legal_channel -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb4cdc1f1 rtllib_EnableIntelPromiscuousMode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb9a8c407 rtllib_wx_get_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbb5a191e rtllib_wx_get_name -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc09d9bee alloc_rtllib -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc3f864ce free_rtllib -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc535acd6 rtllib_stop_scan_syncro -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd0ac90df rtllib_wx_set_rate -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd1aeac21 rtllib_softmac_stop_protocol -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd9fca380 rtllib_start_send_beacons -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdb7d546f rtllib_wx_set_encode_ext -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdcd1261d dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x28c1cf19 rtllib_sta_ps_send_null_frame +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2a1efde1 rtllib_rx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2e16521d rtllib_start_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3a4e7d70 notify_wx_assoc_event +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x41a97a43 rtllib_reset_queue +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4ece6186 rtllib_wx_set_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x51703cff rtllib_wx_set_mlme +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x52e82320 rtllib_wx_set_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x58f8c9d3 rtllib_wx_set_encode_ext +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5a6f8009 rtllib_get_beacon +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5c644cde rtllib_wx_set_rawtx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5c70de42 rtllib_wx_set_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5e4c67e6 rtllib_softmac_stop_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x62d57665 rtllib_stop_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x650bed36 rtllib_wx_set_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6515a49f rtllib_start_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x651b3d65 rtllib_stop_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x66719771 rtllib_wx_get_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6707733a rtllib_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6711bae3 rtllib_wx_get_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x68bbec12 RemovePeerTS +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x78314da7 rtllib_wx_set_auth +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7ad1ff29 HT_update_self_and_peer_setting +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x80d98bc8 rtllib_wx_set_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x95e38174 rtllib_wx_set_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x99b63e66 rtllib_stop_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa01a18b7 rtllib_wx_get_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa2aa40f3 rtllib_wx_set_gen_ie +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa68b6711 rtllib_wx_get_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa6d590c3 dot11d_channel_map +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xad46b289 rtllib_xmit +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xad6835d0 dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb1ba0a13 rtllib_MgntDisconnect +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb6ea4679 rtllib_wx_set_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbe2ce456 rtllib_DisableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc0239007 rtllib_ps_tx_ack +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc6594fd9 free_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc81293cd rtllib_wx_set_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xca833318 rtllib_EnableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd37bd949 rtllib_wx_get_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd775b7b3 rtllib_act_scanning +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd873b2a5 rtllib_wx_get_scan EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdf78f620 rtllib_wlan_frequencies -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xee998473 rtllib_sta_ps_send_null_frame -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf6cf2f0d rtllib_wx_set_power -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf75d555d rtllib_ps_tx_ack -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xfd823564 notify_wx_assoc_event -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xfd878b9f rtllib_wx_set_mode -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x07aa1f9e ieee80211_wx_set_gen_ie_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x083f860c ieee80211_wx_get_encode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x089aaf52 ieee80211_wx_set_encode_ext_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x197adac2 ieee80211_softmac_xmit_rsl +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe0e74666 rtllib_wx_get_name +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xed2d4c76 rtllib_softmac_start_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf2563fb9 rtllib_wx_get_encode +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x052d0fd4 ieee80211_wx_get_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x056c7034 ieee80211_softmac_xmit_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x07c305c1 ieee80211_wx_get_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0dd6a7c6 ieee80211_wx_set_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x13323332 HTUpdateSelfAndPeerSetting +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1443e603 ieee80211_wx_set_rawtx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x18c65ce6 ieee80211_wx_set_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1ac24ad1 ieee80211_wx_set_auth_rsl EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1d66a0ff ieee80211_is_shortslot_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2a31a2c6 ieee80211_stop_scan_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2f471dc9 ieee80211_disassociate_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3b61f203 ieee80211_softmac_stop_protocol_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x40d25fef notify_wx_assoc_event_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4925918b ieee80211_wx_get_encode_ext_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4a046297 ieee80211_rx_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x594280be is_legal_channel -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5aa693ae ieee80211_wx_get_mode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5b927092 ieee80211_start_scan_syncro_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5fc55347 ieee80211_softmac_scan_syncro_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x61a6c453 ieee80211_wx_set_rts_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x657e47cc ieee80211_wx_set_wap_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6ad61991 ieee80211_rx_mgt_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x75fa408a ieee80211_wx_get_freq_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x76658494 ieee80211_wx_set_rate_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x77f2e2a5 dot11d_get_max_tx_pwr_in_dbm -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x799e24b1 ieee80211_wx_get_scan_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7dd01e13 dot11d_reset -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x81bdde6f ieee80211_wpa_supplicant_ioctl_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8d29d86c HTUpdateSelfAndPeerSetting -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8f3f7ae2 rtl8192u_dot11d_init -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x900713f3 ieee80211_wx_set_mlme_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9300fa4c dot11d_scan_complete -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x93036614 ieee80211_ps_tx_ack_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x959e20f4 ieee80211_wx_set_auth_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x972d0174 dot11d_update_country_ie -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9aaef5be ieee80211_wx_set_mode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9f3a2760 ieee80211_txb_free_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa63df411 ieee80211_stop_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa856cb3d ieee80211_wx_get_essid_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb521d33f ieee80211_wx_set_essid_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb5f2269a ieee80211_wx_set_freq_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb66de284 ieee80211_wx_get_rate_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb99642a1 ieee80211_wx_set_scan_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc1d36d18 ieee80211_reset_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x223929df ieee80211_wx_set_mlme_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x23f77778 ieee80211_get_beacon_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2aa408ee ieee80211_wx_get_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2e77e8b4 ieee80211_wx_set_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2f3141b1 ieee80211_stop_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3212dd5f ieee80211_wx_set_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3ad12571 ieee80211_start_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x404f9c79 ieee80211_wx_get_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4201ac91 dot11d_update_country_ie +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4a5a3e7e ieee80211_wx_set_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x53bdd676 ieee80211_softmac_stop_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x555f6759 ieee80211_wx_get_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x579b209e ieee80211_stop_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5f8c8939 ieee80211_wx_set_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5fb324ed ieee80211_softmac_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x63b03198 ieee80211_disassociate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x673d3351 ieee80211_wx_set_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x68838ab2 ieee80211_wpa_supplicant_ioctl_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6981ea79 ieee80211_wx_get_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6dfe9cc9 dot11d_get_max_tx_pwr_in_dbm +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7405178e ieee80211_wx_set_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7cad78f8 ieee80211_ps_tx_ack_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x872b32d1 notify_wx_assoc_event_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8ae4b8dc SendDisassociation_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9497a818 ieee80211_wake_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa6530144 ieee80211_wx_get_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa769650f ieee80211_wx_set_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xaca0fd99 ieee80211_stop_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xafa68325 rtl8192u_dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb3d2ee99 ieee80211_wx_get_name_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb54c6652 ieee80211_rx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb82359e0 ieee80211_wx_set_gen_ie_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbe757e9a dot11d_scan_complete EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc370a43e ieee80211_wlan_frequencies_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc78a671c SendDisassociation_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc905bbf3 ieee80211_stop_send_beacons_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xce26dfdb ieee80211_softmac_start_protocol_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd3ac792c ieee80211_wx_get_rts_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd673dc82 to_legal_channel -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd774fab3 ieee80211_wx_get_wap_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe2faee76 ieee80211_wx_get_name_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe62c9038 ieee80211_wx_set_encode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe80b707f ieee80211_wake_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xebf63f69 ieee80211_wx_set_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc62b1949 ieee80211_softmac_start_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc7f961fb ieee80211_rx_mgt_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc8f247de ieee80211_wx_get_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd1a544ab ieee80211_txb_free_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd5314aca ieee80211_start_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xdaeb11b3 ieee80211_wx_get_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe3a8a0be ieee80211_wx_set_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xec08b58c to_legal_channel EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xecc5fb1b ieee80211_is_54g_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf247d3d5 ieee80211_wx_set_rawtx_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf681276b ieee80211_wx_get_power_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfb4aaf73 ieee80211_get_beacon_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfcbb402f ieee80211_start_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xed7243dc ieee80211_reset_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf3f8e623 is_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfa8e16c1 dot11d_reset +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfcfa5229 ieee80211_wx_get_essid_rsl EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x02f8c431 vchiq_queue_kernel_message +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x0678635c vchiq_open_service +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x1956b952 vchiq_connect EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x1c60d406 vchiq_get_service_userdata +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x27d4241b vchiq_initialise +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x2a0ff7e1 vchiq_shutdown EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x327c3232 vchiq_msg_hold -EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x3bca8737 vchiq_open_service EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x582ed8ca vchiq_bulk_receive EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x6d5ef163 vchiq_release_message EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x8ff6c2b1 vchiq_get_peer_version EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x92b2feb4 vchiq_bulk_transmit EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x9d6478fe vchiq_use_service -EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x9f583e3f vchiq_shutdown EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0xa22e9df3 vchiq_add_connected_callback EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0xb05b02ae vchiq_release_service EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0xc407cff0 vchiq_msg_queue_push EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0xe95e0941 vchiq_close_service -EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0xf2e3a811 vchiq_connect -EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0xfe25920b vchiq_initialise -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0ce3d666 iscsit_register_transport -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x194165f7 iscsit_build_text_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1ef96085 iscsit_build_task_mgt_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x291ece6d iscsit_add_cmd_to_immediate_queue -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x32944821 __iscsit_check_dataout_hdr -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x357da777 iscsit_build_reject -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3d6c278c iscsit_process_text_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x405b74b4 iscsit_increment_maxcmdsn -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x40f3ad8c iscsit_process_scsi_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x53a5e358 iscsit_build_logout_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x584b745c iscsit_build_r2ts_for_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5da98cc3 iscsit_release_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x60bebf1e iscsit_add_reject -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x61336dd7 iscsit_logout_post_handler -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x67f30c52 iscsit_allocate_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6f8a5d08 iscsit_check_dataout_payload -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x707d9414 iscsit_aborted_task -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7619ea5d iscsi_change_param_sprintf -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x78d938f5 iscsit_check_dataout_hdr -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7ada3bc9 iscsi_target_check_login_request -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7f21e291 iscsit_build_datain_pdu -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8135d4d2 iscsit_set_unsolicited_dataout -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x85ac5bd6 iscsit_find_cmd_from_itt -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x867f8023 iscsit_setup_scsi_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x86dd3b94 iscsit_queue_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x895c7ce7 iscsit_process_nop_out -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8be8a7ed iscsit_immediate_queue -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8eada6b9 iscsit_free_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9b47b038 iscsit_sequence_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9b552f65 iscsit_setup_nop_out -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9d19a1ef iscsit_tmr_post_handler -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb61acd4b iscsit_setup_text_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xba987c03 iscsit_get_datain_values -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc1f13e95 iscsit_build_nopin_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc313391a iscsit_find_cmd_from_itt_or_dump -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc9ecea08 iscsit_response_queue -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd1f31e88 iscsit_handle_logout_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd36fb7c7 iscsit_reject_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xda326138 iscsit_cause_connection_reinstatement -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xdacccee1 iscsit_build_rsp_pdu -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xdb85d87c iscsit_handle_snack +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x09b01623 iscsit_process_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2d99f527 iscsit_build_nopin_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x363353e7 iscsit_add_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x40b4e6d0 iscsit_tmr_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x41a5d473 iscsit_build_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4b5f021c iscsi_target_check_login_request +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4eeb4ad2 iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4f8ba934 iscsit_handle_logout_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x55c9aa9a iscsit_set_unsolicited_dataout +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5ead8d4c iscsit_get_datain_values +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x64078556 iscsit_aborted_task +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7017b1d4 iscsit_cause_connection_reinstatement +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x70c581ef iscsit_build_r2ts_for_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7a31995e iscsit_check_dataout_payload +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x80b51318 iscsit_response_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8591f682 __iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x86525b57 iscsit_find_cmd_from_itt +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8c49930a iscsit_stop_dataout_timer +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x91387d71 iscsi_change_param_sprintf +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x96ee4fd5 iscsit_sequence_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x988c7c3d iscsit_build_logout_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x98cfb6de iscsit_setup_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x998b9500 iscsit_build_task_mgt_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa4b96f89 iscsit_setup_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa73dd7b6 iscsit_queue_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa876970d iscsit_build_rsp_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa911b584 iscsit_increment_maxcmdsn +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbadfdca2 iscsit_build_datain_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbbe43c85 iscsit_logout_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc2e5949b iscsit_process_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc7b3e747 iscsit_handle_snack +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc8e3a80a iscsit_add_cmd_to_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xcbaf085a iscsit_reject_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xcc331eac iscsit_unregister_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xcd1f1456 iscsit_register_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd1c4d740 iscsit_build_text_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd2dda1da iscsit_free_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xdf5afe71 iscsit_allocate_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xdfa5253b iscsit_release_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe72efb65 iscsit_process_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe9316c85 iscsit_find_cmd_from_itt_or_dump +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xecad165b iscsit_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf22bbfb2 iscsit_handle_task_mgt_cmd EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf34332f0 iscsi_find_param_from_key -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf7c27061 iscsit_unregister_transport -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xff47afb4 iscsit_handle_task_mgt_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xff5884f7 iscsit_stop_dataout_timer -EXPORT_SYMBOL drivers/target/target_core_mod 0x0050e452 transport_handle_cdb_direct -EXPORT_SYMBOL drivers/target/target_core_mod 0x02280024 target_get_sess_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x028c2f89 target_complete_cmd_with_length -EXPORT_SYMBOL drivers/target/target_core_mod 0x055471eb target_set_cmd_data_length +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xff1149d1 iscsit_setup_nop_out +EXPORT_SYMBOL drivers/target/target_core_mod 0x001fb7e4 transport_handle_cdb_direct EXPORT_SYMBOL drivers/target/target_core_mod 0x0871ffd6 transport_set_vpd_ident -EXPORT_SYMBOL drivers/target/target_core_mod 0x0d8cc08e target_submit_tmr -EXPORT_SYMBOL drivers/target/target_core_mod 0x0eecc385 transport_deregister_session_configfs -EXPORT_SYMBOL drivers/target/target_core_mod 0x124f6971 target_complete_cmd_with_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0x0dacdadd sbc_get_device_type EXPORT_SYMBOL drivers/target/target_core_mod 0x142072c0 transport_set_vpd_assoc -EXPORT_SYMBOL drivers/target/target_core_mod 0x204a24e9 target_show_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x2891ccef sbc_dif_verify -EXPORT_SYMBOL drivers/target/target_core_mod 0x29386e5e spc_emulate_evpd_83 -EXPORT_SYMBOL drivers/target/target_core_mod 0x30035390 target_undepend_item -EXPORT_SYMBOL drivers/target/target_core_mod 0x371ed31a target_remove_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x37661589 core_tpg_check_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x18750f81 target_complete_cmd_with_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0x1ad4c978 core_tpg_deregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x1d06f768 target_execute_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x21f7fc95 target_show_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x232bcab1 target_backend_unregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x2517f9e6 transport_kmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x30dd48a2 transport_deregister_session_configfs EXPORT_SYMBOL drivers/target/target_core_mod 0x3a20a9d7 transport_set_vpd_ident_type -EXPORT_SYMBOL drivers/target/target_core_mod 0x3c82aeae core_tpg_set_initiator_node_tag -EXPORT_SYMBOL drivers/target/target_core_mod 0x3d3f1ec2 transport_lookup_tmr_lun -EXPORT_SYMBOL drivers/target/target_core_mod 0x3dd62334 target_complete_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x42591c8c transport_register_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x4711a766 transport_alloc_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x52214360 target_depend_item -EXPORT_SYMBOL drivers/target/target_core_mod 0x542b4a0c target_show_dynamic_sessions -EXPORT_SYMBOL drivers/target/target_core_mod 0x5f64af7c transport_generic_new_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x636a4605 transport_kunmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x3ae7c0cd target_complete_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x3cfe165d core_alua_check_nonop_delay +EXPORT_SYMBOL drivers/target/target_core_mod 0x407b88de transport_generic_new_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x4e69eb72 target_send_busy +EXPORT_SYMBOL drivers/target/target_core_mod 0x5079b93c target_undepend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0x59ea6329 target_configure_unmap_from_queue +EXPORT_SYMBOL drivers/target/target_core_mod 0x62438462 transport_kunmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x62b3baea core_tpg_check_initiator_node_acl EXPORT_SYMBOL drivers/target/target_core_mod 0x638bffb7 target_free_sgl -EXPORT_SYMBOL drivers/target/target_core_mod 0x6989deaf target_put_sess_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x6a62f44c transport_wait_for_tasks -EXPORT_SYMBOL drivers/target/target_core_mod 0x714510c7 passthrough_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x74f3f74f target_nacl_find_deve -EXPORT_SYMBOL drivers/target/target_core_mod 0x75ab8956 target_to_linux_sector +EXPORT_SYMBOL drivers/target/target_core_mod 0x6443a667 spc_emulate_evpd_83 +EXPORT_SYMBOL drivers/target/target_core_mod 0x64d40f49 transport_alloc_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x660d2031 core_tpg_get_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x66578ec4 target_put_nacl +EXPORT_SYMBOL drivers/target/target_core_mod 0x6768ced9 transport_free_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x6a4c5b16 core_tpg_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x6c210dc2 target_submit_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x705cab10 target_depend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0x70d45129 target_nacl_find_deve +EXPORT_SYMBOL drivers/target/target_core_mod 0x710c701c target_to_linux_sector +EXPORT_SYMBOL drivers/target/target_core_mod 0x73570ce9 target_setup_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x755a82e6 passthrough_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x758fbeb2 sbc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x77120d9e target_wait_for_sess_cmds +EXPORT_SYMBOL drivers/target/target_core_mod 0x7714d216 core_tpg_set_initiator_node_tag EXPORT_SYMBOL drivers/target/target_core_mod 0x7a1d0d3c target_alloc_sgl -EXPORT_SYMBOL drivers/target/target_core_mod 0x7a624ebc sbc_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x7f4cd6d8 transport_generic_request_failure -EXPORT_SYMBOL drivers/target/target_core_mod 0x80f2f6c6 transport_kmap_data_sg -EXPORT_SYMBOL drivers/target/target_core_mod 0x81f73da9 target_lun_is_rdonly -EXPORT_SYMBOL drivers/target/target_core_mod 0x8215379f transport_init_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x83a2f608 transport_deregister_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x86500bbd transport_copy_sense_to_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x89f2e1b0 transport_send_check_condition_and_sense -EXPORT_SYMBOL drivers/target/target_core_mod 0x8aacc669 target_send_busy -EXPORT_SYMBOL drivers/target/target_core_mod 0x8f5760d4 core_tpg_get_initiator_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0x90eab6e9 spc_emulate_inquiry_std -EXPORT_SYMBOL drivers/target/target_core_mod 0x92de6251 target_submit_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x94c7181d sbc_dif_copy_prot -EXPORT_SYMBOL drivers/target/target_core_mod 0x95790b8c target_unregister_template -EXPORT_SYMBOL drivers/target/target_core_mod 0x973f9a8d target_cmd_init_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0xa4d05f7d core_tpg_set_initiator_node_queue_depth -EXPORT_SYMBOL drivers/target/target_core_mod 0xa58ab04f __transport_register_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xa5b21049 passthrough_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0xa738a445 core_allocate_nexus_loss_ua +EXPORT_SYMBOL drivers/target/target_core_mod 0x7ca6fa21 target_submit_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x8385baa7 transport_init_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x84d9e34f target_cmd_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x86bcb0a7 target_show_dynamic_sessions +EXPORT_SYMBOL drivers/target/target_core_mod 0x8b6f639f target_complete_cmd_with_length +EXPORT_SYMBOL drivers/target/target_core_mod 0x8d9b40e0 target_lun_is_rdonly +EXPORT_SYMBOL drivers/target/target_core_mod 0x96a12720 transport_wait_for_tasks +EXPORT_SYMBOL drivers/target/target_core_mod 0xa5e331f4 transport_copy_sense_to_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xa7e97e5e sbc_get_write_same_sectors EXPORT_SYMBOL drivers/target/target_core_mod 0xa897a9ce core_tmr_alloc_req -EXPORT_SYMBOL drivers/target/target_core_mod 0xaa426830 target_register_template -EXPORT_SYMBOL drivers/target/target_core_mod 0xaf19d7b6 sbc_get_device_type -EXPORT_SYMBOL drivers/target/target_core_mod 0xb6238b29 target_setup_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xb73deea5 transport_alloc_session_tags -EXPORT_SYMBOL drivers/target/target_core_mod 0xb9936a58 sbc_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0xbe75f8dd target_put_nacl -EXPORT_SYMBOL drivers/target/target_core_mod 0xbf87ae54 target_wait_for_sess_cmds -EXPORT_SYMBOL drivers/target/target_core_mod 0xc174f40b sbc_get_write_same_sectors -EXPORT_SYMBOL drivers/target/target_core_mod 0xc286822c target_cmd_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0xcaa64080 transport_backend_register -EXPORT_SYMBOL drivers/target/target_core_mod 0xcb2d8866 core_tpg_register -EXPORT_SYMBOL drivers/target/target_core_mod 0xce0a9909 target_tpg_has_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0xd1ff91c6 target_stop_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xd2370373 transport_generic_free_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xd4a152bd target_configure_unmap_from_queue -EXPORT_SYMBOL drivers/target/target_core_mod 0xd5bfe310 spc_emulate_report_luns -EXPORT_SYMBOL drivers/target/target_core_mod 0xd8afd42b transport_lookup_cmd_lun -EXPORT_SYMBOL drivers/target/target_core_mod 0xde5e6dbd spc_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0xe1148b05 transport_generic_handle_tmr -EXPORT_SYMBOL drivers/target/target_core_mod 0xe4917b1f passthrough_pr_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0xe69b397d core_tpg_deregister -EXPORT_SYMBOL drivers/target/target_core_mod 0xe6f8110f __target_init_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xed960d33 target_execute_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xf1eb16ca target_backend_unregister +EXPORT_SYMBOL drivers/target/target_core_mod 0xa93d87e2 target_stop_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xaaace594 target_get_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xafa92284 sbc_dif_verify +EXPORT_SYMBOL drivers/target/target_core_mod 0xb04fd0c2 transport_alloc_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0xb4044f0e transport_send_check_condition_and_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0xba6b31a8 target_tpg_has_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0xbcda007a __transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xbfb15bee spc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xc214b625 target_register_template +EXPORT_SYMBOL drivers/target/target_core_mod 0xc284213a transport_deregister_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xc2ceffa2 spc_emulate_inquiry_std +EXPORT_SYMBOL drivers/target/target_core_mod 0xc8c19c28 passthrough_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xc9dc6d1a transport_lookup_tmr_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0xccba3897 transport_generic_request_failure +EXPORT_SYMBOL drivers/target/target_core_mod 0xcf28cb83 spc_emulate_report_luns +EXPORT_SYMBOL drivers/target/target_core_mod 0xd5216031 transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xd75156b0 sbc_dif_copy_prot +EXPORT_SYMBOL drivers/target/target_core_mod 0xda56834e transport_backend_register +EXPORT_SYMBOL drivers/target/target_core_mod 0xdb13e340 passthrough_pr_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0xe1e98263 target_cmd_init_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xe2107c71 core_allocate_nexus_loss_ua +EXPORT_SYMBOL drivers/target/target_core_mod 0xe4bf237d sbc_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0xe8a2b1b8 transport_lookup_cmd_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0xeb6e8694 target_put_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xee55a57a __target_init_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xef1cadc4 target_remove_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xef55cb24 target_unregister_template EXPORT_SYMBOL drivers/target/target_core_mod 0xf3c2dfe0 transport_set_vpd_proto_id -EXPORT_SYMBOL drivers/target/target_core_mod 0xf773490a transport_free_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xf7d7a4ab core_alua_check_nonop_delay -EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0x7284f492 usb_cdc_wdm_register -EXPORT_SYMBOL drivers/usb/gadget/libcomposite 0xe964d9fe usb_os_desc_prepare_interf_dir -EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0x98f94817 sl811h_driver -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x2b093f79 usb_wwan_resume -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x4ded0d40 usb_wwan_write -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x5e6f5b72 usb_wwan_tiocmset -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x7a4cb49a usb_wwan_write_room -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x8a9739c6 usb_wwan_suspend -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x91191a87 usb_wwan_open -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x95a52b6b usb_wwan_dtr_rts -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xb897c657 usb_wwan_chars_in_buffer -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xb9b05574 usb_wwan_tiocmget -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xbae13ad6 usb_wwan_port_remove -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xbd07d6f9 usb_wwan_close -EXPORT_SYMBOL drivers/usb/serial/usbserial 0x02ac7916 usb_serial_suspend -EXPORT_SYMBOL drivers/usb/serial/usbserial 0x10196cec usb_serial_resume -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x1564f0c6 mtype_get_parent_dev -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x2a9fbd4a mdev_register_driver -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x3b2fc65d mdev_unregister_device -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x68ee5663 mdev_get_type_group_id -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x6cfa5e11 mdev_unregister_driver -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x6f355fba mtype_get_type_group_id -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xa532ee01 mdev_parent_dev -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xfab0eea4 mdev_register_device -EXPORT_SYMBOL drivers/vfio/vfio 0x192f96b5 vfio_unregister_notifier +EXPORT_SYMBOL drivers/target/target_core_mod 0xf949e087 transport_generic_handle_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0xfacfa325 transport_generic_free_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xfb3239ec core_tpg_set_initiator_node_queue_depth +EXPORT_SYMBOL drivers/target/target_core_mod 0xfee39657 target_set_cmd_data_length +EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0x683e586d usb_cdc_wdm_register +EXPORT_SYMBOL drivers/usb/gadget/libcomposite 0xe3e1fc67 usb_os_desc_prepare_interf_dir +EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0x186537a0 sl811h_driver +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x05f59956 usb_wwan_write_room +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x265baa32 usb_wwan_write +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x3b29c2f6 usb_wwan_dtr_rts +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x4c262e2b usb_wwan_resume +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x5bea8a70 usb_wwan_tiocmset +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x624e708f usb_wwan_tiocmget +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x89564e54 usb_wwan_suspend +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xa746f9e5 usb_wwan_open +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xb5666770 usb_wwan_close +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xccb4a312 usb_wwan_chars_in_buffer +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xd756ff3a usb_wwan_port_remove +EXPORT_SYMBOL drivers/usb/serial/usbserial 0x8794dc0c usb_serial_suspend +EXPORT_SYMBOL drivers/usb/serial/usbserial 0x9df00f04 usb_serial_resume +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x19bb09fd mdev_get_type_group_id +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x232da774 mdev_register_device +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xa2b57cf8 mtype_get_type_group_id +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xabd8a0d9 mdev_parent_dev +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xb6611407 mdev_unregister_device +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xb8dbfdad mtype_get_parent_dev +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xb9e519b0 mdev_unregister_driver +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xe74a320d mdev_register_driver EXPORT_SYMBOL drivers/vfio/vfio 0x19567d06 vfio_info_cap_shift EXPORT_SYMBOL drivers/vfio/vfio 0x1aa9fba0 vfio_dma_rw +EXPORT_SYMBOL drivers/vfio/vfio 0x3d2da232 vfio_register_notifier EXPORT_SYMBOL drivers/vfio/vfio 0x48a81d7e vfio_group_pin_pages +EXPORT_SYMBOL drivers/vfio/vfio 0x5f0b038e vfio_unpin_pages EXPORT_SYMBOL drivers/vfio/vfio 0x6c28be5a vfio_info_add_capability EXPORT_SYMBOL drivers/vfio/vfio 0x7834defd vfio_group_unpin_pages -EXPORT_SYMBOL drivers/vfio/vfio 0x7c5921c8 vfio_register_notifier -EXPORT_SYMBOL drivers/vfio/vfio 0x9118c658 vfio_pin_pages +EXPORT_SYMBOL drivers/vfio/vfio 0x8f2a7e95 vfio_unregister_notifier +EXPORT_SYMBOL drivers/vfio/vfio 0x95fec4fe vfio_pin_pages EXPORT_SYMBOL drivers/vfio/vfio 0xadc044b7 vfio_set_irqs_validate_and_prepare -EXPORT_SYMBOL drivers/vfio/vfio 0xcd8b8a96 vfio_unpin_pages -EXPORT_SYMBOL drivers/vhost/vhost 0x5468a89a vhost_chr_poll -EXPORT_SYMBOL drivers/vhost/vhost 0xb9089304 vhost_chr_write_iter +EXPORT_SYMBOL drivers/vhost/vhost 0x9beb40a1 vhost_chr_write_iter +EXPORT_SYMBOL drivers/vhost/vhost 0xd99d2ef9 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 @@ -4699,130 +4702,130 @@ 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 0x2f9522a7 devm_lcd_device_register -EXPORT_SYMBOL drivers/video/backlight/lcd 0x45deef5d lcd_device_unregister -EXPORT_SYMBOL drivers/video/backlight/lcd 0x72d827a1 devm_lcd_device_unregister -EXPORT_SYMBOL drivers/video/backlight/lcd 0x80b72509 lcd_device_register -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x0affc2ab svga_tilecursor +EXPORT_SYMBOL drivers/video/backlight/lcd 0x90be4a10 devm_lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0xadab00eb lcd_device_unregister +EXPORT_SYMBOL drivers/video/backlight/lcd 0xec6268f0 devm_lcd_device_unregister +EXPORT_SYMBOL drivers/video/backlight/lcd 0xfe5e3bf3 lcd_device_register +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x06d186d7 svga_tilecopy 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 0x2fee149c svga_tileblit -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x412c4ab9 svga_settile +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x277ca868 svga_settile +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x3c0a89da svga_tileblit EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x4ab38ef2 svga_set_default_crt_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x7735fcbc svga_tilefill +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x4c25dd26 svga_tilefill +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x4fb776cb svga_get_tilemax +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x7a59313e 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 0x8e0d7790 svga_tilecursor 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 0xd562b210 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/svgalib 0xf964f04a svga_get_tilemax -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xfd7b770e svga_get_caps -EXPORT_SYMBOL drivers/video/fbdev/core/syscopyarea 0x2e58fd73 sys_copyarea -EXPORT_SYMBOL drivers/video/fbdev/core/sysfillrect 0xcbeeca46 sys_fillrect -EXPORT_SYMBOL drivers/video/fbdev/core/sysimgblt 0x7e0f49ac sys_imageblit -EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x0020ac18 cyber2000fb_attach +EXPORT_SYMBOL drivers/video/fbdev/core/syscopyarea 0xc47ede26 sys_copyarea +EXPORT_SYMBOL drivers/video/fbdev/core/sysfillrect 0xc5011f55 sys_fillrect +EXPORT_SYMBOL drivers/video/fbdev/core/sysimgblt 0xd44fc83f 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 0xc438e779 cyber2000fb_attach +EXPORT_SYMBOL drivers/video/fbdev/macmodes 0x0cc51506 mac_find_mode EXPORT_SYMBOL drivers/video/fbdev/macmodes 0x233917d1 mac_vmode_to_var -EXPORT_SYMBOL drivers/video/fbdev/macmodes 0x6a858dee mac_find_mode EXPORT_SYMBOL drivers/video/fbdev/macmodes 0xe2304303 mac_map_monitor_sense -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x12055efb matroxfb_g450_setpll_cond -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xd214d49f g450_mnp2f -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xdc85752c matroxfb_g450_setclk -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x1959dfb9 DAC1064_global_init -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x43aa53cb DAC1064_global_restore -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x6fd5bf52 matrox_mystique -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x75badb22 matrox_G100 -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_Ti3026 0x808fd05f matrox_millennium -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_accel 0x1a2d0adf matrox_cfbX_init -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x5a8bd1ad matroxfb_wait_for_sync -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x659ac548 matroxfb_enable_irq -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x97118d35 matroxfb_register_driver -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xc4ad0115 matroxfb_unregister_driver -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x766cc148 matroxfb_g450_connect -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0xb9ea2e59 matroxfb_g450_shutdown -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x25873efa matroxfb_read_pins +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x57b3fa0e matroxfb_g450_setclk +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x7176c50f matroxfb_g450_setpll_cond +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xbb4456ad g450_mnp2f +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xb5c9e44c matrox_mystique +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xcb92f9ab matrox_G100 +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xce6e33f2 DAC1064_global_restore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xecbfa5c9 DAC1064_global_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_Ti3026 0xa877bde0 matrox_millennium +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_accel 0xa31deb4e matrox_cfbX_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x2faffbca matroxfb_register_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x5568948c matroxfb_wait_for_sync +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xdc440e9e matroxfb_enable_irq +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xf89edc70 matroxfb_unregister_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x0efc5266 matroxfb_g450_connect +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0xfb2fd0a0 matroxfb_g450_shutdown +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x0429ce6b matroxfb_DAC_out +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x114dd9b2 matroxfb_read_pins EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x25cf8049 matroxfb_PLL_calcclock -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x3bd58599 matroxfb_DAC_in -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x3db26d2c matroxfb_vgaHWinit -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x41186acb matroxfb_vgaHWrestore -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x64a9a164 matroxfb_DAC_out +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x88b90879 matroxfb_vgaHWinit +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xbaff795f matroxfb_DAC_in EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xcdc90c64 matroxfb_var2my +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xda14890e matroxfb_vgaHWrestore EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0x3037658e sis_malloc EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0xfe963115 sis_free EXPORT_SYMBOL drivers/video/vgastate 0x686de290 restore_vga EXPORT_SYMBOL drivers/video/vgastate 0xe7a2620e save_vga -EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x536b50a3 virtio_dma_buf_attach -EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x5ca5f73a virtio_dma_buf_get_uuid -EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0xddd05adc is_virtio_dma_buf -EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0xe89ff0e3 virtio_dma_buf_export -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x2a41d8a8 w1_ds2780_eeprom_cmd -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x4db89b76 w1_ds2780_io -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x2a719602 w1_ds2781_io -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x535b2994 w1_ds2781_eeprom_cmd -EXPORT_SYMBOL drivers/w1/wire 0x71156d7f w1_add_master_device -EXPORT_SYMBOL drivers/w1/wire 0x9eec14eb w1_unregister_family -EXPORT_SYMBOL drivers/w1/wire 0xdc23dc9b w1_register_family -EXPORT_SYMBOL drivers/w1/wire 0xecbba901 w1_remove_master_device -EXPORT_SYMBOL fs/fscache/fscache 0x03237a5f fscache_op_complete -EXPORT_SYMBOL fs/fscache/fscache 0x060f91e9 fscache_enqueue_operation -EXPORT_SYMBOL fs/fscache/fscache 0x11a8981d fscache_check_aux -EXPORT_SYMBOL fs/fscache/fscache 0x17eb6225 __fscache_write_page -EXPORT_SYMBOL fs/fscache/fscache 0x238eed11 __fscache_check_consistency -EXPORT_SYMBOL fs/fscache/fscache 0x277f5d02 fscache_mark_pages_cached -EXPORT_SYMBOL fs/fscache/fscache 0x2894e993 fscache_object_retrying_stale -EXPORT_SYMBOL fs/fscache/fscache 0x319b1e04 fscache_operation_init -EXPORT_SYMBOL fs/fscache/fscache 0x38060d33 __fscache_enable_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x3860e3e1 fscache_object_init -EXPORT_SYMBOL fs/fscache/fscache 0x3d1dd54e __fscache_disable_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x3e1babd1 __fscache_uncache_page -EXPORT_SYMBOL fs/fscache/fscache 0x40f2b698 fscache_add_cache -EXPORT_SYMBOL fs/fscache/fscache 0x448765ab __fscache_readpages_cancel -EXPORT_SYMBOL fs/fscache/fscache 0x4c9ca67a __fscache_register_netfs -EXPORT_SYMBOL fs/fscache/fscache 0x52178090 fscache_withdraw_cache -EXPORT_SYMBOL fs/fscache/fscache 0x5352b250 __fscache_check_page_write -EXPORT_SYMBOL fs/fscache/fscache 0x639e7172 __fscache_acquire_cookie +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x0c17a0d1 virtio_dma_buf_get_uuid +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x859abbb5 virtio_dma_buf_export +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0xe2d0f9cf virtio_dma_buf_attach +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0xf24b4151 is_virtio_dma_buf +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x6a17f2bc w1_ds2780_io +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x9e276e68 w1_ds2780_eeprom_cmd +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x134d0bc7 w1_ds2781_eeprom_cmd +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x8c5a504a w1_ds2781_io +EXPORT_SYMBOL drivers/w1/wire 0x0609a06b w1_add_master_device +EXPORT_SYMBOL drivers/w1/wire 0x0aee365a w1_unregister_family +EXPORT_SYMBOL drivers/w1/wire 0x41659514 w1_register_family +EXPORT_SYMBOL drivers/w1/wire 0xa29f4d07 w1_remove_master_device +EXPORT_SYMBOL fs/fscache/fscache 0x03aa1e27 fscache_object_init +EXPORT_SYMBOL fs/fscache/fscache 0x1a232482 __fscache_attr_changed +EXPORT_SYMBOL fs/fscache/fscache 0x2079d367 __fscache_begin_read_operation +EXPORT_SYMBOL fs/fscache/fscache 0x30982163 fscache_put_operation +EXPORT_SYMBOL fs/fscache/fscache 0x3853706e __fscache_check_consistency +EXPORT_SYMBOL fs/fscache/fscache 0x3e01e9d1 __fscache_wait_on_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0x4c2e52c6 fscache_object_lookup_negative +EXPORT_SYMBOL fs/fscache/fscache 0x4e83c69c fscache_enqueue_operation +EXPORT_SYMBOL fs/fscache/fscache 0x53a0d412 __fscache_read_or_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0x547d3c5d fscache_io_error +EXPORT_SYMBOL fs/fscache/fscache 0x5f8d745d __fscache_check_page_write +EXPORT_SYMBOL fs/fscache/fscache 0x61e48ee2 fscache_object_mark_killed +EXPORT_SYMBOL fs/fscache/fscache 0x63b2a6e3 fscache_operation_init +EXPORT_SYMBOL fs/fscache/fscache 0x67678eb7 __fscache_uncache_page EXPORT_SYMBOL fs/fscache/fscache 0x6acefa42 fscache_cache_cleared_wq -EXPORT_SYMBOL fs/fscache/fscache 0x6d7bc2ee __fscache_relinquish_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x706c1d11 fscache_object_destroy +EXPORT_SYMBOL fs/fscache/fscache 0x6e47991b fscache_fsdef_index EXPORT_SYMBOL fs/fscache/fscache 0x74530ecd fscache_op_debug_id -EXPORT_SYMBOL fs/fscache/fscache 0x82745538 __fscache_read_or_alloc_page -EXPORT_SYMBOL fs/fscache/fscache 0x883dd0ff __fscache_wait_on_invalidate -EXPORT_SYMBOL fs/fscache/fscache 0x90b3e440 fscache_io_error -EXPORT_SYMBOL fs/fscache/fscache 0x94d37ce8 fscache_fsdef_index -EXPORT_SYMBOL fs/fscache/fscache 0xa63e6a6e __fscache_read_or_alloc_pages -EXPORT_SYMBOL fs/fscache/fscache 0xb33c80dc __fscache_begin_read_operation -EXPORT_SYMBOL fs/fscache/fscache 0xb6c264c4 __fscache_attr_changed -EXPORT_SYMBOL fs/fscache/fscache 0xb94f7958 fscache_object_mark_killed -EXPORT_SYMBOL fs/fscache/fscache 0xc0cc413a __fscache_unregister_netfs -EXPORT_SYMBOL fs/fscache/fscache 0xc2b3439c fscache_object_lookup_negative -EXPORT_SYMBOL fs/fscache/fscache 0xc3af19c9 fscache_mark_page_cached -EXPORT_SYMBOL fs/fscache/fscache 0xd6e6be9c __fscache_alloc_page -EXPORT_SYMBOL fs/fscache/fscache 0xd742d6a1 fscache_put_operation -EXPORT_SYMBOL fs/fscache/fscache 0xe5b73fc0 __fscache_wait_on_page_write -EXPORT_SYMBOL fs/fscache/fscache 0xee25ba5b __fscache_invalidate -EXPORT_SYMBOL fs/fscache/fscache 0xef070f86 fscache_init_cache -EXPORT_SYMBOL fs/fscache/fscache 0xf5f0185b __fscache_update_cookie -EXPORT_SYMBOL fs/fscache/fscache 0xf64109d5 __fscache_uncache_all_inode_pages -EXPORT_SYMBOL fs/fscache/fscache 0xfb3cf48d fscache_obtained_object -EXPORT_SYMBOL fs/fscache/fscache 0xfccdf72f __fscache_maybe_release_page -EXPORT_SYMBOL fs/netfs/netfs 0x00af6b10 netfs_subreq_terminated -EXPORT_SYMBOL fs/netfs/netfs 0x1054ecd6 netfs_readahead -EXPORT_SYMBOL fs/netfs/netfs 0x39dbbe1e netfs_readpage -EXPORT_SYMBOL fs/netfs/netfs 0xa3d57471 netfs_write_begin -EXPORT_SYMBOL fs/netfs/netfs 0xe4aa496e netfs_stats_show +EXPORT_SYMBOL fs/fscache/fscache 0x7deec854 __fscache_update_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x7e819250 __fscache_wait_on_page_write +EXPORT_SYMBOL fs/fscache/fscache 0x82eedd59 __fscache_uncache_all_inode_pages +EXPORT_SYMBOL fs/fscache/fscache 0x83c95576 fscache_object_retrying_stale +EXPORT_SYMBOL fs/fscache/fscache 0x84f039e5 fscache_object_destroy +EXPORT_SYMBOL fs/fscache/fscache 0x866eb77c __fscache_acquire_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x88eee70d fscache_check_aux +EXPORT_SYMBOL fs/fscache/fscache 0x8962b046 fscache_obtained_object +EXPORT_SYMBOL fs/fscache/fscache 0x8c802547 __fscache_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0x8f8578e2 __fscache_readpages_cancel +EXPORT_SYMBOL fs/fscache/fscache 0x91c37a1a __fscache_register_netfs +EXPORT_SYMBOL fs/fscache/fscache 0x95b4b171 fscache_withdraw_cache +EXPORT_SYMBOL fs/fscache/fscache 0x9e528d50 fscache_mark_page_cached +EXPORT_SYMBOL fs/fscache/fscache 0xa454bc1b __fscache_maybe_release_page +EXPORT_SYMBOL fs/fscache/fscache 0xa4e7f358 __fscache_disable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xb4fb0e0a __fscache_relinquish_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xbab461a2 __fscache_read_or_alloc_pages +EXPORT_SYMBOL fs/fscache/fscache 0xbc9d7141 fscache_init_cache +EXPORT_SYMBOL fs/fscache/fscache 0xcc16e90b __fscache_unregister_netfs +EXPORT_SYMBOL fs/fscache/fscache 0xce7fe91c __fscache_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0xd25722ea fscache_add_cache +EXPORT_SYMBOL fs/fscache/fscache 0xd5daaf27 fscache_op_complete +EXPORT_SYMBOL fs/fscache/fscache 0xdeb2f19e __fscache_write_page +EXPORT_SYMBOL fs/fscache/fscache 0xe93fef98 __fscache_enable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xeb757630 fscache_mark_pages_cached +EXPORT_SYMBOL fs/netfs/netfs 0x184fc290 netfs_subreq_terminated +EXPORT_SYMBOL fs/netfs/netfs 0x4e312536 netfs_readahead +EXPORT_SYMBOL fs/netfs/netfs 0xb417cca7 netfs_write_begin +EXPORT_SYMBOL fs/netfs/netfs 0xcd168e1a netfs_stats_show +EXPORT_SYMBOL fs/netfs/netfs 0xfa085764 netfs_readpage EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active -EXPORT_SYMBOL fs/quota/quota_tree 0x425b279d qtree_entry_unused -EXPORT_SYMBOL fs/quota/quota_tree 0x6a56e1ae qtree_release_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0xba3137ef qtree_write_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0xccd4123b qtree_delete_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0xcf4e7e69 qtree_get_next_id -EXPORT_SYMBOL fs/quota/quota_tree 0xf7c3c8e7 qtree_read_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x1bd0748d qtree_delete_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x31fc16c7 qtree_read_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x9600e38a qtree_release_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xbd5d70b1 qtree_write_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xd08279e1 qtree_get_next_id +EXPORT_SYMBOL fs/quota/quota_tree 0xf26b77ab qtree_entry_unused 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 @@ -4850,7 +4853,7 @@ EXPORT_SYMBOL lib/libcrc32c 0xb15b4109 crc32c EXPORT_SYMBOL lib/lru_cache 0x0641307b lc_destroy EXPORT_SYMBOL lib/lru_cache 0x098d2ed9 lc_try_get -EXPORT_SYMBOL lib/lru_cache 0x1ff8317c lc_seq_printf_stats +EXPORT_SYMBOL lib/lru_cache 0x2ab33076 lc_seq_printf_stats EXPORT_SYMBOL lib/lru_cache 0x2d47ac83 lc_committed EXPORT_SYMBOL lib/lru_cache 0x2f3dcecb lc_index_of EXPORT_SYMBOL lib/lru_cache 0x4522d82a lc_reset @@ -4859,11 +4862,11 @@ EXPORT_SYMBOL lib/lru_cache 0x7257beee lc_element_by_index EXPORT_SYMBOL lib/lru_cache 0x9134feb7 lc_get EXPORT_SYMBOL lib/lru_cache 0xb672aa97 lc_create +EXPORT_SYMBOL lib/lru_cache 0xbaf8d2d5 lc_seq_dump_details EXPORT_SYMBOL lib/lru_cache 0xbfbe53d5 lc_get_cumulative EXPORT_SYMBOL lib/lru_cache 0xc3a98c1d lc_try_lock EXPORT_SYMBOL lib/lru_cache 0xcc979a91 lc_set EXPORT_SYMBOL lib/lru_cache 0xefec290a lc_find -EXPORT_SYMBOL lib/lru_cache 0xf547ffb5 lc_seq_dump_details EXPORT_SYMBOL lib/lru_cache 0xfd525ec7 lc_put EXPORT_SYMBOL lib/lz4/lz4_compress 0x4f4d78c5 LZ4_compress_default EXPORT_SYMBOL lib/lz4/lz4_compress 0x5bc92e85 LZ4_compress_destSize @@ -4932,816 +4935,817 @@ EXPORT_SYMBOL lib/zstd/zstd_compress 0xefe4f679 ZSTD_CCtxWorkspaceBound EXPORT_SYMBOL lib/zstd/zstd_compress 0xfdf70093 ZSTD_CStreamOutSize EXPORT_SYMBOL lib/zstd/zstd_compress 0xff9c4b56 ZSTD_compressBound -EXPORT_SYMBOL net/6lowpan/6lowpan 0x20e14395 lowpan_nhc_del -EXPORT_SYMBOL net/6lowpan/6lowpan 0x38118d6d lowpan_unregister_netdevice -EXPORT_SYMBOL net/6lowpan/6lowpan 0x562315cd lowpan_unregister_netdev -EXPORT_SYMBOL net/6lowpan/6lowpan 0x56fd5e02 lowpan_register_netdev -EXPORT_SYMBOL net/6lowpan/6lowpan 0xb0cc124a lowpan_register_netdevice -EXPORT_SYMBOL net/6lowpan/6lowpan 0xe8df1332 lowpan_nhc_add -EXPORT_SYMBOL net/802/p8022 0x46c7e38e register_8022_client -EXPORT_SYMBOL net/802/p8022 0xefc37d06 unregister_8022_client -EXPORT_SYMBOL net/802/psnap 0x6dd9f56e register_snap_client -EXPORT_SYMBOL net/802/psnap 0xaff43663 unregister_snap_client -EXPORT_SYMBOL net/9p/9pnet 0x010b47b4 p9_client_fsync -EXPORT_SYMBOL net/9p/9pnet 0x0aada565 p9_client_setattr +EXPORT_SYMBOL net/6lowpan/6lowpan 0x832d508d lowpan_nhc_del +EXPORT_SYMBOL net/6lowpan/6lowpan 0x9845813b lowpan_register_netdev +EXPORT_SYMBOL net/6lowpan/6lowpan 0xc3f43f28 lowpan_unregister_netdev +EXPORT_SYMBOL net/6lowpan/6lowpan 0xdc18798f lowpan_register_netdevice +EXPORT_SYMBOL net/6lowpan/6lowpan 0xe689b0a9 lowpan_nhc_add +EXPORT_SYMBOL net/6lowpan/6lowpan 0xef92ec82 lowpan_unregister_netdevice +EXPORT_SYMBOL net/802/p8022 0x1ca1ff4a register_8022_client +EXPORT_SYMBOL net/802/p8022 0x72ed14d7 unregister_8022_client +EXPORT_SYMBOL net/802/psnap 0x3b725eb0 unregister_snap_client +EXPORT_SYMBOL net/802/psnap 0x9f457134 register_snap_client +EXPORT_SYMBOL net/9p/9pnet 0x08a0776d p9_client_fsync +EXPORT_SYMBOL net/9p/9pnet 0x0a822b25 p9_release_pages EXPORT_SYMBOL net/9p/9pnet 0x1430723c p9_req_put -EXPORT_SYMBOL net/9p/9pnet 0x16f3d2af p9_client_fcreate -EXPORT_SYMBOL net/9p/9pnet 0x20b989ea p9_client_rename -EXPORT_SYMBOL net/9p/9pnet 0x24aeb959 p9_client_clunk -EXPORT_SYMBOL net/9p/9pnet 0x29813cf3 v9fs_get_trans_by_name -EXPORT_SYMBOL net/9p/9pnet 0x2d00b082 p9_client_create -EXPORT_SYMBOL net/9p/9pnet 0x2d8fbe1f p9_client_readdir -EXPORT_SYMBOL net/9p/9pnet 0x351029b1 p9_client_destroy -EXPORT_SYMBOL net/9p/9pnet 0x35cbef6f v9fs_unregister_trans +EXPORT_SYMBOL net/9p/9pnet 0x166d3a03 v9fs_unregister_trans +EXPORT_SYMBOL net/9p/9pnet 0x1a862cc6 p9_tag_lookup +EXPORT_SYMBOL net/9p/9pnet 0x212f9310 p9_client_statfs +EXPORT_SYMBOL net/9p/9pnet 0x34cd8d41 p9_client_disconnect +EXPORT_SYMBOL net/9p/9pnet 0x39546015 p9_client_lock_dotl EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno +EXPORT_SYMBOL net/9p/9pnet 0x3e4a39f0 p9_client_stat EXPORT_SYMBOL net/9p/9pnet 0x41ce9823 p9stat_read -EXPORT_SYMBOL net/9p/9pnet 0x45848578 p9_client_unlinkat -EXPORT_SYMBOL net/9p/9pnet 0x49e85ec3 p9_is_proto_dotu -EXPORT_SYMBOL net/9p/9pnet 0x4be4dbde p9_client_readlink -EXPORT_SYMBOL net/9p/9pnet 0x4d472b5b p9_show_client_options -EXPORT_SYMBOL net/9p/9pnet 0x4dd93850 p9_client_link -EXPORT_SYMBOL net/9p/9pnet 0x52477495 p9_client_write -EXPORT_SYMBOL net/9p/9pnet 0x5c2f9fc6 p9_client_wstat -EXPORT_SYMBOL net/9p/9pnet 0x5c980645 p9_release_pages -EXPORT_SYMBOL net/9p/9pnet 0x5fe0695d p9_client_create_dotl -EXPORT_SYMBOL net/9p/9pnet 0x6e58648c p9_client_lock_dotl -EXPORT_SYMBOL net/9p/9pnet 0x6e9785ac p9_is_proto_dotl -EXPORT_SYMBOL net/9p/9pnet 0x70e2c7a4 p9_client_read -EXPORT_SYMBOL net/9p/9pnet 0x725fa671 p9_client_walk -EXPORT_SYMBOL net/9p/9pnet 0x7783db24 p9_client_open -EXPORT_SYMBOL net/9p/9pnet 0x87eda2db p9_client_begin_disconnect -EXPORT_SYMBOL net/9p/9pnet 0x8980b939 p9_client_getattr_dotl -EXPORT_SYMBOL net/9p/9pnet 0x8cb27abf p9_client_statfs +EXPORT_SYMBOL net/9p/9pnet 0x42ee1e29 p9_is_proto_dotl +EXPORT_SYMBOL net/9p/9pnet 0x48d5d416 p9_client_cb +EXPORT_SYMBOL net/9p/9pnet 0x4c6bfa99 p9_client_mkdir_dotl +EXPORT_SYMBOL net/9p/9pnet 0x4d2e656d p9_client_link +EXPORT_SYMBOL net/9p/9pnet 0x4eb6ac21 p9_client_write +EXPORT_SYMBOL net/9p/9pnet 0x51285660 p9_client_readdir +EXPORT_SYMBOL net/9p/9pnet 0x741d6588 p9_client_create_dotl +EXPORT_SYMBOL net/9p/9pnet 0x85375c1b p9_client_begin_disconnect +EXPORT_SYMBOL net/9p/9pnet 0x86f2cbf3 p9_client_mknod_dotl +EXPORT_SYMBOL net/9p/9pnet 0x8924edfd p9_client_setattr +EXPORT_SYMBOL net/9p/9pnet 0x89487e07 v9fs_get_default_trans +EXPORT_SYMBOL net/9p/9pnet 0x8b98bdd2 v9fs_register_trans +EXPORT_SYMBOL net/9p/9pnet 0x944bfdc1 p9_client_read_once EXPORT_SYMBOL net/9p/9pnet 0x95bd8f96 p9dirent_read -EXPORT_SYMBOL net/9p/9pnet 0x975d5c53 p9_tag_lookup +EXPORT_SYMBOL net/9p/9pnet 0x9758bbd7 p9_client_getattr_dotl EXPORT_SYMBOL net/9p/9pnet 0x984c5e73 p9_fcall_fini -EXPORT_SYMBOL net/9p/9pnet 0x9aaa9358 p9_client_attach -EXPORT_SYMBOL net/9p/9pnet 0x9b3bc795 p9_client_cb -EXPORT_SYMBOL net/9p/9pnet 0xa5bd175a p9_client_stat -EXPORT_SYMBOL net/9p/9pnet 0xa6ba629f p9_client_remove -EXPORT_SYMBOL net/9p/9pnet 0xad72ed65 p9_client_disconnect +EXPORT_SYMBOL net/9p/9pnet 0xa0d82a46 p9_client_attach +EXPORT_SYMBOL net/9p/9pnet 0xa76919b2 p9_client_symlink +EXPORT_SYMBOL net/9p/9pnet 0xaea81f6e v9fs_get_trans_by_name +EXPORT_SYMBOL net/9p/9pnet 0xb3dec2da p9_client_open +EXPORT_SYMBOL net/9p/9pnet 0xb5b77610 p9_client_walk +EXPORT_SYMBOL net/9p/9pnet 0xb65ec0b7 p9_client_rename EXPORT_SYMBOL net/9p/9pnet 0xb79f25fd p9_parse_header -EXPORT_SYMBOL net/9p/9pnet 0xbdf35a33 v9fs_get_default_trans -EXPORT_SYMBOL net/9p/9pnet 0xc21ab067 p9_client_renameat -EXPORT_SYMBOL net/9p/9pnet 0xca722d64 v9fs_register_trans -EXPORT_SYMBOL net/9p/9pnet 0xcc2ceca9 p9_client_mkdir_dotl -EXPORT_SYMBOL net/9p/9pnet 0xd247ca16 p9_client_getlock_dotl +EXPORT_SYMBOL net/9p/9pnet 0xbc5048f9 p9_client_remove +EXPORT_SYMBOL net/9p/9pnet 0xd0182800 p9_is_proto_dotu EXPORT_SYMBOL net/9p/9pnet 0xd384c683 p9stat_free -EXPORT_SYMBOL net/9p/9pnet 0xdae9e87c p9_client_mknod_dotl -EXPORT_SYMBOL net/9p/9pnet 0xe3b21f8d p9_client_read_once +EXPORT_SYMBOL net/9p/9pnet 0xd8d6a787 p9_client_clunk +EXPORT_SYMBOL net/9p/9pnet 0xd8e4f1ef p9_client_create +EXPORT_SYMBOL net/9p/9pnet 0xdaddc7ab p9_client_unlinkat +EXPORT_SYMBOL net/9p/9pnet 0xdb8a2bc3 p9_client_wstat EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init -EXPORT_SYMBOL net/9p/9pnet 0xfab04f56 p9_client_symlink -EXPORT_SYMBOL net/appletalk/appletalk 0x0c447be3 alloc_ltalkdev -EXPORT_SYMBOL net/appletalk/appletalk 0x94866300 aarp_send_ddp -EXPORT_SYMBOL net/appletalk/appletalk 0x98aa6b8d atrtr_get_dev -EXPORT_SYMBOL net/appletalk/appletalk 0xfcf8cb88 atalk_find_dev_addr -EXPORT_SYMBOL net/atm/atm 0x19be8ead atm_dev_release_vccs -EXPORT_SYMBOL net/atm/atm 0x228c83f9 atm_dev_lookup -EXPORT_SYMBOL net/atm/atm 0x278929ae vcc_release_async -EXPORT_SYMBOL net/atm/atm 0x29b29415 vcc_insert_socket +EXPORT_SYMBOL net/9p/9pnet 0xe5c088ca p9_client_read +EXPORT_SYMBOL net/9p/9pnet 0xe5fd310b p9_client_renameat +EXPORT_SYMBOL net/9p/9pnet 0xe7b28ff5 p9_client_fcreate +EXPORT_SYMBOL net/9p/9pnet 0xf4d6ffc0 p9_client_getlock_dotl +EXPORT_SYMBOL net/9p/9pnet 0xf5ab9aaf p9_client_destroy +EXPORT_SYMBOL net/9p/9pnet 0xf82e6978 p9_show_client_options +EXPORT_SYMBOL net/9p/9pnet 0xfdec71ed p9_client_readlink +EXPORT_SYMBOL net/appletalk/appletalk 0x5db93ca3 atrtr_get_dev +EXPORT_SYMBOL net/appletalk/appletalk 0x922ff222 aarp_send_ddp +EXPORT_SYMBOL net/appletalk/appletalk 0x92c0b504 atalk_find_dev_addr +EXPORT_SYMBOL net/appletalk/appletalk 0xa23739db alloc_ltalkdev +EXPORT_SYMBOL net/atm/atm 0x09c385d7 register_atm_ioctl EXPORT_SYMBOL net/atm/atm 0x2cc2d52d vcc_hash -EXPORT_SYMBOL net/atm/atm 0x3179ec5a atm_dev_signal_change +EXPORT_SYMBOL net/atm/atm 0x30779312 atm_dev_lookup +EXPORT_SYMBOL net/atm/atm 0x32352ef2 vcc_release_async +EXPORT_SYMBOL net/atm/atm 0x39953a62 atm_dev_register EXPORT_SYMBOL net/atm/atm 0x4443d399 atm_proc_root EXPORT_SYMBOL net/atm/atm 0x44c6e633 vcc_sklist_lock -EXPORT_SYMBOL net/atm/atm 0x50afb616 deregister_atm_ioctl -EXPORT_SYMBOL net/atm/atm 0x5bd1f70a atm_dev_deregister -EXPORT_SYMBOL net/atm/atm 0x6130f3bf register_atm_ioctl -EXPORT_SYMBOL net/atm/atm 0x653a8a86 atm_charge -EXPORT_SYMBOL net/atm/atm 0x6abd2f92 atm_dev_register -EXPORT_SYMBOL net/atm/atm 0x80252d2a atm_alloc_charge -EXPORT_SYMBOL net/atm/atm 0x8830d2ef vcc_process_recv_queue +EXPORT_SYMBOL net/atm/atm 0x4f2d79af atm_dev_deregister +EXPORT_SYMBOL net/atm/atm 0x61190f7a deregister_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0x6144e4c5 vcc_insert_socket +EXPORT_SYMBOL net/atm/atm 0x6dca1f22 vcc_process_recv_queue +EXPORT_SYMBOL net/atm/atm 0x786101b6 atm_charge +EXPORT_SYMBOL net/atm/atm 0x87fac34d atm_init_aal5 EXPORT_SYMBOL net/atm/atm 0x9feaf287 sonet_subtract_stats +EXPORT_SYMBOL net/atm/atm 0xa9d9041e atm_dev_release_vccs EXPORT_SYMBOL net/atm/atm 0xaa024146 sonet_copy_stats -EXPORT_SYMBOL net/atm/atm 0xee813ebe atm_init_aal5 +EXPORT_SYMBOL net/atm/atm 0xb4ba2310 atm_alloc_charge +EXPORT_SYMBOL net/atm/atm 0xbc4a9406 atm_dev_signal_change EXPORT_SYMBOL net/atm/atm 0xf49bc67a atm_pcr_goal +EXPORT_SYMBOL net/ax25/ax25 0x0daa7306 ax25_listen_release EXPORT_SYMBOL net/ax25/ax25 0x14cecd59 ax25_display_timer +EXPORT_SYMBOL net/ax25/ax25 0x1e520d51 ax25_find_cb EXPORT_SYMBOL net/ax25/ax25 0x242852b9 ax25_uid_policy +EXPORT_SYMBOL net/ax25/ax25 0x4276803d ax25_ip_xmit EXPORT_SYMBOL net/ax25/ax25 0x4502c65a asc2ax -EXPORT_SYMBOL net/ax25/ax25 0x492aef35 ax25_header_ops EXPORT_SYMBOL net/ax25/ax25 0x53dea1ff ax2asc -EXPORT_SYMBOL net/ax25/ax25 0x56dcdc12 ax25_listen_release -EXPORT_SYMBOL net/ax25/ax25 0x575ccd54 ax25_ip_xmit -EXPORT_SYMBOL net/ax25/ax25 0x5a206fa2 ax25_listen_register -EXPORT_SYMBOL net/ax25/ax25 0x75e122bf ax25_linkfail_release +EXPORT_SYMBOL net/ax25/ax25 0x6292a483 ax25_listen_register +EXPORT_SYMBOL net/ax25/ax25 0x83754887 ax25_header_ops +EXPORT_SYMBOL net/ax25/ax25 0x8b3d8ea6 ax25_send_frame EXPORT_SYMBOL net/ax25/ax25 0x8ede9e26 ax25_protocol_release -EXPORT_SYMBOL net/ax25/ax25 0xaa81fef1 ax25_find_cb +EXPORT_SYMBOL net/ax25/ax25 0xb1696c56 ax25_linkfail_register EXPORT_SYMBOL net/ax25/ax25 0xc1444946 ax25cmp -EXPORT_SYMBOL net/ax25/ax25 0xce6db430 ax25_send_frame EXPORT_SYMBOL net/ax25/ax25 0xd43ecbf1 null_ax25_address +EXPORT_SYMBOL net/ax25/ax25 0xe05b3815 ax25_linkfail_release EXPORT_SYMBOL net/ax25/ax25 0xee02e420 ax25_findbyuid -EXPORT_SYMBOL net/ax25/ax25 0xfce7f158 ax25_linkfail_register -EXPORT_SYMBOL net/bluetooth/bluetooth 0x0682d57c hci_conn_security +EXPORT_SYMBOL net/bluetooth/bluetooth 0x028621dd bt_sock_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0x03b797a9 bt_procfs_init +EXPORT_SYMBOL net/bluetooth/bluetooth 0x04ecd99b hci_unregister_cb EXPORT_SYMBOL net/bluetooth/bluetooth 0x0718b8b7 bt_info -EXPORT_SYMBOL net/bluetooth/bluetooth 0x0a220ce1 bt_sock_ioctl -EXPORT_SYMBOL net/bluetooth/bluetooth 0x0a37189f hci_reset_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x133601b4 bt_accept_dequeue -EXPORT_SYMBOL net/bluetooth/bluetooth 0x177d6c8e bt_sock_link -EXPORT_SYMBOL net/bluetooth/bluetooth 0x1c2be673 hci_alloc_dev_priv -EXPORT_SYMBOL net/bluetooth/bluetooth 0x20fe2ec4 hci_release_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x09d1899c hci_unregister_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x12ee7f0f l2cap_is_socket +EXPORT_SYMBOL net/bluetooth/bluetooth 0x1401de0a hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0x203f34f5 __hci_cmd_sync_ev EXPORT_SYMBOL net/bluetooth/bluetooth 0x214e4265 bt_warn -EXPORT_SYMBOL net/bluetooth/bluetooth 0x2291479d bt_accept_enqueue -EXPORT_SYMBOL net/bluetooth/bluetooth 0x2294c0ab hci_conn_switch_role -EXPORT_SYMBOL net/bluetooth/bluetooth 0x257f47c5 hci_mgmt_chan_register -EXPORT_SYMBOL net/bluetooth/bluetooth 0x2b59b170 hci_recv_frame -EXPORT_SYMBOL net/bluetooth/bluetooth 0x2f696c1e hci_unregister_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x3262a9f7 l2cap_conn_put -EXPORT_SYMBOL net/bluetooth/bluetooth 0x35aef14e l2cap_unregister_user -EXPORT_SYMBOL net/bluetooth/bluetooth 0x37e48e71 l2cap_conn_get -EXPORT_SYMBOL net/bluetooth/bluetooth 0x3e03820c bt_procfs_init -EXPORT_SYMBOL net/bluetooth/bluetooth 0x3ed9f1ef hci_free_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x3fe9f49f hci_register_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x45e3ea0f hci_unregister_cb -EXPORT_SYMBOL net/bluetooth/bluetooth 0x55db3f9e bt_sock_unlink -EXPORT_SYMBOL net/bluetooth/bluetooth 0x5863461b hci_mgmt_chan_unregister -EXPORT_SYMBOL net/bluetooth/bluetooth 0x5a107644 bt_sock_wait_state -EXPORT_SYMBOL net/bluetooth/bluetooth 0x68ba3642 bt_sock_recvmsg -EXPORT_SYMBOL net/bluetooth/bluetooth 0x6a61d859 bt_sock_poll -EXPORT_SYMBOL net/bluetooth/bluetooth 0x6ae41eef __hci_cmd_send -EXPORT_SYMBOL net/bluetooth/bluetooth 0x707276f2 hci_resume_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x72872007 __hci_cmd_sync -EXPORT_SYMBOL net/bluetooth/bluetooth 0x774cef66 hci_set_fw_info -EXPORT_SYMBOL net/bluetooth/bluetooth 0x7861dc1b bt_procfs_cleanup +EXPORT_SYMBOL net/bluetooth/bluetooth 0x24c51edc bt_sock_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0x28effd19 hci_conn_security +EXPORT_SYMBOL net/bluetooth/bluetooth 0x29198b14 hci_suspend_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3c194cd0 bt_sock_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0x528da7c5 hci_reset_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x58f2eca5 hci_release_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x63e60400 bt_accept_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0x66cb99c6 hci_recv_diag +EXPORT_SYMBOL net/bluetooth/bluetooth 0x6cc0f06d bt_sock_wait_ready +EXPORT_SYMBOL net/bluetooth/bluetooth 0x79fefb82 hci_get_route 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 0x7e51740d l2cap_chan_close -EXPORT_SYMBOL net/bluetooth/bluetooth 0x802cdac7 bt_sock_wait_ready -EXPORT_SYMBOL net/bluetooth/bluetooth 0x85890c03 hci_suspend_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x8e893f6c bt_sock_reclassify_lock +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7fb41ac1 hci_mgmt_chan_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0x83734c66 bt_sock_link +EXPORT_SYMBOL net/bluetooth/bluetooth 0x838f799d hci_set_hw_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8ad76bae bt_sock_poll +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8e4a43be hci_resume_dev EXPORT_SYMBOL net/bluetooth/bluetooth 0x8fea24bd bt_sock_unregister -EXPORT_SYMBOL net/bluetooth/bluetooth 0x9b566d7e bt_sock_stream_recvmsg -EXPORT_SYMBOL net/bluetooth/bluetooth 0x9ed84059 bt_accept_unlink -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb33f853e hci_cmd_sync -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb37f040d hci_conn_check_secure -EXPORT_SYMBOL net/bluetooth/bluetooth 0xbfb136c1 hci_get_route -EXPORT_SYMBOL net/bluetooth/bluetooth 0xc5b8cbd9 bt_sock_register -EXPORT_SYMBOL net/bluetooth/bluetooth 0xc65ff4ce l2cap_register_user -EXPORT_SYMBOL net/bluetooth/bluetooth 0xcbabd2d0 __hci_cmd_sync_ev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xd0ac869e l2cap_is_socket -EXPORT_SYMBOL net/bluetooth/bluetooth 0xd607dc1d hci_register_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0x931afd31 bt_sock_wait_state +EXPORT_SYMBOL net/bluetooth/bluetooth 0x9df9d31a bt_accept_enqueue +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa59ae088 hci_mgmt_chan_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa895feb9 l2cap_register_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa9be4bc4 bt_accept_dequeue +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb79fa6e6 hci_conn_check_secure +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb92bd2fc hci_register_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xbb82197c hci_set_fw_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0xbed6ca64 bt_procfs_cleanup +EXPORT_SYMBOL net/bluetooth/bluetooth 0xcc2b4df2 l2cap_conn_put +EXPORT_SYMBOL net/bluetooth/bluetooth 0xce9565f2 __hci_cmd_send +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd08f8129 __hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd6be7f60 bt_sock_ioctl EXPORT_SYMBOL net/bluetooth/bluetooth 0xd7613212 bt_err_ratelimited +EXPORT_SYMBOL net/bluetooth/bluetooth 0xdc5257c4 l2cap_unregister_user EXPORT_SYMBOL net/bluetooth/bluetooth 0xddacccf6 bt_warn_ratelimited -EXPORT_SYMBOL net/bluetooth/bluetooth 0xe69dbfd6 hci_recv_diag -EXPORT_SYMBOL net/bluetooth/bluetooth 0xf3cf222f hci_set_hw_info -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x0ecbf12e ebt_register_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x1c873a38 ebt_unregister_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x410da4ff ebt_unregister_template -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x4a584550 ebt_register_template -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xd0bb4769 ebt_do_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xea920600 ebt_unregister_table_pre_exit +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe0eb1282 hci_free_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe532ef03 l2cap_chan_close +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe76b57e5 hci_register_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf0252273 hci_conn_switch_role +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf0863fab bt_sock_stream_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf0c63373 hci_recv_frame +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf209c79d hci_alloc_dev_priv +EXPORT_SYMBOL net/bluetooth/bluetooth 0xfd92a275 bt_sock_reclassify_lock +EXPORT_SYMBOL net/bluetooth/bluetooth 0xfe5bccf5 l2cap_conn_get +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x56e0f949 ebt_unregister_table_pre_exit +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x64fc92ac ebt_unregister_template +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x9ff1233b ebt_register_template +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xad98e383 ebt_unregister_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xb0ee7eb9 ebt_do_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xbf39fba1 ebt_register_table +EXPORT_SYMBOL net/caif/caif 0x05746a53 caif_connect_client EXPORT_SYMBOL net/caif/caif 0x1446b60a caif_client_register_refcnt -EXPORT_SYMBOL net/caif/caif 0x1ec56a1d caif_disconnect_client +EXPORT_SYMBOL net/caif/caif 0x14914c98 caif_enroll_dev EXPORT_SYMBOL net/caif/caif 0x2a09f713 cfpkt_fromnative EXPORT_SYMBOL net/caif/caif 0x329dbd06 cfpkt_info EXPORT_SYMBOL net/caif/caif 0x38701a7c cfcnfg_del_phy_layer +EXPORT_SYMBOL net/caif/caif 0x3a8ac0f8 cfcnfg_add_phy_layer EXPORT_SYMBOL net/caif/caif 0x3fa84493 cfpkt_add_head EXPORT_SYMBOL net/caif/caif 0x40babbe0 cfpkt_extr_head EXPORT_SYMBOL net/caif/caif 0x4a237e57 cfpkt_tonative -EXPORT_SYMBOL net/caif/caif 0x4f39f938 caif_enroll_dev -EXPORT_SYMBOL net/caif/caif 0x6d054ea6 cfcnfg_add_phy_layer +EXPORT_SYMBOL net/caif/caif 0x7275c0a6 get_cfcnfg EXPORT_SYMBOL net/caif/caif 0x839ddb7b cfcnfg_set_phy_state -EXPORT_SYMBOL net/caif/caif 0x9cbd6952 get_cfcnfg EXPORT_SYMBOL net/caif/caif 0x9e3e305d cfpkt_set_prio EXPORT_SYMBOL net/caif/caif 0xb7b6874e caif_free_client -EXPORT_SYMBOL net/caif/caif 0xbbb199e3 caif_connect_client -EXPORT_SYMBOL net/can/can 0x1bb77404 can_proto_unregister -EXPORT_SYMBOL net/can/can 0x2fc7e259 can_send -EXPORT_SYMBOL net/can/can 0x4abca91c can_rx_unregister -EXPORT_SYMBOL net/can/can 0x7b833016 can_sock_destruct -EXPORT_SYMBOL net/can/can 0x92c553e2 can_proto_register -EXPORT_SYMBOL net/can/can 0xdad264bb can_rx_register -EXPORT_SYMBOL net/ceph/libceph 0x00878eff ceph_msg_new -EXPORT_SYMBOL net/ceph/libceph 0x018fc6b6 ceph_msg_data_add_bio -EXPORT_SYMBOL net/ceph/libceph 0x02c80b2b ceph_msg_put -EXPORT_SYMBOL net/ceph/libceph 0x02f5639c ceph_msg_get -EXPORT_SYMBOL net/ceph/libceph 0x03465c8e ceph_cls_lock_info -EXPORT_SYMBOL net/ceph/libceph 0x03860940 ceph_cls_assert_locked -EXPORT_SYMBOL net/ceph/libceph 0x03d01cdf ceph_monc_got_map +EXPORT_SYMBOL net/caif/caif 0xf711b475 caif_disconnect_client +EXPORT_SYMBOL net/can/can 0x29c3e7a5 can_rx_unregister +EXPORT_SYMBOL net/can/can 0x2b8405f0 can_rx_register +EXPORT_SYMBOL net/can/can 0x35dfb65c can_proto_unregister +EXPORT_SYMBOL net/can/can 0x5873f96c can_sock_destruct +EXPORT_SYMBOL net/can/can 0x71279314 can_send +EXPORT_SYMBOL net/can/can 0x9522ec02 can_proto_register +EXPORT_SYMBOL net/ceph/libceph 0x0369aba5 ceph_put_page_vector EXPORT_SYMBOL net/ceph/libceph 0x04cad6f0 ceph_pg_poolid_by_name -EXPORT_SYMBOL net/ceph/libceph 0x08f5beb6 ceph_monc_stop -EXPORT_SYMBOL net/ceph/libceph 0x0bc640f4 ceph_osdc_alloc_request -EXPORT_SYMBOL net/ceph/libceph 0x0e978b1c ceph_osdc_maybe_request_map -EXPORT_SYMBOL net/ceph/libceph 0x0fca2a05 osd_req_op_cls_request_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x0cab864d ceph_cls_set_cookie +EXPORT_SYMBOL net/ceph/libceph 0x0f2ff86b osd_req_op_cls_request_data_pagelist EXPORT_SYMBOL net/ceph/libceph 0x1378aba3 ceph_pg_pool_name_by_id -EXPORT_SYMBOL net/ceph/libceph 0x16553fe4 osd_req_op_cls_request_data_bvecs 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 0x19ae68b7 osd_req_op_init -EXPORT_SYMBOL net/ceph/libceph 0x1ba5a2dc osd_req_op_extent_osd_data -EXPORT_SYMBOL net/ceph/libceph 0x1d2d4e62 ceph_osdc_list_watchers +EXPORT_SYMBOL net/ceph/libceph 0x190cee23 ceph_cls_lock +EXPORT_SYMBOL net/ceph/libceph 0x1bbe61b1 ceph_auth_handle_bad_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x1e6ae6c0 ceph_con_init +EXPORT_SYMBOL net/ceph/libceph 0x20069029 ceph_osdc_sync +EXPORT_SYMBOL net/ceph/libceph 0x20189306 ceph_client_gid +EXPORT_SYMBOL net/ceph/libceph 0x206d4141 osd_req_op_extent_dup_last EXPORT_SYMBOL net/ceph/libceph 0x2087719e ceph_oid_copy EXPORT_SYMBOL net/ceph/libceph 0x2101cbc9 ceph_oid_destroy -EXPORT_SYMBOL net/ceph/libceph 0x284c5c57 ceph_monc_renew_subs +EXPORT_SYMBOL net/ceph/libceph 0x22570fea ceph_msg_data_add_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x2407fc69 osd_req_op_extent_osd_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x2519f241 ceph_parse_mon_ips +EXPORT_SYMBOL net/ceph/libceph 0x2792dfa0 osd_req_op_alloc_hint_init EXPORT_SYMBOL net/ceph/libceph 0x2a983d26 ceph_pagelist_release -EXPORT_SYMBOL net/ceph/libceph 0x2c4a1798 ceph_destroy_client -EXPORT_SYMBOL net/ceph/libceph 0x2d0f0ede ceph_monc_init -EXPORT_SYMBOL net/ceph/libceph 0x2e83c7b5 ceph_con_open -EXPORT_SYMBOL net/ceph/libceph 0x36b2cde9 osd_req_op_extent_init +EXPORT_SYMBOL net/ceph/libceph 0x2cc451c0 osd_req_op_extent_osd_data_bvecs +EXPORT_SYMBOL net/ceph/libceph 0x2d6789dc ceph_cls_unlock +EXPORT_SYMBOL net/ceph/libceph 0x2f5129b9 ceph_osdc_list_watchers +EXPORT_SYMBOL net/ceph/libceph 0x33a27493 ceph_msg_new +EXPORT_SYMBOL net/ceph/libceph 0x34796b55 osd_req_op_extent_update EXPORT_SYMBOL net/ceph/libceph 0x38f2d94e ceph_file_to_extents -EXPORT_SYMBOL net/ceph/libceph 0x393a0109 ceph_osdc_watch -EXPORT_SYMBOL net/ceph/libceph 0x3ac0535f osd_req_op_cls_request_data_pages -EXPORT_SYMBOL net/ceph/libceph 0x3ad536db ceph_put_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x3c14bfb3 ceph_osdc_call EXPORT_SYMBOL net/ceph/libceph 0x3c8d7111 ceph_get_num_objects -EXPORT_SYMBOL net/ceph/libceph 0x3d894f47 ceph_monc_want_map -EXPORT_SYMBOL net/ceph/libceph 0x3e53d75f ceph_osdc_cancel_request +EXPORT_SYMBOL net/ceph/libceph 0x40221472 ceph_copy_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x405112c3 ceph_msg_new2 EXPORT_SYMBOL net/ceph/libceph 0x417a9131 ceph_oloc_destroy -EXPORT_SYMBOL net/ceph/libceph 0x42a4f8e2 ceph_release_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x43717b70 ceph_osdc_get_request +EXPORT_SYMBOL net/ceph/libceph 0x41b30b94 osd_req_op_extent_osd_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x42efe7b4 ceph_osdc_abort_requests +EXPORT_SYMBOL net/ceph/libceph 0x4468ff3f ceph_parse_param +EXPORT_SYMBOL net/ceph/libceph 0x458d0ea9 ceph_osdc_new_request EXPORT_SYMBOL net/ceph/libceph 0x466b85b8 libceph_compatible -EXPORT_SYMBOL net/ceph/libceph 0x4763d409 ceph_parse_param -EXPORT_SYMBOL net/ceph/libceph 0x4789d4f5 ceph_client_addr -EXPORT_SYMBOL net/ceph/libceph 0x4f0c045e ceph_osdc_notify_ack +EXPORT_SYMBOL net/ceph/libceph 0x4b8ea408 ceph_auth_handle_svc_reply_done EXPORT_SYMBOL net/ceph/libceph 0x50603ce3 ceph_decode_entity_addrvec -EXPORT_SYMBOL net/ceph/libceph 0x53f1f916 ceph_msg_new2 +EXPORT_SYMBOL net/ceph/libceph 0x52e2fdd5 ceph_reset_client_addr +EXPORT_SYMBOL net/ceph/libceph 0x55888c44 ceph_osdc_unwatch +EXPORT_SYMBOL net/ceph/libceph 0x5646d156 __ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x56bda5f1 ceph_osdc_start_request EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash +EXPORT_SYMBOL net/ceph/libceph 0x589495d3 ceph_monc_open_session +EXPORT_SYMBOL net/ceph/libceph 0x589c5ae5 ceph_osdc_notify_ack +EXPORT_SYMBOL net/ceph/libceph 0x5a26b0ef ceph_monc_stop EXPORT_SYMBOL net/ceph/libceph 0x5aeeee62 ceph_oid_aprintf -EXPORT_SYMBOL net/ceph/libceph 0x5e3f48e6 ceph_osdc_notify -EXPORT_SYMBOL net/ceph/libceph 0x5e6c22a9 ceph_osdc_update_epoch_barrier -EXPORT_SYMBOL net/ceph/libceph 0x5ef6427b ceph_msg_data_add_pagelist -EXPORT_SYMBOL net/ceph/libceph 0x5f57c197 ceph_compare_options -EXPORT_SYMBOL net/ceph/libceph 0x6052fce9 osd_req_op_alloc_hint_init +EXPORT_SYMBOL net/ceph/libceph 0x5c3ed5f2 ceph_osdc_cancel_request +EXPORT_SYMBOL net/ceph/libceph 0x5dcc4ee7 ceph_osdc_update_epoch_barrier EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name -EXPORT_SYMBOL net/ceph/libceph 0x6431e689 ceph_osdc_put_request -EXPORT_SYMBOL net/ceph/libceph 0x65a0a43c osd_req_op_cls_init -EXPORT_SYMBOL net/ceph/libceph 0x677c9900 ceph_monc_validate_auth -EXPORT_SYMBOL net/ceph/libceph 0x68188fcc osd_req_op_raw_data_in_pages -EXPORT_SYMBOL net/ceph/libceph 0x68ebec21 osd_req_op_extent_osd_data_pages EXPORT_SYMBOL net/ceph/libceph 0x6a7a38a0 ceph_pr_addr -EXPORT_SYMBOL net/ceph/libceph 0x6a9da641 ceph_client_gid -EXPORT_SYMBOL net/ceph/libceph 0x6ddeda9f ceph_msg_dump -EXPORT_SYMBOL net/ceph/libceph 0x71cfba9d ceph_create_client -EXPORT_SYMBOL net/ceph/libceph 0x7540eec5 ceph_msg_data_add_bvecs -EXPORT_SYMBOL net/ceph/libceph 0x76a6d1aa ceph_monc_do_statfs -EXPORT_SYMBOL net/ceph/libceph 0x78f38f9c ceph_cls_lock -EXPORT_SYMBOL net/ceph/libceph 0x7a8783ee ceph_monc_get_version_async -EXPORT_SYMBOL net/ceph/libceph 0x86eac001 ceph_wait_for_latest_osdmap +EXPORT_SYMBOL net/ceph/libceph 0x6e991ecd ceph_osdc_alloc_messages +EXPORT_SYMBOL net/ceph/libceph 0x713a2d88 ceph_release_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x72594947 osd_req_op_extent_osd_data_bio +EXPORT_SYMBOL net/ceph/libceph 0x735eebf4 ceph_monc_validate_auth +EXPORT_SYMBOL net/ceph/libceph 0x74a4f32b ceph_osdc_clear_abort_err +EXPORT_SYMBOL net/ceph/libceph 0x751d34c4 ceph_auth_is_authenticated +EXPORT_SYMBOL net/ceph/libceph 0x77777015 ceph_msg_data_add_bio +EXPORT_SYMBOL net/ceph/libceph 0x77c280c9 ceph_msg_data_add_bvecs +EXPORT_SYMBOL net/ceph/libceph 0x7900647a ceph_msg_data_add_pages +EXPORT_SYMBOL net/ceph/libceph 0x7a659650 osd_req_op_xattr_init +EXPORT_SYMBOL net/ceph/libceph 0x7e99e87b osd_req_op_cls_request_data_bvecs +EXPORT_SYMBOL net/ceph/libceph 0x7f4906d8 ceph_osdc_get_request +EXPORT_SYMBOL net/ceph/libceph 0x83ef0867 ceph_monc_wait_osdmap +EXPORT_SYMBOL net/ceph/libceph 0x850bc1d6 ceph_msg_get EXPORT_SYMBOL net/ceph/libceph 0x86fca7e4 ceph_put_snap_context -EXPORT_SYMBOL net/ceph/libceph 0x8839bf9e ceph_cls_break_lock -EXPORT_SYMBOL net/ceph/libceph 0x88b05916 ceph_osdc_flush_notifies -EXPORT_SYMBOL net/ceph/libceph 0x89fe666e ceph_osdc_start_request -EXPORT_SYMBOL net/ceph/libceph 0x8b3fdf0b ceph_check_fsid -EXPORT_SYMBOL net/ceph/libceph 0x8c137a48 ceph_osdc_clear_abort_err -EXPORT_SYMBOL net/ceph/libceph 0x8c6a795c ceph_auth_handle_bad_authorizer -EXPORT_SYMBOL net/ceph/libceph 0x8f51a64d ceph_copy_from_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x91a6663b ceph_auth_handle_svc_reply_more +EXPORT_SYMBOL net/ceph/libceph 0x8ad6e0af ceph_auth_add_authorizer_challenge +EXPORT_SYMBOL net/ceph/libceph 0x905ddc4b ceph_cls_assert_locked EXPORT_SYMBOL net/ceph/libceph 0x92b7b4ce ceph_pg_pool_flags -EXPORT_SYMBOL net/ceph/libceph 0x9540d818 ceph_osdc_new_request -EXPORT_SYMBOL net/ceph/libceph 0x9582883b osd_req_op_cls_response_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x96f32f31 ceph_osdc_alloc_request EXPORT_SYMBOL net/ceph/libceph 0x987d3968 ceph_alloc_options -EXPORT_SYMBOL net/ceph/libceph 0x9b1a25dd ceph_osdc_call +EXPORT_SYMBOL net/ceph/libceph 0x993034a2 ceph_osdc_copy_from 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 0x9cc3cb10 ceph_osdc_put_request 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 0xa05ffc4c osd_req_op_extent_osd_data +EXPORT_SYMBOL net/ceph/libceph 0xa3c4326a ceph_check_fsid +EXPORT_SYMBOL net/ceph/libceph 0xa6888d92 __ceph_auth_get_authorizer EXPORT_SYMBOL net/ceph/libceph 0xa698f998 ceph_free_lockers -EXPORT_SYMBOL net/ceph/libceph 0xa9e37e15 ceph_auth_handle_svc_reply_done +EXPORT_SYMBOL net/ceph/libceph 0xa838fb15 ceph_cls_break_lock EXPORT_SYMBOL net/ceph/libceph 0xad703657 ceph_auth_destroy_authorizer -EXPORT_SYMBOL net/ceph/libceph 0xae3c5a32 ceph_cls_set_cookie -EXPORT_SYMBOL net/ceph/libceph 0xae5c5953 ceph_osdc_abort_requests -EXPORT_SYMBOL net/ceph/libceph 0xaf93d022 ceph_osdc_unwatch +EXPORT_SYMBOL net/ceph/libceph 0xaf7a42c9 ceph_msg_dump +EXPORT_SYMBOL net/ceph/libceph 0xaf8c7c84 ceph_copy_from_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xafa84362 ceph_osdc_watch EXPORT_SYMBOL net/ceph/libceph 0xafb8a407 ceph_msgr_flush -EXPORT_SYMBOL net/ceph/libceph 0xb3acf041 ceph_print_client_options +EXPORT_SYMBOL net/ceph/libceph 0xb0682681 ceph_auth_invalidate_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xb1e137e2 osd_req_op_raw_data_in_pages +EXPORT_SYMBOL net/ceph/libceph 0xb30476c6 ceph_con_keepalive +EXPORT_SYMBOL net/ceph/libceph 0xb3171d2b ceph_zero_page_vector_range +EXPORT_SYMBOL net/ceph/libceph 0xb3662835 ceph_con_close +EXPORT_SYMBOL net/ceph/libceph 0xb5005d72 ceph_destroy_client EXPORT_SYMBOL net/ceph/libceph 0xb54676fa ceph_msg_type_name -EXPORT_SYMBOL net/ceph/libceph 0xb64c2c98 ceph_open_session -EXPORT_SYMBOL net/ceph/libceph 0xb69a1afa osd_req_op_extent_osd_data_bvec_pos +EXPORT_SYMBOL net/ceph/libceph 0xb6133bc0 ceph_wait_for_latest_osdmap EXPORT_SYMBOL net/ceph/libceph 0xb72c162e ceph_buffer_release -EXPORT_SYMBOL net/ceph/libceph 0xb7512b2f __ceph_open_session -EXPORT_SYMBOL net/ceph/libceph 0xb8630667 ceph_osdc_alloc_messages -EXPORT_SYMBOL net/ceph/libceph 0xba38754f ceph_auth_add_authorizer_challenge -EXPORT_SYMBOL net/ceph/libceph 0xba6b9148 ceph_monc_open_session -EXPORT_SYMBOL net/ceph/libceph 0xba9e57e4 ceph_osdc_copy_from -EXPORT_SYMBOL net/ceph/libceph 0xbb38ca07 ceph_monc_blocklist_add -EXPORT_SYMBOL net/ceph/libceph 0xbc14e4d0 ceph_con_close +EXPORT_SYMBOL net/ceph/libceph 0xb8ff981a ceph_con_send +EXPORT_SYMBOL net/ceph/libceph 0xbae08b1c ceph_print_client_options +EXPORT_SYMBOL net/ceph/libceph 0xbb7c2543 ceph_monc_init +EXPORT_SYMBOL net/ceph/libceph 0xbbec7c55 ceph_msg_put EXPORT_SYMBOL net/ceph/libceph 0xbd2f79ae ceph_oloc_copy -EXPORT_SYMBOL net/ceph/libceph 0xbd5ac2ee ceph_msg_data_add_pages EXPORT_SYMBOL net/ceph/libceph 0xbe3879aa ceph_get_snap_context -EXPORT_SYMBOL net/ceph/libceph 0xc0ee10e4 ceph_monc_get_version -EXPORT_SYMBOL net/ceph/libceph 0xc19d255c ceph_monc_wait_osdmap -EXPORT_SYMBOL net/ceph/libceph 0xc1a105a6 ceph_con_keepalive -EXPORT_SYMBOL net/ceph/libceph 0xc281d1f9 __ceph_auth_get_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xc092c47c osd_req_op_init +EXPORT_SYMBOL net/ceph/libceph 0xc179832a ceph_cls_lock_info +EXPORT_SYMBOL net/ceph/libceph 0xc24822e3 ceph_client_addr EXPORT_SYMBOL net/ceph/libceph 0xc366bfa1 ceph_pagelist_truncate -EXPORT_SYMBOL net/ceph/libceph 0xc65d31f9 ceph_parse_mon_ips -EXPORT_SYMBOL net/ceph/libceph 0xc6709abc ceph_auth_get_authorizer -EXPORT_SYMBOL net/ceph/libceph 0xc7dc93bb ceph_alloc_page_vector -EXPORT_SYMBOL net/ceph/libceph 0xc9330278 ceph_cls_unlock -EXPORT_SYMBOL net/ceph/libceph 0xc9bdff96 osd_req_op_extent_osd_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0xc5271240 ceph_osdc_wait_request +EXPORT_SYMBOL net/ceph/libceph 0xc595f9ff ceph_monc_blocklist_add +EXPORT_SYMBOL net/ceph/libceph 0xc6b86492 ceph_copy_user_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xc97f3892 ceph_create_client EXPORT_SYMBOL net/ceph/libceph 0xca80437b ceph_extent_to_file -EXPORT_SYMBOL net/ceph/libceph 0xce390519 ceph_osdc_sync -EXPORT_SYMBOL net/ceph/libceph 0xcec89013 ceph_auth_verify_authorizer_reply -EXPORT_SYMBOL net/ceph/libceph 0xd01b9e15 osd_req_op_extent_dup_last +EXPORT_SYMBOL net/ceph/libceph 0xcd0afa0b ceph_osdc_notify +EXPORT_SYMBOL net/ceph/libceph 0xcefbfc1b ceph_con_open +EXPORT_SYMBOL net/ceph/libceph 0xd1580499 ceph_monc_get_version_async +EXPORT_SYMBOL net/ceph/libceph 0xd213dda0 ceph_osdc_flush_notifies +EXPORT_SYMBOL net/ceph/libceph 0xd2505b61 ceph_osdc_maybe_request_map EXPORT_SYMBOL net/ceph/libceph 0xd4d736db ceph_destroy_options EXPORT_SYMBOL net/ceph/libceph 0xd4eb7735 ceph_decode_entity_addr -EXPORT_SYMBOL net/ceph/libceph 0xd7d93019 ceph_con_send -EXPORT_SYMBOL net/ceph/libceph 0xd9eae67a ceph_zero_page_vector_range -EXPORT_SYMBOL net/ceph/libceph 0xdb2eec4e osd_req_op_extent_osd_data_bvecs -EXPORT_SYMBOL net/ceph/libceph 0xdd78abf4 ceph_reset_client_addr -EXPORT_SYMBOL net/ceph/libceph 0xde3ea09b ceph_osdc_wait_request +EXPORT_SYMBOL net/ceph/libceph 0xd5924549 osd_req_op_cls_response_data_pages +EXPORT_SYMBOL net/ceph/libceph 0xd60c8cac osd_req_op_extent_init +EXPORT_SYMBOL net/ceph/libceph 0xda0039aa ceph_monc_got_map EXPORT_SYMBOL net/ceph/libceph 0xdf6ef4a1 ceph_oid_printf EXPORT_SYMBOL net/ceph/libceph 0xdfc091f9 ceph_entity_type_name -EXPORT_SYMBOL net/ceph/libceph 0xe1116aa9 ceph_auth_is_authenticated -EXPORT_SYMBOL net/ceph/libceph 0xe1f56048 ceph_auth_invalidate_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xe07630e5 ceph_monc_do_statfs EXPORT_SYMBOL net/ceph/libceph 0xe34a59f2 ceph_object_locator_to_pg -EXPORT_SYMBOL net/ceph/libceph 0xe6113dc8 osd_req_op_xattr_init -EXPORT_SYMBOL net/ceph/libceph 0xe638f917 ceph_copy_user_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xe619634e ceph_compare_options +EXPORT_SYMBOL net/ceph/libceph 0xe6e5d92c osd_req_op_cls_request_data_pages EXPORT_SYMBOL net/ceph/libceph 0xe76e7226 ceph_pagelist_alloc +EXPORT_SYMBOL net/ceph/libceph 0xeae17f3d ceph_auth_handle_svc_reply_more +EXPORT_SYMBOL net/ceph/libceph 0xecc9c5df ceph_monc_want_map EXPORT_SYMBOL net/ceph/libceph 0xee120c03 ceph_release_string EXPORT_SYMBOL net/ceph/libceph 0xeef6cfa3 ceph_iterate_extents -EXPORT_SYMBOL net/ceph/libceph 0xefbb1800 osd_req_op_extent_osd_data_bio EXPORT_SYMBOL net/ceph/libceph 0xefce3c3b ceph_pagelist_reserve EXPORT_SYMBOL net/ceph/libceph 0xefce991c ceph_pagelist_append +EXPORT_SYMBOL net/ceph/libceph 0xf0353c80 ceph_auth_verify_authorizer_reply EXPORT_SYMBOL net/ceph/libceph 0xf03fe862 ceph_pagelist_set_cursor -EXPORT_SYMBOL net/ceph/libceph 0xfa7b3e41 osd_req_op_extent_update -EXPORT_SYMBOL net/ceph/libceph 0xfbf107d5 ceph_copy_to_page_vector -EXPORT_SYMBOL net/ceph/libceph 0xfd115775 ceph_con_init -EXPORT_SYMBOL net/dccp/dccp_ipv4 0x5132e311 dccp_req_err -EXPORT_SYMBOL net/dccp/dccp_ipv4 0x68ca2631 dccp_syn_ack_timeout -EXPORT_SYMBOL net/hsr/hsr 0x460fdf41 is_hsr_master -EXPORT_SYMBOL net/hsr/hsr 0xe9d7418d hsr_get_version -EXPORT_SYMBOL net/ieee802154/ieee802154 0x38469ddb wpan_phy_register -EXPORT_SYMBOL net/ieee802154/ieee802154 0x431a6d7d wpan_phy_for_each -EXPORT_SYMBOL net/ieee802154/ieee802154 0x43823f65 wpan_phy_free -EXPORT_SYMBOL net/ieee802154/ieee802154 0x8bf800a1 wpan_phy_find -EXPORT_SYMBOL net/ieee802154/ieee802154 0xbf45cf0a wpan_phy_unregister -EXPORT_SYMBOL net/ieee802154/ieee802154 0xf8ffe2a4 wpan_phy_new +EXPORT_SYMBOL net/ceph/libceph 0xf1cb4c43 ceph_monc_get_version +EXPORT_SYMBOL net/ceph/libceph 0xf5a05d80 osd_req_op_cls_init +EXPORT_SYMBOL net/ceph/libceph 0xf82215e8 ceph_monc_renew_subs +EXPORT_SYMBOL net/ceph/libceph 0xf8f39dc1 ceph_auth_get_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xf96ba5cc ceph_alloc_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xf9add333 ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0xfd8c4924 osd_req_op_extent_osd_data_bvec_pos +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x5cc87a18 dccp_req_err +EXPORT_SYMBOL net/dccp/dccp_ipv4 0xc5538c6e dccp_syn_ack_timeout +EXPORT_SYMBOL net/hsr/hsr 0x82710e07 hsr_get_version +EXPORT_SYMBOL net/hsr/hsr 0x93414db7 is_hsr_master +EXPORT_SYMBOL net/ieee802154/ieee802154 0x2a4fb917 wpan_phy_register +EXPORT_SYMBOL net/ieee802154/ieee802154 0x657e5cfa wpan_phy_free +EXPORT_SYMBOL net/ieee802154/ieee802154 0x99c76e0b wpan_phy_for_each +EXPORT_SYMBOL net/ieee802154/ieee802154 0xc1fad530 wpan_phy_unregister +EXPORT_SYMBOL net/ieee802154/ieee802154 0xc4f8d94f wpan_phy_find +EXPORT_SYMBOL net/ieee802154/ieee802154 0xce53a8c1 wpan_phy_new EXPORT_SYMBOL net/ipv4/fou 0x1757d1a4 fou_encap_hlen -EXPORT_SYMBOL net/ipv4/fou 0x4681dd8b __fou_build_header +EXPORT_SYMBOL net/ipv4/fou 0x17b062b3 __fou_build_header +EXPORT_SYMBOL net/ipv4/fou 0xad0bf2be __gue_build_header EXPORT_SYMBOL net/ipv4/fou 0xf13914b3 gue_encap_hlen -EXPORT_SYMBOL net/ipv4/fou 0xf5b20b2b __gue_build_header -EXPORT_SYMBOL net/ipv4/gre 0xe023878a gre_parse_header -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x42e41038 ip_tunnel_encap_add_ops -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x8b34aa34 ip_tunnel_encap_del_ops -EXPORT_SYMBOL net/ipv4/ip_tunnel 0xd6b12c95 ip_tunnel_get_iflink -EXPORT_SYMBOL net/ipv4/ip_tunnel 0xf04c1bc4 ip_tunnel_get_link_net -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x0253d1a2 arpt_unregister_table -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x55f23f7d arpt_unregister_table_pre_exit -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x744ec5ed arpt_do_table -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xa4c5c74a arpt_register_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x32eefc0d ipt_do_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x3f58b373 ipt_register_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x72539423 ipt_unregister_table_exit -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xe78a802e ipt_unregister_table_pre_exit -EXPORT_SYMBOL net/ipv4/tunnel4 0x887e8792 xfrm4_tunnel_register -EXPORT_SYMBOL net/ipv4/tunnel4 0xf18463a8 xfrm4_tunnel_deregister -EXPORT_SYMBOL net/ipv4/udp_tunnel 0xdb3ffb01 udp_sock_create4 -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x40de79a0 ip6_tnl_get_iflink -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x43249ab4 ip6_tnl_xmit -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x62468dda ip6_tnl_rcv -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x63633747 ip6_tnl_encap_add_ops -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x65b25d96 ip6_tnl_get_link_net -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x6d4cc681 ip6_tnl_get_cap -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x7f753b90 ip6_tnl_parse_tlv_enc_lim -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xa153ea27 ip6_tnl_change_mtu -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xeab679ac ip6_tnl_encap_del_ops -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x37d7bd89 ip6t_register_table -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x47d946a2 ip6t_unregister_table_pre_exit -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x76f46ff0 ip6t_unregister_table_exit -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xc5a9dae9 ip6t_do_table -EXPORT_SYMBOL net/ipv6/tunnel6 0x312ac910 xfrm6_tunnel_register -EXPORT_SYMBOL net/ipv6/tunnel6 0x7f0f93f4 xfrm6_tunnel_deregister -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xc65e2304 xfrm6_tunnel_alloc_spi -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xfe39acf8 xfrm6_tunnel_spi_lookup -EXPORT_SYMBOL net/lapb/lapb 0x0fd09fbc lapb_register -EXPORT_SYMBOL net/lapb/lapb 0x1d100e9e lapb_connect_request -EXPORT_SYMBOL net/lapb/lapb 0x580d8875 lapb_getparms -EXPORT_SYMBOL net/lapb/lapb 0x6f9322fd lapb_data_request -EXPORT_SYMBOL net/lapb/lapb 0xcae360c4 lapb_data_received -EXPORT_SYMBOL net/lapb/lapb 0xe0cf19fd lapb_disconnect_request -EXPORT_SYMBOL net/lapb/lapb 0xeea70713 lapb_setparms -EXPORT_SYMBOL net/lapb/lapb 0xf5f9755c lapb_unregister -EXPORT_SYMBOL net/llc/llc 0x30fb21ae llc_sap_close +EXPORT_SYMBOL net/ipv4/gre 0x765840a2 gre_parse_header +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x6403d21a ip_tunnel_encap_del_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x96ff3d65 ip_tunnel_get_iflink +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xc1fe2174 ip_tunnel_encap_add_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xf5a2378a ip_tunnel_get_link_net +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x3a257ebf arpt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x6604d8b1 arpt_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xce30a727 arpt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xe1874426 arpt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x2c1d7a4a ipt_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x539356e0 ipt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x7b1fcab1 ipt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x8dfae04b ipt_unregister_table_exit +EXPORT_SYMBOL net/ipv4/tunnel4 0x187d4534 xfrm4_tunnel_register +EXPORT_SYMBOL net/ipv4/tunnel4 0x85c1e1fe xfrm4_tunnel_deregister +EXPORT_SYMBOL net/ipv4/udp_tunnel 0xc1f9fcf2 udp_sock_create4 +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x08b16d8f ip6_tnl_encap_add_ops +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x337cce2e ip6_tnl_rcv +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x39952e8e ip6_tnl_xmit +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x41768948 ip6_tnl_get_cap +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x640e43f6 ip6_tnl_encap_del_ops +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x71dc157a ip6_tnl_get_iflink +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x9be2a02f ip6_tnl_change_mtu +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xc10126c8 ip6_tnl_get_link_net +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xf72ec4cc ip6_tnl_parse_tlv_enc_lim +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x26ce3e4d ip6t_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x686dedac ip6t_unregister_table_exit +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x7375d8d5 ip6t_do_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x9a890040 ip6t_register_table +EXPORT_SYMBOL net/ipv6/tunnel6 0x8a601733 xfrm6_tunnel_register +EXPORT_SYMBOL net/ipv6/tunnel6 0xbfe7e224 xfrm6_tunnel_deregister +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xd906d909 xfrm6_tunnel_alloc_spi +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xfd7a7229 xfrm6_tunnel_spi_lookup +EXPORT_SYMBOL net/lapb/lapb 0x1d03c32b lapb_connect_request +EXPORT_SYMBOL net/lapb/lapb 0x27494f68 lapb_unregister +EXPORT_SYMBOL net/lapb/lapb 0x43e1244f lapb_data_received +EXPORT_SYMBOL net/lapb/lapb 0x4ea7b7b2 lapb_data_request +EXPORT_SYMBOL net/lapb/lapb 0x66316c6f lapb_register +EXPORT_SYMBOL net/lapb/lapb 0x9f2d42a5 lapb_getparms +EXPORT_SYMBOL net/lapb/lapb 0xad96ad52 lapb_setparms +EXPORT_SYMBOL net/lapb/lapb 0xe45d741b lapb_disconnect_request +EXPORT_SYMBOL net/llc/llc 0x17106768 llc_sap_close EXPORT_SYMBOL net/llc/llc 0x38b92846 llc_remove_pack -EXPORT_SYMBOL net/llc/llc 0x4b777471 llc_add_pack EXPORT_SYMBOL net/llc/llc 0x52d7b2fd llc_sap_list -EXPORT_SYMBOL net/llc/llc 0x8ff81df8 llc_build_and_send_ui_pkt -EXPORT_SYMBOL net/llc/llc 0x9e2a4ccc llc_set_station_handler -EXPORT_SYMBOL net/llc/llc 0xb258fe02 llc_sap_find -EXPORT_SYMBOL net/llc/llc 0xb4b7cac8 llc_mac_hdr_init -EXPORT_SYMBOL net/llc/llc 0xccb6b9f0 llc_sap_open -EXPORT_SYMBOL net/mac80211/mac80211 0x0189753d ieee80211_txq_schedule_start -EXPORT_SYMBOL net/mac80211/mac80211 0x0287a73a ieee80211_sched_scan_results -EXPORT_SYMBOL net/mac80211/mac80211 0x02af4444 ieee80211_get_tkip_p2k +EXPORT_SYMBOL net/llc/llc 0x678b6376 llc_sap_find +EXPORT_SYMBOL net/llc/llc 0x719a1e56 llc_sap_open +EXPORT_SYMBOL net/llc/llc 0x8492aaf5 llc_build_and_send_ui_pkt +EXPORT_SYMBOL net/llc/llc 0xd2c8f5bd llc_set_station_handler +EXPORT_SYMBOL net/llc/llc 0xe0e85953 llc_add_pack +EXPORT_SYMBOL net/llc/llc 0xf6ad4bc1 llc_mac_hdr_init +EXPORT_SYMBOL net/mac80211/mac80211 0x00dacd8c ieee80211_tx_status_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x012f9f7a ieee80211_iter_keys_rcu +EXPORT_SYMBOL net/mac80211/mac80211 0x01aa844e ieee80211_rx_ba_timer_expired +EXPORT_SYMBOL net/mac80211/mac80211 0x02e33ed4 __ieee80211_get_rx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x03ca2669 ieee80211_beacon_set_cntdwn +EXPORT_SYMBOL net/mac80211/mac80211 0x03eef312 ieee80211_rts_get +EXPORT_SYMBOL net/mac80211/mac80211 0x04207ed2 ieee80211_next_txq EXPORT_SYMBOL net/mac80211/mac80211 0x063f5308 ieee80211_get_tkip_p1k_iv -EXPORT_SYMBOL net/mac80211/mac80211 0x0b9f4ecd ieee80211_disconnect -EXPORT_SYMBOL net/mac80211/mac80211 0x0ba21cd8 ieee80211_ap_probereq_get -EXPORT_SYMBOL net/mac80211/mac80211 0x0c9cf77a ieee80211_sta_set_buffered -EXPORT_SYMBOL net/mac80211/mac80211 0x119fe420 ieee80211_rate_control_register -EXPORT_SYMBOL net/mac80211/mac80211 0x146436cf ieee80211_send_bar -EXPORT_SYMBOL net/mac80211/mac80211 0x1530c6de ieee80211_stop_queues -EXPORT_SYMBOL net/mac80211/mac80211 0x15ed859b ieee80211_wake_queue -EXPORT_SYMBOL net/mac80211/mac80211 0x17e3f1f2 ieee80211_sta_pspoll -EXPORT_SYMBOL net/mac80211/mac80211 0x180cd5ca ieee80211_stop_rx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x0a23489c ieee80211_get_unsol_bcast_probe_resp_tmpl +EXPORT_SYMBOL net/mac80211/mac80211 0x0c25dd95 ieee80211_report_wowlan_wakeup +EXPORT_SYMBOL net/mac80211/mac80211 0x0f5049a5 ieee80211_stop_rx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x0faab1cb ieee80211_register_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x100ac80b ieee80211_unreserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0x102046d4 ieee80211_return_txq +EXPORT_SYMBOL net/mac80211/mac80211 0x10bfe724 ieee80211_sta_set_buffered +EXPORT_SYMBOL net/mac80211/mac80211 0x1304a6f6 ieee80211_proberesp_get +EXPORT_SYMBOL net/mac80211/mac80211 0x149c6ac0 ieee80211_queue_delayed_work +EXPORT_SYMBOL net/mac80211/mac80211 0x16db8e77 ieee80211_beacon_update_cntdwn +EXPORT_SYMBOL net/mac80211/mac80211 0x17fa1b84 ieee80211_get_fils_discovery_tmpl EXPORT_SYMBOL net/mac80211/mac80211 0x183dcd3b ieee80211_get_key_rx_seq +EXPORT_SYMBOL net/mac80211/mac80211 0x18c57ea8 ieee80211_radar_detected EXPORT_SYMBOL net/mac80211/mac80211 0x19f37f0d ieee80211_update_p2p_noa EXPORT_SYMBOL net/mac80211/mac80211 0x1a66fc17 ieee80211_get_tkip_rx_p1k -EXPORT_SYMBOL net/mac80211/mac80211 0x1b2d7b7c ieee80211_get_tx_rates -EXPORT_SYMBOL net/mac80211/mac80211 0x1c3442a9 ieee80211_tdls_oper_request -EXPORT_SYMBOL net/mac80211/mac80211 0x1fee97ad ieee80211_tx_dequeue -EXPORT_SYMBOL net/mac80211/mac80211 0x22843ee1 __ieee80211_get_tx_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x241a4640 ieee80211_report_low_ack -EXPORT_SYMBOL net/mac80211/mac80211 0x247382c9 ieee80211_free_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x25b0bb83 ieee80211_sta_uapsd_trigger -EXPORT_SYMBOL net/mac80211/mac80211 0x29a9956f ieee80211_queue_stopped -EXPORT_SYMBOL net/mac80211/mac80211 0x2fdbfb07 ieee80211_free_txskb -EXPORT_SYMBOL net/mac80211/mac80211 0x2fe9c879 ieee80211_sta_block_awake -EXPORT_SYMBOL net/mac80211/mac80211 0x30053d40 ieee80211_chswitch_done -EXPORT_SYMBOL net/mac80211/mac80211 0x32aa9594 ieee80211_sta_register_airtime -EXPORT_SYMBOL net/mac80211/mac80211 0x345cd4bc ieee80211_txq_airtime_check -EXPORT_SYMBOL net/mac80211/mac80211 0x34e9fc2f ieee80211_queue_work -EXPORT_SYMBOL net/mac80211/mac80211 0x350fd9c5 ieee80211_get_fils_discovery_tmpl -EXPORT_SYMBOL net/mac80211/mac80211 0x3666f059 ieee80211_reserve_tid -EXPORT_SYMBOL net/mac80211/mac80211 0x390243aa ieee80211_tx_prepare_skb -EXPORT_SYMBOL net/mac80211/mac80211 0x395c3916 ieee80211_beacon_loss -EXPORT_SYMBOL net/mac80211/mac80211 0x3fd1aa1a ieee80211_restart_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x428e702b ieee80211_return_txq -EXPORT_SYMBOL net/mac80211/mac80211 0x46837e87 ieee80211_sta_ps_transition -EXPORT_SYMBOL net/mac80211/mac80211 0x4abd9a53 ieee80211_generic_frame_duration -EXPORT_SYMBOL net/mac80211/mac80211 0x4ac8f083 ieee80211_get_unsol_bcast_probe_resp_tmpl -EXPORT_SYMBOL net/mac80211/mac80211 0x4c46aff5 ieee80211_beacon_update_cntdwn -EXPORT_SYMBOL net/mac80211/mac80211 0x4c6e724e ieee80211_probereq_get -EXPORT_SYMBOL net/mac80211/mac80211 0x509ebbb9 ieee80211_csa_finish -EXPORT_SYMBOL net/mac80211/mac80211 0x53b11ddb ieee80211_tx_status -EXPORT_SYMBOL net/mac80211/mac80211 0x5b8548ba ieee80211_rx_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x63617c31 ieee80211_queue_delayed_work -EXPORT_SYMBOL net/mac80211/mac80211 0x6480385b ieee80211_nan_func_terminated -EXPORT_SYMBOL net/mac80211/mac80211 0x65e88a9f ieee80211_manage_rx_ba_offl -EXPORT_SYMBOL net/mac80211/mac80211 0x68edd700 ieee80211_rx_napi -EXPORT_SYMBOL net/mac80211/mac80211 0x6c54cb63 ieee80211_wake_queues -EXPORT_SYMBOL net/mac80211/mac80211 0x7272d01d wiphy_to_ieee80211_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x73ef5d26 ieee80211_ctstoself_get -EXPORT_SYMBOL net/mac80211/mac80211 0x75622cf3 rate_control_set_rates -EXPORT_SYMBOL net/mac80211/mac80211 0x7995a2ad ieee80211_mark_rx_ba_filtered_frames -EXPORT_SYMBOL net/mac80211/mac80211 0x79e84002 ieee80211_cqm_beacon_loss_notify -EXPORT_SYMBOL net/mac80211/mac80211 0x7b70d445 __ieee80211_get_rx_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x7d07470e ieee80211_disable_rssi_reports -EXPORT_SYMBOL net/mac80211/mac80211 0x80c2a9bf ieee80211_sched_scan_stopped -EXPORT_SYMBOL net/mac80211/mac80211 0x85e42166 ieee80211_send_eosp_nullfunc -EXPORT_SYMBOL net/mac80211/mac80211 0x8d17ee69 ieee80211_enable_rssi_reports -EXPORT_SYMBOL net/mac80211/mac80211 0x93521da0 ieee80211_start_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x1b8506d5 ieee80211_scan_completed +EXPORT_SYMBOL net/mac80211/mac80211 0x206a552d ieee80211_txq_may_transmit +EXPORT_SYMBOL net/mac80211/mac80211 0x24591df0 ieee80211_tx_dequeue +EXPORT_SYMBOL net/mac80211/mac80211 0x283ca70a ieee80211_mark_rx_ba_filtered_frames +EXPORT_SYMBOL net/mac80211/mac80211 0x2852cb5d ieee80211_rx_list +EXPORT_SYMBOL net/mac80211/mac80211 0x304e75dd __ieee80211_get_assoc_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x31c8bf1d ieee80211_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0x343ec244 ieee80211_wake_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x365b714e ieee80211_sta_uapsd_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0x37f5765d ieee80211_rx_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x38da58e0 ieee80211_txq_get_depth +EXPORT_SYMBOL net/mac80211/mac80211 0x399a0e94 ieee80211_csa_finish +EXPORT_SYMBOL net/mac80211/mac80211 0x3cc9cb15 ieee80211_tdls_oper_request +EXPORT_SYMBOL net/mac80211/mac80211 0x3f8b2216 ieee80211_sta_register_airtime +EXPORT_SYMBOL net/mac80211/mac80211 0x3fd63e58 ieee80211_txq_schedule_start +EXPORT_SYMBOL net/mac80211/mac80211 0x42888c5b ieee80211_sta_eosp +EXPORT_SYMBOL net/mac80211/mac80211 0x44b1d3e0 ieee80211_manage_rx_ba_offl +EXPORT_SYMBOL net/mac80211/mac80211 0x48a11314 ieee80211_tx_rate_update +EXPORT_SYMBOL net/mac80211/mac80211 0x51ae6f62 ieee80211_rate_control_register +EXPORT_SYMBOL net/mac80211/mac80211 0x52477eed ieee80211_start_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x54cb4f15 ieee80211_restart_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x589354cd ieee80211_sched_scan_results +EXPORT_SYMBOL net/mac80211/mac80211 0x5adf1be1 ieee80211_queue_work +EXPORT_SYMBOL net/mac80211/mac80211 0x5c8b2c9a ieee80211_generic_frame_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x5f3e79ce ieee80211_rts_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x64830bc1 ieee80211_stop_queue +EXPORT_SYMBOL net/mac80211/mac80211 0x64a37223 ieee80211_disable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0x68c81665 ieee80211_nan_func_terminated +EXPORT_SYMBOL net/mac80211/mac80211 0x6a072e60 ieee80211_rx_napi +EXPORT_SYMBOL net/mac80211/mac80211 0x6ca7e021 ieee80211_send_eosp_nullfunc +EXPORT_SYMBOL net/mac80211/mac80211 0x6e00b2b4 ieee80211_free_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x7244b97a ieee80211_disconnect +EXPORT_SYMBOL net/mac80211/mac80211 0x72f94715 ieee80211_free_txskb +EXPORT_SYMBOL net/mac80211/mac80211 0x73762046 ieee80211_nullfunc_get +EXPORT_SYMBOL net/mac80211/mac80211 0x754328c2 ieee80211_unregister_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x7705d817 ieee80211_get_buffered_bc +EXPORT_SYMBOL net/mac80211/mac80211 0x77082a7e ieee80211_alloc_hw_nm +EXPORT_SYMBOL net/mac80211/mac80211 0x7795f1c1 ieee80211_txq_airtime_check +EXPORT_SYMBOL net/mac80211/mac80211 0x84f30762 ieee80211_wake_queue +EXPORT_SYMBOL net/mac80211/mac80211 0x87baa25e ieee80211_beacon_get_tim +EXPORT_SYMBOL net/mac80211/mac80211 0x8834b8c2 ieee80211_sta_ps_transition +EXPORT_SYMBOL net/mac80211/mac80211 0x8f34ee84 __ieee80211_get_tx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x90064f2d ieee80211_beacon_cntdwn_is_complete +EXPORT_SYMBOL net/mac80211/mac80211 0x916edc15 ieee80211_reserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0x93cf000d ieee80211_sta_block_awake +EXPORT_SYMBOL net/mac80211/mac80211 0x98a7c98d __ieee80211_get_radio_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x99184796 ieee80211_sta_pspoll EXPORT_SYMBOL net/mac80211/mac80211 0x991a0ca0 ieee80211_parse_p2p_noa -EXPORT_SYMBOL net/mac80211/mac80211 0x9bec4f8b ieee80211_unregister_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x9c5dec6a __ieee80211_get_assoc_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x9ce714e4 ieee80211_tx_status_8023 -EXPORT_SYMBOL net/mac80211/mac80211 0x9cfee516 ieee80211_nan_func_match -EXPORT_SYMBOL net/mac80211/mac80211 0x9da8b07e ieee80211_connection_loss -EXPORT_SYMBOL net/mac80211/mac80211 0x9f16a8e6 ieee80211_ctstoself_duration -EXPORT_SYMBOL net/mac80211/mac80211 0x9fffba35 ieee80211_rts_get -EXPORT_SYMBOL net/mac80211/mac80211 0xa07019d5 ieee80211_rx_ba_timer_expired -EXPORT_SYMBOL net/mac80211/mac80211 0xa1b5b66b ieee80211_report_wowlan_wakeup -EXPORT_SYMBOL net/mac80211/mac80211 0xa8cc2fe4 ieee80211_rx_list -EXPORT_SYMBOL net/mac80211/mac80211 0xb309dbb4 ieee80211_beacon_get_tim -EXPORT_SYMBOL net/mac80211/mac80211 0xb3726f24 ieee80211_rate_control_unregister -EXPORT_SYMBOL net/mac80211/mac80211 0xb70fe46d ieee80211_txq_get_depth -EXPORT_SYMBOL net/mac80211/mac80211 0xb7aec63c __ieee80211_create_tpt_led_trigger -EXPORT_SYMBOL net/mac80211/mac80211 0xb9ff9935 ieee80211_nullfunc_get -EXPORT_SYMBOL net/mac80211/mac80211 0xbb473a28 ieee80211_beacon_set_cntdwn -EXPORT_SYMBOL net/mac80211/mac80211 0xbb65c186 ieee80211_find_sta -EXPORT_SYMBOL net/mac80211/mac80211 0xbdc775f9 ieee80211_beacon_cntdwn_is_complete -EXPORT_SYMBOL net/mac80211/mac80211 0xbe6e45b8 ieee80211_txq_may_transmit -EXPORT_SYMBOL net/mac80211/mac80211 0xbea70565 ieee80211_iter_keys -EXPORT_SYMBOL net/mac80211/mac80211 0xbef330a0 ieee80211_stop_queue -EXPORT_SYMBOL net/mac80211/mac80211 0xc34189e7 ieee80211_tx_status_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0xc672db10 ieee80211_stop_tx_ba_cb_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0xc9c1829f ieee80211_get_buffered_bc -EXPORT_SYMBOL net/mac80211/mac80211 0xcb973c9a ieee80211_unreserve_tid -EXPORT_SYMBOL net/mac80211/mac80211 0xce43c2cb ieee80211_start_tx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0xd49bcdda ieee80211_sta_eosp -EXPORT_SYMBOL net/mac80211/mac80211 0xd7c82fe3 ieee80211_alloc_hw_nm -EXPORT_SYMBOL net/mac80211/mac80211 0xd9285c03 ieee80211_register_hw -EXPORT_SYMBOL net/mac80211/mac80211 0xd9f50da2 ieee80211_tx_rate_update -EXPORT_SYMBOL net/mac80211/mac80211 0xdee6e969 ieee80211_pspoll_get -EXPORT_SYMBOL net/mac80211/mac80211 0xdf3ea688 ieee80211_stop_tx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0xe1f1f561 ieee80211_radar_detected -EXPORT_SYMBOL net/mac80211/mac80211 0xe3094dc0 ieee80211_proberesp_get -EXPORT_SYMBOL net/mac80211/mac80211 0xe3593604 ieee80211_next_txq +EXPORT_SYMBOL net/mac80211/mac80211 0x995b1a8a ieee80211_stop_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x9aaf9132 ieee80211_get_tx_rates +EXPORT_SYMBOL net/mac80211/mac80211 0x9d6b894b ieee80211_sched_scan_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0xa02d58e9 ieee80211_rate_control_unregister +EXPORT_SYMBOL net/mac80211/mac80211 0xa59c034e ieee80211_report_low_ack +EXPORT_SYMBOL net/mac80211/mac80211 0xa70cfa4b __ieee80211_create_tpt_led_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0xa9e40560 ieee80211_iter_keys +EXPORT_SYMBOL net/mac80211/mac80211 0xacfaa415 ieee80211_tx_status +EXPORT_SYMBOL net/mac80211/mac80211 0xb1a38647 ieee80211_queue_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0xb1bc2c7d ieee80211_chswitch_done +EXPORT_SYMBOL net/mac80211/mac80211 0xb3b28fac ieee80211_stop_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0xb5664650 ieee80211_ap_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0xb796ef8f ieee80211_beacon_get_template +EXPORT_SYMBOL net/mac80211/mac80211 0xbd33290e ieee80211_schedule_txq +EXPORT_SYMBOL net/mac80211/mac80211 0xbe4214f5 ieee80211_connection_loss +EXPORT_SYMBOL net/mac80211/mac80211 0xc6b456a9 ieee80211_start_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xc6d52a37 ieee80211_cqm_rssi_notify +EXPORT_SYMBOL net/mac80211/mac80211 0xceeda608 ieee80211_get_tkip_p2k +EXPORT_SYMBOL net/mac80211/mac80211 0xcfdf3ce1 ieee80211_nan_func_match +EXPORT_SYMBOL net/mac80211/mac80211 0xd33e7ed4 ieee80211_send_bar +EXPORT_SYMBOL net/mac80211/mac80211 0xe26bc089 ieee80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/mac80211/mac80211 0xe2be2d61 wiphy_to_ieee80211_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xe5516334 ieee80211_pspoll_get EXPORT_SYMBOL net/mac80211/mac80211 0xe5752af3 ieee80211_get_bssid -EXPORT_SYMBOL net/mac80211/mac80211 0xe628dc16 ieee80211_schedule_txq -EXPORT_SYMBOL net/mac80211/mac80211 0xed5ace48 ieee80211_tx_status_ext -EXPORT_SYMBOL net/mac80211/mac80211 0xfa887447 ieee80211_cqm_rssi_notify -EXPORT_SYMBOL net/mac80211/mac80211 0xfb52d282 ieee80211_iter_keys_rcu -EXPORT_SYMBOL net/mac80211/mac80211 0xfc4423ce ieee80211_rts_duration -EXPORT_SYMBOL net/mac80211/mac80211 0xfd92e2cc ieee80211_scan_completed -EXPORT_SYMBOL net/mac80211/mac80211 0xfe99de51 ieee80211_beacon_get_template -EXPORT_SYMBOL net/mac80211/mac80211 0xfea4ce52 __ieee80211_get_radio_led_name -EXPORT_SYMBOL net/mac802154/mac802154 0x152a1bc9 ieee802154_xmit_complete -EXPORT_SYMBOL net/mac802154/mac802154 0x1618cddb ieee802154_unregister_hw -EXPORT_SYMBOL net/mac802154/mac802154 0x3306dfa3 ieee802154_stop_queue -EXPORT_SYMBOL net/mac802154/mac802154 0x4375acb9 ieee802154_wake_queue -EXPORT_SYMBOL net/mac802154/mac802154 0x45d4e75e ieee802154_rx_irqsafe -EXPORT_SYMBOL net/mac802154/mac802154 0xa10d8096 ieee802154_free_hw -EXPORT_SYMBOL net/mac802154/mac802154 0xcbad0d0b ieee802154_alloc_hw -EXPORT_SYMBOL net/mac802154/mac802154 0xfde46fb8 ieee802154_register_hw -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x15d4cb70 ip_vs_conn_put -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x1b61588e ip_vs_conn_out_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x22fa189b ip_vs_nfct_expect_related -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x5b1e917b ip_vs_new_conn_out -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x685d3187 ip_vs_proto_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x6a0e1d70 ip_vs_tcp_conn_listen -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x6ce6c052 register_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x89a387b1 unregister_ip_vs_app -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x8a35090e register_ip_vs_app -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x8d6d8d50 unregister_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x8e331379 register_ip_vs_app_inc -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x902c7b9f ip_vs_conn_new -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xa9b48c20 ip_vs_conn_in_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd1eac8cc ip_vs_scheduler_err +EXPORT_SYMBOL net/mac80211/mac80211 0xeaf2fa90 ieee80211_tx_prepare_skb +EXPORT_SYMBOL net/mac80211/mac80211 0xeb756784 ieee80211_find_sta +EXPORT_SYMBOL net/mac80211/mac80211 0xec05996c rate_control_set_rates +EXPORT_SYMBOL net/mac80211/mac80211 0xecae3baf ieee80211_enable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0xf1fab449 ieee80211_ctstoself_duration +EXPORT_SYMBOL net/mac80211/mac80211 0xf2c25c16 ieee80211_tx_status_ext +EXPORT_SYMBOL net/mac80211/mac80211 0xf4e7974d ieee80211_ctstoself_get +EXPORT_SYMBOL net/mac80211/mac80211 0xf850a5cc ieee80211_stop_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xfb47eba3 ieee80211_tx_status_8023 +EXPORT_SYMBOL net/mac80211/mac80211 0xff54551a ieee80211_beacon_loss +EXPORT_SYMBOL net/mac802154/mac802154 0x04ad90de ieee802154_free_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x0adca868 ieee802154_unregister_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x25803291 ieee802154_alloc_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x3ef92e58 ieee802154_xmit_complete +EXPORT_SYMBOL net/mac802154/mac802154 0x50bc83c2 ieee802154_stop_queue +EXPORT_SYMBOL net/mac802154/mac802154 0x8dc75170 ieee802154_rx_irqsafe +EXPORT_SYMBOL net/mac802154/mac802154 0xd9c07982 ieee802154_register_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xea8d2358 ieee802154_wake_queue +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x05766cba ip_vs_tcp_conn_listen +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x0b9cfb59 register_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x15318ca4 unregister_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x3220ccd1 ip_vs_conn_put +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x3b192e7a ip_vs_conn_new +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x7b7fbd4e ip_vs_conn_in_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x8648411e ip_vs_proto_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x8cda719e ip_vs_scheduler_err +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x9f904b6a register_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xb1b9dfe0 ip_vs_conn_out_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xbe491907 ip_vs_nfct_expect_related EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xfc154536 ip_vs_proto_data_get -EXPORT_SYMBOL net/netfilter/nf_conntrack 0x4cc234cc nf_ct_ext_add +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xdbdeaca7 ip_vs_new_conn_out +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xde152899 ip_vs_proto_data_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xe8974ed1 unregister_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xef5ea92c register_ip_vs_app_inc +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x3b08a8f0 nf_ct_destroy +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x8c473447 nf_ct_ext_add EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0xf2a36612 pptp_msg_name -EXPORT_SYMBOL net/netfilter/nf_nat 0x3701a93b nf_nat_follow_master -EXPORT_SYMBOL net/netfilter/nf_nat 0x5b113869 nf_nat_setup_info -EXPORT_SYMBOL net/netfilter/nf_nat 0x5ed7a24f nf_nat_mangle_udp_packet -EXPORT_SYMBOL net/netfilter/nf_nat 0x634984a0 __nf_nat_mangle_tcp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0x273e0d8c nf_nat_mangle_udp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0x84c4b3da __nf_nat_mangle_tcp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0x9cf8ba20 nf_nat_follow_master +EXPORT_SYMBOL net/netfilter/nf_nat 0xcb92b7bf nf_nat_setup_info EXPORT_SYMBOL net/netfilter/nft_fib 0xb3c36947 nft_fib_policy -EXPORT_SYMBOL net/netfilter/x_tables 0x01f415a4 xt_register_matches EXPORT_SYMBOL net/netfilter/x_tables 0x0d7f5fcd xt_alloc_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0x12eb4f7f xt_find_table +EXPORT_SYMBOL net/netfilter/x_tables 0x23357b82 xt_register_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 0x4ebfe214 xt_register_target EXPORT_SYMBOL net/netfilter/x_tables 0x50873741 xt_compat_init_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0x58f488ca xt_unregister_match -EXPORT_SYMBOL net/netfilter/x_tables 0x5fdc5192 xt_register_targets +EXPORT_SYMBOL net/netfilter/x_tables 0x53b4b4b6 xt_unregister_matches +EXPORT_SYMBOL net/netfilter/x_tables 0x5d334180 xt_unregister_targets +EXPORT_SYMBOL net/netfilter/x_tables 0x7474fb38 xt_find_match +EXPORT_SYMBOL net/netfilter/x_tables 0x96a63f66 xt_register_match EXPORT_SYMBOL net/netfilter/x_tables 0x977fd4bf xt_alloc_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0x9bc4c7b7 xt_unregister_target EXPORT_SYMBOL net/netfilter/x_tables 0xa25fc115 xt_compat_check_entry_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0xacd0ef93 xt_unregister_targets -EXPORT_SYMBOL net/netfilter/x_tables 0xb43b5cb6 xt_unregister_matches -EXPORT_SYMBOL net/netfilter/x_tables 0xc0189deb xt_find_table +EXPORT_SYMBOL net/netfilter/x_tables 0xa65a6a05 xt_register_target +EXPORT_SYMBOL net/netfilter/x_tables 0xc77d23c9 xt_unregister_match EXPORT_SYMBOL net/netfilter/x_tables 0xcb3e91cc xt_counters_alloc EXPORT_SYMBOL net/netfilter/x_tables 0xd87ae60d xt_check_entry_offsets EXPORT_SYMBOL net/netfilter/x_tables 0xe204e042 xt_free_table_info -EXPORT_SYMBOL net/netfilter/x_tables 0xe6320534 xt_find_match -EXPORT_SYMBOL net/netfilter/x_tables 0xe8b21643 xt_unregister_target -EXPORT_SYMBOL net/netfilter/x_tables 0xf02d09f1 xt_register_match +EXPORT_SYMBOL net/netfilter/x_tables 0xe4f20bbb xt_register_matches EXPORT_SYMBOL net/netfilter/x_tables 0xfef779fa xt_find_jump_offset -EXPORT_SYMBOL net/nfc/hci/hci 0x02aec25d nfc_hci_get_clientdata -EXPORT_SYMBOL net/nfc/hci/hci 0x1d3f121a nfc_hci_send_cmd_async -EXPORT_SYMBOL net/nfc/hci/hci 0x243b7bc8 nfc_hci_set_param -EXPORT_SYMBOL net/nfc/hci/hci 0x2f915e66 nfc_llc_stop -EXPORT_SYMBOL net/nfc/hci/hci 0x38bfc1f7 nfc_hci_target_discovered -EXPORT_SYMBOL net/nfc/hci/hci 0x398eacd7 nfc_hci_recv_frame -EXPORT_SYMBOL net/nfc/hci/hci 0x3b63192a nfc_hci_unregister_device -EXPORT_SYMBOL net/nfc/hci/hci 0x58dd3ca6 nfc_hci_set_clientdata -EXPORT_SYMBOL net/nfc/hci/hci 0x61f48d7b nfc_llc_start +EXPORT_SYMBOL net/nfc/hci/hci 0x0c5fdd38 nfc_hci_set_param +EXPORT_SYMBOL net/nfc/hci/hci 0x183eab4c nfc_hci_unregister_device +EXPORT_SYMBOL net/nfc/hci/hci 0x1dfbe575 nfc_hci_target_discovered +EXPORT_SYMBOL net/nfc/hci/hci 0x31e461b2 nfc_hci_driver_failure +EXPORT_SYMBOL net/nfc/hci/hci 0x38655603 nfc_hci_send_event +EXPORT_SYMBOL net/nfc/hci/hci 0x44ca8594 nfc_hci_free_device +EXPORT_SYMBOL net/nfc/hci/hci 0x46461136 nfc_hci_get_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0x64ff5ecb nfc_hci_send_cmd_async EXPORT_SYMBOL net/nfc/hci/hci 0x74fe3670 nfc_hci_result_to_errno -EXPORT_SYMBOL net/nfc/hci/hci 0x79ea846c nfc_hci_reset_pipes -EXPORT_SYMBOL net/nfc/hci/hci 0x7d59ffe7 nfc_hci_register_device -EXPORT_SYMBOL net/nfc/hci/hci 0x9d640f2b nfc_hci_driver_failure -EXPORT_SYMBOL net/nfc/hci/hci 0xa13e4db1 nfc_hci_free_device -EXPORT_SYMBOL net/nfc/hci/hci 0xa510684a nfc_hci_send_event -EXPORT_SYMBOL net/nfc/hci/hci 0xaa2d2d26 nfc_hci_connect_gate -EXPORT_SYMBOL net/nfc/hci/hci 0xab77a466 nfc_hci_disconnect_gate -EXPORT_SYMBOL net/nfc/hci/hci 0xb82db63d nfc_hci_reset_pipes_per_host -EXPORT_SYMBOL net/nfc/hci/hci 0xbdb47e26 nfc_hci_disconnect_all_gates +EXPORT_SYMBOL net/nfc/hci/hci 0x78d26d8f nfc_hci_connect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0x925af2f3 nfc_hci_allocate_device +EXPORT_SYMBOL net/nfc/hci/hci 0x9589d1b5 nfc_hci_reset_pipes_per_host +EXPORT_SYMBOL net/nfc/hci/hci 0x99f05447 nfc_hci_send_cmd +EXPORT_SYMBOL net/nfc/hci/hci 0xaf54cef2 nfc_hci_disconnect_all_gates +EXPORT_SYMBOL net/nfc/hci/hci 0xb50b54e3 nfc_hci_register_device +EXPORT_SYMBOL net/nfc/hci/hci 0xbf5b59b7 nfc_llc_stop +EXPORT_SYMBOL net/nfc/hci/hci 0xc7f950f9 nfc_hci_get_param +EXPORT_SYMBOL net/nfc/hci/hci 0xcf3558d7 nfc_llc_start +EXPORT_SYMBOL net/nfc/hci/hci 0xcf8b92e7 nfc_hci_recv_frame +EXPORT_SYMBOL net/nfc/hci/hci 0xdbf69416 nfc_hci_reset_pipes EXPORT_SYMBOL net/nfc/hci/hci 0xdd231c55 nfc_hci_sak_to_protocol -EXPORT_SYMBOL net/nfc/hci/hci 0xe2283b46 nfc_hci_get_param -EXPORT_SYMBOL net/nfc/hci/hci 0xeb0c3545 nfc_hci_allocate_device -EXPORT_SYMBOL net/nfc/hci/hci 0xff960a9a nfc_hci_send_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0x0016c77c nci_send_frame -EXPORT_SYMBOL net/nfc/nci/nci 0x05d77e19 nci_hci_send_event -EXPORT_SYMBOL net/nfc/nci/nci 0x09492beb nci_nfcc_loopback -EXPORT_SYMBOL net/nfc/nci/nci 0x09862b62 nci_hci_set_param -EXPORT_SYMBOL net/nfc/nci/nci 0x157d1d1f nci_req_complete -EXPORT_SYMBOL net/nfc/nci/nci 0x559e2f35 nci_hci_send_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0x5b55e5b3 nci_conn_max_data_pkt_payload_size -EXPORT_SYMBOL net/nfc/nci/nci 0x6e66841a nci_free_device -EXPORT_SYMBOL net/nfc/nci/nci 0x7383fc01 nci_hci_dev_session_init -EXPORT_SYMBOL net/nfc/nci/nci 0x7515799a nci_unregister_device -EXPORT_SYMBOL net/nfc/nci/nci 0x7a890126 nci_hci_get_param -EXPORT_SYMBOL net/nfc/nci/nci 0x83a8056c nci_core_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0x83aeeafa nci_allocate_device -EXPORT_SYMBOL net/nfc/nci/nci 0x852eb8ad nci_core_init -EXPORT_SYMBOL net/nfc/nci/nci 0x87b4cf6d nci_get_conn_info_by_dest_type_params -EXPORT_SYMBOL net/nfc/nci/nci 0x8e33cb9d nci_core_reset -EXPORT_SYMBOL net/nfc/nci/nci 0x9deae05f nci_hci_connect_gate -EXPORT_SYMBOL net/nfc/nci/nci 0xae480925 nci_hci_clear_all_pipes -EXPORT_SYMBOL net/nfc/nci/nci 0xb61b4397 nci_nfcee_mode_set +EXPORT_SYMBOL net/nfc/hci/hci 0xeb14364c nfc_hci_disconnect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0xfa93f5b3 nfc_hci_set_clientdata +EXPORT_SYMBOL net/nfc/nci/nci 0x0c64e2cf nci_hci_dev_session_init +EXPORT_SYMBOL net/nfc/nci/nci 0x0d342163 nci_core_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x1686998a nci_allocate_device +EXPORT_SYMBOL net/nfc/nci/nci 0x28f97bfd nci_register_device +EXPORT_SYMBOL net/nfc/nci/nci 0x31f14644 nci_set_config +EXPORT_SYMBOL net/nfc/nci/nci 0x33033128 nci_free_device +EXPORT_SYMBOL net/nfc/nci/nci 0x36f99029 nci_unregister_device +EXPORT_SYMBOL net/nfc/nci/nci 0x4319ee4d nci_core_reset +EXPORT_SYMBOL net/nfc/nci/nci 0x4e0afd37 nci_hci_set_param +EXPORT_SYMBOL net/nfc/nci/nci 0x577c7f52 nci_prop_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x57de8343 nci_core_conn_close +EXPORT_SYMBOL net/nfc/nci/nci 0x5bc4f829 nci_nfcc_loopback +EXPORT_SYMBOL net/nfc/nci/nci 0x633793c3 nci_conn_max_data_pkt_payload_size +EXPORT_SYMBOL net/nfc/nci/nci 0x73c66e9d nci_nfcee_mode_set +EXPORT_SYMBOL net/nfc/nci/nci 0x8f83a93f nci_send_data +EXPORT_SYMBOL net/nfc/nci/nci 0x90da3cda nci_hci_get_param +EXPORT_SYMBOL net/nfc/nci/nci 0x92b08406 nci_core_conn_create +EXPORT_SYMBOL net/nfc/nci/nci 0x9d9841fa nci_core_init +EXPORT_SYMBOL net/nfc/nci/nci 0xaee031c3 nci_recv_frame +EXPORT_SYMBOL net/nfc/nci/nci 0xb0e3f51f nci_hci_clear_all_pipes EXPORT_SYMBOL net/nfc/nci/nci 0xba490602 nci_to_errno -EXPORT_SYMBOL net/nfc/nci/nci 0xbda2b1fd nci_core_conn_create -EXPORT_SYMBOL net/nfc/nci/nci 0xc396288d nci_set_config -EXPORT_SYMBOL net/nfc/nci/nci 0xccfc00d0 nci_register_device -EXPORT_SYMBOL net/nfc/nci/nci 0xd9ebf7a6 nci_nfcee_discover -EXPORT_SYMBOL net/nfc/nci/nci 0xe651e264 nci_core_conn_close -EXPORT_SYMBOL net/nfc/nci/nci 0xf399d920 nci_recv_frame -EXPORT_SYMBOL net/nfc/nci/nci 0xf4a0e859 nci_send_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0xf79b3b04 nci_send_data -EXPORT_SYMBOL net/nfc/nci/nci 0xfb6bea7a nci_hci_open_pipe -EXPORT_SYMBOL net/nfc/nci/nci 0xffca3af4 nci_prop_cmd -EXPORT_SYMBOL net/nfc/nfc 0x01f514cf nfc_proto_unregister -EXPORT_SYMBOL net/nfc/nfc 0x09b82579 nfc_se_connectivity -EXPORT_SYMBOL net/nfc/nfc 0x1d8e04ff nfc_target_lost -EXPORT_SYMBOL net/nfc/nfc 0x47d01043 nfc_allocate_device -EXPORT_SYMBOL net/nfc/nfc 0x4b595ee2 nfc_send_to_raw_sock -EXPORT_SYMBOL net/nfc/nfc 0x54b7db07 nfc_se_transaction -EXPORT_SYMBOL net/nfc/nfc 0x5940b8e0 __nfc_alloc_vendor_cmd_reply_skb -EXPORT_SYMBOL net/nfc/nfc 0x5996168b nfc_remove_se -EXPORT_SYMBOL net/nfc/nfc 0x5e3c1d35 nfc_get_local_general_bytes -EXPORT_SYMBOL net/nfc/nfc 0x6dcea9f9 nfc_class -EXPORT_SYMBOL net/nfc/nfc 0x739adc98 nfc_tm_deactivated -EXPORT_SYMBOL net/nfc/nfc 0x78c9ad2f nfc_find_se -EXPORT_SYMBOL net/nfc/nfc 0x7ea35fab nfc_register_device -EXPORT_SYMBOL net/nfc/nfc 0x84e9270f nfc_vendor_cmd_reply -EXPORT_SYMBOL net/nfc/nfc 0x86d9aa88 nfc_targets_found -EXPORT_SYMBOL net/nfc/nfc 0x9195956b nfc_tm_activated -EXPORT_SYMBOL net/nfc/nfc 0xac6f4dc3 nfc_proto_register -EXPORT_SYMBOL net/nfc/nfc 0xb3b591b8 nfc_add_se -EXPORT_SYMBOL net/nfc/nfc 0xd45dffbb nfc_unregister_device -EXPORT_SYMBOL net/nfc/nfc 0xd790d208 nfc_dep_link_is_up -EXPORT_SYMBOL net/nfc/nfc 0xecc9d58b nfc_fw_download_done -EXPORT_SYMBOL net/nfc/nfc 0xf1823b2a nfc_set_remote_general_bytes -EXPORT_SYMBOL net/nfc/nfc 0xf6f44807 nfc_alloc_recv_skb -EXPORT_SYMBOL net/nfc/nfc 0xfada514a nfc_tm_data_received -EXPORT_SYMBOL net/nfc/nfc 0xffadcd64 nfc_driver_failure -EXPORT_SYMBOL net/nfc/nfc_digital 0x4cf80334 nfc_digital_register_device -EXPORT_SYMBOL net/nfc/nfc_digital 0xe79de798 nfc_digital_free_device -EXPORT_SYMBOL net/nfc/nfc_digital 0xed418865 nfc_digital_allocate_device -EXPORT_SYMBOL net/nfc/nfc_digital 0xed68f2e5 nfc_digital_unregister_device -EXPORT_SYMBOL net/phonet/phonet 0x0428476a pn_skb_send -EXPORT_SYMBOL net/phonet/phonet 0x22871717 phonet_stream_ops -EXPORT_SYMBOL net/phonet/phonet 0x2f337411 pn_sock_unhash -EXPORT_SYMBOL net/phonet/phonet 0x46572606 phonet_proto_register -EXPORT_SYMBOL net/phonet/phonet 0x8fe69fee phonet_proto_unregister -EXPORT_SYMBOL net/phonet/phonet 0xa5213363 phonet_header_ops -EXPORT_SYMBOL net/phonet/phonet 0xc4a0066b pn_sock_hash -EXPORT_SYMBOL net/phonet/phonet 0xe20601ca pn_sock_get_port -EXPORT_SYMBOL net/rxrpc/rxrpc 0x29155a34 rxrpc_kernel_get_epoch -EXPORT_SYMBOL net/rxrpc/rxrpc 0x2a38e292 rxrpc_kernel_send_data +EXPORT_SYMBOL net/nfc/nci/nci 0xc2c847ee nci_send_frame +EXPORT_SYMBOL net/nfc/nci/nci 0xc818d455 nci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xcd579435 nci_hci_connect_gate +EXPORT_SYMBOL net/nfc/nci/nci 0xd083ed3b nci_hci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xd3d89a4a nci_nfcee_discover +EXPORT_SYMBOL net/nfc/nci/nci 0xddf347c1 nci_get_conn_info_by_dest_type_params +EXPORT_SYMBOL net/nfc/nci/nci 0xe36116f2 nci_req_complete +EXPORT_SYMBOL net/nfc/nci/nci 0xe6a6b0d1 nci_hci_send_event +EXPORT_SYMBOL net/nfc/nci/nci 0xe87cc7f5 nci_hci_open_pipe +EXPORT_SYMBOL net/nfc/nfc 0x01a9e54d nfc_proto_register +EXPORT_SYMBOL net/nfc/nfc 0x0c5464a5 nfc_se_transaction +EXPORT_SYMBOL net/nfc/nfc 0x10d15372 nfc_fw_download_done +EXPORT_SYMBOL net/nfc/nfc 0x1c7c72a7 nfc_class +EXPORT_SYMBOL net/nfc/nfc 0x1f334d46 nfc_tm_activated +EXPORT_SYMBOL net/nfc/nfc 0x2c7e71b5 nfc_find_se +EXPORT_SYMBOL net/nfc/nfc 0x339ac2a7 nfc_alloc_recv_skb +EXPORT_SYMBOL net/nfc/nfc 0x40f45473 nfc_send_to_raw_sock +EXPORT_SYMBOL net/nfc/nfc 0x457028a9 nfc_proto_unregister +EXPORT_SYMBOL net/nfc/nfc 0x505c87cf nfc_se_connectivity +EXPORT_SYMBOL net/nfc/nfc 0x530ff6aa nfc_driver_failure +EXPORT_SYMBOL net/nfc/nfc 0x60d70a45 nfc_register_device +EXPORT_SYMBOL net/nfc/nfc 0x6346127c nfc_add_se +EXPORT_SYMBOL net/nfc/nfc 0x77977b65 nfc_tm_data_received +EXPORT_SYMBOL net/nfc/nfc 0x94487cd4 __nfc_alloc_vendor_cmd_reply_skb +EXPORT_SYMBOL net/nfc/nfc 0x954648bf nfc_targets_found +EXPORT_SYMBOL net/nfc/nfc 0x9677ed41 nfc_allocate_device +EXPORT_SYMBOL net/nfc/nfc 0xa067cf6f nfc_get_local_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0xac6b2840 nfc_target_lost +EXPORT_SYMBOL net/nfc/nfc 0xb15f4b63 nfc_vendor_cmd_reply +EXPORT_SYMBOL net/nfc/nfc 0xb4ccee3a nfc_set_remote_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0xb8c69602 nfc_unregister_device +EXPORT_SYMBOL net/nfc/nfc 0xba5b49da nfc_dep_link_is_up +EXPORT_SYMBOL net/nfc/nfc 0xf00aa9a0 nfc_tm_deactivated +EXPORT_SYMBOL net/nfc/nfc 0xf3f77f94 nfc_remove_se +EXPORT_SYMBOL net/nfc/nfc_digital 0x323515fc nfc_digital_register_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x412a97ab nfc_digital_free_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x6cadf898 nfc_digital_unregister_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x7843ff38 nfc_digital_allocate_device +EXPORT_SYMBOL net/phonet/phonet 0x1cbe6630 phonet_stream_ops +EXPORT_SYMBOL net/phonet/phonet 0x22af9453 pn_sock_get_port +EXPORT_SYMBOL net/phonet/phonet 0x5a98c420 pn_skb_send +EXPORT_SYMBOL net/phonet/phonet 0x68defe95 phonet_header_ops +EXPORT_SYMBOL net/phonet/phonet 0xc1b22354 pn_sock_hash +EXPORT_SYMBOL net/phonet/phonet 0xd99c490b phonet_proto_register +EXPORT_SYMBOL net/phonet/phonet 0xf62f8e90 pn_sock_unhash +EXPORT_SYMBOL net/phonet/phonet 0xfe540c7c phonet_proto_unregister +EXPORT_SYMBOL net/rxrpc/rxrpc 0x0748eacf rxrpc_kernel_set_tx_length +EXPORT_SYMBOL net/rxrpc/rxrpc 0x2697cccd rxrpc_kernel_get_epoch +EXPORT_SYMBOL net/rxrpc/rxrpc 0x2851a0d1 rxrpc_kernel_get_srtt EXPORT_SYMBOL net/rxrpc/rxrpc 0x31bf3ca3 rxrpc_debug_id -EXPORT_SYMBOL net/rxrpc/rxrpc 0x33605b91 key_type_rxrpc -EXPORT_SYMBOL net/rxrpc/rxrpc 0x35de4eb2 rxrpc_kernel_set_tx_length -EXPORT_SYMBOL net/rxrpc/rxrpc 0x3a6bd3d5 rxrpc_kernel_end_call -EXPORT_SYMBOL net/rxrpc/rxrpc 0x3d15793b rxrpc_kernel_get_peer -EXPORT_SYMBOL net/rxrpc/rxrpc 0x3da67813 rxrpc_kernel_set_max_life -EXPORT_SYMBOL net/rxrpc/rxrpc 0x6a3f76c6 rxrpc_kernel_charge_accept -EXPORT_SYMBOL net/rxrpc/rxrpc 0x6d5fde4c rxrpc_kernel_get_reply_time -EXPORT_SYMBOL net/rxrpc/rxrpc 0x6fb2b919 rxrpc_kernel_check_life -EXPORT_SYMBOL net/rxrpc/rxrpc 0x782772ce rxrpc_kernel_new_call_notification -EXPORT_SYMBOL net/rxrpc/rxrpc 0x97134b28 rxrpc_get_server_data_key -EXPORT_SYMBOL net/rxrpc/rxrpc 0xabfe8b53 rxrpc_kernel_begin_call -EXPORT_SYMBOL net/rxrpc/rxrpc 0xd6bacb93 rxrpc_sock_set_min_security_level -EXPORT_SYMBOL net/rxrpc/rxrpc 0xe654b5ba rxrpc_kernel_get_srtt -EXPORT_SYMBOL net/rxrpc/rxrpc 0xe7895e63 rxrpc_kernel_recv_data -EXPORT_SYMBOL net/rxrpc/rxrpc 0xeaa09ded rxrpc_get_null_key -EXPORT_SYMBOL net/rxrpc/rxrpc 0xf328bddc rxrpc_kernel_abort_call -EXPORT_SYMBOL net/sctp/sctp 0x743a45ca sctp_do_peeloff -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x43b42131 gss_mech_put -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xbff3fcb0 gss_mech_get -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xd4a6754d gss_pseudoflavor_to_service -EXPORT_SYMBOL net/sunrpc/sunrpc 0x51aed45c svc_pool_stats_open -EXPORT_SYMBOL net/sunrpc/sunrpc 0x57a64b05 get_srcport -EXPORT_SYMBOL net/sunrpc/sunrpc 0xcaae3db4 xdr_restrict_buflen -EXPORT_SYMBOL net/sunrpc/sunrpc 0xef093c20 xdr_truncate_encode -EXPORT_SYMBOL net/tipc/tipc 0x003d76c0 tipc_dump_done -EXPORT_SYMBOL net/tipc/tipc 0x46415832 tipc_nl_sk_walk -EXPORT_SYMBOL net/tipc/tipc 0x7af9fe2b tipc_sk_fill_sock_diag -EXPORT_SYMBOL net/tipc/tipc 0x7c5dfeae tipc_dump_start -EXPORT_SYMBOL net/tls/tls 0x41e63d1d tls_get_record -EXPORT_SYMBOL net/wireless/cfg80211 0x03dc398b cfg80211_rx_control_port -EXPORT_SYMBOL net/wireless/cfg80211 0x044f2516 cfg80211_tx_mgmt_expired -EXPORT_SYMBOL net/wireless/cfg80211 0x07ce10c0 regulatory_hint -EXPORT_SYMBOL net/wireless/cfg80211 0x08580571 cfg80211_sta_opmode_change_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x0a66497b cfg80211_register_netdevice -EXPORT_SYMBOL net/wireless/cfg80211 0x0ba0dafe cfg80211_iter_combinations -EXPORT_SYMBOL net/wireless/cfg80211 0x0e0b45aa wiphy_unregister -EXPORT_SYMBOL net/wireless/cfg80211 0x0e2e9d4a cfg80211_michael_mic_failure -EXPORT_SYMBOL net/wireless/cfg80211 0x0f5e528c freq_reg_info +EXPORT_SYMBOL net/rxrpc/rxrpc 0x40036b4a rxrpc_kernel_recv_data +EXPORT_SYMBOL net/rxrpc/rxrpc 0x477918f9 rxrpc_kernel_abort_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0x5759bedb rxrpc_get_null_key +EXPORT_SYMBOL net/rxrpc/rxrpc 0x64989218 rxrpc_kernel_end_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0x6ac0972c key_type_rxrpc +EXPORT_SYMBOL net/rxrpc/rxrpc 0x8d06c550 rxrpc_kernel_charge_accept +EXPORT_SYMBOL net/rxrpc/rxrpc 0x92df26d8 rxrpc_kernel_send_data +EXPORT_SYMBOL net/rxrpc/rxrpc 0xa32cabb9 rxrpc_kernel_begin_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0xa789ccf7 rxrpc_kernel_check_life +EXPORT_SYMBOL net/rxrpc/rxrpc 0xb6ae6ee2 rxrpc_kernel_get_peer +EXPORT_SYMBOL net/rxrpc/rxrpc 0xc074eef5 rxrpc_sock_set_min_security_level +EXPORT_SYMBOL net/rxrpc/rxrpc 0xcac745d2 rxrpc_get_server_data_key +EXPORT_SYMBOL net/rxrpc/rxrpc 0xdf835cc6 rxrpc_kernel_new_call_notification +EXPORT_SYMBOL net/rxrpc/rxrpc 0xe9a92576 rxrpc_kernel_set_max_life +EXPORT_SYMBOL net/rxrpc/rxrpc 0xf3d49b45 rxrpc_kernel_get_reply_time +EXPORT_SYMBOL net/sctp/sctp 0x4b743d07 sctp_do_peeloff +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x1b73f073 gss_mech_put +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xcc06c289 gss_mech_get +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xdd396072 gss_pseudoflavor_to_service +EXPORT_SYMBOL net/sunrpc/sunrpc 0x20628cff xdr_restrict_buflen +EXPORT_SYMBOL net/sunrpc/sunrpc 0x66275a0e xdr_truncate_encode +EXPORT_SYMBOL net/sunrpc/sunrpc 0x814c0a4d get_srcport +EXPORT_SYMBOL net/sunrpc/sunrpc 0xea4415e2 svc_pool_stats_open +EXPORT_SYMBOL net/tipc/tipc 0x37c0ba14 tipc_nl_sk_walk +EXPORT_SYMBOL net/tipc/tipc 0xc88fa4ed tipc_sk_fill_sock_diag +EXPORT_SYMBOL net/tipc/tipc 0xe71a01c4 tipc_dump_start +EXPORT_SYMBOL net/tipc/tipc 0xf3ff4bec tipc_dump_done +EXPORT_SYMBOL net/tls/tls 0x818f177c tls_get_record +EXPORT_SYMBOL net/wireless/cfg80211 0x012b3d01 cfg80211_cqm_pktloss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x01504a47 get_wiphy_regdom +EXPORT_SYMBOL net/wireless/cfg80211 0x032adf68 cfg80211_tx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x0376de8f cfg80211_tx_mgmt_expired +EXPORT_SYMBOL net/wireless/cfg80211 0x06129ba2 regulatory_set_wiphy_regd_sync +EXPORT_SYMBOL net/wireless/cfg80211 0x066aed9d cfg80211_inform_bss_data +EXPORT_SYMBOL net/wireless/cfg80211 0x08b558b1 cfg80211_tdls_oper_request +EXPORT_SYMBOL net/wireless/cfg80211 0x08fe4c16 ieee80211_amsdu_to_8023s +EXPORT_SYMBOL net/wireless/cfg80211 0x0b60556a cfg80211_scan_done +EXPORT_SYMBOL net/wireless/cfg80211 0x0c5bde2c cfg80211_rx_unexpected_4addr_frame +EXPORT_SYMBOL net/wireless/cfg80211 0x0ee5dcc6 cfg80211_michael_mic_failure EXPORT_SYMBOL net/wireless/cfg80211 0x117aca91 cfg80211_merge_profile -EXPORT_SYMBOL net/wireless/cfg80211 0x123be198 cfg80211_iftype_allowed -EXPORT_SYMBOL net/wireless/cfg80211 0x1588ba15 cfg80211_bss_color_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x1223ee2c cfg80211_report_obss_beacon_khz +EXPORT_SYMBOL net/wireless/cfg80211 0x12bf4209 cfg80211_classify8021d +EXPORT_SYMBOL net/wireless/cfg80211 0x1344b1b9 cfg80211_check_station_change +EXPORT_SYMBOL net/wireless/cfg80211 0x15701181 cfg80211_get_drvinfo EXPORT_SYMBOL net/wireless/cfg80211 0x15a37cf3 cfg80211_calculate_bitrate EXPORT_SYMBOL net/wireless/cfg80211 0x1879fcbd bridge_tunnel_header -EXPORT_SYMBOL net/wireless/cfg80211 0x19dd0974 cfg80211_report_wowlan_wakeup -EXPORT_SYMBOL net/wireless/cfg80211 0x1b4f85ae wiphy_rfkill_set_hw_state_reason -EXPORT_SYMBOL net/wireless/cfg80211 0x1bf018b7 cfg80211_conn_failed EXPORT_SYMBOL net/wireless/cfg80211 0x1ce2497f reg_query_regdb_wmm -EXPORT_SYMBOL net/wireless/cfg80211 0x1e6691ab cfg80211_get_drvinfo -EXPORT_SYMBOL net/wireless/cfg80211 0x205a370c ieee80211_get_num_supported_channels -EXPORT_SYMBOL net/wireless/cfg80211 0x21c81910 cfg80211_ch_switch_started_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x21974734 cfg80211_bss_color_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x230c2984 cfg80211_any_usable_channels EXPORT_SYMBOL net/wireless/cfg80211 0x2310adee ieee80211_bss_get_elem -EXPORT_SYMBOL net/wireless/cfg80211 0x23f9b74b cfg80211_cqm_pktloss_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x24aae428 cfg80211_rx_unprot_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x23da1f91 cfg80211_pmksa_candidate_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x24b87579 cfg80211_stop_iface +EXPORT_SYMBOL net/wireless/cfg80211 0x252c8eb2 cfg80211_notify_new_peer_candidate +EXPORT_SYMBOL net/wireless/cfg80211 0x2535618f cfg80211_remain_on_channel_expired EXPORT_SYMBOL net/wireless/cfg80211 0x275269b3 ieee80211_ie_split_ric EXPORT_SYMBOL net/wireless/cfg80211 0x27efff25 ieee80211_s1g_channel_width -EXPORT_SYMBOL net/wireless/cfg80211 0x28a15923 cfg80211_rx_unexpected_4addr_frame EXPORT_SYMBOL net/wireless/cfg80211 0x2a5d816f cfg80211_chandef_valid -EXPORT_SYMBOL net/wireless/cfg80211 0x2bd823c4 regulatory_pre_cac_allowed -EXPORT_SYMBOL net/wireless/cfg80211 0x2e944923 __cfg80211_alloc_event_skb -EXPORT_SYMBOL net/wireless/cfg80211 0x30538da0 get_wiphy_regdom -EXPORT_SYMBOL net/wireless/cfg80211 0x32053aad __cfg80211_alloc_reply_skb -EXPORT_SYMBOL net/wireless/cfg80211 0x3267915c ieee80211_amsdu_to_8023s -EXPORT_SYMBOL net/wireless/cfg80211 0x330bbcdd cfg80211_report_obss_beacon_khz -EXPORT_SYMBOL net/wireless/cfg80211 0x38619a9c cfg80211_mgmt_tx_status -EXPORT_SYMBOL net/wireless/cfg80211 0x3c2a5a86 cfg80211_scan_done -EXPORT_SYMBOL net/wireless/cfg80211 0x3cf7cffc cfg80211_classify8021d +EXPORT_SYMBOL net/wireless/cfg80211 0x2fcd797d cfg80211_ref_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x31323dfa __cfg80211_alloc_reply_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x3227fc1b cfg80211_abandon_assoc +EXPORT_SYMBOL net/wireless/cfg80211 0x388e540c cfg80211_ch_switch_started_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x3a4d856a cfg80211_reg_can_beacon_relax +EXPORT_SYMBOL net/wireless/cfg80211 0x3bc9aee4 cfg80211_sta_opmode_change_notify EXPORT_SYMBOL net/wireless/cfg80211 0x3d8e5894 cfg80211_chandef_compatible -EXPORT_SYMBOL net/wireless/cfg80211 0x3d946a3d cfg80211_chandef_dfs_required -EXPORT_SYMBOL net/wireless/cfg80211 0x3de91ed3 cfg80211_inform_bss_data -EXPORT_SYMBOL net/wireless/cfg80211 0x40c94e06 cfg80211_bss_iter -EXPORT_SYMBOL net/wireless/cfg80211 0x436053ce cfg80211_reg_can_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0x3f5ee30c cfg80211_assoc_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0x430cb167 cfg80211_disconnected EXPORT_SYMBOL net/wireless/cfg80211 0x43afadee ieee80211_radiotap_iterator_init -EXPORT_SYMBOL net/wireless/cfg80211 0x43d23d58 ieee80211_get_hdrlen_from_skb -EXPORT_SYMBOL net/wireless/cfg80211 0x4b36b24c cfg80211_cqm_rssi_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x4d5bcca6 cfg80211_sched_scan_results -EXPORT_SYMBOL net/wireless/cfg80211 0x588975f9 regulatory_set_wiphy_regd_sync -EXPORT_SYMBOL net/wireless/cfg80211 0x5b7aadf0 cfg80211_tdls_oper_request -EXPORT_SYMBOL net/wireless/cfg80211 0x5be5da01 cfg80211_ch_switch_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x619e6524 cfg80211_ft_event -EXPORT_SYMBOL net/wireless/cfg80211 0x61d6b219 cfg80211_ready_on_channel -EXPORT_SYMBOL net/wireless/cfg80211 0x63864dbd cfg80211_ref_bss -EXPORT_SYMBOL net/wireless/cfg80211 0x63e79ded cfg80211_chandef_usable -EXPORT_SYMBOL net/wireless/cfg80211 0x640a575a wiphy_rfkill_start_polling +EXPORT_SYMBOL net/wireless/cfg80211 0x452657e0 wiphy_register +EXPORT_SYMBOL net/wireless/cfg80211 0x49fa866f cfg80211_reg_can_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0x4ae0aeab cfg80211_cac_event +EXPORT_SYMBOL net/wireless/cfg80211 0x4b7280b3 cfg80211_ready_on_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x4c604c1c regulatory_pre_cac_allowed +EXPORT_SYMBOL net/wireless/cfg80211 0x5158acda wiphy_new_nm +EXPORT_SYMBOL net/wireless/cfg80211 0x5167b935 cfg80211_connect_done +EXPORT_SYMBOL net/wireless/cfg80211 0x5758179b cfg80211_rx_assoc_resp +EXPORT_SYMBOL net/wireless/cfg80211 0x57a56945 cfg80211_report_wowlan_wakeup +EXPORT_SYMBOL net/wireless/cfg80211 0x57b1eba6 cfg80211_nan_func_terminated +EXPORT_SYMBOL net/wireless/cfg80211 0x57bad4f3 wiphy_unregister +EXPORT_SYMBOL net/wireless/cfg80211 0x57f4c0de cfg80211_update_owe_info_event +EXPORT_SYMBOL net/wireless/cfg80211 0x59ea139e cfg80211_cqm_beacon_loss_notify EXPORT_SYMBOL net/wireless/cfg80211 0x652aeedf ieee80211_mandatory_rates -EXPORT_SYMBOL net/wireless/cfg80211 0x66be4782 cfg80211_rx_mgmt_khz -EXPORT_SYMBOL net/wireless/cfg80211 0x6809c6a4 cfg80211_cqm_beacon_loss_notify EXPORT_SYMBOL net/wireless/cfg80211 0x69b18f43 rfc1042_header -EXPORT_SYMBOL net/wireless/cfg80211 0x6b3560a7 cfg80211_new_sta EXPORT_SYMBOL net/wireless/cfg80211 0x6bedf402 ieee80211_freq_khz_to_channel -EXPORT_SYMBOL net/wireless/cfg80211 0x6d93c717 cfg80211_inform_bss_frame_data -EXPORT_SYMBOL net/wireless/cfg80211 0x6fd56185 cfg80211_stop_iface -EXPORT_SYMBOL net/wireless/cfg80211 0x704dcf2f cfg80211_rx_spurious_frame -EXPORT_SYMBOL net/wireless/cfg80211 0x726a7405 cfg80211_rx_assoc_resp -EXPORT_SYMBOL net/wireless/cfg80211 0x76d656aa cfg80211_put_bss -EXPORT_SYMBOL net/wireless/cfg80211 0x796d1761 cfg80211_notify_new_peer_candidate +EXPORT_SYMBOL net/wireless/cfg80211 0x6e2aac80 cfg80211_iter_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0x7037879a cfg80211_sched_scan_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0x71685c4f cfg80211_conn_failed 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 0x7af4790e freq_reg_info +EXPORT_SYMBOL net/wireless/cfg80211 0x7b93d6b4 cfg80211_sched_scan_stopped_locked EXPORT_SYMBOL net/wireless/cfg80211 0x7c3ac925 ieee80211_get_vht_max_nss +EXPORT_SYMBOL net/wireless/cfg80211 0x7c816ad3 cfg80211_get_bss EXPORT_SYMBOL net/wireless/cfg80211 0x7ef39823 ieee80211_hdrlen -EXPORT_SYMBOL net/wireless/cfg80211 0x80b9c5a5 wiphy_read_of_freq_limits +EXPORT_SYMBOL net/wireless/cfg80211 0x7fe04ace wiphy_free +EXPORT_SYMBOL net/wireless/cfg80211 0x80b6e177 cfg80211_rx_mlme_mgmt EXPORT_SYMBOL net/wireless/cfg80211 0x81874735 ieee80211_get_response_rate -EXPORT_SYMBOL net/wireless/cfg80211 0x829ed19d cfg80211_nan_func_terminated -EXPORT_SYMBOL net/wireless/cfg80211 0x83c316b9 cfg80211_check_combinations -EXPORT_SYMBOL net/wireless/cfg80211 0x8401ffcf cfg80211_external_auth_request -EXPORT_SYMBOL net/wireless/cfg80211 0x85011d5a cfg80211_check_station_change -EXPORT_SYMBOL net/wireless/cfg80211 0x87639465 wiphy_register -EXPORT_SYMBOL net/wireless/cfg80211 0x882fb998 cfg80211_unlink_bss -EXPORT_SYMBOL net/wireless/cfg80211 0x8ad344fa cfg80211_get_station -EXPORT_SYMBOL net/wireless/cfg80211 0x8c95eace cfg80211_sched_scan_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0x86cbfb5e cfg80211_control_port_tx_status +EXPORT_SYMBOL net/wireless/cfg80211 0x8850e591 cfg80211_gtk_rekey_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x8a7fa4c4 cfg80211_bss_iter +EXPORT_SYMBOL net/wireless/cfg80211 0x8b6983bb wiphy_rfkill_set_hw_state_reason +EXPORT_SYMBOL net/wireless/cfg80211 0x8f81b014 cfg80211_sched_scan_results EXPORT_SYMBOL net/wireless/cfg80211 0x8fa02936 cfg80211_free_nan_func -EXPORT_SYMBOL net/wireless/cfg80211 0x9465c55c wiphy_new_nm -EXPORT_SYMBOL net/wireless/cfg80211 0x954acc69 cfg80211_probe_status -EXPORT_SYMBOL net/wireless/cfg80211 0x95f7a09b cfg80211_radar_event -EXPORT_SYMBOL net/wireless/cfg80211 0x9613a360 cfg80211_roamed -EXPORT_SYMBOL net/wireless/cfg80211 0x9beb9b91 wiphy_free -EXPORT_SYMBOL net/wireless/cfg80211 0x9c4f42a9 cfg80211_get_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x8fb7f733 cfg80211_rx_unprot_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x91adcd92 ieee80211_data_to_8023_exthdr +EXPORT_SYMBOL net/wireless/cfg80211 0x91ae39f4 cfg80211_rx_control_port +EXPORT_SYMBOL net/wireless/cfg80211 0x932240d4 cfg80211_send_layer2_update +EXPORT_SYMBOL net/wireless/cfg80211 0x9b78b1b5 __cfg80211_send_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x9b938900 ieee80211_get_hdrlen_from_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x9bd3c223 cfg80211_del_sta_sinfo +EXPORT_SYMBOL net/wireless/cfg80211 0x9c1586ec cfg80211_nan_match EXPORT_SYMBOL net/wireless/cfg80211 0x9d6cba30 cfg80211_find_elem_match -EXPORT_SYMBOL net/wireless/cfg80211 0x9e316133 cfg80211_crit_proto_stopped -EXPORT_SYMBOL net/wireless/cfg80211 0xa386b1de cfg80211_del_sta_sinfo -EXPORT_SYMBOL net/wireless/cfg80211 0xa6b16054 cfg80211_reg_can_beacon_relax -EXPORT_SYMBOL net/wireless/cfg80211 0xaabf7848 cfg80211_remain_on_channel_expired -EXPORT_SYMBOL net/wireless/cfg80211 0xadc87f4b cfg80211_pmksa_candidate_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xae83b67e cfg80211_tx_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0xb5a283b1 cfg80211_gtk_rekey_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x9e546791 cfg80211_rx_spurious_frame +EXPORT_SYMBOL net/wireless/cfg80211 0xa0113a2c cfg80211_chandef_dfs_required +EXPORT_SYMBOL net/wireless/cfg80211 0xa12c4b62 cfg80211_register_netdevice +EXPORT_SYMBOL net/wireless/cfg80211 0xa20623f2 cfg80211_inform_bss_frame_data +EXPORT_SYMBOL net/wireless/cfg80211 0xa63dadf7 cfg80211_new_sta +EXPORT_SYMBOL net/wireless/cfg80211 0xa73de2dd cfg80211_chandef_usable +EXPORT_SYMBOL net/wireless/cfg80211 0xa94d264e cfg80211_mgmt_tx_status +EXPORT_SYMBOL net/wireless/cfg80211 0xb0c4d564 cfg80211_ibss_joined +EXPORT_SYMBOL net/wireless/cfg80211 0xb28c4408 ieee80211_get_num_supported_channels +EXPORT_SYMBOL net/wireless/cfg80211 0xb3487d14 cfg80211_radar_event +EXPORT_SYMBOL net/wireless/cfg80211 0xb6a42529 cfg80211_unregister_wdev EXPORT_SYMBOL net/wireless/cfg80211 0xb73aafb1 ieee80211_chandef_to_operating_class -EXPORT_SYMBOL net/wireless/cfg80211 0xbd572c71 cfg80211_assoc_timeout -EXPORT_SYMBOL net/wireless/cfg80211 0xbebdd92f cfg80211_auth_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0xb997ce4d cfg80211_cqm_rssi_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xbb156d01 regulatory_set_wiphy_regd +EXPORT_SYMBOL net/wireless/cfg80211 0xbb25cd09 wiphy_rfkill_start_polling +EXPORT_SYMBOL net/wireless/cfg80211 0xbcc25c62 wiphy_apply_custom_regulatory +EXPORT_SYMBOL net/wireless/cfg80211 0xbcdad4a5 cfg80211_auth_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0xbe7e8768 cfg80211_probe_status +EXPORT_SYMBOL net/wireless/cfg80211 0xc06abd5f cfg80211_iftype_allowed EXPORT_SYMBOL net/wireless/cfg80211 0xc1b99792 ieee80211_channel_to_freq_khz -EXPORT_SYMBOL net/wireless/cfg80211 0xc533ba14 cfg80211_connect_done EXPORT_SYMBOL net/wireless/cfg80211 0xc5dcacef ieee80211_operating_class_to_band -EXPORT_SYMBOL net/wireless/cfg80211 0xc690f7d1 regulatory_set_wiphy_regd -EXPORT_SYMBOL net/wireless/cfg80211 0xc70c0854 ieee80211_get_channel_khz -EXPORT_SYMBOL net/wireless/cfg80211 0xc8a7c1b3 cfg80211_unregister_wdev -EXPORT_SYMBOL net/wireless/cfg80211 0xc931fe81 __cfg80211_send_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xc61b511a cfg80211_unlink_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xc6b039cc cfg80211_ft_event +EXPORT_SYMBOL net/wireless/cfg80211 0xc6b88fd6 cfg80211_rx_mgmt_khz EXPORT_SYMBOL net/wireless/cfg80211 0xcc1a7c48 cfg80211_is_element_inherited -EXPORT_SYMBOL net/wireless/cfg80211 0xd21d78d0 ieee80211_data_to_8023_exthdr +EXPORT_SYMBOL net/wireless/cfg80211 0xd0a7695e cfg80211_get_station +EXPORT_SYMBOL net/wireless/cfg80211 0xd50c3125 __cfg80211_alloc_event_skb EXPORT_SYMBOL net/wireless/cfg80211 0xd56d55f3 ieee80211_get_mesh_hdrlen -EXPORT_SYMBOL net/wireless/cfg80211 0xd6603200 wiphy_apply_custom_regulatory -EXPORT_SYMBOL net/wireless/cfg80211 0xd857f66a cfg80211_ibss_joined +EXPORT_SYMBOL net/wireless/cfg80211 0xdaad09d4 ieee80211_get_channel_khz +EXPORT_SYMBOL net/wireless/cfg80211 0xdb6b8282 cfg80211_bss_flush EXPORT_SYMBOL net/wireless/cfg80211 0xdba126c1 reg_initiator_name -EXPORT_SYMBOL net/wireless/cfg80211 0xdc3521f7 cfg80211_update_owe_info_event -EXPORT_SYMBOL net/wireless/cfg80211 0xde9a3adc cfg80211_disconnected -EXPORT_SYMBOL net/wireless/cfg80211 0xdf5ecd6d cfg80211_any_usable_channels -EXPORT_SYMBOL net/wireless/cfg80211 0xe0a327eb cfg80211_control_port_tx_status +EXPORT_SYMBOL net/wireless/cfg80211 0xdbc0024c cfg80211_ch_switch_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xe09b8784 regulatory_hint +EXPORT_SYMBOL net/wireless/cfg80211 0xe109763d cfg80211_external_auth_request EXPORT_SYMBOL net/wireless/cfg80211 0xe334e6df cfg80211_sinfo_alloc_tid_stats -EXPORT_SYMBOL net/wireless/cfg80211 0xe498ec8a cfg80211_send_layer2_update -EXPORT_SYMBOL net/wireless/cfg80211 0xe5170236 cfg80211_rx_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0xe58f6fc6 cfg80211_cqm_txe_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xedaeb542 cfg80211_sched_scan_stopped_locked +EXPORT_SYMBOL net/wireless/cfg80211 0xe7937fce cfg80211_cqm_txe_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xee2c6302 cfg80211_put_bss EXPORT_SYMBOL net/wireless/cfg80211 0xef265f27 cfg80211_chandef_create -EXPORT_SYMBOL net/wireless/cfg80211 0xefbf8c76 cfg80211_bss_flush -EXPORT_SYMBOL net/wireless/cfg80211 0xf552f1ca cfg80211_abandon_assoc +EXPORT_SYMBOL net/wireless/cfg80211 0xf0e15600 cfg80211_roamed +EXPORT_SYMBOL net/wireless/cfg80211 0xf1a5dd66 wiphy_read_of_freq_limits +EXPORT_SYMBOL net/wireless/cfg80211 0xf2572d15 cfg80211_port_authorized +EXPORT_SYMBOL net/wireless/cfg80211 0xf275b823 cfg80211_crit_proto_stopped EXPORT_SYMBOL net/wireless/cfg80211 0xf5596d89 cfg80211_get_p2p_attr -EXPORT_SYMBOL net/wireless/cfg80211 0xf64eadb3 cfg80211_cac_event -EXPORT_SYMBOL net/wireless/cfg80211 0xf8a0cc3f cfg80211_port_authorized -EXPORT_SYMBOL net/wireless/cfg80211 0xfcd7b1d7 cfg80211_nan_match -EXPORT_SYMBOL net/wireless/lib80211 0x202b622a lib80211_crypt_info_free -EXPORT_SYMBOL net/wireless/lib80211 0x3211dd03 lib80211_crypt_delayed_deinit -EXPORT_SYMBOL net/wireless/lib80211 0x3296d645 lib80211_unregister_crypto_ops -EXPORT_SYMBOL net/wireless/lib80211 0x4d2696c6 lib80211_crypt_info_init -EXPORT_SYMBOL net/wireless/lib80211 0x69aeb1ca lib80211_register_crypto_ops -EXPORT_SYMBOL net/wireless/lib80211 0x7319c19e lib80211_get_crypto_ops -EXPORT_SYMBOL sound/ac97_bus 0xea538172 ac97_bus_type -EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0x60a88e04 snd_mixer_oss_ioctl_card +EXPORT_SYMBOL net/wireless/cfg80211 0xfef93497 cfg80211_check_combinations +EXPORT_SYMBOL net/wireless/lib80211 0x921da2f0 lib80211_unregister_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x9bb471ff lib80211_register_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0xac7c87ae lib80211_crypt_info_free +EXPORT_SYMBOL net/wireless/lib80211 0xb2234ce4 lib80211_get_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0xc1e69fb9 lib80211_crypt_info_init +EXPORT_SYMBOL net/wireless/lib80211 0xf914b1d2 lib80211_crypt_delayed_deinit +EXPORT_SYMBOL sound/ac97_bus 0x2c44d16d ac97_bus_type +EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0x881bf757 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 0x3126c070 snd_seq_event_port_attach EXPORT_SYMBOL sound/core/seq/snd-seq 0x3fb4d161 snd_seq_kernel_client_dispatch -EXPORT_SYMBOL sound/core/seq/snd-seq 0x432efe2a snd_seq_kernel_client_enqueue EXPORT_SYMBOL sound/core/seq/snd-seq 0x6bb71038 snd_seq_delete_kernel_client +EXPORT_SYMBOL sound/core/seq/snd-seq 0x6db54a22 snd_seq_kernel_client_enqueue 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 0x83c18a3b snd_seq_kernel_client_write_poll EXPORT_SYMBOL sound/core/seq/snd-seq 0xb8e448a0 snd_seq_set_queue_tempo -EXPORT_SYMBOL sound/core/seq/snd-seq 0xd9c162d0 snd_seq_create_kernel_client +EXPORT_SYMBOL sound/core/seq/snd-seq 0xce8c0a37 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 0xf03e35f1 snd_seq_event_port_attach +EXPORT_SYMBOL sound/core/seq/snd-seq 0xffb789d8 snd_seq_kernel_client_write_poll EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x6ea09972 snd_midi_channel_alloc_set EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x833a3e07 snd_midi_channel_set_clear EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0xb9948d2c snd_midi_channel_free_set @@ -5753,422 +5757,422 @@ 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 0x8ea2098a snd_virmidi_new -EXPORT_SYMBOL sound/core/snd 0x0469a01f snd_register_device -EXPORT_SYMBOL sound/core/snd 0x05890e6a snd_mixer_oss_notify_callback -EXPORT_SYMBOL sound/core/snd 0x0f1e30ff snd_ctl_find_numid -EXPORT_SYMBOL sound/core/snd 0x14c88366 snd_ctl_unregister_ioctl +EXPORT_SYMBOL sound/core/seq/snd-seq-virmidi 0x40eed039 snd_virmidi_new +EXPORT_SYMBOL sound/core/snd 0x08a1f5c6 snd_ctl_find_numid +EXPORT_SYMBOL sound/core/snd 0x15ec1a6e snd_ctl_register_ioctl_compat EXPORT_SYMBOL sound/core/snd 0x198788b4 snd_lookup_oss_minor_data -EXPORT_SYMBOL sound/core/snd 0x21520411 snd_register_oss_device -EXPORT_SYMBOL sound/core/snd 0x23739ffd snd_ctl_rename_id -EXPORT_SYMBOL sound/core/snd 0x2405e0a1 snd_info_create_card_entry -EXPORT_SYMBOL sound/core/snd 0x243e35db snd_unregister_device -EXPORT_SYMBOL sound/core/snd 0x247ab92f snd_device_new EXPORT_SYMBOL sound/core/snd 0x24a94b26 snd_info_get_line -EXPORT_SYMBOL sound/core/snd 0x2bde0006 snd_card_file_add +EXPORT_SYMBOL sound/core/snd 0x2866e613 snd_unregister_oss_device +EXPORT_SYMBOL sound/core/snd 0x2a3c8d7e snd_ctl_notify +EXPORT_SYMBOL sound/core/snd 0x2a99da3a snd_ctl_remove_id +EXPORT_SYMBOL sound/core/snd 0x30934ba5 snd_ctl_add +EXPORT_SYMBOL sound/core/snd 0x329dcdfc snd_jack_set_key +EXPORT_SYMBOL sound/core/snd 0x331d88e5 snd_ctl_unregister_ioctl EXPORT_SYMBOL sound/core/snd 0x342a2354 copy_to_user_fromio +EXPORT_SYMBOL sound/core/snd 0x35805142 snd_jack_add_new_kctl +EXPORT_SYMBOL sound/core/snd 0x3686d45e snd_unregister_device EXPORT_SYMBOL sound/core/snd 0x3971b4df snd_ecards_limit -EXPORT_SYMBOL sound/core/snd 0x402477ed snd_pci_quirk_lookup -EXPORT_SYMBOL sound/core/snd 0x4264c748 snd_jack_new -EXPORT_SYMBOL sound/core/snd 0x48c74cad snd_jack_add_new_kctl +EXPORT_SYMBOL sound/core/snd 0x3af1926b snd_jack_report +EXPORT_SYMBOL sound/core/snd 0x40ff4e9b snd_info_create_card_entry EXPORT_SYMBOL sound/core/snd 0x4a3ea5c0 snd_request_card -EXPORT_SYMBOL sound/core/snd 0x4f92130f snd_ctl_remove_id -EXPORT_SYMBOL sound/core/snd 0x5ba49c2f snd_info_register -EXPORT_SYMBOL sound/core/snd 0x66350eab snd_ctl_unregister_ioctl_compat -EXPORT_SYMBOL sound/core/snd 0x72ef9304 snd_ctl_boolean_mono_info +EXPORT_SYMBOL sound/core/snd 0x4c1834b7 snd_seq_root +EXPORT_SYMBOL sound/core/snd 0x4cf364f1 snd_power_wait +EXPORT_SYMBOL sound/core/snd 0x4d6b8d53 snd_ctl_unregister_ioctl_compat +EXPORT_SYMBOL sound/core/snd 0x5c7897a7 snd_ctl_free_one +EXPORT_SYMBOL sound/core/snd 0x5e7afa2f snd_ctl_new1 +EXPORT_SYMBOL sound/core/snd 0x625c6be0 snd_register_device +EXPORT_SYMBOL sound/core/snd 0x63c83076 snd_ctl_make_virtual_master +EXPORT_SYMBOL sound/core/snd 0x66f16284 snd_ctl_boolean_stereo_info +EXPORT_SYMBOL sound/core/snd 0x6deed303 snd_register_oss_device EXPORT_SYMBOL sound/core/snd 0x73076315 snd_pci_quirk_lookup_id -EXPORT_SYMBOL sound/core/snd 0x7965a4cd snd_info_create_module_entry -EXPORT_SYMBOL sound/core/snd 0x7a1ff385 snd_jack_set_key -EXPORT_SYMBOL sound/core/snd 0x7cec990e snd_ctl_make_virtual_master -EXPORT_SYMBOL sound/core/snd 0x7e6213a9 snd_device_register -EXPORT_SYMBOL sound/core/snd 0x83641665 snd_ctl_replace -EXPORT_SYMBOL sound/core/snd 0x8457e7a4 snd_ctl_register_ioctl_compat -EXPORT_SYMBOL sound/core/snd 0x8677e4d3 snd_ctl_register_ioctl -EXPORT_SYMBOL sound/core/snd 0x86ea278a snd_jack_set_parent -EXPORT_SYMBOL sound/core/snd 0x8c138ad0 snd_card_disconnect +EXPORT_SYMBOL sound/core/snd 0x7515bcfe snd_device_register +EXPORT_SYMBOL sound/core/snd 0x86df5d5a snd_ctl_boolean_mono_info +EXPORT_SYMBOL sound/core/snd 0x8d6854df snd_ctl_notify_one EXPORT_SYMBOL sound/core/snd 0x8df3789f snd_oss_info_register EXPORT_SYMBOL sound/core/snd 0x8f595b11 snd_major -EXPORT_SYMBOL sound/core/snd 0x987ccf61 snd_unregister_oss_device -EXPORT_SYMBOL sound/core/snd 0x98d3ed90 snd_seq_root +EXPORT_SYMBOL sound/core/snd 0x96f5128e snd_card_set_id +EXPORT_SYMBOL sound/core/snd 0x9c611671 snd_ctl_rename_id EXPORT_SYMBOL sound/core/snd 0x9e6d79f8 snd_info_get_str -EXPORT_SYMBOL sound/core/snd 0x9f378307 snd_card_new -EXPORT_SYMBOL sound/core/snd 0xa36b6a76 snd_ctl_notify_one -EXPORT_SYMBOL sound/core/snd 0xae8f19b2 snd_card_file_remove +EXPORT_SYMBOL sound/core/snd 0x9e7bcb60 snd_device_free +EXPORT_SYMBOL sound/core/snd 0x9f4c8953 snd_ctl_remove +EXPORT_SYMBOL sound/core/snd 0xa5be616f snd_info_register +EXPORT_SYMBOL sound/core/snd 0xa61bc19e snd_info_free_entry +EXPORT_SYMBOL sound/core/snd 0xac16da11 snd_card_disconnect EXPORT_SYMBOL sound/core/snd 0xb2e5ae4a snd_lookup_minor_data -EXPORT_SYMBOL sound/core/snd 0xb5424168 snd_power_wait -EXPORT_SYMBOL sound/core/snd 0xb8534203 snd_device_free -EXPORT_SYMBOL sound/core/snd 0xbc284cee snd_card_register -EXPORT_SYMBOL sound/core/snd 0xbcbe4874 _snd_ctl_add_follower -EXPORT_SYMBOL sound/core/snd 0xbf700e56 snd_component_add -EXPORT_SYMBOL sound/core/snd 0xc2850a8b snd_ctl_find_id -EXPORT_SYMBOL sound/core/snd 0xc4f86c53 snd_card_set_id +EXPORT_SYMBOL sound/core/snd 0xb4fd5e80 snd_mixer_oss_notify_callback +EXPORT_SYMBOL sound/core/snd 0xb5218881 snd_card_register +EXPORT_SYMBOL sound/core/snd 0xb9693aa0 snd_ctl_find_id +EXPORT_SYMBOL sound/core/snd 0xbc594fb6 snd_component_add +EXPORT_SYMBOL sound/core/snd 0xbcb1fc37 snd_jack_set_parent +EXPORT_SYMBOL sound/core/snd 0xbf3b8eb4 _snd_ctl_add_follower +EXPORT_SYMBOL sound/core/snd 0xc2fe2dad snd_jack_new EXPORT_SYMBOL sound/core/snd 0xc5a6d10b release_and_free_resource -EXPORT_SYMBOL sound/core/snd 0xc62ee50a snd_card_free_when_closed EXPORT_SYMBOL sound/core/snd 0xcc6a729f snd_ctl_enum_info -EXPORT_SYMBOL sound/core/snd 0xd797cba0 snd_ctl_boolean_stereo_info -EXPORT_SYMBOL sound/core/snd 0xdd97106c snd_ctl_remove -EXPORT_SYMBOL sound/core/snd 0xdf89ecc6 snd_ctl_notify -EXPORT_SYMBOL sound/core/snd 0xe37aeb34 snd_ctl_add -EXPORT_SYMBOL sound/core/snd 0xf5712088 snd_info_free_entry -EXPORT_SYMBOL sound/core/snd 0xf7a036ba snd_ctl_new1 -EXPORT_SYMBOL sound/core/snd 0xfa76ce69 snd_jack_report -EXPORT_SYMBOL sound/core/snd 0xfb988163 snd_card_free -EXPORT_SYMBOL sound/core/snd 0xfe06c76f snd_ctl_free_one +EXPORT_SYMBOL sound/core/snd 0xcdc16680 snd_card_file_add +EXPORT_SYMBOL sound/core/snd 0xd17f61ea snd_ctl_register_ioctl +EXPORT_SYMBOL sound/core/snd 0xd2ddfc13 snd_device_new +EXPORT_SYMBOL sound/core/snd 0xe2d6fe12 snd_card_file_remove +EXPORT_SYMBOL sound/core/snd 0xe4146a3a snd_card_new +EXPORT_SYMBOL sound/core/snd 0xe708a00a snd_pci_quirk_lookup +EXPORT_SYMBOL sound/core/snd 0xe7926649 snd_card_free +EXPORT_SYMBOL sound/core/snd 0xece392b0 snd_info_create_module_entry +EXPORT_SYMBOL sound/core/snd 0xf71678c3 snd_ctl_replace +EXPORT_SYMBOL sound/core/snd 0xf71ffffb snd_card_free_when_closed EXPORT_SYMBOL sound/core/snd 0xfffd89db copy_from_user_toio -EXPORT_SYMBOL sound/core/snd-compress 0x1700fbdd snd_compr_free_pages -EXPORT_SYMBOL sound/core/snd-compress 0x1ffe09d4 snd_compr_malloc_pages -EXPORT_SYMBOL sound/core/snd-hwdep 0xf2a1b7db snd_hwdep_new +EXPORT_SYMBOL sound/core/snd-compress 0x25a86337 snd_compr_malloc_pages +EXPORT_SYMBOL sound/core/snd-compress 0x5204c10d snd_compr_free_pages +EXPORT_SYMBOL sound/core/snd-hwdep 0x334086d6 snd_hwdep_new EXPORT_SYMBOL sound/core/snd-pcm 0x0283dfe3 _snd_pcm_hw_params_any +EXPORT_SYMBOL sound/core/snd-pcm 0x046ac5c0 snd_pcm_set_sync EXPORT_SYMBOL sound/core/snd-pcm 0x04cda566 snd_interval_refine -EXPORT_SYMBOL sound/core/snd-pcm 0x072f090b snd_pcm_hw_param_first -EXPORT_SYMBOL sound/core/snd-pcm 0x0a8061ae snd_dma_alloc_pages_fallback -EXPORT_SYMBOL sound/core/snd-pcm 0x0b1a09e9 snd_pcm_hw_refine -EXPORT_SYMBOL sound/core/snd-pcm 0x0b26084e snd_pcm_create_iec958_consumer +EXPORT_SYMBOL sound/core/snd-pcm 0x0e59f7ea snd_pcm_hw_constraint_mask64 +EXPORT_SYMBOL sound/core/snd-pcm 0x0f5935ca snd_pcm_hw_constraint_ratdens EXPORT_SYMBOL sound/core/snd-pcm 0x11eba48e snd_pcm_create_iec958_consumer_hw_params -EXPORT_SYMBOL sound/core/snd-pcm 0x1ad4d3e2 snd_pcm_period_elapsed_under_stream_lock +EXPORT_SYMBOL sound/core/snd-pcm 0x12d7c226 snd_pcm_hw_refine +EXPORT_SYMBOL sound/core/snd-pcm 0x17d4a04d snd_pcm_hw_constraint_integer EXPORT_SYMBOL sound/core/snd-pcm 0x1d027e4b snd_pcm_format_signed -EXPORT_SYMBOL sound/core/snd-pcm 0x1fa00e8b snd_pcm_release_substream -EXPORT_SYMBOL sound/core/snd-pcm 0x243d2d8d snd_pcm_lib_ioctl -EXPORT_SYMBOL sound/core/snd-pcm 0x25c28344 snd_pcm_hw_constraint_ranges -EXPORT_SYMBOL sound/core/snd-pcm 0x34fd302e snd_dma_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x30c3d70c snd_pcm_new_stream EXPORT_SYMBOL sound/core/snd-pcm 0x3796bdcc snd_pcm_format_little_endian EXPORT_SYMBOL sound/core/snd-pcm 0x39bf9301 _snd_pcm_hw_param_setempty -EXPORT_SYMBOL sound/core/snd-pcm 0x39de786e snd_pcm_hw_constraint_step -EXPORT_SYMBOL sound/core/snd-pcm 0x40993da2 snd_pcm_lib_get_vmalloc_page -EXPORT_SYMBOL sound/core/snd-pcm 0x41e5381c snd_pcm_set_managed_buffer -EXPORT_SYMBOL sound/core/snd-pcm 0x427e3ede snd_pcm_hw_constraint_integer +EXPORT_SYMBOL sound/core/snd-pcm 0x3c0b69be snd_pcm_set_managed_buffer_all +EXPORT_SYMBOL sound/core/snd-pcm 0x3ce15d75 snd_dma_alloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x4d5a7c71 snd_pcm_lib_get_vmalloc_page +EXPORT_SYMBOL sound/core/snd-pcm 0x4f1dfdb1 snd_pcm_period_elapsed_under_stream_lock 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 0x52ce016f snd_pcm_hw_constraint_mask64 EXPORT_SYMBOL sound/core/snd-pcm 0x52e3e4a5 snd_pcm_hw_param_value -EXPORT_SYMBOL sound/core/snd-pcm 0x556a060b snd_pcm_lib_malloc_pages -EXPORT_SYMBOL sound/core/snd-pcm 0x582fd538 snd_pcm_lib_preallocate_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x53e8edbc snd_sgbuf_get_chunk_size +EXPORT_SYMBOL sound/core/snd-pcm 0x5e66d0d6 snd_pcm_lib_ioctl EXPORT_SYMBOL sound/core/snd-pcm 0x5e7f4920 snd_pcm_format_set_silence +EXPORT_SYMBOL sound/core/snd-pcm 0x60b07311 snd_pcm_suspend_all +EXPORT_SYMBOL sound/core/snd-pcm 0x63a814bf snd_pcm_lib_preallocate_free_for_all EXPORT_SYMBOL sound/core/snd-pcm 0x650f8603 snd_pcm_format_silence_64 +EXPORT_SYMBOL sound/core/snd-pcm 0x6519bf7b snd_pcm_period_elapsed EXPORT_SYMBOL sound/core/snd-pcm 0x68a24153 snd_pcm_format_physical_width EXPORT_SYMBOL sound/core/snd-pcm 0x69255f54 snd_pcm_hw_limit_rates +EXPORT_SYMBOL sound/core/snd-pcm 0x694d94d7 snd_pcm_stop +EXPORT_SYMBOL sound/core/snd-pcm 0x699a940f snd_pcm_new_internal +EXPORT_SYMBOL sound/core/snd-pcm 0x6ab727bd snd_pcm_lib_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x6d0802ce snd_dma_alloc_pages_fallback +EXPORT_SYMBOL sound/core/snd-pcm 0x6d5fad12 snd_pcm_hw_constraint_msbits EXPORT_SYMBOL sound/core/snd-pcm 0x6ef8fcd8 snd_pcm_format_linear -EXPORT_SYMBOL sound/core/snd-pcm 0x6faae7ec snd_pcm_hw_param_last -EXPORT_SYMBOL sound/core/snd-pcm 0x70a97597 __snd_pcm_lib_xfer -EXPORT_SYMBOL sound/core/snd-pcm 0x7337477c _snd_pcm_lib_alloc_vmalloc_buffer -EXPORT_SYMBOL sound/core/snd-pcm 0x76e0ad35 snd_pcm_lib_preallocate_free_for_all -EXPORT_SYMBOL sound/core/snd-pcm 0x7bc25162 snd_pcm_hw_rule_add +EXPORT_SYMBOL sound/core/snd-pcm 0x6f8c3362 snd_pcm_hw_constraint_step +EXPORT_SYMBOL sound/core/snd-pcm 0x70739b41 snd_sgbuf_get_page +EXPORT_SYMBOL sound/core/snd-pcm 0x79f85505 snd_pcm_hw_constraint_pow2 +EXPORT_SYMBOL sound/core/snd-pcm 0x816aabdd snd_pcm_lib_preallocate_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x825451ae snd_pcm_hw_constraint_list EXPORT_SYMBOL sound/core/snd-pcm 0x834dc955 snd_pcm_format_size -EXPORT_SYMBOL sound/core/snd-pcm 0x8ca4ea23 snd_pcm_new -EXPORT_SYMBOL sound/core/snd-pcm 0x8dc2c0d3 snd_pcm_set_sync -EXPORT_SYMBOL sound/core/snd-pcm 0x8dde8d2f snd_pcm_hw_rule_noresample -EXPORT_SYMBOL sound/core/snd-pcm 0x8fe23142 snd_sgbuf_get_page -EXPORT_SYMBOL sound/core/snd-pcm 0x9085d9b0 snd_sgbuf_get_addr +EXPORT_SYMBOL sound/core/snd-pcm 0x84b312a8 snd_pcm_new +EXPORT_SYMBOL sound/core/snd-pcm 0x86790a7d snd_pcm_hw_param_last +EXPORT_SYMBOL sound/core/snd-pcm 0x86a4c6af snd_pcm_lib_malloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x8e41c76c snd_pcm_lib_preallocate_pages_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0x93d4ff44 snd_pcm_create_iec958_consumer EXPORT_SYMBOL sound/core/snd-pcm 0x94098ff8 snd_interval_list -EXPORT_SYMBOL sound/core/snd-pcm 0x9c492084 snd_sgbuf_get_chunk_size -EXPORT_SYMBOL sound/core/snd-pcm 0xa36c5e4f snd_pcm_lib_free_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0xa2e6bbe7 snd_pcm_mmap_data +EXPORT_SYMBOL sound/core/snd-pcm 0xa52a80e6 snd_pcm_hw_constraint_ranges EXPORT_SYMBOL sound/core/snd-pcm 0xa61aa028 snd_pcm_format_unsigned -EXPORT_SYMBOL sound/core/snd-pcm 0xaa1a958b snd_pcm_hw_constraint_ratdens -EXPORT_SYMBOL sound/core/snd-pcm 0xabb76770 snd_pcm_period_elapsed +EXPORT_SYMBOL sound/core/snd-pcm 0xa7297e3a snd_pcm_hw_param_first +EXPORT_SYMBOL sound/core/snd-pcm 0xa7b74071 snd_sgbuf_get_addr +EXPORT_SYMBOL sound/core/snd-pcm 0xa89ea82d snd_pcm_lib_free_vmalloc_buffer EXPORT_SYMBOL sound/core/snd-pcm 0xac437f7b snd_interval_ratnum -EXPORT_SYMBOL sound/core/snd-pcm 0xafc54186 snd_pcm_mmap_data -EXPORT_SYMBOL sound/core/snd-pcm 0xb39a1b84 snd_pcm_suspend_all +EXPORT_SYMBOL sound/core/snd-pcm 0xae2f656b snd_pcm_release_substream +EXPORT_SYMBOL sound/core/snd-pcm 0xaf2dbe8a snd_pcm_open_substream +EXPORT_SYMBOL sound/core/snd-pcm 0xb197dc4f snd_dma_free_pages EXPORT_SYMBOL sound/core/snd-pcm 0xb9638db4 snd_pcm_rate_to_rate_bit -EXPORT_SYMBOL sound/core/snd-pcm 0xba47d1c8 snd_pcm_kernel_ioctl -EXPORT_SYMBOL sound/core/snd-pcm 0xbc7f006a snd_pcm_open_substream -EXPORT_SYMBOL sound/core/snd-pcm 0xbcc3e39c snd_pcm_hw_constraint_pow2 -EXPORT_SYMBOL sound/core/snd-pcm 0xc189212a snd_pcm_hw_constraint_msbits -EXPORT_SYMBOL sound/core/snd-pcm 0xc28cdaa7 snd_pcm_stop -EXPORT_SYMBOL sound/core/snd-pcm 0xc5492a87 snd_pcm_hw_constraint_list -EXPORT_SYMBOL sound/core/snd-pcm 0xca3e96b1 snd_pcm_hw_constraint_minmax -EXPORT_SYMBOL sound/core/snd-pcm 0xca4f6a96 snd_pcm_new_stream -EXPORT_SYMBOL sound/core/snd-pcm 0xcce4a7a9 snd_pcm_set_managed_buffer_all -EXPORT_SYMBOL sound/core/snd-pcm 0xd5d882f5 snd_pcm_set_ops -EXPORT_SYMBOL sound/core/snd-pcm 0xd68dc8cd snd_pcm_new_internal -EXPORT_SYMBOL sound/core/snd-pcm 0xd76c625b snd_pcm_lib_preallocate_pages_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0xbdd283e2 snd_pcm_hw_rule_add +EXPORT_SYMBOL sound/core/snd-pcm 0xc033afe8 snd_pcm_hw_constraint_minmax +EXPORT_SYMBOL sound/core/snd-pcm 0xc2afc37d snd_dma_buffer_mmap +EXPORT_SYMBOL sound/core/snd-pcm 0xc878ff17 snd_pcm_set_ops +EXPORT_SYMBOL sound/core/snd-pcm 0xc9be94b8 __snd_pcm_lib_xfer +EXPORT_SYMBOL sound/core/snd-pcm 0xcf9f9563 snd_pcm_hw_constraint_ratnums +EXPORT_SYMBOL sound/core/snd-pcm 0xdaa3690f snd_pcm_kernel_ioctl EXPORT_SYMBOL sound/core/snd-pcm 0xe56a9336 snd_pcm_format_width -EXPORT_SYMBOL sound/core/snd-pcm 0xecb863ef snd_pcm_lib_free_pages -EXPORT_SYMBOL sound/core/snd-pcm 0xf1ebdd60 snd_dma_buffer_mmap -EXPORT_SYMBOL sound/core/snd-pcm 0xfc6d0949 snd_dma_alloc_pages -EXPORT_SYMBOL sound/core/snd-pcm 0xfde453fa snd_pcm_hw_constraint_ratnums +EXPORT_SYMBOL sound/core/snd-pcm 0xef59292a _snd_pcm_lib_alloc_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0xf64a51b0 snd_pcm_set_managed_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0xfae6d976 snd_pcm_hw_rule_noresample EXPORT_SYMBOL sound/core/snd-pcm 0xff6104d0 snd_pcm_rate_bit_to_rate -EXPORT_SYMBOL sound/core/snd-rawmidi 0x014ee105 __snd_rawmidi_transmit_peek -EXPORT_SYMBOL sound/core/snd-rawmidi 0x0657aa33 snd_rawmidi_receive -EXPORT_SYMBOL sound/core/snd-rawmidi 0x0bbf1dc9 snd_rawmidi_new -EXPORT_SYMBOL sound/core/snd-rawmidi 0x13af85c6 __snd_rawmidi_transmit_ack -EXPORT_SYMBOL sound/core/snd-rawmidi 0x14224bee snd_rawmidi_transmit_peek -EXPORT_SYMBOL sound/core/snd-rawmidi 0x1ae4a327 snd_rawmidi_output_params -EXPORT_SYMBOL sound/core/snd-rawmidi 0x1e8646b0 snd_rawmidi_kernel_open -EXPORT_SYMBOL sound/core/snd-rawmidi 0x21794393 snd_rawmidi_info_select -EXPORT_SYMBOL sound/core/snd-rawmidi 0x3311835c snd_rawmidi_drain_output -EXPORT_SYMBOL sound/core/snd-rawmidi 0x88b9a353 snd_rawmidi_proceed -EXPORT_SYMBOL sound/core/snd-rawmidi 0x92c931d4 snd_rawmidi_set_ops -EXPORT_SYMBOL sound/core/snd-rawmidi 0x97416a21 snd_rawmidi_drain_input -EXPORT_SYMBOL sound/core/snd-rawmidi 0xa4f7085d snd_rawmidi_kernel_release -EXPORT_SYMBOL sound/core/snd-rawmidi 0xc13a5553 snd_rawmidi_transmit_empty -EXPORT_SYMBOL sound/core/snd-rawmidi 0xc5221149 snd_rawmidi_drop_output -EXPORT_SYMBOL sound/core/snd-rawmidi 0xd24aa23d snd_rawmidi_transmit_ack -EXPORT_SYMBOL sound/core/snd-rawmidi 0xd24f0207 snd_rawmidi_kernel_write -EXPORT_SYMBOL sound/core/snd-rawmidi 0xdf8ee199 snd_rawmidi_kernel_read -EXPORT_SYMBOL sound/core/snd-rawmidi 0xf0d50532 snd_rawmidi_transmit -EXPORT_SYMBOL sound/core/snd-rawmidi 0xfb4f7ef4 snd_rawmidi_input_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0x011ed33a snd_rawmidi_input_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0x10a50100 snd_rawmidi_kernel_open +EXPORT_SYMBOL sound/core/snd-rawmidi 0x15614d81 snd_rawmidi_set_ops +EXPORT_SYMBOL sound/core/snd-rawmidi 0x197da68f snd_rawmidi_new +EXPORT_SYMBOL sound/core/snd-rawmidi 0x36ed84a1 snd_rawmidi_receive +EXPORT_SYMBOL sound/core/snd-rawmidi 0x3e026600 snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0x514e1cd9 snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0x5ca14dc9 snd_rawmidi_output_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0x624aa759 snd_rawmidi_kernel_release +EXPORT_SYMBOL sound/core/snd-rawmidi 0x645ff288 snd_rawmidi_transmit_empty +EXPORT_SYMBOL sound/core/snd-rawmidi 0x6c17fc61 __snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0x8ae00752 snd_rawmidi_drain_input +EXPORT_SYMBOL sound/core/snd-rawmidi 0x9a4b574b snd_rawmidi_kernel_write +EXPORT_SYMBOL sound/core/snd-rawmidi 0xab7644d6 snd_rawmidi_transmit +EXPORT_SYMBOL sound/core/snd-rawmidi 0xb4cae6d8 snd_rawmidi_kernel_read +EXPORT_SYMBOL sound/core/snd-rawmidi 0xb7ced579 snd_rawmidi_proceed +EXPORT_SYMBOL sound/core/snd-rawmidi 0xcc0ebd6a snd_rawmidi_drain_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0xd36be15d __snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0xd9fce526 snd_rawmidi_info_select +EXPORT_SYMBOL sound/core/snd-rawmidi 0xecca3266 snd_rawmidi_drop_output EXPORT_SYMBOL sound/core/snd-seq-device 0x091def1c snd_seq_autoload_exit -EXPORT_SYMBOL sound/core/snd-seq-device 0x0da419c3 snd_seq_device_new EXPORT_SYMBOL sound/core/snd-seq-device 0x370a0736 snd_seq_autoload_init EXPORT_SYMBOL sound/core/snd-seq-device 0x6339b6d0 snd_seq_device_load_drivers -EXPORT_SYMBOL sound/core/snd-timer 0x02a5395d snd_timer_instance_new -EXPORT_SYMBOL sound/core/snd-timer 0x05de35c9 snd_timer_interrupt -EXPORT_SYMBOL sound/core/snd-timer 0x0a0a968d snd_timer_open -EXPORT_SYMBOL sound/core/snd-timer 0x233994b5 snd_timer_global_register -EXPORT_SYMBOL sound/core/snd-timer 0x3f220787 snd_timer_resolution -EXPORT_SYMBOL sound/core/snd-timer 0x4b997d68 snd_timer_new -EXPORT_SYMBOL sound/core/snd-timer 0x4f97aa4a snd_timer_close -EXPORT_SYMBOL sound/core/snd-timer 0x5279b0c7 snd_timer_pause -EXPORT_SYMBOL sound/core/snd-timer 0x5cdaec88 snd_timer_stop -EXPORT_SYMBOL sound/core/snd-timer 0x8da5e38c snd_timer_continue -EXPORT_SYMBOL sound/core/snd-timer 0xac9e6bb9 snd_timer_start -EXPORT_SYMBOL sound/core/snd-timer 0xb4188bae snd_timer_instance_free -EXPORT_SYMBOL sound/core/snd-timer 0xd9df4787 snd_timer_global_new -EXPORT_SYMBOL sound/core/snd-timer 0xea859b39 snd_timer_notify -EXPORT_SYMBOL sound/core/snd-timer 0xf7078d1a snd_timer_global_free -EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x61def301 snd_mpu401_uart_new +EXPORT_SYMBOL sound/core/snd-seq-device 0x7f9c3e18 snd_seq_device_new +EXPORT_SYMBOL sound/core/snd-timer 0x0506386c snd_timer_instance_new +EXPORT_SYMBOL sound/core/snd-timer 0x3622d380 snd_timer_close +EXPORT_SYMBOL sound/core/snd-timer 0x48398fb3 snd_timer_pause +EXPORT_SYMBOL sound/core/snd-timer 0x4fcd568e snd_timer_interrupt +EXPORT_SYMBOL sound/core/snd-timer 0x566ed0da snd_timer_stop +EXPORT_SYMBOL sound/core/snd-timer 0x5cc4aeb4 snd_timer_notify +EXPORT_SYMBOL sound/core/snd-timer 0x657c74fc snd_timer_new +EXPORT_SYMBOL sound/core/snd-timer 0x6fec31f2 snd_timer_instance_free +EXPORT_SYMBOL sound/core/snd-timer 0x8b10bd39 snd_timer_global_free +EXPORT_SYMBOL sound/core/snd-timer 0x8d720803 snd_timer_resolution +EXPORT_SYMBOL sound/core/snd-timer 0x91468f2e snd_timer_global_new +EXPORT_SYMBOL sound/core/snd-timer 0xa55e3051 snd_timer_open +EXPORT_SYMBOL sound/core/snd-timer 0xa90d65c4 snd_timer_global_register +EXPORT_SYMBOL sound/core/snd-timer 0xb61deffe snd_timer_continue +EXPORT_SYMBOL sound/core/snd-timer 0xdbd225c5 snd_timer_start EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x6d629c59 snd_mpu401_uart_interrupt_tx +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0xa10b0555 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 0x548a761c snd_opl3_find_patch -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x5f482997 snd_opl3_reset -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x69508df0 snd_opl3_init -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x79e904e3 snd_opl3_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x9d1b49a3 snd_opl3_load_patch -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xb0fa237b snd_opl3_create -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xc8788d24 snd_opl3_hwdep_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xf7143110 snd_opl3_timer_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xfa764a8e snd_opl3_interrupt -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x043df176 snd_vx_check_reg_bit +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x052abe3c snd_opl3_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x09b73b23 snd_opl3_create +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x09c9c4ea snd_opl3_load_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x38ca2f27 snd_opl3_interrupt +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x4bcfc55f snd_opl3_timer_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x58943d0a snd_opl3_find_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xba8b7769 snd_opl3_reset +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xe9662bb8 snd_opl3_init +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xf2d44ecf snd_opl3_hwdep_new +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x1ca016bf snd_vx_create EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x226138b0 snd_vx_threaded_irq_handler -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x2dacad5d snd_vx_resume -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x3a462492 snd_vx_dsp_boot -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x67bdafa2 snd_vx_setup_firmware -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x6b09b915 snd_vx_load_boot_image -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x75038120 snd_vx_dsp_load -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xb70d203d snd_vx_suspend -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xb7659fb3 snd_vx_create -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xe17dd2ea snd_vx_free_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x2a2a1c61 snd_vx_suspend +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x325f5831 snd_vx_check_reg_bit +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x34838ee2 snd_vx_dsp_boot +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x3b83ab06 snd_vx_load_boot_image +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x51d07d88 snd_vx_resume +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x61715108 snd_vx_setup_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xad30bba1 snd_vx_free_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xc116ba56 snd_vx_dsp_load EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf1f04d23 snd_vx_irq_handler -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x14a4cec0 avc_general_get_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x07c3e8db cmp_connection_break +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x07ee1a2b fw_iso_resources_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x1bf1a9e4 amdtp_stream_destroy EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x20254e45 amdtp_syt_intervals -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2970bdcf amdtp_stream_get_max_payload -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3ce50975 cmp_connection_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3d2193a1 amdtp_stream_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x420637a9 amdtp_stream_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x47cb2f27 fcp_avc_transaction -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x4c01fb2f cmp_connection_establish -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x5354441d fw_iso_resources_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x22f3032f cmp_connection_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x30c8beb2 fw_iso_resources_allocate +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3b50c929 fw_iso_resources_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x4546454d fw_iso_resources_free +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x519cf0d1 cmp_connection_establish EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x53ca18e8 amdtp_rate_table -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x68cd3903 fw_iso_resources_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x6db9b5fd iso_packets_buffer_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x6f37211b cmp_connection_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x701e35d7 cmp_connection_reserve -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x703cd45d fw_iso_resources_free -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x76b8c4d8 iso_packets_buffer_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7c80498e fcp_bus_reset -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x80a77726 amdtp_stream_set_parameters -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x881a3dd6 cmp_connection_update -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x990dc368 amdtp_stream_add_pcm_hw_constraints -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa96c0f41 cmp_connection_release -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xabaf1fc8 avc_general_set_sig_fmt -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb3c490d9 cmp_connection_check_used -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb4e872e7 snd_fw_transaction -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc406fab9 amdtp_stream_pcm_prepare -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc82704a1 fw_iso_resources_update -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd32a231f avc_general_get_plug_info -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd3863c51 cmp_connection_break -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd7c7033b amdtp_stream_update -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xeb7beb38 amdtp_stream_pcm_abort -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xf2fea4f4 fw_iso_resources_allocate -EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x02119a9f snd_ak4113_suspend -EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x89d2df66 snd_ak4113_resume -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x0800e950 snd_ak4114_reinit -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x429f11a1 snd_ak4114_external_rate -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x4e73d04f snd_ak4114_resume -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x5ec40d46 snd_ak4114_suspend -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x78874367 snd_ak4114_build -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xa8289335 snd_ak4114_check_rate_and_errors -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xec1c0f42 snd_ak4114_create -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xf344b90f snd_ak4114_reg_write -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x2927da53 snd_akm4xxx_build_controls -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x636008ca snd_akm4xxx_reset -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x65cdb5d3 snd_akm4xxx_init -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xcb084990 snd_akm4xxx_write -EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x0cd201b8 snd_pt2258_reset -EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x2656d851 snd_pt2258_build_controls -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x35121305 snd_cs8427_reg_write -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x4210d0c5 snd_cs8427_iec958_active -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x65a4bb62 snd_cs8427_create -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x7d9c2809 snd_cs8427_init -EXPORT_SYMBOL sound/i2c/snd-cs8427 0xe1fbfd34 snd_cs8427_iec958_pcm -EXPORT_SYMBOL sound/i2c/snd-cs8427 0xf3ac78ee snd_cs8427_iec958_build -EXPORT_SYMBOL sound/i2c/snd-i2c 0x175c6269 snd_i2c_probeaddr -EXPORT_SYMBOL sound/i2c/snd-i2c 0x33b143b1 snd_i2c_readbytes -EXPORT_SYMBOL sound/i2c/snd-i2c 0x4f18aa48 snd_i2c_device_free -EXPORT_SYMBOL sound/i2c/snd-i2c 0x923d4d95 snd_i2c_device_create -EXPORT_SYMBOL sound/i2c/snd-i2c 0xcd00943a snd_i2c_sendbytes -EXPORT_SYMBOL sound/i2c/snd-i2c 0xef580d5b snd_i2c_bus_create -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x06719e2e snd_ac97_bus -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x15b64f1d snd_ac97_update_bits -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x25bfe2ee snd_ac97_write_cache -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x39aa135c snd_ac97_write -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x439781cc snd_ac97_pcm_assign -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x4ca21228 snd_ac97_set_rate -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x80281d07 snd_ac97_read -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x87166e7d snd_ac97_pcm_open -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x88fe4139 snd_ac97_update_power -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xa1ab3c2b snd_ac97_update -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xa29ef2a1 snd_ac97_resume -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xb1b2e045 snd_ac97_tune_hardware -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xb49ed89f snd_ac97_get_short_name -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xc8735b9c snd_ac97_suspend -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xcf63293c snd_ac97_pcm_close -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xe02d00f3 snd_ac97_mixer -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xfafa1c7a snd_ac97_pcm_double_rate_rules -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x1a25e0bb snd_emu10k1_synth_alloc -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x2a8d30d8 snd_emu10k1_voice_alloc -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x337c69f7 snd_emu10k1_synth_bzero -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x75d8393e snd_emu10k1_memblk_map -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x871a0116 snd_emu10k1_ptr_write -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x97e559b9 snd_emu10k1_synth_free -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xc8d2ce10 snd_emu10k1_ptr_read -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xcb18dcca snd_emu10k1_voice_free -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xd9d15201 snd_emu10k1_synth_copy_from_user -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x144fc828 snd_ice1712_akm4xxx_init -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x1b70ab34 snd_ice1712_akm4xxx_free -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x6a33bbde snd_ice1712_akm4xxx_build_controls -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x0b258fca oxygen_read32 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x17b720e0 oxygen_write16_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x18daf4fc oxygen_pci_probe -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x34104fd7 oxygen_write_uart -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x51500177 oxygen_write16 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x585849a2 oxygen_write32_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x677cfb85 oxygen_write_i2c -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x6ad325ab oxygen_write_spi -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x6b6d1c58 oxygen_read16 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x6e905cf6 oxygen_write8 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x778f3c60 oxygen_write32 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x8583510a oxygen_read_ac97 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x8df890fb oxygen_read8 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xa1da843a oxygen_update_dac_routing -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xb7c599d2 oxygen_write_ac97 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xb994f235 oxygen_write_ac97_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xb9b7d086 oxygen_pci_pm -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xd13eab24 oxygen_write8_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xde63209b oxygen_reset_uart -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xf0425e63 oxygen_pci_shutdown -EXPORT_SYMBOL sound/pci/trident/snd-trident 0x3f618ab7 snd_trident_stop_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0x814bdae6 snd_trident_alloc_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0x96874357 snd_trident_start_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0xbc072af4 snd_trident_free_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0xd5803afb snd_trident_write_voice_regs +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x576afd4b amdtp_stream_get_max_payload +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x5d2142c6 avc_general_set_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x6060c7d0 iso_packets_buffer_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7211a76e fw_iso_resources_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7b05a868 amdtp_stream_pcm_prepare +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x84159e90 cmp_connection_release +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x89d4adb0 cmp_connection_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x963aa2fb snd_fw_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x9cb23755 amdtp_stream_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x9f9eff61 amdtp_stream_add_pcm_hw_constraints +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa33b468a amdtp_stream_set_parameters +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa6371db5 amdtp_stream_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa6e23388 cmp_connection_check_used +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb1068cce iso_packets_buffer_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb35a358c amdtp_stream_pcm_abort +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xbdddce9a avc_general_get_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc553d83f fcp_bus_reset +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xdbac5729 cmp_connection_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xddc7d817 avc_general_get_plug_info +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe92684ad cmp_connection_reserve +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xed344ccb fcp_avc_transaction +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0xb8ab7f66 snd_ak4113_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0xf6adb438 snd_ak4113_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x0d93d593 snd_ak4114_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x1a1eda03 snd_ak4114_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x380e1793 snd_ak4114_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x3a9ecf4e snd_ak4114_build +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x63f438f9 snd_ak4114_check_rate_and_errors +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x91271502 snd_ak4114_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xcd3082ee snd_ak4114_reinit +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xcd432dba snd_ak4114_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x55a2c97c snd_akm4xxx_init +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x97b0a6fa snd_akm4xxx_build_controls +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xd173c202 snd_akm4xxx_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xe800237b snd_akm4xxx_reset +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0xdaa5ec4d snd_pt2258_build_controls +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0xf2451b66 snd_pt2258_reset +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x29dcb61a snd_cs8427_iec958_build +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x4d407d77 snd_cs8427_create +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x51e3c295 snd_cs8427_iec958_active +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x5839fea4 snd_cs8427_init +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x6bcf9253 snd_cs8427_reg_write +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xa64ed0ce snd_cs8427_iec958_pcm +EXPORT_SYMBOL sound/i2c/snd-i2c 0x1f99fb40 snd_i2c_probeaddr +EXPORT_SYMBOL sound/i2c/snd-i2c 0x231bee10 snd_i2c_readbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0x554a623d snd_i2c_device_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0xa5a80dcb snd_i2c_device_free +EXPORT_SYMBOL sound/i2c/snd-i2c 0xaa802a33 snd_i2c_bus_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0xed2f3cbf snd_i2c_sendbytes +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x10cf9d27 snd_ac97_set_rate +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x226b3b8f snd_ac97_write +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x2bd120b1 snd_ac97_pcm_open +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x32ab84cd snd_ac97_write_cache +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x3dbb5f81 snd_ac97_update_bits +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x3f0b5a65 snd_ac97_read +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x54afd519 snd_ac97_pcm_double_rate_rules +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x5c115c4b snd_ac97_update +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x6ffc1294 snd_ac97_get_short_name +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x7818d810 snd_ac97_suspend +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x7f11e508 snd_ac97_pcm_close +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x82ea59ba snd_ac97_mixer +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x988d538e snd_ac97_bus +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x99be9156 snd_ac97_resume +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xdd9e60f2 snd_ac97_pcm_assign +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xe12ca16b snd_ac97_update_power +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xf3f8626f snd_ac97_tune_hardware +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x0852f9b0 snd_emu10k1_ptr_read +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x4f9c71da snd_emu10k1_voice_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x549748f4 snd_emu10k1_synth_alloc +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x5753f2e9 snd_emu10k1_synth_copy_from_user +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x62906a47 snd_emu10k1_voice_alloc +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x9798421d snd_emu10k1_synth_bzero +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xc6ae835a snd_emu10k1_synth_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xd1f57528 snd_emu10k1_ptr_write +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xdf0c630c snd_emu10k1_memblk_map +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x03a85286 snd_ice1712_akm4xxx_init +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xde827cf3 snd_ice1712_akm4xxx_free +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xe97aeff1 snd_ice1712_akm4xxx_build_controls +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x04311fd5 oxygen_write_ac97_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x0ef09a08 oxygen_read16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x327f7ace oxygen_update_dac_routing +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x3c53d8a2 oxygen_read_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x3d1a1730 oxygen_pci_shutdown +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x42e66dd0 oxygen_write_spi +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x6288d2aa oxygen_write32_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x790f8cd0 oxygen_write16_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x8f770bac oxygen_pci_probe +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x910dd0c3 oxygen_write_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xb09427a3 oxygen_write_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xb5bc738e oxygen_write_i2c +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xbc1e232b oxygen_pci_pm +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xbef07d7b oxygen_read32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xc737c633 oxygen_write16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xd8927e60 oxygen_write8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xe29b912d oxygen_write8_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xf34658e9 oxygen_reset_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xfa164140 oxygen_write32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xfb3331dc oxygen_read8 +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x1c5b51ba snd_trident_stop_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x46a60aee snd_trident_write_voice_regs +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x48c19eb4 snd_trident_start_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x5175cb01 snd_trident_free_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x999f322b snd_trident_alloc_voice EXPORT_SYMBOL sound/soc/amd/acp_audio_dma 0xea74f232 bt_uart_enable -EXPORT_SYMBOL sound/soc/codecs/snd-soc-adau1372 0xfe5b8a6a adau1372_probe -EXPORT_SYMBOL sound/soc/codecs/snd-soc-lpass-wsa-macro 0xa7839ee6 wsa_macro_set_spkr_mode -EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0x10abbd5a pcm3060_probe -EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0xb3597150 pcm3060_regmap +EXPORT_SYMBOL sound/soc/codecs/snd-soc-adau1372 0x963bfa20 adau1372_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-lpass-wsa-macro 0xb9e2ce2f wsa_macro_set_spkr_mode +EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0x07a529fe pcm3060_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0x91870bc0 pcm3060_regmap EXPORT_SYMBOL sound/soc/codecs/snd-soc-rt715 0xed2acb24 hda_to_sdw -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0xe3fbf1bd tlv320aic23_regmap -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0xffa6b741 tlv320aic23_probe -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x39fc68ac aic32x4_probe -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x947b7eb4 aic32x4_remove -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0xfcb6ddb5 aic32x4_regmap_config -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic3x 0x254b3c20 aic3x_probe -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic3x 0xac8d0df3 aic3x_remove -EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x03b7277f wcd_dt_parse_mbhc_data +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x7bf557c1 tlv320aic23_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0xcd0654ea tlv320aic23_regmap +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x5788fc69 aic32x4_regmap_config +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x7e498705 aic32x4_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0xe533b879 aic32x4_remove +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic3x 0x6edb866a aic3x_remove +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic3x 0x8d1360e3 aic3x_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x2b865339 wcd_mbhc_init EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x3a195ca9 wcd_mbhc_get_impedance -EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x71fe908a 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 0xbdaa8ce3 wcd_mbhc_start +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0xc8cec8ed 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 0xd9084664 wcd_mbhc_init EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0xe2beca26 wcd_mbhc_stop -EXPORT_SYMBOL sound/soc/mediatek/mt8192/snd-soc-mt8192-afe 0xc31d1ba5 mt8192_afe_gpio_init -EXPORT_SYMBOL sound/soc/mediatek/mt8192/snd-soc-mt8192-afe 0xcb333c81 mt8192_afe_gpio_request -EXPORT_SYMBOL sound/soc/qcom/qdsp6/q6afe 0x2d45f699 q6afe_vote_lpass_core_hw -EXPORT_SYMBOL sound/soc/qcom/qdsp6/q6afe 0x8a9f8118 q6afe_unvote_lpass_core_hw -EXPORT_SYMBOL sound/soc/qcom/snd-soc-qcom-common 0xc89f0189 qcom_snd_parse_of -EXPORT_SYMBOL sound/soc/snd-soc-core 0xb7044f0d snd_soc_alloc_ac97_component -EXPORT_SYMBOL sound/soc/sof/imx/imx-common 0xfb9ed2e9 imx8_dump -EXPORT_SYMBOL sound/soc/sof/imx/snd-sof-imx8 0x5ec86983 sof_imx8_ops -EXPORT_SYMBOL sound/soc/sof/imx/snd-sof-imx8 0xbda1afb9 sof_imx8x_ops -EXPORT_SYMBOL sound/soc/sof/imx/snd-sof-imx8m 0x32f4e5d6 sof_imx8m_ops -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x033d1e90 sof_block_read -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x05e29b88 sof_block_write -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x08d46a31 snd_sof_get_status -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x0a1fa812 sof_machine_check -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x0d930b93 snd_sof_parse_module_memcpy -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x13d72f26 snd_sof_ipc_valid -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x19c79600 snd_sof_resume -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x1b4ee464 sof_io_read64 +EXPORT_SYMBOL sound/soc/mediatek/mt8192/snd-soc-mt8192-afe 0x121fea9d mt8192_afe_gpio_init +EXPORT_SYMBOL sound/soc/mediatek/mt8192/snd-soc-mt8192-afe 0xd55ee0fc mt8192_afe_gpio_request +EXPORT_SYMBOL sound/soc/qcom/qdsp6/q6afe 0x6286f7f1 q6afe_unvote_lpass_core_hw +EXPORT_SYMBOL sound/soc/qcom/qdsp6/q6afe 0x785a001a q6afe_vote_lpass_core_hw +EXPORT_SYMBOL sound/soc/qcom/snd-soc-qcom-common 0x8ab87398 qcom_snd_parse_of +EXPORT_SYMBOL sound/soc/snd-soc-core 0xe9e21ed3 snd_soc_alloc_ac97_component +EXPORT_SYMBOL sound/soc/sof/imx/imx-common 0x1019b700 imx8_dump +EXPORT_SYMBOL sound/soc/sof/imx/snd-sof-imx8 0x5149a63d sof_imx8x_ops +EXPORT_SYMBOL sound/soc/sof/imx/snd-sof-imx8 0xd533cb42 sof_imx8_ops +EXPORT_SYMBOL sound/soc/sof/imx/snd-sof-imx8m 0x30e0f5b0 sof_imx8m_ops +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x00da99ab snd_sof_runtime_idle +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x0166f982 snd_sof_ipc_free +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x06710934 snd_sof_dsp_update_bits +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x09b4096c snd_sof_init_trace +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x09d90cc7 snd_sof_dsp_panic +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x11a48e77 sof_machine_check +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x140bad1e sof_machine_register EXPORT_SYMBOL sound/soc/sof/snd-sof 0x1d22a5ea sof_ipc_tx_message_no_pm -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x2541481b snd_sof_init_trace -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x29f12fe7 sof_mailbox_read -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x2b8d4bef snd_sof_dsp_mailbox_init -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x2e0654f0 snd_sof_dsp_only_d0i3_compatible_stream_active -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x3a191f06 snd_sof_suspend -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x3ae7462c sof_fw_ready -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x3f465622 snd_sof_ipc_stream_posn -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x41d4db58 snd_sof_runtime_suspend -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x475122ce snd_sof_pcm_period_elapsed -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x4a239e3f snd_sof_dsp_update_bits_forced -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x4c54f7a3 snd_sof_complete -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x4d2b3795 snd_sof_pci_update_bits -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x4f57d6ac sof_machine_register -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x524850cb snd_sof_ipc_reply -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x549627b8 sof_machine_unregister -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x5874c88f snd_sof_ipc_msgs_rx -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x652866ca snd_sof_runtime_resume -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x6b2019ec snd_sof_device_remove -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x6c4297cd snd_sof_ipc_set_get_comp_data -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x6e462305 snd_sof_trace_notify_for_error -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x6fb516f5 snd_sof_dsp_update_bits -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x799bc389 snd_sof_dsp_update_bits64 -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x7ca5d0f3 snd_sof_release_trace -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x81bb7ce7 snd_sof_dsp_panic -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x95ddd2b3 snd_sof_free_trace -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x9ed8735c snd_sof_handle_fw_exception -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa5c6f607 snd_sof_create_page_table -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa7f0b03b snd_sof_ipc_init -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa9e1ad2d snd_sof_device_probe_completed -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb08c9790 snd_sof_prepare -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb6049fda snd_sof_run_firmware -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xbac5a1b1 snd_sof_load_firmware_raw -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xbead78d6 snd_sof_ipc_free -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xbf8376c1 snd_sof_load_firmware_memcpy -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc4874eaa snd_sof_dsp_update_bits64_unlocked -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc4c19e1f sof_mailbox_write -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xcc7a7209 snd_sof_load_topology -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xcce86093 snd_sof_runtime_idle -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xcce87ce6 sof_io_read -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xcda19ba0 sof_io_write64 +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x21a6f8ea snd_sof_device_probe +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x24d1edab sof_io_read +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x2d6bc7a8 sof_fw_ready +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x3ba5e41f sof_pcm_dai_link_fixup +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x3eac9df3 snd_sof_device_shutdown +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x3f0ee7c6 snd_sof_device_remove +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x41c83ef7 snd_sof_ipc_reply +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x41d7780f sof_io_write +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x42ea36ad sof_dai_get_bclk +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x4e5145f5 snd_sof_ipc_stream_posn +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x4f2afe70 snd_sof_resume +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x4fea4fa4 snd_sof_dsp_update_bits_unlocked +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x51958195 sof_machine_unregister +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x55139a04 snd_sof_create_page_table +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x56491670 sof_io_read64 +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x59209ac5 snd_sof_parse_module_memcpy +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x5ae19f4f snd_sof_ipc_set_get_comp_data +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x5d215ca4 sof_mailbox_read +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x61ab73d6 snd_sof_fw_unload +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x648e110d snd_sof_handle_fw_exception +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x6864671b snd_sof_load_topology +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x6c6742cc sof_block_write +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x74b98c5f snd_sof_run_firmware +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x74fe643e snd_sof_prepare +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x759d51f0 snd_sof_load_firmware +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x7bf4242e snd_sof_free_trace +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x7e819747 snd_sof_pci_update_bits +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x8237df39 snd_sof_fw_parse_ext_data +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x859a6f37 snd_sof_pcm_period_elapsed +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x90549a9e snd_sof_load_firmware_memcpy +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x90b4492c snd_sof_complete +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x91074fb2 snd_sof_suspend +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x924ccafb sof_io_write64 +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x92578966 sof_mailbox_write +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa8db1988 snd_sof_dsp_only_d0i3_compatible_stream_active +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb1008357 snd_sof_release_trace +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb7d56336 sof_dai_get_mclk +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb9b86886 snd_sof_runtime_resume +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xba155ca5 snd_sof_ipc_valid +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xbc4e0aaf snd_sof_ipc_msgs_rx +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xbf712fd4 snd_sof_ipc_init +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc52f8a0d snd_sof_runtime_suspend +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc5ac482c snd_sof_get_status EXPORT_SYMBOL sound/soc/sof/snd-sof 0xcfdc5f98 sof_ipc_tx_message -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd115035c sof_dai_get_mclk -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd532c341 snd_sof_dsp_update_bits_unlocked -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xdaaaa7aa snd_sof_device_probe -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xe4c8a39b snd_sof_load_firmware -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xecaf12ab snd_sof_fw_parse_ext_data -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf45fbd65 snd_sof_device_shutdown -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xfe093281 sof_dai_get_bclk -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xfee24081 snd_sof_fw_unload -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xff3e8f2c sof_io_write -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xff44a9f7 sof_pcm_dai_link_fixup -EXPORT_SYMBOL sound/soundcore 0x680182fa sound_class +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd088ae37 snd_sof_load_firmware_raw +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd5658364 snd_sof_dsp_update_bits_forced +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xdc0ec57c snd_sof_device_probe_completed +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xe4c79547 snd_sof_dsp_update_bits64 +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xe510b70c snd_sof_dsp_update_bits64_unlocked +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xe734cf0f snd_sof_dsp_mailbox_init +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xeac6248a snd_sof_trace_notify_for_error +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xee47ecc3 sof_block_read +EXPORT_SYMBOL sound/soundcore 0x04add908 register_sound_mixer +EXPORT_SYMBOL sound/soundcore 0x31641636 sound_class +EXPORT_SYMBOL sound/soundcore 0x61e3186c register_sound_dsp EXPORT_SYMBOL sound/soundcore 0x7afc9d8a unregister_sound_mixer EXPORT_SYMBOL sound/soundcore 0x99c95fa5 unregister_sound_special -EXPORT_SYMBOL sound/soundcore 0x9a88027f register_sound_mixer -EXPORT_SYMBOL sound/soundcore 0xc296209c register_sound_special -EXPORT_SYMBOL sound/soundcore 0xc65695d6 register_sound_dsp +EXPORT_SYMBOL sound/soundcore 0xade8cf11 register_sound_special +EXPORT_SYMBOL sound/soundcore 0xb955ecb8 register_sound_special_device EXPORT_SYMBOL sound/soundcore 0xcd083b10 unregister_sound_dsp -EXPORT_SYMBOL sound/soundcore 0xe383fa99 register_sound_special_device -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x27d03889 snd_emux_lock_voice -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x41f25db1 snd_emux_unlock_voice EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x655cb202 snd_sf_linear_to_log -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x66ef8ac0 snd_emux_free -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xac79cbec snd_emux_new -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xd3b26d86 snd_emux_register -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xe965ce1b snd_emux_terminate_all +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x6b542483 snd_emux_terminate_all +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x81eb55a6 snd_emux_lock_voice +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x891ab4d0 snd_emux_register +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xc10a2574 snd_emux_new +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xe712f4c1 snd_emux_unlock_voice +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xf00f050d snd_emux_free EXPORT_SYMBOL sound/synth/snd-util-mem 0x0eda33fa snd_util_memhdr_new EXPORT_SYMBOL sound/synth/snd-util-mem 0x2a48197f snd_util_mem_alloc EXPORT_SYMBOL sound/synth/snd-util-mem 0x6517719f __snd_util_mem_free @@ -6177,5720 +6181,5754 @@ EXPORT_SYMBOL sound/synth/snd-util-mem 0x9adc8c44 __snd_util_memblk_new 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 0x00e3c259 __snd_usbmidi_create EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x16756dc0 snd_usbmidi_input_start EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x63343b1d snd_usbmidi_input_stop -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xab03021a __snd_usbmidi_create EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xb2af19e1 snd_usbmidi_resume EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xbed43a41 snd_usbmidi_suspend EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xd9d2bb03 snd_usbmidi_disconnect +EXPORT_SYMBOL vmlinux 0x0001de6e tcf_exts_terse_dump EXPORT_SYMBOL vmlinux 0x00148653 vsnprintf -EXPORT_SYMBOL vmlinux 0x0022adda mmc_retune_release -EXPORT_SYMBOL vmlinux 0x0053c94e pci_get_device -EXPORT_SYMBOL vmlinux 0x00a820f3 flow_block_cb_setup_simple -EXPORT_SYMBOL vmlinux 0x00b4a12b cdrom_check_events +EXPORT_SYMBOL vmlinux 0x0022988d put_cmsg +EXPORT_SYMBOL vmlinux 0x00447f9d blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0x004afaa3 sock_alloc_send_pskb +EXPORT_SYMBOL vmlinux 0x005250a3 tc_setup_cb_destroy +EXPORT_SYMBOL vmlinux 0x00555a12 page_pool_update_nid +EXPORT_SYMBOL vmlinux 0x00778451 read_cache_pages +EXPORT_SYMBOL vmlinux 0x008d5f9f xp_set_rxq_info EXPORT_SYMBOL vmlinux 0x00b4e615 posix_acl_equiv_mode +EXPORT_SYMBOL vmlinux 0x00b65f2a dcb_ieee_getapp_dscp_prio_mask_map +EXPORT_SYMBOL vmlinux 0x00bc1ef6 __netdev_alloc_skb +EXPORT_SYMBOL vmlinux 0x00c5bd15 xfrm_dst_ifdown +EXPORT_SYMBOL vmlinux 0x00cc678d mipi_dsi_shutdown_peripheral EXPORT_SYMBOL vmlinux 0x00d7e722 vme_lm_count -EXPORT_SYMBOL vmlinux 0x00d9a022 fget_raw +EXPORT_SYMBOL vmlinux 0x00dc52f7 skb_flow_dissect_tunnel_info +EXPORT_SYMBOL vmlinux 0x00e0ab26 xfrm6_rcv_tnl EXPORT_SYMBOL vmlinux 0x01000e51 schedule -EXPORT_SYMBOL vmlinux 0x0110e06c register_quota_format -EXPORT_SYMBOL vmlinux 0x0112301b xfrm_dst_ifdown +EXPORT_SYMBOL vmlinux 0x0117a240 vga_set_legacy_decoding EXPORT_SYMBOL vmlinux 0x011bab86 prepare_creds -EXPORT_SYMBOL vmlinux 0x011c539c filemap_range_has_page +EXPORT_SYMBOL vmlinux 0x011e2772 netdev_unbind_sb_channel EXPORT_SYMBOL vmlinux 0x0129c4f8 par_io_data_set EXPORT_SYMBOL vmlinux 0x012de2ea xudma_rchanrt_read -EXPORT_SYMBOL vmlinux 0x01311111 ethtool_rx_flow_rule_create +EXPORT_SYMBOL vmlinux 0x01367190 blk_mq_tag_to_rq +EXPORT_SYMBOL vmlinux 0x013eeebe devm_clk_hw_register_clkdev EXPORT_SYMBOL vmlinux 0x013f26ae dma_fence_get_stub -EXPORT_SYMBOL vmlinux 0x014754ed devm_request_any_context_irq +EXPORT_SYMBOL vmlinux 0x0140fb6e max8925_set_bits EXPORT_SYMBOL vmlinux 0x0147812c kblockd_mod_delayed_work_on +EXPORT_SYMBOL vmlinux 0x0149c80a udp_gro_complete +EXPORT_SYMBOL vmlinux 0x0149e379 flow_rule_match_enc_ipv4_addrs +EXPORT_SYMBOL vmlinux 0x014be6b7 i2c_smbus_read_word_data EXPORT_SYMBOL vmlinux 0x01505d85 imx_scu_call_rpc -EXPORT_SYMBOL vmlinux 0x0157fa65 blk_cleanup_disk +EXPORT_SYMBOL vmlinux 0x01513490 mmc_release_host +EXPORT_SYMBOL vmlinux 0x01581778 scsi_report_opcode EXPORT_SYMBOL vmlinux 0x015af7f4 system_state -EXPORT_SYMBOL vmlinux 0x01621be1 tty_port_free_xmit_buf +EXPORT_SYMBOL vmlinux 0x015bdbfd __bio_clone_fast +EXPORT_SYMBOL vmlinux 0x015cb0c0 input_mt_init_slots +EXPORT_SYMBOL vmlinux 0x015df6d8 napi_disable EXPORT_SYMBOL vmlinux 0x01757935 rdmacg_register_device -EXPORT_SYMBOL vmlinux 0x017a001e fbcon_update_vcs +EXPORT_SYMBOL vmlinux 0x017aaeb1 to_ndd +EXPORT_SYMBOL vmlinux 0x017ce50d jbd2_journal_flush EXPORT_SYMBOL vmlinux 0x017de3d5 nr_cpu_ids -EXPORT_SYMBOL vmlinux 0x01801c26 generic_shutdown_super -EXPORT_SYMBOL vmlinux 0x0184d11b phy_attached_info_irq +EXPORT_SYMBOL vmlinux 0x017e2c19 __inode_sub_bytes EXPORT_SYMBOL vmlinux 0x018574a1 mb_cache_entry_delete EXPORT_SYMBOL vmlinux 0x0188cd88 vme_alloc_consistent -EXPORT_SYMBOL vmlinux 0x0196a3f4 neigh_sysctl_register EXPORT_SYMBOL vmlinux 0x0199c3bd ethtool_intersect_link_masks -EXPORT_SYMBOL vmlinux 0x019c853a jbd2_journal_get_undo_access EXPORT_SYMBOL vmlinux 0x01b6865c xa_get_mark -EXPORT_SYMBOL vmlinux 0x01bf2321 pci_set_mwi EXPORT_SYMBOL vmlinux 0x01bf55fc paddr_vmcoreinfo_note -EXPORT_SYMBOL vmlinux 0x01c6a4f4 pci_pme_capable -EXPORT_SYMBOL vmlinux 0x01d61f77 vfs_setpos -EXPORT_SYMBOL vmlinux 0x01d67fdb dev_change_proto_down_generic +EXPORT_SYMBOL vmlinux 0x01bfe511 unregister_netdevice_notifier_dev_net +EXPORT_SYMBOL vmlinux 0x01c4f79f skb_find_text +EXPORT_SYMBOL vmlinux 0x01cef49e unregister_nexthop_notifier +EXPORT_SYMBOL vmlinux 0x01e7f429 __pskb_copy_fclone +EXPORT_SYMBOL vmlinux 0x01fc2fef phy_attached_info_irq +EXPORT_SYMBOL vmlinux 0x01ff21e7 scsicam_bios_param EXPORT_SYMBOL vmlinux 0x020dbf27 bitmap_alloc EXPORT_SYMBOL vmlinux 0x02124474 ip_send_check +EXPORT_SYMBOL vmlinux 0x0213f710 reuseport_attach_prog +EXPORT_SYMBOL vmlinux 0x0221beff security_inode_invalidate_secctx +EXPORT_SYMBOL vmlinux 0x022204d6 touch_buffer +EXPORT_SYMBOL vmlinux 0x02271fca sg_miter_start EXPORT_SYMBOL vmlinux 0x02293ac3 dma_fence_chain_ops -EXPORT_SYMBOL vmlinux 0x023a05f7 vme_dma_list_add -EXPORT_SYMBOL vmlinux 0x02478a70 __scsi_execute -EXPORT_SYMBOL vmlinux 0x0247e031 filemap_page_mkwrite +EXPORT_SYMBOL vmlinux 0x022b3761 skb_dequeue_tail EXPORT_SYMBOL vmlinux 0x0248efd3 kstrtobool_from_user -EXPORT_SYMBOL vmlinux 0x02502d1b skb_vlan_untag +EXPORT_SYMBOL vmlinux 0x025b5194 cdev_add +EXPORT_SYMBOL vmlinux 0x02611523 wireless_send_event EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues -EXPORT_SYMBOL vmlinux 0x0275c1cd gnet_stats_start_copy -EXPORT_SYMBOL vmlinux 0x0292f2ea generic_key_instantiate +EXPORT_SYMBOL vmlinux 0x028049a1 input_get_poll_interval EXPORT_SYMBOL vmlinux 0x0296695f refcount_warn_saturate -EXPORT_SYMBOL vmlinux 0x02a18c74 nf_conntrack_destroy +EXPORT_SYMBOL vmlinux 0x029d343b nd_btt_arena_is_valid +EXPORT_SYMBOL vmlinux 0x02af4ad4 eth_mac_addr +EXPORT_SYMBOL vmlinux 0x02b44205 send_sig_info EXPORT_SYMBOL vmlinux 0x02b8ab42 sg_copy_to_buffer -EXPORT_SYMBOL vmlinux 0x02b8fd69 scsi_dma_unmap EXPORT_SYMBOL vmlinux 0x02c065f8 ucc_set_qe_mux_mii_mng -EXPORT_SYMBOL vmlinux 0x02df46a9 pci_ep_cfs_remove_epc_group -EXPORT_SYMBOL vmlinux 0x02e77fce watchdog_unregister_governor -EXPORT_SYMBOL vmlinux 0x02fb00bf dns_query -EXPORT_SYMBOL vmlinux 0x0303a0e4 nf_unregister_net_hooks -EXPORT_SYMBOL vmlinux 0x0307ed52 vme_init_bridge +EXPORT_SYMBOL vmlinux 0x02c23833 rpmh_write +EXPORT_SYMBOL vmlinux 0x02e211c6 inet6_unregister_protosw +EXPORT_SYMBOL vmlinux 0x0300d01d __breadahead +EXPORT_SYMBOL vmlinux 0x03329089 cfb_imageblit EXPORT_SYMBOL vmlinux 0x0334795d icst307_s2div EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl -EXPORT_SYMBOL vmlinux 0x03392e18 __mdiobus_read -EXPORT_SYMBOL vmlinux 0x0361f462 seq_dentry +EXPORT_SYMBOL vmlinux 0x03369831 devm_register_netdev +EXPORT_SYMBOL vmlinux 0x0342ab6a serio_rescan +EXPORT_SYMBOL vmlinux 0x034af9d3 netlink_rcv_skb +EXPORT_SYMBOL vmlinux 0x0357b4b2 pcie_relaxed_ordering_enabled +EXPORT_SYMBOL vmlinux 0x035edf42 fs_param_is_fd +EXPORT_SYMBOL vmlinux 0x0360d67f make_flow_keys_digest EXPORT_SYMBOL vmlinux 0x0366307a console_suspend_enabled -EXPORT_SYMBOL vmlinux 0x036760c8 scsi_print_result -EXPORT_SYMBOL vmlinux 0x0377cbe5 vfs_rename +EXPORT_SYMBOL vmlinux 0x036a2ee9 netdev_lower_state_changed EXPORT_SYMBOL vmlinux 0x037a0cba kfree -EXPORT_SYMBOL vmlinux 0x037f6d80 xudma_get_device +EXPORT_SYMBOL vmlinux 0x037e5be9 dcb_getapp EXPORT_SYMBOL vmlinux 0x03815f35 ledtrig_disk_activity +EXPORT_SYMBOL vmlinux 0x038b2ee5 seq_hex_dump EXPORT_SYMBOL vmlinux 0x0397edd5 fb_edid_to_monspecs -EXPORT_SYMBOL vmlinux 0x03b03ac8 param_ops_ushort +EXPORT_SYMBOL vmlinux 0x0398ecb9 proc_create_seq_private +EXPORT_SYMBOL vmlinux 0x0399049d inet_frag_reasm_prepare +EXPORT_SYMBOL vmlinux 0x03a0b05c mr_mfc_find_any_parent +EXPORT_SYMBOL vmlinux 0x03b84ec6 mipi_dsi_dcs_set_page_address EXPORT_SYMBOL vmlinux 0x03bf0e5a acpi_walk_resource_buffer -EXPORT_SYMBOL vmlinux 0x03c027d0 rt_dst_clone -EXPORT_SYMBOL vmlinux 0x03cefb00 begin_new_exec -EXPORT_SYMBOL vmlinux 0x03d4a6b5 devm_alloc_etherdev_mqs -EXPORT_SYMBOL vmlinux 0x03e1783b bio_add_page -EXPORT_SYMBOL vmlinux 0x03e57498 dquot_drop -EXPORT_SYMBOL vmlinux 0x03e912bc dev_queue_xmit_accel -EXPORT_SYMBOL vmlinux 0x03f5075d vc_cons +EXPORT_SYMBOL vmlinux 0x03ecf8a1 tcf_idr_cleanup EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram -EXPORT_SYMBOL vmlinux 0x0409bba6 blk_queue_max_discard_sectors -EXPORT_SYMBOL vmlinux 0x040b7332 ps2_end_command -EXPORT_SYMBOL vmlinux 0x041ca730 jbd2_journal_invalidatepage -EXPORT_SYMBOL vmlinux 0x04211e8d nvdimm_bus_lock -EXPORT_SYMBOL vmlinux 0x0426828e xfrm_register_type_offload -EXPORT_SYMBOL vmlinux 0x04271c96 super_setup_bdi -EXPORT_SYMBOL vmlinux 0x0435068a uart_add_one_port +EXPORT_SYMBOL vmlinux 0x03feb589 inet_sk_set_state +EXPORT_SYMBOL vmlinux 0x040ed163 dma_set_mask +EXPORT_SYMBOL vmlinux 0x042a0aa6 dev_get_by_name +EXPORT_SYMBOL vmlinux 0x042e92a5 skb_unlink EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator -EXPORT_SYMBOL vmlinux 0x0461525f mr_mfc_find_any_parent +EXPORT_SYMBOL vmlinux 0x04562774 __traceiter_module_get EXPORT_SYMBOL vmlinux 0x04673adb qman_ip_rev -EXPORT_SYMBOL vmlinux 0x0471acbc __set_page_dirty_nobuffers EXPORT_SYMBOL vmlinux 0x0474edef kstrtou16_from_user -EXPORT_SYMBOL vmlinux 0x0479f1be inet_frag_kill -EXPORT_SYMBOL vmlinux 0x04848e2b eth_gro_receive EXPORT_SYMBOL vmlinux 0x0484c6c4 acpi_enter_sleep_state_prep EXPORT_SYMBOL vmlinux 0x04863e28 hdmi_audio_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0x049081e2 phy_write_mmd -EXPORT_SYMBOL vmlinux 0x04cbd5b5 _dev_emerg +EXPORT_SYMBOL vmlinux 0x0487b1cc cdev_device_del +EXPORT_SYMBOL vmlinux 0x0499226c kernel_sock_shutdown +EXPORT_SYMBOL vmlinux 0x04a0eac7 skb_split +EXPORT_SYMBOL vmlinux 0x04a34e1c generic_file_llseek_size +EXPORT_SYMBOL vmlinux 0x04ae0f31 dev_get_by_index EXPORT_SYMBOL vmlinux 0x04d9bf4e blk_set_stacking_limits +EXPORT_SYMBOL vmlinux 0x04e30ff9 dec_node_page_state +EXPORT_SYMBOL vmlinux 0x04ea588d inet_twsk_deschedule_put EXPORT_SYMBOL vmlinux 0x04ea5d10 ksize +EXPORT_SYMBOL vmlinux 0x05064fd7 devm_register_reboot_notifier EXPORT_SYMBOL vmlinux 0x050877b9 dmi_first_match +EXPORT_SYMBOL vmlinux 0x0515d87b page_pool_alloc_frag +EXPORT_SYMBOL vmlinux 0x051641c4 __find_get_block EXPORT_SYMBOL vmlinux 0x051d58e8 dma_fence_wait_any_timeout EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch -EXPORT_SYMBOL vmlinux 0x05376b61 scsi_ioctl -EXPORT_SYMBOL vmlinux 0x0540d5a8 iov_iter_init EXPORT_SYMBOL vmlinux 0x054496b4 schedule_timeout_interruptible -EXPORT_SYMBOL vmlinux 0x054a2d2c jbd2_journal_put_journal_head -EXPORT_SYMBOL vmlinux 0x054b2e97 vme_register_bridge -EXPORT_SYMBOL vmlinux 0x05590613 napi_get_frags -EXPORT_SYMBOL vmlinux 0x055db197 vme_irq_free +EXPORT_SYMBOL vmlinux 0x0552a82c tcp_release_cb EXPORT_SYMBOL vmlinux 0x055e77e8 jiffies_64 -EXPORT_SYMBOL vmlinux 0x056395df twl6040_reg_write -EXPORT_SYMBOL vmlinux 0x05775014 con_copy_unimap -EXPORT_SYMBOL vmlinux 0x058c7c01 vme_dma_list_free -EXPORT_SYMBOL vmlinux 0x0597a28a xfrm_state_flush +EXPORT_SYMBOL vmlinux 0x0567be28 get_watch_queue +EXPORT_SYMBOL vmlinux 0x056e1825 dquot_drop +EXPORT_SYMBOL vmlinux 0x057034ab __vfs_setxattr +EXPORT_SYMBOL vmlinux 0x0590c78d flow_rule_match_tcp EXPORT_SYMBOL vmlinux 0x059e1482 __traceiter_dma_fence_emit -EXPORT_SYMBOL vmlinux 0x05a3bfc5 phy_stop -EXPORT_SYMBOL vmlinux 0x05c3fff8 delete_from_page_cache -EXPORT_SYMBOL vmlinux 0x05d0ccaa __sock_create -EXPORT_SYMBOL vmlinux 0x05d62683 of_match_device -EXPORT_SYMBOL vmlinux 0x06028ffd pskb_extract +EXPORT_SYMBOL vmlinux 0x05a22d6d dquot_quota_on +EXPORT_SYMBOL vmlinux 0x05a53b69 xp_dma_map +EXPORT_SYMBOL vmlinux 0x05a617e0 genphy_setup_forced +EXPORT_SYMBOL vmlinux 0x05b53817 module_put +EXPORT_SYMBOL vmlinux 0x05be473a scsi_print_result +EXPORT_SYMBOL vmlinux 0x05f18cac current_time +EXPORT_SYMBOL vmlinux 0x05f8bcac pfifo_fast_ops +EXPORT_SYMBOL vmlinux 0x06005c9c bio_devname EXPORT_SYMBOL vmlinux 0x060ba97c gen_pool_free_owner +EXPORT_SYMBOL vmlinux 0x06106986 dma_resv_copy_fences EXPORT_SYMBOL vmlinux 0x061651be strcat -EXPORT_SYMBOL vmlinux 0x0620985c alloc_buffer_head +EXPORT_SYMBOL vmlinux 0x061c8309 should_remove_suid EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user -EXPORT_SYMBOL vmlinux 0x063bbb96 scsi_block_requests -EXPORT_SYMBOL vmlinux 0x063d93c9 set_binfmt -EXPORT_SYMBOL vmlinux 0x064b6c87 genphy_read_status_fixed -EXPORT_SYMBOL vmlinux 0x0650022f inode_set_flags -EXPORT_SYMBOL vmlinux 0x065644d8 blk_mq_run_hw_queue +EXPORT_SYMBOL vmlinux 0x06409143 remap_vmalloc_range EXPORT_SYMBOL vmlinux 0x0668b595 _kstrtoul -EXPORT_SYMBOL vmlinux 0x068df433 param_ops_string -EXPORT_SYMBOL vmlinux 0x0695d9e4 mpage_writepage -EXPORT_SYMBOL vmlinux 0x0697ed96 udp_pre_connect -EXPORT_SYMBOL vmlinux 0x06b57c66 mipi_dsi_generic_write +EXPORT_SYMBOL vmlinux 0x066cdfc1 pcie_bandwidth_available +EXPORT_SYMBOL vmlinux 0x0671e320 xfrm6_rcv_spi +EXPORT_SYMBOL vmlinux 0x068441db mount_nodev +EXPORT_SYMBOL vmlinux 0x06a70f70 param_set_short +EXPORT_SYMBOL vmlinux 0x06b376f9 mmc_remove_host +EXPORT_SYMBOL vmlinux 0x06bc2c3d fwnode_graph_parse_endpoint EXPORT_SYMBOL vmlinux 0x06bd88b5 ucs2_strnlen EXPORT_SYMBOL vmlinux 0x06c8f2de slhc_compress -EXPORT_SYMBOL vmlinux 0x06e7f2a6 dm_mq_kick_requeue_list -EXPORT_SYMBOL vmlinux 0x0704b1ff dev_set_allmulti -EXPORT_SYMBOL vmlinux 0x0704c282 inet_frag_pull_head -EXPORT_SYMBOL vmlinux 0x070958ea param_set_bint -EXPORT_SYMBOL vmlinux 0x07112497 mmc_start_request +EXPORT_SYMBOL vmlinux 0x06d0e2b6 nf_hook_slow +EXPORT_SYMBOL vmlinux 0x06eb2c42 inet_proto_csum_replace4 +EXPORT_SYMBOL vmlinux 0x06efbe09 pci_bus_write_config_word +EXPORT_SYMBOL vmlinux 0x06f3d1ac mdiobus_setup_mdiodev_from_board_info EXPORT_SYMBOL vmlinux 0x0711edc8 xudma_dev_get_tisci_rm -EXPORT_SYMBOL vmlinux 0x0713b3bd tcp_req_err -EXPORT_SYMBOL vmlinux 0x071db06b pci_irq_get_affinity -EXPORT_SYMBOL vmlinux 0x07245874 jbd2_journal_unlock_updates +EXPORT_SYMBOL vmlinux 0x07186e48 netdev_master_upper_dev_link +EXPORT_SYMBOL vmlinux 0x0718c3fd md_reap_sync_thread +EXPORT_SYMBOL vmlinux 0x071bf95b netdev_sk_get_lowest_dev +EXPORT_SYMBOL vmlinux 0x0725ff27 of_node_name_eq EXPORT_SYMBOL vmlinux 0x072f901c vme_master_rmw +EXPORT_SYMBOL vmlinux 0x0734b8cc get_tree_keyed +EXPORT_SYMBOL vmlinux 0x0735c2fb __register_binfmt EXPORT_SYMBOL vmlinux 0x0745a981 xa_erase -EXPORT_SYMBOL vmlinux 0x0781e0b6 pci_write_config_byte +EXPORT_SYMBOL vmlinux 0x074cec3c vme_register_driver +EXPORT_SYMBOL vmlinux 0x075834ee phy_drivers_register +EXPORT_SYMBOL vmlinux 0x07652792 neigh_ifdown +EXPORT_SYMBOL vmlinux 0x0775c62b tcp_peek_len +EXPORT_SYMBOL vmlinux 0x077d5e6d fs_param_is_s32 EXPORT_SYMBOL vmlinux 0x0781ec97 logic_insl -EXPORT_SYMBOL vmlinux 0x078aa2c8 pci_release_selected_regions -EXPORT_SYMBOL vmlinux 0x07a26187 single_open +EXPORT_SYMBOL vmlinux 0x079710ef vme_slot_num +EXPORT_SYMBOL vmlinux 0x0798e219 __dev_kfree_skb_any +EXPORT_SYMBOL vmlinux 0x07a08cb4 inet_sendmsg EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap -EXPORT_SYMBOL vmlinux 0x07b2d179 pci_bus_write_config_dword -EXPORT_SYMBOL vmlinux 0x07c3a2c3 mipi_dsi_host_register +EXPORT_SYMBOL vmlinux 0x07b36f41 kthread_associate_blkcg +EXPORT_SYMBOL vmlinux 0x07b4a1ca scsi_host_lookup +EXPORT_SYMBOL vmlinux 0x07c2dabb nf_unregister_net_hook +EXPORT_SYMBOL vmlinux 0x07c3606e tcp_parse_options +EXPORT_SYMBOL vmlinux 0x07cbe6a6 mmc_gpiod_request_cd EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit -EXPORT_SYMBOL vmlinux 0x07cdbbb9 input_set_max_poll_interval +EXPORT_SYMBOL vmlinux 0x07ccf482 qdisc_watchdog_init EXPORT_SYMBOL vmlinux 0x07ceeac9 panic_notifier_list -EXPORT_SYMBOL vmlinux 0x07d63749 dquot_quota_off +EXPORT_SYMBOL vmlinux 0x07da05e0 sk_stop_timer_sync EXPORT_SYMBOL vmlinux 0x07db17be qman_create_fq -EXPORT_SYMBOL vmlinux 0x07e9a923 kmem_cache_alloc_trace -EXPORT_SYMBOL vmlinux 0x07eb4183 skb_queue_tail -EXPORT_SYMBOL vmlinux 0x07f1aac2 vfs_get_super +EXPORT_SYMBOL vmlinux 0x07ddfbe1 param_ops_hexint +EXPORT_SYMBOL vmlinux 0x07e614ce ipv6_sock_mc_join +EXPORT_SYMBOL vmlinux 0x07f2bc1e param_ops_long EXPORT_SYMBOL vmlinux 0x07f57478 pci_unmap_iospace EXPORT_SYMBOL vmlinux 0x0800473f __cond_resched +EXPORT_SYMBOL vmlinux 0x0802b7be sock_create +EXPORT_SYMBOL vmlinux 0x08041aa5 __mdiobus_read EXPORT_SYMBOL vmlinux 0x0805f2c8 ecryptfs_get_auth_tok_key -EXPORT_SYMBOL vmlinux 0x0807526b devm_devfreq_add_device +EXPORT_SYMBOL vmlinux 0x080c5526 skb_flow_dissect_hash +EXPORT_SYMBOL vmlinux 0x080cfb0c flow_block_cb_decref +EXPORT_SYMBOL vmlinux 0x080d8cec jbd2_journal_force_commit EXPORT_SYMBOL vmlinux 0x08162c74 free_bucket_spinlocks +EXPORT_SYMBOL vmlinux 0x0817148c bprm_change_interp +EXPORT_SYMBOL vmlinux 0x081c2656 security_inode_init_security EXPORT_SYMBOL vmlinux 0x08249512 iwe_stream_add_point -EXPORT_SYMBOL vmlinux 0x082553cd jbd2_journal_lock_updates 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 0x083c11fb rpmh_invalidate EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister -EXPORT_SYMBOL vmlinux 0x08483fd5 mmc_wait_for_req -EXPORT_SYMBOL vmlinux 0x085c41d5 security_unix_may_send -EXPORT_SYMBOL vmlinux 0x0872cccc jbd2_journal_release_jbd_inode +EXPORT_SYMBOL vmlinux 0x085b08e8 ip_tunnel_parse_protocol +EXPORT_SYMBOL vmlinux 0x0873d1ac set_disk_ro EXPORT_SYMBOL vmlinux 0x0882a449 security_xfrm_policy_alloc -EXPORT_SYMBOL vmlinux 0x088418e0 page_pool_create -EXPORT_SYMBOL vmlinux 0x08afdb69 skb_eth_pop -EXPORT_SYMBOL vmlinux 0x08cb600d jbd2_wait_inode_data -EXPORT_SYMBOL vmlinux 0x08cf9616 simple_lookup +EXPORT_SYMBOL vmlinux 0x088d1fd7 kthread_stop +EXPORT_SYMBOL vmlinux 0x08910902 of_mdiobus_child_is_phy +EXPORT_SYMBOL vmlinux 0x089e0641 tty_unregister_ldisc +EXPORT_SYMBOL vmlinux 0x08d2edbd devm_iounmap EXPORT_SYMBOL vmlinux 0x08e39398 cmd_db_read_addr -EXPORT_SYMBOL vmlinux 0x08f9bc09 fs_param_is_enum -EXPORT_SYMBOL vmlinux 0x091121f4 set_posix_acl -EXPORT_SYMBOL vmlinux 0x0914434b iput +EXPORT_SYMBOL vmlinux 0x08eedc3e neigh_for_each +EXPORT_SYMBOL vmlinux 0x08f5ac88 dquot_commit_info +EXPORT_SYMBOL vmlinux 0x08f792da __skb_ext_del +EXPORT_SYMBOL vmlinux 0x09022fc3 blk_queue_max_hw_sectors +EXPORT_SYMBOL vmlinux 0x090fc44e security_sb_mnt_opts_compat +EXPORT_SYMBOL vmlinux 0x091159fd inet_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0x09155a09 mntput EXPORT_SYMBOL vmlinux 0x092e26bf acpi_remove_address_space_handler EXPORT_SYMBOL vmlinux 0x093712e5 acpi_purge_cached_objects -EXPORT_SYMBOL vmlinux 0x094f7f77 udp_read_sock -EXPORT_SYMBOL vmlinux 0x0951fe56 __mod_node_page_state -EXPORT_SYMBOL vmlinux 0x096d75ad insert_inode_locked -EXPORT_SYMBOL vmlinux 0x096fc785 security_path_rename +EXPORT_SYMBOL vmlinux 0x09398c08 sock_kzfree_s +EXPORT_SYMBOL vmlinux 0x093d2ccd inet_frag_reasm_finish +EXPORT_SYMBOL vmlinux 0x094c128b tcp_stream_memory_free +EXPORT_SYMBOL vmlinux 0x095d7594 udp_set_csum EXPORT_SYMBOL vmlinux 0x09769037 dmt_modes +EXPORT_SYMBOL vmlinux 0x09790b5e md_unregister_thread EXPORT_SYMBOL vmlinux 0x097af021 neigh_proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0x09839edb mipi_dsi_dcs_get_power_mode +EXPORT_SYMBOL vmlinux 0x098a66d1 sync_inode_metadata EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap -EXPORT_SYMBOL vmlinux 0x09954985 dev_get_by_index EXPORT_SYMBOL vmlinux 0x0998cc3c hdmi_infoframe_unpack -EXPORT_SYMBOL vmlinux 0x09ac1c9a vfs_ioctl -EXPORT_SYMBOL vmlinux 0x09d361c9 devfreq_monitor_suspend +EXPORT_SYMBOL vmlinux 0x099ef9ce phy_ethtool_get_stats +EXPORT_SYMBOL vmlinux 0x09a63269 tcp_get_md5sig_pool +EXPORT_SYMBOL vmlinux 0x09aefc13 simple_lookup +EXPORT_SYMBOL vmlinux 0x09bb2c7b xfrm4_protocol_register EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions EXPORT_SYMBOL vmlinux 0x09da0ba4 xa_set_mark EXPORT_SYMBOL vmlinux 0x09f9b261 xudma_rchan_put -EXPORT_SYMBOL vmlinux 0x09fb3193 pnp_release_card_device -EXPORT_SYMBOL vmlinux 0x09fc03bd xsk_set_tx_need_wakeup -EXPORT_SYMBOL vmlinux 0x0a03cc7c param_set_bool EXPORT_SYMBOL vmlinux 0x0a0ebc08 __xa_cmpxchg EXPORT_SYMBOL vmlinux 0x0a1dbc76 tcp_rx_skb_cache_key +EXPORT_SYMBOL vmlinux 0x0a264671 d_exact_alias +EXPORT_SYMBOL vmlinux 0x0a265a47 fwnode_mdio_find_device EXPORT_SYMBOL vmlinux 0x0a2a0bce nla_append -EXPORT_SYMBOL vmlinux 0x0a2a3881 pci_dev_put -EXPORT_SYMBOL vmlinux 0x0a3ea176 elv_rb_latter_request -EXPORT_SYMBOL vmlinux 0x0a66e30a __d_lookup_done +EXPORT_SYMBOL vmlinux 0x0a32ea49 iommu_put_dma_cookie +EXPORT_SYMBOL vmlinux 0x0a47491d genphy_read_status_fixed +EXPORT_SYMBOL vmlinux 0x0a4de5e9 blk_mq_run_hw_queue +EXPORT_SYMBOL vmlinux 0x0a58fa8d filemap_fdatawait_keep_errors EXPORT_SYMBOL vmlinux 0x0a770832 register_memory_notifier -EXPORT_SYMBOL vmlinux 0x0a7d0884 tty_port_close -EXPORT_SYMBOL vmlinux 0x0a8e7ea9 to_nd_btt -EXPORT_SYMBOL vmlinux 0x0a8ec477 blk_post_runtime_suspend -EXPORT_SYMBOL vmlinux 0x0a9d7678 sock_set_reuseaddr +EXPORT_SYMBOL vmlinux 0x0a7e2418 rawv6_mh_filter_register +EXPORT_SYMBOL vmlinux 0x0a8e8dc6 vme_register_bridge +EXPORT_SYMBOL vmlinux 0x0a9888e8 skb_put EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq -EXPORT_SYMBOL vmlinux 0x0aa3324a km_query -EXPORT_SYMBOL vmlinux 0x0aa8cf94 dev_close EXPORT_SYMBOL vmlinux 0x0aaccc92 pci_remap_iospace -EXPORT_SYMBOL vmlinux 0x0ac578da fscrypt_encrypt_pagecache_blocks -EXPORT_SYMBOL vmlinux 0x0acdd455 kfree_skb_list -EXPORT_SYMBOL vmlinux 0x0acf109b fs_param_is_bool +EXPORT_SYMBOL vmlinux 0x0aaefc90 iov_iter_advance +EXPORT_SYMBOL vmlinux 0x0ab232e6 t10_pi_type1_crc +EXPORT_SYMBOL vmlinux 0x0ab9ab45 of_graph_get_remote_port EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all -EXPORT_SYMBOL vmlinux 0x0ad92f02 tcp_sock_set_nodelay -EXPORT_SYMBOL vmlinux 0x0addf2cb sk_error_report -EXPORT_SYMBOL vmlinux 0x0b00bc52 pnp_stop_dev +EXPORT_SYMBOL vmlinux 0x0ad40785 rfkill_alloc +EXPORT_SYMBOL vmlinux 0x0aea3cdc udp_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0x0af0d89d truncate_inode_pages +EXPORT_SYMBOL vmlinux 0x0afcdf15 inode_io_list_del 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 0x0b3f46dc sync_mapping_buffers -EXPORT_SYMBOL vmlinux 0x0b3f5386 xfrm_policy_hash_rebuild -EXPORT_SYMBOL vmlinux 0x0b727ef5 blk_rq_append_bio +EXPORT_SYMBOL vmlinux 0x0b365023 tty_unlock +EXPORT_SYMBOL vmlinux 0x0b3ff429 dm_unregister_target +EXPORT_SYMBOL vmlinux 0x0b513fc0 filemap_invalidate_lock_two +EXPORT_SYMBOL vmlinux 0x0b602efa pcie_capability_write_dword +EXPORT_SYMBOL vmlinux 0x0b70aa40 blk_mq_unique_tag EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol -EXPORT_SYMBOL vmlinux 0x0b75d213 tcf_qevent_validate_change -EXPORT_SYMBOL vmlinux 0x0b81f160 drop_nlink -EXPORT_SYMBOL vmlinux 0x0b89e491 param_get_int -EXPORT_SYMBOL vmlinux 0x0b964285 config_item_put +EXPORT_SYMBOL vmlinux 0x0b84c5c7 block_truncate_page +EXPORT_SYMBOL vmlinux 0x0b854da9 seq_lseek +EXPORT_SYMBOL vmlinux 0x0b8f7d1f xfrm_dev_state_flush +EXPORT_SYMBOL vmlinux 0x0b96efd1 tegra_ivc_cleanup EXPORT_SYMBOL vmlinux 0x0ba0b938 vm_brk +EXPORT_SYMBOL vmlinux 0x0ba3fa02 tcp_sock_set_keepidle +EXPORT_SYMBOL vmlinux 0x0baf5e8e make_kprojid EXPORT_SYMBOL vmlinux 0x0bbfa78c set_security_override_from_ctx -EXPORT_SYMBOL vmlinux 0x0bbfc80a qdisc_offload_graft_helper EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type -EXPORT_SYMBOL vmlinux 0x0bc70dff reuseport_select_sock -EXPORT_SYMBOL vmlinux 0x0bdc3708 pci_ep_cfs_add_epc_group +EXPORT_SYMBOL vmlinux 0x0bc666b7 elv_bio_merge_ok +EXPORT_SYMBOL vmlinux 0x0bed3439 dst_destroy EXPORT_SYMBOL vmlinux 0x0bf0e4a2 __SCK__tp_func_spi_transfer_stop +EXPORT_SYMBOL vmlinux 0x0bf4b786 xfrm_policy_bysel_ctx EXPORT_SYMBOL vmlinux 0x0bfc1d1a check_zeroed_user -EXPORT_SYMBOL vmlinux 0x0c0f1fc2 security_inode_copy_up +EXPORT_SYMBOL vmlinux 0x0bfc4ea7 tcf_block_put_ext +EXPORT_SYMBOL vmlinux 0x0c056bda remove_conflicting_pci_framebuffers +EXPORT_SYMBOL vmlinux 0x0c0ef8d6 phy_remove_link_mode EXPORT_SYMBOL vmlinux 0x0c0f79af ZSTD_getDictID_fromFrame -EXPORT_SYMBOL vmlinux 0x0c17378a phy_get_eee_err -EXPORT_SYMBOL vmlinux 0x0c18890e jbd2_journal_begin_ordered_truncate +EXPORT_SYMBOL vmlinux 0x0c14847d simple_transaction_set EXPORT_SYMBOL vmlinux 0x0c25ec48 secure_tcpv6_seq -EXPORT_SYMBOL vmlinux 0x0c484cd6 blk_mq_requeue_request -EXPORT_SYMBOL vmlinux 0x0c4e3b18 capable_wrt_inode_uidgid +EXPORT_SYMBOL vmlinux 0x0c2edc0a xsk_uses_need_wakeup +EXPORT_SYMBOL vmlinux 0x0c3dbb4d __napi_schedule_irqoff +EXPORT_SYMBOL vmlinux 0x0c3e44b4 iunique +EXPORT_SYMBOL vmlinux 0x0c42f5db tc_setup_cb_reoffload EXPORT_SYMBOL vmlinux 0x0c575719 __cond_resched_rwlock_write -EXPORT_SYMBOL vmlinux 0x0c5cac2d pci_bus_alloc_resource -EXPORT_SYMBOL vmlinux 0x0c5d7fbc sock_no_shutdown EXPORT_SYMBOL vmlinux 0x0c6bdc3f vme_master_read -EXPORT_SYMBOL vmlinux 0x0c73154c d_move -EXPORT_SYMBOL vmlinux 0x0c741f29 ip_output -EXPORT_SYMBOL vmlinux 0x0c8e1fb5 fuse_dequeue_forget -EXPORT_SYMBOL vmlinux 0x0ca08fa1 devm_pci_alloc_host_bridge EXPORT_SYMBOL vmlinux 0x0cb11bc7 __SCK__tp_func_dma_fence_enable_signal -EXPORT_SYMBOL vmlinux 0x0cb1c8eb seg6_hmac_net_init +EXPORT_SYMBOL vmlinux 0x0cb38190 __traceiter_mmap_lock_acquire_returned EXPORT_SYMBOL vmlinux 0x0cc4b4b6 crc_ccitt_false +EXPORT_SYMBOL vmlinux 0x0ccfbff5 devfreq_register_notifier +EXPORT_SYMBOL vmlinux 0x0cd2d407 shmem_aops EXPORT_SYMBOL vmlinux 0x0cd5835b ipv6_flowlabel_exclusive -EXPORT_SYMBOL vmlinux 0x0cdb69fa fs_context_for_mount EXPORT_SYMBOL vmlinux 0x0cdce87c rfkill_set_hw_state_reason EXPORT_SYMBOL vmlinux 0x0ce19729 mb_cache_entry_touch -EXPORT_SYMBOL vmlinux 0x0ce20c90 dev_change_flags -EXPORT_SYMBOL vmlinux 0x0cedc8a9 tcp_rtx_synack +EXPORT_SYMBOL vmlinux 0x0cf00870 tcp_conn_request +EXPORT_SYMBOL vmlinux 0x0cf158dc vfs_link +EXPORT_SYMBOL vmlinux 0x0d014554 eth_platform_get_mac_address EXPORT_SYMBOL vmlinux 0x0d07f543 get_anon_bdev -EXPORT_SYMBOL vmlinux 0x0d0b2101 scsi_print_command -EXPORT_SYMBOL vmlinux 0x0d0f5f64 kobject_add +EXPORT_SYMBOL vmlinux 0x0d1fd2a9 tegra_ivc_write_get_next_frame +EXPORT_SYMBOL vmlinux 0x0d2973a4 done_path_create EXPORT_SYMBOL vmlinux 0x0d2ca20f ucc_fast_get_qe_cr_subblock -EXPORT_SYMBOL vmlinux 0x0d3399d7 iommu_dma_get_resv_regions +EXPORT_SYMBOL vmlinux 0x0d312c8e qdisc_reset EXPORT_SYMBOL vmlinux 0x0d3f5c1a fman_get_max_frm -EXPORT_SYMBOL vmlinux 0x0d4dda08 dcache_readdir -EXPORT_SYMBOL vmlinux 0x0d53c492 inet_dev_addr_type EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type -EXPORT_SYMBOL vmlinux 0x0d56cdd9 configfs_unregister_default_group -EXPORT_SYMBOL vmlinux 0x0d575867 netif_stacked_transfer_operstate EXPORT_SYMBOL vmlinux 0x0d61eeee __bitmap_subset -EXPORT_SYMBOL vmlinux 0x0d7e32c5 acpi_bus_get_device -EXPORT_SYMBOL vmlinux 0x0da74353 pcim_iounmap -EXPORT_SYMBOL vmlinux 0x0db5736e i2c_del_driver -EXPORT_SYMBOL vmlinux 0x0dc55d0b mmc_retune_unpause -EXPORT_SYMBOL vmlinux 0x0deddb42 sk_free +EXPORT_SYMBOL vmlinux 0x0d64ef60 arp_xmit +EXPORT_SYMBOL vmlinux 0x0d81e617 mr_table_dump +EXPORT_SYMBOL vmlinux 0x0d8a1ea9 dquot_quota_on_mount +EXPORT_SYMBOL vmlinux 0x0da80dc4 mark_page_accessed +EXPORT_SYMBOL vmlinux 0x0db35bc6 serio_bus +EXPORT_SYMBOL vmlinux 0x0db83127 __scsi_execute +EXPORT_SYMBOL vmlinux 0x0e00adc2 fb_class +EXPORT_SYMBOL vmlinux 0x0e0281d5 dm_table_get_md EXPORT_SYMBOL vmlinux 0x0e17678a siphash_4u64 -EXPORT_SYMBOL vmlinux 0x0e1810d0 dev_getbyhwaddr_rcu -EXPORT_SYMBOL vmlinux 0x0e281867 serio_unregister_port -EXPORT_SYMBOL vmlinux 0x0e3fd2a8 md_bitmap_sync_with_cluster +EXPORT_SYMBOL vmlinux 0x0e2605c8 unix_attach_fds +EXPORT_SYMBOL vmlinux 0x0e38aa11 sock_no_listen +EXPORT_SYMBOL vmlinux 0x0e3971b0 __fib6_flush_trees EXPORT_SYMBOL vmlinux 0x0e4262c6 __siphash_unaligned -EXPORT_SYMBOL vmlinux 0x0e4953c2 tcp_set_rcvlowat -EXPORT_SYMBOL vmlinux 0x0e647b95 kmem_cache_create_usercopy +EXPORT_SYMBOL vmlinux 0x0e4496a6 scsi_eh_finish_cmd EXPORT_SYMBOL vmlinux 0x0e74ad2d utf8ncursor -EXPORT_SYMBOL vmlinux 0x0e7ddc34 simple_setattr -EXPORT_SYMBOL vmlinux 0x0e93f59e iw_handler_get_thrspy EXPORT_SYMBOL vmlinux 0x0ea3c74e tasklet_kill EXPORT_SYMBOL vmlinux 0x0ea593f6 hdmi_drm_infoframe_init +EXPORT_SYMBOL vmlinux 0x0ea75bfe __xfrm_policy_check EXPORT_SYMBOL vmlinux 0x0eb6eb87 add_taint -EXPORT_SYMBOL vmlinux 0x0eb94dec nvdimm_namespace_locked +EXPORT_SYMBOL vmlinux 0x0ec2f742 rproc_del EXPORT_SYMBOL vmlinux 0x0ec5babe vme_dma_free -EXPORT_SYMBOL vmlinux 0x0ed07c96 devm_extcon_unregister_notifier_all -EXPORT_SYMBOL vmlinux 0x0ef28d66 simple_rmdir -EXPORT_SYMBOL vmlinux 0x0ef4fcde rproc_shutdown -EXPORT_SYMBOL vmlinux 0x0ef97c7f cdrom_number_of_slots -EXPORT_SYMBOL vmlinux 0x0f04eea5 nf_log_set +EXPORT_SYMBOL vmlinux 0x0ed048d2 sk_reset_timer +EXPORT_SYMBOL vmlinux 0x0ee9de5d sk_stream_wait_connect +EXPORT_SYMBOL vmlinux 0x0ef43475 inode_update_time +EXPORT_SYMBOL vmlinux 0x0f00330c generic_pipe_buf_release +EXPORT_SYMBOL vmlinux 0x0f03ff3d ip_sock_set_freebind +EXPORT_SYMBOL vmlinux 0x0f04a2e0 sk_filter_trim_cap +EXPORT_SYMBOL vmlinux 0x0f04b373 start_tty EXPORT_SYMBOL vmlinux 0x0f09cc34 schedule_timeout_killable -EXPORT_SYMBOL vmlinux 0x0f2bc69f devm_extcon_unregister_notifier -EXPORT_SYMBOL vmlinux 0x0f2e02bf tcp_getsockopt +EXPORT_SYMBOL vmlinux 0x0f1ac68d param_set_ulong +EXPORT_SYMBOL vmlinux 0x0f279d77 dst_release EXPORT_SYMBOL vmlinux 0x0f37ca89 lockref_put_not_zero -EXPORT_SYMBOL vmlinux 0x0f3f2d12 ip_queue_xmit -EXPORT_SYMBOL vmlinux 0x0f439e05 serio_rescan -EXPORT_SYMBOL vmlinux 0x0f528ed6 netdev_master_upper_dev_get -EXPORT_SYMBOL vmlinux 0x0f5f64be dmaengine_get_unmap_data -EXPORT_SYMBOL vmlinux 0x0f61775b vme_master_request -EXPORT_SYMBOL vmlinux 0x0f73281f key_instantiate_and_link -EXPORT_SYMBOL vmlinux 0x0f8238a2 tc_setup_cb_call -EXPORT_SYMBOL vmlinux 0x0f8508a8 bio_uninit +EXPORT_SYMBOL vmlinux 0x0f4adbb6 of_device_register +EXPORT_SYMBOL vmlinux 0x0f51166e __qdisc_calculate_pkt_len +EXPORT_SYMBOL vmlinux 0x0f684c55 wait_for_key_construction +EXPORT_SYMBOL vmlinux 0x0f7dd045 param_get_hexint +EXPORT_SYMBOL vmlinux 0x0f7ffa08 pnp_unregister_card_driver +EXPORT_SYMBOL vmlinux 0x0f807791 kernel_param_lock +EXPORT_SYMBOL vmlinux 0x0f82985b dev_get_mac_address EXPORT_SYMBOL vmlinux 0x0f86f560 kthread_delayed_work_timer_fn -EXPORT_SYMBOL vmlinux 0x0f8b102c mii_ethtool_set_link_ksettings -EXPORT_SYMBOL vmlinux 0x0f8c49f7 ipv6_chk_prefix EXPORT_SYMBOL vmlinux 0x0fab1ab0 hdmi_spd_infoframe_pack -EXPORT_SYMBOL vmlinux 0x0fb03632 ping_prot EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 -EXPORT_SYMBOL vmlinux 0x0fbb3e87 key_reject_and_link EXPORT_SYMBOL vmlinux 0x0fd902db mb_cache_entry_create -EXPORT_SYMBOL vmlinux 0x0ffb516d __xfrm_route_forward +EXPORT_SYMBOL vmlinux 0x0fe2d275 put_devmap_managed_page +EXPORT_SYMBOL vmlinux 0x0fe7922d dma_resv_reserve_shared +EXPORT_SYMBOL vmlinux 0x0fed9435 fscrypt_free_bounce_page +EXPORT_SYMBOL vmlinux 0x0fedec6c dm_mq_kick_requeue_list EXPORT_SYMBOL vmlinux 0x0fff5afc time64_to_tm -EXPORT_SYMBOL vmlinux 0x102035e0 __sync_dirty_buffer EXPORT_SYMBOL vmlinux 0x1025009a cpm_muram_alloc_fixed EXPORT_SYMBOL vmlinux 0x102936ec qe_clock_source EXPORT_SYMBOL vmlinux 0x1035c7c2 __release_region -EXPORT_SYMBOL vmlinux 0x10370ecc mdiobus_read_nested -EXPORT_SYMBOL vmlinux 0x1056f7c4 phy_ethtool_get_stats +EXPORT_SYMBOL vmlinux 0x104caf14 napi_complete_done EXPORT_SYMBOL vmlinux 0x1057a279 bsearch -EXPORT_SYMBOL vmlinux 0x105a5daa jbd2_journal_force_commit_nested EXPORT_SYMBOL vmlinux 0x1068004b gf128mul_bbe -EXPORT_SYMBOL vmlinux 0x106a70c2 of_platform_device_create -EXPORT_SYMBOL vmlinux 0x10719463 blk_pre_runtime_resume +EXPORT_SYMBOL vmlinux 0x10796702 lease_get_mtime EXPORT_SYMBOL vmlinux 0x107be0b0 percpu_counter_sync EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd -EXPORT_SYMBOL vmlinux 0x108777a2 sdev_disable_disk_events -EXPORT_SYMBOL vmlinux 0x1091b050 fscrypt_ioctl_get_policy -EXPORT_SYMBOL vmlinux 0x10b5b1f4 kset_register -EXPORT_SYMBOL vmlinux 0x10bea801 fscrypt_free_bounce_page -EXPORT_SYMBOL vmlinux 0x10c20801 key_task_permission +EXPORT_SYMBOL vmlinux 0x107fddb3 netdev_class_create_file_ns +EXPORT_SYMBOL vmlinux 0x1086ccb1 d_path +EXPORT_SYMBOL vmlinux 0x108c154a noop_fsync +EXPORT_SYMBOL vmlinux 0x10a1c865 pci_alloc_irq_vectors_affinity +EXPORT_SYMBOL vmlinux 0x10b4afa9 devfreq_update_status EXPORT_SYMBOL vmlinux 0x10c3f57e __gnet_stats_copy_queue -EXPORT_SYMBOL vmlinux 0x10d4a5b6 __netlink_kernel_create EXPORT_SYMBOL vmlinux 0x10d9f885 scsi_sense_desc_find EXPORT_SYMBOL vmlinux 0x10e6f74a free_contig_range -EXPORT_SYMBOL vmlinux 0x10e8d4fe vfs_iter_write -EXPORT_SYMBOL vmlinux 0x10ebbf5b udp_sendmsg -EXPORT_SYMBOL vmlinux 0x10ec8716 clk_bulk_get -EXPORT_SYMBOL vmlinux 0x10f82a4f of_find_mipi_dsi_host_by_node -EXPORT_SYMBOL vmlinux 0x10faa455 generic_fadvise -EXPORT_SYMBOL vmlinux 0x1104b664 devm_devfreq_unregister_opp_notifier EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype -EXPORT_SYMBOL vmlinux 0x1108c540 may_umount_tree -EXPORT_SYMBOL vmlinux 0x111cf930 pci_bus_assign_resources -EXPORT_SYMBOL vmlinux 0x11378274 try_to_writeback_inodes_sb -EXPORT_SYMBOL vmlinux 0x11427ded edac_mc_find -EXPORT_SYMBOL vmlinux 0x114544c6 gro_find_complete_by_type -EXPORT_SYMBOL vmlinux 0x114712dc dm_register_target -EXPORT_SYMBOL vmlinux 0x11640c7e jbd2_submit_inode_data +EXPORT_SYMBOL vmlinux 0x111a7077 device_add_disk +EXPORT_SYMBOL vmlinux 0x111d74b5 blk_queue_max_write_same_sectors +EXPORT_SYMBOL vmlinux 0x112e1aa1 tc_setup_cb_replace +EXPORT_SYMBOL vmlinux 0x112e379c tty_port_tty_get +EXPORT_SYMBOL vmlinux 0x114dfaff regset_get_alloc +EXPORT_SYMBOL vmlinux 0x11568b25 ps2_handle_ack +EXPORT_SYMBOL vmlinux 0x116d058a pci_msi_vec_count EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init -EXPORT_SYMBOL vmlinux 0x1172d2d5 __phy_write_mmd -EXPORT_SYMBOL vmlinux 0x11aab54b scsi_print_sense_hdr +EXPORT_SYMBOL vmlinux 0x11b60264 rps_may_expire_flow EXPORT_SYMBOL vmlinux 0x11d189b1 __tracepoint_kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0x11d8d437 tcf_qevent_init +EXPORT_SYMBOL vmlinux 0x11da5fca twl6040_clear_bits +EXPORT_SYMBOL vmlinux 0x11dc18c8 truncate_inode_pages_range EXPORT_SYMBOL vmlinux 0x11e0ec41 dm_read_arg -EXPORT_SYMBOL vmlinux 0x11e158b0 set_disk_ro EXPORT_SYMBOL vmlinux 0x11e30762 chacha_block_generic -EXPORT_SYMBOL vmlinux 0x11ea5ca6 max8925_reg_read EXPORT_SYMBOL vmlinux 0x11f47d8c utf8_strncmp -EXPORT_SYMBOL vmlinux 0x11f7ed4c hex_to_bin EXPORT_SYMBOL vmlinux 0x11ffdfee ucc_slow_stop_tx EXPORT_SYMBOL vmlinux 0x120b336a __rb_insert_augmented -EXPORT_SYMBOL vmlinux 0x120de0a3 setattr_prepare EXPORT_SYMBOL vmlinux 0x120ff8e1 xudma_get_rflow_ring_offset -EXPORT_SYMBOL vmlinux 0x1223d439 mr_table_dump -EXPORT_SYMBOL vmlinux 0x1232dbb2 __f_setown -EXPORT_SYMBOL vmlinux 0x123b046c dump_align -EXPORT_SYMBOL vmlinux 0x123b2248 blk_queue_segment_boundary +EXPORT_SYMBOL vmlinux 0x12266115 input_mt_report_slot_state +EXPORT_SYMBOL vmlinux 0x122e18d0 cfb_fillrect EXPORT_SYMBOL vmlinux 0x124bad4d kstrtobool -EXPORT_SYMBOL vmlinux 0x1252a261 neigh_connected_output -EXPORT_SYMBOL vmlinux 0x12721778 locks_remove_posix -EXPORT_SYMBOL vmlinux 0x12a26e1b dst_release +EXPORT_SYMBOL vmlinux 0x12576c9c clear_nlink +EXPORT_SYMBOL vmlinux 0x125956a6 __mod_lruvec_page_state +EXPORT_SYMBOL vmlinux 0x126e8aa7 kobject_set_name +EXPORT_SYMBOL vmlinux 0x12754f33 scsi_rescan_device +EXPORT_SYMBOL vmlinux 0x127a742f bio_integrity_alloc +EXPORT_SYMBOL vmlinux 0x1292dc0b jbd2_journal_errno EXPORT_SYMBOL vmlinux 0x12a4e128 __arch_copy_from_user +EXPORT_SYMBOL vmlinux 0x12a5f548 md_integrity_add_rdev +EXPORT_SYMBOL vmlinux 0x12b79029 dev_get_by_napi_id EXPORT_SYMBOL vmlinux 0x12cabc89 siphash_2u64 -EXPORT_SYMBOL vmlinux 0x12d1158d fifo_set_limit +EXPORT_SYMBOL vmlinux 0x12d13dd4 mfd_add_devices +EXPORT_SYMBOL vmlinux 0x12e02ed3 __napi_alloc_skb +EXPORT_SYMBOL vmlinux 0x12e41cd4 xfrm_input_unregister_afinfo EXPORT_SYMBOL vmlinux 0x12f6f69c fb_videomode_to_var -EXPORT_SYMBOL vmlinux 0x12feb2da max8925_bulk_write -EXPORT_SYMBOL vmlinux 0x1300b53c make_kprojid -EXPORT_SYMBOL vmlinux 0x130653fd cookie_ecn_ok +EXPORT_SYMBOL vmlinux 0x13030c96 fb_firmware_edid +EXPORT_SYMBOL vmlinux 0x13082fe6 page_symlink_inode_operations EXPORT_SYMBOL vmlinux 0x130afd75 acpi_get_sleep_type_data EXPORT_SYMBOL vmlinux 0x13110126 request_resource EXPORT_SYMBOL vmlinux 0x131a6146 xa_clear_mark -EXPORT_SYMBOL vmlinux 0x13203a92 inet_proto_csum_replace16 EXPORT_SYMBOL vmlinux 0x13243d4b wl1251_get_platform_data -EXPORT_SYMBOL vmlinux 0x132ab737 sock_no_socketpair -EXPORT_SYMBOL vmlinux 0x133d731f fs_param_is_blockdev -EXPORT_SYMBOL vmlinux 0x134122e5 pcie_set_mps +EXPORT_SYMBOL vmlinux 0x13282d0d tcf_exts_dump_stats +EXPORT_SYMBOL vmlinux 0x1329cc38 rtnl_link_get_net +EXPORT_SYMBOL vmlinux 0x1334fa61 tty_write_room +EXPORT_SYMBOL vmlinux 0x1338b35e ptp_cancel_worker_sync +EXPORT_SYMBOL vmlinux 0x133ede10 fscrypt_decrypt_block_inplace +EXPORT_SYMBOL vmlinux 0x1340c2de md_set_array_sectors +EXPORT_SYMBOL vmlinux 0x13440a27 sock_alloc_send_skb EXPORT_SYMBOL vmlinux 0x134cdd34 inet_frag_rbtree_purge -EXPORT_SYMBOL vmlinux 0x135f9559 tty_port_carrier_raised -EXPORT_SYMBOL vmlinux 0x136b7281 devfreq_update_interval -EXPORT_SYMBOL vmlinux 0x1383d2ac rproc_detach -EXPORT_SYMBOL vmlinux 0x138b1dca twl6040_get_pll +EXPORT_SYMBOL vmlinux 0x1351d9a3 cfb_copyarea +EXPORT_SYMBOL vmlinux 0x135e20f7 lookup_one_len_unlocked +EXPORT_SYMBOL vmlinux 0x137519fe proc_set_size +EXPORT_SYMBOL vmlinux 0x1389f4c5 clkdev_add EXPORT_SYMBOL vmlinux 0x138bdd96 cpumask_next +EXPORT_SYMBOL vmlinux 0x1390bd60 from_kuid_munged +EXPORT_SYMBOL vmlinux 0x13995f6d fman_get_mem_region EXPORT_SYMBOL vmlinux 0x139f2189 __kfifo_alloc -EXPORT_SYMBOL vmlinux 0x13a1f1a1 ppp_input -EXPORT_SYMBOL vmlinux 0x13a8561f mmc_put_card -EXPORT_SYMBOL vmlinux 0x13b3070b tcp_setsockopt -EXPORT_SYMBOL vmlinux 0x13bba9da dquot_disable -EXPORT_SYMBOL vmlinux 0x13be22c5 tty_register_driver +EXPORT_SYMBOL vmlinux 0x13c702a3 pcibus_to_node EXPORT_SYMBOL vmlinux 0x13cead77 __SCK__tp_func_kmem_cache_alloc_node -EXPORT_SYMBOL vmlinux 0x13cec58c mdiobus_get_phy EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out -EXPORT_SYMBOL vmlinux 0x13d37aa2 grab_cache_page_write_begin EXPORT_SYMBOL vmlinux 0x13d928f5 __SCK__tp_func_kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0x14019f1f netdev_set_tc_queue +EXPORT_SYMBOL vmlinux 0x13db971c blk_queue_io_min +EXPORT_SYMBOL vmlinux 0x13e3b5f2 __neigh_create +EXPORT_SYMBOL vmlinux 0x13ee87a1 mipi_dsi_dcs_enter_sleep_mode +EXPORT_SYMBOL vmlinux 0x13f49234 scsi_report_device_reset +EXPORT_SYMBOL vmlinux 0x13f9f989 phy_trigger_machine EXPORT_SYMBOL vmlinux 0x141271bf acpi_dev_found -EXPORT_SYMBOL vmlinux 0x1422abdb lookup_one -EXPORT_SYMBOL vmlinux 0x1424666c is_acpi_data_node -EXPORT_SYMBOL vmlinux 0x14292d15 jbd2_journal_restart EXPORT_SYMBOL vmlinux 0x1435c5ce __SCK__tp_func_kmalloc_node -EXPORT_SYMBOL vmlinux 0x1449e30e phy_ethtool_get_sset_count +EXPORT_SYMBOL vmlinux 0x143e3e64 security_old_inode_init_security +EXPORT_SYMBOL vmlinux 0x144ec38b kset_register +EXPORT_SYMBOL vmlinux 0x14583abc bioset_init EXPORT_SYMBOL vmlinux 0x14605535 dma_fence_context_alloc EXPORT_SYMBOL vmlinux 0x146289b7 crc16_table -EXPORT_SYMBOL vmlinux 0x146a9608 phy_device_create -EXPORT_SYMBOL vmlinux 0x1480deb2 __bio_clone_fast EXPORT_SYMBOL vmlinux 0x1486ded2 dma_fence_allocate_private_stub -EXPORT_SYMBOL vmlinux 0x148f1482 jbd2_journal_grab_journal_head +EXPORT_SYMBOL vmlinux 0x14b834c7 generic_permission EXPORT_SYMBOL vmlinux 0x14b89635 arm64_const_caps_ready -EXPORT_SYMBOL vmlinux 0x14bf8f9a dev_mc_add_global -EXPORT_SYMBOL vmlinux 0x14bf9a21 genphy_restart_aneg EXPORT_SYMBOL vmlinux 0x14c67e3e tcp_tx_delay_enabled -EXPORT_SYMBOL vmlinux 0x14cf97bf scsi_remove_target -EXPORT_SYMBOL vmlinux 0x14e78e05 pci_alloc_irq_vectors_affinity -EXPORT_SYMBOL vmlinux 0x14e7fe77 pci_restore_state +EXPORT_SYMBOL vmlinux 0x14cade4c skb_tx_error +EXPORT_SYMBOL vmlinux 0x14cd63e4 fqdir_exit +EXPORT_SYMBOL vmlinux 0x14cfc5cc inet_shutdown +EXPORT_SYMBOL vmlinux 0x14d29dfc pnp_device_detach +EXPORT_SYMBOL vmlinux 0x14d3b29c sk_mc_loop +EXPORT_SYMBOL vmlinux 0x14d4e5ef xfrm_state_register_afinfo +EXPORT_SYMBOL vmlinux 0x14dfb84e tty_port_open +EXPORT_SYMBOL vmlinux 0x14ecc195 refresh_frequency_limits EXPORT_SYMBOL vmlinux 0x14f45fcc bman_free_pool -EXPORT_SYMBOL vmlinux 0x1507ef1c uart_get_divisor +EXPORT_SYMBOL vmlinux 0x151b2b71 tcp_child_process EXPORT_SYMBOL vmlinux 0x151f4898 schedule_timeout_uninterruptible EXPORT_SYMBOL vmlinux 0x1526b301 unix_tot_inflight -EXPORT_SYMBOL vmlinux 0x152fc38d register_fib_notifier -EXPORT_SYMBOL vmlinux 0x153b683a flow_rule_match_enc_ports -EXPORT_SYMBOL vmlinux 0x1547b54f phy_register_fixup_for_id +EXPORT_SYMBOL vmlinux 0x1545a96d vm_mmap EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy -EXPORT_SYMBOL vmlinux 0x15618092 dev_get_mac_address -EXPORT_SYMBOL vmlinux 0x156b26ee skb_copy_and_hash_datagram_iter -EXPORT_SYMBOL vmlinux 0x1574a9b8 from_kprojid_munged -EXPORT_SYMBOL vmlinux 0x1586071f cros_ec_prepare_tx -EXPORT_SYMBOL vmlinux 0x158826f0 param_get_byte -EXPORT_SYMBOL vmlinux 0x158c5707 tty_lock -EXPORT_SYMBOL vmlinux 0x158fa259 of_device_is_big_endian -EXPORT_SYMBOL vmlinux 0x1590ee58 set_page_dirty_lock -EXPORT_SYMBOL vmlinux 0x159f1fc6 f_setown -EXPORT_SYMBOL vmlinux 0x15ad3cf7 xfrm6_rcv_spi +EXPORT_SYMBOL vmlinux 0x1555bb77 config_item_get_unless_zero +EXPORT_SYMBOL vmlinux 0x155b1d4b tcp_enter_quickack_mode +EXPORT_SYMBOL vmlinux 0x1580d9d1 neigh_update +EXPORT_SYMBOL vmlinux 0x15ac7b1e remap_pfn_range 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 0x15c87d50 __register_binfmt -EXPORT_SYMBOL vmlinux 0x15f348e0 tcp_mtup_init -EXPORT_SYMBOL vmlinux 0x160347d0 get_tree_single_reconf -EXPORT_SYMBOL vmlinux 0x16103699 dma_resv_reserve_shared +EXPORT_SYMBOL vmlinux 0x15d0bb43 tcf_exts_validate +EXPORT_SYMBOL vmlinux 0x15dbeddb phy_find_first +EXPORT_SYMBOL vmlinux 0x15e0f228 netlink_capable +EXPORT_SYMBOL vmlinux 0x15e8b2e0 end_buffer_write_sync +EXPORT_SYMBOL vmlinux 0x1601b187 __hw_addr_ref_unsync_dev +EXPORT_SYMBOL vmlinux 0x161314b8 scsi_is_host_device EXPORT_SYMBOL vmlinux 0x162893fd hashlen_string -EXPORT_SYMBOL vmlinux 0x1630424d kernel_param_unlock EXPORT_SYMBOL vmlinux 0x16316a10 ZSTD_getFrameContentSize EXPORT_SYMBOL vmlinux 0x1632bc21 kvasprintf_const -EXPORT_SYMBOL vmlinux 0x163d03ad dquot_get_state +EXPORT_SYMBOL vmlinux 0x16373312 input_get_keycode EXPORT_SYMBOL vmlinux 0x163d2417 tegra_io_rail_power_off -EXPORT_SYMBOL vmlinux 0x16489596 scsi_dma_map -EXPORT_SYMBOL vmlinux 0x16509f0f pci_rebar_get_possible_sizes -EXPORT_SYMBOL vmlinux 0x16688406 is_bad_inode +EXPORT_SYMBOL vmlinux 0x165863d7 inode_insert5 +EXPORT_SYMBOL vmlinux 0x165fdf9f dev_uc_sync +EXPORT_SYMBOL vmlinux 0x166f7575 security_sctp_assoc_request EXPORT_SYMBOL vmlinux 0x167c5967 print_hex_dump +EXPORT_SYMBOL vmlinux 0x168452fa i2c_verify_client +EXPORT_SYMBOL vmlinux 0x168945ef get_user_pages +EXPORT_SYMBOL vmlinux 0x1689a091 try_to_writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0x1694660f jbd2_journal_submit_inode_data_buffers EXPORT_SYMBOL vmlinux 0x169938c1 __sysfs_match_string -EXPORT_SYMBOL vmlinux 0x16a01610 iov_iter_single_seg_count -EXPORT_SYMBOL vmlinux 0x16b08308 vga_client_register -EXPORT_SYMBOL vmlinux 0x16c2d33c netpoll_print_options +EXPORT_SYMBOL vmlinux 0x169b2193 sock_recvmsg EXPORT_SYMBOL vmlinux 0x16cdc340 acpi_get_table +EXPORT_SYMBOL vmlinux 0x16d568c6 lock_page_memcg EXPORT_SYMBOL vmlinux 0x16dee44d dma_fence_init EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait EXPORT_SYMBOL vmlinux 0x16e7e2cb cpu_all_bits -EXPORT_SYMBOL vmlinux 0x16e8c2df deactivate_locked_super -EXPORT_SYMBOL vmlinux 0x16ec25d4 genphy_aneg_done -EXPORT_SYMBOL vmlinux 0x17033e2b tcp_sendpage +EXPORT_SYMBOL vmlinux 0x16e865e0 register_mii_timestamper +EXPORT_SYMBOL vmlinux 0x16f8cae2 blk_integrity_register +EXPORT_SYMBOL vmlinux 0x16f9361b amba_driver_register +EXPORT_SYMBOL vmlinux 0x17051e93 netdev_notice EXPORT_SYMBOL vmlinux 0x170ddf79 acpi_install_notify_handler -EXPORT_SYMBOL vmlinux 0x172b5ddb elv_rb_find -EXPORT_SYMBOL vmlinux 0x173bc3bb dqget -EXPORT_SYMBOL vmlinux 0x173e43db filemap_fdatawrite -EXPORT_SYMBOL vmlinux 0x174447c5 tty_name -EXPORT_SYMBOL vmlinux 0x17486d6f xfrm_lookup_route -EXPORT_SYMBOL vmlinux 0x174d872e xsk_tx_release -EXPORT_SYMBOL vmlinux 0x17549470 do_clone_file_range -EXPORT_SYMBOL vmlinux 0x176908b4 put_disk -EXPORT_SYMBOL vmlinux 0x177b6698 jbd2_journal_get_write_access +EXPORT_SYMBOL vmlinux 0x1722d909 jbd2_journal_start +EXPORT_SYMBOL vmlinux 0x1728545d audit_log +EXPORT_SYMBOL vmlinux 0x173031df pci_bus_read_dev_vendor_id +EXPORT_SYMBOL vmlinux 0x17421596 t10_pi_type3_ip +EXPORT_SYMBOL vmlinux 0x17433008 of_find_compatible_node +EXPORT_SYMBOL vmlinux 0x17491fb7 skb_copy_header EXPORT_SYMBOL vmlinux 0x17825d3f xudma_rchan_get +EXPORT_SYMBOL vmlinux 0x17861f84 ipv6_chk_addr_and_flags EXPORT_SYMBOL vmlinux 0x178c4894 qe_upload_firmware -EXPORT_SYMBOL vmlinux 0x178cd8b2 fput -EXPORT_SYMBOL vmlinux 0x179b2e5c fib_default_rule_add -EXPORT_SYMBOL vmlinux 0x17a3ae91 netdev_get_xmit_slave -EXPORT_SYMBOL vmlinux 0x17b1f2c0 sock_kmalloc -EXPORT_SYMBOL vmlinux 0x17fd4108 phy_init_hw +EXPORT_SYMBOL vmlinux 0x179d2c45 generic_cont_expand_simple +EXPORT_SYMBOL vmlinux 0x17a16eb3 kill_fasync +EXPORT_SYMBOL vmlinux 0x17b68f1a notify_change +EXPORT_SYMBOL vmlinux 0x17bf6920 rdmacg_uncharge +EXPORT_SYMBOL vmlinux 0x17d6180a tcf_em_tree_destroy +EXPORT_SYMBOL vmlinux 0x17e979a8 mipi_dsi_driver_register_full +EXPORT_SYMBOL vmlinux 0x17f3b4cf vfs_unlink +EXPORT_SYMBOL vmlinux 0x18063876 md_bitmap_close_sync +EXPORT_SYMBOL vmlinux 0x180fe240 pci_iomap +EXPORT_SYMBOL vmlinux 0x1830e5c5 scmd_printk +EXPORT_SYMBOL vmlinux 0x183335db ip_options_rcv_srr EXPORT_SYMBOL vmlinux 0x18345b8e __bitmap_replace -EXPORT_SYMBOL vmlinux 0x1854fa27 set_nlink -EXPORT_SYMBOL vmlinux 0x18632895 tcp_seq_next -EXPORT_SYMBOL vmlinux 0x1866d235 mini_qdisc_pair_block_init -EXPORT_SYMBOL vmlinux 0x1866ec3a skb_add_rx_frag +EXPORT_SYMBOL vmlinux 0x183f21d6 page_cache_prev_miss +EXPORT_SYMBOL vmlinux 0x1840acb1 block_invalidatepage +EXPORT_SYMBOL vmlinux 0x18421793 textsearch_destroy +EXPORT_SYMBOL vmlinux 0x18526ad6 input_reset_device EXPORT_SYMBOL vmlinux 0x187884a8 cpm_muram_free -EXPORT_SYMBOL vmlinux 0x187dc11d input_get_keycode -EXPORT_SYMBOL vmlinux 0x187f337b dev_activate EXPORT_SYMBOL vmlinux 0x18888d00 downgrade_write EXPORT_SYMBOL vmlinux 0x188ea314 jiffies_to_timespec64 -EXPORT_SYMBOL vmlinux 0x1894ab3d eth_header_parse -EXPORT_SYMBOL vmlinux 0x189a9787 dma_resv_add_excl_fence +EXPORT_SYMBOL vmlinux 0x18ae63dc bioset_integrity_create EXPORT_SYMBOL vmlinux 0x18b48e28 __memset_io -EXPORT_SYMBOL vmlinux 0x18c35ad8 fs_param_is_u32 +EXPORT_SYMBOL vmlinux 0x18bb683e rproc_coredump_add_custom_segment +EXPORT_SYMBOL vmlinux 0x18c56546 sync_inodes_sb +EXPORT_SYMBOL vmlinux 0x18de9970 invalidate_mapping_pages EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start -EXPORT_SYMBOL vmlinux 0x18fb50d0 tcf_action_update_stats EXPORT_SYMBOL vmlinux 0x190a48a9 efi -EXPORT_SYMBOL vmlinux 0x1920859e locks_lock_inode_wait +EXPORT_SYMBOL vmlinux 0x190bb053 flow_rule_match_enc_ip +EXPORT_SYMBOL vmlinux 0x1918066e tcf_action_dump_1 EXPORT_SYMBOL vmlinux 0x1953c958 mempool_create -EXPORT_SYMBOL vmlinux 0x196e3033 mfd_cell_disable +EXPORT_SYMBOL vmlinux 0x195e6462 mnt_set_expiry +EXPORT_SYMBOL vmlinux 0x19814973 inet_pton_with_scope EXPORT_SYMBOL vmlinux 0x1984d421 out_of_line_wait_on_bit EXPORT_SYMBOL vmlinux 0x198620d7 security_add_mnt_opt -EXPORT_SYMBOL vmlinux 0x198df57e md_bitmap_close_sync -EXPORT_SYMBOL vmlinux 0x1993d8fe pagecache_write_end +EXPORT_SYMBOL vmlinux 0x1997fee8 tcf_chain_put_by_act EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp +EXPORT_SYMBOL vmlinux 0x19a345c3 scsi_target_resume +EXPORT_SYMBOL vmlinux 0x19a3ebd3 vfs_get_super +EXPORT_SYMBOL vmlinux 0x19b8e4bb jbd2_journal_set_features EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec -EXPORT_SYMBOL vmlinux 0x19dc743f flow_block_cb_priv -EXPORT_SYMBOL vmlinux 0x19e7da5d __generic_file_fsync -EXPORT_SYMBOL vmlinux 0x19fba5fc import_iovec +EXPORT_SYMBOL vmlinux 0x19dbb669 pci_scan_single_device +EXPORT_SYMBOL vmlinux 0x19e18baf scsi_partsize +EXPORT_SYMBOL vmlinux 0x19e8b75a vm_insert_page +EXPORT_SYMBOL vmlinux 0x19f2af27 dev_graft_qdisc +EXPORT_SYMBOL vmlinux 0x19f85178 tegra_ahb_enable_smmu +EXPORT_SYMBOL vmlinux 0x19f877c2 frontswap_register_ops +EXPORT_SYMBOL vmlinux 0x19f8edec tcp_time_wait +EXPORT_SYMBOL vmlinux 0x1a0625fe disk_start_io_acct EXPORT_SYMBOL vmlinux 0x1a1bac9c ZSTD_decompressDCtx -EXPORT_SYMBOL vmlinux 0x1a20216e dcb_ieee_getapp_prio_dscp_mask_map -EXPORT_SYMBOL vmlinux 0x1a223495 sock_cmsg_send -EXPORT_SYMBOL vmlinux 0x1a329153 cdev_add -EXPORT_SYMBOL vmlinux 0x1a33b660 nd_btt_arena_is_valid -EXPORT_SYMBOL vmlinux 0x1a37efe2 security_sock_rcv_skb -EXPORT_SYMBOL vmlinux 0x1a410ea6 find_get_pages_contig +EXPORT_SYMBOL vmlinux 0x1a30f86f __pci_register_driver +EXPORT_SYMBOL vmlinux 0x1a333d52 xfrm_trans_queue_net EXPORT_SYMBOL vmlinux 0x1a45cb6c acpi_disabled -EXPORT_SYMBOL vmlinux 0x1a657b98 phy_driver_register -EXPORT_SYMBOL vmlinux 0x1a743815 kern_path -EXPORT_SYMBOL vmlinux 0x1a75aae9 xfrm_policy_flush -EXPORT_SYMBOL vmlinux 0x1a849aa0 mmc_gpiod_request_ro -EXPORT_SYMBOL vmlinux 0x1a922beb mii_check_gmii_support -EXPORT_SYMBOL vmlinux 0x1a93f0cf iterate_fd +EXPORT_SYMBOL vmlinux 0x1a522707 param_set_hexint +EXPORT_SYMBOL vmlinux 0x1a52bf93 kthread_destroy_worker +EXPORT_SYMBOL vmlinux 0x1a56a346 ptp_clock_register +EXPORT_SYMBOL vmlinux 0x1a69267c mdiobus_unregister +EXPORT_SYMBOL vmlinux 0x1a6b4d6c uart_add_one_port +EXPORT_SYMBOL vmlinux 0x1a74b54b phy_start_cable_test +EXPORT_SYMBOL vmlinux 0x1a8c875a nd_dax_probe EXPORT_SYMBOL vmlinux 0x1a9a433c prandom_u32_state -EXPORT_SYMBOL vmlinux 0x1aa34ce7 devm_kvasprintf -EXPORT_SYMBOL vmlinux 0x1aad0fa2 input_inject_event EXPORT_SYMBOL vmlinux 0x1ac5d3cb strcspn -EXPORT_SYMBOL vmlinux 0x1ac81c9c _dev_err -EXPORT_SYMBOL vmlinux 0x1ae1790c put_cmsg -EXPORT_SYMBOL vmlinux 0x1ae73724 sk_stream_wait_memory -EXPORT_SYMBOL vmlinux 0x1af27d02 simple_fill_super +EXPORT_SYMBOL vmlinux 0x1ad73a0c set_page_dirty_lock +EXPORT_SYMBOL vmlinux 0x1af8da2d nd_pfn_probe +EXPORT_SYMBOL vmlinux 0x1afa2f78 tcf_get_next_proto +EXPORT_SYMBOL vmlinux 0x1afcecab xsk_clear_tx_need_wakeup EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist -EXPORT_SYMBOL vmlinux 0x1b122ac7 remap_vmalloc_range -EXPORT_SYMBOL vmlinux 0x1b34064b skb_dequeue +EXPORT_SYMBOL vmlinux 0x1b05679b fman_get_revision +EXPORT_SYMBOL vmlinux 0x1b137a4d iov_iter_single_seg_count +EXPORT_SYMBOL vmlinux 0x1b1b9265 seq_puts EXPORT_SYMBOL vmlinux 0x1b5196fc xudma_tchan_put +EXPORT_SYMBOL vmlinux 0x1b535215 locks_delete_block +EXPORT_SYMBOL vmlinux 0x1b56308c phy_set_asym_pause +EXPORT_SYMBOL vmlinux 0x1b581438 __cleancache_init_fs EXPORT_SYMBOL vmlinux 0x1b597b7a swake_up_all +EXPORT_SYMBOL vmlinux 0x1b614c58 ip_frag_init EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton -EXPORT_SYMBOL vmlinux 0x1b748001 __dev_kfree_skb_any +EXPORT_SYMBOL vmlinux 0x1b660805 nf_unregister_net_hooks +EXPORT_SYMBOL vmlinux 0x1b6e7495 inet_del_offload EXPORT_SYMBOL vmlinux 0x1b777357 rdmacg_unregister_device -EXPORT_SYMBOL vmlinux 0x1b78ec77 thread_group_exited -EXPORT_SYMBOL vmlinux 0x1b79c563 bioset_init -EXPORT_SYMBOL vmlinux 0x1b8dd989 devm_get_clk_from_child -EXPORT_SYMBOL vmlinux 0x1b9e5ce8 get_bitmap_from_slot -EXPORT_SYMBOL vmlinux 0x1b9f2ad5 seq_printf +EXPORT_SYMBOL vmlinux 0x1b9126f5 migrate_vma_setup +EXPORT_SYMBOL vmlinux 0x1b91ae9d ipv6_select_ident EXPORT_SYMBOL vmlinux 0x1ba59527 __kmalloc_node -EXPORT_SYMBOL vmlinux 0x1bae0ff3 lock_page_memcg -EXPORT_SYMBOL vmlinux 0x1bb1a357 cdrom_get_media_event -EXPORT_SYMBOL vmlinux 0x1bb50979 scsi_vpd_tpg_id +EXPORT_SYMBOL vmlinux 0x1ba8af44 iov_iter_kvec +EXPORT_SYMBOL vmlinux 0x1bb28016 rproc_elf_load_rsc_table EXPORT_SYMBOL vmlinux 0x1bb51249 tcp_have_smc -EXPORT_SYMBOL vmlinux 0x1bb7b805 tcp_v4_syn_recv_sock EXPORT_SYMBOL vmlinux 0x1bb86b9a xen_start_info -EXPORT_SYMBOL vmlinux 0x1bc0f0c4 __nlmsg_put +EXPORT_SYMBOL vmlinux 0x1bc6e8b2 qdisc_create_dflt EXPORT_SYMBOL vmlinux 0x1bd59dbe vme_free_consistent -EXPORT_SYMBOL vmlinux 0x1be02c50 of_device_alloc -EXPORT_SYMBOL vmlinux 0x1c0b028a lru_cache_add -EXPORT_SYMBOL vmlinux 0x1c0c320f inet_shutdown -EXPORT_SYMBOL vmlinux 0x1c2049e0 tcp_enter_cwr -EXPORT_SYMBOL vmlinux 0x1c29820a sock_no_sendmsg_locked -EXPORT_SYMBOL vmlinux 0x1c2ab990 tegra_ahb_enable_smmu -EXPORT_SYMBOL vmlinux 0x1c506dd9 dev_pick_tx_zero -EXPORT_SYMBOL vmlinux 0x1c522e3d scsi_alloc_sgtables +EXPORT_SYMBOL vmlinux 0x1bdc9cae generic_file_direct_write +EXPORT_SYMBOL vmlinux 0x1befbbae phy_reset_after_clk_enable +EXPORT_SYMBOL vmlinux 0x1bfc31a7 finish_no_open +EXPORT_SYMBOL vmlinux 0x1c0e94d5 param_set_ushort +EXPORT_SYMBOL vmlinux 0x1c25a352 request_firmware_nowait +EXPORT_SYMBOL vmlinux 0x1c32d393 blk_mq_stop_hw_queue +EXPORT_SYMBOL vmlinux 0x1c32f3cd __dev_get_by_flags +EXPORT_SYMBOL vmlinux 0x1c4d40f3 phy_device_create EXPORT_SYMBOL vmlinux 0x1c58427f acpi_remove_notify_handler EXPORT_SYMBOL vmlinux 0x1c5e3878 icst525_idx2s -EXPORT_SYMBOL vmlinux 0x1c687281 dump_skip -EXPORT_SYMBOL vmlinux 0x1c69cb49 tcp_connect +EXPORT_SYMBOL vmlinux 0x1c613c95 mmc_can_secure_erase_trim +EXPORT_SYMBOL vmlinux 0x1c6d45d1 kern_path_create +EXPORT_SYMBOL vmlinux 0x1c6ec26b processors +EXPORT_SYMBOL vmlinux 0x1c822c7f flow_block_cb_incref +EXPORT_SYMBOL vmlinux 0x1c8e5721 pcie_set_readrq EXPORT_SYMBOL vmlinux 0x1cb11044 inetpeer_invalidate_tree -EXPORT_SYMBOL vmlinux 0x1cbfbf6d qdisc_hash_del EXPORT_SYMBOL vmlinux 0x1cc11154 __SCK__tp_func_mmap_lock_start_locking -EXPORT_SYMBOL vmlinux 0x1cc66fec mmput_async +EXPORT_SYMBOL vmlinux 0x1ccd3b51 mmc_erase +EXPORT_SYMBOL vmlinux 0x1cd19194 mini_qdisc_pair_init EXPORT_SYMBOL vmlinux 0x1cd8438b pxm_to_node EXPORT_SYMBOL vmlinux 0x1cdd39ba logic_outsl -EXPORT_SYMBOL vmlinux 0x1ce38aac csum_and_copy_to_iter -EXPORT_SYMBOL vmlinux 0x1ce8ef55 param_ops_uint -EXPORT_SYMBOL vmlinux 0x1cefe2fc rproc_boot EXPORT_SYMBOL vmlinux 0x1cf5efa6 xudma_rflow_get_id -EXPORT_SYMBOL vmlinux 0x1cf67942 fman_port_bind +EXPORT_SYMBOL vmlinux 0x1cfb0f0d block_write_begin +EXPORT_SYMBOL vmlinux 0x1cfe07fc input_register_handle EXPORT_SYMBOL vmlinux 0x1d07e365 memdup_user_nul -EXPORT_SYMBOL vmlinux 0x1d0f263f pnp_request_card_device +EXPORT_SYMBOL vmlinux 0x1d162c88 devfreq_add_governor EXPORT_SYMBOL vmlinux 0x1d1abdf0 acpi_get_physical_device_location +EXPORT_SYMBOL vmlinux 0x1d1c522f register_quota_format EXPORT_SYMBOL vmlinux 0x1d24c881 ___ratelimit EXPORT_SYMBOL vmlinux 0x1d2d6d15 wait_iff_congested -EXPORT_SYMBOL vmlinux 0x1d384504 netlink_set_err -EXPORT_SYMBOL vmlinux 0x1d3b1fb2 blk_mq_start_request EXPORT_SYMBOL vmlinux 0x1d40b6f3 idr_for_each +EXPORT_SYMBOL vmlinux 0x1d4a7b1b flow_rule_match_eth_addrs +EXPORT_SYMBOL vmlinux 0x1d5abb72 default_qdisc_ops EXPORT_SYMBOL vmlinux 0x1d5cedae __tracepoint_kfree -EXPORT_SYMBOL vmlinux 0x1d616a26 __sk_mem_reduce_allocated -EXPORT_SYMBOL vmlinux 0x1d76f2b6 __dev_get_by_name -EXPORT_SYMBOL vmlinux 0x1d7acabc jbd2_journal_try_to_free_buffers -EXPORT_SYMBOL vmlinux 0x1d7f5eb6 seg6_push_hmac -EXPORT_SYMBOL vmlinux 0x1d80fd53 tcp_stream_memory_free -EXPORT_SYMBOL vmlinux 0x1d8ca4d6 sock_no_bind -EXPORT_SYMBOL vmlinux 0x1db9941d kobject_get -EXPORT_SYMBOL vmlinux 0x1dbc3477 inet_addr_type_dev_table -EXPORT_SYMBOL vmlinux 0x1dbd461e free_inode_nonrcu -EXPORT_SYMBOL vmlinux 0x1dbf87bb __post_watch_notification +EXPORT_SYMBOL vmlinux 0x1d6fb9b4 fscrypt_ioctl_get_policy +EXPORT_SYMBOL vmlinux 0x1d857e78 of_get_next_child EXPORT_SYMBOL vmlinux 0x1dc6c93b lookup_user_key -EXPORT_SYMBOL vmlinux 0x1dcb3750 ppp_channel_index -EXPORT_SYMBOL vmlinux 0x1dcf4dc8 dquot_scan_active +EXPORT_SYMBOL vmlinux 0x1dcf6e72 register_console EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap -EXPORT_SYMBOL vmlinux 0x1ddd23f7 param_get_short -EXPORT_SYMBOL vmlinux 0x1ddd643c flow_hash_from_keys -EXPORT_SYMBOL vmlinux 0x1de18015 loop_register_transfer 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 0x1df3b313 skb_append -EXPORT_SYMBOL vmlinux 0x1df9e2b9 input_mt_report_slot_state +EXPORT_SYMBOL vmlinux 0x1dee5454 pci_ep_cfs_remove_epc_group +EXPORT_SYMBOL vmlinux 0x1dfb02e1 tcf_action_update_stats EXPORT_SYMBOL vmlinux 0x1e0373fc imx_scu_irq_group_enable -EXPORT_SYMBOL vmlinux 0x1e06ca2c mipi_dsi_dcs_set_display_brightness EXPORT_SYMBOL vmlinux 0x1e0a0c24 mod_timer_pending +EXPORT_SYMBOL vmlinux 0x1e0c94a9 ipv6_setsockopt EXPORT_SYMBOL vmlinux 0x1e0cd7fe acpi_detach_data +EXPORT_SYMBOL vmlinux 0x1e1ad8e5 dma_resv_init EXPORT_SYMBOL vmlinux 0x1e1e140e ns_to_timespec64 -EXPORT_SYMBOL vmlinux 0x1e42ef66 fman_set_mac_active_pause -EXPORT_SYMBOL vmlinux 0x1e593d81 dquot_resume -EXPORT_SYMBOL vmlinux 0x1e5e0577 input_grab_device -EXPORT_SYMBOL vmlinux 0x1e5e249e xfrm_policy_destroy +EXPORT_SYMBOL vmlinux 0x1e33c4ea pci_release_selected_regions +EXPORT_SYMBOL vmlinux 0x1e5012ec is_nvdimm_bus_locked EXPORT_SYMBOL vmlinux 0x1e6adaa0 bitmap_print_bitmask_to_buf EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr -EXPORT_SYMBOL vmlinux 0x1e77e1ef tcp_syn_ack_timeout -EXPORT_SYMBOL vmlinux 0x1e916635 genphy_suspend -EXPORT_SYMBOL vmlinux 0x1e929906 __mmap_lock_do_trace_released +EXPORT_SYMBOL vmlinux 0x1e7f0017 tcf_qevent_handle +EXPORT_SYMBOL vmlinux 0x1e94719c set_anon_super +EXPORT_SYMBOL vmlinux 0x1e954b09 pci_find_resource +EXPORT_SYMBOL vmlinux 0x1e9cc5e0 __post_watch_notification EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu -EXPORT_SYMBOL vmlinux 0x1ecbcdce scsi_device_set_state EXPORT_SYMBOL vmlinux 0x1ed7eb60 __sg_free_table EXPORT_SYMBOL vmlinux 0x1edb69d6 ktime_get_raw_ts64 -EXPORT_SYMBOL vmlinux 0x1f03e05e blkdev_put -EXPORT_SYMBOL vmlinux 0x1f07c748 tty_chars_in_buffer -EXPORT_SYMBOL vmlinux 0x1f12f714 of_chosen -EXPORT_SYMBOL vmlinux 0x1f140ca1 netdev_adjacent_change_commit -EXPORT_SYMBOL vmlinux 0x1f295858 free_netdev -EXPORT_SYMBOL vmlinux 0x1f32c2ba phy_request_interrupt -EXPORT_SYMBOL vmlinux 0x1f359b1d tcf_block_get_ext -EXPORT_SYMBOL vmlinux 0x1f3c89d8 sock_kfree_s -EXPORT_SYMBOL vmlinux 0x1f45a6ef __hw_addr_unsync_dev -EXPORT_SYMBOL vmlinux 0x1f4974e2 migrate_vma_finalize -EXPORT_SYMBOL vmlinux 0x1f4bdece kernel_connect +EXPORT_SYMBOL vmlinux 0x1ee5b8b9 generic_file_open +EXPORT_SYMBOL vmlinux 0x1efba717 dst_dev_put +EXPORT_SYMBOL vmlinux 0x1efd1e85 mark_buffer_dirty_inode EXPORT_SYMBOL vmlinux 0x1f557414 gen_pool_has_addr -EXPORT_SYMBOL vmlinux 0x1f6ddcd5 build_skb -EXPORT_SYMBOL vmlinux 0x1f8d8803 blkdev_issue_flush -EXPORT_SYMBOL vmlinux 0x1f9b64d7 md_flush_request -EXPORT_SYMBOL vmlinux 0x1f9d010c vme_unregister_bridge -EXPORT_SYMBOL vmlinux 0x1f9d54af mount_bdev -EXPORT_SYMBOL vmlinux 0x1fa2c701 pci_remove_bus +EXPORT_SYMBOL vmlinux 0x1f573192 blk_mq_requeue_request +EXPORT_SYMBOL vmlinux 0x1f8b4dad of_find_node_by_name +EXPORT_SYMBOL vmlinux 0x1f993100 xp_can_alloc +EXPORT_SYMBOL vmlinux 0x1fa32182 devfreq_update_interval +EXPORT_SYMBOL vmlinux 0x1fb65fc5 pci_enable_ptm +EXPORT_SYMBOL vmlinux 0x1fb97010 jbd2_journal_invalidatepage +EXPORT_SYMBOL vmlinux 0x1fba440d scsi_get_host_dev +EXPORT_SYMBOL vmlinux 0x1fbc2b6b vme_slave_request EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio -EXPORT_SYMBOL vmlinux 0x1fbfaca5 nf_reinject -EXPORT_SYMBOL vmlinux 0x1fc73574 nexthop_bucket_set_hw_flags +EXPORT_SYMBOL vmlinux 0x1fc52d26 bio_integrity_add_page EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag -EXPORT_SYMBOL vmlinux 0x1fe3c673 kill_litter_super -EXPORT_SYMBOL vmlinux 0x1ff0b57e amba_driver_register +EXPORT_SYMBOL vmlinux 0x1fd542b6 make_bad_inode +EXPORT_SYMBOL vmlinux 0x1fd7dc90 skb_copy_and_csum_dev +EXPORT_SYMBOL vmlinux 0x1fda244c phy_ethtool_get_wol +EXPORT_SYMBOL vmlinux 0x1fe53b3f scsi_scan_target +EXPORT_SYMBOL vmlinux 0x1fe95a42 sock_setsockopt EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul -EXPORT_SYMBOL vmlinux 0x20098d69 inet_add_offload EXPORT_SYMBOL vmlinux 0x200b2041 in6addr_any -EXPORT_SYMBOL vmlinux 0x201029f0 iov_iter_bvec -EXPORT_SYMBOL vmlinux 0x2032f028 sg_miter_start -EXPORT_SYMBOL vmlinux 0x20397037 pci_release_resource -EXPORT_SYMBOL vmlinux 0x203bd46a inet_csk_accept +EXPORT_SYMBOL vmlinux 0x2015b38a mdio_bus_type +EXPORT_SYMBOL vmlinux 0x202263d8 sk_stop_timer EXPORT_SYMBOL vmlinux 0x20463df4 wait_for_completion_killable +EXPORT_SYMBOL vmlinux 0x2049780c netpoll_send_skb +EXPORT_SYMBOL vmlinux 0x20499876 sock_register EXPORT_SYMBOL vmlinux 0x204af5b5 netlbl_audit_start EXPORT_SYMBOL vmlinux 0x204c19f5 tcp_alloc_md5sig_pool EXPORT_SYMBOL vmlinux 0x204c5067 scsi_dev_info_add_list -EXPORT_SYMBOL vmlinux 0x2057a230 serial8250_set_isa_configurator -EXPORT_SYMBOL vmlinux 0x20665c86 dcache_dir_open -EXPORT_SYMBOL vmlinux 0x208ed558 page_symlink -EXPORT_SYMBOL vmlinux 0x209783f4 pci_bus_find_capability -EXPORT_SYMBOL vmlinux 0x2098ee97 simple_dir_operations -EXPORT_SYMBOL vmlinux 0x20a11dd1 tcf_qevent_init -EXPORT_SYMBOL vmlinux 0x20a6db16 fsync_bdev +EXPORT_SYMBOL vmlinux 0x205261d9 tegra_ivc_init +EXPORT_SYMBOL vmlinux 0x20536b3c inet_csk_prepare_forced_close +EXPORT_SYMBOL vmlinux 0x20775111 pcie_capability_read_word +EXPORT_SYMBOL vmlinux 0x207f6872 get_tree_single_reconf EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data -EXPORT_SYMBOL vmlinux 0x20bdbd0a file_ns_capable +EXPORT_SYMBOL vmlinux 0x20af206d tcf_qevent_dump EXPORT_SYMBOL vmlinux 0x20cbb30a __percpu_counter_init -EXPORT_SYMBOL vmlinux 0x20d3395f __d_drop +EXPORT_SYMBOL vmlinux 0x20d5eb3e del_gendisk EXPORT_SYMBOL vmlinux 0x20d65e40 fb_find_nearest_mode -EXPORT_SYMBOL vmlinux 0x20e41d14 nd_region_acquire_lane -EXPORT_SYMBOL vmlinux 0x20e84e0b vma_set_file +EXPORT_SYMBOL vmlinux 0x20d867ba ip_frag_next +EXPORT_SYMBOL vmlinux 0x20e4d11a sock_kmalloc EXPORT_SYMBOL vmlinux 0x20eadeb6 ip_compute_csum +EXPORT_SYMBOL vmlinux 0x20ef9e0c netif_skb_features +EXPORT_SYMBOL vmlinux 0x20f549c8 fb_get_buffer_offset EXPORT_SYMBOL vmlinux 0x20fff6ec ZSTD_DStreamInSize EXPORT_SYMBOL vmlinux 0x21059cd7 audit_log_task_context -EXPORT_SYMBOL vmlinux 0x21082ff8 pmem_should_map_pages -EXPORT_SYMBOL vmlinux 0x2118b9b6 of_phy_get_and_connect +EXPORT_SYMBOL vmlinux 0x210818e7 netdev_lower_dev_get_private +EXPORT_SYMBOL vmlinux 0x210c30ab ipv6_push_frag_opts +EXPORT_SYMBOL vmlinux 0x2136e032 load_nls_default EXPORT_SYMBOL vmlinux 0x213a738d memregion_alloc +EXPORT_SYMBOL vmlinux 0x213dea6e account_page_redirty +EXPORT_SYMBOL vmlinux 0x213e4762 kill_pid EXPORT_SYMBOL vmlinux 0x213e4965 ps2_is_keyboard_id +EXPORT_SYMBOL vmlinux 0x21548a6a vfs_symlink +EXPORT_SYMBOL vmlinux 0x2154d0b2 kill_pgrp EXPORT_SYMBOL vmlinux 0x215a8ec8 slhc_init -EXPORT_SYMBOL vmlinux 0x215e49b8 get_fs_type -EXPORT_SYMBOL vmlinux 0x21617d21 vfs_getattr_nosec -EXPORT_SYMBOL vmlinux 0x2164674c d_delete -EXPORT_SYMBOL vmlinux 0x218151cd param_set_invbool +EXPORT_SYMBOL vmlinux 0x216ac3e8 __break_lease +EXPORT_SYMBOL vmlinux 0x218b7764 tcp_v4_destroy_sock EXPORT_SYMBOL vmlinux 0x218e600b pci_add_resource_offset -EXPORT_SYMBOL vmlinux 0x21a3a2a6 dma_alloc_attrs -EXPORT_SYMBOL vmlinux 0x21a7993f jbd2_journal_set_triggers -EXPORT_SYMBOL vmlinux 0x21b05688 inet_release +EXPORT_SYMBOL vmlinux 0x218eb011 udp_skb_destructor +EXPORT_SYMBOL vmlinux 0x2197264c mark_buffer_dirty +EXPORT_SYMBOL vmlinux 0x21a58c7e keyring_clear +EXPORT_SYMBOL vmlinux 0x21a9e002 filemap_check_errors +EXPORT_SYMBOL vmlinux 0x21bac1d4 input_mt_destroy_slots +EXPORT_SYMBOL vmlinux 0x21bd5e13 nf_ip6_checksum EXPORT_SYMBOL vmlinux 0x21bdb523 errseq_check_and_advance EXPORT_SYMBOL vmlinux 0x21be37e1 hdmi_avi_infoframe_check -EXPORT_SYMBOL vmlinux 0x21bf8adc tcp_md5_hash_skb_data -EXPORT_SYMBOL vmlinux 0x21c670b5 clean_bdev_aliases -EXPORT_SYMBOL vmlinux 0x21c6b2d7 mem_cgroup_from_task -EXPORT_SYMBOL vmlinux 0x21c965e7 generic_file_splice_read -EXPORT_SYMBOL vmlinux 0x21dcae71 sock_wake_async -EXPORT_SYMBOL vmlinux 0x21ddca62 fasync_helper +EXPORT_SYMBOL vmlinux 0x21c5d442 __fs_parse +EXPORT_SYMBOL vmlinux 0x21cf8a54 flow_rule_match_ip +EXPORT_SYMBOL vmlinux 0x21ddb665 sock_create_kern +EXPORT_SYMBOL vmlinux 0x21e0834e filemap_fdatawait_range_keep_errors EXPORT_SYMBOL vmlinux 0x21e13cb3 inet_peer_xrlim_allow -EXPORT_SYMBOL vmlinux 0x21e94ffa kernel_sock_ip_overhead -EXPORT_SYMBOL vmlinux 0x21ee6774 xfrm_unregister_km EXPORT_SYMBOL vmlinux 0x21ef374c try_wait_for_completion -EXPORT_SYMBOL vmlinux 0x21fa0f10 tcp_create_openreq_child -EXPORT_SYMBOL vmlinux 0x21fd2b39 simple_dentry_operations -EXPORT_SYMBOL vmlinux 0x2201960c __vfs_setxattr +EXPORT_SYMBOL vmlinux 0x21f4c89a bio_integrity_clone EXPORT_SYMBOL vmlinux 0x220c7021 tegra_io_pad_power_disable -EXPORT_SYMBOL vmlinux 0x221faefd seq_put_decimal_ull -EXPORT_SYMBOL vmlinux 0x222351b4 security_old_inode_init_security +EXPORT_SYMBOL vmlinux 0x221601b1 fs_param_is_u32 +EXPORT_SYMBOL vmlinux 0x222c4bdc blk_mq_start_hw_queue EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq +EXPORT_SYMBOL vmlinux 0x222e96e4 nvdimm_bus_lock EXPORT_SYMBOL vmlinux 0x2234ca51 acpi_match_platform_list +EXPORT_SYMBOL vmlinux 0x22387079 scsi_ioctl EXPORT_SYMBOL vmlinux 0x224ce651 xudma_free_gp_rflow_range -EXPORT_SYMBOL vmlinux 0x2251b878 napi_gro_flush -EXPORT_SYMBOL vmlinux 0x2264f712 crypto_sha512_finup -EXPORT_SYMBOL vmlinux 0x22746583 ipv6_dev_get_saddr -EXPORT_SYMBOL vmlinux 0x22824317 d_splice_alias -EXPORT_SYMBOL vmlinux 0x228bcdd7 genlmsg_put -EXPORT_SYMBOL vmlinux 0x22a45021 inet_confirm_addr -EXPORT_SYMBOL vmlinux 0x22a5592d dma_async_device_unregister +EXPORT_SYMBOL vmlinux 0x22583d4c unregister_console +EXPORT_SYMBOL vmlinux 0x226a5299 cdev_init +EXPORT_SYMBOL vmlinux 0x228998f2 phy_start_cable_test_tdr +EXPORT_SYMBOL vmlinux 0x2289a60c datagram_poll +EXPORT_SYMBOL vmlinux 0x22967452 devm_memunmap EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound -EXPORT_SYMBOL vmlinux 0x22f9156a __tty_insert_flip_char -EXPORT_SYMBOL vmlinux 0x2322b7cf __xfrm_decode_session -EXPORT_SYMBOL vmlinux 0x23491379 blk_rq_map_user_iov -EXPORT_SYMBOL vmlinux 0x234c1179 jbd2_fc_end_commit_fallback -EXPORT_SYMBOL vmlinux 0x23517b77 passthru_features_check +EXPORT_SYMBOL vmlinux 0x22b74119 gro_find_receive_by_type +EXPORT_SYMBOL vmlinux 0x22bcbd90 fc_mount +EXPORT_SYMBOL vmlinux 0x22d3b644 md_finish_reshape +EXPORT_SYMBOL vmlinux 0x22d5412b fman_unregister_intr +EXPORT_SYMBOL vmlinux 0x22db1603 mmc_get_card +EXPORT_SYMBOL vmlinux 0x22eb6958 mmc_hw_reset EXPORT_SYMBOL vmlinux 0x23559c51 qman_oos_fq +EXPORT_SYMBOL vmlinux 0x2358a854 pci_assign_resource EXPORT_SYMBOL vmlinux 0x2364c85a tasklet_init +EXPORT_SYMBOL vmlinux 0x23795189 mipi_dsi_dcs_exit_sleep_mode EXPORT_SYMBOL vmlinux 0x237a0b5c __traceiter_dma_fence_signaled EXPORT_SYMBOL vmlinux 0x238b099f mipi_dsi_packet_format_is_short +EXPORT_SYMBOL vmlinux 0x23914f7d __sk_queue_drop_skb EXPORT_SYMBOL vmlinux 0x2391f725 irq_stat -EXPORT_SYMBOL vmlinux 0x23a7c0c2 of_graph_get_remote_node +EXPORT_SYMBOL vmlinux 0x2393bfdb tcp_read_sock +EXPORT_SYMBOL vmlinux 0x23b48e44 inet_stream_ops +EXPORT_SYMBOL vmlinux 0x23b7bacf locks_remove_posix EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path -EXPORT_SYMBOL vmlinux 0x23bc5a63 fb_prepare_logo -EXPORT_SYMBOL vmlinux 0x23c1997f kfree_skb EXPORT_SYMBOL vmlinux 0x23cabbb1 register_sysctl_paths -EXPORT_SYMBOL vmlinux 0x23d6f43a __netdev_notify_peers +EXPORT_SYMBOL vmlinux 0x23cb3803 tty_port_destroy +EXPORT_SYMBOL vmlinux 0x23d86030 fscrypt_encrypt_pagecache_blocks EXPORT_SYMBOL vmlinux 0x23daa989 mipi_dsi_create_packet -EXPORT_SYMBOL vmlinux 0x23e186f2 key_alloc -EXPORT_SYMBOL vmlinux 0x23e30b4f mmc_calc_max_discard -EXPORT_SYMBOL vmlinux 0x23e778e3 pci_dev_driver -EXPORT_SYMBOL vmlinux 0x23ea571f pnp_device_detach +EXPORT_SYMBOL vmlinux 0x23e193e2 blk_rq_init EXPORT_SYMBOL vmlinux 0x23ee13fd mb_cache_entry_find_first +EXPORT_SYMBOL vmlinux 0x23f0a91a netdev_txq_to_tc EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node -EXPORT_SYMBOL vmlinux 0x240347ba blk_mq_queue_stopped -EXPORT_SYMBOL vmlinux 0x241174ec nd_integrity_init -EXPORT_SYMBOL vmlinux 0x241865b0 nobh_write_begin EXPORT_SYMBOL vmlinux 0x24212d86 __frontswap_invalidate_page -EXPORT_SYMBOL vmlinux 0x24222fa9 get_mem_cgroup_from_mm -EXPORT_SYMBOL vmlinux 0x243a2357 genphy_setup_forced -EXPORT_SYMBOL vmlinux 0x2440f381 blk_queue_io_opt EXPORT_SYMBOL vmlinux 0x24428be5 strncpy_from_user -EXPORT_SYMBOL vmlinux 0x24525b4f pci_free_irq -EXPORT_SYMBOL vmlinux 0x2455ed66 __i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0x2446cfa7 unregister_qdisc EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline -EXPORT_SYMBOL vmlinux 0x2459f946 kill_block_super -EXPORT_SYMBOL vmlinux 0x2463a4f6 twl6040_get_sysclk -EXPORT_SYMBOL vmlinux 0x246cd7e6 __mdiobus_register -EXPORT_SYMBOL vmlinux 0x24795ffb of_parse_phandle_with_args_map +EXPORT_SYMBOL vmlinux 0x245ec479 copy_page_from_iter_atomic +EXPORT_SYMBOL vmlinux 0x2467a123 __task_pid_nr_ns +EXPORT_SYMBOL vmlinux 0x247b4274 tcp_get_cookie_sock +EXPORT_SYMBOL vmlinux 0x247ebdcd vfs_create_mount +EXPORT_SYMBOL vmlinux 0x247f37d6 bio_copy_data EXPORT_SYMBOL vmlinux 0x2484adc3 __kfifo_to_user_r -EXPORT_SYMBOL vmlinux 0x24acf664 phy_ethtool_get_link_ksettings -EXPORT_SYMBOL vmlinux 0x24ae827f user_path_create -EXPORT_SYMBOL vmlinux 0x24b65f08 devm_nvmem_cell_put -EXPORT_SYMBOL vmlinux 0x24bf0e43 inet_get_local_port_range -EXPORT_SYMBOL vmlinux 0x24c3a70f of_mdiobus_phy_device_register -EXPORT_SYMBOL vmlinux 0x24c7f5f0 n_tty_ioctl_helper -EXPORT_SYMBOL vmlinux 0x24cb31fd inode_dio_wait +EXPORT_SYMBOL vmlinux 0x24a14b1f __ip_mc_dec_group +EXPORT_SYMBOL vmlinux 0x24c91de4 mipi_dsi_dcs_set_column_address EXPORT_SYMBOL vmlinux 0x24d273d1 add_timer -EXPORT_SYMBOL vmlinux 0x24ec4b06 bio_clone_fast -EXPORT_SYMBOL vmlinux 0x25027afc inet_sk_rebuild_header +EXPORT_SYMBOL vmlinux 0x24e72041 inode_needs_sync +EXPORT_SYMBOL vmlinux 0x24e9e752 jbd2_journal_force_commit_nested +EXPORT_SYMBOL vmlinux 0x24f458eb pci_scan_root_bus +EXPORT_SYMBOL vmlinux 0x24fa423b pcie_capability_clear_and_set_word EXPORT_SYMBOL vmlinux 0x2505bf18 kstrtol_from_user +EXPORT_SYMBOL vmlinux 0x2511bec4 pci_reenable_device +EXPORT_SYMBOL vmlinux 0x251db898 ndo_dflt_fdb_add EXPORT_SYMBOL vmlinux 0x252332f1 __SCK__tp_func_mmap_lock_released -EXPORT_SYMBOL vmlinux 0x25279d42 __scsi_iterate_devices -EXPORT_SYMBOL vmlinux 0x252ab282 mipi_dsi_device_unregister -EXPORT_SYMBOL vmlinux 0x2534811d user_path_at_empty -EXPORT_SYMBOL vmlinux 0x25422096 pci_ep_cfs_remove_epf_group -EXPORT_SYMBOL vmlinux 0x254839ae param_get_uint -EXPORT_SYMBOL vmlinux 0x255d2954 get_tree_single -EXPORT_SYMBOL vmlinux 0x25687870 tcp_check_req -EXPORT_SYMBOL vmlinux 0x257d4bf0 inet6_bind +EXPORT_SYMBOL vmlinux 0x256d8a53 mr_mfc_seq_idx +EXPORT_SYMBOL vmlinux 0x257d40c3 alloc_file_pseudo EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid +EXPORT_SYMBOL vmlinux 0x2585746c vga_client_register +EXPORT_SYMBOL vmlinux 0x25859efd cdev_set_parent EXPORT_SYMBOL vmlinux 0x258a2c02 _raw_write_trylock -EXPORT_SYMBOL vmlinux 0x258d0138 netdev_port_same_parent_id EXPORT_SYMBOL vmlinux 0x258d2f76 net_dim_get_tx_moderation -EXPORT_SYMBOL vmlinux 0x258e5f2c vfs_readlink EXPORT_SYMBOL vmlinux 0x25974000 wait_for_completion -EXPORT_SYMBOL vmlinux 0x25a3d070 __xfrm_init_state -EXPORT_SYMBOL vmlinux 0x25a903bf clear_nlink -EXPORT_SYMBOL vmlinux 0x25b0bfaa generic_block_bmap -EXPORT_SYMBOL vmlinux 0x25d741b7 skb_vlan_pop +EXPORT_SYMBOL vmlinux 0x25a5b206 copy_highpage +EXPORT_SYMBOL vmlinux 0x25adcc3e dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0x25b5a1b7 skb_checksum_help +EXPORT_SYMBOL vmlinux 0x25ba4ad3 sg_miter_next EXPORT_SYMBOL vmlinux 0x25e58a09 hdmi_avi_infoframe_init EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free -EXPORT_SYMBOL vmlinux 0x25ec4745 fscrypt_encrypt_block_inplace -EXPORT_SYMBOL vmlinux 0x25ff9fd9 rproc_vq_interrupt +EXPORT_SYMBOL vmlinux 0x25ef2e9b bio_chain +EXPORT_SYMBOL vmlinux 0x25f10bcb clear_page_dirty_for_io +EXPORT_SYMBOL vmlinux 0x25fe18b9 dquot_get_state +EXPORT_SYMBOL vmlinux 0x26003568 dev_remove_pack EXPORT_SYMBOL vmlinux 0x260a095a __sg_alloc_table -EXPORT_SYMBOL vmlinux 0x260e5827 update_devfreq -EXPORT_SYMBOL vmlinux 0x26161c6d mmc_can_gpio_ro -EXPORT_SYMBOL vmlinux 0x2637a7c7 inet6_csk_route_req +EXPORT_SYMBOL vmlinux 0x2637c6da set_blocksize +EXPORT_SYMBOL vmlinux 0x263b3b8c memory_cgrp_subsys EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions EXPORT_SYMBOL vmlinux 0x263c3152 bcmp EXPORT_SYMBOL vmlinux 0x263f0d1f qman_portal_set_iperiod -EXPORT_SYMBOL vmlinux 0x26477cd8 __find_get_block -EXPORT_SYMBOL vmlinux 0x26880b6d try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x2642ae41 xfrm_state_free +EXPORT_SYMBOL vmlinux 0x264458a3 jbd2_journal_begin_ordered_truncate +EXPORT_SYMBOL vmlinux 0x2648779a in6_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x2648b530 cdrom_dummy_generic_packet +EXPORT_SYMBOL vmlinux 0x265090f3 pnp_disable_dev +EXPORT_SYMBOL vmlinux 0x265c0086 __lock_page +EXPORT_SYMBOL vmlinux 0x2672d452 xfrm6_rcv +EXPORT_SYMBOL vmlinux 0x267cd873 unregister_shrinker EXPORT_SYMBOL vmlinux 0x2688ec10 bitmap_zalloc -EXPORT_SYMBOL vmlinux 0x26936f37 vfs_llseek -EXPORT_SYMBOL vmlinux 0x269dcd09 bdev_check_media_change -EXPORT_SYMBOL vmlinux 0x26adb63b xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x269c705e mark_buffer_async_write +EXPORT_SYMBOL vmlinux 0x26b336a2 __mmap_lock_do_trace_start_locking +EXPORT_SYMBOL vmlinux 0x26baaa52 import_iovec +EXPORT_SYMBOL vmlinux 0x26c0048a ppp_input_error +EXPORT_SYMBOL vmlinux 0x26c1d399 nvdimm_namespace_locked +EXPORT_SYMBOL vmlinux 0x26caa08a d_move EXPORT_SYMBOL vmlinux 0x26cc73c3 complete_and_exit +EXPORT_SYMBOL vmlinux 0x26e1a3b2 of_device_unregister EXPORT_SYMBOL vmlinux 0x26e298e0 unregister_memory_notifier -EXPORT_SYMBOL vmlinux 0x26f01df6 cdev_del -EXPORT_SYMBOL vmlinux 0x26f1f2c5 mmc_register_driver -EXPORT_SYMBOL vmlinux 0x26ff187c nf_log_packet +EXPORT_SYMBOL vmlinux 0x270181f2 file_update_time +EXPORT_SYMBOL vmlinux 0x270954a4 xfrm_find_acq_byseq EXPORT_SYMBOL vmlinux 0x270cf88f dump_stack_lvl -EXPORT_SYMBOL vmlinux 0x27120467 fwnode_get_phy_id -EXPORT_SYMBOL vmlinux 0x27138681 generic_ro_fops -EXPORT_SYMBOL vmlinux 0x271b828f mmc_can_secure_erase_trim +EXPORT_SYMBOL vmlinux 0x271ba179 netdev_master_upper_dev_get EXPORT_SYMBOL vmlinux 0x271cba95 acpi_bus_private_data_handler -EXPORT_SYMBOL vmlinux 0x27283e0b skb_coalesce_rx_frag +EXPORT_SYMBOL vmlinux 0x2724815c seq_pad EXPORT_SYMBOL vmlinux 0x272a8933 udp_memory_allocated -EXPORT_SYMBOL vmlinux 0x27311ba4 put_fs_context +EXPORT_SYMBOL vmlinux 0x272a8d0f ppp_register_channel EXPORT_SYMBOL vmlinux 0x2733eaf7 scsi_dev_info_list_add_keyed +EXPORT_SYMBOL vmlinux 0x273d4f2f tty_port_free_xmit_buf +EXPORT_SYMBOL vmlinux 0x27411736 sock_recv_errqueue +EXPORT_SYMBOL vmlinux 0x2742100f jbd2_fc_wait_bufs EXPORT_SYMBOL vmlinux 0x27479d14 param_free_charp -EXPORT_SYMBOL vmlinux 0x2755b0ac jbd2_fc_wait_bufs 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 0x277dbecc netdev_bonding_info_change EXPORT_SYMBOL vmlinux 0x27810361 acpi_os_wait_events_complete EXPORT_SYMBOL vmlinux 0x2782b393 xfrm_state_walk_init +EXPORT_SYMBOL vmlinux 0x2783b92a cdrom_release EXPORT_SYMBOL vmlinux 0x27864d57 memparse -EXPORT_SYMBOL vmlinux 0x27ad7b21 add_to_page_cache_locked +EXPORT_SYMBOL vmlinux 0x27921a17 ip_output +EXPORT_SYMBOL vmlinux 0x27a19a3f vga_get +EXPORT_SYMBOL vmlinux 0x27a426bb dentry_path_raw +EXPORT_SYMBOL vmlinux 0x27a83410 dm_table_event +EXPORT_SYMBOL vmlinux 0x27aaba07 of_get_i2c_adapter_by_node EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync -EXPORT_SYMBOL vmlinux 0x27bf31ff migrate_page_copy +EXPORT_SYMBOL vmlinux 0x27be449f jbd2_journal_update_sb_errno EXPORT_SYMBOL vmlinux 0x27c3c728 qman_release_fqid EXPORT_SYMBOL vmlinux 0x27cdca93 pci_add_resource -EXPORT_SYMBOL vmlinux 0x27df1f0b fib_notifier_ops_register -EXPORT_SYMBOL vmlinux 0x27eea460 __blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0x27d583b6 drop_super_exclusive +EXPORT_SYMBOL vmlinux 0x27d61a4a xsk_clear_rx_need_wakeup +EXPORT_SYMBOL vmlinux 0x27dc88da netlink_set_err +EXPORT_SYMBOL vmlinux 0x27e4e0ed tty_lock +EXPORT_SYMBOL vmlinux 0x27ece652 neigh_seq_next +EXPORT_SYMBOL vmlinux 0x27f849b6 __tty_alloc_driver +EXPORT_SYMBOL vmlinux 0x28128e2a jbd2_journal_restart +EXPORT_SYMBOL vmlinux 0x28134b4a of_graph_get_port_parent EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek -EXPORT_SYMBOL vmlinux 0x281cfaf3 pci_enable_device_mem -EXPORT_SYMBOL vmlinux 0x2826daeb netdev_master_upper_dev_link -EXPORT_SYMBOL vmlinux 0x28465324 __lock_buffer -EXPORT_SYMBOL vmlinux 0x2859c7ae d_set_fallthru +EXPORT_SYMBOL vmlinux 0x28559f91 dentry_open +EXPORT_SYMBOL vmlinux 0x2874ea71 generic_perform_write EXPORT_SYMBOL vmlinux 0x2875a315 utf32_to_utf8 -EXPORT_SYMBOL vmlinux 0x2876a5ca of_graph_get_port_parent -EXPORT_SYMBOL vmlinux 0x287f8f4a phy_do_ioctl -EXPORT_SYMBOL vmlinux 0x2894a155 nosteal_pipe_buf_ops -EXPORT_SYMBOL vmlinux 0x28a44163 amba_device_unregister -EXPORT_SYMBOL vmlinux 0x28a8bac8 dm_kobject_release -EXPORT_SYMBOL vmlinux 0x28b4533d nf_log_bind_pf -EXPORT_SYMBOL vmlinux 0x28c361d5 mmc_get_card -EXPORT_SYMBOL vmlinux 0x28c70a62 configfs_register_default_group -EXPORT_SYMBOL vmlinux 0x28e6ed13 netdev_emerg -EXPORT_SYMBOL vmlinux 0x28e70652 kthread_blkcg +EXPORT_SYMBOL vmlinux 0x288e4dbe vfs_iocb_iter_write +EXPORT_SYMBOL vmlinux 0x28a119d5 qdisc_watchdog_schedule_range_ns +EXPORT_SYMBOL vmlinux 0x28b75fbe inc_nlink +EXPORT_SYMBOL vmlinux 0x28dd0ca3 mmc_put_card +EXPORT_SYMBOL vmlinux 0x28dd7ca9 dma_pool_create EXPORT_SYMBOL vmlinux 0x28f94604 __ubsan_handle_builtin_unreachable -EXPORT_SYMBOL vmlinux 0x29094d4b ata_port_printk -EXPORT_SYMBOL vmlinux 0x291f3d7f gro_cells_init -EXPORT_SYMBOL vmlinux 0x2924854e reuseport_alloc -EXPORT_SYMBOL vmlinux 0x294cf1c8 invalidate_bdev -EXPORT_SYMBOL vmlinux 0x295d27c9 generic_pipe_buf_get +EXPORT_SYMBOL vmlinux 0x2905f109 mmc_can_discard +EXPORT_SYMBOL vmlinux 0x2919aa6e genphy_read_abilities +EXPORT_SYMBOL vmlinux 0x291d9bb0 devm_clk_get_optional +EXPORT_SYMBOL vmlinux 0x2937d48c generic_mii_ioctl +EXPORT_SYMBOL vmlinux 0x293d034e cros_ec_check_result +EXPORT_SYMBOL vmlinux 0x295273fb do_SAK +EXPORT_SYMBOL vmlinux 0x295972df inet_csk_destroy_sock +EXPORT_SYMBOL vmlinux 0x295ea28a get_fs_type EXPORT_SYMBOL vmlinux 0x29604158 napi_busy_loop -EXPORT_SYMBOL vmlinux 0x296b7b7a netlbl_calipso_ops_register -EXPORT_SYMBOL vmlinux 0x29761a96 hmm_range_fault -EXPORT_SYMBOL vmlinux 0x29773b9b phy_trigger_machine -EXPORT_SYMBOL vmlinux 0x29824e88 dev_uc_sync_multiple -EXPORT_SYMBOL vmlinux 0x298c8eef skb_checksum_help +EXPORT_SYMBOL vmlinux 0x296247a7 mipi_dsi_attach +EXPORT_SYMBOL vmlinux 0x297d061f reuseport_detach_sock +EXPORT_SYMBOL vmlinux 0x2997263f scsi_eh_restore_cmnd +EXPORT_SYMBOL vmlinux 0x29a50dc1 dev_get_port_parent_id +EXPORT_SYMBOL vmlinux 0x29a9e73f sock_no_mmap +EXPORT_SYMBOL vmlinux 0x29bbfd1b rproc_da_to_va +EXPORT_SYMBOL vmlinux 0x29ca19ed follow_down EXPORT_SYMBOL vmlinux 0x29e1e204 hdmi_audio_infoframe_pack -EXPORT_SYMBOL vmlinux 0x29f55c33 request_partial_firmware_into_buf -EXPORT_SYMBOL vmlinux 0x29fe5633 flow_rule_match_ct -EXPORT_SYMBOL vmlinux 0x2a0c3a06 seg6_hmac_info_lookup -EXPORT_SYMBOL vmlinux 0x2a125590 set_bh_page -EXPORT_SYMBOL vmlinux 0x2a2414fa seq_release +EXPORT_SYMBOL vmlinux 0x29e5e38f of_find_backlight_by_node +EXPORT_SYMBOL vmlinux 0x29e90632 ipv6_skip_exthdr +EXPORT_SYMBOL vmlinux 0x2a23f362 mdiobus_is_registered_device EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature -EXPORT_SYMBOL vmlinux 0x2a3aa81b __napi_alloc_skb -EXPORT_SYMBOL vmlinux 0x2a439618 page_pool_update_nid -EXPORT_SYMBOL vmlinux 0x2a44a64b ps2_handle_ack -EXPORT_SYMBOL vmlinux 0x2a65054b padata_do_parallel -EXPORT_SYMBOL vmlinux 0x2a6b4b7b i2c_put_adapter -EXPORT_SYMBOL vmlinux 0x2a6b682f napi_gro_receive -EXPORT_SYMBOL vmlinux 0x2a7a1b1c tcf_em_register -EXPORT_SYMBOL vmlinux 0x2a8182c4 kernel_param_lock -EXPORT_SYMBOL vmlinux 0x2a89b258 fwnode_mdiobus_register_phy -EXPORT_SYMBOL vmlinux 0x2a9213cd configfs_unregister_group +EXPORT_SYMBOL vmlinux 0x2a31ebb5 console_stop +EXPORT_SYMBOL vmlinux 0x2a47f772 __scsi_print_sense +EXPORT_SYMBOL vmlinux 0x2a52b732 sync_mapping_buffers +EXPORT_SYMBOL vmlinux 0x2a7573ef dev_get_by_index_rcu +EXPORT_SYMBOL vmlinux 0x2a83560c security_sk_classify_flow +EXPORT_SYMBOL vmlinux 0x2a98a439 __quota_error EXPORT_SYMBOL vmlinux 0x2a9a3905 vme_master_get EXPORT_SYMBOL vmlinux 0x2aa0843e mempool_resize EXPORT_SYMBOL vmlinux 0x2aabaf9d xudma_tchan_get EXPORT_SYMBOL vmlinux 0x2ab2ee91 brcmstb_get_product_id -EXPORT_SYMBOL vmlinux 0x2af6644d _copy_to_iter -EXPORT_SYMBOL vmlinux 0x2afbaeee param_get_bool +EXPORT_SYMBOL vmlinux 0x2abb5c94 amba_driver_unregister +EXPORT_SYMBOL vmlinux 0x2aeab178 __phy_resume +EXPORT_SYMBOL vmlinux 0x2b12302d free_buffer_head EXPORT_SYMBOL vmlinux 0x2b1abce3 fman_has_errata_a050385 -EXPORT_SYMBOL vmlinux 0x2b361055 icmp6_send -EXPORT_SYMBOL vmlinux 0x2b36eed6 dev_mc_flush -EXPORT_SYMBOL vmlinux 0x2b44c06b nd_namespace_blk_validate -EXPORT_SYMBOL vmlinux 0x2b49d9ac __inet_hash -EXPORT_SYMBOL vmlinux 0x2b4bf358 set_capacity +EXPORT_SYMBOL vmlinux 0x2b20b0ab ethtool_virtdev_set_link_ksettings EXPORT_SYMBOL vmlinux 0x2b593aa8 gen_pool_alloc_algo_owner +EXPORT_SYMBOL vmlinux 0x2b59d6b9 inet_listen +EXPORT_SYMBOL vmlinux 0x2b5b186a sock_no_sendmsg EXPORT_SYMBOL vmlinux 0x2b68bd2f del_timer -EXPORT_SYMBOL vmlinux 0x2b6f8515 fuse_mount_destroy -EXPORT_SYMBOL vmlinux 0x2b9b040a blk_put_request +EXPORT_SYMBOL vmlinux 0x2b74f975 nvdimm_check_and_set_ro +EXPORT_SYMBOL vmlinux 0x2b81527c ndisc_mc_map EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock +EXPORT_SYMBOL vmlinux 0x2bac0a07 sync_filesystem EXPORT_SYMBOL vmlinux 0x2bb6099e dq_data_lock -EXPORT_SYMBOL vmlinux 0x2bb96c4a pci_disable_msix -EXPORT_SYMBOL vmlinux 0x2bbd4357 unregister_key_type +EXPORT_SYMBOL vmlinux 0x2bbf3b15 dma_resv_add_shared_fence +EXPORT_SYMBOL vmlinux 0x2bc80f3c iov_iter_gap_alignment EXPORT_SYMBOL vmlinux 0x2bd60ab9 acpi_reset -EXPORT_SYMBOL vmlinux 0x2be19e03 security_task_getsecid_subj -EXPORT_SYMBOL vmlinux 0x2be92abc backlight_device_get_by_type -EXPORT_SYMBOL vmlinux 0x2bedf3aa qdisc_tree_reduce_backlog +EXPORT_SYMBOL vmlinux 0x2be9c3cf get_task_cred EXPORT_SYMBOL vmlinux 0x2bfbab10 __memmove -EXPORT_SYMBOL vmlinux 0x2bff1e25 framebuffer_alloc -EXPORT_SYMBOL vmlinux 0x2c14e92b vfs_tmpfile +EXPORT_SYMBOL vmlinux 0x2c03db4b simple_getattr +EXPORT_SYMBOL vmlinux 0x2c080a73 unregister_mii_tstamp_controller +EXPORT_SYMBOL vmlinux 0x2c23e4fe secure_tcpv6_ts_off EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar EXPORT_SYMBOL vmlinux 0x2c329e54 tegra_powergate_sequence_power_up -EXPORT_SYMBOL vmlinux 0x2c47b319 cdev_set_parent +EXPORT_SYMBOL vmlinux 0x2c3a7af9 _dev_info EXPORT_SYMBOL vmlinux 0x2c541e7b radix_tree_next_chunk -EXPORT_SYMBOL vmlinux 0x2c6be4e1 scsi_get_device_flags_keyed +EXPORT_SYMBOL vmlinux 0x2c591280 scsi_dma_unmap EXPORT_SYMBOL vmlinux 0x2c71fbfb proc_dobool -EXPORT_SYMBOL vmlinux 0x2c7bf788 set_anon_super -EXPORT_SYMBOL vmlinux 0x2c860dab sock_from_file +EXPORT_SYMBOL vmlinux 0x2c8a8a44 mdio_find_bus +EXPORT_SYMBOL vmlinux 0x2c8db1a2 tegra_dfll_register EXPORT_SYMBOL vmlinux 0x2c91e17c vm_get_page_prot -EXPORT_SYMBOL vmlinux 0x2ca495a0 param_ops_ulong -EXPORT_SYMBOL vmlinux 0x2ca64383 mdiobus_unregister -EXPORT_SYMBOL vmlinux 0x2cb451f4 input_set_timestamp -EXPORT_SYMBOL vmlinux 0x2cb78267 pnp_possible_config -EXPORT_SYMBOL vmlinux 0x2cb8df30 skb_checksum_trimmed -EXPORT_SYMBOL vmlinux 0x2cbc30da file_path -EXPORT_SYMBOL vmlinux 0x2cbcd75a param_get_long -EXPORT_SYMBOL vmlinux 0x2cc96284 blkdev_get_by_dev +EXPORT_SYMBOL vmlinux 0x2cc6c05a qdisc_watchdog_init_clockid EXPORT_SYMBOL vmlinux 0x2ccd059a dim_on_top -EXPORT_SYMBOL vmlinux 0x2cd6ab16 flow_rule_match_ip EXPORT_SYMBOL vmlinux 0x2cdf87a1 proc_dointvec_minmax -EXPORT_SYMBOL vmlinux 0x2ce151dc bio_copy_data_iter -EXPORT_SYMBOL vmlinux 0x2d0ab58e flow_rule_alloc +EXPORT_SYMBOL vmlinux 0x2d02198d dqget +EXPORT_SYMBOL vmlinux 0x2d0753bf scsi_is_target_device EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock EXPORT_SYMBOL vmlinux 0x2d192c70 sg_zero_buffer +EXPORT_SYMBOL vmlinux 0x2d22214e d_tmpfile EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged EXPORT_SYMBOL vmlinux 0x2d3385d3 system_wq EXPORT_SYMBOL vmlinux 0x2d39b0a7 kstrdup -EXPORT_SYMBOL vmlinux 0x2d3e723f xattr_full_name -EXPORT_SYMBOL vmlinux 0x2d42eaa6 blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0x2d403740 sock_common_getsockopt EXPORT_SYMBOL vmlinux 0x2d4c773a hdmi_spd_infoframe_init EXPORT_SYMBOL vmlinux 0x2d4daef5 find_font -EXPORT_SYMBOL vmlinux 0x2d54a591 twl6040_power -EXPORT_SYMBOL vmlinux 0x2d724e58 ip_check_defrag -EXPORT_SYMBOL vmlinux 0x2d89ec19 seq_path +EXPORT_SYMBOL vmlinux 0x2d7bb5fe filemap_flush +EXPORT_SYMBOL vmlinux 0x2d81a6b4 flow_rule_match_basic EXPORT_SYMBOL vmlinux 0x2d912bca dmi_get_bios_year EXPORT_SYMBOL vmlinux 0x2d994605 security_inode_copy_up_xattr -EXPORT_SYMBOL vmlinux 0x2db087eb neigh_carrier_down -EXPORT_SYMBOL vmlinux 0x2dbf7161 dquot_load_quota_sb -EXPORT_SYMBOL vmlinux 0x2dc5a2ec of_graph_get_port_by_id -EXPORT_SYMBOL vmlinux 0x2dccfaaf remove_conflicting_pci_framebuffers +EXPORT_SYMBOL vmlinux 0x2d9ebecf vfs_clone_file_range +EXPORT_SYMBOL vmlinux 0x2db0cc36 key_task_permission +EXPORT_SYMBOL vmlinux 0x2db863c7 sock_rfree EXPORT_SYMBOL vmlinux 0x2dce2f1c __irq_regs +EXPORT_SYMBOL vmlinux 0x2ddf977f rproc_elf_get_boot_addr EXPORT_SYMBOL vmlinux 0x2de125c0 page_frag_alloc_align -EXPORT_SYMBOL vmlinux 0x2de4f1f6 datagram_poll +EXPORT_SYMBOL vmlinux 0x2de91dd7 twl6040_set_pll EXPORT_SYMBOL vmlinux 0x2e0b1deb dma_fence_get_status +EXPORT_SYMBOL vmlinux 0x2e115fc4 ip_getsockopt EXPORT_SYMBOL vmlinux 0x2e1ca751 clk_put -EXPORT_SYMBOL vmlinux 0x2e1f8722 pcie_capability_clear_and_set_dword EXPORT_SYMBOL vmlinux 0x2e2b40d2 strncat EXPORT_SYMBOL vmlinux 0x2e2c4ddc logic_inw +EXPORT_SYMBOL vmlinux 0x2e2c4e8b ether_setup +EXPORT_SYMBOL vmlinux 0x2e30cded iproc_msi_exit EXPORT_SYMBOL vmlinux 0x2e3bcce2 wait_for_completion_interruptible +EXPORT_SYMBOL vmlinux 0x2e3e0d7e fb_blank +EXPORT_SYMBOL vmlinux 0x2e3ff005 wait_on_page_bit EXPORT_SYMBOL vmlinux 0x2e439142 drm_get_panel_orientation_quirk -EXPORT_SYMBOL vmlinux 0x2e561295 pm860x_set_bits -EXPORT_SYMBOL vmlinux 0x2e58418a tcf_idr_create_from_flags +EXPORT_SYMBOL vmlinux 0x2e4aba86 wait_on_page_bit_killable EXPORT_SYMBOL vmlinux 0x2e5b27da xudma_alloc_gp_rflow_range EXPORT_SYMBOL vmlinux 0x2e5fe036 __skb_ext_put -EXPORT_SYMBOL vmlinux 0x2e72fe8c __sk_receive_skb -EXPORT_SYMBOL vmlinux 0x2e926717 max8925_set_bits -EXPORT_SYMBOL vmlinux 0x2e98491f acpi_dev_get_next_match_dev -EXPORT_SYMBOL vmlinux 0x2e9a085a napi_schedule_prep +EXPORT_SYMBOL vmlinux 0x2e6dcd0c of_clk_get +EXPORT_SYMBOL vmlinux 0x2e8657a3 param_ops_uint +EXPORT_SYMBOL vmlinux 0x2e99726d cdrom_check_events EXPORT_SYMBOL vmlinux 0x2ea52d3e dma_fence_chain_init -EXPORT_SYMBOL vmlinux 0x2eb599ae bio_integrity_alloc -EXPORT_SYMBOL vmlinux 0x2ebcafcc dquot_get_next_id -EXPORT_SYMBOL vmlinux 0x2ec0429f fman_get_revision +EXPORT_SYMBOL vmlinux 0x2ea7e5bd ps2_begin_command +EXPORT_SYMBOL vmlinux 0x2eac64b1 default_llseek +EXPORT_SYMBOL vmlinux 0x2ebed778 __splice_from_pipe +EXPORT_SYMBOL vmlinux 0x2ec25ede acpi_bus_register_driver EXPORT_SYMBOL vmlinux 0x2ec6bba0 errseq_set -EXPORT_SYMBOL vmlinux 0x2ed5a44c rio_query_mport +EXPORT_SYMBOL vmlinux 0x2ec9b311 devfreq_monitor_resume +EXPORT_SYMBOL vmlinux 0x2ecaa930 genlmsg_put +EXPORT_SYMBOL vmlinux 0x2edd65d6 ww_mutex_unlock EXPORT_SYMBOL vmlinux 0x2ee4c2b1 hdmi_avi_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0x2eff6afd cfb_copyarea +EXPORT_SYMBOL vmlinux 0x2ee6286e genl_unregister_family +EXPORT_SYMBOL vmlinux 0x2efcbb8e flow_rule_match_enc_ipv6_addrs EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc +EXPORT_SYMBOL vmlinux 0x2f09b533 jbd2_journal_forget +EXPORT_SYMBOL vmlinux 0x2f102942 flush_signals +EXPORT_SYMBOL vmlinux 0x2f106af0 ip6_err_gen_icmpv6_unreach EXPORT_SYMBOL vmlinux 0x2f1254d1 ucc_tdm_init -EXPORT_SYMBOL vmlinux 0x2f1547cb security_inode_getsecctx -EXPORT_SYMBOL vmlinux 0x2f260f89 amba_driver_unregister -EXPORT_SYMBOL vmlinux 0x2f2d74e8 timestamp_truncate EXPORT_SYMBOL vmlinux 0x2f2e91b2 security_ib_alloc_security EXPORT_SYMBOL vmlinux 0x2f333aab imx_scu_get_handle -EXPORT_SYMBOL vmlinux 0x2f334e6d backlight_force_update +EXPORT_SYMBOL vmlinux 0x2f36abd4 inode_init_always +EXPORT_SYMBOL vmlinux 0x2f373aac seg6_hmac_info_add EXPORT_SYMBOL vmlinux 0x2f384db3 acpi_is_video_device -EXPORT_SYMBOL vmlinux 0x2f3b3a1a blk_queue_virt_boundary -EXPORT_SYMBOL vmlinux 0x2f3dbc26 acpi_bus_unregister_driver -EXPORT_SYMBOL vmlinux 0x2f43a40a ipv4_specific -EXPORT_SYMBOL vmlinux 0x2f50d6d9 vfs_mknod -EXPORT_SYMBOL vmlinux 0x2f62aa0b tty_hangup -EXPORT_SYMBOL vmlinux 0x2f664e3e sock_no_getname +EXPORT_SYMBOL vmlinux 0x2f409369 user_path_at_empty +EXPORT_SYMBOL vmlinux 0x2f42f26a param_ops_short EXPORT_SYMBOL vmlinux 0x2f7754a8 dma_pool_free -EXPORT_SYMBOL vmlinux 0x2f7f063f tty_insert_flip_string_flags -EXPORT_SYMBOL vmlinux 0x2f845908 pid_task -EXPORT_SYMBOL vmlinux 0x2f858b1b pci_select_bars -EXPORT_SYMBOL vmlinux 0x2fb29cbc generic_write_end +EXPORT_SYMBOL vmlinux 0x2f9bc916 dma_sync_single_for_device +EXPORT_SYMBOL vmlinux 0x2fa7194e d_add_ci +EXPORT_SYMBOL vmlinux 0x2fb03aac of_get_property EXPORT_SYMBOL vmlinux 0x2fb6de5d add_device_randomness -EXPORT_SYMBOL vmlinux 0x2fbfb966 ptp_find_pin -EXPORT_SYMBOL vmlinux 0x2fd4d0a0 tso_start -EXPORT_SYMBOL vmlinux 0x2fdb5784 sock_no_ioctl +EXPORT_SYMBOL vmlinux 0x2fc5c4bd blk_mq_init_allocated_queue +EXPORT_SYMBOL vmlinux 0x2fd3928a tcp_mmap EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier EXPORT_SYMBOL vmlinux 0x2fe5b535 qcom_scm_assign_mem -EXPORT_SYMBOL vmlinux 0x2fea9126 put_devmap_managed_page -EXPORT_SYMBOL vmlinux 0x2ffde10c of_get_cpu_node -EXPORT_SYMBOL vmlinux 0x3015c07e call_netdevice_notifiers -EXPORT_SYMBOL vmlinux 0x301e168e eth_header_parse_protocol -EXPORT_SYMBOL vmlinux 0x3024d6be i2c_del_adapter -EXPORT_SYMBOL vmlinux 0x302e2540 fwnode_irq_get +EXPORT_SYMBOL vmlinux 0x2fe5b8a3 sk_alloc +EXPORT_SYMBOL vmlinux 0x2fe77ab8 pci_read_config_word +EXPORT_SYMBOL vmlinux 0x2ff35b2b blk_queue_update_dma_alignment +EXPORT_SYMBOL vmlinux 0x304a2d2b md_done_sync EXPORT_SYMBOL vmlinux 0x3052fecd ptp_convert_timestamp -EXPORT_SYMBOL vmlinux 0x30563f8d dquot_claim_space_nodirty -EXPORT_SYMBOL vmlinux 0x307c1607 xp_can_alloc -EXPORT_SYMBOL vmlinux 0x30841039 mfd_add_devices +EXPORT_SYMBOL vmlinux 0x305376a1 devm_get_clk_from_child +EXPORT_SYMBOL vmlinux 0x3057c5f9 drop_super +EXPORT_SYMBOL vmlinux 0x3078a30a path_put +EXPORT_SYMBOL vmlinux 0x308f79b6 neigh_lookup_nodev +EXPORT_SYMBOL vmlinux 0x3096acfa qdisc_put_unlocked EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep -EXPORT_SYMBOL vmlinux 0x309c97b7 elv_rb_former_request -EXPORT_SYMBOL vmlinux 0x309f0032 tty_port_open EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user +EXPORT_SYMBOL vmlinux 0x30aa1820 pcix_get_max_mmrbc EXPORT_SYMBOL vmlinux 0x30acfde9 hsiphash_2u32 -EXPORT_SYMBOL vmlinux 0x30af2a53 kmem_cache_destroy -EXPORT_SYMBOL vmlinux 0x30baccab security_inet_conn_request -EXPORT_SYMBOL vmlinux 0x30e13c63 nd_dev_to_uuid +EXPORT_SYMBOL vmlinux 0x30b1040e napi_gro_flush +EXPORT_SYMBOL vmlinux 0x30c14f6c sb_set_blocksize +EXPORT_SYMBOL vmlinux 0x30cc12f8 input_alloc_absinfo +EXPORT_SYMBOL vmlinux 0x30e2d7c4 devm_input_allocate_device EXPORT_SYMBOL vmlinux 0x30e74134 tty_termios_copy_hw -EXPORT_SYMBOL vmlinux 0x30eac1f2 mmc_can_trim -EXPORT_SYMBOL vmlinux 0x30fd15fc proc_set_user -EXPORT_SYMBOL vmlinux 0x30ffb40a __devm_request_region +EXPORT_SYMBOL vmlinux 0x30e76125 devfreq_resume_device EXPORT_SYMBOL vmlinux 0x3100cff9 lockref_get_or_lock EXPORT_SYMBOL vmlinux 0x3102d70b frontswap_curr_pages -EXPORT_SYMBOL vmlinux 0x3125c4bc netdev_upper_dev_unlink +EXPORT_SYMBOL vmlinux 0x3122239a sock_no_bind EXPORT_SYMBOL vmlinux 0x3126a9e8 siphash_1u64 -EXPORT_SYMBOL vmlinux 0x312a5223 pci_alloc_host_bridge -EXPORT_SYMBOL vmlinux 0x312a5f15 tcf_idr_create -EXPORT_SYMBOL vmlinux 0x314ec860 qdisc_class_hash_grow -EXPORT_SYMBOL vmlinux 0x314f807a netdev_notify_peers -EXPORT_SYMBOL vmlinux 0x315cf17f input_set_keycode -EXPORT_SYMBOL vmlinux 0x31711dea zpool_register_driver -EXPORT_SYMBOL vmlinux 0x317af714 kernel_listen -EXPORT_SYMBOL vmlinux 0x318956fd pci_fixup_device +EXPORT_SYMBOL vmlinux 0x3135589c pci_write_vpd +EXPORT_SYMBOL vmlinux 0x313ddc89 blk_rq_unmap_user +EXPORT_SYMBOL vmlinux 0x31613c48 pci_setup_cardbus EXPORT_SYMBOL vmlinux 0x319d493d proc_dostring EXPORT_SYMBOL vmlinux 0x31a4767f qcom_scm_hdcp_available -EXPORT_SYMBOL vmlinux 0x31aa218b wake_up_process -EXPORT_SYMBOL vmlinux 0x31ae7b04 scsi_is_sdev_device -EXPORT_SYMBOL vmlinux 0x31ba5b04 __nd_driver_register -EXPORT_SYMBOL vmlinux 0x31c0d25f tegra_dfll_runtime_resume -EXPORT_SYMBOL vmlinux 0x31f4e3d8 setattr_copy -EXPORT_SYMBOL vmlinux 0x3201081d done_path_create +EXPORT_SYMBOL vmlinux 0x31ae7a65 sunxi_sram_claim +EXPORT_SYMBOL vmlinux 0x31b3171e genphy_aneg_done +EXPORT_SYMBOL vmlinux 0x31b8614c __mark_inode_dirty +EXPORT_SYMBOL vmlinux 0x31d399ed fifo_create_dflt +EXPORT_SYMBOL vmlinux 0x31e3719a __scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x31e4e9ee get_user_pages_locked +EXPORT_SYMBOL vmlinux 0x31e6cf4c simple_release_fs +EXPORT_SYMBOL vmlinux 0x31ef4d80 filemap_map_pages +EXPORT_SYMBOL vmlinux 0x320599df eth_header_cache +EXPORT_SYMBOL vmlinux 0x320ff437 inet_csk_accept EXPORT_SYMBOL vmlinux 0x3213f038 mutex_unlock -EXPORT_SYMBOL vmlinux 0x322de0de __block_write_full_page +EXPORT_SYMBOL vmlinux 0x32192ec4 input_set_keycode +EXPORT_SYMBOL vmlinux 0x32248d57 generic_error_remove_page +EXPORT_SYMBOL vmlinux 0x3236b25e fscrypt_encrypt_block_inplace EXPORT_SYMBOL vmlinux 0x32394d4b qe_issue_cmd -EXPORT_SYMBOL vmlinux 0x32456566 input_handler_for_each_handle -EXPORT_SYMBOL vmlinux 0x326a8dd0 register_shrinker +EXPORT_SYMBOL vmlinux 0x323fc35c of_parse_phandle_with_args +EXPORT_SYMBOL vmlinux 0x32699d4e phy_support_asym_pause +EXPORT_SYMBOL vmlinux 0x32720dde devm_devfreq_register_opp_notifier EXPORT_SYMBOL vmlinux 0x327c84bf vme_lm_attach -EXPORT_SYMBOL vmlinux 0x327cacfd blk_queue_dma_alignment EXPORT_SYMBOL vmlinux 0x3283e6b0 prandom_seed_full_state -EXPORT_SYMBOL vmlinux 0x329c37f1 tcf_em_tree_destroy -EXPORT_SYMBOL vmlinux 0x32a6b757 netdev_has_upper_dev -EXPORT_SYMBOL vmlinux 0x32acc13f jbd2_fc_release_bufs -EXPORT_SYMBOL vmlinux 0x32bddfc5 skb_orphan_partial +EXPORT_SYMBOL vmlinux 0x3289cf3b mmc_can_gpio_cd +EXPORT_SYMBOL vmlinux 0x3298947e flow_rule_match_enc_keyid +EXPORT_SYMBOL vmlinux 0x32a15a34 devm_release_resource +EXPORT_SYMBOL vmlinux 0x32bca1b8 genphy_loopback +EXPORT_SYMBOL vmlinux 0x32c82944 fman_reset_mac EXPORT_SYMBOL vmlinux 0x32ce3777 radix_tree_preload -EXPORT_SYMBOL vmlinux 0x32d4ea5f flow_rule_match_basic -EXPORT_SYMBOL vmlinux 0x32da74e1 d_path -EXPORT_SYMBOL vmlinux 0x32e5991c netpoll_poll_disable +EXPORT_SYMBOL vmlinux 0x32e594e6 ip6_dst_alloc EXPORT_SYMBOL vmlinux 0x32e6f1a0 acpi_video_backlight_string -EXPORT_SYMBOL vmlinux 0x32efe6d4 con_is_bound -EXPORT_SYMBOL vmlinux 0x33006a22 request_key_rcu +EXPORT_SYMBOL vmlinux 0x3302ee52 invalidate_bdev EXPORT_SYMBOL vmlinux 0x33037fd8 logic_outl -EXPORT_SYMBOL vmlinux 0x33042e11 inet_frag_reasm_prepare -EXPORT_SYMBOL vmlinux 0x330e1bb1 devm_mdiobus_alloc_size -EXPORT_SYMBOL vmlinux 0x331756cf mipi_dsi_set_maximum_return_packet_size -EXPORT_SYMBOL vmlinux 0x33281424 devm_extcon_register_notifier -EXPORT_SYMBOL vmlinux 0x3332c3b6 pci_enable_device -EXPORT_SYMBOL vmlinux 0x333570aa vme_bus_num -EXPORT_SYMBOL vmlinux 0x333e1814 __ip_mc_inc_group -EXPORT_SYMBOL vmlinux 0x336b1aa7 devm_of_mdiobus_register -EXPORT_SYMBOL vmlinux 0x336fe28a vga_remove_vgacon +EXPORT_SYMBOL vmlinux 0x3303e99f simple_unlink +EXPORT_SYMBOL vmlinux 0x333257f5 km_state_expired +EXPORT_SYMBOL vmlinux 0x33353723 security_locked_down +EXPORT_SYMBOL vmlinux 0x334ba45d tcp_recvmsg +EXPORT_SYMBOL vmlinux 0x3351cb17 ihold +EXPORT_SYMBOL vmlinux 0x3360a356 mdio_driver_register EXPORT_SYMBOL vmlinux 0x33736a1d __genradix_ptr_alloc -EXPORT_SYMBOL vmlinux 0x33856302 lock_two_nondirectories -EXPORT_SYMBOL vmlinux 0x3391d8b0 nexthop_set_hw_flags -EXPORT_SYMBOL vmlinux 0x33953580 skb_trim -EXPORT_SYMBOL vmlinux 0x33995303 pnp_start_dev -EXPORT_SYMBOL vmlinux 0x33b4641a dev_set_mac_address -EXPORT_SYMBOL vmlinux 0x33c23dc8 __dquot_alloc_space -EXPORT_SYMBOL vmlinux 0x33c6f2a6 fddi_type_trans +EXPORT_SYMBOL vmlinux 0x337e1b90 register_netdevice +EXPORT_SYMBOL vmlinux 0x338061ef neigh_seq_start +EXPORT_SYMBOL vmlinux 0x3387f458 devfreq_add_device +EXPORT_SYMBOL vmlinux 0x33b0e6db vfs_llseek +EXPORT_SYMBOL vmlinux 0x33d8944e get_user_pages_unlocked EXPORT_SYMBOL vmlinux 0x33f0768c cpufreq_quick_get_max -EXPORT_SYMBOL vmlinux 0x33f4cd69 xp_raw_get_data -EXPORT_SYMBOL vmlinux 0x33f4fb53 ethtool_get_phc_vclocks EXPORT_SYMBOL vmlinux 0x33fc2a31 get_user_ifreq EXPORT_SYMBOL vmlinux 0x33fcf44a __kfifo_out_r -EXPORT_SYMBOL vmlinux 0x34015a10 register_qdisc -EXPORT_SYMBOL vmlinux 0x3403af5e flow_rule_match_meta -EXPORT_SYMBOL vmlinux 0x341b25e5 security_inode_invalidate_secctx +EXPORT_SYMBOL vmlinux 0x341b5145 __bforget EXPORT_SYMBOL vmlinux 0x3424daf8 __traceiter_dma_fence_enable_signal -EXPORT_SYMBOL vmlinux 0x34412a7a pci_get_domain_bus_and_slot -EXPORT_SYMBOL vmlinux 0x344a61de mmc_of_parse_clk_phase -EXPORT_SYMBOL vmlinux 0x344d4577 lookup_positive_unlocked -EXPORT_SYMBOL vmlinux 0x344f4330 page_zero_new_buffers -EXPORT_SYMBOL vmlinux 0x3476b2b3 vme_irq_request -EXPORT_SYMBOL vmlinux 0x3478015e sb_min_blocksize +EXPORT_SYMBOL vmlinux 0x34361774 __cleancache_invalidate_page +EXPORT_SYMBOL vmlinux 0x34601622 dmam_free_coherent EXPORT_SYMBOL vmlinux 0x349cba85 strchr EXPORT_SYMBOL vmlinux 0x34a1f7e3 acpi_processor_get_psd -EXPORT_SYMBOL vmlinux 0x34a70e86 __mmap_lock_do_trace_acquire_returned -EXPORT_SYMBOL vmlinux 0x34b431fc of_get_property +EXPORT_SYMBOL vmlinux 0x34adcbee ps2_cmd_aborted EXPORT_SYMBOL vmlinux 0x34c7cdbc lookup_bdev -EXPORT_SYMBOL vmlinux 0x34d52359 security_tun_dev_attach -EXPORT_SYMBOL vmlinux 0x34ded104 ndo_dflt_fdb_dump -EXPORT_SYMBOL vmlinux 0x34eb7770 input_register_handler +EXPORT_SYMBOL vmlinux 0x34ec53eb register_cdrom +EXPORT_SYMBOL vmlinux 0x34ef1c7c kthread_create_on_node EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue -EXPORT_SYMBOL vmlinux 0x34f9f703 dev_alloc_name -EXPORT_SYMBOL vmlinux 0x35066830 rproc_of_parse_firmware +EXPORT_SYMBOL vmlinux 0x350bed1f security_path_rename EXPORT_SYMBOL vmlinux 0x350ea558 dma_fence_default_wait -EXPORT_SYMBOL vmlinux 0x351523da rproc_put EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier -EXPORT_SYMBOL vmlinux 0x3522c4cb inode_init_always -EXPORT_SYMBOL vmlinux 0x35356f6a end_buffer_async_write +EXPORT_SYMBOL vmlinux 0x35221fa5 skb_copy_and_hash_datagram_iter +EXPORT_SYMBOL vmlinux 0x352f18bc bdev_dax_pgoff EXPORT_SYMBOL vmlinux 0x3539f11b match_strlcpy -EXPORT_SYMBOL vmlinux 0x354a77f3 eth_header_cache -EXPORT_SYMBOL vmlinux 0x35558f0e wireless_send_event +EXPORT_SYMBOL vmlinux 0x35452ffc inet_sk_rebuild_header +EXPORT_SYMBOL vmlinux 0x35550a3f key_put EXPORT_SYMBOL vmlinux 0x356461c8 rtc_time64_to_tm -EXPORT_SYMBOL vmlinux 0x3567b08b inet_addr_type -EXPORT_SYMBOL vmlinux 0x357aec69 scsi_eh_restore_cmnd -EXPORT_SYMBOL vmlinux 0x35864108 bdi_set_max_ratio -EXPORT_SYMBOL vmlinux 0x359c04e8 param_ops_long +EXPORT_SYMBOL vmlinux 0x356cb2cd sock_wake_async +EXPORT_SYMBOL vmlinux 0x3599bb71 of_phy_find_device EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 -EXPORT_SYMBOL vmlinux 0x35b299ae xfrm_unregister_type_offload -EXPORT_SYMBOL vmlinux 0x35b41fa8 tty_write_room -EXPORT_SYMBOL vmlinux 0x3604313b pci_pme_active +EXPORT_SYMBOL vmlinux 0x35b6490c nf_setsockopt +EXPORT_SYMBOL vmlinux 0x35bfeafb md_write_end +EXPORT_SYMBOL vmlinux 0x35c988a7 get_thermal_instance +EXPORT_SYMBOL vmlinux 0x35caab0c dcache_dir_lseek +EXPORT_SYMBOL vmlinux 0x35f8c722 fs_param_is_blockdev +EXPORT_SYMBOL vmlinux 0x360831a7 gro_find_complete_by_type EXPORT_SYMBOL vmlinux 0x360b1afe probe_irq_mask -EXPORT_SYMBOL vmlinux 0x36216aa2 free_cgroup_ns +EXPORT_SYMBOL vmlinux 0x36217b34 scm_detach_fds +EXPORT_SYMBOL vmlinux 0x3631d5a9 try_lookup_one_len EXPORT_SYMBOL vmlinux 0x364850b1 down_write_killable EXPORT_SYMBOL vmlinux 0x364c23ad mutex_is_locked EXPORT_SYMBOL vmlinux 0x365acda7 set_normalized_timespec64 EXPORT_SYMBOL vmlinux 0x365e7911 kstrdup_const -EXPORT_SYMBOL vmlinux 0x365fa422 mmc_request_done -EXPORT_SYMBOL vmlinux 0x366de6ff blk_rq_init -EXPORT_SYMBOL vmlinux 0x367000ee inode_init_once -EXPORT_SYMBOL vmlinux 0x3672ef2f pnp_get_resource -EXPORT_SYMBOL vmlinux 0x3679ac0e dev_open -EXPORT_SYMBOL vmlinux 0x368f742c dst_discard_out -EXPORT_SYMBOL vmlinux 0x369a02a9 vme_master_mmap -EXPORT_SYMBOL vmlinux 0x36b2c6dc inet_twsk_deschedule_put -EXPORT_SYMBOL vmlinux 0x36b5940b scsi_report_opcode -EXPORT_SYMBOL vmlinux 0x36b6e478 __bforget +EXPORT_SYMBOL vmlinux 0x365f005f scsi_device_put +EXPORT_SYMBOL vmlinux 0x365f60b6 close_fd_get_file +EXPORT_SYMBOL vmlinux 0x36714d16 simple_nosetlease +EXPORT_SYMBOL vmlinux 0x367506f8 fs_context_for_submount +EXPORT_SYMBOL vmlinux 0x36b2c0aa of_platform_bus_probe EXPORT_SYMBOL vmlinux 0x36b6ebbf down_killable -EXPORT_SYMBOL vmlinux 0x36ba4c8f phy_ethtool_get_eee -EXPORT_SYMBOL vmlinux 0x36c58b5d vmf_insert_pfn -EXPORT_SYMBOL vmlinux 0x36cbdca4 generic_file_readonly_mmap -EXPORT_SYMBOL vmlinux 0x36ee362e dm_get_device +EXPORT_SYMBOL vmlinux 0x36cc5019 ip_cmsg_recv_offset +EXPORT_SYMBOL vmlinux 0x36d815f9 dev_change_proto_down +EXPORT_SYMBOL vmlinux 0x36eb76bc dev_deactivate +EXPORT_SYMBOL vmlinux 0x36f4b3b9 pin_user_pages_remote +EXPORT_SYMBOL vmlinux 0x370956e4 input_register_handler EXPORT_SYMBOL vmlinux 0x37110088 remove_wait_queue +EXPORT_SYMBOL vmlinux 0x37332fba vmf_insert_mixed_prot EXPORT_SYMBOL vmlinux 0x3737d9a9 ZSTD_DStreamWorkspaceBound +EXPORT_SYMBOL vmlinux 0x37386358 vme_master_request +EXPORT_SYMBOL vmlinux 0x373c04fb insert_inode_locked4 +EXPORT_SYMBOL vmlinux 0x373dfd61 ppp_unregister_compressor EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn EXPORT_SYMBOL vmlinux 0x3755f990 gf128mul_init_64k_bbe -EXPORT_SYMBOL vmlinux 0x375f7981 md_integrity_add_rdev +EXPORT_SYMBOL vmlinux 0x3759c828 __netlink_dump_start +EXPORT_SYMBOL vmlinux 0x3760ace5 alloc_fddidev EXPORT_SYMBOL vmlinux 0x37746fde ZSTD_initDStream -EXPORT_SYMBOL vmlinux 0x377c48f3 kernel_sendpage_locked EXPORT_SYMBOL vmlinux 0x377d8004 acpi_error -EXPORT_SYMBOL vmlinux 0x37812c0c unregister_quota_format -EXPORT_SYMBOL vmlinux 0x37901b4f cdrom_open -EXPORT_SYMBOL vmlinux 0x37912345 pci_msi_vec_count -EXPORT_SYMBOL vmlinux 0x3799e4c5 current_time -EXPORT_SYMBOL vmlinux 0x379a3b28 devm_of_find_backlight -EXPORT_SYMBOL vmlinux 0x37af899f filemap_fdatawrite_wbc -EXPORT_SYMBOL vmlinux 0x37b32b1f nd_region_to_nstype +EXPORT_SYMBOL vmlinux 0x3796fc04 pcix_set_mmrbc +EXPORT_SYMBOL vmlinux 0x37a921a6 is_nd_dax +EXPORT_SYMBOL vmlinux 0x37b255ae input_mt_get_slot_by_key EXPORT_SYMBOL vmlinux 0x37b8b39e screen_info EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs -EXPORT_SYMBOL vmlinux 0x37c06c0b of_get_i2c_adapter_by_node +EXPORT_SYMBOL vmlinux 0x37d0f1bf mmc_gpio_get_cd EXPORT_SYMBOL vmlinux 0x37db8f19 dmi_get_date +EXPORT_SYMBOL vmlinux 0x37e186ea of_find_node_opts_by_path +EXPORT_SYMBOL vmlinux 0x37e37ea2 pci_get_slot EXPORT_SYMBOL vmlinux 0x37e3ec9b vm_event_states +EXPORT_SYMBOL vmlinux 0x37ec1a4e pnp_possible_config +EXPORT_SYMBOL vmlinux 0x37ff4e84 seq_putc +EXPORT_SYMBOL vmlinux 0x3812b41f truncate_inode_pages_final EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus +EXPORT_SYMBOL vmlinux 0x38235a13 xfrm_trans_queue +EXPORT_SYMBOL vmlinux 0x3839a7e3 tcf_exts_change EXPORT_SYMBOL vmlinux 0x3854774b kstrtoll -EXPORT_SYMBOL vmlinux 0x385c51e3 rpmh_write_batch -EXPORT_SYMBOL vmlinux 0x38608e96 cros_ec_cmd_xfer_status -EXPORT_SYMBOL vmlinux 0x3880de4d mipi_dsi_dcs_write +EXPORT_SYMBOL vmlinux 0x3854ecd5 dquot_alloc +EXPORT_SYMBOL vmlinux 0x3864aa30 rt_dst_clone +EXPORT_SYMBOL vmlinux 0x386ebdb4 generic_writepages +EXPORT_SYMBOL vmlinux 0x3872a9d2 mr_table_alloc EXPORT_SYMBOL vmlinux 0x38869d88 kstat EXPORT_SYMBOL vmlinux 0x388aa3c9 neigh_proc_dointvec_ms_jiffies -EXPORT_SYMBOL vmlinux 0x388bed62 sock_bindtoindex +EXPORT_SYMBOL vmlinux 0x388b272a __filemap_set_wb_err +EXPORT_SYMBOL vmlinux 0x388ebdff uart_get_divisor EXPORT_SYMBOL vmlinux 0x3891ffc8 ecryptfs_fill_auth_tok EXPORT_SYMBOL vmlinux 0x389617b0 LZ4_decompress_fast_continue -EXPORT_SYMBOL vmlinux 0x389633d6 sock_alloc_send_skb -EXPORT_SYMBOL vmlinux 0x38964b5b tcp_v4_mtu_reduced -EXPORT_SYMBOL vmlinux 0x38a0b8af tegra_ivc_read_get_next_frame +EXPORT_SYMBOL vmlinux 0x38a3b35f jbd2_journal_destroy EXPORT_SYMBOL vmlinux 0x38a71b7e pci_free_resource_list EXPORT_SYMBOL vmlinux 0x38a9f7c5 in6addr_loopback -EXPORT_SYMBOL vmlinux 0x38b251da vfs_rmdir -EXPORT_SYMBOL vmlinux 0x38b3ec18 iw_handler_set_thrspy -EXPORT_SYMBOL vmlinux 0x38d07ea0 security_binder_transfer_file -EXPORT_SYMBOL vmlinux 0x38dfdeaf __mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x38b72438 import_single_range EXPORT_SYMBOL vmlinux 0x38e46431 mempool_exit -EXPORT_SYMBOL vmlinux 0x38f09650 vga_get EXPORT_SYMBOL vmlinux 0x38f48af7 put_user_ifreq -EXPORT_SYMBOL vmlinux 0x390bfd16 acpi_match_device_ids +EXPORT_SYMBOL vmlinux 0x391b074a tegra_dfll_suspend +EXPORT_SYMBOL vmlinux 0x391c4dfc mdiobus_get_phy +EXPORT_SYMBOL vmlinux 0x3928dd30 qdisc_hash_add EXPORT_SYMBOL vmlinux 0x3928efe9 __per_cpu_offset EXPORT_SYMBOL vmlinux 0x392b1fea wait_for_completion_io +EXPORT_SYMBOL vmlinux 0x392ec705 xfrm_state_unregister_afinfo EXPORT_SYMBOL vmlinux 0x3939f8f0 rfkill_pause_polling -EXPORT_SYMBOL vmlinux 0x393ae385 genphy_resume +EXPORT_SYMBOL vmlinux 0x393b58f3 tcf_idr_check_alloc EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p -EXPORT_SYMBOL vmlinux 0x3946b17a of_node_name_eq -EXPORT_SYMBOL vmlinux 0x39480668 devm_devfreq_register_opp_notifier EXPORT_SYMBOL vmlinux 0x394a1e11 phy_sfp_attach EXPORT_SYMBOL vmlinux 0x3955fcf6 __kfifo_in_r -EXPORT_SYMBOL vmlinux 0x398ea739 is_acpi_device_node -EXPORT_SYMBOL vmlinux 0x398f0ed9 tcp_conn_request +EXPORT_SYMBOL vmlinux 0x396039f6 param_set_ullong +EXPORT_SYMBOL vmlinux 0x396c222a csum_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0x3973ab5c dev_mc_flush +EXPORT_SYMBOL vmlinux 0x398fc450 filemap_fdatawrite_range +EXPORT_SYMBOL vmlinux 0x39930e67 wait_on_page_private_2 EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow EXPORT_SYMBOL vmlinux 0x399ad043 __kfifo_dma_out_finish_r -EXPORT_SYMBOL vmlinux 0x39a38841 tcp_rcv_state_process -EXPORT_SYMBOL vmlinux 0x39a7131b gnet_stats_copy_basic_hw -EXPORT_SYMBOL vmlinux 0x39a8bd27 proc_create_seq_private EXPORT_SYMBOL vmlinux 0x39b52d19 __bitmap_and EXPORT_SYMBOL vmlinux 0x39b8d49c cpu_rmap_update -EXPORT_SYMBOL vmlinux 0x39bcf83d pcie_capability_read_word -EXPORT_SYMBOL vmlinux 0x39bdcd21 dma_sync_sg_for_cpu +EXPORT_SYMBOL vmlinux 0x39b953eb ipv6_dev_mc_inc EXPORT_SYMBOL vmlinux 0x39be4b8e qman_volatile_dequeue -EXPORT_SYMBOL vmlinux 0x39e1c73a path_is_under -EXPORT_SYMBOL vmlinux 0x39f43be6 finish_open -EXPORT_SYMBOL vmlinux 0x3a0154ac ipv6_push_frag_opts -EXPORT_SYMBOL vmlinux 0x3a129b05 serio_open +EXPORT_SYMBOL vmlinux 0x39c007f0 neigh_table_clear +EXPORT_SYMBOL vmlinux 0x39d85fbd __skb_warn_lro_forwarding +EXPORT_SYMBOL vmlinux 0x39d8ae03 send_sig_mceerr +EXPORT_SYMBOL vmlinux 0x3a04a4cf neigh_seq_stop +EXPORT_SYMBOL vmlinux 0x3a09c249 do_clone_file_range EXPORT_SYMBOL vmlinux 0x3a13f54a sgl_alloc -EXPORT_SYMBOL vmlinux 0x3a2c856c param_set_copystring +EXPORT_SYMBOL vmlinux 0x3a245112 generic_listxattr EXPORT_SYMBOL vmlinux 0x3a2f6702 sg_alloc_table -EXPORT_SYMBOL vmlinux 0x3a309950 page_mapping -EXPORT_SYMBOL vmlinux 0x3a330609 phy_get_internal_delay EXPORT_SYMBOL vmlinux 0x3a4f9d28 rng_is_initialized -EXPORT_SYMBOL vmlinux 0x3a4fff63 unlock_rename -EXPORT_SYMBOL vmlinux 0x3a5d4454 unix_detach_fds -EXPORT_SYMBOL vmlinux 0x3a5dffc5 netdev_printk -EXPORT_SYMBOL vmlinux 0x3a5e3318 acpi_pm_device_sleep_state -EXPORT_SYMBOL vmlinux 0x3a7aebee vme_slave_request -EXPORT_SYMBOL vmlinux 0x3a8e282f of_count_phandle_with_args -EXPORT_SYMBOL vmlinux 0x3a9b0b4a ata_dev_printk -EXPORT_SYMBOL vmlinux 0x3aa93cf2 seq_lseek -EXPORT_SYMBOL vmlinux 0x3aad24fe sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0x3a5c8573 is_acpi_data_node +EXPORT_SYMBOL vmlinux 0x3a5e3468 unregister_netdev +EXPORT_SYMBOL vmlinux 0x3a60e775 pci_release_resource +EXPORT_SYMBOL vmlinux 0x3a6f353a genphy_resume +EXPORT_SYMBOL vmlinux 0x3a7493f5 __blk_rq_map_sg EXPORT_SYMBOL vmlinux 0x3ab7b1cc scsi_set_sense_field_pointer -EXPORT_SYMBOL vmlinux 0x3ac0538d acpi_dev_get_first_match_dev -EXPORT_SYMBOL vmlinux 0x3ac05ad6 mdio_device_free +EXPORT_SYMBOL vmlinux 0x3ac6f1a6 __ip_queue_xmit EXPORT_SYMBOL vmlinux 0x3ad5cda3 lockref_get_not_zero EXPORT_SYMBOL vmlinux 0x3ad7a5d5 acpi_evaluate_reference +EXPORT_SYMBOL vmlinux 0x3ad8d024 nobh_truncate_page EXPORT_SYMBOL vmlinux 0x3ada9e06 acpi_check_region -EXPORT_SYMBOL vmlinux 0x3ae644b6 security_dentry_init_security -EXPORT_SYMBOL vmlinux 0x3aea7514 fscrypt_zeroout_range -EXPORT_SYMBOL vmlinux 0x3aeaacc2 inode_add_bytes -EXPORT_SYMBOL vmlinux 0x3af0bbbe devm_devfreq_remove_device -EXPORT_SYMBOL vmlinux 0x3afca481 mark_buffer_write_io_error +EXPORT_SYMBOL vmlinux 0x3af1be37 skb_udp_tunnel_segment +EXPORT_SYMBOL vmlinux 0x3af443af ip_mc_leave_group EXPORT_SYMBOL vmlinux 0x3aff3200 acpi_evaluate_object_typed -EXPORT_SYMBOL vmlinux 0x3b0aec1b reuseport_migrate_sock -EXPORT_SYMBOL vmlinux 0x3b0bfb4a tcp_v4_send_check EXPORT_SYMBOL vmlinux 0x3b0f23d2 xudma_is_pktdma EXPORT_SYMBOL vmlinux 0x3b20fb95 dma_fence_remove_callback -EXPORT_SYMBOL vmlinux 0x3b2113dd register_framebuffer -EXPORT_SYMBOL vmlinux 0x3b220075 bio_endio -EXPORT_SYMBOL vmlinux 0x3b2e8d8e skb_flow_get_icmp_tci +EXPORT_SYMBOL vmlinux 0x3b259372 deactivate_locked_super EXPORT_SYMBOL vmlinux 0x3b321462 LZ4_setStreamDecode -EXPORT_SYMBOL vmlinux 0x3b491764 nf_log_unset -EXPORT_SYMBOL vmlinux 0x3b5b23e5 blk_cleanup_queue +EXPORT_SYMBOL vmlinux 0x3b4a0061 node_data +EXPORT_SYMBOL vmlinux 0x3b52beaa phy_resume EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left -EXPORT_SYMBOL vmlinux 0x3b686719 config_item_get_unless_zero EXPORT_SYMBOL vmlinux 0x3b6c41ea kstrtouint +EXPORT_SYMBOL vmlinux 0x3b7f9bf7 genphy_c37_read_status EXPORT_SYMBOL vmlinux 0x3b9144c9 acpi_get_current_resources -EXPORT_SYMBOL vmlinux 0x3baa01e7 sock_no_sendpage_locked -EXPORT_SYMBOL vmlinux 0x3bab431c fman_get_qman_channel_id -EXPORT_SYMBOL vmlinux 0x3bc1a5ab phy_get_c45_ids -EXPORT_SYMBOL vmlinux 0x3bca2db8 dget_parent -EXPORT_SYMBOL vmlinux 0x3bdbaa69 pci_msix_vec_count -EXPORT_SYMBOL vmlinux 0x3be6ab96 jbd2_journal_extend +EXPORT_SYMBOL vmlinux 0x3bbc7165 flow_block_cb_alloc +EXPORT_SYMBOL vmlinux 0x3bbe5ea8 netdev_name_node_alt_create +EXPORT_SYMBOL vmlinux 0x3bbf248b kmem_cache_alloc_node_trace +EXPORT_SYMBOL vmlinux 0x3bd6a561 mii_ethtool_sset +EXPORT_SYMBOL vmlinux 0x3bd9f19a alloc_skb_with_frags +EXPORT_SYMBOL vmlinux 0x3be5df2e twl6040_power EXPORT_SYMBOL vmlinux 0x3be7643e security_xfrm_policy_free -EXPORT_SYMBOL vmlinux 0x3c16a8e6 d_make_root +EXPORT_SYMBOL vmlinux 0x3be9cc4d d_obtain_alias +EXPORT_SYMBOL vmlinux 0x3bef9e4b setup_new_exec +EXPORT_SYMBOL vmlinux 0x3c11fd09 pci_bus_read_config_byte EXPORT_SYMBOL vmlinux 0x3c185c61 page_put_link -EXPORT_SYMBOL vmlinux 0x3c195c96 rpmh_write_async -EXPORT_SYMBOL vmlinux 0x3c1ce14e xfrm4_protocol_deregister -EXPORT_SYMBOL vmlinux 0x3c255b33 mr_vif_seq_next +EXPORT_SYMBOL vmlinux 0x3c29913f __skb_checksum_complete +EXPORT_SYMBOL vmlinux 0x3c2f4e50 mmc_wait_for_req EXPORT_SYMBOL vmlinux 0x3c3215c4 qe_immr +EXPORT_SYMBOL vmlinux 0x3c339fe5 jbd2_journal_grab_journal_head EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip EXPORT_SYMBOL vmlinux 0x3c3ff9fd sprintf -EXPORT_SYMBOL vmlinux 0x3c530126 pci_clear_mwi -EXPORT_SYMBOL vmlinux 0x3c58d2ad md_reap_sync_thread -EXPORT_SYMBOL vmlinux 0x3c5ca579 ip6_frag_init -EXPORT_SYMBOL vmlinux 0x3c5f2e1b xp_dma_sync_for_device_slow -EXPORT_SYMBOL vmlinux 0x3c67558e __skb_flow_get_ports -EXPORT_SYMBOL vmlinux 0x3c6f8017 __filemap_set_wb_err -EXPORT_SYMBOL vmlinux 0x3ca3db7e submit_bh -EXPORT_SYMBOL vmlinux 0x3cad64a6 ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0x3c4d7a80 pci_choose_state +EXPORT_SYMBOL vmlinux 0x3c65fce1 xfrm_stateonly_find +EXPORT_SYMBOL vmlinux 0x3c7cd3f4 jbd2__journal_restart +EXPORT_SYMBOL vmlinux 0x3c88a5d3 pci_enable_msix_range +EXPORT_SYMBOL vmlinux 0x3c916fea __hw_addr_sync_dev +EXPORT_SYMBOL vmlinux 0x3ca50d8a phy_device_free +EXPORT_SYMBOL vmlinux 0x3cab7789 tcp_v4_md5_hash_skb +EXPORT_SYMBOL vmlinux 0x3caba9b6 seg6_hmac_validate_skb +EXPORT_SYMBOL vmlinux 0x3cadb0ae fs_param_is_enum +EXPORT_SYMBOL vmlinux 0x3cd78754 dev_uc_init EXPORT_SYMBOL vmlinux 0x3cd9ed83 logic_insw EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq +EXPORT_SYMBOL vmlinux 0x3cedf7b2 sg_alloc_append_table_from_pages +EXPORT_SYMBOL vmlinux 0x3cf23d69 pci_dev_get +EXPORT_SYMBOL vmlinux 0x3cf84ff7 tcp_setsockopt EXPORT_SYMBOL vmlinux 0x3d02cd70 dma_fence_signal_locked -EXPORT_SYMBOL vmlinux 0x3d03468c init_special_inode -EXPORT_SYMBOL vmlinux 0x3d16a3f4 end_buffer_read_sync +EXPORT_SYMBOL vmlinux 0x3d031d07 pfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0x3d1968ca input_open_device +EXPORT_SYMBOL vmlinux 0x3d198dbe mii_check_link +EXPORT_SYMBOL vmlinux 0x3d1fa53a input_set_timestamp EXPORT_SYMBOL vmlinux 0x3d210724 gen_pool_dma_zalloc_align -EXPORT_SYMBOL vmlinux 0x3d24cd6f ipv6_chk_addr_and_flags -EXPORT_SYMBOL vmlinux 0x3d541594 device_get_mac_address +EXPORT_SYMBOL vmlinux 0x3d38bacc __skb_wait_for_more_packets +EXPORT_SYMBOL vmlinux 0x3d50e107 bio_put +EXPORT_SYMBOL vmlinux 0x3d568cf5 __alloc_pages EXPORT_SYMBOL vmlinux 0x3d56e7b3 utf8_unload -EXPORT_SYMBOL vmlinux 0x3d5830d0 do_SAK -EXPORT_SYMBOL vmlinux 0x3d6933d4 km_state_notify -EXPORT_SYMBOL vmlinux 0x3d71aba9 __netlink_ns_capable -EXPORT_SYMBOL vmlinux 0x3d737fef pnp_is_active -EXPORT_SYMBOL vmlinux 0x3d8c17d7 discard_new_inode +EXPORT_SYMBOL vmlinux 0x3d58b8f2 pci_bus_read_config_word +EXPORT_SYMBOL vmlinux 0x3d678f02 __ip_dev_find +EXPORT_SYMBOL vmlinux 0x3d6bd358 blk_mq_start_hw_queues +EXPORT_SYMBOL vmlinux 0x3d9014fa bio_endio EXPORT_SYMBOL vmlinux 0x3d93c7c2 __arm_smccc_sve_check EXPORT_SYMBOL vmlinux 0x3d9ee9f0 clear_page -EXPORT_SYMBOL vmlinux 0x3da07082 crypto_sha1_update -EXPORT_SYMBOL vmlinux 0x3da7e548 from_kgid -EXPORT_SYMBOL vmlinux 0x3da80504 fs_param_is_s32 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 0x3db1f838 unlock_page -EXPORT_SYMBOL vmlinux 0x3dbdb6a5 __scsi_device_lookup_by_target EXPORT_SYMBOL vmlinux 0x3dc619d3 swake_up_locked +EXPORT_SYMBOL vmlinux 0x3dc7963c imx_scu_enable_general_irq_channel EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data -EXPORT_SYMBOL vmlinux 0x3dce68d7 vme_dma_request EXPORT_SYMBOL vmlinux 0x3dd3f054 xudma_rchan_get_id -EXPORT_SYMBOL vmlinux 0x3dd411f9 xsk_clear_rx_need_wakeup EXPORT_SYMBOL vmlinux 0x3dd9b230 proc_dointvec_userhz_jiffies -EXPORT_SYMBOL vmlinux 0x3ddffd6d __scm_send -EXPORT_SYMBOL vmlinux 0x3defe9b3 path_put EXPORT_SYMBOL vmlinux 0x3dfb86b9 resource_list_create_entry -EXPORT_SYMBOL vmlinux 0x3dfc5f67 md_finish_reshape EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head -EXPORT_SYMBOL vmlinux 0x3e2c4d66 netdev_lower_get_next_private +EXPORT_SYMBOL vmlinux 0x3dfe756d par_io_of_config +EXPORT_SYMBOL vmlinux 0x3e10b736 pci_free_irq_vectors +EXPORT_SYMBOL vmlinux 0x3e294670 cros_ec_get_host_event +EXPORT_SYMBOL vmlinux 0x3e2cbabe filemap_write_and_wait_range EXPORT_SYMBOL vmlinux 0x3e3bad0a __tasklet_hi_schedule -EXPORT_SYMBOL vmlinux 0x3e45e4c2 __pskb_copy_fclone -EXPORT_SYMBOL vmlinux 0x3e49ea61 pskb_trim_rcsum_slow -EXPORT_SYMBOL vmlinux 0x3e549e6f input_enable_softrepeat +EXPORT_SYMBOL vmlinux 0x3e5454d7 console_start +EXPORT_SYMBOL vmlinux 0x3e627ace __sk_dst_check +EXPORT_SYMBOL vmlinux 0x3e6e8f7b writeback_inodes_sb EXPORT_SYMBOL vmlinux 0x3e79fb00 arm_smccc_1_2_smc -EXPORT_SYMBOL vmlinux 0x3e7d9d62 inet_ioctl -EXPORT_SYMBOL vmlinux 0x3e824220 touchscreen_report_pos -EXPORT_SYMBOL vmlinux 0x3e8f771d security_path_mkdir -EXPORT_SYMBOL vmlinux 0x3ebac792 register_netdevice_notifier_net -EXPORT_SYMBOL vmlinux 0x3ee5ffd7 rproc_alloc +EXPORT_SYMBOL vmlinux 0x3e7aa336 __tcp_md5_do_lookup +EXPORT_SYMBOL vmlinux 0x3e8fba23 bdi_alloc +EXPORT_SYMBOL vmlinux 0x3e8fde8b pci_rebar_get_possible_sizes +EXPORT_SYMBOL vmlinux 0x3e956716 tegra_dfll_runtime_resume +EXPORT_SYMBOL vmlinux 0x3e9b1c3c fs_param_is_bool +EXPORT_SYMBOL vmlinux 0x3ebc3e64 _dev_alert EXPORT_SYMBOL vmlinux 0x3eeb2322 __wake_up -EXPORT_SYMBOL vmlinux 0x3efbc09a tcp_shutdown +EXPORT_SYMBOL vmlinux 0x3ef5f828 mpage_writepages EXPORT_SYMBOL vmlinux 0x3efe1703 phy_unregister_fixup_for_id -EXPORT_SYMBOL vmlinux 0x3f018676 __dev_kfree_skb_irq +EXPORT_SYMBOL vmlinux 0x3f01d891 nexthop_set_hw_flags +EXPORT_SYMBOL vmlinux 0x3f0cf16f kmem_cache_create_usercopy EXPORT_SYMBOL vmlinux 0x3f0eabd2 xxh64_update -EXPORT_SYMBOL vmlinux 0x3f1a5cf6 padata_do_serial -EXPORT_SYMBOL vmlinux 0x3f1f4ef4 kthread_associate_blkcg -EXPORT_SYMBOL vmlinux 0x3f37216d register_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x3f26980f ipv6_mc_check_mld +EXPORT_SYMBOL vmlinux 0x3f2c5fbc security_socket_getpeersec_dgram +EXPORT_SYMBOL vmlinux 0x3f2f8298 clk_add_alias EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd -EXPORT_SYMBOL vmlinux 0x3f47e808 tcp_time_wait EXPORT_SYMBOL vmlinux 0x3f4bd846 gen_pool_first_fit_order_align EXPORT_SYMBOL vmlinux 0x3f545cad cpumask_any_and_distribute -EXPORT_SYMBOL vmlinux 0x3f5f7e1a ___pskb_trim -EXPORT_SYMBOL vmlinux 0x3f62a50c __quota_error -EXPORT_SYMBOL vmlinux 0x3f7b5428 crypto_sha256_update +EXPORT_SYMBOL vmlinux 0x3f68decf of_parse_phandle_with_fixed_args +EXPORT_SYMBOL vmlinux 0x3f84b567 skb_vlan_push +EXPORT_SYMBOL vmlinux 0x3f857a4f vlan_vids_del_by_dev +EXPORT_SYMBOL vmlinux 0x3f870a52 _dev_notice EXPORT_SYMBOL vmlinux 0x3f89071b security_ib_pkey_access -EXPORT_SYMBOL vmlinux 0x3fa6c2a4 jbd2_journal_check_used_features -EXPORT_SYMBOL vmlinux 0x3fb5917e scsi_device_lookup -EXPORT_SYMBOL vmlinux 0x3fb7a56d inet_frag_find -EXPORT_SYMBOL vmlinux 0x3fba68e5 md_check_no_bitmap EXPORT_SYMBOL vmlinux 0x3fbf3c89 vme_slave_set EXPORT_SYMBOL vmlinux 0x3fd78f3b register_chrdev_region -EXPORT_SYMBOL vmlinux 0x3fdb399f mii_ethtool_sset -EXPORT_SYMBOL vmlinux 0x3fdd61e4 t10_pi_type1_crc -EXPORT_SYMBOL vmlinux 0x3fdf4847 dquot_release EXPORT_SYMBOL vmlinux 0x3fe2ccbe memweight -EXPORT_SYMBOL vmlinux 0x3ff0a7fd end_buffer_write_sync -EXPORT_SYMBOL vmlinux 0x40076c07 tty_unregister_driver -EXPORT_SYMBOL vmlinux 0x400efacd try_module_get -EXPORT_SYMBOL vmlinux 0x402ffab0 dm_io -EXPORT_SYMBOL vmlinux 0x40329a4a follow_up -EXPORT_SYMBOL vmlinux 0x408eb3bc d_prune_aliases -EXPORT_SYMBOL vmlinux 0x408f9e0c ptp_clock_unregister +EXPORT_SYMBOL vmlinux 0x3ff70aa7 is_nd_pfn +EXPORT_SYMBOL vmlinux 0x3ff80ad4 mipi_dsi_dcs_write_buffer +EXPORT_SYMBOL vmlinux 0x3ffee1dc of_io_request_and_map +EXPORT_SYMBOL vmlinux 0x402b10c9 qdisc_put +EXPORT_SYMBOL vmlinux 0x403c6b1f init_net +EXPORT_SYMBOL vmlinux 0x4067c69b dev_uc_add +EXPORT_SYMBOL vmlinux 0x406d4052 to_nd_pfn +EXPORT_SYMBOL vmlinux 0x407450e5 ip_tunnel_header_ops +EXPORT_SYMBOL vmlinux 0x409027ba ppp_channel_index EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem EXPORT_SYMBOL vmlinux 0x409873e3 tty_termios_baud_rate +EXPORT_SYMBOL vmlinux 0x40a5a7dc input_handler_for_each_handle EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc -EXPORT_SYMBOL vmlinux 0x40ac2ce2 unix_get_socket -EXPORT_SYMBOL vmlinux 0x40b4db8b devfreq_monitor_resume EXPORT_SYMBOL vmlinux 0x40c7247c si_meminfo +EXPORT_SYMBOL vmlinux 0x40cc9dbc scsi_host_busy EXPORT_SYMBOL vmlinux 0x40d04664 console_trylock EXPORT_SYMBOL vmlinux 0x40d59096 unregister_restart_handler +EXPORT_SYMBOL vmlinux 0x40d66155 genphy_update_link EXPORT_SYMBOL vmlinux 0x40d84a37 ZSTD_getFrameParams -EXPORT_SYMBOL vmlinux 0x40ea05e1 pci_request_irq -EXPORT_SYMBOL vmlinux 0x40f97f8c tcf_em_tree_validate -EXPORT_SYMBOL vmlinux 0x40ff8500 kthread_stop -EXPORT_SYMBOL vmlinux 0x410c7e08 nf_setsockopt +EXPORT_SYMBOL vmlinux 0x40e7109b netpoll_print_options +EXPORT_SYMBOL vmlinux 0x40f148f5 cpufreq_generic_suspend +EXPORT_SYMBOL vmlinux 0x40fefc11 input_set_max_poll_interval +EXPORT_SYMBOL vmlinux 0x41003a04 phy_validate_pause +EXPORT_SYMBOL vmlinux 0x4117e4b8 dev_disable_lro +EXPORT_SYMBOL vmlinux 0x4129d0aa mpage_readahead EXPORT_SYMBOL vmlinux 0x412f893c page_offline_begin -EXPORT_SYMBOL vmlinux 0x4147049e simple_open +EXPORT_SYMBOL vmlinux 0x414131cc netdev_set_num_tc +EXPORT_SYMBOL vmlinux 0x41437673 xfrm_state_lookup_byspi +EXPORT_SYMBOL vmlinux 0x4146326e ip6_find_1stfragopt EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user -EXPORT_SYMBOL vmlinux 0x414c6f39 pci_alloc_dev EXPORT_SYMBOL vmlinux 0x414da5e5 qman_enqueue -EXPORT_SYMBOL vmlinux 0x41504912 forget_cached_acl -EXPORT_SYMBOL vmlinux 0x4182a462 pci_find_resource +EXPORT_SYMBOL vmlinux 0x4164180b __skb_gso_segment +EXPORT_SYMBOL vmlinux 0x4168a4d1 phy_error +EXPORT_SYMBOL vmlinux 0x41887600 input_unregister_device EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time -EXPORT_SYMBOL vmlinux 0x418c2d68 pci_enable_msi -EXPORT_SYMBOL vmlinux 0x4193061d cleancache_register_ops -EXPORT_SYMBOL vmlinux 0x41cb3220 __skb_gro_checksum_complete -EXPORT_SYMBOL vmlinux 0x41cd597b netdev_reset_tc +EXPORT_SYMBOL vmlinux 0x418964e3 pci_stop_and_remove_bus_device +EXPORT_SYMBOL vmlinux 0x41ad2f07 devm_devfreq_add_device +EXPORT_SYMBOL vmlinux 0x41d635da sock_set_priority +EXPORT_SYMBOL vmlinux 0x41dea8af d_instantiate_anon +EXPORT_SYMBOL vmlinux 0x41e6784e devm_free_irq +EXPORT_SYMBOL vmlinux 0x41e89557 mmc_cqe_post_req EXPORT_SYMBOL vmlinux 0x41efdeaf radix_tree_lookup_slot -EXPORT_SYMBOL vmlinux 0x42015498 blk_queue_bounce_limit EXPORT_SYMBOL vmlinux 0x420964e3 __nla_parse -EXPORT_SYMBOL vmlinux 0x420f2773 unregister_nls -EXPORT_SYMBOL vmlinux 0x4212f132 fman_get_mem_region EXPORT_SYMBOL vmlinux 0x42160169 flush_workqueue -EXPORT_SYMBOL vmlinux 0x421ca47f vm_iomap_memory -EXPORT_SYMBOL vmlinux 0x42256464 tty_insert_flip_string_fixed_flag -EXPORT_SYMBOL vmlinux 0x422d2f1f request_firmware EXPORT_SYMBOL vmlinux 0x4230a8d7 sg_nents_for_len -EXPORT_SYMBOL vmlinux 0x42379884 fman_unregister_intr EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running +EXPORT_SYMBOL vmlinux 0x424be303 rproc_put EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp EXPORT_SYMBOL vmlinux 0x42578e80 acpi_get_type -EXPORT_SYMBOL vmlinux 0x4268a139 mipi_dsi_dcs_set_display_off -EXPORT_SYMBOL vmlinux 0x42777605 fscrypt_put_encryption_info -EXPORT_SYMBOL vmlinux 0x42794e36 simple_recursive_removal -EXPORT_SYMBOL vmlinux 0x42a417c3 rproc_coredump_using_sections -EXPORT_SYMBOL vmlinux 0x42b0f7c9 key_revoke -EXPORT_SYMBOL vmlinux 0x42b13c45 disk_end_io_acct -EXPORT_SYMBOL vmlinux 0x42b95967 devfreq_recommended_opp +EXPORT_SYMBOL vmlinux 0x42809b48 pps_unregister_source +EXPORT_SYMBOL vmlinux 0x429139ca md_wait_for_blocked_rdev +EXPORT_SYMBOL vmlinux 0x42a18ccc __SetPageMovable +EXPORT_SYMBOL vmlinux 0x42a3898e tcp_md5_hash_key +EXPORT_SYMBOL vmlinux 0x42aa6bdd config_item_init_type_name +EXPORT_SYMBOL vmlinux 0x42bd5de6 tcp_ld_RTO_revert EXPORT_SYMBOL vmlinux 0x42bed8d4 unix_gc_lock -EXPORT_SYMBOL vmlinux 0x42d517fd sk_dst_check -EXPORT_SYMBOL vmlinux 0x42d8f361 get_watch_queue +EXPORT_SYMBOL vmlinux 0x42c49730 tcp_prot +EXPORT_SYMBOL vmlinux 0x42ca6f99 sock_edemux +EXPORT_SYMBOL vmlinux 0x42efa2a7 blk_queue_max_segments EXPORT_SYMBOL vmlinux 0x42f1b900 fb_pad_unaligned_buffer +EXPORT_SYMBOL vmlinux 0x42f6c5e9 phy_get_eee_err +EXPORT_SYMBOL vmlinux 0x42fe3554 vfs_copy_file_range EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages +EXPORT_SYMBOL vmlinux 0x4308e9d4 phy_support_sym_pause +EXPORT_SYMBOL vmlinux 0x43159544 blkdev_put EXPORT_SYMBOL vmlinux 0x431ec3a9 __nla_validate -EXPORT_SYMBOL vmlinux 0x43276048 dev_get_iflink -EXPORT_SYMBOL vmlinux 0x433172de dma_get_sgtable_attrs EXPORT_SYMBOL vmlinux 0x4336fcca ucs2_as_utf8 EXPORT_SYMBOL vmlinux 0x433cabfb acpi_decode_pld_buffer -EXPORT_SYMBOL vmlinux 0x4345c64a sock_bind_add +EXPORT_SYMBOL vmlinux 0x434a8226 zero_fill_bio EXPORT_SYMBOL vmlinux 0x4351577a fb_parse_edid -EXPORT_SYMBOL vmlinux 0x436207a0 iov_iter_fault_in_readable -EXPORT_SYMBOL vmlinux 0x436a9989 xfrm4_rcv +EXPORT_SYMBOL vmlinux 0x436235a1 dev_loopback_xmit +EXPORT_SYMBOL vmlinux 0x43645740 rproc_of_resm_mem_entry_init +EXPORT_SYMBOL vmlinux 0x4364e661 ps2_end_command +EXPORT_SYMBOL vmlinux 0x436cb9b0 sock_no_sendpage +EXPORT_SYMBOL vmlinux 0x43700f3d blk_cleanup_disk +EXPORT_SYMBOL vmlinux 0x43733198 mfd_remove_devices EXPORT_SYMBOL vmlinux 0x437a0d6d __sock_tx_timestamp -EXPORT_SYMBOL vmlinux 0x437ae764 dma_sync_wait +EXPORT_SYMBOL vmlinux 0x437a5df0 ethtool_get_phc_vclocks +EXPORT_SYMBOL vmlinux 0x4382af3d __dev_get_by_index EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security -EXPORT_SYMBOL vmlinux 0x439c1b01 del_random_ready_callback -EXPORT_SYMBOL vmlinux 0x439c87a9 jbd2_journal_submit_inode_data_buffers -EXPORT_SYMBOL vmlinux 0x439fbe86 ipv6_dev_mc_dec +EXPORT_SYMBOL vmlinux 0x43a3858f simple_transaction_release +EXPORT_SYMBOL vmlinux 0x43b5a045 flow_rule_match_enc_control EXPORT_SYMBOL vmlinux 0x43d22fb9 groups_alloc -EXPORT_SYMBOL vmlinux 0x43d2803f drop_super_exclusive -EXPORT_SYMBOL vmlinux 0x43d4ce79 skb_set_owner_w -EXPORT_SYMBOL vmlinux 0x43d651e7 inode_owner_or_capable -EXPORT_SYMBOL vmlinux 0x43d84a96 iov_iter_gap_alignment +EXPORT_SYMBOL vmlinux 0x43dc0dab nd_region_to_nstype +EXPORT_SYMBOL vmlinux 0x43df98ae tegra_ivc_read_advance EXPORT_SYMBOL vmlinux 0x4403bbd0 imx_sc_misc_set_control -EXPORT_SYMBOL vmlinux 0x44042f4c inet_sendpage -EXPORT_SYMBOL vmlinux 0x44098d70 pagevec_lookup_range_tag -EXPORT_SYMBOL vmlinux 0x441d7994 release_pages +EXPORT_SYMBOL vmlinux 0x440578d6 udp_disconnect +EXPORT_SYMBOL vmlinux 0x44072fc0 _dev_crit +EXPORT_SYMBOL vmlinux 0x4422679a kmem_cache_destroy +EXPORT_SYMBOL vmlinux 0x4436da8e dmaenginem_async_device_register +EXPORT_SYMBOL vmlinux 0x44413c2a dma_get_sgtable_attrs +EXPORT_SYMBOL vmlinux 0x4444c94f blk_integrity_unregister EXPORT_SYMBOL vmlinux 0x44469a76 crc_ccitt_false_table -EXPORT_SYMBOL vmlinux 0x444bf552 genphy_loopback +EXPORT_SYMBOL vmlinux 0x444b5281 inet_csk_init_xmit_timers +EXPORT_SYMBOL vmlinux 0x445ba4ba xsk_tx_peek_release_desc_batch EXPORT_SYMBOL vmlinux 0x4462d35e cpufreq_get_hw_max_freq -EXPORT_SYMBOL vmlinux 0x447fc360 inet_del_protocol +EXPORT_SYMBOL vmlinux 0x4469b448 __hw_addr_ref_sync_dev +EXPORT_SYMBOL vmlinux 0x447f3506 __skb_flow_get_ports +EXPORT_SYMBOL vmlinux 0x44857706 netlbl_calipso_ops_register +EXPORT_SYMBOL vmlinux 0x4490d494 xfrm_state_walk_done EXPORT_SYMBOL vmlinux 0x449ad0a7 memcmp -EXPORT_SYMBOL vmlinux 0x44a267d0 vfs_fileattr_set EXPORT_SYMBOL vmlinux 0x44a6e90a irq_cpu_rmap_add -EXPORT_SYMBOL vmlinux 0x44b13441 udp_lib_getsockopt -EXPORT_SYMBOL vmlinux 0x44ba70ab seq_hex_dump -EXPORT_SYMBOL vmlinux 0x44c2b06b seq_vprintf -EXPORT_SYMBOL vmlinux 0x44e03695 dma_resv_fini +EXPORT_SYMBOL vmlinux 0x44b984ea tcp_add_backlog +EXPORT_SYMBOL vmlinux 0x44d249ec xfrm_policy_delete EXPORT_SYMBOL vmlinux 0x44e9a829 match_token -EXPORT_SYMBOL vmlinux 0x44ebd379 mmc_unregister_driver -EXPORT_SYMBOL vmlinux 0x44ff18d0 of_translate_address +EXPORT_SYMBOL vmlinux 0x44ff53af vc_resize +EXPORT_SYMBOL vmlinux 0x44ffeb51 passthru_features_check EXPORT_SYMBOL vmlinux 0x45006cee default_red -EXPORT_SYMBOL vmlinux 0x45080206 __dev_get_by_flags +EXPORT_SYMBOL vmlinux 0x4506d261 neigh_destroy EXPORT_SYMBOL vmlinux 0x45081703 ec_get_handle -EXPORT_SYMBOL vmlinux 0x4508c13f kernel_write EXPORT_SYMBOL vmlinux 0x450d9a35 cmd_db_read_slave_id -EXPORT_SYMBOL vmlinux 0x45140b04 ww_mutex_unlock -EXPORT_SYMBOL vmlinux 0x452056c1 alloc_netdev_mqs EXPORT_SYMBOL vmlinux 0x452413a1 qman_alloc_pool_range EXPORT_SYMBOL vmlinux 0x452ba683 ipv6_ext_hdr +EXPORT_SYMBOL vmlinux 0x452ca92c seq_bprintf EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled +EXPORT_SYMBOL vmlinux 0x4544f57d phy_driver_unregister +EXPORT_SYMBOL vmlinux 0x45450ba8 input_allocate_device +EXPORT_SYMBOL vmlinux 0x45502cde blk_mq_delay_kick_requeue_list EXPORT_SYMBOL vmlinux 0x45535485 xxh32_update -EXPORT_SYMBOL vmlinux 0x4568aec3 phy_attached_info +EXPORT_SYMBOL vmlinux 0x4569993f bio_split EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user -EXPORT_SYMBOL vmlinux 0x459b6a04 rt6_lookup -EXPORT_SYMBOL vmlinux 0x459d0cdc file_remove_privs -EXPORT_SYMBOL vmlinux 0x459f0985 task_work_add -EXPORT_SYMBOL vmlinux 0x45a10cd5 gnet_stats_start_copy_compat -EXPORT_SYMBOL vmlinux 0x45b0cefc kill_pid -EXPORT_SYMBOL vmlinux 0x45c4dd4e dev_uc_sync -EXPORT_SYMBOL vmlinux 0x45d26119 configfs_undepend_item -EXPORT_SYMBOL vmlinux 0x45ddcf38 rproc_coredump_add_custom_segment -EXPORT_SYMBOL vmlinux 0x46117683 __sock_cmsg_send -EXPORT_SYMBOL vmlinux 0x461a58e9 file_write_and_wait_range +EXPORT_SYMBOL vmlinux 0x4592fb35 tty_wait_until_sent +EXPORT_SYMBOL vmlinux 0x45ab851b device_match_acpi_dev +EXPORT_SYMBOL vmlinux 0x45b06f97 find_inode_by_ino_rcu +EXPORT_SYMBOL vmlinux 0x45b7a4f6 pnp_get_resource +EXPORT_SYMBOL vmlinux 0x45bcbf29 seg6_hmac_net_exit +EXPORT_SYMBOL vmlinux 0x45c3317d page_get_link +EXPORT_SYMBOL vmlinux 0x45cf8487 security_inode_getsecctx +EXPORT_SYMBOL vmlinux 0x45d42cd9 pmem_sector_size +EXPORT_SYMBOL vmlinux 0x460f4a34 flow_hash_from_keys EXPORT_SYMBOL vmlinux 0x461d16ca sg_nents +EXPORT_SYMBOL vmlinux 0x4620b24e pci_free_host_bridge +EXPORT_SYMBOL vmlinux 0x462db87c tcp_md5_do_add +EXPORT_SYMBOL vmlinux 0x4631fe3c udp_seq_ops EXPORT_SYMBOL vmlinux 0x463219fb tcp_hashinfo -EXPORT_SYMBOL vmlinux 0x46360d26 of_find_node_by_type -EXPORT_SYMBOL vmlinux 0x463d79f0 pnp_device_attach -EXPORT_SYMBOL vmlinux 0x4642ea57 touchscreen_parse_properties -EXPORT_SYMBOL vmlinux 0x46574f15 pagecache_get_page +EXPORT_SYMBOL vmlinux 0x463ea589 fman_port_bind +EXPORT_SYMBOL vmlinux 0x4653501d mipi_dsi_dcs_set_tear_off +EXPORT_SYMBOL vmlinux 0x46544ea8 __scsi_add_device EXPORT_SYMBOL vmlinux 0x465e24ff ucs2_utf8size EXPORT_SYMBOL vmlinux 0x466c14a7 __delay EXPORT_SYMBOL vmlinux 0x467df16d netdev_rss_key_fill -EXPORT_SYMBOL vmlinux 0x4682d909 xfrm_init_state -EXPORT_SYMBOL vmlinux 0x4685349e sk_page_frag_refill +EXPORT_SYMBOL vmlinux 0x467eeacc get_phy_device +EXPORT_SYMBOL vmlinux 0x4686d4af security_sctp_sk_clone EXPORT_SYMBOL vmlinux 0x4698fe8a bman_release +EXPORT_SYMBOL vmlinux 0x469912a2 of_graph_get_remote_node EXPORT_SYMBOL vmlinux 0x469a6ec7 tcp_parse_md5sig_option -EXPORT_SYMBOL vmlinux 0x46a04958 phy_ethtool_ksettings_set -EXPORT_SYMBOL vmlinux 0x46b0bc8f pci_stop_and_remove_bus_device -EXPORT_SYMBOL vmlinux 0x46b9c48e default_llseek -EXPORT_SYMBOL vmlinux 0x46ba6102 vmf_insert_mixed_mkwrite +EXPORT_SYMBOL vmlinux 0x469d9ee6 __frontswap_load +EXPORT_SYMBOL vmlinux 0x46a00d02 kernel_bind +EXPORT_SYMBOL vmlinux 0x46c00ec0 tcp_poll EXPORT_SYMBOL vmlinux 0x46c47fb6 __node_distance -EXPORT_SYMBOL vmlinux 0x46ff07cb end_page_writeback +EXPORT_SYMBOL vmlinux 0x46cbe669 seq_put_decimal_ull +EXPORT_SYMBOL vmlinux 0x46edfcc0 kernel_sendpage_locked +EXPORT_SYMBOL vmlinux 0x46f6d8d7 pci_msix_vec_count 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 0x471147db dev_get_iflink EXPORT_SYMBOL vmlinux 0x4715a909 acpi_load_table -EXPORT_SYMBOL vmlinux 0x4715e341 pci_irq_vector -EXPORT_SYMBOL vmlinux 0x4725c420 netdev_name_node_alt_destroy -EXPORT_SYMBOL vmlinux 0x47339230 neigh_seq_start -EXPORT_SYMBOL vmlinux 0x47349572 phy_ethtool_ksettings_get -EXPORT_SYMBOL vmlinux 0x47446afb genl_unregister_family -EXPORT_SYMBOL vmlinux 0x474c2e03 __xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x4724c933 set_user_nice +EXPORT_SYMBOL vmlinux 0x472c85c3 dma_async_device_register +EXPORT_SYMBOL vmlinux 0x4732b85b xfrm_state_insert +EXPORT_SYMBOL vmlinux 0x4736bdc6 zpool_unregister_driver +EXPORT_SYMBOL vmlinux 0x4745a100 security_dentry_init_security +EXPORT_SYMBOL vmlinux 0x4747399f flow_block_cb_setup_simple +EXPORT_SYMBOL vmlinux 0x4754fbcf mii_nway_restart EXPORT_SYMBOL vmlinux 0x475d7427 fman_get_rx_extra_headroom -EXPORT_SYMBOL vmlinux 0x47624c7b of_parse_phandle -EXPORT_SYMBOL vmlinux 0x4766a5bd tty_port_tty_set EXPORT_SYMBOL vmlinux 0x47709e42 free_anon_bdev +EXPORT_SYMBOL vmlinux 0x47759f6b elv_rb_del +EXPORT_SYMBOL vmlinux 0x477a93ed t10_pi_type3_crc +EXPORT_SYMBOL vmlinux 0x47829dd5 iov_iter_bvec +EXPORT_SYMBOL vmlinux 0x4789a4c8 mfd_cell_disable EXPORT_SYMBOL vmlinux 0x479137ca imx_scu_irq_unregister_notifier EXPORT_SYMBOL vmlinux 0x47960bc4 proc_do_large_bitmap -EXPORT_SYMBOL vmlinux 0x47a08fe1 __skb_recv_udp EXPORT_SYMBOL vmlinux 0x47a0cdcb mb_cache_entry_find_next -EXPORT_SYMBOL vmlinux 0x47aa4b8c acpi_device_hid +EXPORT_SYMBOL vmlinux 0x47be8d9e scsi_track_queue_full EXPORT_SYMBOL vmlinux 0x47c20f8a refcount_dec_not_one EXPORT_SYMBOL vmlinux 0x47c65bfc unregister_inet6addr_validator_notifier -EXPORT_SYMBOL vmlinux 0x47c9e6ec tcp_release_cb EXPORT_SYMBOL vmlinux 0x47cfd825 kstrtouint_from_user EXPORT_SYMBOL vmlinux 0x47d8d301 __cond_resched_rwlock_read -EXPORT_SYMBOL vmlinux 0x480af6ab key_payload_reserve -EXPORT_SYMBOL vmlinux 0x480ddf4f napi_enable +EXPORT_SYMBOL vmlinux 0x47e387fe dm_get_device +EXPORT_SYMBOL vmlinux 0x47e9e782 tcp_set_rcvlowat +EXPORT_SYMBOL vmlinux 0x47f30c79 unregister_mii_timestamper +EXPORT_SYMBOL vmlinux 0x47f6b9ba netdev_port_same_parent_id +EXPORT_SYMBOL vmlinux 0x47f8d635 __get_hash_from_flowi6 +EXPORT_SYMBOL vmlinux 0x480dddd4 __sk_mem_reclaim EXPORT_SYMBOL vmlinux 0x48193639 acpi_lid_open EXPORT_SYMBOL vmlinux 0x4829a47e memcpy EXPORT_SYMBOL vmlinux 0x4829cf6b fscrypt_enqueue_decrypt_work -EXPORT_SYMBOL vmlinux 0x4832c67d unix_destruct_scm +EXPORT_SYMBOL vmlinux 0x48350faf sock_set_sndtimeo EXPORT_SYMBOL vmlinux 0x4837bb10 logic_outsb -EXPORT_SYMBOL vmlinux 0x483d328b dma_resv_init +EXPORT_SYMBOL vmlinux 0x483fc6a1 blk_rq_map_kern EXPORT_SYMBOL vmlinux 0x4841bdee strnchr EXPORT_SYMBOL vmlinux 0x4848cfb1 phy_mipi_dphy_get_default_config +EXPORT_SYMBOL vmlinux 0x484dc3fb uart_suspend_port EXPORT_SYMBOL vmlinux 0x484f6edf ktime_get_coarse_real_ts64 -EXPORT_SYMBOL vmlinux 0x484fd6c3 param_ops_int -EXPORT_SYMBOL vmlinux 0x48523fb5 fs_param_is_u64 -EXPORT_SYMBOL vmlinux 0x485440cb xfrm_policy_alloc EXPORT_SYMBOL vmlinux 0x4859b8bb rtc_year_days -EXPORT_SYMBOL vmlinux 0x48603ba9 xfrm_state_unregister_afinfo EXPORT_SYMBOL vmlinux 0x486075c8 gen_pool_dma_alloc -EXPORT_SYMBOL vmlinux 0x4874da6f __dst_destroy_metrics_generic -EXPORT_SYMBOL vmlinux 0x487866ef __set_page_dirty_no_writeback +EXPORT_SYMBOL vmlinux 0x486ce52a register_key_type +EXPORT_SYMBOL vmlinux 0x4887d706 __skb_pad +EXPORT_SYMBOL vmlinux 0x488e997e mipi_dsi_driver_unregister +EXPORT_SYMBOL vmlinux 0x48945ac8 tc_setup_flow_action EXPORT_SYMBOL vmlinux 0x489eda10 memset32 EXPORT_SYMBOL vmlinux 0x489f6e0b rdma_dim -EXPORT_SYMBOL vmlinux 0x48a84d25 dev_mc_add_excl +EXPORT_SYMBOL vmlinux 0x48a8f620 pci_bus_set_ops EXPORT_SYMBOL vmlinux 0x48a91171 string_get_size -EXPORT_SYMBOL vmlinux 0x48b6b507 nf_log_unbind_pf +EXPORT_SYMBOL vmlinux 0x48aa0938 security_sb_set_mnt_opts EXPORT_SYMBOL vmlinux 0x48b99a13 vme_lm_free -EXPORT_SYMBOL vmlinux 0x48bd683a lease_get_mtime EXPORT_SYMBOL vmlinux 0x48c093fb _atomic_dec_and_lock_irqsave -EXPORT_SYMBOL vmlinux 0x48c12dad inet_frag_queue_insert -EXPORT_SYMBOL vmlinux 0x48c3014d vfs_mkdir -EXPORT_SYMBOL vmlinux 0x48ecf50d xfrm_sad_getinfo +EXPORT_SYMBOL vmlinux 0x48c1aa23 scsi_device_resume EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert -EXPORT_SYMBOL vmlinux 0x49079f61 mini_qdisc_pair_swap -EXPORT_SYMBOL vmlinux 0x49116bf5 close_fd_get_file -EXPORT_SYMBOL vmlinux 0x49232d80 igrab -EXPORT_SYMBOL vmlinux 0x494f86f4 fwnode_mdio_find_device +EXPORT_SYMBOL vmlinux 0x4912efa8 param_ops_invbool EXPORT_SYMBOL vmlinux 0x495231ea mul_u64_u64_div_u64 -EXPORT_SYMBOL vmlinux 0x495e6bc9 sg_miter_next EXPORT_SYMBOL vmlinux 0x4967e79f radix_tree_iter_resume -EXPORT_SYMBOL vmlinux 0x4969c264 uart_remove_one_port -EXPORT_SYMBOL vmlinux 0x496c3aaf dquot_initialize -EXPORT_SYMBOL vmlinux 0x497e2931 to_nd_pfn -EXPORT_SYMBOL vmlinux 0x497f892f devm_rproc_add +EXPORT_SYMBOL vmlinux 0x49729fbc dma_find_channel EXPORT_SYMBOL vmlinux 0x498e9128 ZSTD_findDecompressedSize +EXPORT_SYMBOL vmlinux 0x499b6184 scsi_unblock_requests EXPORT_SYMBOL vmlinux 0x499f0ecf nd_sb_checksum +EXPORT_SYMBOL vmlinux 0x49a06ad0 kobject_put +EXPORT_SYMBOL vmlinux 0x49a8c796 security_inode_notifysecctx EXPORT_SYMBOL vmlinux 0x49b163b8 acpi_bus_scan -EXPORT_SYMBOL vmlinux 0x49b638f8 phy_init_eee -EXPORT_SYMBOL vmlinux 0x49e36a1e fwnode_graph_parse_endpoint -EXPORT_SYMBOL vmlinux 0x49f67b70 mmc_of_parse_voltage -EXPORT_SYMBOL vmlinux 0x49fbdf58 prepare_to_swait_event -EXPORT_SYMBOL vmlinux 0x4a148bd4 rdmacg_try_charge +EXPORT_SYMBOL vmlinux 0x49c2f885 poll_initwait +EXPORT_SYMBOL vmlinux 0x49d0769e phy_register_fixup_for_id +EXPORT_SYMBOL vmlinux 0x49d1744f kern_path +EXPORT_SYMBOL vmlinux 0x49e2081a dev_uc_flush +EXPORT_SYMBOL vmlinux 0x49e5a008 __dst_destroy_metrics_generic +EXPORT_SYMBOL vmlinux 0x49e7a1c1 migrate_page_states +EXPORT_SYMBOL vmlinux 0x49ea1e6d napi_get_frags +EXPORT_SYMBOL vmlinux 0x49f22d06 mdio_device_reset +EXPORT_SYMBOL vmlinux 0x49ffb5e2 scsi_mode_sense +EXPORT_SYMBOL vmlinux 0x4a11c999 generic_write_end +EXPORT_SYMBOL vmlinux 0x4a24fa2a key_move +EXPORT_SYMBOL vmlinux 0x4a27f107 mipi_dsi_dcs_soft_reset EXPORT_SYMBOL vmlinux 0x4a3ad70e wait_for_completion_timeout -EXPORT_SYMBOL vmlinux 0x4a4b7fcd fib_notifier_ops_unregister -EXPORT_SYMBOL vmlinux 0x4a832619 seq_put_decimal_ll +EXPORT_SYMBOL vmlinux 0x4a562270 input_unregister_handler +EXPORT_SYMBOL vmlinux 0x4a6f3aab pnp_stop_dev +EXPORT_SYMBOL vmlinux 0x4a776579 __invalidate_device +EXPORT_SYMBOL vmlinux 0x4a82d93e scsi_register_interface EXPORT_SYMBOL vmlinux 0x4a8a6949 get_random_bytes_arch -EXPORT_SYMBOL vmlinux 0x4a8b7669 sb_set_blocksize EXPORT_SYMBOL vmlinux 0x4a93576a ucc_fast_free EXPORT_SYMBOL vmlinux 0x4a96a8eb xxh32_digest -EXPORT_SYMBOL vmlinux 0x4ab2a8c4 is_nd_pfn -EXPORT_SYMBOL vmlinux 0x4ace1734 md_wait_for_blocked_rdev +EXPORT_SYMBOL vmlinux 0x4aa130ae begin_new_exec +EXPORT_SYMBOL vmlinux 0x4ab4ba64 dump_page +EXPORT_SYMBOL vmlinux 0x4acd2206 blk_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x4ae08e4d deactivate_super +EXPORT_SYMBOL vmlinux 0x4ae2d564 create_empty_buffers +EXPORT_SYMBOL vmlinux 0x4ae92e54 acpi_get_hp_hw_control_from_firmware EXPORT_SYMBOL vmlinux 0x4aea463f crc32_le_shift -EXPORT_SYMBOL vmlinux 0x4af1c5ea sock_i_ino +EXPORT_SYMBOL vmlinux 0x4aebb295 fs_param_is_string +EXPORT_SYMBOL vmlinux 0x4aebff61 pci_scan_bridge +EXPORT_SYMBOL vmlinux 0x4af2e25c kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0x4af421c8 irq_set_chip EXPORT_SYMBOL vmlinux 0x4af6ddf0 kstrtou16 EXPORT_SYMBOL vmlinux 0x4afb2238 add_wait_queue -EXPORT_SYMBOL vmlinux 0x4b053a78 __block_write_begin EXPORT_SYMBOL vmlinux 0x4b0a3f52 gic_nonsecure_priorities -EXPORT_SYMBOL vmlinux 0x4b404098 inc_zone_page_state -EXPORT_SYMBOL vmlinux 0x4b4fdfe6 __hw_addr_ref_sync_dev -EXPORT_SYMBOL vmlinux 0x4b55185e key_validate -EXPORT_SYMBOL vmlinux 0x4b5929b0 may_umount -EXPORT_SYMBOL vmlinux 0x4b5abf97 compat_ptr_ioctl +EXPORT_SYMBOL vmlinux 0x4b0d8303 nf_register_net_hooks +EXPORT_SYMBOL vmlinux 0x4b1fa8ee pci_disable_link_state_locked +EXPORT_SYMBOL vmlinux 0x4b24dec6 d_alloc_name +EXPORT_SYMBOL vmlinux 0x4b2cec5e page_pool_destroy +EXPORT_SYMBOL vmlinux 0x4b3ef4c4 fput +EXPORT_SYMBOL vmlinux 0x4b4e99ef nd_btt_version +EXPORT_SYMBOL vmlinux 0x4b591ff6 blk_queue_io_opt EXPORT_SYMBOL vmlinux 0x4b5fd49e dm_kcopyd_do_callback -EXPORT_SYMBOL vmlinux 0x4b6056bf generic_delete_inode -EXPORT_SYMBOL vmlinux 0x4b6a230d blk_mq_delay_run_hw_queue +EXPORT_SYMBOL vmlinux 0x4b6987b9 crypto_sha256_finup EXPORT_SYMBOL vmlinux 0x4b6df007 acpi_evaluate_reg -EXPORT_SYMBOL vmlinux 0x4b85f81f mnt_set_expiry -EXPORT_SYMBOL vmlinux 0x4b89d8de of_mdio_find_bus -EXPORT_SYMBOL vmlinux 0x4b94dd4c posix_acl_chmod -EXPORT_SYMBOL vmlinux 0x4ba2f7fc dma_unmap_page_attrs -EXPORT_SYMBOL vmlinux 0x4bb15c83 of_iomap -EXPORT_SYMBOL vmlinux 0x4bb173c4 i2c_smbus_write_block_data +EXPORT_SYMBOL vmlinux 0x4b785469 phy_config_aneg +EXPORT_SYMBOL vmlinux 0x4b9c1afc sock_set_mark +EXPORT_SYMBOL vmlinux 0x4ba5ed0e blk_mq_init_queue +EXPORT_SYMBOL vmlinux 0x4ba962e9 __serio_register_driver +EXPORT_SYMBOL vmlinux 0x4bc08db7 generic_file_write_iter +EXPORT_SYMBOL vmlinux 0x4bc4443d sock_alloc EXPORT_SYMBOL vmlinux 0x4bcc2662 mempool_init_node -EXPORT_SYMBOL vmlinux 0x4bd2f67e gnet_stats_copy_app -EXPORT_SYMBOL vmlinux 0x4bdbb504 ihold -EXPORT_SYMBOL vmlinux 0x4be77db9 kmem_cache_shrink -EXPORT_SYMBOL vmlinux 0x4be7eebe devm_ioremap +EXPORT_SYMBOL vmlinux 0x4bd4106a skb_clone +EXPORT_SYMBOL vmlinux 0x4be89af5 mmc_gpiod_request_cd_irq +EXPORT_SYMBOL vmlinux 0x4bec86cb netdev_adjacent_change_commit EXPORT_SYMBOL vmlinux 0x4bef1c67 empty_name EXPORT_SYMBOL vmlinux 0x4bf3ce6f qman_release_cgrid +EXPORT_SYMBOL vmlinux 0x4bfca12d tcp_splice_read EXPORT_SYMBOL vmlinux 0x4c07a7e0 acpi_processor_unregister_performance -EXPORT_SYMBOL vmlinux 0x4c07b217 dec_zone_page_state -EXPORT_SYMBOL vmlinux 0x4c1ad955 console_start -EXPORT_SYMBOL vmlinux 0x4c254ee1 tcp_add_backlog -EXPORT_SYMBOL vmlinux 0x4c289870 udp_seq_next +EXPORT_SYMBOL vmlinux 0x4c0f2fb9 phy_driver_register +EXPORT_SYMBOL vmlinux 0x4c1447e9 tty_port_put +EXPORT_SYMBOL vmlinux 0x4c209f13 pci_read_vpd +EXPORT_SYMBOL vmlinux 0x4c29c4d0 eth_gro_receive +EXPORT_SYMBOL vmlinux 0x4c2ce9a7 phy_set_max_speed EXPORT_SYMBOL vmlinux 0x4c38d4e0 utf8_strncasecmp_folded EXPORT_SYMBOL vmlinux 0x4c416eb9 LZ4_decompress_fast -EXPORT_SYMBOL vmlinux 0x4c51cf36 mipi_dsi_device_register_full -EXPORT_SYMBOL vmlinux 0x4c53fd0f nd_device_register -EXPORT_SYMBOL vmlinux 0x4c55c97b padata_free_shell -EXPORT_SYMBOL vmlinux 0x4c623774 d_drop -EXPORT_SYMBOL vmlinux 0x4c68cfe5 tegra_ivc_read_advance -EXPORT_SYMBOL vmlinux 0x4c6c9d26 finish_swait -EXPORT_SYMBOL vmlinux 0x4c7a85ef pcie_print_link_status -EXPORT_SYMBOL vmlinux 0x4c8b4c46 invalidate_mapping_pages +EXPORT_SYMBOL vmlinux 0x4c443dd1 tegra_ivc_write_advance +EXPORT_SYMBOL vmlinux 0x4c65cbef cleancache_register_ops +EXPORT_SYMBOL vmlinux 0x4c8aa844 block_write_full_page +EXPORT_SYMBOL vmlinux 0x4c96922d __netdev_notify_peers +EXPORT_SYMBOL vmlinux 0x4cb3add7 i2c_del_driver EXPORT_SYMBOL vmlinux 0x4cba441d iwe_stream_add_event -EXPORT_SYMBOL vmlinux 0x4cbed01c misc_register -EXPORT_SYMBOL vmlinux 0x4cd2dfef md_bitmap_unplug -EXPORT_SYMBOL vmlinux 0x4ce107f7 mr_mfc_find_any -EXPORT_SYMBOL vmlinux 0x4ce6df24 udp_seq_ops +EXPORT_SYMBOL vmlinux 0x4ce29ee2 tty_port_lower_dtr_rts +EXPORT_SYMBOL vmlinux 0x4ce83474 unregister_filesystem EXPORT_SYMBOL vmlinux 0x4d0d163d copy_page -EXPORT_SYMBOL vmlinux 0x4d275b54 xfrm_state_check_expire EXPORT_SYMBOL vmlinux 0x4d2c7133 acpi_info -EXPORT_SYMBOL vmlinux 0x4d354a16 no_llseek -EXPORT_SYMBOL vmlinux 0x4d4cdcc8 skb_realloc_headroom -EXPORT_SYMBOL vmlinux 0x4d505839 kernel_bind +EXPORT_SYMBOL vmlinux 0x4d37e8e8 __pskb_pull_tail +EXPORT_SYMBOL vmlinux 0x4d5cbb0a kfree_skb EXPORT_SYMBOL vmlinux 0x4d65cbd5 csum_ipv6_magic -EXPORT_SYMBOL vmlinux 0x4d857f9c textsearch_unregister +EXPORT_SYMBOL vmlinux 0x4d7e9d51 mdio_device_remove +EXPORT_SYMBOL vmlinux 0x4d856f6e sock_bindtoindex +EXPORT_SYMBOL vmlinux 0x4d8c05d4 fb_set_suspend EXPORT_SYMBOL vmlinux 0x4d924f20 memremap EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase -EXPORT_SYMBOL vmlinux 0x4d9f3ca8 mmc_cqe_recovery EXPORT_SYMBOL vmlinux 0x4da596e6 qman_retire_fq +EXPORT_SYMBOL vmlinux 0x4daa4711 proc_remove +EXPORT_SYMBOL vmlinux 0x4dacf6de sock_release +EXPORT_SYMBOL vmlinux 0x4dbf29e6 neigh_table_init +EXPORT_SYMBOL vmlinux 0x4dc1a884 devfreq_recommended_opp +EXPORT_SYMBOL vmlinux 0x4dc55fc8 fs_lookup_param EXPORT_SYMBOL vmlinux 0x4dca08ee sync_file_get_fence -EXPORT_SYMBOL vmlinux 0x4dd6c048 dquot_alloc_inode -EXPORT_SYMBOL vmlinux 0x4de70b5f of_find_node_by_phandle +EXPORT_SYMBOL vmlinux 0x4dd4b039 dquot_load_quota_sb +EXPORT_SYMBOL vmlinux 0x4de2f363 sock_sendmsg EXPORT_SYMBOL vmlinux 0x4de995ec gen_pool_dma_alloc_algo +EXPORT_SYMBOL vmlinux 0x4def47e1 xp_free EXPORT_SYMBOL vmlinux 0x4df02057 crc32_be EXPORT_SYMBOL vmlinux 0x4df2ea84 gen_estimator_read -EXPORT_SYMBOL vmlinux 0x4df59c00 netdev_lower_get_first_private_rcu EXPORT_SYMBOL vmlinux 0x4dfa8d4b mutex_lock -EXPORT_SYMBOL vmlinux 0x4e01438f migrate_vma_pages -EXPORT_SYMBOL vmlinux 0x4e1ab7ef iunique -EXPORT_SYMBOL vmlinux 0x4e1ebbe5 devm_backlight_device_register +EXPORT_SYMBOL vmlinux 0x4e0498bb sock_no_ioctl +EXPORT_SYMBOL vmlinux 0x4e1ed915 unlock_new_inode EXPORT_SYMBOL vmlinux 0x4e20bcf8 radix_tree_tag_set +EXPORT_SYMBOL vmlinux 0x4e2a8916 tcp_make_synack 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 0x4e494bef regset_get_alloc EXPORT_SYMBOL vmlinux 0x4e4f0f16 dma_fence_chain_find_seqno EXPORT_SYMBOL vmlinux 0x4e547048 __kmalloc_node_track_caller -EXPORT_SYMBOL vmlinux 0x4e56a814 fb_pan_display +EXPORT_SYMBOL vmlinux 0x4e547f2c nd_namespace_blk_validate +EXPORT_SYMBOL vmlinux 0x4e54f7b3 qdisc_offload_dump_helper EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder EXPORT_SYMBOL vmlinux 0x4e6e4b41 radix_tree_delete EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console -EXPORT_SYMBOL vmlinux 0x4e812a4e sk_stream_wait_close -EXPORT_SYMBOL vmlinux 0x4e82af8e max8925_reg_write +EXPORT_SYMBOL vmlinux 0x4e704776 __skb_flow_dissect +EXPORT_SYMBOL vmlinux 0x4e7ca4c1 nd_device_notify +EXPORT_SYMBOL vmlinux 0x4e8b5fe5 md_check_no_bitmap +EXPORT_SYMBOL vmlinux 0x4e94577b devm_of_mdiobus_register +EXPORT_SYMBOL vmlinux 0x4ea16650 posix_acl_chmod EXPORT_SYMBOL vmlinux 0x4ea25709 dql_reset +EXPORT_SYMBOL vmlinux 0x4ea31c42 ppp_unregister_channel EXPORT_SYMBOL vmlinux 0x4eada8f7 security_secid_to_secctx +EXPORT_SYMBOL vmlinux 0x4ebf522d flow_rule_match_cvlan EXPORT_SYMBOL vmlinux 0x4ec54e78 bitmap_to_arr32 -EXPORT_SYMBOL vmlinux 0x4eea5d79 sync_inodes_sb -EXPORT_SYMBOL vmlinux 0x4eff4894 crypto_sha512_update +EXPORT_SYMBOL vmlinux 0x4ed97904 kmem_cache_free +EXPORT_SYMBOL vmlinux 0x4eda33a9 vfs_rename +EXPORT_SYMBOL vmlinux 0x4ee358a6 inet6_del_protocol +EXPORT_SYMBOL vmlinux 0x4eed3672 __mmap_lock_do_trace_acquire_returned +EXPORT_SYMBOL vmlinux 0x4ef6467c serial8250_register_8250_port +EXPORT_SYMBOL vmlinux 0x4f040605 ipv6_dev_get_saddr EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create +EXPORT_SYMBOL vmlinux 0x4f1d10f7 __ClearPageMovable EXPORT_SYMBOL vmlinux 0x4f2250ba rtc_tm_to_time64 -EXPORT_SYMBOL vmlinux 0x4f22c05a dmam_pool_create -EXPORT_SYMBOL vmlinux 0x4f35ba7d skb_tx_error -EXPORT_SYMBOL vmlinux 0x4f50423a alloc_xenballooned_pages EXPORT_SYMBOL vmlinux 0x4f55166f acpi_set_current_resources -EXPORT_SYMBOL vmlinux 0x4f5645f8 pci_bus_read_config_word -EXPORT_SYMBOL vmlinux 0x4f5cbe9c tcf_block_get -EXPORT_SYMBOL vmlinux 0x4f68b460 of_root -EXPORT_SYMBOL vmlinux 0x4f6abffe do_splice_direct -EXPORT_SYMBOL vmlinux 0x4f6e4505 get_ipc_ns_exported +EXPORT_SYMBOL vmlinux 0x4f60032c cdrom_ioctl +EXPORT_SYMBOL vmlinux 0x4f6d0ca8 __traceiter_mmap_lock_released EXPORT_SYMBOL vmlinux 0x4f709989 security_binder_transfer_binder -EXPORT_SYMBOL vmlinux 0x4fa6d359 dm_table_get_md -EXPORT_SYMBOL vmlinux 0x4fb50f13 ppp_unregister_channel -EXPORT_SYMBOL vmlinux 0x4fb6978c scsi_host_alloc -EXPORT_SYMBOL vmlinux 0x4fbffe46 inode_newsize_ok -EXPORT_SYMBOL vmlinux 0x4fc6eacc md_handle_request -EXPORT_SYMBOL vmlinux 0x4fcc3075 of_pci_range_to_resource -EXPORT_SYMBOL vmlinux 0x4fcf6c6e nf_unregister_sockopt +EXPORT_SYMBOL vmlinux 0x4f95c814 netif_device_detach +EXPORT_SYMBOL vmlinux 0x4f9bafd9 acpi_dev_hid_uid_match +EXPORT_SYMBOL vmlinux 0x4fb07460 dm_table_run_md_queue_async +EXPORT_SYMBOL vmlinux 0x4fb91a9a fsync_bdev +EXPORT_SYMBOL vmlinux 0x4fe1469a xsk_set_rx_need_wakeup +EXPORT_SYMBOL vmlinux 0x4ff530d2 of_graph_is_present +EXPORT_SYMBOL vmlinux 0x4ff5da6e module_layout EXPORT_SYMBOL vmlinux 0x4ffb59bf __SCK__tp_func_kfree +EXPORT_SYMBOL vmlinux 0x4ffd07f9 netdev_printk +EXPORT_SYMBOL vmlinux 0x4fff5f85 page_cache_next_miss +EXPORT_SYMBOL vmlinux 0x50034abb fwnode_get_mac_address +EXPORT_SYMBOL vmlinux 0x5007b698 get_bitmap_from_slot EXPORT_SYMBOL vmlinux 0x50097088 security_tun_dev_free_security EXPORT_SYMBOL vmlinux 0x5009c71d glob_match +EXPORT_SYMBOL vmlinux 0x500b56e7 i2c_smbus_write_word_data +EXPORT_SYMBOL vmlinux 0x502759b2 wait_on_page_private_2_killable EXPORT_SYMBOL vmlinux 0x5027bde2 acpi_acquire_mutex -EXPORT_SYMBOL vmlinux 0x503d6334 path_has_submounts -EXPORT_SYMBOL vmlinux 0x504fd90a phy_attached_print +EXPORT_SYMBOL vmlinux 0x506045d9 key_type_keyring EXPORT_SYMBOL vmlinux 0x50624917 sha1_init -EXPORT_SYMBOL vmlinux 0x50658578 follow_down EXPORT_SYMBOL vmlinux 0x506dff1a __genradix_free -EXPORT_SYMBOL vmlinux 0x50713eab udp_lib_get_port -EXPORT_SYMBOL vmlinux 0x5086a51b phy_set_asym_pause -EXPORT_SYMBOL vmlinux 0x5096a1d9 sock_enable_timestamps +EXPORT_SYMBOL vmlinux 0x50717b79 param_set_bool +EXPORT_SYMBOL vmlinux 0x507ee9b4 vme_register_error_handler +EXPORT_SYMBOL vmlinux 0x5081a12e pci_disable_device +EXPORT_SYMBOL vmlinux 0x508262cd fifo_set_limit +EXPORT_SYMBOL vmlinux 0x50848105 mark_buffer_write_io_error +EXPORT_SYMBOL vmlinux 0x509137a8 pci_fixup_device +EXPORT_SYMBOL vmlinux 0x5097506a inet_frags_init EXPORT_SYMBOL vmlinux 0x509b64ea acpi_has_method EXPORT_SYMBOL vmlinux 0x50a4698c fb_videomode_to_modelist -EXPORT_SYMBOL vmlinux 0x50a531de pci_enable_atomic_ops_to_root -EXPORT_SYMBOL vmlinux 0x50b46499 icmpv6_ndo_send +EXPORT_SYMBOL vmlinux 0x50a89a97 sk_common_release +EXPORT_SYMBOL vmlinux 0x50b5ae4d tcf_classify EXPORT_SYMBOL vmlinux 0x50b73ce2 rfkill_find_type -EXPORT_SYMBOL vmlinux 0x50bc1b30 cdev_alloc +EXPORT_SYMBOL vmlinux 0x50bc4f62 flow_rule_match_mpls EXPORT_SYMBOL vmlinux 0x50be748d security_ib_free_security -EXPORT_SYMBOL vmlinux 0x50c88a4a napi_disable +EXPORT_SYMBOL vmlinux 0x50c2e201 i2c_smbus_write_i2c_block_data EXPORT_SYMBOL vmlinux 0x50cf7585 hex2bin EXPORT_SYMBOL vmlinux 0x50d035c2 vsscanf -EXPORT_SYMBOL vmlinux 0x50da49ba mipi_dsi_dcs_set_pixel_format -EXPORT_SYMBOL vmlinux 0x50f52adc sock_common_recvmsg +EXPORT_SYMBOL vmlinux 0x50e42cc6 grab_cache_page_write_begin EXPORT_SYMBOL vmlinux 0x50f85302 __arm_smccc_hvc EXPORT_SYMBOL vmlinux 0x50f91491 __genradix_ptr +EXPORT_SYMBOL vmlinux 0x50fc04b6 hash_and_copy_to_iter EXPORT_SYMBOL vmlinux 0x5102a30b do_wait_intr_irq -EXPORT_SYMBOL vmlinux 0x511fe166 ptp_clock_event +EXPORT_SYMBOL vmlinux 0x5102ed9e skb_prepare_seq_read +EXPORT_SYMBOL vmlinux 0x51046e0f xfrm_state_update +EXPORT_SYMBOL vmlinux 0x51053e70 __skb_try_recv_datagram +EXPORT_SYMBOL vmlinux 0x511755c9 param_set_int +EXPORT_SYMBOL vmlinux 0x512577b8 jbd2_trans_will_send_data_barrier +EXPORT_SYMBOL vmlinux 0x512abc3e d_hash_and_lookup EXPORT_SYMBOL vmlinux 0x512afb54 nla_put_nohdr -EXPORT_SYMBOL vmlinux 0x51353e1c genl_register_family -EXPORT_SYMBOL vmlinux 0x5141e940 __put_user_ns -EXPORT_SYMBOL vmlinux 0x514887fb iov_iter_get_pages_alloc +EXPORT_SYMBOL vmlinux 0x51412632 d_find_alias +EXPORT_SYMBOL vmlinux 0x5142d2cc inet_sendpage +EXPORT_SYMBOL vmlinux 0x514d32d1 rt_mutex_base_init EXPORT_SYMBOL vmlinux 0x515083bf acpi_release_mutex +EXPORT_SYMBOL vmlinux 0x5151516e fixed_size_llseek +EXPORT_SYMBOL vmlinux 0x5159532c jbd2_journal_inode_ranged_wait +EXPORT_SYMBOL vmlinux 0x515d5341 phy_device_register EXPORT_SYMBOL vmlinux 0x515f520b qman_portal_get_iperiod -EXPORT_SYMBOL vmlinux 0x51636845 udp_set_csum EXPORT_SYMBOL vmlinux 0x51641162 opal_unlock_from_suspend -EXPORT_SYMBOL vmlinux 0x517773f0 dev_pm_opp_register_notifier -EXPORT_SYMBOL vmlinux 0x517ce787 ll_rw_block -EXPORT_SYMBOL vmlinux 0x5189f08a devm_clk_put -EXPORT_SYMBOL vmlinux 0x518f4939 phy_find_first -EXPORT_SYMBOL vmlinux 0x51917eb9 find_vma -EXPORT_SYMBOL vmlinux 0x51bbb688 devm_release_resource -EXPORT_SYMBOL vmlinux 0x51be0e23 genphy_update_link -EXPORT_SYMBOL vmlinux 0x51cd1b9e simple_getattr +EXPORT_SYMBOL vmlinux 0x5184ba35 ip6_xmit +EXPORT_SYMBOL vmlinux 0x519ea783 jbd2_journal_clear_err +EXPORT_SYMBOL vmlinux 0x519ed038 crypto_sha1_finup +EXPORT_SYMBOL vmlinux 0x51ad7bb3 xfrm_policy_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x51c992b6 get_mem_cgroup_from_mm +EXPORT_SYMBOL vmlinux 0x51cbec4f rproc_elf_load_segments EXPORT_SYMBOL vmlinux 0x51d12d4e acpi_pci_disabled -EXPORT_SYMBOL vmlinux 0x51d812f4 ipv6_sock_mc_drop -EXPORT_SYMBOL vmlinux 0x51e77c97 pfn_valid -EXPORT_SYMBOL vmlinux 0x51ece2a1 bd_abort_claiming -EXPORT_SYMBOL vmlinux 0x51ee7947 phy_write_paged -EXPORT_SYMBOL vmlinux 0x51f809ba tcp_close +EXPORT_SYMBOL vmlinux 0x51db1193 nvdimm_namespace_common_probe EXPORT_SYMBOL vmlinux 0x51f86a1a blk_limits_io_opt -EXPORT_SYMBOL vmlinux 0x51fb89e7 get_user_pages_unlocked -EXPORT_SYMBOL vmlinux 0x5200ede4 __destroy_inode EXPORT_SYMBOL vmlinux 0x5203d176 cmd_db_ready -EXPORT_SYMBOL vmlinux 0x520e5fc6 dev_mc_del EXPORT_SYMBOL vmlinux 0x52185192 __nla_reserve_nohdr -EXPORT_SYMBOL vmlinux 0x52277b8f address_space_init_once -EXPORT_SYMBOL vmlinux 0x52279180 freeze_super -EXPORT_SYMBOL vmlinux 0x52451419 ppp_register_channel -EXPORT_SYMBOL vmlinux 0x5246bbdd ps2_handle_response -EXPORT_SYMBOL vmlinux 0x5267c8bf netlink_ack -EXPORT_SYMBOL vmlinux 0x5268e352 neigh_parms_alloc -EXPORT_SYMBOL vmlinux 0x526db881 __cleancache_invalidate_page +EXPORT_SYMBOL vmlinux 0x522ee8a3 lease_modify +EXPORT_SYMBOL vmlinux 0x52421ca8 inc_node_page_state EXPORT_SYMBOL vmlinux 0x526eef2c hdmi_vendor_infoframe_pack -EXPORT_SYMBOL vmlinux 0x5288053c complete_request_key -EXPORT_SYMBOL vmlinux 0x5288d107 tty_port_lower_dtr_rts +EXPORT_SYMBOL vmlinux 0x526f31bb unpin_user_pages_dirty_lock EXPORT_SYMBOL vmlinux 0x52983a4f vme_master_write -EXPORT_SYMBOL vmlinux 0x52a8e233 input_set_capability -EXPORT_SYMBOL vmlinux 0x52aa72f5 phy_connect_direct +EXPORT_SYMBOL vmlinux 0x529a8c63 tcf_action_exec +EXPORT_SYMBOL vmlinux 0x529bafdf xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x52ab2fe5 kernel_getpeername +EXPORT_SYMBOL vmlinux 0x52ae9c3a pm860x_reg_read +EXPORT_SYMBOL vmlinux 0x52b0d8e9 nexthop_bucket_set_hw_flags EXPORT_SYMBOL vmlinux 0x52ba6325 __cpuhp_setup_state -EXPORT_SYMBOL vmlinux 0x52d1eeee rproc_coredump_add_segment +EXPORT_SYMBOL vmlinux 0x52bc3024 sockfd_lookup +EXPORT_SYMBOL vmlinux 0x52c1840a devm_memremap +EXPORT_SYMBOL vmlinux 0x52c4bbaa dm_table_get_mode +EXPORT_SYMBOL vmlinux 0x52d40647 nf_log_unregister +EXPORT_SYMBOL vmlinux 0x52d57cca skb_add_rx_frag EXPORT_SYMBOL vmlinux 0x52d717da xz_dec_init +EXPORT_SYMBOL vmlinux 0x52d76612 inet_addr_type_dev_table EXPORT_SYMBOL vmlinux 0x52dcb85b __traceiter_kmalloc EXPORT_SYMBOL vmlinux 0x52ecbc75 crc_ccitt +EXPORT_SYMBOL vmlinux 0x52efe96b __ethtool_get_link_ksettings EXPORT_SYMBOL vmlinux 0x52f2850a imx_sc_pm_cpu_start -EXPORT_SYMBOL vmlinux 0x52f4d91f mr_mfc_find_parent +EXPORT_SYMBOL vmlinux 0x5304be53 qdisc_tree_reduce_backlog EXPORT_SYMBOL vmlinux 0x530b1e98 pm_suspend +EXPORT_SYMBOL vmlinux 0x530c4351 vm_iomap_memory +EXPORT_SYMBOL vmlinux 0x530d6b92 pcie_capability_read_dword EXPORT_SYMBOL vmlinux 0x53126ecc __percpu_counter_sum -EXPORT_SYMBOL vmlinux 0x532b07b2 udp_lib_unhash +EXPORT_SYMBOL vmlinux 0x5312c4f0 devm_clk_get +EXPORT_SYMBOL vmlinux 0x5326e234 page_mapping EXPORT_SYMBOL vmlinux 0x533206b5 sort_r -EXPORT_SYMBOL vmlinux 0x53351f1d __scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x5333b661 rtnl_create_link +EXPORT_SYMBOL vmlinux 0x53354b22 __dynamic_ibdev_dbg EXPORT_SYMBOL vmlinux 0x5338184f ethtool_sprintf -EXPORT_SYMBOL vmlinux 0x535b5298 vfs_getattr -EXPORT_SYMBOL vmlinux 0x53692278 ip_fraglist_init -EXPORT_SYMBOL vmlinux 0x536a8196 security_socket_socketpair -EXPORT_SYMBOL vmlinux 0x536e4fe0 xfrm6_protocol_deregister -EXPORT_SYMBOL vmlinux 0x536ea713 mmc_release_host -EXPORT_SYMBOL vmlinux 0x537aacc8 unregister_cdrom -EXPORT_SYMBOL vmlinux 0x5381f99e __hw_addr_ref_unsync_dev -EXPORT_SYMBOL vmlinux 0x539d91f3 __skb_free_datagram_locked -EXPORT_SYMBOL vmlinux 0x53a0d5a1 rproc_mem_entry_init -EXPORT_SYMBOL vmlinux 0x53a5bef3 kthread_create_worker +EXPORT_SYMBOL vmlinux 0x53548f7c skb_get_hash_perturb +EXPORT_SYMBOL vmlinux 0x536acf70 vfs_dedupe_file_range +EXPORT_SYMBOL vmlinux 0x5374e6b8 input_match_device_id +EXPORT_SYMBOL vmlinux 0x5391e89d iget_locked +EXPORT_SYMBOL vmlinux 0x53a8496c skb_checksum_setup +EXPORT_SYMBOL vmlinux 0x53ab4f9c dev_set_alias EXPORT_SYMBOL vmlinux 0x53b954a2 up_read -EXPORT_SYMBOL vmlinux 0x53baa112 pci_write_config_dword -EXPORT_SYMBOL vmlinux 0x53d09851 __skb_checksum +EXPORT_SYMBOL vmlinux 0x53cc08a2 pci_enable_atomic_ops_to_root +EXPORT_SYMBOL vmlinux 0x53dd5d24 __inet_stream_connect EXPORT_SYMBOL vmlinux 0x53e50ffa first_ec +EXPORT_SYMBOL vmlinux 0x53e750d8 backlight_device_register EXPORT_SYMBOL vmlinux 0x53eff192 tegra_ivc_align EXPORT_SYMBOL vmlinux 0x53fa36d1 ZSTD_decompressBlock EXPORT_SYMBOL vmlinux 0x5402da9f xudma_navss_psil_pair -EXPORT_SYMBOL vmlinux 0x540ab109 vm_mmap -EXPORT_SYMBOL vmlinux 0x541dc2e0 nf_getsockopt -EXPORT_SYMBOL vmlinux 0x542fe098 i2c_get_adapter +EXPORT_SYMBOL vmlinux 0x541242d9 tcf_exts_dump +EXPORT_SYMBOL vmlinux 0x542d0fc8 mem_cgroup_from_task EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start -EXPORT_SYMBOL vmlinux 0x545ab355 sock_no_sendmsg -EXPORT_SYMBOL vmlinux 0x54708cf8 scsi_scan_target -EXPORT_SYMBOL vmlinux 0x5470df2c __sk_mem_raise_allocated -EXPORT_SYMBOL vmlinux 0x5474e0f5 locks_init_lock -EXPORT_SYMBOL vmlinux 0x548594db call_fib_notifiers -EXPORT_SYMBOL vmlinux 0x548c7c5a km_policy_notify +EXPORT_SYMBOL vmlinux 0x544108d6 of_device_get_match_data +EXPORT_SYMBOL vmlinux 0x5447f992 pci_alloc_dev +EXPORT_SYMBOL vmlinux 0x544e8367 pci_dev_put +EXPORT_SYMBOL vmlinux 0x544f526b gnet_stats_start_copy_compat +EXPORT_SYMBOL vmlinux 0x5451ae41 netlink_ack +EXPORT_SYMBOL vmlinux 0x54719e53 tcp_sendmsg +EXPORT_SYMBOL vmlinux 0x54884008 blk_sync_queue +EXPORT_SYMBOL vmlinux 0x548d4a25 __ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0x54a7b44b tty_port_tty_set EXPORT_SYMBOL vmlinux 0x54b1fac6 __ubsan_handle_load_invalid_value -EXPORT_SYMBOL vmlinux 0x54bccc82 phy_queue_state_machine -EXPORT_SYMBOL vmlinux 0x54bd62c7 pci_iomap_range -EXPORT_SYMBOL vmlinux 0x54c41124 dev_change_proto_down -EXPORT_SYMBOL vmlinux 0x54cfdbe0 pcie_capability_clear_and_set_word -EXPORT_SYMBOL vmlinux 0x54d1a44b rt_dst_alloc +EXPORT_SYMBOL vmlinux 0x54b362f4 copy_page_to_iter +EXPORT_SYMBOL vmlinux 0x54c0dfb2 ip_route_me_harder +EXPORT_SYMBOL vmlinux 0x54ce2f3b inet_dgram_ops +EXPORT_SYMBOL vmlinux 0x54ce9330 unregister_netdevice_queue +EXPORT_SYMBOL vmlinux 0x54dacd4f set_page_dirty +EXPORT_SYMBOL vmlinux 0x54e2fdbc config_item_put EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp -EXPORT_SYMBOL vmlinux 0x54e788ce rproc_set_firmware EXPORT_SYMBOL vmlinux 0x54ea6dfe xen_start_flags -EXPORT_SYMBOL vmlinux 0x54f26537 xfrm_state_update -EXPORT_SYMBOL vmlinux 0x54f90f3e generic_parse_monolithic -EXPORT_SYMBOL vmlinux 0x55038020 of_graph_get_endpoint_count +EXPORT_SYMBOL vmlinux 0x54ef7eca dma_sync_wait +EXPORT_SYMBOL vmlinux 0x54f75e4f clear_inode EXPORT_SYMBOL vmlinux 0x5506b8f7 netlbl_bitmap_setbit -EXPORT_SYMBOL vmlinux 0x5506cadd md_write_inc EXPORT_SYMBOL vmlinux 0x5508f28d bman_acquire -EXPORT_SYMBOL vmlinux 0x55094d41 tcp_v4_destroy_sock +EXPORT_SYMBOL vmlinux 0x550c383e PDE_DATA EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color -EXPORT_SYMBOL vmlinux 0x551e4260 tty_register_device -EXPORT_SYMBOL vmlinux 0x5521fe78 __neigh_set_probe_once +EXPORT_SYMBOL vmlinux 0x55235537 __udp_disconnect +EXPORT_SYMBOL vmlinux 0x5524e76e phy_advertise_supported EXPORT_SYMBOL vmlinux 0x552db3aa qman_query_cgr_congested -EXPORT_SYMBOL vmlinux 0x553e51e2 pci_disable_device +EXPORT_SYMBOL vmlinux 0x5534fcb5 nf_reinject EXPORT_SYMBOL vmlinux 0x554ae3a4 irq_poll_sched -EXPORT_SYMBOL vmlinux 0x5557266a napi_consume_skb -EXPORT_SYMBOL vmlinux 0x5568c556 proc_mkdir -EXPORT_SYMBOL vmlinux 0x556a979f genphy_read_abilities +EXPORT_SYMBOL vmlinux 0x555e251b netif_carrier_on EXPORT_SYMBOL vmlinux 0x556b5d62 __kfifo_dma_in_prepare_r -EXPORT_SYMBOL vmlinux 0x5572a6cb release_sock -EXPORT_SYMBOL vmlinux 0x5573df09 skb_abort_seq_read +EXPORT_SYMBOL vmlinux 0x5583983d vfs_getattr_nosec +EXPORT_SYMBOL vmlinux 0x5587b4ea tty_flip_buffer_push +EXPORT_SYMBOL vmlinux 0x55890719 request_firmware_into_buf EXPORT_SYMBOL vmlinux 0x558b281d aes_expandkey -EXPORT_SYMBOL vmlinux 0x5595da47 file_open_root -EXPORT_SYMBOL vmlinux 0x55c22435 skb_flow_dissect_tunnel_info -EXPORT_SYMBOL vmlinux 0x55c39979 tty_check_change -EXPORT_SYMBOL vmlinux 0x55cd3103 tcp_init_sock -EXPORT_SYMBOL vmlinux 0x55d36b5f tag_pages_for_writeback +EXPORT_SYMBOL vmlinux 0x559e6918 dcache_dir_close +EXPORT_SYMBOL vmlinux 0x55af1aa1 inet_release +EXPORT_SYMBOL vmlinux 0x55c2b753 iov_iter_zero +EXPORT_SYMBOL vmlinux 0x55d1fcdd inet_csk_reqsk_queue_drop_and_put +EXPORT_SYMBOL vmlinux 0x55d84fd8 rproc_coredump_set_elf_info +EXPORT_SYMBOL vmlinux 0x55dc0278 dmam_alloc_attrs EXPORT_SYMBOL vmlinux 0x55e31703 ethtool_convert_link_mode_to_legacy_u32 -EXPORT_SYMBOL vmlinux 0x55eaedfd pci_ep_cfs_add_epf_group -EXPORT_SYMBOL vmlinux 0x560a88e6 vfs_iocb_iter_write -EXPORT_SYMBOL vmlinux 0x560bafb0 mipi_dsi_shutdown_peripheral -EXPORT_SYMBOL vmlinux 0x560f4d8f xsk_tx_peek_release_desc_batch +EXPORT_SYMBOL vmlinux 0x55f45c4f jbd2_submit_inode_data +EXPORT_SYMBOL vmlinux 0x55fb52f6 max8998_write_reg EXPORT_SYMBOL vmlinux 0x5614f48a qman_dqrr_get_ithresh -EXPORT_SYMBOL vmlinux 0x56228675 flow_indr_dev_register -EXPORT_SYMBOL vmlinux 0x563091cd __skb_checksum_complete_head EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user -EXPORT_SYMBOL vmlinux 0x563de0d4 mmc_gpiod_request_cd_irq +EXPORT_SYMBOL vmlinux 0x5646812b pldmfw_op_pci_match_record EXPORT_SYMBOL vmlinux 0x56470118 __warn_printk EXPORT_SYMBOL vmlinux 0x564f7608 acpi_reconfig_notifier_register +EXPORT_SYMBOL vmlinux 0x56509659 blk_queue_split EXPORT_SYMBOL vmlinux 0x56555401 nla_put_64bit -EXPORT_SYMBOL vmlinux 0x5677ee86 phy_sfp_probe +EXPORT_SYMBOL vmlinux 0x56639136 devm_ioport_unmap +EXPORT_SYMBOL vmlinux 0x5667339c ip_route_input_noref +EXPORT_SYMBOL vmlinux 0x567bbbe3 fscrypt_free_inode EXPORT_SYMBOL vmlinux 0x56802ae8 rps_cpu_mask -EXPORT_SYMBOL vmlinux 0x56bd98b1 of_parse_phandle_with_fixed_args +EXPORT_SYMBOL vmlinux 0x56899373 security_task_getsecid_subj +EXPORT_SYMBOL vmlinux 0x569e5a88 rpmh_write_batch +EXPORT_SYMBOL vmlinux 0x56ab2dc6 netpoll_setup +EXPORT_SYMBOL vmlinux 0x56b80e0a pnp_unregister_driver EXPORT_SYMBOL vmlinux 0x56c3db64 __tracepoint_kmalloc EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg -EXPORT_SYMBOL vmlinux 0x56dc1e7b pcix_set_mmrbc +EXPORT_SYMBOL vmlinux 0x56cbfaa0 mmc_run_bkops EXPORT_SYMBOL vmlinux 0x56de5ace __cpuhp_remove_state -EXPORT_SYMBOL vmlinux 0x56ebaafc d_add -EXPORT_SYMBOL vmlinux 0x57108187 dquot_mark_dquot_dirty -EXPORT_SYMBOL vmlinux 0x571445a1 mmc_cqe_request_done -EXPORT_SYMBOL vmlinux 0x572210d8 mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x56dedeba vfs_iter_write +EXPORT_SYMBOL vmlinux 0x56e183c0 pci_write_config_dword +EXPORT_SYMBOL vmlinux 0x56ed90f4 sock_create_lite +EXPORT_SYMBOL vmlinux 0x57106eae uart_remove_one_port +EXPORT_SYMBOL vmlinux 0x5719a5ab d_obtain_root +EXPORT_SYMBOL vmlinux 0x5723d13d tcf_em_tree_dump +EXPORT_SYMBOL vmlinux 0x57379ca3 fwnode_get_phy_id EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region -EXPORT_SYMBOL vmlinux 0x57560963 zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0x574d9e50 mmc_retune_timer_stop EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put -EXPORT_SYMBOL vmlinux 0x5763b600 of_platform_bus_probe +EXPORT_SYMBOL vmlinux 0x5760ca0d sock_cmsg_send +EXPORT_SYMBOL vmlinux 0x5764298a scsi_block_when_processing_errors +EXPORT_SYMBOL vmlinux 0x5766a91b mr_rtm_dumproute EXPORT_SYMBOL vmlinux 0x57674fd7 __sw_hweight16 -EXPORT_SYMBOL vmlinux 0x5774057d max8998_bulk_read -EXPORT_SYMBOL vmlinux 0x57830e12 pci_request_region +EXPORT_SYMBOL vmlinux 0x5774adcb seq_dentry EXPORT_SYMBOL vmlinux 0x578a408b ZSTD_initDCtx EXPORT_SYMBOL vmlinux 0x57900416 gen_pool_fixed_alloc EXPORT_SYMBOL vmlinux 0x5792f848 strlcpy -EXPORT_SYMBOL vmlinux 0x57b46603 blk_queue_physical_block_size -EXPORT_SYMBOL vmlinux 0x57b4e3e8 bio_integrity_clone -EXPORT_SYMBOL vmlinux 0x57b96398 cdrom_get_last_written EXPORT_SYMBOL vmlinux 0x57bc19d2 down_write -EXPORT_SYMBOL vmlinux 0x57bff63a __cancel_dirty_page -EXPORT_SYMBOL vmlinux 0x57e9eec2 d_alloc_parallel -EXPORT_SYMBOL vmlinux 0x57efbca7 sockfd_lookup +EXPORT_SYMBOL vmlinux 0x57db236d pcie_capability_write_word EXPORT_SYMBOL vmlinux 0x57f38cdc qe_get_firmware_info -EXPORT_SYMBOL vmlinux 0x580ec311 tcp_disconnect -EXPORT_SYMBOL vmlinux 0x580f2301 sock_alloc_send_pskb +EXPORT_SYMBOL vmlinux 0x5808f950 tcp_sock_set_syncnt EXPORT_SYMBOL vmlinux 0x58125fbb nla_reserve_64bit -EXPORT_SYMBOL vmlinux 0x5814e09b nf_unregister_net_hook EXPORT_SYMBOL vmlinux 0x5818fe3c posix_acl_from_mode -EXPORT_SYMBOL vmlinux 0x581ad183 dev_add_pack +EXPORT_SYMBOL vmlinux 0x581c8fa5 sock_alloc_file EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate EXPORT_SYMBOL vmlinux 0x582606eb xudma_rflow_put EXPORT_SYMBOL vmlinux 0x582b6275 xfrm_if_unregister_cb +EXPORT_SYMBOL vmlinux 0x582d2669 d_drop EXPORT_SYMBOL vmlinux 0x5838f6c9 rtc_valid_tm -EXPORT_SYMBOL vmlinux 0x5850eed7 blk_mq_tag_to_rq -EXPORT_SYMBOL vmlinux 0x5851ed93 pci_bus_read_dev_vendor_id +EXPORT_SYMBOL vmlinux 0x58486f8e phy_detach +EXPORT_SYMBOL vmlinux 0x58571bec jbd2_journal_put_journal_head EXPORT_SYMBOL vmlinux 0x585ae877 nmi_panic -EXPORT_SYMBOL vmlinux 0x587611e4 drop_super +EXPORT_SYMBOL vmlinux 0x58651832 __test_set_page_writeback EXPORT_SYMBOL vmlinux 0x587b0954 kvasprintf EXPORT_SYMBOL vmlinux 0x587b892e qe_get_num_of_risc -EXPORT_SYMBOL vmlinux 0x587d7951 cont_write_begin +EXPORT_SYMBOL vmlinux 0x587ba71d mmc_alloc_host EXPORT_SYMBOL vmlinux 0x587f22d7 devmap_managed_key -EXPORT_SYMBOL vmlinux 0x58876ae6 skb_queue_purge -EXPORT_SYMBOL vmlinux 0x5897f3c4 i2c_smbus_write_word_data +EXPORT_SYMBOL vmlinux 0x5884f556 ps2_sendbyte +EXPORT_SYMBOL vmlinux 0x58904753 ip6_route_me_harder +EXPORT_SYMBOL vmlinux 0x5896ca42 generic_block_bmap EXPORT_SYMBOL vmlinux 0x58acf24b mdiobus_register_board_info EXPORT_SYMBOL vmlinux 0x58b4645c dev_close_many EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard -EXPORT_SYMBOL vmlinux 0x58d74f73 skb_pull -EXPORT_SYMBOL vmlinux 0x58dcab35 __dec_node_page_state -EXPORT_SYMBOL vmlinux 0x58e173ac bio_advance +EXPORT_SYMBOL vmlinux 0x58c25d95 ppp_register_compressor +EXPORT_SYMBOL vmlinux 0x58dfe0ff handle_edge_irq EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io -EXPORT_SYMBOL vmlinux 0x58f530dc vme_slot_num -EXPORT_SYMBOL vmlinux 0x59130834 blk_mq_init_queue -EXPORT_SYMBOL vmlinux 0x59205b41 udp_skb_destructor -EXPORT_SYMBOL vmlinux 0x59263f32 tegra_ivc_notified +EXPORT_SYMBOL vmlinux 0x58fe759c rt6_lookup +EXPORT_SYMBOL vmlinux 0x5909ca40 __cleancache_invalidate_fs +EXPORT_SYMBOL vmlinux 0x591a280c devm_rproc_alloc +EXPORT_SYMBOL vmlinux 0x5931a6a0 mdiobus_read EXPORT_SYMBOL vmlinux 0x5934b5a9 qman_destroy_fq -EXPORT_SYMBOL vmlinux 0x5951bc6d blk_mq_stop_hw_queues +EXPORT_SYMBOL vmlinux 0x5937aa1e locks_copy_lock +EXPORT_SYMBOL vmlinux 0x595336b7 iw_handler_get_thrspy EXPORT_SYMBOL vmlinux 0x595d8002 hdmi_infoframe_pack -EXPORT_SYMBOL vmlinux 0x596992e7 mod_node_page_state -EXPORT_SYMBOL vmlinux 0x5997d37e rproc_da_to_va +EXPORT_SYMBOL vmlinux 0x5975cc9b blk_mq_start_stopped_hw_queues +EXPORT_SYMBOL vmlinux 0x597d6cf6 devm_clk_put +EXPORT_SYMBOL vmlinux 0x5981ddbc ___pskb_trim +EXPORT_SYMBOL vmlinux 0x59871e84 genl_register_family +EXPORT_SYMBOL vmlinux 0x59897f8f seg6_hmac_info_del EXPORT_SYMBOL vmlinux 0x599b4888 qe_setbrg EXPORT_SYMBOL vmlinux 0x599fb41c kvmalloc_node +EXPORT_SYMBOL vmlinux 0x59a06f2a udp_sendmsg EXPORT_SYMBOL vmlinux 0x59a2f0ee packing -EXPORT_SYMBOL vmlinux 0x59a3a94a sock_set_mark -EXPORT_SYMBOL vmlinux 0x59b055e5 pagecache_write_begin +EXPORT_SYMBOL vmlinux 0x59a766c0 __traceiter_mmap_lock_start_locking EXPORT_SYMBOL vmlinux 0x59b4ac3e tcp_memory_allocated -EXPORT_SYMBOL vmlinux 0x59ba9963 phy_detach -EXPORT_SYMBOL vmlinux 0x59c9df78 fscrypt_setup_filename -EXPORT_SYMBOL vmlinux 0x59d7e8ee bio_init -EXPORT_SYMBOL vmlinux 0x59e7790a tcf_qevent_destroy -EXPORT_SYMBOL vmlinux 0x59ec5307 gro_cells_receive -EXPORT_SYMBOL vmlinux 0x5a038bee register_console +EXPORT_SYMBOL vmlinux 0x59bad21a dquot_alloc_inode EXPORT_SYMBOL vmlinux 0x5a0b73d0 zlib_deflateInit2 -EXPORT_SYMBOL vmlinux 0x5a2757fa fb_set_var +EXPORT_SYMBOL vmlinux 0x5a209299 __blk_alloc_disk +EXPORT_SYMBOL vmlinux 0x5a26d5bb qdisc_watchdog_cancel EXPORT_SYMBOL vmlinux 0x5a290250 hdmi_drm_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0x5a331d3b consume_skb +EXPORT_SYMBOL vmlinux 0x5a2f4d6f proc_mkdir_mode +EXPORT_SYMBOL vmlinux 0x5a3c0139 pagecache_write_begin EXPORT_SYMBOL vmlinux 0x5a44f8cb __crypto_memneq EXPORT_SYMBOL vmlinux 0x5a4d313e gf128mul_4k_lle EXPORT_SYMBOL vmlinux 0x5a60b950 qm_channel_pool1 -EXPORT_SYMBOL vmlinux 0x5a67ae9c skb_get_hash_perturb -EXPORT_SYMBOL vmlinux 0x5a79b83e __ps2_command -EXPORT_SYMBOL vmlinux 0x5a7e24ef gnet_stats_copy_queue +EXPORT_SYMBOL vmlinux 0x5a652971 cdc_parse_cdc_header +EXPORT_SYMBOL vmlinux 0x5a832154 nf_unregister_sockopt EXPORT_SYMBOL vmlinux 0x5a8ae15a ZSTD_initDDict +EXPORT_SYMBOL vmlinux 0x5a917357 max8998_update_reg EXPORT_SYMBOL vmlinux 0x5a921311 strncmp +EXPORT_SYMBOL vmlinux 0x5a99a0d7 flow_get_u32_dst EXPORT_SYMBOL vmlinux 0x5a9f1d63 memmove -EXPORT_SYMBOL vmlinux 0x5ab83992 security_skb_classify_flow -EXPORT_SYMBOL vmlinux 0x5ac330e7 input_mt_assign_slots -EXPORT_SYMBOL vmlinux 0x5ac778f2 dmam_alloc_attrs -EXPORT_SYMBOL vmlinux 0x5ad689ca md_integrity_register +EXPORT_SYMBOL vmlinux 0x5ab96128 tcf_exts_num_actions +EXPORT_SYMBOL vmlinux 0x5ac1c2a6 udp_read_sock +EXPORT_SYMBOL vmlinux 0x5adf142e vfs_mkobj EXPORT_SYMBOL vmlinux 0x5ae1154b __traceiter_kfree -EXPORT_SYMBOL vmlinux 0x5ae11fc5 freeze_bdev -EXPORT_SYMBOL vmlinux 0x5aecede2 input_mt_sync_frame -EXPORT_SYMBOL vmlinux 0x5afc840e d_genocide -EXPORT_SYMBOL vmlinux 0x5b21120b readahead_expand +EXPORT_SYMBOL vmlinux 0x5ae24438 rtnl_set_sk_err +EXPORT_SYMBOL vmlinux 0x5af4b183 param_ops_bool +EXPORT_SYMBOL vmlinux 0x5af7fb87 __neigh_set_probe_once EXPORT_SYMBOL vmlinux 0x5b2f27fb do_wait_intr EXPORT_SYMBOL vmlinux 0x5b36d5dd utf8agemax -EXPORT_SYMBOL vmlinux 0x5b37d547 seq_escape EXPORT_SYMBOL vmlinux 0x5b3e282f xa_store -EXPORT_SYMBOL vmlinux 0x5b5104b7 nf_log_register -EXPORT_SYMBOL vmlinux 0x5b543b37 unregister_tcf_proto_ops EXPORT_SYMBOL vmlinux 0x5b54903b qcom_scm_pas_mem_setup EXPORT_SYMBOL vmlinux 0x5b56860c vm_munmap -EXPORT_SYMBOL vmlinux 0x5b63d2e3 from_kgid_munged -EXPORT_SYMBOL vmlinux 0x5b664431 load_nls -EXPORT_SYMBOL vmlinux 0x5b7c4ca6 udp_gro_complete -EXPORT_SYMBOL vmlinux 0x5b9971a5 pcie_ptm_enabled -EXPORT_SYMBOL vmlinux 0x5bb06e5a prepare_to_swait_exclusive -EXPORT_SYMBOL vmlinux 0x5bb5d3f7 _dev_alert -EXPORT_SYMBOL vmlinux 0x5bb90903 inet_stream_ops +EXPORT_SYMBOL vmlinux 0x5b5750da tcf_action_set_ctrlact +EXPORT_SYMBOL vmlinux 0x5b58b48e scm_fp_dup +EXPORT_SYMBOL vmlinux 0x5b5bc727 cdrom_get_media_event +EXPORT_SYMBOL vmlinux 0x5b612f14 locks_init_lock +EXPORT_SYMBOL vmlinux 0x5b6db221 __vlan_find_dev_deep_rcu +EXPORT_SYMBOL vmlinux 0x5b78fb5e sync_blockdev +EXPORT_SYMBOL vmlinux 0x5ba67a3b scsi_device_set_state EXPORT_SYMBOL vmlinux 0x5bd4ff88 flow_action_cookie_create -EXPORT_SYMBOL vmlinux 0x5bdd398a inet6_getname -EXPORT_SYMBOL vmlinux 0x5be2448c input_free_device +EXPORT_SYMBOL vmlinux 0x5bd7052f reuseport_select_sock EXPORT_SYMBOL vmlinux 0x5be63c5b crc32c_csum_stub -EXPORT_SYMBOL vmlinux 0x5bfdd5db __ip4_datagram_connect -EXPORT_SYMBOL vmlinux 0x5c06755d eth_commit_mac_addr_change -EXPORT_SYMBOL vmlinux 0x5c0a815d tcp_gro_complete -EXPORT_SYMBOL vmlinux 0x5c14154d pnp_disable_dev -EXPORT_SYMBOL vmlinux 0x5c157ae2 proto_unregister -EXPORT_SYMBOL vmlinux 0x5c1954f5 scsi_bios_ptable +EXPORT_SYMBOL vmlinux 0x5bed537c pci_get_domain_bus_and_slot +EXPORT_SYMBOL vmlinux 0x5c097595 rproc_vq_interrupt +EXPORT_SYMBOL vmlinux 0x5c099a09 redraw_screen EXPORT_SYMBOL vmlinux 0x5c1c3eb4 cpu_hwcaps EXPORT_SYMBOL vmlinux 0x5c26a53b wait_for_completion_io_timeout -EXPORT_SYMBOL vmlinux 0x5c26b87f of_node_name_prefix -EXPORT_SYMBOL vmlinux 0x5c33e6ce inode_io_list_del +EXPORT_SYMBOL vmlinux 0x5c27393e of_get_mac_address +EXPORT_SYMBOL vmlinux 0x5c2abd55 textsearch_unregister +EXPORT_SYMBOL vmlinux 0x5c2c6b43 genphy_handle_interrupt_no_ack +EXPORT_SYMBOL vmlinux 0x5c3b2d50 dquot_get_next_dqblk EXPORT_SYMBOL vmlinux 0x5c3c7387 kstrtoull -EXPORT_SYMBOL vmlinux 0x5c47bde0 tcp_md5_do_add -EXPORT_SYMBOL vmlinux 0x5c4eedc9 of_n_size_cells -EXPORT_SYMBOL vmlinux 0x5c4fe043 i2c_smbus_write_byte -EXPORT_SYMBOL vmlinux 0x5c942d1f __dev_get_by_index -EXPORT_SYMBOL vmlinux 0x5c9773ff kernel_sendpage -EXPORT_SYMBOL vmlinux 0x5c9a6c73 vfs_get_tree -EXPORT_SYMBOL vmlinux 0x5c9be9d3 blk_pre_runtime_suspend -EXPORT_SYMBOL vmlinux 0x5c9dd32a __blk_rq_map_sg -EXPORT_SYMBOL vmlinux 0x5ca9fccb netpoll_poll_dev -EXPORT_SYMBOL vmlinux 0x5cb06aae xfrm_input_register_afinfo -EXPORT_SYMBOL vmlinux 0x5cb4dccd devm_nvmem_unregister -EXPORT_SYMBOL vmlinux 0x5cb544de tty_driver_flush_buffer -EXPORT_SYMBOL vmlinux 0x5cb7a3a3 tty_port_init -EXPORT_SYMBOL vmlinux 0x5ccbae12 fiemap_prep -EXPORT_SYMBOL vmlinux 0x5ccbd81f __fs_parse +EXPORT_SYMBOL vmlinux 0x5c4dd873 md_bitmap_startwrite +EXPORT_SYMBOL vmlinux 0x5c8406fa bfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0x5c865c55 backlight_device_get_by_name +EXPORT_SYMBOL vmlinux 0x5cc13682 pci_request_regions_exclusive +EXPORT_SYMBOL vmlinux 0x5ccd40a5 skb_free_datagram +EXPORT_SYMBOL vmlinux 0x5cdaa8f2 tso_count_descs +EXPORT_SYMBOL vmlinux 0x5cdfe8f9 inet6_getname +EXPORT_SYMBOL vmlinux 0x5ce8a298 bdi_put +EXPORT_SYMBOL vmlinux 0x5cf39d98 input_free_device EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor EXPORT_SYMBOL vmlinux 0x5cfb26a0 acpi_enter_sleep_state -EXPORT_SYMBOL vmlinux 0x5d05e9e0 tcf_action_check_ctrlact +EXPORT_SYMBOL vmlinux 0x5cff11d6 blk_mq_alloc_tag_set +EXPORT_SYMBOL vmlinux 0x5d0d8a71 arp_create EXPORT_SYMBOL vmlinux 0x5d112304 __memcpy_fromio -EXPORT_SYMBOL vmlinux 0x5d27f51a truncate_setsize +EXPORT_SYMBOL vmlinux 0x5d2a39ea seq_open_private +EXPORT_SYMBOL vmlinux 0x5d304bc6 dquot_acquire EXPORT_SYMBOL vmlinux 0x5d49aabc init_wait_var_entry -EXPORT_SYMBOL vmlinux 0x5d61b977 pci_find_capability -EXPORT_SYMBOL vmlinux 0x5d651ac1 secpath_set -EXPORT_SYMBOL vmlinux 0x5d8c0856 tcp_initialize_rcv_mss -EXPORT_SYMBOL vmlinux 0x5d9487ad file_check_and_advance_wb_err -EXPORT_SYMBOL vmlinux 0x5d9f7d84 pci_write_vpd +EXPORT_SYMBOL vmlinux 0x5d709c9f security_unix_stream_connect +EXPORT_SYMBOL vmlinux 0x5d83db53 blk_rq_count_integrity_sg +EXPORT_SYMBOL vmlinux 0x5d8f3500 inode_owner_or_capable +EXPORT_SYMBOL vmlinux 0x5d927631 uart_match_port +EXPORT_SYMBOL vmlinux 0x5da8a1aa nonseekable_open EXPORT_SYMBOL vmlinux 0x5dac4cd6 qman_dqrr_set_ithresh -EXPORT_SYMBOL vmlinux 0x5dd8d118 scsi_device_get -EXPORT_SYMBOL vmlinux 0x5debe753 skb_expand_head -EXPORT_SYMBOL vmlinux 0x5df7e779 simple_dir_inode_operations +EXPORT_SYMBOL vmlinux 0x5daf249e __i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0x5db93845 bio_free_pages +EXPORT_SYMBOL vmlinux 0x5dfe3d0f dev_mc_sync EXPORT_SYMBOL vmlinux 0x5dffb495 ZSTD_decompress_usingDDict EXPORT_SYMBOL vmlinux 0x5e06bc5c refcount_dec_and_lock EXPORT_SYMBOL vmlinux 0x5e0ccb9f sha1_transform -EXPORT_SYMBOL vmlinux 0x5e0d5f8b skb_udp_tunnel_segment -EXPORT_SYMBOL vmlinux 0x5e207fe7 amba_find_device +EXPORT_SYMBOL vmlinux 0x5e20c222 mipi_dsi_dcs_set_display_off +EXPORT_SYMBOL vmlinux 0x5e29c6c5 phy_start_aneg EXPORT_SYMBOL vmlinux 0x5e2d7875 cpu_hwcap_keys EXPORT_SYMBOL vmlinux 0x5e3240a0 __cpu_online_mask EXPORT_SYMBOL vmlinux 0x5e332b52 __var_waitqueue +EXPORT_SYMBOL vmlinux 0x5e34ca97 jbd2_complete_transaction EXPORT_SYMBOL vmlinux 0x5e373fb4 gf128mul_64k_bbe -EXPORT_SYMBOL vmlinux 0x5e38c055 xfrm_dev_state_flush -EXPORT_SYMBOL vmlinux 0x5e416ef5 __traceiter_module_get -EXPORT_SYMBOL vmlinux 0x5e5b7d91 generic_permission -EXPORT_SYMBOL vmlinux 0x5e6be00a __alloc_pages -EXPORT_SYMBOL vmlinux 0x5e6f18fe dev_uc_unsync +EXPORT_SYMBOL vmlinux 0x5e415b03 dcb_ieee_getapp_default_prio_mask +EXPORT_SYMBOL vmlinux 0x5e43aa6f pcibios_bus_to_resource EXPORT_SYMBOL vmlinux 0x5e6f91f9 tegra_powergate_remove_clamping -EXPORT_SYMBOL vmlinux 0x5e72f83c __cleancache_invalidate_fs -EXPORT_SYMBOL vmlinux 0x5e80ca73 inet_dgram_ops +EXPORT_SYMBOL vmlinux 0x5e7a5af6 page_pool_put_page +EXPORT_SYMBOL vmlinux 0x5e7e9ad1 scsi_add_device +EXPORT_SYMBOL vmlinux 0x5e80ffbf __neigh_for_each_release EXPORT_SYMBOL vmlinux 0x5e855e56 gen_pool_first_fit_align EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask -EXPORT_SYMBOL vmlinux 0x5ea4e673 xsk_tx_peek_desc +EXPORT_SYMBOL vmlinux 0x5e9b5d46 fs_context_for_mount +EXPORT_SYMBOL vmlinux 0x5ea02ebb scsi_block_requests +EXPORT_SYMBOL vmlinux 0x5ea4b402 filp_open EXPORT_SYMBOL vmlinux 0x5eb24829 dm_shift_arg -EXPORT_SYMBOL vmlinux 0x5ebbdf97 rfkill_alloc -EXPORT_SYMBOL vmlinux 0x5ebd730d netpoll_setup +EXPORT_SYMBOL vmlinux 0x5eb3e7ab bmap EXPORT_SYMBOL vmlinux 0x5ec4aee6 put_sg_io_hdr EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch -EXPORT_SYMBOL vmlinux 0x5ed725eb jbd2_journal_dirty_metadata EXPORT_SYMBOL vmlinux 0x5ed90adc int_to_scsilun -EXPORT_SYMBOL vmlinux 0x5ee16721 flow_get_u32_src -EXPORT_SYMBOL vmlinux 0x5eec00ad dev_mc_add -EXPORT_SYMBOL vmlinux 0x5ef209da get_unmapped_area +EXPORT_SYMBOL vmlinux 0x5ef220ab follow_down_one EXPORT_SYMBOL vmlinux 0x5ef6a672 gen_pool_for_each_chunk -EXPORT_SYMBOL vmlinux 0x5ef9018f of_find_backlight_by_node EXPORT_SYMBOL vmlinux 0x5efdd68b __tracepoint_mmap_lock_released EXPORT_SYMBOL vmlinux 0x5efde8e6 proc_doulongvec_ms_jiffies_minmax -EXPORT_SYMBOL vmlinux 0x5f0220f5 disk_start_io_acct -EXPORT_SYMBOL vmlinux 0x5f068fb6 msi_desc_to_pci_dev -EXPORT_SYMBOL vmlinux 0x5f07b2b1 rproc_get_by_phandle +EXPORT_SYMBOL vmlinux 0x5f05ee34 pcim_enable_device EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters -EXPORT_SYMBOL vmlinux 0x5f154090 uart_match_port -EXPORT_SYMBOL vmlinux 0x5f22b231 dev_add_offload -EXPORT_SYMBOL vmlinux 0x5f49701c scsi_eh_prep_cmnd +EXPORT_SYMBOL vmlinux 0x5f16c72b from_kuid +EXPORT_SYMBOL vmlinux 0x5f187db0 sunxi_sram_release +EXPORT_SYMBOL vmlinux 0x5f30fca1 mr_vif_seq_idx EXPORT_SYMBOL vmlinux 0x5f5441c8 __ubsan_handle_alignment_assumption -EXPORT_SYMBOL vmlinux 0x5f5c3e33 tcf_idrinfo_destroy +EXPORT_SYMBOL vmlinux 0x5f59f7bd freeze_bdev EXPORT_SYMBOL vmlinux 0x5f6b889c rproc_va_to_pa -EXPORT_SYMBOL vmlinux 0x5f7d5245 tegra_dfll_unregister -EXPORT_SYMBOL vmlinux 0x5f834773 dev_addr_add +EXPORT_SYMBOL vmlinux 0x5f73f519 dns_query +EXPORT_SYMBOL vmlinux 0x5f9245ad vfs_setpos EXPORT_SYMBOL vmlinux 0x5f93525c acpi_extract_package -EXPORT_SYMBOL vmlinux 0x5fa4006e xfrm6_input_addr -EXPORT_SYMBOL vmlinux 0x5fbb5666 unregister_netdevice_notifier_net -EXPORT_SYMBOL vmlinux 0x5fc6dadf block_page_mkwrite +EXPORT_SYMBOL vmlinux 0x5f990ebd netif_stacked_transfer_operstate +EXPORT_SYMBOL vmlinux 0x5f9b3dd1 xfrm6_input_addr +EXPORT_SYMBOL vmlinux 0x5fb3ec84 __sock_cmsg_send +EXPORT_SYMBOL vmlinux 0x5fb422d7 truncate_pagecache +EXPORT_SYMBOL vmlinux 0x5fb6d532 fscrypt_put_encryption_info EXPORT_SYMBOL vmlinux 0x5fc72f0e alloc_pages_exact +EXPORT_SYMBOL vmlinux 0x5fcb6dfb jbd2_journal_start_commit +EXPORT_SYMBOL vmlinux 0x5fddca71 dev_set_mtu +EXPORT_SYMBOL vmlinux 0x5fde028b tcp_md5_do_del EXPORT_SYMBOL vmlinux 0x5fed178c meson_sm_call +EXPORT_SYMBOL vmlinux 0x5ff2c42e backlight_device_set_brightness EXPORT_SYMBOL vmlinux 0x5ff9eb0e lockref_mark_dead +EXPORT_SYMBOL vmlinux 0x5ffb0c4c of_find_node_by_phandle +EXPORT_SYMBOL vmlinux 0x5ffb6397 max8998_bulk_read EXPORT_SYMBOL vmlinux 0x5ffedf63 __nla_put_nohdr EXPORT_SYMBOL vmlinux 0x6005c351 zpool_has_pool -EXPORT_SYMBOL vmlinux 0x6005d5f0 inet_del_offload EXPORT_SYMBOL vmlinux 0x600683d3 do_unblank_screen -EXPORT_SYMBOL vmlinux 0x6018bb9c fb_validate_mode +EXPORT_SYMBOL vmlinux 0x600ff271 xfrm_register_type_offload +EXPORT_SYMBOL vmlinux 0x601e5a4b nf_ct_get_tuple_skb EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create -EXPORT_SYMBOL vmlinux 0x60250e66 tcf_em_unregister +EXPORT_SYMBOL vmlinux 0x60238b7e cros_ec_cmd_xfer_status EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier -EXPORT_SYMBOL vmlinux 0x60405b8e skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x6049c857 vmf_insert_pfn_prot +EXPORT_SYMBOL vmlinux 0x604c4e37 xp_dma_sync_for_device_slow +EXPORT_SYMBOL vmlinux 0x6050bb81 dev_addr_add EXPORT_SYMBOL vmlinux 0x605790dc fiemap_fill_next_extent -EXPORT_SYMBOL vmlinux 0x605dcced param_get_string +EXPORT_SYMBOL vmlinux 0x60678f03 nd_device_unregister +EXPORT_SYMBOL vmlinux 0x60716f9c scsi_print_sense +EXPORT_SYMBOL vmlinux 0x60774492 dcbnl_cee_notify EXPORT_SYMBOL vmlinux 0x608741b5 __init_swait_queue_head -EXPORT_SYMBOL vmlinux 0x60883014 flow_rule_match_ports EXPORT_SYMBOL vmlinux 0x6091b333 unregister_chrdev_region -EXPORT_SYMBOL vmlinux 0x60949ed7 node_data EXPORT_SYMBOL vmlinux 0x609bcd98 in6_pton EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net -EXPORT_SYMBOL vmlinux 0x60a71c04 vfs_statfs EXPORT_SYMBOL vmlinux 0x60aaeb4b qman_p_irqsource_add EXPORT_SYMBOL vmlinux 0x60b3071f neigh_proc_dointvec -EXPORT_SYMBOL vmlinux 0x60c7d21d __skb_gso_segment -EXPORT_SYMBOL vmlinux 0x60d07e8b dquot_alloc +EXPORT_SYMBOL vmlinux 0x60bb5e04 clean_bdev_aliases +EXPORT_SYMBOL vmlinux 0x60bd056f mmc_retune_release +EXPORT_SYMBOL vmlinux 0x60cd80f1 __page_symlink EXPORT_SYMBOL vmlinux 0x60d8ab30 vme_lm_get -EXPORT_SYMBOL vmlinux 0x610709ea qdisc_reset +EXPORT_SYMBOL vmlinux 0x60df431f rt_dst_alloc EXPORT_SYMBOL vmlinux 0x61073e4a acpi_os_map_generic_address -EXPORT_SYMBOL vmlinux 0x610c3569 xp_dma_map -EXPORT_SYMBOL vmlinux 0x6116bb62 of_graph_get_next_endpoint EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit -EXPORT_SYMBOL vmlinux 0x612d6449 sock_no_recvmsg -EXPORT_SYMBOL vmlinux 0x614d1f6e get_acl -EXPORT_SYMBOL vmlinux 0x6156242e jbd2_transaction_committed +EXPORT_SYMBOL vmlinux 0x613656ac jbd2_journal_init_inode +EXPORT_SYMBOL vmlinux 0x6140dc6f netif_receive_skb +EXPORT_SYMBOL vmlinux 0x6149a667 ipv6_find_hdr +EXPORT_SYMBOL vmlinux 0x6152f974 tcp_select_initial_window +EXPORT_SYMBOL vmlinux 0x6155a905 alloc_pages EXPORT_SYMBOL vmlinux 0x615911d7 __bitmap_set -EXPORT_SYMBOL vmlinux 0x615b3a8f reuseport_attach_prog -EXPORT_SYMBOL vmlinux 0x615cd441 dev_pm_opp_unregister_notifier EXPORT_SYMBOL vmlinux 0x6167e72c vmalloc_no_huge -EXPORT_SYMBOL vmlinux 0x61708244 ip_sock_set_tos +EXPORT_SYMBOL vmlinux 0x617589dd lru_cache_add EXPORT_SYMBOL vmlinux 0x617c452b queued_read_lock_slowpath -EXPORT_SYMBOL vmlinux 0x6182203f mark_buffer_dirty EXPORT_SYMBOL vmlinux 0x6185b747 radix_tree_gang_lookup_tag -EXPORT_SYMBOL vmlinux 0x61881aaf __skb_flow_dissect -EXPORT_SYMBOL vmlinux 0x6188be15 mdio_device_remove EXPORT_SYMBOL vmlinux 0x618911fc numa_node EXPORT_SYMBOL vmlinux 0x619cb7dd simple_read_from_buffer -EXPORT_SYMBOL vmlinux 0x61b215cf netdev_state_change +EXPORT_SYMBOL vmlinux 0x61a36239 iov_iter_discard +EXPORT_SYMBOL vmlinux 0x61a5496b inet_frag_destroy +EXPORT_SYMBOL vmlinux 0x61ae3327 phy_modify_paged +EXPORT_SYMBOL vmlinux 0x61b0ce74 kern_unmount_array EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull -EXPORT_SYMBOL vmlinux 0x61cd59dd bio_free_pages -EXPORT_SYMBOL vmlinux 0x61db5cce pcie_get_width_cap -EXPORT_SYMBOL vmlinux 0x61e050cf input_release_device +EXPORT_SYMBOL vmlinux 0x61ca7b0f cdrom_mode_select EXPORT_SYMBOL vmlinux 0x61e272c9 sha256_final EXPORT_SYMBOL vmlinux 0x61ea189b fb_pad_aligned_buffer -EXPORT_SYMBOL vmlinux 0x61fb31e1 inet_frags_fini -EXPORT_SYMBOL vmlinux 0x6201e112 __netif_napi_del -EXPORT_SYMBOL vmlinux 0x6213079e nlmsg_notify EXPORT_SYMBOL vmlinux 0x6214aef2 cpufreq_unregister_notifier -EXPORT_SYMBOL vmlinux 0x6223af21 writeback_inodes_sb EXPORT_SYMBOL vmlinux 0x6228c21f smp_call_function_single -EXPORT_SYMBOL vmlinux 0x6248474e nf_ct_attach -EXPORT_SYMBOL vmlinux 0x6253b6b8 ndo_dflt_fdb_add -EXPORT_SYMBOL vmlinux 0x625bd6bc ilookup -EXPORT_SYMBOL vmlinux 0x6265efab mii_check_link -EXPORT_SYMBOL vmlinux 0x6265f156 pcie_set_readrq -EXPORT_SYMBOL vmlinux 0x62702880 seq_puts EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister -EXPORT_SYMBOL vmlinux 0x6278bc13 pps_event -EXPORT_SYMBOL vmlinux 0x627ce0d0 wireless_spy_update EXPORT_SYMBOL vmlinux 0x62849ac7 dev_valid_name -EXPORT_SYMBOL vmlinux 0x628f2ad2 inet6_ioctl -EXPORT_SYMBOL vmlinux 0x62904ed2 tc_setup_cb_reoffload EXPORT_SYMBOL vmlinux 0x629079b3 dma_fence_signal_timestamp +EXPORT_SYMBOL vmlinux 0x62918cd4 xfrm_policy_byid EXPORT_SYMBOL vmlinux 0x62949074 acpi_buffer_to_resource -EXPORT_SYMBOL vmlinux 0x6296d9b2 __neigh_for_each_release -EXPORT_SYMBOL vmlinux 0x629fefa4 tcp_openreq_init_rwin -EXPORT_SYMBOL vmlinux 0x62a7bbc0 generic_listxattr -EXPORT_SYMBOL vmlinux 0x62aedaa2 _dev_notice +EXPORT_SYMBOL vmlinux 0x629b38f1 register_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x629fa31d mipi_dsi_device_unregister EXPORT_SYMBOL vmlinux 0x62bf6edf utf8agemin -EXPORT_SYMBOL vmlinux 0x62d0270e tso_build_data +EXPORT_SYMBOL vmlinux 0x62c338ff input_setup_polling EXPORT_SYMBOL vmlinux 0x62d96443 qman_dma_portal -EXPORT_SYMBOL vmlinux 0x62e69b59 param_set_uint -EXPORT_SYMBOL vmlinux 0x62f329c8 elv_rb_add +EXPORT_SYMBOL vmlinux 0x62da3f39 from_kgid_munged +EXPORT_SYMBOL vmlinux 0x62e3cf92 generic_iommu_put_resv_regions EXPORT_SYMBOL vmlinux 0x62f7e207 down_read_killable +EXPORT_SYMBOL vmlinux 0x63027a54 pci_prepare_to_sleep EXPORT_SYMBOL vmlinux 0x63187451 pcie_aspm_support_enabled +EXPORT_SYMBOL vmlinux 0x631b78c0 netdev_adjacent_change_abort EXPORT_SYMBOL vmlinux 0x631d06aa cpu_rmap_put -EXPORT_SYMBOL vmlinux 0x63203654 ethtool_notify -EXPORT_SYMBOL vmlinux 0x632c67fc inet_sendmsg -EXPORT_SYMBOL vmlinux 0x63547823 fs_param_is_fd -EXPORT_SYMBOL vmlinux 0x6372e899 __inet_stream_connect +EXPORT_SYMBOL vmlinux 0x63230970 inode_add_bytes +EXPORT_SYMBOL vmlinux 0x63286fad dev_alloc_name +EXPORT_SYMBOL vmlinux 0x633d5051 ps2_command +EXPORT_SYMBOL vmlinux 0x6387cd6b netdev_emerg +EXPORT_SYMBOL vmlinux 0x63926513 skb_eth_pop EXPORT_SYMBOL vmlinux 0x63a58370 flow_action_cookie_destroy EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region -EXPORT_SYMBOL vmlinux 0x63b3b03a max8998_update_reg EXPORT_SYMBOL vmlinux 0x63c4d61f __bitmap_weight -EXPORT_SYMBOL vmlinux 0x63e6b233 clk_get -EXPORT_SYMBOL vmlinux 0x63e8e414 is_subdir -EXPORT_SYMBOL vmlinux 0x63ea3e30 rdmacg_uncharge +EXPORT_SYMBOL vmlinux 0x63d15f64 complete_request_key +EXPORT_SYMBOL vmlinux 0x63d2ce49 fd_install EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink -EXPORT_SYMBOL vmlinux 0x63f023ef nf_register_sockopt -EXPORT_SYMBOL vmlinux 0x63f0f6ec neigh_seq_stop +EXPORT_SYMBOL vmlinux 0x63f470c5 __icmp_send +EXPORT_SYMBOL vmlinux 0x6403d242 migrate_vma_pages +EXPORT_SYMBOL vmlinux 0x6403e5df dev_mc_del_global EXPORT_SYMBOL vmlinux 0x6405dcd3 slhc_toss EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off +EXPORT_SYMBOL vmlinux 0x6417a336 clk_hw_get_clk +EXPORT_SYMBOL vmlinux 0x6429fadb iov_iter_get_pages +EXPORT_SYMBOL vmlinux 0x642cda11 generic_remap_file_range_prep EXPORT_SYMBOL vmlinux 0x642eb5c6 xen_poll_irq_timeout -EXPORT_SYMBOL vmlinux 0x6439845b acpi_bus_register_driver +EXPORT_SYMBOL vmlinux 0x6430f4e0 in_dev_finish_destroy EXPORT_SYMBOL vmlinux 0x643f3068 __tracepoint_spi_transfer_stop +EXPORT_SYMBOL vmlinux 0x644075a5 dev_change_proto_down_generic EXPORT_SYMBOL vmlinux 0x644be12c qman_affine_cpus -EXPORT_SYMBOL vmlinux 0x645350ff tcf_exts_dump -EXPORT_SYMBOL vmlinux 0x64808d8c PageMovable +EXPORT_SYMBOL vmlinux 0x64567a2f fman_bind +EXPORT_SYMBOL vmlinux 0x6463a880 update_region +EXPORT_SYMBOL vmlinux 0x6463bfd8 vfs_path_lookup +EXPORT_SYMBOL vmlinux 0x647b1342 dst_alloc EXPORT_SYMBOL vmlinux 0x6481ffe0 hsiphash_1u32 -EXPORT_SYMBOL vmlinux 0x6484604c tcp_make_synack +EXPORT_SYMBOL vmlinux 0x64846631 scsi_command_normalize_sense +EXPORT_SYMBOL vmlinux 0x64865d0a nexthop_res_grp_activity_update EXPORT_SYMBOL vmlinux 0x648eb59d gc_inflight_list -EXPORT_SYMBOL vmlinux 0x6492cbc5 xfrm_policy_walk +EXPORT_SYMBOL vmlinux 0x64922e28 mdio_device_create EXPORT_SYMBOL vmlinux 0x64999478 congestion_wait -EXPORT_SYMBOL vmlinux 0x64a1d3b8 scsi_register_driver +EXPORT_SYMBOL vmlinux 0x649b183c scsi_set_medium_removal +EXPORT_SYMBOL vmlinux 0x64a278ad dquot_load_quota_inode EXPORT_SYMBOL vmlinux 0x64a9c928 default_blu -EXPORT_SYMBOL vmlinux 0x64b3932a netdev_err -EXPORT_SYMBOL vmlinux 0x64b75744 d_add_ci +EXPORT_SYMBOL vmlinux 0x64ad884b cont_write_begin +EXPORT_SYMBOL vmlinux 0x64b35374 rtnl_notify EXPORT_SYMBOL vmlinux 0x64bbc288 string_unescape -EXPORT_SYMBOL vmlinux 0x64cc942f __skb_warn_lro_forwarding -EXPORT_SYMBOL vmlinux 0x64cf89e3 serio_close -EXPORT_SYMBOL vmlinux 0x64dfc403 pci_request_regions -EXPORT_SYMBOL vmlinux 0x64e4efeb dev_addr_flush +EXPORT_SYMBOL vmlinux 0x64bc2b74 page_pool_alloc_pages +EXPORT_SYMBOL vmlinux 0x64c9c41a blk_pm_runtime_init +EXPORT_SYMBOL vmlinux 0x64cc578d flow_rule_alloc +EXPORT_SYMBOL vmlinux 0x64d1641e 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 0x653356f3 vlan_vids_add_by_dev +EXPORT_SYMBOL vmlinux 0x65307ac9 skb_store_bits EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob EXPORT_SYMBOL vmlinux 0x654449c3 memset16 -EXPORT_SYMBOL vmlinux 0x654e87c4 remove_proc_entry -EXPORT_SYMBOL vmlinux 0x655bbe88 tty_kref_put -EXPORT_SYMBOL vmlinux 0x656802c6 pipe_lock +EXPORT_SYMBOL vmlinux 0x6554ad69 tegra_dfll_unregister +EXPORT_SYMBOL vmlinux 0x6559fbc1 pm860x_reg_write EXPORT_SYMBOL vmlinux 0x656c1a0e string_escape_mem EXPORT_SYMBOL vmlinux 0x656e4a6e snprintf +EXPORT_SYMBOL vmlinux 0x657e01c6 scsi_remove_device +EXPORT_SYMBOL vmlinux 0x6581681b blk_rq_append_bio EXPORT_SYMBOL vmlinux 0x658ce1a8 xxh64_reset -EXPORT_SYMBOL vmlinux 0x659b49f7 page_pool_return_skb_page +EXPORT_SYMBOL vmlinux 0x65985c86 invalidate_inode_buffers EXPORT_SYMBOL vmlinux 0x659ded26 xfrm_flush_gc -EXPORT_SYMBOL vmlinux 0x65a9bfd0 sk_stream_kill_queues +EXPORT_SYMBOL vmlinux 0x65afdbd9 udp_push_pending_frames +EXPORT_SYMBOL vmlinux 0x65beeddb simple_write_begin EXPORT_SYMBOL vmlinux 0x65cf8831 ZSTD_decompress_usingDict EXPORT_SYMBOL vmlinux 0x65d1bab2 acpi_bios_warning EXPORT_SYMBOL vmlinux 0x65d9e877 cpufreq_register_notifier EXPORT_SYMBOL vmlinux 0x65dccf13 xz_dec_end EXPORT_SYMBOL vmlinux 0x65e0d6d7 memory_read_from_buffer -EXPORT_SYMBOL vmlinux 0x65fb4c4d netdev_notice +EXPORT_SYMBOL vmlinux 0x65e399d7 __module_get +EXPORT_SYMBOL vmlinux 0x65eddef4 backlight_device_get_by_type +EXPORT_SYMBOL vmlinux 0x65f7a670 pci_request_selected_regions +EXPORT_SYMBOL vmlinux 0x6623afc9 tcp_sock_set_keepintvl EXPORT_SYMBOL vmlinux 0x6626afca down -EXPORT_SYMBOL vmlinux 0x664afa77 scsi_register_interface EXPORT_SYMBOL vmlinux 0x664b1e29 qman_delete_cgr -EXPORT_SYMBOL vmlinux 0x665560dd pci_scan_bridge -EXPORT_SYMBOL vmlinux 0x6657c8d5 dev_change_carrier -EXPORT_SYMBOL vmlinux 0x665f4792 acpi_get_hp_hw_control_from_firmware -EXPORT_SYMBOL vmlinux 0x666095de pci_bus_write_config_byte +EXPORT_SYMBOL vmlinux 0x664eb7bb __dev_kfree_skb_irq +EXPORT_SYMBOL vmlinux 0x66540551 param_get_byte EXPORT_SYMBOL vmlinux 0x66628bf3 ip_tunnel_metadata_cnt +EXPORT_SYMBOL vmlinux 0x6663de3a set_create_files_as +EXPORT_SYMBOL vmlinux 0x6664e0d2 security_sctp_bind_connect EXPORT_SYMBOL vmlinux 0x666863dc par_io_config_pin +EXPORT_SYMBOL vmlinux 0x666a510c mount_bdev EXPORT_SYMBOL vmlinux 0x6673f96d xxh32_reset -EXPORT_SYMBOL vmlinux 0x667408b9 rtnl_kfree_skbs EXPORT_SYMBOL vmlinux 0x66826f5a xudma_get_ringacc -EXPORT_SYMBOL vmlinux 0x6688027c ip_mc_join_group EXPORT_SYMBOL vmlinux 0x668b19a1 down_read -EXPORT_SYMBOL vmlinux 0x669675b4 tcp_get_cookie_sock -EXPORT_SYMBOL vmlinux 0x66a30533 blk_dump_rq_flags -EXPORT_SYMBOL vmlinux 0x66a3e5db iterate_dir -EXPORT_SYMBOL vmlinux 0x66a6efec jbd2_journal_wipe -EXPORT_SYMBOL vmlinux 0x66adc9aa sock_rfree +EXPORT_SYMBOL vmlinux 0x668f77de inet_csk_delete_keepalive_timer +EXPORT_SYMBOL vmlinux 0x66937b7f fuse_dequeue_forget +EXPORT_SYMBOL vmlinux 0x66a52f8b dma_resv_fini EXPORT_SYMBOL vmlinux 0x66af1fd1 lockref_put_or_lock +EXPORT_SYMBOL vmlinux 0x66af6ab7 locks_lock_inode_wait EXPORT_SYMBOL vmlinux 0x66b4cc41 kmemdup -EXPORT_SYMBOL vmlinux 0x66d4efa6 tcp_peek_len -EXPORT_SYMBOL vmlinux 0x66f7cd13 fs_context_for_reconfigure -EXPORT_SYMBOL vmlinux 0x6704f46c rtnetlink_put_metrics +EXPORT_SYMBOL vmlinux 0x66ba25f3 keyring_search +EXPORT_SYMBOL vmlinux 0x66d76a33 netif_carrier_off +EXPORT_SYMBOL vmlinux 0x67008250 tcp_rcv_state_process +EXPORT_SYMBOL vmlinux 0x6705d15c dev_set_mac_address_user +EXPORT_SYMBOL vmlinux 0x6705e1c4 timestamp_truncate +EXPORT_SYMBOL vmlinux 0x6714a3d5 elv_rb_add EXPORT_SYMBOL vmlinux 0x6721fc7c security_cred_getsecid +EXPORT_SYMBOL vmlinux 0x672a5835 __of_get_address +EXPORT_SYMBOL vmlinux 0x673ab11e eth_header EXPORT_SYMBOL vmlinux 0x67412d2f ucc_slow_enable +EXPORT_SYMBOL vmlinux 0x67435bd1 ip6_output EXPORT_SYMBOL vmlinux 0x6749d53f hdmi_vendor_infoframe_init -EXPORT_SYMBOL vmlinux 0x67500cd5 filemap_invalidate_unlock_two -EXPORT_SYMBOL vmlinux 0x675dcdb0 sk_alloc -EXPORT_SYMBOL vmlinux 0x67732a20 alloc_fcdev -EXPORT_SYMBOL vmlinux 0x677defc4 pci_save_state -EXPORT_SYMBOL vmlinux 0x67812c03 register_key_type +EXPORT_SYMBOL vmlinux 0x676fa885 nobh_write_end +EXPORT_SYMBOL vmlinux 0x67767fbe kernel_sendpage +EXPORT_SYMBOL vmlinux 0x677c4fce mipi_dsi_dcs_read +EXPORT_SYMBOL vmlinux 0x677d9506 xsk_get_pool_from_qid +EXPORT_SYMBOL vmlinux 0x67815cdd skb_copy_and_csum_datagram_msg EXPORT_SYMBOL vmlinux 0x678b96ec dma_pool_alloc -EXPORT_SYMBOL vmlinux 0x6791a180 xfrm_trans_queue -EXPORT_SYMBOL vmlinux 0x679ffabf of_get_next_child -EXPORT_SYMBOL vmlinux 0x67a3d73b mipi_dsi_dcs_set_tear_off +EXPORT_SYMBOL vmlinux 0x6791496c request_key_tag EXPORT_SYMBOL vmlinux 0x67b27ec1 tty_std_termios EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu EXPORT_SYMBOL vmlinux 0x67c13ea0 acpi_read -EXPORT_SYMBOL vmlinux 0x67c9bd9f __traceiter_spi_transfer_start -EXPORT_SYMBOL vmlinux 0x67ddbe62 alloc_file_pseudo -EXPORT_SYMBOL vmlinux 0x67ed3524 serio_bus -EXPORT_SYMBOL vmlinux 0x67efbd33 security_sk_clone -EXPORT_SYMBOL vmlinux 0x67fd56de key_unlink +EXPORT_SYMBOL vmlinux 0x67c39de0 acpi_notifier_call_chain +EXPORT_SYMBOL vmlinux 0x67cd40cf rtc_add_groups +EXPORT_SYMBOL vmlinux 0x67ce8922 phy_do_ioctl_running +EXPORT_SYMBOL vmlinux 0x67f2f825 rproc_shutdown +EXPORT_SYMBOL vmlinux 0x67f461d7 d_delete +EXPORT_SYMBOL vmlinux 0x68167424 sk_capable +EXPORT_SYMBOL vmlinux 0x6818d538 __ps2_command EXPORT_SYMBOL vmlinux 0x681b6670 is_firmware_framebuffer -EXPORT_SYMBOL vmlinux 0x682044fd ps2_sendbyte -EXPORT_SYMBOL vmlinux 0x68341a9b tcf_unregister_action -EXPORT_SYMBOL vmlinux 0x68346162 try_to_release_page -EXPORT_SYMBOL vmlinux 0x683a0737 tcp_child_process +EXPORT_SYMBOL vmlinux 0x6839b0a4 inet_addr_type EXPORT_SYMBOL vmlinux 0x683a9560 __gnet_stats_copy_basic -EXPORT_SYMBOL vmlinux 0x685387e7 module_put -EXPORT_SYMBOL vmlinux 0x6862358a set_create_files_as -EXPORT_SYMBOL vmlinux 0x686ef52c netdev_pick_tx -EXPORT_SYMBOL vmlinux 0x6871117a input_close_device -EXPORT_SYMBOL vmlinux 0x68727697 kset_unregister +EXPORT_SYMBOL vmlinux 0x683edcd4 xp_raw_get_data +EXPORT_SYMBOL vmlinux 0x68461be8 pipe_lock +EXPORT_SYMBOL vmlinux 0x68557dfc phy_init_hw +EXPORT_SYMBOL vmlinux 0x6869754d dput EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval -EXPORT_SYMBOL vmlinux 0x687ebf2e vfs_clone_file_range -EXPORT_SYMBOL vmlinux 0x688ad714 dquot_commit_info -EXPORT_SYMBOL vmlinux 0x689a0975 param_ops_bool -EXPORT_SYMBOL vmlinux 0x68bd79a5 generic_iommu_put_resv_regions -EXPORT_SYMBOL vmlinux 0x68f255c3 tegra_ivc_reset +EXPORT_SYMBOL vmlinux 0x687d40dd __dev_direct_xmit +EXPORT_SYMBOL vmlinux 0x688d092a d_invalidate +EXPORT_SYMBOL vmlinux 0x68953fcf mmc_add_host +EXPORT_SYMBOL vmlinux 0x68b56f7b sock_init_data +EXPORT_SYMBOL vmlinux 0x68ca0f93 tty_unregister_device +EXPORT_SYMBOL vmlinux 0x68f1a103 amba_device_register EXPORT_SYMBOL vmlinux 0x68fb581a icst307_idx2s EXPORT_SYMBOL vmlinux 0x69049cd2 radix_tree_replace_slot +EXPORT_SYMBOL vmlinux 0x690f17fd make_kgid EXPORT_SYMBOL vmlinux 0x6917a77e __traceiter_kmem_cache_free -EXPORT_SYMBOL vmlinux 0x6923612b scmd_printk -EXPORT_SYMBOL vmlinux 0x6930bc56 vmalloc_to_page -EXPORT_SYMBOL vmlinux 0x6945a9ea phy_connect -EXPORT_SYMBOL vmlinux 0x6950c23a mount_single +EXPORT_SYMBOL vmlinux 0x69196a1f md_write_inc +EXPORT_SYMBOL vmlinux 0x69287a9a pskb_trim_rcsum_slow +EXPORT_SYMBOL vmlinux 0x692cfb77 jbd2_journal_check_available_features +EXPORT_SYMBOL vmlinux 0x692da6bf sdev_prefix_printk +EXPORT_SYMBOL vmlinux 0x694421ed of_graph_get_remote_endpoint EXPORT_SYMBOL vmlinux 0x69585523 __ksize +EXPORT_SYMBOL vmlinux 0x695e8582 acpi_mdiobus_register EXPORT_SYMBOL vmlinux 0x69668826 netdev_increment_features -EXPORT_SYMBOL vmlinux 0x696d4d88 clkdev_drop -EXPORT_SYMBOL vmlinux 0x696f80da peernet2id EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days +EXPORT_SYMBOL vmlinux 0x6971e6ca pagecache_isize_extended +EXPORT_SYMBOL vmlinux 0x6974f1ea md_wakeup_thread +EXPORT_SYMBOL vmlinux 0x697e3e6d _dev_emerg EXPORT_SYMBOL vmlinux 0x697ed5f0 memcpy_and_pad -EXPORT_SYMBOL vmlinux 0x698c1404 vme_irq_handler -EXPORT_SYMBOL vmlinux 0x69b1a90d jbd2_journal_destroy -EXPORT_SYMBOL vmlinux 0x69b967ba pldmfw_op_pci_match_record +EXPORT_SYMBOL vmlinux 0x6998785b build_skb +EXPORT_SYMBOL vmlinux 0x69989ad9 pcim_pin_device +EXPORT_SYMBOL vmlinux 0x69ac629c devm_ioremap_wc +EXPORT_SYMBOL vmlinux 0x69b63ca9 skb_tunnel_check_pmtu EXPORT_SYMBOL vmlinux 0x69d53cbc posix_acl_from_xattr +EXPORT_SYMBOL vmlinux 0x69d5432b devm_pci_remap_iospace EXPORT_SYMBOL vmlinux 0x69dd3b5b crc32_le +EXPORT_SYMBOL vmlinux 0x69de3bb5 nd_pfn_validate EXPORT_SYMBOL vmlinux 0x69de8757 vme_check_window -EXPORT_SYMBOL vmlinux 0x69eae6f3 __pskb_pull_tail -EXPORT_SYMBOL vmlinux 0x69f80db8 block_write_full_page +EXPORT_SYMBOL vmlinux 0x69f26535 phys_mem_access_prot EXPORT_SYMBOL vmlinux 0x6a03751f sgl_free_order EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree -EXPORT_SYMBOL vmlinux 0x6a075197 inc_node_page_state -EXPORT_SYMBOL vmlinux 0x6a08bf3c tcf_idr_release -EXPORT_SYMBOL vmlinux 0x6a19c1f8 inet_rcv_saddr_equal +EXPORT_SYMBOL vmlinux 0x6a05b0fe napi_consume_skb +EXPORT_SYMBOL vmlinux 0x6a36d14e udp6_set_csum EXPORT_SYMBOL vmlinux 0x6a3766b2 qman_delete_cgr_safe EXPORT_SYMBOL vmlinux 0x6a449c4f register_sysctl_table -EXPORT_SYMBOL vmlinux 0x6a512931 eth_platform_get_mac_address EXPORT_SYMBOL vmlinux 0x6a5cb5ee __get_free_pages EXPORT_SYMBOL vmlinux 0x6a5ecb18 unregister_module_notifier +EXPORT_SYMBOL vmlinux 0x6a5f0ba3 ppp_register_net_channel EXPORT_SYMBOL vmlinux 0x6a5fa363 sigprocmask -EXPORT_SYMBOL vmlinux 0x6a68bbe9 __ClearPageMovable +EXPORT_SYMBOL vmlinux 0x6a640350 pci_request_regions EXPORT_SYMBOL vmlinux 0x6a6e05bf kstrtou8 -EXPORT_SYMBOL vmlinux 0x6a7ad7ca reuseport_detach_sock -EXPORT_SYMBOL vmlinux 0x6a83d8c1 from_kuid -EXPORT_SYMBOL vmlinux 0x6a8a0efa dev_loopback_xmit +EXPORT_SYMBOL vmlinux 0x6a7f8504 i2c_smbus_write_block_data EXPORT_SYMBOL vmlinux 0x6a90663a qman_schedule_fq +EXPORT_SYMBOL vmlinux 0x6a92b692 mmc_can_trim EXPORT_SYMBOL vmlinux 0x6aa11aa6 sgl_free_n_order -EXPORT_SYMBOL vmlinux 0x6aa2e230 netdev_lower_dev_get_private -EXPORT_SYMBOL vmlinux 0x6aab4f1d netlink_net_capable -EXPORT_SYMBOL vmlinux 0x6ac8edb9 pci_wait_for_pending_transaction -EXPORT_SYMBOL vmlinux 0x6acbc8a4 tcp_select_initial_window +EXPORT_SYMBOL vmlinux 0x6aba4966 simple_pin_fs +EXPORT_SYMBOL vmlinux 0x6acd3cbe dev_change_carrier +EXPORT_SYMBOL vmlinux 0x6ad8426c pci_remove_bus EXPORT_SYMBOL vmlinux 0x6add5c9a dmi_find_device +EXPORT_SYMBOL vmlinux 0x6ae917f0 configfs_unregister_default_group EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset -EXPORT_SYMBOL vmlinux 0x6b249620 unpin_user_pages_dirty_lock +EXPORT_SYMBOL vmlinux 0x6aef5f6b serio_unregister_driver +EXPORT_SYMBOL vmlinux 0x6b08e2e6 dquot_release +EXPORT_SYMBOL vmlinux 0x6b0b4185 pci_wait_for_pending_transaction EXPORT_SYMBOL vmlinux 0x6b27729b radix_tree_gang_lookup -EXPORT_SYMBOL vmlinux 0x6b2be428 tcp_enter_quickack_mode EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack -EXPORT_SYMBOL vmlinux 0x6b2fdbde writeback_inodes_sb_nr -EXPORT_SYMBOL vmlinux 0x6b319dd3 xp_dma_unmap -EXPORT_SYMBOL vmlinux 0x6b3309cd pci_claim_resource -EXPORT_SYMBOL vmlinux 0x6b44cc8b mmc_sw_reset EXPORT_SYMBOL vmlinux 0x6b4b2933 __ioremap -EXPORT_SYMBOL vmlinux 0x6b4cc0db pm860x_reg_write -EXPORT_SYMBOL vmlinux 0x6b4d5879 skb_checksum_setup EXPORT_SYMBOL vmlinux 0x6b55acd0 rtnl_lock_killable -EXPORT_SYMBOL vmlinux 0x6b7586fd tc_cleanup_flow_action -EXPORT_SYMBOL vmlinux 0x6b7b95f3 d_alloc +EXPORT_SYMBOL vmlinux 0x6b756bb1 remove_watch_from_object EXPORT_SYMBOL vmlinux 0x6b853d06 ns_to_kernel_old_timeval EXPORT_SYMBOL vmlinux 0x6b8bf149 netif_receive_skb_list EXPORT_SYMBOL vmlinux 0x6b9d1c95 security_req_classify_flow -EXPORT_SYMBOL vmlinux 0x6ba5f7fa key_invalidate -EXPORT_SYMBOL vmlinux 0x6bbd2876 dm_table_event EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev +EXPORT_SYMBOL vmlinux 0x6bca0c23 rtc_add_group +EXPORT_SYMBOL vmlinux 0x6bcad97d blk_mq_run_hw_queues EXPORT_SYMBOL vmlinux 0x6bd0e573 down_interruptible -EXPORT_SYMBOL vmlinux 0x6bd5d213 mr_fill_mroute -EXPORT_SYMBOL vmlinux 0x6bd8d252 pci_assign_resource EXPORT_SYMBOL vmlinux 0x6be1c1f8 acpi_install_method EXPORT_SYMBOL vmlinux 0x6bf181c1 __tracepoint_kmem_cache_free -EXPORT_SYMBOL vmlinux 0x6bf42b9a memory_cgrp_subsys -EXPORT_SYMBOL vmlinux 0x6bfd2d69 netlink_ns_capable +EXPORT_SYMBOL vmlinux 0x6bf1de43 simple_dentry_operations +EXPORT_SYMBOL vmlinux 0x6bf4baef unix_get_socket +EXPORT_SYMBOL vmlinux 0x6bf66e41 netdev_crit +EXPORT_SYMBOL vmlinux 0x6c053411 scsi_register_driver +EXPORT_SYMBOL vmlinux 0x6c067fc5 migrate_vma_finalize +EXPORT_SYMBOL vmlinux 0x6c083f77 rtnetlink_put_metrics +EXPORT_SYMBOL vmlinux 0x6c13b78f tcp_openreq_init_rwin +EXPORT_SYMBOL vmlinux 0x6c1eda08 dev_uc_del EXPORT_SYMBOL vmlinux 0x6c224cda gen_pool_destroy EXPORT_SYMBOL vmlinux 0x6c257ac0 tty_termios_hw_change -EXPORT_SYMBOL vmlinux 0x6c49fe25 tc_setup_cb_replace -EXPORT_SYMBOL vmlinux 0x6c4c3084 submit_bio +EXPORT_SYMBOL vmlinux 0x6c2a95c9 devm_of_iomap +EXPORT_SYMBOL vmlinux 0x6c341c73 tty_insert_flip_string_flags +EXPORT_SYMBOL vmlinux 0x6c3a3bf3 tcp_mtup_init +EXPORT_SYMBOL vmlinux 0x6c45a538 consume_skb +EXPORT_SYMBOL vmlinux 0x6c49ba09 dev_mc_add_excl +EXPORT_SYMBOL vmlinux 0x6c507b5b jbd2_journal_blocks_per_page EXPORT_SYMBOL vmlinux 0x6c5dae23 scsi_kmap_atomic_sg EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb -EXPORT_SYMBOL vmlinux 0x6c6fc120 stop_tty -EXPORT_SYMBOL vmlinux 0x6c713943 phy_drivers_unregister EXPORT_SYMBOL vmlinux 0x6c7a0323 __tracepoint_kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0x6c7b5e81 ndisc_mc_map -EXPORT_SYMBOL vmlinux 0x6c8003cb request_key_tag +EXPORT_SYMBOL vmlinux 0x6ca0d967 __mod_node_page_state EXPORT_SYMBOL vmlinux 0x6cb46525 netlbl_catmap_walk +EXPORT_SYMBOL vmlinux 0x6cb8399f ndo_dflt_fdb_del EXPORT_SYMBOL vmlinux 0x6cbbfc54 __arch_copy_to_user -EXPORT_SYMBOL vmlinux 0x6cd4ff4b get_tree_keyed -EXPORT_SYMBOL vmlinux 0x6cd9bd73 gnet_stats_finish_copy -EXPORT_SYMBOL vmlinux 0x6ce4b946 ip_sock_set_recverr -EXPORT_SYMBOL vmlinux 0x6ce9a780 register_netdev +EXPORT_SYMBOL vmlinux 0x6cc43223 pci_enable_msi +EXPORT_SYMBOL vmlinux 0x6ccdee2b dquot_set_dqinfo +EXPORT_SYMBOL vmlinux 0x6ce66ca4 input_mt_report_pointer_emulation +EXPORT_SYMBOL vmlinux 0x6ceb9b7c input_mt_assign_slots EXPORT_SYMBOL vmlinux 0x6cf0d67d qe_get_num_of_snums -EXPORT_SYMBOL vmlinux 0x6cfd549d simple_get_link -EXPORT_SYMBOL vmlinux 0x6d0f862a super_setup_bdi_name +EXPORT_SYMBOL vmlinux 0x6d0b23f2 end_page_private_2 EXPORT_SYMBOL vmlinux 0x6d16c104 mutex_lock_killable +EXPORT_SYMBOL vmlinux 0x6d1f4a90 security_task_getsecid_obj EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies EXPORT_SYMBOL vmlinux 0x6d340f64 tty_termios_input_baud_rate -EXPORT_SYMBOL vmlinux 0x6d5b9811 configfs_register_subsystem -EXPORT_SYMBOL vmlinux 0x6d5e1d03 of_translate_dma_address +EXPORT_SYMBOL vmlinux 0x6d432a17 sock_pfree +EXPORT_SYMBOL vmlinux 0x6d56b574 inet_frag_queue_insert EXPORT_SYMBOL vmlinux 0x6d5f5b91 radix_tree_tagged +EXPORT_SYMBOL vmlinux 0x6d6ab71b padata_free_shell +EXPORT_SYMBOL vmlinux 0x6d7157cf tcp_v4_conn_request EXPORT_SYMBOL vmlinux 0x6d73c95f logic_outw -EXPORT_SYMBOL vmlinux 0x6d771b39 tcp_splice_read EXPORT_SYMBOL vmlinux 0x6d7c7dcc bitmap_cut -EXPORT_SYMBOL vmlinux 0x6d800e10 write_inode_now -EXPORT_SYMBOL vmlinux 0x6d838a68 gro_find_receive_by_type -EXPORT_SYMBOL vmlinux 0x6d9286eb rproc_add_subdev -EXPORT_SYMBOL vmlinux 0x6d96dc51 flow_block_cb_incref +EXPORT_SYMBOL vmlinux 0x6d8246f6 t10_pi_type1_ip +EXPORT_SYMBOL vmlinux 0x6d84df1e input_mt_drop_unused +EXPORT_SYMBOL vmlinux 0x6d8dd950 inet6_ioctl +EXPORT_SYMBOL vmlinux 0x6da35599 of_iomap EXPORT_SYMBOL vmlinux 0x6da467cb pfn_is_map_memory -EXPORT_SYMBOL vmlinux 0x6daf3172 devm_request_threaded_irq -EXPORT_SYMBOL vmlinux 0x6db0d5b0 register_cdrom -EXPORT_SYMBOL vmlinux 0x6db892f0 ip_mc_leave_group +EXPORT_SYMBOL vmlinux 0x6da8a53d xfrm_state_flush +EXPORT_SYMBOL vmlinux 0x6db2b3c3 sock_no_connect EXPORT_SYMBOL vmlinux 0x6dc35b25 radix_tree_iter_delete EXPORT_SYMBOL vmlinux 0x6dcf857f uuid_null EXPORT_SYMBOL vmlinux 0x6dd17e7b acpi_get_table_header -EXPORT_SYMBOL vmlinux 0x6dd40a67 jbd2_journal_flush +EXPORT_SYMBOL vmlinux 0x6dd24e85 tcf_em_tree_validate +EXPORT_SYMBOL vmlinux 0x6ddee9ef generic_fadvise EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction -EXPORT_SYMBOL vmlinux 0x6df50a90 tty_driver_kref_put -EXPORT_SYMBOL vmlinux 0x6e0631f7 __get_hash_from_flowi6 -EXPORT_SYMBOL vmlinux 0x6e123b8d skb_copy_expand -EXPORT_SYMBOL vmlinux 0x6e28bd63 pnpacpi_protocol +EXPORT_SYMBOL vmlinux 0x6df2bceb __sk_mem_reduce_allocated +EXPORT_SYMBOL vmlinux 0x6e01bec2 netlink_ns_capable +EXPORT_SYMBOL vmlinux 0x6e1a4cb1 twl6040_reg_read +EXPORT_SYMBOL vmlinux 0x6e267bf6 blk_mq_end_request +EXPORT_SYMBOL vmlinux 0x6e40c75b proto_unregister +EXPORT_SYMBOL vmlinux 0x6e5a199f make_kuid +EXPORT_SYMBOL vmlinux 0x6e5a1ca8 i2c_smbus_write_byte +EXPORT_SYMBOL vmlinux 0x6e5a27f3 write_one_page EXPORT_SYMBOL vmlinux 0x6e5b8651 xz_dec_run +EXPORT_SYMBOL vmlinux 0x6e63b09a md_bitmap_end_sync +EXPORT_SYMBOL vmlinux 0x6e6b3ce7 tcp_md5_hash_skb_data EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock -EXPORT_SYMBOL vmlinux 0x6e7d6fc7 netdev_adjacent_change_prepare -EXPORT_SYMBOL vmlinux 0x6e9692cf send_sig_mceerr -EXPORT_SYMBOL vmlinux 0x6e989ad4 netdev_class_remove_file_ns -EXPORT_SYMBOL vmlinux 0x6e9b7a19 __blockdev_direct_IO +EXPORT_SYMBOL vmlinux 0x6e853957 dev_mc_sync_multiple +EXPORT_SYMBOL vmlinux 0x6e894386 qdisc_class_hash_grow +EXPORT_SYMBOL vmlinux 0x6e98c7a0 pci_restore_state +EXPORT_SYMBOL vmlinux 0x6e9a0398 tcp_v4_md5_lookup EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put +EXPORT_SYMBOL vmlinux 0x6e9e8fb0 get_ipc_ns_exported EXPORT_SYMBOL vmlinux 0x6ea9363b force_sig -EXPORT_SYMBOL vmlinux 0x6eb3b98b in_dev_finish_destroy -EXPORT_SYMBOL vmlinux 0x6ec1d3ff invalidate_inode_buffers -EXPORT_SYMBOL vmlinux 0x6ec6f7ae __ip_queue_xmit -EXPORT_SYMBOL vmlinux 0x6edd19f1 inet_proto_csum_replace_by_diff -EXPORT_SYMBOL vmlinux 0x6ef2f926 flow_rule_match_icmp -EXPORT_SYMBOL vmlinux 0x6f1c63c5 pci_scan_single_device -EXPORT_SYMBOL vmlinux 0x6f205d88 tcp_prot -EXPORT_SYMBOL vmlinux 0x6f22decf __dev_set_mtu -EXPORT_SYMBOL vmlinux 0x6f396ee1 netdev_bind_sb_channel_queue +EXPORT_SYMBOL vmlinux 0x6ee3a217 io_uring_get_socket +EXPORT_SYMBOL vmlinux 0x6efd9946 mmc_of_parse_clk_phase +EXPORT_SYMBOL vmlinux 0x6eff5ff6 proc_set_user +EXPORT_SYMBOL vmlinux 0x6f36771f pci_disable_msix +EXPORT_SYMBOL vmlinux 0x6f3e020a ipv6_dev_mc_dec EXPORT_SYMBOL vmlinux 0x6f41a428 acpi_get_vendor_resource -EXPORT_SYMBOL vmlinux 0x6f4498b1 of_find_matching_node_and_match -EXPORT_SYMBOL vmlinux 0x6f499e9d tso_build_hdr -EXPORT_SYMBOL vmlinux 0x6f4ce904 scsi_track_queue_full -EXPORT_SYMBOL vmlinux 0x6f4fd3bf elv_rb_del +EXPORT_SYMBOL vmlinux 0x6f47634c nf_log_unset EXPORT_SYMBOL vmlinux 0x6f5ab52f acpi_get_local_address -EXPORT_SYMBOL vmlinux 0x6f793d5c i2c_register_driver -EXPORT_SYMBOL vmlinux 0x6f8a87fd blk_pm_runtime_init -EXPORT_SYMBOL vmlinux 0x6f8b63fc ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0x6f5d4913 netpoll_send_udp +EXPORT_SYMBOL vmlinux 0x6f6993e7 of_find_all_nodes +EXPORT_SYMBOL vmlinux 0x6f738bf2 inet6_add_protocol EXPORT_SYMBOL vmlinux 0x6f8f674a bpf_dispatcher_xdp_func +EXPORT_SYMBOL vmlinux 0x6f8fa28a skb_dequeue EXPORT_SYMBOL vmlinux 0x6f915a45 dqstats -EXPORT_SYMBOL vmlinux 0x6fa6972c kern_unmount_array +EXPORT_SYMBOL vmlinux 0x6f9a9337 __seq_open_private EXPORT_SYMBOL vmlinux 0x6fb49676 queue_rcu_work -EXPORT_SYMBOL vmlinux 0x6fbb680f ptp_clock_index +EXPORT_SYMBOL vmlinux 0x6fb567c7 tcf_unregister_action EXPORT_SYMBOL vmlinux 0x6fbc6a00 radix_tree_insert EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog EXPORT_SYMBOL vmlinux 0x6fd9c35a __clzdi2 -EXPORT_SYMBOL vmlinux 0x6feb1ab1 ip_do_fragment +EXPORT_SYMBOL vmlinux 0x6fe84a15 put_cmsg_scm_timestamping64 +EXPORT_SYMBOL vmlinux 0x6fec5532 input_set_min_poll_interval +EXPORT_SYMBOL vmlinux 0x6ff32113 nf_log_register +EXPORT_SYMBOL vmlinux 0x6ffedd9d __hw_addr_unsync_dev EXPORT_SYMBOL vmlinux 0x6fff261f __arch_clear_user +EXPORT_SYMBOL vmlinux 0x6fffb048 pci_get_device EXPORT_SYMBOL vmlinux 0x70002fe8 siphash_1u32 -EXPORT_SYMBOL vmlinux 0x7021f2ec blk_queue_max_segments +EXPORT_SYMBOL vmlinux 0x70080cdf reuseport_stop_listen_sock +EXPORT_SYMBOL vmlinux 0x700a159a sg_miter_stop +EXPORT_SYMBOL vmlinux 0x70193925 bdev_check_media_change +EXPORT_SYMBOL vmlinux 0x701b62dd inode_newsize_ok +EXPORT_SYMBOL vmlinux 0x70213ff9 fscrypt_zeroout_range EXPORT_SYMBOL vmlinux 0x7023bea8 unregister_acpi_notifier EXPORT_SYMBOL vmlinux 0x702946da ucs2_strlen -EXPORT_SYMBOL vmlinux 0x703ca4a1 __insert_inode_hash -EXPORT_SYMBOL vmlinux 0x704e87e0 d_mark_dontcache -EXPORT_SYMBOL vmlinux 0x704f45ad inode_permission -EXPORT_SYMBOL vmlinux 0x7054fdd6 dma_sync_single_for_cpu -EXPORT_SYMBOL vmlinux 0x706337c0 param_ops_ullong -EXPORT_SYMBOL vmlinux 0x706ed630 block_read_full_page -EXPORT_SYMBOL vmlinux 0x70775270 bdev_read_only -EXPORT_SYMBOL vmlinux 0x708df4c3 copy_page_to_iter -EXPORT_SYMBOL vmlinux 0x708f90fe __icmp_send -EXPORT_SYMBOL vmlinux 0x709a64d7 xp_raw_get_dma -EXPORT_SYMBOL vmlinux 0x70a67e89 __breadahead +EXPORT_SYMBOL vmlinux 0x705e7c68 kmem_cache_alloc_trace +EXPORT_SYMBOL vmlinux 0x707089cd nosteal_pipe_buf_ops +EXPORT_SYMBOL vmlinux 0x70726b64 iterate_supers_type +EXPORT_SYMBOL vmlinux 0x70753e4a empty_aops +EXPORT_SYMBOL vmlinux 0x707901b5 param_get_charp EXPORT_SYMBOL vmlinux 0x70ad75fb radix_tree_lookup -EXPORT_SYMBOL vmlinux 0x70bc4d0f tcp_seq_start -EXPORT_SYMBOL vmlinux 0x70c83a3a bdi_alloc +EXPORT_SYMBOL vmlinux 0x70c6aa63 mmc_card_alternative_gpt_sector EXPORT_SYMBOL vmlinux 0x70d1a18e qman_release_pool -EXPORT_SYMBOL vmlinux 0x70e4a526 filemap_write_and_wait_range -EXPORT_SYMBOL vmlinux 0x70f4d71f vme_register_error_handler -EXPORT_SYMBOL vmlinux 0x70f602b6 ip6_dst_alloc -EXPORT_SYMBOL vmlinux 0x710f4c18 __inode_sub_bytes -EXPORT_SYMBOL vmlinux 0x71135be5 nf_ip_checksum -EXPORT_SYMBOL vmlinux 0x71243a44 submit_bio_wait +EXPORT_SYMBOL vmlinux 0x70d8e26d file_path +EXPORT_SYMBOL vmlinux 0x70fc33d1 scsi_remove_target +EXPORT_SYMBOL vmlinux 0x71111283 tcf_get_next_chain EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc -EXPORT_SYMBOL vmlinux 0x7140403f dquot_quotactl_sysfile_ops +EXPORT_SYMBOL vmlinux 0x713449e6 ip6_frag_next EXPORT_SYMBOL vmlinux 0x7141b88a logic_insb -EXPORT_SYMBOL vmlinux 0x7159008f console_stop EXPORT_SYMBOL vmlinux 0x715a5ed0 vprintk -EXPORT_SYMBOL vmlinux 0x715f9998 fb_get_mode +EXPORT_SYMBOL vmlinux 0x716ad32e fb_prepare_logo EXPORT_SYMBOL vmlinux 0x7171121c overflowgid -EXPORT_SYMBOL vmlinux 0x7173a7f8 pci_scan_slot -EXPORT_SYMBOL vmlinux 0x71899c66 iptun_encaps -EXPORT_SYMBOL vmlinux 0x71905ae9 simple_transaction_read -EXPORT_SYMBOL vmlinux 0x719586f7 da903x_query_status -EXPORT_SYMBOL vmlinux 0x719a9952 par_io_of_config -EXPORT_SYMBOL vmlinux 0x719f12c8 ip_route_me_harder EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy -EXPORT_SYMBOL vmlinux 0x71d9b475 phy_ethtool_set_wol EXPORT_SYMBOL vmlinux 0x71dfc095 acpi_walk_resources -EXPORT_SYMBOL vmlinux 0x71e3b59e netpoll_parse_options -EXPORT_SYMBOL vmlinux 0x71ff5546 fb_set_cmap +EXPORT_SYMBOL vmlinux 0x71e66f73 inet_ioctl +EXPORT_SYMBOL vmlinux 0x71f3991c netif_rx_ni EXPORT_SYMBOL vmlinux 0x720a27a7 __register_blkdev -EXPORT_SYMBOL vmlinux 0x7215c0ef t10_pi_type3_crc +EXPORT_SYMBOL vmlinux 0x72352b2e i2c_clients_command +EXPORT_SYMBOL vmlinux 0x7238fb9e phy_attached_print +EXPORT_SYMBOL vmlinux 0x7240795f phy_read_paged EXPORT_SYMBOL vmlinux 0x724ddac7 utf8version_is_supported -EXPORT_SYMBOL vmlinux 0x724f577a sock_gettstamp -EXPORT_SYMBOL vmlinux 0x726534b8 phy_modify_paged_changed -EXPORT_SYMBOL vmlinux 0x7265d709 security_sb_remount -EXPORT_SYMBOL vmlinux 0x726a874c kobject_get_unless_zero +EXPORT_SYMBOL vmlinux 0x724e8b33 mfd_remove_devices_late +EXPORT_SYMBOL vmlinux 0x72517f2d genphy_suspend +EXPORT_SYMBOL vmlinux 0x72532028 bio_integrity_trim +EXPORT_SYMBOL vmlinux 0x72680111 prepare_to_swait_exclusive +EXPORT_SYMBOL vmlinux 0x726a4424 tty_port_hangup EXPORT_SYMBOL vmlinux 0x726bc3c7 wait_for_completion_killable_timeout -EXPORT_SYMBOL vmlinux 0x727ea96b dma_unmap_resource -EXPORT_SYMBOL vmlinux 0x7292ef93 d_lookup +EXPORT_SYMBOL vmlinux 0x726db4fc ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0x7273bece input_set_capability +EXPORT_SYMBOL vmlinux 0x728764dc fs_param_is_u64 EXPORT_SYMBOL vmlinux 0x72a50966 ucc_fast_disable -EXPORT_SYMBOL vmlinux 0x72aff760 brioctl_set EXPORT_SYMBOL vmlinux 0x72b9d287 default_grn -EXPORT_SYMBOL vmlinux 0x72bc9e0a i2c_smbus_read_byte -EXPORT_SYMBOL vmlinux 0x72c4f1b3 blk_mq_start_hw_queue -EXPORT_SYMBOL vmlinux 0x72cd7bb5 init_net -EXPORT_SYMBOL vmlinux 0x72e57453 skb_kill_datagram +EXPORT_SYMBOL vmlinux 0x72cbb07b xsk_set_tx_need_wakeup +EXPORT_SYMBOL vmlinux 0x72e92883 scsi_target_quiesce +EXPORT_SYMBOL vmlinux 0x72ea3f38 __netlink_kernel_create EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type EXPORT_SYMBOL vmlinux 0x72f14ff7 acpi_get_object_info -EXPORT_SYMBOL vmlinux 0x72f9e87e kobject_put -EXPORT_SYMBOL vmlinux 0x7310f2d7 key_move +EXPORT_SYMBOL vmlinux 0x72f6e577 md_cluster_ops +EXPORT_SYMBOL vmlinux 0x72fdf7c6 d_find_any_alias +EXPORT_SYMBOL vmlinux 0x730b2295 phy_do_ioctl +EXPORT_SYMBOL vmlinux 0x7312e879 __module_put_and_exit +EXPORT_SYMBOL vmlinux 0x7313cf40 netdev_has_any_upper_dev +EXPORT_SYMBOL vmlinux 0x73157b18 devfreq_remove_governor 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 0x731f5106 pcim_iomap_table -EXPORT_SYMBOL vmlinux 0x732c855e __scm_destroy EXPORT_SYMBOL vmlinux 0x732dd326 groups_free -EXPORT_SYMBOL vmlinux 0x732f0969 pci_read_config_word -EXPORT_SYMBOL vmlinux 0x7345275e tty_schedule_flip -EXPORT_SYMBOL vmlinux 0x7353ca0b serial8250_do_set_termios -EXPORT_SYMBOL vmlinux 0x735a3b63 blk_mq_tagset_busy_iter +EXPORT_SYMBOL vmlinux 0x732eeb02 __xfrm_init_state +EXPORT_SYMBOL vmlinux 0x733b6cc6 of_get_compatible_child +EXPORT_SYMBOL vmlinux 0x73508bb0 neigh_carrier_down +EXPORT_SYMBOL vmlinux 0x735a7b70 page_symlink EXPORT_SYMBOL vmlinux 0x735e6a81 acpi_evaluate_integer +EXPORT_SYMBOL vmlinux 0x7370a8f2 cdev_alloc EXPORT_SYMBOL vmlinux 0x7380dffa argv_split -EXPORT_SYMBOL vmlinux 0x7387e503 redirty_page_for_writepage +EXPORT_SYMBOL vmlinux 0x7394e2c5 single_open EXPORT_SYMBOL vmlinux 0x73998efa cpm_muram_free_addr EXPORT_SYMBOL vmlinux 0x739fd00f __SCK__tp_func_module_get -EXPORT_SYMBOL vmlinux 0x73a711cd eth_header EXPORT_SYMBOL vmlinux 0x73abb180 alloc_contig_range -EXPORT_SYMBOL vmlinux 0x73bf08af tcf_idr_search -EXPORT_SYMBOL vmlinux 0x73ca94bc __module_put_and_exit -EXPORT_SYMBOL vmlinux 0x73dda9ca napi_complete_done -EXPORT_SYMBOL vmlinux 0x73e2f3b9 vmap -EXPORT_SYMBOL vmlinux 0x73eb0ac7 setup_new_exec -EXPORT_SYMBOL vmlinux 0x73f13f60 blk_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x73accde2 simple_transaction_read +EXPORT_SYMBOL vmlinux 0x73d80f79 of_find_i2c_adapter_by_node +EXPORT_SYMBOL vmlinux 0x73ee1902 kthread_create_worker_on_cpu +EXPORT_SYMBOL vmlinux 0x73fad039 xfrm_unregister_type +EXPORT_SYMBOL vmlinux 0x73fc27bf serio_reconnect EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace EXPORT_SYMBOL vmlinux 0x7412ed5b kvfree_sensitive -EXPORT_SYMBOL vmlinux 0x7419f958 pci_reenable_device EXPORT_SYMBOL vmlinux 0x742578a5 wait_for_random_bytes +EXPORT_SYMBOL vmlinux 0x7427a576 tty_port_close_start EXPORT_SYMBOL vmlinux 0x7429e20c kstrtos8 +EXPORT_SYMBOL vmlinux 0x742cc851 fwnode_irq_get +EXPORT_SYMBOL vmlinux 0x7432fb0d pcie_port_service_unregister +EXPORT_SYMBOL vmlinux 0x743af596 elv_rb_find EXPORT_SYMBOL vmlinux 0x743f4126 keygen_port_hashing_init -EXPORT_SYMBOL vmlinux 0x7442d041 dev_set_mtu -EXPORT_SYMBOL vmlinux 0x7449f5ea request_firmware_nowait EXPORT_SYMBOL vmlinux 0x7453d3e8 security_release_secctx -EXPORT_SYMBOL vmlinux 0x7464628d acpi_dev_hid_uid_match -EXPORT_SYMBOL vmlinux 0x746d927f jbd2_journal_start_commit EXPORT_SYMBOL vmlinux 0x74754435 acpi_bus_generate_netlink_event +EXPORT_SYMBOL vmlinux 0x7481eed6 iterate_fd EXPORT_SYMBOL vmlinux 0x7483dc59 pci_dev_present -EXPORT_SYMBOL vmlinux 0x748dac34 flow_indr_dev_setup_offload -EXPORT_SYMBOL vmlinux 0x7491413e write_dirty_buffer +EXPORT_SYMBOL vmlinux 0x749c4b01 vme_irq_handler +EXPORT_SYMBOL vmlinux 0x74a58995 skb_vlan_untag +EXPORT_SYMBOL vmlinux 0x74adfdcb ip_setsockopt +EXPORT_SYMBOL vmlinux 0x74af85e2 dev_vprintk_emit +EXPORT_SYMBOL vmlinux 0x74bda5f1 pci_free_irq +EXPORT_SYMBOL vmlinux 0x74be914d pin_user_pages EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 -EXPORT_SYMBOL vmlinux 0x74cac0f6 dcb_ieee_delapp +EXPORT_SYMBOL vmlinux 0x74dce76c mipi_dsi_dcs_set_tear_scanline EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable -EXPORT_SYMBOL vmlinux 0x74f179ae dst_release_immediate -EXPORT_SYMBOL vmlinux 0x74fe341c cad_pid -EXPORT_SYMBOL vmlinux 0x7547a63b would_dump -EXPORT_SYMBOL vmlinux 0x754e4b26 __xfrm_policy_check +EXPORT_SYMBOL vmlinux 0x75056e25 filp_close +EXPORT_SYMBOL vmlinux 0x7534f69d sock_dequeue_err_skb +EXPORT_SYMBOL vmlinux 0x754562ec inode_get_bytes +EXPORT_SYMBOL vmlinux 0x7548c29f phy_get_pause +EXPORT_SYMBOL vmlinux 0x75490655 twl6040_get_sysclk EXPORT_SYMBOL vmlinux 0x755b78c6 meson_sm_call_write -EXPORT_SYMBOL vmlinux 0x75630d61 mmc_hw_reset -EXPORT_SYMBOL vmlinux 0x7578d9a6 mark_info_dirty +EXPORT_SYMBOL vmlinux 0x756b0ead vfs_statfs +EXPORT_SYMBOL vmlinux 0x757a404e update_devfreq EXPORT_SYMBOL vmlinux 0x75871f5e acpi_get_next_object -EXPORT_SYMBOL vmlinux 0x75926aef skb_checksum +EXPORT_SYMBOL vmlinux 0x758fd233 tcp_v4_connect +EXPORT_SYMBOL vmlinux 0x75b0f0d1 tcp_sock_set_cork +EXPORT_SYMBOL vmlinux 0x75b35349 clk_bulk_get +EXPORT_SYMBOL vmlinux 0x75b824d1 d_prune_aliases EXPORT_SYMBOL vmlinux 0x75bda77a seq_hlist_next +EXPORT_SYMBOL vmlinux 0x75c45d9d devm_ioremap_np +EXPORT_SYMBOL vmlinux 0x75cad4b0 devm_devfreq_unregister_notifier EXPORT_SYMBOL vmlinux 0x75d0deb9 nsecs_to_jiffies64 +EXPORT_SYMBOL vmlinux 0x75d2e74f dm_put_device EXPORT_SYMBOL vmlinux 0x75d499dd vmcore_add_device_dump -EXPORT_SYMBOL vmlinux 0x75e6eca0 param_get_ullong -EXPORT_SYMBOL vmlinux 0x75e8637f skb_page_frag_refill -EXPORT_SYMBOL vmlinux 0x75ea115c udp_lib_rehash +EXPORT_SYMBOL vmlinux 0x75dfa0c3 genphy_read_lpa +EXPORT_SYMBOL vmlinux 0x75ee0ccb peernet2id +EXPORT_SYMBOL vmlinux 0x75fb00d2 twl6040_set_bits EXPORT_SYMBOL vmlinux 0x760a0f4f yield -EXPORT_SYMBOL vmlinux 0x760b930b phy_attach_direct -EXPORT_SYMBOL vmlinux 0x760c3b76 md_bitmap_start_sync +EXPORT_SYMBOL vmlinux 0x760f9aca of_mdio_find_bus +EXPORT_SYMBOL vmlinux 0x761482a4 input_enable_softrepeat EXPORT_SYMBOL vmlinux 0x7618af39 hdmi_infoframe_check EXPORT_SYMBOL vmlinux 0x7624249e dim_park_tired -EXPORT_SYMBOL vmlinux 0x76416636 elv_bio_merge_ok -EXPORT_SYMBOL vmlinux 0x764339ea dentry_open +EXPORT_SYMBOL vmlinux 0x7629c591 jbd2_journal_abort +EXPORT_SYMBOL vmlinux 0x7631ea7a textsearch_prepare +EXPORT_SYMBOL vmlinux 0x7636c62e generic_file_readonly_mmap EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq -EXPORT_SYMBOL vmlinux 0x764a9bfb flush_signals -EXPORT_SYMBOL vmlinux 0x7654205b __xfrm_state_destroy -EXPORT_SYMBOL vmlinux 0x7659edee flow_rule_match_control +EXPORT_SYMBOL vmlinux 0x764df89b xfrm_state_check_expire EXPORT_SYMBOL vmlinux 0x765ff474 crc_t10dif_generic +EXPORT_SYMBOL vmlinux 0x7661664b netdev_info EXPORT_SYMBOL vmlinux 0x766a0927 mempool_alloc_pages -EXPORT_SYMBOL vmlinux 0x767c8199 nf_register_net_hooks -EXPORT_SYMBOL vmlinux 0x768c227a hdmi_infoframe_log -EXPORT_SYMBOL vmlinux 0x7696cdba sock_recvmsg +EXPORT_SYMBOL vmlinux 0x767a4c95 __scm_destroy EXPORT_SYMBOL vmlinux 0x769f6e64 errseq_check -EXPORT_SYMBOL vmlinux 0x76a9c9b0 mmc_command_done -EXPORT_SYMBOL vmlinux 0x76ab5c17 textsearch_prepare -EXPORT_SYMBOL vmlinux 0x76afed34 page_pool_alloc_pages -EXPORT_SYMBOL vmlinux 0x76ca92d3 get_cached_acl_rcu -EXPORT_SYMBOL vmlinux 0x76ccbb06 configfs_depend_item +EXPORT_SYMBOL vmlinux 0x76a5b16b lookup_one +EXPORT_SYMBOL vmlinux 0x76abccc3 tty_port_close +EXPORT_SYMBOL vmlinux 0x76b359c8 udp_gro_receive +EXPORT_SYMBOL vmlinux 0x76b8c880 input_set_poll_interval EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode -EXPORT_SYMBOL vmlinux 0x76d86929 read_cache_pages -EXPORT_SYMBOL vmlinux 0x76e3fc8b inode_update_time -EXPORT_SYMBOL vmlinux 0x76e6e82b fman_set_port_params -EXPORT_SYMBOL vmlinux 0x7700b549 sched_autogroup_detach -EXPORT_SYMBOL vmlinux 0x770ecf0e key_link -EXPORT_SYMBOL vmlinux 0x77199641 finish_no_open -EXPORT_SYMBOL vmlinux 0x772b83d8 vfs_fadvise -EXPORT_SYMBOL vmlinux 0x772be632 jbd2_journal_errno -EXPORT_SYMBOL vmlinux 0x772f0b6f security_sctp_bind_connect +EXPORT_SYMBOL vmlinux 0x76df6432 udp_pre_connect +EXPORT_SYMBOL vmlinux 0x76f8f02e skb_copy +EXPORT_SYMBOL vmlinux 0x76f9ef1f sk_dst_check +EXPORT_SYMBOL vmlinux 0x770afc5a skb_pull +EXPORT_SYMBOL vmlinux 0x770d3aeb iget5_locked +EXPORT_SYMBOL vmlinux 0x77186aae __sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0x771f6679 __cleancache_init_shared_fs +EXPORT_SYMBOL vmlinux 0x77281cd7 mdio_device_register EXPORT_SYMBOL vmlinux 0x7732159c free_irq_cpu_rmap EXPORT_SYMBOL vmlinux 0x77358855 iomem_resource -EXPORT_SYMBOL vmlinux 0x773c6030 sock_wfree EXPORT_SYMBOL vmlinux 0x773fa409 __kfifo_dma_in_finish_r EXPORT_SYMBOL vmlinux 0x77456e0a acpi_root_dir -EXPORT_SYMBOL vmlinux 0x774688bd xfrm_policy_bysel_ctx -EXPORT_SYMBOL vmlinux 0x77494d9b i2c_smbus_read_word_data -EXPORT_SYMBOL vmlinux 0x775b2cf2 inet_csk_reqsk_queue_drop_and_put -EXPORT_SYMBOL vmlinux 0x7769fd62 mipi_dsi_dcs_set_tear_scanline -EXPORT_SYMBOL vmlinux 0x77701f5e mipi_dsi_dcs_exit_sleep_mode +EXPORT_SYMBOL vmlinux 0x7750f237 netif_tx_wake_queue +EXPORT_SYMBOL vmlinux 0x77617738 cpufreq_get_policy +EXPORT_SYMBOL vmlinux 0x7765bf52 devm_backlight_device_register +EXPORT_SYMBOL vmlinux 0x7766ad1d xfrm_lookup_route EXPORT_SYMBOL vmlinux 0x777a47ff override_creds -EXPORT_SYMBOL vmlinux 0x778805da dcache_dir_close -EXPORT_SYMBOL vmlinux 0x778ae62a ip_sock_set_freebind +EXPORT_SYMBOL vmlinux 0x777f0ec8 __mod_zone_page_state EXPORT_SYMBOL vmlinux 0x7791193f icst525_s2div -EXPORT_SYMBOL vmlinux 0x779d6966 vfs_iter_read -EXPORT_SYMBOL vmlinux 0x77b443ca shrink_dcache_parent EXPORT_SYMBOL vmlinux 0x77bc13a0 strim -EXPORT_SYMBOL vmlinux 0x77dae403 neigh_table_init +EXPORT_SYMBOL vmlinux 0x77d36a1a mmc_set_data_timeout +EXPORT_SYMBOL vmlinux 0x77e38ba4 regset_get +EXPORT_SYMBOL vmlinux 0x77e4e591 jbd2_journal_set_triggers +EXPORT_SYMBOL vmlinux 0x77e62cc9 mipi_dsi_set_maximum_return_packet_size EXPORT_SYMBOL vmlinux 0x77e9eb37 aes_encrypt -EXPORT_SYMBOL vmlinux 0x77eada96 phy_read_mmd -EXPORT_SYMBOL vmlinux 0x77f7db5b pci_disable_link_state -EXPORT_SYMBOL vmlinux 0x7803ade9 iget_failed EXPORT_SYMBOL vmlinux 0x7807f0f8 schedule_timeout_idle -EXPORT_SYMBOL vmlinux 0x780ce9eb nvdimm_bus_unlock -EXPORT_SYMBOL vmlinux 0x781406a0 dev_mc_del_global -EXPORT_SYMBOL vmlinux 0x7814c946 tcf_exts_num_actions -EXPORT_SYMBOL vmlinux 0x7818e424 pci_bus_set_ops -EXPORT_SYMBOL vmlinux 0x7826982a tc_setup_cb_add -EXPORT_SYMBOL vmlinux 0x7826b3f2 dm_put_device -EXPORT_SYMBOL vmlinux 0x7828d64f rproc_elf_load_segments -EXPORT_SYMBOL vmlinux 0x782ae6da __xfrm_dst_lookup -EXPORT_SYMBOL vmlinux 0x7840eb10 skb_copy_bits +EXPORT_SYMBOL vmlinux 0x7827db9f simple_get_link +EXPORT_SYMBOL vmlinux 0x7834d97e vfs_fileattr_set +EXPORT_SYMBOL vmlinux 0x783c3ff4 ip6_frag_init EXPORT_SYMBOL vmlinux 0x7846af3e __kfifo_len_r -EXPORT_SYMBOL vmlinux 0x784ee702 neigh_for_each -EXPORT_SYMBOL vmlinux 0x7851d0bf d_instantiate_new -EXPORT_SYMBOL vmlinux 0x785af350 page_pool_release_page -EXPORT_SYMBOL vmlinux 0x78682910 pci_scan_root_bus -EXPORT_SYMBOL vmlinux 0x787ce576 phy_driver_unregister +EXPORT_SYMBOL vmlinux 0x7848ac31 param_ops_ulong +EXPORT_SYMBOL vmlinux 0x784e3add dmam_pool_create +EXPORT_SYMBOL vmlinux 0x786f175c __devm_release_region +EXPORT_SYMBOL vmlinux 0x787cc3f9 d_alloc_anon EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback -EXPORT_SYMBOL vmlinux 0x7888c597 pcibios_resource_to_bus -EXPORT_SYMBOL vmlinux 0x78907a3f __page_cache_alloc -EXPORT_SYMBOL vmlinux 0x78988bff tcf_idr_check_alloc EXPORT_SYMBOL vmlinux 0x789affb1 frontswap_tmem_exclusive_gets -EXPORT_SYMBOL vmlinux 0x789f7fc8 vfs_parse_fs_string EXPORT_SYMBOL vmlinux 0x78a16f48 aes_decrypt -EXPORT_SYMBOL vmlinux 0x78b3dff0 mipi_dsi_dcs_get_pixel_format EXPORT_SYMBOL vmlinux 0x78b887ed vsprintf -EXPORT_SYMBOL vmlinux 0x78c25fc1 tcp_sock_set_keepidle -EXPORT_SYMBOL vmlinux 0x78d51825 simple_release_fs +EXPORT_SYMBOL vmlinux 0x78d6c3c8 thaw_super EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices -EXPORT_SYMBOL vmlinux 0x7905ecef sk_wait_data -EXPORT_SYMBOL vmlinux 0x7909576e inet_bind +EXPORT_SYMBOL vmlinux 0x78e2ad05 inet6_csk_route_req +EXPORT_SYMBOL vmlinux 0x78f11287 rproc_mem_entry_init +EXPORT_SYMBOL vmlinux 0x78f88242 configfs_register_group +EXPORT_SYMBOL vmlinux 0x78f93af4 generic_fill_statx_attr +EXPORT_SYMBOL vmlinux 0x78ff3ee2 rproc_get_by_child EXPORT_SYMBOL vmlinux 0x790bafd4 blk_stack_limits -EXPORT_SYMBOL vmlinux 0x79168f83 set_anon_super_fc -EXPORT_SYMBOL vmlinux 0x792a8026 migrate_page_states -EXPORT_SYMBOL vmlinux 0x792bcbf2 start_tty -EXPORT_SYMBOL vmlinux 0x7934f9c4 dev_graft_qdisc -EXPORT_SYMBOL vmlinux 0x7938ac8b dev_set_mac_address_user -EXPORT_SYMBOL vmlinux 0x794acd95 rawv6_mh_filter_unregister -EXPORT_SYMBOL vmlinux 0x79644503 ata_print_version +EXPORT_SYMBOL vmlinux 0x79109f26 security_inet_conn_request +EXPORT_SYMBOL vmlinux 0x79247c4f __scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x792880d3 genphy_config_eee_advert +EXPORT_SYMBOL vmlinux 0x793973db ilookup +EXPORT_SYMBOL vmlinux 0x79448fb6 vfs_get_tree +EXPORT_SYMBOL vmlinux 0x794536bf kern_unmount +EXPORT_SYMBOL vmlinux 0x796c725d dev_activate EXPORT_SYMBOL vmlinux 0x79739c3c utf8nagemin EXPORT_SYMBOL vmlinux 0x7984eefc key_update EXPORT_SYMBOL vmlinux 0x79a33f85 vme_get_size +EXPORT_SYMBOL vmlinux 0x79a3dc31 tcf_block_netif_keep_dst +EXPORT_SYMBOL vmlinux 0x79a4279f amba_find_device EXPORT_SYMBOL vmlinux 0x79aa04a2 get_random_bytes -EXPORT_SYMBOL vmlinux 0x79bf2817 phy_register_fixup -EXPORT_SYMBOL vmlinux 0x79d6eb01 clk_add_alias -EXPORT_SYMBOL vmlinux 0x79df89dc tegra_dfll_resume -EXPORT_SYMBOL vmlinux 0x79e34503 serio_interrupt +EXPORT_SYMBOL vmlinux 0x79ab23a2 xp_raw_get_dma +EXPORT_SYMBOL vmlinux 0x79bc92b9 bioset_init_from_src +EXPORT_SYMBOL vmlinux 0x79bcd25c padata_set_cpumask +EXPORT_SYMBOL vmlinux 0x79df0d61 __netif_schedule EXPORT_SYMBOL vmlinux 0x79ec8f93 blk_start_plug +EXPORT_SYMBOL vmlinux 0x7a04602f bh_submit_read EXPORT_SYMBOL vmlinux 0x7a09a064 seg6_hmac_compute -EXPORT_SYMBOL vmlinux 0x7a152829 ata_scsi_cmd_error_handler -EXPORT_SYMBOL vmlinux 0x7a17d5fb bioset_integrity_create EXPORT_SYMBOL vmlinux 0x7a1bcd59 gf128mul_x8_ble +EXPORT_SYMBOL vmlinux 0x7a20668b phy_mii_ioctl EXPORT_SYMBOL vmlinux 0x7a2af7b4 cpu_number -EXPORT_SYMBOL vmlinux 0x7a3802c1 tcf_block_netif_keep_dst -EXPORT_SYMBOL vmlinux 0x7a3b1485 textsearch_destroy -EXPORT_SYMBOL vmlinux 0x7a565396 __mdiobus_write -EXPORT_SYMBOL vmlinux 0x7a76d774 qdisc_watchdog_init -EXPORT_SYMBOL vmlinux 0x7a79744b ip6_route_me_harder -EXPORT_SYMBOL vmlinux 0x7a7e2984 of_find_i2c_adapter_by_node -EXPORT_SYMBOL vmlinux 0x7a940e4c dev_set_threaded +EXPORT_SYMBOL vmlinux 0x7a3cf366 tcf_qevent_destroy +EXPORT_SYMBOL vmlinux 0x7a3d6f30 ptp_clock_event +EXPORT_SYMBOL vmlinux 0x7a429d31 tty_port_init +EXPORT_SYMBOL vmlinux 0x7a4dd0e0 blk_put_request +EXPORT_SYMBOL vmlinux 0x7a568458 nvdimm_bus_unlock +EXPORT_SYMBOL vmlinux 0x7a764b8d devm_extcon_register_notifier +EXPORT_SYMBOL vmlinux 0x7a90080e unix_detach_fds EXPORT_SYMBOL vmlinux 0x7a95e5ae do_settimeofday64 EXPORT_SYMBOL vmlinux 0x7a968137 ucc_slow_restart_tx +EXPORT_SYMBOL vmlinux 0x7a9a2b22 locks_copy_conflock +EXPORT_SYMBOL vmlinux 0x7a9bd7a4 touchscreen_report_pos EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree -EXPORT_SYMBOL vmlinux 0x7aac0bb3 seq_read -EXPORT_SYMBOL vmlinux 0x7aada1e7 kern_unmount EXPORT_SYMBOL vmlinux 0x7ab45d25 dma_fence_array_create +EXPORT_SYMBOL vmlinux 0x7ab81419 genphy_read_mmd_unsupported EXPORT_SYMBOL vmlinux 0x7ab88a45 system_freezing_cnt +EXPORT_SYMBOL vmlinux 0x7ac10de1 sk_error_report +EXPORT_SYMBOL vmlinux 0x7ac81d20 mii_check_gmii_support EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt -EXPORT_SYMBOL vmlinux 0x7ad3b1e0 jbd2_journal_update_sb_errno +EXPORT_SYMBOL vmlinux 0x7ad60f0e setattr_prepare EXPORT_SYMBOL vmlinux 0x7adc0fbf rb_replace_node_rcu -EXPORT_SYMBOL vmlinux 0x7ade546f pcim_pin_device -EXPORT_SYMBOL vmlinux 0x7ae1731c eth_header_cache_update +EXPORT_SYMBOL vmlinux 0x7ae03bd2 fsl_ifc_ctrl_dev EXPORT_SYMBOL vmlinux 0x7ae5d317 qe_get_snum -EXPORT_SYMBOL vmlinux 0x7aee1a59 tegra_ivc_write_get_next_frame -EXPORT_SYMBOL vmlinux 0x7b1c06a5 tcf_get_next_proto +EXPORT_SYMBOL vmlinux 0x7afe7592 dst_init +EXPORT_SYMBOL vmlinux 0x7b15adee netlink_kernel_release +EXPORT_SYMBOL vmlinux 0x7b27e502 can_nice EXPORT_SYMBOL vmlinux 0x7b37d4a7 _find_first_zero_bit EXPORT_SYMBOL vmlinux 0x7b4da6ff __init_rwsem -EXPORT_SYMBOL vmlinux 0x7b548059 ipv6_mc_check_mld -EXPORT_SYMBOL vmlinux 0x7b59fb5b security_sctp_assoc_request -EXPORT_SYMBOL vmlinux 0x7b5ac09b of_find_all_nodes +EXPORT_SYMBOL vmlinux 0x7b51efa6 n_tty_ioctl_helper EXPORT_SYMBOL vmlinux 0x7b5b8f31 sha256_update -EXPORT_SYMBOL vmlinux 0x7b729d04 rproc_remove_subdev -EXPORT_SYMBOL vmlinux 0x7b7914ee nvmem_get_mac_address -EXPORT_SYMBOL vmlinux 0x7b7d18ca param_set_ulong -EXPORT_SYMBOL vmlinux 0x7b8001f4 migrate_page_move_mapping +EXPORT_SYMBOL vmlinux 0x7b809b66 ip_fraglist_init EXPORT_SYMBOL vmlinux 0x7b82b9a1 idr_replace -EXPORT_SYMBOL vmlinux 0x7b8fb76c pci_request_selected_regions_exclusive -EXPORT_SYMBOL vmlinux 0x7b964506 pci_free_irq_vectors -EXPORT_SYMBOL vmlinux 0x7b9ee466 d_invalidate -EXPORT_SYMBOL vmlinux 0x7ba51763 mdiobus_write +EXPORT_SYMBOL vmlinux 0x7b8d4df6 md_bitmap_sync_with_cluster +EXPORT_SYMBOL vmlinux 0x7b920bdd scsi_remove_host +EXPORT_SYMBOL vmlinux 0x7b9b98e8 scsi_host_put +EXPORT_SYMBOL vmlinux 0x7ba2993b vme_bus_type +EXPORT_SYMBOL vmlinux 0x7ba30020 __alloc_disk_node +EXPORT_SYMBOL vmlinux 0x7ba44a05 set_capacity EXPORT_SYMBOL vmlinux 0x7ba5a3b4 tegra_powergate_power_off -EXPORT_SYMBOL vmlinux 0x7bac50b5 should_remove_suid -EXPORT_SYMBOL vmlinux 0x7baecbfb param_ops_short EXPORT_SYMBOL vmlinux 0x7bb50b88 acpi_write +EXPORT_SYMBOL vmlinux 0x7bb9f2cd rproc_remove_subdev EXPORT_SYMBOL vmlinux 0x7bbccd05 nr_node_ids -EXPORT_SYMBOL vmlinux 0x7bcf8818 mdiobus_unregister_device -EXPORT_SYMBOL vmlinux 0x7be2e103 amba_device_register -EXPORT_SYMBOL vmlinux 0x7bee45e7 tcp_ld_RTO_revert -EXPORT_SYMBOL vmlinux 0x7bf0f806 netlink_kernel_release -EXPORT_SYMBOL vmlinux 0x7c0acb2e no_seek_end_llseek -EXPORT_SYMBOL vmlinux 0x7c168d26 xfrm_input +EXPORT_SYMBOL vmlinux 0x7bbdf424 md_bitmap_unplug +EXPORT_SYMBOL vmlinux 0x7bc34b53 alloc_netdev_mqs +EXPORT_SYMBOL vmlinux 0x7bca0b95 skb_csum_hwoffload_help +EXPORT_SYMBOL vmlinux 0x7c010112 of_node_get +EXPORT_SYMBOL vmlinux 0x7c14eb01 mdiobus_register_device +EXPORT_SYMBOL vmlinux 0x7c16b4e1 vfs_dedupe_file_range_one EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement -EXPORT_SYMBOL vmlinux 0x7c1ded8b file_modified -EXPORT_SYMBOL vmlinux 0x7c2f9cec __put_page -EXPORT_SYMBOL vmlinux 0x7c31407b single_open_size -EXPORT_SYMBOL vmlinux 0x7c3695f0 config_group_init_type_name -EXPORT_SYMBOL vmlinux 0x7c4403f6 d_set_d_op +EXPORT_SYMBOL vmlinux 0x7c2a0c7c mount_single +EXPORT_SYMBOL vmlinux 0x7c3cd997 pcim_set_mwi EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get -EXPORT_SYMBOL vmlinux 0x7c4ef92f generic_pipe_buf_release -EXPORT_SYMBOL vmlinux 0x7c523fad devfreq_monitor_stop -EXPORT_SYMBOL vmlinux 0x7c5a6d72 icmp_ndo_send -EXPORT_SYMBOL vmlinux 0x7c5b1110 scsi_device_put -EXPORT_SYMBOL vmlinux 0x7c6c9ef9 ipmr_rule_default -EXPORT_SYMBOL vmlinux 0x7c962b87 alloc_pages_vma -EXPORT_SYMBOL vmlinux 0x7c9910f9 vlan_ioctl_set +EXPORT_SYMBOL vmlinux 0x7c551e99 param_set_long +EXPORT_SYMBOL vmlinux 0x7c56c04c mipi_dsi_generic_write +EXPORT_SYMBOL vmlinux 0x7c842167 ps2_sliced_command EXPORT_SYMBOL vmlinux 0x7c9ca58f __sg_page_iter_next -EXPORT_SYMBOL vmlinux 0x7c9e100c kmem_cache_alloc_node_trace -EXPORT_SYMBOL vmlinux 0x7c9fd5fe mmc_is_req_done -EXPORT_SYMBOL vmlinux 0x7ca0d62d cdev_device_add +EXPORT_SYMBOL vmlinux 0x7cab4ff5 dev_queue_xmit EXPORT_SYMBOL vmlinux 0x7cb1aea1 devlink_dpipe_header_ethernet -EXPORT_SYMBOL vmlinux 0x7cb1e6db ipv6_getsockopt -EXPORT_SYMBOL vmlinux 0x7cbe5a7c flow_rule_match_ipv4_addrs -EXPORT_SYMBOL vmlinux 0x7cc88cb8 balance_dirty_pages_ratelimited -EXPORT_SYMBOL vmlinux 0x7cd2ce2d unlock_page_memcg -EXPORT_SYMBOL vmlinux 0x7cd84bd1 sunxi_sram_claim EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid EXPORT_SYMBOL vmlinux 0x7ce58981 kvrealloc EXPORT_SYMBOL vmlinux 0x7cf35220 vme_master_free -EXPORT_SYMBOL vmlinux 0x7cf5d671 generic_read_dir -EXPORT_SYMBOL vmlinux 0x7cfb3766 udp_push_pending_frames EXPORT_SYMBOL vmlinux 0x7cfe368d net_dim_get_def_tx_moderation -EXPORT_SYMBOL vmlinux 0x7cffdf59 dma_pool_create -EXPORT_SYMBOL vmlinux 0x7d005d2e pci_get_subsys EXPORT_SYMBOL vmlinux 0x7d0ba682 gen_pool_virt_to_phys EXPORT_SYMBOL vmlinux 0x7d0db45c jiffies_to_clock_t -EXPORT_SYMBOL vmlinux 0x7d1279f1 d_obtain_alias EXPORT_SYMBOL vmlinux 0x7d12d76d acpi_get_parent -EXPORT_SYMBOL vmlinux 0x7d48d91c param_set_int +EXPORT_SYMBOL vmlinux 0x7d199510 alloc_xenballooned_pages +EXPORT_SYMBOL vmlinux 0x7d19f6cb _dev_err +EXPORT_SYMBOL vmlinux 0x7d1b4f3b block_write_end +EXPORT_SYMBOL vmlinux 0x7d204b55 submit_bio +EXPORT_SYMBOL vmlinux 0x7d21ae30 simple_rename +EXPORT_SYMBOL vmlinux 0x7d29dc8f flow_indr_dev_register +EXPORT_SYMBOL vmlinux 0x7d4571ff rproc_coredump_add_segment EXPORT_SYMBOL vmlinux 0x7d4b176a netlbl_catmap_setbit -EXPORT_SYMBOL vmlinux 0x7d58feed serial8250_do_pm -EXPORT_SYMBOL vmlinux 0x7d5a2ac2 inet_select_addr +EXPORT_SYMBOL vmlinux 0x7d552b71 buffer_check_dirty_writeback EXPORT_SYMBOL vmlinux 0x7d5e1008 __crc32c_le_shift -EXPORT_SYMBOL vmlinux 0x7d6714b3 mipi_dsi_host_unregister EXPORT_SYMBOL vmlinux 0x7d74d522 kstrtoull_from_user -EXPORT_SYMBOL vmlinux 0x7d86c16d __register_nls -EXPORT_SYMBOL vmlinux 0x7d9c7e14 unregister_console +EXPORT_SYMBOL vmlinux 0x7d8ee8f0 pci_bus_claim_resources +EXPORT_SYMBOL vmlinux 0x7d8fc59a inet_add_offload EXPORT_SYMBOL vmlinux 0x7daece67 quota_send_warning +EXPORT_SYMBOL vmlinux 0x7db5e545 ip_sock_set_mtu_discover +EXPORT_SYMBOL vmlinux 0x7db70763 ioc_lookup_icq EXPORT_SYMBOL vmlinux 0x7dcf4135 __xa_insert -EXPORT_SYMBOL vmlinux 0x7dd33686 registered_fb -EXPORT_SYMBOL vmlinux 0x7dd40397 param_set_long -EXPORT_SYMBOL vmlinux 0x7dd69f82 tty_port_block_til_ready -EXPORT_SYMBOL vmlinux 0x7dd8951a unix_attach_fds -EXPORT_SYMBOL vmlinux 0x7de9c15f i2c_transfer EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args -EXPORT_SYMBOL vmlinux 0x7df13689 msm_pinctrl_dev_pm_ops -EXPORT_SYMBOL vmlinux 0x7dfbd832 rtnl_create_link -EXPORT_SYMBOL vmlinux 0x7e0a2747 acpi_processor_notify_smm -EXPORT_SYMBOL vmlinux 0x7e14880f mii_check_media -EXPORT_SYMBOL vmlinux 0x7e1fe874 pin_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0x7df155c6 xfrm4_rcv +EXPORT_SYMBOL vmlinux 0x7df3aa10 serial8250_do_pm +EXPORT_SYMBOL vmlinux 0x7e01d97a filemap_fdatawrite_wbc +EXPORT_SYMBOL vmlinux 0x7e0ec1b0 mmc_can_erase +EXPORT_SYMBOL vmlinux 0x7e1b9fe9 devm_mdiobus_alloc_size EXPORT_SYMBOL vmlinux 0x7e3191f6 try_to_del_timer_sync -EXPORT_SYMBOL vmlinux 0x7e358a1b put_watch_queue -EXPORT_SYMBOL vmlinux 0x7e439e68 scsi_is_target_device -EXPORT_SYMBOL vmlinux 0x7e4d8817 param_ops_invbool -EXPORT_SYMBOL vmlinux 0x7e53221e mii_link_ok -EXPORT_SYMBOL vmlinux 0x7e5476a0 vm_map_pages -EXPORT_SYMBOL vmlinux 0x7e565b83 netif_set_real_num_queues -EXPORT_SYMBOL vmlinux 0x7e5c5350 audit_log_start -EXPORT_SYMBOL vmlinux 0x7e61d43c uart_write_wakeup -EXPORT_SYMBOL vmlinux 0x7e758f61 noop_qdisc -EXPORT_SYMBOL vmlinux 0x7e94f0ea keyring_clear -EXPORT_SYMBOL vmlinux 0x7eadebbd neigh_parms_release -EXPORT_SYMBOL vmlinux 0x7ec78c94 xfrm_state_lookup_byaddr -EXPORT_SYMBOL vmlinux 0x7ee5d7c3 neigh_app_ns -EXPORT_SYMBOL vmlinux 0x7efa1bce inet_csk_reset_keepalive_timer -EXPORT_SYMBOL vmlinux 0x7f0065a3 jbd2_log_start_commit +EXPORT_SYMBOL vmlinux 0x7e50c0d4 submit_bio_noacct +EXPORT_SYMBOL vmlinux 0x7e6a1df4 xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x7e7a3db5 mroute6_is_socket +EXPORT_SYMBOL vmlinux 0x7e81f40c pcie_ptm_enabled +EXPORT_SYMBOL vmlinux 0x7e9d0d74 kobject_get_unless_zero +EXPORT_SYMBOL vmlinux 0x7ea13d9e may_umount_tree +EXPORT_SYMBOL vmlinux 0x7ea38d27 skb_ensure_writable +EXPORT_SYMBOL vmlinux 0x7eae227e acpi_processor_notify_smm +EXPORT_SYMBOL vmlinux 0x7eb7a2a5 inet_protos +EXPORT_SYMBOL vmlinux 0x7eb913db mr_mfc_find_parent +EXPORT_SYMBOL vmlinux 0x7ebbc9b3 bio_add_pc_page +EXPORT_SYMBOL vmlinux 0x7ec7b87a dma_free_attrs EXPORT_SYMBOL vmlinux 0x7f02188f __msecs_to_jiffies EXPORT_SYMBOL vmlinux 0x7f03b6a9 crc_ccitt_table -EXPORT_SYMBOL vmlinux 0x7f06dd62 flush_dcache_page -EXPORT_SYMBOL vmlinux 0x7f17fd35 __tcp_md5_do_lookup -EXPORT_SYMBOL vmlinux 0x7f23729c arp_send +EXPORT_SYMBOL vmlinux 0x7f0ac091 fib_notifier_ops_unregister +EXPORT_SYMBOL vmlinux 0x7f1eb424 ata_link_printk +EXPORT_SYMBOL vmlinux 0x7f20c8d2 eth_header_parse_protocol EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs -EXPORT_SYMBOL vmlinux 0x7f2f6a70 cdrom_mode_sense -EXPORT_SYMBOL vmlinux 0x7f4589f6 blk_mq_unique_tag -EXPORT_SYMBOL vmlinux 0x7f4805f0 unpin_user_page +EXPORT_SYMBOL vmlinux 0x7f3b68a5 scsi_host_get EXPORT_SYMBOL vmlinux 0x7f52071a net_dim EXPORT_SYMBOL vmlinux 0x7f5b4fe4 sg_free_table -EXPORT_SYMBOL vmlinux 0x7f61e152 block_write_end +EXPORT_SYMBOL vmlinux 0x7f5c4145 sock_no_recvmsg +EXPORT_SYMBOL vmlinux 0x7f5c42d9 key_alloc +EXPORT_SYMBOL vmlinux 0x7f6d74c6 dcb_ieee_setapp +EXPORT_SYMBOL vmlinux 0x7f6fccc2 dquot_free_inode EXPORT_SYMBOL vmlinux 0x7f7f7bb4 irq_poll_disable -EXPORT_SYMBOL vmlinux 0x7f8da78c sync_file_create -EXPORT_SYMBOL vmlinux 0x7fb1c9d6 skb_copy_datagram_from_iter -EXPORT_SYMBOL vmlinux 0x7fcd8756 rtc_add_groups +EXPORT_SYMBOL vmlinux 0x7f825128 xfrm_find_acq +EXPORT_SYMBOL vmlinux 0x7fb6e8d8 of_parse_phandle_with_args_map +EXPORT_SYMBOL vmlinux 0x7fc65e0a configfs_depend_item EXPORT_SYMBOL vmlinux 0x7fce778e tegra_ivc_total_queue_size +EXPORT_SYMBOL vmlinux 0x7fd5c71a dma_unmap_resource +EXPORT_SYMBOL vmlinux 0x7fddcd3b xfrm_state_delete_tunnel EXPORT_SYMBOL vmlinux 0x7fe105d7 bman_ip_rev EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node -EXPORT_SYMBOL vmlinux 0x7fe4025b kobject_set_name -EXPORT_SYMBOL vmlinux 0x80020d95 blkdev_issue_write_same -EXPORT_SYMBOL vmlinux 0x8018ccb3 mpage_readpage -EXPORT_SYMBOL vmlinux 0x801bffbb tcf_get_next_chain -EXPORT_SYMBOL vmlinux 0x80279a24 __udp_disconnect -EXPORT_SYMBOL vmlinux 0x802d6f0a jbd2_journal_abort -EXPORT_SYMBOL vmlinux 0x803aa1e7 fman_set_mac_max_frame +EXPORT_SYMBOL vmlinux 0x7fe3b80b of_chosen +EXPORT_SYMBOL vmlinux 0x7fe402ff security_skb_classify_flow +EXPORT_SYMBOL vmlinux 0x7ffd4524 posix_test_lock +EXPORT_SYMBOL vmlinux 0x8006882a xsk_tx_release +EXPORT_SYMBOL vmlinux 0x8009478f _copy_from_iter +EXPORT_SYMBOL vmlinux 0x80099e6f __xfrm_state_destroy +EXPORT_SYMBOL vmlinux 0x800a0e30 padata_do_parallel +EXPORT_SYMBOL vmlinux 0x8018a934 mmc_cqe_start_req EXPORT_SYMBOL vmlinux 0x803ddbb6 __posix_acl_create -EXPORT_SYMBOL vmlinux 0x80449042 tcf_exts_change -EXPORT_SYMBOL vmlinux 0x80508e69 __skb_ext_del -EXPORT_SYMBOL vmlinux 0x80704a0b of_phy_connect -EXPORT_SYMBOL vmlinux 0x8081b40a param_ops_hexint +EXPORT_SYMBOL vmlinux 0x8046be27 tso_build_data +EXPORT_SYMBOL vmlinux 0x8059b722 phy_read_mmd +EXPORT_SYMBOL vmlinux 0x805daf0d pci_bus_find_capability +EXPORT_SYMBOL vmlinux 0x808221d4 seq_release_private +EXPORT_SYMBOL vmlinux 0x8083488e of_find_i2c_device_by_node EXPORT_SYMBOL vmlinux 0x809712ff hdmi_avi_infoframe_pack -EXPORT_SYMBOL vmlinux 0x809b75d7 sync_blockdev +EXPORT_SYMBOL vmlinux 0x809c8ca0 tcf_idrinfo_destroy EXPORT_SYMBOL vmlinux 0x80a717a8 __percpu_counter_compare -EXPORT_SYMBOL vmlinux 0x80b9eb4a devm_ioremap_resource -EXPORT_SYMBOL vmlinux 0x80bfc7ed page_cache_next_miss +EXPORT_SYMBOL vmlinux 0x80c3a085 padata_do_serial EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd -EXPORT_SYMBOL vmlinux 0x80d11e41 locks_free_lock EXPORT_SYMBOL vmlinux 0x80d68d3e fb_register_client EXPORT_SYMBOL vmlinux 0x80e5f86f fscrypt_fname_alloc_buffer EXPORT_SYMBOL vmlinux 0x80ec0d50 qman_init_fq -EXPORT_SYMBOL vmlinux 0x80fc1d81 fwnode_get_mac_address -EXPORT_SYMBOL vmlinux 0x8107e92e dev_remove_pack +EXPORT_SYMBOL vmlinux 0x80ee4492 skb_mac_gso_segment +EXPORT_SYMBOL vmlinux 0x80fece22 flow_rule_match_ipv4_addrs +EXPORT_SYMBOL vmlinux 0x81068cfc pnp_activate_dev EXPORT_SYMBOL vmlinux 0x810bef7e sg_free_append_table -EXPORT_SYMBOL vmlinux 0x810e76af pci_bus_claim_resources EXPORT_SYMBOL vmlinux 0x8112b3d2 scsi_build_sense_buffer +EXPORT_SYMBOL vmlinux 0x81139cdb devfreq_suspend_device EXPORT_SYMBOL vmlinux 0x81188c30 match_string -EXPORT_SYMBOL vmlinux 0x812253c3 vmf_insert_mixed_prot -EXPORT_SYMBOL vmlinux 0x81380806 param_array_ops -EXPORT_SYMBOL vmlinux 0x81501650 netdev_next_lower_dev_rcu +EXPORT_SYMBOL vmlinux 0x8123274c jbd2_journal_start_reserved +EXPORT_SYMBOL vmlinux 0x8125fcb8 dma_async_tx_descriptor_init +EXPORT_SYMBOL vmlinux 0x813d5751 __inet_hash EXPORT_SYMBOL vmlinux 0x81533963 sysfs_format_mac EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal EXPORT_SYMBOL vmlinux 0x815f2897 empty_zero_page -EXPORT_SYMBOL vmlinux 0x817f55a5 mii_ethtool_gset +EXPORT_SYMBOL vmlinux 0x81666918 jbd2_journal_revoke +EXPORT_SYMBOL vmlinux 0x816a7491 tty_port_close_end +EXPORT_SYMBOL vmlinux 0x816e2cef dump_skip_to +EXPORT_SYMBOL vmlinux 0x817167ab phy_connect +EXPORT_SYMBOL vmlinux 0x817b7825 __skb_vlan_pop EXPORT_SYMBOL vmlinux 0x818416e1 scsi_set_sense_information -EXPORT_SYMBOL vmlinux 0x8186178a d_find_any_alias -EXPORT_SYMBOL vmlinux 0x81894fc7 vc_resize EXPORT_SYMBOL vmlinux 0x818edf97 cpm_muram_alloc -EXPORT_SYMBOL vmlinux 0x81911313 i2c_transfer_buffer_flags -EXPORT_SYMBOL vmlinux 0x819abfc4 udp_prot +EXPORT_SYMBOL vmlinux 0x81953108 pcim_iomap +EXPORT_SYMBOL vmlinux 0x81a73b26 xfrm_alloc_spi EXPORT_SYMBOL vmlinux 0x81ac5e33 trace_print_hex_dump_seq EXPORT_SYMBOL vmlinux 0x81b20e8b ucc_fast_transmit_on_demand -EXPORT_SYMBOL vmlinux 0x81b93553 phy_free_interrupt -EXPORT_SYMBOL vmlinux 0x81bc771c __zerocopy_sg_from_iter -EXPORT_SYMBOL vmlinux 0x81c224f0 mpage_writepages -EXPORT_SYMBOL vmlinux 0x81d89f40 proc_mkdir_mode +EXPORT_SYMBOL vmlinux 0x81c2fc25 dev_get_flags +EXPORT_SYMBOL vmlinux 0x81c7582b bio_add_page +EXPORT_SYMBOL vmlinux 0x81d1bbd8 param_ops_string EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset -EXPORT_SYMBOL vmlinux 0x81e29bbf tcp_sync_mss -EXPORT_SYMBOL vmlinux 0x81e4fa0b tcp_sock_set_quickack +EXPORT_SYMBOL vmlinux 0x81dc205a serio_unregister_port EXPORT_SYMBOL vmlinux 0x81e6b37f dmi_get_system_info -EXPORT_SYMBOL vmlinux 0x82325fc6 dcb_ieee_getapp_default_prio_mask -EXPORT_SYMBOL vmlinux 0x823b75ed ptp_schedule_worker +EXPORT_SYMBOL vmlinux 0x81eb9601 devfreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x81f5c282 kmem_cache_shrink +EXPORT_SYMBOL vmlinux 0x81f64ee9 neigh_connected_output +EXPORT_SYMBOL vmlinux 0x82104b9d inode_init_owner +EXPORT_SYMBOL vmlinux 0x82194a25 sock_queue_err_skb +EXPORT_SYMBOL vmlinux 0x821dfafe devfreq_monitor_stop +EXPORT_SYMBOL vmlinux 0x8228962b get_cached_acl EXPORT_SYMBOL vmlinux 0x823d3505 cmxgcr_lock -EXPORT_SYMBOL vmlinux 0x824943c4 rtnl_notify -EXPORT_SYMBOL vmlinux 0x824b87f3 __dynamic_ibdev_dbg -EXPORT_SYMBOL vmlinux 0x825ac87d param_get_charp +EXPORT_SYMBOL vmlinux 0x8242fca3 flow_block_cb_free +EXPORT_SYMBOL vmlinux 0x8252d2fe mr_mfc_find_any +EXPORT_SYMBOL vmlinux 0x825fd1e2 phy_suspend +EXPORT_SYMBOL vmlinux 0x82637c57 hdmi_infoframe_log EXPORT_SYMBOL vmlinux 0x8263a6d9 proc_douintvec -EXPORT_SYMBOL vmlinux 0x82663e02 of_phy_is_fixed_link -EXPORT_SYMBOL vmlinux 0x826892bd __ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0x827ebf11 of_platform_device_create EXPORT_SYMBOL vmlinux 0x828062b1 __frontswap_init -EXPORT_SYMBOL vmlinux 0x829812c2 vme_dma_list_exec -EXPORT_SYMBOL vmlinux 0x829c3703 blk_queue_flag_clear -EXPORT_SYMBOL vmlinux 0x82a52401 __cleancache_put_page -EXPORT_SYMBOL vmlinux 0x82b1d1e1 pfifo_fast_ops -EXPORT_SYMBOL vmlinux 0x82b61424 sk_ns_capable -EXPORT_SYMBOL vmlinux 0x82bc9c06 netif_set_xps_queue -EXPORT_SYMBOL vmlinux 0x82be9f7d scsi_host_busy +EXPORT_SYMBOL vmlinux 0x82942b8d inet_frag_kill +EXPORT_SYMBOL vmlinux 0x8296fc3c flow_rule_match_vlan +EXPORT_SYMBOL vmlinux 0x829c95da dst_discard_out +EXPORT_SYMBOL vmlinux 0x82a35ba8 udp_prot +EXPORT_SYMBOL vmlinux 0x82b56c1a phy_queue_state_machine +EXPORT_SYMBOL vmlinux 0x82b93ec7 no_llseek +EXPORT_SYMBOL vmlinux 0x82ba4fbd jbd2_journal_free_reserved +EXPORT_SYMBOL vmlinux 0x82c3eaa0 param_get_long EXPORT_SYMBOL vmlinux 0x82c87ad5 nr_online_nodes -EXPORT_SYMBOL vmlinux 0x82d557a9 jbd2_journal_forget -EXPORT_SYMBOL vmlinux 0x82e62638 __cleancache_get_page -EXPORT_SYMBOL vmlinux 0x8313af36 sock_no_accept -EXPORT_SYMBOL vmlinux 0x833d13b0 bio_integrity_add_page +EXPORT_SYMBOL vmlinux 0x82cc0351 ip_queue_xmit +EXPORT_SYMBOL vmlinux 0x82cef403 dcb_ieee_getapp_prio_dscp_mask_map +EXPORT_SYMBOL vmlinux 0x83028b39 phy_init_eee +EXPORT_SYMBOL vmlinux 0x830bbbe8 mipi_dsi_generic_read +EXPORT_SYMBOL vmlinux 0x834e1351 elv_rb_former_request EXPORT_SYMBOL vmlinux 0x83581089 gf128mul_init_4k_lle -EXPORT_SYMBOL vmlinux 0x8370b435 read_cache_page EXPORT_SYMBOL vmlinux 0x837b7b09 __dynamic_pr_debug -EXPORT_SYMBOL vmlinux 0x837f8c37 fs_bio_set -EXPORT_SYMBOL vmlinux 0x8388b10e vfs_create EXPORT_SYMBOL vmlinux 0x838d2bc8 siphash_3u32 -EXPORT_SYMBOL vmlinux 0x839eceb3 __fib6_flush_trees -EXPORT_SYMBOL vmlinux 0x83bd4233 inet_register_protosw -EXPORT_SYMBOL vmlinux 0x83c3d0da mipi_dsi_dcs_nop +EXPORT_SYMBOL vmlinux 0x8390a130 put_fs_context +EXPORT_SYMBOL vmlinux 0x83a0eac3 __dynamic_netdev_dbg EXPORT_SYMBOL vmlinux 0x83c52fba xfrm4_protocol_init -EXPORT_SYMBOL vmlinux 0x83d77950 nobh_write_end -EXPORT_SYMBOL vmlinux 0x83dd710e dev_driver_string -EXPORT_SYMBOL vmlinux 0x83ec1fa8 skb_ext_add -EXPORT_SYMBOL vmlinux 0x83f9fc6b skb_store_bits +EXPORT_SYMBOL vmlinux 0x83fe7cdc pci_bus_write_config_byte +EXPORT_SYMBOL vmlinux 0x83ff03d3 tty_schedule_flip EXPORT_SYMBOL vmlinux 0x840342c6 sgl_free -EXPORT_SYMBOL vmlinux 0x8407dcf9 fb_blank -EXPORT_SYMBOL vmlinux 0x842f2adf fs_param_is_path -EXPORT_SYMBOL vmlinux 0x84462d68 skb_ensure_writable -EXPORT_SYMBOL vmlinux 0x844cddc5 genphy_handle_interrupt_no_ack -EXPORT_SYMBOL vmlinux 0x844dc3c3 simple_link +EXPORT_SYMBOL vmlinux 0x840e21ac dma_async_device_unregister +EXPORT_SYMBOL vmlinux 0x84183417 framebuffer_alloc +EXPORT_SYMBOL vmlinux 0x84371607 qman_start_using_portal +EXPORT_SYMBOL vmlinux 0x843cfa76 mipi_dsi_dcs_set_display_brightness +EXPORT_SYMBOL vmlinux 0x844751a7 xfrm_init_state +EXPORT_SYMBOL vmlinux 0x844ca241 is_bad_inode EXPORT_SYMBOL vmlinux 0x8455e3a7 dma_fence_signal_timestamp_locked -EXPORT_SYMBOL vmlinux 0x8460f359 arp_tbl -EXPORT_SYMBOL vmlinux 0x8461f4d9 file_fdatawait_range -EXPORT_SYMBOL vmlinux 0x84747a12 mr_dump +EXPORT_SYMBOL vmlinux 0x8470f1d7 dev_remove_offload EXPORT_SYMBOL vmlinux 0x84818f57 tegra_powergate_power_on EXPORT_SYMBOL vmlinux 0x84823cf3 nla_strscpy -EXPORT_SYMBOL vmlinux 0x84934e9f kmem_cache_alloc_bulk -EXPORT_SYMBOL vmlinux 0x849de7e2 cdc_parse_cdc_header -EXPORT_SYMBOL vmlinux 0x84a38d4d phys_mem_access_prot -EXPORT_SYMBOL vmlinux 0x84af50ec pci_dev_get -EXPORT_SYMBOL vmlinux 0x84bad2f3 d_alloc_anon +EXPORT_SYMBOL vmlinux 0x84849c14 of_device_alloc +EXPORT_SYMBOL vmlinux 0x8486c784 mmc_calc_max_discard +EXPORT_SYMBOL vmlinux 0x84954d33 buffer_migrate_page +EXPORT_SYMBOL vmlinux 0x849a8644 sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0x849db012 inet_sock_destruct +EXPORT_SYMBOL vmlinux 0x84ad7fe2 generic_write_checks +EXPORT_SYMBOL vmlinux 0x84bd05fc dev_printk_emit EXPORT_SYMBOL vmlinux 0x84c03e9a rtnl_nla_parse_ifla EXPORT_SYMBOL vmlinux 0x84c1c552 proc_dointvec_ms_jiffies EXPORT_SYMBOL vmlinux 0x84c4040c security_binder_set_context_mgr -EXPORT_SYMBOL vmlinux 0x84d47415 kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0x84df391e vfs_parse_fs_param_source -EXPORT_SYMBOL vmlinux 0x84e5866d skb_copy_header -EXPORT_SYMBOL vmlinux 0x84f76503 _dev_info -EXPORT_SYMBOL vmlinux 0x85182481 of_find_node_opts_by_path +EXPORT_SYMBOL vmlinux 0x84c8ebf5 skb_checksum +EXPORT_SYMBOL vmlinux 0x84d4cb5a jbd2_fc_end_commit +EXPORT_SYMBOL vmlinux 0x84da571c md_bitmap_endwrite +EXPORT_SYMBOL vmlinux 0x84ec7523 param_ops_ushort +EXPORT_SYMBOL vmlinux 0x84ecbfe1 tcp_syn_ack_timeout +EXPORT_SYMBOL vmlinux 0x84f0a9f8 nd_region_acquire_lane +EXPORT_SYMBOL vmlinux 0x850eb6a0 xattr_full_name EXPORT_SYMBOL vmlinux 0x851b9121 xudma_dev_get_psil_base EXPORT_SYMBOL vmlinux 0x854fec83 tegra_sku_info -EXPORT_SYMBOL vmlinux 0x8550cea2 mdiobus_register_device -EXPORT_SYMBOL vmlinux 0x85598e32 sock_queue_rcv_skb -EXPORT_SYMBOL vmlinux 0x855fe4df devm_free_irq EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked -EXPORT_SYMBOL vmlinux 0x8577af05 netpoll_send_skb EXPORT_SYMBOL vmlinux 0x8591d7d5 ledtrig_mtd_activity -EXPORT_SYMBOL vmlinux 0x859fce55 rproc_add_carveout -EXPORT_SYMBOL vmlinux 0x85a5be9b dma_resv_copy_fences +EXPORT_SYMBOL vmlinux 0x859dad39 tty_register_ldisc +EXPORT_SYMBOL vmlinux 0x85a13f1f sock_bind_add +EXPORT_SYMBOL vmlinux 0x85b06cf9 validate_slab_cache +EXPORT_SYMBOL vmlinux 0x85b4642c tty_check_change EXPORT_SYMBOL vmlinux 0x85b4cf2f utf8nlen EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states EXPORT_SYMBOL vmlinux 0x85bd1608 __request_region -EXPORT_SYMBOL vmlinux 0x85bee397 iproc_msi_init -EXPORT_SYMBOL vmlinux 0x85bf79d7 __scsi_print_sense +EXPORT_SYMBOL vmlinux 0x85c143f2 inode_set_bytes +EXPORT_SYMBOL vmlinux 0x85c8be2d build_skb_around +EXPORT_SYMBOL vmlinux 0x85d94643 xfrm4_protocol_deregister EXPORT_SYMBOL vmlinux 0x85df9b6c strsep -EXPORT_SYMBOL vmlinux 0x85e6d2c1 tcf_exts_destroy -EXPORT_SYMBOL vmlinux 0x85e882b0 netif_carrier_on +EXPORT_SYMBOL vmlinux 0x85dfb0ca devm_devfreq_remove_device EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn -EXPORT_SYMBOL vmlinux 0x85f68f5b mipi_dsi_dcs_write_buffer +EXPORT_SYMBOL vmlinux 0x85f1f10d blk_mq_alloc_request +EXPORT_SYMBOL vmlinux 0x85f68419 rproc_free EXPORT_SYMBOL vmlinux 0x85fbc931 slhc_uncompress -EXPORT_SYMBOL vmlinux 0x860b7bb4 of_get_mac_address -EXPORT_SYMBOL vmlinux 0x862b7cb4 input_match_device_id +EXPORT_SYMBOL vmlinux 0x8603308c sock_enable_timestamps +EXPORT_SYMBOL vmlinux 0x860b5ec0 jbd2_wait_inode_data +EXPORT_SYMBOL vmlinux 0x86121cc2 tty_do_resize +EXPORT_SYMBOL vmlinux 0x8612a82c padata_alloc +EXPORT_SYMBOL vmlinux 0x862ef524 pcie_get_width_cap EXPORT_SYMBOL vmlinux 0x863a276a color_table -EXPORT_SYMBOL vmlinux 0x863a862a phy_error -EXPORT_SYMBOL vmlinux 0x86421830 generic_setlease -EXPORT_SYMBOL vmlinux 0x864c311d flow_rule_match_cvlan -EXPORT_SYMBOL vmlinux 0x864ff447 fman_register_intr -EXPORT_SYMBOL vmlinux 0x865ccc5f dcb_setapp -EXPORT_SYMBOL vmlinux 0x8680144c kthread_bind +EXPORT_SYMBOL vmlinux 0x863ca78d blk_mq_queue_stopped +EXPORT_SYMBOL vmlinux 0x864ff749 blk_queue_max_segment_size +EXPORT_SYMBOL vmlinux 0x8658b3af vfs_fsync_range +EXPORT_SYMBOL vmlinux 0x8663254a param_set_byte +EXPORT_SYMBOL vmlinux 0x86671fd9 sock_no_linger +EXPORT_SYMBOL vmlinux 0x866b0803 tegra_dfll_runtime_suspend +EXPORT_SYMBOL vmlinux 0x867b7699 blk_queue_logical_block_size +EXPORT_SYMBOL vmlinux 0x86829126 mipi_dsi_picture_parameter_set EXPORT_SYMBOL vmlinux 0x868acba5 get_options -EXPORT_SYMBOL vmlinux 0x86a64332 md_cluster_ops -EXPORT_SYMBOL vmlinux 0x86ae581a xfrm_lookup -EXPORT_SYMBOL vmlinux 0x86b028d0 __skb_pad +EXPORT_SYMBOL vmlinux 0x869bec36 from_kgid +EXPORT_SYMBOL vmlinux 0x869cafd9 jbd2_journal_clear_features +EXPORT_SYMBOL vmlinux 0x86a21e42 request_firmware +EXPORT_SYMBOL vmlinux 0x86c01325 vm_insert_pages +EXPORT_SYMBOL vmlinux 0x86c1c69e scsi_alloc_sgtables EXPORT_SYMBOL vmlinux 0x86d52ba5 lookup_constant -EXPORT_SYMBOL vmlinux 0x86e8ed02 napi_gro_frags -EXPORT_SYMBOL vmlinux 0x86eb042f kill_fasync -EXPORT_SYMBOL vmlinux 0x86f96cc7 xfrm_register_type -EXPORT_SYMBOL vmlinux 0x86f992fb fs_param_is_blob +EXPORT_SYMBOL vmlinux 0x86df36da flow_block_cb_lookup EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user -EXPORT_SYMBOL vmlinux 0x8705e5ff dma_supported -EXPORT_SYMBOL vmlinux 0x87180fe7 csum_and_copy_from_iter +EXPORT_SYMBOL vmlinux 0x86ff8b78 proc_create_mount_point +EXPORT_SYMBOL vmlinux 0x8709e272 tcp_gro_complete +EXPORT_SYMBOL vmlinux 0x872da62c vlan_for_each +EXPORT_SYMBOL vmlinux 0x873bf4a1 vme_lm_request +EXPORT_SYMBOL vmlinux 0x8749b60c shrink_dcache_sb +EXPORT_SYMBOL vmlinux 0x87574924 shrink_dcache_parent EXPORT_SYMBOL vmlinux 0x8761c87b rps_needed -EXPORT_SYMBOL vmlinux 0x8766152d softnet_data +EXPORT_SYMBOL vmlinux 0x87693fc2 __napi_schedule +EXPORT_SYMBOL vmlinux 0x87734df0 vfs_dup_fs_context EXPORT_SYMBOL vmlinux 0x87761528 __traceiter_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x87771aef inet_add_protocol EXPORT_SYMBOL vmlinux 0x878469bd ZSTD_decompressStream -EXPORT_SYMBOL vmlinux 0x8785ee34 clk_hw_get_clk -EXPORT_SYMBOL vmlinux 0x87953f1c rtc_add_group -EXPORT_SYMBOL vmlinux 0x87a218a2 sock_recv_errqueue +EXPORT_SYMBOL vmlinux 0x8799d62c pci_request_irq EXPORT_SYMBOL vmlinux 0x87a21cb3 __ubsan_handle_out_of_bounds +EXPORT_SYMBOL vmlinux 0x87b0a6d5 of_n_size_cells EXPORT_SYMBOL vmlinux 0x87b8798d sg_next -EXPORT_SYMBOL vmlinux 0x87d0d88f fb_show_logo -EXPORT_SYMBOL vmlinux 0x87fae627 block_is_partially_uptodate -EXPORT_SYMBOL vmlinux 0x87ff7e5d i2c_verify_adapter -EXPORT_SYMBOL vmlinux 0x8808040f generic_perform_write -EXPORT_SYMBOL vmlinux 0x880a12fe d_find_alias -EXPORT_SYMBOL vmlinux 0x880cffb3 rt_mutex_base_init +EXPORT_SYMBOL vmlinux 0x87ba349b skb_vlan_pop +EXPORT_SYMBOL vmlinux 0x87cfdda7 pagevec_lookup_range +EXPORT_SYMBOL vmlinux 0x87d4ccac dev_getbyhwaddr_rcu EXPORT_SYMBOL vmlinux 0x8810754a _find_first_bit -EXPORT_SYMBOL vmlinux 0x8818dd49 poll_freewait +EXPORT_SYMBOL vmlinux 0x88193a3c serial8250_set_isa_configurator EXPORT_SYMBOL vmlinux 0x881bad5e phy_mipi_dphy_config_validate EXPORT_SYMBOL vmlinux 0x881c4413 gen_pool_first_fit -EXPORT_SYMBOL vmlinux 0x882b4a78 is_nd_btt -EXPORT_SYMBOL vmlinux 0x882e91ee sock_alloc -EXPORT_SYMBOL vmlinux 0x88545447 backlight_device_register -EXPORT_SYMBOL vmlinux 0x886621a0 ip_tunnel_header_ops -EXPORT_SYMBOL vmlinux 0x8877384d sk_send_sigurg +EXPORT_SYMBOL vmlinux 0x8821b7dc tcf_idr_search +EXPORT_SYMBOL vmlinux 0x882eceac stream_open +EXPORT_SYMBOL vmlinux 0x88380e46 of_mdiobus_phy_device_register +EXPORT_SYMBOL vmlinux 0x8874afa5 page_pool_release_page EXPORT_SYMBOL vmlinux 0x88822d38 unregister_blocking_lsm_notifier EXPORT_SYMBOL vmlinux 0x8888f1fe xxh32 -EXPORT_SYMBOL vmlinux 0x88928892 xfrm_stateonly_find +EXPORT_SYMBOL vmlinux 0x88916ab4 skb_realloc_headroom +EXPORT_SYMBOL vmlinux 0x889a711e setup_arg_pages EXPORT_SYMBOL vmlinux 0x889b1370 _raw_read_trylock -EXPORT_SYMBOL vmlinux 0x88a8d7ff lookup_one_len +EXPORT_SYMBOL vmlinux 0x88a1e32f pcie_print_link_status EXPORT_SYMBOL vmlinux 0x88abb78b ZSTD_insertBlock +EXPORT_SYMBOL vmlinux 0x88ae9af0 nvdimm_namespace_capacity +EXPORT_SYMBOL vmlinux 0x88bb1b31 tegra_ivc_read_get_next_frame +EXPORT_SYMBOL vmlinux 0x88cce601 serio_open EXPORT_SYMBOL vmlinux 0x88db9f48 __check_object_size -EXPORT_SYMBOL vmlinux 0x88de2924 blkdev_issue_zeroout EXPORT_SYMBOL vmlinux 0x88e1d0f0 page_frag_free -EXPORT_SYMBOL vmlinux 0x88ec35dc register_filesystem -EXPORT_SYMBOL vmlinux 0x88fdb8e4 jbd2_journal_init_inode -EXPORT_SYMBOL vmlinux 0x890038bb fman_get_pause_cfg -EXPORT_SYMBOL vmlinux 0x890528b1 iov_iter_xarray -EXPORT_SYMBOL vmlinux 0x89056de0 generic_cont_expand_simple -EXPORT_SYMBOL vmlinux 0x8937eeaf skb_copy_and_csum_bits -EXPORT_SYMBOL vmlinux 0x89385c35 md_check_recovery +EXPORT_SYMBOL vmlinux 0x88fadd66 vm_map_ram +EXPORT_SYMBOL vmlinux 0x891b198e pci_ep_cfs_remove_epf_group +EXPORT_SYMBOL vmlinux 0x89360c48 set_binfmt +EXPORT_SYMBOL vmlinux 0x89404276 vfs_rmdir EXPORT_SYMBOL vmlinux 0x89434b4b radix_tree_tag_clear EXPORT_SYMBOL vmlinux 0x8946ea72 fpsimd_context_busy -EXPORT_SYMBOL vmlinux 0x894f4725 pnp_activate_dev -EXPORT_SYMBOL vmlinux 0x89524a1f pcim_enable_device -EXPORT_SYMBOL vmlinux 0x896ab0e8 mdiobus_setup_mdiodev_from_board_info -EXPORT_SYMBOL vmlinux 0x896ce50b ww_mutex_lock -EXPORT_SYMBOL vmlinux 0x897f5cf0 vfs_parse_fs_param -EXPORT_SYMBOL vmlinux 0x89860731 __neigh_create +EXPORT_SYMBOL vmlinux 0x896fc962 generic_copy_file_range +EXPORT_SYMBOL vmlinux 0x89838981 pci_write_config_word EXPORT_SYMBOL vmlinux 0x89940875 mutex_lock_interruptible -EXPORT_SYMBOL vmlinux 0x89978943 scsi_partsize -EXPORT_SYMBOL vmlinux 0x899ae87a mmc_run_bkops -EXPORT_SYMBOL vmlinux 0x89c37709 vfs_copy_file_range +EXPORT_SYMBOL vmlinux 0x89a42259 register_qdisc +EXPORT_SYMBOL vmlinux 0x89bbdc6b km_report +EXPORT_SYMBOL vmlinux 0x89be90a4 nd_dev_to_uuid +EXPORT_SYMBOL vmlinux 0x89ca4a9b kmem_cache_alloc EXPORT_SYMBOL vmlinux 0x89d93ef7 __nla_reserve_64bit -EXPORT_SYMBOL vmlinux 0x89db6e06 __cleancache_invalidate_inode -EXPORT_SYMBOL vmlinux 0x89e00f85 pagecache_isize_extended -EXPORT_SYMBOL vmlinux 0x89ea7495 nd_device_unregister -EXPORT_SYMBOL vmlinux 0x89eb91cc of_find_mipi_dsi_device_by_node -EXPORT_SYMBOL vmlinux 0x8a05d8fc inet_offloads -EXPORT_SYMBOL vmlinux 0x8a18f1b1 phy_suspend -EXPORT_SYMBOL vmlinux 0x8a302341 mii_ethtool_get_link_ksettings -EXPORT_SYMBOL vmlinux 0x8a3632ea posix_acl_update_mode -EXPORT_SYMBOL vmlinux 0x8a3b1c62 seg6_hmac_net_exit +EXPORT_SYMBOL vmlinux 0x89e8fd4d sock_no_socketpair +EXPORT_SYMBOL vmlinux 0x8a1b124d bio_uninit +EXPORT_SYMBOL vmlinux 0x8a3080f4 skb_copy_datagram_from_iter +EXPORT_SYMBOL vmlinux 0x8a334da0 vfs_iter_read +EXPORT_SYMBOL vmlinux 0x8a410fba ip_sock_set_pktinfo EXPORT_SYMBOL vmlinux 0x8a47043d LZ4_decompress_safe_continue EXPORT_SYMBOL vmlinux 0x8a490c90 rfkill_set_sw_state -EXPORT_SYMBOL vmlinux 0x8a58be93 iov_iter_advance -EXPORT_SYMBOL vmlinux 0x8a5e64a9 d_tmpfile -EXPORT_SYMBOL vmlinux 0x8a682444 mipi_dsi_generic_read +EXPORT_SYMBOL vmlinux 0x8a546bbe jbd2_fc_end_commit_fallback +EXPORT_SYMBOL vmlinux 0x8a5f84dc pci_back_from_sleep EXPORT_SYMBOL vmlinux 0x8a7094ba vm_brk_flags -EXPORT_SYMBOL vmlinux 0x8a762249 mr_mfc_seq_idx EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory -EXPORT_SYMBOL vmlinux 0x8a88654f page_cache_prev_miss -EXPORT_SYMBOL vmlinux 0x8a8d2ed3 add_random_ready_callback -EXPORT_SYMBOL vmlinux 0x8a988415 __register_chrdev +EXPORT_SYMBOL vmlinux 0x8a8ee5d4 sock_no_getname EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab -EXPORT_SYMBOL vmlinux 0x8ab5c541 unregister_mii_timestamper +EXPORT_SYMBOL vmlinux 0x8aa0c1e7 alloc_anon_inode +EXPORT_SYMBOL vmlinux 0x8aa14d57 blk_mq_start_request +EXPORT_SYMBOL vmlinux 0x8aa86b81 __phy_write_mmd +EXPORT_SYMBOL vmlinux 0x8ab767b9 simple_transaction_get +EXPORT_SYMBOL vmlinux 0x8abda529 ethtool_rx_flow_rule_destroy +EXPORT_SYMBOL vmlinux 0x8abf99c4 mpage_writepage EXPORT_SYMBOL vmlinux 0x8ac136ae imx_sc_misc_get_control -EXPORT_SYMBOL vmlinux 0x8ac2f021 pcim_set_mwi EXPORT_SYMBOL vmlinux 0x8ac3334b net_dim_get_def_rx_moderation +EXPORT_SYMBOL vmlinux 0x8ac3c492 fman_get_qman_channel_id EXPORT_SYMBOL vmlinux 0x8ac743de sg_copy_buffer -EXPORT_SYMBOL vmlinux 0x8aed7f36 rproc_elf_load_rsc_table +EXPORT_SYMBOL vmlinux 0x8ad84bcb of_root EXPORT_SYMBOL vmlinux 0x8b0088d1 LZ4_decompress_safe_usingDict +EXPORT_SYMBOL vmlinux 0x8b054440 init_special_inode +EXPORT_SYMBOL vmlinux 0x8b05f311 phy_mac_interrupt +EXPORT_SYMBOL vmlinux 0x8b07288d pskb_extract EXPORT_SYMBOL vmlinux 0x8b07b51d flow_block_cb_is_busy -EXPORT_SYMBOL vmlinux 0x8b208a4f twl6040_set_bits +EXPORT_SYMBOL vmlinux 0x8b1ac9c2 blk_post_runtime_suspend EXPORT_SYMBOL vmlinux 0x8b2ffd83 __cpu_present_mask -EXPORT_SYMBOL vmlinux 0x8b33a3fa write_one_page -EXPORT_SYMBOL vmlinux 0x8b39064c pci_disable_link_state_locked -EXPORT_SYMBOL vmlinux 0x8b3b17db nobh_truncate_page -EXPORT_SYMBOL vmlinux 0x8b3eaf45 pcie_port_service_unregister -EXPORT_SYMBOL vmlinux 0x8b518671 clear_inode -EXPORT_SYMBOL vmlinux 0x8b5571f0 phy_advertise_supported +EXPORT_SYMBOL vmlinux 0x8b3edba1 dev_open EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid -EXPORT_SYMBOL vmlinux 0x8b6375ac scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x8b71fe78 __generic_file_fsync +EXPORT_SYMBOL vmlinux 0x8b7bcfa9 mntget EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p EXPORT_SYMBOL vmlinux 0x8b910be2 errseq_sample EXPORT_SYMBOL vmlinux 0x8b989cf9 acpi_bus_can_wakeup +EXPORT_SYMBOL vmlinux 0x8b9a2f92 of_mdiobus_register EXPORT_SYMBOL vmlinux 0x8b9ea582 ZSTD_copyDCtx -EXPORT_SYMBOL vmlinux 0x8bc594f8 dev_get_by_napi_id +EXPORT_SYMBOL vmlinux 0x8bdac7bc devm_nvmem_unregister +EXPORT_SYMBOL vmlinux 0x8bdedbad of_find_net_device_by_node EXPORT_SYMBOL vmlinux 0x8be189ab ucc_slow_disable -EXPORT_SYMBOL vmlinux 0x8be365c1 vlan_dev_vlan_id -EXPORT_SYMBOL vmlinux 0x8be7d875 xsk_clear_tx_need_wakeup -EXPORT_SYMBOL vmlinux 0x8bf08d88 __free_pages -EXPORT_SYMBOL vmlinux 0x8bf10141 devm_register_reboot_notifier -EXPORT_SYMBOL vmlinux 0x8bf51f57 fqdir_exit -EXPORT_SYMBOL vmlinux 0x8c0018ea nf_ip6_checksum -EXPORT_SYMBOL vmlinux 0x8c0903f4 to_ndd -EXPORT_SYMBOL vmlinux 0x8c14b5ca __ip_select_ident -EXPORT_SYMBOL vmlinux 0x8c19806a devm_request_resource -EXPORT_SYMBOL vmlinux 0x8c1fe898 mdiobus_scan +EXPORT_SYMBOL vmlinux 0x8bef8f1f redirty_page_for_writepage +EXPORT_SYMBOL vmlinux 0x8bff507d max8925_bulk_write +EXPORT_SYMBOL vmlinux 0x8c0e722b of_match_node +EXPORT_SYMBOL vmlinux 0x8c0e8d03 fuse_mount_destroy +EXPORT_SYMBOL vmlinux 0x8c1d8fdd fwnode_mdiobus_register_phy EXPORT_SYMBOL vmlinux 0x8c26d495 prepare_to_wait_event -EXPORT_SYMBOL vmlinux 0x8c47bf5b bio_put -EXPORT_SYMBOL vmlinux 0x8c4aac8a dst_alloc +EXPORT_SYMBOL vmlinux 0x8c30418e i2c_transfer +EXPORT_SYMBOL vmlinux 0x8c33548f sock_wfree +EXPORT_SYMBOL vmlinux 0x8c543648 jbd2_journal_ack_err EXPORT_SYMBOL vmlinux 0x8c683fcd posix_acl_to_xattr -EXPORT_SYMBOL vmlinux 0x8c693a58 scsi_report_bus_reset +EXPORT_SYMBOL vmlinux 0x8c7346aa genphy_check_and_restart_aneg +EXPORT_SYMBOL vmlinux 0x8c747d2a ip_fraglist_prepare EXPORT_SYMBOL vmlinux 0x8c8569cb kstrtoint EXPORT_SYMBOL vmlinux 0x8c9e338f acpi_bios_error -EXPORT_SYMBOL vmlinux 0x8c9e4055 devfreq_monitor_start +EXPORT_SYMBOL vmlinux 0x8ca2488a key_instantiate_and_link +EXPORT_SYMBOL vmlinux 0x8ca681ed noop_qdisc EXPORT_SYMBOL vmlinux 0x8caf9305 uuid_is_valid -EXPORT_SYMBOL vmlinux 0x8cb277a4 unload_nls -EXPORT_SYMBOL vmlinux 0x8cbeba8e filemap_check_errors +EXPORT_SYMBOL vmlinux 0x8cc0364d mmput_async +EXPORT_SYMBOL vmlinux 0x8cc368aa iw_handler_set_spy EXPORT_SYMBOL vmlinux 0x8cc53d20 __par_io_config_pin -EXPORT_SYMBOL vmlinux 0x8cd7b829 twl6040_get_vibralr_status -EXPORT_SYMBOL vmlinux 0x8cd9beaa pci_iounmap EXPORT_SYMBOL vmlinux 0x8cda8029 xen_clear_irq_pending -EXPORT_SYMBOL vmlinux 0x8ce36273 scsi_add_device -EXPORT_SYMBOL vmlinux 0x8cf25daa __traceiter_mmap_lock_start_locking -EXPORT_SYMBOL vmlinux 0x8cf793b8 mmc_erase -EXPORT_SYMBOL vmlinux 0x8d08f1a0 dev_get_flags -EXPORT_SYMBOL vmlinux 0x8d0b034b of_graph_get_remote_port_parent -EXPORT_SYMBOL vmlinux 0x8d0f2a82 blk_put_queue -EXPORT_SYMBOL vmlinux 0x8d1dfdfd clocksource_unregister -EXPORT_SYMBOL vmlinux 0x8d3df648 sk_filter_trim_cap +EXPORT_SYMBOL vmlinux 0x8cf18528 mipi_dsi_dcs_set_pixel_format +EXPORT_SYMBOL vmlinux 0x8cf9c801 jbd2_journal_extend +EXPORT_SYMBOL vmlinux 0x8cffb4ad vfs_parse_fs_param_source +EXPORT_SYMBOL vmlinux 0x8d0d93e7 xp_dma_unmap EXPORT_SYMBOL vmlinux 0x8d4112df qcom_scm_mem_protect_video_var EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq -EXPORT_SYMBOL vmlinux 0x8d5b92fb phy_config_aneg -EXPORT_SYMBOL vmlinux 0x8d6ec768 wait_on_page_bit_killable -EXPORT_SYMBOL vmlinux 0x8d72cad7 blk_mq_complete_request +EXPORT_SYMBOL vmlinux 0x8d63b97b con_set_default_unimap +EXPORT_SYMBOL vmlinux 0x8d72e130 dev_trans_start EXPORT_SYMBOL vmlinux 0x8d73278e hex_asc_upper -EXPORT_SYMBOL vmlinux 0x8d7d465a submit_bio_noacct -EXPORT_SYMBOL vmlinux 0x8d831c95 __netdev_alloc_skb +EXPORT_SYMBOL vmlinux 0x8d8cefce get_tree_bdev +EXPORT_SYMBOL vmlinux 0x8d8e8815 inet_proto_csum_replace16 +EXPORT_SYMBOL vmlinux 0x8d8ff94f seq_file_path +EXPORT_SYMBOL vmlinux 0x8d9b0eac skb_try_coalesce EXPORT_SYMBOL vmlinux 0x8d9ca0e6 dma_fence_enable_sw_signaling EXPORT_SYMBOL vmlinux 0x8da6585d __stack_chk_fail EXPORT_SYMBOL vmlinux 0x8daedb79 cpumask_any_but -EXPORT_SYMBOL vmlinux 0x8db100dc pm860x_page_bulk_read -EXPORT_SYMBOL vmlinux 0x8dcf686a of_device_get_match_data +EXPORT_SYMBOL vmlinux 0x8dc5d285 mmc_unregister_driver +EXPORT_SYMBOL vmlinux 0x8dc8dda1 set_posix_acl +EXPORT_SYMBOL vmlinux 0x8dca60fa fib_notifier_ops_register EXPORT_SYMBOL vmlinux 0x8ddd8aad schedule_timeout +EXPORT_SYMBOL vmlinux 0x8de6664e devfreq_update_target EXPORT_SYMBOL vmlinux 0x8df4afd9 qe_put_snum EXPORT_SYMBOL vmlinux 0x8df92f66 memchr_inv EXPORT_SYMBOL vmlinux 0x8df9dd10 guid_null -EXPORT_SYMBOL vmlinux 0x8e08be20 input_mt_get_slot_by_key -EXPORT_SYMBOL vmlinux 0x8e0f915d __frontswap_test -EXPORT_SYMBOL vmlinux 0x8e12e79d __traceiter_mmap_lock_acquire_returned -EXPORT_SYMBOL vmlinux 0x8e143b73 blk_mq_stop_hw_queue +EXPORT_SYMBOL vmlinux 0x8e0199ee skb_push +EXPORT_SYMBOL vmlinux 0x8e0b4441 mini_qdisc_pair_swap EXPORT_SYMBOL vmlinux 0x8e17b3ae idr_destroy -EXPORT_SYMBOL vmlinux 0x8e17db4f inet_csk_destroy_sock -EXPORT_SYMBOL vmlinux 0x8e1f12b0 input_get_poll_interval EXPORT_SYMBOL vmlinux 0x8e21c9a1 dma_fence_add_callback -EXPORT_SYMBOL vmlinux 0x8e39308b param_set_hexint -EXPORT_SYMBOL vmlinux 0x8e3d330d rproc_elf_sanity_check -EXPORT_SYMBOL vmlinux 0x8e47a28e security_unix_stream_connect +EXPORT_SYMBOL vmlinux 0x8e37b9ba kernel_write +EXPORT_SYMBOL vmlinux 0x8e3e0f7d fault_in_readable EXPORT_SYMBOL vmlinux 0x8e4c60a3 cpm_muram_dma -EXPORT_SYMBOL vmlinux 0x8e5175bb secure_tcpv6_ts_off -EXPORT_SYMBOL vmlinux 0x8e68518c xfrm6_rcv_tnl -EXPORT_SYMBOL vmlinux 0x8e71c8d5 dev_get_by_index_rcu +EXPORT_SYMBOL vmlinux 0x8e57775e lock_rename +EXPORT_SYMBOL vmlinux 0x8e71d3d7 __genphy_config_aneg +EXPORT_SYMBOL vmlinux 0x8e79b884 md_bitmap_free +EXPORT_SYMBOL vmlinux 0x8e938d93 __dev_get_by_name EXPORT_SYMBOL vmlinux 0x8e93bd24 security_secctx_to_secid -EXPORT_SYMBOL vmlinux 0x8ea72848 cfb_imageblit -EXPORT_SYMBOL vmlinux 0x8ea987a8 nvdimm_namespace_capacity -EXPORT_SYMBOL vmlinux 0x8eaa9985 netdev_master_upper_dev_get_rcu -EXPORT_SYMBOL vmlinux 0x8ef79b57 padata_set_cpumask +EXPORT_SYMBOL vmlinux 0x8ea625de mipi_dsi_host_unregister +EXPORT_SYMBOL vmlinux 0x8ecd5e97 pcie_capability_clear_and_set_dword +EXPORT_SYMBOL vmlinux 0x8eed0d79 skb_queue_purge EXPORT_SYMBOL vmlinux 0x8f01afd6 twl6030_interrupt_mask -EXPORT_SYMBOL vmlinux 0x8f0c858a generic_file_llseek -EXPORT_SYMBOL vmlinux 0x8f15c112 of_graph_get_remote_port -EXPORT_SYMBOL vmlinux 0x8f1efa68 cookie_timestamp_decode -EXPORT_SYMBOL vmlinux 0x8f5b6317 mdiobus_read -EXPORT_SYMBOL vmlinux 0x8f8b512c rawv6_mh_filter_register -EXPORT_SYMBOL vmlinux 0x8f931957 dev_mc_init -EXPORT_SYMBOL vmlinux 0x8f96e9e3 serio_unregister_child_port +EXPORT_SYMBOL vmlinux 0x8f04f32c nf_log_unbind_pf +EXPORT_SYMBOL vmlinux 0x8f1fe06e vfs_get_fsid +EXPORT_SYMBOL vmlinux 0x8f2cf4c8 udp6_seq_ops +EXPORT_SYMBOL vmlinux 0x8f2d4e4c vmf_insert_pfn +EXPORT_SYMBOL vmlinux 0x8f594ca8 tty_register_device +EXPORT_SYMBOL vmlinux 0x8f66cb67 pci_find_capability +EXPORT_SYMBOL vmlinux 0x8f6a15c0 d_mark_dontcache +EXPORT_SYMBOL vmlinux 0x8f877b95 sock_common_setsockopt EXPORT_SYMBOL vmlinux 0x8f996a30 ethtool_convert_legacy_u32_to_link_mode +EXPORT_SYMBOL vmlinux 0x8f9c4275 rc5t583_ext_power_req_config EXPORT_SYMBOL vmlinux 0x8fa25c24 xa_find -EXPORT_SYMBOL vmlinux 0x8fb6aa7d unmap_mapping_range -EXPORT_SYMBOL vmlinux 0x8fba0c0f __cgroup_bpf_run_filter_sk +EXPORT_SYMBOL vmlinux 0x8fa48161 inet_rcv_saddr_equal +EXPORT_SYMBOL vmlinux 0x8fad58a0 neigh_direct_output +EXPORT_SYMBOL vmlinux 0x8fb2ab7e fman_register_intr +EXPORT_SYMBOL vmlinux 0x8fc2bb44 dst_cow_metrics_generic EXPORT_SYMBOL vmlinux 0x8fc9ea11 fman_port_cfg_buf_prefix_content EXPORT_SYMBOL vmlinux 0x8fd180e7 kernel_neon_begin -EXPORT_SYMBOL vmlinux 0x8fd7728a mr_table_alloc EXPORT_SYMBOL vmlinux 0x8fda6a7f __next_node_in EXPORT_SYMBOL vmlinux 0x8fdb0752 abort_creds -EXPORT_SYMBOL vmlinux 0x8fe0ce79 xfrm4_rcv_encap -EXPORT_SYMBOL vmlinux 0x8ff5ca8f netpoll_poll_enable +EXPORT_SYMBOL vmlinux 0x8ff385b2 md_bitmap_update_sb EXPORT_SYMBOL vmlinux 0x8ff89ed0 seg6_hmac_exit EXPORT_SYMBOL vmlinux 0x90006be6 dm_kcopyd_client_flush -EXPORT_SYMBOL vmlinux 0x90249000 __SetPageMovable +EXPORT_SYMBOL vmlinux 0x90280ed3 __register_nls EXPORT_SYMBOL vmlinux 0x902d8722 vme_slave_get EXPORT_SYMBOL vmlinux 0x902f5199 cpumask_next_wrap +EXPORT_SYMBOL vmlinux 0x90340325 vme_dma_list_add EXPORT_SYMBOL vmlinux 0x9034a696 mempool_destroy -EXPORT_SYMBOL vmlinux 0x903e7449 xfrm_register_km +EXPORT_SYMBOL vmlinux 0x903f9035 devm_pci_remap_cfg_resource EXPORT_SYMBOL vmlinux 0x905695ab sg_copy_from_buffer +EXPORT_SYMBOL vmlinux 0x90573593 __xfrm_state_delete EXPORT_SYMBOL vmlinux 0x90576ec4 vmemdup_user -EXPORT_SYMBOL vmlinux 0x905834be thermal_cdev_update -EXPORT_SYMBOL vmlinux 0x90670dbc qdisc_watchdog_init_clockid +EXPORT_SYMBOL vmlinux 0x90602aef __sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0x906149e6 __cgroup_bpf_run_filter_skb +EXPORT_SYMBOL vmlinux 0x906df65f dquot_scan_active +EXPORT_SYMBOL vmlinux 0x9075d233 jbd2_fc_get_buf EXPORT_SYMBOL vmlinux 0x907ea00e set_security_override +EXPORT_SYMBOL vmlinux 0x908c85e7 mr_dump +EXPORT_SYMBOL vmlinux 0x9097cd1d __scm_send +EXPORT_SYMBOL vmlinux 0x909a1b3d scsi_print_command +EXPORT_SYMBOL vmlinux 0x909b7a88 mii_ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0x909d4762 netpoll_poll_enable +EXPORT_SYMBOL vmlinux 0x90c6bada phy_sfp_probe +EXPORT_SYMBOL vmlinux 0x90cf2e8a of_xudma_dev_get +EXPORT_SYMBOL vmlinux 0x90da25c4 of_count_phandle_with_args EXPORT_SYMBOL vmlinux 0x90e273e2 cred_fscmp -EXPORT_SYMBOL vmlinux 0x90e906fc pci_enable_wake -EXPORT_SYMBOL vmlinux 0x90e93419 blk_set_runtime_active -EXPORT_SYMBOL vmlinux 0x91088fd0 iov_iter_revert +EXPORT_SYMBOL vmlinux 0x90ecc43f dma_sync_sg_for_device +EXPORT_SYMBOL vmlinux 0x90f2c2c3 pcim_iomap_regions +EXPORT_SYMBOL vmlinux 0x90ffb21a send_sig +EXPORT_SYMBOL vmlinux 0x9100a52a mdiobus_free EXPORT_SYMBOL vmlinux 0x9114b616 __xa_alloc -EXPORT_SYMBOL vmlinux 0x912cf935 mnt_drop_write_file -EXPORT_SYMBOL vmlinux 0x912d4e06 tso_count_descs -EXPORT_SYMBOL vmlinux 0x912df09c single_release -EXPORT_SYMBOL vmlinux 0x9144f8c5 devm_clk_hw_register_clkdev -EXPORT_SYMBOL vmlinux 0x9156ea30 handle_edge_irq +EXPORT_SYMBOL vmlinux 0x9157c106 mii_ethtool_gset EXPORT_SYMBOL vmlinux 0x9166fada strncpy -EXPORT_SYMBOL vmlinux 0x91804b14 generic_splice_sendpage -EXPORT_SYMBOL vmlinux 0x9194688d skb_put +EXPORT_SYMBOL vmlinux 0x91701a54 blk_queue_flag_clear +EXPORT_SYMBOL vmlinux 0x917dd71b mmc_cqe_request_done +EXPORT_SYMBOL vmlinux 0x91817995 devm_pci_remap_cfgspace +EXPORT_SYMBOL vmlinux 0x918d5075 register_md_personality +EXPORT_SYMBOL vmlinux 0x9194ec23 mmc_wait_for_cmd +EXPORT_SYMBOL vmlinux 0x919bd03b xfrm_parse_spi EXPORT_SYMBOL vmlinux 0x919c58f3 __clzsi2 EXPORT_SYMBOL vmlinux 0x91a488ac __netdev_alloc_frag_align EXPORT_SYMBOL vmlinux 0x91a7b1da qdisc_class_hash_remove -EXPORT_SYMBOL vmlinux 0x91ae16dd netif_device_attach +EXPORT_SYMBOL vmlinux 0x91b48605 kernel_recvmsg EXPORT_SYMBOL vmlinux 0x91c0980e icst_hz -EXPORT_SYMBOL vmlinux 0x91e4f927 scsi_host_lookup EXPORT_SYMBOL vmlinux 0x91f44510 idr_alloc_cyclic EXPORT_SYMBOL vmlinux 0x91f68ea1 __hw_addr_sync -EXPORT_SYMBOL vmlinux 0x91f97dd1 page_pool_alloc_frag -EXPORT_SYMBOL vmlinux 0x92191bdd mini_qdisc_pair_init -EXPORT_SYMBOL vmlinux 0x92241ea2 simple_transaction_release +EXPORT_SYMBOL vmlinux 0x9209b200 ip6mr_rule_default +EXPORT_SYMBOL vmlinux 0x921539dd ip_mc_join_group EXPORT_SYMBOL vmlinux 0x922f45a6 __bitmap_clear -EXPORT_SYMBOL vmlinux 0x92328608 tcf_classify -EXPORT_SYMBOL vmlinux 0x9235e0ee pm_vt_switch_unregister EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get -EXPORT_SYMBOL vmlinux 0x92428cea backlight_device_get_by_name -EXPORT_SYMBOL vmlinux 0x924cf2e7 netdev_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0x924a9145 tcp_getsockopt EXPORT_SYMBOL vmlinux 0x92540fbf finish_wait EXPORT_SYMBOL vmlinux 0x9258c776 hdmi_vendor_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0x926235c7 genphy_read_mmd_unsupported -EXPORT_SYMBOL vmlinux 0x92623c7b dma_unmap_sg_attrs -EXPORT_SYMBOL vmlinux 0x9272db7b dev_addr_del EXPORT_SYMBOL vmlinux 0x92774cf8 __kfence_pool -EXPORT_SYMBOL vmlinux 0x928e2b14 dev_trans_start EXPORT_SYMBOL vmlinux 0x9291cd3b memdup_user EXPORT_SYMBOL vmlinux 0x92997ed8 _printk -EXPORT_SYMBOL vmlinux 0x92b7c03f pm860x_page_reg_write +EXPORT_SYMBOL vmlinux 0x929b73ba skb_copy_and_csum_bits +EXPORT_SYMBOL vmlinux 0x92b06561 of_graph_get_next_endpoint EXPORT_SYMBOL vmlinux 0x92b99a33 acpi_put_table EXPORT_SYMBOL vmlinux 0x92b9b180 slash_name EXPORT_SYMBOL vmlinux 0x92d5838e request_threaded_irq -EXPORT_SYMBOL vmlinux 0x92d7784e wait_on_page_bit -EXPORT_SYMBOL vmlinux 0x92df8e1b alloc_anon_inode +EXPORT_SYMBOL vmlinux 0x92dbe64f pcim_iounmap +EXPORT_SYMBOL vmlinux 0x92dcf9f2 jbd2_journal_init_dev EXPORT_SYMBOL vmlinux 0x92e683f5 down_timeout EXPORT_SYMBOL vmlinux 0x92ec510d jiffies64_to_msecs -EXPORT_SYMBOL vmlinux 0x92f6c503 netlink_capable +EXPORT_SYMBOL vmlinux 0x92f9eadc fault_in_iov_iter_writeable EXPORT_SYMBOL vmlinux 0x92fa5abb vme_lm_detach -EXPORT_SYMBOL vmlinux 0x9300cd05 netif_receive_skb EXPORT_SYMBOL vmlinux 0x93022ba6 __scsi_format_command EXPORT_SYMBOL vmlinux 0x9305f8e6 cpufreq_get -EXPORT_SYMBOL vmlinux 0x9318f2fe tty_port_destroy -EXPORT_SYMBOL vmlinux 0x9333e554 unregister_nexthop_notifier -EXPORT_SYMBOL vmlinux 0x9347b942 scm_fp_dup -EXPORT_SYMBOL vmlinux 0x935f437b simple_pin_fs -EXPORT_SYMBOL vmlinux 0x93717153 proc_set_size -EXPORT_SYMBOL vmlinux 0x937266e5 unpin_user_page_range_dirty_lock +EXPORT_SYMBOL vmlinux 0x9326dda3 inet_frag_find +EXPORT_SYMBOL vmlinux 0x932cfe6a iproc_msi_init +EXPORT_SYMBOL vmlinux 0x933e9ac1 config_item_get +EXPORT_SYMBOL vmlinux 0x9350ce7c jbd2_journal_check_used_features EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid -EXPORT_SYMBOL vmlinux 0x937e9c5a xfrm_policy_register_afinfo -EXPORT_SYMBOL vmlinux 0x938486b5 proto_register -EXPORT_SYMBOL vmlinux 0x938669b2 jbd2__journal_start -EXPORT_SYMBOL vmlinux 0x9399d828 tty_unregister_ldisc +EXPORT_SYMBOL vmlinux 0x937909d1 dquot_operations +EXPORT_SYMBOL vmlinux 0x937b5e05 dev_set_promiscuity EXPORT_SYMBOL vmlinux 0x93a6e0b2 io_schedule +EXPORT_SYMBOL vmlinux 0x93a6ff97 dev_driver_string EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x93b49608 unregister_fib_notifier +EXPORT_SYMBOL vmlinux 0x93bc700d get_cached_acl_rcu +EXPORT_SYMBOL vmlinux 0x93c71366 get_tz_trend EXPORT_SYMBOL vmlinux 0x93d6dd8c complete_all -EXPORT_SYMBOL vmlinux 0x93ed2d99 __phy_read_mmd +EXPORT_SYMBOL vmlinux 0x93ddb2af pskb_expand_head +EXPORT_SYMBOL vmlinux 0x93e066a6 tcf_exts_destroy +EXPORT_SYMBOL vmlinux 0x93e7da85 secpath_set +EXPORT_SYMBOL vmlinux 0x93edbd1f devm_backlight_device_unregister EXPORT_SYMBOL vmlinux 0x93f12561 nla_put -EXPORT_SYMBOL vmlinux 0x93f18dab of_node_get -EXPORT_SYMBOL vmlinux 0x93f4464f generic_file_direct_write +EXPORT_SYMBOL vmlinux 0x93f9e724 xfrm_policy_flush +EXPORT_SYMBOL vmlinux 0x9403dae4 alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0x94276a09 nf_log_packet EXPORT_SYMBOL vmlinux 0x9428f816 dim_turn -EXPORT_SYMBOL vmlinux 0x9430120a devfreq_unregister_opp_notifier -EXPORT_SYMBOL vmlinux 0x94339d07 finalize_exec +EXPORT_SYMBOL vmlinux 0x942991d1 input_mt_sync_frame +EXPORT_SYMBOL vmlinux 0x942dbeb1 devm_of_clk_del_provider EXPORT_SYMBOL vmlinux 0x944375db _totalram_pages -EXPORT_SYMBOL vmlinux 0x94458aa9 __alloc_skb EXPORT_SYMBOL vmlinux 0x944a564d is_console_locked -EXPORT_SYMBOL vmlinux 0x9481ae3e qdisc_put_unlocked +EXPORT_SYMBOL vmlinux 0x944b46f8 fb_get_mode +EXPORT_SYMBOL vmlinux 0x945c1634 nd_integrity_init +EXPORT_SYMBOL vmlinux 0x947bf89d sock_gettstamp +EXPORT_SYMBOL vmlinux 0x9480bc88 crypto_sha1_update +EXPORT_SYMBOL vmlinux 0x9483ea41 inet6_protos EXPORT_SYMBOL vmlinux 0x9487d3e1 ns_capable EXPORT_SYMBOL vmlinux 0x94961283 vunmap -EXPORT_SYMBOL vmlinux 0x94a9a537 scsi_scan_host +EXPORT_SYMBOL vmlinux 0x94a0a0ca add_to_page_cache_locked +EXPORT_SYMBOL vmlinux 0x94a995d9 phy_register_fixup +EXPORT_SYMBOL vmlinux 0x94aaa1ae flow_indr_dev_setup_offload +EXPORT_SYMBOL vmlinux 0x94ad3728 devfreq_monitor_start EXPORT_SYMBOL vmlinux 0x94bb7ec3 gen_pool_dma_zalloc_algo +EXPORT_SYMBOL vmlinux 0x94bca0b9 kernel_param_unlock EXPORT_SYMBOL vmlinux 0x94bf03ca utf8_to_utf32 -EXPORT_SYMBOL vmlinux 0x94c3973f tty_port_hangup -EXPORT_SYMBOL vmlinux 0x94d0e3d4 scsi_remove_device +EXPORT_SYMBOL vmlinux 0x94cd6324 neigh_event_ns EXPORT_SYMBOL vmlinux 0x94e50ad4 call_fib_notifier -EXPORT_SYMBOL vmlinux 0x94e85d64 phy_mii_ioctl -EXPORT_SYMBOL vmlinux 0x94f66d82 __frontswap_load -EXPORT_SYMBOL vmlinux 0x94f75e4e fb_firmware_edid +EXPORT_SYMBOL vmlinux 0x94f4b577 pci_iounmap EXPORT_SYMBOL vmlinux 0x94fc8d93 smp_call_function_many -EXPORT_SYMBOL vmlinux 0x94fcc909 get_thermal_instance +EXPORT_SYMBOL vmlinux 0x94fca923 skb_eth_push +EXPORT_SYMBOL vmlinux 0x94ff09cf trace_event_printf EXPORT_SYMBOL vmlinux 0x9507c90f copy_fsxattr_to_user -EXPORT_SYMBOL vmlinux 0x9515ab5f setup_arg_pages -EXPORT_SYMBOL vmlinux 0x9522534d __remove_inode_hash -EXPORT_SYMBOL vmlinux 0x95310e75 param_get_invbool +EXPORT_SYMBOL vmlinux 0x950df18b filemap_invalidate_unlock_two +EXPORT_SYMBOL vmlinux 0x9516774e dquot_file_open +EXPORT_SYMBOL vmlinux 0x9516911a security_unix_may_send +EXPORT_SYMBOL vmlinux 0x953caa43 blk_mq_tagset_wait_completed_request EXPORT_SYMBOL vmlinux 0x954cef6f init_on_alloc EXPORT_SYMBOL vmlinux 0x954f099c idr_preload -EXPORT_SYMBOL vmlinux 0x955b1f9e thaw_super -EXPORT_SYMBOL vmlinux 0x957fb44c dump_page -EXPORT_SYMBOL vmlinux 0x95a553b0 of_device_unregister -EXPORT_SYMBOL vmlinux 0x95a59265 dev_mc_sync +EXPORT_SYMBOL vmlinux 0x957b0df0 finalize_exec +EXPORT_SYMBOL vmlinux 0x9586e017 ipv4_specific +EXPORT_SYMBOL vmlinux 0x958b6797 blkdev_issue_flush +EXPORT_SYMBOL vmlinux 0x959cae21 tcp_shutdown EXPORT_SYMBOL vmlinux 0x95a67b07 udp_table -EXPORT_SYMBOL vmlinux 0x95b212b9 ipv6_dev_mc_inc -EXPORT_SYMBOL vmlinux 0x95bfece4 flow_rule_match_tcp -EXPORT_SYMBOL vmlinux 0x95ee9556 __cleancache_init_shared_fs -EXPORT_SYMBOL vmlinux 0x95f0d8e3 ilookup5 -EXPORT_SYMBOL vmlinux 0x95f463cc page_readlink -EXPORT_SYMBOL vmlinux 0x9600e973 phy_start_cable_test_tdr -EXPORT_SYMBOL vmlinux 0x960fd55b skb_dequeue_tail -EXPORT_SYMBOL vmlinux 0x962caac1 qman_start_using_portal -EXPORT_SYMBOL vmlinux 0x96312050 trace_event_printf -EXPORT_SYMBOL vmlinux 0x96355a9c scm_detach_fds -EXPORT_SYMBOL vmlinux 0x96637811 pipe_unlock -EXPORT_SYMBOL vmlinux 0x96720e48 rtnl_link_get_net +EXPORT_SYMBOL vmlinux 0x95befda5 skb_coalesce_rx_frag +EXPORT_SYMBOL vmlinux 0x95c4024e fib6_info_hw_flags_set +EXPORT_SYMBOL vmlinux 0x95c6cfd8 md_bitmap_start_sync +EXPORT_SYMBOL vmlinux 0x95d22914 scsi_free_host_dev +EXPORT_SYMBOL vmlinux 0x95d8413d jbd2_journal_wipe +EXPORT_SYMBOL vmlinux 0x95e55ff5 qman_get_qm_portal_config +EXPORT_SYMBOL vmlinux 0x960c3322 dquot_reclaim_space_nodirty +EXPORT_SYMBOL vmlinux 0x96102214 jbd2_journal_release_jbd_inode +EXPORT_SYMBOL vmlinux 0x961c0e23 twl6040_reg_write +EXPORT_SYMBOL vmlinux 0x96302d58 dma_map_page_attrs +EXPORT_SYMBOL vmlinux 0x963263c0 blk_queue_bounce_limit +EXPORT_SYMBOL vmlinux 0x964bb2f9 of_find_node_with_property +EXPORT_SYMBOL vmlinux 0x965190d6 generic_file_mmap EXPORT_SYMBOL vmlinux 0x96848186 scnprintf EXPORT_SYMBOL vmlinux 0x9688de8b memstart_addr -EXPORT_SYMBOL vmlinux 0x96a1dea3 ipv6_skip_exthdr -EXPORT_SYMBOL vmlinux 0x96a4e656 inet_dgram_connect +EXPORT_SYMBOL vmlinux 0x96934fcb kill_block_super +EXPORT_SYMBOL vmlinux 0x96957e68 current_in_userns +EXPORT_SYMBOL vmlinux 0x96a18de0 ppp_output_wakeup +EXPORT_SYMBOL vmlinux 0x96a4d66a inet_dev_addr_type EXPORT_SYMBOL vmlinux 0x96b29254 strncasecmp -EXPORT_SYMBOL vmlinux 0x96b6284f of_get_next_parent -EXPORT_SYMBOL vmlinux 0x96bd8805 ipv6_dev_find EXPORT_SYMBOL vmlinux 0x96c17136 fb_var_to_videomode EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string -EXPORT_SYMBOL vmlinux 0x96e562ec tegra_dfll_suspend +EXPORT_SYMBOL vmlinux 0x96d1b435 ip_sock_set_tos +EXPORT_SYMBOL vmlinux 0x96d96abc gnet_stats_copy_basic_hw EXPORT_SYMBOL vmlinux 0x96e5d30f gen_pool_set_algo +EXPORT_SYMBOL vmlinux 0x96ea95f5 ipv6_chk_custom_prefix EXPORT_SYMBOL vmlinux 0x96fab350 dim_park_on_top -EXPORT_SYMBOL vmlinux 0x97009909 dquot_quota_on -EXPORT_SYMBOL vmlinux 0x97060037 blk_integrity_compare -EXPORT_SYMBOL vmlinux 0x9708f3c6 iov_iter_get_pages -EXPORT_SYMBOL vmlinux 0x9717043e kmem_cache_free_bulk -EXPORT_SYMBOL vmlinux 0x97217423 sk_reset_timer -EXPORT_SYMBOL vmlinux 0x9726b886 bio_chain +EXPORT_SYMBOL vmlinux 0x96fb5e26 add_watch_to_object +EXPORT_SYMBOL vmlinux 0x96ff5dad xfrm_state_add +EXPORT_SYMBOL vmlinux 0x9703e256 cookie_timestamp_decode +EXPORT_SYMBOL vmlinux 0x970aa8e5 page_readlink +EXPORT_SYMBOL vmlinux 0x97123b5e security_inet_conn_established +EXPORT_SYMBOL vmlinux 0x9726744a of_find_device_by_node +EXPORT_SYMBOL vmlinux 0x97346440 udplite_prot EXPORT_SYMBOL vmlinux 0x973fa82e register_acpi_notifier +EXPORT_SYMBOL vmlinux 0x97454b5b try_to_release_page +EXPORT_SYMBOL vmlinux 0x9746156f dquot_destroy EXPORT_SYMBOL vmlinux 0x9746eb89 ZSTD_decompressBegin_usingDict -EXPORT_SYMBOL vmlinux 0x974acfe6 locks_copy_lock -EXPORT_SYMBOL vmlinux 0x974ec690 inode_insert5 -EXPORT_SYMBOL vmlinux 0x976446db framebuffer_release -EXPORT_SYMBOL vmlinux 0x9765ba48 udp_ioctl -EXPORT_SYMBOL vmlinux 0x97666cee con_set_default_unimap -EXPORT_SYMBOL vmlinux 0x97784563 dma_map_sg_attrs +EXPORT_SYMBOL vmlinux 0x97558bc0 devm_request_threaded_irq +EXPORT_SYMBOL vmlinux 0x9765eddc blk_rq_map_user EXPORT_SYMBOL vmlinux 0x97934ecf del_timer_sync -EXPORT_SYMBOL vmlinux 0x97986bd9 __cgroup_bpf_run_filter_sock_ops EXPORT_SYMBOL vmlinux 0x97a57333 crc_t10dif_update +EXPORT_SYMBOL vmlinux 0x97a91dcb dquot_quota_sync EXPORT_SYMBOL vmlinux 0x97adb487 utf8s_to_utf16s -EXPORT_SYMBOL vmlinux 0x97b2d952 qman_get_qm_portal_config +EXPORT_SYMBOL vmlinux 0x97ba8aa1 napi_gro_frags EXPORT_SYMBOL vmlinux 0x97bdfa60 scsi_dev_info_remove_list -EXPORT_SYMBOL vmlinux 0x97d23fa8 devm_memremap +EXPORT_SYMBOL vmlinux 0x97ccbeee netdev_change_features EXPORT_SYMBOL vmlinux 0x97e2789a commit_creds EXPORT_SYMBOL vmlinux 0x97ed2212 __tracepoint_spi_transfer_start -EXPORT_SYMBOL vmlinux 0x9803fe89 find_inode_rcu -EXPORT_SYMBOL vmlinux 0x9810e95c jbd2_journal_ack_err -EXPORT_SYMBOL vmlinux 0x9827b2d4 pneigh_lookup +EXPORT_SYMBOL vmlinux 0x97ef613b of_phy_deregister_fixed_link EXPORT_SYMBOL vmlinux 0x9829fc11 __kfifo_out_peek_r EXPORT_SYMBOL vmlinux 0x982bcde4 __cpu_dying_mask -EXPORT_SYMBOL vmlinux 0x982d79a7 tcf_action_dump_1 -EXPORT_SYMBOL vmlinux 0x982db9f2 __sk_backlog_rcv -EXPORT_SYMBOL vmlinux 0x9835de21 devfreq_resume_device -EXPORT_SYMBOL vmlinux 0x9838289c __vfs_getxattr -EXPORT_SYMBOL vmlinux 0x983d1355 genphy_soft_reset -EXPORT_SYMBOL vmlinux 0x9846921e vlan_dev_vlan_proto -EXPORT_SYMBOL vmlinux 0x985ef44d flow_rule_match_enc_ipv6_addrs -EXPORT_SYMBOL vmlinux 0x986463ab mmc_retune_pause -EXPORT_SYMBOL vmlinux 0x986894f2 bio_kmalloc -EXPORT_SYMBOL vmlinux 0x9868bbe7 tcp_fastopen_defer_connect +EXPORT_SYMBOL vmlinux 0x9832553e __inc_zone_page_state +EXPORT_SYMBOL vmlinux 0x984b8e05 dquot_get_dqblk +EXPORT_SYMBOL vmlinux 0x9859a460 netdev_class_remove_file_ns +EXPORT_SYMBOL vmlinux 0x985f6201 skb_kill_datagram +EXPORT_SYMBOL vmlinux 0x98616bca __dquot_alloc_space +EXPORT_SYMBOL vmlinux 0x98832e2c vme_unregister_driver +EXPORT_SYMBOL vmlinux 0x9887b424 netdev_adjacent_change_prepare +EXPORT_SYMBOL vmlinux 0x98a0ce84 dev_addr_init +EXPORT_SYMBOL vmlinux 0x98b68682 mipi_dsi_detach EXPORT_SYMBOL vmlinux 0x98c039dc dma_fence_wait_timeout -EXPORT_SYMBOL vmlinux 0x98c6c0e1 neigh_sysctl_unregister +EXPORT_SYMBOL vmlinux 0x98c5589d fscrypt_decrypt_bio EXPORT_SYMBOL vmlinux 0x98c89ade security_xfrm_state_alloc EXPORT_SYMBOL vmlinux 0x98cf60b3 strlen -EXPORT_SYMBOL vmlinux 0x98d616b4 input_set_poll_interval -EXPORT_SYMBOL vmlinux 0x98de735a devm_devfreq_unregister_notifier -EXPORT_SYMBOL vmlinux 0x98e3d7c1 stream_open +EXPORT_SYMBOL vmlinux 0x98ddcfa7 xfrm_input EXPORT_SYMBOL vmlinux 0x98e508ef ignore_console_lock_warning -EXPORT_SYMBOL vmlinux 0x98f60aa6 mmc_wait_for_cmd +EXPORT_SYMBOL vmlinux 0x98ea512a pci_unregister_driver +EXPORT_SYMBOL vmlinux 0x98f1a698 __insert_inode_hash +EXPORT_SYMBOL vmlinux 0x98f3d5db security_sock_rcv_skb +EXPORT_SYMBOL vmlinux 0x98fa53b5 pci_wake_from_d3 +EXPORT_SYMBOL vmlinux 0x9905a1bf sk_stream_wait_close +EXPORT_SYMBOL vmlinux 0x9906c3b8 unlock_two_nondirectories EXPORT_SYMBOL vmlinux 0x99078b39 trace_print_flags_seq +EXPORT_SYMBOL vmlinux 0x99079fcc mmc_free_host EXPORT_SYMBOL vmlinux 0x99094fb2 qcom_scm_is_available -EXPORT_SYMBOL vmlinux 0x9911da70 jbd2_journal_start -EXPORT_SYMBOL vmlinux 0x9923bf1f sock_dequeue_err_skb -EXPORT_SYMBOL vmlinux 0x99315f35 md_register_thread EXPORT_SYMBOL vmlinux 0x9931f8c9 qcom_scm_lmh_dcvsh_available +EXPORT_SYMBOL vmlinux 0x99331459 netdev_features_change EXPORT_SYMBOL vmlinux 0x9939eba0 backlight_unregister_notifier -EXPORT_SYMBOL vmlinux 0x993c3ec4 sk_common_release -EXPORT_SYMBOL vmlinux 0x9942b990 tcf_block_put_ext -EXPORT_SYMBOL vmlinux 0x994b0a8b sock_efree -EXPORT_SYMBOL vmlinux 0x994cb965 pin_user_pages_locked +EXPORT_SYMBOL vmlinux 0x993b8e45 pcim_iounmap_regions EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable -EXPORT_SYMBOL vmlinux 0x996ecdc0 flow_indr_block_cb_alloc -EXPORT_SYMBOL vmlinux 0x99722439 inet_csk_clear_xmit_timers +EXPORT_SYMBOL vmlinux 0x9956ef81 bio_advance EXPORT_SYMBOL vmlinux 0x9975dc22 acpi_get_handle -EXPORT_SYMBOL vmlinux 0x998264a4 filemap_fdatawait_range -EXPORT_SYMBOL vmlinux 0x998950f2 netif_rx_any_context -EXPORT_SYMBOL vmlinux 0x99951cc6 skb_find_text -EXPORT_SYMBOL vmlinux 0x999577cc netif_schedule_queue +EXPORT_SYMBOL vmlinux 0x997cae41 input_register_device +EXPORT_SYMBOL vmlinux 0x99840824 devm_mfd_add_devices +EXPORT_SYMBOL vmlinux 0x9993ad6a skb_trim +EXPORT_SYMBOL vmlinux 0x99941c51 amba_request_regions +EXPORT_SYMBOL vmlinux 0x999719bb tcp_init_sock EXPORT_SYMBOL vmlinux 0x999e8297 vfree -EXPORT_SYMBOL vmlinux 0x99a1bf2c mipi_dsi_compression_mode -EXPORT_SYMBOL vmlinux 0x99c3cb57 devfreq_add_governor -EXPORT_SYMBOL vmlinux 0x99c4d5e7 mdio_driver_register -EXPORT_SYMBOL vmlinux 0x99c6cbc6 nf_ct_get_tuple_skb -EXPORT_SYMBOL vmlinux 0x99c9b21a inet_put_port +EXPORT_SYMBOL vmlinux 0x99b66f3a __dec_zone_page_state +EXPORT_SYMBOL vmlinux 0x99c66adf vme_dma_request +EXPORT_SYMBOL vmlinux 0x99cadf53 generic_splice_sendpage EXPORT_SYMBOL vmlinux 0x99d472b1 net_dim_get_rx_moderation -EXPORT_SYMBOL vmlinux 0x99d8cfe7 tcp_seq_stop EXPORT_SYMBOL vmlinux 0x99daa9bf try_offline_node -EXPORT_SYMBOL vmlinux 0x99dcf8be hash_and_copy_to_iter -EXPORT_SYMBOL vmlinux 0x99e74124 textsearch_find_continuous +EXPORT_SYMBOL vmlinux 0x99dfc0e0 tcp_simple_retransmit EXPORT_SYMBOL vmlinux 0x99f7371c refcount_dec_and_mutex_lock EXPORT_SYMBOL vmlinux 0x99f9638f __napi_alloc_frag_align +EXPORT_SYMBOL vmlinux 0x9a04c6d9 skb_expand_head EXPORT_SYMBOL vmlinux 0x9a0c3a18 vme_unregister_error_handler -EXPORT_SYMBOL vmlinux 0x9a115756 mpage_readahead -EXPORT_SYMBOL vmlinux 0x9a19ec50 make_flow_keys_digest +EXPORT_SYMBOL vmlinux 0x9a0f46d4 pci_get_class +EXPORT_SYMBOL vmlinux 0x9a13f4a3 param_get_int EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk -EXPORT_SYMBOL vmlinux 0x9a213fb6 tty_hung_up_p EXPORT_SYMBOL vmlinux 0x9a22391e radix_tree_gang_lookup_tag_slot -EXPORT_SYMBOL vmlinux 0x9a4186cb of_device_register +EXPORT_SYMBOL vmlinux 0x9a25c88f file_remove_privs +EXPORT_SYMBOL vmlinux 0x9a338e0a gro_cells_receive EXPORT_SYMBOL vmlinux 0x9a583306 netlbl_bitmap_walk -EXPORT_SYMBOL vmlinux 0x9a633a64 xfrm_state_lookup_byspi +EXPORT_SYMBOL vmlinux 0x9a5d5d21 unpin_user_pages +EXPORT_SYMBOL vmlinux 0x9a5f5ca7 devm_rproc_add +EXPORT_SYMBOL vmlinux 0x9a6a1bce bpf_prog_get_type_path EXPORT_SYMBOL vmlinux 0x9a73b032 ZSTD_initDStream_usingDDict -EXPORT_SYMBOL vmlinux 0x9a7fbd3b __pagevec_release -EXPORT_SYMBOL vmlinux 0x9a9aa63e acpi_device_set_power -EXPORT_SYMBOL vmlinux 0x9aa69327 fscrypt_fname_disk_to_usr +EXPORT_SYMBOL vmlinux 0x9a764820 xfrm_state_lookup +EXPORT_SYMBOL vmlinux 0x9a84449e dcb_ieee_getapp_mask +EXPORT_SYMBOL vmlinux 0x9a88ced2 acpi_device_hid +EXPORT_SYMBOL vmlinux 0x9a9776c6 simple_open +EXPORT_SYMBOL vmlinux 0x9aa3b67a debugfs_create_automount EXPORT_SYMBOL vmlinux 0x9aaeefce sysctl_nf_log_all_netns -EXPORT_SYMBOL vmlinux 0x9ab1c56e __skb_recv_datagram -EXPORT_SYMBOL vmlinux 0x9ac4e0d7 dquot_acquire +EXPORT_SYMBOL vmlinux 0x9abf892c cdrom_number_of_slots +EXPORT_SYMBOL vmlinux 0x9ac748f7 netdev_set_tc_queue EXPORT_SYMBOL vmlinux 0x9ae47436 _find_last_bit -EXPORT_SYMBOL vmlinux 0x9af43bba param_get_ulong +EXPORT_SYMBOL vmlinux 0x9aeba74e stop_tty +EXPORT_SYMBOL vmlinux 0x9b03c1ca filemap_page_mkwrite +EXPORT_SYMBOL vmlinux 0x9b07f79c kernel_sendmsg_locked +EXPORT_SYMBOL vmlinux 0x9b0a700a mdiobus_scan EXPORT_SYMBOL vmlinux 0x9b128a66 qcom_scm_set_remote_state -EXPORT_SYMBOL vmlinux 0x9b23e200 xp_free EXPORT_SYMBOL vmlinux 0x9b2560b9 gf128mul_init_4k_bbe -EXPORT_SYMBOL vmlinux 0x9b26b573 __page_symlink -EXPORT_SYMBOL vmlinux 0x9b2a494e devfreq_suspend_device +EXPORT_SYMBOL vmlinux 0x9b299865 max8998_read_reg EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier -EXPORT_SYMBOL vmlinux 0x9b403b2f __page_frag_cache_drain +EXPORT_SYMBOL vmlinux 0x9b37c644 i2c_smbus_read_byte EXPORT_SYMBOL vmlinux 0x9b420478 utf8_strncasecmp -EXPORT_SYMBOL vmlinux 0x9b443ec1 proc_create_data -EXPORT_SYMBOL vmlinux 0x9b4505f0 sock_set_reuseport +EXPORT_SYMBOL vmlinux 0x9b424407 __block_write_full_page +EXPORT_SYMBOL vmlinux 0x9b46826e ethtool_notify EXPORT_SYMBOL vmlinux 0x9b496b21 posix_acl_alloc -EXPORT_SYMBOL vmlinux 0x9b58e6fe md_bitmap_end_sync -EXPORT_SYMBOL vmlinux 0x9b5b760b pci_choose_state -EXPORT_SYMBOL vmlinux 0x9b6836eb tty_port_raise_dtr_rts +EXPORT_SYMBOL vmlinux 0x9b648f96 jbd2_fc_begin_commit EXPORT_SYMBOL vmlinux 0x9b6c724e xudma_pktdma_tflow_get_irq +EXPORT_SYMBOL vmlinux 0x9b6f2919 netdev_rx_csum_fault +EXPORT_SYMBOL vmlinux 0x9b723b96 iget_failed EXPORT_SYMBOL vmlinux 0x9b72478f acpi_unload_parent_table -EXPORT_SYMBOL vmlinux 0x9b7d62d3 inet6_del_offload -EXPORT_SYMBOL vmlinux 0x9b9cc76a xfrm_state_delete_tunnel -EXPORT_SYMBOL vmlinux 0x9bb52602 md_set_array_sectors -EXPORT_SYMBOL vmlinux 0x9bc0a8d9 mipi_dsi_dcs_enter_sleep_mode -EXPORT_SYMBOL vmlinux 0x9bdc8397 tty_unregister_device -EXPORT_SYMBOL vmlinux 0x9be6167e kthread_create_worker_on_cpu -EXPORT_SYMBOL vmlinux 0x9bec5158 __mod_lruvec_page_state -EXPORT_SYMBOL vmlinux 0x9c0b432a vfs_symlink -EXPORT_SYMBOL vmlinux 0x9c0c3a96 flow_rule_match_enc_keyid -EXPORT_SYMBOL vmlinux 0x9c0c8279 xfrm_lookup_with_ifid +EXPORT_SYMBOL vmlinux 0x9b81dc6e sk_wait_data +EXPORT_SYMBOL vmlinux 0x9b873738 migrate_page_copy +EXPORT_SYMBOL vmlinux 0x9b9d07a9 set_bdi_congested +EXPORT_SYMBOL vmlinux 0x9be3db8d register_netdev +EXPORT_SYMBOL vmlinux 0x9beb104c pagecache_get_page +EXPORT_SYMBOL vmlinux 0x9beff4a9 fs_context_for_reconfigure +EXPORT_SYMBOL vmlinux 0x9bf0a723 input_unregister_handle +EXPORT_SYMBOL vmlinux 0x9bfc0060 scsi_bios_ptable +EXPORT_SYMBOL vmlinux 0x9c0700b2 gnet_stats_copy_app EXPORT_SYMBOL vmlinux 0x9c122bcf mempool_create_node +EXPORT_SYMBOL vmlinux 0x9c1d9b2b __traceiter_spi_transfer_start EXPORT_SYMBOL vmlinux 0x9c1e5bf5 queued_spin_lock_slowpath -EXPORT_SYMBOL vmlinux 0x9c29ffba netdev_lower_get_next_private_rcu -EXPORT_SYMBOL vmlinux 0x9c2b9cb4 dquot_reclaim_space_nodirty -EXPORT_SYMBOL vmlinux 0x9c47111f mark_buffer_dirty_inode +EXPORT_SYMBOL vmlinux 0x9c334697 __starget_for_each_device EXPORT_SYMBOL vmlinux 0x9c5a2ada ucc_fast_dump_regs +EXPORT_SYMBOL vmlinux 0x9c5ae8ae dev_mc_del EXPORT_SYMBOL vmlinux 0x9c5d5b94 crc8 +EXPORT_SYMBOL vmlinux 0x9c762670 pci_irq_get_affinity EXPORT_SYMBOL vmlinux 0x9c86b9ab fileattr_fill_flags -EXPORT_SYMBOL vmlinux 0x9c8b6f61 netdev_bonding_info_change -EXPORT_SYMBOL vmlinux 0x9c9f8a77 inode_get_bytes -EXPORT_SYMBOL vmlinux 0x9ca2e041 rproc_of_resm_mem_entry_init -EXPORT_SYMBOL vmlinux 0x9ca58eaf __generic_file_write_iter +EXPORT_SYMBOL vmlinux 0x9c9cec10 con_is_visible +EXPORT_SYMBOL vmlinux 0x9ca217a7 misc_register +EXPORT_SYMBOL vmlinux 0x9ca9be28 nf_getsockopt +EXPORT_SYMBOL vmlinux 0x9caa0bff sock_no_sendmsg_locked EXPORT_SYMBOL vmlinux 0x9cab34a6 rfkill_set_led_trigger_name +EXPORT_SYMBOL vmlinux 0x9cb5d356 generic_file_fsync +EXPORT_SYMBOL vmlinux 0x9cc1ac67 ucc_of_parse_tdm +EXPORT_SYMBOL vmlinux 0x9ccccc04 blk_queue_max_discard_sectors EXPORT_SYMBOL vmlinux 0x9ccf7171 vme_dma_pci_attribute -EXPORT_SYMBOL vmlinux 0x9cd18b0e lease_modify EXPORT_SYMBOL vmlinux 0x9cd91791 register_sysctl -EXPORT_SYMBOL vmlinux 0x9cdf5492 mroute6_is_socket EXPORT_SYMBOL vmlinux 0x9cdfb3f7 sysctl_fb_tunnels_only_for_init_net -EXPORT_SYMBOL vmlinux 0x9cea6666 nobh_writepage -EXPORT_SYMBOL vmlinux 0x9d03a285 generic_error_remove_page -EXPORT_SYMBOL vmlinux 0x9d08d62c __check_sticky +EXPORT_SYMBOL vmlinux 0x9ce44c54 of_find_node_by_type +EXPORT_SYMBOL vmlinux 0x9cf2cf07 cdrom_get_last_written +EXPORT_SYMBOL vmlinux 0x9cfedb76 netpoll_cleanup +EXPORT_SYMBOL vmlinux 0x9d034b02 tcf_idr_create_from_flags +EXPORT_SYMBOL vmlinux 0x9d07ccc8 try_to_free_buffers EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier EXPORT_SYMBOL vmlinux 0x9d1a5e3a __memcpy -EXPORT_SYMBOL vmlinux 0x9d221fb7 iov_iter_kvec +EXPORT_SYMBOL vmlinux 0x9d1c5403 pci_alloc_host_bridge EXPORT_SYMBOL vmlinux 0x9d250156 __nla_put EXPORT_SYMBOL vmlinux 0x9d2ab8ac __tasklet_schedule -EXPORT_SYMBOL vmlinux 0x9d2b6985 param_set_ullong EXPORT_SYMBOL vmlinux 0x9d2e7707 unregister_sysrq_key -EXPORT_SYMBOL vmlinux 0x9d3187be jbd2_journal_get_create_access +EXPORT_SYMBOL vmlinux 0x9d41ea09 mipi_dsi_dcs_nop EXPORT_SYMBOL vmlinux 0x9d61e994 ucs2_strncmp -EXPORT_SYMBOL vmlinux 0x9d8233d9 proc_symlink -EXPORT_SYMBOL vmlinux 0x9d89b456 generic_file_write_iter -EXPORT_SYMBOL vmlinux 0x9d8b4e2e inet_csk_reqsk_queue_drop +EXPORT_SYMBOL vmlinux 0x9d627c9a filemap_fdatawrite +EXPORT_SYMBOL vmlinux 0x9d688eae pci_bus_add_devices +EXPORT_SYMBOL vmlinux 0x9d6f0c18 pcim_iomap_regions_request_all +EXPORT_SYMBOL vmlinux 0x9d85a036 __skb_get_hash +EXPORT_SYMBOL vmlinux 0x9d89c54b fwnode_mdiobus_phy_device_register EXPORT_SYMBOL vmlinux 0x9d92f3ad __wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0x9d9410fb inet_unregister_protosw +EXPORT_SYMBOL vmlinux 0x9d95af6f msm_pinctrl_dev_pm_ops EXPORT_SYMBOL vmlinux 0x9d97ab2c audit_log_object_context -EXPORT_SYMBOL vmlinux 0x9da4afb5 __napi_schedule -EXPORT_SYMBOL vmlinux 0x9da77f8c xattr_supported_namespace -EXPORT_SYMBOL vmlinux 0x9db25f0d dentry_path_raw -EXPORT_SYMBOL vmlinux 0x9dee4e3c mmc_remove_host -EXPORT_SYMBOL vmlinux 0x9df08634 flow_block_cb_lookup +EXPORT_SYMBOL vmlinux 0x9dae5c25 seq_read +EXPORT_SYMBOL vmlinux 0x9dbb92e2 read_cache_page +EXPORT_SYMBOL vmlinux 0x9dc74472 vme_irq_request +EXPORT_SYMBOL vmlinux 0x9dc9b203 __pagevec_release +EXPORT_SYMBOL vmlinux 0x9dcc0619 softnet_data +EXPORT_SYMBOL vmlinux 0x9ddd49eb __free_pages +EXPORT_SYMBOL vmlinux 0x9de5b87a bio_reset +EXPORT_SYMBOL vmlinux 0x9de5e04f i2c_del_adapter EXPORT_SYMBOL vmlinux 0x9df21d0e qman_affine_channel +EXPORT_SYMBOL vmlinux 0x9dfb43da md_update_sb +EXPORT_SYMBOL vmlinux 0x9dfc2568 inet_register_protosw +EXPORT_SYMBOL vmlinux 0x9dfed409 __lock_buffer EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node EXPORT_SYMBOL vmlinux 0x9e0fa5ae hsiphash_3u32 EXPORT_SYMBOL vmlinux 0x9e13f6f6 gf128mul_lle EXPORT_SYMBOL vmlinux 0x9e2737f0 acpi_install_interface_handler -EXPORT_SYMBOL vmlinux 0x9e2cf032 mipi_dsi_detach -EXPORT_SYMBOL vmlinux 0x9e40cee3 irq_set_chip EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy -EXPORT_SYMBOL vmlinux 0x9e5dc4b3 mmc_cqe_post_req EXPORT_SYMBOL vmlinux 0x9e5e750d node_to_cpumask_map -EXPORT_SYMBOL vmlinux 0x9e60803c inet6_add_protocol EXPORT_SYMBOL vmlinux 0x9e61bb05 set_freezable -EXPORT_SYMBOL vmlinux 0x9e6a4c1d phy_aneg_done -EXPORT_SYMBOL vmlinux 0x9e6d90fe mmc_can_discard -EXPORT_SYMBOL vmlinux 0x9e714643 mipi_dsi_driver_register_full -EXPORT_SYMBOL vmlinux 0x9e771820 nf_hook_slow +EXPORT_SYMBOL vmlinux 0x9e646f53 ip_do_fragment EXPORT_SYMBOL vmlinux 0x9e7d6bd0 __udelay -EXPORT_SYMBOL vmlinux 0x9e8ff7e4 netdev_features_change -EXPORT_SYMBOL vmlinux 0x9e90266e devm_mfd_add_devices -EXPORT_SYMBOL vmlinux 0x9e968679 md_write_start EXPORT_SYMBOL vmlinux 0x9e99837e __nla_put_64bit EXPORT_SYMBOL vmlinux 0x9e9eab95 devcgroup_check_permission EXPORT_SYMBOL vmlinux 0x9e9fdd9d memunmap EXPORT_SYMBOL vmlinux 0x9eacf8a5 kstrndup +EXPORT_SYMBOL vmlinux 0x9eadf3e9 tcp_rtx_synack EXPORT_SYMBOL vmlinux 0x9eb187fa xudma_pktdma_rflow_get_irq EXPORT_SYMBOL vmlinux 0x9ec0e639 twl6030_interrupt_unmask -EXPORT_SYMBOL vmlinux 0x9ec2485b inet_sk_rx_dst_set EXPORT_SYMBOL vmlinux 0x9ec6ca96 ktime_get_real_ts64 +EXPORT_SYMBOL vmlinux 0x9ec8c074 neigh_sysctl_register +EXPORT_SYMBOL vmlinux 0x9ed24d62 vma_set_file EXPORT_SYMBOL vmlinux 0x9ed7c847 brcmstb_get_family_id EXPORT_SYMBOL vmlinux 0x9ed978de vme_lm_set -EXPORT_SYMBOL vmlinux 0x9efa3c39 ppp_output_wakeup -EXPORT_SYMBOL vmlinux 0x9f0ea71e I_BDEV -EXPORT_SYMBOL vmlinux 0x9f25948a watchdog_register_governor -EXPORT_SYMBOL vmlinux 0x9f30c0aa input_set_abs_params -EXPORT_SYMBOL vmlinux 0x9f37dfec register_nexthop_notifier +EXPORT_SYMBOL vmlinux 0x9efb3825 tegra_dfll_resume +EXPORT_SYMBOL vmlinux 0x9f2238f8 iptun_encaps +EXPORT_SYMBOL vmlinux 0x9f2854b9 dev_addr_del +EXPORT_SYMBOL vmlinux 0x9f2c8a93 vlan_dev_vlan_id +EXPORT_SYMBOL vmlinux 0x9f3decf1 phy_aneg_done EXPORT_SYMBOL vmlinux 0x9f46ced8 __sw_hweight64 +EXPORT_SYMBOL vmlinux 0x9f4e37cd pm860x_bulk_read EXPORT_SYMBOL vmlinux 0x9f4f2aa3 acpi_gbl_FADT -EXPORT_SYMBOL vmlinux 0x9f508b72 seq_read_iter EXPORT_SYMBOL vmlinux 0x9f50b770 keyring_restrict EXPORT_SYMBOL vmlinux 0x9f54ead7 gro_cells_destroy -EXPORT_SYMBOL vmlinux 0x9f6075bc uart_get_baud_rate -EXPORT_SYMBOL vmlinux 0x9f688cd6 __sk_mem_schedule -EXPORT_SYMBOL vmlinux 0x9f72ccdd pci_fixup_cardbus -EXPORT_SYMBOL vmlinux 0x9f74b9e1 __skb_vlan_pop -EXPORT_SYMBOL vmlinux 0x9f785ca3 pci_clear_master +EXPORT_SYMBOL vmlinux 0x9f58da9c ip_generic_getfrag +EXPORT_SYMBOL vmlinux 0x9f602ac5 tty_driver_kref_put EXPORT_SYMBOL vmlinux 0x9f7d7dbb logic_outsw -EXPORT_SYMBOL vmlinux 0x9f7e5d64 input_mt_report_pointer_emulation -EXPORT_SYMBOL vmlinux 0x9f872108 tcf_chain_put_by_act -EXPORT_SYMBOL vmlinux 0x9f8ca9a9 skb_free_datagram -EXPORT_SYMBOL vmlinux 0x9f8cc50f sched_autogroup_create_attach +EXPORT_SYMBOL vmlinux 0x9f97b7df acpi_bus_unregister_driver EXPORT_SYMBOL vmlinux 0x9f984513 strrchr -EXPORT_SYMBOL vmlinux 0x9f9a440b scsi_remove_host -EXPORT_SYMBOL vmlinux 0x9f9f1bcb pci_get_slot +EXPORT_SYMBOL vmlinux 0x9f9c2593 has_capability EXPORT_SYMBOL vmlinux 0x9fa7184a cancel_delayed_work_sync -EXPORT_SYMBOL vmlinux 0x9fc09d8b fb_set_suspend +EXPORT_SYMBOL vmlinux 0x9fb18bd3 security_sb_clone_mnt_opts +EXPORT_SYMBOL vmlinux 0x9fbdc8fc genl_notify +EXPORT_SYMBOL vmlinux 0x9fca2ed2 tcf_block_get_ext +EXPORT_SYMBOL vmlinux 0x9fd2a45b fault_in_iov_iter_readable +EXPORT_SYMBOL vmlinux 0x9fd33200 i2c_get_adapter EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many -EXPORT_SYMBOL vmlinux 0x9fe0ff89 sock_set_rcvbuf -EXPORT_SYMBOL vmlinux 0x9fee5245 devfreq_remove_device EXPORT_SYMBOL vmlinux 0x9feed7ce timer_reduce -EXPORT_SYMBOL vmlinux 0x9ff7e43a sunxi_sram_release +EXPORT_SYMBOL vmlinux 0x9ff5e9fc posix_lock_file EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog -EXPORT_SYMBOL vmlinux 0xa00a705f skb_flow_dissect_meta +EXPORT_SYMBOL vmlinux 0x9ffb63ba fman_set_mac_max_frame +EXPORT_SYMBOL vmlinux 0x9ffba313 blk_queue_virt_boundary EXPORT_SYMBOL vmlinux 0xa00aca2a dql_completed -EXPORT_SYMBOL vmlinux 0xa00afb8e __skb_checksum_complete -EXPORT_SYMBOL vmlinux 0xa00f8423 mmc_detect_change +EXPORT_SYMBOL vmlinux 0xa01ca8dc __ip_select_ident EXPORT_SYMBOL vmlinux 0xa01d3df6 font_vga_8x16 EXPORT_SYMBOL vmlinux 0xa022c739 call_usermodehelper_setup -EXPORT_SYMBOL vmlinux 0xa0263fab fscrypt_decrypt_block_inplace EXPORT_SYMBOL vmlinux 0xa02aa74a __cond_resched_lock +EXPORT_SYMBOL vmlinux 0xa02c1b97 inet_dgram_connect +EXPORT_SYMBOL vmlinux 0xa02f562e rproc_add_carveout +EXPORT_SYMBOL vmlinux 0xa0321fe8 tty_port_raise_dtr_rts EXPORT_SYMBOL vmlinux 0xa033d747 next_arg -EXPORT_SYMBOL vmlinux 0xa03f254d md_bitmap_endwrite EXPORT_SYMBOL vmlinux 0xa0436e98 in6addr_linklocal_allnodes +EXPORT_SYMBOL vmlinux 0xa045deac __cgroup_bpf_run_filter_sock_addr 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 0xa06dd560 import_single_range -EXPORT_SYMBOL vmlinux 0xa077e2c5 devm_of_clk_del_provider +EXPORT_SYMBOL vmlinux 0xa06858e4 xsk_tx_completed +EXPORT_SYMBOL vmlinux 0xa07683a4 uart_write_wakeup EXPORT_SYMBOL vmlinux 0xa07a37f0 memchr EXPORT_SYMBOL vmlinux 0xa07d1b3c tasklet_setup EXPORT_SYMBOL vmlinux 0xa084749a __bitmap_or EXPORT_SYMBOL vmlinux 0xa095e02e generic_check_addressable -EXPORT_SYMBOL vmlinux 0xa09ab201 __ip_dev_find +EXPORT_SYMBOL vmlinux 0xa09b0a6e dev_pm_opp_unregister_notifier EXPORT_SYMBOL vmlinux 0xa0ae1e73 siphash_3u64 EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 -EXPORT_SYMBOL vmlinux 0xa0c48516 locks_delete_block -EXPORT_SYMBOL vmlinux 0xa0c4c571 pci_bus_read_config_dword -EXPORT_SYMBOL vmlinux 0xa0cfd666 neigh_xmit -EXPORT_SYMBOL vmlinux 0xa0d6b8d6 udplite_prot +EXPORT_SYMBOL vmlinux 0xa0cfcfbe clk_bulk_get_all EXPORT_SYMBOL vmlinux 0xa0d87339 qdisc_get_rtab EXPORT_SYMBOL vmlinux 0xa0dad88e netdev_adjacent_get_private +EXPORT_SYMBOL vmlinux 0xa0e057a7 input_release_device +EXPORT_SYMBOL vmlinux 0xa0e094bb __mdiobus_register 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 0xa108eb4d sysctl_optmem_max -EXPORT_SYMBOL vmlinux 0xa116a638 scsi_host_get -EXPORT_SYMBOL vmlinux 0xa124ef2b netdev_upper_dev_link -EXPORT_SYMBOL vmlinux 0xa13e1b55 md_wakeup_thread +EXPORT_SYMBOL vmlinux 0xa10daa75 inet_del_protocol +EXPORT_SYMBOL vmlinux 0xa10fca75 bio_alloc_bioset +EXPORT_SYMBOL vmlinux 0xa1143666 jbd2_journal_try_to_free_buffers +EXPORT_SYMBOL vmlinux 0xa12e927d xp_dma_sync_for_cpu_slow EXPORT_SYMBOL vmlinux 0xa13e780a gen_replace_estimator -EXPORT_SYMBOL vmlinux 0xa1530fc8 netdev_refcnt_read -EXPORT_SYMBOL vmlinux 0xa15560a3 bdev_dax_pgoff -EXPORT_SYMBOL vmlinux 0xa16b308a param_set_short -EXPORT_SYMBOL vmlinux 0xa1790305 flow_block_cb_decref -EXPORT_SYMBOL vmlinux 0xa195f92c __vfs_removexattr -EXPORT_SYMBOL vmlinux 0xa1c31abb max8998_read_reg -EXPORT_SYMBOL vmlinux 0xa1cfda55 serial8250_register_8250_port -EXPORT_SYMBOL vmlinux 0xa1eadb31 is_nvdimm_bus_locked -EXPORT_SYMBOL vmlinux 0xa1f8a781 make_bad_inode -EXPORT_SYMBOL vmlinux 0xa1faca57 nd_pfn_probe +EXPORT_SYMBOL vmlinux 0xa161febc crypto_sha512_finup +EXPORT_SYMBOL vmlinux 0xa178b80f d_make_root +EXPORT_SYMBOL vmlinux 0xa1851f7c dquot_initialize_needed +EXPORT_SYMBOL vmlinux 0xa186a660 thaw_bdev +EXPORT_SYMBOL vmlinux 0xa1896a9c mipi_dsi_dcs_write +EXPORT_SYMBOL vmlinux 0xa1a6d12f security_tun_dev_attach +EXPORT_SYMBOL vmlinux 0xa1dab2ca sock_i_ino +EXPORT_SYMBOL vmlinux 0xa1f4a473 jbd2_journal_stop +EXPORT_SYMBOL vmlinux 0xa1fdb6b2 inet6_offloads EXPORT_SYMBOL vmlinux 0xa2035ac6 qcom_scm_set_warm_boot_addr +EXPORT_SYMBOL vmlinux 0xa204ca36 phy_register_fixup_for_uid EXPORT_SYMBOL vmlinux 0xa2060911 inet_current_timestamp -EXPORT_SYMBOL vmlinux 0xa209a37a con_is_visible -EXPORT_SYMBOL vmlinux 0xa21be0c4 fs_param_is_string -EXPORT_SYMBOL vmlinux 0xa22efa24 mipi_dsi_dcs_set_column_address +EXPORT_SYMBOL vmlinux 0xa218c35c dma_unmap_page_attrs EXPORT_SYMBOL vmlinux 0xa2326c49 acpi_remove_table_handler -EXPORT_SYMBOL vmlinux 0xa232aec7 default_qdisc_ops -EXPORT_SYMBOL vmlinux 0xa23753a6 input_flush_device +EXPORT_SYMBOL vmlinux 0xa237ebb1 ip6_fraglist_init +EXPORT_SYMBOL vmlinux 0xa23ad83f __cleancache_put_page EXPORT_SYMBOL vmlinux 0xa23ffc04 groups_sort +EXPORT_SYMBOL vmlinux 0xa2455965 km_policy_notify EXPORT_SYMBOL vmlinux 0xa24f23d8 __request_module -EXPORT_SYMBOL vmlinux 0xa25b5313 mdio_device_create EXPORT_SYMBOL vmlinux 0xa25b90ab utf8byte +EXPORT_SYMBOL vmlinux 0xa2629c57 __breadahead_gfp EXPORT_SYMBOL vmlinux 0xa263892b fscrypt_fname_free_buffer +EXPORT_SYMBOL vmlinux 0xa2641a44 d_add EXPORT_SYMBOL vmlinux 0xa2660e90 __tracepoint_dma_fence_signaled -EXPORT_SYMBOL vmlinux 0xa2897fec mmc_erase_group_aligned EXPORT_SYMBOL vmlinux 0xa28cfcc0 gen_estimator_active -EXPORT_SYMBOL vmlinux 0xa29b0520 vlan_uses_dev -EXPORT_SYMBOL vmlinux 0xa2b6cb2d page_pool_put_page_bulk +EXPORT_SYMBOL vmlinux 0xa29808c9 inet_csk_clear_xmit_timers +EXPORT_SYMBOL vmlinux 0xa2c5de62 end_buffer_read_sync EXPORT_SYMBOL vmlinux 0xa2cf3649 qman_fq_fqid EXPORT_SYMBOL vmlinux 0xa2d7ec8d __SCK__tp_func_kmem_cache_free -EXPORT_SYMBOL vmlinux 0xa3040ff2 vlan_dev_real_dev -EXPORT_SYMBOL vmlinux 0xa3104476 insert_inode_locked4 +EXPORT_SYMBOL vmlinux 0xa2e6e8c3 open_with_fake_path +EXPORT_SYMBOL vmlinux 0xa2f4fd0e submit_bio_wait +EXPORT_SYMBOL vmlinux 0xa2f6c341 simple_dir_inode_operations +EXPORT_SYMBOL vmlinux 0xa304679d tag_pages_for_writeback +EXPORT_SYMBOL vmlinux 0xa30a82de del_random_ready_callback +EXPORT_SYMBOL vmlinux 0xa32b0303 input_event EXPORT_SYMBOL vmlinux 0xa339e6e5 on_each_cpu_cond_mask -EXPORT_SYMBOL vmlinux 0xa3519a62 pci_prepare_to_sleep +EXPORT_SYMBOL vmlinux 0xa34462e7 kthread_blkcg EXPORT_SYMBOL vmlinux 0xa3522df5 qman_query_fq_np -EXPORT_SYMBOL vmlinux 0xa3632c2e crypto_sha1_finup -EXPORT_SYMBOL vmlinux 0xa3765b45 nvdimm_check_and_set_ro -EXPORT_SYMBOL vmlinux 0xa38f63f3 blk_execute_rq -EXPORT_SYMBOL vmlinux 0xa38fae5e devm_gen_pool_create -EXPORT_SYMBOL vmlinux 0xa39ac52d of_phy_find_device -EXPORT_SYMBOL vmlinux 0xa39be68c sock_setsockopt +EXPORT_SYMBOL vmlinux 0xa35998cf take_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0xa3654322 rpmh_write_async +EXPORT_SYMBOL vmlinux 0xa36bf372 mmc_detect_card_removed +EXPORT_SYMBOL vmlinux 0xa386ab32 __cleancache_invalidate_inode EXPORT_SYMBOL vmlinux 0xa3a3f229 cpumask_next_and -EXPORT_SYMBOL vmlinux 0xa3aba2f0 __inode_add_bytes EXPORT_SYMBOL vmlinux 0xa3be8342 __ubsan_handle_type_mismatch -EXPORT_SYMBOL vmlinux 0xa3c6a4cb fib6_info_hw_flags_set -EXPORT_SYMBOL vmlinux 0xa3dbbc9e textsearch_register -EXPORT_SYMBOL vmlinux 0xa3dfaa9f input_open_device -EXPORT_SYMBOL vmlinux 0xa3efc6b0 generic_fill_statx_attr +EXPORT_SYMBOL vmlinux 0xa3cea167 ram_aops +EXPORT_SYMBOL vmlinux 0xa3e47038 readahead_expand +EXPORT_SYMBOL vmlinux 0xa3ef388e clocksource_change_rating +EXPORT_SYMBOL vmlinux 0xa3f73117 __d_lookup_done EXPORT_SYMBOL vmlinux 0xa3fb735a blk_set_default_limits -EXPORT_SYMBOL vmlinux 0xa3fd0415 unregister_qdisc EXPORT_SYMBOL vmlinux 0xa3fea172 sha224_final +EXPORT_SYMBOL vmlinux 0xa401d454 pci_fixup_cardbus +EXPORT_SYMBOL vmlinux 0xa402a9d0 release_pages EXPORT_SYMBOL vmlinux 0xa40ff01b acpi_dbg_layer -EXPORT_SYMBOL vmlinux 0xa4127037 __genphy_config_aneg -EXPORT_SYMBOL vmlinux 0xa415fe95 block_invalidatepage -EXPORT_SYMBOL vmlinux 0xa43102aa pci_scan_bus -EXPORT_SYMBOL vmlinux 0xa43c622a xfrm_policy_unregister_afinfo +EXPORT_SYMBOL vmlinux 0xa4107f26 tcf_register_action +EXPORT_SYMBOL vmlinux 0xa41fbe8c of_device_is_big_endian +EXPORT_SYMBOL vmlinux 0xa4201113 sock_i_uid +EXPORT_SYMBOL vmlinux 0xa421aae5 seq_escape +EXPORT_SYMBOL vmlinux 0xa43b8759 blkdev_get_by_path +EXPORT_SYMBOL vmlinux 0xa43be03f rproc_get_by_phandle EXPORT_SYMBOL vmlinux 0xa448c653 qcom_scm_ice_set_key -EXPORT_SYMBOL vmlinux 0xa451989d xp_set_rxq_info -EXPORT_SYMBOL vmlinux 0xa458672d cdev_init -EXPORT_SYMBOL vmlinux 0xa464558a ip_getsockopt -EXPORT_SYMBOL vmlinux 0xa46cf200 phy_loopback +EXPORT_SYMBOL vmlinux 0xa452bbc1 i2c_smbus_read_i2c_block_data +EXPORT_SYMBOL vmlinux 0xa466159c cros_ec_query_all +EXPORT_SYMBOL vmlinux 0xa46ea62a blk_mq_free_tag_set EXPORT_SYMBOL vmlinux 0xa47a31c8 security_binder_transaction -EXPORT_SYMBOL vmlinux 0xa4865a6b config_group_init -EXPORT_SYMBOL vmlinux 0xa4886f8d phy_remove_link_mode -EXPORT_SYMBOL vmlinux 0xa4954eb3 pldmfw_flash_image -EXPORT_SYMBOL vmlinux 0xa4cfe7b3 blk_mq_run_hw_queues -EXPORT_SYMBOL vmlinux 0xa4e988e8 inet_csk_complete_hashdance -EXPORT_SYMBOL vmlinux 0xa4f88c25 devm_ioremap_np +EXPORT_SYMBOL vmlinux 0xa4923cab vlan_vid_add +EXPORT_SYMBOL vmlinux 0xa49ffb36 tcp_rcv_established +EXPORT_SYMBOL vmlinux 0xa4a279af nf_log_bind_pf +EXPORT_SYMBOL vmlinux 0xa4ac300a bdi_register +EXPORT_SYMBOL vmlinux 0xa4c1b16c inet_get_local_port_range +EXPORT_SYMBOL vmlinux 0xa4c61e07 pci_irq_vector +EXPORT_SYMBOL vmlinux 0xa4ec5b5e ata_std_end_eh EXPORT_SYMBOL vmlinux 0xa4fca045 qcom_scm_ocmem_lock -EXPORT_SYMBOL vmlinux 0xa505c509 inet_sock_destruct -EXPORT_SYMBOL vmlinux 0xa5073aec devm_rproc_alloc EXPORT_SYMBOL vmlinux 0xa50a3da7 _find_next_bit -EXPORT_SYMBOL vmlinux 0xa5106301 vfs_dedupe_file_range +EXPORT_SYMBOL vmlinux 0xa5198f32 blk_cleanup_queue +EXPORT_SYMBOL vmlinux 0xa522607a config_group_init EXPORT_SYMBOL vmlinux 0xa52bedf6 xenbus_dev_request_and_reply +EXPORT_SYMBOL vmlinux 0xa53668a4 pci_clear_mwi +EXPORT_SYMBOL vmlinux 0xa54f2333 ppp_input EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color -EXPORT_SYMBOL vmlinux 0xa56674ed reuseport_add_sock -EXPORT_SYMBOL vmlinux 0xa57c5afd bdi_put -EXPORT_SYMBOL vmlinux 0xa596d785 devm_extcon_register_notifier_all +EXPORT_SYMBOL vmlinux 0xa55fe177 sk_net_capable +EXPORT_SYMBOL vmlinux 0xa5615ab4 key_validate +EXPORT_SYMBOL vmlinux 0xa5646e88 d_splice_alias +EXPORT_SYMBOL vmlinux 0xa586170c rawv6_mh_filter_unregister +EXPORT_SYMBOL vmlinux 0xa5910e34 of_translate_address EXPORT_SYMBOL vmlinux 0xa5976e4f dev_base_lock -EXPORT_SYMBOL vmlinux 0xa59c8978 block_write_begin EXPORT_SYMBOL vmlinux 0xa5ac3e33 ZSTD_DCtxWorkspaceBound -EXPORT_SYMBOL vmlinux 0xa5bab687 pcie_get_speed_cap -EXPORT_SYMBOL vmlinux 0xa5daf99f tcp_ioctl -EXPORT_SYMBOL vmlinux 0xa5dfe87f kobject_del -EXPORT_SYMBOL vmlinux 0xa5eca4a2 fscrypt_decrypt_bio +EXPORT_SYMBOL vmlinux 0xa5b58f46 kfree_skb_list +EXPORT_SYMBOL vmlinux 0xa5bc8120 ip_sock_set_recverr +EXPORT_SYMBOL vmlinux 0xa5c0cdc2 scsi_eh_prep_cmnd +EXPORT_SYMBOL vmlinux 0xa5ce6a0f scsi_device_get +EXPORT_SYMBOL vmlinux 0xa5dd6bbf phy_ethtool_ksettings_set +EXPORT_SYMBOL vmlinux 0xa5f69990 sk_page_frag_refill EXPORT_SYMBOL vmlinux 0xa5f7cf37 __cpu_possible_mask -EXPORT_SYMBOL vmlinux 0xa5faf855 devm_clk_get EXPORT_SYMBOL vmlinux 0xa61ced89 qdisc_put_rtab -EXPORT_SYMBOL vmlinux 0xa61fdd83 input_setup_polling EXPORT_SYMBOL vmlinux 0xa6257a2f complete -EXPORT_SYMBOL vmlinux 0xa62f622b kill_pgrp -EXPORT_SYMBOL vmlinux 0xa633db10 dst_dev_put +EXPORT_SYMBOL vmlinux 0xa6390582 phy_ethtool_set_eee +EXPORT_SYMBOL vmlinux 0xa645740a blk_get_request EXPORT_SYMBOL vmlinux 0xa648e561 __ubsan_handle_shift_out_of_bounds -EXPORT_SYMBOL vmlinux 0xa65499c9 del_gendisk -EXPORT_SYMBOL vmlinux 0xa6674e86 mount_nodev -EXPORT_SYMBOL vmlinux 0xa6756df9 bio_alloc_bioset +EXPORT_SYMBOL vmlinux 0xa6553617 blackhole_netdev +EXPORT_SYMBOL vmlinux 0xa65bcf58 mmc_register_driver +EXPORT_SYMBOL vmlinux 0xa6601da0 kill_litter_super +EXPORT_SYMBOL vmlinux 0xa672a4a8 udp_lib_setsockopt +EXPORT_SYMBOL vmlinux 0xa681591c sock_efree EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid -EXPORT_SYMBOL vmlinux 0xa69a7296 pcibus_to_node -EXPORT_SYMBOL vmlinux 0xa6d7c4b9 filp_close -EXPORT_SYMBOL vmlinux 0xa6de41d6 devm_ioremap_wc -EXPORT_SYMBOL vmlinux 0xa6dfa0d3 phy_get_pause -EXPORT_SYMBOL vmlinux 0xa706a0ce flow_rule_match_enc_control +EXPORT_SYMBOL vmlinux 0xa697a18a i2c_verify_adapter +EXPORT_SYMBOL vmlinux 0xa6a7e516 inet_rtx_syn_ack +EXPORT_SYMBOL vmlinux 0xa6a97c34 netdev_err +EXPORT_SYMBOL vmlinux 0xa6aa7f37 put_watch_queue +EXPORT_SYMBOL vmlinux 0xa6bc91e2 xfrm_unregister_type_offload +EXPORT_SYMBOL vmlinux 0xa6e2dce8 vme_dma_list_free +EXPORT_SYMBOL vmlinux 0xa6ed0892 udp_ioctl +EXPORT_SYMBOL vmlinux 0xa6eedb2e nf_register_net_hook +EXPORT_SYMBOL vmlinux 0xa701b128 rio_query_mport +EXPORT_SYMBOL vmlinux 0xa70b9b01 param_get_invbool EXPORT_SYMBOL vmlinux 0xa70bc96d qcom_scm_restore_sec_cfg_available EXPORT_SYMBOL vmlinux 0xa70fb761 flow_keys_basic_dissector EXPORT_SYMBOL vmlinux 0xa71acc92 fman_port_config -EXPORT_SYMBOL vmlinux 0xa71e7aa7 devm_devfreq_register_notifier EXPORT_SYMBOL vmlinux 0xa72035f9 xa_get_order -EXPORT_SYMBOL vmlinux 0xa72068e2 netpoll_cleanup -EXPORT_SYMBOL vmlinux 0xa728211c dquot_operations -EXPORT_SYMBOL vmlinux 0xa728b902 kmalloc_caches -EXPORT_SYMBOL vmlinux 0xa7415924 qdisc_hash_add EXPORT_SYMBOL vmlinux 0xa74c9877 refcount_dec_and_rtnl_lock -EXPORT_SYMBOL vmlinux 0xa756ae8d tty_wait_until_sent -EXPORT_SYMBOL vmlinux 0xa75ed1c4 seg6_hmac_info_del -EXPORT_SYMBOL vmlinux 0xa76d2d55 load_nls_default -EXPORT_SYMBOL vmlinux 0xa7757d28 irq_domain_set_info -EXPORT_SYMBOL vmlinux 0xa77a15e2 noop_fsync +EXPORT_SYMBOL vmlinux 0xa75a7939 release_sock +EXPORT_SYMBOL vmlinux 0xa75b0f6d blk_queue_chunk_sectors EXPORT_SYMBOL vmlinux 0xa77bfd29 register_inet6addr_validator_notifier -EXPORT_SYMBOL vmlinux 0xa79200c1 vme_register_driver -EXPORT_SYMBOL vmlinux 0xa7b3b2fb mipi_dsi_dcs_set_display_on -EXPORT_SYMBOL vmlinux 0xa7bc27e5 uart_suspend_port -EXPORT_SYMBOL vmlinux 0xa7c092cd devm_pci_remap_cfgspace -EXPORT_SYMBOL vmlinux 0xa7c359e8 skb_clone -EXPORT_SYMBOL vmlinux 0xa7c83b68 generic_file_llseek_size +EXPORT_SYMBOL vmlinux 0xa788ca7f dev_change_proto_down_reason +EXPORT_SYMBOL vmlinux 0xa78c66f2 pmem_should_map_pages +EXPORT_SYMBOL vmlinux 0xa7d228ab mdio_driver_unregister +EXPORT_SYMBOL vmlinux 0xa7d25973 serial8250_do_set_termios EXPORT_SYMBOL vmlinux 0xa7d5f92e ida_destroy -EXPORT_SYMBOL vmlinux 0xa7ebfb57 set_user_nice +EXPORT_SYMBOL vmlinux 0xa7e15b22 sock_set_reuseaddr EXPORT_SYMBOL vmlinux 0xa7eedcc4 call_usermodehelper -EXPORT_SYMBOL vmlinux 0xa7fbae12 __i2c_transfer -EXPORT_SYMBOL vmlinux 0xa7fcbaf4 devfreq_remove_governor -EXPORT_SYMBOL vmlinux 0xa7fda819 of_io_request_and_map -EXPORT_SYMBOL vmlinux 0xa801e202 __module_get -EXPORT_SYMBOL vmlinux 0xa8043515 rproc_add -EXPORT_SYMBOL vmlinux 0xa80d3af6 kill_anon_super +EXPORT_SYMBOL vmlinux 0xa8025ff5 pm_vt_switch_required EXPORT_SYMBOL vmlinux 0xa8181adf proc_dointvec -EXPORT_SYMBOL vmlinux 0xa82c6b5b input_register_handle -EXPORT_SYMBOL vmlinux 0xa8319af0 dquot_destroy +EXPORT_SYMBOL vmlinux 0xa81d23a7 __tty_insert_flip_char +EXPORT_SYMBOL vmlinux 0xa82742c6 param_ops_charp +EXPORT_SYMBOL vmlinux 0xa82a7c41 jbd2_log_wait_commit +EXPORT_SYMBOL vmlinux 0xa82be4b3 icmp6_send +EXPORT_SYMBOL vmlinux 0xa82ca45e register_shrinker EXPORT_SYMBOL vmlinux 0xa843805a get_unused_fd_flags EXPORT_SYMBOL vmlinux 0xa84ce9e0 crypto_aes_inv_sbox -EXPORT_SYMBOL vmlinux 0xa852f198 padata_alloc_shell EXPORT_SYMBOL vmlinux 0xa853396b xa_extract -EXPORT_SYMBOL vmlinux 0xa855624b netdev_sk_get_lowest_dev +EXPORT_SYMBOL vmlinux 0xa854bcf6 jbd2_journal_get_create_access +EXPORT_SYMBOL vmlinux 0xa8576c19 vlan_dev_vlan_proto +EXPORT_SYMBOL vmlinux 0xa859bf6d inet_put_port EXPORT_SYMBOL vmlinux 0xa85a3e6d xa_load +EXPORT_SYMBOL vmlinux 0xa863cf85 tcp_sock_set_quickack EXPORT_SYMBOL vmlinux 0xa8694ecd kblockd_schedule_work -EXPORT_SYMBOL vmlinux 0xa88103c0 send_sig -EXPORT_SYMBOL vmlinux 0xa890c792 netdev_unbind_sb_channel +EXPORT_SYMBOL vmlinux 0xa8755607 iw_handler_get_spy +EXPORT_SYMBOL vmlinux 0xa87a9899 dev_set_allmulti +EXPORT_SYMBOL vmlinux 0xa8851369 dst_release_immediate EXPORT_SYMBOL vmlinux 0xa897e3e7 mempool_free EXPORT_SYMBOL vmlinux 0xa89a1cf1 ipmi_dmi_get_slave_addr -EXPORT_SYMBOL vmlinux 0xa89f3e9f tty_port_close_start +EXPORT_SYMBOL vmlinux 0xa89a82fe zpool_register_driver +EXPORT_SYMBOL vmlinux 0xa89c21ca netif_napi_add EXPORT_SYMBOL vmlinux 0xa8a8110c kernel_neon_end -EXPORT_SYMBOL vmlinux 0xa8bad004 pnp_register_card_driver +EXPORT_SYMBOL vmlinux 0xa8a9b8e1 seq_printf EXPORT_SYMBOL vmlinux 0xa8caa845 clk_bulk_put_all -EXPORT_SYMBOL vmlinux 0xa8cfb1c6 get_tree_nodev -EXPORT_SYMBOL vmlinux 0xa8df6fc5 ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0xa8cb201d __set_page_dirty_buffers +EXPORT_SYMBOL vmlinux 0xa8cf8fe7 lookup_one_len +EXPORT_SYMBOL vmlinux 0xa8cfd228 may_umount +EXPORT_SYMBOL vmlinux 0xa8d9afaa skb_abort_seq_read +EXPORT_SYMBOL vmlinux 0xa8da6515 igrab EXPORT_SYMBOL vmlinux 0xa8e6933a qdf2400_e44_present +EXPORT_SYMBOL vmlinux 0xa8eeceb8 netlink_broadcast_filtered +EXPORT_SYMBOL vmlinux 0xa8ef8f32 phy_print_status EXPORT_SYMBOL vmlinux 0xa8f6c843 ip_frag_ecn_table -EXPORT_SYMBOL vmlinux 0xa8fd5fbd mipi_dsi_driver_unregister +EXPORT_SYMBOL vmlinux 0xa8fc8fa6 dm_kobject_release EXPORT_SYMBOL vmlinux 0xa90ca0de flush_rcu_work -EXPORT_SYMBOL vmlinux 0xa91229f4 sock_set_priority EXPORT_SYMBOL vmlinux 0xa916b694 strnlen -EXPORT_SYMBOL vmlinux 0xa920de5c of_get_next_cpu_node -EXPORT_SYMBOL vmlinux 0xa922244d pci_read_config_dword +EXPORT_SYMBOL vmlinux 0xa91d3123 get_tree_nodev EXPORT_SYMBOL vmlinux 0xa924b4aa __traceiter_kmem_cache_alloc_node -EXPORT_SYMBOL vmlinux 0xa92a380a nd_btt_probe -EXPORT_SYMBOL vmlinux 0xa92f9096 configfs_register_group -EXPORT_SYMBOL vmlinux 0xa9324573 regset_get -EXPORT_SYMBOL vmlinux 0xa934bc4b flow_get_u32_dst -EXPORT_SYMBOL vmlinux 0xa935afb7 neigh_resolve_output -EXPORT_SYMBOL vmlinux 0xa9393f2b page_symlink_inode_operations -EXPORT_SYMBOL vmlinux 0xa9420060 vlan_vid_add +EXPORT_SYMBOL vmlinux 0xa9262d7c pci_add_new_bus EXPORT_SYMBOL vmlinux 0xa94a09bb mem_section -EXPORT_SYMBOL vmlinux 0xa961cc32 poll_initwait +EXPORT_SYMBOL vmlinux 0xa94cdf0c acpi_dev_get_next_match_dev +EXPORT_SYMBOL vmlinux 0xa94e4f65 dquot_get_next_id EXPORT_SYMBOL vmlinux 0xa965ca81 reciprocal_value -EXPORT_SYMBOL vmlinux 0xa967d277 netpoll_send_udp EXPORT_SYMBOL vmlinux 0xa976957d bitmap_remap -EXPORT_SYMBOL vmlinux 0xa995e595 xfrm_policy_walk_done +EXPORT_SYMBOL vmlinux 0xa9906095 nlmsg_notify EXPORT_SYMBOL vmlinux 0xa99b39c2 prandom_bytes -EXPORT_SYMBOL vmlinux 0xa9ae6528 inet6_unregister_protosw -EXPORT_SYMBOL vmlinux 0xa9cb7f1b pci_find_bus +EXPORT_SYMBOL vmlinux 0xa9a57800 __d_drop +EXPORT_SYMBOL vmlinux 0xa9b7df22 register_fib_notifier +EXPORT_SYMBOL vmlinux 0xa9d8c1e9 neigh_parms_alloc +EXPORT_SYMBOL vmlinux 0xa9e5ded1 pci_find_bus +EXPORT_SYMBOL vmlinux 0xa9e7fd5e scsi_report_bus_reset +EXPORT_SYMBOL vmlinux 0xa9e87ab0 inet6_add_offload EXPORT_SYMBOL vmlinux 0xa9ed62d2 tegra_fuse_readl +EXPORT_SYMBOL vmlinux 0xa9f120b0 phy_write_mmd +EXPORT_SYMBOL vmlinux 0xa9f3dc20 phy_free_interrupt +EXPORT_SYMBOL vmlinux 0xa9f4dc69 fb_set_var EXPORT_SYMBOL vmlinux 0xaa00fdc0 ec_transaction -EXPORT_SYMBOL vmlinux 0xaa029b9e dma_set_mask EXPORT_SYMBOL vmlinux 0xaa0c318b vscnprintf -EXPORT_SYMBOL vmlinux 0xaa11e07c serio_reconnect -EXPORT_SYMBOL vmlinux 0xaa16daa7 tty_register_ldisc +EXPORT_SYMBOL vmlinux 0xaa123590 unlock_rename EXPORT_SYMBOL vmlinux 0xaa19e4aa _kstrtol -EXPORT_SYMBOL vmlinux 0xaa340440 qdisc_create_dflt +EXPORT_SYMBOL vmlinux 0xaa1db910 twl6030_mmc_card_detect +EXPORT_SYMBOL vmlinux 0xaa20e5dc tso_build_hdr +EXPORT_SYMBOL vmlinux 0xaa2324b4 dev_uc_add_excl +EXPORT_SYMBOL vmlinux 0xaa2dfb66 generic_file_llseek +EXPORT_SYMBOL vmlinux 0xaa318a2f d_lookup EXPORT_SYMBOL vmlinux 0xaa341905 acpi_bios_exception -EXPORT_SYMBOL vmlinux 0xaa656a96 account_page_redirty -EXPORT_SYMBOL vmlinux 0xaa68e463 vfs_create_mount +EXPORT_SYMBOL vmlinux 0xaa425c31 framebuffer_release +EXPORT_SYMBOL vmlinux 0xaa57b34a rtnl_configure_link +EXPORT_SYMBOL vmlinux 0xaa58d1cf skb_dump +EXPORT_SYMBOL vmlinux 0xaa68386a cdev_del EXPORT_SYMBOL vmlinux 0xaa6f23ad rfkill_get_led_trigger_name -EXPORT_SYMBOL vmlinux 0xaa8025d0 of_node_put +EXPORT_SYMBOL vmlinux 0xaa7909d1 seq_write EXPORT_SYMBOL vmlinux 0xaa8106bc crc8_populate_msb +EXPORT_SYMBOL vmlinux 0xaa9509f0 of_find_property +EXPORT_SYMBOL vmlinux 0xaa9b37b9 __traceiter_spi_transfer_stop +EXPORT_SYMBOL vmlinux 0xaaa17f7e sock_from_file EXPORT_SYMBOL vmlinux 0xaaa4b9bc hchacha_block_generic EXPORT_SYMBOL vmlinux 0xaaa50fb2 qcom_scm_lmh_profile_change -EXPORT_SYMBOL vmlinux 0xaaa59ccf dst_init -EXPORT_SYMBOL vmlinux 0xaaa9050f __dec_zone_page_state -EXPORT_SYMBOL vmlinux 0xaab38154 i2c_smbus_read_byte_data -EXPORT_SYMBOL vmlinux 0xaabc55d6 disk_stack_limits -EXPORT_SYMBOL vmlinux 0xaabc7bff security_path_mknod -EXPORT_SYMBOL vmlinux 0xaacc2a7b __bread_gfp +EXPORT_SYMBOL vmlinux 0xaaa9f434 rproc_coredump_using_sections +EXPORT_SYMBOL vmlinux 0xaab5c386 napi_gro_receive +EXPORT_SYMBOL vmlinux 0xaabbaf9b free_task +EXPORT_SYMBOL vmlinux 0xaabee96e scsi_is_sdev_device 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 0xaae8ab0e acpi_bus_power_manageable -EXPORT_SYMBOL vmlinux 0xaaf09e31 mmc_of_parse -EXPORT_SYMBOL vmlinux 0xaafaf74f netdev_info +EXPORT_SYMBOL vmlinux 0xaaf21411 km_state_notify EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp -EXPORT_SYMBOL vmlinux 0xab0c4528 path_is_mountpoint -EXPORT_SYMBOL vmlinux 0xab19856e inet_reqsk_alloc -EXPORT_SYMBOL vmlinux 0xab26da51 phy_mac_interrupt +EXPORT_SYMBOL vmlinux 0xab151188 file_write_and_wait_range EXPORT_SYMBOL vmlinux 0xab3697e4 irq_poll_init EXPORT_SYMBOL vmlinux 0xab3b75ea vme_dma_pattern_attribute -EXPORT_SYMBOL vmlinux 0xab42eaf1 __cgroup_bpf_run_filter_skb -EXPORT_SYMBOL vmlinux 0xab56ee7c unregister_mii_tstamp_controller -EXPORT_SYMBOL vmlinux 0xab5749ce register_md_cluster_operations +EXPORT_SYMBOL vmlinux 0xab4c51c7 pldmfw_flash_image EXPORT_SYMBOL vmlinux 0xab600421 probe_irq_off EXPORT_SYMBOL vmlinux 0xab63baa5 unregister_inetaddr_validator_notifier EXPORT_SYMBOL vmlinux 0xab67a0ac dql_init -EXPORT_SYMBOL vmlinux 0xab727d12 tcp_sock_set_cork +EXPORT_SYMBOL vmlinux 0xab6a429c __blockdev_direct_IO +EXPORT_SYMBOL vmlinux 0xab6d5b3b hex_to_bin EXPORT_SYMBOL vmlinux 0xab781570 fb_get_options -EXPORT_SYMBOL vmlinux 0xab8b95b0 input_event -EXPORT_SYMBOL vmlinux 0xab9f54cf dma_set_coherent_mask -EXPORT_SYMBOL vmlinux 0xabc22964 seq_escape_mem -EXPORT_SYMBOL vmlinux 0xabe80b82 pcix_get_max_mmrbc +EXPORT_SYMBOL vmlinux 0xab837d83 skb_flow_dissect_meta +EXPORT_SYMBOL vmlinux 0xaba1cb7c I_BDEV +EXPORT_SYMBOL vmlinux 0xabc47ee6 rproc_alloc +EXPORT_SYMBOL vmlinux 0xabd97a61 rdmacg_try_charge +EXPORT_SYMBOL vmlinux 0xabeaf0ca msi_desc_to_pci_dev EXPORT_SYMBOL vmlinux 0xabeb9438 skb_flow_dissector_init EXPORT_SYMBOL vmlinux 0xabf32f29 utf16s_to_utf8s -EXPORT_SYMBOL vmlinux 0xabf38071 dquot_free_inode -EXPORT_SYMBOL vmlinux 0xac00f891 xfrm_find_acq_byseq +EXPORT_SYMBOL vmlinux 0xac063c20 flow_block_cb_priv EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier -EXPORT_SYMBOL vmlinux 0xac1b4fbd bio_copy_data EXPORT_SYMBOL vmlinux 0xac3201b0 udp_flow_hashrnd -EXPORT_SYMBOL vmlinux 0xac4d2a38 pci_free_host_bridge +EXPORT_SYMBOL vmlinux 0xac35703c fscrypt_setup_filename +EXPORT_SYMBOL vmlinux 0xac42fc67 param_set_copystring EXPORT_SYMBOL vmlinux 0xac537ac2 percpu_counter_destroy -EXPORT_SYMBOL vmlinux 0xac556e82 tty_unthrottle -EXPORT_SYMBOL vmlinux 0xac5bd487 input_mt_init_slots EXPORT_SYMBOL vmlinux 0xac5fcec0 in4_pton -EXPORT_SYMBOL vmlinux 0xac742b19 neigh_event_ns -EXPORT_SYMBOL vmlinux 0xac7d26d5 get_phy_device +EXPORT_SYMBOL vmlinux 0xac7ca0ab phy_write_paged EXPORT_SYMBOL vmlinux 0xac8597d5 mb_cache_entry_get -EXPORT_SYMBOL vmlinux 0xaca72b39 flow_rule_match_enc_ipv4_addrs EXPORT_SYMBOL vmlinux 0xacaa4c72 dma_fence_match_context EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu -EXPORT_SYMBOL vmlinux 0xacb5ba44 __alloc_disk_node +EXPORT_SYMBOL vmlinux 0xacb3ee80 from_kprojid_munged EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache EXPORT_SYMBOL vmlinux 0xacddd806 ptp_get_vclocks_index -EXPORT_SYMBOL vmlinux 0xacde736a input_unregister_handler EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup EXPORT_SYMBOL vmlinux 0xacf649bf audit_log_task_info +EXPORT_SYMBOL vmlinux 0xacfb3b81 sk_stream_wait_memory EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex +EXPORT_SYMBOL vmlinux 0xad063fee phy_drivers_unregister +EXPORT_SYMBOL vmlinux 0xad0cf467 xfrm_user_policy EXPORT_SYMBOL vmlinux 0xad128dc1 __tracepoint_dma_fence_enable_signal -EXPORT_SYMBOL vmlinux 0xad325004 xfrm6_rcv +EXPORT_SYMBOL vmlinux 0xad152d5c security_inode_copy_up +EXPORT_SYMBOL vmlinux 0xad1856f7 ip_local_deliver +EXPORT_SYMBOL vmlinux 0xad1eb4a6 tcp_sock_set_nodelay EXPORT_SYMBOL vmlinux 0xad357133 __traceiter_kmalloc_node -EXPORT_SYMBOL vmlinux 0xad360baf inet_frag_reasm_finish EXPORT_SYMBOL vmlinux 0xad3ea04c qman_p_irqsource_remove -EXPORT_SYMBOL vmlinux 0xad525111 debugfs_create_automount -EXPORT_SYMBOL vmlinux 0xad629556 block_commit_write -EXPORT_SYMBOL vmlinux 0xad66b63e clocksource_change_rating +EXPORT_SYMBOL vmlinux 0xad440f31 vlan_dev_real_dev +EXPORT_SYMBOL vmlinux 0xad46ccd0 of_graph_get_remote_port_parent +EXPORT_SYMBOL vmlinux 0xad472af8 udp_seq_next +EXPORT_SYMBOL vmlinux 0xad60b1ed __dec_node_page_state EXPORT_SYMBOL vmlinux 0xad682b8f xudma_rchanrt_write EXPORT_SYMBOL vmlinux 0xad6ba40e radix_tree_tag_get +EXPORT_SYMBOL vmlinux 0xad6d4644 iov_iter_xarray EXPORT_SYMBOL vmlinux 0xad73041f autoremove_wake_function -EXPORT_SYMBOL vmlinux 0xad7d0680 get_tz_trend -EXPORT_SYMBOL vmlinux 0xad8d8c61 udp_gro_receive +EXPORT_SYMBOL vmlinux 0xad7a4aca request_key_rcu EXPORT_SYMBOL vmlinux 0xad9901ae bit_waitqueue EXPORT_SYMBOL vmlinux 0xad995dac netdev_stats_to_stats64 EXPORT_SYMBOL vmlinux 0xada31e57 gen_pool_dma_alloc_align +EXPORT_SYMBOL vmlinux 0xadac595c udp_lib_rehash EXPORT_SYMBOL vmlinux 0xadbeed61 mipi_dsi_packet_format_is_long -EXPORT_SYMBOL vmlinux 0xadc6b621 shmem_aops +EXPORT_SYMBOL vmlinux 0xadbf824d sg_miter_skip +EXPORT_SYMBOL vmlinux 0xadc29d6d vme_irq_free EXPORT_SYMBOL vmlinux 0xadcba50b ZSTD_findFrameCompressedSize -EXPORT_SYMBOL vmlinux 0xadcf34e4 mipi_dsi_dcs_set_tear_on EXPORT_SYMBOL vmlinux 0xadd139d4 rfs_needed -EXPORT_SYMBOL vmlinux 0xade866d6 nd_dax_probe -EXPORT_SYMBOL vmlinux 0xadeef780 __inc_zone_page_state EXPORT_SYMBOL vmlinux 0xadfdfcef __bitmap_andnot EXPORT_SYMBOL vmlinux 0xae04012c __vmalloc +EXPORT_SYMBOL vmlinux 0xae156404 dcb_setapp EXPORT_SYMBOL vmlinux 0xae316c11 icmpv6_err_convert -EXPORT_SYMBOL vmlinux 0xae32dd30 scsi_mode_sense EXPORT_SYMBOL vmlinux 0xae33c403 xudma_navss_psil_unpair +EXPORT_SYMBOL vmlinux 0xae359769 vfs_ioctl +EXPORT_SYMBOL vmlinux 0xae51b4c8 sget_fc EXPORT_SYMBOL vmlinux 0xae5a04bb acpi_evaluate_dsm -EXPORT_SYMBOL vmlinux 0xae81e9ed mmc_cqe_start_req -EXPORT_SYMBOL vmlinux 0xae834815 sock_sendmsg -EXPORT_SYMBOL vmlinux 0xae880f25 current_in_userns +EXPORT_SYMBOL vmlinux 0xaea4e0df eth_prepare_mac_addr_change EXPORT_SYMBOL vmlinux 0xaeac049a generate_random_guid -EXPORT_SYMBOL vmlinux 0xaeb1ab75 page_pool_put_page -EXPORT_SYMBOL vmlinux 0xaeb1cf4b inet6_release EXPORT_SYMBOL vmlinux 0xaebd12f0 acpi_get_name -EXPORT_SYMBOL vmlinux 0xaec2cb1b fscrypt_ioctl_set_policy -EXPORT_SYMBOL vmlinux 0xaec9e34d pci_get_class -EXPORT_SYMBOL vmlinux 0xaecaa908 security_lock_kernel_down -EXPORT_SYMBOL vmlinux 0xaedb0685 pci_write_config_word -EXPORT_SYMBOL vmlinux 0xaedf9740 neigh_direct_output -EXPORT_SYMBOL vmlinux 0xaeeb1213 mmc_gpio_set_cd_isr -EXPORT_SYMBOL vmlinux 0xaefc447a tty_port_put -EXPORT_SYMBOL vmlinux 0xaf127ef2 io_uring_get_socket -EXPORT_SYMBOL vmlinux 0xaf202c82 sock_no_connect +EXPORT_SYMBOL vmlinux 0xaed0121d tcp_sync_mss +EXPORT_SYMBOL vmlinux 0xaef8f2ff genphy_soft_reset +EXPORT_SYMBOL vmlinux 0xaeff46ce phy_connect_direct +EXPORT_SYMBOL vmlinux 0xaf32d6f1 cros_ec_get_next_event EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level -EXPORT_SYMBOL vmlinux 0xaf4000b5 sk_stream_wait_connect -EXPORT_SYMBOL vmlinux 0xaf419308 pci_try_set_mwi -EXPORT_SYMBOL vmlinux 0xaf46042b blkdev_get_by_path -EXPORT_SYMBOL vmlinux 0xaf4893c8 bpf_prog_get_type_path -EXPORT_SYMBOL vmlinux 0xaf4b69e2 tegra_ivc_cleanup -EXPORT_SYMBOL vmlinux 0xaf527987 __ip_options_compile +EXPORT_SYMBOL vmlinux 0xaf54902e i2c_transfer_buffer_flags EXPORT_SYMBOL vmlinux 0xaf56600a arm64_use_ng_mappings -EXPORT_SYMBOL vmlinux 0xaf5afce7 mdiobus_write_nested -EXPORT_SYMBOL vmlinux 0xaf69971c __mark_inode_dirty -EXPORT_SYMBOL vmlinux 0xaf6ab334 dquot_get_next_dqblk -EXPORT_SYMBOL vmlinux 0xaf8cd4fb keyring_alloc -EXPORT_SYMBOL vmlinux 0xaf8fe4b1 mmc_gpio_get_cd -EXPORT_SYMBOL vmlinux 0xaf9248d5 tcp_mmap +EXPORT_SYMBOL vmlinux 0xaf5873a9 register_netdevice_notifier_dev_net +EXPORT_SYMBOL vmlinux 0xaf709716 kthread_create_worker +EXPORT_SYMBOL vmlinux 0xaf848231 security_path_mknod +EXPORT_SYMBOL vmlinux 0xaf84ccca kill_anon_super +EXPORT_SYMBOL vmlinux 0xafa81880 __set_page_dirty_nobuffers +EXPORT_SYMBOL vmlinux 0xafb524d2 pcix_get_mmrbc EXPORT_SYMBOL vmlinux 0xafb864c1 refcount_dec_and_lock_irqsave -EXPORT_SYMBOL vmlinux 0xafb967bb tty_vhangup EXPORT_SYMBOL vmlinux 0xafc08054 dotdot_name -EXPORT_SYMBOL vmlinux 0xafc9c38b unregister_filesystem -EXPORT_SYMBOL vmlinux 0xafd8fa70 fs_lookup_param -EXPORT_SYMBOL vmlinux 0xafdcc34d of_mdiobus_register -EXPORT_SYMBOL vmlinux 0xafe0add4 phy_ethtool_set_eee -EXPORT_SYMBOL vmlinux 0xaff5024a register_netdevice -EXPORT_SYMBOL vmlinux 0xaff5871c open_with_fake_path -EXPORT_SYMBOL vmlinux 0xaff6e22e keyring_search -EXPORT_SYMBOL vmlinux 0xb00ae2f0 dump_skip_to -EXPORT_SYMBOL vmlinux 0xb00e011a __serio_register_port -EXPORT_SYMBOL vmlinux 0xb018bf4f dcb_ieee_getapp_dscp_prio_mask_map +EXPORT_SYMBOL vmlinux 0xafc62f65 nf_register_queue_handler +EXPORT_SYMBOL vmlinux 0xafce8f2d clear_bdi_congested +EXPORT_SYMBOL vmlinux 0xafeadabc tcp_sock_set_keepcnt +EXPORT_SYMBOL vmlinux 0xafeb80e8 to_nd_btt +EXPORT_SYMBOL vmlinux 0xb004b5bd vme_master_mmap +EXPORT_SYMBOL vmlinux 0xb00e15b2 vlan_filter_push_vids EXPORT_SYMBOL vmlinux 0xb01bebf9 xfrm_get_acqseq -EXPORT_SYMBOL vmlinux 0xb01e85ec netif_tx_wake_queue -EXPORT_SYMBOL vmlinux 0xb01f68b2 dquot_quota_on_mount -EXPORT_SYMBOL vmlinux 0xb0249ef9 inetdev_by_index -EXPORT_SYMBOL vmlinux 0xb032b011 dm_table_run_md_queue_async -EXPORT_SYMBOL vmlinux 0xb0368913 mmc_gpiod_request_cd -EXPORT_SYMBOL vmlinux 0xb036d4a4 md_bitmap_update_sb -EXPORT_SYMBOL vmlinux 0xb03f8133 devm_memunmap +EXPORT_SYMBOL vmlinux 0xb01f6afb finish_open +EXPORT_SYMBOL vmlinux 0xb023f43d dev_mc_add +EXPORT_SYMBOL vmlinux 0xb03a2002 acpi_bus_get_device +EXPORT_SYMBOL vmlinux 0xb045aabf udp_seq_stop EXPORT_SYMBOL vmlinux 0xb04a43ad __xa_alloc_cyclic -EXPORT_SYMBOL vmlinux 0xb05af0b1 pm860x_bulk_read +EXPORT_SYMBOL vmlinux 0xb04f30cf phy_ethtool_get_eee +EXPORT_SYMBOL vmlinux 0xb05f427f path_has_submounts EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max -EXPORT_SYMBOL vmlinux 0xb0600d7e skb_copy -EXPORT_SYMBOL vmlinux 0xb07320a1 skb_split -EXPORT_SYMBOL vmlinux 0xb073b0b6 __mmc_claim_host -EXPORT_SYMBOL vmlinux 0xb0762462 path_get -EXPORT_SYMBOL vmlinux 0xb07fcf32 blk_queue_max_write_same_sectors +EXPORT_SYMBOL vmlinux 0xb07b2678 fs_param_is_path +EXPORT_SYMBOL vmlinux 0xb07f9580 param_get_ulong EXPORT_SYMBOL vmlinux 0xb0a0da0c rational_best_approximation -EXPORT_SYMBOL vmlinux 0xb0baf7fa filemap_flush -EXPORT_SYMBOL vmlinux 0xb0bbbf34 file_update_time -EXPORT_SYMBOL vmlinux 0xb0c468fb ram_aops EXPORT_SYMBOL vmlinux 0xb0c5e247 lockref_put_return -EXPORT_SYMBOL vmlinux 0xb0cafcc1 filemap_fdatawait_keep_errors -EXPORT_SYMBOL vmlinux 0xb0d469e5 eth_prepare_mac_addr_change -EXPORT_SYMBOL vmlinux 0xb0d4987f devm_clk_get_optional -EXPORT_SYMBOL vmlinux 0xb0d7fc48 xfrm_policy_insert +EXPORT_SYMBOL vmlinux 0xb0c64c4b pci_request_region EXPORT_SYMBOL vmlinux 0xb0e10781 get_option -EXPORT_SYMBOL vmlinux 0xb0e2fa43 phy_support_sym_pause -EXPORT_SYMBOL vmlinux 0xb0ea78fc xfrm_state_add EXPORT_SYMBOL vmlinux 0xb0f389ee utf8_normalize -EXPORT_SYMBOL vmlinux 0xb1063202 vga_put -EXPORT_SYMBOL vmlinux 0xb10d465c cdev_device_del -EXPORT_SYMBOL vmlinux 0xb10d67e2 generic_file_mmap EXPORT_SYMBOL vmlinux 0xb10e7df4 __kfifo_dma_in_prepare +EXPORT_SYMBOL vmlinux 0xb11e9725 kset_unregister EXPORT_SYMBOL vmlinux 0xb121390a probe_irq_on +EXPORT_SYMBOL vmlinux 0xb128c2fe touchscreen_parse_properties +EXPORT_SYMBOL vmlinux 0xb12b6a1a finish_swait EXPORT_SYMBOL vmlinux 0xb12cbacb fb_unregister_client -EXPORT_SYMBOL vmlinux 0xb13781bf napi_build_skb -EXPORT_SYMBOL vmlinux 0xb13cc389 vfs_fsync +EXPORT_SYMBOL vmlinux 0xb1315330 vfs_fileattr_get +EXPORT_SYMBOL vmlinux 0xb1387459 acpi_dev_get_first_match_dev +EXPORT_SYMBOL vmlinux 0xb13de815 xfrm_lookup_with_ifid EXPORT_SYMBOL vmlinux 0xb14ab1ef hdmi_audio_infoframe_init EXPORT_SYMBOL vmlinux 0xb14fc46a find_next_clump8 -EXPORT_SYMBOL vmlinux 0xb1776f67 vfs_get_fsid -EXPORT_SYMBOL vmlinux 0xb183beb1 __netif_schedule -EXPORT_SYMBOL vmlinux 0xb1a0f8ab xp_dma_sync_for_cpu_slow -EXPORT_SYMBOL vmlinux 0xb1c0f386 fsl_ifc_ctrl_dev +EXPORT_SYMBOL vmlinux 0xb15ee797 rproc_set_firmware +EXPORT_SYMBOL vmlinux 0xb1664d39 nf_log_trace +EXPORT_SYMBOL vmlinux 0xb16c10cb kernel_sendmsg +EXPORT_SYMBOL vmlinux 0xb16ca664 unregister_cdrom +EXPORT_SYMBOL vmlinux 0xb18ffe9c inet_addr_type_table +EXPORT_SYMBOL vmlinux 0xb19b8037 devm_ioremap +EXPORT_SYMBOL vmlinux 0xb1b30ef8 devm_devfreq_register_notifier EXPORT_SYMBOL vmlinux 0xb1c3a01a oops_in_progress -EXPORT_SYMBOL vmlinux 0xb1c87f24 sg_alloc_table_from_pages_segment -EXPORT_SYMBOL vmlinux 0xb1d29481 nd_pfn_validate +EXPORT_SYMBOL vmlinux 0xb1c93b72 netif_device_attach EXPORT_SYMBOL vmlinux 0xb1d3a15c blk_finish_plug +EXPORT_SYMBOL vmlinux 0xb1d9d1b3 scsi_dma_map EXPORT_SYMBOL vmlinux 0xb1db9a69 fsl_ifc_find -EXPORT_SYMBOL vmlinux 0xb1dd8eae free_task EXPORT_SYMBOL vmlinux 0xb1ddf995 jiffies_64_to_clock_t +EXPORT_SYMBOL vmlinux 0xb1de24d3 cros_ec_prepare_tx +EXPORT_SYMBOL vmlinux 0xb1ff8908 mmc_gpiod_request_ro +EXPORT_SYMBOL vmlinux 0xb202ec06 of_find_mipi_dsi_host_by_node +EXPORT_SYMBOL vmlinux 0xb2041a12 blk_pre_runtime_resume +EXPORT_SYMBOL vmlinux 0xb21845de splice_direct_to_actor +EXPORT_SYMBOL vmlinux 0xb21d6884 disk_stack_limits +EXPORT_SYMBOL vmlinux 0xb22790dc ppp_dev_name EXPORT_SYMBOL vmlinux 0xb22e16d5 radix_tree_maybe_preload -EXPORT_SYMBOL vmlinux 0xb22f27cd build_skb_around EXPORT_SYMBOL vmlinux 0xb23027c1 kstrtos16_from_user -EXPORT_SYMBOL vmlinux 0xb231a006 security_inode_setsecctx -EXPORT_SYMBOL vmlinux 0xb23393b5 mmc_wait_for_req_done -EXPORT_SYMBOL vmlinux 0xb238f12f __blk_alloc_disk -EXPORT_SYMBOL vmlinux 0xb25ec035 __set_page_dirty_buffers -EXPORT_SYMBOL vmlinux 0xb26277d5 mipi_dsi_attach -EXPORT_SYMBOL vmlinux 0xb26c23b6 mmc_can_gpio_cd -EXPORT_SYMBOL vmlinux 0xb278feca arp_create -EXPORT_SYMBOL vmlinux 0xb27e276a of_graph_is_present -EXPORT_SYMBOL vmlinux 0xb2a61c07 sock_edemux -EXPORT_SYMBOL vmlinux 0xb2bb3165 scsi_target_quiesce +EXPORT_SYMBOL vmlinux 0xb238ff56 padata_free +EXPORT_SYMBOL vmlinux 0xb23a939e msm_pinctrl_remove +EXPORT_SYMBOL vmlinux 0xb2409315 free_inode_nonrcu +EXPORT_SYMBOL vmlinux 0xb247cae6 clocksource_unregister +EXPORT_SYMBOL vmlinux 0xb24f555b dump_align +EXPORT_SYMBOL vmlinux 0xb26120a2 mdiobus_read_nested +EXPORT_SYMBOL vmlinux 0xb2694c01 insert_inode_locked +EXPORT_SYMBOL vmlinux 0xb26ba166 km_new_mapping +EXPORT_SYMBOL vmlinux 0xb2851290 remove_proc_subtree +EXPORT_SYMBOL vmlinux 0xb2946a4a seq_escape_mem +EXPORT_SYMBOL vmlinux 0xb2ad9e5c fs_param_is_blob +EXPORT_SYMBOL vmlinux 0xb2bca995 __skb_recv_udp EXPORT_SYMBOL vmlinux 0xb2bcb088 acpi_current_gpe_count -EXPORT_SYMBOL vmlinux 0xb2bed064 mipi_dsi_dcs_get_power_mode -EXPORT_SYMBOL vmlinux 0xb2caa325 may_setattr +EXPORT_SYMBOL vmlinux 0xb2c7aaa3 __check_sticky EXPORT_SYMBOL vmlinux 0xb2ead97c kimage_vaddr -EXPORT_SYMBOL vmlinux 0xb2f02787 __neigh_event_send EXPORT_SYMBOL vmlinux 0xb2f35c6a xxh64 EXPORT_SYMBOL vmlinux 0xb2f579c7 __cpuhp_remove_state_cpuslocked EXPORT_SYMBOL vmlinux 0xb2fcb56d queue_delayed_work_on -EXPORT_SYMBOL vmlinux 0xb3059bae sock_common_getsockopt EXPORT_SYMBOL vmlinux 0xb308c97d wait_woken EXPORT_SYMBOL vmlinux 0xb30b9822 vme_master_set -EXPORT_SYMBOL vmlinux 0xb31938a8 __do_once_done +EXPORT_SYMBOL vmlinux 0xb31c0938 nf_ct_attach EXPORT_SYMBOL vmlinux 0xb320cc0e sg_init_one +EXPORT_SYMBOL vmlinux 0xb3243961 nd_region_release_lane EXPORT_SYMBOL vmlinux 0xb3258f79 __ubsan_handle_type_mismatch_v1 EXPORT_SYMBOL vmlinux 0xb32728bb qcom_scm_iommu_secure_ptbl_init -EXPORT_SYMBOL vmlinux 0xb3283ca8 deactivate_super -EXPORT_SYMBOL vmlinux 0xb32ed186 phy_support_asym_pause +EXPORT_SYMBOL vmlinux 0xb32a8d3b neigh_sysctl_unregister +EXPORT_SYMBOL vmlinux 0xb3376ece mipi_dsi_dcs_set_tear_on EXPORT_SYMBOL vmlinux 0xb34dca1c kryo_l2_get_indirect_reg EXPORT_SYMBOL vmlinux 0xb3687850 out_of_line_wait_on_bit_lock -EXPORT_SYMBOL vmlinux 0xb36931ad ip6_fraglist_prepare -EXPORT_SYMBOL vmlinux 0xb37c428e simple_unlink -EXPORT_SYMBOL vmlinux 0xb38e374b sock_common_setsockopt -EXPORT_SYMBOL vmlinux 0xb3962f24 ipv6_find_hdr -EXPORT_SYMBOL vmlinux 0xb3971e87 filemap_map_pages +EXPORT_SYMBOL vmlinux 0xb3788f33 get_unmapped_area +EXPORT_SYMBOL vmlinux 0xb385aa3f generic_setlease +EXPORT_SYMBOL vmlinux 0xb3871e02 __put_user_ns +EXPORT_SYMBOL vmlinux 0xb39552e4 phy_ethtool_set_link_ksettings EXPORT_SYMBOL vmlinux 0xb3a82019 profile_pc +EXPORT_SYMBOL vmlinux 0xb3ba8e9c vlan_uses_dev +EXPORT_SYMBOL vmlinux 0xb3bcd863 tty_port_carrier_raised EXPORT_SYMBOL vmlinux 0xb3bd68cc security_secmark_relabel_packet EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string -EXPORT_SYMBOL vmlinux 0xb3ef1301 __sk_queue_drop_skb +EXPORT_SYMBOL vmlinux 0xb3e194c5 dqput EXPORT_SYMBOL vmlinux 0xb3f49446 kstrtos8_from_user EXPORT_SYMBOL vmlinux 0xb3f548ad kmemdup_nul EXPORT_SYMBOL vmlinux 0xb3f7646e kthread_should_stop -EXPORT_SYMBOL vmlinux 0xb3f9e0ab security_locked_down -EXPORT_SYMBOL vmlinux 0xb4019951 msm_pinctrl_remove EXPORT_SYMBOL vmlinux 0xb4043948 acpi_execute_simple_method -EXPORT_SYMBOL vmlinux 0xb40d13f8 seq_pad -EXPORT_SYMBOL vmlinux 0xb413e344 sk_mc_loop +EXPORT_SYMBOL vmlinux 0xb407bbb3 nd_device_register +EXPORT_SYMBOL vmlinux 0xb421f44d generic_fillattr EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked EXPORT_SYMBOL vmlinux 0xb4577003 acpi_dev_present -EXPORT_SYMBOL vmlinux 0xb46ef755 input_unregister_device -EXPORT_SYMBOL vmlinux 0xb473ad42 pci_add_new_bus -EXPORT_SYMBOL vmlinux 0xb4741ffb neigh_lookup_nodev -EXPORT_SYMBOL vmlinux 0xb4856ca7 input_mt_report_finger_count -EXPORT_SYMBOL vmlinux 0xb48c1a82 fman_get_bmi_max_fifo_size +EXPORT_SYMBOL vmlinux 0xb45a8095 load_nls +EXPORT_SYMBOL vmlinux 0xb4619fa1 end_buffer_async_write +EXPORT_SYMBOL vmlinux 0xb47334e5 dquot_disable +EXPORT_SYMBOL vmlinux 0xb4752f80 inet_proto_csum_replace_by_diff +EXPORT_SYMBOL vmlinux 0xb47de8bf remove_arg_zero +EXPORT_SYMBOL vmlinux 0xb48381fd __dquot_transfer +EXPORT_SYMBOL vmlinux 0xb48921ee __destroy_inode EXPORT_SYMBOL vmlinux 0xb48d4d22 security_sb_eat_lsm_opts -EXPORT_SYMBOL vmlinux 0xb49db3e4 flow_indr_dev_unregister -EXPORT_SYMBOL vmlinux 0xb4af4ed0 __invalidate_device -EXPORT_SYMBOL vmlinux 0xb4b44f6d zero_fill_bio -EXPORT_SYMBOL vmlinux 0xb4b7b4d8 param_set_ushort -EXPORT_SYMBOL vmlinux 0xb4ba6f60 flow_rule_match_enc_opts -EXPORT_SYMBOL vmlinux 0xb4c71063 netif_rx_ni -EXPORT_SYMBOL vmlinux 0xb4d05549 dquot_file_open -EXPORT_SYMBOL vmlinux 0xb4d2b8b8 dev_set_alias -EXPORT_SYMBOL vmlinux 0xb4d5772a netif_receive_skb_core -EXPORT_SYMBOL vmlinux 0xb4e14d71 tcf_register_action -EXPORT_SYMBOL vmlinux 0xb4e58a9c qdisc_put -EXPORT_SYMBOL vmlinux 0xb4e800ed pps_lookup_dev +EXPORT_SYMBOL vmlinux 0xb4a81dcf disk_end_io_acct +EXPORT_SYMBOL vmlinux 0xb4aa8270 unlock_page_memcg +EXPORT_SYMBOL vmlinux 0xb4b72b48 ww_mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0xb4f0bb00 devm_alloc_etherdev_mqs EXPORT_SYMBOL vmlinux 0xb4f13d2a abort -EXPORT_SYMBOL vmlinux 0xb4f81e20 find_get_pages_range_tag -EXPORT_SYMBOL vmlinux 0xb50a0818 of_find_compatible_node -EXPORT_SYMBOL vmlinux 0xb5123b90 phy_disconnect -EXPORT_SYMBOL vmlinux 0xb5124a04 ppp_register_compressor -EXPORT_SYMBOL vmlinux 0xb522a317 pin_user_pages_remote -EXPORT_SYMBOL vmlinux 0xb53068fa _copy_from_iter_nocache +EXPORT_SYMBOL vmlinux 0xb50224b1 neigh_changeaddr +EXPORT_SYMBOL vmlinux 0xb50ecb64 inet_accept +EXPORT_SYMBOL vmlinux 0xb51c8595 of_pci_range_to_resource EXPORT_SYMBOL vmlinux 0xb53f2810 tcp_sockets_allocated -EXPORT_SYMBOL vmlinux 0xb5437429 mipi_dsi_turn_on_peripheral -EXPORT_SYMBOL vmlinux 0xb548eb70 touch_atime -EXPORT_SYMBOL vmlinux 0xb55198aa ps2_cmd_aborted -EXPORT_SYMBOL vmlinux 0xb559cda3 inet6_protos -EXPORT_SYMBOL vmlinux 0xb5654744 dma_map_page_attrs -EXPORT_SYMBOL vmlinux 0xb5695354 nf_log_trace -EXPORT_SYMBOL vmlinux 0xb57082b7 security_d_instantiate -EXPORT_SYMBOL vmlinux 0xb57090a2 generic_set_encrypted_ci_d_ops +EXPORT_SYMBOL vmlinux 0xb5474e05 tcp_connect +EXPORT_SYMBOL vmlinux 0xb568bca4 jbd2_journal_lock_updates +EXPORT_SYMBOL vmlinux 0xb56c069f param_get_bool EXPORT_SYMBOL vmlinux 0xb57343c2 frontswap_shrink -EXPORT_SYMBOL vmlinux 0xb5763576 dqput -EXPORT_SYMBOL vmlinux 0xb57cd9b6 bio_integrity_prep EXPORT_SYMBOL vmlinux 0xb57f1e27 fman_port_disable -EXPORT_SYMBOL vmlinux 0xb58411af adjust_managed_page_count +EXPORT_SYMBOL vmlinux 0xb586be96 generic_delete_inode EXPORT_SYMBOL vmlinux 0xb58aeaab kernel_cpustat -EXPORT_SYMBOL vmlinux 0xb59106ea pfifo_qdisc_ops -EXPORT_SYMBOL vmlinux 0xb5957513 seq_putc +EXPORT_SYMBOL vmlinux 0xb58b736a follow_pfn EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev -EXPORT_SYMBOL vmlinux 0xb5a9192b ip6_dst_hoplimit EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy +EXPORT_SYMBOL vmlinux 0xb5b07fe0 pci_set_power_state EXPORT_SYMBOL vmlinux 0xb5b63711 fileattr_fill_xflags -EXPORT_SYMBOL vmlinux 0xb5c1a499 refresh_frequency_limits -EXPORT_SYMBOL vmlinux 0xb5d05771 phy_device_remove -EXPORT_SYMBOL vmlinux 0xb5d295d1 blk_mq_start_stopped_hw_queues -EXPORT_SYMBOL vmlinux 0xb5d7bc5a blk_rq_map_user -EXPORT_SYMBOL vmlinux 0xb5db137a mmc_retune_timer_stop +EXPORT_SYMBOL vmlinux 0xb5cc1e3e md_flush_request +EXPORT_SYMBOL vmlinux 0xb5d7d8af fman_port_get_device +EXPORT_SYMBOL vmlinux 0xb5e067f2 kthread_bind +EXPORT_SYMBOL vmlinux 0xb5e3d7db register_tcf_proto_ops EXPORT_SYMBOL vmlinux 0xb5e73116 flush_delayed_work -EXPORT_SYMBOL vmlinux 0xb5ebfce5 i2c_clients_command -EXPORT_SYMBOL vmlinux 0xb60dd57c ip6_output -EXPORT_SYMBOL vmlinux 0xb61aa976 simple_transaction_set +EXPORT_SYMBOL vmlinux 0xb5ec72f7 mount_subtree +EXPORT_SYMBOL vmlinux 0xb609ab25 scsi_vpd_tpg_id EXPORT_SYMBOL vmlinux 0xb61d6fc2 down_read_interruptible +EXPORT_SYMBOL vmlinux 0xb62a4df7 devm_extcon_unregister_notifier_all EXPORT_SYMBOL vmlinux 0xb633f115 irq_poll_enable -EXPORT_SYMBOL vmlinux 0xb649b668 vfs_iocb_iter_read -EXPORT_SYMBOL vmlinux 0xb64e68ed mmc_set_blocklen -EXPORT_SYMBOL vmlinux 0xb6523938 put_ipc_ns EXPORT_SYMBOL vmlinux 0xb654ef65 acpi_os_read_port +EXPORT_SYMBOL vmlinux 0xb66eb987 __skb_free_datagram_locked +EXPORT_SYMBOL vmlinux 0xb6767a99 __set_page_dirty_no_writeback EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt -EXPORT_SYMBOL vmlinux 0xb6791c6b twl6040_set_pll EXPORT_SYMBOL vmlinux 0xb67c9280 utf8cursor EXPORT_SYMBOL vmlinux 0xb67fec0e uuid_parse -EXPORT_SYMBOL vmlinux 0xb6888d05 unlock_two_nondirectories -EXPORT_SYMBOL vmlinux 0xb69229a5 module_layout EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin EXPORT_SYMBOL vmlinux 0xb6acaa13 phy_sfp_detach -EXPORT_SYMBOL vmlinux 0xb6bcb6a2 generic_write_checks +EXPORT_SYMBOL vmlinux 0xb6b6a8e8 neigh_app_ns EXPORT_SYMBOL vmlinux 0xb6e36ce2 psched_ratecfg_precompute -EXPORT_SYMBOL vmlinux 0xb6f4a9e5 inet_getname +EXPORT_SYMBOL vmlinux 0xb6e81765 tcf_chain_get_by_act +EXPORT_SYMBOL vmlinux 0xb6fa1298 __alloc_skb EXPORT_SYMBOL vmlinux 0xb6fde909 close_fd +EXPORT_SYMBOL vmlinux 0xb7022168 fib_default_rule_add EXPORT_SYMBOL vmlinux 0xb71589f0 skip_spaces +EXPORT_SYMBOL vmlinux 0xb71740da tcp_enter_cwr +EXPORT_SYMBOL vmlinux 0xb71ad9ce flow_rule_match_icmp EXPORT_SYMBOL vmlinux 0xb71ed69f __hw_addr_unsync -EXPORT_SYMBOL vmlinux 0xb726c130 pci_unmap_rom EXPORT_SYMBOL vmlinux 0xb737b185 gen_pool_best_fit -EXPORT_SYMBOL vmlinux 0xb746c854 kthread_create_on_node -EXPORT_SYMBOL vmlinux 0xb75977ee simple_nosetlease -EXPORT_SYMBOL vmlinux 0xb764846b tcp_v4_md5_hash_skb EXPORT_SYMBOL vmlinux 0xb7688155 ucc_slow_init -EXPORT_SYMBOL vmlinux 0xb76f6fee inet_protos -EXPORT_SYMBOL vmlinux 0xb7712a14 sync_inode_metadata -EXPORT_SYMBOL vmlinux 0xb779bede t10_pi_type1_ip +EXPORT_SYMBOL vmlinux 0xb7731f35 config_group_init_type_name +EXPORT_SYMBOL vmlinux 0xb779d0fc twl6040_get_pll +EXPORT_SYMBOL vmlinux 0xb7826e55 napi_build_skb EXPORT_SYMBOL vmlinux 0xb784154f utf8_casefold_hash -EXPORT_SYMBOL vmlinux 0xb787dcb7 sock_no_listen EXPORT_SYMBOL vmlinux 0xb788fb30 gic_pmr_sync -EXPORT_SYMBOL vmlinux 0xb78b4722 sock_create_kern +EXPORT_SYMBOL vmlinux 0xb78c3562 __blkdev_issue_zeroout EXPORT_SYMBOL vmlinux 0xb78debe3 LZ4_decompress_fast_usingDict -EXPORT_SYMBOL vmlinux 0xb7927024 sock_pfree -EXPORT_SYMBOL vmlinux 0xb7a0c094 xfrm_unregister_type +EXPORT_SYMBOL vmlinux 0xb797bfb8 bdi_set_max_ratio +EXPORT_SYMBOL vmlinux 0xb7abd91e xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0xb7aca1b4 kernel_read EXPORT_SYMBOL vmlinux 0xb7b7fa6e node_states -EXPORT_SYMBOL vmlinux 0xb7bac0b7 pnp_register_driver -EXPORT_SYMBOL vmlinux 0xb7be8bca scsi_vpd_lun_id +EXPORT_SYMBOL vmlinux 0xb7bf6d56 flow_rule_match_meta EXPORT_SYMBOL vmlinux 0xb7c0f443 sort +EXPORT_SYMBOL vmlinux 0xb7c69fb9 phy_ethtool_ksettings_get EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags -EXPORT_SYMBOL vmlinux 0xb7efe58b phy_ethtool_get_wol -EXPORT_SYMBOL vmlinux 0xb7ff0d4b neigh_lookup -EXPORT_SYMBOL vmlinux 0xb815c23b devm_clk_release_clkdev -EXPORT_SYMBOL vmlinux 0xb82099ba __blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0xb7ce8470 mmc_gpio_set_cd_isr +EXPORT_SYMBOL vmlinux 0xb7d86a96 forget_cached_acl +EXPORT_SYMBOL vmlinux 0xb7ec3de8 mii_link_ok +EXPORT_SYMBOL vmlinux 0xb802f98e blk_integrity_compare +EXPORT_SYMBOL vmlinux 0xb8078514 mmc_retune_pause +EXPORT_SYMBOL vmlinux 0xb81a554c file_modified +EXPORT_SYMBOL vmlinux 0xb82dfdf9 tegra_ivc_notified EXPORT_SYMBOL vmlinux 0xb83129db ZSTD_decompressContinue -EXPORT_SYMBOL vmlinux 0xb83f8040 arp_xmit +EXPORT_SYMBOL vmlinux 0xb831ec27 always_delete_dentry +EXPORT_SYMBOL vmlinux 0xb83d9767 unpin_user_page_range_dirty_lock EXPORT_SYMBOL vmlinux 0xb842716c qcom_scm_ocmem_lock_available -EXPORT_SYMBOL vmlinux 0xb85b2c5e blk_rq_map_integrity_sg +EXPORT_SYMBOL vmlinux 0xb85bf115 __inode_add_bytes EXPORT_SYMBOL vmlinux 0xb8605d9c qman_p_static_dequeue_add EXPORT_SYMBOL vmlinux 0xb868ac5c register_sysrq_key +EXPORT_SYMBOL vmlinux 0xb875dcb1 devfreq_monitor_suspend +EXPORT_SYMBOL vmlinux 0xb88813e4 seq_open +EXPORT_SYMBOL vmlinux 0xb88907a7 genphy_c37_config_aneg EXPORT_SYMBOL vmlinux 0xb88fd035 set_groups -EXPORT_SYMBOL vmlinux 0xb8958104 blk_mq_rq_cpu EXPORT_SYMBOL vmlinux 0xb89b6e6b guid_parse EXPORT_SYMBOL vmlinux 0xb8b043f2 kfree_link -EXPORT_SYMBOL vmlinux 0xb8b64717 vfs_mkobj EXPORT_SYMBOL vmlinux 0xb8b9f817 kmalloc_order_trace -EXPORT_SYMBOL vmlinux 0xb8e54d6e proc_create_mount_point -EXPORT_SYMBOL vmlinux 0xb8f09fb8 __ip_mc_dec_group -EXPORT_SYMBOL vmlinux 0xb8f4be7f i2c_smbus_write_i2c_block_data +EXPORT_SYMBOL vmlinux 0xb8f9fc77 seg6_hmac_net_init EXPORT_SYMBOL vmlinux 0xb9056bb6 remove_conflicting_framebuffers EXPORT_SYMBOL vmlinux 0xb907513f unpoison_memory -EXPORT_SYMBOL vmlinux 0xb90a54f9 mfd_cell_enable EXPORT_SYMBOL vmlinux 0xb911bb58 minmax_running_max -EXPORT_SYMBOL vmlinux 0xb924f79b __qdisc_calculate_pkt_len -EXPORT_SYMBOL vmlinux 0xb9262d1b component_match_add_release -EXPORT_SYMBOL vmlinux 0xb935c9b5 cros_ec_check_result -EXPORT_SYMBOL vmlinux 0xb93de22a vlan_filter_drop_vids +EXPORT_SYMBOL vmlinux 0xb91dcaaa pci_iomap_range +EXPORT_SYMBOL vmlinux 0xb936a724 unpin_user_page EXPORT_SYMBOL vmlinux 0xb94339c4 qdisc_put_stab +EXPORT_SYMBOL vmlinux 0xb945e965 clk_hw_register_clkdev EXPORT_SYMBOL vmlinux 0xb9478d90 hdmi_drm_infoframe_unpack_only -EXPORT_SYMBOL vmlinux 0xb94c5926 pci_match_id -EXPORT_SYMBOL vmlinux 0xb96e5e2f new_inode -EXPORT_SYMBOL vmlinux 0xb96f4465 __traceiter_spi_transfer_stop -EXPORT_SYMBOL vmlinux 0xb96fa9be genphy_check_and_restart_aneg -EXPORT_SYMBOL vmlinux 0xb971ae3e of_find_node_with_property +EXPORT_SYMBOL vmlinux 0xb94c100f __ip_options_compile +EXPORT_SYMBOL vmlinux 0xb96846cd vmap EXPORT_SYMBOL vmlinux 0xb97220ff bitmap_parse -EXPORT_SYMBOL vmlinux 0xb9970bbd skb_csum_hwoffload_help -EXPORT_SYMBOL vmlinux 0xb9990cb8 tcp_v4_do_rcv -EXPORT_SYMBOL vmlinux 0xb99f686f get_tree_bdev +EXPORT_SYMBOL vmlinux 0xb9a3d053 dma_unmap_sg_attrs +EXPORT_SYMBOL vmlinux 0xb9a84f4a __tcf_em_tree_match +EXPORT_SYMBOL vmlinux 0xb9ac6856 input_get_timestamp EXPORT_SYMBOL vmlinux 0xb9af1d0d __xa_clear_mark -EXPORT_SYMBOL vmlinux 0xb9bddc76 devm_pci_remap_iospace -EXPORT_SYMBOL vmlinux 0xb9ce9de3 iommu_put_dma_cookie +EXPORT_SYMBOL vmlinux 0xb9c92edd input_inject_event EXPORT_SYMBOL vmlinux 0xb9e8e2cc in6addr_sitelocal_allrouters +EXPORT_SYMBOL vmlinux 0xb9ec2590 elv_rb_latter_request EXPORT_SYMBOL vmlinux 0xb9fc381a qcom_scm_hdcp_req -EXPORT_SYMBOL vmlinux 0xb9ff3c1d seg6_hmac_validate_skb +EXPORT_SYMBOL vmlinux 0xb9fcb6c3 scsi_host_alloc EXPORT_SYMBOL vmlinux 0xba0676e2 vm_zone_stat +EXPORT_SYMBOL vmlinux 0xba0d5fda netif_set_real_num_queues +EXPORT_SYMBOL vmlinux 0xba1002e4 phy_ethtool_set_wol EXPORT_SYMBOL vmlinux 0xba1008c8 __crc32c_le -EXPORT_SYMBOL vmlinux 0xba12a6b0 jbd2_journal_inode_ranged_wait -EXPORT_SYMBOL vmlinux 0xba1f4eb0 filemap_fault -EXPORT_SYMBOL vmlinux 0xba40310b tcp_timewait_state_process -EXPORT_SYMBOL vmlinux 0xba46eb9c iov_iter_pipe +EXPORT_SYMBOL vmlinux 0xba14a8e7 __scsi_iterate_devices +EXPORT_SYMBOL vmlinux 0xba165066 __blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0xba3be868 fb_set_cmap EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy EXPORT_SYMBOL vmlinux 0xba53adab nla_policy_len -EXPORT_SYMBOL vmlinux 0xba66d255 pcie_capability_write_word +EXPORT_SYMBOL vmlinux 0xba62b93f tcp_fastopen_defer_connect +EXPORT_SYMBOL vmlinux 0xba62cb9c security_binder_transfer_file +EXPORT_SYMBOL vmlinux 0xba6a7a2c blk_set_queue_depth EXPORT_SYMBOL vmlinux 0xba707a78 qe_get_brg_clk -EXPORT_SYMBOL vmlinux 0xbaa50bd3 skb_dump -EXPORT_SYMBOL vmlinux 0xbab1ef84 fixed_size_llseek -EXPORT_SYMBOL vmlinux 0xbab5b23c xsk_tx_completed -EXPORT_SYMBOL vmlinux 0xbab8f407 init_task -EXPORT_SYMBOL vmlinux 0xbaf1de72 wait_on_page_private_2_killable -EXPORT_SYMBOL vmlinux 0xbaf6e5f0 vfs_fileattr_get -EXPORT_SYMBOL vmlinux 0xbafce1f8 iw_handler_get_spy +EXPORT_SYMBOL vmlinux 0xba7969e0 pci_set_master +EXPORT_SYMBOL vmlinux 0xba7d907f md_integrity_register +EXPORT_SYMBOL vmlinux 0xba80d49f unlock_page +EXPORT_SYMBOL vmlinux 0xba8950b1 fs_bio_set +EXPORT_SYMBOL vmlinux 0xba8d69dc udp_flush_pending_frames +EXPORT_SYMBOL vmlinux 0xbac7b787 input_flush_device +EXPORT_SYMBOL vmlinux 0xbac9ace4 thermal_zone_device_critical +EXPORT_SYMBOL vmlinux 0xbad6faaf get_acl +EXPORT_SYMBOL vmlinux 0xbad95ed8 super_setup_bdi +EXPORT_SYMBOL vmlinux 0xbae619f7 rproc_add_subdev +EXPORT_SYMBOL vmlinux 0xbb032076 of_get_parent EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset -EXPORT_SYMBOL vmlinux 0xbb09ed55 pci_bus_write_config_word EXPORT_SYMBOL vmlinux 0xbb21260e convert_ifc_address EXPORT_SYMBOL vmlinux 0xbb24f607 init_cdrom_command -EXPORT_SYMBOL vmlinux 0xbb323fbe phy_print_status -EXPORT_SYMBOL vmlinux 0xbb3495b4 locks_copy_conflock EXPORT_SYMBOL vmlinux 0xbb35675b __bitmap_intersects +EXPORT_SYMBOL vmlinux 0xbb405093 fwnode_phy_find_device EXPORT_SYMBOL vmlinux 0xbb4f4766 simple_write_to_buffer +EXPORT_SYMBOL vmlinux 0xbb55451d mr_vif_seq_next +EXPORT_SYMBOL vmlinux 0xbb5d64a5 security_sk_clone EXPORT_SYMBOL vmlinux 0xbb687724 bman_new_pool -EXPORT_SYMBOL vmlinux 0xbb69f5cf scsi_is_host_device -EXPORT_SYMBOL vmlinux 0xbb79e69c __vlan_find_dev_deep_rcu -EXPORT_SYMBOL vmlinux 0xbb83ec50 from_kprojid +EXPORT_SYMBOL vmlinux 0xbb69c268 __blk_mq_end_request +EXPORT_SYMBOL vmlinux 0xbb6ec7d4 crypto_sha512_update +EXPORT_SYMBOL vmlinux 0xbb72f419 mmc_gpio_get_ro EXPORT_SYMBOL vmlinux 0xbb9ed3bf mutex_trylock -EXPORT_SYMBOL vmlinux 0xbba500da xfrm_init_replay -EXPORT_SYMBOL vmlinux 0xbbbddf3f tcf_qevent_dump +EXPORT_SYMBOL vmlinux 0xbba109df mii_ethtool_set_link_ksettings +EXPORT_SYMBOL vmlinux 0xbba2b38b tty_driver_flush_buffer +EXPORT_SYMBOL vmlinux 0xbbe2df02 iov_iter_init EXPORT_SYMBOL vmlinux 0xbbe80fdb kmalloc_order -EXPORT_SYMBOL vmlinux 0xbbf17944 eth_get_headlen -EXPORT_SYMBOL vmlinux 0xbbfa81c6 mr_vif_seq_idx -EXPORT_SYMBOL vmlinux 0xbbfc89b5 pcie_get_mps -EXPORT_SYMBOL vmlinux 0xbc0b5483 pci_bus_read_config_byte -EXPORT_SYMBOL vmlinux 0xbc17b05b bh_uptodate_or_lock +EXPORT_SYMBOL vmlinux 0xbbe843fc inet_frags_fini +EXPORT_SYMBOL vmlinux 0xbbeb941c thread_group_exited +EXPORT_SYMBOL vmlinux 0xbc0e6fdf __blk_mq_alloc_disk EXPORT_SYMBOL vmlinux 0xbc2031de acpi_processor_get_bios_limit -EXPORT_SYMBOL vmlinux 0xbc35519c dquot_set_dqinfo -EXPORT_SYMBOL vmlinux 0xbc4f18b1 dcache_dir_lseek -EXPORT_SYMBOL vmlinux 0xbc54b401 backlight_device_set_brightness -EXPORT_SYMBOL vmlinux 0xbc61c125 iter_file_splice_write -EXPORT_SYMBOL vmlinux 0xbc746e6e blk_queue_flag_set -EXPORT_SYMBOL vmlinux 0xbc80383d blk_queue_logical_block_size -EXPORT_SYMBOL vmlinux 0xbc81c5a3 pci_map_rom -EXPORT_SYMBOL vmlinux 0xbc88dcfb netif_tx_stop_all_queues +EXPORT_SYMBOL vmlinux 0xbc2b0a6f dev_load +EXPORT_SYMBOL vmlinux 0xbc7b69e5 single_open_size +EXPORT_SYMBOL vmlinux 0xbc804a5b dev_addr_flush +EXPORT_SYMBOL vmlinux 0xbc87862f netpoll_parse_options +EXPORT_SYMBOL vmlinux 0xbc88dce7 md_register_thread +EXPORT_SYMBOL vmlinux 0xbca768e3 flow_rule_match_control EXPORT_SYMBOL vmlinux 0xbcab6ee6 sscanf -EXPORT_SYMBOL vmlinux 0xbcacebb9 security_sb_mnt_opts_compat -EXPORT_SYMBOL vmlinux 0xbcc1ddbb security_sk_classify_flow -EXPORT_SYMBOL vmlinux 0xbccbe8a4 vm_insert_page -EXPORT_SYMBOL vmlinux 0xbcd96655 jbd2_journal_stop -EXPORT_SYMBOL vmlinux 0xbcfba841 config_item_set_name -EXPORT_SYMBOL vmlinux 0xbcfbad97 config_item_init_type_name -EXPORT_SYMBOL vmlinux 0xbd36963f ip_local_deliver -EXPORT_SYMBOL vmlinux 0xbd390366 ip_defrag +EXPORT_SYMBOL vmlinux 0xbcae8ac6 xfrm_policy_walk +EXPORT_SYMBOL vmlinux 0xbcba3087 dev_lstats_read +EXPORT_SYMBOL vmlinux 0xbcbdcdbd netdev_master_upper_dev_get_rcu +EXPORT_SYMBOL vmlinux 0xbcd036c3 config_group_find_item +EXPORT_SYMBOL vmlinux 0xbcf1637d __nlmsg_put +EXPORT_SYMBOL vmlinux 0xbd1e2a51 flow_indr_block_cb_alloc +EXPORT_SYMBOL vmlinux 0xbd296c41 configfs_register_subsystem EXPORT_SYMBOL vmlinux 0xbd462b55 __kfifo_init -EXPORT_SYMBOL vmlinux 0xbd618963 param_get_ushort +EXPORT_SYMBOL vmlinux 0xbd4fdace put_ipc_ns +EXPORT_SYMBOL vmlinux 0xbd5c3ac2 skb_seq_read EXPORT_SYMBOL vmlinux 0xbd628752 __tracepoint_mmap_lock_start_locking +EXPORT_SYMBOL vmlinux 0xbd66d3b3 __frontswap_test EXPORT_SYMBOL vmlinux 0xbd6841d4 crc16 -EXPORT_SYMBOL vmlinux 0xbd7a6c1e jbd2_journal_clear_err -EXPORT_SYMBOL vmlinux 0xbd7ced6d phy_drivers_register -EXPORT_SYMBOL vmlinux 0xbd7d1839 always_delete_dentry -EXPORT_SYMBOL vmlinux 0xbd882a4e sk_capable -EXPORT_SYMBOL vmlinux 0xbd94db05 __blk_mq_alloc_disk -EXPORT_SYMBOL vmlinux 0xbda56edb dev_pick_tx_cpu_id -EXPORT_SYMBOL vmlinux 0xbdd5edff devm_input_allocate_device -EXPORT_SYMBOL vmlinux 0xbe0b2d8c __tcf_em_tree_match +EXPORT_SYMBOL vmlinux 0xbd6a621f nf_log_set +EXPORT_SYMBOL vmlinux 0xbd7f2e6a ip6_dst_hoplimit +EXPORT_SYMBOL vmlinux 0xbd8e9d66 ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0xbd98f683 configfs_unregister_group +EXPORT_SYMBOL vmlinux 0xbdb05aaa dcache_readdir +EXPORT_SYMBOL vmlinux 0xbdbdb9fd skb_recv_datagram +EXPORT_SYMBOL vmlinux 0xbdd813f3 component_match_add_release +EXPORT_SYMBOL vmlinux 0xbdf706a6 ww_mutex_lock EXPORT_SYMBOL vmlinux 0xbe118c52 __tracepoint_mmap_lock_acquire_returned -EXPORT_SYMBOL vmlinux 0xbe133369 ip6_frag_next EXPORT_SYMBOL vmlinux 0xbe1427af __printk_cpu_unlock -EXPORT_SYMBOL vmlinux 0xbe3edbb0 xfrm_trans_queue_net +EXPORT_SYMBOL vmlinux 0xbe1817db udp_poll EXPORT_SYMBOL vmlinux 0xbe49252c acpi_os_write_port EXPORT_SYMBOL vmlinux 0xbe4eb6ed secure_dccpv6_sequence_number +EXPORT_SYMBOL vmlinux 0xbe551e5f new_inode EXPORT_SYMBOL vmlinux 0xbe5a24e9 xxh32_copy_state -EXPORT_SYMBOL vmlinux 0xbe5c57f4 xfrm_spd_getinfo EXPORT_SYMBOL vmlinux 0xbe6a866f __wait_on_bit -EXPORT_SYMBOL vmlinux 0xbe749e1b pci_setup_cardbus -EXPORT_SYMBOL vmlinux 0xbe7962ea dev_printk_emit +EXPORT_SYMBOL vmlinux 0xbe7363fa vmf_insert_mixed_mkwrite EXPORT_SYMBOL vmlinux 0xbe7e05a8 acpi_tb_install_and_load_table -EXPORT_SYMBOL vmlinux 0xbe86b32f input_set_min_poll_interval -EXPORT_SYMBOL vmlinux 0xbe8eb7ad add_to_pipe -EXPORT_SYMBOL vmlinux 0xbe956795 pci_find_parent_resource -EXPORT_SYMBOL vmlinux 0xbea105b2 mii_nway_restart -EXPORT_SYMBOL vmlinux 0xbea49f71 vfs_unlink -EXPORT_SYMBOL vmlinux 0xbea8bbf4 mmc_free_host -EXPORT_SYMBOL vmlinux 0xbec038b5 input_mt_drop_unused -EXPORT_SYMBOL vmlinux 0xbed68a5f blk_queue_update_dma_alignment +EXPORT_SYMBOL vmlinux 0xbe97cc6c ipmr_rule_default +EXPORT_SYMBOL vmlinux 0xbe9a769b tcf_idr_create +EXPORT_SYMBOL vmlinux 0xbeacf645 reuseport_alloc +EXPORT_SYMBOL vmlinux 0xbed12727 blk_queue_update_dma_pad +EXPORT_SYMBOL vmlinux 0xbed7e679 xfrm6_protocol_deregister +EXPORT_SYMBOL vmlinux 0xbee9c5ae blk_queue_segment_boundary +EXPORT_SYMBOL vmlinux 0xbeecebfa fman_get_pause_cfg EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule -EXPORT_SYMBOL vmlinux 0xbef5c69c vfs_fsync_range EXPORT_SYMBOL vmlinux 0xbefa51a3 gen_pool_add_owner -EXPORT_SYMBOL vmlinux 0xbf151489 netdev_lower_get_next -EXPORT_SYMBOL vmlinux 0xbf3ca82e security_sb_clone_mnt_opts -EXPORT_SYMBOL vmlinux 0xbf46f7ba mipi_dsi_dcs_set_page_address -EXPORT_SYMBOL vmlinux 0xbf470bdc vm_map_pages_zero -EXPORT_SYMBOL vmlinux 0xbf4b9e12 ucc_of_parse_tdm +EXPORT_SYMBOL vmlinux 0xbeff0157 jbd2_journal_get_write_access +EXPORT_SYMBOL vmlinux 0xbf16cb00 neigh_lookup +EXPORT_SYMBOL vmlinux 0xbf33e8cb blk_queue_max_write_zeroes_sectors +EXPORT_SYMBOL vmlinux 0xbf3b6aac rproc_add +EXPORT_SYMBOL vmlinux 0xbf426a7f tcp_seq_start +EXPORT_SYMBOL vmlinux 0xbf4af14b crypto_sha256_update EXPORT_SYMBOL vmlinux 0xbf59c419 posix_acl_init -EXPORT_SYMBOL vmlinux 0xbf809455 ip6_fraglist_init +EXPORT_SYMBOL vmlinux 0xbf7013e7 set_cached_acl +EXPORT_SYMBOL vmlinux 0xbf770bdc blk_get_queue +EXPORT_SYMBOL vmlinux 0xbf92b993 dcbnl_ieee_notify +EXPORT_SYMBOL vmlinux 0xbf94638f pci_ep_cfs_add_epc_group +EXPORT_SYMBOL vmlinux 0xbf9ba4b0 phy_disconnect EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set -EXPORT_SYMBOL vmlinux 0xbfabe9b7 bio_reset -EXPORT_SYMBOL vmlinux 0xbfb1f226 sg_miter_stop -EXPORT_SYMBOL vmlinux 0xbfb9bab3 devfreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0xbf9fd327 scsi_test_unit_ready EXPORT_SYMBOL vmlinux 0xbfcbc0d2 stmp_reset_block -EXPORT_SYMBOL vmlinux 0xbfcfca31 xsk_set_rx_need_wakeup -EXPORT_SYMBOL vmlinux 0xbfd69592 ether_setup -EXPORT_SYMBOL vmlinux 0xbfe3da9c __mmap_lock_do_trace_start_locking -EXPORT_SYMBOL vmlinux 0xbfe89eb0 register_mii_tstamp_controller +EXPORT_SYMBOL vmlinux 0xbfd9c793 nvmem_get_mac_address +EXPORT_SYMBOL vmlinux 0xbfda20e1 dquot_commit +EXPORT_SYMBOL vmlinux 0xbfe7974e mmc_cqe_recovery EXPORT_SYMBOL vmlinux 0xbfee3ad5 loop_unregister_transfer -EXPORT_SYMBOL vmlinux 0xc001d959 devm_register_netdev -EXPORT_SYMBOL vmlinux 0xc00462a2 tcp_sock_set_keepcnt -EXPORT_SYMBOL vmlinux 0xc0178627 device_add_disk +EXPORT_SYMBOL vmlinux 0xbff00b76 kernel_connect +EXPORT_SYMBOL vmlinux 0xc006de14 __skb_recv_datagram +EXPORT_SYMBOL vmlinux 0xc0181949 phy_device_remove EXPORT_SYMBOL vmlinux 0xc0243ea6 nla_reserve_nohdr -EXPORT_SYMBOL vmlinux 0xc0356141 inet_addr_type_table -EXPORT_SYMBOL vmlinux 0xc03cd207 _dev_crit -EXPORT_SYMBOL vmlinux 0xc040af48 nonseekable_open -EXPORT_SYMBOL vmlinux 0xc06c90f9 xfrm_policy_byid -EXPORT_SYMBOL vmlinux 0xc06f2ef7 skb_copy_and_csum_datagram_msg -EXPORT_SYMBOL vmlinux 0xc06fae5e ip_setsockopt -EXPORT_SYMBOL vmlinux 0xc0749095 skb_flow_dissect_ct +EXPORT_SYMBOL vmlinux 0xc0364007 fault_in_writeable +EXPORT_SYMBOL vmlinux 0xc039154f xfrm_policy_hash_rebuild +EXPORT_SYMBOL vmlinux 0xc04ecbc2 page_pool_create +EXPORT_SYMBOL vmlinux 0xc057220d tcp_v4_syn_recv_sock +EXPORT_SYMBOL vmlinux 0xc065aa9d kobject_get EXPORT_SYMBOL vmlinux 0xc0763484 rfkill_blocked EXPORT_SYMBOL vmlinux 0xc07b0863 fb_destroy_modedb -EXPORT_SYMBOL vmlinux 0xc07e7846 dev_get_phys_port_id EXPORT_SYMBOL vmlinux 0xc0afb5d7 cgroup_bpf_enabled_key EXPORT_SYMBOL vmlinux 0xc0b2664d devlink_dpipe_header_ipv4 +EXPORT_SYMBOL vmlinux 0xc0bc48a5 security_path_mkdir EXPORT_SYMBOL vmlinux 0xc0bca0f1 ZSTD_nextSrcSizeToDecompress -EXPORT_SYMBOL vmlinux 0xc0bcdbe9 tty_port_alloc_xmit_buf -EXPORT_SYMBOL vmlinux 0xc0c2bf24 i2c_smbus_read_i2c_block_data_or_emulated -EXPORT_SYMBOL vmlinux 0xc0c2c72b ptp_find_pin_unlocked -EXPORT_SYMBOL vmlinux 0xc0c8e16c fc_mount -EXPORT_SYMBOL vmlinux 0xc0cbc6a7 blk_mq_alloc_tag_set -EXPORT_SYMBOL vmlinux 0xc0e430c5 module_refcount -EXPORT_SYMBOL vmlinux 0xc0e76965 skb_copy_and_csum_dev -EXPORT_SYMBOL vmlinux 0xc0eaaf4e xfrm4_protocol_register +EXPORT_SYMBOL vmlinux 0xc0bdef4d mipi_dsi_dcs_get_pixel_format +EXPORT_SYMBOL vmlinux 0xc0e3f21f inet_recvmsg +EXPORT_SYMBOL vmlinux 0xc0f1aa7f ping_prot EXPORT_SYMBOL vmlinux 0xc0ff12fb nla_strdup EXPORT_SYMBOL vmlinux 0xc0ff21c1 input_get_new_minor -EXPORT_SYMBOL vmlinux 0xc1143566 __skb_try_recv_datagram -EXPORT_SYMBOL vmlinux 0xc139e60c __of_get_address -EXPORT_SYMBOL vmlinux 0xc13ffd0f devm_ioport_unmap +EXPORT_SYMBOL vmlinux 0xc1198eed cad_pid +EXPORT_SYMBOL vmlinux 0xc12fa6ff netif_rx_any_context +EXPORT_SYMBOL vmlinux 0xc1481c5f inode_dio_wait EXPORT_SYMBOL vmlinux 0xc14dc168 acpi_get_data -EXPORT_SYMBOL vmlinux 0xc1500292 fwnode_mdiobus_phy_device_register EXPORT_SYMBOL vmlinux 0xc1514a3b free_irq -EXPORT_SYMBOL vmlinux 0xc1544f19 neigh_seq_next +EXPORT_SYMBOL vmlinux 0xc1535483 mr_fill_mroute +EXPORT_SYMBOL vmlinux 0xc156e4d0 pnp_start_dev EXPORT_SYMBOL vmlinux 0xc1579516 fman_port_enable EXPORT_SYMBOL vmlinux 0xc16410b9 ZSTD_getDictID_fromDDict EXPORT_SYMBOL vmlinux 0xc164a51c keygen_init +EXPORT_SYMBOL vmlinux 0xc16a41e2 tcp_timewait_state_process EXPORT_SYMBOL vmlinux 0xc16be39d iter_div_u64_rem -EXPORT_SYMBOL vmlinux 0xc17b99e4 __lock_page -EXPORT_SYMBOL vmlinux 0xc181c457 sock_create -EXPORT_SYMBOL vmlinux 0xc192a753 scsi_test_unit_ready -EXPORT_SYMBOL vmlinux 0xc1b419dd dquot_set_dqblk -EXPORT_SYMBOL vmlinux 0xc1b9cf33 unregister_fib_notifier -EXPORT_SYMBOL vmlinux 0xc1ca142a bio_add_pc_page +EXPORT_SYMBOL vmlinux 0xc18a39ba generic_file_read_iter +EXPORT_SYMBOL vmlinux 0xc1bafcad configfs_depend_item_unlocked +EXPORT_SYMBOL vmlinux 0xc1bb0e8f proc_create +EXPORT_SYMBOL vmlinux 0xc1be01b7 dquot_resume +EXPORT_SYMBOL vmlinux 0xc1cd6570 tcf_generic_walker EXPORT_SYMBOL vmlinux 0xc1d5d504 scsi_cmd_allowed EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget EXPORT_SYMBOL vmlinux 0xc1e2c742 tegra_io_rail_power_on -EXPORT_SYMBOL vmlinux 0xc1eb61b4 ps2_sliced_command -EXPORT_SYMBOL vmlinux 0xc1eeab9c vlan_vids_del_by_dev +EXPORT_SYMBOL vmlinux 0xc1e2eeba __skb_gro_checksum_complete +EXPORT_SYMBOL vmlinux 0xc1e5ef64 __remove_inode_hash +EXPORT_SYMBOL vmlinux 0xc1e6ca6d copy_page_from_iter +EXPORT_SYMBOL vmlinux 0xc1f4df9b pps_event +EXPORT_SYMBOL vmlinux 0xc1fc7765 vfs_fadvise EXPORT_SYMBOL vmlinux 0xc2050974 fman_port_get_tstamp -EXPORT_SYMBOL vmlinux 0xc22eb738 dev_vprintk_emit +EXPORT_SYMBOL vmlinux 0xc206b939 init_task +EXPORT_SYMBOL vmlinux 0xc22663c8 netif_schedule_queue EXPORT_SYMBOL vmlinux 0xc2310cdc logic_inl +EXPORT_SYMBOL vmlinux 0xc24d5608 __xfrm_route_forward +EXPORT_SYMBOL vmlinux 0xc2557cfd sk_stream_kill_queues +EXPORT_SYMBOL vmlinux 0xc25cbbd4 inet_confirm_addr +EXPORT_SYMBOL vmlinux 0xc25fd2ea nd_btt_probe EXPORT_SYMBOL vmlinux 0xc267960e utf8_validate -EXPORT_SYMBOL vmlinux 0xc27de4f7 skb_mac_gso_segment +EXPORT_SYMBOL vmlinux 0xc273c0f3 __block_write_begin +EXPORT_SYMBOL vmlinux 0xc27b722c _copy_to_iter +EXPORT_SYMBOL vmlinux 0xc27cc015 devfreq_register_opp_notifier EXPORT_SYMBOL vmlinux 0xc29bf967 strspn EXPORT_SYMBOL vmlinux 0xc2a17ebe seqno_fence_ops -EXPORT_SYMBOL vmlinux 0xc2b120ee kobject_init -EXPORT_SYMBOL vmlinux 0xc2c9ae17 blk_mq_start_hw_queues -EXPORT_SYMBOL vmlinux 0xc2ce0143 get_user_pages -EXPORT_SYMBOL vmlinux 0xc2d6495f ps2_begin_command +EXPORT_SYMBOL vmlinux 0xc2ac04f6 of_phy_get_and_connect +EXPORT_SYMBOL vmlinux 0xc2bffa36 napi_enable +EXPORT_SYMBOL vmlinux 0xc2d9c24e param_set_uint +EXPORT_SYMBOL vmlinux 0xc2dd6652 flow_rule_match_enc_opts +EXPORT_SYMBOL vmlinux 0xc2e04251 seq_path EXPORT_SYMBOL vmlinux 0xc2e168ab caches_clean_inval_pou EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices EXPORT_SYMBOL vmlinux 0xc2f11eac meson_sm_call_read -EXPORT_SYMBOL vmlinux 0xc2f50de5 ip6_err_gen_icmpv6_unreach EXPORT_SYMBOL vmlinux 0xc2f52274 __lshrti3 -EXPORT_SYMBOL vmlinux 0xc2f92d07 mdiobus_free +EXPORT_SYMBOL vmlinux 0xc2fb4ee7 netlink_broadcast +EXPORT_SYMBOL vmlinux 0xc300a6b3 submit_bh +EXPORT_SYMBOL vmlinux 0xc3045a06 mod_zone_page_state EXPORT_SYMBOL vmlinux 0xc3055d20 usleep_range_state +EXPORT_SYMBOL vmlinux 0xc30ea2c0 simple_symlink_inode_operations EXPORT_SYMBOL vmlinux 0xc310b981 strnstr -EXPORT_SYMBOL vmlinux 0xc3174df5 simple_write_begin EXPORT_SYMBOL vmlinux 0xc31db0ce is_vmalloc_addr -EXPORT_SYMBOL vmlinux 0xc323e2e4 of_phy_deregister_fixed_link -EXPORT_SYMBOL vmlinux 0xc328db10 bdevname +EXPORT_SYMBOL vmlinux 0xc32bb487 pcie_get_readrq EXPORT_SYMBOL vmlinux 0xc32c71af register_inetaddr_validator_notifier -EXPORT_SYMBOL vmlinux 0xc34316b6 md_write_end -EXPORT_SYMBOL vmlinux 0xc34b1626 phy_start_cable_test -EXPORT_SYMBOL vmlinux 0xc354ee2f inet_listen +EXPORT_SYMBOL vmlinux 0xc3496cb6 jbd2_journal_inode_ranged_write +EXPORT_SYMBOL vmlinux 0xc34afbe5 register_mii_tstamp_controller EXPORT_SYMBOL vmlinux 0xc36a3bd4 __acpi_handle_debug -EXPORT_SYMBOL vmlinux 0xc375287a mmc_gpio_get_ro EXPORT_SYMBOL vmlinux 0xc3762aec mempool_alloc -EXPORT_SYMBOL vmlinux 0xc3768f8c md_done_sync EXPORT_SYMBOL vmlinux 0xc37f9c6e cpufreq_update_policy -EXPORT_SYMBOL vmlinux 0xc383e1ec sk_stop_timer_sync -EXPORT_SYMBOL vmlinux 0xc389029a clk_bulk_get_all +EXPORT_SYMBOL vmlinux 0xc38a1cea of_cpu_node_to_id EXPORT_SYMBOL vmlinux 0xc38c83b8 mod_timer +EXPORT_SYMBOL vmlinux 0xc3a40f87 vfs_get_link +EXPORT_SYMBOL vmlinux 0xc3aaa00e of_graph_parse_endpoint +EXPORT_SYMBOL vmlinux 0xc3b38b60 watchdog_register_governor EXPORT_SYMBOL vmlinux 0xc3bc72ad trace_print_array_seq +EXPORT_SYMBOL vmlinux 0xc3bcb1b5 __sk_receive_skb +EXPORT_SYMBOL vmlinux 0xc3bd7ef9 skb_checksum_trimmed EXPORT_SYMBOL vmlinux 0xc3cd034d crc8_populate_lsb -EXPORT_SYMBOL vmlinux 0xc3dff924 udp_seq_start -EXPORT_SYMBOL vmlinux 0xc3e6bd6f pin_user_pages -EXPORT_SYMBOL vmlinux 0xc3f577af mmc_can_erase -EXPORT_SYMBOL vmlinux 0xc3fefe94 reuseport_stop_listen_sock +EXPORT_SYMBOL vmlinux 0xc3d204bd mmc_detect_change +EXPORT_SYMBOL vmlinux 0xc3e9a465 pnp_release_card_device +EXPORT_SYMBOL vmlinux 0xc3f8cae7 sock_kfree_s EXPORT_SYMBOL vmlinux 0xc3ff38c2 down_read_trylock -EXPORT_SYMBOL vmlinux 0xc41a4a8d tcp_recvmsg +EXPORT_SYMBOL vmlinux 0xc4192763 devm_clk_release_clkdev +EXPORT_SYMBOL vmlinux 0xc41ba919 show_init_ipc_ns EXPORT_SYMBOL vmlinux 0xc41bc980 iwe_stream_add_value +EXPORT_SYMBOL vmlinux 0xc41c00d3 netdev_lower_get_next_private_rcu EXPORT_SYMBOL vmlinux 0xc4212ab9 qdisc_class_hash_insert +EXPORT_SYMBOL vmlinux 0xc42c42be ip6tun_encaps EXPORT_SYMBOL vmlinux 0xc42dcb99 acpi_evaluate_ost -EXPORT_SYMBOL vmlinux 0xc459ad00 iommu_get_dma_cookie -EXPORT_SYMBOL vmlinux 0xc45b8526 scsi_command_normalize_sense -EXPORT_SYMBOL vmlinux 0xc45cf210 key_type_keyring -EXPORT_SYMBOL vmlinux 0xc463d8ad mr_mfc_seq_next -EXPORT_SYMBOL vmlinux 0xc465c7af qdisc_warn_nonwc +EXPORT_SYMBOL vmlinux 0xc458b79e __i2c_transfer +EXPORT_SYMBOL vmlinux 0xc46d416b truncate_setsize EXPORT_SYMBOL vmlinux 0xc4708199 cpm_muram_addr +EXPORT_SYMBOL vmlinux 0xc470ef65 proc_mkdir +EXPORT_SYMBOL vmlinux 0xc4748031 kobject_del +EXPORT_SYMBOL vmlinux 0xc4776a1f inet_csk_complete_hashdance EXPORT_SYMBOL vmlinux 0xc4777aa9 __ctzsi2 -EXPORT_SYMBOL vmlinux 0xc47c1a85 pci_scan_root_bus_bridge -EXPORT_SYMBOL vmlinux 0xc47d94a7 scsi_device_resume -EXPORT_SYMBOL vmlinux 0xc4871015 netdev_txq_to_tc -EXPORT_SYMBOL vmlinux 0xc4899f46 generic_update_time -EXPORT_SYMBOL vmlinux 0xc48a905c __dev_direct_xmit -EXPORT_SYMBOL vmlinux 0xc48b642b processors +EXPORT_SYMBOL vmlinux 0xc47eb181 config_item_set_name +EXPORT_SYMBOL vmlinux 0xc4ad7249 iommu_dma_get_resv_regions EXPORT_SYMBOL vmlinux 0xc4b21d2f qman_get_affine_portal -EXPORT_SYMBOL vmlinux 0xc4cc17ea phy_read_paged -EXPORT_SYMBOL vmlinux 0xc4f9c09d clear_page_dirty_for_io -EXPORT_SYMBOL vmlinux 0xc50416e1 of_device_is_available -EXPORT_SYMBOL vmlinux 0xc506bc56 iov_iter_zero -EXPORT_SYMBOL vmlinux 0xc5126004 d_obtain_root -EXPORT_SYMBOL vmlinux 0xc51717a2 dma_free_attrs -EXPORT_SYMBOL vmlinux 0xc523bece security_inode_notifysecctx -EXPORT_SYMBOL vmlinux 0xc523c460 tegra_ivc_write_advance +EXPORT_SYMBOL vmlinux 0xc4df2749 freezing_slow_path +EXPORT_SYMBOL vmlinux 0xc4e6e713 netdev_alert +EXPORT_SYMBOL vmlinux 0xc50c425b pci_disable_link_state +EXPORT_SYMBOL vmlinux 0xc51a5a25 md_reload_sb EXPORT_SYMBOL vmlinux 0xc528a49a queued_write_lock_slowpath -EXPORT_SYMBOL vmlinux 0xc53dde97 nd_device_notify -EXPORT_SYMBOL vmlinux 0xc5530fea cpufreq_get_policy -EXPORT_SYMBOL vmlinux 0xc5590cdf of_find_node_by_name -EXPORT_SYMBOL vmlinux 0xc5612253 udp6_seq_ops +EXPORT_SYMBOL vmlinux 0xc52b2aa7 iov_iter_npages +EXPORT_SYMBOL vmlinux 0xc5338d1f path_get +EXPORT_SYMBOL vmlinux 0xc544be5f file_ns_capable +EXPORT_SYMBOL vmlinux 0xc565bf4b dev_pick_tx_cpu_id +EXPORT_SYMBOL vmlinux 0xc56a233a dquot_set_dqblk EXPORT_SYMBOL vmlinux 0xc56a41e6 vabits_actual -EXPORT_SYMBOL vmlinux 0xc577823a rproc_elf_get_boot_addr +EXPORT_SYMBOL vmlinux 0xc57220b5 tcp_req_err EXPORT_SYMBOL vmlinux 0xc57c48a3 idr_get_next EXPORT_SYMBOL vmlinux 0xc58d5a90 kstrtoll_from_user -EXPORT_SYMBOL vmlinux 0xc592aac7 pcie_capability_read_dword EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete -EXPORT_SYMBOL vmlinux 0xc59a0d73 netdev_alert +EXPORT_SYMBOL vmlinux 0xc5a1e522 dquot_initialize EXPORT_SYMBOL vmlinux 0xc5a3367a __tracepoint_dma_fence_emit -EXPORT_SYMBOL vmlinux 0xc5af5cf7 has_capability +EXPORT_SYMBOL vmlinux 0xc5b57b68 mmc_sw_reset EXPORT_SYMBOL vmlinux 0xc5b6f236 queue_work_on -EXPORT_SYMBOL vmlinux 0xc5daacde jbd2_fc_end_commit -EXPORT_SYMBOL vmlinux 0xc5e378da inet_sk_set_state +EXPORT_SYMBOL vmlinux 0xc5b7d764 dump_skip +EXPORT_SYMBOL vmlinux 0xc5bc6608 skb_copy_bits +EXPORT_SYMBOL vmlinux 0xc5bda81a netdev_lower_get_first_private_rcu EXPORT_SYMBOL vmlinux 0xc5e74216 release_resource +EXPORT_SYMBOL vmlinux 0xc5f41dc6 __zerocopy_sg_from_iter EXPORT_SYMBOL vmlinux 0xc5f7e801 sg_last EXPORT_SYMBOL vmlinux 0xc60d0620 __num_online_cpus -EXPORT_SYMBOL vmlinux 0xc60e6804 dev_change_proto_down_reason -EXPORT_SYMBOL vmlinux 0xc615a74d scsi_eh_finish_cmd -EXPORT_SYMBOL vmlinux 0xc620c75f follow_pfn +EXPORT_SYMBOL vmlinux 0xc60fd773 scsi_device_lookup EXPORT_SYMBOL vmlinux 0xc622556f prepare_to_wait_exclusive +EXPORT_SYMBOL vmlinux 0xc624e771 security_path_unlink EXPORT_SYMBOL vmlinux 0xc631580a console_unlock -EXPORT_SYMBOL vmlinux 0xc6328f01 __dynamic_netdev_dbg EXPORT_SYMBOL vmlinux 0xc633d82d phy_unregister_fixup -EXPORT_SYMBOL vmlinux 0xc643812a kernel_read -EXPORT_SYMBOL vmlinux 0xc64863ef of_match_node -EXPORT_SYMBOL vmlinux 0xc6516e06 pcie_port_service_register +EXPORT_SYMBOL vmlinux 0xc63b18a4 pci_bus_assign_resources EXPORT_SYMBOL vmlinux 0xc65e4e97 secure_dccp_sequence_number -EXPORT_SYMBOL vmlinux 0xc65f15a2 ip_options_compile +EXPORT_SYMBOL vmlinux 0xc660037d bio_kmalloc EXPORT_SYMBOL vmlinux 0xc666a132 crc_t10dif +EXPORT_SYMBOL vmlinux 0xc6670e0d tty_insert_flip_string_fixed_flag EXPORT_SYMBOL vmlinux 0xc66a8304 cpu_rmap_add -EXPORT_SYMBOL vmlinux 0xc6781156 ppp_unregister_compressor -EXPORT_SYMBOL vmlinux 0xc67e0453 jbd2_journal_inode_ranged_write -EXPORT_SYMBOL vmlinux 0xc686ae89 rtnl_configure_link -EXPORT_SYMBOL vmlinux 0xc68f4118 kernel_sendmsg_locked +EXPORT_SYMBOL vmlinux 0xc670b919 xfrm_if_register_cb +EXPORT_SYMBOL vmlinux 0xc6722710 ipv6_chk_prefix +EXPORT_SYMBOL vmlinux 0xc679c238 param_get_short +EXPORT_SYMBOL vmlinux 0xc695c4f9 dmaengine_get_unmap_data +EXPORT_SYMBOL vmlinux 0xc69aa270 alloc_buffer_head EXPORT_SYMBOL vmlinux 0xc69fce52 qcom_scm_qsmmu500_wait_safe_toggle -EXPORT_SYMBOL vmlinux 0xc6ad38c2 sk_stop_timer -EXPORT_SYMBOL vmlinux 0xc6b4b45d simple_empty -EXPORT_SYMBOL vmlinux 0xc6b5e2a3 ethtool_op_get_ts_info -EXPORT_SYMBOL vmlinux 0xc6c5b1d0 genphy_write_mmd_unsupported +EXPORT_SYMBOL vmlinux 0xc6a01876 bio_copy_data_iter EXPORT_SYMBOL vmlinux 0xc6cb465a __kfifo_max_r EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable EXPORT_SYMBOL vmlinux 0xc6d09aa9 release_firmware -EXPORT_SYMBOL vmlinux 0xc6d28b3c skb_prepare_seq_read -EXPORT_SYMBOL vmlinux 0xc6d83c00 dev_uc_flush +EXPORT_SYMBOL vmlinux 0xc6dfab3e inet6_register_protosw +EXPORT_SYMBOL vmlinux 0xc6e01ca4 inet_csk_reqsk_queue_drop +EXPORT_SYMBOL vmlinux 0xc6ec07fd tcp_v4_do_rcv +EXPORT_SYMBOL vmlinux 0xc6ece722 flow_rule_match_ct EXPORT_SYMBOL vmlinux 0xc6f3b3fc refcount_dec_if_one EXPORT_SYMBOL vmlinux 0xc6f46339 init_timer_key -EXPORT_SYMBOL vmlinux 0xc6fef250 iommu_get_msi_cookie EXPORT_SYMBOL vmlinux 0xc708f1fe ec_write +EXPORT_SYMBOL vmlinux 0xc71f458f __cgroup_bpf_run_filter_sock_ops EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port -EXPORT_SYMBOL vmlinux 0xc723bb58 trace_raw_output_prep -EXPORT_SYMBOL vmlinux 0xc72e5230 mark_page_accessed -EXPORT_SYMBOL vmlinux 0xc7523f5b inet_rtx_syn_ack -EXPORT_SYMBOL vmlinux 0xc76465b1 xfrm_input_unregister_afinfo -EXPORT_SYMBOL vmlinux 0xc77db831 xfrm_state_walk -EXPORT_SYMBOL vmlinux 0xc7816fac nvdimm_namespace_disk_name -EXPORT_SYMBOL vmlinux 0xc781b955 of_device_is_compatible +EXPORT_SYMBOL vmlinux 0xc729d46a __generic_file_write_iter +EXPORT_SYMBOL vmlinux 0xc7372467 ppp_unit_number +EXPORT_SYMBOL vmlinux 0xc7607746 __sk_mem_schedule +EXPORT_SYMBOL vmlinux 0xc76b9de6 acpi_match_device_ids +EXPORT_SYMBOL vmlinux 0xc77be0b0 blk_mq_complete_request +EXPORT_SYMBOL vmlinux 0xc7804e51 dev_mc_init EXPORT_SYMBOL vmlinux 0xc781bd9f rfkill_resume_polling -EXPORT_SYMBOL vmlinux 0xc782e470 rps_may_expire_flow EXPORT_SYMBOL vmlinux 0xc7856a3d inet6addr_notifier_call_chain -EXPORT_SYMBOL vmlinux 0xc78580b5 param_set_charp -EXPORT_SYMBOL vmlinux 0xc786a145 fd_install -EXPORT_SYMBOL vmlinux 0xc78eaa2c dst_destroy -EXPORT_SYMBOL vmlinux 0xc7a068c3 of_get_compatible_child +EXPORT_SYMBOL vmlinux 0xc789e74f scsi_vpd_lun_id +EXPORT_SYMBOL vmlinux 0xc7a4a11e iov_iter_alignment EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock -EXPORT_SYMBOL vmlinux 0xc7abf5b0 cros_ec_get_next_event -EXPORT_SYMBOL vmlinux 0xc7b6b41c km_state_expired EXPORT_SYMBOL vmlinux 0xc7c1107a LZ4_decompress_safe +EXPORT_SYMBOL vmlinux 0xc7ca788f keyring_alloc +EXPORT_SYMBOL vmlinux 0xc7cbb736 block_read_full_page +EXPORT_SYMBOL vmlinux 0xc7ccfc65 iommu_get_dma_cookie EXPORT_SYMBOL vmlinux 0xc7d094b5 dm_read_arg_group -EXPORT_SYMBOL vmlinux 0xc7eb4cb0 md_unregister_thread -EXPORT_SYMBOL vmlinux 0xc7ebe780 kthread_destroy_worker -EXPORT_SYMBOL vmlinux 0xc7ee9bb8 skb_try_coalesce -EXPORT_SYMBOL vmlinux 0xc7f6edec seq_release_private -EXPORT_SYMBOL vmlinux 0xc808addf devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0xc7f66a58 fqdir_init +EXPORT_SYMBOL vmlinux 0xc7f8ac87 prepare_to_swait_event +EXPORT_SYMBOL vmlinux 0xc802db81 __xfrm_decode_session EXPORT_SYMBOL vmlinux 0xc80ab559 swake_up_one -EXPORT_SYMBOL vmlinux 0xc80c2419 of_mdio_find_device -EXPORT_SYMBOL vmlinux 0xc820fae3 iw_handler_set_spy -EXPORT_SYMBOL vmlinux 0xc826d004 sk_net_capable +EXPORT_SYMBOL vmlinux 0xc81b3b91 ata_print_version +EXPORT_SYMBOL vmlinux 0xc822eefc rproc_detach +EXPORT_SYMBOL vmlinux 0xc82e496f pcie_get_mps +EXPORT_SYMBOL vmlinux 0xc8372433 starget_for_each_device EXPORT_SYMBOL vmlinux 0xc838c3f5 __ashrti3 -EXPORT_SYMBOL vmlinux 0xc841e2c0 scsicam_bios_param -EXPORT_SYMBOL vmlinux 0xc842c586 eth_type_trans EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu -EXPORT_SYMBOL vmlinux 0xc8505ff4 shrink_dcache_sb -EXPORT_SYMBOL vmlinux 0xc860a024 inet_proto_csum_replace4 -EXPORT_SYMBOL vmlinux 0xc86183e7 tcp_sock_set_syncnt -EXPORT_SYMBOL vmlinux 0xc867cbc7 inet_frag_destroy -EXPORT_SYMBOL vmlinux 0xc86d5672 device_match_acpi_dev +EXPORT_SYMBOL vmlinux 0xc85664b4 security_sb_remount +EXPORT_SYMBOL vmlinux 0xc85783fa mipi_dsi_compression_mode +EXPORT_SYMBOL vmlinux 0xc862c989 ip_check_defrag EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes -EXPORT_SYMBOL vmlinux 0xc878ef45 pcim_iomap_regions_request_all EXPORT_SYMBOL vmlinux 0xc8827b75 sysctl_vals -EXPORT_SYMBOL vmlinux 0xc8847eb4 blk_set_queue_depth -EXPORT_SYMBOL vmlinux 0xc88d3376 generic_file_fsync +EXPORT_SYMBOL vmlinux 0xc888f5e7 pm860x_page_bulk_read EXPORT_SYMBOL vmlinux 0xc890c008 zlib_deflateEnd EXPORT_SYMBOL vmlinux 0xc89846c4 xudma_tchanrt_read -EXPORT_SYMBOL vmlinux 0xc8a5562e sock_queue_err_skb EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread -EXPORT_SYMBOL vmlinux 0xc8ab9a65 of_cpu_node_to_id -EXPORT_SYMBOL vmlinux 0xc8b86d59 vme_irq_generate +EXPORT_SYMBOL vmlinux 0xc8b1c938 pci_find_next_bus +EXPORT_SYMBOL vmlinux 0xc8c7b4ba iter_file_splice_write +EXPORT_SYMBOL vmlinux 0xc8ca3761 __sk_mem_raise_allocated +EXPORT_SYMBOL vmlinux 0xc8ca96c2 pci_map_rom +EXPORT_SYMBOL vmlinux 0xc8cfa699 max8925_bulk_read EXPORT_SYMBOL vmlinux 0xc8dcc62a krealloc -EXPORT_SYMBOL vmlinux 0xc8ddb3db config_group_find_item -EXPORT_SYMBOL vmlinux 0xc901ec12 nvdimm_namespace_common_probe +EXPORT_SYMBOL vmlinux 0xc8de66b1 pci_pme_active +EXPORT_SYMBOL vmlinux 0xc8e30241 __wait_on_buffer +EXPORT_SYMBOL vmlinux 0xc8e4422a vlan_filter_drop_vids +EXPORT_SYMBOL vmlinux 0xc8ed7f76 pagecache_write_end +EXPORT_SYMBOL vmlinux 0xc8ef031c generic_pipe_buf_try_steal +EXPORT_SYMBOL vmlinux 0xc8fcdd71 from_kprojid +EXPORT_SYMBOL vmlinux 0xc8fee4c5 vfs_iocb_iter_read EXPORT_SYMBOL vmlinux 0xc916dd46 __SCK__tp_func_kmalloc -EXPORT_SYMBOL vmlinux 0xc93bcc03 tcp_sendmsg +EXPORT_SYMBOL vmlinux 0xc92ade81 security_lock_kernel_down +EXPORT_SYMBOL vmlinux 0xc9383888 blk_queue_flag_set EXPORT_SYMBOL vmlinux 0xc93e8461 acpi_get_event_resources -EXPORT_SYMBOL vmlinux 0xc94ff44d truncate_inode_pages_range EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters -EXPORT_SYMBOL vmlinux 0xc965e8fe add_watch_to_object -EXPORT_SYMBOL vmlinux 0xc97195b4 __blk_mq_end_request +EXPORT_SYMBOL vmlinux 0xc965e1b0 generic_read_dir EXPORT_SYMBOL vmlinux 0xc972449f mempool_alloc_slab -EXPORT_SYMBOL vmlinux 0xc973e346 follow_down_one +EXPORT_SYMBOL vmlinux 0xc9745990 __bread_gfp EXPORT_SYMBOL vmlinux 0xc9822234 clk_register_clkdev EXPORT_SYMBOL vmlinux 0xc9831ad7 flow_keys_dissector -EXPORT_SYMBOL vmlinux 0xc98937f2 wait_on_page_private_2 -EXPORT_SYMBOL vmlinux 0xc9970481 vme_bus_type EXPORT_SYMBOL vmlinux 0xc99e2a55 twl_rev +EXPORT_SYMBOL vmlinux 0xc9a1e537 icmp_ndo_send +EXPORT_SYMBOL vmlinux 0xc9b614ac dev_queue_xmit_accel +EXPORT_SYMBOL vmlinux 0xc9d75b48 devm_gen_pool_create +EXPORT_SYMBOL vmlinux 0xc9dcf22b __mmc_claim_host EXPORT_SYMBOL vmlinux 0xc9df055a xfrm_policy_walk_init -EXPORT_SYMBOL vmlinux 0xc9e3fbb4 jbd2_fc_get_buf EXPORT_SYMBOL vmlinux 0xc9ed0401 imx_sc_rm_is_resource_owned -EXPORT_SYMBOL vmlinux 0xc9f87ea5 xfrm_input_resume +EXPORT_SYMBOL vmlinux 0xc9ed4586 xfrm6_protocol_register +EXPORT_SYMBOL vmlinux 0xca05abc8 open_exec +EXPORT_SYMBOL vmlinux 0xca09cf14 __put_page EXPORT_SYMBOL vmlinux 0xca15413f ZSTD_resetDStream +EXPORT_SYMBOL vmlinux 0xca18ea17 unregister_netdevice_notifier_net +EXPORT_SYMBOL vmlinux 0xca19c32e PageMovable EXPORT_SYMBOL vmlinux 0xca21ebd3 bitmap_free +EXPORT_SYMBOL vmlinux 0xca30f8e7 xfrm_state_lookup_byaddr +EXPORT_SYMBOL vmlinux 0xca375794 eth_header_parse EXPORT_SYMBOL vmlinux 0xca431c05 wake_bit_function -EXPORT_SYMBOL vmlinux 0xca5d54cf skb_copy_datagram_iter +EXPORT_SYMBOL vmlinux 0xca55c179 trace_raw_output_prep EXPORT_SYMBOL vmlinux 0xca62afaf xudma_rflow_is_gp -EXPORT_SYMBOL vmlinux 0xca64ad2f dev_remove_offload -EXPORT_SYMBOL vmlinux 0xca84fb63 devfreq_add_device -EXPORT_SYMBOL vmlinux 0xca85bb03 vfs_link -EXPORT_SYMBOL vmlinux 0xca85f802 dm_kcopyd_zero -EXPORT_SYMBOL vmlinux 0xca8bde94 devm_iounmap +EXPORT_SYMBOL vmlinux 0xca76603c param_get_string +EXPORT_SYMBOL vmlinux 0xca86d881 sock_no_accept EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next +EXPORT_SYMBOL vmlinux 0xca9500d3 xfrm_lookup EXPORT_SYMBOL vmlinux 0xca9beaa4 __xa_store -EXPORT_SYMBOL vmlinux 0xca9e33db blkdev_compat_ptr_ioctl -EXPORT_SYMBOL vmlinux 0xcaa405aa __starget_for_each_device -EXPORT_SYMBOL vmlinux 0xcaa9d960 netdev_set_num_tc -EXPORT_SYMBOL vmlinux 0xcab90f60 xp_alloc -EXPORT_SYMBOL vmlinux 0xcacf4261 uart_unregister_driver +EXPORT_SYMBOL vmlinux 0xcaaffc77 pid_task +EXPORT_SYMBOL vmlinux 0xcaba6c55 i2c_smbus_read_block_data EXPORT_SYMBOL vmlinux 0xcad1aca8 acpi_exception -EXPORT_SYMBOL vmlinux 0xcaeb02f1 of_get_parent +EXPORT_SYMBOL vmlinux 0xcaed9c09 fman_get_bmi_max_fifo_size +EXPORT_SYMBOL vmlinux 0xcaf1d3de skb_set_owner_w EXPORT_SYMBOL vmlinux 0xcaf2c603 scsi_sd_pm_domain +EXPORT_SYMBOL vmlinux 0xcaf4540d generic_update_time +EXPORT_SYMBOL vmlinux 0xcb00ecf6 sock_diag_put_filterinfo EXPORT_SYMBOL vmlinux 0xcb0288ea ledtrig_cpu -EXPORT_SYMBOL vmlinux 0xcb0e5b98 tcp_md5_hash_key -EXPORT_SYMBOL vmlinux 0xcb1aedf9 inet_accept -EXPORT_SYMBOL vmlinux 0xcb1c9bf0 ps2_drain -EXPORT_SYMBOL vmlinux 0xcb30ee32 pm860x_reg_read -EXPORT_SYMBOL vmlinux 0xcb385fb0 lookup_one_len_unlocked +EXPORT_SYMBOL vmlinux 0xcb0d189a ipv6_sock_mc_drop +EXPORT_SYMBOL vmlinux 0xcb228de4 ndo_dflt_fdb_dump +EXPORT_SYMBOL vmlinux 0xcb35fbaa msm_pinctrl_probe EXPORT_SYMBOL vmlinux 0xcb3ae215 call_blocking_lsm_notifier -EXPORT_SYMBOL vmlinux 0xcb495dc8 cfb_fillrect -EXPORT_SYMBOL vmlinux 0xcb67266f input_allocate_device +EXPORT_SYMBOL vmlinux 0xcb41c391 scsi_print_sense_hdr +EXPORT_SYMBOL vmlinux 0xcb61ecc8 kmem_cache_size +EXPORT_SYMBOL vmlinux 0xcb632d7b vm_map_pages_zero EXPORT_SYMBOL vmlinux 0xcb733bf2 acpi_bus_set_power -EXPORT_SYMBOL vmlinux 0xcb7f200c __wait_on_buffer -EXPORT_SYMBOL vmlinux 0xcb8fc69f jbd2__journal_restart -EXPORT_SYMBOL vmlinux 0xcb91b974 can_nice -EXPORT_SYMBOL vmlinux 0xcba07b41 netdev_has_any_upper_dev -EXPORT_SYMBOL vmlinux 0xcba48bc0 km_policy_expired +EXPORT_SYMBOL vmlinux 0xcb7e134e __do_once_done +EXPORT_SYMBOL vmlinux 0xcb88a53d netif_rx +EXPORT_SYMBOL vmlinux 0xcb9ef13d param_set_invbool +EXPORT_SYMBOL vmlinux 0xcbb5708d __sk_backlog_rcv +EXPORT_SYMBOL vmlinux 0xcbbdecb4 md_write_start EXPORT_SYMBOL vmlinux 0xcbc88a23 ZSTD_isFrame +EXPORT_SYMBOL vmlinux 0xcbca83b9 fscrypt_has_permitted_context +EXPORT_SYMBOL vmlinux 0xcbcffcec dev_get_phys_port_id +EXPORT_SYMBOL vmlinux 0xcbd1ef7a fbcon_update_vcs EXPORT_SYMBOL vmlinux 0xcbd4898c fortify_panic -EXPORT_SYMBOL vmlinux 0xcbd8f2cf qdisc_watchdog_schedule_range_ns +EXPORT_SYMBOL vmlinux 0xcbdc85e4 delete_from_page_cache +EXPORT_SYMBOL vmlinux 0xcbe82706 mii_check_media +EXPORT_SYMBOL vmlinux 0xcbef18df param_set_charp EXPORT_SYMBOL vmlinux 0xcbfb33e4 init_opal_dev -EXPORT_SYMBOL vmlinux 0xcc001e26 __traceiter_mmap_lock_released -EXPORT_SYMBOL vmlinux 0xcc0b6cc7 __hw_addr_sync_dev +EXPORT_SYMBOL vmlinux 0xcbfbf70d mdiobus_write_nested +EXPORT_SYMBOL vmlinux 0xcc10e152 __page_cache_alloc 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 0xcc311cc3 may_setattr +EXPORT_SYMBOL vmlinux 0xcc31ba01 register_nexthop_notifier EXPORT_SYMBOL vmlinux 0xcc328a5c reservation_ww_class EXPORT_SYMBOL vmlinux 0xcc445ceb __sg_page_iter_dma_next EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible -EXPORT_SYMBOL vmlinux 0xcc563f6a inet6_offloads EXPORT_SYMBOL vmlinux 0xcc5c2df4 trace_print_symbols_seq EXPORT_SYMBOL vmlinux 0xcc5d22d9 can_do_mlock -EXPORT_SYMBOL vmlinux 0xcc5d5fb3 of_find_net_device_by_node -EXPORT_SYMBOL vmlinux 0xcc6b60c7 unregister_md_personality -EXPORT_SYMBOL vmlinux 0xcc8cf31a set_cached_acl -EXPORT_SYMBOL vmlinux 0xcc9926e5 rproc_report_crash +EXPORT_SYMBOL vmlinux 0xcc65127c con_is_bound +EXPORT_SYMBOL vmlinux 0xcc963ca8 elevator_alloc EXPORT_SYMBOL vmlinux 0xcca5839d xen_vcpu_id -EXPORT_SYMBOL vmlinux 0xcca7ac64 cros_ec_query_all -EXPORT_SYMBOL vmlinux 0xccbbd7e7 cdrom_ioctl -EXPORT_SYMBOL vmlinux 0xcccfe105 request_key_with_auxdata -EXPORT_SYMBOL vmlinux 0xccd3ee3c vfs_dup_fs_context +EXPORT_SYMBOL vmlinux 0xccad2a02 of_get_child_by_name +EXPORT_SYMBOL vmlinux 0xccbceec6 phy_get_c45_ids +EXPORT_SYMBOL vmlinux 0xccd31554 of_clk_get_by_name EXPORT_SYMBOL vmlinux 0xccd4c999 __sg_page_iter_start -EXPORT_SYMBOL vmlinux 0xccd9a2bb twl6040_clear_bits -EXPORT_SYMBOL vmlinux 0xcce054c7 get_user_pages_locked +EXPORT_SYMBOL vmlinux 0xccdcbb56 setattr_copy EXPORT_SYMBOL vmlinux 0xccef37e4 ZSTD_DStreamOutSize +EXPORT_SYMBOL vmlinux 0xccf1c7cf devm_of_find_backlight EXPORT_SYMBOL vmlinux 0xccfb9e07 dst_default_metrics +EXPORT_SYMBOL vmlinux 0xccfbffec tcp_filter EXPORT_SYMBOL vmlinux 0xccfd2ebc scsi_dev_info_list_del_keyed EXPORT_SYMBOL vmlinux 0xcd01b8e6 acpi_attach_data -EXPORT_SYMBOL vmlinux 0xcd07ddc7 security_sb_set_mnt_opts +EXPORT_SYMBOL vmlinux 0xcd0d675c migrate_page_move_mapping EXPORT_SYMBOL vmlinux 0xcd256667 tcp_md5_needed EXPORT_SYMBOL vmlinux 0xcd279169 nla_find -EXPORT_SYMBOL vmlinux 0xcd2e1165 pci_read_config_byte -EXPORT_SYMBOL vmlinux 0xcd31c707 pci_release_regions -EXPORT_SYMBOL vmlinux 0xcd362e6f ata_std_end_eh -EXPORT_SYMBOL vmlinux 0xcd380ee6 mipi_dsi_dcs_get_display_brightness -EXPORT_SYMBOL vmlinux 0xcd47c64b scsi_set_medium_removal -EXPORT_SYMBOL vmlinux 0xcd5d1e11 __cgroup_bpf_run_filter_sock_addr -EXPORT_SYMBOL vmlinux 0xcd610126 jbd2_journal_set_features -EXPORT_SYMBOL vmlinux 0xcd68ce09 kmem_cache_free +EXPORT_SYMBOL vmlinux 0xcd2d8b89 tty_unthrottle +EXPORT_SYMBOL vmlinux 0xcd36ec0b dev_mc_unsync +EXPORT_SYMBOL vmlinux 0xcd47fa70 pci_bus_type +EXPORT_SYMBOL vmlinux 0xcd494d3c nvdimm_namespace_disk_name +EXPORT_SYMBOL vmlinux 0xcd5550ec genphy_restart_aneg +EXPORT_SYMBOL vmlinux 0xcd5abb2c __cleancache_get_page +EXPORT_SYMBOL vmlinux 0xcd5ea254 tcp_create_openreq_child +EXPORT_SYMBOL vmlinux 0xcd5eae10 mipi_dsi_dcs_set_display_on +EXPORT_SYMBOL vmlinux 0xcd60aef4 __vfs_getxattr +EXPORT_SYMBOL vmlinux 0xcd67fa5c dm_io +EXPORT_SYMBOL vmlinux 0xcd78423e get_user_pages_remote EXPORT_SYMBOL vmlinux 0xcd8ce890 acpi_format_exception -EXPORT_SYMBOL vmlinux 0xcd9a85e5 nf_log_unregister -EXPORT_SYMBOL vmlinux 0xcda0b02b open_exec -EXPORT_SYMBOL vmlinux 0xcdaaf041 linkwatch_fire_event -EXPORT_SYMBOL vmlinux 0xcdb1d7f0 dma_sync_sg_for_device -EXPORT_SYMBOL vmlinux 0xcdb9edbe t10_pi_type3_ip -EXPORT_SYMBOL vmlinux 0xcdbacbca simple_statfs +EXPORT_SYMBOL vmlinux 0xcd9abf5f noop_llseek +EXPORT_SYMBOL vmlinux 0xcda1e900 add_random_ready_callback +EXPORT_SYMBOL vmlinux 0xcdbb72db max8998_bulk_write EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel -EXPORT_SYMBOL vmlinux 0xcdc7ba4c config_item_get EXPORT_SYMBOL vmlinux 0xcde77bcc free_opal_dev -EXPORT_SYMBOL vmlinux 0xcde8fb6a kernel_accept -EXPORT_SYMBOL vmlinux 0xcdf2e802 devm_of_iomap -EXPORT_SYMBOL vmlinux 0xcdfc0fa6 notify_change +EXPORT_SYMBOL vmlinux 0xcdf58403 netdev_lower_get_next_private +EXPORT_SYMBOL vmlinux 0xcdfc0797 pcie_port_service_register +EXPORT_SYMBOL vmlinux 0xcdfdf00e blk_rq_map_integrity_sg EXPORT_SYMBOL vmlinux 0xce036f24 sg_split -EXPORT_SYMBOL vmlinux 0xce0718a6 i2c_smbus_xfer -EXPORT_SYMBOL vmlinux 0xce1b6ada blk_mq_tagset_wait_completed_request +EXPORT_SYMBOL vmlinux 0xce0ada29 netdev_has_upper_dev_all_rcu +EXPORT_SYMBOL vmlinux 0xce0f8ac7 reuseport_detach_prog +EXPORT_SYMBOL vmlinux 0xce182230 alloc_fcdev EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake -EXPORT_SYMBOL vmlinux 0xce28a4c7 param_ops_bint -EXPORT_SYMBOL vmlinux 0xce466808 iov_iter_discard -EXPORT_SYMBOL vmlinux 0xce4a1ca3 to_nd_dax -EXPORT_SYMBOL vmlinux 0xce4b4858 unregister_framebuffer +EXPORT_SYMBOL vmlinux 0xce2f3e6c skb_copy_expand +EXPORT_SYMBOL vmlinux 0xce32691f sync_dirty_buffer EXPORT_SYMBOL vmlinux 0xce4cdb8e fb_find_best_mode EXPORT_SYMBOL vmlinux 0xce4e47b6 __kfifo_skip_r +EXPORT_SYMBOL vmlinux 0xce56e227 dev_get_by_name_rcu EXPORT_SYMBOL vmlinux 0xce5ac24f zlib_inflate_workspacesize +EXPORT_SYMBOL vmlinux 0xce62bf80 pci_dev_driver EXPORT_SYMBOL vmlinux 0xce731b34 ucc_slow_get_qe_cr_subblock +EXPORT_SYMBOL vmlinux 0xce73297d mmc_request_done EXPORT_SYMBOL vmlinux 0xce76c257 acpi_get_irq_routing_table -EXPORT_SYMBOL vmlinux 0xce7c69f7 dev_mc_unsync EXPORT_SYMBOL vmlinux 0xce807a25 up_write -EXPORT_SYMBOL vmlinux 0xce8c563e tty_port_tty_get -EXPORT_SYMBOL vmlinux 0xce9bbcd4 generic_fillattr +EXPORT_SYMBOL vmlinux 0xce990424 qdisc_warn_nonwc +EXPORT_SYMBOL vmlinux 0xcea64d18 jbd2_journal_finish_inode_data_buffers EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul EXPORT_SYMBOL vmlinux 0xced0f4d4 gen_pool_create -EXPORT_SYMBOL vmlinux 0xcedbbe19 bioset_init_from_src +EXPORT_SYMBOL vmlinux 0xcee59aab d_rehash EXPORT_SYMBOL vmlinux 0xceec8abd __mb_cache_entry_free EXPORT_SYMBOL vmlinux 0xcefb0c9f __mutex_init EXPORT_SYMBOL vmlinux 0xcefcd99a serial8250_unregister_port -EXPORT_SYMBOL vmlinux 0xceff6de2 pci_bus_add_devices -EXPORT_SYMBOL vmlinux 0xceffff4a jbd2_journal_init_jbd_inode -EXPORT_SYMBOL vmlinux 0xcf21e4fb inet6_register_protosw +EXPORT_SYMBOL vmlinux 0xcf036677 request_partial_firmware_into_buf +EXPORT_SYMBOL vmlinux 0xcf09cbbf inet6_del_offload +EXPORT_SYMBOL vmlinux 0xcf11260b of_get_next_parent EXPORT_SYMBOL vmlinux 0xcf2a6966 up -EXPORT_SYMBOL vmlinux 0xcf41c8ce netif_skb_features -EXPORT_SYMBOL vmlinux 0xcf458623 mdiobus_alloc_size -EXPORT_SYMBOL vmlinux 0xcf48adeb i2c_smbus_read_i2c_block_data -EXPORT_SYMBOL vmlinux 0xcf492de5 inet_unregister_protosw EXPORT_SYMBOL vmlinux 0xcf4fdd4d _atomic_dec_and_lock -EXPORT_SYMBOL vmlinux 0xcf620834 fget -EXPORT_SYMBOL vmlinux 0xcf658431 logfc -EXPORT_SYMBOL vmlinux 0xcf6a7ee3 xsk_uses_need_wakeup -EXPORT_SYMBOL vmlinux 0xcf82e8f0 mntput -EXPORT_SYMBOL vmlinux 0xcf860757 configfs_depend_item_unlocked +EXPORT_SYMBOL vmlinux 0xcf596d42 free_cgroup_ns +EXPORT_SYMBOL vmlinux 0xcf5d2c00 end_page_writeback +EXPORT_SYMBOL vmlinux 0xcf70338b udp_seq_start EXPORT_SYMBOL vmlinux 0xcf9b558d touchscreen_set_mt_pos EXPORT_SYMBOL vmlinux 0xcfa7e913 posix_acl_valid -EXPORT_SYMBOL vmlinux 0xcfac4e96 alloc_skb_with_frags -EXPORT_SYMBOL vmlinux 0xcfbdc24d tcf_exts_dump_stats +EXPORT_SYMBOL vmlinux 0xcfaa2910 sk_send_sigurg +EXPORT_SYMBOL vmlinux 0xcfbc2141 neigh_xmit +EXPORT_SYMBOL vmlinux 0xcfbf49db __dynamic_dev_dbg EXPORT_SYMBOL vmlinux 0xcfc9deaf atomic_dec_and_mutex_lock -EXPORT_SYMBOL vmlinux 0xcfcc62b6 skb_headers_offset_update -EXPORT_SYMBOL vmlinux 0xcfcecf43 of_find_i2c_device_by_node -EXPORT_SYMBOL vmlinux 0xcfd40efc dev_disable_lro EXPORT_SYMBOL vmlinux 0xcfd884a8 __hsiphash_unaligned +EXPORT_SYMBOL vmlinux 0xcfdb53a7 rproc_elf_sanity_check +EXPORT_SYMBOL vmlinux 0xcfe79657 dev_pick_tx_zero EXPORT_SYMBOL vmlinux 0xcfeb98a8 acpi_processor_register_performance -EXPORT_SYMBOL vmlinux 0xcfef248b xfrm_state_register_afinfo -EXPORT_SYMBOL vmlinux 0xcff3f5c8 eth_validate_addr -EXPORT_SYMBOL vmlinux 0xcff93515 touch_buffer -EXPORT_SYMBOL vmlinux 0xcffb07ee dquot_get_dqblk -EXPORT_SYMBOL vmlinux 0xd0019680 dma_find_channel -EXPORT_SYMBOL vmlinux 0xd01a3ade fman_port_get_device -EXPORT_SYMBOL vmlinux 0xd02eb462 ethtool_virtdev_set_link_ksettings -EXPORT_SYMBOL vmlinux 0xd037e9c6 find_inode_nowait -EXPORT_SYMBOL vmlinux 0xd0475181 inet_frags_init +EXPORT_SYMBOL vmlinux 0xcfed1c69 jbd2_journal_get_undo_access +EXPORT_SYMBOL vmlinux 0xcff13c39 ptp_schedule_worker +EXPORT_SYMBOL vmlinux 0xcff16c19 padata_alloc_shell +EXPORT_SYMBOL vmlinux 0xcff38244 request_key_with_auxdata +EXPORT_SYMBOL vmlinux 0xd00b6e19 flush_dcache_page +EXPORT_SYMBOL vmlinux 0xd011d9a6 dev_mc_add_global +EXPORT_SYMBOL vmlinux 0xd042e59e logfc +EXPORT_SYMBOL vmlinux 0xd047ecb3 tcp_ioctl EXPORT_SYMBOL vmlinux 0xd04c1a64 sysctl_devconf_inherit_init_net +EXPORT_SYMBOL vmlinux 0xd051cd82 blkdev_get_by_dev +EXPORT_SYMBOL vmlinux 0xd05ca401 vc_cons EXPORT_SYMBOL vmlinux 0xd0654aba woken_wake_function +EXPORT_SYMBOL vmlinux 0xd070cb65 inode_nohighmem EXPORT_SYMBOL vmlinux 0xd0760fc0 kfree_sensitive -EXPORT_SYMBOL vmlinux 0xd0850e54 bprm_change_interp +EXPORT_SYMBOL vmlinux 0xd07caf00 key_revoke EXPORT_SYMBOL vmlinux 0xd08adb2b trace_seq_hex_dump +EXPORT_SYMBOL vmlinux 0xd0930bd4 put_cmsg_scm_timestamping +EXPORT_SYMBOL vmlinux 0xd0a4e465 devm_kvasprintf +EXPORT_SYMBOL vmlinux 0xd0a603e2 user_path_create EXPORT_SYMBOL vmlinux 0xd0ae5f55 __printk_cpu_trylock -EXPORT_SYMBOL vmlinux 0xd0b0d98d dev_set_group EXPORT_SYMBOL vmlinux 0xd0b74705 acpi_install_interface -EXPORT_SYMBOL vmlinux 0xd0b8a089 inc_nlink -EXPORT_SYMBOL vmlinux 0xd0d34f16 copy_string_kernel -EXPORT_SYMBOL vmlinux 0xd0e10879 try_lookup_one_len +EXPORT_SYMBOL vmlinux 0xd0c6e270 vfs_parse_fs_string +EXPORT_SYMBOL vmlinux 0xd0c9ded6 proto_register +EXPORT_SYMBOL vmlinux 0xd0dfb0dd vmf_insert_mixed +EXPORT_SYMBOL vmlinux 0xd0e3ea9c prepare_kernel_cred +EXPORT_SYMBOL vmlinux 0xd0f76cb4 unregister_md_personality EXPORT_SYMBOL vmlinux 0xd0fe8d51 sg_pcopy_from_buffer -EXPORT_SYMBOL vmlinux 0xd10bb804 inet6_del_protocol -EXPORT_SYMBOL vmlinux 0xd11687c8 jbd2_journal_revoke -EXPORT_SYMBOL vmlinux 0xd11d2c1c udp6_csum_init -EXPORT_SYMBOL vmlinux 0xd122a418 ip6mr_rule_default +EXPORT_SYMBOL vmlinux 0xd1010050 pm8606_osc_disable +EXPORT_SYMBOL vmlinux 0xd103f248 fiemap_prep +EXPORT_SYMBOL vmlinux 0xd119a71f vmalloc_to_page +EXPORT_SYMBOL vmlinux 0xd1218568 pci_save_state +EXPORT_SYMBOL vmlinux 0xd1230c4c sock_wmalloc EXPORT_SYMBOL vmlinux 0xd1363cc1 ucs2_strsize -EXPORT_SYMBOL vmlinux 0xd1396bc9 __kfree_skb -EXPORT_SYMBOL vmlinux 0xd1417275 sock_no_sendpage +EXPORT_SYMBOL vmlinux 0xd1420fc8 init_pseudo +EXPORT_SYMBOL vmlinux 0xd155f2c7 wireless_spy_update EXPORT_SYMBOL vmlinux 0xd15eada0 nla_reserve +EXPORT_SYMBOL vmlinux 0xd17196b7 dcache_dir_open +EXPORT_SYMBOL vmlinux 0xd17b3658 mark_info_dirty EXPORT_SYMBOL vmlinux 0xd1816f32 frontswap_writethrough -EXPORT_SYMBOL vmlinux 0xd184e9ec thaw_bdev +EXPORT_SYMBOL vmlinux 0xd184605f page_zero_new_buffers +EXPORT_SYMBOL vmlinux 0xd1882d25 blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0xd19181eb netdev_state_change EXPORT_SYMBOL vmlinux 0xd194ddf9 acpi_gpe_count -EXPORT_SYMBOL vmlinux 0xd1a726e5 genl_notify -EXPORT_SYMBOL vmlinux 0xd1ab920a sock_alloc_file -EXPORT_SYMBOL vmlinux 0xd1b6392f vm_map_ram -EXPORT_SYMBOL vmlinux 0xd1bbd82f pm8606_osc_disable -EXPORT_SYMBOL vmlinux 0xd1cbe4c8 neigh_update -EXPORT_SYMBOL vmlinux 0xd1d50d52 ethtool_rx_flow_rule_destroy +EXPORT_SYMBOL vmlinux 0xd19e0c96 sock_no_shutdown +EXPORT_SYMBOL vmlinux 0xd19eb53b pipe_unlock +EXPORT_SYMBOL vmlinux 0xd1bbbd53 pnpacpi_protocol +EXPORT_SYMBOL vmlinux 0xd1cf7832 simple_link +EXPORT_SYMBOL vmlinux 0xd1d25374 configfs_register_default_group +EXPORT_SYMBOL vmlinux 0xd1d64589 reuseport_migrate_sock EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string -EXPORT_SYMBOL vmlinux 0xd1f8792a inode_needs_sync -EXPORT_SYMBOL vmlinux 0xd2000ba5 phy_do_ioctl_running -EXPORT_SYMBOL vmlinux 0xd2026cd8 ip_sock_set_pktinfo +EXPORT_SYMBOL vmlinux 0xd1e8e669 is_nd_btt +EXPORT_SYMBOL vmlinux 0xd1f881b5 vga_remove_vgacon EXPORT_SYMBOL vmlinux 0xd2051916 qcom_scm_cpu_power_down -EXPORT_SYMBOL vmlinux 0xd20d473d remove_watch_from_object +EXPORT_SYMBOL vmlinux 0xd2183819 __frontswap_store +EXPORT_SYMBOL vmlinux 0xd218f573 key_payload_reserve EXPORT_SYMBOL vmlinux 0xd2237016 radix_tree_delete_item -EXPORT_SYMBOL vmlinux 0xd22d27ee blackhole_netdev +EXPORT_SYMBOL vmlinux 0xd2438858 rtnl_kfree_skbs 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 0xd26acdf6 dquot_mark_dquot_dirty +EXPORT_SYMBOL vmlinux 0xd273b44d sb_min_blocksize EXPORT_SYMBOL vmlinux 0xd2779731 blk_limits_io_min EXPORT_SYMBOL vmlinux 0xd27b25dd blk_check_plugged -EXPORT_SYMBOL vmlinux 0xd27bfb84 fman_bind -EXPORT_SYMBOL vmlinux 0xd28e4271 __task_pid_nr_ns -EXPORT_SYMBOL vmlinux 0xd28f8842 pnp_unregister_driver -EXPORT_SYMBOL vmlinux 0xd2961703 phy_modify_paged -EXPORT_SYMBOL vmlinux 0xd2965f5c ppp_unit_number -EXPORT_SYMBOL vmlinux 0xd298b1e9 tcp_get_md5sig_pool -EXPORT_SYMBOL vmlinux 0xd299b29e posix_test_lock -EXPORT_SYMBOL vmlinux 0xd2a23521 put_cmsg_scm_timestamping -EXPORT_SYMBOL vmlinux 0xd2aad874 pci_wake_from_d3 +EXPORT_SYMBOL vmlinux 0xd27b67bf xfrm_register_type +EXPORT_SYMBOL vmlinux 0xd27c522a netdev_has_upper_dev +EXPORT_SYMBOL vmlinux 0xd2800691 nf_conntrack_destroy +EXPORT_SYMBOL vmlinux 0xd297f71c generic_parse_monolithic +EXPORT_SYMBOL vmlinux 0xd2bc2857 dm_register_target +EXPORT_SYMBOL vmlinux 0xd2bc9aca pci_bus_size_bridges +EXPORT_SYMBOL vmlinux 0xd2c7feab unix_destruct_scm EXPORT_SYMBOL vmlinux 0xd2c99738 __kmalloc_track_caller -EXPORT_SYMBOL vmlinux 0xd2cf7875 page_mapped +EXPORT_SYMBOL vmlinux 0xd2d060bb pci_release_region EXPORT_SYMBOL vmlinux 0xd2da1048 register_netdevice_notifier -EXPORT_SYMBOL vmlinux 0xd2dad9ec scsi_free_host_dev EXPORT_SYMBOL vmlinux 0xd2e2a9d0 hdmi_spd_infoframe_pack_only EXPORT_SYMBOL vmlinux 0xd2ea49b8 acpi_leave_sleep_state_prep -EXPORT_SYMBOL vmlinux 0xd306286b put_cmsg_scm_timestamping64 -EXPORT_SYMBOL vmlinux 0xd30a9233 ipv6_sock_mc_join -EXPORT_SYMBOL vmlinux 0xd30bfe19 security_path_unlink -EXPORT_SYMBOL vmlinux 0xd30c12a0 md_update_sb -EXPORT_SYMBOL vmlinux 0xd30e3ed6 blk_queue_chunk_sectors +EXPORT_SYMBOL vmlinux 0xd2fad555 xfrm_policy_register_afinfo +EXPORT_SYMBOL vmlinux 0xd302951f tcf_em_unregister +EXPORT_SYMBOL vmlinux 0xd30e1fe0 d_instantiate +EXPORT_SYMBOL vmlinux 0xd311a0d5 udp_lib_getsockopt EXPORT_SYMBOL vmlinux 0xd31ccb06 of_machine_is_compatible -EXPORT_SYMBOL vmlinux 0xd321d887 mmc_card_alternative_gpt_sector -EXPORT_SYMBOL vmlinux 0xd32fbf02 jbd2_trans_will_send_data_barrier +EXPORT_SYMBOL vmlinux 0xd3216ff6 kernel_sock_ip_overhead +EXPORT_SYMBOL vmlinux 0xd3229745 mod_node_page_state +EXPORT_SYMBOL vmlinux 0xd325281d mmc_retune_unpause +EXPORT_SYMBOL vmlinux 0xd338e8a3 discard_new_inode EXPORT_SYMBOL vmlinux 0xd3543063 memcg_kmem_enabled_key EXPORT_SYMBOL vmlinux 0xd3559ef4 __memset EXPORT_SYMBOL vmlinux 0xd35a6d31 mempool_kmalloc -EXPORT_SYMBOL vmlinux 0xd36a6ddf flow_block_cb_alloc +EXPORT_SYMBOL vmlinux 0xd35f8d88 dev_pm_opp_register_notifier EXPORT_SYMBOL vmlinux 0xd36dc10c get_random_u32 EXPORT_SYMBOL vmlinux 0xd36e3d59 prandom_bytes_state -EXPORT_SYMBOL vmlinux 0xd377ecc3 of_get_next_available_child -EXPORT_SYMBOL vmlinux 0xd37ee130 xfrm_state_walk_done -EXPORT_SYMBOL vmlinux 0xd39d8dd9 truncate_inode_pages_final -EXPORT_SYMBOL vmlinux 0xd3af34fe jbd2_journal_load -EXPORT_SYMBOL vmlinux 0xd3d0f97b cpufreq_generic_suspend -EXPORT_SYMBOL vmlinux 0xd3d4c197 vme_lm_request -EXPORT_SYMBOL vmlinux 0xd3e2352c forget_all_cached_acls +EXPORT_SYMBOL vmlinux 0xd37a9831 no_seek_end_llseek +EXPORT_SYMBOL vmlinux 0xd38bb389 watchdog_unregister_governor +EXPORT_SYMBOL vmlinux 0xd39ba80b scsi_add_host_with_dma +EXPORT_SYMBOL vmlinux 0xd3a1527b write_inode_now +EXPORT_SYMBOL vmlinux 0xd3ad4db9 give_up_console +EXPORT_SYMBOL vmlinux 0xd3bf5aca tty_chars_in_buffer +EXPORT_SYMBOL vmlinux 0xd3ca4177 fddi_type_trans +EXPORT_SYMBOL vmlinux 0xd3d1d3f6 ptp_clock_index +EXPORT_SYMBOL vmlinux 0xd3e3f29c configfs_unregister_subsystem +EXPORT_SYMBOL vmlinux 0xd3e58621 dma_resv_add_excl_fence EXPORT_SYMBOL vmlinux 0xd3eaf1ed devlink_dpipe_entry_clear +EXPORT_SYMBOL vmlinux 0xd3ee2cac __netif_napi_del +EXPORT_SYMBOL vmlinux 0xd3f3016f pci_claim_resource EXPORT_SYMBOL vmlinux 0xd3fba534 qcom_scm_set_cold_boot_addr EXPORT_SYMBOL vmlinux 0xd406d266 fb_mode_is_equal -EXPORT_SYMBOL vmlinux 0xd4161d17 bfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0xd418cf19 pnp_request_card_device +EXPORT_SYMBOL vmlinux 0xd42d20a9 filemap_fault +EXPORT_SYMBOL vmlinux 0xd430bef3 sdev_enable_disk_events +EXPORT_SYMBOL vmlinux 0xd4314a32 loop_register_transfer +EXPORT_SYMBOL vmlinux 0xd432fe3a ptp_find_pin_unlocked EXPORT_SYMBOL vmlinux 0xd4339de8 qcom_scm_pas_init_image -EXPORT_SYMBOL vmlinux 0xd43968dc qdisc_offload_dump_helper -EXPORT_SYMBOL vmlinux 0xd43c6f0d ps2_command -EXPORT_SYMBOL vmlinux 0xd440c36d tcp_rcv_established -EXPORT_SYMBOL vmlinux 0xd443a4a4 blk_queue_io_min -EXPORT_SYMBOL vmlinux 0xd44afd1e pps_register_source +EXPORT_SYMBOL vmlinux 0xd43a8b58 __dev_remove_pack EXPORT_SYMBOL vmlinux 0xd45cc6ca bin2hex -EXPORT_SYMBOL vmlinux 0xd462bf53 xfrm6_rcv_encap -EXPORT_SYMBOL vmlinux 0xd46d17d6 __seq_open_private -EXPORT_SYMBOL vmlinux 0xd46e9e5d vme_bus_error_handler -EXPORT_SYMBOL vmlinux 0xd47ef622 ip_tunnel_parse_protocol +EXPORT_SYMBOL vmlinux 0xd465878d kfree_skb_partial +EXPORT_SYMBOL vmlinux 0xd46cd7c7 lock_sock_nested +EXPORT_SYMBOL vmlinux 0xd473b8bf kmem_cache_alloc_bulk EXPORT_SYMBOL vmlinux 0xd4835ef8 dmi_check_system -EXPORT_SYMBOL vmlinux 0xd487997e netif_napi_add -EXPORT_SYMBOL vmlinux 0xd496e30c phy_resume -EXPORT_SYMBOL vmlinux 0xd49fabe0 xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0xd49054dd pneigh_lookup EXPORT_SYMBOL vmlinux 0xd4a69d20 qm_channel_caam -EXPORT_SYMBOL vmlinux 0xd4b95b8f jbd2_complete_transaction EXPORT_SYMBOL vmlinux 0xd4bb4a82 inet6addr_validator_notifier_call_chain -EXPORT_SYMBOL vmlinux 0xd4c75669 tcf_chain_get_by_act -EXPORT_SYMBOL vmlinux 0xd4c86702 jbd2_journal_clear_features +EXPORT_SYMBOL vmlinux 0xd4c97e8b phy_modify_paged_changed EXPORT_SYMBOL vmlinux 0xd4d1983c udplite_table -EXPORT_SYMBOL vmlinux 0xd4e630b2 remove_proc_subtree +EXPORT_SYMBOL vmlinux 0xd4db645e vme_dma_list_exec +EXPORT_SYMBOL vmlinux 0xd4f7f5f4 xfrm_init_replay +EXPORT_SYMBOL vmlinux 0xd4fa23fd md_handle_request EXPORT_SYMBOL vmlinux 0xd4fa5a87 __kfifo_dma_out_prepare -EXPORT_SYMBOL vmlinux 0xd4fb17c3 cros_ec_get_host_event -EXPORT_SYMBOL vmlinux 0xd50daa73 md_bitmap_startwrite -EXPORT_SYMBOL vmlinux 0xd50eb6d7 km_new_mapping -EXPORT_SYMBOL vmlinux 0xd51ee55c bio_split +EXPORT_SYMBOL vmlinux 0xd4fd263f kiocb_set_cancel_fn EXPORT_SYMBOL vmlinux 0xd5263820 mb_cache_destroy +EXPORT_SYMBOL vmlinux 0xd52de881 bdev_read_only EXPORT_SYMBOL vmlinux 0xd5346bfc acpi_get_possible_resources -EXPORT_SYMBOL vmlinux 0xd562a55d ppp_input_error -EXPORT_SYMBOL vmlinux 0xd569097b pcie_relaxed_ordering_enabled -EXPORT_SYMBOL vmlinux 0xd56d111e frontswap_register_ops -EXPORT_SYMBOL vmlinux 0xd577c47f kernel_sendmsg -EXPORT_SYMBOL vmlinux 0xd587ad41 jbd2_log_wait_commit +EXPORT_SYMBOL vmlinux 0xd534a21a skb_orphan_partial +EXPORT_SYMBOL vmlinux 0xd561a0d4 copy_string_kernel +EXPORT_SYMBOL vmlinux 0xd56c9703 dm_kcopyd_copy +EXPORT_SYMBOL vmlinux 0xd5711af0 devm_ioport_map +EXPORT_SYMBOL vmlinux 0xd5759a8f rproc_resource_cleanup +EXPORT_SYMBOL vmlinux 0xd5784bfa napi_schedule_prep EXPORT_SYMBOL vmlinux 0xd58e70dd net_rand_noise -EXPORT_SYMBOL vmlinux 0xd5b015b4 unregister_binfmt +EXPORT_SYMBOL vmlinux 0xd58eeb9c ip_defrag +EXPORT_SYMBOL vmlinux 0xd595b704 unmap_mapping_range +EXPORT_SYMBOL vmlinux 0xd5966859 __ip4_datagram_connect EXPORT_SYMBOL vmlinux 0xd5b3d0d5 xxh64_copy_state -EXPORT_SYMBOL vmlinux 0xd5e247dd tegra_dfll_register +EXPORT_SYMBOL vmlinux 0xd5cf364a generic_key_instantiate +EXPORT_SYMBOL vmlinux 0xd5d43197 param_array_ops +EXPORT_SYMBOL vmlinux 0xd5d99635 of_get_cpu_state_node +EXPORT_SYMBOL vmlinux 0xd5eb85e3 netdev_notify_peers +EXPORT_SYMBOL vmlinux 0xd5f1be66 blk_put_queue +EXPORT_SYMBOL vmlinux 0xd5f450f4 dev_get_phys_port_name +EXPORT_SYMBOL vmlinux 0xd5f7296d mini_qdisc_pair_block_init EXPORT_SYMBOL vmlinux 0xd5fd90f1 prepare_to_wait EXPORT_SYMBOL vmlinux 0xd60736ec gf128mul_free_64k -EXPORT_SYMBOL vmlinux 0xd60f6aba mfd_remove_devices_late -EXPORT_SYMBOL vmlinux 0xd6265467 dquot_transfer -EXPORT_SYMBOL vmlinux 0xd62b38e2 ptp_clock_register +EXPORT_SYMBOL vmlinux 0xd60aced4 gnet_stats_copy_rate_est +EXPORT_SYMBOL vmlinux 0xd62388ff vme_irq_generate EXPORT_SYMBOL vmlinux 0xd62ecd49 rps_sock_flow_table -EXPORT_SYMBOL vmlinux 0xd636a29e skb_unlink -EXPORT_SYMBOL vmlinux 0xd6374437 genphy_read_lpa -EXPORT_SYMBOL vmlinux 0xd63c7398 ps2_init +EXPORT_SYMBOL vmlinux 0xd6323b98 d_set_d_op EXPORT_SYMBOL vmlinux 0xd63fd8d1 utf8nagemax -EXPORT_SYMBOL vmlinux 0xd642e0f7 blk_queue_update_dma_pad EXPORT_SYMBOL vmlinux 0xd643239a acpi_leave_sleep_state -EXPORT_SYMBOL vmlinux 0xd65c53f8 tcf_action_set_ctrlact +EXPORT_SYMBOL vmlinux 0xd64d40e7 netif_set_real_num_tx_queues +EXPORT_SYMBOL vmlinux 0xd64d4a62 da903x_query_status +EXPORT_SYMBOL vmlinux 0xd650c2af ilookup5_nowait +EXPORT_SYMBOL vmlinux 0xd6528f91 dcb_ieee_delapp +EXPORT_SYMBOL vmlinux 0xd65941a5 xfrm_unregister_km +EXPORT_SYMBOL vmlinux 0xd66604c4 skb_headers_offset_update +EXPORT_SYMBOL vmlinux 0xd66fd7cd try_module_get +EXPORT_SYMBOL vmlinux 0xd67e702b md_check_recovery EXPORT_SYMBOL vmlinux 0xd688716b dm_kcopyd_client_create EXPORT_SYMBOL vmlinux 0xd68c5a1f adjust_resource -EXPORT_SYMBOL vmlinux 0xd68e5273 tcf_exts_validate EXPORT_SYMBOL vmlinux 0xd691c6a9 unregister_sysctl_table -EXPORT_SYMBOL vmlinux 0xd6a786a5 devm_ioport_map +EXPORT_SYMBOL vmlinux 0xd69c967b scsi_change_queue_depth +EXPORT_SYMBOL vmlinux 0xd6a2b249 pci_clear_master +EXPORT_SYMBOL vmlinux 0xd6a775db blk_mq_rq_cpu EXPORT_SYMBOL vmlinux 0xd6a91f54 twl_i2c_read -EXPORT_SYMBOL vmlinux 0xd6b1980f dec_node_page_state -EXPORT_SYMBOL vmlinux 0xd6c37a91 phy_start +EXPORT_SYMBOL vmlinux 0xd6bcd632 of_device_is_available +EXPORT_SYMBOL vmlinux 0xd6d6148c xattr_supported_namespace +EXPORT_SYMBOL vmlinux 0xd6e56da8 iov_iter_revert +EXPORT_SYMBOL vmlinux 0xd6e7e94d tc_cleanup_flow_action +EXPORT_SYMBOL vmlinux 0xd6e9e2ab cdrom_open EXPORT_SYMBOL vmlinux 0xd6eaaea1 full_name_hash +EXPORT_SYMBOL vmlinux 0xd6eb2741 __phy_read_mmd EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc +EXPORT_SYMBOL vmlinux 0xd6eeba0a freeze_super EXPORT_SYMBOL vmlinux 0xd6fde043 is_module_sig_enforced +EXPORT_SYMBOL vmlinux 0xd70166e6 netdev_next_lower_dev_rcu +EXPORT_SYMBOL vmlinux 0xd703d1a2 get_vm_area +EXPORT_SYMBOL vmlinux 0xd709107a __skb_checksum +EXPORT_SYMBOL vmlinux 0xd70b4984 con_copy_unimap EXPORT_SYMBOL vmlinux 0xd70d35a1 gf128mul_4k_bbe EXPORT_SYMBOL vmlinux 0xd70f62b6 acpi_os_execute -EXPORT_SYMBOL vmlinux 0xd7176e16 proc_create -EXPORT_SYMBOL vmlinux 0xd731cdbd nexthop_res_grp_activity_update -EXPORT_SYMBOL vmlinux 0xd736f41b blk_mq_free_tag_set +EXPORT_SYMBOL vmlinux 0xd72059c2 rproc_of_parse_firmware +EXPORT_SYMBOL vmlinux 0xd7266cbb ptp_clock_unregister EXPORT_SYMBOL vmlinux 0xd738ca1b phy_unregister_fixup_for_uid -EXPORT_SYMBOL vmlinux 0xd73f1a9c blk_queue_max_hw_sectors -EXPORT_SYMBOL vmlinux 0xd740dca6 tegra_ivc_init -EXPORT_SYMBOL vmlinux 0xd7559fc0 blk_post_runtime_resume -EXPORT_SYMBOL vmlinux 0xd760b5da nf_register_queue_handler -EXPORT_SYMBOL vmlinux 0xd76480d1 inode_nohighmem -EXPORT_SYMBOL vmlinux 0xd7662e13 of_phy_register_fixed_link -EXPORT_SYMBOL vmlinux 0xd7685b49 blk_integrity_register -EXPORT_SYMBOL vmlinux 0xd77aae91 rtnl_set_sk_err -EXPORT_SYMBOL vmlinux 0xd78c6830 wait_for_key_construction -EXPORT_SYMBOL vmlinux 0xd79fa706 security_sock_graft -EXPORT_SYMBOL vmlinux 0xd7a5fe23 migrate_vma_setup -EXPORT_SYMBOL vmlinux 0xd7b8ecb3 tty_unlock -EXPORT_SYMBOL vmlinux 0xd7c1f64c freezing_slow_path -EXPORT_SYMBOL vmlinux 0xd7c73c64 of_mdiobus_child_is_phy -EXPORT_SYMBOL vmlinux 0xd7cae767 pneigh_enqueue +EXPORT_SYMBOL vmlinux 0xd7400c27 locks_free_lock +EXPORT_SYMBOL vmlinux 0xd74a3c2a eth_commit_mac_addr_change +EXPORT_SYMBOL vmlinux 0xd751fd7e find_inode_nowait +EXPORT_SYMBOL vmlinux 0xd75fc4fa bh_uptodate_or_lock +EXPORT_SYMBOL vmlinux 0xd7841293 seg6_hmac_info_lookup +EXPORT_SYMBOL vmlinux 0xd78fde3a register_netdevice_notifier_net +EXPORT_SYMBOL vmlinux 0xd7b010f4 tcp_v4_mtu_reduced +EXPORT_SYMBOL vmlinux 0xd7b1972d configfs_remove_default_groups +EXPORT_SYMBOL vmlinux 0xd7c1f8cf simple_empty +EXPORT_SYMBOL vmlinux 0xd7c60083 pci_bus_write_config_dword +EXPORT_SYMBOL vmlinux 0xd7ce0ade of_get_next_available_child EXPORT_SYMBOL vmlinux 0xd7d280ad irq_poll_complete -EXPORT_SYMBOL vmlinux 0xd7d2ed0f remap_pfn_range -EXPORT_SYMBOL vmlinux 0xd7db75f2 skb_seq_read -EXPORT_SYMBOL vmlinux 0xd7e1ce41 security_inet_conn_established +EXPORT_SYMBOL vmlinux 0xd7d3ae7c eth_type_trans +EXPORT_SYMBOL vmlinux 0xd7d87e87 of_parse_phandle EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll EXPORT_SYMBOL vmlinux 0xd7ea7094 nf_unregister_queue_handler -EXPORT_SYMBOL vmlinux 0xd7f1447a of_clk_get_by_name -EXPORT_SYMBOL vmlinux 0xd7fe8abc ip6_find_1stfragopt EXPORT_SYMBOL vmlinux 0xd7ff1b8a __ashlti3 EXPORT_SYMBOL vmlinux 0xd8131274 qman_alloc_cgrid_range -EXPORT_SYMBOL vmlinux 0xd818a688 key_put -EXPORT_SYMBOL vmlinux 0xd81df9a1 security_sctp_sk_clone -EXPORT_SYMBOL vmlinux 0xd8248ad7 amba_release_regions EXPORT_SYMBOL vmlinux 0xd828f063 xudma_tchanrt_write -EXPORT_SYMBOL vmlinux 0xd82c81ef sget_fc -EXPORT_SYMBOL vmlinux 0xd8338a38 padata_free -EXPORT_SYMBOL vmlinux 0xd857f9f7 blk_queue_split -EXPORT_SYMBOL vmlinux 0xd860b7ae dst_cow_metrics_generic -EXPORT_SYMBOL vmlinux 0xd87e0369 __splice_from_pipe -EXPORT_SYMBOL vmlinux 0xd887c81b __getblk_gfp -EXPORT_SYMBOL vmlinux 0xd889a357 vmf_insert_pfn_prot -EXPORT_SYMBOL vmlinux 0xd89431f8 md_bitmap_cond_end_sync -EXPORT_SYMBOL vmlinux 0xd89960cc unregister_netdevice_queue -EXPORT_SYMBOL vmlinux 0xd89bf9eb generic_file_open +EXPORT_SYMBOL vmlinux 0xd829add2 kernel_listen +EXPORT_SYMBOL vmlinux 0xd847468a file_open_root +EXPORT_SYMBOL vmlinux 0xd85cfe4b __cancel_dirty_page +EXPORT_SYMBOL vmlinux 0xd8693662 sync_file_create +EXPORT_SYMBOL vmlinux 0xd86a4212 pm860x_page_reg_write +EXPORT_SYMBOL vmlinux 0xd86a97c1 udp6_csum_init +EXPORT_SYMBOL vmlinux 0xd86dd807 inet_getname +EXPORT_SYMBOL vmlinux 0xd875db2a uart_resume_port +EXPORT_SYMBOL vmlinux 0xd88ac892 dma_sync_single_for_cpu +EXPORT_SYMBOL vmlinux 0xd89a3f75 dma_map_resource EXPORT_SYMBOL vmlinux 0xd89da37f movable_zone +EXPORT_SYMBOL vmlinux 0xd8a744c4 vme_bus_error_handler EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format -EXPORT_SYMBOL vmlinux 0xd8b2f476 ppp_register_net_channel +EXPORT_SYMBOL vmlinux 0xd8afc19f of_node_put EXPORT_SYMBOL vmlinux 0xd8b61304 get_default_font -EXPORT_SYMBOL vmlinux 0xd8c6e9aa zap_page_range -EXPORT_SYMBOL vmlinux 0xd8d32026 splice_direct_to_actor -EXPORT_SYMBOL vmlinux 0xd8d4bf72 seq_bprintf -EXPORT_SYMBOL vmlinux 0xd8d6c938 netlink_rcv_skb -EXPORT_SYMBOL vmlinux 0xd8d838f8 ww_mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0xd8ce442a jbd2_journal_load EXPORT_SYMBOL vmlinux 0xd8df08ac acpi_handle_printk -EXPORT_SYMBOL vmlinux 0xd8f4be0b __cleancache_init_fs -EXPORT_SYMBOL vmlinux 0xd90947f6 tcf_idr_cleanup -EXPORT_SYMBOL vmlinux 0xd90d4e26 param_get_hexint +EXPORT_SYMBOL vmlinux 0xd8f71bc3 uart_update_timeout EXPORT_SYMBOL vmlinux 0xd91f6ab6 strnlen_user -EXPORT_SYMBOL vmlinux 0xd92af94e __dynamic_dev_dbg EXPORT_SYMBOL vmlinux 0xd92deb6b acpi_evaluate_object -EXPORT_SYMBOL vmlinux 0xd9358a0f __inet6_lookup_established -EXPORT_SYMBOL vmlinux 0xd938c7b4 filp_open -EXPORT_SYMBOL vmlinux 0xd93d5203 dcbnl_cee_notify +EXPORT_SYMBOL vmlinux 0xd9402e4e __sock_create +EXPORT_SYMBOL vmlinux 0xd9460d72 sock_no_sendpage_locked EXPORT_SYMBOL vmlinux 0xd9491c14 xa_destroy -EXPORT_SYMBOL vmlinux 0xd97e2b6b send_sig_info +EXPORT_SYMBOL vmlinux 0xd959432c serio_unregister_child_port +EXPORT_SYMBOL vmlinux 0xd9776bc3 touch_atime EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages -EXPORT_SYMBOL vmlinux 0xd996d169 dev_get_stats -EXPORT_SYMBOL vmlinux 0xd9990d22 udp6_set_csum EXPORT_SYMBOL vmlinux 0xd9a5ea54 __init_waitqueue_head -EXPORT_SYMBOL vmlinux 0xd9ae4d2d ip_route_input_noref +EXPORT_SYMBOL vmlinux 0xd9b2d49b tcp_close EXPORT_SYMBOL vmlinux 0xd9b85ef6 lockref_get -EXPORT_SYMBOL vmlinux 0xd9b8c848 dev_set_promiscuity EXPORT_SYMBOL vmlinux 0xd9b8eaea __SCK__tp_func_dma_fence_signaled -EXPORT_SYMBOL vmlinux 0xd9c2efd7 dev_uc_init +EXPORT_SYMBOL vmlinux 0xd9c0c1b2 would_dump EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler EXPORT_SYMBOL vmlinux 0xd9d952d1 crypto_aes_sbox -EXPORT_SYMBOL vmlinux 0xd9e15b29 fman_reset_mac -EXPORT_SYMBOL vmlinux 0xda04d4ee unregister_netdevice_notifier_dev_net +EXPORT_SYMBOL vmlinux 0xda06d47c inode_sub_bytes +EXPORT_SYMBOL vmlinux 0xda09ef2f find_get_pages_contig +EXPORT_SYMBOL vmlinux 0xda0d1c48 key_reject_and_link EXPORT_SYMBOL vmlinux 0xda10443c xudma_tchan_get_id -EXPORT_SYMBOL vmlinux 0xda194a65 pci_enable_ptm -EXPORT_SYMBOL vmlinux 0xda22dfa1 tty_devnum -EXPORT_SYMBOL vmlinux 0xda270a80 ip_frag_next -EXPORT_SYMBOL vmlinux 0xda2c0f12 mdio_driver_unregister -EXPORT_SYMBOL vmlinux 0xda31aa82 twl6040_reg_read -EXPORT_SYMBOL vmlinux 0xda39c2c5 tcp_md5_do_del +EXPORT_SYMBOL vmlinux 0xda195ecb path_is_under +EXPORT_SYMBOL vmlinux 0xda2f865f __page_frag_cache_drain +EXPORT_SYMBOL vmlinux 0xda347a87 bio_integrity_prep +EXPORT_SYMBOL vmlinux 0xda37448c xp_alloc +EXPORT_SYMBOL vmlinux 0xda384668 file_fdatawait_range EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open -EXPORT_SYMBOL vmlinux 0xda4853f9 pci_bus_size_bridges -EXPORT_SYMBOL vmlinux 0xda56ce92 max8998_bulk_write +EXPORT_SYMBOL vmlinux 0xda5e893d skb_clone_sk +EXPORT_SYMBOL vmlinux 0xda622906 jbd2__journal_start EXPORT_SYMBOL vmlinux 0xda72a7ec ZSTD_nextInputType +EXPORT_SYMBOL vmlinux 0xda73c4a4 of_graph_get_endpoint_by_regs +EXPORT_SYMBOL vmlinux 0xda87d270 vme_new_dma_list EXPORT_SYMBOL vmlinux 0xda89ea3b ip_idents_reserve -EXPORT_SYMBOL vmlinux 0xda95bb49 unregister_shrinker -EXPORT_SYMBOL vmlinux 0xda9c1111 nd_region_release_lane -EXPORT_SYMBOL vmlinux 0xdaa489d2 devm_pci_remap_cfg_resource -EXPORT_SYMBOL vmlinux 0xdaad9d1f vme_unregister_driver -EXPORT_SYMBOL vmlinux 0xdab1797e inet_csk_reqsk_queue_add +EXPORT_SYMBOL vmlinux 0xda8d20fd of_get_next_cpu_node +EXPORT_SYMBOL vmlinux 0xda934f47 xfrm_policy_walk_done +EXPORT_SYMBOL vmlinux 0xdabc5d15 pm860x_set_bits EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region -EXPORT_SYMBOL vmlinux 0xdacd620f noop_llseek -EXPORT_SYMBOL vmlinux 0xdad54ea5 pci_disable_msi -EXPORT_SYMBOL vmlinux 0xdae19505 simple_transaction_get -EXPORT_SYMBOL vmlinux 0xdae1bf0b __phy_resume -EXPORT_SYMBOL vmlinux 0xdaed5a66 tc_setup_cb_destroy -EXPORT_SYMBOL vmlinux 0xdb1447db max8998_write_reg -EXPORT_SYMBOL vmlinux 0xdb1b3abf scsi_print_sense -EXPORT_SYMBOL vmlinux 0xdb32cc62 km_report -EXPORT_SYMBOL vmlinux 0xdb33cffb netif_carrier_off -EXPORT_SYMBOL vmlinux 0xdb4ac334 proc_remove +EXPORT_SYMBOL vmlinux 0xdb1eaa10 vfs_create +EXPORT_SYMBOL vmlinux 0xdb228510 dm_kcopyd_zero +EXPORT_SYMBOL vmlinux 0xdb2836fb genphy_read_status +EXPORT_SYMBOL vmlinux 0xdb3691c1 blk_mq_stop_hw_queues +EXPORT_SYMBOL vmlinux 0xdb377a71 md_bitmap_cond_end_sync EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy -EXPORT_SYMBOL vmlinux 0xdb6bd8bb remove_arg_zero -EXPORT_SYMBOL vmlinux 0xdb713a4a inet6_add_offload +EXPORT_SYMBOL vmlinux 0xdb6be712 read_cache_page_gfp +EXPORT_SYMBOL vmlinux 0xdb70ba4d to_nd_dax EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free -EXPORT_SYMBOL vmlinux 0xdb9908b2 security_inode_init_security -EXPORT_SYMBOL vmlinux 0xdba52be9 sg_miter_skip -EXPORT_SYMBOL vmlinux 0xdbaa683b mdio_device_register -EXPORT_SYMBOL vmlinux 0xdbb3592f netdev_update_features +EXPORT_SYMBOL vmlinux 0xdb899b79 page_pool_put_page_bulk +EXPORT_SYMBOL vmlinux 0xdb8f5e54 ilookup5 +EXPORT_SYMBOL vmlinux 0xdb95b3fd pm8606_osc_enable +EXPORT_SYMBOL vmlinux 0xdbb51dbd vfs_readlink EXPORT_SYMBOL vmlinux 0xdbcf041a acpi_install_address_space_handler +EXPORT_SYMBOL vmlinux 0xdbd24b75 fasync_helper +EXPORT_SYMBOL vmlinux 0xdbd4ebaa blk_post_runtime_resume EXPORT_SYMBOL vmlinux 0xdbdf6c92 ioport_resource -EXPORT_SYMBOL vmlinux 0xdbef6027 xfrm_alloc_spi -EXPORT_SYMBOL vmlinux 0xdbf0dbcf end_page_private_2 -EXPORT_SYMBOL vmlinux 0xdc04746e copy_page_from_iter_atomic +EXPORT_SYMBOL vmlinux 0xdc0bedf2 i2c_register_driver EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems -EXPORT_SYMBOL vmlinux 0xdc1b8330 ip_cmsg_recv_offset -EXPORT_SYMBOL vmlinux 0xdc204145 security_dentry_create_files_as +EXPORT_SYMBOL vmlinux 0xdc25f37f ptp_find_pin +EXPORT_SYMBOL vmlinux 0xdc2df73b lookup_positive_unlocked +EXPORT_SYMBOL vmlinux 0xdc3121e2 dma_map_sg_attrs EXPORT_SYMBOL vmlinux 0xdc34158f fman_port_init -EXPORT_SYMBOL vmlinux 0xdc3506a3 jbd2_journal_free_reserved -EXPORT_SYMBOL vmlinux 0xdc3b3eb1 flow_rule_match_mpls -EXPORT_SYMBOL vmlinux 0xdc3eaf7d configfs_remove_default_groups +EXPORT_SYMBOL vmlinux 0xdc39efaa tcp_mss_to_mtu +EXPORT_SYMBOL vmlinux 0xdc3d18ad proc_create_single_data EXPORT_SYMBOL vmlinux 0xdc3fcbc9 __sw_hweight8 +EXPORT_SYMBOL vmlinux 0xdc446fcb genphy_write_mmd_unsupported EXPORT_SYMBOL vmlinux 0xdc49c198 reciprocal_value_adv +EXPORT_SYMBOL vmlinux 0xdc4bb796 capable_wrt_inode_uidgid EXPORT_SYMBOL vmlinux 0xdc512134 backlight_register_notifier -EXPORT_SYMBOL vmlinux 0xdc52f9db configfs_unregister_subsystem -EXPORT_SYMBOL vmlinux 0xdc5490aa ipv6_chk_custom_prefix -EXPORT_SYMBOL vmlinux 0xdc59f6ee param_ops_byte -EXPORT_SYMBOL vmlinux 0xdc9d07b2 mr_rtm_dumproute -EXPORT_SYMBOL vmlinux 0xdc9e61af give_up_console +EXPORT_SYMBOL vmlinux 0xdc57f4e0 mmc_start_request +EXPORT_SYMBOL vmlinux 0xdc64b9f1 sched_autogroup_detach +EXPORT_SYMBOL vmlinux 0xdc780e41 flow_rule_match_ipv6_addrs +EXPORT_SYMBOL vmlinux 0xdc84471b i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0xdc85c221 unregister_key_type +EXPORT_SYMBOL vmlinux 0xdc8e7a84 fb_pan_display +EXPORT_SYMBOL vmlinux 0xdc9ed8ec xfrm_register_km EXPORT_SYMBOL vmlinux 0xdca8c3d4 logic_outb -EXPORT_SYMBOL vmlinux 0xdcabf9e6 pm8606_osc_enable +EXPORT_SYMBOL vmlinux 0xdcb03ee2 pci_enable_device_mem +EXPORT_SYMBOL vmlinux 0xdcb5acad ipv6_getsockopt EXPORT_SYMBOL vmlinux 0xdcb764ad memset -EXPORT_SYMBOL vmlinux 0xdcbfb748 proc_create_single_data -EXPORT_SYMBOL vmlinux 0xdce6bf8c xfrm_state_insert -EXPORT_SYMBOL vmlinux 0xdcfe2b65 iterate_supers_type +EXPORT_SYMBOL vmlinux 0xdcdae251 xfrm6_rcv_encap +EXPORT_SYMBOL vmlinux 0xdcf42895 mmc_card_is_blockaddr EXPORT_SYMBOL vmlinux 0xdd00447a acpi_resource_to_address64 -EXPORT_SYMBOL vmlinux 0xdd0cac78 ip6tun_encaps -EXPORT_SYMBOL vmlinux 0xdd107df6 kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0xdd124bb7 mdiobus_write EXPORT_SYMBOL vmlinux 0xdd18a993 acpi_check_dsm -EXPORT_SYMBOL vmlinux 0xdd27aa39 netdev_class_create_file_ns EXPORT_SYMBOL vmlinux 0xdd2c169b mb_cache_create -EXPORT_SYMBOL vmlinux 0xdd48fa35 posix_lock_file -EXPORT_SYMBOL vmlinux 0xdd4e8a80 padata_alloc -EXPORT_SYMBOL vmlinux 0xdd58214d iget5_locked -EXPORT_SYMBOL vmlinux 0xdd5ad727 iov_iter_npages +EXPORT_SYMBOL vmlinux 0xdd3c04a2 alloc_pages_vma +EXPORT_SYMBOL vmlinux 0xdd3ca988 zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0xdd5c207b pps_register_source +EXPORT_SYMBOL vmlinux 0xdd5c9585 pci_scan_bus +EXPORT_SYMBOL vmlinux 0xdd61c968 tc_setup_cb_add EXPORT_SYMBOL vmlinux 0xdd64e639 strscpy -EXPORT_SYMBOL vmlinux 0xdd747d94 crypto_sha256_finup +EXPORT_SYMBOL vmlinux 0xdd751166 max8925_reg_write EXPORT_SYMBOL vmlinux 0xdd7e3192 qcom_scm_pas_auth_and_reset EXPORT_SYMBOL vmlinux 0xdd8166a1 dma_fence_free -EXPORT_SYMBOL vmlinux 0xdd8428e8 tcp_poll EXPORT_SYMBOL vmlinux 0xdd849d51 scsi_get_sense_info_fld -EXPORT_SYMBOL vmlinux 0xdd90e25c vlan_filter_push_vids -EXPORT_SYMBOL vmlinux 0xdd9ab6d4 in6_dev_finish_destroy -EXPORT_SYMBOL vmlinux 0xdda56e7e __tty_alloc_driver +EXPORT_SYMBOL vmlinux 0xdd9248cd ip_mc_check_igmp +EXPORT_SYMBOL vmlinux 0xdd95ad5f inode_init_once +EXPORT_SYMBOL vmlinux 0xdd9fd440 inetdev_by_index EXPORT_SYMBOL vmlinux 0xddad7952 acpi_dbg_level -EXPORT_SYMBOL vmlinux 0xddada2dd dquot_writeback_dquots EXPORT_SYMBOL vmlinux 0xddafdd31 vm_node_stat -EXPORT_SYMBOL vmlinux 0xddc1facb unpin_user_pages -EXPORT_SYMBOL vmlinux 0xddd247d3 mmc_detect_card_removed +EXPORT_SYMBOL vmlinux 0xddd724e1 inet_csk_reqsk_queue_add +EXPORT_SYMBOL vmlinux 0xdde2e812 i2c_add_adapter EXPORT_SYMBOL vmlinux 0xddf6ad7a completion_done -EXPORT_SYMBOL vmlinux 0xde00610f devfreq_register_notifier -EXPORT_SYMBOL vmlinux 0xde17f0ff flow_block_cb_free -EXPORT_SYMBOL vmlinux 0xde1b246e mfd_remove_devices -EXPORT_SYMBOL vmlinux 0xde27bc6b blk_mq_end_request +EXPORT_SYMBOL vmlinux 0xde09212f seq_put_decimal_ll +EXPORT_SYMBOL vmlinux 0xde12f0a0 dev_set_mac_address +EXPORT_SYMBOL vmlinux 0xde1e1964 devm_extcon_register_notifier_all EXPORT_SYMBOL vmlinux 0xde293f9e add_wait_queue_exclusive +EXPORT_SYMBOL vmlinux 0xde35c367 mmc_gpio_set_cd_wake +EXPORT_SYMBOL vmlinux 0xde384171 acpi_bus_get_status +EXPORT_SYMBOL vmlinux 0xde49d0fc devfreq_unregister_opp_notifier EXPORT_SYMBOL vmlinux 0xde4d4ace dim_calc_stats -EXPORT_SYMBOL vmlinux 0xde533650 __netlink_dump_start -EXPORT_SYMBOL vmlinux 0xde68d1a7 genphy_c37_read_status -EXPORT_SYMBOL vmlinux 0xde6bdcd4 pci_set_power_state -EXPORT_SYMBOL vmlinux 0xde79c433 flow_rule_match_ipv6_addrs -EXPORT_SYMBOL vmlinux 0xde7b367c dquot_load_quota_inode -EXPORT_SYMBOL vmlinux 0xde82dbe3 tcp_sock_set_keepintvl -EXPORT_SYMBOL vmlinux 0xde94ffa3 buffer_migrate_page -EXPORT_SYMBOL vmlinux 0xdec052a5 rproc_get_by_child +EXPORT_SYMBOL vmlinux 0xde5730bd netdev_name_node_alt_destroy +EXPORT_SYMBOL vmlinux 0xde597c6c xfrm_input_register_afinfo +EXPORT_SYMBOL vmlinux 0xde6bac00 __netlink_ns_capable +EXPORT_SYMBOL vmlinux 0xdec0a693 km_query +EXPORT_SYMBOL vmlinux 0xdec4bad7 input_close_device EXPORT_SYMBOL vmlinux 0xded39a6b gen_kill_estimator -EXPORT_SYMBOL vmlinux 0xded671d0 starget_for_each_device -EXPORT_SYMBOL vmlinux 0xdeecb4db ip_options_rcv_srr +EXPORT_SYMBOL vmlinux 0xdedcd7e7 mipi_dsi_turn_on_peripheral +EXPORT_SYMBOL vmlinux 0xdee55b56 posix_acl_update_mode EXPORT_SYMBOL vmlinux 0xdef7c893 fb_match_mode +EXPORT_SYMBOL vmlinux 0xdf0c1325 netdev_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0xdf186bfa ipv6_dev_find EXPORT_SYMBOL vmlinux 0xdf256037 kstrtou8_from_user EXPORT_SYMBOL vmlinux 0xdf2c2742 rb_last EXPORT_SYMBOL vmlinux 0xdf36914b xa_find_after -EXPORT_SYMBOL vmlinux 0xdf405012 generic_file_read_iter EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier +EXPORT_SYMBOL vmlinux 0xdf55a738 netdev_pick_tx +EXPORT_SYMBOL vmlinux 0xdf5b545f jbd2_journal_unlock_updates +EXPORT_SYMBOL vmlinux 0xdf5bc039 mpage_readpage EXPORT_SYMBOL vmlinux 0xdf6b082f proc_dointvec_jiffies -EXPORT_SYMBOL vmlinux 0xdf6d332a devfreq_update_status -EXPORT_SYMBOL vmlinux 0xdf6eac56 phy_register_fixup_for_uid -EXPORT_SYMBOL vmlinux 0xdf8792d1 devm_backlight_device_unregister +EXPORT_SYMBOL vmlinux 0xdf7360a8 skb_queue_head EXPORT_SYMBOL vmlinux 0xdf8c695a __ndelay -EXPORT_SYMBOL vmlinux 0xdf8cb11f tcp_read_sock EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid EXPORT_SYMBOL vmlinux 0xdf93b9d8 timespec64_to_jiffies -EXPORT_SYMBOL vmlinux 0xdfa826da phy_reset_after_clk_enable -EXPORT_SYMBOL vmlinux 0xdfb1c813 scsi_target_resume -EXPORT_SYMBOL vmlinux 0xdfc1fb9f fwnode_phy_find_device +EXPORT_SYMBOL vmlinux 0xdfa42c79 write_dirty_buffer +EXPORT_SYMBOL vmlinux 0xdfa84261 scsi_get_device_flags_keyed +EXPORT_SYMBOL vmlinux 0xdfa867ef pnp_register_card_driver +EXPORT_SYMBOL vmlinux 0xdfacb444 generic_shutdown_super EXPORT_SYMBOL vmlinux 0xdfcc992c current_work +EXPORT_SYMBOL vmlinux 0xdfcd6c68 kobject_init EXPORT_SYMBOL vmlinux 0xdfdfa9e7 utf8nfdi -EXPORT_SYMBOL vmlinux 0xdff332f4 tcf_em_tree_dump -EXPORT_SYMBOL vmlinux 0xdff7310c security_inode_listsecurity -EXPORT_SYMBOL vmlinux 0xdff7ba07 __dquot_transfer +EXPORT_SYMBOL vmlinux 0xdfe21420 d_set_fallthru EXPORT_SYMBOL vmlinux 0xdff905e5 vme_slave_free +EXPORT_SYMBOL vmlinux 0xdffae608 vme_init_bridge EXPORT_SYMBOL vmlinux 0xdffc80fc vesa_modes -EXPORT_SYMBOL vmlinux 0xe020b8c3 sk_stream_error -EXPORT_SYMBOL vmlinux 0xe0286ad9 dput EXPORT_SYMBOL vmlinux 0xe02ba436 trace_print_hex_seq EXPORT_SYMBOL vmlinux 0xe02c9c92 __xa_erase -EXPORT_SYMBOL vmlinux 0xe038a786 fb_find_mode +EXPORT_SYMBOL vmlinux 0xe0300f9d pci_write_config_byte +EXPORT_SYMBOL vmlinux 0xe0383005 xfrm_policy_insert EXPORT_SYMBOL vmlinux 0xe03a689d dma_fence_array_ops -EXPORT_SYMBOL vmlinux 0xe03e2384 acpi_bus_get_status +EXPORT_SYMBOL vmlinux 0xe03be108 simple_fill_super +EXPORT_SYMBOL vmlinux 0xe03c8f25 gnet_stats_copy_queue +EXPORT_SYMBOL vmlinux 0xe040c74b phy_stop EXPORT_SYMBOL vmlinux 0xe0419ac4 kstrtos16 -EXPORT_SYMBOL vmlinux 0xe05dbe18 tcf_qevent_handle -EXPORT_SYMBOL vmlinux 0xe064c78a netdev_crit -EXPORT_SYMBOL vmlinux 0xe0741660 clear_bdi_congested -EXPORT_SYMBOL vmlinux 0xe07bd548 xfrm_if_register_cb +EXPORT_SYMBOL vmlinux 0xe045a29b poll_freewait +EXPORT_SYMBOL vmlinux 0xe06618e7 pci_read_config_dword +EXPORT_SYMBOL vmlinux 0xe0677605 address_space_init_once +EXPORT_SYMBOL vmlinux 0xe06c6dea pci_select_bars +EXPORT_SYMBOL vmlinux 0xe06d0077 jbd2_fc_release_bufs EXPORT_SYMBOL vmlinux 0xe07e5f44 acpi_reconfig_notifier_unregister -EXPORT_SYMBOL vmlinux 0xe07e99ba netdev_warn EXPORT_SYMBOL vmlinux 0xe080e8f0 set_current_groups EXPORT_SYMBOL vmlinux 0xe082e88d acpi_check_address_range -EXPORT_SYMBOL vmlinux 0xe08a01b0 tty_do_resize -EXPORT_SYMBOL vmlinux 0xe090cd86 dm_unregister_target +EXPORT_SYMBOL vmlinux 0xe0877031 pci_try_set_mwi EXPORT_SYMBOL vmlinux 0xe091c977 list_sort EXPORT_SYMBOL vmlinux 0xe0955f76 utf8_casefold +EXPORT_SYMBOL vmlinux 0xe0acbafb iput EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free +EXPORT_SYMBOL vmlinux 0xe0b9846e netdev_upper_dev_unlink EXPORT_SYMBOL vmlinux 0xe0bef318 icst_hz_to_vco -EXPORT_SYMBOL vmlinux 0xe0c54087 kernel_getpeername -EXPORT_SYMBOL vmlinux 0xe0d33dae of_clk_get -EXPORT_SYMBOL vmlinux 0xe0f0d16f ip_sock_set_mtu_discover -EXPORT_SYMBOL vmlinux 0xe0f670bd truncate_pagecache -EXPORT_SYMBOL vmlinux 0xe0f70ec1 vfs_path_lookup +EXPORT_SYMBOL vmlinux 0xe0d2e6fe hmm_range_fault +EXPORT_SYMBOL vmlinux 0xe0d7f551 __f_setown +EXPORT_SYMBOL vmlinux 0xe0e4693d inet_csk_reset_keepalive_timer +EXPORT_SYMBOL vmlinux 0xe0e79f16 mmc_wait_for_req_done +EXPORT_SYMBOL vmlinux 0xe0ed4d9c ata_dev_printk +EXPORT_SYMBOL vmlinux 0xe0f22fe5 xfrm_state_walk +EXPORT_SYMBOL vmlinux 0xe107130f mmc_erase_group_aligned +EXPORT_SYMBOL vmlinux 0xe10a5868 call_netdevice_notifiers EXPORT_SYMBOL vmlinux 0xe113bbbc csum_partial +EXPORT_SYMBOL vmlinux 0xe11853db blk_rq_map_user_iov EXPORT_SYMBOL vmlinux 0xe11ca997 ZSTD_getDictID_fromDict -EXPORT_SYMBOL vmlinux 0xe1224ebb input_mt_destroy_slots EXPORT_SYMBOL vmlinux 0xe123f3d9 dma_fence_release EXPORT_SYMBOL vmlinux 0xe12bda79 vme_dma_free_attribute +EXPORT_SYMBOL vmlinux 0xe12ffe26 tty_vhangup EXPORT_SYMBOL vmlinux 0xe138fb8c percpu_counter_add_batch +EXPORT_SYMBOL vmlinux 0xe13cb61d acpi_device_set_power EXPORT_SYMBOL vmlinux 0xe13cd8a7 dmi_name_in_vendors -EXPORT_SYMBOL vmlinux 0xe14ca5a2 __sk_dst_check -EXPORT_SYMBOL vmlinux 0xe153aa46 iov_iter_alignment -EXPORT_SYMBOL vmlinux 0xe156d877 vlan_vid_del -EXPORT_SYMBOL vmlinux 0xe15c3b82 of_n_addr_cells -EXPORT_SYMBOL vmlinux 0xe163016f filemap_invalidate_lock_two -EXPORT_SYMBOL vmlinux 0xe184b92e phy_validate_pause -EXPORT_SYMBOL vmlinux 0xe1994a68 neigh_changeaddr +EXPORT_SYMBOL vmlinux 0xe1553cac tcf_qevent_validate_change +EXPORT_SYMBOL vmlinux 0xe16f0685 dma_alloc_attrs +EXPORT_SYMBOL vmlinux 0xe170a47a mipi_dsi_host_register +EXPORT_SYMBOL vmlinux 0xe17d664c of_graph_get_endpoint_count +EXPORT_SYMBOL vmlinux 0xe199c3f0 __inet6_lookup_established +EXPORT_SYMBOL vmlinux 0xe1a2b97a pci_ep_cfs_add_epf_group EXPORT_SYMBOL vmlinux 0xe1a4f16a secure_ipv6_port_ephemeral -EXPORT_SYMBOL vmlinux 0xe1b445ce inet_recvmsg -EXPORT_SYMBOL vmlinux 0xe1b9bab0 bio_integrity_trim +EXPORT_SYMBOL vmlinux 0xe1a67b00 dev_uc_sync_multiple +EXPORT_SYMBOL vmlinux 0xe1b9e1cb module_refcount +EXPORT_SYMBOL vmlinux 0xe1db7bd1 pm_vt_switch_unregister EXPORT_SYMBOL vmlinux 0xe1dcf64a audit_log_format -EXPORT_SYMBOL vmlinux 0xe1ddbc1a pagevec_lookup_range -EXPORT_SYMBOL vmlinux 0xe1e190ce take_dentry_name_snapshot -EXPORT_SYMBOL vmlinux 0xe211373c jbd2_journal_blocks_per_page -EXPORT_SYMBOL vmlinux 0xe21caf2d tegra_dfll_runtime_suspend -EXPORT_SYMBOL vmlinux 0xe21eb2ed rc5t583_ext_power_req_config +EXPORT_SYMBOL vmlinux 0xe1ee507b fget +EXPORT_SYMBOL vmlinux 0xe1f507dd blk_queue_alignment_offset EXPORT_SYMBOL vmlinux 0xe21f18ac __genradix_iter_peek -EXPORT_SYMBOL vmlinux 0xe22cf178 d_hash_and_lookup -EXPORT_SYMBOL vmlinux 0xe2434a1f phy_attach -EXPORT_SYMBOL vmlinux 0xe2446ac9 netif_set_real_num_tx_queues -EXPORT_SYMBOL vmlinux 0xe2557281 pnp_unregister_card_driver -EXPORT_SYMBOL vmlinux 0xe25fca9d dcb_ieee_setapp +EXPORT_SYMBOL vmlinux 0xe22a9ca7 netdev_update_features +EXPORT_SYMBOL vmlinux 0xe230fe0f mmc_of_parse_voltage +EXPORT_SYMBOL vmlinux 0xe235b6ab pcim_iomap_table +EXPORT_SYMBOL vmlinux 0xe2371ab1 tcp_check_req +EXPORT_SYMBOL vmlinux 0xe240e720 textsearch_find_continuous +EXPORT_SYMBOL vmlinux 0xe244ac56 param_set_bint +EXPORT_SYMBOL vmlinux 0xe257a5c6 kernel_getsockname +EXPORT_SYMBOL vmlinux 0xe25e3d27 seq_read_iter +EXPORT_SYMBOL vmlinux 0xe267c949 tty_name EXPORT_SYMBOL vmlinux 0xe271128b cpumask_any_distribute EXPORT_SYMBOL vmlinux 0xe273d75d alloc_cpu_rmap -EXPORT_SYMBOL vmlinux 0xe294047a scsi_change_queue_depth -EXPORT_SYMBOL vmlinux 0xe29fdd4c tcf_exts_terse_dump +EXPORT_SYMBOL vmlinux 0xe27f4f32 zap_page_range +EXPORT_SYMBOL vmlinux 0xe2811974 dget_parent +EXPORT_SYMBOL vmlinux 0xe2a5704e dquot_claim_space_nodirty +EXPORT_SYMBOL vmlinux 0xe2b7f9e6 find_get_pages_range_tag +EXPORT_SYMBOL vmlinux 0xe2bc9b89 blk_pre_runtime_suspend +EXPORT_SYMBOL vmlinux 0xe2bd8720 pci_bus_read_config_dword EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp -EXPORT_SYMBOL vmlinux 0xe2e5e61f d_rehash -EXPORT_SYMBOL vmlinux 0xe2fb2f12 mount_subtree -EXPORT_SYMBOL vmlinux 0xe318175c fscrypt_free_inode -EXPORT_SYMBOL vmlinux 0xe3187e03 dmam_free_coherent -EXPORT_SYMBOL vmlinux 0xe3264f25 kernel_getsockname +EXPORT_SYMBOL vmlinux 0xe305762c rpmh_invalidate +EXPORT_SYMBOL vmlinux 0xe31095d6 icmpv6_ndo_send EXPORT_SYMBOL vmlinux 0xe32ab4d8 xxh64_digest -EXPORT_SYMBOL vmlinux 0xe3397fbc from_kuid_munged -EXPORT_SYMBOL vmlinux 0xe3880607 tty_flip_buffer_push -EXPORT_SYMBOL vmlinux 0xe39736c5 of_get_child_by_name +EXPORT_SYMBOL vmlinux 0xe3383a41 __mmap_lock_do_trace_released +EXPORT_SYMBOL vmlinux 0xe348cdf8 clk_get +EXPORT_SYMBOL vmlinux 0xe34cfde9 pin_user_pages_locked +EXPORT_SYMBOL vmlinux 0xe35e548b forget_all_cached_acls +EXPORT_SYMBOL vmlinux 0xe368dfa6 simple_statfs EXPORT_SYMBOL vmlinux 0xe39b2ea5 sha256 -EXPORT_SYMBOL vmlinux 0xe39cf143 zpool_unregister_driver -EXPORT_SYMBOL vmlinux 0xe39e3f2f vfs_dedupe_file_range_one -EXPORT_SYMBOL vmlinux 0xe39f6e22 mdio_bus_type -EXPORT_SYMBOL vmlinux 0xe3bfe670 input_register_device -EXPORT_SYMBOL vmlinux 0xe3c92054 flow_rule_match_eth_addrs -EXPORT_SYMBOL vmlinux 0xe3e1e05d phy_set_sym_pause -EXPORT_SYMBOL vmlinux 0xe3e40559 blk_get_queue +EXPORT_SYMBOL vmlinux 0xe3a6b523 of_mdio_find_device +EXPORT_SYMBOL vmlinux 0xe3b18532 blkdev_compat_ptr_ioctl +EXPORT_SYMBOL vmlinux 0xe3bd8071 fman_set_port_params +EXPORT_SYMBOL vmlinux 0xe3c9514a vme_unregister_bridge +EXPORT_SYMBOL vmlinux 0xe3cdd0a8 vga_put +EXPORT_SYMBOL vmlinux 0xe3d2992c of_find_mipi_dsi_device_by_node EXPORT_SYMBOL vmlinux 0xe3ec2f2b alloc_chrdev_region -EXPORT_SYMBOL vmlinux 0xe3ed7ddf component_match_add_typed -EXPORT_SYMBOL vmlinux 0xe3f8d37d copy_page_from_iter -EXPORT_SYMBOL vmlinux 0xe3fa3581 ioc_lookup_icq EXPORT_SYMBOL vmlinux 0xe3feba56 tasklet_unlock_spin_wait -EXPORT_SYMBOL vmlinux 0xe3ff0ab5 netdev_has_upper_dev_all_rcu EXPORT_SYMBOL vmlinux 0xe3ff2c41 get_random_u64 +EXPORT_SYMBOL vmlinux 0xe4035ac1 tcp_initialize_rcv_mss +EXPORT_SYMBOL vmlinux 0xe407e9a0 tty_port_block_til_ready EXPORT_SYMBOL vmlinux 0xe40976c0 pnp_range_reserved +EXPORT_SYMBOL vmlinux 0xe409b512 dup_iter EXPORT_SYMBOL vmlinux 0xe40c37ea down_write_trylock -EXPORT_SYMBOL vmlinux 0xe415819d netlink_unicast -EXPORT_SYMBOL vmlinux 0xe431748d tcp_v4_md5_lookup +EXPORT_SYMBOL vmlinux 0xe4138c67 free_xenballooned_pages +EXPORT_SYMBOL vmlinux 0xe4188fee i2c_smbus_read_byte_data +EXPORT_SYMBOL vmlinux 0xe42b07de xsk_tx_peek_desc EXPORT_SYMBOL vmlinux 0xe4329092 __ctzdi2 -EXPORT_SYMBOL vmlinux 0xe4392635 uart_resume_port -EXPORT_SYMBOL vmlinux 0xe43b4296 cdrom_mode_select -EXPORT_SYMBOL vmlinux 0xe449dd38 md_bitmap_free -EXPORT_SYMBOL vmlinux 0xe463b249 pcie_capability_write_dword -EXPORT_SYMBOL vmlinux 0xe46a62ad __inc_node_page_state -EXPORT_SYMBOL vmlinux 0xe49c54ad tc_setup_flow_action -EXPORT_SYMBOL vmlinux 0xe4a18cad pci_request_selected_regions -EXPORT_SYMBOL vmlinux 0xe4a80be0 d_exact_alias +EXPORT_SYMBOL vmlinux 0xe4447060 rproc_elf_find_loaded_rsc_table +EXPORT_SYMBOL vmlinux 0xe481a199 page_pool_return_skb_page +EXPORT_SYMBOL vmlinux 0xe48cdfa5 skb_copy_datagram_iter +EXPORT_SYMBOL vmlinux 0xe49f2dbe of_graph_get_port_by_id +EXPORT_SYMBOL vmlinux 0xe4aee063 key_link +EXPORT_SYMBOL vmlinux 0xe4b005e7 __dev_set_mtu +EXPORT_SYMBOL vmlinux 0xe4bb1a42 ata_port_printk EXPORT_SYMBOL vmlinux 0xe4bbc1dd kimage_voffset EXPORT_SYMBOL vmlinux 0xe4bc2c2f hdmi_drm_infoframe_pack -EXPORT_SYMBOL vmlinux 0xe4cf6297 ipv6_select_ident -EXPORT_SYMBOL vmlinux 0xe4ddf8b5 backlight_device_unregister -EXPORT_SYMBOL vmlinux 0xe4e97060 request_firmware_into_buf -EXPORT_SYMBOL vmlinux 0xe4f4f91b param_set_byte -EXPORT_SYMBOL vmlinux 0xe50c8520 kernel_sock_shutdown +EXPORT_SYMBOL vmlinux 0xe4d8bc2a generic_file_splice_read +EXPORT_SYMBOL vmlinux 0xe4e542ed ata_scsi_cmd_error_handler +EXPORT_SYMBOL vmlinux 0xe4ffaf03 vlan_vids_add_by_dev +EXPORT_SYMBOL vmlinux 0xe50bdfd2 mipi_dsi_device_register_full EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq -EXPORT_SYMBOL vmlinux 0xe52732be sock_set_sndtimeo -EXPORT_SYMBOL vmlinux 0xe52c6258 generic_pipe_buf_try_steal -EXPORT_SYMBOL vmlinux 0xe53c21f8 rtnl_unicast -EXPORT_SYMBOL vmlinux 0xe54c87ef sock_i_uid -EXPORT_SYMBOL vmlinux 0xe569f72f xfrm_parse_spi -EXPORT_SYMBOL vmlinux 0xe56f14bc free_xenballooned_pages -EXPORT_SYMBOL vmlinux 0xe56fa70a vif_device_init -EXPORT_SYMBOL vmlinux 0xe5754997 dev_load -EXPORT_SYMBOL vmlinux 0xe57d7e40 __breadahead_gfp +EXPORT_SYMBOL vmlinux 0xe53df9e6 pci_enable_device +EXPORT_SYMBOL vmlinux 0xe55ce0e7 device_get_mac_address +EXPORT_SYMBOL vmlinux 0xe55de267 drop_nlink +EXPORT_SYMBOL vmlinux 0xe566a975 dev_get_stats EXPORT_SYMBOL vmlinux 0xe57feefb qcom_scm_ocmem_unlock EXPORT_SYMBOL vmlinux 0xe58090ca security_ib_endport_manage_subnet -EXPORT_SYMBOL vmlinux 0xe588e6cc misc_deregister +EXPORT_SYMBOL vmlinux 0xe582db29 security_inode_listsecurity +EXPORT_SYMBOL vmlinux 0xe583311f iterate_dir +EXPORT_SYMBOL vmlinux 0xe5866341 tcp_disconnect EXPORT_SYMBOL vmlinux 0xe590dea3 sk_busy_loop_end -EXPORT_SYMBOL vmlinux 0xe5a05c04 alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0xe59f3f40 proc_create_data +EXPORT_SYMBOL vmlinux 0xe5ab7b49 devm_request_any_context_irq EXPORT_SYMBOL vmlinux 0xe5bc9a53 slhc_free -EXPORT_SYMBOL vmlinux 0xe5bca39e __devm_mdiobus_register -EXPORT_SYMBOL vmlinux 0xe5bedc4a of_graph_get_remote_endpoint -EXPORT_SYMBOL vmlinux 0xe5c34e9d netlink_broadcast_filtered -EXPORT_SYMBOL vmlinux 0xe5c4d8d4 netif_set_real_num_rx_queues EXPORT_SYMBOL vmlinux 0xe5c60bd2 percpu_counter_set EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen -EXPORT_SYMBOL vmlinux 0xe5c9f1e4 unregister_netdev -EXPORT_SYMBOL vmlinux 0xe5cae5d6 inet_csk_delete_keepalive_timer -EXPORT_SYMBOL vmlinux 0xe5dcd6bb blk_queue_max_write_zeroes_sectors -EXPORT_SYMBOL vmlinux 0xe5deb79d vlan_for_each +EXPORT_SYMBOL vmlinux 0xe5c882f8 phy_attach +EXPORT_SYMBOL vmlinux 0xe5d027f5 serio_close +EXPORT_SYMBOL vmlinux 0xe5d8e6e4 task_work_add +EXPORT_SYMBOL vmlinux 0xe5da04a3 security_inode_setsecctx +EXPORT_SYMBOL vmlinux 0xe5f055db xfrm_spd_getinfo +EXPORT_SYMBOL vmlinux 0xe5f097e1 find_vma +EXPORT_SYMBOL vmlinux 0xe607db6e dquot_quota_off EXPORT_SYMBOL vmlinux 0xe613a798 inet_addr_is_any -EXPORT_SYMBOL vmlinux 0xe61d0c9d tcp_mss_to_mtu -EXPORT_SYMBOL vmlinux 0xe61fcd88 dev_get_by_name_rcu -EXPORT_SYMBOL vmlinux 0xe62a94e1 xfrm_find_acq -EXPORT_SYMBOL vmlinux 0xe641dedf acpi_mdiobus_register -EXPORT_SYMBOL vmlinux 0xe6425c37 fqdir_init -EXPORT_SYMBOL vmlinux 0xe64c4dfa set_bdi_congested -EXPORT_SYMBOL vmlinux 0xe64cb2f2 get_user_pages_remote -EXPORT_SYMBOL vmlinux 0xe657c6db dma_resv_add_shared_fence -EXPORT_SYMBOL vmlinux 0xe664d9c9 dev_mc_sync_multiple -EXPORT_SYMBOL vmlinux 0xe66b6985 get_vm_area -EXPORT_SYMBOL vmlinux 0xe673557e i2c_smbus_write_byte_data -EXPORT_SYMBOL vmlinux 0xe6895144 skb_clone_sk +EXPORT_SYMBOL vmlinux 0xe62206eb pagevec_lookup_range_tag +EXPORT_SYMBOL vmlinux 0xe63f00d1 kmem_cache_free_bulk +EXPORT_SYMBOL vmlinux 0xe6423308 sched_autogroup_create_attach +EXPORT_SYMBOL vmlinux 0xe663d428 unlock_buffer +EXPORT_SYMBOL vmlinux 0xe665dfea pcibios_resource_to_bus +EXPORT_SYMBOL vmlinux 0xe670be11 dquot_transfer +EXPORT_SYMBOL vmlinux 0xe68eb117 of_phy_register_fixed_link EXPORT_SYMBOL vmlinux 0xe691ac7f ZSTD_decompressBegin -EXPORT_SYMBOL vmlinux 0xe693608d no_seek_end_llseek_size -EXPORT_SYMBOL vmlinux 0xe6a2993a pcie_bandwidth_available -EXPORT_SYMBOL vmlinux 0xe6aebf31 reuseport_detach_prog +EXPORT_SYMBOL vmlinux 0xe69a1f13 inet_reqsk_alloc +EXPORT_SYMBOL vmlinux 0xe69c5434 tcp_seq_next +EXPORT_SYMBOL vmlinux 0xe6aac1ad vlan_ioctl_set +EXPORT_SYMBOL vmlinux 0xe6bc53d7 configfs_undepend_item +EXPORT_SYMBOL vmlinux 0xe6c62a6f vfs_mkdir +EXPORT_SYMBOL vmlinux 0xe6cca3b2 pnp_register_driver EXPORT_SYMBOL vmlinux 0xe6d2458e do_trace_netlink_extack -EXPORT_SYMBOL vmlinux 0xe6e64f4c bh_submit_read -EXPORT_SYMBOL vmlinux 0xe6ecd983 udp_lib_setsockopt -EXPORT_SYMBOL vmlinux 0xe6f978d3 netdev_rx_csum_fault +EXPORT_SYMBOL vmlinux 0xe6d31c8f netdev_warn +EXPORT_SYMBOL vmlinux 0xe6dbb007 pci_enable_device_io +EXPORT_SYMBOL vmlinux 0xe6e824da compat_ptr_ioctl EXPORT_SYMBOL vmlinux 0xe6fa06a2 rename_lock -EXPORT_SYMBOL vmlinux 0xe6fa54fe netdev_lower_state_changed -EXPORT_SYMBOL vmlinux 0xe70a470e unlock_new_inode +EXPORT_SYMBOL vmlinux 0xe6fa7462 _dev_warn +EXPORT_SYMBOL vmlinux 0xe7005be6 jbd2_journal_dirty_metadata EXPORT_SYMBOL vmlinux 0xe7257ab8 xa_store_range -EXPORT_SYMBOL vmlinux 0xe72ad238 get_cached_acl -EXPORT_SYMBOL vmlinux 0xe72ef343 pmem_sector_size EXPORT_SYMBOL vmlinux 0xe7324b9a utf8nfdicf -EXPORT_SYMBOL vmlinux 0xe7402fca thermal_zone_device_critical -EXPORT_SYMBOL vmlinux 0xe760a167 dev_get_by_name -EXPORT_SYMBOL vmlinux 0xe7614de9 blk_queue_max_segment_size -EXPORT_SYMBOL vmlinux 0xe765413b read_cache_page_gfp +EXPORT_SYMBOL vmlinux 0xe7383614 pci_find_parent_resource +EXPORT_SYMBOL vmlinux 0xe7393b44 netif_set_xps_queue +EXPORT_SYMBOL vmlinux 0xe74363bb proc_symlink +EXPORT_SYMBOL vmlinux 0xe74d142e cookie_ecn_ok +EXPORT_SYMBOL vmlinux 0xe74e23c9 pneigh_enqueue +EXPORT_SYMBOL vmlinux 0xe74e9677 __vfs_removexattr +EXPORT_SYMBOL vmlinux 0xe75b0c64 phy_ethtool_get_sset_count +EXPORT_SYMBOL vmlinux 0xe75b63a2 filemap_range_has_page EXPORT_SYMBOL vmlinux 0xe7698027 ioremap_cache -EXPORT_SYMBOL vmlinux 0xe79099a6 redraw_screen +EXPORT_SYMBOL vmlinux 0xe76e4b40 devm_ioremap_resource +EXPORT_SYMBOL vmlinux 0xe76f2b43 tso_start +EXPORT_SYMBOL vmlinux 0xe78cae6e eth_gro_complete +EXPORT_SYMBOL vmlinux 0xe78eabcc inode_set_flags EXPORT_SYMBOL vmlinux 0xe7a02573 ida_alloc_range +EXPORT_SYMBOL vmlinux 0xe7a9a6f5 tegra_ivc_reset +EXPORT_SYMBOL vmlinux 0xe7ae4401 pm860x_bulk_write EXPORT_SYMBOL vmlinux 0xe7b0353b __cpu_active_mask -EXPORT_SYMBOL vmlinux 0xe7b61677 __test_set_page_writeback -EXPORT_SYMBOL vmlinux 0xe7b76022 ndo_dflt_fdb_del +EXPORT_SYMBOL vmlinux 0xe7b75347 blk_set_runtime_active +EXPORT_SYMBOL vmlinux 0xe7d32cb9 security_d_instantiate EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next -EXPORT_SYMBOL vmlinux 0xe7f09b58 sock_no_linger -EXPORT_SYMBOL vmlinux 0xe7f687f8 mark_buffer_async_write -EXPORT_SYMBOL vmlinux 0xe7fabe8e genlmsg_multicast_allns -EXPORT_SYMBOL vmlinux 0xe7fd243f ptp_cancel_worker_sync -EXPORT_SYMBOL vmlinux 0xe81dea51 nf_hook_slow_list -EXPORT_SYMBOL vmlinux 0xe82567cd dma_async_device_register +EXPORT_SYMBOL vmlinux 0xe7d8f134 of_node_name_prefix +EXPORT_SYMBOL vmlinux 0xe7f2d3b8 set_bh_page +EXPORT_SYMBOL vmlinux 0xe805b7ed fb_show_logo +EXPORT_SYMBOL vmlinux 0xe81c77b4 kmalloc_caches +EXPORT_SYMBOL vmlinux 0xe8328876 find_inode_rcu EXPORT_SYMBOL vmlinux 0xe8330a5a call_usermodehelper_exec -EXPORT_SYMBOL vmlinux 0xe84e422a inode_sub_bytes +EXPORT_SYMBOL vmlinux 0xe835d8cb phy_get_internal_delay EXPORT_SYMBOL vmlinux 0xe85f2123 acpi_tb_unload_table -EXPORT_SYMBOL vmlinux 0xe86569ee of_xudma_dev_get -EXPORT_SYMBOL vmlinux 0xe865c44c kern_path_create -EXPORT_SYMBOL vmlinux 0xe8690ef1 vga_set_legacy_decoding -EXPORT_SYMBOL vmlinux 0xe87390fb jbd2_journal_start_reserved -EXPORT_SYMBOL vmlinux 0xe8ab0952 sock_register -EXPORT_SYMBOL vmlinux 0xe8b374a7 pm860x_bulk_write +EXPORT_SYMBOL vmlinux 0xe870d8ea sock_set_reuseport +EXPORT_SYMBOL vmlinux 0xe8805a25 reuseport_add_sock +EXPORT_SYMBOL vmlinux 0xe88dcf1a gro_cells_init +EXPORT_SYMBOL vmlinux 0xe894938e nobh_writepage +EXPORT_SYMBOL vmlinux 0xe8aac89e __lock_sock_fast EXPORT_SYMBOL vmlinux 0xe8b5c3c3 __tracepoint_module_get -EXPORT_SYMBOL vmlinux 0xe8cc08c5 neigh_destroy -EXPORT_SYMBOL vmlinux 0xe8df0a04 md_error -EXPORT_SYMBOL vmlinux 0xe8f73c3a blk_mq_delay_run_hw_queues +EXPORT_SYMBOL vmlinux 0xe8b76985 mipi_dsi_dcs_get_display_brightness +EXPORT_SYMBOL vmlinux 0xe8c03842 gnet_stats_finish_copy +EXPORT_SYMBOL vmlinux 0xe8c12c5e dma_mmap_attrs +EXPORT_SYMBOL vmlinux 0xe8d6ef1b param_get_ullong +EXPORT_SYMBOL vmlinux 0xe8dea8f6 unregister_quota_format +EXPORT_SYMBOL vmlinux 0xe8e91ac7 skb_ext_add EXPORT_SYMBOL vmlinux 0xe8fbf4fa __alloc_bucket_spinlocks EXPORT_SYMBOL vmlinux 0xe90253f0 xudma_rflow_get EXPORT_SYMBOL vmlinux 0xe909997a bitmap_print_list_to_buf -EXPORT_SYMBOL vmlinux 0xe911a30a tty_port_close_end +EXPORT_SYMBOL vmlinux 0xe90c25fc ipmi_platform_add +EXPORT_SYMBOL vmlinux 0xe91134d0 security_socket_socketpair +EXPORT_SYMBOL vmlinux 0xe912fba8 dev_add_offload EXPORT_SYMBOL vmlinux 0xe914e41e strcpy -EXPORT_SYMBOL vmlinux 0xe922a7c0 mdio_device_reset -EXPORT_SYMBOL vmlinux 0xe92337dc dcb_ieee_getapp_mask -EXPORT_SYMBOL vmlinux 0xe93375c2 skb_push +EXPORT_SYMBOL vmlinux 0xe9237020 kernel_accept +EXPORT_SYMBOL vmlinux 0xe9503316 jbd2_log_start_commit EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino -EXPORT_SYMBOL vmlinux 0xe963d4df _dev_printk -EXPORT_SYMBOL vmlinux 0xe96d511f rproc_elf_find_loaded_rsc_table -EXPORT_SYMBOL vmlinux 0xe97061cc mipi_dsi_picture_parameter_set -EXPORT_SYMBOL vmlinux 0xe9753773 eth_gro_complete +EXPORT_SYMBOL vmlinux 0xe9562578 mmc_set_blocklen +EXPORT_SYMBOL vmlinux 0xe95a1ee4 lock_two_nondirectories +EXPORT_SYMBOL vmlinux 0xe95a73af __neigh_event_send +EXPORT_SYMBOL vmlinux 0xe97fcbf9 fscrypt_fname_disk_to_usr EXPORT_SYMBOL vmlinux 0xe9af7397 __xa_set_mark -EXPORT_SYMBOL vmlinux 0xe9ce084a generic_mii_ioctl -EXPORT_SYMBOL vmlinux 0xe9d962b5 dev_queue_xmit -EXPORT_SYMBOL vmlinux 0xe9e2b778 sock_no_mmap +EXPORT_SYMBOL vmlinux 0xe9be5b79 generic_pipe_buf_get EXPORT_SYMBOL vmlinux 0xe9e8faeb efi_tpm_final_log_size EXPORT_SYMBOL vmlinux 0xe9f7149c zlib_deflate_workspacesize +EXPORT_SYMBOL vmlinux 0xe9f9f1f5 phy_request_interrupt EXPORT_SYMBOL vmlinux 0xe9ffc063 down_trylock -EXPORT_SYMBOL vmlinux 0xea0bb13d netif_rx +EXPORT_SYMBOL vmlinux 0xea0f9b42 xfrm4_rcv_encap +EXPORT_SYMBOL vmlinux 0xea160b32 d_genocide EXPORT_SYMBOL vmlinux 0xea1c3e3a arm_smccc_1_2_hvc -EXPORT_SYMBOL vmlinux 0xea1dd76e __devm_release_region -EXPORT_SYMBOL vmlinux 0xea34cd11 kfree_skb_partial +EXPORT_SYMBOL vmlinux 0xea259a41 pci_release_regions EXPORT_SYMBOL vmlinux 0xea3c8e4e scsilun_to_int -EXPORT_SYMBOL vmlinux 0xea5056f3 blk_integrity_unregister -EXPORT_SYMBOL vmlinux 0xea52a6bc blk_mq_delay_kick_requeue_list -EXPORT_SYMBOL vmlinux 0xea59bf02 mmc_gpio_set_cd_wake -EXPORT_SYMBOL vmlinux 0xea6276f8 twl6030_mmc_card_detect -EXPORT_SYMBOL vmlinux 0xea65bb51 netdev_adjacent_change_abort +EXPORT_SYMBOL vmlinux 0xea4047d6 pci_request_selected_regions_exclusive +EXPORT_SYMBOL vmlinux 0xea44a26c uart_register_driver +EXPORT_SYMBOL vmlinux 0xea67d353 __devm_mdiobus_register EXPORT_SYMBOL vmlinux 0xea6f9a36 zlib_deflate_dfltcc_enabled EXPORT_SYMBOL vmlinux 0xea778fab sg_pcopy_to_buffer -EXPORT_SYMBOL vmlinux 0xea7be776 dquot_quota_sync -EXPORT_SYMBOL vmlinux 0xea81b7e1 register_mii_timestamper -EXPORT_SYMBOL vmlinux 0xea951712 dev_getfirstbyhwtype -EXPORT_SYMBOL vmlinux 0xea98e7ba eth_mac_addr -EXPORT_SYMBOL vmlinux 0xea9c738e __scsi_add_device -EXPORT_SYMBOL vmlinux 0xeaa062d3 of_get_cpu_state_node -EXPORT_SYMBOL vmlinux 0xeaa30dc6 dquot_initialize_needed +EXPORT_SYMBOL vmlinux 0xea962a03 tty_kref_put +EXPORT_SYMBOL vmlinux 0xeaa8d365 d_alloc_parallel EXPORT_SYMBOL vmlinux 0xeab6f4c4 acpi_check_resource_conflict -EXPORT_SYMBOL vmlinux 0xeabdbce9 blk_mq_alloc_request -EXPORT_SYMBOL vmlinux 0xeac277aa pcie_get_readrq -EXPORT_SYMBOL vmlinux 0xeace2a29 bdi_register +EXPORT_SYMBOL vmlinux 0xeac05e58 security_dentry_create_files_as EXPORT_SYMBOL vmlinux 0xead8c400 bman_get_bpid -EXPORT_SYMBOL vmlinux 0xeae2fb3f nd_btt_version +EXPORT_SYMBOL vmlinux 0xeae14dc9 fget_raw EXPORT_SYMBOL vmlinux 0xeae3dfd6 __const_udelay -EXPORT_SYMBOL vmlinux 0xeae625d1 pci_find_next_bus -EXPORT_SYMBOL vmlinux 0xeae6fdf6 pci_request_regions_exclusive +EXPORT_SYMBOL vmlinux 0xeaea4ddd tcp_seq_stop EXPORT_SYMBOL vmlinux 0xeafc141f __posix_acl_chmod -EXPORT_SYMBOL vmlinux 0xeb0e7aa0 dump_emit +EXPORT_SYMBOL vmlinux 0xeb0872fa is_subdir +EXPORT_SYMBOL vmlinux 0xeb0cf15e dev_set_group +EXPORT_SYMBOL vmlinux 0xeb10e407 netdev_lower_get_next +EXPORT_SYMBOL vmlinux 0xeb215bb8 adjust_managed_page_count EXPORT_SYMBOL vmlinux 0xeb233a45 __kmalloc EXPORT_SYMBOL vmlinux 0xeb2391c9 gen_new_estimator -EXPORT_SYMBOL vmlinux 0xeb252697 find_inode_by_ino_rcu -EXPORT_SYMBOL vmlinux 0xeb2c520a udp_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0xeb293000 __register_chrdev +EXPORT_SYMBOL vmlinux 0xeb2c8afc rproc_boot +EXPORT_SYMBOL vmlinux 0xeb34f564 iw_handler_set_thrspy EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end EXPORT_SYMBOL vmlinux 0xeb44339a free_pages_exact +EXPORT_SYMBOL vmlinux 0xeb486a76 flow_rule_match_ports +EXPORT_SYMBOL vmlinux 0xeb4d7d80 uart_unregister_driver +EXPORT_SYMBOL vmlinux 0xeb50f5ff ip6_fraglist_prepare +EXPORT_SYMBOL vmlinux 0xeb55a20d netdev_upper_dev_link +EXPORT_SYMBOL vmlinux 0xeb5728f1 d_alloc +EXPORT_SYMBOL vmlinux 0xeb70df52 netlink_net_capable EXPORT_SYMBOL vmlinux 0xeb7f6046 acpi_get_devices -EXPORT_SYMBOL vmlinux 0xeb8afc5c pci_enable_device_io -EXPORT_SYMBOL vmlinux 0xeb8b7f11 of_find_property +EXPORT_SYMBOL vmlinux 0xeb86a95d simple_setattr +EXPORT_SYMBOL vmlinux 0xeb8d804a vm_map_pages +EXPORT_SYMBOL vmlinux 0xeb98d8ed phy_start EXPORT_SYMBOL vmlinux 0xeb9e913d sgl_alloc_order EXPORT_SYMBOL vmlinux 0xeb9eef52 match_uint -EXPORT_SYMBOL vmlinux 0xeba842d0 free_buffer_head -EXPORT_SYMBOL vmlinux 0xebb4ee91 dup_iter -EXPORT_SYMBOL vmlinux 0xebb7f99d kernel_recvmsg -EXPORT_SYMBOL vmlinux 0xebc1f0a6 flow_rule_match_enc_ip -EXPORT_SYMBOL vmlinux 0xebdc2ec0 ipmi_platform_add -EXPORT_SYMBOL vmlinux 0xebe1da47 rproc_free -EXPORT_SYMBOL vmlinux 0xebe8ca72 qdisc_watchdog_cancel -EXPORT_SYMBOL vmlinux 0xebf129bd __dquot_free_space -EXPORT_SYMBOL vmlinux 0xebf45b12 vm_insert_pages -EXPORT_SYMBOL vmlinux 0xebf90a8c kmem_cache_create -EXPORT_SYMBOL vmlinux 0xebfb09b2 tcf_block_put -EXPORT_SYMBOL vmlinux 0xec0898d5 dmaenginem_async_device_register -EXPORT_SYMBOL vmlinux 0xec18e471 __lock_sock_fast -EXPORT_SYMBOL vmlinux 0xec1a3954 phy_device_free +EXPORT_SYMBOL vmlinux 0xeba7a4fb tty_devnum +EXPORT_SYMBOL vmlinux 0xebb18b3c pnp_device_attach +EXPORT_SYMBOL vmlinux 0xebc807cc udp_lib_unhash +EXPORT_SYMBOL vmlinux 0xebea25ff put_disk +EXPORT_SYMBOL vmlinux 0xebec73a8 __kfree_skb +EXPORT_SYMBOL vmlinux 0xebfb7496 flow_indr_dev_unregister +EXPORT_SYMBOL vmlinux 0xec1a4ff1 ip_ct_attach EXPORT_SYMBOL vmlinux 0xec2b8a42 acpi_walk_namespace EXPORT_SYMBOL vmlinux 0xec2e1c8f proc_doulongvec_minmax -EXPORT_SYMBOL vmlinux 0xec2f7cda jbd2_journal_check_available_features EXPORT_SYMBOL vmlinux 0xec33c668 __SCK__tp_func_spi_transfer_start +EXPORT_SYMBOL vmlinux 0xec3418f9 skb_flow_dissect_ct +EXPORT_SYMBOL vmlinux 0xec369fcc dquot_writeback_dquots +EXPORT_SYMBOL vmlinux 0xec3bf7be __serio_register_port EXPORT_SYMBOL vmlinux 0xec41716a qman_alloc_fqid_range EXPORT_SYMBOL vmlinux 0xec4d9e3a clk_get_sys -EXPORT_SYMBOL vmlinux 0xec721e9a update_region -EXPORT_SYMBOL vmlinux 0xec9d0af6 __sock_queue_rcv_skb -EXPORT_SYMBOL vmlinux 0xecc0b7a9 set_blocksize -EXPORT_SYMBOL vmlinux 0xecd90150 make_kuid -EXPORT_SYMBOL vmlinux 0xecda211f of_graph_parse_endpoint -EXPORT_SYMBOL vmlinux 0xece6cdd4 i2c_verify_client +EXPORT_SYMBOL vmlinux 0xec4e95bc blk_mq_tagset_busy_iter +EXPORT_SYMBOL vmlinux 0xec50ca8b gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0xec54b083 seq_vprintf +EXPORT_SYMBOL vmlinux 0xec781374 mnt_drop_write_file +EXPORT_SYMBOL vmlinux 0xec8db909 bio_clone_fast +EXPORT_SYMBOL vmlinux 0xecb3a141 sock_set_keepalive EXPORT_SYMBOL vmlinux 0xece784c2 rb_first -EXPORT_SYMBOL vmlinux 0xeceb9218 sock_wmalloc -EXPORT_SYMBOL vmlinux 0xecf3f5c5 skb_flow_dissect_hash +EXPORT_SYMBOL vmlinux 0xecf5d7f2 vfs_parse_fs_param EXPORT_SYMBOL vmlinux 0xecfd68ef acpi_get_node -EXPORT_SYMBOL vmlinux 0xecfdb1dc pci_enable_msix_range -EXPORT_SYMBOL vmlinux 0xecfdbca2 pcim_iounmap_regions EXPORT_SYMBOL vmlinux 0xed00c4fb acpi_os_printf -EXPORT_SYMBOL vmlinux 0xed0e0602 d_instantiate -EXPORT_SYMBOL vmlinux 0xed1098fd kmem_cache_size -EXPORT_SYMBOL vmlinux 0xed1dbc88 dm_table_get_size -EXPORT_SYMBOL vmlinux 0xed201df2 ip_ct_attach +EXPORT_SYMBOL vmlinux 0xed215a7d edac_mc_find EXPORT_SYMBOL vmlinux 0xed238617 __put_cred -EXPORT_SYMBOL vmlinux 0xed3a9db5 skb_vlan_push -EXPORT_SYMBOL vmlinux 0xed4ec30c xfrm_user_policy +EXPORT_SYMBOL vmlinux 0xed309234 neigh_resolve_output +EXPORT_SYMBOL vmlinux 0xed4a87c7 textsearch_register EXPORT_SYMBOL vmlinux 0xed5376c5 __printk_wait_on_cpu_lock EXPORT_SYMBOL vmlinux 0xed55f929 acpi_os_unmap_generic_address -EXPORT_SYMBOL vmlinux 0xed5cc74e mmc_add_host +EXPORT_SYMBOL vmlinux 0xed6200c9 d_instantiate_new EXPORT_SYMBOL vmlinux 0xed656e30 udp_encap_disable -EXPORT_SYMBOL vmlinux 0xed7461ba __frontswap_store +EXPORT_SYMBOL vmlinux 0xed6b1988 max8925_reg_read +EXPORT_SYMBOL vmlinux 0xed76eaed cdrom_mode_sense +EXPORT_SYMBOL vmlinux 0xed7dab7d single_release EXPORT_SYMBOL vmlinux 0xed8a2d95 memset64 -EXPORT_SYMBOL vmlinux 0xed8c615d cdrom_dummy_generic_packet -EXPORT_SYMBOL vmlinux 0xed99248a tcp_v4_conn_request -EXPORT_SYMBOL vmlinux 0xeda82308 i2c_add_adapter +EXPORT_SYMBOL vmlinux 0xed8e0575 f_setown +EXPORT_SYMBOL vmlinux 0xed971b1f __cgroup_bpf_run_filter_sk +EXPORT_SYMBOL vmlinux 0xeda3bf76 seg6_push_hmac +EXPORT_SYMBOL vmlinux 0xeda834d0 ipv6_chk_addr +EXPORT_SYMBOL vmlinux 0xedac8863 devfreq_remove_device EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp EXPORT_SYMBOL vmlinux 0xedc03953 iounmap -EXPORT_SYMBOL vmlinux 0xedc18fcf udp_poll -EXPORT_SYMBOL vmlinux 0xee0e4f51 neigh_ifdown -EXPORT_SYMBOL vmlinux 0xee1852b8 sync_filesystem -EXPORT_SYMBOL vmlinux 0xee18d960 pcim_iomap_regions -EXPORT_SYMBOL vmlinux 0xee25d8fb of_find_device_by_node +EXPORT_SYMBOL vmlinux 0xedfaf97d filemap_fdatawait_range +EXPORT_SYMBOL vmlinux 0xee133414 bd_abort_claiming +EXPORT_SYMBOL vmlinux 0xee172c00 block_is_partially_uptodate +EXPORT_SYMBOL vmlinux 0xee1e761c blk_mq_delay_run_hw_queues EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable -EXPORT_SYMBOL vmlinux 0xee3ba563 blk_get_request -EXPORT_SYMBOL vmlinux 0xee444e51 blk_rq_unmap_user -EXPORT_SYMBOL vmlinux 0xee4e25a8 netif_device_detach -EXPORT_SYMBOL vmlinux 0xee55c265 udp_seq_stop +EXPORT_SYMBOL vmlinux 0xee374e18 param_ops_byte +EXPORT_SYMBOL vmlinux 0xee41a115 inet_frag_pull_head +EXPORT_SYMBOL vmlinux 0xee51406c irq_domain_set_info +EXPORT_SYMBOL vmlinux 0xee5314e3 tty_register_driver +EXPORT_SYMBOL vmlinux 0xee589982 mdio_device_free EXPORT_SYMBOL vmlinux 0xee58e970 fb_add_videomode -EXPORT_SYMBOL vmlinux 0xee672b18 input_reset_device -EXPORT_SYMBOL vmlinux 0xee6e2634 show_init_ipc_ns -EXPORT_SYMBOL vmlinux 0xee753d63 ipv6_chk_addr +EXPORT_SYMBOL vmlinux 0xee786b87 ethtool_op_get_ts_info EXPORT_SYMBOL vmlinux 0xee7d7deb gen_pool_dma_zalloc EXPORT_SYMBOL vmlinux 0xee7eb9e1 pnp_platform_devices -EXPORT_SYMBOL vmlinux 0xee8a1bb1 vme_new_dma_list EXPORT_SYMBOL vmlinux 0xee8c02e9 vprintk_emit EXPORT_SYMBOL vmlinux 0xee8d74d6 jiffies64_to_nsecs +EXPORT_SYMBOL vmlinux 0xee902df6 ll_rw_block EXPORT_SYMBOL vmlinux 0xee91879b rb_first_postorder -EXPORT_SYMBOL vmlinux 0xee92acd6 register_netdevice_notifier_dev_net -EXPORT_SYMBOL vmlinux 0xee983f57 dma_async_tx_descriptor_init -EXPORT_SYMBOL vmlinux 0xee996390 xfrm_policy_delete EXPORT_SYMBOL vmlinux 0xeea9dbaf bitmap_bitremap -EXPORT_SYMBOL vmlinux 0xeeb0c467 serio_unregister_driver -EXPORT_SYMBOL vmlinux 0xeec099e9 udp_disconnect -EXPORT_SYMBOL vmlinux 0xeec2e149 tcp_simple_retransmit -EXPORT_SYMBOL vmlinux 0xeed0d110 iproc_msi_exit -EXPORT_SYMBOL vmlinux 0xeed5679c buffer_check_dirty_writeback -EXPORT_SYMBOL vmlinux 0xeedd020b create_empty_buffers +EXPORT_SYMBOL vmlinux 0xeeb14ee0 unregister_nls +EXPORT_SYMBOL vmlinux 0xeeb5b0cf security_sock_graft +EXPORT_SYMBOL vmlinux 0xeecad097 _copy_from_iter_nocache +EXPORT_SYMBOL vmlinux 0xeed8c393 __devm_request_region EXPORT_SYMBOL vmlinux 0xeee75d91 ucc_fast_init -EXPORT_SYMBOL vmlinux 0xef01c9a9 genphy_c37_config_aneg -EXPORT_SYMBOL vmlinux 0xef3e63f2 inet_add_protocol -EXPORT_SYMBOL vmlinux 0xef525485 rpmh_write -EXPORT_SYMBOL vmlinux 0xef88ff0b inode_init_owner +EXPORT_SYMBOL vmlinux 0xeefb8592 of_find_matching_node_and_match +EXPORT_SYMBOL vmlinux 0xef0c92f8 pci_resize_resource +EXPORT_SYMBOL vmlinux 0xef0f6160 of_device_is_compatible +EXPORT_SYMBOL vmlinux 0xef2de0e1 no_seek_end_llseek_size +EXPORT_SYMBOL vmlinux 0xef39519b ethtool_op_get_link +EXPORT_SYMBOL vmlinux 0xef3c4b98 __getblk_gfp +EXPORT_SYMBOL vmlinux 0xef404714 dev_pre_changeaddr_notify +EXPORT_SYMBOL vmlinux 0xef76640b pcie_set_mps EXPORT_SYMBOL vmlinux 0xef8ac53d qcom_scm_restore_sec_cfg -EXPORT_SYMBOL vmlinux 0xef8ece58 imx_scu_enable_general_irq_channel -EXPORT_SYMBOL vmlinux 0xef90ce07 d_instantiate_anon +EXPORT_SYMBOL vmlinux 0xef90ad24 brioctl_set +EXPORT_SYMBOL vmlinux 0xef9c204d bdevname EXPORT_SYMBOL vmlinux 0xefaf2e4f tcf_queue_work -EXPORT_SYMBOL vmlinux 0xefb9831d seq_open -EXPORT_SYMBOL vmlinux 0xefcad74a tcf_generic_walker +EXPORT_SYMBOL vmlinux 0xefb08deb scsi_device_lookup_by_target EXPORT_SYMBOL vmlinux 0xefcea2e7 acpi_warning -EXPORT_SYMBOL vmlinux 0xefe48605 dev_deactivate -EXPORT_SYMBOL vmlinux 0xefe5fa6e fscrypt_has_permitted_context +EXPORT_SYMBOL vmlinux 0xefd64801 blk_queue_physical_block_size +EXPORT_SYMBOL vmlinux 0xefdeed0a super_setup_bdi_name +EXPORT_SYMBOL vmlinux 0xefe35b8f twl6040_get_vibralr_status +EXPORT_SYMBOL vmlinux 0xefe51591 vfs_getattr EXPORT_SYMBOL vmlinux 0xefee932c acpi_get_data_full EXPORT_SYMBOL vmlinux 0xefeefc09 __SCK__tp_func_dma_fence_emit EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list EXPORT_SYMBOL vmlinux 0xf008a885 seg6_hmac_init EXPORT_SYMBOL vmlinux 0xf02aa937 wait_for_completion_interruptible_timeout -EXPORT_SYMBOL vmlinux 0xf030ad83 skb_queue_head -EXPORT_SYMBOL vmlinux 0xf03c78cc pci_read_vpd -EXPORT_SYMBOL vmlinux 0xf05bf00f __brelse -EXPORT_SYMBOL vmlinux 0xf0788a12 ppp_dev_name -EXPORT_SYMBOL vmlinux 0xf098aefb phy_set_max_speed +EXPORT_SYMBOL vmlinux 0xf0381bc5 dma_set_coherent_mask +EXPORT_SYMBOL vmlinux 0xf03bcd1d vfs_fsync +EXPORT_SYMBOL vmlinux 0xf0406d65 inc_zone_page_state +EXPORT_SYMBOL vmlinux 0xf05c5f7d nobh_write_begin +EXPORT_SYMBOL vmlinux 0xf061d609 mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0xf0776b49 pcie_get_speed_cap EXPORT_SYMBOL vmlinux 0xf09b5d9a get_zeroed_page -EXPORT_SYMBOL vmlinux 0xf0a432e6 jbd2_journal_force_commit EXPORT_SYMBOL vmlinux 0xf0a71b1b revert_creds EXPORT_SYMBOL vmlinux 0xf0b2419f cmd_db_read_aux_data -EXPORT_SYMBOL vmlinux 0xf0b64a64 dm_table_get_mode -EXPORT_SYMBOL vmlinux 0xf0d3df1b jbd2_journal_init_dev -EXPORT_SYMBOL vmlinux 0xf0da7943 uart_register_driver -EXPORT_SYMBOL vmlinux 0xf0e364d9 xfrm_state_free +EXPORT_SYMBOL vmlinux 0xf0b47d98 jbd2_journal_init_jbd_inode +EXPORT_SYMBOL vmlinux 0xf0bf727f component_match_add_typed +EXPORT_SYMBOL vmlinux 0xf0ca82cd nf_ip_checksum +EXPORT_SYMBOL vmlinux 0xf0cdc1c6 inet6_bind +EXPORT_SYMBOL vmlinux 0xf0d9241e __skb_checksum_complete_head +EXPORT_SYMBOL vmlinux 0xf0e32ac1 of_n_addr_cells +EXPORT_SYMBOL vmlinux 0xf0e4e425 devm_devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0xf0ff94f8 __nd_driver_register EXPORT_SYMBOL vmlinux 0xf102033e slhc_remember -EXPORT_SYMBOL vmlinux 0xf10ab6ea fb_class EXPORT_SYMBOL vmlinux 0xf11dd46e _page_poisoning_enabled_early -EXPORT_SYMBOL vmlinux 0xf1255d8d __break_lease -EXPORT_SYMBOL vmlinux 0xf13cf0ca kiocb_set_cancel_fn -EXPORT_SYMBOL vmlinux 0xf15ca4e3 filemap_fdatawrite_range -EXPORT_SYMBOL vmlinux 0xf173d21e dev_uc_add_excl EXPORT_SYMBOL vmlinux 0xf18300ad logic_inb -EXPORT_SYMBOL vmlinux 0xf183ac73 blk_rq_count_integrity_sg -EXPORT_SYMBOL vmlinux 0xf1923f4c rproc_coredump_set_elf_info +EXPORT_SYMBOL vmlinux 0xf18e86e5 tty_hung_up_p EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps EXPORT_SYMBOL vmlinux 0xf1969a8e __usecs_to_jiffies -EXPORT_SYMBOL vmlinux 0xf1a45cc6 pci_bus_type -EXPORT_SYMBOL vmlinux 0xf1a751e3 scsi_report_device_reset -EXPORT_SYMBOL vmlinux 0xf1c8f299 inet_pton_with_scope -EXPORT_SYMBOL vmlinux 0xf1d0a52d tcp_sock_set_user_timeout +EXPORT_SYMBOL vmlinux 0xf1a7e76b registered_fb +EXPORT_SYMBOL vmlinux 0xf1c45761 dec_zone_page_state +EXPORT_SYMBOL vmlinux 0xf1d0eef3 tcf_block_put EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy EXPORT_SYMBOL vmlinux 0xf1e046cc panic EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun -EXPORT_SYMBOL vmlinux 0xf1f40746 clk_hw_register_clkdev -EXPORT_SYMBOL vmlinux 0xf2041edb seq_file_path -EXPORT_SYMBOL vmlinux 0xf20c3135 gnet_stats_copy_basic -EXPORT_SYMBOL vmlinux 0xf20d0ece scsi_device_quiesce -EXPORT_SYMBOL vmlinux 0xf20f43b2 validate_slab_cache -EXPORT_SYMBOL vmlinux 0xf20fc5f0 jbd2_fc_begin_commit -EXPORT_SYMBOL vmlinux 0xf216985a ip6_xmit -EXPORT_SYMBOL vmlinux 0xf21c19fb _copy_from_iter -EXPORT_SYMBOL vmlinux 0xf231a4c8 bio_devname +EXPORT_SYMBOL vmlinux 0xf206e847 iov_iter_get_pages_alloc +EXPORT_SYMBOL vmlinux 0xf21474a1 dev_set_threaded +EXPORT_SYMBOL vmlinux 0xf22ebaa0 i2c_smbus_write_byte_data EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in -EXPORT_SYMBOL vmlinux 0xf2461954 uart_update_timeout -EXPORT_SYMBOL vmlinux 0xf252c9f9 pci_iomap -EXPORT_SYMBOL vmlinux 0xf25da1f1 __serio_register_driver +EXPORT_SYMBOL vmlinux 0xf25399e5 skb_append +EXPORT_SYMBOL vmlinux 0xf25a8435 register_framebuffer +EXPORT_SYMBOL vmlinux 0xf25b2b5f tcf_idr_release EXPORT_SYMBOL vmlinux 0xf2669a2c imx_scu_irq_register_notifier -EXPORT_SYMBOL vmlinux 0xf28098a2 dev_uc_add +EXPORT_SYMBOL vmlinux 0xf273aee4 dev_uc_unsync +EXPORT_SYMBOL vmlinux 0xf2794d3a phy_ethtool_nway_reset +EXPORT_SYMBOL vmlinux 0xf27a285d of_phy_connect EXPORT_SYMBOL vmlinux 0xf28404cf devlink_dpipe_header_ipv6 EXPORT_SYMBOL vmlinux 0xf28cf0ae __hw_addr_init -EXPORT_SYMBOL vmlinux 0xf28e073f dev_get_port_parent_id EXPORT_SYMBOL vmlinux 0xf29403e5 acpi_install_table_handler -EXPORT_SYMBOL vmlinux 0xf29949a6 __skb_get_hash +EXPORT_SYMBOL vmlinux 0xf29e2e4c unload_nls EXPORT_SYMBOL vmlinux 0xf29f8515 __kfifo_dma_out_prepare_r -EXPORT_SYMBOL vmlinux 0xf2a1eeaf max8925_bulk_read -EXPORT_SYMBOL vmlinux 0xf2aa394f fifo_create_dflt -EXPORT_SYMBOL vmlinux 0xf2b1bc3a genphy_read_status +EXPORT_SYMBOL vmlinux 0xf2a4d9d9 tcf_action_check_ctrlact +EXPORT_SYMBOL vmlinux 0xf2b1f5a0 phy_attach_direct EXPORT_SYMBOL vmlinux 0xf2c43f3f zlib_deflate -EXPORT_SYMBOL vmlinux 0xf2c62201 make_kgid -EXPORT_SYMBOL vmlinux 0xf2e502cb dma_map_resource +EXPORT_SYMBOL vmlinux 0xf2d54f43 kobject_add EXPORT_SYMBOL vmlinux 0xf2e5bd87 security_free_mnt_opts -EXPORT_SYMBOL vmlinux 0xf2ec8732 pci_release_region +EXPORT_SYMBOL vmlinux 0xf2f0bc91 __brelse +EXPORT_SYMBOL vmlinux 0xf2f11ccf block_commit_write EXPORT_SYMBOL vmlinux 0xf2f53617 memregion_free -EXPORT_SYMBOL vmlinux 0xf2f63874 tcp_v4_connect +EXPORT_SYMBOL vmlinux 0xf30e82dc netlink_unicast +EXPORT_SYMBOL vmlinux 0xf3103251 nf_register_sockopt EXPORT_SYMBOL vmlinux 0xf3107926 sha224_update -EXPORT_SYMBOL vmlinux 0xf316937b blk_rq_map_kern -EXPORT_SYMBOL vmlinux 0xf31c40b8 page_pool_destroy -EXPORT_SYMBOL vmlinux 0xf3215403 mdiobus_is_registered_device +EXPORT_SYMBOL vmlinux 0xf313cfac flow_rule_match_enc_ports +EXPORT_SYMBOL vmlinux 0xf3155010 input_mt_report_finger_count EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head -EXPORT_SYMBOL vmlinux 0xf34aba3d scsi_host_put EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier -EXPORT_SYMBOL vmlinux 0xf3712f47 phy_ethtool_get_strings -EXPORT_SYMBOL vmlinux 0xf3875d64 lock_sock_nested +EXPORT_SYMBOL vmlinux 0xf36830bd simple_dir_operations +EXPORT_SYMBOL vmlinux 0xf379bd8a backlight_force_update EXPORT_SYMBOL vmlinux 0xf3916987 global_cursor_default EXPORT_SYMBOL vmlinux 0xf3a57892 release_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0xf3ac9520 netif_tx_stop_all_queues +EXPORT_SYMBOL vmlinux 0xf3b11e0f write_cache_pages EXPORT_SYMBOL vmlinux 0xf3b30a06 utf8version_latest -EXPORT_SYMBOL vmlinux 0xf3c87039 mntget -EXPORT_SYMBOL vmlinux 0xf3ddb609 dev_get_phys_port_name +EXPORT_SYMBOL vmlinux 0xf3c947c8 pci_unmap_rom +EXPORT_SYMBOL vmlinux 0xf3ceffa2 file_check_and_advance_wb_err EXPORT_SYMBOL vmlinux 0xf3e0e1df allocate_resource -EXPORT_SYMBOL vmlinux 0xf3e53c2f sock_release +EXPORT_SYMBOL vmlinux 0xf3e181c2 dma_sync_sg_for_cpu +EXPORT_SYMBOL vmlinux 0xf3e6190e inode_permission EXPORT_SYMBOL vmlinux 0xf3e6402e __bitmap_equal +EXPORT_SYMBOL vmlinux 0xf3f3b1a2 of_match_device EXPORT_SYMBOL vmlinux 0xf3fc8a70 ns_capable_noaudit -EXPORT_SYMBOL vmlinux 0xf4003973 gnet_stats_copy_rate_est -EXPORT_SYMBOL vmlinux 0xf405a65d vfs_get_link -EXPORT_SYMBOL vmlinux 0xf419586a sock_kzfree_s -EXPORT_SYMBOL vmlinux 0xf42779d4 alloc_fddidev +EXPORT_SYMBOL vmlinux 0xf42aef87 _dev_printk +EXPORT_SYMBOL vmlinux 0xf438578f unregister_binfmt EXPORT_SYMBOL vmlinux 0xf43d2caa acpi_remove_interface EXPORT_SYMBOL vmlinux 0xf44a904a net_ns_barrier -EXPORT_SYMBOL vmlinux 0xf459b4f5 pps_unregister_source -EXPORT_SYMBOL vmlinux 0xf472d795 udp_flush_pending_frames +EXPORT_SYMBOL vmlinux 0xf44a9c2f sk_free +EXPORT_SYMBOL vmlinux 0xf44c5065 pci_match_id EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const -EXPORT_SYMBOL vmlinux 0xf47643b8 scsi_get_host_dev +EXPORT_SYMBOL vmlinux 0xf4906d3d phy_loopback +EXPORT_SYMBOL vmlinux 0xf4997885 uart_get_baud_rate +EXPORT_SYMBOL vmlinux 0xf49ec687 devm_pci_alloc_host_bridge +EXPORT_SYMBOL vmlinux 0xf4b0f6ba eth_get_headlen EXPORT_SYMBOL vmlinux 0xf4b754fd acpi_resources_are_enforced +EXPORT_SYMBOL vmlinux 0xf4ba6121 netdev_bind_sb_channel_queue EXPORT_SYMBOL vmlinux 0xf4bdbeb9 __frontswap_invalidate_area -EXPORT_SYMBOL vmlinux 0xf4cf27ea cdrom_release EXPORT_SYMBOL vmlinux 0xf4db35bc stpcpy -EXPORT_SYMBOL vmlinux 0xf4e3b7d7 dev_pre_changeaddr_notify -EXPORT_SYMBOL vmlinux 0xf4e8bcea generic_copy_file_range -EXPORT_SYMBOL vmlinux 0xf4e92256 phy_ethtool_nway_reset +EXPORT_SYMBOL vmlinux 0xf4df660d devm_nvmem_cell_put EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock -EXPORT_SYMBOL vmlinux 0xf4fac5b7 pci_resize_resource -EXPORT_SYMBOL vmlinux 0xf5366b75 xsk_get_pool_from_qid +EXPORT_SYMBOL vmlinux 0xf5057ed6 path_is_mountpoint +EXPORT_SYMBOL vmlinux 0xf5173ba4 netdev_get_xmit_slave +EXPORT_SYMBOL vmlinux 0xf51de9e8 dm_table_get_size +EXPORT_SYMBOL vmlinux 0xf525915d unregister_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0xf52f301c netpoll_poll_dev +EXPORT_SYMBOL vmlinux 0xf533fbd6 unregister_framebuffer +EXPORT_SYMBOL vmlinux 0xf53becb3 md_error EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy -EXPORT_SYMBOL vmlinux 0xf5479ef7 netlink_broadcast -EXPORT_SYMBOL vmlinux 0xf5534186 mipi_dsi_dcs_read -EXPORT_SYMBOL vmlinux 0xf558dac7 seq_open_private -EXPORT_SYMBOL vmlinux 0xf559c5f0 pci_unregister_driver -EXPORT_SYMBOL vmlinux 0xf55c7c23 __pci_register_driver -EXPORT_SYMBOL vmlinux 0xf55fcba6 md_reload_sb -EXPORT_SYMBOL vmlinux 0xf561f34a xfrm_replay_seqhi -EXPORT_SYMBOL vmlinux 0xf56b40c3 rproc_del -EXPORT_SYMBOL vmlinux 0xf56edd87 bmap -EXPORT_SYMBOL vmlinux 0xf5798da1 user_revoke -EXPORT_SYMBOL vmlinux 0xf58cb477 sock_diag_put_filterinfo +EXPORT_SYMBOL vmlinux 0xf53d8d33 sget +EXPORT_SYMBOL vmlinux 0xf53ef12c set_nlink +EXPORT_SYMBOL vmlinux 0xf54181b6 fb_find_mode +EXPORT_SYMBOL vmlinux 0xf547bb97 tcp_mtu_to_mss +EXPORT_SYMBOL vmlinux 0xf547ef73 tcp_sock_set_user_timeout +EXPORT_SYMBOL vmlinux 0xf547f0fc generic_set_encrypted_ci_d_ops +EXPORT_SYMBOL vmlinux 0xf54f3037 call_fib_notifiers +EXPORT_SYMBOL vmlinux 0xf583e207 ip_options_compile EXPORT_SYMBOL vmlinux 0xf591753d nf_hooks_needed -EXPORT_SYMBOL vmlinux 0xf5925e8d alloc_pages +EXPORT_SYMBOL vmlinux 0xf59ce344 vfs_tmpfile EXPORT_SYMBOL vmlinux 0xf5a20ed2 __genradix_prealloc -EXPORT_SYMBOL vmlinux 0xf5a21629 set_page_dirty +EXPORT_SYMBOL vmlinux 0xf5a919bb inet6_release EXPORT_SYMBOL vmlinux 0xf5add0ae ns_capable_setid -EXPORT_SYMBOL vmlinux 0xf5b5378b i2c_smbus_read_block_data -EXPORT_SYMBOL vmlinux 0xf5e49649 rproc_resource_cleanup +EXPORT_SYMBOL vmlinux 0xf5b07c21 pci_scan_root_bus_bridge +EXPORT_SYMBOL vmlinux 0xf5b7896d input_set_abs_params +EXPORT_SYMBOL vmlinux 0xf5bad986 thermal_cdev_update +EXPORT_SYMBOL vmlinux 0xf5c517d8 iommu_get_msi_cookie +EXPORT_SYMBOL vmlinux 0xf5d31df1 vme_bus_num +EXPORT_SYMBOL vmlinux 0xf5db4437 blk_mq_delay_run_hw_queue +EXPORT_SYMBOL vmlinux 0xf5ded684 inet_select_addr +EXPORT_SYMBOL vmlinux 0xf5e0e3fc iov_iter_pipe +EXPORT_SYMBOL vmlinux 0xf5e38869 pci_set_mwi EXPORT_SYMBOL vmlinux 0xf5e7ea40 ktime_get_coarse_ts64 -EXPORT_SYMBOL vmlinux 0xf5f34c7c xfrm_state_lookup -EXPORT_SYMBOL vmlinux 0xf60e8697 prepare_kernel_cred -EXPORT_SYMBOL vmlinux 0xf62b160c sock_set_keepalive +EXPORT_SYMBOL vmlinux 0xf5f1f744 rtnl_unicast +EXPORT_SYMBOL vmlinux 0xf60fd2dc page_mapped +EXPORT_SYMBOL vmlinux 0xf61908a3 sdev_disable_disk_events +EXPORT_SYMBOL vmlinux 0xf624f80e pci_get_subsys EXPORT_SYMBOL vmlinux 0xf62c39fe ucc_slow_graceful_stop_tx -EXPORT_SYMBOL vmlinux 0xf63b76a2 simple_rename +EXPORT_SYMBOL vmlinux 0xf63180a1 dquot_quotactl_sysfile_ops +EXPORT_SYMBOL vmlinux 0xf633c196 mmc_can_gpio_ro +EXPORT_SYMBOL vmlinux 0xf63c7184 pci_enable_wake +EXPORT_SYMBOL vmlinux 0xf63e8d2c fscrypt_decrypt_pagecache_blocks EXPORT_SYMBOL vmlinux 0xf643d104 hsiphash_4u32 +EXPORT_SYMBOL vmlinux 0xf64d0275 ps2_handle_response +EXPORT_SYMBOL vmlinux 0xf652231d xfrm_input_resume +EXPORT_SYMBOL vmlinux 0xf662f74f input_grab_device EXPORT_SYMBOL vmlinux 0xf665f74f sock_load_diag_module -EXPORT_SYMBOL vmlinux 0xf6724b54 ip_fraglist_prepare +EXPORT_SYMBOL vmlinux 0xf66a6939 gnet_stats_start_copy +EXPORT_SYMBOL vmlinux 0xf67c044f arp_tbl EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier -EXPORT_SYMBOL vmlinux 0xf68ac8c8 pcix_get_mmrbc -EXPORT_SYMBOL vmlinux 0xf68c4edb skb_tunnel_check_pmtu -EXPORT_SYMBOL vmlinux 0xf698a7cc seq_write -EXPORT_SYMBOL vmlinux 0xf6ab092d migrate_page -EXPORT_SYMBOL vmlinux 0xf6e956fe dcb_getapp +EXPORT_SYMBOL vmlinux 0xf68eb150 phy_ethtool_get_strings +EXPORT_SYMBOL vmlinux 0xf6a33b7d netif_set_real_num_rx_queues +EXPORT_SYMBOL vmlinux 0xf6b71c5d phy_set_sym_pause +EXPORT_SYMBOL vmlinux 0xf6c0ad73 generic_ro_fops +EXPORT_SYMBOL vmlinux 0xf6c1777e migrate_page +EXPORT_SYMBOL vmlinux 0xf6d22efd netif_receive_skb_core +EXPORT_SYMBOL vmlinux 0xf6e0a7a9 fb_validate_mode +EXPORT_SYMBOL vmlinux 0xf6e5f957 tty_unregister_driver +EXPORT_SYMBOL vmlinux 0xf6e80e5d writeback_inodes_sb_nr EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit EXPORT_SYMBOL vmlinux 0xf6f9d58d init_on_free EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor -EXPORT_SYMBOL vmlinux 0xf70c4f65 inet_csk_prepare_forced_close -EXPORT_SYMBOL vmlinux 0xf70e67c2 mdio_find_bus -EXPORT_SYMBOL vmlinux 0xf71ff31e inet_csk_init_xmit_timers -EXPORT_SYMBOL vmlinux 0xf72d3990 inode_set_bytes +EXPORT_SYMBOL vmlinux 0xf7042ffc phy_attached_info +EXPORT_SYMBOL vmlinux 0xf706cc99 netdev_set_sb_channel EXPORT_SYMBOL vmlinux 0xf738d1be register_blocking_lsm_notifier -EXPORT_SYMBOL vmlinux 0xf743bd6f sock_create_lite -EXPORT_SYMBOL vmlinux 0xf74fb149 clkdev_add -EXPORT_SYMBOL vmlinux 0xf7602573 page_get_link -EXPORT_SYMBOL vmlinux 0xf762badb pci_back_from_sleep +EXPORT_SYMBOL vmlinux 0xf73f782b param_ops_ullong +EXPORT_SYMBOL vmlinux 0xf74bdad3 mdiobus_unregister_device EXPORT_SYMBOL vmlinux 0xf76843b5 qcom_scm_pas_supported -EXPORT_SYMBOL vmlinux 0xf7706ac1 fb_get_buffer_offset +EXPORT_SYMBOL vmlinux 0xf76cb263 skb_flow_get_icmp_tci EXPORT_SYMBOL vmlinux 0xf77337a1 hdmi_audio_infoframe_check -EXPORT_SYMBOL vmlinux 0xf7741bd8 __sk_mem_reclaim EXPORT_SYMBOL vmlinux 0xf77555cd __memcpy_toio -EXPORT_SYMBOL vmlinux 0xf77d7865 iget_locked -EXPORT_SYMBOL vmlinux 0xf78bf3a0 xfrm6_protocol_register -EXPORT_SYMBOL vmlinux 0xf7b1c30a phy_ethtool_set_link_ksettings -EXPORT_SYMBOL vmlinux 0xf7b4c04b netdev_change_features +EXPORT_SYMBOL vmlinux 0xf775e313 eth_header_cache_update +EXPORT_SYMBOL vmlinux 0xf78345b3 pnp_is_active +EXPORT_SYMBOL vmlinux 0xf785315d tty_hangup +EXPORT_SYMBOL vmlinux 0xf78cda00 fman_set_mac_active_pause +EXPORT_SYMBOL vmlinux 0xf7b8bd79 pci_read_config_byte EXPORT_SYMBOL vmlinux 0xf7c48778 __tracepoint_kmalloc_node -EXPORT_SYMBOL vmlinux 0xf7c4e6f0 netdev_name_node_alt_create -EXPORT_SYMBOL vmlinux 0xf7cb81f9 tcf_action_exec EXPORT_SYMBOL vmlinux 0xf7d31de9 kstrtoul_from_user -EXPORT_SYMBOL vmlinux 0xf7d7d412 PDE_DATA EXPORT_SYMBOL vmlinux 0xf7da6e6f acpi_unload_table +EXPORT_SYMBOL vmlinux 0xf7dc39c1 blk_dump_rq_flags EXPORT_SYMBOL vmlinux 0xf7ea6311 qman_p_poll_dqrr EXPORT_SYMBOL vmlinux 0xf7f05c17 fman_port_use_kg_hash -EXPORT_SYMBOL vmlinux 0xf7f504f2 tcp_filter +EXPORT_SYMBOL vmlinux 0xf7f4995f dump_emit +EXPORT_SYMBOL vmlinux 0xf7f71ae7 ps2_drain EXPORT_SYMBOL vmlinux 0xf811e69d scsi_eh_flush_done_q EXPORT_SYMBOL vmlinux 0xf812cff6 memscan EXPORT_SYMBOL vmlinux 0xf82abc1d isa_dma_bridge_buggy EXPORT_SYMBOL vmlinux 0xf82ec573 rb_prev EXPORT_SYMBOL vmlinux 0xf84bd6ee bpf_stats_enabled_key -EXPORT_SYMBOL vmlinux 0xf85a828e devfreq_update_target -EXPORT_SYMBOL vmlinux 0xf8655714 truncate_pagecache_range -EXPORT_SYMBOL vmlinux 0xf8660aab ethtool_op_get_link +EXPORT_SYMBOL vmlinux 0xf852e82f __mdiobus_write +EXPORT_SYMBOL vmlinux 0xf8530635 scsi_scan_host EXPORT_SYMBOL vmlinux 0xf866b00c tegra_io_pad_power_enable -EXPORT_SYMBOL vmlinux 0xf8744ed0 fscrypt_decrypt_pagecache_blocks -EXPORT_SYMBOL vmlinux 0xf876ae7a security_socket_getpeersec_dgram -EXPORT_SYMBOL vmlinux 0xf8832675 blk_mq_init_allocated_queue +EXPORT_SYMBOL vmlinux 0xf8671067 tcp_sendpage +EXPORT_SYMBOL vmlinux 0xf8692b09 genlmsg_multicast_allns +EXPORT_SYMBOL vmlinux 0xf86a9bfa dev_change_flags EXPORT_SYMBOL vmlinux 0xf888ca21 sg_init_table -EXPORT_SYMBOL vmlinux 0xf890501d filemap_fdatawait_range_keep_errors -EXPORT_SYMBOL vmlinux 0xf89893f8 get_task_cred -EXPORT_SYMBOL vmlinux 0xf8a226b2 scsi_unblock_requests -EXPORT_SYMBOL vmlinux 0xf8a8e37b ata_link_printk -EXPORT_SYMBOL vmlinux 0xf8aa0620 d_alloc_name +EXPORT_SYMBOL vmlinux 0xf89a92be arp_send +EXPORT_SYMBOL vmlinux 0xf89f5170 dma_supported +EXPORT_SYMBOL vmlinux 0xf8a21e20 of_get_cpu_node EXPORT_SYMBOL vmlinux 0xf8b05467 __nla_reserve EXPORT_SYMBOL vmlinux 0xf8bf8e22 ZSTD_DDictWorkspaceBound -EXPORT_SYMBOL vmlinux 0xf8cd5589 vmf_insert_mixed EXPORT_SYMBOL vmlinux 0xf8d07858 bitmap_from_arr32 EXPORT_SYMBOL vmlinux 0xf8f61ebc wake_up_var +EXPORT_SYMBOL vmlinux 0xf90aa009 mfd_cell_enable EXPORT_SYMBOL vmlinux 0xf91b89ab fman_sp_build_buffer_struct -EXPORT_SYMBOL vmlinux 0xf93018eb input_unregister_handle EXPORT_SYMBOL vmlinux 0xf93aae46 __arm_smccc_smc EXPORT_SYMBOL vmlinux 0xf93fd09c fb_find_mode_cvt -EXPORT_SYMBOL vmlinux 0xf94228b1 ip_mc_check_igmp +EXPORT_SYMBOL vmlinux 0xf940f997 tc_setup_cb_call EXPORT_SYMBOL vmlinux 0xf95c619b acpi_processor_preregister_performance -EXPORT_SYMBOL vmlinux 0xf961d9a7 security_task_getsecid_obj -EXPORT_SYMBOL vmlinux 0xf9639583 of_graph_get_endpoint_by_regs -EXPORT_SYMBOL vmlinux 0xf963c890 neigh_table_clear -EXPORT_SYMBOL vmlinux 0xf964ed4b pcim_iomap -EXPORT_SYMBOL vmlinux 0xf96b0b6a ip_generic_getfrag -EXPORT_SYMBOL vmlinux 0xf96f1458 pci_set_master +EXPORT_SYMBOL vmlinux 0xf96a928b xfrm_sad_getinfo +EXPORT_SYMBOL vmlinux 0xf96d4166 udp_lib_get_port EXPORT_SYMBOL vmlinux 0xf971cea8 utf8len EXPORT_SYMBOL vmlinux 0xf9722676 twl_i2c_write -EXPORT_SYMBOL vmlinux 0xf9900548 pcibios_bus_to_resource -EXPORT_SYMBOL vmlinux 0xf996c29f generic_remap_file_range_prep +EXPORT_SYMBOL vmlinux 0xf97a8a55 mmc_is_req_done +EXPORT_SYMBOL vmlinux 0xf97afc81 add_to_pipe +EXPORT_SYMBOL vmlinux 0xf97ce0f6 xfrm_policy_destroy +EXPORT_SYMBOL vmlinux 0xf9909e16 pci_scan_slot +EXPORT_SYMBOL vmlinux 0xf998a253 netdev_refcnt_read +EXPORT_SYMBOL vmlinux 0xf9a2288e truncate_pagecache_range EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep -EXPORT_SYMBOL vmlinux 0xf9af34cf block_truncate_page +EXPORT_SYMBOL vmlinux 0xf9bad50b __dquot_free_space EXPORT_SYMBOL vmlinux 0xf9c0b663 strlcat EXPORT_SYMBOL vmlinux 0xf9ca2eb4 kstrtoint_from_user -EXPORT_SYMBOL vmlinux 0xf9d1fa0f of_parse_phandle_with_args -EXPORT_SYMBOL vmlinux 0xf9f32709 audit_log +EXPORT_SYMBOL vmlinux 0xf9ca7ea6 is_acpi_device_node +EXPORT_SYMBOL vmlinux 0xf9d9ada6 i2c_put_adapter EXPORT_SYMBOL vmlinux 0xf9f3696e __cpuhp_setup_state_cpuslocked -EXPORT_SYMBOL vmlinux 0xf9f377ca copy_highpage +EXPORT_SYMBOL vmlinux 0xf9fe4a42 audit_log_start EXPORT_SYMBOL vmlinux 0xfa08c34a page_offline_end +EXPORT_SYMBOL vmlinux 0xfa192279 amba_device_unregister +EXPORT_SYMBOL vmlinux 0xfa19c18d sk_stream_error EXPORT_SYMBOL vmlinux 0xfa297415 acpi_map_pxm_to_node EXPORT_SYMBOL vmlinux 0xfa2e5f32 i2c_smbus_pec EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier -EXPORT_SYMBOL vmlinux 0xfa7811d3 sget -EXPORT_SYMBOL vmlinux 0xfa80693d msm_pinctrl_probe +EXPORT_SYMBOL vmlinux 0xfa652ffc i2c_smbus_read_i2c_block_data_or_emulated +EXPORT_SYMBOL vmlinux 0xfa826ef6 jbd2_transaction_committed EXPORT_SYMBOL vmlinux 0xfa873ad0 prandom_seed -EXPORT_SYMBOL vmlinux 0xfa8d1551 mmc_card_is_blockaddr -EXPORT_SYMBOL vmlinux 0xfa9a6860 dm_kcopyd_copy EXPORT_SYMBOL vmlinux 0xfaaa12d0 _page_poisoning_enabled +EXPORT_SYMBOL vmlinux 0xfaafd03a devm_extcon_unregister_notifier EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max -EXPORT_SYMBOL vmlinux 0xfae449d4 mmc_set_data_timeout -EXPORT_SYMBOL vmlinux 0xfaf76f52 mmc_alloc_host -EXPORT_SYMBOL vmlinux 0xfb221c54 ilookup5_nowait -EXPORT_SYMBOL vmlinux 0xfb24977d skb_eth_push +EXPORT_SYMBOL vmlinux 0xfacc431c bio_init +EXPORT_SYMBOL vmlinux 0xfadcb2c2 ps2_init +EXPORT_SYMBOL vmlinux 0xfaf62c96 simple_rmdir +EXPORT_SYMBOL vmlinux 0xfaf791db netdev_reset_tc +EXPORT_SYMBOL vmlinux 0xfafaa500 remove_proc_entry +EXPORT_SYMBOL vmlinux 0xfb07fc59 register_filesystem +EXPORT_SYMBOL vmlinux 0xfb0826d1 free_netdev +EXPORT_SYMBOL vmlinux 0xfb082e66 sg_alloc_table_from_pages_segment +EXPORT_SYMBOL vmlinux 0xfb11475a sk_ns_capable +EXPORT_SYMBOL vmlinux 0xfb14bc07 linkwatch_fire_event +EXPORT_SYMBOL vmlinux 0xfb20f23e sock_set_rcvbuf +EXPORT_SYMBOL vmlinux 0xfb228ad4 pci_bus_alloc_resource +EXPORT_SYMBOL vmlinux 0xfb29f652 devm_request_resource +EXPORT_SYMBOL vmlinux 0xfb2c3376 netpoll_poll_disable +EXPORT_SYMBOL vmlinux 0xfb348fea fault_in_safe_writeable EXPORT_SYMBOL vmlinux 0xfb384d37 kasprintf -EXPORT_SYMBOL vmlinux 0xfb39fd0d generic_writepages -EXPORT_SYMBOL vmlinux 0xfb5d8ea3 phy_start_aneg -EXPORT_SYMBOL vmlinux 0xfb5e719d _dev_warn +EXPORT_SYMBOL vmlinux 0xfb40ebfb misc_deregister EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending -EXPORT_SYMBOL vmlinux 0xfb6f0d16 blk_sync_queue -EXPORT_SYMBOL vmlinux 0xfb773e06 elevator_alloc -EXPORT_SYMBOL vmlinux 0xfb8a1f55 inet_stream_connect -EXPORT_SYMBOL vmlinux 0xfb9efc0b empty_aops +EXPORT_SYMBOL vmlinux 0xfb809582 fscrypt_ioctl_set_policy +EXPORT_SYMBOL vmlinux 0xfb8e3293 inet_bind +EXPORT_SYMBOL vmlinux 0xfb8f5887 bioset_exit EXPORT_SYMBOL vmlinux 0xfba7ddd2 match_u64 EXPORT_SYMBOL vmlinux 0xfbaaf01e console_lock +EXPORT_SYMBOL vmlinux 0xfbab4792 blk_execute_rq EXPORT_SYMBOL vmlinux 0xfbad3cf0 scsi_normalize_sense EXPORT_SYMBOL vmlinux 0xfbb8a761 strscpy_pad +EXPORT_SYMBOL vmlinux 0xfbc1a2bc __inc_node_page_state EXPORT_SYMBOL vmlinux 0xfbc4f89e io_schedule_timeout +EXPORT_SYMBOL vmlinux 0xfbe41997 blk_queue_dma_alignment EXPORT_SYMBOL vmlinux 0xfbe4b175 qman_create_cgr +EXPORT_SYMBOL vmlinux 0xfbe74a31 key_invalidate EXPORT_SYMBOL vmlinux 0xfbe8ee28 acpi_get_table_by_index -EXPORT_SYMBOL vmlinux 0xfbef9b1a blk_queue_alignment_offset -EXPORT_SYMBOL vmlinux 0xfbf06953 fs_context_for_submount -EXPORT_SYMBOL vmlinux 0xfbf8b8ab bioset_exit -EXPORT_SYMBOL vmlinux 0xfc05eb6b nf_register_net_hook -EXPORT_SYMBOL vmlinux 0xfc1c811e amba_request_regions +EXPORT_SYMBOL vmlinux 0xfc0b1375 kmem_cache_create EXPORT_SYMBOL vmlinux 0xfc336d2e __wake_up_bit +EXPORT_SYMBOL vmlinux 0xfc38f535 dev_add_pack EXPORT_SYMBOL vmlinux 0xfc399557 utf8_load EXPORT_SYMBOL vmlinux 0xfc4152fc ec_read +EXPORT_SYMBOL vmlinux 0xfc461c31 param_ops_bint +EXPORT_SYMBOL vmlinux 0xfc4df450 tcf_em_register EXPORT_SYMBOL vmlinux 0xfc52abc7 qcom_scm_pas_shutdown -EXPORT_SYMBOL vmlinux 0xfc5cdb0b sdev_enable_disk_events -EXPORT_SYMBOL vmlinux 0xfc6dfca5 is_nd_dax -EXPORT_SYMBOL vmlinux 0xfc7b6e74 init_pseudo -EXPORT_SYMBOL vmlinux 0xfc847687 input_get_timestamp +EXPORT_SYMBOL vmlinux 0xfc57167a vfs_mknod +EXPORT_SYMBOL vmlinux 0xfc68ebe9 inet_offloads EXPORT_SYMBOL vmlinux 0xfc881b89 fman_port_get_hash_result_offset -EXPORT_SYMBOL vmlinux 0xfc8c65c7 pskb_expand_head -EXPORT_SYMBOL vmlinux 0xfc97a3ff dev_lstats_read +EXPORT_SYMBOL vmlinux 0xfc973d53 mr_mfc_seq_next +EXPORT_SYMBOL vmlinux 0xfc9d1040 of_phy_is_fixed_link EXPORT_SYMBOL vmlinux 0xfc9ed8c3 qcom_scm_ice_available -EXPORT_SYMBOL vmlinux 0xfccb7b57 param_ops_charp -EXPORT_SYMBOL vmlinux 0xfccdbd80 pm_vt_switch_required +EXPORT_SYMBOL vmlinux 0xfca81182 qdisc_hash_del +EXPORT_SYMBOL vmlinux 0xfcb18982 key_unlink +EXPORT_SYMBOL vmlinux 0xfcbf5eed backlight_device_unregister +EXPORT_SYMBOL vmlinux 0xfcbf7bd3 serio_interrupt EXPORT_SYMBOL vmlinux 0xfcce2f7d ucc_fast_enable EXPORT_SYMBOL vmlinux 0xfcd1819a hdmi_spd_infoframe_check -EXPORT_SYMBOL vmlinux 0xfcdf8e6e write_cache_pages -EXPORT_SYMBOL vmlinux 0xfce9edf9 dev_addr_init EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq -EXPORT_SYMBOL vmlinux 0xfd008859 dma_sync_single_for_device -EXPORT_SYMBOL vmlinux 0xfd15aad7 seg6_hmac_info_add -EXPORT_SYMBOL vmlinux 0xfd1ef39d tcp_parse_options -EXPORT_SYMBOL vmlinux 0xfd3eddad jbd2_journal_finish_inode_data_buffers -EXPORT_SYMBOL vmlinux 0xfd6387cd scsi_block_when_processing_errors +EXPORT_SYMBOL vmlinux 0xfcef4ab6 simple_recursive_removal +EXPORT_SYMBOL vmlinux 0xfd0e57a7 tty_port_alloc_xmit_buf +EXPORT_SYMBOL vmlinux 0xfd18bb2f vlan_vid_del +EXPORT_SYMBOL vmlinux 0xfd1d4769 ethtool_rx_flow_rule_create +EXPORT_SYMBOL vmlinux 0xfd1eb9c4 do_splice_direct +EXPORT_SYMBOL vmlinux 0xfd255e8f param_get_ushort +EXPORT_SYMBOL vmlinux 0xfd2d536b clkdev_drop +EXPORT_SYMBOL vmlinux 0xfd3255db skb_page_frag_refill +EXPORT_SYMBOL vmlinux 0xfd426c3c scsi_device_quiesce +EXPORT_SYMBOL vmlinux 0xfd585663 phy_ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0xfd59b434 user_revoke +EXPORT_SYMBOL vmlinux 0xfd76a23a tcp_v4_send_check +EXPORT_SYMBOL vmlinux 0xfd865eae km_policy_expired EXPORT_SYMBOL vmlinux 0xfda9581f prandom_u32 +EXPORT_SYMBOL vmlinux 0xfdaac02c pin_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0xfdb63e61 amba_release_regions +EXPORT_SYMBOL vmlinux 0xfdc704b2 pci_disable_msi +EXPORT_SYMBOL vmlinux 0xfdcaad92 qdisc_offload_graft_helper EXPORT_SYMBOL vmlinux 0xfdcb4ed3 acpi_os_get_line -EXPORT_SYMBOL vmlinux 0xfdcc427e simple_symlink_inode_operations EXPORT_SYMBOL vmlinux 0xfdcc8a0e fb_find_best_display -EXPORT_SYMBOL vmlinux 0xfdcd3a85 mipi_dsi_dcs_soft_reset -EXPORT_SYMBOL vmlinux 0xfdd9a9c1 dquot_commit -EXPORT_SYMBOL vmlinux 0xfddec5de sock_init_data -EXPORT_SYMBOL vmlinux 0xfdf3c560 flow_rule_match_vlan +EXPORT_SYMBOL vmlinux 0xfdfc6ea5 dev_close +EXPORT_SYMBOL vmlinux 0xfe00378f param_get_uint EXPORT_SYMBOL vmlinux 0xfe029963 unregister_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xfe1471f6 eth_validate_addr EXPORT_SYMBOL vmlinux 0xfe1d2e94 key_create_or_update -EXPORT_SYMBOL vmlinux 0xfe21fcbf ip_frag_init -EXPORT_SYMBOL vmlinux 0xfe4108e4 truncate_inode_pages +EXPORT_SYMBOL vmlinux 0xfe2162b0 get_tree_single +EXPORT_SYMBOL vmlinux 0xfe2bb80a xfrm_replay_seqhi +EXPORT_SYMBOL vmlinux 0xfe475f30 __xfrm_dst_lookup EXPORT_SYMBOL vmlinux 0xfe487975 init_wait_entry -EXPORT_SYMBOL vmlinux 0xfe4cc7b8 __skb_wait_for_more_packets -EXPORT_SYMBOL vmlinux 0xfe4f704b lock_rename +EXPORT_SYMBOL vmlinux 0xfe5806ae sock_common_recvmsg +EXPORT_SYMBOL vmlinux 0xfe591ae6 mmc_command_done EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz -EXPORT_SYMBOL vmlinux 0xfe62c7c9 dev_uc_del -EXPORT_SYMBOL vmlinux 0xfe688570 register_md_personality +EXPORT_SYMBOL vmlinux 0xfe6b687c cdev_device_add EXPORT_SYMBOL vmlinux 0xfe916dc6 hex_dump_to_buffer +EXPORT_SYMBOL vmlinux 0xfe9bc3ef param_ops_int EXPORT_SYMBOL vmlinux 0xfe9ebbbb acpi_osi_is_win8 -EXPORT_SYMBOL vmlinux 0xfeaee754 scsi_add_host_with_dma EXPORT_SYMBOL vmlinux 0xfeb5d0aa verify_spi_info +EXPORT_SYMBOL vmlinux 0xfed10b6f skb_queue_tail EXPORT_SYMBOL vmlinux 0xfedcdb60 seq_hlist_next_percpu +EXPORT_SYMBOL vmlinux 0xfeea28fa wake_up_process EXPORT_SYMBOL vmlinux 0xfeebc7c4 __kfifo_from_user_r +EXPORT_SYMBOL vmlinux 0xfef0db6f nf_hook_slow_list +EXPORT_SYMBOL vmlinux 0xfef43596 neigh_parms_release +EXPORT_SYMBOL vmlinux 0xfef7bf26 pps_lookup_dev EXPORT_SYMBOL vmlinux 0xfefcb98e vme_dma_vme_attribute -EXPORT_SYMBOL vmlinux 0xff0ea540 input_alloc_absinfo -EXPORT_SYMBOL vmlinux 0xff10f81c genphy_config_eee_advert -EXPORT_SYMBOL vmlinux 0xff16402c tcp_mtu_to_mss +EXPORT_SYMBOL vmlinux 0xff094390 mmc_of_parse +EXPORT_SYMBOL vmlinux 0xff0ad0cd of_translate_dma_address +EXPORT_SYMBOL vmlinux 0xff11fbc1 seq_release +EXPORT_SYMBOL vmlinux 0xff131785 xudma_get_device +EXPORT_SYMBOL vmlinux 0xff1402fd csum_and_copy_from_iter +EXPORT_SYMBOL vmlinux 0xff1b8f6c acpi_pm_device_sleep_state EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start +EXPORT_SYMBOL vmlinux 0xff250bf8 balance_dirty_pages_ratelimited EXPORT_SYMBOL vmlinux 0xff282521 rfkill_register -EXPORT_SYMBOL vmlinux 0xff2b3407 __dev_remove_pack +EXPORT_SYMBOL vmlinux 0xff2f56ad block_page_mkwrite +EXPORT_SYMBOL vmlinux 0xff3d4e7e rproc_report_crash +EXPORT_SYMBOL vmlinux 0xff55e045 pci_pme_capable EXPORT_SYMBOL vmlinux 0xff6878cf fb_default_cmap -EXPORT_SYMBOL vmlinux 0xff7325b8 netdev_set_sb_channel EXPORT_SYMBOL vmlinux 0xff7e7f8d kryo_l2_set_indirect_reg -EXPORT_SYMBOL vmlinux 0xff8712bd scsi_rescan_device EXPORT_SYMBOL vmlinux 0xff87cd18 lockref_get_not_dead -EXPORT_SYMBOL vmlinux 0xff900a46 dcbnl_ieee_notify -EXPORT_SYMBOL vmlinux 0xffab7faf __napi_schedule_irqoff -EXPORT_SYMBOL vmlinux 0xffaec54f phy_device_register +EXPORT_SYMBOL vmlinux 0xffae16c2 vif_device_init +EXPORT_SYMBOL vmlinux 0xffb01399 set_anon_super_fc EXPORT_SYMBOL vmlinux 0xffb7c514 ida_free -EXPORT_SYMBOL vmlinux 0xffba5962 dma_mmap_attrs -EXPORT_SYMBOL vmlinux 0xffc57684 sdev_prefix_printk EXPORT_SYMBOL vmlinux 0xffcc4ec7 tcp_bpf_bypass_getsockopt -EXPORT_SYMBOL vmlinux 0xffeda56e unlock_buffer +EXPORT_SYMBOL vmlinux 0xffe96ff5 tcf_block_get +EXPORT_SYMBOL vmlinux 0xffea93b0 follow_up EXPORT_SYMBOL vmlinux 0xffeedf6a delayed_work_timer_fn -EXPORT_SYMBOL vmlinux 0xfff0ea7c acpi_notifier_call_chain -EXPORT_SYMBOL vmlinux 0xfff66644 sg_alloc_append_table_from_pages -EXPORT_SYMBOL_GPL crypto/af_alg 0x1a1b5818 af_alg_free_sg -EXPORT_SYMBOL_GPL crypto/af_alg 0x1f504bc4 af_alg_pull_tsgl -EXPORT_SYMBOL_GPL crypto/af_alg 0x22859a74 af_alg_sendpage -EXPORT_SYMBOL_GPL crypto/af_alg 0x3dd66574 af_alg_async_cb -EXPORT_SYMBOL_GPL crypto/af_alg 0x478c5414 af_alg_wait_for_data -EXPORT_SYMBOL_GPL crypto/af_alg 0x47cbcf62 af_alg_release -EXPORT_SYMBOL_GPL crypto/af_alg 0x48d0e5f0 af_alg_sendmsg -EXPORT_SYMBOL_GPL crypto/af_alg 0x538d5976 af_alg_alloc_areq -EXPORT_SYMBOL_GPL crypto/af_alg 0x7e929988 af_alg_release_parent -EXPORT_SYMBOL_GPL crypto/af_alg 0x7f9decdf af_alg_poll -EXPORT_SYMBOL_GPL crypto/af_alg 0x8d7f56f7 af_alg_get_rsgl -EXPORT_SYMBOL_GPL crypto/af_alg 0x92ed9f2a af_alg_make_sg -EXPORT_SYMBOL_GPL crypto/af_alg 0x98e0e6a2 af_alg_free_resources -EXPORT_SYMBOL_GPL crypto/af_alg 0xd726185f af_alg_accept -EXPORT_SYMBOL_GPL crypto/af_alg 0xde44c33a af_alg_count_tsgl -EXPORT_SYMBOL_GPL crypto/af_alg 0xe60213dc af_alg_wmem_wakeup -EXPORT_SYMBOL_GPL crypto/af_alg 0xf169bbf7 af_alg_register_type -EXPORT_SYMBOL_GPL crypto/af_alg 0xfedee990 af_alg_unregister_type +EXPORT_SYMBOL vmlinux 0xfffc1c79 blkdev_issue_write_same +EXPORT_SYMBOL_GPL crypto/af_alg 0x03071b0d af_alg_free_resources +EXPORT_SYMBOL_GPL crypto/af_alg 0x0a2bcc33 af_alg_count_tsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0x109ddabd af_alg_make_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x172fa329 af_alg_sendpage +EXPORT_SYMBOL_GPL crypto/af_alg 0x2e0831d0 af_alg_release_parent +EXPORT_SYMBOL_GPL crypto/af_alg 0x33054377 af_alg_pull_tsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0x37ec39f3 af_alg_poll +EXPORT_SYMBOL_GPL crypto/af_alg 0x605fc1cc af_alg_release +EXPORT_SYMBOL_GPL crypto/af_alg 0x6e983807 af_alg_async_cb +EXPORT_SYMBOL_GPL crypto/af_alg 0x7413a853 af_alg_accept +EXPORT_SYMBOL_GPL crypto/af_alg 0x83b1bf42 af_alg_register_type +EXPORT_SYMBOL_GPL crypto/af_alg 0xb24ea116 af_alg_alloc_areq +EXPORT_SYMBOL_GPL crypto/af_alg 0xb3023c93 af_alg_wait_for_data +EXPORT_SYMBOL_GPL crypto/af_alg 0xcb411f47 af_alg_free_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0xd030166a af_alg_unregister_type +EXPORT_SYMBOL_GPL crypto/af_alg 0xdb66742e af_alg_wmem_wakeup +EXPORT_SYMBOL_GPL crypto/af_alg 0xeadb350f af_alg_sendmsg +EXPORT_SYMBOL_GPL crypto/af_alg 0xf9f42432 af_alg_get_rsgl EXPORT_SYMBOL_GPL crypto/asymmetric_keys/asym_tpm 0x7430f97c tpm_key_create -EXPORT_SYMBOL_GPL crypto/asymmetric_keys/asym_tpm 0xb48c3ecf asym_tpm_subtype -EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0x37c157b0 async_memcpy -EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0xfa5f8f04 async_gen_syndrome -EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0xfb5ecd50 async_syndrome_val -EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x81153573 async_raid6_2data_recov -EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0xc6eba7a8 async_raid6_datap_recov -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x43f57e58 async_tx_submit -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x5d81e584 async_trigger_callback -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xc3561293 __async_tx_find_channel -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xccf45d6c async_tx_quiesce -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x1beac1a4 async_xor -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x7950b7b4 async_xor_val -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x964aad65 async_xor_offs -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xd35d722c async_xor_val_offs +EXPORT_SYMBOL_GPL crypto/asymmetric_keys/asym_tpm 0xa31d8d0d asym_tpm_subtype +EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0x4440bac8 async_memcpy +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x4b9ad779 async_gen_syndrome +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x5969374f async_syndrome_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x4e047054 async_raid6_2data_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0xb192eede async_raid6_datap_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x429712c3 async_tx_submit +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x90a6518b __async_tx_find_channel +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xc7e3e142 async_trigger_callback +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xe7fdd77e async_tx_quiesce +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x2e309554 async_xor_offs +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x961e641c async_xor +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xbdf2184e async_xor_val_offs +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xf4c90289 async_xor_val EXPORT_SYMBOL_GPL crypto/authenc 0x2479193e crypto_authenc_extractkeys -EXPORT_SYMBOL_GPL crypto/blowfish_common 0x160728e4 blowfish_setkey +EXPORT_SYMBOL_GPL crypto/blowfish_common 0x61c61f50 blowfish_setkey EXPORT_SYMBOL_GPL crypto/cast5_generic 0x188d9d26 __cast5_decrypt -EXPORT_SYMBOL_GPL crypto/cast5_generic 0x6117d79b cast5_setkey +EXPORT_SYMBOL_GPL crypto/cast5_generic 0x8faa8533 cast5_setkey EXPORT_SYMBOL_GPL crypto/cast5_generic 0xef81a4af __cast5_encrypt EXPORT_SYMBOL_GPL crypto/cast6_generic 0x3dbae082 __cast6_decrypt -EXPORT_SYMBOL_GPL crypto/cast6_generic 0xc5a3f2e4 cast6_setkey EXPORT_SYMBOL_GPL crypto/cast6_generic 0xcfce512f __cast6_encrypt EXPORT_SYMBOL_GPL crypto/cast6_generic 0xd76a5716 __cast6_setkey +EXPORT_SYMBOL_GPL crypto/cast6_generic 0xe5a591f2 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 0x01a7a38b cryptd_alloc_skcipher -EXPORT_SYMBOL_GPL crypto/cryptd 0x3568dd3c cryptd_ahash_queued -EXPORT_SYMBOL_GPL crypto/cryptd 0x3714fd5d cryptd_free_ahash -EXPORT_SYMBOL_GPL crypto/cryptd 0x3717f6ba cryptd_shash_desc -EXPORT_SYMBOL_GPL crypto/cryptd 0x3c7993ae cryptd_alloc_aead -EXPORT_SYMBOL_GPL crypto/cryptd 0x46cd4ef8 cryptd_alloc_ahash -EXPORT_SYMBOL_GPL crypto/cryptd 0x6eb7bae6 cryptd_skcipher_child -EXPORT_SYMBOL_GPL crypto/cryptd 0x7c252988 cryptd_aead_queued -EXPORT_SYMBOL_GPL crypto/cryptd 0x99b70406 cryptd_ahash_child -EXPORT_SYMBOL_GPL crypto/cryptd 0xc46375ef cryptd_free_aead -EXPORT_SYMBOL_GPL crypto/cryptd 0xc65a8ec8 cryptd_free_skcipher -EXPORT_SYMBOL_GPL crypto/cryptd 0xf839f6cd cryptd_aead_child -EXPORT_SYMBOL_GPL crypto/cryptd 0xfa394901 cryptd_skcipher_queued -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x1c820797 crypto_engine_alloc_init_and_set -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x46d09c5c crypto_engine_exit -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x5d262c81 crypto_engine_alloc_init -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x5d83e003 crypto_transfer_akcipher_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x7c596f46 crypto_finalize_skcipher_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xbd9a41e4 crypto_finalize_aead_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xbe5d5119 crypto_transfer_skcipher_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xc44cf797 crypto_finalize_hash_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xcadf30d9 crypto_finalize_akcipher_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xd25a49b6 crypto_engine_stop -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xe1936bee crypto_transfer_aead_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xe2dcb419 crypto_transfer_hash_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xf034f681 crypto_engine_start -EXPORT_SYMBOL_GPL crypto/crypto_simd 0x2635dbce simd_unregister_skciphers +EXPORT_SYMBOL_GPL crypto/cryptd 0x05ae8875 cryptd_aead_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x1daf2b61 cryptd_skcipher_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0x2ca895b1 cryptd_free_skcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0x503f5cba cryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0x5fdf6905 cryptd_free_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0x65f7187e cryptd_aead_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0x72868859 cryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x8c40e29c cryptd_skcipher_child +EXPORT_SYMBOL_GPL crypto/cryptd 0xb0256261 cryptd_alloc_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0xb8980006 cryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/cryptd 0xbef8ff57 cryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0xc3fb5c57 cryptd_alloc_skcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0xec79db98 cryptd_ahash_queued +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x0897be9d crypto_transfer_akcipher_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x1d94af03 crypto_transfer_skcipher_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x2fdfc901 crypto_engine_alloc_init +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x33b26775 crypto_finalize_akcipher_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x430e283a crypto_finalize_skcipher_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x581f4ac1 crypto_engine_start +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x656f4a39 crypto_transfer_aead_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x6aadc41b crypto_engine_alloc_init_and_set +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x961c8465 crypto_finalize_hash_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xa2bb0a64 crypto_finalize_aead_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xcc03ced0 crypto_transfer_hash_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xde297421 crypto_engine_exit +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xf27ede24 crypto_engine_stop EXPORT_SYMBOL_GPL crypto/crypto_simd 0x504cb053 simd_aead_create_compat -EXPORT_SYMBOL_GPL crypto/crypto_simd 0x52cb8c66 simd_register_aeads_compat +EXPORT_SYMBOL_GPL crypto/crypto_simd 0x58f9a7ef simd_unregister_skciphers EXPORT_SYMBOL_GPL crypto/crypto_simd 0x66983e96 simd_skcipher_create 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 0xa3c7fcf6 simd_unregister_aeads +EXPORT_SYMBOL_GPL crypto/crypto_simd 0xa7da875d simd_register_skciphers_compat +EXPORT_SYMBOL_GPL crypto/crypto_simd 0xa981b7e7 simd_register_aeads_compat +EXPORT_SYMBOL_GPL crypto/crypto_simd 0xb64150d9 simd_unregister_aeads EXPORT_SYMBOL_GPL crypto/crypto_simd 0xbfd26f15 simd_aead_free -EXPORT_SYMBOL_GPL crypto/crypto_simd 0xd3a5ff2e simd_register_skciphers_compat EXPORT_SYMBOL_GPL crypto/crypto_simd 0xefe73979 simd_skcipher_free EXPORT_SYMBOL_GPL crypto/ecdh_generic 0x33b866ce crypto_ecdh_decode_key EXPORT_SYMBOL_GPL crypto/ecdh_generic 0x7475be8e crypto_ecdh_key_len EXPORT_SYMBOL_GPL crypto/ecdh_generic 0xb230d2ec crypto_ecdh_encode_key -EXPORT_SYMBOL_GPL crypto/serpent_generic 0x20bbfd7f serpent_setkey +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x480d6ca8 serpent_setkey EXPORT_SYMBOL_GPL crypto/serpent_generic 0x4eb4c55e __serpent_encrypt EXPORT_SYMBOL_GPL crypto/serpent_generic 0xbcc074f3 __serpent_decrypt EXPORT_SYMBOL_GPL crypto/serpent_generic 0xd4c9681a __serpent_setkey EXPORT_SYMBOL_GPL crypto/sm3_generic 0x0bddca87 sm3_zero_message_hash -EXPORT_SYMBOL_GPL crypto/twofish_common 0x97760ca8 twofish_setkey +EXPORT_SYMBOL_GPL crypto/twofish_common 0x6987c196 twofish_setkey EXPORT_SYMBOL_GPL crypto/twofish_common 0xe22b7787 __twofish_setkey +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x0adb1ec2 spk_do_catch_up_unicode +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x1360a215 spk_ttyio_ops +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x1e39eb14 synth_putws +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x3a53504d spk_ttyio_synth_immediate +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x41a160e5 synth_buffer_empty +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x43bf0ee0 spk_synth_flush +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x4449e1dd synth_buffer_clear +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x466f5eb7 synth_putwc +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x5ef80e07 synth_current +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x73850847 spk_ttyio_release +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x76d40046 synth_buffer_skip_nonlatin1 +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x7f04084f spk_synth_is_alive_restart +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x82f09012 spk_ttyio_synth_probe +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x84dad068 synth_buffer_getc +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x8a15917a spk_do_catch_up +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 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 0xbdd42c63 spk_var_store +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xc319c604 synth_putws_s +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xc6a06d16 spk_get_var +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xcc4e680b synth_remove +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 0xdaadbae8 spk_synth_is_alive_nop +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xdec13eea synth_add +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xe194d0ef synth_printf +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xf39365fb spk_var_show +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xf89562b5 spk_synth_get_index +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x0acd8d9e __acpi_nfit_notify +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x2eb4ae5a acpi_nfit_init EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x4639bcda acpi_nfit_shutdown EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x499bbf57 nfit_get_smbios_id -EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x6b045578 acpi_nfit_init -EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0xdbabe8cc __acpi_nfit_notify -EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0xdbe97683 acpi_nfit_ctl -EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0xe2599a71 acpi_nfit_desc_init -EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0xe58cd9ab __acpi_nvdimm_notify +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x55981b41 __acpi_nvdimm_notify +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x63b27358 acpi_nfit_desc_init +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x775c61f7 acpi_nfit_ctl EXPORT_SYMBOL_GPL drivers/acpi/platform_profile 0x67927a0d platform_profile_notify EXPORT_SYMBOL_GPL drivers/acpi/platform_profile 0xbfe36436 platform_profile_remove EXPORT_SYMBOL_GPL drivers/acpi/platform_profile 0xcac33cd4 platform_profile_register -EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0x76a03611 __pata_platform_probe -EXPORT_SYMBOL_GPL drivers/ata/pata_sis 0x20769a26 sis_info133_for_sata +EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0xd41495e2 __pata_platform_probe +EXPORT_SYMBOL_GPL drivers/ata/pata_sis 0x85491257 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 @@ -11911,143 +11949,143 @@ EXPORT_SYMBOL_GPL drivers/auxdisplay/hd44780_common 0xa22afdaa hd44780_common_cursor EXPORT_SYMBOL_GPL drivers/auxdisplay/hd44780_common 0xc369090d hd44780_common_shift_cursor EXPORT_SYMBOL_GPL drivers/auxdisplay/hd44780_common 0xf360d788 hd44780_common_fontsize -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-ac97 0x5639d687 regmap_ac97_default_volatile -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-ac97 0x924e9cae __regmap_init_ac97 -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-ac97 0xa18e96e5 __devm_regmap_init_ac97 -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-i3c 0x96197162 __devm_regmap_init_i3c -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0x1e671b36 __devm_regmap_init_sccb -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0xf691498f __regmap_init_sccb -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw 0x0dbacba2 __devm_regmap_init_sdw -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw 0x5bb32264 __regmap_init_sdw -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw-mbq 0x13faffba __devm_regmap_init_sdw_mbq -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw-mbq 0xb525eac7 __regmap_init_sdw_mbq -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0x206cedf1 __regmap_init_slimbus -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0xc7da875c __devm_regmap_init_slimbus -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spi-avmm 0x7aece8ae __devm_regmap_init_spi_avmm -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spi-avmm 0xda6ca942 __regmap_init_spi_avmm -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x48001033 __devm_regmap_init_spmi_ext -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x55e8c17a __devm_regmap_init_spmi_base -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xf5e4ea59 __regmap_init_spmi_ext -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xf832adc6 __regmap_init_spmi_base -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0x48158763 __regmap_init_w1 -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0xee354a67 __devm_regmap_init_w1 -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x267a41e8 bcma_chipco_b_mii_write -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x2a5d5732 bcma_chipco_gpio_out -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x3b3b5b83 bcma_chipco_get_alp_clock -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x46072efe bcma_core_enable -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x4e2ca3bf bcma_pmu_spuravoid_pllupdate -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x56d2f8af bcma_chipco_chipctl_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x5d798e82 bcma_host_pci_irq_ctl -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x673aa9a8 bcma_host_pci_up -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x685e8c42 bcma_core_set_clockmode -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x69179e9a bcma_host_pci_down -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x6b3dbb71 bcma_chipco_pll_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x70eede91 bcma_driver_unregister -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x87823ec1 bcma_chipco_pll_write -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x8cc60bae bcma_chipco_gpio_outen -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x91daf5f3 __bcma_driver_register -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x94dca947 bcma_chipco_gpio_control -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xaa897682 bcma_core_pci_power_save -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xaaa782e0 bcma_core_pll_ctl -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xaaf25b8c bcma_pmu_get_bus_clock -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xb756aaa5 bcma_find_core_unit -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc4db1bd9 bcma_core_disable -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc67c100f bcma_chipco_regctl_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf31cb2e5 bcma_chipco_pll_read -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xfc51ee7c bcma_core_is_enabled -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x0396244f btbcm_write_pcm_int_params -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x27a25d7b btbcm_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x2c0c8f9f btbcm_setup_apple -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x4a03801d btbcm_check_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x5b1213dc btbcm_initialize -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x71f93c00 btbcm_setup_patchram -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xd2cbcc23 btbcm_finalize -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xed87d772 btbcm_read_pcm_int_params -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x04cfcd51 btintel_set_event_mask_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x0a16294d btintel_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x1d3caabf btintel_configure_setup -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x1f0988fb btintel_enter_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x2f933739 btintel_load_ddc_config -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x3fb1e4d3 btintel_regmap_init -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x4f97a602 btintel_download_firmware -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x5df27bfd btintel_read_version -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x63b2aacd btintel_check_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x6530a10a btintel_bootup -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x737e1361 btintel_exit_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x775a0f95 btintel_secure_send_result -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x816d7494 btintel_send_intel_reset -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x82832749 btintel_version_info -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xa71c90f0 btintel_read_boot_params -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xd6209b07 btintel_set_diag -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x0a94911b btmrvl_register_hdev -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x1476b7e7 btmrvl_interrupt -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x15d39294 btmrvl_enable_ps -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x6919a430 btmrvl_enable_hs -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x8e2f3b56 btmrvl_send_module_cfg_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xa5dbad5a btmrvl_remove_card -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xc0a71bc9 btmrvl_check_evtpkt -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xc3ceee96 btmrvl_pscan_window_reporting -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xe7945eb0 btmrvl_add_card -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xf4a9f13c btmrvl_send_hscfg_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xf9922b18 btmrvl_process_event -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x071c8f11 qca_set_bdaddr_rome -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x585c511e qca_read_soc_version -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x651cab6c qca_uart_setup -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x6d0b7637 qca_send_pre_shutdown_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x868b1864 qca_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x03028d8c btrtl_shutdown_realtek -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x1f60e18b btrtl_initialize -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x3c1d2a37 btrtl_setup_realtek -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x8a9f227b btrtl_get_uart_settings +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-ac97 0x3e0e940d regmap_ac97_default_volatile +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-ac97 0x4f9c4f75 __devm_regmap_init_ac97 +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-ac97 0xf4690221 __regmap_init_ac97 +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-i3c 0x7902a55d __devm_regmap_init_i3c +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0x7d0c4f38 __regmap_init_sccb +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0xb457facd __devm_regmap_init_sccb +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw 0x3e69e05a __regmap_init_sdw +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw 0x577bc4cc __devm_regmap_init_sdw +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw-mbq 0x71f59f39 __regmap_init_sdw_mbq +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw-mbq 0x9a006652 __devm_regmap_init_sdw_mbq +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0x3d62d607 __devm_regmap_init_slimbus +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0x421df847 __regmap_init_slimbus +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spi-avmm 0x0060559e __regmap_init_spi_avmm +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spi-avmm 0x38697632 __devm_regmap_init_spi_avmm +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x0e38a18f __devm_regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x159d837f __regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xbc1e5df3 __devm_regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xea9fed5a __regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0x0cb80cc1 __regmap_init_w1 +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0x9b3ff399 __devm_regmap_init_w1 +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x0cd637af bcma_core_is_enabled +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x0ea1747a bcma_find_core_unit +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x10b46a18 bcma_chipco_regctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x13a08c3f bcma_chipco_b_mii_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x1482024e bcma_chipco_pll_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x2161f943 bcma_chipco_pll_read +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x2da859d8 bcma_driver_unregister +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x3a0fbe64 bcma_core_pci_power_save +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x3f1c621d bcma_core_pll_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x4c019cac bcma_chipco_get_alp_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x58b57870 bcma_chipco_gpio_outen +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x5dafd50a bcma_pmu_get_bus_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x64d45f0a bcma_core_disable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x9567f4f2 bcma_host_pci_irq_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa1edd470 bcma_core_set_clockmode +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa25d680e bcma_chipco_gpio_control +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa33146e1 bcma_host_pci_down +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa4fdfc88 bcma_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa8d89db4 __bcma_driver_register +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xb05a2718 bcma_chipco_pll_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc44a9a4f bcma_host_pci_up +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd3cfed54 bcma_core_enable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xde143286 bcma_chipco_gpio_out +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf57e2adb bcma_chipco_chipctl_maskset +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x266bab8a btbcm_finalize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x34969df5 btbcm_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x41607092 btbcm_read_pcm_int_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x44aaeb4a btbcm_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x4b5f28f0 btbcm_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x62eb3063 btbcm_write_pcm_int_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xb16dc040 btbcm_setup_apple +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xbd8e1c34 btbcm_setup_patchram +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x03e70d57 btintel_exit_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x1433c0d1 btintel_download_firmware +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x161c0dd3 btintel_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x1a583471 btintel_load_ddc_config +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x2b3f19ef btintel_secure_send_result +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x6868cc62 btintel_read_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x6ac8abce btintel_set_event_mask_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x8df237c3 btintel_enter_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x912bf700 btintel_send_intel_reset +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x9c900604 btintel_configure_setup +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xb078e420 btintel_version_info +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xb4d64c9c btintel_bootup +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xc65f5a11 btintel_set_diag +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xd4923cb7 btintel_regmap_init +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xddf79577 btintel_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xe45d6a67 btintel_read_boot_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x00a178db btmrvl_pscan_window_reporting +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x095664cb btmrvl_remove_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x124f0cd3 btmrvl_process_event +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x63b8de50 btmrvl_send_hscfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x667020ab btmrvl_send_module_cfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x66ed0861 btmrvl_enable_hs +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x73ade73d btmrvl_enable_ps +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xb96ea756 btmrvl_register_hdev +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xbf0d5420 btmrvl_interrupt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xdb31276b btmrvl_check_evtpkt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xf645b1ad btmrvl_add_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x1f7285d6 qca_read_soc_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x25f1cb86 qca_uart_setup +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x92cc290c qca_set_bdaddr_rome +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xdf07f604 qca_send_pre_shutdown_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xf3eae38a qca_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x0075eda6 btrtl_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x6b3ca389 btrtl_shutdown_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x71e84f6a btrtl_set_quirks +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xaeb12347 btrtl_setup_realtek EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xaf78f260 btrtl_free -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xb6af964c btrtl_set_quirks -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xe3777aac btrtl_download_firmware -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x522abe15 hci_uart_register_device -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x59b39e8c hci_uart_tx_wakeup -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x68f29c8c h4_recv_buf -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0xaf2527a1 hci_uart_unregister_device -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x39b496d3 mhi_poll -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x4146e38c mhi_queue_skb -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x451a064e mhi_device_put -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x4fe074e8 mhi_power_down -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x51fee23e mhi_pm_resume_force -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x539e5ad7 mhi_get_exec_env -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x557bf765 mhi_unregister_controller -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x580fc7e6 mhi_notify -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x5f5e4c05 mhi_download_rddm_image -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x715326e0 mhi_async_power_up -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x782ec839 mhi_queue_buf -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x7990fe8b __mhi_driver_register -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x832d4f64 mhi_prepare_for_transfer -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x856d2067 mhi_queue_dma -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xb114bafb mhi_get_free_desc_count -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xb72d4a97 mhi_device_get -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xb9bd574a mhi_register_controller -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xc534e526 mhi_device_get_sync -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xc546df4e mhi_unprepare_from_transfer -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xc8132496 mhi_prepare_for_power_up -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xcd9b2919 mhi_soc_reset -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xdce6d121 mhi_driver_unregister -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xe2901e5a mhi_alloc_controller -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xe656e8a4 mhi_get_mhi_state -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xea66675c mhi_unprepare_after_power_down -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xebcb35a4 mhi_pm_suspend -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xf2059ace mhi_free_controller -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xf723bab8 mhi_force_rddm_mode -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xfd6a030c mhi_pm_resume -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xfd6ecc95 mhi_queue_is_full -EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x237f998f __moxtet_register_driver -EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x5f9b96a6 moxtet_device_written -EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x629b3bcf moxtet_device_read -EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x862876d0 moxtet_device_write -EXPORT_SYMBOL_GPL drivers/bus/sunxi-rsb 0x00c932be __devm_regmap_init_sunxi_rsb -EXPORT_SYMBOL_GPL drivers/bus/sunxi-rsb 0xde59caf6 sunxi_rsb_driver_register -EXPORT_SYMBOL_GPL drivers/clk/meson/clk-phase 0x4ae3d094 meson_clk_phase_ops -EXPORT_SYMBOL_GPL drivers/clk/meson/clk-phase 0xa54cdd0f meson_sclk_ws_inv_ops -EXPORT_SYMBOL_GPL drivers/clk/meson/clk-phase 0xf4a4a1ad meson_clk_triphase_ops -EXPORT_SYMBOL_GPL drivers/clk/meson/sclk-div 0x01e5c3a7 meson_sclk_div_ops +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xe05638aa btrtl_download_firmware +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xf2b7b107 btrtl_get_uart_settings +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x585d5a5c hci_uart_register_device +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x698d1f2e hci_uart_unregister_device +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0xa34a25a3 hci_uart_tx_wakeup +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0xb8c56f5b h4_recv_buf +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x03be4581 mhi_queue_is_full +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x12850e3f mhi_pm_resume +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x13293a49 mhi_async_power_up +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x18abbce7 mhi_free_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x1f0e4996 mhi_soc_reset +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x23be8cc0 mhi_get_free_desc_count +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x2a14f334 mhi_prepare_for_transfer +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x3362510a mhi_notify +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x34e5783b mhi_device_put +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x3fc60f1a mhi_get_mhi_state +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x5a107ae7 __mhi_driver_register +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x5f3aa98f mhi_register_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x63a3fa4f mhi_device_get_sync +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x65e32600 mhi_prepare_for_power_up +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x71c6c83b mhi_pm_resume_force +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x782caaaf mhi_queue_skb +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x7daeeca0 mhi_pm_suspend +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x7f6970e2 mhi_unregister_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x7f88fde1 mhi_queue_buf +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x8cff3c81 mhi_power_down +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x9b98079a mhi_unprepare_from_transfer +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x9f4016ec mhi_driver_unregister +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x9f56afcd mhi_get_exec_env +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xb126ea7a mhi_device_get +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xb85840a3 mhi_download_rddm_image +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xc39cd140 mhi_force_rddm_mode +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xd533b0f8 mhi_queue_dma +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xf2520ac5 mhi_alloc_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xf3d8852d mhi_poll +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xfb1aca06 mhi_unprepare_after_power_down +EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x1a471562 moxtet_device_written +EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x7f32d57f moxtet_device_write +EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x9b492463 __moxtet_register_driver +EXPORT_SYMBOL_GPL drivers/bus/moxtet 0xf9770363 moxtet_device_read +EXPORT_SYMBOL_GPL drivers/bus/sunxi-rsb 0x7ce51ea2 sunxi_rsb_driver_register +EXPORT_SYMBOL_GPL drivers/bus/sunxi-rsb 0xd5322ab3 __devm_regmap_init_sunxi_rsb +EXPORT_SYMBOL_GPL drivers/clk/meson/clk-phase 0x638958d6 meson_clk_phase_ops +EXPORT_SYMBOL_GPL drivers/clk/meson/clk-phase 0x8460d2f0 meson_sclk_ws_inv_ops +EXPORT_SYMBOL_GPL drivers/clk/meson/clk-phase 0xd987622f meson_clk_triphase_ops +EXPORT_SYMBOL_GPL drivers/clk/meson/sclk-div 0xb2a419de meson_sclk_div_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x0000139e clk_alpha_pll_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x008d348f qcom_cc_probe_by_index +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x001f06ab qcom_cc_probe_by_index EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x08f0cc30 clk_is_enabled_regmap EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x0d10c3c4 clk_enable_regmap EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x0d678ab9 qcom_reset_ops @@ -12058,22 +12096,23 @@ EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x1a142e7c clk_alpha_pll_fixed_trion_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x20796d46 clk_trion_pll_configure EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x24a7abf5 clk_zonda_pll_configure +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x24af0f1d qcom_cc_register_sleep_clk EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x272f3204 clk_alpha_pll_fixed_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x2a9c7452 clk_rcg_lcc_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x2b0d957d clk_pixel_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x2cae96b3 clk_regmap_div_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x30bbf987 clk_rcg2_shared_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x310b6341 clk_regmap_mux_closest_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x342afdba qcom_cc_probe EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x3747af55 clk_rcg_bypass2_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x395868a1 qcom_find_freq_floor EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x3dfc2dc5 clk_branch_simple_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x405d394a clk_alpha_pll_postdiv_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x418e9cfd clk_pll_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x43e91278 gdsc_gx_do_nothing_enable EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x4b0ed6da clk_ops_hfpll EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x5111f2ad clk_rcg2_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x51b2d5c5 qcom_cc_really_probe EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x520df3b7 clk_rcg_esc_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x54789a5f qcom_cc_register_board_clk EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x57172323 clk_byte_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x5a6ae327 clk_alpha_pll_configure EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x5e6abb22 mux_div_set_src_div @@ -12083,44 +12122,43 @@ EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x66922845 clk_branch_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x68199825 clk_disable_regmap EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x6af41b8b qcom_pll_set_fsm_mode -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x6b071892 qcom_cc_map EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7019378d clk_pll_configure_sr_hpm_lp -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x71372ab3 qcom_find_src_index EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x766e9f87 clk_regmap_div_ro_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x787e8234 qcom_find_freq EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x78b81ea0 clk_rcg2_floor_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x78ee4505 qcom_find_cfg_index +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x79c0bf19 qcom_cc_register_board_clk EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7a7d500f clk_fabia_pll_configure EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7e66fd9e clk_regmap_mux_div_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7e7206ae devm_clk_register_regmap +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7e9823fc devm_clk_register_regmap EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x8515663c clk_alpha_pll_regs +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x852aa6f2 qcom_find_src_index EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x8b55eac4 clk_dyn_rcg_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x91c41c9f clk_edp_pixel_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x9445466f qcom_cc_register_sleep_clk EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x97488818 clk_rcg_pixel_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x9c8854a1 clk_alpha_pll_lucid_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x9d909edd clk_gfx3d_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x9f1bf2e0 clk_alpha_pll_trion_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x9f241baa clk_rcg_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xaa403ee8 clk_alpha_pll_huayra_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xaa5a832c qcom_cc_really_probe EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xadc2751b clk_alpha_pll_postdiv_fabia_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xba961aa7 clk_dp_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xc150d434 clk_alpha_pll_postdiv_ro_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xc5bdfa11 clk_byte2_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xc6c03345 qcom_find_cfg_index EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xc82bd181 clk_agera_pll_configure EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xcf422970 clk_rcg_bypass_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xd39f9079 qcom_cc_probe EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xd438c1c3 clk_alpha_pll_postdiv_trion_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xd7ab6782 clk_alpha_pll_postdiv_lucid_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xdc014e02 qcom_cc_register_rcg_dfs EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xe6e14638 clk_alpha_pll_fabia_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xe816a036 clk_pll_configure_sr -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xecc71d48 gdsc_gx_do_nothing_enable +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xf338aa95 qcom_cc_map EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x096aa17b sprd_div_helper_recalc_rate -EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x09ddaa82 sprd_clk_probe EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x0a3ec278 sprd_gate_ops EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x14212841 sprd_div_ops EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x1ca519ca sprd_pll_ops +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x46277c6d sprd_clk_probe EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x4cad4f51 sprd_div_helper_round_rate EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x4f93d75f sprd_mux_helper_get_parent EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x597905e4 sprd_sc_gate_ops @@ -12129,107 +12167,107 @@ EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x9925914a sprd_mux_helper_set_parent EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0xaf833f64 sprd_pll_sc_gate_ops EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0xe305cb73 sprd_comp_ops -EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0xeb4d3932 sprd_clk_regmap_init -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x0084abed comedi_dev_get_from_minor -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x03fc2ba7 comedi_driver_unregister -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x07507899 comedi_legacy_detach +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0xedbdde4f sprd_clk_regmap_init +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x0366047a comedi_dio_insn_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x0705a2b0 comedi_alloc_subdev_readback +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x098058f3 comedi_event EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x0cd330f4 range_unknown -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x12a2095c comedi_readback_insn_read -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x172de636 comedi_driver_register -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x1eb79804 comedi_handle_events +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x0cd38876 comedi_buf_read_n_available +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x1b3926dd comedi_buf_write_free +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x1e4fc591 comedi_set_hw_dev EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x21102f87 range_0_32mA -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x21c2d490 comedi_bytes_per_scan -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x271e5104 comedi_timeout -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x29875fb8 comedi_set_hw_dev -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x2d67a3d6 comedi_is_subdevice_running EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x2f0ad9d3 range_bipolar5 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x31c3cf7b comedi_request_region -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x326929a2 comedi_dio_insn_config -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x3da4299d comedi_inc_scan_progress +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x31ad8200 comedi_driver_unregister +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x3330600c comedi_nsamples_left +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x3da25189 comedi_check_chanlist +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x3e55b9ef comedi_set_spriv_auto_free +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x41b797d8 comedi_dev_get_from_minor EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4236eaaf range_4_20mA -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4c9da9c0 comedi_buf_read_alloc +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x461e4c2f comedi_buf_read_free +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4c3dbe30 comedi_alloc_spriv +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4c654d6d comedi_is_subdevice_running EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4fe634f3 range_bipolar2_5 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x595ba200 comedi_dev_put -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x5c7ab629 comedi_buf_read_free -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x6fd4d791 comedi_buf_write_alloc -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x70d1b9b0 comedi_alloc_devpriv -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x7413aec3 comedi_event -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x7884ed51 comedi_nscans_left -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x79881908 __comedi_request_region -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x7b4b42fb comedi_buf_read_n_available -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x7c4d5aab comedi_nsamples_left +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x58636759 comedi_handle_events +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x5efc2d4b comedi_auto_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x735915fd comedi_inc_scan_progress EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x8113872c range_unipolar10 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x9542b04e comedi_dio_update_state -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xa660d8ec comedi_buf_write_samples -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xb2e97473 comedi_auto_unconfig -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xb3e34c9a comedi_buf_read_samples +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x8d4a1ee9 comedi_auto_unconfig +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x8fa2fcf9 comedi_legacy_detach +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x9096a498 __comedi_request_region +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x964f4f14 comedi_bytes_per_scan +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x9dd37710 comedi_timeout +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x9f963bab comedi_nscans_left +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xa598c9fb comedi_dio_update_state +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xb59d15e9 comedi_load_firmware EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xb679cebc range_0_20mA EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xbb52fc7f range_bipolar10 +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xbba5e7af comedi_buf_write_alloc EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xbdbe75c6 range_unipolar2_5 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xcc6358de comedi_buf_write_free -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xcfcb8baf comedi_load_firmware -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xd652b7cf comedi_alloc_subdev_readback +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xbe8a64c3 comedi_driver_register +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xc1d8bd3f comedi_buf_write_samples +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xce13938a comedi_bytes_per_scan_cmd EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xdb2044b2 range_unipolar5 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xdc607737 comedi_auto_config -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xdd1ac9aa comedi_alloc_subdevices -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xdfce25f5 comedi_bytes_per_scan_cmd -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xf1ccde47 comedi_check_chanlist -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xf8bdb4cd comedi_alloc_spriv -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xfa5ed6cb comedi_set_spriv_auto_free -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x15d439e9 comedi_pci_auto_unconfig -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x2ccbc895 comedi_to_pci_dev -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x3d234fc8 comedi_pci_driver_unregister -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x53be8be2 comedi_pci_driver_register -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x5ef63a65 comedi_pci_enable -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xc5c46b91 comedi_pci_detach -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xe1e49b0f comedi_pci_auto_config -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xfe2706fc comedi_pci_disable -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x1a1e1fa9 comedi_usb_driver_register -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x2b8c019c comedi_usb_auto_config -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x6aa2a3e3 comedi_usb_driver_unregister -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0xa83b4c56 comedi_to_usb_interface -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0xb7f96f17 comedi_usb_auto_unconfig -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0xb9ed7a69 comedi_to_usb_dev -EXPORT_SYMBOL_GPL drivers/comedi/drivers/addi_watchdog 0x1c778cd1 addi_watchdog_init +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xde27275e comedi_alloc_subdevices +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xe6d44fd7 comedi_dev_put +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xe7c12454 comedi_buf_read_samples +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xe7fd8704 comedi_alloc_devpriv +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xe84b53f5 comedi_buf_read_alloc +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xf1d0c2c4 comedi_readback_insn_read +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xf8f28896 comedi_request_region +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x15fa5e4a comedi_pci_auto_unconfig +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x4d47c253 comedi_pci_disable +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x5b12315d comedi_pci_detach +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x63cbffc6 comedi_to_pci_dev +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xa3fc7c60 comedi_pci_driver_unregister +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xbd517986 comedi_pci_enable +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xd8ca4091 comedi_pci_driver_register +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xdc1ea571 comedi_pci_auto_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x0c932a56 comedi_usb_auto_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x30dfb594 comedi_to_usb_dev +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x411355ad comedi_to_usb_interface +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x4b5787cc comedi_usb_driver_unregister +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x782c3b7c comedi_usb_driver_register +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x9e1a7cab comedi_usb_auto_unconfig +EXPORT_SYMBOL_GPL drivers/comedi/drivers/addi_watchdog 0x50773051 addi_watchdog_init EXPORT_SYMBOL_GPL drivers/comedi/drivers/addi_watchdog 0x79f4a6cf addi_watchdog_reset -EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_dio200_common 0x166df0a2 amplc_dio200_set_enhance -EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_dio200_common 0x3998c023 amplc_dio200_common_attach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_pc236_common 0x74acf9ce amplc_pc236_common_attach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x29039c07 comedi_8254_set_busy -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x307abb4c comedi_8254_update_divisors -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x3d29cbf9 comedi_8254_read -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x43d0716d comedi_8254_set_mode -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x67f76d45 comedi_8254_load -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x76361f90 comedi_8254_ns_to_timer -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x881afc95 comedi_8254_write -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x8c8d500c comedi_8254_subdevice_init -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xb144e700 comedi_8254_mm_init -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xbaeefcd8 comedi_8254_init -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xbe2f18c7 comedi_8254_cascade_ns_to_timer -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xeeeca7b0 comedi_8254_pacer_enable -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xffa8024c comedi_8254_status -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0x64c39895 subdev_8255_init -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0xa42b06c8 subdev_8255_regbase -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0xe7100b02 subdev_8255_mm_init -EXPORT_SYMBOL_GPL drivers/comedi/drivers/das08 0x1a9287ff das08_common_attach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x0acd05ea mite_sync_dma -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x27c26f04 mite_dma_arm -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x2884740e mite_bytes_in_transit -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x48386fbc mite_request_channel -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x49cbc611 mite_detach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x57e37897 mite_buf_change -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x5825a618 mite_request_channel_in_range -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x6f269214 mite_done -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x87a3918c mite_free_ring -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x9b181e5f mite_release_channel -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xa640ca88 mite_ack_linkc -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xb2f14102 mite_init_ring_descriptors -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xc8de088b mite_dma_disarm -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xdebdeb21 mite_prep_dma -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xe23a301d mite_attach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xf641d8ff mite_alloc_ring -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_common 0x7b559a67 labpc_common_detach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_common 0xe04ded43 labpc_common_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_dio200_common 0x702463c2 amplc_dio200_set_enhance +EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_dio200_common 0xd1484ca1 amplc_dio200_common_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_pc236_common 0x5b74a513 amplc_pc236_common_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x0ddd0675 comedi_8254_load +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x1658d8ea comedi_8254_pacer_enable +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x173ffeae comedi_8254_write +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x3db15b06 comedi_8254_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x40bca533 comedi_8254_mm_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x4fe57fb7 comedi_8254_update_divisors +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x7fbbbeda comedi_8254_set_busy +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xa4d7f85c comedi_8254_read +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xb0bf6888 comedi_8254_status +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xd3131017 comedi_8254_subdevice_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xdde4a56e comedi_8254_cascade_ns_to_timer +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xe069146b comedi_8254_set_mode +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xf89a71f5 comedi_8254_ns_to_timer +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0x26c0b647 subdev_8255_regbase +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0x366507e2 subdev_8255_mm_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0xb64137e1 subdev_8255_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/das08 0x2cbb9b83 das08_common_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x1837f92b mite_dma_arm +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x1bd89b31 mite_alloc_ring +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x2498f92a mite_detach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x2da95543 mite_release_channel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x41a855d3 mite_prep_dma +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x4f72c8d7 mite_init_ring_descriptors +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x6272df08 mite_request_channel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x78030680 mite_buf_change +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x96123c90 mite_done +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xa03d2e8a mite_sync_dma +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xafc4de2f mite_ack_linkc +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xb8e68e2b mite_bytes_in_transit +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xbe942215 mite_dma_disarm +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xcada9842 mite_free_ring +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xccd6e8dc mite_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xce7db767 mite_request_channel_in_range +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_common 0xf9ff0287 labpc_common_detach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_common 0xfb851096 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 @@ -12240,903 +12278,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 0x0b634342 ni_tio_set_routing -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x13dff40b ni_tio_get_routing -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x1513f2d0 ni_tio_get_soft_copy -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x328a38e0 ni_gpct_device_construct -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x43c98975 ni_tio_unset_routing -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x6d89d58f ni_tio_read -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x77a29001 ni_tio_insn_config -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x785052ba ni_tio_set_bits -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x879193e2 ni_tio_insn_read -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x9436799e ni_tio_write -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x94791fbf ni_tio_arm -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x9c031af8 ni_gpct_device_destroy -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xa55275da ni_tio_insn_write -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xb45265e4 ni_tio_init_counter -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xd0529c70 ni_tio_set_gate_src -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xdbe22b73 ni_tio_set_gate_src_raw -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x13e55959 ni_tio_set_mite_channel -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x1c9cf31a ni_tio_cmd -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x398878cf ni_tio_cancel -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x3dd90925 ni_tio_handle_interrupt -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x3ddbb1bd ni_tio_acknowledge -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xaa3c32f6 ni_tio_cmdtest -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x0ff07300 comedi_dio_get_config -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x43edfb41 comedi_open -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x741a4960 comedi_find_subdevice_by_type -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x8ca0d62f comedi_get_n_channels -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x9b9cc233 comedi_close -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xd730561f comedi_dio_config -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xfc34d304 comedi_dio_bitfield2 +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x378ad76f ni_tio_set_bits +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x517810dc ni_tio_insn_read +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x5e8533bb ni_tio_write +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x5eca922b ni_tio_set_gate_src_raw +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x6073bfc5 ni_gpct_device_construct +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x6ecaa089 ni_tio_get_soft_copy +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x85430a09 ni_tio_insn_config +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x94c3bb9b ni_tio_read +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xabd70f5e ni_tio_arm +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xae67f6c8 ni_tio_insn_write +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xaf2b246e ni_tio_set_gate_src +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xc069fa27 ni_tio_unset_routing +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xc3c3b3e6 ni_gpct_device_destroy +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xc47e903e ni_tio_init_counter +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xc4e26d7c ni_tio_set_routing +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xef2f22ce ni_tio_get_routing +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x11a9a9cd ni_tio_cmd +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x1f359a89 ni_tio_acknowledge +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x32702b1b ni_tio_cmdtest +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x5b4022e2 ni_tio_handle_interrupt +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x7bb0d5b0 ni_tio_set_mite_channel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xa2f436bb ni_tio_cancel +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x0c5b1b0c comedi_close +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x276f867e comedi_dio_bitfield2 +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x334ce024 comedi_find_subdevice_by_type +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x592e8709 comedi_open +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x6af479f0 comedi_get_n_channels +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xe5964a8f comedi_dio_get_config +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xf6da8534 comedi_dio_config EXPORT_SYMBOL_GPL drivers/counter/counter 0x01aab51b counter_count_direction_str -EXPORT_SYMBOL_GPL drivers/counter/counter 0x085dbb89 counter_device_enum_write -EXPORT_SYMBOL_GPL drivers/counter/counter 0x3db9d723 counter_register -EXPORT_SYMBOL_GPL drivers/counter/counter 0x3dc6826e counter_device_enum_read -EXPORT_SYMBOL_GPL drivers/counter/counter 0x437757ce counter_count_enum_available_read -EXPORT_SYMBOL_GPL drivers/counter/counter 0x4d8f63f7 counter_count_enum_read -EXPORT_SYMBOL_GPL drivers/counter/counter 0x7061d383 counter_device_enum_available_read -EXPORT_SYMBOL_GPL drivers/counter/counter 0x8054e547 counter_signal_enum_available_read -EXPORT_SYMBOL_GPL drivers/counter/counter 0x83d0378d counter_count_enum_write -EXPORT_SYMBOL_GPL drivers/counter/counter 0x8436a8d8 counter_signal_enum_write -EXPORT_SYMBOL_GPL drivers/counter/counter 0xaef36d58 counter_signal_enum_read -EXPORT_SYMBOL_GPL drivers/counter/counter 0xd74e3409 devm_counter_register +EXPORT_SYMBOL_GPL drivers/counter/counter 0x04085ddd counter_signal_enum_available_read +EXPORT_SYMBOL_GPL drivers/counter/counter 0x065c4b3b counter_signal_enum_write +EXPORT_SYMBOL_GPL drivers/counter/counter 0x2fea4cc9 devm_counter_unregister +EXPORT_SYMBOL_GPL drivers/counter/counter 0x44187353 devm_counter_register +EXPORT_SYMBOL_GPL drivers/counter/counter 0x469ca63e counter_device_enum_read +EXPORT_SYMBOL_GPL drivers/counter/counter 0x484079dd counter_device_enum_available_read +EXPORT_SYMBOL_GPL drivers/counter/counter 0x8982480b counter_device_enum_write +EXPORT_SYMBOL_GPL drivers/counter/counter 0x8a9c8510 counter_unregister +EXPORT_SYMBOL_GPL drivers/counter/counter 0x8dfb8074 counter_count_enum_read +EXPORT_SYMBOL_GPL drivers/counter/counter 0x9ecebb31 counter_count_enum_write +EXPORT_SYMBOL_GPL drivers/counter/counter 0xb77049e1 counter_count_enum_available_read +EXPORT_SYMBOL_GPL drivers/counter/counter 0xdeef88a7 counter_register +EXPORT_SYMBOL_GPL drivers/counter/counter 0xe597bcc4 counter_signal_enum_read EXPORT_SYMBOL_GPL drivers/counter/counter 0xee526d0f counter_count_mode_str -EXPORT_SYMBOL_GPL drivers/counter/counter 0xf0269c2e devm_counter_unregister -EXPORT_SYMBOL_GPL drivers/counter/counter 0xf2b63b10 counter_unregister +EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x013e0b21 ccp_enqueue_cmd 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 0x7d5587ad ccp_enqueue_cmd -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x0bec7b68 hisi_qm_uninit -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x14266ed0 hisi_qp_send -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x1ab82b67 hisi_qm_reset_done -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x1f348c20 hisi_qm_dev_err_init -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x27b8550f hisi_acc_create_sgl_pool -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x29d78f82 hisi_qm_dev_err_uninit -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x2c40b2de hisi_qm_stop_qp -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x3580e7b6 hisi_qm_debug_regs_clear -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x39c54f87 hisi_qm_create_qp -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x3e00e750 hisi_qm_wait_task_finish -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x451b0432 hisi_qm_init -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x47c011b9 hisi_qm_alloc_qps_node -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x49e40172 hisi_qm_sriov_disable -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x607f594a hisi_qm_get_free_qp_num -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x66f5fa03 hisi_qm_debug_init -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x6b1a338d hisi_qm_get_dfx_access -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x7e74349c hisi_qm_sriov_enable -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x8b52ea09 hisi_qm_sriov_configure -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x9193cc60 hisi_qm_release_qp -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x977b4740 hisi_acc_free_sgl_pool -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x9c43dd3a hisi_qm_dev_shutdown -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x9f408ba0 hisi_qm_start_qp -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xa1fae6f3 hisi_qm_suspend -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xa578a9d7 hisi_acc_sg_buf_unmap -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xa86c3a47 hisi_qm_regs_dump -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xae4ea8d0 hisi_qm_dev_err_detected -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xc25946e7 hisi_qm_put_dfx_access -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xc27ae729 hisi_qm_alg_unregister -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xcc118e91 hisi_acc_sg_buf_map_to_hw_sgl -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xccaf6a1f hisi_qm_dev_slot_reset -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xd201503c hisi_qm_pm_uninit -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xdfd4a89b hisi_qm_stop -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xe17cd9e3 hisi_qm_pm_init -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xe3f2a3cd hisi_qm_free_qps -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xe479e23c hisi_qm_resume -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xe4c8f3b4 hisi_qm_start -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xf929e791 hisi_qm_reset_prepare -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xfcfae667 hisi_qm_get_vft -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xfd7e48fb hisi_qm_alg_register -EXPORT_SYMBOL_GPL drivers/crypto/marvell/octeontx/octeontx-cpt 0x21678b06 otx_cpt_eng_grp_has_eng_type +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x12f7c5f1 hisi_qm_pm_init +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x161d6c98 hisi_acc_create_sgl_pool +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x16819374 hisi_qm_free_qps +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x22f47c79 hisi_qm_dev_shutdown +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x28238700 hisi_qm_start +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x29489ebb hisi_qm_release_qp +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x2bf50776 hisi_qm_get_free_qp_num +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x345a1e7b hisi_acc_sg_buf_map_to_hw_sgl +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x3a474921 hisi_qm_alloc_qps_node +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x3cfbcfc8 hisi_qm_alg_register +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x3e56a48c hisi_qm_suspend +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x41c7ef64 hisi_qm_start_qp +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x41d19700 hisi_qm_sriov_enable +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x47add409 hisi_qm_dev_err_uninit +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x5f75abd6 hisi_qm_wait_task_finish +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x6755025d hisi_qm_create_qp +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x6f2f59d8 hisi_acc_free_sgl_pool +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x7c58a959 hisi_qm_get_dfx_access +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x94545a4c hisi_qm_sriov_disable +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x9c94513f hisi_qm_stop +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x9dfc99cc hisi_qm_uninit +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xa6bac74a hisi_qm_pm_uninit +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xabcdf787 hisi_qm_get_vft +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xaddc14f8 hisi_qm_dev_err_detected +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xaeb82beb hisi_qm_stop_qp +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xb73cbd4d hisi_qm_regs_dump +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xb975c7d7 hisi_qm_debug_init +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xc0a37cf3 hisi_qm_sriov_configure +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xc41bb1b8 hisi_qm_put_dfx_access +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xc51e6bb5 hisi_qm_resume +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xcd0d020f hisi_qm_reset_done +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xd1d6282e hisi_qm_debug_regs_clear +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xeb673ed7 hisi_qm_init +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xf128bb37 hisi_qm_dev_slot_reset +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xf2960ca5 hisi_qm_reset_prepare +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xf351354f hisi_acc_sg_buf_unmap +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xf50f42bd hisi_qm_alg_unregister +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xf59aff67 hisi_qm_dev_err_init +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xff51aeca hisi_qp_send EXPORT_SYMBOL_GPL drivers/crypto/marvell/octeontx/octeontx-cpt 0x32e43048 otx_cpt_uc_supports_eng_type -EXPORT_SYMBOL_GPL drivers/dax/device_dax 0xbbc0c1ec dev_dax_probe -EXPORT_SYMBOL_GPL drivers/dax/pmem/dax_pmem_core 0xfd265007 __dax_pmem_probe -EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0x197ca46c dw_edma_probe -EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0x367f194f dw_edma_remove -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x07750523 dw_dma_acpi_controller_free -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x2931ff0c idma32_dma_probe -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x309fd33b dw_dma_acpi_controller_register -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x377ed219 idma32_dma_remove -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x8e7551fa dw_dma_probe -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xcf6ecb55 do_dw_dma_enable -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xe54196e0 dw_dma_remove -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xeeb30852 do_dw_dma_disable -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xfa17c68f dw_dma_filter -EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x1113c82a dpdmai_get_rx_queue -EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x1efee114 dpdmai_get_attributes -EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x4010f639 dpdmai_destroy -EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x869081e2 dpdmai_get_tx_queue -EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x8808f773 dpdmai_set_rx_queue -EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0xa7c6678b dpdmai_reset -EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0xbb7ce146 dpdmai_open -EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0xbda38621 dpdmai_enable -EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0xd442c02c dpdmai_close -EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0xfd3d2544 dpdmai_disable -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x05db27b9 fsl_edma_tx_status -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x097d1db8 fsl_edma_disable_request -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x0d361106 fsl_edma_free_desc -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x1d66f5cd fsl_edma_cleanup_vchan -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x21135812 fsl_edma_free_chan_resources -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x2edec76e fsl_edma_prep_dma_cyclic -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x33ae571c fsl_edma_slave_config -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x40a3ec86 fsl_edma_resume -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x638e7437 fsl_edma_alloc_chan_resources -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x8e38fdc9 fsl_edma_xfer_desc -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x9052bfb2 fsl_edma_pause -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xa2969344 fsl_edma_terminate_all -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xadec3c4a fsl_edma_setup_regs -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xb0ad1cc8 fsl_edma_issue_pending -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xf49f15ae fsl_edma_prep_slave_sg -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xf6e108b4 fsl_edma_chan_mux -EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0x604a9f4a hidma_mgmt_setup -EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0x6996b2cc hidma_mgmt_init_sys +EXPORT_SYMBOL_GPL drivers/crypto/marvell/octeontx/octeontx-cpt 0xd55006bb otx_cpt_eng_grp_has_eng_type +EXPORT_SYMBOL_GPL drivers/dax/device_dax 0x91b87ff3 dev_dax_probe +EXPORT_SYMBOL_GPL drivers/dax/pmem/dax_pmem_core 0xd9d98e74 __dax_pmem_probe +EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0x0f578550 dw_edma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0x324c3307 dw_edma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x1da7e41f dw_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xaafbb83c idma32_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xb9c4539d idma32_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xcc5b79a7 dw_dma_filter +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xd3724d02 dw_dma_acpi_controller_register +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xd3f790fa do_dw_dma_enable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xd4553061 dw_dma_acpi_controller_free +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xf29a47f5 do_dw_dma_disable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xf95a06b3 dw_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x0c12297f dpdmai_close +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x547a3666 dpdmai_disable +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x584d1161 dpdmai_get_rx_queue +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x799ebe6b dpdmai_get_attributes +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x7bfc728c dpdmai_open +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x9b2694fe dpdmai_destroy +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0xb7ebfce9 dpdmai_reset +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0xba084ae3 dpdmai_get_tx_queue +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0xddfdadf6 dpdmai_set_rx_queue +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0xe75ef728 dpdmai_enable +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x09629eba fsl_edma_pause +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x1cc901ac fsl_edma_tx_status +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x28594916 fsl_edma_chan_mux +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x2e0d1629 fsl_edma_terminate_all +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x3eaabe46 fsl_edma_disable_request +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x551aadc6 fsl_edma_issue_pending +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x57543d92 fsl_edma_prep_slave_sg +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x5d63f75b fsl_edma_xfer_desc +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x835d9193 fsl_edma_free_desc +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x8c2ee299 fsl_edma_slave_config +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x9d27513b fsl_edma_setup_regs +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xb5bf27e6 fsl_edma_resume +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xb9c8fa49 fsl_edma_alloc_chan_resources +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xbf1bbab2 fsl_edma_prep_dma_cyclic +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xc9fa4592 fsl_edma_cleanup_vchan +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xdec7b022 fsl_edma_free_chan_resources +EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0x498ec76f hidma_mgmt_setup +EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0x72ff8aaa hidma_mgmt_init_sys EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0xe86fb5c7 fw_card_release -EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0x4ec66ac4 ffa_device_register -EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0x951e6c01 ffa_driver_unregister -EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0x9d7d0c18 ffa_dev_ops_get -EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0xc83d14c8 ffa_driver_register -EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0xdbce084b ffa_bus_type -EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0xf4b68500 ffa_device_unregister -EXPORT_SYMBOL_GPL drivers/firmware/arm_scpi 0x19dbac81 get_scpi_ops +EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0x12d64a16 ffa_driver_register +EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0x26a9401f ffa_device_unregister +EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0x618cb7b1 ffa_driver_unregister +EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0x6d74b198 ffa_dev_ops_get +EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0x8eef6216 ffa_device_register +EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0xc5d0391d ffa_bus_type +EXPORT_SYMBOL_GPL drivers/firmware/arm_scpi 0x0353c7c8 get_scpi_ops EXPORT_SYMBOL_GPL drivers/firmware/stratix10-svc 0x0e7b7015 stratix10_svc_done -EXPORT_SYMBOL_GPL drivers/firmware/stratix10-svc 0x3fdf21e6 stratix10_svc_request_channel_byname EXPORT_SYMBOL_GPL drivers/firmware/stratix10-svc 0x41d5ad1c stratix10_svc_allocate_memory +EXPORT_SYMBOL_GPL drivers/firmware/stratix10-svc 0x4c0f1c38 stratix10_svc_request_channel_byname EXPORT_SYMBOL_GPL drivers/firmware/stratix10-svc 0x50f5368a stratix10_svc_free_channel EXPORT_SYMBOL_GPL drivers/firmware/stratix10-svc 0x595b630e stratix10_svc_free_memory EXPORT_SYMBOL_GPL drivers/firmware/stratix10-svc 0xd3df684d stratix10_svc_send -EXPORT_SYMBOL_GPL drivers/fpga/altera-pr-ip-core 0x37b421b7 alt_pr_register -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x06ff446d dfl_feature_ioctl_set_irq -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x07fb3141 dfl_fpga_dev_ops_unregister -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x0c903e43 dfl_fpga_dev_ops_register -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x0ea55bde dfl_fpga_enum_info_add_dfl -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x243eb77b dfl_fpga_dev_feature_init -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x508d55df dfl_fpga_dev_feature_uinit -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x52ba2aee dfl_fpga_set_irq_triggers -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x5bb00e18 dfl_fpga_port_ops_put -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x5d305205 dfl_fpga_cdev_release_port -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x79f6bf29 dfl_feature_ioctl_get_num_irqs -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x91a31903 dfl_fpga_enum_info_add_irq -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x9268fd5b dfl_fpga_enum_info_free -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xacd9f644 dfl_fpga_feature_devs_remove -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xae1ca595 dfl_fpga_enum_info_alloc -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xaf74600b dfl_fpga_port_ops_del -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xbc165753 dfl_fpga_cdev_assign_port -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xcd674645 dfl_fpga_port_ops_add -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xe06398dd __dfl_fpga_cdev_find_port -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xe295af32 dfl_fpga_port_ops_get -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xe8fb400b dfl_fpga_feature_devs_enumerate -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xea492866 dfl_fpga_check_port_id -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xfb3333b5 dfl_fpga_cdev_config_ports_pf -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xffd56284 dfl_fpga_cdev_config_ports_vf +EXPORT_SYMBOL_GPL drivers/fpga/altera-pr-ip-core 0xb7968e80 alt_pr_register +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x104a5c00 dfl_fpga_cdev_release_port +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x1854abaf __dfl_fpga_cdev_find_port +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x20c0edc7 dfl_fpga_cdev_assign_port +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x2a6aa77e dfl_fpga_feature_devs_enumerate +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x3d0723ca dfl_fpga_cdev_config_ports_vf +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x4435a903 dfl_fpga_dev_feature_uinit +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x48efcb5a dfl_fpga_dev_ops_unregister +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x496c8aae dfl_fpga_check_port_id +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x4f672cb3 dfl_fpga_port_ops_get +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x5034c957 dfl_fpga_feature_devs_remove +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x50fe048c dfl_feature_ioctl_get_num_irqs +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x616fedad dfl_fpga_set_irq_triggers +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x7a466b20 dfl_fpga_enum_info_free +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xa1a36e87 dfl_feature_ioctl_set_irq +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xab5af8c1 dfl_fpga_enum_info_add_irq +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xb1d562ef dfl_fpga_port_ops_del +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xc08c457d dfl_fpga_port_ops_put +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xc27b583a dfl_fpga_port_ops_add +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xc5cc6a67 dfl_fpga_enum_info_add_dfl +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xe60e8e7d dfl_fpga_enum_info_alloc +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xe7a69f58 dfl_fpga_cdev_config_ports_pf +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xedbc98af dfl_fpga_dev_feature_init +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xffa4d83b dfl_fpga_dev_ops_register EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x0633c4b9 fpga_bridges_enable EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x0b2b884c fpga_bridges_put -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x1828652e fpga_bridge_create -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x2280b7c7 fpga_bridge_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x27bb902a fpga_bridge_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x2636a6d4 fpga_bridge_disable EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x2c8167cf fpga_bridges_disable -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x303ed69b of_fpga_bridge_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x324c7979 of_fpga_bridge_get_to_list -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x44f13f5a fpga_bridge_free -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x4e863458 devm_fpga_bridge_create -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x740497f5 fpga_bridge_put -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xa6a15f61 fpga_bridge_disable -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xc06ffec4 fpga_bridge_unregister -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xc6626150 fpga_bridge_get_to_list -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xd70cd845 fpga_bridge_enable -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x0252d256 fpga_mgr_register -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x0d1e8065 devm_fpga_mgr_register -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x149d22df fpga_image_info_free -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x2f792e46 fpga_mgr_free -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x3f0f3cf0 devm_fpga_mgr_create -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x462db66c of_fpga_mgr_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x5125c6da fpga_mgr_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x5ebc73ee fpga_mgr_lock -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x6d6e9449 fpga_mgr_unregister -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xaf656b11 fpga_image_info_alloc -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xb4a7748f fpga_mgr_unlock -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xbbb6b8e0 fpga_mgr_create -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xc116a584 fpga_mgr_put -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xcff7a22a fpga_mgr_load -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x0b0f44b9 fpga_region_program_fpga -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x102bf1ca fpga_region_free -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x402aab16 fpga_region_class_find -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x4e7c96dd devm_fpga_region_create -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x6be5eeb8 fpga_region_register -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x92d1a1b1 fpga_region_unregister -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0xd5649ce7 fpga_region_create -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x054d0d93 fsi_device_read -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x0b06fe5d fsi_device_write -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x0f8e96d3 fsi_get_new_minor -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x1825a7be fsi_driver_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x2d557543 fpga_bridge_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x454503e5 fpga_bridge_enable +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x47a258ea devm_fpga_bridge_create +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x4873dbbf of_fpga_bridge_get_to_list +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x5b1edd34 fpga_bridge_create +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x7c6ec954 of_fpga_bridge_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x9730f296 fpga_bridge_get_to_list +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xa98d6633 fpga_bridge_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xc0c31e5e fpga_bridge_free +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xf49009d6 fpga_bridge_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xff31754b fpga_bridge_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x01150750 of_fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x426aa111 fpga_mgr_load +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x51804ec7 fpga_mgr_free +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x545fbff8 fpga_mgr_create +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x80e84117 fpga_mgr_unlock +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x8424b6ca fpga_image_info_alloc +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x8d9ddc06 devm_fpga_mgr_create +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x9a8d1374 fpga_mgr_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x9fb92c2f fpga_image_info_free +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xa05727bf fpga_mgr_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xb94baca3 devm_fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xd66f3f5f fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xe2ca7bce fpga_mgr_lock +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xec23c375 fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x11bdf4ef fpga_region_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x691972f8 fpga_region_create +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x806387f9 fpga_region_class_find +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x8e35ba32 devm_fpga_region_create +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x92565faf fpga_region_program_fpga +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0xb6884e85 fpga_region_free +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0xd5e44eee fpga_region_register +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x0851adb2 fsi_driver_register +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x0e093c71 fsi_cdev_type EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x3a93847e fsi_slave_claim_range -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x493aafb5 fsi_master_register -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x4a07aac5 fsi_master_unregister +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x4d4d2845 fsi_master_rescan +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x574b171c fsi_master_unregister EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x5a57d574 fsi_free_minor -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x670a0362 fsi_master_rescan +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x5f2fa760 fsi_get_new_minor EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x78060f23 fsi_slave_read -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x8e88149c fsi_driver_register -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xc75d4505 fsi_bus_type +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x8f6f37e9 fsi_bus_type +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xa1fbb1f7 fsi_device_read +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xb38ba3c0 fsi_device_write EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xce22aee2 fsi_slave_release_range -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xcf062645 fsi_cdev_type EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xd942f235 fsi_slave_write -EXPORT_SYMBOL_GPL drivers/fsi/fsi-occ 0x39d0db50 fsi_occ_submit -EXPORT_SYMBOL_GPL drivers/fsi/fsi-sbefifo 0x222b9ebf sbefifo_parse_status -EXPORT_SYMBOL_GPL drivers/fsi/fsi-sbefifo 0x6fd92afe sbefifo_submit -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x059a3e7d gnss_allocate_device -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x0a85b666 gnss_insert_raw -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x202a670e gnss_register_device -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x33af73eb gnss_deregister_device -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x56079178 gnss_put_device -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x019a2514 gnss_serial_allocate -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x53341b36 gnss_serial_register -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x9041176d gnss_serial_free -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0xa80a983d gnss_serial_deregister -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0xb56e337b gnss_serial_pm_ops -EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x558a88a2 __max730x_probe -EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0xe387d32c __max730x_remove -EXPORT_SYMBOL_GPL drivers/gpio/gpio-regmap 0x3bdae4f2 devm_gpio_regmap_register -EXPORT_SYMBOL_GPL drivers/gpio/gpio-regmap 0x4874b173 gpio_regmap_register +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xde731056 fsi_master_register +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xe8cc2046 fsi_driver_unregister +EXPORT_SYMBOL_GPL drivers/fsi/fsi-occ 0xeae87e6b fsi_occ_submit +EXPORT_SYMBOL_GPL drivers/fsi/fsi-sbefifo 0x36d79c3b sbefifo_submit +EXPORT_SYMBOL_GPL drivers/fsi/fsi-sbefifo 0xd2610374 sbefifo_parse_status +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x2f71a2a5 gnss_deregister_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x674e611c gnss_allocate_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x8cb7e813 gnss_insert_raw +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0xdd04ac0b gnss_register_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0xe672a7eb gnss_put_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x05a9db6b gnss_serial_allocate +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x28d4d8b3 gnss_serial_register +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x2b0e8bd2 gnss_serial_free +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0xc0436ca0 gnss_serial_pm_ops +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0xfd817d7e gnss_serial_deregister +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0xa7e04fb3 __max730x_probe +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0xf3163e3a __max730x_remove +EXPORT_SYMBOL_GPL drivers/gpio/gpio-regmap 0x030b5d57 devm_gpio_regmap_register EXPORT_SYMBOL_GPL drivers/gpio/gpio-regmap 0x496ce291 gpio_regmap_get_drvdata +EXPORT_SYMBOL_GPL drivers/gpio/gpio-regmap 0x77d64f0a gpio_regmap_register EXPORT_SYMBOL_GPL drivers/gpio/gpio-regmap 0xb7066570 gpio_regmap_unregister -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x145d1aa2 analogix_dp_start_crc -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x188ea1c4 analogix_dp_remove -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x28eb1a38 analogix_dp_stop_crc +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x29a1d9a9 analogix_dp_bind +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x2f145335 analogix_dp_start_crc EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x3ee0dd60 anx_dp_aux_transfer -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x8ccfd0ee analogix_dp_suspend -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xba159e11 analogix_dp_unbind -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xc79f39f6 analogix_dp_probe -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xdaeec1a1 analogix_dp_bind -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xe5d0c54b analogix_dp_resume +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x47809317 analogix_dp_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x9ae57a10 analogix_dp_resume +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xa9b44a0d analogix_dp_stop_crc +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xc5147de5 analogix_dp_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xca8e9076 analogix_dp_suspend +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xcbae12f1 analogix_dp_unbind 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 0x0d79050a 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 0x157e02b6 dw_hdmi_phy_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 0x42926f4a dw_hdmi_resume -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x4650c270 dw_hdmi_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x4423fd92 dw_hdmi_set_high_tmds_clock_ratio EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x4a9b174f dw_hdmi_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x55c5061c dw_hdmi_set_plugged_cb EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x6712b5a7 dw_hdmi_phy_gen2_txpwron +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x6a38257f 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 0x9477a08b 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 0xb6637710 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 0xe238793c dw_hdmi_bind 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 0x15f0e102 dw_mipi_dsi_bind -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-mipi-dsi 0x37d3edaa 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 0x4281a061 dw_mipi_dsi_bind EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-mipi-dsi 0x42ac3b2e dw_mipi_dsi_remove -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x01e66943 drm_gem_shmem_mmap -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x03839afb drm_class_device_register -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x051c2e45 of_get_drm_display_mode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x0a80f6f8 drm_gem_dumb_map_offset -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x0b4668bf drm_gem_cma_free_object -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x16beec22 drm_bridge_hpd_notify -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x1ceebd4d drm_gem_cma_vmap -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x341d03a8 drm_gem_cma_get_sg_table -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x3c6bcbbd drm_gem_shmem_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x43c72bac drm_gem_cma_dumb_create_internal -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x449561ad drm_of_component_match_add -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x5b072744 drm_bridge_detect -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x623194bc drm_class_device_unregister +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-mipi-dsi 0x486cf5d0 dw_mipi_dsi_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x08c51ced drm_gem_cma_dumb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x0b81ef6a drm_bridge_detect +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x10ebe6fd drm_gem_shmem_free_object +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x207be2e6 drm_gem_shmem_mmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x24d04bc7 drm_gem_shmem_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x2528d594 drm_bridge_hpd_notify +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x2ee3bad9 drm_get_unmapped_area +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x35641497 drm_do_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x3c9bb561 of_get_drm_display_mode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x3e61c0f6 drm_gem_shmem_get_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x44a4786b drm_gem_shmem_dumb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x5283e822 drm_crtc_add_crc_entry +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x5c716ee8 drm_of_component_match_add +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x5deb387c drm_of_encoder_active_endpoint EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x66cf2f64 drm_display_mode_from_videomode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x6d4c87e1 drm_bridge_get_modes -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x6daa9f3e drmm_kstrdup -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x71fcf388 drm_gem_shmem_get_pages_sgt -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x784b879d drm_gem_cma_vm_ops -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x797b82fd drm_bridge_get_edid -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x7ff1fd0d drm_gem_shmem_prime_import_sg_table -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x846eb0ec drm_gem_cma_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x8f4d471e drm_of_encoder_active_endpoint -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x9304752f drm_gem_cma_prime_import_sg_table -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x9dc0aa8a drm_bridge_hpd_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x7700fb83 drm_bridge_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x7b8ff167 drm_class_device_register +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x8159ee5d drm_class_device_unregister +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x849155ff drm_gem_cma_free_object +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x983db88a drmm_kstrdup +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x9cb8005f drm_hdcp_check_ksvs_revoked +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x9f98821d drm_gem_cma_mmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xa0892f9b drm_of_find_panel_or_bridge +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xa5ea3264 drm_gem_shmem_get_pages_sgt EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xad885165 drm_bus_flags_from_videomode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xb5ca9ac7 drm_crtc_add_crc_entry -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xbadd3ced drm_gem_shmem_free_object -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xd1afa19a drm_hdcp_check_ksvs_revoked -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xd86874b2 drm_get_unmapped_area -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xde80a6ce drm_bridge_hpd_enable -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xe1d9cd17 drm_gem_shmem_get_sg_table -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xe6c5af50 drm_do_get_edid -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xe89d1fff drm_of_lvds_get_dual_link_pixel_order -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xec779147 drm_gem_cma_dumb_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xee85eefc drm_of_find_panel_or_bridge -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xf4a29321 drm_gem_cma_mmap -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xfb37c891 drm_gem_shmem_dumb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xb5101ed5 drm_gem_shmem_prime_import_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xb75ebec0 drm_of_lvds_get_dual_link_pixel_order +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xb7fcdf54 drm_gem_cma_dumb_create_internal +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xc045e896 drm_gem_cma_vmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xc2504199 drm_bridge_hpd_enable +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xcb70b717 drm_gem_cma_get_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xdf0527fe drm_gem_dumb_map_offset +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xe462b087 drm_gem_cma_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xe91261a4 drm_gem_cma_prime_import_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xeaa5cf10 drm_gem_cma_vm_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xece38848 drm_bridge_get_modes +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xfa91496c drm_bridge_hpd_disable EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xfe9f72f3 drm_display_mode_to_videomode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dp_aux_bus 0xad744f69 of_dp_aux_depopulate_ep_devices -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dp_aux_bus 0xc3d3d21e devm_of_dp_aux_populate_ep_devices -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dp_aux_bus 0xc5d23164 dp_aux_dp_driver_unregister -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dp_aux_bus 0xe62b761c __dp_aux_dp_driver_register -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x0140f203 drm_gem_fb_create_with_funcs -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x218c8b25 drm_gem_fb_init_with_funcs -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x2279a4b4 drm_bridge_connector_disable_hpd -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x5e2fe412 drm_fb_cma_get_gem_obj -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x676f0e56 drm_gem_fb_create_with_dirty -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x7c007ad0 drm_gem_plane_helper_prepare_fb -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x9b332694 drm_gem_fb_afbc_init -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xb3b1670e drm_gem_fb_get_obj -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xc16ac910 drm_fb_cma_get_gem_addr -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xcc30d9b8 drm_gem_fb_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xe336a593 drm_bridge_connector_enable_hpd -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xe9bc6a1c drm_bridge_connector_init -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xfc444abd drm_fb_cma_sync_non_coherent +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dp_aux_bus 0x0ac41057 of_dp_aux_depopulate_ep_devices +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dp_aux_bus 0x170d5cd5 dp_aux_dp_driver_unregister +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dp_aux_bus 0x2d34f07b devm_of_dp_aux_populate_ep_devices +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dp_aux_bus 0x333bf9c8 __dp_aux_dp_driver_register +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x0a33c55f drm_bridge_connector_disable_hpd +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x15801fd8 drm_fb_cma_get_gem_addr +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x31f2e2b7 drm_fb_cma_sync_non_coherent +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x41db6597 drm_gem_plane_helper_prepare_fb +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x4edf81ff drm_bridge_connector_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x5b98584c drm_gem_fb_get_obj +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x63a4ae2a drm_gem_fb_create_with_funcs +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x6d3555d9 drm_bridge_connector_enable_hpd +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x88244f39 drm_gem_fb_init_with_funcs +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xab316adb drm_gem_fb_afbc_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xb4c63c3e drm_fb_cma_get_gem_obj +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xc2029eec drm_gem_fb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xc623464f drm_gem_fb_create_with_dirty EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x2c73cfcf meson_venc_hdmi_venc_repeat -EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x3c48c5c3 meson_vclk_vic_supported_freq -EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x3d7f034f meson_venc_hdmi_mode_set -EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x5bd0fe86 meson_vclk_setup -EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x82a08d12 meson_vclk_dmt_supported_freq +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x2fee5b85 meson_vclk_vic_supported_freq +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x7b23c569 meson_vclk_dmt_supported_freq +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x92aa0cce 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/panel/panel-samsung-s6e63m0 0x9b396077 s6e63m0_remove -EXPORT_SYMBOL_GPL drivers/gpu/drm/panel/panel-samsung-s6e63m0 0xf158873c s6e63m0_probe -EXPORT_SYMBOL_GPL drivers/gpu/drm/pl111/pl111_drm 0x4ac459e5 pl111_versatile_init -EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0x12762ea4 rcar_cmm_enable -EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0x2b023b29 rcar_cmm_init -EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0x60f5ce1a rcar_cmm_setup -EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0x7504085c rcar_cmm_disable -EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0x7e00282d rcar_lvds_dual_link -EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0x84506eb2 rcar_lvds_clk_disable -EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0xcb4d6abb rcar_lvds_clk_enable -EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0xf65f4a0c rcar_lvds_is_connected -EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0xdcee72a9 rockchip_rgb_init -EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0xeba12efb vop_component_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0xdc7be579 meson_venc_hdmi_mode_set +EXPORT_SYMBOL_GPL drivers/gpu/drm/panel/panel-samsung-s6e63m0 0x3ec1cf19 s6e63m0_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/panel/panel-samsung-s6e63m0 0xc03f3582 s6e63m0_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/pl111/pl111_drm 0x74d97367 pl111_versatile_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0x3154f12c rcar_cmm_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0x4bcaefbe rcar_cmm_setup +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0x92d31fac rcar_cmm_enable +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0xa978f692 rcar_cmm_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0x1b61de8a rcar_lvds_clk_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0x2b146685 rcar_lvds_dual_link +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0x5f39452b rcar_lvds_is_connected +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0xe2204928 rcar_lvds_clk_enable +EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0x46327e0a vop_component_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0xb089c5c1 rockchip_rgb_init EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0xfead7585 rockchip_rgb_fini -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x00e7194e gb_svc_intf_set_power_mode EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x02f46d26 __tracepoint_gb_message_submit -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x06f85327 __traceiter_gb_hd_release -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x099eb836 gb_connection_destroy -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x0aa5cf19 __traceiter_gb_hd_add -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x122b5ad8 gb_hd_shutdown +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x031706c7 gb_connection_disable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x04cdbdb0 gb_operation_create_flags 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 0x1ac396f3 gb_hd_put -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x2ec0f964 gb_operation_unidirectional_timeout -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x336e1791 gb_connection_enable -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x340925af gb_connection_create -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x43979f05 gb_operation_get -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x43d14e07 gb_connection_disable_rx -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x4531b4b7 gb_operation_create_flags -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x5352c5e8 gb_hd_cport_reserve -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x5473f87c gb_interface_request_mode_switch -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x5894b077 __traceiter_gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x17c338bd gb_hd_shutdown +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x1e5fe30a gb_operation_cancel +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x2029cc95 gb_hd_cport_release_reserved +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x20d320d0 gb_connection_disable_forced +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x218ea64d gb_operation_request_send +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x22209c1f gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x252a5494 gb_connection_destroy +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x260eb36d greybus_register_driver +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x274be1ec __traceiter_gb_hd_in +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x29fd4514 gb_operation_put +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x2a84e0b3 gb_svc_intf_set_power_mode +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x398910ba gb_connection_latency_tag_disable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x3c8e22ef gb_operation_get +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x3f88284b gb_operation_sync_timeout +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x44da4500 greybus_deregister_driver +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x46e200db __traceiter_gb_hd_create EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x5ad3f2d7 __tracepoint_gb_hd_add -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x5beefcdf gb_hd_cport_release_reserved EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x5c0a8043 __tracepoint_gb_hd_in +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6035a8f6 greybus_message_sent +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x61432fe5 gb_hd_put EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6213634d __tracepoint_gb_hd_create -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x652ed127 greybus_message_sent -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x68225d04 __traceiter_gb_message_submit +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x630438fd gb_connection_create_flags +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x66811623 gb_operation_response_alloc +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6a234734 gb_operation_get_payload_size_max EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6d3bb9ec __SCK__tp_func_gb_message_submit -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7c91ca02 gb_operation_sync_timeout +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x76ad0aa1 gb_hd_add +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x77c18442 __traceiter_gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7c8bf8a4 gb_connection_enable_tx +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7e1bccd6 gb_hd_cport_reserve EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x81e221fb __SCK__tp_func_gb_hd_create -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x85254c33 gb_connection_latency_tag_disable EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x89f514a1 __SCK__tp_func_gb_hd_in -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x8c6e7c78 gb_hd_output -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x8e9b4064 greybus_deregister_driver -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x903129b3 gb_connection_create_flags -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x9a450c18 gb_operation_get_payload_size_max -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x9c43f35e gb_connection_disable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x8daa76e2 gb_operation_unidirectional_timeout +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x93f87810 gb_operation_result +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x98ce52d7 gb_connection_enable EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xa416e2da __tracepoint_gb_hd_del -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xa7661cac gb_operation_response_alloc -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xa7f39937 gb_operation_cancel -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xa9e57be7 gb_connection_enable_tx -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xb22f398a gb_operation_result -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xb32a66a5 greybus_register_driver -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xb34af835 greybus_data_rcvd -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xbafecaa8 gb_operation_put -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xc2ef1b19 gb_debugfs_get -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd150171c gb_hd_add +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xab795af1 __traceiter_gb_hd_add +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xb3d4e604 __traceiter_gb_hd_release +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xb6a77612 gb_operation_request_send_sync_timeout +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xb6e2a4ae gb_debugfs_get +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xc6ff77b7 gb_connection_disable_rx +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xcab8055d gb_connection_create_offloaded EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd3e646d9 __tracepoint_gb_hd_release -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd996adf3 gb_operation_request_send_sync_timeout -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xda36315c gb_hd_del -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe131e391 gb_connection_disable_forced -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe86d7768 gb_connection_latency_tag_enable -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe93e86f3 __traceiter_gb_hd_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd72966cf gb_connection_latency_tag_enable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe0cf0cb4 gb_connection_create EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xeac79e1a __SCK__tp_func_gb_hd_del -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xec8ab176 gb_connection_create_offloaded -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf00f8be8 gb_hd_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xec51215c gb_hd_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xeca9b176 gb_hd_output EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf107a122 __SCK__tp_func_gb_hd_release -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xfa706db4 gb_operation_request_send -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xfc09619a __traceiter_gb_hd_in -EXPORT_SYMBOL_GPL drivers/hid/hid 0x0033026a hid_parse_report +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf2d90143 __traceiter_gb_message_submit +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf3c5f427 gb_interface_request_mode_switch +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xfa7a89d6 greybus_data_rcvd +EXPORT_SYMBOL_GPL drivers/hid/hid 0x03d61c75 hid_dump_device EXPORT_SYMBOL_GPL drivers/hid/hid 0x05495392 hid_debug -EXPORT_SYMBOL_GPL drivers/hid/hid 0x0b8f9598 hid_hw_start -EXPORT_SYMBOL_GPL drivers/hid/hid 0x0fff79b8 hid_alloc_report_buf +EXPORT_SYMBOL_GPL drivers/hid/hid 0x0d029dc4 hid_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x121dd86b hid_alloc_report_buf +EXPORT_SYMBOL_GPL drivers/hid/hid 0x17bc513b hid_parse_report EXPORT_SYMBOL_GPL drivers/hid/hid 0x19d52f1f hid_quirks_exit -EXPORT_SYMBOL_GPL drivers/hid/hid 0x1b3f7c07 hid_hw_stop -EXPORT_SYMBOL_GPL drivers/hid/hid 0x275c99d4 hid_input_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x2abc63d6 hid_resolv_usage -EXPORT_SYMBOL_GPL drivers/hid/hid 0x30a977be hid_report_raw_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0x3afe6b78 hid_hw_open -EXPORT_SYMBOL_GPL drivers/hid/hid 0x3ff8a89c hidinput_get_led_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0x46cd8aa8 hidinput_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x4e7c488d hid_match_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0x516b95c5 hidinput_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0x6383c31a hid_lookup_quirk -EXPORT_SYMBOL_GPL drivers/hid/hid 0x65f8b34b hid_set_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0x66701673 hid_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x66e203b8 hid_dump_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0x69be1e02 hid_check_keys_pressed -EXPORT_SYMBOL_GPL drivers/hid/hid 0x724f6c9a hid_add_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0x751e8730 hid_open_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x7f2f082d hidinput_find_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0x8425c2a1 hidraw_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0x896e5b5d hidraw_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x1cff5a19 hid_setup_resolution_multiplier +EXPORT_SYMBOL_GPL drivers/hid/hid 0x25a020e0 hidinput_calc_abs_res +EXPORT_SYMBOL_GPL drivers/hid/hid 0x2eb8d26b hid_validate_values +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3c0b54c2 hid_set_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3caa0f0f hid_unregister_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4046545c hidinput_get_led_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x47f116fb hidinput_count_leds +EXPORT_SYMBOL_GPL drivers/hid/hid 0x49cc6b4a hid_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4a255e74 hid_lookup_quirk +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4ea115a6 hid_dump_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x5595e7c2 hid_resolv_usage +EXPORT_SYMBOL_GPL drivers/hid/hid 0x6843de61 hid_hw_open +EXPORT_SYMBOL_GPL drivers/hid/hid 0x6c60b181 hidraw_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x6cdcda57 hidinput_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x817cc162 hid_input_report EXPORT_SYMBOL_GPL drivers/hid/hid 0x8b13a8b8 hid_snto32 -EXPORT_SYMBOL_GPL drivers/hid/hid 0x8cda6d7f hidinput_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x9e16a5d1 hid_allocate_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0x9ed228b9 hid_dump_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0xa48b51ed hid_setup_resolution_multiplier -EXPORT_SYMBOL_GPL drivers/hid/hid 0xa70a9d97 hid_hw_close -EXPORT_SYMBOL_GPL drivers/hid/hid 0xa7493c07 hidraw_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0xac42db11 __hid_register_driver -EXPORT_SYMBOL_GPL drivers/hid/hid 0xac9928ac hidinput_calc_abs_res -EXPORT_SYMBOL_GPL drivers/hid/hid 0xb581f5ab hid_dump_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0xd186c7f1 hid_unregister_driver -EXPORT_SYMBOL_GPL drivers/hid/hid 0xd28496ef hid_field_extract -EXPORT_SYMBOL_GPL drivers/hid/hid 0xd2a1b3ea hidinput_count_leds -EXPORT_SYMBOL_GPL drivers/hid/hid 0xd4bbb5fe hid_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0xd6f3d3f1 hid_compare_device_paths -EXPORT_SYMBOL_GPL drivers/hid/hid 0xd853c985 hid_dump_input -EXPORT_SYMBOL_GPL drivers/hid/hid 0xdd2056c9 hid_validate_values -EXPORT_SYMBOL_GPL drivers/hid/hid 0xe2b23114 hid_register_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0xe592e401 hid_ignore -EXPORT_SYMBOL_GPL drivers/hid/hid 0xf06aa79e __hid_request -EXPORT_SYMBOL_GPL drivers/hid/hid 0xf600ca30 hid_output_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8beae971 hid_debug_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8e9aba0d hid_dump_input +EXPORT_SYMBOL_GPL drivers/hid/hid 0x91782888 hid_register_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x925dbee6 __hid_register_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0x927e0891 hid_add_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x9582b132 hid_open_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x97e5a896 hid_destroy_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa04b45b0 hid_hw_stop +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa0e7f41b hid_ignore +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa4243284 hidinput_find_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xab765bdc hid_match_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xacfe3d7f hid_hw_close +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb21d5d37 hid_allocate_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xbd54643d hid_field_extract +EXPORT_SYMBOL_GPL drivers/hid/hid 0xcaa627ca hidraw_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xcba247ae hidinput_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xcd381383 hidraw_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xcfee1830 hid_report_raw_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd1407d8f hid_compare_device_paths +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd3671783 hid_hw_start +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd9f0c871 hidinput_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xe03bcd94 __hid_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0xe54af46f hid_output_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xe57f7c02 hid_dump_field EXPORT_SYMBOL_GPL drivers/hid/hid 0xfa355613 hid_quirks_init -EXPORT_SYMBOL_GPL drivers/hid/hid 0xfb4b1bbe hid_debug_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0xfc9c541b hid_destroy_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xfaff3573 hid_check_keys_pressed 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 0xa706e9ec roccat_connect -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x16b5178e roccat_common2_receive -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x322d4cc3 roccat_common2_sysfs_write -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x4ce866c5 roccat_common2_send -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x4e331f93 roccat_common2_sysfs_read -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xb72fad46 roccat_common2_device_init_struct -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xdd4356cf roccat_common2_send_with_status -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x01f5f280 sensor_hub_input_get_attribute_info -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x78abb49d hid_sensor_get_usage_index -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x8f1bf08c sensor_hub_set_feature -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xc4f7dfab sensor_hub_device_close -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xce4fc43f sensor_hub_get_feature -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xd272cf39 sensor_hub_input_attr_get_raw_value -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xd2df0e59 sensor_hub_device_open -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xdfc1254c sensor_hub_register_callback -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xf90c3f2a sensor_hub_remove_callback -EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x26014485 i2c_hid_core_probe -EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x362da9fa i2c_hid_core_remove -EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x574ca809 i2c_hid_ll_driver -EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x6707a62b i2c_hid_core_shutdown -EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0xf4f22256 i2c_hid_core_pm -EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0x613aded4 surface_hid_device_add -EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0x94d6e563 surface_hid_device_destroy -EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0xeb4af057 surface_hid_pm_ops -EXPORT_SYMBOL_GPL drivers/hid/uhid 0xbe49b346 uhid_hid_driver -EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x41c12b65 usb_hid_driver -EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x55e51606 hiddev_hid_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x0145e68a hsi_put_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x169c237a hsi_unregister_port_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x2cf0f61d hsi_async -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x3b20837b hsi_add_clients_from_dt -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x440a2333 hsi_new_client -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x4a420e5d hsi_event +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x86c85c38 roccat_connect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x279542f3 roccat_common2_sysfs_read +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x36bbb743 roccat_common2_receive +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x623522c6 roccat_common2_sysfs_write +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x7aaface8 roccat_common2_send_with_status +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xd8aedc4d roccat_common2_send +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xf7a67437 roccat_common2_device_init_struct +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x0ba825aa sensor_hub_device_close +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x275f52f9 sensor_hub_set_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x4712142c sensor_hub_get_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x4a8d1f24 sensor_hub_remove_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x72b65e54 sensor_hub_input_attr_get_raw_value +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x942e2e88 hid_sensor_get_usage_index +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xa5e8ad56 sensor_hub_device_open +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xd14109b6 sensor_hub_register_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xed2497d3 sensor_hub_input_get_attribute_info +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x1dae959f i2c_hid_ll_driver +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x4031ef25 i2c_hid_core_probe +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x68a25c5f i2c_hid_core_remove +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x69613ea8 i2c_hid_core_shutdown +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x84769b94 i2c_hid_core_pm +EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0x0b962185 surface_hid_device_destroy +EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0x63889083 surface_hid_pm_ops +EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0xdc656b8e surface_hid_device_add +EXPORT_SYMBOL_GPL drivers/hid/uhid 0x79ce96ca uhid_hid_driver +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x1482ba63 hiddev_hid_event +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x4696023e usb_hid_driver +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x06c31ee7 hsi_new_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x17e6515e hsi_async +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x1bb6aa60 hsi_claim_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x294b76e1 hsi_unregister_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x2f9a7c0c hsi_register_port_event EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5210a5bf hsi_board_list -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x587f2c01 hsi_claim_port -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x611ff20a hsi_port_unregister_clients -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x85a7fd34 hsi_register_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x89dfce0d hsi_remove_client -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x8d73881b hsi_free_msg -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x9726b18d hsi_register_client_driver -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xa9f2d906 hsi_alloc_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xbcce7874 hsi_unregister_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xc6e25857 hsi_register_port_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xdafbbf26 hsi_alloc_msg -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xdca1451e hsi_get_channel_id_by_name -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xe760ab93 hsi_release_port -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x04106b97 vmbus_setevent -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x28a5f6a5 vmbus_connect_ring -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x294d7666 vmbus_alloc_ring -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x2d9a4411 vmbus_next_request_id +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x577cc761 hsi_alloc_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x9d3af4c3 hsi_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xade9248f hsi_free_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xb4f34ad9 hsi_add_clients_from_dt +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xc046a365 hsi_unregister_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xd03b3477 hsi_remove_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xd331f160 hsi_register_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xe46e4622 hsi_register_client_driver +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xe6934178 hsi_alloc_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xf00e03d0 hsi_port_unregister_clients +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xf57ba5e2 hsi_get_channel_id_by_name +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xfa458216 hsi_put_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xfe8ecf0e hsi_release_port +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x08e0fdf3 vmbus_set_chn_rescind_callback +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x0ecda43c vmbus_set_event +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x185f51d1 vmbus_hvsock_device_unregister +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x1915f909 vmbus_sendpacket_pagebuffer +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x2fcd30d8 vmbus_establish_gpadl 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 0x40752209 vmbus_sendpacket_mpb_desc -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x449fbfc9 vmbus_disconnect_ring +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x38568a98 hv_pkt_iter_first +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x3bcc1f8b vmbus_recvpacket_raw EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x46a417ca vmbus_proto_version EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x4b2210b8 vmbus_send_tl_connect_request -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x4e7af349 vmbus_teardown_gpadl -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x53b6af5f vmbus_are_subchannels_present -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x567fe776 vmbus_open -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x57b4e944 vmbus_hvsock_device_unregister +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x5125b4a3 vmbus_are_subchannels_present +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x585257c0 vmbus_allocate_mmio +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x5b449c0c __hv_pkt_iter_next +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x5dde9cca vmbus_request_addr +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x5ef39687 vmbus_open EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x674e657e hv_ringbuffer_get_debuginfo -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x685cfca8 vmbus_set_chn_rescind_callback -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x6861226a vmbus_connection -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x90f87c09 vmbus_sendpacket_pagebuffer -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x9211de55 hv_pkt_iter_first -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x9257302d vmbus_send_modifychannel -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x9343de7a vmbus_close -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x971e1031 hv_pkt_iter_first_raw -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xb33f1d19 vmbus_request_addr -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xbdb4d9c7 vmbus_free_ring -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xc9f4620a __hv_pkt_iter_next -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xcc089877 vmbus_set_sc_create_callback -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xce55975d vmbus_set_event -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xd2820b73 vmbus_establish_gpadl -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xd69fe7cd vmbus_allocate_mmio -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xe642d133 vmbus_driver_unregister -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xee4d2716 hv_pkt_iter_close -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xf5d2dd44 __vmbus_driver_register -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xfe6a0c3b vmbus_recvpacket_raw -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x19a4cb89 adt7x10_remove -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x204ef019 adt7x10_dev_pm_ops -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0xb94e8cb3 adt7x10_probe +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x71ae89e5 hv_pkt_iter_first_raw +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x773f3bbc vmbus_sendpacket_mpb_desc +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x812fd139 vmbus_send_modifychannel +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x890c45f5 vmbus_connection +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x92bae7ca vmbus_alloc_ring +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xa6195acb vmbus_next_request_id +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xaa2ce83f vmbus_teardown_gpadl +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xae0c399a vmbus_disconnect_ring +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xc2ad9bd1 vmbus_driver_unregister +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xc32e36bc vmbus_setevent +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xc994244a vmbus_set_sc_create_callback +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xe4b8073d vmbus_free_ring +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xe5f00636 __vmbus_driver_register +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xe69e14ed vmbus_close +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xf5078a1b vmbus_connect_ring +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xf539ee18 hv_pkt_iter_close +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x009f8cd3 adt7x10_dev_pm_ops +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x8a6dec20 adt7x10_remove +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0xe7dae4e0 adt7x10_probe EXPORT_SYMBOL_GPL drivers/hwmon/ltc2947-core 0x5cbb5274 ltc2947_core_probe +EXPORT_SYMBOL_GPL drivers/hwmon/ltc2947-core 0xa51daa7d ltc2947_pm_ops EXPORT_SYMBOL_GPL drivers/hwmon/ltc2947-core 0xbc54f93e ltc2947_of_match -EXPORT_SYMBOL_GPL drivers/hwmon/ltc2947-core 0xd7034f14 ltc2947_pm_ops -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x13e9f896 intel_th_driver_register -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x1bf17002 intel_th_output_enable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x3701d0a4 intel_th_alloc -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x59639c8e intel_th_free -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x78cafca3 intel_th_driver_unregister -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x9983cbac intel_th_set_output -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xd498711c intel_th_trace_disable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xedd36d10 intel_th_trace_enable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xf66d0a22 intel_th_trace_switch -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0xbcab719b intel_th_msu_buffer_register -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0xc9b94dbe intel_th_msu_buffer_unregister -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0xdb16a78a intel_th_msc_window_unlock -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x0d818f7f stm_source_write -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x3abafaef stm_source_register_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x79209041 stm_register_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x9f8582fe stm_register_protocol -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xb95458c4 stm_data_write -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xf8243f80 to_pdrv_policy_node -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xfae97ce7 stm_unregister_protocol -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xfd1677bc stm_unregister_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xfd252b79 stm_source_unregister_device -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x30a8db2c i2c_mux_del_adapters -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x5103890f i2c_root_adapter -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xd383bd5e i2c_mux_alloc -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xd7b86278 i2c_mux_add_adapter -EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x2aa28a98 i2c_handle_smbus_alert -EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x31e351ed i2c_new_slave_host_notify_device -EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x9b32fbfd i2c_free_slave_host_notify_device -EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xa06907ef i2c_register_spd -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x06580428 i3c_device_match_id -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x0e51df37 i3cdev_to_dev -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x1420bb75 i3c_master_enec_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x16893322 i3c_master_disec_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x206546a8 i3c_master_register -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x27ad3750 dev_to_i3cdev -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x37604c23 i3c_device_enable_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x3acb4cfd i3c_driver_register_with_owner -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x3dcbff0e i3c_device_free_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x40baadb9 i3c_device_get_info -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x43fbc40e i3c_master_entdaa_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x4a88bb0d i3c_device_do_priv_xfers -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x4e9901ac i3c_generic_ibi_recycle_slot -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x5f7711d8 i3c_master_unregister -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x6c873af2 i3c_master_queue_ibi +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x44bfc474 intel_th_trace_disable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x550bb293 intel_th_trace_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x57e95fe1 intel_th_trace_switch +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x69ad5cfb intel_th_alloc +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x6f6c8b98 intel_th_set_output +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xccceddd2 intel_th_free +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xe7390a72 intel_th_driver_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xeb381932 intel_th_output_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xecb5e747 intel_th_driver_register +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x65577881 intel_th_msc_window_unlock +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0xe9e29740 intel_th_msu_buffer_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0xff65f925 intel_th_msu_buffer_register +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x02ca3f8f stm_source_write +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x3d965db9 stm_source_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x4448efcd stm_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x4fb22e39 to_pdrv_policy_node +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x791b2c69 stm_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x85690e30 stm_unregister_protocol +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xa11d720b stm_data_write +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xaf418e8f stm_source_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xe2703717 stm_register_protocol +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x02f7e384 i2c_mux_del_adapters +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x1887c964 i2c_root_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x2a110b65 i2c_mux_alloc +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x82c413c5 i2c_mux_add_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x082f2e37 i2c_handle_smbus_alert +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x6e96ef8b i2c_free_slave_host_notify_device +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x8deb7a18 i2c_new_slave_host_notify_device +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x9cd713d0 i2c_register_spd +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x075ea2b1 i3c_driver_unregister +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x0ff59bfe i3c_device_disable_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x10675492 i3c_generic_ibi_get_free_slot +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x11b7b9c4 i3c_device_do_priv_xfers +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x17d61f27 i3c_generic_ibi_recycle_slot +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x1f7764a7 i3c_master_unregister +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x200e90c1 i3c_device_get_info +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x237be421 i3c_master_disec_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x3e456040 i3c_driver_register_with_owner +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x429651cf i3c_master_set_info +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x432db688 i3c_device_request_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x43e6d600 i3c_master_register +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x43fef779 i3c_device_match_id +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x46ae6bf7 i3c_master_get_free_addr +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x50c2e1a8 i3c_master_entdaa_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x6047792a i3c_master_enec_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x634cdd4f i3c_device_free_ibi EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x76fe3e05 i3c_generic_ibi_free_pool -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x7ca75fef i3c_generic_ibi_alloc_pool -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x80531048 i3c_master_add_i3c_dev_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x97e566b1 i3c_device_disable_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x99d6e23b i3c_master_defslvs_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xabb2229b i3c_generic_ibi_get_free_slot -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xb44f8b61 i3c_master_set_info -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xb76ffc6c i3c_master_get_free_addr -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xc737ead2 i3c_driver_unregister -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xefc8f92b i3c_master_do_daa -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xf1f1b2b3 i3c_device_request_ibi -EXPORT_SYMBOL_GPL drivers/iio/accel/adxl372 0xdcbe28e5 adxl372_probe -EXPORT_SYMBOL_GPL drivers/iio/accel/adxl372 0xf24ab181 adxl372_readable_noinc_reg -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x214185d6 bmc150_accel_core_probe -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x45df7697 bmc150_accel_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x9f408bc5 bmc150_accel_core_remove -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xa519d55c bmc150_regmap_conf -EXPORT_SYMBOL_GPL drivers/iio/accel/bmi088-accel-core 0x4e9510c2 bmi088_accel_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/accel/bmi088-accel-core 0x78322d15 bmi088_regmap_conf -EXPORT_SYMBOL_GPL drivers/iio/accel/bmi088-accel-core 0x9a4de620 bmi088_accel_core_remove -EXPORT_SYMBOL_GPL drivers/iio/accel/bmi088-accel-core 0xd660b863 bmi088_accel_core_probe -EXPORT_SYMBOL_GPL drivers/iio/accel/fxls8962af-core 0x0fe70967 fxls8962af_spi_regmap_conf -EXPORT_SYMBOL_GPL drivers/iio/accel/fxls8962af-core 0xad399da2 fxls8962af_i2c_regmap_conf -EXPORT_SYMBOL_GPL drivers/iio/accel/fxls8962af-core 0xcb3f00c3 fxls8962af_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/accel/fxls8962af-core 0xd2e36d9a fxls8962af_core_probe -EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0x25e2cf91 mma7455_core_regmap -EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0x70d19825 mma7455_core_remove -EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0xbd56a833 mma7455_core_probe -EXPORT_SYMBOL_GPL drivers/iio/adc/ad7091r-base 0x97a71c14 ad7091r_probe -EXPORT_SYMBOL_GPL drivers/iio/adc/ad7091r-base 0x9911abf6 ad7091r_regmap_config -EXPORT_SYMBOL_GPL drivers/iio/adc/ad7606 0x14ef45e3 ad7606_probe -EXPORT_SYMBOL_GPL drivers/iio/adc/ad7606 0xb08a6dcf ad7606_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x3c6d3690 ad_sd_set_comm -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x645f05fd ad_sd_calibrate_all -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x79f0730a devm_ad_sd_setup_buffer_and_trigger -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x8243ec9f ad_sigma_delta_single_conversion -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x90a21483 ad_sd_init -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x9def8f19 ad_sd_calibrate -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xa6f3ddb1 ad_sd_reset -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xb7503a5d ad_sd_write_reg -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xd2827118 ad_sd_validate_trigger -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xd9d78c78 ad_sd_read_reg -EXPORT_SYMBOL_GPL drivers/iio/adc/adi-axi-adc 0x3aa17c58 adi_axi_adc_conv_priv -EXPORT_SYMBOL_GPL drivers/iio/adc/adi-axi-adc 0xf4462828 devm_adi_axi_adc_conv_register +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x7b595057 i3cdev_to_dev +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x7db81832 i3c_master_add_i3c_dev_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x9c81b61d i3c_master_queue_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xa0e764eb dev_to_i3cdev +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xbee28f1e i3c_generic_ibi_alloc_pool +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xd0d05d2e i3c_master_defslvs_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xdf9b7aef i3c_master_do_daa +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xff694f06 i3c_device_enable_ibi +EXPORT_SYMBOL_GPL drivers/iio/accel/adxl372 0x509e6704 adxl372_probe +EXPORT_SYMBOL_GPL drivers/iio/accel/adxl372 0x67a771cb adxl372_readable_noinc_reg +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x5cfeb9f6 bmc150_accel_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x648e0d18 bmc150_accel_core_probe +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xb51dc998 bmc150_accel_core_remove +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xe50d56b5 bmc150_regmap_conf +EXPORT_SYMBOL_GPL drivers/iio/accel/bmi088-accel-core 0x09ca7ec6 bmi088_regmap_conf +EXPORT_SYMBOL_GPL drivers/iio/accel/bmi088-accel-core 0x0d62bc71 bmi088_accel_core_remove +EXPORT_SYMBOL_GPL drivers/iio/accel/bmi088-accel-core 0x204cd708 bmi088_accel_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/accel/bmi088-accel-core 0x2be40856 bmi088_accel_core_probe +EXPORT_SYMBOL_GPL drivers/iio/accel/fxls8962af-core 0x48ec4b43 fxls8962af_i2c_regmap_conf +EXPORT_SYMBOL_GPL drivers/iio/accel/fxls8962af-core 0x743a77ca fxls8962af_core_probe +EXPORT_SYMBOL_GPL drivers/iio/accel/fxls8962af-core 0x804ecea3 fxls8962af_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/accel/fxls8962af-core 0xea32df86 fxls8962af_spi_regmap_conf +EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0x3a49b4ac mma7455_core_regmap +EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0x7e27c5e4 mma7455_core_probe +EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0xc346942a mma7455_core_remove +EXPORT_SYMBOL_GPL drivers/iio/adc/ad7091r-base 0x0431851e ad7091r_probe +EXPORT_SYMBOL_GPL drivers/iio/adc/ad7091r-base 0xe5064eb4 ad7091r_regmap_config +EXPORT_SYMBOL_GPL drivers/iio/adc/ad7606 0x19fd6e05 ad7606_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/adc/ad7606 0x6548a4ad ad7606_probe +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x06f866d6 ad_sd_validate_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x3f8e752a ad_sigma_delta_single_conversion +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x51b06175 ad_sd_init +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x5398c744 ad_sd_read_reg +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x6a185102 ad_sd_reset +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x7fce6182 ad_sd_set_comm +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xa15c6f05 ad_sd_write_reg +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xa84bac69 devm_ad_sd_setup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xd3e928d7 ad_sd_calibrate_all +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xfb161117 ad_sd_calibrate +EXPORT_SYMBOL_GPL drivers/iio/adc/adi-axi-adc 0x6df5ffc1 devm_adi_axi_adc_conv_register +EXPORT_SYMBOL_GPL drivers/iio/adc/adi-axi-adc 0xbd896e17 adi_axi_adc_conv_priv 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 0x56d7c420 iio_channel_cb_get_channels -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x5ac2ae5b iio_channel_cb_get_iio_dev -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x75a81b5e iio_channel_get_all_cb +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x526eb38b 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 0x8a8bf934 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-dma 0x023f7d79 iio_dma_buffer_disable -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x1fffdf5c iio_dma_buffer_block_done -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x28f08f15 iio_dma_buffer_block_list_abort -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x2973656b iio_dma_buffer_release -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x2d49a03f iio_dma_buffer_request_update -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x3365ab10 iio_dma_buffer_init -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x6517a34c iio_dma_buffer_read -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x6c9ca066 iio_dma_buffer_exit -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x793b8b29 iio_dma_buffer_set_length -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xbda5d617 iio_dma_buffer_data_available -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xe0572b52 iio_dma_buffer_set_bytes_per_datum -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xe1f91713 iio_dma_buffer_enable -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dmaengine 0xb70d2466 devm_iio_dmaengine_buffer_setup +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0xfa190c19 iio_channel_get_all_cb +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x56b41dc0 iio_dma_buffer_set_bytes_per_datum +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x614451ed iio_dma_buffer_block_list_abort +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x88d322fe iio_dma_buffer_enable +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x8a52a15e iio_dma_buffer_block_done +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x8dcb6640 iio_dma_buffer_set_length +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x92b40b6b iio_dma_buffer_read +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xace5eec4 iio_dma_buffer_disable +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xb51b424c iio_dma_buffer_data_available +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xc18dd2cc iio_dma_buffer_release +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xc4561011 iio_dma_buffer_request_update +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xe731c40a iio_dma_buffer_exit +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xf7515c72 iio_dma_buffer_init +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dmaengine 0xf035d828 devm_iio_dmaengine_buffer_setup EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x3391543d iio_hw_consumer_disable -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x3f1693b1 iio_hw_consumer_alloc +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x8473ab5c devm_iio_hw_consumer_alloc EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x9671bc15 iio_hw_consumer_free EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0xbf358fa9 iio_hw_consumer_enable -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0xfe85c98a devm_iio_hw_consumer_alloc -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-triggered-buffer 0xee34bbc1 devm_iio_triggered_buffer_setup_ext -EXPORT_SYMBOL_GPL drivers/iio/buffer/kfifo_buf 0x3333148a devm_iio_kfifo_buffer_setup_ext -EXPORT_SYMBOL_GPL drivers/iio/chemical/bme680_core 0x90503fb6 bme680_core_probe -EXPORT_SYMBOL_GPL drivers/iio/chemical/sps30 0x26133223 sps30_probe -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x05fb16f5 cros_ec_sensors_core_write -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x75959c62 cros_ec_motion_send_host_cmd -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x7b9e159f cros_ec_sensors_core_init -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x842d7d33 cros_ec_sensors_read_lpc -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x8544a88d cros_ec_sensors_core_read_avail -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x89aceb7b cros_ec_sensors_push_data -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x8f99495d cros_ec_sensors_ext_info +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0xdb55a5c6 iio_hw_consumer_alloc +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-triggered-buffer 0xd33380cd devm_iio_triggered_buffer_setup_ext +EXPORT_SYMBOL_GPL drivers/iio/buffer/kfifo_buf 0x415f2d1e devm_iio_kfifo_buffer_setup_ext +EXPORT_SYMBOL_GPL drivers/iio/chemical/bme680_core 0xed270a87 bme680_core_probe +EXPORT_SYMBOL_GPL drivers/iio/chemical/sps30 0xac634400 sps30_probe +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x16190ae8 cros_ec_sensors_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x40d88599 cros_ec_sensors_read_lpc +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x47140f6a cros_ec_sensors_core_write +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x5e1711da cros_ec_sensors_core_read_avail +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x98ad3f56 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 0xaefa24c5 cros_ec_sensors_read_cmd -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xf19532e9 cros_ec_sensors_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xf9be6e08 cros_ec_sensors_core_read -EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0x3bc35f60 ad5592r_remove -EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0xa03a3706 ad5592r_probe -EXPORT_SYMBOL_GPL drivers/iio/dac/ad5686 0x264185d5 ad5686_remove -EXPORT_SYMBOL_GPL drivers/iio/dac/ad5686 0xd3d80de7 ad5686_probe -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x67b51c5f bmg160_core_probe -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xa223ed27 bmg160_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xcffd3708 bmg160_core_remove -EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0x1299ad1a fxas21002c_core_probe -EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0x150aab58 fxas21002c_core_remove -EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0x73820b0d fxas21002c_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x06353d30 __adis_write_reg -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x091cd48f __adis_update_bits_base -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x157f1b61 __adis_reset -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x38eb346e devm_adis_probe_trigger -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x77970b3d adis_update_scan_mode -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x7d2bb63f adis_single_conversion -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x8fb168e2 __adis_initial_startup -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x9523f4ae devm_adis_setup_buffer_and_trigger -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xace2a144 adis_init -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xdde83ff4 __adis_check_status -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xe5480cf9 __adis_read_reg -EXPORT_SYMBOL_GPL drivers/iio/imu/bmi160/bmi160_core 0x5f38513a bmi160_core_probe -EXPORT_SYMBOL_GPL drivers/iio/imu/fxos8700_core 0xe90db7a5 fxos8700_core_probe -EXPORT_SYMBOL_GPL drivers/iio/imu/inv_icm42600/inv-icm42600 0x3780c508 inv_icm42600_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/imu/inv_icm42600/inv-icm42600 0x56c63967 inv_icm42600_core_probe -EXPORT_SYMBOL_GPL drivers/iio/imu/inv_icm42600/inv-icm42600 0xe5bcc024 inv_icm42600_regmap_config -EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0x6f421559 inv_mpu_pmops -EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0x961e144e inv_mpu_core_probe -EXPORT_SYMBOL_GPL drivers/iio/imu/st_lsm9ds0/st_lsm9ds0 0x46fa2a9d st_lsm9ds0_remove -EXPORT_SYMBOL_GPL drivers/iio/imu/st_lsm9ds0/st_lsm9ds0 0xd1ed1578 st_lsm9ds0_probe -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x05f272ff iio_enum_write -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x07dea1b2 iio_buffer_put -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x106c525b iio_device_id -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x112ab420 devm_iio_channel_get -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1237b1d4 iio_enum_read -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1f7cfcf9 iio_enum_available_read +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xa48c7022 cros_ec_sensors_core_read +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xd246fb69 cros_ec_sensors_push_data +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xd70949cb cros_ec_sensors_ext_info +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xe58e6808 cros_ec_motion_send_host_cmd +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xee9f1499 cros_ec_sensors_core_init +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0x6784af59 ad5592r_remove +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0x812ffccc ad5592r_probe +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5686 0x9d49d6d6 ad5686_probe +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5686 0xdc5df545 ad5686_remove +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x1b7f683a bmg160_core_remove +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x2fa93686 bmg160_core_probe +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xe10fc425 bmg160_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0x15ef9562 fxas21002c_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0x62ad4f10 fxas21002c_core_probe +EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0xe30e1797 fxas21002c_core_remove +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x24839284 adis_single_conversion +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x25d5f825 __adis_check_status +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x4e057146 __adis_update_bits_base +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x4f484677 devm_adis_setup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x52214219 __adis_write_reg +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x663c9183 __adis_reset +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x83f919f1 __adis_read_reg +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x95c03b48 __adis_initial_startup +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x9dc28621 adis_init +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xcb751a24 adis_update_scan_mode +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xe88c5858 devm_adis_probe_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/bmi160/bmi160_core 0x71a2fb3d bmi160_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/fxos8700_core 0x1a2f4d60 fxos8700_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_icm42600/inv-icm42600 0x0cbefcd1 inv_icm42600_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_icm42600/inv-icm42600 0xbccdf908 inv_icm42600_regmap_config +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_icm42600/inv-icm42600 0xe0127cc0 inv_icm42600_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0x2c6e3c5b inv_mpu_pmops +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0xdbe525a2 inv_mpu_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/st_lsm9ds0/st_lsm9ds0 0xe6d64a82 st_lsm9ds0_remove +EXPORT_SYMBOL_GPL drivers/iio/imu/st_lsm9ds0/st_lsm9ds0 0xed338ee7 st_lsm9ds0_probe +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x03256e87 iio_enum_write +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0ddb941a iio_enum_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1573db25 devm_iio_device_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x16aed1e1 __devm_iio_trigger_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x18a0da45 iio_read_avail_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x24ce4cb1 devm_iio_channel_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x253a6c82 iio_read_channel_processed_scale EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x26f6b499 iio_str_to_fixpoint -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2c1b93cb iio_get_channel_type -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x39f2597b __devm_iio_trigger_register -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x464c2abf iio_read_channel_ext_info -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4758fcd8 iio_get_debugfs_dentry -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4d1983d5 iio_validate_scan_mask_onehot -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4d6e18f1 devm_iio_device_alloc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4d9429b2 __devm_iio_device_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2a502314 iio_read_avail_channel_attribute +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2fb9bc00 iio_write_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x33d9b15a iio_convert_raw_to_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x35117630 iio_read_channel_ext_info +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x35a13387 iio_write_channel_attribute +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3eb5ab30 devm_of_iio_channel_get_by_name +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3ee81708 iio_read_max_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x40477bef iio_channel_release_all EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4dce7dd4 iio_format_value -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5065c683 iio_show_mount_matrix -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5499bb64 iio_read_channel_processed -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x56ab9ea1 devm_iio_trigger_alloc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x63039249 iio_get_channel_ext_info_count -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x63269548 iio_channel_release_all -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x65626d0c iio_channel_release -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6eb83229 iio_read_channel_attribute -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6f0ec007 iio_map_array_register -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7b8380fa iio_read_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7fef3939 iio_channel_get_all -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x82ce5b36 iio_convert_raw_to_processed -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8305aee1 iio_read_channel_offset -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8844daa4 iio_write_channel_ext_info -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8a3fe35c iio_update_buffers -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x91835530 iio_buffer_get -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x91a14077 iio_read_channel_average_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x91e5a851 devm_iio_channel_get_all -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x97bbb0ec iio_device_release_direct_mode -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x990564eb iio_alloc_pollfunc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa09eab50 iio_map_array_unregister -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa6ee78ab iio_write_channel_attribute -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xab1e9231 iio_write_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xabed63df iio_read_avail_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb5b67add devm_of_iio_channel_get_by_name -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xbad8ac6c iio_read_channel_scale -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc474ec66 iio_push_to_buffers -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc8dac28b iio_read_avail_channel_attribute -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xca7608f6 of_iio_channel_get_by_name -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd6209d47 iio_channel_get -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd9e6e8a0 iio_device_claim_direct_mode -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe5efd282 iio_read_channel_processed_scale -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xef9a5567 iio_device_attach_buffer -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xfd288668 iio_read_max_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xfdf61156 iio_dealloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x599a16cd iio_buffer_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5c681e24 iio_read_channel_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5f23d460 iio_read_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6080887d iio_device_release_direct_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x61295b29 iio_update_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x65223020 iio_validate_scan_mask_onehot +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x65e06b0d iio_get_channel_type +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6c8d65a4 iio_buffer_put +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x73a084fa iio_dealloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7b8367f1 of_iio_channel_get_by_name +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x81da10a4 iio_channel_release +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x81f966d2 iio_map_array_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x873e2e85 iio_get_debugfs_dentry +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8d2e10c2 iio_channel_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8e407247 iio_show_mount_matrix +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x95856e11 iio_device_id +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9be48fe7 iio_channel_get_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa4d2a875 iio_read_channel_scale +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa5c99cde iio_read_channel_average_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa97ea126 devm_iio_channel_get_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb209496a iio_alloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb268ed62 iio_read_channel_attribute +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb8be399e iio_device_claim_direct_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xcb05eef8 __devm_iio_device_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xcc58828b iio_write_channel_ext_info +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xcd3e6471 iio_enum_available_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd3b75bc2 iio_push_to_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe54efe5c iio_device_attach_buffer +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf214e097 iio_get_channel_ext_info_count +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf9d1e17a iio_map_array_unregister +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xfad675d7 devm_iio_trigger_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xfc9d8e8f iio_read_channel_offset EXPORT_SYMBOL_GPL drivers/iio/magnetometer/rm3100-core 0x0a1424e0 rm3100_volatile_table -EXPORT_SYMBOL_GPL drivers/iio/magnetometer/rm3100-core 0x98472ca7 rm3100_common_probe +EXPORT_SYMBOL_GPL drivers/iio/magnetometer/rm3100-core 0x20219dff rm3100_common_probe EXPORT_SYMBOL_GPL drivers/iio/magnetometer/rm3100-core 0xaa911f08 rm3100_readable_table EXPORT_SYMBOL_GPL drivers/iio/magnetometer/rm3100-core 0xcc7209be rm3100_writable_table -EXPORT_SYMBOL_GPL drivers/iio/pressure/mpl115 0x878015b4 mpl115_probe -EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0x794e6ddf zpa2326_isreg_writeable -EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0x9849564b zpa2326_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0xacd6b3b1 zpa2326_isreg_readable -EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0xb14a1056 zpa2326_probe -EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0xb964bd6d zpa2326_isreg_precious -EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0xd4bc5e1e zpa2326_remove +EXPORT_SYMBOL_GPL drivers/iio/pressure/mpl115 0xf1096011 mpl115_probe +EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0x4fc0a043 zpa2326_remove +EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0x64285d2e zpa2326_probe +EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0x6f42206a zpa2326_isreg_writeable +EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0xcace412e zpa2326_isreg_precious +EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0xe3510ae6 zpa2326_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0xf0676e78 zpa2326_isreg_readable EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x1318f781 rtrs_iu_free -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x21668e35 rtrs_iu_post_send -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x2e46908d rtrs_post_recv_empty -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x564c7c8c rtrs_cq_qp_destroy -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x56cea863 rtrs_cq_qp_create -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x7b8e8a6a rtrs_iu_alloc -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x930c9988 rtrs_iu_post_recv -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xb0c0510f rtrs_stop_hb -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xcb8760c4 rtrs_send_hb_ack -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xe52e689c rtrs_iu_post_rdma_write_imm -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xeab3d109 rtrs_start_hb -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xf198fe49 rtrs_init_hb -EXPORT_SYMBOL_GPL drivers/input/ff-memless 0xb58cbb4f input_ff_create_memless -EXPORT_SYMBOL_GPL drivers/input/matrix-keymap 0xf4bcf8e3 matrix_keypad_parse_properties +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x1b1c34b0 rtrs_post_recv_empty +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x24e50536 rtrs_iu_alloc +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x3205c627 rtrs_init_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x4eb8f35e rtrs_send_hb_ack +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x52554fb8 rtrs_cq_qp_create +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x577e7aee rtrs_iu_post_rdma_write_imm +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x7c8f0ab7 rtrs_iu_free +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xad991cd7 rtrs_cq_qp_destroy +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xb5a5b538 rtrs_iu_post_send +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xc3de7ac7 rtrs_start_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xcd4b98ae rtrs_iu_post_recv +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xd2e65c0c rtrs_stop_hb +EXPORT_SYMBOL_GPL drivers/input/ff-memless 0x5b7accd3 input_ff_create_memless +EXPORT_SYMBOL_GPL drivers/input/matrix-keymap 0xe3fc35e8 matrix_keypad_parse_properties +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x44053bb9 adxl34x_probe EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x49a4fcbd adxl34x_remove EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x66535a18 adxl34x_suspend -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x974e28ec adxl34x_probe EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xe4586827 adxl34x_resume -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x0481530b rmi_2d_sensor_configure_input -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x1860d562 rmi_2d_sensor_abs_process -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x1a43e193 rmi_register_transport_device -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x4a393b95 rmi_unregister_function_handler -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x6759dbbe rmi_driver_resume -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x6f1aa64b rmi_of_property_read_u32 -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x7698ffa7 rmi_2d_sensor_abs_report -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x7ddffe09 rmi_2d_sensor_rel_report -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x8e222e2f rmi_dbg -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xb6765850 rmi_2d_sensor_of_probe -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xbef1e2e9 rmi_driver_suspend -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xc5799a20 __rmi_register_function_handler -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xda99fdd7 rmi_set_attn_data -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x217d97dc cyttsp4_remove -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x24370f98 cyttsp4_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x2a9e57cf cyttsp4_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x21d72726 cyttsp_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0xa1fd38e2 cyttsp_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0xb1f9bf8b cyttsp_i2c_read_block_data -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0xb6f9fcd0 cyttsp_i2c_write_block_data -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x0fddd540 tsc200x_regmap_config -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x48d83b8d tsc200x_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x715541c5 tsc200x_remove -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xc55c9dc6 tsc200x_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x425788e1 wm97xx_reg_write -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x44b9fb0b wm97xx_reg_read -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x533e8fe4 wm9713_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x5e0b90b1 wm97xx_config_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x610f220b wm97xx_unregister_mach_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x822a9220 wm9705_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x8e4bfc37 wm97xx_set_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x9f948f7a wm9712_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xb0aa5da9 wm97xx_register_mach_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xb6a94aa9 wm97xx_set_suspend_mode -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xd110ae84 wm97xx_read_aux_adc -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xe4b72fa8 wm97xx_get_gpio -EXPORT_SYMBOL_GPL drivers/interconnect/imx/imx-interconnect 0x84ad416b imx_icc_unregister -EXPORT_SYMBOL_GPL drivers/interconnect/imx/imx-interconnect 0xbfd15138 imx_icc_register +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x355eaabb rmi_unregister_function_handler +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x39cf8678 rmi_2d_sensor_configure_input +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x598fc360 rmi_driver_resume +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x5b60e10f rmi_2d_sensor_abs_process +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x87836078 rmi_driver_suspend +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x90ef82f4 rmi_dbg +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x94bf065d rmi_2d_sensor_of_probe +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xa382ab86 rmi_2d_sensor_rel_report +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xa44c3ef6 __rmi_register_function_handler +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xb7b670f2 rmi_set_attn_data +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xc0cfecdf rmi_2d_sensor_abs_report +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xe257a1a0 rmi_register_transport_device +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xf390cb8d rmi_of_property_read_u32 +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x6a223f8c cyttsp4_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xa838d15f cyttsp4_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xb1523fc5 cyttsp4_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x3973fce7 cyttsp_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0xda56331a cyttsp_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x15650bca cyttsp_i2c_read_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x2b71b03d cyttsp_i2c_write_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x16cb1fd7 tsc200x_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x668e7439 tsc200x_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x9b16df3a tsc200x_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xf15b0a9a tsc200x_regmap_config +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x0af7ec0a wm9705_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x0dd7524b wm97xx_config_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x1749f150 wm9712_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x235b63a4 wm97xx_unregister_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x39d3b746 wm97xx_read_aux_adc +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x53f3b466 wm97xx_reg_write +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x5ea8c312 wm97xx_reg_read +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x99f9ea94 wm97xx_register_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xa5a45291 wm97xx_set_suspend_mode +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xbd256a0b wm97xx_get_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xdbe3f1ce wm9713_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xfb8ab284 wm97xx_set_gpio +EXPORT_SYMBOL_GPL drivers/interconnect/imx/imx-interconnect 0xb975b86b imx_icc_unregister +EXPORT_SYMBOL_GPL drivers/interconnect/imx/imx-interconnect 0xf25f3ec0 imx_icc_register 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 0xc3a71511 of_bcm_voter_get -EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x3a7d329f qcom_icc_rpmh_remove -EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x785cd18c qcom_icc_aggregate -EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x967e1940 qcom_icc_bcm_init -EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0xa63374ee qcom_icc_rpmh_probe -EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0xaf3bbb35 qcom_icc_pre_aggregate -EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0xe969df58 qcom_icc_xlate_extended -EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0xff886327 qcom_icc_set +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-bcm-voter 0x978bace7 of_bcm_voter_get +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x028ea1e9 qcom_icc_set +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x08622fc4 qcom_icc_aggregate +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x0f87eee5 qcom_icc_rpmh_remove +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x4b42c17e qcom_icc_bcm_init +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x8ccc643f qcom_icc_rpmh_probe +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x961ff315 qcom_icc_xlate_extended +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0xa245f761 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 0x003f9783 ipack_driver_register -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x333212a8 ipack_device_init -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x452a3591 ipack_get_device -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x48fd0c87 ipack_device_add -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x4ea36939 ipack_bus_register -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x6d1c04d0 ipack_device_del -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x96f6b28e ipack_driver_unregister -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xa0995c23 ipack_bus_unregister -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xdd311389 ipack_put_device -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x2375af45 led_get_flash_fault -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x4021e2c7 led_classdev_flash_unregister -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x49f00a21 led_set_flash_timeout -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x4b001f25 led_set_flash_brightness -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x60604d3d devm_led_classdev_flash_register_ext -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x7e48f0cf devm_led_classdev_flash_unregister -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xa6660cf1 led_update_flash_brightness -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xe6d90767 led_classdev_flash_register_ext -EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x0c3f177a led_classdev_multicolor_unregister -EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x3089795d devm_led_classdev_multicolor_register_ext -EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x3687474d led_classdev_multicolor_register_ext -EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x57cbb35e led_mc_calc_color_components -EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x7e10fa0e devm_led_classdev_multicolor_unregister -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x02aad3d1 lp55xx_register_leds -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x17f03dfb lp55xx_is_extclk_used -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x370d08d8 lp55xx_read -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x43f8442c lp55xx_unregister_sysfs -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x70a02de9 lp55xx_update_bits -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x7d003986 lp55xx_write -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x9f8f3f90 lp55xx_of_populate_pdata -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xa8e9bf79 lp55xx_init_device -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xb80dcac9 lp55xx_deinit_device -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xd2f8f9b4 lp55xx_register_sysfs +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x0943d799 ipack_driver_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x232f3360 ipack_put_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x27ebec3f ipack_device_add +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x460ce8bd ipack_bus_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x78d4d3a0 ipack_bus_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xaf920808 ipack_device_del +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xc92f683a ipack_get_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xf0b99e36 ipack_device_init +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xff917ba2 ipack_driver_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x0a88b443 devm_led_classdev_flash_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x415ed975 led_get_flash_fault +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x4f5b799e led_update_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x5edc4623 devm_led_classdev_flash_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x9dd6b65d led_set_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xb16109b9 led_classdev_flash_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xd8bf99b0 led_set_flash_timeout +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xf60ba832 led_classdev_flash_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x14084e08 led_classdev_multicolor_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x2237bc59 devm_led_classdev_multicolor_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x6d2a923a led_classdev_multicolor_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0xaedf8994 devm_led_classdev_multicolor_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0xb1bbfd09 led_mc_calc_color_components +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x1d7f4c0e lp55xx_register_sysfs +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x34419a2f lp55xx_init_device +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x3d8d784e lp55xx_update_bits +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x5115e8d5 lp55xx_register_leds +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x7c9e13bf lp55xx_deinit_device +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x7cca7d67 lp55xx_is_extclk_used +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x81efc448 lp55xx_unregister_sysfs +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xbcd9fe41 lp55xx_write +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xe0521820 lp55xx_of_populate_pdata +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xe8d9e24b lp55xx_read EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-audio 0x3bd45b0d ledtrig_audio_set EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-audio 0xce593c22 ledtrig_audio_get EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-camera 0x749e05f2 ledtrig_flash_ctrl EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-camera 0x7903e46e ledtrig_torch_ctrl +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x03e681b2 __traceiter_bcache_btree_node_alloc_fail 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 0x07c7884f __traceiter_bcache_gc_end 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 0x11115da0 __traceiter_bcache_journal_entry_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x118338e9 __traceiter_bcache_journal_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1420fd5f __traceiter_bcache_btree_node_alloc +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x15a5f235 __traceiter_bcache_read_retry +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x15aa6dd9 __traceiter_bcache_bypass_congested 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 0x181c02c4 __traceiter_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x18c37178 __traceiter_bcache_btree_set_root 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 0x1e93aa4a __traceiter_bcache_btree_node_free +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x20f89d27 __traceiter_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x21090a55 __traceiter_bcache_btree_cache_cannibalize EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x22ae6324 __SCK__tp_func_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x257383a4 __traceiter_bcache_request_start 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 0x3257d343 __tracepoint_bcache_gc_copy -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x36ac4897 __traceiter_bcache_gc_start -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3b4a7ff3 __traceiter_bcache_btree_cache_cannibalize -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x44024de5 __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 0x4a2d1241 __SCK__tp_func_bcache_btree_node_compact 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 0x56925389 __traceiter_bcache_btree_node_compact EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5cc8cb86 __tracepoint_bcache_btree_insert_key EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5d9c8fc8 __SCK__tp_func_bcache_cache_insert EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5fd7c423 __SCK__tp_func_bcache_write @@ -13145,30 +13184,29 @@ 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 0x6f939827 __traceiter_bcache_request_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6f64589d __traceiter_bcache_btree_node_compact 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 0x7a6f25f6 __traceiter_bcache_journal_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7c4701d8 __traceiter_bcache_request_start -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7f5ac405 __traceiter_bcache_btree_node_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x80488002 __traceiter_bcache_btree_set_root +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7d4f24e6 __traceiter_bcache_gc_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7eeb7174 __traceiter_bcache_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7fcf0493 __traceiter_bcache_journal_full 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 0x883bbcd2 __traceiter_bcache_invalidate EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8ad20d61 __SCK__tp_func_bcache_request_start EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x902cb523 __tracepoint_bcache_gc_copy_collision -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x977682d4 __traceiter_bcache_btree_write 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 0x9ce21c84 __SCK__tp_func_bcache_journal_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa123ae10 __traceiter_bcache_bypass_sequential 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 0xa3549ce2 __traceiter_bcache_btree_read EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa64134e4 __SCK__tp_func_bcache_journal_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa6460199 __traceiter_bcache_btree_insert_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa8394ea2 __traceiter_bcache_read 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 0xb44725dd __traceiter_bcache_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb419171d __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 @@ -13176,52 +13214,52 @@ 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 0xca8a3b3a __traceiter_bcache_btree_node_split EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xce48d6f4 __tracepoint_bcache_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xcfeed2d8 __traceiter_bcache_journal_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd1585cde __traceiter_bcache_gc_end EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xda06fe86 __SCK__tp_func_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xdb48f5bf __traceiter_bcache_btree_node_alloc +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xdc6b1463 __traceiter_bcache_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xde6b392c __traceiter_bcache_request_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xdf32f8e1 __traceiter_bcache_btree_read 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 0xe2dcfac0 __traceiter_bcache_read -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe6bfdf9f __traceiter_bcache_btree_insert_key EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xec29e22a __traceiter_bcache_gc_copy_collision EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xec92a163 __SCK__tp_func_bcache_btree_cache_cannibalize EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xed37c90e __tracepoint_bcache_cache_insert EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xee55d047 __tracepoint_bcache_journal_write EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xef7eec02 __tracepoint_bcache_btree_gc_coalesce -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf24e1f20 __traceiter_bcache_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf3b3063f __traceiter_bcache_read_retry -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf5b786b2 __traceiter_bcache_btree_node_free -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf5c9e8c5 __traceiter_bcache_bypass_sequential EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf6249e5f __SCK__tp_func_bcache_journal_replay_key -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf6c29f0f __traceiter_bcache_btree_node_split 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 0x00a8d17d dm_cell_promote_or_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x1668af3c dm_bio_prison_free_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x170eb487 dm_cell_unlock_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x038109a6 dm_bio_prison_alloc_cell_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x06ea7416 dm_bio_detain +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x0d189429 dm_cell_unlock_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x1597a75f dm_cell_promote_or_release EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x17dd39d6 dm_deferred_set_create -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x19715f5b dm_cell_visit_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x224f7f7f dm_cell_put_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x283caad9 dm_cell_error +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2347c347 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 0x304f690d dm_cell_release_no_holder -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x3749fe8d dm_cell_get_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x5a565ca0 dm_get_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x636a2816 dm_bio_prison_free_cell_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x3209e22b dm_cell_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x5d3a93e2 dm_bio_prison_free_cell_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x629c2899 dm_cell_get_v2 EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x6791a44e dm_deferred_entry_dec -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x69acbfcb dm_bio_detain +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x74589fe1 dm_bio_prison_alloc_cell EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x753e20b2 dm_bio_prison_create -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x93b816b4 dm_cell_quiesce_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xa880320f dm_bio_prison_alloc_cell_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x88ef96ba dm_cell_visit_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xa1d95836 dm_cell_lock_promote_v2 EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xace9b57b dm_bio_prison_destroy_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb195f569 dm_cell_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xad46da51 dm_bio_prison_free_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xad98fe3e dm_cell_error EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb6d5c65d dm_deferred_set_add_work EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb70b342a dm_bio_prison_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb7a6e731 dm_cell_lock_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xbad0e7b9 dm_cell_quiesce_v2 EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xca2e3a88 dm_deferred_entry_inc +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xcfef0640 dm_cell_release_no_holder EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xd99e003d dm_bio_prison_create_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xe04c273e dm_cell_lock_promote_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xffb127d6 dm_bio_prison_alloc_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xdac12494 dm_get_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xfd8df20a dm_cell_lock_v2 EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x0ad0dc4f dm_bufio_mark_buffer_dirty EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x111ab12a dm_bufio_mark_partial_buffer_dirty EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x24772bfe dm_bufio_get @@ -13230,6 +13268,7 @@ EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6d3f57bd dm_bufio_get_client EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x72f07bf4 dm_bufio_set_minimum_buffers EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x74dcd98c dm_bufio_get_aux_data +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x7aeb7797 dm_bufio_client_create EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x7c381a76 dm_bufio_get_block_size EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x867e87eb dm_bufio_get_dm_io_client EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xa82b2066 dm_bufio_write_dirty_buffers @@ -13240,18 +13279,16 @@ EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xc9a3422d dm_bufio_write_dirty_buffers_async EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xcd2ba798 dm_bufio_forget EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xd4bddf5c dm_bufio_issue_flush -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xd6d0257a dm_bufio_client_create EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xd991e3b9 dm_bufio_get_device_size EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xe6024e59 dm_bufio_release EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xebcc64a4 dm_bufio_get_block_data 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 0x055c1680 dm_cache_policy_register EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x0efbca4c btracker_promotion_already_present +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x31352e22 dm_cache_policy_register EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x5adc2807 btracker_destroy EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x5de611a9 btracker_nr_writebacks_queued -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x66fb6e3d dm_cache_policy_unregister EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x7890d535 dm_cache_policy_get_name EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x87bee547 btracker_queue EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x890723f7 dm_cache_policy_get_version @@ -13262,27 +13299,28 @@ EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xccfe6409 btracker_nr_demotions_queued EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xcf8c2590 dm_cache_policy_get_hint_size EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xe1bdae47 dm_cache_policy_create -EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x1c9b8c5a dm_unregister_path_selector -EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x8882aa0a dm_register_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xe681a0dd dm_cache_policy_unregister +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x2b9c1286 dm_unregister_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x5191f377 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 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 0x3ea70e90 dm_rh_inc_pending -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x541354f6 dm_region_hash_create +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x4a292add dm_rh_delay EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x57e16c3e dm_rh_get_state EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x5f4a6e61 dm_rh_dec +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x63e89bdb dm_rh_bio_to_region EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7774620f dm_rh_stop_recovery EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7d053fc5 dm_rh_start_recovery EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7d5e1815 dm_rh_get_region_key -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x88053fc7 dm_rh_mark_nosync +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x85ddb2fc dm_rh_dirty_log +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x888cfcb1 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 0xabe1a311 dm_rh_dirty_log -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xaf7f8e86 dm_rh_delay EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xbe38a431 dm_rh_recovery_prepare EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xd8aa4284 dm_rh_region_context -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xdd843519 dm_rh_bio_to_region +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xe37725c0 dm_rh_inc_pending +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xf4a36f54 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/persistent-data/dm-persistent-data 0x0054f69d dm_tm_pre_commit @@ -13308,6 +13346,7 @@ EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x46768dbf dm_btree_remove_leaves EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x48e323be dm_bm_unlock EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x4f477261 dm_bm_checksum +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x509b8752 dm_block_manager_create EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5375ca71 dm_bm_write_lock EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5475ba9e dm_block_location EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5736c9c5 dm_bitset_flush @@ -13338,7 +13377,6 @@ EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x9341b376 dm_bitset_cursor_get_value EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x95a52abd dm_bm_is_read_only EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x9718cffa dm_sm_disk_open -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x98f22883 dm_block_manager_create EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x9955fef4 dm_bitset_cursor_begin EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x9ced228c dm_array_cursor_skip EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x9e798e22 dm_bm_set_read_only @@ -13359,77 +13397,77 @@ EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xe8438eb5 dm_array_del EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf82dba90 dm_btree_empty EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xfce51d79 dm_array_empty -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x0255e490 cec_notifier_parse_hdmi_phandle -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x12d1dc4b cec_notifier_cec_adap_unregister -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x2e3b574e cec_fill_conn_info_from_drm -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x40313e1d cec_s_phys_addr_from_edid -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x419e3cb6 cec_notifier_cec_adap_register -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x5b3404c0 cec_pin_changed +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x07d1ceca cec_notifier_cec_adap_register +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x1784b3d3 cec_register_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x1e0f096d cec_s_phys_addr +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x1fd7b0e2 cec_transmit_done_ts +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x27e83d4f cec_s_log_addrs +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x3cdc90a1 cec_pin_changed +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x4d377b85 cec_queue_pin_hpd_event +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x50ef0339 cec_allocate_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x56022d3a cec_notifier_parse_hdmi_phandle +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x5c89ae82 cec_unregister_adapter EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x67e1dfdc cec_notifier_set_phys_addr_from_edid -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x76e868d1 cec_allocate_adapter -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x7863c2aa cec_register_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x67e44024 cec_notifier_cec_adap_unregister +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x701082cf cec_received_msg_ts +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x70fa79cf cec_pin_allocate_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x757fbe10 cec_queue_pin_5v_event +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x78d3ede2 cec_delete_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x79f137ec cec_transmit_msg +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x7ca715d2 cec_fill_conn_info_from_drm EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xa01fbb6b cec_notifier_set_phys_addr -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xa30cb395 cec_s_log_addrs -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xa73642b5 cec_unregister_adapter -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xa88f6a3e cec_delete_adapter -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xaa670374 cec_transmit_attempt_done_ts +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xa8eb3860 cec_queue_pin_cec_event EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xaee236c6 cec_notifier_conn_unregister +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xb23efeb8 cec_s_conn_info EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xbe4de675 cec_get_edid_phys_addr -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xbed9a3db cec_s_conn_info -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xbf1b5378 cec_notifier_conn_register -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xc1aaf8ce cec_queue_pin_hpd_event -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xc7cc6da1 cec_received_msg_ts -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xd0a5c430 cec_queue_pin_cec_event -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xf04f8600 cec_queue_pin_5v_event -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xf9997e51 cec_transmit_msg -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xfa43c9e8 cec_transmit_done_ts -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xfefc1d95 cec_s_phys_addr -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xff9b40b0 cec_pin_allocate_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xce70187a cec_notifier_conn_register +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xce898b09 cec_transmit_attempt_done_ts +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xd16e1d5d cec_s_phys_addr_from_edid EXPORT_SYMBOL_GPL drivers/media/common/b2c2/b2c2-flexcop 0x66c0289a b2c2_flexcop_debug -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x2a0f09f8 saa7146_pgtable_alloc -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x51e9f17b saa7146_register_extension -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x53a73d67 saa7146_vfree_destroy_pgtable -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x88c73a21 saa7146_i2c_adapter_prepare -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x8b1d5f08 saa7146_pgtable_build_single -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xbab25409 saa7146_wait_for_debi_done -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xc9a7a7ba saa7146_vmalloc_build_pgtable -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xd64fad13 saa7146_unregister_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x3f2a95e7 saa7146_pgtable_free +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x4d30638b saa7146_pgtable_build_single +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x67335981 saa7146_wait_for_debi_done +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x9072344a saa7146_pgtable_alloc +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x9df2b787 saa7146_register_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x9f0cc966 saa7146_setgpio +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xcc624c51 saa7146_i2c_adapter_prepare +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xcccf64a1 saa7146_vfree_destroy_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xde194c11 saa7146_unregister_extension EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe3cd9b5c saa7146_debug -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xecd6f677 saa7146_setgpio -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xffb71d9f saa7146_pgtable_free -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x0efb6f9c saa7146_unregister_device -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x1a4f423c saa7146_vv_init -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x247f293a saa7146_register_device -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x25bba4bd saa7146_stop_preview -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x31ee9c18 saa7146_start_preview -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x69252f36 saa7146_set_hps_source_and_sync -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xe856fce2 saa7146_vv_release -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x074102a8 smscore_putbuffer -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x0eb93ad6 smscore_register_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x1d9d1daf smscore_onresponse +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe49b09d3 saa7146_vmalloc_build_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x1ab7f5bc saa7146_register_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x263c6a6a saa7146_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x39f9c0ac saa7146_start_preview +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x99d52634 saa7146_stop_preview +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x9c08643d saa7146_set_hps_source_and_sync +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xe293d362 saa7146_vv_init +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xe3f6ad2e saa7146_vv_release +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x0361dee5 smscore_getbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x1a04d95c smscore_set_board_id EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x21e36bf2 smscore_registry_getmode -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x23cb223f sms_board_lna_control -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x26697726 smscore_get_device_mode +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x2e9648a1 smscore_register_device EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x34bf0e61 smscore_translate_msg EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x37d91069 smsendian_handle_tx_message -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x4293eb0a smscore_getbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x3fccd262 smscore_start_device EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x45284ae9 smsendian_handle_rx_message -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x4d3e2d76 smscore_start_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x58e3433b sms_board_event -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x612106e4 smscore_set_board_id -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x6d46a148 smscore_get_board_id EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x74ee9098 sms_board_load_modules EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7c576277 smsendian_handle_message_header +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7c84860b sms_board_lna_control +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7e4d7ca0 sms_board_power EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x844539ae sms_get_board -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x9750e816 smscore_register_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x93a40167 smscore_unregister_hotplug EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x99a81ab3 smsclient_sendrequest -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x9e3a0b32 smscore_unregister_hotplug -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xaf21270e smscore_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xa1b6683b smscore_register_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xa627e4a8 sms_board_setup +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xb3d78f85 smscore_onresponse EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbbdb5c42 smscore_unregister_client -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xc67e86e5 smscore_register_hotplug -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xcf97b34b sms_board_led_feedback -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xe7136a82 sms_board_setup -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xf2a3c761 sms_board_power +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xc772dcfe smscore_get_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xca042c43 sms_board_event +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xd3d36b9f sms_board_led_feedback +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xd718739d smscore_get_device_mode +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xdf16e6a8 smscore_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xf75124e6 smscore_putbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xfc24e26e smscore_register_hotplug EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x03005a48 tpg_alloc EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x040dc7cd tpg_aspect_strings EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x4d1d285c tpg_init @@ -13447,411 +13485,411 @@ EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xce8159bb tpg_pattern_strings EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xf4aef3a4 tpg_gen_text EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xf65c5e46 tpg_fillbuffer +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x0529ed23 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 0x0cc2ecdc vb2_core_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x0d8de75d vb2_discard_done -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x23de1837 __traceiter_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x0cf0777d vb2_core_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x1295a4dc vb2_mmap +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x18cebe09 vb2_buffer_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x1ad0f0d8 vb2_core_prepare_buf 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 0x2715d761 vb2_plane_vaddr -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x29226a07 __traceiter_vb2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x2edb1b70 __traceiter_vb2_buf_done -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x371e2b15 vb2_core_streamon -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x448b5e1d vb2_core_queue_init -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x4aa09e1d vb2_plane_cookie -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x4b1c827e __traceiter_vb2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x504026b6 vb2_buffer_done -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x548f9039 vb2_queue_error +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x35b333a0 vb2_core_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x4f721768 vb2_thread_start +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x4ff4032b __traceiter_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x61e04c91 vb2_thread_stop +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x625547cd vb2_write EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x630b24d3 __tracepoint_vb2_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x653e7b5f vb2_core_poll -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x69e6d71e vb2_thread_stop -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x7076fb2e vb2_core_streamoff -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x8d8e5c9f vb2_read -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x90574972 vb2_core_querybuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x962d9138 vb2_core_reqbufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x9cb96353 vb2_mmap -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x9f912d1f vb2_thread_start -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xa9a403f9 vb2_request_object_is_buffer +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x63b08056 vb2_core_create_bufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x655af467 __traceiter_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x6a3d4a05 vb2_plane_cookie +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x73560567 vb2_request_buffer_cnt +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x7832985c vb2_core_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x7f76d7b5 vb2_discard_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x81684685 vb2_queue_error +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x87dcdc6f __traceiter_vb2_buf_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x8fc120bc vb2_read +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x944a2a6b vb2_core_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x9ec73f0a vb2_core_streamoff +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x9ecb9b4b vb2_core_expbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xa8859d9a __traceiter_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xb20119bb vb2_core_querybuf EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xb6f4b031 __SCK__tp_func_vb2_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xb96fbb33 vb2_core_queue_release EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xb9d2df39 __SCK__tp_func_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xc5efdccb vb2_plane_vaddr 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 0xd2acf5cd vb2_core_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xdf14cc04 vb2_write -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xe0ecd541 vb2_wait_for_all_buffers -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xe13341e1 vb2_core_create_bufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xebbe1ccf vb2_core_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xeeafd19e vb2_core_expbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xf417e0bc vb2_request_buffer_cnt +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xca8d0491 vb2_core_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xcdcc753d vb2_core_queue_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xd43cc32a vb2_request_object_is_buffer +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xd5f7ac51 vb2_wait_for_all_buffers EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xf703a3f9 __tracepoint_vb2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0x84ee55eb vb2_dma_contig_set_max_seg_size -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0xff1ca544 vb2_dma_contig_memops -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-sg 0xf2b973c4 vb2_dma_sg_memops -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-memops 0x3d0a9a93 vb2_common_vm_ops -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x058e63cc vb2_fop_mmap -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x151c3449 vb2_poll -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x2e79a63e vb2_streamoff -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x326f08d3 vb2_video_unregister_device -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x37e48bac vb2_reqbufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x4d1e78cb vb2_ioctl_streamon -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x4f57bffe _vb2_fop_release -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x54075456 vb2_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x637a8e5b vb2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x6f7f1bd8 vb2_fop_release -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x75fda041 vb2_request_validate -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x76c1fa37 vb2_ioctl_streamoff -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x77ef5947 vb2_ioctl_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x78c789ef vb2_create_bufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x7a48c54e vb2_fop_write -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x8f191fd0 vb2_ioctl_expbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x8f6b2308 vb2_ioctl_reqbufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x92e1db2e vb2_ops_wait_prepare -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x9505fcd6 vb2_queue_init_name -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x96546252 vb2_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x9d921c54 vb2_ioctl_create_bufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xa038c644 vb2_expbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xa5d4a18e vb2_ioctl_querybuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xa62ed445 vb2_queue_init -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xa7dfc4b2 vb2_queue_release -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xacc9d90d vb2_queue_change_type -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xb659ed3a vb2_request_queue -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xb7cd95a7 vb2_streamon -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xcfe8aa1b vb2_ops_wait_finish -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xd931d04c vb2_fop_poll -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xdffef799 vb2_fop_read -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xe9759f5a vb2_ioctl_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xf0856e6f vb2_find_timestamp -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xfc9f946c vb2_ioctl_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-vmalloc 0xe526c5e7 vb2_vmalloc_memops -EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0x0f0b26b9 dvb_module_probe -EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0x1e2586c7 dvb_module_release -EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0xc9082f1a dvb_create_media_graph -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/as102_fe 0x0b5ed1e7 as102_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24117 0xb603ee1e cx24117_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/gp8psk-fe 0xfb48ad0f gp8psk_fe_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mxl5xx 0x90cb1d44 mxl5xx_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0910 0xf92587c1 stv0910_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv6111 0xb1877ac6 stv6111_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0x7cd0ebd7 tda18271c2dd_attach -EXPORT_SYMBOL_GPL drivers/media/i2c/aptina-pll 0xa7e57706 aptina_pll_calculate -EXPORT_SYMBOL_GPL drivers/media/i2c/ccs-pll 0x4d91761c ccs_pll_calculate -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x01cf6b0c max9271_set_address -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x0357fb2a max9271_set_serial_link -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x1212fa37 max9271_configure_gmsl_link -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x1aacfe11 max9271_clear_gpios -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x26e28225 max9271_set_gpios -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x408a2cb1 max9271_enable_gpios -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x987b7509 max9271_wake_up -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xc2e9a523 max9271_verify_id -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xcdea078d max9271_set_high_threshold -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xd6c9bb4c max9271_disable_gpios -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xd78b3934 max9271_configure_i2c -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xd9abf7d9 max9271_set_translation -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xf2b0c302 max9271_set_deserializer_address -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x0001fbb3 __media_entity_setup_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x004d75d3 __media_remove_intf_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x078d3748 __media_pipeline_stop -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x0d7f1fa7 media_entity_remove_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x0e18974d media_get_pad_index -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x11717bc3 media_device_cleanup -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x14cfb39f media_device_unregister -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x18a30802 __media_pipeline_start -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x2044ad2f media_request_object_put -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x204cb195 media_request_object_unbind -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x2b5ed544 media_devnode_remove -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x361935b8 media_request_object_complete -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x3abec25b media_create_intf_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x3ea433a3 media_devnode_create -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x45c663c3 media_device_register_entity -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x4e024238 media_request_object_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x4f043b30 media_entity_get_fwnode_pad -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x5e31dd29 media_remove_intf_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x6b2ece58 media_entity_pads_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x6d8364f5 media_device_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x6f45dbcc media_request_object_find -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x6f979f1a media_request_put -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x713af709 __media_device_usb_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x82575c25 media_remove_intf_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x90f7d717 media_create_pad_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x9355720e media_request_get_by_fd -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x94163f48 media_entity_setup_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x9b6f788f media_graph_walk_start -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x9be6b0f9 media_entity_find_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xa15ed43c media_entity_remote_pad -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xa209921a media_device_unregister_entity_notify -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xa28ee420 media_graph_walk_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xa7061d3b media_device_unregister_entity -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xac631caa media_graph_walk_cleanup -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xaf2eebdf __media_entity_remove_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc15b7b38 media_device_delete -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc4cb1739 media_device_pci_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc7ed24b6 media_pipeline_stop -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd892e32d __media_remove_intf_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xdb4b11ea media_pipeline_start -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe1fb7041 media_create_pad_link +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0x1a02261c vb2_dma_contig_memops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0x943c0486 vb2_dma_contig_set_max_seg_size +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-sg 0xdc2be773 vb2_dma_sg_memops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-memops 0x40cdd708 vb2_common_vm_ops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x0e431513 vb2_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x0fc101a0 vb2_ops_wait_finish +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x130db98b vb2_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x1f57f751 vb2_queue_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x21af3062 vb2_fop_write +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x3a1bb9d0 vb2_request_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x41ce8249 vb2_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x45b0e0fe vb2_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x4dcfa755 vb2_find_timestamp +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x500b5461 vb2_fop_read +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x56ec2f3c vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x58df846d vb2_queue_init +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x5f015272 vb2_queue_change_type +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x604c8471 vb2_streamoff +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x62df42c1 vb2_ops_wait_prepare +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x63d7d3db vb2_create_bufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x643fc18c vb2_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x6df87491 vb2_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x728e4b7d vb2_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x7859795d vb2_request_validate +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x96c11bf3 vb2_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x9bde1dd3 vb2_queue_init_name +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xa67b8d34 vb2_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xbe3275e7 vb2_fop_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xc3abf247 vb2_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xce36f69d vb2_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xd066b9ea vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xd17b4fdf vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xe31588ce vb2_expbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xe490724e vb2_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xe51b2816 vb2_video_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xe6d99f1f vb2_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xf8067bca vb2_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xfc70d1d4 _vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-vmalloc 0xb00d715c vb2_vmalloc_memops +EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0x1248b382 dvb_create_media_graph +EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0xcc93811d dvb_module_release +EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0xfae62793 dvb_module_probe +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/as102_fe 0x4f8ae95c as102_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24117 0xc98bc07c cx24117_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/gp8psk-fe 0x488fb921 gp8psk_fe_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mxl5xx 0x8b488fce mxl5xx_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0910 0x52dfcf3c stv0910_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv6111 0xc5d526c3 stv6111_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0x11809291 tda18271c2dd_attach +EXPORT_SYMBOL_GPL drivers/media/i2c/aptina-pll 0xdb613113 aptina_pll_calculate +EXPORT_SYMBOL_GPL drivers/media/i2c/ccs-pll 0x1ec960bd ccs_pll_calculate +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x068c5a5c max9271_configure_i2c +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x0b55bdbf max9271_set_address +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x1ab1634c max9271_disable_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x321c6ef0 max9271_configure_gmsl_link +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x5ef00033 max9271_wake_up +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x60f8a3d3 max9271_verify_id +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x7154be62 max9271_set_high_threshold +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x9a3e5b72 max9271_set_deserializer_address +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xa0ccc69d max9271_clear_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xac3d162f max9271_enable_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xb6771cdb max9271_set_translation +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xe61c3d61 max9271_set_serial_link +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xf17b2ebc max9271_set_gpios +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x012f7eda media_entity_find_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x111c52a0 media_graph_walk_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x118a438d media_request_object_bind +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x16aba319 media_device_unregister +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x187f870b media_device_register_entity_notify +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x1ad33c4b __media_device_register +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x1e27e33d media_request_object_unbind +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x1e5a4e67 __media_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x2db74ea8 media_device_delete +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x4026e69d media_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x42fc62d8 media_device_register_entity +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x4dfac03d __media_device_usb_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x55291f26 media_devnode_remove +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x5d04ea5f __media_remove_intf_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x5d04fc9b media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x6210e38c media_entity_get_fwnode_pad +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x63831c5f media_graph_walk_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x677b186d media_device_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x6c42b3bf media_graph_walk_cleanup +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x72f2b23d media_device_unregister_entity_notify +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x775af7f5 media_device_pci_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7fb56914 media_remove_intf_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x8d6862ce media_devnode_create +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x911b3aa5 media_request_object_find +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x933d4445 media_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x97675c3c media_request_object_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x9a04a86b __media_remove_intf_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x9c8d7161 media_entity_remote_pad +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x9e2117c5 media_create_pad_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xa417726c media_create_intf_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xb00a245d media_device_usb_allocate +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xb0eda557 media_request_object_complete +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xba1d4764 media_create_pad_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xbe7ef211 media_device_unregister_entity +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc5e9db64 media_device_cleanup +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc732cfc1 media_remove_intf_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xcb563d40 media_get_pad_index +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd0abf50e media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xdc49faee __media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xdd089f94 media_request_put +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xde467af2 media_request_object_put EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe5ceecd6 media_entity_enum_cleanup -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf1d2b931 media_request_object_bind -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf5f3d423 media_device_register_entity_notify -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf7065263 media_graph_walk_next -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xfbbabe4d media_device_usb_allocate +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xee910e2d __media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf2003ebf media_request_get_by_fd +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf2d63205 media_entity_pads_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xfbdfa27f media_graph_walk_next +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xfbf73290 __media_pipeline_start EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xfc781c47 __media_entity_enum_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xfe869775 __media_device_register -EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0x93c8c5eb cx88_setup_xc3028 -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x02aa1a47 mantis_ca_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x09dc14b8 mantis_i2c_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x1e9e74bb mantis_gpio_set_bits -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x2dd915a2 mantis_dvb_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x357e6672 mantis_dma_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x60758f28 mantis_uart_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x6b5b902f mantis_get_mac -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x7a72cd55 mantis_frontend_soft_reset -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x889e060c mantis_stream_control -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x909a397b mantis_i2c_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xa26238cb mantis_frontend_power -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xac384bb1 mantis_dma_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xb02e29b9 mantis_pci_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xb49f3861 mantis_dvb_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xbc5a10af mantis_input_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xc20e7c0a mantis_input_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xd21609a9 mantis_pci_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xe6125f88 mantis_uart_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xe94cf4d1 mantis_ca_exit -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x02b68c0b saa7134_g_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x08d80d8f saa7134_vb2_buffer_queue -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x0a40d1f9 saa7134_querycap -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x1f7480a9 saa7134_s_std -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x2c533477 saa7134_g_frequency -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x2dda4340 saa7134_ts_buffer_init -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x67362e91 saa7134_ts_buffer_prepare -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x6d49eacb saa7134_s_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x731617c0 saa7134_querystd -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x7487bd50 saa7134_s_frequency -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x7e9c123b saa7134_ts_stop_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x90be06a9 saa7134_g_std -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x9a3402d2 saa7134_ts_start_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xa131690c saa7134_enum_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xc91effe0 saa7134_ts_qops -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xd1229556 saa7134_s_tuner -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xe403275f saa7134_ts_queue_setup -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xea3cb370 saa7134_g_tuner -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xee9dc934 saa7134_stop_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x494871e0 ttpci_budget_deinit -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x68fa34c0 ttpci_budget_set_video_port +EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0x12b6e265 cx88_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x04a103ec mantis_uart_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x1dbde3cb mantis_input_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x25478970 mantis_ca_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x37ea014d mantis_frontend_power +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x466ad449 mantis_dvb_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x4e6962d1 mantis_input_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x5ba67cdc mantis_i2c_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x616ef6c3 mantis_pci_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x73216dd0 mantis_dma_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x964937e0 mantis_stream_control +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xa27d0930 mantis_pci_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xb47a449c mantis_ca_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xbd27606a mantis_get_mac +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xd36ca426 mantis_dma_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xd4e560a3 mantis_uart_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xe6271dbf mantis_dvb_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xeded02fa mantis_frontend_soft_reset +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xfbebb52a mantis_i2c_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xfe9c6c3e mantis_gpio_set_bits +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x21beffe4 saa7134_ts_buffer_prepare +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x2ef29ad1 saa7134_s_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x4490358a saa7134_enum_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x4681506a saa7134_querystd +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x52e79433 saa7134_ts_qops +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x62ad644e saa7134_ts_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x73d3e674 saa7134_ts_queue_setup +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x90a619bf saa7134_s_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xa09fe395 saa7134_querycap +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xb9a9071a saa7134_g_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xba4c29d3 saa7134_vb2_buffer_queue +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xd407bd2f saa7134_g_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xe36de6f7 saa7134_s_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xe578c95f saa7134_ts_buffer_init +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xe91b0067 saa7134_g_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xeae83e0b saa7134_s_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xed2f37d9 saa7134_ts_start_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xf0b65469 saa7134_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xff6ec1cb saa7134_g_std +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x3c135c6e ttpci_budget_irq10_handler +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x3f76d79a ttpci_budget_debiwrite +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x55544699 ttpci_budget_init EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x7948c222 budget_debug -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x7a6138dc ttpci_budget_irq10_handler -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x81c55f5f ttpci_budget_init_hooks -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x82f49fae ttpci_budget_debiread -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xa1113fc5 ttpci_budget_init -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xa3403548 ttpci_budget_debiwrite +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x9a5598ad ttpci_budget_deinit +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xaa375f31 ttpci_budget_init_hooks +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xd774da3c ttpci_budget_debiread +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xe13be4b9 ttpci_budget_set_video_port EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x0a7999a8 nal_hevc_tier_from_v4l2 -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x2429134b nal_h264_write_pps -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x30bd897f nal_hevc_read_vps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x18377b06 nal_h264_read_pps EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x36d13921 nal_hevc_level_from_v4l2 -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x5ee042c5 nal_hevc_write_filler -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x65d46c25 nal_hevc_write_vps -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x67d2095c nal_hevc_write_sps -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x76f51aa5 nal_hevc_read_sps -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x8164fdf7 nal_h264_read_sps -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x8b145f02 nal_h264_read_filler -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xa5827e82 nal_hevc_read_filler -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xaea7c998 nal_hevc_read_pps -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xd4d7f5bb nal_h264_write_filler -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xd528fa9a nal_hevc_write_pps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x441fab71 nal_hevc_write_vps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x8ac9ecc3 nal_hevc_read_sps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xa0cf8d46 nal_h264_write_pps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xa19eb4cd nal_hevc_read_filler +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xab239016 nal_hevc_read_vps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xc3f483e5 nal_hevc_write_sps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xcd122587 nal_h264_write_filler +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xce805cc9 nal_h264_read_sps EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xda687e65 nal_hevc_profile_from_v4l2 -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xf9dab047 nal_h264_read_pps -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xfcf2acd1 nal_h264_write_sps -EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0x4e0512e5 mccic_register -EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0x6d134330 mccic_resume -EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0x96e355d7 mccic_shutdown -EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0xb5b874f2 mccic_irq -EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0xeddd9c84 mccic_suspend -EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x254b2152 vpu_ipi_register -EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x3a99d8c3 vpu_load_firmware -EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x4558ba08 vpu_wdt_reg_handler -EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x5f8c7dda vpu_mapping_dm_addr -EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x6b094fee vpu_get_vdec_hw_capa -EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0xb0d03131 vpu_get_venc_hw_capa -EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0xdd3c544e vpu_ipi_send -EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0xea7a244a vpu_get_plat_device -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x053e9ef6 hfi_session_continue -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x0ec7d680 venus_helper_get_bufreq -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x108dbd7c venus_helper_set_format_constraints -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x1e8f1f00 venus_helper_release_buf_ref -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x2250f804 venus_helper_init_instance -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x25525f97 venus_helper_get_ts_metadata -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x26326665 hfi_session_deinit +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xe055a3c6 nal_hevc_read_pps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xe11f8d67 nal_hevc_write_filler +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xeaa3e890 nal_hevc_write_pps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xfd3599b1 nal_h264_write_sps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xfda39083 nal_h264_read_filler +EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0x0023d27f mccic_register +EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0x1c765ef9 mccic_irq +EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0x7e0053af mccic_shutdown +EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0xa6cdc38a mccic_resume +EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0xcbd2b86d mccic_suspend +EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x396f7a16 vpu_mapping_dm_addr +EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x4d6f1ab2 vpu_get_venc_hw_capa +EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x547c261f vpu_get_vdec_hw_capa +EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x58c2176f vpu_load_firmware +EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x87cca6ce vpu_ipi_register +EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0xb4475a3f vpu_get_plat_device +EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0xb482bef0 vpu_wdt_reg_handler +EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0xed9d2bb6 vpu_ipi_send +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x0a35d24b venus_helper_get_out_fmts +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x0f539400 venus_helper_buffers_done +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x14614060 venus_helper_set_format_constraints +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x170cb225 venus_helper_set_color_format +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x18dfbfb4 venus_helper_set_stride +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x1d6951bf hfi_session_unload_res +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x2460cba4 hfi_session_deinit 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 0x2bab7e35 venus_helper_find_buf +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x2b4347ba 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 0x2e2bbc81 venus_helper_set_num_bufs -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x32d821c6 venus_helper_process_initial_out_bufs -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x35fdb63b venus_helper_set_stride -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x36e2b22d venus_helper_set_work_mode -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x4256d11d venus_helper_set_bufsize -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x4817ebab venus_helper_vb2_buf_prepare -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x4d783904 venus_helper_set_raw_format -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x53991c3b venus_helper_free_dpb_bufs -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x57a98453 venus_helper_set_input_resolution -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x5995beee venus_helper_intbufs_alloc -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x5ebfe0da venus_helper_session_init -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x61f29953 venus_helper_alloc_dpb_bufs -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x647a3c48 venus_helper_intbufs_free -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x65df8aeb venus_helper_vb2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x6a25f676 hfi_session_set_property -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x6bca90a1 hfi_session_start -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x70bbde4b venus_helper_set_color_format -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x71d62cc6 hfi_session_flush -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x75390716 hfi_session_stop -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x7ba3424c venus_helper_set_dyn_bufmode -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x816a0fdd venus_helper_set_multistream -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x876eb1d9 hfi_session_destroy -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x888e8910 venus_helper_queue_dpb_bufs -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x8d6de6d7 venus_helper_get_out_fmts -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x8f37083e venus_helper_set_output_resolution -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x8f4c5aec hfi_session_unload_res -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x9119d015 venus_helper_get_profile_level -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x9eaaec06 hfi_session_create -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xa971cc5f venus_helper_set_profile_level -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xa9c17b74 hfi_session_init +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x31a1808d venus_helper_set_profile_level +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x343395a6 venus_helper_vb2_start_streaming +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x4f49e8f6 venus_helper_set_raw_format +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x4f98bf55 venus_helper_check_codec +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x52e630c2 venus_helper_vb2_buf_prepare +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x5345790e venus_helper_queue_dpb_bufs +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x53f91c2d hfi_session_init +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x56c6a548 hfi_session_create +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x5ff65321 hfi_session_start +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x64f6a039 venus_helper_init_instance +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x69411028 venus_helper_free_dpb_bufs +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x701a0869 venus_helper_acquire_buf_ref +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x77a80797 venus_helper_set_work_mode +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x7cea4723 hfi_session_continue +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x7f8baf61 venus_helper_get_opb_size +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x862d5a78 venus_helper_set_dyn_bufmode +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x8790666c venus_helper_intbufs_alloc +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x8a38e8a4 venus_helper_set_multistream +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x8bb5314a venus_helper_process_initial_out_bufs +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x8edfa0c4 venus_helper_intbufs_free +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x90f951ef venus_helper_set_num_bufs +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x92fd235c venus_helper_get_ts_metadata +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x9490af8c hfi_session_destroy +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x96309880 venus_helper_release_buf_ref +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x99cf350a hfi_session_flush +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x9f373d60 hfi_session_set_property +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x9fce9bcf venus_helper_get_profile_level +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x9ffda477 venus_helper_alloc_dpb_bufs +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xa566d52d venus_helper_find_buf +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xae906572 hfi_session_abort +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xaee16056 venus_helper_vb2_buf_queue 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 0xbd1a7fe4 hfi_session_process_buf -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xbe7304e3 venus_helper_check_codec -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xcb2fe1b4 venus_helper_process_initial_cap_bufs -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xcbb26791 hfi_session_abort -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xcc234801 venus_helper_vb2_buf_init -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xcfe3421a venus_helper_acquire_buf_ref +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xc12d0fff venus_helper_vb2_buf_init +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xca886a11 venus_helper_process_initial_cap_bufs +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xcb3e9381 venus_helper_unregister_bufs +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xd123f905 hfi_session_get_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 0xd336fac6 venus_helper_intbufs_realloc -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xe1affd11 venus_helper_vb2_stop_streaming -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xe4dc28f3 venus_helper_get_opb_size -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xe86a4804 venus_helper_unregister_bufs -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xf56be659 hfi_session_get_property -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xfd27485b venus_helper_vb2_start_streaming -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xfdfd680d venus_helper_buffers_done +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xd7dc76ba venus_helper_set_input_resolution +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xd8ee819a venus_helper_get_bufreq +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xda6449ad venus_helper_vb2_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xdd4645dc venus_helper_session_init +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xe39a73b6 hfi_session_stop +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xe5551aaa venus_helper_set_output_resolution +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xe88d634f venus_helper_set_bufsize +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xee808aa6 venus_helper_intbufs_realloc EXPORT_SYMBOL_GPL drivers/media/platform/rcar-fcp 0x3d858696 rcar_fcp_put EXPORT_SYMBOL_GPL drivers/media/platform/rcar-fcp 0x4ad5d888 rcar_fcp_enable EXPORT_SYMBOL_GPL drivers/media/platform/rcar-fcp 0x5fe6f6e8 rcar_fcp_disable EXPORT_SYMBOL_GPL drivers/media/platform/rcar-fcp 0x9877c29f rcar_fcp_get -EXPORT_SYMBOL_GPL drivers/media/platform/rcar-fcp 0xe8022090 rcar_fcp_get_device -EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0x0b3d98e3 vsp1_du_atomic_flush -EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0x26e37a3c vsp1_du_init -EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0x509141a9 vsp1_du_setup_lif -EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0x64e61199 vsp1_du_map_sg -EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0x6b56a8f1 vsp1_du_atomic_update -EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0x73d51216 vsp1_du_atomic_begin -EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0xafb3d3bb vsp1_du_unmap_sg -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x0209920c xvip_enum_mbus_code -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x32d7750b xvip_clr_or_set -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x434d7bd7 xvip_of_get_format +EXPORT_SYMBOL_GPL drivers/media/platform/rcar-fcp 0xcc14b2c7 rcar_fcp_get_device +EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0x2c1bb09c vsp1_du_atomic_flush +EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0x5a3e150e vsp1_du_atomic_update +EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0xae6db07f vsp1_du_unmap_sg +EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0xaf6495aa vsp1_du_atomic_begin +EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0xb43573fb vsp1_du_init +EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0xd64e49ee vsp1_du_setup_lif +EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0xd837173d vsp1_du_map_sg +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x2181e099 xvip_clr_or_set +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x223daf0a xvip_of_get_format EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x43738fab xvip_set_format_size -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x46e7bbab xvip_init_resources -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xb251fccd xvip_enum_frame_size +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x595c08f3 xvip_cleanup_resources +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x8a650d24 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 0xd94cbd42 xvip_cleanup_resources +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xc2b07cb2 xvip_enum_frame_size +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xd56142eb xvip_enum_mbus_code EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xe08e6063 xvip_get_format_by_code -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xfa26597f xvip_clr_and_set -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0x20363195 xvtc_of_get +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xe6528ed6 xvip_init_resources EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0x3c16a6b1 xvtc_generator_stop EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0x47d7900b xvtc_generator_start EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0xa8a0f912 xvtc_put -EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x311a9ed4 radio_tea5777_exit -EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0xc469c969 radio_tea5777_init -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x282c7003 si470x_set_freq -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x67c65900 si470x_viddev_template -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xd20cba21 si470x_ctrl_ops -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xd5009035 si470x_start -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xfc2f9836 si470x_stop -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x02b2dd0e lirc_scancode_event +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0xd1733467 xvtc_of_get +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x54c2cd9a radio_tea5777_exit +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0xaf9a41ab radio_tea5777_init +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x0f886b32 si470x_viddev_template +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x53622905 si470x_set_freq +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xaec77220 si470x_start +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xc84e0338 si470x_ctrl_ops +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xdf3dad4d si470x_stop +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x08b0b004 rc_unregister_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x1133ebae rc_keyup +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x142eb17a ir_raw_event_set_idle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x27c39dc9 rc_repeat EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x2ed90ced rc_map_unregister -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x429e950c ir_raw_event_set_idle -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x5203b6b8 ir_raw_event_store_with_filter -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x6d9a9bec rc_keydown_notimeout -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x6dba3484 rc_repeat -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x713fd48b ir_raw_event_store_with_timeout -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x80a6e7e2 rc_free_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x8ca5d7b8 rc_g_keycode_from_table -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x8d733897 rc_allocate_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x92aec170 ir_raw_event_store_edge -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x94e114a8 rc_keydown -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x9b467af3 devm_rc_register_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xa0131a9d rc_keyup -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xac364e0d ir_raw_event_handle -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb664d1a9 rc_unregister_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x2f8c40db ir_raw_event_store_edge +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x54ace736 lirc_scancode_event +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x7fb7ff49 rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x8bbfe873 devm_rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x8bd08ded ir_raw_event_store +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x9efff89a rc_keydown +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb431870e rc_keydown_notimeout EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb960f15c rc_map_register -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xc22ec898 ir_raw_event_store -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xc86be950 devm_rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xd3ad36c1 devm_rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xda0a69f1 rc_free_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xe2b99c1a rc_g_keycode_from_table +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xea4ab750 rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xf154d2d1 ir_raw_event_store_with_filter +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xfbb59618 ir_raw_event_store_with_timeout EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xfc5d3079 rc_map_get -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xfe8b063f rc_register_device -EXPORT_SYMBOL_GPL drivers/media/tuners/mt2063 0x16d9f00a mt2063_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/mt20xx 0x2b77e7e6 microtune_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5007t 0x74ee2874 mxl5007t_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/r820t 0x944fda58 r820t_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda18271 0xa9ea368c tda18271_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda827x 0x5c175c59 tda827x_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x86a0c602 tda829x_probe -EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x8dbc0b1a tda829x_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda9887 0xd36a1659 tda9887_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x7a3706c4 tea5761_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0xc64052ca tea5761_autodetection -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x3b555faf tea5767_autodetection -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x73d3cf16 tea5767_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tuner-simple 0x822902d1 simple_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xff0a8f9e ir_raw_event_handle +EXPORT_SYMBOL_GPL drivers/media/tuners/mt2063 0x59e9bfb9 mt2063_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mt20xx 0x34dd7a2e microtune_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5007t 0x38be0b68 mxl5007t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/r820t 0x69f4e707 r820t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda18271 0x62392cd2 tda18271_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda827x 0xbe50e1db tda827x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0xb3ad1578 tda829x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0xbe101e1b tda829x_probe +EXPORT_SYMBOL_GPL drivers/media/tuners/tda9887 0xf0e87df0 tda9887_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x59b56d6d tea5761_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x6db3d567 tea5761_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x07819313 tea5767_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x53d7bf3c tea5767_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tuner-simple 0x1c651a6e simple_tuner_attach EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x017ea7c7 cx231xx_tuner_callback -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x0716af53 is_fw_load -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x21db1429 cx231xx_uninit_vbi_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x2acbf010 cx231xx_capture_start -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x2db0b0ed cx231xx_set_alt_setting -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x308486c4 cx231xx_enable656 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x4a37f60a cx231xx_get_i2c_adap -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x64906b68 cx231xx_send_gpio_cmd -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x6c8e54e4 cx231xx_send_usb_command -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x778d4518 cx231xx_set_mode -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x7d05e670 cx231xx_init_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x7e528001 cx231xx_disable656 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x89bd4595 cx231xx_unmute_audio -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x8aa83757 cx231xx_dev_uninit -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x939820ee cx231xx_dev_init -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x95613477 cx231xx_enable_i2c_port_3 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xab7f5edd cx231xx_init_vbi_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xb33c0121 cx231xx_uninit_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xbada2b6d cx231xx_demod_reset -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xe0504ee7 cx231xx_uninit_bulk -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xf59e00e0 cx231xx_init_bulk -EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0xf8ee031a mxl111sf_demod_attach -EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0x300f5901 mxl111sf_tuner_attach -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x0ce2c7c5 em28xx_stop_urbs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x0d2dd6dc em28xx_uninit_usb_xfer -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x17e8ce37 em28xx_write_ac97 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x1e0925ed em28xx_setup_xc3028 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x3a3dbdd5 em28xx_set_mode -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x62a46194 em28xx_read_ac97 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x65c542d2 em28xx_init_camera -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x6e6807dd em28xx_toggle_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x0daa9ebc cx231xx_uninit_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x0e6f1ef5 cx231xx_send_usb_command +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x30c30fed cx231xx_send_gpio_cmd +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x3e608e5f cx231xx_uninit_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x413297cb cx231xx_init_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x4dca62a8 cx231xx_enable_i2c_port_3 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x5ee825d2 cx231xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x64990fb9 cx231xx_dev_uninit +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x6e0fcae1 is_fw_load +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x709fc174 cx231xx_enable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x7d45d6ce cx231xx_init_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x8c154ae2 cx231xx_uninit_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x961087f1 cx231xx_get_i2c_adap +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x9ddcda28 cx231xx_dev_init +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xa8bf52b4 cx231xx_demod_reset +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xa9f052db cx231xx_init_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xad228153 cx231xx_unmute_audio +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xdbc3a8c3 cx231xx_set_alt_setting +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xef82bb28 cx231xx_disable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xf3296532 cx231xx_capture_start +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0xbef9421f mxl111sf_demod_attach +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0xc5e6ad5e mxl111sf_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x0221dc9a em28xx_init_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x0da6d0c7 em28xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x1483d535 em28xx_gpio_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x290769b1 em28xx_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x2af12678 em28xx_write_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x391b1893 em28xx_write_regs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x3bf8cf85 em28xx_toggle_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x40e588ad em28xx_read_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x424bf0c2 em28xx_write_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x47fae1b7 em28xx_audio_setup +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x55daaf30 em28xx_find_led +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x6f031923 em28xx_init_camera EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x721f7cc7 em28xx_free_device -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x775c992a em28xx_write_reg_bits EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7fc8652c em28xx_tuner_callback -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x80b15f49 em28xx_alloc_urbs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x87b96f44 em28xx_init_usb_xfer -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x89eadefd em28xx_read_reg -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x8b1a5620 em28xx_write_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x8c978793 em28xx_uninit_usb_xfer EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x921d7c65 em28xx_boards -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xc8b80b5f em28xx_audio_analog_set -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xcb413c57 em28xx_find_led -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xd18830bd em28xx_gpio_set -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xe1534a22 em28xx_write_regs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xee3e4337 em28xx_audio_setup +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xafcfd61b em28xx_write_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xde8f7b97 em28xx_alloc_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xe70af071 em28xx_audio_analog_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xe8eda1d3 em28xx_read_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xec94aca7 em28xx_stop_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x1fae80e6 tm6000_set_reg_mask EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x2309a6d6 tm6000_xc5000_callback -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x57c99c42 tm6000_get_reg -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x7c2bdef7 tm6000_set_audio_bitrate +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x683196ea tm6000_get_reg +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x6ae7354c tm6000_set_audio_bitrate EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x89b611dd tm6000_debug -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x95bd2031 tm6000_set_reg_mask -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xaebaf935 tm6000_set_reg +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xbb39e9f9 tm6000_set_reg EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xdff8e89d tm6000_tuner_callback -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x6f3fdec7 __v4l2_async_notifier_add_fwnode_remote_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x75647e93 __v4l2_async_notifier_add_fwnode_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x9cd3bc12 __v4l2_async_notifier_add_i2c_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0xc217dab9 __v4l2_async_notifier_add_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0xcee1e43e v4l2_async_notifier_cleanup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x09a9570e __v4l2_async_notifier_add_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x17a42e45 __v4l2_async_notifier_add_fwnode_remote_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0xbed3915d __v4l2_async_notifier_add_fwnode_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0xf6370f24 v4l2_async_notifier_cleanup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0xfe6a282e __v4l2_async_notifier_add_i2c_subdev EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x01612c0b v4l2_detect_gtf EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x08402862 v4l2_print_dv_timings EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x0958448b v4l2_set_edid_phys_addr @@ -13869,20 +13907,20 @@ EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xef15cc44 v4l2_hdmi_rx_colorimetry 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 0x10659a4d v4l2_flash_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x66ecf9d0 v4l2_flash_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0xd669aa5e v4l2_flash_indicator_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x04dfce53 v4l2_fwnode_parse_link -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x2db58559 v4l2_fwnode_endpoint_alloc_parse -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x3539b3c4 v4l2_fwnode_endpoint_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x73526d61 v4l2_flash_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x7e21dfe6 v4l2_flash_indicator_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0xac0d99ea v4l2_flash_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x1901f0de v4l2_fwnode_endpoint_alloc_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x21564ec7 v4l2_async_notifier_parse_fwnode_endpoints +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x4a425d49 v4l2_fwnode_endpoint_free EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x612ddce5 v4l2_fwnode_connector_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x68bf182b v4l2_fwnode_device_parse -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x99a3ceb5 v4l2_async_notifier_parse_fwnode_endpoints -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xaa13040a v4l2_fwnode_endpoint_parse -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xbbebd849 v4l2_fwnode_put_link -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xe844aa7c v4l2_async_register_subdev_sensor -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xedf2412b v4l2_fwnode_connector_parse -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xeea8ee5a v4l2_fwnode_connector_add_link +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x72e528fb v4l2_fwnode_device_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x835c9c62 v4l2_fwnode_parse_link +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x981d9538 v4l2_async_register_subdev_sensor +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xc62cb153 v4l2_fwnode_connector_add_link +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xc658250d v4l2_fwnode_connector_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xc8227632 v4l2_fwnode_put_link +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xe3980225 v4l2_fwnode_endpoint_parse EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-h264 0x2c620a2d v4l2_h264_build_p_ref_list EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-h264 0x4b224860 v4l2_h264_init_reflist_builder EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-h264 0x5150f937 v4l2_h264_build_b_ref_lists @@ -13891,383 +13929,383 @@ 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 0x0de65a2e v4l2_m2m_ioctl_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x10eecd26 v4l2_m2m_last_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1d53d69b v4l2_m2m_buf_remove_by_idx -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x2bd93d7c v4l2_m2m_ioctl_encoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x360e60f2 v4l2_m2m_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3add2247 v4l2_m2m_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3d689cb7 v4l2_m2m_ctx_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3e5cb147 v4l2_m2m_fop_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4128eaba v4l2_m2m_ioctl_try_decoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4162d4bd v4l2_m2m_try_schedule -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x41bad1b6 v4l2_m2m_update_stop_streaming_state -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x43d9bb9e v4l2_m2m_update_start_streaming_state -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5024e31e v4l2_m2m_ioctl_decoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x542b3f95 v4l2_m2m_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x55836006 v4l2_m2m_buf_copy_metadata -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x57d76cf7 v4l2_m2m_ioctl_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5c2ecd89 v4l2_m2m_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x62819d5e v4l2_m2m_ioctl_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6358a80e v4l2_m2m_ioctl_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x643dc4e3 v4l2_m2m_last_buffer_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6696896e v4l2_m2m_ioctl_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6a0ea7f6 v4l2_m2m_decoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6bce85a4 v4l2_m2m_ioctl_try_encoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0152ffe0 v4l2_m2m_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x04dc9755 v4l2_m2m_update_stop_streaming_state +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0f1714bb v4l2_m2m_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0f5292bf v4l2_m2m_next_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x15a38925 v4l2_m2m_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x204a3226 v4l2_m2m_last_buffer_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x2701104a v4l2_m2m_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x2ea7328c v4l2_m2m_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x33bc2dab v4l2_m2m_buf_remove +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x33c6ef2c v4l2_m2m_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x35e8f94c v4l2_m2m_buf_copy_metadata +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3e3da764 v4l2_m2m_ctx_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x432bafa6 v4l2_m2m_buf_remove_by_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4eea16e4 v4l2_m2m_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x50fde079 v4l2_m2m_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5cec2698 v4l2_m2m_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5e4bf772 v4l2_m2m_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5f4d52ce v4l2_m2m_request_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5f56ebb3 v4l2_m2m_update_start_streaming_state +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x61c9c3b7 v4l2_m2m_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x723cd398 v4l2_m2m_streamon EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x730f2eae v4l2_m2m_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x76d2f335 v4l2_m2m_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7e1d5034 v4l2_m2m_ctx_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8981de3d v4l2_m2m_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8ac3d2c8 v4l2_m2m_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8e039d6e v4l2_m2m_ioctl_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x91086d79 v4l2_m2m_ioctl_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x91b20d30 v4l2_m2m_ioctl_stateless_try_decoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x9db4cdb1 v4l2_m2m_buf_remove_by_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa977ff97 v4l2_m2m_ioctl_stateless_decoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb40ad001 v4l2_m2m_request_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb55999db v4l2_m2m_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xba74ce5c v4l2_m2m_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xbcbf06e4 v4l2_m2m_buf_remove -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xbcd98465 v4l2_m2m_next_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x75cb9196 v4l2_m2m_ioctl_try_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x857e70c0 v4l2_m2m_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x921dd4a4 v4l2_m2m_ioctl_encoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x9d69f54f v4l2_m2m_fop_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x9fc41d3e v4l2_m2m_ioctl_try_encoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa365dbfc v4l2_m2m_last_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa6419ee7 v4l2_m2m_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xac472c33 v4l2_m2m_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb2ba28ac v4l2_m2m_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb4844005 v4l2_m2m_buf_remove_by_idx +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb5f40b4a v4l2_m2m_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb60ce8e8 v4l2_m2m_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xba22b8ba v4l2_m2m_try_schedule +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc18e124d v4l2_m2m_ctx_init EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc6fca5ad v4l2_m2m_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd3ab006a v4l2_m2m_fop_mmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd4e29e77 v4l2_m2m_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe8f0138b v4l2_m2m_ioctl_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe9a48585 v4l2_m2m_encoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xcd423b5f v4l2_m2m_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xcd7637fb v4l2_m2m_encoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xcddd07de v4l2_m2m_ioctl_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd121af46 v4l2_m2m_ioctl_stateless_try_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe1a6e142 v4l2_m2m_ioctl_stateless_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe5978f62 v4l2_m2m_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe67b8198 v4l2_m2m_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xea9d1f35 v4l2_m2m_register_media_controller EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf13ff84d v4l2_m2m_unregister_media_controller -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf68b0219 v4l2_m2m_ioctl_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf9779b46 v4l2_m2m_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xfd41060b v4l2_m2m_register_media_controller -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x1bff6b4e videobuf_read_one -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x1ccb4e3b videobuf_queue_cancel -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x260ce307 videobuf_next_field -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x2be41359 videobuf_poll_stream -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x3c9206e5 videobuf_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x503c0792 videobuf_mmap_setup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x575e7218 videobuf_iolock -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x5daa7f60 videobuf_mmap_mapper -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x65f5ff73 videobuf_queue_is_busy -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x761191bf videobuf_read_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x85697adf videobuf_read_start -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x88c8dfae __videobuf_mmap_setup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x9573f84c videobuf_mmap_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x998da57a videobuf_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xa2632a97 videobuf_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xa28aeb7d videobuf_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xa40edfc2 videobuf_waiton -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xbe02c0ec videobuf_alloc_vb -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xc20537dd videobuf_queue_core_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xc30d452d videobuf_read_stream -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xc48c6be7 videobuf_queue_to_vaddr -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd661f0a1 videobuf_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xeb194817 videobuf_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xf9062c55 videobuf_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xfc09b9ea v4l2_m2m_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x001c2b5c videobuf_read_one +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x10b55e89 videobuf_queue_is_busy +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x13998953 videobuf_iolock +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x212ccab2 videobuf_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x2a828eaa videobuf_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x3c0602f8 videobuf_mmap_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x4017424f __videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x422d254a videobuf_read_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x4de09ab3 videobuf_read_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x4fc9b45f videobuf_read_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x54ccff61 videobuf_mmap_mapper +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x680d07be videobuf_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x745b3d5e videobuf_poll_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x76f80332 videobuf_waiton +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x7ba83cfe videobuf_next_field +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x91156376 videobuf_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x9de21a40 videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xab2bab44 videobuf_queue_cancel +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xc81b5eb8 videobuf_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xcefebe4a videobuf_alloc_vb +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xde047be7 videobuf_queue_core_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xe5fb1abd videobuf_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xf152ab91 videobuf_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xf8d25ae0 videobuf_queue_to_vaddr EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x553a86d0 videobuf_sg_alloc -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x5e597006 videobuf_dma_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x70175d49 videobuf_to_dma -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x75b7797d videobuf_queue_sg_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xf9225de4 videobuf_dma_unmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x2c2a1498 videobuf_vmalloc_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x553d1a38 videobuf_to_vmalloc -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0xa10a01a1 videobuf_queue_vmalloc_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x02f5d689 __traceiter_vb2_v4l2_buf_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0958872d v4l2_spi_subdev_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0d57b17a v4l2_mc_create_media_graph -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1023b968 v4l2_s_parm_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x6caf0fce videobuf_dma_unmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x969ad346 videobuf_dma_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xcd8619ab videobuf_to_dma +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xfbbf915a videobuf_queue_sg_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x462b84b8 videobuf_vmalloc_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x5a8c59b0 videobuf_queue_vmalloc_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0xf5996a59 videobuf_to_vmalloc +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x016fca07 v4l2_i2c_new_subdev_board EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x11f3044c __SCK__tp_func_vb2_v4l2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x16f3170b v4l2_fh_is_singular -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x18f20307 v4l_disable_media_source -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1b47492f v4l2_event_unsubscribe_all -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1ced2d1a v4l2_device_register_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x20dfd28e v4l2_device_set_name -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x21137243 v4l2_ctrl_request_hdl_find -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2293665d __traceiter_vb2_v4l2_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x280c65cf v4l2_fh_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x13629b1d v4l2_fh_open +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x156e6a03 v4l2_pipeline_link_notify +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x16a8fa6d v4l2_subdev_get_fwnode_pad_1_to_1 +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1de24001 v4l2_event_dequeue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1f465d4c __traceiter_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x206ca98e v4l2_subdev_alloc_state EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2ae0877b __SCK__tp_func_vb2_v4l2_buf_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2dc6f5ec v4l2_fh_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3c950f02 v4l2_subdev_notify_event -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x429b4113 v4l2_src_change_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2ae5b03a v4l2_subdev_link_validate_default +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x32e12f23 v4l_disable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3bfda928 v4l2_spi_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4266da36 v4l2_device_register EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x452f53b1 __tracepoint_vb2_v4l2_buf_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x453fc97e v4l2_subdev_alloc_state EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x46ac032f __tracepoint_vb2_v4l2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4e4ec861 v4l2_subdev_link_validate_default -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x52c9c303 v4l2_device_disconnect -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5940e183 v4l2_fh_exit -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5bea9db1 v4l2_compat_ioctl32 +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x48eed4a9 v4l2_fh_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4ea72e23 v4l2_i2c_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4fa81679 v4l2_ctrl_request_hdl_ctrl_find +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x52605e21 v4l2_event_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x553ae9ff v4l2_s_parm_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x57308a05 v4l2_pipeline_pm_get +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5bb33a04 __v4l2_ctrl_handler_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x650f37c9 v4l2_device_set_name +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x661627a4 v4l2_device_put +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6617bb5e v4l2_create_fwnode_links +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x66f2e1f8 __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 0x6bf82364 __v4l2_ctrl_handler_setup 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 0x727a8baa v4l2_device_register -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7432999c v4l2_event_subscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x75873d87 v4l2_i2c_subdev_addr -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x76e4b72d v4l2_src_change_event_subdev_subscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7873b079 v4l2_i2c_new_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x78ac4ee0 v4l2_create_fwnode_links_to_pad -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x80c98aab v4l2_event_wake_all -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x816d96a7 v4l2_event_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8254aeac v4l2_event_unsubscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x89a043d1 v4l2_i2c_subdev_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8aaf3eaf v4l2_device_unregister -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8dda28ca __v4l2_device_register_subdev_nodes -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x91f8c0d4 v4l2_pipeline_link_notify -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x92ed6c1f v4l2_fh_open -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x93896ef8 v4l2_fh_del +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x730a3695 v4l2_fh_exit +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x732948ff v4l2_device_unregister_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x757a7301 v4l2_fh_del +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x761cb14b v4l2_fh_is_singular +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7e475933 v4l2_src_change_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8022975d v4l2_spi_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x845c0846 v4l2_g_parm_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x88785819 v4l2_i2c_subdev_set_name +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8fdcfeab v4l2_device_disconnect +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x92c422de v4l2_device_register_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x95ce1a27 v4l2_event_pending +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x98ee8e1c v4l2_i2c_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x99272ca6 v4l2_ctrl_request_hdl_find EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9fef35ac v4l2_apply_frmsize_constraints -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa43471be __traceiter_vb2_v4l2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa54aa8bb __traceiter_vb2_v4l2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa8b365ea v4l2_pipeline_pm_get -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xaab83c67 v4l2_event_pending -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xad0daf37 v4l2_create_fwnode_links +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa2cc80e5 v4l2_fh_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xaae37c3d v4l2_create_fwnode_links_to_pad +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xac989c5c v4l2_subdev_notify_event +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb061fa65 v4l2_event_queue_fh EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb13d41a0 v4l2_subdev_free_state -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb1b91ed4 v4l2_fh_add -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb2d30b9f v4l2_pipeline_pm_put -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbc449006 v4l2_subdev_link_validate -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbe315c88 v4l2_g_parm_cap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc15e9c1d v4l2_event_subdev_unsubscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc5802a95 v4l2_event_queue_fh -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc6859768 v4l2_spi_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb73ce120 v4l2_event_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb78504c8 __v4l2_device_register_subdev_nodes +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb8511807 v4l2_mc_create_media_graph +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbcdf0bb4 v4l2_subdev_link_validate EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc742d6e8 __tracepoint_vb2_v4l2_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc9d706c7 v4l2_event_dequeue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcc316e6c v4l2_get_link_freq +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc9fe7d88 v4l2_event_subscribe EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcc501597 v4l2_fill_pixfmt -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcd1f5e92 v4l2_device_unregister_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcf83c91f v4l2_i2c_subdev_set_name -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcfdd433b v4l2_subdev_get_fwnode_pad_1_to_1 -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd1d32479 v4l_enable_media_source -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xdd6eea88 v4l_vb2q_enable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xce9927b6 v4l2_device_unregister +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd5c5714a __traceiter_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd66f5338 v4l2_event_unsubscribe_all +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xdd52a9d6 v4l2_get_link_freq +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xdda00601 v4l2_i2c_subdev_addr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xdfa2803c v4l2_pipeline_pm_put EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe2822320 __v4l2_find_nearest_size -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe3d80685 v4l2_ctrl_request_hdl_ctrl_find -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe4e09302 v4l2_i2c_new_subdev_board +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe4586e56 v4l2_src_change_event_subdev_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe4a2838c v4l_enable_media_source EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe5a33113 __SCK__tp_func_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe6886704 v4l2_fh_add +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xea8ea4f8 __traceiter_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xeb259302 v4l2_event_wake_all EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf2a353ac v4l2_i2c_tuner_addrs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf2e08a8f v4l2_device_put EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf5ef842e v4l_bound_align_image -EXPORT_SYMBOL_GPL drivers/memory/mtk-smi 0x4d325fc3 mtk_smi_larb_get -EXPORT_SYMBOL_GPL drivers/memory/mtk-smi 0xce1f5239 mtk_smi_larb_put -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x16df88cf pm80x_regmap_config +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfb825867 v4l2_event_subdev_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfcd51b4a v4l_vb2q_enable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfeb731e7 v4l2_compat_ioctl32 +EXPORT_SYMBOL_GPL drivers/memory/mtk-smi 0x5e21e06b mtk_smi_larb_get +EXPORT_SYMBOL_GPL drivers/memory/mtk-smi 0xe40c6442 mtk_smi_larb_put +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xa2308a35 pm80x_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xcf49c690 pm80x_regmap_config EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xd99fd720 pm80x_deinit -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xe7f0e25d pm80x_pm_ops -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xf4f5f3cd pm80x_init -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x1b4a90e6 arizona_free_irq -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x1c4ee122 wm5110_patch +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xf4799802 pm80x_init +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x0bfc583b wm5110_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x0d5e9a06 arizona_clk32k_disable +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x1e4ff0ec arizona_clk32k_enable +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x3714b334 arizona_dev_exit EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x3dc526a9 arizona_of_match -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x3e0f3d68 wm5110_i2c_regmap EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x4048fbbc wm8997_aod -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x40f84d1f arizona_request_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x48c49977 wm5110_spi_regmap EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x4c087981 wm5110_aod -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x60160d80 arizona_set_irq_wake -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x6ca627bd wm8997_patch -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x6f7e916f arizona_pm_ops -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x7d37fc24 wm5110_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x8064a819 wm5102_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x8ce89dc4 arizona_clk32k_disable -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x91967eed wm8998_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x9ef0551c cs47l24_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x5db1072b arizona_free_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x6ca7a637 cs47l24_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x6d5d0104 wm8997_patch +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x8315ce8b wm8997_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x95c8f1ef cs47l24_patch +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x99d7370d arizona_request_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xa4651bbe wm8998_i2c_regmap EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xa6b70564 wm8997_irq EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xa727bd3b cs47l24_irq EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xaaf78759 wm5110_irq -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xaba22ce1 arizona_dev_exit -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xb6e6abd8 wm8997_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xbd8aac70 arizona_dev_init -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xc35c6955 wm5102_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xb597cd4a wm5102_spi_regmap EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xc81b43ab wm5110_revd_irq -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xe2268e2a arizona_clk32k_enable -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xf91ae94c cs47l24_patch -EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0x0c05cfe7 atc260x_device_probe -EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0xc2c2fad5 atc260x_match_device -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x080a3928 da9150_write_qif -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x337acbf0 da9150_bulk_write -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x39fa2e2e da9150_set_bits -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x404f0334 da9150_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x87666518 da9150_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xaa1ab54d da9150_bulk_read -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xdd1a68f8 da9150_read_qif +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xccac7890 arizona_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xdcd16b5c arizona_dev_init +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xe80f28d7 wm5110_patch +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xf6ac8f93 arizona_set_irq_wake +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xf6af0c06 wm5102_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0x35dc0a5c atc260x_device_probe +EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0x5bc5394d atc260x_match_device +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x275409ce da9150_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x48249f1b da9150_read_qif +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x65c64464 da9150_bulk_read +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x76f5844c da9150_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x8d708288 da9150_write_qif +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x9198636e da9150_bulk_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xe84b854d da9150_set_bits 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 0x203cc6e3 kempld_write32 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x598eb1e3 kempld_write8 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x62bb4c4e kempld_release_mutex -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x8c2b5f8b kempld_write16 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xa8eaee02 kempld_get_mutex -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xab97077a kempld_read32 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xba42e01b kempld_read8 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xcb6baa68 kempld_read16 -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x54bee3f7 lm3533_write -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x7680384f lm3533_update -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x98aef56d lm3533_read -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x0343f5cb lm3533_ctrlbank_get_brightness -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x3d26abce lm3533_ctrlbank_get_pwm -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x6f7293be lm3533_ctrlbank_set_max_current -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x8f83f90a lm3533_ctrlbank_set_brightness -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xa42cb12a lm3533_ctrlbank_set_pwm -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xf15e3625 lm3533_ctrlbank_enable -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xfef5a25b lm3533_ctrlbank_disable -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x96fef392 lp3943_read_byte -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xb69f0e93 lp3943_update_bits -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xf2add028 lp3943_write_byte +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x074d6b84 kempld_read8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x10c98e93 kempld_write16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x43632dfa kempld_get_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x6b5c02b4 kempld_read16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x887dc73c kempld_read32 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x889f6a0b kempld_release_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xda044b79 kempld_write8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xeec40f9f kempld_write32 +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x2d35c0ca lm3533_write +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x9607529f lm3533_read +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xe443c2d1 lm3533_update +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x5d29e69a lm3533_ctrlbank_set_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x9a9e556b lm3533_ctrlbank_disable +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xc56c7fbf lm3533_ctrlbank_set_max_current +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xda909101 lm3533_ctrlbank_get_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xf4db777f lm3533_ctrlbank_set_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xff0aa08e lm3533_ctrlbank_get_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xffaa1499 lm3533_ctrlbank_enable +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x283003fe lp3943_write_byte +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x41687d8e lp3943_read_byte +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x431167f1 lp3943_update_bits +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x0926d558 cs47l92_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x092b0918 cs47l92_16bit_i2c_regmap EXPORT_SYMBOL_GPL drivers/mfd/madera 0x0f379262 madera_of_match -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x1b89d205 madera_dev_exit -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x1dbb94b2 cs47l35_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x1f93da70 cs47l15_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x1f9e0630 cs47l15_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x3351ccea madera_pm_ops -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x5ca6c77c cs47l15_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x5cab1b3c cs47l15_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x621a4dfb cs47l15_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x631889c9 madera_dev_init -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x6edeb561 cs47l90_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x8b439a85 cs47l92_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x8b4e46c5 cs47l92_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x9584411a cs47l85_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x96656db0 cs47l35_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x9668b1f0 cs47l35_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xa417f6c8 cs47l85_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xa41a2a88 cs47l85_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xa50a472d cs47l92_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xbcc28178 cs47l90_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xbccf5d38 cs47l90_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xc8768789 cs47l92_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xc87b5bc9 cs47l92_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xd55070bc cs47l35_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xd55dacfc cs47l35_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xe722ebc4 cs47l85_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xe72f3784 cs47l85_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x1400226d cs47l35_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x140dfe2d cs47l35_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x1a340cce madera_dev_init +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x2672b915 cs47l85_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x267f6555 cs47l85_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x30091d87 cs47l35_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x3ea7cea5 cs47l90_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x3eaa12e5 cs47l90_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x4a13c854 cs47l92_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x4a1e1414 cs47l92_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x57353f61 cs47l35_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x5738e321 cs47l35_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x6547a419 cs47l85_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x654a7859 cs47l85_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x7d92d3a9 cs47l90_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x7d9f0fe9 cs47l90_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x9df695ad cs47l15_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x9dfb49ed cs47l15_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xa2eea103 cs47l15_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xc12c7662 cs47l92_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xc8d0d8d6 madera_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xcd908792 cs47l85_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xdec388a1 cs47l15_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xdece54e1 cs47l15_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xe3d10b03 madera_dev_exit EXPORT_SYMBOL_GPL drivers/mfd/madera 0xebe384cb madera_name_from_type -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xfff79c74 cs47l90_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xfffa4034 cs47l90_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x194369ce mc13xxx_common_init -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x6e9b12b0 mc13xxx_common_exit -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x9954f5d3 mc13xxx_adc_do_conversion -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xb3416a8e mc13xxx_variant_mc13892 -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xe1f4d4c6 mc13xxx_variant_mc34708 -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xf3fb21ae mc13xxx_variant_mc13783 +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xf41e69ae cs47l90_patch +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x0bcabd3f mc13xxx_adc_do_conversion +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x2ca67574 mc13xxx_variant_mc34708 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x3ea9801c mc13xxx_variant_mc13783 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x6d083491 mc13xxx_common_init +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x7e13cb3c mc13xxx_variant_mc13892 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xffd7ce58 mc13xxx_common_exit EXPORT_SYMBOL_GPL drivers/mfd/motorola-cpcap 0xa226dbe8 cpcap_sense_virq -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x00b048a5 pcf50633_write_block -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x12d37bfe pcf50633_irq_unmask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x19a6bb78 pcf50633_irq_mask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x35692331 pcf50633_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x5db2386f pcf50633_register_irq -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x8cf54fb1 pcf50633_reg_clear_bits -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x979ffe94 pcf50633_read_block -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x9db8a9d9 pcf50633_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xb46b344a pcf50633_free_irq -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xe0728a5c pcf50633_reg_set_bit_mask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xe38f6e73 pcf50633_irq_mask_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x187ae7d9 pcf50633_adc_async_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x8af2899f pcf50633_adc_sync_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x1d2d9053 pcf50633_gpio_set -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x6f8855d2 pcf50633_gpio_invert_set -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x8895e054 pcf50633_gpio_power_supply_set -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xb63575c7 pcf50633_gpio_invert_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xbbdbf50e pcf50633_gpio_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x462ccd38 pcf50633_free_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x69db1e33 pcf50633_read_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x6f484a3b pcf50633_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x714b75c2 pcf50633_write_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x81c414b8 pcf50633_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x8217efb4 pcf50633_reg_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x98dac572 pcf50633_irq_mask_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xbcd77e21 pcf50633_irq_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xc0474297 pcf50633_register_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xcf990188 pcf50633_irq_unmask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xdb2bfc73 pcf50633_reg_set_bit_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x58ba9944 pcf50633_adc_async_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x821a243b pcf50633_adc_sync_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x1f112c62 pcf50633_gpio_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x741ccdfd pcf50633_gpio_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xb14282b8 pcf50633_gpio_invert_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xc093d2d2 pcf50633_gpio_power_supply_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xf663fa55 pcf50633_gpio_invert_get EXPORT_SYMBOL_GPL drivers/mfd/rave-sp 0x43e53ef9 rave_sp_exec -EXPORT_SYMBOL_GPL drivers/mfd/rave-sp 0xc5fc18a2 devm_rave_sp_register_event_notifier +EXPORT_SYMBOL_GPL drivers/mfd/rave-sp 0x48bb9307 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 0x0111c199 si476x_core_cmd_set_property -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0b4fc149 si476x_core_cmd_func_info -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x10b9eee9 si476x_core_cmd_power_up -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x18991866 si476x_core_cmd_fm_tune_freq -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x1e8beddd si476x_core_cmd_am_tune_freq -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x2100fa32 si476x_core_is_in_am_receiver_mode -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x2c0ad362 si476x_core_i2c_xfer -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x2e952346 si476x_core_cmd_fm_acf_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x2f03eaca si476x_core_cmd_get_property -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3bf163a8 si476x_core_cmd_am_seek_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3d8ce0c2 si476x_core_cmd_intb_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3e42cc1f si476x_core_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x49df445a si476x_core_cmd_zif_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x52e50407 si476x_core_set_power_state -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5bf3ce27 si476x_core_cmd_fm_rsq_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x63a11bff si476x_core_stop -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x685b3d66 si476x_core_cmd_am_acf_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6bc8e14f si476x_core_cmd_agc_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7656b0dc si476x_core_cmd_dig_audio_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7bfc5dce si476x_core_cmd_fm_phase_diversity -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8d4e1b1f si476x_core_has_diversity -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x92c0be6e si476x_core_cmd_fm_phase_div_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa4382f1e si476x_core_cmd_fm_rds_blockcount -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa755ec59 si476x_core_cmd_fm_rds_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa9544724 devm_regmap_init_si476x -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xae8d77f9 si476x_core_is_a_secondary_tuner -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xbb67ae7b si476x_core_cmd_fm_seek_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd1d6674d si476x_core_is_a_primary_tuner -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xde1ecda0 si476x_core_cmd_am_rsq_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xdfe5133a si476x_core_cmd_power_down -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xef55ee8f si476x_core_cmd_ic_link_gpo_ctl_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf4586fd4 si476x_core_cmd_ana_audio_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xfba9db29 si476x_core_is_powered_up -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xfcaae7b1 si476x_core_has_am -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x15474c86 sm501_find_clock -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x79fbea8f sm501_misc_control -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x8526c06e sm501_unit_power -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xb68f7127 sm501_modify_reg -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xf6baa1ce sm501_set_clock -EXPORT_SYMBOL_GPL drivers/mfd/sprd-sc27xx-spi 0x8d9e4a9e sprd_pmic_detect_charger_type -EXPORT_SYMBOL_GPL drivers/mfd/stmfx 0x03a825ff stmfx_function_disable -EXPORT_SYMBOL_GPL drivers/mfd/stmfx 0x8057addd stmfx_function_enable -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x12821bae am335x_tsc_se_set_once -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x2b7155ed am335x_tsc_se_clr -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x3fdfb5f0 am335x_tsc_se_set_cache -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x99ca240f am335x_tsc_se_adc_done -EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0x389d5786 tps65217_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0x5426e159 tps65217_set_bits -EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0x64a36495 tps65217_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0x86f9dc1b tps65217_clear_bits -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x2ebc8fe7 tps65218_clear_bits -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x9c6339c8 tps65218_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xe4f67cc8 tps65218_set_bits -EXPORT_SYMBOL_GPL drivers/mfd/ucb1400_core 0xb86e3085 ucb1400_adc_read -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x10916c11 alcor_write32 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x4ace84d6 alcor_read8 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x523c4d54 alcor_read32 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x9f17f867 alcor_write8 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xa3ba6301 alcor_write16 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xd13acdfd alcor_read32be -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xe11ea66e alcor_write32be -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x104742fd rtsx_pci_read_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x17bd4990 rtsx_pci_card_pull_ctl_disable -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x22f32e9f rtsx_pci_add_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x27b8cd3b rtsx_pci_write_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x2c1bcf66 rtsx_pci_read_phy_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x60fc3074 rtsx_pci_write_ppbuf -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x62086da5 rtsx_pci_switch_output_voltage -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x6c062d23 rtsx_pci_dma_transfer -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x7857547c rtsx_pci_complete_unfinished_transfer -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x7b1bdb19 rtsx_pci_start_run -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x95aad391 rtsx_pci_card_power_on -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x97a249bb rtsx_pci_write_phy_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x9919aa3b rtsx_pci_stop_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x99ab7cc8 rtsx_pci_dma_map_sg -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x9d25e684 rtsx_pci_card_power_off -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xa60504d9 rtsx_pci_dma_unmap_sg -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xafe2d235 rtsx_pci_switch_clock -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xb6003760 rtsx_pci_card_pull_ctl_enable -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xba1fe5b6 rtsx_pci_send_cmd_no_wait -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xbac840f0 rtsx_pci_send_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xbc07089d rtsx_pci_card_exclusive_check -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xe7a981bd rtsx_pci_read_ppbuf -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xebbed37d rtsx_pci_transfer_data -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xf8e4f95f rtsx_pci_card_exist -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x00f837bd rtsx_usb_add_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x02133754 rtsx_usb_transfer_data -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x2322f00d rtsx_usb_card_exclusive_check -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x261465c1 rtsx_usb_get_card_status -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x2712cade rtsx_usb_write_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x9c40c3c4 rtsx_usb_read_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x9cf835e9 rtsx_usb_ep0_read_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xa7ed7986 rtsx_usb_get_rsp -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xaa6ed21f rtsx_usb_switch_clock -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xe81f96ef rtsx_usb_ep0_write_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xef86a968 rtsx_usb_write_ppbuf -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xf8fab09f rtsx_usb_send_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xff4b4cf7 rtsx_usb_read_ppbuf -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x055b95db cb710_set_irq_handler -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x2df67056 cb710_sg_dwiter_read_next_block -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x886b2124 cb710_pci_update_config_reg -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xa2c6e900 cb710_sg_dwiter_write_next_block +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x05c2ac3c si476x_core_cmd_am_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x11e513ce si476x_core_cmd_fm_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x129d4c52 si476x_core_cmd_agc_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x16d8d70b si476x_core_is_a_secondary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x2773f8fd si476x_core_cmd_intb_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x27c1368c si476x_core_cmd_fm_phase_div_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x31a29886 si476x_core_cmd_power_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x35336e65 si476x_core_cmd_get_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x38194392 si476x_core_cmd_am_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x411e153b si476x_core_cmd_fm_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x49b3c429 si476x_core_cmd_fm_rds_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x505be3c3 si476x_core_cmd_zif_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6644be36 si476x_core_has_am +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6bdbf1bd si476x_core_cmd_power_down +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6bf7a9c0 si476x_core_cmd_ic_link_gpo_ctl_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x71fbb0b0 devm_regmap_init_si476x +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7d40052a si476x_core_i2c_xfer +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x95a47346 si476x_core_cmd_fm_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x98dccb06 si476x_core_cmd_ana_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9e929df6 si476x_core_cmd_set_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa2ce8034 si476x_core_is_a_primary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xab253336 si476x_core_cmd_func_info +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb815a870 si476x_core_stop +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xbf9ee745 si476x_core_cmd_am_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc37ee060 si476x_core_is_in_am_receiver_mode +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xcd52721e si476x_core_cmd_dig_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xcff5d9b4 si476x_core_set_power_state +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd4d1c336 si476x_core_cmd_am_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd7471976 si476x_core_cmd_fm_rds_blockcount +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xdc52e81d si476x_core_has_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe457e6a4 si476x_core_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe8891fe8 si476x_core_is_powered_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe975d845 si476x_core_cmd_fm_phase_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf0c69d01 si476x_core_cmd_fm_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x09d8ed04 sm501_set_clock +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x54995bee sm501_unit_power +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x7e556fce sm501_misc_control +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xa088a47c sm501_find_clock +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xbfc325e2 sm501_modify_reg +EXPORT_SYMBOL_GPL drivers/mfd/sprd-sc27xx-spi 0x5dff3ed0 sprd_pmic_detect_charger_type +EXPORT_SYMBOL_GPL drivers/mfd/stmfx 0x0e48cc2f stmfx_function_enable +EXPORT_SYMBOL_GPL drivers/mfd/stmfx 0x9dbfc39c stmfx_function_disable +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x2375f68d am335x_tsc_se_set_once +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x7f85c904 am335x_tsc_se_adc_done +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xe1526860 am335x_tsc_se_set_cache +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xe1736fd3 am335x_tsc_se_clr +EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0x6931d384 tps65217_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0x6ca2984e tps65217_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0x8a85406a tps65217_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0xa05143f5 tps65217_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xc0808fcd tps65218_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xcbc6e24f tps65218_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xf52b118f tps65218_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/ucb1400_core 0x4d788536 ucb1400_adc_read +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x1edaa9c7 alcor_write32 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x4fbcc412 alcor_read32 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x513c1f62 alcor_write32be +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x527ff210 alcor_read8 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x6c7cbdba alcor_write8 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x9fd3a346 alcor_read32be +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xd35061a5 alcor_write16 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x02fac6f3 rtsx_pci_card_exist +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x04dab18c rtsx_pci_dma_map_sg +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x0cf30b2c rtsx_pci_transfer_data +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x1873a4dc rtsx_pci_card_pull_ctl_disable +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x26bdaccd rtsx_pci_card_pull_ctl_enable +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x26f2f27a rtsx_pci_read_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x331be529 rtsx_pci_send_cmd_no_wait +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x627a5ade rtsx_pci_write_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x6dc4e816 rtsx_pci_read_phy_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x748b4413 rtsx_pci_write_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x83941c95 rtsx_pci_dma_transfer +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x8450d33c rtsx_pci_card_power_off +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x8dfb8e41 rtsx_pci_switch_clock +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x98b255da rtsx_pci_card_power_on +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x9e38e5a1 rtsx_pci_add_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xa48bb62b rtsx_pci_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xb9beea1c rtsx_pci_stop_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xc51d0f3e rtsx_pci_dma_unmap_sg +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xd3132f09 rtsx_pci_write_phy_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xd5bf0280 rtsx_pci_complete_unfinished_transfer +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xeb47a101 rtsx_pci_switch_output_voltage +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xf3a8b9b2 rtsx_pci_start_run +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xf6037d80 rtsx_pci_read_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xf6149c96 rtsx_pci_send_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x0a276c78 rtsx_usb_get_rsp +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x2360b30f rtsx_usb_read_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x295a6152 rtsx_usb_send_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x377ea156 rtsx_usb_add_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x37e20d78 rtsx_usb_ep0_write_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x6e765282 rtsx_usb_ep0_read_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x7dbfc397 rtsx_usb_get_card_status +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x8a048336 rtsx_usb_switch_clock +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x8b933708 rtsx_usb_transfer_data +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x940451f3 rtsx_usb_write_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xa67a03bc rtsx_usb_read_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xb8eff4ad rtsx_usb_write_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xfd84c6ec rtsx_usb_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x0ba70098 cb710_sg_dwiter_write_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x90a5304c cb710_sg_dwiter_read_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x9b87457f cb710_pci_update_config_reg +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xb7f4d3c2 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 @@ -14281,2829 +14319,2875 @@ 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 0x11767a9c enclosure_component_register -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x5351ecc5 enclosure_find -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x67fd116a enclosure_for_each_device -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x85be4d96 enclosure_unregister -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xc97585b0 enclosure_remove_device -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xd28fc624 enclosure_register -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xde27966f enclosure_add_device -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xec8954f6 enclosure_component_alloc -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x0cf2333f lis3lv02d_joystick_disable -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x19ff32cb lis3lv02d_poweroff -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x512dad65 lis3_dev -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x69c22e15 lis3lv02d_joystick_enable -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x7d67eb40 lis3lv02d_init_dt -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x95a49dbd lis3lv02d_poweron -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xcb1c23d0 lis3lv02d_init_device -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xf05a2f73 lis3lv02d_remove_fs -EXPORT_SYMBOL_GPL drivers/misc/pvpanic/pvpanic 0x8b43ad52 devm_pvpanic_probe +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x09e8e2bd enclosure_add_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x10483024 enclosure_find +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x5047edd8 enclosure_for_each_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x52896576 enclosure_component_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x6d271244 enclosure_component_alloc +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xb61880b5 enclosure_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xd0d5b342 enclosure_remove_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xd6e7286f enclosure_unregister +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x013f127d lis3_dev +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x0ee9eae9 lis3lv02d_init_dt +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x650d4390 lis3lv02d_init_device +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x6ed254c6 lis3lv02d_poweroff +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x827c4ef3 lis3lv02d_remove_fs +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x932e61b4 lis3lv02d_poweron +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xd56d4014 lis3lv02d_joystick_disable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xdc774cc9 lis3lv02d_joystick_enable +EXPORT_SYMBOL_GPL drivers/misc/pvpanic/pvpanic 0x79419eda devm_pvpanic_probe EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0x472340b2 st_unregister EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0xc8e56e36 st_register -EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0x43a14b74 uacce_remove -EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0xcfde5856 uacce_register -EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0xfb19fbc8 uacce_alloc -EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0x0fcf3aaa dw_mci_pltfm_remove -EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0x26d38d3b dw_mci_pltfm_register -EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0x618a0aaa dw_mci_pltfm_pmops -EXPORT_SYMBOL_GPL drivers/mmc/host/mmc_hsq 0x122e42d8 mmc_hsq_finalize_request -EXPORT_SYMBOL_GPL drivers/mmc/host/mmc_hsq 0x17bffc69 mmc_hsq_suspend -EXPORT_SYMBOL_GPL drivers/mmc/host/mmc_hsq 0x2b653b21 mmc_hsq_resume -EXPORT_SYMBOL_GPL drivers/mmc/host/mmc_hsq 0xe4a4a61b mmc_hsq_init -EXPORT_SYMBOL_GPL drivers/mmc/host/renesas_sdhi_core 0x39da03b9 renesas_sdhi_remove -EXPORT_SYMBOL_GPL drivers/mmc/host/renesas_sdhi_core 0xf4973830 renesas_sdhi_probe -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x04d6a065 sdhci_switch_external_dma -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x0b258c98 sdhci_enable_v4_mode -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x1f252f7b sdhci_cleanup_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x1fd9423c sdhci_adma_write_desc -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x2999400c sdhci_runtime_resume_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x2abb2c7a sdhci_resume_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x2c4b99c5 sdhci_reset -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x333625f7 sdhci_start_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x39ce01f7 sdhci_set_data_timeout_irq -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x4cd030e0 sdhci_enable_sdio_irq -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x4f71cdf4 sdhci_set_uhs_signaling -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x5ca6ce0f sdhci_set_power -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x6667e166 sdhci_start_signal_voltage_switch -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x6f7337f6 sdhci_send_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x7067a3dd sdhci_abort_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x7196149c __sdhci_read_caps -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x7f812067 sdhci_request_atomic -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x8926ca57 sdhci_set_ios -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x8e120c56 sdhci_runtime_suspend_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x97b4bd75 sdhci_set_power_noreg -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x984a3b56 sdhci_setup_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x9a88b39f sdhci_dumpregs -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x9caa484b sdhci_cqe_enable -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa3c63a5c sdhci_request -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa943ae29 sdhci_suspend_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xb1beed35 sdhci_alloc_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xb7dc234e __sdhci_set_timeout -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xbb7d992f sdhci_cqe_irq -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xbd3549e4 sdhci_set_power_and_bus_voltage -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xbe4e4699 sdhci_add_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc2bf575b sdhci_free_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xce483a73 sdhci_remove_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xd2ea6440 sdhci_reset_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xdac4970c sdhci_cqe_disable -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xdc28af09 sdhci_enable_clk -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xdd3bfc72 sdhci_set_clock -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe4d2f47e sdhci_execute_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe98c6d40 sdhci_end_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xece463f4 sdhci_set_bus_width -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xf001d1db sdhci_calc_clk -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xf229ec1c __sdhci_add_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x2171cbda sdhci_pltfm_unregister -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x311e6c14 sdhci_pltfm_suspend -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x5afb74d4 sdhci_pltfm_clk_get_max_clock -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x8fb59fad sdhci_pltfm_register -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x988631d4 sdhci_pltfm_free -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xa5e66b32 sdhci_pltfm_init -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xe1c65a0f sdhci_pltfm_pmops -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xe42f7a91 sdhci_pltfm_resume -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xed711eed sdhci_get_property -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x0a1c9cc0 tmio_mmc_host_free -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x100a3d68 tmio_mmc_do_data_irq -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x18dc22f3 tmio_mmc_host_probe +EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0x1a5a45c7 uacce_register +EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0x45ea6da5 uacce_remove +EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0x990750e8 uacce_alloc +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x024d14bc vmci_qpair_produce_free_space +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x046dd187 vmci_datagram_create_handle +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x056837fb vmci_get_context_id +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x1fd4782d vmci_qpair_get_produce_indexes +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x2449459d vmci_event_subscribe +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x3a22fa8a vmci_datagram_destroy_handle +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x4ba5c46b vmci_qpair_peek +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x5591b58e vmci_context_get_priv_flags +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 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 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 0x9ab38087 vmci_qpair_peekv +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xa5cd6aea vmci_qpair_enquev +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xb572e830 vmci_doorbell_create +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xbcb85f62 vmci_doorbell_notify +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xc04c7e84 vmci_qpair_get_consume_indexes +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xc403cafe vmci_is_context_owner +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 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 0xf1bd0124 vmci_qpair_dequev +EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0x090aab4f dw_mci_pltfm_pmops +EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0xab10ac77 dw_mci_pltfm_register +EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0xc8c2ddd3 dw_mci_pltfm_remove +EXPORT_SYMBOL_GPL drivers/mmc/host/mmc_hsq 0x70f0721c mmc_hsq_resume +EXPORT_SYMBOL_GPL drivers/mmc/host/mmc_hsq 0x844e12fa mmc_hsq_init +EXPORT_SYMBOL_GPL drivers/mmc/host/mmc_hsq 0x909d9789 mmc_hsq_suspend +EXPORT_SYMBOL_GPL drivers/mmc/host/mmc_hsq 0xe76f2d3a mmc_hsq_finalize_request +EXPORT_SYMBOL_GPL drivers/mmc/host/renesas_sdhi_core 0x7a16dccc renesas_sdhi_probe +EXPORT_SYMBOL_GPL drivers/mmc/host/renesas_sdhi_core 0x9a66ec80 renesas_sdhi_remove +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x06686fd9 sdhci_start_signal_voltage_switch +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x099ed722 sdhci_abort_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x0e8c8ab3 sdhci_add_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x1a4525e6 sdhci_reset +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x1aafec0a sdhci_alloc_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x21d19898 sdhci_start_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x24aed958 sdhci_enable_sdio_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x2e864545 sdhci_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x367a89ad sdhci_setup_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x3692626c sdhci_execute_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x36f96a23 sdhci_send_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x3a3d5aa5 sdhci_end_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x3c7e3f30 sdhci_dumpregs +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x4258e296 sdhci_set_bus_width +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x4da7d351 sdhci_enable_v4_mode +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x6344c807 sdhci_runtime_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x65dc1953 sdhci_cqe_disable +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x6931ccce sdhci_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x78d2d430 sdhci_switch_external_dma +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x78ff4043 sdhci_free_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x797bf41d __sdhci_set_timeout +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x937435d2 sdhci_reset_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x9b7b15eb sdhci_enable_clk +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x9ec480b0 sdhci_cqe_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa5366756 sdhci_runtime_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xae1f7cfe sdhci_cqe_enable +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xb1dace23 sdhci_adma_write_desc +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xb28e932a sdhci_set_power +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xb3b12dcc sdhci_set_ios +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xbb107f54 sdhci_calc_clk +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc028b34e __sdhci_read_caps +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc140ed1b sdhci_set_data_timeout_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc4c629cc __sdhci_add_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc66cbf13 sdhci_set_power_and_bus_voltage +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc9278219 sdhci_cleanup_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xcde35ba7 sdhci_set_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xcf0154a0 sdhci_set_power_noreg +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xda28a2d4 sdhci_remove_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe07eca52 sdhci_request_atomic +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xf26fb0da sdhci_request +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xf812fd27 sdhci_set_uhs_signaling +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x557226c9 sdhci_pltfm_resume +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x64d2ae75 sdhci_pltfm_clk_get_max_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x8943c54c sdhci_pltfm_suspend +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x9c8ad289 sdhci_pltfm_unregister +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xafd5aaeb sdhci_pltfm_init +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xb893f470 sdhci_pltfm_free +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xbcd447dd sdhci_pltfm_pmops +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xe54967c7 sdhci_pltfm_register +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xef7e55cf sdhci_get_property +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x1f05c589 tmio_mmc_disable_mmc_irqs +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x23f87728 tmio_mmc_host_remove +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x2d7a03fd tmio_mmc_host_probe +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x362a11fd tmio_mmc_do_data_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x37421ed6 tmio_mmc_host_runtime_suspend EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x378f2335 tmio_mmc_irq -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x3efe65c6 tmio_mmc_disable_mmc_irqs -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x41c12fce tmio_mmc_enable_mmc_irqs -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x463997d0 tmio_mmc_host_alloc -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x52275fd3 tmio_mmc_host_runtime_suspend -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xb2d59841 tmio_mmc_host_remove -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xfe6171ec tmio_mmc_host_runtime_resume -EXPORT_SYMBOL_GPL drivers/most/most_core 0x06182d6f most_submit_mbo -EXPORT_SYMBOL_GPL drivers/most/most_core 0x1602382e most_register_component -EXPORT_SYMBOL_GPL drivers/most/most_core 0x336237c0 most_stop_enqueue -EXPORT_SYMBOL_GPL drivers/most/most_core 0x3999252c most_deregister_component -EXPORT_SYMBOL_GPL drivers/most/most_core 0x6a5281e6 most_deregister_interface -EXPORT_SYMBOL_GPL drivers/most/most_core 0x777833ab channel_has_mbo -EXPORT_SYMBOL_GPL drivers/most/most_core 0x822cbe1b most_register_interface -EXPORT_SYMBOL_GPL drivers/most/most_core 0x8cd917a4 most_deregister_configfs_subsys -EXPORT_SYMBOL_GPL drivers/most/most_core 0xb3dc29ec most_start_channel -EXPORT_SYMBOL_GPL drivers/most/most_core 0xb519e7fe most_stop_channel -EXPORT_SYMBOL_GPL drivers/most/most_core 0xc52c880b most_put_mbo -EXPORT_SYMBOL_GPL drivers/most/most_core 0xca337d01 most_get_mbo -EXPORT_SYMBOL_GPL drivers/most/most_core 0xd4e557e3 most_resume_enqueue -EXPORT_SYMBOL_GPL drivers/most/most_core 0xe6ab29c7 most_register_configfs_subsys -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x200c45ef cfi_cmdset_0200 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xdd126079 cfi_cmdset_0003 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xe23b4591 cfi_cmdset_0001 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x317f3d0b cfi_cmdset_0701 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xbcd4b95d cfi_cmdset_0006 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xc286f28d cfi_cmdset_0002 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0x5341940a cfi_cmdset_0020 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x0449cf71 cfi_qry_mode_off -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xf6bba75b cfi_qry_mode_on -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xf7d78187 cfi_qry_present -EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0x6f14c6fe hyperbus_register_device -EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0xd3e26f7d hyperbus_unregister_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x00ee2505 mtd_lock_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x01525171 mtd_block_markbad -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x07473f3a mtd_erase -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0896adbd mtd_ooblayout_set_databytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0fca9440 mtd_read_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x13a4f34e mtd_erase_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x164b186c mtd_point -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1a1cf45c mtd_device_unregister -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1da8f9a7 __register_mtd_parser -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2abed29a __mtd_next_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2d340499 mtd_unlock -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2f4759e9 mtd_wunit_to_pairing_info -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x35766efc mtd_get_fact_prot_info -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x38a58061 mtd_read -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3cb5a12b mtd_get_user_prot_info -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x42f34b87 mtd_ooblayout_free -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x46ef3192 get_mtd_device_nm -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x48ee52be mtd_del_partition -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4ae52222 mtd_pairing_info_to_wunit -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4e462997 mtd_add_partition +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x91a6e346 tmio_mmc_host_alloc +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xa50bf9a3 tmio_mmc_host_free +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xec793e29 tmio_mmc_enable_mmc_irqs +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xf3ae9bd5 tmio_mmc_host_runtime_resume +EXPORT_SYMBOL_GPL drivers/most/most_core 0x0621a060 most_resume_enqueue +EXPORT_SYMBOL_GPL drivers/most/most_core 0x11f13d51 most_start_channel +EXPORT_SYMBOL_GPL drivers/most/most_core 0x1bb52523 most_register_configfs_subsys +EXPORT_SYMBOL_GPL drivers/most/most_core 0x205f71eb most_deregister_interface +EXPORT_SYMBOL_GPL drivers/most/most_core 0x23b52848 most_put_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0x25c49f4d most_submit_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0x43fff166 most_get_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0x4812b14e most_deregister_configfs_subsys +EXPORT_SYMBOL_GPL drivers/most/most_core 0x4e98175c channel_has_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0x85f3a8f3 most_register_interface +EXPORT_SYMBOL_GPL drivers/most/most_core 0xa3a988af most_register_component +EXPORT_SYMBOL_GPL drivers/most/most_core 0xb8ee9938 most_stop_enqueue +EXPORT_SYMBOL_GPL drivers/most/most_core 0xceccf705 most_stop_channel +EXPORT_SYMBOL_GPL drivers/most/most_core 0xd5f921aa most_deregister_component +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x5b2ca37f cfi_cmdset_0001 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x64058697 cfi_cmdset_0003 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x991ba301 cfi_cmdset_0200 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x05c35fb3 cfi_cmdset_0006 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x7b911463 cfi_cmdset_0002 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x8868dbe5 cfi_cmdset_0701 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0xea5672e4 cfi_cmdset_0020 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x08107659 cfi_qry_mode_on +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xc802de6e cfi_qry_present +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xf97bfe3b cfi_qry_mode_off +EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0x2b6c8304 hyperbus_register_device +EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0xb0883da8 hyperbus_unregister_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x00f6f885 mtd_write_oob +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x03af34fc mtd_read_fact_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x08333c33 mtd_wunit_to_pairing_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0a1449cf kill_mtd_super +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0befb92b mtd_get_user_prot_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1057d9f3 mtd_ooblayout_ecc +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x15352115 mtd_unpoint +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x16b4ea40 mtd_pairing_groups +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1ab63752 mtd_write_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1b0e2afe mtd_add_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x28735dfe mtd_get_unmapped_area +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2f3c1d83 mtd_read_oob +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3343cbc0 unregister_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x34266ad9 mtd_write +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x360065eb mtd_ooblayout_get_databytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3faffdc8 mtd_block_markbad +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x41f0f87f mtd_erase +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x42de6136 mtd_get_fact_prot_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x431a5bdc mtd_kmalloc_up_to +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x447c9a86 mtd_panic_write +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4a36e195 mtd_ooblayout_get_eccbytes EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x50dabc2f mtd_table_mutex -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x54a326d1 mtd_device_parse_register -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5a4e5ba9 mtd_read_oob -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5ab4271f mtd_pairing_groups -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5cbe7e32 mtd_lock -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x661b661a mtd_get_unmapped_area -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x68db3d62 mtd_writev -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x69b8cb3b mtd_is_locked -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7044c58a mtd_ooblayout_set_eccbytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x75ebde77 register_mtd_user -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7a49684c mtd_read_fact_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7ce5f81c mtd_write -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8046fa71 mtd_get_device_size -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x827371fc mtd_ooblayout_ecc -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x83d0bba7 __put_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x842d528d put_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x85d11a1f mtd_ooblayout_count_eccbytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x862c25d5 mtd_block_isreserved -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x913bc201 deregister_mtd_parser -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa875f442 mtd_ooblayout_get_databytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xaa3ce318 get_tree_mtd -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xab743ccf unregister_mtd_user -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb1dc8d38 kill_mtd_super -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb76fdb65 mtd_write_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xbe7c479c mtd_write_oob -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc42bb6dd mtd_unpoint -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc4dd61d2 __get_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc5c33483 mtd_block_isbad -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc9dfedc9 mtd_ooblayout_count_freebytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd9a0685a mtd_ooblayout_get_eccbytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xea30db2f mtd_kmalloc_up_to -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf0805639 mtd_ooblayout_find_eccregion -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf2fede6d get_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xfcff753b mtd_panic_write -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x29c04317 mtd_blktrans_cease_background -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x981bee57 deregister_mtd_blktrans -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xb37df8fd register_mtd_blktrans -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xca47e1f8 add_mtd_blktrans_dev -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xf476548f del_mtd_blktrans_dev -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x00f0f929 nanddev_bbt_get_block_status -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x046e59ba nanddev_init -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x0470420f nanddev_mtd_max_bad_blocks -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x050c4242 nanddev_bbt_cleanup -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x056910bc nand_get_large_page_hamming_ooblayout -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x06ea0b86 nand_ecc_init_req_tweaking -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x22bae6ee nand_ecc_tweak_req -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x503f6f3a nand_get_small_page_ooblayout -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x556b1a0f nanddev_mtd_erase -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x60d09d53 nanddev_erase -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x6c3d6dcb nanddev_bbt_set_block_status -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x84905920 nand_ecc_cleanup_req_tweaking -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x8e96e5e7 nand_get_large_page_ooblayout -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x9f64c68d nand_ecc_restore_req -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xb98eb8a4 nanddev_isreserved -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xc8429e59 nanddev_cleanup -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xdb2fa2c0 nanddev_bbt_init -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xdeb1f291 nanddev_ecc_engine_init -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xdfd6a27a nanddev_isbad -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xe9da03a9 nanddev_bbt_update -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xfd0aec5d nanddev_ecc_engine_cleanup -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xff61e9b4 nanddev_markbad -EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0xc1a252bd onenand_scan -EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0xee385b6d onenand_release -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0x21cec7f4 brcmnand_pm_ops -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0x912f9061 brcmnand_probe -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0xfc006a67 brcmnand_remove -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/denali 0xe5770d68 denali_chip_init -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x02d1b517 nand_prog_page_op +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5218a12b mtd_ooblayout_set_databytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5b30641a mtd_read_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7638d9db put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7842aff6 mtd_get_device_size +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7905cbbc mtd_ooblayout_set_eccbytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x804b1a9c mtd_del_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x838941c3 register_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x89c67f4d deregister_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8d012e30 mtd_pairing_info_to_wunit +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9ef1c876 mtd_writev +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa021bd1f __get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xafc34b38 get_mtd_device_nm +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb3f080d3 mtd_ooblayout_count_freebytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb484361d mtd_read +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb4ba3b11 mtd_erase_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb73c9672 mtd_block_isreserved +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xbddf65af mtd_lock_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc1a074d1 mtd_ooblayout_count_eccbytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc1fe493d mtd_point +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc5fda000 __register_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xcabfc698 mtd_device_unregister +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xcb2f8379 get_tree_mtd +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd3cdfe14 mtd_ooblayout_free +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd4755899 mtd_block_isbad +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd4c1caaf get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe1163823 mtd_device_parse_register +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe6f850f2 mtd_ooblayout_find_eccregion +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf5206772 mtd_is_locked +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf809ba24 __put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xfb540d18 __mtd_next_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xfdaa4e54 mtd_unlock +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xfe75537d mtd_lock +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x04fa0ed1 register_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x38cbe939 del_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x9f967fe6 add_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xbe646b68 deregister_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xf89bb339 mtd_blktrans_cease_background +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x01f7f205 nanddev_ecc_engine_cleanup +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x03a6b7cd nanddev_erase +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x21c9f9dd nanddev_mtd_max_bad_blocks +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x384e087b nand_get_small_page_ooblayout +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x411c1756 nand_ecc_tweak_req +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x47a740a3 nanddev_isreserved +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x5134a61a nanddev_isbad +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x61593f3f nanddev_bbt_cleanup +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x72bf6c39 nanddev_ecc_engine_init +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x780be3f0 nanddev_markbad +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x82c0c5d1 nanddev_bbt_set_block_status +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x881ab915 nanddev_bbt_get_block_status +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x919ec6d1 nanddev_bbt_update +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xa045d39c nand_ecc_init_req_tweaking +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xa867f58c nanddev_init +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xab0860c8 nand_ecc_restore_req +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xad29db3a nand_ecc_cleanup_req_tweaking +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xc63c4327 nanddev_bbt_init +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xc773424c nand_get_large_page_hamming_ooblayout +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xd66aea81 nanddev_cleanup +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xe3c01732 nanddev_mtd_erase +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xe6e782a6 nand_get_large_page_ooblayout +EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0x33483e02 onenand_scan +EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0x3751d8ec onenand_release +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0x1363a73c brcmnand_remove +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0x8df287bf brcmnand_probe +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0xa62693dd brcmnand_pm_ops +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/denali 0xcfac1f80 denali_chip_init +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x101845a1 nand_ecc_choose_conf EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x11091291 nand_extract_bits -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x12281a0f nand_prog_page_end_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x2c25d46a nand_deselect_target +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x134e3936 nand_read_page_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x15df54bf nand_soft_waitrdy +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x1b424320 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 0x4ae42ce5 nand_reset -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x4bbb9ecf nand_ecc_choose_conf -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x4fcf22f1 nand_write_data_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x2d5a2d1d nand_change_read_column_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x33f7cfdd nand_read_data_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x384f81f0 nand_read_page_hwecc_oob_first +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x560da14c 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 0x5e9e9383 nand_change_write_column_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x71c5f474 nand_change_read_column_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x796531f0 nand_op_parser_exec_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x79b72880 nand_wait_ready -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xb4e193ae nand_read_page_hwecc_oob_first -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xb51378b8 nand_read_oob_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xba712222 nand_status_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xc19f103c nand_select_target -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xca8d6df2 nand_readid_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xcc65c475 nand_read_data_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xcd0064ca nand_soft_waitrdy +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x5d226fb1 nand_erase_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x666b6157 nand_decode_ext_id +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x6b55b1e6 nand_prog_page_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x6e2a76f5 nand_read_oob_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x6fdf47cd nand_cleanup +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x91878c14 nand_prog_page_begin_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x9b12ebe8 nand_readid_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xa07a0a19 nand_prog_page_end_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xa7332ddc nand_reset +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xa95e2f65 nand_status_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xca85bf95 nand_deselect_target EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xd3c672b8 nand_subop_get_data_len EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xd41ff2ac nand_subop_get_data_start_off -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xd4cca6fe nand_erase_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xd5e193e9 nand_prog_page_begin_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xe7752c6b nand_reset_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xeefc3c01 nand_gpio_waitrdy -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xf39df1a6 nand_decode_ext_id -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xf7b1df9c nand_cleanup -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xffd4601f nand_read_page_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/sm_common 0xeb017e70 sm_register_device -EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0x1bd4a4e4 spi_nor_scan -EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0x4e2a619a spi_nor_restore -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x0d9a6805 ubi_leb_map -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x1b8d6372 ubi_leb_read_sg -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x261b5578 ubi_leb_read -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x2f43bf1e ubi_open_volume_path +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xd69dd1ec nand_select_target +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xdc727211 nand_reset_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xdd61151e nand_wait_ready +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xe5640c55 nand_write_data_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xf6d51812 nand_op_parser_exec_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/sm_common 0xae4bab07 sm_register_device +EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0x36af731b spi_nor_restore +EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0xec7a0e45 spi_nor_scan +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x355f662f 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 0x481cfc24 ubi_close_volume -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x57b1b72e ubi_do_get_device_info EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x66011ab6 ubi_get_device_info -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x784049c2 ubi_leb_unmap +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x6acbbe95 ubi_open_volume_path +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x84f34e80 ubi_leb_change EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x85a8ee76 ubi_unregister_volume_notifier -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x8b814d1d ubi_open_volume -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xa7d45539 ubi_is_mapped -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xa8c874fc ubi_leb_write -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xd0413443 ubi_get_volume_info -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xd7502dbc ubi_leb_erase -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xecd5c747 ubi_leb_change +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x8bd6e40a ubi_do_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x9733191d ubi_leb_read +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x9940323c ubi_leb_write +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xa056712e ubi_is_mapped +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xa1052745 ubi_leb_read_sg +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xa3683152 ubi_get_volume_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xb00e4b14 ubi_open_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xd01889ad ubi_leb_erase +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xd22b68e2 ubi_leb_map +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xedd7d5a4 ubi_close_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf44f7e82 ubi_leb_unmap EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf5ee9ba8 ubi_register_volume_notifier -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xfb299a7e ubi_open_volume_nm -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x0b25d30f mux_control_try_select -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x112a1ad9 mux_control_deselect -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x29504c5f mux_control_put -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x417f5204 devm_mux_chip_alloc -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x42c7aff4 mux_chip_free -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x4a66be7f mux_chip_register -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x5d44e885 mux_control_select -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x6f60c256 mux_control_states -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x7c623027 devm_mux_chip_register -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x813d9eb5 mux_chip_alloc -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x94d049d6 devm_mux_control_get -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xaf6494b8 mux_control_get -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xe8ce429f mux_chip_unregister -EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x805bb0aa devm_arcnet_led_init -EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x90ddd6da arcnet_led_event -EXPORT_SYMBOL_GPL drivers/net/bareudp 0xeb715343 bareudp_dev_create -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x3791b712 alloc_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x3e2de300 c_can_power_up -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x9355fb04 register_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xbc449096 c_can_power_down -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xd3a36b41 unregister_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xfec11dea free_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x3f2f227e free_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x5fb60481 unregister_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x762d276b register_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xd70a91bc alloc_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x059eddba close_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x077d8031 can_rx_offload_add_fifo -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x105dc6d7 can_rx_offload_queue_tail +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x1d415c1d mux_chip_register +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x248691ec mux_control_select +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x2c69ddbd mux_control_try_select +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x55fdab1d mux_control_get +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x636f17d6 mux_control_deselect +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x75efe698 devm_mux_chip_alloc +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x7aff84c8 mux_control_states +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x98ce3b8f devm_mux_control_get +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xd4830bd4 mux_control_put +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xd729ade2 mux_chip_free +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xdb8426b1 mux_chip_unregister +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xdcc0397b mux_chip_alloc +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xffa1ef81 devm_mux_chip_register +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x0da46e00 arcnet_led_event +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x526eacc1 devm_arcnet_led_init +EXPORT_SYMBOL_GPL drivers/net/bareudp 0x6fa8fa7f bareudp_dev_create +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x077555bc alloc_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x668dace1 unregister_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x6e5469af c_can_power_up +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x73a5486d c_can_power_down +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x9ef1be0c register_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xceecb71f free_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x2cdb985d register_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x32671c80 unregister_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x34a3b72d free_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x8617d653 alloc_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x0597ff8f can_rx_offload_irq_offload_fifo EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x10d892eb can_get_state_str -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x1b2774db can_rx_offload_del -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x26e14bae can_rx_offload_enable -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x27a4ca30 can_skb_get_frame_len -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x3140af7b can_rx_offload_add_timestamp -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x32627ded can_change_state -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x54b1ec3d alloc_can_err_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x57c691f1 register_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x1356e6d4 can_free_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x1570a916 register_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x1ab523f3 alloc_canfd_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x220beb5d unregister_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x29fb4657 can_change_mtu +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x3f30dbb0 can_rx_offload_irq_finish +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x44dceb3f can_rx_offload_enable +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x49e7eddd alloc_can_err_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x4d686ba0 can_rx_offload_add_timestamp +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x526830a0 can_skb_get_frame_len +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x559483cc can_rx_offload_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 0x67a13e7e can_change_mtu -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x69f5efb0 open_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6a47b6a4 of_can_transceiver -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x7285e41d free_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x7f649320 can_rx_offload_threaded_irq_finish -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x870103ea can_rx_offload_get_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x8f2f3209 can_put_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x9f5cabc0 safe_candev_priv -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xa6ff77dc can_free_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xaab8522f can_rx_offload_add_manual -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xaae497e5 alloc_canfd_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xb7566bb1 alloc_candev_mqs -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xc062ba84 can_rx_offload_irq_offload_fifo -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xcc4e9ad2 can_get_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xded99599 can_rx_offload_irq_finish -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xe628d5d5 unregister_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xebc7f193 can_rx_offload_queue_sorted +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x681acc18 can_rx_offload_del +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x69edd7ed can_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6af04682 alloc_candev_mqs +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x70534bdf alloc_can_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x780da01f of_can_transceiver +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x849e9305 close_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x910d9d4f can_rx_offload_queue_tail +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x988cf47d can_rx_offload_add_manual +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xa3c857f4 open_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xa3ea8f2d can_put_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xb7d847f1 free_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xc6550d9d can_rx_offload_irq_offload_timestamp +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xcc006b21 can_change_state +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xdc0380e8 can_rx_offload_add_fifo +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xeb4b3af1 can_rx_offload_threaded_irq_finish +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xed670012 can_rx_offload_queue_sorted EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf12d9387 can_fd_dlc2len -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf62e39d0 can_bus_off -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf7af2ae5 alloc_can_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xff8f7fd0 can_rx_offload_irq_offload_timestamp -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x257428a1 m_can_class_unregister -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x4f9078c7 m_can_init_ram -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x6426c5a2 m_can_class_resume -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x698866c2 m_can_class_free_dev -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x9c48d420 m_can_class_register -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xa69116a6 m_can_class_suspend -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xd9795cb6 m_can_class_get_clocks -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xdf9e546a m_can_class_allocate_dev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf8bab6c7 safe_candev_priv +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf8ea9147 can_bus_off +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x0b075cb4 m_can_class_get_clocks +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x0b3ad51b m_can_class_free_dev +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x211acce7 m_can_class_unregister +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x9d96467a m_can_init_ram +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xc7fc9b23 m_can_class_resume +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xc896b125 m_can_class_allocate_dev +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xcaf011fb m_can_class_suspend +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xf85e399a m_can_class_register +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x0875340b free_sja1000dev EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xbd4ecbe8 free_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xfa919071 register_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xfc67d3fe unregister_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xfe7665a6 alloc_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/dsa/lan9303-core 0x272103ad lan9303_indirect_phy_ops -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x0ff27205 ksz_port_bridge_leave -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x12aaaecb ksz_port_fdb_dump -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x24c09aab ksz_port_bridge_join -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x25ab8ca1 ksz_sset_count -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x2b1ced31 ksz_get_ethtool_stats -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x404e5744 ksz_port_fast_age -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x5888eefa ksz_mac_link_down -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x6d9039a7 ksz_port_mdb_del -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x7bb739a4 ksz_update_port_member -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x8ef5a2e5 ksz_phy_write16 -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x92a68bfd ksz_port_mdb_add -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x9b9c5467 ksz_phy_read16 -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xd8a50e60 ksz_enable_port -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xde4d918c ksz_init_mib_timer -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x12ffbf48 rtl8366_mc_is_used -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x1910478c rtl8366_init_vlan -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x1dfd3ac3 rtl8366rb_variant -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x75326001 rtl8366_set_pvid -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x7744102e rtl8366_vlan_add -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x7d881ff4 rtl8366_set_vlan -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x9e31b650 rtl8366_vlan_del -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xa2e82934 rtl8366_reset_vlan -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xb52593c3 rtl8366_get_ethtool_stats -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xbcb28f16 realtek_smi_write_reg_noack -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xd3f1d720 rtl8366_vlan_filtering -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xdcb90066 rtl8366_get_strings -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xe6ddddde rtl8366_enable_vlan -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xedc39dba rtl8366_get_sset_count -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xfe66bf1f rtl8366_enable_vlan4k -EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0xefcd651f arc_emac_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0xf8cb27d8 arc_emac_probe -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0x13b1f9d3 enetc_mdio_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0xb336f71e enetc_mdio_read -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0xd2f3c18e enetc_hw_alloc +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x52d88a0b unregister_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x8c9b68dc register_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xcf280fab alloc_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/dsa/lan9303-core 0x79718bd6 lan9303_indirect_phy_ops +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x02b64d18 ksz_port_mdb_add +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x04caa05b ksz_phy_write16 +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x274a44ae ksz_port_bridge_leave +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x2db0ac34 ksz_phy_read16 +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x3682ed53 ksz_port_fdb_dump +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x38755c2b ksz_get_ethtool_stats +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x55bc0c1a ksz_update_port_member +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x5dce5b05 ksz_sset_count +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x9882bfb3 ksz_port_fast_age +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xa459c6f8 ksz_port_bridge_join +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xbb5b1868 ksz_init_mib_timer +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xc01964a3 ksz_mac_link_down +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xc60eed50 ksz_port_mdb_del +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xe1f70592 ksz_enable_port +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x09983e3a rtl8366_vlan_filtering +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x128a0d5f rtl8366_set_pvid +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x31599708 rtl8366_enable_vlan4k +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x3a0dc4e5 rtl8366_get_sset_count +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x3d05c347 realtek_smi_write_reg_noack +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x425b7e3b rtl8366_enable_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x4dfb93bb rtl8366_mc_is_used +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x5722d9b2 rtl8366_get_ethtool_stats +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x61fd20fe rtl8366_reset_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x6f0f3bbb rtl8366_vlan_del +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x950553db rtl8366rb_variant +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x95c65da4 rtl8366_init_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x97ec461b rtl8366_get_strings +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xdaea2c3c rtl8366_vlan_add +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xe0d60704 rtl8366_set_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0x9dcac61e arc_emac_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0xb5bf307b arc_emac_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0x3816911b enetc_mdio_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0x52b23a0b enetc_hw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0x993d8e80 enetc_mdio_write EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0xd9d61d6f enetc_mdio_lock -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0xb514f6eb i40e_client_device_register -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0xd48322a5 i40e_client_device_unregister -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x10288ec2 ice_del_rdma_qset -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x551f64d9 ice_rdma_update_vsi_filter -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xa22a5d21 ice_add_rdma_qset -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xddad8ba9 ice_rdma_request_reset -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xf3b68d57 ice_get_qos_params -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x03820030 mlx4_replace_zero_macs -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x043caa51 mlx4_db_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x05dfeaae mlx4_qp_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x06845abf mlx4_multicast_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0697ef13 mlx4_qp_to_ready -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x08c87d00 mlx4_get_vf_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0b33ae79 mlx4_set_vf_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0b51e55d mlx4_srq_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0b8a9f53 mlx4_cq_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0de64dcd mlx4_counter_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x12c88402 mlx4_register_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1492d0bf mlx4_buf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x16852b96 mlx4_mr_hw_change_pd -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x185ac36d mlx4_phys_to_slaves_pport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x19d1cae6 mlx4_set_admin_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1cf48310 mlx4_alloc_cmd_mailbox -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x22c055aa mlx4_CLOSE_PORT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2329e4e3 mlx4_get_internal_clock_params -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x259a0f37 mlx4_mtt_cleanup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x26b1e85f mlx4_set_vf_rate -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x283885c4 mlx4_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2efc0570 mlx4_set_vf_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2f4eeef9 mlx4_mr_rereg_mem_cleanup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2fb624fd mlx4_get_protocol_dev -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3832fe40 mlx4_unregister_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x38b35e8d mlx4_vf_get_enable_smi_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x393e0c9e mlx4_flow_steer_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3c6e9b38 __mlx4_register_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3df09c37 mlx4_find_cached_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4016f69d mlx4_mr_hw_get_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4070db8f mlx4_wol_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x40e17917 mlx4_register_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4396e4ef mlx4_vf_set_enable_smi_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x456927fd mlx4_xrcd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x466a2a45 mlx4_wol_read -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x470b694e mlx4_bf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4c3d39c6 mlx4_pd_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5260cd17 mlx4_srq_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x574a9927 mlx4_qp_release_range -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5c74a528 mlx4_register_interface -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5ec8895c mlx4_flow_steer_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5f69fb4f mlx4_multicast_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6695de33 mlx4_mw_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6918ccf1 mlx4_mr_hw_change_access -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x693a5eaf mlx4_alloc_hwq_res -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6a725afa mlx4_map_sw_to_hw_steering_id -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6bb98743 mlx4_qp_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6c4b9b5a mlx4_get_vf_config -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6eca4eef mlx4_unregister_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6f08d24b mlx4_unregister_interface -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x736442fc mlx4_slave_convert_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x73fbdcaf mlx4_get_active_ports -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x757c484d __mlx4_cmd -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x760291b5 mlx4_flow_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7b74208d mlx4_bond -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7d23d940 mlx4_mtt_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7e9a2a0c __mlx4_unregister_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x80746006 mlx4_qp_reserve_range -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x81224e67 mlx4_find_cached_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x82608ad0 mlx4_qp_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x84092314 mlx4_get_base_qpn -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x87a9e8d9 mlx4_get_admin_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x893cb7c8 mlx4_get_base_gid_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8ce36edc mlx4_hw_rule_sz -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8e4dcc46 mlx4_mr_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x90fa66ee mlx4_vf_smi_enabled -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x91407486 __mlx4_replace_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x92b0d67b mlx4_config_dev_retrieval -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x975f8b5f mlx4_flow_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x987a6685 mlx4_get_slave_default_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x98cb6f74 mlx4_mtt_addr -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9faba9da mlx4_phys_to_slave_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa1b80a2c mlx4_FLOW_STEERING_IB_UC_QP_RANGE -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa63fd7f5 mlx4_db_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa78188a7 mlx4_mr_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xac65c729 mlx4_bf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xad277183 mlx4_buf_write_mtt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xae26e4e3 mlx4_mr_rereg_mem_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb13178de mlx4_config_vxlan_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb1b988e8 mlx4_cq_resize -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb55480bd mlx4_set_vf_link_state -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb6f89056 mlx4_read_clock -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xba1b787c mlx4_free_cmd_mailbox -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbbbadaed mlx4_get_default_counter_index -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbbcb2d3a mlx4_unicast_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbdfb5490 mlx4_mw_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbfb61021 mlx4_counter_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc4c16c6e mlx4_ACCESS_PTYS_REG -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc6cbc4c8 mlx4_phys_to_slaves_pport_actv -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc77deb47 mlx4_cq_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc8bd3827 mlx4_qp_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcb4f196a mlx4_write_mtt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcd567127 mlx4_update_qp -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcda5242a mlx4_mw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcdb8f233 mlx4_unicast_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcf762772 mlx4_uar_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcf7e151f mlx4_uar_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd42dd262 mlx4_unicast_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd4516f87 mlx4_free_hwq_res -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd5906210 mlx4_cq_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd6119fe5 mlx4_mr_hw_write_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd61ee5f4 mlx4_get_devlink_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd9c5a7a1 mlx4_set_vf_spoofchk -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdcb4af75 mlx4_multicast_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdf8710b0 mlx4_unbond -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe4174d41 mlx4_SYNC_TPT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe513fc13 mlx4_port_map_set -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe53d2ddf mlx4_config_roce_v2_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe7f7d7ec mlx4_get_counter_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xef099efa mlx4_qp_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xefee989e mlx4_pd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf12acc25 mlx4_mr_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf23fe625 mlx4_xrcd_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf2b13269 mlx4_multicast_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf3fab763 mlx4_srq_arm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf59a3e4f mlx4_srq_lookup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf7212037 mlx4_srq_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf7646f0f mlx4_mr_hw_put_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf9b251bb mlx4_map_sw_to_hw_steering_mode -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfe094112 mlx4_INIT_PORT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfef75306 mlx4_unicast_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x03cda8d4 mlx5_modify_nic_vport_vlans -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0670908a mlx5_query_module_eeprom +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0x1104f4fa i40e_client_device_unregister +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0x981e46a0 i40e_client_device_register +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x2aaa34e0 ice_rdma_request_reset +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x2f2a7b00 ice_add_rdma_qset +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x366020b8 ice_del_rdma_qset +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x39e830ad ice_get_qos_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xdbba8d66 ice_rdma_update_vsi_filter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x00a23514 mlx4_qp_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x03ded946 mlx4_flow_steer_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x04fd61b8 mlx4_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x07283643 mlx4_srq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0871bb19 mlx4_read_clock +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0c371383 mlx4_wol_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0d67940f mlx4_get_devlink_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0e2e4654 mlx4_port_map_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0f187594 mlx4_get_default_counter_index +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0f6275f4 mlx4_mw_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x128adb19 mlx4_get_base_gid_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x130bc676 mlx4_set_vf_spoofchk +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x15616d9c mlx4_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1731f19a mlx4_pd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1e16e41a mlx4_get_protocol_dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x203b8080 mlx4_mr_hw_change_access +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x204efd5f mlx4_map_sw_to_hw_steering_id +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x23fb94bb mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x240d1729 mlx4_alloc_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x264db52d mlx4_vf_set_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x26c96cc5 mlx4_xrcd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2a091890 mlx4_map_sw_to_hw_steering_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2b2e9b5e mlx4_cq_resize +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2b31800a mlx4_get_vf_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2ce541f0 mlx4_flow_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3085c76c mlx4_config_vxlan_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x32ef8d62 mlx4_mr_hw_get_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x33837a7b mlx4_srq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x35c5b5e6 mlx4_multicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3a53c8c2 __mlx4_replace_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3c46d1a4 mlx4_mtt_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3daed88a mlx4_free_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3ddbbf66 mlx4_register_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3de61134 mlx4_mr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3fda2345 mlx4_counter_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x40536f80 mlx4_INIT_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4363c053 mlx4_qp_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x441aace4 mlx4_FLOW_STEERING_IB_UC_QP_RANGE +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x472efde6 mlx4_find_cached_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x50abb125 mlx4_bf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x50ebab93 mlx4_qp_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x557d8577 mlx4_set_vf_rate +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x56117c5d mlx4_phys_to_slaves_pport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x56e404ba mlx4_unicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5838c641 mlx4_mtt_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x58b8d7b2 mlx4_mr_hw_change_pd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5acae952 mlx4_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5be5757b mlx4_unicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5f152a8b mlx4_SYNC_TPT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6134999e mlx4_cq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x624d859e mlx4_mr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x624ef019 mlx4_get_counter_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x63c2540e mlx4_srq_lookup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x64963c87 mlx4_config_dev_retrieval +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x683e3af4 mlx4_srq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6baeb124 mlx4_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6dc21e53 mlx4_flow_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7010f151 mlx4_get_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x74a0f702 mlx4_CLOSE_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x77ff0745 mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x781f1754 mlx4_set_vf_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7943fc9f mlx4_bf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7959031d mlx4_vf_smi_enabled +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7bc852d8 mlx4_mr_hw_put_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7c388239 mlx4_get_vf_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7ffaec28 mlx4_uar_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x822b7601 mlx4_qp_to_ready +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8280599d mlx4_unbond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8415a991 mlx4_multicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8562d9cd mlx4_qp_reserve_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x87abe1f1 __mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x88090c81 mlx4_find_cached_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x88eee384 mlx4_mr_rereg_mem_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8b13e27d mlx4_mr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8d3c17d2 mlx4_mtt_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8d3fb18f mlx4_srq_arm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8fd99400 mlx4_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9046572f mlx4_qp_release_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x909ac380 mlx4_bond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x90fe4b37 mlx4_mw_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x91c1278c mlx4_get_active_ports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x943f0205 mlx4_uar_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9eeb743c mlx4_counter_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa0b38e8d mlx4_get_slave_default_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa4e3ecf9 __mlx4_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa9b877af mlx4_slave_convert_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xac10d4f3 mlx4_set_vf_link_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xac727946 mlx4_register_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xad3f393b mlx4_cq_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb04427cd mlx4_set_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb0ad2fef mlx4_cq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb2de46a4 mlx4_flow_steer_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb446cc88 mlx4_set_vf_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb4680141 mlx4_vf_get_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb59628af mlx4_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb70a8300 mlx4_pd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbb132dbc mlx4_wol_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbf27420f mlx4_multicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc08d7277 mlx4_ACCESS_PTYS_REG +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc36e2067 mlx4_hw_rule_sz +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xccdbb437 mlx4_update_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xce5117f5 mlx4_config_roce_v2_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd163b9ed mlx4_unicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd2dd83c5 mlx4_get_base_qpn +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd5efc8be __mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd6ba3df6 mlx4_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd6c0ebac mlx4_multicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd8dd2bca mlx4_unicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd97e1358 mlx4_get_internal_clock_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd9bf83ad mlx4_phys_to_slave_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xda01f49f mlx4_mr_rereg_mem_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdace6948 mlx4_free_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe5aa8764 mlx4_mr_hw_write_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe831965d mlx4_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xea8e30f0 mlx4_alloc_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf2a3d3ee mlx4_replace_zero_macs +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf4cda6ec mlx4_mw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf954d9a6 mlx4_unregister_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf9e44019 mlx4_unregister_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfd3b5b7c mlx4_buf_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfffc72e6 mlx4_phys_to_slaves_pport_actv 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 0x0757774e mlx5_nic_vport_unaffiliate_multiport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x17c15acd mlx5_frag_buf_alloc_node -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1c3db246 mlx5_dm_sw_icm_dealloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1c66cbea mlx5_query_port_ptys -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1cb29a64 mlx5_accel_ipsec_device_caps -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1f2ebbff mlx5_core_reserved_gids_count -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x265e69e5 mlx5_query_port_tc_group -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2cb9eb50 mlx5_query_port_tc_bw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3418f18a mlx5_nic_vport_enable_roce -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3712ac56 mlx5_query_nic_vport_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x38d2027f mlx5_query_port_wol -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3a0052bc mlx5_toggle_port_link -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3a338bfe mlx5_set_port_prio_tc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3b7ded12 mlx5_query_nic_vport_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3ed37317 mlx5_query_nic_vport_promisc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x425bd974 mlx5_query_port_pause -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x43d5b065 mlx5_query_hca_vport_context -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x450cb10a mlx5_eswitch_get_total_vports -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x46c55add mlx5_query_port_vl_hw_cap -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4bd9ebde mlx5_set_port_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4e02e4a4 mlx5_dm_sw_icm_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5233df07 mlx5_query_min_inline -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x536110f7 mlx5_accel_esp_modify_xfrm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x55a02fb0 mlx5_db_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x57291e15 mlx5_eswitch_mode -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x57642665 mlx5_query_nic_vport_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x58a885da mlx5_query_hca_vport_node_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5a752728 mlx5_query_nic_vport_qkey_viol_cntr -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5c289bf3 mlx5_nic_vport_update_local_lb -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x67236814 mlx5_query_hca_vport_gid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x702e921d mlx5_modify_nic_vport_mac_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x763eacbb mlx5_query_port_max_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x798612da mlx5_modify_port_ets_rate_limit -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x79a0784b mlx5_query_nic_vport_mac_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7b633d5c mlx5_query_port_pfc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7bdc0016 mlx5_db_alloc_node -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7ebaadee mlx5_core_query_vport_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0b7a21af mlx5_query_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0ce315b4 mlx5_query_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1641831f mlx5_accel_esp_create_xfrm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1d8bdc02 mlx5_set_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x28492dde mlx5_nic_vport_update_local_lb +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x29838e5d mlx5_modify_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2b69dce8 mlx5_db_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2b6a7726 mlx5_core_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2cddb0a5 mlx5_set_port_tc_group +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x34c7d274 mlx5_eswitch_get_total_vports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x350e4555 mlx5_set_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3751c224 mlx5_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x37be696c mlx5_query_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x38466c0d mlx5_query_module_eeprom +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x397a99a7 mlx5_set_port_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3e1b4a94 mlx5_nic_vport_affiliate_multiport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4770d143 mlx5_nic_vport_query_local_lb +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4a92723a mlx5_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4dcc2157 mlx5_query_port_tc_group +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4fad3f82 mlx5_dm_sw_icm_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5dd8ff0a mlx5_query_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5fe9052a mlx5_core_reserved_gids_count +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x61d23098 mlx5_set_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x65192149 mlx5_query_port_max_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x71dcb0e2 mlx5_core_query_sq_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7b129928 mlx5_query_hca_vport_gid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7e929174 mlx5_query_module_eeprom_by_page 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 0x88d6f316 mlx5_set_port_tc_group -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x92b29f74 mlx5_core_access_reg -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x93fdec1f mlx5_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9431b767 mlx5_accel_esp_destroy_xfrm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x989fb5e7 mlx5_query_port_ets_rate_limit -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9dbcb48a mlx5_query_module_eeprom_by_page +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x81c7c875 mlx5_set_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8a7480d8 mlx5_query_port_oper_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x938416c2 mlx5_modify_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9d1cb53a mlx5_query_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9ffd536c mlx5_accel_esp_destroy_xfrm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa1fbf474 mlx5_set_port_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa3e45a38 mlx5_core_modify_hca_vport_context EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa75f49d6 mlx5_fill_page_array -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaa31a24e mlx5_core_query_sq_state -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb09f5b83 mlx5_query_nic_vport_min_inline -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb247132d mlx5_core_modify_hca_vport_context -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb8fe402b mlx5_set_port_caps -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbcd09099 mlx5_query_hca_vport_pkey -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc16a258c mlx5_accel_esp_create_xfrm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc565f92d mlx5_set_port_admin_status -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc9d0c96c mlx5_query_port_prio_tc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcbdf340d mlx5_query_nic_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcf91aae6 mlx5_nic_vport_query_local_lb -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd22494a3 mlx5_frag_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd6b3ef06 mlx5_core_query_ib_ppcnt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd8cc1935 mlx5_query_port_admin_status -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd904d612 mlx5_db_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdc37faf6 mlx5_query_port_oper_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdd9e7076 mlx5_set_port_tc_bw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe1405c2c mlx5_modify_nic_vport_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe1f6d4f0 mlx5_modify_nic_vport_promisc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe27fbdb5 mlx5_query_hca_vport_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe333559b mlx5_nic_vport_affiliate_multiport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf1ae2f36 mlx5_query_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf367ec69 mlx5_set_port_pfc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf67b1ad5 mlx5_set_port_pause -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf758d891 mlx5_modify_nic_vport_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfeb09c6a mlx5_set_port_wol -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xffe7b66c mlx5_query_nic_vport_node_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x53ac4e09 ks8851_suspend -EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x5a90be77 ks8851_probe_common -EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x63c83032 ks8851_resume -EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x69742396 ks8851_remove_common +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa7a79ae7 mlx5_frag_buf_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaccf2042 mlx5_query_nic_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xad74a8b4 mlx5_query_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb0cd6f26 mlx5_query_hca_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb365fe49 mlx5_query_port_tc_bw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb454a263 mlx5_modify_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb6985ac1 mlx5_core_query_ib_ppcnt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xba86978b mlx5_toggle_port_link +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbad220be mlx5_modify_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbc3598bc mlx5_query_nic_vport_qkey_viol_cntr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbc4cd8e7 mlx5_modify_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbcbc09af mlx5_modify_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbd7a4a11 mlx5_accel_esp_modify_xfrm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc35a4258 mlx5_query_nic_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc6f7e5fc mlx5_frag_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc965f300 mlx5_core_query_vport_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xccfd6762 mlx5_query_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcda3a8b8 mlx5_query_nic_vport_min_inline +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd566df5d mlx5_nic_vport_enable_roce +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd6a34b43 mlx5_set_port_prio_tc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd73bd169 mlx5_accel_ipsec_device_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd786ef8b mlx5_set_port_tc_bw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd796382b mlx5_query_nic_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd7efccff mlx5_query_port_vl_hw_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd9538700 mlx5_query_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd9ac4872 mlx5_query_hca_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdc16e237 mlx5_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdcee3f81 mlx5_dm_sw_icm_dealloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdd193670 mlx5_query_port_ptys +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe692ca09 mlx5_nic_vport_unaffiliate_multiport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xee5fc558 mlx5_query_port_prio_tc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xef44689d mlx5_query_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf2033fc7 mlx5_query_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf947df9e mlx5_query_hca_vport_pkey +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfa5a91a8 mlx5_eswitch_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfce6773a mlx5_query_min_inline +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfd043a04 mlx5_query_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x14eee5e1 ks8851_remove_common +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x20abdf72 ks8851_suspend +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x3904f5a3 ks8851_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0xfb850832 ks8851_probe_common +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x6cf6a7e1 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 0xd5a32937 devm_regmap_init_encx24j600 EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0xe8c8c6c2 regmap_encx24j600_spi_read -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x04619d1e ocelot_port_writel -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x30cb36d6 ocelot_regfields_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x351c8935 ocelot_cls_flower_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x408f0179 ocelot_port_rmwl -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5451fd7e ocelot_regmap_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5676c130 ocelot_port_readl -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7646ee64 __ocelot_write_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7abc153d ocelot_phylink_mac_link_up -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x828352fd __ocelot_read_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x865f5fb4 ocelot_cls_flower_replace -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8e74f132 ocelot_cls_flower_destroy -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe2e3e203 ocelot_phylink_mac_link_down -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf136ed5f __ocelot_rmw_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0505ce40 ocelot_regfields_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x11cee6d9 ocelot_regmap_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1892add1 ocelot_phylink_mac_link_down +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x248c4c11 ocelot_port_writel +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x25a860dd __ocelot_write_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x33a9e94c __ocelot_read_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5846e44f ocelot_cls_flower_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x62515058 ocelot_cls_flower_replace +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x754f3b74 ocelot_port_rmwl +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa32c0127 ocelot_cls_flower_destroy +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb227a8ab ocelot_phylink_mac_link_up +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xdf60465d ocelot_port_readl +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe0ffc569 __ocelot_rmw_ix 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 0x55eafecd stmmac_init_tstamp_counter -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x5a020223 stmmac_bus_clks_config -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x602f8a78 stmmac_dvr_probe -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x82614d80 stmmac_dvr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x0a27e616 stmmac_suspend +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x31eb5f23 stmmac_init_tstamp_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x43f98094 stmmac_dvr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x46125858 stmmac_resume EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x92d778bb stmmac_get_mac_addr -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xb504e26f stmmac_suspend +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xa0d16657 stmmac_dvr_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xb794fc1f stmmac_bus_clks_config EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xd1cc24db stmmac_set_mac_addr -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xd36304cb stmmac_resume -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x5447e1ed stmmac_pltfr_pm_ops -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x65218f14 stmmac_remove_config_dt -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xc77c160f stmmac_probe_config_dt -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xe0cd074f stmmac_pltfr_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xeffc314a stmmac_get_platform_resources -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0x0174d6ff am65_cpts_create +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x1680c42f stmmac_pltfr_pm_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x29a9e04f stmmac_pltfr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x7195656e stmmac_remove_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x828ffed1 stmmac_probe_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xddde8b8e stmmac_get_platform_resources +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0x3c2653c6 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 0x5eaf5459 am65_cpts_prep_tx_timestamp +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0x62eced89 am65_cpts_tx_timestamp +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0x88c807a0 am65_cpts_create EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0x91fd3558 am65_cpts_rx_enable EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0xb60b988a am65_cpts_estf_disable EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0xbfc83e4d am65_cpts_estf_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0xf0ba165d 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 0x06be666b w5100_pm_ops -EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x389d2a07 w5100_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x5a1ecb94 w5100_ops_priv -EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xec54624a w5100_probe -EXPORT_SYMBOL_GPL drivers/net/geneve 0x11569839 geneve_dev_create_fb -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x32e914ee ipvlan_link_delete -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x6bdd66da ipvlan_link_register -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xa982be9a ipvlan_link_new -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xd9d2ba2e ipvlan_link_setup -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xf802d130 ipvlan_count_rx -EXPORT_SYMBOL_GPL drivers/net/macsec 0x3a533541 macsec_pn_wrapped -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x49701e56 macvlan_link_register -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x91fd31db macvlan_common_newlink -EXPORT_SYMBOL_GPL drivers/net/macvlan 0xdb9b135d macvlan_common_setup -EXPORT_SYMBOL_GPL drivers/net/macvlan 0xfab45ceb macvlan_dellink -EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-i2c 0xc4cdefaf mdio_i2c_alloc -EXPORT_SYMBOL_GPL drivers/net/net_failover 0x730aae6f net_failover_destroy -EXPORT_SYMBOL_GPL drivers/net/net_failover 0xcdc04791 net_failover_create -EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x104d1e39 xpcs_get_an_mode -EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x253c228c xpcs_destroy -EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x39ca3636 xpcs_config_eee -EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xd304ffa1 xpcs_do_config -EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xd7722f32 xpcs_validate +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x07542791 w5100_ops_priv +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x1d9b3dae w5100_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x45f1ae78 w5100_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x634cba63 w5100_pm_ops +EXPORT_SYMBOL_GPL drivers/net/geneve 0x1c1e32d1 geneve_dev_create_fb +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x161792a1 ipvlan_link_new +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x43c511ac ipvlan_link_delete +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x7f683089 ipvlan_link_setup +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xc89151a4 ipvlan_count_rx +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xe45f66f9 ipvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/macsec 0xee06bf17 macsec_pn_wrapped +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x50ca8136 macvlan_common_newlink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x67178677 macvlan_common_setup +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xbea165d0 macvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xe6ecd9e1 macvlan_dellink +EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-i2c 0x9fc7e159 mdio_i2c_alloc +EXPORT_SYMBOL_GPL drivers/net/net_failover 0x0a65f15c net_failover_create +EXPORT_SYMBOL_GPL drivers/net/net_failover 0xd218081b net_failover_destroy +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x002cb334 xpcs_config_eee +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x0d87113a xpcs_destroy +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x2d70f95a xpcs_validate +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x7be7c1f7 xpcs_get_an_mode +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x92a5a0b1 xpcs_create EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xe05362b0 xpcs_link_up -EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xf8ff764e xpcs_create -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x0119a310 bcm_phy_write_misc -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x0f468aa9 __bcm_phy_modify_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x180fcef8 __bcm_phy_read_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x1a1ea3fc bcm_phy_get_strings -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x1f54304c bcm_phy_get_sset_count -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x26a4c69b bcm_phy_write_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x2bb2411f bcm54xx_auxctl_read -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x4359d019 bcm_phy_cable_test_get_status_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x46b3bc22 bcm_phy_28nm_a0b0_afe_config_init -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x4ac1d280 bcm_phy_write_shadow -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x4db3b770 bcm_phy_config_intr -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x5bc7104e bcm_phy_enable_apd -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x61f532f2 bcm_phy_handle_interrupt -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x6771e9f8 bcm_phy_set_eee -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x6e8a83a8 __bcm_phy_write_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x6e9f56b4 bcm_phy_modify_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x6f2bfac5 bcm_phy_ack_intr -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x77a31649 bcm_phy_read_shadow -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x797af681 bcm_phy_cable_test_get_status -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7e514444 bcm_phy_downshift_get -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7fae05eb __bcm_phy_read_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x82f13935 bcm_phy_r_rc_cal_reset -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x832b0610 bcm_phy_cable_test_start_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x856ccca1 bcm_phy_write_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x88d09313 __bcm_phy_modify_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x8c56089f bcm_phy_read_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa6eb0146 bcm_phy_cable_test_start -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc35d9ca4 bcm_phy_downshift_set -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xcd428992 __bcm_phy_write_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xdb71449f bcm_phy_get_stats -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe75f397d bcm_phy_read_misc -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe9094f0e bcm_phy_modify_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xebf7c38c bcm_phy_read_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf1daa073 bcm_phy_enable_jumbo +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xf713686a xpcs_do_config +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x008b520c bcm_phy_enable_apd +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x027c83e7 bcm_phy_cable_test_get_status_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x0d80041d bcm_phy_modify_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x1390ec0f bcm_phy_downshift_get +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x145449ad bcm_phy_cable_test_start_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x157985ca __bcm_phy_write_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x1bac93a1 bcm_phy_modify_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x2193bc59 bcm54xx_auxctl_read +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x231edc42 bcm_phy_28nm_a0b0_afe_config_init +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x2609d5d0 bcm_phy_ack_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x34790dfd bcm_phy_get_sset_count +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x42748987 bcm_phy_get_strings +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x46fc7470 bcm_phy_downshift_set +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x4e66be00 bcm_phy_write_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x6148ac62 bcm_phy_set_eee +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x66d9d465 bcm_phy_read_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7d4fba79 bcm_phy_read_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x87474103 bcm_phy_r_rc_cal_reset +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x898d133b bcm_phy_read_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x99b5540e bcm_phy_handle_interrupt +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa3f4aee2 bcm_phy_enable_jumbo +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa60e98ff bcm_phy_get_stats +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xaac11b66 __bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb127832b bcm_phy_config_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xbe664cd9 __bcm_phy_read_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc6ce5cf8 bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xde7b5937 bcm_phy_cable_test_get_status +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe3c02cfa __bcm_phy_modify_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe4e9ad76 bcm_phy_write_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf125031a __bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf1de20ac bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf35adf04 bcm_phy_cable_test_start +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf4ead8ae bcm_phy_write_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf5ecbb46 __bcm_phy_modify_exp EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x08213956 phylink_ethtool_get_wol EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x12135396 phylink_mac_change EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x131e8b94 phylink_helper_basex_speed 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 0x2c8e28ee phylink_ethtool_get_eee -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x3811613a phylink_mii_c22_pcs_get_state +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x30e59b9a phylink_fwnode_phy_connect +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x3620b763 phylink_create +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x3c062160 phylink_mii_c22_pcs_get_state 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 0x5cd9fc33 phylink_mii_c22_pcs_config EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x5d0c4dcc phylink_speed_up EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x62104126 phylink_ethtool_set_wol EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x6831eccf phylink_ethtool_ksettings_get EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x6fa426d2 phylink_ethtool_nway_reset -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x76e04454 phylink_mii_c22_pcs_an_restart -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x78a9b066 phylink_mii_c45_pcs_get_state -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x7b8062f7 phylink_mii_c22_pcs_config EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x825c7340 phylink_get_eee_err -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x8c29e031 phylink_fwnode_phy_connect EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x911fcd6c phylink_start -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x9538694d phylink_connect_phy -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x95a241a6 phylink_create EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x983276da phylink_disconnect_phy EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x9ad6f36d phylink_decode_usxgmii_word -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xa8975ca4 phylink_mii_c22_pcs_set_advertisement -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xb2c79a8c phylink_of_phy_connect +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xa624bf80 phylink_mii_c22_pcs_an_restart +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xabfa6d90 phylink_connect_phy +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xbf09467e phylink_of_phy_connect 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 0xc3906c58 phylink_ethtool_ksettings_set +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xc7fb88e3 phylink_mii_c45_pcs_get_state +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xdc2fe324 phylink_mii_c22_pcs_set_advertisement EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xdcb0a2c0 phylink_stop EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xde66f4a7 phylink_mii_ioctl EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xe8c137ed phylink_set_pcs EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xec02ebe0 phylink_init_eee EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xf3083a1d phylink_destroy EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xf8fe5642 phylink_ethtool_get_pauseparam -EXPORT_SYMBOL_GPL drivers/net/tap 0x020e5599 tap_get_ptr_ring -EXPORT_SYMBOL_GPL drivers/net/tap 0x17d0ada8 tap_free_minor -EXPORT_SYMBOL_GPL drivers/net/tap 0x4301f7dd tap_get_minor -EXPORT_SYMBOL_GPL drivers/net/tap 0x4486552e tap_destroy_cdev -EXPORT_SYMBOL_GPL drivers/net/tap 0x4548a574 tap_create_cdev -EXPORT_SYMBOL_GPL drivers/net/tap 0x786e02c7 tap_handle_frame -EXPORT_SYMBOL_GPL drivers/net/tap 0x7d984c95 tap_get_socket -EXPORT_SYMBOL_GPL drivers/net/tap 0xb4bee25e tap_del_queues -EXPORT_SYMBOL_GPL drivers/net/tap 0xc755b524 tap_queue_resize -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x045e1e09 usbnet_cdc_update_filter -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x1d64cc3c usbnet_ether_cdc_bind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x222a8897 usbnet_cdc_bind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x2da9d6f6 usbnet_generic_cdc_bind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x670c0459 usbnet_cdc_status -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xb12555fa usbnet_cdc_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x019cecde cdc_ncm_rx_verify_ndp32 -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x14d5b541 cdc_ncm_bind_common -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x2e6c80d9 cdc_ncm_select_altsetting -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x4648699a cdc_ncm_rx_verify_nth32 -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x782e4de7 cdc_ncm_tx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x7e21aa16 cdc_ncm_fill_tx_frame -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x9dc8f5f3 cdc_ncm_change_mtu -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xa20bdae8 cdc_ncm_rx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xa424f4e0 cdc_ncm_rx_verify_ndp16 -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xaa279dcc cdc_ncm_rx_verify_nth16 -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xac941e3a cdc_ncm_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/r8152 0xa86356da rtl8152_get_version -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x171a4dc8 rndis_rx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x8bb74755 generic_rndis_bind -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x8f5d1f2f rndis_tx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x9d603a9f rndis_command -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xa5e13bdd rndis_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xd8e60d9b rndis_status -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1860a13d usbnet_write_cmd_nopm -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1af7a800 usbnet_tx_timeout -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x205794ab usbnet_get_link -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x29604c04 usbnet_probe -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2f834b06 usbnet_get_link_ksettings_internal -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3f0cef26 usbnet_resume -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x47019cde usbnet_nway_reset -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4ccac226 usbnet_get_link_ksettings_mii -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x54404445 usbnet_change_mtu -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5a1211ee usbnet_write_cmd -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5c7b396d usbnet_stop -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5cc92e62 usbnet_pause_rx -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5d0b59ba usbnet_purge_paused_rxq -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x63647017 usbnet_get_ethernet_addr -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x674dee8e usbnet_write_cmd_async -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6e24d991 usbnet_get_drvinfo -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x70ecefaf usbnet_read_cmd -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x738df04e usbnet_set_msglevel -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7528be6c usbnet_resume_rx -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7f3da7d2 usbnet_set_link_ksettings_mii -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x86ed9b4d usbnet_update_max_qlen -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8f1c8bcc usbnet_unlink_rx_urbs -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x98c5e755 usbnet_open -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9b986691 usbnet_get_msglevel -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa23f63ea usbnet_suspend -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa62b476d usbnet_defer_kevent -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xbebb5f99 usbnet_get_endpoints -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc243a170 usbnet_start_xmit -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc802135a usbnet_set_rx_mode -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xed6be8b0 usbnet_status_start -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf48cdce9 usbnet_skb_return -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf89c483e usbnet_read_cmd_nopm -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xfdc704e5 usbnet_status_stop -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xff7b31de usbnet_disconnect -EXPORT_SYMBOL_GPL drivers/net/vxlan 0x01715c8e vxlan_dev_create -EXPORT_SYMBOL_GPL drivers/net/vxlan 0x745ab410 vxlan_fdb_find_uc -EXPORT_SYMBOL_GPL drivers/net/vxlan 0xc0d83e90 vxlan_fdb_clear_offload -EXPORT_SYMBOL_GPL drivers/net/vxlan 0xdea5baa0 vxlan_fdb_replay -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/ipw2x00/libipw 0xf5fc624e libipw_rx_any -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x397846f4 il_remove_station -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4e561eb8 il_mac_tx_last_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5ba5b603 _il_grab_nic_access -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb4af6564 il_prep_station -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcb3e2c5c il_dealloc_bcast_stations -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x004718e1 __iwl_info -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x067c9f3b iwl_write8 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x07f32dd1 iwl_fw_dbg_error_collect -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x09637222 iwl_fwrt_dump_error_logs -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x0bdea4fd iwl_free_fw_paging -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x10443468 iwl_fw_runtime_suspend +EXPORT_SYMBOL_GPL drivers/net/tap 0x102a3af3 tap_create_cdev +EXPORT_SYMBOL_GPL drivers/net/tap 0x27be2ca3 tap_free_minor +EXPORT_SYMBOL_GPL drivers/net/tap 0x5d3724a8 tap_get_minor +EXPORT_SYMBOL_GPL drivers/net/tap 0x6a0aaeca tap_handle_frame +EXPORT_SYMBOL_GPL drivers/net/tap 0x84f4cfa6 tap_get_socket +EXPORT_SYMBOL_GPL drivers/net/tap 0xa92cad8b tap_destroy_cdev +EXPORT_SYMBOL_GPL drivers/net/tap 0xcdcc9ca3 tap_queue_resize +EXPORT_SYMBOL_GPL drivers/net/tap 0xcfdce16d tap_del_queues +EXPORT_SYMBOL_GPL drivers/net/tap 0xdebc6e62 tap_get_ptr_ring +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x123e33f7 usbnet_cdc_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x1f78dfdf usbnet_cdc_update_filter +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x47ee64b4 usbnet_cdc_status +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x5f57bcfc usbnet_generic_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xaa054d51 usbnet_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xfebab74d usbnet_ether_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x1c6072c9 cdc_ncm_bind_common +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x1e94c0ba cdc_ncm_fill_tx_frame +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x40f74986 cdc_ncm_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x5a1a37a6 cdc_ncm_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x66cd62e8 cdc_ncm_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xb1658acc cdc_ncm_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xb43fa9e2 cdc_ncm_rx_verify_nth16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xc800a4d1 cdc_ncm_rx_verify_nth32 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xcc03003c cdc_ncm_select_altsetting +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xd8733d5c cdc_ncm_rx_verify_ndp16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xfe8d798a cdc_ncm_rx_verify_ndp32 +EXPORT_SYMBOL_GPL drivers/net/usb/r8152 0xcf6814f7 rtl8152_get_version +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x65c057bf rndis_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x94548714 rndis_status +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xa573a967 rndis_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xb25ad27d rndis_command +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xb33fe10a generic_rndis_bind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xea4099e6 rndis_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x0cd69648 usbnet_set_rx_mode +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1830af06 usbnet_set_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1dae4ec2 usbnet_resume +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x28268441 usbnet_status_start +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2bf108cf usbnet_purge_paused_rxq +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2ca85eef usbnet_get_ethernet_addr +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x36d12e66 usbnet_write_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x39ab3823 usbnet_nway_reset +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3f99a6b2 usbnet_skb_return +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3faf32a7 usbnet_write_cmd_async +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x46740835 usbnet_read_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x501d0849 usbnet_get_link_ksettings_mii +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x503bbdc5 usbnet_unlink_rx_urbs +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x51c444ce usbnet_resume_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x69766dc7 usbnet_disconnect +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6eed131b usbnet_probe +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x72a71a5c usbnet_open +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x891ad186 usbnet_start_xmit +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8e5eb453 usbnet_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9b1a8a0d usbnet_update_max_qlen +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa1bcd8a3 usbnet_set_link_ksettings_mii +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa76858e0 usbnet_status_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa953f5aa usbnet_get_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb22f204c usbnet_get_link_ksettings_internal +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xba7e4cd9 usbnet_suspend +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc200415d usbnet_pause_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xcbb23de5 usbnet_defer_kevent +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd10696ed usbnet_tx_timeout +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd72edff6 usbnet_get_link +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe9473f45 usbnet_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf47aa7e1 usbnet_get_endpoints +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf5917c7c usbnet_get_drvinfo +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf6c9d690 usbnet_read_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf766f1f5 usbnet_write_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/vxlan 0x18856102 vxlan_fdb_clear_offload +EXPORT_SYMBOL_GPL drivers/net/vxlan 0x1a80332f vxlan_dev_create +EXPORT_SYMBOL_GPL drivers/net/vxlan 0x4da972e9 vxlan_fdb_find_uc +EXPORT_SYMBOL_GPL drivers/net/vxlan 0xe8a254bd vxlan_fdb_replay +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/ipw2x00/libipw 0x2bfd63d3 libipw_rx_any +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3830f4e2 il_remove_station +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x71651836 _il_grab_nic_access +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9ad6a4ed il_prep_station +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xef507051 il_mac_tx_last_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf75c91a4 il_dealloc_bcast_stations +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x01ca247e iwl_pnvm_load +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x032c53a9 iwl_get_shared_mem_conf +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x0350997c iwl_sar_get_wgds_table +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x048d29a9 iwl_acpi_get_dsm_u8 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x04d8df8a iwl_write_direct64 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x075e76b1 iwl_fwrt_dump_error_logs +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x12af8ee7 iwl_cmd_groups_verify_sorted EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1332e4de iwl_abort_notification_waits -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x15b7b348 iwl_acpi_get_dsm_u8 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x175556d5 iwl_get_nvm -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x17e49826 iwl_write64 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1878381b iwl_fw_dbg_collect_trig -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1acd1eb3 iwl_fw_dbg_read_d3_debug_data -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1c3a1463 iwl_parse_nvm_data -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1ea7ff5a iwl_clear_bits_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x22c03b7b iwl_read_direct32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x16610998 iwl_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1b6b8650 iwl_write8 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x20205e18 iwl_configure_rxq +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x20fd6a67 iwl_force_nmi +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x23ca2404 iwl_init_paging EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2710c362 iwl_dump_desc_assert -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2b1813c7 iwl_set_soc_latency -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2c25045a iwl_fw_dbg_stop_restart_recording -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2c8f2ead iwl_write_prph_no_grab -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2fa8a770 iwl_acpi_get_wifi_pkg -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x32d43649 iwl_poll_bit +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x280bf162 __iwl_info +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x287c529b iwl_set_bits_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x328c55b1 __iwl_crit +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x33c4798c iwl_write_prph64_no_grab EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x35033c81 iwl_phy_db_free -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x3be6385c iwl_fw_runtime_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x3e0493a2 iwl_set_bits_mask_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x42d6df89 iwl_get_cmd_string -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x43f6218b iwl_get_shared_mem_conf -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x4921f4e6 iwl_write_prph_delay -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x4c00f275 iwl_dbg_tlv_del_timers -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x4cdaf620 __iwl_err -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x4edb8a23 iwl_fw_start_dbg_conf -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x4feb50ab iwl_phy_db_init -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5959382b iwl_parse_nvm_mcc_info +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x3acc0c54 iwl_dbg_tlv_del_timers +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x3ecdc42e iwl_acpi_get_pwr_limit +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x40145d61 iwl_write_prph_delay +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x40e3afd4 iwl_poll_bit +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x46446f1d iwl_read_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x472571e8 iwl_fw_dbg_collect_desc +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x4729d5f8 iwl_sar_get_ewrd_table +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x497c7c3a iwl_read_prph_no_grab +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x4bbcf095 iwl_read32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x4cd3da74 iwl_write32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x4d75f638 iwl_acpi_get_dsm_u32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x52922168 iwl_fw_dbg_error_collect +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x56254e9c iwl_fw_dbg_collect_trig EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5987fe45 iwl_fw_lookup_assert_desc EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5988395c iwl_notification_wait_init -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5a67b003 iwl_sar_get_wgds_table EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5c52e109 iwl_opmode_deregister -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x62ed51ef iwl_sar_get_ewrd_table -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x63690fff iwl_acpi_get_dsm_u32 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x68affd43 iwl_set_bits_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x6bc417e3 iwl_sar_get_wrds_table -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x70274c11 iwl_fw_dbg_stop_sync -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x75a46db6 iwl_parse_eeprom_data +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x62367758 iwl_fw_runtime_init +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x62d85780 iwl_acpi_get_object +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x7137326b iwl_read_direct32 EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x776221bf iwl_send_phy_db_data -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x7c18882b iwl_write_direct64 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x83c83a9d iwl_read_external_nvm -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x83edf3b8 iwl_write_prph64_no_grab -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x840f7989 iwl_read_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x859f8f55 iwl_sar_select_profile -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8602ef15 iwl_read32 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x893722ee iwl_finish_nic_init -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8c75e313 iwl_acpi_get_mcc +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x7a5fb115 iwl_phy_db_init +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x7c9bf45d iwl_acpi_get_mcc +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x7fe738e8 iwl_acpi_get_tas +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x82d73cff __iwl_err +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x830eea22 iwl_acpi_get_eckv +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8460b81e iwl_trans_send_cmd EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8cd2f16c iwl_fw_lookup_notif_ver -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8d9e015b iwl_opmode_register EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x9038811a iwl_rfi_guid -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x9763ca59 __iwl_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x9c30d369 iwl_sar_geo_support -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x9fac8411 iwl_write32 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa0293103 iwl_read_prph_no_grab -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa1e3a840 iwl_acpi_get_tas -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa39b66b3 __iwl_crit -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa5f2335e iwl_fw_dbg_collect -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa6078c49 __iwl_warn +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x93f27fd3 iwl_acpi_get_lari_config_bitmap +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x9569b1b7 __iwl_warn +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x9e2620d1 iwl_sar_geo_support +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa007a417 iwl_fw_dbg_read_d3_debug_data +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa617b323 iwl_sar_geo_init +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa69e4ee8 iwl_set_soc_latency +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa6e8e6c4 iwl_fw_runtime_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa9c399bf iwl_poll_direct_bit EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa9f05394 iwlwifi_mod_params +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb073acf5 iwl_get_cmd_string +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb0fcb9e3 iwl_sar_select_profile EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb1338340 iwl_fw_lookup_cmd_ver +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb1853732 iwl_fw_start_dbg_conf +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb49b041b iwl_acpi_get_wifi_pkg +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb4db0cd8 iwl_parse_nvm_mcc_info +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb7231f16 iwl_write_direct32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb84346db __iwl_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xba186b8a iwl_parse_eeprom_data +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xba39dc74 iwl_fw_runtime_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xbab7e23b iwl_parse_nvm_data EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xbafc8994 iwl_wait_notification -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xbb2018ad _iwl_dbg_tlv_time_point -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xbbdbaeab iwl_init_paging -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xbe3dc7b8 iwl_fw_runtime_init -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc1fbda21 iwl_trans_send_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc235bea8 iwl_configure_rxq -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc7eb33bb iwl_acpi_get_pwr_limit -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc8ab2e69 iwl_cmd_groups_verify_sorted +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xbb6cc45f iwl_get_nvm +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc6951c86 iwl_read_external_nvm EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xce0c6460 iwl_phy_db_set_section -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd97821c8 iwl_pnvm_load -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xdec99815 iwl_acpi_get_object -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe044e908 iwl_acpi_get_lari_config_bitmap +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd0f70382 iwl_finish_nic_init +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd36edc71 iwl_fw_dbg_stop_sync +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xdb5f08e6 iwl_fw_dbg_collect +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xdbed5ee4 iwl_set_bits_mask_prph EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe0eb5838 iwl_init_notification_wait EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe75b7e77 iwl_notification_wait -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe8ecc686 iwl_sar_geo_init EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xea1b26fc iwl_nvm_fixups -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xebd1758b iwl_force_nmi -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xec266e2d iwl_poll_direct_bit -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xee9a61b4 iwl_fw_dbg_collect_desc -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf450941c iwl_write_direct32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xebfb2cb1 iwl_clear_bits_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xecb5d2c7 _iwl_dbg_tlv_time_point +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xeec00d6c iwl_write_prph_no_grab +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xef0d997f iwl_free_fw_paging +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xefa42dc6 iwl_fw_dbg_stop_restart_recording EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf88964e4 iwl_remove_notification +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xfab8c0f1 iwl_sar_get_wrds_table EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xfc1e6f41 iwl_guid -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xfc40b16a iwl_read_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xfdc954f0 iwl_acpi_get_eckv -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x43981e4a p54_free_common -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x4a43d492 p54_init_common -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x61fb93cd p54_free_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x65665d75 p54_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x6c6466e6 p54_unregister_common -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x6ef1c31c p54_parse_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x70d7b8f1 p54_read_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xa1c50e14 p54_register_common -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xe77cb9e8 p54_parse_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x029487af lbs_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x0cbc769f lbs_process_rxed_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x0ff4a929 lbs_host_to_card_done -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x39396c5c __lbs_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x5fbfdcfc lbs_get_firmware_async +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xfdf5e419 iwl_opmode_register +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xff281ae8 iwl_write64 +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x0653f714 p54_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x0df7c074 p54_parse_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x2c77c03d p54_register_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x8b5e40c2 p54_free_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xc6e9425c p54_parse_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xce658d99 p54_unregister_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xf03348f8 p54_init_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xf13e2f37 p54_free_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xf2396c82 p54_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x17745ac7 lbs_host_sleep_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x19a60e00 lbs_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x2a7b2e18 lbs_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x2ff9b43d lbs_notify_command_response +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x30ad061d lbs_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x4aa26e5a lbs_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x4c7bba04 lbs_get_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x5c048232 __lbs_cmd EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x5fdf38b8 lbs_disablemesh -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x87184673 lbs_start_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x932dfd04 lbs_get_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x9a6655f1 lbs_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xb2d2fbee lbs_queue_event -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xb7718de9 lbs_cmd_copyback -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xbb4b32a1 lbs_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xdf8c0505 lbs_send_tx_feedback -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xe7b31b1b lbs_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xea026b94 lbs_stop_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xf04338ff lbs_notify_command_response -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xf3ea2a09 lbs_host_sleep_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x60a391bc lbs_get_firmware_async +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x839d1595 lbs_start_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x9d6cf619 lbs_stop_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xa43c0307 lbs_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xc0114284 lbs_queue_event +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xc9caed9d lbs_host_to_card_done +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xcf236774 lbs_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xe5680dda lbs_process_rxed_packet EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xf64277de lbs_debug -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x19119481 lbtf_send_tx_feedback -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x1af38c08 lbtf_cmd_copyback -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x5aa4ff86 lbtf_cmd_response_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x7b7ee07a lbtf_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xa129d430 __lbtf_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x315e4aea lbtf_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x41c5fadb lbtf_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x605b0671 lbtf_bcn_sent +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x6ee1b0eb lbtf_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x79ab7202 lbtf_cmd_response_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x820f699d lbtf_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x9e157a7e __lbtf_cmd EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xc85e6899 lbtf_debug -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xee3748d9 lbtf_bcn_sent -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xf4595145 lbtf_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xfc2f5860 lbtf_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x02ce0958 mwifiex_disable_auto_ds -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x0729dc68 mwifiex_init_shutdown_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x089df8df mwifiex_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x292f20e2 mwifiex_main_process -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x4166f568 _mwifiex_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x43a5ccb5 mwifiex_drv_info_dump -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x47f780be mwifiex_add_virtual_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x51569d53 mwifiex_write_data_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x59c306ce mwifiex_prepare_fw_dump_info -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x604bf814 mwifiex_cancel_hs -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x64fa9daf mwifiex_deauthenticate_all -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x70702f63 mwifiex_del_virtual_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x74238e63 mwifiex_fw_dump_event -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x819e775e mwifiex_upload_device_dump -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x8f4a8b4a mwifiex_handle_rx_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xa36ce54e mwifiex_multi_chan_resync -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xa7265026 mwifiex_dnld_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xaf3d7979 mwifiex_enable_hs -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xb3b3cfd3 mwifiex_reinit_sw -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xd171ef60 mwifiex_process_hs_config +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xd55928b4 lbtf_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x0221f1e1 mwifiex_disable_auto_ds +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x170c8506 mwifiex_init_shutdown_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x17f9c123 mwifiex_drv_info_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x1a5be358 mwifiex_add_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x1beb590c mwifiex_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x1cdee3ac mwifiex_handle_rx_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x1fb14403 mwifiex_prepare_fw_dump_info +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x322b2872 mwifiex_deauthenticate_all +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x3f89b2b6 mwifiex_del_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x4b511f82 mwifiex_write_data_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x5ea98667 mwifiex_process_sleep_confirm_resp +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x6add87e4 mwifiex_fw_dump_event +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x8a111571 mwifiex_reinit_sw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x961756d7 mwifiex_dnld_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x98f2f0cb mwifiex_main_process +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x9bff10fc mwifiex_process_hs_config +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xb1f86281 mwifiex_multi_chan_resync +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xb3fc2bea mwifiex_enable_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xbc2b09af mwifiex_upload_device_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xc586305a mwifiex_queue_main_work +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xc616bbd1 mwifiex_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xd3436dd3 mwifiex_cancel_hs EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xd4dad9f3 mwifiex_alloc_dma_align_buf -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xebdd1f16 mwifiex_shutdown_sw -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xf13cb63d mwifiex_process_sleep_confirm_resp -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xf2396508 mwifiex_queue_main_work -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xfc83b2a1 mwifiex_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0030fd3e mt76_release_buffered_frames -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0072fb97 mt76_set_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x01c2560a mt76_get_min_avg_rssi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0732ef4d mt76_update_survey -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0e976410 mt76_mcu_send_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0ed51137 mt76_update_survey_active_time -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x17493dff mt76_txq_schedule +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xdc82e121 mwifiex_shutdown_sw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xdfe53c89 _mwifiex_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x007efd32 mt76_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x01d4b2ae mt76_get_rate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x028812d5 mt76_get_of_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x02bb7815 mt76_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x07024a41 mt76_mcu_send_and_get_msg +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x09f83ecf mt76_txq_schedule_all +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x12abfd69 mt76_register_debugfs_fops +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x13f81d98 mt76_insert_ccmp_hdr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x15b33e8d mt76_get_rate_power_limits EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x17f568e9 mt76_rates -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x19be3c16 mt76_eeprom_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1cff0444 mt76_has_tx_pending -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1e69adf2 mt76_sta_state +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1d0ec4c5 mt76_tx_status_skb_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1da5577c mt76_dma_rx_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1dcb3470 mt76_queue_tx_complete 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 0x215aa11c mt76_set_irq_mask -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x24255ada mt76_seq_puts_array -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x26382fe8 mt76_tx_check_agg_ssn -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x28c100f7 mt76_get_of_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x29c592f5 mt76_init_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2be248f4 mt76_sta_pre_rcu_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2d7b490f mt76_get_survey -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2e55229f mt76_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x314374f6 mt76_dma_attach -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x32928241 mt76_dma_rx_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x363ac0da mt76_tx_status_check -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x38acce9b mt76_queue_tx_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3af603a2 mt76_mcu_rx_event -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3d14aff2 __traceiter_dev_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x45e7d856 mt76_wake_tx_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4a67f996 mt76_csa_finish -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4bbd1df1 mt76_get_rate_power_limits -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4f1c53e2 mt76_mcu_skb_send_and_get_msg -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x507a88f5 mt76_queues_read -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x50cc25a3 mt76_tx_status_skb_get -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x591d9929 __traceiter_mac_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x35d7a8d7 mt76_set_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3cb5971b mt76_tx_status_skb_done +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3fb681d5 mt76_mcu_skb_send_and_get_msg +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x420b4972 mt76_tx_status_check +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x42fafadf mt76_tx_worker_run +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x46aaad4c mt76_token_release +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x48022e89 mt76_csa_finish +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4a48cff7 mt76_rx_aggr_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4b29d4bf __mt76_set_tx_blocked +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x56508b91 mt76_has_tx_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5a61abad mt76_rx_poll_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5a963a68 mt76_alloc_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5b1b12a8 mt76_register_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5b79f3c2 mt76_sta_pre_rcu_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5d041874 mt76_dma_attach EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5d1b4e42 __tracepoint_mac_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x63c92138 mt76_tx_status_lock -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x66e5475a __mt76_poll_msec -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6734267f mt76_set_stream_caps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6b5335e3 mt76_csa_check -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6dd5ceb2 mt76_register_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6e76f037 mt76_register_debugfs_fops -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7530ac54 mt76_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7d9c87f6 mt76_rx_aggr_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7e86e31a mt76_free_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x69cb778d __traceiter_mac_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6d056ca9 mt76_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7550fca0 mt76_mcu_get_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7b573a31 mt76_set_stream_caps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7dc1538d mt76_get_survey EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x805fc13a __SCK__tp_func_dev_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8350c838 mt76_unregister_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x85f45911 mt76_tx_status_skb_add -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8681c9e8 mt76_mcu_get_response -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8c2dd395 mt76_tx_worker_run -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9a65e873 mt76_set_tim -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9d2694e6 mt76_tx_status_unlock -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9e463746 mt76_dma_cleanup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa1f57dc9 mt76_eeprom_override -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa3c8eab6 mt76_alloc_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa40251b3 mt76_unregister_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa494c10e mt76_token_consume -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa6c82ee8 __mt76_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa7d3e9bf mt76_get_rate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa8ec58f9 mt76_mmio_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xab9b4638 mt76_tx_status_skb_done -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb08db569 mt76_mcu_send_and_get_msg -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb0afda7d mt76_rx_poll_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb3283d40 mt76_pci_disable_aspm -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb5a0b8a2 mt76_skb_adjust_pad -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbb8b94c8 mt76_register_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc254f5c2 mt76_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x80ac7fcf mt76_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x832a012f mt76_mcu_msg_alloc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x886aac58 mt76_skb_adjust_pad +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8fbe731e mt76_eeprom_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x908ea240 mt76_stop_tx_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x932f0792 __mt76_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x93a82e22 mt76_sw_scan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9762c200 __mt76_poll_msec +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x979ead99 __mt76_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9847e219 mt76_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9bdc7728 mt76_tx_status_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa1649a63 mt76_csa_check +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa54db140 mt76_eeprom_override +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa69d602d __mt76_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa6b4cf95 mt76_tx_status_skb_get +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xac07a8e7 mt76_mcu_rx_event +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xaf9a6d37 mt76_update_survey_active_time +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb1f9f3d9 mt76_get_min_avg_rssi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb4edad17 mt76_pci_disable_aspm +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbe0a1f2f mt76_init_queue 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 0xc7233243 mt76_rx_aggr_start -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc75ea927 __mt76_set_tx_blocked -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd1854f7b mt76_get_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd3811afc mt76_token_release -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xdf0d4790 mt76_put_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xdf1e9c61 mt76_stop_tx_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe1e64611 __mt76_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc88c40e7 mt76_mmio_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xce3ac860 mt76_wake_tx_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xcfd55bf9 mt76_put_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd104eff5 mt76_txq_schedule +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd388567d __traceiter_dev_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd44f8686 mt76_update_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd77c2838 mt76_tx_status_unlock +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xdb1d3be5 mt76_mcu_send_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xdbb066d1 mt76_tx_check_agg_ssn +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xdc40649e mt76_token_consume +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xdcf85878 mt76_release_buffered_frames +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe0f8ba8b mt76_sta_state +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe3576152 mt76_seq_puts_array EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe40b66ef mt76_wcid_alloc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe8f07e39 mt76_sw_scan_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe8f4a77e mt76_insert_ccmp_hdr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xeab8407a mt76_alloc_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xed39f3d0 mt76_mcu_msg_alloc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf5fda1f9 mt76_sw_scan -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf75f06de __mt76_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xff548234 mt76_txq_schedule_all -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x09ad97d7 mt76_connac_mcu_coredump_event -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x147c6d9d mt76_connac_pm_queue_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x205952d5 mt76_connac_mcu_sched_scan_enable -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x217a92bd mt76_connac_mcu_set_rate_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x221eea65 mt76_connac_mcu_set_mac_enable -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x2816f444 mt76_connac_mcu_sta_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x3801c148 mt76_connac_free_pending_tx_skbs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x406478b5 mt76_connac_mcu_get_nic_capability -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x48fed974 mt76_connac_mcu_start_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x589887ff mt76_connac_mcu_wtbl_hdr_trans_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x5bb4e75a mt76_connac_mcu_update_arp_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x6d0dbce1 mt76_connac_mcu_wtbl_ba_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x6e6b1ef9 mt76_connac_mcu_wtbl_ht_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x74763f6e mt76_connac_mcu_set_suspend_iter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x780a08d5 mt76_connac_mcu_cancel_hw_scan -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7c682885 mt76_connac_mcu_init_download -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x8197d84c mt76_connac_mcu_sta_ba -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x87120748 mt76_connac_mcu_set_rts_thresh -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x8ccf71df mt76_connac_mcu_set_hif_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x8da57e4f mt76_connac_mcu_sta_ba_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x8dc72796 mt76_connac_mcu_alloc_sta_req +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe7962e08 mt76_unregister_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe9927916 mt76_get_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xea6320ae mt76_alloc_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xec62a6b5 mt76_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xed825c19 mt76_dma_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf0a61578 mt76_queues_read +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf229fe3d mt76_set_irq_mask +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf8b804a2 mt76_free_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xfbd679a6 mt76_unregister_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xff3e619f mt76_rx_aggr_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x04cb4754 mt76_connac_mcu_coredump_event +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x0af396bf mt76_connac_mcu_start_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x0ecab2e0 mt76_connac_mcu_update_arp_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x0f91f064 mt76_connac_mcu_sched_scan_enable +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x16ac1e03 mt76_connac_mcu_uni_add_bss +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x19b90244 mt76_connac_mcu_wtbl_hdr_trans_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x1d4a176e mt76_connac_mcu_uni_add_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x24b03db4 mt76_connac_mcu_set_rate_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x258bc37b mt76_connac_mcu_hw_scan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x28286223 mt76_connac_mcu_set_rts_thresh +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x29777c9f mt76_connac_mcu_sched_scan_req +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x2a6b5f8e mt76_connac_mcu_set_channel_domain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x34215eee mt76_connac_mcu_wtbl_ht_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x37e94720 mt76_connac_mcu_set_mac_enable +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x3ac9873a mt76_connac_mcu_wtbl_ba_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x3f505808 mt76_connac_mcu_get_nic_capability +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x44e2cad6 mt76_connac_free_pending_tx_skbs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x48b0d1df mt76_connac_mcu_set_vif_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x48e775ad mt76_connac_mcu_update_gtk_rekey +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4bd7df17 mt76_connac_mcu_start_patch +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x562b8384 mt76_connac_mcu_set_suspend_iter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x5fea2a2a mt76_connac_mcu_beacon_loss_iter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x6f974631 mt76_connac_mcu_chip_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x721e41d4 mt76_connac_mcu_sta_ba_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7ab172cc mt76_connac_power_save_sched +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7bfaed12 mt76_connac_sta_state_dp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7c35de30 mt76_connac_mcu_alloc_sta_req +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x8e0b6971 mt76_connac_mcu_sta_basic_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x8f555f25 mt76_connac_mcu_add_nested_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x8f82367f mt76_connac_mcu_sta_ba 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 0x9296d371 mt76_connac_mcu_set_deep_sleep -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x9eeae414 mt76_connac_mcu_beacon_loss_iter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa6776fbe mt76_connac_mcu_sta_basic_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa7e300c7 mt76_connac_pm_dequeue_skbs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa9a44357 mt76_connac_mcu_wtbl_generic_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb1779775 mt76_connac_mcu_set_channel_domain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xbac64d57 mt76_connac_mcu_hw_scan -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xbc02003d mt76_connac_mcu_sta_update_hdr_trans -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xbe2f1326 mt76_connac_mcu_alloc_wtbl_req -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc99c4979 mt76_connac_mcu_sched_scan_req -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xcc4ce17e mt76_connac_mcu_add_nested_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xcd3638a4 mt76_connac_mcu_sta_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd39ce30e mt76_connac_mcu_uni_add_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xdebd19ed mt76_connac_mcu_patch_sem_ctrl -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xdfac38c1 mt76_connac_mcu_uni_add_bss -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe286f4d0 mt76_connac_mcu_chip_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe6a8324d mt76_connac_mcu_start_patch -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xede70e7a mt76_connac_mcu_update_gtk_rekey -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf2f71538 mt76_connac_mcu_set_vif_ps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf5aedfb9 mt76_connac_power_save_sched -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xfdc2abba mt76_connac_sta_state_dp -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xfdcf3ede mt76_connac_pm_wake -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x0a84f8f8 mt76s_deinit -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x57e56ad5 mt76s_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x69c07e2c mt76s_alloc_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x0526c5ac mt76u_alloc_mcu_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x1101917c mt76u_single_wr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x5befc75a mt76u_stop_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x7fbdb977 mt76u_alloc_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x826c0460 mt76u_vendor_request -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xbc13b341 mt76u_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xe4bc92cc mt76u_stop_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xe58fd9b5 mt76u_resume_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xed68728e mt76u_queues_deinit -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x0eb06f35 mt7615_ops -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x179a38d2 mt7615_unregister_ext_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x1e980ae6 mt7615_tx_token_put -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x27aea167 mt7622_trigger_hif_int -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x2860039c mt7615_mac_set_rates -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x363c7f9f mt7615_txp_skb_unmap -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x3bb5a7fc mt7615_mcu_restart -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x49646bb4 mt7615_init_work -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x4995fcb5 mt7615_update_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x49b6be85 mt7615_register_ext_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x5a6e3735 mt7615_eeprom_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x5e9963be mt7615_init_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x694d00a3 mt7615_thermal_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x6e321743 mt7615_init_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x7d4a96f1 mt7615_wait_for_mcu_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x7ffe69da mt7615_sta_ps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x8461bfcd mt7615_mac_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x8b6262c3 mt7615_queue_rx_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x9e06636b mt7615_mac_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x9e19be10 mt7615_mcu_parse_response -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xb475df01 mt7615_mac_write_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xb5a0fe5c mt7615_mcu_exit -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xc239bb72 mt7615_mcu_reg_rr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xd4495006 mt7615_init_debugfs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xd61512da mt7615_mcu_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xe406d65c mt7615_mac_sta_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xe64dc9ab __mt7663_load_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xfa5f4938 mt7615_mcu_fill_msg -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xffa595e1 mt7615_mcu_reg_wr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615e 0x018d4faf mt7615_dma_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xaa5ba11c mt76_connac_mcu_sta_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb76adc34 mt76_connac_mcu_cancel_hw_scan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb9fbffd8 mt76_connac_mcu_alloc_wtbl_req +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xbde77b66 mt76_connac_mcu_set_hif_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc5f5e9ff mt76_connac_pm_queue_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xcaa99d7e mt76_connac_mcu_sta_update_hdr_trans +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xcc3fd3a8 mt76_connac_pm_dequeue_skbs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd93404fc mt76_connac_mcu_sta_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xde1d063e mt76_connac_mcu_patch_sem_ctrl +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xdfc49374 mt76_connac_mcu_wtbl_generic_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe0a384dc mt76_connac_mcu_set_deep_sleep +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xea0fe47f mt76_connac_mcu_init_download +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf9171e57 mt76_connac_pm_wake +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x57bd82bf mt76s_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x61b95633 mt76s_alloc_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xeb763ec5 mt76s_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x2c73532f mt76u_single_wr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x341fab88 mt76u_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x3f3fac83 mt76u_queues_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x59941f38 mt76u_alloc_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x7dd3905d mt76u_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x826a9606 mt76u_resume_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x8369a5e9 mt76u_stop_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x871dda13 mt76u_alloc_mcu_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x8945b23d mt76u_stop_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x0cf04363 mt7615_mcu_restart +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x22f2e248 mt7615_mcu_exit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x25c2cfef mt7615_mac_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x2ca7020b mt7615_init_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x2d956ed4 mt7615_thermal_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x30f2a0ce mt7615_mcu_fill_msg +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x3264f24b mt7615_wait_for_mcu_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x3879eb18 mt7615_init_debugfs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x3a03ef2d mt7615_register_ext_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x4a48b8ab mt7615_mcu_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x4f803fa5 mt7615_sta_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x53bb7f60 mt7615_update_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x58bc9159 mt7615_mcu_reg_wr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x72ae3ee4 mt7615_mcu_parse_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x75215788 mt7615_tx_token_put +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x84ff8f13 mt7615_queue_rx_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x957de151 mt7615_mac_write_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x9a964418 mt7622_trigger_hif_int +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x9d2105ec mt7615_mcu_reg_rr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xa068cf48 mt7615_init_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xa7405b52 mt7615_mac_set_rates +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xadc4969a mt7615_mac_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xb8b8c17f mt7615_mac_sta_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xbb39be10 mt7615_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xdde9bcc6 __mt7663_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xe0097743 mt7615_unregister_ext_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xe75fb1da mt7615_eeprom_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xe7a45511 mt7615_init_work +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xf1b954c8 mt7615_txp_skb_unmap +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615e 0xb21accb7 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 0x295986f0 mt7663_usb_sdio_tx_prepare_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x96091021 mt7663_usb_sdio_tx_status_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0xa9331dc5 mt7663_usb_sdio_register_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0xc2e49515 mt7663_usb_sdio_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x14b2c090 mt76x0_phy_calibrate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x2353d318 mt76x0_mac_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x7bf1ec59 mt76x0_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x84c45092 mt76x0_init_hardware -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xdddb6f13 mt76x0_chip_onoff -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xdf733ae5 mt76x0_register_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0094ccec mt76x02_rx_poll_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x028342c2 mt76x02_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x4198d0d6 mt7663_usb_sdio_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x4967c931 mt7663_usb_sdio_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0xe899cf93 mt7663_usb_sdio_tx_status_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0xf6f73287 mt7663_usb_sdio_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x33c90b65 mt76x0_init_hardware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x6fd25c4c mt76x0_mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x9ab50b24 mt76x0_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x9c03ea78 mt76x0_chip_onoff +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xa163c531 mt76x0_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xe354a34d mt76x0_phy_calibrate EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0462ce68 mt76x02_add_rate_power_offset -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x08282b5c mt76x02_add_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0ab056ea mt76x02_ext_pa_enabled -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0cb5a443 mt76x02_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x072d9e93 mt76x02_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x08f3eb20 mt76x02_eeprom_copy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0af1ca47 mt76x02_set_ethtool_fwver +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0cb97cee mt76x02_mac_cc_reset EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0d4023ec mt76x02_get_max_rate_power -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x136f1360 mt76x02_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x170b1bf5 mt76x02_dma_disable -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x297fc69f mt76x02_init_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2d06c1b0 mt76x02_dma_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2e1704b5 mt76x02_mcu_msg_send -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2e3a3754 mt76x02_set_coverage_class -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3164b776 mt76x02_init_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0eb43766 mt76x02_sta_rate_tbl_update +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1553008f mt76x02_ext_pa_enabled +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1618eb25 mt76x02_phy_set_txdac +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1bf14e06 mt76x02_mcu_msg_send +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1fb2d6a3 mt76x02_mac_write_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x250c821b mt76x02_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2c62ca9e mt76x02_rx_poll_complete EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x35d2834d mt76x02_limit_rate_power -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x36013b87 mt76x02_eeprom_parse_hw_cap -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x37fab2fd mt76x02_dfs_init_params -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x38509f30 mt76x02_mcu_function_select -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3b0c7797 mt76x02_update_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3da8dcee mt76x02e_init_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3eb26d41 mt76x02_get_lna_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x43e1655f mt76x02_mcu_parse_response -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x491bfa9e mt76x02_mac_shared_key_setup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4ac9efdf mt76x02_mac_wcid_setup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4d992381 mt76x02_phy_set_bw +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x37e84b40 mt76x02_mac_set_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3820a57f mt76x02e_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4225eda6 mt76x02_phy_set_rxpath +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4531fb92 mt76x02_eeprom_parse_hw_cap +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4be64b29 mt76x02_mac_shared_key_setup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x54835ddc mt76x02_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x55b6c8c0 mt76x02_phy_adjust_vga_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x56b7ed3d mt76x02_tx_status_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5784dc23 mt76x02_init_debugfs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x59d6623e mt76x02_update_beacon_iter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5baa6d77 mt76x02_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5bc70569 mt76x02_mcu_parse_response EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5bd84fd5 mt76x02_rates -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5c694eeb mt76x02_update_beacon_iter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5effe175 mt76x02_phy_set_rxpath -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6641da02 mt76x02_phy_set_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x67393e59 mt76x02_resync_beacon_timer -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6a891ee6 mt76x02_mcu_set_radio_state -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6c2973f8 mt76x02_mac_start -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6d25aeef mt76x02_remove_hdr_pad -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6d35598b mt76x02_phy_dfs_adjust_agc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x70d1e848 mt76x02_get_rx_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7455e74e mt76x02_mac_reset_counters -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x76f435fe mt76x02_remove_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x79166016 mt76x02_init_debugfs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7abef7fb mt76x02_init_agc_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x80661d1e mt76x02_mac_cc_reset -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x80b3d98c mt76x02_mcu_cleanup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8537c4db mt76x02_phy_set_txdac -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x876127c0 mt76x02_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x88eafb36 mt76x02_tx_prepare_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x89a2b992 mt76x02_mac_write_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8b8515ec mt76x02_set_ethtool_fwver +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5c3404ac mt76x02_mcu_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x65159624 mt76x02_set_coverage_class +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6e17a13d mt76x02_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6fb1e78c mt76x02_get_lna_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x77beee6d mt76x02_dfs_init_params +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7ed86238 mt76x02_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x80644bf6 mt76x02_phy_set_bw +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x811f345a mt76x02_mcu_set_radio_state +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x821baf88 mt76x02_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x82fc33a0 mt76x02_queue_rx_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8ad7feec mt76x02_set_tx_ackto +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x919736ac mt76x02_mac_start EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x91d5b9ee mt76x02_irq_handler -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x968f90b0 mt76x02_sta_ps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x99a921ad mt76x02_ampdu_action -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9a3deb6c mt76x02_tx_status_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9e54f8d2 mt76x02_configure_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9f42c44e mt76x02_sta_rate_tbl_update -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xad2e2a47 mt76x02_get_efuse_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb197579b mt76x02_edcca_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb8ff32c9 mt76x02_queue_rx_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xbc4a3c12 mt76x02_tx_set_txpwr_auto -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc289b2d5 mt76x02_mcu_calibrate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc78d4f8b mt76x02_eeprom_copy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xcd912a48 mt76x02_mac_setaddr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd47faa70 mt76x02_phy_adjust_vga_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd8434ff1 mt76x02_sw_scan_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd8851f08 mt76x02_phy_set_band -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd92ced35 mt76x02_mac_set_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd9bc8d34 mt76x02_reconfig_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe0ecc465 mt76x02_set_rts_threshold -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe5ae89d0 mt76x02_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe78fcd39 mt76x02_set_tx_ackto -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xed74e30b mt76x02_config_mac_addr_list -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xede32610 mt76x02_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf14a6349 mt76x02_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf19703c1 mt76x02_enqueue_buffered_bc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x0c5a35fe mt76x02u_mcu_fw_send_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x235078a3 mt76x02u_mcu_fw_reset -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x2986cb86 mt76x02u_mac_start -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x4925a241 mt76x02u_init_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xa0740958 mt76x02u_exit_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xd538b106 mt76x02u_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xdafa0fb0 mt76x02u_init_mcu -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xef981f99 mt76x02u_tx_prepare_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x0fba3b53 mt76x2_phy_tssi_compensate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x0fcc8ee5 mt76x2_get_temp_comp -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x1a2912a0 mt76x2_init_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x20378a0b mt76x2_phy_update_channel_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x342cb5d2 mt76x2_mac_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x3941d9cf mt76x2_mcu_load_cr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x3ad2f196 mt76x2_reset_wlan -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x3e331e2d mt76x2_mcu_set_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x6ae4fbfd mt76_write_mac_initvals -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x883c88d1 mt76x2_read_rx_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x8a76b36e mt76x2_mcu_tssi_comp -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x8dc018c3 mt76x2_configure_tx_delay -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xb2276d72 mt76x2_apply_gain_adj -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xc9004121 mt76x2_phy_set_txpower_regs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xd09b4de3 mt76x2_eeprom_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xf09925e8 mt76x2_get_power_info -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xf93beb04 mt76x2_phy_set_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xf968293e mt76x2_get_rate_power -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xfb697f1f mt76x2_mcu_init_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x2572fdce wilc_netdev_cleanup -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x4b8a1f5c host_wakeup_notify -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x9539ea05 chip_wakeup -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xad89e2e2 chip_allow_sleep -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xd28b3e17 wilc_cfg80211_init -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xecbd513c host_sleep_notify -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xfd71bd09 wilc_handle_isr -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x1496304c qtnf_trans_handle_rx_ctl_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x2c1b3ce0 qtnf_wake_all_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9425acc0 mt76x02_mac_wcid_setup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x94fa978e mt76x02_phy_set_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x970b8941 mt76x02_update_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x98a41725 mt76x02_init_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9b079e81 mt76x02_phy_set_band +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9db9a4d5 mt76x02_edcca_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9de07f2d mt76x02_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa4e77fd3 mt76x02_sta_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa7b52efa mt76x02_mac_reset_counters +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xad1c67d0 mt76x02_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xadb3c3a2 mt76x02_mcu_calibrate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb15b50de mt76x02_reconfig_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb3d925d9 mt76x02_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb6c593ec mt76x02_dma_disable +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb791044c mt76x02_dma_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc373fb11 mt76x02_config_mac_addr_list +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc846670f mt76x02_enqueue_buffered_bc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc9d627b7 mt76x02_remove_hdr_pad +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd0ce2c69 mt76x02_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd43e8dad mt76x02_phy_dfs_adjust_agc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd86b7e50 mt76x02_get_efuse_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd9fbd956 mt76x02_tx_set_txpwr_auto +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xdfafd2c2 mt76x02_init_agc_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe0d4b076 mt76x02_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe150e506 mt76x02_mac_setaddr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe5713cd2 mt76x02_get_rx_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe9ca7df8 mt76x02_resync_beacon_timer +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf70e8594 mt76x02_mcu_function_select +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xfa84ca00 mt76x02_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xfa88ba78 mt76x02_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xfcde130d mt76x02_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x2664c52a mt76x02u_mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x583a1f57 mt76x02u_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x618adc7a mt76x02u_exit_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x70c3e6a3 mt76x02u_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x7f24db4b mt76x02u_mcu_fw_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x9cd2f566 mt76x02u_mcu_fw_send_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xc8b3ef7a mt76x02u_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xde1a5f0b mt76x02u_init_mcu +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x06f122be mt76x2_reset_wlan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x177f05e3 mt76x2_init_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x20441a46 mt76x2_mcu_set_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x2fbcb999 mt76x2_phy_set_txpower_regs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x30c8df15 mt76x2_phy_update_channel_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x452e84db mt76x2_phy_tssi_compensate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x4e5e9471 mt76x2_get_temp_comp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x52055ef6 mt76x2_configure_tx_delay +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x58bc331b mt76x2_mcu_load_cr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x6dab65a0 mt76x2_get_rate_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x9333f254 mt76_write_mac_initvals +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x9e7281fe mt76x2_eeprom_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xa06db919 mt76x2_get_power_info +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xad0a7418 mt76x2_read_rx_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xc5d69295 mt76x2_mcu_tssi_comp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xca56df82 mt76x2_mcu_init_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xcb9516ba mt76x2_apply_gain_adj +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xd03a9c36 mt76x2_mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xd430f210 mt76x2_phy_set_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x0329d274 host_wakeup_notify +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x1d97fded wilc_cfg80211_init +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x63dd09ba wilc_handle_isr +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x6e71fbab wilc_netdev_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x941c6c13 chip_allow_sleep +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xd740aaf1 host_sleep_notify +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xf8561a03 chip_wakeup +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x2f1d1643 qtnf_wake_all_queues EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x31fab83c qtnf_chipid_to_string -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x4b68385d qtnf_core_detach -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x94e75f49 qtnf_core_attach -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x96e4044c qtnf_get_debugfs_dir -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xa4c1d43a qtnf_classify_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x0051748b rt2800_disable_wpdma -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x0084a60e rt2800_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x08674217 rt2800_load_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x0bbc5b63 rt2800_get_txwi_rxwi_size -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x0fd5776e rt2800_get_tsf -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x13b9cbea rt2800_disable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x14b08914 rt2800_process_rxwi -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x163510d8 rt2800_txdone_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x1a741593 rt2800_config_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x1e225d2d rt2800_wait_csr_ready -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x2536cea6 rt2800_enable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x269320b7 rt2800_mcu_request -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x29911268 rt2800_vco_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x2c91b7ae rt2800_probe_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x3bd0ac49 rt2800_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x3c2506b4 rt2800_get_key_seq -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x43045100 rt2800_config_ant -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x46041074 rt2800_wait_wpdma_ready -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x4ce7b806 rt2800_config_pairwise_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x4fa35444 rt2800_watchdog -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x5356b79d rt2800_link_tuner -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x54405418 rt2800_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x60386599 rt2800_config_erp -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6b285321 rt2800_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6eda5b7f rt2800_ampdu_action -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x71375de8 rt2800_write_tx_data -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x791b91fe rt2800_txdone_nostatus -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x995a8f99 rt2800_check_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x9d716f36 rt2800_pre_reset_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa1ba86f7 rt2800_reset_tuner -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb39182d3 rt2800_set_rts_threshold -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb3d40eb8 rt2800_config_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb58ed3af rt2800_efuse_detect -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb5986116 rt2800_txstatus_pending -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb8ddb2bf rt2800_get_survey -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xca303c8e rt2800_write_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd739e0fa rt2800_gain_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xdf6336c3 rt2800_config_shared_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe1ffc92d rt2800_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xeb452f94 rt2800_link_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xeca685c8 rt2800_rfkill_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf02cdf30 rt2800_read_eeprom_efuse -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf5c69690 rt2800_clear_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xfdc83cb5 rt2800_txstatus_timeout -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x184b3678 rt2800mmio_probe_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x26391c4a rt2800mmio_toggle_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x2b2ae5d2 rt2800mmio_get_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x50b0a311 qtnf_core_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xa6fe1aa9 qtnf_trans_handle_rx_ctl_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xdd929d55 qtnf_core_attach +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xe492b25e qtnf_classify_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xf217b429 qtnf_get_debugfs_dir +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x24eac617 rt2800_mcu_request +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x253660db rt2800_config_ant +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x29d0bb76 rt2800_wait_csr_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x2a6dc859 rt2800_link_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x32c3b060 rt2800_get_key_seq +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x37ec5ee9 rt2800_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x487fb34a rt2800_txdone_nostatus +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x4c55d26e rt2800_pre_reset_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x4e76693f rt2800_process_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x54d34309 rt2800_config_pairwise_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x56b78f3b rt2800_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x5c273c7b rt2800_check_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x5ec10251 rt2800_link_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6180c2ab rt2800_gain_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x66b4e6d9 rt2800_efuse_detect +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x693555b0 rt2800_vco_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6a14d1b5 rt2800_wait_wpdma_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6d2e68df rt2800_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x77232bd3 rt2800_write_tx_data +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x77a13436 rt2800_clear_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7924d87e rt2800_txdone_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7b090549 rt2800_get_tsf +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7da497e2 rt2800_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x8bb6122d rt2800_disable_wpdma +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x8e580440 rt2800_config_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x914265b5 rt2800_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x93dfe2a0 rt2800_txstatus_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x96ba305a rt2800_config_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x97f68abd rt2800_read_eeprom_efuse +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x98535416 rt2800_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x9a348f48 rt2800_write_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa4470976 rt2800_reset_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa7313880 rt2800_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xaf67b13c rt2800_get_txwi_rxwi_size +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc58177e4 rt2800_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc697df6e rt2800_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc9f3fbbb rt2800_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xcb9b07da rt2800_config_erp +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd3a0988c rt2800_txstatus_timeout +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xdbe51fb8 rt2800_probe_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xdc871abf rt2800_config_shared_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe50e77ec rt2800_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe950ef10 rt2800_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf6059721 rt2800_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x086a6493 rt2800mmio_get_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x11d5e029 rt2800mmio_init_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x2eacfafa 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 0x38c43863 rt2800mmio_get_entry_state +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x3607dc64 rt2800mmio_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x39e5e1e3 rt2800mmio_get_entry_state +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x3c78d3d2 rt2800mmio_write_tx_desc EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x3d741c87 rt2800mmio_pretbtt_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x3e13880f rt2800mmio_init_queues EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5028bbb2 rt2800mmio_tbtt_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5048e289 rt2800mmio_init_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x51e739cc rt2800mmio_kick_queue EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5fa4db64 rt2800mmio_interrupt -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x7f6520e2 rt2800mmio_write_tx_desc -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x88bb1a5b rt2800mmio_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x8a71424e rt2800mmio_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x6233c28a rt2800mmio_toggle_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x711f5d22 rt2800mmio_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x82a44278 rt2800mmio_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x90513b6b rt2800mmio_queue_init +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x91ecfbfb rt2800mmio_enable_radio EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x97e3c029 rt2800mmio_autowake_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x9c9d8074 rt2800mmio_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x9935e5b3 rt2800mmio_start_queue EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x9f3c8921 rt2800mmio_txstatus_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xb8cda7d8 rt2800mmio_fill_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xbeee60fa rt2800mmio_stop_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xbf18ab0c rt2800mmio_queue_init -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xc32d2fbe rt2800mmio_get_dma_done -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xdf8ed56a rt2800mmio_kick_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xfa5c802a rt2800mmio_clear_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x10df25b7 rt2x00mac_sw_scan_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x12b6da42 rt2x00mac_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x18af85b1 rt2x00queue_for_each_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x23630a18 rt2x00lib_dmadone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x2a34c3be rt2x00mac_start -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3fbdd0e0 rt2x00queue_get_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x450e435c rt2x00queue_flush_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4c0adbf9 rt2x00mac_configure_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x513ee5fe rt2x00queue_pause_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x51bbcb2a rt2x00lib_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x562c7ce8 rt2x00mac_get_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x58ba30a7 rt2x00mac_flush -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x59b1d957 rt2x00lib_probe_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x5f6fda04 rt2x00queue_unpause_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x625a0338 rt2x00lib_txdone_nomatch -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x6a24ad64 rt2x00queue_stop_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x6c64bec1 rt2x00mac_reconfig_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x6d6c3b5d rt2x00mac_add_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x700ff4c5 rt2x00mac_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7222c215 rt2x00queue_map_txskb -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x74483c64 rt2x00queue_stop_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7604b6b7 rt2x00mac_get_ringparam -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x761bbf76 rt2x00mac_bss_info_changed -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x78224a68 rt2x00lib_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x811ef604 rt2x00lib_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x89170030 rt2x00lib_pretbtt -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x8a001eb8 rt2x00mac_set_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x8a23c943 rt2x00lib_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x9639f400 rt2x00lib_set_mac_address -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x9864227d rt2x00mac_get_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x9b285698 rt2x00lib_txdone_noinfo -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x9d1236c0 rt2x00queue_start_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x9d78584b rt2x00lib_dmastart -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x9e7e5880 rt2x00lib_beacondone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa5046d0e rt2x00queue_start_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa5d5feb3 rt2x00mac_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xab9130c4 rt2x00mac_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb80cbf89 rt2x00lib_get_bssidx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb860ee09 rt2x00queue_unmap_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb98bd7d8 rt2x00mac_tx_frames_pending -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xbe685fb8 rt2x00mac_remove_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc57c8911 rt2x00mac_sw_scan_start -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xcc631f88 rt2x00mac_set_tim -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd091c196 rt2x00mac_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd37da698 rt2x00queue_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd6bddfab rt2x00lib_remove_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd7d84e58 rt2x00mac_rfkill_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x073c9bd1 rt2x00mmio_uninitialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x850e9fe2 rt2x00mmio_initialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x9da23818 rt2x00mmio_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xa04d0984 rt2x00mmio_regbusy_read -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xa1ee6d90 rt2x00mmio_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x03f073bb rt2x00pci_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x7747b3d3 rt2x00pci_pm_ops -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0xe588e7c5 rt2x00pci_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x1085d391 rt2x00usb_vendor_request -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x11a7273b rt2x00usb_register_read_async -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x1e0e6322 rt2x00usb_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x4c95e8fd rt2x00usb_kick_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x58bfb132 rt2x00usb_regbusy_read -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x61b0b714 rt2x00usb_watchdog -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x95a4e05f rt2x00usb_initialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x9bfdccb9 rt2x00usb_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x9c3443fd rt2x00usb_clear_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x9fbd3b84 rt2x00usb_vendor_request_buff -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xb5b6d7c2 rt2x00usb_disconnect -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xbda6f548 rt2x00usb_uninitialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xce4368b0 rt2x00usb_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xe2013be5 rt2x00usb_vendor_req_buff_lock -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xfa07fef2 rt2x00usb_disable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xfc3f6da9 rt2x00usb_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x684bcf41 rtl92c_set_p2p_ps_offload_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7808eb60 dm_savepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc038e12c dm_writepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf50ee28c dm_restorepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x1fd478f0 rtl8723_enable_fw_download -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x2e43063b rtl8723_phy_query_bb_reg -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x3d43bd2a rtl8723_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xb3c11189 rt2800mmio_get_dma_done +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xbf585764 rt2800mmio_probe_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xe55549a3 rt2800mmio_fill_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x0c27f39c rt2x00lib_dmastart +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x15935823 rt2x00lib_probe_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x16254168 rt2x00mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x178e291e rt2x00queue_start_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1c090f87 rt2x00lib_txdone_noinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1c87557d rt2x00mac_reconfig_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x22dc6150 rt2x00lib_dmadone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3314c930 rt2x00mac_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x35217db5 rt2x00mac_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3616adbd rt2x00queue_map_txskb +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x388016c8 rt2x00mac_get_ringparam +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x393f85ed rt2x00mac_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x39eb73d6 rt2x00lib_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x45b63df2 rt2x00lib_get_bssidx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x45d34dc8 rt2x00mac_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x46685be4 rt2x00queue_unpause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4acb5c04 rt2x00lib_txdone_nomatch +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x56002c1d rt2x00mac_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x5917735a rt2x00mac_get_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x596bd09c rt2x00mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x5c8867d0 rt2x00mac_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x5fb1aabe rt2x00queue_pause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x669d7eed rt2x00lib_pretbtt +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x6c9153eb rt2x00mac_set_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x712c016a rt2x00lib_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7424ab82 rt2x00lib_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x86ff9d46 rt2x00queue_flush_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x8977787c rt2x00mac_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x9104ce06 rt2x00queue_stop_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x91570bf8 rt2x00mac_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x9d28367d rt2x00lib_remove_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa2b40f10 rt2x00mac_tx_frames_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa48d18a4 rt2x00queue_for_each_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb02ea453 rt2x00queue_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb06c4126 rt2x00mac_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb48a948d rt2x00mac_sw_scan_start +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb724d6a5 rt2x00lib_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xbe396b69 rt2x00queue_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc73883bf rt2x00mac_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe251ea84 rt2x00mac_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe6f0416e rt2x00queue_unmap_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe70ca7b9 rt2x00queue_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xee3822c8 rt2x00queue_get_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xeff3e05c rt2x00mac_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf08e277f rt2x00lib_beacondone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf2e8b7bc rt2x00lib_set_mac_address +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf60753d8 rt2x00mac_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x1ae7b8cc rt2x00mmio_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x44406c03 rt2x00mmio_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x4cc0bff9 rt2x00mmio_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x82e8867c rt2x00mmio_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xe838bb79 rt2x00mmio_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x9443afe7 rt2x00pci_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0xaa961187 rt2x00pci_pm_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0xf5aad0a0 rt2x00pci_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x0c0d562d rt2x00usb_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x18cca1f6 rt2x00usb_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x1bcc250e rt2x00usb_vendor_request_buff +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x2874ca04 rt2x00usb_disconnect +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x2b7648cb rt2x00usb_register_read_async +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x34c7774f rt2x00usb_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x44541e46 rt2x00usb_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x97a8044f rt2x00usb_vendor_req_buff_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xabdeb1d3 rt2x00usb_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xbbe38ca5 rt2x00usb_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xc3793839 rt2x00usb_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xc8fa114c rt2x00usb_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xde827abc rt2x00usb_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xdfa04f6e rt2x00usb_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xe65ea9fd rt2x00usb_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xeb95ada6 rt2x00usb_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x78f3bbbe dm_restorepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x839db1e9 dm_savepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x91504ad2 rtl92c_set_p2p_ps_offload_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa1c3231c dm_writepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x011f3e62 rtl8723_phy_reload_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x1ba83bf2 rtl8723_write_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x1bae356a rtl8723_phy_rf_serial_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x1f4b5cb1 rtl8723_save_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x2af67518 rtl8723_phy_mac_setting_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x32b76a98 rtl8723be_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x32e103b1 rtl8723_fw_free_to_go +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x36251f4b 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 0x490a210c rtl8723_phy_path_a_standby -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x4a391fa1 rtl8723_save_adda_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x5a278170 rtl8723_phy_rf_serial_read -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x5b49dc56 rtl8723_phy_set_bb_reg -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x71efb376 rtl8723_phy_reload_adda_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x727ca4cf rtl8723_phy_save_mac_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x78ffe1d6 rtl8723_phy_reload_mac_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x86a8190c rtl8723_dm_init_edca_turbo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x40aa917e rtl8723_phy_save_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x4d4ad1aa rtl8723_phy_reload_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x5189458b rtl8723_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x55488fe1 rtl8723_phy_path_adda_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x62a3bebf rtl8723_download_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x63ee89e8 rtl8723_phy_pi_mode_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x715f6f2d rtl8723_dm_init_dynamic_bb_powersaving +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x73f28847 rtl8723_dm_init_edca_turbo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x77321641 rtl8723_phy_path_a_fill_iqk_matrix +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x806dd13b rtl8723ae_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 0xa36dc0eb rtl8723_phy_path_adda_on -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa4ca78aa rtl8723_download_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb140b80f rtl8723_phy_rf_serial_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb3d4d43b rtl8723be_firmware_selfreset -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb403ea34 rtl8723_phy_mac_setting_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xc5fe397a rtl8723_cmd_send_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xc9a9f8d2 rtl8723_dm_init_dynamic_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xdaaf208b rtl8723_dm_init_dynamic_bb_powersaving -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe31f2240 rtl8723_write_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe795a1bc rtl8723_phy_path_a_fill_iqk_matrix -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xef6091ca rtl8723_phy_init_bb_rf_reg_def -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf0d0739a rtl8723_phy_pi_mode_switch -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf7342bd9 rtl8723_fw_free_to_go -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xfda834aa rtl8723ae_firmware_selfreset -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x04d62dea rtl_deinit_deferred_work -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x06feda34 rtl_fw_block_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x075358ca rtl_lps_leave -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0c50c7ca rtl_ops -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0e1a811c rtl_init_core -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0f9a749b rtl_beacon_statistic +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa34f5bd6 rtl8723_phy_rf_serial_read +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb1b89360 rtl8723_cmd_send_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb1d45abd rtl8723_dm_init_dynamic_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb3accd3d rtl8723_enable_fw_download +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb6eb230e rtl8723_phy_init_bb_rf_reg_def +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xc06204f4 rtl8723_phy_set_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xc1d9df06 rtl8723_phy_query_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0152bc83 rtl_tx_ackqueue +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x018c9be8 rtl_tx_report_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x037efc44 rtl_get_hwinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1dfb16b8 rtl_get_hal_edca_param +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x203b7740 rtl_p2p_info +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2078a688 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 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 0x38db3094 rtl_tx_mgmt_proc -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x48d201ae rtl_lps_enter -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4b73828b rtl_init_rx_config +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3036fbfe rtl_init_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3dc32ba4 rtl_deinit_rfkill +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x40a5dac6 rtl_fw_page_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4272fda0 rtl_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4277771f rtl_lps_enter +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4bc59d74 rtl_beacon_statistic EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4e94cd48 rtl_global_var -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x584f0fbd rtl_tx_report_handler -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5d207d55 rtl_deinit_core -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6a608e1e rtl_fw_page_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5ccc351e 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 0x7662021b rtl_swlps_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x81cb817f rtl_get_hal_edca_param -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8c353fc6 rtl_ips_nic_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7219c28f rtl_tx_mgmt_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x72cf0f9a rtl_ips_nic_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7540611b rtl_is_special_data +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x87be7cf2 rtl_fw_block_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x977f0308 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 0x9fbbcefd rtl_is_special_data -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9fe7d165 rtl_tx_ackqueue -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa479608b rtl_set_tx_report -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa4bd2e12 rtl_recognize_peer -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb669b85c read_efuse_byte -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc1285346 rtl_action_proc -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc712d16c rtl_p2p_info -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd05948c6 rtl_deinit_rfkill -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd117ad07 rtl_get_hwinfo -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf81404fc rtl_efuse_ops_init -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x067eeb9d rsi_read_pkt +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa133b69e rtl_action_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb1102a7e rtl_deinit_deferred_work +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb94ab64b rtl_deinit_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc67a8ae6 rtl_lps_leave +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xdf83250d rtl_swlps_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xef52790f read_efuse_byte +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf5434566 rtl_efuse_ops_init EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x0f5c3ce9 rsi_zone_enabled -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x16e39906 rsi_hal_device_init -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x1f371eb8 rsi_mac80211_detach -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x38209f4e rsi_91x_init -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xba74c3f4 rsi_91x_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x3dd76143 rsi_hal_device_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x561cdc87 rsi_read_pkt +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x81c9542b rsi_91x_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x8c91b912 rsi_mac80211_detach EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xcd173710 rsi_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xcca2cf9c cw1200_can_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xcf657aad cw1200_core_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xd21655a4 cw1200_core_release -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xf87ffb4c cw1200_irq_handler -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x131b156d wl1251_alloc_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x3fbde004 wl1251_free_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xa2d178ca wl1251_init_ieee80211 +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xd6605b3d rsi_91x_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x03b2568f cw1200_core_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xacb6ba2c cw1200_can_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xdb0610a2 cw1200_irq_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xe4f93a03 cw1200_core_release +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x27b3eea2 wl1251_init_ieee80211 +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x5bef4a71 wl1251_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xb396998d wl1251_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x04d08fc9 wl1271_acx_sleep_auth +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x053ecdc2 wlcore_boot_upload_nvs EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x06d3b27e wl12xx_debug_level -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x11884b63 wlcore_event_inactive_sta -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x192577aa wlcore_event_fw_logger +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0c80afb1 wl1271_acx_pm_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1284f2be wlcore_set_scan_chan_params +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x167cedef wl12xx_cmd_build_probe_req +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1899bd6c wlcore_event_rssi_trigger +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1dc84af5 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 0x230d1382 wl1271_acx_sleep_auth -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2a79bd9c wlcore_cmd_wait_for_event_or_timeout -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x302f5b5c wlcore_scan_sched_scan_results -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x31e03dcc wlcore_set_partition -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x34be5b02 wlcore_event_sched_scan_completed -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x40023425 wlcore_set_scan_chan_params -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x421c2b33 wlcore_scan_sched_scan_ssid_list -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x486f8fed wlcore_event_ba_rx_constraint -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x51cfc7cd wlcore_boot_upload_nvs -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x53ebafbb wlcore_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x65a0ff97 wlcore_boot_upload_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x679f3c2c wl1271_tx_min_rate_get -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x68c0f5ae wlcore_alloc_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6f45179c wl1271_cmd_data_path -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x737a130b wlcore_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x74e67010 wlcore_enable_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7e510ed1 wl1271_cmd_send -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x80439a6e wlcore_synchronize_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x23ce104d wlcore_boot_upload_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2d159557 wlcore_event_beacon_loss +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x37260460 wlcore_event_dummy_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3f023215 wlcore_boot_run_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x52abddcf wlcore_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5c540d7c wl1271_cmd_data_path +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5c939413 wlcore_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x62576bae wl1271_tx_min_rate_get +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6a947f25 wl1271_tx_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x70c0187c wlcore_event_inactive_sta +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x772ce6c0 wl12xx_acx_mem_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7ade0ee7 wlcore_translate_addr EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x85498cd1 wl1271_format_buffer -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x88091c26 wlcore_event_beacon_loss -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x95b4956c wl1271_cmd_test -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x967cc17f wl1271_tx_flush -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x982281f5 wlcore_event_channel_switch -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9fa44522 wlcore_boot_run_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa2fc3af1 wl12xx_acx_mem_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa9b25a5b wlcore_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb06f118d wl1271_debugfs_update_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb2820159 wlcore_free_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb328432f wlcore_event_max_tx_failure -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc4aaf30a wlcore_disable_interrupts_nosync -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc781b973 wlcore_cmd_generic_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xcb7c4f97 wl1271_cmd_configure -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xccbf21bb wlcore_translate_addr -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd1efd7f4 wl1271_acx_pm_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd4bba0bb wl12xx_cmd_build_probe_req -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd6e4e19c wl1271_acx_init_mem_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xda96a37b wl1271_acx_set_ht_capabilities -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe5cf7bc3 wlcore_event_rssi_trigger -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xeee7fdb9 wlcore_event_soft_gemini_sense -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf155e967 wlcore_event_roc_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf2118e22 wlcore_event_dummy_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf909792c wlcore_disable_interrupts -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x07d84dee nfcmrvl_nci_unregister_dev -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x3dd96275 nfcmrvl_parse_dt -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x7140ee10 nfcmrvl_nci_recv_frame -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x8ef92456 nfcmrvl_nci_register_dev -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x21ec50d7 pn53x_common_clean -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x67d9fc05 pn533_rx_frame_is_cmd_response -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x6b4c63f2 pn533_finalize_setup -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x8912c146 pn53x_register_nfc -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xb09a00dd pn53x_unregister_nfc -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xbaf4813e pn532_i2c_nfc_alloc -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xc92b7acd pn53x_common_init +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8975dac8 wlcore_event_channel_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8a2b57eb wlcore_event_sched_scan_completed +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x91cd1977 wlcore_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x961032dc wlcore_set_partition +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x964bc61a wlcore_cmd_wait_for_event_or_timeout +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x96f4e0ba wlcore_enable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x97c17099 wlcore_scan_sched_scan_ssid_list +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9a01e845 wl1271_cmd_configure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9f7c46dc wlcore_event_fw_logger +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa289475d wlcore_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xadf196ee wlcore_disable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb04d5d28 wl1271_acx_init_mem_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb4b11cfb wlcore_event_soft_gemini_sense +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb4e3b41b wlcore_event_roc_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb5935cfe wlcore_cmd_generic_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xba0bfbaf wlcore_event_ba_rx_constraint +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xbad6bc8b wl1271_cmd_test +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd38048ce wlcore_event_max_tx_failure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xde421fe4 wlcore_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xdef25246 wlcore_disable_interrupts_nosync +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe60b5c30 wl1271_acx_set_ht_capabilities +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe862559d wlcore_scan_sched_scan_results +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xeca17d9c wl1271_cmd_send +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xff1691c7 wlcore_synchronize_interrupts +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x27b9986f nfcmrvl_nci_register_dev +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x4ac99359 nfcmrvl_parse_dt +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x80447622 nfcmrvl_nci_unregister_dev +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xf9e1fd8b nfcmrvl_nci_recv_frame +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x72b8102a pn53x_common_clean +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x97e5a16a pn53x_unregister_nfc +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xa731cae3 pn53x_register_nfc +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xc6a66611 pn53x_common_init EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xdecfd339 pn533_rx_frame_is_ack -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x0c926356 st_nci_probe -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x41ffb142 st_nci_discover_se -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x4df77b79 st_nci_remove -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x59db9358 st_nci_hci_load_session -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x5bb23401 st_nci_hci_event_received -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x79b38bb4 st_nci_enable_se -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xdf9a91e0 st_nci_disable_se -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xf84ccdf1 st_nci_hci_cmd_received -EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x4b68d5dd st95hf_spi_recv_response -EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x6ebf4881 st95hf_spi_send -EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0xd32ea72a st95hf_spi_recv_echo_res +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xe66ba8a8 pn533_finalize_setup +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xeccbca5b pn533_rx_frame_is_cmd_response +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xf7e6dba2 pn532_i2c_nfc_alloc +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x123a8309 st_nci_remove +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x4c808c6b st_nci_probe +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x6a0e43ec st_nci_hci_event_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xbb718299 st_nci_disable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xc91fce47 st_nci_discover_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xca05d2fe st_nci_hci_load_session +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xcc9bec76 st_nci_hci_cmd_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xcdb27a50 st_nci_enable_se +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x7a6e784e st95hf_spi_send +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0xa3a595db st95hf_spi_recv_response +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0xe7bfa2ba st95hf_spi_recv_echo_res EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x0862001f ntb_transport_tx_free_entry EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x30934216 ntb_transport_max_size EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x32537aca ntb_transport_link_query EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x3d54dbfc ntb_transport_tx_enqueue EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x436098aa ntb_transport_link_down -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x64567139 ntb_transport_register_client -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x7350936a ntb_transport_unregister_client +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x5e291142 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 0xbc5c277f ntb_transport_create_queue EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc270dc24 ntb_transport_free_queue EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc37d9036 ntb_transport_rx_remove EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xd40e7a02 ntb_transport_rx_enqueue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xdbebcdf5 ntb_transport_unregister_client +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xe92bd050 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 0x68940ec6 virtio_pmem_host_ack -EXPORT_SYMBOL_GPL drivers/nvdimm/nd_virtio 0xcc295712 async_pmem_flush -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x08bbb785 nvme_uninit_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x08c6ec1d nvme_complete_rq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0b68ebd3 nvme_shutdown_ctrl +EXPORT_SYMBOL_GPL drivers/nvdimm/nd_virtio 0x90c1bb72 async_pmem_flush +EXPORT_SYMBOL_GPL drivers/nvdimm/nd_virtio 0xaaa39429 virtio_pmem_host_ack +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0036994e nvme_cancel_tagset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x051d8b66 nvme_sync_queues EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x11abc494 __SCK__tp_func_nvme_sq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x17358258 __traceiter_nvme_sq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1e2af1a2 nvme_complete_async_event -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1e662a9f nvme_change_ctrl_state -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x234dbb31 nvme_disable_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x23e260e8 nvme_try_sched_reset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2645a594 nvme_fail_nonready_command -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x311cc8ad nvme_set_queue_count -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3c3c8fba __nvme_check_ready -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3c5cace3 nvme_stop_keep_alive -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3e925e3f nvme_setup_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x4920cb42 nvme_init_ctrl_finish +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x14293a6d __nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x17143280 nvme_cancel_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x17c77780 nvme_complete_rq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x19f27da7 nvme_try_sched_reset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x23496bc4 nvme_complete_async_event +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3b4aa9aa nvme_sync_io_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3cbf019e nvme_cancel_admin_tagset EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x49224181 nvme_reset_wq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x51ccb4d7 nvme_cleanup_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x57f6f336 nvme_wait_reset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x64ada462 nvme_start_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x49379d2a nvme_set_queue_count +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x4d0e4e32 nvme_get_features +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x55b2057d nvme_fail_nonready_command +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x6167782e nvme_uninit_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x633220c5 nvme_enable_ctrl EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x64b62862 nvme_wq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x65bb26ea nvme_wait_freeze -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x68ae40ee nvme_alloc_request -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x6c102022 nvme_stop_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x65a93a74 nvme_wait_freeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x6ddd45c7 nvme_start_freeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7ebb52e6 nvme_disable_ctrl EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x813cf212 nvme_io_timeout -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x84c4a9ec nvme_sync_io_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x843ab7f9 nvme_alloc_request EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8a9c70ed nvme_sec_submit EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8e7ec2b6 __tracepoint_nvme_sq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x90580cbb nvme_host_path_error -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x93a30449 __nvme_submit_sync_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x97a071c2 nvme_remove_namespaces -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x9815c1d6 nvme_submit_sync_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x9a3711c5 nvme_get_features -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa1d021b7 nvme_enable_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa58847b9 nvme_sync_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb3db5053 nvme_unfreeze -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xbe7d0bfd nvme_cancel_tagset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc0072fc3 nvme_wait_freeze_timeout -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc9b4d611 nvme_init_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xca15503a nvme_cancel_request -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd05f5992 nvme_kill_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd3c9d742 nvme_start_freeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x9dec6a1d nvme_unfreeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x9fe96ea6 nvme_remove_namespaces +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa3167454 nvme_kill_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xaa6f0ca9 nvme_start_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xad6e8d75 nvme_setup_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xaec643bc nvme_stop_keep_alive +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xaf109762 nvme_init_ctrl_finish +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb1fbde88 nvme_cleanup_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xbcc80ff4 __traceiter_nvme_sq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xbf3dc3fb nvme_delete_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc2f487de nvme_reset_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc6f5fcb6 __nvme_check_ready +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc8736fde nvme_stop_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc9c7fa49 nvme_shutdown_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xcb24c327 nvme_wait_reset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xcb4f556f nvme_change_ctrl_state +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd0a20744 nvme_host_path_error 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 0xdae0b5c4 nvme_start_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe1b81e1b nvme_delete_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xecec2133 nvme_stop_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xeeb024f2 nvme_reset_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf01bba6b nvme_set_features -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xfabd337e nvme_cancel_admin_tagset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x2aded774 nvmf_connect_admin_queue -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x4380737c nvmf_connect_io_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd7043a58 nvme_init_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd78e87ac nvme_set_features +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xdbf9ebae nvme_wait_freeze_timeout +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe3708324 nvme_start_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe9fbc336 nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xfcc5741a nvme_stop_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x08eb5c85 nvmf_should_reconnect +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x3a210421 nvmf_reg_write32 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x3a4eac2d nvmf_ip_options_match +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x3eb33739 nvmf_register_transport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x4596b2d5 nvmf_get_address EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x51c659eb nvmf_free_options -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x6a39d50e nvmf_ip_options_match -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x8db583f6 nvmf_reg_read32 -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x9685ebbf nvmf_reg_read64 -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x96e5c4e0 nvmf_unregister_transport -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xb33d8dc0 nvmf_get_address -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xe9b435e3 nvmf_reg_write32 -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xf9d60a8e nvmf_register_transport -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xfc0c89c5 nvmf_should_reconnect +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x5327de0d nvmf_connect_admin_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x5dbcf914 nvmf_unregister_transport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xdecce5a2 nvmf_reg_read32 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xf9e06ced nvmf_reg_read64 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xfd15bab5 nvmf_connect_io_queue EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x0d12e564 nvme_fc_register_remoteport EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 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 0xcda1c4d0 nvme_fc_register_localport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0xe8f0d7f0 nvme_fc_register_localport EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0xfca9dc99 nvme_fc_unregister_remoteport -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x01b5afa2 nvmet_req_uninit -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x1a1592d2 nvmet_req_free_sgls -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x35f25113 nvmet_req_alloc_sgls -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x4e98f4b3 nvmet_sq_init -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x7c0af4e6 nvmet_register_transport -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x8b527bd6 nvmet_sq_destroy -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x8cea45ca nvmet_ctrl_fatal_error -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xa1d1cfd4 nvmet_unregister_transport -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xabcd3c5d nvmet_check_transfer_len -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xb15b336b nvmet_req_complete -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xd5b3c162 nvmet_req_init +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x005c5dc6 nvmet_ctrl_fatal_error +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x0ec281da nvmet_sq_init +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x178fa90a nvmet_register_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x392d2773 nvmet_check_transfer_len +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x3d77b929 nvmet_unregister_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x4c175de2 nvmet_req_free_sgls +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x5816caa5 nvmet_req_alloc_sgls +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xa8e112b8 nvmet_req_complete +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xc8b91f22 nvmet_req_init +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xea8213e0 nvmet_sq_destroy +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xef74cc0e nvmet_req_uninit EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x0b98123d nvmet_fc_rcv_ls_req EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x1048b92a nvmet_fc_rcv_fcp_req +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x27aa1d63 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 0x6523b331 nvmet_fc_register_targetport EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x7fa5302a nvmet_fc_rcv_fcp_abort EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x9ef76d99 nvmet_fc_unregister_targetport -EXPORT_SYMBOL_GPL drivers/pci/controller/pcie-iproc 0x7a6b80e6 iproc_pcie_shutdown -EXPORT_SYMBOL_GPL drivers/pci/switch/switchtec 0xcbe0028d switchtec_class -EXPORT_SYMBOL_GPL drivers/phy/allwinner/phy-sun4i-usb 0x22f025b8 sun4i_usb_phy_set_squelch_detect -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x0cf1f01e tegra186_xusb_padctl_soc -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x14c3f29d tegra_xusb_padctl_set_vbus_override -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x232727fc tegra_xusb_padctl_usb3_set_lfps_detect -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x2e40d6af tegra_xusb_padctl_hsic_set_idle -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x4706dfcb tegra_xusb_padctl_disable_phy_wake -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x49809c37 tegra_xusb_padctl_get -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x5b74a9b1 tegra_xusb_padctl_disable_phy_sleepwalk -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x5e47d42a tegra_xusb_padctl_put -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x61a0500a tegra_xusb_padctl_enable_phy_wake -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x73679c8c tegra210_xusb_padctl_soc -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x743080e9 tegra124_xusb_padctl_soc -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xbd0bb9a4 tegra_phy_xusb_utmi_port_reset -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xc51ba9f7 tegra_xusb_padctl_enable_phy_sleepwalk -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xdec71bc5 tegra194_xusb_padctl_soc -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xe1ee57c7 tegra_xusb_padctl_get_usb3_companion -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xeb10fe67 tegra_xusb_padctl_usb3_save_context -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xff89c833 tegra_xusb_padctl_remote_wake_detected +EXPORT_SYMBOL_GPL drivers/pci/controller/pcie-iproc 0x6f40a8db iproc_pcie_shutdown +EXPORT_SYMBOL_GPL drivers/pci/switch/switchtec 0xddac50c9 switchtec_class +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x1b37e8be hisi_uncore_pmu_enable +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x1efb24f6 hisi_format_sysfs_show +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x1f47d99a hisi_uncore_pmu_stop +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x20036e44 hisi_event_sysfs_show +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x2ac400ac hisi_uncore_pmu_add +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x3ec4fc27 hisi_uncore_pmu_online_cpu +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x51f582e7 hisi_uncore_pmu_start +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x6794a2f4 hisi_cpumask_sysfs_show +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x7138904a hisi_uncore_pmu_set_event_period +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x7b651114 hisi_uncore_pmu_event_init +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x7b918fb9 hisi_uncore_pmu_event_update +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x8759b3e5 hisi_uncore_pmu_disable +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x8bcb8d20 hisi_uncore_pmu_get_event_idx +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xb3d95ff9 hisi_uncore_pmu_identifier_attr_show +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xd941e840 hisi_uncore_pmu_init_irq +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xde79a6ec hisi_uncore_pmu_del +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xe19d5e15 hisi_uncore_pmu_read +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xfb6373d1 hisi_uncore_pmu_offline_cpu +EXPORT_SYMBOL_GPL drivers/phy/allwinner/phy-sun4i-usb 0x8ed4b8be sun4i_usb_phy_set_squelch_detect +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x017b631c tegra_xusb_padctl_get_usb3_companion +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x0adf846e tegra_xusb_padctl_get +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x1bbb0746 tegra_xusb_padctl_enable_phy_sleepwalk +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x3268cb22 tegra_xusb_padctl_hsic_set_idle +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x3d7593cb tegra_xusb_padctl_set_vbus_override +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x4abb4faf tegra_phy_xusb_utmi_port_reset +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x675627bd tegra194_xusb_padctl_soc +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x8e7bd996 tegra_xusb_padctl_remote_wake_detected +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x973ce04a tegra_xusb_padctl_put +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xb560cc66 tegra186_xusb_padctl_soc +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xbcf077e0 tegra_xusb_padctl_usb3_save_context +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xc524b96a tegra_xusb_padctl_disable_phy_wake +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xcaf6a0f4 tegra210_xusb_padctl_soc +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xcda1bc91 tegra124_xusb_padctl_soc +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xe7684db3 tegra_xusb_padctl_usb3_set_lfps_detect +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xf82cb51e tegra_xusb_padctl_enable_phy_wake +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xfbff5ea7 tegra_xusb_padctl_disable_phy_sleepwalk EXPORT_SYMBOL_GPL drivers/phy/ti/phy-omap-usb2 0x00d48f33 omap_usb2_set_comparator -EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0x14788c4c mcp23s08_probe_one -EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0xd150bc3f mcp23x17_regmap -EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0xe12b18d0 mcp23x08_regmap -EXPORT_SYMBOL_GPL drivers/platform/chrome/cros-ec-sensorhub 0x73b958c5 cros_ec_sensorhub_unregister_push_data -EXPORT_SYMBOL_GPL drivers/platform/chrome/cros-ec-sensorhub 0xe0ba591c cros_ec_sensorhub_register_push_data +EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0x1ae3edee mcp23x08_regmap +EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0x2a984901 mcp23x17_regmap +EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0x9d81cfcc mcp23s08_probe_one +EXPORT_SYMBOL_GPL drivers/platform/chrome/cros-ec-sensorhub 0x961d0aa7 cros_ec_sensorhub_unregister_push_data +EXPORT_SYMBOL_GPL drivers/platform/chrome/cros-ec-sensorhub 0xc401981e 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 0x05aea23b ssam_controller_put -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x114bb036 ssam_bus_type -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x155702bc ssh_packet_get -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x2257f396 ssam_controller_statelock -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x23fb27c4 ssam_request_sync_free -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x2514b716 ssam_notifier_register -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x2fb39c9b ssam_device_get_match_data -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x39f770ae ssam_controller_get -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x4ee08f28 ssam_device_type -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x550f120e ssam_request_sync_alloc -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x57cfb35d ssam_controller_event_disable -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x67ecb354 ssam_controller_event_enable -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x6d99faf5 ssh_packet_put -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x776cdce2 ssam_controller_device -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x794a1097 ssam_device_get_match -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x7b1cd860 ssam_client_link -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x95d46c2c ssam_controller_stateunlock -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x9a985210 ssam_client_bind -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x9d06b2db ssam_request_sync_init -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x9d45bacc ssam_request_sync -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xa6be3b58 ssam_device_add -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xa6fcc14c ssam_request_write_data -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xac5f9e8e ssam_get_controller -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xb6ce3bdf __ssam_device_driver_register -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xbec976ac ssam_request_sync_with_buffer +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x0cca4958 ssam_controller_put +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x0d6661ca ssam_request_sync_free +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x10b162ce ssam_request_write_data +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x14caac43 ssam_request_sync_alloc +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x18070eb9 ssam_request_sync +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x23eb3591 ssam_notifier_unregister +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x2ddbba5d ssam_bus_type +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x32d6e23b ssam_controller_device +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x3a50c596 ssh_packet_put +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x43ad8ff3 ssam_client_bind +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x57579b2e ssh_packet_get +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x6f38cf3b ssam_device_get_match +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x6fa4310a ssam_controller_event_disable +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x714ccf85 ssam_device_add +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x8b738d16 ssam_controller_stateunlock +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x8c76d9ac ssam_controller_event_enable +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x91b744cd ssam_notifier_register +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x95a5850f ssam_controller_statelock +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xa93d17bf ssam_get_controller +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xb741074e ssam_request_sync_submit +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xc1f36bea ssam_request_sync_with_buffer EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xc2bd582d ssam_device_id_match -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xc891723b ssam_notifier_unregister -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xccd73edd ssam_device_alloc -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xd0b8a4f2 ssam_request_sync_submit -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xd4ae6c94 ssam_device_remove -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xf5064265 ssam_device_driver_unregister -EXPORT_SYMBOL_GPL drivers/platform/surface/surface_acpi_notify 0x0636f65e san_client_link +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xcaacfda0 ssam_device_remove +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xcc168b3b ssam_request_sync_init +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xcc4dd7eb ssam_device_alloc +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xde644111 ssam_client_link +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xe06156c5 ssam_device_get_match_data +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xe49f068c ssam_device_type +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xee9dc6cb __ssam_device_driver_register +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xf2f069c3 ssam_controller_get +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xf3e3d3dc ssam_device_driver_unregister EXPORT_SYMBOL_GPL drivers/platform/surface/surface_acpi_notify 0x48cf4c48 san_dgpu_notifier_register EXPORT_SYMBOL_GPL drivers/platform/surface/surface_acpi_notify 0xd60bd773 san_dgpu_notifier_unregister -EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0x21a26e63 reboot_mode_unregister -EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0x4b0f116f devm_reboot_mode_unregister -EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0x6aba20b2 reboot_mode_register -EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0xf356aa99 devm_reboot_mode_register -EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0x5743bb8f bq27xxx_battery_teardown -EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0x918df406 bq27xxx_battery_update -EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0xe8f2e32d bq27xxx_battery_setup -EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x8baadbf9 pcf50633_mbc_usb_curlim_set -EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0xb962a66f pcf50633_mbc_get_usb_online_status -EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0xbb7bb3ca pcf50633_mbc_get_status +EXPORT_SYMBOL_GPL drivers/platform/surface/surface_acpi_notify 0xe7a530df san_client_link +EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0x12036290 devm_reboot_mode_unregister +EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0x87687dd2 reboot_mode_register +EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0x8865450a devm_reboot_mode_register +EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0xa30b1d40 reboot_mode_unregister +EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0x36ed4c3c bq27xxx_battery_update +EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0x88318b71 bq27xxx_battery_setup +EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0xd06ebcc4 bq27xxx_battery_teardown +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x325b40bd pcf50633_mbc_usb_curlim_set +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x52e15f90 pcf50633_mbc_get_status +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x5d2cc5b1 pcf50633_mbc_get_usb_online_status +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x0df51308 ptp_qoriq_settime EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x2eae82b0 ptp_qoriq_isr -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x36a274ba ptp_qoriq_gettime -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x3ee137a4 ptp_qoriq_init -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x775554d9 ptp_qoriq_enable -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x7db3eec4 extts_clean_up -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x8b56f474 ptp_qoriq_adjfine -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xb6b5bd2d ptp_qoriq_settime -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xd76b0530 ptp_qoriq_adjtime -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xeb7a06c8 ptp_qoriq_free -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x3dded94d mc13xxx_parse_regulators_dt -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x50f5a9bb mc13xxx_regulator_ops -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x6882f3a6 mc13xxx_fixed_regulator_set_voltage -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x9c2a9095 mc13xxx_fixed_regulator_ops -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xf69a6d45 mc13xxx_get_num_regulators_dt -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x035ea45a wm8350_dcdc_set_slot -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x2f1dcdb9 wm8350_dcdc25_set_mode -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x49105304 wm8350_register_regulator -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x4d703d50 wm8350_register_led -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xc2fe8d14 wm8350_ldo_set_slot -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xe2290fb1 wm8350_isink_set_flash -EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0x433824c0 wm8400_register_regulator -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x00a00182 scp_mapping_dm_addr -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x1973b8e2 scp_get -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x24a7d94c scp_get_venc_hw_capa -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x46d33137 scp_put -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0xde58bf1e scp_get_rproc -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0xe65147d2 scp_get_vdec_hw_capa -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0xe6d222aa scp_get_device +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x3f1cf212 ptp_qoriq_adjfine +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x45f5ddc7 extts_clean_up +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x78ba4e90 ptp_qoriq_init +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xa1591b5e ptp_qoriq_gettime +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xd31d2e6c ptp_qoriq_free +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xd7188ed6 ptp_qoriq_adjtime +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xec3db7a7 ptp_qoriq_enable +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x3beaa03c mc13xxx_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x5a03bddd mc13xxx_parse_regulators_dt +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x750653d4 mc13xxx_fixed_regulator_set_voltage +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xa3f699a8 mc13xxx_get_num_regulators_dt +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xde77b58c mc13xxx_fixed_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x3384f07b wm8350_isink_set_flash +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x69681b5c wm8350_ldo_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xc6346a2a wm8350_register_regulator +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xe0b00363 wm8350_dcdc25_set_mode +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xf7747ab1 wm8350_register_led +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xfcfd817e wm8350_dcdc_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0x4d72ae91 wm8400_register_regulator +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x26f0daa1 scp_mapping_dm_addr +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x57362b7e scp_get +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x5e8a87ab scp_get_rproc +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x77082de7 scp_put +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x7da6b07c scp_get_vdec_hw_capa +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0xb99e0a53 scp_get_device +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0xfe0d495e scp_get_venc_hw_capa EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x09313652 scp_memcpy_aligned -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x200e6be9 scp_ipi_lock -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x3bbaeede scp_ipi_register -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x83346a5f scp_ipi_send -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0xa727831c scp_ipi_unlock -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0xe1bacb0a scp_ipi_unregister -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x09a6808b qcom_remove_glink_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x15fa11cf scp_ipi_register +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x1870085c scp_ipi_send +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x3a561c23 scp_ipi_lock +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x3ab496f0 scp_ipi_unregister +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x4a585345 scp_ipi_unlock +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x002a72b9 qcom_minidump +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x0966a2fa qcom_add_smd_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x0e2f1783 qcom_add_ssr_subdev EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x0fa538df qcom_register_ssr_notifier -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x251d611b qcom_add_smd_subdev -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x38ea2f3c qcom_add_glink_subdev -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x3e420380 qcom_remove_smd_subdev -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x6b6edf79 qcom_minidump -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x7cd7ddee qcom_remove_ssr_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x41553326 qcom_remove_ssr_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x482d6b49 qcom_remove_glink_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x88499f13 qcom_register_dump_segments +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xaeb89a81 qcom_add_glink_subdev EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xd6cc0cc0 qcom_unregister_ssr_notifier -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xe523fa8d qcom_register_dump_segments -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xf4df8630 qcom_add_ssr_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xf8be9054 qcom_remove_smd_subdev EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_pil_info 0x30e58241 qcom_pil_info_store -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x10e6635d qcom_q6v5_unprepare -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x5f587bc2 qcom_q6v5_init -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x79cfe44a qcom_q6v5_panic -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x82e8c36f qcom_q6v5_wait_for_start -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0xd4bbe18a qcom_q6v5_request_stop -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0xf61ad2b7 qcom_q6v5_prepare +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x1dea624b qcom_q6v5_panic +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x29d4b041 qcom_q6v5_wait_for_start +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x2d31ee6d qcom_q6v5_prepare +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x5860aead qcom_q6v5_request_stop +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x70b31fab qcom_q6v5_init +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0xdd1fb7af qcom_q6v5_unprepare EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_sysmon 0x1482d168 qcom_sysmon_shutdown_acked -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_sysmon 0x3eee3f15 qcom_add_sysmon_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_sysmon 0x432ccc42 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 0x8ff9332b mtk_rpmsg_create_rproc_subdev +EXPORT_SYMBOL_GPL drivers/rpmsg/mtk_rpmsg 0xd2191ae9 mtk_rpmsg_create_rproc_subdev EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0x149236da qcom_glink_native_remove -EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0xbdf8dc9d qcom_glink_native_probe +EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0xe1d337b0 qcom_glink_native_probe EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0xf14f5684 qcom_glink_ssr_notify EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0xfd2d5a1d qcom_glink_native_unregister EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink_smem 0x72dd75d9 qcom_glink_smem_unregister -EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink_smem 0xb75490dd qcom_glink_smem_register -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x059ceb1f cxgbi_set_conn_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0920ee50 cxgbi_iscsi_cleanup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x192d6a4b cxgbi_sock_rcv_close_conn_rpl -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x26757a23 cxgbi_sock_free_cpl_skbs -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2c1bd550 cxgbi_create_session -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x36f2cf8c cxgbi_device_portmap_cleanup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x446ca0a7 cxgbi_cleanup_task -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4f282718 cxgbi_sock_rcv_wr_ack -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x57bc1204 cxgbi_conn_alloc_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5b5f2c0c cxgbi_sock_skb_entail -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5f2ec28e cxgbi_device_find_by_netdev_rcu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5f3a4f07 cxgbi_get_host_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x62e83f94 cxgbi_ep_disconnect -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6c6e67cc cxgbi_parse_pdu_itt -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7303fcae cxgbi_conn_xmit_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x768cb2a8 cxgbi_device_find_by_netdev +EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink_smem 0xe81fac82 qcom_glink_smem_register +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x006abcba cxgbi_sock_rcv_abort_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x016d2af9 cxgbi_conn_xmit_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x01f1fc6f cxgbi_hbas_add +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x05bd518d cxgbi_conn_alloc_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x08540a8b cxgbi_iscsi_init +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x13f0b60f cxgbi_sock_established +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x208244de cxgbi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2b789489 cxgbi_device_unregister +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2e8ae158 cxgbi_set_conn_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3714e1f9 cxgbi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3a1d87da cxgbi_hbas_remove +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3b2dd342 cxgbi_sock_purge_wr_queue +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x448f4a67 cxgbi_bind_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x48d5ec2a cxgbi_device_find_by_netdev_rcu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4bf9fcf8 cxgbi_device_portmap_create +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x56f6ad97 cxgbi_ep_poll +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x600bb66d cxgbi_sock_check_wr_invariants +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6443401a cxgbi_get_conn_stats +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6506de30 cxgbi_conn_pdu_ready +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x66028ced cxgbi_sock_rcv_close_conn_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x660cee85 cxgbi_conn_tx_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6d417a4a cxgbi_device_find_by_netdev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6e25d68e cxgbi_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x70b2fcc5 cxgbi_ddp_ppm_setup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x77ac16c6 cxgbi_get_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7e20678f cxgbi_device_register EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fdb6004 cxgbi_device_unregister_all -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9e1bc5cb cxgbi_conn_pdu_ready -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9fa0c0c6 cxgbi_device_unregister -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa2bf8b29 cxgbi_sock_act_open_req_arp_failure -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa4054107 cxgbi_create_conn -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbb70d463 cxgbi_sock_purge_wr_queue -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbe0aeaaa cxgbi_hbas_add +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8849339d cxgbi_sock_fail_act_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8caa36f7 cxgbi_iscsi_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9ff415da cxgbi_parse_pdu_itt +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa30fd46b cxgbi_sock_act_open_req_arp_failure +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa4c774d1 cxgbi_sock_closed +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa8ada68e cxgbi_sock_rcv_peer_close +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb4b1c7fc cxgbi_ep_disconnect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xba03bf32 cxgbi_get_ep_param EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc011af75 cxgbi_ddp_set_one_ppod -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc0e1c4a5 cxgbi_sock_select_mss -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc6cd66c6 cxgbi_sock_closed -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc7e035c2 cxgbi_get_ep_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xcd2cb1a6 cxgbi_ep_poll -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xcf8baf3c cxgbi_device_register -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd18537ea cxgbi_sock_fail_act_open -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd28ef972 cxgbi_iscsi_init -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xda532e25 cxgbi_sock_established -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdb45ed6d cxgbi_bind_conn -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdfb35b39 cxgbi_sock_check_wr_invariants -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe1d5374a cxgbi_destroy_session -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe576e340 cxgbi_sock_rcv_peer_close -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe5ad5f42 cxgbi_device_portmap_create -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe5ea976b cxgbi_get_conn_stats -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe84d4f73 cxgbi_hbas_remove -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xec7918cb cxgbi_device_find_by_lldev -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xef000551 cxgbi_set_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xce10e8b1 cxgbi_sock_free_cpl_skbs +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xcec7c9f6 cxgbi_device_find_by_lldev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xcf7e2523 cxgbi_sock_skb_entail +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xcfb18ac3 cxgbi_sock_rcv_wr_ack +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd17a138a cxgbi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd28d1e4b cxgbi_ep_connect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xde78c694 cxgbi_device_portmap_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xde975b5f cxgbi_set_host_param EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xef346615 cxgbi_attr_is_visible -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf11a5398 cxgbi_conn_tx_open -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf5207d88 cxgbi_conn_init_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf782f268 cxgbi_ep_connect -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf97b5709 cxgbi_sock_rcv_abort_rpl -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xfc082ba5 cxgbi_ddp_ppm_setup -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x1c52349a fcoe_ctlr_device_delete -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x1da431d4 fcoe_fcf_device_delete -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x22f46511 fcoe_ctlr_device_add -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x258ddfc0 fcoe_clean_pending_queue -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x3981482d fcoe_get_paged_crc_eof -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x47f6e9fb fcoe_ctlr_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x4ac40b9c fcoe_fc_crc -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x7468629b fcoe_get_wwn -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x76e23774 fcoe_check_wait_queue +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xfd230989 cxgbi_sock_select_mss +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xff69b736 cxgbi_conn_init_pdu +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x011eac6d fcoe_ctlr_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x04a10474 __fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0e3eff57 fcoe_get_paged_crc_eof +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x12554d57 fcoe_libfc_config +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x1e37aa19 fcoe_check_wait_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x226d0056 fcoe_start_io +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x266ec008 fcoe_get_wwn +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x5372a0f5 fcoe_fcf_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x643788cf fcoe_link_speed_update +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x65f6baa8 fcoe_fc_crc +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x6e7da991 fcoe_ctlr_device_delete EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x7e92994b fcoe_wwn_from_mac -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x976529a7 fcoe_link_speed_update +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x8fd0d523 fcoe_fcf_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x9983eea9 fcoe_validate_vport_create +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x9ac9a3d1 fcoe_ctlr_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xa235c250 fcoe_get_lesb EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xbac58840 fcoe_queue_timer -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xd024f295 fcoe_fcf_device_add -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xd464f2e8 fcoe_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xef3fafbb fcoe_validate_vport_create EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf167cb7a fcoe_wwn_to_str -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf1c4cfaf fcoe_start_io -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf581746b fcoe_libfc_config -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xfdf22e64 __fcoe_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0x69ba4f96 fdomain_create -EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0x6cce1af3 fdomain_destroy -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x01330b04 hisi_sas_get_fw_info -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x06a34cac hisi_sas_phy_down -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x1956b85f hisi_sas_notify_phy_event -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x1ac87a3d hisi_sas_phy_oob_ready -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x24145ccb hisi_sas_phy_enable -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x3014a713 hisi_sas_release_tasks -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x3b6f3855 hisi_sas_scan_start -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x425f574a hisi_sas_free -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x4f71cb6a hisi_sas_probe +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf7fc3717 fcoe_clean_pending_queue +EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0x3aa73daf fdomain_create +EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0xcb3f28a3 fdomain_destroy +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x0297bed3 hisi_sas_notify_phy_event +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x107134f4 hisi_sas_probe +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x1b49dc1b hisi_sas_sata_done +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x1dc3b908 hisi_sas_slave_configure +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x267b0bec hisi_sas_stop_phys +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x41082af8 hisi_sas_phy_oob_ready +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x46356723 hisi_sas_free EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x4fc22123 hisi_sas_stt -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x58542b8d hisi_sas_stop_phys -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x6c25ea8c hisi_sas_sata_done -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x72c50bf1 hisi_sas_alloc -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x7c7a1aaa hisi_sas_sync_irqs -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x8b20371e hisi_sas_scan_finished +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x5758524b to_hisi_sas_port +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x583795c4 hisi_sas_phy_down +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x5d727de6 hisi_sas_controller_reset_prepare +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x60a9e37f hisi_sas_release_tasks +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x70caceec hisi_sas_get_fw_info +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x71f30ed5 hisi_sas_remove +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x8eadd208 hisi_sas_scan_finished +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x90900950 hisi_sas_sync_irqs +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x93b66999 hisi_sas_debugfs_dir EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x9b807c91 hisi_sas_get_prog_phy_linkrate_mask -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x9f7808fe hisi_sas_init_mem -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xa6532776 hisi_sas_controller_reset_done -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xa729c2e6 hisi_sas_controller_reset_prepare -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xafbf28da hisi_sas_host_reset 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 0xb4941448 hisi_sas_slot_task_free -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xb9cc8ce9 to_hisi_sas_port +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xbc7b3a12 hisi_sas_init_mem 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 0xca6ea8c0 hisi_sas_debugfs_dir -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xdca18eeb hisi_sas_remove +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xcc6af034 hisi_sas_phy_enable +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xd49022bc hisi_sas_alloc +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xda040f3f hisi_sas_controller_reset_done EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xe330cb74 hisi_sas_sync_rst_work_handler EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 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 0xf9e03453 hisi_sas_slave_configure -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x29a1a1e1 iscsi_boot_destroy_kset -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x5b125b45 iscsi_boot_create_ethernet -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x75471824 iscsi_boot_create_target -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x9a57360c iscsi_boot_create_host_kset -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xad852b35 iscsi_boot_create_acpitbl -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xae0ce553 iscsi_boot_create_kset -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xb316434c iscsi_boot_create_initiator +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xf2d2c9bb hisi_sas_slot_task_free +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xf4e3b774 hisi_sas_host_reset +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xfea0000c hisi_sas_scan_start +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x09206628 iscsi_boot_create_target +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x401a3415 iscsi_boot_create_ethernet +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x8bbafc27 iscsi_boot_destroy_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xa44f0060 iscsi_boot_create_acpitbl +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xa4b31359 iscsi_boot_create_host_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xc4dc5c8f iscsi_boot_create_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xd8661ad7 iscsi_boot_create_initiator EXPORT_SYMBOL_GPL drivers/scsi/libfc/libfc 0x66f43542 fc_seq_els_rsp_send -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x034fda4b iscsi_conn_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x04ea9e00 iscsi_host_add -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x07c04a74 iscsi_prep_data_out_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0ef78ce6 iscsi_eh_recover_target +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x01570e37 iscsi_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x01f26f30 iscsi_requeue_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x07737812 iscsi_conn_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0894bb41 iscsi_session_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0ac08bb9 iscsi_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0c8b8491 iscsi_conn_bind EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x13f677c1 iscsi_set_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x17c9c366 iscsi_verify_itt -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x214119d8 iscsi_put_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x304891b1 iscsi_conn_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x345757c7 __iscsi_get_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bd93b41 iscsi_conn_stop +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1449a4e2 iscsi_conn_queue_work +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1af5dadd iscsi_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1d760892 iscsi_conn_stop +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x27df0553 iscsi_session_recovery_timedout +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2b383eb0 iscsi_suspend_tx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3061c319 iscsi_itt_to_ctask +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x35be2936 iscsi_host_get_max_scsi_cmds +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x35c1563d iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3771b117 iscsi_eh_device_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3928e5ba iscsi_host_free EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x40f3fedf iscsi_host_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4375c242 iscsi_target_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x43c45215 iscsi_complete_scsi_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x45182e10 iscsi_update_cmdsn -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x525bc51b iscsi_itt_to_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x55c8ee7e iscsi_host_set_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5ff392fa iscsi_conn_send_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x684c66c5 iscsi_conn_queue_work -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6ddc9eed iscsi_host_remove -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7104b1c9 __iscsi_complete_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x77043976 iscsi_session_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x41395785 iscsi_session_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4cca3df4 iscsi_suspend_queue +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5bd0cbdc iscsi_host_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6e748953 iscsi_verify_itt +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x72f29d62 iscsi_conn_send_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7327be51 iscsi_itt_to_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7a3cb7f8 iscsi_complete_scsi_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7bf08170 __iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8883bbfb iscsi_host_alloc EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa3d68f06 iscsi_suspend_tx -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa3dbb15e iscsi_eh_cmd_timed_out -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa64917ec iscsi_itt_to_ctask -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb1d7615d iscsi_conn_bind -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb614beee __iscsi_put_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc4a52b19 iscsi_conn_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc53155e4 iscsi_requeue_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc5e6ce92 iscsi_host_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc70d884d iscsi_session_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc864441a iscsi_session_failure -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcb035a7c iscsi_host_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xce4d53be iscsi_host_get_max_scsi_cmds -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcff39018 iscsi_conn_unbind -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd1e01356 iscsi_session_recovery_timedout -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe140c838 iscsi_eh_session_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe3fae9d5 iscsi_suspend_queue -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe9e71eee iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x96e1f126 iscsi_host_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa9491422 iscsi_session_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xab4fcb5d iscsi_eh_cmd_timed_out +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xac66bb42 __iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xae635220 iscsi_conn_start +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb380eace iscsi_eh_recover_target +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb8278176 iscsi_host_add +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb9141717 iscsi_conn_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb9e0f414 iscsi_conn_unbind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbf5ccaf5 iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc385bd35 __iscsi_get_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc79c3982 iscsi_update_cmdsn +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd2692cc4 iscsi_host_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd84651b5 iscsi_eh_abort +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdba84626 iscsi_prep_data_out_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdfd5f39f iscsi_session_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe18fb74a iscsi_eh_session_reset EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeab9cbd5 iscsi_conn_get_addr_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeceb7379 iscsi_conn_start -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xed3da276 iscsi_queuecommand -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xed5822b9 iscsi_eh_device_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf08bc206 iscsi_conn_failure -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf116aa86 iscsi_eh_abort -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfe3c7177 iscsi_session_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x144804ef iscsi_tcp_conn_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x1683e2b9 iscsi_tcp_conn_get_stats -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x649e7475 iscsi_tcp_dgst_header -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x6757dad1 iscsi_tcp_segment_unmap -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x8e84c491 iscsi_tcp_hdr_recv_prep -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x9adcda55 iscsi_tcp_segment_done -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xad71046f iscsi_tcp_set_max_r2t -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xae5aeb07 iscsi_tcp_task_init -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xb7d8d4e5 iscsi_segment_init_linear -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xb83d9a88 iscsi_tcp_r2tpool_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xbbcb3ca2 iscsi_tcp_recv_skb -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xccf06fb7 iscsi_tcp_conn_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xde1fbd57 iscsi_tcp_task_xmit -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xe742f9fa iscsi_tcp_cleanup_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xf78d9647 iscsi_tcp_r2tpool_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xf860e5ee iscsi_tcp_recv_segment_is_hdr -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xff5ada60 iscsi_segment_seek_sg -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x042ef1b1 sas_bios_param -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0e06cccb sas_free_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x15a89b86 sas_eh_target_reset_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x18652cf4 sas_ata_schedule_reset -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1fc41e5e sas_target_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1fcacc9b sas_change_queue_depth -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2774d219 sas_ssp_task_response -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x386c5abe sas_queuecommand -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4d752e86 sas_phy_reset -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5717e2d7 sas_unregister_ha -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5985ce0b sas_notify_port_event -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5eb9917e sas_slave_configure -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6f7ecf51 sas_target_destroy -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x78eb7dc6 sas_request_addr -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7e3d9ff8 dev_attr_phy_event_threshold -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x84d03bbb sas_eh_device_reset_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8b6f0140 sas_alloc_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8ba97c2a sas_slave_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x91283c5e sas_get_local_phy -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9ceb19e2 sas_task_abort -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb0d1a6d0 sas_alloc_slow_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb10fa6c1 sas_ioctl -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc0d819c4 sas_drain_work -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd238c93e sas_domain_attach_transport -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe9d282a2 sas_notify_phy_event -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf2bdef16 sas_eh_abort_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xfb63a68a sas_register_ha -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_fc 0xa2a435f1 fc_eh_should_retry_cmd -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0264b062 iscsi_destroy_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfaf49a15 iscsi_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfc48e849 iscsi_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x16b43dcb iscsi_tcp_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x1d975436 iscsi_tcp_task_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x1ed27a92 iscsi_tcp_recv_skb +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x2853550d iscsi_tcp_hdr_recv_prep +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x4cef2dc9 iscsi_tcp_dgst_header +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x52dc490a iscsi_tcp_segment_unmap +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x6e11e6de iscsi_tcp_r2tpool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x70dab70c iscsi_tcp_recv_segment_is_hdr +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x718f16db iscsi_tcp_set_max_r2t +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x71a99cbe iscsi_tcp_task_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xa3c9720c iscsi_tcp_r2tpool_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xa6756b1c iscsi_segment_seek_sg +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xe536a339 iscsi_tcp_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xf3bdd44a iscsi_tcp_conn_get_stats +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xf4a414f5 iscsi_segment_init_linear +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xf69ceb78 iscsi_tcp_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xff83fcea iscsi_tcp_segment_done +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x024cacbb sas_alloc_slow_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x08708c5e sas_task_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1186d7a0 sas_ioctl +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x263fb1d1 sas_bios_param +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x32b83254 sas_notify_port_event +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4992a977 sas_get_local_phy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5ca2a235 sas_slave_configure +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6514cd59 sas_drain_work +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6aeb02c5 sas_eh_target_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7288c1ef sas_ata_schedule_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x76ccda85 sas_register_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7d7226cc sas_eh_device_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7f8b637e sas_domain_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9c782a0e sas_request_addr +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb09b74f6 sas_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xbd8542fd sas_eh_abort_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc2093a23 sas_target_destroy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc40e75b9 sas_free_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc666b682 sas_ssp_task_response +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd5a87802 sas_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd7084898 sas_unregister_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd8fb417f sas_slave_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd9fafa7f sas_change_queue_depth +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf2988cbe sas_notify_phy_event +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf68f6c84 sas_phy_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf87f5639 dev_attr_phy_event_threshold +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xfaef9f10 sas_alloc_task +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_fc 0x9bb5a162 fc_eh_should_retry_cmd +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x021f06c2 __traceiter_iscsi_dbg_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x03ab6d98 iscsi_flashnode_bus_match EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0736dd10 __tracepoint_iscsi_dbg_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0e7b58c8 iscsi_create_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0f2d0b40 iscsi_conn_login_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x17b85aa9 iscsi_put_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1c69a930 iscsi_find_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x304a6a8b iscsi_session_chkready -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x312e814c iscsi_alloc_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x07674c0d iscsi_destroy_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x14632b17 iscsi_unregister_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x17446040 iscsi_destroy_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x18a9f5f8 iscsi_lookup_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1fa0a428 iscsi_dbg_trace +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x213510fe iscsi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x26c0a959 iscsi_add_session EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3785e561 __tracepoint_iscsi_dbg_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3dbbb146 iscsi_destroy_all_flashnode -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3eb02e50 iscsi_ping_comp_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4910a3f6 iscsi_post_host_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4a80f80e iscsi_create_flashnode_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4b9dc17f iscsi_get_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x573ab9ef iscsi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3c04d700 iscsi_is_session_online +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3dec4ccd iscsi_session_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3fcb1cc6 iscsi_alloc_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3fd09f1c iscsi_find_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x41e6011f iscsi_is_session_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4fa52588 iscsi_find_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x547b6a11 iscsi_remove_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x57f76ada iscsi_destroy_all_flashnode 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 0x64f76a6f iscsi_scan_finished -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x67228958 iscsi_conn_error_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x67443310 iscsi_host_for_each_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x60a722fa iscsi_destroy_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6232b944 __traceiter_iscsi_dbg_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x62ef3bc0 iscsi_conn_login_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x68aba2ef iscsi_put_conn EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x699fe53e iscsi_get_discovery_parent_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6a16b83d 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 0x7780a0c0 iscsi_unblock_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7845eabc iscsi_session_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7ad5a124 iscsi_recv_pdu -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7b295117 __traceiter_iscsi_dbg_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7caa24e7 iscsi_lookup_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7edb694e iscsi_is_session_dev -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7f5d0528 iscsi_is_session_online -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7f73b198 __traceiter_iscsi_dbg_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x80284be5 iscsi_get_port_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x72c060d3 iscsi_create_conn EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x84a005f1 iscsi_get_router_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x85a0b84b iscsi_block_scsi_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8807242d iscsi_destroy_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x855cb2d8 iscsi_block_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x85c05156 iscsi_create_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x87e0890c iscsi_put_endpoint EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x88768c48 __SCK__tp_func_iscsi_dbg_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x88def7b6 iscsi_find_flashnode_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8bd3e35c iscsi_destroy_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8bee8f14 iscsi_register_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8f0924ba iscsi_get_port_speed_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9b3cd04a __traceiter_iscsi_dbg_sw_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x945e704e iscsi_offload_mesg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x98b104b6 iscsi_create_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9ca5ce33 iscsi_ping_comp_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9da3f462 iscsi_unblock_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9f5b300b iscsi_get_port_speed_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa3fcd1a0 iscsi_conn_error_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa64300d9 iscsi_host_for_each_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 0xbaad06bb 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 0xd04e39fc iscsi_create_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd4d6c204 iscsi_unregister_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xce442954 iscsi_block_scsi_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xcf71c301 iscsi_get_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd0c2b8c4 iscsi_register_transport EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd4e55f1e __tracepoint_iscsi_dbg_sw_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd8f1ec65 iscsi_remove_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdd3489f4 iscsi_destroy_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd752a4d8 iscsi_create_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd9e90282 __traceiter_iscsi_dbg_sw_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xda850b5d iscsi_create_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xddd03ad2 iscsi_post_host_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdfa7ec57 iscsi_session_chkready EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe4c79fa6 __SCK__tp_func_iscsi_dbg_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe560d5fa iscsi_put_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xed24a158 __traceiter_iscsi_dbg_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf03a58aa iscsi_dbg_trace -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf25e8369 iscsi_offload_mesg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf49cf6f7 iscsi_free_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf594f598 iscsi_add_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf6afd0cf iscsi_block_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf924c34d __traceiter_iscsi_dbg_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfcb2d5a9 iscsi_create_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x0896a0cc sas_disable_tlr -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x1aa4c0d0 sas_tlr_supported -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x376fe5e8 sas_enable_tlr -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x703ea424 sas_is_tlr_enabled +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xee2cc711 iscsi_get_port_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xeea0149d __traceiter_iscsi_dbg_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf085fd08 iscsi_scan_finished +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf34aea57 iscsi_recv_pdu +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf58b29ab __traceiter_iscsi_dbg_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf79040bc iscsi_free_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfb822e14 iscsi_destroy_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x491cd297 sas_tlr_supported +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xd6719b6d sas_enable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xd85623a6 sas_disable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xd94eaeeb sas_is_tlr_enabled EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x0ef06974 spi_populate_ppr_msg EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xa0c71dac spi_populate_sync_msg EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xcffa2aff spi_populate_width_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xe248b6d3 spi_populate_tag_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x0ff82f59 srp_rport_add -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x1045fdab srp_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xef596316 spi_populate_tag_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x187c65f8 srp_release_transport EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x1902178a srp_tmo_valid -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x26c888e2 srp_rport_del -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x6513b00b srp_stop_rport_timers -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x7a82da2b srp_release_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x976b3fe4 srp_remove_host -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x0213fc8d ufshcd_hba_stop -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x200909c4 ufshcd_link_recovery -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x2e1404d2 ufshcd_release -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x33f92478 ufshcd_update_evt_hist -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x3bb2e169 ufshcd_dump_regs -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x70521b08 ufshcd_init +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x9599f8bf srp_remove_host +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xb34ef523 srp_rport_add +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xbde81560 srp_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xca3bee23 srp_rport_del +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xf251d88c srp_stop_rport_timers +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x01026aa3 ufshcd_make_hba_operational +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x01194882 ufshcd_uic_hibern8_exit +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x0d9fc532 ufshcd_remove +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x129f0f35 ufshcd_dump_regs +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x19d9d162 ufshcd_suspend_prepare +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x1b2cd2c4 ufshcd_hba_enable +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x1e510c25 ufshcd_update_evt_hist +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x34758810 ufshcd_fixup_dev_quirks +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x46bc9446 ufshcd_resume_complete +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x5fb484f9 ufshcd_auto_hibern8_update +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x6da83a65 ufshcd_init EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x723b1abf ufshcd_delay_us -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x78e274cc ufshcd_remove -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xaf4f9eb9 ufshcd_hba_enable -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xb39e4447 ufshcd_dealloc_host -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xb41ec1b6 ufshcd_auto_hibern8_update -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xb6361c52 ufshcd_dme_set_attr -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xbc5e2d3c ufshcd_resume_complete -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xce7ce015 ufshcd_config_pwr_mode -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xd8fd4ee7 ufshcd_dme_configure_adapt -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xdba17c49 ufshcd_make_hba_operational -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xe0d83c5a ufshcd_hold -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xe0e51add ufshcd_fixup_dev_quirks -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xe7ce4de5 ufshcd_uic_hibern8_exit -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xe83769f2 ufshcd_dme_get_attr -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xfb8454de ufshcd_suspend_prepare +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x74fff8f4 ufshcd_hold +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x80e21477 ufshcd_hba_stop +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x8101a25c ufshcd_dme_configure_adapt +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xaa0f880d ufshcd_link_recovery +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xb8ea766b ufshcd_dme_get_attr +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xc0eced60 ufshcd_config_pwr_mode +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xc6bde991 ufshcd_dealloc_host +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xe59d547c ufshcd_dme_set_attr +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xe892e59d ufshcd_release +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x07ace782 ufshcd_pltfrm_shutdown EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x54c946de ufshcd_init_pwr_dev_param -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x7c522a5c ufshcd_pltfrm_shutdown -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xf728d517 ufshcd_pltfrm_init +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x88213818 ufshcd_pltfrm_init EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xff85cd6b ufshcd_get_pwr_dev_param -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x00078282 siox_master_register -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x4f2309fe __siox_driver_register -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x6b0f0f96 siox_master_unregister -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x96727c44 siox_master_alloc -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xa6ea029f siox_device_connected -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xd34d9694 siox_device_synced -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x040e43cf slimbus_bus -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x0514b9b1 __slim_driver_register -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x1979d521 slim_write -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x1dc720c3 slim_writeb -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x23cdcc7d slim_stream_enable -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x2f4ff9da slim_do_transfer -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x3632224d slim_report_absent -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x3fa6f5fc slim_stream_free -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x4455f158 slim_device_report_present -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x473895dc slim_readb -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x545eca1d slim_msg_response -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x5897b46c slim_unregister_controller -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x5b40a24a slim_driver_unregister -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x5ebbad40 slim_read -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x605fad97 slim_register_controller -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x67dcde9e slim_xfer_msg -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x71bf0192 slim_get_logical_addr -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x78348ff2 slim_stream_unprepare -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x90ae35e2 slim_free_txn_tid -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x96ce2f44 slim_get_device -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x9878f2b6 slim_stream_allocate -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xa85c7ce1 slim_stream_prepare -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xda6c76ca of_slim_get_device -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xdbd5bd7e slim_ctrl_clk_pause -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xdd25d2ef slim_alloc_txn_tid -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xe04c3094 slim_stream_disable +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x26541bf4 siox_master_alloc +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x4a695a5a siox_device_synced +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x51f59147 siox_master_register +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x62618c54 siox_master_unregister +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x77f1c0d6 siox_device_connected +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x9c88ae21 __siox_driver_register +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x0df47ca7 slim_readb +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x12db4df3 slim_read +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x1450fa85 slim_alloc_txn_tid +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x1fc15e7a of_slim_get_device +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x20cc728c __slim_driver_register +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x3126c65f slim_stream_unprepare +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x3e4fea16 slim_get_logical_addr +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x3eec999c slim_register_controller +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x4d7d5e31 slim_write +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x510b86f6 slim_device_report_present +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x577b3595 slim_driver_unregister +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x66a58751 slim_stream_free +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x7c8d3445 slim_do_transfer +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x838a7c65 slim_stream_disable +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x90b6d7b8 slim_unregister_controller +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x96223492 slim_stream_prepare +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x9c20c657 slim_xfer_msg +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x9f9c9e09 slim_stream_enable +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xaae92776 slimbus_bus +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xad49fa85 slim_report_absent +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xc2c29a9a slim_get_device +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xd18eb11c slim_free_txn_tid +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xd442ab04 slim_writeb +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xddcdcf9e slim_ctrl_clk_pause +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xe02107fb slim_msg_response +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xfddc0fac slim_stream_allocate +EXPORT_SYMBOL_GPL drivers/soc/amlogic/meson-canvas 0x13fc5914 meson_canvas_get EXPORT_SYMBOL_GPL drivers/soc/amlogic/meson-canvas 0x494128eb meson_canvas_alloc -EXPORT_SYMBOL_GPL drivers/soc/amlogic/meson-canvas 0x5ed0ae8f meson_canvas_get EXPORT_SYMBOL_GPL drivers/soc/amlogic/meson-canvas 0x673c5a86 meson_canvas_config EXPORT_SYMBOL_GPL drivers/soc/amlogic/meson-canvas 0xfbd79150 meson_canvas_free EXPORT_SYMBOL_GPL drivers/soc/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 0x1db331bd dpaa2_io_service_register 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 0x5e43082b 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 0x7575124d dpaa2_io_service_deregister EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0x79cf65a1 dpaa2_io_service_enqueue_qd EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0x8edafa55 dpaa2_io_query_bp_count -EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0x9d35a44d dpaa2_io_store_create +EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0xa469460b dpaa2_io_service_register EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0xb9e81961 dpaa2_io_query_fq_count -EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x2f539154 apr_driver_unregister -EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x3c2934ae aprbus -EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0xb2fa15f2 apr_send_pkt -EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0xc22e0fec __apr_driver_register +EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0xd9e8c9dd dpaa2_io_service_deregister +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x29797a9c __apr_driver_register +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x9c93bb16 apr_send_pkt +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0xbbee56c3 aprbus +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0xca5589de apr_driver_unregister 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 0x1e64d369 qcom_mdt_load -EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0x51338c1b qcom_mdt_load_no_init +EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0x01cbda23 qcom_mdt_load EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0xa1c6a5b9 qcom_mdt_read_metadata +EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0xcea0fab3 qcom_mdt_load_no_init EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0xe8a3861c qcom_mdt_get_size -EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x55f7b74a sdw_bus_type -EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x9ff81eef __sdw_register_driver -EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0xcd1cd955 sdw_unregister_driver -EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-cadence 0x5de7ea66 sdw_cdns_debugfs_init -EXPORT_SYMBOL_GPL drivers/spi/spi-altera-core 0x7e534120 altera_spi_init_master +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x0781b410 __sdw_register_driver +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x213f8dfd sdw_bus_type +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x4df63e17 sdw_unregister_driver +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-cadence 0x0a757705 sdw_cdns_debugfs_init +EXPORT_SYMBOL_GPL drivers/spi/spi-altera-core 0x590d31dd altera_spi_init_master EXPORT_SYMBOL_GPL drivers/spi/spi-altera-core 0xb9edd149 altera_spi_irq -EXPORT_SYMBOL_GPL drivers/spi/spi-bcm-qspi 0x82598a3c bcm_qspi_probe -EXPORT_SYMBOL_GPL drivers/spi/spi-bcm-qspi 0xa25635aa bcm_qspi_pm_ops -EXPORT_SYMBOL_GPL drivers/spi/spi-bcm-qspi 0xfb9f9cfc bcm_qspi_remove -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x62803a3f spi_bitbang_setup -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x6af12157 spi_bitbang_cleanup -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x832ec242 spi_bitbang_setup_transfer -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xa6fa35ad spi_bitbang_start -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xc32f9fba spi_bitbang_stop -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xd5653e93 spi_bitbang_init -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x56c603b4 dw_spi_set_cs -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x6d4ab66f dw_spi_dma_setup_generic -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x87c56b93 dw_spi_remove_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x88d1e2de dw_spi_dma_setup_mfld -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x8a854992 dw_spi_update_config -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x8cff4704 dw_spi_check_status -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x9c9b2569 dw_spi_resume_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xa1e704ea dw_spi_suspend_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xf0b2327c dw_spi_add_host -EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x23f118ca spi_test_execute_msg -EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x3850386b spi_test_run_tests -EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x812ec7dd spi_test_run_test -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x0aa27b63 spmi_ext_register_writel -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x1edf78f6 spmi_register_zero_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x28719dcc spmi_device_alloc -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x2a294fd2 spmi_command_shutdown -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x49a3fed8 spmi_ext_register_read -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x6e7aa85a spmi_device_remove -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x700d4678 spmi_register_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x7036cef5 spmi_device_add -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x7fa3407d spmi_register_read -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x835a4400 spmi_command_sleep -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x90dc63a4 __spmi_driver_register -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x94191ec9 spmi_ext_register_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x95d2dcd6 spmi_command_reset -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xab4980e9 spmi_command_wakeup -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xc0412a22 spmi_controller_remove -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xccf81a9b spmi_controller_add -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xd4c13c5f spmi_controller_alloc -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xde17e740 spmi_ext_register_readl -EXPORT_SYMBOL_GPL drivers/ssb/ssb 0xb3307459 ssb_pmu_spuravoid_pllupdate -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x11e99a4e anybuss_client_driver_unregister -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x123fd5bc anybuss_start_init -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x1336dd20 anybuss_finish_init -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x373b8dca devm_anybuss_host_common_probe -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x605617cf anybuss_read_output -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x68e7ba00 anybuss_client_driver_register -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x970e79db anybuss_send_msg -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x986fe02c anybuss_host_common_probe -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xa91dec20 anybuss_send_ext -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xac27d331 anybuss_set_power -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xb9c41778 anybuss_read_fbctrl -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xedf41586 anybuss_recv_msg -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xf03baf8b anybuss_write_input +EXPORT_SYMBOL_GPL drivers/spi/spi-bcm-qspi 0x242298f8 bcm_qspi_pm_ops +EXPORT_SYMBOL_GPL drivers/spi/spi-bcm-qspi 0xbd32ac7d bcm_qspi_remove +EXPORT_SYMBOL_GPL drivers/spi/spi-bcm-qspi 0xdd3d7a92 bcm_qspi_probe +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x2b8ec4ef spi_bitbang_setup_transfer +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x2cfbe1d6 spi_bitbang_init +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x38735ace spi_bitbang_start +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x4f8e1d96 spi_bitbang_setup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x6c30e03e spi_bitbang_cleanup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xccf4e6a6 spi_bitbang_stop +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x54a39d8e dw_spi_suspend_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x6909d7aa dw_spi_remove_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x6bc94c86 dw_spi_check_status +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x993689a9 dw_spi_update_config +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xcb258fa4 dw_spi_dma_setup_generic +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xd427d418 dw_spi_add_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xd81419d6 dw_spi_dma_setup_mfld +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xdb90bd81 dw_spi_set_cs +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xee849284 dw_spi_resume_host +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x23afbf76 spi_test_execute_msg +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x83d5418e spi_test_run_test +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x875f6414 spi_test_run_tests +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x03623c97 spmi_device_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x240fcf0c spmi_controller_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x324ac6de spmi_ext_register_writel +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x3bd6a216 spmi_device_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x4886861b spmi_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x5d0df356 spmi_ext_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x5fe1e1d7 spmi_register_zero_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x989e101a spmi_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xa21ed64c spmi_command_sleep +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xb1736524 spmi_controller_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xb5a83dd0 spmi_command_wakeup +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xd8aa843b spmi_command_reset +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xdd934e4f __spmi_driver_register +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xe7ced3d5 spmi_ext_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xec6f2a55 spmi_device_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xf3985090 spmi_controller_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xf9c70cf0 spmi_ext_register_readl +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xfc4b997b spmi_command_shutdown +EXPORT_SYMBOL_GPL drivers/ssb/ssb 0x225e3f31 ssb_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x0a6c0e42 anybuss_client_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x1b8d4905 anybuss_start_init +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x1cc35b23 anybuss_set_power +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x4741fc8d anybuss_finish_init +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x5738ff45 anybuss_recv_msg +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x667b00b6 anybuss_read_output +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xa5bbffa1 anybuss_write_input +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xb0f35427 anybuss_client_driver_register +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xc415bb5f anybuss_send_msg +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xcbff3fb9 anybuss_read_fbctrl +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xd3570297 devm_anybuss_host_common_probe +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xd873304c anybuss_send_ext +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xdfd6ed66 anybuss_host_common_probe EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xfce879ad anybuss_host_common_remove -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x340c918e fieldbus_dev_area_updated -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x9baf6e13 fieldbus_dev_unregister -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0xb8fcdd86 fieldbus_dev_online_changed -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0xeb6ae554 fieldbus_dev_register -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x130f58a3 gb_audio_apbridgea_prepare_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x1a29e299 gb_audio_apbridgea_set_config -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x2345681d gb_audio_apbridgea_set_rx_data_size -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x2ddd1733 gb_audio_apbridgea_shutdown_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x54f56562 gb_audio_apbridgea_set_tx_data_size -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x5d453d60 gb_audio_apbridgea_stop_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x63bc3c8d gb_audio_apbridgea_unregister_cport -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x778a5640 gb_audio_apbridgea_start_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x7b6f42fc gb_audio_apbridgea_start_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xa217d2df gb_audio_apbridgea_stop_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xd28ff88c gb_audio_apbridgea_shutdown_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xdfd65e08 gb_audio_apbridgea_register_cport -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xec5db71c gb_audio_apbridgea_prepare_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x00fb901c gb_audio_gb_enable_widget -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x02c90726 gb_audio_gb_activate_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x2ab234ab gb_audio_gb_deactivate_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x2d2bafb5 gb_audio_gb_get_topology -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x6cc361ab gb_audio_gb_get_pcm -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x7e38e1fa gb_audio_gb_disable_widget -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x9f207b3d gb_audio_gb_set_control -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xc766ef51 gb_audio_gb_deactivate_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xcca0886e gb_audio_gb_set_tx_data_size -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xd8ae7d20 gb_audio_gb_get_control -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xdb9349e5 gb_audio_gb_set_pcm -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xef1ddcdc gb_audio_gb_activate_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xf103ea8b gb_audio_gb_set_rx_data_size +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x1fa8332e fieldbus_dev_register +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0xa0b95bf5 fieldbus_dev_unregister +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0xe8ed0bd0 fieldbus_dev_area_updated +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0xfb0db134 fieldbus_dev_online_changed +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x15b390a7 gb_audio_apbridgea_stop_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x2bf08990 gb_audio_apbridgea_shutdown_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x4d34b2a5 gb_audio_apbridgea_set_config +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x6f9d12b2 gb_audio_apbridgea_start_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x740ee8fa gb_audio_apbridgea_prepare_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x860985d4 gb_audio_apbridgea_shutdown_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x9df9ee51 gb_audio_apbridgea_set_tx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xb10e6ab6 gb_audio_apbridgea_start_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xb84a9ce3 gb_audio_apbridgea_stop_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xccbd67ef gb_audio_apbridgea_unregister_cport +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xd7899225 gb_audio_apbridgea_register_cport +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xd9f7e4be gb_audio_apbridgea_prepare_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xdd68cd7c gb_audio_apbridgea_set_rx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x00a96e9e gb_audio_gb_set_rx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x202708e6 gb_audio_gb_deactivate_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x21cb8c45 gb_audio_gb_set_tx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x401b69df gb_audio_gb_activate_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x5b316a28 gb_audio_gb_set_control +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x6b04b9d3 gb_audio_gb_disable_widget +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x83741a4c gb_audio_gb_get_control +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x890075e1 gb_audio_gb_set_pcm +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xa08ca0d8 gb_audio_gb_activate_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xb9fde631 gb_audio_gb_get_pcm +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xc0b0c1e1 gb_audio_gb_deactivate_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xee5fb13e gb_audio_gb_enable_widget +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xf236c23c gb_audio_gb_get_topology EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x19e9e6b1 gb_audio_manager_remove_all EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x32e6391e gb_audio_manager_remove +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x4c989945 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 0x6e056ce3 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 0x8fb89e3a 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 0x321e06bd gb_gbphy_deregister_driver -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0xe43871f9 gb_gbphy_register_driver -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0x1cf60ce1 gb_spilib_master_exit -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0x8dee5f73 gb_spilib_master_init -EXPORT_SYMBOL_GPL drivers/staging/iio/addac/adt7316 0x2e2c375e adt7316_pm_ops -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x147aefb7 imx_media_capture_device_register -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x20333077 imx_media_pipeline_set_stream -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x22f8afab imx_media_of_add_csi -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x2a10b75d imx_media_capture_device_init +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0xc1c96ba6 gb_audio_manager_put_module +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0x43799923 gb_gbphy_register_driver +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0xb0b9e3a6 gb_gbphy_deregister_driver +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0x24b96b5d gb_spilib_master_exit +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0x61adbc7a gb_spilib_master_init +EXPORT_SYMBOL_GPL drivers/staging/iio/addac/adt7316 0xc0617a5b adt7316_pm_ops +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x061f1138 imx_media_capture_device_init +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x174830e9 imx_media_dev_notifier_register 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 0x497a73c8 imx_media_capture_device_error -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x4df51805 imx_media_add_of_subdevs +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x41264df5 imx_media_add_video_device +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x4718487f imx_media_find_subdev_by_fwnode +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x47d687cb imx_media_pipeline_video_device +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x47d8875b imx_media_capture_device_remove +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x4825e15f imx_media_pipeline_set_stream EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x534ba9e1 imx_media_find_mbus_format -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x75dd6339 imx_media_pipeline_video_device -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x7b1fb511 imx_media_dev_notifier_register -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x815437e8 imx_media_capture_device_unregister -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x8a13646e imx_media_add_video_device -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x9418c52f imx_media_find_subdev_by_fwnode +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x5db5d221 imx_media_init_cfg +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x71963efc imx_media_alloc_dma_buf +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x73027ba0 imx_media_of_add_csi +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x8c8b3371 imx_media_free_dma_buf +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x961c212c imx_media_pipeline_pad +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x970e9784 imx_media_dev_init +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x999b6f37 imx_media_capture_device_next_buf +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x9b9b3b50 imx_media_probe_complete +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x9ea1f2af imx_media_pipeline_subdev 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 0xaa433fc9 imx_media_init_cfg -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xae598eb8 imx_media_pipeline_pad -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xb003082e imx_media_get_pad_fwnode -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xb57e9686 imx_media_free_dma_buf -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xb75a846c imx_media_probe_complete -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xb8bbf3aa imx_media_capture_device_remove +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xacf34b26 imx_media_get_pad_fwnode +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xadd6cd0e imx_media_capture_device_register +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xaee28d56 imx_media_pipeline_csi2_channel +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xb7827085 imx_media_add_of_subdevs EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xba1c7b7e imx_media_mbus_fmt_to_pix_fmt EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xc0e6162e imx_media_init_mbus_fmt +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xd0a76100 imx_media_capture_device_unregister EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xd2cd6cbe imx_media_ipu_image_to_mbus_fmt EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xd4e45b7e imx_media_try_colorimetry +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xdf58c270 imx_media_capture_device_error +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xdff499ce imx_media_find_subdev_by_devname 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 0xe99f4ace imx_media_find_subdev_by_devname -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xf0193838 imx_media_pipeline_subdev -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xf12016ec imx_media_capture_device_next_buf -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xf498b910 imx_media_pipeline_csi2_channel EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xf5c8707e imx_media_mbus_fmt_to_ipu_image -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xfc85dffa imx_media_dev_init -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xfd23e5d8 imx_media_alloc_dma_buf -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x03382e81 amvdec_dst_buf_done_idx 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 0x115dfb08 amvdec_write_dos -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x12c569c7 amvdec_read_parser +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x17e8f9e8 amvdec_write_dos_bits +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x1c9baf98 amvdec_read_parser EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x1cb1e6d9 amvdec_am21c_size -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x1cf58042 amvdec_get_output_size -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x2542d27c codec_hevc_setup_buffers -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x376c9d87 amvdec_dst_buf_done -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x3fb5dd7a amvdec_clear_dos_bits -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x41a1b2f8 amvdec_set_par_from_dar -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x4beedcd7 amvdec_dst_buf_done_offset +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x221a3139 codec_hevc_free_fbc_buffers +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x36fd8575 amvdec_remove_ts +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x3e0f47a9 amvdec_dst_buf_done +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x57e07b8f codec_hevc_setup_decode_head +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x5e828f97 amvdec_write_dos EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x5ff35ee8 amvdec_am21c_head_size -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x73eafa91 codec_hevc_fill_mmu_map -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x75c84bf9 amvdec_set_canvases -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x8343889a amvdec_src_change -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x858ad517 amvdec_write_parser -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x8b6b6d1a amvdec_read_dos -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x9e35501c amvdec_abort -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xaaaf26ca codec_hevc_free_fbc_buffers -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xaf5aa269 amvdec_write_dos_bits -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xb530affd codec_hevc_free_mmu_headers -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xcf206be0 codec_hevc_setup_decode_head -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xd4f0a517 amvdec_add_ts -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xfcf885fe amvdec_remove_ts -EXPORT_SYMBOL_GPL drivers/staging/nvec/nvec 0x3f43e6cf nvec_unregister_notifier -EXPORT_SYMBOL_GPL drivers/staging/nvec/nvec 0x8bccdc4a nvec_msg_free -EXPORT_SYMBOL_GPL drivers/staging/nvec/nvec 0x8e7e1991 nvec_register_notifier -EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x08bb4099 vchiq_mmal_component_init -EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x5b44b039 vchiq_mmal_port_enable +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x785d272c amvdec_write_parser +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x92584050 amvdec_dst_buf_done_offset +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x9f6358ab amvdec_set_par_from_dar +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xa3c8d3aa amvdec_dst_buf_done_idx +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xbb5d2a5c codec_hevc_setup_buffers +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xc09b6f22 amvdec_src_change +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xc124df97 amvdec_get_output_size +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xcb1b2803 codec_hevc_fill_mmu_map +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xeabd8e1d amvdec_abort +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xf05676e5 amvdec_add_ts +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xf22705ea codec_hevc_free_mmu_headers +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xf320704f amvdec_read_dos +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xf7e20375 amvdec_clear_dos_bits +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xff1239d4 amvdec_set_canvases +EXPORT_SYMBOL_GPL drivers/staging/nvec/nvec 0x7c5dd80d nvec_unregister_notifier +EXPORT_SYMBOL_GPL drivers/staging/nvec/nvec 0xb686e6a7 nvec_register_notifier +EXPORT_SYMBOL_GPL drivers/staging/nvec/nvec 0xfe5acbc6 nvec_msg_free +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x170a81fc mmal_vchi_buffer_cleanup +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x1b49cb5a vchiq_mmal_port_set_format +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x43049b43 vchiq_mmal_port_parameter_set +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x490bb733 vchiq_mmal_port_enable EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x6192e1a2 vchiq_mmal_version -EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x725ff557 vchiq_mmal_port_parameter_get EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x73577d20 vchiq_mmal_finalise -EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x79a6da32 vchiq_mmal_component_disable -EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x8839706b vchiq_mmal_component_enable -EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x9d1d0111 vchiq_mmal_port_parameter_set -EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0xa6c20654 vchiq_mmal_component_finalise -EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0xa7fd0377 vchiq_mmal_port_set_format +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x792bc9fc vchiq_mmal_component_finalise +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x85724bda vchiq_mmal_component_enable EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0xaca4dd80 vchiq_mmal_init -EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0xc15892c0 vchiq_mmal_submit_buffer -EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0xc27ffec2 vchiq_mmal_port_connect_tunnel -EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0xc7086bd2 mmal_vchi_buffer_cleanup -EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0xd361f1f3 vchiq_mmal_port_disable -EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0xfb47e9ef mmal_vchi_buffer_init -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x186859d5 target_submit_prep -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x63592dc1 target_init_cmd -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xc7d1d521 target_queue_submission -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xeb939be5 target_submit -EXPORT_SYMBOL_GPL drivers/tee/tee 0x0b848cc9 tee_shm_put -EXPORT_SYMBOL_GPL drivers/tee/tee 0x2270b7c9 tee_shm_alloc_kernel_buf -EXPORT_SYMBOL_GPL drivers/tee/tee 0x2be5b7f7 tee_bus_type -EXPORT_SYMBOL_GPL drivers/tee/tee 0x386c9742 tee_device_alloc -EXPORT_SYMBOL_GPL drivers/tee/tee 0x52f7241a tee_shm_pool_mgr_alloc_res_mem -EXPORT_SYMBOL_GPL drivers/tee/tee 0x6c13ecdf tee_shm_register -EXPORT_SYMBOL_GPL drivers/tee/tee 0x732744e3 tee_client_open_session -EXPORT_SYMBOL_GPL drivers/tee/tee 0x7da2c2a9 teedev_close_context -EXPORT_SYMBOL_GPL drivers/tee/tee 0x82ce3974 tee_shm_pool_alloc -EXPORT_SYMBOL_GPL drivers/tee/tee 0x82eda0f1 tee_shm_alloc -EXPORT_SYMBOL_GPL drivers/tee/tee 0x830f350e tee_shm_va2pa +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0xadd62de2 vchiq_mmal_port_parameter_get +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0xbbef07cf vchiq_mmal_submit_buffer +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0xcfe14073 vchiq_mmal_port_disable +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0xe6341435 vchiq_mmal_component_disable +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0xe9eb1906 vchiq_mmal_component_init +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0xeb6704de vchiq_mmal_port_connect_tunnel +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0xed98783c mmal_vchi_buffer_init +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x20107003 target_submit +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x3887b735 target_submit_prep +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x7209a025 target_queue_submission +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xa1a22fd6 target_init_cmd +EXPORT_SYMBOL_GPL drivers/tee/tee 0x0c2b62ce tee_client_invoke_func +EXPORT_SYMBOL_GPL drivers/tee/tee 0x253c8879 teedev_open +EXPORT_SYMBOL_GPL drivers/tee/tee 0x3d40dbfd tee_device_unregister +EXPORT_SYMBOL_GPL drivers/tee/tee 0x3f65c285 tee_client_open_context +EXPORT_SYMBOL_GPL drivers/tee/tee 0x49b7d910 tee_client_open_session +EXPORT_SYMBOL_GPL drivers/tee/tee 0x528dc73e tee_shm_pa2va +EXPORT_SYMBOL_GPL drivers/tee/tee 0x6f3790f4 tee_shm_pool_alloc_res_mem +EXPORT_SYMBOL_GPL drivers/tee/tee 0x763b355a tee_device_alloc +EXPORT_SYMBOL_GPL drivers/tee/tee 0x786029e7 tee_shm_free +EXPORT_SYMBOL_GPL drivers/tee/tee 0x7adeaa9d tee_client_get_version +EXPORT_SYMBOL_GPL drivers/tee/tee 0x841a80fb tee_shm_va2pa +EXPORT_SYMBOL_GPL drivers/tee/tee 0x85650b1c tee_device_register EXPORT_SYMBOL_GPL drivers/tee/tee 0x85fd9922 tee_session_calc_client_uuid -EXPORT_SYMBOL_GPL drivers/tee/tee 0x86f27a13 tee_get_drvdata -EXPORT_SYMBOL_GPL drivers/tee/tee 0x89d96aeb tee_shm_pool_alloc_res_mem -EXPORT_SYMBOL_GPL drivers/tee/tee 0x8d50324f tee_shm_free -EXPORT_SYMBOL_GPL drivers/tee/tee 0x8f2a355f tee_shm_get_va -EXPORT_SYMBOL_GPL drivers/tee/tee 0x92097a09 tee_client_close_session -EXPORT_SYMBOL_GPL drivers/tee/tee 0x97797a99 tee_shm_get_from_id -EXPORT_SYMBOL_GPL drivers/tee/tee 0xa372fab1 tee_shm_get_pa -EXPORT_SYMBOL_GPL drivers/tee/tee 0xab192f31 tee_client_close_context -EXPORT_SYMBOL_GPL drivers/tee/tee 0xb02a99cf tee_client_open_context -EXPORT_SYMBOL_GPL drivers/tee/tee 0xb7dd8a28 tee_device_unregister -EXPORT_SYMBOL_GPL drivers/tee/tee 0xcb8235fe tee_device_register -EXPORT_SYMBOL_GPL drivers/tee/tee 0xcc5d6253 tee_shm_pool_free -EXPORT_SYMBOL_GPL drivers/tee/tee 0xd494cf34 tee_client_invoke_func -EXPORT_SYMBOL_GPL drivers/tee/tee 0xdee861be teedev_open -EXPORT_SYMBOL_GPL drivers/tee/tee 0xf0209f0a tee_client_get_version -EXPORT_SYMBOL_GPL drivers/tee/tee 0xf5faf7a1 tee_shm_pa2va +EXPORT_SYMBOL_GPL drivers/tee/tee 0x89b0145d tee_get_drvdata +EXPORT_SYMBOL_GPL drivers/tee/tee 0x8a9e1265 tee_shm_get_from_id +EXPORT_SYMBOL_GPL drivers/tee/tee 0x8fc3e78a tee_shm_put +EXPORT_SYMBOL_GPL drivers/tee/tee 0xa1029fee tee_shm_get_va +EXPORT_SYMBOL_GPL drivers/tee/tee 0xa1dccc47 tee_shm_alloc_kernel_buf +EXPORT_SYMBOL_GPL drivers/tee/tee 0xa44c2f38 teedev_close_context +EXPORT_SYMBOL_GPL drivers/tee/tee 0xad79bc2c tee_shm_alloc +EXPORT_SYMBOL_GPL drivers/tee/tee 0xb699c07f tee_client_close_context +EXPORT_SYMBOL_GPL drivers/tee/tee 0xb851f6be tee_shm_get_pa +EXPORT_SYMBOL_GPL drivers/tee/tee 0xc143b8a2 tee_shm_pool_free +EXPORT_SYMBOL_GPL drivers/tee/tee 0xcdaf108f tee_shm_pool_mgr_alloc_res_mem +EXPORT_SYMBOL_GPL drivers/tee/tee 0xd74cb39f tee_client_close_session +EXPORT_SYMBOL_GPL drivers/tee/tee 0xdd46cf1f tee_shm_pool_alloc +EXPORT_SYMBOL_GPL drivers/tee/tee 0xea393f9d tee_shm_register +EXPORT_SYMBOL_GPL drivers/tee/tee 0xf467af14 tee_bus_type EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x01d23ee1 tb_property_create_dir -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x0b79cdd3 tb_xdomain_alloc_out_hopid -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x0c606d48 tb_xdomain_response -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x1f266bec tb_xdomain_find_by_uuid -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x20fba23a tb_xdomain_release_in_hopid -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x30a850d6 tb_xdomain_alloc_in_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x025a55d8 tb_xdomain_disable_paths +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x12233e89 tb_xdomain_enable_paths +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x13fd37d3 tb_ring_poll_complete +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x18e521d4 tb_ring_stop +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x1d6e3378 tb_xdomain_lane_bonding_enable +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x20ef3d60 tb_xdomain_alloc_out_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x21517922 tb_xdomain_find_by_route +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x25180d4d tb_service_type EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x393b4f2f tb_property_free_dir -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x3e359580 tb_xdomain_find_by_route -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x405e5802 tb_ring_alloc_rx +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x4626ccf5 tb_ring_free 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 0x5259dd63 tb_ring_start -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x56c26ce3 tb_unregister_service_driver EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x603249ed tb_unregister_property_dir -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x6495820a tb_xdomain_request EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x658e3d97 tb_property_add_immediate -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x6f6804c9 __tb_ring_enqueue -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x738f4d7d tb_xdomain_lane_bonding_disable +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x67c0b558 __tb_ring_enqueue +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x68dfdafb tb_xdomain_request +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x6ed00a14 tb_xdomain_release_out_hopid EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x73ad2acb tb_property_get_next EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x785eb82c tb_property_remove -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x7b61e2bd tb_ring_stop -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x7b825178 tb_service_type -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x7d31a3c6 tb_xdomain_disable_paths +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x8007783d tb_xdomain_lane_bonding_disable EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x8b62f95e tb_property_add_dir -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x90486b92 tb_xdomain_lane_bonding_enable -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x95ddbb4d tb_xdomain_type -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x9a27cd81 tb_xdomain_enable_paths -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xa2d53072 tb_xdomain_release_out_hopid -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xa372ecbf tb_ring_free +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x8bdb2f3c tb_xdomain_release_in_hopid EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xa3d2b403 tb_property_add_data +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xa69ac704 tb_xdomain_response +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xabbe8199 tb_xdomain_find_by_uuid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xb06f0fde tb_xdomain_alloc_in_hopid EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xb7c7cdce tb_property_add_text -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xccf27d65 tb_register_service_driver -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xdca966da tb_ring_poll +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xbbd2a88b tb_register_service_driver +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xc2d821f7 tb_ring_alloc_tx +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xc5b93cae tb_ring_alloc_rx +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xcb47e778 tb_xdomain_type +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xcb93698f tb_ring_start +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xe6a5eee9 tb_ring_poll +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xeb421f3b tb_unregister_service_driver EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xf1cfd1ff tb_register_property_dir -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xf27b0d82 tb_ring_poll_complete -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xf4d04f77 tb_ring_alloc_tx EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xf76028c7 tb_unregister_protocol_handler -EXPORT_SYMBOL_GPL drivers/uio/uio 0x0202440e uio_event_notify -EXPORT_SYMBOL_GPL drivers/uio/uio 0x02666085 uio_unregister_device -EXPORT_SYMBOL_GPL drivers/uio/uio 0x5821e13b __devm_uio_register_device -EXPORT_SYMBOL_GPL drivers/uio/uio 0xd56d6eb1 __uio_register_device -EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x8abf31ba usbatm_usb_probe -EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0xf8deaa79 usbatm_usb_disconnect -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x17705ea4 cdns_suspend -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x37e9d321 cdns_resume -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x55fcd5b2 cdns_power_is_lost -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x5893ceb1 cdns_set_vbus -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xa7b0d6af cdns_drd_gadget_off -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xb4bfd67b cdns_remove -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xcd14a332 cdns_clear_vbus -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xe747a2b5 cdns_drd_gadget_on -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xe80ed541 cdns_init -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x2088e051 hw_phymode_configure -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x821c7e90 ci_hdrc_query_available_role -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x8bed47ae ci_hdrc_remove_device -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xa627e2d9 ci_hdrc_add_device -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x0d1d1557 imx_usbmisc_charger_detection -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x5cce9463 imx_usbmisc_init -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x6e6254c5 imx_usbmisc_hsic_set_clk -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x7c20f3b5 imx_usbmisc_set_wakeup -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xac865054 imx_usbmisc_hsic_set_connect -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xb91594e0 imx_usbmisc_init_post -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x1fc67657 ulpi_unregister_interface -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x49f890e5 ulpi_read -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x68b7dfa1 __ulpi_register_driver -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x6e6d9979 ulpi_register_interface -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xc372040e ulpi_unregister_driver -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xf9fbd00f ulpi_write -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x1505e280 u_audio_stop_playback -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x1d8c5b25 g_audio_cleanup -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x2f9ddf22 u_audio_start_capture -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x38a237eb u_audio_start_playback -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x4ba2a012 u_audio_get_mute -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x8aa739dd u_audio_stop_capture -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xa55d8d2d u_audio_set_mute -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xa70614f1 u_audio_get_volume -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xc3648454 u_audio_set_volume -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xe6848192 g_audio_setup -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x0550012f gether_get_host_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x1e05cb31 gether_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x2a964e16 gether_set_host_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x2e09fd56 gether_setup_name -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x303a56d3 gether_get_dev_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x45cffd4a gether_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x4fdda12a gether_set_ifname -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x6459ea5b gether_set_gadget -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x71891288 gether_get_ifname -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x82d34194 gether_register_netdev +EXPORT_SYMBOL_GPL drivers/uio/uio 0x0dfaf693 __devm_uio_register_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0x4c4a3e8c __uio_register_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0x9a798e97 uio_event_notify +EXPORT_SYMBOL_GPL drivers/uio/uio 0xe0e7a632 uio_unregister_device +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x1c99ec2c usbatm_usb_disconnect +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x3acfb625 usbatm_usb_probe +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x1029e901 cdns_suspend +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x233987e1 cdns_set_vbus +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x622ea904 cdns_clear_vbus +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x8d666803 cdns_init +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xaa7e18a9 cdns_power_is_lost +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xb988e528 cdns_remove +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xbdf83934 cdns_drd_gadget_off +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xe372be7c cdns_drd_gadget_on +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xf4ce246a cdns_resume +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x2a730693 ci_hdrc_add_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x58bf8874 ci_hdrc_query_available_role +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x7d0a0692 hw_phymode_configure +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x8a8011e4 ci_hdrc_remove_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x0b5d3558 imx_usbmisc_init +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x266495bb imx_usbmisc_set_wakeup +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x375fa68a imx_usbmisc_init_post +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x8fda5eef imx_usbmisc_charger_detection +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x97b69ab9 imx_usbmisc_hsic_set_connect +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xaf429c1f imx_usbmisc_hsic_set_clk +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x33e8e9c8 ulpi_write +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x863df2d4 ulpi_register_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x8f74ea4c __ulpi_register_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x96015d0b ulpi_read +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xc51d7d63 ulpi_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xe17cf072 ulpi_unregister_interface +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x0178a563 u_audio_stop_playback +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x16149ce7 g_audio_setup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x17480743 u_audio_start_capture +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x19d0cd1d u_audio_get_mute +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x4698412a u_audio_get_volume +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x4f20753d u_audio_set_volume +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x506ce11b g_audio_cleanup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x5a650485 u_audio_start_playback +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xc4238fdb u_audio_set_mute +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xd447fcfc u_audio_stop_capture +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x0408605d gether_set_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x16eafd43 gether_setup_name_default +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x249c2230 gether_set_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x2581a621 gether_get_host_addr_u8 +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x3d87aa69 gether_set_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x4287426f gether_get_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x53965a45 gether_set_ifname +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x61cc27b2 gether_setup_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x83c9da52 gether_set_gadget EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8878cfa6 gether_cleanup -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x9792221b gether_get_host_addr_u8 -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x9ac565d0 gether_get_qmult -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xa0d3292c gether_set_dev_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xbfb5f9da gether_get_host_addr_cdc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xf4aa45d9 gether_setup_name_default -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xf82b5ce4 gether_set_qmult -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x09d8350f gserial_suspend +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8ac49ebb gether_register_netdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xb11117cd gether_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xba27eadb gether_get_host_addr_cdc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xbde715e1 gether_get_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xc4ed5575 gether_get_ifname +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xec7676a1 gether_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xfdee7e93 gether_get_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x1c4ddaba gserial_connect EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x33bfdca2 gserial_alloc_line EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x4a3df9d0 gs_alloc_req -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x521a015b gserial_resume EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x60db48f5 gserial_get_console EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x60ea48a0 gs_free_req -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x6efcb7be gserial_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x6202525d gserial_suspend +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xa5aae95a 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 0xe84907c0 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 0xedcdfc88 gserial_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x57c06182 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 0xdd2cedbe ffs_single_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x07f45cb3 fsg_common_remove_lun -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x08a71c7a fsg_lun_fsync_sub +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x75de3be0 ffs_name_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0xc5aeafa4 ffs_single_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x05581a9e fsg_show_removable EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x141fce2a fsg_common_remove_luns +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x162e094b fsg_store_nofua 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 0x17fdce0d fsg_show_ro EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1ccb58f7 fsg_common_set_num_buffers -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2280d043 fsg_show_file -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x250c45ec 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 0x32a1558c fsg_show_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 0x3dcbc1f1 fsg_store_inquiry_string 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 0x48fa24f3 fsg_store_inquiry_string -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x527d8f78 fsg_lun_close +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x4dc2871d fsg_store_removable 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 0x5c36ccbb fsg_store_file -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x64e4ccbb fsg_lun_open +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x5ba6c176 fsg_show_ro EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x6acb4179 fsg_common_set_inquiry_string -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7da92740 fsg_store_ro +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x787840f7 fsg_common_remove_lun +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x78c51ea2 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 0x7fa50caa fsg_store_cdrom +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x82d2d829 fsg_show_file EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x857b6dc2 fsg_hs_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x8a6904e3 fsg_show_cdrom +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x8db99424 fsg_common_set_cdev EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x95cffb3e fsg_hs_bulk_in_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x984653d1 fsg_common_set_cdev 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 0xa56ad33d fsg_store_removable +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x9e59fdf9 fsg_lun_fsync_sub 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 0xa93b505d fsg_store_nofua +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa8caf8f1 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 0xadcb28f6 fsg_show_nofua 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 0xb60e7747 fsg_show_inquiry_string -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb8368bdc fsg_show_cdrom -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xc6ff0d7a fsg_store_cdrom -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xcb7c02cd fsg_show_removable +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xcb1d8eff fsg_store_ro 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 0xe655ac4e fsg_store_file EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf4efc0c8 fsg_ss_bulk_out_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x07496d56 rndis_deregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x12d4283e rndis_borrow_net -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x13802f42 rndis_set_param_vendor -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x2cf8f7fd rndis_signal_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x2df63b7f rndis_msg_parser -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x31d27159 rndis_free_response -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x3c6f7778 rndis_rm_hdr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x4618391a rndis_set_param_medium -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x67ded46c rndis_register -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x991d367a rndis_uninit -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xa69524fc rndis_add_hdr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xb4b95426 rndis_set_param_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xb7757396 rndis_set_host_mac -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xbaf8dc21 rndis_get_next_response -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xdd154f5c rndis_signal_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x2e7b67b8 rndis_signal_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x32a5e80c rndis_msg_parser +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x4e7ca97b rndis_rm_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x554515ed rndis_set_host_mac +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x80d3f838 rndis_set_param_vendor +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x847da4b2 rndis_free_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x8939894d rndis_add_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x8f970ae7 rndis_get_next_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x94d6579f rndis_set_param_medium +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xa338e4eb rndis_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xb6a27695 rndis_signal_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xce0f40b6 rndis_uninit +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xd0a3c069 rndis_set_param_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xe71412ca rndis_borrow_net +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xf04c231a rndis_deregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x084d451a usb_composite_probe EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0c589aba usb_validate_langid +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0c8d891c usb_free_all_descriptors EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0cb7e477 usb_ep_autoconfig_release -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0e01db36 usb_put_function_instance -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x24cb8c4a usb_put_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x10491395 usb_string_ids_tab +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x1105d371 usb_ep_autoconfig +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x130d5976 usb_put_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x157c1623 usb_get_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x16e5973b usb_function_activate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x18c2a33d usb_composite_overwrite_options +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2173176a config_ep_by_speed_and_alt EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2e09263f usb_copy_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2ef0f1e1 usb_composite_unregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2fb0faec config_ep_by_speed -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3243be44 usb_remove_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3388af83 unregister_gadget_item -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3fda57fd usb_function_deactivate -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x47cf7193 usb_otg_descriptor_init +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x412c59d8 usb_function_deactivate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x42d0e538 usb_composite_setup_continue +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4a954d32 usb_interface_id EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4beb505d usb_gadget_get_string -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x56762604 usb_function_register -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x58b4739e usb_string_id -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5ba18fc3 usb_composite_setup_continue -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x647934ae usb_string_ids_n -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x66784707 usb_add_config -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6a136f43 usb_assign_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x756eef3b usb_function_unregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7773c261 usb_composite_probe -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7937fc34 usb_add_config_only -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7d847ef1 usb_gstrings_attach -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8028a09c usb_add_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8c850185 usb_ep_autoconfig_ss -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa0fd97be usb_interface_id -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa3e4f068 config_ep_by_speed_and_alt -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa3ef4cdf usb_function_activate -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa627c76d usb_ep_autoconfig_reset -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa65adfa2 usb_get_function_instance -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xac893790 usb_get_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x51876f89 usb_function_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x53fa7058 usb_composite_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6f4225e2 usb_add_config +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x817ade4d usb_otg_descriptor_alloc +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x81a5cfca usb_otg_descriptor_init +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x83152b27 usb_add_config_only +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8813827d unregister_gadget_item +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8c2b050b usb_get_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x9497119c usb_remove_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x9fbf682c usb_gstrings_attach +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xaffccfb6 usb_ep_autoconfig_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb7341e59 usb_string_ids_n EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb775db55 alloc_ep_req -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xbfe91fc9 usb_string_ids_tab +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xbeca21f8 usb_string_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc1cd3464 config_ep_by_speed +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd2dd3496 usb_ep_autoconfig_ss EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd2ea2134 usb_descriptor_fillbuf -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xdaa25d09 usb_composite_overwrite_options -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf1300c2e usb_ep_autoconfig +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xdb5c29dd usb_function_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe2c83b00 usb_put_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xea315713 usb_assign_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xecc104e0 usb_add_function EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf474a207 usb_gadget_config_buf -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf7cfb415 usb_free_all_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf8462595 usb_otg_descriptor_alloc -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x1e7c35ee udc_basic_init -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x3a44216b gadget_release -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x5457f76d free_dma_pools -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x5c1d0446 udc_probe +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x4d25968f empty_req_queue EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x5d01d078 udc_irq -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x9946393b udc_enable_dev_setup_interrupts -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x9acc1efe init_dma_pools -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xb210ee7a udc_mask_unused_interrupts -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xf4714f0c udc_remove -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xfa424c7b empty_req_queue +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x7076cf50 udc_basic_init +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x82ddc721 init_dma_pools +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x8e41e6bd udc_mask_unused_interrupts +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xa85d6925 gadget_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xd96c65a8 free_dma_pools +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xdf1b734d udc_enable_dev_setup_interrupts +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xdfcc8b7d udc_remove +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xe3c60208 udc_probe EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x01b12bfb usb_ep_free_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x08a5751d usb_gadget_wakeup EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x0a8c3b4b usb_ep_set_halt EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x0acfe2e7 usb_ep_set_wedge -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x0d5a664f usb_gadget_deactivate EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x0d90d784 usb_ep_fifo_flush -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x23eee8d1 usb_udc_vbus_handler -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x36fc5b56 usb_add_gadget_udc_release -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x45dff4d5 usb_gadget_ep_match_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x11b21502 usb_gadget_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x133168f4 usb_gadget_check_config +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x185611a5 usb_gadget_vbus_draw +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x1ca0fc5f usb_udc_vbus_handler +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x2415a0c4 usb_add_gadget_udc_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x2fbf6109 usb_gadget_frame_number +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x33ec3639 usb_gadget_vbus_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x3ea069c9 usb_add_gadget EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x49d9f030 usb_ep_fifo_status EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x506ab3a9 usb_ep_queue EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x50b88f41 usb_get_gadget_udc_name -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x58d362d6 usb_gadget_vbus_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x5dc106db usb_del_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x5ebad5a6 usb_gadget_wakeup EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x5fc294ef usb_ep_clear_halt -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x60398cd4 usb_gadget_vbus_draw -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x6125db70 usb_gadget_unmap_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x674dae40 usb_gadget_udc_reset -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x69ce3f55 usb_gadget_activate -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x6b675031 usb_gadget_set_selfpowered -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x790e3e18 usb_gadget_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x70d40aed usb_gadget_set_state +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x779a3154 usb_initialize_gadget EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x7a41b9f2 usb_ep_set_maxpacket_limit +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x7ae80d5e usb_gadget_map_request_by_dev EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x7be89624 usb_gadget_giveback_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x7d934523 gadget_find_ep_by_name -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x822fa753 usb_gadget_map_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x82ae7b03 usb_gadget_map_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x87155808 usb_del_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x874c264c usb_gadget_unmap_request_by_dev EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x882077d5 usb_ep_dequeue +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x8e6163cf usb_gadget_unmap_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x92086ab3 usb_gadget_deactivate +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x92e546be usb_gadget_probe_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x987c5636 usb_gadget_udc_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x9a79f0ef usb_gadget_vbus_connect EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x9eb52803 usb_ep_disable -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa5eabac0 usb_gadget_connect EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa9e74462 usb_ep_alloc_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xae70f8bd usb_gadget_unregister_driver EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xaf201fa6 usb_ep_enable -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc577c9e5 usb_gadget_check_config -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc7472f07 usb_gadget_unmap_request_by_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xca1ff9ee usb_gadget_set_state -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xcd4a6328 usb_gadget_vbus_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xd00930d3 usb_gadget_clear_selfpowered -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xd35e829f usb_del_gadget -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xd5516237 usb_gadget_probe_driver -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xe34b7ffd usb_add_gadget_udc -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xe50faf40 usb_gadget_map_request_by_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xe546aacb usb_add_gadget -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xe6aac259 usb_del_gadget_udc -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xf4c82e7e usb_gadget_frame_number -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xfa1f0a3b usb_gadget_unregister_driver -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xfa62bef6 usb_initialize_gadget -EXPORT_SYMBOL_GPL drivers/usb/host/xhci-pci-renesas 0x16f7751f renesas_xhci_check_request_fw -EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x34147a4a ezusb_fx1_ihex_firmware_download -EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x709f2298 ezusb_fx1_set_reset -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x0ea6c4ec usb_ftdi_elan_edset_single -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x2674d1b9 usb_ftdi_elan_write_pcimem -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x7dd58c9c usb_ftdi_elan_edset_setup -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x7e021d58 usb_ftdi_elan_edset_empty -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x924b06e0 ftdi_elan_gone_away -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x9710b3a2 usb_ftdi_elan_edset_output -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x9ef0fb7c usb_ftdi_elan_read_pcimem -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xd69f63ac usb_ftdi_elan_edset_flush -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xdced909c usb_ftdi_elan_edset_input -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x09432989 musb_set_peripheral +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xb9c3bb54 usb_gadget_ep_match_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xbb80f19d usb_gadget_set_selfpowered +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xbd6969d0 usb_gadget_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc9839128 usb_add_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xcb3a494e usb_gadget_clear_selfpowered +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xeae51188 usb_gadget_activate +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xed163ff1 gadget_find_ep_by_name +EXPORT_SYMBOL_GPL drivers/usb/host/xhci-pci-renesas 0xe6b8a444 renesas_xhci_check_request_fw +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x11f472dd ezusb_fx1_ihex_firmware_download +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x70b260e4 ezusb_fx1_set_reset +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x0a496f2d usb_ftdi_elan_write_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x0b140f0a usb_ftdi_elan_edset_output +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x2860120a ftdi_elan_gone_away +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x4254523a usb_ftdi_elan_read_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x56c86fcd usb_ftdi_elan_edset_single +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x595bd053 usb_ftdi_elan_edset_empty +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x8ec1ed4d usb_ftdi_elan_edset_input +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x9e53a28a usb_ftdi_elan_edset_setup +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xa8be017a usb_ftdi_elan_edset_flush +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x0557acb6 musb_get_mode 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 0x16a98006 musb_root_disconnect EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x2734197f musb_readb -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x553c031d musb_root_disconnect +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x586b6b96 musb_set_peripheral EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x669594ad musb_clearw EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x6af8c6dc musb_writel EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x719a5e41 musb_readw -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x82da4372 musb_interrupt EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xade3e56c musb_writew -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xafadb84c musb_get_mode -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xd7fa02f2 musb_set_host -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xe36c643f musb_queue_resume_work +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xb86ac254 musb_set_host +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xc917285d musb_interrupt EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xe59efb0e musb_clearb +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xf0341e80 musb_queue_resume_work EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xf0f95e51 musb_readl -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x1b47f5d3 usb_phy_generic_unregister -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x25c9b9f6 usb_gen_phy_init -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x48d3b2c5 usb_phy_generic_register -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0xf8278007 usb_phy_gen_create_phy -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0xf98e2419 usb_gen_phy_shutdown -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-isp1301 0x369cf2d5 isp1301_get_client -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0x1c11ea8d tegra_ehci_phy_restore_end -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0x34d5928f tegra_usb_phy_postresume -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0x4797ce3e tegra_usb_phy_preresume -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0x91d438ec tegra_ehci_phy_restore_start -EXPORT_SYMBOL_GPL drivers/usb/serial/usb_wwan 0xdebe61e1 usb_wwan_port_probe -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x19e94d8f usb_serial_generic_tiocmiwait -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x27222ed7 usb_serial_generic_write -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x3d841d5c usb_serial_generic_unthrottle -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x5226fff1 usb_serial_generic_write_start -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x539286d9 usb_serial_generic_open -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x56423527 usb_serial_generic_submit_read_urbs -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x59906b92 usb_serial_generic_write_bulk_callback -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x74e69483 usb_serial_handle_dcd_change -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x76a0c7c8 usb_serial_generic_process_read_urb -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x97de51f8 usb_serial_port_softint -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x9dcc6155 usb_serial_generic_wait_until_sent -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xaffc6461 usb_serial_generic_throttle -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xb30a9158 usb_serial_generic_close -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xb98b1bb2 usb_serial_generic_chars_in_buffer -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xc681bb59 usb_serial_generic_get_icount -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xd5885eb4 usb_serial_generic_resume -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xe98c0edd usb_serial_generic_read_bulk_callback -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xee341ccc usb_serial_register_drivers -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xf852024a usb_serial_claim_interface -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xfc59062f usb_serial_deregister_drivers -EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0x2ab8183a dp_altmode_remove -EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0xda272c57 dp_altmode_probe -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0x67e944e8 tcpci_register_port +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x6e1d5076 usb_phy_generic_unregister +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x774372fd usb_gen_phy_init +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0xc6b49b41 usb_gen_phy_shutdown +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0xd233a554 usb_phy_generic_register +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0xe2772143 usb_phy_gen_create_phy +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-isp1301 0x4b586f8c isp1301_get_client +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0x300872ed tegra_ehci_phy_restore_end +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0xd74c1aac tegra_usb_phy_preresume +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0xe025355e tegra_ehci_phy_restore_start +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0xe1d5e3b0 tegra_usb_phy_postresume +EXPORT_SYMBOL_GPL drivers/usb/serial/usb_wwan 0xd2dca49c usb_wwan_port_probe +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x1100ab56 usb_serial_generic_tiocmiwait +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x11a06266 usb_serial_generic_submit_read_urbs +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x1fa2728d usb_serial_handle_dcd_change +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x28672152 usb_serial_generic_write_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x2e2038b5 usb_serial_generic_chars_in_buffer +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x3a603326 usb_serial_generic_get_icount +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x4b8db05f usb_serial_generic_unthrottle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x50ee6d96 usb_serial_deregister_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x595d3481 usb_serial_generic_wait_until_sent +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x5bce1ad6 usb_serial_port_softint +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x5ea836fc usb_serial_generic_close +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x70ffaae5 usb_serial_generic_throttle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x7a7f8e32 usb_serial_generic_read_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x8a102f11 usb_serial_generic_write_start +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x94e41f36 usb_serial_claim_interface +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x986c41d0 usb_serial_generic_process_read_urb +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x9fc07992 usb_serial_register_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xa47a1a39 usb_serial_generic_open +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xb2d2fd75 usb_serial_generic_write +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xc87bf429 usb_serial_generic_resume +EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0x66039621 dp_altmode_probe +EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0xc6b958d9 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 0xc529e32e tcpci_unregister_port +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0xd6b30a53 tcpci_register_port EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x10ec6d2d tcpm_sink_frs -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x2449d580 tcpm_register_port EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x3b84657b tcpm_pd_transmit_complete EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x76eeda4b tcpm_unregister_port EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x9e0bd753 tcpm_pd_hard_reset +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xb25ff1e6 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 0x00258668 typec_partner_register_altmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x04364deb typec_mux_get_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x07ec1eed typec_register_port -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x0997d4ff typec_unregister_partner -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x0bf5229d typec_port_register_altmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x0cf555ae typec_partner_set_num_altmodes -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x11a0510e typec_get_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x168e6583 __typec_altmode_register_driver -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x1dcb7afb typec_mux_set -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x1facc56a typec_unregister_plug -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x21462d0b typec_mux_put -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x21e79a90 typec_altmode_vdm +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x082dfde6 typec_register_partner +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x0c7ca28b typec_set_pwr_opmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x12aba45f typec_altmode_update_active +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x158a57df typec_mux_register +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x15b81b98 typec_altmode_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x170344f5 typec_set_vconn_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x20dc84da typec_register_port EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2d1e301d typec_find_power_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x3adea705 typec_cable_set_identity -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x3e90912b typec_match_altmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x47580929 typec_altmode_unregister_driver -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x49062518 typec_altmode_notify -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x4ce2daef typec_altmode_enter -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5235e35c typec_switch_register -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x569794fc typec_altmode_get_plug -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x56d8d850 typec_altmode_update_active -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5a13a01a fwnode_typec_switch_get -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5a749e20 typec_cable_is_active -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5dfe442a typec_partner_set_svdm_version -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5eb572c4 typec_set_vconn_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x66c9565e fwnode_typec_mux_get -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6aa09d95 typec_set_orientation -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6b52ff78 typec_get_orientation -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x71a82c38 typec_set_mode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x77b7d344 typec_set_pwr_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7c3021c0 typec_switch_put -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7e953a0b typec_altmode_put_plug -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7ffad32f typec_switch_set_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x834598e8 typec_plug_set_num_altmodes -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x8b02c006 typec_partner_set_pd_revision -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x8d541524 typec_plug_register_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2fa0eac8 typec_altmode_exit +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x335a0a86 typec_register_cable +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x375a04d9 typec_mux_set +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x3d6172c2 typec_partner_set_identity +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x451417b8 typec_switch_register +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x459e9b63 fwnode_typec_switch_get +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x47b1dadc typec_altmode2port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x4823aae4 typec_altmode_put_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x4c185dc1 typec_match_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x4c807a2f __typec_altmode_register_driver +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x4f6b9631 typec_altmode_attention +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x50450771 typec_partner_register_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x520af48e typec_get_negotiated_svdm_version +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x58663977 typec_partner_set_pd_revision +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5a50ab64 typec_cable_set_identity +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5cf0bfca typec_switch_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x669ddd39 typec_cable_put +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x67c14f24 fwnode_typec_mux_get +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x698ec0ef typec_altmode_notify +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6efe4338 typec_switch_set_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x715f9bb5 typec_unregister_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x71a7d93a typec_partner_set_svdm_version +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x736069fd typec_altmode_get_partner +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x74bff127 typec_set_mode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x75ff0242 typec_set_orientation +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x794c7984 typec_altmode_vdm +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x885fc677 typec_altmode_get_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x8ac73c02 typec_altmode_enter +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x8e2fdcdb typec_mux_put EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9049491e typec_find_port_data_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x93423390 typec_switch_set -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x953329b0 typec_mux_set_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x99bc1cea typec_unlink_port -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9df5cf8f typec_unregister_cable -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9f63e0b8 typec_switch_get_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9fd1f3e4 typec_mux_register +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x917f5c94 typec_mux_set_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9a353a49 typec_unlink_port EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa254de98 typec_find_orientation -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa67b3e8b typec_altmode_exit -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa8d27284 typec_register_cable -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xad4e4a8c typec_altmode_attention -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb2f8b2c2 typec_cable_put -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb386a1bd typec_get_negotiated_svdm_version -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb4fbdce3 typec_partner_set_identity -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb5e7ec27 typec_cable_get -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb61ee30b typec_register_partner -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb7ad8360 typec_unregister_altmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb7e8ba72 typec_altmode2port -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc98e0c2b typec_register_plug -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xce319e68 typec_link_port -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd1208610 typec_set_pwr_opmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xdfad65b8 typec_set_data_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe0323292 typec_mux_unregister -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe621e731 typec_unregister_port -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe9eaa53f typec_switch_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa5e2c163 typec_unregister_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb0ec288e typec_register_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xbc76ddca typec_switch_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc1241a5f typec_switch_set +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc2960a1e typec_unregister_partner +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc45c9016 typec_mux_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc9683779 typec_link_port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xca153e59 typec_port_register_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xca32315c typec_set_data_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xcbd3af54 typec_get_orientation +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xdb5cd50b typec_port_register_altmodes +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe2bab75a typec_switch_put +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe5119b0e typec_cable_is_active +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xea74c338 typec_plug_register_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xeaafdf98 typec_set_pwr_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xeac7332e typec_plug_set_num_altmodes EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xeafc1eb8 typec_find_port_power_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf0f65faa typec_altmode_get_partner +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xeafede52 typec_cable_get +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xeb45ca55 typec_mux_get_drvdata EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf1234a8b typec_find_pwr_opmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xfdbffa14 typec_port_register_altmodes -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x0cdab64e ucsi_unregister -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x65aa1cf2 ucsi_register -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x6c414582 ucsi_create -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x7ca19eb3 ucsi_send_command -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xaff6810e ucsi_resume -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xb5158e90 ucsi_destroy -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xda2be7ad ucsi_connector_change -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xda838e82 ucsi_set_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xe62902d4 ucsi_get_drvdata -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x4d5735f1 usbip_alloc_iso_desc_pdu -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x7017ea33 usbip_event_add -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x746448af usbip_recv_xbuff +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf43cac46 typec_unregister_cable +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xfa2f517f typec_partner_set_num_altmodes +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xfa69216f typec_unregister_port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xffe6b380 typec_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x08e5319e ucsi_register +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x26ade8ef ucsi_set_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x3065dd1d ucsi_create +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x34b1d8c9 ucsi_connector_change +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x94fe8d44 ucsi_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xb6c5eaf9 ucsi_send_command +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xe84b7e84 ucsi_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xeed04806 ucsi_resume +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xf0a1fd46 ucsi_destroy +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x0a874efe usbip_pad_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x10b89037 dev_attr_usbip_debug +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x136b3b4a usbip_recv +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x2b3958e6 usbip_event_happened +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x2ec70b8b usbip_stop_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x50499de2 usbip_in_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x73ed5bc1 usbip_recv_iso EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x78b72f44 usbip_debug_flag -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x7bd8ce82 usbip_stop_eh -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x9b80bcd6 usbip_in_eh -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xabd3bef6 dev_attr_usbip_debug -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xc30600be usbip_start_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x78fa6554 usbip_alloc_iso_desc_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xb472afc4 usbip_pack_pdu EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd02753dc usbip_header_correct_endian -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xdd01a006 usbip_pack_pdu -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe14376e5 usbip_pad_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd1554c76 usbip_recv_xbuff +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd539a7be usbip_start_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xdb112ab5 usbip_dump_urb +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xdc43b2de usbip_event_add EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe1ea0586 usbip_dump_header -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe4e89f24 usbip_recv -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xf7b09fa8 usbip_recv_iso -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xfe26a21c usbip_event_happened -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xffc195cb usbip_dump_urb -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x0f5964f5 _vdpa_register_device -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x135f936b _vdpa_unregister_device -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x18dd09d7 __vdpa_alloc_device -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x38e1d9f1 vdpa_mgmtdev_unregister -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x3953cf8a __vdpa_register_driver -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x6ab93bd2 vdpa_unregister_device -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x6ec1a39b vdpa_mgmtdev_register -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xb8beed1a vdpa_unregister_driver -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xed4d1c00 vdpa_register_device -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa_sim/vdpa_sim 0x38dd1aa3 vdpasim_create -EXPORT_SYMBOL_GPL drivers/vfio/mdev/mdev 0xd792c8fb mdev_bus_type -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x07c1e68c vfio_pci_core_close_device -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x398679df vfio_pci_register_dev_region -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x4040c81f vfio_pci_core_unregister_device -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x4ad97306 vfio_pci_core_init_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x005e4ec8 vdpa_unregister_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x11ef2654 _vdpa_unregister_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x612a4bb7 vdpa_register_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xca8a85a2 vdpa_unregister_driver +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xe05ceb03 vdpa_mgmtdev_register +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xf65eafa4 _vdpa_register_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xf7a238b0 __vdpa_alloc_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xf8d6bc4b vdpa_mgmtdev_unregister +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xfbf04f97 __vdpa_register_driver +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa_sim/vdpa_sim 0x687fbd36 vdpasim_create +EXPORT_SYMBOL_GPL drivers/vfio/mdev/mdev 0x39d1aae3 mdev_bus_type +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x099a7e73 vfio_pci_core_sriov_configure +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x19dd8253 vfio_pci_core_disable +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x1a3b3313 vfio_pci_core_unregister_device +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x3670cbdc vfio_pci_core_read +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x37c7ee42 vfio_pci_core_enable +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x43409e87 vfio_pci_core_ioctl EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x4cf699b8 vfio_pci_core_set_params -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x4d8e7e1e vfio_pci_core_mmap -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x6008b343 vfio_pci_core_match -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x7ca3793e vfio_pci_core_uninit_device -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x82ad2a70 vfio_pci_core_sriov_configure -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x8865c7a0 vfio_pci_core_err_handlers -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x8ce74c89 vfio_pci_core_disable -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xa29b7d36 vfio_pci_core_register_device -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xa3569066 vfio_pci_core_ioctl -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xc85e8fab vfio_pci_core_request -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xda413b07 vfio_pci_core_read -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xe6f226e2 vfio_pci_core_enable -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xe8e9a636 vfio_pci_core_write -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xeb27da86 vfio_pci_core_finish_enable -EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x0cd053fd vfio_platform_unregister_reset -EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x4102ae2f vfio_platform_remove_common -EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x697da5a0 __vfio_platform_register_reset -EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xef954905 vfio_platform_probe_common -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x01da1a85 vfio_iommu_group_put -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x0bae9e74 vfio_iommu_group_get -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x0c4cc398 vfio_unregister_group_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x111d4393 vfio_device_get_from_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x1bf74014 vfio_device_put -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x1de26290 vfio_unregister_iommu_driver -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x2f47916f vfio_init_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x62e1a6a6 vfio_pci_register_dev_region +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x66485f3c vfio_pci_core_request +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x6ae4326f vfio_pci_core_uninit_device +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x6d5fb417 vfio_pci_core_write +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x8d6a2611 vfio_pci_core_close_device +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xab6f325e vfio_pci_core_register_device +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xb43e1ba0 vfio_pci_core_mmap +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xc9ddfa87 vfio_pci_core_finish_enable +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xccc093af vfio_pci_core_err_handlers +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xe75bdd48 vfio_pci_core_init_device +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xe8274c05 vfio_pci_core_match +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x7b947836 vfio_platform_probe_common +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x8697403c vfio_platform_unregister_reset +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xb449e702 __vfio_platform_register_reset +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xfe4aab7f vfio_platform_remove_common +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x0bfaed58 vfio_register_group_dev EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x3567743b vfio_external_user_iommu_id -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x44175003 vfio_register_group_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x4a683448 vfio_group_get_external_user +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x4026ab90 vfio_external_group_match_file EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x5b35c4f9 vfio_group_set_kvm EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x60a634c4 vfio_info_cap_add -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x66543802 vfio_group_get_external_user_from_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x8c31e28a vfio_uninit_group_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x9ffe7781 vfio_assign_device_set -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xb4a5c2c5 vfio_group_iommu_domain -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xba291d5d vfio_register_iommu_driver +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x6c2974a7 vfio_assign_device_set +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x71c08d56 vfio_group_iommu_domain +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x73ee1bf8 vfio_group_get_external_user_from_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x7504bb51 vfio_group_get_external_user +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x7a7e76d0 vfio_register_iommu_driver +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x8bb4e536 vfio_iommu_group_get +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xa040a19e vfio_uninit_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xbaa8a348 vfio_init_group_dev EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc1d989c5 vfio_external_check_extension +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc3098e79 vfio_device_get_from_dev EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc4913442 vfio_group_put_external_user -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xe90a55b2 vfio_external_group_match_file -EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0xc011bc57 vfio_virqfd_disable -EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0xc8091044 vfio_virqfd_enable -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x019f2f3a vhost_vring_ioctl -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0efd1738 vhost_poll_start -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0fad0122 vhost_enqueue_msg -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x25700738 vhost_dev_cleanup -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x267b1274 vhost_work_dev_flush -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2da43b67 vhost_has_work -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x354473c7 vhost_dev_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x374082df vhost_log_access_ok -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3b5a476c vhost_dev_stop -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3de25662 vhost_poll_flush -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x413e3d85 vhost_vq_access_ok -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x54433bac vhost_set_backend_features -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5b02f17b vhost_vq_avail_empty -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x62f14d05 vhost_dev_has_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6ea24193 vhost_chr_read_iter -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7c344cf0 vhost_dev_check_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7d19805e vhost_disable_notify -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x85c2a7a3 vhost_poll_queue -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8744a08d vhost_exceeds_weight -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8d92ee76 vhost_discard_vq_desc -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8f2c452b vhost_dev_ioctl -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8f9732a1 vhost_poll_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x924cf81b vhost_enable_notify -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9d70fab7 vhost_poll_stop -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa47197d7 vhost_new_msg -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa73d668a vhost_get_vq_desc +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xcc7701dc vfio_unregister_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xd5107a68 vfio_device_put +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xe4270971 vfio_iommu_group_put +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xf31f6ebe vfio_unregister_iommu_driver +EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0x788e5b44 vfio_virqfd_enable +EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0x7989bcf0 vfio_virqfd_disable +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x009bc5e5 vhost_discard_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0dbc8d0e vhost_dev_set_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x16a529e2 vhost_poll_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x21cf3b85 vhost_has_work +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2e0c0cfc vhost_add_used_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x33b5fa23 vhost_chr_read_iter +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4bbc5a81 vhost_log_write +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x56d0fe7f vq_meta_prefetch +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x60887e3e vhost_add_used +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x60e5282b vhost_enqueue_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6132093a vhost_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x62fb213d vhost_exceeds_weight +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x639d9dc8 vhost_dev_has_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6de62d97 vhost_vq_avail_empty +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x700bfc95 vhost_disable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7a32d0d2 vhost_dev_reset_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x86aa3c7f vhost_vring_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8c48cd79 vhost_dev_cleanup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8d67a7a7 vhost_dev_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9934352c vhost_work_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9bed354c vhost_poll_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa3fe8e6f vhost_set_backend_features EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa909cfc5 vhost_work_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb176b0c4 vhost_vq_init_access -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xbc318baf vhost_dev_set_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xbe3237a1 vhost_dev_reset_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc21be6f9 vhost_signal -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc4eafee4 vhost_init_device_iotlb -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc922acfd vhost_add_used_and_signal -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd1ae56bd vq_meta_prefetch -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd59e8905 vhost_log_write -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd9766b5a vhost_work_queue -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe57a22e5 vhost_add_used_n -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf40b8858 vhost_add_used_and_signal_n -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf51d6127 vhost_dequeue_msg -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfc0b4dd7 vhost_vq_is_setup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xaa644ad2 vhost_dev_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xaf1b7795 vhost_get_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb04554af vhost_enable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb5c1caec vhost_poll_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xbd009312 vhost_poll_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc6f1dfa1 vhost_log_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xce61cf1d vhost_dev_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xce88cd12 vhost_init_device_iotlb +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xcebdf5f9 vhost_dequeue_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd16ca80e vhost_poll_start +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd4d13449 vhost_add_used_and_signal_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xdd321f91 vhost_vq_is_setup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe1b94ea5 vhost_dev_check_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xeb2f69b6 vhost_new_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf15aeb12 vhost_vq_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf407d3a6 vhost_work_dev_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf663b183 vhost_add_used_and_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfca2b027 vhost_vq_init_access EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfd2b3e45 vhost_dev_reset_owner_prepare -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfe9c7276 vhost_add_used 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 @@ -17113,393 +17197,392 @@ 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 0x0f8da994 ili9320_shutdown -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x1b93ff85 ili9320_resume -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x30922d43 ili9320_probe_spi -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x6b56e090 ili9320_suspend -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x7070ad34 ili9320_write -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xc9b76491 ili9320_remove -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xda33ce5a ili9320_write_regs -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0xda5306d4 fb_ddc_read -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x7266fd57 fb_sys_write -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0xc910d2a4 fb_sys_read -EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x995dc9b0 sis_free_new -EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0xddfc9b70 sis_malloc_new -EXPORT_SYMBOL_GPL drivers/w1/wire 0x4897de4c w1_reset_select_slave -EXPORT_SYMBOL_GPL drivers/w1/wire 0x4e163e90 w1_next_pullup -EXPORT_SYMBOL_GPL drivers/w1/wire 0x5a698c55 w1_triplet +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x7cd536ba ili9320_write +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x980255f1 ili9320_write_regs +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x9ce8cf91 ili9320_remove +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xaa62c31f ili9320_resume +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xc60aebea ili9320_shutdown +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xd54f5695 ili9320_suspend +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xe6929323 ili9320_probe_spi +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0xf33ad755 fb_ddc_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x9b613c4b fb_sys_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0xc7d59167 fb_sys_write +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x23f07ba3 sis_malloc_new +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x30c5ac8d sis_free_new +EXPORT_SYMBOL_GPL drivers/w1/wire 0x0129b72f w1_touch_bit +EXPORT_SYMBOL_GPL drivers/w1/wire 0x05171d10 w1_read_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x0aba6e81 w1_write_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x1cb861ad w1_reset_resume_command +EXPORT_SYMBOL_GPL drivers/w1/wire 0x2c64a81c w1_next_pullup +EXPORT_SYMBOL_GPL drivers/w1/wire 0x3d894f9b w1_touch_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x41ba1d98 w1_triplet EXPORT_SYMBOL_GPL drivers/w1/wire 0x63757e92 w1_calc_crc8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0x71f7badd w1_reset_resume_command -EXPORT_SYMBOL_GPL drivers/w1/wire 0x7bf74b5f w1_write_8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0x9974641e w1_touch_bit -EXPORT_SYMBOL_GPL drivers/w1/wire 0xa87f974f w1_read_8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0xb429471f w1_read_block -EXPORT_SYMBOL_GPL drivers/w1/wire 0xbea75aff w1_write_block -EXPORT_SYMBOL_GPL drivers/w1/wire 0xcf5154bf w1_touch_block -EXPORT_SYMBOL_GPL drivers/w1/wire 0xd20c0108 w1_reset_bus -EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x16c58168 xen_front_pgdir_shbuf_unmap -EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x6920eef7 xen_front_pgdir_shbuf_alloc -EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0xa3a30c5e xen_front_pgdir_shbuf_map -EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0xf7201d1f xen_front_pgdir_shbuf_get_dir_start -EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0xfac21f5e xen_front_pgdir_shbuf_free -EXPORT_SYMBOL_GPL drivers/xen/xen-privcmd 0x03375927 xen_privcmd_fops -EXPORT_SYMBOL_GPL drivers/xen/xen-privcmd 0x8bdbf81d xen_privcmdbuf_fops -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x22a16818 dlm_posix_unlock +EXPORT_SYMBOL_GPL drivers/w1/wire 0x8afc6053 w1_read_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0xb9b143d1 w1_write_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0xe79b2139 w1_reset_select_slave +EXPORT_SYMBOL_GPL drivers/w1/wire 0xf574795e w1_reset_bus +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x043ef373 xen_front_pgdir_shbuf_free +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x0bf460d7 xen_front_pgdir_shbuf_get_dir_start +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x932b9d93 xen_front_pgdir_shbuf_map +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0xc66836b8 xen_front_pgdir_shbuf_unmap +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0xea9e5e9e xen_front_pgdir_shbuf_alloc +EXPORT_SYMBOL_GPL drivers/xen/xen-privcmd 0x324a4cd8 xen_privcmd_fops +EXPORT_SYMBOL_GPL drivers/xen/xen-privcmd 0xbe7882d3 xen_privcmdbuf_fops +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x0c4702d8 dlm_posix_get +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x37806a1a dlm_posix_unlock EXPORT_SYMBOL_GPL fs/dlm/dlm 0x4b62826c dlm_unlock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x629af4e5 dlm_posix_lock EXPORT_SYMBOL_GPL fs/dlm/dlm 0x647d6170 dlm_lock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x878fc00d dlm_posix_get EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcd224e1d dlm_new_lockspace EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcf9f3328 dlm_release_lockspace +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xf48224e9 dlm_posix_lock EXPORT_SYMBOL_GPL fs/fscache/fscache 0x092cf98e fscache_object_sleep_till_congested -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x1c8ada64 nlmclnt_proc -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x2954e8e2 lockd_down +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x219f65fa lockd_down +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x2cb90f3c nlmclnt_init +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x6d761992 nlmclnt_proc EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77e35ccc nlmsvc_unlock_all_by_ip -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xb4078493 nlmclnt_init -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xd5e359bd lockd_up -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xe4c1b477 nlmsvc_ops -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xefc883eb nlmclnt_done -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xf8a6f4bd nlmsvc_unlock_all_by_sb -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0051db6c nfs_atomic_open -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0098c3f8 nfs_request_add_commit_list_locked +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x865fb037 nlmsvc_ops +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x9ab63d03 nlmclnt_done +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xad40136a lockd_up +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xd04233b7 nlmsvc_unlock_all_by_sb +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x01d859af nfs_permission EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0294c6a2 nfs_callback_nr_threads -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x03dcb825 nfs_wait_client_init_complete -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x04019a3b nfs_init_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x054091b0 nfs_rename -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x076cc6b0 nfs_post_op_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0c67db8a nfs_pageio_resend -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0c7b06e3 nfs_file_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0faed233 nfs_access_add_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x02a16b82 nfs_clear_verifier_delegated +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x02d23098 nfs_setattr_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x04cfcd08 nfs_statfs +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0598be73 nfs_request_add_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x06dfbdf1 nfs_instantiate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0717edc3 nfs_clear_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0b8ff9b9 nfs_initiate_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0ce40df3 put_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0d1d7c1c nfs_may_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0d4aecb0 nfs_file_set_open_context EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10962bc2 nfs_auth_info_match -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x12547551 nfs_show_stats -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x127e741e nfs_filemap_write_and_wait_range +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x14c04e2f nfs_client_for_each_server EXPORT_SYMBOL_GPL fs/nfs/nfs 0x14feb109 nfs_access_set_mask -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1774aa01 __traceiter_nfs_xdr_bad_filehandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1b9643cb nfs_wb_all -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1cf5886d nfs_inode_attach_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1d9d820e nfs_statfs -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x209905e6 nfs_zap_acl_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2205a717 nfs_request_remove_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x15c345da nfs_file_fsync +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1865763a nfs_force_lookup_revalidate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x199e1c11 nfs_initiate_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1a0e4836 nfs_wait_on_request +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1ab74231 nfs_reconfigure +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1adcdf53 nfs_refresh_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1af35ffe nfs_unlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1d456d4d nfs_lookup +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1df72b3b nfs_mknod +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x21410fec nfs_add_or_obtain +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x220c73f2 nfs_commitdata_release EXPORT_SYMBOL_GPL fs/nfs/nfs 0x22d795a8 _nfs_display_fhandle_hash -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2374a558 nfs_release_request +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x23ae7695 nfs_invalidate_atime +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x25f9b4ee nfs_zap_acl_cache EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2861ecda nfs_revalidate_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2888fc77 nfs_pageio_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x29528d69 nfs_mknod -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2cb60b6b nfs_show_path -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2fe6a07e nfs_sync_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2820eba3 nfs_scan_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2828ccce nfs_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x28dddd68 nfs_pgio_header_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x29eeafc0 nfs_file_mmap +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2ac62638 nfs_server_copy_userdata +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2b6ddb99 nfs_rmdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2c755c3d __traceiter_nfs_xdr_bad_filehandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2d2f21a0 nfs_alloc_inode EXPORT_SYMBOL_GPL fs/nfs/nfs 0x30496988 __tracepoint_nfs_fsync_enter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x309a783c nfs_put_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x309f9d35 nfs_sb_active -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x33f29a5c nfs_permission -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x35fb2805 nfs_server_insert_lists -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x364581c5 nfs_file_mmap +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x35444d52 nfs_getattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x35610db5 nfs_set_verifier +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x37e30037 nfs_flock EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3a8d811c nfs4_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3a020b66 nfs_access_get_cached +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3b464781 nfs_async_iocounter_wait +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3c7bf1e7 __traceiter_nfs_fsync_exit EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f2690f2 nfs_check_flags +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40377ea2 nfs_create_server EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40739385 nfs_wait_bit_killable +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x41338723 nfs_drop_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x41aa638f nfs_retry_commit EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f2c81f nfs4_client_id_uniquifier +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x432303f6 nfs_file_release EXPORT_SYMBOL_GPL fs/nfs/nfs 0x44cc3a41 __tracepoint_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4ba629a1 nfs_invalidate_atime +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x450d5293 nfs_client_init_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x45528fc0 nfs_client_init_is_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x47cd2580 nfs_release_request +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4c205bac nfs_rename +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4c7d145c nfs_pgio_header_free EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4ccea5f5 nfs_setsecurity -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4e60c09b nfs_mark_client_ready -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x503c2773 nfs_close_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x504efb8b nfs_pageio_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x50795576 nfs_show_options +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x50d97b49 nfs_check_cache_invalid EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x540c67dc nfs_server_copy_userdata +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x540358fc nfs_set_cache_invalid +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x542f98e5 alloc_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x55555cf5 nfs_init_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x55b8bdb1 nfs_fs_type 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 0x5a036d2c nfs_free_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5a44b448 nfs_async_iocounter_wait -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5d1ab9a7 nfs_init_server_rpcclient -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5f4fb527 nfs_access_get_cached -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5fdd604a nfs_refresh_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x611d9b95 nfs_may_open -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x611fa357 nfs4_label_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x639516a5 nfs_pgheader_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x69f47be4 nfs_pageio_reset_write_mds -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6dae8e77 nfs_show_options -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6e1f37ff nfs_file_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x59e1d31b nfs_mkdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5b7b4478 nfs_pageio_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5c37d456 nfs_access_zap_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5db72eac nfs_server_remove_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6246982e nfs_commitdata_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x674a9f3f nfs_free_client EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6e81f032 __SCK__tp_func_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x705c9fc5 nfs_commit_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x716c0fe5 nfs_fhget +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x702fccf7 nfs_symlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x710b3b54 nfs_pgio_current_mirror +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x724ebe6f nfs_put_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x73745613 nfs_commit_free EXPORT_SYMBOL_GPL fs/nfs/nfs 0x73dff4c0 __SCK__tp_func_nfs_xdr_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x74bd51be nfs_free_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7add2870 nfs_unlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x75e593bb nfs_init_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x78e0ebea nfs_free_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7baa9bff nfs_inode_attach_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7bc66ebb nfs_init_cinfo EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7c9722ba nfs_dreq_bytes_left -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7d7259fa nfs_force_lookup_revalidate -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fa31d69 nfs_probe_fsinfo -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x81acb36a nfs_initiate_pgio -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x81b1ac62 __traceiter_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7d1c5b05 nfs_put_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7d5e7716 nfs_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7f0f2a4e nfs_get_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7f3af8e8 nfs_request_add_commit_list_locked +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7f560d94 nfs_sb_deactive +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fc6973f nfs_pageio_reset_write_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x80083cb5 nfs_pageio_resend +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x83063e2e nfs_pageio_reset_read_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8322bdac nfs_mark_client_ready EXPORT_SYMBOL_GPL fs/nfs/nfs 0x832e8f0b nfs_alloc_fattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x851bf2a6 nfs_file_release -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x867cf343 nfs_fs_type -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x889dc8c9 nfs_write_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8a6abd92 register_nfs_version -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8c44c2f1 nfs_kill_super -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8c8bfed2 nfs_client_init_is_complete -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8cefb10c nfs_get_lock_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8d0e542b nfs_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x84bcfa66 nfs_atomic_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8561d306 nfs_file_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x85808357 nfs_pgheader_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x878d3e0d nfs_post_op_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8bef8f68 nfs_filemap_write_and_wait_range +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8e85441a nfs_link 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 0x91ef5f86 nfs_put_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9264d47e nfs_lock EXPORT_SYMBOL_GPL fs/nfs/nfs 0x95007f7e __SCK__tp_func_nfs_xdr_bad_filehandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x95175ac9 nfs_generic_pgio -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9540893b nfs_clone_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x95eb946c nfs_drop_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x963bb0a5 nfs_commitdata_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9789393f nfs_client_for_each_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x980c2b12 nfs_symlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x97b180b9 nfs_write_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x97f77c2f nfs_setattr EXPORT_SYMBOL_GPL fs/nfs/nfs 0x98b0ece8 nfs_init_timeout_values -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9bd6678f nfs_path -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9d16e845 unregister_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x99e3a056 nfs_server_insert_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x99facc30 __traceiter_nfs_xdr_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9d27dc93 nfs_file_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9f1e90b3 __traceiter_nfs_fsync_enter EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa05ca625 nfs_fattr_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa0b7becc nfs_create -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa801cd3f alloc_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8907b34 nfs_wait_on_request +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa09bd745 get_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa1e3f51b nfs_wb_all EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e9e1ae send_implementation_id -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa98b975b nfs_commitdata_release EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaafd4acc max_session_cb_slots -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xab4e39dc nfs_commit_free -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xac86c8a4 nfs_create_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xada55ea9 nfs_file_llseek -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xadc6010c nfs_setattr_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaff95c20 nfs_file_write -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb035f2b4 put_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb1cdc7a4 nfs_flock -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb2b056eb nfs_server_remove_lists -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb4f80d1f nfs_dentry_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb7f17dec __traceiter_nfs_xdr_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb95b9278 nfs_clear_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xba383a6d nfs_writeback_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbbc63641 nfs_pgio_header_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbff95485 nfs_getattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc0551ab6 nfs_submount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc0ceccaf nfs_retry_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc2983ae3 nfs_set_cache_invalid -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc2ad93b5 nfs_file_fsync +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xac0c5622 nfs_show_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaf08d952 nfs_access_add_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaf892a46 nfs_close_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb3697c13 nfs_umount_begin +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb4708a1a nfs_sync_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb573dede nfs_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb73d7a77 nfs_sops +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xba420d2b nfs_show_stats +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbbbd0cb3 nfs_create +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbd9cb55e nfs4_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbf3868a5 nfs_alloc_client EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3a2be67 nfs_net_id -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3fd3a8c nfs_post_op_update_inode_force_wcc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc54147f6 nfs_setattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc70b036b nfs_umount_begin -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc8625d8d nfs_reconfigure -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc9decc62 nfs_mkdir -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xca30a875 nfs_sops -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xca570fe8 nfs_get_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcbbda413 nfs_create_rpc_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcc0df469 __traceiter_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcc7d47cd nfs_init_cinfo -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xccf02983 nfs_scan_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcf43da66 nfs_rmdir -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd017b785 nfs_generic_pg_test -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd0b029e2 nfs_alloc_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd2033a22 nfs_alloc_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd4d3b70c nfs_fscache_open_file -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd756a943 nfs_initiate_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd883357b nfs_try_get_tree -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdad00ba9 nfs_pgio_header_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3bc20c5 nfs_sb_active +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc67d2b2e nfs_show_devname +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc73914e5 nfs_generic_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc7c60414 nfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd053aef3 nfs_revalidate_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd1abefc2 nfs_wait_client_init_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd358608b nfs_post_op_update_inode_force_wcc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd3755f0d nfs_get_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd6eff8e9 nfs4_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd864c834 nfs_file_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd8c3e5f8 nfs_try_get_tree +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd92be84b nfs_writeback_update_inode EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdc44e409 nfs_add_or_obtain -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdd03af02 nfs_clear_verifier_delegated -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe30207d7 nfs_link -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe571d24f nfs_client_init_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe5ea2399 nfs_do_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdd92b147 nfs_request_remove_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdef980af nfs_create_rpc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdfe027a9 nfs_setsecurity +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe0d6b9c0 nfs_do_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe10e5080 nfs_free_inode EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe70507df __tracepoint_nfs_xdr_bad_filehandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe7b4c904 nfs_set_verifier -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe86ecff0 nfs_pageio_reset_read_mds -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe878df4d nfs_request_add_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe9da3310 nfs_file_set_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeabef4c6 nfs_init_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xec6284fc nfs_show_devname -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeefce220 nfs4_fs_type -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf0b733dc get_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf47e3cd0 nfs_check_cache_invalid -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf5c6722f nfs_lock -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf6182b26 nfs_sb_deactive -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf72c2cb3 nfs_free_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf75a27da nfs_alloc_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf9175ea1 nfs_instantiate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xea8bec18 nfs4_label_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeb0d81d7 unregister_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xec37c729 nfs_file_llseek +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xec38d8ec nfs_clone_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xec7dca24 nfs_fscache_open_file +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xed423b67 nfs_init_server_rpcclient +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf0b6f640 nfs_kill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf26c1c9f nfs_commit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf420a97d nfs_alloc_server EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf96f04c4 __SCK__tp_func_nfs_fsync_enter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf97544dc nfs_lookup -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc5c9862 nfs_access_zap_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfaaa1e38 nfs_fhget EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc619abd _nfs_display_fhandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfde20084 nfs_pgio_current_mirror -EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0x603014d5 nfs3_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfd559f97 nfs_probe_fsinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfdbc2f4b nfs_pageio_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xffa2b27a register_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0x8e84985d nfs3_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x02d7cbec nfs4_find_or_create_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x04a52a78 pnfs_generic_scan_commit_lists EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x05675369 nfs_remove_bad_delegation 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 0x0aec107c nfs4_put_deviceid_node -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0b93be9a pnfs_register_layoutdriver -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0c3aa09d pnfs_generic_clear_request_commit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0e4cd62e pnfs_ld_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0e761a27 pnfs_write_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0cb0bbcd __traceiter_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0e25eb0a nfs4_proc_getdeviceinfo 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 0x116e1c0a pnfs_generic_sync -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x120175dc pnfs_add_commit_array -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x16a2cb67 __traceiter_pnfs_mds_fallback_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1ead3731 pnfs_layout_mark_request_commit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1f7d0697 pnfs_generic_pg_check_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x23354ee0 __traceiter_nfs4_pnfs_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2525b33a pnfs_generic_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x163d7a9e nfs4_test_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x170915f9 pnfs_unregister_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1a866c3c pnfs_generic_pg_check_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x259e245d pnfs_generic_commit_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x274f3cbe nfs4_test_session_trunk EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x27ad47ea __SCK__tp_func_pnfs_mds_fallback_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x295a7da7 nfs4_schedule_stateid_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2eaa447e pnfs_generic_search_commit_reqs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2ef7c526 pnfs_update_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x28f1252f nfs4_pnfs_ds_put EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x30a44ac3 __SCK__tp_func_ff_layout_write_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x32719d9f nfs4_set_rw_stateid EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x32bb6e05 __tracepoint_ff_layout_write_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x34227a7f nfs4_find_get_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x34e93ee0 __traceiter_ff_layout_commit_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3657b6f3 nfs4_test_session_trunk -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x39e68563 __traceiter_pnfs_mds_fallback_write_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x41cb5f2f nfs4_schedule_migration_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5307a57f __traceiter_pnfs_mds_fallback_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x367e8f5f __traceiter_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x371ffa62 pnfs_generic_pg_readpages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x37f14bcc pnfs_generic_prepare_to_resend_writes +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x38884e5b __traceiter_pnfs_mds_fallback_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3997b17b pnfs_generic_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3be0a1b1 __traceiter_ff_layout_read_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3be4944b __traceiter_pnfs_mds_fallback_read_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x430932ec nfs4_mark_deviceid_available +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x45c8d7d5 nfs4_find_get_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4ec3d715 nfs4_schedule_stateid_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x518c0ea6 nfs4_init_deviceid_node EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x533c198f __SCK__tp_func_nfs4_pnfs_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x55b1b515 pnfs_set_lo_fail +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x557c03d4 __traceiter_ff_layout_write_error EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x579126b8 __SCK__tp_func_pnfs_mds_fallback_read_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x57a44248 __traceiter_nfs4_pnfs_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x588ce736 pnfs_generic_pg_test -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5a141243 nfs4_init_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5a0c6043 nfs42_proc_layouterror EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5a4314e9 __SCK__tp_func_nfs4_pnfs_commit_ds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5a861d6b pnfs_generic_layout_insert_lseg EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5ce462a3 __tracepoint_pnfs_mds_fallback_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5d5b28a0 nfs4_proc_getdeviceinfo -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5daad2ca nfs4_decode_mp_ds_addr +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5cf5a329 __traceiter_pnfs_mds_fallback_pg_init_read EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6085edbd nfs_map_string_to_numeric -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x66e22a95 nfs4_schedule_lease_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6731366a nfs4_find_or_create_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x686b1586 pnfs_generic_ds_cinfo_release_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6636680b pnfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x66da5c10 pnfs_nfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6768f6b5 nfs4_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x68f30275 nfs4_schedule_lease_moved_recovery EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6ba6a523 pnfs_put_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6c400963 pnfs_generic_pg_writepages -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6f29eb64 __traceiter_pnfs_mds_fallback_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x77b0f371 pnfs_generic_pg_check_range +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6df37948 pnfs_register_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6fd44a00 __traceiter_pnfs_mds_fallback_pg_init_write EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x785c06ab __SCK__tp_func_ff_layout_read_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7915e840 nfs4_schedule_session_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x79bedd59 pnfs_generic_pg_check_range 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 0x7bf23917 nfs4_init_ds_session EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7cd013a8 __SCK__tp_func_pnfs_mds_fallback_pg_get_mirror_count -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7d3289d7 __traceiter_ff_layout_write_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7dbf045f pnfs_report_layoutstat -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x80372344 pnfs_generic_pg_readpages -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x81ecc9d6 pnfs_set_layoutcommit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7eb99d0b pnfs_ld_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7f8ff2e5 pnfs_generic_write_commit_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x800eec3f pnfs_layoutcommit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x818267e0 nfs4_put_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x81b59457 __traceiter_pnfs_mds_fallback_write_pagelist EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x82409884 __tracepoint_pnfs_mds_fallback_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x83115228 pnfs_generic_recover_commit_reqs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x866e560a __traceiter_nfs4_pnfs_commit_ds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x86e10d25 pnfs_free_commit_array -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8871fe35 nfs4_setup_sequence -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8c05556d pnfs_unregister_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x88882939 pnfs_set_lo_fail +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8e7be091 nfs4_schedule_session_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9503fdf8 nfs4_pnfs_ds_add +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x96207969 nfs4_schedule_lease_recovery EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x974a1614 __tracepoint_pnfs_mds_fallback_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x992b71e8 nfs4_pnfs_ds_put +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x975d85b2 nfs4_init_ds_session +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x99ae74df pnfs_generic_ds_cinfo_destroy EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9a1a74c3 __tracepoint_nfs4_pnfs_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa2c1dc67 nfs4_mark_deviceid_available -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa39e1a19 pnfs_generic_prepare_to_resend_writes -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa7c8d913 pnfs_nfs_generic_sync -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa7e17d12 pnfs_layoutcommit_inode -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa9f0ce91 pnfs_ld_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb10c5822 __traceiter_ff_layout_read_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb319a7f1 pnfs_generic_ds_cinfo_destroy -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb81047d8 pnfs_error_mark_layout_for_return -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb86dd6b7 nfs4_pnfs_ds_connect +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9a5f1689 pnfs_generic_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9b3116aa pnfs_report_layoutstat +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9bd8cc1f nfs41_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9c2896ed pnfs_free_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9d251683 pnfs_generic_ds_cinfo_release_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9d97cd97 nfs4_decode_mp_ds_addr +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9d99d8de nfs_remove_bad_delegation +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9eef3cd7 pnfs_set_layoutcommit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xabcf5c39 pnfs_generic_layout_insert_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xac52bb98 nfs4_schedule_migration_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xad92b07a pnfs_update_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xafa0cdd2 nfs4_pnfs_ds_connect +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb2ac98e7 __traceiter_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb2b901fc pnfs_write_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb37ce44e pnfs_add_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb5ae2e89 __traceiter_ff_layout_commit_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb5f6cc84 __traceiter_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb69aa5b7 pnfs_generic_pg_cleanup EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xba53a1ef __SCK__tp_func_pnfs_mds_fallback_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbaf20b34 nfs4_delete_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbb71c68a pnfs_generic_pg_cleanup -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbf3e7aed __traceiter_pnfs_mds_fallback_read_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbffee06b pnfs_destroy_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc177af4a pnfs_generic_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc2d2cf43 __traceiter_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbf293c8c nfs4_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbf45945d pnfs_read_resend_pnfs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc0822cb2 pnfs_ld_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc2c8e164 pnfs_generic_recover_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc51a8a39 pnfs_destroy_layout EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc7a9d954 __SCK__tp_func_nfs4_pnfs_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc7d15c75 pnfs_generic_scan_commit_lists -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc9794603 nfs41_sequence_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcb19f008 nfs4_set_rw_stateid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xce410fa8 nfs4_mark_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xca2ac52a pnfs_error_mark_layout_for_return +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcb8d3749 pnfs_layout_mark_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcd1fdd5e pnfs_generic_pg_writepages EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcf29b95f __tracepoint_pnfs_mds_fallback_read_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcf657cb0 pnfs_generic_clear_request_commit EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd0ecfaad __tracepoint_pnfs_mds_fallback_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd702b4a4 pnfs_generic_commit_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd832f949 pnfs_generic_write_commit_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd9f3e2a6 nfs4_test_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd1b0aecd pnfs_put_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd34e4447 nfs4_delete_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd9c58adb pnfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdb23e7cd pnfs_generic_search_commit_reqs EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdf6991a4 __SCK__tp_func_pnfs_mds_fallback_write_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdf6cc36d __traceiter_pnfs_mds_fallback_pg_get_mirror_count EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe19f5ee0 __tracepoint_pnfs_mds_fallback_write_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe2a04905 nfs4_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe4d90299 nfs4_mark_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe5d7efe6 __traceiter_pnfs_mds_fallback_pg_get_mirror_count +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe90337bb pnfs_alloc_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 0xede41327 __tracepoint_nfs4_pnfs_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xef810c91 nfs42_proc_layouterror -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf291d86f pnfs_alloc_commit_array -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf3fc094c nfs4_schedule_lease_moved_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf1aed61e nfs4_sequence_done EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf7801360 nfs41_maxgetdevinfo_overhead -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf90f46df pnfs_read_resend_pnfs EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf999267e pnfs_generic_commit_release -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfa1d2f9f nfs4_pnfs_ds_add -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfc43d6a9 nfs4_sequence_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfd34d4c4 pnfs_read_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfc47a03a pnfs_read_done_resend_to_mds EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fe1e1ad locks_end_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x552671d2 opens_in_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xbcd624cf locks_in_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xd30162da locks_start_grace -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x31765572 nfsacl_encode -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x4eadb7a5 nfsacl_decode -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x971b45b6 nfs_stream_encode_acl -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xc5bcbb6d nfs_stream_decode_acl -EXPORT_SYMBOL_GPL fs/nfsd/nfsd 0x7511c216 nfsd4_ssc_init_umount_work +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x40d0d6c7 locks_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x565f55fc locks_start_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x6f34ad50 opens_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x571fbb7b nfsacl_decode +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x59609e28 nfs_stream_decode_acl +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xc60cebc7 nfs_stream_encode_acl +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xc9dc481c nfsacl_encode +EXPORT_SYMBOL_GPL fs/nfsd/nfsd 0x9c9c9259 nfsd4_ssc_init_umount_work EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1b89c6ee o2hb_fill_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x25ef5aa9 o2nm_get_node_by_num +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x2e8a4ddb o2nm_get_node_by_ip +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x3dc4c382 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 0x5adfa4c9 o2hb_unregister_callback EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x5e95a4b2 o2net_send_message_vec +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x65229bf5 o2nm_node_get EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x6a0c3847 __mlog_printk EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x81a17396 mlog_and_bits -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x8496c593 o2hb_register_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x98a4359c o2nm_node_get -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x9c60813a o2hb_unregister_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa076ac3b o2hb_setup_callback EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa87bc9e7 o2nm_configured_node_map -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xb452d43e 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 0xc135ac45 o2nm_node_put EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xc4d99852 o2hb_check_node_heartbeating_from_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xc60699cb o2nm_get_node_by_ip EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd859ac8c o2net_fill_node_map -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf018eb01 o2nm_node_put +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xdad0c35a 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 0xfe1298f3 o2net_register_handler -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x3e93d110 dlmunlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x01cdf91f dlm_register_domain EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7a1211f8 dlm_setup_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x9c7a2733 dlm_unregister_domain -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xb0106b82 dlmlock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xb4227ab6 dlm_register_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x999a0996 dlmlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xb7c06d1b dlm_register_eviction_cb EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd7ba575e dlm_errmsg EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd8fa57a6 dlm_unregister_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xdb0905d1 dlm_print_one_lock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xe64ce75c dlm_register_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xed402495 dlmunlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xf03e0786 dlm_unregister_domain EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xfb86b96f dlm_errname -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x00fdbe96 ocfs2_kset +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xfeb9e461 dlm_print_one_lock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x02359a00 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 0x1475f64b ocfs2_dlm_lvb_valid EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4d3af7fa ocfs2_cluster_hangup EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x76f40744 ocfs2_dlm_lvb -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x90f6e605 ocfs2_plock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x7ac60152 ocfs2_plock EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x9507547f ocfs2_cluster_disconnect EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xaf969565 ocfs2_dlm_lock EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbbc4ef97 ocfs2_stack_supports_plocks -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xc2ec49b6 ocfs2_stack_glue_unregister +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xc4e897e1 ocfs2_stack_glue_register EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xc5196999 ocfs2_dlm_unlock EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xc9fae756 ocfs2_cluster_connect EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xcafdd707 ocfs2_dlm_lock_status -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xcba67533 ocfs2_stack_glue_register EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xd344e4ee ocfs2_stack_glue_set_max_proto_version EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xd806a273 ocfs2_dlm_dump_lksb -EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0x208ceb3c register_pstore_device -EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0x3d6aea5f unregister_pstore_device +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xf0803463 ocfs2_kset EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0x43cc3d4b pstore_blk_get_config -EXPORT_SYMBOL_GPL fs/pstore/pstore_zone 0x39ac1585 unregister_pstore_zone -EXPORT_SYMBOL_GPL fs/pstore/pstore_zone 0x4fd7bc9a register_pstore_zone +EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0x5d5c222d unregister_pstore_device +EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0x5d903b26 register_pstore_device +EXPORT_SYMBOL_GPL fs/pstore/pstore_zone 0x100e4102 unregister_pstore_zone +EXPORT_SYMBOL_GPL fs/pstore/pstore_zone 0x7bb48ae4 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 @@ -17524,8 +17607,8 @@ EXPORT_SYMBOL_GPL lib/crypto/libpoly1305 0x8c874435 poly1305_init_generic EXPORT_SYMBOL_GPL lib/crypto/libsm4 0x24e254e8 sm4_expandkey EXPORT_SYMBOL_GPL lib/crypto/libsm4 0xfa81970e sm4_crypt_block -EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x0df16838 notifier_err_inject_dir -EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x6f92ba4a notifier_err_inject_init +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x5fc6c496 notifier_err_inject_dir +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0xfc118952 notifier_err_inject_init EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x1803a6ed raid6_2data_recov EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x2b30f429 raid6_call EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0xe4b051cf raid6_datap_recov @@ -17535,1062 +17618,1063 @@ 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 0x3099bf0c lowpan_header_compress -EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x7799f80c lowpan_header_decompress -EXPORT_SYMBOL_GPL net/802/garp 0x1509a9aa garp_init_applicant -EXPORT_SYMBOL_GPL net/802/garp 0x4a6a1d72 garp_request_leave -EXPORT_SYMBOL_GPL net/802/garp 0x87981a0a garp_unregister_application -EXPORT_SYMBOL_GPL net/802/garp 0xc5dd9de1 garp_uninit_applicant -EXPORT_SYMBOL_GPL net/802/garp 0xdf2e7645 garp_request_join -EXPORT_SYMBOL_GPL net/802/garp 0xe649343b garp_register_application -EXPORT_SYMBOL_GPL net/802/mrp 0x1bb6ac9d mrp_request_leave -EXPORT_SYMBOL_GPL net/802/mrp 0x2bc54a2c mrp_unregister_application -EXPORT_SYMBOL_GPL net/802/mrp 0x4442a3d6 mrp_request_join -EXPORT_SYMBOL_GPL net/802/mrp 0x9963a93a mrp_uninit_applicant -EXPORT_SYMBOL_GPL net/802/mrp 0xa7eea018 mrp_init_applicant -EXPORT_SYMBOL_GPL net/802/mrp 0xe9356209 mrp_register_application -EXPORT_SYMBOL_GPL net/802/stp 0xb04ddc5c stp_proto_register -EXPORT_SYMBOL_GPL net/802/stp 0xb38226b4 stp_proto_unregister -EXPORT_SYMBOL_GPL net/9p/9pnet 0x5f36f592 p9_client_xattrwalk -EXPORT_SYMBOL_GPL net/9p/9pnet 0xe2b4ef66 p9_client_xattrcreate +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x0951a549 lowpan_header_decompress +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0xa5f4ca2b lowpan_header_compress +EXPORT_SYMBOL_GPL net/802/garp 0x2fd2190a garp_request_leave +EXPORT_SYMBOL_GPL net/802/garp 0x3cb11818 garp_register_application +EXPORT_SYMBOL_GPL net/802/garp 0x81d2d620 garp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/garp 0xb14bd405 garp_unregister_application +EXPORT_SYMBOL_GPL net/802/garp 0xccf9aebc garp_request_join +EXPORT_SYMBOL_GPL net/802/garp 0xf35b4b90 garp_init_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0x27a87a94 mrp_register_application +EXPORT_SYMBOL_GPL net/802/mrp 0x2d677f35 mrp_unregister_application +EXPORT_SYMBOL_GPL net/802/mrp 0x6040a0a3 mrp_request_join +EXPORT_SYMBOL_GPL net/802/mrp 0xad6bbe95 mrp_init_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0xd547cdc5 mrp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0xd92aebce mrp_request_leave +EXPORT_SYMBOL_GPL net/802/stp 0x07047af6 stp_proto_unregister +EXPORT_SYMBOL_GPL net/802/stp 0x61dcf63c stp_proto_register +EXPORT_SYMBOL_GPL net/9p/9pnet 0x0faf4918 p9_client_xattrwalk +EXPORT_SYMBOL_GPL net/9p/9pnet 0x138d3657 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 0x0f739089 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 0xb31f6515 ax25_register_pid -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x06593127 l2cap_chan_list -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x1faa2afb l2cap_chan_connect -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x6220abaf l2cap_chan_create -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x67dd7f96 l2cap_chan_del -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x884fd0e6 l2cap_chan_set_defaults -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xaa16d965 bt_debugfs -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xab09dbb4 l2cap_chan_send -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xd9d79463 l2cap_chan_put -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xedca4ea3 l2cap_add_psm -EXPORT_SYMBOL_GPL net/bluetooth/hidp/hidp 0xb53f9dd4 hidp_hid_driver -EXPORT_SYMBOL_GPL net/bridge/bridge 0x071d9f6a br_port_flag_is_set -EXPORT_SYMBOL_GPL net/bridge/bridge 0x0ce1d32f br_dev_queue_push_xmit -EXPORT_SYMBOL_GPL net/bridge/bridge 0x23a3a216 br_vlan_get_info -EXPORT_SYMBOL_GPL net/bridge/bridge 0x2cb8ac41 br_multicast_list_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0x42fc52ff br_multicast_has_router_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0x4e18beb4 br_vlan_enabled -EXPORT_SYMBOL_GPL net/bridge/bridge 0x5a004e54 br_vlan_get_proto -EXPORT_SYMBOL_GPL net/bridge/bridge 0x5c4f97c7 br_vlan_get_info_rcu -EXPORT_SYMBOL_GPL net/bridge/bridge 0x5df19cb3 br_forward_finish -EXPORT_SYMBOL_GPL net/bridge/bridge 0x617b34e6 br_get_ageing_time -EXPORT_SYMBOL_GPL net/bridge/bridge 0x7ba91f72 br_vlan_get_pvid_rcu -EXPORT_SYMBOL_GPL net/bridge/bridge 0x8c811791 br_vlan_get_pvid -EXPORT_SYMBOL_GPL net/bridge/bridge 0x972381a5 br_forward -EXPORT_SYMBOL_GPL net/bridge/bridge 0xa19ff8e1 br_multicast_router -EXPORT_SYMBOL_GPL net/bridge/bridge 0xb1fda555 br_multicast_has_querier_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0xc621490a br_port_get_stp_state -EXPORT_SYMBOL_GPL net/bridge/bridge 0xc9c96f35 br_fdb_find_port -EXPORT_SYMBOL_GPL net/bridge/bridge 0xcb21a0c1 br_handle_frame_finish -EXPORT_SYMBOL_GPL net/bridge/bridge 0xe18bbbc4 br_fdb_clear_offload -EXPORT_SYMBOL_GPL net/bridge/bridge 0xedc074c4 nf_br_ops -EXPORT_SYMBOL_GPL net/bridge/bridge 0xf61ea3e5 br_multicast_enabled -EXPORT_SYMBOL_GPL net/bridge/bridge 0xfa0952d4 br_multicast_has_querier_anywhere -EXPORT_SYMBOL_GPL net/core/failover 0x7a2a6c66 failover_unregister -EXPORT_SYMBOL_GPL net/core/failover 0xe962e588 failover_slave_unregister -EXPORT_SYMBOL_GPL net/core/failover 0xfd55abde failover_register -EXPORT_SYMBOL_GPL net/dccp/dccp 0x07859cce dccp_rcv_state_process -EXPORT_SYMBOL_GPL net/dccp/dccp 0x0b1b5936 dccp_shutdown -EXPORT_SYMBOL_GPL net/dccp/dccp 0x1688f65f dccp_insert_option -EXPORT_SYMBOL_GPL net/dccp/dccp 0x17fee16c dccp_rcv_established +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x1c7143e9 l2cap_chan_create +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x2238de8a l2cap_chan_list +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x3f068d88 l2cap_add_psm +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x82e6302a bt_debugfs +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xbd35e261 l2cap_chan_send +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xe16f8f9d l2cap_chan_set_defaults +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xeaa6c665 l2cap_chan_connect +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xeb62b632 l2cap_chan_del +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xeb933a61 l2cap_chan_put +EXPORT_SYMBOL_GPL net/bluetooth/hidp/hidp 0xf87bb792 hidp_hid_driver +EXPORT_SYMBOL_GPL net/bridge/bridge 0x076c3f47 br_multicast_has_querier_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x17b8e7ef br_forward_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0x23814e62 br_multicast_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0x34a377e5 br_multicast_has_router_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x35f58e1f br_vlan_get_info_rcu +EXPORT_SYMBOL_GPL net/bridge/bridge 0x50449dbd br_fdb_find_port +EXPORT_SYMBOL_GPL net/bridge/bridge 0x51bdfe71 br_multicast_has_querier_anywhere +EXPORT_SYMBOL_GPL net/bridge/bridge 0x522bb490 br_dev_queue_push_xmit +EXPORT_SYMBOL_GPL net/bridge/bridge 0x533de88b br_multicast_list_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x5f39c381 br_fdb_clear_offload +EXPORT_SYMBOL_GPL net/bridge/bridge 0x70655375 br_vlan_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0xa8f76eb3 br_multicast_router +EXPORT_SYMBOL_GPL net/bridge/bridge 0xafe88ca5 br_port_flag_is_set +EXPORT_SYMBOL_GPL net/bridge/bridge 0xb60afd54 br_vlan_get_proto +EXPORT_SYMBOL_GPL net/bridge/bridge 0xc09a84ee br_vlan_get_pvid_rcu +EXPORT_SYMBOL_GPL net/bridge/bridge 0xc1915d2a br_get_ageing_time +EXPORT_SYMBOL_GPL net/bridge/bridge 0xd5daff18 br_handle_frame_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0xdd1ec795 br_port_get_stp_state +EXPORT_SYMBOL_GPL net/bridge/bridge 0xde6a6eb0 br_vlan_get_pvid +EXPORT_SYMBOL_GPL net/bridge/bridge 0xe93d281c br_vlan_get_info +EXPORT_SYMBOL_GPL net/bridge/bridge 0xf55abcd3 nf_br_ops +EXPORT_SYMBOL_GPL net/bridge/bridge 0xfd90d6fa br_forward +EXPORT_SYMBOL_GPL net/core/failover 0x0b828b69 failover_unregister +EXPORT_SYMBOL_GPL net/core/failover 0x4de286c4 failover_slave_unregister +EXPORT_SYMBOL_GPL net/core/failover 0x4fc01b1d failover_register +EXPORT_SYMBOL_GPL net/dccp/dccp 0x02796ddd dccp_done +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1025dcb5 dccp_sendmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0x10d098a0 dccp_getsockopt EXPORT_SYMBOL_GPL net/dccp/dccp 0x182ec2bf dccp_ackvec_parsed_add -EXPORT_SYMBOL_GPL net/dccp/dccp 0x1c35af10 dccp_reqsk_send_ack -EXPORT_SYMBOL_GPL net/dccp/dccp 0x2b05a50f dccp_setsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0x2d7a6ad9 dccp_poll -EXPORT_SYMBOL_GPL net/dccp/dccp 0x38234bbb dccp_reqsk_init -EXPORT_SYMBOL_GPL net/dccp/dccp 0x3b9f14c0 dccp_feat_nn_get -EXPORT_SYMBOL_GPL net/dccp/dccp 0x44ae39d6 dccp_sendmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0x188e55c7 dccp_disconnect +EXPORT_SYMBOL_GPL net/dccp/dccp 0x190ed39b dccp_close +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1eec17ad dccp_make_response +EXPORT_SYMBOL_GPL net/dccp/dccp 0x2b746bea dccp_sync_mss +EXPORT_SYMBOL_GPL net/dccp/dccp 0x2fa8fa06 dccp_ctl_make_reset +EXPORT_SYMBOL_GPL net/dccp/dccp 0x30d4c344 dccp_poll +EXPORT_SYMBOL_GPL net/dccp/dccp 0x3284cd0f dccp_destroy_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4330bcea dccp_feat_signal_nn_change +EXPORT_SYMBOL_GPL net/dccp/dccp 0x463ab2b1 inet_dccp_listen EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge -EXPORT_SYMBOL_GPL net/dccp/dccp 0x53ff620e dccp_parse_options +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4e21fcac dccp_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x531f0a89 dccp_feat_nn_get EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics -EXPORT_SYMBOL_GPL net/dccp/dccp 0x5e8d8a0a dccp_close -EXPORT_SYMBOL_GPL net/dccp/dccp 0x650dea01 dccp_connect -EXPORT_SYMBOL_GPL net/dccp/dccp 0x68f3ec90 dccp_set_state -EXPORT_SYMBOL_GPL net/dccp/dccp 0x6a07036c dccp_ioctl -EXPORT_SYMBOL_GPL net/dccp/dccp 0x6f4bb4d5 dccp_ctl_make_reset +EXPORT_SYMBOL_GPL net/dccp/dccp 0x65928964 dccp_shutdown +EXPORT_SYMBOL_GPL net/dccp/dccp 0x6b4addba dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x6d511946 dccp_recvmsg EXPORT_SYMBOL_GPL net/dccp/dccp 0x722630de dccp_hashinfo -EXPORT_SYMBOL_GPL net/dccp/dccp 0x7a1a955e dccp_destroy_sock -EXPORT_SYMBOL_GPL net/dccp/dccp 0x7abeceaa dccp_create_openreq_child -EXPORT_SYMBOL_GPL net/dccp/dccp 0x7bc99899 dccp_child_process EXPORT_SYMBOL_GPL net/dccp/dccp 0x80993155 dccp_timestamp -EXPORT_SYMBOL_GPL net/dccp/dccp 0x82128eac dccp_feat_signal_nn_change EXPORT_SYMBOL_GPL net/dccp/dccp 0x86be7924 dccp_packet_name EXPORT_SYMBOL_GPL net/dccp/dccp 0x884a32bd dccp_death_row -EXPORT_SYMBOL_GPL net/dccp/dccp 0x8dc7aa48 inet_dccp_listen -EXPORT_SYMBOL_GPL net/dccp/dccp 0x93cd0ac2 dccp_getsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0x952f4a96 dccp_disconnect +EXPORT_SYMBOL_GPL net/dccp/dccp 0x8da9a454 dccp_create_openreq_child +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9372dc81 dccp_ioctl EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup -EXPORT_SYMBOL_GPL net/dccp/dccp 0x95e10541 dccp_send_ack -EXPORT_SYMBOL_GPL net/dccp/dccp 0x9963cd1a dccp_init_sock -EXPORT_SYMBOL_GPL net/dccp/dccp 0x9dc5882f dccp_recvmsg -EXPORT_SYMBOL_GPL net/dccp/dccp 0xab290dfc dccp_sync_mss -EXPORT_SYMBOL_GPL net/dccp/dccp 0xadd4d946 dccp_send_sync -EXPORT_SYMBOL_GPL net/dccp/dccp 0xd3d74bbd dccp_done +EXPORT_SYMBOL_GPL net/dccp/dccp 0x99612612 dccp_connect +EXPORT_SYMBOL_GPL net/dccp/dccp 0xb29065dd dccp_send_sync +EXPORT_SYMBOL_GPL net/dccp/dccp 0xb5483c49 dccp_init_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0xb5f4103a dccp_child_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc77b068b dccp_check_req +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd18b757a dccp_reqsk_send_ack EXPORT_SYMBOL_GPL net/dccp/dccp 0xd75b7072 dccp_orphan_count -EXPORT_SYMBOL_GPL net/dccp/dccp 0xde233bee dccp_make_response -EXPORT_SYMBOL_GPL net/dccp/dccp 0xe34e2d9b dccp_check_req -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x07ab04a0 dccp_v4_do_rcv -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x23aa5bb7 dccp_v4_connect -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x371346a8 dccp_v4_request_recv_sock -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x7c08dbd2 dccp_v4_conn_request -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xcb5f686d dccp_invalid_packet -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xfefcd99f dccp_v4_send_check -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x01bd72fc dsa_port_get_phy_strings -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x028d69fc dsa_switch_find -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x02c936ed dsa_devlink_params_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x0417978d dsa_unregister_switch -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x0c20c840 dsa_switch_shutdown -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x12207de0 dsa_devlink_resource_occ_get_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x19fa84e4 dsa_register_switch -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x1c9b62e7 dsa_tag_drivers_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x1edee1e1 dsa_devlink_region_create -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x213cb6b0 dsa_tag_8021q_bridge_tx_fwd_unoffload -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x346f8c37 dsa_8021q_rx_vid -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x35f46a2f dsa_tag_8021q_unregister +EXPORT_SYMBOL_GPL net/dccp/dccp 0xdf0a53cd dccp_set_state +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe7e0e16e dccp_rcv_established +EXPORT_SYMBOL_GPL net/dccp/dccp 0xea00f418 dccp_parse_options +EXPORT_SYMBOL_GPL net/dccp/dccp 0xea65d813 dccp_reqsk_init +EXPORT_SYMBOL_GPL net/dccp/dccp 0xeeacd7d1 dccp_rcv_state_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0xfd8cee6e dccp_insert_option +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x15989677 dccp_v4_connect +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x6f39dde0 dccp_invalid_packet +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x8c666ba9 dccp_v4_conn_request +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x945e7b06 dccp_v4_request_recv_sock +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xd5825b87 dccp_v4_do_rcv +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xddf4aeb4 dccp_v4_send_check +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x02fec4a6 dsa_switch_shutdown +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x0b2b0dae dsa_devlink_resource_occ_get_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x13995e13 dsa_unregister_switch +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x1d260e25 dsa_tag_8021q_bridge_tx_fwd_offload +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x2c838c0d dsa_devlink_param_get +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x30becdde dsa_register_switch +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x31cbb8d9 dsa_8021q_tx_vid +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x336c7a83 dsa_port_get_ethtool_phy_stats +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x4168d817 dsa_8021q_rx_vid EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x417d1fed dsa_8021q_rx_switch_id -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x496e7d3e dsa_devlink_resources_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x4a1a59b5 dsa_devlink_params_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x42e99268 dsa_devlink_param_set +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x4c26cbb6 dsa_8021q_rcv +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x4e8f2f7c dsa_devlink_port_region_create +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x4f77cf15 dsa_tag_8021q_bridge_tx_fwd_unoffload EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x5928bba7 vid_is_dsa_8021q_rxvlan -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x59c4a0a9 dsa_enqueue_skb -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x5a07a696 dsa_devlink_param_get -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x65b78a66 dsa_port_get_ethtool_phy_stats -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x6d560ac5 dsa_port_phylink_mac_change -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x74d4046b dsa_port_from_netdev -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x855bef25 dsa_devlink_param_set -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x86c187de dsa_port_get_phy_sset_count -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x898ee41e dsa_switch_resume -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x923d16be dsa_devlink_resource_occ_get_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x96c6732f dsa_devlink_resource_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x68040fdc dsa_port_get_phy_sset_count +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x6a8cec49 dsa_slave_dev_check +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x7805c390 dsa_enqueue_skb +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x7997f64f dsa_devlink_resources_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x7d6c2eaf dsa_port_from_netdev +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x8186bb52 dsa_tag_8021q_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x84c17e70 dsa_devlink_params_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x877bc8d1 dsa_tag_drivers_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x8d5e6218 dsa_tag_drivers_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x961977d4 dsa_port_get_phy_strings +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x9d8b03fb dsa_switch_resume +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x9db31901 dsa_tag_8021q_unregister EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x9e59271d dsa_8021q_rx_source_port -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xa1ba63bb dsa_dev_to_net_device -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xa521dbfa dsa_tag_drivers_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xb9527175 dsa_8021q_rcv -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xbcb2b516 dsa_8021q_xmit +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xaa2f998b dsa_8021q_xmit EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xbe3856fc dsa_8021q_bridge_tx_fwd_offload_vid EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc23e8d5f dsa_devlink_region_destroy -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc4016aba dsa_8021q_tx_vid -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc521d5ee dsa_tag_8021q_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xe75a1010 dsa_tag_8021q_bridge_tx_fwd_offload +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xcb4c7799 dsa_switch_suspend +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xd19b5879 dsa_devlink_resource_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xd2d27234 dsa_switch_find +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xd4cabd57 dsa_port_phylink_mac_change +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xd6bea963 dsa_dev_to_net_device +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xd9f2105b dsa_devlink_region_create +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xe9ca903b dsa_devlink_resource_occ_get_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xef660b9d dsa_devlink_params_unregister EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf13e1803 vid_is_dsa_8021q EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf6f3b5c8 vid_is_dsa_8021q_txvlan -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xfa5710a7 dsa_devlink_port_region_create -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xfce0aa27 dsa_slave_dev_check -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xfe1280b4 dsa_switch_suspend -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x06c33d4c ieee802154_hdr_push -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x12f26820 ieee802154_hdr_peek -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x75f4e6bd ieee802154_hdr_pull -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x76c8ee78 ieee802154_hdr_peek_addrs +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x0de8de04 ieee802154_hdr_peek_addrs +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x43cde9ee ieee802154_hdr_pull +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x633b1efb ieee802154_hdr_peek EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x87e2553b ieee802154_max_payload -EXPORT_SYMBOL_GPL net/ife/ife 0x0dcd50c8 ife_encode -EXPORT_SYMBOL_GPL net/ife/ife 0x593e7e19 ife_decode +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x9cb5ce7a ieee802154_hdr_push +EXPORT_SYMBOL_GPL net/ife/ife 0x426aba2a ife_decode +EXPORT_SYMBOL_GPL net/ife/ife 0x4f44dbc4 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 0xe7888e98 ife_tlv_meta_encode -EXPORT_SYMBOL_GPL net/ipv4/esp4 0x708addd1 esp_output_head -EXPORT_SYMBOL_GPL net/ipv4/esp4 0x9e96f42c esp_output_tail -EXPORT_SYMBOL_GPL net/ipv4/esp4 0xa5737a8e esp_input_done2 -EXPORT_SYMBOL_GPL net/ipv4/gre 0xba098be5 gre_del_protocol -EXPORT_SYMBOL_GPL net/ipv4/gre 0xed19df68 gre_add_protocol -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x11300737 inet_diag_dump_one_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x364432ea inet_diag_find_one_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x50729ef8 inet_diag_dump_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x7c2b2a88 inet_diag_bc_sk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x827cfe7d inet_diag_register -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x907f50ce inet_diag_unregister -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x9ccae456 inet_diag_msg_attrs_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xde98616d inet_diag_msg_common_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xf179a5ce inet_sk_diag_fill -EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0x13266b81 gretap_fb_dev_create -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x0a46c3af ip_tunnel_changelink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x0a73d51f ip_tunnel_lookup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x1728f4f1 ip_tunnel_init -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x21bf7b16 ip_tunnel_uninit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x28df0f45 ip_tunnel_newlink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x3f359aa1 ip_tunnel_ctl -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x5770168e ip_tunnel_setup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x5d100a1b ip_tunnel_init_net -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x81ab2fda ip_tunnel_xmit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xa73fb675 ip_tunnel_delete_nets -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xb1bf8d3b ip_tunnel_rcv -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xb7162d0d ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xcb220011 ip_tunnel_dellink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xea1a15e5 __ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xed2570e0 ip_tunnel_siocdevprivate -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xf4abe21c ip_md_tunnel_xmit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xf91879e3 ip_tunnel_encap_setup -EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0x9d882343 arpt_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0x5addfd56 ipt_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x10426bc0 nf_defrag_ipv4_enable -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x4f57ce6d nf_defrag_ipv4_disable -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0x9b6875e7 nf_dup_ipv4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x0cff1107 nf_reject_iphdr_put -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x31705e19 nf_reject_ip_tcphdr_put -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x53c4e210 nf_send_reset -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x6bc16edd nf_reject_ip_tcphdr_get -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x8d21b973 nf_send_unreach -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xa40fe6cd nf_reject_skb_v4_tcp_reset -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xa77a41c5 nf_reject_skb_v4_unreach -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_socket_ipv4 0x85322b47 nf_sk_lookup_slow_v4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x07579e57 nf_tproxy_get_sock_v4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x52812f2b nf_tproxy_handle_time_wait4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0xaa74513c nf_tproxy_laddr4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0x16d5df84 nft_fib4_eval -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0x40d11121 nft_fib4_eval_type -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x03c67e11 tcp_vegas_get_info -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x33ada0ea tcp_vegas_init -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x4fd73334 tcp_vegas_cwnd_event -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x87284dcb tcp_vegas_state -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xc1da5e3d tcp_vegas_pkts_acked -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x262ec8ca udp_tunnel_push_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x5eaf0f1a udp_tun_rx_dst -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x5fc851f3 udp_tunnel_notify_del_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x7283ba0e udp_tunnel_notify_add_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x7c4d1962 udp_tunnel_drop_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x94e0aa4f setup_udp_tunnel_sock -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x98884405 udp_tunnel_xmit_skb -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xe10ccd9f udp_tunnel_sock_release -EXPORT_SYMBOL_GPL net/ipv6/esp6 0x72d55466 esp6_output_tail -EXPORT_SYMBOL_GPL net/ipv6/esp6 0x76aa03cf esp6_input_done2 -EXPORT_SYMBOL_GPL net/ipv6/esp6 0xcb49c5c5 esp6_output_head -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xb382b2a3 ip6_tnl_rcv_ctl -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xe0bf06f3 ip6_tnl_xmit_ctl -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xe767465a ip6_tnl_encap_setup -EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x19d24a59 udp_tunnel6_xmit_skb -EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0xecb6a8a7 udp_sock_create6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0x62e74abc ip6t_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x85a511a6 nf_defrag_ipv6_disable -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x8ba5f338 nf_defrag_ipv6_enable -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xaae45e52 nf_ct_frag6_gather -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0x064ea9f7 nf_dup_ipv6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x077ccd31 nf_reject_ip6_tcphdr_put -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x07ed9427 nf_reject_skb_v6_unreach -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x0d6de0f7 nf_reject_ip6hdr_put -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x26ec0ff1 nf_send_reset6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x64a06f48 nf_reject_ip6_tcphdr_get -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x9cfe6e00 nf_reject_skb_v6_tcp_reset -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xc2c7023a nf_send_unreach6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_socket_ipv6 0x02558a2e nf_sk_lookup_slow_v6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x7c52c773 nf_tproxy_get_sock_v6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x91fb253e nf_tproxy_laddr6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0xd940803d nf_tproxy_handle_time_wait6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0x322b4dcb nft_fib6_eval -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0x93af5266 nft_fib6_eval_type -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x047b1bb0 l2tp_tunnel_register -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x15477dd0 l2tp_tunnel_dec_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x17c8148f l2tp_tunnel_inc_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x2d73f26f l2tp_session_get_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x344d8ebc l2tp_session_register -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x37ad1e15 l2tp_session_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x46a7a496 l2tp_tunnel_get -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x4a276a38 l2tp_session_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x85cd6dc9 l2tp_sk_to_tunnel -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x87232567 l2tp_recv_common -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x873a00d7 l2tp_udp_encap_recv -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x8d96adb4 l2tp_xmit_skb -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x99a91d05 l2tp_session_set_header_len -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xca5ae1cc l2tp_tunnel_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xcef126f4 l2tp_tunnel_get_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd03e58ef l2tp_session_get_by_ifname -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd4f2a6a8 l2tp_session_dec_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd90f0828 l2tp_tunnel_get_session -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xe5ef6ee6 l2tp_session_get -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xe70a2007 l2tp_session_inc_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xeb1cf883 l2tp_tunnel_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_ip 0x3378fdc9 l2tp_ioctl -EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x298aae83 l2tp_nl_register_ops +EXPORT_SYMBOL_GPL net/ipv4/esp4 0x04a16146 esp_input_done2 +EXPORT_SYMBOL_GPL net/ipv4/esp4 0x8340d088 esp_output_head +EXPORT_SYMBOL_GPL net/ipv4/esp4 0xc1c1320f esp_output_tail +EXPORT_SYMBOL_GPL net/ipv4/gre 0x82684b86 gre_add_protocol +EXPORT_SYMBOL_GPL net/ipv4/gre 0x99e124b8 gre_del_protocol +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x2ae477cf inet_diag_find_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x2e5ddc4c inet_diag_register +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x53422293 inet_diag_msg_common_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x54c275a7 inet_diag_msg_attrs_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x6461bccb inet_diag_bc_sk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x6634bebb inet_sk_diag_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xa57085b7 inet_diag_dump_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xba46fdb6 inet_diag_dump_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xfee0b65a inet_diag_unregister +EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0x64a3ae09 gretap_fb_dev_create +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x097d7196 ip_md_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x105dd796 ip_tunnel_rcv +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x28998023 ip_tunnel_dellink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x3b092666 ip_tunnel_encap_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x49c51539 ip_tunnel_init +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x534b11a6 ip_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x59ee6123 ip_tunnel_uninit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x8ceef294 ip_tunnel_newlink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x9ca09cf5 ip_tunnel_delete_nets +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x9d470109 ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x9efdb4a9 ip_tunnel_ctl +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xab8cb78f __ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xca1137e1 ip_tunnel_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xcc94b6cf ip_tunnel_lookup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xdea4242f ip_tunnel_init_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xe2d45277 ip_tunnel_changelink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xf9ee811b ip_tunnel_siocdevprivate +EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0x16f96bab arpt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0x6a4fa70e ipt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x502e43f9 nf_defrag_ipv4_disable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0xbc563785 nf_defrag_ipv4_enable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0x96ac8319 nf_dup_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x158a4bd4 nf_send_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x24393d1e nf_reject_iphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x3acbbc65 nf_reject_ip_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x508e8b86 nf_reject_skb_v4_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x762e2844 nf_reject_skb_v4_tcp_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x76c28d4a nf_send_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x994cc1be nf_reject_ip_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_socket_ipv4 0x3d2e6b56 nf_sk_lookup_slow_v4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x1c3a3f68 nf_tproxy_laddr4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0xd3825008 nf_tproxy_get_sock_v4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0xec4b5aee nf_tproxy_handle_time_wait4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0x07d473ea nft_fib4_eval +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0xa77afa85 nft_fib4_eval_type +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x2a62d2ba tcp_vegas_init +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x32c43a1e tcp_vegas_get_info +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x991a6ee0 tcp_vegas_cwnd_event +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xc65d6a8b tcp_vegas_pkts_acked +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xe30c640d tcp_vegas_state +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x01c48aeb udp_tunnel_push_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x2d033da5 setup_udp_tunnel_sock +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x49853b1b udp_tun_rx_dst +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x4cd5503a udp_tunnel_xmit_skb +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x7cf30c93 udp_tunnel_notify_add_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x88db9d4c udp_tunnel_notify_del_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x89fac54e udp_tunnel_sock_release +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x9ce4b8b5 udp_tunnel_drop_rx_port +EXPORT_SYMBOL_GPL net/ipv6/esp6 0x457a26af esp6_output_head +EXPORT_SYMBOL_GPL net/ipv6/esp6 0x4f5ad7f1 esp6_output_tail +EXPORT_SYMBOL_GPL net/ipv6/esp6 0x65f29544 esp6_input_done2 +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x026d742c ip6_tnl_xmit_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x886e2752 ip6_tnl_encap_setup +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xe1dfd346 ip6_tnl_rcv_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x1ad219f9 udp_tunnel6_xmit_skb +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x7ddb3bfe udp_sock_create6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0x1840ce03 ip6t_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x2b270457 nf_ct_frag6_gather +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x37a6c9d3 nf_defrag_ipv6_enable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x8f776e76 nf_defrag_ipv6_disable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0x182a6872 nf_dup_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x01ffb877 nf_reject_ip6hdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x1b45a951 nf_send_reset6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x3466dd53 nf_reject_skb_v6_tcp_reset +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x4f3c1430 nf_reject_ip6_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x582be26b nf_reject_skb_v6_unreach +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xa870616d nf_reject_ip6_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xe8375d75 nf_send_unreach6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_socket_ipv6 0xba49ca3f nf_sk_lookup_slow_v6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x03674676 nf_tproxy_laddr6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x63f3e71f nf_tproxy_get_sock_v6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0xa647ddf1 nf_tproxy_handle_time_wait6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0xb3396481 nft_fib6_eval_type +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0xc69b5dfa nft_fib6_eval +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x0b93e044 l2tp_xmit_skb +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x1b79d274 l2tp_session_dec_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x2137c469 l2tp_tunnel_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x2998a6ce l2tp_tunnel_get +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x306b8f3c l2tp_tunnel_inc_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x3e814090 l2tp_tunnel_get_session +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x44eb656b l2tp_session_inc_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x461f8322 l2tp_tunnel_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x72085b8e l2tp_session_register +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x8259421d l2tp_sk_to_tunnel +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x838acdc0 l2tp_session_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x85c289da l2tp_session_get +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x934f51ff l2tp_tunnel_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x9404bb66 l2tp_recv_common +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xa8e33d4c l2tp_session_get_by_ifname +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xaf43edb5 l2tp_session_set_header_len +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xbdeb9685 l2tp_udp_encap_recv +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xdeb092b5 l2tp_session_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xe1c56305 l2tp_session_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xe5fef300 l2tp_tunnel_register +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf25f6752 l2tp_tunnel_dec_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_ip 0x7c9789dd l2tp_ioctl EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x166fdbee ieee80211_iterate_active_interfaces_mtx -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x1e0b594b ieee80211_gtk_rekey_add -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x23d4315c ieee80211_ready_on_channel -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x2e6a8c84 ieee80211_vif_to_wdev -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x329b72e1 ieee80211_iterate_stations_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x334833c6 ieeee80211_obss_color_collision_notify +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x92bdd66b l2tp_nl_register_ops +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x0f4404f3 ieee80211_resume_disconnect +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x181b6060 ieee80211_gtk_rekey_add +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x1c170954 ieee80211_vif_to_wdev +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x22892dea ieee80211_calc_rx_airtime EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x5250cf98 ieee80211_tkip_add_iv -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x548f9477 ieee80211_calc_rx_airtime +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x530c1122 ieee80211_request_smps +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x59a1928c ieee80211_iterate_active_interfaces_atomic EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x59c13bed ieee80211_key_mic_failure -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x62181057 ieee80211_calc_tx_airtime -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x645de261 wdev_to_ieee80211_vif -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x6705fad4 ieee80211_gtk_rekey_notify -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x901280f9 ieee80211_find_sta_by_ifaddr -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x9acf181a ieee80211_request_smps -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xa0363c10 ieee80211_remain_on_channel_expired +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7f68ac1d ieee80211_iterate_active_interfaces_mtx +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x90d5d308 ieee80211_color_change_finish +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x91220ce8 ieee80211_calc_tx_airtime EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xa1247034 ieee80211_remove_key EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xa4b2b77e ieee80211_key_replay -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd35310e3 ieee80211_iterate_interfaces -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd8267fbe ieee80211_color_change_finish +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xadab4546 ieee80211_iterate_stations_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xc3464f57 ieee80211_iterate_interfaces +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xc4c65896 ieee80211_gtk_rekey_notify +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xc4e42d1e ieeee80211_obss_color_collision_notify EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd8e09da4 ieee80211_set_key_rx_seq -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xdae0e864 ieee80211_update_mu_groups -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xdbeead4f ieee80211_ave_rssi -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xdebfe17f ieee80211_iterate_active_interfaces_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xeb7c552e ieee80211_iter_chan_contexts_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf672a5bd ieee80211_resume_disconnect -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x127baef8 mpls_stats_inc_outucastpkts +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xdbadf9e0 ieee80211_ready_on_channel +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xde4c5283 ieee80211_ave_rssi +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf1059a2c ieee80211_remain_on_channel_expired +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf4c9eb43 ieee80211_iter_chan_contexts_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf687d0e6 ieee80211_find_sta_by_ifaddr +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xfa4f265b ieee80211_update_mu_groups +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xffa82d4a wdev_to_ieee80211_vif +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x05499049 nla_put_labels +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x0c55c580 mpls_pkt_too_big EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x7670b536 nla_get_labels -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x7cce7bf6 nla_put_labels -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xb903de5e mpls_dev_mtu -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xca2c5b6a mpls_output_possible -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xcfd0ed6c mpls_pkt_too_big -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x0b70c4f8 ip_set_name_byindex +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x76a1d9fa mpls_dev_mtu +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xe2f61445 mpls_stats_inc_outucastpkts +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xf8a31516 mpls_output_possible +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x003f874b ip_set_get_byname +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x15c2dad7 ip_set_del +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x1eecec6c ip_set_elem_len +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x21c14be4 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 0x25a6a461 ip_set_get_ip6_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x3364914a ip_set_put_flags EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x47dac0a4 ip_set_init_comment -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x4c364d7d ip_set_nfnl_get_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x4cca5e98 ip_set_del -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x688128c3 ip_set_match_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x750d6ba0 ip_set_get_byname -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x76e53d3c ip_set_test +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x490bd989 ip_set_name_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x49b06d95 ip_set_type_unregister +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7732e5f0 ip_set_type_register EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7924b6de ip_set_hostmask_map EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x81fff2d1 ip_set_netmask_map -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x91487fc7 ip_set_put_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9540ac8d 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 0xa5dfb79c ip_set_type_register -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xb27ff13c ip_set_nfnl_put -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xc3efd055 ip_set_add -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xc5c1e103 ip_set_put_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xd41ec84e ip_set_put_flags -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xd995679b ip_set_get_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xdec27880 ip_set_type_unregister -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xe10022a4 ip_set_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xe2a01f33 ip_set_get_ip4_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xec04b10d ip_set_elem_len +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xab21bfa2 ip_set_init_comment +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xdce68205 ip_set_test +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xe0aa5d6c ip_set_get_ip6_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xe16c099b ip_set_add +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xe343a399 ip_set_put_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xeb46e061 ip_set_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf09c1783 ip_set_get_ip4_port EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf3b4d4ae ip_set_alloc -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x999c879f ip_vs_conn_in_get_proto -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xaa416aa9 register_ip_vs_pe -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xaabd158e ip_vs_conn_out_get_proto -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xef95d16c unregister_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf7753a31 ip_set_nfnl_get_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf8daa121 ip_set_put_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xff5065a8 ip_set_get_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xb81ac2c7 unregister_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xebd4b70b ip_vs_conn_out_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xed10e901 register_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xf4446234 ip_vs_conn_in_get_proto +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x0b4a340f nf_conncount_add EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x3ff55ad3 nf_conncount_cache_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x49e1ef97 nf_conncount_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x5dd6ff55 nf_conncount_gc_list -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x6822e0f9 nf_conncount_count EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x8c4cb9c3 nf_conncount_list_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x8eab0a67 nf_conncount_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xd4fd3451 nf_conncount_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x00b5b26c nf_ct_tmpl_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0155aaac nf_ct_expect_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x050874b2 nf_ct_unconfirmed_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x05ba29c9 nf_conntrack_helper_try_module_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x06366ebf nf_ct_seqadj_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x06f7988c nf_ct_unlink_expect_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x089f8cee __nf_ct_expect_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x9e1a9967 nf_conncount_gc_list +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xb5a9873a nf_conncount_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xcf4bf89e nf_conncount_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xde9ed3c0 nf_conncount_count +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x006926cb __nf_conntrack_helper_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x033103e8 nf_ct_helper_expectfn_find_by_symbol +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x06d8a552 nf_conntrack_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0885e4c2 nf_ct_delete EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0bc00f80 nf_nat_helper_try_module_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1056a8bc __nf_ct_refresh_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x13b86425 nf_nat_helper_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x14ce6836 nf_ct_destroy_timeout -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x210bb6eb nf_confirm -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x22605d54 nf_l4proto_log_invalid -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x22c8f722 nf_conntrack_register_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2824b623 nf_ct_remove_expect -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x28264db0 nf_ct_delete +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0d0f8c95 nf_conntrack_hash_check_insert +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x108b8733 nf_ct_bridge_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1123e6bf nf_ct_port_tuple_to_nlattr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x144c5931 nf_conntrack_alter_reply +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x14995091 nf_nat_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1ba53c91 nf_ct_remove_expectations +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1bda4d59 nf_ct_timeout_find_get_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1ed9740a nf_ct_expect_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x205c8816 nf_nat_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x213e68cb nf_ct_expect_related_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x25752e41 nf_nat_helper_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x280e5e96 nf_connlabels_replace 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 0x2a5db237 nf_ct_helper_expectfn_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2ef699ab nf_conntrack_helper_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x39e239af nf_ct_kill_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x418d0dac nf_ct_iterate_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x45655964 nf_connlabels_replace -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x47211e01 nf_ct_tmpl_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x49576c64 nf_ct_expect_iterate_net -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4fa4f31e nf_ct_acct_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x51c7dd47 __nf_conntrack_helper_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x52c3adf2 nf_conntrack_eventmask_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5a9fb2b1 nf_ct_seq_adjust -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5d82902a nf_nat_helper_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x60998ebd nf_ct_helper_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x609cbce4 nf_conntrack_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x61709bda nf_ct_expect_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2a04ac92 nf_ct_kill_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2ac1a067 nf_ct_expect_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2b652621 nf_ct_acct_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2cb21572 nf_ct_expect_iterate_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2ce9f7ac nf_ct_get_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2e0556dd nf_ct_deliver_cached_events +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2f5c2a9c nf_ct_remove_expect +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2fcd8b11 nf_ct_iterate_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x305a9ef9 nf_ct_expect_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x373e60a3 nf_conntrack_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3b1064c2 nf_ct_netns_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3dfccaac nf_conntrack_eventmask_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4132419a nf_conntrack_helper_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x41c57f91 nf_ct_destroy_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x469a5f95 nf_ct_unexpect_related +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x47b2cb6f nf_conntrack_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4c93fa43 nf_ct_extend_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4d254ec9 nf_ct_netns_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4da7e18a nf_connlabels_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4e661c63 nf_ct_bridge_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x52c87fab nf_conntrack_helper_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x62663b8d nf_ct_gre_keymap_add EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x693c3961 nf_ct_helper_hash -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6a3e7f93 nf_conntrack_alter_reply -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6eedbf3d nf_ct_helper_log -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x728f808a nf_ct_netns_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x741efd84 nf_ct_expect_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x77423dab nf_ct_helper_expectfn_find_by_symbol -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x796fd292 nf_ct_expect_iterate_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x79720797 nf_ct_get_tuplepr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7a18e6f7 nf_ct_gre_keymap_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7accb74d nf_nat_helper_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7c14bfdd __nf_conntrack_confirm -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x80e67743 nf_ct_iterate_cleanup_net -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8387ad8d nf_ct_expect_related_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x85773ca7 nf_ct_bridge_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x883cd2d5 nf_ct_helper_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ee788b8 nf_ct_tcp_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7415dcab __nf_conntrack_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x764c09cb nf_ct_extend_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x78d5ccc5 nf_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7ea2dc21 __nf_ct_try_assign_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x86882220 nf_ct_seq_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x88492f92 nf_conntrack_helpers_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x89251173 nf_conntrack_tuple_taken +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ac8fd71 nf_ct_helper_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8c31cd1d nf_ct_iterate_cleanup_net +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8c727082 nf_l4proto_log_invalid +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8e3758ba nf_conntrack_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8e8ef77a nf_connlabels_get EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ffe7e89 nf_conntrack_htable_size -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x999a38e0 nf_ct_extend_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x999a8604 __nf_ct_expect_find EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9adb7399 nf_conntrack_expect_lock -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9ee071d6 nf_ct_bridge_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa223a25b nf_conntrack_tuple_taken -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa33923ca __nf_ct_try_assign_helper -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa7d0f78a nf_ct_remove_expectations -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xab68388f nf_conntrack_helpers_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xadff5812 nf_ct_get_id +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9cec5ae6 nf_conntrack_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9e824f2d nf_ct_set_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa21f5b11 nf_ct_expect_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xaeae93ed nf_conntrack_unregister_notifier 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 0xb1abea58 nf_ct_gre_keymap_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb5d02074 nf_ct_timeout_put_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb84f2eeb nf_ct_l4proto_log_invalid -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb9c6b0a7 nf_conntrack_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbd6fd235 nf_conntrack_in -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbe094baf nf_ct_set_timeout -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbfd11a76 nf_ct_seq_offset +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb3f83fc9 nf_ct_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb73cf801 nf_ct_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbf284954 nf_ct_helper_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc091d13b nf_ct_seqadj_init EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc18ac88d nf_ct_expect_hsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc1bb8d96 nf_conntrack_unregister_notifier EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc40f284c nf_ct_helper_hsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc5ea3f40 nf_ct_netns_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc7e3053d nf_conntrack_count -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcbcfc922 nf_conntrack_helpers_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcdd06622 nf_ct_untimeout -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcdf69cfb nf_ct_expect_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd3a0579b nf_ct_helper_expectfn_find_by_name -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd4dfd68e nf_ct_helper_expectfn_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc44a6e0d nf_conntrack_count +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc51f0160 nf_ct_expect_iterate_net +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc66a80b3 nf_ct_seq_offset +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcaeb80d9 nf_ct_tmpl_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcaef2292 nf_ct_unconfirmed_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcee06509 nf_ct_helper_log +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd402c355 nf_ct_untimeout EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd505c3e0 nf_ct_port_nlattr_tuple_size -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xda1f9822 nf_ct_port_tuple_to_nlattr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdb69da37 nf_ct_timeout_find_get_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd5934423 nf_conntrack_helpers_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd69bb6f5 nf_ct_helper_expectfn_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdb13f641 nf_ct_l4proto_log_invalid EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdba7326b nf_conntrack_lock -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdbe0a36a nf_conntrack_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdc38e868 nf_ct_set_auto_assign_helper_warned EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdf0aed48 nf_ct_port_nla_policy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe57847f4 nf_ct_seqadj_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe638592e nf_conntrack_helper_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe6a5396b nf_connlabels_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xeb42fcbc nf_conntrack_helper_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xec27ea02 nf_connlabels_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe2b8205d nf_ct_timeout_put_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe6658754 __nf_ct_refresh_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe8867327 nf_ct_helper_expectfn_find_by_name +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe8e4bb93 nf_ct_unlink_expect_report EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xec8beba6 nf_ct_expect_hash +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xed2e1bb2 nf_ct_tcp_seqadj_set EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf76e2820 nf_ct_extend_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfa270543 nf_conntrack_hash_check_insert -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfae67ff8 nf_ct_unexpect_related -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfcbb5891 nf_ct_l4proto_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfda46137 nf_ct_deliver_cached_events +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf55288bf nf_ct_get_id +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf57e2905 nf_conntrack_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfac8374e nf_conntrack_in +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfc09cea7 nf_ct_tmpl_alloc EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfe731af8 nf_ct_invert_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0xdadb8884 nf_nat_amanda_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0x22cc5dc0 nf_conntrack_broadcast_help -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0xaa9a200d nf_nat_ftp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x231d7aa5 nat_rtp_rtcp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x31289aa6 nat_t120_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x51a2263b set_h225_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x529fd68c get_h225_addr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x55968882 set_ras_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x559c1ddf nat_h245_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x5a3bba14 nat_callforwarding_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x6673b533 set_h245_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x82124200 set_sig_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x8360c717 nat_q931_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0xbf474ee1 nf_nat_irc_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x11ce0d0e nf_nat_pptp_hook_outbound -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x81926bfe nf_nat_pptp_hook_exp_gre -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x98d0cdc3 nf_nat_pptp_hook_inbound -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xb5326d94 nf_nat_pptp_hook_expectfn -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x154fb3f8 ct_sip_get_sdp_header -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x6dcf3bd0 ct_sip_get_header -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x9e23c483 nf_nat_sip_hooks -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xa68a1402 ct_sip_parse_header_uri -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xb99951cd ct_sip_parse_request -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xc50d3126 ct_sip_parse_address_param -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xd8d4e3d1 ct_sip_parse_numerical_param -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0xa1399094 nf_nat_snmp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0x89eb6b8a nf_nat_tftp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x00db6e56 nf_fwd_netdev_egress -EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x780a55d8 nft_fwd_dup_netdev_offload -EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0xbeef67a8 nf_dup_netdev_egress -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x0354186d flow_offload_free -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x065b950b flow_offload_refresh -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x0b02fb1f nf_flow_table_free -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x0d7525f9 flow_offload_add -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x429f2255 nf_flow_rule_route_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x573658ac flow_offload_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x6737e685 flow_offload_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x67fda0ec nf_flow_table_init -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x87210c5d nf_flow_dnat_port -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x9b16ee3a nf_flow_table_offload_setup -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xaca63f0b flow_offload_route_init -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xb70edd0f flow_offload_teardown -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xba14ef71 nf_flow_rule_route_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xbff1f66e nf_flow_offload_ipv6_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xd7b4c8c9 nf_flow_table_cleanup -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xdb5ad764 nf_flow_offload_ip_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xf921acd5 nf_flow_snat_port -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x0ed68fa1 nf_nat_masquerade_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x23d030ea nf_nat_icmp_reply_translation -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x24484388 nf_nat_packet -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x32a71b4f nf_ct_nat_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xff58c49a nf_ct_helper_expectfn_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xffc21ddd nf_ct_gre_keymap_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0x6cc15577 nf_nat_amanda_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0xb38ed2e9 nf_conntrack_broadcast_help +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0x68db1a14 nf_nat_ftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x03898e3a get_h225_addr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x1de207e1 set_sig_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x1ed3381d set_h245_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x6338c795 set_h225_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x6f67e5eb nat_h245_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x7caa2b38 nat_t120_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x82c5b80d nat_q931_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xa2b49f71 nat_callforwarding_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xb161e298 set_ras_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xccbe9b20 nat_rtp_rtcp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0x0a6f3c8e nf_nat_irc_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x0bea4619 nf_nat_pptp_hook_outbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x31be718a nf_nat_pptp_hook_inbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x66464d90 nf_nat_pptp_hook_expectfn +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xd7e92a86 nf_nat_pptp_hook_exp_gre +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x57170044 nf_nat_sip_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x672d0a1a ct_sip_parse_address_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x7ccd6d2d ct_sip_parse_numerical_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x85cb32ba ct_sip_parse_request +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x98204d82 ct_sip_parse_header_uri +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x9e68add8 ct_sip_get_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xbbe22bb3 ct_sip_get_sdp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0x39794e8b nf_nat_snmp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0x5ba15755 nf_nat_tftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x1b5ad127 nft_fwd_dup_netdev_offload +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x2e3f744d nf_fwd_netdev_egress +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x3f386269 nf_dup_netdev_egress +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x005563ac nf_flow_offload_ipv6_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x066852b1 nf_flow_table_init +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x1478380c nf_flow_offload_ip_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x2b297c85 nf_flow_rule_route_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x2cae9a21 nf_flow_table_free +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x34205fb6 nf_flow_rule_route_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x4d1b8f9e flow_offload_free +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x5655c635 nf_flow_snat_port +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x8c80f245 nf_flow_table_cleanup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x8cbee0b2 flow_offload_route_init +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x8d3af783 flow_offload_teardown +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xa0eb5b8a flow_offload_add +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xb3964458 nf_flow_table_offload_setup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xd269b56c flow_offload_refresh +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xef22e753 nf_flow_dnat_port +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xf34ae836 flow_offload_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xfb8a2a3b flow_offload_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x00fb0214 nf_nat_icmp_reply_translation +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x033d7815 nf_nat_inet_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x09870a5f nf_nat_inet_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x1b578b3a nf_nat_redirect_ipv6 EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3bc17c49 nf_nat_masquerade_inet_register_notifiers -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x40dcd2a8 nf_nat_inet_register_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x5ba56160 nf_nat_redirect_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x6364a8ec nf_nat_redirect_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x6890643d nf_nat_inet_unregister_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x759b805a nf_nat_inet_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x827603e0 nf_nat_ipv4_register_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x9bf70bfc nf_nat_ipv6_unregister_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xa1e481d8 nf_nat_ipv4_unregister_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xafa883c6 nf_nat_icmpv6_reply_translation +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x412264c4 nf_nat_ipv4_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x47ef36a7 nf_ct_nat_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x4a570d16 nf_nat_icmpv6_reply_translation +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x51a03c71 nf_nat_ipv6_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x57b8d038 nf_nat_redirect_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x5bb44435 nf_nat_alloc_null_binding +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x8e336d29 nf_nat_ipv6_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x9107940e nf_nat_masquerade_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xa2808079 nf_nat_packet +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xc490e614 nf_nat_ipv4_register_fn EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd9c25654 nf_nat_masquerade_inet_unregister_notifiers -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xe5cb0545 nf_nat_ipv6_register_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xf3975307 nf_nat_masquerade_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xfdbe9a8a nf_nat_alloc_null_binding -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x06c10a15 nf_synproxy_ipv6_init +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xdfc43407 nf_nat_masquerade_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xfb13914e nf_nat_inet_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x0ad038e7 nf_synproxy_ipv6_init +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x0fafe355 nf_synproxy_ipv6_fini EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x1f099794 synproxy_init_timestamp_cookie -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x2b48ca90 synproxy_recv_client_ack_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x553f4bdd nf_synproxy_ipv6_fini -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x5b90b269 synproxy_send_client_synack_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x5f6e1704 ipv6_synproxy_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x708d841b synproxy_send_client_synack -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x7a3da5a0 synproxy_parse_options -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xac90b8a1 ipv4_synproxy_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xb2859ef9 nf_synproxy_ipv4_init -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xc9489302 synproxy_recv_client_ack +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x282c06a8 nf_synproxy_ipv4_fini +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x2d53dd1a nf_synproxy_ipv4_init +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x2dfa74ea ipv6_synproxy_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x6979234b synproxy_parse_options +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x8679de22 ipv4_synproxy_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xa235d647 synproxy_send_client_synack_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xa97fc80e synproxy_send_client_synack +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xb76dec1c 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 0xe17bdf31 nf_synproxy_ipv4_fini -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x021c5b51 nft_meta_set_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xea24aadc synproxy_recv_client_ack +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x038323ce nft_meta_get_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x03d0893a nft_set_catchall_gc +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x05970a84 nft_register_flowtable_type EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x06c6ca47 nft_meta_policy -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x090c6cfa nft_meta_get_dump -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x21449bb4 nft_register_chain_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x23b74dfa nft_obj_notify -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x28f7a49a nft_meta_set_init -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x29a778d3 nft_set_elem_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2a151d9a nft_register_obj -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x30049d15 nft_meta_set_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x12119f6e nft_unregister_obj +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x12dbe616 nft_register_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x15335221 nft_parse_register_store +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x186cf5f8 nft_unregister_flowtable_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1b4aab71 nft_meta_set_init EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3251d762 nf_tables_trans_destroy_flush_work +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x33ad97e1 nft_flowtable_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x33bcb7d1 nft_meta_get_dump EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x41b71e65 nft_trace_enabled -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x49ff5155 nft_obj_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4e764c5c __nft_release_basechain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x54223c55 nft_do_chain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x548f80f0 nft_meta_get_eval -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x580b866d nf_tables_deactivate_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x588c776c nft_dump_register -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5ec7511c nft_unregister_chain_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x641765a2 nf_tables_deactivate_flowtable -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x706ed4c5 nft_register_flowtable_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x74ee00ea nft_unregister_obj -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x80f2e55f nft_data_dump -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8551db9b nft_set_catchall_gc -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x85f273a7 nft_set_lookup_global -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8afbe285 nft_meta_set_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4d7b246e nft_unregister_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x58312b48 nft_data_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6611b175 nft_obj_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6b1d528d nft_set_lookup_global +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6f00fd30 nf_tables_deactivate_flowtable +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7c45fe56 nft_do_chain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7d7cfb73 nft_register_obj +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x80bee49c nf_tables_deactivate_set EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8b5ae838 nft_chain_validate_dependency -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xaed3c332 nft_unregister_flowtable_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb11186bc nft_set_catchall_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x91d67565 nft_unregister_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9a919241 nft_meta_set_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa91b48f8 nft_meta_set_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xaf1b6bda __nft_release_basechain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xaff3d5b6 nft_dump_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb1797f11 nft_set_catchall_lookup EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb3bd62b8 nft_data_release +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb85eb6fd nft_meta_get_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbac7ca95 nft_data_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbcf9c5ba nft_set_elem_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc0fac4b6 nft_request_module EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc23cd9bb nft_chain_validate_hooks -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc3d2c593 nf_tables_bind_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc89bffd9 nf_tables_destroy_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcbcd2885 nft_unregister_expr -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd0932de2 nft_request_module -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd51b36f3 nft_meta_get_init -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd78f992e nft_parse_register_store +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc68196b3 nft_meta_set_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc77e1ea1 nf_tables_destroy_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc9837c68 nft_obj_notify +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd910102d nft_chain_validate EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xde57b5f5 nft_parse_u32_check -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xde61f5e6 nft_data_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xdf5b5033 nf_tables_bind_set EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe2b8cc13 nft_parse_register_load -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe49d13cd nft_flowtable_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xeb8f2d8e nft_chain_validate -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xef49653e nft_register_expr -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf0c738c2 nft_meta_set_validate -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x0ca7d607 nfnetlink_set_err -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x2bd2ccc5 nfnetlink_subsys_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xfc4c40b8 nft_meta_set_validate +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xfd97f635 nft_register_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x1a131cdb nfnetlink_send +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x2afb67a8 nfnetlink_subsys_unregister +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x3056d7f4 nfnetlink_subsys_register EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x672d010e nfnetlink_has_listeners -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x81d0ef72 nfnetlink_unicast -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xa54bda4f nfnetlink_subsys_unregister +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x6aa3aac1 nfnetlink_unicast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x9629d5fc nfnetlink_has_listeners +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xaa2f7fce nfnetlink_set_err EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xe2ba2faf nfnetlink_broadcast -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xe6a73c74 nfnetlink_send -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x552ba717 nfnl_acct_overquota +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xfce18945 nfnetlink_broadcast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xa6b3e02d nfnl_acct_find_get +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xb154e39a nfnl_acct_update +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xb327b3b8 nfnl_acct_overquota EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbecf5d14 nfnl_acct_put -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xc1064597 nfnl_acct_update -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xdd1b1367 nfnl_acct_find_get -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x11a2ce12 nf_osf_find EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x35eff5e0 nf_osf_fingers -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x86a9d003 nf_osf_match -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x09db9744 nft_fib_store_result -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x5011a212 nft_fib_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xa757547e nft_fib_init -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xa8943b3f nft_fib_validate -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x0aee8f63 nft_reject_dump +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x67dcaccc nf_osf_find +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x7fcd6244 nf_osf_match +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x01536c39 nft_fib_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x0c215d79 nft_fib_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x5ec1d4f8 nft_fib_init +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x751b5f76 nft_fib_store_result EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x1de558c1 nft_reject_icmpv6_code -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x2cf2b31b nft_reject_validate EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x6081751d nft_reject_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x9d7e7bc6 nft_reject_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xa17aeebb nft_reject_init +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xb8acaddd nft_reject_validate EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xe2c84666 nft_reject_icmp_code -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xedede22b nft_reject_init EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x04e27719 xt_compat_flush_offsets -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x060c7218 xt_target_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x10b63d63 xt_check_match -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x223e17a4 xt_compat_target_from_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3020309e xt_compat_target_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3cc4dd39 xt_find_table_lock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x439245f3 xt_proto_init -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x598a2027 xt_compat_match_offset -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5ddc99b7 xt_proto_fini -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x79664da5 xt_replace_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x0f260fd2 xt_request_find_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x1210f8a1 xt_request_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x17202322 xt_unregister_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x1747d6a2 xt_match_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3f18d912 xt_check_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x6790bbb1 xt_table_unlock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x69fd0f2e xt_compat_target_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x6bcc76f9 xt_unregister_template +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x6fdcaa34 xt_compat_target_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7b13595d xt_replace_table EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7bce4603 xt_data_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7d5ed5fe xt_register_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7ea327a7 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 0x84ab3795 xt_compat_match_from_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x8604fc39 xt_unregister_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x98d7abe9 xt_request_find_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x8c62646a xt_register_template +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x985e2450 xt_check_target EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9c995c69 xt_percpu_counter_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa1c84175 xt_compat_match_from_user EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa7c94f1d xt_compat_lock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xb6508299 xt_unregister_template -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbeb936cd xt_check_target EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbfacb837 xt_percpu_counter_free -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc372addc xt_register_template +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbfbbed0e xt_proto_init +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc01b0c2a xt_register_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc563df85 xt_target_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc5f33c27 xt_hook_ops_alloc EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc7fae024 xt_compat_calc_jump -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xcf80223c xt_compat_match_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xcfc82730 xt_compat_match_to_user EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd1e246a2 xt_compat_unlock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd31ce98f xt_request_find_table_lock EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd3fcc511 xt_tee_enabled -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd402eb7b xt_table_unlock EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd9bb821b xt_copy_counters +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xdc56b7ec xt_compat_match_offset EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xddf68fc6 xt_find_revision -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xdeb00263 xt_hook_ops_alloc -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe091557b xt_match_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xf33f3a21 xt_request_find_match -EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x3c96810b xt_rateest_lookup -EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x8266a95b xt_rateest_put -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x396eaf61 nci_spi_allocate_spi -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x63bae986 nci_spi_send -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xfb5790c9 nci_spi_read -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x0b131042 nci_uart_set_config -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xd8fa1c19 nci_uart_register -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xde9aa50e nci_uart_unregister -EXPORT_SYMBOL_GPL net/nsh/nsh 0x00f156ed nsh_pop -EXPORT_SYMBOL_GPL net/nsh/nsh 0xdd3827e5 nsh_push -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x3f6db350 ovs_vport_free -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x46f38a74 ovs_netdev_link -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x575a42e7 ovs_vport_alloc -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x627947a2 __ovs_vport_ops_register -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xa2e54854 ovs_vport_ops_unregister -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xaef5a16a ovs_netdev_tunnel_destroy -EXPORT_SYMBOL_GPL net/psample/psample 0x2c602fa5 psample_group_put -EXPORT_SYMBOL_GPL net/psample/psample 0xae4904e7 psample_sample_packet -EXPORT_SYMBOL_GPL net/psample/psample 0xcad7c503 psample_group_take -EXPORT_SYMBOL_GPL net/psample/psample 0xe4eb7b74 psample_group_get +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe216f3eb xt_request_find_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe4273200 xt_compat_target_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe5ad8ea5 xt_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xebb7ec45 xt_proto_fini +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x20e92f27 xt_rateest_lookup +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0xcd11fc21 xt_rateest_put +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x87651031 nci_spi_send +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x8c847e6b nci_spi_allocate_spi +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xa7f92f3e nci_spi_read +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x44f33e24 nci_uart_unregister +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x6eb29154 nci_uart_register +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xee8f4076 nci_uart_set_config +EXPORT_SYMBOL_GPL net/nsh/nsh 0x61011e65 nsh_pop +EXPORT_SYMBOL_GPL net/nsh/nsh 0xe7d9429f nsh_push +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x2134073c ovs_vport_alloc +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x2c1eec9d ovs_vport_free +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x391abcf5 ovs_vport_ops_unregister +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x42cd269c ovs_netdev_link +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xcc80425b ovs_netdev_tunnel_destroy +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xe45f8c3f __ovs_vport_ops_register +EXPORT_SYMBOL_GPL net/psample/psample 0x286668e0 psample_sample_packet +EXPORT_SYMBOL_GPL net/psample/psample 0x536ddc91 psample_group_put +EXPORT_SYMBOL_GPL net/psample/psample 0x6eb0be5f psample_group_take +EXPORT_SYMBOL_GPL net/psample/psample 0xa4313982 psample_group_get EXPORT_SYMBOL_GPL net/qrtr/ns 0x8d25501f qrtr_ns_remove EXPORT_SYMBOL_GPL net/qrtr/ns 0xa47e91ba qrtr_ns_init -EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x0b31e07d qrtr_endpoint_unregister -EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x2c237c62 qrtr_endpoint_register -EXPORT_SYMBOL_GPL net/qrtr/qrtr 0xc3f45b30 qrtr_endpoint_post +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x30f72e70 qrtr_endpoint_register +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x75c727f1 qrtr_endpoint_unregister +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0xb5208717 qrtr_endpoint_post EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq -EXPORT_SYMBOL_GPL net/rds/rds 0x056f3140 rds_send_path_reset -EXPORT_SYMBOL_GPL net/rds/rds 0x10a4c692 rds_for_each_conn_info -EXPORT_SYMBOL_GPL net/rds/rds 0x1e662639 rds_connect_complete -EXPORT_SYMBOL_GPL net/rds/rds 0x2788a4b5 rds_inc_path_init +EXPORT_SYMBOL_GPL net/rds/rds 0x00abf25d rds_conn_path_drop +EXPORT_SYMBOL_GPL net/rds/rds 0x0881e168 rds_atomic_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x11265b27 rds_trans_unregister +EXPORT_SYMBOL_GPL net/rds/rds 0x11cb009d rds_trans_register +EXPORT_SYMBOL_GPL net/rds/rds 0x13e1ba21 rds_conn_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0x1bccfcce rds_send_ping +EXPORT_SYMBOL_GPL net/rds/rds 0x1dc16da1 rds_message_addref +EXPORT_SYMBOL_GPL net/rds/rds 0x1df046f0 rds_conn_create +EXPORT_SYMBOL_GPL net/rds/rds 0x22e030cb rds_send_xmit EXPORT_SYMBOL_GPL net/rds/rds 0x2b0d543c rds_message_add_extension -EXPORT_SYMBOL_GPL net/rds/rds 0x2ed726e2 rds_message_addref +EXPORT_SYMBOL_GPL net/rds/rds 0x30d59531 rds_for_each_conn_info EXPORT_SYMBOL_GPL net/rds/rds 0x36087aa4 rds_stats -EXPORT_SYMBOL_GPL net/rds/rds 0x39d85f63 rds_send_xmit -EXPORT_SYMBOL_GPL net/rds/rds 0x3ce002da rds_message_put -EXPORT_SYMBOL_GPL net/rds/rds 0x3fcbeaaf rds_recv_incoming -EXPORT_SYMBOL_GPL net/rds/rds 0x40c1f294 rds_conn_create_outgoing EXPORT_SYMBOL_GPL net/rds/rds 0x45a4781e rds_addr_cmp -EXPORT_SYMBOL_GPL net/rds/rds 0x46da669b rds_trans_register -EXPORT_SYMBOL_GPL net/rds/rds 0x51a2ab47 rds_conn_create -EXPORT_SYMBOL_GPL net/rds/rds 0x54338b51 rds_send_path_drop_acked 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 0x644060f5 rds_trans_unregister -EXPORT_SYMBOL_GPL net/rds/rds 0x676fc1b9 rds_atomic_send_complete -EXPORT_SYMBOL_GPL net/rds/rds 0x69e5bc60 rds_conn_path_drop -EXPORT_SYMBOL_GPL net/rds/rds 0x743755df rds_info_deregister_func +EXPORT_SYMBOL_GPL net/rds/rds 0x61538c76 rds_send_path_reset +EXPORT_SYMBOL_GPL net/rds/rds 0x66a37554 rds_message_put +EXPORT_SYMBOL_GPL net/rds/rds 0x6851fc33 rds_conn_drop +EXPORT_SYMBOL_GPL net/rds/rds 0x686fe6a2 rds_info_deregister_func +EXPORT_SYMBOL_GPL net/rds/rds 0x6df8e689 rds_rdma_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x720fceba rds_send_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0x73c0223e rds_info_register_func +EXPORT_SYMBOL_GPL net/rds/rds 0x7a6a0fcd rds_inc_put EXPORT_SYMBOL_GPL net/rds/rds 0x7b399e66 rds_page_remainder_alloc +EXPORT_SYMBOL_GPL net/rds/rds 0x7f5ec7e6 rds_recv_incoming +EXPORT_SYMBOL_GPL net/rds/rds 0x7f6415d9 rds_conn_path_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0x85627c21 rds_conn_destroy EXPORT_SYMBOL_GPL net/rds/rds 0x85e4e520 rds_stats_info_copy -EXPORT_SYMBOL_GPL net/rds/rds 0x85fce185 rds_send_drop_acked -EXPORT_SYMBOL_GPL net/rds/rds 0x8d2830a4 rds_inc_put -EXPORT_SYMBOL_GPL net/rds/rds 0x930c934c rds_inc_init -EXPORT_SYMBOL_GPL net/rds/rds 0x987aae83 rds_info_register_func -EXPORT_SYMBOL_GPL net/rds/rds 0xb17f3e3e rds_conn_connect_if_down -EXPORT_SYMBOL_GPL net/rds/rds 0xbc3abb05 rds_conn_drop +EXPORT_SYMBOL_GPL net/rds/rds 0x8c7a46c0 rds_inc_init +EXPORT_SYMBOL_GPL net/rds/rds 0xaa00d671 rds_send_path_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0xb12b9fe2 rds_message_unmapped +EXPORT_SYMBOL_GPL net/rds/rds 0xb2e6f22c rds_connect_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xb8c15df9 rds_conn_create_outgoing EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy -EXPORT_SYMBOL_GPL net/rds/rds 0xd0891e02 rds_connect_path_complete -EXPORT_SYMBOL_GPL net/rds/rds 0xd4f831e1 rds_conn_destroy -EXPORT_SYMBOL_GPL net/rds/rds 0xdd6fd976 rds_send_ping -EXPORT_SYMBOL_GPL net/rds/rds 0xe1e43020 rds_rdma_send_complete -EXPORT_SYMBOL_GPL net/rds/rds 0xe48f6863 rds_conn_path_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0xeeb66ac1 rds_connect_path_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xfaf65b6e rds_inc_path_init EXPORT_SYMBOL_GPL net/rds/rds 0xfd22dd56 rds_cong_map_updated -EXPORT_SYMBOL_GPL net/rds/rds 0xfe57bd7f rds_message_unmapped +EXPORT_SYMBOL_GPL net/sched/sch_pie 0x26793d60 pie_drop_early EXPORT_SYMBOL_GPL net/sched/sch_pie 0x6ce9b467 pie_calculate_probability -EXPORT_SYMBOL_GPL net/sched/sch_pie 0x9d6e4ba7 pie_drop_early -EXPORT_SYMBOL_GPL net/sched/sch_pie 0xadf57429 pie_process_dequeue +EXPORT_SYMBOL_GPL net/sched/sch_pie 0xc2819540 pie_process_dequeue EXPORT_SYMBOL_GPL net/sched/sch_taprio 0x5fc3c6ed taprio_offload_free EXPORT_SYMBOL_GPL net/sched/sch_taprio 0xa7f08102 taprio_offload_get -EXPORT_SYMBOL_GPL net/sctp/sctp 0x459ba30f sctp_transport_traverse_process -EXPORT_SYMBOL_GPL net/sctp/sctp 0x743ef3a7 sctp_get_sctp_info -EXPORT_SYMBOL_GPL net/sctp/sctp 0x995521ca sctp_transport_lookup_process -EXPORT_SYMBOL_GPL net/sctp/sctp 0xc54807dd sctp_for_each_endpoint -EXPORT_SYMBOL_GPL net/smc/smc 0x0ad89f41 smc_hash_sk -EXPORT_SYMBOL_GPL net/smc/smc 0x560e69b7 smcd_alloc_dev -EXPORT_SYMBOL_GPL net/smc/smc 0x5e9d12ba smcd_free_dev -EXPORT_SYMBOL_GPL net/smc/smc 0x7ab41530 smc_unhash_sk -EXPORT_SYMBOL_GPL net/smc/smc 0x80dde5f8 smcd_handle_irq -EXPORT_SYMBOL_GPL net/smc/smc 0x90f358b1 smcd_unregister_dev -EXPORT_SYMBOL_GPL net/smc/smc 0xad2147fd smc_proto6 -EXPORT_SYMBOL_GPL net/smc/smc 0xbd717e3d smc_proto -EXPORT_SYMBOL_GPL net/smc/smc 0xc1644cde smcd_handle_event -EXPORT_SYMBOL_GPL net/smc/smc 0xf1e24e27 smcd_register_dev +EXPORT_SYMBOL_GPL net/sctp/sctp 0x1a200ba6 sctp_for_each_endpoint +EXPORT_SYMBOL_GPL net/sctp/sctp 0x28cb42ca sctp_get_sctp_info +EXPORT_SYMBOL_GPL net/sctp/sctp 0xb3269f0c sctp_transport_traverse_process +EXPORT_SYMBOL_GPL net/sctp/sctp 0xcdbd398a sctp_transport_lookup_process +EXPORT_SYMBOL_GPL net/smc/smc 0x07403abc smcd_handle_event +EXPORT_SYMBOL_GPL net/smc/smc 0x0ed07afa smcd_handle_irq +EXPORT_SYMBOL_GPL net/smc/smc 0x28d19fda smc_hash_sk +EXPORT_SYMBOL_GPL net/smc/smc 0x29878aa6 smc_proto6 +EXPORT_SYMBOL_GPL net/smc/smc 0x5dd53b80 smcd_unregister_dev +EXPORT_SYMBOL_GPL net/smc/smc 0x62860851 smcd_register_dev +EXPORT_SYMBOL_GPL net/smc/smc 0x75a24785 smc_unhash_sk +EXPORT_SYMBOL_GPL net/smc/smc 0x7e9d35b0 smcd_free_dev +EXPORT_SYMBOL_GPL net/smc/smc 0x7fdbab7f smcd_alloc_dev +EXPORT_SYMBOL_GPL net/smc/smc 0xa5fdfb2e smc_proto EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x38d3dce5 g_make_token_header EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x482ac5a4 g_token_size -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x7819f987 gss_mech_register -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xabb05469 svcauth_gss_flavor -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xb5a3f2c9 gss_mech_unregister +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x52308ea8 gss_mech_unregister +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xa853e320 gss_mech_register EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xd7673035 g_verify_token_header -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xedcf6ade svcauth_gss_register_pseudoflavor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0058ef3a auth_domain_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0110898a svc_prepare_thread -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x01740d07 cache_purge -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x020892b5 rpc_restart_call_prepare -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x02578c6c rpc_pipe_generic_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x04773c31 rpcauth_unwrap_resp_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x04ff8a82 rpc_add_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x058a2d73 svc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xdae237b5 svcauth_gss_flavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xecbd0830 svcauth_gss_register_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x002cfedb xprt_adjust_cwnd +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00743421 rpc_force_rebind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x01b9d6d2 rpcauth_wrap_req_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x03f48cff svcauth_unix_purge EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05e807a9 xdr_encode_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x061e06e1 xdr_align_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x064ed4a1 svc_bind EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x065994f1 xdr_encode_opaque_fixed -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x07139b89 xdr_enter_page -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x072feddc write_bytes_to_xdr_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x07a6b97e auth_domain_find -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x086abda5 svc_age_temp_xprts_now -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0ab33975 sunrpc_cache_register_pipefs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0b13ca6f rpc_find_or_alloc_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0cede430 xdr_decode_array2 -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0e0efe1c svc_rpcb_cleanup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x11dc6358 rpcauth_init_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x12f19331 svc_seq_show -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x14c4c199 xprt_complete_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x15103c0d rpc_shutdown_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x161f3875 svc_close_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x166848d8 svc_process -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x18fa62e1 rpc_clnt_xprt_switch_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x19bd0474 rpcauth_lookupcred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1ab734bd xprt_wake_pending_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1ae6b669 xdr_decode_word -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1b93b870 svc_shutdown_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1d74470c svc_destroy +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0687e56a xprt_reconnect_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0973591b xdr_reserve_space_vec +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x09c31c9f rpcauth_init_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0a974f82 xdr_terminate_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0ade4f12 svc_reserve +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0c22d629 xdr_decode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0cfb8510 rpc_clnt_xprt_switch_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0d28d8fb rpc_killall_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0d339c6f sunrpc_cache_lookup_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0ec273ba rpc_peeraddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f58cffb svc_fill_write_vector +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x10cf4864 xdr_expand_hole +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x12bf5b2b rpcauth_lookupcred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x15155ba1 svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1516b666 rpc_run_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x17178e13 rpc_net_ns +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x176e3f19 auth_domain_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x18e9fbe0 xdr_init_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1a8ca3ed xdr_page_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1b15061c xprt_wake_pending_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1ba2958a xprt_lookup_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1c1984f8 rpcauth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1dcc08e6 svc_generic_rpcbind_set EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e119a79 rpcauth_get_pseudoflavor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e48d1e9 rpc_clnt_xprt_switch_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1eed7484 rpc_release_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e5662e1 rpc_localaddr EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f2a9970 rpc_ntop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f89caf3 xprt_release_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1fed6672 xdr_page_pos -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x21a41162 rpc_prepare_reply_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2215f2f4 rpc_clnt_test_and_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x239375e5 xdr_init_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2423228a rpc_clone_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2669288c xdr_stream_decode_opaque_dup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x286967df svc_xprt_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x28f22e58 xprt_wait_for_buffer_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2902cd60 rpcauth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f2bc508 rpcb_getport_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1fa362c8 svc_sock_update_bufs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x209aa3d6 rpc_call_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x20d47d68 xdr_encode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x21289f38 rpcauth_stringify_acceptor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x23a67d41 xprt_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x24b6c532 rpcauth_init_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x25b2b4d9 xprt_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x26222f24 xdr_stream_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x26394949 xprt_wake_up_backlog +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2696dc8d cache_seq_stop_rcu EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2936c4f4 xprt_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2ae76bae rpc_call_start -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2b0fe48c bc_svc_process -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2c0601fc svc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2c06cecf xprt_reserve_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2d02e5a7 rpc_mkpipe_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2d842137 rpc_mkpipe_dentry -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2df7e1bd svc_proc_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2e02b90f rpc_clnt_swap_activate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3131617f xprt_wake_up_backlog +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2b103c50 sunrpc_init_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2c5670f3 gssd_running +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2e87a275 rpc_restart_call +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2eb4279e rpc_prepare_reply_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2ed1c2dd rpc_call_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3071261a auth_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3144299d sunrpc_destroy_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3168ab32 xdr_inline_pages EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3251e512 xprt_reconnect_backoff -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x325e3530 rpcauth_destroy_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x32d6f821 xprt_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x33d6d792 rpc_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x346f4abf rpc_unlink -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x348fec15 svc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x327fb8fd svc_create_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x32b5dcfd svc_xprt_deferred_close +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x332e25ec rpc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x33327e52 csum_partial_copy_to_xdr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3378b41e put_rpccred EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x34d184de rpc_wake_up_status -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x36486257 rpc_restart_call +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3520ccaa xprt_wait_for_reply_request_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x354884f2 rpc_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x36388e69 xprt_release_rqst_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x36fc3549 rpc_sleep_on_priority +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x37d129e3 bc_svc_process EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3a0a23b6 svc_addsock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3b24ff3f put_rpccred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3cc714cd rpc_init_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3d3026d2 xdr_terminate_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3dbe0139 svc_print_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x39374cbe rpc_find_or_alloc_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x397bf295 xprt_free_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3a4aec37 rpc_uaddr2sockaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3b57a722 svc_fill_symlink_pathname +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3c861a89 xdr_write_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3e26478e sunrpc_cache_update +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3e767933 xprt_pin_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f11512a rpc_num_bc_slots +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f58f2e1 rpc_clnt_setup_test_and_add_xprt EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f9a2b0b rpcauth_get_gssinfo -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x40e5e6bd rpc_clnt_iterate_for_each_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x41e3fe1f rpc_pton -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x41f555f8 rpcb_getport_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4222a298 xprt_register_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x42c55ab3 read_bytes_from_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x41cd9a28 rpcauth_lookup_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x427cfd8a rpc_clone_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4306e900 rpc_task_release_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x44e253d5 cache_seq_start_rcu EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x453efa54 svc_pool_map -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x468704b0 rpc_put_task_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x46b572b9 svc_generic_init_request -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x46f0a610 xdr_stream_pos -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x47c31585 sunrpc_cache_pipe_upcall_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4acba899 rpc_malloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x45e345d2 rpcauth_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x46a1b8fc rpc_pipe_generic_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x47581e17 svc_find_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x47635034 svc_xprt_received EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4afedab1 xprtiod_workqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4b223645 xprt_release_rqst_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4b2fbf64 rpc_clnt_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4c27974d svc_recv EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4dac77f0 xdr_encode_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4dccd632 xprt_reserve_xprt_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e8bbd9e rpc_uaddr2sockaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e212afc write_bytes_to_xdr_buf EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e8f6ca7 sunrpc_net_id -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x519a5891 rpc_force_rebind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4fe47a5d xprt_put EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x54f7d106 xprt_alloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5593900a rpc_init_pipe_dir_head -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5785adc7 svc_authenticate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x57b86c76 svc_unreg_xprt_class -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x591c1bb8 svc_xprt_copy_addrs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5928acb1 cache_check +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5356ed13 rpc_clone_client_set_auth +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x538f682d svc_create_pooled +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53b5e444 rpc_bind_new_program +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x550ede64 rpc_destroy_pipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x55cd6c51 rpc_clnt_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x564d5d22 svc_xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x567942e8 svc_rpcb_cleanup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x57940435 xprt_destroy_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x57a2c5d2 rpc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x584fe99a xprt_release_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x58af4107 xprt_release_xprt EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a45ba31 svc_auth_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5b376939 rpc_wake_up_queued_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5b426dd4 sunrpc_init_cache_detail -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5c81f0a9 rpc_alloc_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5d320c9a xprt_update_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5d762721 xdr_stream_decode_opaque -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5ea8497b xprt_force_disconnect -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5fb0ea3f rpc_run_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5fb2b523 svc_xprt_enqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5fb396b3 svc_bind -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x602f196f rpc_switch_client_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x61463b3f xdr_buf_trim -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6199e4c9 svc_set_num_threads_sync -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x622e53bf xprt_wait_for_reply_request_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6248c5a7 xprt_free_slot -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x631433be xdr_write_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x63b62279 rpc_get_sb_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66b9deb9 svc_xprt_init +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5c34e210 xdr_stream_decode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5c4760e6 rpc_mkpipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5d2f7654 rpc_put_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5d3b02e5 read_bytes_from_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5ee2b11f rpc_task_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x64331ca5 rpc_call_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x652b6e15 svc_prepare_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66157b68 svc_rqst_free EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66ed2439 rpc_destroy_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6b5a0315 rpc_bind_new_program -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6b610a04 rpc_d_lookup_sb -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6bcd97ac sunrpc_cache_update -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6bf14de7 xprt_lock_connect -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6d1d8c6f xdr_process_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6dc0f8a0 cache_seq_stop_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6e018aa1 rpc_max_bc_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6e764e0e sunrpc_cache_pipe_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6ee21f07 cache_unregister_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7040a17d rpc_sleep_on -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x704ac028 xprt_unlock_connect -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x70d3ac5d rpc_count_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7155b6c1 svc_fill_write_vector +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6751c7e8 svc_xprt_do_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x687b79a1 xdr_read_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x68f8b4f4 rpc_wake_up_first +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6c9cc767 rpc_put_task_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6cbbd40c svc_set_num_threads_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6e43dad0 xprt_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x701d411d rpc_exit +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71abb61e rpc_sleep_on_timeout 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 0x727c3720 rpc_delay -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x73f9a6b5 cache_destroy_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x74343fe7 rpcauth_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x74944f2c rpc_clnt_swap_deactivate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x74ad4676 svc_rpcbind_set_version -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x75b81584 rpc_sleep_on_priority_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x75e4045a rpc_set_connect_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x78558a7f svc_set_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x787f216b xprt_disconnect_done -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7a8ac107 xdr_inline_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7a937e5f rpc_exit -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7b14d317 rpc_clnt_setup_test_and_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7c6df687 unix_domain_find -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7db5d07b svcauth_unix_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x72638f45 svc_print_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7423461a svc_close_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7491d555 svc_encode_result_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7564d508 svc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x76a701ab rpc_clnt_swap_deactivate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x770d523b rpc_clnt_swap_activate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7b048dd6 cache_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7c075654 svc_auth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7c55e9f8 svc_rpcbind_set_version +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7dacc9ff rpc_malloc EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x800b8265 xprt_adjust_cwnd -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x805211b7 xdr_commit_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80569ea9 svc_find_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x82864d37 cache_create_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x84ad7143 xdr_buf_subsegment -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x87776c0e rpc_localaddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x88360bd7 rpc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x88b9ffbe cache_register_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x88f84d07 svc_xprt_names -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x894f6092 xprt_unpin_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8bb2e7fc rpc_wake_up_first -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9003cbc8 svc_alien_sock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x90413edc cache_seq_start_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x911d6acc xdr_reserve_space_vec -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x913087bb rpc_proc_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x930f9f6d svc_reg_xprt_class -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x94d6389c xprt_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x96127bf1 rpc_call_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7e5fabdf rpc_switch_client_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x823613d7 rpc_clnt_iterate_for_each_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x829f5ef8 rpc_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8320c874 rpc_pton +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x83be75ef rpc_add_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x85f89548 rpc_remove_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x87a9ed42 svc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8838bdc5 xprt_reconnect_backoff +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8857f894 svc_reg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x89cdd791 xdr_encode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8ab91a8f svc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8ac82fa1 svc_seq_show +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8bbe4c45 svc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8c710bc3 xprt_disconnect_done +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8e7f4a22 rpc_clnt_xprt_switch_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8ff818b6 rpc_sleep_on_priority_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x917ec7d4 svc_rpcb_setup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x91e2ec5c __rpc_wait_for_completion_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9229f6f3 rpc_wake_up_queued_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x93133115 xdr_inline_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x93e2ed7e sunrpc_cache_unhash EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9670b5a1 rpc_free_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x990978a5 rpc_put_sb_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9974d634 svcauth_unix_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x99351c83 xdr_stream_subsegment EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x99aee353 rpc_init_priority_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9ba76dc0 svc_rpcb_setup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9bf1214b rpc_wake_up_next -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9e80ce7d xprt_alloc_slot -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9fedb1d8 sunrpc_cache_lookup_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9ff0121f rpc_sleep_on_priority +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x99b39b74 sunrpc_cache_unregister_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x99d56399 rpc_set_connect_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x99f4abd5 xdr_stream_decode_opaque_dup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9a23b5b8 xdr_decode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9abc7d9c rpc_call_null +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9bddb2cc svc_addsock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9ce1bc2a rpc_put_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9df9ad44 xdr_commit_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9f7c207e rpc_clnt_xprt_switch_has_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9ffc9b3a svc_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa050cc73 cache_register_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa05b509d xdr_enter_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa0ff90dd xprt_add_backlog EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa13acdb8 svc_pool_map_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa21b06b3 rpc_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa25afe76 rpc_clone_client_set_auth -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa264ea95 csum_partial_copy_to_xdr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa45b6e33 xprt_wait_for_reply_request_def -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa48e73cb svc_drop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa4fc756f rpc_task_release_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa8415bca svc_sock_update_bufs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa98bbdc2 rpc_proc_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa9f0b91b svc_reserve -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaa063160 xprt_setup_backchannel -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaa5a4b74 svc_recv -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xad918325 gssd_running -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xae62a62a rpc_net_ns -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf06bc32 svc_xprt_received +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa190f350 svc_age_temp_xprts_now +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa484a3fd svc_xprt_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa5d78e7d xprt_setup_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa5ef9a4a svc_rqst_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa73cf33b xprt_unlock_connect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaaddf939 rpc_setbufsize +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xace6903e xdr_init_decode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xad43d98d rpc_restart_call_prepare +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xad7ac4b3 sunrpc_cache_pipe_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xae7aeb6d rpc_clnt_test_and_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaef14dab xprt_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf12b2f1 rpc_queue_upcall EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb022f3a3 rpc_queue_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb17bffd3 cache_seq_next_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb2acca0b rpcauth_create EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb312d0c4 svc_pool_map_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb340be37 rpc_alloc_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb382e38f xdr_buf_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb45a0165 xdr_stream_decode_string_dup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb4743a64 xprt_unpin_rqst EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb7d33e10 xdr_stream_decode_string_dup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb870d20e _copy_from_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb87d2d6f xprt_release_xprt_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbada619a xprt_pin_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbcfcfb18 rpcauth_stringify_acceptor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbd044f25 xdr_buf_from_iov -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbe190336 rpcauth_init_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbe8588bd rpc_remove_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf029b68 xdr_stream_subsegment -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf3af393 svc_exit_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb6875f06 xdr_init_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb8057108 rpcauth_destroy_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb947e4a0 xdr_align_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb97fee49 rpc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb9e0068e rpc_wake_up_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xba4451a1 rpc_init_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbb7ae2e1 rpc_unlink +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbb9e751b rpc_get_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbe2d54a0 rpc_init_pipe_dir_head +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf5504b8 svc_exit_thread EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc06426f6 rpc_destroy_pipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc0ac62e2 svc_rqst_replace_page EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12435e3 rpc_calc_rto -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc1651506 rpc_count_iostats_metrics -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3ae4917 auth_domain_lookup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3e05586 __rpc_wait_for_completion_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3f501de rpc_peeraddr2str +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc2b609ba svc_authenticate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3231479 rpc_shutdown_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3708614 xdr_process_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc7dde87c sunrpc_cache_register_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8685f3e rpc_count_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e435ca svc_set_num_threads EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcd53f113 svc_encode_result_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc9d85e68 svcauth_unix_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcb1c4d8f svc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcb3b35b9 rpcauth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcc79f45e xprt_write_space EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce678a59 xdr_decode_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd0e49f2a svc_fill_symlink_pathname +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce6d8d6f xprt_force_disconnect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcf861479 xprt_request_get_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcfd6099d xprt_wait_for_buffer_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd065ae19 svc_xprt_copy_addrs EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd10d1d5b rpc_machine_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd166a6f1 xdr_shift_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd191fd7e xdr_stream_decode_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd2959815 xdr_expand_hole -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd2abc33e rpc_clnt_show_stats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd2b84454 rpc_num_bc_slots -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd3356926 rpc_sleep_on_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd4abf0bb rpc_call_sync -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd4e5c8e1 xprt_write_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd52216e5 svc_rqst_replace_page -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd55beb7b sunrpc_destroy_cache_detail -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd5b858ad sunrpc_cache_unregister_pipefs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd5c5ad3c rpc_clnt_xprt_switch_has_addr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd6d41a89 xprt_lookup_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd7cf5fe1 rpcauth_lookup_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd9ef455a svc_create_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xda943356 svc_auth_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdbbd878f sunrpc_cache_unhash -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdcef31b6 svc_xprt_deferred_close -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd10dac5 xdr_encode_word -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd230327 rpc_setbufsize +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd1b15653 xprt_wait_for_reply_request_def +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd1b29ee8 rpc_mkpipe_dentry +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd20a53d9 xprt_reserve_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd368f213 svc_alien_sock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd4e0f179 cache_create_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd54bd3ad xdr_stream_decode_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd64d1d2e rpc_max_bc_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdbb1e42c xdr_reserve_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdc363834 rpcauth_unwrap_resp_decode EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd691402 xprt_find_transport_ident -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd790712 svc_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1c7b562 xdr_reserve_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdda6b04c xdr_buf_trim +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xddce1852 svc_shutdown_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdefb38db unix_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdf50ce67 svc_xprt_names +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdff38427 auth_domain_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdfffb9d9 xdr_buf_from_iov +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5385a5f rpc_count_iostats_metrics EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5cf8a62 xprt_reconnect_delay -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe63379eb rpc_call_null -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe6a84755 xdr_init_decode_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe7a1866b xprt_destroy_backchannel -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe87feba5 rpcauth_wrap_req_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe8b9158f _copy_from_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe8cd6691 svc_destroy EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeac029e1 svc_create_pooled +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe9a08d82 cache_check +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeaacf247 rpc_clnt_show_stats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xed097b43 rpc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedc96db3 xprt_unregister_transport 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 0xef4f87a8 rpc_task_timeout EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf0b7775d rpc_init_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf114c8cf xdr_read_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf13cbc9b svc_rqst_alloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf2a55110 xdr_inline_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf3132d9d xprt_request_get_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf561b8e1 svc_rqst_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf64b6342 xprt_unregister_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf98e39a2 xdr_encode_array2 -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfa0c221e svc_generic_rpcbind_set -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfa7c3fad svc_set_num_threads -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfbd00fa1 rpc_killall_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfd695b8c svc_xprt_do_enqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfe761469 xprt_add_backlog -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xff67ffc2 rpc_peeraddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xff88dd1a rpc_put_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xffd95a13 xdr_init_encode -EXPORT_SYMBOL_GPL net/tls/tls 0x5e114b4d tls_validate_xmit_skb -EXPORT_SYMBOL_GPL net/tls/tls 0xacca3428 tls_offload_tx_resync_request -EXPORT_SYMBOL_GPL net/tls/tls 0xe81156ed tls_encrypt_skb -EXPORT_SYMBOL_GPL net/tls/tls 0xfc2e7ea9 tls_device_sk_destruct +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf286e817 rpc_d_lookup_sb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf314ba0a rpc_peeraddr2str +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf32147f1 xprt_lock_connect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf37382da rpc_sleep_on +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf3faef0b svc_unreg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf40125ef cache_unregister_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf4367ea1 cache_seq_next_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf62a6e72 xprt_complete_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf8e2da49 svc_drop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9be77c7 xprt_update_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfa32f9c3 cache_destroy_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfb15a8a8 xdr_shift_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfb343d2d xprt_register_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfb6596e7 xprt_reserve_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfdf63f40 svc_generic_init_request +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfe9e8c2c sunrpc_cache_pipe_upcall_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfec2c596 svc_xprt_init +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xff583fa8 rpc_release_client +EXPORT_SYMBOL_GPL net/tls/tls 0x0e4926f4 tls_encrypt_skb +EXPORT_SYMBOL_GPL net/tls/tls 0x256e9deb tls_validate_xmit_skb +EXPORT_SYMBOL_GPL net/tls/tls 0x41df63f0 tls_device_sk_destruct +EXPORT_SYMBOL_GPL net/tls/tls 0xb7927692 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 0x03de9e9b virtio_transport_notify_poll_in -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x08fd09fe virtio_transport_stream_is_active -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x1648177e virtio_transport_notify_recv_post_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x16a69d1b virtio_transport_dgram_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x18ff3632 virtio_transport_notify_recv_pre_block -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x1a2401c1 virtio_transport_notify_buffer_size -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x1ea79f25 virtio_transport_connect -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x221ed38b virtio_transport_seqpacket_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2ab26305 virtio_transport_notify_send_pre_block -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2e73223d virtio_transport_dgram_bind -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2ee635af virtio_transport_destruct -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x32865898 virtio_transport_put_credit -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x4f6cb743 virtio_transport_do_socket_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x55ac664b virtio_transport_stream_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x5a8bcb75 virtio_transport_free_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x62ea0773 virtio_transport_notify_send_pre_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x6e6bd9ec virtio_transport_notify_send_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x6ef9a1ed virtio_transport_deliver_tap_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x747e8a92 virtio_transport_notify_recv_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x76bfe524 virtio_transport_notify_poll_out -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x8be13cf9 virtio_transport_stream_has_space -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa2a182f5 virtio_transport_stream_has_data -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa651bf40 virtio_transport_notify_recv_pre_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb06ef0c2 virtio_transport_seqpacket_has_data -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb1d06f49 virtio_transport_get_credit -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb4bea642 virtio_transport_stream_rcvhiwat -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb7822e65 virtio_transport_stream_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x03b8b579 virtio_transport_notify_send_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x06436f3f virtio_transport_notify_send_post_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x0652ad55 virtio_transport_notify_recv_pre_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x14eed0f7 virtio_transport_dgram_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x18c42fbc virtio_transport_do_socket_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x1aa7ca89 virtio_transport_notify_recv_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x30365f66 virtio_transport_notify_send_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x37ca8a85 virtio_transport_stream_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x45059a9e virtio_transport_seqpacket_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x4a8c7103 virtio_transport_stream_is_active +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x5331ca2a virtio_transport_stream_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x5da16d17 virtio_transport_inc_tx_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x5eb34054 virtio_transport_notify_recv_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x6f66cdae virtio_transport_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x751dcf14 virtio_transport_dgram_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7bffd9fc virtio_transport_notify_poll_out +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x83cfd520 virtio_transport_notify_poll_in +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x882b11bc virtio_transport_deliver_tap_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x8d361a00 virtio_transport_dgram_bind +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x8e85ca22 virtio_transport_free_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x8f1965d2 virtio_transport_seqpacket_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x8f4006f3 virtio_transport_stream_rcvhiwat +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x9845e1cd virtio_transport_connect +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa43ebfcd virtio_transport_notify_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb20dfdca virtio_transport_notify_recv_post_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 0xbd74a9c9 virtio_transport_inc_tx_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xcbe0c4f9 virtio_transport_notify_send_post_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd83de44a virtio_transport_shutdown -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xdb6422cd virtio_transport_dgram_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe8db101a virtio_transport_release -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf98a2be7 virtio_transport_seqpacket_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xfc2c766e virtio_transport_recv_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x044e8cca vsock_remove_sock +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xcb1eeb1a virtio_transport_seqpacket_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xce70ba31 virtio_transport_recv_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xcf58f3d4 virtio_transport_shutdown +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd2cfbff2 virtio_transport_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd9f06272 virtio_transport_get_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe0292069 virtio_transport_release +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe11bd38b virtio_transport_put_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe15276b0 virtio_transport_destruct +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xfbf5090e virtio_transport_notify_send_pre_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x072d014e vsock_enqueue_accept EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0e9bc9b6 vsock_addr_unbind -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x132f376d vsock_add_tap -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x1bdd28b8 vsock_enqueue_accept -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x234935de vsock_deliver_tap -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x265c3e6f vsock_core_get_transport +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x1cea0da2 vsock_core_unregister EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x284e07d8 vsock_bind_table -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x3cb51a1f vsock_create_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x315629c0 vsock_core_register +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x326749e0 vsock_deliver_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x361d2ab2 vsock_core_get_transport EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x3d4b0fca vsock_addr_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x49ef0495 vsock_for_each_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x462ecb08 vsock_stream_has_data EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4b99648c vsock_addr_bound -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x69cd5fce vsock_core_register -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x70892eb1 vsock_remove_bound -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x70cb4783 vsock_assign_transport +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4f4d4a9a vsock_assign_transport +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x503ef9d2 vsock_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x535c5ec1 vsock_add_tap EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x77c14317 vsock_addr_cast -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7c8d4e3d vsock_find_connected_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x87e20d16 vsock_stream_has_space -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x8b4ee6a9 vsock_insert_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x82f280e8 vsock_for_each_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x8374a413 vsock_remove_tap EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x90aa8549 vsock_find_cid -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x966778a2 vsock_core_unregister +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9105b944 vsock_insert_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x93630d70 vsock_find_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x974c3bde vsock_remove_bound EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9bb6fd09 vsock_connected_table -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9e5a601d vsock_remove_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9ceb3770 vsock_add_pending EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xaf2674b5 vsock_addr_equals_addr -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xba64e0ee vsock_remove_tap EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc92f7f50 vsock_table_lock -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xca0f77ec vsock_stream_has_data -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xcc689543 vsock_remove_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd73725ec vsock_remove_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd7808b58 vsock_remove_sock +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xda586925 vsock_find_bound_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xe90d22b4 vsock_create_connected EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xec96eadf vsock_addr_validate -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf1426809 vsock_add_pending -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xfd5a3cd8 vsock_find_bound_socket -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x069b80fa cfg80211_wext_giwscan -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x11ead6cd cfg80211_wext_siwfrag -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x1c487a2b cfg80211_vendor_cmd_get_sender -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x38ce50c9 cfg80211_shutdown_all_interfaces -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x51fda2be cfg80211_wext_giwmode -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x605a1ed9 cfg80211_pmsr_complete -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x696ebab1 cfg80211_wext_siwmode -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x7f9563db cfg80211_wext_siwscan -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x88aada59 cfg80211_wext_giwname -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x9d2c56de cfg80211_wext_siwrts -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x9f9d5537 cfg80211_wext_giwrts -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xbef42d9f cfg80211_vendor_cmd_reply -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xc83e3d12 cfg80211_wext_giwfrag -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xd454c28a cfg80211_wext_giwrange -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xe839af05 cfg80211_wext_giwretry -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xeff6c63b cfg80211_pmsr_report +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf959875a vsock_remove_connected +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x1e58dbba cfg80211_wext_giwrange +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x3552e0f1 cfg80211_wext_siwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x453ac9ba cfg80211_shutdown_all_interfaces +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x4c258d6c cfg80211_wext_giwname +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x5eb7c95a cfg80211_wext_giwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x6a47b6cb cfg80211_pmsr_complete +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x6df3851b cfg80211_pmsr_report +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x73b8fe02 cfg80211_wext_giwretry +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x982f4726 cfg80211_wext_giwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xa6094496 cfg80211_wext_giwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xccfd4329 cfg80211_wext_siwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xe79045ff cfg80211_wext_siwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xf0c2ea13 cfg80211_vendor_cmd_reply +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xf2be39d1 cfg80211_vendor_cmd_get_sender +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xf9048825 cfg80211_wext_siwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xfccc8afd cfg80211_wext_giwfrag 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 @@ -18603,556 +18687,600 @@ 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 0x2ca80e28 ipcomp_input -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x8684b5f2 ipcomp_output -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xc401e61e ipcomp_destroy -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xdc14ab59 ipcomp_init_state +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x04079441 ipcomp_init_state +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x15b5c022 ipcomp_output +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x6ad33c74 ipcomp_destroy +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x805f695b ipcomp_input EXPORT_SYMBOL_GPL net/xfrm/xfrm_user 0x4a0c7516 xfrm_msg_min EXPORT_SYMBOL_GPL net/xfrm/xfrm_user 0xe2521b1c xfrma_policy -EXPORT_SYMBOL_GPL sound/ac97_bus 0xf2a72924 snd_ac97_reset +EXPORT_SYMBOL_GPL sound/ac97_bus 0xd1b7caed 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 0x0f867ab1 snd_card_rw_proc_new -EXPORT_SYMBOL_GPL sound/core/snd 0x200db335 snd_card_ref -EXPORT_SYMBOL_GPL sound/core/snd 0x213c5044 snd_ctl_register_layer -EXPORT_SYMBOL_GPL sound/core/snd 0x27f1355f snd_ctl_apply_vmaster_followers -EXPORT_SYMBOL_GPL sound/core/snd 0x2ac67b5f snd_power_ref_and_wait -EXPORT_SYMBOL_GPL sound/core/snd 0x2ea83a47 snd_ctl_sync_vmaster -EXPORT_SYMBOL_GPL sound/core/snd 0x3931ae6e snd_ctl_activate_id -EXPORT_SYMBOL_GPL sound/core/snd 0x557b6fb9 snd_card_disconnect_sync -EXPORT_SYMBOL_GPL sound/core/snd 0x6573236d snd_ctl_disconnect_layer -EXPORT_SYMBOL_GPL sound/core/snd 0x6a7e6d57 snd_ctl_add_vmaster_hook -EXPORT_SYMBOL_GPL sound/core/snd 0x748f304f snd_ctl_get_preferred_subdevice -EXPORT_SYMBOL_GPL sound/core/snd 0x84e2b67c snd_card_add_dev_attr -EXPORT_SYMBOL_GPL sound/core/snd 0x98390381 snd_devm_card_new -EXPORT_SYMBOL_GPL sound/core/snd 0xb2fabad9 snd_device_get_state -EXPORT_SYMBOL_GPL sound/core/snd 0xc85380b4 snd_device_initialize -EXPORT_SYMBOL_GPL sound/core/snd 0xebc38a88 snd_device_disconnect +EXPORT_SYMBOL_GPL sound/core/snd 0x02191ba2 snd_ctl_apply_vmaster_followers +EXPORT_SYMBOL_GPL sound/core/snd 0x06af9389 snd_card_disconnect_sync +EXPORT_SYMBOL_GPL sound/core/snd 0x18909b17 snd_devm_card_new +EXPORT_SYMBOL_GPL sound/core/snd 0x20bd0dca snd_card_add_dev_attr +EXPORT_SYMBOL_GPL sound/core/snd 0x25933c46 snd_power_ref_and_wait +EXPORT_SYMBOL_GPL sound/core/snd 0x2a6ad416 snd_ctl_get_preferred_subdevice +EXPORT_SYMBOL_GPL sound/core/snd 0x2a84340a snd_ctl_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/core/snd 0x4730d48b snd_card_free_on_error +EXPORT_SYMBOL_GPL sound/core/snd 0x7a83119c snd_device_get_state +EXPORT_SYMBOL_GPL sound/core/snd 0x92733400 snd_card_ref +EXPORT_SYMBOL_GPL sound/core/snd 0xa40c7b38 snd_ctl_activate_id +EXPORT_SYMBOL_GPL sound/core/snd 0xac068d8e snd_device_initialize +EXPORT_SYMBOL_GPL sound/core/snd 0xb46e05c4 snd_ctl_sync_vmaster +EXPORT_SYMBOL_GPL sound/core/snd 0xb4f5fea2 snd_card_rw_proc_new +EXPORT_SYMBOL_GPL sound/core/snd 0xcc1f1bf5 snd_ctl_disconnect_layer +EXPORT_SYMBOL_GPL sound/core/snd 0xd5591827 snd_ctl_register_layer +EXPORT_SYMBOL_GPL sound/core/snd 0xe16f6eed snd_device_disconnect EXPORT_SYMBOL_GPL sound/core/snd 0xfaf598c6 snd_ctl_request_layer -EXPORT_SYMBOL_GPL sound/core/snd-compress 0x9f0a03de snd_compress_new -EXPORT_SYMBOL_GPL sound/core/snd-compress 0xcc54ea00 snd_compr_stop_error +EXPORT_SYMBOL_GPL sound/core/snd-compress 0x96a557b3 snd_compress_new +EXPORT_SYMBOL_GPL sound/core/snd-compress 0xc0ea32ef snd_compr_stop_error EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x04e1b99f snd_pcm_std_chmaps EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x09e913c1 snd_pcm_alt_chmaps -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x259139c8 snd_pcm_fill_iec958_consumer -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x260f00c5 snd_pcm_stream_unlock -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x3292613b snd_pcm_lib_default_mmap -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x454f626a snd_pcm_stream_unlock_irq +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x18fa8e8d _snd_pcm_stream_lock_irqsave +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x29808bd7 snd_pcm_stream_unlock_irqrestore +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x41c4994f snd_pcm_hw_constraint_eld EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x5c407196 snd_pcm_fill_iec958_consumer_hw_params EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x649892e8 snd_pcm_create_iec958_consumer_default -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x74f5c2b0 snd_pcm_stream_lock -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x82b35dd7 snd_pcm_add_chmap_ctls +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x65207375 snd_pcm_add_chmap_ctls +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x7c5ce4f9 snd_pcm_fill_iec958_consumer +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x7f9d90cc snd_pcm_stream_lock +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x8ba88fe1 snd_pcm_lib_default_mmap EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x8d864069 snd_pcm_rate_range_to_bits -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x92be42d1 snd_devm_alloc_pages +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x9d3cbef5 snd_pcm_stop_xrun +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xa00c39f5 snd_pcm_stream_unlock_irq EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xa286a234 snd_pcm_format_name -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xa883c799 snd_pcm_stream_unlock_irqrestore EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xab8bc1a2 snd_pcm_rate_mask_intersect -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xda9a8789 _snd_pcm_stream_lock_irqsave -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xe0b34905 snd_pcm_stream_lock_irq -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xf7d52938 snd_pcm_hw_constraint_eld -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xf819d81f snd_pcm_stop_xrun -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x0d08ecf7 snd_dmaengine_pcm_refine_runtime_hwparams -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x1430338d snd_dmaengine_pcm_close -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x19a99c5a snd_dmaengine_pcm_open -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x42835c93 snd_hwparams_to_dma_slave_config -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x4bbb99a7 snd_dmaengine_pcm_request_channel -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x9f9a58de snd_dmaengine_pcm_pointer -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xa2497d8a snd_dmaengine_pcm_get_chan -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xc525f343 snd_dmaengine_pcm_pointer_no_residue -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xcd9572d1 snd_dmaengine_pcm_open_request_chan -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xe8ecae22 snd_dmaengine_pcm_close_release_chan -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xe8eeae02 snd_dmaengine_pcm_trigger -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xee354ac3 snd_dmaengine_pcm_set_config_from_dai_data -EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0x42abdd4e snd_seq_driver_unregister -EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0xd7d580d8 __snd_seq_driver_register -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x09457a96 amdtp_am824_set_parameters -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x13e308df amdtp_domain_destroy -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x194db0c0 amdtp_am824_set_midi_position -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x1a71e092 amdtp_am824_init -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x47aaddca amdtp_domain_init -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x5a39b3d4 amdtp_am824_set_pcm_position -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x60c674d7 amdtp_domain_stop -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x76bf5991 amdtp_am824_midi_trigger -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x89cb4e5a amdtp_domain_stream_pcm_pointer -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x8d0f4cc3 amdtp_domain_stream_pcm_ack -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x8efcda29 amdtp_domain_add_stream -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xe765787a amdtp_am824_add_pcm_hw_constraints -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xf82761ef amdtp_domain_start -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0540d438 snd_hdac_bus_free_stream_pages +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xb715afee snd_pcm_stream_lock_irq +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xcaa2e696 snd_pcm_stream_unlock +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xd01a7ea0 snd_devm_alloc_pages +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x168d5886 snd_dmaengine_pcm_close_release_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x227e423a snd_dmaengine_pcm_refine_runtime_hwparams +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x2373fb6a snd_dmaengine_pcm_pointer_no_residue +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x2e9b508d snd_hwparams_to_dma_slave_config +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x48afaa01 snd_dmaengine_pcm_get_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x608a7955 snd_dmaengine_pcm_request_channel +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x7366f8c7 snd_dmaengine_pcm_trigger +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xcb591625 snd_dmaengine_pcm_open +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xe3ef93fd snd_dmaengine_pcm_open_request_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xe5c3dded snd_dmaengine_pcm_pointer +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xeda0161f snd_dmaengine_pcm_close +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xfbf25402 snd_dmaengine_pcm_set_config_from_dai_data +EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0x76f3ab9a snd_seq_driver_unregister +EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0x835b6b92 __snd_seq_driver_register +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x0b23a152 amdtp_am824_set_pcm_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x22e847fe amdtp_domain_stop +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x2ccb0b03 amdtp_domain_stream_pcm_pointer +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x38ac33df amdtp_domain_start +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x445b2b65 amdtp_domain_add_stream +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x75f9ea0d amdtp_am824_set_midi_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x7a7838bf amdtp_domain_stream_pcm_ack +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xab1cd341 amdtp_am824_add_pcm_hw_constraints +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xbc23aaca amdtp_domain_destroy +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xbed560c1 amdtp_am824_init +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xc4f0973d amdtp_domain_init +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xc70911f9 amdtp_am824_set_parameters +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xd125b276 amdtp_am824_midi_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x02f86433 snd_hdac_is_supported_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x05463923 snd_hdac_set_codec_wakeup EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x05636f93 snd_hdac_aligned_read -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x095a5988 snd_hdac_setup_channel_mapping -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0ad64576 snd_hdac_bus_link_power -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0b0caf34 snd_hdac_dsp_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0fcdc8a9 snd_hdac_regmap_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x11e78cbf snd_hda_bus_type +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x11fddedf snd_hdac_codec_link_down +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1384e9ba snd_hdac_regmap_update_raw EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1488641f snd_hdac_aligned_write -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x17ffe847 snd_hdac_bus_init_cmd_io -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1bfa2d21 snd_hdac_bus_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1c992e65 snd_hdac_bus_stop_chip -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1e31bd3d snd_hdac_bus_parse_capabilities -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x230e9104 snd_hdac_codec_modalias -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x240fe336 _snd_hdac_read_parm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2b42bb0c snd_hdac_register_chmap_ops -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2c225994 snd_hdac_power_down_pm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x30e0b62d snd_hdac_override_parm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x31007bf6 snd_hdac_bus_alloc_stream_pages -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3b301b19 snd_hdac_read_parm_uncached +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x15139104 snd_hdac_power_up +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x17ec7101 snd_hdac_register_chmap_ops +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1af6c684 snd_hdac_display_power +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1b64fe7e snd_hdac_get_stream_stripe_ctl +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1d0b1db0 snd_hdac_acomp_get_eld +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1db1b36c snd_hdac_read_parm_uncached +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2167c01f snd_hdac_bus_link_power +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x23a90c63 snd_hdac_device_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x250247b2 snd_hdac_bus_enter_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x25e8d3a8 snd_hdac_dsp_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2bb66933 snd_hdac_bus_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x347fd7e5 snd_hdac_get_sub_nodes +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x36be76d4 snd_hdac_check_power_state +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3821b0f8 snd_hdac_codec_modalias +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3afd9e38 snd_hdac_bus_init EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3bd544c2 snd_hdac_get_active_channels -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3f054542 snd_hdac_device_unregister -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x43e65f9c snd_hdac_bus_init_chip -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x458eba4e snd_hdac_codec_link_up -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4674f185 snd_hdac_regmap_sync -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x47eb9b55 snd_hdac_sync_power_state -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4a7b5a0e snd_hdac_stream_assign -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4bbfc171 snd_hdac_regmap_update_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3c5c4eb0 snd_hdac_bus_get_response +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3e5a5d46 snd_hdac_device_register +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x454c0526 snd_hdac_device_set_chip_name +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x45d74439 snd_hdac_stream_set_params +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x498412c1 snd_hdac_stream_start +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4c56e079 snd_hdac_add_chmap_ctls EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4c7ec4b6 snd_hdac_get_ch_alloc_from_ca -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4c9f16b1 snd_hdac_channel_allocation -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x501382b6 snd_hdac_regmap_write_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5076c63a snd_hdac_power_down -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x546754ec snd_hda_bus_type -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x586cb031 snd_hdac_bus_exit_link_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5b832ae6 snd_hdac_bus_exec_verb_unlocked +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4eede641 snd_hdac_bus_reset_link +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x52b6a911 snd_hdac_sync_power_state EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5c07cb49 snd_hdac_calc_stream_format -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x604d6eba snd_hdac_bus_reset_link -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x61dc8359 snd_hdac_regmap_update_raw_once -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x62085392 snd_hdac_bus_stop_cmd_io -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x62e29648 snd_hdac_stream_setup_periods +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5cd0478a _snd_hdac_read_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x65fdf095 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 0x683139b3 snd_hdac_stream_sync_trigger -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6cf34bf5 snd_hdac_codec_write -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6e15f4dc snd_hdac_bus_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6f6f0d36 snd_hdac_set_codec_wakeup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x71c5147d snd_hdac_bus_enter_link_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x720e4c27 snd_hdac_bus_update_rirb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x73021b77 snd_hdac_add_chmap_ctls -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7449afed snd_hdac_check_power_state +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x75b436b6 snd_hdac_bus_exec_verb_unlocked +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x76e407cb snd_hdac_dsp_prepare EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x77c754a8 snd_hdac_chmap_to_spk_mask -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x780df487 snd_hdac_stream_setup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7af1cd6d snd_hdac_codec_read -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7c043b2e snd_hdac_dsp_prepare -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7fd0a41e snd_hdac_is_supported_format -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x86fdd1f5 snd_hdac_regmap_read_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x881f586c snd_hdac_get_stream -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x88be0b23 snd_hdac_regmap_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8f521dd5 snd_hdac_get_connections -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9268a488 snd_hdac_codec_link_down -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x974f9456 snd_hdac_device_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x99afb324 snd_hdac_regmap_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7a2ba419 snd_hdac_device_unregister +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7c4cf41f snd_hdac_stream_clear +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7d8b638b snd_hdac_stream_setup_periods +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7fef98a3 snd_hdac_acomp_register_notifier +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x81af4c39 hdac_get_device_id +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x81eb6325 snd_hdac_bus_parse_capabilities +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x84291614 snd_hdac_bus_exit_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x888986ba snd_hdac_override_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x89d6e9f7 snd_hdac_regmap_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8aeb5cf0 snd_hdac_setup_channel_mapping +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8ccb421e snd_hdac_power_up_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x919e7f83 snd_hdac_bus_stop_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x98d690b8 snd_hdac_bus_init_chip EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9a8e1877 snd_array_free -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9cfc062c snd_hdac_dsp_trigger -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa1896b32 snd_hdac_bus_get_response -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa907acc9 snd_hdac_stream_clear -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa9251c93 snd_hdac_stream_sync -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb24f9534 snd_hdac_stream_set_params -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb5c4cb40 snd_hdac_sync_audio_rate -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb82c32e4 hdac_get_device_id -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb99568ae snd_hdac_bus_handle_stream_irq -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbb0157ca snd_hdac_acomp_get_eld -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbb2c8767 snd_hdac_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9ab6361d snd_hdac_stream_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9bfba4da snd_hdac_codec_link_up +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9f130e97 snd_hdac_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa4097437 snd_hdac_bus_send_cmd +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa5e33cdd snd_hdac_stream_sync_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa8e90c0c snd_hdac_codec_write +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xaa44a24c snd_hdac_device_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xaa887dcd snd_hdac_regmap_sync +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xad391d23 snd_hdac_stream_sync +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb39598b1 snd_hdac_codec_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb702db8c snd_hdac_channel_allocation +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb803fbe6 snd_hdac_stream_timecounter_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbc5b77e1 snd_hdac_regmap_update_raw_once EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe7dd7dc snd_array_new -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc3c66719 snd_hdac_stream_start -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcaf090a9 snd_hdac_stream_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcd187bb8 snd_hdac_stream_cleanup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd021ca05 snd_hdac_acomp_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd0f9138d snd_hdac_stream_release -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd39e1895 snd_hdac_get_stream_stripe_ctl -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdb017438 snd_hdac_acomp_register_notifier -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xddce4aca snd_hdac_display_power +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe9d6c34 snd_hdac_bus_init_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbf820bf1 snd_hdac_bus_free_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc1bd07dd snd_hdac_stream_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc7b9071a snd_hdac_dsp_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc7d5708b snd_hdac_stream_release +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc8701276 snd_hdac_stream_stop +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc895ef5a snd_hdac_stream_setup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc9575013 snd_hdac_acomp_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xce0a0df5 snd_hdac_bus_update_rirb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd14c6928 snd_hdac_stream_assign +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd8df8f1c snd_hdac_regmap_write_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdb5751e0 snd_hdac_stream_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdde289e1 snd_hdac_bus_handle_stream_irq +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xde261461 snd_hdac_sync_audio_rate +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe07dbcc4 snd_hdac_bus_stop_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe0bf2169 snd_hdac_power_down +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe0feb423 snd_hdac_acomp_init EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe4e07754 snd_hdac_print_channel_allocation -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe6434b14 snd_hdac_power_up_pm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe6a8b34d snd_hdac_stream_timecounter_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe94c3f18 snd_hdac_device_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe9896c31 snd_hdac_refresh_widgets -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xea6a93f3 snd_hdac_stream_stop -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xea81f623 snd_hdac_stream_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xedadaa12 snd_hdac_regmap_add_vendor_verb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xefdc7798 snd_hdac_device_set_chip_name -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf11113b0 snd_hdac_get_sub_nodes -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf2a7c99d snd_hdac_bus_send_cmd -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf800186a snd_hdac_power_up -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfb08224c snd_hdac_device_register -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfbe7c913 snd_hdac_query_supported_pcm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfc5b7ca5 snd_hdac_acomp_exit -EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x13fd2b18 intel_nhlt_get_dmic_geo -EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x349cf15c snd_intel_dsp_driver_probe +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xec507ba3 snd_hdac_bus_alloc_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf0218187 snd_hdac_refresh_widgets +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf7615be3 snd_hdac_power_down_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfa93a18b snd_hdac_get_stream +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfca012ae snd_hdac_get_connections +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfda4237d snd_hdac_query_supported_pcm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xffcb503a snd_hdac_regmap_add_vendor_verb +EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x1912c9f8 intel_nhlt_init +EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x1a6c66e5 snd_intel_dsp_driver_probe EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x4e859456 intel_nhlt_free -EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x71a08978 intel_nhlt_init -EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x8f68e29e snd_intel_acpi_dsp_driver_probe -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x255f3873 snd_ak4113_build -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x520cae47 snd_ak4113_create -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x7d535416 snd_ak4113_reg_write -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x8968f844 snd_ak4113_reinit -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x8ee77174 snd_ak4113_external_rate -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xa1c4f32c snd_ak4113_check_rate_and_errors -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0581affb snd_hda_spdif_out_of_nid -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0605d3c7 snd_hda_add_verbs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0660a5c7 snd_hda_jack_detect_state_mst +EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x791c4987 intel_nhlt_get_dmic_geo +EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x7c21d6c0 snd_intel_acpi_dsp_driver_probe +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x4030b757 snd_ak4113_reg_write +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x53da7944 snd_ak4113_check_rate_and_errors +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x5dbd6188 snd_ak4113_create +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x62ae17c5 snd_ak4113_build +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x799919bd snd_ak4113_reinit +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xd21569b3 snd_ak4113_external_rate +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x00108081 snd_hda_get_pin_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x02f07a0c snd_hda_mixer_amp_volume_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0436490f snd_hda_add_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x04775718 snd_hda_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x049c755d snd_hda_codec_new EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0676f5ac snd_hda_get_input_pin_attr -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x07a9d329 snd_hda_load_patch -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x08a83a15 snd_hda_codec_setup_stream -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0c08dacf snd_hda_create_dig_out_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0c516a70 snd_hda_jack_add_kctl_mst -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1201e639 snd_hda_mixer_amp_switch_put_beep -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x13ce0ea7 snd_hda_unlock_devices -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x140619dc snd_hda_codec_amp_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x17ff6d67 snd_hda_override_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x19dd1196 snd_hda_jack_set_gating_jack -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1a513a53 azx_stop_chip -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1a7c8870 _snd_hda_set_pin_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1c14db45 snd_hda_mixer_amp_switch_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1f2a85c2 snd_hda_set_dev_select -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x212cf942 snd_hda_apply_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x22496a7c snd_hda_enum_helper_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x28ba91cb snd_hda_codec_set_pin_target -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2e2a3afa azx_bus_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2fd82c2f snd_hda_jack_report_sync -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2ff16ee9 azx_init_chip -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x31e58a07 snd_hda_override_conn_list -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x320a4d5b snd_hda_codec_eapd_power_filter -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x33bd9ce3 snd_hda_codec_amp_init_stereo -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x33f2159a snd_hda_shutup_pins -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3435e514 snd_hda_detach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x06ab65d4 snd_hda_codec_set_power_to_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x07da9158 snd_hda_ctl_add +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x083e68e6 snd_hda_set_vmaster_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x091a47ca snd_hda_jack_detect_enable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0948cb96 hda_codec_driver_unregister +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0e1d55ac snd_hda_create_dig_out_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x12689da7 snd_hda_multi_out_analog_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x13830268 snd_hda_check_amp_list_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1567ce13 snd_hda_enable_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x165fbb32 snd_hda_override_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x175003a6 __hda_codec_driver_register +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x18898268 snd_hda_sync_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1a4fd423 snd_hda_jack_set_dirty_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1b344dea snd_hda_find_mixer_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1ffc2be2 snd_hda_jack_set_button_state +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x21ebf49c snd_hda_codec_amp_init_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x22201c85 azx_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2a3681e8 snd_hda_detach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2b6da9e2 snd_hda_set_dev_select +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2b9812ad snd_hda_check_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2db6839d snd_hda_jack_pin_sense +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2fa8d947 snd_hda_attach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x341f8c0b snd_hda_codec_load_dsp_cleanup EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x38ce402b azx_interrupt -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x39a6c40b azx_get_pos_lpib -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3e042419 snd_hda_jack_set_dirty_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3ecbd5e0 snd_hda_codec_pcm_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3fb78a84 snd_hda_add_imux_item -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4039581e snd_hda_multi_out_analog_open -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x41055b41 snd_hda_apply_verbs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4176b363 snd_hda_enable_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4583da80 snd_hda_check_amp_list_power -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x47874e39 snd_hda_pick_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x47f93662 snd_hda_get_connections -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x49dc50b6 snd_hda_codec_build_controls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4d1bac30 azx_codec_configure -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x532b8ad6 snd_hda_codec_set_power_to_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x562feaac snd_hda_jack_set_button_state -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5747e009 snd_hda_jack_unsol_event -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x58ddd516 snd_hda_codec_device_new -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5be45cf2 snd_hda_attach_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x63c9b278 snd_hda_mixer_amp_volume_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6436fb54 snd_hda_add_vmaster_hook -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x678c118f snd_hda_create_spdif_share_sw -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6890dd5c snd_hda_codec_pcm_new -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6a408438 snd_hda_mixer_amp_switch_get_beep -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6bd42a74 snd_hda_codec_amp_update -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6dfbac49 snd_hda_get_pin_label -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x72845aae snd_hda_create_spdif_in_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x74bc51ca snd_hda_add_new_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x77710dfc snd_hda_set_power_save -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7b0ac38f snd_hda_sync_vmaster_hook -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7bc8ec8e snd_hda_apply_pincfgs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7c75400b snd_hda_codec_new -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7cd36061 snd_hda_pick_pin_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7da5838c snd_hda_codec_configure -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7e0a0914 snd_hda_jack_add_kctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x82ef8761 snd_hda_mixer_amp_switch_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x832c4e87 snd_hda_codec_update_widgets -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x84c74ccc snd_hda_codec_set_name -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x87af0c95 snd_hda_spdif_ctls_assign -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x89a789e3 hda_codec_driver_unregister -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8cfa58f9 snd_hda_lock_devices -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8f436153 snd_hda_multi_out_analog_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x905d70fe azx_get_pos_posbuf -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x93db3927 snd_hda_jack_poll_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x94d92eb5 snd_hda_jack_tbl_get_from_tag -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x964196fe snd_hda_get_default_vref -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x970ae1d1 snd_hda_mixer_amp_switch_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9a35a4ae __snd_hda_add_vmaster -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9a43056a snd_hda_get_conn_list -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9b1e912a snd_hda_get_num_devices -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9bcb9b1d snd_hda_codec_cleanup_for_unbind -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9dd54ef0 snd_hda_set_vmaster_tlv -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9e534b5a snd_hda_check_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9e74086f snd_hda_get_int_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9e8a67b7 snd_hda_jack_detect_enable_callback_mst -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9f907790 __snd_hda_codec_cleanup_stream -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa35924b4 query_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa4791ccb snd_hda_jack_detect_enable -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa5fa99ab snd_hda_parse_pin_defcfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xac9d5fa0 snd_hda_codec_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb1ff7c20 azx_probe_codecs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb314ebe0 snd_hda_add_nid -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb4916e50 snd_hda_codec_set_pincfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbc7bf6ca snd_hda_get_conn_index -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbf157a87 snd_hda_multi_out_analog_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc0a06432 snd_hda_codec_load_dsp_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc153c72d snd_hda_get_bool_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc981779c azx_get_position -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcf6ddbe2 azx_free_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd069cd74 snd_hda_multi_out_dig_open -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd4f9f680 snd_hda_multi_out_dig_close -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd57b19c4 snd_hda_input_mux_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd67f13f3 snd_hda_jack_pin_sense -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xda9a2dd6 snd_hda_multi_out_dig_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdce8c503 snd_hda_codec_get_pin_target -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xde3e3d14 hda_get_autocfg_input_label -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdfaa50f8 snd_hda_ctl_add +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x39eb43bf snd_hda_codec_set_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3becf6cc snd_hda_multi_out_dig_close +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3d5dbc03 snd_hda_multi_out_dig_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3dcb64a9 snd_hda_get_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4080a27f azx_stop_all_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x41e6f7bb snd_hda_spdif_ctls_assign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x42ab9c9f azx_init_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4597976c snd_hda_unlock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x47dddb30 snd_hda_mixer_amp_volume_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4aafbda4 snd_hda_input_mux_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4ca3ad42 snd_hda_add_new_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4de54028 snd_hda_get_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4fa67f3e __snd_hda_add_vmaster +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5080a106 snd_hda_apply_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5142a329 snd_hda_add_imux_item +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x52d18418 snd_hda_sequence_write +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x55880256 snd_hda_jack_bind_keymap +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x580b8d84 snd_hda_spdif_out_of_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5832bd85 snd_hda_get_int_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x58efd5d8 snd_hda_codec_load_dsp_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x59c72d13 azx_probe_codecs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5a91c2bd snd_hda_override_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5d2801d8 snd_hda_lock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x648da8e8 snd_hda_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x64f1d0ee azx_get_position +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x65d57a82 azx_get_pos_posbuf +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6abb79ea snd_hda_multi_out_dig_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6e4ed089 snd_hda_codec_load_dsp_trigger +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6e981d53 snd_hda_get_bool_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x70534fe0 __snd_hda_codec_cleanup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x707a0b50 snd_hda_codec_setup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x71678abc snd_hda_codec_set_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x716ae0ea azx_init_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x79ed4b7e snd_hda_jack_detect_state_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7bdb36e9 snd_hda_mixer_amp_volume_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x80e737c5 snd_hda_codec_build_controls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x831cea4a _snd_hda_set_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x84329976 snd_hda_codec_parse_pcms +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x86a09bdb azx_free_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8a44d964 snd_hda_parse_pin_defcfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8c4bf24d snd_hda_jack_unsol_event +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8cf1b7d5 snd_hda_get_dev_select +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8edc02f4 snd_hda_enum_helper_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8f4b6bc3 snd_hda_get_conn_index +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8ff02c8e snd_hda_mixer_amp_switch_put_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x90d72d87 snd_hda_codec_get_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x913d9730 snd_hda_codec_pcm_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x920ca406 azx_stop_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9456c814 snd_hda_codec_device_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x96fa4979 snd_hda_get_default_vref +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x990f6484 snd_hda_jack_report_sync +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9a7a5ec3 snd_hda_jack_tbl_get_from_tag +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9b04af2f snd_hda_multi_out_dig_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9c5ade50 snd_hda_get_num_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9cbc5638 snd_hda_codec_eapd_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9f43e585 query_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa3f2555c snd_hda_jack_detect_enable_callback_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa686eb2e snd_hda_mixer_amp_switch_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa6ffd98a snd_hda_codec_pcm_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa7a370e1 snd_hda_mixer_amp_switch_get_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xabedcfc5 snd_hda_create_spdif_in_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xac12242d snd_hda_load_patch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xad1c2e6f snd_hda_shutup_pins +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb2ea313e snd_hda_multi_out_analog_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb327fcae snd_hda_set_power_save +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb7a33746 snd_hda_codec_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc0052db4 snd_hda_codec_amp_update +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc00aa61b snd_hda_codec_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc2a53088 snd_hda_spdif_ctls_unassign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc37ea66b snd_hda_codec_set_name +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc3835aec azx_get_pos_lpib +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xca95921e is_jack_detectable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcb6d53e1 snd_hda_codec_amp_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xceec81f5 snd_hda_add_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcf099a9f azx_bus_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd17274d3 snd_hda_mixer_amp_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd36fe58b snd_hda_jack_add_kctl_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd921eb6b snd_hda_jack_add_kctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdb8444c2 snd_hda_correct_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdbcd7a8b hda_get_autocfg_input_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdce718e7 snd_hda_pick_pin_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdd81072c snd_hda_codec_get_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdfada7cb snd_hda_mixer_amp_switch_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe0f964a6 snd_hda_codec_cleanup_for_unbind EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe118de5d snd_pcm_2_1_chmaps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe535cda5 snd_hda_get_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe6b5d87f azx_stop_all_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe87c5f38 snd_hda_codec_get_pincfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe8d788ec snd_hda_mixer_amp_volume_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe966add4 snd_hda_codec_load_dsp_trigger -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe9c9fec1 snd_hda_spdif_ctls_unassign -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xec006647 __hda_codec_driver_register -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xec9b7eb8 snd_hda_get_dev_select +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe3ab4a12 snd_hda_mixer_amp_switch_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe6e2dbba snd_hda_get_connections +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe6eba4f7 snd_hda_codec_update_widgets +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe7df51f9 snd_hda_multi_out_analog_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe9ff3239 snd_hda_jack_poll_all EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeda3a721 snd_print_pcm_bits -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xef7c67b8 snd_hda_sequence_write -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf0829b6b azx_init_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf1fecaa2 snd_hda_mixer_amp_tlv -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf2ab9a6a snd_hda_codec_amp_stereo -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf4dc3268 snd_hda_multi_out_dig_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf4e43d4c snd_hda_codec_load_dsp_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf5592768 snd_hda_codec_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf606e815 snd_hda_jack_tbl_get_mst -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf6188473 is_jack_detectable -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf6f014e6 snd_hda_find_mixer_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xef48adca snd_hda_apply_pincfgs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf4f8be87 snd_hda_jack_tbl_get_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf6c6594d snd_hda_codec_amp_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf76dbaf0 snd_hda_jack_set_gating_jack +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf81023d4 snd_hda_create_spdif_share_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf8322cc1 snd_hda_pick_fixup EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf8dc35ac snd_hda_input_mux_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf8fc0449 snd_hda_jack_bind_keymap -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf953c319 snd_hda_codec_parse_pcms -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfd028e90 snd_hda_correct_pin_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfd32ee5c snd_hda_mixer_amp_volume_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x04636027 snd_hda_gen_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x0994a581 snd_hda_gen_check_power_status -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x1d05cbc6 snd_hda_gen_free -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x2078e3cc snd_hda_get_path_idx -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x2afbd454 snd_hda_gen_mic_autoswitch -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x385b5802 snd_hda_gen_line_automute -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x38fa4275 snd_hda_gen_parse_auto_config -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x464d9cf3 snd_hda_gen_add_mute_led_cdev -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x4f7919c0 snd_hda_gen_add_kctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x5a472915 snd_hda_gen_update_outputs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfe3d559d snd_hda_apply_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x05058af4 snd_hda_gen_parse_auto_config +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x16fca209 snd_hda_gen_build_controls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x36cb52c5 snd_hda_gen_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x3ef34c4f snd_hda_gen_update_outputs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x42cfb8f1 snd_hda_get_path_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x46f5964a snd_hda_gen_stream_pm +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x5e470bb1 snd_hda_gen_add_mute_led_cdev +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x67c46edf snd_hda_gen_mic_autoswitch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x6ed97e37 snd_hda_gen_path_power_filter EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x76dc6871 hda_main_out_badness +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x7d2a2a0c snd_hda_activate_path EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x871a6e44 hda_extra_out_badness -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x87b1b777 snd_hda_gen_build_controls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xaf958713 snd_hda_gen_spec_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xaface260 snd_hda_gen_fix_pin_power -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xb4c902f6 snd_hda_gen_hp_automute -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xb90d5552 snd_hda_gen_path_power_filter -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xc9ac71af snd_hda_gen_add_micmute_led_cdev -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xdead6a92 snd_hda_get_path_from_idx -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xeed130d7 snd_hda_gen_build_pcms -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xf1d93a71 snd_hda_add_new_path -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xf8def65d snd_hda_gen_stream_pm -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xfe02becd snd_hda_activate_path -EXPORT_SYMBOL_GPL sound/soc/codecs/mt6359-accdet 0xce265c64 mt6359_accdet_enable_jack_detect +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x8dfe9ac3 snd_hda_gen_build_pcms +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xaa029d63 snd_hda_gen_check_power_status +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xb066c82c snd_hda_gen_add_micmute_led_cdev +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xb18305cb snd_hda_add_new_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xc447dd0b snd_hda_gen_spec_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xc4846673 snd_hda_gen_line_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xc6c8aff1 snd_hda_gen_add_kctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xd8832b1e snd_hda_get_path_from_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xdba484b3 snd_hda_gen_free +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xe4d9bf8a snd_hda_gen_fix_pin_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xf5e92edb snd_hda_gen_hp_automute +EXPORT_SYMBOL_GPL sound/soc/codecs/mt6359-accdet 0x68d2d00c 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 0xb0ee142d adau1372_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0x0253b51a adau1761_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0xc7d1ce37 adau1761_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x05a71cc8 adau17x1_dai_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x47d7d1ad adau17x1_add_routes -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x576d71e0 adau17x1_add_widgets -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x5b236e07 adau17x1_set_micbias_voltage -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x807fda93 adau17x1_precious_register -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xa1ec37db adau17x1_resume -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xa81f5efd adau17x1_volatile_register -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xb3083afe adau17x1_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xcadf01b0 adau17x1_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xf26f2908 adau17x1_readable_register -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau7118 0xaa8c7e18 adau7118_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x0c92a40c cs4271_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1372 0x44432e82 adau1372_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0xcab14ad1 adau1761_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0xfd595083 adau1761_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x2e3c3332 adau17x1_volatile_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x318c0b15 adau17x1_readable_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x31b71d35 adau17x1_set_micbias_voltage +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x3ba86560 adau17x1_add_routes +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x8452c5a1 adau17x1_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xabb9cebf adau17x1_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xbfd6d3ba adau17x1_precious_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xc71e52da adau17x1_resume +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xcde382bb adau17x1_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xff04e889 adau17x1_add_widgets +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau7118 0x154dd6c3 adau7118_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0x082e8af3 cs35l41_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0x3276baad cs35l41_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0xb25c892f cs35l41_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x03cb4046 cs35l41_otp_unpack +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x072d105a cs35l41_regmap_spi +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x1158d72e cs35l41_set_channels +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x118ec459 cs35l41_boost_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x26f18ae1 cs35l41_test_key_lock +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x838c8c45 cs35l41_register_errata_patch +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xb1781685 cs35l41_regmap_i2c +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xd0b8583a cs35l41_test_key_unlock EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x7d05786f cs4271_dt_ids -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0xbb5e7aa6 cs4271_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x8b3dd19a cs4271_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0xe9a691f2 cs4271_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x0100a022 cs42l51_remove EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x375ad98c cs42l51_of_match -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x7663cc55 cs42l51_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xac6383f0 cs42l51_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xc2145acf cs42l51_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xe05fbfd9 cs42l51_suspend -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xfd42bbf9 cs42l51_resume +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x4161d1b7 cs42l51_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x6878dcd1 cs42l51_resume +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x7996fe8f cs42l51_suspend +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xe7f4bce1 cs42l51_probe EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x0245c4f2 cs42xx8_of_match -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x76ce54d1 cs42xx8_probe EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x7cac7292 cs42888_data +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xb1076215 cs42xx8_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xc9b96766 cs42xx8_regmap_config EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xcd3794c9 cs42448_data -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xdceb1477 cs42xx8_pm -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xf5f25265 cs42xx8_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0x4dbc2f9f da7219_aad_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0x83ec128b da7219_aad_jack_det -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0xdb48103d da7219_aad_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0xe9a7684a da7219_aad_exit -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x326cff61 es8328_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0xf1319b7c es8328_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98090 0xe6b2b922 max98090_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x0c737407 max98373_slot_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x1a3c1e71 soc_codec_dev_max98373_sdw -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x55fac882 soc_codec_dev_max98373 -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0xab850360 max98373_reset -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0x9358afc1 mt6359_set_mtkaif_protocol -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0xe7b643a4 mt6359_mtkaif_calibration_disable -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0xefb39e7b mt6359_mtkaif_calibration_enable -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0xfc1654b3 mt6359_set_mtkaif_calibration_phase -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8824 0x614409a4 nau8824_enable_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x15d17a81 pcm1789_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x1f086a91 pcm1789_common_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0xc921aa97 pcm1789_common_exit -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0x1261d6a9 pcm179x_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0x1fe26b30 pcm179x_common_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0xb7826442 pcm186x_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0xed2e4a9f pcm186x_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x1944e318 pcm3168a_pm_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x3082775a pcm3168a_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x51608c61 pcm3168a_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x8cf4dcfd pcm3168a_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x0ee7b4ab pcm512x_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x9c8eef1f pcm512x_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xbe03a4e3 pcm512x_pm_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xf582bc88 pcm512x_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xfcbf55a5 cs42xx8_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0x175f3863 da7219_aad_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0x1f3a8e2e da7219_aad_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0x7c186ec1 da7219_aad_exit +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0xe8851be6 da7219_aad_jack_det +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x7abd2d45 es8328_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0xc099b719 es8328_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98090 0x4bd3f589 max98090_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x0730c333 max98373_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x14177e1a max98373_slot_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x6f647a65 soc_codec_dev_max98373_sdw +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x99cfc065 soc_codec_dev_max98373 +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x04f835e2 mt6358_set_mtkaif_calibration_phase +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x0f783a63 mt6358_mtkaif_calibration_disable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x108bd60f mt6358_set_mtkaif_protocol +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0xf08dc1fc mt6358_mtkaif_calibration_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0x029e691b mt6359_mtkaif_calibration_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0x231dfc34 mt6359_set_mtkaif_calibration_phase +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0x31e45e10 mt6359_mtkaif_calibration_disable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0xe2987ee8 mt6359_set_mtkaif_protocol +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8824 0xc7191687 nau8824_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x14b6bbb6 pcm1789_common_exit +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x67fe3bba pcm1789_common_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x6c5e8497 pcm1789_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0x2f1aefbb pcm179x_common_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0x6bee28bf pcm179x_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0x1a9a489e pcm186x_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0xda2c577d pcm186x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x07ddbd1b pcm3168a_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x1e870ab4 pcm3168a_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x3ca497cf pcm3168a_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x54b2212e pcm3168a_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x15f05221 pcm512x_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xab8cf2fd pcm512x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xbe982e8c pcm512x_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xfbfa948f pcm512x_probe EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x5dc92cdf rl6231_pll_calc EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x70617a04 rl6231_get_clk_info EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x8d7fa148 rl6231_get_pre_div EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0xdba4502f rl6231_calc_dmic_clk EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5514-spi 0x61ff58e3 rt5514_spi_burst_read EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5514-spi 0xff87892f rt5514_spi_burst_write -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x0c1e7e6a rt5640_detect_headset -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x64ce2d9a rt5640_set_ovcd_params -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x664c91a0 rt5640_dmic_enable -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x6cbef527 rt5640_enable_micbias1_for_ovcd -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xa10f6d5e rt5640_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xadcf8b31 rt5640_disable_micbias1_for_ovcd -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0x489ad149 rt5645_set_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0x8d5bd0d0 rt5645_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5659 0xe3d9b68e rt5659_set_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5663 0xf30cb54c rt5663_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677 0x49a3266c rt5677_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x2b46956e rt5640_set_ovcd_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x2d674890 rt5640_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x411d982b rt5640_detect_headset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x7cbe080b rt5640_disable_micbias1_for_ovcd +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x87344195 rt5640_enable_micbias1_for_ovcd +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xf2b7affb rt5640_dmic_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0x127db6b9 rt5645_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0xbd28699b rt5645_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5659 0x661975ee rt5659_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5663 0xe3f1d7ed rt5663_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677 0x2e3fa7cb 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 0x0e152972 rt5682_apply_patch_list -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x1d397b15 rt5682_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x1e1c11c4 rt5682_parse_dt +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x067f837c rt5682_headset_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x12845d3e rt5682_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x1d3fd6ab rt5682_soc_component_dev EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x28730696 rt5682_supply_names +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x41271d53 rt5682_calibrate EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x59d3d967 rt5682_jack_detect_handler -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x67a92597 rt5682_aif2_dai_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x85835e33 rt5682_headset_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x8c9e9e94 rt5682_aif1_dai_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x8d6d7f19 rt5682_reset -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x91273914 rt5682_calibrate +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x6c48e88b rt5682_aif1_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x7faf82dd rt5682_parse_dt +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x877f5388 rt5682_aif2_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xa0cbd607 rt5682_sel_asrc_clk_src EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xb897de56 rt5682_reg -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xef480008 rt5682_volatile_register -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xf1f90da0 rt5682_readable_register -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xf22206e2 rt5682_soc_component_dev -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x07d4fc2d sigmadsp_restrict_params -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x0da6f55e sigmadsp_attach -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x1c877492 sigmadsp_setup -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x63e7137c devm_sigmadsp_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xc7f9246e sigmadsp_reset -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-i2c 0x7f0dfd31 devm_sigmadsp_init_i2c -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-regmap 0x385099cf devm_sigmadsp_init_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x74bb9482 ssm2602_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x97829146 ssm2602_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic32x4 0x381b19ea aic32x4_register_clocks -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic3x 0x432a8b5c aic3x_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0x223592d4 ts3a227e_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xc692ff82 rt5682_readable_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xd107067b rt5682_volatile_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xd4ed40ed rt5682_apply_patch_list +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x4c0ee0c3 sigmadsp_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x4e93e78c sigmadsp_setup +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x9625a729 sigmadsp_restrict_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xd1369c1d sigmadsp_attach +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xff3f592d devm_sigmadsp_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-i2c 0xa1e33159 devm_sigmadsp_init_i2c +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-regmap 0x39b01c55 devm_sigmadsp_init_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0xd236e455 ssm2602_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0xee0d6f50 ssm2602_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic32x4 0x6c1d6609 aic32x4_register_clocks +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic3x 0x1498b2e3 aic3x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0x8837b9c5 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 0x4f8532ff wcd938x_sdw_free -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x72a87420 wcd938x_swr_get_current_bank -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0xc5462bf9 wcd938x_sdw_device_get -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0xf018ff7f wcd938x_sdw_hw_params -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0xf6fa6249 wcd938x_sdw_set_sdw_stream -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x33f53029 wm_hubs_update_class_w +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x306dc0d4 wcd938x_sdw_set_sdw_stream +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x5c93b956 wcd938x_sdw_free +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x6ef8ad58 wcd938x_sdw_hw_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0xadc389d5 wcd938x_sdw_device_get +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0xb163729b wcd938x_swr_get_current_bank +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x0c385733 wm_adsp2_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x11bf269c wm_adsp_write_ctl +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x216336a4 wm_adsp_fw_enum +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x346e100a wm_adsp2_set_dspclk +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x3c7170b9 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 0x5a07e12e wm_adsp_compr_free +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x5e132018 wm_adsp_compr_open +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x622e9c0e wm_adsp2_component_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x8afc5e4e wm_adsp_event +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x8dd32ef6 wm_adsp_compr_trigger +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x9532bffc wm_adsp1_event +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x992c0c83 wm_adsp_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x9d5ce465 wm_adsp_early_event +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x9ffad113 wm_adsp_read_ctl +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xa3b2ac27 wm_adsp2_preloader_get +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xabda2cfb wm_halo_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xaf498419 wm_adsp2_preloader_put +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xb25118e0 wm_adsp_fw_put +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xb85be518 wm_adsp1_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xbeaa30de wm_adsp_fw_get +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xc0dd6274 wm_adsp_compr_get_caps +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xdd3c79ef wm_adsp2_bus_error +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xe2b969e5 wm_adsp2_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xea38ee07 wm_halo_bus_error +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xeab43680 wm_adsp_compr_copy +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xfc4e1ed4 wm_adsp2_component_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xfefa7bd4 wm_adsp_compr_handle_irq +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x14416033 wm_hubs_vmid_ena +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x2981ff17 wm_hubs_add_analogue_routes EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x5cd7eb9b wm_hubs_dcs_done -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x5e7e74e3 wm_hubs_hpl_mux -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x63dac907 wm_hubs_vmid_ena -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x66cead06 wm_hubs_handle_analogue_pdata -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x67a21708 wm_hubs_hpr_mux +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x61020c86 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 0xad4dea5b wm_hubs_add_analogue_routes -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xc0db7609 wm_hubs_set_bias_level -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xe6bfbe74 wm_hubs_add_analogue_controls -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x8c39817d wm8804_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x97029847 wm8804_pm -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xeabb3cd3 wm8804_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xfd0f482b wm8804_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0xb0eadd3c wm8903_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0xe37fab49 wm8962_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8994 0x167d8c1d wm8994_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8994 0x66441c56 wm8958_mic_detect -EXPORT_SYMBOL_GPL sound/soc/fsl/imx-pcm-dma 0x5ad8dbe9 imx_pcm_dma_init -EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0x79455207 fsl_asrc_component +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x90411d7a wm_hubs_hpl_mux +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xa99d7e91 wm_hubs_hpr_mux +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xabab575d wm_hubs_handle_analogue_pdata +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xc8d77ba5 wm_hubs_set_bias_level +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xf9355174 wm_hubs_add_analogue_controls +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x0c674c15 wm8804_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xa26aeef7 wm8804_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xa6901152 wm8804_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xe876e62f wm8804_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0x707d6944 wm8903_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0x8c09ae89 wm8962_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8994 0x17e10807 wm8994_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8994 0x63fb7447 wm8958_mic_detect +EXPORT_SYMBOL_GPL sound/soc/fsl/imx-pcm-dma 0x7bc81a33 imx_pcm_dma_init +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0xc9a9f823 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 0x76199db7 audio_graph_parse_of -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x0c10f634 asoc_simple_set_dailink_name -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x306abe41 asoc_simple_parse_routing -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x4094f223 asoc_simple_parse_daifmt -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x4566e5aa asoc_simple_parse_widgets -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x47af510e asoc_simple_parse_convert -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x53290421 asoc_simple_canonicalize_platform -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x546b346e asoc_simple_startup -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x597cec15 asoc_simple_remove -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x6523995d asoc_simple_canonicalize_cpu -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x72bc29a8 asoc_simple_parse_card_name -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x91170936 asoc_simple_parse_clk -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x9b5b6ce0 asoc_graph_card_probe -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xa541148a asoc_simple_clean_reference -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xc2068488 asoc_simple_hw_params -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xc48ed6e4 asoc_simple_shutdown -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xd017f718 asoc_simple_init_jack -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xe7158da9 asoc_simple_init_priv -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xed0120b9 asoc_simple_dai_init -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xedbe9ebb asoc_simple_parse_pin_switches +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-audio-graph-card 0x53512b5e audio_graph_parse_of +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x0551c130 asoc_simple_dai_init +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x06b9756e asoc_simple_canonicalize_platform +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x0abb169e asoc_graph_card_probe +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x1af845e3 asoc_simple_startup +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x3488bf1a asoc_simple_parse_daifmt +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x348dbcaa asoc_simple_canonicalize_cpu +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x4cc2ddc2 asoc_simple_shutdown +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x55e8f4de asoc_simple_clean_reference +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x66e3817a asoc_simple_set_dailink_name +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x67bebc6f asoc_simple_parse_widgets +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x83004541 asoc_simple_hw_params +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x932bc574 asoc_simple_parse_card_name +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x95801bfb asoc_simple_remove +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xa8c4eb2a asoc_simple_init_jack +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xa99350ee asoc_simple_be_hw_params_fixup +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xb340ff28 asoc_simple_init_priv +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xdb9522a4 asoc_simple_parse_pin_switches +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xe88f8b20 asoc_simple_parse_clk EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xf3bafb75 asoc_simple_convert_fixup -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xf6ffffcd asoc_simple_be_hw_params_fixup -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x0105a136 mtk_afe_fe_startup -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x03a2ac7c mtk_memif_set_channel -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x0f50df43 mtk_afe_fe_prepare -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x1378f296 mtk_memif_set_addr -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x1efcafa4 mtk_afe_suspend -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x21038e8e mtk_afe_fe_hw_params -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x211be7e9 mtk_afe_combine_sub_dai -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x313c3450 mtk_afe_resume -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x3f94e0b6 mtk_dynamic_irq_release -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x4100b719 mtk_memif_set_format -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x412e9877 mtk_afe_fe_hw_free -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x41fc7f8d mtk_afe_fe_shutdown -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x43c85ac1 mtk_memif_set_enable -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x704d13e6 mtk_memif_set_rate -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x79434c0c mtk_afe_add_sub_dai_control -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x83bfa54c mtk_afe_fe_trigger -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x88361958 mtk_afe_pcm_platform -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x8ad74a1a mtk_memif_set_disable -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x8dcf0160 mtk_afe_pcm_new -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x95c06ac3 mtk_dynamic_irq_acquire -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x9a8d9d31 mtk_memif_set_pbuf_size -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xb2b18a2e mtk_afe_fe_ops -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xdb6fda36 mtk_memif_set_rate_substream -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xddfa54b5 mtk_afe_pcm_pointer -EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8195/snd-soc-mt8195-afe 0x40d143fe mt8195_afe_enable_clk -EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8195/snd-soc-mt8195-afe 0xd197a421 mt8195_afe_disable_clk -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x0cef7b34 g12a_fifo_pcm_hw_params -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x15f6768e axg_fifo_pcm_close -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x26d3c725 axg_fifo_pcm_open -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x75cee867 axg_fifo_pcm_pointer -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x9f3d6188 axg_fifo_pcm_hw_params -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xb69e9f87 axg_fifo_probe -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xd69c2b80 axg_fifo_pcm_trigger -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xd91a6a79 axg_fifo_pcm_hw_free -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xdd56a554 axg_fifo_pcm_new -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x1a7ac32d axg_tdm_formatter_probe -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x479bdb73 axg_tdm_formatter_event +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xf3d075f3 asoc_simple_parse_routing +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xf45b1b59 asoc_simple_parse_convert +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x03d62bb0 mtk_afe_fe_startup +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x3485a88f mtk_afe_pcm_pointer +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x38fc8bc8 mtk_memif_set_pbuf_size +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x3ec655b7 mtk_afe_fe_ops +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x46102813 mtk_afe_resume +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x4ddfeeb9 mtk_dynamic_irq_release +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x58bb213b mtk_afe_pcm_new +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x5dff9b2b mtk_afe_fe_trigger +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x6335612c mtk_afe_fe_shutdown +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x66a24529 mtk_afe_fe_hw_free +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x82a977b8 mtk_afe_suspend +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x84b289b2 mtk_memif_set_enable +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x84bba34c mtk_memif_set_addr +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x860494ed mtk_memif_set_disable +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x94ebf907 mtk_memif_set_channel +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xa310a5fb mtk_afe_fe_prepare +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xbbd62f18 mtk_memif_set_format +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xddd9dc9e mtk_afe_pcm_platform +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xe06818b3 mtk_memif_set_rate +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xeca146df mtk_dynamic_irq_acquire +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xefa3a0ab mtk_afe_add_sub_dai_control +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xf4253751 mtk_afe_combine_sub_dai +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xf5293620 mtk_afe_fe_hw_params +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xf6e42829 mtk_memif_set_rate_substream +EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8195/snd-soc-mt8195-afe 0x23fa6aea mt8195_afe_disable_clk +EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8195/snd-soc-mt8195-afe 0xe4ca964e mt8195_afe_enable_clk +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x06e708b7 g12a_fifo_pcm_hw_params +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x27bbb69c axg_fifo_pcm_hw_free +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x441e53cd axg_fifo_probe +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x4e0409d4 axg_fifo_pcm_pointer +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x832c606a axg_fifo_pcm_new +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x9c25bece axg_fifo_pcm_trigger +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xa1e0ca70 axg_fifo_pcm_hw_params +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xbf67eec2 axg_fifo_pcm_close +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xda5b20da axg_fifo_pcm_open 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 0x7526fa15 axg_tdm_formatter_probe +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x7e6f906d 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 0x09c6eada axg_tdm_set_tdm_slots -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x4f4349dd meson_card_remove -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x7547d5fe meson_card_reallocate_links -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x7c51b300 meson_card_parse_dai -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0xb2134b90 meson_card_set_be_link -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0xb3e0001c meson_card_set_fe_link -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0xbae83b68 meson_card_probe -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0xbd092995 meson_card_i2s_set_sysclk -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0xbfd612b6 meson_card_parse_daifmt -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x26ee1030 meson_codec_glue_input_dai_remove -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x5869a61c meson_codec_glue_input_hw_params -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x6e629d5c meson_codec_glue_input_set_fmt -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x6e7d1470 meson_codec_glue_input_dai_probe -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0xa155df29 meson_codec_glue_input_get_data -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0xccf88140 meson_codec_glue_output_startup -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0x0fd725c6 q6adm_open +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-interface 0xf6f81d8c axg_tdm_set_tdm_slots +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x0ba8a6f8 meson_card_set_be_link +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x13e6b05a meson_card_i2s_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x1e3302c8 meson_card_parse_dai +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x2d0be39d meson_card_reallocate_links +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x5c6d8e00 meson_card_parse_daifmt +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x7c7956ca meson_card_probe +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0xd46e7046 meson_card_set_fe_link +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0xfe91d215 meson_card_remove +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x539542b8 meson_codec_glue_input_set_fmt +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x564961f9 meson_codec_glue_input_dai_probe +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x861c161a meson_codec_glue_output_startup +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0xa0f65262 meson_codec_glue_input_get_data +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0xc39b6e92 meson_codec_glue_input_hw_params +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0xfd0360e5 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 0xce063baf q6adm_close -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0xde3e7c48 q6adm_matrix_map +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0x69fc0bbc q6adm_close +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0x6d80b661 q6adm_open +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0x9ff88d56 q6adm_matrix_map EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x07a54780 q6afe_cdc_dma_port_prepare EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x369b6eeb q6afe_port_put EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x3b16d6e7 q6afe_port_stop @@ -19160,10 +19288,10 @@ EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x5332304f q6afe_slim_port_prepare EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x7df60063 q6afe_port_set_sysclk EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0xae809786 q6afe_hdmi_port_prepare +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0xd255faed q6afe_port_get_from_id EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0xd4523c59 q6afe_i2s_port_prepare +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0xdf06505a q6afe_set_lpass_clock EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0xe45246a8 q6afe_port_start -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0xe6379129 q6afe_set_lpass_clock -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0xfae79a11 q6afe_port_get_from_id EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0xfaf22370 q6afe_tdm_port_prepare EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x13b7efd9 q6asm_cmd EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x1b6c77fc q6asm_stream_media_format_block_alac @@ -19174,7 +19302,7 @@ EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x68db31e2 q6asm_unmap_memory_regions EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x6cec4b17 q6asm_stream_remove_trailing_silence EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x856b4fdb q6asm_stream_media_format_block_wma_v10 -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x926923d4 q6asm_audio_client_alloc +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x9769bf9b 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 @@ -19192,229 +19320,229 @@ EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6dsp-common 0x17142e58 q6dsp_map_channels 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/snd-soc-lpass-cpu 0x2f57eca3 asoc_qcom_lpass_cpu_platform_shutdown -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x46380241 asoc_qcom_lpass_cpu_dai_probe -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x9f4aaaad asoc_qcom_lpass_cpu_platform_remove -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0xd31dbc8d asoc_qcom_lpass_cpu_platform_probe -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0xd98c2729 asoc_qcom_lpass_cpu_dai_ops -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0xe9f03e70 lpass_cpu_pcm_new -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-hdmi 0x0dcbd0e2 asoc_qcom_lpass_hdmi_dai_ops -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-platform 0xdd0e10c1 asoc_qcom_lpass_platform_register -EXPORT_SYMBOL_GPL sound/soc/rockchip/snd-soc-rockchip-pcm 0x0adc36b6 rockchip_pcm_platform_register -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x02ecb32d snd_soc_unregister_card -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x04ea175b snd_soc_of_get_dai_name -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x06a08fb0 snd_soc_cnew -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0712f3ff snd_soc_get_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x07784950 snd_soc_dapm_get_pin_switch -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x081c24dc snd_soc_dapm_weak_routes -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x08245c05 snd_soc_component_compr_set_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x08276987 snd_soc_daifmt_parse_format -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0b1e56d1 snd_soc_component_async_complete -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0c57be4f snd_soc_component_compr_get_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0d05b7f0 soc_ac97_ops -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0e5418d8 snd_soc_dapm_get_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0f6cf23d snd_soc_put_xr_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1020fd72 snd_soc_dpcm_fe_can_update -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x11a0e0ec snd_soc_set_ac97_ops -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x12f46b06 snd_soc_lookup_component_nolocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x16abecf1 snd_soc_info_xr_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x180d43e8 snd_soc_remove_pcm_runtime -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x190f9f5b snd_soc_info_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1e72fe14 snd_soc_suspend -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1eccdea5 snd_soc_unregister_component_by_driver -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1f699062 snd_soc_dapm_update_dai -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x219ba15b snd_soc_component_enable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x22002400 snd_soc_dai_set_pll -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x242a5bbf snd_soc_dapm_force_enable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x24ad8b2a snd_soc_dai_compr_ack +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x1b644a7c lpass_cpu_pcm_new +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x4f7caa6e asoc_qcom_lpass_cpu_dai_ops +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x8db4379b asoc_qcom_lpass_cpu_dai_probe +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0xa5513f7f asoc_qcom_lpass_cpu_platform_shutdown +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0xa96db0fa asoc_qcom_lpass_cpu_platform_remove +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0xe8ae9cbe asoc_qcom_lpass_cpu_platform_probe +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-hdmi 0xe5e5f45c asoc_qcom_lpass_hdmi_dai_ops +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-platform 0xc244c847 asoc_qcom_lpass_platform_register +EXPORT_SYMBOL_GPL sound/soc/rockchip/snd-soc-rockchip-pcm 0xb05f0df8 rockchip_pcm_platform_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0060dca9 snd_soc_info_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x00e3976d snd_soc_lookup_component_nolocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x031f8d02 snd_soc_component_compr_get_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x035139be snd_soc_dai_set_channel_map +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0371e1c1 snd_soc_component_compr_copy +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x037ac15f snd_soc_dapm_put_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x048855eb snd_soc_find_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x05ce1e3b snd_soc_set_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x073321f2 snd_soc_dapm_weak_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x08c3246a snd_soc_rtdcom_lookup +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x09a23a1b snd_soc_dapm_sync +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0c3c30ea snd_soc_dai_compr_get_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0cd1f968 snd_soc_component_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0f599704 snd_soc_dapm_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0f8565d2 snd_soc_cnew +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0fc2bbb3 snd_soc_dai_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x101da78e snd_soc_component_async_complete +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x11110407 snd_soc_put_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x11eddd28 snd_soc_dai_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x126fdabc snd_soc_component_get_pin_status +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x145bb10d snd_soc_dai_set_bclk_ratio +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x146c8986 snd_soc_dapm_ignore_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x15462bcf snd_soc_component_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x16b33de7 dapm_regulator_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1a31147a snd_soc_dapm_kcontrol_widget +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1cba10d2 snd_soc_bytes_tlv_callback +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x20150a13 snd_soc_unregister_component_by_driver +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x21e5206f snd_soc_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2310f7f4 snd_soc_bytes_info +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x23b762bb snd_soc_tplg_component_load +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x245b3f5a snd_soc_runtime_action +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x24637564 snd_soc_jack_notifier_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2495ef16 snd_soc_of_parse_audio_simple_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x24fc1683 snd_soc_suspend EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2541a979 snd_soc_calc_frame_size -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2684c56b snd_soc_unregister_dai -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x27df89bd snd_soc_component_compr_free -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x29a60d98 snd_soc_dapm_info_pin_switch -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x29b0fbe3 snd_soc_dai_digital_mute -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2afb1d2e snd_soc_find_dai_with_mutex -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2ce6abc7 snd_soc_tplg_component_remove -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2d4492e8 null_dailink_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2e231874 snd_soc_tplg_component_load -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2e97bb5d snd_soc_daifmt_parse_clock_provider_raw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2ed35068 snd_soc_get_dai_name -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2f9e2868 snd_soc_runtime_action -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x310470ae snd_soc_set_runtime_hwparams -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x319a7b6a dapm_regulator_event -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x32ed490d snd_soc_dai_compr_get_metadata -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x34e7b570 snd_soc_get_strobe -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x35034410 snd_soc_bytes_info_ext -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x363fb064 snd_soc_get_dai_id -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3656b79e snd_soc_get_pcm_runtime -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x367f53d8 snd_soc_card_add_dai_link -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x38b25b09 snd_soc_jack_add_gpios -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x39cacd25 snd_soc_bytes_get -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3c579c68 snd_soc_dapm_enable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3e0c8f02 snd_soc_component_set_sysclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3e3eb226 snd_soc_add_card_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x403eee35 snd_soc_component_set_jack -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x40f8ee52 snd_soc_get_xr_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4135894d snd_soc_of_parse_tdm_slot -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4448096c snd_soc_dai_set_bclk_ratio -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x449d4191 dapm_clock_event -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x44b2ecba snd_soc_dapm_kcontrol_widget -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x45303641 snd_soc_dapm_put_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x46554c1b snd_dmaengine_pcm_prepare_slave_config -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x480c5491 snd_soc_dapm_sync -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4876b9b8 snd_soc_dai_compr_startup -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4886ef90 snd_soc_put_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x492bb915 snd_soc_runtime_calc_hw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4a63eeed snd_soc_register_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4af17d02 snd_dmaengine_pcm_unregister -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4af354a2 snd_soc_link_compr_shutdown -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4af4503f snd_soc_tplg_widget_bind_event -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4c93d17d snd_soc_limit_volume -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4d674415 snd_soc_jack_add_gpiods -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4e160a25 devm_snd_soc_register_dai -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4e793e1f snd_soc_info_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4eccf9f1 snd_soc_dapm_put_pin_switch -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5144a3d7 devm_snd_soc_register_card -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x520c15c7 snd_soc_of_get_dai_link_codecs -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x52608556 snd_soc_dapm_force_enable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x52ef24ba snd_soc_component_compr_open -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x53b7afb9 snd_soc_component_test_bits -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x55b73738 snd_soc_component_write -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x565abf3f snd_soc_component_compr_pointer -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x566c381d snd_soc_component_read -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x59805cc1 snd_soc_resume -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x59fa7879 snd_soc_info_volsw_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5f08d791 snd_soc_dapm_init -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5fbd10dc dapm_mark_endpoints_dirty -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x62b76838 snd_soc_dai_active -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x66112540 snd_soc_dai_set_fmt -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x66a0d1c9 snd_soc_dapm_del_routes -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6927394f snd_soc_dapm_new_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x697bdb4f snd_soc_jack_report -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6afb05c1 snd_soc_component_set_pll -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6b9e31ee snd_soc_component_compr_get_codec_caps -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6cae20fd snd_soc_jack_notifier_unregister -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6d9f6c16 snd_soc_jack_add_zones -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6de71f8a devm_snd_soc_register_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6ed1d0a5 snd_soc_pm_ops -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7136fc44 snd_soc_of_put_dai_link_codecs -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x72230553 snd_soc_component_nc_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x725c7b5c snd_soc_dai_get_channel_map -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7317664e snd_dmaengine_pcm_register -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7648f27f snd_soc_dapm_disable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7776ef79 snd_soc_dai_compr_trigger -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x78153a35 snd_soc_component_compr_get_metadata -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x794dad12 devm_snd_dmaengine_pcm_register -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e1fa59c snd_soc_info_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x25cd6ca1 snd_soc_new_ac97_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2789afc1 snd_soc_add_card_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2ae89a5c snd_soc_component_compr_ack +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2b4b689a snd_soc_component_compr_get_caps +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2ca10058 snd_soc_component_disable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2cc02357 snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2e09c395 snd_soc_component_nc_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2fe13d2f snd_soc_dapm_new_control +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x31229596 snd_soc_tplg_widget_bind_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3176ce1f snd_soc_dapm_stream_stop +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x326d0b29 snd_soc_put_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x328cf87d snd_soc_dai_set_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x33489103 snd_soc_dapm_update_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3440b464 snd_soc_dai_compr_startup +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x38ab3dd9 snd_soc_dai_set_clkdiv +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x39cdf6c7 snd_soc_component_force_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3b927fb9 snd_soc_dai_compr_pointer +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3cd1ae31 snd_soc_component_write_field +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3d5d5a30 snd_soc_of_parse_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x46ad6157 snd_soc_jack_add_pins +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x46b06216 snd_soc_component_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x47c0922a snd_soc_dai_compr_set_metadata +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4a00ee43 snd_soc_link_compr_startup +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4ab9f0fb snd_soc_dapm_mux_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4da04da4 snd_soc_dai_active +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4e51dc5a snd_soc_component_compr_get_codec_caps +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4f2832e7 snd_soc_dapm_disable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4f2ade4e snd_soc_dapm_new_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4fb6d7ae snd_soc_dapm_del_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x51e3dd41 snd_soc_component_force_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x529361f8 snd_soc_tplg_component_remove +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5420a56c snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x54ad8763 snd_soc_runtime_set_dai_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5631a515 snd_soc_dapm_force_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5695002b snd_soc_component_init_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x57c74381 snd_soc_component_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5cde41b4 snd_soc_get_pcm_runtime +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5d0eb2c3 snd_soc_jack_free_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5eaa3d7a snd_soc_component_compr_free +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5eea562f snd_soc_card_remove_dai_link +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5f0855b2 snd_soc_dpcm_runtime_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6150e104 snd_soc_dapm_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x61dec4a0 snd_soc_card_jack_new +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x622f0064 snd_soc_component_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x62316d26 snd_soc_dai_digital_mute +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x62c6f8da snd_soc_component_disable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x64154966 snd_soc_bytes_put +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x65a76885 snd_soc_close_delayed_work +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6720b535 snd_soc_add_dai_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x67c49fed snd_soc_dapm_get_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x67d9a326 snd_soc_dapm_nc_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x690a8045 snd_soc_dai_action +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6a738aef snd_soc_component_compr_get_metadata +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6af094f0 snd_soc_of_get_dai_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6b557af7 snd_soc_resume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6c2ac490 snd_soc_new_compress +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6c708687 snd_soc_dai_get_channel_map +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6e95ac9f devm_snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6f18746c snd_soc_runtime_calc_hw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6fc5dccc snd_soc_dapm_sync_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x751c7ff2 dapm_pinctrl_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7639be41 snd_soc_of_parse_node_prefix +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x768d5568 snd_soc_add_component_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x771d7abe snd_soc_dai_compr_get_metadata +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x77794967 snd_soc_dai_set_tristate +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7cbb930e null_dailink_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7dc8ae3a snd_soc_card_get_kcontrol EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e606130 snd_soc_calc_bclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8034d621 snd_soc_component_update_bits_async -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x805e272a snd_soc_link_compr_startup -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x808cbdf0 snd_soc_component_force_enable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x81e33b77 snd_soc_dapm_new_control -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x82056fc4 snd_soc_dai_set_channel_map -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x838071ef snd_soc_dai_set_tristate -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x83fd8ab0 snd_soc_dapm_new_widgets -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x84ba92ea snd_soc_of_get_slot_mask -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x86951f9a snd_soc_debugfs_root -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x886f8c00 snd_soc_dai_compr_shutdown -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x89378e83 snd_soc_add_pcm_runtime -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x89a259ce snd_soc_component_write_field -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8b74b4ea dapm_pinctrl_event -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8bb38ae9 snd_soc_of_parse_card_name -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8e1faa77 snd_soc_card_get_kcontrol -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8f1839fe snd_soc_dai_compr_set_metadata -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9068dc69 snd_soc_find_dai -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9070bf0c snd_soc_put_volsw_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x91a508b4 snd_soc_new_ac97_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x943b0397 snd_soc_of_parse_audio_routing -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x94949b1f snd_soc_dapm_add_routes -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9677b64b snd_soc_unregister_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x96a52ab4 snd_soc_dapm_free -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9790be10 snd_soc_lookup_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9874c315 snd_soc_component_compr_get_caps -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x99f655af snd_soc_free_ac97_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x82ea17e3 snd_soc_dai_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x83143d6a snd_soc_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x84d7d63c snd_soc_set_dmi_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x85b60892 snd_soc_unregister_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8725b2b6 snd_soc_dai_link_set_capabilities +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8b398cbf snd_soc_of_parse_aux_devs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8cb15d77 snd_soc_jack_add_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8e9a885b snd_soc_find_dai_with_mutex +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8edbb88b snd_soc_dapm_force_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8f978eba snd_soc_jack_get_type +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x91898d13 snd_soc_dai_compr_shutdown +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x92602ff9 snd_soc_pm_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x93696d9a snd_soc_of_parse_card_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x981f6dfb snd_soc_dapm_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x98b6ced8 snd_soc_dpcm_get_substream +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x99983285 snd_soc_of_get_dai_link_codecs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9a5aaa1a snd_soc_dapm_nc_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9a8d3936 snd_soc_link_compr_shutdown EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9bfde704 snd_soc_daifmt_clock_provider_fliped -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9cf18f1a snd_soc_link_compr_set_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa0ba70f5 snd_soc_dapm_sync_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa19c958d snd_soc_component_compr_copy -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa22287e0 snd_soc_set_ac97_ops_of_reset -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa2b690f1 snd_soc_dai_set_clkdiv -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa325b0bd snd_soc_poweroff -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa37c10f5 snd_soc_put_volsw_range -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa519e6b3 snd_soc_jack_add_pins -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa5d67a47 snd_soc_component_nc_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa61b57dc snd_soc_put_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa70582af snd_soc_component_compr_ack -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa7895ba0 snd_soc_of_parse_node_prefix -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa9ca7657 snd_soc_dai_set_sysclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xabbc6a5f snd_soc_dai_action -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xada638cc snd_soc_register_card -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xae3d8adb dpcm_be_dai_trigger -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xae660177 snd_soc_dapm_ignore_suspend -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xafba8d2a snd_soc_new_compress -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xafcc3f16 snd_soc_dapm_put_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb34d2cde snd_soc_get_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb4dccbcd snd_soc_dapm_nc_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb52469c3 snd_soc_dai_set_tdm_slot -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb587e2a5 snd_soc_component_initialize -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb5d84c30 snd_soc_dai_compr_get_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb62a6bf7 snd_soc_get_volsw_range -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb9488d65 snd_soc_bytes_tlv_callback -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc1e0e3de snd_soc_add_component_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc2ee395e snd_soc_get_volsw_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc35d9c0b snd_soc_component_enable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc7546adb snd_soc_dai_compr_pointer -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc7a8f4af snd_soc_add_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8112542 snd_soc_dpcm_can_be_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9c384a41 snd_soc_dapm_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9ce20ce9 snd_soc_dapm_new_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9cff9401 snd_soc_dai_set_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9ecd6a9d snd_soc_jack_add_zones +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa03f266e snd_soc_dapm_kcontrol_dapm +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa228360e snd_soc_bytes_info_ext +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa237b507 snd_soc_jack_notifier_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa4296a16 snd_soc_dpcm_fe_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa4a1fbc4 snd_soc_component_compr_set_metadata +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa4eed204 snd_soc_dapm_free +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa5fa4c87 snd_soc_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa7267219 soc_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa7fb0dd1 snd_soc_component_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa874dac1 devm_snd_soc_register_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa8d733db snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaa359fe2 snd_soc_remove_pcm_runtime +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaa7b2281 snd_dmaengine_pcm_prepare_slave_config +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xab36eb36 snd_soc_component_exit_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb32baa7c snd_soc_jack_report +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb3c906e6 snd_soc_info_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb455354b snd_soc_dapm_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb65fe245 snd_soc_add_pcm_runtime +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb7d1f1e8 snd_soc_dpcm_can_be_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb957a1b3 snd_soc_bytes_get +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbc1d660f snd_soc_get_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbd140105 snd_soc_dapm_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbdb0be82 snd_soc_component_compr_pointer +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbfb311be snd_soc_dpcm_be_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc40c2012 devm_snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc469c698 snd_soc_component_test_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc5016431 snd_soc_dapm_disable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc64d6edf snd_soc_poweroff +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc6cfe693 snd_soc_dai_compr_trigger EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8269f94 snd_soc_params_to_frame_size -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc958b955 snd_soc_component_exit_regmap -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xca03362b snd_soc_dapm_get_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcb578338 snd_soc_jack_free_gpios -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcc312947 snd_soc_component_update_bits -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcc82c715 snd_soc_dapm_disable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcd021574 snd_soc_dapm_kcontrol_dapm -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcdadbcdc snd_soc_of_parse_audio_simple_widgets -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcf378a8c snd_soc_component_get_pin_status -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd20220aa snd_soc_dapm_nc_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd2b18b46 snd_soc_rtdcom_lookup -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd67a6cef snd_soc_dpcm_be_can_update -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd7e706ae snd_soc_dapm_stream_stop -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd814c458 snd_soc_dpcm_can_be_free_stop -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd905da85 snd_soc_component_init_regmap -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdabc31bc snd_soc_component_disable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xde87733e snd_soc_dapm_force_bias_level -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdeabd752 snd_soc_card_jack_new -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdeb14737 snd_soc_jack_get_type -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe2b297d6 snd_soc_component_disable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe48052ba snd_soc_dpcm_runtime_update -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe609b797 snd_soc_of_parse_aux_devs -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe70ac5fd snd_soc_runtime_set_dai_fmt -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe7ee23da snd_soc_dai_compr_set_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe87a7f3d snd_soc_dapm_get_pin_status -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe9a55da5 snd_soc_put_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8f9a1e1 snd_soc_set_ac97_ops_of_reset +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc949590c snd_soc_free_ac97_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc9d37b5f snd_dmaengine_pcm_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcac43516 snd_soc_component_update_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcc00e9e6 snd_soc_of_get_slot_mask +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcd8fbbca snd_soc_of_parse_audio_routing +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcf6acfa5 snd_soc_component_update_bits_async +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcf8c370c snd_soc_put_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcffe1738 snd_soc_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd1906abd snd_soc_dai_compr_ack +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd3eefe8e snd_soc_add_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd5ac75a6 snd_soc_get_dai_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd68e83a3 snd_soc_component_compr_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd73203a9 snd_soc_of_put_dai_link_codecs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd7a0209e snd_soc_get_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd7afc531 snd_soc_daifmt_parse_clock_provider_raw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd983db10 snd_soc_info_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd9d3157f snd_soc_set_runtime_hwparams +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xda639736 dapm_mark_endpoints_dirty +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdc763c7e snd_soc_get_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdd20c744 snd_soc_lookup_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xddc4260f dapm_clock_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdffc4f45 snd_soc_dapm_force_bias_level +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe232e30a snd_soc_jack_add_gpiods +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe289250a snd_soc_unregister_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe4f0db67 snd_soc_get_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe6503bdb snd_soc_dapm_add_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe6eb6013 snd_soc_component_nc_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe767a0e9 snd_soc_debugfs_root EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb711ae7 snd_soc_params_to_bclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xec966376 snd_soc_bytes_put -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xececf4ca snd_soc_component_compr_set_metadata -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xed0ed9ca snd_soc_component_compr_trigger -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xedac22a7 dapm_kcontrol_get_value -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeeff3054 snd_soc_jack_notifier_register -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf2f5b040 snd_soc_bytes_info -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf3c17239 snd_soc_add_dai_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf40b0a9d snd_soc_card_remove_dai_link -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf4fdff73 snd_soc_dapm_mixer_update_power -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf64b8e82 snd_soc_close_delayed_work -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf8c04900 snd_soc_set_dmi_name -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf8eba3b0 snd_soc_component_read_field +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xec42a414 snd_soc_component_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xef9d6646 snd_soc_dapm_mixer_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf1358b3b snd_soc_component_set_jack +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf142f260 snd_soc_get_dai_id +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf14e5173 snd_soc_put_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf185b7b3 snd_soc_info_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf1957622 snd_soc_dpcm_can_be_free_stop +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf2910010 snd_soc_component_initialize +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf2f63608 snd_soc_unregister_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf3b4f709 snd_soc_dapm_init +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf415be41 snd_soc_card_add_dai_link +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf57e9b5a snd_soc_limit_volume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf6f7360c snd_soc_component_compr_open EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf9622dd1 snd_soc_daifmt_clock_provider_from_bitmap -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfa47ed87 snd_soc_dpcm_get_substream -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfaf38b77 snd_soc_dapm_mux_update_power -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfe179f09 snd_soc_dapm_enable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfe81c455 snd_soc_component_force_enable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xffd905f1 snd_soc_dai_link_set_capabilities -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x48459058 snd_sof_dbg_memory_info_init -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x6195c50d snd_sof_debugfs_io_item -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x687fd459 snd_sof_debugfs_buf_item -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0xa87698a3 snd_sof_free_debug -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0xd837c137 snd_sof_dbg_init +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf97f59aa snd_soc_dapm_info_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfb6a8279 snd_soc_info_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfbdf0148 snd_soc_dapm_get_pin_status +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfc288a39 snd_soc_daifmt_parse_format +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfc3e673b snd_soc_component_read_field +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfc6642c3 devm_snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfc911516 dpcm_be_dai_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfdc02e33 dapm_kcontrol_get_value +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xff9438f2 snd_soc_link_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x1b14d065 snd_sof_debugfs_buf_item +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x499dcdf7 snd_sof_dbg_memory_info_init +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x86201b84 snd_sof_free_debug +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0xe2e3e300 snd_sof_dbg_init +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0xebe6c764 snd_sof_debugfs_io_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 @@ -19424,16 +19552,16 @@ 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 0x1dda6bda tegra_asoc_machine_probe -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-machine 0x60eb7cc9 tegra_asoc_machine_init -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x0939cd85 tegra_pcm_close -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x0bf84bf5 tegra_pcm_hw_params -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x433947ab tegra_pcm_platform_unregister -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x564a7815 tegra_pcm_open -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x8088ec62 tegra_pcm_platform_register -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x8e8fd4f1 tegra_pcm_platform_register_with_chan_names -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0xa1bc96a1 tegra_pcm_pointer -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0xb06973bc tegra_pcm_construct +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-machine 0x5c4ce8d0 tegra_asoc_machine_init +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-machine 0xcc40caee tegra_asoc_machine_probe +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x0ac2b6d0 tegra_pcm_open +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x1bbb9fd3 tegra_pcm_hw_params +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x28cc9a48 tegra_pcm_pointer +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x8f4aab4d tegra_pcm_construct +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x95830b96 tegra_pcm_close +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0xa0417ef9 tegra_pcm_platform_unregister +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0xef0ae16f tegra_pcm_platform_register_with_chan_names +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0xf0fd5f4a tegra_pcm_platform_register EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra20-das 0x0d54c9b9 tegra20_das_connect_dap_to_dac EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra20-das 0xb52cfca4 tegra20_das_connect_dac_to_dap EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra20-das 0xbced7431 tegra20_das_connect_dap_to_dap @@ -19452,6891 +19580,6884 @@ -EXPORT_SYMBOL_GPL sound/soc/ti/snd-soc-ti-edma 0x362ae328 edma_pcm_platform_register -EXPORT_SYMBOL_GPL sound/soc/ti/snd-soc-ti-sdma 0x9f0a837a sdma_pcm_platform_register -EXPORT_SYMBOL_GPL sound/soc/ti/snd-soc-ti-udma 0xfbd35564 udma_pcm_platform_register -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x08d8ed24 line6_pcm_acquire +EXPORT_SYMBOL_GPL sound/soc/ti/snd-soc-ti-edma 0x687de4d5 edma_pcm_platform_register +EXPORT_SYMBOL_GPL sound/soc/ti/snd-soc-ti-sdma 0xfd2d0d27 sdma_pcm_platform_register +EXPORT_SYMBOL_GPL sound/soc/ti/snd-soc-ti-udma 0xe3ce8fe4 udma_pcm_platform_register +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x085b7878 line6_version_request_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x09779e2f line6_send_sysex_message +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x18d7613f line6_disconnect EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x202a1b1b line6_midi_id -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x32a89804 line6_send_raw_message -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x6560bba5 line6_init_pcm -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x7a1d0dc1 line6_alloc_sysex_buffer -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x8f55f361 line6_probe -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x8ffa74c6 line6_send_raw_message_async -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x9086eb1f line6_read_data -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x93a5112b line6_init_midi -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x93dd8ebe line6_suspend -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xae585e25 line6_pcm_release -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xae7e7a06 line6_disconnect -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xe6e4d84f line6_version_request_async -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xeaa52678 line6_resume -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xf6341664 line6_send_sysex_message -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xfa267b54 line6_write_data -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xfc5c78b7 line6_read_serial_number -EXPORT_SYMBOL_GPL vmlinux 0x000de588 of_usb_update_otg_caps -EXPORT_SYMBOL_GPL vmlinux 0x000fe172 l3mdev_update_flow -EXPORT_SYMBOL_GPL vmlinux 0x0043d053 ahci_start_engine -EXPORT_SYMBOL_GPL vmlinux 0x004f4610 rio_mport_initialize +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x359f83e7 line6_resume +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x366e4cb9 line6_send_raw_message +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x3c3676df line6_init_pcm +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x56ea9f67 line6_probe +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x6df76cef line6_pcm_release +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x7200d566 line6_init_midi +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x77a711d5 line6_write_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x823113a6 line6_alloc_sysex_buffer +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x8b6972f6 line6_suspend +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xb9a34e21 line6_pcm_acquire +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xbc7ba6fe line6_send_raw_message_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xef754ec8 line6_read_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xf64a2505 line6_read_serial_number +EXPORT_SYMBOL_GPL vmlinux 0x0003814d perf_aux_output_skip +EXPORT_SYMBOL_GPL vmlinux 0x0003eac4 sfp_bus_add_upstream +EXPORT_SYMBOL_GPL vmlinux 0x00091961 pcie_port_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x001730fa irq_gc_set_wake +EXPORT_SYMBOL_GPL vmlinux 0x001ffa3e devm_hwspin_lock_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0033db08 pci_dev_trylock +EXPORT_SYMBOL_GPL vmlinux 0x00496d74 serial8250_clear_and_reinit_fifos EXPORT_SYMBOL_GPL vmlinux 0x00513f58 get_timespec64 +EXPORT_SYMBOL_GPL vmlinux 0x005275a0 dev_pm_opp_unregister_set_opp_helper EXPORT_SYMBOL_GPL vmlinux 0x00565f18 pernet_ops_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x005a22f4 devlink_traps_unregister +EXPORT_SYMBOL_GPL vmlinux 0x005b478a __clocksource_register_scale EXPORT_SYMBOL_GPL vmlinux 0x005f18a6 add_wait_queue_priority EXPORT_SYMBOL_GPL vmlinux 0x0063d2eb srcu_batches_completed -EXPORT_SYMBOL_GPL vmlinux 0x0078c219 clone_private_mount -EXPORT_SYMBOL_GPL vmlinux 0x007c1e14 dprc_get_obj_region -EXPORT_SYMBOL_GPL vmlinux 0x009b640c crypto_stats_kpp_generate_public_key -EXPORT_SYMBOL_GPL vmlinux 0x009ce8a2 iptunnel_handle_offloads -EXPORT_SYMBOL_GPL vmlinux 0x009e3c02 acpi_debugfs_dir -EXPORT_SYMBOL_GPL vmlinux 0x00b0248d fscrypt_file_open -EXPORT_SYMBOL_GPL vmlinux 0x00b4a939 dprc_set_obj_irq -EXPORT_SYMBOL_GPL vmlinux 0x00c01467 kvm_read_guest_cached -EXPORT_SYMBOL_GPL vmlinux 0x00cc5966 get_user_pages_fast_only +EXPORT_SYMBOL_GPL vmlinux 0x006bdf7f fwnode_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x0077656f serial8250_do_set_mctrl +EXPORT_SYMBOL_GPL vmlinux 0x007e0f58 skb_defer_rx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x008e8b42 tc3589x_block_write +EXPORT_SYMBOL_GPL vmlinux 0x0094862a __pm_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x0096869d usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0x0099096c usb_asmedia_modifyflowcontrol +EXPORT_SYMBOL_GPL vmlinux 0x00b07312 pm_generic_restore_noirq EXPORT_SYMBOL_GPL vmlinux 0x00d4c500 usb_decode_interval +EXPORT_SYMBOL_GPL vmlinux 0x00dbeb42 devm_pinctrl_put EXPORT_SYMBOL_GPL vmlinux 0x00df9837 ioasid_register_allocator -EXPORT_SYMBOL_GPL vmlinux 0x00dfdd17 acpi_irq_create_hierarchy -EXPORT_SYMBOL_GPL vmlinux 0x00f636a6 regmap_raw_write_async -EXPORT_SYMBOL_GPL vmlinux 0x00ff69b9 fsl_mc_portal_free -EXPORT_SYMBOL_GPL vmlinux 0x0102dc96 dev_attr_em_message -EXPORT_SYMBOL_GPL vmlinux 0x01286ddd fsl_mc_bus_dpdbg_type +EXPORT_SYMBOL_GPL vmlinux 0x00e77576 raw_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x00f04f60 __vfs_setxattr_noperm +EXPORT_SYMBOL_GPL vmlinux 0x00f11b56 ata_sff_softreset +EXPORT_SYMBOL_GPL vmlinux 0x00f75b6b devm_kmemdup +EXPORT_SYMBOL_GPL vmlinux 0x0124bab5 crypto_stats_skcipher_encrypt EXPORT_SYMBOL_GPL vmlinux 0x012e730e apei_exec_noop -EXPORT_SYMBOL_GPL vmlinux 0x01364faf ata_sff_wait_ready -EXPORT_SYMBOL_GPL vmlinux 0x0142dc21 cpufreq_driver_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0x012e9d20 imx_check_clk_hws +EXPORT_SYMBOL_GPL vmlinux 0x01373c09 pinctrl_generic_add_group +EXPORT_SYMBOL_GPL vmlinux 0x014b13ce mddev_unlock EXPORT_SYMBOL_GPL vmlinux 0x014e8186 cpu_scale -EXPORT_SYMBOL_GPL vmlinux 0x015cd535 vfs_setlease -EXPORT_SYMBOL_GPL vmlinux 0x015fddf3 auxiliary_device_init -EXPORT_SYMBOL_GPL vmlinux 0x01607783 clk_hw_get_parent -EXPORT_SYMBOL_GPL vmlinux 0x016b2845 xdp_convert_zc_to_xdp_frame -EXPORT_SYMBOL_GPL vmlinux 0x016e2368 devlink_param_value_changed +EXPORT_SYMBOL_GPL vmlinux 0x015c133f dev_pm_qos_expose_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0x015c3a03 sched_trace_rq_avg_irq +EXPORT_SYMBOL_GPL vmlinux 0x0168385e device_initialize +EXPORT_SYMBOL_GPL vmlinux 0x016c75b7 blk_mq_sched_try_merge +EXPORT_SYMBOL_GPL vmlinux 0x017f8300 k3_udma_glue_tx_get_dma_device EXPORT_SYMBOL_GPL vmlinux 0x01866a57 ezx_pcap_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x0193ccf7 platform_find_device_by_driver +EXPORT_SYMBOL_GPL vmlinux 0x0186c909 crypto_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x019ead92 fuse_send_init EXPORT_SYMBOL_GPL vmlinux 0x01a0cb78 property_entries_free +EXPORT_SYMBOL_GPL vmlinux 0x01b485bc virtqueue_enable_cb_delayed +EXPORT_SYMBOL_GPL vmlinux 0x01b62663 rockchip_clk_register_branches EXPORT_SYMBOL_GPL vmlinux 0x01c6cb0c cpu_cluster_pm_enter -EXPORT_SYMBOL_GPL vmlinux 0x01cfdb88 phy_speed_down +EXPORT_SYMBOL_GPL vmlinux 0x01c83827 icc_provider_del +EXPORT_SYMBOL_GPL vmlinux 0x01d8e1d4 led_trigger_register_simple +EXPORT_SYMBOL_GPL vmlinux 0x01d9875e extcon_dev_free EXPORT_SYMBOL_GPL vmlinux 0x01e1a8de kgdb_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x01f1d7a6 devfreq_cooling_unregister -EXPORT_SYMBOL_GPL vmlinux 0x01ff2ec5 governor_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0x01e3244d mnt_want_write +EXPORT_SYMBOL_GPL vmlinux 0x01e9ea1d pci_find_next_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0x01ecbcf6 crypto_inst_setname EXPORT_SYMBOL_GPL vmlinux 0x0207a6c6 reset_control_bulk_acquire -EXPORT_SYMBOL_GPL vmlinux 0x02185e49 handle_irq_desc -EXPORT_SYMBOL_GPL vmlinux 0x021ebf58 dm_put -EXPORT_SYMBOL_GPL vmlinux 0x0224e7c2 cgroup_get_from_id -EXPORT_SYMBOL_GPL vmlinux 0x0229a6bf rcu_read_unlock_trace_special -EXPORT_SYMBOL_GPL vmlinux 0x022d1c99 pm_generic_thaw -EXPORT_SYMBOL_GPL vmlinux 0x022e4cf6 ethtool_set_ethtool_phy_ops +EXPORT_SYMBOL_GPL vmlinux 0x021afa39 get_net_ns_by_fd +EXPORT_SYMBOL_GPL vmlinux 0x021c8fda fwnode_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x021cb124 dev_nit_active +EXPORT_SYMBOL_GPL vmlinux 0x02204078 fork_usermode_driver +EXPORT_SYMBOL_GPL vmlinux 0x022ef748 usb_intf_get_dma_device EXPORT_SYMBOL_GPL vmlinux 0x02394899 play_idle_precise +EXPORT_SYMBOL_GPL vmlinux 0x023ed254 nvdimm_bus_check_dimm_count EXPORT_SYMBOL_GPL vmlinux 0x024d13dd request_free_mem_region -EXPORT_SYMBOL_GPL vmlinux 0x0251a62a kgdb_register_io_module -EXPORT_SYMBOL_GPL vmlinux 0x0262a950 usb_free_urb -EXPORT_SYMBOL_GPL vmlinux 0x0270ae67 rtnl_delete_link -EXPORT_SYMBOL_GPL vmlinux 0x02723ddd relay_switch_subbuf -EXPORT_SYMBOL_GPL vmlinux 0x0274a9e5 soc_device_register -EXPORT_SYMBOL_GPL vmlinux 0x02799054 is_virtio_device -EXPORT_SYMBOL_GPL vmlinux 0x029cf460 sysfs_create_mount_point +EXPORT_SYMBOL_GPL vmlinux 0x0269ee50 gpiochip_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0x027c2dd5 usb_reset_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x02805937 virtqueue_add_outbuf +EXPORT_SYMBOL_GPL vmlinux 0x0284d128 pm_clk_create +EXPORT_SYMBOL_GPL vmlinux 0x028666eb bpf_trace_run6 +EXPORT_SYMBOL_GPL vmlinux 0x028bcbf2 ata_acpi_gtm_xfermask EXPORT_SYMBOL_GPL vmlinux 0x029dd9d5 gnttab_batch_copy -EXPORT_SYMBOL_GPL vmlinux 0x02a21184 cpufreq_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x02ab432a ti_sci_inta_msi_create_irq_domain -EXPORT_SYMBOL_GPL vmlinux 0x02c7377f devlink_port_params_register -EXPORT_SYMBOL_GPL vmlinux 0x02dd8a93 pcc_mbox_free_channel -EXPORT_SYMBOL_GPL vmlinux 0x02e6bdf2 nvdimm_region_notify -EXPORT_SYMBOL_GPL vmlinux 0x02f1e428 gpiod_get_array -EXPORT_SYMBOL_GPL vmlinux 0x02f7db1b serial8250_do_set_mctrl -EXPORT_SYMBOL_GPL vmlinux 0x02f7e054 scsi_flush_work -EXPORT_SYMBOL_GPL vmlinux 0x0303a195 yield_to +EXPORT_SYMBOL_GPL vmlinux 0x02d0fb8f ata_pci_sff_init_host +EXPORT_SYMBOL_GPL vmlinux 0x02d264cf clk_hw_rate_is_protected +EXPORT_SYMBOL_GPL vmlinux 0x02fa175d acpi_dev_get_first_consumer_dev +EXPORT_SYMBOL_GPL vmlinux 0x0307ad77 tty_kopen_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x03086380 shmem_file_setup +EXPORT_SYMBOL_GPL vmlinux 0x030c1c54 stmpe_set_bits EXPORT_SYMBOL_GPL vmlinux 0x0312b3b0 reset_controller_add_lookup -EXPORT_SYMBOL_GPL vmlinux 0x0313f485 device_find_child_by_name -EXPORT_SYMBOL_GPL vmlinux 0x0317fce2 ahci_init_controller -EXPORT_SYMBOL_GPL vmlinux 0x0319c802 nvmem_cell_read_variable_le_u64 -EXPORT_SYMBOL_GPL vmlinux 0x031ddded of_get_phy_mode EXPORT_SYMBOL_GPL vmlinux 0x0321cdbf of_alias_get_highest_id -EXPORT_SYMBOL_GPL vmlinux 0x0327ef53 wbt_enable_default +EXPORT_SYMBOL_GPL vmlinux 0x032bf31e sdio_memcpy_fromio +EXPORT_SYMBOL_GPL vmlinux 0x032d0986 crypto_mod_put EXPORT_SYMBOL_GPL vmlinux 0x033832c7 usb_amd_hang_symptom_quirk -EXPORT_SYMBOL_GPL vmlinux 0x033a2aa3 usb_disable_ltm +EXPORT_SYMBOL_GPL vmlinux 0x033837e4 regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x0342bf73 gpiod_get_array_value EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list -EXPORT_SYMBOL_GPL vmlinux 0x03469075 fwnode_get_next_child_node -EXPORT_SYMBOL_GPL vmlinux 0x03493592 sched_trace_rq_avg_irq -EXPORT_SYMBOL_GPL vmlinux 0x034d8339 hvc_remove -EXPORT_SYMBOL_GPL vmlinux 0x034df627 devm_nvmem_register -EXPORT_SYMBOL_GPL vmlinux 0x036152b8 nvmem_device_get +EXPORT_SYMBOL_GPL vmlinux 0x0354ef74 usb_get_current_frame_number +EXPORT_SYMBOL_GPL vmlinux 0x0359cbde devm_ti_sci_get_handle +EXPORT_SYMBOL_GPL vmlinux 0x035f5ec9 __trace_note_message +EXPORT_SYMBOL_GPL vmlinux 0x036aae81 __kernel_write +EXPORT_SYMBOL_GPL vmlinux 0x036b6f40 apei_get_debugfs_dir EXPORT_SYMBOL_GPL vmlinux 0x036de383 perf_event_cgrp_subsys_enabled_key EXPORT_SYMBOL_GPL vmlinux 0x03701a42 zynqmp_pm_pinctrl_set_function -EXPORT_SYMBOL_GPL vmlinux 0x0392b510 of_device_modalias +EXPORT_SYMBOL_GPL vmlinux 0x03746344 of_dma_xlate_by_chan_id +EXPORT_SYMBOL_GPL vmlinux 0x03765751 ata_sas_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0x0387742b usb_set_device_state +EXPORT_SYMBOL_GPL vmlinux 0x038a5d46 ehci_resume EXPORT_SYMBOL_GPL vmlinux 0x03952887 ktime_add_safe -EXPORT_SYMBOL_GPL vmlinux 0x03992678 debugfs_create_file_unsafe -EXPORT_SYMBOL_GPL vmlinux 0x039a77f9 udp_tunnel_nic_ops -EXPORT_SYMBOL_GPL vmlinux 0x03a80a2d event_triggers_post_call -EXPORT_SYMBOL_GPL vmlinux 0x03b8c568 sched_trace_rq_avg_dl +EXPORT_SYMBOL_GPL vmlinux 0x039e1cf8 crypto_skcipher_setkey +EXPORT_SYMBOL_GPL vmlinux 0x03a47e5e of_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0x03a960bf tegra_xusb_padctl_legacy_probe EXPORT_SYMBOL_GPL vmlinux 0x03c12dfe cancel_work_sync -EXPORT_SYMBOL_GPL vmlinux 0x03c8edae relay_reset +EXPORT_SYMBOL_GPL vmlinux 0x03c7cf6d PageHuge +EXPORT_SYMBOL_GPL vmlinux 0x03c7f5cc ima_inode_hash EXPORT_SYMBOL_GPL vmlinux 0x03ce7234 sched_smt_present -EXPORT_SYMBOL_GPL vmlinux 0x03ef0766 xenbus_read_otherend_details -EXPORT_SYMBOL_GPL vmlinux 0x03f410e9 mtk_pinconf_bias_get_combo -EXPORT_SYMBOL_GPL vmlinux 0x03f6ae94 devm_regulator_put -EXPORT_SYMBOL_GPL vmlinux 0x03fe044a rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x03d65132 ip6_append_data +EXPORT_SYMBOL_GPL vmlinux 0x03dcc2c7 meson_clk_pcie_pll_ops +EXPORT_SYMBOL_GPL vmlinux 0x03ee6b70 ata_pci_bmdma_clear_simplex +EXPORT_SYMBOL_GPL vmlinux 0x03f0abab device_match_name +EXPORT_SYMBOL_GPL vmlinux 0x03f70f33 serdev_device_close EXPORT_SYMBOL_GPL vmlinux 0x0402cbbf preempt_notifier_inc -EXPORT_SYMBOL_GPL vmlinux 0x0408ffdd usb_hcd_poll_rh_status -EXPORT_SYMBOL_GPL vmlinux 0x04122134 regmap_field_alloc -EXPORT_SYMBOL_GPL vmlinux 0x0413f56f dm_suspended -EXPORT_SYMBOL_GPL vmlinux 0x0427e307 acpi_dma_configure_id +EXPORT_SYMBOL_GPL vmlinux 0x0417a698 genphy_c45_read_status +EXPORT_SYMBOL_GPL vmlinux 0x0425ded1 fsstack_copy_attr_all EXPORT_SYMBOL_GPL vmlinux 0x042c9a04 em_cpu_get -EXPORT_SYMBOL_GPL vmlinux 0x045de9cb usb_anchor_urb -EXPORT_SYMBOL_GPL vmlinux 0x0465864a dw_pcie_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x0430a937 serial8250_rx_dma_flush +EXPORT_SYMBOL_GPL vmlinux 0x0440e9f1 device_show_int +EXPORT_SYMBOL_GPL vmlinux 0x0459b66e mctrl_gpio_init_noauto EXPORT_SYMBOL_GPL vmlinux 0x0465a073 regmap_reg_in_ranges -EXPORT_SYMBOL_GPL vmlinux 0x046f1f31 skb_partial_csum_set +EXPORT_SYMBOL_GPL vmlinux 0x0467da2b __clk_hw_register_mux +EXPORT_SYMBOL_GPL vmlinux 0x046d90f9 devm_clk_hw_unregister EXPORT_SYMBOL_GPL vmlinux 0x046f359e of_overlay_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x0471b3a9 dev_pm_genpd_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0x0471b9f1 br_ip6_fragment EXPORT_SYMBOL_GPL vmlinux 0x0472cf3b register_kprobe -EXPORT_SYMBOL_GPL vmlinux 0x047f3553 pci_epc_raise_irq -EXPORT_SYMBOL_GPL vmlinux 0x047ff6c0 skb_mpls_pop -EXPORT_SYMBOL_GPL vmlinux 0x0488cbb6 devlink_port_register +EXPORT_SYMBOL_GPL vmlinux 0x047f9d20 usb_for_each_port +EXPORT_SYMBOL_GPL vmlinux 0x04830127 fscrypt_prepare_symlink +EXPORT_SYMBOL_GPL vmlinux 0x048a2b5c platform_device_put EXPORT_SYMBOL_GPL vmlinux 0x048b5f8d twl4030_audio_get_mclk -EXPORT_SYMBOL_GPL vmlinux 0x04977c04 ata_dev_pair -EXPORT_SYMBOL_GPL vmlinux 0x0498ec5f rockchip_clk_register_armclk +EXPORT_SYMBOL_GPL vmlinux 0x049de29e fscrypt_ioctl_remove_key_all_users EXPORT_SYMBOL_GPL vmlinux 0x049e5156 gnttab_try_end_foreign_access -EXPORT_SYMBOL_GPL vmlinux 0x049fe8c1 icc_node_add -EXPORT_SYMBOL_GPL vmlinux 0x04a1d739 pci_epc_get_msi -EXPORT_SYMBOL_GPL vmlinux 0x04ad905b vp_modern_generation -EXPORT_SYMBOL_GPL vmlinux 0x04b5368e tpm_pm_suspend -EXPORT_SYMBOL_GPL vmlinux 0x04b91e96 virtqueue_get_buf_ctx +EXPORT_SYMBOL_GPL vmlinux 0x04a01969 mmc_cmdq_disable +EXPORT_SYMBOL_GPL vmlinux 0x04a2b7d2 pin_user_pages_fast_only +EXPORT_SYMBOL_GPL vmlinux 0x04bc1f24 crypto_register_skciphers EXPORT_SYMBOL_GPL vmlinux 0x04bf0092 io_cgrp_subsys_enabled_key EXPORT_SYMBOL_GPL vmlinux 0x04c4f603 mpi_get_buffer -EXPORT_SYMBOL_GPL vmlinux 0x04c7273e wakeup_source_destroy +EXPORT_SYMBOL_GPL vmlinux 0x04c8156b acpi_dev_pm_attach EXPORT_SYMBOL_GPL vmlinux 0x04c8aebf console_verbose -EXPORT_SYMBOL_GPL vmlinux 0x04c8c2ab tpm_chip_register -EXPORT_SYMBOL_GPL vmlinux 0x04d6f190 k3_udma_glue_rx_flow_init +EXPORT_SYMBOL_GPL vmlinux 0x04cb07a8 i2c_add_numbered_adapter +EXPORT_SYMBOL_GPL vmlinux 0x04da6c5e vp_modern_set_queue_enable EXPORT_SYMBOL_GPL vmlinux 0x04df8fbc lzo1x_decompress_safe -EXPORT_SYMBOL_GPL vmlinux 0x04ffaf9a ehci_adjust_port_wakeup_flags -EXPORT_SYMBOL_GPL vmlinux 0x0501b5e5 lwtunnel_build_state -EXPORT_SYMBOL_GPL vmlinux 0x050e9aa3 of_pci_address_to_resource -EXPORT_SYMBOL_GPL vmlinux 0x052c945a efivars_register +EXPORT_SYMBOL_GPL vmlinux 0x04e1ce5a put_device +EXPORT_SYMBOL_GPL vmlinux 0x04f3ad35 mmc_regulator_get_supply +EXPORT_SYMBOL_GPL vmlinux 0x04f47338 phy_configure +EXPORT_SYMBOL_GPL vmlinux 0x04fdcd35 device_store_ulong +EXPORT_SYMBOL_GPL vmlinux 0x05225e93 tty_kclose +EXPORT_SYMBOL_GPL vmlinux 0x05248a8c __page_file_mapping 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 0x054240c4 __udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x053ffabd spi_mem_poll_status +EXPORT_SYMBOL_GPL vmlinux 0x054663a5 pinconf_generic_parse_dt_config EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt -EXPORT_SYMBOL_GPL vmlinux 0x0551136a iommu_unregister_device_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0x0554145d vp_modern_get_num_queues EXPORT_SYMBOL_GPL vmlinux 0x05610897 of_changeset_destroy EXPORT_SYMBOL_GPL vmlinux 0x05641313 imx_clk_hw_sscg_pll -EXPORT_SYMBOL_GPL vmlinux 0x056f0014 fixed_phy_register -EXPORT_SYMBOL_GPL vmlinux 0x0570bd6f vp_modern_get_queue_size -EXPORT_SYMBOL_GPL vmlinux 0x0570e3b5 devlink_port_type_ib_set +EXPORT_SYMBOL_GPL vmlinux 0x057fe500 phy_reset EXPORT_SYMBOL_GPL vmlinux 0x05883efb __traceiter_suspend_resume -EXPORT_SYMBOL_GPL vmlinux 0x05889d4d ata_pci_sff_init_one EXPORT_SYMBOL_GPL vmlinux 0x058c6377 for_each_kernel_tracepoint EXPORT_SYMBOL_GPL vmlinux 0x058f9366 apei_exec_collect_resources -EXPORT_SYMBOL_GPL vmlinux 0x05a6d568 rtnl_af_register -EXPORT_SYMBOL_GPL vmlinux 0x05b32a7e acpi_dev_get_first_consumer_dev -EXPORT_SYMBOL_GPL vmlinux 0x05b3d7e4 power_supply_get_property -EXPORT_SYMBOL_GPL vmlinux 0x05b4a2e6 phy_modify_mmd_changed -EXPORT_SYMBOL_GPL vmlinux 0x05b61447 fscrypt_ioctl_add_key -EXPORT_SYMBOL_GPL vmlinux 0x05c01eb4 fat_get_dotdot_entry -EXPORT_SYMBOL_GPL vmlinux 0x05e9af84 cpuidle_register -EXPORT_SYMBOL_GPL vmlinux 0x05f57ac8 pci_ioremap_wc_bar -EXPORT_SYMBOL_GPL vmlinux 0x06035b5a pci_scan_child_bus +EXPORT_SYMBOL_GPL vmlinux 0x058fb885 sched_set_normal +EXPORT_SYMBOL_GPL vmlinux 0x05a8a991 switchdev_port_obj_add +EXPORT_SYMBOL_GPL vmlinux 0x05b84a09 posix_acl_create +EXPORT_SYMBOL_GPL vmlinux 0x05c654b3 dev_pm_opp_set_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0x05d6c96c regmap_get_raw_write_max +EXPORT_SYMBOL_GPL vmlinux 0x05e07cb6 efivar_entry_size +EXPORT_SYMBOL_GPL vmlinux 0x05e30de4 usb_hc_died EXPORT_SYMBOL_GPL vmlinux 0x06055a23 __tracepoint_pelt_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x060a3d46 fat_attach EXPORT_SYMBOL_GPL vmlinux 0x06209f49 phy_lookup_setting -EXPORT_SYMBOL_GPL vmlinux 0x062587ee inet_hash EXPORT_SYMBOL_GPL vmlinux 0x0626da5f od_unregister_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0x062ce2f8 devres_add +EXPORT_SYMBOL_GPL vmlinux 0x062dd8b0 regulator_get_drvdata EXPORT_SYMBOL_GPL vmlinux 0x063e9296 rpi_firmware_put -EXPORT_SYMBOL_GPL vmlinux 0x063fa868 virtqueue_disable_cb +EXPORT_SYMBOL_GPL vmlinux 0x064061da skb_complete_tx_timestamp EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry -EXPORT_SYMBOL_GPL vmlinux 0x064e3be4 vfs_kern_mount -EXPORT_SYMBOL_GPL vmlinux 0x0657e059 usb_put_hcd -EXPORT_SYMBOL_GPL vmlinux 0x06747474 xdp_rxq_info_reg_mem_model -EXPORT_SYMBOL_GPL vmlinux 0x067478bf crypto_register_skciphers -EXPORT_SYMBOL_GPL vmlinux 0x06a396c2 tpm_chip_stop -EXPORT_SYMBOL_GPL vmlinux 0x06a61286 dev_pm_opp_get_opp_table -EXPORT_SYMBOL_GPL vmlinux 0x06b5e759 find_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0x06c024b7 devlink_flash_update_timeout_notify +EXPORT_SYMBOL_GPL vmlinux 0x06548082 ata_sas_sync_probe +EXPORT_SYMBOL_GPL vmlinux 0x065f16fd tcpv6_prot +EXPORT_SYMBOL_GPL vmlinux 0x066159b3 __pm_runtime_use_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x0662a5b5 md_bitmap_resize +EXPORT_SYMBOL_GPL vmlinux 0x06689b7f regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0x066fee26 pci_epf_destroy +EXPORT_SYMBOL_GPL vmlinux 0x068ab547 hwspin_lock_register +EXPORT_SYMBOL_GPL vmlinux 0x069a37a0 set_secondary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x06a456a2 crypto_aead_setauthsize +EXPORT_SYMBOL_GPL vmlinux 0x06a57c7a of_map_id +EXPORT_SYMBOL_GPL vmlinux 0x06a8760a devm_rpi_firmware_get +EXPORT_SYMBOL_GPL vmlinux 0x06aa5fc5 pci_host_probe +EXPORT_SYMBOL_GPL vmlinux 0x06b77fc7 ata_sff_irq_on +EXPORT_SYMBOL_GPL vmlinux 0x06bb4526 __devm_alloc_percpu EXPORT_SYMBOL_GPL vmlinux 0x06cca30b ring_buffer_record_off -EXPORT_SYMBOL_GPL vmlinux 0x06cfa139 devm_namespace_enable +EXPORT_SYMBOL_GPL vmlinux 0x06d3befc phy_led_trigger_change_speed +EXPORT_SYMBOL_GPL vmlinux 0x06dd3423 pcie_bus_configure_settings +EXPORT_SYMBOL_GPL vmlinux 0x06e40c9d fuse_abort_conn EXPORT_SYMBOL_GPL vmlinux 0x06e4433e sunxi_ccu_set_mmc_timing_mode -EXPORT_SYMBOL_GPL vmlinux 0x06e7d224 bio_release_pages -EXPORT_SYMBOL_GPL vmlinux 0x06f8ba73 sata_sff_hardreset -EXPORT_SYMBOL_GPL vmlinux 0x07001e2d pm_generic_freeze -EXPORT_SYMBOL_GPL vmlinux 0x0700d639 perf_event_sysfs_show -EXPORT_SYMBOL_GPL vmlinux 0x0704853f devm_gpiod_get_index_optional -EXPORT_SYMBOL_GPL vmlinux 0x0705c7ba usb_hcd_link_urb_to_ep -EXPORT_SYMBOL_GPL vmlinux 0x070c9ed1 rio_unlock_device -EXPORT_SYMBOL_GPL vmlinux 0x070ca55e __reset_control_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0x0710ef49 rio_mport_class -EXPORT_SYMBOL_GPL vmlinux 0x07131c42 xhci_drop_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x06ec2f11 pinctrl_select_state +EXPORT_SYMBOL_GPL vmlinux 0x0720fc5a dax_finish_sync_fault EXPORT_SYMBOL_GPL vmlinux 0x07242d92 put_dax -EXPORT_SYMBOL_GPL vmlinux 0x074009f8 __bio_try_merge_page +EXPORT_SYMBOL_GPL vmlinux 0x0730585e fuse_dev_fiq_ops +EXPORT_SYMBOL_GPL vmlinux 0x0741d79b debugfs_create_size_t +EXPORT_SYMBOL_GPL vmlinux 0x07432b15 pci_epf_unbind EXPORT_SYMBOL_GPL vmlinux 0x07483e13 cn_del_callback -EXPORT_SYMBOL_GPL vmlinux 0x074b91d4 device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x074ecf03 sdio_retune_crc_disable EXPORT_SYMBOL_GPL vmlinux 0x074f98db synth_event_add_field -EXPORT_SYMBOL_GPL vmlinux 0x07506b3d i2c_adapter_depth -EXPORT_SYMBOL_GPL vmlinux 0x0761fbf7 dev_pm_opp_enable +EXPORT_SYMBOL_GPL vmlinux 0x0755c80e alloc_io_pgtable_ops +EXPORT_SYMBOL_GPL vmlinux 0x075f2de1 posix_clock_unregister EXPORT_SYMBOL_GPL vmlinux 0x076356e7 sfp_may_have_phy EXPORT_SYMBOL_GPL vmlinux 0x07646cee ata_tf_to_fis -EXPORT_SYMBOL_GPL vmlinux 0x076d3782 dm_bio_from_per_bio_data -EXPORT_SYMBOL_GPL vmlinux 0x0771d571 ata_std_postreset -EXPORT_SYMBOL_GPL vmlinux 0x07722144 extcon_register_notifier_all -EXPORT_SYMBOL_GPL vmlinux 0x07a21c22 exportfs_decode_fh -EXPORT_SYMBOL_GPL vmlinux 0x07a3738a trace_array_destroy -EXPORT_SYMBOL_GPL vmlinux 0x07a4845f transport_remove_device -EXPORT_SYMBOL_GPL vmlinux 0x07aea8f9 fuse_request_end +EXPORT_SYMBOL_GPL vmlinux 0x0791e9ae of_detach_node +EXPORT_SYMBOL_GPL vmlinux 0x079814d5 irq_domain_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x0798ac03 __traceiter_neigh_cleanup_and_release EXPORT_SYMBOL_GPL vmlinux 0x07b21f85 kdb_get_kbd_char EXPORT_SYMBOL_GPL vmlinux 0x07b52e38 rtnl_unregister -EXPORT_SYMBOL_GPL vmlinux 0x07bbf738 _proc_mkdir +EXPORT_SYMBOL_GPL vmlinux 0x07b796ae switchdev_bridge_port_offload EXPORT_SYMBOL_GPL vmlinux 0x07be6905 net_inc_egress_queue -EXPORT_SYMBOL_GPL vmlinux 0x07be92c6 tcp_bpf_sendmsg_redir -EXPORT_SYMBOL_GPL vmlinux 0x07c2f7f9 unregister_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x07c90aac page_endio -EXPORT_SYMBOL_GPL vmlinux 0x07d6f49f mtk_hw_get_value -EXPORT_SYMBOL_GPL vmlinux 0x07dc6078 dma_get_slave_caps -EXPORT_SYMBOL_GPL vmlinux 0x07dd0444 skb_mpls_push -EXPORT_SYMBOL_GPL vmlinux 0x07eb87ca irq_gc_mask_set_bit -EXPORT_SYMBOL_GPL vmlinux 0x0806c43d __audit_inode_child -EXPORT_SYMBOL_GPL vmlinux 0x080fc977 __efivar_entry_delete +EXPORT_SYMBOL_GPL vmlinux 0x07c4dd95 devm_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x07d7c2cd platform_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x07f47e82 __cpufreq_driver_target EXPORT_SYMBOL_GPL vmlinux 0x08135613 dax_write_cache -EXPORT_SYMBOL_GPL vmlinux 0x0813c3d0 devm_ioremap_uc -EXPORT_SYMBOL_GPL vmlinux 0x081f00fd usb_add_phy_dev -EXPORT_SYMBOL_GPL vmlinux 0x08232681 __serdev_device_driver_register -EXPORT_SYMBOL_GPL vmlinux 0x082a1cf2 rio_request_inb_mbox -EXPORT_SYMBOL_GPL vmlinux 0x083818bc od_register_powersave_bias_handler -EXPORT_SYMBOL_GPL vmlinux 0x083b3a40 hisi_uncore_pmu_identifier_attr_show -EXPORT_SYMBOL_GPL vmlinux 0x083dfa54 tcp_sendmsg_locked -EXPORT_SYMBOL_GPL vmlinux 0x084d285b fat_fill_super +EXPORT_SYMBOL_GPL vmlinux 0x0838324b usb_alloc_streams +EXPORT_SYMBOL_GPL vmlinux 0x083bd489 regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x084b5ba5 debugfs_write_file_bool +EXPORT_SYMBOL_GPL vmlinux 0x0856fade devm_rtc_nvmem_register EXPORT_SYMBOL_GPL vmlinux 0x08576175 unregister_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0x0866c6fe scsi_internal_device_block_nowait +EXPORT_SYMBOL_GPL vmlinux 0x08784112 nvdimm_bus_add_badrange +EXPORT_SYMBOL_GPL vmlinux 0x087cbe56 dev_pm_opp_find_level_exact EXPORT_SYMBOL_GPL vmlinux 0x087f5dc5 wm831x_of_match -EXPORT_SYMBOL_GPL vmlinux 0x08898f41 serial8250_get_port -EXPORT_SYMBOL_GPL vmlinux 0x089685fa posix_clock_register -EXPORT_SYMBOL_GPL vmlinux 0x08a4b656 serial8250_rpm_put_tx -EXPORT_SYMBOL_GPL vmlinux 0x08adae0e blk_rq_prep_clone -EXPORT_SYMBOL_GPL vmlinux 0x08c3a866 __inet_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x08970c6e to_of_pinfo +EXPORT_SYMBOL_GPL vmlinux 0x089d3bfd devm_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x08b348e0 of_genpd_add_subdomain +EXPORT_SYMBOL_GPL vmlinux 0x08b95d58 __netdev_watchdog_up EXPORT_SYMBOL_GPL vmlinux 0x08c78cf7 offline_and_remove_memory -EXPORT_SYMBOL_GPL vmlinux 0x08ccf82f ip_route_output_flow -EXPORT_SYMBOL_GPL vmlinux 0x08cf6025 spi_sync -EXPORT_SYMBOL_GPL vmlinux 0x08cfd917 skb_clone_tx_timestamp -EXPORT_SYMBOL_GPL vmlinux 0x08e11b47 rockchip_clk_of_add_provider -EXPORT_SYMBOL_GPL vmlinux 0x08e568ea icc_provider_del -EXPORT_SYMBOL_GPL vmlinux 0x08ef7f66 acpi_dma_request_slave_chan_by_name +EXPORT_SYMBOL_GPL vmlinux 0x08d85175 irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x08e234af device_match_any +EXPORT_SYMBOL_GPL vmlinux 0x08fec317 dma_wait_for_async_tx EXPORT_SYMBOL_GPL vmlinux 0x0907d14d blocking_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0x0907ef97 devlink_unregister +EXPORT_SYMBOL_GPL vmlinux 0x091927b3 regmap_get_reg_stride EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x0920f9ef gen10g_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0x092b09f5 sk_detach_filter +EXPORT_SYMBOL_GPL vmlinux 0x092ec45f dax_layout_busy_page EXPORT_SYMBOL_GPL vmlinux 0x09337cd0 __wake_up_locked_key EXPORT_SYMBOL_GPL vmlinux 0x093786cf synth_event_add_field_str -EXPORT_SYMBOL_GPL vmlinux 0x0947f03b bpf_trace_run5 -EXPORT_SYMBOL_GPL vmlinux 0x0954903d tcp_twsk_destructor -EXPORT_SYMBOL_GPL vmlinux 0x096501c4 virtqueue_is_broken -EXPORT_SYMBOL_GPL vmlinux 0x096c70fc rio_mport_read_config_32 -EXPORT_SYMBOL_GPL vmlinux 0x096e0259 of_get_named_gpio_flags -EXPORT_SYMBOL_GPL vmlinux 0x0972c880 kern_mount -EXPORT_SYMBOL_GPL vmlinux 0x099212c2 thermal_cooling_device_register -EXPORT_SYMBOL_GPL vmlinux 0x09924edc lwtunnel_input -EXPORT_SYMBOL_GPL vmlinux 0x099c0c2b cdrom_multisession +EXPORT_SYMBOL_GPL vmlinux 0x0939f3da screen_glyph_unicode +EXPORT_SYMBOL_GPL vmlinux 0x093f2a90 irq_domain_create_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0x095b5d9a __regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0x096e1f3c rio_add_net +EXPORT_SYMBOL_GPL vmlinux 0x097a2473 devlink_dpipe_entry_ctx_prepare +EXPORT_SYMBOL_GPL vmlinux 0x097b93ae ip_valid_fib_dump_req +EXPORT_SYMBOL_GPL vmlinux 0x098139c2 acpi_pci_find_root +EXPORT_SYMBOL_GPL vmlinux 0x098f7e12 __traceiter_sched_update_nr_running_tp +EXPORT_SYMBOL_GPL vmlinux 0x09934c9a fuse_file_poll +EXPORT_SYMBOL_GPL vmlinux 0x09af7047 sdio_claim_irq EXPORT_SYMBOL_GPL vmlinux 0x09b53e14 interval_tree_remove -EXPORT_SYMBOL_GPL vmlinux 0x09b642b0 mtk_is_virt_gpio -EXPORT_SYMBOL_GPL vmlinux 0x09cb6e8b hisi_uncore_pmu_get_event_idx +EXPORT_SYMBOL_GPL vmlinux 0x09b9c332 mbox_flush +EXPORT_SYMBOL_GPL vmlinux 0x09c1adf3 device_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0x09c4c2fb regmap_can_raw_write +EXPORT_SYMBOL_GPL vmlinux 0x09c6fd19 tty_find_polling_driver +EXPORT_SYMBOL_GPL vmlinux 0x09d091e3 dev_pm_get_subsys_data EXPORT_SYMBOL_GPL vmlinux 0x09d63265 list_lru_count_node -EXPORT_SYMBOL_GPL vmlinux 0x09e410a7 __spi_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x09e61935 pci_iomap_wc -EXPORT_SYMBOL_GPL vmlinux 0x09e6293b nvmem_device_find -EXPORT_SYMBOL_GPL vmlinux 0x09f32062 param_ops_bool_enable_only -EXPORT_SYMBOL_GPL vmlinux 0x09f6ade7 ehci_suspend -EXPORT_SYMBOL_GPL vmlinux 0x09f6b9a9 iomap_invalidatepage -EXPORT_SYMBOL_GPL vmlinux 0x0a001ce3 fb_deferred_io_fsync -EXPORT_SYMBOL_GPL vmlinux 0x0a0ca339 pinconf_generic_dt_node_to_map -EXPORT_SYMBOL_GPL vmlinux 0x0a0cd782 gpiod_to_chip -EXPORT_SYMBOL_GPL vmlinux 0x0a18f175 fixed_phy_register_with_gpiod -EXPORT_SYMBOL_GPL vmlinux 0x0a1cdef9 regulator_get_error_flags -EXPORT_SYMBOL_GPL vmlinux 0x0a26e055 regulator_list_voltage_linear_range -EXPORT_SYMBOL_GPL vmlinux 0x0a29a039 device_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0x0a3e1ff0 edac_device_free_ctl_info -EXPORT_SYMBOL_GPL vmlinux 0x0a410341 ip6_route_output_flags_noref +EXPORT_SYMBOL_GPL vmlinux 0x0a075f60 xenbus_probe_devices +EXPORT_SYMBOL_GPL vmlinux 0x0a23cfd7 perf_get_aux +EXPORT_SYMBOL_GPL vmlinux 0x0a32d29d virtqueue_get_vring +EXPORT_SYMBOL_GPL vmlinux 0x0a3310c0 crypto_spawn_tfm EXPORT_SYMBOL_GPL vmlinux 0x0a463293 __tracepoint_error_report_end -EXPORT_SYMBOL_GPL vmlinux 0x0a46636b dev_pm_qos_hide_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0x0a505423 icc_set_bw -EXPORT_SYMBOL_GPL vmlinux 0x0a5240c2 devm_of_icc_get EXPORT_SYMBOL_GPL vmlinux 0x0a52c511 hv_query_ext_cap -EXPORT_SYMBOL_GPL vmlinux 0x0a53b244 proc_create_net_data_write -EXPORT_SYMBOL_GPL vmlinux 0x0a573b8e rt_mutex_lock +EXPORT_SYMBOL_GPL vmlinux 0x0a5e63af sdio_writew +EXPORT_SYMBOL_GPL vmlinux 0x0a61edef vga_default_device +EXPORT_SYMBOL_GPL vmlinux 0x0a62d568 kill_dev_dax EXPORT_SYMBOL_GPL vmlinux 0x0a6c4041 cn_netlink_send -EXPORT_SYMBOL_GPL vmlinux 0x0a728cc5 regulator_set_suspend_voltage -EXPORT_SYMBOL_GPL vmlinux 0x0a7ab51f blk_queue_rq_timeout -EXPORT_SYMBOL_GPL vmlinux 0x0a7ceaed sdio_readw EXPORT_SYMBOL_GPL vmlinux 0x0a7ceb30 __tracepoint_non_standard_event -EXPORT_SYMBOL_GPL vmlinux 0x0a86c97c pci_disable_ats -EXPORT_SYMBOL_GPL vmlinux 0x0a8fa381 __platform_create_bundle -EXPORT_SYMBOL_GPL vmlinux 0x0a9b9ff4 ata_sff_dma_pause -EXPORT_SYMBOL_GPL vmlinux 0x0aa6f90e component_add -EXPORT_SYMBOL_GPL vmlinux 0x0ab7e4df acpi_device_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0x0a887435 sk_msg_clone +EXPORT_SYMBOL_GPL vmlinux 0x0a89dbc5 nf_ip_route +EXPORT_SYMBOL_GPL vmlinux 0x0a956998 ata_scsi_slave_config +EXPORT_SYMBOL_GPL vmlinux 0x0a956b4f clk_bulk_get_optional EXPORT_SYMBOL_GPL vmlinux 0x0abc6be6 k3_ringacc_ring_is_full EXPORT_SYMBOL_GPL vmlinux 0x0abcbf05 pkcs7_parse_message -EXPORT_SYMBOL_GPL vmlinux 0x0ac13656 irq_domain_create_simple -EXPORT_SYMBOL_GPL vmlinux 0x0ac1c3ef of_reserved_mem_device_release -EXPORT_SYMBOL_GPL vmlinux 0x0acacd7b fsnotify_alloc_group -EXPORT_SYMBOL_GPL vmlinux 0x0ae5bdaa blkdev_nr_zones -EXPORT_SYMBOL_GPL vmlinux 0x0af36f8e unix_peer_get +EXPORT_SYMBOL_GPL vmlinux 0x0ac02689 device_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0x0acd5529 sfp_bus_find_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x0addd26c inet_csk_route_req +EXPORT_SYMBOL_GPL vmlinux 0x0ae0e36b fs_dax_get_by_bdev +EXPORT_SYMBOL_GPL vmlinux 0x0ae8fdfe devlink_sb_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0aee2308 crypto_drop_spawn EXPORT_SYMBOL_GPL vmlinux 0x0af40724 iommu_alloc_resv_region +EXPORT_SYMBOL_GPL vmlinux 0x0b03af71 bpf_prog_sub EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct -EXPORT_SYMBOL_GPL vmlinux 0x0b0890bd noop_invalidatepage -EXPORT_SYMBOL_GPL vmlinux 0x0b0a48e4 crypto_shash_finup -EXPORT_SYMBOL_GPL vmlinux 0x0b0d8e26 iommu_detach_group +EXPORT_SYMBOL_GPL vmlinux 0x0b087456 register_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x0b1bdfa1 inet_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x0b295fdf balloon_page_enqueue +EXPORT_SYMBOL_GPL vmlinux 0x0b2bb24d ata_pci_sff_init_one EXPORT_SYMBOL_GPL vmlinux 0x0b2db2d5 remove_resource -EXPORT_SYMBOL_GPL vmlinux 0x0b2f86c8 skb_mpls_dec_ttl EXPORT_SYMBOL_GPL vmlinux 0x0b3a3ed7 zynqmp_pm_fpga_get_status -EXPORT_SYMBOL_GPL vmlinux 0x0b3f614b amba_device_put -EXPORT_SYMBOL_GPL vmlinux 0x0b453310 regmap_add_irq_chip_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x0b4967c6 handle_fasteoi_ack_irq +EXPORT_SYMBOL_GPL vmlinux 0x0b407b31 kvm_put_kvm_no_destroy +EXPORT_SYMBOL_GPL vmlinux 0x0b471aea crypto_alloc_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x0b4aaa33 shash_ahash_finup EXPORT_SYMBOL_GPL vmlinux 0x0b52e502 apei_resources_add -EXPORT_SYMBOL_GPL vmlinux 0x0b5b33c6 iommu_enable_nesting +EXPORT_SYMBOL_GPL vmlinux 0x0b559904 __device_reset +EXPORT_SYMBOL_GPL vmlinux 0x0b5e7f79 of_address_to_resource EXPORT_SYMBOL_GPL vmlinux 0x0b690f04 k3_udma_glue_tx_get_txcq_id -EXPORT_SYMBOL_GPL vmlinux 0x0b740ef0 pci_assign_unassigned_bus_resources -EXPORT_SYMBOL_GPL vmlinux 0x0b89eb0d led_set_brightness_sync -EXPORT_SYMBOL_GPL vmlinux 0x0b8d3e7d crypto_aead_setkey -EXPORT_SYMBOL_GPL vmlinux 0x0b9525ab xhci_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x0b9a09ae __pneigh_lookup +EXPORT_SYMBOL_GPL vmlinux 0x0b6a2356 file_ra_state_init +EXPORT_SYMBOL_GPL vmlinux 0x0b75e9b5 i2c_dw_prepare_clk +EXPORT_SYMBOL_GPL vmlinux 0x0b9ad474 regmap_check_range_table +EXPORT_SYMBOL_GPL vmlinux 0x0ba0df65 register_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x0ba46859 __clk_mux_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0x0ba85b9a sdio_readb +EXPORT_SYMBOL_GPL vmlinux 0x0baba660 regulator_set_bypass_regmap EXPORT_SYMBOL_GPL vmlinux 0x0bb028d4 hisi_clk_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x0bb1aeb2 security_path_symlink EXPORT_SYMBOL_GPL vmlinux 0x0bbdc9b2 remove_memory -EXPORT_SYMBOL_GPL vmlinux 0x0bd19c73 iommu_fwspec_init -EXPORT_SYMBOL_GPL vmlinux 0x0bd79475 extcon_get_property_capability -EXPORT_SYMBOL_GPL vmlinux 0x0be6d6f8 irq_alloc_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x0bee0288 led_put +EXPORT_SYMBOL_GPL vmlinux 0x0bcecc5a devm_extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0bd98287 cpuidle_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0bdfd3c6 badblocks_exit +EXPORT_SYMBOL_GPL vmlinux 0x0becbdba switchdev_handle_port_attr_set EXPORT_SYMBOL_GPL vmlinux 0x0bf32478 __SCK__tp_func_pelt_rt_tp -EXPORT_SYMBOL_GPL vmlinux 0x0bf8c5b4 ip6_flush_pending_frames EXPORT_SYMBOL_GPL vmlinux 0x0bfa3a19 rcu_idle_exit -EXPORT_SYMBOL_GPL vmlinux 0x0c021181 dm_post_suspending -EXPORT_SYMBOL_GPL vmlinux 0x0c0cb807 ata_ehi_clear_desc -EXPORT_SYMBOL_GPL vmlinux 0x0c14a948 gpiod_set_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x0c1bfa21 nfs_ssc_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0c158d13 trace_event_buffer_commit +EXPORT_SYMBOL_GPL vmlinux 0x0c226084 regulator_map_voltage_iterate +EXPORT_SYMBOL_GPL vmlinux 0x0c262493 input_ff_destroy EXPORT_SYMBOL_GPL vmlinux 0x0c2c5802 work_busy EXPORT_SYMBOL_GPL vmlinux 0x0c32ff8a edac_pci_alloc_index +EXPORT_SYMBOL_GPL vmlinux 0x0c3b2fc0 ata_sff_exec_command EXPORT_SYMBOL_GPL vmlinux 0x0c3e6241 k3_udma_glue_disable_rx_chn -EXPORT_SYMBOL_GPL vmlinux 0x0c3eccfe fsverity_prepare_setattr -EXPORT_SYMBOL_GPL vmlinux 0x0c466bc8 __trace_note_message -EXPORT_SYMBOL_GPL vmlinux 0x0c52e97e clk_hw_register_composite -EXPORT_SYMBOL_GPL vmlinux 0x0c58faf9 gnttab_dma_alloc_pages -EXPORT_SYMBOL_GPL vmlinux 0x0c5c76b9 sched_set_fifo -EXPORT_SYMBOL_GPL vmlinux 0x0c712314 dax_iomap_rw -EXPORT_SYMBOL_GPL vmlinux 0x0c7752f7 genpd_dev_pm_attach_by_id -EXPORT_SYMBOL_GPL vmlinux 0x0c781bc6 pci_find_host_bridge -EXPORT_SYMBOL_GPL vmlinux 0x0c7fafc6 ping_getfrag +EXPORT_SYMBOL_GPL vmlinux 0x0c5f73d4 fb_bl_default_curve +EXPORT_SYMBOL_GPL vmlinux 0x0c667991 usb_alloc_coherent +EXPORT_SYMBOL_GPL vmlinux 0x0c6b3f95 meson_eeclkc_probe +EXPORT_SYMBOL_GPL vmlinux 0x0c763904 tcp_unregister_ulp +EXPORT_SYMBOL_GPL vmlinux 0x0c7a74e8 ehci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x0c7ceb12 iommu_aux_detach_device EXPORT_SYMBOL_GPL vmlinux 0x0c88c1c3 pci_vpd_find_id_string -EXPORT_SYMBOL_GPL vmlinux 0x0c88da68 pinctrl_add_gpio_range -EXPORT_SYMBOL_GPL vmlinux 0x0c8dfaa1 __hvc_resize -EXPORT_SYMBOL_GPL vmlinux 0x0c8ec6d9 pci_epc_set_msi -EXPORT_SYMBOL_GPL vmlinux 0x0c913f52 acpi_get_and_request_gpiod -EXPORT_SYMBOL_GPL vmlinux 0x0ca8fbb0 mtk_pinconf_adv_drive_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x0c91c663 dev_attr_ncq_prio_supported +EXPORT_SYMBOL_GPL vmlinux 0x0c94bf7d __fsnotify_inode_delete +EXPORT_SYMBOL_GPL vmlinux 0x0c9cd378 devres_open_group +EXPORT_SYMBOL_GPL vmlinux 0x0caa1f24 sysfs_create_link_nowarn +EXPORT_SYMBOL_GPL vmlinux 0x0cbd6565 xdp_do_redirect EXPORT_SYMBOL_GPL vmlinux 0x0cbe3ee2 software_node_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0cc5e5cb spi_controller_dma_unmap_mem_op_data -EXPORT_SYMBOL_GPL vmlinux 0x0cc731f7 __blk_mq_debugfs_rq_show EXPORT_SYMBOL_GPL vmlinux 0x0ccf5275 zynqmp_pm_pinctrl_get_config -EXPORT_SYMBOL_GPL vmlinux 0x0cd0d875 ima_inode_hash -EXPORT_SYMBOL_GPL vmlinux 0x0cd846d0 trace_event_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x0cd44966 component_add EXPORT_SYMBOL_GPL vmlinux 0x0ce3dd73 bman_is_probed -EXPORT_SYMBOL_GPL vmlinux 0x0d0454ad pinctrl_pm_select_sleep_state -EXPORT_SYMBOL_GPL vmlinux 0x0d0cfdf0 xfrm_audit_policy_delete -EXPORT_SYMBOL_GPL vmlinux 0x0d0d3dd8 __clk_get_hw -EXPORT_SYMBOL_GPL vmlinux 0x0d1c83a0 trace_array_init_printk -EXPORT_SYMBOL_GPL vmlinux 0x0d20b0f3 phy_resolve_aneg_pause -EXPORT_SYMBOL_GPL vmlinux 0x0d244a17 vfs_fallocate -EXPORT_SYMBOL_GPL vmlinux 0x0d296c27 __clk_mux_determine_rate -EXPORT_SYMBOL_GPL vmlinux 0x0d3604d2 hisi_reset_init +EXPORT_SYMBOL_GPL vmlinux 0x0ce40652 devm_blk_ksm_init +EXPORT_SYMBOL_GPL vmlinux 0x0cf1ac57 dpcon_open +EXPORT_SYMBOL_GPL vmlinux 0x0cf23c74 usb_pipe_type_check +EXPORT_SYMBOL_GPL vmlinux 0x0d169e0b pinctrl_find_and_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x0d1b6d80 devm_gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0x0d341141 ti_sci_inta_msi_domain_alloc_irqs EXPORT_SYMBOL_GPL vmlinux 0x0d459213 work_on_cpu_safe -EXPORT_SYMBOL_GPL vmlinux 0x0d47fafe cpci_hp_unregister_bus EXPORT_SYMBOL_GPL vmlinux 0x0d4961de nf_log_buf_open +EXPORT_SYMBOL_GPL vmlinux 0x0d4c6d8e device_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x0d4e1580 netdev_rx_handler_register EXPORT_SYMBOL_GPL vmlinux 0x0d4e3f8c iopf_queue_alloc -EXPORT_SYMBOL_GPL vmlinux 0x0d510ddf tps80031_ext_power_req_config -EXPORT_SYMBOL_GPL vmlinux 0x0d533f0a ethnl_cable_test_amplitude EXPORT_SYMBOL_GPL vmlinux 0x0d5cecc6 ima_measure_critical_data -EXPORT_SYMBOL_GPL vmlinux 0x0d67a58b msi_desc_to_pci_sysdata -EXPORT_SYMBOL_GPL vmlinux 0x0d903d3c dev_queue_xmit_nit -EXPORT_SYMBOL_GPL vmlinux 0x0d925b57 pci_epf_create -EXPORT_SYMBOL_GPL vmlinux 0x0d92d189 gen_pool_get -EXPORT_SYMBOL_GPL vmlinux 0x0d9a039f bpf_prog_sub -EXPORT_SYMBOL_GPL vmlinux 0x0db14cba get_governor_parent_kobj -EXPORT_SYMBOL_GPL vmlinux 0x0db583a6 pci_intx -EXPORT_SYMBOL_GPL vmlinux 0x0dcb2a59 sdio_set_block_size -EXPORT_SYMBOL_GPL vmlinux 0x0dd45911 tcp_cong_avoid_ai -EXPORT_SYMBOL_GPL vmlinux 0x0dd76e06 balloon_page_alloc +EXPORT_SYMBOL_GPL vmlinux 0x0d5d52ea dev_pm_qos_hide_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0x0d64ab58 dma_resv_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x0d7a4b5b xen_xenbus_fops +EXPORT_SYMBOL_GPL vmlinux 0x0d7fbaa7 hwmon_device_register_with_info +EXPORT_SYMBOL_GPL vmlinux 0x0d88dcc7 __synth_event_gen_cmd_start +EXPORT_SYMBOL_GPL vmlinux 0x0d993b70 nvdimm_clear_poison +EXPORT_SYMBOL_GPL vmlinux 0x0dc9e072 ahci_init_controller EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order -EXPORT_SYMBOL_GPL vmlinux 0x0df15043 pinctrl_generic_get_group -EXPORT_SYMBOL_GPL vmlinux 0x0df1c7f7 unmap_mapping_pages -EXPORT_SYMBOL_GPL vmlinux 0x0df29342 devm_regulator_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x0dfa8a27 vchan_find_desc +EXPORT_SYMBOL_GPL vmlinux 0x0ddbfcda adp5520_read +EXPORT_SYMBOL_GPL vmlinux 0x0de2d96c skb_to_sgvec_nomark +EXPORT_SYMBOL_GPL vmlinux 0x0df6923e divider_recalc_rate +EXPORT_SYMBOL_GPL vmlinux 0x0df96561 tcp_done EXPORT_SYMBOL_GPL vmlinux 0x0e007edf xen_evtchn_nr_channels -EXPORT_SYMBOL_GPL vmlinux 0x0e0db801 crypto_stats_compress -EXPORT_SYMBOL_GPL vmlinux 0x0e0e3123 cpufreq_dbs_governor_limits +EXPORT_SYMBOL_GPL vmlinux 0x0e01df63 __traceiter_xdp_exception +EXPORT_SYMBOL_GPL vmlinux 0x0e063ab5 spi_mem_get_name +EXPORT_SYMBOL_GPL vmlinux 0x0e0afc89 udp_init_sock EXPORT_SYMBOL_GPL vmlinux 0x0e1194d5 hrtimer_try_to_cancel EXPORT_SYMBOL_GPL vmlinux 0x0e13cb4d apei_resources_release -EXPORT_SYMBOL_GPL vmlinux 0x0e1f30ff ata_port_pbar_desc -EXPORT_SYMBOL_GPL vmlinux 0x0e2de48c ohci_init_driver -EXPORT_SYMBOL_GPL vmlinux 0x0e43cc16 ping_get_port -EXPORT_SYMBOL_GPL vmlinux 0x0e44702e fb_deferred_io_init -EXPORT_SYMBOL_GPL vmlinux 0x0e48ec0c powercap_register_zone -EXPORT_SYMBOL_GPL vmlinux 0x0e5400fc __get_task_comm -EXPORT_SYMBOL_GPL vmlinux 0x0e5a00f0 devm_gpiod_get_index -EXPORT_SYMBOL_GPL vmlinux 0x0e5dd904 inet_csk_clone_lock -EXPORT_SYMBOL_GPL vmlinux 0x0e618a77 fwnode_get_nth_parent -EXPORT_SYMBOL_GPL vmlinux 0x0e68d343 of_alias_get_id +EXPORT_SYMBOL_GPL vmlinux 0x0e16e7ff sk_msg_is_readable +EXPORT_SYMBOL_GPL vmlinux 0x0e344eed tcp_bpf_update_proto +EXPORT_SYMBOL_GPL vmlinux 0x0e385c6b sdio_retune_release +EXPORT_SYMBOL_GPL vmlinux 0x0e6775a5 ahci_platform_suspend EXPORT_SYMBOL_GPL vmlinux 0x0e6b79af static_key_disable_cpuslocked -EXPORT_SYMBOL_GPL vmlinux 0x0e9ab0d6 ahci_platform_disable_regulators +EXPORT_SYMBOL_GPL vmlinux 0x0e763dfe clockevents_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0x0e7acff7 rtc_alarm_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0x0e84eab5 mbox_send_message +EXPORT_SYMBOL_GPL vmlinux 0x0e9fd5b9 bpf_trace_run11 EXPORT_SYMBOL_GPL vmlinux 0x0ea5cbce xen_irq_lateeoi -EXPORT_SYMBOL_GPL vmlinux 0x0eb23969 mtk_pctrl_show_one_pin -EXPORT_SYMBOL_GPL vmlinux 0x0ebcd3be edac_mc_find_csrow_by_page +EXPORT_SYMBOL_GPL vmlinux 0x0ea6c081 adp5520_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x0eace73c __rio_local_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x0eb48b55 of_irq_parse_raw +EXPORT_SYMBOL_GPL vmlinux 0x0ebb49aa efivar_entry_set EXPORT_SYMBOL_GPL vmlinux 0x0ec096b0 hv_read_reference_counter -EXPORT_SYMBOL_GPL vmlinux 0x0ed855af register_wide_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x0edf211e clk_hw_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0efe4ae5 udp_cmsg_send -EXPORT_SYMBOL_GPL vmlinux 0x0f0514f0 usb_add_phy -EXPORT_SYMBOL_GPL vmlinux 0x0f0e59bf dev_pm_opp_get_max_volt_latency -EXPORT_SYMBOL_GPL vmlinux 0x0f12d43d usb_of_get_device_node +EXPORT_SYMBOL_GPL vmlinux 0x0ece99c4 dev_pm_qos_expose_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x0ee1cb06 usb_hcd_resume_root_hub +EXPORT_SYMBOL_GPL vmlinux 0x0ee418dd wait_for_stable_page +EXPORT_SYMBOL_GPL vmlinux 0x0eeeb720 __pci_epc_create +EXPORT_SYMBOL_GPL vmlinux 0x0ef30e68 wm8350_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x0efbe082 devm_hwspin_lock_free +EXPORT_SYMBOL_GPL vmlinux 0x0f08072e pm_runtime_get_if_active +EXPORT_SYMBOL_GPL vmlinux 0x0f084375 fscrypt_prepare_new_inode EXPORT_SYMBOL_GPL vmlinux 0x0f180070 ring_buffer_free_read_page -EXPORT_SYMBOL_GPL vmlinux 0x0f28f6c9 __root_device_register -EXPORT_SYMBOL_GPL vmlinux 0x0f2a2d7b simple_attr_release -EXPORT_SYMBOL_GPL vmlinux 0x0f2a9b5a pinctrl_enable -EXPORT_SYMBOL_GPL vmlinux 0x0f38631c acpi_dev_remove_driver_gpios -EXPORT_SYMBOL_GPL vmlinux 0x0f3bb472 ata_host_init -EXPORT_SYMBOL_GPL vmlinux 0x0f3bc057 tracing_cond_snapshot_data -EXPORT_SYMBOL_GPL vmlinux 0x0f42473b gpiod_get_direction -EXPORT_SYMBOL_GPL vmlinux 0x0f4d46b2 mmc_send_status -EXPORT_SYMBOL_GPL vmlinux 0x0f53943c devm_phy_package_join -EXPORT_SYMBOL_GPL vmlinux 0x0f66d30d usb_reset_endpoint -EXPORT_SYMBOL_GPL vmlinux 0x0f70ff04 da9052_request_irq +EXPORT_SYMBOL_GPL vmlinux 0x0f54e8d2 of_mm_gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0x0f67d20d devm_regulator_unregister_notifier EXPORT_SYMBOL_GPL vmlinux 0x0f72ada1 acpi_dev_resource_io -EXPORT_SYMBOL_GPL vmlinux 0x0f757d1d serial8250_rpm_get +EXPORT_SYMBOL_GPL vmlinux 0x0f7314d5 handle_level_irq EXPORT_SYMBOL_GPL vmlinux 0x0f7ca236 dmi_memdev_name +EXPORT_SYMBOL_GPL vmlinux 0x0f8096b0 ohci_resume +EXPORT_SYMBOL_GPL vmlinux 0x0f820282 of_reserved_mem_device_init_by_name +EXPORT_SYMBOL_GPL vmlinux 0x0f82f6af kvm_gfn_to_hva_cache_init EXPORT_SYMBOL_GPL vmlinux 0x0f8bce10 __traceiter_sched_overutilized_tp -EXPORT_SYMBOL_GPL vmlinux 0x0f91505f auxiliary_find_device -EXPORT_SYMBOL_GPL vmlinux 0x0f94652e amba_apb_device_add -EXPORT_SYMBOL_GPL vmlinux 0x0f9da88c handle_fasteoi_nmi -EXPORT_SYMBOL_GPL vmlinux 0x0fa2e780 regulator_is_enabled_regmap -EXPORT_SYMBOL_GPL vmlinux 0x0fb7b510 rio_enable_rx_tx_port +EXPORT_SYMBOL_GPL vmlinux 0x0f97146e platform_device_del +EXPORT_SYMBOL_GPL vmlinux 0x0fa7d73b kvm_map_gfn +EXPORT_SYMBOL_GPL vmlinux 0x0fb23aea crypto_register_ahash +EXPORT_SYMBOL_GPL vmlinux 0x0fbaa50d bsg_setup_queue EXPORT_SYMBOL_GPL vmlinux 0x0fbb7344 memremap_compat_align -EXPORT_SYMBOL_GPL vmlinux 0x0fc32774 free_fib_info -EXPORT_SYMBOL_GPL vmlinux 0x0fcb71cc thermal_zone_device_disable -EXPORT_SYMBOL_GPL vmlinux 0x0fd382ad wm8350_reg_unlock -EXPORT_SYMBOL_GPL vmlinux 0x0fd38ca0 spi_busnum_to_master +EXPORT_SYMBOL_GPL vmlinux 0x0fbfbea5 fscrypt_get_symlink +EXPORT_SYMBOL_GPL vmlinux 0x0fcedd49 udp_cmsg_send EXPORT_SYMBOL_GPL vmlinux 0x0fd4610e kmem_dump_obj -EXPORT_SYMBOL_GPL vmlinux 0x0fd6563d pinctrl_select_state -EXPORT_SYMBOL_GPL vmlinux 0x0fda34f5 perf_event_pause -EXPORT_SYMBOL_GPL vmlinux 0x0fdffd0f ahci_sdev_attrs -EXPORT_SYMBOL_GPL vmlinux 0x0ff340a1 __irq_resolve_mapping -EXPORT_SYMBOL_GPL vmlinux 0x0ffd5f53 pci_acpi_set_companion_lookup_hook -EXPORT_SYMBOL_GPL vmlinux 0x1012db1e regmap_fields_read +EXPORT_SYMBOL_GPL vmlinux 0x0fe43ce5 __netif_set_xps_queue +EXPORT_SYMBOL_GPL vmlinux 0x0ff07374 regulator_is_enabled_regmap +EXPORT_SYMBOL_GPL vmlinux 0x10046c3b skcipher_walk_complete +EXPORT_SYMBOL_GPL vmlinux 0x1009c6da devm_rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0x100cf7a4 regmap_multi_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x1013198e __traceiter_io_page_fault EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on -EXPORT_SYMBOL_GPL vmlinux 0x1018958e proc_create_net_single -EXPORT_SYMBOL_GPL vmlinux 0x1022b8b2 nd_cmd_out_size -EXPORT_SYMBOL_GPL vmlinux 0x10339c5c irq_domain_free_irqs_common -EXPORT_SYMBOL_GPL vmlinux 0x1037e9f8 rio_release_outb_dbell -EXPORT_SYMBOL_GPL vmlinux 0x104025b9 gpiochip_generic_config -EXPORT_SYMBOL_GPL vmlinux 0x10441c8f dev_pm_opp_put_supported_hw -EXPORT_SYMBOL_GPL vmlinux 0x10444817 percpu_up_write -EXPORT_SYMBOL_GPL vmlinux 0x107c79b7 disk_uevent +EXPORT_SYMBOL_GPL vmlinux 0x1016124b debugfs_create_bool +EXPORT_SYMBOL_GPL vmlinux 0x10170442 crypto_alloc_acomp_node +EXPORT_SYMBOL_GPL vmlinux 0x1022bc4f pm_generic_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x10326571 devm_device_add_groups +EXPORT_SYMBOL_GPL vmlinux 0x10377afd iommu_attach_group +EXPORT_SYMBOL_GPL vmlinux 0x103cae94 cpu_subsys +EXPORT_SYMBOL_GPL vmlinux 0x104c1dae desc_to_gpio +EXPORT_SYMBOL_GPL vmlinux 0x1058110c ata_acpi_stm +EXPORT_SYMBOL_GPL vmlinux 0x1074e234 switchdev_handle_fdb_del_to_device EXPORT_SYMBOL_GPL vmlinux 0x108a0acd bstr_printf -EXPORT_SYMBOL_GPL vmlinux 0x10948b7e usb_urb_ep_type_check -EXPORT_SYMBOL_GPL vmlinux 0x109cf0db devm_clk_hw_register_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0x109d369c devlink_resource_occ_get_register -EXPORT_SYMBOL_GPL vmlinux 0x109d5517 trace_event_buffer_reserve -EXPORT_SYMBOL_GPL vmlinux 0x10ab993f ahci_start_fis_rx -EXPORT_SYMBOL_GPL vmlinux 0x10c5f615 input_ff_upload +EXPORT_SYMBOL_GPL vmlinux 0x10a13401 rtnl_put_cacheinfo +EXPORT_SYMBOL_GPL vmlinux 0x10b024e6 nexthop_select_path +EXPORT_SYMBOL_GPL vmlinux 0x10b65bbc skcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x10b6c84d __traceiter_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0x10d1bb07 inet6_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0x10ea9823 crypto_hash_walk_done EXPORT_SYMBOL_GPL vmlinux 0x10ecc52c usb_amd_quirk_pll_enable +EXPORT_SYMBOL_GPL vmlinux 0x10f31a1d regulator_set_ramp_delay_regmap EXPORT_SYMBOL_GPL vmlinux 0x110106c1 cper_severity_to_aer -EXPORT_SYMBOL_GPL vmlinux 0x1104b533 regmap_parse_val -EXPORT_SYMBOL_GPL vmlinux 0x11114104 regulator_put -EXPORT_SYMBOL_GPL vmlinux 0x111197d5 power_supply_am_i_supplied -EXPORT_SYMBOL_GPL vmlinux 0x111a6736 inet_send_prepare -EXPORT_SYMBOL_GPL vmlinux 0x112ae3dc vp_modern_get_num_queues -EXPORT_SYMBOL_GPL vmlinux 0x1134e43f relay_close -EXPORT_SYMBOL_GPL vmlinux 0x1135b20f spi_take_timestamp_pre -EXPORT_SYMBOL_GPL vmlinux 0x1139bf90 da9055_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0x113d5793 pci_epf_remove_vepf -EXPORT_SYMBOL_GPL vmlinux 0x11466f23 clk_divider_ops -EXPORT_SYMBOL_GPL vmlinux 0x114791b7 palmas_ext_control_req_config -EXPORT_SYMBOL_GPL vmlinux 0x1154cdd3 bpf_trace_run4 -EXPORT_SYMBOL_GPL vmlinux 0x1159529d __cpufreq_driver_target -EXPORT_SYMBOL_GPL vmlinux 0x115effad fwnode_usb_role_switch_get -EXPORT_SYMBOL_GPL vmlinux 0x116254f2 fib_nl_delrule -EXPORT_SYMBOL_GPL vmlinux 0x117e14af ahci_platform_ops -EXPORT_SYMBOL_GPL vmlinux 0x1180251e to_nd_blk_region -EXPORT_SYMBOL_GPL vmlinux 0x118ca1d4 devm_acpi_dma_controller_free -EXPORT_SYMBOL_GPL vmlinux 0x11934cdf debugfs_create_bool +EXPORT_SYMBOL_GPL vmlinux 0x11084c09 pci_find_next_capability +EXPORT_SYMBOL_GPL vmlinux 0x1122e4a6 devm_i2c_new_dummy_device +EXPORT_SYMBOL_GPL vmlinux 0x113632b4 tps6586x_get_version +EXPORT_SYMBOL_GPL vmlinux 0x113c7cad debugfs_create_x64 +EXPORT_SYMBOL_GPL vmlinux 0x11525bfa inet_csk_listen_stop +EXPORT_SYMBOL_GPL vmlinux 0x1154f04f proc_create_net_single +EXPORT_SYMBOL_GPL vmlinux 0x116d3ffd devm_pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x116ef63a copy_user_highpage +EXPORT_SYMBOL_GPL vmlinux 0x117bf6e8 mtk_pinconf_bias_get_combo +EXPORT_SYMBOL_GPL vmlinux 0x1193b6d4 iommu_unmap +EXPORT_SYMBOL_GPL vmlinux 0x1195ea82 __devm_regmap_init +EXPORT_SYMBOL_GPL vmlinux 0x1199518e gpiod_to_irq EXPORT_SYMBOL_GPL vmlinux 0x11a2e0ac crypto_dh_key_len -EXPORT_SYMBOL_GPL vmlinux 0x11b868f5 dev_pm_opp_of_get_opp_desc_node -EXPORT_SYMBOL_GPL vmlinux 0x11c402d3 blk_ksm_init_passthrough +EXPORT_SYMBOL_GPL vmlinux 0x11a47b0a irq_domain_alloc_irqs_parent +EXPORT_SYMBOL_GPL vmlinux 0x11a62bbf tun_get_socket +EXPORT_SYMBOL_GPL vmlinux 0x11d24910 crypto_type_has_alg +EXPORT_SYMBOL_GPL vmlinux 0x11d794ad get_task_pid 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 0x11e75925 __page_file_index -EXPORT_SYMBOL_GPL vmlinux 0x11f054dd crypto_shash_tfm_digest -EXPORT_SYMBOL_GPL vmlinux 0x1206cd65 devlink_resource_occ_get_unregister -EXPORT_SYMBOL_GPL vmlinux 0x1207a94c mptcp_token_get_sock -EXPORT_SYMBOL_GPL vmlinux 0x12139698 uart_set_options +EXPORT_SYMBOL_GPL vmlinux 0x11e9442e extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x11f86eed rio_mport_initialize +EXPORT_SYMBOL_GPL vmlinux 0x11f9d7a7 skb_splice_bits +EXPORT_SYMBOL_GPL vmlinux 0x121496a3 dev_pm_genpd_add_notifier EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier -EXPORT_SYMBOL_GPL vmlinux 0x122b4f39 of_add_property +EXPORT_SYMBOL_GPL vmlinux 0x121f820f extcon_set_state +EXPORT_SYMBOL_GPL vmlinux 0x1230eae3 fscrypt_set_test_dummy_encryption EXPORT_SYMBOL_GPL vmlinux 0x1234e483 get_cpu_iowait_time_us EXPORT_SYMBOL_GPL vmlinux 0x1234ffa1 cper_estatus_check_header -EXPORT_SYMBOL_GPL vmlinux 0x124a5de4 perf_aux_output_flag -EXPORT_SYMBOL_GPL vmlinux 0x124d434d device_destroy +EXPORT_SYMBOL_GPL vmlinux 0x1236f2aa rio_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x123f6901 bio_clone_blkg_association +EXPORT_SYMBOL_GPL vmlinux 0x12439905 devm_clk_unregister +EXPORT_SYMBOL_GPL vmlinux 0x124d4595 of_clk_parent_fill +EXPORT_SYMBOL_GPL vmlinux 0x125020d5 devm_memremap_pages EXPORT_SYMBOL_GPL vmlinux 0x12537dae __tracepoint_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0x125bb37b spi_split_transfers_maxsize +EXPORT_SYMBOL_GPL vmlinux 0x1262d98d dev_pm_opp_register_set_opp_helper +EXPORT_SYMBOL_GPL vmlinux 0x1263c1e3 devm_rtc_allocate_device EXPORT_SYMBOL_GPL vmlinux 0x1268f357 resume_device_irqs -EXPORT_SYMBOL_GPL vmlinux 0x128618f3 mptcp_pm_get_add_addr_accept_max -EXPORT_SYMBOL_GPL vmlinux 0x1286e8ea scsi_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0x126c5b05 ahci_platform_disable_resources +EXPORT_SYMBOL_GPL vmlinux 0x128494f4 blk_revalidate_disk_zones +EXPORT_SYMBOL_GPL vmlinux 0x1284a318 dev_attr_link_power_management_policy EXPORT_SYMBOL_GPL vmlinux 0x129334ae sfp_parse_support -EXPORT_SYMBOL_GPL vmlinux 0x12a94728 of_pinctrl_get -EXPORT_SYMBOL_GPL vmlinux 0x12b2c220 efivar_entry_get -EXPORT_SYMBOL_GPL vmlinux 0x12b2f814 regmap_exit -EXPORT_SYMBOL_GPL vmlinux 0x12b8fa93 driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0x12bcb56b dma_alloc_noncontiguous -EXPORT_SYMBOL_GPL vmlinux 0x12bf159e irq_get_irq_data -EXPORT_SYMBOL_GPL vmlinux 0x12ce041f ata_scsi_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x12d00bc2 crypto_alloc_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x12d41f25 __traceiter_tcp_send_reset -EXPORT_SYMBOL_GPL vmlinux 0x12e1a115 pm_generic_freeze_late -EXPORT_SYMBOL_GPL vmlinux 0x12e1f39c phy_set_media +EXPORT_SYMBOL_GPL vmlinux 0x129d6de1 ata_sff_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x129d7fa3 blk_queue_max_discard_segments +EXPORT_SYMBOL_GPL vmlinux 0x12a467df devm_fwnode_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x12acbc39 tracing_snapshot_cond_enable +EXPORT_SYMBOL_GPL vmlinux 0x12d957a3 gpiod_direction_input +EXPORT_SYMBOL_GPL vmlinux 0x12dc7675 dax_layout_busy_page_range +EXPORT_SYMBOL_GPL vmlinux 0x12e56375 stmpe_block_read EXPORT_SYMBOL_GPL vmlinux 0x12ee1173 memory_group_unregister -EXPORT_SYMBOL_GPL vmlinux 0x12efd0f0 driver_register -EXPORT_SYMBOL_GPL vmlinux 0x12f513aa crypto_skcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x12f0b510 powercap_register_control_type +EXPORT_SYMBOL_GPL vmlinux 0x12f92075 kvm_read_guest_cached +EXPORT_SYMBOL_GPL vmlinux 0x1312bcf8 phy_package_leave EXPORT_SYMBOL_GPL vmlinux 0x131a5ed7 regmap_del_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x131b9c67 pinctrl_find_gpio_range_from_pin_nolock EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq -EXPORT_SYMBOL_GPL vmlinux 0x132929d3 wm831x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x13219cd0 ata_bmdma_post_internal_cmd +EXPORT_SYMBOL_GPL vmlinux 0x1330e68a rio_unmap_inb_region +EXPORT_SYMBOL_GPL vmlinux 0x13390e40 regulator_bulk_free EXPORT_SYMBOL_GPL vmlinux 0x133969d7 __trace_printk -EXPORT_SYMBOL_GPL vmlinux 0x133f16d5 gpiochip_irqchip_add_domain -EXPORT_SYMBOL_GPL vmlinux 0x1346306f posix_acl_access_xattr_handler -EXPORT_SYMBOL_GPL vmlinux 0x13464bbd acpi_device_modalias -EXPORT_SYMBOL_GPL vmlinux 0x1353eea7 usb_hub_claim_port -EXPORT_SYMBOL_GPL vmlinux 0x1355e5be thermal_of_cooling_device_register -EXPORT_SYMBOL_GPL vmlinux 0x135650b7 blk_set_pm_only -EXPORT_SYMBOL_GPL vmlinux 0x13599848 sk_attach_filter -EXPORT_SYMBOL_GPL vmlinux 0x13609e3a tcp_leave_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0x1342f0d3 fsl_mc_bus_dpseci_type +EXPORT_SYMBOL_GPL vmlinux 0x1353c8f1 skb_zerocopy +EXPORT_SYMBOL_GPL vmlinux 0x135823c6 devm_pm_clk_create +EXPORT_SYMBOL_GPL vmlinux 0x135d9173 ata_cable_sata +EXPORT_SYMBOL_GPL vmlinux 0x1360ae24 virtio_config_changed EXPORT_SYMBOL_GPL vmlinux 0x136209db power_supply_reg_notifier EXPORT_SYMBOL_GPL vmlinux 0x13640660 get_cached_msi_msg -EXPORT_SYMBOL_GPL vmlinux 0x136c5832 __synth_event_gen_cmd_start -EXPORT_SYMBOL_GPL vmlinux 0x1377b49a irq_chip_set_affinity_parent -EXPORT_SYMBOL_GPL vmlinux 0x137b2ef3 icc_put +EXPORT_SYMBOL_GPL vmlinux 0x136e78ea dev_pm_qos_flags EXPORT_SYMBOL_GPL vmlinux 0x138aff76 gnttab_init +EXPORT_SYMBOL_GPL vmlinux 0x138b0adf usb_lock_device_for_reset EXPORT_SYMBOL_GPL vmlinux 0x138e0957 dax_write_cache_enabled -EXPORT_SYMBOL_GPL vmlinux 0x13a1ef39 irq_domain_xlate_onetwocell -EXPORT_SYMBOL_GPL vmlinux 0x13b810b6 usb_clear_halt +EXPORT_SYMBOL_GPL vmlinux 0x139a2713 wm8350_block_write +EXPORT_SYMBOL_GPL vmlinux 0x13a24c82 lwtunnel_output +EXPORT_SYMBOL_GPL vmlinux 0x13af5fa6 pci_host_common_probe +EXPORT_SYMBOL_GPL vmlinux 0x13b01fce pci_epc_get EXPORT_SYMBOL_GPL vmlinux 0x13ce87e8 asn1_ber_decoder +EXPORT_SYMBOL_GPL vmlinux 0x13d0b93d crypto_grab_ahash EXPORT_SYMBOL_GPL vmlinux 0x13db1eb8 k3_udma_glue_rx_cppi5_to_dma_addr -EXPORT_SYMBOL_GPL vmlinux 0x13dba320 devlink_port_health_reporter_create -EXPORT_SYMBOL_GPL vmlinux 0x13e3a9d4 pci_dev_trylock -EXPORT_SYMBOL_GPL vmlinux 0x13e947b5 i2c_dw_acpi_configure -EXPORT_SYMBOL_GPL vmlinux 0x13ea0dea pci_epc_mem_exit +EXPORT_SYMBOL_GPL vmlinux 0x13e50c23 ata_pci_sff_activate_host EXPORT_SYMBOL_GPL vmlinux 0x13ed8784 sdev_evt_alloc -EXPORT_SYMBOL_GPL vmlinux 0x13f3d6d1 sk_clear_memalloc -EXPORT_SYMBOL_GPL vmlinux 0x13f3ebee usb_phy_roothub_suspend +EXPORT_SYMBOL_GPL vmlinux 0x13f533ca amba_apb_device_add_res EXPORT_SYMBOL_GPL vmlinux 0x13fab921 cpuidle_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0x140306d9 platform_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x13fe30ba spi_add_device EXPORT_SYMBOL_GPL vmlinux 0x1403ad09 cpufreq_add_update_util_hook -EXPORT_SYMBOL_GPL vmlinux 0x14087f83 serdev_device_set_tiocm -EXPORT_SYMBOL_GPL vmlinux 0x14165f20 lp8788_read_multi_bytes -EXPORT_SYMBOL_GPL vmlinux 0x141db9f4 bus_find_device +EXPORT_SYMBOL_GPL vmlinux 0x14060228 kthread_cancel_delayed_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x1419cd43 misc_cg_try_charge EXPORT_SYMBOL_GPL vmlinux 0x141f38bf ktime_get_raw_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0x142c3496 xfrm_output -EXPORT_SYMBOL_GPL vmlinux 0x142c5c77 irq_domain_get_irq_data -EXPORT_SYMBOL_GPL vmlinux 0x1433b027 dma_resv_get_fences -EXPORT_SYMBOL_GPL vmlinux 0x14438d99 cpufreq_disable_fast_switch -EXPORT_SYMBOL_GPL vmlinux 0x1445a8ed k3_ringacc_dmarings_init +EXPORT_SYMBOL_GPL vmlinux 0x144a7ac2 lwtunnel_build_state +EXPORT_SYMBOL_GPL vmlinux 0x14546363 nvdimm_badblocks_populate EXPORT_SYMBOL_GPL vmlinux 0x1456762b k3_ringacc_ring_get_free +EXPORT_SYMBOL_GPL vmlinux 0x14636604 devfreq_event_enable_edev +EXPORT_SYMBOL_GPL vmlinux 0x146b9eec __irq_resolve_mapping EXPORT_SYMBOL_GPL vmlinux 0x146cc88f bpf_master_redirect_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x1471ab3d strp_process EXPORT_SYMBOL_GPL vmlinux 0x148fd794 enable_kprobe -EXPORT_SYMBOL_GPL vmlinux 0x149511f1 dma_buf_fd -EXPORT_SYMBOL_GPL vmlinux 0x149768a4 __of_phy_provider_register -EXPORT_SYMBOL_GPL vmlinux 0x1498b446 em_pd_get -EXPORT_SYMBOL_GPL vmlinux 0x14a1912d mbox_free_channel -EXPORT_SYMBOL_GPL vmlinux 0x14a1bc11 crypto_shash_alg_has_setkey -EXPORT_SYMBOL_GPL vmlinux 0x14a70623 pci_ats_supported -EXPORT_SYMBOL_GPL vmlinux 0x14c96b58 regulator_set_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0x14936a89 skb_partial_csum_set +EXPORT_SYMBOL_GPL vmlinux 0x14956ac6 firmware_request_platform +EXPORT_SYMBOL_GPL vmlinux 0x14a79848 __traceiter_br_fdb_external_learn_add +EXPORT_SYMBOL_GPL vmlinux 0x14af1ebc bio_iov_iter_get_pages +EXPORT_SYMBOL_GPL vmlinux 0x14afed38 xen_unmap_domain_gfn_range +EXPORT_SYMBOL_GPL vmlinux 0x14b0c3a9 kvm_vcpu_write_guest +EXPORT_SYMBOL_GPL vmlinux 0x14b46976 kvm_write_guest_cached EXPORT_SYMBOL_GPL vmlinux 0x14d01690 clk_mux_index_to_val -EXPORT_SYMBOL_GPL vmlinux 0x14d401c3 usb_string -EXPORT_SYMBOL_GPL vmlinux 0x14dd97c1 __traceiter_block_rq_remap -EXPORT_SYMBOL_GPL vmlinux 0x14de97fb __traceiter_io_page_fault -EXPORT_SYMBOL_GPL vmlinux 0x14e0a0d2 __traceiter_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0x14e469a8 fsl_mc_bus_dpio_type EXPORT_SYMBOL_GPL vmlinux 0x14ec4fdb evtchn_put -EXPORT_SYMBOL_GPL vmlinux 0x14f244e6 tcp_reno_cong_avoid -EXPORT_SYMBOL_GPL vmlinux 0x14f635c6 usb_hcd_check_unlink_urb -EXPORT_SYMBOL_GPL vmlinux 0x14f6f338 ahci_print_info EXPORT_SYMBOL_GPL vmlinux 0x15021b4a xa_delete_node -EXPORT_SYMBOL_GPL vmlinux 0x150a5783 crypto_register_aead -EXPORT_SYMBOL_GPL vmlinux 0x15377338 iomap_swapfile_activate +EXPORT_SYMBOL_GPL vmlinux 0x150bccc6 irq_chip_ack_parent +EXPORT_SYMBOL_GPL vmlinux 0x152323ad device_find_child +EXPORT_SYMBOL_GPL vmlinux 0x1531b491 usb_create_hcd EXPORT_SYMBOL_GPL vmlinux 0x153b60a6 klist_del -EXPORT_SYMBOL_GPL vmlinux 0x15504f7d irq_domain_translate_onecell EXPORT_SYMBOL_GPL vmlinux 0x15510a89 devlink_fmsg_binary_put -EXPORT_SYMBOL_GPL vmlinux 0x1552b8f3 phy_start_machine -EXPORT_SYMBOL_GPL vmlinux 0x15597329 skb_segment -EXPORT_SYMBOL_GPL vmlinux 0x15759a3f sdio_get_host_pm_caps -EXPORT_SYMBOL_GPL vmlinux 0x15769c9e netlink_remove_tap -EXPORT_SYMBOL_GPL vmlinux 0x157e1305 iomap_is_partially_uptodate -EXPORT_SYMBOL_GPL vmlinux 0x15937e17 crypto_comp_decompress -EXPORT_SYMBOL_GPL vmlinux 0x1596f637 phy_select_page -EXPORT_SYMBOL_GPL vmlinux 0x15ac14cf ata_eh_analyze_ncq_error -EXPORT_SYMBOL_GPL vmlinux 0x15acafc1 dma_buf_map_attachment -EXPORT_SYMBOL_GPL vmlinux 0x15ae9b2f sata_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x15c3e456 clk_hw_set_parent -EXPORT_SYMBOL_GPL vmlinux 0x15c54cd3 pci_user_write_config_byte +EXPORT_SYMBOL_GPL vmlinux 0x15622e8c eventfd_ctx_fileget +EXPORT_SYMBOL_GPL vmlinux 0x1570fba6 devlink_resource_occ_get_register +EXPORT_SYMBOL_GPL vmlinux 0x157da6cc device_reprobe +EXPORT_SYMBOL_GPL vmlinux 0x15906c06 ata_sas_port_init +EXPORT_SYMBOL_GPL vmlinux 0x159a41a9 of_dma_configure_id +EXPORT_SYMBOL_GPL vmlinux 0x15ade1cc filter_irq_stacks +EXPORT_SYMBOL_GPL vmlinux 0x15bbdb9d fwnode_graph_get_endpoint_by_id EXPORT_SYMBOL_GPL vmlinux 0x15c60a71 __tracepoint_pelt_dl_tp -EXPORT_SYMBOL_GPL vmlinux 0x15d8b52b stmpe_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x15d6fea9 usb_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x15e0cc5a sdio_retune_hold_now +EXPORT_SYMBOL_GPL vmlinux 0x15e4b9e5 xhci_ext_cap_init +EXPORT_SYMBOL_GPL vmlinux 0x15e6d42b pinctrl_pm_select_sleep_state EXPORT_SYMBOL_GPL vmlinux 0x15ea2648 hwpoison_filter_flags_mask -EXPORT_SYMBOL_GPL vmlinux 0x15edc064 gpiod_set_raw_array_value -EXPORT_SYMBOL_GPL vmlinux 0x15fba793 gnttab_page_cache_put -EXPORT_SYMBOL_GPL vmlinux 0x160b840b bind_interdomain_evtchn_to_irq_lateeoi -EXPORT_SYMBOL_GPL vmlinux 0x1610e240 ata_pci_shutdown_one -EXPORT_SYMBOL_GPL vmlinux 0x1633e263 dev_set_name -EXPORT_SYMBOL_GPL vmlinux 0x16373715 regulator_set_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x1646558a edac_mc_del_mc +EXPORT_SYMBOL_GPL vmlinux 0x15fb6a6e sched_trace_cfs_rq_cpu +EXPORT_SYMBOL_GPL vmlinux 0x16016ccc vp_modern_queue_vector +EXPORT_SYMBOL_GPL vmlinux 0x160f7e11 pci_iomap_wc_range +EXPORT_SYMBOL_GPL vmlinux 0x16456e49 param_set_uint_minmax +EXPORT_SYMBOL_GPL vmlinux 0x164f5e0b devlink_dpipe_entry_ctx_close EXPORT_SYMBOL_GPL vmlinux 0x16516798 osc_pc_lpi_support_confirmed -EXPORT_SYMBOL_GPL vmlinux 0x165ccdf1 usb_free_streams -EXPORT_SYMBOL_GPL vmlinux 0x16614507 gpiochip_line_is_irq -EXPORT_SYMBOL_GPL vmlinux 0x16643162 pci_epc_put -EXPORT_SYMBOL_GPL vmlinux 0x166596ef nd_blk_region_provider_data -EXPORT_SYMBOL_GPL vmlinux 0x16699ec6 fuse_conn_get -EXPORT_SYMBOL_GPL vmlinux 0x167cd34f of_detach_node +EXPORT_SYMBOL_GPL vmlinux 0x165acee7 kernfs_notify +EXPORT_SYMBOL_GPL vmlinux 0x1668cef1 ata_pci_shutdown_one +EXPORT_SYMBOL_GPL vmlinux 0x166c7c22 crypto_unregister_instance +EXPORT_SYMBOL_GPL vmlinux 0x16702dee crypto_unregister_shash +EXPORT_SYMBOL_GPL vmlinux 0x1671145f trace_output_call +EXPORT_SYMBOL_GPL vmlinux 0x16740b1a device_rename +EXPORT_SYMBOL_GPL vmlinux 0x1677fe23 fuse_conn_get EXPORT_SYMBOL_GPL vmlinux 0x167d7113 acpi_bus_register_early_device -EXPORT_SYMBOL_GPL vmlinux 0x167e95ad fat_sync_inode -EXPORT_SYMBOL_GPL vmlinux 0x16873537 stmpe_disable +EXPORT_SYMBOL_GPL vmlinux 0x167e6afe iomap_is_partially_uptodate +EXPORT_SYMBOL_GPL vmlinux 0x167e95ae serdev_device_set_baudrate +EXPORT_SYMBOL_GPL vmlinux 0x167fed1e bpf_sk_storage_diag_put EXPORT_SYMBOL_GPL vmlinux 0x1687ec20 tty_get_frame_size +EXPORT_SYMBOL_GPL vmlinux 0x168ace7f lwtunnel_input +EXPORT_SYMBOL_GPL vmlinux 0x168e186c irq_domain_associate EXPORT_SYMBOL_GPL vmlinux 0x1690b503 usb_role_switch_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x169455c5 pingv6_prot EXPORT_SYMBOL_GPL vmlinux 0x169482bf gfn_to_pfn_memslot_atomic -EXPORT_SYMBOL_GPL vmlinux 0x169b76d9 hvc_poll -EXPORT_SYMBOL_GPL vmlinux 0x16aa433e sk_psock_drop -EXPORT_SYMBOL_GPL vmlinux 0x16b9c4af __pm_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0x16c42b25 mtk_pinconf_adv_drive_set -EXPORT_SYMBOL_GPL vmlinux 0x16c46cf7 crypto_unregister_akcipher -EXPORT_SYMBOL_GPL vmlinux 0x16c7c178 __sync_filesystem -EXPORT_SYMBOL_GPL vmlinux 0x16d89c14 blkcg_deactivate_policy +EXPORT_SYMBOL_GPL vmlinux 0x1695678c fsl_mc_bus_dpdmux_type +EXPORT_SYMBOL_GPL vmlinux 0x169bf76b mmc_switch +EXPORT_SYMBOL_GPL vmlinux 0x16aa296b i2c_new_client_device +EXPORT_SYMBOL_GPL vmlinux 0x16ac3526 crypto_register_aeads +EXPORT_SYMBOL_GPL vmlinux 0x16b2c920 sysfs_remove_link_from_group +EXPORT_SYMBOL_GPL vmlinux 0x16cd8228 blk_mq_freeze_queue +EXPORT_SYMBOL_GPL vmlinux 0x16d1797e iomap_releasepage +EXPORT_SYMBOL_GPL vmlinux 0x16d31567 usb_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0x16d87843 devm_phy_package_join EXPORT_SYMBOL_GPL vmlinux 0x16da1f88 devlink_fmsg_u32_put -EXPORT_SYMBOL_GPL vmlinux 0x16e0d8c8 devm_ti_sci_get_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x16e46228 ulpi_viewport_access_ops +EXPORT_SYMBOL_GPL vmlinux 0x16e275e9 acpiphp_register_attention +EXPORT_SYMBOL_GPL vmlinux 0x16e328e3 dax_driver_unregister EXPORT_SYMBOL_GPL vmlinux 0x16f15139 bind_evtchn_to_irq -EXPORT_SYMBOL_GPL vmlinux 0x16f244c4 pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0x16fad960 adp5520_write EXPORT_SYMBOL_GPL vmlinux 0x170cc36c put_timespec64 -EXPORT_SYMBOL_GPL vmlinux 0x17164074 skb_morph -EXPORT_SYMBOL_GPL vmlinux 0x17189c23 tps65912_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0x17294d45 rio_route_add_entry -EXPORT_SYMBOL_GPL vmlinux 0x172fd50b __clk_mux_determine_rate_closest +EXPORT_SYMBOL_GPL vmlinux 0x170ead86 dm_report_zones +EXPORT_SYMBOL_GPL vmlinux 0x171a3ec2 of_pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0x17251ff6 thermal_zone_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x172faa73 noop_backing_dev_info EXPORT_SYMBOL_GPL vmlinux 0x1741ddee trace_seq_puts -EXPORT_SYMBOL_GPL vmlinux 0x1742dc72 kvm_put_kvm -EXPORT_SYMBOL_GPL vmlinux 0x1745e7ed device_add_software_node EXPORT_SYMBOL_GPL vmlinux 0x17480d56 x509_free_certificate EXPORT_SYMBOL_GPL vmlinux 0x174c6274 ring_buffer_time_stamp -EXPORT_SYMBOL_GPL vmlinux 0x1751958b sdio_disable_func EXPORT_SYMBOL_GPL vmlinux 0x17591ecd zynqmp_pm_write_ggs -EXPORT_SYMBOL_GPL vmlinux 0x175bb815 dev_attr_unload_heads EXPORT_SYMBOL_GPL vmlinux 0x176031a7 devlink_fmsg_string_put EXPORT_SYMBOL_GPL vmlinux 0x17614bf3 apei_resources_sub -EXPORT_SYMBOL_GPL vmlinux 0x17662a4c rio_register_scan +EXPORT_SYMBOL_GPL vmlinux 0x1771c8a4 xhci_run EXPORT_SYMBOL_GPL vmlinux 0x177c338d twl_get_version -EXPORT_SYMBOL_GPL vmlinux 0x17814c5f usb_sg_cancel -EXPORT_SYMBOL_GPL vmlinux 0x17864f61 nvmem_cell_get -EXPORT_SYMBOL_GPL vmlinux 0x178753ad debugfs_create_x32 -EXPORT_SYMBOL_GPL vmlinux 0x178d57d8 ipv4_sk_redirect -EXPORT_SYMBOL_GPL vmlinux 0x178ed2dc irq_chip_release_resources_parent -EXPORT_SYMBOL_GPL vmlinux 0x17947b7d of_find_spi_device_by_node -EXPORT_SYMBOL_GPL vmlinux 0x17a8c470 md_bitmap_resize -EXPORT_SYMBOL_GPL vmlinux 0x17b28632 class_for_each_device -EXPORT_SYMBOL_GPL vmlinux 0x17c0898f pci_aer_clear_nonfatal_status -EXPORT_SYMBOL_GPL vmlinux 0x17c4ffdb ahci_stop_engine -EXPORT_SYMBOL_GPL vmlinux 0x17d371b8 mbox_request_channel_byname -EXPORT_SYMBOL_GPL vmlinux 0x17dee204 register_net_sysctl +EXPORT_SYMBOL_GPL vmlinux 0x177c6095 tcp_reno_ssthresh +EXPORT_SYMBOL_GPL vmlinux 0x17821852 of_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0x1789640b i2c_dw_validate_speed +EXPORT_SYMBOL_GPL vmlinux 0x17a946b3 fsnotify_alloc_user_group +EXPORT_SYMBOL_GPL vmlinux 0x17b4091d wm831x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x17c93387 irq_chip_release_resources_parent EXPORT_SYMBOL_GPL vmlinux 0x17e01f11 erst_clear -EXPORT_SYMBOL_GPL vmlinux 0x17ff1161 kernfs_notify +EXPORT_SYMBOL_GPL vmlinux 0x17f3a254 blkdev_nr_zones EXPORT_SYMBOL_GPL vmlinux 0x18008c59 ring_buffer_resize -EXPORT_SYMBOL_GPL vmlinux 0x1815bf77 pcie_bus_configure_settings -EXPORT_SYMBOL_GPL vmlinux 0x18273ef3 __traceiter_sched_update_nr_running_tp -EXPORT_SYMBOL_GPL vmlinux 0x183b16ef mmc_regulator_set_vqmmc -EXPORT_SYMBOL_GPL vmlinux 0x183ea25d register_pernet_subsys -EXPORT_SYMBOL_GPL vmlinux 0x1844836f __mnt_is_readonly -EXPORT_SYMBOL_GPL vmlinux 0x184937e6 devm_phy_get -EXPORT_SYMBOL_GPL vmlinux 0x184a1a1c of_i2c_setup_smbus_alert -EXPORT_SYMBOL_GPL vmlinux 0x185ad754 umd_unload_blob -EXPORT_SYMBOL_GPL vmlinux 0x185b8bb7 fscrypt_d_revalidate -EXPORT_SYMBOL_GPL vmlinux 0x1860fb1b soc_device_match +EXPORT_SYMBOL_GPL vmlinux 0x1819b4d9 dma_buf_dynamic_attach +EXPORT_SYMBOL_GPL vmlinux 0x18222fc2 bsg_remove_queue +EXPORT_SYMBOL_GPL vmlinux 0x182f6dcd pcie_aspm_enabled +EXPORT_SYMBOL_GPL vmlinux 0x1830077a ata_sff_wait_ready +EXPORT_SYMBOL_GPL vmlinux 0x1840b1a8 auxiliary_find_device +EXPORT_SYMBOL_GPL vmlinux 0x185d5aca regmap_get_raw_read_max +EXPORT_SYMBOL_GPL vmlinux 0x185f2196 dev_pm_qos_update_request EXPORT_SYMBOL_GPL vmlinux 0x18615d35 efivar_supports_writes EXPORT_SYMBOL_GPL vmlinux 0x18715353 k3_udma_glue_push_tx_chn -EXPORT_SYMBOL_GPL vmlinux 0x18a4b227 alarmtimer_get_rtcdev -EXPORT_SYMBOL_GPL vmlinux 0x18b1ef95 acpi_is_pnp_device -EXPORT_SYMBOL_GPL vmlinux 0x18bcfbcf regulator_enable_regmap -EXPORT_SYMBOL_GPL vmlinux 0x18bd6160 usb_hcd_platform_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x18bf0803 sdio_retune_hold_now -EXPORT_SYMBOL_GPL vmlinux 0x18c60834 task_cls_state -EXPORT_SYMBOL_GPL vmlinux 0x18de36f4 irq_find_matching_fwspec +EXPORT_SYMBOL_GPL vmlinux 0x188e4a60 devm_regmap_field_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0x1893bdde genphy_c45_read_link +EXPORT_SYMBOL_GPL vmlinux 0x189e727e acpiphp_unregister_attention +EXPORT_SYMBOL_GPL vmlinux 0x18a8f105 xen_dbgp_external_startup +EXPORT_SYMBOL_GPL vmlinux 0x18b40ad4 regmap_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0x18bad82c blk_queue_set_zoned +EXPORT_SYMBOL_GPL vmlinux 0x18c616a9 fib_rule_matchall +EXPORT_SYMBOL_GPL vmlinux 0x18cfbc51 ipv4_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x18e22353 attribute_container_find_class_device EXPORT_SYMBOL_GPL vmlinux 0x18e4f8aa swphy_read_reg +EXPORT_SYMBOL_GPL vmlinux 0x18e640fd __dma_request_channel EXPORT_SYMBOL_GPL vmlinux 0x18e8c440 arch_freq_scale EXPORT_SYMBOL_GPL vmlinux 0x18f10f38 k3_udma_glue_enable_rx_chn -EXPORT_SYMBOL_GPL vmlinux 0x18f96161 platform_unregister_drivers +EXPORT_SYMBOL_GPL vmlinux 0x18f36c46 of_pm_clk_add_clk +EXPORT_SYMBOL_GPL vmlinux 0x18f3f636 skb_segment +EXPORT_SYMBOL_GPL vmlinux 0x18f60e5a power_supply_powers EXPORT_SYMBOL_GPL vmlinux 0x18fb2caf cpus_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0x190c5c77 devm_blk_ksm_init -EXPORT_SYMBOL_GPL vmlinux 0x1916a89f irq_setup_alt_chip -EXPORT_SYMBOL_GPL vmlinux 0x1919678c xfrm_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0x1900bb37 mtk_paris_pinctrl_probe +EXPORT_SYMBOL_GPL vmlinux 0x19053d77 ncsi_stop_dev +EXPORT_SYMBOL_GPL vmlinux 0x19055560 __traceiter_neigh_update EXPORT_SYMBOL_GPL vmlinux 0x1926028c zynqmp_pm_reset_assert -EXPORT_SYMBOL_GPL vmlinux 0x194bc88c sock_map_unhash -EXPORT_SYMBOL_GPL vmlinux 0x19756cea crypto_alg_extsize +EXPORT_SYMBOL_GPL vmlinux 0x1927ce43 device_register +EXPORT_SYMBOL_GPL vmlinux 0x1956b388 acpi_cppc_processor_probe +EXPORT_SYMBOL_GPL vmlinux 0x196e3776 sock_diag_register_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0x197bf18f regulator_allow_bypass EXPORT_SYMBOL_GPL vmlinux 0x19821689 __tracepoint_fdb_delete -EXPORT_SYMBOL_GPL vmlinux 0x198500ad subsys_interface_unregister -EXPORT_SYMBOL_GPL vmlinux 0x198adf59 do_unregister_con_driver +EXPORT_SYMBOL_GPL vmlinux 0x198555f9 percpu_free_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x198819a5 i2c_acpi_find_adapter_by_handle +EXPORT_SYMBOL_GPL vmlinux 0x198ba959 dax_copy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0x19951acf gpiod_is_active_low EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled -EXPORT_SYMBOL_GPL vmlinux 0x19aa3381 pinctrl_count_index_with_args -EXPORT_SYMBOL_GPL vmlinux 0x19ad07a3 k3_udma_glue_request_tx_chn +EXPORT_SYMBOL_GPL vmlinux 0x19acb78a of_clk_get_from_provider +EXPORT_SYMBOL_GPL vmlinux 0x19b5f91d bpf_prog_alloc EXPORT_SYMBOL_GPL vmlinux 0x19c20269 soc_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x19c62efc __list_lru_init -EXPORT_SYMBOL_GPL vmlinux 0x19cedbdf xdp_rxq_info_unreg -EXPORT_SYMBOL_GPL vmlinux 0x19d1ec4f serial8250_do_startup -EXPORT_SYMBOL_GPL vmlinux 0x19da52f3 clk_regmap_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0x19c5230b ahci_fill_cmd_slot +EXPORT_SYMBOL_GPL vmlinux 0x19cb67c7 governor_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0x19ddc0a9 spi_mem_default_supports_op +EXPORT_SYMBOL_GPL vmlinux 0x19e3339b scsi_register_device_handler EXPORT_SYMBOL_GPL vmlinux 0x19e81304 btree_alloc -EXPORT_SYMBOL_GPL vmlinux 0x19e9941d ndo_dflt_bridge_getlink +EXPORT_SYMBOL_GPL vmlinux 0x19ea5752 wwan_port_rx EXPORT_SYMBOL_GPL vmlinux 0x19edd064 blkg_rwstat_exit -EXPORT_SYMBOL_GPL vmlinux 0x19fed870 usb_ep0_reinit -EXPORT_SYMBOL_GPL vmlinux 0x19fef6a9 fat_build_inode +EXPORT_SYMBOL_GPL vmlinux 0x19f45b67 of_clk_src_simple_get +EXPORT_SYMBOL_GPL vmlinux 0x19f5a5d0 debugfs_attr_write +EXPORT_SYMBOL_GPL vmlinux 0x1a0d8396 mbox_free_channel EXPORT_SYMBOL_GPL vmlinux 0x1a10c32b crypto_ft_tab EXPORT_SYMBOL_GPL vmlinux 0x1a146ec3 usb_ep_type_string -EXPORT_SYMBOL_GPL vmlinux 0x1a208bdd dm_set_target_max_io_len -EXPORT_SYMBOL_GPL vmlinux 0x1a2b16e5 usb_queue_reset_device -EXPORT_SYMBOL_GPL vmlinux 0x1a2bb89e debugfs_attr_write -EXPORT_SYMBOL_GPL vmlinux 0x1a2f7a03 blk_mq_start_stopped_hw_queue -EXPORT_SYMBOL_GPL vmlinux 0x1a6024cf pci_epf_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x1a612575 dma_buf_detach +EXPORT_SYMBOL_GPL vmlinux 0x1a17b172 usb_enable_ltm +EXPORT_SYMBOL_GPL vmlinux 0x1a19f3a1 xenbus_dev_is_online +EXPORT_SYMBOL_GPL vmlinux 0x1a2e43d8 __mmc_poll_for_busy +EXPORT_SYMBOL_GPL vmlinux 0x1a3b4f19 usb_alloc_dev +EXPORT_SYMBOL_GPL vmlinux 0x1a552180 dma_max_mapping_size EXPORT_SYMBOL_GPL vmlinux 0x1a6bf28f fsnotify_get_cookie -EXPORT_SYMBOL_GPL vmlinux 0x1a778c86 iommu_group_get EXPORT_SYMBOL_GPL vmlinux 0x1a77903a of_alias_get_alias_list -EXPORT_SYMBOL_GPL vmlinux 0x1a82e095 rockchip_pcie_init_port -EXPORT_SYMBOL_GPL vmlinux 0x1a86c36d rio_set_port_lockout EXPORT_SYMBOL_GPL vmlinux 0x1a876574 __tracepoint_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0x1a88cf78 cpci_hp_unregister_bus +EXPORT_SYMBOL_GPL vmlinux 0x1a8e9d0f pinctrl_generic_remove_group EXPORT_SYMBOL_GPL vmlinux 0x1a9754cf sbitmap_queue_min_shallow_depth -EXPORT_SYMBOL_GPL vmlinux 0x1a9c4d8c regulator_disable_deferred -EXPORT_SYMBOL_GPL vmlinux 0x1acc7e42 vcpu_load -EXPORT_SYMBOL_GPL vmlinux 0x1accf5fa gpiod_direction_output_raw +EXPORT_SYMBOL_GPL vmlinux 0x1aa738e4 devm_fwnode_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x1acd1313 fib_new_table EXPORT_SYMBOL_GPL vmlinux 0x1acd18c8 cpuset_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x1ad875e9 __traceiter_sched_util_est_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x1ae778a6 cpufreq_freq_attr_scaling_available_freqs +EXPORT_SYMBOL_GPL vmlinux 0x1ae87b5f __fput_sync +EXPORT_SYMBOL_GPL vmlinux 0x1af0bb20 phy_modify_mmd_changed EXPORT_SYMBOL_GPL vmlinux 0x1af267f8 int_pow -EXPORT_SYMBOL_GPL vmlinux 0x1b056afe i2c_acpi_find_bus_speed -EXPORT_SYMBOL_GPL vmlinux 0x1b084f27 of_led_get -EXPORT_SYMBOL_GPL vmlinux 0x1b1efde7 devm_ti_sci_get_resource -EXPORT_SYMBOL_GPL vmlinux 0x1b295b2e __tcp_send_ack -EXPORT_SYMBOL_GPL vmlinux 0x1b342103 __mmc_send_status -EXPORT_SYMBOL_GPL vmlinux 0x1b3f0c4f altr_sysmgr_regmap_lookup_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x1af47f26 input_ff_flush +EXPORT_SYMBOL_GPL vmlinux 0x1af545cf fat_alloc_new_dir +EXPORT_SYMBOL_GPL vmlinux 0x1b0d75f6 tps6586x_update +EXPORT_SYMBOL_GPL vmlinux 0x1b1b92f0 phy_put +EXPORT_SYMBOL_GPL vmlinux 0x1b32e866 sdio_set_block_size +EXPORT_SYMBOL_GPL vmlinux 0x1b33e1a8 icc_node_create +EXPORT_SYMBOL_GPL vmlinux 0x1b355d6a dev_pm_domain_set +EXPORT_SYMBOL_GPL vmlinux 0x1b36257c phy_power_on +EXPORT_SYMBOL_GPL vmlinux 0x1b3e26a4 hwmon_device_register +EXPORT_SYMBOL_GPL vmlinux 0x1b427d20 of_get_videomode +EXPORT_SYMBOL_GPL vmlinux 0x1b4ce43d sk_set_peek_off +EXPORT_SYMBOL_GPL vmlinux 0x1b4cf577 ipv6_proxy_select_ident EXPORT_SYMBOL_GPL vmlinux 0x1b5059ce ata_id_xfermask -EXPORT_SYMBOL_GPL vmlinux 0x1b51d4ca mptcp_subflow_init_cookie_req -EXPORT_SYMBOL_GPL vmlinux 0x1b5e7978 devm_of_pwm_get EXPORT_SYMBOL_GPL vmlinux 0x1b5f4377 trace_seq_putc -EXPORT_SYMBOL_GPL vmlinux 0x1b61f7ea pm_generic_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x1b71ab71 devm_phy_put EXPORT_SYMBOL_GPL vmlinux 0x1b8822d8 pinctrl_gpio_direction_output +EXPORT_SYMBOL_GPL vmlinux 0x1b8a9a04 dev_pm_opp_get_opp_count EXPORT_SYMBOL_GPL vmlinux 0x1b92e41d inet_putpeer -EXPORT_SYMBOL_GPL vmlinux 0x1b97f55c clk_gate_restore_context -EXPORT_SYMBOL_GPL vmlinux 0x1bb2ebc8 devm_pinctrl_put -EXPORT_SYMBOL_GPL vmlinux 0x1bbac789 rtnl_link_register -EXPORT_SYMBOL_GPL vmlinux 0x1bc4d664 of_get_videomode +EXPORT_SYMBOL_GPL vmlinux 0x1b99c603 usb_hcd_pci_remove +EXPORT_SYMBOL_GPL vmlinux 0x1b9a81d2 balloon_page_alloc +EXPORT_SYMBOL_GPL vmlinux 0x1ba24c54 devlink_port_type_clear +EXPORT_SYMBOL_GPL vmlinux 0x1bb0767d cgroup_get_from_id EXPORT_SYMBOL_GPL vmlinux 0x1bc5eebe pinctrl_gpio_direction_input -EXPORT_SYMBOL_GPL vmlinux 0x1bc6e38b meson_pmx_get_func_name +EXPORT_SYMBOL_GPL vmlinux 0x1bc6f5ce __traceiter_tcp_bad_csum EXPORT_SYMBOL_GPL vmlinux 0x1bc85e1c irq_set_affinity -EXPORT_SYMBOL_GPL vmlinux 0x1bd1c783 crypto_unregister_shash -EXPORT_SYMBOL_GPL vmlinux 0x1bd20d58 crypto_enqueue_request -EXPORT_SYMBOL_GPL vmlinux 0x1be33b68 bpfilter_ops +EXPORT_SYMBOL_GPL vmlinux 0x1bcf2783 acpi_storage_d3 +EXPORT_SYMBOL_GPL vmlinux 0x1bda5939 crypto_spawn_tfm2 +EXPORT_SYMBOL_GPL vmlinux 0x1bec3f4f devm_regulator_get EXPORT_SYMBOL_GPL vmlinux 0x1bee4974 sg_alloc_table_chained -EXPORT_SYMBOL_GPL vmlinux 0x1c01d626 usb_create_hcd -EXPORT_SYMBOL_GPL vmlinux 0x1c0bf0d0 nexthop_find_by_id -EXPORT_SYMBOL_GPL vmlinux 0x1c18495c dev_pm_qos_expose_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0x1c266628 input_class -EXPORT_SYMBOL_GPL vmlinux 0x1c292155 dw_pcie_ep_linkup -EXPORT_SYMBOL_GPL vmlinux 0x1c2fba45 __traceiter_napi_poll -EXPORT_SYMBOL_GPL vmlinux 0x1c37c2d3 platform_device_put +EXPORT_SYMBOL_GPL vmlinux 0x1bf016ad gpiochip_irq_unmap +EXPORT_SYMBOL_GPL vmlinux 0x1c02b793 acpi_dev_gpio_irq_get_by +EXPORT_SYMBOL_GPL vmlinux 0x1c03d5df wbc_detach_inode +EXPORT_SYMBOL_GPL vmlinux 0x1c0bd48b blk_mark_disk_dead +EXPORT_SYMBOL_GPL vmlinux 0x1c0e2a84 of_get_fb_videomode +EXPORT_SYMBOL_GPL vmlinux 0x1c2660f6 ata_sff_qc_fill_rtf +EXPORT_SYMBOL_GPL vmlinux 0x1c301b18 regulator_is_enabled EXPORT_SYMBOL_GPL vmlinux 0x1c5541bd cpufreq_boost_enabled EXPORT_SYMBOL_GPL vmlinux 0x1c5b1f28 irq_free_descs -EXPORT_SYMBOL_GPL vmlinux 0x1c5d3a69 meson8_pmx_ops EXPORT_SYMBOL_GPL vmlinux 0x1c5ff742 clk_get_phase -EXPORT_SYMBOL_GPL vmlinux 0x1c603693 nf_route -EXPORT_SYMBOL_GPL vmlinux 0x1c6e0300 fl6_merge_options -EXPORT_SYMBOL_GPL vmlinux 0x1c7c824b dmi_kobj +EXPORT_SYMBOL_GPL vmlinux 0x1c65208d netlink_has_listeners +EXPORT_SYMBOL_GPL vmlinux 0x1c68ce43 inet_twsk_put +EXPORT_SYMBOL_GPL vmlinux 0x1c78c0a9 acpi_subsys_complete EXPORT_SYMBOL_GPL vmlinux 0x1c80d27d btree_geo128 EXPORT_SYMBOL_GPL vmlinux 0x1c87a811 __round_jiffies_up -EXPORT_SYMBOL_GPL vmlinux 0x1c89914c wait_on_page_writeback_killable EXPORT_SYMBOL_GPL vmlinux 0x1c89fb22 zynqmp_pm_clock_setparent -EXPORT_SYMBOL_GPL vmlinux 0x1c97b2c0 of_get_required_opp_performance_state -EXPORT_SYMBOL_GPL vmlinux 0x1ca39126 regulator_set_current_limit +EXPORT_SYMBOL_GPL vmlinux 0x1c8ff9fd kobject_rename EXPORT_SYMBOL_GPL vmlinux 0x1ca3aa97 alarm_forward EXPORT_SYMBOL_GPL vmlinux 0x1ca4a930 smp_call_function_any -EXPORT_SYMBOL_GPL vmlinux 0x1ca608f2 ethnl_cable_test_pulse -EXPORT_SYMBOL_GPL vmlinux 0x1cabea66 vchan_dma_desc_free_list EXPORT_SYMBOL_GPL vmlinux 0x1cb7c983 apei_exec_read_register_value EXPORT_SYMBOL_GPL vmlinux 0x1cb9a1c8 xenbus_gather EXPORT_SYMBOL_GPL vmlinux 0x1cbd92b0 cpu_mitigations_off -EXPORT_SYMBOL_GPL vmlinux 0x1cc26c1d fwnode_property_get_reference_args -EXPORT_SYMBOL_GPL vmlinux 0x1cc933e1 inet6_lookup_listener -EXPORT_SYMBOL_GPL vmlinux 0x1cddd921 da903x_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x1ce33236 mtk_pinconf_bias_get_rev1 -EXPORT_SYMBOL_GPL vmlinux 0x1ce452bf scsi_register_device_handler -EXPORT_SYMBOL_GPL vmlinux 0x1ce86d06 mtk_eint_find_irq -EXPORT_SYMBOL_GPL vmlinux 0x1ceea2b0 devlink_dpipe_action_put -EXPORT_SYMBOL_GPL vmlinux 0x1cf5f62d balloon_aops -EXPORT_SYMBOL_GPL vmlinux 0x1cf76139 crypto_alloc_ahash -EXPORT_SYMBOL_GPL vmlinux 0x1cfb45dc blkcg_root -EXPORT_SYMBOL_GPL vmlinux 0x1d0355f1 pci_generic_config_read32 -EXPORT_SYMBOL_GPL vmlinux 0x1d1c3615 unregister_acpi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x1cce6771 to_nvdimm_bus +EXPORT_SYMBOL_GPL vmlinux 0x1ce02387 usb_register_dev +EXPORT_SYMBOL_GPL vmlinux 0x1cf51ae8 inet6_destroy_sock +EXPORT_SYMBOL_GPL vmlinux 0x1cfffdbd xenbus_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x1d0315a8 devm_acpi_dev_add_driver_gpios +EXPORT_SYMBOL_GPL vmlinux 0x1d15d1c7 kthread_flush_work EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state -EXPORT_SYMBOL_GPL vmlinux 0x1d2796c4 dm_internal_suspend_noflush -EXPORT_SYMBOL_GPL vmlinux 0x1d5059e2 of_genpd_parse_idle_states -EXPORT_SYMBOL_GPL vmlinux 0x1d5e5055 dax_region_put +EXPORT_SYMBOL_GPL vmlinux 0x1d27be2f da9055_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x1d29ee9c fsl_mc_portal_reset +EXPORT_SYMBOL_GPL vmlinux 0x1d2d3099 netdev_walk_all_lower_dev_rcu +EXPORT_SYMBOL_GPL vmlinux 0x1d4a703f clk_fixed_factor_ops EXPORT_SYMBOL_GPL vmlinux 0x1d6696b0 mtk_mutex_disable -EXPORT_SYMBOL_GPL vmlinux 0x1d671b76 handle_fasteoi_mask_irq -EXPORT_SYMBOL_GPL vmlinux 0x1d71ed52 scmi_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0x1d749c07 nvmem_cell_read_variable_le_u32 +EXPORT_SYMBOL_GPL vmlinux 0x1d74d2f3 pci_user_read_config_byte EXPORT_SYMBOL_GPL vmlinux 0x1d77b0f8 unix_socket_table +EXPORT_SYMBOL_GPL vmlinux 0x1d7ba836 led_trigger_blink_oneshot +EXPORT_SYMBOL_GPL vmlinux 0x1d805825 ata_host_detach EXPORT_SYMBOL_GPL vmlinux 0x1d94a218 dmi_memdev_handle -EXPORT_SYMBOL_GPL vmlinux 0x1d9f027b dma_vmap_noncontiguous -EXPORT_SYMBOL_GPL vmlinux 0x1da75528 __clk_determine_rate -EXPORT_SYMBOL_GPL vmlinux 0x1db5bd60 __auxiliary_driver_register -EXPORT_SYMBOL_GPL vmlinux 0x1dbd2532 unregister_virtio_driver -EXPORT_SYMBOL_GPL vmlinux 0x1dc9693f dprc_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x1dd4ba8b mtk_pinconf_bias_disable_set -EXPORT_SYMBOL_GPL vmlinux 0x1de472e5 regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x1da1c83d sk_msg_return_zero +EXPORT_SYMBOL_GPL vmlinux 0x1dc7cffb clk_hw_set_parent +EXPORT_SYMBOL_GPL vmlinux 0x1ddd4fd4 phy_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0x1de6c601 clk_hw_get_name +EXPORT_SYMBOL_GPL vmlinux 0x1df319d1 devm_gpiod_get_index EXPORT_SYMBOL_GPL vmlinux 0x1dfa5dbd mpi_invm -EXPORT_SYMBOL_GPL vmlinux 0x1e00ee81 kvm_set_memory_region -EXPORT_SYMBOL_GPL vmlinux 0x1e025414 copy_user_highpage EXPORT_SYMBOL_GPL vmlinux 0x1e0670c6 reset_control_release -EXPORT_SYMBOL_GPL vmlinux 0x1e09fd51 devm_rtc_allocate_device -EXPORT_SYMBOL_GPL vmlinux 0x1e0ac6f8 tpm1_do_selftest -EXPORT_SYMBOL_GPL vmlinux 0x1e139238 skb_zerocopy_iter_dgram -EXPORT_SYMBOL_GPL vmlinux 0x1e19cefe uprobe_register -EXPORT_SYMBOL_GPL vmlinux 0x1e21b518 dev_pm_genpd_set_next_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x1e31d992 sk_psock_init +EXPORT_SYMBOL_GPL vmlinux 0x1e0ac794 clk_hw_get_parent_by_index +EXPORT_SYMBOL_GPL vmlinux 0x1e12c6fd ahci_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x1e145887 ncsi_register_dev +EXPORT_SYMBOL_GPL vmlinux 0x1e421be1 divider_determine_rate EXPORT_SYMBOL_GPL vmlinux 0x1e424d61 user_preparse -EXPORT_SYMBOL_GPL vmlinux 0x1e47a165 pwm_request_from_chip EXPORT_SYMBOL_GPL vmlinux 0x1e4e98c0 acpi_dev_filter_resource_type -EXPORT_SYMBOL_GPL vmlinux 0x1e520c9a pci_dev_unlock -EXPORT_SYMBOL_GPL vmlinux 0x1e6ef092 xen_unmap_domain_gfn_range +EXPORT_SYMBOL_GPL vmlinux 0x1e5e7f43 mmu_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1e6076d6 vfs_test_lock +EXPORT_SYMBOL_GPL vmlinux 0x1e66f790 sbitmap_bitmap_show +EXPORT_SYMBOL_GPL vmlinux 0x1e69d98a dev_pm_opp_find_freq_ceil +EXPORT_SYMBOL_GPL vmlinux 0x1e6b26aa thermal_zone_of_get_sensor_id EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart EXPORT_SYMBOL_GPL vmlinux 0x1e83fee6 HYPERVISOR_physdev_op -EXPORT_SYMBOL_GPL vmlinux 0x1e8831d4 pci_enable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0x1e872c6b fib_alias_hw_flags_set +EXPORT_SYMBOL_GPL vmlinux 0x1e89cfd4 clk_register_mux_table EXPORT_SYMBOL_GPL vmlinux 0x1e8fac8e wireless_nlevent_flush -EXPORT_SYMBOL_GPL vmlinux 0x1e9708ab ehci_setup EXPORT_SYMBOL_GPL vmlinux 0x1e9872f6 sbitmap_finish_wait EXPORT_SYMBOL_GPL vmlinux 0x1e9bc719 freq_qos_update_request EXPORT_SYMBOL_GPL vmlinux 0x1e9c590a usb_find_common_endpoints_reverse -EXPORT_SYMBOL_GPL vmlinux 0x1eaebbeb devm_regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x1ea7f62e ata_dev_disable +EXPORT_SYMBOL_GPL vmlinux 0x1eaa5b61 usb_hub_claim_port +EXPORT_SYMBOL_GPL vmlinux 0x1eaab702 inet_csk_addr2sockaddr EXPORT_SYMBOL_GPL vmlinux 0x1eb9516e round_jiffies_relative -EXPORT_SYMBOL_GPL vmlinux 0x1ebe72b9 blk_mq_sched_try_insert_merge EXPORT_SYMBOL_GPL vmlinux 0x1ebf6c2a pci_power_names -EXPORT_SYMBOL_GPL vmlinux 0x1ec32c99 pci_hp_create_module_link -EXPORT_SYMBOL_GPL vmlinux 0x1ec3640c tpm_send +EXPORT_SYMBOL_GPL vmlinux 0x1ecf92ff dev_pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x1ed15f20 serdev_device_remove +EXPORT_SYMBOL_GPL vmlinux 0x1ed1b258 of_find_spi_device_by_node EXPORT_SYMBOL_GPL vmlinux 0x1ed4d2eb percpu_ref_kill_and_confirm -EXPORT_SYMBOL_GPL vmlinux 0x1edd88ab wbt_disable_default -EXPORT_SYMBOL_GPL vmlinux 0x1edf7f0f dpcon_get_attributes -EXPORT_SYMBOL_GPL vmlinux 0x1ef9ee94 bus_register -EXPORT_SYMBOL_GPL vmlinux 0x1efa5373 of_prop_next_string +EXPORT_SYMBOL_GPL vmlinux 0x1ee2423d msg_zerocopy_realloc EXPORT_SYMBOL_GPL vmlinux 0x1efaa06f __tracepoint_xhci_dbg_quirks -EXPORT_SYMBOL_GPL vmlinux 0x1f002fb5 dev_pm_opp_of_add_table_noclk -EXPORT_SYMBOL_GPL vmlinux 0x1f04b0e6 devm_clk_bulk_get_all -EXPORT_SYMBOL_GPL vmlinux 0x1f065dd7 pci_d3cold_disable -EXPORT_SYMBOL_GPL vmlinux 0x1f0793ce kobject_init_and_add -EXPORT_SYMBOL_GPL vmlinux 0x1f095e99 kobject_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0x1f087c1a devlink_param_unregister EXPORT_SYMBOL_GPL vmlinux 0x1f0cb5bf pm_power_off_prepare +EXPORT_SYMBOL_GPL vmlinux 0x1f13e381 devm_regmap_field_bulk_alloc EXPORT_SYMBOL_GPL vmlinux 0x1f1cc011 zynqmp_pm_get_chipid -EXPORT_SYMBOL_GPL vmlinux 0x1f279849 of_thermal_get_trip_points -EXPORT_SYMBOL_GPL vmlinux 0x1f2d279c do_unbind_con_driver -EXPORT_SYMBOL_GPL vmlinux 0x1f35ed1a usb_store_new_id EXPORT_SYMBOL_GPL vmlinux 0x1f38a4f6 mpi_set_highbit -EXPORT_SYMBOL_GPL vmlinux 0x1f3e4156 devm_remove_action +EXPORT_SYMBOL_GPL vmlinux 0x1f43a29c __strp_unpause EXPORT_SYMBOL_GPL vmlinux 0x1f449588 mctrl_gpio_disable_ms -EXPORT_SYMBOL_GPL vmlinux 0x1f544339 __fscrypt_prepare_link +EXPORT_SYMBOL_GPL vmlinux 0x1f45e1dc dev_pm_opp_find_freq_floor +EXPORT_SYMBOL_GPL vmlinux 0x1f561a68 dpcon_close EXPORT_SYMBOL_GPL vmlinux 0x1f563160 bpf_offload_dev_priv -EXPORT_SYMBOL_GPL vmlinux 0x1f58dce2 ip6_datagram_recv_ctl -EXPORT_SYMBOL_GPL vmlinux 0x1f66c858 unregister_wide_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x1f6b2478 path_noexec +EXPORT_SYMBOL_GPL vmlinux 0x1f6d7b83 usb_sg_wait +EXPORT_SYMBOL_GPL vmlinux 0x1f73e1c5 pwm_get EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout -EXPORT_SYMBOL_GPL vmlinux 0x1f9749b8 pci_rescan_bus +EXPORT_SYMBOL_GPL vmlinux 0x1f89daf4 tegra_bpmp_mrq_return +EXPORT_SYMBOL_GPL vmlinux 0x1f8f2f87 i2c_of_match_device +EXPORT_SYMBOL_GPL vmlinux 0x1f914e3f switchdev_handle_fdb_add_to_device +EXPORT_SYMBOL_GPL vmlinux 0x1f99cf32 ahci_platform_resume_host EXPORT_SYMBOL_GPL vmlinux 0x1f9a2b53 zynqmp_pm_clock_enable -EXPORT_SYMBOL_GPL vmlinux 0x1f9b1948 usb_interrupt_msg -EXPORT_SYMBOL_GPL vmlinux 0x1fa0ae9c crypto_register_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x1f9bc158 cpci_hp_register_bus EXPORT_SYMBOL_GPL vmlinux 0x1fa1d95c sha256_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x1fb18374 ping_seq_start EXPORT_SYMBOL_GPL vmlinux 0x1fb70eb9 gnttab_end_foreign_transfer_ref -EXPORT_SYMBOL_GPL vmlinux 0x1fd6739b sdio_enable_func -EXPORT_SYMBOL_GPL vmlinux 0x1fd6ae08 blk_trace_setup +EXPORT_SYMBOL_GPL vmlinux 0x1fbe2370 regmap_field_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0x1fc396fb gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x1fc6c081 pci_generic_config_write32 +EXPORT_SYMBOL_GPL vmlinux 0x1fccdf58 da903x_update +EXPORT_SYMBOL_GPL vmlinux 0x1fcece51 ncsi_vlan_rx_kill_vid +EXPORT_SYMBOL_GPL vmlinux 0x1fd655ae serdev_device_write_wakeup EXPORT_SYMBOL_GPL vmlinux 0x1fdb2501 poll_state_synchronize_srcu EXPORT_SYMBOL_GPL vmlinux 0x1fe6e504 gpiod_add_hogs -EXPORT_SYMBOL_GPL vmlinux 0x2009c6e1 key_type_trusted +EXPORT_SYMBOL_GPL vmlinux 0x1fea27e9 regmap_write +EXPORT_SYMBOL_GPL vmlinux 0x2000d3c9 uhci_check_and_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0x200559b4 shmem_read_mapping_page_gfp EXPORT_SYMBOL_GPL vmlinux 0x2009e400 devlink_info_board_serial_number_put -EXPORT_SYMBOL_GPL vmlinux 0x2027eccd irq_chip_enable_parent +EXPORT_SYMBOL_GPL vmlinux 0x200a4d6f of_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0x200add68 sata_scr_write_flush +EXPORT_SYMBOL_GPL vmlinux 0x200f52e1 xenbus_alloc_evtchn EXPORT_SYMBOL_GPL vmlinux 0x202d4ed6 nvmem_cell_write -EXPORT_SYMBOL_GPL vmlinux 0x202fdf21 eventfd_fget -EXPORT_SYMBOL_GPL vmlinux 0x2031e4f3 skb_zerocopy -EXPORT_SYMBOL_GPL vmlinux 0x20327b46 __fl6_sock_lookup -EXPORT_SYMBOL_GPL vmlinux 0x20356b9f class_find_device -EXPORT_SYMBOL_GPL vmlinux 0x203ecac5 of_dma_xlate_by_chan_id -EXPORT_SYMBOL_GPL vmlinux 0x20419693 transport_setup_device -EXPORT_SYMBOL_GPL vmlinux 0x2049e5e8 kvm_vcpu_mark_page_dirty -EXPORT_SYMBOL_GPL vmlinux 0x204bc28b tpm_default_chip -EXPORT_SYMBOL_GPL vmlinux 0x204caa49 regmap_mmio_attach_clk +EXPORT_SYMBOL_GPL vmlinux 0x202e3532 xhci_reset_bandwidth +EXPORT_SYMBOL_GPL vmlinux 0x20301f29 do_unregister_con_driver +EXPORT_SYMBOL_GPL vmlinux 0x203268e8 pinctrl_generic_get_group +EXPORT_SYMBOL_GPL vmlinux 0x203ed8ad ata_bmdma_dumb_qc_prep EXPORT_SYMBOL_GPL vmlinux 0x204f2c5c gnttab_free_grant_reference -EXPORT_SYMBOL_GPL vmlinux 0x2050e648 cpufreq_cpu_get_raw -EXPORT_SYMBOL_GPL vmlinux 0x20647430 crypto_drop_spawn -EXPORT_SYMBOL_GPL vmlinux 0x206b94aa verify_signature -EXPORT_SYMBOL_GPL vmlinux 0x2073b9b4 dev_pm_qos_expose_flags -EXPORT_SYMBOL_GPL vmlinux 0x2081918c crypto_register_rng +EXPORT_SYMBOL_GPL vmlinux 0x205db99b cpufreq_dbs_governor_start +EXPORT_SYMBOL_GPL vmlinux 0x206aaf99 serial8250_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0x206feed7 fsl_mc_resource_allocate EXPORT_SYMBOL_GPL vmlinux 0x20835a9f __xdp_release_frame -EXPORT_SYMBOL_GPL vmlinux 0x20852f3c fwnode_remove_software_node -EXPORT_SYMBOL_GPL vmlinux 0x20905107 ata_pci_device_resume +EXPORT_SYMBOL_GPL vmlinux 0x20949d04 set_selection_kernel EXPORT_SYMBOL_GPL vmlinux 0x20978fb9 idr_find -EXPORT_SYMBOL_GPL vmlinux 0x209c30ce devfreq_event_set_event -EXPORT_SYMBOL_GPL vmlinux 0x20a24e95 crypto_stats_skcipher_decrypt -EXPORT_SYMBOL_GPL vmlinux 0x20bf0c2d ip_valid_fib_dump_req -EXPORT_SYMBOL_GPL vmlinux 0x20dbf96e percpu_free_rwsem -EXPORT_SYMBOL_GPL vmlinux 0x20ee3382 spi_mem_dirmap_destroy -EXPORT_SYMBOL_GPL vmlinux 0x20f6e9ee devlink_traps_unregister +EXPORT_SYMBOL_GPL vmlinux 0x20a4ade9 phy_set_media +EXPORT_SYMBOL_GPL vmlinux 0x20c80d5f serdev_device_write +EXPORT_SYMBOL_GPL vmlinux 0x20c99ea9 mmc_pwrseq_unregister +EXPORT_SYMBOL_GPL vmlinux 0x20cd4c20 clean_acked_data_enable +EXPORT_SYMBOL_GPL vmlinux 0x20d27ee2 extcon_set_property +EXPORT_SYMBOL_GPL vmlinux 0x20d4c4ac sock_diag_unregister +EXPORT_SYMBOL_GPL vmlinux 0x20ee1308 ata_noop_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x20f1f763 fib_nl_delrule EXPORT_SYMBOL_GPL vmlinux 0x20fc44ac serdev_acpi_get_uart_resource -EXPORT_SYMBOL_GPL vmlinux 0x2108c5fc unregister_virtio_device -EXPORT_SYMBOL_GPL vmlinux 0x210d149a ata_scsi_queuecmd -EXPORT_SYMBOL_GPL vmlinux 0x211b1740 acpiphp_register_attention -EXPORT_SYMBOL_GPL vmlinux 0x212594ba device_remove_properties -EXPORT_SYMBOL_GPL vmlinux 0x212c622f __class_register -EXPORT_SYMBOL_GPL vmlinux 0x2136c7a3 of_phy_put -EXPORT_SYMBOL_GPL vmlinux 0x21397e3b devm_usb_get_phy_by_node +EXPORT_SYMBOL_GPL vmlinux 0x212867fd disk_force_media_change +EXPORT_SYMBOL_GPL vmlinux 0x213ac010 evm_verifyxattr +EXPORT_SYMBOL_GPL vmlinux 0x213f03ac ip_icmp_error_rfc4884 +EXPORT_SYMBOL_GPL vmlinux 0x21549d23 __pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0x21682dbf irq_chip_mask_ack_parent +EXPORT_SYMBOL_GPL vmlinux 0x216c78c2 genphy_c45_pma_read_abilities EXPORT_SYMBOL_GPL vmlinux 0x216de4e1 rcu_get_gp_kthreads_prio EXPORT_SYMBOL_GPL vmlinux 0x216df332 tracepoint_srcu +EXPORT_SYMBOL_GPL vmlinux 0x216eaf78 invalidate_inode_pages2 EXPORT_SYMBOL_GPL vmlinux 0x2176e42a hwpoison_filter_memcg -EXPORT_SYMBOL_GPL vmlinux 0x217d9718 pinctrl_utils_add_map_configs +EXPORT_SYMBOL_GPL vmlinux 0x2185c350 __devres_alloc_node +EXPORT_SYMBOL_GPL vmlinux 0x21868090 ip6_flush_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x21955938 firmware_request_cache +EXPORT_SYMBOL_GPL vmlinux 0x21998bc6 sysfs_remove_link +EXPORT_SYMBOL_GPL vmlinux 0x219dfdbc dm_set_target_max_io_len EXPORT_SYMBOL_GPL vmlinux 0x21a563da clk_get_accuracy -EXPORT_SYMBOL_GPL vmlinux 0x21a800d2 netlink_strict_get_check EXPORT_SYMBOL_GPL vmlinux 0x21ac8b77 iommu_group_get_by_id -EXPORT_SYMBOL_GPL vmlinux 0x21ac950e clk_hw_get_rate +EXPORT_SYMBOL_GPL vmlinux 0x21b26d38 software_node_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x21b7e7c7 ata_pci_device_suspend +EXPORT_SYMBOL_GPL vmlinux 0x21b83e7b ahci_print_info EXPORT_SYMBOL_GPL vmlinux 0x21c34c8f gnttab_end_foreign_transfer EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher EXPORT_SYMBOL_GPL vmlinux 0x21ce3ed1 dev_fetch_sw_netstats -EXPORT_SYMBOL_GPL vmlinux 0x21cfbab4 blkdev_report_zones -EXPORT_SYMBOL_GPL vmlinux 0x21e9f1ac serdev_device_add -EXPORT_SYMBOL_GPL vmlinux 0x21fc2063 pm_generic_thaw_early +EXPORT_SYMBOL_GPL vmlinux 0x21d3af7e meson_axg_pmx_ops +EXPORT_SYMBOL_GPL vmlinux 0x21d7d322 devlink_params_unpublish +EXPORT_SYMBOL_GPL vmlinux 0x21dfb329 devlink_sb_register +EXPORT_SYMBOL_GPL vmlinux 0x21e8ac38 sata_link_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x21ef7860 dev_coredumpsg +EXPORT_SYMBOL_GPL vmlinux 0x21f6ac3c pci_platform_power_transition EXPORT_SYMBOL_GPL vmlinux 0x2200061c __tracepoint_pelt_irq_tp -EXPORT_SYMBOL_GPL vmlinux 0x2204ffdf uprobe_unregister +EXPORT_SYMBOL_GPL vmlinux 0x22092f90 modify_user_hw_breakpoint EXPORT_SYMBOL_GPL vmlinux 0x220ce70c kvm_arm_hyp_service_available -EXPORT_SYMBOL_GPL vmlinux 0x220e0c3b devm_gpiochip_add_data_with_key EXPORT_SYMBOL_GPL vmlinux 0x2211a4c0 blk_op_str +EXPORT_SYMBOL_GPL vmlinux 0x2216601f devm_thermal_zone_of_sensor_register EXPORT_SYMBOL_GPL vmlinux 0x221eab6d scatterwalk_copychunks -EXPORT_SYMBOL_GPL vmlinux 0x223e8826 metadata_dst_free -EXPORT_SYMBOL_GPL vmlinux 0x2240d653 udp4_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x2248a383 virtqueue_add_inbuf_ctx +EXPORT_SYMBOL_GPL vmlinux 0x2249e826 gpiochip_remove EXPORT_SYMBOL_GPL vmlinux 0x224f51bf nvmem_device_cell_read -EXPORT_SYMBOL_GPL vmlinux 0x227359fb of_clk_add_hw_provider -EXPORT_SYMBOL_GPL vmlinux 0x227488b8 pm_generic_resume_noirq -EXPORT_SYMBOL_GPL vmlinux 0x22ae7fcc devm_device_add_group -EXPORT_SYMBOL_GPL vmlinux 0x22af14e6 regulator_get -EXPORT_SYMBOL_GPL vmlinux 0x22b7e72c pinctrl_register_and_init -EXPORT_SYMBOL_GPL vmlinux 0x22babd22 hwmon_notify_event -EXPORT_SYMBOL_GPL vmlinux 0x22be8405 vfs_write -EXPORT_SYMBOL_GPL vmlinux 0x22c21f8e __devm_pci_epc_create -EXPORT_SYMBOL_GPL vmlinux 0x22c80101 fwnode_graph_get_remote_node +EXPORT_SYMBOL_GPL vmlinux 0x22554860 component_master_add_with_match +EXPORT_SYMBOL_GPL vmlinux 0x2255c79d mmc_app_cmd +EXPORT_SYMBOL_GPL vmlinux 0x226d18aa dev_pm_opp_get_max_volt_latency +EXPORT_SYMBOL_GPL vmlinux 0x227f8061 debugfs_create_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x228c25c9 mtk_pinconf_drive_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x229a26be serdev_device_wait_until_sent +EXPORT_SYMBOL_GPL vmlinux 0x22c1a976 pm_clk_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x22c59b05 pci_generic_ecam_ops +EXPORT_SYMBOL_GPL vmlinux 0x22cfc239 class_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x22d316ae irq_chip_set_affinity_parent EXPORT_SYMBOL_GPL vmlinux 0x22d60537 tcf_frag_xmit_count -EXPORT_SYMBOL_GPL vmlinux 0x22d755a9 gfn_to_pfn_prot EXPORT_SYMBOL_GPL vmlinux 0x22d9409b iomap_sort_ioends -EXPORT_SYMBOL_GPL vmlinux 0x22da0c16 set_online_page_callback +EXPORT_SYMBOL_GPL vmlinux 0x22e8e760 vp_modern_generation EXPORT_SYMBOL_GPL vmlinux 0x22ec5205 cpu_latency_qos_remove_request -EXPORT_SYMBOL_GPL vmlinux 0x22f5a20b bpf_offload_dev_match -EXPORT_SYMBOL_GPL vmlinux 0x22f6b6a1 skcipher_walk_aead_encrypt -EXPORT_SYMBOL_GPL vmlinux 0x22f83b64 regulator_get_voltage_sel_pickable_regmap EXPORT_SYMBOL_GPL vmlinux 0x22fd08ba cpuacct_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x23147108 pci_hp_remove_module_link +EXPORT_SYMBOL_GPL vmlinux 0x230ae684 get_net_ns +EXPORT_SYMBOL_GPL vmlinux 0x230b5c9e blk_clear_pm_only +EXPORT_SYMBOL_GPL vmlinux 0x230d72ae devm_hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x2325352a ata_sff_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x232f305d usb_phy_set_charger_current EXPORT_SYMBOL_GPL vmlinux 0x23412816 rtc_tm_to_ktime +EXPORT_SYMBOL_GPL vmlinux 0x2345aa90 bpf_prog_create EXPORT_SYMBOL_GPL vmlinux 0x234cf416 devlink_fmsg_string_pair_put -EXPORT_SYMBOL_GPL vmlinux 0x234d3bb0 usb_enable_intel_xhci_ports -EXPORT_SYMBOL_GPL vmlinux 0x234e36cd virtio_device_freeze -EXPORT_SYMBOL_GPL vmlinux 0x234f2b09 fsnotify_get_group -EXPORT_SYMBOL_GPL vmlinux 0x23724c84 of_pm_clk_add_clk +EXPORT_SYMBOL_GPL vmlinux 0x235f3fe5 __traceiter_br_fdb_update +EXPORT_SYMBOL_GPL vmlinux 0x236b9f09 synth_event_trace_start +EXPORT_SYMBOL_GPL vmlinux 0x236d58f7 crypto_grab_spawn EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node EXPORT_SYMBOL_GPL vmlinux 0x2396c7f0 clk_set_parent -EXPORT_SYMBOL_GPL vmlinux 0x23987368 tcp_register_ulp -EXPORT_SYMBOL_GPL vmlinux 0x23a821d4 lwtunnel_xmit -EXPORT_SYMBOL_GPL vmlinux 0x23adc722 gpiod_export -EXPORT_SYMBOL_GPL vmlinux 0x23b7e5c4 crypto_stats_decompress -EXPORT_SYMBOL_GPL vmlinux 0x23d5281e crypto_comp_compress -EXPORT_SYMBOL_GPL vmlinux 0x23dd6518 __auxiliary_device_add -EXPORT_SYMBOL_GPL vmlinux 0x23e975db ata_sff_dev_select -EXPORT_SYMBOL_GPL vmlinux 0x23ec01cb devm_gpiod_get_array -EXPORT_SYMBOL_GPL vmlinux 0x23f4a87d xdp_attachment_setup -EXPORT_SYMBOL_GPL vmlinux 0x24098976 smpboot_register_percpu_thread -EXPORT_SYMBOL_GPL vmlinux 0x240d2188 nf_queue -EXPORT_SYMBOL_GPL vmlinux 0x240e980a ata_msleep -EXPORT_SYMBOL_GPL vmlinux 0x241cc3ef lwtunnel_encap_add_ops -EXPORT_SYMBOL_GPL vmlinux 0x241eeda3 sch_frag_xmit_hook +EXPORT_SYMBOL_GPL vmlinux 0x23a39647 da9052_disable_irq_nosync +EXPORT_SYMBOL_GPL vmlinux 0x23c7522e of_pci_dma_range_parser_init +EXPORT_SYMBOL_GPL vmlinux 0x23c75f10 sk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x23e52907 __devm_rtc_register_device +EXPORT_SYMBOL_GPL vmlinux 0x23ec6b91 sata_pmp_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x2407d211 phy_pm_runtime_put +EXPORT_SYMBOL_GPL vmlinux 0x240b4ad6 i2c_handle_smbus_host_notify +EXPORT_SYMBOL_GPL vmlinux 0x240f5c90 devlink_param_driverinit_value_set +EXPORT_SYMBOL_GPL vmlinux 0x2419f225 scsi_get_vpd_page +EXPORT_SYMBOL_GPL vmlinux 0x241c40c2 pci_get_dsn +EXPORT_SYMBOL_GPL vmlinux 0x241cf8f3 iomap_bmap +EXPORT_SYMBOL_GPL vmlinux 0x241ecfb3 crypto_register_alg EXPORT_SYMBOL_GPL vmlinux 0x2421097b mpi_const -EXPORT_SYMBOL_GPL vmlinux 0x242405ea crypto_stats_akcipher_sign -EXPORT_SYMBOL_GPL vmlinux 0x24251455 devm_hwspin_lock_free -EXPORT_SYMBOL_GPL vmlinux 0x243202da tpm_transmit_cmd -EXPORT_SYMBOL_GPL vmlinux 0x2434a206 serial8250_init_port -EXPORT_SYMBOL_GPL vmlinux 0x24428cd4 dev_pm_qos_hide_latency_limit -EXPORT_SYMBOL_GPL vmlinux 0x244a9a43 iopf_queue_remove_device -EXPORT_SYMBOL_GPL vmlinux 0x2451e214 extcon_get_property -EXPORT_SYMBOL_GPL vmlinux 0x2460aa75 dpbp_close -EXPORT_SYMBOL_GPL vmlinux 0x2463a03c ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0x2425a94f pm_generic_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x242b3ccb devm_nvmem_device_put +EXPORT_SYMBOL_GPL vmlinux 0x243515d1 nvdimm_blk_region_create +EXPORT_SYMBOL_GPL vmlinux 0x24401ffa rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0x24408b95 k3_udma_glue_rx_get_dma_device +EXPORT_SYMBOL_GPL vmlinux 0x2446d346 crypto_shash_alg_has_setkey +EXPORT_SYMBOL_GPL vmlinux 0x24512d1e __auxiliary_driver_register EXPORT_SYMBOL_GPL vmlinux 0x2464da17 gen_pool_size EXPORT_SYMBOL_GPL vmlinux 0x24709b2f trace_seq_putmem -EXPORT_SYMBOL_GPL vmlinux 0x2474c2b7 devm_spi_mem_dirmap_destroy +EXPORT_SYMBOL_GPL vmlinux 0x2481ad92 extcon_dev_register EXPORT_SYMBOL_GPL vmlinux 0x2484e789 vbin_printf +EXPORT_SYMBOL_GPL vmlinux 0x24883733 ata_bmdma_irq_clear EXPORT_SYMBOL_GPL vmlinux 0x248bc867 raw_notifier_call_chain_robust EXPORT_SYMBOL_GPL vmlinux 0x248e1473 kfree_strarray -EXPORT_SYMBOL_GPL vmlinux 0x249c8515 dst_blackhole_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x24972bfe iommu_enable_nesting +EXPORT_SYMBOL_GPL vmlinux 0x2499f53a of_genpd_remove_last +EXPORT_SYMBOL_GPL vmlinux 0x249e867d dm_internal_resume EXPORT_SYMBOL_GPL vmlinux 0x24ad11db wakeup_sources_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0x24b82994 vcpu_put -EXPORT_SYMBOL_GPL vmlinux 0x24b97ad5 device_remove_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x24d9f0a8 rio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x24b75e2e locks_alloc_lock +EXPORT_SYMBOL_GPL vmlinux 0x24b7a649 ping_get_port +EXPORT_SYMBOL_GPL vmlinux 0x24c1cf41 blkdev_zone_mgmt +EXPORT_SYMBOL_GPL vmlinux 0x24c359ec ahci_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x24c9d9ba spi_mem_adjust_op_size +EXPORT_SYMBOL_GPL vmlinux 0x24d02ac9 devm_of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0x24d0df85 pfn_to_online_page EXPORT_SYMBOL_GPL vmlinux 0x24da0093 rcu_inkernel_boot_has_ended -EXPORT_SYMBOL_GPL vmlinux 0x24e702ca gpiochip_enable_irq -EXPORT_SYMBOL_GPL vmlinux 0x24e8ea99 crypto_register_template -EXPORT_SYMBOL_GPL vmlinux 0x24ea51db key_type_logon EXPORT_SYMBOL_GPL vmlinux 0x24eb7e32 leds_list EXPORT_SYMBOL_GPL vmlinux 0x24f39c39 reset_control_reset +EXPORT_SYMBOL_GPL vmlinux 0x24f4c61b led_update_brightness EXPORT_SYMBOL_GPL vmlinux 0x24f63dcf ata_xfer_mask2mode EXPORT_SYMBOL_GPL vmlinux 0x24fc50f4 kdb_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2508e4f9 elv_rqhash_del +EXPORT_SYMBOL_GPL vmlinux 0x250aa5a9 da9052_request_irq +EXPORT_SYMBOL_GPL vmlinux 0x25103099 xenbus_dev_error +EXPORT_SYMBOL_GPL vmlinux 0x2512189c fat_sync_inode +EXPORT_SYMBOL_GPL vmlinux 0x251c6d03 serial8250_do_set_ldisc EXPORT_SYMBOL_GPL vmlinux 0x25301bc6 arch_wb_cache_pmem +EXPORT_SYMBOL_GPL vmlinux 0x2536b3f9 cpufreq_dbs_governor_limits EXPORT_SYMBOL_GPL vmlinux 0x25379e73 clk_set_min_rate -EXPORT_SYMBOL_GPL vmlinux 0x253b0ad9 xfrm_audit_state_replay_overflow -EXPORT_SYMBOL_GPL vmlinux 0x25728631 dev_pm_opp_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0x25425bc5 regmap_irq_get_domain +EXPORT_SYMBOL_GPL vmlinux 0x255cbe8a inet_twsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x2561e5aa da903x_reads +EXPORT_SYMBOL_GPL vmlinux 0x2566fb22 of_clk_get_parent_name +EXPORT_SYMBOL_GPL vmlinux 0x2574ab54 usb_disable_autosuspend EXPORT_SYMBOL_GPL vmlinux 0x2574da11 zynqmp_pm_write_pggs -EXPORT_SYMBOL_GPL vmlinux 0x258d2a81 dummy_con -EXPORT_SYMBOL_GPL vmlinux 0x258ea7b0 devlink_is_reload_failed -EXPORT_SYMBOL_GPL vmlinux 0x259116d8 wwan_unregister_ops +EXPORT_SYMBOL_GPL vmlinux 0x25856f7c scsi_free_sgtables +EXPORT_SYMBOL_GPL vmlinux 0x258a50de blockdev_superblock +EXPORT_SYMBOL_GPL vmlinux 0x258d999e kvm_release_page_dirty EXPORT_SYMBOL_GPL vmlinux 0x2592fc6c console_printk -EXPORT_SYMBOL_GPL vmlinux 0x25a2d105 mptcp_get_reset_option -EXPORT_SYMBOL_GPL vmlinux 0x25a83002 pm_clk_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0x25a86379 ohci_restart +EXPORT_SYMBOL_GPL vmlinux 0x25aab0c5 fsnotify_add_mark +EXPORT_SYMBOL_GPL vmlinux 0x25b81824 __traceiter_pelt_se_tp EXPORT_SYMBOL_GPL vmlinux 0x25bbfa9a security_kernel_load_data -EXPORT_SYMBOL_GPL vmlinux 0x25cacfc1 dequeue_signal -EXPORT_SYMBOL_GPL vmlinux 0x25cbebfd scsi_mode_select -EXPORT_SYMBOL_GPL vmlinux 0x25cdc7d9 sock_diag_put_meminfo -EXPORT_SYMBOL_GPL vmlinux 0x25d0bcbe devm_nvmem_device_put -EXPORT_SYMBOL_GPL vmlinux 0x25d43ed8 pci_load_and_free_saved_state -EXPORT_SYMBOL_GPL vmlinux 0x25ff31be ahci_save_initial_config -EXPORT_SYMBOL_GPL vmlinux 0x26085fe5 wbc_account_cgroup_owner -EXPORT_SYMBOL_GPL vmlinux 0x260c7834 regulator_suspend_disable -EXPORT_SYMBOL_GPL vmlinux 0x26135ed6 tpm_is_tpm2 -EXPORT_SYMBOL_GPL vmlinux 0x2625cb36 __pci_reset_function_locked -EXPORT_SYMBOL_GPL vmlinux 0x2633824e regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x25bdc2b9 spi_get_next_queued_message +EXPORT_SYMBOL_GPL vmlinux 0x25c17561 inode_congested +EXPORT_SYMBOL_GPL vmlinux 0x25f0c864 page_cache_ra_unbounded +EXPORT_SYMBOL_GPL vmlinux 0x25f81f0c pci_walk_bus +EXPORT_SYMBOL_GPL vmlinux 0x2602d89e dev_pm_opp_get_level +EXPORT_SYMBOL_GPL vmlinux 0x261c851d show_class_attr_string +EXPORT_SYMBOL_GPL vmlinux 0x2630828c of_clk_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0x26376398 perf_event_period +EXPORT_SYMBOL_GPL vmlinux 0x26393ba4 __pm_runtime_idle EXPORT_SYMBOL_GPL vmlinux 0x263f039e xas_nomem -EXPORT_SYMBOL_GPL vmlinux 0x263fd116 devm_hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x264a527e fb_deferred_io_open +EXPORT_SYMBOL_GPL vmlinux 0x26512301 badblocks_set +EXPORT_SYMBOL_GPL vmlinux 0x2651d0c4 pci_reset_bus EXPORT_SYMBOL_GPL vmlinux 0x26520970 vm_memory_committed +EXPORT_SYMBOL_GPL vmlinux 0x2652bdec bpf_trace_run8 EXPORT_SYMBOL_GPL vmlinux 0x265bbef9 kexec_crash_loaded -EXPORT_SYMBOL_GPL vmlinux 0x265e1b91 devres_open_group -EXPORT_SYMBOL_GPL vmlinux 0x26605d90 of_property_count_elems_of_size EXPORT_SYMBOL_GPL vmlinux 0x266a4b08 tasklet_unlock +EXPORT_SYMBOL_GPL vmlinux 0x266bbe37 of_nvmem_cell_get +EXPORT_SYMBOL_GPL vmlinux 0x266bf657 mptcp_token_iter_next EXPORT_SYMBOL_GPL vmlinux 0x267df662 smp_call_on_cpu -EXPORT_SYMBOL_GPL vmlinux 0x2689bcee gov_attr_set_get -EXPORT_SYMBOL_GPL vmlinux 0x268cf8ba __traceiter_devlink_hwerr -EXPORT_SYMBOL_GPL vmlinux 0x26a22c2f elv_rqhash_del -EXPORT_SYMBOL_GPL vmlinux 0x26a888e7 sdio_readl +EXPORT_SYMBOL_GPL vmlinux 0x268404e8 irq_generic_chip_ops EXPORT_SYMBOL_GPL vmlinux 0x26a93eb2 verify_pkcs7_signature EXPORT_SYMBOL_GPL vmlinux 0x26ab4755 put_old_itimerspec32 -EXPORT_SYMBOL_GPL vmlinux 0x26ac928e spi_res_add -EXPORT_SYMBOL_GPL vmlinux 0x26aebac8 iomap_ioend_try_merge -EXPORT_SYMBOL_GPL vmlinux 0x26c6c04d regulator_suspend_enable +EXPORT_SYMBOL_GPL vmlinux 0x26c45602 regmap_test_bits +EXPORT_SYMBOL_GPL vmlinux 0x26c85604 sysfs_remove_mount_point EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense -EXPORT_SYMBOL_GPL vmlinux 0x26cbf41a ata_wait_after_reset -EXPORT_SYMBOL_GPL vmlinux 0x26d38bd4 of_clk_del_provider +EXPORT_SYMBOL_GPL vmlinux 0x26cc50b1 pm_generic_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0x26d27056 irq_set_default_host +EXPORT_SYMBOL_GPL vmlinux 0x26e481a1 tpm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0x26e74dde amba_device_put EXPORT_SYMBOL_GPL vmlinux 0x26ed2186 register_vmap_purge_notifier -EXPORT_SYMBOL_GPL vmlinux 0x26f786d7 sk_free_unlock_clone -EXPORT_SYMBOL_GPL vmlinux 0x27009b9d sk_msg_free_nocharge -EXPORT_SYMBOL_GPL vmlinux 0x27015d61 sdio_retune_crc_enable +EXPORT_SYMBOL_GPL vmlinux 0x26fe2ce9 thermal_cooling_device_unregister EXPORT_SYMBOL_GPL vmlinux 0x2701953f mtk_mutex_add_comp EXPORT_SYMBOL_GPL vmlinux 0x27046576 kvm_exit -EXPORT_SYMBOL_GPL vmlinux 0x2721523f posix_acl_default_xattr_handler -EXPORT_SYMBOL_GPL vmlinux 0x27238e21 ip6_dst_lookup +EXPORT_SYMBOL_GPL vmlinux 0x2707b661 xenbus_dev_remove +EXPORT_SYMBOL_GPL vmlinux 0x27091319 regulator_set_soft_start_regmap +EXPORT_SYMBOL_GPL vmlinux 0x2710379e hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x271497e1 scsi_autopm_put_device +EXPORT_SYMBOL_GPL vmlinux 0x271fc521 __alloc_pages_bulk +EXPORT_SYMBOL_GPL vmlinux 0x2728a6da devlink_reload_disable EXPORT_SYMBOL_GPL vmlinux 0x272e9d77 hisi_reset_exit -EXPORT_SYMBOL_GPL vmlinux 0x2736c1ab ping_common_sendmsg -EXPORT_SYMBOL_GPL vmlinux 0x273c5cf9 tty_set_ldisc -EXPORT_SYMBOL_GPL vmlinux 0x27408f7b mmu_notifier_put -EXPORT_SYMBOL_GPL vmlinux 0x274d2cd1 ata_pci_bmdma_init_one +EXPORT_SYMBOL_GPL vmlinux 0x273a5770 __traceiter_pelt_irq_tp +EXPORT_SYMBOL_GPL vmlinux 0x27456583 sysfs_update_group EXPORT_SYMBOL_GPL vmlinux 0x274dd1a3 sg_free_table_chained -EXPORT_SYMBOL_GPL vmlinux 0x27544b85 netdev_rx_handler_register -EXPORT_SYMBOL_GPL vmlinux 0x276bff10 clk_mux_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x27559126 wb_writeout_inc EXPORT_SYMBOL_GPL vmlinux 0x2773c485 __wake_up_locked -EXPORT_SYMBOL_GPL vmlinux 0x277aeae5 serial8250_rpm_get_tx -EXPORT_SYMBOL_GPL vmlinux 0x27878e5d tty_kclose -EXPORT_SYMBOL_GPL vmlinux 0x278cda24 ata_bmdma_port_start -EXPORT_SYMBOL_GPL vmlinux 0x279c4d65 devlink_port_params_unregister -EXPORT_SYMBOL_GPL vmlinux 0x279fdb2e ti_sci_get_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x27a013f4 fwnode_graph_get_remote_port_parent -EXPORT_SYMBOL_GPL vmlinux 0x27a1f416 dev_pm_opp_of_add_table -EXPORT_SYMBOL_GPL vmlinux 0x27a51746 class_create_file_ns -EXPORT_SYMBOL_GPL vmlinux 0x27bb69d3 pm_runtime_autosuspend_expiration -EXPORT_SYMBOL_GPL vmlinux 0x27bd5d36 page_cache_ra_unbounded -EXPORT_SYMBOL_GPL vmlinux 0x27be785f regulator_get_hardware_vsel_register -EXPORT_SYMBOL_GPL vmlinux 0x27c12282 iommu_uapi_sva_unbind_gpasid -EXPORT_SYMBOL_GPL vmlinux 0x27c74d9b irq_chip_set_vcpu_affinity_parent -EXPORT_SYMBOL_GPL vmlinux 0x27cde84d pinmux_generic_remove_function -EXPORT_SYMBOL_GPL vmlinux 0x27d41283 usb_remove_hcd +EXPORT_SYMBOL_GPL vmlinux 0x2782f0ac devres_close_group +EXPORT_SYMBOL_GPL vmlinux 0x27843e2f is_swiotlb_active +EXPORT_SYMBOL_GPL vmlinux 0x2787563d __traceiter_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0x278d2cf5 dpcon_get_attributes +EXPORT_SYMBOL_GPL vmlinux 0x2794d347 devlink_resource_register +EXPORT_SYMBOL_GPL vmlinux 0x27bcd276 kobject_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0x27cb3147 device_driver_attach +EXPORT_SYMBOL_GPL vmlinux 0x27dc8d72 init_dummy_netdev EXPORT_SYMBOL_GPL vmlinux 0x27dc9471 __tracepoint_br_fdb_update -EXPORT_SYMBOL_GPL vmlinux 0x27e52c7c acpi_subsys_complete -EXPORT_SYMBOL_GPL vmlinux 0x27f27b13 power_supply_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0x27dfe4d1 dax_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x27ea1510 devm_spi_mem_dirmap_create +EXPORT_SYMBOL_GPL vmlinux 0x27ec0d0d pci_intx +EXPORT_SYMBOL_GPL vmlinux 0x27eebb9f irq_domain_xlate_twocell +EXPORT_SYMBOL_GPL vmlinux 0x27eec8b4 __devm_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x27f1aa31 ethnl_cable_test_free EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter +EXPORT_SYMBOL_GPL vmlinux 0x27f5b0bc ehci_setup +EXPORT_SYMBOL_GPL vmlinux 0x27f6b74b regulator_get_voltage_sel_regmap EXPORT_SYMBOL_GPL vmlinux 0x27fa66e1 nr_free_buffer_pages EXPORT_SYMBOL_GPL vmlinux 0x27fd4f87 gfn_to_hva_memslot EXPORT_SYMBOL_GPL vmlinux 0x2817f7fd cppc_get_desired_perf -EXPORT_SYMBOL_GPL vmlinux 0x281d38f5 pwm_adjust_config -EXPORT_SYMBOL_GPL vmlinux 0x2823b563 dst_cache_get +EXPORT_SYMBOL_GPL vmlinux 0x28208aa2 pwm_free +EXPORT_SYMBOL_GPL vmlinux 0x282c53ae acpi_set_modalias EXPORT_SYMBOL_GPL vmlinux 0x282cdabc usb_led_activity -EXPORT_SYMBOL_GPL vmlinux 0x282ce952 fsverity_ioctl_enable -EXPORT_SYMBOL_GPL vmlinux 0x283b046f pci_disable_sriov -EXPORT_SYMBOL_GPL vmlinux 0x28420ad7 pin_user_pages_fast -EXPORT_SYMBOL_GPL vmlinux 0x28463b8d dev_nit_active -EXPORT_SYMBOL_GPL vmlinux 0x284e90f5 dev_fill_metadata_dst -EXPORT_SYMBOL_GPL vmlinux 0x28523e51 of_property_read_variable_u64_array -EXPORT_SYMBOL_GPL vmlinux 0x2861dc54 serial8250_em485_destroy +EXPORT_SYMBOL_GPL vmlinux 0x28578ef1 tegra_mc_probe_device +EXPORT_SYMBOL_GPL vmlinux 0x285ceaa7 tcp_enter_memory_pressure EXPORT_SYMBOL_GPL vmlinux 0x2864abc9 klist_node_attached +EXPORT_SYMBOL_GPL vmlinux 0x2867245e gpiochip_irq_domain_activate EXPORT_SYMBOL_GPL vmlinux 0x286cc647 async_synchronize_cookie_domain +EXPORT_SYMBOL_GPL vmlinux 0x287879a1 power_supply_set_input_current_limit_from_supplier EXPORT_SYMBOL_GPL vmlinux 0x2882d40e usb_role_switch_unregister -EXPORT_SYMBOL_GPL vmlinux 0x288d177d synth_event_trace_array -EXPORT_SYMBOL_GPL vmlinux 0x28a42db2 sdio_set_host_pm_flags -EXPORT_SYMBOL_GPL vmlinux 0x28a6b85d of_get_fb_videomode +EXPORT_SYMBOL_GPL vmlinux 0x2884a834 devm_power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0x289cc83a rio_del_device EXPORT_SYMBOL_GPL vmlinux 0x28aa6a67 call_rcu EXPORT_SYMBOL_GPL vmlinux 0x28ab4fb9 pinctrl_gpio_free +EXPORT_SYMBOL_GPL vmlinux 0x28ac9771 nf_checksum_partial EXPORT_SYMBOL_GPL vmlinux 0x28afbb08 cpu_latency_qos_add_request EXPORT_SYMBOL_GPL vmlinux 0x28b030d2 of_overlay_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0x28ba0aed sysfs_file_change_owner -EXPORT_SYMBOL_GPL vmlinux 0x28c705ae phy_power_on -EXPORT_SYMBOL_GPL vmlinux 0x28cfdb59 devm_regulator_irq_helper -EXPORT_SYMBOL_GPL vmlinux 0x28d7cd77 l3mdev_ifindex_lookup_by_table_id +EXPORT_SYMBOL_GPL vmlinux 0x28be0db2 switchdev_handle_port_obj_add +EXPORT_SYMBOL_GPL vmlinux 0x28c77939 pm_generic_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x28cacf62 devlink_unregister +EXPORT_SYMBOL_GPL vmlinux 0x28e82289 iommu_register_device_fault_handler EXPORT_SYMBOL_GPL vmlinux 0x28f26684 irq_set_affinity_hint -EXPORT_SYMBOL_GPL vmlinux 0x290376f5 nvmem_cell_read_u8 -EXPORT_SYMBOL_GPL vmlinux 0x2911aab1 devm_of_platform_depopulate +EXPORT_SYMBOL_GPL vmlinux 0x28f646d8 devfreq_event_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x2904fce0 iopf_queue_add_device EXPORT_SYMBOL_GPL vmlinux 0x291876f3 mpi_ec_get_affine -EXPORT_SYMBOL_GPL vmlinux 0x29205e36 crypto_alloc_kpp -EXPORT_SYMBOL_GPL vmlinux 0x293201e4 iommu_fwspec_free -EXPORT_SYMBOL_GPL vmlinux 0x2946e1fd bgmac_alloc +EXPORT_SYMBOL_GPL vmlinux 0x292478cf clk_fixed_rate_ops +EXPORT_SYMBOL_GPL vmlinux 0x292d8578 __kthread_should_park +EXPORT_SYMBOL_GPL vmlinux 0x29442546 ethnl_cable_test_finished +EXPORT_SYMBOL_GPL vmlinux 0x294fcc30 check_move_unevictable_pages EXPORT_SYMBOL_GPL vmlinux 0x295b982a hisi_clk_register_fixed_rate -EXPORT_SYMBOL_GPL vmlinux 0x295c6a6c clk_bulk_get_optional -EXPORT_SYMBOL_GPL vmlinux 0x296d0472 power_supply_put -EXPORT_SYMBOL_GPL vmlinux 0x29829024 synth_event_add_next_val -EXPORT_SYMBOL_GPL vmlinux 0x29831545 devm_of_clk_add_hw_provider -EXPORT_SYMBOL_GPL vmlinux 0x29854ae5 class_compat_create_link -EXPORT_SYMBOL_GPL vmlinux 0x29a6154d ata_sas_queuecmd -EXPORT_SYMBOL_GPL vmlinux 0x29a66d99 devm_thermal_of_cooling_device_register -EXPORT_SYMBOL_GPL vmlinux 0x29aba9e4 spi_split_transfers_maxsize -EXPORT_SYMBOL_GPL vmlinux 0x29ae15b7 power_supply_set_battery_charged -EXPORT_SYMBOL_GPL vmlinux 0x29cb3c90 dst_blackhole_mtu +EXPORT_SYMBOL_GPL vmlinux 0x296aedca tty_port_register_device_attr_serdev +EXPORT_SYMBOL_GPL vmlinux 0x2975f920 iommu_dev_feature_enabled +EXPORT_SYMBOL_GPL vmlinux 0x297abaf8 __efivar_entry_delete +EXPORT_SYMBOL_GPL vmlinux 0x297edb6f k3_udma_glue_request_tx_chn +EXPORT_SYMBOL_GPL vmlinux 0x2988c28a tegra_mc_write_emem_configuration +EXPORT_SYMBOL_GPL vmlinux 0x298d7c2a __traceiter_neigh_timer_handler +EXPORT_SYMBOL_GPL vmlinux 0x298f6d02 crypto_stats_skcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x2994ac53 find_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x29988a26 usb_set_interface +EXPORT_SYMBOL_GPL vmlinux 0x29b6cfd9 phy_modify_mmd +EXPORT_SYMBOL_GPL vmlinux 0x29bed313 pci_ignore_hotplug +EXPORT_SYMBOL_GPL vmlinux 0x29c4600a evict_inodes +EXPORT_SYMBOL_GPL vmlinux 0x29d1f24a wakeup_source_destroy EXPORT_SYMBOL_GPL vmlinux 0x29d76547 k3_udma_glue_tdown_rx_chn -EXPORT_SYMBOL_GPL vmlinux 0x29e75a53 tc3589x_reg_write EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async +EXPORT_SYMBOL_GPL vmlinux 0x29f5cdac misc_cg_uncharge +EXPORT_SYMBOL_GPL vmlinux 0x2a0971e6 pci_epc_put EXPORT_SYMBOL_GPL vmlinux 0x2a0a40fa mdio_bus_init -EXPORT_SYMBOL_GPL vmlinux 0x2a0f60f2 regmap_get_val_bytes -EXPORT_SYMBOL_GPL vmlinux 0x2a150d83 of_clk_add_provider -EXPORT_SYMBOL_GPL vmlinux 0x2a23b995 crypto_find_alg -EXPORT_SYMBOL_GPL vmlinux 0x2a24c362 ata_qc_get_active -EXPORT_SYMBOL_GPL vmlinux 0x2a285fa1 vfs_getxattr_alloc -EXPORT_SYMBOL_GPL vmlinux 0x2a2f2b0f ata_sas_tport_add +EXPORT_SYMBOL_GPL vmlinux 0x2a337851 __irq_domain_alloc_fwnode EXPORT_SYMBOL_GPL vmlinux 0x2a37ea11 imx_clk_hw_frac_pll +EXPORT_SYMBOL_GPL vmlinux 0x2a5022b8 device_add +EXPORT_SYMBOL_GPL vmlinux 0x2a58693a pm_wakeup_ws_event +EXPORT_SYMBOL_GPL vmlinux 0x2a5e1703 regulator_list_voltage EXPORT_SYMBOL_GPL vmlinux 0x2a5ea9ef rhashtable_destroy -EXPORT_SYMBOL_GPL vmlinux 0x2a5f8a86 udp_init_sock -EXPORT_SYMBOL_GPL vmlinux 0x2a62a1aa dev_pm_opp_find_level_ceil EXPORT_SYMBOL_GPL vmlinux 0x2a62cb3a ring_buffer_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0x2a653920 bus_get_device_klist EXPORT_SYMBOL_GPL vmlinux 0x2a678a13 __suspend_report_result -EXPORT_SYMBOL_GPL vmlinux 0x2a72cce4 devlink_alloc_ns +EXPORT_SYMBOL_GPL vmlinux 0x2a6a3beb phy_modify_changed EXPORT_SYMBOL_GPL vmlinux 0x2a7316da __SCK__tp_func_neigh_cleanup_and_release -EXPORT_SYMBOL_GPL vmlinux 0x2a866560 pm_generic_restore +EXPORT_SYMBOL_GPL vmlinux 0x2a7838f7 dprc_close +EXPORT_SYMBOL_GPL vmlinux 0x2a809937 dev_pm_opp_find_freq_exact EXPORT_SYMBOL_GPL vmlinux 0x2a8af55a acpi_ec_add_query_handler -EXPORT_SYMBOL_GPL vmlinux 0x2a8d8db3 scsi_get_vpd_page -EXPORT_SYMBOL_GPL vmlinux 0x2a8e2466 of_device_request_module -EXPORT_SYMBOL_GPL vmlinux 0x2a8ffdab efivars_kobject -EXPORT_SYMBOL_GPL vmlinux 0x2a9881ae virtio_device_restore -EXPORT_SYMBOL_GPL vmlinux 0x2a99c7f2 blkcg_policy_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2a9f2821 blk_crypto_evict_key -EXPORT_SYMBOL_GPL vmlinux 0x2aa0bb73 lwtunnel_encap_del_ops +EXPORT_SYMBOL_GPL vmlinux 0x2a8f11cd of_reserved_mem_device_release EXPORT_SYMBOL_GPL vmlinux 0x2aadad1a efi_capsule_update -EXPORT_SYMBOL_GPL vmlinux 0x2ab70642 ahci_port_resume -EXPORT_SYMBOL_GPL vmlinux 0x2abf945d tty_ldisc_receive_buf -EXPORT_SYMBOL_GPL vmlinux 0x2ad5ab34 vring_create_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x2aae47ab pm_generic_restore_early +EXPORT_SYMBOL_GPL vmlinux 0x2abe7c95 serial8250_em485_config +EXPORT_SYMBOL_GPL vmlinux 0x2ac154f3 subsys_find_device_by_id +EXPORT_SYMBOL_GPL vmlinux 0x2ac93304 sdev_evt_send_simple +EXPORT_SYMBOL_GPL vmlinux 0x2adf8c7c rockchip_register_restart_notifier EXPORT_SYMBOL_GPL vmlinux 0x2ae1689e zynqmp_pm_clock_getdivider -EXPORT_SYMBOL_GPL vmlinux 0x2ae256f5 ping_recvmsg -EXPORT_SYMBOL_GPL vmlinux 0x2ae500c0 __regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0x2ae4295e thermal_zone_get_temp +EXPORT_SYMBOL_GPL vmlinux 0x2aec7c8c ata_sff_lost_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x2af2e226 crypto_lookup_template +EXPORT_SYMBOL_GPL vmlinux 0x2afa8a8d thermal_add_hwmon_sysfs EXPORT_SYMBOL_GPL vmlinux 0x2b0765ca xen_store_interface EXPORT_SYMBOL_GPL vmlinux 0x2b0fe000 gnttab_cancel_free_callback -EXPORT_SYMBOL_GPL vmlinux 0x2b15202a driver_for_each_device -EXPORT_SYMBOL_GPL vmlinux 0x2b351f92 debugfs_create_x8 -EXPORT_SYMBOL_GPL vmlinux 0x2b35edf2 subsys_virtual_register -EXPORT_SYMBOL_GPL vmlinux 0x2b3a28a9 crypto_register_scomp -EXPORT_SYMBOL_GPL vmlinux 0x2b3b1895 blkg_conf_prep -EXPORT_SYMBOL_GPL vmlinux 0x2b41604d dma_buf_end_cpu_access +EXPORT_SYMBOL_GPL vmlinux 0x2b1e1de3 scsi_eh_ready_devs +EXPORT_SYMBOL_GPL vmlinux 0x2b22a1a7 pm_schedule_suspend +EXPORT_SYMBOL_GPL vmlinux 0x2b31a6aa xenbus_dev_suspend EXPORT_SYMBOL_GPL vmlinux 0x2b4509dd devlink_health_reporter_state_update +EXPORT_SYMBOL_GPL vmlinux 0x2b603c3f acpi_dma_request_slave_chan_by_name EXPORT_SYMBOL_GPL vmlinux 0x2b6150fb power_supply_temp2resist_simple -EXPORT_SYMBOL_GPL vmlinux 0x2b6a547f device_pm_wait_for_dev EXPORT_SYMBOL_GPL vmlinux 0x2b6d960d synth_event_cmd_init -EXPORT_SYMBOL_GPL vmlinux 0x2b701a77 pinmux_generic_get_function_count +EXPORT_SYMBOL_GPL vmlinux 0x2b71bead gpiochip_add_pin_range +EXPORT_SYMBOL_GPL vmlinux 0x2b77fce7 aead_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x2b8fab0e acpi_device_update_power EXPORT_SYMBOL_GPL vmlinux 0x2b952517 clk_has_parent EXPORT_SYMBOL_GPL vmlinux 0x2b960b66 qman_is_probed -EXPORT_SYMBOL_GPL vmlinux 0x2b977051 pci_pasid_features EXPORT_SYMBOL_GPL vmlinux 0x2b9997fb atomic_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0x2ba612e9 ping_queue_rcv_skb -EXPORT_SYMBOL_GPL vmlinux 0x2baf9921 dma_get_any_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0x2bb60987 rio_release_inb_mbox -EXPORT_SYMBOL_GPL vmlinux 0x2bc48877 device_wakeup_enable -EXPORT_SYMBOL_GPL vmlinux 0x2bcddd36 __traceiter_pelt_irq_tp +EXPORT_SYMBOL_GPL vmlinux 0x2b9e606d devfreq_get_devfreq_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x2bb38c4b phy_save_page +EXPORT_SYMBOL_GPL vmlinux 0x2bb676eb ahci_handle_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x2bc897c0 l3mdev_link_scope_lookup +EXPORT_SYMBOL_GPL vmlinux 0x2bcebc6c devm_usb_get_phy_by_node +EXPORT_SYMBOL_GPL vmlinux 0x2becd85f crypto_unregister_skciphers +EXPORT_SYMBOL_GPL vmlinux 0x2bfcc1bd alloc_dax +EXPORT_SYMBOL_GPL vmlinux 0x2bff4900 devm_ti_sci_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x2c0e4867 bio_add_zone_append_page +EXPORT_SYMBOL_GPL vmlinux 0x2c1383b8 dev_pm_opp_get_suspend_opp_freq +EXPORT_SYMBOL_GPL vmlinux 0x2c16c974 ehci_reset +EXPORT_SYMBOL_GPL vmlinux 0x2c19b9ef ip6_push_pending_frames EXPORT_SYMBOL_GPL vmlinux 0x2c208607 power_supply_is_system_supplied -EXPORT_SYMBOL_GPL vmlinux 0x2c2b7837 devfreq_event_reset_event -EXPORT_SYMBOL_GPL vmlinux 0x2c2ef813 ata_std_qc_defer +EXPORT_SYMBOL_GPL vmlinux 0x2c2b45ec usb_wakeup_notification EXPORT_SYMBOL_GPL vmlinux 0x2c3054f9 net_inc_ingress_queue EXPORT_SYMBOL_GPL vmlinux 0x2c36cc85 __tracepoint_unmap -EXPORT_SYMBOL_GPL vmlinux 0x2c4e046b pci_epc_start +EXPORT_SYMBOL_GPL vmlinux 0x2c398780 ip_fib_metrics_init +EXPORT_SYMBOL_GPL vmlinux 0x2c417e9b of_clk_src_onecell_get +EXPORT_SYMBOL_GPL vmlinux 0x2c52f37f phy_power_off +EXPORT_SYMBOL_GPL vmlinux 0x2c5ac711 sdio_disable_func EXPORT_SYMBOL_GPL vmlinux 0x2c635527 arch_invalidate_pmem -EXPORT_SYMBOL_GPL vmlinux 0x2c63f187 mmc_pwrseq_unregister EXPORT_SYMBOL_GPL vmlinux 0x2c66ac85 devlink_info_serial_number_put -EXPORT_SYMBOL_GPL vmlinux 0x2c6b7a96 put_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0x2c6bdaa4 ata_bmdma_port_start32 -EXPORT_SYMBOL_GPL vmlinux 0x2c77cc43 icc_link_destroy +EXPORT_SYMBOL_GPL vmlinux 0x2c75f2f9 gfn_to_pfn_prot EXPORT_SYMBOL_GPL vmlinux 0x2c790d4a __tracepoint_sched_util_est_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x2c7c1965 pcc_mbox_free_channel EXPORT_SYMBOL_GPL vmlinux 0x2c7db649 irq_dispose_mapping -EXPORT_SYMBOL_GPL vmlinux 0x2c7fa1cb sysfs_chmod_file EXPORT_SYMBOL_GPL vmlinux 0x2c81a826 imx_1443x_pll +EXPORT_SYMBOL_GPL vmlinux 0x2c8b1e83 unregister_wide_hw_breakpoint EXPORT_SYMBOL_GPL vmlinux 0x2c8dd6b8 edac_mem_types -EXPORT_SYMBOL_GPL vmlinux 0x2c8e2c02 iommu_get_domain_for_dev +EXPORT_SYMBOL_GPL vmlinux 0x2c919159 debugfs_create_ulong EXPORT_SYMBOL_GPL vmlinux 0x2c97f8a2 of_reconfig_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x2ca0e3d5 do_xdp_generic EXPORT_SYMBOL_GPL vmlinux 0x2ca41024 ioasid_get -EXPORT_SYMBOL_GPL vmlinux 0x2ca493e5 sfp_bus_find_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x2cb74a43 hisi_uncore_pmu_add -EXPORT_SYMBOL_GPL vmlinux 0x2cc48859 nvdimm_bus_register +EXPORT_SYMBOL_GPL vmlinux 0x2cacbee1 regmap_mmio_detach_clk +EXPORT_SYMBOL_GPL vmlinux 0x2cb958fb devfreq_event_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x2cb99cd4 icc_link_create EXPORT_SYMBOL_GPL vmlinux 0x2cc495c5 rpi_firmware_property_list -EXPORT_SYMBOL_GPL vmlinux 0x2cc84413 __clocksource_register_scale -EXPORT_SYMBOL_GPL vmlinux 0x2cd6e49c pinctrl_pm_select_default_state -EXPORT_SYMBOL_GPL vmlinux 0x2cdffe0b tps6586x_reads -EXPORT_SYMBOL_GPL vmlinux 0x2ce21507 gpiochip_free_own_desc +EXPORT_SYMBOL_GPL vmlinux 0x2cc7ad71 nvdimm_in_overwrite EXPORT_SYMBOL_GPL vmlinux 0x2ce61f33 __SCK__tp_func_br_fdb_add -EXPORT_SYMBOL_GPL vmlinux 0x2ce90192 root_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2ce731f9 power_supply_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0x2ce99a52 pci_create_slot EXPORT_SYMBOL_GPL vmlinux 0x2cea32ee unregister_oldmem_pfn_is_ram -EXPORT_SYMBOL_GPL vmlinux 0x2cfc8e7e pci_epc_mem_free_addr +EXPORT_SYMBOL_GPL vmlinux 0x2cf2312b dm_copy_name_and_uuid +EXPORT_SYMBOL_GPL vmlinux 0x2cf83ad3 devm_acpi_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x2cf892f4 devm_clk_register EXPORT_SYMBOL_GPL vmlinux 0x2d0684a9 hrtimer_init -EXPORT_SYMBOL_GPL vmlinux 0x2d113d4f ata_scsi_unlock_native_capacity +EXPORT_SYMBOL_GPL vmlinux 0x2d0cdcf2 debugfs_create_u32 +EXPORT_SYMBOL_GPL vmlinux 0x2d137c01 pci_assign_unassigned_bus_resources EXPORT_SYMBOL_GPL vmlinux 0x2d1b02d2 usermodehelper_read_lock_wait -EXPORT_SYMBOL_GPL vmlinux 0x2d28db28 net_selftest EXPORT_SYMBOL_GPL vmlinux 0x2d2c902f perf_trace_buf_alloc EXPORT_SYMBOL_GPL vmlinux 0x2d2dd36f kobj_ns_grab_current -EXPORT_SYMBOL_GPL vmlinux 0x2d2f1c13 kvm_put_kvm_no_destroy -EXPORT_SYMBOL_GPL vmlinux 0x2d311bd3 evict_inodes -EXPORT_SYMBOL_GPL vmlinux 0x2d33e2b9 ata_sas_port_resume -EXPORT_SYMBOL_GPL vmlinux 0x2d40273b rio_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x2d3669dd mptcp_pm_get_subflows_max +EXPORT_SYMBOL_GPL vmlinux 0x2d3c4503 pci_destroy_slot EXPORT_SYMBOL_GPL vmlinux 0x2d41e6f5 __trace_puts -EXPORT_SYMBOL_GPL vmlinux 0x2d581200 ata_sff_qc_fill_rtf -EXPORT_SYMBOL_GPL vmlinux 0x2d5a8e14 kstrdup_quotable_cmdline +EXPORT_SYMBOL_GPL vmlinux 0x2d4782a3 cpufreq_table_index_unsorted +EXPORT_SYMBOL_GPL vmlinux 0x2d5c1b43 rio_lock_device EXPORT_SYMBOL_GPL vmlinux 0x2d5f69b3 rcu_read_unlock_strict -EXPORT_SYMBOL_GPL vmlinux 0x2d642d1a vfs_truncate EXPORT_SYMBOL_GPL vmlinux 0x2d6aa0f0 arch_apei_enable_cmcff -EXPORT_SYMBOL_GPL vmlinux 0x2d6e0b90 fsl_mc_bus_dpsw_type -EXPORT_SYMBOL_GPL vmlinux 0x2d6f6b56 regulator_list_voltage_table -EXPORT_SYMBOL_GPL vmlinux 0x2d8187d4 fixed_phy_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2d8685ea irq_create_mapping_affinity -EXPORT_SYMBOL_GPL vmlinux 0x2d86ff5e wm831x_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0x2d9aab95 security_path_link -EXPORT_SYMBOL_GPL vmlinux 0x2da1f1ce serial8250_do_get_mctrl -EXPORT_SYMBOL_GPL vmlinux 0x2da1f76c cpufreq_cooling_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2dac0bce spi_mem_supports_op -EXPORT_SYMBOL_GPL vmlinux 0x2db5dd9f serial8250_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0x2d8d2f77 ata_host_alloc +EXPORT_SYMBOL_GPL vmlinux 0x2d9cfe62 kernfs_get EXPORT_SYMBOL_GPL vmlinux 0x2db67d4a owl_sps_set_pg -EXPORT_SYMBOL_GPL vmlinux 0x2dc80ea9 fat_truncate_time -EXPORT_SYMBOL_GPL vmlinux 0x2dd78cc4 udp_bpf_update_proto -EXPORT_SYMBOL_GPL vmlinux 0x2dff09a4 md_stop +EXPORT_SYMBOL_GPL vmlinux 0x2dcbec95 devlink_reload_enable +EXPORT_SYMBOL_GPL vmlinux 0x2de306b8 xdp_build_skb_from_frame +EXPORT_SYMBOL_GPL vmlinux 0x2df5e214 of_platform_populate EXPORT_SYMBOL_GPL vmlinux 0x2e028ae6 rcutorture_get_gp_data EXPORT_SYMBOL_GPL vmlinux 0x2e08226d badrange_add -EXPORT_SYMBOL_GPL vmlinux 0x2e0c0d9e pci_hp_deregister -EXPORT_SYMBOL_GPL vmlinux 0x2e0e1dba debugfs_write_file_bool -EXPORT_SYMBOL_GPL vmlinux 0x2e210611 gpiochip_reqres_irq +EXPORT_SYMBOL_GPL vmlinux 0x2e0a2bd6 hrtimer_init_sleeper +EXPORT_SYMBOL_GPL vmlinux 0x2e1302f4 fib_nexthop_info +EXPORT_SYMBOL_GPL vmlinux 0x2e138872 nvdimm_setup_pfn +EXPORT_SYMBOL_GPL vmlinux 0x2e1a8fea device_for_each_child_reverse EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace -EXPORT_SYMBOL_GPL vmlinux 0x2e237858 inet_csk_get_port -EXPORT_SYMBOL_GPL vmlinux 0x2e244b3a sched_trace_cfs_rq_avg -EXPORT_SYMBOL_GPL vmlinux 0x2e44c560 pci_iomap_wc_range -EXPORT_SYMBOL_GPL vmlinux 0x2e5c4fbd device_set_node -EXPORT_SYMBOL_GPL vmlinux 0x2e62d7c1 perf_event_addr_filters_sync +EXPORT_SYMBOL_GPL vmlinux 0x2e6099e1 pci_epc_mem_free_addr EXPORT_SYMBOL_GPL vmlinux 0x2e66298c __SCK__tp_func_sched_util_est_cfs_tp EXPORT_SYMBOL_GPL vmlinux 0x2e670427 sbitmap_queue_wake_all EXPORT_SYMBOL_GPL vmlinux 0x2e678211 xas_find_conflict -EXPORT_SYMBOL_GPL vmlinux 0x2e6cb6a8 do_splice_from -EXPORT_SYMBOL_GPL vmlinux 0x2e6ecdce crypto_register_akcipher -EXPORT_SYMBOL_GPL vmlinux 0x2e7a1d1a led_trigger_register -EXPORT_SYMBOL_GPL vmlinux 0x2e822ba2 crypto_stats_skcipher_encrypt -EXPORT_SYMBOL_GPL vmlinux 0x2e995482 phy_driver_is_genphy_10g -EXPORT_SYMBOL_GPL vmlinux 0x2eb386d6 xenbus_register_driver_common +EXPORT_SYMBOL_GPL vmlinux 0x2e67a7e3 fsl_mc_populate_irq_pool +EXPORT_SYMBOL_GPL vmlinux 0x2e682360 of_add_property +EXPORT_SYMBOL_GPL vmlinux 0x2e6e1baa devm_usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0x2e706d10 pci_find_host_bridge +EXPORT_SYMBOL_GPL vmlinux 0x2e76e76d genphy_c45_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0x2e79d46e udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x2e7c1ade regmap_raw_write +EXPORT_SYMBOL_GPL vmlinux 0x2e7c8c70 __auxiliary_device_add +EXPORT_SYMBOL_GPL vmlinux 0x2e85fb44 mptcp_get_reset_option +EXPORT_SYMBOL_GPL vmlinux 0x2e8d052f blk_next_bio +EXPORT_SYMBOL_GPL vmlinux 0x2eaacbc8 device_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x2eb7c728 rio_mport_read_config_8 EXPORT_SYMBOL_GPL vmlinux 0x2ebb19fd execute_in_process_context EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable -EXPORT_SYMBOL_GPL vmlinux 0x2ec1ee5b dev_pm_opp_adjust_voltage -EXPORT_SYMBOL_GPL vmlinux 0x2ecf890c of_devfreq_cooling_register -EXPORT_SYMBOL_GPL vmlinux 0x2ed80aff of_mpc8xxx_spi_probe -EXPORT_SYMBOL_GPL vmlinux 0x2edd04e8 kvm_write_guest -EXPORT_SYMBOL_GPL vmlinux 0x2edf353d devm_kmalloc -EXPORT_SYMBOL_GPL vmlinux 0x2ee445b5 clk_fixed_factor_ops +EXPORT_SYMBOL_GPL vmlinux 0x2ee29a14 fsl_mc_bus_dprtc_type EXPORT_SYMBOL_GPL vmlinux 0x2ee7c52b btree_visitor -EXPORT_SYMBOL_GPL vmlinux 0x2ee7cf5f devm_devfreq_event_remove_edev -EXPORT_SYMBOL_GPL vmlinux 0x2ef23d0c irq_set_chip_and_handler_name -EXPORT_SYMBOL_GPL vmlinux 0x2eff0145 meson_clk_pcie_pll_ops -EXPORT_SYMBOL_GPL vmlinux 0x2f0a47ba iommu_sva_get_pasid +EXPORT_SYMBOL_GPL vmlinux 0x2ef80e3a of_gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0x2f04e9fc pinctrl_count_index_with_args +EXPORT_SYMBOL_GPL vmlinux 0x2f05869d pid_vnr EXPORT_SYMBOL_GPL vmlinux 0x2f0d9053 usb_otg_state_string -EXPORT_SYMBOL_GPL vmlinux 0x2f124abb kernel_kobj -EXPORT_SYMBOL_GPL vmlinux 0x2f14ced5 nvmem_cell_read_u64 -EXPORT_SYMBOL_GPL vmlinux 0x2f1e8cb6 __inet_twsk_schedule +EXPORT_SYMBOL_GPL vmlinux 0x2f19d8ed pinctrl_utils_free_map EXPORT_SYMBOL_GPL vmlinux 0x2f1ea064 __SCK__tp_func_xdp_bulk_tx EXPORT_SYMBOL_GPL vmlinux 0x2f2c95c4 flush_work -EXPORT_SYMBOL_GPL vmlinux 0x2f2ec601 synth_event_trace_start -EXPORT_SYMBOL_GPL vmlinux 0x2f41084b proc_get_parent_data +EXPORT_SYMBOL_GPL vmlinux 0x2f33c777 class_compat_create_link +EXPORT_SYMBOL_GPL vmlinux 0x2f36bc9f kthread_cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x2f408e7e pci_disable_rom EXPORT_SYMBOL_GPL vmlinux 0x2f4880df static_key_slow_dec -EXPORT_SYMBOL_GPL vmlinux 0x2f51e37b thermal_add_hwmon_sysfs -EXPORT_SYMBOL_GPL vmlinux 0x2f625ba3 crypto_hash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0x2f55b1f0 pm_generic_resume +EXPORT_SYMBOL_GPL vmlinux 0x2f637620 devm_gpio_request EXPORT_SYMBOL_GPL vmlinux 0x2f64415f unregister_acpi_hed_notifier -EXPORT_SYMBOL_GPL vmlinux 0x2f68d36f __devm_clk_hw_register_mux -EXPORT_SYMBOL_GPL vmlinux 0x2f6945f8 query_asymmetric_key -EXPORT_SYMBOL_GPL vmlinux 0x2f6c4692 of_property_read_variable_u32_array -EXPORT_SYMBOL_GPL vmlinux 0x2f79fcb9 spi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x2f7ab24a firmware_kobj -EXPORT_SYMBOL_GPL vmlinux 0x2f7efcfa fscrypt_set_test_dummy_encryption -EXPORT_SYMBOL_GPL vmlinux 0x2f8d0a28 devm_usb_get_phy_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x2f8aab6c wm831x_bulk_read EXPORT_SYMBOL_GPL vmlinux 0x2f8fd89d xas_split_alloc -EXPORT_SYMBOL_GPL vmlinux 0x2f923ac5 devm_led_trigger_register -EXPORT_SYMBOL_GPL vmlinux 0x2fab384c fib_info_nh_uses_dev -EXPORT_SYMBOL_GPL vmlinux 0x2fabb626 ata_eh_freeze_port EXPORT_SYMBOL_GPL vmlinux 0x2fac3c71 k3_ringacc_request_rings_pair -EXPORT_SYMBOL_GPL vmlinux 0x2fac82cb bus_get_kset -EXPORT_SYMBOL_GPL vmlinux 0x2faf2019 bpf_offload_dev_netdev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2fb0f085 mtk_pinconf_bias_disable_get_rev1 EXPORT_SYMBOL_GPL vmlinux 0x2fc1e0fe kmem_valid_obj -EXPORT_SYMBOL_GPL vmlinux 0x2fc9e51d pinctrl_utils_add_config +EXPORT_SYMBOL_GPL vmlinux 0x2fcdcf27 fsl_mc_bus_dpdmai_type +EXPORT_SYMBOL_GPL vmlinux 0x2fd31929 rcuwait_wake_up +EXPORT_SYMBOL_GPL vmlinux 0x2fdcd82f mtk_pinconf_drive_get +EXPORT_SYMBOL_GPL vmlinux 0x2fdfb8b0 irq_create_of_mapping +EXPORT_SYMBOL_GPL vmlinux 0x2fe09f99 trace_seq_path +EXPORT_SYMBOL_GPL vmlinux 0x2fed9f17 simple_attr_read +EXPORT_SYMBOL_GPL vmlinux 0x2ff5ceb9 ata_qc_complete_multiple +EXPORT_SYMBOL_GPL vmlinux 0x2ffa0d5d virtio_add_status EXPORT_SYMBOL_GPL vmlinux 0x3025eee0 tegra210_clk_emc_dll_update_setting -EXPORT_SYMBOL_GPL vmlinux 0x30286699 usb_driver_set_configuration -EXPORT_SYMBOL_GPL vmlinux 0x30314a5d dev_pm_opp_get_freq EXPORT_SYMBOL_GPL vmlinux 0x30351294 k3_udma_glue_rx_flow_get_fdq_id -EXPORT_SYMBOL_GPL vmlinux 0x303e15ba power_supply_register -EXPORT_SYMBOL_GPL vmlinux 0x304698a5 spi_controller_resume -EXPORT_SYMBOL_GPL vmlinux 0x304b0df3 edac_mc_handle_error -EXPORT_SYMBOL_GPL vmlinux 0x3050e630 gpiod_get -EXPORT_SYMBOL_GPL vmlinux 0x30583904 ipv4_redirect +EXPORT_SYMBOL_GPL vmlinux 0x304c4bc1 pci_bus_max_busnr +EXPORT_SYMBOL_GPL vmlinux 0x305b15c9 bd_unlink_disk_holder EXPORT_SYMBOL_GPL vmlinux 0x3061cfce ring_buffer_entries_cpu -EXPORT_SYMBOL_GPL vmlinux 0x3067e72c usb_hcd_resume_root_hub -EXPORT_SYMBOL_GPL vmlinux 0x3072b785 clk_hw_rate_is_protected -EXPORT_SYMBOL_GPL vmlinux 0x30806629 tcp_reno_ssthresh -EXPORT_SYMBOL_GPL vmlinux 0x30836023 dev_pm_opp_set_prop_name -EXPORT_SYMBOL_GPL vmlinux 0x308c1d1b inet_twsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x3066feb0 acpi_subsys_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x3074727b led_blink_set_oneshot +EXPORT_SYMBOL_GPL vmlinux 0x309acfea gpiochip_relres_irq +EXPORT_SYMBOL_GPL vmlinux 0x30ab4e7e proc_create_net_data_write +EXPORT_SYMBOL_GPL vmlinux 0x30afc426 iommu_sva_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0x30b4f0a7 crypto_unregister_scomps +EXPORT_SYMBOL_GPL vmlinux 0x30b64f2a dev_pm_disable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x30c80df9 of_platform_default_populate +EXPORT_SYMBOL_GPL vmlinux 0x30ccbc16 acpi_device_fix_up_power EXPORT_SYMBOL_GPL vmlinux 0x30d5747b srcu_init_notifier_head +EXPORT_SYMBOL_GPL vmlinux 0x30db79ae pm_clk_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x30deff94 crypto_req_done EXPORT_SYMBOL_GPL vmlinux 0x30e1ec25 apei_map_generic_address -EXPORT_SYMBOL_GPL vmlinux 0x30f0cc88 __page_file_mapping -EXPORT_SYMBOL_GPL vmlinux 0x30f43ebd addrconf_prefix_rcv_add_addr -EXPORT_SYMBOL_GPL vmlinux 0x30fe80e3 __irq_domain_alloc_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x30ed41a4 mmc_send_abort_tuning +EXPORT_SYMBOL_GPL vmlinux 0x30fd3f9b dev_pm_opp_detach_genpd +EXPORT_SYMBOL_GPL vmlinux 0x30fd4fd4 pinconf_generic_dump_config EXPORT_SYMBOL_GPL vmlinux 0x31019477 __ftrace_vbprintk -EXPORT_SYMBOL_GPL vmlinux 0x3106d746 debugfs_create_x64 +EXPORT_SYMBOL_GPL vmlinux 0x310af9cc crypto_grab_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x310c7d60 inet6_sk_rebuild_header EXPORT_SYMBOL_GPL vmlinux 0x31128b8e hv_remove_kexec_handler +EXPORT_SYMBOL_GPL vmlinux 0x311b0dcf mmc_poll_for_busy +EXPORT_SYMBOL_GPL vmlinux 0x3125d223 regulator_get EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave -EXPORT_SYMBOL_GPL vmlinux 0x3126dcda devm_regulator_get +EXPORT_SYMBOL_GPL vmlinux 0x312ec719 usb_of_has_combined_node +EXPORT_SYMBOL_GPL vmlinux 0x3133dd0d devm_ti_sci_get_resource +EXPORT_SYMBOL_GPL vmlinux 0x3136f4c8 regulator_enable +EXPORT_SYMBOL_GPL vmlinux 0x3137ff37 of_usb_get_dr_mode_by_phy EXPORT_SYMBOL_GPL vmlinux 0x313ea5fd ipi_send_single -EXPORT_SYMBOL_GPL vmlinux 0x314589dc xfrm_audit_state_delete -EXPORT_SYMBOL_GPL vmlinux 0x31799ad0 nvmem_cell_read_u32 -EXPORT_SYMBOL_GPL vmlinux 0x3182568c fuse_dev_alloc_install +EXPORT_SYMBOL_GPL vmlinux 0x31553cf1 adp5520_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x315a36f1 pstore_unregister +EXPORT_SYMBOL_GPL vmlinux 0x315adec0 iommu_fwspec_add_ids +EXPORT_SYMBOL_GPL vmlinux 0x316fdf5b mptcp_subflow_request_sock_ops +EXPORT_SYMBOL_GPL vmlinux 0x31750f31 rio_attach_device EXPORT_SYMBOL_GPL vmlinux 0x31839ad3 software_node_register_nodes +EXPORT_SYMBOL_GPL vmlinux 0x3183ca82 iopf_queue_remove_device EXPORT_SYMBOL_GPL vmlinux 0x3187490a __SCK__tp_func_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0x31894b19 blk_rq_err_bytes EXPORT_SYMBOL_GPL vmlinux 0x3192d768 cpufreq_remove_update_util_hook -EXPORT_SYMBOL_GPL vmlinux 0x31930159 class_interface_unregister -EXPORT_SYMBOL_GPL vmlinux 0x319c422b led_get_default_pattern EXPORT_SYMBOL_GPL vmlinux 0x31a95e8b ring_buffer_record_enable_cpu -EXPORT_SYMBOL_GPL vmlinux 0x31aa0bfa kvm_vcpu_gfn_to_pfn -EXPORT_SYMBOL_GPL vmlinux 0x31ad4a44 kvm_read_guest_offset_cached -EXPORT_SYMBOL_GPL vmlinux 0x31c038f0 usb_driver_claim_interface +EXPORT_SYMBOL_GPL vmlinux 0x31abb536 ahci_platform_enable_regulators +EXPORT_SYMBOL_GPL vmlinux 0x31ba4815 spi_new_device +EXPORT_SYMBOL_GPL vmlinux 0x31c0b896 trace_array_set_clr_event EXPORT_SYMBOL_GPL vmlinux 0x31c7970f pciserial_suspend_ports -EXPORT_SYMBOL_GPL vmlinux 0x31d06c32 regulator_disable_regmap -EXPORT_SYMBOL_GPL vmlinux 0x31d11802 blk_bio_list_merge EXPORT_SYMBOL_GPL vmlinux 0x31dca4d8 gnttab_claim_grant_reference EXPORT_SYMBOL_GPL vmlinux 0x31e9e8d5 zynqmp_pm_set_suspend_mode -EXPORT_SYMBOL_GPL vmlinux 0x31fa5294 memremap_pages -EXPORT_SYMBOL_GPL vmlinux 0x31ffcd00 dma_free_noncontiguous -EXPORT_SYMBOL_GPL vmlinux 0x3205627b bpf_map_put -EXPORT_SYMBOL_GPL vmlinux 0x32060f65 debugfs_create_file -EXPORT_SYMBOL_GPL vmlinux 0x320bfb00 edac_pci_add_device -EXPORT_SYMBOL_GPL vmlinux 0x3221d2a7 ata_link_abort -EXPORT_SYMBOL_GPL vmlinux 0x32232e00 adp5520_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x31ed4a56 ping_common_sendmsg +EXPORT_SYMBOL_GPL vmlinux 0x31ed7e0a fuse_sync_release +EXPORT_SYMBOL_GPL vmlinux 0x31f5f095 kvm_vcpu_destroy +EXPORT_SYMBOL_GPL vmlinux 0x31f8938b crypto_stats_kpp_compute_shared_secret EXPORT_SYMBOL_GPL vmlinux 0x3224b2a9 mpi_read_raw_from_sgl -EXPORT_SYMBOL_GPL vmlinux 0x3242a589 vp_modern_get_features -EXPORT_SYMBOL_GPL vmlinux 0x324ee724 rtc_class_close +EXPORT_SYMBOL_GPL vmlinux 0x323c0371 rio_request_mport_dma +EXPORT_SYMBOL_GPL vmlinux 0x323c56fe inet_csk_reqsk_queue_hash_add +EXPORT_SYMBOL_GPL vmlinux 0x324fbfb6 mbox_client_peek_data +EXPORT_SYMBOL_GPL vmlinux 0x324fdeb5 rio_unmap_outb_region EXPORT_SYMBOL_GPL vmlinux 0x325888a3 __tracepoint_neigh_update -EXPORT_SYMBOL_GPL vmlinux 0x3259662a fuse_abort_conn +EXPORT_SYMBOL_GPL vmlinux 0x3269ee02 fwnode_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0x326ab6d4 ping_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0x326cb0f5 icc_node_add EXPORT_SYMBOL_GPL vmlinux 0x326cefe5 hwpoison_filter_dev_minor +EXPORT_SYMBOL_GPL vmlinux 0x326de07f store_sampling_rate EXPORT_SYMBOL_GPL vmlinux 0x327a2687 bind_evtchn_to_irq_lateeoi +EXPORT_SYMBOL_GPL vmlinux 0x329125ff regmap_fields_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0x32940713 sysfs_unbreak_active_protection EXPORT_SYMBOL_GPL vmlinux 0x32ab06cc irq_percpu_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x32abc996 mmc_sanitize EXPORT_SYMBOL_GPL vmlinux 0x32bc0fcf preempt_notifier_dec -EXPORT_SYMBOL_GPL vmlinux 0x32bc11e3 tty_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x32c27441 power_supply_powers EXPORT_SYMBOL_GPL vmlinux 0x32c2bb04 list_lru_walk_node EXPORT_SYMBOL_GPL vmlinux 0x32c3cb4e class_compat_register -EXPORT_SYMBOL_GPL vmlinux 0x32ccb2f9 __mnt_drop_write -EXPORT_SYMBOL_GPL vmlinux 0x32d4ec57 inet_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x32ced53c ata_bmdma_port_start +EXPORT_SYMBOL_GPL vmlinux 0x32f15e3f ethnl_cable_test_result +EXPORT_SYMBOL_GPL vmlinux 0x32f2db5e regulator_notifier_call_chain EXPORT_SYMBOL_GPL vmlinux 0x330010b6 cpuset_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x330378c6 of_fwnode_ops -EXPORT_SYMBOL_GPL vmlinux 0x3314767e ip6_datagram_send_ctl -EXPORT_SYMBOL_GPL vmlinux 0x331c16cb fwnode_property_read_u8_array -EXPORT_SYMBOL_GPL vmlinux 0x3327e179 gfn_to_hva -EXPORT_SYMBOL_GPL vmlinux 0x3332907f of_modalias_node +EXPORT_SYMBOL_GPL vmlinux 0x330a075f usb_match_one_id +EXPORT_SYMBOL_GPL vmlinux 0x33115789 __traceiter_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0x331c7317 iommu_group_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x33269f60 dev_pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0x332b116b pci_probe_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0x333efce4 mtk_hw_set_value +EXPORT_SYMBOL_GPL vmlinux 0x33558478 devm_namespace_disable +EXPORT_SYMBOL_GPL vmlinux 0x335c49f7 device_create_bin_file EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0x33757976 gnttab_alloc_pages -EXPORT_SYMBOL_GPL vmlinux 0x338e940a device_property_read_u64_array -EXPORT_SYMBOL_GPL vmlinux 0x33ad2c42 bd_link_disk_holder -EXPORT_SYMBOL_GPL vmlinux 0x33b8e459 platform_device_register_full -EXPORT_SYMBOL_GPL vmlinux 0x33baf6d0 regmap_irq_get_domain -EXPORT_SYMBOL_GPL vmlinux 0x33bd223d pci_epc_map_addr -EXPORT_SYMBOL_GPL vmlinux 0x33d0ac3f bpf_preload_ops -EXPORT_SYMBOL_GPL vmlinux 0x33ee3121 tty_buffer_set_limit -EXPORT_SYMBOL_GPL vmlinux 0x3401bdb7 nexthop_select_path -EXPORT_SYMBOL_GPL vmlinux 0x3402bed7 crypto_skcipher_setkey -EXPORT_SYMBOL_GPL vmlinux 0x34094c16 serdev_device_open -EXPORT_SYMBOL_GPL vmlinux 0x340df1b9 fuse_conn_init -EXPORT_SYMBOL_GPL vmlinux 0x34147f45 gpio_to_desc -EXPORT_SYMBOL_GPL vmlinux 0x3428756e pm_clk_add_clk -EXPORT_SYMBOL_GPL vmlinux 0x3429a9e9 mtk_eint_do_init -EXPORT_SYMBOL_GPL vmlinux 0x342bc7e8 pci_generic_ecam_ops +EXPORT_SYMBOL_GPL vmlinux 0x338026b5 ipv6_recv_error +EXPORT_SYMBOL_GPL vmlinux 0x338c9634 pciserial_init_ports +EXPORT_SYMBOL_GPL vmlinux 0x3391f931 crypto_register_algs +EXPORT_SYMBOL_GPL vmlinux 0x3397119b of_dma_router_register +EXPORT_SYMBOL_GPL vmlinux 0x33986139 bpf_trace_run2 +EXPORT_SYMBOL_GPL vmlinux 0x339d7e93 of_property_read_variable_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x33c1d064 dpcon_disable +EXPORT_SYMBOL_GPL vmlinux 0x33dfa3fa pci_epc_set_bar +EXPORT_SYMBOL_GPL vmlinux 0x33f03834 power_supply_set_property +EXPORT_SYMBOL_GPL vmlinux 0x33f485dd usb_add_hcd +EXPORT_SYMBOL_GPL vmlinux 0x33f91920 usb_hcd_check_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0x3406151b dm_internal_suspend_fast +EXPORT_SYMBOL_GPL vmlinux 0x34192715 fuse_simple_background +EXPORT_SYMBOL_GPL vmlinux 0x341a6c89 of_i2c_setup_smbus_alert +EXPORT_SYMBOL_GPL vmlinux 0x34269b6a acpi_dev_clear_dependencies +EXPORT_SYMBOL_GPL vmlinux 0x3431ddc9 stmpe_set_altfunc EXPORT_SYMBOL_GPL vmlinux 0x34331f04 acpi_os_unmap_memory -EXPORT_SYMBOL_GPL vmlinux 0x34404a4b divider_round_rate_parent EXPORT_SYMBOL_GPL vmlinux 0x34407691 crypto_has_ahash EXPORT_SYMBOL_GPL vmlinux 0x344361a1 kdb_register EXPORT_SYMBOL_GPL vmlinux 0x344a2c84 iomap_dio_complete -EXPORT_SYMBOL_GPL vmlinux 0x344f8717 shmem_file_setup EXPORT_SYMBOL_GPL vmlinux 0x3450ad94 mpi_set_ui -EXPORT_SYMBOL_GPL vmlinux 0x3462f442 sched_setattr_nocheck -EXPORT_SYMBOL_GPL vmlinux 0x3475f3c4 ping_rcv -EXPORT_SYMBOL_GPL vmlinux 0x347d2ff8 crypto_unregister_instance -EXPORT_SYMBOL_GPL vmlinux 0x347d6045 subsys_interface_register -EXPORT_SYMBOL_GPL vmlinux 0x34857135 devres_find -EXPORT_SYMBOL_GPL vmlinux 0x34917b76 mbox_send_message -EXPORT_SYMBOL_GPL vmlinux 0x34956d02 gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x3457ce6b meson_clk_mpll_ops +EXPORT_SYMBOL_GPL vmlinux 0x345924c6 __traceiter_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x3468b1a2 dev_pm_opp_set_clkname +EXPORT_SYMBOL_GPL vmlinux 0x347d4e48 md_bitmap_copy_from_slot +EXPORT_SYMBOL_GPL vmlinux 0x3492ae4f serial8250_request_dma +EXPORT_SYMBOL_GPL vmlinux 0x3493e28b badblocks_init +EXPORT_SYMBOL_GPL vmlinux 0x349ac8df __traceiter_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0x34a1dfdf relay_late_setup_files EXPORT_SYMBOL_GPL vmlinux 0x34a7b142 __SCK__tp_func_rpm_suspend -EXPORT_SYMBOL_GPL vmlinux 0x34b01dbc da903x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x34b036fc pinconf_generic_parse_dt_config -EXPORT_SYMBOL_GPL vmlinux 0x34bb2c09 crypto_ahash_finup -EXPORT_SYMBOL_GPL vmlinux 0x34bd946c sock_diag_check_cookie -EXPORT_SYMBOL_GPL vmlinux 0x34c9630d l3mdev_table_lookup_register -EXPORT_SYMBOL_GPL vmlinux 0x34db1eef simple_attr_write +EXPORT_SYMBOL_GPL vmlinux 0x34aa8463 strp_stop +EXPORT_SYMBOL_GPL vmlinux 0x34c18c73 device_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x34c3beb8 of_msi_configure EXPORT_SYMBOL_GPL vmlinux 0x34eab46d bind_evtchn_to_irqhandler -EXPORT_SYMBOL_GPL vmlinux 0x34f81174 pci_check_and_unmask_intx +EXPORT_SYMBOL_GPL vmlinux 0x34f288d7 fuse_mount_remove +EXPORT_SYMBOL_GPL vmlinux 0x34f95f3c palmas_ext_control_req_config +EXPORT_SYMBOL_GPL vmlinux 0x34fba1a0 usb_urb_ep_type_check EXPORT_SYMBOL_GPL vmlinux 0x34fc4ad3 __tracepoint_block_split -EXPORT_SYMBOL_GPL vmlinux 0x35026b41 device_get_named_child_node +EXPORT_SYMBOL_GPL vmlinux 0x35007be5 tpm_pcr_read EXPORT_SYMBOL_GPL vmlinux 0x350f6ce5 tasklet_unlock_wait +EXPORT_SYMBOL_GPL vmlinux 0x351e9056 bsg_job_done EXPORT_SYMBOL_GPL vmlinux 0x352b3813 maxim_charger_calc_reg_current EXPORT_SYMBOL_GPL vmlinux 0x352ec68b bpf_offload_dev_destroy -EXPORT_SYMBOL_GPL vmlinux 0x3531a457 xhci_dbg_trace -EXPORT_SYMBOL_GPL vmlinux 0x35387102 bdev_disk_changed -EXPORT_SYMBOL_GPL vmlinux 0x354cddf1 edac_device_handle_ce_count -EXPORT_SYMBOL_GPL vmlinux 0x354fa07b device_release_driver +EXPORT_SYMBOL_GPL vmlinux 0x35301935 of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0x353425e5 pm_generic_thaw +EXPORT_SYMBOL_GPL vmlinux 0x3540aee5 sysfs_notify +EXPORT_SYMBOL_GPL vmlinux 0x3545c219 devlink_resource_size_get +EXPORT_SYMBOL_GPL vmlinux 0x35481296 fib6_new_table +EXPORT_SYMBOL_GPL vmlinux 0x35495b71 mmc_pwrseq_register +EXPORT_SYMBOL_GPL vmlinux 0x35560da6 device_match_devt +EXPORT_SYMBOL_GPL vmlinux 0x35566722 virtqueue_enable_cb_prepare EXPORT_SYMBOL_GPL vmlinux 0x355b2ef2 ti_sci_put_handle EXPORT_SYMBOL_GPL vmlinux 0x355bc89a klist_next +EXPORT_SYMBOL_GPL vmlinux 0x3561cf00 rio_mport_send_doorbell EXPORT_SYMBOL_GPL vmlinux 0x3562f983 read_sanitised_ftr_reg -EXPORT_SYMBOL_GPL vmlinux 0x35686595 __traceiter_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0x3565adf1 bus_register EXPORT_SYMBOL_GPL vmlinux 0x357457c3 psil_get_ep_config -EXPORT_SYMBOL_GPL vmlinux 0x357f641d md_bitmap_copy_from_slot -EXPORT_SYMBOL_GPL vmlinux 0x3582b32c crypto_type_has_alg -EXPORT_SYMBOL_GPL vmlinux 0x358959fa dev_pm_opp_put_regulators -EXPORT_SYMBOL_GPL vmlinux 0x358cda11 max8997_bulk_read EXPORT_SYMBOL_GPL vmlinux 0x358ff60f twl_get_hfclk_rate -EXPORT_SYMBOL_GPL vmlinux 0x35974971 relay_late_setup_files +EXPORT_SYMBOL_GPL vmlinux 0x35902df5 xhci_shutdown EXPORT_SYMBOL_GPL vmlinux 0x35a4f59d zynqmp_pm_clock_setdivider -EXPORT_SYMBOL_GPL vmlinux 0x35b0085a dma_buf_mmap -EXPORT_SYMBOL_GPL vmlinux 0x35b77259 ata_sff_prereset -EXPORT_SYMBOL_GPL vmlinux 0x35cc97d3 kvm_release_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0x35a7c156 xdp_rxq_info_reg +EXPORT_SYMBOL_GPL vmlinux 0x35b36332 phy_led_triggers_register +EXPORT_SYMBOL_GPL vmlinux 0x35b99c72 gov_attr_set_get EXPORT_SYMBOL_GPL vmlinux 0x35d3dc46 crypto_alg_sem -EXPORT_SYMBOL_GPL vmlinux 0x35dbde4f tps6586x_write -EXPORT_SYMBOL_GPL vmlinux 0x35ed467b sb800_prefetch -EXPORT_SYMBOL_GPL vmlinux 0x35ff6707 virtqueue_detach_unused_buf -EXPORT_SYMBOL_GPL vmlinux 0x36039f5c irq_chip_request_resources_parent +EXPORT_SYMBOL_GPL vmlinux 0x35d4aebe rio_mport_class +EXPORT_SYMBOL_GPL vmlinux 0x35fb405e device_set_of_node_from_dev EXPORT_SYMBOL_GPL vmlinux 0x36075bb5 iommu_group_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x36080e20 ata_bmdma_setup -EXPORT_SYMBOL_GPL vmlinux 0x361f7278 perf_pmu_migrate_context +EXPORT_SYMBOL_GPL vmlinux 0x360cbf3e get_pid_task +EXPORT_SYMBOL_GPL vmlinux 0x360dcc1c icc_link_destroy +EXPORT_SYMBOL_GPL vmlinux 0x3615f89b iommu_domain_free +EXPORT_SYMBOL_GPL vmlinux 0x362000db query_asymmetric_key EXPORT_SYMBOL_GPL vmlinux 0x36242943 switchdev_deferred_process -EXPORT_SYMBOL_GPL vmlinux 0x362784fa rio_unmap_outb_region -EXPORT_SYMBOL_GPL vmlinux 0x3637d75d of_map_id -EXPORT_SYMBOL_GPL vmlinux 0x363c57a7 pm_generic_freeze_noirq -EXPORT_SYMBOL_GPL vmlinux 0x36532d64 pci_num_vf +EXPORT_SYMBOL_GPL vmlinux 0x363a8c0b genphy_c45_read_lpa +EXPORT_SYMBOL_GPL vmlinux 0x363fdeaa of_icc_get_by_index +EXPORT_SYMBOL_GPL vmlinux 0x36475d7b irq_get_domain_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x36508b4e efivars_kobject EXPORT_SYMBOL_GPL vmlinux 0x365989e5 imx_1416x_pll EXPORT_SYMBOL_GPL vmlinux 0x365b45d1 __tracepoint_sched_update_nr_running_tp -EXPORT_SYMBOL_GPL vmlinux 0x365cef2b bpf_prog_alloc -EXPORT_SYMBOL_GPL vmlinux 0x366f7a41 of_icc_xlate_onecell -EXPORT_SYMBOL_GPL vmlinux 0x3672731e of_get_pci_domain_nr -EXPORT_SYMBOL_GPL vmlinux 0x3690403f ahci_platform_disable_phys -EXPORT_SYMBOL_GPL vmlinux 0x369566e1 nf_hook_entries_insert_raw -EXPORT_SYMBOL_GPL vmlinux 0x369d67da power_supply_set_property +EXPORT_SYMBOL_GPL vmlinux 0x36609d4a uart_handle_dcd_change +EXPORT_SYMBOL_GPL vmlinux 0x366ffefe set_primary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x367437df crypto_skcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x367b8510 iomap_finish_ioends +EXPORT_SYMBOL_GPL vmlinux 0x3680eda6 __pm_runtime_set_status +EXPORT_SYMBOL_GPL vmlinux 0x36882df4 trace_get_event_file EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot -EXPORT_SYMBOL_GPL vmlinux 0x36aad5bd reset_controller_unregister -EXPORT_SYMBOL_GPL vmlinux 0x36af3f79 vfs_read -EXPORT_SYMBOL_GPL vmlinux 0x36b655df __traceiter_block_split -EXPORT_SYMBOL_GPL vmlinux 0x36d6bb09 device_set_wakeup_enable -EXPORT_SYMBOL_GPL vmlinux 0x36db6469 vmf_insert_pfn_pmd_prot -EXPORT_SYMBOL_GPL vmlinux 0x36df0e18 ip6_sk_dst_lookup_flow -EXPORT_SYMBOL_GPL vmlinux 0x36df112d irq_chip_set_wake_parent -EXPORT_SYMBOL_GPL vmlinux 0x36e2aaa6 software_node_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x36a45202 pci_common_swizzle +EXPORT_SYMBOL_GPL vmlinux 0x36af1f80 dpcon_reset +EXPORT_SYMBOL_GPL vmlinux 0x36afda18 scsi_autopm_get_device +EXPORT_SYMBOL_GPL vmlinux 0x36c5b6f7 __clk_hw_register_divider +EXPORT_SYMBOL_GPL vmlinux 0x36d6beea kthread_park +EXPORT_SYMBOL_GPL vmlinux 0x36e825ad acpi_device_modalias EXPORT_SYMBOL_GPL vmlinux 0x36ef99a2 srcu_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0x36f38c6d __efivar_entry_iter -EXPORT_SYMBOL_GPL vmlinux 0x37071f44 led_trigger_event -EXPORT_SYMBOL_GPL vmlinux 0x370ed98b dev_pm_qos_expose_latency_limit -EXPORT_SYMBOL_GPL vmlinux 0x3712f985 pci_d3cold_enable +EXPORT_SYMBOL_GPL vmlinux 0x36f80180 anon_transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x36fcb74a tpm_tis_resume EXPORT_SYMBOL_GPL vmlinux 0x37169f79 cpu_latency_qos_update_request -EXPORT_SYMBOL_GPL vmlinux 0x3728f177 serdev_device_get_tiocm +EXPORT_SYMBOL_GPL vmlinux 0x37240c94 udp4_hwcsum EXPORT_SYMBOL_GPL vmlinux 0x372cfd6e gnttab_end_foreign_access -EXPORT_SYMBOL_GPL vmlinux 0x372d509d _copy_from_iter_flushcache -EXPORT_SYMBOL_GPL vmlinux 0x37335e12 sysfs_group_change_owner -EXPORT_SYMBOL_GPL vmlinux 0x373716b8 wwan_port_rx -EXPORT_SYMBOL_GPL vmlinux 0x374447ae bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0x3737a8b9 i2c_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x37455f86 ping_init_sock EXPORT_SYMBOL_GPL vmlinux 0x374c53e1 ata_get_cmd_descript EXPORT_SYMBOL_GPL vmlinux 0x3750d770 erst_read -EXPORT_SYMBOL_GPL vmlinux 0x377503bc inet_csk_listen_stop +EXPORT_SYMBOL_GPL vmlinux 0x3764fb0e regulator_suspend_enable +EXPORT_SYMBOL_GPL vmlinux 0x3774efca nvdimm_to_bus EXPORT_SYMBOL_GPL vmlinux 0x3775c25b k3_udma_glue_tx_cppi5_to_dma_addr +EXPORT_SYMBOL_GPL vmlinux 0x377a940b pci_aer_clear_nonfatal_status EXPORT_SYMBOL_GPL vmlinux 0x377bbcbc pm_suspend_target_state EXPORT_SYMBOL_GPL vmlinux 0x378adfb7 zynqmp_pm_sd_dll_reset +EXPORT_SYMBOL_GPL vmlinux 0x37908d59 gnttab_map_refs EXPORT_SYMBOL_GPL vmlinux 0x37914025 xenbus_write -EXPORT_SYMBOL_GPL vmlinux 0x37962f47 perf_get_aux -EXPORT_SYMBOL_GPL vmlinux 0x37a92cba irq_gc_set_wake -EXPORT_SYMBOL_GPL vmlinux 0x37ae4675 dev_pm_opp_register_set_opp_helper -EXPORT_SYMBOL_GPL vmlinux 0x37b04f8f pci_enable_ats -EXPORT_SYMBOL_GPL vmlinux 0x37bc753a sysfs_create_group -EXPORT_SYMBOL_GPL vmlinux 0x37bd79d0 of_pm_clk_add_clks +EXPORT_SYMBOL_GPL vmlinux 0x37931bc3 nfs_ssc_register +EXPORT_SYMBOL_GPL vmlinux 0x37a2cb69 skcipher_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x37a9eaaf netif_carrier_event +EXPORT_SYMBOL_GPL vmlinux 0x37b699c9 devlink_region_snapshot_id_put EXPORT_SYMBOL_GPL vmlinux 0x37bf7be3 percpu_ref_exit -EXPORT_SYMBOL_GPL vmlinux 0x37c7570a relay_open +EXPORT_SYMBOL_GPL vmlinux 0x37c38ba9 devlink_region_create +EXPORT_SYMBOL_GPL vmlinux 0x37cdd9cc cpuidle_register_driver EXPORT_SYMBOL_GPL vmlinux 0x37e00980 pci_bridge_emul_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x37e157de tpm_chip_start -EXPORT_SYMBOL_GPL vmlinux 0x37e7002b devm_free_percpu -EXPORT_SYMBOL_GPL vmlinux 0x37e849ba __pci_epc_create -EXPORT_SYMBOL_GPL vmlinux 0x37f0e6ed crypto_unregister_scomps -EXPORT_SYMBOL_GPL vmlinux 0x3800b52b platform_add_devices +EXPORT_SYMBOL_GPL vmlinux 0x37e5c5ed get_device_system_crosststamp +EXPORT_SYMBOL_GPL vmlinux 0x37f31e43 phy_validate EXPORT_SYMBOL_GPL vmlinux 0x3801776b __ioread32_copy -EXPORT_SYMBOL_GPL vmlinux 0x3809a76e hvc_instantiate -EXPORT_SYMBOL_GPL vmlinux 0x3819470a cpufreq_table_index_unsorted +EXPORT_SYMBOL_GPL vmlinux 0x3809dd65 __phy_modify +EXPORT_SYMBOL_GPL vmlinux 0x380af0b9 soc_device_register +EXPORT_SYMBOL_GPL vmlinux 0x3811ec74 dev_pm_opp_get_required_pstate +EXPORT_SYMBOL_GPL vmlinux 0x38136279 iomap_page_mkwrite +EXPORT_SYMBOL_GPL vmlinux 0x381c8f7a devm_of_icc_get EXPORT_SYMBOL_GPL vmlinux 0x38268b62 icc_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0x38338a1a mbox_controller_unregister EXPORT_SYMBOL_GPL vmlinux 0x38374815 clear_selection -EXPORT_SYMBOL_GPL vmlinux 0x384e7550 clk_hw_register_fractional_divider -EXPORT_SYMBOL_GPL vmlinux 0x3863afa6 devm_of_phy_get_by_index +EXPORT_SYMBOL_GPL vmlinux 0x383758e8 i2c_acpi_find_bus_speed +EXPORT_SYMBOL_GPL vmlinux 0x3839040a devm_regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x383962f7 ata_eh_freeze_port +EXPORT_SYMBOL_GPL vmlinux 0x3855be14 __traceiter_br_fdb_add +EXPORT_SYMBOL_GPL vmlinux 0x385b73ab dma_buf_pin EXPORT_SYMBOL_GPL vmlinux 0x3866e217 nvmem_device_write +EXPORT_SYMBOL_GPL vmlinux 0x386c29fe ahci_platform_resume EXPORT_SYMBOL_GPL vmlinux 0x38708e25 inet_peer_base_init -EXPORT_SYMBOL_GPL vmlinux 0x387497ac max8997_read_reg -EXPORT_SYMBOL_GPL vmlinux 0x3888c573 sysfs_create_files -EXPORT_SYMBOL_GPL vmlinux 0x389918e1 phy_put -EXPORT_SYMBOL_GPL vmlinux 0x389a9f91 sysfs_unbreak_active_protection +EXPORT_SYMBOL_GPL vmlinux 0x38774539 smpboot_unregister_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0x3894c5b7 kvm_vcpu_on_spin +EXPORT_SYMBOL_GPL vmlinux 0x3895f13d clk_hw_register_composite EXPORT_SYMBOL_GPL vmlinux 0x389b64a2 static_key_count EXPORT_SYMBOL_GPL vmlinux 0x38aa1397 gpiod_add_lookup_table -EXPORT_SYMBOL_GPL vmlinux 0x38b4129a raw_hash_sk +EXPORT_SYMBOL_GPL vmlinux 0x38b00a19 phy_pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0x38b650ee devm_i2c_add_adapter +EXPORT_SYMBOL_GPL vmlinux 0x38ba5a85 inet_twsk_hashdance +EXPORT_SYMBOL_GPL vmlinux 0x38bc6e0b mtk_pctrl_show_one_pin EXPORT_SYMBOL_GPL vmlinux 0x38c3ff30 freq_qos_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0x38d2a806 to_software_node +EXPORT_SYMBOL_GPL vmlinux 0x38cf275e net_ns_get_ownership EXPORT_SYMBOL_GPL vmlinux 0x38e1fde7 mpi_set EXPORT_SYMBOL_GPL vmlinux 0x38e5bc5a clk_set_rate_range -EXPORT_SYMBOL_GPL vmlinux 0x3912219f mddev_init -EXPORT_SYMBOL_GPL vmlinux 0x39215ce2 sprd_pinctrl_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x3929df9e of_genpd_del_provider -EXPORT_SYMBOL_GPL vmlinux 0x392f74c6 devm_fwnode_gpiod_get_index -EXPORT_SYMBOL_GPL vmlinux 0x39389c84 of_prop_next_u32 -EXPORT_SYMBOL_GPL vmlinux 0x393d23b7 pci_device_group -EXPORT_SYMBOL_GPL vmlinux 0x393de1b2 power_supply_get_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x39406ca1 devlink_params_register -EXPORT_SYMBOL_GPL vmlinux 0x3941d1b5 dev_pm_qos_flags -EXPORT_SYMBOL_GPL vmlinux 0x394220de ip6_pol_route -EXPORT_SYMBOL_GPL vmlinux 0x3950912e virtqueue_get_used_addr -EXPORT_SYMBOL_GPL vmlinux 0x39549ec7 __traceiter_attach_device_to_domain -EXPORT_SYMBOL_GPL vmlinux 0x395b28a9 regmap_multi_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x38f85195 ahci_start_engine +EXPORT_SYMBOL_GPL vmlinux 0x38fc9278 vchan_tx_desc_free +EXPORT_SYMBOL_GPL vmlinux 0x3913de22 devm_hwspin_lock_register +EXPORT_SYMBOL_GPL vmlinux 0x3925f1f0 regulator_list_voltage_pickable_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x395a1ccb sched_trace_rq_avg_rt +EXPORT_SYMBOL_GPL vmlinux 0x3972a3c2 ata_cable_80wire +EXPORT_SYMBOL_GPL vmlinux 0x3979dac5 rdev_set_badblocks EXPORT_SYMBOL_GPL vmlinux 0x397e2142 __SCK__tp_func_sched_cpu_capacity_tp +EXPORT_SYMBOL_GPL vmlinux 0x398728db regmap_multi_reg_write_bypassed +EXPORT_SYMBOL_GPL vmlinux 0x3987cb60 add_page_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x3994b0e8 of_dma_request_slave_channel EXPORT_SYMBOL_GPL vmlinux 0x399eda0f sbitmap_add_wait_queue EXPORT_SYMBOL_GPL vmlinux 0x39a7affc driver_deferred_probe_timeout EXPORT_SYMBOL_GPL vmlinux 0x39aa4888 usb_role_string -EXPORT_SYMBOL_GPL vmlinux 0x39b63221 device_match_devt +EXPORT_SYMBOL_GPL vmlinux 0x39afa583 clk_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0x39b89b2a device_set_wakeup_capable EXPORT_SYMBOL_GPL vmlinux 0x39c32aca __SCK__tp_func_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0x39c98ad4 lwtunnel_encap_add_ops +EXPORT_SYMBOL_GPL vmlinux 0x39cdfbb2 rio_dev_put +EXPORT_SYMBOL_GPL vmlinux 0x39d85754 pci_msi_mask_irq EXPORT_SYMBOL_GPL vmlinux 0x39ded098 rdma_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x39df57b4 skcipher_walk_aead_decrypt -EXPORT_SYMBOL_GPL vmlinux 0x39e610d7 divider_ro_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0x39ea3ef1 security_inode_permission +EXPORT_SYMBOL_GPL vmlinux 0x39f52d05 attribute_container_unregister +EXPORT_SYMBOL_GPL vmlinux 0x39f68304 devlink_params_publish EXPORT_SYMBOL_GPL vmlinux 0x39fd83db halt_poll_ns_shrink -EXPORT_SYMBOL_GPL vmlinux 0x3a0168e6 fsl_mc_allocate_irqs -EXPORT_SYMBOL_GPL vmlinux 0x3a0ab0bc bpf_prog_create -EXPORT_SYMBOL_GPL vmlinux 0x3a0d3c79 regulator_list_voltage -EXPORT_SYMBOL_GPL vmlinux 0x3a104dd4 gpiochip_request_own_desc -EXPORT_SYMBOL_GPL vmlinux 0x3a211405 rio_release_outb_mbox -EXPORT_SYMBOL_GPL vmlinux 0x3a219f66 linear_hugepage_index -EXPORT_SYMBOL_GPL vmlinux 0x3a23ccc9 dprc_close EXPORT_SYMBOL_GPL vmlinux 0x3a24fb2f percpu_ref_resurrect -EXPORT_SYMBOL_GPL vmlinux 0x3a251c9d i2c_acpi_new_device -EXPORT_SYMBOL_GPL vmlinux 0x3a2728d7 pcie_flr -EXPORT_SYMBOL_GPL vmlinux 0x3a3a3345 gnttab_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x3a255891 pci_epf_free_space +EXPORT_SYMBOL_GPL vmlinux 0x3a388c0d serial8250_update_uartclk +EXPORT_SYMBOL_GPL vmlinux 0x3a46d2c3 shash_register_instance EXPORT_SYMBOL_GPL vmlinux 0x3a4f6a32 ata_sff_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x3a50eaf7 devm_clk_hw_get_clk EXPORT_SYMBOL_GPL vmlinux 0x3a536bd7 ring_buffer_read_finish EXPORT_SYMBOL_GPL vmlinux 0x3a55981a static_key_enable_cpuslocked -EXPORT_SYMBOL_GPL vmlinux 0x3a5c6575 wm831x_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x3a6604b0 devm_init_badblocks -EXPORT_SYMBOL_GPL vmlinux 0x3a6b1426 __alloc_pages_bulk +EXPORT_SYMBOL_GPL vmlinux 0x3a589ca2 scsi_check_sense +EXPORT_SYMBOL_GPL vmlinux 0x3a5da5aa phy_pm_runtime_get_sync +EXPORT_SYMBOL_GPL vmlinux 0x3a5fefa4 usb_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x3a706312 wakeup_source_create +EXPORT_SYMBOL_GPL vmlinux 0x3a722e06 clk_gate_is_enabled EXPORT_SYMBOL_GPL vmlinux 0x3a74e484 __tracepoint_sched_util_est_se_tp -EXPORT_SYMBOL_GPL vmlinux 0x3a7a7809 rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3a7faa4b nf_queue_nf_hook_drop +EXPORT_SYMBOL_GPL vmlinux 0x3a854962 irq_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x3a88c74b dev_attr_em_message +EXPORT_SYMBOL_GPL vmlinux 0x3a8eae19 uart_set_options +EXPORT_SYMBOL_GPL vmlinux 0x3a965eb0 pci_dev_run_wake +EXPORT_SYMBOL_GPL vmlinux 0x3a97a5ac devlink_port_attrs_pci_vf_set EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial -EXPORT_SYMBOL_GPL vmlinux 0x3aadaa9f nvdimm_blk_region_create -EXPORT_SYMBOL_GPL vmlinux 0x3ab4c941 genphy_c45_read_lpa +EXPORT_SYMBOL_GPL vmlinux 0x3aa86b4c dev_pm_opp_get_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0x3ac35762 blk_trace_remove EXPORT_SYMBOL_GPL vmlinux 0x3ac3feba rhltable_init +EXPORT_SYMBOL_GPL vmlinux 0x3ac6e942 platform_msi_domain_alloc_irqs +EXPORT_SYMBOL_GPL vmlinux 0x3acd3eb7 regulator_unregister EXPORT_SYMBOL_GPL vmlinux 0x3acdf325 twl4030_audio_enable_resource -EXPORT_SYMBOL_GPL vmlinux 0x3af384ae rtc_read_alarm -EXPORT_SYMBOL_GPL vmlinux 0x3af6e8f4 __iptunnel_pull_header -EXPORT_SYMBOL_GPL vmlinux 0x3afd0996 dmaengine_desc_attach_metadata -EXPORT_SYMBOL_GPL vmlinux 0x3b06e5e2 mm_kobj -EXPORT_SYMBOL_GPL vmlinux 0x3b07775c of_icc_get -EXPORT_SYMBOL_GPL vmlinux 0x3b08f52f acpi_subsys_poweroff -EXPORT_SYMBOL_GPL vmlinux 0x3b115784 syscon_regmap_lookup_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x3b238226 iommu_set_pgtable_quirks -EXPORT_SYMBOL_GPL vmlinux 0x3b318bd1 power_supply_set_input_current_limit_from_supplier -EXPORT_SYMBOL_GPL vmlinux 0x3b3a2058 pm_genpd_add_subdomain -EXPORT_SYMBOL_GPL vmlinux 0x3b409a41 devm_serdev_device_open +EXPORT_SYMBOL_GPL vmlinux 0x3ae1253f pci_disable_ats +EXPORT_SYMBOL_GPL vmlinux 0x3ae5aa9f rio_route_clr_table +EXPORT_SYMBOL_GPL vmlinux 0x3af6daee xdp_return_frame +EXPORT_SYMBOL_GPL vmlinux 0x3afd8ef2 key_type_user +EXPORT_SYMBOL_GPL vmlinux 0x3b06ac13 generic_device_group +EXPORT_SYMBOL_GPL vmlinux 0x3b0f17b5 led_classdev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x3b148b25 fib_nl_newrule +EXPORT_SYMBOL_GPL vmlinux 0x3b16391a usb_find_alt_setting +EXPORT_SYMBOL_GPL vmlinux 0x3b1deb88 input_ff_upload +EXPORT_SYMBOL_GPL vmlinux 0x3b33ee9b iomap_writepages +EXPORT_SYMBOL_GPL vmlinux 0x3b344c8f page_cache_sync_ra EXPORT_SYMBOL_GPL vmlinux 0x3b4c240a display_timings_release -EXPORT_SYMBOL_GPL vmlinux 0x3b53c9ce __raw_v6_lookup -EXPORT_SYMBOL_GPL vmlinux 0x3b55da75 pstore_unregister -EXPORT_SYMBOL_GPL vmlinux 0x3b5df8ef ahci_platform_disable_clks +EXPORT_SYMBOL_GPL vmlinux 0x3b5ad798 __ndisc_fill_addr_option +EXPORT_SYMBOL_GPL vmlinux 0x3b5c268a component_unbind_all +EXPORT_SYMBOL_GPL vmlinux 0x3b60ddc7 __tcp_send_ack EXPORT_SYMBOL_GPL vmlinux 0x3b610584 __tracepoint_sched_cpu_capacity_tp -EXPORT_SYMBOL_GPL vmlinux 0x3b6660d6 dma_release_channel +EXPORT_SYMBOL_GPL vmlinux 0x3b65213e sprd_pinctrl_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x3b716f58 gpiod_direction_output_raw EXPORT_SYMBOL_GPL vmlinux 0x3b78bf02 sunxi_ccu_get_mmc_timing_mode -EXPORT_SYMBOL_GPL vmlinux 0x3b7a3363 irq_set_chained_handler_and_data -EXPORT_SYMBOL_GPL vmlinux 0x3b819850 scsi_free_sgtables -EXPORT_SYMBOL_GPL vmlinux 0x3b86c518 rio_request_dma +EXPORT_SYMBOL_GPL vmlinux 0x3b7e44a4 __spi_alloc_controller +EXPORT_SYMBOL_GPL vmlinux 0x3b87c238 device_property_read_u8_array EXPORT_SYMBOL_GPL vmlinux 0x3b8979ea gnttab_grant_foreign_transfer_ref -EXPORT_SYMBOL_GPL vmlinux 0x3b9de3ef ata_sff_exec_command +EXPORT_SYMBOL_GPL vmlinux 0x3b95741f devm_reset_control_array_get +EXPORT_SYMBOL_GPL vmlinux 0x3b96b03c debugfs_lookup +EXPORT_SYMBOL_GPL vmlinux 0x3b9a6adb blk_req_needs_zone_write_lock EXPORT_SYMBOL_GPL vmlinux 0x3ba01b47 get_compat_sigset -EXPORT_SYMBOL_GPL vmlinux 0x3bac0e5d ping_hash -EXPORT_SYMBOL_GPL vmlinux 0x3bb75f9b gpiochip_find -EXPORT_SYMBOL_GPL vmlinux 0x3bbb94b7 fib6_new_table -EXPORT_SYMBOL_GPL vmlinux 0x3bca0f69 cpufreq_dbs_governor_start -EXPORT_SYMBOL_GPL vmlinux 0x3bcafb04 blockdev_superblock -EXPORT_SYMBOL_GPL vmlinux 0x3bd8c35d bpf_trace_run10 +EXPORT_SYMBOL_GPL vmlinux 0x3bb3015b bio_start_io_acct_time +EXPORT_SYMBOL_GPL vmlinux 0x3bc7d21b da903x_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x3bcdd092 led_sysfs_enable EXPORT_SYMBOL_GPL vmlinux 0x3bdb5d28 alg_test EXPORT_SYMBOL_GPL vmlinux 0x3bdc0e0c __tracepoint_neigh_event_send_done -EXPORT_SYMBOL_GPL vmlinux 0x3bdc4585 dev_pm_set_dedicated_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0x3be4de32 tc3589x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x3be40acb perf_aux_output_begin EXPORT_SYMBOL_GPL vmlinux 0x3bf17755 mpi_read_buffer -EXPORT_SYMBOL_GPL vmlinux 0x3bf8d18b led_trigger_rename_static +EXPORT_SYMBOL_GPL vmlinux 0x3bfc4fd7 devm_platform_get_irqs_affinity +EXPORT_SYMBOL_GPL vmlinux 0x3c05f66d ohci_suspend EXPORT_SYMBOL_GPL vmlinux 0x3c0e8050 hyperv_pcpu_input_arg -EXPORT_SYMBOL_GPL vmlinux 0x3c0ff541 devfreq_event_remove_edev EXPORT_SYMBOL_GPL vmlinux 0x3c11b9f5 tegra210_put_utmipll_in_iddq -EXPORT_SYMBOL_GPL vmlinux 0x3c197a23 acpi_get_pci_dev +EXPORT_SYMBOL_GPL vmlinux 0x3c148cbd clk_hw_round_rate +EXPORT_SYMBOL_GPL vmlinux 0x3c1ba768 __of_reset_control_get EXPORT_SYMBOL_GPL vmlinux 0x3c1c3725 rcu_fwd_progress_check -EXPORT_SYMBOL_GPL vmlinux 0x3c2ab6e9 ipv6_proxy_select_ident +EXPORT_SYMBOL_GPL vmlinux 0x3c1ee8db sysfs_create_files +EXPORT_SYMBOL_GPL vmlinux 0x3c204a77 fat_remove_entries EXPORT_SYMBOL_GPL vmlinux 0x3c2b68f7 of_changeset_apply -EXPORT_SYMBOL_GPL vmlinux 0x3c305d0c __traceiter_pelt_rt_tp -EXPORT_SYMBOL_GPL vmlinux 0x3c31664d clk_hw_unregister_fixed_factor EXPORT_SYMBOL_GPL vmlinux 0x3c3c85d8 __SCK__tp_func_kfree_skb -EXPORT_SYMBOL_GPL vmlinux 0x3c3e65d3 __traceiter_neigh_cleanup_and_release -EXPORT_SYMBOL_GPL vmlinux 0x3c3eb416 rtnl_put_cacheinfo +EXPORT_SYMBOL_GPL vmlinux 0x3c4777f5 devm_platform_ioremap_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0x3c567850 posix_clock_register +EXPORT_SYMBOL_GPL vmlinux 0x3c579107 perf_event_pause +EXPORT_SYMBOL_GPL vmlinux 0x3c5cd69b subsys_dev_iter_exit EXPORT_SYMBOL_GPL vmlinux 0x3c5d543a hrtimer_start_range_ns -EXPORT_SYMBOL_GPL vmlinux 0x3c60b998 i2c_handle_smbus_host_notify -EXPORT_SYMBOL_GPL vmlinux 0x3c665a55 sfp_register_socket +EXPORT_SYMBOL_GPL vmlinux 0x3c63add0 get_kernel_pages EXPORT_SYMBOL_GPL vmlinux 0x3c681dc4 ring_buffer_record_disable -EXPORT_SYMBOL_GPL vmlinux 0x3c723d3a kthread_queue_work -EXPORT_SYMBOL_GPL vmlinux 0x3c8d6b3f dev_pm_opp_disable -EXPORT_SYMBOL_GPL vmlinux 0x3cac9862 xenbus_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x3cb09c9d gov_attr_set_put -EXPORT_SYMBOL_GPL vmlinux 0x3cb0e231 usb_poison_urb -EXPORT_SYMBOL_GPL vmlinux 0x3cbd5c77 platform_get_irq_byname_optional -EXPORT_SYMBOL_GPL vmlinux 0x3cbf016a sata_scr_write_flush -EXPORT_SYMBOL_GPL vmlinux 0x3ccb17e8 cpufreq_cpu_get -EXPORT_SYMBOL_GPL vmlinux 0x3ccc4800 phy_validate +EXPORT_SYMBOL_GPL vmlinux 0x3c6cb1ac rdev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x3c74b273 devm_regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x3c8da3f8 kvm_vcpu_block +EXPORT_SYMBOL_GPL vmlinux 0x3c94bab8 led_set_brightness_nopm +EXPORT_SYMBOL_GPL vmlinux 0x3caf31cb screen_pos +EXPORT_SYMBOL_GPL vmlinux 0x3cc70952 genphy_c45_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0x3cc7d34f register_trace_event 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 0x3cd775ca devlink_resource_size_get +EXPORT_SYMBOL_GPL vmlinux 0x3cdd193b kvm_make_all_cpus_request +EXPORT_SYMBOL_GPL vmlinux 0x3ce07d05 __udp4_lib_lookup EXPORT_SYMBOL_GPL vmlinux 0x3ce650fd phy_10gbit_features -EXPORT_SYMBOL_GPL vmlinux 0x3cee229b blk_queue_flag_test_and_set -EXPORT_SYMBOL_GPL vmlinux 0x3cf2ebb4 of_phy_provider_unregister -EXPORT_SYMBOL_GPL vmlinux 0x3d045cb2 fixup_user_fault -EXPORT_SYMBOL_GPL vmlinux 0x3d0d2e15 nf_ip_route -EXPORT_SYMBOL_GPL vmlinux 0x3d15f612 xhci_gen_setup -EXPORT_SYMBOL_GPL vmlinux 0x3d2521e4 ata_link_next -EXPORT_SYMBOL_GPL vmlinux 0x3d2af801 imx_obtain_fixed_clk_hw -EXPORT_SYMBOL_GPL vmlinux 0x3d2cae82 crypto_unregister_scomp +EXPORT_SYMBOL_GPL vmlinux 0x3cee0f2e shash_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0x3d05f4df pci_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x3d34acf4 xhci_get_ep_ctx EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end -EXPORT_SYMBOL_GPL vmlinux 0x3d3b3436 msg_zerocopy_put_abort -EXPORT_SYMBOL_GPL vmlinux 0x3d3d1d8f edac_device_del_device -EXPORT_SYMBOL_GPL vmlinux 0x3d4549a7 crypto_register_aeads -EXPORT_SYMBOL_GPL vmlinux 0x3d46d8ea pinctrl_find_gpio_range_from_pin -EXPORT_SYMBOL_GPL vmlinux 0x3d49b5b2 serdev_device_write_room +EXPORT_SYMBOL_GPL vmlinux 0x3d479db1 __efivar_entry_get +EXPORT_SYMBOL_GPL vmlinux 0x3d4a63bf is_software_node +EXPORT_SYMBOL_GPL vmlinux 0x3d4c57d3 sk_set_memalloc EXPORT_SYMBOL_GPL vmlinux 0x3d510a7b rcu_jiffies_till_stall_check -EXPORT_SYMBOL_GPL vmlinux 0x3d54ddc9 wm8350_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x3d5a7772 ata_host_alloc -EXPORT_SYMBOL_GPL vmlinux 0x3d613794 bgmac_enet_suspend -EXPORT_SYMBOL_GPL vmlinux 0x3d65d594 watchdog_register_device -EXPORT_SYMBOL_GPL vmlinux 0x3d693ba5 find_mci_by_dev -EXPORT_SYMBOL_GPL vmlinux 0x3d6d4086 pm_generic_resume +EXPORT_SYMBOL_GPL vmlinux 0x3d6839ef scsi_host_busy_iter +EXPORT_SYMBOL_GPL vmlinux 0x3d75fc93 ata_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0x3d7e0326 clockevents_register_device EXPORT_SYMBOL_GPL vmlinux 0x3d866e05 __SCK__tp_func_block_rq_insert +EXPORT_SYMBOL_GPL vmlinux 0x3d8788fd __rio_local_read_config_32 EXPORT_SYMBOL_GPL vmlinux 0x3d8baf3b zs_huge_class_size -EXPORT_SYMBOL_GPL vmlinux 0x3d8d2c90 tegra210_clk_emc_attach -EXPORT_SYMBOL_GPL vmlinux 0x3d966277 em_dev_register_perf_domain EXPORT_SYMBOL_GPL vmlinux 0x3d9bbf75 wwan_port_txon -EXPORT_SYMBOL_GPL vmlinux 0x3d9eac7c rtc_set_alarm EXPORT_SYMBOL_GPL vmlinux 0x3daa2540 nf_hooks_lwtunnel_enabled -EXPORT_SYMBOL_GPL vmlinux 0x3daf668c devm_of_led_get +EXPORT_SYMBOL_GPL vmlinux 0x3dad5e49 fsverity_ioctl_read_metadata +EXPORT_SYMBOL_GPL vmlinux 0x3db0edbd dax_region_put EXPORT_SYMBOL_GPL vmlinux 0x3db48927 sbitmap_any_bit_set -EXPORT_SYMBOL_GPL vmlinux 0x3db499a5 devlink_param_unpublish -EXPORT_SYMBOL_GPL vmlinux 0x3db918ee of_property_read_u64_index -EXPORT_SYMBOL_GPL vmlinux 0x3dbab9bd __rio_local_read_config_16 -EXPORT_SYMBOL_GPL vmlinux 0x3dd288d5 put_pid +EXPORT_SYMBOL_GPL vmlinux 0x3db883c7 genphy_c45_pma_suspend +EXPORT_SYMBOL_GPL vmlinux 0x3ddcfbbe devlink_port_health_reporter_create +EXPORT_SYMBOL_GPL vmlinux 0x3de42f9c iommu_dev_enable_feature EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final +EXPORT_SYMBOL_GPL vmlinux 0x3df0c000 iommu_set_pgtable_quirks EXPORT_SYMBOL_GPL vmlinux 0x3df70c99 trace_clock_global -EXPORT_SYMBOL_GPL vmlinux 0x3e26d814 devm_led_classdev_register_ext -EXPORT_SYMBOL_GPL vmlinux 0x3e39f0b1 ata_sff_wait_after_reset -EXPORT_SYMBOL_GPL vmlinux 0x3e4015b4 regulator_set_load -EXPORT_SYMBOL_GPL vmlinux 0x3e4f8813 phy_driver_is_genphy +EXPORT_SYMBOL_GPL vmlinux 0x3e0da998 pci_set_host_bridge_release +EXPORT_SYMBOL_GPL vmlinux 0x3e0faa4c debugfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x3e33e2c6 pinctrl_lookup_state +EXPORT_SYMBOL_GPL vmlinux 0x3e3ff6f8 extcon_find_edev_by_node +EXPORT_SYMBOL_GPL vmlinux 0x3e43ee9e iommu_detach_device +EXPORT_SYMBOL_GPL vmlinux 0x3e55379d gpiochip_irqchip_add_domain EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer -EXPORT_SYMBOL_GPL vmlinux 0x3e76aed0 crypto_shash_setkey -EXPORT_SYMBOL_GPL vmlinux 0x3e789a02 kset_create_and_add -EXPORT_SYMBOL_GPL vmlinux 0x3e98461d tpm_put_ops -EXPORT_SYMBOL_GPL vmlinux 0x3e9c7ccf sysfs_add_file_to_group +EXPORT_SYMBOL_GPL vmlinux 0x3e9096ab inet_unhash +EXPORT_SYMBOL_GPL vmlinux 0x3e94188e mmu_notifier_put +EXPORT_SYMBOL_GPL vmlinux 0x3e95f181 regulator_irq_helper +EXPORT_SYMBOL_GPL vmlinux 0x3e984583 tegra_bpmp_mrq_is_supported +EXPORT_SYMBOL_GPL vmlinux 0x3e9b84b6 dm_get_md EXPORT_SYMBOL_GPL vmlinux 0x3ea5196d apei_osc_setup -EXPORT_SYMBOL_GPL vmlinux 0x3eb34186 fat_remove_entries -EXPORT_SYMBOL_GPL vmlinux 0x3ebbb3c1 __netdev_watchdog_up -EXPORT_SYMBOL_GPL vmlinux 0x3ec0057e security_inode_create -EXPORT_SYMBOL_GPL vmlinux 0x3ec4fc27 hisi_uncore_pmu_online_cpu +EXPORT_SYMBOL_GPL vmlinux 0x3ec02111 handle_fasteoi_nmi +EXPORT_SYMBOL_GPL vmlinux 0x3ec411d3 gnttab_page_cache_put EXPORT_SYMBOL_GPL vmlinux 0x3ecbce4e find_iova -EXPORT_SYMBOL_GPL vmlinux 0x3ed79572 spi_get_device_id EXPORT_SYMBOL_GPL vmlinux 0x3ef051c8 crypto_inc -EXPORT_SYMBOL_GPL vmlinux 0x3ef4e8d2 __mmdrop EXPORT_SYMBOL_GPL vmlinux 0x3efd1889 dax_direct_access -EXPORT_SYMBOL_GPL vmlinux 0x3f0d2e59 rio_del_device +EXPORT_SYMBOL_GPL vmlinux 0x3efe7c74 devm_bitmap_alloc +EXPORT_SYMBOL_GPL vmlinux 0x3f04c764 __pneigh_lookup +EXPORT_SYMBOL_GPL vmlinux 0x3f08152b sata_pmp_qc_defer_cmd_switch +EXPORT_SYMBOL_GPL vmlinux 0x3f0986a8 of_console_check +EXPORT_SYMBOL_GPL vmlinux 0x3f0f38e5 xdp_convert_zc_to_xdp_frame +EXPORT_SYMBOL_GPL vmlinux 0x3f143871 nf_ipv6_ops +EXPORT_SYMBOL_GPL vmlinux 0x3f14fd27 ata_pci_sff_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0x3f193576 unregister_pernet_subsys EXPORT_SYMBOL_GPL vmlinux 0x3f2092e3 fl6_update_dst -EXPORT_SYMBOL_GPL vmlinux 0x3f295d28 blk_trace_remove -EXPORT_SYMBOL_GPL vmlinux 0x3f349940 vchan_init -EXPORT_SYMBOL_GPL vmlinux 0x3f37fbcf hwspin_lock_unregister -EXPORT_SYMBOL_GPL vmlinux 0x3f3a89c3 fat_free_clusters -EXPORT_SYMBOL_GPL vmlinux 0x3f3df6b8 fsverity_verify_page -EXPORT_SYMBOL_GPL vmlinux 0x3f43a3f3 fwnode_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x3f243a27 trace_event_raw_init +EXPORT_SYMBOL_GPL vmlinux 0x3f2ca440 usb_get_maximum_ssp_rate +EXPORT_SYMBOL_GPL vmlinux 0x3f3749a1 kvm_vcpu_gfn_to_page +EXPORT_SYMBOL_GPL vmlinux 0x3f450571 rt_mutex_trylock +EXPORT_SYMBOL_GPL vmlinux 0x3f476071 spi_async +EXPORT_SYMBOL_GPL vmlinux 0x3f484fd7 cpufreq_dbs_governor_exit EXPORT_SYMBOL_GPL vmlinux 0x3f491f49 reset_control_bulk_reset -EXPORT_SYMBOL_GPL vmlinux 0x3f4de58d iommu_domain_free -EXPORT_SYMBOL_GPL vmlinux 0x3f63d017 dma_request_chan_by_mask -EXPORT_SYMBOL_GPL vmlinux 0x3f7563bf edac_get_sysfs_subsys -EXPORT_SYMBOL_GPL vmlinux 0x3f78ed23 regcache_sync_region +EXPORT_SYMBOL_GPL vmlinux 0x3f529ab6 hrtimer_sleeper_start_expires +EXPORT_SYMBOL_GPL vmlinux 0x3f636c44 pm_genpd_opp_to_performance_state +EXPORT_SYMBOL_GPL vmlinux 0x3f746ba0 pinctrl_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x3f774f6c fuse_fill_super_common +EXPORT_SYMBOL_GPL vmlinux 0x3f7abfbf put_pid +EXPORT_SYMBOL_GPL vmlinux 0x3f837072 proc_mkdir_data EXPORT_SYMBOL_GPL vmlinux 0x3f84bcd7 dax_alive EXPORT_SYMBOL_GPL vmlinux 0x3f8ab72e devlink_fmsg_bool_put -EXPORT_SYMBOL_GPL vmlinux 0x3f8d9639 irq_gc_ack_set_bit -EXPORT_SYMBOL_GPL vmlinux 0x3f8fea94 ahci_shost_attrs -EXPORT_SYMBOL_GPL vmlinux 0x3f962ea8 spi_setup +EXPORT_SYMBOL_GPL vmlinux 0x3fa978ff inverse_translate +EXPORT_SYMBOL_GPL vmlinux 0x3faa8424 sysfs_add_file_to_group EXPORT_SYMBOL_GPL vmlinux 0x3fae6ab0 hv_vp_index -EXPORT_SYMBOL_GPL vmlinux 0x3fae94ce tegra_mc_write_emem_configuration -EXPORT_SYMBOL_GPL vmlinux 0x3fb00dff devm_kasprintf -EXPORT_SYMBOL_GPL vmlinux 0x3fb73ae8 l3mdev_table_lookup_unregister -EXPORT_SYMBOL_GPL vmlinux 0x3fd2b2ae __traceiter_sched_util_est_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x3fc8ecfb hwmon_notify_event +EXPORT_SYMBOL_GPL vmlinux 0x3fda052a get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0x3fe1c2d9 regmap_parse_val EXPORT_SYMBOL_GPL vmlinux 0x3fe35aea irq_bypass_unregister_consumer EXPORT_SYMBOL_GPL vmlinux 0x3fe6c346 devlink_fmsg_binary_pair_put -EXPORT_SYMBOL_GPL vmlinux 0x3fe7cf1b regmap_raw_write EXPORT_SYMBOL_GPL vmlinux 0x3fea029c hisi_clk_register_gate +EXPORT_SYMBOL_GPL vmlinux 0x3ff15014 devm_gpio_free EXPORT_SYMBOL_GPL vmlinux 0x3ff82085 public_key_signature_free +EXPORT_SYMBOL_GPL vmlinux 0x3ffb0731 devlink_param_driverinit_value_get EXPORT_SYMBOL_GPL vmlinux 0x3ffdacf3 timerqueue_iterate_next -EXPORT_SYMBOL_GPL vmlinux 0x4002a7cc inet6_csk_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0x400a024b acpi_scan_lock_release -EXPORT_SYMBOL_GPL vmlinux 0x40132643 regmap_field_bulk_free -EXPORT_SYMBOL_GPL vmlinux 0x4018010b devm_reset_control_array_get +EXPORT_SYMBOL_GPL vmlinux 0x4015171d dev_pm_opp_get_voltage EXPORT_SYMBOL_GPL vmlinux 0x40267068 usb_anchor_resume_wakeups -EXPORT_SYMBOL_GPL vmlinux 0x402fcfd1 clkdev_hw_create -EXPORT_SYMBOL_GPL vmlinux 0x4038837a dev_pm_opp_init_cpufreq_table -EXPORT_SYMBOL_GPL vmlinux 0x403a4233 switchdev_port_obj_del +EXPORT_SYMBOL_GPL vmlinux 0x403b37f9 phy_restore_page +EXPORT_SYMBOL_GPL vmlinux 0x403ca775 ata_sff_dev_select EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one -EXPORT_SYMBOL_GPL vmlinux 0x4043b006 fuse_dev_free -EXPORT_SYMBOL_GPL vmlinux 0x4044b07a usb_submit_urb +EXPORT_SYMBOL_GPL vmlinux 0x404391e0 devlink_trap_groups_register EXPORT_SYMBOL_GPL vmlinux 0x4044ca16 pkcs7_verify -EXPORT_SYMBOL_GPL vmlinux 0x4054c320 of_platform_depopulate -EXPORT_SYMBOL_GPL vmlinux 0x405debaf devm_pinctrl_register +EXPORT_SYMBOL_GPL vmlinux 0x4046b86d edac_get_sysfs_subsys +EXPORT_SYMBOL_GPL vmlinux 0x4059847f devlink_traps_register EXPORT_SYMBOL_GPL vmlinux 0x4065d168 pm_print_active_wakeup_sources -EXPORT_SYMBOL_GPL vmlinux 0x40664989 pci_disable_pri +EXPORT_SYMBOL_GPL vmlinux 0x40663cd5 of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x406aa8e6 lp8788_read_multi_bytes EXPORT_SYMBOL_GPL vmlinux 0x406c4cb1 hrtimer_resolution +EXPORT_SYMBOL_GPL vmlinux 0x40713436 __efivar_entry_iter EXPORT_SYMBOL_GPL vmlinux 0x4071b517 out_of_line_wait_on_bit_timeout +EXPORT_SYMBOL_GPL vmlinux 0x4076d865 blk_ksm_init_passthrough EXPORT_SYMBOL_GPL vmlinux 0x407af304 usb_wait_anchor_empty_timeout -EXPORT_SYMBOL_GPL vmlinux 0x407cf1f7 usb_debug_root -EXPORT_SYMBOL_GPL vmlinux 0x40843d8e dm_accept_partial_bio -EXPORT_SYMBOL_GPL vmlinux 0x40939507 spi_controller_dma_map_mem_op_data +EXPORT_SYMBOL_GPL vmlinux 0x407b21eb nvdimm_volatile_region_create +EXPORT_SYMBOL_GPL vmlinux 0x4086601d relay_reset +EXPORT_SYMBOL_GPL vmlinux 0x40975a85 acpi_gpiochip_request_interrupts +EXPORT_SYMBOL_GPL vmlinux 0x4097952f class_compat_remove_link EXPORT_SYMBOL_GPL vmlinux 0x4099f919 tun_ptr_free -EXPORT_SYMBOL_GPL vmlinux 0x40a0b94c fwnode_get_name -EXPORT_SYMBOL_GPL vmlinux 0x40a0fbc5 call_switchdev_blocking_notifiers -EXPORT_SYMBOL_GPL vmlinux 0x40a6f5fa regulator_list_voltage_linear -EXPORT_SYMBOL_GPL vmlinux 0x40ba202c tpm_pcr_read -EXPORT_SYMBOL_GPL vmlinux 0x40cb1d26 gpiod_get_raw_array_value -EXPORT_SYMBOL_GPL vmlinux 0x40cf3c66 pinctrl_select_default_state +EXPORT_SYMBOL_GPL vmlinux 0x40b3781f crypto_shash_tfm_digest +EXPORT_SYMBOL_GPL vmlinux 0x40b7a0c4 ata_cable_unknown +EXPORT_SYMBOL_GPL vmlinux 0x40bdddd6 acpi_subsys_freeze +EXPORT_SYMBOL_GPL vmlinux 0x40c2f489 gpiod_set_raw_value +EXPORT_SYMBOL_GPL vmlinux 0x40c97ff6 extcon_get_edev_by_phandle EXPORT_SYMBOL_GPL vmlinux 0x40d349b6 sbitmap_queue_resize +EXPORT_SYMBOL_GPL vmlinux 0x40da1e4e edac_pci_del_device EXPORT_SYMBOL_GPL vmlinux 0x40e0ba52 ftrace_set_notrace -EXPORT_SYMBOL_GPL vmlinux 0x40e821f4 kvm_vcpu_read_guest_page 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 0x4105b38d ata_port_freeze -EXPORT_SYMBOL_GPL vmlinux 0x4109e103 iommu_map_sg -EXPORT_SYMBOL_GPL vmlinux 0x410f008c ata_sff_data_xfer -EXPORT_SYMBOL_GPL vmlinux 0x412093a5 anon_inode_getfd_secure EXPORT_SYMBOL_GPL vmlinux 0x41237f71 cpu_have_feature -EXPORT_SYMBOL_GPL vmlinux 0x412755ca irq_domain_xlate_onecell EXPORT_SYMBOL_GPL vmlinux 0x412bc681 ring_buffer_empty_cpu -EXPORT_SYMBOL_GPL vmlinux 0x4137c2a1 dm_internal_resume_fast +EXPORT_SYMBOL_GPL vmlinux 0x41308fdc subsys_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0x413a11af crypto_unregister_templates +EXPORT_SYMBOL_GPL vmlinux 0x414b9eb2 ip6_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0x414d119a videomode_from_timings -EXPORT_SYMBOL_GPL vmlinux 0x415f027c serdev_device_remove -EXPORT_SYMBOL_GPL vmlinux 0x41697746 usb_hcd_end_port_resume -EXPORT_SYMBOL_GPL vmlinux 0x416f4305 pwm_free -EXPORT_SYMBOL_GPL vmlinux 0x416fb4a0 spi_mem_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x41517832 tpm_try_get_ops +EXPORT_SYMBOL_GPL vmlinux 0x415fa1c9 pci_generic_config_read32 +EXPORT_SYMBOL_GPL vmlinux 0x416da3c5 imx_obtain_fixed_clk_hw +EXPORT_SYMBOL_GPL vmlinux 0x416f21ad dst_blackhole_redirect +EXPORT_SYMBOL_GPL vmlinux 0x417416df sysfs_create_bin_file EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval -EXPORT_SYMBOL_GPL vmlinux 0x4186e709 __skb_get_hash_symmetric EXPORT_SYMBOL_GPL vmlinux 0x418873cc irq_bypass_register_producer -EXPORT_SYMBOL_GPL vmlinux 0x4191ff4d dev_pm_opp_find_level_exact -EXPORT_SYMBOL_GPL vmlinux 0x4199e46d kvm_vcpu_on_spin +EXPORT_SYMBOL_GPL vmlinux 0x419b8975 simple_attr_open EXPORT_SYMBOL_GPL vmlinux 0x419d7c83 zynqmp_pm_pinctrl_set_config EXPORT_SYMBOL_GPL vmlinux 0x419e7efd sfp_module_stop EXPORT_SYMBOL_GPL vmlinux 0x41b9a6e6 bsg_unregister_queue EXPORT_SYMBOL_GPL vmlinux 0x41bce49a ghes_register_vendor_record_notifier -EXPORT_SYMBOL_GPL vmlinux 0x41c6ea34 __percpu_down_read +EXPORT_SYMBOL_GPL vmlinux 0x41c76d11 register_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0x41c99616 cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0x41d66d5c meson8_aobus_parse_dt_extra EXPORT_SYMBOL_GPL vmlinux 0x41ed3cec eventfd_ctx_remove_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0x41f4ab85 device_driver_attach -EXPORT_SYMBOL_GPL vmlinux 0x41fa7ce8 i2c_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x41fb2420 __traceiter_devlink_hwmsg EXPORT_SYMBOL_GPL vmlinux 0x42041512 i2c_get_dma_safe_msg_buf +EXPORT_SYMBOL_GPL vmlinux 0x420db156 clk_regmap_divider_ops EXPORT_SYMBOL_GPL vmlinux 0x420f3d01 nvmem_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x420f47d0 kobject_uevent_env -EXPORT_SYMBOL_GPL vmlinux 0x4216aeb9 kvm_vcpu_destroy -EXPORT_SYMBOL_GPL vmlinux 0x422d0dff md_do_sync -EXPORT_SYMBOL_GPL vmlinux 0x4235b018 debugfs_rename -EXPORT_SYMBOL_GPL vmlinux 0x4237bd89 rio_inb_pwrite_handler -EXPORT_SYMBOL_GPL vmlinux 0x423f27c0 platform_device_del -EXPORT_SYMBOL_GPL vmlinux 0x42517c1f generic_fh_to_parent -EXPORT_SYMBOL_GPL vmlinux 0x425326f7 pinctrl_add_gpio_ranges +EXPORT_SYMBOL_GPL vmlinux 0x421aecde filemap_read +EXPORT_SYMBOL_GPL vmlinux 0x421ff4f1 __ata_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x424607f2 usb_alloc_urb +EXPORT_SYMBOL_GPL vmlinux 0x424e4552 sysfs_unmerge_group +EXPORT_SYMBOL_GPL vmlinux 0x42594702 __root_device_register EXPORT_SYMBOL_GPL vmlinux 0x42635d55 pm_suspend_global_flags EXPORT_SYMBOL_GPL vmlinux 0x426452a3 acpi_evaluation_failure_warn -EXPORT_SYMBOL_GPL vmlinux 0x426753fa iommu_group_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x4269078f ping_unhash -EXPORT_SYMBOL_GPL vmlinux 0x426fac6f usb_autopm_put_interface_async -EXPORT_SYMBOL_GPL vmlinux 0x42787cbe devlink_region_snapshot_id_put +EXPORT_SYMBOL_GPL vmlinux 0x426a998a regmap_read +EXPORT_SYMBOL_GPL vmlinux 0x427ba8ac fib_add_nexthop +EXPORT_SYMBOL_GPL vmlinux 0x427d5285 ata_bmdma_start EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active -EXPORT_SYMBOL_GPL vmlinux 0x428345e2 inet_csk_reqsk_queue_hash_add -EXPORT_SYMBOL_GPL vmlinux 0x428a8898 ata_sff_drain_fifo -EXPORT_SYMBOL_GPL vmlinux 0x4292f266 hwspin_lock_register -EXPORT_SYMBOL_GPL vmlinux 0x42bc1198 fat_update_time -EXPORT_SYMBOL_GPL vmlinux 0x42cc865c genphy_c45_aneg_done -EXPORT_SYMBOL_GPL vmlinux 0x42d6f342 of_reserved_mem_device_init_by_idx -EXPORT_SYMBOL_GPL vmlinux 0x42dde7c4 rockchip_clk_add_lookup +EXPORT_SYMBOL_GPL vmlinux 0x42cd6d5d fuse_dev_install +EXPORT_SYMBOL_GPL vmlinux 0x42e3c683 xfrm_state_mtu EXPORT_SYMBOL_GPL vmlinux 0x42e9d0da ring_buffer_unlock_commit -EXPORT_SYMBOL_GPL vmlinux 0x42ef0639 devres_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x42f3c32c fscrypt_file_open EXPORT_SYMBOL_GPL vmlinux 0x42f728aa mctrl_gpio_get_outputs -EXPORT_SYMBOL_GPL vmlinux 0x42fa43b1 dst_cache_set_ip6 -EXPORT_SYMBOL_GPL vmlinux 0x42fc4ff8 mbox_controller_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4301fd99 of_clk_get_from_provider +EXPORT_SYMBOL_GPL vmlinux 0x430a7b70 regcache_drop_region EXPORT_SYMBOL_GPL vmlinux 0x430d88ec __traceiter_arm_event -EXPORT_SYMBOL_GPL vmlinux 0x43144300 serial8250_release_dma -EXPORT_SYMBOL_GPL vmlinux 0x43216cd8 kthread_flush_work -EXPORT_SYMBOL_GPL vmlinux 0x4347f280 __hwspin_trylock -EXPORT_SYMBOL_GPL vmlinux 0x434838ee __traceiter_block_rq_insert -EXPORT_SYMBOL_GPL vmlinux 0x435e81ec elv_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4369b632 l3mdev_fib_table_rcu -EXPORT_SYMBOL_GPL vmlinux 0x4369ff07 class_destroy +EXPORT_SYMBOL_GPL vmlinux 0x4321025f rio_dma_prep_xfer +EXPORT_SYMBOL_GPL vmlinux 0x43339388 __sock_recv_wifi_status +EXPORT_SYMBOL_GPL vmlinux 0x43438866 icc_enable +EXPORT_SYMBOL_GPL vmlinux 0x434ffef8 open_related_ns +EXPORT_SYMBOL_GPL vmlinux 0x4363a086 thermal_zone_of_sensor_register +EXPORT_SYMBOL_GPL vmlinux 0x43657e4c acpi_dev_get_resources EXPORT_SYMBOL_GPL vmlinux 0x436d817f mpi_clear_bit EXPORT_SYMBOL_GPL vmlinux 0x437eb1df ipv6_mod_enabled +EXPORT_SYMBOL_GPL vmlinux 0x438b6445 phy_destroy EXPORT_SYMBOL_GPL vmlinux 0x438d8df2 iova_cache_get -EXPORT_SYMBOL_GPL vmlinux 0x439521c9 ahci_reset_controller -EXPORT_SYMBOL_GPL vmlinux 0x43a948ea ahci_ops +EXPORT_SYMBOL_GPL vmlinux 0x43a003de xenbus_watch_path +EXPORT_SYMBOL_GPL vmlinux 0x43a2d3a4 rockchip_pcie_enable_clocks EXPORT_SYMBOL_GPL vmlinux 0x43aa319e lease_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x43beea8c pci_epf_alloc_space -EXPORT_SYMBOL_GPL vmlinux 0x43e4775c led_classdev_register_ext -EXPORT_SYMBOL_GPL vmlinux 0x43ea96f9 scsi_dh_attach -EXPORT_SYMBOL_GPL vmlinux 0x43ed6886 i2c_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x43be52bc gpiod_unexport +EXPORT_SYMBOL_GPL vmlinux 0x43cde1e1 sdio_align_size +EXPORT_SYMBOL_GPL vmlinux 0x43d3b288 __blkg_prfill_u64 +EXPORT_SYMBOL_GPL vmlinux 0x43d658e0 get_device +EXPORT_SYMBOL_GPL vmlinux 0x43dcac82 gpiod_set_transitory +EXPORT_SYMBOL_GPL vmlinux 0x43edaec0 crypto_ahash_finup EXPORT_SYMBOL_GPL vmlinux 0x43f56e82 ata_xfer_mode2shift +EXPORT_SYMBOL_GPL vmlinux 0x43f766f3 meson_clk_mpll_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x43f7933b pinctrl_dev_get_devname EXPORT_SYMBOL_GPL vmlinux 0x43f81957 clk_round_rate +EXPORT_SYMBOL_GPL vmlinux 0x43f88107 devm_phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0x43f8fe5d phy_resolve_aneg_pause EXPORT_SYMBOL_GPL vmlinux 0x43f92edd wait_for_initramfs -EXPORT_SYMBOL_GPL vmlinux 0x43fda3ab fscrypt_get_symlink +EXPORT_SYMBOL_GPL vmlinux 0x43fd4358 dma_buf_map_attachment EXPORT_SYMBOL_GPL vmlinux 0x4401e6c2 mpi_cmpabs -EXPORT_SYMBOL_GPL vmlinux 0x44273e08 wakeup_source_remove -EXPORT_SYMBOL_GPL vmlinux 0x442997ce rio_mport_chk_dev_access -EXPORT_SYMBOL_GPL vmlinux 0x4429e8af sched_trace_cfs_rq_path +EXPORT_SYMBOL_GPL vmlinux 0x44115393 kvm_arch_ptp_get_crosststamp +EXPORT_SYMBOL_GPL vmlinux 0x4419f61a do_splice_to EXPORT_SYMBOL_GPL vmlinux 0x442deaa9 poll_state_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0x4435652e dpcon_open -EXPORT_SYMBOL_GPL vmlinux 0x44376be5 regulator_set_soft_start_regmap +EXPORT_SYMBOL_GPL vmlinux 0x4435533a device_find_child_by_name +EXPORT_SYMBOL_GPL vmlinux 0x4438558c ata_dev_pair +EXPORT_SYMBOL_GPL vmlinux 0x44388091 scsi_dh_activate EXPORT_SYMBOL_GPL vmlinux 0x4439bcd2 __SCK__tp_func_neigh_event_send_dead -EXPORT_SYMBOL_GPL vmlinux 0x444aa779 acpi_dev_suspend EXPORT_SYMBOL_GPL vmlinux 0x444f1735 cpu_pm_register_notifier EXPORT_SYMBOL_GPL vmlinux 0x445a09c0 nvmem_device_cell_write -EXPORT_SYMBOL_GPL vmlinux 0x4463a158 evm_inode_init_security -EXPORT_SYMBOL_GPL vmlinux 0x44669475 of_phandle_iterator_next -EXPORT_SYMBOL_GPL vmlinux 0x4476442b ata_port_abort -EXPORT_SYMBOL_GPL vmlinux 0x4481fe2a spi_mem_dirmap_create +EXPORT_SYMBOL_GPL vmlinux 0x44760ea6 __rio_local_write_config_16 EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe -EXPORT_SYMBOL_GPL vmlinux 0x4486a53a netdev_set_default_ethtool_ops -EXPORT_SYMBOL_GPL vmlinux 0x449ef846 sysfs_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0x448e6a68 driver_find +EXPORT_SYMBOL_GPL vmlinux 0x44940470 fat_fill_super +EXPORT_SYMBOL_GPL vmlinux 0x44a59e4d sk_free_unlock_clone EXPORT_SYMBOL_GPL vmlinux 0x44a793ab HYPERVISOR_grant_table_op -EXPORT_SYMBOL_GPL vmlinux 0x44b190b6 dev_pm_qos_hide_flags -EXPORT_SYMBOL_GPL vmlinux 0x44b353a0 pinconf_generic_dump_config +EXPORT_SYMBOL_GPL vmlinux 0x44a99a57 serial8250_rpm_put +EXPORT_SYMBOL_GPL vmlinux 0x44ba1d34 iterate_mounts EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout -EXPORT_SYMBOL_GPL vmlinux 0x44c8d5fb pm_clk_remove_clk +EXPORT_SYMBOL_GPL vmlinux 0x44c38ff1 sdio_release_host EXPORT_SYMBOL_GPL vmlinux 0x44cf8cf0 blk_zone_cond_str -EXPORT_SYMBOL_GPL vmlinux 0x44d12b36 securityfs_create_dir -EXPORT_SYMBOL_GPL vmlinux 0x44d3fdb2 xenbus_dev_changed EXPORT_SYMBOL_GPL vmlinux 0x44e1e9aa balloon_stats -EXPORT_SYMBOL_GPL vmlinux 0x45077b85 devm_hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x44fda317 regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x450284d8 irq_domain_create_legacy EXPORT_SYMBOL_GPL vmlinux 0x4507f4a8 cpuhp_tasks_frozen -EXPORT_SYMBOL_GPL vmlinux 0x45144ce3 i2c_acpi_client_count -EXPORT_SYMBOL_GPL vmlinux 0x4514ecc7 usb_phy_set_charger_current -EXPORT_SYMBOL_GPL vmlinux 0x452cc909 clk_hw_get_parent_by_index +EXPORT_SYMBOL_GPL vmlinux 0x450e9038 nf_route +EXPORT_SYMBOL_GPL vmlinux 0x451076f5 sysfs_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x452d7800 event_triggers_post_call EXPORT_SYMBOL_GPL vmlinux 0x4531624f usb_decode_ctrl EXPORT_SYMBOL_GPL vmlinux 0x4531ab62 copy_from_kernel_nofault -EXPORT_SYMBOL_GPL vmlinux 0x4532a579 xhci_ext_cap_init -EXPORT_SYMBOL_GPL vmlinux 0x453f17db sysfs_remove_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x4550640e of_usb_get_dr_mode_by_phy +EXPORT_SYMBOL_GPL vmlinux 0x45336027 inet6_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x4533ad42 usb_acpi_power_manageable +EXPORT_SYMBOL_GPL vmlinux 0x454e167b spi_alloc_device +EXPORT_SYMBOL_GPL vmlinux 0x454ed500 usb_phy_get_charger_current EXPORT_SYMBOL_GPL vmlinux 0x45558f56 clk_unregister_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0x4557f6e7 kthread_mod_delayed_work -EXPORT_SYMBOL_GPL vmlinux 0x455beb8a rio_request_outb_dbell -EXPORT_SYMBOL_GPL vmlinux 0x455c50ce hisi_uncore_pmu_del +EXPORT_SYMBOL_GPL vmlinux 0x45580c14 mpc8xxx_spi_tx_buf_u8 +EXPORT_SYMBOL_GPL vmlinux 0x45584e87 genphy_c45_read_mdix +EXPORT_SYMBOL_GPL vmlinux 0x4558d6d8 sk_psock_init +EXPORT_SYMBOL_GPL vmlinux 0x455b8755 ti_sci_inta_msi_create_irq_domain EXPORT_SYMBOL_GPL vmlinux 0x4561f990 qcom_smem_state_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4563b2b7 crypto_register_scomps EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list -EXPORT_SYMBOL_GPL vmlinux 0x45769bfd switchdev_bridge_port_offload -EXPORT_SYMBOL_GPL vmlinux 0x45971d0c devm_power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0x4576890c sysfs_groups_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x4576c5ed skcipher_walk_virt +EXPORT_SYMBOL_GPL vmlinux 0x457cbfcf driver_find_device +EXPORT_SYMBOL_GPL vmlinux 0x457d7a81 cpufreq_freq_attr_scaling_boost_freqs +EXPORT_SYMBOL_GPL vmlinux 0x4584ee6e usb_remove_phy +EXPORT_SYMBOL_GPL vmlinux 0x4589e234 fib_nh_common_release EXPORT_SYMBOL_GPL vmlinux 0x459e6151 mm_unaccount_pinned_pages -EXPORT_SYMBOL_GPL vmlinux 0x45bc9c27 __rio_local_read_config_32 -EXPORT_SYMBOL_GPL vmlinux 0x45c85c3e ata_pci_sff_activate_host -EXPORT_SYMBOL_GPL vmlinux 0x45cb235e dm_hold -EXPORT_SYMBOL_GPL vmlinux 0x45d5d81e devm_add_action -EXPORT_SYMBOL_GPL vmlinux 0x45da7893 device_remove_software_node -EXPORT_SYMBOL_GPL vmlinux 0x460032d7 led_stop_software_blink +EXPORT_SYMBOL_GPL vmlinux 0x45a1a245 xhci_dbg_trace +EXPORT_SYMBOL_GPL vmlinux 0x45b24cd2 crypto_register_aead +EXPORT_SYMBOL_GPL vmlinux 0x45b8eb5d virtqueue_add_sgs +EXPORT_SYMBOL_GPL vmlinux 0x45c647cc wakeup_source_add +EXPORT_SYMBOL_GPL vmlinux 0x45c7c089 __devm_of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0x45e549db transport_destroy_device +EXPORT_SYMBOL_GPL vmlinux 0x45f96586 spi_mem_dirmap_destroy +EXPORT_SYMBOL_GPL vmlinux 0x45fd6eef bind_interdomain_evtchn_to_irq_lateeoi EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue EXPORT_SYMBOL_GPL vmlinux 0x46030074 __hrtimer_get_remaining -EXPORT_SYMBOL_GPL vmlinux 0x4614e18a usb_block_urb -EXPORT_SYMBOL_GPL vmlinux 0x46220b81 mptcp_pm_get_add_addr_signal_max +EXPORT_SYMBOL_GPL vmlinux 0x46053034 mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0x4608f4cd of_device_modalias +EXPORT_SYMBOL_GPL vmlinux 0x4613453e cpufreq_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x4621d916 ata_ncq_sdev_attrs +EXPORT_SYMBOL_GPL vmlinux 0x4624f759 __kvm_set_memory_region EXPORT_SYMBOL_GPL vmlinux 0x46269814 __tracepoint_neigh_event_send_dead -EXPORT_SYMBOL_GPL vmlinux 0x46321bbd of_phy_get -EXPORT_SYMBOL_GPL vmlinux 0x4633dfb3 preempt_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4644c7da netdev_walk_all_upper_dev_rcu -EXPORT_SYMBOL_GPL vmlinux 0x464b7923 of_reserved_mem_lookup -EXPORT_SYMBOL_GPL vmlinux 0x464cdbb1 power_supply_put_battery_info -EXPORT_SYMBOL_GPL vmlinux 0x46693afa devm_gpio_request_one -EXPORT_SYMBOL_GPL vmlinux 0x467e239b dprc_get_obj -EXPORT_SYMBOL_GPL vmlinux 0x46811401 kvm_read_guest +EXPORT_SYMBOL_GPL vmlinux 0x46563278 devm_platform_get_and_ioremap_resource +EXPORT_SYMBOL_GPL vmlinux 0x465a2c6c __devm_irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0x4663203d gnttab_foreach_grant_in_range +EXPORT_SYMBOL_GPL vmlinux 0x4681b087 is_transparent_hugepage EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x46922494 bpf_prog_select_runtime +EXPORT_SYMBOL_GPL vmlinux 0x4697926d i2c_match_id +EXPORT_SYMBOL_GPL vmlinux 0x469c2994 fsl_mc_object_free EXPORT_SYMBOL_GPL vmlinux 0x46a4b118 hrtimer_cancel -EXPORT_SYMBOL_GPL vmlinux 0x46a63c53 wb_writeout_inc +EXPORT_SYMBOL_GPL vmlinux 0x46a84edd sysfs_update_groups +EXPORT_SYMBOL_GPL vmlinux 0x46c3466d tpm_get_timeouts EXPORT_SYMBOL_GPL vmlinux 0x46c5be22 clk_multiplier_ops -EXPORT_SYMBOL_GPL vmlinux 0x46df1935 attribute_container_classdev_to_container -EXPORT_SYMBOL_GPL vmlinux 0x46df9c89 usb_kill_urb -EXPORT_SYMBOL_GPL vmlinux 0x46e4b703 bpf_prog_put -EXPORT_SYMBOL_GPL vmlinux 0x46ecbfda fwnode_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0x46c8032e ata_sas_port_stop +EXPORT_SYMBOL_GPL vmlinux 0x46cd6246 xfrm_audit_state_icvfail +EXPORT_SYMBOL_GPL vmlinux 0x46dd4596 ata_sas_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x46e7acd9 usb_get_intf +EXPORT_SYMBOL_GPL vmlinux 0x46eaffd6 skb_morph +EXPORT_SYMBOL_GPL vmlinux 0x46edc27c hwspin_lock_free EXPORT_SYMBOL_GPL vmlinux 0x46f42be0 devlink_fmsg_u8_put -EXPORT_SYMBOL_GPL vmlinux 0x47161103 inet_csk_route_req -EXPORT_SYMBOL_GPL vmlinux 0x4720c050 genphy_c45_read_pma +EXPORT_SYMBOL_GPL vmlinux 0x46fbb852 crypto_register_acomp +EXPORT_SYMBOL_GPL vmlinux 0x47137d9b ahci_platform_disable_clks EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request -EXPORT_SYMBOL_GPL vmlinux 0x47286f13 sdio_align_size -EXPORT_SYMBOL_GPL vmlinux 0x475f60e5 fib_nh_common_init +EXPORT_SYMBOL_GPL vmlinux 0x4735f199 spi_busnum_to_master +EXPORT_SYMBOL_GPL vmlinux 0x474926b7 pci_hp_deregister +EXPORT_SYMBOL_GPL vmlinux 0x4760aa8a kvm_write_guest +EXPORT_SYMBOL_GPL vmlinux 0x47611710 acpi_pm_set_device_wakeup EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4763c912 meson_a1_parse_dt_extra -EXPORT_SYMBOL_GPL vmlinux 0x4764ee63 rt_mutex_lock_interruptible -EXPORT_SYMBOL_GPL vmlinux 0x476b879d mtk_hw_set_value -EXPORT_SYMBOL_GPL vmlinux 0x476d5c3c meson_vid_pll_div_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0x47807d00 pwm_capture +EXPORT_SYMBOL_GPL vmlinux 0x47691b02 tcp_twsk_destructor +EXPORT_SYMBOL_GPL vmlinux 0x47755ef2 ata_do_dev_read_id +EXPORT_SYMBOL_GPL vmlinux 0x4780f3fc skb_zerocopy_headlen EXPORT_SYMBOL_GPL vmlinux 0x47884890 system_power_efficient_wq EXPORT_SYMBOL_GPL vmlinux 0x478debf5 phy_10gbit_fec_features EXPORT_SYMBOL_GPL vmlinux 0x478e81f8 tcp_orphan_count -EXPORT_SYMBOL_GPL vmlinux 0x478f030f iommu_fwspec_add_ids -EXPORT_SYMBOL_GPL vmlinux 0x4793eebc ping_close -EXPORT_SYMBOL_GPL vmlinux 0x479e68af dev_pm_domain_set +EXPORT_SYMBOL_GPL vmlinux 0x4798da2d lp8788_update_bits EXPORT_SYMBOL_GPL vmlinux 0x479f7d4b clk_bulk_disable -EXPORT_SYMBOL_GPL vmlinux 0x47a84dcc do_tcp_sendpages +EXPORT_SYMBOL_GPL vmlinux 0x47a6176c usb_string EXPORT_SYMBOL_GPL vmlinux 0x47aad3b9 have_governor_per_policy -EXPORT_SYMBOL_GPL vmlinux 0x47b01af6 of_irq_get -EXPORT_SYMBOL_GPL vmlinux 0x47cac21f xenbus_frontend_closed +EXPORT_SYMBOL_GPL vmlinux 0x47b2887e iptunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0x47bbf630 udp_destruct_sock +EXPORT_SYMBOL_GPL vmlinux 0x47c2242a devm_regulator_register +EXPORT_SYMBOL_GPL vmlinux 0x47c35dac disk_uevent +EXPORT_SYMBOL_GPL vmlinux 0x47c383ba pci_bus_resource_n EXPORT_SYMBOL_GPL vmlinux 0x47d0eea2 acpi_lpat_temp_to_raw +EXPORT_SYMBOL_GPL vmlinux 0x47db287b rtc_update_irq EXPORT_SYMBOL_GPL vmlinux 0x47de0dc7 clk_unregister_mux +EXPORT_SYMBOL_GPL vmlinux 0x47eaf697 regulator_sync_voltage +EXPORT_SYMBOL_GPL vmlinux 0x47fa04e2 dev_pm_opp_get_max_clock_latency +EXPORT_SYMBOL_GPL vmlinux 0x47fdf3f3 nvmem_device_get EXPORT_SYMBOL_GPL vmlinux 0x480305ca kmsg_dump_rewind -EXPORT_SYMBOL_GPL vmlinux 0x48032c2a mmu_notifier_get_locked +EXPORT_SYMBOL_GPL vmlinux 0x4810fbc0 regulator_get_voltage EXPORT_SYMBOL_GPL vmlinux 0x4815aa79 dev_pm_opp_cpumask_remove_table +EXPORT_SYMBOL_GPL vmlinux 0x481d43ca bgmac_alloc EXPORT_SYMBOL_GPL vmlinux 0x481f9b7d mpi_mulm +EXPORT_SYMBOL_GPL vmlinux 0x48235574 console_drivers EXPORT_SYMBOL_GPL vmlinux 0x4828e77b acpi_scan_lock_acquire +EXPORT_SYMBOL_GPL vmlinux 0x482b2323 fsl_mc_device_group EXPORT_SYMBOL_GPL vmlinux 0x4843a748 qman_portals_probed -EXPORT_SYMBOL_GPL vmlinux 0x4843d79c fib_rule_matchall -EXPORT_SYMBOL_GPL vmlinux 0x48446879 mmc_app_cmd +EXPORT_SYMBOL_GPL vmlinux 0x4845ed01 ip4_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0x48479d7d extcon_register_notifier_all +EXPORT_SYMBOL_GPL vmlinux 0x4849acf2 tty_release_struct +EXPORT_SYMBOL_GPL vmlinux 0x4855316f edac_pci_free_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0x48573dad usb_mon_register EXPORT_SYMBOL_GPL vmlinux 0x485cd7f6 kvm_rebooting -EXPORT_SYMBOL_GPL vmlinux 0x4863a1f6 bgmac_enet_probe -EXPORT_SYMBOL_GPL vmlinux 0x4868c985 dm_per_bio_data +EXPORT_SYMBOL_GPL vmlinux 0x486bde9a eventfd_fget +EXPORT_SYMBOL_GPL vmlinux 0x486de378 stmpe_reg_write EXPORT_SYMBOL_GPL vmlinux 0x486dedc3 ghes_unregister_vendor_record_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4872bcf7 ahash_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x487528e3 firmware_request_platform -EXPORT_SYMBOL_GPL vmlinux 0x487e84e6 to_nvdimm_bus +EXPORT_SYMBOL_GPL vmlinux 0x486e860e devm_gpiod_unhinge +EXPORT_SYMBOL_GPL vmlinux 0x4875ce44 l3mdev_master_ifindex_rcu +EXPORT_SYMBOL_GPL vmlinux 0x4892925c l3mdev_fib_table_by_index EXPORT_SYMBOL_GPL vmlinux 0x48a3a923 pkcs7_get_content_data +EXPORT_SYMBOL_GPL vmlinux 0x48a3bc96 ulpi_viewport_access_ops EXPORT_SYMBOL_GPL vmlinux 0x48a3d20b mctrl_gpio_get -EXPORT_SYMBOL_GPL vmlinux 0x48a96a62 dma_buf_pin +EXPORT_SYMBOL_GPL vmlinux 0x48abe3f9 bpf_map_inc_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x48b36f55 clk_hw_unregister_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x48bfc3bf ip6_input EXPORT_SYMBOL_GPL vmlinux 0x48c32847 __SCK__tp_func_sched_util_est_se_tp -EXPORT_SYMBOL_GPL vmlinux 0x48e202e7 debugfs_attr_read -EXPORT_SYMBOL_GPL vmlinux 0x48e31482 dev_pm_opp_put -EXPORT_SYMBOL_GPL vmlinux 0x48e61eda gnttab_foreach_grant_in_range -EXPORT_SYMBOL_GPL vmlinux 0x48ec1c65 ncsi_vlan_rx_kill_vid -EXPORT_SYMBOL_GPL vmlinux 0x48eca5a4 xdp_rxq_info_is_reg +EXPORT_SYMBOL_GPL vmlinux 0x48cb3a65 devm_pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0x48da09bf dw_pcie_host_init +EXPORT_SYMBOL_GPL vmlinux 0x48e4d544 transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x48f3fea4 fat_getattr EXPORT_SYMBOL_GPL vmlinux 0x48f49400 apei_hest_parse +EXPORT_SYMBOL_GPL vmlinux 0x48f55660 of_genpd_add_provider_simple +EXPORT_SYMBOL_GPL vmlinux 0x4910b2ac bpf_map_inc +EXPORT_SYMBOL_GPL vmlinux 0x491d9e30 class_dev_iter_exit EXPORT_SYMBOL_GPL vmlinux 0x49242bc7 freezer_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x4926d284 unregister_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x49271623 fwnode_graph_get_remote_port +EXPORT_SYMBOL_GPL vmlinux 0x49317450 generic_online_page EXPORT_SYMBOL_GPL vmlinux 0x4934bdd0 crypto_check_attr_type EXPORT_SYMBOL_GPL vmlinux 0x4939ebcd numa_map_to_online_node -EXPORT_SYMBOL_GPL vmlinux 0x493f4976 hisi_cpumask_sysfs_show -EXPORT_SYMBOL_GPL vmlinux 0x4946d1af cpci_hp_register_controller +EXPORT_SYMBOL_GPL vmlinux 0x4953745c edac_mc_alloc +EXPORT_SYMBOL_GPL vmlinux 0x49548cee mtk_eint_set_debounce +EXPORT_SYMBOL_GPL vmlinux 0x495de503 dax_copy_to_iter EXPORT_SYMBOL_GPL vmlinux 0x49608959 migrate_disable -EXPORT_SYMBOL_GPL vmlinux 0x496b4b38 hrtimer_init_sleeper -EXPORT_SYMBOL_GPL vmlinux 0x497b78b8 mdiobus_modify -EXPORT_SYMBOL_GPL vmlinux 0x49859c18 __hwspin_unlock +EXPORT_SYMBOL_GPL vmlinux 0x497de84d gpiochip_remove_pin_ranges +EXPORT_SYMBOL_GPL vmlinux 0x49901925 devfreq_cooling_unregister EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue -EXPORT_SYMBOL_GPL vmlinux 0x4991a778 mctrl_gpio_free -EXPORT_SYMBOL_GPL vmlinux 0x499df6b6 crypto_alloc_aead -EXPORT_SYMBOL_GPL vmlinux 0x49a9eb26 __skb_tstamp_tx -EXPORT_SYMBOL_GPL vmlinux 0x49ae9336 regulator_list_hardware_vsel -EXPORT_SYMBOL_GPL vmlinux 0x49b187a3 iommu_aux_detach_device -EXPORT_SYMBOL_GPL vmlinux 0x49b28a97 pci_sriov_set_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0x49b9415a vp_modern_config_vector +EXPORT_SYMBOL_GPL vmlinux 0x49bcf733 dm_suspended +EXPORT_SYMBOL_GPL vmlinux 0x49c3da77 perf_event_enable EXPORT_SYMBOL_GPL vmlinux 0x49cd25ed alloc_workqueue -EXPORT_SYMBOL_GPL vmlinux 0x49d64f7c phy_package_leave -EXPORT_SYMBOL_GPL vmlinux 0x49df4252 efivars_unregister -EXPORT_SYMBOL_GPL vmlinux 0x49e1912b devlink_param_driverinit_value_set +EXPORT_SYMBOL_GPL vmlinux 0x49e0a5d1 dev_pm_genpd_set_performance_state +EXPORT_SYMBOL_GPL vmlinux 0x49e2f835 tty_ldisc_receive_buf +EXPORT_SYMBOL_GPL vmlinux 0x49e3ec79 blk_req_zone_write_trylock EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0x49f81b0d skb_pull_rcsum -EXPORT_SYMBOL_GPL vmlinux 0x49fd1226 device_create -EXPORT_SYMBOL_GPL vmlinux 0x4a05418e ata_std_bios_param +EXPORT_SYMBOL_GPL vmlinux 0x49ebfc3d ata_pci_device_do_suspend +EXPORT_SYMBOL_GPL vmlinux 0x49fe3b87 powercap_unregister_zone +EXPORT_SYMBOL_GPL vmlinux 0x4a002bc9 sock_diag_unregister_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0x4a09eb2d pwm_adjust_config +EXPORT_SYMBOL_GPL vmlinux 0x4a0cbd16 spi_mem_dirmap_write +EXPORT_SYMBOL_GPL vmlinux 0x4a0df280 dev_pm_opp_find_freq_ceil_by_volt +EXPORT_SYMBOL_GPL vmlinux 0x4a129681 inet6_csk_xmit +EXPORT_SYMBOL_GPL vmlinux 0x4a14a94f ata_sff_error_handler EXPORT_SYMBOL_GPL vmlinux 0x4a17ed66 sysrq_mask -EXPORT_SYMBOL_GPL vmlinux 0x4a1c5a7f spi_mem_dtr_supports_op +EXPORT_SYMBOL_GPL vmlinux 0x4a1a5cab serial8250_do_startup +EXPORT_SYMBOL_GPL vmlinux 0x4a1f601e wm8350_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0x4a2bd695 subsys_dev_iter_next EXPORT_SYMBOL_GPL vmlinux 0x4a420d09 acpi_bus_detach_private_data -EXPORT_SYMBOL_GPL vmlinux 0x4a60555d set_task_ioprio -EXPORT_SYMBOL_GPL vmlinux 0x4a71761a phy_package_join -EXPORT_SYMBOL_GPL vmlinux 0x4a909f4d __udp_enqueue_schedule_skb -EXPORT_SYMBOL_GPL vmlinux 0x4aacc049 tps6586x_get_version -EXPORT_SYMBOL_GPL vmlinux 0x4ac226f3 of_thermal_is_trip_valid -EXPORT_SYMBOL_GPL vmlinux 0x4acf2670 pm_runtime_force_suspend -EXPORT_SYMBOL_GPL vmlinux 0x4ad0c136 crypto_aes_set_key -EXPORT_SYMBOL_GPL vmlinux 0x4aea204d hwpoison_filter -EXPORT_SYMBOL_GPL vmlinux 0x4b1b7f37 device_match_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x4b283638 devlink_port_param_driverinit_value_get -EXPORT_SYMBOL_GPL vmlinux 0x4b2bc4c4 key_type_user -EXPORT_SYMBOL_GPL vmlinux 0x4b3d46ac pin_user_pages_fast_only -EXPORT_SYMBOL_GPL vmlinux 0x4b478ee7 of_remove_property -EXPORT_SYMBOL_GPL vmlinux 0x4b48be85 dev_pm_opp_put_opp_table -EXPORT_SYMBOL_GPL vmlinux 0x4b50f903 xenbus_dev_is_online +EXPORT_SYMBOL_GPL vmlinux 0x4a6000ff dmaengine_desc_get_metadata_ptr +EXPORT_SYMBOL_GPL vmlinux 0x4a737341 gnttab_page_cache_get +EXPORT_SYMBOL_GPL vmlinux 0x4a7e5a88 xenbus_register_driver_common +EXPORT_SYMBOL_GPL vmlinux 0x4a8e07a9 ipv6_bpf_stub +EXPORT_SYMBOL_GPL vmlinux 0x4a90a07c acpi_dev_get_dma_resources +EXPORT_SYMBOL_GPL vmlinux 0x4a9926a6 nvmem_cell_read_u16 +EXPORT_SYMBOL_GPL vmlinux 0x4aa1f8c4 acct_bioset_exit +EXPORT_SYMBOL_GPL vmlinux 0x4aa3ab29 acpi_match_device +EXPORT_SYMBOL_GPL vmlinux 0x4ab230ac gpiochip_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0x4ab4aef2 usb_kill_urb +EXPORT_SYMBOL_GPL vmlinux 0x4ab57a64 fuse_get_unique +EXPORT_SYMBOL_GPL vmlinux 0x4abe14e9 proc_get_parent_data +EXPORT_SYMBOL_GPL vmlinux 0x4acab04b iommu_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4aeed220 usb_hub_find_child +EXPORT_SYMBOL_GPL vmlinux 0x4afc4866 dax_iomap_rw +EXPORT_SYMBOL_GPL vmlinux 0x4b4a7914 ata_bmdma_stop EXPORT_SYMBOL_GPL vmlinux 0x4b51f74c ata_xfer_mode2mask +EXPORT_SYMBOL_GPL vmlinux 0x4b56c7f3 pcc_mbox_request_channel EXPORT_SYMBOL_GPL vmlinux 0x4b5acf74 rhashtable_init -EXPORT_SYMBOL_GPL vmlinux 0x4b64d8a8 sysfs_remove_link_from_group -EXPORT_SYMBOL_GPL vmlinux 0x4b653b35 pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4b6e2514 __fat_fs_error EXPORT_SYMBOL_GPL vmlinux 0x4b72009e dynamic_debug_exec_queries -EXPORT_SYMBOL_GPL vmlinux 0x4b7368ef sdio_signal_irq -EXPORT_SYMBOL_GPL vmlinux 0x4b7f3284 pinctrl_generic_get_group_count -EXPORT_SYMBOL_GPL vmlinux 0x4b87c5ed regulator_disable -EXPORT_SYMBOL_GPL vmlinux 0x4b894625 of_dma_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0x4b7562f3 input_ff_event +EXPORT_SYMBOL_GPL vmlinux 0x4b75e53d serdev_device_write_room +EXPORT_SYMBOL_GPL vmlinux 0x4b78a411 rio_map_inb_region +EXPORT_SYMBOL_GPL vmlinux 0x4b8a0b00 blk_mq_unfreeze_queue EXPORT_SYMBOL_GPL vmlinux 0x4b931968 xen_features -EXPORT_SYMBOL_GPL vmlinux 0x4b976350 pm_generic_restore_early -EXPORT_SYMBOL_GPL vmlinux 0x4ba0b455 phy_led_triggers_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4ba4fa44 bio_alloc_kiocb +EXPORT_SYMBOL_GPL vmlinux 0x4baf952d tcp_slow_start +EXPORT_SYMBOL_GPL vmlinux 0x4baf9be3 xdp_return_frame_bulk EXPORT_SYMBOL_GPL vmlinux 0x4bc8727f xen_balloon_init -EXPORT_SYMBOL_GPL vmlinux 0x4bcf3ced ohci_resume -EXPORT_SYMBOL_GPL vmlinux 0x4bcfe51e da903x_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4bcb7daf __percpu_init_rwsem EXPORT_SYMBOL_GPL vmlinux 0x4bd6f08b misc_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x4be48728 dm_get_md -EXPORT_SYMBOL_GPL vmlinux 0x4c03eddd policy_has_boost_freq -EXPORT_SYMBOL_GPL vmlinux 0x4c11fb4e gpiod_direction_output +EXPORT_SYMBOL_GPL vmlinux 0x4be754cd tps6586x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x4bf4c85d fsl_mc_device_remove +EXPORT_SYMBOL_GPL vmlinux 0x4bf6bf1b device_del +EXPORT_SYMBOL_GPL vmlinux 0x4c03db41 sata_lpm_ignore_phy_events +EXPORT_SYMBOL_GPL vmlinux 0x4c0d8cab mdiobus_modify +EXPORT_SYMBOL_GPL vmlinux 0x4c2831fe i2c_probe_func_quick_read EXPORT_SYMBOL_GPL vmlinux 0x4c2c0ea7 evtchn_make_refcounted -EXPORT_SYMBOL_GPL vmlinux 0x4c358f5d crypto_register_ahashes -EXPORT_SYMBOL_GPL vmlinux 0x4c4430b0 mmu_interval_notifier_insert -EXPORT_SYMBOL_GPL vmlinux 0x4c44c903 mpc8xxx_spi_tx_buf_u32 -EXPORT_SYMBOL_GPL vmlinux 0x4c4eda64 vfs_getxattr +EXPORT_SYMBOL_GPL vmlinux 0x4c32daab __platform_create_bundle +EXPORT_SYMBOL_GPL vmlinux 0x4c33e1b1 clone_private_mount +EXPORT_SYMBOL_GPL vmlinux 0x4c3c70de gpiochip_irq_domain_deactivate +EXPORT_SYMBOL_GPL vmlinux 0x4c4aeba4 meson_clk_pll_ro_ops EXPORT_SYMBOL_GPL vmlinux 0x4c549b36 __traceiter_xhci_dbg_quirks -EXPORT_SYMBOL_GPL vmlinux 0x4c614d78 devm_usb_get_phy -EXPORT_SYMBOL_GPL vmlinux 0x4c8ac73d efivar_entry_remove +EXPORT_SYMBOL_GPL vmlinux 0x4c5b8816 regmap_attach_dev +EXPORT_SYMBOL_GPL vmlinux 0x4c5dcd95 clk_regmap_divider_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x4c66a5e5 __traceiter_sched_cpu_capacity_tp +EXPORT_SYMBOL_GPL vmlinux 0x4c6cd8d3 peernet2id_alloc +EXPORT_SYMBOL_GPL vmlinux 0x4c848dfb tcp_cong_avoid_ai EXPORT_SYMBOL_GPL vmlinux 0x4c8adfe1 hv_root_partition +EXPORT_SYMBOL_GPL vmlinux 0x4c969bae scsi_build_sense +EXPORT_SYMBOL_GPL vmlinux 0x4c9ce86d pci_pri_supported +EXPORT_SYMBOL_GPL vmlinux 0x4ca04a3f rio_unlock_device +EXPORT_SYMBOL_GPL vmlinux 0x4ca79d8b pinmux_generic_get_function_name +EXPORT_SYMBOL_GPL vmlinux 0x4ca9839c mpc8xxx_spi_probe +EXPORT_SYMBOL_GPL vmlinux 0x4cad6c80 call_switchdev_blocking_notifiers EXPORT_SYMBOL_GPL vmlinux 0x4cb27100 ktime_get_snapshot -EXPORT_SYMBOL_GPL vmlinux 0x4cb2bfc3 acpi_storage_d3 -EXPORT_SYMBOL_GPL vmlinux 0x4cb70bea iommu_report_device_fault +EXPORT_SYMBOL_GPL vmlinux 0x4cb518dc meson_vid_pll_div_ro_ops EXPORT_SYMBOL_GPL vmlinux 0x4cb81fda __SCK__tp_func_wbc_writepage -EXPORT_SYMBOL_GPL vmlinux 0x4cbf3f04 of_irq_parse_one -EXPORT_SYMBOL_GPL vmlinux 0x4cc9788f ata_sas_port_suspend -EXPORT_SYMBOL_GPL vmlinux 0x4cccc9cc debugfs_read_file_bool -EXPORT_SYMBOL_GPL vmlinux 0x4ccf9cd1 devm_request_pci_bus_resources -EXPORT_SYMBOL_GPL vmlinux 0x4cd9e568 xfrm_audit_state_add -EXPORT_SYMBOL_GPL vmlinux 0x4cdb2382 blkcg_root_css -EXPORT_SYMBOL_GPL vmlinux 0x4ce5e163 handle_simple_irq +EXPORT_SYMBOL_GPL vmlinux 0x4cbdb447 get_task_mm +EXPORT_SYMBOL_GPL vmlinux 0x4cc5018d xfrm_dev_state_add +EXPORT_SYMBOL_GPL vmlinux 0x4ccdc524 of_prop_next_string +EXPORT_SYMBOL_GPL vmlinux 0x4ccdc6b0 pci_ats_supported +EXPORT_SYMBOL_GPL vmlinux 0x4cd10f97 usb_hcd_pci_probe +EXPORT_SYMBOL_GPL vmlinux 0x4cd1c2cb devm_regmap_add_irq_chip_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x4cf1b369 irq_domain_free_irqs_parent EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable +EXPORT_SYMBOL_GPL vmlinux 0x4d07524c pci_iov_virtfn_devfn EXPORT_SYMBOL_GPL vmlinux 0x4d0b752f alloc_iova -EXPORT_SYMBOL_GPL vmlinux 0x4d112ca6 usb_hcd_start_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x4d15696f sched_trace_cfs_rq_avg +EXPORT_SYMBOL_GPL vmlinux 0x4d1c472a cdrom_read_tocentry +EXPORT_SYMBOL_GPL vmlinux 0x4d1fe795 regulator_map_voltage_pickable_linear_range EXPORT_SYMBOL_GPL vmlinux 0x4d202b8c __xas_prev -EXPORT_SYMBOL_GPL vmlinux 0x4d239b61 ping_init_sock -EXPORT_SYMBOL_GPL vmlinux 0x4d30e59f ata_dev_set_feature -EXPORT_SYMBOL_GPL vmlinux 0x4d338195 dprc_reset_container -EXPORT_SYMBOL_GPL vmlinux 0x4d339ad8 imx_pinctrl_probe +EXPORT_SYMBOL_GPL vmlinux 0x4d21511f driver_attach +EXPORT_SYMBOL_GPL vmlinux 0x4d29e9ce kernfs_path_from_node EXPORT_SYMBOL_GPL vmlinux 0x4d3a0696 __SCK__tp_func_rpm_idle -EXPORT_SYMBOL_GPL vmlinux 0x4d44cde9 dma_buf_vunmap -EXPORT_SYMBOL_GPL vmlinux 0x4d47aabe hwspin_lock_request_specific +EXPORT_SYMBOL_GPL vmlinux 0x4d3b799d serdev_controller_alloc +EXPORT_SYMBOL_GPL vmlinux 0x4d3f1e2e virtqueue_get_buf EXPORT_SYMBOL_GPL vmlinux 0x4d4d7b79 blk_mq_map_queues -EXPORT_SYMBOL_GPL vmlinux 0x4d65cfaa ima_file_check -EXPORT_SYMBOL_GPL vmlinux 0x4d6847ce exportfs_encode_inode_fh +EXPORT_SYMBOL_GPL vmlinux 0x4d5e96a8 attribute_container_register +EXPORT_SYMBOL_GPL vmlinux 0x4d6814b7 sb800_prefetch EXPORT_SYMBOL_GPL vmlinux 0x4d6d0bbc iommu_group_ref_get -EXPORT_SYMBOL_GPL vmlinux 0x4d6f26b0 devm_regulator_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0x4d700789 pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0x4d6d9428 tpm1_getcap +EXPORT_SYMBOL_GPL vmlinux 0x4d6eff0a udp_abort EXPORT_SYMBOL_GPL vmlinux 0x4d7272e4 migrate_enable -EXPORT_SYMBOL_GPL vmlinux 0x4d7c5fc1 efivar_entry_add +EXPORT_SYMBOL_GPL vmlinux 0x4d7535ed clk_hw_get_parent_index +EXPORT_SYMBOL_GPL vmlinux 0x4d7bf8bc inode_sb_list_add EXPORT_SYMBOL_GPL vmlinux 0x4d83c710 k3_udma_glue_tdown_tx_chn EXPORT_SYMBOL_GPL vmlinux 0x4d8a96ab xas_set_mark +EXPORT_SYMBOL_GPL vmlinux 0x4d916aaa sysfs_remove_file_from_group +EXPORT_SYMBOL_GPL vmlinux 0x4d91abe2 trace_event_buffer_reserve +EXPORT_SYMBOL_GPL vmlinux 0x4d92055a devm_reset_controller_register EXPORT_SYMBOL_GPL vmlinux 0x4d95d6d1 memcpy_flushcache -EXPORT_SYMBOL_GPL vmlinux 0x4d98360d handle_bad_irq -EXPORT_SYMBOL_GPL vmlinux 0x4d9b3bf5 devm_phy_destroy -EXPORT_SYMBOL_GPL vmlinux 0x4da10f6f sock_diag_unregister_inet_compat EXPORT_SYMBOL_GPL vmlinux 0x4da1f4a7 list_lru_del +EXPORT_SYMBOL_GPL vmlinux 0x4da2a471 mmu_interval_read_begin EXPORT_SYMBOL_GPL vmlinux 0x4dae16e4 i2c_put_dma_safe_msg_buf -EXPORT_SYMBOL_GPL vmlinux 0x4db38633 con_debug_enter -EXPORT_SYMBOL_GPL vmlinux 0x4db9ff65 __ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0x4db026c6 vp_modern_get_status +EXPORT_SYMBOL_GPL vmlinux 0x4dbc04e8 pci_epc_mem_init +EXPORT_SYMBOL_GPL vmlinux 0x4dc1dcc9 nvdimm_has_cache EXPORT_SYMBOL_GPL vmlinux 0x4dd9d14d cn_netlink_send_mult -EXPORT_SYMBOL_GPL vmlinux 0x4ddb7f47 scsi_target_block EXPORT_SYMBOL_GPL vmlinux 0x4de17ab3 usb_state_string -EXPORT_SYMBOL_GPL vmlinux 0x4df3104f rdev_get_name -EXPORT_SYMBOL_GPL vmlinux 0x4dfa451c devlink_trap_groups_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4dfa9df4 clk_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0x4ded5ca3 __fscrypt_prepare_rename EXPORT_SYMBOL_GPL vmlinux 0x4dff61e5 wwan_port_txoff -EXPORT_SYMBOL_GPL vmlinux 0x4dffaccf crypto_aead_encrypt -EXPORT_SYMBOL_GPL vmlinux 0x4e011580 tracing_snapshot_cond_enable -EXPORT_SYMBOL_GPL vmlinux 0x4e139113 arm64_mm_context_put +EXPORT_SYMBOL_GPL vmlinux 0x4e0e8b9e dst_cache_get_ip4 EXPORT_SYMBOL_GPL vmlinux 0x4e17c613 ata_sff_queue_delayed_work -EXPORT_SYMBOL_GPL vmlinux 0x4e1ab662 mtk_pinconf_drive_get_rev1 -EXPORT_SYMBOL_GPL vmlinux 0x4e2e9404 genphy_c45_check_and_restart_aneg -EXPORT_SYMBOL_GPL vmlinux 0x4e37f480 devres_release_group -EXPORT_SYMBOL_GPL vmlinux 0x4e3d19f8 blk_ksm_is_superset +EXPORT_SYMBOL_GPL vmlinux 0x4e1a5021 d_exchange +EXPORT_SYMBOL_GPL vmlinux 0x4e345898 power_supply_set_battery_charged EXPORT_SYMBOL_GPL vmlinux 0x4e3fd1b4 kvm_release_pfn_clean -EXPORT_SYMBOL_GPL vmlinux 0x4e4ae6b1 of_dma_controller_free -EXPORT_SYMBOL_GPL vmlinux 0x4e4bff0f fsl_mc_device_add +EXPORT_SYMBOL_GPL vmlinux 0x4e48ece8 pci_device_is_present EXPORT_SYMBOL_GPL vmlinux 0x4e4c37e2 freq_qos_remove_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4e53a67b crypto_shash_final -EXPORT_SYMBOL_GPL vmlinux 0x4e5b9786 of_address_to_resource -EXPORT_SYMBOL_GPL vmlinux 0x4e67b0e4 ksm_madvise +EXPORT_SYMBOL_GPL vmlinux 0x4e53b620 usb_autopm_put_interface +EXPORT_SYMBOL_GPL vmlinux 0x4e611745 spi_register_controller +EXPORT_SYMBOL_GPL vmlinux 0x4e7173f2 hisi_reset_init EXPORT_SYMBOL_GPL vmlinux 0x4e74878e __tracepoint_devlink_hwerr -EXPORT_SYMBOL_GPL vmlinux 0x4e838aa0 devm_clk_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0x4e86854f ip6_push_pending_frames -EXPORT_SYMBOL_GPL vmlinux 0x4e9d0022 pci_platform_power_transition -EXPORT_SYMBOL_GPL vmlinux 0x4eabb004 find_extend_vma +EXPORT_SYMBOL_GPL vmlinux 0x4e78e16a devlink_port_param_driverinit_value_get +EXPORT_SYMBOL_GPL vmlinux 0x4e831a2f cpufreq_policy_transition_delay_us +EXPORT_SYMBOL_GPL vmlinux 0x4e9971a7 irq_get_default_host +EXPORT_SYMBOL_GPL vmlinux 0x4ea17797 fat_get_dotdot_entry +EXPORT_SYMBOL_GPL vmlinux 0x4ea419d3 vp_modern_get_driver_features +EXPORT_SYMBOL_GPL vmlinux 0x4ea54748 __crypto_alloc_tfm EXPORT_SYMBOL_GPL vmlinux 0x4eac5fc1 cpu_mitigations_auto_nosmt +EXPORT_SYMBOL_GPL vmlinux 0x4eaf40d4 fuse_do_open EXPORT_SYMBOL_GPL vmlinux 0x4eb39d4e __tracepoint_tcp_bad_csum -EXPORT_SYMBOL_GPL vmlinux 0x4eb92de1 tty_prepare_flip_string -EXPORT_SYMBOL_GPL vmlinux 0x4ec5e79b crypto_alloc_sync_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x4ebd66a4 devm_device_add_group +EXPORT_SYMBOL_GPL vmlinux 0x4ebe6fb3 dev_pm_opp_of_find_icc_paths EXPORT_SYMBOL_GPL vmlinux 0x4ece3615 blocking_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4eeb1045 scsi_check_sense -EXPORT_SYMBOL_GPL vmlinux 0x4eef6e3c iommu_detach_device +EXPORT_SYMBOL_GPL vmlinux 0x4ee38ea1 uart_handle_cts_change +EXPORT_SYMBOL_GPL vmlinux 0x4ee7bed6 phy_init +EXPORT_SYMBOL_GPL vmlinux 0x4ee7d8b2 regmap_noinc_write +EXPORT_SYMBOL_GPL vmlinux 0x4ee9079d raw_seq_start EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context EXPORT_SYMBOL_GPL vmlinux 0x4efcf021 mpi_normalize -EXPORT_SYMBOL_GPL vmlinux 0x4f01f319 trace_seq_path -EXPORT_SYMBOL_GPL vmlinux 0x4f061534 imx_pinctrl_sc_ipc_init -EXPORT_SYMBOL_GPL vmlinux 0x4f1b64b6 devm_thermal_zone_of_sensor_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4f0641ba ata_port_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0x4f13ea67 ahci_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x4f1ae9b0 ata_sas_tport_delete +EXPORT_SYMBOL_GPL vmlinux 0x4f1e2494 virtqueue_add_inbuf EXPORT_SYMBOL_GPL vmlinux 0x4f2593f0 btree_update -EXPORT_SYMBOL_GPL vmlinux 0x4f289c0c ip6_dst_lookup_flow EXPORT_SYMBOL_GPL vmlinux 0x4f2c996d kmsg_dump_get_line -EXPORT_SYMBOL_GPL vmlinux 0x4f31db83 clk_fractional_divider_ops -EXPORT_SYMBOL_GPL vmlinux 0x4f342a86 kvm_get_kvm_safe -EXPORT_SYMBOL_GPL vmlinux 0x4f3cd637 xenbus_dev_fatal -EXPORT_SYMBOL_GPL vmlinux 0x4f402ecc xhci_suspend -EXPORT_SYMBOL_GPL vmlinux 0x4f4dde1b balloon_page_enqueue -EXPORT_SYMBOL_GPL vmlinux 0x4f4ec4d9 of_hwspin_lock_get_id_byname -EXPORT_SYMBOL_GPL vmlinux 0x4f5fbd38 proc_create_net_single_write +EXPORT_SYMBOL_GPL vmlinux 0x4f38411c pm_generic_resume_noirq +EXPORT_SYMBOL_GPL vmlinux 0x4f39a0bc clk_register +EXPORT_SYMBOL_GPL vmlinux 0x4f4ce965 fwnode_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x4f51f66d tpm_is_tpm2 +EXPORT_SYMBOL_GPL vmlinux 0x4f53bf3f devres_remove EXPORT_SYMBOL_GPL vmlinux 0x4f6a07fe show_rcu_gp_kthreads EXPORT_SYMBOL_GPL vmlinux 0x4f722eb0 acpi_ec_remove_query_handler EXPORT_SYMBOL_GPL vmlinux 0x4f72a987 uart_parse_options -EXPORT_SYMBOL_GPL vmlinux 0x4f7a71ea account_locked_vm -EXPORT_SYMBOL_GPL vmlinux 0x4f9340a7 devm_gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0x4f84a768 decrypt_blob +EXPORT_SYMBOL_GPL vmlinux 0x4f86cba7 __page_mapcount +EXPORT_SYMBOL_GPL vmlinux 0x4f8a31bf mmc_crypto_prepare_req EXPORT_SYMBOL_GPL vmlinux 0x4f98d766 cpu_pm_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4fb854e4 free_io_pgtable_ops -EXPORT_SYMBOL_GPL vmlinux 0x4fd85c58 rio_release_dma -EXPORT_SYMBOL_GPL vmlinux 0x4fdc5a57 acpi_device_fix_up_power +EXPORT_SYMBOL_GPL vmlinux 0x4fbd2e3e blk_mq_pci_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x4fcf4692 __netpoll_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x4fd7a09d device_get_dma_attr EXPORT_SYMBOL_GPL vmlinux 0x4fdc945d sata_deb_timing_normal -EXPORT_SYMBOL_GPL vmlinux 0x4fdded1c ti_sci_inta_msi_domain_free_irqs +EXPORT_SYMBOL_GPL vmlinux 0x4fde168a __page_file_index EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4fe8faff pcie_reset_flr -EXPORT_SYMBOL_GPL vmlinux 0x4ff0fe16 fwnode_graph_get_next_endpoint -EXPORT_SYMBOL_GPL vmlinux 0x500886c2 blk_abort_request +EXPORT_SYMBOL_GPL vmlinux 0x4fe326ce l3mdev_table_lookup_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4ff46b3d lochnagar_update_config +EXPORT_SYMBOL_GPL vmlinux 0x4ff88afb mtk_pinconf_adv_pull_set +EXPORT_SYMBOL_GPL vmlinux 0x500aeef5 of_pm_clk_add_clks EXPORT_SYMBOL_GPL vmlinux 0x500c768c apei_exec_read_register -EXPORT_SYMBOL_GPL vmlinux 0x501906b8 netdev_is_rx_handler_busy +EXPORT_SYMBOL_GPL vmlinux 0x501f64d8 gpiod_toggle_active_low EXPORT_SYMBOL_GPL vmlinux 0x5026585c xen_irq_from_gsi -EXPORT_SYMBOL_GPL vmlinux 0x50293d23 acpi_subsys_freeze -EXPORT_SYMBOL_GPL vmlinux 0x502eac9d seg6_do_srh_inline -EXPORT_SYMBOL_GPL vmlinux 0x5035bf9f acpi_subsys_suspend -EXPORT_SYMBOL_GPL vmlinux 0x5039ab44 gpiochip_add_pingroup_range -EXPORT_SYMBOL_GPL vmlinux 0x504951f0 devlink_health_reporter_create -EXPORT_SYMBOL_GPL vmlinux 0x50585fc4 hisi_clk_register_phase -EXPORT_SYMBOL_GPL vmlinux 0x505b0fb3 rio_get_comptag -EXPORT_SYMBOL_GPL vmlinux 0x50667b87 acct_bioset_init -EXPORT_SYMBOL_GPL vmlinux 0x50667da5 gpiochip_irq_unmap -EXPORT_SYMBOL_GPL vmlinux 0x50706393 mmu_notifier_range_update_to_read_only -EXPORT_SYMBOL_GPL vmlinux 0x508cd200 iommu_dev_feature_enabled -EXPORT_SYMBOL_GPL vmlinux 0x5090b48b ahci_do_softreset +EXPORT_SYMBOL_GPL vmlinux 0x502fa21a is_dock_device +EXPORT_SYMBOL_GPL vmlinux 0x503e90e2 usb_hcd_unlink_urb_from_ep +EXPORT_SYMBOL_GPL vmlinux 0x50544aa2 regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x505459e6 of_nvmem_device_get +EXPORT_SYMBOL_GPL vmlinux 0x50573bcc pci_pr3_present +EXPORT_SYMBOL_GPL vmlinux 0x505fcaef crypto_aes_set_key +EXPORT_SYMBOL_GPL vmlinux 0x5067625f apply_to_page_range +EXPORT_SYMBOL_GPL vmlinux 0x506cb702 skb_append_pagefrags +EXPORT_SYMBOL_GPL vmlinux 0x507077b6 pstore_register EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start -EXPORT_SYMBOL_GPL vmlinux 0x5096bc59 do_splice_to -EXPORT_SYMBOL_GPL vmlinux 0x50a73bc9 of_genpd_remove_last -EXPORT_SYMBOL_GPL vmlinux 0x50ae720f ata_std_sched_eh -EXPORT_SYMBOL_GPL vmlinux 0x50bb5407 meson_pmx_get_groups +EXPORT_SYMBOL_GPL vmlinux 0x5098d806 debugfs_create_devm_seqfile +EXPORT_SYMBOL_GPL vmlinux 0x50a21f04 vmf_insert_pfn_pmd_prot +EXPORT_SYMBOL_GPL vmlinux 0x50ae5821 dev_pm_qos_update_user_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x50b62380 dpcon_set_notification EXPORT_SYMBOL_GPL vmlinux 0x50c2ae54 rpi_firmware_property -EXPORT_SYMBOL_GPL vmlinux 0x50c3c5ed __traceiter_br_fdb_add -EXPORT_SYMBOL_GPL vmlinux 0x50c5449c get_kernel_pages -EXPORT_SYMBOL_GPL vmlinux 0x50c80ef8 alloc_dax_region -EXPORT_SYMBOL_GPL vmlinux 0x50d8a6b6 rdev_get_id -EXPORT_SYMBOL_GPL vmlinux 0x50dc024f of_platform_default_populate +EXPORT_SYMBOL_GPL vmlinux 0x50c2cbfc led_trigger_unregister_simple +EXPORT_SYMBOL_GPL vmlinux 0x50c80225 sdio_set_host_pm_flags +EXPORT_SYMBOL_GPL vmlinux 0x50ca8458 proc_create_net_single_write +EXPORT_SYMBOL_GPL vmlinux 0x50cfab4a pci_disable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0x50dabafd divider_ro_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0x50de4ba3 of_irq_to_resource_table EXPORT_SYMBOL_GPL vmlinux 0x50df94f5 btree_insert -EXPORT_SYMBOL_GPL vmlinux 0x50e0c27e lwtunnel_cmp_encap EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num -EXPORT_SYMBOL_GPL vmlinux 0x50f301b1 usb_disable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x50eb4be6 securityfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0x50f60566 tty_buffer_space_avail EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up -EXPORT_SYMBOL_GPL vmlinux 0x511edf0c devm_mbox_controller_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5129746e spi_get_next_queued_message -EXPORT_SYMBOL_GPL vmlinux 0x5133c21a ata_sff_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x50fb76d8 gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0x5137b92e to_nd_blk_region EXPORT_SYMBOL_GPL vmlinux 0x51390c96 rcu_barrier_tasks_rude -EXPORT_SYMBOL_GPL vmlinux 0x513fe827 of_property_match_string -EXPORT_SYMBOL_GPL vmlinux 0x514a1f75 bio_trim -EXPORT_SYMBOL_GPL vmlinux 0x514ae260 of_property_read_variable_u16_array -EXPORT_SYMBOL_GPL vmlinux 0x515595ef devm_pci_epc_destroy -EXPORT_SYMBOL_GPL vmlinux 0x515606fd md_rdev_init EXPORT_SYMBOL_GPL vmlinux 0x515b390f __SCK__tp_func_remove_device_from_group -EXPORT_SYMBOL_GPL vmlinux 0x515db5d6 rio_release_inb_dbell EXPORT_SYMBOL_GPL vmlinux 0x5169344d k3_udma_glue_pop_tx_chn -EXPORT_SYMBOL_GPL vmlinux 0x51794a51 acpi_subsys_suspend_late -EXPORT_SYMBOL_GPL vmlinux 0x51824034 pci_epf_add_vepf -EXPORT_SYMBOL_GPL vmlinux 0x51857a7b call_switchdev_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x517c12ae blk_mq_flush_busy_ctxs +EXPORT_SYMBOL_GPL vmlinux 0x517d81b8 devm_regulator_get_exclusive EXPORT_SYMBOL_GPL vmlinux 0x5187ac4b xen_store_evtchn EXPORT_SYMBOL_GPL vmlinux 0x51991b38 mtk_mutex_enable +EXPORT_SYMBOL_GPL vmlinux 0x519db887 dev_pm_opp_set_supported_hw +EXPORT_SYMBOL_GPL vmlinux 0x51a31197 rio_inb_pwrite_handler EXPORT_SYMBOL_GPL vmlinux 0x51a348cc usb_role_switch_set_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x51a37806 devm_memremap_pages -EXPORT_SYMBOL_GPL vmlinux 0x51a94cc5 dax_layout_busy_page_range +EXPORT_SYMBOL_GPL vmlinux 0x51aa8cc1 gpiochip_add_data_with_key EXPORT_SYMBOL_GPL vmlinux 0x51ad07dd tegra210_plle_hw_sequence_start -EXPORT_SYMBOL_GPL vmlinux 0x51ad310e skcipher_walk_done -EXPORT_SYMBOL_GPL vmlinux 0x51bc4612 skb_copy_ubufs -EXPORT_SYMBOL_GPL vmlinux 0x51be865f fsl_mc_resource_free EXPORT_SYMBOL_GPL vmlinux 0x51d13875 nf_hooks_lwtunnel_sysctl_handler -EXPORT_SYMBOL_GPL vmlinux 0x51da2d48 ahci_fill_cmd_slot -EXPORT_SYMBOL_GPL vmlinux 0x51e45d07 rio_dma_prep_slave_sg -EXPORT_SYMBOL_GPL vmlinux 0x51e897eb of_phy_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0x51d39312 tty_port_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0x51dc524a dma_buf_begin_cpu_access +EXPORT_SYMBOL_GPL vmlinux 0x51ebe630 rockchip_pcie_cfg_configuration_accesses +EXPORT_SYMBOL_GPL vmlinux 0x51fc3c53 perf_event_sysfs_show EXPORT_SYMBOL_GPL vmlinux 0x51fc9a6d xenmem_reservation_decrease -EXPORT_SYMBOL_GPL vmlinux 0x52072585 pm_runtime_irq_safe -EXPORT_SYMBOL_GPL vmlinux 0x52099157 ping_seq_stop -EXPORT_SYMBOL_GPL vmlinux 0x5215669b perf_event_create_kernel_counter -EXPORT_SYMBOL_GPL vmlinux 0x521a6b92 gpiod_count +EXPORT_SYMBOL_GPL vmlinux 0x5209109d crypto_stats_akcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x5221893d iommu_fwspec_free EXPORT_SYMBOL_GPL vmlinux 0x52252316 clk_unregister_fixed_rate -EXPORT_SYMBOL_GPL vmlinux 0x5227c2fb usb_control_msg -EXPORT_SYMBOL_GPL vmlinux 0x523162a1 spi_async +EXPORT_SYMBOL_GPL vmlinux 0x522573ba usb_block_urb +EXPORT_SYMBOL_GPL vmlinux 0x522a0566 dw_pcie_ep_init +EXPORT_SYMBOL_GPL vmlinux 0x52408172 __bio_crypt_clone EXPORT_SYMBOL_GPL vmlinux 0x52431348 xenbus_transaction_start -EXPORT_SYMBOL_GPL vmlinux 0x52562245 pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x52458031 crypto_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0x5257f8a0 mc_send_command EXPORT_SYMBOL_GPL vmlinux 0x525d0aa3 trace_seq_printf -EXPORT_SYMBOL_GPL vmlinux 0x5261858b rio_route_clr_table -EXPORT_SYMBOL_GPL vmlinux 0x5262d2a9 devm_irq_setup_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x52669e81 of_gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0x526192dc crypto_alloc_sync_skcipher EXPORT_SYMBOL_GPL vmlinux 0x526bcf2a wwan_port_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x52724ec7 unregister_pernet_device -EXPORT_SYMBOL_GPL vmlinux 0x5277dacd pci_find_ht_capability -EXPORT_SYMBOL_GPL vmlinux 0x529af4ce virtqueue_poll -EXPORT_SYMBOL_GPL vmlinux 0x52a5f867 nf_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0x528fe75d cpufreq_dbs_governor_init +EXPORT_SYMBOL_GPL vmlinux 0x529d8989 verify_signature +EXPORT_SYMBOL_GPL vmlinux 0x52ab3204 irq_domain_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0x52ae2a18 kvm_vcpu_yield_to EXPORT_SYMBOL_GPL vmlinux 0x52b1e3c7 pci_flags +EXPORT_SYMBOL_GPL vmlinux 0x52c0c593 __platform_register_drivers EXPORT_SYMBOL_GPL vmlinux 0x52c35e83 call_rcu_tasks_trace +EXPORT_SYMBOL_GPL vmlinux 0x52ca7993 sk_psock_tls_strp_read EXPORT_SYMBOL_GPL vmlinux 0x52ce2057 hv_setup_crash_handler -EXPORT_SYMBOL_GPL vmlinux 0x52d06cef dma_buf_move_notify +EXPORT_SYMBOL_GPL vmlinux 0x52d2045d divider_round_rate_parent EXPORT_SYMBOL_GPL vmlinux 0x52d54fce devlink_info_version_stored_put -EXPORT_SYMBOL_GPL vmlinux 0x52e71f7d __usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0x52e30f93 pci_epf_add_vepf +EXPORT_SYMBOL_GPL vmlinux 0x52f1e2a0 gnttab_dma_free_pages EXPORT_SYMBOL_GPL vmlinux 0x53012944 __tracepoint_rpm_resume -EXPORT_SYMBOL_GPL vmlinux 0x53063285 __phy_modify_mmd_changed -EXPORT_SYMBOL_GPL vmlinux 0x531a2d41 usb_phy_get_charger_current +EXPORT_SYMBOL_GPL vmlinux 0x531d6662 iommu_sva_alloc_pasid EXPORT_SYMBOL_GPL vmlinux 0x5321d3d6 sbitmap_get EXPORT_SYMBOL_GPL vmlinux 0x532b90b5 kprobe_event_cmd_init -EXPORT_SYMBOL_GPL vmlinux 0x53586a56 dev_pm_genpd_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x532da6cb pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x53377584 crypto_unregister_alg +EXPORT_SYMBOL_GPL vmlinux 0x53389ef3 irq_remove_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x533a12f1 policy_has_boost_freq +EXPORT_SYMBOL_GPL vmlinux 0x534c1d10 vfs_lock_file +EXPORT_SYMBOL_GPL vmlinux 0x534dd349 gpiod_export_link EXPORT_SYMBOL_GPL vmlinux 0x5358864e devlink_fmsg_binary_pair_nest_end -EXPORT_SYMBOL_GPL vmlinux 0x53609d3f ata_qc_complete_multiple +EXPORT_SYMBOL_GPL vmlinux 0x5363a0d0 trace_event_buffer_lock_reserve EXPORT_SYMBOL_GPL vmlinux 0x536822e3 sfp_module_insert -EXPORT_SYMBOL_GPL vmlinux 0x536af1b1 fixed_phy_change_carrier EXPORT_SYMBOL_GPL vmlinux 0x537252cf __SCK__tp_func_rpm_return_int -EXPORT_SYMBOL_GPL vmlinux 0x537266e4 __ndisc_fill_addr_option -EXPORT_SYMBOL_GPL vmlinux 0x5384ce21 get_dev_pagemap -EXPORT_SYMBOL_GPL vmlinux 0x538a6992 ata_bmdma_qc_prep -EXPORT_SYMBOL_GPL vmlinux 0x538a9c97 gpiochip_line_is_valid +EXPORT_SYMBOL_GPL vmlinux 0x53725980 nexthop_find_by_id +EXPORT_SYMBOL_GPL vmlinux 0x53737104 of_prop_next_u32 +EXPORT_SYMBOL_GPL vmlinux 0x537f1071 strp_data_ready EXPORT_SYMBOL_GPL vmlinux 0x538d073d phy_duplex_to_str EXPORT_SYMBOL_GPL vmlinux 0x5391f2c7 gnttab_end_foreign_access_ref -EXPORT_SYMBOL_GPL vmlinux 0x5396b0e3 iomap_fiemap -EXPORT_SYMBOL_GPL vmlinux 0x53af2871 devm_otg_ulpi_create +EXPORT_SYMBOL_GPL vmlinux 0x5393cd8d clk_divider_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x53970489 subsys_interface_register +EXPORT_SYMBOL_GPL vmlinux 0x539ddbbd gnttab_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x53a3c4ff debugfs_create_u16 +EXPORT_SYMBOL_GPL vmlinux 0x53aa3155 led_get_default_pattern EXPORT_SYMBOL_GPL vmlinux 0x53c089f5 property_entries_dup -EXPORT_SYMBOL_GPL vmlinux 0x53ce70cf kernfs_path_from_node -EXPORT_SYMBOL_GPL vmlinux 0x53cf212d blk_mq_rdma_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x53ce45cc crypto_stats_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0x53d1e731 xenbus_unmap_ring_vfree EXPORT_SYMBOL_GPL vmlinux 0x53d7c01e __traceiter_cpu_idle -EXPORT_SYMBOL_GPL vmlinux 0x53d85b8d rt_mutex_trylock -EXPORT_SYMBOL_GPL vmlinux 0x53dab986 da903x_clr_bits -EXPORT_SYMBOL_GPL vmlinux 0x53e9d01a mbox_chan_txdone -EXPORT_SYMBOL_GPL vmlinux 0x53fc02c3 nfs_ssc_client_tbl -EXPORT_SYMBOL_GPL vmlinux 0x53fcb5a1 netlink_add_tap -EXPORT_SYMBOL_GPL vmlinux 0x53fe80a7 bgmac_enet_remove +EXPORT_SYMBOL_GPL vmlinux 0x53e05428 device_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0x53f042fb dev_pm_opp_set_rate +EXPORT_SYMBOL_GPL vmlinux 0x53f7f8f5 spi_statistics_add_transfer_stats +EXPORT_SYMBOL_GPL vmlinux 0x53f90970 ohci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x54026b9a usb_match_id +EXPORT_SYMBOL_GPL vmlinux 0x5405659c devm_of_platform_depopulate +EXPORT_SYMBOL_GPL vmlinux 0x5412cfef skb_mpls_dec_ttl +EXPORT_SYMBOL_GPL vmlinux 0x5415bfc2 ata_sff_check_status EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run +EXPORT_SYMBOL_GPL vmlinux 0x541d031a usb_clear_halt +EXPORT_SYMBOL_GPL vmlinux 0x541f37c0 ata_bmdma_error_handler EXPORT_SYMBOL_GPL vmlinux 0x54215db5 visitor64 -EXPORT_SYMBOL_GPL vmlinux 0x5426787d i2c_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0x542de4cf alloc_skb_for_msg -EXPORT_SYMBOL_GPL vmlinux 0x54425f13 da9052_free_irq +EXPORT_SYMBOL_GPL vmlinux 0x54337fa3 vp_modern_set_queue_size +EXPORT_SYMBOL_GPL vmlinux 0x544b320d of_irq_find_parent EXPORT_SYMBOL_GPL vmlinux 0x545025e5 nvmem_add_cell_table -EXPORT_SYMBOL_GPL vmlinux 0x5462f7c5 regmap_get_device +EXPORT_SYMBOL_GPL vmlinux 0x5459b665 serdev_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0x5460428f __dax_driver_register EXPORT_SYMBOL_GPL vmlinux 0x54651f9b rhashtable_walk_next -EXPORT_SYMBOL_GPL vmlinux 0x5474ac03 dev_pm_opp_get_opp_count -EXPORT_SYMBOL_GPL vmlinux 0x547c8c28 transport_class_register -EXPORT_SYMBOL_GPL vmlinux 0x5488bb35 virtio_check_driver_offered_feature -EXPORT_SYMBOL_GPL vmlinux 0x548b0b3e __clocksource_update_freq_scale -EXPORT_SYMBOL_GPL vmlinux 0x548eb385 rtc_update_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0x546eb290 inode_dax +EXPORT_SYMBOL_GPL vmlinux 0x547f5377 bgmac_adjust_link +EXPORT_SYMBOL_GPL vmlinux 0x5482036e handle_mm_fault EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq -EXPORT_SYMBOL_GPL vmlinux 0x5497d405 spi_res_alloc -EXPORT_SYMBOL_GPL vmlinux 0x54a03c1b genphy_c45_read_status EXPORT_SYMBOL_GPL vmlinux 0x54a25da2 qcom_smem_state_put -EXPORT_SYMBOL_GPL vmlinux 0x54a46530 regulator_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x54a58f48 task_cputime_adjusted -EXPORT_SYMBOL_GPL vmlinux 0x54c3b001 ata_sff_queue_pio_task -EXPORT_SYMBOL_GPL vmlinux 0x54c4049d device_create_managed_software_node -EXPORT_SYMBOL_GPL vmlinux 0x54ccf895 fscrypt_ioctl_get_nonce -EXPORT_SYMBOL_GPL vmlinux 0x54ecc9ef __pm_runtime_disable -EXPORT_SYMBOL_GPL vmlinux 0x54f5d846 usb_choose_configuration -EXPORT_SYMBOL_GPL vmlinux 0x54fedf52 pci_cfg_access_unlock -EXPORT_SYMBOL_GPL vmlinux 0x550f32b6 devm_hwspin_lock_request_specific +EXPORT_SYMBOL_GPL vmlinux 0x54ad1e27 of_hwspin_lock_get_id_byname +EXPORT_SYMBOL_GPL vmlinux 0x54bf4d5f crypto_mod_get +EXPORT_SYMBOL_GPL vmlinux 0x54c6f278 bus_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x54c8ff66 ahci_platform_suspend_host +EXPORT_SYMBOL_GPL vmlinux 0x54d13661 security_inode_mkdir +EXPORT_SYMBOL_GPL vmlinux 0x54d3fd57 skcipher_walk_async +EXPORT_SYMBOL_GPL vmlinux 0x550752e2 pci_check_and_mask_intx EXPORT_SYMBOL_GPL vmlinux 0x550f3e05 i2c_freq_mode_string -EXPORT_SYMBOL_GPL vmlinux 0x5514eb09 sk_msg_free +EXPORT_SYMBOL_GPL vmlinux 0x551561e7 nvmem_device_find EXPORT_SYMBOL_GPL vmlinux 0x55339365 flush_delayed_fput +EXPORT_SYMBOL_GPL vmlinux 0x553a4b7b platform_irq_count EXPORT_SYMBOL_GPL vmlinux 0x553b49a4 cpufreq_get_driver_data -EXPORT_SYMBOL_GPL vmlinux 0x553de942 fs_kobj -EXPORT_SYMBOL_GPL vmlinux 0x553e2e95 pm_clk_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0x5540c67f xdp_rxq_info_reg -EXPORT_SYMBOL_GPL vmlinux 0x5540edca crypto_unregister_templates +EXPORT_SYMBOL_GPL vmlinux 0x553c9d95 of_pwm_xlate_with_flags EXPORT_SYMBOL_GPL vmlinux 0x55417264 unregister_vt_notifier -EXPORT_SYMBOL_GPL vmlinux 0x55431209 set_cpus_allowed_ptr -EXPORT_SYMBOL_GPL vmlinux 0x5559d0be clk_gate_ops +EXPORT_SYMBOL_GPL vmlinux 0x55561f1d trace_put_event_file EXPORT_SYMBOL_GPL vmlinux 0x556e4390 clk_get_rate EXPORT_SYMBOL_GPL vmlinux 0x55784228 regmap_irq_get_virq -EXPORT_SYMBOL_GPL vmlinux 0x558dc1ca key_set_timeout -EXPORT_SYMBOL_GPL vmlinux 0x55a14e94 regcache_drop_region -EXPORT_SYMBOL_GPL vmlinux 0x55bb0797 usb_get_maximum_ssp_rate +EXPORT_SYMBOL_GPL vmlinux 0x557b63c6 usb_get_from_anchor +EXPORT_SYMBOL_GPL vmlinux 0x5583d033 ata_sas_async_probe +EXPORT_SYMBOL_GPL vmlinux 0x55ac3f13 irq_chip_set_wake_parent +EXPORT_SYMBOL_GPL vmlinux 0x55c3b115 bus_set_iommu EXPORT_SYMBOL_GPL vmlinux 0x55c76a23 ksys_sync_helper -EXPORT_SYMBOL_GPL vmlinux 0x55c84f99 d_exchange EXPORT_SYMBOL_GPL vmlinux 0x55c9880c zynqmp_pm_release_node -EXPORT_SYMBOL_GPL vmlinux 0x55c9cca2 tty_port_install -EXPORT_SYMBOL_GPL vmlinux 0x55df252d crypto_dequeue_request +EXPORT_SYMBOL_GPL vmlinux 0x55e86727 irq_chip_eoi_parent +EXPORT_SYMBOL_GPL vmlinux 0x55ed6a2a power_supply_put_battery_info EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout -EXPORT_SYMBOL_GPL vmlinux 0x55f0ba4c usb_disable_lpm -EXPORT_SYMBOL_GPL vmlinux 0x55f3ac68 usb_hcd_unmap_urb_for_dma EXPORT_SYMBOL_GPL vmlinux 0x56054c05 crypto_it_tab -EXPORT_SYMBOL_GPL vmlinux 0x560d2758 sdio_writew -EXPORT_SYMBOL_GPL vmlinux 0x5614976d pci_enable_sriov EXPORT_SYMBOL_GPL vmlinux 0x56173654 pcap_set_ts_bits -EXPORT_SYMBOL_GPL vmlinux 0x561a529f icc_sync_state EXPORT_SYMBOL_GPL vmlinux 0x56256e8a orderly_poweroff EXPORT_SYMBOL_GPL vmlinux 0x56310925 regulator_mode_to_status -EXPORT_SYMBOL_GPL vmlinux 0x56373671 iommu_aux_get_pasid -EXPORT_SYMBOL_GPL vmlinux 0x563abd4e msg_zerocopy_callback +EXPORT_SYMBOL_GPL vmlinux 0x563263ab register_acpi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x5635d9ae irq_domain_associate_many +EXPORT_SYMBOL_GPL vmlinux 0x563c351a tpm_tis_remove EXPORT_SYMBOL_GPL vmlinux 0x5641485b tty_termios_encode_baud_rate -EXPORT_SYMBOL_GPL vmlinux 0x564746d0 regmap_field_update_bits_base -EXPORT_SYMBOL_GPL vmlinux 0x565e1deb devm_gpiod_put -EXPORT_SYMBOL_GPL vmlinux 0x566e31f0 xfrm_audit_state_notfound_simple -EXPORT_SYMBOL_GPL vmlinux 0x5674f731 ata_sff_postreset -EXPORT_SYMBOL_GPL vmlinux 0x56751ae1 tcf_dev_queue_xmit -EXPORT_SYMBOL_GPL vmlinux 0x56830c45 dax_copy_to_iter -EXPORT_SYMBOL_GPL vmlinux 0x56c3039a find_asymmetric_key -EXPORT_SYMBOL_GPL vmlinux 0x56c9afeb ahci_platform_resume -EXPORT_SYMBOL_GPL vmlinux 0x56d9ca84 regmap_can_raw_write -EXPORT_SYMBOL_GPL vmlinux 0x56e40a43 clk_hw_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x56596aa4 of_phy_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0x565a3352 vchan_find_desc +EXPORT_SYMBOL_GPL vmlinux 0x565b2fe6 spi_sync +EXPORT_SYMBOL_GPL vmlinux 0x56686bee i2c_dw_configure_master +EXPORT_SYMBOL_GPL vmlinux 0x566a3ab1 debugfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x566bcaf7 scsi_internal_device_unblock_nowait +EXPORT_SYMBOL_GPL vmlinux 0x5674a31d irq_domain_push_irq +EXPORT_SYMBOL_GPL vmlinux 0x5686433b dma_buf_vunmap +EXPORT_SYMBOL_GPL vmlinux 0x5696bfb6 raw_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x569e72f2 bpf_offload_dev_netdev_register +EXPORT_SYMBOL_GPL vmlinux 0x56a31ae1 ahci_do_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x56a382c8 k3_udma_glue_request_rx_chn +EXPORT_SYMBOL_GPL vmlinux 0x56a4b8e2 crypto_shash_final +EXPORT_SYMBOL_GPL vmlinux 0x56b5b4d5 regmap_get_val_bytes +EXPORT_SYMBOL_GPL vmlinux 0x56b897c0 usb_control_msg_send +EXPORT_SYMBOL_GPL vmlinux 0x56c0c445 tegra210_clk_emc_attach +EXPORT_SYMBOL_GPL vmlinux 0x56c486af devm_add_action +EXPORT_SYMBOL_GPL vmlinux 0x56cd284e driver_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x56d3a236 securityfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x56d59c6a clk_mux_val_to_index EXPORT_SYMBOL_GPL vmlinux 0x56e9103b cpu_pm_enter -EXPORT_SYMBOL_GPL vmlinux 0x56f3d7f5 rio_mport_get_efb -EXPORT_SYMBOL_GPL vmlinux 0x56f969d7 xfrm_audit_state_replay +EXPORT_SYMBOL_GPL vmlinux 0x56f3b66c regulator_map_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x56f5ca5b bind_interdomain_evtchn_to_irqhandler_lateeoi EXPORT_SYMBOL_GPL vmlinux 0x56fbb130 no_hash_pointers -EXPORT_SYMBOL_GPL vmlinux 0x57007e95 led_trigger_set -EXPORT_SYMBOL_GPL vmlinux 0x5706676d rockchip_pcie_parse_dt -EXPORT_SYMBOL_GPL vmlinux 0x571884a8 pinctrl_utils_add_map_mux -EXPORT_SYMBOL_GPL vmlinux 0x5727e093 crypto_stats_kpp_set_secret -EXPORT_SYMBOL_GPL vmlinux 0x57285b55 __scsi_init_queue -EXPORT_SYMBOL_GPL vmlinux 0x5734082c nexthop_for_each_fib6_nh -EXPORT_SYMBOL_GPL vmlinux 0x57391565 scmi_protocol_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5700f7e5 devm_devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0x57045b52 spi_slave_abort +EXPORT_SYMBOL_GPL vmlinux 0x570ce94c virtqueue_get_avail_addr +EXPORT_SYMBOL_GPL vmlinux 0x572038f4 dm_send_uevents EXPORT_SYMBOL_GPL vmlinux 0x573b5453 ipv6_fixup_options EXPORT_SYMBOL_GPL vmlinux 0x574609c5 apei_exec_write_register_value -EXPORT_SYMBOL_GPL vmlinux 0x574922d0 devm_kstrdup_const -EXPORT_SYMBOL_GPL vmlinux 0x57566e0f thermal_remove_hwmon_sysfs -EXPORT_SYMBOL_GPL vmlinux 0x575c9ab8 skb_to_sgvec_nomark -EXPORT_SYMBOL_GPL vmlinux 0x57647984 fib_rules_lookup +EXPORT_SYMBOL_GPL vmlinux 0x575c6930 __traceiter_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x575c91da rio_local_set_device_id EXPORT_SYMBOL_GPL vmlinux 0x57719632 gnttab_grant_foreign_access EXPORT_SYMBOL_GPL vmlinux 0x57732438 inet_twsk_purge -EXPORT_SYMBOL_GPL vmlinux 0x5778d240 scsi_host_busy_iter EXPORT_SYMBOL_GPL vmlinux 0x577a438a tegra210_clk_emc_detach -EXPORT_SYMBOL_GPL vmlinux 0x5785e980 usb_match_one_id EXPORT_SYMBOL_GPL vmlinux 0x578eeb4d hugetlb_cgrp_subsys_enabled_key EXPORT_SYMBOL_GPL vmlinux 0x5790e7a0 pci_unlock_rescan_remove -EXPORT_SYMBOL_GPL vmlinux 0x5795d0ad tpm1_getcap -EXPORT_SYMBOL_GPL vmlinux 0x579a1a56 dma_resv_test_signaled EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all -EXPORT_SYMBOL_GPL vmlinux 0x57ace28a dma_buf_begin_cpu_access +EXPORT_SYMBOL_GPL vmlinux 0x57ab07a3 debugfs_create_file_unsafe +EXPORT_SYMBOL_GPL vmlinux 0x57b2496b __traceiter_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0x57b6a778 led_compose_name +EXPORT_SYMBOL_GPL vmlinux 0x57cbde51 blk_mq_virtio_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x57d37286 edac_pci_create_generic_ctl EXPORT_SYMBOL_GPL vmlinux 0x57d4050a xhci_get_endpoint_index -EXPORT_SYMBOL_GPL vmlinux 0x57df4295 __fib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x57e3ac32 uart_try_toggle_sysrq -EXPORT_SYMBOL_GPL vmlinux 0x57e4530c dw8250_setup_port +EXPORT_SYMBOL_GPL vmlinux 0x57e95c6f blkcg_policy_register +EXPORT_SYMBOL_GPL vmlinux 0x57ed78f8 of_genpd_add_device EXPORT_SYMBOL_GPL vmlinux 0x57f576b9 mpi_ec_curve_point EXPORT_SYMBOL_GPL vmlinux 0x57f70547 secure_ipv4_port_ephemeral -EXPORT_SYMBOL_GPL vmlinux 0x57f7c937 devm_regulator_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x57fa7c87 sysfs_remove_file_self -EXPORT_SYMBOL_GPL vmlinux 0x57fd52ce iommu_uapi_sva_bind_gpasid -EXPORT_SYMBOL_GPL vmlinux 0x5808ce96 rtc_update_irq -EXPORT_SYMBOL_GPL vmlinux 0x58173f8d devlink_dpipe_entry_ctx_close -EXPORT_SYMBOL_GPL vmlinux 0x58224f5e fwnode_property_present +EXPORT_SYMBOL_GPL vmlinux 0x57faa2bc dev_get_regmap +EXPORT_SYMBOL_GPL vmlinux 0x58242d50 md_find_rdev_rcu +EXPORT_SYMBOL_GPL vmlinux 0x5825a0be rio_release_outb_dbell EXPORT_SYMBOL_GPL vmlinux 0x58276f93 cper_next_record_id EXPORT_SYMBOL_GPL vmlinux 0x5831e062 cpus_read_trylock -EXPORT_SYMBOL_GPL vmlinux 0x583870cd fib_new_table -EXPORT_SYMBOL_GPL vmlinux 0x58495288 spi_mem_adjust_op_size -EXPORT_SYMBOL_GPL vmlinux 0x584f5abd mmc_pwrseq_register -EXPORT_SYMBOL_GPL vmlinux 0x58556b3c pm_relax -EXPORT_SYMBOL_GPL vmlinux 0x585b32f4 netdev_walk_all_lower_dev_rcu -EXPORT_SYMBOL_GPL vmlinux 0x585c8787 extcon_get_edev_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x5864bb5f pid_vnr +EXPORT_SYMBOL_GPL vmlinux 0x584c062d hwpoison_filter +EXPORT_SYMBOL_GPL vmlinux 0x5857e566 of_irq_parse_and_map_pci +EXPORT_SYMBOL_GPL vmlinux 0x585b7de0 rdev_get_id +EXPORT_SYMBOL_GPL vmlinux 0x586681fc bgmac_enet_resume +EXPORT_SYMBOL_GPL vmlinux 0x58677922 pci_enable_pcie_error_reporting EXPORT_SYMBOL_GPL vmlinux 0x586bfc8a alarm_restart +EXPORT_SYMBOL_GPL vmlinux 0x586f0672 dst_cache_set_ip6 +EXPORT_SYMBOL_GPL vmlinux 0x5875be10 usb_get_hcd EXPORT_SYMBOL_GPL vmlinux 0x5879a27d sfp_get_module_info -EXPORT_SYMBOL_GPL vmlinux 0x5879ea22 inet6_hash_connect -EXPORT_SYMBOL_GPL vmlinux 0x587b890b acpi_device_update_power -EXPORT_SYMBOL_GPL vmlinux 0x58806eb1 tpmm_chip_alloc -EXPORT_SYMBOL_GPL vmlinux 0x58839801 component_master_add_with_match -EXPORT_SYMBOL_GPL vmlinux 0x5896d0b5 sysfs_remove_file_from_group -EXPORT_SYMBOL_GPL vmlinux 0x589dee4d devm_pwmchip_add -EXPORT_SYMBOL_GPL vmlinux 0x58b39727 __traceiter_rpm_resume -EXPORT_SYMBOL_GPL vmlinux 0x58c3a54e set_primary_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x58d4ef2c dmaengine_desc_get_metadata_ptr -EXPORT_SYMBOL_GPL vmlinux 0x58d804ab fsl_mc_bus_dpbp_type +EXPORT_SYMBOL_GPL vmlinux 0x5888b91e xenbus_frontend_closed +EXPORT_SYMBOL_GPL vmlinux 0x588a04ae seg6_do_srh_encap +EXPORT_SYMBOL_GPL vmlinux 0x58dc6913 devm_gpiod_get_array EXPORT_SYMBOL_GPL vmlinux 0x58def6ca sfp_module_remove EXPORT_SYMBOL_GPL vmlinux 0x58e14f15 HYPERVISOR_event_channel_op -EXPORT_SYMBOL_GPL vmlinux 0x58edd864 raw_abort -EXPORT_SYMBOL_GPL vmlinux 0x590c9768 devm_i2c_add_adapter -EXPORT_SYMBOL_GPL vmlinux 0x59136bd4 crypto_unregister_aeads -EXPORT_SYMBOL_GPL vmlinux 0x59143174 switchdev_handle_port_attr_set -EXPORT_SYMBOL_GPL vmlinux 0x59164357 led_set_brightness_nopm -EXPORT_SYMBOL_GPL vmlinux 0x592a3983 regmap_noinc_read +EXPORT_SYMBOL_GPL vmlinux 0x58ea625d skb_to_sgvec +EXPORT_SYMBOL_GPL vmlinux 0x592e1c4b platform_get_resource +EXPORT_SYMBOL_GPL vmlinux 0x59315080 skb_pull_rcsum +EXPORT_SYMBOL_GPL vmlinux 0x59330235 sysfs_create_mount_point +EXPORT_SYMBOL_GPL vmlinux 0x593e95e9 crypto_alg_mod_lookup EXPORT_SYMBOL_GPL vmlinux 0x594c2224 srcu_torture_stats_print -EXPORT_SYMBOL_GPL vmlinux 0x59514cfb pci_epc_get_msix -EXPORT_SYMBOL_GPL vmlinux 0x5984172e gpiod_set_debounce +EXPORT_SYMBOL_GPL vmlinux 0x59644a2c pinctrl_utils_add_config +EXPORT_SYMBOL_GPL vmlinux 0x596b84c7 i2c_slave_register +EXPORT_SYMBOL_GPL vmlinux 0x598267df pci_epc_map_addr EXPORT_SYMBOL_GPL vmlinux 0x5986d190 kdb_printf +EXPORT_SYMBOL_GPL vmlinux 0x598c3f09 tcp_register_ulp +EXPORT_SYMBOL_GPL vmlinux 0x598f6b16 devm_qcom_smem_state_get +EXPORT_SYMBOL_GPL vmlinux 0x59919300 regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x5998daae find_extend_vma +EXPORT_SYMBOL_GPL vmlinux 0x59a387d5 fsverity_verify_bio EXPORT_SYMBOL_GPL vmlinux 0x59b2adbf input_ff_effect_from_user -EXPORT_SYMBOL_GPL vmlinux 0x59ba5f1a add_to_page_cache_lru -EXPORT_SYMBOL_GPL vmlinux 0x59c3f076 efivar_entry_set +EXPORT_SYMBOL_GPL vmlinux 0x59b47f09 amba_apb_device_add +EXPORT_SYMBOL_GPL vmlinux 0x59b7a637 max8997_write_reg +EXPORT_SYMBOL_GPL vmlinux 0x59c29278 inet6_lookup +EXPORT_SYMBOL_GPL vmlinux 0x59c41138 bus_register_notifier EXPORT_SYMBOL_GPL vmlinux 0x59c43dc9 __traceiter_non_standard_event -EXPORT_SYMBOL_GPL vmlinux 0x59cae1ab tty_find_polling_driver -EXPORT_SYMBOL_GPL vmlinux 0x59cfdaee mpc8xxx_spi_probe -EXPORT_SYMBOL_GPL vmlinux 0x59dd2b28 sysfs_update_group -EXPORT_SYMBOL_GPL vmlinux 0x59e2008a ata_sas_port_start +EXPORT_SYMBOL_GPL vmlinux 0x59cdbb5c usb_free_coherent +EXPORT_SYMBOL_GPL vmlinux 0x59d3be64 crypto_stats_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x59d7cae5 extcon_get_property_capability +EXPORT_SYMBOL_GPL vmlinux 0x59df22df ahci_save_initial_config EXPORT_SYMBOL_GPL vmlinux 0x59e640c0 halt_poll_ns -EXPORT_SYMBOL_GPL vmlinux 0x59edd012 pci_generic_config_read -EXPORT_SYMBOL_GPL vmlinux 0x59f11689 sk_detach_filter EXPORT_SYMBOL_GPL vmlinux 0x59f32720 mpi_subm -EXPORT_SYMBOL_GPL vmlinux 0x59febb0b is_current_mnt_ns +EXPORT_SYMBOL_GPL vmlinux 0x59f48af5 devm_pm_opp_attach_genpd +EXPORT_SYMBOL_GPL vmlinux 0x5a02b6ce ata_scsi_dma_need_drain +EXPORT_SYMBOL_GPL vmlinux 0x5a04e493 pci_hp_destroy +EXPORT_SYMBOL_GPL vmlinux 0x5a0f14d6 rtnl_af_register +EXPORT_SYMBOL_GPL vmlinux 0x5a0fe58a xhci_gen_setup EXPORT_SYMBOL_GPL vmlinux 0x5a12e60c __SCK__tp_func_sched_update_nr_running_tp +EXPORT_SYMBOL_GPL vmlinux 0x5a1924f4 usb_phy_set_event EXPORT_SYMBOL_GPL vmlinux 0x5a1d134a rcu_momentary_dyntick_idle -EXPORT_SYMBOL_GPL vmlinux 0x5a1f462e rpi_firmware_get -EXPORT_SYMBOL_GPL vmlinux 0x5a2ade16 wm831x_reg_unlock -EXPORT_SYMBOL_GPL vmlinux 0x5a2f913d spi_bus_unlock -EXPORT_SYMBOL_GPL vmlinux 0x5a341486 balloon_page_list_enqueue -EXPORT_SYMBOL_GPL vmlinux 0x5a422a68 crypto_shash_digest +EXPORT_SYMBOL_GPL vmlinux 0x5a212c1f blk_mq_alloc_sq_tag_set +EXPORT_SYMBOL_GPL vmlinux 0x5a267fe4 crypto_remove_spawns +EXPORT_SYMBOL_GPL vmlinux 0x5a2f720a blkcg_activate_policy +EXPORT_SYMBOL_GPL vmlinux 0x5a37b0c6 dma_get_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x5a48ae5a xfrm_audit_state_notfound +EXPORT_SYMBOL_GPL vmlinux 0x5a49c98a devlink_rate_leaf_create EXPORT_SYMBOL_GPL vmlinux 0x5a49dbc9 timerqueue_del -EXPORT_SYMBOL_GPL vmlinux 0x5a504973 fuse_init_fs_context_submount -EXPORT_SYMBOL_GPL vmlinux 0x5a640528 wwan_register_ops +EXPORT_SYMBOL_GPL vmlinux 0x5a4b7098 acpi_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0x5a58918b pinctrl_find_gpio_range_from_pin +EXPORT_SYMBOL_GPL vmlinux 0x5a595a82 regulator_set_voltage_time_sel +EXPORT_SYMBOL_GPL vmlinux 0x5a5f712f iommu_uapi_sva_unbind_gpasid EXPORT_SYMBOL_GPL vmlinux 0x5a6cdb52 nf_ct_zone_dflt -EXPORT_SYMBOL_GPL vmlinux 0x5a6f4c03 xen_dbgp_reset_prep +EXPORT_SYMBOL_GPL vmlinux 0x5a6fc7be usb_add_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0x5a74bbc6 list_lru_walk_one EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify -EXPORT_SYMBOL_GPL vmlinux 0x5a83c0d0 usb_get_phy -EXPORT_SYMBOL_GPL vmlinux 0x5a884e8c __pm_stay_awake -EXPORT_SYMBOL_GPL vmlinux 0x5a947c9f mtk_pinconf_drive_get -EXPORT_SYMBOL_GPL vmlinux 0x5aa43028 sk_msg_alloc +EXPORT_SYMBOL_GPL vmlinux 0x5a7d486d ping_seq_start +EXPORT_SYMBOL_GPL vmlinux 0x5a8a9dc2 da9052_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0x5a95a484 kvm_get_running_vcpu EXPORT_SYMBOL_GPL vmlinux 0x5aa70984 acpi_reduced_hardware +EXPORT_SYMBOL_GPL vmlinux 0x5aa7af45 ata_timing_compute EXPORT_SYMBOL_GPL vmlinux 0x5ab09745 edac_get_owner -EXPORT_SYMBOL_GPL vmlinux 0x5ab51279 scsi_internal_device_block_nowait -EXPORT_SYMBOL_GPL vmlinux 0x5ad43a8b uart_console_write -EXPORT_SYMBOL_GPL vmlinux 0x5b014014 xdp_rxq_info_unreg_mem_model -EXPORT_SYMBOL_GPL vmlinux 0x5b04ec01 mbox_chan_received_data -EXPORT_SYMBOL_GPL vmlinux 0x5b0cebd8 gfn_to_pfn -EXPORT_SYMBOL_GPL vmlinux 0x5b117823 mark_page_dirty_in_slot -EXPORT_SYMBOL_GPL vmlinux 0x5b17580e class_compat_remove_link +EXPORT_SYMBOL_GPL vmlinux 0x5b04aff0 usb_phy_set_charger_state +EXPORT_SYMBOL_GPL vmlinux 0x5b099400 irq_domain_free_fwnode EXPORT_SYMBOL_GPL vmlinux 0x5b21ceff ring_buffer_iter_peek -EXPORT_SYMBOL_GPL vmlinux 0x5b22a89a of_clk_parent_fill -EXPORT_SYMBOL_GPL vmlinux 0x5b2f873f ipv4_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x5b48b813 ipv6_dup_options -EXPORT_SYMBOL_GPL vmlinux 0x5b50ee55 iomap_dio_rw +EXPORT_SYMBOL_GPL vmlinux 0x5b24bbb6 __mmdrop +EXPORT_SYMBOL_GPL vmlinux 0x5b3eaa57 security_inode_create +EXPORT_SYMBOL_GPL vmlinux 0x5b4b0017 inet_csk_listen_start +EXPORT_SYMBOL_GPL vmlinux 0x5b59db47 nfnl_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0x5b652422 pci_epf_alloc_space EXPORT_SYMBOL_GPL vmlinux 0x5b6b0329 swiotlb_max_segment -EXPORT_SYMBOL_GPL vmlinux 0x5b6e6f98 power_supply_get_battery_info -EXPORT_SYMBOL_GPL vmlinux 0x5b711063 find_vpid -EXPORT_SYMBOL_GPL vmlinux 0x5b73cc08 blk_freeze_queue_start -EXPORT_SYMBOL_GPL vmlinux 0x5b80430f irq_domain_disconnect_hierarchy -EXPORT_SYMBOL_GPL vmlinux 0x5b88a0dc crypto_unregister_rngs -EXPORT_SYMBOL_GPL vmlinux 0x5b8e3655 ip6_dst_lookup_tunnel -EXPORT_SYMBOL_GPL vmlinux 0x5b8e6de3 gpiod_direction_input -EXPORT_SYMBOL_GPL vmlinux 0x5b98ba70 acpi_subsys_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0x5b9c9243 xenbus_unmap_ring_vfree -EXPORT_SYMBOL_GPL vmlinux 0x5bafa909 ahci_host_activate -EXPORT_SYMBOL_GPL vmlinux 0x5bbb7e3c switchdev_port_attr_set -EXPORT_SYMBOL_GPL vmlinux 0x5bbda2de i2c_slave_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5b7c5816 blk_ksm_reprogram_all_keys +EXPORT_SYMBOL_GPL vmlinux 0x5b859e8e pinctrl_utils_add_map_configs +EXPORT_SYMBOL_GPL vmlinux 0x5ba34e8d sock_diag_register +EXPORT_SYMBOL_GPL vmlinux 0x5bad98b1 pm_clk_resume EXPORT_SYMBOL_GPL vmlinux 0x5bbdfa26 scatterwalk_ffwd EXPORT_SYMBOL_GPL vmlinux 0x5bc950fe regulator_irq_helper_cancel -EXPORT_SYMBOL_GPL vmlinux 0x5bcc637b gpiochip_generic_free -EXPORT_SYMBOL_GPL vmlinux 0x5bd048f4 shash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x5bcbe37c crypto_register_shashes EXPORT_SYMBOL_GPL vmlinux 0x5bd0748f crypto_del_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x5bd9e92f ipv6_opt_accepted +EXPORT_SYMBOL_GPL vmlinux 0x5bd1f4a7 hisi_clk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x5bd554b3 pci_epc_remove_epf EXPORT_SYMBOL_GPL vmlinux 0x5bdae35b usb_phy_roothub_set_mode EXPORT_SYMBOL_GPL vmlinux 0x5bdbac4e rcu_unexpedite_gp -EXPORT_SYMBOL_GPL vmlinux 0x5be113bb usb_hcd_pci_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x5be5a3ec param_set_bool_enable_only -EXPORT_SYMBOL_GPL vmlinux 0x5bf6dad4 inode_sb_list_add -EXPORT_SYMBOL_GPL vmlinux 0x5bf85ff6 pci_epf_unbind EXPORT_SYMBOL_GPL vmlinux 0x5c0eaf31 acpi_dev_resource_interrupt EXPORT_SYMBOL_GPL vmlinux 0x5c0f77ce HYPERVISOR_platform_op_raw -EXPORT_SYMBOL_GPL vmlinux 0x5c20d007 usb_root_hub_lost_power -EXPORT_SYMBOL_GPL vmlinux 0x5c29786c __traceiter_pelt_cfs_tp EXPORT_SYMBOL_GPL vmlinux 0x5c2bcd37 bpf_warn_invalid_xdp_action -EXPORT_SYMBOL_GPL vmlinux 0x5c2e9c3a hisi_uncore_pmu_stop -EXPORT_SYMBOL_GPL vmlinux 0x5c31a7dc kvm_read_guest_page -EXPORT_SYMBOL_GPL vmlinux 0x5c345015 battery_hook_register EXPORT_SYMBOL_GPL vmlinux 0x5c3bbd06 __SCK__tp_func_mc_event -EXPORT_SYMBOL_GPL vmlinux 0x5c423e12 tty_get_icount -EXPORT_SYMBOL_GPL vmlinux 0x5c4ed9a0 dev_attr_sw_activity +EXPORT_SYMBOL_GPL vmlinux 0x5c42b215 i2c_acpi_new_device +EXPORT_SYMBOL_GPL vmlinux 0x5c544d31 ping_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x5c54974c fat_truncate_time EXPORT_SYMBOL_GPL vmlinux 0x5c5a1b16 tick_broadcast_control EXPORT_SYMBOL_GPL vmlinux 0x5c5c6826 phy_10gbit_full_features -EXPORT_SYMBOL_GPL vmlinux 0x5c5e8fab __blkg_prfill_rwstat -EXPORT_SYMBOL_GPL vmlinux 0x5c6281ab fat_time_unix2fat -EXPORT_SYMBOL_GPL vmlinux 0x5c62c560 __fscrypt_inode_uses_inline_crypto -EXPORT_SYMBOL_GPL vmlinux 0x5c7e3a25 scmi_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x5c5cca37 fw_devlink_purge_absent_suppliers EXPORT_SYMBOL_GPL vmlinux 0x5c82016e __SCK__tp_func_napi_poll -EXPORT_SYMBOL_GPL vmlinux 0x5c8dd5f5 devm_regulator_bulk_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x5c8e23c6 iommu_sva_unbind_gpasid -EXPORT_SYMBOL_GPL vmlinux 0x5c9ac82e xhci_add_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x5c995992 exportfs_decode_fh_raw +EXPORT_SYMBOL_GPL vmlinux 0x5ca27b26 ahci_platform_enable_clks +EXPORT_SYMBOL_GPL vmlinux 0x5ca7ccc3 iommu_device_link +EXPORT_SYMBOL_GPL vmlinux 0x5ca8cfc9 sata_scr_read EXPORT_SYMBOL_GPL vmlinux 0x5cab9945 unregister_xenbus_watch EXPORT_SYMBOL_GPL vmlinux 0x5cad8fc3 power_supply_ocv2cap_simple -EXPORT_SYMBOL_GPL vmlinux 0x5cb8d315 tcp_done -EXPORT_SYMBOL_GPL vmlinux 0x5cbb86cf iommu_sva_alloc_pasid -EXPORT_SYMBOL_GPL vmlinux 0x5cc59878 dev_pm_qos_update_request -EXPORT_SYMBOL_GPL vmlinux 0x5cd8caac __kvm_set_memory_region +EXPORT_SYMBOL_GPL vmlinux 0x5cb80a3a free_io_pgtable_ops +EXPORT_SYMBOL_GPL vmlinux 0x5ccb391b fwnode_property_present +EXPORT_SYMBOL_GPL vmlinux 0x5ccd7843 rio_mport_chk_dev_access +EXPORT_SYMBOL_GPL vmlinux 0x5cd066da sock_diag_check_cookie +EXPORT_SYMBOL_GPL vmlinux 0x5cddf7de dev_pm_opp_set_regulators +EXPORT_SYMBOL_GPL vmlinux 0x5ce84e94 cgroup_attach_task_all EXPORT_SYMBOL_GPL vmlinux 0x5cede0a7 xdp_flush_frame_bulk -EXPORT_SYMBOL_GPL vmlinux 0x5d01987b usb_hub_find_child -EXPORT_SYMBOL_GPL vmlinux 0x5d03c88e iommu_group_remove_device -EXPORT_SYMBOL_GPL vmlinux 0x5d041ce9 shash_ahash_update -EXPORT_SYMBOL_GPL vmlinux 0x5d09fa05 nvdimm_badblocks_populate -EXPORT_SYMBOL_GPL vmlinux 0x5d0ef1ba fib_nexthop_info +EXPORT_SYMBOL_GPL vmlinux 0x5cf266aa devm_devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0x5cf3d572 debugfs_create_regset32 +EXPORT_SYMBOL_GPL vmlinux 0x5d098d4a kick_process EXPORT_SYMBOL_GPL vmlinux 0x5d17148b apei_write -EXPORT_SYMBOL_GPL vmlinux 0x5d2006a2 xhci_run EXPORT_SYMBOL_GPL vmlinux 0x5d2aa5fb rhashtable_walk_peek EXPORT_SYMBOL_GPL vmlinux 0x5d2bc42a reset_control_rearm -EXPORT_SYMBOL_GPL vmlinux 0x5d4363eb tegra_bpmp_mrq_is_supported -EXPORT_SYMBOL_GPL vmlinux 0x5d490f82 bsg_job_put -EXPORT_SYMBOL_GPL vmlinux 0x5d499b61 ata_link_online -EXPORT_SYMBOL_GPL vmlinux 0x5d4c8343 divider_determine_rate -EXPORT_SYMBOL_GPL vmlinux 0x5d6ad90b k3_udma_glue_tx_get_dma_device -EXPORT_SYMBOL_GPL vmlinux 0x5d785e3b disk_update_readahead +EXPORT_SYMBOL_GPL vmlinux 0x5d4c13f7 blk_mq_freeze_queue_wait +EXPORT_SYMBOL_GPL vmlinux 0x5d6ae01a dma_get_slave_caps +EXPORT_SYMBOL_GPL vmlinux 0x5d6d5e22 tty_buffer_unlock_exclusive EXPORT_SYMBOL_GPL vmlinux 0x5d8476d3 bpf_sk_storage_diag_alloc -EXPORT_SYMBOL_GPL vmlinux 0x5d8f8a3c devres_release -EXPORT_SYMBOL_GPL vmlinux 0x5d90f4a6 led_trigger_register_simple +EXPORT_SYMBOL_GPL vmlinux 0x5d8b6dde mbox_chan_received_data +EXPORT_SYMBOL_GPL vmlinux 0x5d9d3225 iommu_map_atomic EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact -EXPORT_SYMBOL_GPL vmlinux 0x5da77688 devfreq_get_devfreq_by_node -EXPORT_SYMBOL_GPL vmlinux 0x5db4b892 pci_generic_config_write -EXPORT_SYMBOL_GPL vmlinux 0x5dc31d80 ata_sff_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x5dcfadab debugfs_create_u16 +EXPORT_SYMBOL_GPL vmlinux 0x5dab7345 crypto_stats_init +EXPORT_SYMBOL_GPL vmlinux 0x5db09704 kobject_uevent_env +EXPORT_SYMBOL_GPL vmlinux 0x5dbd6637 rt_mutex_lock_interruptible +EXPORT_SYMBOL_GPL vmlinux 0x5dbe024d is_nvdimm_sync +EXPORT_SYMBOL_GPL vmlinux 0x5dc2b9e3 pci_create_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x5dc68e80 dma_buf_detach +EXPORT_SYMBOL_GPL vmlinux 0x5dd92487 device_set_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0x5de268a4 skcipher_alloc_instance_simple EXPORT_SYMBOL_GPL vmlinux 0x5de412cd k3_ringacc_ring_push -EXPORT_SYMBOL_GPL vmlinux 0x5dfca3cd devm_release_action -EXPORT_SYMBOL_GPL vmlinux 0x5e004403 devlink_params_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5e0b4089 pm_genpd_add_device +EXPORT_SYMBOL_GPL vmlinux 0x5deaaf71 generic_fh_to_dentry +EXPORT_SYMBOL_GPL vmlinux 0x5dfa5a3a crypto_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x5dfb6908 mctrl_gpio_init +EXPORT_SYMBOL_GPL vmlinux 0x5e039883 perf_pmu_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5e0f9c34 sata_link_resume EXPORT_SYMBOL_GPL vmlinux 0x5e173309 cpu_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x5e2444fa da903x_update -EXPORT_SYMBOL_GPL vmlinux 0x5e25b3ce thermal_zone_device_update -EXPORT_SYMBOL_GPL vmlinux 0x5e3aa744 genphy_c45_pma_suspend -EXPORT_SYMBOL_GPL vmlinux 0x5e3e6958 cpufreq_freq_attr_scaling_available_freqs -EXPORT_SYMBOL_GPL vmlinux 0x5e5083ec mtk_pinconf_drive_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x5e258db6 blk_freeze_queue_start +EXPORT_SYMBOL_GPL vmlinux 0x5e3a6792 mpc8xxx_spi_tx_buf_u16 +EXPORT_SYMBOL_GPL vmlinux 0x5e3c07a6 irq_gc_ack_set_bit +EXPORT_SYMBOL_GPL vmlinux 0x5e40cf60 rtc_initialize_alarm +EXPORT_SYMBOL_GPL vmlinux 0x5e4b67bb devm_pm_opp_of_add_table +EXPORT_SYMBOL_GPL vmlinux 0x5e4ed600 sch_frag_xmit_hook EXPORT_SYMBOL_GPL vmlinux 0x5e515be6 ktime_get_ts64 -EXPORT_SYMBOL_GPL vmlinux 0x5e65889b ata_dev_disable +EXPORT_SYMBOL_GPL vmlinux 0x5e54f8f0 of_device_request_module +EXPORT_SYMBOL_GPL vmlinux 0x5e55497f em_pd_get +EXPORT_SYMBOL_GPL vmlinux 0x5e5d0dc3 xenbus_grant_ring +EXPORT_SYMBOL_GPL vmlinux 0x5e67a267 cpuidle_get_cpu_driver +EXPORT_SYMBOL_GPL vmlinux 0x5e73eb95 dev_pm_opp_of_remove_table EXPORT_SYMBOL_GPL vmlinux 0x5e76bb57 k3_ringacc_ring_get_size EXPORT_SYMBOL_GPL vmlinux 0x5e798ffb divider_get_val -EXPORT_SYMBOL_GPL vmlinux 0x5e79d3ea gpiod_get_value_cansleep EXPORT_SYMBOL_GPL vmlinux 0x5e85415b ring_buffer_consume -EXPORT_SYMBOL_GPL vmlinux 0x5e8bb304 fuse_dev_operations -EXPORT_SYMBOL_GPL vmlinux 0x5e97488c bind_interdomain_evtchn_to_irqhandler_lateeoi +EXPORT_SYMBOL_GPL vmlinux 0x5e8d6c23 __traceiter_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0x5e8f4c11 of_irq_parse_one +EXPORT_SYMBOL_GPL vmlinux 0x5e91b11f security_path_rmdir +EXPORT_SYMBOL_GPL vmlinux 0x5e98e016 regulator_get_voltage_sel_pickable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x5ea7d99e pci_try_reset_function EXPORT_SYMBOL_GPL vmlinux 0x5eae5408 clk_is_enabled_when_prepared -EXPORT_SYMBOL_GPL vmlinux 0x5eafb845 bpf_event_output EXPORT_SYMBOL_GPL vmlinux 0x5eb417e0 __SCK__tp_func_neigh_timer_handler +EXPORT_SYMBOL_GPL vmlinux 0x5ebb5e2f netdev_set_default_ethtool_ops EXPORT_SYMBOL_GPL vmlinux 0x5ec2319a mtk_mutex_unprepare -EXPORT_SYMBOL_GPL vmlinux 0x5ec4b761 phy_set_speed +EXPORT_SYMBOL_GPL vmlinux 0x5ec4f7a0 pinmux_generic_add_function +EXPORT_SYMBOL_GPL vmlinux 0x5ec548e3 synth_event_add_next_val EXPORT_SYMBOL_GPL vmlinux 0x5ec62549 ata_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x5ecb0878 spi_res_alloc EXPORT_SYMBOL_GPL vmlinux 0x5ecdcf90 ti_sci_get_free_resource -EXPORT_SYMBOL_GPL vmlinux 0x5ed21bd3 usb_hub_release_port -EXPORT_SYMBOL_GPL vmlinux 0x5ed84bcd bpf_redirect_info -EXPORT_SYMBOL_GPL vmlinux 0x5ee25456 powercap_register_control_type -EXPORT_SYMBOL_GPL vmlinux 0x5ee78d0b serial8250_em485_config -EXPORT_SYMBOL_GPL vmlinux 0x5eefec91 tty_release_struct -EXPORT_SYMBOL_GPL vmlinux 0x5ef73f28 genphy_c45_config_aneg -EXPORT_SYMBOL_GPL vmlinux 0x5efb97ec mark_page_dirty -EXPORT_SYMBOL_GPL vmlinux 0x5f0e7f75 kvm_release_page_clean -EXPORT_SYMBOL_GPL vmlinux 0x5f2164a3 phy_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0x5ece2ee9 __devm_regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0x5ed2ee4a page_cache_async_ra +EXPORT_SYMBOL_GPL vmlinux 0x5ed92298 dev_pm_qos_hide_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x5ede9f01 sock_gen_put +EXPORT_SYMBOL_GPL vmlinux 0x5edf37b0 do_tcp_sendpages +EXPORT_SYMBOL_GPL vmlinux 0x5eefaacf _proc_mkdir +EXPORT_SYMBOL_GPL vmlinux 0x5ef378c3 devm_clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0x5f101dcc dev_attr_em_message_type +EXPORT_SYMBOL_GPL vmlinux 0x5f18b7a1 __fscrypt_inode_uses_inline_crypto +EXPORT_SYMBOL_GPL vmlinux 0x5f221120 da903x_unregister_notifier EXPORT_SYMBOL_GPL vmlinux 0x5f23e3fa insert_resource -EXPORT_SYMBOL_GPL vmlinux 0x5f47d97a sock_prot_inuse_get -EXPORT_SYMBOL_GPL vmlinux 0x5f594cec devm_rtc_nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0x5f32dc39 device_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0x5f364fcd virtio_check_driver_offered_feature +EXPORT_SYMBOL_GPL vmlinux 0x5f6635c7 dst_cache_get_ip6 EXPORT_SYMBOL_GPL vmlinux 0x5f6f1e9e dax_get_private -EXPORT_SYMBOL_GPL vmlinux 0x5f78512f ata_acpi_cbl_80wire -EXPORT_SYMBOL_GPL vmlinux 0x5fa39829 regulator_set_voltage_time -EXPORT_SYMBOL_GPL vmlinux 0x5fa52e95 ata_wait_register +EXPORT_SYMBOL_GPL vmlinux 0x5f7f82a2 rio_mport_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x5f8128c1 spi_mem_exec_op +EXPORT_SYMBOL_GPL vmlinux 0x5f8596a0 kthread_queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0x5f948e5b l3mdev_fib_table_rcu EXPORT_SYMBOL_GPL vmlinux 0x5fa625ed mpi_ec_mul_point -EXPORT_SYMBOL_GPL vmlinux 0x5fb3518e fwnode_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0x5fab7523 scsi_target_unblock +EXPORT_SYMBOL_GPL vmlinux 0x5fae04ba security_path_chown +EXPORT_SYMBOL_GPL vmlinux 0x5fafc720 get_governor_parent_kobj +EXPORT_SYMBOL_GPL vmlinux 0x5fb390dd usb_hcd_setup_local_mem +EXPORT_SYMBOL_GPL vmlinux 0x5fb84812 i2c_recover_bus EXPORT_SYMBOL_GPL vmlinux 0x5fb8848b halt_poll_ns_grow_start -EXPORT_SYMBOL_GPL vmlinux 0x5fd0ab50 ipv6_recv_error -EXPORT_SYMBOL_GPL vmlinux 0x5fdaacaa serdev_device_write -EXPORT_SYMBOL_GPL vmlinux 0x5fecd2af devlink_port_attrs_pci_pf_set -EXPORT_SYMBOL_GPL vmlinux 0x5fedd3e1 usb_find_alt_setting -EXPORT_SYMBOL_GPL vmlinux 0x5ffdef62 kthread_flush_worker -EXPORT_SYMBOL_GPL vmlinux 0x6004fb35 hisi_uncore_pmu_start +EXPORT_SYMBOL_GPL vmlinux 0x5fcc5449 led_trigger_rename_static +EXPORT_SYMBOL_GPL vmlinux 0x5fd45ca0 virtqueue_disable_cb +EXPORT_SYMBOL_GPL vmlinux 0x5fdfcd57 __tracepoint_pelt_thermal_tp +EXPORT_SYMBOL_GPL vmlinux 0x5fe6aa59 tracing_cond_snapshot_data +EXPORT_SYMBOL_GPL vmlinux 0x5fed9788 fwnode_handle_put +EXPORT_SYMBOL_GPL vmlinux 0x5ff1da23 of_get_regulator_init_data +EXPORT_SYMBOL_GPL vmlinux 0x5ffb0790 sdio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x5ffb3934 regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x600284d8 ata_pci_device_do_resume EXPORT_SYMBOL_GPL vmlinux 0x60069ee1 inet_ehash_locks_alloc EXPORT_SYMBOL_GPL vmlinux 0x60091316 clk_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x600bc673 md_find_rdev_nr_rcu -EXPORT_SYMBOL_GPL vmlinux 0x601fc5c5 devlink_port_unregister -EXPORT_SYMBOL_GPL vmlinux 0x6035deab nvdimm_in_overwrite +EXPORT_SYMBOL_GPL vmlinux 0x60189a6e sysfs_remove_files +EXPORT_SYMBOL_GPL vmlinux 0x60387e1a i2c_slave_unregister EXPORT_SYMBOL_GPL vmlinux 0x603d0d51 acpi_os_map_iomem +EXPORT_SYMBOL_GPL vmlinux 0x6040d553 usb_autopm_put_interface_no_suspend EXPORT_SYMBOL_GPL vmlinux 0x60442822 phys_to_mach EXPORT_SYMBOL_GPL vmlinux 0x604722fd devices_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x60481a50 xenbus_dev_remove -EXPORT_SYMBOL_GPL vmlinux 0x604cc30e ata_ncq_sdev_attrs -EXPORT_SYMBOL_GPL vmlinux 0x604d2a23 fwnode_get_named_gpiod -EXPORT_SYMBOL_GPL vmlinux 0x6051e125 gpiod_set_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x60512ac9 ata_cable_ignore EXPORT_SYMBOL_GPL vmlinux 0x605d5bfa cache_line_size -EXPORT_SYMBOL_GPL vmlinux 0x605ed969 __traceiter_xdp_bulk_tx -EXPORT_SYMBOL_GPL vmlinux 0x6066d5e5 crypto_larval_kill -EXPORT_SYMBOL_GPL vmlinux 0x6075ae68 imx_unregister_hw_clocks +EXPORT_SYMBOL_GPL vmlinux 0x605db11c spi_take_timestamp_pre +EXPORT_SYMBOL_GPL vmlinux 0x60656c00 clk_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0x606c53f7 crypto_stats_rng_seed +EXPORT_SYMBOL_GPL vmlinux 0x607b27d8 pci_epc_add_epf EXPORT_SYMBOL_GPL vmlinux 0x607c4683 devlink_info_version_fixed_put +EXPORT_SYMBOL_GPL vmlinux 0x60822d98 gpiochip_request_own_desc +EXPORT_SYMBOL_GPL vmlinux 0x608238c0 page_endio +EXPORT_SYMBOL_GPL vmlinux 0x60849634 edac_mc_add_mc_with_groups EXPORT_SYMBOL_GPL vmlinux 0x6091797f synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x609ad49d shmem_truncate_range +EXPORT_SYMBOL_GPL vmlinux 0x609f23e6 mtk_pinconf_bias_set EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier EXPORT_SYMBOL_GPL vmlinux 0x60a32ea9 pm_power_off -EXPORT_SYMBOL_GPL vmlinux 0x60a586fe dev_pm_opp_set_opp -EXPORT_SYMBOL_GPL vmlinux 0x60a99144 md_find_rdev_rcu -EXPORT_SYMBOL_GPL vmlinux 0x60ad8d92 handle_mm_fault -EXPORT_SYMBOL_GPL vmlinux 0x60c23748 adp5520_read -EXPORT_SYMBOL_GPL vmlinux 0x60c7bcee __inet_inherit_port -EXPORT_SYMBOL_GPL vmlinux 0x60d62294 fwnode_device_is_available -EXPORT_SYMBOL_GPL vmlinux 0x60d8100e serdev_device_wait_until_sent -EXPORT_SYMBOL_GPL vmlinux 0x60da629c clk_hw_is_prepared +EXPORT_SYMBOL_GPL vmlinux 0x60aa7a6c acct_bioset_init +EXPORT_SYMBOL_GPL vmlinux 0x60dccd1f tty_port_register_device_serdev EXPORT_SYMBOL_GPL vmlinux 0x60ebc96f ring_buffer_read_prepare -EXPORT_SYMBOL_GPL vmlinux 0x60ed7641 usb_put_intf EXPORT_SYMBOL_GPL vmlinux 0x60f99e1b cppc_set_perf -EXPORT_SYMBOL_GPL vmlinux 0x61033095 anon_transport_class_unregister -EXPORT_SYMBOL_GPL vmlinux 0x6103f248 pci_hp_destroy +EXPORT_SYMBOL_GPL vmlinux 0x60fa45e3 blk_queue_zone_write_granularity +EXPORT_SYMBOL_GPL vmlinux 0x60fea63e clk_fractional_divider_ops EXPORT_SYMBOL_GPL vmlinux 0x611cfa85 klist_add_tail -EXPORT_SYMBOL_GPL vmlinux 0x61247c71 ptp_classify_raw EXPORT_SYMBOL_GPL vmlinux 0x6129fb93 sfp_remove_phy EXPORT_SYMBOL_GPL vmlinux 0x612bfd89 errno_to_blk_status -EXPORT_SYMBOL_GPL vmlinux 0x61314b48 acpi_data_fwnode_ops -EXPORT_SYMBOL_GPL vmlinux 0x6132d422 phy_pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0x61309eea phy_create_lookup +EXPORT_SYMBOL_GPL vmlinux 0x613861f1 xfrm_audit_state_replay_overflow +EXPORT_SYMBOL_GPL vmlinux 0x613ee52a fib_rules_lookup +EXPORT_SYMBOL_GPL vmlinux 0x6142b9d6 devfreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x61440c7b regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x61463698 class_unregister EXPORT_SYMBOL_GPL vmlinux 0x614adcb7 of_overlay_remove_all -EXPORT_SYMBOL_GPL vmlinux 0x6152d34d tty_get_pgrp -EXPORT_SYMBOL_GPL vmlinux 0x6155ad97 ip_icmp_error_rfc4884 EXPORT_SYMBOL_GPL vmlinux 0x615beeb5 __cpuhp_state_add_instance EXPORT_SYMBOL_GPL vmlinux 0x615d3447 kernel_read_file_from_path -EXPORT_SYMBOL_GPL vmlinux 0x616ae86b i2c_client_type -EXPORT_SYMBOL_GPL vmlinux 0x61768ca3 device_store_bool -EXPORT_SYMBOL_GPL vmlinux 0x6177d4d2 crypto_register_rngs +EXPORT_SYMBOL_GPL vmlinux 0x616441d4 meson_clk_dualdiv_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x61718613 acpi_subsys_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0x6174163d acpi_dev_add_driver_gpios EXPORT_SYMBOL_GPL vmlinux 0x617b026c hwrng_register EXPORT_SYMBOL_GPL vmlinux 0x6181e79f timerqueue_add -EXPORT_SYMBOL_GPL vmlinux 0x61863423 bpf_trace_run1 -EXPORT_SYMBOL_GPL vmlinux 0x618c2d2c fscrypt_drop_inode -EXPORT_SYMBOL_GPL vmlinux 0x61975cfe perf_event_release_kernel -EXPORT_SYMBOL_GPL vmlinux 0x6197ce0c noop_backing_dev_info +EXPORT_SYMBOL_GPL vmlinux 0x61832aa2 pwm_set_chip_data +EXPORT_SYMBOL_GPL vmlinux 0x618e2533 dw8250_setup_port +EXPORT_SYMBOL_GPL vmlinux 0x6194c940 dprc_setup 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 0x61a95841 bpf_map_inc -EXPORT_SYMBOL_GPL vmlinux 0x61acf21f __fsl_mc_driver_register EXPORT_SYMBOL_GPL vmlinux 0x61ae1d2d xas_pause -EXPORT_SYMBOL_GPL vmlinux 0x61b2f04a devm_rpi_firmware_get +EXPORT_SYMBOL_GPL vmlinux 0x61b0bd32 iptunnel_metadata_reply +EXPORT_SYMBOL_GPL vmlinux 0x61b3851c dmaengine_desc_attach_metadata EXPORT_SYMBOL_GPL vmlinux 0x61c1ca29 __SCK__tp_func_add_device_to_group -EXPORT_SYMBOL_GPL vmlinux 0x61d2b6da platform_bus +EXPORT_SYMBOL_GPL vmlinux 0x61c4591b clk_hw_unregister_divider EXPORT_SYMBOL_GPL vmlinux 0x61e30b70 init_srcu_struct -EXPORT_SYMBOL_GPL vmlinux 0x61e8943b switchdev_handle_port_obj_del EXPORT_SYMBOL_GPL vmlinux 0x61f67c92 phy_gbit_features_array -EXPORT_SYMBOL_GPL vmlinux 0x61fadf1d fsnotify_init_mark -EXPORT_SYMBOL_GPL vmlinux 0x6202471b usb_deregister -EXPORT_SYMBOL_GPL vmlinux 0x621beddb rio_mport_send_doorbell +EXPORT_SYMBOL_GPL vmlinux 0x6211d76a fib_rules_seq_read EXPORT_SYMBOL_GPL vmlinux 0x622c7922 register_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0x622ecab8 syscon_regmap_lookup_by_phandle_args EXPORT_SYMBOL_GPL vmlinux 0x62377a7b blk_io_schedule -EXPORT_SYMBOL_GPL vmlinux 0x6243e5cf __udp6_lib_lookup EXPORT_SYMBOL_GPL vmlinux 0x6246a629 synchronize_rcu_tasks_trace -EXPORT_SYMBOL_GPL vmlinux 0x624ee13b of_irq_parse_raw EXPORT_SYMBOL_GPL vmlinux 0x6257dda7 clk_rate_exclusive_get EXPORT_SYMBOL_GPL vmlinux 0x6259d291 clk_restore_context -EXPORT_SYMBOL_GPL vmlinux 0x628f585d serial8250_request_dma -EXPORT_SYMBOL_GPL vmlinux 0x629c62b0 debugfs_create_size_t +EXPORT_SYMBOL_GPL vmlinux 0x626effb6 pm_runtime_irq_safe +EXPORT_SYMBOL_GPL vmlinux 0x6274a56c __devm_clk_hw_register_mux +EXPORT_SYMBOL_GPL vmlinux 0x627f21dd efivar_entry_delete +EXPORT_SYMBOL_GPL vmlinux 0x627ff6b1 crypto_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x6289593f dev_pm_opp_disable +EXPORT_SYMBOL_GPL vmlinux 0x628ff13c devlink_dpipe_table_resource_set +EXPORT_SYMBOL_GPL vmlinux 0x62b6b4ae net_ns_type_operations +EXPORT_SYMBOL_GPL vmlinux 0x62ba3d62 balloon_page_list_dequeue EXPORT_SYMBOL_GPL vmlinux 0x62bb09bf clocks_calc_mult_shift -EXPORT_SYMBOL_GPL vmlinux 0x62bec4ee tcp_ca_openreq_child -EXPORT_SYMBOL_GPL vmlinux 0x62c2aafc __xenbus_register_backend -EXPORT_SYMBOL_GPL vmlinux 0x62c9e014 devlink_param_driverinit_value_get -EXPORT_SYMBOL_GPL vmlinux 0x62db690c meson_clk_mpll_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0x62defef0 fscrypt_ioctl_get_key_status -EXPORT_SYMBOL_GPL vmlinux 0x62e166ec i2c_new_dummy_device -EXPORT_SYMBOL_GPL vmlinux 0x62e1ebef fsl_mc_object_free -EXPORT_SYMBOL_GPL vmlinux 0x62f8c376 fib_nh_common_release -EXPORT_SYMBOL_GPL vmlinux 0x62f95527 subsys_find_device_by_id -EXPORT_SYMBOL_GPL vmlinux 0x63081419 pci_ignore_hotplug -EXPORT_SYMBOL_GPL vmlinux 0x6312d900 acpi_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x62d4a1d9 driver_create_file +EXPORT_SYMBOL_GPL vmlinux 0x62f2b8fc sata_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x62f56dc6 __fib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x62fb6f67 crypto_unregister_template EXPORT_SYMBOL_GPL vmlinux 0x63150e06 clk_get_parent EXPORT_SYMBOL_GPL vmlinux 0x6318757f mdio_mux_uninit EXPORT_SYMBOL_GPL vmlinux 0x63197685 s2idle_wake -EXPORT_SYMBOL_GPL vmlinux 0x6330332c pid_nr_ns -EXPORT_SYMBOL_GPL vmlinux 0x6336b6bd dev_pm_genpd_suspend -EXPORT_SYMBOL_GPL vmlinux 0x633cd8e2 pinctrl_dev_get_name -EXPORT_SYMBOL_GPL vmlinux 0x633d5295 iommu_group_add_device +EXPORT_SYMBOL_GPL vmlinux 0x6323b65d __devm_regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0x63451a4f fsl_mc_bus_dpdcei_type EXPORT_SYMBOL_GPL vmlinux 0x634b9d42 __SCK__tp_func_block_unplug -EXPORT_SYMBOL_GPL vmlinux 0x634e3098 sata_scr_valid -EXPORT_SYMBOL_GPL vmlinux 0x634ec459 irq_remove_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x63602355 fuse_dax_cancel_work -EXPORT_SYMBOL_GPL vmlinux 0x636b8906 of_reconfig_get_state_change -EXPORT_SYMBOL_GPL vmlinux 0x636c4fd8 tcp_sendpage_locked -EXPORT_SYMBOL_GPL vmlinux 0x63702200 tps65912_device_init +EXPORT_SYMBOL_GPL vmlinux 0x63510f6d crypto_register_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x6363ddc3 devm_power_supply_get_by_phandle EXPORT_SYMBOL_GPL vmlinux 0x638aff11 proc_douintvec_minmax -EXPORT_SYMBOL_GPL vmlinux 0x63900945 devm_phy_create -EXPORT_SYMBOL_GPL vmlinux 0x639149e9 mbox_client_txdone -EXPORT_SYMBOL_GPL vmlinux 0x63969895 clk_hw_set_rate_range -EXPORT_SYMBOL_GPL vmlinux 0x639865ee devlink_param_register -EXPORT_SYMBOL_GPL vmlinux 0x63a43d81 edac_pci_del_device -EXPORT_SYMBOL_GPL vmlinux 0x63a5c654 cdrom_read_tocentry +EXPORT_SYMBOL_GPL vmlinux 0x63b5dcf1 pm_clk_add_clk +EXPORT_SYMBOL_GPL vmlinux 0x63ba7766 pci_test_config_bits +EXPORT_SYMBOL_GPL vmlinux 0x63be4067 ata_std_error_handler EXPORT_SYMBOL_GPL vmlinux 0x63c08029 clk_bulk_unprepare -EXPORT_SYMBOL_GPL vmlinux 0x63c40c5d nvdimm_to_bus -EXPORT_SYMBOL_GPL vmlinux 0x63d26129 of_get_display_timings -EXPORT_SYMBOL_GPL vmlinux 0x63da4900 dma_need_sync +EXPORT_SYMBOL_GPL vmlinux 0x63dec049 l3mdev_table_lookup_register EXPORT_SYMBOL_GPL vmlinux 0x63ea80b3 cper_mem_err_type_str -EXPORT_SYMBOL_GPL vmlinux 0x63f0469c iptunnel_metadata_reply -EXPORT_SYMBOL_GPL vmlinux 0x641a3047 devm_krealloc -EXPORT_SYMBOL_GPL vmlinux 0x641e1fcd setfl +EXPORT_SYMBOL_GPL vmlinux 0x63ec3ad2 of_i2c_get_board_info +EXPORT_SYMBOL_GPL vmlinux 0x640746be crypto_unregister_aeads +EXPORT_SYMBOL_GPL vmlinux 0x6410174a pinctrl_get_group_pins +EXPORT_SYMBOL_GPL vmlinux 0x6411ebc0 bpf_verifier_log_write +EXPORT_SYMBOL_GPL vmlinux 0x641ef486 ip6_datagram_send_ctl EXPORT_SYMBOL_GPL vmlinux 0x6427572b tegra210_clk_emc_dll_enable -EXPORT_SYMBOL_GPL vmlinux 0x642b0632 fscrypt_ioctl_remove_key_all_users EXPORT_SYMBOL_GPL vmlinux 0x643b06b0 zynqmp_pm_clock_setrate -EXPORT_SYMBOL_GPL vmlinux 0x64407f5c input_ff_create -EXPORT_SYMBOL_GPL vmlinux 0x644631c0 irq_chip_set_type_parent -EXPORT_SYMBOL_GPL vmlinux 0x644f9a7b cpufreq_cpu_put -EXPORT_SYMBOL_GPL vmlinux 0x645de3cd sk_set_memalloc +EXPORT_SYMBOL_GPL vmlinux 0x64437388 devfreq_event_set_event +EXPORT_SYMBOL_GPL vmlinux 0x6446b994 trace_event_ignore_this_pid +EXPORT_SYMBOL_GPL vmlinux 0x64476cdc acpi_subsys_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x644de805 usb_sg_cancel +EXPORT_SYMBOL_GPL vmlinux 0x644ff35f ip_build_and_send_pkt +EXPORT_SYMBOL_GPL vmlinux 0x6458f408 psil_set_new_ep_config EXPORT_SYMBOL_GPL vmlinux 0x64609d25 __tracepoint_devlink_trap_report -EXPORT_SYMBOL_GPL vmlinux 0x64638a87 __devm_regmap_init_i2c -EXPORT_SYMBOL_GPL vmlinux 0x64744296 fwnode_handle_put +EXPORT_SYMBOL_GPL vmlinux 0x646ed08f usb_free_streams EXPORT_SYMBOL_GPL vmlinux 0x647537f3 pl320_ipc_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6476e7b1 blkg_prfill_rwstat -EXPORT_SYMBOL_GPL vmlinux 0x6490da91 kvm_vcpu_block +EXPORT_SYMBOL_GPL vmlinux 0x64885f0f anon_inode_getfd +EXPORT_SYMBOL_GPL vmlinux 0x648ffdee device_get_phy_mode EXPORT_SYMBOL_GPL vmlinux 0x64925270 __dax_synchronous EXPORT_SYMBOL_GPL vmlinux 0x64a31445 mutex_lock_io -EXPORT_SYMBOL_GPL vmlinux 0x64a70eaf platform_irqchip_probe +EXPORT_SYMBOL_GPL vmlinux 0x64a95f7a __clk_hw_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x64a9d29f device_remove_software_node EXPORT_SYMBOL_GPL vmlinux 0x64b71173 reserve_iova -EXPORT_SYMBOL_GPL vmlinux 0x64be7e61 sock_diag_destroy -EXPORT_SYMBOL_GPL vmlinux 0x64c53015 gpiochip_lock_as_irq -EXPORT_SYMBOL_GPL vmlinux 0x64c91c77 bgmac_adjust_link -EXPORT_SYMBOL_GPL vmlinux 0x64cb779c sysfs_notify +EXPORT_SYMBOL_GPL vmlinux 0x64c44ede pci_slots_kset +EXPORT_SYMBOL_GPL vmlinux 0x64cbe85b fsl_mc_driver_unregister EXPORT_SYMBOL_GPL vmlinux 0x64d3cc4e xas_load EXPORT_SYMBOL_GPL vmlinux 0x64e27c4f synth_event_delete -EXPORT_SYMBOL_GPL vmlinux 0x64e317fe acpi_dev_pm_attach -EXPORT_SYMBOL_GPL vmlinux 0x64e49051 skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x64e88626 ahci_platform_enable_phys EXPORT_SYMBOL_GPL vmlinux 0x64f36620 dax_flush EXPORT_SYMBOL_GPL vmlinux 0x64f74abf __tracepoint_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x65016962 iommu_detach_group EXPORT_SYMBOL_GPL vmlinux 0x6502d9c2 xenbus_scanf -EXPORT_SYMBOL_GPL vmlinux 0x6508c79b devm_power_supply_register -EXPORT_SYMBOL_GPL vmlinux 0x650b147f crypto_stats_kpp_compute_shared_secret -EXPORT_SYMBOL_GPL vmlinux 0x65154542 dev_pm_domain_start -EXPORT_SYMBOL_GPL vmlinux 0x65226d5b acpi_bus_trim +EXPORT_SYMBOL_GPL vmlinux 0x6503afbb bpf_prog_put +EXPORT_SYMBOL_GPL vmlinux 0x65140eb2 gnttab_unmap_refs_async +EXPORT_SYMBOL_GPL vmlinux 0x651b9bc7 ethnl_cable_test_amplitude +EXPORT_SYMBOL_GPL vmlinux 0x652675a5 pm_generic_resume_early +EXPORT_SYMBOL_GPL vmlinux 0x652c45b9 fwnode_get_name EXPORT_SYMBOL_GPL vmlinux 0x6531a37f mpi_add -EXPORT_SYMBOL_GPL vmlinux 0x6541718f devlink_rate_nodes_destroy +EXPORT_SYMBOL_GPL vmlinux 0x65375bba synth_event_trace +EXPORT_SYMBOL_GPL vmlinux 0x653a4a32 gpiochip_irqchip_irq_valid EXPORT_SYMBOL_GPL vmlinux 0x6545268e __tracepoint_neigh_cleanup_and_release -EXPORT_SYMBOL_GPL vmlinux 0x6547d1d4 of_devfreq_cooling_register_power -EXPORT_SYMBOL_GPL vmlinux 0x654995b4 mtk_pinconf_bias_set -EXPORT_SYMBOL_GPL vmlinux 0x655d64ca dax_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6546601f exportfs_decode_fh EXPORT_SYMBOL_GPL vmlinux 0x655e4879 __irq_alloc_descs -EXPORT_SYMBOL_GPL vmlinux 0x655f6c48 rio_map_outb_region -EXPORT_SYMBOL_GPL vmlinux 0x65631c4d user_read -EXPORT_SYMBOL_GPL vmlinux 0x6566fbfb cgroup_attach_task_all -EXPORT_SYMBOL_GPL vmlinux 0x65709d1e iommu_device_link -EXPORT_SYMBOL_GPL vmlinux 0x65836d5b dst_cache_get_ip4 -EXPORT_SYMBOL_GPL vmlinux 0x659994df regmap_register_patch -EXPORT_SYMBOL_GPL vmlinux 0x65bad0dc dev_pm_opp_put_clkname -EXPORT_SYMBOL_GPL vmlinux 0x65c2ceb7 fwnode_graph_get_endpoint_by_id -EXPORT_SYMBOL_GPL vmlinux 0x65c8ead8 max8997_write_reg +EXPORT_SYMBOL_GPL vmlinux 0x655fb919 ata_sff_data_xfer32 +EXPORT_SYMBOL_GPL vmlinux 0x65679ee2 devm_hwspin_lock_request_specific +EXPORT_SYMBOL_GPL vmlinux 0x6575d35a tpm_put_ops +EXPORT_SYMBOL_GPL vmlinux 0x657e0a60 pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0x657ee5f7 bsg_register_queue +EXPORT_SYMBOL_GPL vmlinux 0x658358a6 uart_console_device +EXPORT_SYMBOL_GPL vmlinux 0x6583fd25 pci_set_pcie_reset_state +EXPORT_SYMBOL_GPL vmlinux 0x65859496 metadata_dst_free_percpu +EXPORT_SYMBOL_GPL vmlinux 0x65ac8d53 __reset_control_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x65c2ffb2 kvm_vcpu_unmap +EXPORT_SYMBOL_GPL vmlinux 0x65c57323 extcon_set_property_capability EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers -EXPORT_SYMBOL_GPL vmlinux 0x65d4b411 ahci_platform_enable_resources -EXPORT_SYMBOL_GPL vmlinux 0x65dbab20 cpufreq_policy_transition_delay_us +EXPORT_SYMBOL_GPL vmlinux 0x65da508e ehci_hub_control EXPORT_SYMBOL_GPL vmlinux 0x65e01af9 __sync_icache_dcache -EXPORT_SYMBOL_GPL vmlinux 0x65e402a8 phy_power_off -EXPORT_SYMBOL_GPL vmlinux 0x65f5e157 ahci_platform_get_resources -EXPORT_SYMBOL_GPL vmlinux 0x65fc3064 handle_level_irq -EXPORT_SYMBOL_GPL vmlinux 0x65fd1b2f irq_domain_create_hierarchy -EXPORT_SYMBOL_GPL vmlinux 0x65ff5e28 of_genpd_add_subdomain -EXPORT_SYMBOL_GPL vmlinux 0x661126f5 regmap_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0x66033cb3 pci_acpi_set_companion_lookup_hook +EXPORT_SYMBOL_GPL vmlinux 0x660f0139 regulator_suspend_disable EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol -EXPORT_SYMBOL_GPL vmlinux 0x6619a884 trace_event_reg -EXPORT_SYMBOL_GPL vmlinux 0x661b0935 device_set_wakeup_capable -EXPORT_SYMBOL_GPL vmlinux 0x66334300 trace_array_put -EXPORT_SYMBOL_GPL vmlinux 0x6634dd28 fsl_mc_bus_dpci_type EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity -EXPORT_SYMBOL_GPL vmlinux 0x6636ebb1 fscrypt_ioctl_remove_key -EXPORT_SYMBOL_GPL vmlinux 0x6637972c fuse_dev_install -EXPORT_SYMBOL_GPL vmlinux 0x6637d4a7 serial8250_rpm_put +EXPORT_SYMBOL_GPL vmlinux 0x663824e3 powercap_unregister_control_type EXPORT_SYMBOL_GPL vmlinux 0x663bb448 devlink_fmsg_obj_nest_end -EXPORT_SYMBOL_GPL vmlinux 0x6645d290 mctrl_gpio_init_noauto -EXPORT_SYMBOL_GPL vmlinux 0x66465481 devm_pm_opp_attach_genpd -EXPORT_SYMBOL_GPL vmlinux 0x664c1f2f input_ff_event +EXPORT_SYMBOL_GPL vmlinux 0x663cdac7 usb_disable_xhci_ports EXPORT_SYMBOL_GPL vmlinux 0x664eb54a k3_ringacc_ring_reset_dma -EXPORT_SYMBOL_GPL vmlinux 0x66532428 ip_route_output_tunnel EXPORT_SYMBOL_GPL vmlinux 0x665e92a0 clk_set_duty_cycle -EXPORT_SYMBOL_GPL vmlinux 0x665f08a0 kvm_write_guest_page -EXPORT_SYMBOL_GPL vmlinux 0x6662d1a3 xdp_master_redirect -EXPORT_SYMBOL_GPL vmlinux 0x666829ea get_task_mm -EXPORT_SYMBOL_GPL vmlinux 0x666ac38c divider_ro_round_rate_parent -EXPORT_SYMBOL_GPL vmlinux 0x666cfa09 psil_set_new_ep_config +EXPORT_SYMBOL_GPL vmlinux 0x66672be5 usb_phy_roothub_resume EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x6692d915 lwtunnel_state_alloc -EXPORT_SYMBOL_GPL vmlinux 0x66986d29 devm_phy_optional_get -EXPORT_SYMBOL_GPL vmlinux 0x66ab062f of_hwspin_lock_get_id -EXPORT_SYMBOL_GPL vmlinux 0x66b14305 blk_mq_sched_mark_restart_hctx +EXPORT_SYMBOL_GPL vmlinux 0x6689d81b encrypt_blob +EXPORT_SYMBOL_GPL vmlinux 0x669cab6f ata_pci_bmdma_init +EXPORT_SYMBOL_GPL vmlinux 0x66a05fa3 clockevents_config_and_register +EXPORT_SYMBOL_GPL vmlinux 0x66b0cc6a iommu_sva_get_pasid EXPORT_SYMBOL_GPL vmlinux 0x66b97421 sfp_link_up +EXPORT_SYMBOL_GPL vmlinux 0x66bca773 ahci_do_softreset EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr -EXPORT_SYMBOL_GPL vmlinux 0x671de0bf tegra_bpmp_free_mrq -EXPORT_SYMBOL_GPL vmlinux 0x672a3c6b sk_psock_msg_verdict -EXPORT_SYMBOL_GPL vmlinux 0x672da74a of_regulator_match +EXPORT_SYMBOL_GPL vmlinux 0x66ef1bdb __rt_mutex_init +EXPORT_SYMBOL_GPL vmlinux 0x67025564 wm8350_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x670ecd0a skb_mpls_update_lse EXPORT_SYMBOL_GPL vmlinux 0x6735d56e tcp_ca_get_name_by_key -EXPORT_SYMBOL_GPL vmlinux 0x67371850 strp_unpause EXPORT_SYMBOL_GPL vmlinux 0x6739a503 balloon_set_new_target EXPORT_SYMBOL_GPL vmlinux 0x67429c91 __SCK__tp_func_block_bio_remap -EXPORT_SYMBOL_GPL vmlinux 0x6743813a devres_for_each_res -EXPORT_SYMBOL_GPL vmlinux 0x675413bf iommu_unmap -EXPORT_SYMBOL_GPL vmlinux 0x675cc700 acpi_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0x6762bc2d do_unbind_con_driver EXPORT_SYMBOL_GPL vmlinux 0x676c688f k3_ringacc_ring_free +EXPORT_SYMBOL_GPL vmlinux 0x6770bae8 ata_port_wait_eh +EXPORT_SYMBOL_GPL vmlinux 0x67779fef inet_csk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x67826c4f init_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x678abc57 crypto_stats_kpp_generate_public_key EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits -EXPORT_SYMBOL_GPL vmlinux 0x67aa78cd device_show_int -EXPORT_SYMBOL_GPL vmlinux 0x67b2c6dc switchdev_handle_port_obj_add -EXPORT_SYMBOL_GPL vmlinux 0x67b35b36 __traceiter_neigh_update_done -EXPORT_SYMBOL_GPL vmlinux 0x67b66c59 devres_close_group -EXPORT_SYMBOL_GPL vmlinux 0x67b94043 nf_hook_entries_delete_raw -EXPORT_SYMBOL_GPL vmlinux 0x67c18b37 tegra_bpmp_transfer -EXPORT_SYMBOL_GPL vmlinux 0x67c56b29 devlink_dpipe_table_register -EXPORT_SYMBOL_GPL vmlinux 0x67c93e4c tracing_snapshot_cond_disable +EXPORT_SYMBOL_GPL vmlinux 0x67b15994 crypto_hash_alg_has_setkey +EXPORT_SYMBOL_GPL vmlinux 0x67b71930 devlink_port_unregister +EXPORT_SYMBOL_GPL vmlinux 0x67c32b52 serial8250_do_shutdown EXPORT_SYMBOL_GPL vmlinux 0x67da9f7c sha512_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x67ef93c1 pm_clk_suspend -EXPORT_SYMBOL_GPL vmlinux 0x680249b7 rockchip_pcie_get_phys -EXPORT_SYMBOL_GPL vmlinux 0x682a6dfa mtk_mutex_get -EXPORT_SYMBOL_GPL vmlinux 0x682ce362 platform_get_resource +EXPORT_SYMBOL_GPL vmlinux 0x67e0a077 dev_pm_opp_sync_regulators +EXPORT_SYMBOL_GPL vmlinux 0x67e1d602 fat_flush_inodes +EXPORT_SYMBOL_GPL vmlinux 0x67f4d838 gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x67f73da0 bio_release_pages +EXPORT_SYMBOL_GPL vmlinux 0x67f7b309 mtk_mmsys_ddp_disconnect +EXPORT_SYMBOL_GPL vmlinux 0x68179c71 paste_selection +EXPORT_SYMBOL_GPL vmlinux 0x6823db6b vma_kernel_pagesize EXPORT_SYMBOL_GPL vmlinux 0x682ff057 ring_buffer_commit_overrun_cpu -EXPORT_SYMBOL_GPL vmlinux 0x683583b2 spi_mem_exec_op -EXPORT_SYMBOL_GPL vmlinux 0x6838e9fb clk_hw_unregister_gate -EXPORT_SYMBOL_GPL vmlinux 0x6841fb60 crypto_stats_init -EXPORT_SYMBOL_GPL vmlinux 0x68482380 fsl_mc_free_irqs -EXPORT_SYMBOL_GPL vmlinux 0x6848f6cb usb_autopm_get_interface +EXPORT_SYMBOL_GPL vmlinux 0x6832e0bf nvmem_cell_read_variable_le_u32 +EXPORT_SYMBOL_GPL vmlinux 0x68353951 clk_hw_unregister_gate +EXPORT_SYMBOL_GPL vmlinux 0x684080fb battery_hook_register +EXPORT_SYMBOL_GPL vmlinux 0x6840efca usb_disable_lpm EXPORT_SYMBOL_GPL vmlinux 0x684ca117 zynqmp_pm_get_pll_frac_mode +EXPORT_SYMBOL_GPL vmlinux 0x684e16e5 icc_sync_state +EXPORT_SYMBOL_GPL vmlinux 0x6863360e __skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x68856c1c ti_sci_inta_msi_domain_free_irqs +EXPORT_SYMBOL_GPL vmlinux 0x688b6b87 led_classdev_register_ext EXPORT_SYMBOL_GPL vmlinux 0x6892e3c3 kvm_set_pfn_accessed EXPORT_SYMBOL_GPL vmlinux 0x68952493 rcu_note_context_switch -EXPORT_SYMBOL_GPL vmlinux 0x68a08f96 ata_bmdma_post_internal_cmd -EXPORT_SYMBOL_GPL vmlinux 0x68a4205c imx_pinconf_get_scu -EXPORT_SYMBOL_GPL vmlinux 0x68b81e7e dma_map_sgtable -EXPORT_SYMBOL_GPL vmlinux 0x68cb6011 perf_pmu_unregister -EXPORT_SYMBOL_GPL vmlinux 0x68d5d344 kvm_vcpu_is_visible_gfn -EXPORT_SYMBOL_GPL vmlinux 0x68dd1bd5 blk_queue_required_elevator_features -EXPORT_SYMBOL_GPL vmlinux 0x68ebd498 spi_mem_driver_register_with_owner -EXPORT_SYMBOL_GPL vmlinux 0x68ed3f25 gpiochip_unlock_as_irq -EXPORT_SYMBOL_GPL vmlinux 0x68f38518 iommu_map +EXPORT_SYMBOL_GPL vmlinux 0x68cf6581 ata_sff_prereset +EXPORT_SYMBOL_GPL vmlinux 0x68d5a966 acpi_unbind_one +EXPORT_SYMBOL_GPL vmlinux 0x68db3cc1 crypto_shash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x68e0bf9c msi_desc_to_pci_sysdata +EXPORT_SYMBOL_GPL vmlinux 0x68e1030e acpi_get_first_physical_node +EXPORT_SYMBOL_GPL vmlinux 0x68e1ab42 devm_clk_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x68e6b082 tty_standard_install +EXPORT_SYMBOL_GPL vmlinux 0x690d9047 blk_mq_update_nr_hw_queues EXPORT_SYMBOL_GPL vmlinux 0x690f585e phy_basic_ports_array -EXPORT_SYMBOL_GPL vmlinux 0x6914cb6c regulator_get_voltage_rdev -EXPORT_SYMBOL_GPL vmlinux 0x691f87fc driver_attach -EXPORT_SYMBOL_GPL vmlinux 0x692e28fe nvdimm_name -EXPORT_SYMBOL_GPL vmlinux 0x693d7e9f platform_device_alloc -EXPORT_SYMBOL_GPL vmlinux 0x694748a0 pci_epf_free_space -EXPORT_SYMBOL_GPL vmlinux 0x69474caf device_show_ulong -EXPORT_SYMBOL_GPL vmlinux 0x69475228 dev_pm_opp_remove_all_dynamic -EXPORT_SYMBOL_GPL vmlinux 0x6953eb40 debugfs_print_regs32 -EXPORT_SYMBOL_GPL vmlinux 0x695c4846 thermal_zone_of_sensor_unregister -EXPORT_SYMBOL_GPL vmlinux 0x69606aa8 rio_mport_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x6910f897 driver_register +EXPORT_SYMBOL_GPL vmlinux 0x6913c1ec tty_set_ldisc +EXPORT_SYMBOL_GPL vmlinux 0x6919a773 vc_scrolldelta_helper +EXPORT_SYMBOL_GPL vmlinux 0x69315234 md_account_bio +EXPORT_SYMBOL_GPL vmlinux 0x6941ab20 __hwspin_unlock +EXPORT_SYMBOL_GPL vmlinux 0x6943f3cd bpf_trace_run10 +EXPORT_SYMBOL_GPL vmlinux 0x69574b2f sdio_memcpy_toio EXPORT_SYMBOL_GPL vmlinux 0x696340a5 __i2c_board_lock EXPORT_SYMBOL_GPL vmlinux 0x69637b2c __traceiter_powernv_throttle -EXPORT_SYMBOL_GPL vmlinux 0x696bd98b blk_queue_max_zone_append_sectors -EXPORT_SYMBOL_GPL vmlinux 0x696c8094 mtk_eint_do_suspend EXPORT_SYMBOL_GPL vmlinux 0x696f2b63 of_changeset_init -EXPORT_SYMBOL_GPL vmlinux 0x6975d634 blk_stat_enable_accounting +EXPORT_SYMBOL_GPL vmlinux 0x697249bb devm_power_supply_register_no_ws EXPORT_SYMBOL_GPL vmlinux 0x697c5d0d tracing_snapshot_alloc -EXPORT_SYMBOL_GPL vmlinux 0x6993c789 bus_for_each_drv -EXPORT_SYMBOL_GPL vmlinux 0x699e3e17 vp_modern_config_vector -EXPORT_SYMBOL_GPL vmlinux 0x69a2916a nvdimm_clear_poison -EXPORT_SYMBOL_GPL vmlinux 0x69a4cf20 iopf_queue_add_device -EXPORT_SYMBOL_GPL vmlinux 0x69b82364 thermal_zone_get_zone_by_name -EXPORT_SYMBOL_GPL vmlinux 0x69c64e37 __hwspin_lock_timeout +EXPORT_SYMBOL_GPL vmlinux 0x698d86ec strp_check_rcv +EXPORT_SYMBOL_GPL vmlinux 0x69aeac72 irq_of_parse_and_map +EXPORT_SYMBOL_GPL vmlinux 0x69bea846 xfrm_output +EXPORT_SYMBOL_GPL vmlinux 0x69c028fb fsl_mc_bus_dpmac_type +EXPORT_SYMBOL_GPL vmlinux 0x69cacc19 usb_submit_urb EXPORT_SYMBOL_GPL vmlinux 0x69cf0632 mpi_fromstr +EXPORT_SYMBOL_GPL vmlinux 0x69d2f6cf acpi_spi_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0x69d5367c mmu_notifier_range_update_to_read_only EXPORT_SYMBOL_GPL vmlinux 0x69e683de uuid_gen EXPORT_SYMBOL_GPL vmlinux 0x69ee2220 linear_range_get_selector_high -EXPORT_SYMBOL_GPL vmlinux 0x69f4ee28 phy_modify_mmd -EXPORT_SYMBOL_GPL vmlinux 0x69f6cd1c alloc_io_pgtable_ops -EXPORT_SYMBOL_GPL vmlinux 0x69fdc569 icc_std_aggregate -EXPORT_SYMBOL_GPL vmlinux 0x6a04bc7f vchan_tx_desc_free +EXPORT_SYMBOL_GPL vmlinux 0x69ef51c5 pinctrl_register_and_init +EXPORT_SYMBOL_GPL vmlinux 0x69f16c7f unregister_virtio_driver EXPORT_SYMBOL_GPL vmlinux 0x6a05b65b fb_videomode_from_videomode -EXPORT_SYMBOL_GPL vmlinux 0x6a0dc682 serial8250_update_uartclk -EXPORT_SYMBOL_GPL vmlinux 0x6a142aa5 __put_task_struct +EXPORT_SYMBOL_GPL vmlinux 0x6a082343 handle_untracked_irq +EXPORT_SYMBOL_GPL vmlinux 0x6a1549af mtk_pinconf_drive_set_raw EXPORT_SYMBOL_GPL vmlinux 0x6a1733eb iommu_group_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6a3eea17 clockevent_delta2ns +EXPORT_SYMBOL_GPL vmlinux 0x6a407bdf ipv6_dup_options EXPORT_SYMBOL_GPL vmlinux 0x6a421062 memory_failure_queue -EXPORT_SYMBOL_GPL vmlinux 0x6a42a5c1 ata_scsi_slave_destroy -EXPORT_SYMBOL_GPL vmlinux 0x6a441f2f fib_add_nexthop EXPORT_SYMBOL_GPL vmlinux 0x6a460dc5 schedule_hrtimeout +EXPORT_SYMBOL_GPL vmlinux 0x6a4c3f3c tc3589x_reg_read EXPORT_SYMBOL_GPL vmlinux 0x6a4f623b mmu_notifier_synchronize -EXPORT_SYMBOL_GPL vmlinux 0x6a50b1c0 ahci_platform_suspend -EXPORT_SYMBOL_GPL vmlinux 0x6a523f6d list_lru_count_one EXPORT_SYMBOL_GPL vmlinux 0x6a5e2bde __cookie_v6_init_sequence EXPORT_SYMBOL_GPL vmlinux 0x6a8441be cpci_hp_start -EXPORT_SYMBOL_GPL vmlinux 0x6a90084f led_init_core +EXPORT_SYMBOL_GPL vmlinux 0x6a89e88f gfn_to_pfn EXPORT_SYMBOL_GPL vmlinux 0x6a93c9b2 zynqmp_pm_pinctrl_get_function EXPORT_SYMBOL_GPL vmlinux 0x6aa2a877 xenbus_printf -EXPORT_SYMBOL_GPL vmlinux 0x6aa93514 device_create_file +EXPORT_SYMBOL_GPL vmlinux 0x6aa36f38 shmem_zero_setup +EXPORT_SYMBOL_GPL vmlinux 0x6aa9de32 device_release_driver EXPORT_SYMBOL_GPL vmlinux 0x6aad9152 xen_set_callback_via -EXPORT_SYMBOL_GPL vmlinux 0x6ab40258 rio_route_get_entry -EXPORT_SYMBOL_GPL vmlinux 0x6abc0534 meson_clk_dualdiv_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0x6ac9a9f2 regcache_sync -EXPORT_SYMBOL_GPL vmlinux 0x6acce969 pinctrl_register -EXPORT_SYMBOL_GPL vmlinux 0x6ad49adc scsi_unregister_device_handler -EXPORT_SYMBOL_GPL vmlinux 0x6add0d3c of_clk_src_onecell_get -EXPORT_SYMBOL_GPL vmlinux 0x6af27701 fsl_mc_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0x6b0859e5 devm_clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0x6aaf2f68 ack_all_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x6abb980b validate_xmit_xfrm +EXPORT_SYMBOL_GPL vmlinux 0x6addc6d1 __ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0x6af318d6 lp8788_read_byte EXPORT_SYMBOL_GPL vmlinux 0x6b0dc565 xen_set_irq_priority -EXPORT_SYMBOL_GPL vmlinux 0x6b0df08c access_process_vm -EXPORT_SYMBOL_GPL vmlinux 0x6b10bf32 pci_create_slot +EXPORT_SYMBOL_GPL vmlinux 0x6b13d80f scsi_host_complete_all_commands EXPORT_SYMBOL_GPL vmlinux 0x6b198c77 led_colors +EXPORT_SYMBOL_GPL vmlinux 0x6b1f9a83 bpf_offload_dev_netdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6b253b3e ohci_setup +EXPORT_SYMBOL_GPL vmlinux 0x6b28bc8a xfrm_audit_policy_delete EXPORT_SYMBOL_GPL vmlinux 0x6b2b69f7 static_key_enable -EXPORT_SYMBOL_GPL vmlinux 0x6b383a62 ata_bmdma_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x6b36a843 devm_pm_opp_set_regulators +EXPORT_SYMBOL_GPL vmlinux 0x6b376696 regmap_mmio_attach_clk EXPORT_SYMBOL_GPL vmlinux 0x6b3ae022 acpi_os_unmap_iomem -EXPORT_SYMBOL_GPL vmlinux 0x6b3d739f fib_rules_dump +EXPORT_SYMBOL_GPL vmlinux 0x6b3cca70 regmap_add_irq_chip_fwnode EXPORT_SYMBOL_GPL vmlinux 0x6b4045ee zynqmp_pm_get_api_version EXPORT_SYMBOL_GPL vmlinux 0x6b413c9b sfp_link_down -EXPORT_SYMBOL_GPL vmlinux 0x6b469cd4 inet6_compat_ioctl EXPORT_SYMBOL_GPL vmlinux 0x6b47f8a4 hisi_clk_register_mux -EXPORT_SYMBOL_GPL vmlinux 0x6b594704 gpiod_is_active_low -EXPORT_SYMBOL_GPL vmlinux 0x6b730a08 pm_clk_remove +EXPORT_SYMBOL_GPL vmlinux 0x6b4d7071 imx_pinconf_get_scu +EXPORT_SYMBOL_GPL vmlinux 0x6b60c884 regmap_raw_read +EXPORT_SYMBOL_GPL vmlinux 0x6b6247f7 __of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0x6b695d2a iommu_aux_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x6b6b3181 transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x6b721db7 ip6_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x6b780a49 usb_of_get_companion_dev EXPORT_SYMBOL_GPL vmlinux 0x6b7a4335 hyperv_cleanup EXPORT_SYMBOL_GPL vmlinux 0x6b81c38b power_supply_unreg_notifier EXPORT_SYMBOL_GPL vmlinux 0x6b834121 bman_portals_probed -EXPORT_SYMBOL_GPL vmlinux 0x6b8514a7 dma_buf_dynamic_attach -EXPORT_SYMBOL_GPL vmlinux 0x6b9390f9 tty_buffer_request_room -EXPORT_SYMBOL_GPL vmlinux 0x6b94ada4 sched_trace_rq_avg_rt +EXPORT_SYMBOL_GPL vmlinux 0x6b8e017f gpiochip_is_requested +EXPORT_SYMBOL_GPL vmlinux 0x6b97de9c l3mdev_master_upper_ifindex_by_index_rcu EXPORT_SYMBOL_GPL vmlinux 0x6ba36c6a hwpoison_filter_flags_value -EXPORT_SYMBOL_GPL vmlinux 0x6bb0a0ae wm8350_reg_lock -EXPORT_SYMBOL_GPL vmlinux 0x6bbb0cde tcp_set_state +EXPORT_SYMBOL_GPL vmlinux 0x6bae7110 nvdimm_bus_register +EXPORT_SYMBOL_GPL vmlinux 0x6bbc9b53 pci_epc_set_msix +EXPORT_SYMBOL_GPL vmlinux 0x6bbe840f security_path_link EXPORT_SYMBOL_GPL vmlinux 0x6bcdedc0 mpi_point_init -EXPORT_SYMBOL_GPL vmlinux 0x6bceddd5 component_master_del +EXPORT_SYMBOL_GPL vmlinux 0x6bce787c kthread_unuse_mm EXPORT_SYMBOL_GPL vmlinux 0x6bd1aa56 stack_trace_save -EXPORT_SYMBOL_GPL vmlinux 0x6bd45016 fsl_mc_bus_dpcon_type -EXPORT_SYMBOL_GPL vmlinux 0x6bd4b43f kvm_io_bus_write -EXPORT_SYMBOL_GPL vmlinux 0x6bdc80ce dev_pm_domain_detach EXPORT_SYMBOL_GPL vmlinux 0x6bdef35c acpi_ec_mark_gpe_for_wake -EXPORT_SYMBOL_GPL vmlinux 0x6be121c5 efivar_entry_set_get_size EXPORT_SYMBOL_GPL vmlinux 0x6be3a96b hv_remove_vmbus_handler -EXPORT_SYMBOL_GPL vmlinux 0x6bea196c xenbus_switch_state -EXPORT_SYMBOL_GPL vmlinux 0x6c0a042c xfrm_output_resume -EXPORT_SYMBOL_GPL vmlinux 0x6c0a36d1 mpc8xxx_spi_rx_buf_u8 +EXPORT_SYMBOL_GPL vmlinux 0x6be3aa7c usb_phy_roothub_suspend +EXPORT_SYMBOL_GPL vmlinux 0x6bfef825 dprc_get_obj_count EXPORT_SYMBOL_GPL vmlinux 0x6c205008 mpi_print -EXPORT_SYMBOL_GPL vmlinux 0x6c29a56c gpiod_put -EXPORT_SYMBOL_GPL vmlinux 0x6c33bf62 dm_bio_get_target_bio_nr +EXPORT_SYMBOL_GPL vmlinux 0x6c300617 __netpoll_setup +EXPORT_SYMBOL_GPL vmlinux 0x6c33f235 dma_async_device_channel_register EXPORT_SYMBOL_GPL vmlinux 0x6c389761 acpi_bus_get_private_data EXPORT_SYMBOL_GPL vmlinux 0x6c3f70e0 guid_gen +EXPORT_SYMBOL_GPL vmlinux 0x6c438db3 tpm_pm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x6c47f7ad fwnode_get_phy_node EXPORT_SYMBOL_GPL vmlinux 0x6c4b6684 reset_control_assert +EXPORT_SYMBOL_GPL vmlinux 0x6c5039d2 crypto_unregister_rng EXPORT_SYMBOL_GPL vmlinux 0x6c5ad0cd kmsg_dump_register EXPORT_SYMBOL_GPL vmlinux 0x6c655913 register_acpi_hed_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6c67d1ab irq_chip_mask_ack_parent -EXPORT_SYMBOL_GPL vmlinux 0x6c6a9d63 __pci_hp_initialize -EXPORT_SYMBOL_GPL vmlinux 0x6c719f2d clk_register -EXPORT_SYMBOL_GPL vmlinux 0x6c8e5a99 clk_hw_unregister_mux +EXPORT_SYMBOL_GPL vmlinux 0x6c80bafc iommu_device_sysfs_remove EXPORT_SYMBOL_GPL vmlinux 0x6c956075 __SCK__tp_func_devlink_hwerr -EXPORT_SYMBOL_GPL vmlinux 0x6c9784e6 virtqueue_notify -EXPORT_SYMBOL_GPL vmlinux 0x6c9db815 xfrm_audit_policy_add +EXPORT_SYMBOL_GPL vmlinux 0x6ca37085 thermal_zone_unbind_cooling_device EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain EXPORT_SYMBOL_GPL vmlinux 0x6cb0ce87 irq_get_percpu_devid_partition -EXPORT_SYMBOL_GPL vmlinux 0x6cbab480 pinconf_generic_dt_subnode_to_map -EXPORT_SYMBOL_GPL vmlinux 0x6cbb77e0 kthread_unuse_mm +EXPORT_SYMBOL_GPL vmlinux 0x6cbb18f4 netdev_walk_all_upper_dev_rcu +EXPORT_SYMBOL_GPL vmlinux 0x6cbf872e pm_runtime_suspended_time +EXPORT_SYMBOL_GPL vmlinux 0x6cd7930b tty_put_char EXPORT_SYMBOL_GPL vmlinux 0x6ce10eb0 trace_clock_jiffies -EXPORT_SYMBOL_GPL vmlinux 0x6ce82780 get_net_ns +EXPORT_SYMBOL_GPL vmlinux 0x6ce608d9 phy_calibrate +EXPORT_SYMBOL_GPL vmlinux 0x6cefe08a of_alias_get_id EXPORT_SYMBOL_GPL vmlinux 0x6d04891d inet_getpeer +EXPORT_SYMBOL_GPL vmlinux 0x6d0603ed icc_get EXPORT_SYMBOL_GPL vmlinux 0x6d09843f copy_bpf_fprog_from_user EXPORT_SYMBOL_GPL vmlinux 0x6d0ae550 pinctrl_gpio_request -EXPORT_SYMBOL_GPL vmlinux 0x6d0b4878 misc_cg_uncharge -EXPORT_SYMBOL_GPL vmlinux 0x6d12ad6a inet_csk_route_child_sock -EXPORT_SYMBOL_GPL vmlinux 0x6d245411 pci_enable_pasid -EXPORT_SYMBOL_GPL vmlinux 0x6d25ddac tpm2_get_cc_attrs_tbl -EXPORT_SYMBOL_GPL vmlinux 0x6d29f812 thermal_zone_get_temp -EXPORT_SYMBOL_GPL vmlinux 0x6d2a08ab meson_sm_get +EXPORT_SYMBOL_GPL vmlinux 0x6d1b091f acpi_get_and_request_gpiod +EXPORT_SYMBOL_GPL vmlinux 0x6d28dc5f iommu_device_sysfs_add EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list -EXPORT_SYMBOL_GPL vmlinux 0x6d352c1f fib6_rule_default +EXPORT_SYMBOL_GPL vmlinux 0x6d34e0c5 blk_mq_start_stopped_hw_queue +EXPORT_SYMBOL_GPL vmlinux 0x6d45f753 proc_create_net_data EXPORT_SYMBOL_GPL vmlinux 0x6d467b08 arm_smccc_1_1_get_conduit -EXPORT_SYMBOL_GPL vmlinux 0x6d4a76c6 devfreq_event_disable_edev -EXPORT_SYMBOL_GPL vmlinux 0x6d4d9c6e ata_host_put -EXPORT_SYMBOL_GPL vmlinux 0x6d5166cf edac_device_add_device -EXPORT_SYMBOL_GPL vmlinux 0x6d53f76a xdp_build_skb_from_frame -EXPORT_SYMBOL_GPL vmlinux 0x6d5b3313 pinctrl_dev_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x6d5d2457 dm_device_name -EXPORT_SYMBOL_GPL vmlinux 0x6d5e2c17 meson_eeclkc_probe -EXPORT_SYMBOL_GPL vmlinux 0x6d5fbe3b __blkg_prfill_u64 -EXPORT_SYMBOL_GPL vmlinux 0x6d60de0a tegra_bpmp_request_mrq -EXPORT_SYMBOL_GPL vmlinux 0x6d6e1368 irq_domain_set_hwirq_and_chip -EXPORT_SYMBOL_GPL vmlinux 0x6d6fa541 __vfs_setxattr_locked +EXPORT_SYMBOL_GPL vmlinux 0x6d4deaa3 fsl_mc_allocate_irqs +EXPORT_SYMBOL_GPL vmlinux 0x6d4eaee9 virtqueue_get_vring_size +EXPORT_SYMBOL_GPL vmlinux 0x6d62ef85 __udp6_lib_lookup EXPORT_SYMBOL_GPL vmlinux 0x6d6fec1f ktime_mono_to_any -EXPORT_SYMBOL_GPL vmlinux 0x6d7d3bdb elv_rqhash_add EXPORT_SYMBOL_GPL vmlinux 0x6d7e951e rcu_exp_batches_completed -EXPORT_SYMBOL_GPL vmlinux 0x6d8c4ee0 inet_twsk_put -EXPORT_SYMBOL_GPL vmlinux 0x6d9c30b8 skb_segment_list -EXPORT_SYMBOL_GPL vmlinux 0x6da6a5bc dev_pm_opp_is_turbo -EXPORT_SYMBOL_GPL vmlinux 0x6dab3096 sk_msg_return -EXPORT_SYMBOL_GPL vmlinux 0x6daf89e1 devm_regulator_register -EXPORT_SYMBOL_GPL vmlinux 0x6db0da2c netdev_walk_all_lower_dev -EXPORT_SYMBOL_GPL vmlinux 0x6db2a69b phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0x6d9b934c find_mci_by_dev +EXPORT_SYMBOL_GPL vmlinux 0x6dac76f3 tty_mode_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x6db84387 perf_pmu_migrate_context +EXPORT_SYMBOL_GPL vmlinux 0x6dba6215 devm_regulator_register_supply_alias EXPORT_SYMBOL_GPL vmlinux 0x6dbaafd3 put_old_timespec32 -EXPORT_SYMBOL_GPL vmlinux 0x6dbb101b inet_twsk_hashdance -EXPORT_SYMBOL_GPL vmlinux 0x6dc0b5a2 regulator_count_voltages -EXPORT_SYMBOL_GPL vmlinux 0x6dc1df99 mctrl_gpio_init EXPORT_SYMBOL_GPL vmlinux 0x6dd5680d sprint_symbol_build_id -EXPORT_SYMBOL_GPL vmlinux 0x6dee9b57 page_mkclean -EXPORT_SYMBOL_GPL vmlinux 0x6df4b142 usb_altnum_to_altsetting -EXPORT_SYMBOL_GPL vmlinux 0x6df56a22 xenbus_dev_groups -EXPORT_SYMBOL_GPL vmlinux 0x6df59368 debugfs_create_file_size +EXPORT_SYMBOL_GPL vmlinux 0x6ddd6e2c nf_queue +EXPORT_SYMBOL_GPL vmlinux 0x6de5241d xenbus_read_otherend_details +EXPORT_SYMBOL_GPL vmlinux 0x6dff2313 gnttab_dma_alloc_pages EXPORT_SYMBOL_GPL vmlinux 0x6e09d93d __SCK__tp_func_map -EXPORT_SYMBOL_GPL vmlinux 0x6e11ccb7 usb_match_id -EXPORT_SYMBOL_GPL vmlinux 0x6e11cd30 trace_output_call -EXPORT_SYMBOL_GPL vmlinux 0x6e2c0b48 __put_net -EXPORT_SYMBOL_GPL vmlinux 0x6e2da40e dm_internal_resume -EXPORT_SYMBOL_GPL vmlinux 0x6e310ad8 devfreq_get_devfreq_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x6e31b0b8 pci_user_read_config_byte -EXPORT_SYMBOL_GPL vmlinux 0x6e3657b3 mpc8xxx_spi_tx_buf_u8 -EXPORT_SYMBOL_GPL vmlinux 0x6e3c27fa l3mdev_fib_table_by_index +EXPORT_SYMBOL_GPL vmlinux 0x6e14f0bb regulator_force_disable +EXPORT_SYMBOL_GPL vmlinux 0x6e207593 regmap_exit +EXPORT_SYMBOL_GPL vmlinux 0x6e23cba0 pinmux_generic_get_function_groups +EXPORT_SYMBOL_GPL vmlinux 0x6e2d3dc8 virtio_device_freeze EXPORT_SYMBOL_GPL vmlinux 0x6e3ff83a edac_device_alloc_index -EXPORT_SYMBOL_GPL vmlinux 0x6e429d0a crypto_req_done -EXPORT_SYMBOL_GPL vmlinux 0x6e46efac acpi_subsys_runtime_suspend EXPORT_SYMBOL_GPL vmlinux 0x6e4aa78d k3_udma_glue_rx_flow_enable -EXPORT_SYMBOL_GPL vmlinux 0x6e4b3a14 dma_resv_wait_timeout EXPORT_SYMBOL_GPL vmlinux 0x6e4bc056 spi_res_free +EXPORT_SYMBOL_GPL vmlinux 0x6e4dc40a ip_route_output_tunnel +EXPORT_SYMBOL_GPL vmlinux 0x6e5574c2 watchdog_init_timeout EXPORT_SYMBOL_GPL vmlinux 0x6e59f821 __tracepoint_wbc_writepage -EXPORT_SYMBOL_GPL vmlinux 0x6e5bbd41 sdio_writesb -EXPORT_SYMBOL_GPL vmlinux 0x6e6e5ada serial8250_em485_stop_tx +EXPORT_SYMBOL_GPL vmlinux 0x6e6fb35a blk_mq_sched_mark_restart_hctx EXPORT_SYMBOL_GPL vmlinux 0x6e7943ec iommu_group_id +EXPORT_SYMBOL_GPL vmlinux 0x6e7e8eac unix_outq_len +EXPORT_SYMBOL_GPL vmlinux 0x6e85f6e0 __traceiter_xdp_bulk_tx +EXPORT_SYMBOL_GPL vmlinux 0x6e89645f mtk_pinconf_bias_disable_set_rev1 EXPORT_SYMBOL_GPL vmlinux 0x6e89a560 regmap_irq_chip_get_base -EXPORT_SYMBOL_GPL vmlinux 0x6e9ba97d watchdog_init_timeout -EXPORT_SYMBOL_GPL vmlinux 0x6ea488c2 ata_sas_sync_probe +EXPORT_SYMBOL_GPL vmlinux 0x6e936f71 fsnotify_destroy_mark +EXPORT_SYMBOL_GPL vmlinux 0x6e9e156e vfs_read +EXPORT_SYMBOL_GPL vmlinux 0x6eb7d412 fwnode_property_read_u32_array EXPORT_SYMBOL_GPL vmlinux 0x6ebe366f ktime_get_mono_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0x6eca740f lwtunnel_output -EXPORT_SYMBOL_GPL vmlinux 0x6ed42751 bus_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6ee110ed pci_common_swizzle +EXPORT_SYMBOL_GPL vmlinux 0x6ed77be9 devm_clk_bulk_get_all +EXPORT_SYMBOL_GPL vmlinux 0x6ed7f06a serdev_controller_remove EXPORT_SYMBOL_GPL vmlinux 0x6ee8c94b sfp_get_module_eeprom +EXPORT_SYMBOL_GPL vmlinux 0x6eeadc33 firmware_kobj EXPORT_SYMBOL_GPL vmlinux 0x6ef0855c ftrace_set_filter_ip +EXPORT_SYMBOL_GPL vmlinux 0x6ef69bae nl_table EXPORT_SYMBOL_GPL vmlinux 0x6ef6b54f ktime_get_boot_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x6efe445e iommu_capable +EXPORT_SYMBOL_GPL vmlinux 0x6f014536 br_fdb_test_addr_hook +EXPORT_SYMBOL_GPL vmlinux 0x6f0169ef evm_inode_init_security +EXPORT_SYMBOL_GPL vmlinux 0x6f02464a tpm_send +EXPORT_SYMBOL_GPL vmlinux 0x6f0d233b devm_clk_hw_get_clk EXPORT_SYMBOL_GPL vmlinux 0x6f12560a get_old_timespec32 -EXPORT_SYMBOL_GPL vmlinux 0x6f144e48 usb_add_hcd EXPORT_SYMBOL_GPL vmlinux 0x6f2017de misc_cg_set_capacity -EXPORT_SYMBOL_GPL vmlinux 0x6f2e72d4 clk_regmap_divider_ops -EXPORT_SYMBOL_GPL vmlinux 0x6f3db3d7 iomap_readahead -EXPORT_SYMBOL_GPL vmlinux 0x6f3e4543 get_task_pid -EXPORT_SYMBOL_GPL vmlinux 0x6f45e6a1 sched_set_fifo_low -EXPORT_SYMBOL_GPL vmlinux 0x6f5b692a device_phy_find_device -EXPORT_SYMBOL_GPL vmlinux 0x6f657dad devlink_trap_groups_register -EXPORT_SYMBOL_GPL vmlinux 0x6f67a2db ata_std_prereset -EXPORT_SYMBOL_GPL vmlinux 0x6f67cdca gov_attr_set_init -EXPORT_SYMBOL_GPL vmlinux 0x6f73c7b3 usb_hcd_pci_probe -EXPORT_SYMBOL_GPL vmlinux 0x6f7d9329 kvm_vcpu_write_guest +EXPORT_SYMBOL_GPL vmlinux 0x6f2b9c6c cgroup_get_from_fd +EXPORT_SYMBOL_GPL vmlinux 0x6f353f79 devlink_dpipe_table_register +EXPORT_SYMBOL_GPL vmlinux 0x6f416394 blk_trace_setup +EXPORT_SYMBOL_GPL vmlinux 0x6f635dbf mtk_pinconf_bias_disable_get +EXPORT_SYMBOL_GPL vmlinux 0x6f6919ad devlink_dpipe_entry_ctx_append EXPORT_SYMBOL_GPL vmlinux 0x6f7e6040 irq_has_action -EXPORT_SYMBOL_GPL vmlinux 0x6f822f3f dprc_scan_container -EXPORT_SYMBOL_GPL vmlinux 0x6f83a2c6 tcp_is_ulp_esp EXPORT_SYMBOL_GPL vmlinux 0x6f95bb84 sbitmap_queue_init_node -EXPORT_SYMBOL_GPL vmlinux 0x6f9ce82d dst_blackhole_redirect EXPORT_SYMBOL_GPL vmlinux 0x6f9e763b timecounter_read EXPORT_SYMBOL_GPL vmlinux 0x6fa2c222 call_srcu -EXPORT_SYMBOL_GPL vmlinux 0x6fac66cb pinctrl_find_gpio_range_from_pin_nolock -EXPORT_SYMBOL_GPL vmlinux 0x6fb3e73e sbitmap_show -EXPORT_SYMBOL_GPL vmlinux 0x6fc0b889 fuse_do_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x6fc27eaa skb_gso_validate_network_len -EXPORT_SYMBOL_GPL vmlinux 0x6fcc7711 xhci_resume +EXPORT_SYMBOL_GPL vmlinux 0x6fa2d843 gpiod_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x6fc4a760 shash_free_singlespawn_instance EXPORT_SYMBOL_GPL vmlinux 0x6fcef6ab ring_buffer_reset -EXPORT_SYMBOL_GPL vmlinux 0x6fdf56c5 spi_unregister_controller -EXPORT_SYMBOL_GPL vmlinux 0x6fe80ad9 wm831x_device_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x6fd75bd4 irqchip_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0x6fdbbf7d fsnotify_put_mark +EXPORT_SYMBOL_GPL vmlinux 0x6fdc39cf ahci_platform_ops EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x6ffffa6b __rio_local_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x70003c51 sysfs_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x7000a0b1 soc_device_match EXPORT_SYMBOL_GPL vmlinux 0x7006586e iommu_get_group_resv_regions -EXPORT_SYMBOL_GPL vmlinux 0x702104ee is_swiotlb_active -EXPORT_SYMBOL_GPL vmlinux 0x70419a07 mtk_pinconf_bias_disable_set_rev1 -EXPORT_SYMBOL_GPL vmlinux 0x70517f57 __reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0x70553573 cpu_subsys +EXPORT_SYMBOL_GPL vmlinux 0x700f7b13 anon_transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x7012d410 devlink_dpipe_table_unregister +EXPORT_SYMBOL_GPL vmlinux 0x701cfcfd serial8250_modem_status +EXPORT_SYMBOL_GPL vmlinux 0x70271d6e regulator_list_hardware_vsel +EXPORT_SYMBOL_GPL vmlinux 0x7048e749 rtnl_delete_link +EXPORT_SYMBOL_GPL vmlinux 0x704fde26 vp_modern_get_queue_size EXPORT_SYMBOL_GPL vmlinux 0x7055c56e __sbitmap_queue_get_shallow -EXPORT_SYMBOL_GPL vmlinux 0x706682d0 of_clk_hw_register EXPORT_SYMBOL_GPL vmlinux 0x7073c04f phy_10_100_features_array -EXPORT_SYMBOL_GPL vmlinux 0x707c5178 rio_mport_get_feature -EXPORT_SYMBOL_GPL vmlinux 0x7094547b vp_modern_get_queue_enable +EXPORT_SYMBOL_GPL vmlinux 0x707dfd79 amba_ahb_device_add_res +EXPORT_SYMBOL_GPL vmlinux 0x70851791 nvmem_cell_read_u8 +EXPORT_SYMBOL_GPL vmlinux 0x70a5174e xhci_init_driver EXPORT_SYMBOL_GPL vmlinux 0x70b7c07a gnttab_grant_foreign_transfer +EXPORT_SYMBOL_GPL vmlinux 0x70bf526f fib_rules_dump +EXPORT_SYMBOL_GPL vmlinux 0x70c135df usb_amd_pt_check_port EXPORT_SYMBOL_GPL vmlinux 0x70c2c7ea pids_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x70c32847 devlink_dpipe_entry_ctx_prepare EXPORT_SYMBOL_GPL vmlinux 0x70c52dc5 nf_skb_duplicated -EXPORT_SYMBOL_GPL vmlinux 0x70c81535 mtk_pinconf_drive_set_rev1 EXPORT_SYMBOL_GPL vmlinux 0x70cf032f usb_hcd_irq -EXPORT_SYMBOL_GPL vmlinux 0x70d95a63 gpiod_to_irq -EXPORT_SYMBOL_GPL vmlinux 0x70da7f3c gpiod_get_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x70d76dd9 tty_wakeup EXPORT_SYMBOL_GPL vmlinux 0x70e06e33 pkcs7_free_message -EXPORT_SYMBOL_GPL vmlinux 0x71086062 phy_get +EXPORT_SYMBOL_GPL vmlinux 0x70f1d8db sdio_f0_readb +EXPORT_SYMBOL_GPL vmlinux 0x70f4d142 dev_pm_enable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x70f8ae70 devlink_free +EXPORT_SYMBOL_GPL vmlinux 0x710a7caf shmem_file_setup_with_mnt EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x7110f545 sbitmap_bitmap_show -EXPORT_SYMBOL_GPL vmlinux 0x711b47b1 dprc_open -EXPORT_SYMBOL_GPL vmlinux 0x711fbdf8 pci_epc_mem_init +EXPORT_SYMBOL_GPL vmlinux 0x71191317 usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0x711c1a86 pci_ecam_map_bus +EXPORT_SYMBOL_GPL vmlinux 0x711c48d0 nf_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0x71283007 __class_create EXPORT_SYMBOL_GPL vmlinux 0x7129a6f4 osc_sb_native_usb4_support_confirmed -EXPORT_SYMBOL_GPL vmlinux 0x712d34fb usb_free_coherent -EXPORT_SYMBOL_GPL vmlinux 0x71346b1b sk_msg_return_zero -EXPORT_SYMBOL_GPL vmlinux 0x71372634 iomap_file_unshare -EXPORT_SYMBOL_GPL vmlinux 0x714bca15 usb_set_configuration -EXPORT_SYMBOL_GPL vmlinux 0x71567ac6 meson_aoclkc_probe -EXPORT_SYMBOL_GPL vmlinux 0x715cae17 regulator_allow_bypass +EXPORT_SYMBOL_GPL vmlinux 0x71373c5f usb_bulk_msg +EXPORT_SYMBOL_GPL vmlinux 0x71456643 shake_page +EXPORT_SYMBOL_GPL vmlinux 0x715e2faf ata_cable_40wire EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized EXPORT_SYMBOL_GPL vmlinux 0x71650819 add_bootloader_randomness -EXPORT_SYMBOL_GPL vmlinux 0x71663b77 tun_get_socket -EXPORT_SYMBOL_GPL vmlinux 0x718044e0 crypto_grab_ahash +EXPORT_SYMBOL_GPL vmlinux 0x716b82a7 iommu_fwspec_init +EXPORT_SYMBOL_GPL vmlinux 0x717869d3 crypto_stats_aead_encrypt EXPORT_SYMBOL_GPL vmlinux 0x7181db30 atomic_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0x71836dd0 mtk_pinconf_bias_get +EXPORT_SYMBOL_GPL vmlinux 0x718700bc cpufreq_freq_transition_begin +EXPORT_SYMBOL_GPL vmlinux 0x719bdd9e device_create_managed_software_node EXPORT_SYMBOL_GPL vmlinux 0x719e17ff clk_notifier_unregister EXPORT_SYMBOL_GPL vmlinux 0x71a20f4a __SCK__tp_func_non_standard_event -EXPORT_SYMBOL_GPL vmlinux 0x71a7dfca gpiochip_disable_irq EXPORT_SYMBOL_GPL vmlinux 0x71a9a3ab mtk_mutex_acquire -EXPORT_SYMBOL_GPL vmlinux 0x71afc042 ata_acpi_gtm_xfermask EXPORT_SYMBOL_GPL vmlinux 0x71b15008 lwtunnel_valid_encap_type EXPORT_SYMBOL_GPL vmlinux 0x71b6cf94 dst_cache_reset_now EXPORT_SYMBOL_GPL vmlinux 0x71c059d8 __traceiter_map -EXPORT_SYMBOL_GPL vmlinux 0x71d75e03 acpi_subsys_restore_early -EXPORT_SYMBOL_GPL vmlinux 0x71eded7c ata_scsi_port_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x71c72805 rcu_read_unlock_trace_special +EXPORT_SYMBOL_GPL vmlinux 0x71cda1d2 sysfs_chmod_file +EXPORT_SYMBOL_GPL vmlinux 0x71f35398 fb_deferred_io_init EXPORT_SYMBOL_GPL vmlinux 0x71f6670b __cookie_v6_check -EXPORT_SYMBOL_GPL vmlinux 0x7218d68b clk_hw_round_rate -EXPORT_SYMBOL_GPL vmlinux 0x7221bd15 iomap_dio_iopoll -EXPORT_SYMBOL_GPL vmlinux 0x723209fc preempt_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x7244b426 bpf_trace_run7 -EXPORT_SYMBOL_GPL vmlinux 0x72524159 regmap_check_range_table -EXPORT_SYMBOL_GPL vmlinux 0x7255b3d3 fsl_mc_bus_dprc_type -EXPORT_SYMBOL_GPL vmlinux 0x7257dec5 fwnode_property_read_u16_array -EXPORT_SYMBOL_GPL vmlinux 0x725e4f65 dax_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x71fabefb tps80031_ext_power_req_config +EXPORT_SYMBOL_GPL vmlinux 0x720be21f devm_get_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x721d5f34 clk_hw_register_gate2 +EXPORT_SYMBOL_GPL vmlinux 0x722d2593 tracing_snapshot_cond_disable +EXPORT_SYMBOL_GPL vmlinux 0x722e3643 devm_pwmchip_add +EXPORT_SYMBOL_GPL vmlinux 0x724bb3b9 devfreq_event_add_edev EXPORT_SYMBOL_GPL vmlinux 0x7262702b sfp_get_module_eeprom_by_page +EXPORT_SYMBOL_GPL vmlinux 0x7265197d ata_bmdma_port_start32 EXPORT_SYMBOL_GPL vmlinux 0x7265f2b0 pci_vpd_check_csum -EXPORT_SYMBOL_GPL vmlinux 0x72665a37 regmap_get_raw_write_max +EXPORT_SYMBOL_GPL vmlinux 0x726dc404 platform_device_alloc EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events +EXPORT_SYMBOL_GPL vmlinux 0x727d8183 dbs_update +EXPORT_SYMBOL_GPL vmlinux 0x727fa97c blk_crypto_evict_key EXPORT_SYMBOL_GPL vmlinux 0x7283161b percpu_ref_switch_to_percpu -EXPORT_SYMBOL_GPL vmlinux 0x7284bcee fib6_get_table -EXPORT_SYMBOL_GPL vmlinux 0x728586e2 uart_handle_cts_change -EXPORT_SYMBOL_GPL vmlinux 0x728eb1f5 dma_wait_for_async_tx -EXPORT_SYMBOL_GPL vmlinux 0x729217ce led_classdev_notify_brightness_hw_changed -EXPORT_SYMBOL_GPL vmlinux 0x72944105 debugfs_lookup -EXPORT_SYMBOL_GPL vmlinux 0x72b4b3a4 pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0x728b4e76 __pm_runtime_disable EXPORT_SYMBOL_GPL vmlinux 0x72d267dc nvmem_del_cell_lookups -EXPORT_SYMBOL_GPL vmlinux 0x72e16887 scsi_dh_attached_handler_name -EXPORT_SYMBOL_GPL vmlinux 0x72ec0fee cros_ec_check_features +EXPORT_SYMBOL_GPL vmlinux 0x72d33f34 usb_hcd_platform_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x72d647e3 device_create_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x72e15d83 irq_chip_set_vcpu_affinity_parent +EXPORT_SYMBOL_GPL vmlinux 0x72eb54f2 ata_link_next EXPORT_SYMBOL_GPL vmlinux 0x72edf918 __tracepoint_kfree_skb -EXPORT_SYMBOL_GPL vmlinux 0x72ee31ac do_truncate -EXPORT_SYMBOL_GPL vmlinux 0x73142438 usb_control_msg_recv +EXPORT_SYMBOL_GPL vmlinux 0x73055e6a fscrypt_set_context +EXPORT_SYMBOL_GPL vmlinux 0x73066444 dev_pm_opp_init_cpufreq_table +EXPORT_SYMBOL_GPL vmlinux 0x7306f036 regmap_field_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0x7312a73c pm_generic_suspend EXPORT_SYMBOL_GPL vmlinux 0x73242dcd cpu_set_feature -EXPORT_SYMBOL_GPL vmlinux 0x7325c0f9 wakeup_source_unregister EXPORT_SYMBOL_GPL vmlinux 0x732852fe xenbus_transaction_end -EXPORT_SYMBOL_GPL vmlinux 0x7331cc10 led_trigger_unregister -EXPORT_SYMBOL_GPL vmlinux 0x733847d7 edac_pci_handle_pe -EXPORT_SYMBOL_GPL vmlinux 0x7338ae3a da903x_read -EXPORT_SYMBOL_GPL vmlinux 0x73528fbc tty_kopen_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x73581f80 irq_domain_alloc_irqs_parent -EXPORT_SYMBOL_GPL vmlinux 0x735dd1e1 badblocks_init -EXPORT_SYMBOL_GPL vmlinux 0x7380e323 devfreq_event_get_event +EXPORT_SYMBOL_GPL vmlinux 0x7339c705 wm831x_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0x733d9cf9 blk_ksm_intersect_modes +EXPORT_SYMBOL_GPL vmlinux 0x734acc15 pin_get_name +EXPORT_SYMBOL_GPL vmlinux 0x73604655 ata_scsi_change_queue_depth EXPORT_SYMBOL_GPL vmlinux 0x7381287f trace_handle_return -EXPORT_SYMBOL_GPL vmlinux 0x73825428 thermal_zone_device_enable -EXPORT_SYMBOL_GPL vmlinux 0x738df3f5 iomap_page_mkwrite -EXPORT_SYMBOL_GPL vmlinux 0x739288bd pci_pr3_present -EXPORT_SYMBOL_GPL vmlinux 0x7394f8d2 vp_modern_set_queue_size -EXPORT_SYMBOL_GPL vmlinux 0x7395ca73 console_drivers -EXPORT_SYMBOL_GPL vmlinux 0x73999fa7 fsnotify_put_mark +EXPORT_SYMBOL_GPL vmlinux 0x7387d65a dw_pcie_ep_init_complete +EXPORT_SYMBOL_GPL vmlinux 0x73992c07 fixed_phy_change_carrier +EXPORT_SYMBOL_GPL vmlinux 0x739af0cb input_device_enabled EXPORT_SYMBOL_GPL vmlinux 0x73a48b4a ata_sff_std_ports -EXPORT_SYMBOL_GPL vmlinux 0x73b52ed5 __kthread_init_worker -EXPORT_SYMBOL_GPL vmlinux 0x73bc2c96 pm_clk_create -EXPORT_SYMBOL_GPL vmlinux 0x73c21bba xfer_to_guest_mode_handle_work +EXPORT_SYMBOL_GPL vmlinux 0x73b02095 crypto_alg_extsize +EXPORT_SYMBOL_GPL vmlinux 0x73bc8e05 sk_psock_msg_verdict EXPORT_SYMBOL_GPL vmlinux 0x73c2554f __iowrite64_copy +EXPORT_SYMBOL_GPL vmlinux 0x73c2b84e trace_event_reg +EXPORT_SYMBOL_GPL vmlinux 0x73c49e40 fsl_mc_bus_dpaiop_type +EXPORT_SYMBOL_GPL vmlinux 0x73c4cfdc clk_gate_restore_context EXPORT_SYMBOL_GPL vmlinux 0x73cc8631 oiap -EXPORT_SYMBOL_GPL vmlinux 0x73d205fc spi_alloc_device -EXPORT_SYMBOL_GPL vmlinux 0x73d4b70e ipv6_find_tlv -EXPORT_SYMBOL_GPL vmlinux 0x73d78cce dev_pm_qos_update_user_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0x73e305ba __traceiter_rpm_suspend -EXPORT_SYMBOL_GPL vmlinux 0x73f93db8 crypto_aead_setauthsize -EXPORT_SYMBOL_GPL vmlinux 0x73fc8612 bpf_trace_run11 -EXPORT_SYMBOL_GPL vmlinux 0x74118a47 tpm_get_timeouts -EXPORT_SYMBOL_GPL vmlinux 0x7415e2e6 crypto_shoot_alg -EXPORT_SYMBOL_GPL vmlinux 0x7419fa9f __dev_change_net_namespace -EXPORT_SYMBOL_GPL vmlinux 0x741a4055 gpiochip_line_is_persistent -EXPORT_SYMBOL_GPL vmlinux 0x741e9666 irq_domain_free_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x7425d4ba hypervisor_kobj -EXPORT_SYMBOL_GPL vmlinux 0x742a102d fuse_file_poll +EXPORT_SYMBOL_GPL vmlinux 0x73d71551 clk_register_divider_table +EXPORT_SYMBOL_GPL vmlinux 0x73df2f8c acpi_register_gsi +EXPORT_SYMBOL_GPL vmlinux 0x73e2f0fb wakeup_sources_walk_next +EXPORT_SYMBOL_GPL vmlinux 0x73e95004 ip6_dst_lookup +EXPORT_SYMBOL_GPL vmlinux 0x741576d2 dev_pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7415a225 user_read +EXPORT_SYMBOL_GPL vmlinux 0x741c777c pci_epc_stop +EXPORT_SYMBOL_GPL vmlinux 0x7423cc72 platform_add_devices EXPORT_SYMBOL_GPL vmlinux 0x743a165e ata_pack_xfermask EXPORT_SYMBOL_GPL vmlinux 0x743b99d8 xenmem_reservation_increase -EXPORT_SYMBOL_GPL vmlinux 0x744079d3 amba_bustype EXPORT_SYMBOL_GPL vmlinux 0x74457e56 apei_resources_fini -EXPORT_SYMBOL_GPL vmlinux 0x7449b369 cgroup_path_ns -EXPORT_SYMBOL_GPL vmlinux 0x744b1617 md_submit_discard_bio -EXPORT_SYMBOL_GPL vmlinux 0x744f9427 crypto_grab_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x74555adc thermal_zone_unbind_cooling_device -EXPORT_SYMBOL_GPL vmlinux 0x74664dc0 espintcp_push_skb +EXPORT_SYMBOL_GPL vmlinux 0x7456e58a serdev_device_write_flush +EXPORT_SYMBOL_GPL vmlinux 0x74576a31 vp_modern_get_features +EXPORT_SYMBOL_GPL vmlinux 0x7458ff87 clk_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0x747ff477 dev_pm_opp_put_regulators +EXPORT_SYMBOL_GPL vmlinux 0x748077e8 acpi_get_pci_dev +EXPORT_SYMBOL_GPL vmlinux 0x7480e8b3 serial8250_em485_destroy +EXPORT_SYMBOL_GPL vmlinux 0x748110ad uart_get_rs485_mode +EXPORT_SYMBOL_GPL vmlinux 0x7489c406 kvm_vcpu_map +EXPORT_SYMBOL_GPL vmlinux 0x74a082ba bpf_offload_dev_match EXPORT_SYMBOL_GPL vmlinux 0x74a22bb4 k3_udma_glue_push_rx_chn -EXPORT_SYMBOL_GPL vmlinux 0x74b3b36e ipv6_bpf_stub +EXPORT_SYMBOL_GPL vmlinux 0x74b53781 tty_buffer_set_limit EXPORT_SYMBOL_GPL vmlinux 0x74b5ea68 lcm_not_zero EXPORT_SYMBOL_GPL vmlinux 0x74baf17a tracing_is_on -EXPORT_SYMBOL_GPL vmlinux 0x74c67786 validate_xmit_skb_list +EXPORT_SYMBOL_GPL vmlinux 0x74bf1234 crypto_alloc_kpp +EXPORT_SYMBOL_GPL vmlinux 0x74c320e9 debugfs_rename EXPORT_SYMBOL_GPL vmlinux 0x74c7bffa stack_trace_snprint -EXPORT_SYMBOL_GPL vmlinux 0x74ca2710 dpcon_reset -EXPORT_SYMBOL_GPL vmlinux 0x74cae486 serdev_device_set_baudrate -EXPORT_SYMBOL_GPL vmlinux 0x74e402c9 ata_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0x74d08ae2 skb_zerocopy_iter_dgram EXPORT_SYMBOL_GPL vmlinux 0x74e73871 housekeeping_overridden -EXPORT_SYMBOL_GPL vmlinux 0x74eebab3 inet_csk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x74eebdb6 skb_zerocopy_headlen -EXPORT_SYMBOL_GPL vmlinux 0x750b64f0 gnttab_unmap_refs_sync +EXPORT_SYMBOL_GPL vmlinux 0x74fad15f dma_free_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x750705bd gpiochip_unlock_as_irq EXPORT_SYMBOL_GPL vmlinux 0x75133f6e visitor128 -EXPORT_SYMBOL_GPL vmlinux 0x75177011 blk_mq_hctx_set_fq_lock_class +EXPORT_SYMBOL_GPL vmlinux 0x751dc7c4 pm_generic_poweroff_late EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status -EXPORT_SYMBOL_GPL vmlinux 0x7528cd5e dma_get_merge_boundary -EXPORT_SYMBOL_GPL vmlinux 0x7532bcdc usb_set_interface -EXPORT_SYMBOL_GPL vmlinux 0x7536aaa1 acpi_get_first_physical_node -EXPORT_SYMBOL_GPL vmlinux 0x75385ede fscrypt_set_bio_crypt_ctx_bh -EXPORT_SYMBOL_GPL vmlinux 0x753c5561 ohci_setup -EXPORT_SYMBOL_GPL vmlinux 0x753e7136 mmu_interval_notifier_insert_locked -EXPORT_SYMBOL_GPL vmlinux 0x7551cab8 ahci_platform_resume_host -EXPORT_SYMBOL_GPL vmlinux 0x755584e7 uhci_check_and_reset_hc -EXPORT_SYMBOL_GPL vmlinux 0x7567805e k3_udma_glue_request_rx_chn -EXPORT_SYMBOL_GPL vmlinux 0x7576a558 ip_build_and_send_pkt -EXPORT_SYMBOL_GPL vmlinux 0x75781e07 dma_buf_unpin -EXPORT_SYMBOL_GPL vmlinux 0x7579ffc4 pci_set_cacheline_size -EXPORT_SYMBOL_GPL vmlinux 0x757f0dd1 dev_pm_opp_sync_regulators +EXPORT_SYMBOL_GPL vmlinux 0x752e2f0f ata_sff_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0x75314aa3 platform_irqchip_probe +EXPORT_SYMBOL_GPL vmlinux 0x753241cd fb_deferred_io_fsync +EXPORT_SYMBOL_GPL vmlinux 0x755943e9 meson_pinctrl_probe +EXPORT_SYMBOL_GPL vmlinux 0x755a0f04 devm_usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0x755cba18 usb_ep0_reinit +EXPORT_SYMBOL_GPL vmlinux 0x756138cf mtk_pinconf_adv_drive_set_raw EXPORT_SYMBOL_GPL vmlinux 0x7587986b synchronize_srcu EXPORT_SYMBOL_GPL vmlinux 0x758a43fe k3_ringacc_get_ring_irq_num +EXPORT_SYMBOL_GPL vmlinux 0x758f1ced clk_hw_get_flags EXPORT_SYMBOL_GPL vmlinux 0x759139cb of_pci_check_probe_only EXPORT_SYMBOL_GPL vmlinux 0x759bfe36 btree_destroy -EXPORT_SYMBOL_GPL vmlinux 0x75a233c4 __crypto_alloc_tfm -EXPORT_SYMBOL_GPL vmlinux 0x75a8f24a nl_table -EXPORT_SYMBOL_GPL vmlinux 0x75c87c28 ata_dummy_port_info -EXPORT_SYMBOL_GPL vmlinux 0x75c8a04a __traceiter_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0x759c2e53 tpm2_get_tpm_pt +EXPORT_SYMBOL_GPL vmlinux 0x75caa291 tpm_default_chip EXPORT_SYMBOL_GPL vmlinux 0x75cbfb09 add_interrupt_randomness -EXPORT_SYMBOL_GPL vmlinux 0x75cc1ba0 fuse_sync_release -EXPORT_SYMBOL_GPL vmlinux 0x75ce3363 cpufreq_register_governor -EXPORT_SYMBOL_GPL vmlinux 0x75d2e66d is_skb_forwardable EXPORT_SYMBOL_GPL vmlinux 0x75d968ee cleanup_srcu_struct -EXPORT_SYMBOL_GPL vmlinux 0x75d9a674 paste_selection EXPORT_SYMBOL_GPL vmlinux 0x75dd4ebe of_overlay_remove -EXPORT_SYMBOL_GPL vmlinux 0x75dd8252 sata_pmp_qc_defer_cmd_switch -EXPORT_SYMBOL_GPL vmlinux 0x75e3416d mtk_pinconf_adv_drive_get EXPORT_SYMBOL_GPL vmlinux 0x75e51945 __SCK__tp_func_error_report_end EXPORT_SYMBOL_GPL vmlinux 0x75e9c735 pci_ats_disabled -EXPORT_SYMBOL_GPL vmlinux 0x75eac4d2 usb_pipe_type_check EXPORT_SYMBOL_GPL vmlinux 0x75f0e875 xas_store +EXPORT_SYMBOL_GPL vmlinux 0x75fb00b1 device_remove_file_self EXPORT_SYMBOL_GPL vmlinux 0x75fb9062 arch_timer_read_counter -EXPORT_SYMBOL_GPL vmlinux 0x75fce851 ip_local_out -EXPORT_SYMBOL_GPL vmlinux 0x760bdc6f gfn_to_page_many_atomic -EXPORT_SYMBOL_GPL vmlinux 0x763632da fwnode_count_parents -EXPORT_SYMBOL_GPL vmlinux 0x7641d990 of_changeset_action -EXPORT_SYMBOL_GPL vmlinux 0x7642d9be tun_get_tx_ring +EXPORT_SYMBOL_GPL vmlinux 0x760ea263 tpm1_do_selftest +EXPORT_SYMBOL_GPL vmlinux 0x761f6142 nvmem_cell_read_u64 +EXPORT_SYMBOL_GPL vmlinux 0x762b4671 acpi_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0x7636cfb0 fwnode_property_get_reference_args EXPORT_SYMBOL_GPL vmlinux 0x764ffefa page_reporting_register -EXPORT_SYMBOL_GPL vmlinux 0x766567aa spi_mem_dirmap_write +EXPORT_SYMBOL_GPL vmlinux 0x76505711 dm_table_set_type +EXPORT_SYMBOL_GPL vmlinux 0x76619662 input_class EXPORT_SYMBOL_GPL vmlinux 0x7665a95b idr_remove EXPORT_SYMBOL_GPL vmlinux 0x7665ee72 crypto_dh_decode_key -EXPORT_SYMBOL_GPL vmlinux 0x76701402 gpiod_put_array -EXPORT_SYMBOL_GPL vmlinux 0x76759b42 dev_forward_skb -EXPORT_SYMBOL_GPL vmlinux 0x767999a5 serdev_device_write_flush +EXPORT_SYMBOL_GPL vmlinux 0x766e73d0 fat_setattr EXPORT_SYMBOL_GPL vmlinux 0x7681946c unregister_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x76879a20 kvm_is_visible_gfn +EXPORT_SYMBOL_GPL vmlinux 0x768d1873 __fscrypt_prepare_link EXPORT_SYMBOL_GPL vmlinux 0x769cefb5 percpu_ref_switch_to_atomic EXPORT_SYMBOL_GPL vmlinux 0x769dec6a srcu_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0x76a50ec6 rtc_set_time -EXPORT_SYMBOL_GPL vmlinux 0x76bf0dd3 cgroup_get_from_fd +EXPORT_SYMBOL_GPL vmlinux 0x76ae2c4d md_submit_discard_bio +EXPORT_SYMBOL_GPL vmlinux 0x76b0a293 rockchip_pcie_parse_dt +EXPORT_SYMBOL_GPL vmlinux 0x76b20122 regulator_get_hardware_vsel_register +EXPORT_SYMBOL_GPL vmlinux 0x76b5c03a rtc_class_close +EXPORT_SYMBOL_GPL vmlinux 0x76c36201 bpf_trace_run12 +EXPORT_SYMBOL_GPL vmlinux 0x76c3c1d7 fwnode_graph_get_port_parent EXPORT_SYMBOL_GPL vmlinux 0x76d680f6 acpi_dev_resource_memory EXPORT_SYMBOL_GPL vmlinux 0x76d9b876 clk_set_rate +EXPORT_SYMBOL_GPL vmlinux 0x76e1da6d irq_domain_reset_irq_data EXPORT_SYMBOL_GPL vmlinux 0x76e85b92 gnttab_request_free_callback EXPORT_SYMBOL_GPL vmlinux 0x76eeeb0f sha384_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x76f0b0f2 dma_mmap_noncontiguous -EXPORT_SYMBOL_GPL vmlinux 0x76f72476 irq_domain_create_legacy -EXPORT_SYMBOL_GPL vmlinux 0x76fae987 __traceiter_neigh_timer_handler -EXPORT_SYMBOL_GPL vmlinux 0x76fc7032 i2c_adapter_type -EXPORT_SYMBOL_GPL vmlinux 0x770b8e1c usb_autopm_get_interface_no_resume +EXPORT_SYMBOL_GPL vmlinux 0x7700249b rio_local_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x77069067 dev_pm_opp_remove_all_dynamic +EXPORT_SYMBOL_GPL vmlinux 0x7710e931 tegra_mc_get_emem_device_count +EXPORT_SYMBOL_GPL vmlinux 0x77118a75 ping_bind EXPORT_SYMBOL_GPL vmlinux 0x7712771a unbind_from_irqhandler +EXPORT_SYMBOL_GPL vmlinux 0x771875ef power_supply_get_drvdata EXPORT_SYMBOL_GPL vmlinux 0x77222306 ring_buffer_read_page EXPORT_SYMBOL_GPL vmlinux 0x7729cbdd task_handoff_register EXPORT_SYMBOL_GPL vmlinux 0x772b0f64 __wake_up_pollfree -EXPORT_SYMBOL_GPL vmlinux 0x77357a8b netif_carrier_event -EXPORT_SYMBOL_GPL vmlinux 0x774a2979 __raw_v4_lookup +EXPORT_SYMBOL_GPL vmlinux 0x772f305c netdev_walk_all_lower_dev +EXPORT_SYMBOL_GPL vmlinux 0x774626b7 max8997_read_reg +EXPORT_SYMBOL_GPL vmlinux 0x774caa73 gpiochip_populate_parent_fwspec_fourcell EXPORT_SYMBOL_GPL vmlinux 0x774f16ef __tracepoint_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0x77540c56 task_cputime_adjusted EXPORT_SYMBOL_GPL vmlinux 0x7757b51a clk_unregister -EXPORT_SYMBOL_GPL vmlinux 0x7770a590 serial8250_rx_dma_flush -EXPORT_SYMBOL_GPL vmlinux 0x77874d89 subsys_system_register +EXPORT_SYMBOL_GPL vmlinux 0x775e5c7c sk_msg_free +EXPORT_SYMBOL_GPL vmlinux 0x775fa52d devres_find +EXPORT_SYMBOL_GPL vmlinux 0x7775dc3c ata_sff_dma_pause +EXPORT_SYMBOL_GPL vmlinux 0x777b8076 ata_std_qc_defer +EXPORT_SYMBOL_GPL vmlinux 0x778e947b regulator_set_current_limit_regmap EXPORT_SYMBOL_GPL vmlinux 0x7791e066 dw_pcie_read -EXPORT_SYMBOL_GPL vmlinux 0x77990dfa lp8788_read_byte -EXPORT_SYMBOL_GPL vmlinux 0x779dc677 clk_hw_unregister_divider +EXPORT_SYMBOL_GPL vmlinux 0x77ab74e0 bd_prepare_to_claim EXPORT_SYMBOL_GPL vmlinux 0x77ae495d usb_speed_string -EXPORT_SYMBOL_GPL vmlinux 0x77b2f6d3 __xdp_build_skb_from_frame -EXPORT_SYMBOL_GPL vmlinux 0x77c01769 ata_cable_sata -EXPORT_SYMBOL_GPL vmlinux 0x77ca7839 crypto_unregister_rng -EXPORT_SYMBOL_GPL vmlinux 0x77ca9932 usb_hcd_unlink_urb_from_ep -EXPORT_SYMBOL_GPL vmlinux 0x77d5717e usb_deregister_device_driver +EXPORT_SYMBOL_GPL vmlinux 0x77d9393e efivars_unregister +EXPORT_SYMBOL_GPL vmlinux 0x77e1e0e0 da903x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x77e663e0 usb_poison_urb EXPORT_SYMBOL_GPL vmlinux 0x77e75be3 sfp_bus_put -EXPORT_SYMBOL_GPL vmlinux 0x77e99170 inet6_hash EXPORT_SYMBOL_GPL vmlinux 0x77ecf68d memalloc_socks_key -EXPORT_SYMBOL_GPL vmlinux 0x77f846d0 tegra_mc_probe_device -EXPORT_SYMBOL_GPL vmlinux 0x7841a37c dma_can_mmap -EXPORT_SYMBOL_GPL vmlinux 0x784d6c51 iommu_dev_enable_feature -EXPORT_SYMBOL_GPL vmlinux 0x7855d19e k3_udma_glue_rx_get_dma_device -EXPORT_SYMBOL_GPL vmlinux 0x78563a7a hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x77ed644e divider_ro_round_rate_parent +EXPORT_SYMBOL_GPL vmlinux 0x77f054e9 tcp_is_ulp_esp +EXPORT_SYMBOL_GPL vmlinux 0x77f21a00 rio_mport_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x78074934 platform_msi_domain_free_irqs +EXPORT_SYMBOL_GPL vmlinux 0x78158b16 acpi_initialize_hp_context +EXPORT_SYMBOL_GPL vmlinux 0x782f2c90 irq_domain_translate_twocell +EXPORT_SYMBOL_GPL vmlinux 0x782ff099 nvdimm_pmem_region_create +EXPORT_SYMBOL_GPL vmlinux 0x7833d404 blk_bio_list_merge +EXPORT_SYMBOL_GPL vmlinux 0x7841ad8b simple_attr_write +EXPORT_SYMBOL_GPL vmlinux 0x78468089 cpci_hp_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0x7848cfda __irq_set_handler +EXPORT_SYMBOL_GPL vmlinux 0x784df3ce pcie_port_find_device EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available -EXPORT_SYMBOL_GPL vmlinux 0x785f9096 spi_mem_default_supports_op -EXPORT_SYMBOL_GPL vmlinux 0x786bde83 devres_add -EXPORT_SYMBOL_GPL vmlinux 0x786d39d9 css_next_descendant_pre -EXPORT_SYMBOL_GPL vmlinux 0x787045ee of_dma_router_register -EXPORT_SYMBOL_GPL vmlinux 0x7871cc39 devm_free_pages -EXPORT_SYMBOL_GPL vmlinux 0x7871e6d2 ata_sas_port_init -EXPORT_SYMBOL_GPL vmlinux 0x7876a36b mmc_switch +EXPORT_SYMBOL_GPL vmlinux 0x787812d9 wbt_disable_default EXPORT_SYMBOL_GPL vmlinux 0x787c882b lzo1x_1_compress +EXPORT_SYMBOL_GPL vmlinux 0x788a3baf vring_new_virtqueue EXPORT_SYMBOL_GPL vmlinux 0x788bfbad ring_buffer_empty +EXPORT_SYMBOL_GPL vmlinux 0x7896b0ec transport_setup_device +EXPORT_SYMBOL_GPL vmlinux 0x789aed4a ata_msleep EXPORT_SYMBOL_GPL vmlinux 0x789c73d9 rcu_cpu_stall_suppress_at_boot -EXPORT_SYMBOL_GPL vmlinux 0x78aa73dc __irq_domain_add -EXPORT_SYMBOL_GPL vmlinux 0x78c01205 pci_user_write_config_word -EXPORT_SYMBOL_GPL vmlinux 0x78d332d1 __kthread_should_park +EXPORT_SYMBOL_GPL vmlinux 0x789ed86e gpiochip_irq_map +EXPORT_SYMBOL_GPL vmlinux 0x78b0165b wakeup_source_register +EXPORT_SYMBOL_GPL vmlinux 0x78bf9ab0 get_net_ns_by_pid +EXPORT_SYMBOL_GPL vmlinux 0x78c28d8f usb_autopm_get_interface +EXPORT_SYMBOL_GPL vmlinux 0x78cf2cf6 regulator_register EXPORT_SYMBOL_GPL vmlinux 0x78ddb76b dmi_match -EXPORT_SYMBOL_GPL vmlinux 0x78e347d9 vfs_test_lock -EXPORT_SYMBOL_GPL vmlinux 0x78e6a910 tpm2_probe -EXPORT_SYMBOL_GPL vmlinux 0x78fba362 tty_mode_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x7906a681 fsnotify_get_group EXPORT_SYMBOL_GPL vmlinux 0x790be0b9 usb_bus_idr EXPORT_SYMBOL_GPL vmlinux 0x7918d817 memory_failure -EXPORT_SYMBOL_GPL vmlinux 0x791a46f4 udp4_hwcsum -EXPORT_SYMBOL_GPL vmlinux 0x792dba72 ata_pci_sff_prepare_host -EXPORT_SYMBOL_GPL vmlinux 0x79317d4a __traceiter_devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0x7926f64d devm_namespace_enable +EXPORT_SYMBOL_GPL vmlinux 0x792b658e md_do_sync 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 0x793fed59 kset_find_obj EXPORT_SYMBOL_GPL vmlinux 0x7944e0fc tracing_off EXPORT_SYMBOL_GPL vmlinux 0x79470a2c TSS_authhmac EXPORT_SYMBOL_GPL vmlinux 0x794a0461 rockchip_pcie_disable_clocks EXPORT_SYMBOL_GPL vmlinux 0x794b7271 orderly_reboot -EXPORT_SYMBOL_GPL vmlinux 0x794ce621 skb_complete_wifi_ack -EXPORT_SYMBOL_GPL vmlinux 0x7952e4d6 irq_domain_xlate_twocell -EXPORT_SYMBOL_GPL vmlinux 0x79693cc4 usb_hcd_pci_remove -EXPORT_SYMBOL_GPL vmlinux 0x797a1e3d nd_region_provider_data -EXPORT_SYMBOL_GPL vmlinux 0x797d07d4 dev_attr_em_message_type -EXPORT_SYMBOL_GPL vmlinux 0x797f3e63 class_dev_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0x7989e4ac regulator_get_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0x796307fc find_get_pid +EXPORT_SYMBOL_GPL vmlinux 0x796e16de of_genpd_add_provider_onecell EXPORT_SYMBOL_GPL vmlinux 0x798b7682 klist_prev -EXPORT_SYMBOL_GPL vmlinux 0x7996ca19 qcom_smem_state_register -EXPORT_SYMBOL_GPL vmlinux 0x79a4d28a devm_kmemdup -EXPORT_SYMBOL_GPL vmlinux 0x79a98701 kthread_use_mm -EXPORT_SYMBOL_GPL vmlinux 0x79b06598 devlink_params_unpublish +EXPORT_SYMBOL_GPL vmlinux 0x798ec6c8 __inet_inherit_port +EXPORT_SYMBOL_GPL vmlinux 0x799bbbb3 raw_abort +EXPORT_SYMBOL_GPL vmlinux 0x79a5bb82 da9052_adc_read_temp EXPORT_SYMBOL_GPL vmlinux 0x79bc842c usb_anchor_suspend_wakeups -EXPORT_SYMBOL_GPL vmlinux 0x79ddefaa fscrypt_prepare_symlink +EXPORT_SYMBOL_GPL vmlinux 0x79c48158 call_switchdev_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x79cf41f2 blk_poll EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park -EXPORT_SYMBOL_GPL vmlinux 0x79e47c2f crypto_stats_get -EXPORT_SYMBOL_GPL vmlinux 0x79efe827 locks_alloc_lock +EXPORT_SYMBOL_GPL vmlinux 0x79e25979 pm_genpd_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x79f14d04 devlink_param_value_changed EXPORT_SYMBOL_GPL vmlinux 0x79f697e4 lzorle1x_1_compress -EXPORT_SYMBOL_GPL vmlinux 0x79f79da4 dma_alloc_pages -EXPORT_SYMBOL_GPL vmlinux 0x79f9ec47 acct_bioset_exit -EXPORT_SYMBOL_GPL vmlinux 0x7a289e04 dev_get_tstats64 +EXPORT_SYMBOL_GPL vmlinux 0x79fa4140 i2c_acpi_client_count +EXPORT_SYMBOL_GPL vmlinux 0x7a03f799 rio_release_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0x7a0ba0c8 regmap_register_patch +EXPORT_SYMBOL_GPL vmlinux 0x7a17bedf rio_release_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x7a1baf32 iommu_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x7a29524f fixed_phy_set_link_update +EXPORT_SYMBOL_GPL vmlinux 0x7a32a9ec gpiod_set_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x7a33dbe1 of_get_required_opp_performance_state EXPORT_SYMBOL_GPL vmlinux 0x7a33f504 power_supply_find_ocv2cap_table -EXPORT_SYMBOL_GPL vmlinux 0x7a43e837 fwnode_handle_get -EXPORT_SYMBOL_GPL vmlinux 0x7a44a807 pskb_put +EXPORT_SYMBOL_GPL vmlinux 0x7a35974b da903x_write +EXPORT_SYMBOL_GPL vmlinux 0x7a50035a fixup_user_fault +EXPORT_SYMBOL_GPL vmlinux 0x7a640056 ata_host_register EXPORT_SYMBOL_GPL vmlinux 0x7a672569 xen_xlate_map_ballooned_pages -EXPORT_SYMBOL_GPL vmlinux 0x7a67695c i2c_new_smbus_alert_device -EXPORT_SYMBOL_GPL vmlinux 0x7a6878ce __netpoll_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x7a6a62df acpi_device_uevent_modalias +EXPORT_SYMBOL_GPL vmlinux 0x7a70c1f1 wbc_account_cgroup_owner EXPORT_SYMBOL_GPL vmlinux 0x7a73e605 wm831x_isinkv_values -EXPORT_SYMBOL_GPL vmlinux 0x7a7d4ba0 devm_create_dev_dax EXPORT_SYMBOL_GPL vmlinux 0x7a81541b async_synchronize_cookie +EXPORT_SYMBOL_GPL vmlinux 0x7a85fef7 tty_buffer_request_room +EXPORT_SYMBOL_GPL vmlinux 0x7a8d56b0 rio_enable_rx_tx_port +EXPORT_SYMBOL_GPL vmlinux 0x7a91461c skb_copy_ubufs EXPORT_SYMBOL_GPL vmlinux 0x7a944007 rcu_idle_enter +EXPORT_SYMBOL_GPL vmlinux 0x7a98e82e acpi_dma_controller_free EXPORT_SYMBOL_GPL vmlinux 0x7a98f4b4 copy_from_user_nofault -EXPORT_SYMBOL_GPL vmlinux 0x7a9d55cd ata_do_dev_read_id EXPORT_SYMBOL_GPL vmlinux 0x7a9e4c23 software_node_register_node_group -EXPORT_SYMBOL_GPL vmlinux 0x7abce075 blk_ksm_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7aa2c72a crypto_stats_akcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x7aa705f1 stmpe_disable +EXPORT_SYMBOL_GPL vmlinux 0x7aab540c kvm_release_page_clean +EXPORT_SYMBOL_GPL vmlinux 0x7ac0bd2b __class_register EXPORT_SYMBOL_GPL vmlinux 0x7ac10ad8 icst_clk_register EXPORT_SYMBOL_GPL vmlinux 0x7ac722bd phy_all_ports_features_array +EXPORT_SYMBOL_GPL vmlinux 0x7acf42ba usb_enable_autosuspend 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 0x7ade997f disk_force_media_change -EXPORT_SYMBOL_GPL vmlinux 0x7af87ec1 kvm_make_all_cpus_request -EXPORT_SYMBOL_GPL vmlinux 0x7af9aee6 crypto_ahash_digest -EXPORT_SYMBOL_GPL vmlinux 0x7afc2784 __regmap_init +EXPORT_SYMBOL_GPL vmlinux 0x7ad64900 regulator_is_equal +EXPORT_SYMBOL_GPL vmlinux 0x7ada9d69 dm_noflush_suspending +EXPORT_SYMBOL_GPL vmlinux 0x7adaf989 device_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x7ae99fb2 md_find_rdev_nr_rcu EXPORT_SYMBOL_GPL vmlinux 0x7afcb7db __kprobe_event_add_fields EXPORT_SYMBOL_GPL vmlinux 0x7afe324e halt_poll_ns_grow -EXPORT_SYMBOL_GPL vmlinux 0x7b01c107 vfs_setxattr -EXPORT_SYMBOL_GPL vmlinux 0x7b07c63c xenbus_map_ring_valloc -EXPORT_SYMBOL_GPL vmlinux 0x7b0fcb76 pm_clk_init +EXPORT_SYMBOL_GPL vmlinux 0x7b0527e7 wm831x_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0x7b13493c regulator_get_current_limit EXPORT_SYMBOL_GPL vmlinux 0x7b178afe unlock_system_sleep +EXPORT_SYMBOL_GPL vmlinux 0x7b19f37b bgmac_phy_connect_direct EXPORT_SYMBOL_GPL vmlinux 0x7b2163bd HYPERVISOR_tmem_op -EXPORT_SYMBOL_GPL vmlinux 0x7b3d0dac tegra_bpmp_mrq_return -EXPORT_SYMBOL_GPL vmlinux 0x7b409a92 ahci_handle_port_intr -EXPORT_SYMBOL_GPL vmlinux 0x7b41bd72 security_path_chmod +EXPORT_SYMBOL_GPL vmlinux 0x7b21e8d5 pci_generic_config_read +EXPORT_SYMBOL_GPL vmlinux 0x7b32f797 gpiod_get_value +EXPORT_SYMBOL_GPL vmlinux 0x7b34af71 ahci_stop_engine +EXPORT_SYMBOL_GPL vmlinux 0x7b356728 of_mpc8xxx_spi_probe +EXPORT_SYMBOL_GPL vmlinux 0x7b43cd54 cpci_hp_register_controller +EXPORT_SYMBOL_GPL vmlinux 0x7b4a0efd of_phy_get EXPORT_SYMBOL_GPL vmlinux 0x7b5452b8 acpi_unregister_gsi +EXPORT_SYMBOL_GPL vmlinux 0x7b58fff7 irq_chip_retrigger_hierarchy EXPORT_SYMBOL_GPL vmlinux 0x7b5a4926 sha1_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x7b68dffe tpm_chip_alloc -EXPORT_SYMBOL_GPL vmlinux 0x7b6f7d54 blk_ksm_reprogram_all_keys +EXPORT_SYMBOL_GPL vmlinux 0x7b6ae56a led_init_default_state_get +EXPORT_SYMBOL_GPL vmlinux 0x7b6f8312 dma_mmap_noncontiguous EXPORT_SYMBOL_GPL vmlinux 0x7b6f9536 acpi_register_wakeup_handler -EXPORT_SYMBOL_GPL vmlinux 0x7b7a9fa4 serial8250_modem_status -EXPORT_SYMBOL_GPL vmlinux 0x7b8dff89 crypto_register_acomps +EXPORT_SYMBOL_GPL vmlinux 0x7b73c710 pci_enable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x7b876aea ata_pci_bmdma_prepare_host EXPORT_SYMBOL_GPL vmlinux 0x7b8ea197 ethtool_params_from_link_mode EXPORT_SYMBOL_GPL vmlinux 0x7b90d1a9 bind_virq_to_irqhandler -EXPORT_SYMBOL_GPL vmlinux 0x7b93db79 __dax_driver_register EXPORT_SYMBOL_GPL vmlinux 0x7b9793a2 get_cpu_idle_time_us -EXPORT_SYMBOL_GPL vmlinux 0x7b9d82e4 ethnl_cable_test_finished -EXPORT_SYMBOL_GPL vmlinux 0x7bac9662 gpiochip_irqchip_irq_valid +EXPORT_SYMBOL_GPL vmlinux 0x7ba8ced1 device_get_named_child_node EXPORT_SYMBOL_GPL vmlinux 0x7bb045a7 __request_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0x7bbd3844 phy_pm_runtime_allow -EXPORT_SYMBOL_GPL vmlinux 0x7bc8d081 pinctrl_generic_get_group_name -EXPORT_SYMBOL_GPL vmlinux 0x7bcf8a76 bgmac_enet_resume -EXPORT_SYMBOL_GPL vmlinux 0x7bd44158 clk_register_fixed_rate -EXPORT_SYMBOL_GPL vmlinux 0x7be8b890 ata_pio_need_iordy -EXPORT_SYMBOL_GPL vmlinux 0x7beb08cb dw_pcie_ep_init -EXPORT_SYMBOL_GPL vmlinux 0x7c00d3a2 tty_encode_baud_rate -EXPORT_SYMBOL_GPL vmlinux 0x7c04b2d0 sdio_retune_release -EXPORT_SYMBOL_GPL vmlinux 0x7c1dd23c xenbus_watch_pathfmt -EXPORT_SYMBOL_GPL vmlinux 0x7c1f0a50 led_trigger_remove -EXPORT_SYMBOL_GPL vmlinux 0x7c2443f6 of_genpd_add_provider_onecell +EXPORT_SYMBOL_GPL vmlinux 0x7bb3a6bf usb_interrupt_msg +EXPORT_SYMBOL_GPL vmlinux 0x7bd161ca pci_bridge_secondary_bus_reset +EXPORT_SYMBOL_GPL vmlinux 0x7bf0a68e __hwspin_trylock +EXPORT_SYMBOL_GPL vmlinux 0x7bf12389 __udp_enqueue_schedule_skb +EXPORT_SYMBOL_GPL vmlinux 0x7bf237fc virtio_max_dma_size +EXPORT_SYMBOL_GPL vmlinux 0x7bfb1b5d blk_queue_rq_timeout +EXPORT_SYMBOL_GPL vmlinux 0x7c003efe gov_attr_set_put +EXPORT_SYMBOL_GPL vmlinux 0x7c0b8fee preempt_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x7c15fc9c pci_find_ht_capability EXPORT_SYMBOL_GPL vmlinux 0x7c291e86 show_rcu_tasks_trace_gp_kthread +EXPORT_SYMBOL_GPL vmlinux 0x7c2ce82a led_set_brightness_sync +EXPORT_SYMBOL_GPL vmlinux 0x7c35de76 vchan_tx_submit EXPORT_SYMBOL_GPL vmlinux 0x7c3d8a4b icc_bulk_put -EXPORT_SYMBOL_GPL vmlinux 0x7c498d49 usb_lock_device_for_reset -EXPORT_SYMBOL_GPL vmlinux 0x7c4e929a pcie_port_find_device -EXPORT_SYMBOL_GPL vmlinux 0x7c53c7cc gpiochip_get_desc -EXPORT_SYMBOL_GPL vmlinux 0x7c5c43b9 regulator_get_current_limit_regmap -EXPORT_SYMBOL_GPL vmlinux 0x7c5cbb67 dax_layout_busy_page +EXPORT_SYMBOL_GPL vmlinux 0x7c4cd278 tpm_chip_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7c5cd5de extcon_sync EXPORT_SYMBOL_GPL vmlinux 0x7c5f3711 ioasid_unregister_allocator EXPORT_SYMBOL_GPL vmlinux 0x7c626556 list_lru_destroy -EXPORT_SYMBOL_GPL vmlinux 0x7c7cf823 regmap_reinit_cache -EXPORT_SYMBOL_GPL vmlinux 0x7c818b21 i2c_dw_prepare_clk +EXPORT_SYMBOL_GPL vmlinux 0x7c773acf fib6_get_table EXPORT_SYMBOL_GPL vmlinux 0x7c94c99a kvm_release_pfn_dirty EXPORT_SYMBOL_GPL vmlinux 0x7c983a5d dmi_walk EXPORT_SYMBOL_GPL vmlinux 0x7c9a7371 clk_prepare -EXPORT_SYMBOL_GPL vmlinux 0x7ca6e9fa of_msi_configure -EXPORT_SYMBOL_GPL vmlinux 0x7ca7bc33 regulator_bulk_set_supply_names +EXPORT_SYMBOL_GPL vmlinux 0x7ca53858 file_is_kvm EXPORT_SYMBOL_GPL vmlinux 0x7ca85256 ms_hyperv -EXPORT_SYMBOL_GPL vmlinux 0x7cb30413 irq_domain_push_irq EXPORT_SYMBOL_GPL vmlinux 0x7cb803de btree_grim_visitor -EXPORT_SYMBOL_GPL vmlinux 0x7cc1ca13 wakeup_source_register -EXPORT_SYMBOL_GPL vmlinux 0x7cc4f334 bus_get_device_klist -EXPORT_SYMBOL_GPL vmlinux 0x7cc9bc4e perf_trace_run_bpf_submit +EXPORT_SYMBOL_GPL vmlinux 0x7cc30324 gfn_to_hva +EXPORT_SYMBOL_GPL vmlinux 0x7cc780c2 pci_msi_create_irq_domain +EXPORT_SYMBOL_GPL vmlinux 0x7cca4b0d dprc_cleanup EXPORT_SYMBOL_GPL vmlinux 0x7cceaf92 zs_pool_stats -EXPORT_SYMBOL_GPL vmlinux 0x7cd6064e regulator_is_supported_voltage EXPORT_SYMBOL_GPL vmlinux 0x7cd6f042 cpufreq_get_current_driver -EXPORT_SYMBOL_GPL vmlinux 0x7cd71667 perf_event_period -EXPORT_SYMBOL_GPL vmlinux 0x7cd882a3 vp_modern_set_status -EXPORT_SYMBOL_GPL vmlinux 0x7ce12141 __fsnotify_inode_delete -EXPORT_SYMBOL_GPL vmlinux 0x7ce1b155 debugfs_create_symlink EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0x7ceb7696 tcp_bpf_update_proto -EXPORT_SYMBOL_GPL vmlinux 0x7cf37be1 get_pid_task -EXPORT_SYMBOL_GPL vmlinux 0x7cf90550 ata_bmdma_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x7cef7b0e devm_of_led_get EXPORT_SYMBOL_GPL vmlinux 0x7d00c65b nd_synchronize -EXPORT_SYMBOL_GPL vmlinux 0x7d040511 mmc_crypto_setup_queue -EXPORT_SYMBOL_GPL vmlinux 0x7d084d82 iopf_queue_flush_dev -EXPORT_SYMBOL_GPL vmlinux 0x7d0e2f0e acpi_match_device -EXPORT_SYMBOL_GPL vmlinux 0x7d143867 of_usb_host_tpl_support -EXPORT_SYMBOL_GPL vmlinux 0x7d154956 cros_ec_get_sensor_count +EXPORT_SYMBOL_GPL vmlinux 0x7d09ed57 wwan_register_ops +EXPORT_SYMBOL_GPL vmlinux 0x7d15324a ata_eh_analyze_ncq_error +EXPORT_SYMBOL_GPL vmlinux 0x7d1626d0 power_supply_unregister EXPORT_SYMBOL_GPL vmlinux 0x7d1bb1d4 tnum_strn -EXPORT_SYMBOL_GPL vmlinux 0x7d22de72 sock_diag_register_inet_compat -EXPORT_SYMBOL_GPL vmlinux 0x7d2587f6 of_nvmem_device_get -EXPORT_SYMBOL_GPL vmlinux 0x7d27e653 dev_pm_opp_unregister_set_opp_helper -EXPORT_SYMBOL_GPL vmlinux 0x7d28469f xhci_init_driver -EXPORT_SYMBOL_GPL vmlinux 0x7d289f4f devm_tegra_memory_controller_get -EXPORT_SYMBOL_GPL vmlinux 0x7d309620 iommu_uapi_cache_invalidate -EXPORT_SYMBOL_GPL vmlinux 0x7d34a788 acpi_pm_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0x7d25f9ad dev_pm_qos_hide_flags +EXPORT_SYMBOL_GPL vmlinux 0x7d265e7b kobj_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0x7d275235 acpi_dma_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0x7d33195e reset_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7d3de8a8 of_clk_del_provider +EXPORT_SYMBOL_GPL vmlinux 0x7d43d815 rt_mutex_unlock EXPORT_SYMBOL_GPL vmlinux 0x7d471321 zynqmp_pm_pinctrl_release EXPORT_SYMBOL_GPL vmlinux 0x7d491683 free_iova_fast +EXPORT_SYMBOL_GPL vmlinux 0x7d5857d0 devm_of_phy_get EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq -EXPORT_SYMBOL_GPL vmlinux 0x7d6cccca input_ff_erase -EXPORT_SYMBOL_GPL vmlinux 0x7d7655cf sched_trace_rq_nr_running -EXPORT_SYMBOL_GPL vmlinux 0x7da5a6e4 __clk_hw_register_divider -EXPORT_SYMBOL_GPL vmlinux 0x7da7275b devfreq_event_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0x7daa7206 tegra_bpmp_put -EXPORT_SYMBOL_GPL vmlinux 0x7db3f6bb crypto_register_acomp -EXPORT_SYMBOL_GPL vmlinux 0x7db9a485 of_pci_get_max_link_speed -EXPORT_SYMBOL_GPL vmlinux 0x7dba0e21 wp_shared_mapping_range -EXPORT_SYMBOL_GPL vmlinux 0x7dd0a145 fsl_mc_portal_reset -EXPORT_SYMBOL_GPL vmlinux 0x7dd2c759 thermal_zone_get_offset +EXPORT_SYMBOL_GPL vmlinux 0x7d5e1c62 platform_get_irq_byname_optional +EXPORT_SYMBOL_GPL vmlinux 0x7d63cab9 crypto_dequeue_request +EXPORT_SYMBOL_GPL vmlinux 0x7d6dbab3 bgpio_init +EXPORT_SYMBOL_GPL vmlinux 0x7d6dcda3 devm_led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0x7d70a7c2 usb_unlocked_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x7d728601 ip6_redirect +EXPORT_SYMBOL_GPL vmlinux 0x7daa1dc3 of_property_read_variable_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x7dc08b9a meson_pmx_get_funcs_count +EXPORT_SYMBOL_GPL vmlinux 0x7dc0ac79 devm_gpio_request_one +EXPORT_SYMBOL_GPL vmlinux 0x7dc4be55 tcp_get_info +EXPORT_SYMBOL_GPL vmlinux 0x7dd3a9d5 fsl_mc_bus_dpmcp_type EXPORT_SYMBOL_GPL vmlinux 0x7dda30af unregister_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7de17cbf irq_chip_request_resources_parent 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 0x7de783e2 inverse_translate -EXPORT_SYMBOL_GPL vmlinux 0x7de8ea1c led_blink_set -EXPORT_SYMBOL_GPL vmlinux 0x7dee2c13 mdio_mux_init -EXPORT_SYMBOL_GPL vmlinux 0x7dfcf34c regmap_get_val_endian -EXPORT_SYMBOL_GPL vmlinux 0x7dfe9180 driver_create_file -EXPORT_SYMBOL_GPL vmlinux 0x7e110572 devm_kfree -EXPORT_SYMBOL_GPL vmlinux 0x7e12cde5 dw_pcie_read_dbi -EXPORT_SYMBOL_GPL vmlinux 0x7e140c0c gfn_to_page -EXPORT_SYMBOL_GPL vmlinux 0x7e2171f2 sched_show_task -EXPORT_SYMBOL_GPL vmlinux 0x7e25010c of_irq_to_resource_table -EXPORT_SYMBOL_GPL vmlinux 0x7e374fc2 fscrypt_symlink_getattr -EXPORT_SYMBOL_GPL vmlinux 0x7e38b15f regmap_attach_dev +EXPORT_SYMBOL_GPL vmlinux 0x7df1558b fsl_mc_bus_dpni_type +EXPORT_SYMBOL_GPL vmlinux 0x7df6de2e acpi_processor_get_performance_info +EXPORT_SYMBOL_GPL vmlinux 0x7e07c6a4 switchdev_port_obj_del +EXPORT_SYMBOL_GPL vmlinux 0x7e181207 ksm_madvise +EXPORT_SYMBOL_GPL vmlinux 0x7e2f67fe pwm_capture EXPORT_SYMBOL_GPL vmlinux 0x7e3bdecd __ftrace_vprintk -EXPORT_SYMBOL_GPL vmlinux 0x7e4ed9e3 usb_hc_died -EXPORT_SYMBOL_GPL vmlinux 0x7e500d38 mddev_init_writes_pending -EXPORT_SYMBOL_GPL vmlinux 0x7e50b6f5 devm_clk_unregister EXPORT_SYMBOL_GPL vmlinux 0x7e5db80b pstore_name_to_type +EXPORT_SYMBOL_GPL vmlinux 0x7e61c647 dw_pcie_host_deinit +EXPORT_SYMBOL_GPL vmlinux 0x7e62b461 regulator_bulk_set_supply_names EXPORT_SYMBOL_GPL vmlinux 0x7e64181d usb_calc_bus_time -EXPORT_SYMBOL_GPL vmlinux 0x7e77283f i2c_probe_func_quick_read +EXPORT_SYMBOL_GPL vmlinux 0x7e741156 ata_host_start +EXPORT_SYMBOL_GPL vmlinux 0x7e791456 transport_add_device +EXPORT_SYMBOL_GPL vmlinux 0x7e79af36 clk_register_fixed_factor EXPORT_SYMBOL_GPL vmlinux 0x7e7a47c9 pci_acpi_clear_companion_lookup_hook EXPORT_SYMBOL_GPL vmlinux 0x7e7e3f58 ring_buffer_reset_cpu -EXPORT_SYMBOL_GPL vmlinux 0x7e844ac1 blk_mark_disk_dead -EXPORT_SYMBOL_GPL vmlinux 0x7e85bd88 xfrm_state_afinfo_get_rcu +EXPORT_SYMBOL_GPL vmlinux 0x7e8b2ec9 scsi_schedule_eh EXPORT_SYMBOL_GPL vmlinux 0x7e8d8619 usb_anchor_empty EXPORT_SYMBOL_GPL vmlinux 0x7e917894 __SCK__tp_func_unmap -EXPORT_SYMBOL_GPL vmlinux 0x7e9262bf dma_request_chan -EXPORT_SYMBOL_GPL vmlinux 0x7e986c9e scsi_queue_work -EXPORT_SYMBOL_GPL vmlinux 0x7ea10318 ahci_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x7e93e9bf iommu_sva_find +EXPORT_SYMBOL_GPL vmlinux 0x7e9991c8 devlink_port_param_driverinit_value_set +EXPORT_SYMBOL_GPL vmlinux 0x7e9c01f1 crypto_stats_get EXPORT_SYMBOL_GPL vmlinux 0x7ea75c24 __wake_up_locked_key_bookmark -EXPORT_SYMBOL_GPL vmlinux 0x7eac3fda acpi_dma_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0x7eaed933 regulator_set_voltage_time EXPORT_SYMBOL_GPL vmlinux 0x7eb1795e __tracepoint_detach_device_from_domain EXPORT_SYMBOL_GPL vmlinux 0x7eb808d0 add_cpu -EXPORT_SYMBOL_GPL vmlinux 0x7eba2d9b fat_add_entries +EXPORT_SYMBOL_GPL vmlinux 0x7ebf01c4 platform_device_register +EXPORT_SYMBOL_GPL vmlinux 0x7ec44a0b gpiod_set_config +EXPORT_SYMBOL_GPL vmlinux 0x7ec47832 fat_build_inode +EXPORT_SYMBOL_GPL vmlinux 0x7ec73d54 tty_port_link_device EXPORT_SYMBOL_GPL vmlinux 0x7ec814de inet_hashinfo_init -EXPORT_SYMBOL_GPL vmlinux 0x7ee30586 dev_err_probe +EXPORT_SYMBOL_GPL vmlinux 0x7ed3773a skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x7ed949cf ohci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0x7edad757 iomap_invalidatepage +EXPORT_SYMBOL_GPL vmlinux 0x7edb06a0 nvdimm_kobj +EXPORT_SYMBOL_GPL vmlinux 0x7edf00a6 debugfs_create_symlink EXPORT_SYMBOL_GPL vmlinux 0x7eea6b8b pcap_adc_async -EXPORT_SYMBOL_GPL vmlinux 0x7eeb1384 user_describe -EXPORT_SYMBOL_GPL vmlinux 0x7efc0731 kobject_rename -EXPORT_SYMBOL_GPL vmlinux 0x7f11572b rockchip_register_restart_notifier -EXPORT_SYMBOL_GPL vmlinux 0x7f2d857e fscrypt_prepare_new_inode -EXPORT_SYMBOL_GPL vmlinux 0x7f3aa2cf dax_finish_sync_fault -EXPORT_SYMBOL_GPL vmlinux 0x7f3d6079 dt_init_idle_driver -EXPORT_SYMBOL_GPL vmlinux 0x7f427543 virtio_add_status -EXPORT_SYMBOL_GPL vmlinux 0x7f468fc3 lwtunnel_fill_encap -EXPORT_SYMBOL_GPL vmlinux 0x7f608385 __traceiter_add_device_to_group -EXPORT_SYMBOL_GPL vmlinux 0x7f6ac078 usb_init_urb +EXPORT_SYMBOL_GPL vmlinux 0x7efb19a1 nfs42_ssc_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7f28d64f virtqueue_get_buf_ctx +EXPORT_SYMBOL_GPL vmlinux 0x7f382d0a sk_msg_free_nocharge +EXPORT_SYMBOL_GPL vmlinux 0x7f59809b ahci_platform_disable_phys EXPORT_SYMBOL_GPL vmlinux 0x7f6cee89 rhashtable_free_and_destroy -EXPORT_SYMBOL_GPL vmlinux 0x7f6fa2ed kstrdup_quotable_file -EXPORT_SYMBOL_GPL vmlinux 0x7f737115 devm_regulator_get_optional -EXPORT_SYMBOL_GPL vmlinux 0x7f74eadc usb_role_switch_find_by_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x7f781e36 ip_route_output_key_hash +EXPORT_SYMBOL_GPL vmlinux 0x7f77c626 fwnode_get_next_parent EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata -EXPORT_SYMBOL_GPL vmlinux 0x7f889e65 dma_vunmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x7f7e47af phy_package_join +EXPORT_SYMBOL_GPL vmlinux 0x7f8171e4 fwnode_count_parents +EXPORT_SYMBOL_GPL vmlinux 0x7fa61f99 __reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x7fa63046 genphy_c45_loopback +EXPORT_SYMBOL_GPL vmlinux 0x7fa74ee1 power_supply_class EXPORT_SYMBOL_GPL vmlinux 0x7fa96509 erst_get_record_id_next -EXPORT_SYMBOL_GPL vmlinux 0x7fa9cede platform_irq_count -EXPORT_SYMBOL_GPL vmlinux 0x7faa30e8 posix_clock_unregister -EXPORT_SYMBOL_GPL vmlinux 0x7fae7370 wm8350_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x7fb01263 led_sysfs_disable -EXPORT_SYMBOL_GPL vmlinux 0x7fb4a4bb aead_geniv_alloc -EXPORT_SYMBOL_GPL vmlinux 0x7fd02d91 __clk_hw_register_mux -EXPORT_SYMBOL_GPL vmlinux 0x7fdbd6cc arm64_mm_context_get +EXPORT_SYMBOL_GPL vmlinux 0x7fac4384 pci_disable_pri +EXPORT_SYMBOL_GPL vmlinux 0x7fb07eba ata_qc_get_active +EXPORT_SYMBOL_GPL vmlinux 0x7fbab68a device_create +EXPORT_SYMBOL_GPL vmlinux 0x7fc7581e acpi_spi_count_resources +EXPORT_SYMBOL_GPL vmlinux 0x7fdbc00e ata_std_bios_param +EXPORT_SYMBOL_GPL vmlinux 0x7fdee1aa ip6_route_lookup +EXPORT_SYMBOL_GPL vmlinux 0x7fe078c1 dev_fill_forward_path +EXPORT_SYMBOL_GPL vmlinux 0x7fe6e130 wwan_create_port EXPORT_SYMBOL_GPL vmlinux 0x7ff19c40 zynqmp_pm_set_requirement -EXPORT_SYMBOL_GPL vmlinux 0x7ff5f949 pinmux_generic_get_function_name +EXPORT_SYMBOL_GPL vmlinux 0x80010fd5 task_active_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x800ff13f __traceiter_neigh_update_done EXPORT_SYMBOL_GPL vmlinux 0x80135182 k3_ringacc_ring_pop_tail -EXPORT_SYMBOL_GPL vmlinux 0x80138fbd spi_statistics_add_transfer_stats -EXPORT_SYMBOL_GPL vmlinux 0x80167977 acpi_cppc_processor_probe -EXPORT_SYMBOL_GPL vmlinux 0x801bf7f4 sk_msg_memcopy_from_iter -EXPORT_SYMBOL_GPL vmlinux 0x8023d8c8 vfs_submount +EXPORT_SYMBOL_GPL vmlinux 0x802922cc mtk_pinconf_drive_get_rev1 +EXPORT_SYMBOL_GPL vmlinux 0x80355267 component_add_typed EXPORT_SYMBOL_GPL vmlinux 0x8035bed7 rockchip_clk_protect_critical -EXPORT_SYMBOL_GPL vmlinux 0x8036e933 mnt_want_write_file -EXPORT_SYMBOL_GPL vmlinux 0x805485d4 __traceiter_sched_cpu_capacity_tp +EXPORT_SYMBOL_GPL vmlinux 0x803b410d debugfs_create_u64 +EXPORT_SYMBOL_GPL vmlinux 0x80525fa7 synth_event_trace_array EXPORT_SYMBOL_GPL vmlinux 0x805667cf devlink_fmsg_u64_put +EXPORT_SYMBOL_GPL vmlinux 0x8056db3d dev_attr_unload_heads +EXPORT_SYMBOL_GPL vmlinux 0x805c23b2 linear_hugepage_index EXPORT_SYMBOL_GPL vmlinux 0x806327ea imx_clk_hw_cpu -EXPORT_SYMBOL_GPL vmlinux 0x806ab899 sysfs_add_link_to_group +EXPORT_SYMBOL_GPL vmlinux 0x80644be9 pci_vfs_assigned +EXPORT_SYMBOL_GPL vmlinux 0x806dd34b acpi_dma_configure_id EXPORT_SYMBOL_GPL vmlinux 0x807766ea usb_scuttle_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x807d489e unregister_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x807ba8fc __raw_v6_lookup EXPORT_SYMBOL_GPL vmlinux 0x807fdcc4 call_rcu_tasks_rude EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested -EXPORT_SYMBOL_GPL vmlinux 0x808fcdd9 devm_nvmem_cell_get -EXPORT_SYMBOL_GPL vmlinux 0x80a005d0 __traceiter_block_unplug -EXPORT_SYMBOL_GPL vmlinux 0x80a210f2 fib_rules_register +EXPORT_SYMBOL_GPL vmlinux 0x8090d19d pm_generic_thaw_early +EXPORT_SYMBOL_GPL vmlinux 0x8092c368 ehci_adjust_port_wakeup_flags +EXPORT_SYMBOL_GPL vmlinux 0x809d3994 __phy_modify_mmd_changed +EXPORT_SYMBOL_GPL vmlinux 0x80a200a4 sdio_release_irq +EXPORT_SYMBOL_GPL vmlinux 0x80b3b66d iommu_group_get EXPORT_SYMBOL_GPL vmlinux 0x80badff4 __tracepoint_block_unplug -EXPORT_SYMBOL_GPL vmlinux 0x80bb8b0d device_add -EXPORT_SYMBOL_GPL vmlinux 0x80bbc28b bpf_prog_inc -EXPORT_SYMBOL_GPL vmlinux 0x80bf36ce dma_buf_attach -EXPORT_SYMBOL_GPL vmlinux 0x80c56597 pm_runtime_force_resume +EXPORT_SYMBOL_GPL vmlinux 0x80bfd087 devm_phy_destroy EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close EXPORT_SYMBOL_GPL vmlinux 0x80d5e57a mpi_free -EXPORT_SYMBOL_GPL vmlinux 0x80f5849e fsl_mc_bus_dpseci_type -EXPORT_SYMBOL_GPL vmlinux 0x80f5cae8 pci_add_dynid -EXPORT_SYMBOL_GPL vmlinux 0x8104de4e uart_handle_dcd_change -EXPORT_SYMBOL_GPL vmlinux 0x8106cf6c virtio_break_device +EXPORT_SYMBOL_GPL vmlinux 0x80faecd8 pci_set_cacheline_size +EXPORT_SYMBOL_GPL vmlinux 0x80fb0655 nd_blk_region_set_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x81036d83 inet_hash +EXPORT_SYMBOL_GPL vmlinux 0x810be8cc imx_pinctrl_probe EXPORT_SYMBOL_GPL vmlinux 0x811dc334 usb_unregister_notify -EXPORT_SYMBOL_GPL vmlinux 0x812704cb phy_check_downshift -EXPORT_SYMBOL_GPL vmlinux 0x813bf2a9 ncsi_register_dev -EXPORT_SYMBOL_GPL vmlinux 0x813c4aa3 ata_port_wait_eh +EXPORT_SYMBOL_GPL vmlinux 0x811e303e gpio_to_desc +EXPORT_SYMBOL_GPL vmlinux 0x8126ade3 ata_sff_tf_read +EXPORT_SYMBOL_GPL vmlinux 0x8129da64 tps6586x_writes EXPORT_SYMBOL_GPL vmlinux 0x813cdf4a __free_iova -EXPORT_SYMBOL_GPL vmlinux 0x814f4461 __traceiter_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0x81414c12 irq_set_chained_handler_and_data EXPORT_SYMBOL_GPL vmlinux 0x815588a6 clk_enable -EXPORT_SYMBOL_GPL vmlinux 0x81593ead inet6_sk_rebuild_header +EXPORT_SYMBOL_GPL vmlinux 0x815e0772 tty_port_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x815f0cf6 dev_pm_opp_is_turbo EXPORT_SYMBOL_GPL vmlinux 0x815fda83 sed_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x81623570 ahci_check_ready +EXPORT_SYMBOL_GPL vmlinux 0x81660c82 kvm_vcpu_read_guest +EXPORT_SYMBOL_GPL vmlinux 0x81685c45 regulator_disable_deferred EXPORT_SYMBOL_GPL vmlinux 0x816a41ca cpufreq_update_limits -EXPORT_SYMBOL_GPL vmlinux 0x817915d5 wm831x_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0x816c133e dma_map_sgtable +EXPORT_SYMBOL_GPL vmlinux 0x817de447 security_kernel_read_file EXPORT_SYMBOL_GPL vmlinux 0x8180cede asn1_encode_sequence -EXPORT_SYMBOL_GPL vmlinux 0x819ad466 msg_zerocopy_alloc -EXPORT_SYMBOL_GPL vmlinux 0x819d3c91 uprobe_register_refctr +EXPORT_SYMBOL_GPL vmlinux 0x819b34c7 sysfs_rename_link_ns EXPORT_SYMBOL_GPL vmlinux 0x819d72cb klist_iter_exit EXPORT_SYMBOL_GPL vmlinux 0x81a7f541 percpu_ref_init EXPORT_SYMBOL_GPL vmlinux 0x81aa78d8 zynqmp_pm_aes_engine EXPORT_SYMBOL_GPL vmlinux 0x81b03377 efivar_entry_set_safe -EXPORT_SYMBOL_GPL vmlinux 0x81b954ec cpci_hp_unregister_controller -EXPORT_SYMBOL_GPL vmlinux 0x81e624e4 bus_create_file +EXPORT_SYMBOL_GPL vmlinux 0x81be9f75 blk_mq_debugfs_rq_show +EXPORT_SYMBOL_GPL vmlinux 0x81c1a606 ima_file_hash +EXPORT_SYMBOL_GPL vmlinux 0x81c3c54a devm_usb_get_phy_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x81cacab3 phy_get +EXPORT_SYMBOL_GPL vmlinux 0x81cfccd8 pci_add_dynid +EXPORT_SYMBOL_GPL vmlinux 0x81d41cd0 __rio_local_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x81d9caca usb_queue_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x81ee4644 dev_pm_opp_xlate_required_opp EXPORT_SYMBOL_GPL vmlinux 0x81f372a2 unregister_ftrace_export -EXPORT_SYMBOL_GPL vmlinux 0x81faacbf crypto_register_alg -EXPORT_SYMBOL_GPL vmlinux 0x8202f7f4 crypto_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x81f94210 blkcg_root +EXPORT_SYMBOL_GPL vmlinux 0x82079de3 i2c_dw_probe_master EXPORT_SYMBOL_GPL vmlinux 0x82092899 badrange_forget -EXPORT_SYMBOL_GPL vmlinux 0x820f67c4 perf_event_update_userpage -EXPORT_SYMBOL_GPL vmlinux 0x8212b285 tpm_try_get_ops -EXPORT_SYMBOL_GPL vmlinux 0x82131bdc usb_hcd_map_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x820d7aa6 locks_release_private +EXPORT_SYMBOL_GPL vmlinux 0x821cabb1 cgroup_path_ns EXPORT_SYMBOL_GPL vmlinux 0x8220a38e k3_ringacc_get_ring_id -EXPORT_SYMBOL_GPL vmlinux 0x82213bfd get_device_system_crosststamp +EXPORT_SYMBOL_GPL vmlinux 0x8220eb18 ehci_handshake EXPORT_SYMBOL_GPL vmlinux 0x82226c53 pinctrl_unregister_mappings -EXPORT_SYMBOL_GPL vmlinux 0x822c3ea2 iomap_releasepage +EXPORT_SYMBOL_GPL vmlinux 0x822b7061 mbox_chan_txdone +EXPORT_SYMBOL_GPL vmlinux 0x823610a0 usb_anchor_urb +EXPORT_SYMBOL_GPL vmlinux 0x823e9e2f ahci_platform_init_host EXPORT_SYMBOL_GPL vmlinux 0x823eae06 blocking_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x8244dbeb free_vm_area -EXPORT_SYMBOL_GPL vmlinux 0x8254154d iterate_mounts -EXPORT_SYMBOL_GPL vmlinux 0x8255d974 device_add_groups -EXPORT_SYMBOL_GPL vmlinux 0x8255fb34 pci_epc_stop -EXPORT_SYMBOL_GPL vmlinux 0x825d219e do_take_over_console -EXPORT_SYMBOL_GPL vmlinux 0x8276bf8e fib_rules_seq_read -EXPORT_SYMBOL_GPL vmlinux 0x8278a0e8 udp_abort -EXPORT_SYMBOL_GPL vmlinux 0x827c85c7 proc_create_net_data +EXPORT_SYMBOL_GPL vmlinux 0x8243d66f ata_sas_port_alloc +EXPORT_SYMBOL_GPL vmlinux 0x82448cf9 devm_irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x82617413 spi_setup +EXPORT_SYMBOL_GPL vmlinux 0x826d5d6d iommu_device_register EXPORT_SYMBOL_GPL vmlinux 0x827e61f8 acpi_has_watchdog -EXPORT_SYMBOL_GPL vmlinux 0x8284db3c rio_add_mport_pw_handler +EXPORT_SYMBOL_GPL vmlinux 0x8287671e fscrypt_ioctl_get_key_status +EXPORT_SYMBOL_GPL vmlinux 0x8287ec8f i2c_adapter_depth +EXPORT_SYMBOL_GPL vmlinux 0x828d696b task_cgroup_path EXPORT_SYMBOL_GPL vmlinux 0x828e22f4 hrtimer_forward -EXPORT_SYMBOL_GPL vmlinux 0x829ba8b9 scsi_build_sense -EXPORT_SYMBOL_GPL vmlinux 0x829bbdca shmem_read_mapping_page_gfp +EXPORT_SYMBOL_GPL vmlinux 0x829a961e regulator_list_voltage_linear EXPORT_SYMBOL_GPL vmlinux 0x82a80545 __SCK__tp_func_fdb_delete -EXPORT_SYMBOL_GPL vmlinux 0x82ac4b32 devm_fwnode_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x82b53d65 serdev_device_add +EXPORT_SYMBOL_GPL vmlinux 0x82bab59d __fscrypt_prepare_setattr EXPORT_SYMBOL_GPL vmlinux 0x82bbf30b __tracepoint_map -EXPORT_SYMBOL_GPL vmlinux 0x82c7a3eb usb_unlocked_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x82cf307b security_file_permission +EXPORT_SYMBOL_GPL vmlinux 0x82d4a32b crypto_unregister_acomps EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure -EXPORT_SYMBOL_GPL vmlinux 0x82e964c7 gpiochip_relres_irq -EXPORT_SYMBOL_GPL vmlinux 0x82eabbf5 regmap_add_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0x82eacbf6 devm_thermal_zone_of_sensor_register -EXPORT_SYMBOL_GPL vmlinux 0x830722d5 dw_pcie_find_capability +EXPORT_SYMBOL_GPL vmlinux 0x82e13c12 gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0x82ec68dd sock_map_close +EXPORT_SYMBOL_GPL vmlinux 0x82ecf9ec phy_exit +EXPORT_SYMBOL_GPL vmlinux 0x82fcae02 regulator_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x82fd586f mark_page_dirty_in_slot +EXPORT_SYMBOL_GPL vmlinux 0x82ffb294 pm_runtime_force_resume +EXPORT_SYMBOL_GPL vmlinux 0x830e0678 __udp_gso_segment EXPORT_SYMBOL_GPL vmlinux 0x83202334 alloc_iova_fast EXPORT_SYMBOL_GPL vmlinux 0x8339df73 klist_add_behind -EXPORT_SYMBOL_GPL vmlinux 0x833acd9d regulator_is_equal -EXPORT_SYMBOL_GPL vmlinux 0x8344bb5a led_set_brightness_nosleep -EXPORT_SYMBOL_GPL vmlinux 0x8346af68 alloc_empty_file +EXPORT_SYMBOL_GPL vmlinux 0x833d7465 ahci_kick_engine +EXPORT_SYMBOL_GPL vmlinux 0x83419e96 power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0x8342b182 kstrdup_quotable_cmdline EXPORT_SYMBOL_GPL vmlinux 0x8349a895 nvmem_device_put EXPORT_SYMBOL_GPL vmlinux 0x834ff60e start_poll_synchronize_srcu -EXPORT_SYMBOL_GPL vmlinux 0x835247d6 ata_sff_data_xfer32 EXPORT_SYMBOL_GPL vmlinux 0x8353dfff acpi_os_get_iomem -EXPORT_SYMBOL_GPL vmlinux 0x8368f0aa watchdog_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0x83834038 mmc_poll_for_busy -EXPORT_SYMBOL_GPL vmlinux 0x83a16dd6 inet6_csk_addr2sockaddr -EXPORT_SYMBOL_GPL vmlinux 0x83adf01e nf_checksum -EXPORT_SYMBOL_GPL vmlinux 0x83ccdee7 fuse_do_open -EXPORT_SYMBOL_GPL vmlinux 0x83cef677 edac_device_alloc_ctl_info -EXPORT_SYMBOL_GPL vmlinux 0x83d45c57 ahci_platform_disable_resources -EXPORT_SYMBOL_GPL vmlinux 0x83d8e9cd sdio_f0_writeb -EXPORT_SYMBOL_GPL vmlinux 0x83f12b19 rio_add_device -EXPORT_SYMBOL_GPL vmlinux 0x83f28c4a iomap_readpage -EXPORT_SYMBOL_GPL vmlinux 0x8402bccf phy_pm_runtime_put -EXPORT_SYMBOL_GPL vmlinux 0x8408dc16 dev_pm_opp_put_prop_name +EXPORT_SYMBOL_GPL vmlinux 0x835815b6 fib_rules_register +EXPORT_SYMBOL_GPL vmlinux 0x83617f27 nvmem_cell_get +EXPORT_SYMBOL_GPL vmlinux 0x83630d76 simple_attr_release +EXPORT_SYMBOL_GPL vmlinux 0x83789e55 sysfs_group_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x83a532ea bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0x83a7a674 usb_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x83bb1d17 rio_route_add_entry +EXPORT_SYMBOL_GPL vmlinux 0x83d6876e sync_page_io +EXPORT_SYMBOL_GPL vmlinux 0x83ec8d51 hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x83f061a3 fwnode_graph_get_remote_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x83f7cf17 usb_register_device_driver +EXPORT_SYMBOL_GPL vmlinux 0x840e51fc hvc_alloc EXPORT_SYMBOL_GPL vmlinux 0x84106f36 devlink_trap_ctx_priv -EXPORT_SYMBOL_GPL vmlinux 0x8411808d blk_execute_rq_nowait -EXPORT_SYMBOL_GPL vmlinux 0x841f50f9 ata_bmdma_irq_clear -EXPORT_SYMBOL_GPL vmlinux 0x84225a90 ata_port_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0x841ad2d8 sysfs_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x84204c7d of_fdt_unflatten_tree +EXPORT_SYMBOL_GPL vmlinux 0x8424d957 cpufreq_cpu_put EXPORT_SYMBOL_GPL vmlinux 0x84264ced fs_umode_to_ftype -EXPORT_SYMBOL_GPL vmlinux 0x842d4730 crypto_unregister_aead EXPORT_SYMBOL_GPL vmlinux 0x842f046d usb_poison_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x84306ed2 trace_event_raw_init -EXPORT_SYMBOL_GPL vmlinux 0x843c9849 ethnl_cable_test_fault_length -EXPORT_SYMBOL_GPL vmlinux 0x843ca679 i2c_recover_bus +EXPORT_SYMBOL_GPL vmlinux 0x843a23d5 pinctrl_utils_reserve_map +EXPORT_SYMBOL_GPL vmlinux 0x843bd56f ata_sas_port_start EXPORT_SYMBOL_GPL vmlinux 0x843d70ef acpi_is_root_bridge -EXPORT_SYMBOL_GPL vmlinux 0x843e5f86 ata_sff_busy_sleep -EXPORT_SYMBOL_GPL vmlinux 0x84471063 perf_event_refresh +EXPORT_SYMBOL_GPL vmlinux 0x8444d9d7 irq_chip_unmask_parent +EXPORT_SYMBOL_GPL vmlinux 0x844ae687 cpufreq_unregister_governor EXPORT_SYMBOL_GPL vmlinux 0x844cb904 mtk_mutex_remove_comp EXPORT_SYMBOL_GPL vmlinux 0x84502a47 blk_status_to_errno -EXPORT_SYMBOL_GPL vmlinux 0x84529eda fscrypt_set_bio_crypt_ctx +EXPORT_SYMBOL_GPL vmlinux 0x845a91b4 nf_checksum EXPORT_SYMBOL_GPL vmlinux 0x845dbf3b scatterwalk_map_and_copy +EXPORT_SYMBOL_GPL vmlinux 0x845df7b1 n_tty_inherit_ops EXPORT_SYMBOL_GPL vmlinux 0x8462cb62 atapi_cmd_type -EXPORT_SYMBOL_GPL vmlinux 0x846a6c5b rtnl_register_module -EXPORT_SYMBOL_GPL vmlinux 0x846b66eb tty_buffer_space_avail -EXPORT_SYMBOL_GPL vmlinux 0x8477a3c3 trace_event_ignore_this_pid -EXPORT_SYMBOL_GPL vmlinux 0x84900845 blk_mq_alloc_sq_tag_set -EXPORT_SYMBOL_GPL vmlinux 0x8496ed4e iomap_seek_data +EXPORT_SYMBOL_GPL vmlinux 0x849c1de1 iommu_group_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x849d9799 dev_pm_opp_of_add_table EXPORT_SYMBOL_GPL vmlinux 0x84a8d0eb of_changeset_revert -EXPORT_SYMBOL_GPL vmlinux 0x84ae181a mmc_regulator_set_ocr -EXPORT_SYMBOL_GPL vmlinux 0x84b8eb52 tty_port_link_device -EXPORT_SYMBOL_GPL vmlinux 0x84bb7a01 follow_pte -EXPORT_SYMBOL_GPL vmlinux 0x84e0ce33 nvdimm_flush +EXPORT_SYMBOL_GPL vmlinux 0x84aed814 spi_mem_supports_op +EXPORT_SYMBOL_GPL vmlinux 0x84b20518 pinctrl_pm_select_idle_state +EXPORT_SYMBOL_GPL vmlinux 0x84b2f3c7 pm_clk_remove_clk +EXPORT_SYMBOL_GPL vmlinux 0x84dd4601 ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0x84ea5139 xfrm_state_afinfo_get_rcu EXPORT_SYMBOL_GPL vmlinux 0x84ef27f5 synth_event_add_fields +EXPORT_SYMBOL_GPL vmlinux 0x84f166ba xfrm_output_resume +EXPORT_SYMBOL_GPL vmlinux 0x84fa567f ip6_datagram_recv_ctl EXPORT_SYMBOL_GPL vmlinux 0x8506baa8 clk_unregister_gate -EXPORT_SYMBOL_GPL vmlinux 0x8509da9f usb_alloc_streams EXPORT_SYMBOL_GPL vmlinux 0x850bb6db devlink_health_reporter_destroy +EXPORT_SYMBOL_GPL vmlinux 0x851913c8 devlink_params_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 0x852213c1 fsl_mc_bus_dpdmux_type -EXPORT_SYMBOL_GPL vmlinux 0x85249e66 clk_regmap_gate_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0x852f58ce fork_usermode_driver -EXPORT_SYMBOL_GPL vmlinux 0x8542c99c regulator_get_linear_step -EXPORT_SYMBOL_GPL vmlinux 0x855230f2 iommu_device_sysfs_add -EXPORT_SYMBOL_GPL vmlinux 0x85534b65 cpufreq_dbs_governor_init +EXPORT_SYMBOL_GPL vmlinux 0x85417b39 ata_bmdma32_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x8548cbfa class_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x854c0cbc regulator_put +EXPORT_SYMBOL_GPL vmlinux 0x854fe2a4 lwtunnel_xmit EXPORT_SYMBOL_GPL vmlinux 0x85540ebc nvmem_cell_put -EXPORT_SYMBOL_GPL vmlinux 0x856d24aa regmap_async_complete_cb -EXPORT_SYMBOL_GPL vmlinux 0x85748e23 skb_consume_udp -EXPORT_SYMBOL_GPL vmlinux 0x85776c15 regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x85615c0d of_reset_control_array_get +EXPORT_SYMBOL_GPL vmlinux 0x8565b419 fwnode_remove_software_node +EXPORT_SYMBOL_GPL vmlinux 0x8571c70a nd_cmd_in_size +EXPORT_SYMBOL_GPL vmlinux 0x8577ac11 iommu_map_sg EXPORT_SYMBOL_GPL vmlinux 0x85862277 ioasid_find -EXPORT_SYMBOL_GPL vmlinux 0x858d7816 pm_clk_runtime_suspend EXPORT_SYMBOL_GPL vmlinux 0x85935a61 acpi_dev_irq_flags -EXPORT_SYMBOL_GPL vmlinux 0x85c35d9d n_tty_inherit_ops +EXPORT_SYMBOL_GPL vmlinux 0x85c140f1 wm8350_read_auxadc EXPORT_SYMBOL_GPL vmlinux 0x85c54b61 efivar_validate -EXPORT_SYMBOL_GPL vmlinux 0x85cf95a2 bpf_verifier_log_write -EXPORT_SYMBOL_GPL vmlinux 0x85df532d meson_pinctrl_probe +EXPORT_SYMBOL_GPL vmlinux 0x85d275f2 bpfilter_ops +EXPORT_SYMBOL_GPL vmlinux 0x85daf79a ncsi_vlan_rx_add_vid +EXPORT_SYMBOL_GPL vmlinux 0x85eb1e85 pm_generic_poweroff_noirq EXPORT_SYMBOL_GPL vmlinux 0x85eed1be iopf_queue_discard_partial -EXPORT_SYMBOL_GPL vmlinux 0x85f4eb17 mtk_pinconf_adv_drive_set_raw -EXPORT_SYMBOL_GPL vmlinux 0x85f98454 edac_pci_release_generic_ctl EXPORT_SYMBOL_GPL vmlinux 0x862258db timecounter_init +EXPORT_SYMBOL_GPL vmlinux 0x862b76d4 blk_mq_hctx_set_fq_lock_class EXPORT_SYMBOL_GPL vmlinux 0x862bb17b linear_range_values_in_range_array -EXPORT_SYMBOL_GPL vmlinux 0x864697d6 clk_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x862da1b3 cpufreq_cpu_get +EXPORT_SYMBOL_GPL vmlinux 0x86476f40 __platform_driver_probe +EXPORT_SYMBOL_GPL vmlinux 0x86510ec8 hvc_instantiate +EXPORT_SYMBOL_GPL vmlinux 0x8652b6ae regulator_list_voltage_table EXPORT_SYMBOL_GPL vmlinux 0x86585a33 devlink_fmsg_obj_nest_start +EXPORT_SYMBOL_GPL vmlinux 0x865e195f crypto_alloc_base EXPORT_SYMBOL_GPL vmlinux 0x86623fd7 notify_remote_via_irq +EXPORT_SYMBOL_GPL vmlinux 0x8666e831 dma_free_pages EXPORT_SYMBOL_GPL vmlinux 0x866ca6a3 gnttab_page_cache_init -EXPORT_SYMBOL_GPL vmlinux 0x866f4bdb __traceiter_tcp_bad_csum EXPORT_SYMBOL_GPL vmlinux 0x86700220 acpi_get_cpuid EXPORT_SYMBOL_GPL vmlinux 0x8677245d unregister_switchdev_blocking_notifier -EXPORT_SYMBOL_GPL vmlinux 0x867c2989 bpf_prog_inc_not_zero EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get -EXPORT_SYMBOL_GPL vmlinux 0x8689ac15 sk_msg_recvmsg -EXPORT_SYMBOL_GPL vmlinux 0x869128e4 mtk_pinconf_bias_set_combo -EXPORT_SYMBOL_GPL vmlinux 0x86a0f266 security_path_chown +EXPORT_SYMBOL_GPL vmlinux 0x8688f77b inet6_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x868c5043 dev_pm_opp_attach_genpd +EXPORT_SYMBOL_GPL vmlinux 0x86913533 acpi_subsys_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0x869455ed pwm_put EXPORT_SYMBOL_GPL vmlinux 0x86b13d2a usb_unpoison_anchored_urbs EXPORT_SYMBOL_GPL vmlinux 0x86b1ceb3 tegra210_set_sata_pll_seq_sw -EXPORT_SYMBOL_GPL vmlinux 0x86ba9f06 pinctrl_find_and_add_gpio_range -EXPORT_SYMBOL_GPL vmlinux 0x86bd8980 crypto_unregister_ahashes EXPORT_SYMBOL_GPL vmlinux 0x86c02001 ipi_send_mask +EXPORT_SYMBOL_GPL vmlinux 0x86c048b9 power_supply_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x86c3d950 cros_ec_check_features EXPORT_SYMBOL_GPL vmlinux 0x86c43a8c cper_estatus_check -EXPORT_SYMBOL_GPL vmlinux 0x86c84d88 devm_platform_get_irqs_affinity +EXPORT_SYMBOL_GPL vmlinux 0x86c8df4e kgdb_unregister_io_module EXPORT_SYMBOL_GPL vmlinux 0x86c961b3 __set_dax_synchronous -EXPORT_SYMBOL_GPL vmlinux 0x86d2d8d9 devlink_reload_enable EXPORT_SYMBOL_GPL vmlinux 0x86dda6ef rtm_getroute_parse_ip_proto +EXPORT_SYMBOL_GPL vmlinux 0x86df3f99 usb_of_get_device_node +EXPORT_SYMBOL_GPL vmlinux 0x86f1cb9a of_icc_get_from_provider +EXPORT_SYMBOL_GPL vmlinux 0x86f61a03 adp5520_set_bits EXPORT_SYMBOL_GPL vmlinux 0x86f6b99d synchronize_rcu_expedited EXPORT_SYMBOL_GPL vmlinux 0x86f85114 net_dec_egress_queue -EXPORT_SYMBOL_GPL vmlinux 0x86f9c145 regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x8701098e gpiod_get_direction +EXPORT_SYMBOL_GPL vmlinux 0x8706594f da9052_enable_irq EXPORT_SYMBOL_GPL vmlinux 0x870e16b7 xen_test_irq_shared -EXPORT_SYMBOL_GPL vmlinux 0x87161412 meson_clk_mpll_ops -EXPORT_SYMBOL_GPL vmlinux 0x871b36d3 hisi_uncore_pmu_event_init -EXPORT_SYMBOL_GPL vmlinux 0x87317b02 scsi_autopm_put_device -EXPORT_SYMBOL_GPL vmlinux 0x87550ba4 xhci_check_bandwidth +EXPORT_SYMBOL_GPL vmlinux 0x8713f0c8 __mmc_send_status +EXPORT_SYMBOL_GPL vmlinux 0x87198bbd inet_ehash_nolisten +EXPORT_SYMBOL_GPL vmlinux 0x87246476 __xenbus_register_backend +EXPORT_SYMBOL_GPL vmlinux 0x872b4fcf fsverity_ioctl_measure +EXPORT_SYMBOL_GPL vmlinux 0x8733da1f dev_attr_ncq_prio_enable +EXPORT_SYMBOL_GPL vmlinux 0x874733d9 kvm_unmap_gfn +EXPORT_SYMBOL_GPL vmlinux 0x8752db47 __traceiter_rpm_resume EXPORT_SYMBOL_GPL vmlinux 0x875582b7 nvmem_del_cell_table -EXPORT_SYMBOL_GPL vmlinux 0x8755d55e ata_sff_thaw -EXPORT_SYMBOL_GPL vmlinux 0x8779eabe net_ns_type_operations -EXPORT_SYMBOL_GPL vmlinux 0x877bbe98 crypto_alloc_akcipher -EXPORT_SYMBOL_GPL vmlinux 0x87915988 pci_disable_pasid -EXPORT_SYMBOL_GPL vmlinux 0x87a1697b fsl_mc_cleanup_irq_pool -EXPORT_SYMBOL_GPL vmlinux 0x87a7760a kernfs_find_and_get_ns -EXPORT_SYMBOL_GPL vmlinux 0x87b01ccc cgroup_get_e_css -EXPORT_SYMBOL_GPL vmlinux 0x87c07b11 dbs_update -EXPORT_SYMBOL_GPL vmlinux 0x87c4c9f5 hwmon_device_register -EXPORT_SYMBOL_GPL vmlinux 0x87c664e6 gnttab_unmap_refs_async +EXPORT_SYMBOL_GPL vmlinux 0x8759247c udp_bpf_update_proto +EXPORT_SYMBOL_GPL vmlinux 0x8764912e kern_mount +EXPORT_SYMBOL_GPL vmlinux 0x8765d725 pinctrl_generic_get_group_name +EXPORT_SYMBOL_GPL vmlinux 0x876aad6b fscrypt_ioctl_get_policy_ex +EXPORT_SYMBOL_GPL vmlinux 0x878e6c13 sched_trace_rq_nr_running +EXPORT_SYMBOL_GPL vmlinux 0x8799da30 is_skb_forwardable +EXPORT_SYMBOL_GPL vmlinux 0x87a781ae dpbp_enable +EXPORT_SYMBOL_GPL vmlinux 0x87b1a1a5 gpiod_set_value +EXPORT_SYMBOL_GPL vmlinux 0x87b29fc0 fsl_mc_resource_free +EXPORT_SYMBOL_GPL vmlinux 0x87b623b0 acpi_bind_one +EXPORT_SYMBOL_GPL vmlinux 0x87c05af6 hvc_remove +EXPORT_SYMBOL_GPL vmlinux 0x87ca25ed fwnode_property_read_u8_array EXPORT_SYMBOL_GPL vmlinux 0x87ce0be2 free_iova -EXPORT_SYMBOL_GPL vmlinux 0x87fcbb64 rio_lock_device -EXPORT_SYMBOL_GPL vmlinux 0x87fff0b5 pm_generic_poweroff_late +EXPORT_SYMBOL_GPL vmlinux 0x87f1360c acpi_device_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0x87f3a0ab icc_nodes_remove +EXPORT_SYMBOL_GPL vmlinux 0x880be782 virtqueue_add_inbuf_ctx +EXPORT_SYMBOL_GPL vmlinux 0x880cbae0 gnttab_pages_clear_private +EXPORT_SYMBOL_GPL vmlinux 0x880f65f8 gpiod_set_raw_array_value_cansleep EXPORT_SYMBOL_GPL vmlinux 0x8810e36e pci_bridge_emul_conf_read -EXPORT_SYMBOL_GPL vmlinux 0x881bd78f acpi_dev_gpio_irq_get_by -EXPORT_SYMBOL_GPL vmlinux 0x883c4337 platform_msi_domain_free_irqs +EXPORT_SYMBOL_GPL vmlinux 0x8815913a __irq_domain_add +EXPORT_SYMBOL_GPL vmlinux 0x882b349d tegra_bpmp_transfer +EXPORT_SYMBOL_GPL vmlinux 0x882e12b8 _copy_from_iter_flushcache +EXPORT_SYMBOL_GPL vmlinux 0x883b5bb8 pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0x883d3147 gpiochip_lock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0x88481a10 xdp_rxq_info_unreg_mem_model EXPORT_SYMBOL_GPL vmlinux 0x885528a6 ring_buffer_discard_commit -EXPORT_SYMBOL_GPL vmlinux 0x88709fae regmap_get_max_register -EXPORT_SYMBOL_GPL vmlinux 0x887b47d3 mtk_pinconf_adv_pull_set -EXPORT_SYMBOL_GPL vmlinux 0x887c2439 user_update +EXPORT_SYMBOL_GPL vmlinux 0x885bde05 pinctrl_dev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x8866d9d5 fib_rules_unregister +EXPORT_SYMBOL_GPL vmlinux 0x886bf999 of_thermal_get_trip_points +EXPORT_SYMBOL_GPL vmlinux 0x887e5af6 tty_ldisc_deref EXPORT_SYMBOL_GPL vmlinux 0x888c5be5 irq_bypass_register_consumer -EXPORT_SYMBOL_GPL vmlinux 0x889cecbe devlink_region_snapshot_id_get EXPORT_SYMBOL_GPL vmlinux 0x88ab6fe3 kgdb_active EXPORT_SYMBOL_GPL vmlinux 0x88b4ae92 ring_buffer_normalize_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x88c0f584 irq_set_chip_and_handler_name EXPORT_SYMBOL_GPL vmlinux 0x88cd7a9a k3_ringacc_ring_get_occ -EXPORT_SYMBOL_GPL vmlinux 0x88cfbdd1 fscrypt_fname_siphash -EXPORT_SYMBOL_GPL vmlinux 0x88d7fd46 pci_hp_add -EXPORT_SYMBOL_GPL vmlinux 0x88e0f545 trace_define_field -EXPORT_SYMBOL_GPL vmlinux 0x88e38543 scsi_host_complete_all_commands -EXPORT_SYMBOL_GPL vmlinux 0x88f46d71 dma_get_required_mask -EXPORT_SYMBOL_GPL vmlinux 0x8902f32e irq_create_of_mapping -EXPORT_SYMBOL_GPL vmlinux 0x890bfe6b phy_pm_runtime_get +EXPORT_SYMBOL_GPL vmlinux 0x88d26ff5 phy_speed_down +EXPORT_SYMBOL_GPL vmlinux 0x88d83901 __xenbus_register_frontend +EXPORT_SYMBOL_GPL vmlinux 0x88e228c7 param_ops_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0x88f96fed nd_blk_memremap_flags +EXPORT_SYMBOL_GPL vmlinux 0x88f98aae mbox_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x8900770f rio_get_comptag EXPORT_SYMBOL_GPL vmlinux 0x890f4f97 __kprobe_event_gen_cmd_start EXPORT_SYMBOL_GPL vmlinux 0x890fa0fa btree_get_prev -EXPORT_SYMBOL_GPL vmlinux 0x8910fe1a iommu_set_fault_handler -EXPORT_SYMBOL_GPL vmlinux 0x8916a58f pci_bus_max_busnr +EXPORT_SYMBOL_GPL vmlinux 0x890fab61 clk_register_fixed_rate EXPORT_SYMBOL_GPL vmlinux 0x891a5a7f gnttab_max_grant_frames -EXPORT_SYMBOL_GPL vmlinux 0x891f3545 msg_zerocopy_realloc +EXPORT_SYMBOL_GPL vmlinux 0x891c66d6 ata_bmdma_status EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state -EXPORT_SYMBOL_GPL vmlinux 0x893a1ad5 wakeup_sources_walk_next +EXPORT_SYMBOL_GPL vmlinux 0x892f141d __traceiter_block_unplug EXPORT_SYMBOL_GPL vmlinux 0x893abbdd devlink_fmsg_u32_pair_put +EXPORT_SYMBOL_GPL vmlinux 0x8944b765 mptcp_subflow_init_cookie_req 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 0x896829bf pm_genpd_opp_to_performance_state -EXPORT_SYMBOL_GPL vmlinux 0x8971cc79 vfs_lock_file -EXPORT_SYMBOL_GPL vmlinux 0x89819a14 skcipher_walk_async -EXPORT_SYMBOL_GPL vmlinux 0x899dbca5 devm_nvdimm_memremap -EXPORT_SYMBOL_GPL vmlinux 0x899fe6d1 cpu_device_create +EXPORT_SYMBOL_GPL vmlinux 0x896496e4 dev_pm_opp_of_get_opp_desc_node +EXPORT_SYMBOL_GPL vmlinux 0x897667de ata_pci_remove_one +EXPORT_SYMBOL_GPL vmlinux 0x897aee9d device_destroy +EXPORT_SYMBOL_GPL vmlinux 0x899b4d0e sk_msg_alloc +EXPORT_SYMBOL_GPL vmlinux 0x899e6462 blk_queue_write_cache 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 0x89bcd33b __traceiter_devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0x89c30c11 sysfs_change_owner EXPORT_SYMBOL_GPL vmlinux 0x89c429e4 __tracepoint_mc_event -EXPORT_SYMBOL_GPL vmlinux 0x89d2efc2 efivar_entry_iter -EXPORT_SYMBOL_GPL vmlinux 0x89d9de13 clk_gate_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0x89db37df sdio_readsb +EXPORT_SYMBOL_GPL vmlinux 0x89dd2b88 devm_hwmon_device_unregister EXPORT_SYMBOL_GPL vmlinux 0x89e340cf acpi_bus_get_ejd -EXPORT_SYMBOL_GPL vmlinux 0x89f2c696 fat_getattr +EXPORT_SYMBOL_GPL vmlinux 0x89f7fb66 of_reserved_mem_lookup +EXPORT_SYMBOL_GPL vmlinux 0x8a027883 subsys_virtual_register +EXPORT_SYMBOL_GPL vmlinux 0x8a0ef7b1 mddev_init_writes_pending +EXPORT_SYMBOL_GPL vmlinux 0x8a1a0a4a fscrypt_ioctl_add_key +EXPORT_SYMBOL_GPL vmlinux 0x8a1c6980 iommu_iova_to_phys EXPORT_SYMBOL_GPL vmlinux 0x8a240bff __xas_next +EXPORT_SYMBOL_GPL vmlinux 0x8a262df7 mpc8xxx_spi_rx_buf_u16 +EXPORT_SYMBOL_GPL vmlinux 0x8a3ed081 pm_generic_freeze_noirq EXPORT_SYMBOL_GPL vmlinux 0x8a3f84ba linear_range_get_selector_low EXPORT_SYMBOL_GPL vmlinux 0x8a45a555 acpi_unregister_wakeup_handler +EXPORT_SYMBOL_GPL vmlinux 0x8a4d816e fscrypt_d_revalidate +EXPORT_SYMBOL_GPL vmlinux 0x8a51312d nvdimm_provider_data EXPORT_SYMBOL_GPL vmlinux 0x8a554a36 mpc8xxx_spi_strmode -EXPORT_SYMBOL_GPL vmlinux 0x8a579b30 inode_dax -EXPORT_SYMBOL_GPL vmlinux 0x8a5af46a dmaengine_desc_set_metadata_len EXPORT_SYMBOL_GPL vmlinux 0x8a62b81b sfp_upstream_stop -EXPORT_SYMBOL_GPL vmlinux 0x8a74d705 bpf_map_inc_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x8a7477d8 __vfs_removexattr_noperm +EXPORT_SYMBOL_GPL vmlinux 0x8a75ffbc pm_clk_add +EXPORT_SYMBOL_GPL vmlinux 0x8a76a3f2 serdev_device_get_tiocm +EXPORT_SYMBOL_GPL vmlinux 0x8a7cc762 kvm_vcpu_kick EXPORT_SYMBOL_GPL vmlinux 0x8a83fb45 mpi_point_free_parts -EXPORT_SYMBOL_GPL vmlinux 0x8a9f10db blkcg_policy_register +EXPORT_SYMBOL_GPL vmlinux 0x8a8e2fb0 pm_generic_restore +EXPORT_SYMBOL_GPL vmlinux 0x8a9ff176 edac_pci_handle_pe +EXPORT_SYMBOL_GPL vmlinux 0x8ab3f27b device_show_ulong EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files -EXPORT_SYMBOL_GPL vmlinux 0x8ac1788d fscrypt_mergeable_bio_bh -EXPORT_SYMBOL_GPL vmlinux 0x8ac3f580 usb_acpi_set_power_state -EXPORT_SYMBOL_GPL vmlinux 0x8acf3cd7 devlink_trap_report -EXPORT_SYMBOL_GPL vmlinux 0x8ad320d8 sysfs_remove_file_ns -EXPORT_SYMBOL_GPL vmlinux 0x8adae009 __fscrypt_encrypt_symlink -EXPORT_SYMBOL_GPL vmlinux 0x8adfc07f led_trigger_write -EXPORT_SYMBOL_GPL vmlinux 0x8ae48023 usb_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x8ae6021e simple_attr_open -EXPORT_SYMBOL_GPL vmlinux 0x8af1387c devlink_traps_register +EXPORT_SYMBOL_GPL vmlinux 0x8aceb81e __blk_req_zone_write_lock +EXPORT_SYMBOL_GPL vmlinux 0x8ae8b3da crypto_stats_decompress +EXPORT_SYMBOL_GPL vmlinux 0x8afa14d6 trace_array_init_printk +EXPORT_SYMBOL_GPL vmlinux 0x8afd66b8 kvm_vcpu_read_guest_atomic +EXPORT_SYMBOL_GPL vmlinux 0x8b0185b3 crypto_register_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x8b01d4a0 rdev_get_name +EXPORT_SYMBOL_GPL vmlinux 0x8b06c083 irq_domain_simple_ops EXPORT_SYMBOL_GPL vmlinux 0x8b149c36 clk_is_match -EXPORT_SYMBOL_GPL vmlinux 0x8b5278eb phy_init -EXPORT_SYMBOL_GPL vmlinux 0x8b52ad8b __iomap_dio_rw -EXPORT_SYMBOL_GPL vmlinux 0x8b5986df dev_pm_opp_add -EXPORT_SYMBOL_GPL vmlinux 0x8b5a0647 crypto_unregister_ahash -EXPORT_SYMBOL_GPL vmlinux 0x8b5dff4e of_get_regulator_init_data -EXPORT_SYMBOL_GPL vmlinux 0x8b63f212 of_reset_control_array_get +EXPORT_SYMBOL_GPL vmlinux 0x8b149f95 percpu_up_write +EXPORT_SYMBOL_GPL vmlinux 0x8b2193fc dev_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x8b25074c of_clk_add_hw_provider +EXPORT_SYMBOL_GPL vmlinux 0x8b38a168 fscrypt_drop_inode +EXPORT_SYMBOL_GPL vmlinux 0x8b4f324b kvm_get_kvm_safe +EXPORT_SYMBOL_GPL vmlinux 0x8b5065ed ip6_dst_lookup_tunnel EXPORT_SYMBOL_GPL vmlinux 0x8b650752 mtk_mutex_release +EXPORT_SYMBOL_GPL vmlinux 0x8b72c3fc relay_switch_subbuf EXPORT_SYMBOL_GPL vmlinux 0x8b7a698b __tracepoint_xdp_exception -EXPORT_SYMBOL_GPL vmlinux 0x8b872243 vfs_removexattr -EXPORT_SYMBOL_GPL vmlinux 0x8b8aed6e ata_dev_next +EXPORT_SYMBOL_GPL vmlinux 0x8b91be46 ncsi_start_dev EXPORT_SYMBOL_GPL vmlinux 0x8ba0eb15 hv_set_vpreg +EXPORT_SYMBOL_GPL vmlinux 0x8ba3c0b3 blkg_conf_prep +EXPORT_SYMBOL_GPL vmlinux 0x8ba59416 devm_request_pci_bus_resources EXPORT_SYMBOL_GPL vmlinux 0x8ba5afe9 HYPERVISOR_memory_op -EXPORT_SYMBOL_GPL vmlinux 0x8be5f4b3 perf_pmu_register +EXPORT_SYMBOL_GPL vmlinux 0x8bb29dd8 to_nd_desc +EXPORT_SYMBOL_GPL vmlinux 0x8bbf26e2 cpufreq_generic_init EXPORT_SYMBOL_GPL vmlinux 0x8bf5f379 k3_udma_glue_release_tx_chn -EXPORT_SYMBOL_GPL vmlinux 0x8bf752ef cpufreq_dbs_governor_exit +EXPORT_SYMBOL_GPL vmlinux 0x8bfdd13c dev_pm_domain_attach EXPORT_SYMBOL_GPL vmlinux 0x8c0215f2 pm_system_wakeup EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue +EXPORT_SYMBOL_GPL vmlinux 0x8c0705c4 dma_get_any_slave_channel EXPORT_SYMBOL_GPL vmlinux 0x8c0ed103 rcu_check_boost_fail -EXPORT_SYMBOL_GPL vmlinux 0x8c35fefd usb_mon_register +EXPORT_SYMBOL_GPL vmlinux 0x8c290eb2 dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0x8c335f91 blk_rq_prep_clone +EXPORT_SYMBOL_GPL vmlinux 0x8c439528 devlink_region_snapshot_id_get EXPORT_SYMBOL_GPL vmlinux 0x8c484409 gnttab_release_grant_reference -EXPORT_SYMBOL_GPL vmlinux 0x8c4e650e __platform_register_drivers -EXPORT_SYMBOL_GPL vmlinux 0x8c5d153b usb_get_intf -EXPORT_SYMBOL_GPL vmlinux 0x8c62e45b icc_enable -EXPORT_SYMBOL_GPL vmlinux 0x8c73960c bus_rescan_devices +EXPORT_SYMBOL_GPL vmlinux 0x8c56c4d1 blkg_lookup_slowpath +EXPORT_SYMBOL_GPL vmlinux 0x8c582dd0 thermal_remove_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0x8c61c771 of_dma_is_coherent EXPORT_SYMBOL_GPL vmlinux 0x8c743fb6 reset_control_status +EXPORT_SYMBOL_GPL vmlinux 0x8c7500b8 tcp_sendpage_locked EXPORT_SYMBOL_GPL vmlinux 0x8c89e3b8 usb_phy_roothub_power_off -EXPORT_SYMBOL_GPL vmlinux 0x8c95aa00 gfn_to_memslot -EXPORT_SYMBOL_GPL vmlinux 0x8ca634f7 pci_find_next_ht_capability -EXPORT_SYMBOL_GPL vmlinux 0x8cb3c0a3 sdio_writel EXPORT_SYMBOL_GPL vmlinux 0x8cb5a38e k3_udma_glue_rx_flow_disable -EXPORT_SYMBOL_GPL vmlinux 0x8cc0a281 icc_node_del -EXPORT_SYMBOL_GPL vmlinux 0x8cd83ddb devlink_port_param_driverinit_value_set -EXPORT_SYMBOL_GPL vmlinux 0x8cdf7020 udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x8cc6592b crypto_alloc_aead +EXPORT_SYMBOL_GPL vmlinux 0x8cde8f5a tpm2_probe EXPORT_SYMBOL_GPL vmlinux 0x8ce2d446 __tracepoint_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0x8cf44e65 devm_tegra_memory_controller_get +EXPORT_SYMBOL_GPL vmlinux 0x8cf8f6ba devm_thermal_zone_of_sensor_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8d06597d rio_unregister_mport EXPORT_SYMBOL_GPL vmlinux 0x8d0abf3a __tracepoint_io_page_fault -EXPORT_SYMBOL_GPL vmlinux 0x8d0df56b of_thermal_get_ntrips -EXPORT_SYMBOL_GPL vmlinux 0x8d19e176 bd_prepare_to_claim +EXPORT_SYMBOL_GPL vmlinux 0x8d0fd4ac crypto_unregister_shashes +EXPORT_SYMBOL_GPL vmlinux 0x8d1c711f regulator_get_bypass_regmap EXPORT_SYMBOL_GPL vmlinux 0x8d22bb58 iommu_group_alloc -EXPORT_SYMBOL_GPL vmlinux 0x8d29a3b5 pm_genpd_remove_device -EXPORT_SYMBOL_GPL vmlinux 0x8d29ea67 class_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x8d316b14 amba_device_add EXPORT_SYMBOL_GPL vmlinux 0x8d3330b6 cpuacct_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x8d393564 usb_get_from_anchor -EXPORT_SYMBOL_GPL vmlinux 0x8d3f8066 mmu_interval_read_begin -EXPORT_SYMBOL_GPL vmlinux 0x8d411794 __rio_local_read_config_8 -EXPORT_SYMBOL_GPL vmlinux 0x8d521ca7 __traceiter_sched_util_est_se_tp -EXPORT_SYMBOL_GPL vmlinux 0x8d527fdb nvmem_cell_read_u16 -EXPORT_SYMBOL_GPL vmlinux 0x8d52aa94 create_signature +EXPORT_SYMBOL_GPL vmlinux 0x8d58cc9e fuse_do_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x8d657fba irq_chip_set_type_parent +EXPORT_SYMBOL_GPL vmlinux 0x8d66dba3 espintcp_push_skb +EXPORT_SYMBOL_GPL vmlinux 0x8d751640 sk_msg_memcopy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0x8d77af9b ncsi_unregister_dev +EXPORT_SYMBOL_GPL vmlinux 0x8d7e238a clk_hw_unregister EXPORT_SYMBOL_GPL vmlinux 0x8d7e3373 hwpoison_filter_dev_major -EXPORT_SYMBOL_GPL vmlinux 0x8d889ca3 pci_create_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x8d87719f pci_sriov_set_totalvfs EXPORT_SYMBOL_GPL vmlinux 0x8d88ee64 sbitmap_queue_wake_up -EXPORT_SYMBOL_GPL vmlinux 0x8d8fcd66 ehci_resume +EXPORT_SYMBOL_GPL vmlinux 0x8d8cb01f component_del +EXPORT_SYMBOL_GPL vmlinux 0x8dae4f0d k3_udma_glue_rx_flow_init EXPORT_SYMBOL_GPL vmlinux 0x8dafdded lwtunnel_valid_encap_type_attr +EXPORT_SYMBOL_GPL vmlinux 0x8dbe3121 ata_host_init EXPORT_SYMBOL_GPL vmlinux 0x8dbf7aaa privcmd_call -EXPORT_SYMBOL_GPL vmlinux 0x8dc1f5b3 acpi_bind_one -EXPORT_SYMBOL_GPL vmlinux 0x8dc852e1 sec_irq_init -EXPORT_SYMBOL_GPL vmlinux 0x8dd115b9 usb_unanchor_urb EXPORT_SYMBOL_GPL vmlinux 0x8dd218b0 icc_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0x8dd4533a devm_led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8dd59f69 bd_link_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0x8ddb3990 fuse_dev_free EXPORT_SYMBOL_GPL vmlinux 0x8de6817a acpi_dev_resource_address_space -EXPORT_SYMBOL_GPL vmlinux 0x8dfcb4b8 tty_port_register_device_serdev -EXPORT_SYMBOL_GPL vmlinux 0x8e005815 inet_ctl_sock_create -EXPORT_SYMBOL_GPL vmlinux 0x8e0af16c sock_diag_save_cookie -EXPORT_SYMBOL_GPL vmlinux 0x8e0cd4f3 bpf_prog_create_from_user +EXPORT_SYMBOL_GPL vmlinux 0x8deb40b5 skcipher_walk_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x8dff2c38 md_rdev_init +EXPORT_SYMBOL_GPL vmlinux 0x8e108dbe gpiod_get_from_of_node EXPORT_SYMBOL_GPL vmlinux 0x8e16419b trace_clock_local -EXPORT_SYMBOL_GPL vmlinux 0x8e2b3266 tpm_calc_ordinal_duration -EXPORT_SYMBOL_GPL vmlinux 0x8e3093b5 device_for_each_child_reverse -EXPORT_SYMBOL_GPL vmlinux 0x8e313cb0 init_uts_ns EXPORT_SYMBOL_GPL vmlinux 0x8e44823a sfp_select_interface EXPORT_SYMBOL_GPL vmlinux 0x8e4b63a6 hisi_clk_register_gate_sep -EXPORT_SYMBOL_GPL vmlinux 0x8e4c8405 bio_add_zone_append_page +EXPORT_SYMBOL_GPL vmlinux 0x8e4c415c devm_hwspin_lock_request EXPORT_SYMBOL_GPL vmlinux 0x8e4eb451 bpf_sk_storage_diag_free EXPORT_SYMBOL_GPL vmlinux 0x8e6b1a9e net_selftest_get_count +EXPORT_SYMBOL_GPL vmlinux 0x8e6eaea9 device_link_remove EXPORT_SYMBOL_GPL vmlinux 0x8e6fa8b5 apei_exec_pre_map_gars -EXPORT_SYMBOL_GPL vmlinux 0x8e774aaf metadata_dst_free_percpu +EXPORT_SYMBOL_GPL vmlinux 0x8e78d509 iomap_dio_iopoll +EXPORT_SYMBOL_GPL vmlinux 0x8e7bc2cc crypto_comp_decompress EXPORT_SYMBOL_GPL vmlinux 0x8e7f0a9c acpi_get_phys_id -EXPORT_SYMBOL_GPL vmlinux 0x8e7ff8e4 __device_reset -EXPORT_SYMBOL_GPL vmlinux 0x8e82efe0 meson_clk_pll_ops -EXPORT_SYMBOL_GPL vmlinux 0x8e88943d da903x_writes -EXPORT_SYMBOL_GPL vmlinux 0x8e91c73e get_device +EXPORT_SYMBOL_GPL vmlinux 0x8e859dfb unregister_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x8e915222 bus_unregister EXPORT_SYMBOL_GPL vmlinux 0x8e92f7c4 static_key_slow_inc -EXPORT_SYMBOL_GPL vmlinux 0x8e97343b lochnagar_update_config +EXPORT_SYMBOL_GPL vmlinux 0x8e9f6e6f wait_on_page_writeback +EXPORT_SYMBOL_GPL vmlinux 0x8ea31b41 dprc_get_obj +EXPORT_SYMBOL_GPL vmlinux 0x8ea96043 mark_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0x8eaa340d d_walk EXPORT_SYMBOL_GPL vmlinux 0x8ead800c user_free_preparse -EXPORT_SYMBOL_GPL vmlinux 0x8eae3d9d kvm_arch_ptp_get_crosststamp -EXPORT_SYMBOL_GPL vmlinux 0x8eae3df8 tcp_ca_get_key_by_name -EXPORT_SYMBOL_GPL vmlinux 0x8eb30297 usb_remove_phy -EXPORT_SYMBOL_GPL vmlinux 0x8ec849af generic_device_group -EXPORT_SYMBOL_GPL vmlinux 0x8edccf9a cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0x8eae2b87 regmap_reinit_cache +EXPORT_SYMBOL_GPL vmlinux 0x8eb219f1 security_path_chmod +EXPORT_SYMBOL_GPL vmlinux 0x8ec055ac rtc_update_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0x8ee8c1f9 tcp_set_state EXPORT_SYMBOL_GPL vmlinux 0x8eec19bd __SCK__tp_func_pelt_dl_tp EXPORT_SYMBOL_GPL vmlinux 0x8eed0fa2 sbitmap_get_shallow EXPORT_SYMBOL_GPL vmlinux 0x8eee3399 dax_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0x8ef313ab wwan_create_port +EXPORT_SYMBOL_GPL vmlinux 0x8eee54e4 pci_epc_mem_alloc_addr +EXPORT_SYMBOL_GPL vmlinux 0x8ef395c3 acpi_subsys_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x8ef686ab meson8_pmx_ops +EXPORT_SYMBOL_GPL vmlinux 0x8ef7159b ata_pci_bmdma_init_one +EXPORT_SYMBOL_GPL vmlinux 0x8ef9dce1 devm_thermal_of_cooling_device_register EXPORT_SYMBOL_GPL vmlinux 0x8effb505 phy_gbit_features EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp -EXPORT_SYMBOL_GPL vmlinux 0x8f0cba40 pm_clk_destroy -EXPORT_SYMBOL_GPL vmlinux 0x8f272f54 sprd_pinctrl_core_probe -EXPORT_SYMBOL_GPL vmlinux 0x8f2b47c7 perf_event_enable EXPORT_SYMBOL_GPL vmlinux 0x8f2e5212 __gfn_to_pfn_memslot +EXPORT_SYMBOL_GPL vmlinux 0x8f2e9c54 debugfs_create_atomic_t EXPORT_SYMBOL_GPL vmlinux 0x8f33c92f dev_pm_opp_of_cpumask_add_table -EXPORT_SYMBOL_GPL vmlinux 0x8f37be9b firmware_request_cache EXPORT_SYMBOL_GPL vmlinux 0x8f3969e1 zynqmp_pm_clock_getrate -EXPORT_SYMBOL_GPL vmlinux 0x8f477a5c zap_vma_ptes -EXPORT_SYMBOL_GPL vmlinux 0x8f5d23ea pci_probe_reset_slot -EXPORT_SYMBOL_GPL vmlinux 0x8f5fea83 serdev_controller_add +EXPORT_SYMBOL_GPL vmlinux 0x8f428200 devm_regulator_irq_helper +EXPORT_SYMBOL_GPL vmlinux 0x8f53b283 rdev_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x8f6b9b45 __dev_change_net_namespace EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative EXPORT_SYMBOL_GPL vmlinux 0x8f786bee fs_umode_to_dtype -EXPORT_SYMBOL_GPL vmlinux 0x8f7a5e69 hwspin_lock_request EXPORT_SYMBOL_GPL vmlinux 0x8f7bd0a6 btree_init_mempool -EXPORT_SYMBOL_GPL vmlinux 0x8f7dc2fc badblocks_show -EXPORT_SYMBOL_GPL vmlinux 0x8f95809b virtqueue_get_buf -EXPORT_SYMBOL_GPL vmlinux 0x8f9b2c71 ata_sas_port_alloc -EXPORT_SYMBOL_GPL vmlinux 0x8fa9c492 dw_pcie_ep_init_notify +EXPORT_SYMBOL_GPL vmlinux 0x8f7be32b irq_alloc_generic_chip EXPORT_SYMBOL_GPL vmlinux 0x8faa800d acpi_cpc_valid -EXPORT_SYMBOL_GPL vmlinux 0x8fafed5c pm_clk_resume -EXPORT_SYMBOL_GPL vmlinux 0x8fb491fe __pci_epf_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x8fb57eb0 led_trigger_set_default -EXPORT_SYMBOL_GPL vmlinux 0x8fba9412 pinctrl_dev_get_devname +EXPORT_SYMBOL_GPL vmlinux 0x8fba82d8 wakeup_source_remove EXPORT_SYMBOL_GPL vmlinux 0x8fc12788 software_node_unregister_node_group -EXPORT_SYMBOL_GPL vmlinux 0x8fca457d pci_user_write_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x8ff00246 sock_prot_inuse_get EXPORT_SYMBOL_GPL vmlinux 0x8ff60436 mpi_ec_add_points -EXPORT_SYMBOL_GPL vmlinux 0x8ffa93c0 driver_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x8ffa8ead da9052_free_irq EXPORT_SYMBOL_GPL vmlinux 0x8ffe792f tracepoint_probe_register_prio_may_exist -EXPORT_SYMBOL_GPL vmlinux 0x900d94d4 dma_mmap_pages -EXPORT_SYMBOL_GPL vmlinux 0x9010048b icc_disable -EXPORT_SYMBOL_GPL vmlinux 0x9012166b power_supply_class -EXPORT_SYMBOL_GPL vmlinux 0x90250a08 fuse_direct_io -EXPORT_SYMBOL_GPL vmlinux 0x9025691a devm_i2c_new_dummy_device -EXPORT_SYMBOL_GPL vmlinux 0x90361121 __dma_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x901f3fe9 iomap_swapfile_activate +EXPORT_SYMBOL_GPL vmlinux 0x9029b57e irq_domain_pop_irq +EXPORT_SYMBOL_GPL vmlinux 0x9036117d edac_pci_release_generic_ctl EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move -EXPORT_SYMBOL_GPL vmlinux 0x9046eb98 __vring_new_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0x904c2cbc blk_rq_unprep_clone -EXPORT_SYMBOL_GPL vmlinux 0x904e8140 pm_runtime_barrier -EXPORT_SYMBOL_GPL vmlinux 0x906448b7 sock_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0x903ec6e5 spi_mem_dirmap_create +EXPORT_SYMBOL_GPL vmlinux 0x9045125e md_stop_writes +EXPORT_SYMBOL_GPL vmlinux 0x905c97af do_take_over_console EXPORT_SYMBOL_GPL vmlinux 0x90688bcd devlink_info_driver_name_put -EXPORT_SYMBOL_GPL vmlinux 0x90694a99 fsl_mc_bus_dprtc_type -EXPORT_SYMBOL_GPL vmlinux 0x906d012d pci_dev_lock -EXPORT_SYMBOL_GPL vmlinux 0x90740b49 devres_get -EXPORT_SYMBOL_GPL vmlinux 0x907e8071 pinmux_generic_get_function -EXPORT_SYMBOL_GPL vmlinux 0x9097d0b9 __fscrypt_prepare_readdir -EXPORT_SYMBOL_GPL vmlinux 0x90a85ce4 devm_regmap_init_vexpress_config +EXPORT_SYMBOL_GPL vmlinux 0x906f8b0c ata_port_desc +EXPORT_SYMBOL_GPL vmlinux 0x9079299e mpc8xxx_spi_rx_buf_u32 +EXPORT_SYMBOL_GPL vmlinux 0x907cd774 replace_page_cache_page +EXPORT_SYMBOL_GPL vmlinux 0x907e2ec1 fwnode_usb_role_switch_get +EXPORT_SYMBOL_GPL vmlinux 0x9086a067 phy_speed_up +EXPORT_SYMBOL_GPL vmlinux 0x908e0867 blk_queue_required_elevator_features +EXPORT_SYMBOL_GPL vmlinux 0x90a1c93f tty_encode_baud_rate EXPORT_SYMBOL_GPL vmlinux 0x90a9d8cc hv_is_hyperv_initialized EXPORT_SYMBOL_GPL vmlinux 0x90ad66b1 software_node_unregister_nodes +EXPORT_SYMBOL_GPL vmlinux 0x90b5db1c crypto_register_ahashes EXPORT_SYMBOL_GPL vmlinux 0x90b763f1 HYPERVISOR_console_io -EXPORT_SYMBOL_GPL vmlinux 0x90b90d11 crypto_lookup_template EXPORT_SYMBOL_GPL vmlinux 0x90c8498c apei_exec_write_register +EXPORT_SYMBOL_GPL vmlinux 0x90d36de1 ata_sas_port_resume EXPORT_SYMBOL_GPL vmlinux 0x90d937b4 __tracepoint_pelt_rt_tp -EXPORT_SYMBOL_GPL vmlinux 0x90df85a5 br_ip6_fragment -EXPORT_SYMBOL_GPL vmlinux 0x90fd1b27 serial8250_tx_chars -EXPORT_SYMBOL_GPL vmlinux 0x90ff4727 genphy_c45_pma_read_abilities +EXPORT_SYMBOL_GPL vmlinux 0x90fe1ea8 balloon_aops +EXPORT_SYMBOL_GPL vmlinux 0x910b9608 ip6_route_output_flags_noref EXPORT_SYMBOL_GPL vmlinux 0x910bdf6b trace_seq_vprintf -EXPORT_SYMBOL_GPL vmlinux 0x91163562 platform_device_add_data -EXPORT_SYMBOL_GPL vmlinux 0x911a4cfd gpiod_set_value -EXPORT_SYMBOL_GPL vmlinux 0x9136657a mddev_unlock -EXPORT_SYMBOL_GPL vmlinux 0x9137b2de fwnode_find_reference -EXPORT_SYMBOL_GPL vmlinux 0x9145182b blk_mq_quiesce_queue -EXPORT_SYMBOL_GPL vmlinux 0x9167cbbb pinctrl_parse_index_with_args -EXPORT_SYMBOL_GPL vmlinux 0x917e3b99 regulator_bulk_enable -EXPORT_SYMBOL_GPL vmlinux 0x917f46e8 dpcon_set_notification -EXPORT_SYMBOL_GPL vmlinux 0x9187ff0f dax_inode -EXPORT_SYMBOL_GPL vmlinux 0x9191d90f aead_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x910ca90c devres_release +EXPORT_SYMBOL_GPL vmlinux 0x912899e6 spi_finalize_current_message +EXPORT_SYMBOL_GPL vmlinux 0x914414df bus_for_each_drv +EXPORT_SYMBOL_GPL vmlinux 0x915c40a7 rio_dev_get +EXPORT_SYMBOL_GPL vmlinux 0x91679c04 pinctrl_force_default +EXPORT_SYMBOL_GPL vmlinux 0x916e4e73 fuse_dev_alloc_install +EXPORT_SYMBOL_GPL vmlinux 0x9170d2b4 blk_mq_unquiesce_queue +EXPORT_SYMBOL_GPL vmlinux 0x91803b0a __kthread_init_worker EXPORT_SYMBOL_GPL vmlinux 0x9194e18f xenbus_mkdir EXPORT_SYMBOL_GPL vmlinux 0x91955a9f start_poll_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0x9195ed62 relay_file_operations -EXPORT_SYMBOL_GPL vmlinux 0x91a0e1a9 platform_get_resource_byname -EXPORT_SYMBOL_GPL vmlinux 0x91a3b2dc tracing_snapshot_cond -EXPORT_SYMBOL_GPL vmlinux 0x91ad5213 clk_hw_get_num_parents -EXPORT_SYMBOL_GPL vmlinux 0x91b0c9d1 ata_host_activate +EXPORT_SYMBOL_GPL vmlinux 0x919b0fd2 filemap_range_needs_writeback +EXPORT_SYMBOL_GPL vmlinux 0x91ab4af3 rockchip_pcie_init_port +EXPORT_SYMBOL_GPL vmlinux 0x91b6aade cgroup_get_e_css EXPORT_SYMBOL_GPL vmlinux 0x91b774a1 mpi_scanval -EXPORT_SYMBOL_GPL vmlinux 0x91bdc6f4 dst_cache_set_ip4 -EXPORT_SYMBOL_GPL vmlinux 0x91c30386 crypto_grab_akcipher -EXPORT_SYMBOL_GPL vmlinux 0x91c3549b ahci_platform_enable_regulators -EXPORT_SYMBOL_GPL vmlinux 0x91c560b6 ata_cable_ignore EXPORT_SYMBOL_GPL vmlinux 0x91c6e5b0 pcap_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x91c87d30 iomap_fiemap EXPORT_SYMBOL_GPL vmlinux 0x91c9313c acpi_gpio_get_io_resource -EXPORT_SYMBOL_GPL vmlinux 0x91c9ef32 devm_gpiod_get_from_of_node -EXPORT_SYMBOL_GPL vmlinux 0x91cd8991 vp_modern_get_status -EXPORT_SYMBOL_GPL vmlinux 0x91e0c9a2 report_iommu_fault EXPORT_SYMBOL_GPL vmlinux 0x91e30809 HYPERVISOR_vm_assist +EXPORT_SYMBOL_GPL vmlinux 0x91e460ab of_clk_hw_simple_get +EXPORT_SYMBOL_GPL vmlinux 0x91e8066b ata_sas_port_suspend +EXPORT_SYMBOL_GPL vmlinux 0x91e9602a dax_writeback_mapping_range EXPORT_SYMBOL_GPL vmlinux 0x91ea8726 asn1_encode_boolean -EXPORT_SYMBOL_GPL vmlinux 0x91edefe1 i2c_slave_register -EXPORT_SYMBOL_GPL vmlinux 0x92087c41 usb_phy_set_charger_state +EXPORT_SYMBOL_GPL vmlinux 0x920c3cb6 tpm_transmit_cmd EXPORT_SYMBOL_GPL vmlinux 0x920cc389 visitorl -EXPORT_SYMBOL_GPL vmlinux 0x921acc04 irq_generic_chip_ops +EXPORT_SYMBOL_GPL vmlinux 0x921b2f0a dev_pm_opp_get_opp_table +EXPORT_SYMBOL_GPL vmlinux 0x9222ed47 tcf_dev_queue_xmit EXPORT_SYMBOL_GPL vmlinux 0x92295424 clk_register_gate -EXPORT_SYMBOL_GPL vmlinux 0x922d49be is_dock_device -EXPORT_SYMBOL_GPL vmlinux 0x923464a4 fib_alias_hw_flags_set -EXPORT_SYMBOL_GPL vmlinux 0x9235369d dev_pm_opp_get_suspend_opp_freq -EXPORT_SYMBOL_GPL vmlinux 0x9236cc58 regulator_map_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x922fe4d3 nfs_ssc_client_tbl +EXPORT_SYMBOL_GPL vmlinux 0x923eea72 param_set_bool_enable_only EXPORT_SYMBOL_GPL vmlinux 0x9241b358 __static_key_slow_dec_deferred -EXPORT_SYMBOL_GPL vmlinux 0x92462b16 devlink_dpipe_match_put -EXPORT_SYMBOL_GPL vmlinux 0x9249eaef amba_ahb_device_add_res +EXPORT_SYMBOL_GPL vmlinux 0x9246feb7 rio_mport_read_config_32 EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object -EXPORT_SYMBOL_GPL vmlinux 0x924d20c1 tegra_xusb_padctl_legacy_probe -EXPORT_SYMBOL_GPL vmlinux 0x925ee940 ahci_platform_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x9266d46a gpiod_set_config +EXPORT_SYMBOL_GPL vmlinux 0x9254b6b1 __inet_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x925c79b8 perf_pmu_register +EXPORT_SYMBOL_GPL vmlinux 0x92620376 regulator_set_pull_down_regmap EXPORT_SYMBOL_GPL vmlinux 0x927487ea zynqmp_pm_read_ggs -EXPORT_SYMBOL_GPL vmlinux 0x9274d156 synth_event_trace -EXPORT_SYMBOL_GPL vmlinux 0x9277f565 cn_add_callback -EXPORT_SYMBOL_GPL vmlinux 0x92899074 dst_cache_get_ip6 -EXPORT_SYMBOL_GPL vmlinux 0x92899de2 vp_modern_set_features +EXPORT_SYMBOL_GPL vmlinux 0x92852c92 pcie_aspm_capable EXPORT_SYMBOL_GPL vmlinux 0x928ebcd4 register_ftrace_function -EXPORT_SYMBOL_GPL vmlinux 0x929837e9 blk_ksm_init -EXPORT_SYMBOL_GPL vmlinux 0x92a3274c acpi_gpiochip_request_interrupts -EXPORT_SYMBOL_GPL vmlinux 0x92a3a907 regulator_get_voltage -EXPORT_SYMBOL_GPL vmlinux 0x92a4ff48 dev_coredumpsg -EXPORT_SYMBOL_GPL vmlinux 0x92aa48c8 sk_msg_free_partial -EXPORT_SYMBOL_GPL vmlinux 0x92b82cc6 devlink_rate_leaf_create +EXPORT_SYMBOL_GPL vmlinux 0x928eef72 blkcg_deactivate_policy +EXPORT_SYMBOL_GPL vmlinux 0x928f17ec pci_epc_raise_irq +EXPORT_SYMBOL_GPL vmlinux 0x92967dc1 pci_user_write_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x92a32a31 ata_sff_hsm_move +EXPORT_SYMBOL_GPL vmlinux 0x92b3eb59 kill_pid_usb_asyncio EXPORT_SYMBOL_GPL vmlinux 0x92b8c78b hyperv_pcpu_output_arg +EXPORT_SYMBOL_GPL vmlinux 0x92babac9 gfn_to_page_many_atomic +EXPORT_SYMBOL_GPL vmlinux 0x92be5dd7 regcache_cache_bypass +EXPORT_SYMBOL_GPL vmlinux 0x92c4c5b6 fwnode_get_named_gpiod +EXPORT_SYMBOL_GPL vmlinux 0x92cc682f debugfs_attr_read EXPORT_SYMBOL_GPL vmlinux 0x92d31cfb fixed_phy_add EXPORT_SYMBOL_GPL vmlinux 0x92db8f68 do_trace_rcu_torture_read -EXPORT_SYMBOL_GPL vmlinux 0x92dea7fc raw_seq_start -EXPORT_SYMBOL_GPL vmlinux 0x92e1ea47 usb_register_device_driver +EXPORT_SYMBOL_GPL vmlinux 0x92e5a0c0 pci_pasid_features +EXPORT_SYMBOL_GPL vmlinux 0x92e72282 blk_steal_bios EXPORT_SYMBOL_GPL vmlinux 0x92e8e9ab fsverity_enqueue_verify_work -EXPORT_SYMBOL_GPL vmlinux 0x92ea9d21 ata_pci_sff_init_host -EXPORT_SYMBOL_GPL vmlinux 0x92efbd63 kvm_gfn_to_hva_cache_init -EXPORT_SYMBOL_GPL vmlinux 0x930a092f cpufreq_freq_transition_begin +EXPORT_SYMBOL_GPL vmlinux 0x93071ac3 set_online_page_callback EXPORT_SYMBOL_GPL vmlinux 0x930ab533 k3_ringacc_request_ring -EXPORT_SYMBOL_GPL vmlinux 0x9311a40e usb_hcd_giveback_urb +EXPORT_SYMBOL_GPL vmlinux 0x93149676 mpc8xxx_spi_tx_buf_u32 EXPORT_SYMBOL_GPL vmlinux 0x93255b2b ring_buffer_lock_reserve -EXPORT_SYMBOL_GPL vmlinux 0x93266292 xen_xenbus_fops +EXPORT_SYMBOL_GPL vmlinux 0x932b0950 pci_bus_add_device EXPORT_SYMBOL_GPL vmlinux 0x932c8d7a linear_range_get_value_array -EXPORT_SYMBOL_GPL vmlinux 0x93319139 ahci_pmp_retry_srst_ops -EXPORT_SYMBOL_GPL vmlinux 0x933a4772 ata_sff_dev_classify EXPORT_SYMBOL_GPL vmlinux 0x933f75e0 usb_unlink_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x93443566 devm_mbox_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x934ce8c8 led_init_default_state_get -EXPORT_SYMBOL_GPL vmlinux 0x9367fddb regulator_force_disable -EXPORT_SYMBOL_GPL vmlinux 0x936a8e22 of_property_read_u64 -EXPORT_SYMBOL_GPL vmlinux 0x937095d3 devm_extcon_dev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x9376620c rockchip_clk_register_branches +EXPORT_SYMBOL_GPL vmlinux 0x93403cf9 dm_bio_get_target_bio_nr +EXPORT_SYMBOL_GPL vmlinux 0x9352e67b dm_post_suspending +EXPORT_SYMBOL_GPL vmlinux 0x935e248a kstrdup_quotable_file +EXPORT_SYMBOL_GPL vmlinux 0x935f9a70 of_icc_xlate_onecell EXPORT_SYMBOL_GPL vmlinux 0x9384cd49 ata_tf_from_fis -EXPORT_SYMBOL_GPL vmlinux 0x93a35c08 extcon_find_edev_by_node -EXPORT_SYMBOL_GPL vmlinux 0x93a9570e spi_mem_get_name -EXPORT_SYMBOL_GPL vmlinux 0x93aadf7f devlink_port_param_value_changed -EXPORT_SYMBOL_GPL vmlinux 0x93b19197 xenbus_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0x93887b15 acomp_request_free +EXPORT_SYMBOL_GPL vmlinux 0x938d10de uprobe_unregister +EXPORT_SYMBOL_GPL vmlinux 0x93968301 sfp_add_phy +EXPORT_SYMBOL_GPL vmlinux 0x939a18ac mptcp_token_get_sock +EXPORT_SYMBOL_GPL vmlinux 0x93a7528a dev_pm_opp_get_freq +EXPORT_SYMBOL_GPL vmlinux 0x93ae5a54 iommu_dev_disable_feature +EXPORT_SYMBOL_GPL vmlinux 0x93ba05bb inet6_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x93c3f3bc led_put EXPORT_SYMBOL_GPL vmlinux 0x93c7edeb usb_find_common_endpoints -EXPORT_SYMBOL_GPL vmlinux 0x93ca07b1 usb_wakeup_enabled_descendants +EXPORT_SYMBOL_GPL vmlinux 0x93d05f22 sched_setattr_nocheck EXPORT_SYMBOL_GPL vmlinux 0x93d1d424 gnttab_free_grant_references -EXPORT_SYMBOL_GPL vmlinux 0x93d5f5e3 tps6586x_update +EXPORT_SYMBOL_GPL vmlinux 0x93d5a273 gnttab_unmap_refs +EXPORT_SYMBOL_GPL vmlinux 0x93e4b7f8 tcp_abort EXPORT_SYMBOL_GPL vmlinux 0x93edef07 devlink_health_report EXPORT_SYMBOL_GPL vmlinux 0x93f55fe0 power_supply_batinfo_ocv2cap -EXPORT_SYMBOL_GPL vmlinux 0x9402bb6b ip6_route_input_lookup -EXPORT_SYMBOL_GPL vmlinux 0x94074809 pci_slots_kset +EXPORT_SYMBOL_GPL vmlinux 0x940906b0 iommu_map +EXPORT_SYMBOL_GPL vmlinux 0x9417153f register_pernet_subsys EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put -EXPORT_SYMBOL_GPL vmlinux 0x9423e432 device_reprobe -EXPORT_SYMBOL_GPL vmlinux 0x9424f4da fsl_mc_bus_dpio_type EXPORT_SYMBOL_GPL vmlinux 0x9425bb34 nvmem_dev_name -EXPORT_SYMBOL_GPL vmlinux 0x942fc846 fib4_rule_default EXPORT_SYMBOL_GPL vmlinux 0x9430b198 trace_dump_stack EXPORT_SYMBOL_GPL vmlinux 0x9436e405 memory_group_register_dynamic -EXPORT_SYMBOL_GPL vmlinux 0x943910ae l3mdev_link_scope_lookup EXPORT_SYMBOL_GPL vmlinux 0x943fc708 xen_setup_shutdown_event -EXPORT_SYMBOL_GPL vmlinux 0x9440028d ip6_datagram_connect -EXPORT_SYMBOL_GPL vmlinux 0x9445fd27 dev_pm_opp_find_freq_ceil -EXPORT_SYMBOL_GPL vmlinux 0x94642501 bgmac_phy_connect_direct -EXPORT_SYMBOL_GPL vmlinux 0x946b7de7 kvm_vcpu_gfn_to_page +EXPORT_SYMBOL_GPL vmlinux 0x94539b78 md_bitmap_load EXPORT_SYMBOL_GPL vmlinux 0x946dd559 sha224_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x947083fd gov_update_cpu_data -EXPORT_SYMBOL_GPL vmlinux 0x947b23ec sdio_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x948330ba bus_sort_breadthfirst -EXPORT_SYMBOL_GPL vmlinux 0x948b67de of_icc_get_by_index -EXPORT_SYMBOL_GPL vmlinux 0x94901a5f ping_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x94764d03 led_trigger_blink EXPORT_SYMBOL_GPL vmlinux 0x949b5176 devlink_region_snapshot_create -EXPORT_SYMBOL_GPL vmlinux 0x949c8334 pinctrl_generic_get_group_pins EXPORT_SYMBOL_GPL vmlinux 0x949f7342 __alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0x94cd455b i2c_add_numbered_adapter -EXPORT_SYMBOL_GPL vmlinux 0x94d16dbc dprc_remove_devices -EXPORT_SYMBOL_GPL vmlinux 0x94d87aa2 rdev_clear_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x94a4a998 xhci_add_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x94b0f87e crypto_find_alg +EXPORT_SYMBOL_GPL vmlinux 0x94b17311 edac_device_handle_ce_count +EXPORT_SYMBOL_GPL vmlinux 0x94c1ba51 irq_domain_translate_onecell +EXPORT_SYMBOL_GPL vmlinux 0x94d0eba4 thermal_zone_device_disable EXPORT_SYMBOL_GPL vmlinux 0x94dd71af __srcu_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0x94dea037 of_genpd_add_device -EXPORT_SYMBOL_GPL vmlinux 0x94decba6 fscrypt_ioctl_get_policy_ex -EXPORT_SYMBOL_GPL vmlinux 0x94e05e58 usb_alloc_dev +EXPORT_SYMBOL_GPL vmlinux 0x94e3c576 wm831x_device_shutdown EXPORT_SYMBOL_GPL vmlinux 0x94e62d2e __set_phys_to_machine_multi EXPORT_SYMBOL_GPL vmlinux 0x94ef4d05 cpci_hp_stop -EXPORT_SYMBOL_GPL vmlinux 0x94efe6a9 memunmap_pages EXPORT_SYMBOL_GPL vmlinux 0x94f0136c irq_set_affinity_notifier -EXPORT_SYMBOL_GPL vmlinux 0x94fd5989 kvm_write_guest_offset_cached +EXPORT_SYMBOL_GPL vmlinux 0x94f82ebc rdev_get_regmap EXPORT_SYMBOL_GPL vmlinux 0x9504df26 irq_wake_thread -EXPORT_SYMBOL_GPL vmlinux 0x95061062 sdio_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x95151aac devfreq_cooling_register EXPORT_SYMBOL_GPL vmlinux 0x951a2773 crypto_has_alg +EXPORT_SYMBOL_GPL vmlinux 0x9525545c tcp_leave_memory_pressure EXPORT_SYMBOL_GPL vmlinux 0x952664c5 do_exit -EXPORT_SYMBOL_GPL vmlinux 0x952a9e0f sysfs_create_groups -EXPORT_SYMBOL_GPL vmlinux 0x9531aa08 __efivar_entry_get -EXPORT_SYMBOL_GPL vmlinux 0x95379eb5 devm_spi_mem_dirmap_create +EXPORT_SYMBOL_GPL vmlinux 0x9526c1a6 gpiod_set_consumer_name +EXPORT_SYMBOL_GPL vmlinux 0x95315d87 crypto_create_tfm_node +EXPORT_SYMBOL_GPL vmlinux 0x953ca037 gpiod_set_debounce EXPORT_SYMBOL_GPL vmlinux 0x953e1b9e ktime_get_real_seconds -EXPORT_SYMBOL_GPL vmlinux 0x954ad32a dev_pm_genpd_resume -EXPORT_SYMBOL_GPL vmlinux 0x9555fd08 xen_xlate_unmap_gfn_range +EXPORT_SYMBOL_GPL vmlinux 0x95425c11 dm_disk +EXPORT_SYMBOL_GPL vmlinux 0x954716fb acpi_gpiochip_free_interrupts +EXPORT_SYMBOL_GPL vmlinux 0x95476499 devlink_port_register +EXPORT_SYMBOL_GPL vmlinux 0x955075ca tcp_twsk_unique +EXPORT_SYMBOL_GPL vmlinux 0x955a16cd nvdimm_has_flush EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn +EXPORT_SYMBOL_GPL vmlinux 0x955d06ce to_software_node EXPORT_SYMBOL_GPL vmlinux 0x956ac400 ring_buffer_dropped_events_cpu -EXPORT_SYMBOL_GPL vmlinux 0x956cf1ee bio_start_io_acct -EXPORT_SYMBOL_GPL vmlinux 0x956e274a ip6_input -EXPORT_SYMBOL_GPL vmlinux 0x95789d17 regulator_set_voltage +EXPORT_SYMBOL_GPL vmlinux 0x956cf6b9 dpbp_reset +EXPORT_SYMBOL_GPL vmlinux 0x957c1456 blk_lld_busy 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 0x95a42d33 ip6_sk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x95a571de usb_put_phy -EXPORT_SYMBOL_GPL vmlinux 0x95a7ed8f fat_flush_inodes -EXPORT_SYMBOL_GPL vmlinux 0x95ab0018 iommu_aux_attach_device -EXPORT_SYMBOL_GPL vmlinux 0x95b1f953 sock_gen_put -EXPORT_SYMBOL_GPL vmlinux 0x95ba7afe stmpe_enable +EXPORT_SYMBOL_GPL vmlinux 0x959f1ade wm8350_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0x95a2bd4c pci_disable_pasid +EXPORT_SYMBOL_GPL vmlinux 0x95a72dfe dma_vunmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x95a940c3 dma_buf_put +EXPORT_SYMBOL_GPL vmlinux 0x95ac69c9 dprc_remove_devices +EXPORT_SYMBOL_GPL vmlinux 0x95b6234b sdio_writesb +EXPORT_SYMBOL_GPL vmlinux 0x95b971ae kgdb_register_io_module EXPORT_SYMBOL_GPL vmlinux 0x95bc9078 btree_free -EXPORT_SYMBOL_GPL vmlinux 0x95be97fc bus_set_iommu -EXPORT_SYMBOL_GPL vmlinux 0x95c5eb76 ping_err -EXPORT_SYMBOL_GPL vmlinux 0x95e03dba br_fdb_test_addr_hook +EXPORT_SYMBOL_GPL vmlinux 0x95bcbcbc get_dev_pagemap +EXPORT_SYMBOL_GPL vmlinux 0x95cb3707 scmi_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x95d9571b metadata_dst_free +EXPORT_SYMBOL_GPL vmlinux 0x95db1013 clk_hw_register_fixed_factor EXPORT_SYMBOL_GPL vmlinux 0x95e102ab tracepoint_probe_register EXPORT_SYMBOL_GPL vmlinux 0x95ef1ccc dmi_memdev_size -EXPORT_SYMBOL_GPL vmlinux 0x95f4ba53 devlink_trap_policers_register -EXPORT_SYMBOL_GPL vmlinux 0x9604c726 __ata_ehi_push_desc -EXPORT_SYMBOL_GPL vmlinux 0x9608cf6b rio_alloc_net +EXPORT_SYMBOL_GPL vmlinux 0x960b7310 __pci_epf_register_driver EXPORT_SYMBOL_GPL vmlinux 0x961286e0 ring_buffer_read_events_cpu -EXPORT_SYMBOL_GPL vmlinux 0x9613ac6d sfp_bus_add_upstream -EXPORT_SYMBOL_GPL vmlinux 0x9614e9b8 fsnotify_put_group +EXPORT_SYMBOL_GPL vmlinux 0x9615312a of_resolve_phandles EXPORT_SYMBOL_GPL vmlinux 0x9621d738 alarm_start_relative -EXPORT_SYMBOL_GPL vmlinux 0x962b5408 int_active_memcg EXPORT_SYMBOL_GPL vmlinux 0x962c8ae1 usb_kill_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x96329409 devm_gpiod_unhinge -EXPORT_SYMBOL_GPL vmlinux 0x963cce8a led_classdev_resume -EXPORT_SYMBOL_GPL vmlinux 0x96405032 clk_hw_register -EXPORT_SYMBOL_GPL vmlinux 0x964bb209 __pm_runtime_idle +EXPORT_SYMBOL_GPL vmlinux 0x96525538 crypto_larval_kill EXPORT_SYMBOL_GPL vmlinux 0x96554810 register_keyboard_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9679110f nvdimm_has_flush -EXPORT_SYMBOL_GPL vmlinux 0x968673f6 clk_register_divider_table -EXPORT_SYMBOL_GPL vmlinux 0x968b6972 usb_get_hcd -EXPORT_SYMBOL_GPL vmlinux 0x968bc293 devm_namespace_disable +EXPORT_SYMBOL_GPL vmlinux 0x967fd975 of_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x968096f9 sata_set_spd EXPORT_SYMBOL_GPL vmlinux 0x968f9a23 efivar_entry_iter_begin -EXPORT_SYMBOL_GPL vmlinux 0x96971c13 regmap_field_read -EXPORT_SYMBOL_GPL vmlinux 0x96a04b3c of_nvmem_cell_get -EXPORT_SYMBOL_GPL vmlinux 0x96c069be phy_save_page -EXPORT_SYMBOL_GPL vmlinux 0x96d32000 da9052_adc_read_temp -EXPORT_SYMBOL_GPL vmlinux 0x96dad6f8 kgdb_unregister_io_module -EXPORT_SYMBOL_GPL vmlinux 0x96db4b7e crypto_unregister_shashes +EXPORT_SYMBOL_GPL vmlinux 0x969cd267 register_net_sysctl +EXPORT_SYMBOL_GPL vmlinux 0x96a3e51b of_pci_address_to_resource +EXPORT_SYMBOL_GPL vmlinux 0x96ad06d2 subsys_system_register +EXPORT_SYMBOL_GPL vmlinux 0x96b10cec bus_create_file +EXPORT_SYMBOL_GPL vmlinux 0x96b92bca device_store_bool +EXPORT_SYMBOL_GPL vmlinux 0x96bed18e iomap_seek_data +EXPORT_SYMBOL_GPL vmlinux 0x96c9d578 phy_driver_is_genphy +EXPORT_SYMBOL_GPL vmlinux 0x96e610fa security_inode_setattr +EXPORT_SYMBOL_GPL vmlinux 0x96ec14ec fwnode_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x96f9a01b __SCK__tp_func_pelt_thermal_tp +EXPORT_SYMBOL_GPL vmlinux 0x96fa46f5 spi_new_ancillary_device +EXPORT_SYMBOL_GPL vmlinux 0x9712f8a5 pci_hp_add_bridge EXPORT_SYMBOL_GPL vmlinux 0x9714e0bb ktime_get_raw -EXPORT_SYMBOL_GPL vmlinux 0x97200cec irq_create_fwspec_mapping -EXPORT_SYMBOL_GPL vmlinux 0x974d5b28 of_k3_ringacc_get_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x974e8d01 rio_request_mport_dma +EXPORT_SYMBOL_GPL vmlinux 0x97198743 crypto_register_acomps +EXPORT_SYMBOL_GPL vmlinux 0x972cb9bf spi_controller_dma_map_mem_op_data +EXPORT_SYMBOL_GPL vmlinux 0x972f2a2a virtqueue_poll +EXPORT_SYMBOL_GPL vmlinux 0x9752ec3f dprc_reset_container EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same -EXPORT_SYMBOL_GPL vmlinux 0x975554f0 phy_remove_lookup +EXPORT_SYMBOL_GPL vmlinux 0x975940d3 vfs_getxattr_alloc EXPORT_SYMBOL_GPL vmlinux 0x97623558 xas_create_range +EXPORT_SYMBOL_GPL vmlinux 0x9765eb04 kvm_debugfs_dir EXPORT_SYMBOL_GPL vmlinux 0x977be5c7 klist_iter_init_node -EXPORT_SYMBOL_GPL vmlinux 0x9787b709 of_cpufreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x97813bf2 of_pci_find_child_device +EXPORT_SYMBOL_GPL vmlinux 0x978fff4a dw_pcie_own_conf_map_bus +EXPORT_SYMBOL_GPL vmlinux 0x9793e2da dev_pm_domain_detach +EXPORT_SYMBOL_GPL vmlinux 0x9795f0ec bpf_trace_run1 EXPORT_SYMBOL_GPL vmlinux 0x97971f83 srcutorture_get_gp_data -EXPORT_SYMBOL_GPL vmlinux 0x97a85d39 pci_user_read_config_word -EXPORT_SYMBOL_GPL vmlinux 0x97a8b9f7 sdio_release_host -EXPORT_SYMBOL_GPL vmlinux 0x97c05475 iommu_domain_alloc -EXPORT_SYMBOL_GPL vmlinux 0x97d2f481 iommu_device_sysfs_remove -EXPORT_SYMBOL_GPL vmlinux 0x97dab234 dev_pm_opp_of_add_table_indexed +EXPORT_SYMBOL_GPL vmlinux 0x97bb0424 regmap_write_async +EXPORT_SYMBOL_GPL vmlinux 0x97c12484 sysfs_merge_group EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent -EXPORT_SYMBOL_GPL vmlinux 0x97f3dd95 devm_tegra_core_dev_init_opp_table -EXPORT_SYMBOL_GPL vmlinux 0x97f3f792 extcon_dev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x982a9640 shmem_truncate_range -EXPORT_SYMBOL_GPL vmlinux 0x982e9d49 pci_probe_reset_bus -EXPORT_SYMBOL_GPL vmlinux 0x9832af20 ata_sff_pause +EXPORT_SYMBOL_GPL vmlinux 0x97e1b420 power_supply_get_battery_info +EXPORT_SYMBOL_GPL vmlinux 0x97ebef39 of_css +EXPORT_SYMBOL_GPL vmlinux 0x9807bf29 perf_event_read_value +EXPORT_SYMBOL_GPL vmlinux 0x980c27ac sysfs_add_link_to_group +EXPORT_SYMBOL_GPL vmlinux 0x98160f15 nd_blk_region_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x981ada83 serial8250_em485_stop_tx +EXPORT_SYMBOL_GPL vmlinux 0x982f312f power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0x9831727a gpiod_get_raw_value EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick +EXPORT_SYMBOL_GPL vmlinux 0x984fe653 blk_trace_startstop EXPORT_SYMBOL_GPL vmlinux 0x98503a63 mpi_alloc -EXPORT_SYMBOL_GPL vmlinux 0x9850c09d pinconf_generic_dt_free_map -EXPORT_SYMBOL_GPL vmlinux 0x9853138b spi_res_release EXPORT_SYMBOL_GPL vmlinux 0x985453e1 lease_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x98573486 __traceiter_fdb_delete -EXPORT_SYMBOL_GPL vmlinux 0x985c1f95 ahci_check_ready -EXPORT_SYMBOL_GPL vmlinux 0x9860a2bf xenbus_match -EXPORT_SYMBOL_GPL vmlinux 0x9875337f rio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x986e68f8 battery_hook_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9878fda6 ahci_ops EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x987af3ce pci_set_host_bridge_release -EXPORT_SYMBOL_GPL vmlinux 0x987b3e35 genphy_c45_read_link +EXPORT_SYMBOL_GPL vmlinux 0x987bdceb bpf_event_output +EXPORT_SYMBOL_GPL vmlinux 0x988e9325 xdp_attachment_setup EXPORT_SYMBOL_GPL vmlinux 0x989074ff kmsg_dump_reason_str +EXPORT_SYMBOL_GPL vmlinux 0x98a77b07 iomap_readpage EXPORT_SYMBOL_GPL vmlinux 0x98b142fa blk_fill_rwbs -EXPORT_SYMBOL_GPL vmlinux 0x98b39a4c device_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x98b60092 ata_link_offline +EXPORT_SYMBOL_GPL vmlinux 0x98b6062e pm_clk_init EXPORT_SYMBOL_GPL vmlinux 0x98c59274 __tracepoint_rpm_idle -EXPORT_SYMBOL_GPL vmlinux 0x98dad580 __irq_set_handler +EXPORT_SYMBOL_GPL vmlinux 0x98c5e04c dw_pcie_wait_for_link +EXPORT_SYMBOL_GPL vmlinux 0x98c7f311 fsnotify_init_mark +EXPORT_SYMBOL_GPL vmlinux 0x98d1ebb9 fs_kobj +EXPORT_SYMBOL_GPL vmlinux 0x98d7b359 pm_genpd_init +EXPORT_SYMBOL_GPL vmlinux 0x98e8ec08 cpufreq_driver_fast_switch EXPORT_SYMBOL_GPL vmlinux 0x98ee62b2 ring_buffer_record_disable_cpu -EXPORT_SYMBOL_GPL vmlinux 0x98fa1632 fsverity_ioctl_measure EXPORT_SYMBOL_GPL vmlinux 0x98fa1e20 dm_get_reserved_rq_based_ios -EXPORT_SYMBOL_GPL vmlinux 0x9906429c xfrm_audit_state_notfound -EXPORT_SYMBOL_GPL vmlinux 0x9928f0dc virtqueue_add_outbuf -EXPORT_SYMBOL_GPL vmlinux 0x993329f6 pinmux_generic_get_function_groups -EXPORT_SYMBOL_GPL vmlinux 0x9934e0ac pm_generic_thaw_noirq -EXPORT_SYMBOL_GPL vmlinux 0x99479700 dprc_setup -EXPORT_SYMBOL_GPL vmlinux 0x994a6918 of_dma_is_coherent -EXPORT_SYMBOL_GPL vmlinux 0x994dd388 pci_vfs_assigned -EXPORT_SYMBOL_GPL vmlinux 0x99569328 ata_sas_slave_configure -EXPORT_SYMBOL_GPL vmlinux 0x9959805d devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0x98fac4bf sysfs_create_groups +EXPORT_SYMBOL_GPL vmlinux 0x991779b1 kvm_get_kvm +EXPORT_SYMBOL_GPL vmlinux 0x9917e456 devlink_resource_occ_get_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9918dcf9 crypto_unregister_ahash +EXPORT_SYMBOL_GPL vmlinux 0x993b71e6 edac_pci_handle_npe +EXPORT_SYMBOL_GPL vmlinux 0x993c5824 regcache_cache_only +EXPORT_SYMBOL_GPL vmlinux 0x9954515f is_current_mnt_ns +EXPORT_SYMBOL_GPL vmlinux 0x995c0d64 of_platform_device_destroy EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on -EXPORT_SYMBOL_GPL vmlinux 0x9961a56b make_device_exclusive_range EXPORT_SYMBOL_GPL vmlinux 0x9968aacb __audit_log_nfcfg -EXPORT_SYMBOL_GPL vmlinux 0x99706bc3 pinctrl_utils_free_map -EXPORT_SYMBOL_GPL vmlinux 0x997d92ef of_icc_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0x9989ef8f serial8250_do_set_divisor +EXPORT_SYMBOL_GPL vmlinux 0x997055a3 rio_mport_get_physefb +EXPORT_SYMBOL_GPL vmlinux 0x9977dab9 ohci_restart +EXPORT_SYMBOL_GPL vmlinux 0x9982ad83 dev_xdp_prog_count +EXPORT_SYMBOL_GPL vmlinux 0x9988e27c fsl_mc_portal_free EXPORT_SYMBOL_GPL vmlinux 0x998d79d6 x509_decode_time -EXPORT_SYMBOL_GPL vmlinux 0x9990a16f pci_find_next_ext_capability -EXPORT_SYMBOL_GPL vmlinux 0x99a3f1ef phy_exit -EXPORT_SYMBOL_GPL vmlinux 0x99a85642 usb_hub_clear_tt_buffer -EXPORT_SYMBOL_GPL vmlinux 0x99ac82f9 crypto_alloc_base -EXPORT_SYMBOL_GPL vmlinux 0x99c85158 pktgen_xfrm_outer_mode_output -EXPORT_SYMBOL_GPL vmlinux 0x99cbc179 pm_genpd_remove -EXPORT_SYMBOL_GPL vmlinux 0x99d21aa9 bpf_trace_run2 +EXPORT_SYMBOL_GPL vmlinux 0x99919e22 rio_request_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0x99abeadf blk_update_request +EXPORT_SYMBOL_GPL vmlinux 0x99ac7c42 device_move +EXPORT_SYMBOL_GPL vmlinux 0x99ae254c __traceiter_pelt_rt_tp +EXPORT_SYMBOL_GPL vmlinux 0x99b3ce28 of_icc_get +EXPORT_SYMBOL_GPL vmlinux 0x99b45976 of_property_read_u32_index +EXPORT_SYMBOL_GPL vmlinux 0x99c33aad dm_table_device_name +EXPORT_SYMBOL_GPL vmlinux 0x99cfa6e2 k3_ringacc_ring_cfg +EXPORT_SYMBOL_GPL vmlinux 0x99d0f082 __pm_stay_awake EXPORT_SYMBOL_GPL vmlinux 0x99dd730c page_reporting_unregister -EXPORT_SYMBOL_GPL vmlinux 0x99de34fa shash_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x99df7bba gpiochip_line_is_open_source EXPORT_SYMBOL_GPL vmlinux 0x99f018c4 nvmem_cell_read -EXPORT_SYMBOL_GPL vmlinux 0x99f0e7d6 bpf_offload_dev_create EXPORT_SYMBOL_GPL vmlinux 0x99f2d00a sysfs_emit_at -EXPORT_SYMBOL_GPL vmlinux 0x9a0573b2 dev_pm_opp_of_remove_table -EXPORT_SYMBOL_GPL vmlinux 0x9a07c4a5 kvm_vcpu_yield_to +EXPORT_SYMBOL_GPL vmlinux 0x99f6aa2f iommu_sva_unbind_gpasid +EXPORT_SYMBOL_GPL vmlinux 0x9a0363f9 regulator_disable +EXPORT_SYMBOL_GPL vmlinux 0x9a04f2b5 handle_fasteoi_mask_irq +EXPORT_SYMBOL_GPL vmlinux 0x9a099a20 fat_time_unix2fat EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name -EXPORT_SYMBOL_GPL vmlinux 0x9a1ed68f badblocks_check +EXPORT_SYMBOL_GPL vmlinux 0x9a159c7b crypto_alloc_tfm_node +EXPORT_SYMBOL_GPL vmlinux 0x9a1ae3ee skb_scrub_packet EXPORT_SYMBOL_GPL vmlinux 0x9a23ea6b alarm_expires_remaining -EXPORT_SYMBOL_GPL vmlinux 0x9a4cd11d subsys_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x9a2a6cac __mnt_is_readonly +EXPORT_SYMBOL_GPL vmlinux 0x9a2a6e56 ata_link_online +EXPORT_SYMBOL_GPL vmlinux 0x9a3e1ded handle_fasteoi_irq +EXPORT_SYMBOL_GPL vmlinux 0x9a422066 thermal_zone_bind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0x9a4f6ad4 class_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x9a5377c7 dm_accept_partial_bio +EXPORT_SYMBOL_GPL vmlinux 0x9a577cec i2c_adapter_type EXPORT_SYMBOL_GPL vmlinux 0x9a58dd2d trace_print_bitmask_seq -EXPORT_SYMBOL_GPL vmlinux 0x9a5b1798 pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x9a5b506e clk_hw_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0x9a5cbe86 fsl_mc_portal_allocate EXPORT_SYMBOL_GPL vmlinux 0x9a5dce5c rhashtable_walk_start_check -EXPORT_SYMBOL_GPL vmlinux 0x9a65169f register_virtio_device -EXPORT_SYMBOL_GPL vmlinux 0x9a65a2b6 clk_fixed_rate_ops -EXPORT_SYMBOL_GPL vmlinux 0x9a820f5a phy_create_lookup -EXPORT_SYMBOL_GPL vmlinux 0x9a92765d __blk_req_zone_write_lock -EXPORT_SYMBOL_GPL vmlinux 0x9a9dde46 exportfs_decode_fh_raw -EXPORT_SYMBOL_GPL vmlinux 0x9aa4fe0a device_for_each_child -EXPORT_SYMBOL_GPL vmlinux 0x9aae3ef5 kset_find_obj -EXPORT_SYMBOL_GPL vmlinux 0x9ab77578 __pm_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0x9abc4877 pm_generic_resume_early +EXPORT_SYMBOL_GPL vmlinux 0x9a727313 spi_async_locked +EXPORT_SYMBOL_GPL vmlinux 0x9a771433 kvm_write_guest_page +EXPORT_SYMBOL_GPL vmlinux 0x9a79295c watchdog_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x9a865d91 acpi_create_platform_device +EXPORT_SYMBOL_GPL vmlinux 0x9a8698b2 dma_buf_vmap +EXPORT_SYMBOL_GPL vmlinux 0x9aa7db1a pci_epc_unmap_addr +EXPORT_SYMBOL_GPL vmlinux 0x9aa9241e phy_pm_runtime_put_sync EXPORT_SYMBOL_GPL vmlinux 0x9ac11b74 suspend_set_ops -EXPORT_SYMBOL_GPL vmlinux 0x9ac48064 iommu_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9acba9d1 pci_epc_init_notify +EXPORT_SYMBOL_GPL vmlinux 0x9ace7838 i2c_new_scanned_device +EXPORT_SYMBOL_GPL vmlinux 0x9ad956ee gpiochip_populate_parent_fwspec_twocell +EXPORT_SYMBOL_GPL vmlinux 0x9ae516b9 device_init_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x9ae57d8c crypto_enqueue_request EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty -EXPORT_SYMBOL_GPL vmlinux 0x9aeb704b ehci_handshake +EXPORT_SYMBOL_GPL vmlinux 0x9af388a2 scsi_queue_work EXPORT_SYMBOL_GPL vmlinux 0x9af49514 icc_bulk_set_bw -EXPORT_SYMBOL_GPL vmlinux 0x9af94823 xenbus_dev_error -EXPORT_SYMBOL_GPL vmlinux 0x9b009aad trace_get_event_file -EXPORT_SYMBOL_GPL vmlinux 0x9b034cfc bsg_remove_queue +EXPORT_SYMBOL_GPL vmlinux 0x9af5cc6e devlink_port_attrs_set EXPORT_SYMBOL_GPL vmlinux 0x9b0eaa52 tegra210_xusb_pll_hw_sequence_start -EXPORT_SYMBOL_GPL vmlinux 0x9b10e066 fsstack_copy_inode_size -EXPORT_SYMBOL_GPL vmlinux 0x9b15b613 device_link_del -EXPORT_SYMBOL_GPL vmlinux 0x9b399fee bus_unregister -EXPORT_SYMBOL_GPL vmlinux 0x9b481cf0 pci_epc_multi_mem_init -EXPORT_SYMBOL_GPL vmlinux 0x9b4b60dd xen_remap_vma_range -EXPORT_SYMBOL_GPL vmlinux 0x9b50353c perf_aux_output_skip +EXPORT_SYMBOL_GPL vmlinux 0x9b26a7b4 scsi_target_block +EXPORT_SYMBOL_GPL vmlinux 0x9b2f93fd dmaengine_unmap_put +EXPORT_SYMBOL_GPL vmlinux 0x9b31cc1c md_allow_write +EXPORT_SYMBOL_GPL vmlinux 0x9b34748d dw_pcie_read_dbi EXPORT_SYMBOL_GPL vmlinux 0x9b555c8c pm_suspend_default_s2idle EXPORT_SYMBOL_GPL vmlinux 0x9b698c42 ioasid_set_data +EXPORT_SYMBOL_GPL vmlinux 0x9b6e9219 __traceiter_block_bio_complete EXPORT_SYMBOL_GPL vmlinux 0x9b6ec967 ring_buffer_size +EXPORT_SYMBOL_GPL vmlinux 0x9b700a29 mmu_interval_notifier_insert EXPORT_SYMBOL_GPL vmlinux 0x9b70c6ff tracepoint_probe_register_prio -EXPORT_SYMBOL_GPL vmlinux 0x9b76c8ad of_pci_range_parser_init -EXPORT_SYMBOL_GPL vmlinux 0x9b7ce283 ata_do_set_mode -EXPORT_SYMBOL_GPL vmlinux 0x9b863658 __regmap_init_spi EXPORT_SYMBOL_GPL vmlinux 0x9b896724 devlink_param_value_str_fill EXPORT_SYMBOL_GPL vmlinux 0x9b9071cb get_old_itimerspec32 -EXPORT_SYMBOL_GPL vmlinux 0x9b90db47 fwnode_graph_get_remote_endpoint EXPORT_SYMBOL_GPL vmlinux 0x9b92d16e pinctrl_gpio_set_config -EXPORT_SYMBOL_GPL vmlinux 0x9b96a03f badblocks_set -EXPORT_SYMBOL_GPL vmlinux 0x9b9736b0 acomp_request_free -EXPORT_SYMBOL_GPL vmlinux 0x9ba2176f mtk_build_eint +EXPORT_SYMBOL_GPL vmlinux 0x9b9d99de of_mm_gpiochip_add_data EXPORT_SYMBOL_GPL vmlinux 0x9ba2bb2b gpio_request_array -EXPORT_SYMBOL_GPL vmlinux 0x9ba7508a pci_status_get_and_clear_errors -EXPORT_SYMBOL_GPL vmlinux 0x9bae33a7 sk_clone_lock -EXPORT_SYMBOL_GPL vmlinux 0x9bb7083a ata_host_start -EXPORT_SYMBOL_GPL vmlinux 0x9bbab727 pci_epf_bind -EXPORT_SYMBOL_GPL vmlinux 0x9bc589ee dpbp_get_attributes +EXPORT_SYMBOL_GPL vmlinux 0x9ba7a35e dev_pm_opp_adjust_voltage +EXPORT_SYMBOL_GPL vmlinux 0x9baa0a4e of_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0x9bb1a187 clkdev_hw_create +EXPORT_SYMBOL_GPL vmlinux 0x9bbd5c9f tun_get_tx_ring +EXPORT_SYMBOL_GPL vmlinux 0x9bc8fc3b pcie_update_link_speed EXPORT_SYMBOL_GPL vmlinux 0x9bcf9f7d housekeeping_enabled +EXPORT_SYMBOL_GPL vmlinux 0x9bda62ed rtnl_get_net_ns_capable +EXPORT_SYMBOL_GPL vmlinux 0x9bdafd1e tty_perform_flush +EXPORT_SYMBOL_GPL vmlinux 0x9bddb1c6 ata_sff_tf_load +EXPORT_SYMBOL_GPL vmlinux 0x9be271c6 gpiochip_free_own_desc EXPORT_SYMBOL_GPL vmlinux 0x9be30d27 mhp_get_pluggable_range +EXPORT_SYMBOL_GPL vmlinux 0x9be3c85e rio_add_mport_pw_handler +EXPORT_SYMBOL_GPL vmlinux 0x9be83240 fwnode_handle_get EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui -EXPORT_SYMBOL_GPL vmlinux 0x9bf669a6 raw_unhash_sk -EXPORT_SYMBOL_GPL vmlinux 0x9c00a1b6 ti_sci_get_handle -EXPORT_SYMBOL_GPL vmlinux 0x9c109b42 dma_buf_vmap +EXPORT_SYMBOL_GPL vmlinux 0x9bf2e5d0 serdev_device_write_buf +EXPORT_SYMBOL_GPL vmlinux 0x9bffb4d9 screen_glyph EXPORT_SYMBOL_GPL vmlinux 0x9c149893 ftrace_ops_set_global_filter -EXPORT_SYMBOL_GPL vmlinux 0x9c17e2d9 of_phandle_iterator_init -EXPORT_SYMBOL_GPL vmlinux 0x9c25ec40 pm_generic_suspend -EXPORT_SYMBOL_GPL vmlinux 0x9c31bc03 pci_epc_destroy +EXPORT_SYMBOL_GPL vmlinux 0x9c378e6b kthread_use_mm EXPORT_SYMBOL_GPL vmlinux 0x9c448d8d tegra210_put_utmipll_out_iddq +EXPORT_SYMBOL_GPL vmlinux 0x9c470437 badblocks_check EXPORT_SYMBOL_GPL vmlinux 0x9c51b078 srcu_barrier -EXPORT_SYMBOL_GPL vmlinux 0x9c54d095 nvdimm_bus_add_badrange -EXPORT_SYMBOL_GPL vmlinux 0x9c588b74 hisi_uncore_pmu_enable -EXPORT_SYMBOL_GPL vmlinux 0x9c6597ce blk_ksm_register +EXPORT_SYMBOL_GPL vmlinux 0x9c691bea pci_d3cold_enable EXPORT_SYMBOL_GPL vmlinux 0x9c6febfc add_uevent_var +EXPORT_SYMBOL_GPL vmlinux 0x9c7ccdc0 pcie_flr EXPORT_SYMBOL_GPL vmlinux 0x9c803020 usb_phy_roothub_power_on -EXPORT_SYMBOL_GPL vmlinux 0x9cb1c819 regulator_bulk_disable -EXPORT_SYMBOL_GPL vmlinux 0x9cb1e543 spi_new_ancillary_device +EXPORT_SYMBOL_GPL vmlinux 0x9c927c76 scsi_flush_work +EXPORT_SYMBOL_GPL vmlinux 0x9ca7a33d tps65912_device_init EXPORT_SYMBOL_GPL vmlinux 0x9cb5af34 disable_kprobe -EXPORT_SYMBOL_GPL vmlinux 0x9cbd2c1f blk_rq_err_bytes +EXPORT_SYMBOL_GPL vmlinux 0x9cbc9635 thermal_zone_device_register EXPORT_SYMBOL_GPL vmlinux 0x9cc4f70a register_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9cc53869 rockchip_pcie_deinit_phys +EXPORT_SYMBOL_GPL vmlinux 0x9cd4561b __traceiter_sched_util_est_cfs_tp EXPORT_SYMBOL_GPL vmlinux 0x9cd7551a rhashtable_walk_stop -EXPORT_SYMBOL_GPL vmlinux 0x9ce0e452 sysfs_merge_group -EXPORT_SYMBOL_GPL vmlinux 0x9cef0d4f device_match_name +EXPORT_SYMBOL_GPL vmlinux 0x9cf204b7 fsl_mc_object_allocate +EXPORT_SYMBOL_GPL vmlinux 0x9cf3396f regulator_get_voltage_rdev EXPORT_SYMBOL_GPL vmlinux 0x9cf37c44 __iowrite32_copy -EXPORT_SYMBOL_GPL vmlinux 0x9cf74154 rio_free_net -EXPORT_SYMBOL_GPL vmlinux 0x9d031bab devlink_register +EXPORT_SYMBOL_GPL vmlinux 0x9cfcbff9 dev_pm_qos_add_ancestor_request +EXPORT_SYMBOL_GPL vmlinux 0x9cfd47bb sdio_claim_host EXPORT_SYMBOL_GPL vmlinux 0x9d09e8ae ring_buffer_event_data -EXPORT_SYMBOL_GPL vmlinux 0x9d1712bc iomap_file_buffered_write -EXPORT_SYMBOL_GPL vmlinux 0x9d2e2a12 fsverity_file_open +EXPORT_SYMBOL_GPL vmlinux 0x9d23c84f dev_pm_set_dedicated_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x9d23d5c2 od_register_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0x9d27cb22 devm_regmap_init_vexpress_config EXPORT_SYMBOL_GPL vmlinux 0x9d2f49ef __SCK__tp_func_pelt_se_tp -EXPORT_SYMBOL_GPL vmlinux 0x9d34f55a devlink_sb_register -EXPORT_SYMBOL_GPL vmlinux 0x9d3c7e15 fsl8250_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0x9d42cb49 wm831x_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x9d438991 devm_pm_opp_of_add_table -EXPORT_SYMBOL_GPL vmlinux 0x9d47000d bpf_trace_run3 -EXPORT_SYMBOL_GPL vmlinux 0x9d477d41 usb_get_status -EXPORT_SYMBOL_GPL vmlinux 0x9d4d456d rockchip_pcie_enable_clocks -EXPORT_SYMBOL_GPL vmlinux 0x9d70d143 nfs42_ssc_register -EXPORT_SYMBOL_GPL vmlinux 0x9d76216f sdio_writeb_readb -EXPORT_SYMBOL_GPL vmlinux 0x9d80e324 pcie_update_link_speed -EXPORT_SYMBOL_GPL vmlinux 0x9d891bc5 uart_insert_char -EXPORT_SYMBOL_GPL vmlinux 0x9d8ad3b3 dev_attr_ncq_prio_supported -EXPORT_SYMBOL_GPL vmlinux 0x9dc4daf8 cpufreq_driver_resolve_freq -EXPORT_SYMBOL_GPL vmlinux 0x9dde938c regulator_enable -EXPORT_SYMBOL_GPL vmlinux 0x9de93fde devlink_dpipe_headers_register +EXPORT_SYMBOL_GPL vmlinux 0x9d36ee6b dev_pm_opp_remove +EXPORT_SYMBOL_GPL vmlinux 0x9d3bf72a __irq_alloc_domain_generic_chips +EXPORT_SYMBOL_GPL vmlinux 0x9d3c9fc0 pci_epc_clear_bar +EXPORT_SYMBOL_GPL vmlinux 0x9d3cd1f4 __spi_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x9d4d6d2c pci_dev_unlock +EXPORT_SYMBOL_GPL vmlinux 0x9d593952 badblocks_show +EXPORT_SYMBOL_GPL vmlinux 0x9d70e6bc crypto_grab_shash +EXPORT_SYMBOL_GPL vmlinux 0x9d7a901e pci_disable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x9d8f3b42 usb_store_new_id +EXPORT_SYMBOL_GPL vmlinux 0x9dab3b51 kvm_clear_guest +EXPORT_SYMBOL_GPL vmlinux 0x9db69ed1 rpi_firmware_get +EXPORT_SYMBOL_GPL vmlinux 0x9dbd2ea1 kvm_read_guest_offset_cached +EXPORT_SYMBOL_GPL vmlinux 0x9de33aaf ptp_parse_header +EXPORT_SYMBOL_GPL vmlinux 0x9df92839 gpiochip_line_is_valid EXPORT_SYMBOL_GPL vmlinux 0x9e005e6f cppc_get_perf_caps -EXPORT_SYMBOL_GPL vmlinux 0x9e02a5f1 mmput -EXPORT_SYMBOL_GPL vmlinux 0x9e03ac83 device_register EXPORT_SYMBOL_GPL vmlinux 0x9e047ec0 __srcu_read_lock -EXPORT_SYMBOL_GPL vmlinux 0x9e29e311 clk_hw_register_gate2 -EXPORT_SYMBOL_GPL vmlinux 0x9e2f6e7d device_wakeup_disable -EXPORT_SYMBOL_GPL vmlinux 0x9e301b3e max8997_bulk_write -EXPORT_SYMBOL_GPL vmlinux 0x9e461a2c sk_msg_trim +EXPORT_SYMBOL_GPL vmlinux 0x9e13b392 extcon_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9e2b5f2e sysfs_create_group EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field -EXPORT_SYMBOL_GPL vmlinux 0x9e4789ce pci_epf_type_add_cfs -EXPORT_SYMBOL_GPL vmlinux 0x9e569181 mpc8xxx_spi_rx_buf_u16 -EXPORT_SYMBOL_GPL vmlinux 0x9e5e154b io_cgrp_subsys -EXPORT_SYMBOL_GPL vmlinux 0x9e672659 wakeup_sources_walk_start -EXPORT_SYMBOL_GPL vmlinux 0x9e7d9952 regulator_get_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x9e80566e cpufreq_generic_init -EXPORT_SYMBOL_GPL vmlinux 0x9e80c5d1 __devm_reset_control_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x9e562b05 sdio_signal_irq +EXPORT_SYMBOL_GPL vmlinux 0x9e5fbee1 blk_stat_enable_accounting +EXPORT_SYMBOL_GPL vmlinux 0x9e678ebb ping_getfrag +EXPORT_SYMBOL_GPL vmlinux 0x9e691b53 bus_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9e74440c pm_runtime_force_suspend +EXPORT_SYMBOL_GPL vmlinux 0x9e75e480 bpf_redirect_info +EXPORT_SYMBOL_GPL vmlinux 0x9e7b0137 efivar_entry_remove +EXPORT_SYMBOL_GPL vmlinux 0x9e838527 devm_of_phy_get_by_index EXPORT_SYMBOL_GPL vmlinux 0x9e9b913d __tracepoint_arm_event -EXPORT_SYMBOL_GPL vmlinux 0x9e9de63a dev_xdp_prog_count -EXPORT_SYMBOL_GPL vmlinux 0x9ea3e97f tty_kopen_shared -EXPORT_SYMBOL_GPL vmlinux 0x9eaf034a dev_pm_domain_attach_by_id -EXPORT_SYMBOL_GPL vmlinux 0x9ec1af5c thermal_zone_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x9ec3617e akcipher_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x9e9fef3f devfreq_event_reset_event +EXPORT_SYMBOL_GPL vmlinux 0x9ea51a75 meson_pmx_get_groups +EXPORT_SYMBOL_GPL vmlinux 0x9eb1bd77 vp_modern_probe +EXPORT_SYMBOL_GPL vmlinux 0x9ecfc337 relay_buf_full EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9ede8977 devlink_port_type_clear +EXPORT_SYMBOL_GPL vmlinux 0x9edcf554 acpi_dma_request_slave_chan_by_index EXPORT_SYMBOL_GPL vmlinux 0x9eebdde7 mpi_point_new -EXPORT_SYMBOL_GPL vmlinux 0x9ef33701 rq_flush_dcache_pages -EXPORT_SYMBOL_GPL vmlinux 0x9ef35dbe __rio_local_write_config_16 -EXPORT_SYMBOL_GPL vmlinux 0x9f28b3b5 tty_port_default_client_ops -EXPORT_SYMBOL_GPL vmlinux 0x9f2f4d39 dev_pm_genpd_set_performance_state +EXPORT_SYMBOL_GPL vmlinux 0x9f0226da crypto_larval_alloc +EXPORT_SYMBOL_GPL vmlinux 0x9f0385dc regulator_set_voltage_sel_pickable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x9f31343f spi_get_device_id EXPORT_SYMBOL_GPL vmlinux 0x9f4c4aa0 spi_delay_to_ns EXPORT_SYMBOL_GPL vmlinux 0x9f517986 HYPERVISOR_hvm_op EXPORT_SYMBOL_GPL vmlinux 0x9f56c4b9 __SCK__tp_func_devlink_hwmsg -EXPORT_SYMBOL_GPL vmlinux 0x9fa640ea modify_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x9f7c9872 of_changeset_action +EXPORT_SYMBOL_GPL vmlinux 0x9f7fc8b7 wm831x_auxadc_read_uv +EXPORT_SYMBOL_GPL vmlinux 0x9fb79f4e i2c_new_smbus_alert_device +EXPORT_SYMBOL_GPL vmlinux 0x9fbe89d0 msg_zerocopy_callback EXPORT_SYMBOL_GPL vmlinux 0x9fbfebab erst_write -EXPORT_SYMBOL_GPL vmlinux 0x9fc99dd3 pci_ioremap_bar +EXPORT_SYMBOL_GPL vmlinux 0x9fc6e9c4 event_triggers_call +EXPORT_SYMBOL_GPL vmlinux 0x9fc8a0bf posix_acl_access_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0x9fcc6211 bpf_prog_create_from_user EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x9fe4f27f pci_epc_init_notify -EXPORT_SYMBOL_GPL vmlinux 0x9fe7d3dc hisi_clk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x9fda65eb kvm_vcpu_gfn_to_hva +EXPORT_SYMBOL_GPL vmlinux 0x9fdc3861 vfs_fallocate +EXPORT_SYMBOL_GPL vmlinux 0x9fe2d5bd acpi_pm_wakeup_event EXPORT_SYMBOL_GPL vmlinux 0x9fe899b7 get_cpu_idle_time EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm -EXPORT_SYMBOL_GPL vmlinux 0x9fffa0ff nf_queue_entry_get_refs -EXPORT_SYMBOL_GPL vmlinux 0xa0060e99 mmc_crypto_prepare_req -EXPORT_SYMBOL_GPL vmlinux 0xa01024f9 fuse_simple_background +EXPORT_SYMBOL_GPL vmlinux 0x9ff6e006 regulator_disable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x9fff4b62 elv_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa00610af transport_configure_device +EXPORT_SYMBOL_GPL vmlinux 0xa006541f unregister_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0xa00c2b8d device_phy_find_device +EXPORT_SYMBOL_GPL vmlinux 0xa010a120 platform_get_irq_optional +EXPORT_SYMBOL_GPL vmlinux 0xa015090c usb_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0xa018cca9 fwnode_find_reference EXPORT_SYMBOL_GPL vmlinux 0xa01a8d9b nd_cmd_bus_desc -EXPORT_SYMBOL_GPL vmlinux 0xa022a5b1 hisi_uncore_pmu_event_update -EXPORT_SYMBOL_GPL vmlinux 0xa026df38 gpiochip_get_data -EXPORT_SYMBOL_GPL vmlinux 0xa02a418e skcipher_walk_virt -EXPORT_SYMBOL_GPL vmlinux 0xa02fc43d tpm_tis_remove -EXPORT_SYMBOL_GPL vmlinux 0xa03d43d3 usb_reset_configuration -EXPORT_SYMBOL_GPL vmlinux 0xa040f85d crypto_register_kpp +EXPORT_SYMBOL_GPL vmlinux 0xa0209d11 devres_destroy +EXPORT_SYMBOL_GPL vmlinux 0xa029371b __regmap_init +EXPORT_SYMBOL_GPL vmlinux 0xa02af78d pm_generic_freeze_late +EXPORT_SYMBOL_GPL vmlinux 0xa03bebf3 regulator_set_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0xa04d591f hvc_poll +EXPORT_SYMBOL_GPL vmlinux 0xa04e8507 dev_pm_opp_find_level_ceil EXPORT_SYMBOL_GPL vmlinux 0xa04f945a cpus_read_lock -EXPORT_SYMBOL_GPL vmlinux 0xa053b785 nf_checksum_partial -EXPORT_SYMBOL_GPL vmlinux 0xa0553358 reset_controller_register -EXPORT_SYMBOL_GPL vmlinux 0xa05b3dfb ata_scsi_slave_config -EXPORT_SYMBOL_GPL vmlinux 0xa05da4fc ata_pci_device_do_resume -EXPORT_SYMBOL_GPL vmlinux 0xa06a3ed2 adp5520_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xa06cde39 devres_remove -EXPORT_SYMBOL_GPL vmlinux 0xa06e88c2 bpf_prog_get_type_dev EXPORT_SYMBOL_GPL vmlinux 0xa071c0cd tegra210_xusb_pll_hw_control_enable EXPORT_SYMBOL_GPL vmlinux 0xa080c5e5 smp_call_function_single_async -EXPORT_SYMBOL_GPL vmlinux 0xa0837e37 __kernel_write -EXPORT_SYMBOL_GPL vmlinux 0xa08ebde2 relay_flush -EXPORT_SYMBOL_GPL vmlinux 0xa09267d6 crypto_unregister_skciphers -EXPORT_SYMBOL_GPL vmlinux 0xa09c06e4 gpiod_get_index -EXPORT_SYMBOL_GPL vmlinux 0xa09e5db4 devm_regmap_field_bulk_free -EXPORT_SYMBOL_GPL vmlinux 0xa0a98214 devm_regmap_field_bulk_alloc -EXPORT_SYMBOL_GPL vmlinux 0xa0b886dd __devm_alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0xa0c3351e sdio_release_irq +EXPORT_SYMBOL_GPL vmlinux 0xa09dd5cb gpiochip_generic_config +EXPORT_SYMBOL_GPL vmlinux 0xa0b8b04d bpf_trace_run5 +EXPORT_SYMBOL_GPL vmlinux 0xa0bb6369 fwnode_get_next_available_child_node +EXPORT_SYMBOL_GPL vmlinux 0xa0ceb1f9 qcom_smem_state_get EXPORT_SYMBOL_GPL vmlinux 0xa0d3456d nr_swap_pages -EXPORT_SYMBOL_GPL vmlinux 0xa0da8119 usb_get_descriptor -EXPORT_SYMBOL_GPL vmlinux 0xa0f2389a gpiod_set_raw_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xa10dc4b9 blk_mq_unfreeze_queue +EXPORT_SYMBOL_GPL vmlinux 0xa0d65a6a regcache_mark_dirty +EXPORT_SYMBOL_GPL vmlinux 0xa104037f irq_domain_free_irqs_common EXPORT_SYMBOL_GPL vmlinux 0xa11216be xen_store_domain_type -EXPORT_SYMBOL_GPL vmlinux 0xa11beeb8 fat_alloc_new_dir -EXPORT_SYMBOL_GPL vmlinux 0xa1238a4c gpiochip_irq_domain_activate -EXPORT_SYMBOL_GPL vmlinux 0xa1296886 smpboot_unregister_percpu_thread -EXPORT_SYMBOL_GPL vmlinux 0xa12e6d93 devlink_port_region_create -EXPORT_SYMBOL_GPL vmlinux 0xa13922b1 usb_hcd_amd_remote_wakeup_quirk -EXPORT_SYMBOL_GPL vmlinux 0xa1396e4c dpbp_disable -EXPORT_SYMBOL_GPL vmlinux 0xa15273ee dax_writeback_mapping_range +EXPORT_SYMBOL_GPL vmlinux 0xa114c48f fwnode_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xa11e8626 sdio_enable_func +EXPORT_SYMBOL_GPL vmlinux 0xa12121c5 devm_pm_opp_set_clkname +EXPORT_SYMBOL_GPL vmlinux 0xa125de7c kvm_io_bus_get_dev +EXPORT_SYMBOL_GPL vmlinux 0xa12fe5e4 regulator_get_mode +EXPORT_SYMBOL_GPL vmlinux 0xa13042fc ti_sci_get_by_phandle EXPORT_SYMBOL_GPL vmlinux 0xa156a1f2 erst_get_record_id_end -EXPORT_SYMBOL_GPL vmlinux 0xa15ec007 dev_attr_ncq_prio_enable +EXPORT_SYMBOL_GPL vmlinux 0xa15c6f16 __traceiter_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0xa15d2d3b ping_unhash +EXPORT_SYMBOL_GPL vmlinux 0xa164afce platform_get_resource_byname EXPORT_SYMBOL_GPL vmlinux 0xa1691b63 xas_find_marked +EXPORT_SYMBOL_GPL vmlinux 0xa169db3d crypto_stats_compress EXPORT_SYMBOL_GPL vmlinux 0xa16deb13 sbitmap_resize -EXPORT_SYMBOL_GPL vmlinux 0xa1749afb qcom_smem_state_get -EXPORT_SYMBOL_GPL vmlinux 0xa177fe94 pci_epc_map_msi_irq -EXPORT_SYMBOL_GPL vmlinux 0xa18390d3 device_get_next_child_node -EXPORT_SYMBOL_GPL vmlinux 0xa1849e6c hwmon_device_register_with_info -EXPORT_SYMBOL_GPL vmlinux 0xa1acff22 of_platform_device_destroy -EXPORT_SYMBOL_GPL vmlinux 0xa1b2b3e2 pci_host_probe -EXPORT_SYMBOL_GPL vmlinux 0xa1bb676e rio_unmap_inb_region +EXPORT_SYMBOL_GPL vmlinux 0xa176aa69 tcp_sendmsg_locked +EXPORT_SYMBOL_GPL vmlinux 0xa17772dd tps6586x_read +EXPORT_SYMBOL_GPL vmlinux 0xa17c929e dev_pm_opp_add +EXPORT_SYMBOL_GPL vmlinux 0xa17e0e7b posix_acl_default_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0xa180cbb1 trace_array_destroy +EXPORT_SYMBOL_GPL vmlinux 0xa182d009 gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0xa1a1f9aa __traceiter_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0xa1b68d61 iomap_readahead EXPORT_SYMBOL_GPL vmlinux 0xa1c4231f kvm_set_pfn_dirty +EXPORT_SYMBOL_GPL vmlinux 0xa1cda299 cpufreq_disable_fast_switch EXPORT_SYMBOL_GPL vmlinux 0xa1d8004a videomode_from_timing -EXPORT_SYMBOL_GPL vmlinux 0xa1d8a8b0 gpiod_get_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xa1ddc5d0 blkdev_ioctl -EXPORT_SYMBOL_GPL vmlinux 0xa1e12d0b phy_reset +EXPORT_SYMBOL_GPL vmlinux 0xa1e4e953 perf_event_addr_filters_sync +EXPORT_SYMBOL_GPL vmlinux 0xa1e8c072 rio_mport_get_efb EXPORT_SYMBOL_GPL vmlinux 0xa1ed9c8b add_hwgenerator_randomness -EXPORT_SYMBOL_GPL vmlinux 0xa1ef438e devlink_resource_register +EXPORT_SYMBOL_GPL vmlinux 0xa1edce5a pci_vpd_alloc +EXPORT_SYMBOL_GPL vmlinux 0xa1f3809c sock_diag_destroy EXPORT_SYMBOL_GPL vmlinux 0xa20d01ba __trace_bprintk -EXPORT_SYMBOL_GPL vmlinux 0xa20d3bd3 fwnode_get_next_available_child_node -EXPORT_SYMBOL_GPL vmlinux 0xa21bb3eb devlink_net -EXPORT_SYMBOL_GPL vmlinux 0xa22abd65 efivar_entry_delete -EXPORT_SYMBOL_GPL vmlinux 0xa22de18c phy_modify_changed -EXPORT_SYMBOL_GPL vmlinux 0xa237f977 put_device -EXPORT_SYMBOL_GPL vmlinux 0xa24b75e9 virtqueue_add_inbuf +EXPORT_SYMBOL_GPL vmlinux 0xa243240c devm_pinctrl_register +EXPORT_SYMBOL_GPL vmlinux 0xa249f4da pm_generic_freeze EXPORT_SYMBOL_GPL vmlinux 0xa2500ef6 __SCK__tp_func_powernv_throttle -EXPORT_SYMBOL_GPL vmlinux 0xa2570528 regmap_async_complete +EXPORT_SYMBOL_GPL vmlinux 0xa255a48d tty_port_register_device +EXPORT_SYMBOL_GPL vmlinux 0xa262ddc8 led_trigger_event EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested -EXPORT_SYMBOL_GPL vmlinux 0xa273e449 crypto_stats_rng_generate +EXPORT_SYMBOL_GPL vmlinux 0xa274ecd9 __blk_mq_debugfs_rq_show +EXPORT_SYMBOL_GPL vmlinux 0xa288d62e thermal_zone_get_zone_by_name +EXPORT_SYMBOL_GPL vmlinux 0xa28bebe6 dev_get_tstats64 +EXPORT_SYMBOL_GPL vmlinux 0xa2a72a94 mtk_pinconf_bias_get 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 0xa2c09e64 pci_epc_linkup -EXPORT_SYMBOL_GPL vmlinux 0xa2cd06ad balloon_page_dequeue -EXPORT_SYMBOL_GPL vmlinux 0xa2d95128 split_page +EXPORT_SYMBOL_GPL vmlinux 0xa2bfe86a of_property_read_string_helper +EXPORT_SYMBOL_GPL vmlinux 0xa2c78cd6 devm_gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xa2d4676d dma_async_device_channel_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa2db92df fib6_rule_default EXPORT_SYMBOL_GPL vmlinux 0xa2e1b3ef trace_printk_init_buffers -EXPORT_SYMBOL_GPL vmlinux 0xa2f254c6 edac_mc_free +EXPORT_SYMBOL_GPL vmlinux 0xa2ee864b of_pci_range_parser_init EXPORT_SYMBOL_GPL vmlinux 0xa2f7487f hv_is_hibernation_supported -EXPORT_SYMBOL_GPL vmlinux 0xa312b01a pci_epc_write_header -EXPORT_SYMBOL_GPL vmlinux 0xa328d083 __traceiter_fib6_table_lookup -EXPORT_SYMBOL_GPL vmlinux 0xa329cc0f nd_tbl -EXPORT_SYMBOL_GPL vmlinux 0xa32a0589 debugfs_file_get -EXPORT_SYMBOL_GPL vmlinux 0xa32a953e kick_process -EXPORT_SYMBOL_GPL vmlinux 0xa3341eb7 usb_alloc_urb -EXPORT_SYMBOL_GPL vmlinux 0xa34c2fef pm_runtime_allow -EXPORT_SYMBOL_GPL vmlinux 0xa353d67d of_get_display_timing -EXPORT_SYMBOL_GPL vmlinux 0xa35c984e dev_pm_opp_xlate_required_opp +EXPORT_SYMBOL_GPL vmlinux 0xa304304f __dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0xa309ae8a tpmm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0xa3421659 led_blink_set +EXPORT_SYMBOL_GPL vmlinux 0xa3667273 blkdev_report_zones +EXPORT_SYMBOL_GPL vmlinux 0xa3691ffe component_master_del EXPORT_SYMBOL_GPL vmlinux 0xa36f50fb is_binary_blacklisted -EXPORT_SYMBOL_GPL vmlinux 0xa377dae8 power_supply_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa37b341b usb_acpi_power_manageable -EXPORT_SYMBOL_GPL vmlinux 0xa37cffaf rio_local_set_device_id +EXPORT_SYMBOL_GPL vmlinux 0xa37a23bd efivar_entry_get +EXPORT_SYMBOL_GPL vmlinux 0xa37b14be inet6_compat_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xa37cf096 handle_simple_irq EXPORT_SYMBOL_GPL vmlinux 0xa38602cd drain_workqueue EXPORT_SYMBOL_GPL vmlinux 0xa389a49a profile_event_register EXPORT_SYMBOL_GPL vmlinux 0xa38a9f71 get_itimerspec64 EXPORT_SYMBOL_GPL vmlinux 0xa38c1436 cpu_bit_bitmap -EXPORT_SYMBOL_GPL vmlinux 0xa38cf668 dev_pm_qos_remove_notifier -EXPORT_SYMBOL_GPL vmlinux 0xa39538bb gpiochip_populate_parent_fwspec_fourcell -EXPORT_SYMBOL_GPL vmlinux 0xa3991298 nf_queue_entry_free +EXPORT_SYMBOL_GPL vmlinux 0xa3912d28 of_regulator_match +EXPORT_SYMBOL_GPL vmlinux 0xa3930c58 memunmap_pages +EXPORT_SYMBOL_GPL vmlinux 0xa39bc1b5 rockchip_clk_of_add_provider +EXPORT_SYMBOL_GPL vmlinux 0xa39c224b sdev_evt_send EXPORT_SYMBOL_GPL vmlinux 0xa3a04602 btree_geo64 -EXPORT_SYMBOL_GPL vmlinux 0xa3a0aa06 spi_bus_lock +EXPORT_SYMBOL_GPL vmlinux 0xa3a65ac0 xenbus_dev_changed EXPORT_SYMBOL_GPL vmlinux 0xa3b958ce reset_hung_task_detector -EXPORT_SYMBOL_GPL vmlinux 0xa3bd107d class_dev_iter_next -EXPORT_SYMBOL_GPL vmlinux 0xa3c5679a blk_ksm_update_capabilities -EXPORT_SYMBOL_GPL vmlinux 0xa3c96e7d fat_detach -EXPORT_SYMBOL_GPL vmlinux 0xa3c97928 __pci_hp_register +EXPORT_SYMBOL_GPL vmlinux 0xa3bca6ba thermal_zone_device_enable +EXPORT_SYMBOL_GPL vmlinux 0xa3c3b366 ip6_datagram_connect_v6_only EXPORT_SYMBOL_GPL vmlinux 0xa3dcb681 zynqmp_pm_fpga_load EXPORT_SYMBOL_GPL vmlinux 0xa3ece414 freezer_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xa3f0c083 misc_cg_try_charge EXPORT_SYMBOL_GPL vmlinux 0xa3f12f69 __crypto_xor -EXPORT_SYMBOL_GPL vmlinux 0xa3f8a0c7 devm_pm_opp_set_supported_hw +EXPORT_SYMBOL_GPL vmlinux 0xa3f7d8c9 scsi_dh_attached_handler_name +EXPORT_SYMBOL_GPL vmlinux 0xa3ff51c1 clk_hw_set_rate_range EXPORT_SYMBOL_GPL vmlinux 0xa4031b7f sfp_parse_port +EXPORT_SYMBOL_GPL vmlinux 0xa40418d7 ahci_sdev_attrs +EXPORT_SYMBOL_GPL vmlinux 0xa40d14d0 icc_set_tag EXPORT_SYMBOL_GPL vmlinux 0xa410a295 devlink_region_destroy -EXPORT_SYMBOL_GPL vmlinux 0xa415e614 i2c_new_ancillary_device +EXPORT_SYMBOL_GPL vmlinux 0xa417fdd2 dev_attr_sw_activity +EXPORT_SYMBOL_GPL vmlinux 0xa41d4c08 mmu_interval_notifier_remove +EXPORT_SYMBOL_GPL vmlinux 0xa41fe33c dev_pm_opp_free_cpufreq_table +EXPORT_SYMBOL_GPL vmlinux 0xa4221dd1 dma_request_chan +EXPORT_SYMBOL_GPL vmlinux 0xa4249a79 rio_mport_get_feature +EXPORT_SYMBOL_GPL vmlinux 0xa4273188 __blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0xa42afc5a pci_user_read_config_word +EXPORT_SYMBOL_GPL vmlinux 0xa43117ef dev_pm_set_wake_irq EXPORT_SYMBOL_GPL vmlinux 0xa44a1307 interval_tree_iter_first -EXPORT_SYMBOL_GPL vmlinux 0xa44f9158 raw_seq_next EXPORT_SYMBOL_GPL vmlinux 0xa452f2a4 xen_pirq_from_irq -EXPORT_SYMBOL_GPL vmlinux 0xa4532b1b serdev_controller_remove EXPORT_SYMBOL_GPL vmlinux 0xa45c7b90 stack_trace_print EXPORT_SYMBOL_GPL vmlinux 0xa45d44fc zynqmp_pm_get_pll_frac_data -EXPORT_SYMBOL_GPL vmlinux 0xa464d842 usb_autopm_put_interface_no_suspend +EXPORT_SYMBOL_GPL vmlinux 0xa45f741e iomap_seek_hole +EXPORT_SYMBOL_GPL vmlinux 0xa465f7c2 amba_ahb_device_add EXPORT_SYMBOL_GPL vmlinux 0xa48196c8 kdb_poll_idx -EXPORT_SYMBOL_GPL vmlinux 0xa482dfd6 of_mm_gpiochip_add_data +EXPORT_SYMBOL_GPL vmlinux 0xa4860460 bsg_job_get +EXPORT_SYMBOL_GPL vmlinux 0xa488d290 gpiochip_get_data +EXPORT_SYMBOL_GPL vmlinux 0xa49219e7 usb_get_maximum_speed +EXPORT_SYMBOL_GPL vmlinux 0xa4983dc7 blk_mq_quiesce_queue +EXPORT_SYMBOL_GPL vmlinux 0xa4990db5 usb_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xa49e5f24 pci_epf_bind +EXPORT_SYMBOL_GPL vmlinux 0xa49ff5d2 fsl_mc_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xa4a24cbd tps6586x_irq_get_virq EXPORT_SYMBOL_GPL vmlinux 0xa4ab7c1c ring_buffer_overruns EXPORT_SYMBOL_GPL vmlinux 0xa4b07fe7 ring_buffer_change_overwrite -EXPORT_SYMBOL_GPL vmlinux 0xa4bc2fdd netlink_has_listeners -EXPORT_SYMBOL_GPL vmlinux 0xa4bda7fa i2c_of_match_device -EXPORT_SYMBOL_GPL vmlinux 0xa4bf22a5 exportfs_encode_fh +EXPORT_SYMBOL_GPL vmlinux 0xa4b24a82 icmp_build_probe +EXPORT_SYMBOL_GPL vmlinux 0xa4b51b3e fwnode_graph_get_next_endpoint +EXPORT_SYMBOL_GPL vmlinux 0xa4bad23e inet_csk_get_port EXPORT_SYMBOL_GPL vmlinux 0xa4c00324 asn1_encode_octet_string -EXPORT_SYMBOL_GPL vmlinux 0xa4c48a4a kobject_uevent -EXPORT_SYMBOL_GPL vmlinux 0xa4db82fa trace_array_printk -EXPORT_SYMBOL_GPL vmlinux 0xa4e002c7 driver_find_device +EXPORT_SYMBOL_GPL vmlinux 0xa4d76b19 pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0xa4df64af sata_scr_write +EXPORT_SYMBOL_GPL vmlinux 0xa4e10297 bus_for_each_dev EXPORT_SYMBOL_GPL vmlinux 0xa4eb5793 sbitmap_weight -EXPORT_SYMBOL_GPL vmlinux 0xa4f0c658 task_active_pid_ns EXPORT_SYMBOL_GPL vmlinux 0xa4f2a2ed acpi_irq_get -EXPORT_SYMBOL_GPL vmlinux 0xa511b672 ehci_reset -EXPORT_SYMBOL_GPL vmlinux 0xa515670f platform_get_irq +EXPORT_SYMBOL_GPL vmlinux 0xa4f51578 dma_buf_export +EXPORT_SYMBOL_GPL vmlinux 0xa5042e98 free_vm_area +EXPORT_SYMBOL_GPL vmlinux 0xa508df56 of_modalias_node +EXPORT_SYMBOL_GPL vmlinux 0xa51623df badblocks_store EXPORT_SYMBOL_GPL vmlinux 0xa517f884 tegra210_plle_hw_sequence_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0xa51d749a wakeup_source_add -EXPORT_SYMBOL_GPL vmlinux 0xa527552e cpuidle_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xa51be073 pci_enable_ats +EXPORT_SYMBOL_GPL vmlinux 0xa5268660 gpiod_put EXPORT_SYMBOL_GPL vmlinux 0xa531471e clk_save_context -EXPORT_SYMBOL_GPL vmlinux 0xa5376ea4 pci_hp_del -EXPORT_SYMBOL_GPL vmlinux 0xa551f322 devlink_dpipe_headers_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa5634829 devm_of_phy_provider_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa56e5c31 pci_epc_clear_bar -EXPORT_SYMBOL_GPL vmlinux 0xa57fc8ba usb_disable_xhci_ports -EXPORT_SYMBOL_GPL vmlinux 0xa58c4d1a device_set_of_node_from_dev -EXPORT_SYMBOL_GPL vmlinux 0xa5a46b7f devm_platform_get_and_ioremap_resource -EXPORT_SYMBOL_GPL vmlinux 0xa5aa2d8c debugfs_create_ulong +EXPORT_SYMBOL_GPL vmlinux 0xa53437ec devm_regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0xa5357243 serial8250_rx_chars +EXPORT_SYMBOL_GPL vmlinux 0xa56c610a regulator_map_voltage_ascend +EXPORT_SYMBOL_GPL vmlinux 0xa57a95e4 rio_request_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0xa58a0cc8 tty_ldisc_flush +EXPORT_SYMBOL_GPL vmlinux 0xa59ef34f unix_peer_get +EXPORT_SYMBOL_GPL vmlinux 0xa5b681f9 ata_sas_tport_add EXPORT_SYMBOL_GPL vmlinux 0xa5bda8a1 efi_capsule_supported -EXPORT_SYMBOL_GPL vmlinux 0xa5c6bfd6 xen_dbgp_external_startup -EXPORT_SYMBOL_GPL vmlinux 0xa5cf61b6 tty_port_register_device +EXPORT_SYMBOL_GPL vmlinux 0xa5c2a29f of_phy_put +EXPORT_SYMBOL_GPL vmlinux 0xa5c7121a __traceiter_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0xa5ca0a8d devlink_health_reporter_create +EXPORT_SYMBOL_GPL vmlinux 0xa5d5dd2b xdp_rxq_info_unreg +EXPORT_SYMBOL_GPL vmlinux 0xa5d74aa1 pm_generic_suspend_noirq EXPORT_SYMBOL_GPL vmlinux 0xa5d7c388 pstore_type_to_name -EXPORT_SYMBOL_GPL vmlinux 0xa5dff422 mddev_suspend +EXPORT_SYMBOL_GPL vmlinux 0xa5dc5d18 device_show_bool +EXPORT_SYMBOL_GPL vmlinux 0xa5e9f7c2 edac_device_add_device +EXPORT_SYMBOL_GPL vmlinux 0xa5ebe522 extcon_get_property EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full -EXPORT_SYMBOL_GPL vmlinux 0xa600b529 genphy_c45_loopback -EXPORT_SYMBOL_GPL vmlinux 0xa606ef3e __platform_driver_probe -EXPORT_SYMBOL_GPL vmlinux 0xa60cc944 mmu_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0xa629adf2 device_match_of_node -EXPORT_SYMBOL_GPL vmlinux 0xa62d86c4 rio_add_net -EXPORT_SYMBOL_GPL vmlinux 0xa640e9a2 screen_glyph_unicode -EXPORT_SYMBOL_GPL vmlinux 0xa6416d3c nd_cmd_in_size -EXPORT_SYMBOL_GPL vmlinux 0xa657d4a5 devlink_dpipe_table_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa65dec7c serdev_device_close +EXPORT_SYMBOL_GPL vmlinux 0xa5f1d604 wm8350_block_read +EXPORT_SYMBOL_GPL vmlinux 0xa5f259a0 rockchip_register_softrst +EXPORT_SYMBOL_GPL vmlinux 0xa5fcdff8 platform_get_irq_byname +EXPORT_SYMBOL_GPL vmlinux 0xa60bdf57 devm_gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0xa62b7a80 dev_pm_opp_of_get_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0xa63181b0 iptunnel_handle_offloads +EXPORT_SYMBOL_GPL vmlinux 0xa6404b7e __ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0xa648867a skb_segment_list +EXPORT_SYMBOL_GPL vmlinux 0xa65ccebf thermal_zone_get_offset EXPORT_SYMBOL_GPL vmlinux 0xa65f3c8c __tracepoint_block_bio_complete -EXPORT_SYMBOL_GPL vmlinux 0xa664465f transport_configure_device -EXPORT_SYMBOL_GPL vmlinux 0xa66b9ae8 irq_domain_reset_irq_data -EXPORT_SYMBOL_GPL vmlinux 0xa67131f2 cgrp_dfl_root -EXPORT_SYMBOL_GPL vmlinux 0xa676bf39 spi_async_locked -EXPORT_SYMBOL_GPL vmlinux 0xa678120d of_pci_range_parser_one -EXPORT_SYMBOL_GPL vmlinux 0xa67f9887 acpi_pm_set_device_wakeup -EXPORT_SYMBOL_GPL vmlinux 0xa680325d kvm_init -EXPORT_SYMBOL_GPL vmlinux 0xa6879b24 tpm_tis_resume -EXPORT_SYMBOL_GPL vmlinux 0xa68b1827 xenbus_probe_node +EXPORT_SYMBOL_GPL vmlinux 0xa66dff0c power_supply_am_i_supplied +EXPORT_SYMBOL_GPL vmlinux 0xa694f5b8 usb_reset_configuration +EXPORT_SYMBOL_GPL vmlinux 0xa695a1d3 ahci_platform_get_resources EXPORT_SYMBOL_GPL vmlinux 0xa6a088b7 fscrypt_match_name -EXPORT_SYMBOL_GPL vmlinux 0xa6aea832 __nf_ip6_route EXPORT_SYMBOL_GPL vmlinux 0xa6af1e35 __SCK__tp_func_block_rq_remap EXPORT_SYMBOL_GPL vmlinux 0xa6b06f65 ata_sff_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xa6b1cf20 blk_mq_freeze_queue_wait_timeout EXPORT_SYMBOL_GPL vmlinux 0xa6b21ef2 dpm_suspend_end EXPORT_SYMBOL_GPL vmlinux 0xa6b5ee5b __SCK__tp_func_block_split -EXPORT_SYMBOL_GPL vmlinux 0xa6bcc061 kvm_vcpu_read_guest_atomic -EXPORT_SYMBOL_GPL vmlinux 0xa6c7c5af of_dma_request_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0xa6d7579f device_init_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xa6d04c77 devres_get EXPORT_SYMBOL_GPL vmlinux 0xa6dc0d97 tegra_read_ram_code EXPORT_SYMBOL_GPL vmlinux 0xa6e1a69d kick_all_cpus_sync -EXPORT_SYMBOL_GPL vmlinux 0xa6e49231 scsi_nl_sock EXPORT_SYMBOL_GPL vmlinux 0xa6ee15ca __tracepoint_rpm_suspend -EXPORT_SYMBOL_GPL vmlinux 0xa6f2fd64 devm_of_platform_populate +EXPORT_SYMBOL_GPL vmlinux 0xa6f5675c usb_init_urb +EXPORT_SYMBOL_GPL vmlinux 0xa705eb4f tty_ldisc_ref EXPORT_SYMBOL_GPL vmlinux 0xa709c835 fib6_info_destroy_rcu -EXPORT_SYMBOL_GPL vmlinux 0xa70e9ff3 balloon_page_list_dequeue -EXPORT_SYMBOL_GPL vmlinux 0xa7217044 restore_online_page_callback -EXPORT_SYMBOL_GPL vmlinux 0xa726edc0 dev_coredumpm +EXPORT_SYMBOL_GPL vmlinux 0xa70cfb5d ata_sff_drain_fifo +EXPORT_SYMBOL_GPL vmlinux 0xa71908fd usb_deregister_device_driver +EXPORT_SYMBOL_GPL vmlinux 0xa71a6cbf device_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0xa723fdf1 lwtunnel_cmp_encap +EXPORT_SYMBOL_GPL vmlinux 0xa72ad4d5 md_start +EXPORT_SYMBOL_GPL vmlinux 0xa72b7040 securityfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0xa72c586f dummy_con EXPORT_SYMBOL_GPL vmlinux 0xa731f387 nl_table_lock -EXPORT_SYMBOL_GPL vmlinux 0xa74b9cef led_blink_set_oneshot -EXPORT_SYMBOL_GPL vmlinux 0xa7561b0c debugfs_create_devm_seqfile -EXPORT_SYMBOL_GPL vmlinux 0xa75a918b crypto_unregister_alg -EXPORT_SYMBOL_GPL vmlinux 0xa75eae25 crypto_register_algs +EXPORT_SYMBOL_GPL vmlinux 0xa73372d5 add_disk_randomness +EXPORT_SYMBOL_GPL vmlinux 0xa735eb07 of_get_display_timings +EXPORT_SYMBOL_GPL vmlinux 0xa73a8e8f ip6_route_output_flags +EXPORT_SYMBOL_GPL vmlinux 0xa758ebaf __devm_reset_control_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0xa7646b10 strp_done +EXPORT_SYMBOL_GPL vmlinux 0xa77ac351 blk_mq_complete_request_remote +EXPORT_SYMBOL_GPL vmlinux 0xa77f417d edac_mc_free EXPORT_SYMBOL_GPL vmlinux 0xa7856098 cpu_topology EXPORT_SYMBOL_GPL vmlinux 0xa788700b copy_to_user_nofault -EXPORT_SYMBOL_GPL vmlinux 0xa794054b set_capacity_and_notify -EXPORT_SYMBOL_GPL vmlinux 0xa79b38f5 nvdimm_cmd_mask -EXPORT_SYMBOL_GPL vmlinux 0xa7ae3052 blk_mq_flush_busy_ctxs +EXPORT_SYMBOL_GPL vmlinux 0xa7918e05 usb_control_msg +EXPORT_SYMBOL_GPL vmlinux 0xa7993c1b pci_sriov_configure_simple +EXPORT_SYMBOL_GPL vmlinux 0xa79a454a ti_sci_get_handle +EXPORT_SYMBOL_GPL vmlinux 0xa79e5701 watchdog_set_restart_priority +EXPORT_SYMBOL_GPL vmlinux 0xa7aae41b pingv6_ops +EXPORT_SYMBOL_GPL vmlinux 0xa7ad3339 class_interface_register +EXPORT_SYMBOL_GPL vmlinux 0xa7b308f0 dev_pm_opp_get_of_node +EXPORT_SYMBOL_GPL vmlinux 0xa7b462c3 devres_remove_group +EXPORT_SYMBOL_GPL vmlinux 0xa7b46c5c vp_modern_set_status +EXPORT_SYMBOL_GPL vmlinux 0xa7be32fa raw_unhash_sk EXPORT_SYMBOL_GPL vmlinux 0xa7cba284 housekeeping_any_cpu -EXPORT_SYMBOL_GPL vmlinux 0xa7ceeeee usb_enable_lpm -EXPORT_SYMBOL_GPL vmlinux 0xa7d78c68 cgroup_get_from_path -EXPORT_SYMBOL_GPL vmlinux 0xa7d8101c anon_inode_getfile -EXPORT_SYMBOL_GPL vmlinux 0xa7e5e4c6 regcache_mark_dirty -EXPORT_SYMBOL_GPL vmlinux 0xa7eb912c spi_mem_dirmap_read -EXPORT_SYMBOL_GPL vmlinux 0xa80ba5c8 pci_check_and_mask_intx -EXPORT_SYMBOL_GPL vmlinux 0xa821bf58 md_stop_writes -EXPORT_SYMBOL_GPL vmlinux 0xa82229e7 tps6586x_irq_get_virq -EXPORT_SYMBOL_GPL vmlinux 0xa83b28b7 blk_mq_free_request -EXPORT_SYMBOL_GPL vmlinux 0xa83db728 phy_speed_up -EXPORT_SYMBOL_GPL vmlinux 0xa83db733 blk_queue_write_cache +EXPORT_SYMBOL_GPL vmlinux 0xa7d9ccd3 __pm_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0xa8018d0e virtio_device_restore +EXPORT_SYMBOL_GPL vmlinux 0xa806b712 switchdev_port_attr_set +EXPORT_SYMBOL_GPL vmlinux 0xa8075de4 clk_regmap_gate_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0xa815a37d fsnotify_find_mark +EXPORT_SYMBOL_GPL vmlinux 0xa8358123 strp_unpause +EXPORT_SYMBOL_GPL vmlinux 0xa83b1cb6 dev_pm_opp_set_prop_name +EXPORT_SYMBOL_GPL vmlinux 0xa84adbbd rio_route_get_entry +EXPORT_SYMBOL_GPL vmlinux 0xa8502445 gpiod_to_chip +EXPORT_SYMBOL_GPL vmlinux 0xa850f62f bpf_preload_ops EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xa871162f crypto_register_scomps -EXPORT_SYMBOL_GPL vmlinux 0xa8866fdd thermal_zone_get_slope -EXPORT_SYMBOL_GPL vmlinux 0xa88e769c icc_get -EXPORT_SYMBOL_GPL vmlinux 0xa89520ea rdev_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0xa8ba24c5 compat_only_sysfs_link_entry_to_kobj -EXPORT_SYMBOL_GPL vmlinux 0xa8c92b95 __traceiter_pelt_dl_tp -EXPORT_SYMBOL_GPL vmlinux 0xa8cdc31f pci_try_reset_function -EXPORT_SYMBOL_GPL vmlinux 0xa8dc8d91 mptcp_token_iter_next -EXPORT_SYMBOL_GPL vmlinux 0xa8f75619 security_path_symlink -EXPORT_SYMBOL_GPL vmlinux 0xa9055de2 switchdev_port_obj_add -EXPORT_SYMBOL_GPL vmlinux 0xa9130bab usb_set_device_state -EXPORT_SYMBOL_GPL vmlinux 0xa91ba310 tty_put_char -EXPORT_SYMBOL_GPL vmlinux 0xa923a8d5 acpi_dev_get_resources -EXPORT_SYMBOL_GPL vmlinux 0xa92765b0 rockchip_clk_init -EXPORT_SYMBOL_GPL vmlinux 0xa92dffda vc_scrolldelta_helper +EXPORT_SYMBOL_GPL vmlinux 0xa862018d sata_link_scr_lpm +EXPORT_SYMBOL_GPL vmlinux 0xa8635e41 report_iommu_fault +EXPORT_SYMBOL_GPL vmlinux 0xa86da2e7 skb_mpls_pop +EXPORT_SYMBOL_GPL vmlinux 0xa86fdf8e debugfs_real_fops +EXPORT_SYMBOL_GPL vmlinux 0xa895a6bc ata_bmdma_port_intr +EXPORT_SYMBOL_GPL vmlinux 0xa895e265 int_active_memcg +EXPORT_SYMBOL_GPL vmlinux 0xa8c898f1 akcipher_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xa8d78b82 qcom_smem_state_register +EXPORT_SYMBOL_GPL vmlinux 0xa8d9a26e pci_user_write_config_word +EXPORT_SYMBOL_GPL vmlinux 0xa8db3123 devfreq_get_devfreq_by_node +EXPORT_SYMBOL_GPL vmlinux 0xa8e4e9d0 perf_tp_event +EXPORT_SYMBOL_GPL vmlinux 0xa8eacef4 dprc_set_obj_irq +EXPORT_SYMBOL_GPL vmlinux 0xa8eb5a86 device_add_properties +EXPORT_SYMBOL_GPL vmlinux 0xa90c0092 sysfs_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0xa90cd03e xfrm_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0xa90da35e device_bind_driver +EXPORT_SYMBOL_GPL vmlinux 0xa91db8f0 rt_mutex_lock +EXPORT_SYMBOL_GPL vmlinux 0xa922b818 meson_clk_pll_ops +EXPORT_SYMBOL_GPL vmlinux 0xa92dc18a account_locked_vm EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds -EXPORT_SYMBOL_GPL vmlinux 0xa93ca120 xdp_return_frame_rx_napi -EXPORT_SYMBOL_GPL vmlinux 0xa95d4dc5 __devm_spi_alloc_controller -EXPORT_SYMBOL_GPL vmlinux 0xa96c184c wm8350_device_init +EXPORT_SYMBOL_GPL vmlinux 0xa936bcf5 kvm_put_kvm +EXPORT_SYMBOL_GPL vmlinux 0xa93e5f89 devm_spi_mem_dirmap_destroy +EXPORT_SYMBOL_GPL vmlinux 0xa951f189 blk_mq_sched_try_insert_merge +EXPORT_SYMBOL_GPL vmlinux 0xa95722a8 fsverity_prepare_setattr +EXPORT_SYMBOL_GPL vmlinux 0xa960deb1 fscrypt_ioctl_remove_key +EXPORT_SYMBOL_GPL vmlinux 0xa9681ceb of_property_read_u64 EXPORT_SYMBOL_GPL vmlinux 0xa96e8b4e hv_setup_vmbus_handler -EXPORT_SYMBOL_GPL vmlinux 0xa9727974 regmap_read -EXPORT_SYMBOL_GPL vmlinux 0xa97be417 devfreq_event_get_edev_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0xa98b99ac devm_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0xa98bdb7d led_trigger_unregister_simple -EXPORT_SYMBOL_GPL vmlinux 0xa9993670 clk_mux_val_to_index +EXPORT_SYMBOL_GPL vmlinux 0xa97afd14 dw_pcie_ep_init_notify +EXPORT_SYMBOL_GPL vmlinux 0xa985133a driver_deferred_probe_check_state +EXPORT_SYMBOL_GPL vmlinux 0xa9873f6a fat_search_long +EXPORT_SYMBOL_GPL vmlinux 0xa99410aa i2c_client_type EXPORT_SYMBOL_GPL vmlinux 0xa99b8e70 __SCK__tp_func_xdp_exception +EXPORT_SYMBOL_GPL vmlinux 0xa99cd128 md_run EXPORT_SYMBOL_GPL vmlinux 0xa99ef899 devlink_fmsg_bool_pair_put -EXPORT_SYMBOL_GPL vmlinux 0xa9a79e99 cpufreq_dbs_governor_stop -EXPORT_SYMBOL_GPL vmlinux 0xa9b1fac8 fib_nl_newrule -EXPORT_SYMBOL_GPL vmlinux 0xa9ba13ff __rio_local_write_config_32 -EXPORT_SYMBOL_GPL vmlinux 0xa9d342bb dprc_get_obj_count -EXPORT_SYMBOL_GPL vmlinux 0xa9df4ce0 iomap_writepages +EXPORT_SYMBOL_GPL vmlinux 0xa9a48dd0 invalidate_inode_pages2_range +EXPORT_SYMBOL_GPL vmlinux 0xa9ab0a28 fwnode_connection_find_match +EXPORT_SYMBOL_GPL vmlinux 0xa9b1ae42 xenbus_free_evtchn +EXPORT_SYMBOL_GPL vmlinux 0xa9b95f4e pci_check_and_unmask_intx +EXPORT_SYMBOL_GPL vmlinux 0xa9cd259e uprobe_register EXPORT_SYMBOL_GPL vmlinux 0xa9e18049 task_handoff_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa9e53874 wm831x_auxadc_read_uv -EXPORT_SYMBOL_GPL vmlinux 0xa9f30619 rio_unregister_scan -EXPORT_SYMBOL_GPL vmlinux 0xaa0179da vp_modern_queue_address -EXPORT_SYMBOL_GPL vmlinux 0xaa03b4c8 devm_acpi_dev_remove_driver_gpios -EXPORT_SYMBOL_GPL vmlinux 0xaa103462 bsg_job_done -EXPORT_SYMBOL_GPL vmlinux 0xaa143826 serdev_device_write_buf -EXPORT_SYMBOL_GPL vmlinux 0xaa197873 pstore_register -EXPORT_SYMBOL_GPL vmlinux 0xaa203a11 to_nd_region +EXPORT_SYMBOL_GPL vmlinux 0xaa02717c pci_host_common_remove +EXPORT_SYMBOL_GPL vmlinux 0xaa02a8df pm_genpd_remove_subdomain +EXPORT_SYMBOL_GPL vmlinux 0xaa055c62 ipv6_stub +EXPORT_SYMBOL_GPL vmlinux 0xaa0a55c6 xenbus_probe_node +EXPORT_SYMBOL_GPL vmlinux 0xaa1841ca spi_write_then_read EXPORT_SYMBOL_GPL vmlinux 0xaa230f88 perf_unregister_guest_info_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xaa2c0197 trace_array_get_by_name -EXPORT_SYMBOL_GPL vmlinux 0xaa3110c9 bpf_map_inc_with_uref -EXPORT_SYMBOL_GPL vmlinux 0xaa382810 nvdimm_setup_pfn -EXPORT_SYMBOL_GPL vmlinux 0xaa54395e __rtnl_link_unregister -EXPORT_SYMBOL_GPL vmlinux 0xaa59f69e crypto_unregister_template -EXPORT_SYMBOL_GPL vmlinux 0xaa5e1b3b fscrypt_mergeable_bio -EXPORT_SYMBOL_GPL vmlinux 0xaa619c35 fsl_mc_get_endpoint -EXPORT_SYMBOL_GPL vmlinux 0xaa61ffaf wm8350_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0xaa239a8a dev_pm_opp_put_clkname +EXPORT_SYMBOL_GPL vmlinux 0xaa41d9b7 pm_relax +EXPORT_SYMBOL_GPL vmlinux 0xaa4aa4de of_k3_ringacc_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xaa4d411d blkg_rwstat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0xaa668a19 tps65912_device_exit EXPORT_SYMBOL_GPL vmlinux 0xaa6a50f9 __static_key_deferred_flush -EXPORT_SYMBOL_GPL vmlinux 0xaa6b0763 mtk_pinconf_drive_set_raw -EXPORT_SYMBOL_GPL vmlinux 0xaa6bb73c of_console_check -EXPORT_SYMBOL_GPL vmlinux 0xaa6ca44f usb_unpoison_urb -EXPORT_SYMBOL_GPL vmlinux 0xaa6e3a3b serial8250_do_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xaa85e70d dev_pm_opp_get_max_clock_latency -EXPORT_SYMBOL_GPL vmlinux 0xaa939f59 __rt_mutex_init -EXPORT_SYMBOL_GPL vmlinux 0xaa99f740 crypto_alloc_rng -EXPORT_SYMBOL_GPL vmlinux 0xaa9a83cf devm_clk_register -EXPORT_SYMBOL_GPL vmlinux 0xaaa29072 securityfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0xaa6fe2ff gfn_to_page +EXPORT_SYMBOL_GPL vmlinux 0xaa84747a iommu_present +EXPORT_SYMBOL_GPL vmlinux 0xaa87b011 pm_runtime_set_autosuspend_delay +EXPORT_SYMBOL_GPL vmlinux 0xaa8ee524 pm_generic_thaw_noirq +EXPORT_SYMBOL_GPL vmlinux 0xaa9b888a clk_regmap_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0xaa9f9f79 regulator_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0xaaa65b74 sysfs_create_link EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump -EXPORT_SYMBOL_GPL vmlinux 0xaad75313 dummy_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0xaadd41f8 tty_buffer_lock_exclusive -EXPORT_SYMBOL_GPL vmlinux 0xaaeed44a of_pci_get_devfn -EXPORT_SYMBOL_GPL vmlinux 0xaafd109b netdev_rx_handler_unregister +EXPORT_SYMBOL_GPL vmlinux 0xaacd15a0 dmi_kobj +EXPORT_SYMBOL_GPL vmlinux 0xaacda242 crypto_unregister_rngs +EXPORT_SYMBOL_GPL vmlinux 0xaad0029a device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xaad2daa5 devm_regmap_del_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0xaad5f695 watchdog_notify_pretimeout +EXPORT_SYMBOL_GPL vmlinux 0xaae513af set_task_ioprio EXPORT_SYMBOL_GPL vmlinux 0xab060841 zynqmp_pm_query_data -EXPORT_SYMBOL_GPL vmlinux 0xab0a653c page_cache_sync_ra -EXPORT_SYMBOL_GPL vmlinux 0xab0f76da ata_cable_80wire -EXPORT_SYMBOL_GPL vmlinux 0xab11e8df regmap_mmio_detach_clk -EXPORT_SYMBOL_GPL vmlinux 0xab1933d6 tpm_chip_unregister +EXPORT_SYMBOL_GPL vmlinux 0xab0909d3 devlink_is_reload_failed EXPORT_SYMBOL_GPL vmlinux 0xab1e0e93 hv_setup_kexec_handler -EXPORT_SYMBOL_GPL vmlinux 0xab257dcd synth_event_create -EXPORT_SYMBOL_GPL vmlinux 0xab2eacd8 thermal_zone_bind_cooling_device -EXPORT_SYMBOL_GPL vmlinux 0xab4632ce xfrm_local_error -EXPORT_SYMBOL_GPL vmlinux 0xab5fc779 tty_save_termios -EXPORT_SYMBOL_GPL vmlinux 0xab641fd4 bus_remove_file -EXPORT_SYMBOL_GPL vmlinux 0xab676913 ata_timing_compute -EXPORT_SYMBOL_GPL vmlinux 0xab6c8cb9 auxiliary_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0xab74b7cf device_move -EXPORT_SYMBOL_GPL vmlinux 0xab75c33a ata_pci_bmdma_clear_simplex +EXPORT_SYMBOL_GPL vmlinux 0xab3dab49 debugfs_print_regs32 +EXPORT_SYMBOL_GPL vmlinux 0xab4b1823 ahci_reset_controller +EXPORT_SYMBOL_GPL vmlinux 0xab4fa265 ata_host_suspend +EXPORT_SYMBOL_GPL vmlinux 0xab5577e5 dma_alloc_pages +EXPORT_SYMBOL_GPL vmlinux 0xab581ae9 fsstack_copy_inode_size +EXPORT_SYMBOL_GPL vmlinux 0xab67075c phy_led_triggers_unregister EXPORT_SYMBOL_GPL vmlinux 0xab7f853d mtk_mutex_prepare -EXPORT_SYMBOL_GPL vmlinux 0xab8c982b xdp_do_redirect -EXPORT_SYMBOL_GPL vmlinux 0xab924c13 nf_nat_hook -EXPORT_SYMBOL_GPL vmlinux 0xab92e4f1 __page_mapcount +EXPORT_SYMBOL_GPL vmlinux 0xab817f30 devm_hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0xab8bd1ea usb_put_intf EXPORT_SYMBOL_GPL vmlinux 0xab9bd884 perf_register_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xabb13b72 virtio_break_device +EXPORT_SYMBOL_GPL vmlinux 0xabb70dfd dma_buf_mmap EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate -EXPORT_SYMBOL_GPL vmlinux 0xabc92fbe of_mm_gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0xabc7ddcf device_property_present +EXPORT_SYMBOL_GPL vmlinux 0xabc80720 serial8250_rpm_put_tx EXPORT_SYMBOL_GPL vmlinux 0xabd45848 stop_machine -EXPORT_SYMBOL_GPL vmlinux 0xabe5a092 securityfs_remove -EXPORT_SYMBOL_GPL vmlinux 0xac06f810 event_triggers_call -EXPORT_SYMBOL_GPL vmlinux 0xac0bb624 pci_epc_set_bar -EXPORT_SYMBOL_GPL vmlinux 0xac1ee2cd apply_to_page_range -EXPORT_SYMBOL_GPL vmlinux 0xac22cdc6 tty_register_device_attr -EXPORT_SYMBOL_GPL vmlinux 0xac41e083 usb_wakeup_notification -EXPORT_SYMBOL_GPL vmlinux 0xac5bfe70 __fscrypt_prepare_setattr -EXPORT_SYMBOL_GPL vmlinux 0xac767f35 xenbus_alloc_evtchn -EXPORT_SYMBOL_GPL vmlinux 0xac8ab0f9 pm_runtime_get_if_active -EXPORT_SYMBOL_GPL vmlinux 0xaca9230f rdev_get_dev +EXPORT_SYMBOL_GPL vmlinux 0xabf431d6 pm_runtime_set_memalloc_noio +EXPORT_SYMBOL_GPL vmlinux 0xabf598c1 class_destroy +EXPORT_SYMBOL_GPL vmlinux 0xac224ae9 pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0xac24a645 debugfs_create_u8 +EXPORT_SYMBOL_GPL vmlinux 0xac2f1fb4 dev_pm_genpd_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0xac310912 fsl8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0xac340952 devm_kmalloc +EXPORT_SYMBOL_GPL vmlinux 0xac3f6f28 devlink_port_type_ib_set +EXPORT_SYMBOL_GPL vmlinux 0xac518c9e sata_std_hardreset +EXPORT_SYMBOL_GPL vmlinux 0xac60a141 dev_pm_opp_of_register_em +EXPORT_SYMBOL_GPL vmlinux 0xac60faa7 device_match_of_node +EXPORT_SYMBOL_GPL vmlinux 0xac700e76 sock_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0xac80c96f gpiod_get_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xac93cf1d serdev_device_set_parity +EXPORT_SYMBOL_GPL vmlinux 0xaca318f0 register_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0xaca735a4 xfrm_local_error EXPORT_SYMBOL_GPL vmlinux 0xacb4d88c clk_rate_exclusive_put -EXPORT_SYMBOL_GPL vmlinux 0xacbd9363 ata_pci_bmdma_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0xacb5730d devm_kfree +EXPORT_SYMBOL_GPL vmlinux 0xacc2df3c regulator_get_linear_step +EXPORT_SYMBOL_GPL vmlinux 0xacc6d16e edac_device_alloc_ctl_info EXPORT_SYMBOL_GPL vmlinux 0xacc977ac alarm_forward_now -EXPORT_SYMBOL_GPL vmlinux 0xacd050f5 __traceiter_br_fdb_update -EXPORT_SYMBOL_GPL vmlinux 0xacd0c766 phy_set_mode_ext -EXPORT_SYMBOL_GPL vmlinux 0xacd9519e gpiod_set_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xacdcd3be usb_get_urb -EXPORT_SYMBOL_GPL vmlinux 0xace61f09 tpm_get_random -EXPORT_SYMBOL_GPL vmlinux 0xacea051c acpi_gpiochip_free_interrupts -EXPORT_SYMBOL_GPL vmlinux 0xaced4a0b battery_hook_unregister -EXPORT_SYMBOL_GPL vmlinux 0xacf489f5 platform_device_register -EXPORT_SYMBOL_GPL vmlinux 0xad07c3a3 cpci_hp_register_bus +EXPORT_SYMBOL_GPL vmlinux 0xacd357d4 xenbus_watch_pathfmt +EXPORT_SYMBOL_GPL vmlinux 0xace3cce4 of_property_read_variable_u64_array +EXPORT_SYMBOL_GPL vmlinux 0xacea3fdd fwnode_create_software_node +EXPORT_SYMBOL_GPL vmlinux 0xacf49c4a user_update +EXPORT_SYMBOL_GPL vmlinux 0xad022553 ahci_platform_disable_regulators +EXPORT_SYMBOL_GPL vmlinux 0xad074147 dev_pm_opp_enable EXPORT_SYMBOL_GPL vmlinux 0xad0f2b6c unix_table_lock -EXPORT_SYMBOL_GPL vmlinux 0xad14f0db bpf_trace_run9 -EXPORT_SYMBOL_GPL vmlinux 0xad1fa0ab acpi_initialize_hp_context +EXPORT_SYMBOL_GPL vmlinux 0xad1cb338 devm_regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0xad1f7808 vring_create_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0xad204d6d sk_msg_zerocopy_from_iter EXPORT_SYMBOL_GPL vmlinux 0xad25602f __tracepoint_sched_overutilized_tp +EXPORT_SYMBOL_GPL vmlinux 0xad2d4112 spi_sync_locked +EXPORT_SYMBOL_GPL vmlinux 0xad35a5e2 of_clk_hw_onecell_get +EXPORT_SYMBOL_GPL vmlinux 0xad38cf66 setfl EXPORT_SYMBOL_GPL vmlinux 0xad395dd9 mm_account_pinned_pages +EXPORT_SYMBOL_GPL vmlinux 0xad3f7c55 __inode_attach_wb EXPORT_SYMBOL_GPL vmlinux 0xad42dff8 __SCK__tp_func_tcp_bad_csum -EXPORT_SYMBOL_GPL vmlinux 0xad4b4e94 evm_verifyxattr -EXPORT_SYMBOL_GPL vmlinux 0xad4b979b pin_get_name EXPORT_SYMBOL_GPL vmlinux 0xad4e6259 remove_cpu EXPORT_SYMBOL_GPL vmlinux 0xad5737fc efivar_init -EXPORT_SYMBOL_GPL vmlinux 0xad5d3a7b sysfs_remove_group +EXPORT_SYMBOL_GPL vmlinux 0xad5f0de2 cpuidle_register EXPORT_SYMBOL_GPL vmlinux 0xad645234 register_switchdev_notifier -EXPORT_SYMBOL_GPL vmlinux 0xad6a3633 sysfs_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xad6a0b7d wait_on_page_writeback_killable +EXPORT_SYMBOL_GPL vmlinux 0xad7167c8 pinctrl_remove_gpio_range EXPORT_SYMBOL_GPL vmlinux 0xad76a3f0 __SCK__tp_func_neigh_update_done -EXPORT_SYMBOL_GPL vmlinux 0xad8e56d4 task_cgroup_path -EXPORT_SYMBOL_GPL vmlinux 0xad9429b3 crypto_rng_reset -EXPORT_SYMBOL_GPL vmlinux 0xad9a8ebf ohci_hub_control -EXPORT_SYMBOL_GPL vmlinux 0xad9edc4d alloc_dax +EXPORT_SYMBOL_GPL vmlinux 0xad80b39d devm_gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0xad837925 usb_get_role_switch_default_mode +EXPORT_SYMBOL_GPL vmlinux 0xad8ad5b4 wwan_unregister_ops +EXPORT_SYMBOL_GPL vmlinux 0xad9035c0 memremap_pages EXPORT_SYMBOL_GPL vmlinux 0xada38766 dst_cache_destroy -EXPORT_SYMBOL_GPL vmlinux 0xadb87a0f ahci_do_hardreset -EXPORT_SYMBOL_GPL vmlinux 0xadd98d8c usb_enable_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0xade432a6 bdi_dev_name -EXPORT_SYMBOL_GPL vmlinux 0xade922d2 dev_pm_opp_get_max_transition_latency -EXPORT_SYMBOL_GPL vmlinux 0xaded6cee sysfs_groups_change_owner -EXPORT_SYMBOL_GPL vmlinux 0xadee74b7 blk_mq_alloc_request_hctx -EXPORT_SYMBOL_GPL vmlinux 0xae00dcc0 devm_request_free_mem_region +EXPORT_SYMBOL_GPL vmlinux 0xadae96e2 fsl_mc_bus_dpsw_type +EXPORT_SYMBOL_GPL vmlinux 0xadb8bba0 uhci_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0xadd92199 led_trigger_set +EXPORT_SYMBOL_GPL vmlinux 0xadddc872 pwmchip_add +EXPORT_SYMBOL_GPL vmlinux 0xade2512d ata_sff_queue_pio_task +EXPORT_SYMBOL_GPL vmlinux 0xaded9270 device_store_int +EXPORT_SYMBOL_GPL vmlinux 0xadfafb1b blkcg_policy_unregister +EXPORT_SYMBOL_GPL vmlinux 0xae000c23 blk_ksm_is_superset EXPORT_SYMBOL_GPL vmlinux 0xae0ecf40 usb_bus_idr_lock EXPORT_SYMBOL_GPL vmlinux 0xae1051b0 net_cls_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xae1d31d3 regmap_field_bulk_alloc -EXPORT_SYMBOL_GPL vmlinux 0xae1f7ffa is_nvdimm_sync -EXPORT_SYMBOL_GPL vmlinux 0xae21f7e9 acpi_dev_get_property -EXPORT_SYMBOL_GPL vmlinux 0xae225a4c dev_pm_opp_of_get_sharing_cpus -EXPORT_SYMBOL_GPL vmlinux 0xae24508e clean_acked_data_enable -EXPORT_SYMBOL_GPL vmlinux 0xae295074 pci_cfg_access_lock -EXPORT_SYMBOL_GPL vmlinux 0xae2eed94 bio_associate_blkg +EXPORT_SYMBOL_GPL vmlinux 0xae153e75 mtk_pinconf_adv_drive_set +EXPORT_SYMBOL_GPL vmlinux 0xae219ea6 acpi_device_get_match_data +EXPORT_SYMBOL_GPL vmlinux 0xae311866 usb_ifnum_to_if EXPORT_SYMBOL_GPL vmlinux 0xae39f80e dst_cache_init -EXPORT_SYMBOL_GPL vmlinux 0xae3d1768 bus_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0xae5d9102 device_property_present +EXPORT_SYMBOL_GPL vmlinux 0xae648fc9 sock_prot_inuse_add 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 0xae6752e0 dev_set_name EXPORT_SYMBOL_GPL vmlinux 0xae69b1c1 usermodehelper_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0xae77e7f2 bio_start_io_acct_time +EXPORT_SYMBOL_GPL vmlinux 0xae6c9066 kernfs_put +EXPORT_SYMBOL_GPL vmlinux 0xae7041d1 of_reserved_mem_device_init_by_idx EXPORT_SYMBOL_GPL vmlinux 0xae7c231d mpi_cmp -EXPORT_SYMBOL_GPL vmlinux 0xae98b251 __traceiter_block_bio_remap -EXPORT_SYMBOL_GPL vmlinux 0xaea736c9 md_new_event -EXPORT_SYMBOL_GPL vmlinux 0xaea8e55f security_inode_setattr -EXPORT_SYMBOL_GPL vmlinux 0xaebb119c fwnode_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0xaebf25e8 init_dummy_netdev -EXPORT_SYMBOL_GPL vmlinux 0xaed161e3 inet6_destroy_sock -EXPORT_SYMBOL_GPL vmlinux 0xaed207ff i2c_match_id -EXPORT_SYMBOL_GPL vmlinux 0xaed55c33 blk_mq_quiesce_queue_nowait -EXPORT_SYMBOL_GPL vmlinux 0xaed6e5c9 ethnl_cable_test_alloc +EXPORT_SYMBOL_GPL vmlinux 0xae7cf162 pci_epc_get_msi +EXPORT_SYMBOL_GPL vmlinux 0xae9c8ccf scsi_unregister_device_handler +EXPORT_SYMBOL_GPL vmlinux 0xaeac6870 devm_thermal_add_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0xaeb3feb0 kvm_io_bus_write +EXPORT_SYMBOL_GPL vmlinux 0xaeb489d4 acpi_bus_trim +EXPORT_SYMBOL_GPL vmlinux 0xaed792dc usb_control_msg_recv +EXPORT_SYMBOL_GPL vmlinux 0xaedee074 devm_spi_register_controller +EXPORT_SYMBOL_GPL vmlinux 0xaee11b56 __put_net +EXPORT_SYMBOL_GPL vmlinux 0xaee349a3 devm_gpiod_get_array_optional EXPORT_SYMBOL_GPL vmlinux 0xaf076aec nd_fletcher64 +EXPORT_SYMBOL_GPL vmlinux 0xaf0af603 iomap_migrate_page EXPORT_SYMBOL_GPL vmlinux 0xaf0b6ba7 blkg_rwstat_init -EXPORT_SYMBOL_GPL vmlinux 0xaf13510a __regmap_init_mmio_clk -EXPORT_SYMBOL_GPL vmlinux 0xaf1801e4 devlink_dpipe_table_resource_set -EXPORT_SYMBOL_GPL vmlinux 0xaf185459 regulator_sync_voltage -EXPORT_SYMBOL_GPL vmlinux 0xaf2f70da kvm_vcpu_gfn_to_pfn_atomic +EXPORT_SYMBOL_GPL vmlinux 0xaf0c906d pinctrl_get EXPORT_SYMBOL_GPL vmlinux 0xaf348da7 cpu_pm_exit EXPORT_SYMBOL_GPL vmlinux 0xaf3a44e9 __SCK__tp_func_sched_overutilized_tp EXPORT_SYMBOL_GPL vmlinux 0xaf4014ff usb_amd_quirk_pll_check -EXPORT_SYMBOL_GPL vmlinux 0xaf48319f device_add_properties -EXPORT_SYMBOL_GPL vmlinux 0xaf4a7eae __devres_alloc_node -EXPORT_SYMBOL_GPL vmlinux 0xaf4c5a24 tegra_bpmp_transfer_atomic -EXPORT_SYMBOL_GPL vmlinux 0xaf58f936 devlink_region_create -EXPORT_SYMBOL_GPL vmlinux 0xaf6cf7ee crypto_larval_alloc -EXPORT_SYMBOL_GPL vmlinux 0xaf7083ce gpiod_set_consumer_name -EXPORT_SYMBOL_GPL vmlinux 0xaf73edf7 acpi_find_child_device +EXPORT_SYMBOL_GPL vmlinux 0xaf41eb80 devm_otg_ulpi_create +EXPORT_SYMBOL_GPL vmlinux 0xaf5a2815 blk_mq_quiesce_queue_nowait +EXPORT_SYMBOL_GPL vmlinux 0xaf669984 tc3589x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xaf6be5e4 amba_device_alloc EXPORT_SYMBOL_GPL vmlinux 0xaf793668 __alloc_percpu_gfp -EXPORT_SYMBOL_GPL vmlinux 0xaf7c4442 kvm_unmap_gfn -EXPORT_SYMBOL_GPL vmlinux 0xaf7db42f tps65912_device_exit -EXPORT_SYMBOL_GPL vmlinux 0xaf812f67 mmu_interval_notifier_remove +EXPORT_SYMBOL_GPL vmlinux 0xaf84c25f nd_cmd_out_size EXPORT_SYMBOL_GPL vmlinux 0xaf852873 cpuidle_register_device -EXPORT_SYMBOL_GPL vmlinux 0xafaf8af4 virtqueue_enable_cb +EXPORT_SYMBOL_GPL vmlinux 0xaf8f1dcf blkcg_root_css +EXPORT_SYMBOL_GPL vmlinux 0xaf925d42 tcp_set_keepalive +EXPORT_SYMBOL_GPL vmlinux 0xaf97b763 device_for_each_child +EXPORT_SYMBOL_GPL vmlinux 0xaf9b3671 acpi_dev_remove_driver_gpios +EXPORT_SYMBOL_GPL vmlinux 0xafa163f3 unmap_mapping_pages +EXPORT_SYMBOL_GPL vmlinux 0xafa2d262 pm_clk_suspend EXPORT_SYMBOL_GPL vmlinux 0xafb07262 __pfn_to_mfn -EXPORT_SYMBOL_GPL vmlinux 0xafb670ed __strp_unpause -EXPORT_SYMBOL_GPL vmlinux 0xafba2deb __traceiter_devlink_hwmsg -EXPORT_SYMBOL_GPL vmlinux 0xafbd10d2 fuse_send_init -EXPORT_SYMBOL_GPL vmlinux 0xafbe5167 tegra_xusb_padctl_legacy_remove -EXPORT_SYMBOL_GPL vmlinux 0xafc7935d vp_modern_map_vq_notify -EXPORT_SYMBOL_GPL vmlinux 0xafd2497c mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0xafb5ef59 dprc_scan_container +EXPORT_SYMBOL_GPL vmlinux 0xafb8855a led_set_brightness_nosleep +EXPORT_SYMBOL_GPL vmlinux 0xafc5322a key_set_timeout +EXPORT_SYMBOL_GPL vmlinux 0xafc789ca disk_update_readahead +EXPORT_SYMBOL_GPL vmlinux 0xafd13548 clk_gate_ops EXPORT_SYMBOL_GPL vmlinux 0xafddd545 ata_id_c_string EXPORT_SYMBOL_GPL vmlinux 0xafeb58c1 __SCK__tp_func_io_page_fault -EXPORT_SYMBOL_GPL vmlinux 0xaff9e61e pm_clk_add -EXPORT_SYMBOL_GPL vmlinux 0xafff765b edac_mc_add_mc_with_groups -EXPORT_SYMBOL_GPL vmlinux 0xb00025ef crypto_stats_akcipher_decrypt -EXPORT_SYMBOL_GPL vmlinux 0xb005e7bb pci_assign_unassigned_bridge_resources +EXPORT_SYMBOL_GPL vmlinux 0xaff1d9c4 irq_domain_set_hwirq_and_chip +EXPORT_SYMBOL_GPL vmlinux 0xaff67284 dev_pm_opp_put_supported_hw +EXPORT_SYMBOL_GPL vmlinux 0xaffa4839 ata_sff_pause +EXPORT_SYMBOL_GPL vmlinux 0xaffbadd2 pci_reset_function_locked EXPORT_SYMBOL_GPL vmlinux 0xb0099f79 topology_clear_scale_freq_source -EXPORT_SYMBOL_GPL vmlinux 0xb01db188 acpi_cppc_processor_exit +EXPORT_SYMBOL_GPL vmlinux 0xb00f9a13 __pci_hp_initialize +EXPORT_SYMBOL_GPL vmlinux 0xb0233b6f platform_get_mem_or_io +EXPORT_SYMBOL_GPL vmlinux 0xb026f31e phy_select_page +EXPORT_SYMBOL_GPL vmlinux 0xb0286d9e ata_scsi_port_error_handler EXPORT_SYMBOL_GPL vmlinux 0xb02ac411 register_xenstore_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb02aee2b devlink_free -EXPORT_SYMBOL_GPL vmlinux 0xb02e51ab shake_page -EXPORT_SYMBOL_GPL vmlinux 0xb033f01a pinctrl_force_sleep -EXPORT_SYMBOL_GPL vmlinux 0xb03a5ca3 devm_rtc_device_register -EXPORT_SYMBOL_GPL vmlinux 0xb03df21d device_find_child -EXPORT_SYMBOL_GPL vmlinux 0xb0496fa9 irq_chip_unmask_parent +EXPORT_SYMBOL_GPL vmlinux 0xb042de5d follow_pte 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 0xb0700c25 crypto_stats_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0xb066c17c gpiochip_line_is_open_drain +EXPORT_SYMBOL_GPL vmlinux 0xb06ee67b sock_map_unhash EXPORT_SYMBOL_GPL vmlinux 0xb0747ed2 rcu_cpu_stall_suppress EXPORT_SYMBOL_GPL vmlinux 0xb077e70a clk_unprepare -EXPORT_SYMBOL_GPL vmlinux 0xb07c9e5c pci_get_dsn -EXPORT_SYMBOL_GPL vmlinux 0xb07cf2d5 k3_ringacc_ring_cfg EXPORT_SYMBOL_GPL vmlinux 0xb08a22a3 cpufreq_show_cpus -EXPORT_SYMBOL_GPL vmlinux 0xb0a10493 dev_pm_opp_get_level -EXPORT_SYMBOL_GPL vmlinux 0xb0a9a196 unix_inq_len +EXPORT_SYMBOL_GPL vmlinux 0xb09aa774 cookie_tcp_reqsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb0ab33f9 elv_register +EXPORT_SYMBOL_GPL vmlinux 0xb0ae829b sock_diag_save_cookie EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset +EXPORT_SYMBOL_GPL vmlinux 0xb0c82e5f devlink_param_register +EXPORT_SYMBOL_GPL vmlinux 0xb0c92da0 ipv4_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0xb0cd5fb0 ahci_reset_em EXPORT_SYMBOL_GPL vmlinux 0xb0d1656c gpio_free_array -EXPORT_SYMBOL_GPL vmlinux 0xb0e8da14 fat_search_long +EXPORT_SYMBOL_GPL vmlinux 0xb0d23c6c blkdev_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xb0d3a451 rtc_set_time EXPORT_SYMBOL_GPL vmlinux 0xb0e8e671 xenbus_otherend_changed -EXPORT_SYMBOL_GPL vmlinux 0xb0eaa700 ipv4_sk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0xb0f486a2 skb_gso_validate_mac_len -EXPORT_SYMBOL_GPL vmlinux 0xb0f6b595 ata_host_register -EXPORT_SYMBOL_GPL vmlinux 0xb0f906e7 wm8350_block_read +EXPORT_SYMBOL_GPL vmlinux 0xb0f39666 of_irq_to_resource +EXPORT_SYMBOL_GPL vmlinux 0xb0f3edb1 security_file_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xb0f5949f cros_ec_get_sensor_count +EXPORT_SYMBOL_GPL vmlinux 0xb0fe3bc4 usb_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xb1022b16 regulator_set_suspend_voltage +EXPORT_SYMBOL_GPL vmlinux 0xb10bcac0 crypto_alloc_skcipher EXPORT_SYMBOL_GPL vmlinux 0xb10d964d devlink_fmsg_pair_nest_end -EXPORT_SYMBOL_GPL vmlinux 0xb119cb77 pci_restore_msi_state +EXPORT_SYMBOL_GPL vmlinux 0xb1104f3a crypto_register_rng EXPORT_SYMBOL_GPL vmlinux 0xb11d9000 tty_dev_name_to_number -EXPORT_SYMBOL_GPL vmlinux 0xb13fa4c9 show_class_attr_string -EXPORT_SYMBOL_GPL vmlinux 0xb151f61e list_lru_walk_one -EXPORT_SYMBOL_GPL vmlinux 0xb157897a trace_array_set_clr_event -EXPORT_SYMBOL_GPL vmlinux 0xb1587d43 handle_fasteoi_irq -EXPORT_SYMBOL_GPL vmlinux 0xb1587e5f sysfs_remove_link -EXPORT_SYMBOL_GPL vmlinux 0xb15dc6e5 devm_kstrdup +EXPORT_SYMBOL_GPL vmlinux 0xb1332267 dst_cache_set_ip4 +EXPORT_SYMBOL_GPL vmlinux 0xb1354dad bsg_job_put +EXPORT_SYMBOL_GPL vmlinux 0xb140dcc8 cgroup_get_from_path +EXPORT_SYMBOL_GPL vmlinux 0xb158b75f mctrl_gpio_free EXPORT_SYMBOL_GPL vmlinux 0xb15e43b8 get_state_synchronize_srcu EXPORT_SYMBOL_GPL vmlinux 0xb1647fc2 devlink_info_version_running_put -EXPORT_SYMBOL_GPL vmlinux 0xb177f3db lp8788_write_byte +EXPORT_SYMBOL_GPL vmlinux 0xb168b4f6 iommu_domain_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb169441f cpufreq_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xb16d9513 pci_epc_get_features +EXPORT_SYMBOL_GPL vmlinux 0xb1721978 pl08x_filter_id EXPORT_SYMBOL_GPL vmlinux 0xb18429eb suspend_device_irqs -EXPORT_SYMBOL_GPL vmlinux 0xb193ca71 fib_rules_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb19e7b66 param_set_uint_minmax -EXPORT_SYMBOL_GPL vmlinux 0xb19fea9e spi_mem_poll_status -EXPORT_SYMBOL_GPL vmlinux 0xb1ac172b regulator_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0xb1bb2835 kthread_cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0xb18745d2 exportfs_encode_fh +EXPORT_SYMBOL_GPL vmlinux 0xb189a7f9 meson_sm_get +EXPORT_SYMBOL_GPL vmlinux 0xb1955a65 rockchip_clk_register_plls +EXPORT_SYMBOL_GPL vmlinux 0xb1be8013 usb_choose_configuration EXPORT_SYMBOL_GPL vmlinux 0xb1bed25d dpm_resume_start +EXPORT_SYMBOL_GPL vmlinux 0xb1cd4497 dev_pm_opp_put_prop_name EXPORT_SYMBOL_GPL vmlinux 0xb1e25684 __trace_bputs -EXPORT_SYMBOL_GPL vmlinux 0xb1eb48b0 nf_queue_nf_hook_drop -EXPORT_SYMBOL_GPL vmlinux 0xb1f49949 ata_pci_device_suspend -EXPORT_SYMBOL_GPL vmlinux 0xb1f6b718 regulator_irq_helper -EXPORT_SYMBOL_GPL vmlinux 0xb1f959bc pci_msi_unmask_irq +EXPORT_SYMBOL_GPL vmlinux 0xb1e33d96 devm_hwmon_device_register_with_info +EXPORT_SYMBOL_GPL vmlinux 0xb1ebda01 device_property_read_u16_array EXPORT_SYMBOL_GPL vmlinux 0xb1fc1782 pci_speed_string EXPORT_SYMBOL_GPL vmlinux 0xb202f0d7 rht_bucket_nested_insert -EXPORT_SYMBOL_GPL vmlinux 0xb20b3d92 __bio_add_page +EXPORT_SYMBOL_GPL vmlinux 0xb209b35e pci_enable_rom EXPORT_SYMBOL_GPL vmlinux 0xb2210d64 reset_control_deassert -EXPORT_SYMBOL_GPL vmlinux 0xb2220b61 iptunnel_xmit -EXPORT_SYMBOL_GPL vmlinux 0xb234d888 virtio_max_dma_size -EXPORT_SYMBOL_GPL vmlinux 0xb23b1628 dev_pm_domain_attach_by_name +EXPORT_SYMBOL_GPL vmlinux 0xb23ac75e umd_load_blob EXPORT_SYMBOL_GPL vmlinux 0xb2405efc secure_tcp_seq -EXPORT_SYMBOL_GPL vmlinux 0xb25853bc rcuwait_wake_up -EXPORT_SYMBOL_GPL vmlinux 0xb25e4f1a security_file_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xb243de3d compat_only_sysfs_link_entry_to_kobj +EXPORT_SYMBOL_GPL vmlinux 0xb2462ea3 irq_chip_set_parent_state +EXPORT_SYMBOL_GPL vmlinux 0xb246c3a0 devlink_alloc_ns +EXPORT_SYMBOL_GPL vmlinux 0xb249fd1e dm_per_bio_data +EXPORT_SYMBOL_GPL vmlinux 0xb268c8e8 rq_flush_dcache_pages EXPORT_SYMBOL_GPL vmlinux 0xb26a1add elfcorehdr_addr -EXPORT_SYMBOL_GPL vmlinux 0xb271b193 __rtnl_link_register -EXPORT_SYMBOL_GPL vmlinux 0xb2741147 kvm_vcpu_write_guest_page -EXPORT_SYMBOL_GPL vmlinux 0xb293c1ad of_clk_get_parent_name +EXPORT_SYMBOL_GPL vmlinux 0xb275fca6 mptcp_pm_get_local_addr_max +EXPORT_SYMBOL_GPL vmlinux 0xb2803146 pci_epf_type_add_cfs +EXPORT_SYMBOL_GPL vmlinux 0xb2806766 fuse_request_end +EXPORT_SYMBOL_GPL vmlinux 0xb282030f edac_mc_handle_error +EXPORT_SYMBOL_GPL vmlinux 0xb287ae27 pci_user_read_config_dword +EXPORT_SYMBOL_GPL vmlinux 0xb28e07bf aead_exit_geniv EXPORT_SYMBOL_GPL vmlinux 0xb29533ee zs_malloc -EXPORT_SYMBOL_GPL vmlinux 0xb295a10e net_ns_get_ownership -EXPORT_SYMBOL_GPL vmlinux 0xb2b0306c unregister_pernet_subsys -EXPORT_SYMBOL_GPL vmlinux 0xb2c0a97c fwnode_get_phy_node +EXPORT_SYMBOL_GPL vmlinux 0xb2aa90e5 usb_phy_roothub_alloc EXPORT_SYMBOL_GPL vmlinux 0xb2c1732e rcu_gp_set_torture_wait -EXPORT_SYMBOL_GPL vmlinux 0xb2de9439 phy_calibrate -EXPORT_SYMBOL_GPL vmlinux 0xb2dfddad efivar_entry_find -EXPORT_SYMBOL_GPL vmlinux 0xb2e52a06 debugfs_create_x16 -EXPORT_SYMBOL_GPL vmlinux 0xb2e60ca2 kthread_park EXPORT_SYMBOL_GPL vmlinux 0xb2e764e8 suspend_valid_only_mem -EXPORT_SYMBOL_GPL vmlinux 0xb2f7ac41 devm_hwspin_lock_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb2f55416 of_reconfig_get_state_change +EXPORT_SYMBOL_GPL vmlinux 0xb2f80d47 driver_remove_file +EXPORT_SYMBOL_GPL vmlinux 0xb2fa97c1 ahci_platform_enable_resources +EXPORT_SYMBOL_GPL vmlinux 0xb303ac21 dprc_get_obj_region EXPORT_SYMBOL_GPL vmlinux 0xb307c909 devlink_fmsg_u64_pair_put -EXPORT_SYMBOL_GPL vmlinux 0xb3179e64 devm_regmap_add_irq_chip_fwnode -EXPORT_SYMBOL_GPL vmlinux 0xb3420d0a trace_put_event_file -EXPORT_SYMBOL_GPL vmlinux 0xb3704f7e ata_sas_tport_delete -EXPORT_SYMBOL_GPL vmlinux 0xb38d5cee pci_walk_bus -EXPORT_SYMBOL_GPL vmlinux 0xb393098b sata_pmp_error_handler -EXPORT_SYMBOL_GPL vmlinux 0xb39d560d i2c_generic_scl_recovery -EXPORT_SYMBOL_GPL vmlinux 0xb3b27d76 set_secondary_fwnode -EXPORT_SYMBOL_GPL vmlinux 0xb3ca4180 usb_bulk_msg -EXPORT_SYMBOL_GPL vmlinux 0xb3ca9177 blkg_conf_finish -EXPORT_SYMBOL_GPL vmlinux 0xb3cad5e0 __traceiter_neigh_event_send_dead -EXPORT_SYMBOL_GPL vmlinux 0xb3d82c4b debugfs_create_u8 -EXPORT_SYMBOL_GPL vmlinux 0xb3e00844 nvdimm_bus_check_dimm_count -EXPORT_SYMBOL_GPL vmlinux 0xb3e54d00 perf_event_disable -EXPORT_SYMBOL_GPL vmlinux 0xb3f1402e tps6586x_clr_bits -EXPORT_SYMBOL_GPL vmlinux 0xb3fc50ca perf_tp_event -EXPORT_SYMBOL_GPL vmlinux 0xb40c3754 cpufreq_enable_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0xb324a009 uart_console_write +EXPORT_SYMBOL_GPL vmlinux 0xb32cfa5a pinmux_generic_get_function +EXPORT_SYMBOL_GPL vmlinux 0xb3353019 wm8350_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0xb337a74d devm_hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb34f9f12 devm_gpiod_get_from_of_node +EXPORT_SYMBOL_GPL vmlinux 0xb3503df6 tty_set_termios +EXPORT_SYMBOL_GPL vmlinux 0xb35d029c nf_hook_entries_insert_raw +EXPORT_SYMBOL_GPL vmlinux 0xb35fa681 tcp_ca_get_key_by_name +EXPORT_SYMBOL_GPL vmlinux 0xb36e025e pm_runtime_no_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xb36ec854 hwspin_lock_request +EXPORT_SYMBOL_GPL vmlinux 0xb3830c77 syscon_regmap_lookup_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xb38a4cb3 netdev_is_rx_handler_busy +EXPORT_SYMBOL_GPL vmlinux 0xb38c879c class_find_device +EXPORT_SYMBOL_GPL vmlinux 0xb3cfd674 tegra_bpmp_get +EXPORT_SYMBOL_GPL vmlinux 0xb3de1968 stmpe_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xb3dfc3ae auxiliary_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb3f112ab bgmac_enet_probe +EXPORT_SYMBOL_GPL vmlinux 0xb40bb002 blk_mq_queue_inflight EXPORT_SYMBOL_GPL vmlinux 0xb40d673e zynqmp_pm_pinctrl_request -EXPORT_SYMBOL_GPL vmlinux 0xb40fe5fc dw_pcie_wait_for_link -EXPORT_SYMBOL_GPL vmlinux 0xb41b369c efivar_entry_size -EXPORT_SYMBOL_GPL vmlinux 0xb42f0d60 sdev_evt_send -EXPORT_SYMBOL_GPL vmlinux 0xb42f7436 irq_domain_pop_irq +EXPORT_SYMBOL_GPL vmlinux 0xb40dfd00 crypto_stats_akcipher_sign +EXPORT_SYMBOL_GPL vmlinux 0xb4372cb8 genpd_dev_pm_attach_by_id EXPORT_SYMBOL_GPL vmlinux 0xb43f9365 ktime_get -EXPORT_SYMBOL_GPL vmlinux 0xb4427499 debugfs_create_blob EXPORT_SYMBOL_GPL vmlinux 0xb4429b64 acpi_dev_resource_ext_address_space -EXPORT_SYMBOL_GPL vmlinux 0xb44a132f tpm2_get_tpm_pt EXPORT_SYMBOL_GPL vmlinux 0xb44e18ea audit_enabled -EXPORT_SYMBOL_GPL vmlinux 0xb44e8a65 dpcon_close -EXPORT_SYMBOL_GPL vmlinux 0xb456909b pwm_request -EXPORT_SYMBOL_GPL vmlinux 0xb45a88d0 dma_max_mapping_size +EXPORT_SYMBOL_GPL vmlinux 0xb44ffe7c clk_mux_determine_rate_flags +EXPORT_SYMBOL_GPL vmlinux 0xb45deabc __skb_get_hash_symmetric +EXPORT_SYMBOL_GPL vmlinux 0xb475e40f key_type_encrypted +EXPORT_SYMBOL_GPL vmlinux 0xb47caafb gpiod_set_array_value +EXPORT_SYMBOL_GPL vmlinux 0xb4833725 pci_epc_multi_mem_init EXPORT_SYMBOL_GPL vmlinux 0xb48f0638 software_node_register -EXPORT_SYMBOL_GPL vmlinux 0xb493ced7 devm_platform_ioremap_resource_byname -EXPORT_SYMBOL_GPL vmlinux 0xb4a169b6 vga_default_device -EXPORT_SYMBOL_GPL vmlinux 0xb4a16ed0 devm_watchdog_register_device -EXPORT_SYMBOL_GPL vmlinux 0xb4aa3028 power_supply_property_is_writeable -EXPORT_SYMBOL_GPL vmlinux 0xb4abcd03 platform_msi_domain_alloc_irqs +EXPORT_SYMBOL_GPL vmlinux 0xb496f4c6 pci_iomap_wc EXPORT_SYMBOL_GPL vmlinux 0xb4b19455 imx8m_clk_hw_composite_flags EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb4c913a7 mnt_want_write -EXPORT_SYMBOL_GPL vmlinux 0xb4c9d495 pci_epc_mem_alloc_addr -EXPORT_SYMBOL_GPL vmlinux 0xb4d1bc06 blk_mq_sched_try_merge -EXPORT_SYMBOL_GPL vmlinux 0xb4dcd416 of_icc_get_from_provider +EXPORT_SYMBOL_GPL vmlinux 0xb4df88da handle_irq_desc +EXPORT_SYMBOL_GPL vmlinux 0xb4e241ad regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb4e8eae9 umd_cleanup_helper EXPORT_SYMBOL_GPL vmlinux 0xb4ea7cf7 kgdb_connected EXPORT_SYMBOL_GPL vmlinux 0xb4eda0da ring_buffer_event_length EXPORT_SYMBOL_GPL vmlinux 0xb501b2df nd_cmd_dimm_desc +EXPORT_SYMBOL_GPL vmlinux 0xb507087f rtc_read_alarm EXPORT_SYMBOL_GPL vmlinux 0xb510c250 raw_v4_hashinfo EXPORT_SYMBOL_GPL vmlinux 0xb51fbd64 edac_op_state EXPORT_SYMBOL_GPL vmlinux 0xb520eb79 btree_merge -EXPORT_SYMBOL_GPL vmlinux 0xb5253df2 devm_pinctrl_register_and_init -EXPORT_SYMBOL_GPL vmlinux 0xb526729f anon_transport_class_register -EXPORT_SYMBOL_GPL vmlinux 0xb5328173 regcache_cache_only -EXPORT_SYMBOL_GPL vmlinux 0xb5377393 pcie_aspm_capable +EXPORT_SYMBOL_GPL vmlinux 0xb52d4753 sdio_retune_crc_enable +EXPORT_SYMBOL_GPL vmlinux 0xb52f2ad1 of_hwspin_lock_get_id +EXPORT_SYMBOL_GPL vmlinux 0xb538bb0f css_next_descendant_pre +EXPORT_SYMBOL_GPL vmlinux 0xb5448796 serdev_device_set_flow_control EXPORT_SYMBOL_GPL vmlinux 0xb55de460 HYPERVISOR_dm_op -EXPORT_SYMBOL_GPL vmlinux 0xb560e73d security_path_truncate -EXPORT_SYMBOL_GPL vmlinux 0xb56ee5a3 device_link_add -EXPORT_SYMBOL_GPL vmlinux 0xb58eb06c iommu_sva_unbind_device -EXPORT_SYMBOL_GPL vmlinux 0xb59b75af spi_slave_abort +EXPORT_SYMBOL_GPL vmlinux 0xb55e8b53 ipv6_opt_accepted +EXPORT_SYMBOL_GPL vmlinux 0xb565cd9b vp_modern_queue_address +EXPORT_SYMBOL_GPL vmlinux 0xb568acbe ata_scsi_slave_destroy +EXPORT_SYMBOL_GPL vmlinux 0xb58485e9 irq_create_fwspec_mapping +EXPORT_SYMBOL_GPL vmlinux 0xb58eebc5 ata_host_activate +EXPORT_SYMBOL_GPL vmlinux 0xb596e7ea ti_sci_inta_msi_get_virq +EXPORT_SYMBOL_GPL vmlinux 0xb5973500 mtk_pinconf_bias_disable_set EXPORT_SYMBOL_GPL vmlinux 0xb5a83e35 gnttab_setup_auto_xlat_frames EXPORT_SYMBOL_GPL vmlinux 0xb5a8c226 acpi_gsi_to_irq -EXPORT_SYMBOL_GPL vmlinux 0xb5b32466 security_file_permission EXPORT_SYMBOL_GPL vmlinux 0xb5b6fb04 hv_get_vpreg -EXPORT_SYMBOL_GPL vmlinux 0xb5b8ff1a clkdev_create -EXPORT_SYMBOL_GPL vmlinux 0xb5c202b7 mmc_sanitize -EXPORT_SYMBOL_GPL vmlinux 0xb5c7bb09 sched_set_normal -EXPORT_SYMBOL_GPL vmlinux 0xb5d50f2a usb_hcd_unmap_urb_setup_for_dma -EXPORT_SYMBOL_GPL vmlinux 0xb5e55769 ata_pci_bmdma_init -EXPORT_SYMBOL_GPL vmlinux 0xb5f07114 device_dma_supported -EXPORT_SYMBOL_GPL vmlinux 0xb5fade6a rio_attach_device +EXPORT_SYMBOL_GPL vmlinux 0xb5b926b7 __sync_filesystem +EXPORT_SYMBOL_GPL vmlinux 0xb5d3b5fd mtk_pinconf_bias_disable_get_rev1 +EXPORT_SYMBOL_GPL vmlinux 0xb5e7f391 ping_err +EXPORT_SYMBOL_GPL vmlinux 0xb5ed5554 clk_mux_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0xb601aafc devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0xb60bd256 imx_pinctrl_parse_pin_scu +EXPORT_SYMBOL_GPL vmlinux 0xb617815f serial8250_rpm_get_tx +EXPORT_SYMBOL_GPL vmlinux 0xb61ee1b8 devfreq_event_get_event +EXPORT_SYMBOL_GPL vmlinux 0xb624077c pci_epc_linkup +EXPORT_SYMBOL_GPL vmlinux 0xb624f530 xenbus_dev_resume EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb626d43c ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0xb62eab81 power_supply_put +EXPORT_SYMBOL_GPL vmlinux 0xb62f8ce8 devm_regulator_put EXPORT_SYMBOL_GPL vmlinux 0xb6357e53 cpuidle_enable_device +EXPORT_SYMBOL_GPL vmlinux 0xb63dd978 spi_res_release EXPORT_SYMBOL_GPL vmlinux 0xb6410433 mpi_addm -EXPORT_SYMBOL_GPL vmlinux 0xb64df911 gpiod_export_link -EXPORT_SYMBOL_GPL vmlinux 0xb6514c39 alloc_page_buffers +EXPORT_SYMBOL_GPL vmlinux 0xb64c7a1e of_cpufreq_cooling_register EXPORT_SYMBOL_GPL vmlinux 0xb655f91b pci_epc_get_next_free_bar -EXPORT_SYMBOL_GPL vmlinux 0xb657319e tty_ldisc_flush -EXPORT_SYMBOL_GPL vmlinux 0xb66962d2 pci_msi_mask_irq -EXPORT_SYMBOL_GPL vmlinux 0xb67683f7 irq_set_default_host +EXPORT_SYMBOL_GPL vmlinux 0xb65b3934 dma_alloc_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0xb6605a93 ata_dev_set_feature +EXPORT_SYMBOL_GPL vmlinux 0xb66f0370 page_mkclean EXPORT_SYMBOL_GPL vmlinux 0xb6787346 sfp_unregister_socket -EXPORT_SYMBOL_GPL vmlinux 0xb67ee900 pci_dev_run_wake -EXPORT_SYMBOL_GPL vmlinux 0xb680f32e sata_async_notification -EXPORT_SYMBOL_GPL vmlinux 0xb6830053 mpc8xxx_spi_tx_buf_u16 -EXPORT_SYMBOL_GPL vmlinux 0xb69a2be0 extcon_get_state -EXPORT_SYMBOL_GPL vmlinux 0xb6b11a3b reset_control_get_count +EXPORT_SYMBOL_GPL vmlinux 0xb683349f mm_kobj +EXPORT_SYMBOL_GPL vmlinux 0xb6a2c4a0 md_kick_rdev_from_array +EXPORT_SYMBOL_GPL vmlinux 0xb6acea19 fscrypt_mergeable_bio +EXPORT_SYMBOL_GPL vmlinux 0xb6bc07e2 nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0xb6c37df6 nf_queue_entry_get_refs +EXPORT_SYMBOL_GPL vmlinux 0xb6cb8047 dev_coredumpm +EXPORT_SYMBOL_GPL vmlinux 0xb6e1cdc4 nd_blk_region_to_dimm EXPORT_SYMBOL_GPL vmlinux 0xb6e6d99d clk_disable -EXPORT_SYMBOL_GPL vmlinux 0xb6e85463 crypto_unregister_algs -EXPORT_SYMBOL_GPL vmlinux 0xb6ec84a1 sched_trace_cfs_rq_cpu -EXPORT_SYMBOL_GPL vmlinux 0xb6fe942e housekeeping_affine -EXPORT_SYMBOL_GPL vmlinux 0xb6fecc6a devm_hwrng_register -EXPORT_SYMBOL_GPL vmlinux 0xb70b55e4 blk_clear_pm_only -EXPORT_SYMBOL_GPL vmlinux 0xb7101b7a subsys_dev_iter_init -EXPORT_SYMBOL_GPL vmlinux 0xb71e17f2 badblocks_clear +EXPORT_SYMBOL_GPL vmlinux 0xb6edfbd3 dw_pcie_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0xb70d3984 blk_queue_can_use_dma_map_merging +EXPORT_SYMBOL_GPL vmlinux 0xb719667c splice_to_pipe +EXPORT_SYMBOL_GPL vmlinux 0xb7285076 bpf_prog_add +EXPORT_SYMBOL_GPL vmlinux 0xb72c6b97 ahci_shost_attrs +EXPORT_SYMBOL_GPL vmlinux 0xb731272b fsl_mc_cleanup_irq_pool EXPORT_SYMBOL_GPL vmlinux 0xb7329c06 clk_set_phase +EXPORT_SYMBOL_GPL vmlinux 0xb73426b2 crypto_stats_ahash_update EXPORT_SYMBOL_GPL vmlinux 0xb73713d7 nvmem_add_cell_lookups -EXPORT_SYMBOL_GPL vmlinux 0xb73d8005 fwnode_get_named_child_node -EXPORT_SYMBOL_GPL vmlinux 0xb741520b vp_modern_get_driver_features +EXPORT_SYMBOL_GPL vmlinux 0xb7473862 clk_hw_is_prepared EXPORT_SYMBOL_GPL vmlinux 0xb74c31cd wwan_remove_port -EXPORT_SYMBOL_GPL vmlinux 0xb75c934f dev_coredumpv +EXPORT_SYMBOL_GPL vmlinux 0xb754d3c0 sched_set_fifo_low +EXPORT_SYMBOL_GPL vmlinux 0xb75d0de4 bpf_trace_run4 +EXPORT_SYMBOL_GPL vmlinux 0xb77f9681 __percpu_down_read EXPORT_SYMBOL_GPL vmlinux 0xb782c1a3 hv_get_vpreg_128 -EXPORT_SYMBOL_GPL vmlinux 0xb78372ae rio_dev_put +EXPORT_SYMBOL_GPL vmlinux 0xb782cb84 ata_qc_complete EXPORT_SYMBOL_GPL vmlinux 0xb786bf75 pci_write_msi_msg -EXPORT_SYMBOL_GPL vmlinux 0xb7902b60 scsi_host_unblock -EXPORT_SYMBOL_GPL vmlinux 0xb7925e54 genphy_c45_an_disable_aneg -EXPORT_SYMBOL_GPL vmlinux 0xb795d2a2 tps6586x_read -EXPORT_SYMBOL_GPL vmlinux 0xb79b2ffe get_current_tty +EXPORT_SYMBOL_GPL vmlinux 0xb78a6d89 umd_unload_blob +EXPORT_SYMBOL_GPL vmlinux 0xb798601d of_property_read_variable_u8_array +EXPORT_SYMBOL_GPL vmlinux 0xb79987ad zap_vma_ptes EXPORT_SYMBOL_GPL vmlinux 0xb7a387fc synchronize_rcu_tasks_rude -EXPORT_SYMBOL_GPL vmlinux 0xb7a812ad dev_pm_opp_find_freq_floor -EXPORT_SYMBOL_GPL vmlinux 0xb7b77980 ti_sci_inta_msi_get_virq +EXPORT_SYMBOL_GPL vmlinux 0xb7aebfff of_clk_add_provider +EXPORT_SYMBOL_GPL vmlinux 0xb7b7a786 tpm_pcr_extend +EXPORT_SYMBOL_GPL vmlinux 0xb7bef238 ethnl_cable_test_fault_length +EXPORT_SYMBOL_GPL vmlinux 0xb7c1ab03 kset_create_and_add EXPORT_SYMBOL_GPL vmlinux 0xb7c69a63 unregister_vmap_purge_notifier EXPORT_SYMBOL_GPL vmlinux 0xb7cc0cff __tracepoint_br_fdb_add -EXPORT_SYMBOL_GPL vmlinux 0xb7d2514b of_device_uevent_modalias +EXPORT_SYMBOL_GPL vmlinux 0xb7dd6d31 dma_run_dependencies +EXPORT_SYMBOL_GPL vmlinux 0xb7e3fbf3 regulator_set_voltage_rdev +EXPORT_SYMBOL_GPL vmlinux 0xb7e8447c of_platform_depopulate +EXPORT_SYMBOL_GPL vmlinux 0xb7e89d27 fuse_conn_put +EXPORT_SYMBOL_GPL vmlinux 0xb7ee9db2 led_trigger_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb7eeeeb9 ping_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0xb7f290cf xfrm_audit_state_add +EXPORT_SYMBOL_GPL vmlinux 0xb7f5862b of_property_count_elems_of_size EXPORT_SYMBOL_GPL vmlinux 0xb7f73ef8 xas_init_marks EXPORT_SYMBOL_GPL vmlinux 0xb7f990e9 rht_bucket_nested -EXPORT_SYMBOL_GPL vmlinux 0xb7fe7abf icc_provider_add -EXPORT_SYMBOL_GPL vmlinux 0xb80d53ef nvdimm_provider_data -EXPORT_SYMBOL_GPL vmlinux 0xb8129db7 pcie_aspm_enabled -EXPORT_SYMBOL_GPL vmlinux 0xb820dd97 power_supply_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xb80fd45c __bio_try_merge_page +EXPORT_SYMBOL_GPL vmlinux 0xb813850b regulator_set_mode +EXPORT_SYMBOL_GPL vmlinux 0xb81e47e5 register_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xb824862d icc_provider_add EXPORT_SYMBOL_GPL vmlinux 0xb8273d0b __wake_up_sync -EXPORT_SYMBOL_GPL vmlinux 0xb83deade xdp_return_frame_bulk -EXPORT_SYMBOL_GPL vmlinux 0xb8433338 ip4_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0xb83aad4d alloc_skb_for_msg +EXPORT_SYMBOL_GPL vmlinux 0xb83f5558 rtnl_register_module EXPORT_SYMBOL_GPL vmlinux 0xb847585f is_hash_blacklisted -EXPORT_SYMBOL_GPL vmlinux 0xb84ad7bf blk_queue_set_zoned -EXPORT_SYMBOL_GPL vmlinux 0xb8531410 sk_psock_tls_strp_read -EXPORT_SYMBOL_GPL vmlinux 0xb86929c6 ata_host_detach -EXPORT_SYMBOL_GPL vmlinux 0xb86fa68c tegra_mc_get_emem_device_count +EXPORT_SYMBOL_GPL vmlinux 0xb85e486c iommu_report_device_fault +EXPORT_SYMBOL_GPL vmlinux 0xb869cd97 ehci_suspend +EXPORT_SYMBOL_GPL vmlinux 0xb86c3b19 device_remove_properties +EXPORT_SYMBOL_GPL vmlinux 0xb871703d wbt_enable_default +EXPORT_SYMBOL_GPL vmlinux 0xb8720583 phy_modify +EXPORT_SYMBOL_GPL vmlinux 0xb8731c67 ethnl_cable_test_step +EXPORT_SYMBOL_GPL vmlinux 0xb87f40fe cppc_set_enable EXPORT_SYMBOL_GPL vmlinux 0xb88bc47e arch_apei_report_mem_error EXPORT_SYMBOL_GPL vmlinux 0xb88dbfce irq_set_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0xb8966a45 extcon_set_state_sync EXPORT_SYMBOL_GPL vmlinux 0xb8993fac __tracepoint_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0xb89bd278 platform_get_irq EXPORT_SYMBOL_GPL vmlinux 0xb89e69b1 jump_label_update_timeout -EXPORT_SYMBOL_GPL vmlinux 0xb8b30569 uart_console_device EXPORT_SYMBOL_GPL vmlinux 0xb8b8c4f0 ti_sci_release_resource -EXPORT_SYMBOL_GPL vmlinux 0xb8bb3791 pfn_to_online_page +EXPORT_SYMBOL_GPL vmlinux 0xb8c5da82 device_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xb8c84f91 iommu_sva_bind_device EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put -EXPORT_SYMBOL_GPL vmlinux 0xb8d2329c stmpe_block_read -EXPORT_SYMBOL_GPL vmlinux 0xb8ebffb9 tc3589x_block_read +EXPORT_SYMBOL_GPL vmlinux 0xb8d3922e key_type_asymmetric +EXPORT_SYMBOL_GPL vmlinux 0xb8d75666 edac_device_free_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0xb8e3344a gpiochip_find +EXPORT_SYMBOL_GPL vmlinux 0xb8eedb41 __inet_twsk_schedule EXPORT_SYMBOL_GPL vmlinux 0xb8f11603 idr_alloc -EXPORT_SYMBOL_GPL vmlinux 0xb8f873ac xenbus_probe_devices -EXPORT_SYMBOL_GPL vmlinux 0xb8fa3b2e serial8250_read_char +EXPORT_SYMBOL_GPL vmlinux 0xb8f2193b genphy_c45_read_pma +EXPORT_SYMBOL_GPL vmlinux 0xb8f86900 iommu_setup_dma_ops +EXPORT_SYMBOL_GPL vmlinux 0xb8f9ad7c metadata_dst_alloc_percpu EXPORT_SYMBOL_GPL vmlinux 0xb912560d static_key_disable EXPORT_SYMBOL_GPL vmlinux 0xb917b6d7 return_address -EXPORT_SYMBOL_GPL vmlinux 0xb94345ff mc_send_command +EXPORT_SYMBOL_GPL vmlinux 0xb928a0f2 ip_route_output_key_hash +EXPORT_SYMBOL_GPL vmlinux 0xb939f18a crypto_aead_setkey +EXPORT_SYMBOL_GPL vmlinux 0xb9505b82 devres_release_group +EXPORT_SYMBOL_GPL vmlinux 0xb95d4d2e pci_generic_config_write EXPORT_SYMBOL_GPL vmlinux 0xb9681621 xdp_do_flush EXPORT_SYMBOL_GPL vmlinux 0xb9852d11 __traceiter_mc_event -EXPORT_SYMBOL_GPL vmlinux 0xb987a64c dev_pm_opp_get_required_pstate EXPORT_SYMBOL_GPL vmlinux 0xb98bb315 phy_gbit_fibre_features -EXPORT_SYMBOL_GPL vmlinux 0xb98daa4b blkg_lookup_slowpath -EXPORT_SYMBOL_GPL vmlinux 0xb9a32fcd dm_table_set_type -EXPORT_SYMBOL_GPL vmlinux 0xb9b27869 virtqueue_kick +EXPORT_SYMBOL_GPL vmlinux 0xb9a3b607 trace_array_printk +EXPORT_SYMBOL_GPL vmlinux 0xb9a4df6f phy_optional_get EXPORT_SYMBOL_GPL vmlinux 0xb9b9df41 usb_amd_dev_put EXPORT_SYMBOL_GPL vmlinux 0xb9c16f51 hv_max_vp_index +EXPORT_SYMBOL_GPL vmlinux 0xb9c229f0 wm831x_reg_read EXPORT_SYMBOL_GPL vmlinux 0xb9c425de register_syscore_ops -EXPORT_SYMBOL_GPL vmlinux 0xb9c84ad9 platform_get_irq_optional -EXPORT_SYMBOL_GPL vmlinux 0xb9c982d4 xdp_return_frame +EXPORT_SYMBOL_GPL vmlinux 0xb9c838ad aead_init_geniv +EXPORT_SYMBOL_GPL vmlinux 0xb9cad506 i2c_new_ancillary_device EXPORT_SYMBOL_GPL vmlinux 0xb9d025c9 llist_del_first -EXPORT_SYMBOL_GPL vmlinux 0xb9d10153 md_allow_write -EXPORT_SYMBOL_GPL vmlinux 0xb9e0fc98 of_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0xb9f2f8c3 bsg_job_get -EXPORT_SYMBOL_GPL vmlinux 0xb9f84499 dev_pm_get_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0xb9ec4ced class_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xb9ed6cfb tty_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0xb9f8df37 skb_gso_validate_mac_len +EXPORT_SYMBOL_GPL vmlinux 0xba00ba14 pci_cfg_access_trylock EXPORT_SYMBOL_GPL vmlinux 0xba057786 kernel_read_file_from_path_initns -EXPORT_SYMBOL_GPL vmlinux 0xba0e4593 clk_hw_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0xba188c4a blk_steal_bios +EXPORT_SYMBOL_GPL vmlinux 0xba065514 pci_stop_and_remove_bus_device_locked +EXPORT_SYMBOL_GPL vmlinux 0xba0be9df usb_driver_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0xba0e38a6 genpd_dev_pm_attach +EXPORT_SYMBOL_GPL vmlinux 0xba14bc6f dma_buf_fd +EXPORT_SYMBOL_GPL vmlinux 0xba18d3f2 usb_deregister_dev +EXPORT_SYMBOL_GPL vmlinux 0xba215e3d devm_nvmem_device_get EXPORT_SYMBOL_GPL vmlinux 0xba220db7 __wake_up_sync_key -EXPORT_SYMBOL_GPL vmlinux 0xba242bc1 pci_epc_get -EXPORT_SYMBOL_GPL vmlinux 0xba28dde0 mptcp_pm_get_local_addr_max EXPORT_SYMBOL_GPL vmlinux 0xba2b7f64 cpufreq_generic_get -EXPORT_SYMBOL_GPL vmlinux 0xba3607f1 sdio_memcpy_fromio -EXPORT_SYMBOL_GPL vmlinux 0xba41bd97 sk_setup_caps -EXPORT_SYMBOL_GPL vmlinux 0xba4edd79 sata_scr_write -EXPORT_SYMBOL_GPL vmlinux 0xba6789eb sbitmap_queue_show -EXPORT_SYMBOL_GPL vmlinux 0xba6e6580 of_resolve_phandles -EXPORT_SYMBOL_GPL vmlinux 0xba87890f skb_scrub_packet -EXPORT_SYMBOL_GPL vmlinux 0xba8c7616 meson_axg_pmx_ops -EXPORT_SYMBOL_GPL vmlinux 0xbaa3b11b tty_ldisc_ref_wait -EXPORT_SYMBOL_GPL vmlinux 0xbaa427d2 __mdiobus_modify_changed -EXPORT_SYMBOL_GPL vmlinux 0xbaaee6f8 __fput_sync -EXPORT_SYMBOL_GPL vmlinux 0xbab50748 scsi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xba2ccc55 mtk_is_virt_gpio +EXPORT_SYMBOL_GPL vmlinux 0xba45a090 dev_pm_opp_of_add_table_indexed +EXPORT_SYMBOL_GPL vmlinux 0xba72f911 sdio_get_host_pm_caps +EXPORT_SYMBOL_GPL vmlinux 0xba7d901f task_user_regset_view +EXPORT_SYMBOL_GPL vmlinux 0xba8da3c7 ata_sas_port_destroy +EXPORT_SYMBOL_GPL vmlinux 0xba9400aa acpi_data_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0xbab094c6 irq_domain_create_simple +EXPORT_SYMBOL_GPL vmlinux 0xbab47ccd debugfs_create_file_size EXPORT_SYMBOL_GPL vmlinux 0xbab9a9f0 maxim_charger_currents -EXPORT_SYMBOL_GPL vmlinux 0xbac9b7b4 devfreq_event_get_edev_count -EXPORT_SYMBOL_GPL vmlinux 0xbae30c71 fuse_dev_fiq_ops -EXPORT_SYMBOL_GPL vmlinux 0xbae5d99c crypto_unregister_acomp +EXPORT_SYMBOL_GPL vmlinux 0xbabb6cc4 devm_irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xbabcc6cd __devm_spi_alloc_controller +EXPORT_SYMBOL_GPL vmlinux 0xbac17be2 ipv4_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xbac5a9b5 gpiod_set_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xbac85ceb sprd_pinctrl_remove +EXPORT_SYMBOL_GPL vmlinux 0xbace7eb1 pci_epc_set_msi +EXPORT_SYMBOL_GPL vmlinux 0xbae425e2 irq_domain_update_bus_token +EXPORT_SYMBOL_GPL vmlinux 0xbaeee2cf pci_hp_add EXPORT_SYMBOL_GPL vmlinux 0xbaf22757 kvfree_call_rcu EXPORT_SYMBOL_GPL vmlinux 0xbaf6850c fsnotify_wait_marks_destroyed -EXPORT_SYMBOL_GPL vmlinux 0xbafad53e vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0xbb053a97 rio_request_outb_dbell EXPORT_SYMBOL_GPL vmlinux 0xbb0ab47b debug_locks EXPORT_SYMBOL_GPL vmlinux 0xbb0b25d2 register_xenbus_watch -EXPORT_SYMBOL_GPL vmlinux 0xbb1329ec ata_dummy_port_ops -EXPORT_SYMBOL_GPL vmlinux 0xbb15a806 genphy_c45_restart_aneg -EXPORT_SYMBOL_GPL vmlinux 0xbb191066 scsi_autopm_get_device -EXPORT_SYMBOL_GPL vmlinux 0xbb2423bb fixed_phy_set_link_update +EXPORT_SYMBOL_GPL vmlinux 0xbb0f871e badblocks_clear +EXPORT_SYMBOL_GPL vmlinux 0xbb13dfc1 gpiochip_line_is_irq +EXPORT_SYMBOL_GPL vmlinux 0xbb14c114 platform_device_add_data +EXPORT_SYMBOL_GPL vmlinux 0xbb17b993 device_attach EXPORT_SYMBOL_GPL vmlinux 0xbb24f372 __SCK__tp_func_attach_device_to_domain -EXPORT_SYMBOL_GPL vmlinux 0xbb3dc903 devlink_params_publish -EXPORT_SYMBOL_GPL vmlinux 0xbb53fb34 rockchip_pcie_deinit_phys -EXPORT_SYMBOL_GPL vmlinux 0xbb55b3e1 devm_hwmon_device_register_with_info +EXPORT_SYMBOL_GPL vmlinux 0xbb2ecd63 crypto_skcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0xbb61d485 sysfs_file_change_owner EXPORT_SYMBOL_GPL vmlinux 0xbb6a3cbd devlink_fmsg_arr_pair_nest_start -EXPORT_SYMBOL_GPL vmlinux 0xbb6c3748 crypto_alloc_tfm_node EXPORT_SYMBOL_GPL vmlinux 0xbb6f025a asymmetric_key_generate_id EXPORT_SYMBOL_GPL vmlinux 0xbb7195a5 xdp_warn -EXPORT_SYMBOL_GPL vmlinux 0xbb784eea tcp_slow_start -EXPORT_SYMBOL_GPL vmlinux 0xbb89017c stmpe811_adc_common_init +EXPORT_SYMBOL_GPL vmlinux 0xbb8078e5 crypto_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xbb818ea3 regulator_is_supported_voltage +EXPORT_SYMBOL_GPL vmlinux 0xbb8630c4 __list_lru_init +EXPORT_SYMBOL_GPL vmlinux 0xbb89d234 extcon_get_state EXPORT_SYMBOL_GPL vmlinux 0xbb93eec5 ioasid_alloc -EXPORT_SYMBOL_GPL vmlinux 0xbb97737f strp_process -EXPORT_SYMBOL_GPL vmlinux 0xbb9a0ab4 fat_time_fat2unix -EXPORT_SYMBOL_GPL vmlinux 0xbb9e95ab dm_internal_suspend_fast +EXPORT_SYMBOL_GPL vmlinux 0xbb961e19 platform_device_unregister EXPORT_SYMBOL_GPL vmlinux 0xbbb4ab02 mtk_mutex_put -EXPORT_SYMBOL_GPL vmlinux 0xbbb4b1c3 pcc_mbox_request_channel -EXPORT_SYMBOL_GPL vmlinux 0xbbca1815 regmap_get_raw_read_max -EXPORT_SYMBOL_GPL vmlinux 0xbbe1cc4f devlink_sb_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbbb5735d bpf_offload_dev_create +EXPORT_SYMBOL_GPL vmlinux 0xbbbd317a pwmchip_remove +EXPORT_SYMBOL_GPL vmlinux 0xbbcb797f xfrm_audit_state_notfound_simple +EXPORT_SYMBOL_GPL vmlinux 0xbbd62d08 perf_event_refresh EXPORT_SYMBOL_GPL vmlinux 0xbbe56404 sprint_OID -EXPORT_SYMBOL_GPL vmlinux 0xbbe911f8 bio_iov_iter_get_pages EXPORT_SYMBOL_GPL vmlinux 0xbbf4dfbe phy_basic_t1_features -EXPORT_SYMBOL_GPL vmlinux 0xbbf93cbf __phy_modify_mmd -EXPORT_SYMBOL_GPL vmlinux 0xbbfc6a0f devm_hwspin_lock_register -EXPORT_SYMBOL_GPL vmlinux 0xbc0a0a2a iommu_sva_bind_device -EXPORT_SYMBOL_GPL vmlinux 0xbc196486 ack_all_badblocks -EXPORT_SYMBOL_GPL vmlinux 0xbc24d1d1 tcp_reno_undo_cwnd -EXPORT_SYMBOL_GPL vmlinux 0xbc2f6888 pinctrl_force_default -EXPORT_SYMBOL_GPL vmlinux 0xbc3243fc nf_ipv6_ops +EXPORT_SYMBOL_GPL vmlinux 0xbc01bc59 edac_pci_alloc_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0xbc01cfab adp5520_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbc0459b7 arm64_mm_context_get +EXPORT_SYMBOL_GPL vmlinux 0xbc0be152 debugfs_create_x32 +EXPORT_SYMBOL_GPL vmlinux 0xbc1537f3 sk_setup_caps +EXPORT_SYMBOL_GPL vmlinux 0xbc29c057 phy_check_downshift +EXPORT_SYMBOL_GPL vmlinux 0xbc2fc302 fuse_dev_operations EXPORT_SYMBOL_GPL vmlinux 0xbc3f2cb0 timecounter_cyc2time -EXPORT_SYMBOL_GPL vmlinux 0xbc46f3fe kvm_vcpu_gfn_to_hva +EXPORT_SYMBOL_GPL vmlinux 0xbc4278a0 fscrypt_fname_siphash +EXPORT_SYMBOL_GPL vmlinux 0xbc43a733 dmaengine_desc_set_metadata_len +EXPORT_SYMBOL_GPL vmlinux 0xbc5a97f2 crypto_unregister_acomp +EXPORT_SYMBOL_GPL vmlinux 0xbc5bbda6 sfp_register_socket EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0xbc7abb6a fsl_mc_bus_dpdmai_type -EXPORT_SYMBOL_GPL vmlinux 0xbc8466de gpiod_set_transitory -EXPORT_SYMBOL_GPL vmlinux 0xbc84c638 mmc_cmdq_disable -EXPORT_SYMBOL_GPL vmlinux 0xbc8d11dd devm_pinctrl_get -EXPORT_SYMBOL_GPL vmlinux 0xbc9781e1 cpuidle_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbc7695fc cpuidle_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xbc95f351 dpbp_close EXPORT_SYMBOL_GPL vmlinux 0xbc9b8588 ehci_cf_port_reset_rwsem -EXPORT_SYMBOL_GPL vmlinux 0xbc9c45ea gpiod_get_index_optional -EXPORT_SYMBOL_GPL vmlinux 0xbca288ec devlink_trap_policers_unregister -EXPORT_SYMBOL_GPL vmlinux 0xbca2be60 pci_bus_resource_n -EXPORT_SYMBOL_GPL vmlinux 0xbca708a5 iommu_device_register -EXPORT_SYMBOL_GPL vmlinux 0xbcad24bb of_property_read_u32_index -EXPORT_SYMBOL_GPL vmlinux 0xbcb54efa sdio_claim_irq +EXPORT_SYMBOL_GPL vmlinux 0xbc9de65e security_kernel_post_read_file +EXPORT_SYMBOL_GPL vmlinux 0xbca3397f seg6_do_srh_inline +EXPORT_SYMBOL_GPL vmlinux 0xbca4d1eb perf_event_update_userpage +EXPORT_SYMBOL_GPL vmlinux 0xbcaf04a5 mtk_pinconf_adv_drive_get +EXPORT_SYMBOL_GPL vmlinux 0xbcbe9411 led_stop_software_blink EXPORT_SYMBOL_GPL vmlinux 0xbcc15e75 ktime_get_coarse_with_offset -EXPORT_SYMBOL_GPL vmlinux 0xbcc39c68 attribute_container_unregister EXPORT_SYMBOL_GPL vmlinux 0xbccfd4d8 register_oldmem_pfn_is_ram -EXPORT_SYMBOL_GPL vmlinux 0xbcd3b162 fwnode_create_software_node -EXPORT_SYMBOL_GPL vmlinux 0xbcdc1a43 devm_hwspin_lock_request +EXPORT_SYMBOL_GPL vmlinux 0xbcd17216 skb_send_sock_locked EXPORT_SYMBOL_GPL vmlinux 0xbcdd5b99 iommu_group_set_name +EXPORT_SYMBOL_GPL vmlinux 0xbce15682 lwtstate_free +EXPORT_SYMBOL_GPL vmlinux 0xbce45ba1 mmu_notifier_get_locked +EXPORT_SYMBOL_GPL vmlinux 0xbcea9cc1 device_set_node EXPORT_SYMBOL_GPL vmlinux 0xbcf1f0e6 zs_create_pool -EXPORT_SYMBOL_GPL vmlinux 0xbd059c13 dev_pm_opp_find_freq_exact -EXPORT_SYMBOL_GPL vmlinux 0xbd22d772 crypto_stats_akcipher_verify -EXPORT_SYMBOL_GPL vmlinux 0xbd2e961e bpf_trace_run8 -EXPORT_SYMBOL_GPL vmlinux 0xbd312746 get_net_ns_by_fd +EXPORT_SYMBOL_GPL vmlinux 0xbd0967bc ata_port_abort +EXPORT_SYMBOL_GPL vmlinux 0xbd2395f3 devm_krealloc +EXPORT_SYMBOL_GPL vmlinux 0xbd2b205a device_wakeup_disable +EXPORT_SYMBOL_GPL vmlinux 0xbd3edf6c devm_pci_epc_destroy EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq -EXPORT_SYMBOL_GPL vmlinux 0xbd48e7e7 strp_check_rcv -EXPORT_SYMBOL_GPL vmlinux 0xbd4ababf pci_stop_and_remove_bus_device_locked +EXPORT_SYMBOL_GPL vmlinux 0xbd455386 strp_init EXPORT_SYMBOL_GPL vmlinux 0xbd5704ec __tracepoint_xdp_bulk_tx -EXPORT_SYMBOL_GPL vmlinux 0xbd5eccc8 virtqueue_kick_prepare -EXPORT_SYMBOL_GPL vmlinux 0xbd68394f crypto_create_tfm_node -EXPORT_SYMBOL_GPL vmlinux 0xbd79a85a usb_of_get_interface_node +EXPORT_SYMBOL_GPL vmlinux 0xbd6bf10f device_create_file +EXPORT_SYMBOL_GPL vmlinux 0xbd6ce4a5 netlink_remove_tap +EXPORT_SYMBOL_GPL vmlinux 0xbd7a6341 devlink_param_publish EXPORT_SYMBOL_GPL vmlinux 0xbd7aaaee add_memory -EXPORT_SYMBOL_GPL vmlinux 0xbd7efa6d crypto_unregister_kpp -EXPORT_SYMBOL_GPL vmlinux 0xbd8498b3 __devm_regmap_init_spi -EXPORT_SYMBOL_GPL vmlinux 0xbd89b4c0 sk_msg_clone -EXPORT_SYMBOL_GPL vmlinux 0xbd904d9c sysfs_create_link_nowarn -EXPORT_SYMBOL_GPL vmlinux 0xbdaf3d7e pinmux_generic_add_function +EXPORT_SYMBOL_GPL vmlinux 0xbd955baf scmi_protocol_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbda9ab17 devlink_port_region_create +EXPORT_SYMBOL_GPL vmlinux 0xbdacd1e5 acpi_device_uevent_modalias +EXPORT_SYMBOL_GPL vmlinux 0xbdb126c1 gpiod_get_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xbdb1ca7d imx_pinctrl_pm_ops EXPORT_SYMBOL_GPL vmlinux 0xbdb2217d hv_is_isolation_supported -EXPORT_SYMBOL_GPL vmlinux 0xbdb40cbd usb_control_msg_send EXPORT_SYMBOL_GPL vmlinux 0xbdb72342 __tracepoint_devlink_hwmsg -EXPORT_SYMBOL_GPL vmlinux 0xbdce76a4 kernfs_get -EXPORT_SYMBOL_GPL vmlinux 0xbe02553d devm_acpi_dev_add_driver_gpios -EXPORT_SYMBOL_GPL vmlinux 0xbe063659 __devm_irq_alloc_descs -EXPORT_SYMBOL_GPL vmlinux 0xbe165c47 iomap_writepage -EXPORT_SYMBOL_GPL vmlinux 0xbe2040d8 crypto_stats_akcipher_encrypt -EXPORT_SYMBOL_GPL vmlinux 0xbe22920e of_pci_dma_range_parser_init -EXPORT_SYMBOL_GPL vmlinux 0xbe2c83c4 platform_bus_type -EXPORT_SYMBOL_GPL vmlinux 0xbe41800f to_of_pinfo -EXPORT_SYMBOL_GPL vmlinux 0xbe589e40 blk_mq_unquiesce_queue +EXPORT_SYMBOL_GPL vmlinux 0xbdb91802 __regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0xbdc0dd7a pci_hp_del +EXPORT_SYMBOL_GPL vmlinux 0xbdc566d9 extcon_get_edev_name +EXPORT_SYMBOL_GPL vmlinux 0xbdd132d0 of_usb_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0xbde14e74 altr_sysmgr_regmap_lookup_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xbde454f8 devm_nvdimm_memremap +EXPORT_SYMBOL_GPL vmlinux 0xbdefd038 i2c_parse_fw_timings +EXPORT_SYMBOL_GPL vmlinux 0xbdf5de0d ata_do_set_mode +EXPORT_SYMBOL_GPL vmlinux 0xbe026abb mtk_build_eint +EXPORT_SYMBOL_GPL vmlinux 0xbe15b907 device_add_groups +EXPORT_SYMBOL_GPL vmlinux 0xbe37284f device_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xbe42a768 __fsnotify_parent +EXPORT_SYMBOL_GPL vmlinux 0xbe492d0e bio_associate_blkg +EXPORT_SYMBOL_GPL vmlinux 0xbe55c00e usb_get_status EXPORT_SYMBOL_GPL vmlinux 0xbe5c888b crypto_chain EXPORT_SYMBOL_GPL vmlinux 0xbe5e3414 k3_udma_glue_reset_rx_chn EXPORT_SYMBOL_GPL vmlinux 0xbe687e88 wake_up_all_idle_cpus +EXPORT_SYMBOL_GPL vmlinux 0xbe6b514b vfs_write EXPORT_SYMBOL_GPL vmlinux 0xbe6d43d7 ioasid_put -EXPORT_SYMBOL_GPL vmlinux 0xbe956e47 __fat_fs_error +EXPORT_SYMBOL_GPL vmlinux 0xbe6ecb61 input_ff_erase +EXPORT_SYMBOL_GPL vmlinux 0xbe76740e tcp_bpf_sendmsg_redir +EXPORT_SYMBOL_GPL vmlinux 0xbe83a5f3 relay_flush +EXPORT_SYMBOL_GPL vmlinux 0xbe85129e scsi_dh_attach +EXPORT_SYMBOL_GPL vmlinux 0xbe8a7bed io_cgrp_subsys +EXPORT_SYMBOL_GPL vmlinux 0xbe8c9536 usb_altnum_to_altsetting EXPORT_SYMBOL_GPL vmlinux 0xbe96dfd8 of_reconfig_notifier_unregister EXPORT_SYMBOL_GPL vmlinux 0xbe9a83d5 dw_pcie_write -EXPORT_SYMBOL_GPL vmlinux 0xbea38386 da9052_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0xbea12b18 gpiochip_line_is_persistent EXPORT_SYMBOL_GPL vmlinux 0xbea5ff1e static_key_initialized -EXPORT_SYMBOL_GPL vmlinux 0xbea98b3e regmap_test_bits -EXPORT_SYMBOL_GPL vmlinux 0xbebba330 usb_autopm_put_interface -EXPORT_SYMBOL_GPL vmlinux 0xbec398ca __pm_runtime_set_status +EXPORT_SYMBOL_GPL vmlinux 0xbeb1f18c pinconf_generic_dt_subnode_to_map +EXPORT_SYMBOL_GPL vmlinux 0xbebfe161 aead_geniv_alloc EXPORT_SYMBOL_GPL vmlinux 0xbec66c3a __apei_exec_run -EXPORT_SYMBOL_GPL vmlinux 0xbec68d21 phy_resolve_aneg_linkmode -EXPORT_SYMBOL_GPL vmlinux 0xbed32353 gpiod_set_array_value -EXPORT_SYMBOL_GPL vmlinux 0xbed8f725 ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0xbede56ad devm_regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0xbef91185 reset_controller_register EXPORT_SYMBOL_GPL vmlinux 0xbf041102 register_vt_notifier -EXPORT_SYMBOL_GPL vmlinux 0xbf06aca2 blk_ksm_intersect_modes -EXPORT_SYMBOL_GPL vmlinux 0xbf0a2497 switchdev_handle_fdb_del_to_device -EXPORT_SYMBOL_GPL vmlinux 0xbf195594 aead_exit_geniv -EXPORT_SYMBOL_GPL vmlinux 0xbf2597e0 extcon_dev_free -EXPORT_SYMBOL_GPL vmlinux 0xbf38f770 get_net_ns_by_pid -EXPORT_SYMBOL_GPL vmlinux 0xbf3b2cf0 bpf_prog_destroy -EXPORT_SYMBOL_GPL vmlinux 0xbf3f384e __class_create -EXPORT_SYMBOL_GPL vmlinux 0xbf40592a irq_setup_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0xbf5c5535 virtqueue_get_vring -EXPORT_SYMBOL_GPL vmlinux 0xbf628726 blk_mq_freeze_queue_wait_timeout -EXPORT_SYMBOL_GPL vmlinux 0xbf7b1124 crypto_alloc_acomp -EXPORT_SYMBOL_GPL vmlinux 0xbfa88365 generic_fsdax_supported +EXPORT_SYMBOL_GPL vmlinux 0xbf0f1475 tpm_tis_core_init +EXPORT_SYMBOL_GPL vmlinux 0xbf1de032 regulator_set_load +EXPORT_SYMBOL_GPL vmlinux 0xbf226070 devm_kasprintf +EXPORT_SYMBOL_GPL vmlinux 0xbf296917 ata_scsi_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0xbf685600 dev_pm_qos_expose_flags +EXPORT_SYMBOL_GPL vmlinux 0xbf8867d2 __traceiter_block_rq_insert +EXPORT_SYMBOL_GPL vmlinux 0xbf896025 tegra_xusb_padctl_legacy_remove +EXPORT_SYMBOL_GPL vmlinux 0xbf8c3599 apply_to_existing_page_range +EXPORT_SYMBOL_GPL vmlinux 0xbf9eb0a7 vfs_setlease +EXPORT_SYMBOL_GPL vmlinux 0xbfa3bd50 fsl_mc_bus_dpdbg_type EXPORT_SYMBOL_GPL vmlinux 0xbfbc5434 pciserial_resume_ports -EXPORT_SYMBOL_GPL vmlinux 0xbfbe220c vchan_tx_submit -EXPORT_SYMBOL_GPL vmlinux 0xbfcc67a5 kvm_vcpu_wake_up -EXPORT_SYMBOL_GPL vmlinux 0xbfdbc1f2 iommu_setup_dma_ops +EXPORT_SYMBOL_GPL vmlinux 0xbfcd3190 gov_attr_set_init +EXPORT_SYMBOL_GPL vmlinux 0xbfd63f8a __traceiter_pelt_dl_tp +EXPORT_SYMBOL_GPL vmlinux 0xbfe0bcad set_capacity_and_notify EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control EXPORT_SYMBOL_GPL vmlinux 0xbfed2cd9 __wait_rcu_gp -EXPORT_SYMBOL_GPL vmlinux 0xbfef3105 devm_platform_ioremap_resource -EXPORT_SYMBOL_GPL vmlinux 0xbff96f9a pci_enable_rom EXPORT_SYMBOL_GPL vmlinux 0xbffa29be srcu_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xbffaf08d __of_reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0xc0135d60 extcon_dev_register -EXPORT_SYMBOL_GPL vmlinux 0xc020a7e5 rio_mport_read_config_8 -EXPORT_SYMBOL_GPL vmlinux 0xc0471a28 ata_link_offline -EXPORT_SYMBOL_GPL vmlinux 0xc04d47a9 devlink_remote_reload_actions_performed +EXPORT_SYMBOL_GPL vmlinux 0xbffb2d73 bpf_prog_inc +EXPORT_SYMBOL_GPL vmlinux 0xc00487ed power_supply_get_property +EXPORT_SYMBOL_GPL vmlinux 0xc01da175 genphy_c45_pma_setup_forced +EXPORT_SYMBOL_GPL vmlinux 0xc0218773 gnttab_unmap_refs_sync +EXPORT_SYMBOL_GPL vmlinux 0xc02efe61 hisi_clk_register_phase +EXPORT_SYMBOL_GPL vmlinux 0xc03d039a mtk_pinconf_bias_set_rev1 +EXPORT_SYMBOL_GPL vmlinux 0xc03d882b pci_msi_unmask_irq +EXPORT_SYMBOL_GPL vmlinux 0xc056d311 class_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc0588b79 spi_bus_lock EXPORT_SYMBOL_GPL vmlinux 0xc05cee80 ipi_get_hwirq -EXPORT_SYMBOL_GPL vmlinux 0xc05d0f8e of_reserved_mem_device_init_by_name -EXPORT_SYMBOL_GPL vmlinux 0xc05fa2b8 vp_modern_queue_vector -EXPORT_SYMBOL_GPL vmlinux 0xc06b270e phy_led_trigger_change_speed -EXPORT_SYMBOL_GPL vmlinux 0xc07bfffe ohci_suspend -EXPORT_SYMBOL_GPL vmlinux 0xc07fd0d6 pm_schedule_suspend -EXPORT_SYMBOL_GPL vmlinux 0xc0811d37 l3mdev_master_upper_ifindex_by_index_rcu -EXPORT_SYMBOL_GPL vmlinux 0xc084cac3 acomp_request_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc061cef9 fixed_phy_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc07d3710 hwspin_lock_request_specific +EXPORT_SYMBOL_GPL vmlinux 0xc0829ef2 ipv6_find_tlv +EXPORT_SYMBOL_GPL vmlinux 0xc085415a crypto_shash_digest +EXPORT_SYMBOL_GPL vmlinux 0xc08bd015 wm831x_regmap_config EXPORT_SYMBOL_GPL vmlinux 0xc090c376 net_selftest_get_strings -EXPORT_SYMBOL_GPL vmlinux 0xc098ca5a serial8250_handle_irq EXPORT_SYMBOL_GPL vmlinux 0xc0a3d155 k3_udma_glue_rx_get_flow_id_base -EXPORT_SYMBOL_GPL vmlinux 0xc0a560c9 blkdev_zone_mgmt EXPORT_SYMBOL_GPL vmlinux 0xc0a96e14 rcu_gp_is_expedited -EXPORT_SYMBOL_GPL vmlinux 0xc0add73b __ata_change_queue_depth -EXPORT_SYMBOL_GPL vmlinux 0xc0aef5a2 gpiochip_populate_parent_fwspec_twocell -EXPORT_SYMBOL_GPL vmlinux 0xc0cac585 regmap_get_reg_stride +EXPORT_SYMBOL_GPL vmlinux 0xc0cf55fa devm_pm_opp_register_set_opp_helper +EXPORT_SYMBOL_GPL vmlinux 0xc0cfa482 dev_pm_domain_attach_by_id EXPORT_SYMBOL_GPL vmlinux 0xc0dcb59e edac_layer_name +EXPORT_SYMBOL_GPL vmlinux 0xc0debdd6 meson_clk_cpu_dyndiv_ops +EXPORT_SYMBOL_GPL vmlinux 0xc0e4392b iopf_queue_flush_dev +EXPORT_SYMBOL_GPL vmlinux 0xc0e6e0b9 devm_clk_notifier_register EXPORT_SYMBOL_GPL vmlinux 0xc0f0458a ip_tunnel_unneed_metadata -EXPORT_SYMBOL_GPL vmlinux 0xc0fed9e6 clk_mux_determine_rate_flags -EXPORT_SYMBOL_GPL vmlinux 0xc1038ba7 __vfs_setxattr_noperm +EXPORT_SYMBOL_GPL vmlinux 0xc0fec92c xhci_suspend EXPORT_SYMBOL_GPL vmlinux 0xc1086e0c sysrq_toggle_support EXPORT_SYMBOL_GPL vmlinux 0xc10fddb8 name_to_dev_t -EXPORT_SYMBOL_GPL vmlinux 0xc1100dc3 devm_devfreq_event_add_edev -EXPORT_SYMBOL_GPL vmlinux 0xc12368fe thermal_cooling_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc13c10f9 bpf_prog_select_runtime -EXPORT_SYMBOL_GPL vmlinux 0xc1553d46 dw_pcie_host_deinit -EXPORT_SYMBOL_GPL vmlinux 0xc166b627 nvmem_register -EXPORT_SYMBOL_GPL vmlinux 0xc1671f84 iommu_sva_free_pasid +EXPORT_SYMBOL_GPL vmlinux 0xc119ed07 devm_serdev_device_open +EXPORT_SYMBOL_GPL vmlinux 0xc1365e93 kvm_vcpu_wake_up +EXPORT_SYMBOL_GPL vmlinux 0xc138833f tty_ldisc_ref_wait +EXPORT_SYMBOL_GPL vmlinux 0xc142d251 devlink_flash_update_status_notify +EXPORT_SYMBOL_GPL vmlinux 0xc14a69e2 rdev_clear_badblocks +EXPORT_SYMBOL_GPL vmlinux 0xc152a76e of_clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0xc1541392 platform_unregister_drivers +EXPORT_SYMBOL_GPL vmlinux 0xc161223e mtk_pinconf_bias_get_rev1 EXPORT_SYMBOL_GPL vmlinux 0xc1743430 cpuidle_disable_device +EXPORT_SYMBOL_GPL vmlinux 0xc1749f51 xfer_to_guest_mode_handle_work +EXPORT_SYMBOL_GPL vmlinux 0xc174cacd scsi_mode_select EXPORT_SYMBOL_GPL vmlinux 0xc17515d7 usb_hcds_loaded EXPORT_SYMBOL_GPL vmlinux 0xc17e9946 usb_show_dynids -EXPORT_SYMBOL_GPL vmlinux 0xc18bb0be thermal_zone_device_register -EXPORT_SYMBOL_GPL vmlinux 0xc190cd07 add_swap_extent -EXPORT_SYMBOL_GPL vmlinux 0xc19bce78 gpiochip_irq_domain_deactivate -EXPORT_SYMBOL_GPL vmlinux 0xc1a448fe irq_chip_retrigger_hierarchy -EXPORT_SYMBOL_GPL vmlinux 0xc1acc383 crypto_ahash_setkey -EXPORT_SYMBOL_GPL vmlinux 0xc1c476f4 blk_revalidate_disk_zones +EXPORT_SYMBOL_GPL vmlinux 0xc1881822 iomap_dio_rw +EXPORT_SYMBOL_GPL vmlinux 0xc1bcfc1b ata_link_abort +EXPORT_SYMBOL_GPL vmlinux 0xc1c81b33 to_nvdimm +EXPORT_SYMBOL_GPL vmlinux 0xc1c860ec syscon_regmap_lookup_by_phandle_optional +EXPORT_SYMBOL_GPL vmlinux 0xc1d5084d addrconf_prefix_rcv_add_addr +EXPORT_SYMBOL_GPL vmlinux 0xc1da8848 uart_insert_char EXPORT_SYMBOL_GPL vmlinux 0xc1dce028 k3_udma_glue_reset_tx_chn -EXPORT_SYMBOL_GPL vmlinux 0xc20d7f30 tty_port_tty_wakeup -EXPORT_SYMBOL_GPL vmlinux 0xc226b32b devm_pm_opp_register_set_opp_helper -EXPORT_SYMBOL_GPL vmlinux 0xc2272af1 dm_path_uevent -EXPORT_SYMBOL_GPL vmlinux 0xc228f486 rio_pw_enable +EXPORT_SYMBOL_GPL vmlinux 0xc1f25677 uart_xchar_out +EXPORT_SYMBOL_GPL vmlinux 0xc1f79e23 debugfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0xc1fcd862 usb_autopm_get_interface_async +EXPORT_SYMBOL_GPL vmlinux 0xc2064b06 alarmtimer_get_rtcdev +EXPORT_SYMBOL_GPL vmlinux 0xc20ce10d extcon_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc2120439 blk_execute_rq_nowait +EXPORT_SYMBOL_GPL vmlinux 0xc2123968 rio_release_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0xc21a60ac pci_remove_root_bus +EXPORT_SYMBOL_GPL vmlinux 0xc22218e1 of_devfreq_cooling_register EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases -EXPORT_SYMBOL_GPL vmlinux 0xc22c569b device_create_bin_file -EXPORT_SYMBOL_GPL vmlinux 0xc244542f ata_host_alloc_pinfo -EXPORT_SYMBOL_GPL vmlinux 0xc2448cfd pingv6_prot +EXPORT_SYMBOL_GPL vmlinux 0xc232c5dd __traceiter_kfree_skb EXPORT_SYMBOL_GPL vmlinux 0xc2472388 tegra210_clk_emc_update_setting -EXPORT_SYMBOL_GPL vmlinux 0xc2513666 ahci_platform_enable_clks -EXPORT_SYMBOL_GPL vmlinux 0xc2517a7b pci_user_read_config_dword EXPORT_SYMBOL_GPL vmlinux 0xc25b8971 hv_remove_crash_handler EXPORT_SYMBOL_GPL vmlinux 0xc2692173 wakeup_sources_read_lock -EXPORT_SYMBOL_GPL vmlinux 0xc26fa6de clockevent_delta2ns -EXPORT_SYMBOL_GPL vmlinux 0xc279fbb8 sock_map_close -EXPORT_SYMBOL_GPL vmlinux 0xc280edbd led_trigger_blink +EXPORT_SYMBOL_GPL vmlinux 0xc2697be8 dev_coredumpv +EXPORT_SYMBOL_GPL vmlinux 0xc269fb1e rio_dma_prep_slave_sg +EXPORT_SYMBOL_GPL vmlinux 0xc26cb3ad pci_rescan_bus +EXPORT_SYMBOL_GPL vmlinux 0xc26e8fb9 icc_std_aggregate +EXPORT_SYMBOL_GPL vmlinux 0xc275a924 sata_pmp_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xc27bc7f3 __mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xc27bea5e nvmem_cell_read_u32 +EXPORT_SYMBOL_GPL vmlinux 0xc2897655 uart_try_toggle_sysrq EXPORT_SYMBOL_GPL vmlinux 0xc289e46d cpufreq_generic_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0xc28c2a21 ata_sff_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0xc2a0078a __audit_inode_child EXPORT_SYMBOL_GPL vmlinux 0xc2a1cbaf __cpuhp_state_remove_instance EXPORT_SYMBOL_GPL vmlinux 0xc2a3e570 errata +EXPORT_SYMBOL_GPL vmlinux 0xc2a4f95f debugfs_create_x16 +EXPORT_SYMBOL_GPL vmlinux 0xc2a76026 scsi_host_block EXPORT_SYMBOL_GPL vmlinux 0xc2a814db tcp_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0xc2b7ed61 regulator_map_voltage_linear EXPORT_SYMBOL_GPL vmlinux 0xc2b9773a __tracepoint_neigh_update_done -EXPORT_SYMBOL_GPL vmlinux 0xc2baf10e scsi_dh_set_params -EXPORT_SYMBOL_GPL vmlinux 0xc2bcec21 fscrypt_show_test_dummy_encryption +EXPORT_SYMBOL_GPL vmlinux 0xc2c19a3f housekeeping_affine +EXPORT_SYMBOL_GPL vmlinux 0xc2c1ab37 usb_role_switch_register EXPORT_SYMBOL_GPL vmlinux 0xc2c1c427 perf_event_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xc2c262d7 devlink_port_type_eth_set +EXPORT_SYMBOL_GPL vmlinux 0xc2d227c1 trace_array_put +EXPORT_SYMBOL_GPL vmlinux 0xc2d489c3 nvdimm_flush EXPORT_SYMBOL_GPL vmlinux 0xc2d69ca6 gfn_to_pfn_memslot -EXPORT_SYMBOL_GPL vmlinux 0xc2da7e15 crypto_hash_walk_done EXPORT_SYMBOL_GPL vmlinux 0xc2de27ca hest_disable -EXPORT_SYMBOL_GPL vmlinux 0xc2ed7a82 kvm_io_bus_get_dev -EXPORT_SYMBOL_GPL vmlinux 0xc31c9559 umd_cleanup_helper -EXPORT_SYMBOL_GPL vmlinux 0xc340c628 power_supply_changed +EXPORT_SYMBOL_GPL vmlinux 0xc2e837ee of_device_uevent_modalias +EXPORT_SYMBOL_GPL vmlinux 0xc2f0c574 hwspin_lock_get_id +EXPORT_SYMBOL_GPL vmlinux 0xc300138c ethtool_set_ethtool_phy_ops +EXPORT_SYMBOL_GPL vmlinux 0xc3039302 tty_buffer_lock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xc30a31aa dm_put EXPORT_SYMBOL_GPL vmlinux 0xc340e246 zynqmp_pm_request_node EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object -EXPORT_SYMBOL_GPL vmlinux 0xc3460389 usb_unlink_urb -EXPORT_SYMBOL_GPL vmlinux 0xc348e752 ata_scsi_dma_need_drain -EXPORT_SYMBOL_GPL vmlinux 0xc34f832c input_device_enabled -EXPORT_SYMBOL_GPL vmlinux 0xc3587958 fsl_mc_bus_dpmcp_type -EXPORT_SYMBOL_GPL vmlinux 0xc35d76b9 devm_bitmap_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc350afdc meson_clk_dualdiv_ops +EXPORT_SYMBOL_GPL vmlinux 0xc356fc3a cpufreq_enable_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0xc357ee92 tpm_pm_resume EXPORT_SYMBOL_GPL vmlinux 0xc3708747 trace_vprintk EXPORT_SYMBOL_GPL vmlinux 0xc3805cd1 fs_ftype_to_dtype -EXPORT_SYMBOL_GPL vmlinux 0xc3ac7b9a dev_attr_link_power_management_policy +EXPORT_SYMBOL_GPL vmlinux 0xc38593c5 blkg_conf_finish +EXPORT_SYMBOL_GPL vmlinux 0xc38ce176 ata_port_pbar_desc +EXPORT_SYMBOL_GPL vmlinux 0xc3a0a7d0 cpufreq_generic_attr +EXPORT_SYMBOL_GPL vmlinux 0xc3af6cd1 blk_ksm_register +EXPORT_SYMBOL_GPL vmlinux 0xc3b78e4f tps6586x_set_bits EXPORT_SYMBOL_GPL vmlinux 0xc3c4c6cc hash_algo_name -EXPORT_SYMBOL_GPL vmlinux 0xc3c604f4 of_i2c_get_board_info -EXPORT_SYMBOL_GPL vmlinux 0xc3cf9ebf serdev_device_write_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xc3c76661 crypto_comp_compress +EXPORT_SYMBOL_GPL vmlinux 0xc3d713c8 pcie_reset_flr EXPORT_SYMBOL_GPL vmlinux 0xc3de65ff ring_buffer_bytes_cpu -EXPORT_SYMBOL_GPL vmlinux 0xc3e25f4e phy_configure -EXPORT_SYMBOL_GPL vmlinux 0xc3e51e73 blk_mq_update_nr_hw_queues +EXPORT_SYMBOL_GPL vmlinux 0xc3de9414 devm_regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc3e435a1 synth_event_create +EXPORT_SYMBOL_GPL vmlinux 0xc3e437a9 platform_bus EXPORT_SYMBOL_GPL vmlinux 0xc3ea5305 iommu_default_passthrough -EXPORT_SYMBOL_GPL vmlinux 0xc3f34873 iomap_finish_ioends -EXPORT_SYMBOL_GPL vmlinux 0xc4007f37 dev_pm_opp_attach_genpd -EXPORT_SYMBOL_GPL vmlinux 0xc40081c2 nd_blk_region_to_dimm +EXPORT_SYMBOL_GPL vmlinux 0xc3f11ba0 usb_hcd_map_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0xc3ffb1b0 __iptunnel_pull_header +EXPORT_SYMBOL_GPL vmlinux 0xc40342f0 devlink_dpipe_headers_register +EXPORT_SYMBOL_GPL vmlinux 0xc40bb372 skb_clone_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0xc40c9ab6 regulator_set_current_limit +EXPORT_SYMBOL_GPL vmlinux 0xc40dc1b7 devm_tegra_core_dev_init_opp_table EXPORT_SYMBOL_GPL vmlinux 0xc428068d sata_deb_timing_long -EXPORT_SYMBOL_GPL vmlinux 0xc42a842a adp5520_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0xc430bb9a acpi_processor_get_performance_info EXPORT_SYMBOL_GPL vmlinux 0xc43e92b9 trace_seq_bprintf -EXPORT_SYMBOL_GPL vmlinux 0xc453d129 spi_sync_locked +EXPORT_SYMBOL_GPL vmlinux 0xc4475eb0 ethnl_cable_test_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc451dc1d __regmap_init_mmio_clk EXPORT_SYMBOL_GPL vmlinux 0xc454fc7b twl_get_type -EXPORT_SYMBOL_GPL vmlinux 0xc45d9237 acpi_subsys_prepare EXPORT_SYMBOL_GPL vmlinux 0xc45e246f housekeeping_test_cpu EXPORT_SYMBOL_GPL vmlinux 0xc46324f6 dynevent_create -EXPORT_SYMBOL_GPL vmlinux 0xc46565e8 irq_domain_translate_twocell -EXPORT_SYMBOL_GPL vmlinux 0xc46a8a05 tc3589x_set_bits EXPORT_SYMBOL_GPL vmlinux 0xc471c67a twl4030_audio_disable_resource -EXPORT_SYMBOL_GPL vmlinux 0xc47206e9 __traceiter_rpm_return_int -EXPORT_SYMBOL_GPL vmlinux 0xc48546c6 hwspin_lock_free +EXPORT_SYMBOL_GPL vmlinux 0xc47cc8fe efivar_entry_add +EXPORT_SYMBOL_GPL vmlinux 0xc4896dfe devm_regulator_bulk_get EXPORT_SYMBOL_GPL vmlinux 0xc48b7ccf ata_mode_string -EXPORT_SYMBOL_GPL vmlinux 0xc48ca25a tty_buffer_unlock_exclusive -EXPORT_SYMBOL_GPL vmlinux 0xc4938ca0 usb_role_switch_register EXPORT_SYMBOL_GPL vmlinux 0xc4a31146 rdma_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xc4a4dfb2 devm_acpi_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0xc4a51a9f spi_mem_dtr_supports_op +EXPORT_SYMBOL_GPL vmlinux 0xc4a6d4d6 tpm_chip_register EXPORT_SYMBOL_GPL vmlinux 0xc4a72936 trusted_tpm_send +EXPORT_SYMBOL_GPL vmlinux 0xc4ac1de2 max8997_bulk_read EXPORT_SYMBOL_GPL vmlinux 0xc4b5a900 synchronize_srcu_expedited -EXPORT_SYMBOL_GPL vmlinux 0xc4b6161f switchdev_bridge_port_unoffload -EXPORT_SYMBOL_GPL vmlinux 0xc4c01526 sock_diag_register -EXPORT_SYMBOL_GPL vmlinux 0xc4d2f108 crypto_register_templates -EXPORT_SYMBOL_GPL vmlinux 0xc4e0fa20 pingv6_ops -EXPORT_SYMBOL_GPL vmlinux 0xc4ee8b99 dev_pm_qos_add_ancestor_request +EXPORT_SYMBOL_GPL vmlinux 0xc4c2a1c1 acpi_is_pnp_device +EXPORT_SYMBOL_GPL vmlinux 0xc4c3886c dma_buf_move_notify +EXPORT_SYMBOL_GPL vmlinux 0xc4d5882c mtk_eint_find_irq +EXPORT_SYMBOL_GPL vmlinux 0xc4d90a5f fat_update_time +EXPORT_SYMBOL_GPL vmlinux 0xc4ed8919 sk_msg_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0xc4f06c30 hwspin_lock_unregister EXPORT_SYMBOL_GPL vmlinux 0xc4f0da12 ktime_get_with_offset -EXPORT_SYMBOL_GPL vmlinux 0xc4f95d27 clk_register_hisi_phase -EXPORT_SYMBOL_GPL vmlinux 0xc4fa83e7 tcp_unregister_congestion_control -EXPORT_SYMBOL_GPL vmlinux 0xc510e4be dev_pm_qos_remove_request -EXPORT_SYMBOL_GPL vmlinux 0xc513895f i2c_parse_fw_timings EXPORT_SYMBOL_GPL vmlinux 0xc51450c6 imx_ccm_lock -EXPORT_SYMBOL_GPL vmlinux 0xc516fe21 extcon_set_property_capability -EXPORT_SYMBOL_GPL vmlinux 0xc53df673 espintcp_queue_out -EXPORT_SYMBOL_GPL vmlinux 0xc53e20ee sdio_writeb -EXPORT_SYMBOL_GPL vmlinux 0xc5404154 phy_create -EXPORT_SYMBOL_GPL vmlinux 0xc541e200 gpiochip_generic_request -EXPORT_SYMBOL_GPL vmlinux 0xc5470ab1 pci_stop_root_bus -EXPORT_SYMBOL_GPL vmlinux 0xc54dd5ab dev_get_regmap -EXPORT_SYMBOL_GPL vmlinux 0xc55902ce fwnode_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xc51499d6 usb_unanchor_urb +EXPORT_SYMBOL_GPL vmlinux 0xc518724f skb_zerocopy_iter_stream +EXPORT_SYMBOL_GPL vmlinux 0xc51b15bd sk_msg_trim +EXPORT_SYMBOL_GPL vmlinux 0xc51ec5cc devm_memunmap_pages +EXPORT_SYMBOL_GPL vmlinux 0xc5215a79 devm_watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0xc5373085 gpiochip_generic_request +EXPORT_SYMBOL_GPL vmlinux 0xc544feb4 crypto_alloc_rng +EXPORT_SYMBOL_GPL vmlinux 0xc54a9ace xdp_master_redirect +EXPORT_SYMBOL_GPL vmlinux 0xc556fcad anon_inode_getfd_secure +EXPORT_SYMBOL_GPL vmlinux 0xc55984af fscrypt_ioctl_get_nonce EXPORT_SYMBOL_GPL vmlinux 0xc55ff962 phy_basic_t1_features_array -EXPORT_SYMBOL_GPL vmlinux 0xc560352c regmap_bulk_read EXPORT_SYMBOL_GPL vmlinux 0xc5604800 clk_set_rate_exclusive -EXPORT_SYMBOL_GPL vmlinux 0xc565ac80 power_supply_register_no_ws EXPORT_SYMBOL_GPL vmlinux 0xc569d8ce __clk_get_name +EXPORT_SYMBOL_GPL vmlinux 0xc56f7dd6 sched_show_task EXPORT_SYMBOL_GPL vmlinux 0xc575c737 debug_locks_off EXPORT_SYMBOL_GPL vmlinux 0xc5777fca linear_range_get_selector_low_array -EXPORT_SYMBOL_GPL vmlinux 0xc57a0a8c l3mdev_master_ifindex_rcu EXPORT_SYMBOL_GPL vmlinux 0xc58a3ee6 icc_node_destroy -EXPORT_SYMBOL_GPL vmlinux 0xc58e1a32 usb_sg_init -EXPORT_SYMBOL_GPL vmlinux 0xc59374d3 divider_recalc_rate +EXPORT_SYMBOL_GPL vmlinux 0xc5926c63 __rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0xc59ecd24 lwtunnel_get_encap_size EXPORT_SYMBOL_GPL vmlinux 0xc5a5c678 uart_parse_earlycon -EXPORT_SYMBOL_GPL vmlinux 0xc5ac873f amba_device_alloc -EXPORT_SYMBOL_GPL vmlinux 0xc5b0f310 mbox_controller_register -EXPORT_SYMBOL_GPL vmlinux 0xc5bf7c30 devm_pm_opp_set_regulators -EXPORT_SYMBOL_GPL vmlinux 0xc5ceb162 irq_domain_associate -EXPORT_SYMBOL_GPL vmlinux 0xc5e4ab59 debugfs_create_dir -EXPORT_SYMBOL_GPL vmlinux 0xc5e6ae92 inet6_lookup -EXPORT_SYMBOL_GPL vmlinux 0xc5e84f98 nvdimm_volatile_region_create -EXPORT_SYMBOL_GPL vmlinux 0xc5efae4e gpiod_get_raw_value -EXPORT_SYMBOL_GPL vmlinux 0xc5f56c40 decrypt_blob -EXPORT_SYMBOL_GPL vmlinux 0xc5f709c6 dma_buf_put -EXPORT_SYMBOL_GPL vmlinux 0xc5f70b3f pm_runtime_no_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xc5fbb59e dpbp_enable -EXPORT_SYMBOL_GPL vmlinux 0xc5fc74f3 blk_req_zone_write_trylock -EXPORT_SYMBOL_GPL vmlinux 0xc60f0f3b iommu_register_device_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0xc5b59c3e __fscrypt_encrypt_symlink +EXPORT_SYMBOL_GPL vmlinux 0xc5b68564 user_destroy +EXPORT_SYMBOL_GPL vmlinux 0xc5b936fa __phy_modify_mmd +EXPORT_SYMBOL_GPL vmlinux 0xc5e63cf8 mnt_want_write_file +EXPORT_SYMBOL_GPL vmlinux 0xc5e6b09b usb_wakeup_enabled_descendants +EXPORT_SYMBOL_GPL vmlinux 0xc60cdc9e debugfs_create_blob +EXPORT_SYMBOL_GPL vmlinux 0xc612dbeb devm_of_platform_populate EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier -EXPORT_SYMBOL_GPL vmlinux 0xc620f55f ahci_platform_init_host +EXPORT_SYMBOL_GPL vmlinux 0xc619cdd3 tty_save_termios EXPORT_SYMBOL_GPL vmlinux 0xc621bb43 sched_trace_rd_span -EXPORT_SYMBOL_GPL vmlinux 0xc622607f devm_ti_sci_get_of_resource -EXPORT_SYMBOL_GPL vmlinux 0xc629bb18 dev_pm_opp_set_sharing_cpus -EXPORT_SYMBOL_GPL vmlinux 0xc64b8777 ata_sff_freeze +EXPORT_SYMBOL_GPL vmlinux 0xc629fb88 pci_device_group EXPORT_SYMBOL_GPL vmlinux 0xc6572a90 xenbus_read_unsigned -EXPORT_SYMBOL_GPL vmlinux 0xc65fa436 mmc_send_tuning +EXPORT_SYMBOL_GPL vmlinux 0xc6597936 security_path_truncate EXPORT_SYMBOL_GPL vmlinux 0xc66019cc xen_resume_notifier_unregister EXPORT_SYMBOL_GPL vmlinux 0xc662ecda __tracepoint_br_fdb_external_learn_add -EXPORT_SYMBOL_GPL vmlinux 0xc66a8cbd tcp_register_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0xc664d787 sdio_writel EXPORT_SYMBOL_GPL vmlinux 0xc66b77b1 iommu_group_set_iommudata EXPORT_SYMBOL_GPL vmlinux 0xc672a391 irq_work_sync +EXPORT_SYMBOL_GPL vmlinux 0xc676abe6 tty_port_tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xc676b4e7 blk_mq_rdma_map_queues EXPORT_SYMBOL_GPL vmlinux 0xc6779093 ring_buffer_record_enable -EXPORT_SYMBOL_GPL vmlinux 0xc685fec4 rio_register_mport +EXPORT_SYMBOL_GPL vmlinux 0xc67fd014 crypto_register_template EXPORT_SYMBOL_GPL vmlinux 0xc697b0f7 nvmem_device_read +EXPORT_SYMBOL_GPL vmlinux 0xc69a937e ip_route_output_flow EXPORT_SYMBOL_GPL vmlinux 0xc69b7ee5 zs_destroy_pool -EXPORT_SYMBOL_GPL vmlinux 0xc6a03518 badblocks_exit +EXPORT_SYMBOL_GPL vmlinux 0xc69e0dc7 usb_unpoison_urb +EXPORT_SYMBOL_GPL vmlinux 0xc6a2982b wm8350_gpio_config EXPORT_SYMBOL_GPL vmlinux 0xc6a4a872 __clk_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0xc6a745ca bsg_register_queue -EXPORT_SYMBOL_GPL vmlinux 0xc6ad6c22 sdio_memcpy_toio +EXPORT_SYMBOL_GPL vmlinux 0xc6b12979 inet6_hash +EXPORT_SYMBOL_GPL vmlinux 0xc6cf95f9 led_trigger_set_default +EXPORT_SYMBOL_GPL vmlinux 0xc6d246b5 dm_bio_from_per_bio_data +EXPORT_SYMBOL_GPL vmlinux 0xc6dd1d27 blk_ksm_update_capabilities +EXPORT_SYMBOL_GPL vmlinux 0xc6dd4088 pci_reset_function EXPORT_SYMBOL_GPL vmlinux 0xc6def34b gnttab_empty_grant_references -EXPORT_SYMBOL_GPL vmlinux 0xc6e56c16 iommu_attach_device +EXPORT_SYMBOL_GPL vmlinux 0xc6e59040 dpbp_get_attributes EXPORT_SYMBOL_GPL vmlinux 0xc6e5bcf3 linear_range_get_selector_within -EXPORT_SYMBOL_GPL vmlinux 0xc6eb1cf5 __dev_forward_skb -EXPORT_SYMBOL_GPL vmlinux 0xc7009ae8 adp5520_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0xc6ebd543 devm_device_remove_group +EXPORT_SYMBOL_GPL vmlinux 0xc6f8681b kobject_uevent +EXPORT_SYMBOL_GPL vmlinux 0xc703c329 kthread_func EXPORT_SYMBOL_GPL vmlinux 0xc7061ef3 iova_cache_put -EXPORT_SYMBOL_GPL vmlinux 0xc71225ba iommu_map_atomic -EXPORT_SYMBOL_GPL vmlinux 0xc714f1fa rdev_get_regmap -EXPORT_SYMBOL_GPL vmlinux 0xc71b4530 receive_fd -EXPORT_SYMBOL_GPL vmlinux 0xc71dc966 mtk_pinconf_adv_pull_get +EXPORT_SYMBOL_GPL vmlinux 0xc7194f3f fsverity_verify_page EXPORT_SYMBOL_GPL vmlinux 0xc71e64a9 snmp_get_cpu_field -EXPORT_SYMBOL_GPL vmlinux 0xc72ef9d2 inet_hash_connect -EXPORT_SYMBOL_GPL vmlinux 0xc738f95f mtk_pinconf_bias_set_rev1 -EXPORT_SYMBOL_GPL vmlinux 0xc7451430 fsnotify -EXPORT_SYMBOL_GPL vmlinux 0xc74bfd81 virtqueue_get_avail_addr -EXPORT_SYMBOL_GPL vmlinux 0xc76e63c9 devfreq_cooling_em_register +EXPORT_SYMBOL_GPL vmlinux 0xc725655f bpf_prog_inc_not_zero +EXPORT_SYMBOL_GPL vmlinux 0xc7327604 regmap_field_bulk_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc738c463 dev_pm_genpd_set_next_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xc75283f2 acpi_driver_match_device +EXPORT_SYMBOL_GPL vmlinux 0xc7531f45 __traceiter_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0xc755bdee tcp_reno_undo_cwnd +EXPORT_SYMBOL_GPL vmlinux 0xc763f39b irq_chip_mask_parent EXPORT_SYMBOL_GPL vmlinux 0xc76f8048 __sbitmap_queue_get -EXPORT_SYMBOL_GPL vmlinux 0xc7730b7f irq_domain_add_legacy -EXPORT_SYMBOL_GPL vmlinux 0xc77a2bee wm831x_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0xc78101a4 tty_port_register_device_attr_serdev -EXPORT_SYMBOL_GPL vmlinux 0xc785364c perf_aux_output_begin +EXPORT_SYMBOL_GPL vmlinux 0xc7709193 pci_find_vsec_capability EXPORT_SYMBOL_GPL vmlinux 0xc7856e74 __wake_up_locked_sync_key -EXPORT_SYMBOL_GPL vmlinux 0xc785c8a7 regulator_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc79f9b62 __xenbus_register_frontend EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch EXPORT_SYMBOL_GPL vmlinux 0xc7a7e770 clk_bulk_enable -EXPORT_SYMBOL_GPL vmlinux 0xc7b46fc0 pci_epc_remove_epf -EXPORT_SYMBOL_GPL vmlinux 0xc7b6fb0f regulator_set_ramp_delay_regmap +EXPORT_SYMBOL_GPL vmlinux 0xc7adff0e rio_mport_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0xc7b229ab dma_buf_unpin +EXPORT_SYMBOL_GPL vmlinux 0xc7b827c6 sched_trace_rq_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc7bf17a8 pci_epf_remove_vepf EXPORT_SYMBOL_GPL vmlinux 0xc7c23ff0 xenbus_exists -EXPORT_SYMBOL_GPL vmlinux 0xc7ca1e02 usb_get_dev -EXPORT_SYMBOL_GPL vmlinux 0xc7cc80af icc_set_tag -EXPORT_SYMBOL_GPL vmlinux 0xc7e0629d badblocks_store +EXPORT_SYMBOL_GPL vmlinux 0xc7cf73b2 sched_trace_cfs_rq_path +EXPORT_SYMBOL_GPL vmlinux 0xc7d5d2fe clean_acked_data_disable +EXPORT_SYMBOL_GPL vmlinux 0xc7d8f14c crypto_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0xc7de3737 fl6_merge_options EXPORT_SYMBOL_GPL vmlinux 0xc7e64fc2 asn1_encode_integer -EXPORT_SYMBOL_GPL vmlinux 0xc7f1b92d device_rename -EXPORT_SYMBOL_GPL vmlinux 0xc7f98794 to_nvdimm_bus_dev +EXPORT_SYMBOL_GPL vmlinux 0xc7f0a349 regulator_count_voltages +EXPORT_SYMBOL_GPL vmlinux 0xc7f68c00 ahci_qc_issue EXPORT_SYMBOL_GPL vmlinux 0xc7fa4aa9 kobj_ns_drop -EXPORT_SYMBOL_GPL vmlinux 0xc7ff260e pm_wakeup_dev_event -EXPORT_SYMBOL_GPL vmlinux 0xc8078447 led_compose_name -EXPORT_SYMBOL_GPL vmlinux 0xc80e22a2 apei_get_debugfs_dir -EXPORT_SYMBOL_GPL vmlinux 0xc813fd4e device_bind_driver +EXPORT_SYMBOL_GPL vmlinux 0xc7fc6c0a sata_sff_hardreset +EXPORT_SYMBOL_GPL vmlinux 0xc8012c44 dw_pcie_find_capability +EXPORT_SYMBOL_GPL vmlinux 0xc80a537c icc_disable +EXPORT_SYMBOL_GPL vmlinux 0xc823a0fa platform_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0xc827c9b3 pid_nr_ns +EXPORT_SYMBOL_GPL vmlinux 0xc82a7ac9 spi_mem_driver_register_with_owner EXPORT_SYMBOL_GPL vmlinux 0xc82b3a88 __SCK__tp_func_rpm_resume EXPORT_SYMBOL_GPL vmlinux 0xc82c721f klist_remove -EXPORT_SYMBOL_GPL vmlinux 0xc82f699c security_kernel_read_file -EXPORT_SYMBOL_GPL vmlinux 0xc83679a0 ti_sci_inta_msi_domain_alloc_irqs +EXPORT_SYMBOL_GPL vmlinux 0xc82fbf24 of_pci_parse_bus_range +EXPORT_SYMBOL_GPL vmlinux 0xc839b0ac spi_bus_unlock EXPORT_SYMBOL_GPL vmlinux 0xc839c1ce trace_seq_to_user -EXPORT_SYMBOL_GPL vmlinux 0xc84b44de extcon_get_edev_name -EXPORT_SYMBOL_GPL vmlinux 0xc85761f6 wm8350_block_write -EXPORT_SYMBOL_GPL vmlinux 0xc857b0b0 register_trace_event EXPORT_SYMBOL_GPL vmlinux 0xc8594d3d reset_control_acquire -EXPORT_SYMBOL_GPL vmlinux 0xc85a246f of_clk_src_simple_get -EXPORT_SYMBOL_GPL vmlinux 0xc85e24f1 __mmc_poll_for_busy -EXPORT_SYMBOL_GPL vmlinux 0xc8674ed7 gpiochip_add_data_with_key -EXPORT_SYMBOL_GPL vmlinux 0xc87046f5 icc_node_create -EXPORT_SYMBOL_GPL vmlinux 0xc8776434 pci_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0xc85efb0b regulator_get_current_limit_regmap +EXPORT_SYMBOL_GPL vmlinux 0xc86b8557 crypto_grab_aead +EXPORT_SYMBOL_GPL vmlinux 0xc87a420a rio_request_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0xc87d26e4 of_phandle_iterator_init EXPORT_SYMBOL_GPL vmlinux 0xc87dd725 k3_udma_glue_pop_rx_chn EXPORT_SYMBOL_GPL vmlinux 0xc87fb025 xas_get_mark -EXPORT_SYMBOL_GPL vmlinux 0xc8808481 crypto_alloc_shash -EXPORT_SYMBOL_GPL vmlinux 0xc894db56 extcon_set_property_sync -EXPORT_SYMBOL_GPL vmlinux 0xc8955040 tcp_get_syncookie_mss -EXPORT_SYMBOL_GPL vmlinux 0xc89c825b crypto_mod_get -EXPORT_SYMBOL_GPL vmlinux 0xc89ce3eb of_dma_controller_register -EXPORT_SYMBOL_GPL vmlinux 0xc8a971df page_cache_async_ra -EXPORT_SYMBOL_GPL vmlinux 0xc8b6154e thermal_zone_of_sensor_register -EXPORT_SYMBOL_GPL vmlinux 0xc8bba1c1 __account_locked_vm -EXPORT_SYMBOL_GPL vmlinux 0xc8c3687e fib6_check_nexthop -EXPORT_SYMBOL_GPL vmlinux 0xc8c3a0d1 icc_get_name -EXPORT_SYMBOL_GPL vmlinux 0xc8c59679 device_remove_file -EXPORT_SYMBOL_GPL vmlinux 0xc8cf3257 rio_dev_get -EXPORT_SYMBOL_GPL vmlinux 0xc8d32d84 ata_pci_remove_one -EXPORT_SYMBOL_GPL vmlinux 0xc8da9506 devm_extcon_dev_free -EXPORT_SYMBOL_GPL vmlinux 0xc8ddb61b mtk_pinconf_bias_disable_get +EXPORT_SYMBOL_GPL vmlinux 0xc880c99f clean_record_shared_mapping_range +EXPORT_SYMBOL_GPL vmlinux 0xc88a90da rockchip_pcie_get_phys +EXPORT_SYMBOL_GPL vmlinux 0xc895f7c8 rio_map_outb_region +EXPORT_SYMBOL_GPL vmlinux 0xc8aacd47 spi_controller_dma_unmap_mem_op_data +EXPORT_SYMBOL_GPL vmlinux 0xc8acfcb7 dev_fill_metadata_dst +EXPORT_SYMBOL_GPL vmlinux 0xc8c35ddc usb_create_shared_hcd +EXPORT_SYMBOL_GPL vmlinux 0xc8dd64e0 ping_queue_rcv_skb EXPORT_SYMBOL_GPL vmlinux 0xc8ddd5b5 kstrdup_quotable -EXPORT_SYMBOL_GPL vmlinux 0xc8e88687 cpufreq_unregister_governor -EXPORT_SYMBOL_GPL vmlinux 0xc91283d0 regmap_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0xc8e0cb47 pinctrl_select_default_state +EXPORT_SYMBOL_GPL vmlinux 0xc8e66de7 add_swap_extent +EXPORT_SYMBOL_GPL vmlinux 0xc8e6fc76 udp_tunnel_nic_ops +EXPORT_SYMBOL_GPL vmlinux 0xc8ea1585 dma_get_required_mask +EXPORT_SYMBOL_GPL vmlinux 0xc9048e4f spi_res_add +EXPORT_SYMBOL_GPL vmlinux 0xc9128a5f nd_tbl +EXPORT_SYMBOL_GPL vmlinux 0xc91f7359 virtqueue_detach_unused_buf EXPORT_SYMBOL_GPL vmlinux 0xc91fdf58 percpu_ref_is_zero EXPORT_SYMBOL_GPL vmlinux 0xc9345c0f digsig_verify -EXPORT_SYMBOL_GPL vmlinux 0xc93cce3c screen_pos EXPORT_SYMBOL_GPL vmlinux 0xc93ee1e7 usb_phy_roothub_init -EXPORT_SYMBOL_GPL vmlinux 0xc9473083 devm_clk_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0xc94743de irq_chip_get_parent_state -EXPORT_SYMBOL_GPL vmlinux 0xc9489d0a ata_sas_port_destroy -EXPORT_SYMBOL_GPL vmlinux 0xc950da25 usb_amd_pt_check_port +EXPORT_SYMBOL_GPL vmlinux 0xc942146b devm_mbox_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xc9439737 kvm_read_guest_page EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist -EXPORT_SYMBOL_GPL vmlinux 0xc9599b25 strp_stop -EXPORT_SYMBOL_GPL vmlinux 0xc95cf160 regulator_map_voltage_pickable_linear_range EXPORT_SYMBOL_GPL vmlinux 0xc9641b48 visitor32 -EXPORT_SYMBOL_GPL vmlinux 0xc9723f5e regulator_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0xc97bb10f regulator_set_mode -EXPORT_SYMBOL_GPL vmlinux 0xc97d2516 regulator_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xc98147f1 device_get_match_data EXPORT_SYMBOL_GPL vmlinux 0xc9827693 __bpf_call_base -EXPORT_SYMBOL_GPL vmlinux 0xc9c6f46a gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0xc983f4be lwtunnel_fill_encap +EXPORT_SYMBOL_GPL vmlinux 0xc983fda7 ata_platform_remove_one +EXPORT_SYMBOL_GPL vmlinux 0xc9988b54 __traceiter_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0xc99951e0 pci_load_and_free_saved_state +EXPORT_SYMBOL_GPL vmlinux 0xc9a0f95f acpi_dev_suspend +EXPORT_SYMBOL_GPL vmlinux 0xc9a248e6 gpiod_count +EXPORT_SYMBOL_GPL vmlinux 0xc9ae5d55 fwnode_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0xc9c519f9 dma_need_sync +EXPORT_SYMBOL_GPL vmlinux 0xc9c76e0f of_thermal_is_trip_valid EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu -EXPORT_SYMBOL_GPL vmlinux 0xc9f442f7 devm_led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc9f0163a shash_ahash_digest EXPORT_SYMBOL_GPL vmlinux 0xc9fb00f7 pl320_ipc_transmit EXPORT_SYMBOL_GPL vmlinux 0xc9fd634a usb_role_switch_put -EXPORT_SYMBOL_GPL vmlinux 0xc9fd8d4a switchdev_handle_fdb_add_to_device -EXPORT_SYMBOL_GPL vmlinux 0xca0709e9 device_property_match_string -EXPORT_SYMBOL_GPL vmlinux 0xca1076d1 __nvdimm_create -EXPORT_SYMBOL_GPL vmlinux 0xca172532 ata_sas_port_stop -EXPORT_SYMBOL_GPL vmlinux 0xca1c9f73 dm_start_time_ns_from_clone -EXPORT_SYMBOL_GPL vmlinux 0xca2004c8 regulator_map_voltage_iterate -EXPORT_SYMBOL_GPL vmlinux 0xca29b51a crypto_shash_update -EXPORT_SYMBOL_GPL vmlinux 0xca33b2b3 pci_bus_add_device -EXPORT_SYMBOL_GPL vmlinux 0xca3af0b1 pwm_apply_state -EXPORT_SYMBOL_GPL vmlinux 0xca3bc36f blk_queue_max_discard_segments -EXPORT_SYMBOL_GPL vmlinux 0xca41a758 of_usb_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0xca2b542f devlink_net +EXPORT_SYMBOL_GPL vmlinux 0xca355158 vchan_init +EXPORT_SYMBOL_GPL vmlinux 0xca3f79a8 kthread_flush_worker +EXPORT_SYMBOL_GPL vmlinux 0xca4022bd auxiliary_device_init EXPORT_SYMBOL_GPL vmlinux 0xca454a34 vt_get_leds -EXPORT_SYMBOL_GPL vmlinux 0xca4bcd91 posix_acl_create -EXPORT_SYMBOL_GPL vmlinux 0xca514948 class_dev_iter_init -EXPORT_SYMBOL_GPL vmlinux 0xca54014b icc_link_create -EXPORT_SYMBOL_GPL vmlinux 0xca648900 devlink_param_unregister -EXPORT_SYMBOL_GPL vmlinux 0xca74fcb6 get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0xca45527e fat_scan +EXPORT_SYMBOL_GPL vmlinux 0xca5c403a nfs_ssc_unregister +EXPORT_SYMBOL_GPL vmlinux 0xca6063ee stmpe_block_write +EXPORT_SYMBOL_GPL vmlinux 0xca784118 net_selftest EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop -EXPORT_SYMBOL_GPL vmlinux 0xca8537a4 crypto_register_shashes -EXPORT_SYMBOL_GPL vmlinux 0xca91f21e kvm_vcpu_kick +EXPORT_SYMBOL_GPL vmlinux 0xca8f39e4 __devm_clk_hw_register_divider EXPORT_SYMBOL_GPL vmlinux 0xca9a1d5e ring_buffer_free -EXPORT_SYMBOL_GPL vmlinux 0xcaa5a2cb usb_get_current_frame_number -EXPORT_SYMBOL_GPL vmlinux 0xcaaeca2b kill_device -EXPORT_SYMBOL_GPL vmlinux 0xcab85c96 pci_ecam_free +EXPORT_SYMBOL_GPL vmlinux 0xcaa544f7 inet_csk_route_child_sock +EXPORT_SYMBOL_GPL vmlinux 0xcab848f6 bus_find_device EXPORT_SYMBOL_GPL vmlinux 0xcabe04de cpuidle_resume_and_unlock -EXPORT_SYMBOL_GPL vmlinux 0xcad3aa28 kvm_map_gfn -EXPORT_SYMBOL_GPL vmlinux 0xcadf12a4 gpiochip_remove -EXPORT_SYMBOL_GPL vmlinux 0xcadf2ba1 ata_sff_hsm_move -EXPORT_SYMBOL_GPL vmlinux 0xcadfc822 regulator_set_active_discharge_regmap -EXPORT_SYMBOL_GPL vmlinux 0xcae278ed transport_class_unregister -EXPORT_SYMBOL_GPL vmlinux 0xcae2bfa7 sfp_add_phy -EXPORT_SYMBOL_GPL vmlinux 0xcae50a99 xhci_get_ep_ctx -EXPORT_SYMBOL_GPL vmlinux 0xcae5d919 __traceiter_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0xcac937c7 irq_setup_alt_chip +EXPORT_SYMBOL_GPL vmlinux 0xcacef06c __xdp_build_skb_from_frame +EXPORT_SYMBOL_GPL vmlinux 0xcadf5c64 of_devfreq_cooling_register_power +EXPORT_SYMBOL_GPL vmlinux 0xcae64686 tty_init_termios EXPORT_SYMBOL_GPL vmlinux 0xcae7ce5d fsl_mc_get_version -EXPORT_SYMBOL_GPL vmlinux 0xcaf10c84 gnttab_pages_set_private EXPORT_SYMBOL_GPL vmlinux 0xcaf1d958 evtchn_get -EXPORT_SYMBOL_GPL vmlinux 0xcb00095d is_transparent_hugepage -EXPORT_SYMBOL_GPL vmlinux 0xcb039ade gpiochip_add_pin_range -EXPORT_SYMBOL_GPL vmlinux 0xcb049161 mmc_regulator_get_supply -EXPORT_SYMBOL_GPL vmlinux 0xcb05b67b mmc_cmdq_enable -EXPORT_SYMBOL_GPL vmlinux 0xcb06f936 meson_clk_cpu_dyndiv_ops -EXPORT_SYMBOL_GPL vmlinux 0xcb13e841 crypto_alloc_acomp_node +EXPORT_SYMBOL_GPL vmlinux 0xcb0c62a0 virtqueue_is_broken +EXPORT_SYMBOL_GPL vmlinux 0xcb13701f blk_rq_unprep_clone EXPORT_SYMBOL_GPL vmlinux 0xcb15eee9 sdhci_pci_get_data -EXPORT_SYMBOL_GPL vmlinux 0xcb2967c8 blk_mq_debugfs_rq_show EXPORT_SYMBOL_GPL vmlinux 0xcb2bfe2b nvmem_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xcb349de3 crypto_register_rngs +EXPORT_SYMBOL_GPL vmlinux 0xcb3d5e96 bpf_trace_run9 +EXPORT_SYMBOL_GPL vmlinux 0xcb42acd3 phy_remove_lookup EXPORT_SYMBOL_GPL vmlinux 0xcb561441 mem_dump_obj -EXPORT_SYMBOL_GPL vmlinux 0xcb69b8f2 check_move_unevictable_pages -EXPORT_SYMBOL_GPL vmlinux 0xcb7a0c2d skb_complete_tx_timestamp -EXPORT_SYMBOL_GPL vmlinux 0xcb875588 regulator_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0xcb922b02 pinctrl_utils_reserve_map -EXPORT_SYMBOL_GPL vmlinux 0xcb95a13c pm_genpd_remove_subdomain -EXPORT_SYMBOL_GPL vmlinux 0xcbb449dc devm_gpiod_get_array_optional -EXPORT_SYMBOL_GPL vmlinux 0xcbbb4ea0 regulator_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xcbbfc60f kthread_data -EXPORT_SYMBOL_GPL vmlinux 0xcbc0d3f4 tty_set_termios -EXPORT_SYMBOL_GPL vmlinux 0xcbc59a4b of_dma_configure_id -EXPORT_SYMBOL_GPL vmlinux 0xcbd641bc hisi_uncore_pmu_read +EXPORT_SYMBOL_GPL vmlinux 0xcb5b2506 efivars_register +EXPORT_SYMBOL_GPL vmlinux 0xcb5da894 nd_region_dev +EXPORT_SYMBOL_GPL vmlinux 0xcb768214 cpufreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0xcb7c4fc9 blkcg_print_blkgs +EXPORT_SYMBOL_GPL vmlinux 0xcb7e2c21 inet_send_prepare +EXPORT_SYMBOL_GPL vmlinux 0xcb82a04b dev_queue_xmit_nit +EXPORT_SYMBOL_GPL vmlinux 0xcb921288 ndo_dflt_bridge_getlink +EXPORT_SYMBOL_GPL vmlinux 0xcba1e3d8 platform_find_device_by_driver +EXPORT_SYMBOL_GPL vmlinux 0xcbb12501 led_trigger_write +EXPORT_SYMBOL_GPL vmlinux 0xcbc461b5 subsys_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0xcbcae4fd devm_pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0xcbd070d6 xenbus_dev_probe +EXPORT_SYMBOL_GPL vmlinux 0xcbd1e6e1 kvm_vcpu_gfn_to_pfn +EXPORT_SYMBOL_GPL vmlinux 0xcbdc1189 nd_region_provider_data +EXPORT_SYMBOL_GPL vmlinux 0xcbe33bae ipv4_redirect EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages -EXPORT_SYMBOL_GPL vmlinux 0xcbea110f __inode_attach_wb -EXPORT_SYMBOL_GPL vmlinux 0xcbeb9035 bsg_setup_queue -EXPORT_SYMBOL_GPL vmlinux 0xcbf83eb5 device_change_owner -EXPORT_SYMBOL_GPL vmlinux 0xcbfe7d85 crypto_stats_rng_seed -EXPORT_SYMBOL_GPL vmlinux 0xcc0231d2 mtk_mmsys_ddp_connect +EXPORT_SYMBOL_GPL vmlinux 0xcbf91c54 init_uts_ns EXPORT_SYMBOL_GPL vmlinux 0xcc0fd0a7 k3_ringacc_ring_push_head -EXPORT_SYMBOL_GPL vmlinux 0xcc1ba23a __phy_modify -EXPORT_SYMBOL_GPL vmlinux 0xcc1c309a pwm_set_chip_data -EXPORT_SYMBOL_GPL vmlinux 0xcc1c346e of_genpd_add_provider_simple -EXPORT_SYMBOL_GPL vmlinux 0xcc22cffa extcon_get_extcon_dev -EXPORT_SYMBOL_GPL vmlinux 0xcc29f43b trace_event_buffer_commit -EXPORT_SYMBOL_GPL vmlinux 0xcc2b4870 of_property_read_variable_u8_array +EXPORT_SYMBOL_GPL vmlinux 0xcc117423 lwtunnel_encap_del_ops +EXPORT_SYMBOL_GPL vmlinux 0xcc2bb872 gpiod_get_value_cansleep EXPORT_SYMBOL_GPL vmlinux 0xcc2dbfd8 irq_domain_check_msi_remap -EXPORT_SYMBOL_GPL vmlinux 0xcc32bef2 acpi_unbind_one +EXPORT_SYMBOL_GPL vmlinux 0xcc31cba1 ata_sff_data_xfer +EXPORT_SYMBOL_GPL vmlinux 0xcc37cabb rio_alloc_net EXPORT_SYMBOL_GPL vmlinux 0xcc39c03e nvmem_unregister -EXPORT_SYMBOL_GPL vmlinux 0xcc50cf08 dma_async_device_channel_unregister -EXPORT_SYMBOL_GPL vmlinux 0xcc54e6f4 nvdimm_has_cache -EXPORT_SYMBOL_GPL vmlinux 0xcc6477d0 transport_destroy_device -EXPORT_SYMBOL_GPL vmlinux 0xcc6585ae xfrm_audit_state_icvfail -EXPORT_SYMBOL_GPL vmlinux 0xcc79b4e1 pci_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0xcc534796 usb_hcd_is_primary_hcd +EXPORT_SYMBOL_GPL vmlinux 0xcc5cfaa8 usb_hcd_giveback_urb +EXPORT_SYMBOL_GPL vmlinux 0xcc5dc0e6 virtqueue_get_desc_addr +EXPORT_SYMBOL_GPL vmlinux 0xcc5e46b2 dst_blackhole_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xcc620116 alloc_dax_region +EXPORT_SYMBOL_GPL vmlinux 0xcc7dd9ad scsi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xcc8c4e48 crypto_unregister_akcipher EXPORT_SYMBOL_GPL vmlinux 0xcc9268fc hwpoison_filter_enable EXPORT_SYMBOL_GPL vmlinux 0xcc935375 walk_iomem_res_desc -EXPORT_SYMBOL_GPL vmlinux 0xcca09180 rtnl_get_net_ns_capable -EXPORT_SYMBOL_GPL vmlinux 0xcca9ef72 crypto_grab_spawn -EXPORT_SYMBOL_GPL vmlinux 0xccadf8d0 pci_find_next_capability -EXPORT_SYMBOL_GPL vmlinux 0xccaff38a device_initialize +EXPORT_SYMBOL_GPL vmlinux 0xcca60691 ata_dummy_port_info +EXPORT_SYMBOL_GPL vmlinux 0xccaddd80 ata_host_put +EXPORT_SYMBOL_GPL vmlinux 0xccc2cdcd blk_set_pm_only EXPORT_SYMBOL_GPL vmlinux 0xcccfb2fa sata_deb_timing_hotplug -EXPORT_SYMBOL_GPL vmlinux 0xccd5679f phy_modify +EXPORT_SYMBOL_GPL vmlinux 0xccd5af84 pin_user_pages_fast EXPORT_SYMBOL_GPL vmlinux 0xccd86806 ata_id_string -EXPORT_SYMBOL_GPL vmlinux 0xccf039d6 cpufreq_freq_transition_end +EXPORT_SYMBOL_GPL vmlinux 0xcce1fae1 hypervisor_kobj +EXPORT_SYMBOL_GPL vmlinux 0xccecfd1f crypto_shash_finup +EXPORT_SYMBOL_GPL vmlinux 0xccee751f da9052_adc_manual_read +EXPORT_SYMBOL_GPL vmlinux 0xccf0593a phy_start_machine EXPORT_SYMBOL_GPL vmlinux 0xccf52bc9 sfp_upstream_start -EXPORT_SYMBOL_GPL vmlinux 0xcd0523b9 usb_driver_release_interface +EXPORT_SYMBOL_GPL vmlinux 0xccfe723a pci_hp_create_module_link +EXPORT_SYMBOL_GPL vmlinux 0xcd0cfeac xfrm_dev_offload_ok +EXPORT_SYMBOL_GPL vmlinux 0xcd12e989 handle_fasteoi_ack_irq EXPORT_SYMBOL_GPL vmlinux 0xcd24e146 hash_digest_size -EXPORT_SYMBOL_GPL vmlinux 0xcd2f9ace crypto_skcipher_encrypt EXPORT_SYMBOL_GPL vmlinux 0xcd3e5c7c acpi_release_memory +EXPORT_SYMBOL_GPL vmlinux 0xcd422297 rtc_class_open +EXPORT_SYMBOL_GPL vmlinux 0xcd5670df rockchip_clk_add_lookup EXPORT_SYMBOL_GPL vmlinux 0xcd6f2dc9 nf_log_buf_add +EXPORT_SYMBOL_GPL vmlinux 0xcd72cfcd wm8350_device_init EXPORT_SYMBOL_GPL vmlinux 0xcd759b82 k3_ringacc_ring_reset -EXPORT_SYMBOL_GPL vmlinux 0xcd7f4e02 invalidate_inode_pages2 +EXPORT_SYMBOL_GPL vmlinux 0xcd81b8f2 regulator_bulk_unregister_supply_alias EXPORT_SYMBOL_GPL vmlinux 0xcd910be7 ti_sci_get_num_resources EXPORT_SYMBOL_GPL vmlinux 0xcd91b127 system_highpri_wq EXPORT_SYMBOL_GPL vmlinux 0xcd974f00 rcu_all_qs -EXPORT_SYMBOL_GPL vmlinux 0xcd9911a6 xen_xlate_remap_gfn_array EXPORT_SYMBOL_GPL vmlinux 0xcd9cd2ff wakeme_after_rcu -EXPORT_SYMBOL_GPL vmlinux 0xcda0b81e gpiod_get_array_value -EXPORT_SYMBOL_GPL vmlinux 0xcda18fd2 usb_for_each_port +EXPORT_SYMBOL_GPL vmlinux 0xcd9fd02c devm_extcon_dev_allocate EXPORT_SYMBOL_GPL vmlinux 0xcda2aaba k3_udma_glue_tx_dma_to_cppi5_addr -EXPORT_SYMBOL_GPL vmlinux 0xcdb33e21 scsi_target_unblock +EXPORT_SYMBOL_GPL vmlinux 0xcdaf2abc devm_gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0xcdafa5c8 icc_get_name +EXPORT_SYMBOL_GPL vmlinux 0xcdb2ac8c wbc_attach_and_unlock_inode EXPORT_SYMBOL_GPL vmlinux 0xcdb6adcc ras_userspace_consumers -EXPORT_SYMBOL_GPL vmlinux 0xcdbd81c9 regulator_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0xcdc1b794 pci_destroy_slot +EXPORT_SYMBOL_GPL vmlinux 0xcdb97f9d ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0xcdbafa1c dequeue_signal EXPORT_SYMBOL_GPL vmlinux 0xcdc86b55 sched_clock -EXPORT_SYMBOL_GPL vmlinux 0xcdc8c081 regulator_get_voltage_sel_regmap EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs -EXPORT_SYMBOL_GPL vmlinux 0xcdd183c7 vp_modern_probe -EXPORT_SYMBOL_GPL vmlinux 0xcdd2404f pci_test_config_bits +EXPORT_SYMBOL_GPL vmlinux 0xcdd16b9a phy_pm_runtime_get +EXPORT_SYMBOL_GPL vmlinux 0xcdd80e51 ahci_start_fis_rx EXPORT_SYMBOL_GPL vmlinux 0xcde26600 cppc_get_transition_latency -EXPORT_SYMBOL_GPL vmlinux 0xcde4b485 ata_sff_port_intr -EXPORT_SYMBOL_GPL vmlinux 0xcde597f4 inode_congested -EXPORT_SYMBOL_GPL vmlinux 0xcdf0b608 sysfs_break_active_protection -EXPORT_SYMBOL_GPL vmlinux 0xcdfe7003 usb_get_role_switch_default_mode +EXPORT_SYMBOL_GPL vmlinux 0xcde3ff1c msg_zerocopy_alloc +EXPORT_SYMBOL_GPL vmlinux 0xcdeff9af path_noexec +EXPORT_SYMBOL_GPL vmlinux 0xcdf8a31b user_describe +EXPORT_SYMBOL_GPL vmlinux 0xce0509e4 con_debug_enter EXPORT_SYMBOL_GPL vmlinux 0xce0a4020 xenbus_directory -EXPORT_SYMBOL_GPL vmlinux 0xce1306b5 of_irq_find_parent +EXPORT_SYMBOL_GPL vmlinux 0xce1ca708 ata_std_sched_eh +EXPORT_SYMBOL_GPL vmlinux 0xce203c3c pinctrl_utils_add_map_mux +EXPORT_SYMBOL_GPL vmlinux 0xce28415a serial8250_get_port +EXPORT_SYMBOL_GPL vmlinux 0xce2cc78a usb_enable_intel_xhci_ports EXPORT_SYMBOL_GPL vmlinux 0xce316d7e zynqmp_pm_set_sd_tapdelay -EXPORT_SYMBOL_GPL vmlinux 0xce3ec05a anon_inode_getfd -EXPORT_SYMBOL_GPL vmlinux 0xce40d3ed tty_port_register_device_attr -EXPORT_SYMBOL_GPL vmlinux 0xce47e79b xenbus_grant_ring -EXPORT_SYMBOL_GPL vmlinux 0xce4fd48f tcpv6_prot +EXPORT_SYMBOL_GPL vmlinux 0xce3849e7 nfs42_ssc_register +EXPORT_SYMBOL_GPL vmlinux 0xce3f871c ata_host_resume +EXPORT_SYMBOL_GPL vmlinux 0xce53566b iommu_get_domain_for_dev EXPORT_SYMBOL_GPL vmlinux 0xce598ef2 unregister_kretprobe -EXPORT_SYMBOL_GPL vmlinux 0xce60df42 kvm_vcpu_map EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching -EXPORT_SYMBOL_GPL vmlinux 0xce87275a dev_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xce7bbb30 fscrypt_mergeable_bio_bh +EXPORT_SYMBOL_GPL vmlinux 0xce8adf2e dst_blackhole_mtu +EXPORT_SYMBOL_GPL vmlinux 0xce91a48a pci_find_next_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0xcea1f98e netlink_add_tap +EXPORT_SYMBOL_GPL vmlinux 0xcea3918c fixed_phy_register_with_gpiod +EXPORT_SYMBOL_GPL vmlinux 0xcea9ffaa __nvdimm_create EXPORT_SYMBOL_GPL vmlinux 0xceac8674 zynqmp_pm_read_pggs +EXPORT_SYMBOL_GPL vmlinux 0xceb16c7b dma_resv_test_signaled EXPORT_SYMBOL_GPL vmlinux 0xceb1f126 mpi_read_raw_data -EXPORT_SYMBOL_GPL vmlinux 0xceb4fe05 debugfs_file_put -EXPORT_SYMBOL_GPL vmlinux 0xcec67957 usb_reset_device -EXPORT_SYMBOL_GPL vmlinux 0xced19ba0 ncsi_vlan_rx_add_vid -EXPORT_SYMBOL_GPL vmlinux 0xced24c88 max8997_update_reg -EXPORT_SYMBOL_GPL vmlinux 0xced51947 blk_insert_cloned_request -EXPORT_SYMBOL_GPL vmlinux 0xced6a1ab devm_thermal_add_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0xcec63e79 blk_mq_alloc_request_hctx +EXPORT_SYMBOL_GPL vmlinux 0xcec99de2 cdrom_multisession +EXPORT_SYMBOL_GPL vmlinux 0xced06e2a pm_wakeup_dev_event EXPORT_SYMBOL_GPL vmlinux 0xcee1641c kgdb_unregister_nmi_console -EXPORT_SYMBOL_GPL vmlinux 0xcee4e99e fat_scan +EXPORT_SYMBOL_GPL vmlinux 0xcee33077 fwnode_property_read_u64_array EXPORT_SYMBOL_GPL vmlinux 0xcee88e7a of_overlay_fdt_apply EXPORT_SYMBOL_GPL vmlinux 0xceed8c16 __set_phys_to_machine -EXPORT_SYMBOL_GPL vmlinux 0xcef40188 genphy_c45_pma_setup_forced -EXPORT_SYMBOL_GPL vmlinux 0xcf146702 pci_reset_function_locked -EXPORT_SYMBOL_GPL vmlinux 0xcf2dd981 devm_regmap_del_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0xcf2f2891 ata_acpi_gtm -EXPORT_SYMBOL_GPL vmlinux 0xcf454b9b spi_new_device -EXPORT_SYMBOL_GPL vmlinux 0xcf45e6ea phy_optional_get -EXPORT_SYMBOL_GPL vmlinux 0xcf51ef9b ip_fib_metrics_init -EXPORT_SYMBOL_GPL vmlinux 0xcf59f4e5 fat_attach -EXPORT_SYMBOL_GPL vmlinux 0xcf64a0e9 pci_store_saved_state -EXPORT_SYMBOL_GPL vmlinux 0xcf71f522 tpm2_flush_context +EXPORT_SYMBOL_GPL vmlinux 0xcef614f7 ptp_classify_raw +EXPORT_SYMBOL_GPL vmlinux 0xcefabce2 usb_hcd_poll_rh_status +EXPORT_SYMBOL_GPL vmlinux 0xcf01a40f gpiod_set_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0xcf021589 skb_mpls_push +EXPORT_SYMBOL_GPL vmlinux 0xcf096b26 xhci_check_bandwidth +EXPORT_SYMBOL_GPL vmlinux 0xcf1b5221 iommu_unmap_fast +EXPORT_SYMBOL_GPL vmlinux 0xcf2a3647 regcache_sync +EXPORT_SYMBOL_GPL vmlinux 0xcf2bd614 __devm_regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0xcf4412dc of_phandle_iterator_next +EXPORT_SYMBOL_GPL vmlinux 0xcf471f69 sk_msg_return +EXPORT_SYMBOL_GPL vmlinux 0xcf5089e5 gfn_to_memslot +EXPORT_SYMBOL_GPL vmlinux 0xcf537e7c pci_cfg_access_unlock +EXPORT_SYMBOL_GPL vmlinux 0xcf5b6e36 gpiod_direction_output +EXPORT_SYMBOL_GPL vmlinux 0xcf78ef8f ata_dummy_port_ops EXPORT_SYMBOL_GPL vmlinux 0xcf7f66f9 imx_dev_clk_hw_pll14xx -EXPORT_SYMBOL_GPL vmlinux 0xcf801ac4 xfrm_dev_offload_ok -EXPORT_SYMBOL_GPL vmlinux 0xcf96a26f device_show_bool -EXPORT_SYMBOL_GPL vmlinux 0xcf973f0e led_set_brightness -EXPORT_SYMBOL_GPL vmlinux 0xcf9c8eb6 ahci_platform_enable_phys -EXPORT_SYMBOL_GPL vmlinux 0xcfae050d unix_outq_len -EXPORT_SYMBOL_GPL vmlinux 0xcfc22272 iomap_seek_hole +EXPORT_SYMBOL_GPL vmlinux 0xcf900e66 pci_probe_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0xcf9bb2b9 sdio_writeb +EXPORT_SYMBOL_GPL vmlinux 0xcfa324ba tty_get_icount +EXPORT_SYMBOL_GPL vmlinux 0xcfb2d61c fscrypt_set_bio_crypt_ctx_bh +EXPORT_SYMBOL_GPL vmlinux 0xcfb69eb0 nvdimm_delete EXPORT_SYMBOL_GPL vmlinux 0xcfc5108a devlink_fmsg_u8_pair_put -EXPORT_SYMBOL_GPL vmlinux 0xcfc74092 thermal_zone_of_get_sensor_id EXPORT_SYMBOL_GPL vmlinux 0xcfc7b4e4 rcu_barrier_tasks_trace -EXPORT_SYMBOL_GPL vmlinux 0xcfca07e8 usb_unlocked_enable_lpm EXPORT_SYMBOL_GPL vmlinux 0xcfd30d71 acpi_os_map_memory -EXPORT_SYMBOL_GPL vmlinux 0xcfefbfdb fuse_mount_remove -EXPORT_SYMBOL_GPL vmlinux 0xcffb4011 dev_pm_opp_remove_table +EXPORT_SYMBOL_GPL vmlinux 0xcfdf6816 gpiochip_reqres_irq +EXPORT_SYMBOL_GPL vmlinux 0xcfe9809a get_current_tty +EXPORT_SYMBOL_GPL vmlinux 0xcff43e31 blk_ksm_init EXPORT_SYMBOL_GPL vmlinux 0xcffd793e hyperv_report_panic -EXPORT_SYMBOL_GPL vmlinux 0xd0081737 syscon_regmap_lookup_by_phandle_optional -EXPORT_SYMBOL_GPL vmlinux 0xd01ef5c5 usb_autopm_get_interface_async +EXPORT_SYMBOL_GPL vmlinux 0xd00a113c dma_get_merge_boundary +EXPORT_SYMBOL_GPL vmlinux 0xd00d106c firmware_request_nowarn +EXPORT_SYMBOL_GPL vmlinux 0xd01ad811 serial8250_em485_start_tx +EXPORT_SYMBOL_GPL vmlinux 0xd0235676 ip6_sk_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0xd0244d21 usb_hcd_start_port_resume EXPORT_SYMBOL_GPL vmlinux 0xd026d518 HYPERVISOR_vcpu_op -EXPORT_SYMBOL_GPL vmlinux 0xd02701c5 pci_epc_add_epf -EXPORT_SYMBOL_GPL vmlinux 0xd02c1732 xdp_rxq_info_unused -EXPORT_SYMBOL_GPL vmlinux 0xd02d2d05 gpiod_unexport -EXPORT_SYMBOL_GPL vmlinux 0xd02dcf4d usb_ifnum_to_if -EXPORT_SYMBOL_GPL vmlinux 0xd02f9224 sysfs_update_groups -EXPORT_SYMBOL_GPL vmlinux 0xd03dd669 edac_pci_create_generic_ctl EXPORT_SYMBOL_GPL vmlinux 0xd03eaf4c schedule_hrtimeout_range +EXPORT_SYMBOL_GPL vmlinux 0xd04092fc uprobe_register_refctr EXPORT_SYMBOL_GPL vmlinux 0xd0458ccb xenbus_strstate -EXPORT_SYMBOL_GPL vmlinux 0xd048f404 mpc8xxx_spi_rx_buf_u32 +EXPORT_SYMBOL_GPL vmlinux 0xd0465faf edac_device_handle_ue_count +EXPORT_SYMBOL_GPL vmlinux 0xd047091a balloon_page_dequeue EXPORT_SYMBOL_GPL vmlinux 0xd04aedfd __SCK__tp_func_arm_event -EXPORT_SYMBOL_GPL vmlinux 0xd04b2bc2 ata_bmdma_stop -EXPORT_SYMBOL_GPL vmlinux 0xd05db616 gpiochip_is_requested +EXPORT_SYMBOL_GPL vmlinux 0xd051f5d5 __hwspin_lock_timeout +EXPORT_SYMBOL_GPL vmlinux 0xd0542c83 spi_finalize_current_transfer +EXPORT_SYMBOL_GPL vmlinux 0xd05d8ef5 usb_get_urb +EXPORT_SYMBOL_GPL vmlinux 0xd06223ff acpi_kobj +EXPORT_SYMBOL_GPL vmlinux 0xd06306cc meson_pmx_get_func_name +EXPORT_SYMBOL_GPL vmlinux 0xd06455d2 mtk_pinconf_adv_drive_get_raw EXPORT_SYMBOL_GPL vmlinux 0xd06524ba raw_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd0666ebd component_bind_all +EXPORT_SYMBOL_GPL vmlinux 0xd0672435 crypto_register_kpp EXPORT_SYMBOL_GPL vmlinux 0xd067d3c5 system_freezable_power_efficient_wq -EXPORT_SYMBOL_GPL vmlinux 0xd06e00e5 dev_pm_clear_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0xd095ccfb dpcon_disable +EXPORT_SYMBOL_GPL vmlinux 0xd071d476 powercap_register_zone +EXPORT_SYMBOL_GPL vmlinux 0xd071fd84 __clk_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0xd0798073 __traceiter_block_split +EXPORT_SYMBOL_GPL vmlinux 0xd0817bdf clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0xd08d466f cpu_device_create EXPORT_SYMBOL_GPL vmlinux 0xd09911a6 acpi_dev_get_irq_type -EXPORT_SYMBOL_GPL vmlinux 0xd0ab218b led_trigger_read -EXPORT_SYMBOL_GPL vmlinux 0xd0b2572b tcp_get_info +EXPORT_SYMBOL_GPL vmlinux 0xd0a40ae8 __blk_req_zone_write_unlock +EXPORT_SYMBOL_GPL vmlinux 0xd0a4151f fwnode_get_named_child_node +EXPORT_SYMBOL_GPL vmlinux 0xd0b6efe3 device_remove_groups EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart -EXPORT_SYMBOL_GPL vmlinux 0xd0ce8b1e of_pci_find_child_device +EXPORT_SYMBOL_GPL vmlinux 0xd0d069b1 spi_unregister_device EXPORT_SYMBOL_GPL vmlinux 0xd0d156e9 __rht_bucket_nested EXPORT_SYMBOL_GPL vmlinux 0xd0d3f0a4 gen_pool_avail -EXPORT_SYMBOL_GPL vmlinux 0xd0d9f652 fsnotify_destroy_mark EXPORT_SYMBOL_GPL vmlinux 0xd0db0f12 run_dax -EXPORT_SYMBOL_GPL vmlinux 0xd0dbd060 device_create_with_groups -EXPORT_SYMBOL_GPL vmlinux 0xd0dc0514 dev_pm_opp_get_sharing_cpus -EXPORT_SYMBOL_GPL vmlinux 0xd0f7727d ncsi_start_dev -EXPORT_SYMBOL_GPL vmlinux 0xd0fc4987 __traceiter_br_fdb_external_learn_add -EXPORT_SYMBOL_GPL vmlinux 0xd0fe3772 do_xdp_generic -EXPORT_SYMBOL_GPL vmlinux 0xd1062f95 dax_copy_from_iter -EXPORT_SYMBOL_GPL vmlinux 0xd1130349 udp_destruct_sock -EXPORT_SYMBOL_GPL vmlinux 0xd11971c7 cpufreq_freq_attr_scaling_boost_freqs -EXPORT_SYMBOL_GPL vmlinux 0xd1333826 fsnotify_alloc_user_group +EXPORT_SYMBOL_GPL vmlinux 0xd0e6d9df irq_find_matching_fwspec +EXPORT_SYMBOL_GPL vmlinux 0xd0ec6875 icc_set_bw +EXPORT_SYMBOL_GPL vmlinux 0xd1072688 pci_dev_lock +EXPORT_SYMBOL_GPL vmlinux 0xd116840a pinconf_generic_dt_free_map +EXPORT_SYMBOL_GPL vmlinux 0xd11af6fc kvm_vcpu_gfn_to_pfn_atomic +EXPORT_SYMBOL_GPL vmlinux 0xd11f1e3b i2c_dw_acpi_configure +EXPORT_SYMBOL_GPL vmlinux 0xd12aaac7 bpf_map_put +EXPORT_SYMBOL_GPL vmlinux 0xd12aceff regmap_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0xd1311780 regmap_noinc_read EXPORT_SYMBOL_GPL vmlinux 0xd1386738 x509_cert_parse +EXPORT_SYMBOL_GPL vmlinux 0xd13a80e9 blk_insert_cloned_request +EXPORT_SYMBOL_GPL vmlinux 0xd13d6976 icc_node_del +EXPORT_SYMBOL_GPL vmlinux 0xd146b3de kvm_set_memory_region EXPORT_SYMBOL_GPL vmlinux 0xd1481de7 mpi_clear -EXPORT_SYMBOL_GPL vmlinux 0xd15031c9 wbc_detach_inode EXPORT_SYMBOL_GPL vmlinux 0xd159586c net_prio_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xd1674d46 xen_dbgp_reset_prep EXPORT_SYMBOL_GPL vmlinux 0xd16a8cef __tracepoint_add_device_to_group -EXPORT_SYMBOL_GPL vmlinux 0xd173004a da9052_disable_irq_nosync -EXPORT_SYMBOL_GPL vmlinux 0xd17c30b5 regulator_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0xd16cd043 cgrp_dfl_root EXPORT_SYMBOL_GPL vmlinux 0xd17d2a22 phy_basic_features -EXPORT_SYMBOL_GPL vmlinux 0xd195fd99 mptcp_pm_get_subflows_max -EXPORT_SYMBOL_GPL vmlinux 0xd1987a05 crypto_inst_setname -EXPORT_SYMBOL_GPL vmlinux 0xd1a543f4 gpiod_set_raw_value -EXPORT_SYMBOL_GPL vmlinux 0xd1a9bc40 cpufreq_generic_attr +EXPORT_SYMBOL_GPL vmlinux 0xd184ff12 synth_event_trace_end +EXPORT_SYMBOL_GPL vmlinux 0xd1851ae4 dev_pm_clear_wake_irq EXPORT_SYMBOL_GPL vmlinux 0xd1a9ca15 __SCK__tp_func_neigh_update +EXPORT_SYMBOL_GPL vmlinux 0xd1be8a82 clk_regmap_gate_ops +EXPORT_SYMBOL_GPL vmlinux 0xd1c7d8cc __put_task_struct EXPORT_SYMBOL_GPL vmlinux 0xd1cbc23c add_timer_on -EXPORT_SYMBOL_GPL vmlinux 0xd1e124c9 powercap_unregister_control_type -EXPORT_SYMBOL_GPL vmlinux 0xd1ee7e96 of_irq_parse_and_map_pci -EXPORT_SYMBOL_GPL vmlinux 0xd1ef3bf9 pwm_put +EXPORT_SYMBOL_GPL vmlinux 0xd1dfa72a nf_nat_hook EXPORT_SYMBOL_GPL vmlinux 0xd1f2eee2 nf_logger_find_get +EXPORT_SYMBOL_GPL vmlinux 0xd1f898dc to_nd_region +EXPORT_SYMBOL_GPL vmlinux 0xd1fdc04d stmpe811_adc_common_init +EXPORT_SYMBOL_GPL vmlinux 0xd201afae __traceiter_devlink_hwerr +EXPORT_SYMBOL_GPL vmlinux 0xd20a17b7 bus_sort_breadthfirst 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 0xd232a358 rtc_initialize_alarm -EXPORT_SYMBOL_GPL vmlinux 0xd2415c2e device_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0xd234fbe6 ip6_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0xd2355f70 cpufreq_register_governor EXPORT_SYMBOL_GPL vmlinux 0xd2423f76 i2c_acpi_get_i2c_resource -EXPORT_SYMBOL_GPL vmlinux 0xd245d8c0 i2c_dw_validate_speed +EXPORT_SYMBOL_GPL vmlinux 0xd24b0d61 __raw_v4_lookup EXPORT_SYMBOL_GPL vmlinux 0xd24e9e8c klist_init -EXPORT_SYMBOL_GPL vmlinux 0xd25a1638 dev_pm_disable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xd255221b vcpu_load +EXPORT_SYMBOL_GPL vmlinux 0xd25cc143 gpiod_set_value_cansleep EXPORT_SYMBOL_GPL vmlinux 0xd260af0d ring_buffer_write +EXPORT_SYMBOL_GPL vmlinux 0xd260e6b6 crypto_unregister_kpp +EXPORT_SYMBOL_GPL vmlinux 0xd262af9f devm_free_pages +EXPORT_SYMBOL_GPL vmlinux 0xd26e2122 bio_trim EXPORT_SYMBOL_GPL vmlinux 0xd270e977 pci_bridge_emul_conf_write EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative EXPORT_SYMBOL_GPL vmlinux 0xd27f215d gnttab_alloc_grant_references -EXPORT_SYMBOL_GPL vmlinux 0xd2878dd9 eventfd_ctx_fileget -EXPORT_SYMBOL_GPL vmlinux 0xd28f3c8e usb_hcd_pci_pm_ops -EXPORT_SYMBOL_GPL vmlinux 0xd29844d1 __spi_alloc_controller -EXPORT_SYMBOL_GPL vmlinux 0xd2a054f1 tegra_bpmp_get -EXPORT_SYMBOL_GPL vmlinux 0xd2a3c4e9 tc3589x_block_write -EXPORT_SYMBOL_GPL vmlinux 0xd2a3fa19 debugfs_create_u32_array EXPORT_SYMBOL_GPL vmlinux 0xd2b10a05 ata_timing_find_mode -EXPORT_SYMBOL_GPL vmlinux 0xd2cafce0 rio_map_inb_region -EXPORT_SYMBOL_GPL vmlinux 0xd2d0bbf1 regmap_write -EXPORT_SYMBOL_GPL vmlinux 0xd2d13991 clk_hw_get_parent_index -EXPORT_SYMBOL_GPL vmlinux 0xd2f311ac fuse_dev_alloc -EXPORT_SYMBOL_GPL vmlinux 0xd303132e __devm_rtc_register_device -EXPORT_SYMBOL_GPL vmlinux 0xd3105a70 acpi_dev_add_driver_gpios +EXPORT_SYMBOL_GPL vmlinux 0xd2d40d46 acpi_subsys_prepare +EXPORT_SYMBOL_GPL vmlinux 0xd2d41237 key_type_trusted +EXPORT_SYMBOL_GPL vmlinux 0xd2e752c5 sdio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xd2fb6705 pci_epc_map_msi_irq +EXPORT_SYMBOL_GPL vmlinux 0xd3039340 devfreq_event_get_edev_count +EXPORT_SYMBOL_GPL vmlinux 0xd30f9aeb ping_rcv EXPORT_SYMBOL_GPL vmlinux 0xd31a2ac5 ring_buffer_oldest_event_ts +EXPORT_SYMBOL_GPL vmlinux 0xd31b4ed8 devlink_param_unpublish EXPORT_SYMBOL_GPL vmlinux 0xd320ebaf pci_epc_get_first_free_bar -EXPORT_SYMBOL_GPL vmlinux 0xd32bd3aa phy_restore_page +EXPORT_SYMBOL_GPL vmlinux 0xd3275c97 pm_runtime_autosuspend_expiration EXPORT_SYMBOL_GPL vmlinux 0xd33ada8b cci_probed -EXPORT_SYMBOL_GPL vmlinux 0xd3590a59 devlink_reload_disable -EXPORT_SYMBOL_GPL vmlinux 0xd35d28c4 nd_region_dev EXPORT_SYMBOL_GPL vmlinux 0xd36760ef __usb_get_extra_descriptor +EXPORT_SYMBOL_GPL vmlinux 0xd368c782 pci_d3cold_disable EXPORT_SYMBOL_GPL vmlinux 0xd3752c27 atomic_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xd37a7947 __devm_reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0xd37db3da rtc_class_open -EXPORT_SYMBOL_GPL vmlinux 0xd39a9131 __fscrypt_prepare_lookup EXPORT_SYMBOL_GPL vmlinux 0xd39e9848 put_itimerspec64 -EXPORT_SYMBOL_GPL vmlinux 0xd3b4010d devm_pm_opp_set_clkname -EXPORT_SYMBOL_GPL vmlinux 0xd3b7d1a7 mptcp_subflow_request_sock_ops -EXPORT_SYMBOL_GPL vmlinux 0xd3c74555 pinctrl_generic_add_group -EXPORT_SYMBOL_GPL vmlinux 0xd3ca68d2 devlink_dpipe_entry_ctx_append -EXPORT_SYMBOL_GPL vmlinux 0xd3e22132 fwnode_connection_find_match +EXPORT_SYMBOL_GPL vmlinux 0xd3b1cf01 __iomap_dio_rw +EXPORT_SYMBOL_GPL vmlinux 0xd3ba7b3c pm_genpd_add_device +EXPORT_SYMBOL_GPL vmlinux 0xd3c0f2f6 k3_ringacc_dmarings_init +EXPORT_SYMBOL_GPL vmlinux 0xd3c92984 blk_ksm_destroy +EXPORT_SYMBOL_GPL vmlinux 0xd3eb9bb0 pci_stop_root_bus EXPORT_SYMBOL_GPL vmlinux 0xd3ec851c __traceiter_unmap +EXPORT_SYMBOL_GPL vmlinux 0xd3ed8eb2 usb_put_dev EXPORT_SYMBOL_GPL vmlinux 0xd3f0cd42 misc_cg_res_total_usage -EXPORT_SYMBOL_GPL vmlinux 0xd3f5e07c regulator_get_mode -EXPORT_SYMBOL_GPL vmlinux 0xd3f72885 blk_mq_freeze_queue EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq -EXPORT_SYMBOL_GPL vmlinux 0xd409f698 stmpe_set_altfunc +EXPORT_SYMBOL_GPL vmlinux 0xd40d36ef unix_inq_len +EXPORT_SYMBOL_GPL vmlinux 0xd4188f14 crypto_register_scomp +EXPORT_SYMBOL_GPL vmlinux 0xd41e1279 __traceiter_pelt_thermal_tp +EXPORT_SYMBOL_GPL vmlinux 0xd420cb14 blk_queue_flag_test_and_set EXPORT_SYMBOL_GPL vmlinux 0xd426dbc4 erst_get_record_count -EXPORT_SYMBOL_GPL vmlinux 0xd42b0b9a ethnl_cable_test_free +EXPORT_SYMBOL_GPL vmlinux 0xd42a3586 platform_bus_type EXPORT_SYMBOL_GPL vmlinux 0xd42f1d4e show_rcu_tasks_rude_gp_kthread -EXPORT_SYMBOL_GPL vmlinux 0xd432089b validate_xmit_xfrm -EXPORT_SYMBOL_GPL vmlinux 0xd43defcc nfs_ssc_register -EXPORT_SYMBOL_GPL vmlinux 0xd44217a4 security_path_rmdir +EXPORT_SYMBOL_GPL vmlinux 0xd4351df6 usb_add_phy +EXPORT_SYMBOL_GPL vmlinux 0xd448fb62 md_new_event EXPORT_SYMBOL_GPL vmlinux 0xd44a5eac kgdb_register_nmi_console -EXPORT_SYMBOL_GPL vmlinux 0xd4565885 ata_host_suspend -EXPORT_SYMBOL_GPL vmlinux 0xd467ef54 irq_chip_eoi_parent +EXPORT_SYMBOL_GPL vmlinux 0xd45394c2 fsl_mc_free_irqs +EXPORT_SYMBOL_GPL vmlinux 0xd45d4401 mbox_client_txdone EXPORT_SYMBOL_GPL vmlinux 0xd46af5ef cppc_get_perf_ctrs -EXPORT_SYMBOL_GPL vmlinux 0xd48b0ed4 fuse_conn_destroy +EXPORT_SYMBOL_GPL vmlinux 0xd46d8ba8 iomap_zero_range +EXPORT_SYMBOL_GPL vmlinux 0xd4736c3b tps6586x_write +EXPORT_SYMBOL_GPL vmlinux 0xd48712e4 device_link_add EXPORT_SYMBOL_GPL vmlinux 0xd4935851 __SCK__tp_func_suspend_resume -EXPORT_SYMBOL_GPL vmlinux 0xd49be414 tps6586x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xd4a74b0f pci_set_pcie_reset_state -EXPORT_SYMBOL_GPL vmlinux 0xd4b1a190 meson_clk_pll_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0xd4b3cef4 hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd4a51d67 of_get_pci_domain_nr +EXPORT_SYMBOL_GPL vmlinux 0xd4aeef2c devm_extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0xd4b4df75 ata_std_postreset EXPORT_SYMBOL_GPL vmlinux 0xd4b6157e devlink_health_reporter_recovery_done -EXPORT_SYMBOL_GPL vmlinux 0xd4b71b4f __mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xd4b6f0a7 pskb_put EXPORT_SYMBOL_GPL vmlinux 0xd4b9a616 reset_control_bulk_put -EXPORT_SYMBOL_GPL vmlinux 0xd4bb150b dm_table_device_name EXPORT_SYMBOL_GPL vmlinux 0xd4c14632 system_unbound_wq -EXPORT_SYMBOL_GPL vmlinux 0xd4c6df18 tty_standard_install EXPORT_SYMBOL_GPL vmlinux 0xd4cbdbe3 __SCK__tp_func_devlink_trap_report -EXPORT_SYMBOL_GPL vmlinux 0xd4d7dbaf __irq_alloc_domain_generic_chips +EXPORT_SYMBOL_GPL vmlinux 0xd4ced62a free_fib_info +EXPORT_SYMBOL_GPL vmlinux 0xd4d692ad __fsl_mc_driver_register +EXPORT_SYMBOL_GPL vmlinux 0xd4d6b891 acpi_pci_check_ejectable EXPORT_SYMBOL_GPL vmlinux 0xd4e6d7e0 linear_range_get_value -EXPORT_SYMBOL_GPL vmlinux 0xd4e7863e ip6_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0xd4ead792 list_lru_count_one +EXPORT_SYMBOL_GPL vmlinux 0xd4eb655c dma_buf_get EXPORT_SYMBOL_GPL vmlinux 0xd4f5bfa5 iommu_queue_iopf -EXPORT_SYMBOL_GPL vmlinux 0xd5191142 sysfs_rename_link_ns -EXPORT_SYMBOL_GPL vmlinux 0xd51ae961 class_interface_register -EXPORT_SYMBOL_GPL vmlinux 0xd51b8c54 clk_hw_unregister_fixed_rate -EXPORT_SYMBOL_GPL vmlinux 0xd52e54c7 blk_mq_pci_map_queues +EXPORT_SYMBOL_GPL vmlinux 0xd5071d1d devlink_params_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd512af77 __pci_hp_register +EXPORT_SYMBOL_GPL vmlinux 0xd51ba0ad dm_device_name +EXPORT_SYMBOL_GPL vmlinux 0xd5224427 scsi_host_unblock +EXPORT_SYMBOL_GPL vmlinux 0xd527db73 mtk_pinconf_bias_set_combo EXPORT_SYMBOL_GPL vmlinux 0xd5301b2c linear_range_get_max_value -EXPORT_SYMBOL_GPL vmlinux 0xd536ed10 rtc_alarm_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0xd53208b9 pinctrl_generic_get_group_pins +EXPORT_SYMBOL_GPL vmlinux 0xd53a36a0 crypto_grab_akcipher EXPORT_SYMBOL_GPL vmlinux 0xd53c67b3 unregister_net_sysctl_table -EXPORT_SYMBOL_GPL vmlinux 0xd53f2355 mbox_client_peek_data +EXPORT_SYMBOL_GPL vmlinux 0xd544e23c xdp_rxq_info_reg_mem_model EXPORT_SYMBOL_GPL vmlinux 0xd5474690 usb_role_switch_set_role -EXPORT_SYMBOL_GPL vmlinux 0xd548ada4 clk_hw_get_flags -EXPORT_SYMBOL_GPL vmlinux 0xd54cb645 dw_pcie_own_conf_map_bus EXPORT_SYMBOL_GPL vmlinux 0xd55ad93b iommu_group_get_iommudata -EXPORT_SYMBOL_GPL vmlinux 0xd56471dc devlink_resources_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd564bd6e crypto_get_default_null_skcipher -EXPORT_SYMBOL_GPL vmlinux 0xd57b81dc device_get_match_data -EXPORT_SYMBOL_GPL vmlinux 0xd57c05fc regulator_set_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0xd55f809b fsl_mc_bus_dpcon_type +EXPORT_SYMBOL_GPL vmlinux 0xd57ba19c spi_unregister_controller EXPORT_SYMBOL_GPL vmlinux 0xd57fbd31 hwrng_unregister EXPORT_SYMBOL_GPL vmlinux 0xd5807af3 k3_ringacc_ring_pop -EXPORT_SYMBOL_GPL vmlinux 0xd59166d3 __inet_lookup_established EXPORT_SYMBOL_GPL vmlinux 0xd59a1587 linkmode_resolve_pause -EXPORT_SYMBOL_GPL vmlinux 0xd59da95b pinctrl_pm_select_idle_state -EXPORT_SYMBOL_GPL vmlinux 0xd5a57586 bio_alloc_kiocb -EXPORT_SYMBOL_GPL vmlinux 0xd5ada589 extcon_unregister_notifier_all -EXPORT_SYMBOL_GPL vmlinux 0xd5dc524e crypto_spawn_tfm2 -EXPORT_SYMBOL_GPL vmlinux 0xd5e20741 rio_request_inb_pwrite -EXPORT_SYMBOL_GPL vmlinux 0xd5e3a1cb public_key_subtype -EXPORT_SYMBOL_GPL vmlinux 0xd601ab2a crypto_register_instance -EXPORT_SYMBOL_GPL vmlinux 0xd6084003 pm_generic_suspend_noirq -EXPORT_SYMBOL_GPL vmlinux 0xd615fcaa usb_hcd_is_primary_hcd -EXPORT_SYMBOL_GPL vmlinux 0xd64488da device_match_any +EXPORT_SYMBOL_GPL vmlinux 0xd59fdd74 fib6_check_nexthop +EXPORT_SYMBOL_GPL vmlinux 0xd5c4b0a3 __devm_pci_epc_create +EXPORT_SYMBOL_GPL vmlinux 0xd5cb3f57 phy_pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0xd5dd907a of_get_display_timing +EXPORT_SYMBOL_GPL vmlinux 0xd5fcfd88 ata_host_alloc_pinfo +EXPORT_SYMBOL_GPL vmlinux 0xd6084e05 devlink_port_param_value_changed +EXPORT_SYMBOL_GPL vmlinux 0xd6474477 devlink_dpipe_headers_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd64a8f02 crypto_shash_update +EXPORT_SYMBOL_GPL vmlinux 0xd64cbb1b ping_hash EXPORT_SYMBOL_GPL vmlinux 0xd64ed259 __memcat_p -EXPORT_SYMBOL_GPL vmlinux 0xd6669a07 __sock_recv_ts_and_drops -EXPORT_SYMBOL_GPL vmlinux 0xd66e502b blk_add_driver_data +EXPORT_SYMBOL_GPL vmlinux 0xd64ef747 of_get_named_gpio_flags +EXPORT_SYMBOL_GPL vmlinux 0xd652b8e3 rtc_set_alarm EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget -EXPORT_SYMBOL_GPL vmlinux 0xd6897c3e skcipher_walk_complete -EXPORT_SYMBOL_GPL vmlinux 0xd689b945 sched_trace_rq_cpu_capacity -EXPORT_SYMBOL_GPL vmlinux 0xd69f8656 virtqueue_get_desc_addr -EXPORT_SYMBOL_GPL vmlinux 0xd6b52086 kill_dev_dax -EXPORT_SYMBOL_GPL vmlinux 0xd6c7a526 device_property_read_string -EXPORT_SYMBOL_GPL vmlinux 0xd6c983de device_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0xd6798908 metadata_dst_alloc +EXPORT_SYMBOL_GPL vmlinux 0xd689b787 rtc_read_time +EXPORT_SYMBOL_GPL vmlinux 0xd68fd4b0 usb_get_descriptor +EXPORT_SYMBOL_GPL vmlinux 0xd691e63f ata_wait_register +EXPORT_SYMBOL_GPL vmlinux 0xd6b64907 ip_local_out +EXPORT_SYMBOL_GPL vmlinux 0xd6b9ac48 nvdimm_cmd_mask +EXPORT_SYMBOL_GPL vmlinux 0xd6c1b37d pinmux_generic_get_function_count +EXPORT_SYMBOL_GPL vmlinux 0xd6ca877f devlink_resources_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd6ce530d usb_disable_ltm +EXPORT_SYMBOL_GPL vmlinux 0xd6d68650 vfs_kern_mount EXPORT_SYMBOL_GPL vmlinux 0xd6d8f6b3 topology_set_scale_freq_source -EXPORT_SYMBOL_GPL vmlinux 0xd6f1c375 attribute_container_register -EXPORT_SYMBOL_GPL vmlinux 0xd6f48043 kernfs_put -EXPORT_SYMBOL_GPL vmlinux 0xd7092151 led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd6dfa62e of_clk_get_parent_count +EXPORT_SYMBOL_GPL vmlinux 0xd6f30ffc mmc_send_status +EXPORT_SYMBOL_GPL vmlinux 0xd70cec2a fuse_dev_release +EXPORT_SYMBOL_GPL vmlinux 0xd71fec6c rio_request_dma EXPORT_SYMBOL_GPL vmlinux 0xd7269c64 osc_sb_native_usb4_control EXPORT_SYMBOL_GPL vmlinux 0xd7293ffc percpu_ref_reinit EXPORT_SYMBOL_GPL vmlinux 0xd72feba2 xenbus_read_driver_state +EXPORT_SYMBOL_GPL vmlinux 0xd7384c32 of_genpd_remove_subdomain EXPORT_SYMBOL_GPL vmlinux 0xd7399d2a efivar_entry_iter_end -EXPORT_SYMBOL_GPL vmlinux 0xd74bf876 fsl_mc_bus_dpmac_type -EXPORT_SYMBOL_GPL vmlinux 0xd754217f ata_sff_check_status -EXPORT_SYMBOL_GPL vmlinux 0xd754d48b rio_request_inb_dbell -EXPORT_SYMBOL_GPL vmlinux 0xd758aee0 noop_direct_IO +EXPORT_SYMBOL_GPL vmlinux 0xd73fbb69 xdp_rxq_info_is_reg +EXPORT_SYMBOL_GPL vmlinux 0xd7462170 da903x_writes +EXPORT_SYMBOL_GPL vmlinux 0xd74ebcf8 __traceiter_tcp_send_reset +EXPORT_SYMBOL_GPL vmlinux 0xd751d373 devfreq_event_remove_edev EXPORT_SYMBOL_GPL vmlinux 0xd75b20aa rsa_parse_priv_key -EXPORT_SYMBOL_GPL vmlinux 0xd761f171 pci_vpd_alloc +EXPORT_SYMBOL_GPL vmlinux 0xd7664eea __vfs_removexattr_locked EXPORT_SYMBOL_GPL vmlinux 0xd768e985 regulator_has_full_constraints -EXPORT_SYMBOL_GPL vmlinux 0xd76afee6 cpufreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0xd76a3b55 iommu_aux_get_pasid +EXPORT_SYMBOL_GPL vmlinux 0xd76e4457 sbitmap_show +EXPORT_SYMBOL_GPL vmlinux 0xd76f1872 thermal_cooling_device_register EXPORT_SYMBOL_GPL vmlinux 0xd774957d mpi_write_to_sgl -EXPORT_SYMBOL_GPL vmlinux 0xd77a2322 usb_put_dev -EXPORT_SYMBOL_GPL vmlinux 0xd78f661e regulator_set_current_limit_regmap -EXPORT_SYMBOL_GPL vmlinux 0xd79c95f0 metadata_dst_alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0xd7a2f4d2 edac_pci_free_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0xd77999da dev_pm_opp_put +EXPORT_SYMBOL_GPL vmlinux 0xd784751d tegra_bpmp_request_mrq +EXPORT_SYMBOL_GPL vmlinux 0xd78e10b6 dev_pm_domain_start +EXPORT_SYMBOL_GPL vmlinux 0xd7982738 devm_ti_sci_get_of_resource +EXPORT_SYMBOL_GPL vmlinux 0xd79ad12c skb_consume_udp +EXPORT_SYMBOL_GPL vmlinux 0xd79c9b08 power_supply_external_power_changed +EXPORT_SYMBOL_GPL vmlinux 0xd7a274c1 regulator_desc_list_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0xd7a9e97e crypto_ahash_setkey EXPORT_SYMBOL_GPL vmlinux 0xd7b5dfee xas_split EXPORT_SYMBOL_GPL vmlinux 0xd7b7fb80 pkcs7_validate_trust -EXPORT_SYMBOL_GPL vmlinux 0xd7bfe50f hisi_uncore_pmu_init_irq -EXPORT_SYMBOL_GPL vmlinux 0xd7c405c4 usb_alloc_coherent EXPORT_SYMBOL_GPL vmlinux 0xd7c91b63 tegra210_sata_pll_hw_control_enable EXPORT_SYMBOL_GPL vmlinux 0xd7cea889 edac_mod_work EXPORT_SYMBOL_GPL vmlinux 0xd7d7f2a7 devlink_port_health_reporter_destroy -EXPORT_SYMBOL_GPL vmlinux 0xd7d89c3e cpufreq_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0xd7db4d1c timer_unstable_counter_workaround EXPORT_SYMBOL_GPL vmlinux 0xd7dccd23 __SCK__tp_func_xhci_dbg_quirks -EXPORT_SYMBOL_GPL vmlinux 0xd7e062e8 acpi_pci_check_ejectable -EXPORT_SYMBOL_GPL vmlinux 0xd7efd7a4 inet_unhash -EXPORT_SYMBOL_GPL vmlinux 0xd807cd84 pm_generic_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0xd807e755 gnttab_unmap_refs -EXPORT_SYMBOL_GPL vmlinux 0xd81b6169 iommu_capable -EXPORT_SYMBOL_GPL vmlinux 0xd824c196 acpi_dev_resume -EXPORT_SYMBOL_GPL vmlinux 0xd83bc1a6 ata_host_resume -EXPORT_SYMBOL_GPL vmlinux 0xd84a902d scsi_host_block +EXPORT_SYMBOL_GPL vmlinux 0xd7f12755 pci_epc_destroy +EXPORT_SYMBOL_GPL vmlinux 0xd7f65ce3 phy_create +EXPORT_SYMBOL_GPL vmlinux 0xd801ca4f dpcon_enable +EXPORT_SYMBOL_GPL vmlinux 0xd8129ef6 devlink_port_params_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd812a133 spi_take_timestamp_post +EXPORT_SYMBOL_GPL vmlinux 0xd81899d9 fsl_mc_bus_dpbp_type +EXPORT_SYMBOL_GPL vmlinux 0xd8196ac1 blk_queue_max_zone_append_sectors +EXPORT_SYMBOL_GPL vmlinux 0xd81ad24e __clk_mux_determine_rate_closest +EXPORT_SYMBOL_GPL vmlinux 0xd825a789 dummy_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0xd83614dd ip6_local_out EXPORT_SYMBOL_GPL vmlinux 0xd84d35bd dax_read_lock -EXPORT_SYMBOL_GPL vmlinux 0xd8509d5a nvdimm_bus_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd852a1df vma_kernel_pagesize -EXPORT_SYMBOL_GPL vmlinux 0xd85456c4 xenbus_dev_probe -EXPORT_SYMBOL_GPL vmlinux 0xd8562fb6 ip6_append_data -EXPORT_SYMBOL_GPL vmlinux 0xd85cbc78 debugfs_remove -EXPORT_SYMBOL_GPL vmlinux 0xd86101b3 dev_pm_opp_set_clkname -EXPORT_SYMBOL_GPL vmlinux 0xd870889d hisi_clk_init -EXPORT_SYMBOL_GPL vmlinux 0xd87f777c mtk_paris_pinctrl_probe +EXPORT_SYMBOL_GPL vmlinux 0xd85c4a12 fuse_dax_cancel_work +EXPORT_SYMBOL_GPL vmlinux 0xd85c8e17 usb_get_dr_mode +EXPORT_SYMBOL_GPL vmlinux 0xd8703c34 pinctrl_generic_get_group_count +EXPORT_SYMBOL_GPL vmlinux 0xd874ed2c iomap_ioend_try_merge +EXPORT_SYMBOL_GPL vmlinux 0xd87e96da cn_add_callback EXPORT_SYMBOL_GPL vmlinux 0xd87fc0a0 usb_amd_prefetch_quirk -EXPORT_SYMBOL_GPL vmlinux 0xd895b073 power_supply_external_power_changed -EXPORT_SYMBOL_GPL vmlinux 0xd897c897 strp_done -EXPORT_SYMBOL_GPL vmlinux 0xd8a91d4c device_link_remove -EXPORT_SYMBOL_GPL vmlinux 0xd8c01393 devlink_port_type_eth_set -EXPORT_SYMBOL_GPL vmlinux 0xd8c03edb usb_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xd8911795 devm_nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0xd8ad8444 regmap_async_complete +EXPORT_SYMBOL_GPL vmlinux 0xd8c7a03e usb_hcd_amd_remote_wakeup_quirk +EXPORT_SYMBOL_GPL vmlinux 0xd8c961a5 cpufreq_driver_resolve_freq +EXPORT_SYMBOL_GPL vmlinux 0xd8cbaecb devm_clk_hw_register_fixed_factor EXPORT_SYMBOL_GPL vmlinux 0xd8d68ab1 dmi_memdev_type -EXPORT_SYMBOL_GPL vmlinux 0xd8dc8bda dpcon_enable -EXPORT_SYMBOL_GPL vmlinux 0xd8e22fea dw_pcie_ep_init_complete -EXPORT_SYMBOL_GPL vmlinux 0xd8e50535 fwnode_graph_get_port_parent -EXPORT_SYMBOL_GPL vmlinux 0xd8e69abc sprd_pinctrl_remove -EXPORT_SYMBOL_GPL vmlinux 0xd8ebd38e of_fdt_unflatten_tree -EXPORT_SYMBOL_GPL vmlinux 0xd8f4ff11 shash_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0xd8ddd5ce irq_chip_disable_parent EXPORT_SYMBOL_GPL vmlinux 0xd8fbb14d net_cls_cgrp_subsys_on_dfl_key EXPORT_SYMBOL_GPL vmlinux 0xd90a93a7 k3_udma_glue_rx_get_irq -EXPORT_SYMBOL_GPL vmlinux 0xd91ac2b2 blkcg_print_blkgs EXPORT_SYMBOL_GPL vmlinux 0xd91dbd1f xdp_alloc_skb_bulk +EXPORT_SYMBOL_GPL vmlinux 0xd91f4163 devm_gpiochip_add_data_with_key +EXPORT_SYMBOL_GPL vmlinux 0xd92dc647 handle_bad_irq +EXPORT_SYMBOL_GPL vmlinux 0xd92e7c01 ata_slave_link_init EXPORT_SYMBOL_GPL vmlinux 0xd92ef192 security_kernel_post_load_data EXPORT_SYMBOL_GPL vmlinux 0xd92f0791 leds_list_lock -EXPORT_SYMBOL_GPL vmlinux 0xd939828a ata_std_error_handler EXPORT_SYMBOL_GPL vmlinux 0xd93a5cb1 efivar_variable_is_removable -EXPORT_SYMBOL_GPL vmlinux 0xd953718f ata_bmdma32_port_ops -EXPORT_SYMBOL_GPL vmlinux 0xd9588371 sock_prot_inuse_add -EXPORT_SYMBOL_GPL vmlinux 0xd965ebe3 pci_epc_get_features +EXPORT_SYMBOL_GPL vmlinux 0xd9444ea7 sk_psock_drop +EXPORT_SYMBOL_GPL vmlinux 0xd94c077e dma_vmap_noncontiguous EXPORT_SYMBOL_GPL vmlinux 0xd96babb4 interval_tree_iter_next -EXPORT_SYMBOL_GPL vmlinux 0xd96c3c37 scsi_eh_ready_devs -EXPORT_SYMBOL_GPL vmlinux 0xd979bfc2 of_genpd_remove_subdomain -EXPORT_SYMBOL_GPL vmlinux 0xd97c80fb md_rdev_clear -EXPORT_SYMBOL_GPL vmlinux 0xd9829c3b pm_runtime_suspended_time -EXPORT_SYMBOL_GPL vmlinux 0xd98d1ef8 __devm_of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0xd96dea26 acpi_find_child_device +EXPORT_SYMBOL_GPL vmlinux 0xd976b2d6 regulator_get_error_flags +EXPORT_SYMBOL_GPL vmlinux 0xd97bf0fc pci_ecam_free EXPORT_SYMBOL_GPL vmlinux 0xd9916c3a idr_alloc_u32 -EXPORT_SYMBOL_GPL vmlinux 0xd9951ace ehci_hub_control -EXPORT_SYMBOL_GPL vmlinux 0xd9a2a7aa xhci_reset_bandwidth -EXPORT_SYMBOL_GPL vmlinux 0xd9ae8288 mddev_resume -EXPORT_SYMBOL_GPL vmlinux 0xd9af24fc register_asymmetric_key_parser -EXPORT_SYMBOL_GPL vmlinux 0xd9c9f1e6 vp_modern_set_queue_enable -EXPORT_SYMBOL_GPL vmlinux 0xd9d1a46e devm_irq_alloc_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0xd9df8cfe irq_domain_simple_ops +EXPORT_SYMBOL_GPL vmlinux 0xd99f3d5a regmap_get_val_endian +EXPORT_SYMBOL_GPL vmlinux 0xd9b276d3 dma_buf_unmap_attachment +EXPORT_SYMBOL_GPL vmlinux 0xd9df677d acpi_subsys_suspend EXPORT_SYMBOL_GPL vmlinux 0xd9e24457 ring_buffer_peek -EXPORT_SYMBOL_GPL vmlinux 0xd9e7ca3c led_classdev_suspend +EXPORT_SYMBOL_GPL vmlinux 0xd9ea98a7 pci_sriov_get_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0xd9f2d1e3 usb_role_switch_find_by_fwnode EXPORT_SYMBOL_GPL vmlinux 0xd9faa7a5 zynqmp_pm_set_pll_frac_mode -EXPORT_SYMBOL_GPL vmlinux 0xd9fe14f8 rio_request_outb_mbox EXPORT_SYMBOL_GPL vmlinux 0xd9ff2172 ezx_pcap_write -EXPORT_SYMBOL_GPL vmlinux 0xda091ea2 ata_bmdma_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0xda01878f dev_pm_genpd_suspend EXPORT_SYMBOL_GPL vmlinux 0xda0947de kmsg_dump_unregister -EXPORT_SYMBOL_GPL vmlinux 0xda11c3d9 regulator_get_current_limit -EXPORT_SYMBOL_GPL vmlinux 0xda19db05 hrtimer_sleeper_start_expires +EXPORT_SYMBOL_GPL vmlinux 0xda152303 ip6_pol_route +EXPORT_SYMBOL_GPL vmlinux 0xda179662 tty_kopen_shared +EXPORT_SYMBOL_GPL vmlinux 0xda19ffc3 ata_bmdma_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xda23a072 devm_phy_create +EXPORT_SYMBOL_GPL vmlinux 0xda2553fc usb_unlocked_enable_lpm EXPORT_SYMBOL_GPL vmlinux 0xda320d31 sfp_module_start -EXPORT_SYMBOL_GPL vmlinux 0xda463040 iommu_present -EXPORT_SYMBOL_GPL vmlinux 0xda46711d pcie_port_bus_type -EXPORT_SYMBOL_GPL vmlinux 0xda47ced1 splice_to_pipe -EXPORT_SYMBOL_GPL vmlinux 0xda4dc80d of_pci_parse_bus_range -EXPORT_SYMBOL_GPL vmlinux 0xda5568f4 ata_ehi_push_desc -EXPORT_SYMBOL_GPL vmlinux 0xda572afa blk_queue_zone_write_granularity -EXPORT_SYMBOL_GPL vmlinux 0xda6363b7 pm_wakeup_ws_event -EXPORT_SYMBOL_GPL vmlinux 0xda660e31 dev_pm_qos_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0xda6e0db4 tcp_enter_memory_pressure -EXPORT_SYMBOL_GPL vmlinux 0xda76406c usb_find_interface +EXPORT_SYMBOL_GPL vmlinux 0xda3d71de preempt_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xda5ded2d usb_autopm_put_interface_async +EXPORT_SYMBOL_GPL vmlinux 0xda6ff620 regulator_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0xda73a10a iomap_truncate_page +EXPORT_SYMBOL_GPL vmlinux 0xda73b2c4 __traceiter_detach_device_from_domain EXPORT_SYMBOL_GPL vmlinux 0xda7912d4 freq_qos_add_request -EXPORT_SYMBOL_GPL vmlinux 0xda799222 wm8350_reg_write -EXPORT_SYMBOL_GPL vmlinux 0xda7ef5a0 devlink_port_attrs_set -EXPORT_SYMBOL_GPL vmlinux 0xda89734a pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0xda839d97 vp_modern_remove +EXPORT_SYMBOL_GPL vmlinux 0xda844b42 rio_pw_enable +EXPORT_SYMBOL_GPL vmlinux 0xda87c01e serdev_controller_add EXPORT_SYMBOL_GPL vmlinux 0xda8e1302 software_node_find_by_name -EXPORT_SYMBOL_GPL vmlinux 0xda8f7df4 fs_dax_get_by_bdev -EXPORT_SYMBOL_GPL vmlinux 0xda95aa1b meson_pmx_get_funcs_count +EXPORT_SYMBOL_GPL vmlinux 0xda92ce07 perf_aux_output_end +EXPORT_SYMBOL_GPL vmlinux 0xda9c8933 addrconf_add_linklocal +EXPORT_SYMBOL_GPL vmlinux 0xdaa0454f ahash_register_instance EXPORT_SYMBOL_GPL vmlinux 0xdaa06dc1 acpi_lpat_raw_to_temp -EXPORT_SYMBOL_GPL vmlinux 0xdaa50824 xfrm_state_mtu -EXPORT_SYMBOL_GPL vmlinux 0xdab50040 crypto_unregister_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xdaa3c681 devlink_dpipe_table_counter_enabled +EXPORT_SYMBOL_GPL vmlinux 0xdaaea287 iommu_page_response EXPORT_SYMBOL_GPL vmlinux 0xdab5a1eb interval_tree_insert -EXPORT_SYMBOL_GPL vmlinux 0xdaece7e3 bpf_sk_storage_diag_put +EXPORT_SYMBOL_GPL vmlinux 0xdab7b5ef ata_bmdma_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0xdace15fd elv_rqhash_add +EXPORT_SYMBOL_GPL vmlinux 0xdad34cfa fwnode_graph_get_remote_port_parent +EXPORT_SYMBOL_GPL vmlinux 0xdad47420 iommu_uapi_cache_invalidate +EXPORT_SYMBOL_GPL vmlinux 0xdad6df5c led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdaf26b5e switchdev_handle_port_obj_del EXPORT_SYMBOL_GPL vmlinux 0xdaf4dfb3 fb_mode_option EXPORT_SYMBOL_GPL vmlinux 0xdaf5c16e __cookie_v4_check -EXPORT_SYMBOL_GPL vmlinux 0xdb00968c tty_port_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0xdb0fd50e em_dev_unregister_perf_domain -EXPORT_SYMBOL_GPL vmlinux 0xdb11bd19 extcon_set_state -EXPORT_SYMBOL_GPL vmlinux 0xdb27372f sata_scr_read -EXPORT_SYMBOL_GPL vmlinux 0xdb37ee38 serial8250_do_set_ldisc -EXPORT_SYMBOL_GPL vmlinux 0xdb561ddb __fscrypt_prepare_rename +EXPORT_SYMBOL_GPL vmlinux 0xdb000b44 usb_deregister +EXPORT_SYMBOL_GPL vmlinux 0xdb2ab117 iommu_device_unlink +EXPORT_SYMBOL_GPL vmlinux 0xdb380870 percpu_down_write +EXPORT_SYMBOL_GPL vmlinux 0xdb4c5f61 bio_end_io_acct_remapped +EXPORT_SYMBOL_GPL vmlinux 0xdb59f041 devm_init_badblocks +EXPORT_SYMBOL_GPL vmlinux 0xdb5d36c7 wakeup_source_unregister EXPORT_SYMBOL_GPL vmlinux 0xdb63a944 acpi_lpat_get_conversion_table EXPORT_SYMBOL_GPL vmlinux 0xdb82f71f sbitmap_init_node EXPORT_SYMBOL_GPL vmlinux 0xdb8a1b3f usermodehelper_read_trylock -EXPORT_SYMBOL_GPL vmlinux 0xdb8cc15c dm_noflush_suspending -EXPORT_SYMBOL_GPL vmlinux 0xdba4a3ac crypto_unregister_acomps -EXPORT_SYMBOL_GPL vmlinux 0xdbb25fc3 ata_scsi_change_queue_depth -EXPORT_SYMBOL_GPL vmlinux 0xdbb87d51 devm_of_phy_get -EXPORT_SYMBOL_GPL vmlinux 0xdbc0a589 of_irq_to_resource -EXPORT_SYMBOL_GPL vmlinux 0xdbd6bb43 kobj_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0xdb8e38e8 em_dev_register_perf_domain +EXPORT_SYMBOL_GPL vmlinux 0xdb9b9c3a regulator_desc_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0xdbc4515a sec_irq_init +EXPORT_SYMBOL_GPL vmlinux 0xdbc63f84 of_genpd_del_provider +EXPORT_SYMBOL_GPL vmlinux 0xdbc6c6d1 vfs_removexattr +EXPORT_SYMBOL_GPL vmlinux 0xdbd38653 tcp_ca_openreq_child EXPORT_SYMBOL_GPL vmlinux 0xdbdb0e8b request_any_context_irq -EXPORT_SYMBOL_GPL vmlinux 0xdbe35d65 regulator_map_voltage_ascend EXPORT_SYMBOL_GPL vmlinux 0xdbe8d8a0 __SCK__tp_func_cpu_frequency EXPORT_SYMBOL_GPL vmlinux 0xdbeeece6 tracepoint_probe_unregister -EXPORT_SYMBOL_GPL vmlinux 0xdbf7c137 blk_mq_queue_inflight +EXPORT_SYMBOL_GPL vmlinux 0xdbf0bf50 dax_iomap_fault +EXPORT_SYMBOL_GPL vmlinux 0xdbf7481c tpm_calc_ordinal_duration EXPORT_SYMBOL_GPL vmlinux 0xdbf7cb70 mpi_get_nbits +EXPORT_SYMBOL_GPL vmlinux 0xdbfe6fd7 nf_hook_entries_delete_raw EXPORT_SYMBOL_GPL vmlinux 0xdc02eb39 dmi_available +EXPORT_SYMBOL_GPL vmlinux 0xdc0f37e4 rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdc127ae4 regulator_set_voltage 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 0xdc20adcd dw_pcie_host_init -EXPORT_SYMBOL_GPL vmlinux 0xdc26a966 acpi_create_platform_device -EXPORT_SYMBOL_GPL vmlinux 0xdc299d01 rio_mport_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0xdc16f58b serial8250_init_port +EXPORT_SYMBOL_GPL vmlinux 0xdc1e288d blk_abort_request EXPORT_SYMBOL_GPL vmlinux 0xdc43bdc6 pci_vpd_find_ro_info_keyword EXPORT_SYMBOL_GPL vmlinux 0xdc45a5db edac_stop_work -EXPORT_SYMBOL_GPL vmlinux 0xdc575b97 devm_get_free_pages +EXPORT_SYMBOL_GPL vmlinux 0xdc566ba3 nvmem_cell_read_variable_le_u64 EXPORT_SYMBOL_GPL vmlinux 0xdc6596fa irq_set_parent +EXPORT_SYMBOL_GPL vmlinux 0xdc667b18 spi_mem_dirmap_read EXPORT_SYMBOL_GPL vmlinux 0xdc6699cb acpi_dev_free_resource_list +EXPORT_SYMBOL_GPL vmlinux 0xdc797db5 usb_free_urb 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 0xdc97af2e syscore_suspend -EXPORT_SYMBOL_GPL vmlinux 0xdc9c7109 irq_of_parse_and_map -EXPORT_SYMBOL_GPL vmlinux 0xdc9e74c8 devm_power_supply_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xdc9e37e2 clk_hw_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xdc9e9a42 dma_can_mmap EXPORT_SYMBOL_GPL vmlinux 0xdc9fa232 raw_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0xdca1e1c2 pinctrl_get -EXPORT_SYMBOL_GPL vmlinux 0xdcbf0843 ata_sas_async_probe -EXPORT_SYMBOL_GPL vmlinux 0xdccc7740 ata_sas_scsi_ioctl -EXPORT_SYMBOL_GPL vmlinux 0xdcdbfa66 regulator_set_pull_down_regmap -EXPORT_SYMBOL_GPL vmlinux 0xdd006f97 acpi_dma_request_slave_chan_by_index +EXPORT_SYMBOL_GPL vmlinux 0xdcb53c43 otg_ulpi_create +EXPORT_SYMBOL_GPL vmlinux 0xdcb7f9c8 serial8250_read_char +EXPORT_SYMBOL_GPL vmlinux 0xdcb8b351 led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0xdcb965e0 spi_mem_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdcbd954a virtqueue_enable_cb +EXPORT_SYMBOL_GPL vmlinux 0xdcc822d2 iomap_file_unshare +EXPORT_SYMBOL_GPL vmlinux 0xdcea8472 iomap_file_buffered_write EXPORT_SYMBOL_GPL vmlinux 0xdd0762df set_worker_desc -EXPORT_SYMBOL_GPL vmlinux 0xdd1107e9 phy_led_triggers_register -EXPORT_SYMBOL_GPL vmlinux 0xdd1c2ac8 dev_pm_opp_of_find_icc_paths -EXPORT_SYMBOL_GPL vmlinux 0xdd26b962 gpiod_get_from_of_node -EXPORT_SYMBOL_GPL vmlinux 0xdd35c5a0 aead_init_geniv +EXPORT_SYMBOL_GPL vmlinux 0xdd125ddd devlink_register +EXPORT_SYMBOL_GPL vmlinux 0xdd20ff29 task_cls_state +EXPORT_SYMBOL_GPL vmlinux 0xdd2359aa edac_pci_add_device +EXPORT_SYMBOL_GPL vmlinux 0xdd3896f8 iommu_uapi_sva_bind_gpasid EXPORT_SYMBOL_GPL vmlinux 0xdd391eff profile_event_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdd3a3937 of_pci_range_parser_one +EXPORT_SYMBOL_GPL vmlinux 0xdd42f7ae i2c_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xdd4db650 ohci_hub_status_data +EXPORT_SYMBOL_GPL vmlinux 0xdd4de91c mtk_eint_do_resume +EXPORT_SYMBOL_GPL vmlinux 0xdd55358b __clk_hw_register_gate +EXPORT_SYMBOL_GPL vmlinux 0xdd5c917d irq_domain_disconnect_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0xdd602973 sdio_readl EXPORT_SYMBOL_GPL vmlinux 0xdd626ee3 fuse_len_args +EXPORT_SYMBOL_GPL vmlinux 0xdd659f6f devlink_dpipe_action_put EXPORT_SYMBOL_GPL vmlinux 0xdd6ddcec __traceiter_error_report_end EXPORT_SYMBOL_GPL vmlinux 0xdd81d8f6 __SCK__tp_func_block_bio_complete -EXPORT_SYMBOL_GPL vmlinux 0xdd88f7a4 dev_pm_opp_find_freq_ceil_by_volt -EXPORT_SYMBOL_GPL vmlinux 0xdd951c5a ata_cable_unknown -EXPORT_SYMBOL_GPL vmlinux 0xddaede4d usb_get_maximum_speed +EXPORT_SYMBOL_GPL vmlinux 0xdd8c68b7 of_genpd_parse_idle_states +EXPORT_SYMBOL_GPL vmlinux 0xdd9b2b88 sata_link_debounce +EXPORT_SYMBOL_GPL vmlinux 0xdd9f31cf clk_hw_get_rate +EXPORT_SYMBOL_GPL vmlinux 0xdda6d5a1 fsl_mc_device_add +EXPORT_SYMBOL_GPL vmlinux 0xddaaff15 pwm_get_chip_data +EXPORT_SYMBOL_GPL vmlinux 0xddae9a07 get_user_pages_fast_only EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove -EXPORT_SYMBOL_GPL vmlinux 0xddc1545e iommu_device_unlink -EXPORT_SYMBOL_GPL vmlinux 0xddc18df5 sdev_evt_send_simple -EXPORT_SYMBOL_GPL vmlinux 0xddc2ae31 iomap_zero_range -EXPORT_SYMBOL_GPL vmlinux 0xddeb41f1 lwtstate_free +EXPORT_SYMBOL_GPL vmlinux 0xddd149b0 fib4_rule_default +EXPORT_SYMBOL_GPL vmlinux 0xdddfb302 pm_clk_destroy +EXPORT_SYMBOL_GPL vmlinux 0xdde1fb58 of_irq_get_byname EXPORT_SYMBOL_GPL vmlinux 0xddf32520 __tracepoint_powernv_throttle -EXPORT_SYMBOL_GPL vmlinux 0xddfa37a9 pci_pri_supported +EXPORT_SYMBOL_GPL vmlinux 0xde0216ce balloon_page_list_enqueue +EXPORT_SYMBOL_GPL vmlinux 0xde078e1d loop_backing_file EXPORT_SYMBOL_GPL vmlinux 0xde09a94d xas_find -EXPORT_SYMBOL_GPL vmlinux 0xde09cf30 invalidate_inode_pages2_range -EXPORT_SYMBOL_GPL vmlinux 0xde0c43c1 regulator_list_voltage_pickable_linear_range -EXPORT_SYMBOL_GPL vmlinux 0xde2c50eb debugfs_create_u64 -EXPORT_SYMBOL_GPL vmlinux 0xde474604 gnttab_page_cache_get -EXPORT_SYMBOL_GPL vmlinux 0xde532807 rtc_read_time -EXPORT_SYMBOL_GPL vmlinux 0xde56f1f2 fsl_mc_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xde1f466c kvm_irq_has_notifier +EXPORT_SYMBOL_GPL vmlinux 0xde1fe2b1 cpufreq_cpu_get_raw +EXPORT_SYMBOL_GPL vmlinux 0xde271f22 i2c_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xde4f5b99 gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0xde6769a2 pci_ecam_create +EXPORT_SYMBOL_GPL vmlinux 0xde69291a led_classdev_resume EXPORT_SYMBOL_GPL vmlinux 0xde6f1851 TSS_checkhmac1 -EXPORT_SYMBOL_GPL vmlinux 0xde8af68a iommu_attach_group -EXPORT_SYMBOL_GPL vmlinux 0xde8bb6b5 tpm_tis_core_init -EXPORT_SYMBOL_GPL vmlinux 0xde8be5ff kernel_read_file +EXPORT_SYMBOL_GPL vmlinux 0xde74bd67 dev_pm_opp_of_add_table_noclk +EXPORT_SYMBOL_GPL vmlinux 0xde94e736 scsi_nl_sock EXPORT_SYMBOL_GPL vmlinux 0xde9ab8c7 xenbus_rm -EXPORT_SYMBOL_GPL vmlinux 0xdeabfaa3 powercap_unregister_zone -EXPORT_SYMBOL_GPL vmlinux 0xdead644d ahci_reset_em -EXPORT_SYMBOL_GPL vmlinux 0xdeb3e6f1 i2c_detect_slave_mode -EXPORT_SYMBOL_GPL vmlinux 0xdecdb477 d_walk -EXPORT_SYMBOL_GPL vmlinux 0xded83b0e blkg_rwstat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0xdec663cb vp_modern_map_vq_notify +EXPORT_SYMBOL_GPL vmlinux 0xdec668e7 acpi_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xdecd8947 usb_hcd_pci_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0xded87310 gpiochip_get_desc EXPORT_SYMBOL_GPL vmlinux 0xdeffa0a7 edac_raw_mc_handle_error -EXPORT_SYMBOL_GPL vmlinux 0xdf073ff7 crypto_default_rng +EXPORT_SYMBOL_GPL vmlinux 0xdf02b711 debugfs_file_get +EXPORT_SYMBOL_GPL vmlinux 0xdf062e41 mmc_get_ext_csd EXPORT_SYMBOL_GPL vmlinux 0xdf0ca3f4 cpu_latency_qos_request_active +EXPORT_SYMBOL_GPL vmlinux 0xdf0f6dea ima_file_check EXPORT_SYMBOL_GPL vmlinux 0xdf0f75c6 eventfd_signal -EXPORT_SYMBOL_GPL vmlinux 0xdf1dc443 dev_pm_put_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0xdf21dfc9 pci_ioremap_bar +EXPORT_SYMBOL_GPL vmlinux 0xdf26bae2 clk_regmap_mux_ro_ops EXPORT_SYMBOL_GPL vmlinux 0xdf2738bb cpu_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xdf2851cc nvdimm_delete -EXPORT_SYMBOL_GPL vmlinux 0xdf2ec2e4 lwtunnel_get_encap_size -EXPORT_SYMBOL_GPL vmlinux 0xdf3016f0 ncsi_stop_dev -EXPORT_SYMBOL_GPL vmlinux 0xdf411881 devm_qcom_smem_state_get +EXPORT_SYMBOL_GPL vmlinux 0xdf3d87ae crypto_unregister_algs +EXPORT_SYMBOL_GPL vmlinux 0xdf43e30f crypto_enqueue_request_head EXPORT_SYMBOL_GPL vmlinux 0xdf448d1c fanout_mutex -EXPORT_SYMBOL_GPL vmlinux 0xdf4f9a74 pci_msi_create_irq_domain -EXPORT_SYMBOL_GPL vmlinux 0xdf508c44 pci_epf_destroy -EXPORT_SYMBOL_GPL vmlinux 0xdf6d23da regulator_set_voltage_rdev -EXPORT_SYMBOL_GPL vmlinux 0xdf733fd4 sk_msg_zerocopy_from_iter -EXPORT_SYMBOL_GPL vmlinux 0xdf8212b1 scsi_internal_device_unblock_nowait -EXPORT_SYMBOL_GPL vmlinux 0xdf8a65bb bus_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xdf8ae042 relay_subbufs_consumed -EXPORT_SYMBOL_GPL vmlinux 0xdfaffd0c tty_ldisc_deref -EXPORT_SYMBOL_GPL vmlinux 0xdfb9f608 __platform_driver_register -EXPORT_SYMBOL_GPL vmlinux 0xdfbf8dee ata_common_sdev_attrs +EXPORT_SYMBOL_GPL vmlinux 0xdf48f26a devm_clk_bulk_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xdf4eb881 crypto_stats_akcipher_verify +EXPORT_SYMBOL_GPL vmlinux 0xdf66012e dm_internal_resume_fast +EXPORT_SYMBOL_GPL vmlinux 0xdf762701 l3mdev_update_flow +EXPORT_SYMBOL_GPL vmlinux 0xdf7aa955 regulator_bulk_force_disable +EXPORT_SYMBOL_GPL vmlinux 0xdf8798c9 scmi_protocol_register +EXPORT_SYMBOL_GPL vmlinux 0xdf8b674b gnttab_pages_set_private +EXPORT_SYMBOL_GPL vmlinux 0xdf974675 device_get_child_node_count +EXPORT_SYMBOL_GPL vmlinux 0xdf98e152 devlink_trap_groups_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdf9adc6e devlink_trap_policers_register +EXPORT_SYMBOL_GPL vmlinux 0xdfaaec21 rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0xdfac30d7 __traceiter_neigh_event_send_dead +EXPORT_SYMBOL_GPL vmlinux 0xdfc0addd crypto_hash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0xdfc37ae8 of_thermal_get_ntrips EXPORT_SYMBOL_GPL vmlinux 0xdfcb6c90 mctrl_gpio_set -EXPORT_SYMBOL_GPL vmlinux 0xdfe44b79 bgpio_init -EXPORT_SYMBOL_GPL vmlinux 0xdfecf7db dev_pm_opp_of_register_em -EXPORT_SYMBOL_GPL vmlinux 0xdff522bd kthread_cancel_delayed_work_sync -EXPORT_SYMBOL_GPL vmlinux 0xe00dc0c7 dm_send_uevents -EXPORT_SYMBOL_GPL vmlinux 0xe00faac2 ahci_kick_engine -EXPORT_SYMBOL_GPL vmlinux 0xe011c151 regulator_map_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0xdfcc2267 crypto_shoot_alg +EXPORT_SYMBOL_GPL vmlinux 0xdfd60efb __ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0xdfe9c96b devlink_rate_nodes_destroy +EXPORT_SYMBOL_GPL vmlinux 0xe0177638 pwm_request EXPORT_SYMBOL_GPL vmlinux 0xe01f4cb0 irq_force_affinity +EXPORT_SYMBOL_GPL vmlinux 0xe020b76f dev_pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0xe025f1dd netdev_rx_handler_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe029a2c0 ahci_host_activate +EXPORT_SYMBOL_GPL vmlinux 0xe02a29eb crypto_stats_rng_generate EXPORT_SYMBOL_GPL vmlinux 0xe0313d71 rhashtable_insert_slow -EXPORT_SYMBOL_GPL vmlinux 0xe032cd0d tps6586x_writes -EXPORT_SYMBOL_GPL vmlinux 0xe0346921 pinctrl_generic_remove_group -EXPORT_SYMBOL_GPL vmlinux 0xe03c23f5 fsl_mc_resource_allocate +EXPORT_SYMBOL_GPL vmlinux 0xe037819c usb_hcd_unmap_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0xe0378209 vp_modern_set_features +EXPORT_SYMBOL_GPL vmlinux 0xe05a2c24 relay_file_operations EXPORT_SYMBOL_GPL vmlinux 0xe05e2f85 nexthop_free_rcu -EXPORT_SYMBOL_GPL vmlinux 0xe05eae4b platform_device_add_resources -EXPORT_SYMBOL_GPL vmlinux 0xe065e7ff led_sysfs_enable -EXPORT_SYMBOL_GPL vmlinux 0xe073ea0d fsl_mc_bus_dpaiop_type -EXPORT_SYMBOL_GPL vmlinux 0xe07fea1e pm_generic_poweroff_noirq -EXPORT_SYMBOL_GPL vmlinux 0xe081d908 inet_csk_listen_start -EXPORT_SYMBOL_GPL vmlinux 0xe08d4280 wm831x_auxadc_read -EXPORT_SYMBOL_GPL vmlinux 0xe09c4db6 __percpu_init_rwsem -EXPORT_SYMBOL_GPL vmlinux 0xe0a1f42c i2c_new_client_device -EXPORT_SYMBOL_GPL vmlinux 0xe0a27fd9 crypto_alg_mod_lookup +EXPORT_SYMBOL_GPL vmlinux 0xe06f9937 gpiochip_add_pingroup_range +EXPORT_SYMBOL_GPL vmlinux 0xe07d7ea5 irq_create_mapping_affinity +EXPORT_SYMBOL_GPL vmlinux 0xe0adc3e6 efivar_entry_find +EXPORT_SYMBOL_GPL vmlinux 0xe0addcae cpufreq_freq_transition_end EXPORT_SYMBOL_GPL vmlinux 0xe0b1c103 clk_set_max_rate -EXPORT_SYMBOL_GPL vmlinux 0xe0b9d155 rio_release_inb_pwrite -EXPORT_SYMBOL_GPL vmlinux 0xe0d217f4 clk_divider_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0xe0d2c94a crypto_stats_ahash_final -EXPORT_SYMBOL_GPL vmlinux 0xe0d41a87 crypto_grab_shash -EXPORT_SYMBOL_GPL vmlinux 0xe0d4566a ip6_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0xe0e18d8b sdio_f0_readb +EXPORT_SYMBOL_GPL vmlinux 0xe0c1f02f mmc_crypto_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0xe0cda47f irq_gc_mask_set_bit +EXPORT_SYMBOL_GPL vmlinux 0xe0d0772d extcon_get_extcon_dev +EXPORT_SYMBOL_GPL vmlinux 0xe0d49e74 __account_locked_vm +EXPORT_SYMBOL_GPL vmlinux 0xe0de465a da9052_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0xe0e2d4d2 pm_clk_add_notifier EXPORT_SYMBOL_GPL vmlinux 0xe0e3147c HYPERVISOR_sched_op -EXPORT_SYMBOL_GPL vmlinux 0xe0e323b4 nd_blk_memremap_flags -EXPORT_SYMBOL_GPL vmlinux 0xe0e8bfb0 device_store_int -EXPORT_SYMBOL_GPL vmlinux 0xe0e906f0 input_ff_flush +EXPORT_SYMBOL_GPL vmlinux 0xe0e439ab transport_remove_device +EXPORT_SYMBOL_GPL vmlinux 0xe0e47180 ata_common_sdev_attrs +EXPORT_SYMBOL_GPL vmlinux 0xe0fde332 devm_remove_action +EXPORT_SYMBOL_GPL vmlinux 0xe10019c9 dm_internal_suspend_noflush +EXPORT_SYMBOL_GPL vmlinux 0xe1034120 unregister_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xe104ab65 pci_assign_unassigned_bridge_resources EXPORT_SYMBOL_GPL vmlinux 0xe10cd6ad erst_get_record_id_begin -EXPORT_SYMBOL_GPL vmlinux 0xe10d8a2d ata_cable_40wire -EXPORT_SYMBOL_GPL vmlinux 0xe11f926f usb_role_switch_get -EXPORT_SYMBOL_GPL vmlinux 0xe12b6e26 serial8250_em485_start_tx -EXPORT_SYMBOL_GPL vmlinux 0xe1337458 da9052_adc_manual_read -EXPORT_SYMBOL_GPL vmlinux 0xe164c5d5 rio_dma_prep_xfer +EXPORT_SYMBOL_GPL vmlinux 0xe10f5c5d fat_free_clusters +EXPORT_SYMBOL_GPL vmlinux 0xe11358d6 watchdog_set_last_hw_keepalive +EXPORT_SYMBOL_GPL vmlinux 0xe156b5b9 iommu_sva_free_pasid +EXPORT_SYMBOL_GPL vmlinux 0xe166de87 devfreq_event_disable_edev +EXPORT_SYMBOL_GPL vmlinux 0xe170ee23 nvdimm_bus_unregister EXPORT_SYMBOL_GPL vmlinux 0xe1775ee7 dm_get_reserved_bio_based_ios -EXPORT_SYMBOL_GPL vmlinux 0xe179591b find_get_pid -EXPORT_SYMBOL_GPL vmlinux 0xe179c025 device_property_read_u32_array -EXPORT_SYMBOL_GPL vmlinux 0xe17d60eb icmp_build_probe -EXPORT_SYMBOL_GPL vmlinux 0xe1800366 ahci_set_em_messages -EXPORT_SYMBOL_GPL vmlinux 0xe188bcee devm_device_remove_group -EXPORT_SYMBOL_GPL vmlinux 0xe18937f4 tpm_pcr_extend -EXPORT_SYMBOL_GPL vmlinux 0xe19c5482 regcache_cache_bypass -EXPORT_SYMBOL_GPL vmlinux 0xe1a17a8d hisi_uncore_pmu_disable -EXPORT_SYMBOL_GPL vmlinux 0xe1a209e9 of_clk_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0xe17a0833 usb_driver_claim_interface +EXPORT_SYMBOL_GPL vmlinux 0xe17d4b4e kernel_read_file +EXPORT_SYMBOL_GPL vmlinux 0xe19d746e regmap_raw_write_async +EXPORT_SYMBOL_GPL vmlinux 0xe19f80fa edac_mc_del_mc +EXPORT_SYMBOL_GPL vmlinux 0xe1a6eace usb_role_switch_get EXPORT_SYMBOL_GPL vmlinux 0xe1a8d7c9 net_rwsem -EXPORT_SYMBOL_GPL vmlinux 0xe1b843f5 pinctrl_lookup_state -EXPORT_SYMBOL_GPL vmlinux 0xe1b88cb2 skb_mpls_update_lse EXPORT_SYMBOL_GPL vmlinux 0xe1bd6c99 rio_init_mports +EXPORT_SYMBOL_GPL vmlinux 0xe1bd8136 __rio_local_read_config_8 EXPORT_SYMBOL_GPL vmlinux 0xe1c63523 blk_ksm_get_slot_idx -EXPORT_SYMBOL_GPL vmlinux 0xe1cd55a4 dm_get_queue_limits -EXPORT_SYMBOL_GPL vmlinux 0xe2017266 usb_sg_wait -EXPORT_SYMBOL_GPL vmlinux 0xe2070576 extcon_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xe20de19a of_pwm_xlate_with_flags -EXPORT_SYMBOL_GPL vmlinux 0xe210a3f9 hwspin_lock_get_id -EXPORT_SYMBOL_GPL vmlinux 0xe21b88ae crypto_remove_spawns -EXPORT_SYMBOL_GPL vmlinux 0xe21d66d1 shmem_file_setup_with_mnt -EXPORT_SYMBOL_GPL vmlinux 0xe22a56ca pci_bridge_secondary_bus_reset +EXPORT_SYMBOL_GPL vmlinux 0xe1c8fff3 rio_free_net +EXPORT_SYMBOL_GPL vmlinux 0xe1cab3eb espintcp_queue_out +EXPORT_SYMBOL_GPL vmlinux 0xe1e02b29 dm_hold +EXPORT_SYMBOL_GPL vmlinux 0xe1e5c629 tpm2_get_cc_attrs_tbl +EXPORT_SYMBOL_GPL vmlinux 0xe1e70d85 __clocksource_update_freq_scale +EXPORT_SYMBOL_GPL vmlinux 0xe228e01b tcp_register_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0xe22c9b1a bus_rescan_devices +EXPORT_SYMBOL_GPL vmlinux 0xe22fa286 sata_scr_valid EXPORT_SYMBOL_GPL vmlinux 0xe233762a input_event_from_user -EXPORT_SYMBOL_GPL vmlinux 0xe2365f59 init_user_ns -EXPORT_SYMBOL_GPL vmlinux 0xe2370426 generic_fh_to_dentry -EXPORT_SYMBOL_GPL vmlinux 0xe23d8378 dma_buf_unmap_attachment -EXPORT_SYMBOL_GPL vmlinux 0xe24e3a4e amba_device_add -EXPORT_SYMBOL_GPL vmlinux 0xe24fd792 __devm_regmap_init +EXPORT_SYMBOL_GPL vmlinux 0xe23bb6a5 tracing_snapshot_cond +EXPORT_SYMBOL_GPL vmlinux 0xe24151d9 find_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0xe24f1369 fat_add_entries EXPORT_SYMBOL_GPL vmlinux 0xe25d23f3 blocking_notifier_call_chain_robust -EXPORT_SYMBOL_GPL vmlinux 0xe266211a task_user_regset_view -EXPORT_SYMBOL_GPL vmlinux 0xe2667e71 spi_finalize_current_message -EXPORT_SYMBOL_GPL vmlinux 0xe270bdc7 skb_splice_bits -EXPORT_SYMBOL_GPL vmlinux 0xe27ca023 meson_clk_dualdiv_ops -EXPORT_SYMBOL_GPL vmlinux 0xe27ccd94 wait_for_stable_page -EXPORT_SYMBOL_GPL vmlinux 0xe27f62d0 md_account_bio -EXPORT_SYMBOL_GPL vmlinux 0xe299c35e acpi_register_gsi -EXPORT_SYMBOL_GPL vmlinux 0xe2a96286 key_type_encrypted -EXPORT_SYMBOL_GPL vmlinux 0xe2add1a4 devm_hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe27ba2fe usb_hub_release_port +EXPORT_SYMBOL_GPL vmlinux 0xe286fedf serial8250_do_get_mctrl +EXPORT_SYMBOL_GPL vmlinux 0xe289cd65 kvm_read_guest +EXPORT_SYMBOL_GPL vmlinux 0xe28efddb led_classdev_notify_brightness_hw_changed +EXPORT_SYMBOL_GPL vmlinux 0xe294fc3c led_set_brightness EXPORT_SYMBOL_GPL vmlinux 0xe2b3207a unregister_switchdev_notifier -EXPORT_SYMBOL_GPL vmlinux 0xe2bb7bcb input_ff_destroy -EXPORT_SYMBOL_GPL vmlinux 0xe2c99d90 usb_intf_get_dma_device +EXPORT_SYMBOL_GPL vmlinux 0xe2c95ded crypto_destroy_tfm EXPORT_SYMBOL_GPL vmlinux 0xe2ce2b4d evm_set_key -EXPORT_SYMBOL_GPL vmlinux 0xe2e011c4 pci_disable_rom -EXPORT_SYMBOL_GPL vmlinux 0xe2e1e744 to_nvdimm -EXPORT_SYMBOL_GPL vmlinux 0xe3105851 of_css +EXPORT_SYMBOL_GPL vmlinux 0xe2d145e3 access_process_vm +EXPORT_SYMBOL_GPL vmlinux 0xe2d4871d ata_sff_busy_sleep +EXPORT_SYMBOL_GPL vmlinux 0xe2da4b13 tc3589x_block_read +EXPORT_SYMBOL_GPL vmlinux 0xe2e888a9 __get_task_comm +EXPORT_SYMBOL_GPL vmlinux 0xe30cb93b ata_acpi_gtm EXPORT_SYMBOL_GPL vmlinux 0xe31315a4 spi_delay_exec -EXPORT_SYMBOL_GPL vmlinux 0xe31787cd kthread_unpark -EXPORT_SYMBOL_GPL vmlinux 0xe31c89f4 spi_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0xe31e0d39 sysfs_change_owner -EXPORT_SYMBOL_GPL vmlinux 0xe331ebf2 elv_register +EXPORT_SYMBOL_GPL vmlinux 0xe316be97 em_dev_unregister_perf_domain +EXPORT_SYMBOL_GPL vmlinux 0xe3226b9b __sock_recv_timestamp +EXPORT_SYMBOL_GPL vmlinux 0xe3345b55 platform_device_add +EXPORT_SYMBOL_GPL vmlinux 0xe3351e89 device_add_software_node EXPORT_SYMBOL_GPL vmlinux 0xe338c5ac inet_hashinfo2_init_mod -EXPORT_SYMBOL_GPL vmlinux 0xe3584cde irq_domain_update_bus_token -EXPORT_SYMBOL_GPL vmlinux 0xe3595a38 sk_msg_is_readable -EXPORT_SYMBOL_GPL vmlinux 0xe3620f9d ata_sff_tf_read -EXPORT_SYMBOL_GPL vmlinux 0xe3792661 locks_release_private -EXPORT_SYMBOL_GPL vmlinux 0xe37b2d19 sysfs_create_link -EXPORT_SYMBOL_GPL vmlinux 0xe38d0417 skb_zerocopy_iter_stream +EXPORT_SYMBOL_GPL vmlinux 0xe33dbc3c mmc_cmdq_enable +EXPORT_SYMBOL_GPL vmlinux 0xe34184a4 mbox_request_channel_byname +EXPORT_SYMBOL_GPL vmlinux 0xe35bcd2c phy_driver_is_genphy_10g +EXPORT_SYMBOL_GPL vmlinux 0xe35c4b19 devlink_dpipe_match_put +EXPORT_SYMBOL_GPL vmlinux 0xe35f3d41 regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0xe35fcb72 virtqueue_notify +EXPORT_SYMBOL_GPL vmlinux 0xe3771c15 mptcp_pm_get_add_addr_accept_max +EXPORT_SYMBOL_GPL vmlinux 0xe380923c tps65912_regmap_config EXPORT_SYMBOL_GPL vmlinux 0xe397caf5 seq_buf_printf EXPORT_SYMBOL_GPL vmlinux 0xe39d0794 usb_phy_roothub_exit -EXPORT_SYMBOL_GPL vmlinux 0xe3a1a7e7 pci_ecam_create -EXPORT_SYMBOL_GPL vmlinux 0xe3a6b9ba sched_trace_rq_cpu +EXPORT_SYMBOL_GPL vmlinux 0xe3a457c1 kill_device +EXPORT_SYMBOL_GPL vmlinux 0xe3a5bc5c of_icc_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0xe3a7524c clk_hw_get_num_parents EXPORT_SYMBOL_GPL vmlinux 0xe3b09712 kprobe_event_delete +EXPORT_SYMBOL_GPL vmlinux 0xe3caaace tegra_bpmp_free_mrq EXPORT_SYMBOL_GPL vmlinux 0xe3cd5fae klist_iter_init -EXPORT_SYMBOL_GPL vmlinux 0xe3d292d9 debugfs_create_regset32 -EXPORT_SYMBOL_GPL vmlinux 0xe3d8a8aa tty_port_tty_hangup -EXPORT_SYMBOL_GPL vmlinux 0xe3dab27b __traceiter_neigh_update -EXPORT_SYMBOL_GPL vmlinux 0xe3e05a44 sdio_readb -EXPORT_SYMBOL_GPL vmlinux 0xe4054a22 filemap_read +EXPORT_SYMBOL_GPL vmlinux 0xe3cea048 irq_domain_xlate_onetwocell +EXPORT_SYMBOL_GPL vmlinux 0xe3d2833d iommu_set_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0xe3ec3b36 rio_unregister_scan EXPORT_SYMBOL_GPL vmlinux 0xe40bb23e devlink_health_reporter_priv EXPORT_SYMBOL_GPL vmlinux 0xe4248980 cper_estatus_print EXPORT_SYMBOL_GPL vmlinux 0xe4309905 syscore_resume -EXPORT_SYMBOL_GPL vmlinux 0xe441b74b hisi_event_sysfs_show -EXPORT_SYMBOL_GPL vmlinux 0xe45e7ba5 kvm_get_kvm -EXPORT_SYMBOL_GPL vmlinux 0xe4799769 relay_buf_full -EXPORT_SYMBOL_GPL vmlinux 0xe47fad7d skb_append_pagefrags -EXPORT_SYMBOL_GPL vmlinux 0xe4826d77 crypto_enqueue_request_head -EXPORT_SYMBOL_GPL vmlinux 0xe48d46fd generic_online_page +EXPORT_SYMBOL_GPL vmlinux 0xe4309ec1 crypto_unregister_ahashes +EXPORT_SYMBOL_GPL vmlinux 0xe4399bf1 dm_path_uevent +EXPORT_SYMBOL_GPL vmlinux 0xe4415bd0 usb_hcd_end_port_resume +EXPORT_SYMBOL_GPL vmlinux 0xe4437c17 nvdimm_name +EXPORT_SYMBOL_GPL vmlinux 0xe4466598 of_pci_get_devfn +EXPORT_SYMBOL_GPL vmlinux 0xe4541cc1 fib_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0xe464736e usb_hcd_pci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xe474ad31 tty_get_pgrp +EXPORT_SYMBOL_GPL vmlinux 0xe48115c0 of_pci_get_max_link_speed EXPORT_SYMBOL_GPL vmlinux 0xe491e700 unregister_kprobes +EXPORT_SYMBOL_GPL vmlinux 0xe493a4c1 dpbp_disable EXPORT_SYMBOL_GPL vmlinux 0xe4971ade tracing_alloc_snapshot -EXPORT_SYMBOL_GPL vmlinux 0xe4aaee52 serdev_device_set_parity +EXPORT_SYMBOL_GPL vmlinux 0xe4ada671 tpm_chip_start EXPORT_SYMBOL_GPL vmlinux 0xe4b064f9 pcie_link_speed +EXPORT_SYMBOL_GPL vmlinux 0xe4b1ae73 skcipher_walk_aead_decrypt EXPORT_SYMBOL_GPL vmlinux 0xe4b818c3 phy_speed_to_str EXPORT_SYMBOL_GPL vmlinux 0xe4b93f27 public_key_verify_signature -EXPORT_SYMBOL_GPL vmlinux 0xe4bb0987 register_user_hw_breakpoint EXPORT_SYMBOL_GPL vmlinux 0xe4c2c66c rtc_ktime_to_tm -EXPORT_SYMBOL_GPL vmlinux 0xe4e40700 dpbp_reset +EXPORT_SYMBOL_GPL vmlinux 0xe4d054e4 wp_shared_mapping_range +EXPORT_SYMBOL_GPL vmlinux 0xe4d3d286 irq_gc_mask_clr_bit +EXPORT_SYMBOL_GPL vmlinux 0xe4d4e7ec irq_chip_get_parent_state EXPORT_SYMBOL_GPL vmlinux 0xe4e48b12 swphy_validate_state -EXPORT_SYMBOL_GPL vmlinux 0xe504baa1 acpi_device_get_match_data -EXPORT_SYMBOL_GPL vmlinux 0xe50e252b tty_perform_flush -EXPORT_SYMBOL_GPL vmlinux 0xe524f549 spi_finalize_current_transfer -EXPORT_SYMBOL_GPL vmlinux 0xe5357668 skb_cow_data -EXPORT_SYMBOL_GPL vmlinux 0xe5412004 ata_sff_lost_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xe5416280 md_bitmap_load +EXPORT_SYMBOL_GPL vmlinux 0xe4ec8c19 __fscrypt_prepare_lookup +EXPORT_SYMBOL_GPL vmlinux 0xe4edac3b mmc_regulator_set_vqmmc +EXPORT_SYMBOL_GPL vmlinux 0xe4f1b5fa perf_aux_output_flag +EXPORT_SYMBOL_GPL vmlinux 0xe4f2dc77 cpufreq_dbs_governor_stop +EXPORT_SYMBOL_GPL vmlinux 0xe4f3b8ce pci_epc_write_header +EXPORT_SYMBOL_GPL vmlinux 0xe5064075 switchdev_bridge_port_unoffload +EXPORT_SYMBOL_GPL vmlinux 0xe50e2f39 kvm_vcpu_read_guest_page +EXPORT_SYMBOL_GPL vmlinux 0xe5129176 fuse_init_fs_context_submount +EXPORT_SYMBOL_GPL vmlinux 0xe51d108f vfs_getxattr +EXPORT_SYMBOL_GPL vmlinux 0xe52d99a1 fscrypt_set_bio_crypt_ctx +EXPORT_SYMBOL_GPL vmlinux 0xe535a029 devm_ioremap_uc +EXPORT_SYMBOL_GPL vmlinux 0xe53b55e4 virtqueue_kick_prepare +EXPORT_SYMBOL_GPL vmlinux 0xe5419f61 fscrypt_symlink_getattr +EXPORT_SYMBOL_GPL vmlinux 0xe546c162 kvm_vcpu_is_visible_gfn +EXPORT_SYMBOL_GPL vmlinux 0xe549563a max8997_update_reg EXPORT_SYMBOL_GPL vmlinux 0xe5516728 k3_udma_glue_tx_get_irq -EXPORT_SYMBOL_GPL vmlinux 0xe56403ac devlink_port_attrs_pci_sf_set +EXPORT_SYMBOL_GPL vmlinux 0xe554ec6a acpi_dev_get_property +EXPORT_SYMBOL_GPL vmlinux 0xe564c1af regmap_field_read +EXPORT_SYMBOL_GPL vmlinux 0xe56d7a03 sbitmap_queue_show +EXPORT_SYMBOL_GPL vmlinux 0xe56f45f6 ata_std_prereset +EXPORT_SYMBOL_GPL vmlinux 0xe573f582 kvm_vcpu_write_guest_page +EXPORT_SYMBOL_GPL vmlinux 0xe5752f9b put_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xe57f78fa of_dma_simple_xlate EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe58bf2aa fat_setattr -EXPORT_SYMBOL_GPL vmlinux 0xe58d61fd attribute_container_find_class_device -EXPORT_SYMBOL_GPL vmlinux 0xe58fd4c7 syscon_regmap_lookup_by_phandle_args -EXPORT_SYMBOL_GPL vmlinux 0xe5959215 md_kick_rdev_from_array -EXPORT_SYMBOL_GPL vmlinux 0xe5a22782 ohci_hub_status_data +EXPORT_SYMBOL_GPL vmlinux 0xe596720f usb_find_interface +EXPORT_SYMBOL_GPL vmlinux 0xe5a13e5c trace_array_get_by_name EXPORT_SYMBOL_GPL vmlinux 0xe5a925d3 zynqmp_pm_init_finalize -EXPORT_SYMBOL_GPL vmlinux 0xe5aab79a ethnl_cable_test_step -EXPORT_SYMBOL_GPL vmlinux 0xe5b31398 tty_ldisc_ref +EXPORT_SYMBOL_GPL vmlinux 0xe5b5622a fuse_dev_alloc +EXPORT_SYMBOL_GPL vmlinux 0xe5be130f blk_mq_free_request 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 0xe5fa85bb device_store_ulong -EXPORT_SYMBOL_GPL vmlinux 0xe601bcfb crypto_grab_aead -EXPORT_SYMBOL_GPL vmlinux 0xe60357bf devm_regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0xe5d2e496 amba_bustype +EXPORT_SYMBOL_GPL vmlinux 0xe5d3af79 dma_request_chan_by_mask +EXPORT_SYMBOL_GPL vmlinux 0xe5e74c0d of_remove_property +EXPORT_SYMBOL_GPL vmlinux 0xe5ec2d45 dma_resv_get_fences +EXPORT_SYMBOL_GPL vmlinux 0xe6016ff0 exportfs_encode_inode_fh EXPORT_SYMBOL_GPL vmlinux 0xe60632a9 edac_queue_work EXPORT_SYMBOL_GPL vmlinux 0xe60a5e8d pids_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xe60b361f bpf_prog_add -EXPORT_SYMBOL_GPL vmlinux 0xe6122d6d wm8350_gpio_config -EXPORT_SYMBOL_GPL vmlinux 0xe6136e52 blkcg_activate_policy -EXPORT_SYMBOL_GPL vmlinux 0xe61e749a devm_pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0xe6119749 dprc_open +EXPORT_SYMBOL_GPL vmlinux 0xe61efc8b ata_sff_postreset EXPORT_SYMBOL_GPL vmlinux 0xe628bb9f phy_fibre_port_array -EXPORT_SYMBOL_GPL vmlinux 0xe636ccf3 rio_unregister_mport -EXPORT_SYMBOL_GPL vmlinux 0xe63b106b device_property_read_string_array -EXPORT_SYMBOL_GPL vmlinux 0xe650def9 usb_create_shared_hcd -EXPORT_SYMBOL_GPL vmlinux 0xe664635f dev_pm_opp_get_of_node -EXPORT_SYMBOL_GPL vmlinux 0xe684c053 perf_event_read_value -EXPORT_SYMBOL_GPL vmlinux 0xe689f983 bpf_trace_run12 -EXPORT_SYMBOL_GPL vmlinux 0xe68cdec7 __devm_clk_hw_register_divider -EXPORT_SYMBOL_GPL vmlinux 0xe69cb4e5 fsverity_cleanup_inode -EXPORT_SYMBOL_GPL vmlinux 0xe6b3d9ce dev_pm_opp_free_cpufreq_table -EXPORT_SYMBOL_GPL vmlinux 0xe6bb1e19 ata_bmdma_port_intr -EXPORT_SYMBOL_GPL vmlinux 0xe6bf9691 wm8350_read_auxadc -EXPORT_SYMBOL_GPL vmlinux 0xe6d43a21 screen_glyph -EXPORT_SYMBOL_GPL vmlinux 0xe6d66f2b pci_remove_root_bus -EXPORT_SYMBOL_GPL vmlinux 0xe6e321dd spi_controller_suspend +EXPORT_SYMBOL_GPL vmlinux 0xe651b83e ata_pci_device_resume +EXPORT_SYMBOL_GPL vmlinux 0xe659ad05 ip6_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0xe691eb51 tty_prepare_flip_string +EXPORT_SYMBOL_GPL vmlinux 0xe69440b1 imx_pinctrl_sc_ipc_init +EXPORT_SYMBOL_GPL vmlinux 0xe6aa3940 dev_pm_put_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0xe6ac8a32 alloc_page_buffers +EXPORT_SYMBOL_GPL vmlinux 0xe6b62546 devres_for_each_res +EXPORT_SYMBOL_GPL vmlinux 0xe6b929a9 __mdiobus_modify_changed +EXPORT_SYMBOL_GPL vmlinux 0xe6bd941b __pm_relax +EXPORT_SYMBOL_GPL vmlinux 0xe6c0c99a devm_pinctrl_register_and_init +EXPORT_SYMBOL_GPL vmlinux 0xe6cf3923 skb_cow_data +EXPORT_SYMBOL_GPL vmlinux 0xe6d94d0b xen_remap_vma_range +EXPORT_SYMBOL_GPL vmlinux 0xe6dfafe2 inet_hash_connect EXPORT_SYMBOL_GPL vmlinux 0xe6e40502 rcu_get_gp_seq -EXPORT_SYMBOL_GPL vmlinux 0xe6e55e2f stmpe_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xe6e94429 ata_sff_freeze EXPORT_SYMBOL_GPL vmlinux 0xe6e988c5 k3_ringacc_get_tisci_dev_id +EXPORT_SYMBOL_GPL vmlinux 0xe6f4405a fsl_mc_bus_dpci_type EXPORT_SYMBOL_GPL vmlinux 0xe6f52443 klist_add_head EXPORT_SYMBOL_GPL vmlinux 0xe6f5e6f5 xas_clear_mark EXPORT_SYMBOL_GPL vmlinux 0xe6f83837 acpi_bus_attach_private_data +EXPORT_SYMBOL_GPL vmlinux 0xe6fe5ab8 usb_autopm_get_interface_no_resume EXPORT_SYMBOL_GPL vmlinux 0xe700d767 reset_control_bulk_deassert -EXPORT_SYMBOL_GPL vmlinux 0xe701d2c1 fwnode_graph_get_remote_port -EXPORT_SYMBOL_GPL vmlinux 0xe70439de dev_fill_forward_path -EXPORT_SYMBOL_GPL vmlinux 0xe70a0a1d wbc_attach_and_unlock_inode -EXPORT_SYMBOL_GPL vmlinux 0xe71a46c6 clockevents_config_and_register -EXPORT_SYMBOL_GPL vmlinux 0xe71aae04 bpf_trace_run6 -EXPORT_SYMBOL_GPL vmlinux 0xe726f948 kvm_get_running_vcpu -EXPORT_SYMBOL_GPL vmlinux 0xe743a16d fwnode_get_parent -EXPORT_SYMBOL_GPL vmlinux 0xe746ccdd clockevents_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0xe7141c78 device_dma_supported +EXPORT_SYMBOL_GPL vmlinux 0xe716b10a xenbus_dev_groups +EXPORT_SYMBOL_GPL vmlinux 0xe74ded79 mmc_send_tuning EXPORT_SYMBOL_GPL vmlinux 0xe753b68d devlink_fmsg_arr_pair_nest_end +EXPORT_SYMBOL_GPL vmlinux 0xe754ac62 extcon_unregister_notifier_all +EXPORT_SYMBOL_GPL vmlinux 0xe762a9a7 ip6_datagram_release_cb EXPORT_SYMBOL_GPL vmlinux 0xe769232e sprint_symbol_no_offset -EXPORT_SYMBOL_GPL vmlinux 0xe772f4f6 devm_pm_clk_create -EXPORT_SYMBOL_GPL vmlinux 0xe77d123e sync_page_io +EXPORT_SYMBOL_GPL vmlinux 0xe76a0f96 root_device_unregister EXPORT_SYMBOL_GPL vmlinux 0xe783e261 sysfs_emit +EXPORT_SYMBOL_GPL vmlinux 0xe78bfe77 __clk_get_hw EXPORT_SYMBOL_GPL vmlinux 0xe7936243 zynqmp_pm_clock_getstate -EXPORT_SYMBOL_GPL vmlinux 0xe7b97b22 watchdog_set_restart_priority -EXPORT_SYMBOL_GPL vmlinux 0xe7c3668d dma_get_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0xe7c43d49 hisi_format_sysfs_show -EXPORT_SYMBOL_GPL vmlinux 0xe7cb393b clean_acked_data_disable +EXPORT_SYMBOL_GPL vmlinux 0xe7989197 ata_pio_need_iordy +EXPORT_SYMBOL_GPL vmlinux 0xe79fd084 crypto_register_shash +EXPORT_SYMBOL_GPL vmlinux 0xe7a1c8a8 mbox_request_channel +EXPORT_SYMBOL_GPL vmlinux 0xe7bdd131 dpm_for_each_dev EXPORT_SYMBOL_GPL vmlinux 0xe7d6d2d4 filter_match_preds -EXPORT_SYMBOL_GPL vmlinux 0xe7dbaad7 __netif_set_xps_queue -EXPORT_SYMBOL_GPL vmlinux 0xe7df7c00 devm_device_add_groups -EXPORT_SYMBOL_GPL vmlinux 0xe7ecea33 strp_init +EXPORT_SYMBOL_GPL vmlinux 0xe7dbde97 dma_buf_attach +EXPORT_SYMBOL_GPL vmlinux 0xe7e202c8 sched_set_fifo EXPORT_SYMBOL_GPL vmlinux 0xe7eee3d5 __cookie_v4_init_sequence -EXPORT_SYMBOL_GPL vmlinux 0xe7eee82b reset_simple_ops -EXPORT_SYMBOL_GPL vmlinux 0xe7f2681b is_software_node -EXPORT_SYMBOL_GPL vmlinux 0xe7f68c17 dpbp_open +EXPORT_SYMBOL_GPL vmlinux 0xe7fa61d4 virtqueue_kick EXPORT_SYMBOL_GPL vmlinux 0xe818b32b ata_bmdma_interrupt EXPORT_SYMBOL_GPL vmlinux 0xe8199ff8 sbitmap_del_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0xe824376b loop_backing_file -EXPORT_SYMBOL_GPL vmlinux 0xe82a61c6 __traceiter_wbc_writepage -EXPORT_SYMBOL_GPL vmlinux 0xe8336210 spi_replace_transfers -EXPORT_SYMBOL_GPL vmlinux 0xe8397ef3 acpi_subsys_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0xe828c9ec xdp_return_frame_rx_napi +EXPORT_SYMBOL_GPL vmlinux 0xe8341b16 smpboot_register_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0xe84a2136 kthread_data EXPORT_SYMBOL_GPL vmlinux 0xe84ed34a unregister_ftrace_function -EXPORT_SYMBOL_GPL vmlinux 0xe84f65dd crypto_hash_alg_has_setkey EXPORT_SYMBOL_GPL vmlinux 0xe84f6e5c pciserial_remove_ports -EXPORT_SYMBOL_GPL vmlinux 0xe85232f3 extcon_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0xe8592c1f sata_pmp_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xe85042ed virtqueue_get_used_addr +EXPORT_SYMBOL_GPL vmlinux 0xe85473b2 usb_put_hcd EXPORT_SYMBOL_GPL vmlinux 0xe85a9fd3 cpu_cluster_pm_exit -EXPORT_SYMBOL_GPL vmlinux 0xe85aa623 gnttab_map_refs -EXPORT_SYMBOL_GPL vmlinux 0xe85d0357 devm_extcon_dev_allocate EXPORT_SYMBOL_GPL vmlinux 0xe862c4b7 dpm_suspend_start -EXPORT_SYMBOL_GPL vmlinux 0xe862d400 virtqueue_get_vring_size -EXPORT_SYMBOL_GPL vmlinux 0xe867bdde security_kernel_post_read_file -EXPORT_SYMBOL_GPL vmlinux 0xe8716c1a md_run -EXPORT_SYMBOL_GPL vmlinux 0xe87e9a77 gnttab_pages_clear_private +EXPORT_SYMBOL_GPL vmlinux 0xe86836c1 mmu_interval_notifier_insert_locked +EXPORT_SYMBOL_GPL vmlinux 0xe87b6af4 xenbus_map_ring_valloc EXPORT_SYMBOL_GPL vmlinux 0xe8874a05 irq_work_queue -EXPORT_SYMBOL_GPL vmlinux 0xe8a044f5 ncsi_unregister_dev -EXPORT_SYMBOL_GPL vmlinux 0xe8b4d9f6 acpiphp_unregister_attention +EXPORT_SYMBOL_GPL vmlinux 0xe88c017a fsverity_cleanup_inode +EXPORT_SYMBOL_GPL vmlinux 0xe8921aee wm8400_reset_codec_reg_cache +EXPORT_SYMBOL_GPL vmlinux 0xe894e72d kernel_kobj +EXPORT_SYMBOL_GPL vmlinux 0xe8950f72 serial8250_rpm_get +EXPORT_SYMBOL_GPL vmlinux 0xe896c7ac clk_hw_unregister_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0xe8a09676 icc_put +EXPORT_SYMBOL_GPL vmlinux 0xe8a56b58 __inet_lookup_established +EXPORT_SYMBOL_GPL vmlinux 0xe8ac0fa1 pm_genpd_remove +EXPORT_SYMBOL_GPL vmlinux 0xe8afee5d pwm_request_from_chip +EXPORT_SYMBOL_GPL vmlinux 0xe8ba3ce5 debugfs_read_file_bool EXPORT_SYMBOL_GPL vmlinux 0xe8c0065d memory_group_register_static -EXPORT_SYMBOL_GPL vmlinux 0xe8d1e9f8 wm8400_reset_codec_reg_cache -EXPORT_SYMBOL_GPL vmlinux 0xe8d32925 usb_phy_set_event -EXPORT_SYMBOL_GPL vmlinux 0xe8e045ac inet6_csk_xmit -EXPORT_SYMBOL_GPL vmlinux 0xe901fcbb regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0xe8c4a9e4 wm8350_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xe8cee735 reset_control_get_count +EXPORT_SYMBOL_GPL vmlinux 0xe8d25600 pci_scan_child_bus +EXPORT_SYMBOL_GPL vmlinux 0xe8d5c29d synth_event_add_val 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 0xe91a8176 pci_max_pasids -EXPORT_SYMBOL_GPL vmlinux 0xe91b88f6 icc_nodes_remove -EXPORT_SYMBOL_GPL vmlinux 0xe9314855 sock_diag_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe931af9d pci_cfg_access_trylock +EXPORT_SYMBOL_GPL vmlinux 0xe927bbfd generic_handle_domain_irq +EXPORT_SYMBOL_GPL vmlinux 0xe92e6351 regcache_sync_region +EXPORT_SYMBOL_GPL vmlinux 0xe93a56bc netlink_strict_get_check EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free -EXPORT_SYMBOL_GPL vmlinux 0xe93eba38 spi_take_timestamp_post -EXPORT_SYMBOL_GPL vmlinux 0xe945c13e usb_register_dev -EXPORT_SYMBOL_GPL vmlinux 0xe95504b1 nvdimm_pmem_region_create +EXPORT_SYMBOL_GPL vmlinux 0xe949178a devm_acpi_dev_remove_driver_gpios EXPORT_SYMBOL_GPL vmlinux 0xe956a75c pl320_ipc_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0xe9641371 dma_free_pages -EXPORT_SYMBOL_GPL vmlinux 0xe9840573 inet_ehash_nolisten +EXPORT_SYMBOL_GPL vmlinux 0xe961dc9a ahci_pmp_retry_srst_ops +EXPORT_SYMBOL_GPL vmlinux 0xe966b758 of_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xe97ea66f gnttab_alloc_pages +EXPORT_SYMBOL_GPL vmlinux 0xe98cbf67 gpiod_get_index_optional EXPORT_SYMBOL_GPL vmlinux 0xe98f55f2 arm_smccc_get_version -EXPORT_SYMBOL_GPL vmlinux 0xe9904f23 devm_regmap_field_free -EXPORT_SYMBOL_GPL vmlinux 0xe9a48b7b fb_deferred_io_open -EXPORT_SYMBOL_GPL vmlinux 0xe9bf5200 ata_pci_device_do_suspend +EXPORT_SYMBOL_GPL vmlinux 0xe99f7040 tegra_bpmp_put +EXPORT_SYMBOL_GPL vmlinux 0xe9b9092a rio_register_mport +EXPORT_SYMBOL_GPL vmlinux 0xe9bbb208 spi_controller_suspend +EXPORT_SYMBOL_GPL vmlinux 0xe9c16612 gpiod_get_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0xe9c1b676 kobject_get_path EXPORT_SYMBOL_GPL vmlinux 0xe9d1b7cf irq_to_pcap EXPORT_SYMBOL_GPL vmlinux 0xe9d63a0d k3_udma_glue_enable_tx_chn -EXPORT_SYMBOL_GPL vmlinux 0xe9efbd53 file_is_kvm +EXPORT_SYMBOL_GPL vmlinux 0xe9e4fff8 dax_supported +EXPORT_SYMBOL_GPL vmlinux 0xe9ec471b regulator_enable_regmap +EXPORT_SYMBOL_GPL vmlinux 0xe9fdb837 xen_xlate_remap_gfn_array EXPORT_SYMBOL_GPL vmlinux 0xea018bbb mpi_test_bit -EXPORT_SYMBOL_GPL vmlinux 0xea0d19a1 devlink_flash_update_status_notify -EXPORT_SYMBOL_GPL vmlinux 0xea0df21f __acpi_node_get_property_reference +EXPORT_SYMBOL_GPL vmlinux 0xea05073e pci_cfg_access_lock +EXPORT_SYMBOL_GPL vmlinux 0xea083318 init_user_ns +EXPORT_SYMBOL_GPL vmlinux 0xea10e7bd mtk_eint_do_init EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd -EXPORT_SYMBOL_GPL vmlinux 0xea17e996 transport_add_device -EXPORT_SYMBOL_GPL vmlinux 0xea1eae89 mtk_pinconf_drive_set -EXPORT_SYMBOL_GPL vmlinux 0xea21b031 iommu_unmap_fast -EXPORT_SYMBOL_GPL vmlinux 0xea2dce08 of_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0xea29b5d9 i2c_generic_scl_recovery EXPORT_SYMBOL_GPL vmlinux 0xea38036f ring_buffer_entries EXPORT_SYMBOL_GPL vmlinux 0xea3a23f3 public_key_free -EXPORT_SYMBOL_GPL vmlinux 0xea3ce608 rio_del_mport_pw_handler -EXPORT_SYMBOL_GPL vmlinux 0xea449196 blk_next_bio -EXPORT_SYMBOL_GPL vmlinux 0xea4a592c pci_device_is_present +EXPORT_SYMBOL_GPL vmlinux 0xea3b5d88 led_trigger_read +EXPORT_SYMBOL_GPL vmlinux 0xea415f39 sk_clear_memalloc EXPORT_SYMBOL_GPL vmlinux 0xea50dad3 ahci_ignore_sss -EXPORT_SYMBOL_GPL vmlinux 0xea51da53 uart_get_rs485_mode -EXPORT_SYMBOL_GPL vmlinux 0xea65f635 i2c_get_device_id -EXPORT_SYMBOL_GPL vmlinux 0xea8495de sata_link_debounce -EXPORT_SYMBOL_GPL vmlinux 0xea863971 xenbus_dev_cancel -EXPORT_SYMBOL_GPL vmlinux 0xeaa60aa9 otg_ulpi_create -EXPORT_SYMBOL_GPL vmlinux 0xeaa95c3e set_selection_kernel -EXPORT_SYMBOL_GPL vmlinux 0xeaaea1b1 clk_register_mux_table -EXPORT_SYMBOL_GPL vmlinux 0xeabfac2d fsnotify_add_mark +EXPORT_SYMBOL_GPL vmlinux 0xea592120 vfs_setxattr +EXPORT_SYMBOL_GPL vmlinux 0xea5fb637 bpfilter_umh_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xea61cf50 crypto_stats_kpp_set_secret +EXPORT_SYMBOL_GPL vmlinux 0xea777e4d __fl6_sock_lookup +EXPORT_SYMBOL_GPL vmlinux 0xea838dda pinctrl_pm_select_default_state +EXPORT_SYMBOL_GPL vmlinux 0xea981fdb mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xea98367a devm_of_clk_add_hw_provider +EXPORT_SYMBOL_GPL vmlinux 0xea9b73ee crypto_get_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xeaa9d3e1 wm831x_auxadc_read +EXPORT_SYMBOL_GPL vmlinux 0xeab31c97 __mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0xeabdf500 devm_pm_opp_set_supported_hw +EXPORT_SYMBOL_GPL vmlinux 0xeac04b0c ata_sas_slave_configure EXPORT_SYMBOL_GPL vmlinux 0xead035ee __tracepoint_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0xead283fa ethnl_cable_test_pulse +EXPORT_SYMBOL_GPL vmlinux 0xead3a684 thermal_of_cooling_device_register 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 0xeadb32c9 dw_pcie_write_dbi -EXPORT_SYMBOL_GPL vmlinux 0xeadbdc9f device_attach EXPORT_SYMBOL_GPL vmlinux 0xeae0f496 clean_acked_data_flush -EXPORT_SYMBOL_GPL vmlinux 0xeae6fed8 regmap_noinc_write EXPORT_SYMBOL_GPL vmlinux 0xeaf0a57c look_up_OID -EXPORT_SYMBOL_GPL vmlinux 0xeaf4a65f __pm_runtime_use_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0xeaf23e68 ata_sff_port_intr +EXPORT_SYMBOL_GPL vmlinux 0xeaf805db tc3589x_set_bits EXPORT_SYMBOL_GPL vmlinux 0xeaf8469d hv_do_fast_hypercall8 -EXPORT_SYMBOL_GPL vmlinux 0xeafe1420 tcp_set_keepalive -EXPORT_SYMBOL_GPL vmlinux 0xeb0af398 percpu_down_write -EXPORT_SYMBOL_GPL vmlinux 0xeb1fce4f __clk_hw_register_fixed_rate -EXPORT_SYMBOL_GPL vmlinux 0xeb2101fb __rio_local_write_config_8 -EXPORT_SYMBOL_GPL vmlinux 0xeb27974a serial8250_rx_chars -EXPORT_SYMBOL_GPL vmlinux 0xeb3d79bf hisi_uncore_pmu_set_event_period +EXPORT_SYMBOL_GPL vmlinux 0xeafda2a8 mddev_suspend +EXPORT_SYMBOL_GPL vmlinux 0xeb048d9b rio_set_port_lockout +EXPORT_SYMBOL_GPL vmlinux 0xeb0f9756 do_truncate +EXPORT_SYMBOL_GPL vmlinux 0xeb1c7e3f xenbus_match +EXPORT_SYMBOL_GPL vmlinux 0xeb211208 key_type_logon EXPORT_SYMBOL_GPL vmlinux 0xeb4221e4 trace_clock -EXPORT_SYMBOL_GPL vmlinux 0xeb42f088 devm_gpio_free -EXPORT_SYMBOL_GPL vmlinux 0xeb436167 acpi_pci_find_root -EXPORT_SYMBOL_GPL vmlinux 0xeb60fc07 tcp_abort -EXPORT_SYMBOL_GPL vmlinux 0xeb610edb fuse_conn_put +EXPORT_SYMBOL_GPL vmlinux 0xeb67605b efivar_entry_set_get_size EXPORT_SYMBOL_GPL vmlinux 0xeb78b1ed unregister_kprobe -EXPORT_SYMBOL_GPL vmlinux 0xeb82b7de __bio_crypt_clone -EXPORT_SYMBOL_GPL vmlinux 0xeb86ba07 cpuidle_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0xeb8bbbb8 clockevents_register_device -EXPORT_SYMBOL_GPL vmlinux 0xeb9b361a dev_pm_opp_set_supported_hw -EXPORT_SYMBOL_GPL vmlinux 0xeba49837 tcp_unregister_ulp -EXPORT_SYMBOL_GPL vmlinux 0xeba81fc9 adp5520_write -EXPORT_SYMBOL_GPL vmlinux 0xebaab450 strp_data_ready +EXPORT_SYMBOL_GPL vmlinux 0xeba9f1bc devm_bitmap_zalloc +EXPORT_SYMBOL_GPL vmlinux 0xebae8ee3 fwnode_device_is_available +EXPORT_SYMBOL_GPL vmlinux 0xebb01d5c create_signature EXPORT_SYMBOL_GPL vmlinux 0xebc9a09f lock_system_sleep -EXPORT_SYMBOL_GPL vmlinux 0xebd3e603 dev_pm_domain_attach +EXPORT_SYMBOL_GPL vmlinux 0xebcba2f3 sysfs_break_active_protection EXPORT_SYMBOL_GPL vmlinux 0xebd4cc11 mctrl_gpio_enable_ms -EXPORT_SYMBOL_GPL vmlinux 0xebfb64dc nfs42_ssc_unregister -EXPORT_SYMBOL_GPL vmlinux 0xec0be046 pciserial_init_ports -EXPORT_SYMBOL_GPL vmlinux 0xec0efba6 genphy_c45_an_config_aneg -EXPORT_SYMBOL_GPL vmlinux 0xec10a124 dma_async_device_channel_register -EXPORT_SYMBOL_GPL vmlinux 0xec111946 irqchip_fwnode_ops -EXPORT_SYMBOL_GPL vmlinux 0xec12fe0f kvm_irq_has_notifier -EXPORT_SYMBOL_GPL vmlinux 0xec1d4e8b dw_pcie_setup_rc -EXPORT_SYMBOL_GPL vmlinux 0xec1fa0aa security_inode_permission -EXPORT_SYMBOL_GPL vmlinux 0xec250c96 ip6_route_output_flags -EXPORT_SYMBOL_GPL vmlinux 0xec29daab thp_get_unmapped_area -EXPORT_SYMBOL_GPL vmlinux 0xec31ed6a key_type_asymmetric -EXPORT_SYMBOL_GPL vmlinux 0xec3591de ip6_route_lookup -EXPORT_SYMBOL_GPL vmlinux 0xec3c5ebd __netpoll_setup +EXPORT_SYMBOL_GPL vmlinux 0xebd9c83a devlink_rate_leaf_destroy +EXPORT_SYMBOL_GPL vmlinux 0xec0100ec pci_num_vf +EXPORT_SYMBOL_GPL vmlinux 0xec06e260 devlink_port_attrs_pci_sf_set +EXPORT_SYMBOL_GPL vmlinux 0xec10539a ip6_route_input_lookup +EXPORT_SYMBOL_GPL vmlinux 0xec189830 crypto_rng_reset +EXPORT_SYMBOL_GPL vmlinux 0xec221120 tpm_chip_stop +EXPORT_SYMBOL_GPL vmlinux 0xec31783d bpf_trace_run7 +EXPORT_SYMBOL_GPL vmlinux 0xec3b0c2b __lock_page_killable EXPORT_SYMBOL_GPL vmlinux 0xec5668f6 dax_zero_page_range EXPORT_SYMBOL_GPL vmlinux 0xec5ad73b trace_seq_bitmask -EXPORT_SYMBOL_GPL vmlinux 0xec5cf7a9 clk_regmap_divider_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0xec5c97bd pci_load_saved_state +EXPORT_SYMBOL_GPL vmlinux 0xec698b6b spi_controller_resume +EXPORT_SYMBOL_GPL vmlinux 0xec6b687a sysfs_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0xec6f71b6 hisi_clk_init EXPORT_SYMBOL_GPL vmlinux 0xec774acb cpufreq_frequency_table_verify -EXPORT_SYMBOL_GPL vmlinux 0xec7dbe43 regulator_register -EXPORT_SYMBOL_GPL vmlinux 0xec969f7e rdev_set_badblocks -EXPORT_SYMBOL_GPL vmlinux 0xec9ee4b6 i2c_dw_adjust_bus_speed +EXPORT_SYMBOL_GPL vmlinux 0xec9674bc i2c_dw_adjust_bus_speed EXPORT_SYMBOL_GPL vmlinux 0xecb671fc tegra210_sata_pll_hw_sequence_start -EXPORT_SYMBOL_GPL vmlinux 0xecb68117 pci_sriov_configure_simple EXPORT_SYMBOL_GPL vmlinux 0xecba68e3 gnttab_batch_map -EXPORT_SYMBOL_GPL vmlinux 0xecbe42e2 vp_modern_remove -EXPORT_SYMBOL_GPL vmlinux 0xecc047e5 da9052_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0xecc7e43a of_platform_populate -EXPORT_SYMBOL_GPL vmlinux 0xeccf01eb device_get_child_node_count +EXPORT_SYMBOL_GPL vmlinux 0xecbfeffa syscon_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0xecc933f6 pci_user_write_config_byte +EXPORT_SYMBOL_GPL vmlinux 0xeccb461a bpf_map_inc_with_uref EXPORT_SYMBOL_GPL vmlinux 0xecd8f23d xenbus_read -EXPORT_SYMBOL_GPL vmlinux 0xece30833 pci_host_common_remove -EXPORT_SYMBOL_GPL vmlinux 0xecee6e01 handle_untracked_irq -EXPORT_SYMBOL_GPL vmlinux 0xecfb69d1 bio_clone_blkg_association -EXPORT_SYMBOL_GPL vmlinux 0xed05bb4b pci_ecam_map_bus -EXPORT_SYMBOL_GPL vmlinux 0xed11bf90 init_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0xed1772cb devm_reset_controller_register -EXPORT_SYMBOL_GPL vmlinux 0xed370aa7 sysfs_remove_mount_point -EXPORT_SYMBOL_GPL vmlinux 0xed397317 __pm_relax +EXPORT_SYMBOL_GPL vmlinux 0xeceb00fa md_rdev_clear +EXPORT_SYMBOL_GPL vmlinux 0xed142503 mtk_mutex_get +EXPORT_SYMBOL_GPL vmlinux 0xed1d718f find_vpid +EXPORT_SYMBOL_GPL vmlinux 0xed29ff92 devlink_port_params_register +EXPORT_SYMBOL_GPL vmlinux 0xed2b0adf relay_close +EXPORT_SYMBOL_GPL vmlinux 0xed321ae4 gpiod_export +EXPORT_SYMBOL_GPL vmlinux 0xed38e82e power_supply_changed EXPORT_SYMBOL_GPL vmlinux 0xed39b7b8 parse_OID -EXPORT_SYMBOL_GPL vmlinux 0xed41f4a4 devm_extcon_dev_register -EXPORT_SYMBOL_GPL vmlinux 0xed451be1 pl08x_filter_id -EXPORT_SYMBOL_GPL vmlinux 0xed591123 pm_genpd_init -EXPORT_SYMBOL_GPL vmlinux 0xed6227bc iomap_migrate_page -EXPORT_SYMBOL_GPL vmlinux 0xed73bf52 seg6_do_srh_encap +EXPORT_SYMBOL_GPL vmlinux 0xed3d1756 devm_free_percpu +EXPORT_SYMBOL_GPL vmlinux 0xed4fa016 max8997_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0xed505e4c xfrm_audit_policy_add +EXPORT_SYMBOL_GPL vmlinux 0xed64c7af sk_attach_filter +EXPORT_SYMBOL_GPL vmlinux 0xed72ce7c rio_unregister_driver EXPORT_SYMBOL_GPL vmlinux 0xed7c7b91 raw_v6_hashinfo -EXPORT_SYMBOL_GPL vmlinux 0xed7e0ddc devm_spi_register_controller -EXPORT_SYMBOL_GPL vmlinux 0xed89e03f sdio_retune_crc_disable -EXPORT_SYMBOL_GPL vmlinux 0xed9fc657 sata_link_resume -EXPORT_SYMBOL_GPL vmlinux 0xedc3e19b rockchip_pcie_cfg_configuration_accesses -EXPORT_SYMBOL_GPL vmlinux 0xedc5be0c dm_disk +EXPORT_SYMBOL_GPL vmlinux 0xed7e9a96 devm_kstrdup_const +EXPORT_SYMBOL_GPL vmlinux 0xed845cd3 pm_clk_remove +EXPORT_SYMBOL_GPL vmlinux 0xed942b1e scsi_dh_set_params +EXPORT_SYMBOL_GPL vmlinux 0xed9f235d watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0xed9f92cc nexthop_for_each_fib6_nh +EXPORT_SYMBOL_GPL vmlinux 0xeda3a07f noop_direct_IO +EXPORT_SYMBOL_GPL vmlinux 0xedb0d585 mtk_pinconf_drive_set +EXPORT_SYMBOL_GPL vmlinux 0xedb31b2c class_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xedb63640 devm_of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xedb6d179 usb_hcd_link_urb_to_ep +EXPORT_SYMBOL_GPL vmlinux 0xedca0eff generic_fsdax_supported +EXPORT_SYMBOL_GPL vmlinux 0xedcbf774 md_stop +EXPORT_SYMBOL_GPL vmlinux 0xedcc1746 xen_xlate_unmap_gfn_range EXPORT_SYMBOL_GPL vmlinux 0xedd092d5 power_supply_notifier -EXPORT_SYMBOL_GPL vmlinux 0xedddfd4c gpiochip_line_is_open_drain -EXPORT_SYMBOL_GPL vmlinux 0xedddfd64 rio_mport_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0xedd56289 inet_ctl_sock_create +EXPORT_SYMBOL_GPL vmlinux 0xedd74763 fuse_free_conn +EXPORT_SYMBOL_GPL vmlinux 0xede23671 genphy_c45_pma_resume EXPORT_SYMBOL_GPL vmlinux 0xede9a09a btree_lookup -EXPORT_SYMBOL_GPL vmlinux 0xedf22b5b regulator_desc_list_voltage_linear -EXPORT_SYMBOL_GPL vmlinux 0xedffce75 serdev_controller_alloc -EXPORT_SYMBOL_GPL vmlinux 0xee11545e serdev_device_set_flow_control -EXPORT_SYMBOL_GPL vmlinux 0xee146f16 edac_device_handle_ue_count -EXPORT_SYMBOL_GPL vmlinux 0xee17c509 subsys_dev_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0xee1caad9 virtqueue_enable_cb_delayed +EXPORT_SYMBOL_GPL vmlinux 0xedfc6bde cpufreq_frequency_table_get_index +EXPORT_SYMBOL_GPL vmlinux 0xee04705f devm_nvmem_cell_get +EXPORT_SYMBOL_GPL vmlinux 0xee1cec01 __vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0xee1ee402 rio_add_device EXPORT_SYMBOL_GPL vmlinux 0xee1f5126 __tracepoint_neigh_timer_handler -EXPORT_SYMBOL_GPL vmlinux 0xee280ff4 blk_update_request +EXPORT_SYMBOL_GPL vmlinux 0xee1f7431 sata_async_notification +EXPORT_SYMBOL_GPL vmlinux 0xee295852 do_splice_from +EXPORT_SYMBOL_GPL vmlinux 0xee2bd65d pci_hp_remove_module_link +EXPORT_SYMBOL_GPL vmlinux 0xee3257cc pci_epf_unregister_driver EXPORT_SYMBOL_GPL vmlinux 0xee38ef57 register_switchdev_blocking_notifier -EXPORT_SYMBOL_GPL vmlinux 0xee396f50 clean_record_shared_mapping_range -EXPORT_SYMBOL_GPL vmlinux 0xee40e4ad iommu_iova_to_phys -EXPORT_SYMBOL_GPL vmlinux 0xee44521a synth_event_trace_end +EXPORT_SYMBOL_GPL vmlinux 0xee421451 kernfs_find_and_get_ns +EXPORT_SYMBOL_GPL vmlinux 0xee4411c3 tcp_unregister_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0xee46f29f pci_max_pasids +EXPORT_SYMBOL_GPL vmlinux 0xee49db50 rio_release_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0xee4da11c __hvc_resize EXPORT_SYMBOL_GPL vmlinux 0xee518148 kmsg_dump_get_buffer -EXPORT_SYMBOL_GPL vmlinux 0xee5e5a57 fsl_mc_populate_irq_pool +EXPORT_SYMBOL_GPL vmlinux 0xee5674b7 ata_port_freeze +EXPORT_SYMBOL_GPL vmlinux 0xee6a4686 __scsi_init_queue 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 0xee8bd32f ata_sff_softreset -EXPORT_SYMBOL_GPL vmlinux 0xee9f2251 raw_seq_stop -EXPORT_SYMBOL_GPL vmlinux 0xeea0c46c mmc_get_ext_csd -EXPORT_SYMBOL_GPL vmlinux 0xeea7d3e9 __blk_req_zone_write_unlock -EXPORT_SYMBOL_GPL vmlinux 0xeec19d6e ata_slave_link_init -EXPORT_SYMBOL_GPL vmlinux 0xeec29383 ip6_sk_redirect -EXPORT_SYMBOL_GPL vmlinux 0xeec73ae4 to_nd_desc -EXPORT_SYMBOL_GPL vmlinux 0xeeccef3d devm_device_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0xee858ef3 edac_device_del_device +EXPORT_SYMBOL_GPL vmlinux 0xee974597 pci_enable_pasid +EXPORT_SYMBOL_GPL vmlinux 0xee9fe42a xfrm_audit_state_replay +EXPORT_SYMBOL_GPL vmlinux 0xeec96cb5 mtk_mmsys_ddp_connect +EXPORT_SYMBOL_GPL vmlinux 0xeed0572f nf_queue_entry_free EXPORT_SYMBOL_GPL vmlinux 0xeed0cea4 kernel_read_file_from_fd EXPORT_SYMBOL_GPL vmlinux 0xeedd987e phy_10gbit_features_array EXPORT_SYMBOL_GPL vmlinux 0xeedfcec3 task_work_run -EXPORT_SYMBOL_GPL vmlinux 0xeefea4d8 fuse_free_conn -EXPORT_SYMBOL_GPL vmlinux 0xef032961 devm_usb_put_phy -EXPORT_SYMBOL_GPL vmlinux 0xef05e29c pci_iov_virtfn_devfn +EXPORT_SYMBOL_GPL vmlinux 0xeee07a0b make_device_exclusive_range +EXPORT_SYMBOL_GPL vmlinux 0xef0caf57 acpi_subsys_restore_early +EXPORT_SYMBOL_GPL vmlinux 0xef1d12df devm_request_free_mem_region EXPORT_SYMBOL_GPL vmlinux 0xef1f6e23 apei_resources_request -EXPORT_SYMBOL_GPL vmlinux 0xef22bf1a imx_pinctrl_parse_pin_scu -EXPORT_SYMBOL_GPL vmlinux 0xef24d328 fwnode_get_next_parent -EXPORT_SYMBOL_GPL vmlinux 0xef25608e virtio_config_changed EXPORT_SYMBOL_GPL vmlinux 0xef29fcdd clk_bulk_put EXPORT_SYMBOL_GPL vmlinux 0xef34bf3e hrtimer_active -EXPORT_SYMBOL_GPL vmlinux 0xef3b2d63 device_del -EXPORT_SYMBOL_GPL vmlinux 0xef43b76d shash_free_singlespawn_instance -EXPORT_SYMBOL_GPL vmlinux 0xef448447 gnttab_dma_free_pages EXPORT_SYMBOL_GPL vmlinux 0xef464c28 getboottime64 EXPORT_SYMBOL_GPL vmlinux 0xef5db66d regulator_get_init_drvdata -EXPORT_SYMBOL_GPL vmlinux 0xef678679 rockchip_register_softrst -EXPORT_SYMBOL_GPL vmlinux 0xef6a4612 cookie_tcp_reqsk_alloc EXPORT_SYMBOL_GPL vmlinux 0xef6c3f70 round_jiffies_up_relative EXPORT_SYMBOL_GPL vmlinux 0xef70eb7e ring_buffer_iter_advance -EXPORT_SYMBOL_GPL vmlinux 0xef72c6fa extcon_sync -EXPORT_SYMBOL_GPL vmlinux 0xef741bd4 regulator_desc_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0xef729f04 fsl_mc_get_endpoint EXPORT_SYMBOL_GPL vmlinux 0xef744bb5 sbitmap_queue_clear -EXPORT_SYMBOL_GPL vmlinux 0xef7f70a1 fsnotify_find_mark -EXPORT_SYMBOL_GPL vmlinux 0xef8a55ee gpiod_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xef8bf2d8 synth_event_gen_cmd_array_start +EXPORT_SYMBOL_GPL vmlinux 0xef8abcac pinmux_generic_remove_function EXPORT_SYMBOL_GPL vmlinux 0xef92ef33 btree_last +EXPORT_SYMBOL_GPL vmlinux 0xef9db22b ata_scsi_ioctl EXPORT_SYMBOL_GPL vmlinux 0xefa2c27d register_tracepoint_module_notifier -EXPORT_SYMBOL_GPL vmlinux 0xefa5ac7c vfs_listxattr -EXPORT_SYMBOL_GPL vmlinux 0xefb1e3c1 scsi_dh_activate -EXPORT_SYMBOL_GPL vmlinux 0xefd54b4e rt_mutex_unlock -EXPORT_SYMBOL_GPL vmlinux 0xefd6496c irq_domain_associate_many -EXPORT_SYMBOL_GPL vmlinux 0xefda1610 of_clk_hw_simple_get -EXPORT_SYMBOL_GPL vmlinux 0xefdae569 __vfs_removexattr_noperm +EXPORT_SYMBOL_GPL vmlinux 0xefd048f7 dev_pm_opp_put_opp_table +EXPORT_SYMBOL_GPL vmlinux 0xefe1e81f __fscrypt_prepare_readdir +EXPORT_SYMBOL_GPL vmlinux 0xefe34840 power_supply_property_is_writeable +EXPORT_SYMBOL_GPL vmlinux 0xefe90647 device_pm_wait_for_dev EXPORT_SYMBOL_GPL vmlinux 0xefeafcf1 edac_has_mcs -EXPORT_SYMBOL_GPL vmlinux 0xefef190a pci_disable_pcie_error_reporting -EXPORT_SYMBOL_GPL vmlinux 0xf0020f39 kill_pid_usb_asyncio -EXPORT_SYMBOL_GPL vmlinux 0xf0194f98 pinctrl_get_group_pins -EXPORT_SYMBOL_GPL vmlinux 0xf02f0ff3 __lock_page_killable -EXPORT_SYMBOL_GPL vmlinux 0xf0360d2b __traceiter_pelt_se_tp -EXPORT_SYMBOL_GPL vmlinux 0xf037190a device_get_dma_attr +EXPORT_SYMBOL_GPL vmlinux 0xeff74d52 serdev_device_open +EXPORT_SYMBOL_GPL vmlinux 0xeffc25e1 ahci_set_em_messages +EXPORT_SYMBOL_GPL vmlinux 0xf0016ca2 bdev_disk_changed +EXPORT_SYMBOL_GPL vmlinux 0xf0021052 relay_subbufs_consumed +EXPORT_SYMBOL_GPL vmlinux 0xf00835ab rio_register_scan +EXPORT_SYMBOL_GPL vmlinux 0xf03a59d9 arm64_mm_context_put EXPORT_SYMBOL_GPL vmlinux 0xf03b0410 ftrace_set_filter EXPORT_SYMBOL_GPL vmlinux 0xf04429b4 acpi_bus_get_status_handle -EXPORT_SYMBOL_GPL vmlinux 0xf056d65f kvm_is_visible_gfn EXPORT_SYMBOL_GPL vmlinux 0xf05a52fe asn1_encode_oid +EXPORT_SYMBOL_GPL vmlinux 0xf05aede2 spi_replace_transfers EXPORT_SYMBOL_GPL vmlinux 0xf05fbf09 pci_pio_to_address +EXPORT_SYMBOL_GPL vmlinux 0xf0603ff1 acpi_irq_create_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0xf060a619 iommu_unregister_device_fault_handler EXPORT_SYMBOL_GPL vmlinux 0xf0696401 acpi_pci_detect_ejectable -EXPORT_SYMBOL_GPL vmlinux 0xf06ae4e8 syscon_node_to_regmap -EXPORT_SYMBOL_GPL vmlinux 0xf0724df8 fsl_mc_object_allocate -EXPORT_SYMBOL_GPL vmlinux 0xf0830089 device_property_read_u16_array -EXPORT_SYMBOL_GPL vmlinux 0xf08f33ba pm_runtime_set_memalloc_noio -EXPORT_SYMBOL_GPL vmlinux 0xf090eeef __clk_hw_register_gate EXPORT_SYMBOL_GPL vmlinux 0xf0910075 sfp_bus_del_upstream -EXPORT_SYMBOL_GPL vmlinux 0xf095604f fwnode_gpiod_get_index -EXPORT_SYMBOL_GPL vmlinux 0xf0998e9f regmap_fields_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0xf09bb884 xenbus_switch_state EXPORT_SYMBOL_GPL vmlinux 0xf0a0c69d init_iova_domain -EXPORT_SYMBOL_GPL vmlinux 0xf0aa0bde crypto_register_ahash -EXPORT_SYMBOL_GPL vmlinux 0xf0ad766d blk_req_needs_zone_write_lock -EXPORT_SYMBOL_GPL vmlinux 0xf0b73512 desc_to_gpio -EXPORT_SYMBOL_GPL vmlinux 0xf0bb444b stmpe_block_write -EXPORT_SYMBOL_GPL vmlinux 0xf0bf8c46 iommu_sva_find -EXPORT_SYMBOL_GPL vmlinux 0xf0c1d4f1 ata_noop_qc_prep -EXPORT_SYMBOL_GPL vmlinux 0xf0c39cc9 platform_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf0b14342 usb_root_hub_lost_power +EXPORT_SYMBOL_GPL vmlinux 0xf0ceb087 lp8788_write_byte EXPORT_SYMBOL_GPL vmlinux 0xf0d478c7 list_lru_add -EXPORT_SYMBOL_GPL vmlinux 0xf0e52258 component_bind_all -EXPORT_SYMBOL_GPL vmlinux 0xf0f26e02 fsl_mc_bus_dpdcei_type -EXPORT_SYMBOL_GPL vmlinux 0xf103fba9 dma_buf_get -EXPORT_SYMBOL_GPL vmlinux 0xf1047e01 usb_enable_ltm -EXPORT_SYMBOL_GPL vmlinux 0xf10dac11 dev_pm_opp_set_rate +EXPORT_SYMBOL_GPL vmlinux 0xf0e338f0 device_match_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xf0e65531 fsverity_ioctl_enable +EXPORT_SYMBOL_GPL vmlinux 0xf0e7117f perf_event_create_kernel_counter +EXPORT_SYMBOL_GPL vmlinux 0xf0ebf934 gpiod_get_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xf0efa1eb fsnotify_put_group +EXPORT_SYMBOL_GPL vmlinux 0xf10c8a00 pci_restore_msi_state +EXPORT_SYMBOL_GPL vmlinux 0xf120acd1 acpi_cppc_processor_exit EXPORT_SYMBOL_GPL vmlinux 0xf12180fd imx_1443x_dram_pll -EXPORT_SYMBOL_GPL vmlinux 0xf1250dec bio_associate_blkg_from_css -EXPORT_SYMBOL_GPL vmlinux 0xf12b1519 crypto_stats_aead_encrypt -EXPORT_SYMBOL_GPL vmlinux 0xf133bd3f kvm_vcpu_unmap -EXPORT_SYMBOL_GPL vmlinux 0xf137a886 sysfs_unmerge_group -EXPORT_SYMBOL_GPL vmlinux 0xf13ca238 debugfs_real_fops -EXPORT_SYMBOL_GPL vmlinux 0xf15139eb edac_mc_alloc -EXPORT_SYMBOL_GPL vmlinux 0xf1755528 kvm_vcpu_read_guest +EXPORT_SYMBOL_GPL vmlinux 0xf12a227c dpbp_open +EXPORT_SYMBOL_GPL vmlinux 0xf1405271 set_cpus_allowed_ptr +EXPORT_SYMBOL_GPL vmlinux 0xf149e2b9 crypto_register_templates +EXPORT_SYMBOL_GPL vmlinux 0xf1566892 __sock_recv_ts_and_drops +EXPORT_SYMBOL_GPL vmlinux 0xf1583a6e irq_domain_remove +EXPORT_SYMBOL_GPL vmlinux 0xf158ab1b ata_bmdma_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0xf17faa66 devm_device_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0xf183798d devlink_port_attrs_pci_pf_set EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off EXPORT_SYMBOL_GPL vmlinux 0xf188a662 rhashtable_walk_exit -EXPORT_SYMBOL_GPL vmlinux 0xf19408c3 store_sampling_rate -EXPORT_SYMBOL_GPL vmlinux 0xf19972c6 pci_epc_unmap_addr -EXPORT_SYMBOL_GPL vmlinux 0xf19c77be devm_phy_put -EXPORT_SYMBOL_GPL vmlinux 0xf19e73ad fw_devlink_purge_absent_suppliers -EXPORT_SYMBOL_GPL vmlinux 0xf1a3f14d irq_chip_ack_parent -EXPORT_SYMBOL_GPL vmlinux 0xf1bcf977 dev_pm_enable_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0xf1bd5f7e PageHuge -EXPORT_SYMBOL_GPL vmlinux 0xf1c1245c amba_apb_device_add_res -EXPORT_SYMBOL_GPL vmlinux 0xf1c296fc devm_gpiod_get_optional -EXPORT_SYMBOL_GPL vmlinux 0xf1cae4ea dma_run_dependencies -EXPORT_SYMBOL_GPL vmlinux 0xf1e19aa1 kthread_func -EXPORT_SYMBOL_GPL vmlinux 0xf1e296b5 irq_domain_free_irqs_parent -EXPORT_SYMBOL_GPL vmlinux 0xf1f21de2 __fsnotify_parent -EXPORT_SYMBOL_GPL vmlinux 0xf1f8f190 of_clk_hw_onecell_get -EXPORT_SYMBOL_GPL vmlinux 0xf1fa9b1f irq_get_default_host -EXPORT_SYMBOL_GPL vmlinux 0xf1fb3f49 pci_find_vsec_capability -EXPORT_SYMBOL_GPL vmlinux 0xf1fcb575 usb_get_dr_mode -EXPORT_SYMBOL_GPL vmlinux 0xf20798cd devm_ti_sci_get_handle +EXPORT_SYMBOL_GPL vmlinux 0xf19848e4 crypto_alloc_acomp +EXPORT_SYMBOL_GPL vmlinux 0xf1b2e99f regmap_fields_read +EXPORT_SYMBOL_GPL vmlinux 0xf1b77f68 meson_aoclkc_probe +EXPORT_SYMBOL_GPL vmlinux 0xf1bf2a33 crypto_alloc_ahash +EXPORT_SYMBOL_GPL vmlinux 0xf1d4c8e4 bio_start_io_acct +EXPORT_SYMBOL_GPL vmlinux 0xf1dc451a da903x_read +EXPORT_SYMBOL_GPL vmlinux 0xf1dc55f6 fuse_conn_init +EXPORT_SYMBOL_GPL vmlinux 0xf1e78b70 xhci_drop_endpoint +EXPORT_SYMBOL_GPL vmlinux 0xf1ebf89c timer_unstable_counter_workaround +EXPORT_SYMBOL_GPL vmlinux 0xf1f2224d cpuidle_get_driver EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0xf22258d1 extcon_set_property -EXPORT_SYMBOL_GPL vmlinux 0xf2283eb8 ata_sff_qc_issue -EXPORT_SYMBOL_GPL vmlinux 0xf22cbe75 devlink_param_publish -EXPORT_SYMBOL_GPL vmlinux 0xf23d7899 xfrm_dev_state_add -EXPORT_SYMBOL_GPL vmlinux 0xf23edf0e sata_std_hardreset EXPORT_SYMBOL_GPL vmlinux 0xf241e46f topology_set_thermal_pressure -EXPORT_SYMBOL_GPL vmlinux 0xf245ede5 amba_ahb_device_add -EXPORT_SYMBOL_GPL vmlinux 0xf256ee0b sata_set_spd -EXPORT_SYMBOL_GPL vmlinux 0xf2792dcd dev_pm_opp_detach_genpd +EXPORT_SYMBOL_GPL vmlinux 0xf24574a5 kthread_unpark +EXPORT_SYMBOL_GPL vmlinux 0xf24848c1 scsi_ioctl_block_when_processing_errors +EXPORT_SYMBOL_GPL vmlinux 0xf249081b crypto_unregister_scomp +EXPORT_SYMBOL_GPL vmlinux 0xf2498a2c kobject_move +EXPORT_SYMBOL_GPL vmlinux 0xf26cf1fa devlink_flash_update_timeout_notify EXPORT_SYMBOL_GPL vmlinux 0xf27d0a7b gnttab_grant_foreign_access_ref +EXPORT_SYMBOL_GPL vmlinux 0xf27f9bad usb_driver_release_interface +EXPORT_SYMBOL_GPL vmlinux 0xf28e619a efivar_entry_iter +EXPORT_SYMBOL_GPL vmlinux 0xf2952ea1 fsl_mc_bus_dprc_type EXPORT_SYMBOL_GPL vmlinux 0xf2967796 ring_buffer_record_on -EXPORT_SYMBOL_GPL vmlinux 0xf29964f6 __vfs_removexattr_locked -EXPORT_SYMBOL_GPL vmlinux 0xf29aed2a mmu_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf2a97371 gpiod_toggle_active_low -EXPORT_SYMBOL_GPL vmlinux 0xf2ac14a5 acpi_driver_match_device +EXPORT_SYMBOL_GPL vmlinux 0xf29e1dcf imx_pinconf_set_scu EXPORT_SYMBOL_GPL vmlinux 0xf2b33cb7 memory_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xf2b70e81 ahci_platform_suspend_host -EXPORT_SYMBOL_GPL vmlinux 0xf2c204d6 i2c_new_scanned_device -EXPORT_SYMBOL_GPL vmlinux 0xf2c4e614 __traceiter_rpm_idle -EXPORT_SYMBOL_GPL vmlinux 0xf2d38efb synth_event_add_val -EXPORT_SYMBOL_GPL vmlinux 0xf2d3a704 scmi_protocol_register -EXPORT_SYMBOL_GPL vmlinux 0xf2dcc346 regmap_multi_reg_write_bypassed +EXPORT_SYMBOL_GPL vmlinux 0xf2ca62bc raw_hash_sk +EXPORT_SYMBOL_GPL vmlinux 0xf2cc45ab led_sysfs_disable +EXPORT_SYMBOL_GPL vmlinux 0xf2e7a3fb ahci_platform_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xf2f7a05a device_link_del EXPORT_SYMBOL_GPL vmlinux 0xf2fb61bd vprintk_default -EXPORT_SYMBOL_GPL vmlinux 0xf303c095 regmap_write_async EXPORT_SYMBOL_GPL vmlinux 0xf30a5502 cpufreq_enable_boost_support -EXPORT_SYMBOL_GPL vmlinux 0xf30d7e68 dm_copy_name_and_uuid +EXPORT_SYMBOL_GPL vmlinux 0xf30c1e62 pci_epc_get_msix 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 0xf31f1b1f pm_generic_suspend_late EXPORT_SYMBOL_GPL vmlinux 0xf32bdc5d unregister_xenstore_notifier +EXPORT_SYMBOL_GPL vmlinux 0xf32cb57b fsnotify_alloc_group EXPORT_SYMBOL_GPL vmlinux 0xf331236f btree_geo32 -EXPORT_SYMBOL_GPL vmlinux 0xf33a0891 cpuidle_get_cpu_driver -EXPORT_SYMBOL_GPL vmlinux 0xf34f9892 watchdog_set_last_hw_keepalive -EXPORT_SYMBOL_GPL vmlinux 0xf3512a1b extcon_set_state_sync +EXPORT_SYMBOL_GPL vmlinux 0xf349e209 usb_hub_clear_tt_buffer EXPORT_SYMBOL_GPL vmlinux 0xf352023f memory_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xf35fa39f pm_generic_restore_noirq +EXPORT_SYMBOL_GPL vmlinux 0xf353b37d thermal_zone_get_slope +EXPORT_SYMBOL_GPL vmlinux 0xf36cb53d rockchip_clk_register_armclk EXPORT_SYMBOL_GPL vmlinux 0xf3797506 mpi_ec_deinit -EXPORT_SYMBOL_GPL vmlinux 0xf3806a99 clk_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0xf37a22db pm_genpd_add_subdomain +EXPORT_SYMBOL_GPL vmlinux 0xf37f27ad dw_pcie_upconfig_setup EXPORT_SYMBOL_GPL vmlinux 0xf3808cb1 get_state_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0xf3816acb pci_generic_config_write32 EXPORT_SYMBOL_GPL vmlinux 0xf386bbb4 housekeeping_cpumask -EXPORT_SYMBOL_GPL vmlinux 0xf39a9bf1 gen10g_config_aneg -EXPORT_SYMBOL_GPL vmlinux 0xf3ab46ee devm_bitmap_zalloc +EXPORT_SYMBOL_GPL vmlinux 0xf3989f39 dax_inode +EXPORT_SYMBOL_GPL vmlinux 0xf3aebd1e clk_hw_get_parent EXPORT_SYMBOL_GPL vmlinux 0xf3b451ca kdb_poll_funcs EXPORT_SYMBOL_GPL vmlinux 0xf3b95d79 btree_remove -EXPORT_SYMBOL_GPL vmlinux 0xf3bf6179 driver_find -EXPORT_SYMBOL_GPL vmlinux 0xf3d20030 blk_queue_can_use_dma_map_merging -EXPORT_SYMBOL_GPL vmlinux 0xf3e41bc1 simple_attr_read -EXPORT_SYMBOL_GPL vmlinux 0xf3e4eb77 rio_mport_get_physefb -EXPORT_SYMBOL_GPL vmlinux 0xf3ed8fb8 encrypt_blob -EXPORT_SYMBOL_GPL vmlinux 0xf40bd0ff ata_port_desc -EXPORT_SYMBOL_GPL vmlinux 0xf43ba04f sysfs_remove_files -EXPORT_SYMBOL_GPL vmlinux 0xf4454697 fuse_get_unique -EXPORT_SYMBOL_GPL vmlinux 0xf447e92c tty_init_termios -EXPORT_SYMBOL_GPL vmlinux 0xf44c38ba genphy_c45_pma_resume -EXPORT_SYMBOL_GPL vmlinux 0xf450523f ata_sff_irq_on -EXPORT_SYMBOL_GPL vmlinux 0xf46346d0 request_firmware_direct +EXPORT_SYMBOL_GPL vmlinux 0xf3c8fc1a kobject_init_and_add +EXPORT_SYMBOL_GPL vmlinux 0xf3ca61bd usb_of_get_interface_node +EXPORT_SYMBOL_GPL vmlinux 0xf3db9bae mtk_hw_get_value +EXPORT_SYMBOL_GPL vmlinux 0xf3e64db0 udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xf3f5dfe2 l3mdev_ifindex_lookup_by_table_id +EXPORT_SYMBOL_GPL vmlinux 0xf4005c7e rio_request_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0xf42f56f4 serial8250_do_set_divisor +EXPORT_SYMBOL_GPL vmlinux 0xf450568c public_key_subtype +EXPORT_SYMBOL_GPL vmlinux 0xf4602a50 split_page EXPORT_SYMBOL_GPL vmlinux 0xf4689d50 linkmode_set_pause -EXPORT_SYMBOL_GPL vmlinux 0xf46b4e7d i2c_acpi_find_adapter_by_handle -EXPORT_SYMBOL_GPL vmlinux 0xf472c6fa devlink_port_attrs_pci_vf_set -EXPORT_SYMBOL_GPL vmlinux 0xf4733d03 fsl_mc_device_group -EXPORT_SYMBOL_GPL vmlinux 0xf474d1b1 iommu_dev_disable_feature +EXPORT_SYMBOL_GPL vmlinux 0xf46ca764 sysfs_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xf47257d3 pktgen_xfrm_outer_mode_output +EXPORT_SYMBOL_GPL vmlinux 0xf4765070 devm_release_action EXPORT_SYMBOL_GPL vmlinux 0xf47654df irq_check_status_bit -EXPORT_SYMBOL_GPL vmlinux 0xf4785c04 replace_page_cache_page -EXPORT_SYMBOL_GPL vmlinux 0xf479ed45 dax_supported +EXPORT_SYMBOL_GPL vmlinux 0xf479e950 kvm_write_guest_offset_cached +EXPORT_SYMBOL_GPL vmlinux 0xf490a765 mtk_pinconf_adv_pull_get +EXPORT_SYMBOL_GPL vmlinux 0xf4938f20 xenbus_dev_cancel +EXPORT_SYMBOL_GPL vmlinux 0xf495b0a6 __rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf4962221 rio_register_driver EXPORT_SYMBOL_GPL vmlinux 0xf4a00349 __tracepoint_block_rq_insert +EXPORT_SYMBOL_GPL vmlinux 0xf4a27961 lwtunnel_state_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf4a2e9af reset_simple_ops +EXPORT_SYMBOL_GPL vmlinux 0xf4a6039b cpufreq_cooling_unregister EXPORT_SYMBOL_GPL vmlinux 0xf4af35c2 rcu_gp_is_normal -EXPORT_SYMBOL_GPL vmlinux 0xf4b5ac81 fsl_mc_portal_allocate -EXPORT_SYMBOL_GPL vmlinux 0xf4bc7b2d add_disk_randomness -EXPORT_SYMBOL_GPL vmlinux 0xf4bd5d8d blk_mq_complete_request_remote -EXPORT_SYMBOL_GPL vmlinux 0xf4c3e020 device_remove_file_self -EXPORT_SYMBOL_GPL vmlinux 0xf4ca7dc3 i2c_dw_probe_master +EXPORT_SYMBOL_GPL vmlinux 0xf4afa313 __platform_driver_register +EXPORT_SYMBOL_GPL vmlinux 0xf4b4d708 vfs_listxattr EXPORT_SYMBOL_GPL vmlinux 0xf4cd9f8f reset_control_bulk_release EXPORT_SYMBOL_GPL vmlinux 0xf4e35e28 sbitmap_prepare_to_wait -EXPORT_SYMBOL_GPL vmlinux 0xf502ef10 firmware_request_nowarn -EXPORT_SYMBOL_GPL vmlinux 0xf506348d ping_bind -EXPORT_SYMBOL_GPL vmlinux 0xf510f32c fuse_fill_super_common -EXPORT_SYMBOL_GPL vmlinux 0xf5150a7d sk_set_peek_off -EXPORT_SYMBOL_GPL vmlinux 0xf533b30a lp8788_update_bits -EXPORT_SYMBOL_GPL vmlinux 0xf536eef6 nvdimm_security_setup_events +EXPORT_SYMBOL_GPL vmlinux 0xf4e46f77 iomap_writepage +EXPORT_SYMBOL_GPL vmlinux 0xf4eb529a dev_pm_opp_set_opp +EXPORT_SYMBOL_GPL vmlinux 0xf4fac566 vp_modern_get_queue_enable +EXPORT_SYMBOL_GPL vmlinux 0xf518aa3d gpiochip_generic_free +EXPORT_SYMBOL_GPL vmlinux 0xf5193b12 is_virtio_device EXPORT_SYMBOL_GPL vmlinux 0xf548988d put_iova_domain EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm +EXPORT_SYMBOL_GPL vmlinux 0xf54d0973 kthread_mod_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0xf54f003b xhci_resume EXPORT_SYMBOL_GPL vmlinux 0xf553318d cpuidle_pause_and_lock -EXPORT_SYMBOL_GPL vmlinux 0xf554a02e shmem_zero_setup -EXPORT_SYMBOL_GPL vmlinux 0xf58972ec iomap_truncate_page +EXPORT_SYMBOL_GPL vmlinux 0xf5562999 extcon_set_property_sync +EXPORT_SYMBOL_GPL vmlinux 0xf58cd8ca xenbus_dev_fatal +EXPORT_SYMBOL_GPL vmlinux 0xf5a12780 perf_event_release_kernel EXPORT_SYMBOL_GPL vmlinux 0xf5a3ba99 linear_range_values_in_range EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus -EXPORT_SYMBOL_GPL vmlinux 0xf5a8f74b usb_deregister_dev -EXPORT_SYMBOL_GPL vmlinux 0xf5b934e4 cpuidle_get_driver -EXPORT_SYMBOL_GPL vmlinux 0xf5baa018 wakeup_source_create -EXPORT_SYMBOL_GPL vmlinux 0xf5c6bccf uhci_reset_hc -EXPORT_SYMBOL_GPL vmlinux 0xf5ef4216 devm_regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xf5bba123 __serdev_device_driver_register EXPORT_SYMBOL_GPL vmlinux 0xf5f370e0 async_schedule_node -EXPORT_SYMBOL_GPL vmlinux 0xf61782f9 fb_deferred_io_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xf608b899 devm_extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0xf6092539 request_firmware_direct +EXPORT_SYMBOL_GPL vmlinux 0xf60e7583 vfs_truncate +EXPORT_SYMBOL_GPL vmlinux 0xf61a664b restore_online_page_callback EXPORT_SYMBOL_GPL vmlinux 0xf61c6b74 hv_do_hypercall -EXPORT_SYMBOL_GPL vmlinux 0xf620ecd5 genpd_dev_pm_attach -EXPORT_SYMBOL_GPL vmlinux 0xf62ae917 pci_hp_add_bridge -EXPORT_SYMBOL_GPL vmlinux 0xf62c0d8c regulator_set_voltage_sel_pickable_regmap -EXPORT_SYMBOL_GPL vmlinux 0xf63ffd49 __sock_recv_wifi_status -EXPORT_SYMBOL_GPL vmlinux 0xf6484ea6 file_ra_state_init EXPORT_SYMBOL_GPL vmlinux 0xf64aaa25 alarm_init -EXPORT_SYMBOL_GPL vmlinux 0xf6552262 blk_lld_busy -EXPORT_SYMBOL_GPL vmlinux 0xf6588112 ata_acpi_stm -EXPORT_SYMBOL_GPL vmlinux 0xf65dd7d8 meson8_aobus_parse_dt_extra +EXPORT_SYMBOL_GPL vmlinux 0xf64bdc12 regulator_set_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xf66127d1 dev_pm_opp_get_max_transition_latency EXPORT_SYMBOL_GPL vmlinux 0xf663ee2f pcap_adc_sync -EXPORT_SYMBOL_GPL vmlinux 0xf666fa04 __sock_recv_timestamp -EXPORT_SYMBOL_GPL vmlinux 0xf678179d bpf_offload_dev_netdev_register -EXPORT_SYMBOL_GPL vmlinux 0xf687d9a0 md_start -EXPORT_SYMBOL_GPL vmlinux 0xf6905574 edac_pci_alloc_ctl_info -EXPORT_SYMBOL_GPL vmlinux 0xf69184db of_clk_get_parent_count -EXPORT_SYMBOL_GPL vmlinux 0xf692e207 debugfs_create_atomic_t +EXPORT_SYMBOL_GPL vmlinux 0xf668afea mddev_init +EXPORT_SYMBOL_GPL vmlinux 0xf66ae0b8 xdp_rxq_info_unused +EXPORT_SYMBOL_GPL vmlinux 0xf66e207a blk_add_driver_data +EXPORT_SYMBOL_GPL vmlinux 0xf66ec1e8 bdi_dev_name +EXPORT_SYMBOL_GPL vmlinux 0xf685e46c genphy_c45_aneg_done +EXPORT_SYMBOL_GPL vmlinux 0xf689a43f irq_domain_add_legacy +EXPORT_SYMBOL_GPL vmlinux 0xf68e5819 tpm2_flush_context EXPORT_SYMBOL_GPL vmlinux 0xf6a28554 region_intersects -EXPORT_SYMBOL_GPL vmlinux 0xf6ab120a skb_to_sgvec -EXPORT_SYMBOL_GPL vmlinux 0xf6b341aa get_cpu_device -EXPORT_SYMBOL_GPL vmlinux 0xf6b76202 wait_on_page_writeback +EXPORT_SYMBOL_GPL vmlinux 0xf6a52214 regmap_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0xf6a882b5 bgmac_enet_remove +EXPORT_SYMBOL_GPL vmlinux 0xf6afb012 anon_inode_getfile EXPORT_SYMBOL_GPL vmlinux 0xf6beee37 __SCK__tp_func_pelt_cfs_tp EXPORT_SYMBOL_GPL vmlinux 0xf6c71a25 cper_severity_str EXPORT_SYMBOL_GPL vmlinux 0xf6c8dc62 cpu_hotplug_enable -EXPORT_SYMBOL_GPL vmlinux 0xf6d658f4 devm_acpi_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xf6d57850 ata_dev_next +EXPORT_SYMBOL_GPL vmlinux 0xf6d6908d regulator_set_active_discharge_regmap +EXPORT_SYMBOL_GPL vmlinux 0xf6d99186 genphy_c45_check_and_restart_aneg EXPORT_SYMBOL_GPL vmlinux 0xf6e772c3 irq_bypass_unregister_producer EXPORT_SYMBOL_GPL vmlinux 0xf6e874f5 ata_timing_merge -EXPORT_SYMBOL_GPL vmlinux 0xf6ef5d1c devm_nvmem_device_get -EXPORT_SYMBOL_GPL vmlinux 0xf6f73829 devres_destroy -EXPORT_SYMBOL_GPL vmlinux 0xf7055e71 fib_table_lookup -EXPORT_SYMBOL_GPL vmlinux 0xf70c53d2 fsverity_verify_bio -EXPORT_SYMBOL_GPL vmlinux 0xf7148574 platform_get_irq_byname -EXPORT_SYMBOL_GPL vmlinux 0xf71e89ae phy_pm_runtime_put_sync +EXPORT_SYMBOL_GPL vmlinux 0xf6e8e1d0 rio_mport_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0xf708b1ee fib_nh_common_init +EXPORT_SYMBOL_GPL vmlinux 0xf708fa3d fsnotify +EXPORT_SYMBOL_GPL vmlinux 0xf711bd2c genphy_c45_an_disable_aneg +EXPORT_SYMBOL_GPL vmlinux 0xf71cb695 serial8250_tx_chars +EXPORT_SYMBOL_GPL vmlinux 0xf7213637 pci_ioremap_wc_bar EXPORT_SYMBOL_GPL vmlinux 0xf72a65ea tty_get_char_size EXPORT_SYMBOL_GPL vmlinux 0xf730fb4a qcom_smem_state_update_bits -EXPORT_SYMBOL_GPL vmlinux 0xf7386416 skb_send_sock_locked -EXPORT_SYMBOL_GPL vmlinux 0xf73e6418 devm_memunmap_pages +EXPORT_SYMBOL_GPL vmlinux 0xf73475ea stmpe_enable +EXPORT_SYMBOL_GPL vmlinux 0xf743e840 ata_ehi_push_desc 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 0xf74ca82b sdio_writeb_readb EXPORT_SYMBOL_GPL vmlinux 0xf74e7c93 jump_label_rate_limit -EXPORT_SYMBOL_GPL vmlinux 0xf76b23ff skcipher_register_instance -EXPORT_SYMBOL_GPL vmlinux 0xf771c0df __traceiter_xdp_exception -EXPORT_SYMBOL_GPL vmlinux 0xf777e721 platform_get_mem_or_io +EXPORT_SYMBOL_GPL vmlinux 0xf754e93a devm_create_dev_dax +EXPORT_SYMBOL_GPL vmlinux 0xf7558c48 fixed_phy_register +EXPORT_SYMBOL_GPL vmlinux 0xf756c5c5 dev_pm_genpd_resume +EXPORT_SYMBOL_GPL vmlinux 0xf76100d7 pm_runtime_barrier +EXPORT_SYMBOL_GPL vmlinux 0xf7627d95 thermal_zone_of_sensor_unregister 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 0xf78704bd clk_hw_get_name -EXPORT_SYMBOL_GPL vmlinux 0xf7905d14 vring_del_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0xf7908b41 devfreq_event_enable_edev -EXPORT_SYMBOL_GPL vmlinux 0xf7940679 of_irq_get_byname -EXPORT_SYMBOL_GPL vmlinux 0xf79b0bd0 mbox_request_channel -EXPORT_SYMBOL_GPL vmlinux 0xf7a10354 pwm_get_chip_data -EXPORT_SYMBOL_GPL vmlinux 0xf7a47d45 irq_chip_disable_parent +EXPORT_SYMBOL_GPL vmlinux 0xf7989aef usb_hcd_unmap_urb_setup_for_dma EXPORT_SYMBOL_GPL vmlinux 0xf7afb369 btree_init -EXPORT_SYMBOL_GPL vmlinux 0xf7b0970a usb_of_has_combined_node +EXPORT_SYMBOL_GPL vmlinux 0xf7bad426 securityfs_create_symlink EXPORT_SYMBOL_GPL vmlinux 0xf7bc95b0 devlink_fmsg_pair_nest_start -EXPORT_SYMBOL_GPL vmlinux 0xf7c1d2c4 imx_pinctrl_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0xf7c2a869 gov_update_cpu_data +EXPORT_SYMBOL_GPL vmlinux 0xf7c3aa04 pinctrl_force_sleep EXPORT_SYMBOL_GPL vmlinux 0xf7c3f273 xen_resume_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0xf7cf18a2 __devm_regmap_init_mmio_clk EXPORT_SYMBOL_GPL vmlinux 0xf7d961d8 clk_hw_unregister_composite -EXPORT_SYMBOL_GPL vmlinux 0xf7fb11e3 led_trigger_blink_oneshot -EXPORT_SYMBOL_GPL vmlinux 0xf80f87be blk_mq_virtio_map_queues -EXPORT_SYMBOL_GPL vmlinux 0xf810479b xenbus_watch_path -EXPORT_SYMBOL_GPL vmlinux 0xf81887d1 spi_register_controller -EXPORT_SYMBOL_GPL vmlinux 0xf82493fa virtqueue_add_sgs +EXPORT_SYMBOL_GPL vmlinux 0xf7dbbd7b of_irq_get +EXPORT_SYMBOL_GPL vmlinux 0xf7ec6f20 bgmac_enet_suspend +EXPORT_SYMBOL_GPL vmlinux 0xf7f1dfdd usb_sg_init +EXPORT_SYMBOL_GPL vmlinux 0xf7f78497 dw_pcie_setup_rc +EXPORT_SYMBOL_GPL vmlinux 0xf8029d8f mddev_resume +EXPORT_SYMBOL_GPL vmlinux 0xf806d033 i2c_new_dummy_device +EXPORT_SYMBOL_GPL vmlinux 0xf8084678 ata_sff_thaw +EXPORT_SYMBOL_GPL vmlinux 0xf814d7cc sched_trace_rq_avg_dl +EXPORT_SYMBOL_GPL vmlinux 0xf8192937 pci_store_saved_state +EXPORT_SYMBOL_GPL vmlinux 0xf81e5742 sdio_readsb +EXPORT_SYMBOL_GPL vmlinux 0xf8206cb6 fsverity_file_open EXPORT_SYMBOL_GPL vmlinux 0xf82f3657 work_on_cpu -EXPORT_SYMBOL_GPL vmlinux 0xf84a435a tcp_rate_check_app_limited +EXPORT_SYMBOL_GPL vmlinux 0xf84bc574 platform_device_add_resources EXPORT_SYMBOL_GPL vmlinux 0xf852d746 __tracepoint_tcp_send_reset -EXPORT_SYMBOL_GPL vmlinux 0xf85b377b spi_add_device +EXPORT_SYMBOL_GPL vmlinux 0xf853e57e dm_get_queue_limits +EXPORT_SYMBOL_GPL vmlinux 0xf85a28f8 dw_pcie_ep_linkup EXPORT_SYMBOL_GPL vmlinux 0xf861bd31 rockchip_clk_register_ddrclk -EXPORT_SYMBOL_GPL vmlinux 0xf86e2208 gpiochip_remove_pin_ranges -EXPORT_SYMBOL_GPL vmlinux 0xf87272d5 devm_clk_hw_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf872ca55 mmc_send_abort_tuning -EXPORT_SYMBOL_GPL vmlinux 0xf88829f1 apply_to_existing_page_range -EXPORT_SYMBOL_GPL vmlinux 0xf88d96c8 i2c_dw_configure_master -EXPORT_SYMBOL_GPL vmlinux 0xf890188e skb_defer_rx_timestamp -EXPORT_SYMBOL_GPL vmlinux 0xf890c9d8 mtk_mmsys_ddp_disconnect -EXPORT_SYMBOL_GPL vmlinux 0xf8929a06 crypto_ahash_final -EXPORT_SYMBOL_GPL vmlinux 0xf8a09d25 umd_load_blob -EXPORT_SYMBOL_GPL vmlinux 0xf8acf472 rio_local_get_device_id -EXPORT_SYMBOL_GPL vmlinux 0xf8add400 debugfs_create_u32 -EXPORT_SYMBOL_GPL vmlinux 0xf8c5d00d ethnl_cable_test_result -EXPORT_SYMBOL_GPL vmlinux 0xf8d402c0 clk_regmap_gate_ops -EXPORT_SYMBOL_GPL vmlinux 0xf8e73ee4 fsverity_ioctl_read_metadata +EXPORT_SYMBOL_GPL vmlinux 0xf8770e62 fwnode_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0xf881317d skb_complete_wifi_ack +EXPORT_SYMBOL_GPL vmlinux 0xf8856b3f input_ff_create +EXPORT_SYMBOL_GPL vmlinux 0xf88ead49 pci_epc_mem_exit +EXPORT_SYMBOL_GPL vmlinux 0xf890c11d meson_a1_parse_dt_extra +EXPORT_SYMBOL_GPL vmlinux 0xf8a1196c phy_set_mode_ext +EXPORT_SYMBOL_GPL vmlinux 0xf8a1c0e0 vfs_submount +EXPORT_SYMBOL_GPL vmlinux 0xf8a76fa5 clk_hw_unregister_mux +EXPORT_SYMBOL_GPL vmlinux 0xf8b24b05 skb_gso_validate_network_len +EXPORT_SYMBOL_GPL vmlinux 0xf8ca094d serial8250_release_dma +EXPORT_SYMBOL_GPL vmlinux 0xf8cf3411 pinctrl_add_gpio_ranges +EXPORT_SYMBOL_GPL vmlinux 0xf8dbffdf irq_chip_enable_parent +EXPORT_SYMBOL_GPL vmlinux 0xf8e1a558 trace_define_field +EXPORT_SYMBOL_GPL vmlinux 0xf8f0cb34 edac_mc_find_csrow_by_page EXPORT_SYMBOL_GPL vmlinux 0xf8f3a0fb ata_ratelimit -EXPORT_SYMBOL_GPL vmlinux 0xf8fcdcf6 register_pernet_device -EXPORT_SYMBOL_GPL vmlinux 0xf9003a15 fat_dir_empty EXPORT_SYMBOL_GPL vmlinux 0xf900c77d zynqmp_pm_clock_disable EXPORT_SYMBOL_GPL vmlinux 0xf9093f5b __tracepoint_cpu_frequency -EXPORT_SYMBOL_GPL vmlinux 0xf90b2c34 irq_domain_remove -EXPORT_SYMBOL_GPL vmlinux 0xf90eab83 user_destroy -EXPORT_SYMBOL_GPL vmlinux 0xf92efcc8 stmpe_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xf937c076 dev_pm_opp_set_regulators -EXPORT_SYMBOL_GPL vmlinux 0xf9459320 peernet2id_alloc -EXPORT_SYMBOL_GPL vmlinux 0xf94faf7a ip6_datagram_connect_v6_only +EXPORT_SYMBOL_GPL vmlinux 0xf90fa9b8 crypto_alloc_shash +EXPORT_SYMBOL_GPL vmlinux 0xf91901af serial8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0xf91a8bdb pinctrl_enable +EXPORT_SYMBOL_GPL vmlinux 0xf924a15a of_usb_update_otg_caps +EXPORT_SYMBOL_GPL vmlinux 0xf9291fb4 devlink_remote_reload_actions_performed +EXPORT_SYMBOL_GPL vmlinux 0xf933e96d fwnode_graph_get_remote_node +EXPORT_SYMBOL_GPL vmlinux 0xf93d0131 __acpi_node_get_property_reference +EXPORT_SYMBOL_GPL vmlinux 0xf9480730 acomp_request_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf94bb13f wm831x_set_bits EXPORT_SYMBOL_GPL vmlinux 0xf95322f4 kthread_parkme -EXPORT_SYMBOL_GPL vmlinux 0xf955970a genphy_c45_read_mdix EXPORT_SYMBOL_GPL vmlinux 0xf955e9c5 bprintf +EXPORT_SYMBOL_GPL vmlinux 0xf95698f0 phy_resolve_aneg_linkmode +EXPORT_SYMBOL_GPL vmlinux 0xf95ed29f tps6586x_reads +EXPORT_SYMBOL_GPL vmlinux 0xf964ad1e alloc_empty_file EXPORT_SYMBOL_GPL vmlinux 0xf967422b HYPERVISOR_xen_version -EXPORT_SYMBOL_GPL vmlinux 0xf96d06ef gpiochip_line_is_open_source -EXPORT_SYMBOL_GPL vmlinux 0xf9712312 cpufreq_frequency_table_get_index -EXPORT_SYMBOL_GPL vmlinux 0xf9798ed2 blk_poll -EXPORT_SYMBOL_GPL vmlinux 0xf98c4485 ata_platform_remove_one -EXPORT_SYMBOL_GPL vmlinux 0xf98e7018 ahci_dev_classify -EXPORT_SYMBOL_GPL vmlinux 0xf991f461 ehci_init_driver -EXPORT_SYMBOL_GPL vmlinux 0xf994c72c dev_pm_qos_add_request -EXPORT_SYMBOL_GPL vmlinux 0xf99b5a2c usb_phy_roothub_resume -EXPORT_SYMBOL_GPL vmlinux 0xf99eaa46 blk_trace_startstop +EXPORT_SYMBOL_GPL vmlinux 0xf96e6b94 genphy_c45_an_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0xf96ee7fd mdio_mux_init +EXPORT_SYMBOL_GPL vmlinux 0xf98c1706 __traceiter_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0xf9910242 vcpu_put +EXPORT_SYMBOL_GPL vmlinux 0xf99ba7cf ping_close EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies -EXPORT_SYMBOL_GPL vmlinux 0xf9a2ef75 usb_of_get_companion_dev EXPORT_SYMBOL_GPL vmlinux 0xf9a3c5dc zynqmp_pm_load_pdi -EXPORT_SYMBOL_GPL vmlinux 0xf9af6cf7 watchdog_notify_pretimeout +EXPORT_SYMBOL_GPL vmlinux 0xf9a73782 kthread_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xf9aa2345 dev_pm_domain_attach_by_name +EXPORT_SYMBOL_GPL vmlinux 0xf9b279d3 scmi_driver_register EXPORT_SYMBOL_GPL vmlinux 0xf9b34a0b iopf_queue_free -EXPORT_SYMBOL_GPL vmlinux 0xf9b6ebfa usb_phy_roothub_alloc -EXPORT_SYMBOL_GPL vmlinux 0xf9cb9d84 pm_generic_poweroff -EXPORT_SYMBOL_GPL vmlinux 0xf9d157a4 fsstack_copy_attr_all -EXPORT_SYMBOL_GPL vmlinux 0xf9d73e5c imx_pinconf_set_scu -EXPORT_SYMBOL_GPL vmlinux 0xf9db658c phy_pm_runtime_get_sync +EXPORT_SYMBOL_GPL vmlinux 0xf9b48a8a i2c_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0xf9b4dc2c tty_port_tty_hangup +EXPORT_SYMBOL_GPL vmlinux 0xf9b6a616 clkdev_create +EXPORT_SYMBOL_GPL vmlinux 0xf9c2522b mpc8xxx_spi_rx_buf_u8 +EXPORT_SYMBOL_GPL vmlinux 0xf9e1e3f9 perf_event_disable EXPORT_SYMBOL_GPL vmlinux 0xf9ebe553 pci_bridge_emul_init -EXPORT_SYMBOL_GPL vmlinux 0xf9edfeb6 da903x_write -EXPORT_SYMBOL_GPL vmlinux 0xfa05de04 dmaengine_unmap_put -EXPORT_SYMBOL_GPL vmlinux 0xfa094f12 component_add_typed +EXPORT_SYMBOL_GPL vmlinux 0xf9ed99ed clk_register_hisi_phase +EXPORT_SYMBOL_GPL vmlinux 0xf9ffa430 tcp_reno_cong_avoid +EXPORT_SYMBOL_GPL vmlinux 0xfa04eefa unregister_acpi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xfa1ab40d of_usb_host_tpl_support EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops -EXPORT_SYMBOL_GPL vmlinux 0xfa22a8c0 crypto_register_shash -EXPORT_SYMBOL_GPL vmlinux 0xfa2dbe6f sysfs_create_bin_file -EXPORT_SYMBOL_GPL vmlinux 0xfa333414 securityfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0xfa214236 devfreq_cooling_em_register EXPORT_SYMBOL_GPL vmlinux 0xfa349688 aer_recover_queue -EXPORT_SYMBOL_GPL vmlinux 0xfa35d12b ahci_qc_issue -EXPORT_SYMBOL_GPL vmlinux 0xfa55f68f fscrypt_set_context -EXPORT_SYMBOL_GPL vmlinux 0xfa5cbc51 __ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0xfa37c028 kvm_init +EXPORT_SYMBOL_GPL vmlinux 0xfa3af27d wakeup_sources_walk_start +EXPORT_SYMBOL_GPL vmlinux 0xfa40369d mtk_pinconf_drive_set_rev1 +EXPORT_SYMBOL_GPL vmlinux 0xfa412bed dst_cache_get +EXPORT_SYMBOL_GPL vmlinux 0xfa45e538 thermal_zone_device_update EXPORT_SYMBOL_GPL vmlinux 0xfa666974 queue_work_node EXPORT_SYMBOL_GPL vmlinux 0xfa690589 netdev_cmd_to_name -EXPORT_SYMBOL_GPL vmlinux 0xfa69e212 pwmchip_add -EXPORT_SYMBOL_GPL vmlinux 0xfa6ef58b dax_iomap_fault -EXPORT_SYMBOL_GPL vmlinux 0xfa783aa1 da9052_enable_irq -EXPORT_SYMBOL_GPL vmlinux 0xfa9864d3 led_update_brightness -EXPORT_SYMBOL_GPL vmlinux 0xfa9a5893 register_acpi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0xfaa1d52e devm_pinctrl_unregister -EXPORT_SYMBOL_GPL vmlinux 0xfaada8c6 pci_sriov_get_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0xfa77a555 sk_msg_free_partial +EXPORT_SYMBOL_GPL vmlinux 0xfa8efebd __usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0xfa9fbd21 bio_associate_blkg_from_css EXPORT_SYMBOL_GPL vmlinux 0xfab30dc0 mdio_bus_exit +EXPORT_SYMBOL_GPL vmlinux 0xfab35ad6 dma_buf_end_cpu_access EXPORT_SYMBOL_GPL vmlinux 0xfab53ed9 pinctrl_gpio_can_use_line -EXPORT_SYMBOL_GPL vmlinux 0xfab5c5fd fsl_mc_device_remove -EXPORT_SYMBOL_GPL vmlinux 0xfabc43b0 acpi_kobj -EXPORT_SYMBOL_GPL vmlinux 0xfac3ca78 bpfilter_umh_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xfac5e29f iommu_group_add_device +EXPORT_SYMBOL_GPL vmlinux 0xfac9062a __bio_add_page +EXPORT_SYMBOL_GPL vmlinux 0xfac908e2 validate_xmit_skb_list +EXPORT_SYMBOL_GPL vmlinux 0xfad992e8 ata_ehi_clear_desc EXPORT_SYMBOL_GPL vmlinux 0xfad9c827 kill_dax -EXPORT_SYMBOL_GPL vmlinux 0xfae3099b bd_unlink_disk_holder -EXPORT_SYMBOL_GPL vmlinux 0xfb057010 tpm_pm_resume +EXPORT_SYMBOL_GPL vmlinux 0xfb0033a3 relay_open +EXPORT_SYMBOL_GPL vmlinux 0xfb006590 usb_acpi_set_power_state +EXPORT_SYMBOL_GPL vmlinux 0xfb03da9c sock_diag_put_meminfo +EXPORT_SYMBOL_GPL vmlinux 0xfb1c99db devm_platform_ioremap_resource +EXPORT_SYMBOL_GPL vmlinux 0xfb204830 rio_release_dma +EXPORT_SYMBOL_GPL vmlinux 0xfb2354e5 tty_port_default_client_ops +EXPORT_SYMBOL_GPL vmlinux 0xfb27cc8d perf_trace_run_bpf_submit +EXPORT_SYMBOL_GPL vmlinux 0xfb2e992c regmap_get_device EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync -EXPORT_SYMBOL_GPL vmlinux 0xfb62ff81 addrconf_add_linklocal -EXPORT_SYMBOL_GPL vmlinux 0xfb6373d1 hisi_uncore_pmu_offline_cpu -EXPORT_SYMBOL_GPL vmlinux 0xfb65c0e8 hvc_alloc -EXPORT_SYMBOL_GPL vmlinux 0xfb68dc7e virtqueue_enable_cb_prepare +EXPORT_SYMBOL_GPL vmlinux 0xfb3e4d34 devlink_trap_policers_unregister +EXPORT_SYMBOL_GPL vmlinux 0xfb43c5a6 of_property_read_u64_index +EXPORT_SYMBOL_GPL vmlinux 0xfb47fb67 nvdimm_security_setup_events +EXPORT_SYMBOL_GPL vmlinux 0xfb54cccc pinconf_generic_dt_node_to_map +EXPORT_SYMBOL_GPL vmlinux 0xfb5aa872 mmput +EXPORT_SYMBOL_GPL vmlinux 0xfb6ac944 fb_deferred_io_cleanup EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name -EXPORT_SYMBOL_GPL vmlinux 0xfb735d9f devlink_dpipe_table_counter_enabled -EXPORT_SYMBOL_GPL vmlinux 0xfb73adf5 kthread_queue_delayed_work -EXPORT_SYMBOL_GPL vmlinux 0xfb75053d pm_runtime_set_autosuspend_delay -EXPORT_SYMBOL_GPL vmlinux 0xfb7f4a26 nfnl_ct_hook -EXPORT_SYMBOL_GPL vmlinux 0xfb92f09b rio_mport_write_config_16 -EXPORT_SYMBOL_GPL vmlinux 0xfbad30a0 serial8250_clear_and_reinit_fifos -EXPORT_SYMBOL_GPL vmlinux 0xfbaef03b dm_report_zones -EXPORT_SYMBOL_GPL vmlinux 0xfbb8920f component_unbind_all +EXPORT_SYMBOL_GPL vmlinux 0xfb7f3158 debugfs_create_x8 +EXPORT_SYMBOL_GPL vmlinux 0xfb90e00e serdev_device_set_tiocm +EXPORT_SYMBOL_GPL vmlinux 0xfb92ad17 mtk_eint_do_suspend +EXPORT_SYMBOL_GPL vmlinux 0xfb984247 led_trigger_remove +EXPORT_SYMBOL_GPL vmlinux 0xfbb7125d tpm_get_random EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action -EXPORT_SYMBOL_GPL vmlinux 0xfbc43d10 metadata_dst_alloc -EXPORT_SYMBOL_GPL vmlinux 0xfbc53f05 dev_pm_set_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0xfbd31823 add_page_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0xfbd4fbe4 irq_get_domain_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0xfbe13bc7 dev_pm_opp_remove -EXPORT_SYMBOL_GPL vmlinux 0xfbe48cbe xenbus_free_evtchn +EXPORT_SYMBOL_GPL vmlinux 0xfbbd4ec8 unregister_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0xfbeaf7cf tty_port_install EXPORT_SYMBOL_GPL vmlinux 0xfbeeb13c phy_gbit_all_ports_features +EXPORT_SYMBOL_GPL vmlinux 0xfbf16992 sdio_readw 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 0xfc0687e7 ima_file_hash -EXPORT_SYMBOL_GPL vmlinux 0xfc07375e sata_link_scr_lpm -EXPORT_SYMBOL_GPL vmlinux 0xfc0dc813 fuse_dev_release -EXPORT_SYMBOL_GPL vmlinux 0xfc107aba dpm_for_each_dev EXPORT_SYMBOL_GPL vmlinux 0xfc14bb2e dm_get_dev_t +EXPORT_SYMBOL_GPL vmlinux 0xfc1636bb bpf_prog_destroy +EXPORT_SYMBOL_GPL vmlinux 0xfc19802f usb_debug_root EXPORT_SYMBOL_GPL vmlinux 0xfc19bc45 crypto_dh_encode_key EXPORT_SYMBOL_GPL vmlinux 0xfc201b66 sprint_oid EXPORT_SYMBOL_GPL vmlinux 0xfc254d15 gnttab_free_auto_xlat_frames -EXPORT_SYMBOL_GPL vmlinux 0xfc2a3c59 acpi_set_modalias -EXPORT_SYMBOL_GPL vmlinux 0xfc30193c security_inode_mkdir -EXPORT_SYMBOL_GPL vmlinux 0xfc34cdfd fb_bl_default_curve +EXPORT_SYMBOL_GPL vmlinux 0xfc2e67f6 dma_mmap_pages +EXPORT_SYMBOL_GPL vmlinux 0xfc3a8f67 receive_fd EXPORT_SYMBOL_GPL vmlinux 0xfc3b4246 acpi_bus_update_power -EXPORT_SYMBOL_GPL vmlinux 0xfc3d4bdf irq_gc_mask_clr_bit -EXPORT_SYMBOL_GPL vmlinux 0xfc406cb9 fwnode_property_read_u64_array -EXPORT_SYMBOL_GPL vmlinux 0xfc4ad8fa iomap_bmap -EXPORT_SYMBOL_GPL vmlinux 0xfc4ed991 filemap_range_needs_writeback -EXPORT_SYMBOL_GPL vmlinux 0xfc6d930b ip6_redirect -EXPORT_SYMBOL_GPL vmlinux 0xfc719d67 register_virtio_driver -EXPORT_SYMBOL_GPL vmlinux 0xfc7274a6 kobject_move +EXPORT_SYMBOL_GPL vmlinux 0xfc3d881f pwm_apply_state EXPORT_SYMBOL_GPL vmlinux 0xfc746b3c gnttab_page_cache_shrink -EXPORT_SYMBOL_GPL vmlinux 0xfc761d84 perf_aux_output_end -EXPORT_SYMBOL_GPL vmlinux 0xfc89a17b class_unregister +EXPORT_SYMBOL_GPL vmlinux 0xfc846651 devm_kstrdup EXPORT_SYMBOL_GPL vmlinux 0xfc9477b5 zynqmp_pm_set_pll_frac_data -EXPORT_SYMBOL_GPL vmlinux 0xfca2c350 regmap_raw_read -EXPORT_SYMBOL_GPL vmlinux 0xfca6e6bb scsi_ioctl_block_when_processing_errors -EXPORT_SYMBOL_GPL vmlinux 0xfca8b17c skcipher_alloc_instance_simple -EXPORT_SYMBOL_GPL vmlinux 0xfca9ddd2 vring_transport_features -EXPORT_SYMBOL_GPL vmlinux 0xfcbc5278 edac_pci_handle_npe +EXPORT_SYMBOL_GPL vmlinux 0xfc94eec2 fib_info_nh_uses_dev +EXPORT_SYMBOL_GPL vmlinux 0xfca2ffa9 crypto_unregister_aead EXPORT_SYMBOL_GPL vmlinux 0xfcbfec70 add_memory_driver_managed EXPORT_SYMBOL_GPL vmlinux 0xfcc1edd3 memory_block_size_bytes +EXPORT_SYMBOL_GPL vmlinux 0xfcd254f0 bus_get_kset +EXPORT_SYMBOL_GPL vmlinux 0xfce2338f gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0xfcead0b2 rio_del_mport_pw_handler +EXPORT_SYMBOL_GPL vmlinux 0xfcef8593 mmc_regulator_set_ocr +EXPORT_SYMBOL_GPL vmlinux 0xfcf25ada sprd_pinctrl_core_probe EXPORT_SYMBOL_GPL vmlinux 0xfcf9ef73 hw_protection_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xfcfd7b4d usb_asmedia_modifyflowcontrol -EXPORT_SYMBOL_GPL vmlinux 0xfcff555b pci_epc_set_msix -EXPORT_SYMBOL_GPL vmlinux 0xfcff8817 ata_bmdma_dumb_qc_prep -EXPORT_SYMBOL_GPL vmlinux 0xfd033c8b gpiod_get_raw_array_value_cansleep EXPORT_SYMBOL_GPL vmlinux 0xfd068326 register_kretprobes -EXPORT_SYMBOL_GPL vmlinux 0xfd09db54 __udp_gso_segment -EXPORT_SYMBOL_GPL vmlinux 0xfd125408 gpiod_get_value +EXPORT_SYMBOL_GPL vmlinux 0xfd078c39 get_cpu_device +EXPORT_SYMBOL_GPL vmlinux 0xfd18a2cd ata_acpi_cbl_80wire EXPORT_SYMBOL_GPL vmlinux 0xfd195774 k3_udma_glue_disable_tx_chn -EXPORT_SYMBOL_GPL vmlinux 0xfd31c8f9 fsl_mc_bus_dpni_type -EXPORT_SYMBOL_GPL vmlinux 0xfd343c86 acpi_dev_clear_dependencies -EXPORT_SYMBOL_GPL vmlinux 0xfd41362e devm_gpio_request -EXPORT_SYMBOL_GPL vmlinux 0xfd56241f serdev_device_alloc -EXPORT_SYMBOL_GPL vmlinux 0xfd579113 crypto_destroy_tfm -EXPORT_SYMBOL_GPL vmlinux 0xfd59ffe6 mtk_eint_set_debounce -EXPORT_SYMBOL_GPL vmlinux 0xfd5fc568 mbox_flush -EXPORT_SYMBOL_GPL vmlinux 0xfd65a105 iommu_page_response -EXPORT_SYMBOL_GPL vmlinux 0xfd65a53f devlink_rate_leaf_destroy +EXPORT_SYMBOL_GPL vmlinux 0xfd1cd847 pinctrl_dev_get_name +EXPORT_SYMBOL_GPL vmlinux 0xfd477804 __nf_ip6_route +EXPORT_SYMBOL_GPL vmlinux 0xfd53a7b4 yield_to +EXPORT_SYMBOL_GPL vmlinux 0xfd5a2356 imx_unregister_hw_clocks +EXPORT_SYMBOL_GPL vmlinux 0xfd618b46 bpf_prog_get_type_dev EXPORT_SYMBOL_GPL vmlinux 0xfd7243c7 erst_disable -EXPORT_SYMBOL_GPL vmlinux 0xfd792152 spi_write_then_read -EXPORT_SYMBOL_GPL vmlinux 0xfd7cc752 devm_regmap_field_alloc -EXPORT_SYMBOL_GPL vmlinux 0xfd80299c da903x_reads -EXPORT_SYMBOL_GPL vmlinux 0xfda6887f tcp_twsk_unique -EXPORT_SYMBOL_GPL vmlinux 0xfdabe227 ata_sff_tf_load -EXPORT_SYMBOL_GPL vmlinux 0xfdb5484e irq_chip_set_parent_state -EXPORT_SYMBOL_GPL vmlinux 0xfdb9a251 kvm_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0xfd7338a7 fscrypt_show_test_dummy_encryption +EXPORT_SYMBOL_GPL vmlinux 0xfd7db2dd dm_start_time_ns_from_clone +EXPORT_SYMBOL_GPL vmlinux 0xfd837416 __netpoll_free +EXPORT_SYMBOL_GPL vmlinux 0xfd8cd748 generic_fh_to_parent +EXPORT_SYMBOL_GPL vmlinux 0xfd96ecae vchan_dma_desc_free_list +EXPORT_SYMBOL_GPL vmlinux 0xfd9a0894 to_nvdimm_bus_dev +EXPORT_SYMBOL_GPL vmlinux 0xfda53058 devm_led_classdev_register_ext +EXPORT_SYMBOL_GPL vmlinux 0xfdae20f5 regulator_bulk_get EXPORT_SYMBOL_GPL vmlinux 0xfdbd7a17 crypto_get_attr_type -EXPORT_SYMBOL_GPL vmlinux 0xfdd0d2d4 crypto_spawn_tfm -EXPORT_SYMBOL_GPL vmlinux 0xfddf6bdf sata_lpm_ignore_phy_events +EXPORT_SYMBOL_GPL vmlinux 0xfdcad7e1 pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0xfdd02073 pinctrl_parse_index_with_args EXPORT_SYMBOL_GPL vmlinux 0xfdea2d04 alarm_cancel -EXPORT_SYMBOL_GPL vmlinux 0xfdea8556 pci_load_saved_state -EXPORT_SYMBOL_GPL vmlinux 0xfe0682d2 xenbus_dev_suspend -EXPORT_SYMBOL_GPL vmlinux 0xfe0ab51d clk_regmap_mux_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0xfdeb1cee dt_init_idle_driver +EXPORT_SYMBOL_GPL vmlinux 0xfdeb5a74 synth_event_gen_cmd_array_start +EXPORT_SYMBOL_GPL vmlinux 0xfdee17d0 vring_del_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0xfdf0cf8e tegra_bpmp_transfer_atomic +EXPORT_SYMBOL_GPL vmlinux 0xfdf37a9b spi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xfdf56083 fat_detach +EXPORT_SYMBOL_GPL vmlinux 0xfdf983b7 regmap_get_max_register +EXPORT_SYMBOL_GPL vmlinux 0xfe01b3b3 add_to_page_cache_lru EXPORT_SYMBOL_GPL vmlinux 0xfe0e7cd3 apei_exec_post_unmap_gars -EXPORT_SYMBOL_GPL vmlinux 0xfe198238 kobject_get_path EXPORT_SYMBOL_GPL vmlinux 0xfe1a7a7b mpi_point_release -EXPORT_SYMBOL_GPL vmlinux 0xfe2a8483 __netpoll_free +EXPORT_SYMBOL_GPL vmlinux 0xfe20b396 fwnode_get_nth_parent +EXPORT_SYMBOL_GPL vmlinux 0xfe335bac attribute_container_classdev_to_container +EXPORT_SYMBOL_GPL vmlinux 0xfe36a90a pci_epf_create +EXPORT_SYMBOL_GPL vmlinux 0xfe3a2d81 ata_scsi_unlock_native_capacity EXPORT_SYMBOL_GPL vmlinux 0xfe3a6de3 alarm_try_to_cancel -EXPORT_SYMBOL_GPL vmlinux 0xfe3c8064 usb_hcd_setup_local_mem +EXPORT_SYMBOL_GPL vmlinux 0xfe3baf5a dev_pm_opp_remove_table +EXPORT_SYMBOL_GPL vmlinux 0xfe3e20b0 tcp_get_syncookie_mss EXPORT_SYMBOL_GPL vmlinux 0xfe476039 ktime_get_resolution_ns -EXPORT_SYMBOL_GPL vmlinux 0xfe51a76a blk_mq_freeze_queue_wait -EXPORT_SYMBOL_GPL vmlinux 0xfe5bac8a ptp_parse_header -EXPORT_SYMBOL_GPL vmlinux 0xfe677b18 nvdimm_kobj -EXPORT_SYMBOL_GPL vmlinux 0xfe804b9f crypto_mod_put -EXPORT_SYMBOL_GPL vmlinux 0xfe8a0036 devm_gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0xfe4cddf0 fuse_direct_io +EXPORT_SYMBOL_GPL vmlinux 0xfe4f4375 dev_err_probe +EXPORT_SYMBOL_GPL vmlinux 0xfe65b6a3 fat_time_fat2unix +EXPORT_SYMBOL_GPL vmlinux 0xfe7a8d9a mptcp_pm_get_add_addr_signal_max +EXPORT_SYMBOL_GPL vmlinux 0xfe7dd371 phy_set_speed EXPORT_SYMBOL_GPL vmlinux 0xfe8cdb84 ring_buffer_alloc_read_page -EXPORT_SYMBOL_GPL vmlinux 0xfe9195c0 regulator_set_voltage_time_sel +EXPORT_SYMBOL_GPL vmlinux 0xfe97aee8 blkg_prfill_rwstat EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free -EXPORT_SYMBOL_GPL vmlinux 0xfeab6ec4 nd_blk_region_set_provider_data -EXPORT_SYMBOL_GPL vmlinux 0xfeb21e21 generic_handle_domain_irq +EXPORT_SYMBOL_GPL vmlinux 0xfe9abf17 led_init_core +EXPORT_SYMBOL_GPL vmlinux 0xfeab61f2 fuse_conn_destroy +EXPORT_SYMBOL_GPL vmlinux 0xfec0b7a3 dw_pcie_write_dbi +EXPORT_SYMBOL_GPL vmlinux 0xfec30821 register_wide_hw_breakpoint EXPORT_SYMBOL_GPL vmlinux 0xfec3bf84 icst_clk_setup -EXPORT_SYMBOL_GPL vmlinux 0xfec4f3ba imx_check_clk_hws -EXPORT_SYMBOL_GPL vmlinux 0xfecd519c rockchip_clk_register_plls +EXPORT_SYMBOL_GPL vmlinux 0xfec72033 __vfs_setxattr_locked +EXPORT_SYMBOL_GPL vmlinux 0xfec7dc19 vring_transport_features +EXPORT_SYMBOL_GPL vmlinux 0xfecb2714 vfs_cancel_lock EXPORT_SYMBOL_GPL vmlinux 0xfed11ed1 usb_mon_deregister EXPORT_SYMBOL_GPL vmlinux 0xfede9222 __tracepoint_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0xfee3e658 pinctrl_register +EXPORT_SYMBOL_GPL vmlinux 0xfee4f2e2 crypto_unregister_skcipher EXPORT_SYMBOL_GPL vmlinux 0xfeeecd05 apei_read -EXPORT_SYMBOL_GPL vmlinux 0xfef437d8 dma_buf_export -EXPORT_SYMBOL_GPL vmlinux 0xfef7a459 regulator_bulk_force_disable -EXPORT_SYMBOL_GPL vmlinux 0xfefaca1b mtk_eint_do_resume +EXPORT_SYMBOL_GPL vmlinux 0xfef414c8 dma_release_channel +EXPORT_SYMBOL_GPL vmlinux 0xff03d056 i2c_detect_slave_mode EXPORT_SYMBOL_GPL vmlinux 0xff05fa13 vring_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xff0b702e crypto_stats_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0xff14330f msg_zerocopy_put_abort +EXPORT_SYMBOL_GPL vmlinux 0xff15a739 sdio_f0_writeb EXPORT_SYMBOL_GPL vmlinux 0xff1666f3 reset_control_bulk_assert -EXPORT_SYMBOL_GPL vmlinux 0xff1d5766 bio_end_io_acct_remapped -EXPORT_SYMBOL_GPL vmlinux 0xff27693b platform_device_add -EXPORT_SYMBOL_GPL vmlinux 0xff280182 open_related_ns EXPORT_SYMBOL_GPL vmlinux 0xff291ecf clk_unregister_divider -EXPORT_SYMBOL_GPL vmlinux 0xff31652f acpi_dev_get_dma_resources -EXPORT_SYMBOL_GPL vmlinux 0xff349597 sdio_claim_host -EXPORT_SYMBOL_GPL vmlinux 0xff39d828 of_property_read_string_helper +EXPORT_SYMBOL_GPL vmlinux 0xff2923ef tcp_rate_check_app_limited +EXPORT_SYMBOL_GPL vmlinux 0xff3e905d nvdimm_region_notify EXPORT_SYMBOL_GPL vmlinux 0xff42c374 usb_role_switch_get_role -EXPORT_SYMBOL_GPL vmlinux 0xff439f4f sata_link_hardreset -EXPORT_SYMBOL_GPL vmlinux 0xff5a1140 irq_chip_mask_parent -EXPORT_SYMBOL_GPL vmlinux 0xff5b134f kvm_clear_guest -EXPORT_SYMBOL_GPL vmlinux 0xff5f96b4 ipv6_stub -EXPORT_SYMBOL_GPL vmlinux 0xff660fa5 unregister_asymmetric_key_parser -EXPORT_SYMBOL_GPL vmlinux 0xff6f2372 pci_host_common_probe +EXPORT_SYMBOL_GPL vmlinux 0xff4983c8 pci_status_get_and_clear_errors +EXPORT_SYMBOL_GPL vmlinux 0xff4a9b64 driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xff6b88af sched_trace_rq_cpu_capacity +EXPORT_SYMBOL_GPL vmlinux 0xff6dfd15 fat_dir_empty +EXPORT_SYMBOL_GPL vmlinux 0xff723cda kvm_vcpu_mark_page_dirty EXPORT_SYMBOL_GPL vmlinux 0xff7e33bf mpi_sub_ui EXPORT_SYMBOL_GPL vmlinux 0xff81487d gpiod_remove_lookup_table +EXPORT_SYMBOL_GPL vmlinux 0xff934ff7 xfrm_audit_state_delete +EXPORT_SYMBOL_GPL vmlinux 0xff9a9014 regmap_async_complete_cb EXPORT_SYMBOL_GPL vmlinux 0xff9e23d1 hugetlb_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xffa2ddb6 gpiochip_irq_map -EXPORT_SYMBOL_GPL vmlinux 0xffa7ac94 pinctrl_remove_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0xffa73641 noop_invalidatepage EXPORT_SYMBOL_GPL vmlinux 0xffae8e8b nsecs_to_jiffies -EXPORT_SYMBOL_GPL vmlinux 0xffb55c88 vfs_cancel_lock -EXPORT_SYMBOL_GPL vmlinux 0xffc7b43f dw_pcie_upconfig_setup -EXPORT_SYMBOL_GPL vmlinux 0xffc966a3 pwmchip_remove -EXPORT_SYMBOL_GPL vmlinux 0xffcb126f component_del -EXPORT_SYMBOL_GPL vmlinux 0xffd3a4da proc_mkdir_data -EXPORT_SYMBOL_GPL vmlinux 0xffed3512 kvm_write_guest_cached -EXPORT_SYMBOL_GPL vmlinux 0xfffcf5b4 devm_clk_bulk_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xffb13a62 da903x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xffb84fb6 bpf_trace_run3 +EXPORT_SYMBOL_GPL vmlinux 0xffbccec3 devm_mbox_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0xffc18d4b pci_epc_start +EXPORT_SYMBOL_GPL vmlinux 0xffcb8efa usb_remove_hcd +EXPORT_SYMBOL_GPL vmlinux 0xffd42255 of_led_get +EXPORT_SYMBOL_GPL vmlinux 0xffea97d8 thp_get_unmapped_area +EXPORT_SYMBOL_GPL vmlinux 0xfff78540 debugfs_file_put +EXPORT_SYMBOL_GPL vmlinux 0xfffe8523 rockchip_clk_init FIRMWARE_LOADER_PRIVATE EXPORT_SYMBOL_GPL 0xd3ae7756 fw_fallback_config vmlinux -IIO_HID EXPORT_SYMBOL 0x1a1942ed hid_sensor_convert_timestamp drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0x226ba18f hid_sensor_read_raw_hyst_rel_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0x64eb4e08 hid_sensor_write_raw_hyst_rel_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0x7b806d47 hid_sensor_power_state drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0x5f9300ba hid_sensor_parse_common_attributes drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x613a21f5 hid_sensor_read_samp_freq_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x69e893eb hid_sensor_read_raw_hyst_value drivers/iio/common/hid-sensors/hid-sensor-iio-common IIO_HID EXPORT_SYMBOL 0x7f7621ec hid_sensor_format_scale drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0xa0f927b9 hid_sensor_setup_trigger drivers/iio/common/hid-sensors/hid-sensor-trigger -IIO_HID EXPORT_SYMBOL 0xc6397a1f hid_sensor_read_samp_freq_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0xde8a5978 hid_sensor_pm_ops drivers/iio/common/hid-sensors/hid-sensor-trigger -IIO_HID EXPORT_SYMBOL 0xef23f3f8 hid_sensor_read_raw_hyst_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0xf034018b hid_sensor_parse_common_attributes drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0xf164cdd2 hid_sensor_write_samp_freq_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0xf1cbd643 hid_sensor_remove_trigger drivers/iio/common/hid-sensors/hid-sensor-trigger -IIO_HID EXPORT_SYMBOL 0xfb589bd6 hid_sensor_write_raw_hyst_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x389f584b hid_sensor_set_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x5b28cc78 hid_sensor_read_poll_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0xd6704483 hid_sensor_get_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0xe1e14752 hid_sensor_batch_mode_supported drivers/iio/common/hid-sensors/hid-sensor-iio-common -LTC2497 EXPORT_SYMBOL 0x03e32ce5 ltc2497core_remove drivers/iio/adc/ltc2497-core -LTC2497 EXPORT_SYMBOL 0xbbc6efb7 ltc2497core_probe drivers/iio/adc/ltc2497-core -MCB EXPORT_SYMBOL_GPL 0x0942864b mcb_bus_put drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x14ef072b mcb_request_mem drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x1df69020 mcb_bus_add_devices drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x3a4482aa mcb_alloc_dev drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x3b44c8ec mcb_bus_get drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x4ef26ece mcb_release_bus drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x66513b23 mcb_get_irq drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x79d86569 mcb_unregister_driver drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x7c2e3fa8 mcb_alloc_bus drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x93c210cb mcb_get_resource drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0xa9f963b1 mcb_free_dev drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0xbd204eed mcb_device_register drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0xd4d29802 __mcb_register_driver drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0xdca26dc3 chameleon_parse_cells drivers/mcb/mcb +IIO_HID EXPORT_SYMBOL 0x99d40f5d hid_sensor_power_state drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0x9dd4c698 hid_sensor_setup_trigger drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0xa1347006 hid_sensor_remove_trigger drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0xa2ace6c1 hid_sensor_pm_ops drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0xd8eeb149 hid_sensor_write_samp_freq_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0xdaa97815 hid_sensor_convert_timestamp drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0xedc5f1e1 hid_sensor_read_raw_hyst_rel_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0xf651bde1 hid_sensor_write_raw_hyst_rel_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0xfd1acb53 hid_sensor_write_raw_hyst_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x4007db28 hid_sensor_batch_mode_supported drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x47c2bb38 hid_sensor_set_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x4abd6fcf hid_sensor_get_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0xc9777db5 hid_sensor_read_poll_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +LTC2497 EXPORT_SYMBOL 0x96298bbb ltc2497core_remove drivers/iio/adc/ltc2497-core +LTC2497 EXPORT_SYMBOL 0xbdfed99f ltc2497core_probe drivers/iio/adc/ltc2497-core +MCB EXPORT_SYMBOL_GPL 0x0a4138a7 chameleon_parse_cells drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x15a650dd mcb_free_dev drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x1894a013 mcb_get_resource drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x2138bfa5 mcb_alloc_bus drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x2d83f4cb mcb_bus_add_devices drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x45dfc716 mcb_bus_get drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x4b81634e mcb_bus_put drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x7dbc5764 mcb_release_bus drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xa7415e06 mcb_unregister_driver drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xb8d88c51 mcb_request_mem drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xdb866fda __mcb_register_driver drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xe3559755 mcb_get_irq drivers/mcb/mcb MCB EXPORT_SYMBOL_GPL 0xeb2c8905 mcb_release_mem drivers/mcb/mcb -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x12b3c1d1 nvme_execute_passthru_rq drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x64981d25 nvme_command_effects drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x78d471b9 nvme_ctrl_from_file drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xaed75ea5 nvme_put_ns drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xafb6bf55 nvme_find_get_ns drivers/nvme/host/nvme-core -PMBUS EXPORT_SYMBOL_GPL 0x0c369c85 pmbus_write_byte_data drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x11636a22 pmbus_update_fan drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x1b00097f pmbus_regulator_ops drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x21da9e3d pmbus_clear_cache drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x336442cc pmbus_check_word_register drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x432743aa pmbus_write_byte drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x4fd26dbf pmbus_get_fan_rate_cached drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x6479005d pmbus_set_update drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x742eaf31 pmbus_get_debugfs_dir drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x7c8735b4 pmbus_get_driver_info drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x8cef9ec7 pmbus_update_byte_data drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x9cd2ef13 pmbus_check_byte_register drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xa808e42b pmbus_get_fan_rate_device drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xa82bd8b9 pmbus_clear_faults drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xb22c687b pmbus_write_word_data drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xb91426de pmbus_read_word_data drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xbd684359 pmbus_set_page drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xdb4cfc8b pmbus_do_probe drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xeb2aa026 pmbus_read_byte_data drivers/hwmon/pmbus/pmbus_core +MCB EXPORT_SYMBOL_GPL 0xf3811d54 mcb_alloc_dev drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xfff2fa58 mcb_device_register drivers/mcb/mcb +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x273033e3 nvme_ctrl_from_file drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x51fb3fee nvme_find_get_ns drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x65eb1ef8 nvme_put_ns drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xa59785d5 nvme_execute_passthru_rq drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xbefb8674 nvme_command_effects drivers/nvme/host/nvme-core +PMBUS EXPORT_SYMBOL_GPL 0x06e5b619 pmbus_update_byte_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x0f1c9111 pmbus_get_fan_rate_device drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x182c4374 pmbus_get_driver_info drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x3b8e52bf pmbus_write_byte_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x4e6e896b pmbus_check_byte_register drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x6ee34792 pmbus_write_byte drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x9b25774f pmbus_get_debugfs_dir drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xae737877 pmbus_update_fan drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xb177e018 pmbus_do_probe drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xb4f364eb pmbus_regulator_ops drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xc83b1cf1 pmbus_set_update drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xca410292 pmbus_set_page drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xcb7e1524 pmbus_read_byte_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xcba4e634 pmbus_write_word_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xd5eb3df6 pmbus_clear_cache drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xdb8ee947 pmbus_clear_faults drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xef6a3197 pmbus_read_word_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xf1a3fd12 pmbus_check_word_register drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xf1f6b4e4 pmbus_get_fan_rate_cached drivers/hwmon/pmbus/pmbus_core +SND_HDA_SCODEC_CS35L41 EXPORT_SYMBOL_GPL 0x9a59d509 cs35l41_hda_probe sound/pci/hda/snd-hda-scodec-cs35l41 +SND_HDA_SCODEC_CS35L41 EXPORT_SYMBOL_GPL 0xbe589702 cs35l41_hda_remove sound/pci/hda/snd-hda-scodec-cs35l41 SND_INTEL_SOUNDWIRE_ACPI EXPORT_SYMBOL 0xbb4f9d1f sdw_intel_acpi_scan sound/hda/snd-intel-sdw-acpi -SND_SOC_SOF_XTENSA EXPORT_SYMBOL 0x87856678 sof_xtensa_arch_ops sound/soc/sof/xtensa/snd-sof-xtensa-dsp -SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0x298b4d53 sdw_intel_probe drivers/soundwire/soundwire-intel +SND_SOC_SOF_XTENSA EXPORT_SYMBOL 0x08450571 sof_xtensa_arch_ops sound/soc/sof/xtensa/snd-sof-xtensa-dsp +SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0x3b799426 sdw_intel_exit drivers/soundwire/soundwire-intel SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0x5af438eb sdw_intel_enable_irq drivers/soundwire/soundwire-intel -SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0x93da6ef1 sdw_intel_startup drivers/soundwire/soundwire-intel SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0xaa52eba1 sdw_intel_thread drivers/soundwire/soundwire-intel -SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0xad508d3b sdw_intel_exit drivers/soundwire/soundwire-intel -SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0xf86bf667 sdw_intel_process_wakeen_event drivers/soundwire/soundwire-intel -USB_STORAGE EXPORT_SYMBOL_GPL 0x1362030e usb_stor_bulk_transfer_buf drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x178af710 usb_stor_disconnect drivers/usb/storage/usb-storage +SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0xba762ad6 sdw_intel_process_wakeen_event drivers/soundwire/soundwire-intel +SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0xc32bd6b7 sdw_intel_probe drivers/soundwire/soundwire-intel +SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0xc8cf4125 sdw_intel_startup drivers/soundwire/soundwire-intel +USB_STORAGE EXPORT_SYMBOL_GPL 0x05764362 fill_inquiry_response drivers/usb/storage/usb-storage USB_STORAGE EXPORT_SYMBOL_GPL 0x1bc3edc2 usb_stor_sense_invalidCDB drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x250b5805 usb_stor_control_msg drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x2cea91c0 usb_stor_clear_halt drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x370cd181 usb_stor_bulk_srb drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x3a207c19 usb_stor_bulk_transfer_sg drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x4628b941 usb_stor_probe2 drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x52f6dfbd fill_inquiry_response drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x565b48f6 usb_stor_probe1 drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x5bfd09a4 usb_stor_pre_reset drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x60a5eb26 usb_stor_Bulk_transport drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x6bd411d8 usb_stor_transparent_scsi_command drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x763eff8e usb_stor_post_reset drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x78948dc9 usb_stor_adjust_quirks drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x79305901 usb_stor_suspend drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x8da9fdf1 usb_stor_ctrl_transfer drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x8fd6b7d3 usb_stor_access_xfer_buf drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xc4e6275e usb_stor_CB_transport drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xd1b31fdb usb_stor_resume drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xdb72b088 usb_stor_set_xfer_buf drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xdc64457d usb_stor_host_template_init drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xe17969a3 usb_stor_CB_reset drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xe45a2cc6 usb_stor_Bulk_reset drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xf2e940da usb_stor_reset_resume drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x21038047 usb_stor_transparent_scsi_command drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x24b1ef56 usb_stor_Bulk_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x26e3cb70 usb_stor_CB_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x2876fb1e usb_stor_Bulk_transport drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x3d332a41 usb_stor_reset_resume drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x52e63765 usb_stor_bulk_transfer_sg drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x6897f064 usb_stor_bulk_transfer_buf drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x795b144b usb_stor_control_msg drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x7ac72134 usb_stor_clear_halt drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x7c27416d usb_stor_ctrl_transfer drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x7c3b7eec usb_stor_host_template_init drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x7e1889a4 usb_stor_access_xfer_buf drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x8c53cd40 usb_stor_post_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x9f931978 usb_stor_pre_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xa32d3c54 usb_stor_CB_transport drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xaee37b23 usb_stor_bulk_srb drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xb1e116f9 usb_stor_set_xfer_buf drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xbd4d43c4 usb_stor_probe1 drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xc57fc970 usb_stor_probe2 drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xdef2c502 usb_stor_resume drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xe2a8fe0e usb_stor_adjust_quirks drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xe4dd914c usb_stor_suspend drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xe741f907 usb_stor_disconnect drivers/usb/storage/usb-storage diff -u linux-intel-iotg-5.15-5.15.0/debian.master/abi/arm64/generic-64k linux-intel-iotg-5.15-5.15.0/debian.master/abi/arm64/generic-64k --- linux-intel-iotg-5.15-5.15.0/debian.master/abi/arm64/generic-64k +++ linux-intel-iotg-5.15-5.15.0/debian.master/abi/arm64/generic-64k @@ -1,25 +1,25 @@ -CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x473eba24 crypto_cipher_decrypt_one vmlinux -CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x60f7b341 crypto_cipher_setkey vmlinux -CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0xaae11c2d crypto_cipher_encrypt_one vmlinux -CXL EXPORT_SYMBOL_GPL 0x19318f60 cxl_probe_device_regs drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x1ed3d233 devm_cxl_add_memdev drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x24dbb869 cxl_map_component_regs drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x298f163f devm_cxl_add_nvdimm_bridge drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x30128a9b cxl_probe_component_regs drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x33254610 __cxl_driver_register drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x3f863806 to_cxl_nvdimm_bridge drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x76c53abf devm_cxl_add_decoder drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x825a0f47 to_cxl_decoder drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x84eee14f cxl_driver_unregister drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x8a89df20 devm_cxl_add_nvdimm drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x9e5fa2ca devm_cxl_add_port drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xa7030655 cxl_map_device_regs drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xbdc1e752 is_root_decoder drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xd25888f4 to_cxl_nvdimm drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xd3f7ab92 cxl_bus_type drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xe9077d8a cxl_add_dport drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xf9ee092e is_cxl_nvdimm drivers/cxl/core/cxl_core -EXPORT_SYMBOL arch/arm64/crypto/aes-ce-cipher 0x4748b067 ce_aes_setkey +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x2899b210 crypto_cipher_decrypt_one vmlinux +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x5df4745d crypto_cipher_encrypt_one vmlinux +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0xcc01ebd7 crypto_cipher_setkey vmlinux +CXL EXPORT_SYMBOL_GPL 0x04c51c26 cxl_probe_device_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x090b16fd cxl_map_device_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x0e389d79 is_root_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x0e79a939 devm_cxl_add_port drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x25aef646 cxl_driver_unregister drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x4f451d8d is_cxl_nvdimm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x6c94ec58 devm_cxl_add_nvdimm_bridge drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x84ea8782 devm_cxl_add_nvdimm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x95fe6fa2 cxl_map_component_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x9ab2df4c __cxl_driver_register drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xabdb8c87 to_cxl_nvdimm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xbcada941 to_cxl_nvdimm_bridge drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xc557da5d cxl_add_dport drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xd1faf908 cxl_probe_component_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xd238a15e devm_cxl_add_memdev drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xd2df4601 to_cxl_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xe2296997 devm_cxl_add_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xf3705dda cxl_bus_type drivers/cxl/core/cxl_core +EXPORT_SYMBOL arch/arm64/crypto/aes-ce-cipher 0x069f4284 ce_aes_setkey EXPORT_SYMBOL arch/arm64/crypto/aes-ce-cipher 0x68f275ad ce_aes_expandkey EXPORT_SYMBOL arch/arm64/crypto/aes-neon-blk 0x52d67a4e neon_aes_cbc_encrypt EXPORT_SYMBOL arch/arm64/crypto/aes-neon-blk 0xd5f41819 neon_aes_ecb_encrypt @@ -51,40 +51,37 @@ 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 0x1d65dc9a crypto_nhpoly1305_setkey -EXPORT_SYMBOL crypto/nhpoly1305 0x5b271d96 crypto_nhpoly1305_final -EXPORT_SYMBOL crypto/nhpoly1305 0x611af3da crypto_nhpoly1305_init -EXPORT_SYMBOL crypto/nhpoly1305 0x68638a02 crypto_nhpoly1305_final_helper -EXPORT_SYMBOL crypto/nhpoly1305 0xf0c9c626 crypto_nhpoly1305_update -EXPORT_SYMBOL crypto/nhpoly1305 0xf560f285 crypto_nhpoly1305_update_helper -EXPORT_SYMBOL crypto/sha3_generic 0x7a4a9780 crypto_sha3_final -EXPORT_SYMBOL crypto/sha3_generic 0xb07943b3 crypto_sha3_update -EXPORT_SYMBOL crypto/sha3_generic 0xe0f0910a crypto_sha3_init -EXPORT_SYMBOL crypto/sm2_generic 0xfad70db9 sm2_compute_z_digest -EXPORT_SYMBOL crypto/sm3_generic 0x1051eeb5 crypto_sm3_final -EXPORT_SYMBOL crypto/sm3_generic 0xb238fcbe crypto_sm3_update -EXPORT_SYMBOL crypto/sm3_generic 0xdf7c0442 crypto_sm3_finup +EXPORT_SYMBOL crypto/nhpoly1305 0x0442fee0 crypto_nhpoly1305_update +EXPORT_SYMBOL crypto/nhpoly1305 0x3cc9c401 crypto_nhpoly1305_final_helper +EXPORT_SYMBOL crypto/nhpoly1305 0x57959d04 crypto_nhpoly1305_final +EXPORT_SYMBOL crypto/nhpoly1305 0x678bd437 crypto_nhpoly1305_init +EXPORT_SYMBOL crypto/nhpoly1305 0xaef40dd6 crypto_nhpoly1305_setkey +EXPORT_SYMBOL crypto/nhpoly1305 0xe3743943 crypto_nhpoly1305_update_helper +EXPORT_SYMBOL crypto/sha3_generic 0x7c1c7239 crypto_sha3_update +EXPORT_SYMBOL crypto/sha3_generic 0x959c78e9 crypto_sha3_final +EXPORT_SYMBOL crypto/sha3_generic 0xbef57703 crypto_sha3_init +EXPORT_SYMBOL crypto/sm2_generic 0xe10cc340 sm2_compute_z_digest +EXPORT_SYMBOL crypto/sm3_generic 0x08d4459c crypto_sm3_final +EXPORT_SYMBOL crypto/sm3_generic 0x9b72945c crypto_sm3_update +EXPORT_SYMBOL crypto/sm3_generic 0xdef3a12d crypto_sm3_finup EXPORT_SYMBOL crypto/xor 0x5b6c00e6 xor_blocks EXPORT_SYMBOL drivers/acpi/nfit/nfit 0x06848c60 to_nfit_uuid -EXPORT_SYMBOL drivers/atm/suni 0x85d1e8be suni_init -EXPORT_SYMBOL drivers/bcma/bcma 0x2c972766 bcma_core_irq -EXPORT_SYMBOL drivers/bcma/bcma 0x72f0a65b bcma_core_dma_translation +EXPORT_SYMBOL drivers/atm/suni 0x2f0a3369 suni_init +EXPORT_SYMBOL drivers/bcma/bcma 0x64c71caf bcma_core_irq +EXPORT_SYMBOL drivers/bcma/bcma 0x887bbb88 bcma_core_dma_translation EXPORT_SYMBOL drivers/block/drbd/drbd 0x127a5901 drbd_set_st_err_str EXPORT_SYMBOL drivers/block/drbd/drbd 0x35131b36 drbd_role_str EXPORT_SYMBOL drivers/block/drbd/drbd 0x7730f22d drbd_conn_str EXPORT_SYMBOL drivers/block/drbd/drbd 0xaf27bebf drbd_disk_str -EXPORT_SYMBOL drivers/bluetooth/btbcm 0xa3d3821b btbcm_patchram -EXPORT_SYMBOL drivers/bluetooth/btrsi 0x6066fa49 rsi_bt_ops -EXPORT_SYMBOL drivers/bus/mhi/core/mhi 0x5639ddb0 mhi_sync_power_up +EXPORT_SYMBOL drivers/bluetooth/btbcm 0xa987b26c btbcm_patchram +EXPORT_SYMBOL drivers/bluetooth/btrsi 0x49b551b8 rsi_bt_ops +EXPORT_SYMBOL drivers/bus/mhi/core/mhi 0x0827affe 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 0x0e774c78 ipmi_add_smi EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x12dd1e77 ipmi_set_maintenance_mode -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x19ba6f90 ipmi_smi_watcher_unregister EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x230094ac ipmi_smi_watchdog_pretimeout EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x31cab048 ipmi_smi_msg_received EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x40f2b10c ipmi_alloc_smi_msg -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x456c0c47 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 @@ -92,9 +89,11 @@ 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 0x929087d5 ipmi_smi_watcher_register +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xa10a3b6a ipmi_smi_watcher_unregister +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xa939ce46 ipmi_add_smi EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xaca90ebd ipmi_request_supply_msgs EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xae71627d ipmi_create_user +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xd01be2be ipmi_get_smi_info EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xd54a5050 ipmi_unregister_for_cmd EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe4330a39 ipmi_unregister_smi EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe4f4665b ipmi_validate_addr @@ -102,42 +101,43 @@ 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 0xfc07fec4 ipmi_smi_watcher_register EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xfe0f2369 ipmi_get_maintenance_mode -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x10470893 st33zp24_pm_resume -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x119d6e0d st33zp24_pm_suspend -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x6af8fe79 st33zp24_probe -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xe9cf79c3 st33zp24_remove -EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0x078bcf72 xillybus_init_chrdev -EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0x51e4fa0e xillybus_find_inode -EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0x873033e4 xillybus_cleanup_chrdev +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x1e7c8083 st33zp24_probe +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x7f6f2e0b st33zp24_pm_resume +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x9f0d4a82 st33zp24_remove +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xf9eb5f93 st33zp24_pm_suspend +EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0x11765f12 xillybus_find_inode +EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0x5e724c8d xillybus_init_chrdev +EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0x8a93dd70 xillybus_cleanup_chrdev +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x1e8b3b71 xillybus_endpoint_remove EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x25978d50 xillybus_isr -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x39bb783e xillybus_endpoint_discovery -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x6f7ff313 xillybus_endpoint_remove -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x7c532161 xillybus_init_endpoint +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x36659953 xillybus_endpoint_discovery +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xe85f3120 xillybus_init_endpoint EXPORT_SYMBOL drivers/clk/qcom/clk-qcom 0x25c98843 clk_alpha_pll_zonda_ops EXPORT_SYMBOL drivers/clk/qcom/clk-qcom 0xa03f8920 clk_alpha_pll_postdiv_lucid_5lpe_ops EXPORT_SYMBOL drivers/clk/qcom/clk-qcom 0xd89a02cf clk_alpha_pll_fixed_lucid_5lpe_ops EXPORT_SYMBOL drivers/clk/qcom/clk-qcom 0xed46e5cc clk_alpha_pll_lucid_5lpe_ops -EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x716f33d5 atmel_i2c_probe +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x03de4bde atmel_i2c_send_receive +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x47526892 atmel_i2c_enqueue EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x80a11b1d atmel_i2c_init_read_cmd +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x94a2eeba atmel_i2c_probe EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xc71ed50c atmel_i2c_init_genkey_cmd -EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xdc854cef atmel_i2c_send_receive -EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xe7eac2cb atmel_i2c_enqueue 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 0x079ebb65 caam_drv_ctx_update +EXPORT_SYMBOL drivers/crypto/caam/caam 0x05231330 caam_drv_ctx_init EXPORT_SYMBOL drivers/crypto/caam/caam 0x17572340 caam_congested -EXPORT_SYMBOL drivers/crypto/caam/caam 0x2673d285 caam_drv_ctx_rel EXPORT_SYMBOL drivers/crypto/caam/caam 0x37734e06 caam_dpaa2 +EXPORT_SYMBOL drivers/crypto/caam/caam 0x4035460a caam_qi_enqueue EXPORT_SYMBOL drivers/crypto/caam/caam 0x44ae4bc4 qi_cache_free -EXPORT_SYMBOL drivers/crypto/caam/caam 0x80e1b41c caam_drv_ctx_init -EXPORT_SYMBOL drivers/crypto/caam/caam 0x875f9b3b caam_qi_enqueue +EXPORT_SYMBOL drivers/crypto/caam/caam 0x7581152f caam_drv_ctx_rel EXPORT_SYMBOL drivers/crypto/caam/caam 0xc0eaa792 qi_cache_alloc -EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x49d6519c split_key_done -EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x6e2f4878 caam_jr_free -EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0xc0aa1742 caam_jr_alloc -EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0xc435c021 caam_jr_enqueue -EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0xcf48c8ae gen_split_key +EXPORT_SYMBOL drivers/crypto/caam/caam 0xde299c31 caam_drv_ctx_update +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x2aff4660 caam_jr_alloc +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x531a6583 caam_jr_enqueue +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0xab34b0ed caam_jr_free +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0xf3b9a8ea split_key_done +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0xfec0cda4 gen_split_key EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x2e152bb7 cnstr_shdsc_xts_skcipher_encap EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x3b54a9ad cnstr_shdsc_aead_decap EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x76a68e3e cnstr_shdsc_chachapoly @@ -156,1073 +156,1073 @@ 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 0x22db69c5 dpaa2_caam_enqueue +EXPORT_SYMBOL drivers/crypto/caam/dpaa2_caam 0x60236b25 dpaa2_caam_enqueue EXPORT_SYMBOL drivers/crypto/caam/error 0x53d0fc97 caam_ptr_sz EXPORT_SYMBOL drivers/crypto/caam/error 0xa51f16c7 caam_little_end +EXPORT_SYMBOL drivers/crypto/caam/error 0xaec6a850 caam_strstatus EXPORT_SYMBOL drivers/crypto/caam/error 0xbd67c092 caam_imx EXPORT_SYMBOL drivers/crypto/caam/error 0xd25da602 caam_dump_sg -EXPORT_SYMBOL drivers/crypto/caam/error 0xdcf3909d caam_strstatus -EXPORT_SYMBOL drivers/dma/xilinx/xilinx_dma 0x2d546a43 xilinx_vdma_channel_set_config -EXPORT_SYMBOL drivers/firewire/firewire-core 0x0223f508 fw_card_initialize +EXPORT_SYMBOL drivers/dma/xilinx/xilinx_dma 0xa7b81419 xilinx_vdma_channel_set_config +EXPORT_SYMBOL drivers/firewire/firewire-core 0x00816065 fw_core_remove_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0x03d2ecfa fw_run_transaction EXPORT_SYMBOL drivers/firewire/firewire-core 0x0bc6094c fw_core_remove_descriptor -EXPORT_SYMBOL drivers/firewire/firewire-core 0x15b1c7b2 fw_iso_context_flush_completions -EXPORT_SYMBOL drivers/firewire/firewire-core 0x1e587c2d fw_iso_resource_manage -EXPORT_SYMBOL drivers/firewire/firewire-core 0x1f3f242b fw_iso_context_create -EXPORT_SYMBOL drivers/firewire/firewire-core 0x21578e94 fw_device_enable_phys_dma -EXPORT_SYMBOL drivers/firewire/firewire-core 0x21e58f08 fw_core_handle_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x105e1674 fw_iso_context_create EXPORT_SYMBOL drivers/firewire/firewire-core 0x2885fec5 fw_get_request_speed -EXPORT_SYMBOL drivers/firewire/firewire-core 0x31da4dc8 fw_core_add_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0x2a68ef5a fw_core_remove_card EXPORT_SYMBOL drivers/firewire/firewire-core 0x3a771e39 fw_core_add_descriptor EXPORT_SYMBOL drivers/firewire/firewire-core 0x3c56ef91 fw_workqueue -EXPORT_SYMBOL drivers/firewire/firewire-core 0x3fe2f7b3 fw_core_handle_bus_reset -EXPORT_SYMBOL drivers/firewire/firewire-core 0x48a957c6 fw_send_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0x498c5fa6 fw_core_remove_card -EXPORT_SYMBOL drivers/firewire/firewire-core 0x4d2e5243 fw_iso_context_destroy -EXPORT_SYMBOL drivers/firewire/firewire-core 0x6c8c4343 fw_run_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0x44c47f38 fw_core_handle_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0x563e3dea fw_iso_buffer_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0x5c6748cf fw_send_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x65383ee1 fw_fill_response EXPORT_SYMBOL drivers/firewire/firewire-core 0x6dc50487 fw_csr_string -EXPORT_SYMBOL drivers/firewire/firewire-core 0x84d3b163 fw_iso_context_start +EXPORT_SYMBOL drivers/firewire/firewire-core 0x72a3f590 fw_card_add +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7753c789 fw_iso_buffer_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0x78b3e4f0 fw_iso_context_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7fbb4bc4 fw_core_handle_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0x802e1750 fw_device_enable_phys_dma EXPORT_SYMBOL drivers/firewire/firewire-core 0x86468d44 fw_rcode_string -EXPORT_SYMBOL drivers/firewire/firewire-core 0x8d170eca fw_cancel_transaction -EXPORT_SYMBOL drivers/firewire/firewire-core 0x8ff45dd7 fw_iso_context_queue -EXPORT_SYMBOL drivers/firewire/firewire-core 0x998d0610 fw_fill_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x8a9e3437 fw_core_add_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0x9b27fc39 fw_iso_context_start +EXPORT_SYMBOL drivers/firewire/firewire-core 0xa3ad6ddf fw_bus_type +EXPORT_SYMBOL drivers/firewire/firewire-core 0xa47b1b36 fw_send_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0xaaa77909 fw_cancel_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0xaafec5e1 fw_iso_context_flush_completions EXPORT_SYMBOL drivers/firewire/firewire-core 0xaedf84ce fw_high_memory_region -EXPORT_SYMBOL drivers/firewire/firewire-core 0xb08276ce fw_iso_context_stop -EXPORT_SYMBOL drivers/firewire/firewire-core 0xbde5cb65 fw_bus_type -EXPORT_SYMBOL drivers/firewire/firewire-core 0xc11862a8 fw_core_handle_request -EXPORT_SYMBOL drivers/firewire/firewire-core 0xc3ab267c fw_card_add -EXPORT_SYMBOL drivers/firewire/firewire-core 0xd4cff97e fw_send_request -EXPORT_SYMBOL drivers/firewire/firewire-core 0xd9eb8f37 fw_iso_buffer_init -EXPORT_SYMBOL drivers/firewire/firewire-core 0xdf47f63b fw_core_remove_address_handler -EXPORT_SYMBOL drivers/firewire/firewire-core 0xe048aa7f fw_iso_buffer_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0xc2389394 fw_iso_context_queue_flush +EXPORT_SYMBOL drivers/firewire/firewire-core 0xcc94940f fw_iso_context_stop +EXPORT_SYMBOL drivers/firewire/firewire-core 0xce196bd1 fw_iso_context_queue +EXPORT_SYMBOL drivers/firewire/firewire-core 0xcf6e71de fw_core_handle_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0xdb20e888 fw_iso_resource_manage +EXPORT_SYMBOL drivers/firewire/firewire-core 0xdf8f5233 fw_card_initialize 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 0xec770788 fw_schedule_bus_reset -EXPORT_SYMBOL drivers/firewire/firewire-core 0xfc37f4d6 fw_iso_context_queue_flush +EXPORT_SYMBOL drivers/firewire/firewire-core 0xfacc3722 fw_schedule_bus_reset EXPORT_SYMBOL drivers/firmware/broadcom/tee_bnxt_fw 0x57b73b33 tee_bnxt_fw_load EXPORT_SYMBOL drivers/firmware/broadcom/tee_bnxt_fw 0xdfaff93c tee_bnxt_copy_coredump -EXPORT_SYMBOL drivers/firmware/imx/imx-dsp 0x04f28f45 imx_dsp_ring_doorbell -EXPORT_SYMBOL drivers/firmware/imx/imx-dsp 0x25a3b39c imx_dsp_request_channel -EXPORT_SYMBOL drivers/firmware/imx/imx-dsp 0xaaa4a938 imx_dsp_free_channel -EXPORT_SYMBOL drivers/fpga/dfl 0xd3dd8df3 dfl_driver_unregister -EXPORT_SYMBOL drivers/fpga/dfl 0xe3cfd9cd __dfl_driver_register +EXPORT_SYMBOL drivers/firmware/imx/imx-dsp 0x3198b0d4 imx_dsp_free_channel +EXPORT_SYMBOL drivers/firmware/imx/imx-dsp 0xb089ae62 imx_dsp_request_channel +EXPORT_SYMBOL drivers/firmware/imx/imx-dsp 0xb861a7dc imx_dsp_ring_doorbell +EXPORT_SYMBOL drivers/fpga/dfl 0x537083e9 dfl_driver_unregister +EXPORT_SYMBOL drivers/fpga/dfl 0x99339657 __dfl_driver_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x00524a47 drm_gem_map_detach EXPORT_SYMBOL drivers/gpu/drm/drm 0x00738a74 drm_driver_legacy_fb_format -EXPORT_SYMBOL drivers/gpu/drm/drm 0x008baca3 drm_display_info_set_bus_formats -EXPORT_SYMBOL drivers/gpu/drm/drm 0x01c1fd22 drm_crtc_wait_one_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x01f88e0d drm_gem_create_mmap_offset_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0x028d5f73 drm_property_create_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0x03adf718 drm_add_modes_noedid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x00cc2502 drm_syncobj_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x00cd549f drm_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0185c19a drm_client_modeset_commit_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x01e827d9 drm_connector_attach_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x02a5019e drm_connector_set_panel_orientation +EXPORT_SYMBOL drivers/gpu/drm/drm 0x02b1c20c drm_gem_vm_close +EXPORT_SYMBOL drivers/gpu/drm/drm 0x02eedd21 drm_panel_unprepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0x03107e81 drm_gem_shmem_purge_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0314d61a __drmm_encoder_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0334fa71 drm_gem_dmabuf_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x033b0f16 drm_i2c_encoder_mode_fixup EXPORT_SYMBOL drivers/gpu/drm/drm 0x03c63897 __drm_get_edid_firmware_path -EXPORT_SYMBOL drivers/gpu/drm/drm 0x03e55554 drm_framebuffer_unregister_private -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0422ab95 drm_gem_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x048cee20 drm_hdmi_infoframe_set_hdr_metadata +EXPORT_SYMBOL drivers/gpu/drm/drm 0x053a9365 drm_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x054d19bf drm_connector_set_vrr_capable_property EXPORT_SYMBOL drivers/gpu/drm/drm 0x065e86ac drm_detect_hdmi_monitor -EXPORT_SYMBOL drivers/gpu/drm/drm 0x06c20819 drm_atomic_state_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x06ceb248 drm_mode_put_tile_group -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0700669f drm_crtc_arm_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x06dda333 drm_gem_shmem_purge EXPORT_SYMBOL drivers/gpu/drm/drm 0x070b28aa drm_ht_remove_item -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0746fc5f drm_gem_put_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0x07685f26 drm_connector_set_path_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x07bc3437 drm_mode_plane_set_obj_prop +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0723574b drm_syncobj_get_fd EXPORT_SYMBOL drivers/gpu/drm/drm 0x07fb449a drm_vma_offset_manager_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0847b803 drm_atomic_set_mode_for_crtc EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a72f765 drm_clflush_virt_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0b855770 drm_modeset_backoff -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0c401507 drm_crtc_vblank_count_and_time -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0c72160c drm_connector_attach_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0be957f6 drm_crtc_check_viewport +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0bfc8d91 drm_crtc_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0c6edac5 drm_object_attach_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0c7c0691 drm_plane_get_damage_clips_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d5ed6cf drm_dev_enter +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d6bc2d3 drm_gem_shmem_vmap EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d9b4753 drm_mode_equal -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d9f01dc drm_panel_get_modes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ddf9dfc drm_gem_prime_import -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0de3f5dd drm_crtc_vblank_waitqueue -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0e546d59 drm_bridge_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0e8c28f0 drm_client_framebuffer_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0eb15974 drm_atomic_add_affected_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0edbed1b drm_bridge_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0df4dc2e of_drm_find_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0e4f04e5 drm_sysfs_connector_status_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f065345 drm_bridge_chain_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f0dc283 drm_property_replace_blob EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f7acb66 drm_mm_print EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fd60df2 drm_get_connector_status_name EXPORT_SYMBOL drivers/gpu/drm/drm 0x107742a9 drm_get_subpixel_order_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x119182de drm_prime_pages_to_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1269cc12 drm_debugfs_remove_files EXPORT_SYMBOL drivers/gpu/drm/drm 0x127a8c6b drm_flip_work_queue -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1309991b drm_panel_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x13431357 drm_crtc_from_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0x14b204ef drm_gem_shmem_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x14eefbde drm_connector_attach_tv_margin_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x15bf4757 drm_gem_cma_prime_import_sg_table_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x15fa4845 drm_dev_enter -EXPORT_SYMBOL drivers/gpu/drm/drm 0x17e2a98c drm_sysfs_connector_status_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x180f6550 drm_client_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x18f8dc43 drm_plane_create_color_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x190a6296 drm_connector_attach_edid_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a1a6a70 drm_client_rotation +EXPORT_SYMBOL drivers/gpu/drm/drm 0x13472717 drm_gem_map_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x13ea4707 drm_framebuffer_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x141a7db1 drm_mode_is_420 +EXPORT_SYMBOL drivers/gpu/drm/drm 0x142d0f13 drm_mode_get_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x17867005 drm_property_blob_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x17955ed4 drm_dev_set_unique +EXPORT_SYMBOL drivers/gpu/drm/drm 0x17f081b0 drm_atomic_set_fb_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x181764c4 drm_writeback_signal_completion +EXPORT_SYMBOL drivers/gpu/drm/drm 0x18c49e41 drm_property_lookup_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1918f16e drm_read +EXPORT_SYMBOL drivers/gpu/drm/drm 0x19ae3501 drm_atomic_set_crtc_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a3e1a4c drm_gem_create_mmap_offset EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a411479 drm_syncobj_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1ad27765 drm_modeset_lock_single_interruptible -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1b440819 drm_plane_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1b4ae771 drm_mode_object_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c4e0e77 drm_connector_list_iter_next -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1ebb612e drm_framebuffer_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1f75b559 drm_warn_on_modeset_not_all_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x205ba99e drm_of_component_probe -EXPORT_SYMBOL drivers/gpu/drm/drm 0x20bca190 drm_bridge_chain_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1b208ad5 drm_gem_dmabuf_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1b5387b7 drm_object_property_set_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c47f9bf drm_client_modeset_probe +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1cacc656 drm_crtc_vblank_restore +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1daa6077 drm_mode_object_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1db0d251 drm_client_framebuffer_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1e001281 drm_connector_attach_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1ec36cd2 drm_compat_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1ee0a612 drm_any_plane_has_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1efd2971 drm_set_preferred_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1f4f4708 drm_gem_lock_reservations +EXPORT_SYMBOL drivers/gpu/drm/drm 0x207acf13 drm_plane_create_zpos_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x213b7fdc __drmm_universal_plane_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x217455e8 drm_mode_create EXPORT_SYMBOL drivers/gpu/drm/drm 0x2183c08c drm_mm_scan_add_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0x219e0e88 drm_property_create_enum EXPORT_SYMBOL drivers/gpu/drm/drm 0x21d541eb drm_flip_work_queue_task -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2208eba1 drm_property_create_bitmask -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2235a7c5 drm_any_plane_has_format -EXPORT_SYMBOL drivers/gpu/drm/drm 0x22ce0f64 drm_connector_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2427f604 __drmm_encoder_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x22a43187 drm_crtc_vblank_waitqueue +EXPORT_SYMBOL drivers/gpu/drm/drm 0x23bac834 drm_gem_prime_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0x23ebf3f8 drm_property_create_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x242703c9 drm_client_modeset_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x24396fd2 drm_display_mode_from_cea_vic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2495effb drm_panel_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x24c790d6 __drm_atomic_helper_set_config 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 0x2560a80d drm_mode_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x256d9fae drm_client_rotation EXPORT_SYMBOL drivers/gpu/drm/drm 0x25daad93 __drm_mm_interval_first -EXPORT_SYMBOL drivers/gpu/drm/drm 0x26e2554c drm_property_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x272ea302 drm_of_crtc_port_mask +EXPORT_SYMBOL drivers/gpu/drm/drm 0x261d98c5 drm_aperture_remove_conflicting_framebuffers EXPORT_SYMBOL drivers/gpu/drm/drm 0x2754dad8 drm_mm_reserve_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0x27662309 drm_crtc_create_scaling_filter_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x27dd0a11 drm_gem_shmem_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2822410b drm_gem_prime_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0x285bab43 drm_mode_prune_invalid EXPORT_SYMBOL drivers/gpu/drm/drm 0x28779e52 drm_printf -EXPORT_SYMBOL drivers/gpu/drm/drm 0x29091d70 drm_crtc_vblank_off -EXPORT_SYMBOL drivers/gpu/drm/drm 0x29caea03 drm_property_create_object +EXPORT_SYMBOL drivers/gpu/drm/drm 0x28b915e1 drm_mode_set_config_internal EXPORT_SYMBOL drivers/gpu/drm/drm 0x29f078d1 drm_mode_legacy_fb_format EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a962499 drm_mm_scan_init_with_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2b063102 of_drm_find_panel -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2b2a0e9c drm_wait_one_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2b62a173 drm_calc_timestamping_constants -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2b864cbe drm_client_modeset_commit_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2bc28db5 drm_master_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2be4d938 drm_modeset_lock_all_ctx -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ca71ab0 drm_set_preferred_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2cf6e7ab drm_i2c_encoder_restore +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ba38fec drm_gem_handle_create EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d50570f drm_rect_calc_hscale -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d8df26c drm_crtc_vblank_restore -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e05e358 drm_crtc_vblank_helper_get_vblank_timestamp_internal -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e7fcf76 drm_gem_shmem_unpin +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d93d141 drm_i2c_encoder_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d94a7f0 drm_atomic_check_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e08cda2 drm_mode_destroy EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ed3c600 drm_mode_debug_printmodeline -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2efbf90a drm_bridge_chain_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f1a0c35 drm_connector_atomic_hdr_metadata_equal -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f252f99 drm_mode_duplicate -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2fb27cc9 drm_syncobj_add_point -EXPORT_SYMBOL drivers/gpu/drm/drm 0x316ef7b4 drm_mode_create_suggested_offset_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x318fd75c drm_modeset_unlock -EXPORT_SYMBOL drivers/gpu/drm/drm 0x319f360c drm_modeset_lock +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ef53995 drm_atomic_nonblocking_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2efc5b73 drm_gem_objects_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f73bf97 drm_mode_validate_driver +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f76af0e devm_aperture_acquire_from_firmware +EXPORT_SYMBOL drivers/gpu/drm/drm 0x31118ae8 drm_display_info_set_bus_formats +EXPORT_SYMBOL drivers/gpu/drm/drm 0x312cfc77 drm_hdmi_avi_infoframe_quant_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3131f764 drm_property_blob_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x31552971 drm_print_regset32 EXPORT_SYMBOL drivers/gpu/drm/drm 0x31b8a5e3 __drm_set_edid_firmware_path +EXPORT_SYMBOL drivers/gpu/drm/drm 0x31c25cdf drm_atomic_normalize_zpos +EXPORT_SYMBOL drivers/gpu/drm/drm 0x32286494 drm_sysfs_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x32358691 drm_framebuffer_plane_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0x326cf8aa drm_writeback_connector_init EXPORT_SYMBOL drivers/gpu/drm/drm 0x32a0cc37 drm_print_bits -EXPORT_SYMBOL drivers/gpu/drm/drm 0x34ce7430 drm_atomic_state_default_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x365c377d drm_mode_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x36b9505a drm_plane_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3805dbac drm_property_create_bool -EXPORT_SYMBOL drivers/gpu/drm/drm 0x38f25f3c drm_property_create_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x393d4eba drm_crtc_vblank_helper_get_vblank_timestamp -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3994cf51 drm_modeset_unlock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x33250671 drm_mode_create_dp_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x34885dca drm_crtc_vblank_on +EXPORT_SYMBOL drivers/gpu/drm/drm 0x37aa029a drm_panel_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x37cc31da drm_master_internal_acquire +EXPORT_SYMBOL drivers/gpu/drm/drm 0x37d6f988 drm_dev_has_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x386a0c1b drm_clflush_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x388a557e drm_connector_attach_max_bpc_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x39144a97 drm_connector_attach_dp_subconnector_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x39322f1a drm_dev_printk +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3991338b drm_modeset_unlock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3a3ba407 drm_plane_create_blend_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ab1c468 drm_event_cancel_free EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ab87110 drm_mode_equal_no_clocks +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ad316da drm_open EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b0e5e9c __drm_puts_coredump -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b7e1fa7 drm_i2c_encoder_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b64298b drm_gem_unlock_reservations EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ba17eab drm_ht_insert_item -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3bac546a drm_plane_create_zpos_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c06b61d drm_gem_mmap_obj +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3bdfc194 drm_bridge_add EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c22a4d8 drm_vma_offset_manager_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c57911c drm_plane_get_damage_clips_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3dc23ceb drm_atomic_set_fence_for_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3df8bca2 drmm_mode_config_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3d23ea84 drm_crtc_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3d4ddd19 drm_atomic_bridge_chain_post_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e3bc5a4 drm_property_replace_global_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e43b0d1 drm_plane_get_damage_clips EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e50b109 drm_gem_fence_array_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e67ba7b drm_atomic_normalize_zpos -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e90025a drm_state_dump EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f405489 __drm_printfn_err -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3fb72ac0 drm_framebuffer_plane_width -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3fb8bcb0 drm_mode_create_tv_margin_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ff49ba0 drm_gem_free_mmap_offset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x40102290 drm_mode_create_hdmi_colorspace_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x40811228 drm_crtc_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x408f3a8f drm_handle_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x40edd3eb drm_connector_list_iter_end -EXPORT_SYMBOL drivers/gpu/drm/drm 0x41822ed0 drm_framebuffer_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x41e12fb2 drm_mode_parse_command_line_for_connector -EXPORT_SYMBOL drivers/gpu/drm/drm 0x43737fc6 drm_gem_handle_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x43d2db5c drm_hdmi_avi_infoframe_colorspace +EXPORT_SYMBOL drivers/gpu/drm/drm 0x400a60ce drm_atomic_set_fence_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x40740514 drm_noop +EXPORT_SYMBOL drivers/gpu/drm/drm 0x40c196d1 drm_syncobj_replace_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0x42516d9e drm_writeback_cleanup_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0x42799dce drm_crtc_vblank_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x437519ad drm_gem_prime_mmap EXPORT_SYMBOL drivers/gpu/drm/drm 0x4403a9c3 drm_mode_get_hv_timing EXPORT_SYMBOL drivers/gpu/drm/drm 0x44a2cadb drm_prime_sg_to_dma_addr_array -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4505dffe drm_atomic_state_init EXPORT_SYMBOL drivers/gpu/drm/drm 0x4575a0ca drm_mode_set_crtcinfo -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4620dbbd drm_invalid_op -EXPORT_SYMBOL drivers/gpu/drm/drm 0x46f06b7f drmm_kmalloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x457eebc7 drm_gem_unmap_dma_buf +EXPORT_SYMBOL drivers/gpu/drm/drm 0x48307e92 drm_gem_shmem_print_info EXPORT_SYMBOL drivers/gpu/drm/drm 0x4831da6e drm_vma_offset_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x484ddefc of_drm_find_bridge -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4904007c drm_atomic_private_obj_fini -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4980b9b1 drm_plane_create_blend_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x48ba0dbc drm_atomic_state_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0x48da9e68 drm_atomic_add_encoder_bridges +EXPORT_SYMBOL drivers/gpu/drm/drm 0x493577c2 drm_mode_object_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x49bd293a drm_connector_init EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a35d30d drm_mode_set_name EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a7d75b0 drm_memcpy_from_wc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ab0b321 drm_atomic_bridge_chain_post_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b21828f drm_hdmi_avi_infoframe_colorspace +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b5f6c34 drm_dev_unplug EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b7ebf95 drm_mm_remove_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4cba53f9 drm_release_noglobal -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4cd5edb6 drm_connector_set_panel_orientation_with_quirk -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d2d9766 drm_plane_enable_fb_damage_clips -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ea037e5 drm_mode_create_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4bde2787 drm_gem_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c4644e9 drm_modeset_drop_locks +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c818d36 drm_atomic_print_new_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ca3abd9 drm_syncobj_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e8ce25f drm_atomic_get_connector_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f05a64a __devm_drm_dev_alloc EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f18a150 __drm_debug -EXPORT_SYMBOL drivers/gpu/drm/drm 0x50162b91 drm_mode_create_dvi_i_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f7e39ab drm_gem_prime_fd_to_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f91bcf2 drm_property_create_signed_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50004ba5 drm_panel_of_backlight +EXPORT_SYMBOL drivers/gpu/drm/drm 0x504586dd drm_mode_crtc_set_gamma_size EXPORT_SYMBOL drivers/gpu/drm/drm 0x50674de7 drm_timeout_abs_to_jiffies -EXPORT_SYMBOL drivers/gpu/drm/drm 0x50e36fa5 drm_connector_has_possible_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50806124 drm_gem_private_object_init EXPORT_SYMBOL drivers/gpu/drm/drm 0x513072fe __drm_puts_seq_file -EXPORT_SYMBOL drivers/gpu/drm/drm 0x51ce562f drm_client_modeset_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x51833751 drm_i2c_encoder_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x51918dc9 drm_mode_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0x51c71998 drm_bridge_chain_disable EXPORT_SYMBOL drivers/gpu/drm/drm 0x521ad6d0 drm_puts -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5240e2ae drm_panel_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5263a6ca drm_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5338c85c drm_gem_shmem_put_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5375e5a1 drm_connector_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5469a67c drm_event_reserve_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x525264db drm_syncobj_find_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0x527fa85b drm_gem_dma_resv_wait +EXPORT_SYMBOL drivers/gpu/drm/drm 0x53cc7e2c drm_is_current_master +EXPORT_SYMBOL drivers/gpu/drm/drm 0x546f1b2a drm_ioctl_permit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x54c288e9 drm_crtc_arm_vblank_event EXPORT_SYMBOL drivers/gpu/drm/drm 0x5542443b drm_flip_work_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x554498e5 drm_connector_set_tile_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x559f2cb7 drm_syncobj_get_fd -EXPORT_SYMBOL drivers/gpu/drm/drm 0x55a81ed2 __drm_atomic_helper_disable_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0x562c8f32 drm_writeback_queue_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0x55b0171b drm_gem_shmem_madvise +EXPORT_SYMBOL drivers/gpu/drm/drm 0x562156eb drm_connector_set_panel_orientation_with_quirk +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5681c93f drm_syncobj_get_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0x569d2ab5 drm_mode_find_dmt EXPORT_SYMBOL drivers/gpu/drm/drm 0x57698a50 drm_mm_takedown +EXPORT_SYMBOL drivers/gpu/drm/drm 0x576f82c3 drm_modeset_lock +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57afdbc0 drm_mode_config_cleanup EXPORT_SYMBOL drivers/gpu/drm/drm 0x57b6efe3 drm_ioctl_flags -EXPORT_SYMBOL drivers/gpu/drm/drm 0x58bd9c91 drm_prime_pages_to_sg -EXPORT_SYMBOL drivers/gpu/drm/drm 0x58d5e359 drm_vblank_work_cancel_sync +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57ebefe0 drm_encoder_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x58529ea0 drm_connector_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x58622a6e drm_of_component_probe EXPORT_SYMBOL drivers/gpu/drm/drm 0x59056243 drm_mm_replace_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5965364a drm_gem_prime_fd_to_handle -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5976c248 drm_i2c_encoder_dpms EXPORT_SYMBOL drivers/gpu/drm/drm 0x599dea05 drm_edid_is_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5a66b152 drm_connector_attach_max_bpc_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5ad6e4b6 __drm_atomic_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5af390a8 drm_mode_create_tv_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5be42bdc drm_connector_list_iter_begin -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c729f7c drm_mode_is_420_only -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f22ea47 drm_get_edid_switcheroo -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f7375be drm_sysfs_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x59d385de drm_put_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5a153a49 drm_connector_update_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5df1ebc9 drm_crtc_vblank_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5e744438 drm_universal_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f33402a drm_atomic_private_obj_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f775a33 drm_crtc_handle_vblank EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f7985a5 drm_mm_scan_remove_block -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f9545d0 drm_property_add_enum -EXPORT_SYMBOL drivers/gpu/drm/drm 0x606c7d3f drm_crtc_send_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x61163095 drm_gem_dmabuf_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x62289fd7 drm_gem_shmem_purge -EXPORT_SYMBOL drivers/gpu/drm/drm 0x62a8df16 drm_dev_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x62c8aaca drm_color_lut_check -EXPORT_SYMBOL drivers/gpu/drm/drm 0x62cceab6 drm_client_modeset_probe -EXPORT_SYMBOL drivers/gpu/drm/drm 0x62da92b1 drm_atomic_set_crtc_for_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0x62fa91c6 drm_atomic_get_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6421bc87 drm_add_edid_modes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x64256262 drm_compat_ioctl -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6436289a drm_vblank_work_schedule -EXPORT_SYMBOL drivers/gpu/drm/drm 0x64b5b795 drm_syncobj_get_handle -EXPORT_SYMBOL drivers/gpu/drm/drm 0x64c7ebe6 drm_gem_shmem_purge_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5ff82261 drm_panel_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x606a5003 drm_property_create_bool +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6075ecbd drm_framebuffer_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6304a4b7 drm_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x63b53612 drm_gem_dmabuf_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x64512f3d drm_object_property_get_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x64ece03c drm_gem_cma_prime_import_sg_table_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x65143e78 drm_property_create_object EXPORT_SYMBOL drivers/gpu/drm/drm 0x65702bd6 drm_default_rgb_quant_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x662e6c95 drm_dev_has_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x663b8609 __devm_drm_dev_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x667a0dcc drm_atomic_get_old_bridge_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x67070431 drm_panel_unprepare -EXPORT_SYMBOL drivers/gpu/drm/drm 0x68020793 drm_object_attach_property EXPORT_SYMBOL drivers/gpu/drm/drm 0x6914a422 drm_edid_are_equal -EXPORT_SYMBOL drivers/gpu/drm/drm 0x693d3794 drm_gem_unmap_dma_buf -EXPORT_SYMBOL drivers/gpu/drm/drm 0x696a3a57 drm_atomic_state_clear -EXPORT_SYMBOL drivers/gpu/drm/drm 0x69795832 drm_crtc_handle_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x698334d2 drm_bridge_chain_mode_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6a03cc10 drm_atomic_nonblocking_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6a3c0d69 drm_file_get_master -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6a72b70a drm_panel_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6a90e313 drm_send_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ad620f4 drm_client_framebuffer_flush -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b8e995d drm_plane_create_alpha_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b96b759 drm_connector_attach_vrr_capable_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b9db861 drm_gem_dmabuf_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6c0ae3ab drm_vblank_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6c2f059f drm_is_current_master -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6da1f13a drm_gem_prime_handle_to_fd -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6dbeecc6 drm_modeset_lock_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ddfcac7 drm_connector_attach_dp_subconnector_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x69b5bd1e drm_atomic_set_mode_prop_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6a4add3d drm_hdcp_update_content_protection +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6a9efd6a drm_gem_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6afc06f4 __drmm_add_action_or_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6be41e72 drm_plane_create_alpha_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6bf9d09c drm_i2c_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6c77e28e drm_crtc_set_max_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6d6cfe53 drm_panel_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e01607e drm_atomic_get_new_bridge_state EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e30ba8e drm_rect_rotate_inv -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e761328 drm_modeset_acquire_fini -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e80a290 drm_hdmi_avi_infoframe_bars -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ea6f92b drm_crtc_set_max_vblank_count EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ef2f78e drm_format_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6f244a69 drm_i2c_encoder_save -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6fa1ed9a drm_av_sync_delay -EXPORT_SYMBOL drivers/gpu/drm/drm 0x72946325 drm_gtf_mode_complex -EXPORT_SYMBOL drivers/gpu/drm/drm 0x73027746 drm_gem_object_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x73a9bbbe drm_crtc_commit_wait -EXPORT_SYMBOL drivers/gpu/drm/drm 0x73e3ab76 drm_gem_prime_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x73fbd374 drm_send_event_timestamp_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x74a2e313 drm_client_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0x74ed074d drm_gem_shmem_madvise -EXPORT_SYMBOL drivers/gpu/drm/drm 0x75149b60 drm_i2c_encoder_mode_set -EXPORT_SYMBOL drivers/gpu/drm/drm 0x75266203 drm_writeback_prepare_job -EXPORT_SYMBOL drivers/gpu/drm/drm 0x763f7d75 drm_gem_lock_reservations -EXPORT_SYMBOL drivers/gpu/drm/drm 0x76613c42 drm_atomic_bridge_chain_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x769ab5d3 drm_modeset_drop_locks -EXPORT_SYMBOL drivers/gpu/drm/drm 0x76a2ce18 drm_dev_printk -EXPORT_SYMBOL drivers/gpu/drm/drm 0x772f097a drm_gem_map_detach -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7913c9b5 drm_mode_crtc_set_gamma_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7941bf77 drm_atomic_set_mode_prop_for_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x795c8737 drm_mode_object_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7a49558b drm_mode_validate_driver -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7adc7d08 drm_client_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6f6ccc65 drm_gem_object_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x700f14c5 drm_gem_shmem_pin +EXPORT_SYMBOL drivers/gpu/drm/drm 0x703db344 drm_mode_is_420_also +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7105d026 drm_event_reserve_init_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x711b976b drm_panel_get_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x71c57afa drm_send_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x72cad4b3 drm_plane_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7312c975 drm_crtc_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x734388c3 drm_mode_create_aspect_ratio_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x738d7bd3 __drmm_crtc_alloc_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x73e0ef90 drm_modeset_lock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x73e1781a drm_warn_on_modeset_not_all_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7522e9f6 drm_add_override_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x753dd5dc drm_mode_create_content_type_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x75896292 drm_client_buffer_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x76535cf1 drm_mode_plane_set_obj_prop +EXPORT_SYMBOL drivers/gpu/drm/drm 0x76638239 drm_add_modes_noedid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x76c5afd0 drm_writeback_prepare_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0x778b28f5 drm_release_noglobal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7930cc45 drm_gem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x796000b4 drm_client_buffer_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x796fc8ef drm_gem_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b07a0dc drm_connector_set_link_status_property EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b2e2166 drm_vma_node_revoke -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7baf6db7 drm_dev_unplug -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7bbc9c27 drm_aperture_remove_conflicting_framebuffers -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7bd74d11 drm_debugfs_create_files -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c0270b1 drm_connector_attach_hdr_output_metadata_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c4a5ea9 drm_mode_create_scaling_mode_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7dbcc6c8 drm_client_modeset_check -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7eade15e drm_add_override_edid_modes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x809716de drm_syncobj_find_fence -EXPORT_SYMBOL drivers/gpu/drm/drm 0x81895507 drm_ioctl_kernel +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7bf4633a drm_atomic_state_default_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c28406b drm_crtc_enable_color_mgmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e101673 drm_invalid_op +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e35c338 drm_state_dump +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fa5cad9 drm_mode_is_420_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0x80ba4464 drm_master_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x80e0a049 drm_mode_create_hdmi_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x80e8cc85 drm_atomic_get_crtc_state EXPORT_SYMBOL drivers/gpu/drm/drm 0x81992424 drm_edid_header_is_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8285e550 drm_vblank_work_flush -EXPORT_SYMBOL drivers/gpu/drm/drm 0x831e622c drm_mode_object_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0x828c6adb drm_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x82e598b1 drm_plane_create_scaling_filter_property EXPORT_SYMBOL drivers/gpu/drm/drm 0x842dd90c drm_flip_work_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x846a6380 drm_atomic_set_fb_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x84cd2bbc drm_vblank_work_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x851a0ce6 drm_property_create_bitmask EXPORT_SYMBOL drivers/gpu/drm/drm 0x8563a554 drm_ht_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x859e53f1 drm_property_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8617e0d7 drm_crtc_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8566088f drm_atomic_get_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x85d81a30 drm_bridge_chain_mode_set EXPORT_SYMBOL drivers/gpu/drm/drm 0x871ab41a drm_rect_intersect -EXPORT_SYMBOL drivers/gpu/drm/drm 0x893e1f8e drm_mode_find_dmt -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8984976e drm_panel_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8a40a2ac drm_writeback_cleanup_job -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8b0400d8 drm_writeback_signal_completion -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8e01151e drm_dev_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8e0d5717 drm_mode_config_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8e6e3f5a drm_panel_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8f59e663 drm_client_dev_hotplug -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8fc63aed drm_i2c_encoder_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm 0x911666b5 drm_plane_get_damage_clips +EXPORT_SYMBOL drivers/gpu/drm/drm 0x87a48884 drm_modeset_acquire_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8808a497 drm_debugfs_create_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0x884379bd drm_ioctl_kernel +EXPORT_SYMBOL drivers/gpu/drm/drm 0x885448a0 drm_gem_prime_import_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x887b2e78 drm_panel_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0x888aae22 drm_color_lut_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0x88f4f3fc drm_hdmi_avi_infoframe_bars +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8a14cdf8 drm_modeset_lock_single_interruptible +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8b1fc6c9 of_drm_find_panel +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8b61f1d0 drm_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c69f9fc drm_atomic_add_affected_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d9b1baa drm_connector_list_iter_end +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8dc86292 drmm_kmalloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8f39e2d1 drmm_kfree +EXPORT_SYMBOL drivers/gpu/drm/drm 0x904c693d drm_client_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x905ca06a drm_mode_create_suggested_offset_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x90b631b9 drmm_mode_config_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x90e69c56 drm_vblank_work_flush +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9102079c drm_gem_shmem_create_with_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9144cdec drm_dev_register EXPORT_SYMBOL drivers/gpu/drm/drm 0x91fec1cc drm_rect_calc_vscale -EXPORT_SYMBOL drivers/gpu/drm/drm 0x922a4f5e drm_gem_dmabuf_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9229cff6 drm_client_framebuffer_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x923ce44f drm_syncobj_add_point +EXPORT_SYMBOL drivers/gpu/drm/drm 0x92a8af17 drm_connector_list_iter_next EXPORT_SYMBOL drivers/gpu/drm/drm 0x92ee8a9d drm_get_format_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0x93f48927 drm_connector_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm 0x945a590b drm_master_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x949596c8 drm_gem_dmabuf_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x94a62fe4 drm_syncobj_replace_fence -EXPORT_SYMBOL drivers/gpu/drm/drm 0x95a96356 drm_mode_create_content_type_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9343d94e drm_bridge_chain_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9433197c drm_gem_mmap_obj +EXPORT_SYMBOL drivers/gpu/drm/drm 0x946c0c0f drm_crtc_vblank_count_and_time +EXPORT_SYMBOL drivers/gpu/drm/drm 0x94fae499 drm_i2c_encoder_detect +EXPORT_SYMBOL drivers/gpu/drm/drm 0x95242e84 drm_gem_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x95c8871f drm_vblank_work_schedule EXPORT_SYMBOL drivers/gpu/drm/drm 0x95dbc76d drm_ht_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x96ff25a2 __drmm_add_action_or_reset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9704b8ad drm_dev_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0x97e63118 drm_open -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9874b180 drm_gem_vm_open -EXPORT_SYMBOL drivers/gpu/drm/drm 0x99cac452 drm_crtc_vblank_on +EXPORT_SYMBOL drivers/gpu/drm/drm 0x96a4243b drm_framebuffer_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x96ab3618 drm_crtc_vblank_helper_get_vblank_timestamp_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x97ebebe8 drm_atomic_get_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x98d27e90 drm_mode_object_find EXPORT_SYMBOL drivers/gpu/drm/drm 0x99fd20aa drm_rect_clip_scaled +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9a60d034 drm_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9aa0fcb5 drm_i2c_encoder_save EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b285573 drm_match_cea_mode EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b8a53f5 drm_ht_just_insert_please EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b95c885 drm_mode_match -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b99b34a drm_gtf_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9cd585e2 drm_gem_prime_handle_to_fd EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ce050be drm_mode_copy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9e36e591 drm_gem_handle_delete EXPORT_SYMBOL drivers/gpu/drm/drm 0x9e7e8009 drm_edid_to_sad -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9e91226d drm_atomic_get_private_obj_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9f08fc2a drm_crtc_init_with_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9f4ce41f drm_framebuffer_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9f9823d7 of_drm_get_panel_orientation +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9eab9aa9 drm_atomic_private_obj_fini EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ffcdfdb drm_detect_monitor_audio +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa04fc2ec drm_gem_map_dma_buf EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0713087 drm_ht_find_item -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1467430 drm_atomic_add_encoder_bridges -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa2998021 drm_connector_attach_content_type_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa2f9d835 drm_plane_force_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa54c8d17 drm_mode_create_aspect_ratio_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa5a0ed48 drm_object_property_get_value -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa68dc43f drm_noop -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa7693e7e drm_connector_attach_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa781255d drm_gem_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa782709e drm_property_replace_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa7fd035b drm_hdmi_vendor_infoframe_from_display_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa8136ed1 drm_bridge_chain_post_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa81489ca drm_mode_create_from_cmdline_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa87ba99a drm_atomic_get_old_private_obj_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa8e22c5c drm_client_buffer_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa9e72ee4 drm_property_blob_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaad915d7 drm_plane_create_scaling_filter_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xab6e1339 drm_atomic_bridge_chain_check -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaba42297 drm_crtc_vblank_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0xabba8473 drm_syncobj_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0xac1a4530 drm_prime_gem_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0xac8f224a drm_atomic_add_affected_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa29658a8 drm_gtf_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa29c069c drm_crtc_vblank_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa29d572d drm_gem_shmem_unpin +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa2f182b6 drm_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa38d6433 drm_bridge_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa54f139b drm_gem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa5838be8 drm_plane_create_zpos_immutable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa6cc79b0 drm_master_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa7519537 drm_atomic_set_crtc_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa771dbec drm_hdmi_avi_infoframe_content_type +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa9a53f8e drm_client_dev_hotplug +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaa3ba633 drm_mode_probed_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xab7bcbd4 drm_modeset_unlock +EXPORT_SYMBOL drivers/gpu/drm/drm 0xac69d8d0 drm_aperture_remove_conflicting_pci_framebuffers EXPORT_SYMBOL drivers/gpu/drm/drm 0xad4e902b drm_color_ctm_s31_32_to_qm_n -EXPORT_SYMBOL drivers/gpu/drm/drm 0xad56b717 drm_aperture_remove_conflicting_pci_framebuffers -EXPORT_SYMBOL drivers/gpu/drm/drm 0xad78cf1c drm_mode_is_420_also -EXPORT_SYMBOL drivers/gpu/drm/drm 0xadd084dd drm_hdmi_avi_infoframe_quant_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xad9ac2e1 drm_client_modeset_dpms EXPORT_SYMBOL drivers/gpu/drm/drm 0xae277372 __drm_crtc_commit_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf248c35 drm_writeback_connector_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf415001 drm_atomic_bridge_chain_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf534ec6 drm_atomic_get_new_private_obj_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf59e0d3 drm_crtc_vblank_reset -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb0167082 drm_hdmi_avi_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xae329265 drm_gem_shmem_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf0cffc9 drm_gem_create_mmap_offset_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf0e662e drm_gem_shmem_get_pages EXPORT_SYMBOL drivers/gpu/drm/drm 0xb053adda drm_rect_rotate -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb0730e66 drm_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb0957c56 drm_dev_unregister EXPORT_SYMBOL drivers/gpu/drm/drm 0xb0b05ff5 drm_clflush_sg -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb0c2dea5 drm_i2c_encoder_detect -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb106c957 drm_plane_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb0e4dab0 drm_mode_parse_command_line_for_connector EXPORT_SYMBOL drivers/gpu/drm/drm 0xb11ac7a7 __drm_err -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb14a4d6c drm_modeset_lock_all EXPORT_SYMBOL drivers/gpu/drm/drm 0xb22dfd68 drm_format_info_min_pitch -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb2ae4e3a drm_crtc_check_viewport +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb25e7b97 drm_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb266cb8f drm_crtc_create_scaling_filter_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb26bfd1f drm_connector_list_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb2d2b26a drm_i2c_encoder_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb3a5389f drm_atomic_bridge_chain_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb3c286b2 __drmm_add_action EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4032484 drm_mm_insert_node_in_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4143f23 drm_framebuffer_lookup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5e7319c drm_i2c_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb43a676c drm_property_add_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4a70bd6 drm_atomic_get_old_bridge_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4ee6949 drm_atomic_bridge_chain_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5f93008 drm_mode_create_tile_group EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6127243 drm_need_swiotlb -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6653aa0 drm_mode_prune_invalid -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6c3f3a7 drm_gem_get_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb7fb3c51 drm_clflush_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb93029c7 drm_gem_handle_delete -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9b69daa drm_framebuffer_plane_height -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9be01eb drm_gem_shmem_print_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9c8c8a6 drm_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb61f238d drm_mode_config_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb65a755c drm_gem_dmabuf_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6ee377e drm_i2c_encoder_restore +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb84601e6 drm_get_edid_switcheroo +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb8893654 drm_gem_prime_import +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb8bfeb6f drm_crtc_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb95ee8e4 drm_framebuffer_plane_height EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9cad492 __drm_atomic_state_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbcdc6664 drm_atomic_get_new_bridge_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbdba5f72 drm_encoder_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbde8fe9b drm_debugfs_remove_files -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbe8f5dd1 drm_dev_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbf42e79d drm_crtc_enable_color_mgmt -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbfa3bfb4 drm_crtc_accurate_vblank_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc16ad109 drm_gem_fence_array_add_implicit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc1b790ac drm_atomic_get_connector_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc1ccb80c drm_prime_sg_to_page_array -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc1f6615a drm_crtc_vblank_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc1f68f20 drm_atomic_private_obj_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc2631587 drm_gem_dmabuf_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc2826525 drm_property_create_enum -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc33cb33f drm_gem_object_lookup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc37aa099 drm_connector_attach_scaling_mode_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc3b638d4 drm_property_blob_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc435a9fd drm_dev_dbg -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc46def4e drm_of_find_possible_crtcs +EXPORT_SYMBOL drivers/gpu/drm/drm 0xba1dfc78 drm_cvt_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbb168204 __drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbbfa73d2 drm_connector_attach_tv_margin_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbd32f319 drm_bridge_chain_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbdaf61b3 drm_gem_object_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbe0fb8cc drm_framebuffer_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbe20745e drm_dev_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbf0fb1bc drm_plane_create_rotation_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbf25d766 drm_of_crtc_port_mask +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbfe87074 drm_send_event_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc00dc608 drm_gem_free_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc121b103 of_drm_get_panel_orientation +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc3595023 drm_mode_create_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc361216b drm_plane_create_color_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc3af8203 drm_property_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc44bbe97 drm_crtc_accurate_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc51d2f53 drm_connector_set_path_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc52a6724 drm_prime_sg_to_page_array +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc5557830 drm_mode_create_tv_margin_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc625b23c drm_gem_shmem_put_pages EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6323239 drm_flip_work_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6dae62e drm_cvt_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc668df43 drm_client_framebuffer_flush 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 0xc845e0f4 drm_atomic_state_default_clear -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc97f0ac2 drm_gem_shmem_pin -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc9fffa76 drm_bridge_chain_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc83bf925 drm_connector_attach_hdr_output_metadata_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc973bef0 drm_mode_create_from_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc9f11618 drm_connector_attach_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xca0f3c1a drm_client_register EXPORT_SYMBOL drivers/gpu/drm/drm 0xca190085 drm_format_info_block_height -EXPORT_SYMBOL drivers/gpu/drm/drm 0xca227354 drm_gem_shmem_create_with_handle -EXPORT_SYMBOL drivers/gpu/drm/drm 0xca3f3cd0 drm_ioctl_permit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xca7d9650 drm_mode_config_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xca306dfb drm_crtc_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcac779af drm_of_find_possible_crtcs +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcad53e65 drm_plane_enable_fb_damage_clips EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb2340b8 drm_rect_debug_print -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb8a9d29 drm_gem_vm_close -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcbe4fc84 drm_modeset_acquire_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcc060858 drm_atomic_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcc7243e9 drm_connector_set_vrr_capable_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcca84e28 drm_connector_list_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcbf3c767 drm_gem_fence_array_add_implicit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcc668d8f drm_atomic_state_default_clear EXPORT_SYMBOL drivers/gpu/drm/drm 0xccc59759 drm_format_info_block_width -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcccfcd2e drm_get_edid -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd64ffb7 drm_object_property_set_value -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcdb20050 drm_gem_prime_import_dev -EXPORT_SYMBOL drivers/gpu/drm/drm 0xce979452 drm_probe_ddc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcef5a142 drmm_kfree +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcea8cc43 drm_connector_atomic_hdr_metadata_equal EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf11a549 drm_flip_work_allocate_task +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcfb5803c drm_send_event_timestamp_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcfe7cd27 drm_av_sync_delay +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd00bb8b2 drm_hdmi_vendor_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd057de75 drm_client_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd059f6fd drm_add_edid_modes EXPORT_SYMBOL drivers/gpu/drm/drm 0xd05fda43 drm_prime_get_contiguous_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd11d968f drm_atomic_get_crtc_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd1263a33 drm_gem_cma_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd0667142 drm_connector_init_with_ddc EXPORT_SYMBOL drivers/gpu/drm/drm 0xd13f9985 drm_edid_block_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd1ee26b3 drm_bridge_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd25cb33d drm_atomic_check_only -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2683d31 drm_property_lookup_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd307c727 drm_i2c_encoder_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd3d759cb drm_dev_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd41c34e2 drm_client_framebuffer_delete -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd44b1fa1 drm_gem_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd5743f6a drm_writeback_get_out_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd3581139 drm_plane_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd37169da drm_connector_attach_content_type_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd46b245b drm_connector_set_tile_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd4e95df2 drm_atomic_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd53e5d52 drm_atomic_state_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd57af354 drm_mode_validate_ycbcr420 +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd5af67fd drm_atomic_bridge_chain_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd5b7957e drm_gem_vm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd6081f7e drm_connector_has_possible_encoder EXPORT_SYMBOL drivers/gpu/drm/drm 0xd60baf5a drm_edid_get_monitor_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd634737e drm_connector_list_iter_begin +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd640c9d1 drm_vblank_work_cancel_sync +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd6416a30 drm_atomic_add_affected_connectors EXPORT_SYMBOL drivers/gpu/drm/drm 0xd680a377 drm_gem_object_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd6a7ceab drm_connector_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd78ea461 drm_i2c_encoder_mode_set EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7a9cf42 drm_mode_validate_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7d9a6ea drm_syncobj_find -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd90bd2e9 drm_universal_plane_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd9d1c747 drm_mode_is_420 -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd9e9129e drm_i2c_encoder_mode_fixup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb021f6c drm_gem_shmem_get_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb2a6c58 drm_mode_create_dp_colorspace_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdc5e2a87 drm_mode_set_config_internal -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdc65ebbe devm_aperture_acquire_from_firmware -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdea7619d drm_read -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdee41f58 drm_hdcp_update_content_protection +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd9de9a0c drm_framebuffer_unregister_private +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdad48f79 drm_mode_create_tv_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdaf4b97b drm_bridge_chain_mode_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb8e263f drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbdbbb85 drm_mode_put_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdebc3825 drm_crtc_send_vblank_event 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 0xe0567e03 __drmm_crtc_alloc_with_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe272530e drm_event_reserve_init_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe2acd291 drm_gem_dma_resv_wait -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe2b6f404 drm_master_internal_acquire -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe2d77ffc drm_panel_of_backlight -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe2d7bc0c __drmm_add_action -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe2e85de7 drm_atomic_print_new_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf6986a8 drm_gem_dmabuf_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdfc95c68 drm_probe_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe077f4a6 drm_gem_cma_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe14a0e79 drm_atomic_get_new_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe25280e8 drm_connector_cleanup EXPORT_SYMBOL drivers/gpu/drm/drm 0xe317082a __drm_printfn_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe5503a02 drm_atomic_set_mode_for_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe59d472a drm_connector_init_with_ddc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe64fa541 drm_poll -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe6bf1bd2 drm_connector_set_link_status_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7cf86d3 drm_gem_private_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe45eaa8c drm_writeback_get_out_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe5db7abc drm_poll +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe662e925 drm_atomic_get_old_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe6f96f70 drm_connector_attach_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7e60387 drm_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe818b6ac drm_prime_gem_destroy EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8362900 drm_edid_duplicate 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 0xe8d7ad58 drm_client_modeset_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe9f4146d drm_atomic_state_alloc EXPORT_SYMBOL drivers/gpu/drm/drm 0xea00fe81 __drm_printfn_coredump -EXPORT_SYMBOL drivers/gpu/drm/drm 0xea1ac114 drm_plane_create_rotation_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xea61ed24 drm_print_regset32 -EXPORT_SYMBOL drivers/gpu/drm/drm 0xeae9b3cc drm_connector_attach_content_protection_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb90dfbc drm_property_replace_global_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xea5ab663 drm_plane_force_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeab471b0 drm_atomic_bridge_chain_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xebd758e5 drm_connector_register EXPORT_SYMBOL drivers/gpu/drm/drm 0xec12af74 __drm_dbg -EXPORT_SYMBOL drivers/gpu/drm/drm 0xecd93b2e drm_client_buffer_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xeceacd0c drm_bridge_chain_mode_fixup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xeed7a635 drm_atomic_set_crtc_for_connector -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf011e744 drm_mode_validate_ycbcr420 +EXPORT_SYMBOL drivers/gpu/drm/drm 0xec45c350 drm_i2c_encoder_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xecdc190c drm_crtc_commit_wait +EXPORT_SYMBOL drivers/gpu/drm/drm 0xedb4b17e drm_gtf_mode_complex +EXPORT_SYMBOL drivers/gpu/drm/drm 0xede190bf drm_modeset_lock_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xee318abb drm_event_reserve_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xef0d0fb8 drm_bridge_chain_post_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xef8182a4 drm_writeback_queue_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0xef88166f drm_master_internal_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xef8c4a45 drm_property_create_range EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0517d7a drm_mm_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0bf3e48 drm_modeset_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0e820b8 drm_panel_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0f2c122 drm_atomic_get_new_connector_for_encoder EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1421d13 drm_mode_sort EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1b5340a drm_mode_vrefresh -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf26fbc8a drm_atomic_get_bridge_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf2db8cca drm_gem_object_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf2dd1e69 drm_atomic_get_new_connector_for_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf31db027 drm_event_cancel_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1d2b362 drm_modeset_acquire_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf277cb24 drm_crtc_init_with_planes EXPORT_SYMBOL drivers/gpu/drm/drm 0xf406e46a drm_get_connector_type_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf419f522 drm_bridge_chain_mode_set -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf42e5110 drm_gem_map_attach -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf492ab6b drm_put_dev -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf511adb1 drm_connector_update_edid_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf530ea89 drm_vblank_work_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf5821fe4 drm_hdmi_infoframe_set_hdr_metadata -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf58e4ce9 drm_display_mode_from_cea_vic -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf5f5f935 drm_atomic_get_old_connector_for_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf608a0ac drm_hdmi_avi_infoframe_content_type -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf6729c71 drm_panel_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf6a27695 drm_connector_set_panel_orientation -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf6d54fce drm_master_internal_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf469b82e drm_mode_create_dvi_i_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf4eba585 drm_connector_attach_vrr_capable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf6bbfed7 drm_vblank_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf7da267e drm_atomic_get_old_connector_for_encoder EXPORT_SYMBOL drivers/gpu/drm/drm 0xf824c7db __drm_printfn_debug -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf86e7a7b drm_mode_get_tile_group -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf8b937a1 __drmm_universal_plane_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf9ed004e drm_client_modeset_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa26ea51 drm_atomic_bridge_chain_pre_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa959988 drm_gem_unlock_reservations -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfac0adbc drm_send_event_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfacd94b2 drm_plane_create_zpos_immutable_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc7759b2 drm_property_create_signed_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd537c13 drm_gem_map_dma_buf -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd7fbf81 drm_gem_objects_lookup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfe3e7afc drm_gem_create_mmap_offset -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfe5798cc drm_dev_set_unique +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf98cb480 drm_dev_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa16af46 drm_atomic_get_bridge_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfaded9cb drm_dev_dbg +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb9fc6b1 drm_file_get_master +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfbc7d367 drm_hdmi_avi_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc40dcda drm_connector_attach_content_protection_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd87f869 drm_property_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfdf0c881 drm_modeset_lock_all_ctx EXPORT_SYMBOL drivers/gpu/drm/drm 0xfeb953b1 __drm_printfn_seq_file EXPORT_SYMBOL drivers/gpu/drm/drm 0xfecc8840 drm_edid_to_speaker_allocation -EXPORT_SYMBOL drivers/gpu/drm/drm 0xff015853 drm_mode_probed_add -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x006dee32 devm_drm_panel_bridge_add_typed -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x00bda1ea drm_dp_pcon_reset_frl_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x01324444 drm_dp_dual_mode_set_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm 0xff683011 drm_crtc_vblank_helper_get_vblank_timestamp +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x005d76b5 __drm_gem_reset_shadow_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x00a88877 drm_dp_mst_get_edid EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x01c4bba9 drm_dp_lttpr_max_link_rate -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x03d7200a drm_dp_check_act_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x04efa86a drm_dp_mst_atomic_check -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x05975b13 drm_dp_mst_connector_late_register +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x02dd1e35 drm_gem_fb_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x02e76f09 drm_simple_display_pipe_attach_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x02e91282 drm_kms_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x03fe8765 drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x047f3e06 drm_fb_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x057767e6 drm_scdc_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x05a20aec drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x06affe6f drm_atomic_helper_swap_state EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x06c49551 drm_dp_dsc_sink_line_buf_depth +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x06f23145 drm_dp_set_subconnector_property EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x07a00858 drm_fb_memcpy_dstclip -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x07d44c17 drm_atomic_helper_prepare_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x08061ca4 drm_helper_resume_force_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x093c96e3 drm_simple_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x09a6eff4 drm_fb_helper_cfb_copyarea -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0a701ee3 drm_atomic_helper_crtc_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0ab025fa drm_atomic_helper_shutdown -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0da5049d drm_fb_helper_debug_enter -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x10e2f3b1 drm_dp_pcon_hdmi_frl_link_error_count -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x11f5cf7f drm_dp_mst_deallocate_vcpi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x12ced7de drm_gem_destroy_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x12ff6114 drm_atomic_helper_bridge_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x133e5c0b drm_fb_helper_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1386d068 drm_helper_force_disable_all -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x14ebf458 __drm_atomic_helper_crtc_state_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x158faf72 drm_self_refresh_helper_alter_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0833f1d5 drm_atomic_helper_commit_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x08f1beca drm_atomic_helper_connector_tv_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0a4d4f13 drm_dp_downstream_debug +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x101b09b1 drm_simple_display_pipe_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x12190ba7 drm_atomic_helper_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x121f7b05 drm_atomic_helper_commit_duplicated_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x144ae11f drm_atomic_helper_commit_tail EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1605d0ed drm_dp_lttpr_max_lane_count +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x16b49346 drm_atomic_helper_crtc_reset EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1709ddcf drm_dp_lttpr_link_train_clock_recovery_delay -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x18125f31 __drm_gem_destroy_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x19637093 drm_helper_probe_detect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x197f633b drm_dp_cec_unregister_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1718465b drm_atomic_helper_check_planes EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1a5bf3ca drm_dsc_dp_rc_buffer_size +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1ab960c8 __drm_atomic_helper_plane_duplicate_state EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1b0a1fdc drm_dp_lttpr_voltage_swing_level_3_supported -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1cdac119 drm_dp_pcon_pps_default -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1ef3b406 drm_atomic_helper_commit_hw_done -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2023ba9d drm_dp_read_downstream_info -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x236b778a devm_drm_panel_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1b2494b0 drm_fb_helper_deferred_io +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1ce67d2c __drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1e830b30 drm_lspcon_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1f0a8dae drm_fb_helper_sys_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1fb8522b drm_dp_stop_crc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2203ae21 drm_dp_mst_atomic_enable_dsc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x222bba3e drm_dp_cec_irq +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2367565a drm_atomic_helper_commit_modeset_enables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x23d7a63c drm_atomic_helper_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x248cea37 drm_lspcon_get_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x25ecae26 drm_gem_fb_destroy EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x26815dbc drm_dp_link_rate_to_bw_code -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x27313b8c drm_fb_helper_restore_fbdev_mode_unlocked -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x28737e8f drm_atomic_helper_fake_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2a5ca6ae drm_atomic_helper_damage_iter_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2d0f5a2e drm_dp_downstream_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2d6b0265 drm_scdc_set_scrambling -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2e4bad18 drm_panel_bridge_connector -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2f339ed5 drm_primary_helper_funcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x26ef0640 drm_helper_disable_unused_functions +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x275d8999 drm_atomic_helper_commit_tail_rpm +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x284bcce0 drm_fb_helper_sys_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2b7328bb drm_dp_read_sink_count_cap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2cbb99f4 drm_fb_helper_debug_enter +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2d58f479 drm_atomic_helper_commit_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2d6374c7 drm_dp_read_lttpr_phy_caps +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2da00da9 __drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2da6348a drm_scdc_set_high_tmds_clock_ratio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2e03ec86 drm_dp_read_mst_cap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2e0ff862 __drm_atomic_helper_plane_state_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2e192a3b drm_dp_get_vc_payload_bw +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2f21563b drm_dp_lttpr_link_train_channel_eq_delay EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2fa94ef2 drm_dp_downstream_444_to_420_conversion +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3053b15c drm_atomic_helper_prepare_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x30f324f2 drm_dp_aux_init EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3117b63b drm_dp_downstream_max_bpc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x32ad22fd drm_dp_mst_topology_mgr_resume -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x32c4caaf drm_dp_dpcd_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3393af4e drm_dp_get_vc_payload_bw -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x34ca5a7e drm_primary_helper_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x377e98e1 drm_atomic_helper_dirtyfb -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x389560f3 drm_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x33f657c6 drm_atomic_helper_wait_for_dependencies +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x34ed5324 drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3588ab5f drm_fb_helper_alloc_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x377950eb drm_dp_send_query_stream_enc_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x384f1958 drm_gem_simple_kms_prepare_shadow_fb EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x392a838b drm_dp_downstream_max_dotclock -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x39e3d819 drm_dp_send_query_stream_enc_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x39a43522 drm_fb_helper_debug_leave +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3a23d226 drm_atomic_helper_damage_iter_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3a3e2e6d drm_dp_atomic_release_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3a5977c5 drm_gem_cleanup_shadow_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3a64ee2a drm_fb_helper_prepare EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3a8063f3 drm_dp_dsc_sink_supported_input_bpcs -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3b30aa07 drm_dp_update_payload_part1 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3b3afaa1 __drm_atomic_helper_plane_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3b82664b __drm_atomic_helper_crtc_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3de1b3c0 __drm_gem_duplicate_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3ec98579 drm_dp_mst_topology_mgr_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4233822c drm_atomic_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x44f74e6f drm_dp_pcon_enc_is_dsc_1_2 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x45ed8a55 drm_dp_mst_topology_mgr_set_mst -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x46546fd7 __drm_atomic_helper_connector_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4658ab9d drm_atomic_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3b78f83f drm_self_refresh_helper_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3bbe886a drm_atomic_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3ccfe8b9 drm_dp_mst_topology_mgr_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3d58ed4b drm_self_refresh_helper_update_avg_times +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3dd807d8 drm_edp_backlight_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3e31edaf drm_helper_mode_fill_fb_struct +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3e73dfb4 drm_atomic_helper_bridge_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x41294adb __drm_atomic_helper_private_obj_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x41d63f38 drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x41e9bd02 drm_atomic_helper_shutdown +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x44486fd0 drm_dp_mst_deallocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x45584b26 drm_dp_mst_get_port_malloc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4603c416 drm_dp_pcon_dsc_bpp_incr +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4639fd91 drm_fb_helper_pan_display EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4668c9dc drm_dp_downstream_min_tmds_clock -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x47455fb0 drm_dp_downstream_debug -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x47828059 drm_atomic_helper_commit_duplicated_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x480270a6 drm_helper_crtc_in_use -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x497b10ed drm_dp_pcon_frl_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4a562049 drm_dp_downstream_id +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x467b474c drm_dp_downstream_id +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x46c6b226 drm_atomic_helper_damage_merged +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x47c67109 drm_helper_crtc_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4825c53f drm_self_refresh_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x49172cf6 drm_dp_pcon_hdmi_frl_link_error_count EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4bb89424 drm_dp_downstream_max_tmds_clock -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4cb04fd1 drm_edp_backlight_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4d4dcc17 drm_atomic_helper_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4d03e79f drm_panel_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4d395228 drm_panel_bridge_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4d5ba313 drm_gem_fb_end_cpu_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4e20735e drm_atomic_helper_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4e299a1c drm_dp_dpcd_write EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4e41ad5c drm_fb_xrgb8888_to_rgb565 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4e6f76c1 drm_dp_mst_topology_mgr_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4eb15fa5 drm_gem_prepare_shadow_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4f852af3 drm_panel_bridge_remove -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x501d87b5 drm_dp_link_train_channel_eq_delay -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x51738dcf drm_dp_pcon_is_frl_ready -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x51eccb96 drm_atomic_helper_commit_cleanup_done -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x52af9f30 drm_dp_pcon_pps_override_buf -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x533c0499 drm_dp_mst_get_port_malloc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x51f4089c drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x52066cec drm_atomic_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x52153d8c drm_fb_helper_lastclose +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x52ad6215 drm_atomic_helper_disable_planes_on_crtc EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x537b8893 drm_fb_blit_rect_dstclip EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5407ae9e drm_dp_get_dual_mode_type_name -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5446b9eb drm_fb_helper_alloc_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x554ac573 drm_atomic_helper_bridge_propagate_bus_fmt -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x57495d24 drm_dp_stop_crc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x577bd17a drm_dp_read_sink_count_cap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x542bf350 drm_kms_helper_poll_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x556b97a0 drm_helper_probe_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x55e375fa drm_atomic_helper_fake_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x56260d44 drm_simple_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5738a0b1 drm_panel_dp_aux_backlight +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x57fc3a19 drm_dp_dual_mode_max_tmds_clock EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x582f248e drm_dp_get_adjust_request_pre_emphasis -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x58d22201 drm_fb_helper_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x58707c8a drm_atomic_helper_async_check EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x58d8fcaa drm_dsc_pps_payload_pack -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5914f1d2 drm_edp_backlight_enable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x59ec9431 drm_mode_config_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x59ec2935 __drm_gem_duplicate_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x59f27ed7 drm_dp_pcon_enc_is_dsc_1_2 EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5a4734d1 drm_kms_helper_is_poll_worker -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5ae6abb3 drm_gem_cleanup_shadow_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5aff3f91 drm_helper_mode_fill_fb_struct -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5b06f4ae drm_dp_pcon_dsc_bpp_incr -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5b87f702 drm_dp_read_dpcd_caps -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5d3d30e6 drm_dp_mst_topology_state_funcs -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5e78afd5 drm_atomic_helper_check_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5fd88c2f drm_dp_get_phy_test_pattern -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x613623e5 drm_dp_cec_irq -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x62a68f09 drm_dp_read_desc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6356781e __drm_atomic_helper_bridge_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5b393ca8 drm_dp_downstream_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5be27f98 drm_primary_helper_funcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5c7aa9fa drm_dp_read_sink_count +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5d97c303 drm_atomic_helper_update_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5e0825fd drm_gem_fb_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x601eb83f drm_dp_dual_mode_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x60e2f68c drm_dp_aux_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x60f4bbb9 __drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x61ce0bec drm_dp_pcon_pps_override_param +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x61f83d12 __drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x62b9f997 drm_dp_update_payload_part2 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x63b16b43 drm_fb_helper_set_par +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x64282caa drm_dp_mst_dump_topology EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x648d953b drm_dsc_dp_pps_header_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x64b67cb0 drm_dp_dual_mode_get_tmds_output -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x65b549e3 __drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x65d184d2 drm_gem_fb_begin_cpu_access EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6615069e drm_dp_dsc_sink_max_slice_count -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x661ec0df drm_fb_helper_debug_leave -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x666a90ee drm_dp_mst_topology_mgr_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x66eb4240 drm_atomic_helper_commit_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x685ba84a drm_dp_mst_connector_early_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x692eaff1 drm_fb_helper_output_poll_changed -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x69d48321 drm_atomic_helper_cleanup_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x69f8e2b3 drm_dp_start_crc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x68c3facb drm_gem_prepare_shadow_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6a90a068 devm_drm_panel_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6adf5ba9 __drm_atomic_helper_bridge_reset EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6b5c2b06 drm_atomic_helper_damage_iter_next -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6bc23a3a drm_fbdev_generic_setup -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6bd84d8f drm_panel_bridge_add -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6cdd749b drm_dp_pcon_hdmi_link_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6cefd309 drm_dp_set_phy_test_pattern -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6d476d9d drm_dp_send_real_edid_checksum -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6de99d62 drm_atomic_helper_connector_tv_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6e079f9d drm_gem_simple_display_pipe_prepare_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6f92b246 drm_atomic_helper_setup_commit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x704244c3 drm_atomic_helper_commit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7052d701 drm_dp_lttpr_link_train_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6b61275a drm_crtc_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6d4d4153 drm_fb_helper_set_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6d63544e drm_gem_simple_display_pipe_prepare_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6ea6e8d4 drm_crtc_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6f46e40b drm_dp_find_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6ff740ea drm_gem_destroy_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6ffae40f drm_gem_fb_create_handle +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x70340e66 drm_dp_start_crc EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7053fa72 drm_dp_get_pcon_max_frl_bw -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x70d691b7 drm_fb_helper_sys_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x722084c7 __drm_atomic_helper_plane_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x72fe9cfe __drmm_simple_encoder_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x70dd7ba6 drm_dp_pcon_convert_rgb_to_ycbcr EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x73011db0 drm_dp_bw_code_to_link_rate -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7353d741 drm_simple_display_pipe_attach_bridge -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x73c4f223 drm_dp_mst_atomic_enable_dsc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x74a36e8b drm_dp_pcon_frl_configure_2 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7595412b drm_fb_helper_cfb_fillrect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x760d8834 drm_atomic_helper_connector_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x76568200 drm_dp_aux_register -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x765a8c52 drm_dp_pcon_frl_configure_1 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x75174fb9 drm_helper_force_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x764b3006 drm_fb_helper_sys_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x768fd006 drm_dp_mst_detect_port +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x76d1ec57 drm_fb_helper_ioctl EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x76ff6644 drm_dp_lttpr_pre_emphasis_level_3_supported -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7773eeca drm_scdc_set_high_tmds_clock_ratio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x770ef522 drm_mode_config_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x789b5a0b drm_panel_bridge_add_typed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x796f9744 drm_dp_mst_connector_early_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7a457839 drm_dp_dpcd_read_phy_link_status EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7ae669d0 drm_fb_xrgb8888_to_gray8 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7d9dd772 drm_atomic_helper_disable_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7ed0b2a9 drm_fb_helper_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7f19da64 drm_fb_helper_ioctl -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fc8e568 drm_atomic_helper_wait_for_fences -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8197cbed drm_panel_bridge_add_typed -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x81cc77aa drm_scdc_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x83021741 drm_dp_read_sink_count -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x836668c4 drm_dp_pcon_pps_override_param +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7b1de5db drm_atomic_helper_page_flip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7c9230d1 drm_dp_read_desc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7e3e21f5 drm_helper_encoder_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7e488a2a drm_fb_helper_check_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7f22b0fa drm_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7f7c1525 drm_dp_pcon_frl_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8092329a drm_dp_aux_register +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x80ea70fd drm_atomic_helper_wait_for_vblanks +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8129a208 drm_atomic_helper_wait_for_fences +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8229b581 drm_dp_read_lttpr_common_caps +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x82429c42 __drmm_simple_encoder_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x82f5c935 drm_atomic_helper_bridge_propagate_bus_fmt +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8336ae2a drm_atomic_helper_async_commit EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x838a8fa0 drm_fb_memcpy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x83ab02c5 drm_dp_read_lttpr_phy_caps -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x86d0ce66 drm_fb_helper_sys_imageblit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x87072d43 drm_atomic_helper_async_commit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x87e2c434 drm_lspcon_set_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x88aed8f7 drm_helper_disable_unused_functions -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8944e2de drm_gem_fb_end_cpu_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x844d3d04 drm_atomic_helper_check_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8483d644 drm_fb_helper_sys_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x848dd7ee drm_fb_helper_cfb_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x85678fdd drm_dp_read_downstream_info +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x85bbaac0 drm_dp_get_phy_test_pattern +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x864d7416 drm_dp_cec_set_edid EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x894b1f57 drm_dp_get_adjust_request_post_cursor -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x89513858 drm_crtc_helper_set_config EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x89d100ba drm_fb_xrgb8888_to_rgb888_dstclip -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8a06b93f drm_panel_dp_aux_backlight -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8a4e6f12 __drm_atomic_helper_plane_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8c5b7a2f drm_fb_helper_set_suspend_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8a31a2c8 drm_dp_set_phy_test_pattern +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8a89db71 drm_atomic_helper_connector_duplicate_state EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8ca2d9e4 drm_dp_calc_pbn_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8d6bfdcd devm_drm_panel_bridge_add_typed EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8d701329 drm_dp_clock_recovery_ok -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8e4e7e7c drm_crtc_helper_set_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8e8deeb1 drm_atomic_helper_check_modeset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8fd7ff57 drm_atomic_helper_swap_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x90a70944 drm_dp_dual_mode_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x916829fd drm_atomic_helper_crtc_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x92958123 drm_helper_move_panel_connectors_to_head -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x93e1c25d drm_fb_helper_blank -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x94dd1480 drm_dp_mst_allocate_vcpi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x95a6fc6d drm_atomic_helper_commit_tail_rpm -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9873cea3 __drm_atomic_helper_crtc_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x98cc479f drm_kms_helper_poll_fini -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9935cbe1 __drm_atomic_helper_connector_state_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9972e4fa drm_atomic_helper_disable_all -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9ab1a5d7 drm_dp_cec_set_edid -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9c49e20f drm_dp_atomic_release_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9eec0617 drm_edp_backlight_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9ef54ed4 drm_dp_aux_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9fbd897b drm_self_refresh_helper_update_avg_times -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa138a469 drm_atomic_helper_commit_planes_on_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa18a3562 drm_atomic_get_mst_topology_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8d8c1707 drm_gem_simple_kms_destroy_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8e42d4cb drm_kms_helper_poll_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8ef3f4b4 drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x91409665 drm_atomic_helper_dirtyfb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x924d0ec7 drm_dp_mst_put_port_malloc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x92c2c773 drm_atomic_helper_bridge_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x931a6d7f drm_dp_mst_allocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x965311a5 drm_atomic_helper_wait_for_flip_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x96b6e802 drm_crtc_helper_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x97067b2e drm_edp_backlight_set_level +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x97cb66ce drm_dp_pcon_frl_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x981435f0 drm_atomic_helper_check_plane_damage +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9819c7f8 drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9d46ac6f drm_dp_mst_connector_late_register +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9d81d0e8 drm_dp_update_payload_part1 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9db77319 drm_dp_remote_aux_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9e5821a8 drm_atomic_get_mst_topology_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9f06f402 drm_helper_resume_force_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa0a4a5ed drm_dp_send_power_updown_phy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa15ffeb2 drm_dp_dpcd_read EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa1fefe6a drm_dp_psr_setup_time -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa23bc875 drm_atomic_helper_update_legacy_modeset_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa290e76a drm_edp_backlight_set_level -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa328fd14 __drm_atomic_helper_private_obj_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa39b9b46 drm_dp_mst_dump_topology -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa450886b drm_dp_send_power_updown_phy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa479c613 drm_dp_pcon_hdmi_link_active -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa693f93e drm_gem_fb_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa79b5436 drm_fb_helper_initial_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa8115061 drm_dp_mst_detect_port -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa8676b2d drm_mode_config_helper_resume -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa86a1673 drm_atomic_helper_update_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa95c6e21 drm_atomic_helper_wait_for_flip_done -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa9bf8877 drm_fb_helper_lastclose -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaaf7bd9d drm_gem_fb_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xab48ac06 drm_fb_helper_cfb_imageblit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xac0b722a __drm_atomic_helper_connector_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xae127322 drm_fb_helper_pan_display -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaf08808c drm_dp_dual_mode_max_tmds_clock +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa444677b drm_fb_helper_fill_info +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa7ca7e37 drm_dp_dual_mode_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa80109b4 drm_fb_helper_initial_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa9c2ca05 drm_dp_mst_dsc_aux_for_port +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaaece6e3 drm_dp_mst_topology_mgr_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xab088d3a drm_dp_dpcd_read_link_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xabc28a3c drm_dp_pcon_frl_configure_1 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xac36364b drm_gem_duplicate_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xacea3942 drm_fb_helper_output_poll_changed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xad019d9e drm_atomic_helper_check_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xae0330e7 drm_fb_helper_unregister_fbi EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaf267620 drm_dp_lttpr_count -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaf2a340b drm_dp_vsc_sdp_log -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb088cb2b drm_fb_helper_fill_info -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb0d73dc8 drm_gem_reset_shadow_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb10d0b6d drm_helper_hpd_irq_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb1de59ba drm_dp_dual_mode_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb30e5488 __drm_gem_reset_shadow_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb3d40760 drm_fb_helper_sys_fillrect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb52ab101 drm_atomic_helper_damage_merged -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb639f1fd drm_atomic_helper_plane_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb6c0b531 drm_fb_helper_check_var -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb70e9c0b drm_atomic_helper_plane_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb8323d1a drm_atomic_helper_page_flip -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb91ef458 drm_gem_duplicate_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xba532d46 drm_dp_link_train_clock_recovery_delay -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbc247598 drm_simple_display_pipe_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbc894803 drm_atomic_helper_crtc_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbc9f952c drm_atomic_helper_commit_modeset_disables -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbfa4a4c5 drm_atomic_helper_wait_for_dependencies -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbfd956a2 drm_fb_helper_sys_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc0bc6b76 drm_atomic_helper_bridge_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc0cc534e drm_dp_mst_put_port_malloc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc3d66e9b __drm_atomic_helper_connector_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc48e00ce drm_fb_helper_unregister_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb186dbae drm_scdc_get_scrambling_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb30da966 drm_dp_pcon_frl_configure_2 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb37d7267 __drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb4b51b0e drm_atomic_helper_commit_modeset_disables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb5563718 drm_dp_link_train_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb682581d drm_atomic_helper_setup_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb729fcaa drm_dp_pcon_hdmi_link_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb826a708 drm_dp_cec_register_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb847301b __drm_atomic_helper_bridge_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb8bc9bd8 drm_atomic_helper_commit_cleanup_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb99c2a96 drm_atomic_helper_cleanup_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbb1569ae drm_mode_config_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbc2edd0c drm_atomic_helper_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbc660f46 drm_gem_simple_kms_cleanup_shadow_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbf55be51 __drm_atomic_helper_connector_state_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc020c0c1 drm_dp_pcon_dsc_max_slice_width +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc02ee029 drm_dp_vsc_sdp_log +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc0d9a9b8 __drm_gem_destroy_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc14052a5 drm_helper_hpd_irq_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc1dee738 drm_dp_dual_mode_get_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc3908fa2 drm_dp_pcon_hdmi_link_active +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc52bc5be drm_fb_helper_set_suspend_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc54a5b1e drm_dp_cec_unset_edid EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc5c99a79 drm_dp_get_adjust_request_voltage +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc5efb730 drm_gem_reset_shadow_plane EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc79ecffb drm_dp_downstream_is_type EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc85e28e8 drm_fb_xrgb8888_to_rgb565_dstclip -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc8d81cfd drm_fb_helper_fini -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc9271cda drm_dp_aux_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc945d884 drm_gem_fb_begin_cpu_access -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcd337bc7 drm_dp_dpcd_read_phy_link_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcdf11ae8 drm_dp_mst_add_affected_dsc_crtcs -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcdf23619 drm_atomic_helper_calc_timestamping_constants -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xce4010b5 __drm_atomic_helper_bridge_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcf493a00 drm_atomic_helper_commit_modeset_enables -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcfbdde65 drm_crtc_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcfe7a9bf drm_fb_helper_sys_copyarea -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd0efa39d drm_dp_update_payload_part2 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd21c5bb0 drm_atomic_helper_wait_for_vblanks -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd27d4d5e drm_lspcon_get_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd2a59433 drm_atomic_helper_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc942ce07 drm_kms_helper_poll_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc99e524c drm_dp_mst_topology_state_funcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc9d5fcc5 drm_dp_mst_add_affected_dsc_crtcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcaa7bf4e drm_dp_mst_hpd_irq +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcc278d16 drm_dp_send_real_edid_checksum +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcd5c488e drm_panel_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcdb8c144 drm_dp_mst_topology_mgr_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xce723d54 drm_atomic_helper_plane_destroy_state EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd2b0c7e6 drm_dp_downstream_is_tmds -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd3fab24b drm_fb_helper_set_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd2fcfea9 drm_fb_helper_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd33d9da5 drm_fb_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd355724c drm_fbdev_generic_setup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd3706b10 drm_fb_helper_sys_imageblit EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd4983d85 drm_fb_swab -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd4bc553e drm_scdc_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd5a91208 drm_dp_set_subconnector_property -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd79bf72b drm_dp_mst_get_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd8306d36 drm_kms_helper_poll_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd9519f45 drm_dp_mst_get_edid -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xda1c3235 drm_helper_encoder_in_use -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xda83916c drm_atomic_helper_check_plane_damage +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd4a9418c drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd4ec1853 drm_dp_pcon_reset_frl_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd7067e63 drm_dp_dual_mode_set_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd72be158 drm_atomic_helper_commit_hw_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd85d03e8 drm_fb_helper_setcmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xda0c2155 drm_scdc_set_scrambling +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xda73b7f6 __drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdb53fe45 drm_primary_helper_destroy EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdbc3c128 drm_fb_blit_dstclip -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdd25f079 drm_dp_pcon_dsc_max_slice_width -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xddb464e1 drm_fb_helper_setcmap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xddfd6c16 drm_dp_find_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xde56a260 drm_dp_mst_hpd_irq -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdebb426c drm_atomic_helper_plane_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdf7edebb drm_atomic_helper_page_flip_target -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdfd06e1e drm_fb_helper_deferred_io -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe01525b9 drm_gem_fb_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe1738115 drm_atomic_helper_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe24a9455 drm_dp_dpcd_read_link_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe401aa76 drm_dp_dual_mode_detect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe4971ff5 drm_self_refresh_helper_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe5cc65f8 drm_atomic_helper_check_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe62183a8 drm_dp_mst_dsc_aux_for_port -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe6992442 __drm_atomic_helper_plane_state_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe7f2c4d8 drm_dp_cec_register_connector -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe7fe803a drm_helper_probe_single_connector_modes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe9689f89 drm_dp_read_mst_cap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe9ce4748 drm_gem_simple_kms_destroy_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeb450078 drm_dp_cec_unset_edid -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xec4c3608 drm_gem_simple_kms_duplicate_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xecbae6c0 drm_dp_mst_reset_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xedc043a4 drm_scdc_get_scrambling_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdc019903 drm_fb_helper_restore_fbdev_mode_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdc0be000 drm_kms_helper_poll_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdc51274e drm_dp_mst_reset_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdc8900af drm_dp_pcon_pps_default +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdd0f67c3 drm_helper_probe_single_connector_modes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xddcc4ead drm_dp_read_dpcd_caps +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xde7e384d drm_gem_simple_kms_duplicate_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdf8e0204 __drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdfe53544 __drm_atomic_helper_crtc_state_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdff5e322 drm_helper_move_panel_connectors_to_head +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe2005a92 drm_dp_dual_mode_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe2238456 drm_scdc_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe5125576 drm_fb_helper_cfb_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe5360b84 drm_dp_pcon_dsc_max_slices +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe6257007 drm_dp_link_train_clock_recovery_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe770ce9d drm_dp_mst_topology_mgr_set_mst +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe77eca77 drm_dp_mst_get_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xea789958 drm_dp_mst_atomic_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeb37f19f drm_gem_simple_kms_reset_shadow_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xebb8c990 drm_edp_backlight_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xecc42279 drm_dp_pcon_pps_override_buf +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xedcc6a46 drm_fb_helper_cfb_fillrect EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xedcf81ce drm_dp_channel_eq_ok -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xef1cc512 drm_kms_helper_poll_enable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf115abbe drm_gem_simple_kms_prepare_shadow_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf24aa9bf drm_kms_helper_poll_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf4112be5 drm_dp_read_lttpr_common_caps +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xef1f6a49 drm_self_refresh_helper_alter_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xef9b4910 drm_dp_atomic_find_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xefc5b678 drm_dp_pcon_is_frl_ready +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf1024969 drm_fb_helper_blank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf11d31a6 drm_dp_cec_unregister_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf1b39687 __drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf2e72347 drm_atomic_helper_bridge_duplicate_state EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf68741fb drm_dp_subconnector_type EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf689ad25 drm_dp_downstream_420_passthrough -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf69505ba drm_gem_fb_create_handle -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf71168a6 drm_atomic_helper_connector_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf75a7cf7 drm_atomic_helper_bridge_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf7d9d44a drm_gem_simple_kms_reset_shadow_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf80ced45 drm_dp_atomic_find_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf8333b3c drm_dp_pcon_dsc_max_slices -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf920b811 drm_dp_dpcd_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf9829eb5 drm_atomic_helper_connector_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfa2a0bcd drm_gem_simple_kms_cleanup_shadow_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf77d2862 drm_dp_check_act_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf78bf51b drm_atomic_helper_page_flip_target +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfb1672c4 drm_atomic_helper_commit EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfb1a7a5a drm_dp_downstream_rgb_to_ycbcr_conversion -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfb7d1a6d drm_atomic_helper_disable_planes_on_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfc1ce446 drm_dp_remote_aux_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfcade7a9 drm_atomic_helper_async_check -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfd03cc35 drm_kms_helper_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfd6cc49c drm_dp_pcon_convert_rgb_to_ycbcr -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfd728486 drm_dp_pcon_frl_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfcd5f891 drm_edp_backlight_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfd2dc5de drm_atomic_helper_update_legacy_modeset_state EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfe12bcb9 drm_dsc_compute_rc_parameters -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfea37db5 drm_atomic_helper_commit_tail -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xff09a6ca drm_fb_helper_set_par -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xffb668b5 drm_self_refresh_helper_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x0975fb1f mipi_dbi_buf_copy -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x13b51a33 mipi_dbi_debugfs_init -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x1b03eb5f mipi_dbi_pipe_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x321f6158 mipi_dbi_poweron_conditional_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x40e8575c mipi_dbi_dev_init -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x624b9029 mipi_dbi_spi_cmd_max_speed -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x76f5756a mipi_dbi_spi_transfer -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x9f7ded94 mipi_dbi_dev_init_with_formats -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xa6bed0b8 mipi_dbi_enable_flush -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xacb2ebc4 mipi_dbi_poweron_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xc6e7a5cc mipi_dbi_display_is_on -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xcbe36756 mipi_dbi_pipe_update -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xd0e38adf mipi_dbi_command_buf -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xdf73d83b mipi_dbi_command_read -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xe7dea087 mipi_dbi_hw_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xf7670af0 mipi_dbi_command_stackbuf -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xff9f3cb4 mipi_dbi_spi_init -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x054da4d0 drm_gem_ttm_dumb_map_offset -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x2311cb4a drm_gem_ttm_print_info -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x2fc82db7 drm_gem_ttm_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x4bbdc2ef drm_gem_ttm_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0xc91baf26 drm_gem_ttm_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x1fb38d3b drm_gem_vram_offset -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x232d5209 drm_gem_vram_create -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x24b02591 drm_gem_vram_put -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x376f82ff drm_gem_vram_simple_display_pipe_prepare_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x439f2f70 drm_gem_vram_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x481e01fe drmm_vram_helper_init -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x5896465b drm_gem_vram_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x5d78fb00 drm_vram_helper_mode_valid -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x68710e10 drm_gem_vram_fill_create_dumb -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x6ab9b93f drm_gem_vram_pin -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x6f273f51 drm_gem_vram_unpin -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xa1fb275b drm_vram_mm_debugfs_init -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xb89837ce drm_gem_vram_plane_helper_cleanup_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xc81d6ed5 drm_gem_vram_driver_dumb_create -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xcaebaf60 drm_gem_vram_plane_helper_prepare_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xe349c3cb drm_gem_vram_simple_display_pipe_cleanup_fb -EXPORT_SYMBOL drivers/gpu/drm/rockchip/rockchipdrm 0x62c46887 rockchip_drm_wait_vact_end -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x26f26a2a drm_sched_init -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x2807a3d3 to_drm_sched_fence -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x37adc719 drm_sched_pick_best -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x42fc1817 drm_sched_entity_flush -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x4778a540 drm_sched_reset_karma -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x50cd5ade drm_sched_job_cleanup -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x5f4c82dd drm_sched_stop -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x626ca0f8 drm_sched_entity_destroy -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x71f331a0 drm_sched_suspend_timeout -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x74aa8281 drm_sched_resubmit_jobs -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x75d030c6 drm_sched_dependency_optimized -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x7dc25612 drm_sched_entity_set_priority -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x82cd2177 drm_sched_entity_fini -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x987b9d69 drm_sched_entity_push_job -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x9c4e3c42 drm_sched_increase_karma -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x9f64c8d0 drm_sched_start -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xa0ec8148 drm_sched_entity_init -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xaf6ce9d3 drm_sched_entity_modify_sched -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xc83e129c drm_sched_fini -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xce4454ba drm_sched_increase_karma_ext -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xda5ad53c drm_sched_fault -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xe34cb5a3 drm_sched_job_init -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xe6945649 drm_sched_resume_timeout -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xed5ea44c drm_sched_resubmit_jobs_ext -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-frontend 0x44838289 sun4i_frontend_exit -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-frontend 0x65684988 sun4i_frontend_init -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-frontend 0x87b17c8a sun4i_frontend_update_coord +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xff55ac01 drm_dp_mst_topology_mgr_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x0d68f06d mipi_dbi_spi_cmd_max_speed +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x16597efe mipi_dbi_spi_init +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x24336b1b mipi_dbi_poweron_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x32abfa51 mipi_dbi_buf_copy +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x416527a2 mipi_dbi_command_buf +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x43d0442c mipi_dbi_debugfs_init +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x66978be4 mipi_dbi_command_read +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x7b5f4fc9 mipi_dbi_dev_init +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x7f49a71d mipi_dbi_command_stackbuf +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x8ed39f49 mipi_dbi_spi_transfer +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xa7defcc8 mipi_dbi_dev_init_with_formats +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xa895a6d2 mipi_dbi_display_is_on +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xc10e97d1 mipi_dbi_poweron_conditional_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xc24be2de mipi_dbi_pipe_update +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xe19dbb64 mipi_dbi_pipe_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xecf03559 mipi_dbi_enable_flush +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xfd1cb6a0 mipi_dbi_hw_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x15cc24a4 drm_gem_ttm_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x3adb8b40 drm_gem_ttm_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x9b02a29b drm_gem_ttm_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0xae5a7445 drm_gem_ttm_dumb_map_offset +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0xcb0449b5 drm_gem_ttm_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x03fcd0c6 drm_gem_vram_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x478efa94 drm_gem_vram_simple_display_pipe_cleanup_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x4c357403 drm_gem_vram_put +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x4d1ee213 drmm_vram_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x53675e19 drm_gem_vram_pin +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x9f4ddf92 drm_gem_vram_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xa040a7d6 drm_vram_mm_debugfs_init +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xa967bf4e drm_gem_vram_plane_helper_prepare_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xb06c33cf drm_gem_vram_driver_dumb_create +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xd0f69ddd drm_vram_helper_mode_valid +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xd95f0e26 drm_gem_vram_create +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xe439b19d drm_gem_vram_fill_create_dumb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xec93ac56 drm_gem_vram_simple_display_pipe_prepare_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xf4c13190 drm_gem_vram_unpin +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xf88f79a1 drm_gem_vram_plane_helper_cleanup_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xfc2965d8 drm_gem_vram_offset +EXPORT_SYMBOL drivers/gpu/drm/rockchip/rockchipdrm 0x2b8495b2 rockchip_drm_wait_vact_end +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x0b3029fb drm_sched_increase_karma +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x110e740d drm_sched_entity_set_priority +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x11447ae0 drm_sched_entity_destroy +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x21ced098 drm_sched_entity_fini +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x22cb5852 drm_sched_entity_push_job +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x2faa3025 drm_sched_pick_best +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x4766af65 drm_sched_suspend_timeout +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x4aeb3ed7 drm_sched_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x4d5296f5 drm_sched_entity_flush +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x4d58b6cc drm_sched_entity_modify_sched +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x5e581a6f drm_sched_resubmit_jobs +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x6e54d363 drm_sched_job_cleanup +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x74404cd2 drm_sched_dependency_optimized +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x75d198ef drm_sched_entity_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x7cc5f81f to_drm_sched_fence +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x982e2861 drm_sched_fault +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xa18fcdb4 drm_sched_start +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xa5ad86cd drm_sched_resume_timeout +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xaef34339 drm_sched_stop +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xd1663ade drm_sched_resubmit_jobs_ext +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xd5e375f4 drm_sched_increase_karma_ext +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xdbaffba5 drm_sched_job_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xf6aa1779 drm_sched_reset_karma +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xf6f68bd8 drm_sched_fini +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-frontend 0x7a86345e sun4i_frontend_update_buffer +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-frontend 0x87c252ef sun4i_frontend_enable +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-frontend 0x90ca3af1 sun4i_frontend_update_coord EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-frontend 0x96413fdb sunxi_bt601_yuv2rgb_coef EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-frontend 0xa631b179 sun4i_frontend_format_is_supported -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-frontend 0xbdcd4299 sun4i_frontend_enable -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-frontend 0xbf6c76de sun4i_frontend_update_formats EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-frontend 0xe13164ef sun4i_frontend_of_table -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-frontend 0xeb7232fe sun4i_frontend_update_buffer -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x2e21d165 sun4i_rgb_init -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x3082bcd2 sun4i_dclk_create +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-frontend 0xf08c2534 sun4i_frontend_init +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-frontend 0xf8fbc736 sun4i_frontend_exit +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-frontend 0xfefe5ae8 sun4i_frontend_update_formats +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x0300c8f9 sun4i_tcon_mode_set +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x2fc489df sun4i_tcon_enable_vblank +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x61ada8e0 sun4i_rgb_init EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x6c10c7a7 sun4i_tcon_of_table -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x927e08c4 sun4i_tcon_enable_vblank -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0xbb12362d sun4i_lvds_init -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0xbc213548 sun4i_dclk_free -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0xf5c477a7 sun4i_tcon_mode_set +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0xe7f284ee sun4i_lvds_init +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0xeddf338f sun4i_dclk_create +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0xff95e5eb 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 0x4ca34c5a sun8i_tcon_top_de_config -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun8i_tcon_top 0x95ff4a8a sun8i_tcon_top_set_hdmi_src -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x041fc4f8 ttm_bo_vm_open -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0480009f ttm_bo_mmap_obj -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x08f90547 ttm_pool_free -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x14118081 ttm_bo_vm_access -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x16232967 ttm_bo_move_to_lru_tail -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x26d36169 ttm_bo_kunmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x29a8b4ab ttm_bo_kmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2ab69113 ttm_pool_alloc -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x375a75d8 ttm_tt_destroy_common -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x405852d0 ttm_bo_validate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4112eee5 ttm_bo_vm_close -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x48c091a8 ttm_bo_vm_fault_reserved -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4af6b4af ttm_bo_put -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4b0453ea ttm_resource_manager_evict_all -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4fbd30de ttm_move_memcpy -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5985d5af ttm_global_swapout -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x59b90934 ttm_kmap_iter_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x61eafd0b ttm_bo_unmap_virtual -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6275cd37 ttm_resource_free -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6435035d ttm_eu_backoff_reservation -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6f2ef7a3 ttm_range_man_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7682fafa ttm_range_man_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x78e67220 ttm_bo_move_accel_cleanup -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7eb8aeed ttm_bo_wait -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x860e0d06 ttm_bo_lock_delayed_workqueue -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x90b8f346 ttm_resource_manager_debug -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x91c9f576 ttm_bo_mem_space -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x93251dae ttm_bo_vm_reserve -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9d071c2a ttm_device_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa50aaba8 ttm_bo_eviction_valuable -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa84cfa30 ttm_bo_bulk_move_lru_tail -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xab7f9b20 ttm_bo_vm_dummy_page -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xabb93c2f ttm_resource_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xaccc3802 ttm_tt_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xaec55d22 ttm_bo_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb3bea567 ttm_bo_vm_fault -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb65b7afe ttm_device_init +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun8i_tcon_top 0x40838bb3 sun8i_tcon_top_de_config +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun8i_tcon_top 0x6f6f1060 sun8i_tcon_top_set_hdmi_src +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x021a5c15 ttm_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x033cfc1e ttm_move_memcpy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x06b97c02 ttm_bo_mem_space +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x097de8e6 ttm_bo_bulk_move_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0d71f188 ttm_bo_kmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1cad2aea ttm_resource_manager_debug +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x251a63db ttm_eu_fence_buffer_objects +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2b1718fb ttm_bo_init_reserved +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2fb7e9c7 ttm_tt_destroy_common +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3151ce88 ttm_bo_put +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3668a020 ttm_bo_validate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3b1de425 ttm_sg_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3b2a75a7 ttm_bo_lock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x48af90dd ttm_bo_vm_dummy_page +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4c33cddb ttm_bo_move_to_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4ce603de ttm_resource_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4d93f537 ttm_device_swapout +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x56142aae ttm_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5a025d6e ttm_bo_move_memcpy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5b3d59a7 ttm_pool_alloc +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5bc8326b ttm_bo_unmap_virtual +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x603d0d59 ttm_pool_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x60a01584 ttm_kmap_iter_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x61739f5b ttm_range_man_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x74b187ad ttm_bo_vm_open +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7c028b2a ttm_global_swapout +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7e99378c ttm_bo_vm_fault_reserved +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7f60bbfe ttm_tt_populate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x897c8000 ttm_bo_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9908a985 ttm_glob +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9c3be2b8 ttm_resource_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9f159e69 ttm_resource_manager_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa5fb31e5 ttm_pool_debugfs +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa825029a ttm_bo_vunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa9ff9ee1 ttm_eu_reserve_buffers +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xaf2c487d ttm_bo_vm_fault +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb5afb6b9 ttm_resource_manager_evict_all +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb682a2d9 ttm_bo_kunmap EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb753ca08 ttm_bo_mem_compat -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbe08f0b7 ttm_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbe783a5b ttm_bo_vunmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc4b922c9 ttm_resource_manager_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc8c1fb79 ttm_sg_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcae6f45f ttm_pool_debugfs -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd57a8edf ttm_eu_fence_buffer_objects -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd5835ad4 ttm_glob -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdf1f6c05 ttm_bo_unlock_delayed_workqueue -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdfdfc7dc ttm_io_prot -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe2e0928f ttm_device_swapout -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe7fef842 ttm_bo_vmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xef6a7001 ttm_tt_populate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb7b8debc ttm_bo_wait +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbca156c0 ttm_bo_vm_close +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbe7be1a3 ttm_bo_eviction_valuable +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc0498cc0 ttm_bo_move_accel_cleanup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc3608ec4 ttm_device_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd494c5b6 ttm_bo_vm_reserve +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd828c007 ttm_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe2f44c32 ttm_bo_vmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe3cb5c2b ttm_range_man_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe7b7f9a2 ttm_bo_unlock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xea73007f ttm_io_prot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xeb01a456 ttm_eu_backoff_reservation +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf036f9f6 ttm_bo_mmap_obj EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf03f94e3 ttm_kmap_iter_iomap_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf488e346 ttm_bo_init_reserved -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf5d46612 ttm_bo_move_memcpy -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfe49b830 ttm_eu_reserve_buffers +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf25a30b5 ttm_bo_vm_access +EXPORT_SYMBOL drivers/gpu/drm/vmwgfx/vmwgfx 0x1d822ea9 ttm_mem_global_alloc EXPORT_SYMBOL drivers/gpu/drm/vmwgfx/vmwgfx 0x446c961c ttm_base_object_noref_lookup -EXPORT_SYMBOL drivers/gpu/drm/vmwgfx/vmwgfx 0x51f7104e ttm_mem_global_alloc +EXPORT_SYMBOL drivers/gpu/drm/vmwgfx/vmwgfx 0x45bfcf47 ttm_mem_glob EXPORT_SYMBOL drivers/gpu/drm/vmwgfx/vmwgfx 0x6052860c ttm_round_pot -EXPORT_SYMBOL drivers/gpu/drm/vmwgfx/vmwgfx 0x76cd2bd1 ttm_mem_global_free -EXPORT_SYMBOL drivers/gpu/drm/vmwgfx/vmwgfx 0xaf822510 ttm_mem_glob -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x0c67ad85 host1x_job_add_wait -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x0cf6e1f5 host1x_channel_request -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x106b030a __host1x_client_register -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x112cef4b host1x_driver_unregister -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x15a28178 host1x_job_put -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x272f14df host1x_device_init -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x2b8c3c06 host1x_job_unpin -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x339cf4ae host1x_client_resume -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x37f3739e host1x_syncpt_wait -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x3a21076f host1x_syncpt_incr_max -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x3db76c45 host1x_syncpt_get_by_id -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x3dff15ae host1x_channel_get -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x40572a29 tegra_mipi_request -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x450b01bf host1x_syncpt_get_base -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x4927fe55 host1x_syncpt_alloc -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x4c484bad host1x_client_exit -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x4da37bf3 host1x_job_submit -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x4ec6f2ba host1x_syncpt_put -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x4f89ad64 host1x_job_alloc +EXPORT_SYMBOL drivers/gpu/drm/vmwgfx/vmwgfx 0x81df5b63 ttm_mem_global_free +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x01829e43 host1x_syncpt_incr_max +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x2161520b host1x_client_unregister +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x24dbcf6b host1x_syncpt_get_by_id +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x25cc2f98 host1x_driver_unregister +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x2792dfd0 host1x_syncpt_read_max +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x39d727f1 host1x_client_resume +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x3d9de7d8 host1x_syncpt_get +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x424ffda4 host1x_device_init +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x442f88aa __host1x_client_init +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x4c469094 host1x_client_suspend EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x4fd3948d host1x_fence_create EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x51de13ce host1x_syncpt_base_id -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x5bf9c014 host1x_job_get -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x5cb95a39 __host1x_client_init -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x64e8ae09 host1x_client_suspend -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x68606516 host1x_job_pin -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x69d8d55a host1x_job_add_gather -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x6ab930d6 host1x_syncpt_incr +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x587f5be2 host1x_syncpt_release_vblank_reservation +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x59a9717b host1x_device_exit +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x6190fa49 host1x_job_add_wait +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x67a83447 host1x_syncpt_id +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x6d5d01c5 host1x_channel_put EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x72e78e54 tegra_mipi_start_calibration -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x7a249d57 host1x_client_unregister -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x7fe4d707 host1x_syncpt_release_vblank_reservation -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x83e145a5 host1x_device_exit -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x90586a5c host1x_channel_put +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x8a89ed0e host1x_syncpt_get_base +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x8d330275 host1x_syncpt_put +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x8dbb2f8a host1x_syncpt_read_min +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x8e61447e host1x_syncpt_alloc EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x9451a33e tegra_mipi_free -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x96e1cecf host1x_syncpt_get_by_id_noref -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x9a0ade7a host1x_syncpt_read +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x96db1a9e host1x_syncpt_wait +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x9dbf33a2 host1x_job_add_gather EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xa733ff60 tegra_mipi_disable -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xb2f14e98 host1x_syncpt_id -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xb4317340 host1x_get_dma_mask +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xac8af59f host1x_client_exit +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xae69c023 host1x_driver_register_full +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xb21c51cd host1x_channel_get +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xb386ea57 host1x_syncpt_request +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xb49373a7 host1x_syncpt_read +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xb944ee38 host1x_job_unpin EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xbcbe65a0 tegra_mipi_finish_calibration -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xd2697df2 host1x_driver_register_full -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xd6554c71 host1x_syncpt_read_min -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xe007c6d4 host1x_syncpt_get -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xe1beca95 host1x_syncpt_request -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xe47adfed host1x_syncpt_read_max +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xc083d198 host1x_job_submit +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xc9d7d42c host1x_syncpt_incr +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xca3775b0 __host1x_client_register +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xcd425b12 host1x_job_put +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xcfc74db2 host1x_job_pin +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xd6a941bd host1x_get_dma_mask +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xe0afef55 tegra_mipi_request +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xe10bdfe8 host1x_job_get +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xe3b6c784 host1x_job_alloc +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xeb71adc0 host1x_channel_request EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xf8a79b19 tegra_mipi_enable -EXPORT_SYMBOL drivers/hid/hid 0x24439919 hid_bus_type -EXPORT_SYMBOL drivers/hv/hv_vmbus 0x92b278c0 vmbus_recvpacket -EXPORT_SYMBOL drivers/hv/hv_vmbus 0xa42e51ef vmbus_sendpacket +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xfec79f8b host1x_syncpt_get_by_id_noref +EXPORT_SYMBOL drivers/hid/hid 0x0fe98b2d hid_bus_type +EXPORT_SYMBOL drivers/hv/hv_vmbus 0xe25af54a vmbus_recvpacket +EXPORT_SYMBOL drivers/hv/hv_vmbus 0xfcd1bfc6 vmbus_sendpacket EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x2f9e7f8e vid_which_vrm EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x446615bd vid_from_reg EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x01568393 sch56xx_read_virtual_reg -EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x42430fa0 sch56xx_watchdog_register +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x7f7b6914 sch56xx_watchdog_register EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x96ec3b26 sch56xx_read_virtual_reg12 EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xaa17a737 sch56xx_write_virtual_reg EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xb37b9b81 sch56xx_read_virtual_reg16 -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xa47a22d5 i2c_bit_algo -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xb3578dd2 i2c_bit_add_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xcf826bfb i2c_bit_add_numbered_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0xe8d91019 i2c_pca_add_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0xfff53ed5 i2c_pca_add_numbered_bus -EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0x9abc5b64 amd756_smbus -EXPORT_SYMBOL drivers/iio/accel/bma400_core 0x2181d625 bma400_probe -EXPORT_SYMBOL drivers/iio/accel/bma400_core 0xae463c68 bma400_regmap_config -EXPORT_SYMBOL drivers/iio/accel/bma400_core 0xe9647e6e bma400_remove -EXPORT_SYMBOL drivers/iio/accel/kxsd9 0x1373b252 kxsd9_common_remove -EXPORT_SYMBOL drivers/iio/accel/kxsd9 0x8feb0521 kxsd9_common_probe -EXPORT_SYMBOL drivers/iio/accel/kxsd9 0xc97fd008 kxsd9_dev_pm_ops -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x0ecdb958 mma9551_write_config_byte -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x171b48e2 mma9551_gpio_config -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x38ae1970 mma9551_read_status_byte -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x3a35e643 mma9551_read_version +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x41ebbc66 i2c_bit_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x4bc53af9 i2c_bit_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x51b8bb32 i2c_bit_algo +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0xdbff488b i2c_pca_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0xff43df7d i2c_pca_add_bus +EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0x32c5e160 amd756_smbus +EXPORT_SYMBOL drivers/iio/accel/bma400_core 0x3b50b274 bma400_probe +EXPORT_SYMBOL drivers/iio/accel/bma400_core 0x8f9c9a94 bma400_regmap_config +EXPORT_SYMBOL drivers/iio/accel/bma400_core 0xab50f15c bma400_remove +EXPORT_SYMBOL drivers/iio/accel/kxsd9 0x0621d2d0 kxsd9_common_probe +EXPORT_SYMBOL drivers/iio/accel/kxsd9 0x50d60ae3 kxsd9_dev_pm_ops +EXPORT_SYMBOL drivers/iio/accel/kxsd9 0xf5b9fb00 kxsd9_common_remove +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x31724a49 mma9551_read_config_words EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x41ef446c mma9551_read_accel_scale -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x5f666c85 mma9551_app_reset -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x716f3a09 mma9551_read_status_words -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x7f40d6f7 mma9551_set_power_state -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xb05a1229 mma9551_read_config_words -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xb3a4a0e6 mma9551_read_config_byte -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xb8b1316d mma9551_update_config_bits +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x43179782 mma9551_read_config_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x4ac329c3 mma9551_set_device_state +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x4bfc97f0 mma9551_set_power_state +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x57f7e9b2 mma9551_write_config_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x6dbebd11 mma9551_update_config_bits +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x6eafc2b4 mma9551_write_config_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x959d7e2d mma9551_read_config_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xb17c26fd mma9551_read_status_words EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xbcd7fe96 mma9551_sleep -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xd4f71932 mma9551_set_device_state -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xdb8c5dac mma9551_read_accel_chan -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xe106026e mma9551_write_config_words -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xe694bd15 mma9551_read_config_word -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xf7756628 mma9551_write_config_word -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xff7381dd mma9551_read_status_word -EXPORT_SYMBOL drivers/iio/accel/st_accel 0x020c7bc4 st_accel_get_settings -EXPORT_SYMBOL drivers/iio/accel/st_accel 0x4991c9db st_accel_common_remove -EXPORT_SYMBOL drivers/iio/accel/st_accel 0xab3740f0 st_accel_common_probe +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xc01a6ec5 mma9551_read_status_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xc1215035 mma9551_read_status_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xcbec1510 mma9551_app_reset +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xda10ecea mma9551_gpio_config +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xece6b20c mma9551_read_version +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xee4ccc21 mma9551_write_config_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xf4c14e71 mma9551_read_accel_chan +EXPORT_SYMBOL drivers/iio/accel/st_accel 0x0ae65ed6 st_accel_common_remove +EXPORT_SYMBOL drivers/iio/accel/st_accel 0xa5e50f31 st_accel_get_settings +EXPORT_SYMBOL drivers/iio/accel/st_accel 0xc07b1b13 st_accel_common_probe EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x10a4c688 qcom_adc5_hw_scale EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x12402a0a qcom_vadc_scale EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x39885d6b qcom_adc_tm5_temp_volt_scale @@ -1231,1215 +1231,1215 @@ 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 0x46c1052b iio_triggered_buffer_setup_ext -EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0xaa0befb2 iio_triggered_buffer_cleanup -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x4caa4f79 iio_kfifo_free -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xe01941c4 iio_kfifo_allocate -EXPORT_SYMBOL drivers/iio/chemical/bme680_core 0x48e3ef07 bme680_regmap_config -EXPORT_SYMBOL drivers/iio/chemical/scd30_core 0xb731786b scd30_resume -EXPORT_SYMBOL drivers/iio/chemical/scd30_core 0xe4e0bcf1 scd30_suspend -EXPORT_SYMBOL drivers/iio/chemical/scd30_core 0xfdade184 scd30_probe +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0x62ce0d00 iio_triggered_buffer_cleanup +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0xa443d57b iio_triggered_buffer_setup_ext +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x0e91d893 iio_kfifo_free +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xd499de2c iio_kfifo_allocate +EXPORT_SYMBOL drivers/iio/chemical/bme680_core 0x3697cfa0 bme680_regmap_config +EXPORT_SYMBOL drivers/iio/chemical/scd30_core 0x51971d81 scd30_resume +EXPORT_SYMBOL drivers/iio/chemical/scd30_core 0x70ad9a63 scd30_suspend +EXPORT_SYMBOL drivers/iio/chemical/scd30_core 0x90b14865 scd30_probe EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x045688dd ms_sensors_read_prom_word -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x0613ca3d ms_sensors_write_resolution -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x28424da0 ms_sensors_write_heater +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x194b6ccb ms_sensors_read_temp_and_pressure +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x26434ed4 ms_sensors_write_resolution EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x2d2f5cd5 ms_sensors_reset EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x42b6a050 ms_sensors_convert_and_read -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x5a999802 ms_sensors_tp_read_prom -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x5c959c5b ms_sensors_ht_read_humidity -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x8207284a ms_sensors_show_battery_low -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xa7cbe226 ms_sensors_show_heater -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xb959461e ms_sensors_read_temp_and_pressure -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xed40102e ms_sensors_read_serial -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xf9c85e2a ms_sensors_ht_read_temperature -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x83fd548c ssp_disable_sensor -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xb01a5585 ssp_register_consumer -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xb7b6adf0 ssp_change_delay -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xd10fe38a ssp_get_sensor_delay -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xe264f324 ssp_enable_sensor -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x241bffa7 ssp_common_process_data -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x774648f4 ssp_common_buffer_postenable -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0xfd60fddd ssp_common_buffer_postdisable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x069285c1 st_sensors_set_enable +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x4eff4cd6 ms_sensors_show_battery_low +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x538be774 ms_sensors_ht_read_humidity +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x5b1e2a56 ms_sensors_show_heater +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x993d482a ms_sensors_ht_read_temperature +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xb33efc19 ms_sensors_write_heater +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xd77a9606 ms_sensors_read_serial +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xf84c5099 ms_sensors_tp_read_prom +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x080f225d ssp_disable_sensor +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x35958249 ssp_register_consumer +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x3d0f2450 ssp_enable_sensor +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x90da24c3 ssp_change_delay +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xcf8a787d ssp_get_sensor_delay +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x1175d42e ssp_common_process_data +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x242ca35a ssp_common_buffer_postenable +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0xf86bd128 ssp_common_buffer_postdisable EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x074d7047 st_sensors_trigger_handler -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x07a9edc2 st_sensors_allocate_trigger -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x1f2664a7 st_sensors_power_disable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x21e7472b st_sensors_debugfs_reg_access -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x26fe51ae st_sensors_set_dataready_irq -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x31c7c813 st_sensors_verify_id -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x3497487e st_sensors_set_odr -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x42ced470 st_sensors_read_info_raw -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x69327f60 st_sensors_init_sensor -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x769605e5 st_sensors_dev_name_probe -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x95dcf9cf st_sensors_set_axis_enable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xb55c24ab st_sensors_set_fullscale_by_gain -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xc7f6f9fc st_sensors_sysfs_sampling_frequency_avail -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xc9512982 st_sensors_sysfs_scale_avail -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xd01ebb93 st_sensors_power_enable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xd2fbc19e st_sensors_validate_device -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xd87d6be4 st_sensors_deallocate_trigger -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xe4c4183c st_sensors_get_settings_index -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0x4118396d st_sensors_i2c_configure -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_spi 0xfa716d85 st_sensors_spi_configure -EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0x67b330ac mpu3050_common_remove -EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0x86215fff mpu3050_common_probe -EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0xfd138e25 mpu3050_dev_pm_ops -EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x58e18d4d st_gyro_common_probe -EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0xa43d4c6d st_gyro_get_settings -EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0xeed5b862 st_gyro_common_remove -EXPORT_SYMBOL drivers/iio/humidity/hts221 0x4088c269 hts221_pm_ops -EXPORT_SYMBOL drivers/iio/humidity/hts221 0x413fece9 hts221_probe -EXPORT_SYMBOL drivers/iio/imu/adis_lib 0x45ef6697 adis_enable_irq -EXPORT_SYMBOL drivers/iio/imu/adis_lib 0xe6bd2359 adis_debugfs_reg_access -EXPORT_SYMBOL drivers/iio/imu/bmi160/bmi160_core 0x3c4ed95b bmi160_regmap_config +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x2013af18 st_sensors_power_disable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x241985be st_sensors_deallocate_trigger +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x2c18aa2b st_sensors_read_info_raw +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x405fd7c3 st_sensors_set_axis_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x40efa15c st_sensors_get_settings_index +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x78ce064e st_sensors_power_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x8e0abf53 st_sensors_sysfs_scale_avail +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x98cf6be3 st_sensors_debugfs_reg_access +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xaed1542f st_sensors_set_dataready_irq +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xb8eb299a st_sensors_validate_device +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xbbed63b9 st_sensors_verify_id +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xc2d6c000 st_sensors_set_odr +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xca06ec1e st_sensors_set_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xca4103c1 st_sensors_sysfs_sampling_frequency_avail +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xe46c7ccf st_sensors_set_fullscale_by_gain +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xf116dfff st_sensors_init_sensor +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xfab01f33 st_sensors_dev_name_probe +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xff2601e1 st_sensors_allocate_trigger +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0x2345287b st_sensors_i2c_configure +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_spi 0xc863fadf st_sensors_spi_configure +EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0x00e995a5 mpu3050_dev_pm_ops +EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0x60705f56 mpu3050_common_probe +EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0xe5de2475 mpu3050_common_remove +EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x06845791 st_gyro_common_probe +EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x2a6fd889 st_gyro_get_settings +EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x4bf18772 st_gyro_common_remove +EXPORT_SYMBOL drivers/iio/humidity/hts221 0x4de5efbd hts221_pm_ops +EXPORT_SYMBOL drivers/iio/humidity/hts221 0xba7df85e hts221_probe +EXPORT_SYMBOL drivers/iio/imu/adis_lib 0x0e016f64 adis_enable_irq +EXPORT_SYMBOL drivers/iio/imu/adis_lib 0x5f2c1143 adis_debugfs_reg_access EXPORT_SYMBOL drivers/iio/imu/bmi160/bmi160_core 0xca19cfae bmi160_enable_irq -EXPORT_SYMBOL drivers/iio/imu/fxos8700_core 0x235ee45b fxos8700_regmap_config -EXPORT_SYMBOL drivers/iio/imu/st_lsm6dsx/st_lsm6dsx 0x84bae870 st_lsm6dsx_pm_ops -EXPORT_SYMBOL drivers/iio/imu/st_lsm6dsx/st_lsm6dsx 0xa7a47f6d st_lsm6dsx_probe -EXPORT_SYMBOL drivers/iio/industrialio 0x06ef066c iio_device_unregister -EXPORT_SYMBOL drivers/iio/industrialio 0x13af9fd7 iio_bus_type -EXPORT_SYMBOL drivers/iio/industrialio 0x1ee67622 iio_device_free -EXPORT_SYMBOL drivers/iio/industrialio 0x22066735 iio_trigger_validate_own_device -EXPORT_SYMBOL drivers/iio/industrialio 0x2bdfd233 iio_get_time_res +EXPORT_SYMBOL drivers/iio/imu/bmi160/bmi160_core 0xd55d7713 bmi160_regmap_config +EXPORT_SYMBOL drivers/iio/imu/fxos8700_core 0xf97690c9 fxos8700_regmap_config +EXPORT_SYMBOL drivers/iio/imu/st_lsm6dsx/st_lsm6dsx 0x3790ffdf st_lsm6dsx_probe +EXPORT_SYMBOL drivers/iio/imu/st_lsm6dsx/st_lsm6dsx 0xb3fb7a5a st_lsm6dsx_pm_ops +EXPORT_SYMBOL drivers/iio/industrialio 0x031e17f4 iio_device_set_clock +EXPORT_SYMBOL drivers/iio/industrialio 0x14d4107c iio_device_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0x20dda781 iio_buffer_init EXPORT_SYMBOL drivers/iio/industrialio 0x2d6bcdcb iio_trigger_generic_data_rdy_poll -EXPORT_SYMBOL drivers/iio/industrialio 0x31b3e743 iio_device_set_clock -EXPORT_SYMBOL drivers/iio/industrialio 0x394f5fdb iio_trigger_set_immutable -EXPORT_SYMBOL drivers/iio/industrialio 0x4bb09355 iio_trigger_unregister -EXPORT_SYMBOL drivers/iio/industrialio 0x4f034a48 iio_trigger_poll -EXPORT_SYMBOL drivers/iio/industrialio 0x570aac36 iio_trigger_free -EXPORT_SYMBOL drivers/iio/industrialio 0x6714f7a8 iio_get_time_ns -EXPORT_SYMBOL drivers/iio/industrialio 0x6ff2114d iio_trigger_notify_done -EXPORT_SYMBOL drivers/iio/industrialio 0x7d8f4c75 iio_device_alloc -EXPORT_SYMBOL drivers/iio/industrialio 0x836a01fe iio_read_const_attr -EXPORT_SYMBOL drivers/iio/industrialio 0xa3f22d8d iio_push_event -EXPORT_SYMBOL drivers/iio/industrialio 0xb3331103 iio_trigger_using_own -EXPORT_SYMBOL drivers/iio/industrialio 0xbdde4cbd __iio_trigger_register -EXPORT_SYMBOL drivers/iio/industrialio 0xce54a27c iio_read_mount_matrix -EXPORT_SYMBOL drivers/iio/industrialio 0xd965df9b iio_trigger_poll_chained -EXPORT_SYMBOL drivers/iio/industrialio 0xd9ea1ea7 iio_buffer_init +EXPORT_SYMBOL drivers/iio/industrialio 0x31fb93e1 iio_trigger_notify_done +EXPORT_SYMBOL drivers/iio/industrialio 0x33196758 iio_read_mount_matrix +EXPORT_SYMBOL drivers/iio/industrialio 0x341bdc49 iio_trigger_free +EXPORT_SYMBOL drivers/iio/industrialio 0x3bd1c7db iio_trigger_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0x4321752f iio_get_time_res +EXPORT_SYMBOL drivers/iio/industrialio 0x648d595f iio_device_get_clock +EXPORT_SYMBOL drivers/iio/industrialio 0x6bc163c9 iio_device_free +EXPORT_SYMBOL drivers/iio/industrialio 0x8047f6ec iio_trigger_using_own +EXPORT_SYMBOL drivers/iio/industrialio 0x8935301c iio_trigger_poll_chained +EXPORT_SYMBOL drivers/iio/industrialio 0x93ab5044 __iio_device_register +EXPORT_SYMBOL drivers/iio/industrialio 0xb688fd23 iio_get_time_ns +EXPORT_SYMBOL drivers/iio/industrialio 0xc136918d iio_push_event +EXPORT_SYMBOL drivers/iio/industrialio 0xd0ec92a1 iio_trigger_poll +EXPORT_SYMBOL drivers/iio/industrialio 0xd6a4769e __iio_trigger_register +EXPORT_SYMBOL drivers/iio/industrialio 0xd795cba6 iio_trigger_alloc EXPORT_SYMBOL drivers/iio/industrialio 0xdf76bbeb iio_pollfunc_store_time -EXPORT_SYMBOL drivers/iio/industrialio 0xe8c18ab7 iio_device_get_clock -EXPORT_SYMBOL drivers/iio/industrialio 0xe9fa0eb0 iio_trigger_alloc -EXPORT_SYMBOL drivers/iio/industrialio 0xf96e5348 __iio_device_register -EXPORT_SYMBOL drivers/iio/industrialio-configfs 0x4c016e96 iio_configfs_subsys -EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x4a9fef4e iio_sw_device_destroy -EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x87545b05 iio_register_sw_device_type -EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x9fda1246 iio_sw_device_create -EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0xcec2ba67 iio_unregister_sw_device_type -EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x35a48f5f iio_sw_trigger_destroy -EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x461c9cf0 iio_register_sw_trigger_type -EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x6b1c64bb iio_unregister_sw_trigger_type -EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0xf8394160 iio_sw_trigger_create -EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x13153aaf iio_triggered_event_setup -EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x4dfbf909 iio_triggered_event_cleanup -EXPORT_SYMBOL drivers/iio/light/st_uvis25_core 0x9469c23f st_uvis25_pm_ops -EXPORT_SYMBOL drivers/iio/light/st_uvis25_core 0xf249ab5f st_uvis25_probe -EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0x2d94f938 bmc150_magn_remove -EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0x34e62b4c bmc150_magn_regmap_config -EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0x504e6b0e bmc150_magn_pm_ops -EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0x80e73afc bmc150_magn_probe -EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0x41c019b5 hmc5843_common_remove -EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0x612922ff hmc5843_common_suspend -EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0x662d7930 hmc5843_common_probe -EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0xa5e7346e hmc5843_common_resume -EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x35c987cc st_magn_get_settings -EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x7cf05542 st_magn_common_remove -EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0xaf823681 st_magn_common_probe -EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x0738f0ee bmp280_common_probe -EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x3811ccbc bmp280_regmap_config -EXPORT_SYMBOL drivers/iio/pressure/bmp280 0xd29711de bmp180_regmap_config -EXPORT_SYMBOL drivers/iio/pressure/bmp280 0xde3d189e bmp280_dev_pm_ops -EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0x13fec445 ms5611_probe -EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0x8f814d79 ms5611_remove -EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x0468518a st_press_get_settings -EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x6a7ca9d9 st_press_common_remove -EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x9f30fd07 st_press_common_probe -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x27f921de ib_create_cm_id -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x2f930bda ib_send_cm_mra -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x3e80e3a0 ib_send_cm_rep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x3eb01701 ib_cm_notify -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x5a6c78f1 ib_send_cm_dreq -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x666fd432 ib_cm_insert_listen +EXPORT_SYMBOL drivers/iio/industrialio 0xe2a51a6b iio_trigger_validate_own_device +EXPORT_SYMBOL drivers/iio/industrialio 0xe2cc1f75 iio_bus_type +EXPORT_SYMBOL drivers/iio/industrialio 0xe57d57e3 iio_trigger_set_immutable +EXPORT_SYMBOL drivers/iio/industrialio 0xec6a7d2d iio_device_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0xf1228520 iio_read_const_attr +EXPORT_SYMBOL drivers/iio/industrialio-configfs 0x91c6b83b iio_configfs_subsys +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x4d816d13 iio_sw_device_destroy +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x6803333d iio_sw_device_create +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0xba9c198b iio_register_sw_device_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0xc3f74967 iio_unregister_sw_device_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x0dce855a iio_unregister_sw_trigger_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x563adb4f iio_sw_trigger_create +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0xb687d935 iio_sw_trigger_destroy +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0xe05b484e iio_register_sw_trigger_type +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x7cdeae6c iio_triggered_event_cleanup +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0xc884f250 iio_triggered_event_setup +EXPORT_SYMBOL drivers/iio/light/st_uvis25_core 0x6e39ccf1 st_uvis25_pm_ops +EXPORT_SYMBOL drivers/iio/light/st_uvis25_core 0xbd4a5e56 st_uvis25_probe +EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0x600d037e bmc150_magn_regmap_config +EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0x72cba034 bmc150_magn_probe +EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0xadb4708e bmc150_magn_pm_ops +EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0xc1ef9f5c bmc150_magn_remove +EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0xb90efc30 hmc5843_common_probe +EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0xd47f60b1 hmc5843_common_resume +EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0xe745d354 hmc5843_common_suspend +EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0xec75049d hmc5843_common_remove +EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x6dcdef2f st_magn_common_remove +EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0xbb9b1328 st_magn_get_settings +EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0xe3dca6a1 st_magn_common_probe +EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x00c959ff bmp180_regmap_config +EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x744d2d96 bmp280_common_probe +EXPORT_SYMBOL drivers/iio/pressure/bmp280 0xe97c8ab4 bmp280_dev_pm_ops +EXPORT_SYMBOL drivers/iio/pressure/bmp280 0xea4f849d bmp280_regmap_config +EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0xc001b759 ms5611_probe +EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0xf862fbae ms5611_remove +EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x3471a73a st_press_common_probe +EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x48a0cc06 st_press_common_remove +EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0xa381257f st_press_get_settings +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x089b01c8 ib_send_cm_sidr_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x24935c81 ib_send_cm_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x3b0aa296 ib_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x4cb8a42d ib_send_cm_mra EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x69824a14 ibcm_reject_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x6accb5ac ib_send_cm_rtu -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x89f3a7cb ib_send_cm_drep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xafbe36e5 ib_destroy_cm_id -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xc442cc00 ib_send_cm_sidr_req -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xc6cf99ab ib_send_cm_sidr_rep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xde8bc1a8 ib_send_cm_rej -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xe6d71bbe ib_cm_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xee8b2d95 ib_cm_listen -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xf4e20b42 ib_send_cm_req -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x005989df rdma_replace_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0188a4f2 ib_modify_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x027b1b75 ib_modify_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x038de08f ib_get_cached_lmc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x041e1230 ib_rdmacg_try_charge -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x04cfb56d ib_alloc_mr_integrity -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x05ad1278 ib_resize_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0654a69d ib_close_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x06dc9b44 ib_get_net_dev_by_params -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x06feaa0a ib_dispatch_event -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x08307222 rdma_translate_ip -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x08e7c684 rdma_restrack_get_byid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0b38ea38 ib_mr_pool_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c2e2793 rdma_restrack_put +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x6eadab08 ib_send_cm_rej +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x7dd74774 ib_send_cm_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x8337d5a0 ib_send_cm_rtu +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x8ba1a9db ib_send_cm_dreq +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x8dc803f9 ib_send_cm_drep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x94721c0b ib_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x9b33fac3 ib_send_cm_sidr_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xcd829dcc ib_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xf49a3cd8 ib_cm_notify +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xf8454982 ib_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xff6cd041 ib_cm_insert_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x01d7efa0 ib_destroy_qp_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0472d511 ib_alloc_mr_integrity +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x04bc45c6 ib_unregister_device_and_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x07f3d768 ib_port_sysfs_get_ibdev_kobj +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x09018be3 ib_init_ah_attr_from_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x09f7033c ib_port_unregister_client_groups +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0a0f7e13 ib_destroy_cq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0a4f141e ib_create_srq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c274c4c rdma_rw_ctx_post +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c786259 ib_drain_sq EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c86f5cb ib_sa_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0f7cf674 rdma_nl_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0fa7d837 _ib_alloc_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x105ccd89 ib_query_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x11d58d98 rdma_read_gid_l2_fields -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x13ce59c3 ib_free_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x164c0c35 ib_rdmacg_uncharge -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x176a4e5a ib_detach_mcast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x17db4c33 ib_set_device_ops +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0cb273e3 ibnl_put_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0fd9f48b ib_init_ah_from_mcmember +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x107dc325 ib_get_vf_stats +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x113843ed ib_post_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1365c81c ib_mr_pool_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1509ed04 rdma_link_unregister +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x15ab391e ib_mad_kernel_rmpp_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x164f7c93 rdma_move_grh_sgid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x16a222e9 ib_create_ah_from_wc EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x184621a4 ib_get_rdma_header_version -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1996053e rdma_restrack_set_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x18e41c3f ib_qp_usecnt_inc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1aab2eac rdma_nl_unicast_wait EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1b037462 __rdma_block_iter_start -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1d08099c ib_dealloc_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x202c9489 ib_alloc_xrcd_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x204b55f1 rdma_find_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x21dd7662 rdma_rw_ctx_destroy_signature +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1d80fbd0 ib_unregister_device_queued +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1d9bdc42 rdma_link_register +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2091f7f4 rdma_nl_stat_hwcounter_entry +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x20deb6b6 rdma_user_mmap_entry_insert_range +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x21a1ac2b ib_rdmacg_uncharge EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x22f3cf93 ib_pack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x25c61b7c ib_unregister_event_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2a8c8598 ib_get_cached_subnet_prefix -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2c5d0cef ibdev_alert -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2e38ea09 ib_port_immutable_read +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x25006450 ib_modify_qp_with_udata +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x286c28f2 ib_free_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2c6ea1d9 rdma_query_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2d42a4af ib_modify_srq EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2fc70b9e ib_get_gids_from_rdma_hdr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3036907a ib_get_rmpp_segment +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x30549e3f rdma_copy_ah_attr EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x305e5701 rdma_addr_size_kss -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x325b2610 ib_unregister_device_queued -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x331f7f93 ib_destroy_qp_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x33b267b3 rdma_hold_gid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x34c3fc38 rdma_rw_ctx_signature_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x357a2f5c ib_get_vf_stats -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x35ce62ef ibdev_info -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x370ab4ce ib_get_cached_port_state -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x374187f8 ib_port_unregister_client_groups -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x37888c6c rdma_restrack_count -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3a102797 rdma_put_gid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3a61bab2 ib_create_wq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3ee9e0fa ib_destroy_srq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3ef7ccbb rdma_query_gid_table +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x30daf318 ibdev_warn +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x31a97eaf ib_destroy_wq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x335153c5 ib_query_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x33536a92 ib_create_qp_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3421c935 ib_create_wq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x35b5c833 ib_set_device_ops +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x37274170 ib_register_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x381c8da9 ib_init_ah_attr_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x384042f2 ib_mr_pool_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3b3194bf ib_set_vf_link_state +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3b5c75d4 ib_process_cq_direct +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3b626ebf ib_map_mr_sg_pi +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3b7ea600 ib_get_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3e6933b0 rdma_nl_put_driver_u64 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3eb785f9 ib_register_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3f2d76a1 ib_register_client EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3fc2387c ib_ud_header_unpack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4048bc12 ibdev_crit -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x414d11af ib_destroy_wq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x420426c8 ibdev_err -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x42732ffa ib_sa_join_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x42d3149a rdma_user_mmap_entry_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x400748dd rdma_nl_put_driver_u64_hex +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4084122a rdma_get_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x42626b05 rdma_resolve_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x42b72b5e rdma_destroy_ah_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x42bf70ff ib_create_send_mad EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x434c5d10 zgid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x43563079 rdma_read_gid_l2_fields EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x439ce33c ib_sa_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x441d5ae2 rdma_nl_put_driver_u32 -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x45e80cb9 rdma_user_mmap_entry_insert +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4404985f ib_alloc_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x45c11ca2 rdma_user_mmap_entry_insert EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x45fb8985 rdma_nl_chk_listeners -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x46df0b37 ib_attach_mcast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4764c759 ib_query_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x47efc724 ib_create_qp_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4907d4c2 ib_check_mr_status -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4c00bd18 ib_sa_get_mcmember_rec +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x46ba0bc8 ib_get_net_dev_by_params +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x490e0da3 rdma_nl_put_driver_u32_hex +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4bdb390c ib_register_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4da22350 ib_rdmacg_try_charge 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 0x4f4e1dab rdma_nl_unicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4fed0304 ib_get_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x50c52599 __ib_create_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x519ccaae rdma_create_user_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x52062267 ib_register_event_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5568d9a6 rdma_port_get_link_layer +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4f76c263 ib_sa_guid_info_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4f9819e2 ibdev_crit +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x50bb68b7 ib_close_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x51003a3f ib_alloc_xrcd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5126892f rdma_read_gid_attr_ndev_rcu +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x51283974 rdma_restrack_parent_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x520d3226 ib_dereg_mr_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x52e08cbe __ib_alloc_cq_any +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x52e93252 ibdev_info EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x55bb02f3 ib_cache_gid_type_str -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x56ad9bc0 rdma_rw_ctx_destroy -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x57241feb ib_modify_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x572f4c4d ib_destroy_cq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x57314b02 rdma_read_gid_attr_ndev_rcu -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x58a39ed8 ib_sg_to_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x58a81373 rdma_rw_ctx_post -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x58e8c9ff __ib_alloc_cq_any -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5dd5f56d ib_get_eth_speed -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5de249cd ib_create_qp_security -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5ede6563 rdma_nl_put_driver_u32_hex +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x56bd2905 rdma_user_mmap_entry_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x56d83906 _ib_alloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5829e12d ib_open_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5855752a ib_query_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5977e25e ib_attach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x59a0936a ib_sa_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5afcc4a2 ib_modify_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5b1dea5c rdma_nl_put_driver_u32 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5be1282e rdma_user_mmap_entry_get_pgoff +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5c4cca85 ib_modify_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5d98b0ee rdma_nl_register +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6031f769 rdma_dev_access_netns +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x60b542a3 rdma_nl_unicast EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x613b1e2e ib_is_mad_class_rmpp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6163bed6 ib_drain_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x61618bd9 rdma_rw_ctx_destroy_signature EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x61d24c52 ib_rate_to_mbps -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x65d0e1f3 rdma_alloc_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x66f197f6 ib_register_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x67a70503 rdma_find_gid_by_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6acc13df ib_mr_pool_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x620de1b6 ib_dealloc_pd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x657073bf ib_resize_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6703555a ib_port_immutable_read +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x690309d6 __ib_create_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b4a6e30 ib_query_port EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b958320 ib_ud_ip4_csum -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6dedc8d8 ib_init_ah_attr_from_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6e57a96e rdma_nl_stat_hwcounter_entry +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6e8524cc ib_device_put EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f3614b6 rdma_is_zero_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6ffedf69 ib_reg_user_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x713b1809 ib_cq_pool_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f7f39b1 rdma_user_mmap_entry_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x70d586dd ib_query_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x73307dc4 ib_free_recv_mad EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x73baf9a2 ib_modify_qp_is_ok -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x757acd4d rdma_query_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7563a13c ib_sg_to_pages EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x75a729a0 rdma_nl_unregister -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x76638bbc rdma_modify_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x75c426bd ib_free_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x76c165bc __ib_alloc_cq EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x787ccc4c ib_get_mad_data_offset -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7b661307 rdma_restrack_add -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7e18dad2 rdma_rw_mr_factor -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7f7fac29 ib_find_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x80d59b39 ib_create_qp_kernel -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x82b4c0d0 ib_unregister_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x78d2bdf3 rdma_restrack_count +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x79874674 ib_get_rmpp_segment +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x79edb2d5 ib_drain_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7bc22b61 ib_mr_pool_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7f0d5660 rdma_set_cq_moderation +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7f85910e ibdev_err +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8362f674 ib_sa_get_mcmember_rec EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x86cef180 rdma_addr_size -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x87a1f31f ib_create_ah_from_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x87f45690 ib_register_mad_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x88a8ab6a ib_modify_qp_with_udata -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x897ed182 rdma_nl_put_driver_string -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8a3ccf40 ib_alloc_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8c898fb4 ib_sa_path_rec_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8d5f9306 ib_process_cq_direct +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x87f6a4f8 rdma_rw_ctx_signature_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x885a0b9a ib_sa_path_rec_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8916cdad rdma_replace_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x89180f29 rdma_hold_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8a57e9c3 ib_port_register_client_groups +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8bd17777 ib_drain_rq EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8e7528da __rdma_block_iter_next -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90c25b3b ib_qp_usecnt_dec +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8ed36d91 rdma_copy_src_l2_addr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8f5cb0cc ib_device_get_by_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8fc3cb39 ib_dealloc_xrcd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90336cab rdma_umap_priv_init EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90e807c7 ib_cache_gid_parse_type_str -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x91fe866f ib_drain_rq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x93757b7c rdma_rw_ctx_wrs -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x94b7b487 ib_get_vf_config -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9592e393 ib_dma_virt_map_sg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x96ff95eb ib_find_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x98a3dbd5 rdma_get_gid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9915a4ef __ib_alloc_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9ba2e800 ib_map_mr_sg_pi -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9bbf7935 rdma_user_mmap_entry_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9c9af451 rdma_user_mmap_entry_remove -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9e0147e5 ib_device_set_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9e7b1260 ib_modify_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9f90f843 ib_sa_guid_info_rec_query -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa07f3492 ib_find_exact_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa105753c ib_modify_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa3012ffd ib_port_sysfs_get_ibdev_kobj +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9281c837 ib_get_cached_port_state +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x940ee4b3 rdma_nl_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9546490d rdma_find_gid_by_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x95a5d352 rdma_create_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x98465ff7 rdma_roce_rescan_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x991654bd ibdev_notice +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x99feb06f ib_map_mr_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9bd8769c rdma_move_ah_attr EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa432baf6 ib_unpack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa53ba042 ib_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa5896b15 rdma_nl_put_driver_u64 -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa709893b rdma_copy_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa805f71b ib_find_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa85b4fb7 ib_init_ah_from_mcmember -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa97d4e7f ib_dealloc_pd_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa9bbd907 ib_free_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaa6b258f ib_create_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xab08a07a rdma_restrack_del -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xabf57897 ib_unregister_mad_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xadeb5fe7 ib_device_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa57c48e7 ib_reg_user_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa92400b4 ibdev_alert +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa9644be2 ib_get_cached_lmc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa9e96ed1 ib_destroy_srq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xac4ef26e ibdev_printk +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xac776920 ib_device_set_netdev EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae956dce ib_rate_to_mult -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaee1e397 rdma_roce_rescan_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb0f3a980 ibdev_emerg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb19f977f rdma_rw_ctx_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb1fe1cd9 ib_dereg_mr_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaf4140a9 ib_unregister_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xafb18545 ib_cq_pool_get EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb36e4148 ib_sa_pack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb386c5c5 rdma_read_gid_hw_context +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb3e14abc __ib_alloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb4d41ea6 ib_mr_pool_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb73673e8 ib_find_pkey EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb7852a05 ib_ud_header_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb9400b1f ib_query_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbb6b8a7f rdma_create_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbba44ea5 rdma_move_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbbc2210a ib_get_device_fw_str -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbced1587 ib_set_client_data -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbe488b68 ib_mr_pool_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbf19d1d8 rdma_nl_register -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbf92225a ib_init_ah_attr_from_path -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc0e52742 rdma_restrack_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc1ef58cf ib_set_vf_link_state -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc395c54e rdma_nl_put_driver_u64_hex -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc44a10d7 rdma_user_mmap_entry_insert_range -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc4f42295 ib_drain_sq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc5337fde ib_device_get_by_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc65353e8 ibnl_put_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc73cd791 rdma_destroy_ah_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc82da93c roce_gid_type_mask_support -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc8ff9f8e rdma_query_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc97ada70 ib_set_vf_guid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xca90f05a rdma_nl_unicast_wait -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcac91c7b rdma_set_cq_moderation -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcc11ee10 rdma_addr_cancel -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xccedff82 __ib_alloc_pd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcdd96af3 ib_device_get_by_name -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xce6779ac ib_free_recv_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xce8fe403 ib_advise_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb84517d8 ib_get_device_fw_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb95ea5a3 roce_gid_type_mask_support +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb9e7fc9d rdma_restrack_get_byid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xba25447e rdma_query_gid_table +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbd4dc34c rdma_create_user_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc0ed3a81 ib_set_vf_guid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc2689bba ib_find_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc2dc1009 ib_create_qp_security +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc4cbfae7 ib_get_eth_speed +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc944d3cf rdma_query_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc98684ba rdma_init_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcaad0229 rdma_destroy_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcb98ae4d ib_device_get_by_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcc029bd5 rdma_user_mmap_io +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcc562e7e rdma_rw_ctx_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcd114615 ib_modify_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcd48f602 ib_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcefd67ff ib_cq_pool_put EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcfbc053b ib_unregister_driver -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd173b8ce ib_dealloc_xrcd_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd457de4e ib_mad_kernel_rmpp_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd4efb6a4 ibdev_printk +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd0e26c8b rdma_user_mmap_entry_remove +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd122a6be ib_find_exact_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd4301d91 ib_unregister_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd4f33160 ib_advise_mr EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd6636ca6 rdma_addr_size_in6 -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd6d75dfc rdma_link_unregister -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd728b46d ib_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd7ed2624 ib_create_srq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd6d8eca8 rdma_restrack_set_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd7b8a1e2 rdma_port_get_link_layer +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd7c5213e rdma_rw_ctx_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd840b0fa rdma_addr_cancel EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda0d50ec ib_sa_cancel_query -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdb13006b rdma_restrack_new -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdb141369 ibdev_notice -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdcd84daa ib_qp_usecnt_inc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdda98ccd rdma_destroy_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xded14e69 rdma_dev_access_netns -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdfb73cd4 rdma_user_mmap_entry_get_pgoff -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe179b7c2 ib_post_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe1e9417d ib_cq_pool_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe2e40cda ibdev_warn +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdb1e2890 ibnl_put_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdd4b17e7 ib_create_qp_kernel +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdec3a7c7 ib_set_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdf5c12a0 rdma_restrack_new +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe1240963 ib_unregister_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe24d1b04 rdma_alloc_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe2cd9b5f ib_qp_usecnt_dec +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe47151d1 rdma_put_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5415773 ibdev_emerg EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5840ec6 ib_wc_status_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5a4ddb2 ib_unregister_device_and_put EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5a78c1e ib_sa_unpack_path -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe694ff7c rdma_link_register -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe780563d ib_query_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe6efae15 rdma_restrack_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe723c83f ib_get_vf_config +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe7abd08b rdma_translate_ip EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe7b52e5f mult_to_ib_rate -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe85afcc8 rdma_user_mmap_io +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9147532 rdma_modify_ah EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9e799fc ib_ud_header_pack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeab00dcc ibnl_put_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xebfdb0c9 rdma_resolve_ip -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xee15236d rdma_copy_src_l2_addr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xef915b7d ib_get_vf_guid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xefaefa34 rdma_init_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf3951c51 rdma_move_grh_sgid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xea09cb46 rdma_restrack_add +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xea657ee1 ib_modify_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xec09fe2c ib_detach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xed71a25a rdma_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xedf811b1 ib_dispatch_event +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xef8b4225 rdma_nl_put_driver_string +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xefe5ee07 ib_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf3bdcf32 rdma_rw_ctx_wrs +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf41b4557 ib_dma_virt_map_sg EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf5dedb30 rdma_node_get_transport -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf62fd0ad ib_map_mr_sg EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf6ed3334 ib_event_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfaa42ae8 rdma_restrack_parent_name -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfcd17338 ib_port_register_client_groups -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfdbb41fb rdma_umap_priv_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfec6fd8e ib_mr_pool_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xff1ecdfa ib_open_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xffc26082 rdma_read_gid_hw_context -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x019afef8 uverbs_uobject_fd_release -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x06d9487d ib_copy_ah_attr_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x0d5b813f ib_umem_dmabuf_map_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x10cf1e99 ib_uverbs_flow_resources_free +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf7e03340 rdma_restrack_del +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf8dcab97 rdma_restrack_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf9108bac ib_dealloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf9e9f107 ib_get_cached_subnet_prefix +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfb73f290 ib_get_vf_guid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfba7c0d8 ib_check_mr_status +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfc980de1 rdma_rw_mr_factor +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x02f2257c ib_umem_copy_from +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x0b5e03f9 flow_resources_add +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x107d98b2 ib_umem_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x14546021 ib_umem_odp_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x18929a83 ib_umem_odp_alloc_implicit EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1b54bd5d ib_copy_path_rec_from_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1e7bfd67 ib_umem_release -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x2535ac04 ib_umem_dmabuf_unmap_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x49b91e31 ib_umem_odp_alloc_child -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5476a388 ib_umem_odp_alloc_implicit -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x58ef0525 uverbs_get_flags64 -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x59d237af ib_umem_odp_map_dma_and_lock -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5dab413e ib_copy_qp_attr_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5dee5fff ib_umem_dmabuf_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1c11ba61 uverbs_destroy_def_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x23538479 ib_umem_dmabuf_unmap_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x26a127ff uverbs_uobject_fd_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x26b157a8 ib_umem_odp_alloc_child +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x2bda3754 ib_register_peer_memory_client +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x2d064233 ib_umem_stop_invalidation_notifier +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x3111ba05 _uverbs_alloc +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x4aaa60b5 _uverbs_get_const_unsigned +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x4d2165ee ib_umem_odp_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5650da4e ib_umem_find_best_pgsz +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5d68128a ib_umem_odp_map_dma_and_lock EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x63057f4b ib_copy_path_rec_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x641657e0 ib_register_peer_memory_client -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x64b20b1c ib_umem_stop_invalidation_notifier -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7935b0d3 _uverbs_get_const_unsigned -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x8199fa51 ib_umem_activate_invalidation_notifier -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x8c2aa7c5 ib_umem_odp_unmap_dma_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x90e7f8f1 uverbs_idr_class -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x932c4529 ib_umem_odp_get -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x93f5a49f ib_umem_find_best_pgsz -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x98cf1cc7 ib_umem_odp_release -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa004ded4 uverbs_copy_to -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa05655d4 ib_umem_get_peer -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa85b367e flow_resources_add -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xafa49f29 uverbs_get_flags32 -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb4dea829 ib_umem_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x688aaa4c uverbs_idr_class +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x72c48b34 _uverbs_get_const_signed +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x82c7a64f ib_umem_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x928804b3 ib_umem_odp_unmap_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x96a4280b uverbs_copy_to_struct_or_zero +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x9a910b7a ib_umem_get_peer +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x9f1eb816 uverbs_finalize_uobj_create +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xade1ab9d ib_copy_qp_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xaf90e71b uverbs_uobject_put EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xbde5c050 ib_unregister_peer_memory_client -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc3f19c16 _uverbs_alloc -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc60b4447 uverbs_destroy_def_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc81e780e uverbs_fd_class -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xcec94e7c uverbs_uobject_put -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe2431ca9 _uverbs_get_const_signed -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe734823b uverbs_finalize_uobj_create -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xea6ae178 ib_umem_copy_from -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf9c9ae9b uverbs_copy_to_struct_or_zero -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xfa42299a ib_uverbs_get_ucontext_file -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xfda48d00 flow_resources_alloc -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x5b065377 iw_cm_disconnect -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x9bae5552 iw_create_cm_id -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xa3de754a iw_destroy_cm_id -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xa523c219 iw_cm_accept -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xa6a6de54 iw_cm_reject -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xcc7032bb iw_cm_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd02c9316 iw_cm_connect +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc2954aab ib_umem_dmabuf_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc7e2acd3 uverbs_fd_class +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd37dacf4 uverbs_get_flags32 +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd3f2c960 uverbs_copy_to +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd8b9739b ib_umem_activate_invalidation_notifier +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xdc5ea98f uverbs_get_flags64 +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xecaf1b20 ib_copy_ah_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf234036e ib_uverbs_get_ucontext_file +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf47f5b56 ib_uverbs_flow_resources_free +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xfcc84f2f ib_umem_dmabuf_map_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xffc3fb99 flow_resources_alloc +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x2a72391e iw_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x3d557b06 iw_cm_connect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x57a9688a iw_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x57e64880 iw_cm_accept +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x5990f39a iw_cm_disconnect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x64d435d7 iw_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x7b8846ba iw_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd3096cae iw_cm_reject EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf3df871f iwcm_reject_msg -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf3e4b035 iw_cm_listen -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x09bbc4d8 rdma_listen -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1ffd8400 __rdma_create_kernel_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1ffdc603 rdma_res_to_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x23a20ee6 rdma_bind_addr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x23b7bb8a rdma_destroy_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2444f5cc rdma_consumer_reject_data -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3e937fae rdma_reject_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x41320b66 rdma_join_multicast -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5a64985c rdma_get_service_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5b6cccbe rdma_iw_cm_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x733b0224 rdma_destroy_qp -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x77f0823f rdma_lock_handler -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7a87a216 rdma_set_ib_path -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7a8ef6a0 rdma_leave_multicast -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7ad3d4d5 rdma_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x83d1093d rdma_resolve_route -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x896a91b7 rdma_set_min_rnr_timer -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x89a01f4d rdma_set_service_type -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8bac783a rdma_accept -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8ea0ddfd rdma_disconnect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x01d43d9a rdma_create_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0964c9d1 rdma_consumer_reject_data +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0bb08815 rdma_connect_ece +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x13feab51 rdma_connect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x177758e1 rdma_set_ib_path +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1de53705 rdma_read_gids +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1f0ee1a6 rdma_connect_locked +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x28848d25 rdma_reject_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2aaa1c35 rdma_create_user_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3e67edc3 rdma_accept +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x40f6bdb1 __rdma_create_kernel_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x43a7b215 rdma_set_min_rnr_timer +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x593b4796 rdma_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5f30c467 rdma_accept_ece +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x692ef453 rdma_disconnect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6d511414 rdma_resolve_route +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x711632a5 rdma_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8256cd5a rdma_reject +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x82b0e956 rdma_unlock_handler +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x82bd6cb2 rdma_resolve_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x86c2b597 rdma_get_service_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8735af52 rdma_set_ack_timeout +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x895cf46e rdma_leave_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8ce6511f rdma_set_reuseaddr EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x920c3fa9 rdma_create_qp -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9bb9e06b rdma_connect -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa3ca5527 rdma_connect_ece -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa44970c3 rdma_reject -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xaf379e86 rdma_create_user_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb6f8c34c rdma_read_gids -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb7f1c2d2 rdma_set_reuseaddr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb86f58c8 rdma_set_ack_timeout -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb9d52265 rdma_set_afonly -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xbd7ac74e rdma_resolve_addr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xdb1936b8 rdma_unlock_handler -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe9535f41 rdma_accept_ece -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf8bed0e1 rdma_connect_locked -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf958421e rdma_notify -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x0fb21f43 rtrs_clt_close -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x13d50a2e rtrs_clt_open -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x277a0483 rtrs_clt_get_permit -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x3d239cf5 rtrs_clt_request -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x423c01b8 rtrs_clt_put_permit -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x9047f154 rtrs_clt_rdma_cq_direct -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xc82708f5 rtrs_clt_query -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x2387c0bc rtrs_rdma_dev_pd_deinit +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x90e94095 rdma_res_to_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x97307169 rdma_lock_handler +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9df6295f rdma_set_service_type +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb27a0dd3 rdma_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xcc1aac29 rdma_listen +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd19c5627 rdma_bind_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xded1ae34 rdma_set_afonly +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe0541aec rdma_notify +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe635d3fb rdma_iw_cm_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf205f422 rdma_destroy_id +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x09372ec7 rtrs_clt_get_permit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x1cf53245 rtrs_clt_rdma_cq_direct +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x24054aba rtrs_clt_open +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x3607d6d3 rtrs_clt_put_permit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x8ade81cc rtrs_clt_request +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x8b86eec9 rtrs_clt_query +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xfa988e61 rtrs_clt_close +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x01a32f15 rtrs_ib_dev_put +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x03ddc09f 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 0x57000175 rtrs_ib_dev_put -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x58fab445 rtrs_ib_dev_find_or_add EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x5b01e41d sockaddr_to_str +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x8437cd3a rtrs_rdma_dev_pd_init EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x887302f3 rtrs_addr_to_sockaddr -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xe0762fdb rtrs_rdma_dev_pd_init -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x01e95a8f rtrs_srv_resp_rdma -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x28e0d95d rtrs_srv_get_sess_name -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x2b4fe042 rtrs_srv_close -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x3105bbcf rtrs_srv_get_queue_depth -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x543af8c0 rtrs_srv_open -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xe0a83c40 rtrs_srv_set_sess_priv -EXPORT_SYMBOL drivers/input/gameport/gameport 0x02cf9964 gameport_close -EXPORT_SYMBOL drivers/input/gameport/gameport 0x036cff67 gameport_stop_polling -EXPORT_SYMBOL drivers/input/gameport/gameport 0x2ff5d547 gameport_start_polling -EXPORT_SYMBOL drivers/input/gameport/gameport 0x40e1ab13 gameport_unregister_port -EXPORT_SYMBOL drivers/input/gameport/gameport 0x58e07df8 gameport_set_phys -EXPORT_SYMBOL drivers/input/gameport/gameport 0x6135288e gameport_open -EXPORT_SYMBOL drivers/input/gameport/gameport 0x98047e9e __gameport_register_port -EXPORT_SYMBOL drivers/input/gameport/gameport 0xcaeafe13 gameport_unregister_driver -EXPORT_SYMBOL drivers/input/gameport/gameport 0xdb930163 __gameport_register_driver -EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x9ddfc22c iforce_init_device -EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0xa66b68e3 iforce_send_packet -EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0xf2ed8c85 iforce_process_packet -EXPORT_SYMBOL drivers/input/matrix-keymap 0xcc80102f matrix_keypad_build_keymap -EXPORT_SYMBOL drivers/input/misc/ad714x 0x0d688da6 ad714x_probe -EXPORT_SYMBOL drivers/input/misc/ad714x 0x5c197a01 ad714x_enable -EXPORT_SYMBOL drivers/input/misc/ad714x 0xa0fc8201 ad714x_disable -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x87b77810 cma3000_init +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x8ee50018 rtrs_rdma_dev_pd_deinit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x638b5397 rtrs_srv_get_queue_depth +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x74de0562 rtrs_srv_resp_rdma +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x9668f46d rtrs_srv_set_sess_priv +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xabf202c9 rtrs_srv_close +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xac480f7e rtrs_srv_open +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xb96cb4a7 rtrs_srv_get_sess_name +EXPORT_SYMBOL drivers/input/gameport/gameport 0x0e15fd0d __gameport_register_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0x2d805644 gameport_stop_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0x4dfe22bd gameport_close +EXPORT_SYMBOL drivers/input/gameport/gameport 0x59d6fd3b gameport_open +EXPORT_SYMBOL drivers/input/gameport/gameport 0x59ed783e gameport_unregister_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0x626f6b6d gameport_unregister_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0x72f81c6f gameport_start_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0x7ec820e9 __gameport_register_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0xc3ac197c gameport_set_phys +EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x13519d05 iforce_send_packet +EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0xc9e195e0 iforce_init_device +EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0xfa619743 iforce_process_packet +EXPORT_SYMBOL drivers/input/matrix-keymap 0x36eb0154 matrix_keypad_build_keymap +EXPORT_SYMBOL drivers/input/misc/ad714x 0x03396ef5 ad714x_disable +EXPORT_SYMBOL drivers/input/misc/ad714x 0x9836aec9 ad714x_probe +EXPORT_SYMBOL drivers/input/misc/ad714x 0xd67c1431 ad714x_enable +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x3123ec5b cma3000_init EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x892d76b2 cma3000_resume EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x89d9444e cma3000_exit EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0xca3f100a cma3000_suspend -EXPORT_SYMBOL drivers/input/rmi4/rmi_core 0x1c36f35d rmi_unregister_transport_device -EXPORT_SYMBOL drivers/input/sparse-keymap 0x078c6d92 sparse_keymap_report_entry -EXPORT_SYMBOL drivers/input/sparse-keymap 0x27255c48 sparse_keymap_entry_from_keycode -EXPORT_SYMBOL drivers/input/sparse-keymap 0x920a6f69 sparse_keymap_entry_from_scancode -EXPORT_SYMBOL drivers/input/sparse-keymap 0xbfe49dca sparse_keymap_setup -EXPORT_SYMBOL drivers/input/sparse-keymap 0xf6d686c3 sparse_keymap_report_event -EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x7c5f9500 ad7879_pm_ops -EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x81b75132 ad7879_probe -EXPORT_SYMBOL drivers/interconnect/qcom/icc-smd-rpm 0x311ecf9b qnoc_probe -EXPORT_SYMBOL drivers/interconnect/qcom/icc-smd-rpm 0xd80d01f8 qnoc_remove -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x256f6b4b capi_ctr_down -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2facc7d9 capi_ctr_handle_message -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x52a6a0cd attach_capi_ctr -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x8a321078 detach_capi_ctr -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xfa9d2c16 capi_ctr_ready +EXPORT_SYMBOL drivers/input/rmi4/rmi_core 0xc6974be0 rmi_unregister_transport_device +EXPORT_SYMBOL drivers/input/sparse-keymap 0x315de51a sparse_keymap_report_event +EXPORT_SYMBOL drivers/input/sparse-keymap 0x325fab94 sparse_keymap_entry_from_keycode +EXPORT_SYMBOL drivers/input/sparse-keymap 0xb046eac2 sparse_keymap_entry_from_scancode +EXPORT_SYMBOL drivers/input/sparse-keymap 0xbc5608b8 sparse_keymap_report_entry +EXPORT_SYMBOL drivers/input/sparse-keymap 0xf92d088e sparse_keymap_setup +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x7a5386a7 ad7879_probe +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0xd22dc456 ad7879_pm_ops +EXPORT_SYMBOL drivers/interconnect/qcom/icc-smd-rpm 0x17aef430 qnoc_remove +EXPORT_SYMBOL drivers/interconnect/qcom/icc-smd-rpm 0xbbda26b6 qnoc_probe +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2b6a1665 detach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x33f7ae9f capi_ctr_handle_message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x3c722028 capi_ctr_ready +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xd93ea7e3 capi_ctr_down +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe8d9c0d8 attach_capi_ctr EXPORT_SYMBOL drivers/isdn/hardware/mISDN/isdnhdlc 0x27c58fd5 isdnhdlc_decode EXPORT_SYMBOL drivers/isdn/hardware/mISDN/isdnhdlc 0x4644eea5 isdnhdlc_out_init EXPORT_SYMBOL drivers/isdn/hardware/mISDN/isdnhdlc 0x5b835a58 isdnhdlc_rcv_init EXPORT_SYMBOL drivers/isdn/hardware/mISDN/isdnhdlc 0xef4ee223 isdnhdlc_encode -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x07651f7d mISDNipac_irq -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x0c384646 mISDNisac_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x9a8d318a mISDNisac_irq -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xc6b0fd4b mISDNipac_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x4d00793c mISDNisar_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0xeec818ef mISDNisar_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x038a7457 mISDNipac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x4bd2e40e mISDNisac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xb82e1ff7 mISDNipac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xbfb9da07 mISDNisac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0xc8417846 mISDNisar_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0xce44208b mISDNisar_irq EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x03a68066 mISDN_FsmRestartTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1578fefb queue_ch_frame -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x19d6a97d get_next_dframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x100784cd recv_Dchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1fc85008 get_next_bframe 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 0x384fa740 recv_Bchannel_skb -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x48c1750c mISDN_freebchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x4f980a43 dchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x4d0959d4 create_l1 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x4d2a14a6 mISDN_register_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x4dfc6838 dchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x50a05d69 mISDN_unregister_device EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x50c2230c mISDN_FsmChangeState -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x528bd5d9 mISDN_register_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x51bf466c recv_Echannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x546f736d mISDN_initdchannel EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x588886a6 l1_event -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x5c2a77d7 mISDN_unregister_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x5e16fc68 mISDNDevName4ch EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6047df40 mISDN_FsmInitTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x66248d85 bchannel_get_rxbuf -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x71a1f85c recv_Dchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7a96d403 mISDN_ctrl_bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x888403bc recv_Dchannel_skb -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x90e615fe mISDN_unregister_Bprotocol -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x91d2335b recv_Echannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x97d95ce7 mISDN_register_Bprotocol -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x98d25409 get_next_bframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x72f38e36 mISDN_clear_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x745942ba queue_ch_frame +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x767edced mISDN_initbchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x803b9d4d mISDN_register_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x806829b5 mISDN_unregister_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x83288c47 recv_Bchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x83e3b7df recv_Bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8fdd68aa recv_Dchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x919b57da get_next_dframe EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9c928457 mISDN_FsmNew -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb05ac4c3 mISDNDevName4ch -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb3d23532 bchannel_senddata -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc0326db9 mISDN_freedchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xad1caec5 bchannel_senddata EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc3401729 mISDN_register_clock -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc493ba02 mISDN_initbchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc94bb296 mISDN_clear_bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xcc594323 create_l1 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc34b4df8 mISDN_freebchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd0aef50d mISDN_freedchannel EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd285995f mISDN_clock_get EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd5145151 mISDN_FsmEvent -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xdcbb4b66 mISDN_initdchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xdf86780f recv_Bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xda725dfe mISDN_ctrl_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xdf5fd442 bchannel_get_rxbuf EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe8f617eb mISDN_unregister_clock EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x01087af0 mISDN_dsp_element_unregister EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x93df9e4b dsp_audio_law_to_s32 EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xb07a21b8 dsp_audio_s16_to_law EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xb98308d8 mISDN_dsp_element_register EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0x54a12ec4 ti_lmu_common_set_ramp -EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0xb9b76f1c ti_lmu_common_get_ramp_params +EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0x60b7b90c ti_lmu_common_get_ramp_params +EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0xc6901f62 ti_lmu_common_get_brt_res EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0xced72aae ti_lmu_common_set_brightness -EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0xeba34d68 ti_lmu_common_get_brt_res -EXPORT_SYMBOL drivers/mailbox/mtk-cmdq-mailbox 0xe1c1c150 cmdq_get_shift_pa -EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0x0a22604b omap_mbox_enable_irq -EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0x6d78385b omap_mbox_disable_irq -EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0xea41b56b omap_mbox_request_channel -EXPORT_SYMBOL drivers/md/dm-log 0x42fa65d3 dm_dirty_log_destroy -EXPORT_SYMBOL drivers/md/dm-log 0x9028921f dm_dirty_log_type_unregister -EXPORT_SYMBOL drivers/md/dm-log 0x973edeef dm_dirty_log_create -EXPORT_SYMBOL drivers/md/dm-log 0xb1a5ef8f dm_dirty_log_type_register -EXPORT_SYMBOL drivers/md/dm-snapshot 0x5d7a5d2f dm_snap_cow -EXPORT_SYMBOL drivers/md/dm-snapshot 0x775c2e5d dm_exception_store_type_register -EXPORT_SYMBOL drivers/md/dm-snapshot 0x7aac3cf8 dm_exception_store_create -EXPORT_SYMBOL drivers/md/dm-snapshot 0x8184217d dm_exception_store_type_unregister -EXPORT_SYMBOL drivers/md/dm-snapshot 0x8dd570b5 dm_snap_origin -EXPORT_SYMBOL drivers/md/dm-snapshot 0xe314b2f3 dm_exception_store_destroy -EXPORT_SYMBOL drivers/md/raid456 0x047d4d04 raid5_set_cache_size -EXPORT_SYMBOL drivers/md/raid456 0x5f348adc r5c_journal_mode_set -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x0f6f292b flexcop_eeprom_check_mac_addr -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x1b8c6404 flexcop_sram_set_dest -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x55c3c151 flexcop_sram_ctrl -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x6d785fb9 flexcop_wan_set_speed -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x7673eba7 flexcop_pass_dmx_packets -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x785f512c flexcop_pid_feed_control -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x78ba3ac9 flexcop_dump_reg -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x8bbda6f3 flexcop_device_kmalloc -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xbde5d383 flexcop_device_initialize -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xe563e56a flexcop_device_kfree -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xf541c45c flexcop_i2c_request -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xf7c5d398 flexcop_pass_dmx_data -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xff62b5ce flexcop_device_exit -EXPORT_SYMBOL drivers/media/common/cx2341x 0x0670811c cx2341x_handler_set_50hz +EXPORT_SYMBOL drivers/mailbox/mtk-cmdq-mailbox 0xfe4eacb0 cmdq_get_shift_pa +EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0x02867afb omap_mbox_enable_irq +EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0x51d7747f omap_mbox_disable_irq +EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0xeefacb11 omap_mbox_request_channel +EXPORT_SYMBOL drivers/md/dm-log 0x0854595d dm_dirty_log_type_register +EXPORT_SYMBOL drivers/md/dm-log 0x0867a073 dm_dirty_log_create +EXPORT_SYMBOL drivers/md/dm-log 0x42941688 dm_dirty_log_type_unregister +EXPORT_SYMBOL drivers/md/dm-log 0x48b6509c dm_dirty_log_destroy +EXPORT_SYMBOL drivers/md/dm-snapshot 0x31a5f562 dm_exception_store_create +EXPORT_SYMBOL drivers/md/dm-snapshot 0x5177a3b4 dm_exception_store_type_unregister +EXPORT_SYMBOL drivers/md/dm-snapshot 0x543a318b dm_exception_store_destroy +EXPORT_SYMBOL drivers/md/dm-snapshot 0xa37dc9d5 dm_snap_origin +EXPORT_SYMBOL drivers/md/dm-snapshot 0xc9ea5181 dm_exception_store_type_register +EXPORT_SYMBOL drivers/md/dm-snapshot 0xd04ed687 dm_snap_cow +EXPORT_SYMBOL drivers/md/raid456 0x4a87777c raid5_set_cache_size +EXPORT_SYMBOL drivers/md/raid456 0x4ce8e95b r5c_journal_mode_set +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x3668204c flexcop_device_exit +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x43e96e37 flexcop_device_kfree +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x61c0f7be flexcop_pass_dmx_packets +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x711bcb0a flexcop_sram_ctrl +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x8a16c07e flexcop_dump_reg +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x8a5899c6 flexcop_pid_feed_control +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x9ec314ce flexcop_device_kmalloc +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xad6d18b5 flexcop_pass_dmx_data +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xb90ba6f2 flexcop_i2c_request +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xc449fcb5 flexcop_device_initialize +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xd4968225 flexcop_wan_set_speed +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xf1691777 flexcop_eeprom_check_mac_addr +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xf983c174 flexcop_sram_set_dest 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 0x455bef56 cx2341x_handler_init +EXPORT_SYMBOL drivers/media/common/cx2341x 0x393808ba cx2341x_handler_set_busy +EXPORT_SYMBOL drivers/media/common/cx2341x 0x3e566d93 cx2341x_handler_init EXPORT_SYMBOL drivers/media/common/cx2341x 0x55aa7c5f cx2341x_mpeg_ctrls -EXPORT_SYMBOL drivers/media/common/cx2341x 0x5cb8f030 cx2341x_handler_setup -EXPORT_SYMBOL drivers/media/common/cx2341x 0x5d4b8347 cx2341x_handler_set_busy EXPORT_SYMBOL drivers/media/common/cx2341x 0x7b4dd2cb cx2341x_fill_defaults +EXPORT_SYMBOL drivers/media/common/cx2341x 0x856bb4c9 cx2341x_handler_setup +EXPORT_SYMBOL drivers/media/common/cx2341x 0xb10cddd1 cx2341x_handler_set_50hz EXPORT_SYMBOL drivers/media/common/cx2341x 0xb2b9efb7 cx2341x_ext_ctrls 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 0x6eede401 cypress_load_firmware +EXPORT_SYMBOL drivers/media/common/cypress_firmware 0xf0184927 cypress_load_firmware EXPORT_SYMBOL drivers/media/common/ttpci-eeprom 0x693e74ba ttpci_eeprom_decode_mac -EXPORT_SYMBOL drivers/media/common/ttpci-eeprom 0x87d3c056 ttpci_eeprom_parse_mac +EXPORT_SYMBOL drivers/media/common/ttpci-eeprom 0xbee20a60 ttpci_eeprom_parse_mac EXPORT_SYMBOL drivers/media/common/tveeprom 0x0dbf0296 tveeprom_hauppauge_analog -EXPORT_SYMBOL drivers/media/common/tveeprom 0xfe97b063 tveeprom_read -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x02fb2c13 vb2_verify_memory_type +EXPORT_SYMBOL drivers/media/common/tveeprom 0x9ce101da 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 0x97634ed1 vb2_buffer_in_use EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0xc2d9e090 get_vaddr_frames 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 0xf38bf2c8 vb2_buffer_in_use -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x169485a7 vb2_dvb_unregister_bus -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x2b4565ba vb2_dvb_dealloc_frontends -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x46e46d08 vb2_dvb_register_bus -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x65d4c013 vb2_dvb_get_frontend -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xa644e051 vb2_dvb_alloc_frontend -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xc809ece1 vb2_dvb_find_frontend +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0xf69b785a vb2_verify_memory_type +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x1f557c98 vb2_dvb_find_frontend +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x684f0391 vb2_dvb_register_bus +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xd788ebe0 vb2_dvb_alloc_frontend +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xe0ccf861 vb2_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xec72359c vb2_dvb_get_frontend +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xf7ebfa80 vb2_dvb_unregister_bus EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-memops 0xa21fa765 vb2_create_framevec EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-memops 0xccd197c7 vb2_destroy_framevec -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-v4l2 0xb70c246d vb2_querybuf -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x058c0fcf dvb_register_device -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x06a68eb4 dvb_free_device +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-v4l2 0xca403e2b vb2_querybuf +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x070f31d0 dvb_frontend_detach EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x08733236 intlog10 -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x09ba589d dvb_frontend_reinitialise -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x17055b29 dvb_dmxdev_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x176d59a7 dvb_ca_en50221_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x114ffbf1 dvb_ca_en50221_frda_irq EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x18acd31f dvb_dmx_swfilter_packets -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x233c1969 dvb_generic_ioctl -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x257c662e dvb_generic_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2ae02010 dvb_register_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x210160ad dvb_free_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2395ecf6 dvb_generic_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2aab60c9 dvb_ca_en50221_camready_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2bf5a01f dvb_ca_en50221_release EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2f5cdf80 dvb_ringbuffer_write +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x38fa31f8 dvb_unregister_frontend EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3b93d71a dvb_frontend_sleep_until -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4e0c19f2 dvb_frontend_suspend -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x51a22a1b dvb_ca_en50221_camchange_irq EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x54abe4ff dvb_dmx_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5d967904 dvb_unregister_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x58aceca3 dvb_register_adapter 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 0x682794e8 dvb_register_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6204b1b4 dvb_net_init EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6a9f708a dvb_dmx_swfilter_204 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8189463c dvb_unregister_device 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 0x91fa7c52 dvb_unregister_adapter EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9263a063 dvb_dmx_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9680bf8c dvb_unregister_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x95fcbad6 dvb_frontend_resume EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa4235824 dvb_dmx_swfilter_raw -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xabcfde13 dvb_generic_open -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb2684651 dvb_frontend_detach +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa5ec7fb1 dvb_remove_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xabebf035 dvb_register_frontend EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb3352dd2 dvb_ringbuffer_empty -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb92be97c dvb_ca_en50221_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb92642c2 dvb_dmxdev_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xbe4610c6 dvb_frontend_reinitialise EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc3f679f9 dvb_ringbuffer_write_user -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc55794c5 dvb_net_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd010785d dvb_dmxdev_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd986c6d6 dvb_frontend_resume -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xdf081708 dvb_ca_en50221_camready_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd63b2a91 dvb_net_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd8e6a80d dvb_generic_ioctl +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xdf9aba6b dvb_frontend_suspend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe07c0760 dvb_ca_en50221_camchange_irq EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe138ce6b dvb_ringbuffer_avail -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe5b72b04 dvb_unregister_adapter -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe77782cc dvb_ca_en50221_frda_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe28e17ae dvb_generic_open +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe6a2b5b4 dvb_register_device EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xebbc2d9b dvb_ringbuffer_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xeed3c006 dvb_net_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf2caa3bf dvb_remove_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf69bddb0 dvb_dmxdev_release EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfb09f39a dvb_ringbuffer_read +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfb2a9180 dvb_ca_en50221_init 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 0x8749b660 ascot2e_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/atbm8830 0xe9b22d45 atbm8830_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x2398510f au8522_led_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x31dbfe62 au8522_get_state -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x3d181409 au8522_writereg -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x489a791a au8522_sleep -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x56f6c3c0 au8522_analog_i2c_gate_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x9beab30e au8522_i2c_gate_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xd0b71c7a au8522_release_state -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xe432c368 au8522_init -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xe7aafa35 au8522_readreg -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_dig 0xa43b19d5 au8522_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/bcm3510 0xb80fd0a2 bcm3510_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx22700 0x702b510b cx22700_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx22702 0xcec2b033 cx22702_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24110 0x6b3b1b64 cx24110_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x85d60cf5 cx24113_agc_callback -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0xb759e3f1 cx24113_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24116 0xd2e6be51 cx24116_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24120 0xcc4377f0 cx24120_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x83c5ba83 cx24123_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x8661b718 cx24123_get_tuner_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2820r 0xb9baf95b cxd2820r_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x4341237a cxd2841er_attach_t_c -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x5682418b cxd2841er_attach_s -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2880/cxd2880 0x3b80f15a cxd2880_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x137df6de dib0070_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x16c258c8 dib0070_wbd_offset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x660581f7 dib0070_get_rf_output -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xe4daf429 dib0070_ctrl_agc_filter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xe6bc8f7e dib0070_set_rf_output -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x0d73b926 dib0090_gain_control -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x1fd36300 dib0090_get_current_gain -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x2f81028d dib0090_set_switch -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x38f5c691 dib0090_set_vga -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x45b7654e dib0090_register -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x4606d3c4 dib0090_fw_register -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x4df3e4c6 dib0090_update_tuning_table_7090 -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x5e7cc726 dib0090_dcc_freq -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x6a8c4aba dib0090_get_wbd_offset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x70d6e128 dib0090_get_tune_state -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x71ef0f8f dib0090_set_dc_servo -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x903cfa5b dib0090_pwm_gain_reset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xcabb7871 dib0090_set_tune_state -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xd4571b9c dib0090_update_rframp_7090 -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xeb166a83 dib0090_get_wbd_target -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mb 0x41ae48f1 dib3000mb_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x04a339b3 dib3000mc_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x232e9b90 dib3000mc_i2c_enumeration -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x554873e1 dib3000mc_pid_parse -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x5e991cb4 dib3000mc_get_tuner_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xb6997c64 dib3000mc_pid_control -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xfea3e218 dib3000mc_set_config -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x274911e2 dib7000m_pid_filter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x8a2921be dib7000m_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xc35c9232 dib7000m_pid_filter_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xf3eb6c87 dib7000m_get_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000p 0xdc6f4a13 dib7000p_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib8000 0x024c37bf dib8000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x03cef01e dib9000_get_tuner_interface -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x2ca6a3dc dib9000_fw_pid_filter_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x2e4ca324 dib9000_set_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x33b105e4 dib9000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x9240e786 dib9000_fw_set_component_bus_speed -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x97d4d770 dib9000_set_slave_frontend -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xafd4333e dib9000_set_gpio -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xcbd23aa3 dib9000_i2c_enumeration -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xd2a5f4f4 dib9000_get_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xdc239b78 dib9000_fw_pid_filter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xe82626ad dib9000_firmware_post_pll_init -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xee428018 dib9000_get_slave_frontend -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xfa55533a dib9000_get_component_bus_interface -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x1f9ff93d dibx000_get_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x64ed4a91 dibx000_init_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x66d82079 dibx000_exit_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x99a7f3aa dibx000_reset_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xfa432e4a dibx000_i2c_set_speed -EXPORT_SYMBOL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0xf1bb4553 drx39xxj_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/drxd 0xb6cb0018 drxd_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/drxk 0x0192f468 drxk_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ds3000 0x5cc81ca3 ds3000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dvb-pll 0x67c61b09 dvb_pll_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x0f6e55c7 dvb_dummy_fe_ofdm_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x246d2fde dvb_dummy_fe_qam_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0xa4a071af dvb_dummy_fe_qpsk_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ec100 0xfbad361b ec100_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0x483c0bda helene_attach_s -EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0x496cb9ca helene_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/horus3a 0x38dbdc6b horus3a_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/isl6405 0x728db3cd isl6405_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/isl6421 0x523eba2c isl6421_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/isl6423 0x05beb7b3 isl6423_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/itd1000 0xeae43a96 itd1000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ix2505v 0xbd75d66d ix2505v_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/l64781 0xa15dcb0b l64781_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lg2160 0x324caf9f lg2160_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3305 0x8542568d lgdt3305_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3306a 0x7f26a0a7 lgdt3306a_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt330x 0x8e4f0628 lgdt330x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gl5 0x29d34d87 lgs8gl5_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gxx 0x5d4998d3 lgs8gxx_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh25 0x249e9e93 lnbh25_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh29 0xfff2279b lnbh29_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x176672bf lnbp21_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x54ec5d79 lnbh24_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp22 0x3c6e9158 lnbp22_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x045c0c5c m88ds3103_get_agc_pwm -EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0xfb8e4637 m88ds3103_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/m88rs2000 0xc8b81a60 m88rs2000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a16 0x840b995a mb86a16_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a20s 0xe3c4632e mb86a20s_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mt312 0x903b755f mt312_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mt352 0xfa9f8b3b mt352_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/nxt200x 0x35d00df1 nxt200x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/nxt6000 0x7fb341df nxt6000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/or51132 0xd7637d2d or51132_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/or51211 0x87b345e3 or51211_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1409 0x36133201 s5h1409_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1411 0x66fcbf72 s5h1411_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x5f1fdb9f s5h1420_get_tuner_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0xff9afa0e s5h1420_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1432 0x684d92ae s5h1432_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s921 0xfc355251 s921_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/si21xx 0xc0297cb9 si21xx_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/sp887x 0x0fbeacfb sp887x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stb0899 0x3ccd5d78 stb0899_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stb6000 0x9daf67f0 stb6000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stb6100 0x8b96f1bd stb6100_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0288 0x89cadba4 stv0288_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0297 0xae900e2d stv0297_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0299 0x64975aa5 stv0299_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x11a75571 stv0367ddb_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x21574b4b stv0367ter_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0xa065b126 stv0367cab_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0900 0xa211e88b stv0900_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv090x 0x21a66687 stv090x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110 0xbc8541ed stv6110_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110x 0x10dfa110 stv6110x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10021 0x95580b68 tda10021_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10023 0x5874ae0a tda10023_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10048 0x04b79062 tda10048_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x9afe3128 tda10045_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0xa1732e5c tda10046_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10086 0x402ce05c tda10086_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda665x 0x712d76d2 tda665x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda8083 0x1f2aa54d tda8083_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda8261 0x368ffcc9 tda8261_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda826x 0xf1236feb tda826x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ts2020 0x830975fa ts2020_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tua6100 0x0f635714 tua6100_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ves1820 0xe355c1da ves1820_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ves1x93 0xf67b5869 ves1x93_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0x96b4689d zd1301_demod_get_dvb_frontend -EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0xef5725f5 zd1301_demod_get_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/zl10036 0x71510880 zl10036_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/zl10039 0x0fc57b9e zl10039_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/zl10353 0x460af309 zl10353_attach -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x37f78ea0 flexcop_dma_allocate -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x5430086d flexcop_dma_xfer_control -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x6353d6e0 flexcop_dma_free -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x6f607c1e flexcop_dma_control_size_irq -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x73f111d3 flexcop_dma_config_timer -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xe41a724f flexcop_dma_config -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xf583a277 flexcop_dma_control_timer_irq -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x16213bfd bt878_start -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x91204d68 bt878 +EXPORT_SYMBOL drivers/media/dvb-frontends/ascot2e 0x704d0e08 ascot2e_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/atbm8830 0x3fe93767 atbm8830_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x025c62f4 au8522_sleep +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x15036a05 au8522_writereg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x2c2b5f88 au8522_release_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x47cc7a5c au8522_readreg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x7e511b2a au8522_init +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x9d32004b au8522_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xb34a0972 au8522_get_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xc891e9d2 au8522_led_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xe45b0718 au8522_analog_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_dig 0x51b42cc7 au8522_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/bcm3510 0x4629770a bcm3510_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22700 0xa21e6530 cx22700_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22702 0xdda5f942 cx22702_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24110 0xb90e2f5f cx24110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x559184c3 cx24113_agc_callback +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x64a24dab cx24113_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24116 0x682db8e3 cx24116_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24120 0x741d7552 cx24120_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x8152d472 cx24123_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0xa5d1b909 cx24123_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2820r 0x1b676027 cxd2820r_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x3b025abc cxd2841er_attach_s +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x59232722 cxd2841er_attach_t_c +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2880/cxd2880 0x1cfa97c2 cxd2880_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x66ddf74e dib0070_set_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x7b4665c0 dib0070_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xb6b3e47d dib0070_ctrl_agc_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xb8b34cff dib0070_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xf7093c19 dib0070_get_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x062b5194 dib0090_update_rframp_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x14cd2aa7 dib0090_set_vga +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x1b4081a7 dib0090_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x3bc25e7a dib0090_set_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x5070b2ce dib0090_pwm_gain_reset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x7031edff dib0090_gain_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x7f9d5b29 dib0090_get_wbd_target +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x98b941ac dib0090_get_current_gain +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xa2fc8722 dib0090_dcc_freq +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xad86d38e dib0090_get_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xae32727f dib0090_update_tuning_table_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xafbbd035 dib0090_set_dc_servo +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xd44853d4 dib0090_get_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xe60c82c1 dib0090_set_switch +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xf9fe69e2 dib0090_fw_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mb 0xfe0b4d60 dib3000mb_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x3413477d dib3000mc_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x44facc16 dib3000mc_pid_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x84698804 dib3000mc_get_tuner_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x9f9e508d dib3000mc_pid_parse +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xe07974ea dib3000mc_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xf6454849 dib3000mc_set_config +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x010d211d dib7000m_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x29a556f5 dib7000m_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x77bd0473 dib7000m_pid_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x9482c3ae dib7000m_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000p 0x3fd63b88 dib7000p_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib8000 0xb989cc0b dib8000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x00468d30 dib9000_set_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x022cf276 dib9000_fw_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x18521793 dib9000_firmware_post_pll_init +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x23551ff0 dib9000_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x41bba173 dib9000_fw_pid_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x45161c52 dib9000_fw_set_component_bus_speed +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x45f5d2de dib9000_set_slave_frontend +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x56e820a7 dib9000_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x6a793351 dib9000_get_component_bus_interface +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x7a44fa66 dib9000_get_tuner_interface +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x84a9da3c dib9000_set_gpio +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xd25d596a dib9000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xd9cc848a dib9000_get_slave_frontend +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x14018690 dibx000_get_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x30efa3d2 dibx000_i2c_set_speed +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x806818c2 dibx000_exit_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x96e840d4 dibx000_reset_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xcbc7a2e0 dibx000_init_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0x7184a788 drx39xxj_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxd 0x5c1b236f drxd_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxk 0x80fd1307 drxk_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ds3000 0xbda2df79 ds3000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb-pll 0xdb94b5f7 dvb_pll_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x0b97fbb1 dvb_dummy_fe_qpsk_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x19fc7d77 dvb_dummy_fe_qam_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0xa059dfd9 dvb_dummy_fe_ofdm_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ec100 0xb662afd8 ec100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0x9901ab93 helene_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0xd0fc4ce2 helene_attach_s +EXPORT_SYMBOL drivers/media/dvb-frontends/horus3a 0xcfdf6403 horus3a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6405 0x07a4e32a isl6405_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6421 0x08873799 isl6421_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6423 0x5f8faea7 isl6423_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/itd1000 0xe1351d8e itd1000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ix2505v 0xe90dceb7 ix2505v_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/l64781 0xc85929a9 l64781_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lg2160 0x9821b513 lg2160_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3305 0x32bb8369 lgdt3305_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3306a 0x7befada9 lgdt3306a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt330x 0x40f69794 lgdt330x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gl5 0xfbe679bc lgs8gl5_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gxx 0x12ee3ef1 lgs8gxx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh25 0x7cd0746c lnbh25_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh29 0xd954c9a6 lnbh29_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x171f26bb lnbh24_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x45f3e645 lnbp21_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp22 0x39eb95f9 lnbp22_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x4872a9e4 m88ds3103_get_agc_pwm +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0xc3246df3 m88ds3103_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88rs2000 0xad12a1a2 m88rs2000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a16 0x7cd6883a mb86a16_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a20s 0x9c1af21e mb86a20s_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt312 0xc8759fa0 mt312_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt352 0xeec0c966 mt352_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt200x 0x510b06fb nxt200x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt6000 0xfc6b32cb nxt6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51132 0xb3b87627 or51132_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51211 0xce748d45 or51211_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1409 0xe62fff27 s5h1409_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1411 0xa617ad0a s5h1411_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x582cb8f5 s5h1420_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x5c8385c0 s5h1420_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1432 0xa8a680d6 s5h1432_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s921 0x033083de s921_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/si21xx 0xd34e35c8 si21xx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/sp887x 0xd1607aa8 sp887x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb0899 0x29681b9c stb0899_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6000 0xa93a32ec stb6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6100 0x4705420c stb6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0288 0x93a8dffc stv0288_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0297 0x1e33c434 stv0297_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0299 0x438d2bff stv0299_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x58b8a046 stv0367cab_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0xd98a5a2b stv0367ter_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0xe97a4411 stv0367ddb_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0900 0x4f8d1c9a stv0900_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv090x 0x900dc6d2 stv090x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110 0xcfd77a97 stv6110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110x 0xbbffe807 stv6110x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10021 0xac7ca98c tda10021_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10023 0x3dde15c8 tda10023_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10048 0xd8bc11be tda10048_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x49194812 tda10046_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x72945766 tda10045_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10086 0x1454f886 tda10086_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda665x 0xf6f3262d tda665x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8083 0xcd1f9176 tda8083_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8261 0x3bc482f4 tda8261_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda826x 0xdc38b16a tda826x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ts2020 0x02669295 ts2020_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tua6100 0x3bf60208 tua6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1820 0x5f8323e9 ves1820_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1x93 0x89a5c959 ves1x93_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0x051eb9b4 zd1301_demod_get_dvb_frontend +EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0x47020215 zd1301_demod_get_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10036 0xc0e09bfa zl10036_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10039 0xf4499bf7 zl10039_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10353 0x6b7a7656 zl10353_attach +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x62c85cb0 flexcop_dma_control_timer_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x8e44b78b flexcop_dma_allocate +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x94df9426 flexcop_dma_xfer_control +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xa5a28db2 flexcop_dma_free +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xb4c4fa9d flexcop_dma_config +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xb8e63fb0 flexcop_dma_control_size_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xe9805b55 flexcop_dma_config_timer +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x2ddfd33b bt878_device_control +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x53d15884 bt878_start +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x5ffa63e6 bt878 EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xd5d0bdef bt878_num -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xe006486a bt878_device_control -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xfa247d27 bt878_stop +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xd83cbd90 bt878_stop EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x11dc4b6d bttv_gpio_enable -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x5964f143 bttv_sub_unregister -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x59891398 bttv_sub_register -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x64bcf251 bttv_get_pcidev +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x36b01f92 bttv_get_pcidev +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x75f8f3b6 bttv_sub_unregister EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x8ecf4acc bttv_write_gpio +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xad8eda6f bttv_sub_register EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xbcf2d2fb bttv_read_gpio -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x1539e5b4 dst_wait_dst_ready -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x1d42c068 dst_error_bailout +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x177c25ba dst_error_recovery +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x25d36553 dst_attach +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x36edf649 dst_error_bailout +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x3a5e1aa1 write_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x3e1f8d6f dst_pio_disable EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x43a983fd dst_check_sum -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x6d2c9e3c dst_attach -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x6d66ae07 read_dst -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x81ee692c write_dst -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x9c75dd86 dst_pio_disable -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xc9178f88 rdc_reset_state -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xd3b5cb78 dst_comm_init -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xdd8a8491 dst_error_recovery -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst_ca 0xc2717e3e dst_ca_attach +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x7ef04925 dst_wait_dst_ready +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x814d2198 read_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xa0f6df5b dst_comm_init +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xba3a9bad rdc_reset_state +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst_ca 0xbaba1e53 dst_ca_attach +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x11acffbf cx18_stop_v4l2_encode_stream EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2cdea06d cx18_reset_ir_gpio -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x92e952ee cx18_start_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xb9b8fa6f cx18_claim_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xd1dfcb95 cx18_ext_init -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xe9235571 cx18_stop_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xf3d53ecd cx18_release_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x61cfe90d cx18_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xae71c2b9 cx18_release_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xe0aec3c0 cx18_claim_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xecbecdc7 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 0x0c2c0341 cx25821_dev_get -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x1f35b3bf cx25821_sram_channel_setup_audio -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x34df5f89 cx25821_risc_databuffer_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x0de404ce cx25821_riscmem_alloc +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x34b18931 cx25821_dev_unregister +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x37b89957 cx25821_dev_get +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x3aa64a26 cx25821_sram_channel_setup_audio EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x44b517f5 cx25821_print_irqbits -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x6bf5f67e cx25821_sram_channel_dump_audio -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x6c9e0a02 cx25821_set_gpiopin_direction -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x8a1d17f2 cx25821_dev_unregister -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xbd4b3767 cx25821_riscmem_alloc +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x80547fb9 cx25821_set_gpiopin_direction +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xcf466c15 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 0x6308a025 vp3054_i2c_probe -EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x9f4bad3b vp3054_i2c_remove -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x2ff3f89c cx88_querycap -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x39947479 cx88_set_freq -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x62a623a2 cx88_enum_input -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xc54e87b2 cx88_video_mux -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x496285ed cx8802_buf_prepare -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x5fecf900 cx8802_cancel_buffers -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x7969a4ef cx8802_get_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x7e5e3443 cx8802_start_dma -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xd167ae02 cx8802_buf_queue -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xde809280 cx8802_unregister_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xe07d1a74 cx8802_register_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x0f9e1058 cx88_core_put -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x11e96e4b cx88_risc_buffer -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x3c524ba8 cx88_sram_channel_setup -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x3e61d0fc cx88_core_irq -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x57eeb856 cx88_sram_channel_dump -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x5c6b4d3b cx88_core_get -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x5d9c80ae cx88_ir_stop +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xf8d2ebd3 cx25821_risc_databuffer_audio +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0xcbfb3ada vp3054_i2c_remove +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0xd4732cf2 vp3054_i2c_probe +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x27bb0930 cx88_set_freq +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x4b81b490 cx88_video_mux +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x8a37f392 cx88_enum_input +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xa8116c89 cx88_querycap +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x1ca90f0e cx8802_unregister_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x27dc2928 cx8802_start_dma +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x66cad59d cx8802_buf_prepare +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x8553df59 cx8802_get_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xc6b74d21 cx8802_buf_queue +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xd1e4e2d9 cx8802_register_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xd2319e88 cx8802_cancel_buffers +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x056cbb54 cx88_ir_start +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x073d7049 cx88_core_put +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x0f2a70bd cx88_wakeup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x43e5f256 cx88_set_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x51a6c70a cx88_get_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x5c555b89 cx88_vdev_init 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 0x754ba028 cx88_wakeup -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x799f2e37 cx88_ir_start -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7bb2c272 cx88_reset +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x67e4283b cx88_core_irq +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6faaa2cd cx88_ir_stop +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x865879ad cx88_reset EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x8d88137a cx88_sram_channels -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x8e2c50a7 cx88_dsp_detect_stereo_sap EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x904b8696 cx88_audio_thread -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x9203e809 cx88_risc_databuffer -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x929efbd6 cx88_shutdown -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x93697537 cx88_set_tvnorm -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xc05643bf cx88_set_stereo -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xc38de169 cx88_newstation -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xc446101e cx88_set_tvaudio -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xc9acae07 cx88_set_scale -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xcf45d34b cx88_vdev_init -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xdb9ecbee cx88_get_stereo -EXPORT_SYMBOL drivers/media/pci/ddbridge/ddbridge-dummy-fe 0x68af47e0 ddbridge_dummy_fe_qam_attach +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x9f50b7db cx88_dsp_detect_stereo_sap +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xa3f10f06 cx88_shutdown +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xbe29fc45 cx88_risc_databuffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xd0a17436 cx88_sram_channel_setup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xd494e37f cx88_newstation +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xd94b9c5f cx88_set_tvaudio +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xe4188aa9 cx88_set_tvnorm +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xf2e88291 cx88_set_scale +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xf82465ac cx88_sram_channel_dump +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xf8e389ff cx88_risc_buffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xfd352aad cx88_core_get +EXPORT_SYMBOL drivers/media/pci/ddbridge/ddbridge-dummy-fe 0xe2a5e757 ddbridge_dummy_fe_qam_attach EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x14f67530 ivtv_debug -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x18d1440a ivtv_vapi -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x19e98f80 ivtv_api -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x406982b2 ivtv_udma_unmap -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x4307857d ivtv_stop_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x52f5d432 ivtv_set_irq_mask -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x54d978d6 ivtv_udma_setup -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x5504b316 ivtv_release_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x5e1327af ivtv_claim_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x719cb4c0 ivtv_udma_alloc -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x805f15f6 ivtv_vapi_result -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x94c0a38f ivtv_reset_ir_gpio -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xa76812f9 ivtv_firmware_check -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xa99b963f ivtv_start_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xabe21a46 ivtv_init_on_first_open -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xad657071 ivtv_clear_irq_mask -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xbdc968be ivtv_ext_init -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xf27fba5e ivtv_udma_prepare +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x2a324ae3 ivtv_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x2a9bc82a ivtv_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x2aa92d05 ivtv_firmware_check +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x3bef09b5 ivtv_init_on_first_open +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x41a7eea0 ivtv_udma_setup +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x5df52f38 ivtv_clear_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x8a3ef471 ivtv_vapi_result +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x8b74ff4b ivtv_udma_prepare +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xadd2862e ivtv_ext_init +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xb03edf02 ivtv_set_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xb44ad2b2 ivtv_release_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xcef16612 ivtv_api +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xdb6d3d12 ivtv_udma_alloc +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xdb6e2bbf ivtv_udma_unmap +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xf4fbbc79 ivtv_vapi +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xf6f6ff32 ivtv_claim_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xf707390e ivtv_stop_v4l2_encode_stream EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x04e83446 saa7134_tuner_callback -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x0579337c saa7134_set_gpio EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x1211df5d saa7134_devlist -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x291385b1 saa7134_set_dmabits -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x2c137f8b saa7134_dmasound_init -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x4ac248f6 saa7134_tvaudio_setmute -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x626bbebe saa7134_ts_register -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x712d1bba saa7134_pgtable_alloc +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x3116427e saa7134_pgtable_build +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x33fb6411 saa_dsp_writel +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x4a932435 saa7134_dmasound_exit +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x50762dd0 saa7134_set_dmabits +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x6ba78603 saa7134_ts_unregister EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x730c4be3 saa7134_boards -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x85985032 saa7134_pgtable_build +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x734a6e0b saa7134_dmasound_init +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x7568438f saa7134_ts_register +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x7d716e70 saa7134_tvaudio_setmute EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x8f1ad46b saa7134_devlist_lock -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xa4fb7e51 saa7134_pgtable_free -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xd7b8a41b saa7134_ts_unregister -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xf01b48d9 saa_dsp_writel -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xfc4e5b10 saa7134_dmasound_exit +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xb641a5b6 saa7134_set_gpio +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xe12c522c saa7134_pgtable_alloc +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xe322ed56 saa7134_pgtable_free EXPORT_SYMBOL drivers/media/platform/allegro-dvt/allegro 0x2c79d0f2 msg_type_name -EXPORT_SYMBOL drivers/media/radio/tea575x 0x1affcbc9 snd_tea575x_g_tuner -EXPORT_SYMBOL drivers/media/radio/tea575x 0x224f49bc snd_tea575x_exit -EXPORT_SYMBOL drivers/media/radio/tea575x 0x5f26b01a snd_tea575x_s_hw_freq_seek -EXPORT_SYMBOL drivers/media/radio/tea575x 0x60b60e7f snd_tea575x_set_freq -EXPORT_SYMBOL drivers/media/radio/tea575x 0x690d33b5 snd_tea575x_hw_init -EXPORT_SYMBOL drivers/media/radio/tea575x 0x800827be snd_tea575x_init -EXPORT_SYMBOL drivers/media/radio/tea575x 0xa99bd17a snd_tea575x_enum_freq_bands +EXPORT_SYMBOL drivers/media/radio/tea575x 0x2b0b0ce3 snd_tea575x_s_hw_freq_seek +EXPORT_SYMBOL drivers/media/radio/tea575x 0x47e06264 snd_tea575x_hw_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0x893c12b6 snd_tea575x_exit +EXPORT_SYMBOL drivers/media/radio/tea575x 0x93556c87 snd_tea575x_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0xa24ba964 snd_tea575x_set_freq +EXPORT_SYMBOL drivers/media/radio/tea575x 0xba6de6cc snd_tea575x_g_tuner +EXPORT_SYMBOL drivers/media/radio/tea575x 0xf07e9d43 snd_tea575x_enum_freq_bands EXPORT_SYMBOL drivers/media/rc/rc-core 0x2ad91f6e ir_raw_gen_pl +EXPORT_SYMBOL drivers/media/rc/rc-core 0x2f31a25a ir_raw_handler_register +EXPORT_SYMBOL drivers/media/rc/rc-core 0x44bab0fd ir_raw_handler_unregister EXPORT_SYMBOL drivers/media/rc/rc-core 0x7cf52901 ir_raw_gen_manchester -EXPORT_SYMBOL drivers/media/rc/rc-core 0x87f91cb1 ir_raw_handler_register EXPORT_SYMBOL drivers/media/rc/rc-core 0x9e12e343 ir_raw_gen_pd -EXPORT_SYMBOL drivers/media/rc/rc-core 0xab96102a ir_raw_handler_unregister EXPORT_SYMBOL drivers/media/rc/rc-core 0xb5516017 ir_raw_encode_carrier EXPORT_SYMBOL drivers/media/rc/rc-core 0xf446074f ir_raw_encode_scancode -EXPORT_SYMBOL drivers/media/tuners/fc0011 0xd9c98ea9 fc0011_attach -EXPORT_SYMBOL drivers/media/tuners/fc0012 0x1c11a53a fc0012_attach -EXPORT_SYMBOL drivers/media/tuners/fc0013 0x449bca03 fc0013_rc_cal_reset -EXPORT_SYMBOL drivers/media/tuners/fc0013 0xafe70acc fc0013_rc_cal_add -EXPORT_SYMBOL drivers/media/tuners/fc0013 0xd118f460 fc0013_attach -EXPORT_SYMBOL drivers/media/tuners/max2165 0xe345898c max2165_attach -EXPORT_SYMBOL drivers/media/tuners/mc44s803 0x27a59089 mc44s803_attach -EXPORT_SYMBOL drivers/media/tuners/mt2060 0x99eaebcc mt2060_attach -EXPORT_SYMBOL drivers/media/tuners/mt2131 0x847679c4 mt2131_attach -EXPORT_SYMBOL drivers/media/tuners/mt2266 0x6be863ec mt2266_attach -EXPORT_SYMBOL drivers/media/tuners/mxl5005s 0x3fa50d29 mxl5005s_attach -EXPORT_SYMBOL drivers/media/tuners/qt1010 0xc6fe30e8 qt1010_attach -EXPORT_SYMBOL drivers/media/tuners/tda18218 0xf9ae8e9f tda18218_attach +EXPORT_SYMBOL drivers/media/tuners/fc0011 0x7e978c6a fc0011_attach +EXPORT_SYMBOL drivers/media/tuners/fc0012 0x2f3fcd6d fc0012_attach +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x5e03a7ef fc0013_rc_cal_reset +EXPORT_SYMBOL drivers/media/tuners/fc0013 0xb75669df fc0013_rc_cal_add +EXPORT_SYMBOL drivers/media/tuners/fc0013 0xbc25a1b9 fc0013_attach +EXPORT_SYMBOL drivers/media/tuners/max2165 0x57d902c0 max2165_attach +EXPORT_SYMBOL drivers/media/tuners/mc44s803 0x01037eb4 mc44s803_attach +EXPORT_SYMBOL drivers/media/tuners/mt2060 0x1287a888 mt2060_attach +EXPORT_SYMBOL drivers/media/tuners/mt2131 0x0f1b3a80 mt2131_attach +EXPORT_SYMBOL drivers/media/tuners/mt2266 0x937f8b62 mt2266_attach +EXPORT_SYMBOL drivers/media/tuners/mxl5005s 0xbecaea46 mxl5005s_attach +EXPORT_SYMBOL drivers/media/tuners/qt1010 0x3e69d866 qt1010_attach +EXPORT_SYMBOL drivers/media/tuners/tda18218 0x8afcb5e5 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/tuner-xc2028 0x524465bb xc2028_attach -EXPORT_SYMBOL drivers/media/tuners/xc4000 0xecda0699 xc4000_attach -EXPORT_SYMBOL drivers/media/tuners/xc5000 0xaac4dfc9 xc5000_attach -EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x0da70f0d cx231xx_register_extension -EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0xe2313a9d cx231xx_unregister_extension -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x047e645b dvb_usbv2_resume -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x06d57e61 dvb_usbv2_generic_rw_locked -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x2117f8fd dvb_usbv2_generic_rw -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x4a425e1f dvb_usbv2_probe -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x562511f3 dvb_usbv2_disconnect -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x6c8208cc dvb_usbv2_reset_resume -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x823388d8 dvb_usbv2_suspend -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xd6c739dc dvb_usbv2_generic_write_locked -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xdc0f11f1 dvb_usbv2_generic_write -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x078215d2 dvb_usb_generic_write -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x09b0bd98 usb_cypress_load_firmware -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x3453e7c7 dvb_usb_nec_rc_key_to_event -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x5cf433ce dvb_usb_device_init +EXPORT_SYMBOL drivers/media/tuners/tuner-xc2028 0x89849085 xc2028_attach +EXPORT_SYMBOL drivers/media/tuners/xc4000 0x2c3114e1 xc4000_attach +EXPORT_SYMBOL drivers/media/tuners/xc5000 0x09dda007 xc5000_attach +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x23ac7d85 cx231xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0xacab4f96 cx231xx_register_extension +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x12d244d9 dvb_usbv2_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x238d7e5b dvb_usbv2_reset_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x2b2e8c12 dvb_usbv2_probe +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x3d300869 dvb_usbv2_suspend +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x575ecdaa dvb_usbv2_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x978cfade dvb_usbv2_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x9f5b0e68 dvb_usbv2_disconnect +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xfbfc8b7c dvb_usbv2_generic_rw_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xfd33f8d0 dvb_usbv2_generic_write_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x12885948 dvb_usb_device_init +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x4368ad63 usb_cypress_load_firmware +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x6043e919 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 0xa1bcb1e3 dvb_usb_device_exit -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xaedbad04 dvb_usb_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x8d9c4039 dvb_usb_device_exit +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xa565845d dvb_usb_nec_rc_key_to_event +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xc7a8f339 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 0x3865a1bb af9005_rc_decode +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x74bb5f49 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 0x27d3416b dibusb_streaming_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x3289d3d2 dibusb_pid_filter_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x3e83292c dibusb_pid_filter -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x4b7849a8 dibusb2_0_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x35c17d29 dibusb_i2c_algo +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x673a6474 dibusb2_0_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x6b5b8d54 dibusb_power_ctrl EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x93822ecb rc_map_dibusb_table -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xb556df0a dibusb_read_eeprom_byte -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xba4ac07c dibusb_i2c_algo -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xbcc3be52 dibusb_rc_query -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xc5adaa9f dibusb_power_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xde5a8935 dibusb2_0_streaming_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0x52f95acf dibusb_dib3000mc_tuner_attach -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0xa5e8a486 dibusb_dib3000mc_frontend_attach -EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x2448e713 em28xx_unregister_extension -EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x6062c5c3 em28xx_register_extension -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x08294828 go7007_parse_video_stream -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x3c1c1418 go7007_boot_encoder -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x4a40be4a go7007_alloc -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x5c71a9b2 go7007_read_interrupt -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x9c2364f8 go7007_read_addr -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x9cf92a35 go7007_snd_init -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xa04b3022 go7007_register_encoder -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xe4989069 go7007_snd_remove -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xedd5e509 go7007_update_board -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x0091016c gspca_disconnect -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x279f39d3 gspca_suspend -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x57b6adff gspca_frame_add -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x635e53c7 gspca_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xa3e645b8 dibusb_pid_filter +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xadd93c98 dibusb_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xb318ed71 dibusb_read_eeprom_byte +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xd38149db dibusb_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xd743f1fa dibusb2_0_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xdbee3414 dibusb_rc_query +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0x38b50a64 dibusb_dib3000mc_frontend_attach +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0xcdefe8c5 dibusb_dib3000mc_tuner_attach +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x085ea742 em28xx_register_extension +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0xded91c20 em28xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x00801b85 go7007_read_addr +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x03bf6c19 go7007_parse_video_stream +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x1c254781 go7007_snd_init +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x515eb98c go7007_read_interrupt +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x5d067dc0 go7007_boot_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x9e3da20f go7007_register_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xc4ec8144 go7007_snd_remove +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xd9cb4fe2 go7007_alloc +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xf14b087e go7007_update_board +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x3d7f3e98 gspca_suspend +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x47cc6a62 gspca_coarse_grained_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x68ff21ef gspca_resume +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x7335fecd gspca_dev_probe +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x8e8a2a26 gspca_disconnect EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9670af2c gspca_debug -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xce691f79 gspca_dev_probe2 -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xd761ff48 gspca_coarse_grained_expo_autogain -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xdb963f59 gspca_expo_autogain -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xe4ed7a87 gspca_dev_probe -EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x6c881256 tm6000_unregister_extension -EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0xa1748f1b tm6000_init_digital_mode -EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0xdccac62b tm6000_register_extension -EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x9718ed74 ttusbdecfe_dvbs_attach -EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0xbcdfecbe ttusbdecfe_dvbt_attach -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x131fa7b7 v4l2_async_notifier_register -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x18eb542c v4l2_async_unregister_subdev -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x385f579f v4l2_async_subdev_notifier_register -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x987da13a v4l2_async_notifier_unregister -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xcc4d064d v4l2_async_notifier_init -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xfc54c222 v4l2_async_register_subdev -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x058c927a v4l2_m2m_buf_done_and_job_finish -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x2824e187 v4l2_m2m_mmap -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x368beaee v4l2_m2m_job_finish +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xc29a73b3 gspca_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xdc3df7b4 gspca_dev_probe2 +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xe43c9ba6 gspca_frame_add +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x1e2fe7b8 tm6000_unregister_extension +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x402df14a tm6000_init_digital_mode +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0xb4f4405e tm6000_register_extension +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0xde33a1e2 ttusbdecfe_dvbs_attach +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0xf5f4a028 ttusbdecfe_dvbt_attach +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x2bf19749 v4l2_async_register_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x3565c61e v4l2_async_unregister_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x4661c4d8 v4l2_async_notifier_init +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x48421783 v4l2_async_notifier_unregister +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x640de9f1 v4l2_async_notifier_register +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x68d140ae v4l2_async_subdev_notifier_register +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x191e3133 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 0x9f719add v4l2_m2m_get_vq +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x7263e091 v4l2_m2m_buf_done_and_job_finish +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xa6aa1bca v4l2_m2m_get_vq +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xc6d6e608 v4l2_m2m_job_finish EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xf626dd03 v4l2_m2m_suspend -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x017de02d v4l2_ctrl_find -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x030e8e50 v4l2_ctrl_new_fwnode_properties +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x05bdf32c video_ioctl2 EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0614dd5a v4l2_video_std_frame_period +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x073b4d2f __v4l2_ctrl_s_ctrl_string EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x082737e8 v4l2_ctrl_merge -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x102930e7 v4l2_queryctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0897dd74 __video_register_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0fbbeda6 v4l2_ctrl_handler_init_class EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x123959a1 v4l2_type_names -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1247f01c v4l2_subdev_init -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x13fae0c5 v4l2_ctrl_handler_init_class EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x16244fe5 v4l2_prio_check -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x215a931e v4l2_ctrl_new_std_menu_items -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x22193504 v4l2_ctrl_g_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x17f73c45 v4l2_ctrl_new_fwnode_properties +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x199ba6d7 v4l2_try_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x22eca6ae video_unregister_device EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2342f1ae v4l2_prio_open -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x24c8cdaf __video_register_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x25c12d90 v4l2_g_ctrl EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x28b12cc9 v4l2_format_info -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2eae8e3c v4l2_ctrl_subdev_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x29e33b51 v4l2_querymenu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2bfdd283 __v4l2_ctrl_grab +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2e4004e0 v4l2_ctrl_handler_log_status 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 0x33664b80 __v4l2_ctrl_grab -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x389c5d5f v4l2_ctrl_new_custom +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x38ffef49 v4l2_ctrl_log_status EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3adbd595 v4l2_field_names -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3b4144aa v4l2_g_ctrl EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3bdd0f94 v4l2_prio_change -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3be85cbb video_device_release_empty -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3e140b58 v4l2_g_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x479b2c18 v4l2_ctrl_sub_ev_ops -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4996bbc3 v4l2_ctrl_radio_filter -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x51f177f8 v4l2_ctrl_new_std_compound -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5cfa5f86 v4l2_ctrl_notify -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5d06d3c9 v4l2_ctrl_subdev_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x60ab50ce v4l2_ctrl_request_complete -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x60c7a912 v4l2_s_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x63b01f58 __v4l2_ctrl_modify_range -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6bcd1d3a v4l2_ctrl_new_int_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6f3d09d7 v4l2_ctrl_add_handler -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x72a7b79b v4l2_ctrl_activate -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x72e47a3f v4l2_ctrl_new_std_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x73da57be v4l2_ctrl_poll -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x760e986b v4l2_subdev_call_wrappers -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7a94f7b2 v4l2_ctrl_handler_setup -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7d2cc4eb v4l2_s_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3d98fb51 v4l2_ctrl_handler_setup +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x422e3120 v4l2_ctrl_handler_free +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x494f6a82 v4l2_subdev_call_wrappers +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4c4ec32c v4l2_subdev_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4e852bfc v4l2_queryctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x50231511 v4l2_ctrl_request_setup +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5857fe45 v4l2_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6051662b v4l2_ctrl_new_std_menu_items +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6a7af518 v4l2_s_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6afbcdc5 v4l2_ctrl_request_complete +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x75311b30 v4l2_g_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x75a4b97e video_devdata +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x77d40136 video_device_release_empty +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x77d9c11d v4l2_ctrl_sub_ev_ops EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8106095a v4l2_prio_max -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x88fac9aa v4l2_ctrl_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x857df564 v4l2_ctrl_add_handler EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x89e3897d v4l2_ctrl_query_fill -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8b20a9df __v4l2_ctrl_s_ctrl_int64 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9d011704 v4l2_ctrl_subscribe_event -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa18e35e8 __v4l2_ctrl_s_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa44d5406 v4l2_ctrl_request_setup -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa9e9e04f video_device_release -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xafb890b9 v4l2_query_ext_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x937624b3 v4l2_ctrl_subdev_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x946ecb8b v4l2_ctrl_find +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9afe6dd5 v4l2_ctrl_poll +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa212d5dc __v4l2_ctrl_s_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa2ba60ab v4l2_ctrl_new_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xaa6c107b v4l2_ctrl_new_std_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xaf851dec v4l2_ctrl_radio_filter +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xafbf6da4 __v4l2_ctrl_modify_range EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb77b0159 v4l2_prio_init -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb8bf35f0 v4l2_ctrl_handler_log_status EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbc5671dc v4l_printk_ioctl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbd3c1047 video_ioctl2 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xca21b908 v4l2_ctrl_new_std +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbda8a200 video_device_release +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbebc8b49 v4l2_ctrl_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc1bd7602 video_device_alloc +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc1c314f3 v4l2_ctrl_new_std +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc476be0e __v4l2_ctrl_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc5fafe7d v4l2_ctrl_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcd46c5af v4l2_ctrl_new_std_compound EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcda04a5b v4l2_prio_close EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd16d9c01 v4l2_ctrl_get_int_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd1cee4e1 v4l2_ctrl_handler_free -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd7eab7ec __v4l2_ctrl_s_ctrl_string -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdc2fb0ac video_devdata +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd7d6b5d6 v4l2_ctrl_auto_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd96241a6 v4l2_ctrl_subdev_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdba93de6 v4l2_ctrl_activate EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdc7e0128 v4l2_ctrl_fill -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xde6f86fe v4l2_ctrl_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdf34bba9 video_unregister_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe18fef60 v4l2_ctrl_new_custom EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2b92059 v4l2_video_std_construct -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe4330c42 video_device_alloc -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe5096831 v4l2_querymenu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe6dfad57 v4l2_try_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe32e8605 v4l2_ctrl_g_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe504dd2a __v4l2_ctrl_s_ctrl_compound +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xeeb33642 v4l2_query_ext_ctrl EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf3251e7b v4l2_norm_to_name -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf4b6006c v4l2_ctrl_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf490cdef v4l2_ctrl_notify EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf50fecbc v4l2_ctrl_replace -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf6e8f21c __v4l2_ctrl_s_ctrl_compound -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfbbabc5f v4l2_ctrl_auto_cluster -EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0x55ba8e1e rpcif_sw_init -EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0x7f53c1dc rpcif_manual_xfer -EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0x83201eb0 rpcif_hw_init -EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0x86597417 rpcif_dirmap_read -EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0xa683e1ad rpcif_prepare -EXPORT_SYMBOL drivers/memstick/core/memstick 0x05c48b43 memstick_resume_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x092a3f79 memstick_register_driver -EXPORT_SYMBOL drivers/memstick/core/memstick 0x1ef28472 memstick_free_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x3cbaa5c3 memstick_detect_change +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfc2631fa v4l2_ctrl_cluster +EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0xb476cc60 rpcif_sw_init +EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0xbe210018 rpcif_dirmap_read +EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0xc56cc0c8 rpcif_manual_xfer +EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0xcf17f74c rpcif_hw_init +EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0xe1c29a80 rpcif_prepare +EXPORT_SYMBOL drivers/memstick/core/memstick 0x03982b3f memstick_unregister_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0x07c312a9 memstick_register_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0x0ad23153 memstick_set_rw_addr +EXPORT_SYMBOL drivers/memstick/core/memstick 0x22e4ab00 memstick_alloc_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x2ecc4777 memstick_resume_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x3254a75f memstick_next_req EXPORT_SYMBOL drivers/memstick/core/memstick 0x4a4e5778 memstick_init_req_sg -EXPORT_SYMBOL drivers/memstick/core/memstick 0x4adbd3b8 memstick_alloc_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x5441354c memstick_next_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0x7ad9c280 memstick_new_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0x7c7d9307 memstick_unregister_driver -EXPORT_SYMBOL drivers/memstick/core/memstick 0xa73a65b2 memstick_suspend_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x50427a3c memstick_new_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0x50bd2046 memstick_detect_change +EXPORT_SYMBOL drivers/memstick/core/memstick 0x78f7c6fc memstick_free_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x9bb31525 memstick_remove_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xac8f304a memstick_add_host EXPORT_SYMBOL drivers/memstick/core/memstick 0xae50437c memstick_init_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0xc7931310 memstick_remove_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0xdac93b2a memstick_add_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0xf6193184 memstick_set_rw_addr +EXPORT_SYMBOL drivers/memstick/core/memstick 0xd0ed335a memstick_suspend_host EXPORT_SYMBOL drivers/memstick/host/r592 0x52f1b23b memstick_debug_get_tpc_name -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x12b59d9f mpt_halt_firmware -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1d9bac75 mpt_Soft_Hard_ResetHandler -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x235b8ddc mptbase_sas_persist_operation -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x27a3df2d mpt_findImVolumes -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2cfcb921 mpt_verify_adapter -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2d579db2 mpt_event_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x3bae04ca mpt_get_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x42e2fb07 mpt_config -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4522f2df mpt_free_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0660bbe1 mpt_get_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0decfd02 mpt_raid_phys_disk_pg0 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x158ea5d0 mpt_resume +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x160f0b5f mpt_send_handshake_request +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x26603195 mpt_clear_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2dc8294c mpt_suspend +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x31279e60 mpt_verify_adapter EXPORT_SYMBOL drivers/message/fusion/mptbase 0x502108d0 mpt_fwfault_debug -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x59e756ea mpt_put_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x5ad399cb mpt_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x5b9e0d9e mpt_send_handshake_request +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x602ae86e mpt_free_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x60891c46 mpt_HardResetHandler EXPORT_SYMBOL drivers/message/fusion/mptbase 0x610b257e mpt_reset_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x6449084b mpt_reset_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x65ad1763 mpt_raid_phys_disk_pg1 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x665fadae mpt_put_msg_frame_hi_pri +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x700971b3 mpt_event_register EXPORT_SYMBOL drivers/message/fusion/mptbase 0x74a0134a mpt_device_driver_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7bf589eb mpt_detach -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7c20d547 mpt_GetIocState -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x80035e09 mpt_resume -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x85ef443f mpt_put_msg_frame_hi_pri -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x94f521d1 mpt_HardResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x81b61fd6 mpt_set_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x8be825e0 mpt_attach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x900bbcb7 mpt_alloc_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x91268732 mpt_detach EXPORT_SYMBOL drivers/message/fusion/mptbase 0x981efe92 mpt_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xab2519cb mpt_suspend -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xab2a7137 mpt_set_taskmgmt_in_progress_flag -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb8a99535 mpt_clear_taskmgmt_in_progress_flag -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc48d7c22 mpt_print_ioc_summary -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc89cc5ad mpt_raid_phys_disk_get_num_paths -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xcb78c963 mpt_free_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd5247f85 mpt_raid_phys_disk_pg1 -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xda998b7b mpt_attach -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdc181528 mpt_alloc_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x985217ba mpt_findImVolumes +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa8f8b8d0 mpt_put_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xaf04f7ec mpt_reset_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb0cf6bb6 mpt_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb963f50f mpt_Soft_Hard_ResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc2000e5a mpt_free_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc47bfa47 mpt_raid_phys_disk_get_num_paths +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xca49923f mpt_GetIocState +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xcbc0d9b5 mpt_config +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd29dad6e mpt_halt_firmware +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdcea9063 mptbase_sas_persist_operation EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdd805159 ioc_list -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe3270a35 mpt_raid_phys_disk_pg0 EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe6c1e126 mpt_event_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf88e7d0a mpt_device_driver_register -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x0a2264f8 mptscsih_event_process -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x0cfb89d5 mptscsih_abort -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x112b92de mptscsih_scandv_complete -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x13d047ab mptscsih_suspend -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x1af16235 mptscsih_slave_destroy -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x2040f2b2 mptscsih_IssueTaskMgmt -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x271705a6 mptscsih_host_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x35408849 mptscsih_taskmgmt_complete -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3761417c mptscsih_bios_param -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x400084fe mptscsih_resume -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x5e132d95 mptscsih_bus_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x6b6496fe mptscsih_raid_id_to_num -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x80d15e01 mptscsih_dev_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x839430c5 mptscsih_show_info -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x9518975d mptscsih_change_queue_depth -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x9787f1d6 mptscsih_taskmgmt_response_code -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x9b441bd7 mptscsih_flush_running_cmds -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa556db0c mptscsih_shutdown -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa65905bc mptscsih_qcmd -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xadd84883 mptscsih_info -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xae1e37a7 mptscsih_slave_configure -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc17c32fe mptscsih_ioc_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xcb7b5a92 mptscsih_remove -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xcdcc8861 mptscsih_io_done -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd632653f mptscsih_host_attrs -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe607c0a0 mptscsih_get_scsi_lookup -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf5b4de15 mptscsih_is_phys_disk -EXPORT_SYMBOL drivers/mfd/axp20x 0xbf1666d1 axp20x_device_remove -EXPORT_SYMBOL drivers/mfd/axp20x 0xc9b42618 axp20x_device_probe -EXPORT_SYMBOL drivers/mfd/axp20x 0xd0efd491 axp20x_match_device -EXPORT_SYMBOL drivers/mfd/dln2 0x162c4ba3 dln2_unregister_event_cb -EXPORT_SYMBOL drivers/mfd/dln2 0x7ecdafdd dln2_register_event_cb -EXPORT_SYMBOL drivers/mfd/dln2 0x97bb0135 dln2_transfer -EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x5132face pasic3_read_register -EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x56ae4233 pasic3_write_register -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x10ce0e7d mc13xxx_irq_request -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x23744427 mc13xxx_get_flags -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x2cffc708 mc13xxx_irq_unmask -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x3de89610 mc13xxx_irq_mask -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x4293d229 mc13xxx_irq_status -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x56b30426 mc13xxx_unlock -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x6318c863 mc13xxx_reg_read -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x8a8ab04c mc13xxx_reg_write -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x94bb7ee9 mc13xxx_irq_free -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xa4e4afde mc13xxx_lock -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xb3d1d140 mc13xxx_reg_rmw +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xfb19c3f0 mpt_device_driver_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xfe269434 mpt_print_ioc_summary +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x0aff52fa mptscsih_taskmgmt_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x0ed8fa03 mptscsih_host_attrs +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3070f45b mptscsih_dev_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x309af234 mptscsih_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x33192200 mptscsih_IssueTaskMgmt +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x33c3ff0a mptscsih_slave_configure +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x46b74619 mptscsih_abort +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x529793c5 mptscsih_is_phys_disk +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x65500543 mptscsih_shutdown +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x682354ca mptscsih_remove +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x6c341f36 mptscsih_io_done +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x8bbba36f mptscsih_slave_destroy +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x9bd36a5d mptscsih_ioc_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x9f864511 mptscsih_raid_id_to_num +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa5a7f175 mptscsih_host_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa73697b4 mptscsih_bios_param +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa87902ac mptscsih_scandv_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xbc6ac570 mptscsih_show_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc1a65f68 mptscsih_change_queue_depth +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd7dc28a9 mptscsih_qcmd +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xdcf876b7 mptscsih_flush_running_cmds +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xddee5439 mptscsih_get_scsi_lookup +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe5e5ff75 mptscsih_taskmgmt_response_code +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xef1b106f mptscsih_resume +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xfb5f4da9 mptscsih_bus_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xfce4feed mptscsih_event_process +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xfec38bd6 mptscsih_suspend +EXPORT_SYMBOL drivers/mfd/axp20x 0x3d03695c axp20x_device_remove +EXPORT_SYMBOL drivers/mfd/axp20x 0x95122e92 axp20x_match_device +EXPORT_SYMBOL drivers/mfd/axp20x 0x9e7213ce axp20x_device_probe +EXPORT_SYMBOL drivers/mfd/dln2 0x04055cf1 dln2_unregister_event_cb +EXPORT_SYMBOL drivers/mfd/dln2 0x17da6c4b dln2_transfer +EXPORT_SYMBOL drivers/mfd/dln2 0x3069ab23 dln2_register_event_cb +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0xab09dcc5 pasic3_write_register +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0xe0d935bf pasic3_read_register +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x0fca91ee mc13xxx_irq_unmask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x2daa17f1 mc13xxx_unlock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x8351724c mc13xxx_get_flags +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xa533c578 mc13xxx_irq_request +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xa64ce37d mc13xxx_irq_mask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xafbc4f95 mc13xxx_lock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xafcfb011 mc13xxx_reg_write +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xb2486aa5 mc13xxx_irq_status +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xc2a42ca7 mc13xxx_reg_read +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xde780031 mc13xxx_irq_free +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xe14b2693 mc13xxx_reg_rmw 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 @@ -2449,210 +2449,210 @@ 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 0x417dec7d wm8958_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994 0x734757e4 wm8994_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994 0x7a15950e wm8994_irq_exit -EXPORT_SYMBOL drivers/mfd/wm8994 0x8fb9a0ee wm8994_irq_init -EXPORT_SYMBOL drivers/mfd/wm8994 0x9c9443f4 wm8994_base_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994 0xde1fee50 wm1811_regmap_config -EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x3ec71612 ad_dpot_remove -EXPORT_SYMBOL drivers/misc/ad525x_dpot 0xc9248cd4 ad_dpot_probe +EXPORT_SYMBOL drivers/mfd/wm8994 0x2c66bf44 wm8994_irq_init +EXPORT_SYMBOL drivers/mfd/wm8994 0x44673c53 wm8994_base_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0x6f7f5819 wm1811_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0xc227e1ad wm8994_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0xdb44d880 wm8994_irq_exit +EXPORT_SYMBOL drivers/mfd/wm8994 0xf01d5a34 wm8958_regmap_config +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x39667194 ad_dpot_remove +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0xbfe27611 ad_dpot_probe EXPORT_SYMBOL drivers/misc/altera-stapl/altera-stapl 0x5bafa76e altera_init -EXPORT_SYMBOL drivers/misc/c2port/core 0x56556dac c2port_device_unregister -EXPORT_SYMBOL drivers/misc/c2port/core 0x5bd8cee6 c2port_device_register -EXPORT_SYMBOL drivers/misc/tifm_core 0x036083d1 tifm_free_adapter +EXPORT_SYMBOL drivers/misc/c2port/core 0x68fe1d60 c2port_device_unregister +EXPORT_SYMBOL drivers/misc/c2port/core 0xf8bffd74 c2port_device_register EXPORT_SYMBOL drivers/misc/tifm_core 0x0ffb277f tifm_queue_work -EXPORT_SYMBOL drivers/misc/tifm_core 0x1a93168f tifm_alloc_device -EXPORT_SYMBOL drivers/misc/tifm_core 0x1b3c78ab tifm_remove_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0x2cdcfcf0 tifm_alloc_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0x457471d0 tifm_unregister_driver -EXPORT_SYMBOL drivers/misc/tifm_core 0x5f3431b8 tifm_register_driver -EXPORT_SYMBOL drivers/misc/tifm_core 0x603d0929 tifm_eject -EXPORT_SYMBOL drivers/misc/tifm_core 0x66e0a00f tifm_map_sg -EXPORT_SYMBOL drivers/misc/tifm_core 0x69d2b2ed tifm_free_device -EXPORT_SYMBOL drivers/misc/tifm_core 0x97e2cc3a tifm_add_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0xa0e9273e tifm_has_ms_pif -EXPORT_SYMBOL drivers/misc/tifm_core 0xaf3e3fa1 tifm_unmap_sg -EXPORT_SYMBOL drivers/mmc/host/cqhci 0x61cd1453 cqhci_init -EXPORT_SYMBOL drivers/mmc/host/cqhci 0x63255433 cqhci_irq -EXPORT_SYMBOL drivers/mmc/host/cqhci 0xad42c6fe cqhci_pltfm_init -EXPORT_SYMBOL drivers/mmc/host/cqhci 0xbc287948 cqhci_deactivate -EXPORT_SYMBOL drivers/mmc/host/cqhci 0xc33cb5fa cqhci_resume -EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x66a576a4 dw_mci_probe -EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0xb887af83 dw_mci_runtime_suspend -EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0xcb59b417 dw_mci_runtime_resume -EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0xf36db8ed dw_mci_remove -EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0x9f99c7ae mmc_spi_get_pdata -EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0xcfa84ada mmc_spi_put_pdata -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x041e6112 cfi_fixup -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x24bc5156 cfi_read_pri -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x354626c8 cfi_build_cmd_addr -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x9999f319 cfi_send_gen_cmd -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xb2703313 cfi_varsize_frob -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xb536fe35 cfi_build_cmd -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xfb25d78e cfi_merge_status +EXPORT_SYMBOL drivers/misc/tifm_core 0x1c080727 tifm_map_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0x45e18eb5 tifm_has_ms_pif +EXPORT_SYMBOL drivers/misc/tifm_core 0x5b822d59 tifm_register_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0x8bd4ca05 tifm_unregister_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0xba61cb52 tifm_add_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xbccc1407 tifm_free_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xd0067f2c tifm_eject +EXPORT_SYMBOL drivers/misc/tifm_core 0xd0c01172 tifm_free_device +EXPORT_SYMBOL drivers/misc/tifm_core 0xd1d53a24 tifm_alloc_device +EXPORT_SYMBOL drivers/misc/tifm_core 0xd3333c4b tifm_alloc_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xda2c6b36 tifm_unmap_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0xe3cf2f02 tifm_remove_adapter +EXPORT_SYMBOL drivers/mmc/host/cqhci 0x22be4c14 cqhci_init +EXPORT_SYMBOL drivers/mmc/host/cqhci 0x596705a5 cqhci_pltfm_init +EXPORT_SYMBOL drivers/mmc/host/cqhci 0x7c372beb cqhci_irq +EXPORT_SYMBOL drivers/mmc/host/cqhci 0xd03d823a cqhci_deactivate +EXPORT_SYMBOL drivers/mmc/host/cqhci 0xf4cb78ec cqhci_resume +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x3d32a9ff dw_mci_runtime_resume +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x89764ff2 dw_mci_remove +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x90638c91 dw_mci_probe +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0xab986e7a dw_mci_runtime_suspend +EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0x355467cf mmc_spi_put_pdata +EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0x8431628d mmc_spi_get_pdata +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x3f270420 cfi_fixup +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x434a0632 cfi_build_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x4d595b45 cfi_read_pri +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x63739d3f cfi_send_gen_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xab9554c6 cfi_varsize_frob +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xca39d532 cfi_build_cmd_addr +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xfd0e7ae8 cfi_merge_status EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xff9fa623 cfi_udelay -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x28c3738e map_destroy -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x2c08c102 unregister_mtd_chip_driver -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x2df15941 register_mtd_chip_driver -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x416dc86d do_map_probe -EXPORT_SYMBOL drivers/mtd/chips/gen_probe 0x9aba57be mtd_do_chip_probe -EXPORT_SYMBOL drivers/mtd/lpddr/lpddr_cmds 0xf3868adf lpddr_cmdset -EXPORT_SYMBOL drivers/mtd/maps/map_funcs 0xf5ca3ee5 simple_map_init -EXPORT_SYMBOL drivers/mtd/mtd 0x1876a833 mtd_concat_create -EXPORT_SYMBOL drivers/mtd/mtd 0x9062d4d1 mtd_concat_destroy -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x056a3b5b nand_ecc_get_on_die_hw_engine -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x1c465d99 nand_ecc_sw_bch_init_ctx -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x285690f0 nand_ecc_sw_hamming_get_engine -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x348d32fc of_get_nand_ecc_user_config -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x80dcbee8 nand_ecc_sw_hamming_calculate -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x8954fe5c nand_ecc_is_strong_enough -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x8fd56b59 nand_ecc_sw_bch_cleanup_ctx -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xa4da182a nand_ecc_cleanup_ctx -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xa65b2d87 nand_ecc_prepare_io_req -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xaab04c72 nand_ecc_sw_hamming_correct -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xb81311b8 nand_ecc_sw_hamming_init_ctx -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xbfb20ecf nand_ecc_sw_bch_correct -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xd383157f nand_ecc_get_sw_engine -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xd7690951 nand_ecc_finish_io_req -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xd8967642 nand_ecc_sw_bch_calculate -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xda2e1490 nand_ecc_sw_bch_get_engine +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xa4a9b2e4 register_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xcdf62a59 do_map_probe +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xdf61ec88 map_destroy +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xe63aeab4 unregister_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/gen_probe 0x75e1b934 mtd_do_chip_probe +EXPORT_SYMBOL drivers/mtd/lpddr/lpddr_cmds 0x4c72d156 lpddr_cmdset +EXPORT_SYMBOL drivers/mtd/maps/map_funcs 0x11c22233 simple_map_init +EXPORT_SYMBOL drivers/mtd/mtd 0xcd8e857c mtd_concat_destroy +EXPORT_SYMBOL drivers/mtd/mtd 0xe1fd0ed5 mtd_concat_create +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x04e54cad nand_ecc_sw_hamming_correct +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x0ec64c04 nand_ecc_sw_hamming_cleanup_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x27860da3 nand_ecc_get_on_die_hw_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x3488e600 nand_ecc_is_strong_enough +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x6e28240a nand_ecc_cleanup_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x9677c5f5 nand_ecc_sw_bch_get_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x9bd35fda of_get_nand_ecc_user_config +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xa5a34a51 nand_ecc_sw_bch_calculate +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xa6071960 nand_ecc_init_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xaee29a4b nand_ecc_sw_bch_cleanup_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xb0a108ec nand_ecc_sw_hamming_calculate +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xbcf62360 nand_ecc_sw_hamming_get_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xc2426023 nand_ecc_sw_hamming_init_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xcb45678c nand_ecc_prepare_io_req +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xcba0c4b2 nand_ecc_finish_io_req +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xd004648d nand_ecc_get_sw_engine EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xe6db989b ecc_sw_hamming_correct -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xe9ea7324 nand_ecc_sw_hamming_cleanup_ctx -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xfc2dc7aa nand_ecc_init_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xf459f201 nand_ecc_sw_bch_init_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xf84ad3b1 nand_ecc_sw_bch_correct EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xff4351b0 ecc_sw_hamming_calculate -EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0x35c3b6cc flexonenand_region -EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0x8c2b8d43 onenand_addr +EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0x35f95897 onenand_addr +EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0x6fa1f1cc flexonenand_region +EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x1bb2f753 denali_init EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x30db096f denali_calc_ecc_bytes -EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0xa9afb4b5 denali_init -EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0xe6341597 denali_remove +EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x9a3ace72 denali_remove EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0x102603bc mtk_ecc_get_parity_bits EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0x5437e775 mtk_ecc_disable EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0x5de55d81 mtk_ecc_get_stats EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0x6df58afb mtk_ecc_release EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0x76e53683 mtk_ecc_wait_done EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0x8dcc87d2 mtk_ecc_enable -EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0xc8f91c3e of_mtk_ecc_get EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0xda64ef4a mtk_ecc_adjust_strength EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0xec8b9207 mtk_ecc_encode -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x0ec9b270 nand_create_bbt -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x394db7ac rawnand_sw_hamming_correct -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x4158fe00 rawnand_sw_hamming_init -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x47347a44 rawnand_dt_parse_gpio_cs -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x4b91cd78 nand_monolithic_write_page_raw -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x4fe380c6 rawnand_sw_hamming_calculate -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x5459b60f nand_monolithic_read_page_raw -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x603586e8 rawnand_sw_bch_correct -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x64533ee0 nand_read_oob_std -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x6dbfc8fb nand_read_page_raw -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x7737e964 nand_get_set_features_notsupp -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x791165b5 rawnand_sw_hamming_cleanup -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x80bade51 rawnand_sw_bch_init +EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0xf61c741d of_mtk_ecc_get +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x05d1f7a4 rawnand_sw_bch_cleanup +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x0fab711e nand_read_page_raw +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x23e8ec1e nand_monolithic_write_page_raw +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x27a5346a rawnand_sw_hamming_calculate +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x58909dcb nand_write_oob_std +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x6f7f20e8 rawnand_sw_hamming_correct +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x6fb0719e nand_write_page_raw +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x7f6acbbd nand_create_bbt +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x7fede4dc rawnand_dt_parse_gpio_cs +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x83642db9 rawnand_sw_bch_init +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x8e23e079 nand_monolithic_read_page_raw EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x8ecbb3b8 nand_check_erased_ecc_chunk -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x93494533 nand_scan_with_ids -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xa53bb486 rawnand_sw_bch_cleanup -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xb0ab9eb3 nand_write_oob_std -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xc03f3a57 nand_write_page_raw -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x00a80077 arc_raw_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x0dd434c8 arcnet_unregister_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x1769845e free_arcdev -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x327afc45 arcnet_send_packet -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x5a996a32 alloc_arcdev +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x9eac3c7f nand_read_oob_std +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xa4a726a0 rawnand_sw_bch_correct +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xc49b8cbe nand_get_set_features_notsupp +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xc8483950 rawnand_sw_hamming_init +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xfdd9a894 nand_scan_with_ids +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xff48fe52 rawnand_sw_hamming_cleanup +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x0fbeb410 arcnet_send_packet +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x15e29ce6 arcnet_open +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x19e64615 alloc_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x21b2866a arc_bcast_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x254c53a2 arc_proto_map EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x77f7b22d arcnet_timeout -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xab5d6eda arc_proto_map -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xadba74d2 arcnet_close -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xb9102513 arcnet_open -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xdef8ebc7 arc_bcast_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xe02d06ac arc_proto_default +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xaa38bc1e arcnet_unregister_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xc88726a7 arc_proto_default +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xce7a0342 arcnet_timeout +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xd5d703ae arcnet_close +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xd829ac5a arc_raw_proto EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecb730b0 arcnet_interrupt -EXPORT_SYMBOL drivers/net/arcnet/com20020 0x5745d887 com20020_netdev_ops -EXPORT_SYMBOL drivers/net/arcnet/com20020 0x984fd1ee com20020_found -EXPORT_SYMBOL drivers/net/arcnet/com20020 0xd6bed190 com20020_check -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x0434a287 b53_set_mac_eee -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x05738a51 b53_phylink_mac_an_restart -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x07aeb4da b53_brcm_hdr_setup -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x07fd7241 b53_mdb_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x12aa9440 b53_switch_detect -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x13d6980b b53_fdb_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x146b16f4 b53_phylink_mac_link_down -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x2aec707f b53_fdb_dump -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x3d3dc6c4 b53_get_tag_protocol -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x44e7a184 b53_get_mac_eee -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x4586813d b53_get_sset_count -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x4b741546 b53_br_set_stp_state -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x4fe834f4 b53_phylink_validate -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x5367b39a b53_vlan_filtering -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x566eaaec b53_disable_port -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x5ee55547 b53_enable_port -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x62100d50 b53_mdb_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x62f4f84d b53_get_strings -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7d2201bb b53_mirror_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x831f76d1 b53_eee_init -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x83c596da b53_fdb_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x88e45406 b53_eee_enable_set -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x8b87808b b53_port_event -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x8c545459 b53_imp_vlan_setup -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x8d466783 b53_setup_devlink_resources -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x8dd979ab b53_get_ethtool_stats -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x8f0a0758 b53_mirror_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x900dbf81 b53_switch_register -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x9ea2a997 b53_br_join -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x9f18a990 b53_switch_alloc -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x9f398e5d b53_br_fast_age -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa7a25ece b53_phylink_mac_link_up -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xab7e528e b53_phylink_mac_link_state -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb21c3051 b53_vlan_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb2aa278c b53_vlan_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb37d293a b53_configure_vlan -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb64c9672 b53_br_leave -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd8291763 b53_phylink_mac_config -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xdc7f6bd7 b53_br_flags_pre -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xebfd574b b53_get_ethtool_phy_stats -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xfd74d520 b53_br_flags -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x05b22c56 b53_serdes_init -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x1a367d26 b53_serdes_config -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x4f6c4188 b53_serdes_link_state -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x9b9b2e44 b53_serdes_link_set -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xaba421b3 b53_serdes_phylink_validate -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xc9279e60 b53_serdes_an_restart -EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x0100ff8c lan9303_probe -EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x4153e5ce lan9303_remove +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecd44be7 free_arcdev +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x0684c71c com20020_netdev_ops +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x2a8456eb com20020_found +EXPORT_SYMBOL drivers/net/arcnet/com20020 0xd7a3bbc0 com20020_check +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x0bb21664 b53_br_set_stp_state +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x1160fc5b b53_mdb_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x1378dcc8 b53_configure_vlan +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x13b61118 b53_get_ethtool_stats +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x1de423d8 b53_vlan_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x237f1eae b53_set_mac_eee +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x24b72e42 b53_eee_enable_set +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x2d5e363e b53_phylink_mac_an_restart +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x38ca77e1 b53_br_join +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x4d4d77b2 b53_vlan_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x56a257df b53_get_sset_count +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x580e39b9 b53_disable_port +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x5b0595ac b53_get_strings +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x5c7a24c9 b53_phylink_validate +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x5de0cea1 b53_port_event +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x64ce425b b53_phylink_mac_config +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x651a149d b53_brcm_hdr_setup +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x6900cb0a b53_br_fast_age +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x6a4f01bc b53_fdb_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x6e72608d b53_switch_register +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x73f84cc1 b53_vlan_filtering +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7b37e57e b53_mirror_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7db118cf b53_switch_detect +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x87a70f85 b53_phylink_mac_link_up +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x97e77653 b53_br_flags_pre +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x98045a6c b53_eee_init +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb046cd23 b53_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb0e091d3 b53_get_mac_eee +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb4a3bdc3 b53_phylink_mac_link_state +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc281d9e2 b53_get_tag_protocol +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc2fa7b84 b53_br_leave +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc34ab5a7 b53_setup_devlink_resources +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc6a297b0 b53_enable_port +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xe20c3c50 b53_fdb_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xea32f000 b53_fdb_dump +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xecbbe617 b53_get_ethtool_phy_stats +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf1bc9022 b53_imp_vlan_setup +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf246c381 b53_phylink_mac_link_down +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xfd9e104f b53_mirror_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xff2b57ba b53_mdb_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xffec9df1 b53_br_flags +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x3842d74f b53_serdes_link_state +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x4011f8a8 b53_serdes_init +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x597c9467 b53_serdes_config +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x5afdb605 b53_serdes_an_restart +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xb1ba9b01 b53_serdes_phylink_validate +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xde70aa45 b53_serdes_link_set +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x68705fc1 lan9303_shutdown +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x7438280f lan9303_probe EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xada83f40 lan9303_register_set -EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xe6cdb713 lan9303_shutdown -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz8795 0x613a890a ksz8_switch_register -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz9477 0x148d121c ksz9477_switch_register -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0x7170c1df ksz_switch_register -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0xa3823071 ksz_switch_alloc -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0xb9404269 ksz_switch_remove -EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x08281313 vsc73xx_probe -EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x3282c9f9 vsc73xx_remove +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xb69afa50 lan9303_remove +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz8795 0xddd27a6c ksz8_switch_register +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz9477 0xe6a943ee ksz9477_switch_register +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0xb48f2dbb ksz_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0xc9215705 ksz_switch_register +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0xf66d3429 ksz_switch_remove +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x0d33c8a7 vsc73xx_probe +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x1c8c0534 vsc73xx_remove EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x99d242fe vsc73xx_is_addr_valid -EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0xea769014 vsc73xx_shutdown -EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x24324ac6 xrs700x_switch_register -EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x66288a47 xrs700x_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0xf0060f82 vsc73xx_shutdown +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x53f205d0 xrs700x_switch_remove EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x83b7b667 xrs7003f_info +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x860a8dbe xrs700x_switch_register EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x8972bf7e xrs7004f_info -EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x980c6e0e xrs700x_switch_remove +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xa625da57 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 0xf93409fe xrs700x_switch_shutdown -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x038ad824 __alloc_ei_netdev -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x0ad813b7 ei_tx_timeout +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xbaa63d10 xrs700x_switch_shutdown +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x06651479 __alloc_ei_netdev +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x06f39ae6 ei_tx_timeout EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x119721ac ei_interrupt -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x1266d961 ei_netdev_ops -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x165d3c9d ei_close -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x1c7eb422 ei_get_stats -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x26445631 ei_open -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x37c150b2 ei_poll -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x55343839 ei_set_multicast_list -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xac3fde81 NS8390_init -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xad6a5cb0 ei_start_xmit -EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnxt/bnxt_en 0xb47762a6 bnxt_ulp_probe +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x37ac66c3 ei_open +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x6e38e3e4 ei_start_xmit +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x8f3cedce ei_set_multicast_list +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x8f4374db ei_netdev_ops +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xbe7a35a5 ei_get_stats +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xe1d083db ei_close +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xedfdf055 NS8390_init +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xffe1ea12 ei_poll +EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnxt/bnxt_en 0xb0e3205b bnxt_ulp_probe EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x636af174 cnic_unregister_driver -EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0xed604016 cnic_register_driver -EXPORT_SYMBOL drivers/net/ethernet/cavium/common/cavium_ptp 0x4b2162e2 cavium_ptp_put -EXPORT_SYMBOL drivers/net/ethernet/cavium/common/cavium_ptp 0x77026e39 cavium_ptp_get +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0xa71bdc67 cnic_register_driver +EXPORT_SYMBOL drivers/net/ethernet/cavium/common/cavium_ptp 0x95cff183 cavium_ptp_get +EXPORT_SYMBOL drivers/net/ethernet/cavium/common/cavium_ptp 0xf402dc3b 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 @@ -2670,360 +2670,362 @@ 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 0x1072e8a7 t3_l2t_send_event -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x11a9fb51 cxgb3_remove_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x18e373cd cxgb3_free_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x1a1e3996 cxgb3_alloc_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x336753f5 t3_l2e_free -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x36dede11 t3_register_cpl_handler -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x5e914c08 cxgb3_alloc_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x8122a336 cxgb3_free_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x85407748 t3_l2t_send_slow -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x88311017 cxgb3_insert_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x88e33bbf cxgb3_ofld_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x9c942bd7 cxgb3_register_client -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xbdfa7ac1 cxgb3_unregister_client -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xc2c1eb6a t3_l2t_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xd40e172e dev2t3cdev -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xef012ed8 cxgb3_queue_tid_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0037e487 cxgb4_read_tpte -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x032356ec cxgb4_reclaim_completed_tx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x06a5af4e cxgb4_iscsi_init -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x09c702d3 cxgb4_l2t_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0a1f0ed4 cxgb4_l2t_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0b7f79ec cxgb4_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x041771f3 t3_l2e_free +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x101a04d9 dev2t3cdev +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x1d3360e3 t3_l2t_send_event +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x2c810c3d cxgb3_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x385f9eb1 t3_l2t_send_slow +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x39756333 cxgb3_queue_tid_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x6dc41be8 cxgb3_insert_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x72e23bea cxgb3_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xa3dc9de2 t3_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xa4616428 cxgb3_register_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xc2a3e6e1 cxgb3_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xd26878e8 t3_register_cpl_handler +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xd564f8e6 cxgb3_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xd7bb7418 cxgb3_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xe11dd033 cxgb3_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xebaa5dfb cxgb3_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x012758d6 cxgb4_create_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0a6b5be6 cxgb4_smt_alloc_switching +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0bbab8ea cxgb4_l2t_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0c106432 cxgb4_register_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0e529921 cxgb4_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0ec15fce cxgb4_free_atid EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0f1a5528 cxgb4_unregister_uld -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x15b653da cxgb4_clip_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2ef03e80 cxgb4_create_server -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x31829a81 cxgb4_bar2_sge_qregs -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x32964529 cxgb4_get_tcp_stats -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3b604b21 cxgb4_immdata_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3c7ea66a cxgb4_create_server_filter -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x49286b4e cxgb4_crypto_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1af8dc06 cxgb4_port_e2cchan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1c705fac cxgb4_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x23eb3ffe cxgb4_update_root_dev_clip +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2740bc54 cxgb4_flush_eq_cache +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2d1715a9 cxgb4_ring_tx_db +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3ea16df2 cxgb4_create_server6 +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x408e5ac2 cxgb4_clip_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4477da2a cxgb4_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4c733959 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 0x58b30006 cxgb4_select_ntuple -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x593b0700 cxgb4_port_chan -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x77f338a7 cxgb4_alloc_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x78ec72a8 cxgb4_port_e2cchan -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7cc9c6b4 cxgb4_check_l2t_valid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8a5fd722 cxgb4_write_sgl -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8b642088 cxgb4_remove_server_filter -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8b98399e cxgb4_ofld_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8e3840a8 cxgb4_create_server6 -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8e3f0c08 cxgb4_l2t_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x98217bff cxgb4_alloc_sftid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x99224a02 cxgb4_ring_tx_db -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9a584270 cxgb4_register_uld -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa5877b66 cxgb4_clip_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x54179ab5 cxgb4_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x64435279 cxgb4_crypto_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x65519aec cxgb4_port_chan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6a96c38f cxgb4_alloc_sftid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x72d3112c cxgb4_port_idx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x73d68522 cxgb4_iscsi_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x740197a3 cxgb4_remove_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8480557e cxgb4_map_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x883b6556 cxgb4_clip_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8cd11d12 cxgb4_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x91ef48f0 cxgb4_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9910ce7b cxgb4_port_viid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9ba4688c cxgb4_dbfifo_count +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9f0d62eb cxgb4_select_ntuple +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa0876953 cxgb4_write_sgl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa0facd25 cxgb4_create_server_filter EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa8db193f cxgb4_smt_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xaf03045b cxgb4_sync_txq_pidx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xafc999f5 cxgb4_map_skb -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb0c963f7 cxgb4_smt_alloc_switching -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb615fe5b cxgb4_read_sge_timestamp -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb9eb7d83 cxgb4_inline_tx_skb -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xbeda92c1 cxgb4_port_idx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xcd264e31 cxgb4_update_root_dev_clip -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xcf7fb006 cxgb4_flush_eq_cache -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd25c4917 cxgb4_remove_server -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd6228be4 cxgb4_write_partial_sgl -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd687de0a cxgb4_dbfifo_count +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb9703fd8 cxgb4_check_l2t_valid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xbdae0a34 cxgb4_bar2_sge_qregs +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xbfe5982a cxgb4_write_partial_sgl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc4c8c7fa cxgb4_get_srq_entry +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc9d696aa t4_cleanup_clip_tbl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xca6f94a7 cxgb4_sync_txq_pidx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd4271e3a cxgb4_read_sge_timestamp +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd563e87f cxgb4_get_tcp_stats EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd69a0294 cxgb4_best_mtu -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xdf6dc851 cxgb4_free_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe0d5b0e4 cxgb4_l2t_alloc_switching -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe5cb671c t4_cleanup_clip_tbl -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xeae1222c cxgb4_remove_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xebb87cc8 cxgb4_free_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf5dbed1f cxgb4_pktgl_to_skb -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf97b7216 cxgb4_port_viid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf98a88b4 cxgb4_get_srq_entry +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe09c2214 cxgb4_l2t_alloc_switching +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe3e6fb28 cxgb4_read_tpte +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe5782d8f cxgb4_reclaim_completed_tx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xec1385b4 cxgb4_remove_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xfaa2bbb9 cxgb4_l2t_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xfecde9f1 cxgb4_immdata_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xff46e95a cxgb4_pktgl_to_skb 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 0x5bdc6ecc cxgbi_ppm_ppods_reserve -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x833443b7 cxgb_find_route -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x85fe46bf cxgbi_ppm_make_ppod_hdr -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xa9078f27 cxgbi_ppm_ppod_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xb2cdc66f cxgb_find_route6 -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xc8e31a12 cxgbi_ppm_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xf5b4273c cxgbi_ppm_init -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x2b1b6eb0 vnic_dev_get_res -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x35cbd8f1 enic_api_devcmd_proxy_by_index -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x4b126b05 vnic_dev_get_pdev -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x570b9b9d vnic_dev_get_res_count -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x64d15859 vnic_dev_register -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xdfdd3794 vnic_dev_unregister -EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x36642afe be_roce_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x2692d505 cxgbi_ppm_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x516c2744 cxgbi_ppm_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x813c4d59 cxgb_find_route +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x831aaaf0 cxgbi_ppm_make_ppod_hdr +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xa8edfb80 cxgb_find_route6 +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xe77fb5e2 cxgbi_ppm_ppods_reserve +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xec26f6a2 cxgbi_ppm_ppod_release +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x16b5dd00 vnic_dev_register +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x858b282c vnic_dev_get_res +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xa73496f7 vnic_dev_get_pdev +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xa91b45bf vnic_dev_get_res_count +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xad02a30d vnic_dev_unregister +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xea380685 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 0x655b44e6 be_roce_register_driver +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x94b1b512 be_roce_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xf9d3a06c be_roce_register_driver +EXPORT_SYMBOL drivers/net/ethernet/freescale/dpaa2/fsl-dpaa2-eth 0x10c0245e dpaa2_ptp EXPORT_SYMBOL drivers/net/ethernet/freescale/dpaa2/fsl-dpaa2-eth 0x4412391e dpaa2_phc_index -EXPORT_SYMBOL drivers/net/ethernet/freescale/dpaa2/fsl-dpaa2-eth 0x969b9895 dpaa2_ptp -EXPORT_SYMBOL drivers/net/ethernet/freescale/enetc/fsl-enetc-ierb 0xc2daf390 enetc_ierb_register_pf +EXPORT_SYMBOL drivers/net/ethernet/freescale/enetc/fsl-enetc-ierb 0x58e3f20e enetc_ierb_register_pf EXPORT_SYMBOL drivers/net/ethernet/freescale/enetc/fsl-enetc-ptp 0x5431a304 enetc_phc_index -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x2770ff77 hnae_put_handle -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x4c0e5da3 hnae_reinit_handle -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x52a62a79 hnae_ae_unregister -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x5f1b6821 hnae_ae_register -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x8403fc92 hnae_get_handle +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x4564806e hnae_reinit_handle +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x8432c9e5 hnae_put_handle +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x9ae19915 hnae_ae_unregister +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xa3a09eff hnae_get_handle EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xb1266858 hnae_register_notifier +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xc3782c0e hnae_ae_register EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xdf24adef hnae_unregister_notifier -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hns_dsaf 0x723439c3 hns_dsaf_roce_reset -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x4115e47c hnae3_set_client_init_flag -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x4c3afe07 hnae3_unregister_ae_algo -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x6ad45c75 hnae3_register_client -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x7393c748 hnae3_unregister_ae_dev -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xae4ae255 hnae3_register_ae_algo -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xc74f6803 hnae3_unregister_client -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xde08f33e hnae3_register_ae_dev -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xf9e3c365 hnae3_unregister_ae_algo_prepare -EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0x7df02523 iavf_unregister_client -EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0x930bffb4 iavf_register_client -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x15327522 __otx2_mbox_reset -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x213fb3cd otx2_mbox_msg_send +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hns_dsaf 0x90d9fb60 hns_dsaf_roce_reset +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x2a8f88a8 hnae3_set_client_init_flag +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x44d132b3 hnae3_unregister_ae_algo +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x4a3a0974 hnae3_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x5f09b32e hnae3_register_client +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x8021cfad hnae3_unregister_ae_dev +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x951275f7 hnae3_register_ae_dev +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xbdb0e53b hnae3_register_ae_algo +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xecb6a7b0 hnae3_unregister_ae_algo_prepare +EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0x2ff81afb iavf_register_client +EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0x58cd33c0 iavf_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x0aebc4ee otx2_mbox_nonempty +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x1090fec9 otx2_mbox_reset +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x12bc8ec4 __traceiter_otx2_msg_interrupt +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x2d39db70 __traceiter_otx2_msg_process +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x34f26eff otx2_mbox_regions_init 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 0x42c2a8b0 __otx2_mbox_reset +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x4670a26f otx2_reply_invalid_msg 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 0x49bee3b0 otx2_mbox_destroy 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 0x53e3bae5 __traceiter_otx2_msg_process 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 0x79a3c740 otx2_mbox_regions_init -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x7bac1665 otx2_mbox_init -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x7bfc4409 otx2_mbox_busy_poll_for_rsp -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x7e4374c2 otx2_mbox_reset -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x802ad657 otx2_mbox_wait_for_rsp -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x89a0ce4e otx2_mbox_alloc_msg_rsp +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x6785aaee otx2_mbox_alloc_msg_rsp +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x8673b5c2 otx2_mbox_wait_for_rsp +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x8a615a5f otx2_mbox_get_rsp EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x8f772a3f otx2_mbox_id2name -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x8fafacbf otx2_mbox_get_rsp -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x9ee86f7f otx2_mbox_check_rsp_msgs +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xa61b33dc otx2_mbox_msg_send 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 0xb23aa515 otx2_mbox_nonempty -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xb95ff7e2 otx2_reply_invalid_msg -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xbe5ec6ae __traceiter_otx2_msg_alloc -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xbe8b283e __traceiter_otx2_msg_interrupt +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xbe0376b4 otx2_mbox_check_rsp_msgs +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xc59772f4 otx2_mbox_init 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 0xee46b4ab otx2_mbox_destroy -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x01f17cfe otx2_tc_alloc_ent_bitmap -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x08f06606 mbox_handler_nix_txsch_alloc -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x16dcb88e mbox_handler_nix_bp_enable -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x20af814b mbox_handler_msix_offset -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x2e9144d0 otx2_tx_timeout -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x37a9169b otx2_set_mac_address -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x40257e49 otx2_open -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x442fcda4 otx2vf_mcam_flow_init -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x479bb723 otx2_set_real_num_queues -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x61661e40 otx2vf_set_ethtool_ops -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x963d0cc9 otx2_get_mac_from_af -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xc38af91b mbox_handler_nix_lf_alloc -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xc596d3e8 otx2_detach_resources -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xcba2bc73 otx2_alloc_mcam_entries -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xcd89267a otx2_mbox_up_handler_cgx_link_event -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xcd9b7ccf mbox_handler_npa_lf_alloc -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xcdd3d06d otx2_mcam_flow_del -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xcde29f9a otx2_get_stats64 -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xe2405168 cn10k_lmtst_init -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xe68e186a otx2_attach_npa_nix +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xdbe157a8 otx2_mbox_busy_poll_for_rsp +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xe889e425 __traceiter_otx2_msg_alloc +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x258a9fe2 otx2_get_max_mtu +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x2e420120 otx2_tx_timeout +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x42cc3f42 otx2_detach_resources +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x443b9fb9 otx2vf_mcam_flow_init +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x59ee122e otx2_attach_npa_nix +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x6acd8f5f mbox_handler_nix_lf_alloc +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x6d32d7f0 otx2_stop +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x757d09e1 mbox_handler_npa_lf_alloc +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x7bde2b73 otx2_get_stats64 +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x81184b07 mbox_handler_nix_txsch_alloc +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x91e7b848 mbox_handler_nix_bp_enable +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x921151cc otx2_set_mac_address +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x926371a7 otx2_mcam_flow_del +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x9b51d279 otx2vf_set_ethtool_ops +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xb500bac2 otx2_mbox_up_handler_cgx_link_event +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xbdb9dbb0 otx2_open +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xc40e6cf0 mbox_handler_msix_offset +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xcdab7f67 otx2_alloc_mcam_entries +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xd1edaee4 otx2_tc_alloc_ent_bitmap +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xde522095 otx2_get_mac_from_af +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xe13b0ae9 cn10k_lmtst_init EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xeffd130b otx2_get_maxflows -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xf2534408 otx2_stop -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xf759c515 otx2_sq_append_skb -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xfcace330 otx2_get_max_mtu -EXPORT_SYMBOL drivers/net/ethernet/marvell/prestera/prestera 0x9df97e71 prestera_device_unregister -EXPORT_SYMBOL drivers/net/ethernet/marvell/prestera/prestera 0xfd0a09f2 prestera_device_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0319b607 mlx4_is_slave_active -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0b5d8183 mlx4_SET_VPORT_QOS_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0fae2a15 mlx4_put_slave_node_guid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1564a90e mlx4_eq_get_irq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2deba4fb mlx4_SET_PORT_SCHEDULER -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x325d182c mlx4_test_interrupt -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x39cdab1b mlx4_is_eq_vector_valid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3a16120f mlx4_SET_PORT_user_mtu -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x45859a96 mlx4_gen_port_state_change_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x48dd8e74 set_phv_bit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4a26212e mlx4_SET_PORT_VXLAN -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5286b5b0 mlx4_SET_PORT_general -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x57cd0897 get_phv_bit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5a0b04d8 mlx4_get_slave_pkey_gid_tbl_len -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5a8a3f63 mlx4_SET_VPORT_QOS_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6562eee4 mlx4_assign_eq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x65695200 mlx4_SET_MCAST_FLTR -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x702338b2 mlx4_get_slave_node_guid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x72f0b7ca mlx4_query_diag_counters -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x750803e1 mlx4_max_tc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x79078e5f mlx4_get_eqs_per_port +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xfb29e858 otx2_set_real_num_queues +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xff84b2af otx2_sq_append_skb +EXPORT_SYMBOL drivers/net/ethernet/marvell/prestera/prestera 0x0aa41d8c prestera_device_register +EXPORT_SYMBOL drivers/net/ethernet/marvell/prestera/prestera 0x936f25e0 prestera_device_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0583605c mlx4_get_eqs_per_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0bb08351 mlx4_SET_PORT_general +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1ca5560a get_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1db1d319 mlx4_ALLOCATE_VPP_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1f918eef mlx4_get_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2040d7a8 mlx4_SET_PORT_qpn_calc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x273a1bb6 mlx4_SET_VPORT_QOS_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2c73955a mlx4_gen_pkey_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2f1b16a4 mlx4_test_async +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2f38881c mlx4_SET_PORT_user_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x33051bf2 mlx4_get_roce_gid_from_slave +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x360477f0 mlx4_SET_VPORT_QOS_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3f7745d7 mlx4_SET_PORT_VXLAN +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4132d10c mlx4_SET_PORT_BEACON +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x41972c86 mlx4_gen_port_state_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4c1c897c mlx4_max_tc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x53ad7b0f mlx4_is_slave_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x60a18e95 mlx4_assign_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x62cb7164 mlx4_put_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x66433677 set_and_calc_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x68c179ab mlx4_gen_guid_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6ad2059f mlx4_get_parav_qkey 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 0x8078dfa5 mlx4_SET_PORT_user_mac -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x80cd7627 mlx4_release_eq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x84f25c45 mlx4_sync_pkey_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x875f74a5 mlx4_get_slave_port_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8a73297e mlx4_SET_PORT_fcs_check -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x91e7f82e mlx4_get_slave_from_roce_gid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9458d9df mlx4_gen_pkey_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x95ead70e mlx4_get_is_vlan_offload_disabled -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9686ee11 mlx4_SET_PORT_qpn_calc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x990df812 mlx4_gen_guid_change_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa600fadd mlx4_ALLOCATE_VPP_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb64da1a6 mlx4_SET_PORT_PRIO2TC -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbbb49d0e mlx4_tunnel_steer_add -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbef5f0e1 mlx4_gen_slaves_port_mgt_ev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc025d12d mlx4_is_eq_shared -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc7e22433 mlx4_get_cpu_rmap -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc9138a1d mlx4_SET_PORT_BEACON -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xda6c9448 set_and_calc_slave_port_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe0c96d2f mlx4_test_async -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe67bbf9f mlx4_ALLOCATE_VPP_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf4132824 mlx4_get_module_info -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf62f2259 mlx4_get_parav_qkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfab852e4 mlx4_get_roce_gid_from_slave -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x00767042 mlx5_fpga_mem_read -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x00c4d582 mlx5_eq_destroy_generic -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x02bfd523 mlx5_core_destroy_tis -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x04f6043a mlx5_eswitch_get_encap_mode -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x09131914 mlx5_core_destroy_rqt -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0921bca8 __traceiter_mlx5_fs_del_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0aba9642 mlx5_core_modify_tis -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0ad91f38 mlx5_core_create_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0bbc5ef6 mlx5_modify_header_dealloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0bc98d7e mlx5_core_create_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0dc91dc5 mlx5_mpfs_add_mac -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0e35140b mlx5_eswitch_uplink_get_proto_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0e580812 mlx5_fpga_sbu_conn_create -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0fcff6e2 mlx5_core_alloc_pd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x154cf6f1 __traceiter_mlx5_fw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1a042b6a mlx5_fc_destroy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1b62246e mlx5_del_flow_rules +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8589a3b2 mlx4_is_eq_shared +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x953c5970 set_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x99e2eb81 mlx4_release_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9c1fa7b9 mlx4_query_diag_counters +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9c5b8d93 mlx4_is_eq_vector_valid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9d3a2edb mlx4_SET_PORT_PRIO2TC +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9f098c23 mlx4_ALLOCATE_VPP_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa1d48c6b mlx4_SET_PORT_user_mtu +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa6d49cdb mlx4_get_slave_from_roce_gid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xafcefcae mlx4_gen_slaves_port_mgt_ev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb281a92b mlx4_SET_PORT_SCHEDULER +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb4b356e1 mlx4_get_module_info +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb7efc9df mlx4_get_slave_pkey_gid_tbl_len +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc7e1f0c5 mlx4_SET_MCAST_FLTR +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xce2234e1 mlx4_eq_get_irq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd4c26027 mlx4_sync_pkey_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xda24a511 mlx4_test_interrupt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe0166aeb mlx4_get_is_vlan_offload_disabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe073587e mlx4_SET_PORT_fcs_check +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe838118b mlx4_get_cpu_rmap +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xec7a0274 mlx4_tunnel_steer_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfe43f2bd mlx4_get_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x009d34bc mlx5_core_alloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x00bf61a3 mlx5_mpfs_add_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x00e50aff mlx5_qp_debugfs_cleanup +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x04cf0565 mlx5_debug_qp_remove +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0628b2d8 mlx5_fpga_sbu_conn_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x078f7a4e mlx5_debug_qp_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x08482795 mlx5_qp_debugfs_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0ac52595 mlx5_core_create_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0b901798 mlx5_core_modify_cq_moderation +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x128e11ca mlx5_lag_is_roce +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x12a59986 mlx5_eq_update_ci +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1606e806 mlx5_cmd_create_vport_lag +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1720571b mlx5_modify_header_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1ada13b9 mlx5_lag_get_roce_netdev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1b11ceec mlx5_core_alloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1b94b5b6 mlx5_eq_enable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1c486a64 mlx5_eswitch_unregister_vport_reps +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 0x1e62bb55 mlx5_core_create_tir -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x20815c16 mlx5_lag_get_peer_mdev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x22461d59 mlx5_lag_is_sriov -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x227c248a mlx5_eswitch_vport_match_metadata_enabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2151e1a7 mlx5_rsc_dump_cmd_create 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 0x254396fa mlx5_core_modify_sq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2546c34f mlx5_cmd_init_async_ctx -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x26bf644f mlx5_lag_is_shared_fdb -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x29e9de4f mlx5_core_create_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2a9f7587 mlx5_rl_remove_rate_raw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2b2717be mlx5_debugfs_root -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2f05880d mlx5_cmd_exec_cb -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2f5dd9fe mlx5_core_destroy_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x30551552 mlx5_get_fdb_sub_ns -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x324c30ef mlx5_eswitch_get_proto_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x22e633ef mlx5_core_destroy_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2314999a mlx5_mpfs_del_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2348501e mlx5_core_query_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x26463548 mlx5_fpga_mem_read +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x28a602de mlx5_fpga_sbu_conn_sendmsg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x293ab45a mlx5_core_create_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2a78e6a4 mlx5_core_destroy_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2e536893 mlx5_eq_create_generic +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x300cb8f3 mlx5_alloc_bfreg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x31d276be mlx5_eswitch_get_proto_dev 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 0x331fd113 mlx5_create_flow_group +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x34680528 mlx5_eswitch_vport_rep 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 0x361c9059 mlx5_debug_qp_add -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x369ba525 __traceiter_mlx5_fs_del_fg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3c19cc0d mlx5_add_flow_rules -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3e4a3182 mlx5_destroy_flow_group -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3f30b43c mlx5_lag_get_roce_netdev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x474a7fd6 mlx5_lag_query_cong_counters -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4776af29 mlx5_lag_is_master +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x383c6c8b mlx5_core_create_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3ab759b7 mlx5_comp_irq_get_affinity_mask +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3fd3fb7d mlx5_lag_is_master +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x42410ca3 mlx5_core_query_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x472aa96e __traceiter_mlx5_fs_set_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x48dbc9ea mlx5_core_query_vendor_id EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x49580652 mlx5_create_auto_grouped_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4a3004c6 mlx5_packet_reformat_dealloc EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4d5f5c07 __SCK__tp_func_mlx5_fs_del_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4de42ffd mlx5_cmd_create_vport_lag -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4e3071bc mlx5_rl_is_in_range -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4efe1df7 mlx5_core_modify_cq_moderation +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4dd7b058 mlx5_core_destroy_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4fb8e029 mlx5_core_destroy_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4fc87562 mlx5_cmd_destroy_vport_lag EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x503f3c9d __traceiter_mlx5_fs_add_ft -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x542902be mlx5_eswitch_get_vport_metadata_for_match -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5462f7db mlx5_core_create_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x51179265 mlx5_cmd_alloc_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x52706e80 mlx5_core_create_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x52fcdf69 mlx5_packet_reformat_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x54910156 mlx5_core_create_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x54f91b6c mlx5_cmd_cleanup_async_ctx EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x559ac38d __SCK__tp_func_mlx5_fs_add_fg EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x55b88c73 mlx5_create_lag_demux_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5d98b6df mlx5_qp_debugfs_cleanup -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5e0784ae mlx5_fpga_sbu_conn_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x58834105 mlx5_core_detach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5987ab05 mlx5_rsc_dump_next +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5cf3fcd1 mlx5_core_dealloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5e53063f mlx5_get_flow_namespace +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5ebc90e0 mlx5_fpga_get_sbu_caps EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x60ae791f __traceiter_mlx5_fs_del_ft 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 0x619175e2 mlx5_get_uars_page -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x62e7b36b mlx5_modify_header_alloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x64ac39e8 mlx5_fpga_sbu_conn_sendmsg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x64f3973a mlx5_comp_irq_get_affinity_mask -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6642e450 mlx5_core_query_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x666057d9 mlx5_cmd_exec_polling -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x690a08c3 mlx5_cmd_destroy_vport_lag -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6dfddcda mlx5_eswitch_get_core_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x634f7fd2 mlx5_eswitch_get_encap_mode +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6c116c4d mlx5_fc_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6e4547fc mlx5_buf_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6f23c53e mlx5_eswitch_add_send_to_vport_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6fc972d8 mlx5_core_create_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x70211e23 mlx5_core_destroy_rqt EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7261330b __SCK__tp_func_mlx5_fs_set_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x74452f76 mlx5_rl_add_rate -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x76969823 mlx5_core_destroy_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x770ae26d mlx5_core_detach_mcg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x79e2269c mlx5_lag_get_slave_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x72789099 mlx5_cmd_exec_polling +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x73fb17f9 mlx5_core_modify_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x76efa552 __traceiter_mlx5_fs_del_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x781f76b0 mlx5_fpga_sbu_conn_create 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 0x7cd505f0 mlx5_fc_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7b456931 mlx5_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7b8b7325 mlx5_lag_is_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7c0f44d4 mlx5_cmd_exec_cb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7c9eb1fc __traceiter_mlx5_fs_add_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7e12d629 mlx5_lag_get_peer_mdev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7e55fb10 mlx5_core_destroy_tir 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 0x81687ebe mlx5_cmd_alloc_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x839ef697 mlx5_fs_add_rx_underlay_qpn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x81ffd331 mlx5_rdma_rn_get_params +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x863cea9b mlx5_core_roce_gid_set 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 0x8ad9609b mlx5_eq_disable -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8eb38a3b mlx5_rsc_dump_next -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x90904f4e __traceiter_mlx5_fs_add_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8785e2f6 mlx5_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x87ebebe2 mlx5_core_modify_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x883ec044 mlx5_nic_vport_disable_roce +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8e2dd40d mlx5_lag_is_sriov EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x91443f27 mlx5_create_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x936038ab mlx5_rsc_dump_cmd_create -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x94375f2c mlx5_core_modify_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9660eebb mlx5_query_ib_port_oper -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96dc8d70 mlx5_core_query_vendor_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9406308b mlx5_fpga_mem_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9424587c mlx5_cmd_free_uar EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96eb2c99 mlx5_fc_id -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9750025e mlx5_lag_is_active -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x97fd4100 mlx5_core_destroy_tir -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x981a2c41 mlx5_eswitch_reg_c1_loopback_enabled -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x991d1f12 mlx5_eq_create_generic +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x97586064 mlx5_core_attach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x991418ba mlx5_eq_destroy_generic 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 0xa4fdb32e mlx5_packet_reformat_dealloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa812363f __traceiter_mlx5_fs_del_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa98fee10 mlx5_mpfs_del_mac -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaac64227 mlx5_eswitch_add_send_to_vport_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xab1e0540 mlx5_core_attach_mcg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xabca7137 mlx5_core_modify_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xacf32fcc mlx5_packet_reformat_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9dfdc437 mlx5_core_modify_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa18b260e mlx5_eswitch_get_core_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa58dfa79 mlx5_fc_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa735048f mlx5_create_flow_group +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa939e584 __traceiter_mlx5_fw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa9959d66 mlx5_core_query_rq EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xad6815cd mlx5_rsc_dump_cmd_destroy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaf6c890f mlx5_fs_remove_rx_underlay_qpn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb258b9a6 mlx5_nic_vport_disable_roce -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb4e2df77 mlx5_fc_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xadac733d mlx5_eswitch_register_vport_reps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xadd29ab5 mlx5_eq_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xafa0d7dd mlx5_rl_is_in_range +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb091f933 mlx5_rl_add_rate_raw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb1e93f9a mlx5_lag_is_shared_fdb +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 0xb3d6324e mlx5_modify_header_dealloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb5338b3b mlx5_del_flow_rules +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb6a4fef4 mlx5_eq_get_eqe 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 0xb7ac261d mlx5_core_destroy_psv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb9da1a59 mlx5_core_roce_gid_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbac095e7 mlx5_core_dealloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb79a76d6 __traceiter_mlx5_fs_del_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xba5c2f4f __traceiter_mlx5_fs_del_fg EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbb475e47 __tracepoint_mlx5_fs_set_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbc634825 mlx5_core_alloc_transport_domain -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbf2d4a70 mlx5_comp_vectors_count -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc16a1cc2 mlx5_eq_update_ci -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc2e18755 mlx5_notifier_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc2f289ea mlx5_get_flow_namespace -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc59ff0b4 mlx5_eswitch_unregister_vport_reps -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc63c1430 mlx5_eswitch_get_vport_metadata_for_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc6a157ee mlx5_fpga_get_sbu_caps -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcf922fcc __traceiter_mlx5_fs_set_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcfffd8da mlx5_put_uars_page -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd03e9772 mlx5_core_create_rqt -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd1372709 mlx5_rdma_rn_get_params -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd2f618cf mlx5_vector2eqn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbc8276ea mlx5_rl_remove_rate_raw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc26b8894 mlx5_query_ib_port_oper +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc3708807 mlx5_put_uars_page +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc4f2be27 mlx5_eswitch_get_vport_metadata_for_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc53c493e mlx5_eq_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc96d3d85 mlx5_fc_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc9a99791 mlx5_get_uars_page +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcb5cca39 mlx5_debugfs_root +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcf145f53 mlx5_get_fdb_sub_ns +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd2a0e722 mlx5_lag_query_cong_counters +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd3ab8aa2 mlx5_rl_remove_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd4b6f532 mlx5_eq_disable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd5c65406 mlx5_comp_vectors_count 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 0xd82f43de mlx5_eq_enable -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd8649b31 mlx5_core_query_mkey EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd8a12a67 mlx5_destroy_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdc780367 mlx5_eswitch_vport_rep -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdf069cb1 mlx5_lag_is_roce -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe1293130 mlx5_notifier_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe2524021 mlx5_buf_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd9b2ade4 mlx5_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdafb520b mlx5_eswitch_get_vport_metadata_for_match +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdb3df895 mlx5_eswitch_uplink_get_proto_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdbe2caca mlx5_free_bfreg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xddbdf4fa mlx5_eswitch_vport_match_metadata_enabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe2a6f5db mlx5_core_create_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe3c0f6e0 mlx5_eswitch_reg_c1_loopback_enabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe4085b52 mlx5_core_dealloc_transport_domain EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe4e09c2b __tracepoint_mlx5_fw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe588feeb mlx5_eq_notifier_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe5c79e92 mlx5_rl_remove_rate -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe75b0d73 mlx5_qp_debugfs_init -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe78e7e2f mlx5_cmd_free_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe8cb039d mlx5_core_query_sq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe9a59ccb mlx5_core_dealloc_transport_domain -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeb10b742 mlx5_core_query_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe778421a mlx5_core_destroy_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe857c751 mlx5_fs_add_rx_underlay_qpn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeb106914 mlx5_add_flow_rules 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 0xeee6f5cb mlx5_debug_qp_remove -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xef1fc1d0 mlx5_core_destroy_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf21d39c4 mlx5_cmd_cleanup_async_ctx -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf2d2a62e mlx5_fpga_mem_write -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf33a94ff mlx5_eq_notifier_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf554ecb5 mlx5_cmd_exec -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf5b1bb55 __traceiter_mlx5_fs_add_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xed15a85b mlx5_core_query_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeea1274f mlx5_fs_remove_rx_underlay_qpn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf292b72e mlx5_cmd_init_async_ctx +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf4f8022f mlx5_rl_add_rate 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 0xf97a1e81 mlx5_eswitch_register_vport_reps -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf9a8c4d3 mlx5_free_bfreg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfb398cbf mlx5_core_create_tis -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfb7be315 mlx5_alloc_bfreg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf926da81 mlx5_core_modify_sq 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 0xfe79e554 mlx5_rl_add_rate_raw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xff1c8762 mlx5_eq_get_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxfw/mlxfw 0x205dc2d6 mlxfw_firmware_flash +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfeaefd3b mlx5_vector2eqn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xffdcd9d2 mlx5_lag_get_slave_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxfw/mlxfw 0x233b1193 mlxfw_firmware_flash 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 0x05839aa1 mlxsw_core_ptp_transmitted +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x02f14473 mlxsw_core_bus_device_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x03b20906 mlxsw_afa_block_append_mirror +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x04b313b6 mlxsw_core_port_eth_set EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x07abcc0c mlxsw_afa_block_append_trap EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0ca34ccf mlxsw_core_max_ports EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0e81c09c mlxsw_afk_destroy @@ -3031,22 +3033,19 @@ EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x15801382 mlxsw_afk_key_info_put EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x18b0ad00 mlxsw_afa_block_append_police EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x19fa5852 mlxsw_core_flush_owq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x1b98f4c5 mlxsw_core_driver_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x1c6605f6 mlxsw_afa_block_append_qos_switch_prio 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 0x2193893c mlxsw_core_skb_transmit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x207cfb29 mlxsw_core_trap_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x21daf3af mlxsw_afa_block_append_qos_dsfield -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x22da100f mlxsw_afa_create EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x23eddc68 mlxsw_core_cpu_port_init EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2c68ced3 mlxsw_core_read_frc_h -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2dc7d933 mlxsw_core_port_eth_set EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x30d72838 mlxsw_env_get_module_eeprom_by_page EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x35ba2254 mlxsw_afk_values_add_u32 -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x37c4c3ca mlxsw_env_get_module_eeprom +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x36663813 mlxsw_core_rx_listener_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x3689ecea mlxsw_core_skb_transmit EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x38185d87 mlxsw_afa_block_append_qos_ecn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x39562f3a mlxsw_core_bus_device_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x3d979d5e mlxsw_core_trap_state_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x382c945e mlxsw_core_driver_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x406b4614 mlxsw_afa_block_append_counter 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 @@ -3055,18 +3054,22 @@ EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4b0bae55 mlxsw_core_kvd_sizes_get EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5a099407 mlxsw_afa_block_append_qos_dscp EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5cf3dd79 mlxsw_core_bus_device_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5f85a6dd mlxsw_core_trap_unregister 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 0x61ea9293 mlxsw_core_event_listener_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x62331832 mlxsw_core_ptp_transmitted EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x63874d4c mlxsw_core_port_driver_priv EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x65e16da4 mlxsw_afk_key_info_get EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x692ac04e mlxsw_afk_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x714007c3 mlxsw_core_trap_state_set EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x71e1d813 mlxsw_core_port_clear EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x749556a2 mlxsw_afk_key_info_subset EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x74eb7c9e mlxsw_core_res_valid EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x77768221 mlxsw_core_module_max_width EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x77d83398 mlxsw_core_read_frc_l EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7f659d4c mlxsw_afa_block_append_vlan_modify +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x813b3820 mlxsw_env_get_module_eeprom 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 0x858c30d0 mlxsw_afa_block_create @@ -3080,8 +3083,9 @@ 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 0xa06cd328 mlxsw_afa_create EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa7765e88 mlxsw_reg_query -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb1e0de9a mlxsw_core_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa841b715 mlxsw_core_driver_unregister EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb5e762fa mlxsw_afk_values_add_buf 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 0xb9f797a9 mlxsw_env_module_overheat_counter_get @@ -3089,14 +3093,14 @@ EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbbb7a867 mlxsw_afa_block_append_sampler EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbc222a8d mlxsw_afk_clear EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbe82d6cc mlxsw_env_get_module_info +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbf5bf7a4 mlxsw_core_rx_listener_unregister EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbfb7df3c mlxsw_core_driver_priv EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbfd01f33 mlxsw_core_port_ib_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc4dc2f29 mlxsw_core_skb_receive -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc54d51ff mlxsw_core_rx_listener_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc9c2e4cc mlxsw_core_lag_mapping_clear -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc9d023b5 mlxsw_core_port_devlink_port_get EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xca257489 mlxsw_afa_block_append_fwd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xcb1b3b03 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 0xcea44a1e mlxsw_core_port_devlink_port_get EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd1a82f0b mlxsw_core_lag_mapping_get EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd252e62d mlxsw_core_skb_transmit_busy EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd28256cf mlxsw_afa_block_append_allocated_counter @@ -3109,101 +3113,97 @@ EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xde4e211f mlxsw_afa_block_append_l4port EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdeb1dc2e mlxsw_afa_block_first_kvdl_index EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe16986dd mlxsw_afa_block_activity_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe218cc9c mlxsw_core_trap_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe685a7ea mlxsw_core_rx_listener_unregister EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xecab212a mlxsw_afa_cookie_lookup -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf07d87bc mlxsw_afa_block_append_mirror EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf2ca3bae mlxsw_core_res_query_enabled EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf4909bea mlxsw_core_port_type_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf636ae35 mlxsw_core_trap_unregister EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xff007c25 mlxsw_core_cpu_port_fini -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0x29d8a19e mlxsw_i2c_driver_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0xbbd192de mlxsw_i2c_driver_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0xe3f7c47d mlxsw_pci_driver_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0xf878ccfe mlxsw_pci_driver_register -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x03fbdd37 ocelot_sb_port_pool_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x074346ea ocelot_port_inject_frame -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x07f6f36f ocelot_hwstamp_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1334fdba ocelot_port_lag_join -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x14051f30 ocelot_can_inject -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1ad1ae66 ocelot_ptp_gettime64 -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1c2b9ca1 ocelot_port_lag_change -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1cc71956 ocelot_devlink_sb_register -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1dc266db ocelot_init -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1e7648b1 ocelot_get_ts_info -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x20703d78 ocelot_sb_occ_max_clear -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x23fe0d95 ocelot_sb_tc_pool_bind_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x256ea4b2 ocelot_port_policer_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2633cd8d ocelot_bridge_stp_state_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0x27c30f86 mlxsw_i2c_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0x37dd31d6 mlxsw_i2c_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0x340758a6 mlxsw_pci_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0xa0a9ce54 mlxsw_pci_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x02c0d636 ocelot_fdb_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x09b2cfb6 ocelot_deinit_timestamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0b27b12d ocelot_init_port +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0b9a2de5 ocelot_vlan_prepare +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0e83e79a ocelot_ptp_verify +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0edde4a9 ocelot_apply_bridge_fwd_mask +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x16a0904e ocelot_port_lag_join +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x17ec0828 ocelot_port_inject_frame +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1ba1ed45 ocelot_port_pre_bridge_flags +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1d67f57d ocelot_port_set_maxlen +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1dbc82d4 ocelot_port_bridge_leave +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x221ead7d ocelot_vlan_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x23cc1e78 ocelot_devlink_sb_unregister EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x274a0e05 ocelot_port_fdb_do_dump -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x28d92500 ocelot_apply_bridge_fwd_mask -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x299a88f4 ocelot_port_bridge_leave -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2e41820a ocelot_get_ethtool_stats -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x36a18f91 ocelot_mrp_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3e3d3b56 ocelot_sb_occ_port_pool_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x425adbf0 ocelot_get_max_mtu -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x436c3912 ocelot_vlan_prepare -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x45adafa6 ocelot_mrp_del_ring_role -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x575c61da ocelot_fdb_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5a17b214 ocelot_sb_port_pool_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5a3a6109 ocelot_get_strings -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5fdea822 ocelot_deinit_port -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6174ddeb ocelot_init_port -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6b9921aa ocelot_port_pre_bridge_flags -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6f64fc11 ocelot_port_bridge_flags -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x71203aa2 ocelot_ptp_settime64 -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x72601560 ocelot_port_mdb_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x74379d59 ocelot_fdb_dump -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x74f05633 ocelot_sb_occ_snapshot -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7a3b81a9 ocelot_mrp_add_ring_role -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7bbf2f27 ocelot_init_timestamp -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8026eddc ocelot_fdb_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8481243b ocelot_port_policer_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8971cdec ocelot_mrp_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2862d7fe ocelot_get_max_mtu +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2dc36609 ocelot_vlan_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2f993be3 ocelot_sb_port_pool_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x326983b9 ocelot_vcap_filter_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x33dac3c1 ocelot_fdb_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x34d7047a ocelot_sb_pool_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3a3752c9 ocelot_sb_pool_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3af95b45 ocelot_port_bridge_flags +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3ee23208 ocelot_sb_tc_pool_bind_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x41c379ac ocelot_sb_occ_max_clear +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x44d345f1 ocelot_set_ageing_time +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x45585897 ocelot_get_sset_count +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x466d229f ocelot_port_bridge_join +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x468f54e3 ocelot_sb_tc_pool_bind_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x49958b6a ocelot_ptp_gettime64 +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x533ced5e ocelot_port_lag_leave +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x563fd3bf ocelot_sb_occ_snapshot +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x60435e56 ocelot_fdb_dump +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x61b7c526 ocelot_get_txtstamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x647ec2ce ocelot_mact_learn +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x70ae425f ocelot_port_mdb_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x72d8419e ocelot_port_vlan_filtering +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7f44b9b7 ocelot_hwstamp_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x802972f7 ocelot_init_timestamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x808e6ee1 ocelot_get_strings +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x80f59cae ocelot_ptp_settime64 +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x86bfc1f7 ocelot_sb_occ_port_pool_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x87065184 ocelot_port_mdb_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8892ee8b ocelot_port_txtstamp_request EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8a85c6a8 ocelot_vcap_block_find_filter_by_id -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8b649504 ocelot_sb_tc_pool_bind_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8e86af9c ocelot_port_bridge_join -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x900582c7 ocelot_drain_cpu_queue -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x90d46d6f ocelot_ptp_verify -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x92eab981 ocelot_vcap_filter_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x992d4ae4 ocelot_ptp_enable -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9a918d88 ocelot_devlink_sb_unregister -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9c5b28e3 ocelot_deinit_timestamp -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9ec4b1be ocelot_port_set_maxlen -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xaa83b955 ocelot_get_sset_count -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xaceb26ef ocelot_port_mdb_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb3f4b5aa ocelot_port_txtstamp_request -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb4f0ece1 ocelot_sb_pool_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb50fd7bb ocelot_get_txtstamp -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb60edbbf ocelot_set_ageing_time -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbb5230d4 ocelot_vcap_filter_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbbfcb69d ocelot_sb_pool_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc310d873 ocelot_vlan_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd0337cae ocelot_vlan_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd5cc8b70 ocelot_mact_learn -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd93cbf4c ocelot_hwstamp_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xdb7209e0 ocelot_sb_occ_tc_port_bind_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xdc3eb905 ocelot_port_vlan_filtering -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xdc9a0f15 ocelot_ptp_adjtime -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe18142e5 ocelot_ptp_adjfine -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe4928ecb ocelot_mact_forget -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xeb734526 ocelot_xtr_poll_frame -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xed13694b ocelot_deinit -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfacd3525 ocelot_port_lag_leave +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x937d7e27 ocelot_mrp_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x941f0623 ocelot_devlink_sb_register +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x94c15523 ocelot_bridge_stp_state_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x98a30b8f ocelot_port_policer_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x992504f6 ocelot_ptp_enable +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9bef8118 ocelot_deinit_port +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa74f755e ocelot_init +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa8f11166 ocelot_hwstamp_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xade2b344 ocelot_ptp_adjtime +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xafb5de8a ocelot_mrp_add_ring_role +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb4e94c06 ocelot_can_inject +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbc6f8750 ocelot_ptp_adjfine +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc737dc01 ocelot_deinit +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc9ea69a4 ocelot_drain_cpu_queue +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xcc14bbd9 ocelot_port_lag_change +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd28ecf5e ocelot_mrp_del_ring_role +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd2dec40b ocelot_sb_occ_tc_port_bind_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd94274d3 ocelot_mrp_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xda5ac234 ocelot_xtr_poll_frame +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xde0c1596 ocelot_get_ethtool_stats +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xde326f28 ocelot_port_policer_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xec16a4de ocelot_vcap_filter_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf31b67a1 ocelot_sb_port_pool_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf77e6f5d ocelot_get_ts_info +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfbb78003 ocelot_mact_forget +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x3245461c qed_get_fcoe_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x439ece81 qed_get_iscsi_ops EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x4f264472 qed_put_iscsi_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x5b7ecdfd qed_get_eth_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x69435e91 qed_get_fcoe_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x9830ffb3 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 0x9a05c3e7 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 0xe362b934 qed_get_iscsi_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qede/qede 0x2211bb33 qede_rdma_register_driver -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qede/qede 0x9199623f qede_rdma_unregister_driver -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x23db9f87 hdlcdrv_unregister -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x55b77476 hdlcdrv_transmitter -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x5a97953f hdlcdrv_receiver -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xc4c26d3a hdlcdrv_arbitrate -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xfc1c4e59 hdlcdrv_register +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xa94691a0 qed_get_rdma_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qede/qede 0x664b8974 qede_rdma_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qede/qede 0x7190fe81 qede_rdma_register_driver +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x2c7c5f4c hdlcdrv_unregister +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x54f66524 hdlcdrv_transmitter +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x7139b53e hdlcdrv_arbitrate +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x777cbdc0 hdlcdrv_register +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xb72a6377 hdlcdrv_receiver EXPORT_SYMBOL drivers/net/mdio 0x3e17f466 mdio_set_flag EXPORT_SYMBOL drivers/net/mdio 0x424a69a2 mdio45_ethtool_ksettings_get_npage EXPORT_SYMBOL drivers/net/mdio 0x60443957 mdio45_probe @@ -3211,1294 +3211,1296 @@ 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 0x56ebd591 free_mdio_bitbang -EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0x5d0b7696 mdiobb_read -EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0x6c3065d7 mdiobb_write -EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0x8985d5da alloc_mdio_bitbang -EXPORT_SYMBOL drivers/net/mdio/mdio-cavium 0x73f65b20 cavium_mdiobus_write -EXPORT_SYMBOL drivers/net/mdio/mdio-cavium 0xced51233 cavium_mdiobus_read -EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0x3cc858aa xgene_mdio_rd_mac -EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0x65ab9b14 xgene_mdio_rgmii_read -EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0x89b3b4d0 xgene_mdio_wr_mac -EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0xc054c9be xgene_mdio_rgmii_write -EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0xe330b382 xgene_enet_phy_register -EXPORT_SYMBOL drivers/net/pcs/pcs-lynx 0x1d7ef814 lynx_pcs_destroy -EXPORT_SYMBOL drivers/net/pcs/pcs-lynx 0xf7a824fb lynx_pcs_create -EXPORT_SYMBOL drivers/net/phy/bcm-phy-lib 0x967f034c bcm54xx_auxctl_write -EXPORT_SYMBOL drivers/net/ppp/pppox 0x1268b6ed pppox_compat_ioctl -EXPORT_SYMBOL drivers/net/ppp/pppox 0x54adf383 pppox_ioctl -EXPORT_SYMBOL drivers/net/ppp/pppox 0xa0578a24 register_pppox_proto -EXPORT_SYMBOL drivers/net/ppp/pppox 0xc1a510d4 pppox_unbind_sock +EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0x1ed3b5b5 mdiobb_write +EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0x6eb189b0 mdiobb_read +EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0x7bcd51e4 alloc_mdio_bitbang +EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0x99ebbc43 free_mdio_bitbang +EXPORT_SYMBOL drivers/net/mdio/mdio-cavium 0x1ea8a465 cavium_mdiobus_read +EXPORT_SYMBOL drivers/net/mdio/mdio-cavium 0x5ad5dad0 cavium_mdiobus_write +EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0x0fba0ba4 xgene_mdio_rgmii_read +EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0x4a5ce0a7 xgene_mdio_rd_mac +EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0x4f22fa3a xgene_mdio_rgmii_write +EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0x6e499d06 xgene_enet_phy_register +EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0x71ac37e5 xgene_mdio_wr_mac +EXPORT_SYMBOL drivers/net/pcs/pcs-lynx 0x0d18050b lynx_pcs_create +EXPORT_SYMBOL drivers/net/pcs/pcs-lynx 0x0f7843d7 lynx_pcs_destroy +EXPORT_SYMBOL drivers/net/phy/bcm-phy-lib 0x1e9eb464 bcm54xx_auxctl_write +EXPORT_SYMBOL drivers/net/ppp/pppox 0x4271f1ec pppox_unbind_sock +EXPORT_SYMBOL drivers/net/ppp/pppox 0x44fcc3e5 pppox_ioctl +EXPORT_SYMBOL drivers/net/ppp/pppox 0x7cb06a3b pppox_compat_ioctl +EXPORT_SYMBOL drivers/net/ppp/pppox 0x8b47cd31 register_pppox_proto EXPORT_SYMBOL drivers/net/ppp/pppox 0xe0ff7a18 unregister_pppox_proto -EXPORT_SYMBOL drivers/net/sungem_phy 0xd92602bb sungem_phy_probe -EXPORT_SYMBOL drivers/net/team/team 0x0f6cc0ec team_modeop_port_enter -EXPORT_SYMBOL drivers/net/team/team 0x4b2ba734 team_option_inst_set_change -EXPORT_SYMBOL drivers/net/team/team 0x843a4b92 team_options_change_check -EXPORT_SYMBOL drivers/net/team/team 0xb428ff0b team_modeop_port_change_dev_addr -EXPORT_SYMBOL drivers/net/team/team 0xe11221dd team_mode_unregister -EXPORT_SYMBOL drivers/net/team/team 0xe57c93ed team_options_register -EXPORT_SYMBOL drivers/net/team/team 0xef85a56e team_options_unregister -EXPORT_SYMBOL drivers/net/team/team 0xfeab1ed5 team_mode_register -EXPORT_SYMBOL drivers/net/usb/usbnet 0x4728223a usbnet_manage_power -EXPORT_SYMBOL drivers/net/usb/usbnet 0x768cffa3 usbnet_link_change -EXPORT_SYMBOL drivers/net/usb/usbnet 0x96597945 usbnet_device_suggests_idle -EXPORT_SYMBOL drivers/net/wan/hdlc 0x2b6d49cc unregister_hdlc_device -EXPORT_SYMBOL drivers/net/wan/hdlc 0x3b6f6f48 hdlc_open -EXPORT_SYMBOL drivers/net/wan/hdlc 0x588edb11 unregister_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0x937aac8b hdlc_ioctl -EXPORT_SYMBOL drivers/net/wan/hdlc 0x9e656374 hdlc_start_xmit -EXPORT_SYMBOL drivers/net/wan/hdlc 0xc82633fc register_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0xd5ffdad7 detach_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0xdf0e865d attach_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0xe0145c49 alloc_hdlcdev -EXPORT_SYMBOL drivers/net/wan/hdlc 0xe41d3039 hdlc_close +EXPORT_SYMBOL drivers/net/sungem_phy 0x2eba9c5d sungem_phy_probe +EXPORT_SYMBOL drivers/net/team/team 0x4a48f43f team_options_unregister +EXPORT_SYMBOL drivers/net/team/team 0x522bf420 team_option_inst_set_change +EXPORT_SYMBOL drivers/net/team/team 0x5d119b27 team_options_change_check +EXPORT_SYMBOL drivers/net/team/team 0x7a229f9c team_modeop_port_change_dev_addr +EXPORT_SYMBOL drivers/net/team/team 0x84a10177 team_modeop_port_enter +EXPORT_SYMBOL drivers/net/team/team 0xbb1437b8 team_mode_register +EXPORT_SYMBOL drivers/net/team/team 0xed9b7076 team_options_register +EXPORT_SYMBOL drivers/net/team/team 0xf0b5de42 team_mode_unregister +EXPORT_SYMBOL drivers/net/usb/usbnet 0x21edf2db usbnet_manage_power +EXPORT_SYMBOL drivers/net/usb/usbnet 0x3c1cc304 usbnet_device_suggests_idle +EXPORT_SYMBOL drivers/net/usb/usbnet 0x745539cc usbnet_link_change +EXPORT_SYMBOL drivers/net/wan/hdlc 0x1bb5a7c0 unregister_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x41e7423a alloc_hdlcdev +EXPORT_SYMBOL drivers/net/wan/hdlc 0x5acb0d8a hdlc_ioctl +EXPORT_SYMBOL drivers/net/wan/hdlc 0x5b99701c attach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x5d3fda63 detach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x918bc67a hdlc_open +EXPORT_SYMBOL drivers/net/wan/hdlc 0xb18d45d5 register_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xed5785f5 hdlc_start_xmit +EXPORT_SYMBOL drivers/net/wan/hdlc 0xf8e51272 unregister_hdlc_device +EXPORT_SYMBOL drivers/net/wan/hdlc 0xfa8e68ac hdlc_close EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x108b188f ath_is_49ghz_allowed -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x16bbf5f9 ath_regd_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x18cd015d ath_hw_keysetmac +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x183ad774 ath_is_mybeacon +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x2414e58a ath_hw_keyreset +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x3fea1d21 dfs_pattern_detector_init EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x4571aea8 ath_is_world_regd -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x5868a1d7 ath_hw_keyreset -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x5dbfb994 ath_hw_get_listen_time -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x5dee50a1 ath_reg_notifier_apply -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x71c37061 ath_key_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x914e5923 ath_hw_cycle_counters_update +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x59fd270b ath_hw_keysetmac +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x6adf4e4f ath_hw_cycle_counters_update +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x753e9b9d ath_hw_get_listen_time +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x7912bd98 ath_hw_setbssidmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x7d56bf91 ath_key_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x90cb8bd7 ath_reg_notifier_apply EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xa18f224e ath_regd_find_country_by_name -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xa3de3517 ath_hw_setbssidmask -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xa61cba18 ath_printk -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xb4d8cb0d ath_rxbuf_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xa41dac69 ath_regd_init EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xb6588ba6 ath_bus_type_strings -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xd6d62186 ath_key_delete -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xde16a2bb ath_is_mybeacon -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xdfb28a9b dfs_pattern_detector_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xbd377cca ath_rxbuf_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xd4e73aae ath_key_delete +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xef53d891 ath_printk EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xf98605d5 ath_regd_get_band_ctl +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x00a1943b ath10k_ce_disable_interrupts EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x015e5db2 ath10k_debug_mask -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x02cecbcc ath10k_ce_num_free_src_entries -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x092bf6c1 ath10k_htc_process_trailer -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1199d930 ath10k_htc_tx_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x12b439a4 ath10k_htt_rx_pktlog_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x153ab5bc ath10k_htt_txrx_compl_task -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x16758258 ath10k_core_free_board_files -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1bb0feda ath10k_ce_enable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1dc36244 ath10k_ce_alloc_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3094aca3 ath10k_ce_per_engine_service -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x31a74c56 ath10k_ce_completed_send_next_nolock -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x36b727a7 ath10k_ce_rx_update_write_idx -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3c9ebeea __ath10k_ce_rx_num_free_bufs -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3cd91246 ath10k_coredump_new -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x40ed8bb0 ath10k_htc_rx_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x410ae7c9 __ath10k_ce_send_revert -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4c2514b6 ath10k_ce_alloc_rri -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x50b4c7e6 ath10k_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x551f1003 ath10k_core_check_dt -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x583278ca ath10k_coredump_get_mem_layout -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5e7fe93c ath10k_ce_completed_recv_next_nolock -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6812a02e ath10k_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x688a1226 ath10k_ce_send -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x69c8d8f0 ath10k_ce_send_nolock -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6cc530e3 ath10k_bmi_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6dc48728 ath10k_ce_per_engine_service_any -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6e691b0a ath10k_core_napi_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6f237dc5 ath10k_ce_rx_post_buf -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x71e025db ath10k_core_napi_sync_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x736f99f6 ath10k_ce_disable_interrupt -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x79b7c9c2 ath10k_ce_init_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7a2c2145 ath10k_bmi_read_memory -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7ba5a120 ath10k_mac_tx_push_pending -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x84ae9e55 ath10k_ce_revoke_recv_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8505dacc ath10k_htt_t2h_msg_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x867970db ath10k_ce_completed_send_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8a9c0d80 ath10k_core_unregister -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8acee466 ath10k_warn -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x905ded87 ath10k_core_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x93fefbf7 ath10k_core_fetch_board_file -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x94e06b2c ath10k_htt_rx_hl_indication -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9c8a0dbb ath10k_ce_completed_recv_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9c91a8a8 ath10k_core_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0173211e __ath10k_ce_send_revert +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x02129a18 ath10k_core_fetch_board_file +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0516d269 ath10k_ce_cancel_send_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x05a8d752 ath10k_ce_completed_send_next_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x066b7c53 ath10k_ce_num_free_src_entries +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x06cb48b3 __ath10k_ce_rx_num_free_bufs +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0d23799f ath10k_core_unregister +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x167e103e ath10k_ce_completed_recv_next_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1898c052 ath10k_ce_init_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1ee430b8 ath10k_htt_rx_pktlog_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x21d1d677 ath10k_ce_send +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x229ced1f ath10k_core_napi_sync_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x292ec6cb ath10k_core_free_board_files +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2f8c2d44 ath10k_ce_completed_send_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3a2c1753 ath10k_ce_revoke_recv_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3ad7fa19 ath10k_core_start_recovery +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x45685a65 ath10k_coredump_new +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4f66c5eb ath10k_ce_free_rri +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5156ea53 ath10k_ce_free_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5a797084 ath10k_htc_rx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5fff3a03 ath10k_ce_enable_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6440b9d0 ath10k_htc_tx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x66302ca3 ath10k_ce_per_engine_service +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x69ae9d95 ath10k_htc_process_trailer +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x73cf8b9b ath10k_mac_tx_push_pending +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x84b0b469 ath10k_bmi_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x867041e0 ath10k_ce_alloc_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8917347a ath10k_htt_hif_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8c691599 ath10k_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8d9524e1 ath10k_print_driver_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8e290417 ath10k_coredump_get_mem_layout +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x93ce70a7 ath10k_bmi_read_memory +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x951c95fc ath10k_ce_disable_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x97cf4052 ath10k_htt_rx_hl_indication +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9c17ef4f ath10k_warn EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa1e4849a __tracepoint_ath10k_log_dbg -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa215a45b ath10k_print_driver_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xab0f12ae ath10k_ce_disable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xad4b22a4 ath10k_ce_cancel_send_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc19244d2 ath10k_core_start_recovery -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc8181e55 ath10k_ce_free_rri -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc95336ec ath10k_ce_enable_interrupt -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xced16c3b ath10k_htt_hif_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd1a182fb ath10k_core_create -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd580f593 ath10k_ce_deinit_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe14d9966 ath10k_htc_notify_tx_completion -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe98f6249 ath10k_core_register -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf03724d0 ath10k_ce_dump_registers -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf30469dc ath10k_core_destroy -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf3ad60f2 ath10k_ce_free_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x090e2545 ath11k_ce_get_attr_flags -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x0d2659b1 ath11k_core_suspend -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x2887d44d ath11k_core_pre_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x41914f88 ath11k_ce_free_pipes -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x4b754f71 ath11k_hal_srng_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x4cafd06d ath11k_ce_per_engine_service -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x58383b87 ath11k_ce_cleanup_pipes -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x623fba46 ath11k_ce_rx_post_buf -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x62f4004d ath11k_warn -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x706d8e81 ath11k_core_resume -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x780360f1 ath11k_core_free -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x938847da ath11k_ce_get_shadow_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x9b23d2ac ath11k_core_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa9192d05 ath10k_ce_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa982a343 ath10k_ce_completed_recv_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb06aaa56 ath10k_ce_per_engine_service_any +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb9746bb1 ath10k_core_register +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xba31ca6e ath10k_core_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xbb616ad6 ath10k_core_check_dt +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xbcc13985 ath10k_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xbda208e5 ath10k_htc_notify_tx_completion +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xbdba6993 ath10k_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xcb13d8f9 ath10k_ce_send_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xcb25974d ath10k_ce_alloc_rri +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd14b96db ath10k_ce_rx_post_buf +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd7e23fac ath10k_htt_txrx_compl_task +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd89f1dc8 ath10k_core_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd9539ed8 ath10k_ce_dump_registers +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe8fac35c ath10k_htt_t2h_msg_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xea5b64ee ath10k_ce_rx_update_write_idx +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xec6c77b4 ath10k_ce_deinit_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xeccf7caf ath10k_core_napi_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xef9e4d19 ath10k_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x06a7ea11 ath11k_ce_get_shadow_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x0905d659 ath11k_ce_free_pipes +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x158412d7 ath11k_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x197a39ca ath11k_core_suspend +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x1f1455da ath11k_qmi_deinit_service +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x2851f1cd ath11k_hal_srng_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x36a76ae2 ath11k_hal_srng_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x437c3663 ath11k_ce_per_engine_service +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x4bce45ba ath11k_dp_service_srng +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x60eb581e ath11k_core_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x68060f31 ath11k_ce_get_attr_flags +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x686a1f45 ath11k_core_resume +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x6eb4d05d ath11k_core_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x85b8cf00 ath11k_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x864f2690 ath11k_debugfs_soc_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x9045b5f7 ath11k_core_pre_init EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x9c51bcc4 ath11k_debug_mask -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x9d45389f ath11k_core_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x9e44bb10 ath11k_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xa23873b5 ath11k_qmi_deinit_service -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xa34edad2 ath11k_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xa88aef56 ath11k_dp_service_srng -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xa91df54f ath11k_debugfs_soc_destroy -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xb4ad90ac ath11k_hal_srng_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xb807e76c ath11k_ce_alloc_pipes +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xa475fd89 ath11k_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xb6b315b3 ath11k_ce_alloc_pipes +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xc6ac0f84 ath11k_ce_rx_post_buf +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xd9ccbcca ath11k_core_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xe24be084 ath11k_ce_cleanup_pipes +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xe3391971 ath11k_core_alloc EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xf0197188 ath11k_cold_boot_cal -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xf399b549 ath11k_core_alloc EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x1354043d ath6kl_warn -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x32096a96 ath6kl_cfg80211_suspend EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x3502feef ath6kl_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x3c93f12a ath6kl_hif_intr_bh_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x5164dfe2 ath6kl_core_rx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x7372d585 ath6kl_cfg80211_resume +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x44ac26dc ath6kl_hif_intr_bh_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x52361e66 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 0x96d39205 ath6kl_core_create -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xa29b97b9 ath6kl_core_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xb14ce2b8 ath6kl_core_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xb27f65d1 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 0xbdd05fef ath6kl_core_destroy -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xc44d4820 ath6kl_stop_txrx -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xcb74968b ath6kl_read_tgt_stats -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xf129bf1f ath6kl_core_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x0c7dbb08 ath9k_cmn_init_channels_rates -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x0f9c2389 ath_cmn_process_fft -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x12b2610c ath9k_cmn_debug_base_eeprom -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2f20d2a0 ath9k_cmn_debug_phy_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x30647030 ath9k_cmn_beacon_config_adhoc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x49e1f4e8 ath9k_cmn_rx_skb_postprocess -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x5e363a59 ath9k_cmn_setup_ht_cap -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x8d111d00 ath9k_cmn_spectral_scan_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x8ece9a4f ath9k_cmn_spectral_init_debug -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x9ae2b93b ath9k_cmn_get_channel -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x9dd39e92 ath9k_cmn_spectral_scan_trigger -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xa08a2264 ath9k_cmn_beacon_config_sta -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xaf8e2db3 ath9k_cmn_beacon_config_ap +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xba8612a6 ath6kl_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xbb9ed69d ath6kl_core_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xc590692e ath6kl_read_tgt_stats +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xc66ee79d ath6kl_cfg80211_suspend +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xcd806156 ath6kl_core_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xdb578dc7 ath6kl_cfg80211_resume +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xe3b25b36 ath6kl_core_rx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xebe6aefd ath6kl_core_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x1e47c1f4 ath9k_cmn_debug_phy_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x305ada23 ath9k_cmn_rx_accept +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x3af7436a ath9k_cmn_get_hw_crypto_keytype +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x427d8299 ath9k_cmn_beacon_config_ap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x65e8e1db ath9k_cmn_debug_recv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x69ddf9c7 ath9k_cmn_update_txpow +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x79669798 ath9k_cmn_process_rate +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x7cbd14a0 ath9k_cmn_spectral_init_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x8a6bb174 ath9k_cmn_init_crypto +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x90027b1b ath9k_cmn_debug_modal_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xaf7e1cd5 ath9k_cmn_spectral_deinit_debug EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb76fccc7 ath9k_cmn_debug_stat_rx -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb891b5bb ath9k_cmn_init_crypto -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xbd5ba562 ath9k_cmn_debug_recv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xc353868b ath9k_cmn_process_rate -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xce39f214 ath9k_cmn_debug_modal_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xc0949659 ath9k_cmn_spectral_scan_trigger +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xc48da7d6 ath9k_cmn_rx_skb_postprocess +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xc4c847b3 ath9k_cmn_init_channels_rates +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd022d3c1 ath9k_cmn_reload_chainmask EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd2981357 ath9k_cmn_count_streams -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd7374ca7 ath9k_cmn_rx_accept -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xdf0f147f ath9k_cmn_spectral_deinit_debug -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xe8b9c322 ath9k_cmn_update_txpow -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf02af0b4 ath9k_cmn_process_rssi -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf42c5d13 ath9k_cmn_reload_chainmask -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xfe6b5e5d ath9k_cmn_get_hw_crypto_keytype -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x00bade99 ath9k_hw_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x03212d51 ath9k_hw_set_sta_beacon_timers -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x04164e00 ath9k_hw_gettsf64 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x046ed39e ath9k_hw_getrxfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x08d6591c ath9k_hw_setmcastfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0a4d74e5 ath9k_hw_stopdmarecv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0ec91232 ath9k_hw_txstart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd64fd9e1 ath9k_cmn_debug_base_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd9dadd8a ath9k_cmn_get_channel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xe15a67b0 ath9k_cmn_setup_ht_cap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xe757f0f3 ath_cmn_process_fft +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xe9b25e2e ath9k_cmn_process_rssi +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf12ad125 ath9k_cmn_spectral_scan_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf1c6775b ath9k_cmn_beacon_config_sta +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xfdef55cb ath9k_cmn_beacon_config_adhoc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x001f3c9d ar9003_hw_bb_watchdog_dbg_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0134f678 ath9k_hw_startpcureceive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x021cc1ee ath9k_hw_ani_monitor +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x048ef459 ath9k_hw_phy_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0cc97e8a ar9003_hw_bb_watchdog_check +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0dd5a382 ath9k_hw_resume_interrupts EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0f77dafc ath9k_hw_get_tsf_offset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x14a6b7f7 ath9k_hw_resettxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x18309498 ath9k_hw_name -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x18487c19 ath_gen_timer_free -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1aab63c4 ath9k_hw_init_btcoex_hw -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1b8ffa20 ath9k_hw_rxprocdesc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1c1eaec0 ath9k_hw_btcoex_bt_stomp -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1cb2e5ac ar9003_hw_bb_watchdog_dbg_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1d5c181d ath9k_hw_abort_tx_dma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1e1505c2 ath9k_hw_gpio_request_out -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1f06db8e ath9k_hw_beaconinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2001f8ca ath9k_hw_wow_apply_pattern -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x247f302e ath9k_hw_setpower -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x260284a0 ar9003_mci_set_bt_version -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2614f5f6 ath9k_hw_btcoex_init_mci -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x28b43712 ath_gen_timer_isr -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x28f28d16 ar9003_mci_send_wlan_channels -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x291dbb51 ath9k_hw_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x30877750 ath9k_hw_startpcureceive -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x33cfb0a3 ath9k_hw_phy_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x350a9e87 ar9003_paprd_is_done -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3611a5ba ath9k_hw_kill_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x36b5af2f ath9k_hw_updatetxtriglevel -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3b7feb8d ath9k_hw_putrxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x45ed8f55 ath9k_hw_beaconq_setup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x48307761 ath9k_hw_bstuck_nfcal -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4a658279 ar9003_mci_cleanup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4b79482f ar9003_mci_get_next_gpm_offset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4c9a99a1 ath9k_hw_numtxpending -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4fa85afd ar9003_paprd_setup_gain_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4fc92d98 ath9k_hw_btcoex_init_2wire -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x53eed31a ath9k_hw_btcoex_set_weight -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x544407b7 ath9k_hw_check_nav -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5cb24a88 ath9k_hw_set_tx_filter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5cbd3e33 ath9k_hw_setantenna -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5e0415a7 ath9k_hw_reset_tsf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x62e1605a ar9003_hw_bb_watchdog_check -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x64e3d874 ath9k_hw_addrxbuf_edma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x657b4a8a ath_gen_timer_alloc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6663ab6c ath9k_hw_intrpend -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x66c50ca6 ath9k_hw_gettsf32 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x686f33e1 ar9003_mci_state -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x694c2fd4 ath9k_hw_wait -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6db56674 ath9k_hw_wow_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6e81d64e ath9k_hw_computetxtime -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7149003f ath9k_hw_get_txq_props -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x72617f12 ath9k_hw_set_txq_props -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x72abc684 ath9k_hw_ani_monitor -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x73e2fccb ath9k_hw_stop_dma_queue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7bc1536c ar9003_mci_setup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7bd3cc19 ath9k_hw_gen_timer_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7bfd5fb1 ath9k_hw_abortpcurecv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7f98a9ff ath9k_hw_setrxfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x802efca7 ar9003_mci_send_message -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x80c86886 ar9003_mci_get_interrupt -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x833f3faa ar9003_paprd_populate_single_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x848d9dcb ath9k_hw_btcoex_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x84a8d4f0 ath9k_hw_getchan_noise -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x85dee6bf ath9k_hw_setuptxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8b5fc757 ar9003_paprd_create_curve -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8e7c2430 ath9k_hw_enable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8fac83ae ath9k_hw_set_txpowerlimit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x904e2b3b ath9k_hw_gettxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9917bf84 ar9003_paprd_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa2f014aa ath9k_hw_btcoex_init_3wire -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa786e671 ath9k_hw_reset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa89b9ec5 ath9k_hw_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaa21d20f ath9k_hw_setuprxdesc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xabcd415c ath9k_hw_setopmode -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xae6d77ce ath9k_hw_set_tsfadjust -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb4216a91 ath9k_hw_process_rxdesc_edma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb4b4dab4 ath9k_hw_set_gpio -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb79830fe ath9k_hw_gpio_request_in -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbac7748d ar9003_get_pll_sqsum_dvc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbbe76c18 ath9k_hw_loadnf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbc0e31d5 ath9k_hw_releasetxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbf6bd289 ath9k_hw_write_associd -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbf94c9be ath9k_hw_btcoex_set_concur_txprio -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc53ca928 ath9k_hw_setrxabort -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc5a64775 ath9k_hw_init_global_settings -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc8eb1de0 ar9003_is_paprd_enabled -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc9173ada ath9k_hw_reset_calvalid -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xca1cb8de ath9k_hw_settsf64 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xca200b58 ath9k_hw_btcoex_init_scheme -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xca21f47a ath9k_hw_resume_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xce09123d ath9k_hw_btcoex_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xce3d9848 ath9k_hw_set_rx_bufsize -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd3ac66b8 ar9003_paprd_init_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd8d81446 ar9003_hw_disable_phy_restart -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdaa579aa ath9k_hw_gpio_get -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdfb1806c ath9k_hw_wow_wakeup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe0eec9b1 ath9k_hw_getnf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe789ffab ath9k_hw_disable_mib_counters -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe8f72d9e ath9k_hw_disable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe92c1412 ath9k_hw_puttxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xef47d496 ath9k_hw_check_alive -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xefa964f7 ath9k_hw_btcoex_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf5a2a056 ath9k_hw_gen_timer_stop -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf6449876 ath9k_hw_gpio_free -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf665d847 ath9k_hw_setup_statusring -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf723fa00 ath9k_hw_set_interrupts -EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x7b5389d4 atmel_open -EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0xa9618411 init_atmel_card -EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0xcb60a1f2 stop_atmel_card -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x1282fd2d brcmu_pktq_pdeq +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x11f19412 ath_gen_timer_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x120c5700 ath9k_hw_intrpend +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x19deb6ac ar9003_paprd_init_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1a20a797 ath9k_hw_wow_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1afe9a56 ath9k_hw_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1ecbf508 ar9003_mci_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1f93e488 ath9k_hw_settsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1fc019fd ath9k_hw_setuprxdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x205324f1 ar9003_paprd_populate_single_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x25310ada ath9k_hw_check_nav +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2e5f8185 ath9k_hw_abort_tx_dma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2ec828d2 ath9k_hw_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2fbf4608 ar9003_hw_disable_phy_restart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x30dd1aba ath9k_hw_gpio_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x36e31ced ath9k_hw_gen_timer_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3863060d ar9003_paprd_setup_gain_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3f4f82c6 ar9003_is_paprd_enabled +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x42778486 ath9k_hw_gettxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4353461a ath9k_hw_bstuck_nfcal +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4394d1b5 ar9003_mci_get_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x478def80 ath9k_hw_gettsf32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4968be6a ar9003_mci_send_wlan_channels +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4c61dd89 ath9k_hw_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4c80e571 ath9k_hw_releasetxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x504bd35f ath9k_hw_putrxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5305e499 ath9k_hw_btcoex_init_3wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5527b683 ath9k_hw_btcoex_set_concur_txprio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x57b476f3 ath9k_hw_kill_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x58fb191d ath9k_hw_gpio_request_in +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x613261ee ath9k_hw_txstart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x63874213 ath9k_hw_gen_timer_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x64bd5355 ath_gen_timer_isr +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6b366f23 ath9k_hw_reset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6d120a44 ath9k_hw_setmcastfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6f7c6019 ath9k_hw_abortpcurecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6f9bbbf0 ath9k_hw_get_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x76a1ec93 ath9k_hw_set_tx_filter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7aeebbbf ath_gen_timer_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7fe4909f ath9k_hw_reset_calvalid +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8288d4ad ath9k_hw_resettxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x849f02e6 ath9k_hw_setopmode +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x85706c23 ath9k_hw_btcoex_init_mci +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x85af6dad ath9k_hw_wow_apply_pattern +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8b7db012 ar9003_paprd_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9183c823 ath9k_hw_setrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x96579899 ath9k_hw_stopdmarecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x98fe1706 ath9k_hw_btcoex_init_2wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x99da73e0 ath9k_hw_stop_dma_queue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9da643db ath9k_hw_set_tsfadjust +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9f06f7cf ar9003_paprd_is_done +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa0778a6c ath9k_hw_set_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa0f38433 ath9k_hw_btcoex_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa21d2ca7 ath9k_hw_getchan_noise +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa37dc24e ath9k_hw_setuptxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa504264e ath9k_hw_init_btcoex_hw +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa520b6da ath9k_hw_setantenna +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa82eaddf ar9003_mci_state +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xabcdfc97 ath9k_hw_beaconinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xae206505 ar9003_get_pll_sqsum_dvc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xae7aca9e ath9k_hw_btcoex_init_scheme +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaf2aaf72 ar9003_paprd_create_curve +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb1b1f63e ar9003_mci_get_next_gpm_offset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb879c334 ath9k_hw_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb977300f ath9k_hw_getnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb9995281 ath9k_hw_set_sta_beacon_timers +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbb5d231c ar9003_mci_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbbea63e6 ath9k_hw_process_rxdesc_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbc31e4df ath9k_hw_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbf27f02b ath9k_hw_write_associd +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc10c8469 ath9k_hw_numtxpending +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc281b890 ath9k_hw_set_txpowerlimit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc37abe0d ar9003_mci_set_bt_version +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc7ba53ad ath9k_hw_loadnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc82b5ea2 ath9k_hw_rxprocdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc87b87c4 ath9k_hw_gpio_get +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc998a30b ath9k_hw_btcoex_set_weight +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc9e161e4 ath9k_hw_setpower +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xca118090 ath9k_hw_wow_wakeup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcbb94922 ath9k_hw_computetxtime +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcc8accb0 ath9k_hw_btcoex_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcfd7ab3e ath9k_hw_disable_mib_counters +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd10abafe ath9k_hw_check_alive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd2dc7745 ath9k_hw_btcoex_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdb482fbd ath9k_hw_getrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdd924276 ath9k_hw_wait +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xde56f589 ar9003_mci_send_message +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe07d1f4d ath9k_hw_gettsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe1740ea4 ath9k_hw_btcoex_bt_stomp +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe1936832 ath9k_hw_setup_statusring +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe19a12eb ath9k_hw_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe4e634c9 ath9k_hw_gpio_request_out +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe93dd6dd ath9k_hw_beaconq_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xeaede081 ath9k_hw_init_global_settings +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xeb31d25d ath9k_hw_updatetxtriglevel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xee464af4 ath9k_hw_puttxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf0f91dc5 ath9k_hw_addrxbuf_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf12a9aed ath9k_hw_set_gpio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf15d71f3 ath9k_hw_set_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf1cb42ae ath9k_hw_name +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf23d46b7 ath9k_hw_set_rx_bufsize +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf4c5c4a7 ath9k_hw_setrxabort +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0xe70243bc init_atmel_card +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0xebaf15f2 atmel_open +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0xf1f0f91c stop_atmel_card +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x087050b8 brcmu_pktq_flush +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x0c9c7012 brcmu_pktq_pdeq_match EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x1906648e brcmu_boardrev_str -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x21157c91 brcmu_pktq_pdeq_match -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x21c76d34 brcmu_pktq_pdeq_tail -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x314a6374 brcmu_pktq_peek_tail -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x4ee8f82f brcmu_pktq_init -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x5d7a6d99 brcmu_pktq_penq_head -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x85779b71 brcmu_pktq_flush -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x87898a21 brcmu_pktq_mdeq -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x9fa1b39f brcmu_pkt_buf_free_skb +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x2d361dd9 brcmu_pktq_pdeq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x3ac27702 brcmu_pktq_init +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x47b749f5 brcmu_pkt_buf_get_skb +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x4cabed89 brcmu_pktq_mlen +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x6ed8f9d3 brcmu_pktq_penq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x7002e8c1 brcmu_pktq_penq_head +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x7a4ef2d1 brcmu_pkt_buf_free_skb +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x804c6299 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 0xa34bc6ff brcmu_pktq_penq -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xa3a5377b brcmu_pktq_mlen -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xbf596424 brcmu_pkt_buf_get_skb +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xcd20f99b brcmu_pktq_pflush +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xd085a661 brcmu_pktq_pdeq_tail EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xd6217d91 brcmu_d11_attach -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xe2588f51 brcmu_pktq_pflush -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x005e9846 libipw_rx_mgt -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x1773fd42 libipw_set_geo -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x2a487c77 libipw_wx_get_scan -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x2b6aca8c libipw_channel_to_index -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x39b45e42 libipw_get_geo -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x4646a1b4 libipw_get_channel_flags -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x543619d6 libipw_txb_free -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x743d6670 libipw_xmit -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x8a19e327 libipw_rx -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x8fe508aa libipw_networks_age -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x9444d85d libipw_wx_set_encodeext -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xaad7002d libipw_wx_get_encode -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xaee546d5 libipw_channel_to_freq -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xba1dddd0 libipw_freq_to_channel -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xc7987080 free_libipw -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xcf5ab902 libipw_wx_get_encodeext -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xd4f69e12 libipw_get_channel -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xd83fa5b5 libipw_is_valid_channel -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xec341db1 alloc_libipw -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xee66e3ef libipw_wx_set_encode -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x064cfa11 il_dbgfs_unregister -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0c426952 il_mac_add_interface -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x122d5f58 il_mac_bss_info_changed -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x124c61c8 il_hdl_pm_sleep -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1ba71034 il_send_cmd -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1c00f92d il_mac_remove_interface -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1f0caefa il_apm_stop -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1f4c817b il_force_reset -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1f543cf0 il_leds_exit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2769e4bc il_set_tx_power +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xfa30201f brcmu_pktq_peek_tail +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x03d566e0 libipw_xmit +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x0c610581 libipw_get_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x1266d7fb libipw_get_geo +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x2615f7a6 libipw_rx +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x39af7364 libipw_freq_to_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x3e9816f9 libipw_wx_get_scan +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x4370a2cf libipw_wx_set_encodeext +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x5505283c libipw_get_channel_flags +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x5c402e6c libipw_channel_to_freq +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x683f3636 alloc_libipw +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x6efb1c1c libipw_channel_to_index +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xa0dfa3bd libipw_wx_set_encode +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xc2aedc4c libipw_networks_age +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xc7b80ed5 libipw_wx_get_encode +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xcdcb0e6f libipw_wx_get_encodeext +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xd243294a libipw_rx_mgt +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xd59a6cb8 libipw_txb_free +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xdc3cd011 libipw_is_valid_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xe18ed88e libipw_set_geo +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xf3107eb5 free_libipw +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x00bb71ef il_dbgfs_register +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x02414be9 il_send_bt_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x041f3f7d il_rx_queue_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0589783f il_send_cmd_pdu +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x07c5bc9c _il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0cd6cb97 il_hdl_pm_debug_stats +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x14fe09ec il_hdl_error +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x170ac544 il_force_reset +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x17a285e1 il_mac_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x192ef013 il_read_targ_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1b1b9dde il_set_rxon_hwcrypto +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1b42e72b il_eeprom_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1d57a8f3 il_set_rxon_channel +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1f89ed00 il_wr_prph +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x211b8609 il_tx_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2154aae1 il_mac_bss_info_changed +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x28a64dbd il_mac_add_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x29560449 il_clear_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2b482f9c il_send_cmd EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2bf7eea6 il_queue_space -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2e7945ea il_init_geos -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2f6d04cd il_send_lq_cmd -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x303f5627 il_hdl_pm_debug_stats -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x32b3e3f3 il_dbgfs_register -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x33600512 il_cmd_queue_free -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3511fd15 _il_apm_stop -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x362f6d69 il_hdl_error -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3870c3b6 il_mac_flush -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3e27b5a3 il_full_rxon_required -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3e4ac591 il_send_cmd_pdu_async +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2d372d1d il_tx_queue_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2d4263d1 il_write_targ_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x30f374ac il_connection_init_rx_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x36ee4a89 il_clear_ucode_stations +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x374df7a8 il_tx_queue_reset +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x375345c4 il_init_scan_params +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x38caf2c2 il_mac_sta_remove +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3a64dd13 il_mac_hw_scan +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3bd2e3f5 il_fill_probe_req +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3f46d14e il_get_active_dwell_time EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x416bd26a il_debug_level -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x465bd887 il_send_stats_request -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x47664839 il_cmd_queue_unmap -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x506245ce il_setup_rx_scan_handlers -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x50c9f5d2 il_tx_cmd_complete -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x51ea3b1c il_eeprom_query16 -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x52391b32 il_set_rxon_ht -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x53ebf8ca il_cancel_scan_deferred_work -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5884bc4c il_mac_reset_tsf -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5ae2c212 il_send_rxon_timing -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5c40230f il_tx_cmd_protection -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5f6d6b1f il_usecs_to_beacons -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x63d539d7 il_set_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6521d989 il_power_update_mode -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x68989fdb il_tx_queue_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6c41e935 il_get_free_ucode_key_idx -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6cb5ecee il_get_passive_dwell_time -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6dbeba32 il_add_station_common -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x725e5134 il_clear_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7765d627 il_add_beacon_time -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x77cdd0c1 il_is_ht40_tx_allowed -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x79214aff il_set_rxon_channel -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7a6565a8 il_send_cmd_pdu -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7a960528 il_irq_handle_error -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7d31d20d il_read_targ_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7edb92a6 il_set_rxon_hwcrypto -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x83ba39de il_wr_prph -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x850119b2 il_connection_init_rx_config -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x86df1a30 il_power_initialize -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x880fa3c0 il_set_flags_for_band -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x885608f2 il_set_decrypted_flag -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x89441e79 il_init_channel_map -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8b608f3b il_free_txq_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8b6517ed il_eeprom_free -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8bfae889 il_setup_watchdog -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8d72a7c2 il_write_targ_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x94cfc976 il_eeprom_query_addr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x433da3fb il_eeprom_query_addr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x436de22d il_setup_watchdog +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x43979196 il_alloc_txq_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x46646f43 il_power_update_mode +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x475723e4 il_eeprom_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x483b4f35 il_setup_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4a7639b1 il_mac_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4f4b5cf9 _il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x585821cb il_set_decrypted_flag +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x590bad84 il_cmd_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5d49897a il_set_flags_for_band +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5db4aa9a il_scan_cancel_timeout +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6270abfd il_full_rxon_required +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x65686b2b il_send_stats_request +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x69792369 il_check_rxon_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6e2033ec il_restore_stations +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7427bc83 il_chswitch_done +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7cecd97a il_send_cmd_sync +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7dfd804e il_rd_prph +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7f641904 il_cmd_queue_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x829ffbb3 il_mac_conf_tx +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x83ef7212 il_get_lowest_plcp +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8507bb1f il_set_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x87290ccd il_apm_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8813fe83 il_setup_rx_scan_handlers +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x894739d6 il_rx_queue_space +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x89f87171 il_get_single_channel_number +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8acfec86 il_pm_ops +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8c6149bf il_add_beacon_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9395ed58 il_send_add_sta +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x98ae9431 il_scan_cancel +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x98f85b16 il_init_channel_map +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x99f151b1 il_leds_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9bc389e4 il_eeprom_query16 EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9cc714af il_bg_watchdog -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa2505805 il_setup_scan_deferred_work -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa353b563 _il_poll_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa4c6f408 il_restore_stations -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa5f51abd il_get_channel_info -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa88a5839 il_rd_prph -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa99581c9 il_fill_probe_req -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xabad5380 il_free_geos -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xad728780 il_scan_cancel -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xaf5e66e9 il_update_stats -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xaf834600 il_mac_conf_tx -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb08baa13 il_send_add_sta -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb4ee77ed il_rx_queue_space -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb5c0ff57 il_pm_ops +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9dc028e1 il_is_ht40_tx_allowed +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9edcf5ae il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9ffd54cd il_init_geos +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa62706c1 il_set_rate +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xaa197d0e il_dbgfs_unregister +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xaaa2d140 il_hdl_csa +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xae2ea2af il_rx_queue_alloc +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb05a4b93 il_hdl_pm_sleep +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb1b8540d il_get_channel_info +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb500d97e il_free_txq_mem 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 0xb97c7e7a il_scan_cancel_timeout -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbb41e730 il_tx_queue_unmap -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbfe7c16d il_mac_change_interface -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc19d239d il_send_bt_config -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc36faeb0 il_clear_ucode_stations -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc3e55666 il_chswitch_done -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc6bb370b il_set_rate -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc9d0533f il_leds_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcbe19fde il_get_single_channel_number -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcc2bf00e il_init_scan_params -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xce7c585b il_rx_queue_alloc -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd320c069 il_tx_queue_free -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd5ff73c4 il_free_channel_map -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd62b21ef il_alloc_txq_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd6a001e4 il_hdl_csa -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd7377f26 il_check_rxon_cmd -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdaa69e19 il_mac_sta_remove -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdc41b426 il_rx_queue_update_write_ptr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdf9f3b05 il_get_lowest_plcp -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe094568d il_mac_config -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe47a7620 il_apm_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xeb0f85ce il_poll_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf26d387f il_eeprom_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf33daa19 il_send_cmd_sync -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf5233f1c il_mac_hw_scan +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbd631473 il_set_rxon_ht +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc003c49e il_hdl_spectrum_measurement +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc0148f7a il_tx_cmd_protection +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc1e2eaf5 il_power_initialize +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc342ea76 il_mac_flush +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc72bc348 il_update_stats +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcd9846c8 il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcda36c79 il_tx_queue_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd1e4fee7 il_add_station_common +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd3550301 il_mac_remove_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd41dd57e il_cancel_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd5d9e641 il_get_free_ucode_key_idx +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd68c9074 il_get_passive_dwell_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd732483d il_usecs_to_beacons +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd91d8278 il_send_lq_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe1d3ad54 il_mac_change_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe4ba74fb il_set_tx_power +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe7bf0d5f il_free_channel_map +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe9b941a6 il_tx_cmd_complete +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xeb33d28a il_send_cmd_pdu_async +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xed5fbd3a il_txq_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xef90092a il_leds_exit EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf70a693b il_bcast_addr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf870a86e il_get_active_dwell_time -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf8a37764 il_txq_update_write_ptr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfa589470 il_hdl_spectrum_measurement -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xff3fde93 il_tx_queue_reset +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfa0d7cde il_send_rxon_timing +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfa3851cb il_irq_handle_error +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfb4adb7c il_free_geos 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 0x49562681 __traceiter_iwlwifi_dev_ucode_cont_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x7239db47 __traceiter_iwlwifi_dev_ucode_cont_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8c410f77 __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 0xaaafbd3e __tracepoint_iwlwifi_dev_ucode_cont_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xccde1460 __traceiter_iwlwifi_dev_ucode_wrap_event EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd1e69877 __SCK__tp_func_iwlwifi_dev_ucode_cont_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xde830301 __traceiter_iwlwifi_dev_ucode_event -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x022c63d9 hostap_80211_rx -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x09158afe hostap_remove_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf77b1968 __traceiter_iwlwifi_dev_ucode_event +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x10f19b9d hostap_init_data EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x13abdd5a hostap_dump_tx_header -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x230a2cb8 hostap_set_word -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x258abe07 hostap_setup_dev -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x29bfba45 hostap_free_data -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x2ce2e453 hostap_check_sta_fw_version -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x398c24a1 hostap_set_auth_algs -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x39a7853d hostap_master_start_xmit -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x3b573fb9 hostap_80211_ops -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x4ce0373a hostap_info_process -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x5fb81782 hostap_set_encryption -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x72e9ee91 hostap_remove_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x223fff8b hostap_set_word +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x279cc23a hostap_set_auth_algs +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x33514a7c hostap_setup_dev +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x3490a0dc hostap_80211_rx +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x409a26a4 hostap_free_data +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x528e72f5 prism2_update_comms_qual +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x5720d410 hostap_master_start_xmit +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x610f8760 hostap_get_porttype +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x63d69d4b hostap_set_string +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x6e1a073f hostap_info_process +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x71c16325 hostap_handle_sta_tx_exc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x74ab0d5b 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 0x79a57517 hostap_set_hostapd_sta -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7dfe9eb6 hostap_info_init +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7a9ac6ca hostap_set_hostapd EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7fb75891 hostap_dump_rx_header -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x8eda625f hostap_get_porttype -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x9d7a01dd hostap_set_string -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x9d8bef1b hostap_handle_sta_tx_exc -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xa016f911 hostap_init_ap_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x841927c8 hostap_init_ap_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xa8eee968 hostap_add_interface +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xabef4248 hostap_set_encryption +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xac708491 hostap_set_roaming +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb0a84e0c hostap_check_sta_fw_version EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb4b77c8b hostap_80211_get_hdrlen -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb8f4609d hostap_set_roaming -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xbbe9337c hostap_init_proc -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xc2449798 hostap_init_data -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xcb33a4fe hostap_add_interface -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xd125edef hostap_set_hostapd -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xd7042c5d prism2_update_comms_qual -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xe7e7c845 hostap_set_antsel -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x1bb0c8c1 __orinoco_ev_rx -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x2b58eb13 alloc_orinocodev -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x2e28f3d8 orinoco_if_add -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x2fa6144e orinoco_open -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x36569554 orinoco_set_multicast_list -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x5cd88447 free_orinocodev -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x5da59ea5 orinoco_stop -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x745674cf __orinoco_ev_info +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xc1f75c07 hostap_set_antsel +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xc50c25e4 hostap_remove_interface +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xcfa10171 hostap_init_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xdea605b6 hostap_80211_ops +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xec1f6622 hostap_set_hostapd_sta +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xfa01be49 hostap_info_init +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x0af81565 orinoco_init +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x1b1afbd7 orinoco_open +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x380d4aea orinoco_set_multicast_list +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x69d5b0ad __orinoco_ev_rx +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x911584e4 orinoco_tx_timeout +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x9b1a8ac3 orinoco_change_mtu +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xa55626bf orinoco_stop EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xa74c2dc5 hermes_struct_init -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xae59f7a6 orinoco_down -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xcb9530e9 orinoco_up -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xcfc9e625 orinoco_process_xmit_skb -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xd1f76f4b orinoco_change_mtu -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xd94ceea2 orinoco_init -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xf48f39bd orinoco_tx_timeout -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xfc4c5b58 orinoco_if_del +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xb4b1b205 free_orinocodev +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xbf04faef alloc_orinocodev +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xc837e6e3 orinoco_process_xmit_skb +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xca085df3 orinoco_if_del +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xcbda9d3d orinoco_down +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xced510e9 __orinoco_ev_info +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xe8a70f72 orinoco_if_add +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xf7f52513 orinoco_up EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xffe27bca orinoco_interrupt -EXPORT_SYMBOL drivers/net/wireless/mediatek/mt76/mt76 0xd8fd2c8d mt76_wcid_key_setup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0xfa094af2 rtl_btc_get_ops_pointer -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0effccff rtl92c_phy_set_bb_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x130bef66 rtl92c_dm_bt_coexist -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1c872526 rtl92c_dm_rf_saving -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x210249a9 rtl8192_phy_check_is_legal_rfpath -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x22c2ef25 _rtl92c_phy_fw_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/mediatek/mt76/mt76 0xa912f27d mt76_wcid_key_setup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0x3bd00178 rtl_btc_get_ops_pointer +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x00d3faf5 rtl92c_phy_set_io_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x060dee6c rtl92c_phy_set_bw_mode +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x07c50f81 rtl92c_phy_sw_chnl_callback +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0ae37b3b rtl92c_phy_sw_chnl +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0affe9f7 rtl92c_set_fw_joinbss_report_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x13cfe2ac rtl92c_dm_watchdog +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x19b0917b rtl8192_phy_check_is_legal_rfpath +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1dfba03e _rtl92c_phy_set_rf_sleep +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2231ba90 rtl92c_fill_h2c_cmd 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 0x23eff73a rtl92c_phy_iq_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2c0a39ad _rtl92c_phy_rf_serial_write -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2d2bdedf rtl92c_dm_check_txpower_tracking -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2ebf04f3 rtl92c_phy_sw_chnl -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x31815d5e _rtl92c_phy_dbm_to_txpwr_idx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x322b2156 rtl92c_fill_h2c_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3400d578 _rtl92c_store_pwrindex_diffrate_offset -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x363b6f5a rtl92c_phy_set_io_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3880566e rtl92c_phy_set_bw_mode -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3dfb214e _rtl92c_phy_set_rf_sleep -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3eebaeb6 rtl92c_phy_rf_config -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x47302392 rtl92c_dm_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4af9373e rtl92c_phy_set_io -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4dd8688c _rtl92c_phy_init_bb_rf_register_definition -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5a0c73de rtl92c_set_fw_rsvdpagepkt -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5f34b895 rtl92c_set_fw_joinbss_report_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x70f57986 rtl92c_phy_ap_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x71e2af86 rtl92c_dm_watchdog -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7730ff61 rtl92c_phy_sw_chnl_callback -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7b321dbe rtl92c_firmware_selfreset -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7c165891 rtl92c_dm_write_dig -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7e76aae1 rtl92c_dm_init_edca_turbo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7eac687c _rtl92c_phy_txpwr_idx_to_dbm -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x872f3018 _rtl92c_phy_rf_serial_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x89fe33cc rtl92c_phy_set_txpower_level -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x98ff7b11 rtl92c_phy_set_rfpath_switch -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa9fb851d rtl92c_phy_query_bb_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xaadfcc55 rtl92c_phy_lc_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xaef31f2a _rtl92c_phy_fw_rf_serial_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb68183fd _rtl92c_phy_bb8192c_config_parafile -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc7212098 rtl92c_phy_update_txpower_dbm -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc9545752 rtl92c_set_fw_pwrmode_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd72fd574 rtl92c_bt_rssi_state_change -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe5d6943a rtl92ce_phy_set_rf_on -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xead9b4fe rtl92c_download_fw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf1d5aeb8 rtl92c_dm_init_rate_adaptive_mask -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x44bd2753 rtl_pci_disconnect -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x7424d056 rtl_pci_resume -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xb344bbc6 rtl_pci_suspend -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xfee008b7 rtl_pci_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x2647f173 rtl_usb_disconnect -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x9c30d4a2 rtl_usb_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x9eadfec6 rtl_usb_suspend -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xe888c08a rtl_usb_resume -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x00989d3d rtl_cam_del_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x29af18e7 rtl92c_firmware_selfreset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2a1f5a63 _rtl92c_store_pwrindex_diffrate_offset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2f8ff999 rtl92c_dm_init_rate_adaptive_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3735252a rtl92c_phy_set_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x394f7eb2 _rtl92c_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4685013b _rtl92c_phy_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4a8b9208 rtl92c_phy_ap_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x58c25331 rtl92c_set_fw_pwrmode_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5f136ac9 rtl92c_dm_bt_coexist +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6dc3fa65 rtl92c_phy_iq_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6efc6c73 _rtl92c_phy_init_bb_rf_register_definition +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7d4ac518 _rtl92c_phy_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7fb0852f rtl92c_dm_init_edca_turbo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8496be53 rtl92ce_phy_set_rf_on +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x887b9fd3 rtl92c_dm_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8b8372dd _rtl92c_phy_bb8192c_config_parafile +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9b8c7b21 rtl92c_phy_set_io +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa31337b4 rtl92c_phy_set_txpower_level +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xab339b72 rtl92c_bt_rssi_state_change +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xaf78f7d1 rtl92c_phy_query_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb536b948 rtl92c_phy_update_txpower_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc00bce6b rtl92c_download_fw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc01e7025 rtl92c_set_fw_rsvdpagepkt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc2ce54f2 _rtl92c_phy_fw_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc6315bb8 rtl92c_phy_rf_config +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xcb021da9 _rtl92c_phy_dbm_to_txpwr_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xcec7d931 rtl92c_dm_check_txpower_tracking +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xdda27dab rtl92c_dm_write_dig +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe5bafd91 rtl92c_dm_rf_saving +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf4b54a3c rtl92c_phy_set_rfpath_switch +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf6027152 _rtl92c_phy_fw_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xfec218bc rtl92c_phy_lc_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x6da9996f rtl_pci_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x903ffa71 rtl_pci_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xaa292e99 rtl_pci_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xd5c10105 rtl_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x0a58df48 rtl_usb_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x7e742bba rtl_usb_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xd1e6ce0d rtl_usb_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xf14d0683 rtl_usb_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x082c1d4d rtl_dm_diginit EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0b038e24 channel5g_80m -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0bd25007 efuse_shadow_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x15311216 rtl_c2hcmd_enqueue +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x13bbaf8f rtl_process_phyinfo EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1b945315 rtl_addr_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x214a3ba2 rtl_get_tcb_desc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x26af9619 rtl_cam_get_free_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2a52265a rtl_bb_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2e7afe41 rtl_process_phyinfo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1bade099 rtl_cam_mark_invalid +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x227b6af1 rtl_signal_scale_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x263d2e40 efuse_power_switch +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2e7461c7 rtl_get_tcb_desc EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x30a956d7 rtl_query_rxpwrpercentage -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x461cf43e rtl_hal_pwrseqcmdparsing -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4ee1e379 efuse_read_1byte -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x54559da4 rtl_cam_mark_invalid +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x39cfa611 rtl_cmd_send_packet +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3cd42eb6 efuse_one_byte_read EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x54824f58 channel5g -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x568a3471 rtl_ps_enable_nic -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x63ab3d57 rtl_rfreg_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x64ddebc6 rtl_signal_scale_mapping -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x65ec780a rtl_dm_diginit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x664b69af rtl_ps_disable_nic -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x67b09299 rtl_cam_reset_all_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x86cfcb26 rtl_cam_delete_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5575e44b rtl_mrate_idx_to_arfr_id +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x58bd0ac2 rtl_send_smps_action +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x65cf9327 rtlwifi_rate_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x749cd5c9 rtl_cam_reset_all_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7901a901 rtl_cam_delete_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8091d6b1 rtl_c2hcmd_enqueue +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x863eb378 rtl_phy_scan_operation_backup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8d3d8e74 rtl_init_rfkill EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8ea60059 rtl_fw_cb -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x90c8de3c rtl_efuse_shadow_map_update -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xac014781 rtl_rx_ampdu_apply -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xaf1f83d4 rtl_cam_empty_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb8b4c22d rtl_phy_scan_operation_backup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xba6a3a1f rtl_mrate_idx_to_arfr_id -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbc61330c rtl_cmd_send_packet -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe0cdf8a8 rtlwifi_rate_mapping -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe1d70248 rtl_init_rfkill -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe85e1360 efuse_one_byte_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xea3b6f12 rtl_collect_scan_list +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x962c7e38 rtl_cam_add_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa294dd59 rtl_rx_ampdu_apply +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbbc47ec2 rtl_hal_pwrseqcmdparsing +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc1a7ab90 efuse_read_1byte +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc23f9892 rtl_ps_enable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc93d0f9d rtl_cam_del_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xcce1174f rtl_ps_disable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd1722b75 efuse_shadow_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd2dc328d rtl_rfreg_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd48ba29e rtl_efuse_shadow_map_update +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xdc2daaaf rtl_cam_get_free_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe157cc70 rtl_bb_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe72c02ed rtl_collect_scan_list 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 0xf12414e5 rtl_cam_add_one_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf5ddd05c rtl_send_smps_action -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf5ffbf09 efuse_power_switch -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8723d 0x9694e5ef rtw8723d_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8821c 0x0b549262 rtw8821c_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822b 0x7d749f5d rtw8822b_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822c 0x92b6f463 rtw8822c_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x0402b3fb rtw_bf_phy_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x0af951e5 rtw_phy_read_rf_sipi -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x0bc0a1ba rtw_tx_fill_tx_desc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x0c5606d3 rtw_fw_inform_rfk_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x0eed3bee rtw_phy_set_tx_power_level -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x0fc4d2a3 rtw_phy_pwrtrack_get_delta -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x134ad641 rtw_unregister_hw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1973b0ef rtw_phy_load_tables -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1b3d4876 rtw_power_mode_change -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1c2dfffc rtw_core_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1fa8b2d6 rtw_phy_config_swing_table -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x2af5f464 rtw_phy_cfg_agc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf213cdef rtl_cam_empty_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8723d 0xfd3d82bf rtw8723d_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8821c 0x60fdf532 rtw8821c_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822b 0x16ddf80d rtw8822b_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822c 0xf91f9333 rtw8822c_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x03a6b04e rtw_phy_read_rf_sipi +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x083c8553 rtw_core_deinit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x0bcf8b96 rtw_bf_cfg_csi_rate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x0df070b9 rtw_phy_cfg_mac +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x10a0c067 check_hw_ready +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x15c3d15c rtw_phy_set_tx_power_level +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x162f3379 rtw_phy_get_tx_power_index +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x2388a071 rtw_set_channel_mac +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x2632bcc2 rtw_phy_pwrtrack_thermal_changed +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x26f3e42e rtw_bf_set_gid_table +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x2f755dd2 rtw_phy_pwrtrack_get_delta EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x33b3f3c0 rtw_debug_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x3478a589 rtw_rx_stats EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x36c5bfca rtw_disable_lps_deep_mode -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x374ba50f rtw_bf_remove_bfee_su -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x3a3233aa rtw_phy_pwrtrack_need_iqk -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x3f381d6a rtw_chip_info_setup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x4204db88 rtw_set_channel_mac -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x424e1057 rtw_parse_tbl_txpwr_lmt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x3b41b92e rtw_phy_cfg_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x3e3bc60d rtw_bf_remove_bfee_su EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x440b7589 rtw_phy_rf_power_2_rssi -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x45355e42 rtw_phy_write_rf_reg_mix -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x474749f6 rtw_phy_parsing_cfo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x4b548450 rtw_fw_c2h_cmd_rx_irqsafe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x4c154630 rtw_coex_read_indirect_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x4cc0c8d3 rtw_phy_pwrtrack_thermal_changed -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x4daa4e8f rtw_fw_c2h_cmd_isr +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x4e1d0add rtw_tx_write_data_rsvd_page_get EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x519c8ba9 rtw_rate_size -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5234ab0c rtw_phy_get_tx_power_index -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x55fa41cf rtw_phy_pwrtrack_need_lck +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5206e1a1 rtw_phy_parsing_cfo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x553414c6 rtw_fw_c2h_cmd_rx_irqsafe EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x58210e60 rtw_rate_section -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5e52b209 rtw_phy_pwrtrack_avg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x656db4be rtw_phy_write_rf_reg_sipi -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6abfcb3a check_hw_ready -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6eb6314e rtw_read8_physical_efuse -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x70037363 rtw_phy_cfg_mac -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x71a01546 rtw_bf_enable_bfee_su -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x73b9a9b1 rtw_phy_pwrtrack_get_pwridx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x73e0e14b rtw_bf_remove_bfee_mu -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x772d7dea rtw_rx_stats -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x790cf329 rtw_phy_read_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x79ee6abb rtw_register_hw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7d212304 rtw_core_deinit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7f1fff6c rtw_parse_tbl_phy_cond -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x80c60e26 rtw_parse_tbl_bb_pg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x80f8a405 rtw_dump_fw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x8e58a165 rtw_restore_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x93f29767 rtw_bf_cfg_csi_rate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x94bfd45e __rtw_dbg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x95476a52 rtw_dump_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa089deb9 rtw_rx_fill_rx_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa168be2a rtw_tx_write_data_rsvd_page_get -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa7658d4c rtw_fw_do_iqk -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa861e01d rtw_phy_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xab96a62c rtw_phy_cfg_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb2af66f3 rtw_tx_write_data_h2c_get -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xbf0f049f rtw_bf_enable_bfee_mu -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc827ee89 rtw_ops -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc91f3ea4 rtw_coex_write_scbd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xcd93db71 rtw_tx_report_enqueue -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xcef41f49 rtw_bf_set_gid_table -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf7c32625 rtw_coex_write_indirect_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xfbdff0cc rtw_phy_cfg_bb -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x7cad40ad rtw_pci_shutdown -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0xa5ace50f rtw_pci_remove -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0xc9370d16 rtw_pm_ops -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0xf0f7ec8c rtw_pci_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x0eda3c51 rtw89_core_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x1063ddcb rtw89_core_napi_start -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x16e9728f rtw89_mac_set_err_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x1cf70af5 rtw89_core_deinit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x2af29aa8 rtw89_core_fill_txdesc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x2c047e1e rtw89_core_query_rxdesc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x3775bbb0 rtw8852a_chip_info -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x45740a5c rtw89_core_napi_stop -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x51bc0311 rtw89_phy_read_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x66c30daf rtw89_mac_get_err_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7272db9b rtw89_ops -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7397126a rtw89_phy_write_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x87b986a9 rtw89_core_napi_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xa2a9a9ee rtw89_core_napi_deinit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xc464d1c3 rtw89_core_register -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xc95cd13c rtw89_core_rx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xd32832fa rtw89_ser_notify -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xd3e7be0e rtw89_core_unregister -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xdd8fed84 rtw89_chip_info_setup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5f17595f rtw_phy_cfg_agc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x66829d63 rtw_phy_load_tables +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x74a57f8b rtw_phy_pwrtrack_need_lck +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x770e1c0e rtw_dump_fw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x77fc6976 rtw_phy_write_rf_reg_sipi +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x784ac1d5 rtw_restore_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x787c6a8c rtw_phy_read_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x78d67439 rtw_phy_pwrtrack_get_pwridx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7dd39f40 rtw_rx_fill_rx_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x831feaed rtw_bf_remove_bfee_mu +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x85070baa rtw_phy_write_rf_reg_mix +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x8c2f092f rtw_fw_inform_rfk_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x8f95a660 rtw_bf_enable_bfee_mu +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x973a9095 rtw_coex_read_indirect_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9d469f9b rtw_fw_c2h_cmd_isr +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa94711fa rtw_power_mode_change +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xae971bb2 __rtw_dbg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb96d0e46 rtw_dump_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xba3ee14b rtw_coex_write_indirect_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xbd9ee1db rtw_tx_report_enqueue +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc0635979 rtw_parse_tbl_phy_cond +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc6b3da4d rtw_bf_enable_bfee_su +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xccd43772 rtw_chip_info_setup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd07cca30 rtw_tx_fill_tx_desc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd192e036 rtw_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd63c6cb5 rtw_fw_do_iqk +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd828b7af rtw_parse_tbl_txpwr_lmt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd92b7b8e rtw_phy_pwrtrack_need_iqk +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe08baf0b rtw_bf_phy_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe1269c3d rtw_read8_physical_efuse +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe36014c5 rtw_tx_write_data_h2c_get +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe55fe07d rtw_core_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe98dc436 rtw_coex_write_scbd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xebcff1bd rtw_phy_pwrtrack_avg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xec9dc0d5 rtw_unregister_hw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf178e5f2 rtw_phy_config_swing_table +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf7f51c57 rtw_register_hw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf9da1603 rtw_parse_tbl_bb_pg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xfd04e83d rtw_phy_cfg_bb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xfd0f8dee rtw_phy_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x1dbb3577 rtw_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x38dce047 rtw_pm_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x4b6ce33b rtw_pci_remove +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0xc5add094 rtw_pci_shutdown +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x0d9affeb rtw89_ser_notify +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x0f03dac0 rtw89_core_napi_deinit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x177e81e6 rtw89_core_register +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x20148ee0 rtw89_mac_get_err_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x308b9714 __rtw89_debug +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x4bd78e47 rtw89_core_napi_stop +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x4de47044 rtw89_phy_write_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x6db78d8f rtw89_core_unregister +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x6ea8351f rtw89_phy_read_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x8ea29fe8 rtw89_core_deinit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x9801dbcc rtw89_mac_set_err_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xb4fcbe4b rtw8852a_chip_info +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xcb8e0c5f rtw89_core_napi_start +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xcd75fb76 rtw89_core_fill_txdesc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xd10df07f rtw89_core_rx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xd2b71029 rtw89_core_query_rxdesc EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe3f57b04 rtw89_debug_mask -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xfc8a6c0b __rtw89_debug -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xdbb17036 rtw89_pm_ops -EXPORT_SYMBOL drivers/net/wireless/rsi/rsi_91x 0x50bf612c rsi_config_wowlan -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x4e265009 wl12xx_is_dummy_packet -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x5764654c wlcore_calc_packet_alignment -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x86d460e4 wlcore_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xb822fca8 wl1271_free_tx_id -EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x533a0a84 fdp_nci_remove -EXPORT_SYMBOL drivers/nfc/fdp/fdp 0xf296ebda fdp_nci_probe -EXPORT_SYMBOL drivers/nfc/microread/microread 0x7af5a255 microread_probe -EXPORT_SYMBOL drivers/nfc/microread/microread 0xf35e8b89 microread_remove -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x545b80cc nxp_nci_remove -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x77f6572a nxp_nci_probe -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x8531dd2e nxp_nci_fw_recv_frame -EXPORT_SYMBOL drivers/nfc/pn533/pn533 0x9f217c7f pn533_recv_frame -EXPORT_SYMBOL drivers/nfc/pn544/pn544 0xa60da219 pn544_hci_remove -EXPORT_SYMBOL drivers/nfc/pn544/pn544 0xdb9d5389 pn544_hci_probe -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x330d6750 s3fwrn5_probe -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x5f367e15 s3fwrn5_phy_power_ctrl +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe7b84377 rtw89_chip_info_setup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xee25c2af rtw89_core_napi_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xf6975d5e rtw89_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xff6d6096 rtw89_core_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xa6aa730d rtw89_pm_ops +EXPORT_SYMBOL drivers/net/wireless/rsi/rsi_91x 0x43e2eba2 rsi_config_wowlan +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x4de99ded wl12xx_is_dummy_packet +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x885ec159 wl1271_free_tx_id +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xb50ad531 wlcore_calc_packet_alignment +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xdb6dbc55 wlcore_tx_complete +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x2156fff8 fdp_nci_remove +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0xe0a83ba0 fdp_nci_probe +EXPORT_SYMBOL drivers/nfc/microread/microread 0xa5e362b2 microread_probe +EXPORT_SYMBOL drivers/nfc/microread/microread 0xb61dcbb8 microread_remove +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x33ca2484 nxp_nci_fw_recv_frame +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x825275a1 nxp_nci_remove +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xec4a5a50 nxp_nci_probe +EXPORT_SYMBOL drivers/nfc/pn533/pn533 0x84709c2d pn533_recv_frame +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x305993b0 pn544_hci_probe +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x67b07367 pn544_hci_remove +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x119959c1 s3fwrn5_phy_power_ctrl +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x4e4cbb19 s3fwrn5_probe EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x774203fc s3fwrn5_phy_set_wake -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xbc579448 s3fwrn5_remove -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xbe635850 s3fwrn5_recv_frame +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xafd22a53 s3fwrn5_recv_frame +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xe309d33b s3fwrn5_remove EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xedb12f10 s3fwrn5_phy_set_mode EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xf2ab60da s3fwrn5_phy_get_mode -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x0bcb2a4a st_nci_se_init -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x27cc4b02 st_nci_se_deinit -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x3aa7f512 st_nci_vendor_cmds_init -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x6008ae45 ndlc_close -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x60c3d69a st_nci_se_io -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x70a28cd6 ndlc_probe -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x808101cb ndlc_open -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xa5c7e3f8 ndlc_remove -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xd73f86b4 ndlc_recv -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xdbea654a ndlc_send -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x086265c5 st21nfca_apdu_reader_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x2117c5a7 st21nfca_tm_send_dep_res -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x2fbdf3a4 st21nfca_hci_loopback_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x37d456be st21nfca_hci_discover_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x55b17d28 st21nfca_im_send_dep_req -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x7c4371ee st21nfca_dep_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x7c83782e st21nfca_hci_remove -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x7d7749fc st21nfca_im_send_atr_req -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x89adda36 st21nfca_se_deinit -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x8d121d90 st21nfca_dep_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xa96fd95a st21nfca_se_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xb1eef95a st21nfca_hci_disable_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xb3d56295 st21nfca_vendor_cmds_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xb65ef49f st21nfca_hci_se_io -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xb945134d st21nfca_connectivity_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xbf3f4d40 st21nfca_hci_enable_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xcfd768ba st21nfca_hci_probe -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xd1094f7c st21nfca_dep_deinit -EXPORT_SYMBOL drivers/ntb/ntb 0x1190132f ntb_msi_peer_trigger -EXPORT_SYMBOL drivers/ntb/ntb 0x2fb03f31 ntb_clear_ctx -EXPORT_SYMBOL drivers/ntb/ntb 0x30da929c __ntb_register_client -EXPORT_SYMBOL drivers/ntb/ntb 0x340a9224 ntbm_msi_free_irq -EXPORT_SYMBOL drivers/ntb/ntb 0x3b6fc545 ntb_set_ctx -EXPORT_SYMBOL drivers/ntb/ntb 0x44dfc36b ntb_link_event -EXPORT_SYMBOL drivers/ntb/ntb 0x4c12816e ntb_default_peer_port_count -EXPORT_SYMBOL drivers/ntb/ntb 0x4c903cac ntb_default_peer_port_idx -EXPORT_SYMBOL drivers/ntb/ntb 0x5b3148d7 ntb_msi_setup_mws -EXPORT_SYMBOL drivers/ntb/ntb 0x72b0d99b ntb_register_device -EXPORT_SYMBOL drivers/ntb/ntb 0x74d68c2f ntb_msg_event -EXPORT_SYMBOL drivers/ntb/ntb 0x77b6b9d5 ntb_unregister_client -EXPORT_SYMBOL drivers/ntb/ntb 0x81afa7e9 ntb_default_port_number -EXPORT_SYMBOL drivers/ntb/ntb 0x90086037 ntb_default_peer_port_number -EXPORT_SYMBOL drivers/ntb/ntb 0x94574079 ntb_msi_peer_addr -EXPORT_SYMBOL drivers/ntb/ntb 0x94e3a20a ntb_unregister_device -EXPORT_SYMBOL drivers/ntb/ntb 0xbc2fe0fe ntb_db_event -EXPORT_SYMBOL drivers/ntb/ntb 0xbf259912 ntbm_msi_request_threaded_irq -EXPORT_SYMBOL drivers/ntb/ntb 0xc1137491 ntb_msi_clear_mws -EXPORT_SYMBOL drivers/ntb/ntb 0xc2fe595b ntb_msi_init -EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x243dd89d nvdimm_namespace_detach_btt -EXPORT_SYMBOL drivers/nvdimm/nd_btt 0xe58bfe73 nvdimm_namespace_attach_btt -EXPORT_SYMBOL drivers/parport/parport 0x0eff2f23 parport_ieee1284_read_nibble -EXPORT_SYMBOL drivers/parport/parport 0x1679372f parport_get_port -EXPORT_SYMBOL drivers/parport/parport 0x288ee9e5 parport_ieee1284_read_byte -EXPORT_SYMBOL drivers/parport/parport 0x2ed8163e parport_wait_event -EXPORT_SYMBOL drivers/parport/parport 0x429b99a3 parport_register_port -EXPORT_SYMBOL drivers/parport/parport 0x439cc9bb parport_del_port -EXPORT_SYMBOL drivers/parport/parport 0x45d4b6e4 parport_unregister_device -EXPORT_SYMBOL drivers/parport/parport 0x463a4a5e parport_remove_port -EXPORT_SYMBOL drivers/parport/parport 0x48d36d19 parport_put_port +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x1a3a5d11 st_nci_se_io +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x328802fd st_nci_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x52a9f86b ndlc_close +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x59b6a823 st_nci_se_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x59d35a9d ndlc_remove +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x5d481dc5 ndlc_open +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x8ad77a35 ndlc_recv +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xbaa64031 ndlc_send +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xe2e30251 ndlc_probe +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xe5165aeb st_nci_se_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x09edf11f st21nfca_hci_disable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x0d1b02f5 st21nfca_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x18f59bff st21nfca_hci_probe +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x1b488db0 st21nfca_dep_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x2874a063 st21nfca_hci_se_io +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x2a9c7aaa st21nfca_se_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x3f306f5b st21nfca_hci_loopback_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x44f21cef st21nfca_se_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x4624df36 st21nfca_im_send_dep_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x551e6e97 st21nfca_apdu_reader_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x7ab6047e st21nfca_tm_send_dep_res +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x84ba9c3d st21nfca_hci_enable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xa4c6405d st21nfca_hci_remove +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xab319640 st21nfca_im_send_atr_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xc5444887 st21nfca_dep_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xd55eb81f st21nfca_hci_discover_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xebbe8f5e st21nfca_dep_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xf47b2f7f st21nfca_connectivity_event_received +EXPORT_SYMBOL drivers/ntb/ntb 0x21c43cc6 ntb_link_event +EXPORT_SYMBOL drivers/ntb/ntb 0x2b449880 __ntb_register_client +EXPORT_SYMBOL drivers/ntb/ntb 0x316c3957 ntb_msi_peer_addr +EXPORT_SYMBOL drivers/ntb/ntb 0x36f959fe ntb_msi_setup_mws +EXPORT_SYMBOL drivers/ntb/ntb 0x391009d7 ntb_msi_clear_mws +EXPORT_SYMBOL drivers/ntb/ntb 0x3d00729a ntb_default_peer_port_count +EXPORT_SYMBOL drivers/ntb/ntb 0x4c2cdab6 ntb_register_device +EXPORT_SYMBOL drivers/ntb/ntb 0x4fe61f88 ntb_msg_event +EXPORT_SYMBOL drivers/ntb/ntb 0x60e40a6d ntb_unregister_client +EXPORT_SYMBOL drivers/ntb/ntb 0x84e059bd ntb_clear_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0x89bba5e1 ntb_db_event +EXPORT_SYMBOL drivers/ntb/ntb 0x94876816 ntbm_msi_request_threaded_irq +EXPORT_SYMBOL drivers/ntb/ntb 0x9aa29f86 ntb_default_peer_port_number +EXPORT_SYMBOL drivers/ntb/ntb 0xb6c6050e ntbm_msi_free_irq +EXPORT_SYMBOL drivers/ntb/ntb 0xb9690eb9 ntb_unregister_device +EXPORT_SYMBOL drivers/ntb/ntb 0xc7fe1402 ntb_set_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0xcf15519b ntb_msi_peer_trigger +EXPORT_SYMBOL drivers/ntb/ntb 0xcf478c57 ntb_default_port_number +EXPORT_SYMBOL drivers/ntb/ntb 0xf6c29cf0 ntb_default_peer_port_idx +EXPORT_SYMBOL drivers/ntb/ntb 0xf845dc1e ntb_msi_init +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x08841773 nvdimm_namespace_detach_btt +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0xdcfc742b nvdimm_namespace_attach_btt +EXPORT_SYMBOL drivers/parport/parport 0x13311c49 parport_ieee1284_epp_write_data +EXPORT_SYMBOL drivers/parport/parport 0x193e6834 parport_ieee1284_ecp_read_data +EXPORT_SYMBOL drivers/parport/parport 0x1cc2222a parport_read +EXPORT_SYMBOL drivers/parport/parport 0x23a3d668 parport_find_base +EXPORT_SYMBOL drivers/parport/parport 0x26675509 parport_unregister_device +EXPORT_SYMBOL drivers/parport/parport 0x308be060 parport_release +EXPORT_SYMBOL drivers/parport/parport 0x3542684e __parport_register_driver +EXPORT_SYMBOL drivers/parport/parport 0x4386577b parport_set_timeout +EXPORT_SYMBOL drivers/parport/parport 0x4b70d650 parport_wait_event EXPORT_SYMBOL drivers/parport/parport 0x4d2a941b parport_ieee1284_interrupt -EXPORT_SYMBOL drivers/parport/parport 0x5546f5ce parport_ieee1284_epp_read_data +EXPORT_SYMBOL drivers/parport/parport 0x50065e21 parport_negotiate +EXPORT_SYMBOL drivers/parport/parport 0x514e60ae parport_wait_peripheral +EXPORT_SYMBOL drivers/parport/parport 0x57bd05ca parport_ieee1284_read_nibble EXPORT_SYMBOL drivers/parport/parport 0x5e3a3912 parport_irq_handler -EXPORT_SYMBOL drivers/parport/parport 0x612452bd parport_ieee1284_ecp_write_addr -EXPORT_SYMBOL drivers/parport/parport 0x628f6be8 parport_wait_peripheral -EXPORT_SYMBOL drivers/parport/parport 0x69f8ea8c parport_ieee1284_ecp_write_data -EXPORT_SYMBOL drivers/parport/parport 0x7a173144 parport_write -EXPORT_SYMBOL drivers/parport/parport 0x7a50cb5c parport_ieee1284_epp_read_addr -EXPORT_SYMBOL drivers/parport/parport 0x8b30152e parport_register_dev_model -EXPORT_SYMBOL drivers/parport/parport 0x8d36c81c parport_ieee1284_ecp_read_data -EXPORT_SYMBOL drivers/parport/parport 0x91c2ac7a parport_unregister_driver -EXPORT_SYMBOL drivers/parport/parport 0x940ef1d2 __parport_register_driver -EXPORT_SYMBOL drivers/parport/parport 0x9959539d parport_set_timeout -EXPORT_SYMBOL drivers/parport/parport 0xa261568a parport_claim_or_block -EXPORT_SYMBOL drivers/parport/parport 0xba42485e parport_read -EXPORT_SYMBOL drivers/parport/parport 0xbb001a29 parport_claim -EXPORT_SYMBOL drivers/parport/parport 0xbb538372 parport_find_number -EXPORT_SYMBOL drivers/parport/parport 0xcb3a2bff parport_ieee1284_write_compat -EXPORT_SYMBOL drivers/parport/parport 0xe5a341c1 parport_announce_port -EXPORT_SYMBOL drivers/parport/parport 0xf0510630 parport_release -EXPORT_SYMBOL drivers/parport/parport 0xf76bcd7f parport_negotiate -EXPORT_SYMBOL drivers/parport/parport 0xf7729d2a parport_ieee1284_epp_write_data -EXPORT_SYMBOL drivers/parport/parport 0xfa2846ae parport_find_base -EXPORT_SYMBOL drivers/parport/parport 0xffae251b parport_ieee1284_epp_write_addr -EXPORT_SYMBOL drivers/pci/controller/pcie-iproc 0x5013ebda iproc_pcie_setup -EXPORT_SYMBOL drivers/pci/controller/pcie-iproc 0x57d82013 iproc_pcie_remove -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x0644b7c2 pccard_register_pcmcia -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x0b55249c pcmcia_parse_uevents +EXPORT_SYMBOL drivers/parport/parport 0x620d9900 parport_ieee1284_epp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0x65fa8086 parport_unregister_driver +EXPORT_SYMBOL drivers/parport/parport 0x73e961e2 parport_find_number +EXPORT_SYMBOL drivers/parport/parport 0x77e26967 parport_announce_port +EXPORT_SYMBOL drivers/parport/parport 0x782587d6 parport_claim_or_block +EXPORT_SYMBOL drivers/parport/parport 0x7bd60d28 parport_get_port +EXPORT_SYMBOL drivers/parport/parport 0x7e2a6b4f parport_ieee1284_read_byte +EXPORT_SYMBOL drivers/parport/parport 0x86681939 parport_del_port +EXPORT_SYMBOL drivers/parport/parport 0x876d6cfb parport_remove_port +EXPORT_SYMBOL drivers/parport/parport 0x87a4f9c0 parport_ieee1284_ecp_write_data +EXPORT_SYMBOL drivers/parport/parport 0x87b41f92 parport_ieee1284_epp_read_data +EXPORT_SYMBOL drivers/parport/parport 0xd662c310 parport_ieee1284_epp_read_addr +EXPORT_SYMBOL drivers/parport/parport 0xd7697800 parport_write +EXPORT_SYMBOL drivers/parport/parport 0xd973c01f parport_put_port +EXPORT_SYMBOL drivers/parport/parport 0xdbbc03d2 parport_register_port +EXPORT_SYMBOL drivers/parport/parport 0xe57779f9 parport_register_dev_model +EXPORT_SYMBOL drivers/parport/parport 0xf4279452 parport_ieee1284_write_compat +EXPORT_SYMBOL drivers/parport/parport 0xf6987c89 parport_ieee1284_ecp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0xffbfc2da parport_claim +EXPORT_SYMBOL drivers/pci/controller/pcie-iproc 0xa2e08b01 iproc_pcie_setup +EXPORT_SYMBOL drivers/pci/controller/pcie-iproc 0xe61e7141 iproc_pcie_remove +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x06d88952 pcmcia_reset_card +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x11088ae3 pcmcia_get_socket_by_nr EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x212db8d2 pcmcia_socket_list -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x3282ce09 pcmcia_socket_class -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x46c6947a pcmcia_get_socket_by_nr -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x55b4a9b0 pcmcia_unregister_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xb7966707 pcmcia_get_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x248013ec pccard_register_pcmcia +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x5e90515f pcmcia_parse_events +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x73504c47 pcmcia_unregister_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x7b10d31b pcmcia_parse_uevents +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xc11079c4 pcmcia_get_socket EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xcf97f3bd dead_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xd848352d pcmcia_reset_card -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xe6ce6ae9 pcmcia_parse_events -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xe85b523b pcmcia_put_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xf57a36fa pcmcia_register_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xdedf0b9e pcmcia_put_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xf25c959c pcmcia_register_socket EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xf942709b pcmcia_socket_list_rwsem -EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0xe199e788 pccard_static_ops -EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x5d1915bc cros_ec_resume -EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0xcca922de cros_ec_suspend +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xfd26ee4c pcmcia_socket_class +EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0xb1b0a2ec pccard_static_ops +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x2ec25151 cros_ec_unregister +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x9cf3d443 cros_ec_register +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0xb31c680b cros_ec_resume +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0xc8e19d6c cros_ec_suspend EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0xf25aacf5 cros_ec_irq_thread -EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0xfbc80da8 cros_ec_register -EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0xff4828a2 cros_ec_unregister -EXPORT_SYMBOL drivers/regulator/rohm-regulator 0xb158446d rohm_regulator_set_dvs_levels +EXPORT_SYMBOL drivers/regulator/rohm-regulator 0x58ca1437 rohm_regulator_set_dvs_levels EXPORT_SYMBOL drivers/rpmsg/qcom_smd 0x3330a1c8 qcom_smd_unregister_edge -EXPORT_SYMBOL drivers/rpmsg/qcom_smd 0xa0bc3d8f qcom_smd_register_edge -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x1b1693e0 rpmsg_create_channel -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x257664e6 rpmsg_sendto -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x44197b34 rpmsg_release_channel -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x50e5c079 rpmsg_trysendto -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x6fc48974 rpmsg_poll -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x7094fe3f rpmsg_destroy_ept -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x7c8f1140 rpmsg_create_ept -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x84d8819a rpmsg_unregister_device -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x9580d0ba rpmsg_find_device -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x9f8527d3 rpmsg_register_device -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xa5cd30f1 rpmsg_send -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xa9ddb8aa rpmsg_trysend -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xbc4cb95d __register_rpmsg_driver -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xc9988fcc rpmsg_trysend_offchannel -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xce7093d1 unregister_rpmsg_driver -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xd5002263 rpmsg_send_offchannel -EXPORT_SYMBOL drivers/rpmsg/rpmsg_ns 0xb7fa7d02 rpmsg_ns_register_device -EXPORT_SYMBOL drivers/rtc/rtc-ds1685 0x1f9e5c0e ds1685_rtc_poweroff -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x1a1f6d03 scsi_esp_cmd -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x27305cc7 scsi_esp_register +EXPORT_SYMBOL drivers/rpmsg/qcom_smd 0x5fd4909a qcom_smd_register_edge +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x12bd4827 rpmsg_destroy_ept +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x1696f2bd rpmsg_create_ept +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x1c054064 rpmsg_create_channel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x28aa73b7 rpmsg_poll +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x2dd74c84 rpmsg_register_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x30d50580 rpmsg_sendto +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x54045cb1 rpmsg_trysend_offchannel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x5bcf2d0c rpmsg_send +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x619f5dc3 rpmsg_trysendto +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xa2c82ece rpmsg_trysend +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xaf40f65f rpmsg_unregister_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xbbdc79f0 rpmsg_send_offchannel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xc85b059b rpmsg_find_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xd630de41 rpmsg_release_channel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xdf5b370a unregister_rpmsg_driver +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xfa285341 __register_rpmsg_driver +EXPORT_SYMBOL drivers/rpmsg/rpmsg_ns 0x837f5a67 rpmsg_ns_register_device +EXPORT_SYMBOL drivers/rtc/rtc-ds1685 0x908a6b22 ds1685_rtc_poweroff +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x14c2ba42 scsi_esp_unregister EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4a29ab38 scsi_esp_intr -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x5005addd scsi_esp_unregister -EXPORT_SYMBOL drivers/scsi/esp_scsi 0xe1b3e1f8 scsi_esp_template -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x1f7844c9 fcoe_ctlr_init -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x2ae55a55 fcoe_ctlr_recv -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x355a946a fcoe_transport_attach -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x5c1cf6aa fcoe_ctlr_destroy -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x6bbbd7ea fcoe_fcf_get_selected -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x6c487dae fcoe_ctlr_recv_flogi -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x97e1bcc5 fcoe_ctlr_link_down -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x9f99a339 fcoe_ctlr_set_fip_mode -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xa7ff41e8 fcoe_ctlr_link_up -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xcdf8a3d4 fcoe_transport_detach -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xf34f5c87 fcoe_ctlr_els_send -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x09a233bd fc_exch_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0b2c41d1 libfc_vport_create -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0b947599 fc_exch_mgr_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0c07c42a fc_fcp_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0cca537e fc_eh_abort -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x107a801d fc_exch_mgr_free -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1272195d fc_elsct_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1278c4a4 fc_fabric_login -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1b1eb40c fc_linkup -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1d8106f8 fc_exch_recv -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1fbda835 fc_slave_alloc +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x565b180f scsi_esp_cmd +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x959d3cc7 scsi_esp_register +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xaae8907f scsi_esp_template +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x09566fbc fcoe_ctlr_link_down +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x239f7b7e fcoe_ctlr_destroy +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x394a6a7e fcoe_ctlr_els_send +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x4c77b79e fcoe_ctlr_recv +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x5e6c9c0d fcoe_ctlr_set_fip_mode +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x6a928492 fcoe_ctlr_init +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x999291ff fcoe_transport_detach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xb6adf4e4 fcoe_transport_attach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xbb731951 fcoe_fcf_get_selected +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xd6088896 fcoe_ctlr_recv_flogi +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xfe862431 fcoe_ctlr_link_up +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x06770010 fc_seq_assign +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0d567f11 fc_lport_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1321e431 fc_rport_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x15b72ac2 fc_fabric_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x17e76397 fc_lport_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x18059a26 fc_exch_mgr_list_clone +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x19ca6f12 fc_lport_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1a4539a4 fc_fabric_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1ccc48ac fc_lport_init EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22b90986 fc_exch_mgr_del -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x28feca1c fc_lport_set_local_id EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2eccbfa6 fc_lport_flogi_resp -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x37103dd4 fc_linkdown -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3af77e68 fc_rport_lookup -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x42af0fce fc_lport_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x450fd1f9 fc_disc_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x477d1e92 fc_exch_mgr_add -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x47b481a1 fc_lport_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4b4c1903 fc_fabric_logoff -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4c364a74 fc_eh_host_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x510a224a fc_get_host_speed -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x53705317 fc_fcp_destroy -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5ae9d927 fc_rport_recv_req -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5ba4eaf3 fc_lport_iterate -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x66ce4426 fc_exch_seq_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x444cc202 fc_eh_host_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x456c6126 fc_eh_abort +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x45f2a939 fc_rport_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x468973b7 fc_rport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x48c2e0ac fc_exch_update_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x53f79fa0 fc_linkup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x59e38e3f fc_seq_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5b8c6424 fc_disc_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6ac95aa3 fc_get_host_stats EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x731837c4 fc_lport_logo_resp -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7402f5f8 fc_exch_update_stats -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x77028b55 fc_set_mfs -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x77084fc5 fc_seq_assign -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7736a067 fc_fc4_register_provider -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x77b608a1 fc_vport_id_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7a8b1f51 fc_lport_bsg_request +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7c75d770 fc_rport_terminate_io EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7f3407a7 fc_seq_start_next EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x80e34c44 fc_frame_alloc_fill EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x811811e0 fc_exch_done EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8264d30a _fc_frame_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8c88cbe8 fc_get_host_stats -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8e21c6d9 fc_lport_bsg_request -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9318e631 fc_rport_logoff -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x95e3e55f fc_rport_create -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9cbb2fb3 fc_queuecommand +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x834325fc fc_lport_set_local_id +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x850873da fc_exch_mgr_add +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x87962d1a fc_vport_setlink +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8b6a69c1 fc_elsct_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x978d7d34 fc_exch_recv EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9d50ed7e fc_rport_destroy -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9da3b4a6 fc_vport_setlink -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9f25daec fc_seq_send -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9f920aac fc_eh_device_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9fee2a92 fc_rport_logoff EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa1bcd198 fc_cpu_mask -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa324812a fc_set_rport_loss_tmo -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xabdf8056 fc_lport_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa57e7577 fc_disc_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xab2ba21c fc_fcp_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xac0ef826 fc_elsct_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xadcf7a12 fc_exch_mgr_free +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xaed77fd9 fc_get_host_speed EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb0ddd5a1 fc_rport_flush_queue EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb689cd32 fc_frame_crc_check -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb7bc50b8 fc_lport_recv -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb87718f9 fc_rport_login -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbe78ec2b fc_rport_terminate_io +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb6adb63b fc_fc4_register_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb6d34f6a fc_get_host_port_state +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb976deac fc_exch_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbb9716ac fc_exch_mgr_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbc9788b0 libfc_vport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbe0f9858 fc_fcp_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc00dc1c0 fc_vport_id_lookup EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc2dd8cd4 fc_fill_reply_hdr -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcf37e319 fc_exch_mgr_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xdd32f3ce fc_disc_config -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xde0f2e1f fc_get_host_port_state -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe3529e6b fc_fc4_deregister_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc90b8de4 fc_queuecommand +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd1ef73a7 fc_exch_mgr_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd2771642 fc_linkdown +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe1b1fdae fc_set_rport_loss_tmo +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe394e4bd fc_slave_alloc EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe3b928e9 fc_fill_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe406f0e9 fc_fc4_deregister_provider EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe5cf06b5 fc_lport_notifier_head -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf0a2a4be fc_lport_destroy -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf851dbc8 fc_elsct_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe8464ca5 fc_set_mfs +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe9c7a14f fc_eh_device_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xea633d0c fc_lport_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xed774aa7 fc_exch_seq_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xef715072 fc_rport_recv_req +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf78e81fa fc_lport_iterate EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfa4667d1 fc_seq_release -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfce67431 fc_exch_mgr_list_clone EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfeb5a73f fc_seq_set_resp +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x04da4d53 sas_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x2b4d3ddc sas_suspend_ha EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x4a8e3d34 try_test_sas_gpio_gp_bit -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x57c1fc6b sas_prep_resume_ha -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x946dcaa6 sas_resume_ha -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xecd6ecd2 sas_suspend_ha -EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x7e603757 mraid_mm_register_adp +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xc604650a sas_prep_resume_ha +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x1d1b1a85 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 0x0eb1c699 qlt_free_mcmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x2548cc2c qlt_unreg_sess -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x2d390c97 qlt_rdy_to_xfer -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x336bccfb qlt_stop_phase1 -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x4c964d94 qlt_xmit_response -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x4dd46dbf qlt_enable_vha -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x618772bc qlt_stop_phase2 -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x67914bcd qlt_lport_deregister -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x8f10cffe qlt_abort_cmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xa831b2db qlt_lport_register -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xaf0ed3f0 qlt_xmit_tm_rsp -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xe726bcaf qlt_free_cmd -EXPORT_SYMBOL drivers/scsi/raid_class 0x49aee516 raid_component_add -EXPORT_SYMBOL drivers/scsi/raid_class 0x77033e2f raid_class_attach -EXPORT_SYMBOL drivers/scsi/raid_class 0xa35fb8a0 raid_class_release -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x096886e6 fc_block_scsi_eh -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x20b57981 fc_find_rport_by_wwpn -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x2120efb4 fc_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x24f62cf2 fc_host_post_event +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x0680cb41 qlt_xmit_response +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x4502b17c qlt_free_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x47cfd5f1 qlt_lport_register +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x48dca443 qlt_unreg_sess +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x8816aecd qlt_free_mcmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xa4e4b545 qlt_abort_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xaa68ab71 qlt_stop_phase1 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xd351e868 qlt_lport_deregister +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xd8a8b7a6 qlt_xmit_tm_rsp +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xf51f6e79 qlt_enable_vha +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xf7b06280 qlt_stop_phase2 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xf92bce26 qlt_rdy_to_xfer +EXPORT_SYMBOL drivers/scsi/raid_class 0x2a3fa472 raid_component_add +EXPORT_SYMBOL drivers/scsi/raid_class 0x3769844f raid_class_release +EXPORT_SYMBOL drivers/scsi/raid_class 0x9989c952 raid_class_attach +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x27cc6689 fc_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x3241ea81 fc_find_rport_by_wwpn EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x375f8bbd fc_get_event_number -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x40dab959 scsi_is_fc_rport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x4768a90e fc_eh_timed_out -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x4aa8d1f5 fc_remote_port_rolechg -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x4f2de61b fc_host_post_fc_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x5fc57efb fc_remote_port_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x6f955013 fc_remove_host -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x72def43d fc_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x92e13391 fc_host_fpin_rcv -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x9bded6c8 fc_host_post_vendor_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x9d511394 fc_remote_port_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xe235ff36 fc_vport_terminate -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xe3fab24b fc_block_rport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xf2083ec8 fc_vport_create -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x07256265 sas_port_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x10ab2fb2 sas_remove_host -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x10d20bf9 sas_port_add_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x244f30a5 sas_phy_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x255cb567 sas_port_delete_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2577c450 sas_rphy_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2c370f2a sas_remove_children -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2e1e8cbb sas_rphy_remove -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2eac4964 sas_read_port_mode_page -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x36f8e85e scsi_is_sas_rphy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x419597d3 sas_rphy_unlink -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x50047160 sas_get_address -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x623d5d04 sas_phy_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x63305e8c sas_port_alloc_num -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x68f9928a sas_port_get_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x72342926 sas_rphy_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7ce9b61f sas_port_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x91c83b93 sas_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x9e3ac1a5 sas_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb25b7bb6 sas_port_mark_backlink -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb2bc14c1 scsi_is_sas_port -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb72ca871 sas_port_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xbe9c406f sas_rphy_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc5f3f0e1 sas_phy_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd2b17f9c sas_port_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xdf4038b9 scsi_is_sas_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xdfdd4809 sas_phy_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xfbf004c8 sas_end_device_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xffb510cf sas_expander_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x1ff39108 spi_schedule_dv_device -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x319e306d spi_display_xfer_agreement +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x41a8a02c fc_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x42503e80 fc_vport_terminate +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x5f3e9fea fc_host_post_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x6067f122 fc_host_fpin_rcv +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x61f735ed fc_eh_timed_out +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x6a16b113 fc_block_scsi_eh +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x70018984 fc_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7c77fe89 fc_host_post_vendor_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x822f991d fc_remote_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x95a55dfa fc_remote_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xc4e14493 fc_host_post_fc_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xd2c60381 scsi_is_fc_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xe78cae0e fc_block_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xf4b1fcd9 fc_vport_create +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xf9e5c9af fc_remote_port_rolechg +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0015d02d sas_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x00a309f6 sas_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1ab2f5d7 sas_phy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x34444c58 sas_port_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3bf115f6 sas_read_port_mode_page +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4321783e sas_rphy_remove +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x60cf4c2c sas_get_address +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x627ac1f7 sas_rphy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6af7034b sas_port_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7056ab21 scsi_is_sas_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x73d24fe2 sas_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x750c23e6 sas_port_mark_backlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x75f0bee7 sas_remove_children +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8cc3aa5e sas_rphy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8df5ecd0 sas_port_alloc_num +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa165028c sas_expander_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa952728d scsi_is_sas_port +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb4000f02 sas_port_add_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb66c4f93 sas_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb6cb1515 scsi_is_sas_rphy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xbd2da889 sas_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd26e99e7 sas_end_device_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xdc2ba1e5 sas_rphy_unlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xddbd15c4 sas_port_delete_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xdf247608 sas_port_get_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe0f74aa6 sas_phy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xeae1cb12 sas_rphy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xeafe5798 sas_phy_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf2b6049e sas_phy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x29a6a42a spi_schedule_dv_device EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3e0d1087 spi_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3f21a912 spi_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xc5cbb671 spi_dv_device -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x145b4c0f srp_reconnect_rport -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x2e776310 srp_rport_get +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x5120bd58 spi_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x53d07a1c spi_display_xfer_agreement +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x7edd09ba spi_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xd16390ca spi_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x03944cab srp_rport_get +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x2c3d8fd6 srp_reconnect_rport EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x405b6e05 srp_parse_tmo -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x43541b76 srp_start_tl_fail_timers -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x69a3ce74 srp_rport_put -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xec380b80 srp_timed_out -EXPORT_SYMBOL drivers/scsi/ufs/tc-dwc-g210 0x88dc9713 tc_dwc_g210_config_20_bit -EXPORT_SYMBOL drivers/scsi/ufs/tc-dwc-g210 0x8f9cc9ed tc_dwc_g210_config_40_bit -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x0624e8de ufshcd_system_resume -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x10068d50 ufshcd_alloc_host -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x430e8c3c ufshcd_system_suspend -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x60c1a85b ufshcd_shutdown -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x8a9ecb43 ufshcd_runtime_resume -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0xcd3cd9e6 ufshcd_runtime_suspend -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0xd86764bf ufshcd_map_desc_id_to_length -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0xdb5c9dd6 ufshcd_get_local_unipro_ver -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-dwc 0x0aa58bef ufshcd_dwc_link_startup_notify -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-dwc 0xe4ab2a75 ufshcd_dwc_dme_set_attrs +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xd779c35e srp_start_tl_fail_timers +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xe3907d4f srp_timed_out +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xe75a9fa2 srp_rport_put +EXPORT_SYMBOL drivers/scsi/ufs/tc-dwc-g210 0x75ba24a9 tc_dwc_g210_config_40_bit +EXPORT_SYMBOL drivers/scsi/ufs/tc-dwc-g210 0xaf04aad1 tc_dwc_g210_config_20_bit +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x022187ee ufshcd_runtime_resume +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x18928e44 ufshcd_alloc_host +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x2af6edee ufshcd_system_suspend +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x46212990 ufshcd_system_resume +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x6edd7ada ufshcd_get_local_unipro_ver +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x9d0fb17b ufshcd_runtime_suspend +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0xbeb21c04 ufshcd_shutdown +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0xd6f5dc61 ufshcd_map_desc_id_to_length +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-dwc 0x58771e1d ufshcd_dwc_link_startup_notify +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-dwc 0x984f4889 ufshcd_dwc_dme_set_attrs EXPORT_SYMBOL drivers/soc/fsl/dpio/fsl-mc-dpio 0x030f2d6c dpaa2_io_service_enqueue_fq EXPORT_SYMBOL drivers/soc/fsl/dpio/fsl-mc-dpio 0x3d01f417 dpaa2_io_service_pull_fq EXPORT_SYMBOL drivers/soc/fsl/dpio/fsl-mc-dpio 0xc4ccef03 dpaa2_io_get_cpu EXPORT_SYMBOL drivers/soc/fsl/dpio/fsl-mc-dpio 0xdb008703 dpaa2_io_service_enqueue_multiple_fq EXPORT_SYMBOL drivers/soc/fsl/dpio/fsl-mc-dpio 0xe0f67b93 dpaa2_io_service_enqueue_multiple_desc_fq EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x0f4b7285 cmdq_pkt_destroy -EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x1a9fa9cf cmdq_dev_get_client_reg +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x1c4618f6 cmdq_mbox_destroy EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x1c91b6c6 cmdq_pkt_poll -EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x1e353ec4 cmdq_mbox_destroy EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x1eb577f5 cmdq_pkt_write_s_value EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x27f7a778 cmdq_pkt_set_event EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x3bc70297 cmdq_pkt_write_s_mask_value EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x3d3c435f cmdq_pkt_jump EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x461737cb cmdq_pkt_read_s EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x4dd68ea8 cmdq_pkt_wfe -EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x4f6574cd cmdq_mbox_create -EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x57e55af3 cmdq_pkt_create EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x5bcc91ec cmdq_pkt_flush_async EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x62622035 cmdq_pkt_write_s EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x6482132a cmdq_pkt_poll_mask EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x81232e95 cmdq_pkt_assign EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x91e6f300 cmdq_pkt_clear_event EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0xa644a9a6 cmdq_pkt_write +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0xc46a533f cmdq_dev_get_client_reg +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0xcd4a626a cmdq_pkt_create +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0xee14f233 cmdq_mbox_create EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0xf79754da cmdq_pkt_write_s_mask EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0xf80937c2 cmdq_pkt_finalize EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0xfb55916e cmdq_pkt_write_mask -EXPORT_SYMBOL drivers/soc/qcom/ocmem 0x2b8e2b18 of_get_ocmem +EXPORT_SYMBOL drivers/soc/qcom/ocmem 0xac2cb5c9 of_get_ocmem EXPORT_SYMBOL drivers/soc/qcom/ocmem 0xc53d76b1 ocmem_allocate EXPORT_SYMBOL drivers/soc/qcom/ocmem 0xf9b05967 ocmem_free EXPORT_SYMBOL drivers/soc/qcom/pdr_interface 0x1c76ea4d pdr_restart_pd EXPORT_SYMBOL drivers/soc/qcom/pdr_interface 0x432975e6 pdr_add_lookup EXPORT_SYMBOL drivers/soc/qcom/pdr_interface 0x47b2ed49 pdr_handle_alloc EXPORT_SYMBOL drivers/soc/qcom/pdr_interface 0xf618ca5b pdr_handle_release -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x04f9dfc9 geni_se_rx_dma_unprep -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x09d27eb8 geni_icc_get -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x191a97ff geni_icc_enable -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x56154d17 geni_se_clk_freq_match -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x59643c1b geni_se_tx_dma_unprep -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x635e0484 geni_se_init -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x72342980 geni_icc_disable -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x9b512776 geni_se_resources_off -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xa1e3a86d geni_se_select_mode -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xc830572f geni_icc_set_tag -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xd1c23ebe geni_se_get_qup_hw_version -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xd90e708f geni_se_config_packing -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xe139cea9 geni_se_clk_tbl_get -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xe19eeaef geni_se_tx_dma_prep -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xe83fad07 geni_se_rx_dma_prep -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xfa2b5fa4 geni_icc_set_bw -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xfebb77bc geni_se_resources_on -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x08eff75b qmi_txn_cancel +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x03079c54 geni_se_get_qup_hw_version +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x1ba2caac geni_icc_set_tag +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x32223be6 geni_icc_get +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x387aa2f7 geni_se_init +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x5029ae5d geni_se_config_packing +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x51f60eba geni_icc_set_bw +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x5e0753ae geni_se_rx_dma_unprep +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x7d22636e geni_icc_disable +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x817a3e73 geni_se_tx_dma_prep +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x9327157b geni_se_rx_dma_prep +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xa59a8a16 geni_se_clk_tbl_get +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xb05ceb0f geni_se_resources_on +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xb7a084af geni_se_select_mode +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xba23fb72 geni_se_resources_off +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xbd69a4b7 geni_se_clk_freq_match +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xd51450ce geni_icc_enable +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xe27a1c30 geni_se_tx_dma_unprep +EXPORT_SYMBOL drivers/soc/qcom/qcom_aoss 0x2333aed6 qmp_put +EXPORT_SYMBOL drivers/soc/qcom/qcom_aoss 0x9e2aa1df qmp_send +EXPORT_SYMBOL drivers/soc/qcom/qcom_aoss 0xed644250 qmp_get EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x0ef12cc9 qmi_encode_message EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x21ce5888 qmi_response_type_v01_ei -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x367b3644 qmi_txn_wait -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x3a1196e8 qmi_send_response -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x3b5be970 qmi_add_lookup +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x4d26b69a qmi_txn_init +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x5f0fd4d2 qmi_send_request EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x68772745 qmi_decode_message -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x6df72e56 qmi_txn_init -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x7b72ecab qmi_add_server -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x9ecc4ea0 qmi_handle_init -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xe7a1a613 qmi_send_request -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xf64beab3 qmi_send_indication -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xfa915d4a qmi_handle_release +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x96ce41fc qmi_handle_release +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x9960a930 qmi_txn_wait +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xa06e4534 qmi_add_server +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xa5232d6a qmi_send_response +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xa5e94b12 qmi_txn_cancel +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xaaf3017f qmi_add_lookup +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xbef823d4 qmi_send_indication +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xf43ea308 qmi_handle_init 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 0xe2b6b1cf qcom_wcnss_open_channel -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x01f3537d sdw_slave_add -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x0f829415 sdw_write +EXPORT_SYMBOL drivers/soc/qcom/wcnss_ctrl 0x956e9cf5 qcom_wcnss_open_channel +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x087d3aba sdw_bread_no_pm_unlocked EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x16d1706b sdw_prepare_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x1d28bd57 sdw_stream_add_slave EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x1deee061 sdw_find_row_index -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x235d87bc sdw_bwrite_no_pm_unlocked +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x33373919 sdw_slave_add EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x3b0a8582 sdw_startup_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x45dbdb34 sdw_write_no_pm EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x4cde88bf sdw_disable_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x60da9b64 sdw_bus_exit_clk_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x4e4947a0 sdw_stream_add_slave +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x52bd1074 sdw_bus_prep_clk_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x57a46c01 sdw_stream_remove_slave EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x60e31fbb sdw_find_col_index -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x616737e4 sdw_read_no_pm -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x6689dea8 sdw_update -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x6d349274 sdw_slave_read_prop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x6426b578 sdw_read_no_pm +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x6693d9f3 sdw_bus_clk_stop EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x6f95b16b sdw_shutdown_stream EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x71891d59 sdw_deprepare_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x76ee692b sdw_bus_prep_clk_stop -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x7f59e443 sdw_update_no_pm -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x804f4c9c sdw_nread -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x846546a1 sdw_nwrite -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x85f27b7c sdw_stream_remove_slave -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x8ce528a1 sdw_master_read_prop -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x98e3a3d9 sdw_clear_slave_status +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x71908026 sdw_handle_slave_status +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x7b6cf426 sdw_nread +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x7dffa952 sdw_clear_slave_status +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x7e2dc53d sdw_update_no_pm +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x7e8f7457 sdw_update +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x80f38e4a sdw_nwrite +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x85d53aec sdw_stream_remove_master +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x9975066c sdw_write_no_pm +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x9977bbf3 sdw_bus_exit_clk_stop EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x9e122d79 sdw_alloc_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xa12297e0 sdw_stream_add_master -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xa2aa457d sdw_bus_clk_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xa4e3e45c sdw_stream_add_master +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xa83303ba sdw_slave_read_prop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xa906401f sdw_bus_master_delete +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xaac84cb3 sdw_bus_master_add EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xba54b904 sdw_cols EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xbbec2c2e sdw_enable_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xd3a19da6 sdw_bus_master_add -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xd501c817 sdw_handle_slave_status -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xd67c0bb1 sdw_read +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xc8df95fb sdw_extract_slave_id +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xcf1b991e sdw_write EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xda5bce09 sdw_release_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xdd651140 sdw_compare_devid -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xde80aa0c sdw_bread_no_pm_unlocked +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xdc828c90 sdw_compare_devid +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xe89cafb5 sdw_bwrite_no_pm_unlocked +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xeb636489 sdw_master_read_prop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xf1e6640e sdw_read EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xf53ba0b8 sdw_rows -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xf7ceb78b sdw_bus_master_delete -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xf9a8228f sdw_stream_remove_master -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xffdd4c4a sdw_extract_slave_id -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x04798793 sdw_cdns_init -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x1099c975 cdns_xfer_msg_defer -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x12c25b8b sdw_cdns_exit_reset -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x19bcd753 sdw_cdns_enable_interrupt -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x2987e806 sdw_cdns_probe +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x0b89ceae sdw_cdns_clock_restart +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x1ebd98e4 cdns_xfer_msg EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x34712074 sdw_cdns_irq -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x521e30cf sdw_cdns_config_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x5af8aa52 cdns_xfer_msg -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x622fb4f7 sdw_cdns_pdi_init -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x83d8bf3c cdns_reset_page_addr -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x95119005 sdw_cdns_clock_stop -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x9f303c85 cdns_set_sdw_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xa51a0ea1 sdw_cdns_is_clock_stop -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xc4cd4a04 cdns_bus_conf -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xc5ffbda0 sdw_cdns_clock_restart -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xee7b37b0 sdw_cdns_check_self_clearing_bits -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xeffe7365 sdw_cdns_alloc_pdi -EXPORT_SYMBOL drivers/soundwire/soundwire-generic-allocation 0x4415b8f4 sdw_compute_params -EXPORT_SYMBOL drivers/ssb/ssb 0x18a5045e ssb_bus_resume -EXPORT_SYMBOL drivers/ssb/ssb 0x1b55650a ssb_bus_suspend -EXPORT_SYMBOL drivers/ssb/ssb 0x22e20f3c ssb_commit_settings -EXPORT_SYMBOL drivers/ssb/ssb 0x23a975b8 ssb_bus_may_powerdown -EXPORT_SYMBOL drivers/ssb/ssb 0x2d0b67ee ssb_pcihost_register -EXPORT_SYMBOL drivers/ssb/ssb 0x300ac0f6 ssb_dma_translation -EXPORT_SYMBOL drivers/ssb/ssb 0x4a4322c0 ssb_pcicore_dev_irqvecs_enable -EXPORT_SYMBOL drivers/ssb/ssb 0x57f0f615 ssb_bus_powerup -EXPORT_SYMBOL drivers/ssb/ssb 0x676a57bb ssb_pmu_set_ldo_paref -EXPORT_SYMBOL drivers/ssb/ssb 0x964c095d ssb_device_is_enabled -EXPORT_SYMBOL drivers/ssb/ssb 0xac3f3490 ssb_device_disable -EXPORT_SYMBOL drivers/ssb/ssb 0xae55d34f ssb_chipco_gpio_control -EXPORT_SYMBOL drivers/ssb/ssb 0xb0fa1bf8 ssb_driver_unregister -EXPORT_SYMBOL drivers/ssb/ssb 0xb5980180 ssb_bus_sdiobus_register -EXPORT_SYMBOL drivers/ssb/ssb 0xc6050e72 ssb_clockspeed +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x372bb775 sdw_cdns_check_self_clearing_bits +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x4b712b48 cdns_reset_page_addr +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x58622aff sdw_cdns_init +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x5be5c53a cdns_xfer_msg_defer +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x6f250628 cdns_set_sdw_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x7564a869 sdw_cdns_is_clock_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x7bca1544 sdw_cdns_exit_reset +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x84a1e66e sdw_cdns_enable_interrupt +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x8f6640e8 cdns_bus_conf +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xa85ac4a9 sdw_cdns_config_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xaa6b1c9f sdw_cdns_pdi_init +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xb96c5734 sdw_cdns_probe +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xf48809d9 sdw_cdns_alloc_pdi +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xf9c15293 sdw_cdns_clock_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-generic-allocation 0xbfb77446 sdw_compute_params +EXPORT_SYMBOL drivers/ssb/ssb 0x04799b99 ssb_device_enable +EXPORT_SYMBOL drivers/ssb/ssb 0x06cd9181 ssb_pcihost_register +EXPORT_SYMBOL drivers/ssb/ssb 0x251e2bde ssb_bus_suspend +EXPORT_SYMBOL drivers/ssb/ssb 0x378c1eaa ssb_set_devtypedata +EXPORT_SYMBOL drivers/ssb/ssb 0x3fbc68a0 ssb_pmu_set_ldo_paref +EXPORT_SYMBOL drivers/ssb/ssb 0x40754214 ssb_bus_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0x4141c77f ssb_chipco_gpio_control +EXPORT_SYMBOL drivers/ssb/ssb 0x4379d36f ssb_clockspeed +EXPORT_SYMBOL drivers/ssb/ssb 0x45814d7d ssb_commit_settings +EXPORT_SYMBOL drivers/ssb/ssb 0x55f2fc44 ssb_device_is_enabled +EXPORT_SYMBOL drivers/ssb/ssb 0x5c261dad ssb_bus_may_powerdown +EXPORT_SYMBOL drivers/ssb/ssb 0x5d432062 ssb_driver_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0x613c74e3 ssb_pcicore_dev_irqvecs_enable +EXPORT_SYMBOL drivers/ssb/ssb 0x984f8027 __ssb_driver_register +EXPORT_SYMBOL drivers/ssb/ssb 0xa228c672 ssb_bus_resume +EXPORT_SYMBOL drivers/ssb/ssb 0xaa4a77d2 ssb_pmu_set_ldo_voltage EXPORT_SYMBOL drivers/ssb/ssb 0xcb17f1cb ssb_admatch_base -EXPORT_SYMBOL drivers/ssb/ssb 0xdc732054 __ssb_driver_register +EXPORT_SYMBOL drivers/ssb/ssb 0xd349b07b ssb_dma_translation +EXPORT_SYMBOL drivers/ssb/ssb 0xda057cfc ssb_bus_sdiobus_register +EXPORT_SYMBOL drivers/ssb/ssb 0xdbf380e2 ssb_device_disable EXPORT_SYMBOL drivers/ssb/ssb 0xdfc7c6ef ssb_admatch_size -EXPORT_SYMBOL drivers/ssb/ssb 0xe855ec68 ssb_pmu_set_ldo_voltage -EXPORT_SYMBOL drivers/ssb/ssb 0xeee0c2f8 ssb_set_devtypedata -EXPORT_SYMBOL drivers/ssb/ssb 0xfb39d3a2 ssb_bus_unregister -EXPORT_SYMBOL drivers/ssb/ssb 0xfdbd8b26 ssb_device_enable -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x03ff36a6 fbtft_write_spi_emulate_9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x122bf2d8 fbtft_write_vmem16_bus16 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x15f68a51 fbtft_init_display -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x16def226 fbtft_write_vmem16_bus9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x176ea58a fbtft_remove_common -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x2d309775 fbtft_write_gpio8_wr -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x2d398e6d fbtft_framebuffer_alloc -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x38c27aab fbtft_framebuffer_release -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x43604c80 fbtft_write_reg8_bus9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x4381367a fbtft_write_buf_dc -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x46746151 fbtft_write_vmem8_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x5b4920e8 fbtft_write_reg16_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x66790091 fbtft_register_backlight -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x6764ce7f fbtft_unregister_backlight -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x6a349a5e fbtft_dbg_hex -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x7f2059f4 fbtft_write_spi -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x872646ca fbtft_write_gpio16_wr_latched -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x98e720dd fbtft_register_framebuffer -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xadc61981 fbtft_unregister_framebuffer -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xb7c50eed fbtft_write_vmem16_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc2b10e5c fbtft_probe_common -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xccc8f01e fbtft_write_gpio16_wr -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xe2604425 fbtft_write_reg8_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xe7f04faa fbtft_write_reg16_bus16 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xec69f556 fbtft_read_spi -EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x2035beef gbaudio_unregister_module -EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x52acb04a gbaudio_module_update -EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0xd86e0e36 gbaudio_register_module -EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0x75160a91 adt7316_probe -EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0x4777a0bc ade7854_probe -EXPORT_SYMBOL drivers/staging/media/av7110/sp8870 0xd785a738 sp8870_attach -EXPORT_SYMBOL drivers/staging/media/zoran/videocodec 0x176a0dbb videocodec_register -EXPORT_SYMBOL drivers/staging/media/zoran/videocodec 0x7e3f3b38 videocodec_unregister -EXPORT_SYMBOL drivers/staging/media/zoran/videocodec 0x9ce4c289 videocodec_attach -EXPORT_SYMBOL drivers/staging/media/zoran/videocodec 0xdcdf61a4 videocodec_detach -EXPORT_SYMBOL drivers/staging/nvec/nvec 0x679eb42d nvec_write_sync -EXPORT_SYMBOL drivers/staging/nvec/nvec 0xc69126a9 nvec_write_async -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x01218fd2 rtllib_start_scan_syncro -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0f4349b8 rtllib_start_send_beacons -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1e831e3c rtllib_wx_get_rate -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x213b97f9 rtllib_EnableIntelPromiscuousMode +EXPORT_SYMBOL drivers/ssb/ssb 0xe18d3fc3 ssb_bus_powerup +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x1081913a fbtft_write_vmem8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x2b7913c4 fbtft_unregister_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x39d1a395 fbtft_unregister_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x486b7dba fbtft_remove_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x50c6fd61 fbtft_register_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x5783dd87 fbtft_write_reg8_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x7868f623 fbtft_write_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x7b773267 fbtft_write_vmem16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x7fa1fea2 fbtft_probe_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x8710cedd fbtft_write_buf_dc +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x87760634 fbtft_write_vmem16_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x888e8eb0 fbtft_write_reg16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x891a00d1 fbtft_framebuffer_release +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x9f7405cc fbtft_framebuffer_alloc +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xa3d76bc0 fbtft_write_gpio16_wr_latched +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xa6d9dd89 fbtft_write_gpio8_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xb3434718 fbtft_dbg_hex +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xb5698f4a fbtft_write_reg8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc003e830 fbtft_read_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc14e9d6e fbtft_write_gpio16_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc3803828 fbtft_init_display +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xcf85b351 fbtft_write_reg16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xdb5ccc58 fbtft_write_vmem16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xdbed9b68 fbtft_register_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xfcd44a0f fbtft_write_spi_emulate_9 +EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x44b19766 gbaudio_register_module +EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0xf9afdc8d gbaudio_unregister_module +EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0xfe3b0a4e gbaudio_module_update +EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0x202cff61 adt7316_probe +EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0x7b1cee3f ade7854_probe +EXPORT_SYMBOL drivers/staging/media/av7110/sp8870 0x095b716b sp8870_attach +EXPORT_SYMBOL drivers/staging/media/zoran/videocodec 0x100e2e21 videocodec_attach +EXPORT_SYMBOL drivers/staging/media/zoran/videocodec 0x22e360d0 videocodec_detach +EXPORT_SYMBOL drivers/staging/media/zoran/videocodec 0x68284158 videocodec_unregister +EXPORT_SYMBOL drivers/staging/media/zoran/videocodec 0xb528adb5 videocodec_register +EXPORT_SYMBOL drivers/staging/nvec/nvec 0x2a8f605f nvec_write_sync +EXPORT_SYMBOL drivers/staging/nvec/nvec 0xb57a1a61 nvec_write_async +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0061606c rtllib_wx_set_rawtx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0494faa0 rtllib_wx_get_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x06afc35a rtllib_wx_set_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x075698e7 RemovePeerTS +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0d556845 HT_update_self_and_peer_setting +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0d7b508b rtllib_wx_set_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0f572c32 rtllib_wx_get_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x167e1d47 dot11d_channel_map +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1c6e1697 rtllib_wx_get_rts EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x22166084 rt_global_debug_component -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x22b3f971 rtllib_rx -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2421323f rtllib_wx_get_freq -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x25971127 rtllib_wx_set_encode_ext -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x296b1927 dot11d_channel_map -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2b54491c rtllib_wx_get_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x36112b17 rtllib_softmac_stop_protocol -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3ed62014 rtllib_wx_set_encode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3f684f54 rtllib_reset_queue -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x456a2165 rtllib_wx_set_rawtx -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x482f3534 rtllib_stop_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x503caf21 rtllib_MgntDisconnect -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x555ed744 rtllib_wx_get_essid -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x58cc2d3f rtllib_wx_set_rate -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5eda88a8 rtllib_wx_get_rts -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x626e013c rtllib_wx_set_freq -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x62a95036 rtllib_DisableIntelPromiscuousMode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x69a439ef RemovePeerTS -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6d1b7a1f rtllib_wx_set_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x71e8b572 rtllib_get_beacon -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x722b19ee rtllib_sta_ps_send_null_frame -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7857f207 rtllib_wx_set_rts -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7d6ddc60 rtllib_xmit -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7e4781e1 rtllib_wx_set_power -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8222d3d7 rtllib_stop_scan_syncro -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x85e51877 rtllib_softmac_start_protocol -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x88cd2173 HT_update_self_and_peer_setting -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x904e33ca rtllib_wx_set_auth -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x97528627 alloc_rtllib -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9a2a8aca rtllib_wx_set_mode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9a928163 free_rtllib -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9e8496d1 rtllib_legal_channel -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa6622d2b dot11d_init -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa7773ae0 rtllib_act_scanning -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xaa2b548e rtllib_wx_get_encode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb6e9a809 rtllib_stop_send_beacons -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc3475e32 rtllib_wx_set_gen_ie -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc4363298 rtllib_wx_get_name -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc4e219ec notify_wx_assoc_event -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xcc11c9cd rtllib_wx_set_essid -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xcc748ced rtllib_wx_get_wap -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd4876063 rtllib_ps_tx_ack -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdc65b9c9 rtllib_wx_get_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2551d25c rtllib_softmac_start_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x263809c1 rtllib_get_beacon +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3245e384 rtllib_reset_queue +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x33d25685 rtllib_wx_set_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x416e64c9 rtllib_wx_get_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x43d81387 rtllib_wx_get_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x46ca14a3 notify_wx_assoc_event +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4a37b9ac rtllib_wx_set_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x516d3909 rtllib_wx_set_gen_ie +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x54c2832b dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5d390238 rtllib_start_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6931c58a rtllib_ps_tx_ack +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6fdfa252 rtllib_sta_ps_send_null_frame +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x70b24700 rtllib_wx_get_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7b2391d8 rtllib_wx_get_name +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7ba64430 rtllib_wx_set_encode_ext +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x866c41b1 free_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x87588325 rtllib_wx_set_mlme +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x879b25e5 rtllib_wx_set_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x940969e3 rtllib_act_scanning +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9aa14ca0 rtllib_DisableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9d1dcbe2 rtllib_stop_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9d612cbc rtllib_wx_set_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9d74da86 rtllib_MgntDisconnect +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9eb4537a rtllib_softmac_stop_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa16f9d59 rtllib_wx_set_auth +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xab195477 rtllib_start_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xad8c62bc rtllib_EnableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb20c7d8d rtllib_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb318905d rtllib_rx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbbae4e75 rtllib_wx_set_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc0e40ddc rtllib_wx_set_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc91ce2b4 rtllib_wx_get_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc93866e9 rtllib_wx_get_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd3c26fb0 rtllib_wx_get_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd750c7f3 rtllib_xmit +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdc611260 rtllib_stop_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xde723da7 alloc_rtllib EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdf78f620 rtllib_wlan_frequencies -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe7089f68 rtllib_wx_get_power -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xeaf9f642 rtllib_wx_set_wap -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xff654707 rtllib_wx_set_mlme -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x00044a6a HTUpdateSelfAndPeerSetting -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x006570ee dot11d_reset -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x03b349b3 ieee80211_wx_get_name_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x05f9f148 ieee80211_rx_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x06331ea9 ieee80211_ps_tx_ack_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x07cc569a ieee80211_softmac_stop_protocol_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x096f6044 ieee80211_wx_get_scan_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0b42bf70 ieee80211_wx_get_rate_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0c57bf9e ieee80211_reset_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1a0e2096 ieee80211_stop_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1bcb51c3 ieee80211_softmac_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe6ae3c2b rtllib_wx_set_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xfd305daa rtllib_stop_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x03f5a49a ieee80211_wx_set_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0d1a0e2d dot11d_update_country_ie +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x15b6f0b6 dot11d_scan_complete +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x18513a32 HTUpdateSelfAndPeerSetting +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x196d5751 ieee80211_wx_get_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1ad7573f ieee80211_wx_get_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1b651ef7 ieee80211_wx_get_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1c943a86 ieee80211_wx_set_rate_rsl EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1d66a0ff ieee80211_is_shortslot_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x22ab9a89 ieee80211_softmac_xmit_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2f64e57b ieee80211_wx_get_essid_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3014d80d dot11d_scan_complete -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x40b4028d ieee80211_txb_free_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x46e51f2c ieee80211_wx_set_mode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5fa64cf1 ieee80211_wx_set_essid_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x65259753 ieee80211_wx_get_freq_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7235aae6 ieee80211_get_beacon_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x777e26f3 ieee80211_wx_get_encode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7a48c5c2 ieee80211_wx_set_rawtx_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7a638e64 ieee80211_wx_set_encode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x872be0b5 SendDisassociation_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8bac52d4 ieee80211_start_send_beacons_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9141bf39 ieee80211_wx_set_rts_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x958cc479 ieee80211_wx_set_mlme_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x97c991d9 ieee80211_wx_get_wap_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x98d57e5f ieee80211_disassociate_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9a448d85 dot11d_update_country_ie -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9c6ac875 ieee80211_rx_mgt_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa1326541 ieee80211_wx_set_scan_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa31fba75 ieee80211_wx_set_rate_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xab9bef94 ieee80211_wx_get_rts_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xaba6c89a ieee80211_wx_set_encode_ext_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xad13c174 ieee80211_wx_set_wap_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xadf6d7d5 ieee80211_wpa_supplicant_ioctl_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb62935c2 ieee80211_wx_set_gen_ie_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb7751766 ieee80211_softmac_start_protocol_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbed5edeb ieee80211_wx_set_auth_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbffb44b3 ieee80211_wx_set_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x23a01079 ieee80211_wx_set_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2a104965 ieee80211_wx_set_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2a1be177 ieee80211_start_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x31392112 ieee80211_softmac_xmit_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x33e4197b rtl8192u_dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x38e31fe6 SendDisassociation_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4bee71ef ieee80211_wake_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4dd4ae14 ieee80211_start_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4efb8bb0 ieee80211_wx_get_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4f54809c ieee80211_stop_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4fbdb94a ieee80211_rx_mgt_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5193067c dot11d_reset +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5193e098 ieee80211_stop_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x57e78960 ieee80211_wx_get_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5b84d013 ieee80211_wx_set_gen_ie_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x60b192a5 is_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x640d5aaf ieee80211_wx_set_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x671e664f ieee80211_wx_get_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x69ee14a6 ieee80211_wx_get_name_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7baf793a ieee80211_ps_tx_ack_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7d821ad9 ieee80211_softmac_start_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x82110e0a ieee80211_wx_set_mlme_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x826186b2 notify_wx_assoc_event_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x86a42b8b dot11d_get_max_tx_pwr_in_dbm +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8789c6c8 ieee80211_wx_set_auth_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x897d4d0a ieee80211_reset_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9572aa09 ieee80211_wx_set_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x97048705 ieee80211_stop_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x97b85797 ieee80211_softmac_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x99074248 ieee80211_wx_set_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9a00789c ieee80211_wx_get_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9c151fbc ieee80211_wpa_supplicant_ioctl_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9cfe2f9f ieee80211_wx_get_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa4c06953 ieee80211_disassociate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb3020b0a ieee80211_get_beacon_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbff7f916 ieee80211_rx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc016c215 to_legal_channel EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc370a43e ieee80211_wlan_frequencies_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc62ca7f7 rtl8192u_dot11d_init -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xca09b5f4 to_legal_channel -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcd789256 ieee80211_wx_set_freq_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcf15c072 ieee80211_stop_scan_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcf39ed39 ieee80211_wx_get_power_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd1e536ab dot11d_get_max_tx_pwr_in_dbm -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd3495c7b ieee80211_wake_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd76d888f ieee80211_stop_send_beacons_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xdd870dfe ieee80211_wx_get_encode_ext_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe69c3be9 is_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc3e63101 ieee80211_wx_get_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc6c5d8bd ieee80211_softmac_stop_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xca570227 ieee80211_txb_free_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcc94e394 ieee80211_wx_set_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd78d9c79 ieee80211_wx_set_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe4674fb6 ieee80211_wx_get_scan_rsl EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xecc5fb1b ieee80211_is_54g_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xeeb81a29 ieee80211_wx_get_mode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xeef1f669 ieee80211_start_scan_syncro_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf6e714a2 notify_wx_assoc_event_rsl -EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x028ec553 vchiq_shutdown +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xedb8d36e ieee80211_wx_set_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfea7eb25 ieee80211_wx_set_rawtx_rsl EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x02f8c431 vchiq_queue_kernel_message EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x1c60d406 vchiq_get_service_userdata +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x296c0db0 vchiq_shutdown +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x2bdfb3ff vchiq_open_service EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x327c3232 vchiq_msg_hold -EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x336ed918 vchiq_connect -EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x4530409e vchiq_open_service EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x582ed8ca vchiq_bulk_receive EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x6d5ef163 vchiq_release_message EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x8ff6c2b1 vchiq_get_peer_version @@ -4506,169 +4508,170 @@ EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x9d6478fe vchiq_use_service EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0xa22e9df3 vchiq_add_connected_callback EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0xb05b02ae vchiq_release_service -EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0xb05f3dbc vchiq_initialise +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0xb927c761 vchiq_connect EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0xc407cff0 vchiq_msg_queue_push EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0xe95e0941 vchiq_close_service -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x03b445f8 iscsit_build_datain_pdu -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0561c8fd iscsit_aborted_task -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0bd38f4b iscsit_process_scsi_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0c598789 iscsit_tmr_post_handler -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x169ac25b iscsit_reject_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1a07cb20 iscsit_find_cmd_from_itt_or_dump -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x23dd2570 iscsit_get_datain_values -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2dc1a55e iscsit_build_reject -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x318830eb iscsit_increment_maxcmdsn -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x35352f0f iscsi_change_param_sprintf -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3f3a39c5 iscsit_queue_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x40e7ae4b iscsit_process_nop_out -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x42527946 iscsit_response_queue -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x467e3d88 iscsit_register_transport -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4d9b28f5 iscsit_build_text_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x510b2ed0 iscsit_build_task_mgt_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5435f3b8 iscsit_build_nopin_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x556addda iscsit_add_cmd_to_immediate_queue -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5a26fc95 iscsit_process_text_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5fc825fc iscsit_check_dataout_hdr -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x613ae68d iscsit_check_dataout_payload -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6d60a427 iscsit_sequence_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6e3022bb iscsit_free_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7da0a92b iscsit_stop_dataout_timer -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7e530446 iscsit_setup_nop_out -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8ef2d433 iscsit_logout_post_handler -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x92b9278a iscsit_setup_scsi_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x979ae3cd iscsit_find_cmd_from_itt -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9997d140 iscsit_set_unsolicited_dataout -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa2eba38a iscsit_handle_snack -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa6c44844 iscsit_build_rsp_pdu -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xac39dd78 iscsit_handle_task_mgt_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xaf3f66a9 iscsit_immediate_queue -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb949a2d9 iscsit_handle_logout_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc7a5c8bf iscsit_allocate_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd22ffd40 iscsit_release_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xdd6aefd0 iscsit_build_logout_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xdd6cfae2 __iscsit_check_dataout_hdr -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xdeca60c5 iscsi_target_check_login_request -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xebe4b5e7 iscsit_setup_text_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf203a0b4 iscsit_unregister_transport +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0xed3bcfeb vchiq_initialise +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x04790550 iscsit_setup_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x142020e8 iscsit_build_rsp_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x15adbfd9 iscsi_change_param_sprintf +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x276d2167 iscsit_find_cmd_from_itt +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x29bd01c8 iscsit_release_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x33134398 iscsit_tmr_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4094c876 iscsi_target_check_login_request +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4a2c4be1 iscsit_build_r2ts_for_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4db2f939 iscsit_free_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4f7fab41 iscsit_add_cmd_to_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x68c03791 iscsit_check_dataout_payload +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6a7f42b8 iscsit_build_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6bad1fef iscsit_setup_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6dbfabc9 iscsit_handle_task_mgt_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x73c83248 iscsit_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x76ac8e66 iscsit_queue_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7e456dfc iscsit_handle_snack +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x83a1e401 __iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x865b8f34 iscsit_response_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x935fb9f6 iscsit_cause_connection_reinstatement +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9402fe6e iscsit_find_cmd_from_itt_or_dump +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x95f27a6e iscsit_sequence_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9c5cd0cd iscsit_process_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9d95cf8f iscsit_allocate_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa0ab09c0 iscsit_stop_dataout_timer +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa3290da5 iscsit_build_nopin_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa3446a4d iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa4dcdd3d iscsit_set_unsolicited_dataout +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa543bd38 iscsit_process_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xaa635b18 iscsit_handle_logout_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xaba22e91 iscsit_setup_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xad932131 iscsit_get_datain_values +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xae0618c3 iscsit_build_logout_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb330a973 iscsit_process_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbef9f77c iscsit_build_text_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc5619a2d iscsit_increment_maxcmdsn +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xcba9ad2e iscsit_logout_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xcdfdecbf iscsit_unregister_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe4f25cfc iscsit_build_datain_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe7dd4518 iscsit_register_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe9654b57 iscsit_reject_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xecc3fdeb iscsit_aborted_task +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf11fa985 iscsit_add_reject EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf34332f0 iscsi_find_param_from_key -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf4b2ca26 iscsit_build_r2ts_for_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xfa153fe9 iscsit_cause_connection_reinstatement -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xfb1bb08d iscsit_add_reject -EXPORT_SYMBOL drivers/target/target_core_mod 0x00d88f68 target_backend_unregister -EXPORT_SYMBOL drivers/target/target_core_mod 0x04692d7f transport_alloc_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x05690e05 spc_emulate_report_luns +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf7edc929 iscsit_build_task_mgt_rsp +EXPORT_SYMBOL drivers/target/target_core_mod 0x01ff4118 target_backend_unregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x02250a33 target_nacl_find_deve EXPORT_SYMBOL drivers/target/target_core_mod 0x0871ffd6 transport_set_vpd_ident -EXPORT_SYMBOL drivers/target/target_core_mod 0x0b6e0fbf sbc_get_device_type -EXPORT_SYMBOL drivers/target/target_core_mod 0x0c585a37 core_tpg_get_initiator_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0x0f6996ca spc_emulate_evpd_83 -EXPORT_SYMBOL drivers/target/target_core_mod 0x124022fb target_register_template +EXPORT_SYMBOL drivers/target/target_core_mod 0x0bfed1ec transport_send_check_condition_and_sense EXPORT_SYMBOL drivers/target/target_core_mod 0x142072c0 transport_set_vpd_assoc -EXPORT_SYMBOL drivers/target/target_core_mod 0x1ba45298 target_execute_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x1e0e7029 target_nacl_find_deve -EXPORT_SYMBOL drivers/target/target_core_mod 0x205db7de core_tpg_register -EXPORT_SYMBOL drivers/target/target_core_mod 0x23218e22 __transport_register_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x236b34e0 core_allocate_nexus_loss_ua -EXPORT_SYMBOL drivers/target/target_core_mod 0x25fb202b transport_handle_cdb_direct -EXPORT_SYMBOL drivers/target/target_core_mod 0x279ff2cb core_tpg_set_initiator_node_queue_depth -EXPORT_SYMBOL drivers/target/target_core_mod 0x2df7c862 transport_generic_handle_tmr -EXPORT_SYMBOL drivers/target/target_core_mod 0x3355e9ac target_remove_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x340fd5ca target_show_dynamic_sessions -EXPORT_SYMBOL drivers/target/target_core_mod 0x3464088b transport_alloc_session_tags -EXPORT_SYMBOL drivers/target/target_core_mod 0x34f41cf4 target_set_cmd_data_length -EXPORT_SYMBOL drivers/target/target_core_mod 0x35723ca4 spc_emulate_inquiry_std +EXPORT_SYMBOL drivers/target/target_core_mod 0x15926fa3 transport_handle_cdb_direct +EXPORT_SYMBOL drivers/target/target_core_mod 0x1f792f6a target_execute_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x20fffb77 target_remove_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x226e8cf4 core_tpg_deregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x228c7c25 target_show_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x24c6a4fa passthrough_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x277d0ea0 target_complete_cmd_with_length +EXPORT_SYMBOL drivers/target/target_core_mod 0x28b2cf18 transport_kmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x30cb1d3c transport_init_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x3494fdb4 sbc_dif_verify EXPORT_SYMBOL drivers/target/target_core_mod 0x3a20a9d7 transport_set_vpd_ident_type -EXPORT_SYMBOL drivers/target/target_core_mod 0x43f44079 sbc_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0x4ae0f2a0 target_submit_tmr -EXPORT_SYMBOL drivers/target/target_core_mod 0x4b99bd7e transport_deregister_session_configfs -EXPORT_SYMBOL drivers/target/target_core_mod 0x4bccdf60 target_to_linux_sector -EXPORT_SYMBOL drivers/target/target_core_mod 0x4ca5b5ac transport_copy_sense_to_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x51428545 target_show_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x55da9d5b target_configure_unmap_from_queue -EXPORT_SYMBOL drivers/target/target_core_mod 0x5c67f043 sbc_dif_verify -EXPORT_SYMBOL drivers/target/target_core_mod 0x60852658 transport_backend_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x3cfe165d core_alua_check_nonop_delay +EXPORT_SYMBOL drivers/target/target_core_mod 0x3d2f92ce target_setup_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x3e5b44ef core_tpg_set_initiator_node_queue_depth +EXPORT_SYMBOL drivers/target/target_core_mod 0x4277fabc transport_generic_free_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x42956712 sbc_get_write_same_sectors +EXPORT_SYMBOL drivers/target/target_core_mod 0x437aead5 target_depend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0x44633ea9 core_tpg_check_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x4680cc56 transport_alloc_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0x52416eae transport_generic_handle_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x5ab54fe2 target_cmd_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x5f6b1fa4 passthrough_pr_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x5fa2423a target_wait_for_sess_cmds +EXPORT_SYMBOL drivers/target/target_core_mod 0x5fd315df core_allocate_nexus_loss_ua +EXPORT_SYMBOL drivers/target/target_core_mod 0x61ee775c __target_init_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x6273fd13 target_send_busy EXPORT_SYMBOL drivers/target/target_core_mod 0x638bffb7 target_free_sgl -EXPORT_SYMBOL drivers/target/target_core_mod 0x63f77d85 sbc_dif_copy_prot -EXPORT_SYMBOL drivers/target/target_core_mod 0x663049b3 transport_init_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x66804b04 passthrough_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x6683ff92 target_complete_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x679c27e5 __target_init_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x76059be9 target_wait_for_sess_cmds -EXPORT_SYMBOL drivers/target/target_core_mod 0x77a74fc1 target_send_busy -EXPORT_SYMBOL drivers/target/target_core_mod 0x77c88520 transport_generic_free_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x63f1472c __transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x64ae3b3d core_tpg_get_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x6a968ba6 core_tpg_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x6bb89d43 spc_emulate_report_luns +EXPORT_SYMBOL drivers/target/target_core_mod 0x6e5ce1a6 target_to_linux_sector +EXPORT_SYMBOL drivers/target/target_core_mod 0x709984b8 transport_backend_register EXPORT_SYMBOL drivers/target/target_core_mod 0x7a1d0d3c target_alloc_sgl -EXPORT_SYMBOL drivers/target/target_core_mod 0x7d15a39c target_depend_item -EXPORT_SYMBOL drivers/target/target_core_mod 0x7de4b54b sbc_get_write_same_sectors -EXPORT_SYMBOL drivers/target/target_core_mod 0x835456cf target_complete_cmd_with_sense -EXPORT_SYMBOL drivers/target/target_core_mod 0x8439ef1b core_tpg_check_initiator_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0x87caebd1 target_put_sess_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x8c6aea91 transport_deregister_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x8e8c28fc transport_generic_request_failure -EXPORT_SYMBOL drivers/target/target_core_mod 0x8f2331fd target_unregister_template -EXPORT_SYMBOL drivers/target/target_core_mod 0x94beea4e core_tpg_set_initiator_node_tag -EXPORT_SYMBOL drivers/target/target_core_mod 0x954c3f88 sbc_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x9ac95995 transport_generic_new_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x9b30d8cf target_complete_cmd_with_length -EXPORT_SYMBOL drivers/target/target_core_mod 0x9bda9ab6 target_cmd_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x9e588e1e transport_free_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x9ea37281 target_setup_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x7afb2e5d transport_copy_sense_to_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x8198b45a target_put_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x83b6c84a target_lun_is_rdonly +EXPORT_SYMBOL drivers/target/target_core_mod 0x83c9bbd9 target_submit_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x8a6d5cc6 sbc_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x8ae2be6d target_get_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x957b620e transport_free_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x99447ffa spc_emulate_evpd_83 +EXPORT_SYMBOL drivers/target/target_core_mod 0x9a0f44f7 target_submit_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x9d129cdd passthrough_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0xa0ea63b9 transport_generic_new_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xa377ae18 target_configure_unmap_from_queue +EXPORT_SYMBOL drivers/target/target_core_mod 0xa4442af1 transport_deregister_session_configfs +EXPORT_SYMBOL drivers/target/target_core_mod 0xa47515be transport_kunmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0xa6cd1833 target_show_dynamic_sessions EXPORT_SYMBOL drivers/target/target_core_mod 0xa897a9ce core_tmr_alloc_req -EXPORT_SYMBOL drivers/target/target_core_mod 0xa8e7e798 transport_kmap_data_sg -EXPORT_SYMBOL drivers/target/target_core_mod 0xad555cfe passthrough_pr_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0xb2cb5aa7 target_tpg_has_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0xb4474731 transport_kunmap_data_sg -EXPORT_SYMBOL drivers/target/target_core_mod 0xc05e2467 transport_lookup_tmr_lun -EXPORT_SYMBOL drivers/target/target_core_mod 0xc65892ab target_cmd_init_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0xcd9d23ce transport_lookup_cmd_lun -EXPORT_SYMBOL drivers/target/target_core_mod 0xd4afa47b transport_send_check_condition_and_sense -EXPORT_SYMBOL drivers/target/target_core_mod 0xd60f1f51 spc_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0xd9284b30 transport_wait_for_tasks -EXPORT_SYMBOL drivers/target/target_core_mod 0xecd6634d passthrough_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0xecffe961 target_submit_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xedf3fdb9 target_get_sess_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xf02ebeaa transport_register_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xf245ca9b target_put_nacl +EXPORT_SYMBOL drivers/target/target_core_mod 0xa8aaa399 target_cmd_init_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xa91aff9f transport_generic_request_failure +EXPORT_SYMBOL drivers/target/target_core_mod 0xa958bad6 target_unregister_template +EXPORT_SYMBOL drivers/target/target_core_mod 0xaa5eec5d transport_deregister_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xb5975ca6 sbc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xbd79bbed target_tpg_has_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0xc254b56b target_put_nacl +EXPORT_SYMBOL drivers/target/target_core_mod 0xc2b9f0ff target_set_cmd_data_length +EXPORT_SYMBOL drivers/target/target_core_mod 0xc6987dbe target_stop_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xc80d0f97 target_complete_cmd_with_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0xcf6361b2 transport_alloc_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xcf6abaea spc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xd551ffc3 sbc_dif_copy_prot +EXPORT_SYMBOL drivers/target/target_core_mod 0xd586beeb target_register_template +EXPORT_SYMBOL drivers/target/target_core_mod 0xd80e3530 target_complete_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xd915c615 transport_lookup_tmr_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0xdf80bc27 transport_lookup_cmd_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0xe53a31fe target_undepend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0xeb0bc097 core_tpg_set_initiator_node_tag +EXPORT_SYMBOL drivers/target/target_core_mod 0xee0d6439 spc_emulate_inquiry_std +EXPORT_SYMBOL drivers/target/target_core_mod 0xee73f518 transport_wait_for_tasks EXPORT_SYMBOL drivers/target/target_core_mod 0xf3c2dfe0 transport_set_vpd_proto_id -EXPORT_SYMBOL drivers/target/target_core_mod 0xf646a15c target_lun_is_rdonly -EXPORT_SYMBOL drivers/target/target_core_mod 0xf7d7a4ab core_alua_check_nonop_delay -EXPORT_SYMBOL drivers/target/target_core_mod 0xf849b15e target_undepend_item -EXPORT_SYMBOL drivers/target/target_core_mod 0xfe737431 target_stop_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xff57b903 core_tpg_deregister -EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0x387b45fa usb_cdc_wdm_register -EXPORT_SYMBOL drivers/usb/gadget/libcomposite 0x7eabe9bb usb_os_desc_prepare_interf_dir -EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0x98f94817 sl811h_driver -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x34400ecf usb_wwan_tiocmset -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x3883ff1d usb_wwan_resume -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x45776f2c usb_wwan_write -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x84c8fb25 usb_wwan_chars_in_buffer -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xa992db37 usb_wwan_port_remove -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xc720d72a usb_wwan_write_room -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xd4983aba usb_wwan_tiocmget -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xef4bbd46 usb_wwan_dtr_rts -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xf314f6e9 usb_wwan_close -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xf5f3fec9 usb_wwan_open -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xfbf2ac2e usb_wwan_suspend -EXPORT_SYMBOL drivers/usb/serial/usbserial 0x8975c7ce usb_serial_resume -EXPORT_SYMBOL drivers/usb/serial/usbserial 0xea1584bf usb_serial_suspend -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x1564f0c6 mtype_get_parent_dev -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x3b2fc65d mdev_unregister_device -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x68ee5663 mdev_get_type_group_id -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x6af15c94 mdev_unregister_driver -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x6f355fba mtype_get_type_group_id -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xa532ee01 mdev_parent_dev -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xf0a1cf5e mdev_register_driver -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xfab0eea4 mdev_register_device +EXPORT_SYMBOL drivers/target/target_core_mod 0xf80862cd sbc_get_device_type +EXPORT_SYMBOL drivers/target/target_core_mod 0xfa286874 transport_register_session +EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0xfdb72e53 usb_cdc_wdm_register +EXPORT_SYMBOL drivers/usb/gadget/libcomposite 0x68123a09 usb_os_desc_prepare_interf_dir +EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0x186537a0 sl811h_driver +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x0b6f911f usb_wwan_write_room +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x1acce2c3 usb_wwan_write +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x1c4c5f76 usb_wwan_chars_in_buffer +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x2c6654db usb_wwan_tiocmget +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x30809b1c usb_wwan_suspend +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x7463db74 usb_wwan_open +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x74fb7187 usb_wwan_close +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xae23b583 usb_wwan_port_remove +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xbb9c8b1a usb_wwan_resume +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xee3b30c4 usb_wwan_dtr_rts +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xf544bc6c usb_wwan_tiocmset +EXPORT_SYMBOL drivers/usb/serial/usbserial 0x5ef0eae7 usb_serial_suspend +EXPORT_SYMBOL drivers/usb/serial/usbserial 0xa92248b2 usb_serial_resume +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x19bb09fd mdev_get_type_group_id +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x20e76175 mdev_unregister_driver +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x232da774 mdev_register_device +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x39960b56 mdev_register_driver +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xa2b57cf8 mtype_get_type_group_id +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xabd8a0d9 mdev_parent_dev +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xb6611407 mdev_unregister_device +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xb8dbfdad mtype_get_parent_dev EXPORT_SYMBOL drivers/vfio/vfio 0x19567d06 vfio_info_cap_shift EXPORT_SYMBOL drivers/vfio/vfio 0x1aa9fba0 vfio_dma_rw -EXPORT_SYMBOL drivers/vfio/vfio 0x23c99793 vfio_unregister_notifier +EXPORT_SYMBOL drivers/vfio/vfio 0x3d913e13 vfio_register_notifier EXPORT_SYMBOL drivers/vfio/vfio 0x48a81d7e vfio_group_pin_pages EXPORT_SYMBOL drivers/vfio/vfio 0x6c28be5a vfio_info_add_capability EXPORT_SYMBOL drivers/vfio/vfio 0x7834defd vfio_group_unpin_pages -EXPORT_SYMBOL drivers/vfio/vfio 0x9b7a7a94 vfio_pin_pages -EXPORT_SYMBOL drivers/vfio/vfio 0x9c7f63ac vfio_unpin_pages -EXPORT_SYMBOL drivers/vfio/vfio 0xaae33f2d vfio_register_notifier +EXPORT_SYMBOL drivers/vfio/vfio 0xa32c76cd vfio_pin_pages EXPORT_SYMBOL drivers/vfio/vfio 0xadc044b7 vfio_set_irqs_validate_and_prepare -EXPORT_SYMBOL drivers/vhost/vhost 0x9e2cc70f vhost_chr_poll -EXPORT_SYMBOL drivers/vhost/vhost 0xc03e2dda vhost_chr_write_iter +EXPORT_SYMBOL drivers/vfio/vfio 0xf6c1e346 vfio_unpin_pages +EXPORT_SYMBOL drivers/vfio/vfio 0xf798e6b5 vfio_unregister_notifier +EXPORT_SYMBOL drivers/vhost/vhost 0x7d52e3db vhost_chr_write_iter +EXPORT_SYMBOL drivers/vhost/vhost 0x8a2b51f3 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 @@ -4699,130 +4702,130 @@ 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 0x409a2196 lcd_device_register -EXPORT_SYMBOL drivers/video/backlight/lcd 0x58ae3d39 devm_lcd_device_unregister -EXPORT_SYMBOL drivers/video/backlight/lcd 0x6ec295b2 devm_lcd_device_register -EXPORT_SYMBOL drivers/video/backlight/lcd 0x9fcebab0 lcd_device_unregister +EXPORT_SYMBOL drivers/video/backlight/lcd 0x2f6919bf lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0x5d3d2be3 devm_lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0x8f489f4a devm_lcd_device_unregister +EXPORT_SYMBOL drivers/video/backlight/lcd 0xacf2f22f lcd_device_unregister +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x066434df svga_settile EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x17f3f471 svga_set_default_seq_regs EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x1be6dc30 svga_set_textmode_vga_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x3e11f2b1 svga_settile +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x3700c077 svga_tilecopy +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x42399fee svga_tilefill EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x4ab38ef2 svga_set_default_crt_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x7b739873 svga_get_caps -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x7bdab79d svga_tilecopy -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x7ef9dd38 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 0x89c2e0d3 svga_get_tilemax -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x9c01cb15 svga_tilecursor EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xb0ab2b2e svga_check_timings +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xb28ecb1c svga_tileblit EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd22ca511 svga_set_default_atc_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd4221bb3 svga_get_caps EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd6ec2c44 svga_compute_pll EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xdcc5a013 svga_wseq_multi EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xe28d2a49 svga_set_default_gfx_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xe3d0cc38 svga_tileblit -EXPORT_SYMBOL drivers/video/fbdev/core/syscopyarea 0x748845a0 sys_copyarea -EXPORT_SYMBOL drivers/video/fbdev/core/sysfillrect 0x08bbeb7f sys_fillrect -EXPORT_SYMBOL drivers/video/fbdev/core/sysimgblt 0x4664bb7f sys_imageblit +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xee485cda svga_tilecursor +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xffaef3ed svga_get_tilemax +EXPORT_SYMBOL drivers/video/fbdev/core/syscopyarea 0x45d49782 sys_copyarea +EXPORT_SYMBOL drivers/video/fbdev/core/sysfillrect 0x2c952a2a sys_fillrect +EXPORT_SYMBOL drivers/video/fbdev/core/sysimgblt 0x6017afd4 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 0x7457a20d cyber2000fb_attach EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0xb39f68d1 cyber2000fb_enable_extregs -EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0xe4c76ecd cyber2000fb_attach EXPORT_SYMBOL drivers/video/fbdev/macmodes 0x233917d1 mac_vmode_to_var -EXPORT_SYMBOL drivers/video/fbdev/macmodes 0x77f41c4d mac_find_mode +EXPORT_SYMBOL drivers/video/fbdev/macmodes 0x692120f0 mac_find_mode EXPORT_SYMBOL drivers/video/fbdev/macmodes 0xe2304303 mac_map_monitor_sense -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x336171b6 matroxfb_g450_setclk -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x687f63dd matroxfb_g450_setpll_cond -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xcbe0a765 g450_mnp2f -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x15317ca0 DAC1064_global_restore -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x602d9bae DAC1064_global_init -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xf0cd02f0 matrox_mystique -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xfa776e81 matrox_G100 -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_Ti3026 0xa96e5e1d matrox_millennium -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_accel 0xf7efc15d matrox_cfbX_init -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x0954a731 matroxfb_wait_for_sync -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x117279ab matroxfb_register_driver -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xbb2f3a4d matroxfb_unregister_driver -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xde0394d5 matroxfb_enable_irq -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0xb361ea4d matroxfb_g450_shutdown -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0xe239f65a matroxfb_g450_connect -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x067310ae matroxfb_vgaHWrestore -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x1ab91948 matroxfb_vgaHWinit -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x20f9923d matroxfb_read_pins +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x00496a6c g450_mnp2f +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x016fc69d matroxfb_g450_setclk +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x62dad716 matroxfb_g450_setpll_cond +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x136d9b79 DAC1064_global_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x40c13f28 matrox_mystique +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x7ae47596 DAC1064_global_restore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xed807b3b matrox_G100 +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_Ti3026 0xb8e7ed17 matrox_millennium +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_accel 0xb895a8a0 matrox_cfbX_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x109c2b2a matroxfb_register_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x411dc7f0 matroxfb_enable_irq +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x6323c714 matroxfb_wait_for_sync +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xb844b969 matroxfb_unregister_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0xee390f0b matroxfb_g450_shutdown +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0xf682d7ef matroxfb_g450_connect +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x00b9d172 matroxfb_read_pins +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x232ceab4 matroxfb_vgaHWinit EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x25cf8049 matroxfb_PLL_calcclock -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x2b08b3f8 matroxfb_DAC_in -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x911e4e68 matroxfb_DAC_out +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x6255e6b8 matroxfb_DAC_out +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xb95dee20 matroxfb_DAC_in EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xcdc90c64 matroxfb_var2my +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xf794715d matroxfb_vgaHWrestore EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0x3037658e sis_malloc EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0xfe963115 sis_free EXPORT_SYMBOL drivers/video/vgastate 0x686de290 restore_vga EXPORT_SYMBOL drivers/video/vgastate 0xe7a2620e save_vga -EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x341ed122 is_virtio_dma_buf -EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x6a0f3b73 virtio_dma_buf_get_uuid -EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x71425a23 virtio_dma_buf_export -EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x839044f1 virtio_dma_buf_attach -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x2a41d8a8 w1_ds2780_eeprom_cmd -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x4db89b76 w1_ds2780_io -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x2a719602 w1_ds2781_io -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x535b2994 w1_ds2781_eeprom_cmd -EXPORT_SYMBOL drivers/w1/wire 0x59bcff6c w1_remove_master_device -EXPORT_SYMBOL drivers/w1/wire 0x7e957572 w1_add_master_device -EXPORT_SYMBOL drivers/w1/wire 0x9eec14eb w1_unregister_family -EXPORT_SYMBOL drivers/w1/wire 0xdc23dc9b w1_register_family -EXPORT_SYMBOL fs/fscache/fscache 0x0dfb7b31 __fscache_uncache_all_inode_pages -EXPORT_SYMBOL fs/fscache/fscache 0x179f8d3d __fscache_attr_changed -EXPORT_SYMBOL fs/fscache/fscache 0x1ad457c7 __fscache_maybe_release_page -EXPORT_SYMBOL fs/fscache/fscache 0x1fbf8ad6 __fscache_enable_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x28782a19 __fscache_unregister_netfs -EXPORT_SYMBOL fs/fscache/fscache 0x318831d8 __fscache_begin_read_operation -EXPORT_SYMBOL fs/fscache/fscache 0x37281b86 __fscache_invalidate -EXPORT_SYMBOL fs/fscache/fscache 0x37fa4402 fscache_io_error -EXPORT_SYMBOL fs/fscache/fscache 0x411c58c4 fscache_withdraw_cache -EXPORT_SYMBOL fs/fscache/fscache 0x41940f6b __fscache_uncache_page -EXPORT_SYMBOL fs/fscache/fscache 0x42f1da84 __fscache_disable_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x45184007 fscache_enqueue_operation -EXPORT_SYMBOL fs/fscache/fscache 0x4b448712 fscache_init_cache -EXPORT_SYMBOL fs/fscache/fscache 0x4e359b17 fscache_object_mark_killed -EXPORT_SYMBOL fs/fscache/fscache 0x5feb1840 fscache_object_init -EXPORT_SYMBOL fs/fscache/fscache 0x62153502 __fscache_read_or_alloc_pages -EXPORT_SYMBOL fs/fscache/fscache 0x66cbb5bd fscache_op_complete -EXPORT_SYMBOL fs/fscache/fscache 0x66fa3234 fscache_fsdef_index +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x402d0370 virtio_dma_buf_export +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x4f2fbcc6 is_virtio_dma_buf +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x54796efe virtio_dma_buf_get_uuid +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0xd76d9909 virtio_dma_buf_attach +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x6a17f2bc w1_ds2780_io +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x9e276e68 w1_ds2780_eeprom_cmd +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x134d0bc7 w1_ds2781_eeprom_cmd +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x8c5a504a w1_ds2781_io +EXPORT_SYMBOL drivers/w1/wire 0x0aee365a w1_unregister_family +EXPORT_SYMBOL drivers/w1/wire 0x11eab507 w1_add_master_device +EXPORT_SYMBOL drivers/w1/wire 0x41659514 w1_register_family +EXPORT_SYMBOL drivers/w1/wire 0xb190b050 w1_remove_master_device +EXPORT_SYMBOL fs/fscache/fscache 0x054c434f __fscache_uncache_page +EXPORT_SYMBOL fs/fscache/fscache 0x18184547 __fscache_update_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x1a941deb fscache_mark_pages_cached +EXPORT_SYMBOL fs/fscache/fscache 0x2ef7068c fscache_io_error +EXPORT_SYMBOL fs/fscache/fscache 0x2f320ca2 __fscache_acquire_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x35079862 __fscache_wait_on_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0x400f581e __fscache_read_or_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0x407a32c3 __fscache_begin_read_operation +EXPORT_SYMBOL fs/fscache/fscache 0x4aefb64d fscache_mark_page_cached +EXPORT_SYMBOL fs/fscache/fscache 0x4f90fc97 fscache_operation_init +EXPORT_SYMBOL fs/fscache/fscache 0x55bcf55b __fscache_relinquish_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x55d99647 __fscache_check_page_write +EXPORT_SYMBOL fs/fscache/fscache 0x56d04bdc __fscache_disable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x585b345f __fscache_readpages_cancel +EXPORT_SYMBOL fs/fscache/fscache 0x58606aad __fscache_wait_on_page_write +EXPORT_SYMBOL fs/fscache/fscache 0x5a848d19 __fscache_register_netfs +EXPORT_SYMBOL fs/fscache/fscache 0x60969f4d fscache_object_destroy +EXPORT_SYMBOL fs/fscache/fscache 0x672e3a86 __fscache_unregister_netfs EXPORT_SYMBOL fs/fscache/fscache 0x6acefa42 fscache_cache_cleared_wq -EXPORT_SYMBOL fs/fscache/fscache 0x7270d7f5 __fscache_write_page +EXPORT_SYMBOL fs/fscache/fscache 0x6fe7ded0 __fscache_check_consistency EXPORT_SYMBOL fs/fscache/fscache 0x74530ecd fscache_op_debug_id -EXPORT_SYMBOL fs/fscache/fscache 0x7552dc48 __fscache_update_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x7617dea4 __fscache_wait_on_invalidate -EXPORT_SYMBOL fs/fscache/fscache 0x77f0ced2 __fscache_check_page_write -EXPORT_SYMBOL fs/fscache/fscache 0x8150302b fscache_add_cache -EXPORT_SYMBOL fs/fscache/fscache 0x8c6531d0 __fscache_register_netfs -EXPORT_SYMBOL fs/fscache/fscache 0x9ce642f9 fscache_operation_init -EXPORT_SYMBOL fs/fscache/fscache 0xa3890121 __fscache_wait_on_page_write -EXPORT_SYMBOL fs/fscache/fscache 0xa95c915f fscache_object_destroy -EXPORT_SYMBOL fs/fscache/fscache 0xaa36067d __fscache_readpages_cancel -EXPORT_SYMBOL fs/fscache/fscache 0xaaa22f4f fscache_object_lookup_negative -EXPORT_SYMBOL fs/fscache/fscache 0xabc52fb6 __fscache_relinquish_cookie -EXPORT_SYMBOL fs/fscache/fscache 0xaec762e3 fscache_obtained_object -EXPORT_SYMBOL fs/fscache/fscache 0xb721c966 __fscache_read_or_alloc_page -EXPORT_SYMBOL fs/fscache/fscache 0xb96ab031 fscache_object_retrying_stale -EXPORT_SYMBOL fs/fscache/fscache 0xbc9f89ab fscache_mark_page_cached -EXPORT_SYMBOL fs/fscache/fscache 0xcbba119c fscache_put_operation -EXPORT_SYMBOL fs/fscache/fscache 0xce232881 __fscache_alloc_page -EXPORT_SYMBOL fs/fscache/fscache 0xd3439726 fscache_mark_pages_cached -EXPORT_SYMBOL fs/fscache/fscache 0xde98c48e fscache_check_aux -EXPORT_SYMBOL fs/fscache/fscache 0xec2775c5 __fscache_acquire_cookie -EXPORT_SYMBOL fs/fscache/fscache 0xfc322f7c __fscache_check_consistency -EXPORT_SYMBOL fs/netfs/netfs 0x0faac550 netfs_readpage -EXPORT_SYMBOL fs/netfs/netfs 0x366a0cf9 netfs_subreq_terminated -EXPORT_SYMBOL fs/netfs/netfs 0xc0f2c959 netfs_write_begin -EXPORT_SYMBOL fs/netfs/netfs 0xeaaf7db8 netfs_stats_show -EXPORT_SYMBOL fs/netfs/netfs 0xfe70f68a netfs_readahead +EXPORT_SYMBOL fs/fscache/fscache 0x7548eebe __fscache_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0x75bd6cc0 fscache_enqueue_operation +EXPORT_SYMBOL fs/fscache/fscache 0x79ea2dbf fscache_obtained_object +EXPORT_SYMBOL fs/fscache/fscache 0x7d199392 __fscache_write_page +EXPORT_SYMBOL fs/fscache/fscache 0x808ea6e4 fscache_withdraw_cache +EXPORT_SYMBOL fs/fscache/fscache 0x86ec98e0 fscache_put_operation +EXPORT_SYMBOL fs/fscache/fscache 0x8cbca97e fscache_object_retrying_stale +EXPORT_SYMBOL fs/fscache/fscache 0x918c3c5c __fscache_uncache_all_inode_pages +EXPORT_SYMBOL fs/fscache/fscache 0xb13e4a8b fscache_check_aux +EXPORT_SYMBOL fs/fscache/fscache 0xc16bdd05 __fscache_maybe_release_page +EXPORT_SYMBOL fs/fscache/fscache 0xc4f67329 __fscache_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0xdecb3360 fscache_init_cache +EXPORT_SYMBOL fs/fscache/fscache 0xeaaca5f1 fscache_object_lookup_negative +EXPORT_SYMBOL fs/fscache/fscache 0xef530f3b fscache_object_init +EXPORT_SYMBOL fs/fscache/fscache 0xf0d9b815 fscache_op_complete +EXPORT_SYMBOL fs/fscache/fscache 0xf11358c1 __fscache_enable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xf25848b9 fscache_object_mark_killed +EXPORT_SYMBOL fs/fscache/fscache 0xf3298028 __fscache_attr_changed +EXPORT_SYMBOL fs/fscache/fscache 0xf4f4877b fscache_fsdef_index +EXPORT_SYMBOL fs/fscache/fscache 0xf868477c __fscache_read_or_alloc_pages +EXPORT_SYMBOL fs/fscache/fscache 0xfa1c5c09 fscache_add_cache +EXPORT_SYMBOL fs/netfs/netfs 0x7207e285 netfs_subreq_terminated +EXPORT_SYMBOL fs/netfs/netfs 0x73490cff netfs_readahead +EXPORT_SYMBOL fs/netfs/netfs 0x8f6adf00 netfs_readpage +EXPORT_SYMBOL fs/netfs/netfs 0xe29109d5 netfs_stats_show +EXPORT_SYMBOL fs/netfs/netfs 0xf0e7b6ad netfs_write_begin EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active -EXPORT_SYMBOL fs/quota/quota_tree 0x425b279d qtree_entry_unused -EXPORT_SYMBOL fs/quota/quota_tree 0x6a56e1ae qtree_release_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0xba3137ef qtree_write_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0xccd4123b qtree_delete_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0xcf4e7e69 qtree_get_next_id -EXPORT_SYMBOL fs/quota/quota_tree 0xf7c3c8e7 qtree_read_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x1bd0748d qtree_delete_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x31fc16c7 qtree_read_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x9600e38a qtree_release_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xbd5d70b1 qtree_write_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xd08279e1 qtree_get_next_id +EXPORT_SYMBOL fs/quota/quota_tree 0xf26b77ab qtree_entry_unused 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 @@ -4850,7 +4853,7 @@ EXPORT_SYMBOL lib/libcrc32c 0xb15b4109 crc32c EXPORT_SYMBOL lib/lru_cache 0x0641307b lc_destroy EXPORT_SYMBOL lib/lru_cache 0x098d2ed9 lc_try_get -EXPORT_SYMBOL lib/lru_cache 0x1ff8317c lc_seq_printf_stats +EXPORT_SYMBOL lib/lru_cache 0x2ab33076 lc_seq_printf_stats EXPORT_SYMBOL lib/lru_cache 0x2d47ac83 lc_committed EXPORT_SYMBOL lib/lru_cache 0x2f3dcecb lc_index_of EXPORT_SYMBOL lib/lru_cache 0x4522d82a lc_reset @@ -4859,11 +4862,11 @@ EXPORT_SYMBOL lib/lru_cache 0x7257beee lc_element_by_index EXPORT_SYMBOL lib/lru_cache 0x9134feb7 lc_get EXPORT_SYMBOL lib/lru_cache 0xb672aa97 lc_create +EXPORT_SYMBOL lib/lru_cache 0xbaf8d2d5 lc_seq_dump_details EXPORT_SYMBOL lib/lru_cache 0xbfbe53d5 lc_get_cumulative EXPORT_SYMBOL lib/lru_cache 0xc3a98c1d lc_try_lock EXPORT_SYMBOL lib/lru_cache 0xcc979a91 lc_set EXPORT_SYMBOL lib/lru_cache 0xefec290a lc_find -EXPORT_SYMBOL lib/lru_cache 0xf547ffb5 lc_seq_dump_details EXPORT_SYMBOL lib/lru_cache 0xfd525ec7 lc_put EXPORT_SYMBOL lib/lz4/lz4_compress 0x4f4d78c5 LZ4_compress_default EXPORT_SYMBOL lib/lz4/lz4_compress 0x5bc92e85 LZ4_compress_destSize @@ -4932,816 +4935,817 @@ EXPORT_SYMBOL lib/zstd/zstd_compress 0xefe4f679 ZSTD_CCtxWorkspaceBound EXPORT_SYMBOL lib/zstd/zstd_compress 0xfdf70093 ZSTD_CStreamOutSize EXPORT_SYMBOL lib/zstd/zstd_compress 0xff9c4b56 ZSTD_compressBound -EXPORT_SYMBOL net/6lowpan/6lowpan 0x78962d0e lowpan_register_netdevice -EXPORT_SYMBOL net/6lowpan/6lowpan 0x92501374 lowpan_register_netdev -EXPORT_SYMBOL net/6lowpan/6lowpan 0xacf6bcf9 lowpan_nhc_del -EXPORT_SYMBOL net/6lowpan/6lowpan 0xb3fd40d2 lowpan_nhc_add -EXPORT_SYMBOL net/6lowpan/6lowpan 0xcdb2af18 lowpan_unregister_netdev -EXPORT_SYMBOL net/6lowpan/6lowpan 0xfdb1cc15 lowpan_unregister_netdevice -EXPORT_SYMBOL net/802/p8022 0x368c3233 unregister_8022_client -EXPORT_SYMBOL net/802/p8022 0xaf5792ce register_8022_client -EXPORT_SYMBOL net/802/psnap 0x120dc0fe unregister_snap_client -EXPORT_SYMBOL net/802/psnap 0x36f95ff1 register_snap_client -EXPORT_SYMBOL net/9p/9pnet 0x0a9e4529 p9_client_read_once +EXPORT_SYMBOL net/6lowpan/6lowpan 0x14b989bb lowpan_unregister_netdevice +EXPORT_SYMBOL net/6lowpan/6lowpan 0x2770ed7f lowpan_unregister_netdev +EXPORT_SYMBOL net/6lowpan/6lowpan 0x6ddec7cf lowpan_nhc_del +EXPORT_SYMBOL net/6lowpan/6lowpan 0x806a3316 lowpan_register_netdevice +EXPORT_SYMBOL net/6lowpan/6lowpan 0x932971ed lowpan_register_netdev +EXPORT_SYMBOL net/6lowpan/6lowpan 0xe60e3401 lowpan_nhc_add +EXPORT_SYMBOL net/802/p8022 0x0e459200 register_8022_client +EXPORT_SYMBOL net/802/p8022 0x8b6cb036 unregister_8022_client +EXPORT_SYMBOL net/802/psnap 0x5a8c1f42 register_snap_client +EXPORT_SYMBOL net/802/psnap 0x6b6d3f94 unregister_snap_client +EXPORT_SYMBOL net/9p/9pnet 0x031bd76c p9_client_link +EXPORT_SYMBOL net/9p/9pnet 0x10407d23 p9_client_readlink +EXPORT_SYMBOL net/9p/9pnet 0x1223a1f6 p9_tag_lookup +EXPORT_SYMBOL net/9p/9pnet 0x13adb722 p9_client_renameat EXPORT_SYMBOL net/9p/9pnet 0x1430723c p9_req_put -EXPORT_SYMBOL net/9p/9pnet 0x1592be1b p9_is_proto_dotu -EXPORT_SYMBOL net/9p/9pnet 0x1c0981d3 p9_client_clunk -EXPORT_SYMBOL net/9p/9pnet 0x1ea360e9 p9_client_statfs -EXPORT_SYMBOL net/9p/9pnet 0x20d3ce7d p9_client_stat -EXPORT_SYMBOL net/9p/9pnet 0x2456c869 p9_client_open -EXPORT_SYMBOL net/9p/9pnet 0x272d3f09 p9_client_cb -EXPORT_SYMBOL net/9p/9pnet 0x29813cf3 v9fs_get_trans_by_name -EXPORT_SYMBOL net/9p/9pnet 0x3287a62e p9_client_wstat -EXPORT_SYMBOL net/9p/9pnet 0x35cbef6f v9fs_unregister_trans +EXPORT_SYMBOL net/9p/9pnet 0x166d3a03 v9fs_unregister_trans +EXPORT_SYMBOL net/9p/9pnet 0x1cf16261 p9_client_create +EXPORT_SYMBOL net/9p/9pnet 0x1d207ff0 p9_client_statfs +EXPORT_SYMBOL net/9p/9pnet 0x1d70ea4c p9_client_fcreate +EXPORT_SYMBOL net/9p/9pnet 0x2cb8c822 p9_client_unlinkat +EXPORT_SYMBOL net/9p/9pnet 0x3022e14c p9_client_mknod_dotl +EXPORT_SYMBOL net/9p/9pnet 0x32481417 p9_client_lock_dotl +EXPORT_SYMBOL net/9p/9pnet 0x346648f2 p9_client_stat EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno EXPORT_SYMBOL net/9p/9pnet 0x41ce9823 p9stat_read -EXPORT_SYMBOL net/9p/9pnet 0x41e1cc1a p9_client_read -EXPORT_SYMBOL net/9p/9pnet 0x4d44c1af p9_tag_lookup -EXPORT_SYMBOL net/9p/9pnet 0x50f7289a p9_client_attach -EXPORT_SYMBOL net/9p/9pnet 0x55aaffcd p9_client_link -EXPORT_SYMBOL net/9p/9pnet 0x5a39cd54 p9_client_lock_dotl -EXPORT_SYMBOL net/9p/9pnet 0x60cd4c3b p9_client_symlink -EXPORT_SYMBOL net/9p/9pnet 0x61c4482c p9_client_setattr -EXPORT_SYMBOL net/9p/9pnet 0x6215f61b p9_show_client_options -EXPORT_SYMBOL net/9p/9pnet 0x699e7aac p9_client_getattr_dotl -EXPORT_SYMBOL net/9p/9pnet 0x6ec39b75 p9_client_readdir -EXPORT_SYMBOL net/9p/9pnet 0x73929ccd p9_client_create_dotl -EXPORT_SYMBOL net/9p/9pnet 0x7ba78f9e p9_client_fsync -EXPORT_SYMBOL net/9p/9pnet 0x945a2492 p9_client_write -EXPORT_SYMBOL net/9p/9pnet 0x95265290 p9_client_readlink -EXPORT_SYMBOL net/9p/9pnet 0x9526ee80 p9_client_walk +EXPORT_SYMBOL net/9p/9pnet 0x42b5e5e9 p9_client_readdir +EXPORT_SYMBOL net/9p/9pnet 0x4cac560e p9_is_proto_dotu +EXPORT_SYMBOL net/9p/9pnet 0x59b7312d p9_client_destroy +EXPORT_SYMBOL net/9p/9pnet 0x6dec9b37 p9_show_client_options +EXPORT_SYMBOL net/9p/9pnet 0x6f126e99 p9_client_setattr +EXPORT_SYMBOL net/9p/9pnet 0x77849e06 p9_client_disconnect +EXPORT_SYMBOL net/9p/9pnet 0x7a9c342e p9_client_fsync +EXPORT_SYMBOL net/9p/9pnet 0x7b1b068e p9_client_read +EXPORT_SYMBOL net/9p/9pnet 0x81f16d0b p9_client_rename +EXPORT_SYMBOL net/9p/9pnet 0x84890359 p9_release_pages +EXPORT_SYMBOL net/9p/9pnet 0x89487e07 v9fs_get_default_trans +EXPORT_SYMBOL net/9p/9pnet 0x8b98bdd2 v9fs_register_trans +EXPORT_SYMBOL net/9p/9pnet 0x8d5a7719 p9_is_proto_dotl EXPORT_SYMBOL net/9p/9pnet 0x95bd8f96 p9dirent_read EXPORT_SYMBOL net/9p/9pnet 0x984c5e73 p9_fcall_fini -EXPORT_SYMBOL net/9p/9pnet 0x9cd96265 p9_client_remove -EXPORT_SYMBOL net/9p/9pnet 0x9dff3c64 p9_release_pages -EXPORT_SYMBOL net/9p/9pnet 0xa072a82e p9_client_getlock_dotl -EXPORT_SYMBOL net/9p/9pnet 0xa9283371 p9_client_mknod_dotl -EXPORT_SYMBOL net/9p/9pnet 0xaa027a39 p9_client_destroy -EXPORT_SYMBOL net/9p/9pnet 0xade15e0e p9_client_mkdir_dotl +EXPORT_SYMBOL net/9p/9pnet 0x99a84980 p9_client_mkdir_dotl +EXPORT_SYMBOL net/9p/9pnet 0xa0b53f0f p9_client_write +EXPORT_SYMBOL net/9p/9pnet 0xa2bff056 p9_client_remove +EXPORT_SYMBOL net/9p/9pnet 0xa2f13552 p9_client_cb +EXPORT_SYMBOL net/9p/9pnet 0xaea81f6e v9fs_get_trans_by_name +EXPORT_SYMBOL net/9p/9pnet 0xb091d7bd p9_client_clunk +EXPORT_SYMBOL net/9p/9pnet 0xb3d360b9 p9_client_create_dotl +EXPORT_SYMBOL net/9p/9pnet 0xb4cbce4f p9_client_symlink EXPORT_SYMBOL net/9p/9pnet 0xb79f25fd p9_parse_header -EXPORT_SYMBOL net/9p/9pnet 0xbdf35a33 v9fs_get_default_trans -EXPORT_SYMBOL net/9p/9pnet 0xc74ae6af p9_client_disconnect -EXPORT_SYMBOL net/9p/9pnet 0xca722d64 v9fs_register_trans -EXPORT_SYMBOL net/9p/9pnet 0xce25accf p9_is_proto_dotl +EXPORT_SYMBOL net/9p/9pnet 0xbf22b8fe p9_client_walk +EXPORT_SYMBOL net/9p/9pnet 0xbf32381a p9_client_read_once +EXPORT_SYMBOL net/9p/9pnet 0xcf904be8 p9_client_getattr_dotl +EXPORT_SYMBOL net/9p/9pnet 0xd262cf28 p9_client_getlock_dotl EXPORT_SYMBOL net/9p/9pnet 0xd384c683 p9stat_free -EXPORT_SYMBOL net/9p/9pnet 0xe2f62793 p9_client_create +EXPORT_SYMBOL net/9p/9pnet 0xdf4d4b01 p9_client_wstat EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init -EXPORT_SYMBOL net/9p/9pnet 0xeaf0c578 p9_client_fcreate -EXPORT_SYMBOL net/9p/9pnet 0xee2a4a58 p9_client_begin_disconnect -EXPORT_SYMBOL net/9p/9pnet 0xf225527d p9_client_rename -EXPORT_SYMBOL net/9p/9pnet 0xf90b246e p9_client_renameat -EXPORT_SYMBOL net/9p/9pnet 0xfcb7da6c p9_client_unlinkat -EXPORT_SYMBOL net/appletalk/appletalk 0x81574421 atrtr_get_dev -EXPORT_SYMBOL net/appletalk/appletalk 0x98417314 alloc_ltalkdev -EXPORT_SYMBOL net/appletalk/appletalk 0xb7ea11f6 atalk_find_dev_addr -EXPORT_SYMBOL net/appletalk/appletalk 0xc398257b aarp_send_ddp -EXPORT_SYMBOL net/atm/atm 0x248e8521 atm_dev_release_vccs +EXPORT_SYMBOL net/9p/9pnet 0xe76070f7 p9_client_attach +EXPORT_SYMBOL net/9p/9pnet 0xf325b4ae p9_client_begin_disconnect +EXPORT_SYMBOL net/9p/9pnet 0xfa091af3 p9_client_open +EXPORT_SYMBOL net/appletalk/appletalk 0x2136497f atalk_find_dev_addr +EXPORT_SYMBOL net/appletalk/appletalk 0x70398439 aarp_send_ddp +EXPORT_SYMBOL net/appletalk/appletalk 0xc072fc36 atrtr_get_dev +EXPORT_SYMBOL net/appletalk/appletalk 0xc22f64f6 alloc_ltalkdev +EXPORT_SYMBOL net/atm/atm 0x275c88e4 deregister_atm_ioctl EXPORT_SYMBOL net/atm/atm 0x2cc2d52d vcc_hash EXPORT_SYMBOL net/atm/atm 0x4443d399 atm_proc_root EXPORT_SYMBOL net/atm/atm 0x44c6e633 vcc_sklist_lock -EXPORT_SYMBOL net/atm/atm 0x537c4fe7 vcc_process_recv_queue -EXPORT_SYMBOL net/atm/atm 0x67bd450d atm_init_aal5 -EXPORT_SYMBOL net/atm/atm 0x6b38deb0 atm_dev_signal_change -EXPORT_SYMBOL net/atm/atm 0x6e719f11 atm_dev_lookup -EXPORT_SYMBOL net/atm/atm 0x8c35b4b0 atm_charge -EXPORT_SYMBOL net/atm/atm 0x9a9d3e62 atm_dev_register +EXPORT_SYMBOL net/atm/atm 0x50c834b4 atm_alloc_charge +EXPORT_SYMBOL net/atm/atm 0x536f75d1 atm_dev_lookup +EXPORT_SYMBOL net/atm/atm 0x5a9a3388 atm_dev_deregister +EXPORT_SYMBOL net/atm/atm 0x6ee3264e register_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0x6effa023 vcc_release_async +EXPORT_SYMBOL net/atm/atm 0x8297bb60 atm_dev_signal_change EXPORT_SYMBOL net/atm/atm 0x9feaf287 sonet_subtract_stats EXPORT_SYMBOL net/atm/atm 0xaa024146 sonet_copy_stats -EXPORT_SYMBOL net/atm/atm 0xb40f1988 vcc_insert_socket -EXPORT_SYMBOL net/atm/atm 0xb6335eb3 vcc_release_async -EXPORT_SYMBOL net/atm/atm 0xb9877460 atm_alloc_charge -EXPORT_SYMBOL net/atm/atm 0xcb0a538e register_atm_ioctl -EXPORT_SYMBOL net/atm/atm 0xcd755dfd deregister_atm_ioctl -EXPORT_SYMBOL net/atm/atm 0xe5033921 atm_dev_deregister +EXPORT_SYMBOL net/atm/atm 0xdd895186 atm_dev_release_vccs +EXPORT_SYMBOL net/atm/atm 0xe68059a5 vcc_process_recv_queue +EXPORT_SYMBOL net/atm/atm 0xe85f8029 vcc_insert_socket +EXPORT_SYMBOL net/atm/atm 0xebd0d3ae atm_init_aal5 +EXPORT_SYMBOL net/atm/atm 0xf1885456 atm_charge +EXPORT_SYMBOL net/atm/atm 0xf350ffbe atm_dev_register EXPORT_SYMBOL net/atm/atm 0xf49bc67a atm_pcr_goal EXPORT_SYMBOL net/ax25/ax25 0x14cecd59 ax25_display_timer -EXPORT_SYMBOL net/ax25/ax25 0x152d43f4 ax25_send_frame -EXPORT_SYMBOL net/ax25/ax25 0x1cf47d07 ax25_listen_register +EXPORT_SYMBOL net/ax25/ax25 0x1e61d48d ax25_linkfail_release EXPORT_SYMBOL net/ax25/ax25 0x242852b9 ax25_uid_policy -EXPORT_SYMBOL net/ax25/ax25 0x2b3f5904 ax25_ip_xmit -EXPORT_SYMBOL net/ax25/ax25 0x4139f5a1 ax25_header_ops +EXPORT_SYMBOL net/ax25/ax25 0x308482b2 ax25_listen_register EXPORT_SYMBOL net/ax25/ax25 0x4502c65a asc2ax +EXPORT_SYMBOL net/ax25/ax25 0x4b3690b6 ax25_ip_xmit EXPORT_SYMBOL net/ax25/ax25 0x53dea1ff ax2asc -EXPORT_SYMBOL net/ax25/ax25 0x77f796ec ax25_linkfail_release +EXPORT_SYMBOL net/ax25/ax25 0x83967939 ax25_linkfail_register EXPORT_SYMBOL net/ax25/ax25 0x8ede9e26 ax25_protocol_release EXPORT_SYMBOL net/ax25/ax25 0xc1444946 ax25cmp EXPORT_SYMBOL net/ax25/ax25 0xd43ecbf1 null_ax25_address -EXPORT_SYMBOL net/ax25/ax25 0xdb7fffcc ax25_find_cb -EXPORT_SYMBOL net/ax25/ax25 0xe1ec1453 ax25_linkfail_register +EXPORT_SYMBOL net/ax25/ax25 0xd8538a0d ax25_find_cb +EXPORT_SYMBOL net/ax25/ax25 0xdd487cc0 ax25_send_frame EXPORT_SYMBOL net/ax25/ax25 0xee02e420 ax25_findbyuid -EXPORT_SYMBOL net/ax25/ax25 0xfb1f9a72 ax25_listen_release -EXPORT_SYMBOL net/bluetooth/bluetooth 0x04fed597 hci_get_route -EXPORT_SYMBOL net/bluetooth/bluetooth 0x06bdf61e hci_set_fw_info +EXPORT_SYMBOL net/ax25/ax25 0xfbafad26 ax25_header_ops +EXPORT_SYMBOL net/ax25/ax25 0xfc33fc2a ax25_listen_release +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0188e72e __hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0x02411c6a hci_reset_dev EXPORT_SYMBOL net/bluetooth/bluetooth 0x0718b8b7 bt_info -EXPORT_SYMBOL net/bluetooth/bluetooth 0x0b6c2fd5 l2cap_register_user -EXPORT_SYMBOL net/bluetooth/bluetooth 0x0bda3119 hci_unregister_cb -EXPORT_SYMBOL net/bluetooth/bluetooth 0x0cdbea36 hci_mgmt_chan_unregister -EXPORT_SYMBOL net/bluetooth/bluetooth 0x0f31625b bt_sock_recvmsg -EXPORT_SYMBOL net/bluetooth/bluetooth 0x120b7248 hci_set_hw_info -EXPORT_SYMBOL net/bluetooth/bluetooth 0x14bad269 l2cap_is_socket -EXPORT_SYMBOL net/bluetooth/bluetooth 0x1da1a420 hci_cmd_sync -EXPORT_SYMBOL net/bluetooth/bluetooth 0x1e56a5c4 hci_recv_frame -EXPORT_SYMBOL net/bluetooth/bluetooth 0x20663b5c hci_resume_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x130a284b bt_sock_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0x1d605e5d hci_alloc_dev_priv EXPORT_SYMBOL net/bluetooth/bluetooth 0x214e4265 bt_warn -EXPORT_SYMBOL net/bluetooth/bluetooth 0x3751f426 l2cap_unregister_user -EXPORT_SYMBOL net/bluetooth/bluetooth 0x3ba55f14 hci_register_cb -EXPORT_SYMBOL net/bluetooth/bluetooth 0x47829cd9 bt_sock_link -EXPORT_SYMBOL net/bluetooth/bluetooth 0x4d53de50 hci_suspend_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x55105fef __hci_cmd_sync -EXPORT_SYMBOL net/bluetooth/bluetooth 0x5545d460 bt_sock_unlink -EXPORT_SYMBOL net/bluetooth/bluetooth 0x5c30623c hci_conn_check_secure -EXPORT_SYMBOL net/bluetooth/bluetooth 0x5cc989f6 hci_free_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x63f37650 hci_release_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x6adb0116 hci_recv_diag -EXPORT_SYMBOL net/bluetooth/bluetooth 0x71942127 l2cap_conn_put -EXPORT_SYMBOL net/bluetooth/bluetooth 0x7764d34e bt_sock_ioctl -EXPORT_SYMBOL net/bluetooth/bluetooth 0x77f68f32 bt_procfs_cleanup -EXPORT_SYMBOL net/bluetooth/bluetooth 0x7a3e83b4 hci_conn_security +EXPORT_SYMBOL net/bluetooth/bluetooth 0x231915b5 bt_accept_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2933c67b hci_set_hw_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2c2393d6 l2cap_conn_put +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2e1677d5 hci_mgmt_chan_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0x32758ad9 hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0x35afb3c4 l2cap_conn_get +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4824e829 l2cap_chan_close +EXPORT_SYMBOL net/bluetooth/bluetooth 0x48c38d4e hci_conn_switch_role +EXPORT_SYMBOL net/bluetooth/bluetooth 0x49778a3f bt_sock_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4a593c63 hci_set_fw_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0x542a2c8b bt_sock_stream_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0x54eda0a3 hci_suspend_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x575660cb bt_procfs_cleanup +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5b4d4b08 hci_register_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5c505807 bt_sock_wait_ready +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5d2abb44 bt_accept_enqueue +EXPORT_SYMBOL net/bluetooth/bluetooth 0x60d2098f bt_sock_ioctl +EXPORT_SYMBOL net/bluetooth/bluetooth 0x678781e8 hci_mgmt_chan_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0x6b0c2262 __hci_cmd_sync_ev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x71f6eda1 bt_sock_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0x752a1936 l2cap_unregister_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0x76d7f0d4 hci_conn_check_secure 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 0x803957dd bt_accept_enqueue -EXPORT_SYMBOL net/bluetooth/bluetooth 0x8b697207 bt_sock_stream_recvmsg -EXPORT_SYMBOL net/bluetooth/bluetooth 0x8ef0907c __hci_cmd_send +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8133ca55 bt_sock_wait_state +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8bfa4223 __hci_cmd_send EXPORT_SYMBOL net/bluetooth/bluetooth 0x8fea24bd bt_sock_unregister -EXPORT_SYMBOL net/bluetooth/bluetooth 0x99cbaa2d bt_sock_wait_state -EXPORT_SYMBOL net/bluetooth/bluetooth 0xa50391b3 bt_sock_register -EXPORT_SYMBOL net/bluetooth/bluetooth 0xa5a1ba9b l2cap_conn_get -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb099535e hci_mgmt_chan_register -EXPORT_SYMBOL net/bluetooth/bluetooth 0xbdd15ec4 bt_sock_wait_ready -EXPORT_SYMBOL net/bluetooth/bluetooth 0xc30e729a hci_conn_switch_role -EXPORT_SYMBOL net/bluetooth/bluetooth 0xc6681955 hci_register_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xc6e58f7b hci_unregister_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xcf227531 bt_accept_dequeue -EXPORT_SYMBOL net/bluetooth/bluetooth 0xd0536ff8 bt_procfs_init -EXPORT_SYMBOL net/bluetooth/bluetooth 0xd193045b bt_sock_reclassify_lock +EXPORT_SYMBOL net/bluetooth/bluetooth 0x91682e59 hci_unregister_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x95644dbb hci_resume_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x979671c7 hci_recv_diag +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa8bb97bc bt_sock_link +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa9ab2dfb hci_release_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb592670a hci_conn_security +EXPORT_SYMBOL net/bluetooth/bluetooth 0xbce8a2f1 l2cap_is_socket +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc73b1333 bt_sock_poll +EXPORT_SYMBOL net/bluetooth/bluetooth 0xce7c95fd l2cap_register_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd33144e8 hci_free_dev EXPORT_SYMBOL net/bluetooth/bluetooth 0xd7613212 bt_err_ratelimited EXPORT_SYMBOL net/bluetooth/bluetooth 0xddacccf6 bt_warn_ratelimited -EXPORT_SYMBOL net/bluetooth/bluetooth 0xe6c909b0 hci_alloc_dev_priv -EXPORT_SYMBOL net/bluetooth/bluetooth 0xf23c9929 __hci_cmd_sync_ev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xf3bbd682 bt_accept_unlink -EXPORT_SYMBOL net/bluetooth/bluetooth 0xf863ea77 l2cap_chan_close -EXPORT_SYMBOL net/bluetooth/bluetooth 0xfa912a2a hci_reset_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xfbe650c8 bt_sock_poll -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x1d9d7c77 ebt_unregister_table_pre_exit -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x4992e534 ebt_do_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x4eae7aa1 ebt_unregister_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x810a5962 ebt_register_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xa413691f ebt_register_template -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xc6d75db6 ebt_unregister_template +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe2159bbe hci_recv_frame +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe47caf16 hci_register_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xed5ec12b hci_get_route +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf24d4494 bt_sock_reclassify_lock +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf2b030d1 hci_unregister_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf5258249 bt_procfs_init +EXPORT_SYMBOL net/bluetooth/bluetooth 0xfefc4d56 bt_accept_dequeue +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x3b8b472d ebt_unregister_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x43e4b55e ebt_unregister_template +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x5c7ee45f ebt_register_template +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x5e59f2f2 ebt_do_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x6d7c7edd ebt_register_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xbab74f15 ebt_unregister_table_pre_exit EXPORT_SYMBOL net/caif/caif 0x1446b60a caif_client_register_refcnt +EXPORT_SYMBOL net/caif/caif 0x1927c925 get_cfcnfg EXPORT_SYMBOL net/caif/caif 0x2a09f713 cfpkt_fromnative EXPORT_SYMBOL net/caif/caif 0x329dbd06 cfpkt_info +EXPORT_SYMBOL net/caif/caif 0x37c8a9cb caif_connect_client 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 0x4c8853ef caif_connect_client -EXPORT_SYMBOL net/caif/caif 0x71143da1 caif_disconnect_client -EXPORT_SYMBOL net/caif/caif 0x7dfc1b3b get_cfcnfg EXPORT_SYMBOL net/caif/caif 0x839ddb7b cfcnfg_set_phy_state -EXPORT_SYMBOL net/caif/caif 0x9d502014 caif_enroll_dev EXPORT_SYMBOL net/caif/caif 0x9e3e305d cfpkt_set_prio +EXPORT_SYMBOL net/caif/caif 0xa0283fd3 cfcnfg_add_phy_layer EXPORT_SYMBOL net/caif/caif 0xb7b6874e caif_free_client -EXPORT_SYMBOL net/caif/caif 0xe936f107 cfcnfg_add_phy_layer -EXPORT_SYMBOL net/can/can 0x010e6bc8 can_rx_unregister -EXPORT_SYMBOL net/can/can 0xc12785f2 can_proto_register -EXPORT_SYMBOL net/can/can 0xc65fa31a can_rx_register -EXPORT_SYMBOL net/can/can 0xc830e5f6 can_proto_unregister -EXPORT_SYMBOL net/can/can 0xe8673785 can_sock_destruct -EXPORT_SYMBOL net/can/can 0xf66c6ff0 can_send -EXPORT_SYMBOL net/ceph/libceph 0x0131abd8 osd_req_op_extent_osd_data_pages -EXPORT_SYMBOL net/ceph/libceph 0x01bb12ea ceph_monc_blocklist_add -EXPORT_SYMBOL net/ceph/libceph 0x02609232 ceph_monc_got_map +EXPORT_SYMBOL net/caif/caif 0xc56921e2 caif_enroll_dev +EXPORT_SYMBOL net/caif/caif 0xf6817be4 caif_disconnect_client +EXPORT_SYMBOL net/can/can 0x1b49300f can_proto_unregister +EXPORT_SYMBOL net/can/can 0x313f7403 can_send +EXPORT_SYMBOL net/can/can 0x587b4d67 can_rx_unregister +EXPORT_SYMBOL net/can/can 0x99069d14 can_sock_destruct +EXPORT_SYMBOL net/can/can 0x9d48cbbb can_rx_register +EXPORT_SYMBOL net/can/can 0xd7f6d5fa can_proto_register EXPORT_SYMBOL net/ceph/libceph 0x04cad6f0 ceph_pg_poolid_by_name -EXPORT_SYMBOL net/ceph/libceph 0x0588842a osd_req_op_extent_update -EXPORT_SYMBOL net/ceph/libceph 0x08baf9b7 ceph_auth_handle_svc_reply_more -EXPORT_SYMBOL net/ceph/libceph 0x0b81249e ceph_check_fsid -EXPORT_SYMBOL net/ceph/libceph 0x0ca051eb ceph_monc_wait_osdmap -EXPORT_SYMBOL net/ceph/libceph 0x0cce047f ceph_monc_stop -EXPORT_SYMBOL net/ceph/libceph 0x0d022966 ceph_release_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x0e3d54bc ceph_osdc_notify -EXPORT_SYMBOL net/ceph/libceph 0x10c542d3 ceph_cls_set_cookie -EXPORT_SYMBOL net/ceph/libceph 0x126eb108 ceph_cls_unlock +EXPORT_SYMBOL net/ceph/libceph 0x0980c57d osd_req_op_extent_osd_data +EXPORT_SYMBOL net/ceph/libceph 0x0c087e56 ceph_osdc_put_request +EXPORT_SYMBOL net/ceph/libceph 0x104647f9 ceph_put_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x10a71af6 ceph_msg_data_add_bvecs +EXPORT_SYMBOL net/ceph/libceph 0x10f05c75 ceph_osdc_abort_requests EXPORT_SYMBOL net/ceph/libceph 0x1378aba3 ceph_pg_pool_name_by_id -EXPORT_SYMBOL net/ceph/libceph 0x13fc9365 osd_req_op_extent_osd_data_bvecs +EXPORT_SYMBOL net/ceph/libceph 0x16222fe5 ceph_osdc_notify EXPORT_SYMBOL net/ceph/libceph 0x165b1948 ceph_pagelist_free_reserve -EXPORT_SYMBOL net/ceph/libceph 0x16ab8923 ceph_zero_page_vector_range -EXPORT_SYMBOL net/ceph/libceph 0x175eebe2 osd_req_op_extent_init +EXPORT_SYMBOL net/ceph/libceph 0x1740ca69 ceph_wait_for_latest_osdmap EXPORT_SYMBOL net/ceph/libceph 0x17c17611 ceph_pg_to_acting_primary -EXPORT_SYMBOL net/ceph/libceph 0x18249a82 ceph_osdc_cancel_request -EXPORT_SYMBOL net/ceph/libceph 0x182f7412 osd_req_op_xattr_init -EXPORT_SYMBOL net/ceph/libceph 0x19062ea3 osd_req_op_cls_request_data_pagelist -EXPORT_SYMBOL net/ceph/libceph 0x1c0568a1 ceph_msg_new2 -EXPORT_SYMBOL net/ceph/libceph 0x1c9521cd ceph_put_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x1fdda362 ceph_msg_new -EXPORT_SYMBOL net/ceph/libceph 0x202b7e7f ceph_con_init +EXPORT_SYMBOL net/ceph/libceph 0x18b20b7e osd_req_op_alloc_hint_init +EXPORT_SYMBOL net/ceph/libceph 0x18f5d261 ceph_osdc_call +EXPORT_SYMBOL net/ceph/libceph 0x1c5d6916 ceph_reset_client_addr +EXPORT_SYMBOL net/ceph/libceph 0x1ce9b1b4 osd_req_op_extent_osd_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x1fab0b0f ceph_alloc_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 0x21aa118f ceph_msg_put -EXPORT_SYMBOL net/ceph/libceph 0x21f9bf19 ceph_copy_from_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x228561ab ceph_osdc_sync -EXPORT_SYMBOL net/ceph/libceph 0x28daf940 ceph_osdc_watch +EXPORT_SYMBOL net/ceph/libceph 0x22f66b72 ceph_auth_add_authorizer_challenge +EXPORT_SYMBOL net/ceph/libceph 0x263f1024 osd_req_op_extent_osd_data_bvec_pos +EXPORT_SYMBOL net/ceph/libceph 0x29af8d9a ceph_msg_data_add_pages EXPORT_SYMBOL net/ceph/libceph 0x2a983d26 ceph_pagelist_release -EXPORT_SYMBOL net/ceph/libceph 0x2bf9df14 osd_req_op_raw_data_in_pages -EXPORT_SYMBOL net/ceph/libceph 0x2e3b5256 ceph_parse_mon_ips -EXPORT_SYMBOL net/ceph/libceph 0x3314d52c ceph_copy_to_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x342c4b15 ceph_print_client_options -EXPORT_SYMBOL net/ceph/libceph 0x35e5ecdf __ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x2c536b20 osd_req_op_cls_request_data_bvecs +EXPORT_SYMBOL net/ceph/libceph 0x2f9aaf25 ceph_parse_param +EXPORT_SYMBOL net/ceph/libceph 0x34ecf65f ceph_monc_do_statfs +EXPORT_SYMBOL net/ceph/libceph 0x36306d4a ceph_auth_get_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x37fda523 ceph_osdc_get_request EXPORT_SYMBOL net/ceph/libceph 0x38f2d94e ceph_file_to_extents -EXPORT_SYMBOL net/ceph/libceph 0x39800181 ceph_con_close +EXPORT_SYMBOL net/ceph/libceph 0x399aba46 ceph_msg_dump EXPORT_SYMBOL net/ceph/libceph 0x3c8d7111 ceph_get_num_objects -EXPORT_SYMBOL net/ceph/libceph 0x3d3c618f ceph_osdc_unwatch -EXPORT_SYMBOL net/ceph/libceph 0x412987ef ceph_osdc_copy_from +EXPORT_SYMBOL net/ceph/libceph 0x41447f9a ceph_auth_handle_svc_reply_more +EXPORT_SYMBOL net/ceph/libceph 0x4149ad79 osd_req_op_extent_update EXPORT_SYMBOL net/ceph/libceph 0x417a9131 ceph_oloc_destroy EXPORT_SYMBOL net/ceph/libceph 0x466b85b8 libceph_compatible -EXPORT_SYMBOL net/ceph/libceph 0x4990e4dd ceph_msg_data_add_bio -EXPORT_SYMBOL net/ceph/libceph 0x4b2d91dd osd_req_op_extent_osd_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x4ebea848 ceph_osdc_maybe_request_map EXPORT_SYMBOL net/ceph/libceph 0x50603ce3 ceph_decode_entity_addrvec -EXPORT_SYMBOL net/ceph/libceph 0x51eb6c0d ceph_con_keepalive -EXPORT_SYMBOL net/ceph/libceph 0x52d4f23c ceph_cls_break_lock -EXPORT_SYMBOL net/ceph/libceph 0x56a8eeb7 ceph_monc_renew_subs -EXPORT_SYMBOL net/ceph/libceph 0x574e1593 ceph_osdc_flush_notifies +EXPORT_SYMBOL net/ceph/libceph 0x510e94b8 ceph_destroy_client +EXPORT_SYMBOL net/ceph/libceph 0x5144718e ceph_con_close +EXPORT_SYMBOL net/ceph/libceph 0x5337791c ceph_osdc_unwatch +EXPORT_SYMBOL net/ceph/libceph 0x53e0ab45 ceph_osdc_wait_request +EXPORT_SYMBOL net/ceph/libceph 0x5664dcad ceph_cls_break_lock EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash +EXPORT_SYMBOL net/ceph/libceph 0x5a4423a4 ceph_compare_options EXPORT_SYMBOL net/ceph/libceph 0x5aeeee62 ceph_oid_aprintf -EXPORT_SYMBOL net/ceph/libceph 0x600a3aed osd_req_op_extent_osd_data -EXPORT_SYMBOL net/ceph/libceph 0x61d521ef ceph_osdc_notify_ack -EXPORT_SYMBOL net/ceph/libceph 0x63432275 ceph_osdc_maybe_request_map +EXPORT_SYMBOL net/ceph/libceph 0x5cff6e00 ceph_cls_unlock +EXPORT_SYMBOL net/ceph/libceph 0x5ef984bf ceph_osdc_clear_abort_err EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name -EXPORT_SYMBOL net/ceph/libceph 0x68347d84 ceph_auth_is_authenticated +EXPORT_SYMBOL net/ceph/libceph 0x6471a166 ceph_osdc_new_request +EXPORT_SYMBOL net/ceph/libceph 0x653ddfc6 ceph_osdc_alloc_request +EXPORT_SYMBOL net/ceph/libceph 0x6559b6a5 osd_req_op_cls_init +EXPORT_SYMBOL net/ceph/libceph 0x66012807 ceph_auth_is_authenticated EXPORT_SYMBOL net/ceph/libceph 0x6a7a38a0 ceph_pr_addr -EXPORT_SYMBOL net/ceph/libceph 0x6c0440d2 ceph_destroy_client -EXPORT_SYMBOL net/ceph/libceph 0x6d67d6be ceph_wait_for_latest_osdmap -EXPORT_SYMBOL net/ceph/libceph 0x70c48837 ceph_osdc_new_request -EXPORT_SYMBOL net/ceph/libceph 0x71950b5e ceph_osdc_update_epoch_barrier -EXPORT_SYMBOL net/ceph/libceph 0x7255cc30 ceph_auth_verify_authorizer_reply -EXPORT_SYMBOL net/ceph/libceph 0x78036db3 osd_req_op_alloc_hint_init -EXPORT_SYMBOL net/ceph/libceph 0x7909cc67 ceph_auth_get_authorizer -EXPORT_SYMBOL net/ceph/libceph 0x7a8de02b ceph_con_send -EXPORT_SYMBOL net/ceph/libceph 0x7fbd31a5 ceph_osdc_list_watchers -EXPORT_SYMBOL net/ceph/libceph 0x82729d5a osd_req_op_cls_request_data_bvecs -EXPORT_SYMBOL net/ceph/libceph 0x831d7640 osd_req_op_cls_init -EXPORT_SYMBOL net/ceph/libceph 0x84e3d880 ceph_monc_do_statfs +EXPORT_SYMBOL net/ceph/libceph 0x6c0b5734 ceph_msg_put +EXPORT_SYMBOL net/ceph/libceph 0x6fffea11 ceph_client_gid +EXPORT_SYMBOL net/ceph/libceph 0x7d64a2ab ceph_msg_data_add_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x7db2f1e4 ceph_auth_handle_svc_reply_done +EXPORT_SYMBOL net/ceph/libceph 0x7dfd240d osd_req_op_raw_data_in_pages +EXPORT_SYMBOL net/ceph/libceph 0x7e1f31ce ceph_msg_get +EXPORT_SYMBOL net/ceph/libceph 0x8229a2da ceph_monc_blocklist_add +EXPORT_SYMBOL net/ceph/libceph 0x83373366 ceph_cls_lock +EXPORT_SYMBOL net/ceph/libceph 0x83d10af2 ceph_osdc_update_epoch_barrier +EXPORT_SYMBOL net/ceph/libceph 0x8404243c ceph_osdc_cancel_request EXPORT_SYMBOL net/ceph/libceph 0x86fca7e4 ceph_put_snap_context -EXPORT_SYMBOL net/ceph/libceph 0x8b28f30f ceph_osdc_alloc_request -EXPORT_SYMBOL net/ceph/libceph 0x8faf535d ceph_osdc_abort_requests -EXPORT_SYMBOL net/ceph/libceph 0x91f9b70a osd_req_op_extent_osd_data_bvec_pos +EXPORT_SYMBOL net/ceph/libceph 0x881af3fd ceph_monc_renew_subs +EXPORT_SYMBOL net/ceph/libceph 0x886cbc5b ceph_osdc_alloc_messages +EXPORT_SYMBOL net/ceph/libceph 0x8aec1e9e ceph_osdc_watch EXPORT_SYMBOL net/ceph/libceph 0x92b7b4ce ceph_pg_pool_flags -EXPORT_SYMBOL net/ceph/libceph 0x966842cf ceph_msg_dump +EXPORT_SYMBOL net/ceph/libceph 0x933a5211 ceph_osdc_copy_from +EXPORT_SYMBOL net/ceph/libceph 0x940eed01 ceph_auth_handle_bad_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x9735e3d3 osd_req_op_extent_dup_last +EXPORT_SYMBOL net/ceph/libceph 0x97374a46 osd_req_op_xattr_init EXPORT_SYMBOL net/ceph/libceph 0x987d3968 ceph_alloc_options -EXPORT_SYMBOL net/ceph/libceph 0x9a8faa47 ceph_monc_open_session +EXPORT_SYMBOL net/ceph/libceph 0x988ce210 __ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x9a7ad452 osd_req_op_cls_response_data_pages EXPORT_SYMBOL net/ceph/libceph 0x9bc6b539 ceph_find_or_create_string +EXPORT_SYMBOL net/ceph/libceph 0x9c702fad ceph_cls_lock_info EXPORT_SYMBOL net/ceph/libceph 0x9ca95932 ceph_create_snap_context -EXPORT_SYMBOL net/ceph/libceph 0x9ce12a54 ceph_msg_get -EXPORT_SYMBOL net/ceph/libceph 0x9e9f3686 ceph_client_addr +EXPORT_SYMBOL net/ceph/libceph 0x9ced8cee ceph_monc_wait_osdmap 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 0xa05a54fe ceph_monc_get_version_async -EXPORT_SYMBOL net/ceph/libceph 0xa4de466e osd_req_op_cls_response_data_pages +EXPORT_SYMBOL net/ceph/libceph 0xa20f5c69 ceph_client_addr +EXPORT_SYMBOL net/ceph/libceph 0xa363dab7 osd_req_op_cls_request_data_pages +EXPORT_SYMBOL net/ceph/libceph 0xa4a3a066 osd_req_op_extent_osd_data_pages +EXPORT_SYMBOL net/ceph/libceph 0xa67766f2 ceph_osdc_start_request EXPORT_SYMBOL net/ceph/libceph 0xa698f998 ceph_free_lockers -EXPORT_SYMBOL net/ceph/libceph 0xa6c95718 ceph_osdc_wait_request -EXPORT_SYMBOL net/ceph/libceph 0xa8a7e9a0 ceph_open_session -EXPORT_SYMBOL net/ceph/libceph 0xa9ef5e66 ceph_monc_get_version +EXPORT_SYMBOL net/ceph/libceph 0xa7b35c59 ceph_copy_user_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xaad85fa1 ceph_msg_new2 +EXPORT_SYMBOL net/ceph/libceph 0xab6a38d9 ceph_monc_get_version +EXPORT_SYMBOL net/ceph/libceph 0xac36d42c ceph_open_session EXPORT_SYMBOL net/ceph/libceph 0xad703657 ceph_auth_destroy_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xae2de31a ceph_monc_open_session EXPORT_SYMBOL net/ceph/libceph 0xafb8a407 ceph_msgr_flush -EXPORT_SYMBOL net/ceph/libceph 0xb21ba293 ceph_alloc_page_vector -EXPORT_SYMBOL net/ceph/libceph 0xb2ef65c6 ceph_auth_handle_svc_reply_done +EXPORT_SYMBOL net/ceph/libceph 0xafcc4554 ceph_zero_page_vector_range +EXPORT_SYMBOL net/ceph/libceph 0xb0cd0d5c ceph_cls_set_cookie EXPORT_SYMBOL net/ceph/libceph 0xb54676fa ceph_msg_type_name +EXPORT_SYMBOL net/ceph/libceph 0xb5d6f57e ceph_osdc_notify_ack +EXPORT_SYMBOL net/ceph/libceph 0xb6061fc7 ceph_msg_new EXPORT_SYMBOL net/ceph/libceph 0xb72c162e ceph_buffer_release -EXPORT_SYMBOL net/ceph/libceph 0xb802e61c ceph_reset_client_addr -EXPORT_SYMBOL net/ceph/libceph 0xb87d3906 __ceph_auth_get_authorizer -EXPORT_SYMBOL net/ceph/libceph 0xb9797fd0 ceph_auth_add_authorizer_challenge -EXPORT_SYMBOL net/ceph/libceph 0xbb1a9b62 ceph_msg_data_add_bvecs +EXPORT_SYMBOL net/ceph/libceph 0xbb99648b osd_req_op_extent_init +EXPORT_SYMBOL net/ceph/libceph 0xbbbf630c osd_req_op_cls_request_data_pagelist EXPORT_SYMBOL net/ceph/libceph 0xbd2f79ae ceph_oloc_copy -EXPORT_SYMBOL net/ceph/libceph 0xbdad00cd osd_req_op_init EXPORT_SYMBOL net/ceph/libceph 0xbe3879aa ceph_get_snap_context -EXPORT_SYMBOL net/ceph/libceph 0xbeffae7d ceph_monc_want_map -EXPORT_SYMBOL net/ceph/libceph 0xc2dd21d7 ceph_client_gid +EXPORT_SYMBOL net/ceph/libceph 0xc0dddc68 ceph_cls_assert_locked +EXPORT_SYMBOL net/ceph/libceph 0xc18272a7 ceph_con_send +EXPORT_SYMBOL net/ceph/libceph 0xc1f94423 ceph_con_open +EXPORT_SYMBOL net/ceph/libceph 0xc26ec6f1 ceph_monc_want_map +EXPORT_SYMBOL net/ceph/libceph 0xc2dbf6f4 __ceph_auth_get_authorizer EXPORT_SYMBOL net/ceph/libceph 0xc366bfa1 ceph_pagelist_truncate -EXPORT_SYMBOL net/ceph/libceph 0xc3f7bd92 osd_req_op_cls_request_data_pages -EXPORT_SYMBOL net/ceph/libceph 0xc62c888d osd_req_op_extent_osd_data_bio -EXPORT_SYMBOL net/ceph/libceph 0xca4a9d31 ceph_auth_handle_bad_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xc3f0d4b4 ceph_osdc_flush_notifies +EXPORT_SYMBOL net/ceph/libceph 0xc5b673b8 ceph_monc_init +EXPORT_SYMBOL net/ceph/libceph 0xc5c47ce2 ceph_release_page_vector EXPORT_SYMBOL net/ceph/libceph 0xca80437b ceph_extent_to_file -EXPORT_SYMBOL net/ceph/libceph 0xce940cbe ceph_parse_param -EXPORT_SYMBOL net/ceph/libceph 0xd394418b ceph_osdc_get_request +EXPORT_SYMBOL net/ceph/libceph 0xcf93dfaa ceph_copy_from_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xd0283c94 ceph_auth_invalidate_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xd084f98c ceph_msg_data_add_bio +EXPORT_SYMBOL net/ceph/libceph 0xd3430505 ceph_osdc_list_watchers +EXPORT_SYMBOL net/ceph/libceph 0xd3496bbc ceph_monc_get_version_async EXPORT_SYMBOL net/ceph/libceph 0xd4d736db ceph_destroy_options -EXPORT_SYMBOL net/ceph/libceph 0xd4e2a7cc ceph_osdc_clear_abort_err EXPORT_SYMBOL net/ceph/libceph 0xd4eb7735 ceph_decode_entity_addr -EXPORT_SYMBOL net/ceph/libceph 0xd67cbbee ceph_compare_options -EXPORT_SYMBOL net/ceph/libceph 0xda5e6c16 osd_req_op_extent_dup_last -EXPORT_SYMBOL net/ceph/libceph 0xdb70d58f ceph_cls_lock -EXPORT_SYMBOL net/ceph/libceph 0xdb962884 ceph_auth_invalidate_authorizer -EXPORT_SYMBOL net/ceph/libceph 0xdbb892f5 ceph_create_client -EXPORT_SYMBOL net/ceph/libceph 0xdbdff807 ceph_cls_lock_info +EXPORT_SYMBOL net/ceph/libceph 0xd6189773 osd_req_op_extent_osd_data_bvecs +EXPORT_SYMBOL net/ceph/libceph 0xd77a90ac ceph_create_client EXPORT_SYMBOL net/ceph/libceph 0xdf6ef4a1 ceph_oid_printf EXPORT_SYMBOL net/ceph/libceph 0xdfc091f9 ceph_entity_type_name -EXPORT_SYMBOL net/ceph/libceph 0xe3382a81 ceph_osdc_call +EXPORT_SYMBOL net/ceph/libceph 0xe01d7c05 ceph_monc_got_map +EXPORT_SYMBOL net/ceph/libceph 0xe28927b9 osd_req_op_extent_osd_data_bio EXPORT_SYMBOL net/ceph/libceph 0xe34a59f2 ceph_object_locator_to_pg -EXPORT_SYMBOL net/ceph/libceph 0xe5d8ebc1 ceph_monc_validate_auth +EXPORT_SYMBOL net/ceph/libceph 0xe483491a ceph_auth_verify_authorizer_reply EXPORT_SYMBOL net/ceph/libceph 0xe76e7226 ceph_pagelist_alloc -EXPORT_SYMBOL net/ceph/libceph 0xec425034 ceph_con_open +EXPORT_SYMBOL net/ceph/libceph 0xea3e594a ceph_check_fsid +EXPORT_SYMBOL net/ceph/libceph 0xeac22f94 ceph_monc_stop +EXPORT_SYMBOL net/ceph/libceph 0xeb8e9415 ceph_monc_validate_auth +EXPORT_SYMBOL net/ceph/libceph 0xec508036 ceph_osdc_sync +EXPORT_SYMBOL net/ceph/libceph 0xed2cecfb osd_req_op_init EXPORT_SYMBOL net/ceph/libceph 0xee120c03 ceph_release_string -EXPORT_SYMBOL net/ceph/libceph 0xee6bd7ef ceph_monc_init -EXPORT_SYMBOL net/ceph/libceph 0xee77eab3 ceph_msg_data_add_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 0xf03fe862 ceph_pagelist_set_cursor -EXPORT_SYMBOL net/ceph/libceph 0xf142a03c ceph_msg_data_add_pages -EXPORT_SYMBOL net/ceph/libceph 0xf2f742d7 ceph_cls_assert_locked -EXPORT_SYMBOL net/ceph/libceph 0xf3e8f302 ceph_osdc_start_request -EXPORT_SYMBOL net/ceph/libceph 0xf42bb61c ceph_osdc_put_request -EXPORT_SYMBOL net/ceph/libceph 0xfc28f8d4 ceph_copy_user_to_page_vector -EXPORT_SYMBOL net/ceph/libceph 0xfd95a151 ceph_osdc_alloc_messages -EXPORT_SYMBOL net/dccp/dccp_ipv4 0x3c318d71 dccp_req_err -EXPORT_SYMBOL net/dccp/dccp_ipv4 0x9af5e3db dccp_syn_ack_timeout -EXPORT_SYMBOL net/hsr/hsr 0x0962c6fc hsr_get_version -EXPORT_SYMBOL net/hsr/hsr 0x7722fea8 is_hsr_master -EXPORT_SYMBOL net/ieee802154/ieee802154 0x1ec18665 wpan_phy_for_each -EXPORT_SYMBOL net/ieee802154/ieee802154 0x3222a8e9 wpan_phy_free -EXPORT_SYMBOL net/ieee802154/ieee802154 0x57daddce wpan_phy_register -EXPORT_SYMBOL net/ieee802154/ieee802154 0x5f995325 wpan_phy_find -EXPORT_SYMBOL net/ieee802154/ieee802154 0x722b0ec2 wpan_phy_new -EXPORT_SYMBOL net/ieee802154/ieee802154 0xea713af8 wpan_phy_unregister -EXPORT_SYMBOL net/ipv4/fou 0x159f71ac __fou_build_header +EXPORT_SYMBOL net/ceph/libceph 0xf32a1559 ceph_copy_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xf54e2c52 ceph_con_keepalive +EXPORT_SYMBOL net/ceph/libceph 0xf8c37622 ceph_print_client_options +EXPORT_SYMBOL net/ceph/libceph 0xfa96b4ce ceph_parse_mon_ips +EXPORT_SYMBOL net/ceph/libceph 0xffaec0c6 ceph_con_init +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x8b13bc30 dccp_syn_ack_timeout +EXPORT_SYMBOL net/dccp/dccp_ipv4 0xb7dece6d dccp_req_err +EXPORT_SYMBOL net/hsr/hsr 0x5e4cfeaa hsr_get_version +EXPORT_SYMBOL net/hsr/hsr 0x6198808e is_hsr_master +EXPORT_SYMBOL net/ieee802154/ieee802154 0x0c61a90b wpan_phy_find +EXPORT_SYMBOL net/ieee802154/ieee802154 0x56e3934f wpan_phy_register +EXPORT_SYMBOL net/ieee802154/ieee802154 0x5eb87991 wpan_phy_unregister +EXPORT_SYMBOL net/ieee802154/ieee802154 0xa7d0ab8d wpan_phy_new +EXPORT_SYMBOL net/ieee802154/ieee802154 0xa90f5bea wpan_phy_free +EXPORT_SYMBOL net/ieee802154/ieee802154 0xbcace0df wpan_phy_for_each EXPORT_SYMBOL net/ipv4/fou 0x1757d1a4 fou_encap_hlen -EXPORT_SYMBOL net/ipv4/fou 0x71d7e2c7 __gue_build_header +EXPORT_SYMBOL net/ipv4/fou 0x64523eda __fou_build_header +EXPORT_SYMBOL net/ipv4/fou 0x9d2c2dd2 __gue_build_header EXPORT_SYMBOL net/ipv4/fou 0xf13914b3 gue_encap_hlen -EXPORT_SYMBOL net/ipv4/gre 0x3262da56 gre_parse_header -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x01ccff93 ip_tunnel_encap_del_ops -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x3ff40035 ip_tunnel_get_link_net -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x7dcb9a0c ip_tunnel_encap_add_ops -EXPORT_SYMBOL net/ipv4/ip_tunnel 0xcc2d119e ip_tunnel_get_iflink -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x9aabb51d arpt_unregister_table_pre_exit -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x9f1d7752 arpt_register_table -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xb114492e arpt_do_table -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xc6ce1dff arpt_unregister_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x4dbecd2a ipt_do_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x50bf630f ipt_unregister_table_pre_exit -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x65182c3a ipt_register_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x9487309b ipt_unregister_table_exit -EXPORT_SYMBOL net/ipv4/tunnel4 0xe345b5a0 xfrm4_tunnel_deregister -EXPORT_SYMBOL net/ipv4/tunnel4 0xe6616a04 xfrm4_tunnel_register -EXPORT_SYMBOL net/ipv4/udp_tunnel 0x48eb22c9 udp_sock_create4 -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x43f79b92 ip6_tnl_get_link_net -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x63a87adc ip6_tnl_encap_del_ops -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x664fcc71 ip6_tnl_xmit -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x6884fc5b ip6_tnl_get_iflink -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x7c6337f7 ip6_tnl_encap_add_ops -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x9af0bce1 ip6_tnl_get_cap -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xc335be03 ip6_tnl_parse_tlv_enc_lim -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xeb011739 ip6_tnl_change_mtu -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xfebe7ba2 ip6_tnl_rcv -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x460e6755 ip6t_register_table -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xc1b3aabb ip6t_unregister_table_pre_exit -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xd08c5264 ip6t_unregister_table_exit -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xd7578733 ip6t_do_table -EXPORT_SYMBOL net/ipv6/tunnel6 0xbf6191fd xfrm6_tunnel_deregister -EXPORT_SYMBOL net/ipv6/tunnel6 0xe9d6af83 xfrm6_tunnel_register -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x82c7a438 xfrm6_tunnel_alloc_spi -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xf65f15ca xfrm6_tunnel_spi_lookup -EXPORT_SYMBOL net/lapb/lapb 0x29db5d69 lapb_data_received -EXPORT_SYMBOL net/lapb/lapb 0x6bc80ea3 lapb_setparms -EXPORT_SYMBOL net/lapb/lapb 0x768012e3 lapb_register -EXPORT_SYMBOL net/lapb/lapb 0x80c183a2 lapb_getparms -EXPORT_SYMBOL net/lapb/lapb 0x8391b20c lapb_data_request -EXPORT_SYMBOL net/lapb/lapb 0xa2ca57f0 lapb_unregister -EXPORT_SYMBOL net/lapb/lapb 0xba97a624 lapb_disconnect_request -EXPORT_SYMBOL net/lapb/lapb 0xda23a660 lapb_connect_request +EXPORT_SYMBOL net/ipv4/gre 0x43f87fa0 gre_parse_header +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x3be7cde8 ip_tunnel_get_link_net +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x662ca14c ip_tunnel_encap_del_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xb00a98e9 ip_tunnel_get_iflink +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xf6946b03 ip_tunnel_encap_add_ops +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x478dcb63 arpt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x947c45f5 arpt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xb52fd166 arpt_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xf5dd04f9 arpt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x1ec4e977 ipt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x46f241b5 ipt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xb289dad3 ipt_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xd5ea24cc ipt_unregister_table_exit +EXPORT_SYMBOL net/ipv4/tunnel4 0x68218d7f xfrm4_tunnel_deregister +EXPORT_SYMBOL net/ipv4/tunnel4 0xf33e5ed3 xfrm4_tunnel_register +EXPORT_SYMBOL net/ipv4/udp_tunnel 0x0b07415c udp_sock_create4 +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x2e0834ed ip6_tnl_encap_add_ops +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x52033e19 ip6_tnl_get_iflink +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x5c8fb8cf ip6_tnl_get_cap +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x5fa6823f ip6_tnl_parse_tlv_enc_lim +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x6084083b ip6_tnl_get_link_net +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x901c08c5 ip6_tnl_rcv +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xa3dbd3c4 ip6_tnl_encap_del_ops +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xc86977a8 ip6_tnl_xmit +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xf2d2a8cb ip6_tnl_change_mtu +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x1107ca5d ip6t_unregister_table_exit +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x6add308e ip6t_do_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x7ead6ab5 ip6t_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xb224998b ip6t_register_table +EXPORT_SYMBOL net/ipv6/tunnel6 0x1bed6b37 xfrm6_tunnel_register +EXPORT_SYMBOL net/ipv6/tunnel6 0x8787225e xfrm6_tunnel_deregister +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x2506d4c3 xfrm6_tunnel_spi_lookup +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x257ea8ff xfrm6_tunnel_alloc_spi +EXPORT_SYMBOL net/lapb/lapb 0x34205ac4 lapb_connect_request +EXPORT_SYMBOL net/lapb/lapb 0x5b174b27 lapb_setparms +EXPORT_SYMBOL net/lapb/lapb 0x6521760c lapb_register +EXPORT_SYMBOL net/lapb/lapb 0x7dfc53a5 lapb_getparms +EXPORT_SYMBOL net/lapb/lapb 0x964ce7f0 lapb_unregister +EXPORT_SYMBOL net/lapb/lapb 0xad828c31 lapb_disconnect_request +EXPORT_SYMBOL net/lapb/lapb 0xbf2e2e14 lapb_data_received +EXPORT_SYMBOL net/lapb/lapb 0xd030eb14 lapb_data_request +EXPORT_SYMBOL net/llc/llc 0x06e32c9f llc_add_pack +EXPORT_SYMBOL net/llc/llc 0x1d4049b6 llc_build_and_send_ui_pkt EXPORT_SYMBOL net/llc/llc 0x38b92846 llc_remove_pack EXPORT_SYMBOL net/llc/llc 0x52d7b2fd llc_sap_list -EXPORT_SYMBOL net/llc/llc 0x579ff185 llc_sap_find -EXPORT_SYMBOL net/llc/llc 0x75572988 llc_set_station_handler -EXPORT_SYMBOL net/llc/llc 0x787a36ce llc_build_and_send_ui_pkt -EXPORT_SYMBOL net/llc/llc 0x97c0220f llc_sap_open -EXPORT_SYMBOL net/llc/llc 0xdbf69d5e llc_add_pack -EXPORT_SYMBOL net/llc/llc 0xdcc01a41 llc_sap_close -EXPORT_SYMBOL net/llc/llc 0xf02ed6d3 llc_mac_hdr_init -EXPORT_SYMBOL net/mac80211/mac80211 0x004ace69 ieee80211_nan_func_terminated -EXPORT_SYMBOL net/mac80211/mac80211 0x00dbc56d ieee80211_ap_probereq_get -EXPORT_SYMBOL net/mac80211/mac80211 0x03286387 ieee80211_chswitch_done -EXPORT_SYMBOL net/mac80211/mac80211 0x05818bbb ieee80211_sta_eosp -EXPORT_SYMBOL net/mac80211/mac80211 0x05f08dbe ieee80211_rx_ba_timer_expired +EXPORT_SYMBOL net/llc/llc 0x587afad9 llc_sap_open +EXPORT_SYMBOL net/llc/llc 0x63d3b489 llc_mac_hdr_init +EXPORT_SYMBOL net/llc/llc 0x673d0233 llc_set_station_handler +EXPORT_SYMBOL net/llc/llc 0xab0c8ee3 llc_sap_find +EXPORT_SYMBOL net/llc/llc 0xdff4fdf9 llc_sap_close +EXPORT_SYMBOL net/mac80211/mac80211 0x02aabf62 ieee80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/mac80211/mac80211 0x02cb99e8 ieee80211_stop_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x031b439b ieee80211_wake_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x04f3da9e ieee80211_nan_func_terminated EXPORT_SYMBOL net/mac80211/mac80211 0x063f5308 ieee80211_get_tkip_p1k_iv -EXPORT_SYMBOL net/mac80211/mac80211 0x09bf3afa ieee80211_generic_frame_duration -EXPORT_SYMBOL net/mac80211/mac80211 0x0b331fb5 ieee80211_queue_delayed_work -EXPORT_SYMBOL net/mac80211/mac80211 0x0b35239f ieee80211_find_sta -EXPORT_SYMBOL net/mac80211/mac80211 0x11fd3a9a __ieee80211_get_rx_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x128e5dc5 ieee80211_stop_queue -EXPORT_SYMBOL net/mac80211/mac80211 0x12f50ef2 ieee80211_manage_rx_ba_offl -EXPORT_SYMBOL net/mac80211/mac80211 0x1673aae8 ieee80211_wake_queues -EXPORT_SYMBOL net/mac80211/mac80211 0x178215fa ieee80211_sta_set_buffered +EXPORT_SYMBOL net/mac80211/mac80211 0x099c3a25 ieee80211_get_tkip_p2k +EXPORT_SYMBOL net/mac80211/mac80211 0x099fd557 ieee80211_start_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x09b09dea ieee80211_radar_detected +EXPORT_SYMBOL net/mac80211/mac80211 0x0c648375 ieee80211_mark_rx_ba_filtered_frames +EXPORT_SYMBOL net/mac80211/mac80211 0x0f36b89c ieee80211_ctstoself_get +EXPORT_SYMBOL net/mac80211/mac80211 0x104cc73b ieee80211_stop_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x106a83da ieee80211_next_txq +EXPORT_SYMBOL net/mac80211/mac80211 0x16bf0846 ieee80211_rx_napi EXPORT_SYMBOL net/mac80211/mac80211 0x183dcd3b ieee80211_get_key_rx_seq EXPORT_SYMBOL net/mac80211/mac80211 0x19f37f0d ieee80211_update_p2p_noa EXPORT_SYMBOL net/mac80211/mac80211 0x1a66fc17 ieee80211_get_tkip_rx_p1k -EXPORT_SYMBOL net/mac80211/mac80211 0x1ad76b7b ieee80211_ctstoself_get -EXPORT_SYMBOL net/mac80211/mac80211 0x1aef0ce3 ieee80211_stop_rx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0x1b17c6ff __ieee80211_get_tx_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x21ef172f ieee80211_txq_get_depth -EXPORT_SYMBOL net/mac80211/mac80211 0x226bfe73 ieee80211_beacon_get_template -EXPORT_SYMBOL net/mac80211/mac80211 0x2272ba19 __ieee80211_get_assoc_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x22f42ac3 ieee80211_tx_status_8023 -EXPORT_SYMBOL net/mac80211/mac80211 0x2685fedd ieee80211_rx_list -EXPORT_SYMBOL net/mac80211/mac80211 0x2896571f ieee80211_sched_scan_results -EXPORT_SYMBOL net/mac80211/mac80211 0x28b584ee wiphy_to_ieee80211_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x2970d650 ieee80211_send_bar -EXPORT_SYMBOL net/mac80211/mac80211 0x29df2348 __ieee80211_get_radio_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x2a724024 ieee80211_tx_status -EXPORT_SYMBOL net/mac80211/mac80211 0x303b7521 rate_control_set_rates -EXPORT_SYMBOL net/mac80211/mac80211 0x343f4192 ieee80211_rate_control_unregister -EXPORT_SYMBOL net/mac80211/mac80211 0x3501d3c0 ieee80211_beacon_loss -EXPORT_SYMBOL net/mac80211/mac80211 0x37546dab ieee80211_iter_keys_rcu -EXPORT_SYMBOL net/mac80211/mac80211 0x3ca7c67e ieee80211_cqm_rssi_notify -EXPORT_SYMBOL net/mac80211/mac80211 0x3cea482d ieee80211_next_txq -EXPORT_SYMBOL net/mac80211/mac80211 0x42349527 ieee80211_beacon_update_cntdwn -EXPORT_SYMBOL net/mac80211/mac80211 0x4458d876 ieee80211_get_tx_rates -EXPORT_SYMBOL net/mac80211/mac80211 0x44733d08 ieee80211_beacon_get_tim -EXPORT_SYMBOL net/mac80211/mac80211 0x4568b81a ieee80211_unreserve_tid -EXPORT_SYMBOL net/mac80211/mac80211 0x46801881 ieee80211_mark_rx_ba_filtered_frames -EXPORT_SYMBOL net/mac80211/mac80211 0x4913471b ieee80211_free_txskb -EXPORT_SYMBOL net/mac80211/mac80211 0x4b8b1f29 ieee80211_stop_tx_ba_cb_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x4bdf1973 ieee80211_rts_get -EXPORT_SYMBOL net/mac80211/mac80211 0x4d62df32 ieee80211_scan_completed -EXPORT_SYMBOL net/mac80211/mac80211 0x511e64d7 ieee80211_wake_queue -EXPORT_SYMBOL net/mac80211/mac80211 0x5764561a ieee80211_sta_uapsd_trigger -EXPORT_SYMBOL net/mac80211/mac80211 0x577b16c5 ieee80211_tx_prepare_skb -EXPORT_SYMBOL net/mac80211/mac80211 0x5e1dbb85 ieee80211_disable_rssi_reports -EXPORT_SYMBOL net/mac80211/mac80211 0x5f0b60b1 ieee80211_txq_may_transmit -EXPORT_SYMBOL net/mac80211/mac80211 0x60a782b8 ieee80211_free_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x6630ab2d ieee80211_restart_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x6f5c4762 ieee80211_ctstoself_duration -EXPORT_SYMBOL net/mac80211/mac80211 0x6ff102db ieee80211_sta_register_airtime -EXPORT_SYMBOL net/mac80211/mac80211 0x739e28ea ieee80211_nan_func_match -EXPORT_SYMBOL net/mac80211/mac80211 0x7402d58f ieee80211_tx_status_ext -EXPORT_SYMBOL net/mac80211/mac80211 0x760bb1f8 ieee80211_reserve_tid -EXPORT_SYMBOL net/mac80211/mac80211 0x78243215 ieee80211_nullfunc_get -EXPORT_SYMBOL net/mac80211/mac80211 0x78490832 ieee80211_pspoll_get -EXPORT_SYMBOL net/mac80211/mac80211 0x81a003f2 ieee80211_tx_status_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x823dd29e ieee80211_unregister_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x82a3d358 ieee80211_probereq_get -EXPORT_SYMBOL net/mac80211/mac80211 0x82ecf0e3 ieee80211_proberesp_get -EXPORT_SYMBOL net/mac80211/mac80211 0x8700c5cc ieee80211_queue_stopped -EXPORT_SYMBOL net/mac80211/mac80211 0x88e875c2 ieee80211_get_unsol_bcast_probe_resp_tmpl -EXPORT_SYMBOL net/mac80211/mac80211 0x91e412bd ieee80211_sta_pspoll -EXPORT_SYMBOL net/mac80211/mac80211 0x9465a2ed ieee80211_queue_work -EXPORT_SYMBOL net/mac80211/mac80211 0x96f82766 ieee80211_disconnect +EXPORT_SYMBOL net/mac80211/mac80211 0x1a8af422 ieee80211_queue_delayed_work +EXPORT_SYMBOL net/mac80211/mac80211 0x1ef386aa ieee80211_queue_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0x2030fc33 ieee80211_generic_frame_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x20a56347 ieee80211_return_txq +EXPORT_SYMBOL net/mac80211/mac80211 0x21eed1e9 ieee80211_ctstoself_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x248a08a5 ieee80211_txq_may_transmit +EXPORT_SYMBOL net/mac80211/mac80211 0x2775049e ieee80211_ap_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0x28a4c6cb ieee80211_txq_get_depth +EXPORT_SYMBOL net/mac80211/mac80211 0x2c975d88 ieee80211_connection_loss +EXPORT_SYMBOL net/mac80211/mac80211 0x2cb3ca73 ieee80211_sta_block_awake +EXPORT_SYMBOL net/mac80211/mac80211 0x2da0fd2a ieee80211_rts_get +EXPORT_SYMBOL net/mac80211/mac80211 0x31c80386 ieee80211_stop_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x38667c13 ieee80211_rx_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x39e8592d ieee80211_beacon_get_template +EXPORT_SYMBOL net/mac80211/mac80211 0x39fbac81 __ieee80211_create_tpt_led_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0x3d42ce17 __ieee80211_get_radio_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x3dda330f ieee80211_rx_ba_timer_expired +EXPORT_SYMBOL net/mac80211/mac80211 0x45d3ea65 ieee80211_tx_dequeue +EXPORT_SYMBOL net/mac80211/mac80211 0x4aaac5a0 ieee80211_beacon_loss +EXPORT_SYMBOL net/mac80211/mac80211 0x4b07bac1 ieee80211_report_wowlan_wakeup +EXPORT_SYMBOL net/mac80211/mac80211 0x54bd40e4 ieee80211_get_unsol_bcast_probe_resp_tmpl +EXPORT_SYMBOL net/mac80211/mac80211 0x55a1afb8 ieee80211_stop_rx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x6860442f ieee80211_sta_pspoll +EXPORT_SYMBOL net/mac80211/mac80211 0x6ee5429f ieee80211_rx_list +EXPORT_SYMBOL net/mac80211/mac80211 0x72db2a24 ieee80211_unreserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0x7629a2af ieee80211_send_bar +EXPORT_SYMBOL net/mac80211/mac80211 0x76539e27 ieee80211_free_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x7842493d ieee80211_iter_keys +EXPORT_SYMBOL net/mac80211/mac80211 0x79e76e07 ieee80211_register_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x7a9e671c ieee80211_find_sta +EXPORT_SYMBOL net/mac80211/mac80211 0x7b31f90e ieee80211_sta_uapsd_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0x80b5881e ieee80211_send_eosp_nullfunc +EXPORT_SYMBOL net/mac80211/mac80211 0x81b698a7 ieee80211_rate_control_register +EXPORT_SYMBOL net/mac80211/mac80211 0x822e8bca ieee80211_sta_set_buffered +EXPORT_SYMBOL net/mac80211/mac80211 0x83c8630c ieee80211_schedule_txq +EXPORT_SYMBOL net/mac80211/mac80211 0x84db94a1 ieee80211_pspoll_get +EXPORT_SYMBOL net/mac80211/mac80211 0x85c62e94 ieee80211_get_fils_discovery_tmpl +EXPORT_SYMBOL net/mac80211/mac80211 0x8a787510 ieee80211_disable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0x8ac09a34 ieee80211_beacon_cntdwn_is_complete +EXPORT_SYMBOL net/mac80211/mac80211 0x8d9db0a1 __ieee80211_get_rx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x9029dce0 ieee80211_tdls_oper_request +EXPORT_SYMBOL net/mac80211/mac80211 0x92ede49d ieee80211_reserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0x954ffaff ieee80211_nan_func_match +EXPORT_SYMBOL net/mac80211/mac80211 0x97f869d3 ieee80211_restart_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x98a016bc ieee80211_beacon_update_cntdwn EXPORT_SYMBOL net/mac80211/mac80211 0x991a0ca0 ieee80211_parse_p2p_noa -EXPORT_SYMBOL net/mac80211/mac80211 0x992914b0 ieee80211_start_tx_ba_cb_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x9b73a1f2 ieee80211_beacon_cntdwn_is_complete -EXPORT_SYMBOL net/mac80211/mac80211 0x9b98aaab ieee80211_sta_block_awake -EXPORT_SYMBOL net/mac80211/mac80211 0x9df58a11 ieee80211_radar_detected -EXPORT_SYMBOL net/mac80211/mac80211 0xa0cb93a2 ieee80211_get_tkip_p2k -EXPORT_SYMBOL net/mac80211/mac80211 0xa1017ec3 ieee80211_rx_napi -EXPORT_SYMBOL net/mac80211/mac80211 0xa1e08df7 ieee80211_report_wowlan_wakeup -EXPORT_SYMBOL net/mac80211/mac80211 0xa22e2053 ieee80211_schedule_txq -EXPORT_SYMBOL net/mac80211/mac80211 0xa83ca760 ieee80211_enable_rssi_reports -EXPORT_SYMBOL net/mac80211/mac80211 0xacf3e248 ieee80211_tx_rate_update -EXPORT_SYMBOL net/mac80211/mac80211 0xafec46d3 ieee80211_cqm_beacon_loss_notify -EXPORT_SYMBOL net/mac80211/mac80211 0xb116e3b5 ieee80211_stop_tx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0xb913fe4c ieee80211_iter_keys -EXPORT_SYMBOL net/mac80211/mac80211 0xb94176f6 ieee80211_tx_dequeue -EXPORT_SYMBOL net/mac80211/mac80211 0xbb32f7ff ieee80211_start_tx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0xbb619069 ieee80211_rate_control_register -EXPORT_SYMBOL net/mac80211/mac80211 0xbcea6f51 ieee80211_csa_finish -EXPORT_SYMBOL net/mac80211/mac80211 0xc2b85b2a ieee80211_get_buffered_bc -EXPORT_SYMBOL net/mac80211/mac80211 0xc4f84958 ieee80211_tdls_oper_request -EXPORT_SYMBOL net/mac80211/mac80211 0xca2bed4c ieee80211_report_low_ack -EXPORT_SYMBOL net/mac80211/mac80211 0xcebf2a88 ieee80211_get_fils_discovery_tmpl -EXPORT_SYMBOL net/mac80211/mac80211 0xd055f599 ieee80211_return_txq -EXPORT_SYMBOL net/mac80211/mac80211 0xd138115c ieee80211_beacon_set_cntdwn -EXPORT_SYMBOL net/mac80211/mac80211 0xd2cbd074 ieee80211_sta_ps_transition -EXPORT_SYMBOL net/mac80211/mac80211 0xd41cd5a7 ieee80211_alloc_hw_nm -EXPORT_SYMBOL net/mac80211/mac80211 0xdb4dd6db ieee80211_send_eosp_nullfunc -EXPORT_SYMBOL net/mac80211/mac80211 0xe4bbf114 ieee80211_connection_loss +EXPORT_SYMBOL net/mac80211/mac80211 0x9a00dc0a ieee80211_free_txskb +EXPORT_SYMBOL net/mac80211/mac80211 0xa009fa19 ieee80211_tx_rate_update +EXPORT_SYMBOL net/mac80211/mac80211 0xa196005b ieee80211_enable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0xa1a4b481 ieee80211_sta_register_airtime +EXPORT_SYMBOL net/mac80211/mac80211 0xa329a79a __ieee80211_get_tx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xa8a33826 ieee80211_tx_status +EXPORT_SYMBOL net/mac80211/mac80211 0xaed738d8 ieee80211_sched_scan_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0xb1b3653b ieee80211_scan_completed +EXPORT_SYMBOL net/mac80211/mac80211 0xb4b4a138 ieee80211_report_low_ack +EXPORT_SYMBOL net/mac80211/mac80211 0xb9b49e33 ieee80211_wake_queue +EXPORT_SYMBOL net/mac80211/mac80211 0xba17cef8 ieee80211_sta_ps_transition +EXPORT_SYMBOL net/mac80211/mac80211 0xbe4cc1c8 ieee80211_proberesp_get +EXPORT_SYMBOL net/mac80211/mac80211 0xbf8418df ieee80211_tx_status_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xc047c94f ieee80211_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0xc0eb1d36 ieee80211_start_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xc2a6aabf wiphy_to_ieee80211_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xc3a39011 ieee80211_tx_prepare_skb +EXPORT_SYMBOL net/mac80211/mac80211 0xc3d9411c ieee80211_iter_keys_rcu +EXPORT_SYMBOL net/mac80211/mac80211 0xc7269f73 ieee80211_sched_scan_results +EXPORT_SYMBOL net/mac80211/mac80211 0xc74bd426 ieee80211_beacon_get_tim +EXPORT_SYMBOL net/mac80211/mac80211 0xca0cc8f8 ieee80211_rts_duration +EXPORT_SYMBOL net/mac80211/mac80211 0xca2a9d3c ieee80211_manage_rx_ba_offl +EXPORT_SYMBOL net/mac80211/mac80211 0xcb02e8ff ieee80211_get_tx_rates +EXPORT_SYMBOL net/mac80211/mac80211 0xcf70a918 ieee80211_chswitch_done +EXPORT_SYMBOL net/mac80211/mac80211 0xd0e89b1c ieee80211_beacon_set_cntdwn +EXPORT_SYMBOL net/mac80211/mac80211 0xd2ebbac1 ieee80211_csa_finish +EXPORT_SYMBOL net/mac80211/mac80211 0xd7029fd8 ieee80211_txq_schedule_start +EXPORT_SYMBOL net/mac80211/mac80211 0xda21dcf9 __ieee80211_get_assoc_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xdabd59a0 ieee80211_stop_queue +EXPORT_SYMBOL net/mac80211/mac80211 0xdb9a065e ieee80211_tx_status_8023 +EXPORT_SYMBOL net/mac80211/mac80211 0xdd78e12c ieee80211_cqm_rssi_notify +EXPORT_SYMBOL net/mac80211/mac80211 0xe15bc920 ieee80211_txq_airtime_check +EXPORT_SYMBOL net/mac80211/mac80211 0xe2c94e0b ieee80211_sta_eosp +EXPORT_SYMBOL net/mac80211/mac80211 0xe5169ad9 ieee80211_get_buffered_bc EXPORT_SYMBOL net/mac80211/mac80211 0xe5752af3 ieee80211_get_bssid -EXPORT_SYMBOL net/mac80211/mac80211 0xe66d7648 ieee80211_sched_scan_stopped -EXPORT_SYMBOL net/mac80211/mac80211 0xe6c244f4 ieee80211_stop_queues -EXPORT_SYMBOL net/mac80211/mac80211 0xe83c1e49 ieee80211_rx_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0xe8a95b02 ieee80211_txq_airtime_check -EXPORT_SYMBOL net/mac80211/mac80211 0xee5f4cb5 ieee80211_rts_duration -EXPORT_SYMBOL net/mac80211/mac80211 0xfb142957 ieee80211_txq_schedule_start -EXPORT_SYMBOL net/mac80211/mac80211 0xfd6853ef __ieee80211_create_tpt_led_trigger -EXPORT_SYMBOL net/mac80211/mac80211 0xfe7be6fb ieee80211_register_hw -EXPORT_SYMBOL net/mac802154/mac802154 0x04370d2c ieee802154_rx_irqsafe -EXPORT_SYMBOL net/mac802154/mac802154 0x358547fb ieee802154_xmit_complete -EXPORT_SYMBOL net/mac802154/mac802154 0x925cf859 ieee802154_register_hw -EXPORT_SYMBOL net/mac802154/mac802154 0xaaafcb35 ieee802154_alloc_hw -EXPORT_SYMBOL net/mac802154/mac802154 0xca4f15ae ieee802154_stop_queue -EXPORT_SYMBOL net/mac802154/mac802154 0xcf18124b ieee802154_free_hw -EXPORT_SYMBOL net/mac802154/mac802154 0xe300cbd3 ieee802154_wake_queue -EXPORT_SYMBOL net/mac802154/mac802154 0xe6a833f8 ieee802154_unregister_hw -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x02c35dc5 ip_vs_conn_put -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x0beccaeb ip_vs_tcp_conn_listen -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x21af2dc4 register_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x2fbef315 unregister_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x68b08979 register_ip_vs_app -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x850dffdf ip_vs_new_conn_out -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x8bae1777 register_ip_vs_app_inc -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xb044c4c7 ip_vs_scheduler_err -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xb199bb07 ip_vs_proto_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xbea5421a ip_vs_conn_in_get +EXPORT_SYMBOL net/mac80211/mac80211 0xe60c9801 ieee80211_tx_status_ext +EXPORT_SYMBOL net/mac80211/mac80211 0xe82cba0a ieee80211_rate_control_unregister +EXPORT_SYMBOL net/mac80211/mac80211 0xe9145327 ieee80211_nullfunc_get +EXPORT_SYMBOL net/mac80211/mac80211 0xf1831af1 ieee80211_disconnect +EXPORT_SYMBOL net/mac80211/mac80211 0xf3c6aab0 ieee80211_alloc_hw_nm +EXPORT_SYMBOL net/mac80211/mac80211 0xf4265d59 ieee80211_queue_work +EXPORT_SYMBOL net/mac80211/mac80211 0xf9589d6b ieee80211_unregister_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xfba32e19 rate_control_set_rates +EXPORT_SYMBOL net/mac802154/mac802154 0x39732559 ieee802154_unregister_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x41b7f918 ieee802154_xmit_complete +EXPORT_SYMBOL net/mac802154/mac802154 0x49afd77f ieee802154_free_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x89f4e38e ieee802154_register_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x9d9cbc58 ieee802154_rx_irqsafe +EXPORT_SYMBOL net/mac802154/mac802154 0xdbe90ae1 ieee802154_wake_queue +EXPORT_SYMBOL net/mac802154/mac802154 0xe7d97edb ieee802154_alloc_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xf857a65e ieee802154_stop_queue +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x0279478f register_ip_vs_app_inc +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x0cd44d05 register_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x0dc9d2ee ip_vs_conn_out_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x127e6964 ip_vs_scheduler_err +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x22cf5421 register_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x3074a552 unregister_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x33ea4a53 ip_vs_conn_new +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x346d1222 ip_vs_proto_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x443df4d9 ip_vs_nfct_expect_related +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x6df1a9ff ip_vs_conn_in_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x75ed46d2 ip_vs_new_conn_out +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xac54c90c unregister_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xbf3a0246 ip_vs_proto_data_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xc36188fd ip_vs_tcp_conn_listen +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xc37a8bbe ip_vs_conn_put EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xdd7a90f2 ip_vs_conn_out_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xec5b6453 ip_vs_proto_data_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xed42159c ip_vs_nfct_expect_related -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xf0618832 unregister_ip_vs_app -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xf1180100 ip_vs_conn_new -EXPORT_SYMBOL net/netfilter/nf_conntrack 0x4ae78e69 nf_ct_ext_add +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x3b08a8f0 nf_ct_destroy +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x6056749b nf_ct_ext_add EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0xf2a36612 pptp_msg_name -EXPORT_SYMBOL net/netfilter/nf_nat 0x3a768f19 __nf_nat_mangle_tcp_packet -EXPORT_SYMBOL net/netfilter/nf_nat 0x5484498f nf_nat_follow_master -EXPORT_SYMBOL net/netfilter/nf_nat 0xa1d6c8ac nf_nat_mangle_udp_packet -EXPORT_SYMBOL net/netfilter/nf_nat 0xe1d38a0f nf_nat_setup_info +EXPORT_SYMBOL net/netfilter/nf_nat 0x5fa9acdc __nf_nat_mangle_tcp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0x9cc2dbec nf_nat_setup_info +EXPORT_SYMBOL net/netfilter/nf_nat 0xc7507b39 nf_nat_follow_master +EXPORT_SYMBOL net/netfilter/nf_nat 0xdd6b6e0c nf_nat_mangle_udp_packet EXPORT_SYMBOL net/netfilter/nft_fib 0xb3c36947 nft_fib_policy -EXPORT_SYMBOL net/netfilter/x_tables 0x0159a805 xt_find_match -EXPORT_SYMBOL net/netfilter/x_tables 0x050ad836 xt_register_targets +EXPORT_SYMBOL net/netfilter/x_tables 0x00fffe03 xt_unregister_match EXPORT_SYMBOL net/netfilter/x_tables 0x0d7f5fcd xt_alloc_entry_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0x3210e968 xt_register_target +EXPORT_SYMBOL net/netfilter/x_tables 0x11416171 xt_unregister_matches +EXPORT_SYMBOL net/netfilter/x_tables 0x16b44dc6 xt_register_targets EXPORT_SYMBOL net/netfilter/x_tables 0x3bf9d084 xt_check_table_hooks -EXPORT_SYMBOL net/netfilter/x_tables 0x3e21b7c2 xt_register_matches +EXPORT_SYMBOL net/netfilter/x_tables 0x3f8cd08e xt_unregister_target +EXPORT_SYMBOL net/netfilter/x_tables 0x418aea8c xt_register_target EXPORT_SYMBOL net/netfilter/x_tables 0x48012e28 xt_check_proc_name -EXPORT_SYMBOL net/netfilter/x_tables 0x4990a4c8 xt_unregister_targets EXPORT_SYMBOL net/netfilter/x_tables 0x50873741 xt_compat_init_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0x6f2317ba xt_find_match +EXPORT_SYMBOL net/netfilter/x_tables 0x826c8fe0 xt_unregister_targets EXPORT_SYMBOL net/netfilter/x_tables 0x977fd4bf xt_alloc_table_info EXPORT_SYMBOL net/netfilter/x_tables 0xa25fc115 xt_compat_check_entry_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0xa3b97af0 xt_find_table -EXPORT_SYMBOL net/netfilter/x_tables 0xc11c5769 xt_unregister_target +EXPORT_SYMBOL net/netfilter/x_tables 0xadb8c3f8 xt_register_matches EXPORT_SYMBOL net/netfilter/x_tables 0xcb3e91cc xt_counters_alloc -EXPORT_SYMBOL net/netfilter/x_tables 0xcd4d17e3 xt_unregister_matches +EXPORT_SYMBOL net/netfilter/x_tables 0xd1502a1b xt_find_table 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 0xec57496f xt_unregister_match -EXPORT_SYMBOL net/netfilter/x_tables 0xf3d16ad2 xt_register_match +EXPORT_SYMBOL net/netfilter/x_tables 0xfb1cc87d xt_register_match EXPORT_SYMBOL net/netfilter/x_tables 0xfef779fa xt_find_jump_offset -EXPORT_SYMBOL net/nfc/hci/hci 0x0bc1ab65 nfc_hci_register_device -EXPORT_SYMBOL net/nfc/hci/hci 0x0cbbf234 nfc_hci_target_discovered -EXPORT_SYMBOL net/nfc/hci/hci 0x15edbf6c nfc_llc_start -EXPORT_SYMBOL net/nfc/hci/hci 0x3184a281 nfc_hci_disconnect_gate -EXPORT_SYMBOL net/nfc/hci/hci 0x3ac243c1 nfc_hci_unregister_device -EXPORT_SYMBOL net/nfc/hci/hci 0x4132f565 nfc_hci_reset_pipes -EXPORT_SYMBOL net/nfc/hci/hci 0x60e5646a nfc_hci_free_device -EXPORT_SYMBOL net/nfc/hci/hci 0x64f6c104 nfc_llc_stop -EXPORT_SYMBOL net/nfc/hci/hci 0x6ab60722 nfc_hci_get_param -EXPORT_SYMBOL net/nfc/hci/hci 0x745d3c7b nfc_hci_allocate_device +EXPORT_SYMBOL net/nfc/hci/hci 0x0cfa613d nfc_hci_recv_frame +EXPORT_SYMBOL net/nfc/hci/hci 0x1ef993c1 nfc_hci_set_param +EXPORT_SYMBOL net/nfc/hci/hci 0x2c13b386 nfc_hci_get_param +EXPORT_SYMBOL net/nfc/hci/hci 0x2eb7f3c0 nfc_hci_reset_pipes +EXPORT_SYMBOL net/nfc/hci/hci 0x3f6c8e68 nfc_hci_get_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0x4c01a3c9 nfc_hci_allocate_device +EXPORT_SYMBOL net/nfc/hci/hci 0x56c00dd1 nfc_hci_set_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0x725399f1 nfc_hci_reset_pipes_per_host EXPORT_SYMBOL net/nfc/hci/hci 0x74fe3670 nfc_hci_result_to_errno -EXPORT_SYMBOL net/nfc/hci/hci 0x828428e8 nfc_hci_send_cmd -EXPORT_SYMBOL net/nfc/hci/hci 0x85e5ae85 nfc_hci_disconnect_all_gates -EXPORT_SYMBOL net/nfc/hci/hci 0x8e740b14 nfc_hci_recv_frame -EXPORT_SYMBOL net/nfc/hci/hci 0x919c638e nfc_hci_driver_failure -EXPORT_SYMBOL net/nfc/hci/hci 0xb313b494 nfc_hci_reset_pipes_per_host -EXPORT_SYMBOL net/nfc/hci/hci 0xb38d2346 nfc_hci_send_event -EXPORT_SYMBOL net/nfc/hci/hci 0xbafdaa19 nfc_hci_send_cmd_async -EXPORT_SYMBOL net/nfc/hci/hci 0xc26fa140 nfc_hci_set_param +EXPORT_SYMBOL net/nfc/hci/hci 0x79fa01ef nfc_hci_register_device +EXPORT_SYMBOL net/nfc/hci/hci 0x89f841b1 nfc_llc_stop +EXPORT_SYMBOL net/nfc/hci/hci 0x9b68b24c nfc_hci_send_event +EXPORT_SYMBOL net/nfc/hci/hci 0xa3980395 nfc_hci_disconnect_all_gates +EXPORT_SYMBOL net/nfc/hci/hci 0xa922a061 nfc_hci_disconnect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0xabe68c48 nfc_hci_send_cmd +EXPORT_SYMBOL net/nfc/hci/hci 0xb763c7df nfc_hci_target_discovered +EXPORT_SYMBOL net/nfc/hci/hci 0xba4dfc91 nfc_hci_free_device +EXPORT_SYMBOL net/nfc/hci/hci 0xc0305cec nfc_hci_driver_failure +EXPORT_SYMBOL net/nfc/hci/hci 0xd270c473 nfc_hci_connect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0xdbcc3d93 nfc_hci_unregister_device +EXPORT_SYMBOL net/nfc/hci/hci 0xdbd26300 nfc_hci_send_cmd_async EXPORT_SYMBOL net/nfc/hci/hci 0xdd231c55 nfc_hci_sak_to_protocol -EXPORT_SYMBOL net/nfc/hci/hci 0xf2adfb3f nfc_hci_set_clientdata -EXPORT_SYMBOL net/nfc/hci/hci 0xf36b3555 nfc_hci_get_clientdata -EXPORT_SYMBOL net/nfc/hci/hci 0xfe24c9b7 nfc_hci_connect_gate -EXPORT_SYMBOL net/nfc/nci/nci 0x05329ac5 nci_hci_open_pipe -EXPORT_SYMBOL net/nfc/nci/nci 0x081a9239 nci_hci_send_event -EXPORT_SYMBOL net/nfc/nci/nci 0x1007c334 nci_hci_set_param -EXPORT_SYMBOL net/nfc/nci/nci 0x34d28487 nci_nfcee_mode_set -EXPORT_SYMBOL net/nfc/nci/nci 0x4df697ef nci_send_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0x4f39b5b3 nci_send_frame -EXPORT_SYMBOL net/nfc/nci/nci 0x591f2f01 nci_hci_clear_all_pipes -EXPORT_SYMBOL net/nfc/nci/nci 0x6c47e33a nci_allocate_device -EXPORT_SYMBOL net/nfc/nci/nci 0x6d82e7f1 nci_core_init -EXPORT_SYMBOL net/nfc/nci/nci 0x8273dd81 nci_hci_dev_session_init -EXPORT_SYMBOL net/nfc/nci/nci 0x86d4c6fc nci_core_conn_close -EXPORT_SYMBOL net/nfc/nci/nci 0x8909f0cd nci_register_device -EXPORT_SYMBOL net/nfc/nci/nci 0x8f7c168b nci_free_device -EXPORT_SYMBOL net/nfc/nci/nci 0x96ada7c0 nci_core_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0x9e8bbdcb nci_send_data -EXPORT_SYMBOL net/nfc/nci/nci 0x9edd0b5f nci_hci_send_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0xa22a9706 nci_conn_max_data_pkt_payload_size -EXPORT_SYMBOL net/nfc/nci/nci 0xa2942c83 nci_unregister_device -EXPORT_SYMBOL net/nfc/nci/nci 0xa312dce1 nci_get_conn_info_by_dest_type_params -EXPORT_SYMBOL net/nfc/nci/nci 0xb1704e98 nci_req_complete +EXPORT_SYMBOL net/nfc/hci/hci 0xf4f0b1f3 nfc_llc_start +EXPORT_SYMBOL net/nfc/nci/nci 0x0090fc70 nci_allocate_device +EXPORT_SYMBOL net/nfc/nci/nci 0x0dff86e5 nci_hci_open_pipe +EXPORT_SYMBOL net/nfc/nci/nci 0x11c0ade4 nci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x1636857b nci_register_device +EXPORT_SYMBOL net/nfc/nci/nci 0x38ecce26 nci_core_conn_create +EXPORT_SYMBOL net/nfc/nci/nci 0x3de51fd6 nci_hci_dev_session_init +EXPORT_SYMBOL net/nfc/nci/nci 0x4d0929fd nci_core_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x5e9e1215 nci_prop_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x62121c9a nci_nfcee_mode_set +EXPORT_SYMBOL net/nfc/nci/nci 0x6425f925 nci_core_reset +EXPORT_SYMBOL net/nfc/nci/nci 0x69e3446c nci_req_complete +EXPORT_SYMBOL net/nfc/nci/nci 0x6ecfd729 nci_hci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x816507b9 nci_nfcc_loopback +EXPORT_SYMBOL net/nfc/nci/nci 0x9c161792 nci_core_conn_close +EXPORT_SYMBOL net/nfc/nci/nci 0xa3b3833b nci_hci_get_param +EXPORT_SYMBOL net/nfc/nci/nci 0xad359ef2 nci_hci_clear_all_pipes EXPORT_SYMBOL net/nfc/nci/nci 0xba490602 nci_to_errno -EXPORT_SYMBOL net/nfc/nci/nci 0xbd3ae153 nci_core_reset -EXPORT_SYMBOL net/nfc/nci/nci 0xbee72c5d nci_prop_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0xc023b120 nci_set_config -EXPORT_SYMBOL net/nfc/nci/nci 0xde899082 nci_nfcee_discover -EXPORT_SYMBOL net/nfc/nci/nci 0xe029f356 nci_hci_get_param -EXPORT_SYMBOL net/nfc/nci/nci 0xe0ed334c nci_nfcc_loopback -EXPORT_SYMBOL net/nfc/nci/nci 0xe85d4140 nci_core_conn_create -EXPORT_SYMBOL net/nfc/nci/nci 0xfbe0476c nci_recv_frame -EXPORT_SYMBOL net/nfc/nci/nci 0xfe81893d nci_hci_connect_gate -EXPORT_SYMBOL net/nfc/nfc 0x04d4cdde nfc_class -EXPORT_SYMBOL net/nfc/nfc 0x0d93cebd nfc_tm_deactivated -EXPORT_SYMBOL net/nfc/nfc 0x1848e26c nfc_dep_link_is_up -EXPORT_SYMBOL net/nfc/nfc 0x1e41b608 nfc_tm_activated -EXPORT_SYMBOL net/nfc/nfc 0x2911c40c nfc_remove_se -EXPORT_SYMBOL net/nfc/nfc 0x44057ff8 nfc_get_local_general_bytes -EXPORT_SYMBOL net/nfc/nfc 0x55f53fad nfc_alloc_recv_skb -EXPORT_SYMBOL net/nfc/nfc 0x5c275860 nfc_set_remote_general_bytes -EXPORT_SYMBOL net/nfc/nfc 0x63bc8fbc nfc_unregister_device -EXPORT_SYMBOL net/nfc/nfc 0x6b4062e3 nfc_driver_failure -EXPORT_SYMBOL net/nfc/nfc 0x714a5a34 nfc_fw_download_done -EXPORT_SYMBOL net/nfc/nfc 0x79d381b9 nfc_se_connectivity -EXPORT_SYMBOL net/nfc/nfc 0x7dbe0481 nfc_se_transaction -EXPORT_SYMBOL net/nfc/nfc 0x86338461 nfc_allocate_device -EXPORT_SYMBOL net/nfc/nfc 0x9052d177 nfc_proto_register -EXPORT_SYMBOL net/nfc/nfc 0x97d5a5d1 nfc_tm_data_received -EXPORT_SYMBOL net/nfc/nfc 0x9ad3bc26 nfc_send_to_raw_sock -EXPORT_SYMBOL net/nfc/nfc 0x9e3dd13d nfc_targets_found -EXPORT_SYMBOL net/nfc/nfc 0xa27107ed nfc_add_se -EXPORT_SYMBOL net/nfc/nfc 0xac55f66b nfc_proto_unregister -EXPORT_SYMBOL net/nfc/nfc 0xb72d9ed9 nfc_vendor_cmd_reply -EXPORT_SYMBOL net/nfc/nfc 0xb998839f __nfc_alloc_vendor_cmd_reply_skb -EXPORT_SYMBOL net/nfc/nfc 0xc8157ee4 nfc_register_device -EXPORT_SYMBOL net/nfc/nfc 0xe67dcc2b nfc_target_lost -EXPORT_SYMBOL net/nfc/nfc 0xf541048d nfc_find_se -EXPORT_SYMBOL net/nfc/nfc_digital 0x3d178914 nfc_digital_unregister_device -EXPORT_SYMBOL net/nfc/nfc_digital 0x4b3e0d7c nfc_digital_free_device -EXPORT_SYMBOL net/nfc/nfc_digital 0x942ce53e nfc_digital_allocate_device -EXPORT_SYMBOL net/nfc/nfc_digital 0xddb8a803 nfc_digital_register_device -EXPORT_SYMBOL net/phonet/phonet 0x674ecfe9 phonet_proto_unregister -EXPORT_SYMBOL net/phonet/phonet 0x814868c9 pn_sock_get_port -EXPORT_SYMBOL net/phonet/phonet 0x87e1e5a9 pn_sock_hash -EXPORT_SYMBOL net/phonet/phonet 0xaa6b82a4 phonet_proto_register -EXPORT_SYMBOL net/phonet/phonet 0xaed05106 phonet_header_ops -EXPORT_SYMBOL net/phonet/phonet 0xbc39f4ed phonet_stream_ops -EXPORT_SYMBOL net/phonet/phonet 0xd21e311e pn_sock_unhash -EXPORT_SYMBOL net/phonet/phonet 0xe44eae41 pn_skb_send -EXPORT_SYMBOL net/rxrpc/rxrpc 0x1b167d9b rxrpc_kernel_abort_call -EXPORT_SYMBOL net/rxrpc/rxrpc 0x2ecfc8ab rxrpc_kernel_check_life +EXPORT_SYMBOL net/nfc/nci/nci 0xbbb901e9 nci_send_frame +EXPORT_SYMBOL net/nfc/nci/nci 0xbddae4d3 nci_free_device +EXPORT_SYMBOL net/nfc/nci/nci 0xc26ecf7b nci_conn_max_data_pkt_payload_size +EXPORT_SYMBOL net/nfc/nci/nci 0xc6f99d81 nci_hci_send_event +EXPORT_SYMBOL net/nfc/nci/nci 0xca0f55a0 nci_unregister_device +EXPORT_SYMBOL net/nfc/nci/nci 0xcb6269eb nci_set_config +EXPORT_SYMBOL net/nfc/nci/nci 0xdabb2d29 nci_hci_connect_gate +EXPORT_SYMBOL net/nfc/nci/nci 0xdeca4c8c nci_get_conn_info_by_dest_type_params +EXPORT_SYMBOL net/nfc/nci/nci 0xeb1e33d8 nci_recv_frame +EXPORT_SYMBOL net/nfc/nci/nci 0xeb6c955b nci_nfcee_discover +EXPORT_SYMBOL net/nfc/nci/nci 0xeb89b4bd nci_core_init +EXPORT_SYMBOL net/nfc/nci/nci 0xebd426ff nci_hci_set_param +EXPORT_SYMBOL net/nfc/nci/nci 0xfe082809 nci_send_data +EXPORT_SYMBOL net/nfc/nfc 0x01094d6d nfc_class +EXPORT_SYMBOL net/nfc/nfc 0x03985b38 nfc_allocate_device +EXPORT_SYMBOL net/nfc/nfc 0x11483c4e nfc_se_connectivity +EXPORT_SYMBOL net/nfc/nfc 0x2411431e nfc_targets_found +EXPORT_SYMBOL net/nfc/nfc 0x2833e3e2 nfc_set_remote_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0x3787219e nfc_send_to_raw_sock +EXPORT_SYMBOL net/nfc/nfc 0x3b59ef49 nfc_tm_deactivated +EXPORT_SYMBOL net/nfc/nfc 0x3dcbf70e nfc_target_lost +EXPORT_SYMBOL net/nfc/nfc 0x59606c01 nfc_proto_unregister +EXPORT_SYMBOL net/nfc/nfc 0x60a5f517 nfc_unregister_device +EXPORT_SYMBOL net/nfc/nfc 0x68b6a47b nfc_tm_activated +EXPORT_SYMBOL net/nfc/nfc 0x718b2d06 nfc_alloc_recv_skb +EXPORT_SYMBOL net/nfc/nfc 0x7e99f0be nfc_find_se +EXPORT_SYMBOL net/nfc/nfc 0x83a37f9e nfc_get_local_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0x8908d5d6 nfc_remove_se +EXPORT_SYMBOL net/nfc/nfc 0xb7684844 nfc_vendor_cmd_reply +EXPORT_SYMBOL net/nfc/nfc 0xbdac26b4 __nfc_alloc_vendor_cmd_reply_skb +EXPORT_SYMBOL net/nfc/nfc 0xc9c4708e nfc_driver_failure +EXPORT_SYMBOL net/nfc/nfc 0xd4ed1636 nfc_dep_link_is_up +EXPORT_SYMBOL net/nfc/nfc 0xd8367b29 nfc_se_transaction +EXPORT_SYMBOL net/nfc/nfc 0xda67ab19 nfc_add_se +EXPORT_SYMBOL net/nfc/nfc 0xe785993d nfc_proto_register +EXPORT_SYMBOL net/nfc/nfc 0xe8335505 nfc_tm_data_received +EXPORT_SYMBOL net/nfc/nfc 0xecfaa672 nfc_fw_download_done +EXPORT_SYMBOL net/nfc/nfc 0xf46c2199 nfc_register_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x0653ba0e nfc_digital_register_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x3e604a23 nfc_digital_unregister_device +EXPORT_SYMBOL net/nfc/nfc_digital 0xa77018fd nfc_digital_allocate_device +EXPORT_SYMBOL net/nfc/nfc_digital 0xe2ea53e5 nfc_digital_free_device +EXPORT_SYMBOL net/phonet/phonet 0x00882b39 phonet_stream_ops +EXPORT_SYMBOL net/phonet/phonet 0x0939a088 pn_sock_get_port +EXPORT_SYMBOL net/phonet/phonet 0x282bffc8 phonet_proto_unregister +EXPORT_SYMBOL net/phonet/phonet 0x414d0659 phonet_header_ops +EXPORT_SYMBOL net/phonet/phonet 0x615a3ffd pn_sock_hash +EXPORT_SYMBOL net/phonet/phonet 0xc5700ae3 pn_skb_send +EXPORT_SYMBOL net/phonet/phonet 0xcc563ada phonet_proto_register +EXPORT_SYMBOL net/phonet/phonet 0xd5959cff pn_sock_unhash +EXPORT_SYMBOL net/rxrpc/rxrpc 0x06e06c2e rxrpc_get_null_key +EXPORT_SYMBOL net/rxrpc/rxrpc 0x07c6040c rxrpc_kernel_send_data +EXPORT_SYMBOL net/rxrpc/rxrpc 0x0c2be938 rxrpc_get_server_data_key +EXPORT_SYMBOL net/rxrpc/rxrpc 0x1331f3ef key_type_rxrpc EXPORT_SYMBOL net/rxrpc/rxrpc 0x31bf3ca3 rxrpc_debug_id -EXPORT_SYMBOL net/rxrpc/rxrpc 0x3604f73b rxrpc_kernel_get_srtt -EXPORT_SYMBOL net/rxrpc/rxrpc 0x4df0787d rxrpc_kernel_get_reply_time -EXPORT_SYMBOL net/rxrpc/rxrpc 0x4e367167 rxrpc_kernel_charge_accept -EXPORT_SYMBOL net/rxrpc/rxrpc 0x55c502c4 rxrpc_kernel_new_call_notification -EXPORT_SYMBOL net/rxrpc/rxrpc 0x581732d4 rxrpc_kernel_recv_data -EXPORT_SYMBOL net/rxrpc/rxrpc 0x73f890ad rxrpc_kernel_get_epoch -EXPORT_SYMBOL net/rxrpc/rxrpc 0x99090f22 key_type_rxrpc -EXPORT_SYMBOL net/rxrpc/rxrpc 0xa264d459 rxrpc_get_null_key -EXPORT_SYMBOL net/rxrpc/rxrpc 0xa2e8992b rxrpc_kernel_get_peer -EXPORT_SYMBOL net/rxrpc/rxrpc 0xa8e0aa4a rxrpc_kernel_end_call -EXPORT_SYMBOL net/rxrpc/rxrpc 0xad422dbd rxrpc_get_server_data_key -EXPORT_SYMBOL net/rxrpc/rxrpc 0xc8cba16f rxrpc_sock_set_min_security_level -EXPORT_SYMBOL net/rxrpc/rxrpc 0xd509ec16 rxrpc_kernel_set_tx_length -EXPORT_SYMBOL net/rxrpc/rxrpc 0xee5105b8 rxrpc_kernel_send_data -EXPORT_SYMBOL net/rxrpc/rxrpc 0xf43fa353 rxrpc_kernel_begin_call -EXPORT_SYMBOL net/rxrpc/rxrpc 0xf57b489a rxrpc_kernel_set_max_life -EXPORT_SYMBOL net/sctp/sctp 0x3911dd9c sctp_do_peeloff -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x07335d66 gss_pseudoflavor_to_service -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x1a00dbf5 gss_mech_put -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xbb37a609 gss_mech_get -EXPORT_SYMBOL net/sunrpc/sunrpc 0x284c2417 xdr_restrict_buflen -EXPORT_SYMBOL net/sunrpc/sunrpc 0x6a8fd98a xdr_truncate_encode -EXPORT_SYMBOL net/sunrpc/sunrpc 0x74dde395 svc_pool_stats_open -EXPORT_SYMBOL net/sunrpc/sunrpc 0x920e0da6 get_srcport -EXPORT_SYMBOL net/tipc/tipc 0x1f74cbdd tipc_nl_sk_walk -EXPORT_SYMBOL net/tipc/tipc 0x22312bd3 tipc_sk_fill_sock_diag -EXPORT_SYMBOL net/tipc/tipc 0x5e2dacdf tipc_dump_start -EXPORT_SYMBOL net/tipc/tipc 0x6a73a199 tipc_dump_done -EXPORT_SYMBOL net/tls/tls 0xee2b02bf tls_get_record -EXPORT_SYMBOL net/wireless/cfg80211 0x007de412 cfg80211_del_sta_sinfo -EXPORT_SYMBOL net/wireless/cfg80211 0x04e052cc cfg80211_assoc_timeout -EXPORT_SYMBOL net/wireless/cfg80211 0x0c7fd76e wiphy_free -EXPORT_SYMBOL net/wireless/cfg80211 0x0e722723 regulatory_set_wiphy_regd_sync -EXPORT_SYMBOL net/wireless/cfg80211 0x0e75f012 cfg80211_check_combinations +EXPORT_SYMBOL net/rxrpc/rxrpc 0x3eaf9bfa rxrpc_kernel_get_peer +EXPORT_SYMBOL net/rxrpc/rxrpc 0x6cfc6791 rxrpc_kernel_recv_data +EXPORT_SYMBOL net/rxrpc/rxrpc 0x8a2a931a rxrpc_kernel_new_call_notification +EXPORT_SYMBOL net/rxrpc/rxrpc 0x8b7a194d rxrpc_kernel_get_epoch +EXPORT_SYMBOL net/rxrpc/rxrpc 0x8d288d9a rxrpc_kernel_end_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0xb482aeb0 rxrpc_kernel_get_srtt +EXPORT_SYMBOL net/rxrpc/rxrpc 0xb4f0db2d rxrpc_kernel_get_reply_time +EXPORT_SYMBOL net/rxrpc/rxrpc 0xb82efce3 rxrpc_kernel_abort_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0xbee58aa7 rxrpc_kernel_set_tx_length +EXPORT_SYMBOL net/rxrpc/rxrpc 0xcc7f65c8 rxrpc_kernel_check_life +EXPORT_SYMBOL net/rxrpc/rxrpc 0xed83dfd2 rxrpc_sock_set_min_security_level +EXPORT_SYMBOL net/rxrpc/rxrpc 0xed9d42e3 rxrpc_kernel_set_max_life +EXPORT_SYMBOL net/rxrpc/rxrpc 0xfa5dbff7 rxrpc_kernel_begin_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0xfbb64211 rxrpc_kernel_charge_accept +EXPORT_SYMBOL net/sctp/sctp 0x570d6c43 sctp_do_peeloff +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x5b8ba96b gss_pseudoflavor_to_service +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xd9a70003 gss_mech_put +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xe4c20576 gss_mech_get +EXPORT_SYMBOL net/sunrpc/sunrpc 0x02c37e41 get_srcport +EXPORT_SYMBOL net/sunrpc/sunrpc 0x322499d3 xdr_restrict_buflen +EXPORT_SYMBOL net/sunrpc/sunrpc 0x820345f9 svc_pool_stats_open +EXPORT_SYMBOL net/sunrpc/sunrpc 0xaeac1fad xdr_truncate_encode +EXPORT_SYMBOL net/tipc/tipc 0x222699d3 tipc_nl_sk_walk +EXPORT_SYMBOL net/tipc/tipc 0x5a67f7dd tipc_sk_fill_sock_diag +EXPORT_SYMBOL net/tipc/tipc 0xc861e4b5 tipc_dump_start +EXPORT_SYMBOL net/tipc/tipc 0xfe0ac406 tipc_dump_done +EXPORT_SYMBOL net/tls/tls 0xeedc2dbb tls_get_record +EXPORT_SYMBOL net/wireless/cfg80211 0x04fcb977 cfg80211_ft_event +EXPORT_SYMBOL net/wireless/cfg80211 0x0c58573a cfg80211_ready_on_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x0e480cee ieee80211_get_hdrlen_from_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x103aa69e __cfg80211_alloc_reply_skb EXPORT_SYMBOL net/wireless/cfg80211 0x117aca91 cfg80211_merge_profile -EXPORT_SYMBOL net/wireless/cfg80211 0x11d14f02 cfg80211_ready_on_channel -EXPORT_SYMBOL net/wireless/cfg80211 0x14aebba7 cfg80211_control_port_tx_status -EXPORT_SYMBOL net/wireless/cfg80211 0x14e04c58 ieee80211_amsdu_to_8023s EXPORT_SYMBOL net/wireless/cfg80211 0x15a37cf3 cfg80211_calculate_bitrate EXPORT_SYMBOL net/wireless/cfg80211 0x1879fcbd bridge_tunnel_header -EXPORT_SYMBOL net/wireless/cfg80211 0x1960ca07 cfg80211_check_station_change +EXPORT_SYMBOL net/wireless/cfg80211 0x19e7266c cfg80211_report_obss_beacon_khz EXPORT_SYMBOL net/wireless/cfg80211 0x1ce2497f reg_query_regdb_wmm -EXPORT_SYMBOL net/wireless/cfg80211 0x1e6dd96f cfg80211_michael_mic_failure -EXPORT_SYMBOL net/wireless/cfg80211 0x21464157 cfg80211_bss_flush +EXPORT_SYMBOL net/wireless/cfg80211 0x1d36b10e cfg80211_sta_opmode_change_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x2090eb9d cfg80211_disconnected EXPORT_SYMBOL net/wireless/cfg80211 0x2310adee ieee80211_bss_get_elem -EXPORT_SYMBOL net/wireless/cfg80211 0x26457d07 cfg80211_rx_mgmt_khz +EXPORT_SYMBOL net/wireless/cfg80211 0x23763f12 cfg80211_check_station_change +EXPORT_SYMBOL net/wireless/cfg80211 0x25fd7b90 cfg80211_bss_flush +EXPORT_SYMBOL net/wireless/cfg80211 0x26f3055b cfg80211_unlink_bss EXPORT_SYMBOL net/wireless/cfg80211 0x275269b3 ieee80211_ie_split_ric EXPORT_SYMBOL net/wireless/cfg80211 0x27efff25 ieee80211_s1g_channel_width -EXPORT_SYMBOL net/wireless/cfg80211 0x281834b3 cfg80211_ch_switch_started_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x28e48142 regulatory_hint +EXPORT_SYMBOL net/wireless/cfg80211 0x283aa587 cfg80211_any_usable_channels EXPORT_SYMBOL net/wireless/cfg80211 0x2a5d816f cfg80211_chandef_valid -EXPORT_SYMBOL net/wireless/cfg80211 0x2d46291f cfg80211_get_station -EXPORT_SYMBOL net/wireless/cfg80211 0x2d6c8110 cfg80211_cqm_beacon_loss_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x330d40a1 cfg80211_gtk_rekey_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x33c9a6f0 cfg80211_iter_combinations -EXPORT_SYMBOL net/wireless/cfg80211 0x373136f1 cfg80211_crit_proto_stopped -EXPORT_SYMBOL net/wireless/cfg80211 0x38b2436e cfg80211_rx_assoc_resp -EXPORT_SYMBOL net/wireless/cfg80211 0x3a43d6b9 cfg80211_rx_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0x3b4aadac ieee80211_get_channel_khz +EXPORT_SYMBOL net/wireless/cfg80211 0x2b877f4f __cfg80211_send_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x2be0f230 cfg80211_tx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x2c86dd78 cfg80211_cqm_pktloss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x37c309d8 cfg80211_new_sta +EXPORT_SYMBOL net/wireless/cfg80211 0x3a5674b6 cfg80211_nan_match +EXPORT_SYMBOL net/wireless/cfg80211 0x3ab70895 cfg80211_check_combinations EXPORT_SYMBOL net/wireless/cfg80211 0x3d8e5894 cfg80211_chandef_compatible -EXPORT_SYMBOL net/wireless/cfg80211 0x3e38e979 cfg80211_disconnected +EXPORT_SYMBOL net/wireless/cfg80211 0x40907e15 regulatory_hint EXPORT_SYMBOL net/wireless/cfg80211 0x43afadee ieee80211_radiotap_iterator_init -EXPORT_SYMBOL net/wireless/cfg80211 0x4ae1c8e4 wiphy_rfkill_start_polling -EXPORT_SYMBOL net/wireless/cfg80211 0x4af8c8f5 cfg80211_ibss_joined -EXPORT_SYMBOL net/wireless/cfg80211 0x4be4aad9 cfg80211_stop_iface -EXPORT_SYMBOL net/wireless/cfg80211 0x528f8146 get_wiphy_regdom -EXPORT_SYMBOL net/wireless/cfg80211 0x53755942 cfg80211_inform_bss_frame_data -EXPORT_SYMBOL net/wireless/cfg80211 0x543bd1c5 wiphy_new_nm -EXPORT_SYMBOL net/wireless/cfg80211 0x55ab26e7 cfg80211_external_auth_request -EXPORT_SYMBOL net/wireless/cfg80211 0x58be2fd7 cfg80211_unregister_wdev -EXPORT_SYMBOL net/wireless/cfg80211 0x592811ec cfg80211_notify_new_peer_candidate -EXPORT_SYMBOL net/wireless/cfg80211 0x59297dd2 cfg80211_cqm_pktloss_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x5d9602c3 cfg80211_conn_failed -EXPORT_SYMBOL net/wireless/cfg80211 0x6079474e cfg80211_report_obss_beacon_khz -EXPORT_SYMBOL net/wireless/cfg80211 0x64113302 __cfg80211_alloc_reply_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x43b489ae cfg80211_rx_control_port +EXPORT_SYMBOL net/wireless/cfg80211 0x43edb44c cfg80211_get_station +EXPORT_SYMBOL net/wireless/cfg80211 0x4696fff1 cfg80211_get_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x4ba75ee4 cfg80211_chandef_usable +EXPORT_SYMBOL net/wireless/cfg80211 0x4c863286 cfg80211_classify8021d +EXPORT_SYMBOL net/wireless/cfg80211 0x4cc3ada8 cfg80211_external_auth_request +EXPORT_SYMBOL net/wireless/cfg80211 0x4f2aee14 cfg80211_reg_can_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0x4f9dd24a cfg80211_iter_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0x502f5d38 wiphy_free +EXPORT_SYMBOL net/wireless/cfg80211 0x50d43ebf cfg80211_remain_on_channel_expired +EXPORT_SYMBOL net/wireless/cfg80211 0x51198fe0 ieee80211_amsdu_to_8023s +EXPORT_SYMBOL net/wireless/cfg80211 0x51dbb845 cfg80211_gtk_rekey_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x53aaa49d wiphy_unregister +EXPORT_SYMBOL net/wireless/cfg80211 0x5433b1ed wiphy_apply_custom_regulatory +EXPORT_SYMBOL net/wireless/cfg80211 0x5942df54 regulatory_pre_cac_allowed +EXPORT_SYMBOL net/wireless/cfg80211 0x598a313a get_wiphy_regdom +EXPORT_SYMBOL net/wireless/cfg80211 0x5a057d20 cfg80211_bss_color_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x5b6d47d5 cfg80211_inform_bss_frame_data +EXPORT_SYMBOL net/wireless/cfg80211 0x608d1355 cfg80211_rx_assoc_resp +EXPORT_SYMBOL net/wireless/cfg80211 0x61bb3515 wiphy_rfkill_set_hw_state_reason EXPORT_SYMBOL net/wireless/cfg80211 0x652aeedf ieee80211_mandatory_rates -EXPORT_SYMBOL net/wireless/cfg80211 0x66fce88b cfg80211_put_bss -EXPORT_SYMBOL net/wireless/cfg80211 0x67c2186d cfg80211_port_authorized -EXPORT_SYMBOL net/wireless/cfg80211 0x68a57fe8 cfg80211_new_sta -EXPORT_SYMBOL net/wireless/cfg80211 0x690dfb79 cfg80211_rx_control_port -EXPORT_SYMBOL net/wireless/cfg80211 0x6936dd2b cfg80211_reg_can_beacon_relax -EXPORT_SYMBOL net/wireless/cfg80211 0x6947f465 wiphy_apply_custom_regulatory -EXPORT_SYMBOL net/wireless/cfg80211 0x6997c985 cfg80211_ref_bss EXPORT_SYMBOL net/wireless/cfg80211 0x69b18f43 rfc1042_header -EXPORT_SYMBOL net/wireless/cfg80211 0x6a0a00f5 cfg80211_get_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x6a23a63b cfg80211_bss_iter +EXPORT_SYMBOL net/wireless/cfg80211 0x6be062a8 cfg80211_radar_event EXPORT_SYMBOL net/wireless/cfg80211 0x6bedf402 ieee80211_freq_khz_to_channel -EXPORT_SYMBOL net/wireless/cfg80211 0x6f47080a cfg80211_unlink_bss -EXPORT_SYMBOL net/wireless/cfg80211 0x7044f696 cfg80211_reg_can_beacon -EXPORT_SYMBOL net/wireless/cfg80211 0x713de476 cfg80211_rx_unexpected_4addr_frame -EXPORT_SYMBOL net/wireless/cfg80211 0x71c077d1 cfg80211_ft_event -EXPORT_SYMBOL net/wireless/cfg80211 0x71c3aa51 cfg80211_cqm_rssi_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x7567c677 cfg80211_nan_func_terminated +EXPORT_SYMBOL net/wireless/cfg80211 0x6ce26242 regulatory_set_wiphy_regd_sync +EXPORT_SYMBOL net/wireless/cfg80211 0x6e5848a7 cfg80211_reg_can_beacon_relax +EXPORT_SYMBOL net/wireless/cfg80211 0x6ed819b4 cfg80211_nan_func_terminated +EXPORT_SYMBOL net/wireless/cfg80211 0x77c20122 cfg80211_scan_done EXPORT_SYMBOL net/wireless/cfg80211 0x79b82a71 cfg80211_find_vendor_elem +EXPORT_SYMBOL net/wireless/cfg80211 0x79c44109 cfg80211_sched_scan_stopped EXPORT_SYMBOL net/wireless/cfg80211 0x7acb86ed ieee80211_radiotap_iterator_next +EXPORT_SYMBOL net/wireless/cfg80211 0x7bf6632b cfg80211_cac_event EXPORT_SYMBOL net/wireless/cfg80211 0x7c3ac925 ieee80211_get_vht_max_nss EXPORT_SYMBOL net/wireless/cfg80211 0x7ef39823 ieee80211_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0x7fad345b cfg80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x802ac38b cfg80211_mgmt_tx_status EXPORT_SYMBOL net/wireless/cfg80211 0x81874735 ieee80211_get_response_rate -EXPORT_SYMBOL net/wireless/cfg80211 0x86ba224e cfg80211_auth_timeout -EXPORT_SYMBOL net/wireless/cfg80211 0x8776e847 cfg80211_ch_switch_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x88d29942 cfg80211_rx_spurious_frame -EXPORT_SYMBOL net/wireless/cfg80211 0x890d221e ieee80211_get_num_supported_channels -EXPORT_SYMBOL net/wireless/cfg80211 0x8b657f41 wiphy_rfkill_set_hw_state_reason -EXPORT_SYMBOL net/wireless/cfg80211 0x8c3de5d9 wiphy_unregister -EXPORT_SYMBOL net/wireless/cfg80211 0x8cbca9d6 cfg80211_bss_color_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x8e353980 cfg80211_get_drvinfo +EXPORT_SYMBOL net/wireless/cfg80211 0x81e8d877 cfg80211_connect_done +EXPORT_SYMBOL net/wireless/cfg80211 0x82a0ee5b cfg80211_assoc_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0x87d96cdb ieee80211_data_to_8023_exthdr +EXPORT_SYMBOL net/wireless/cfg80211 0x8a630195 cfg80211_port_authorized +EXPORT_SYMBOL net/wireless/cfg80211 0x8a815819 cfg80211_abandon_assoc +EXPORT_SYMBOL net/wireless/cfg80211 0x8cbf4994 cfg80211_send_layer2_update +EXPORT_SYMBOL net/wireless/cfg80211 0x8dd29f31 cfg80211_roamed EXPORT_SYMBOL net/wireless/cfg80211 0x8fa02936 cfg80211_free_nan_func -EXPORT_SYMBOL net/wireless/cfg80211 0x90153342 cfg80211_inform_bss_data -EXPORT_SYMBOL net/wireless/cfg80211 0x90c5057c cfg80211_pmksa_candidate_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x91cae86c wiphy_register -EXPORT_SYMBOL net/wireless/cfg80211 0x9858ce18 cfg80211_mgmt_tx_status -EXPORT_SYMBOL net/wireless/cfg80211 0x99fca1f7 cfg80211_bss_iter -EXPORT_SYMBOL net/wireless/cfg80211 0x9b76a126 cfg80211_iftype_allowed +EXPORT_SYMBOL net/wireless/cfg80211 0x91618de0 cfg80211_update_owe_info_event +EXPORT_SYMBOL net/wireless/cfg80211 0x91e4e9b6 wiphy_rfkill_start_polling +EXPORT_SYMBOL net/wireless/cfg80211 0x92753075 cfg80211_register_netdevice +EXPORT_SYMBOL net/wireless/cfg80211 0x92cee195 cfg80211_report_wowlan_wakeup +EXPORT_SYMBOL net/wireless/cfg80211 0x991f6a24 cfg80211_rx_spurious_frame EXPORT_SYMBOL net/wireless/cfg80211 0x9d6cba30 cfg80211_find_elem_match -EXPORT_SYMBOL net/wireless/cfg80211 0xa3f6b4ba cfg80211_chandef_usable -EXPORT_SYMBOL net/wireless/cfg80211 0xa95d8101 wiphy_read_of_freq_limits -EXPORT_SYMBOL net/wireless/cfg80211 0xaa30ce6a regulatory_set_wiphy_regd -EXPORT_SYMBOL net/wireless/cfg80211 0xaa3eba64 cfg80211_send_layer2_update -EXPORT_SYMBOL net/wireless/cfg80211 0xac78e0e9 cfg80211_register_netdevice -EXPORT_SYMBOL net/wireless/cfg80211 0xace39b48 cfg80211_abandon_assoc -EXPORT_SYMBOL net/wireless/cfg80211 0xadbf2d47 cfg80211_cac_event -EXPORT_SYMBOL net/wireless/cfg80211 0xb1cd52a8 cfg80211_any_usable_channels -EXPORT_SYMBOL net/wireless/cfg80211 0xb49be4f0 freq_reg_info +EXPORT_SYMBOL net/wireless/cfg80211 0x9d78878d __cfg80211_alloc_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xa36eb56c cfg80211_conn_failed +EXPORT_SYMBOL net/wireless/cfg80211 0xa83fea4a cfg80211_tx_mgmt_expired +EXPORT_SYMBOL net/wireless/cfg80211 0xa876c2dd cfg80211_ibss_joined +EXPORT_SYMBOL net/wireless/cfg80211 0xaa6f4399 cfg80211_chandef_dfs_required +EXPORT_SYMBOL net/wireless/cfg80211 0xab021c88 cfg80211_notify_new_peer_candidate +EXPORT_SYMBOL net/wireless/cfg80211 0xad9e601f cfg80211_cqm_rssi_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xb17c8f25 cfg80211_get_drvinfo +EXPORT_SYMBOL net/wireless/cfg80211 0xb1a904cb cfg80211_rx_unprot_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0xb2b60996 cfg80211_pmksa_candidate_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xb321b294 cfg80211_iftype_allowed +EXPORT_SYMBOL net/wireless/cfg80211 0xb529851d cfg80211_probe_status +EXPORT_SYMBOL net/wireless/cfg80211 0xb56d34ca cfg80211_cqm_txe_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xb5a2a104 cfg80211_control_port_tx_status EXPORT_SYMBOL net/wireless/cfg80211 0xb73aafb1 ieee80211_chandef_to_operating_class -EXPORT_SYMBOL net/wireless/cfg80211 0xb8fe3a6e ieee80211_get_hdrlen_from_skb -EXPORT_SYMBOL net/wireless/cfg80211 0xb9137a10 cfg80211_nan_match -EXPORT_SYMBOL net/wireless/cfg80211 0xbc4386c3 cfg80211_sta_opmode_change_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xbef68381 cfg80211_chandef_dfs_required -EXPORT_SYMBOL net/wireless/cfg80211 0xc1713dac cfg80211_probe_status +EXPORT_SYMBOL net/wireless/cfg80211 0xb772cafb ieee80211_get_channel_khz +EXPORT_SYMBOL net/wireless/cfg80211 0xb9e02873 cfg80211_michael_mic_failure +EXPORT_SYMBOL net/wireless/cfg80211 0xbb5cff38 cfg80211_auth_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0xbbea4797 cfg80211_unregister_wdev +EXPORT_SYMBOL net/wireless/cfg80211 0xbcbf3469 freq_reg_info +EXPORT_SYMBOL net/wireless/cfg80211 0xbf9498db cfg80211_sched_scan_results EXPORT_SYMBOL net/wireless/cfg80211 0xc1b99792 ieee80211_channel_to_freq_khz -EXPORT_SYMBOL net/wireless/cfg80211 0xc23539c5 cfg80211_radar_event -EXPORT_SYMBOL net/wireless/cfg80211 0xc38b40e8 cfg80211_tx_mgmt_expired -EXPORT_SYMBOL net/wireless/cfg80211 0xc4842f74 cfg80211_cqm_txe_notify EXPORT_SYMBOL net/wireless/cfg80211 0xc5dcacef ieee80211_operating_class_to_band +EXPORT_SYMBOL net/wireless/cfg80211 0xc7f69a26 cfg80211_stop_iface +EXPORT_SYMBOL net/wireless/cfg80211 0xc9695487 cfg80211_sched_scan_stopped_locked EXPORT_SYMBOL net/wireless/cfg80211 0xcc1a7c48 cfg80211_is_element_inherited -EXPORT_SYMBOL net/wireless/cfg80211 0xcfab0e07 cfg80211_sched_scan_stopped_locked -EXPORT_SYMBOL net/wireless/cfg80211 0xcfcde831 cfg80211_connect_done -EXPORT_SYMBOL net/wireless/cfg80211 0xd3a74ff4 cfg80211_roamed -EXPORT_SYMBOL net/wireless/cfg80211 0xd5318fe0 cfg80211_update_owe_info_event +EXPORT_SYMBOL net/wireless/cfg80211 0xcca19064 cfg80211_ch_switch_started_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xcf6bbf6b cfg80211_tdls_oper_request +EXPORT_SYMBOL net/wireless/cfg80211 0xd0b118d8 cfg80211_ref_bss EXPORT_SYMBOL net/wireless/cfg80211 0xd56d55f3 ieee80211_get_mesh_hdrlen -EXPORT_SYMBOL net/wireless/cfg80211 0xd5b15c62 cfg80211_rx_unprot_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0xd929d6ec cfg80211_remain_on_channel_expired -EXPORT_SYMBOL net/wireless/cfg80211 0xd9ee6b16 cfg80211_sched_scan_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0xd5cf2827 cfg80211_rx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0xd7a91bce cfg80211_ch_switch_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xd8d0e501 wiphy_register EXPORT_SYMBOL net/wireless/cfg80211 0xdba126c1 reg_initiator_name -EXPORT_SYMBOL net/wireless/cfg80211 0xe0440328 cfg80211_tdls_oper_request -EXPORT_SYMBOL net/wireless/cfg80211 0xe0d45d5d cfg80211_tx_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0xe155c413 regulatory_pre_cac_allowed +EXPORT_SYMBOL net/wireless/cfg80211 0xe13bbc5a regulatory_set_wiphy_regd +EXPORT_SYMBOL net/wireless/cfg80211 0xe245ae66 cfg80211_rx_mgmt_khz EXPORT_SYMBOL net/wireless/cfg80211 0xe334e6df cfg80211_sinfo_alloc_tid_stats -EXPORT_SYMBOL net/wireless/cfg80211 0xe59846f1 cfg80211_classify8021d -EXPORT_SYMBOL net/wireless/cfg80211 0xe811656a __cfg80211_send_event_skb -EXPORT_SYMBOL net/wireless/cfg80211 0xe8fcf0c4 cfg80211_scan_done -EXPORT_SYMBOL net/wireless/cfg80211 0xed06e13f __cfg80211_alloc_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xe5805eab cfg80211_del_sta_sinfo +EXPORT_SYMBOL net/wireless/cfg80211 0xe5c4d34c cfg80211_crit_proto_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0xe6d58d02 wiphy_read_of_freq_limits +EXPORT_SYMBOL net/wireless/cfg80211 0xe7c6f4bb ieee80211_get_num_supported_channels +EXPORT_SYMBOL net/wireless/cfg80211 0xeb47441f cfg80211_rx_unexpected_4addr_frame +EXPORT_SYMBOL net/wireless/cfg80211 0xecddd029 cfg80211_inform_bss_data EXPORT_SYMBOL net/wireless/cfg80211 0xef265f27 cfg80211_chandef_create -EXPORT_SYMBOL net/wireless/cfg80211 0xf0a3b318 cfg80211_sched_scan_results +EXPORT_SYMBOL net/wireless/cfg80211 0xf080c226 cfg80211_put_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xf38411c2 wiphy_new_nm EXPORT_SYMBOL net/wireless/cfg80211 0xf5596d89 cfg80211_get_p2p_attr -EXPORT_SYMBOL net/wireless/cfg80211 0xfb040e80 cfg80211_report_wowlan_wakeup -EXPORT_SYMBOL net/wireless/cfg80211 0xff801856 ieee80211_data_to_8023_exthdr -EXPORT_SYMBOL net/wireless/lib80211 0x23351429 lib80211_crypt_delayed_deinit -EXPORT_SYMBOL net/wireless/lib80211 0x3d295453 lib80211_register_crypto_ops -EXPORT_SYMBOL net/wireless/lib80211 0x40cd4634 lib80211_unregister_crypto_ops -EXPORT_SYMBOL net/wireless/lib80211 0x91cf2ca1 lib80211_crypt_info_free -EXPORT_SYMBOL net/wireless/lib80211 0xbd1d2b02 lib80211_crypt_info_init -EXPORT_SYMBOL net/wireless/lib80211 0xdc701cf8 lib80211_get_crypto_ops -EXPORT_SYMBOL sound/ac97_bus 0xd0405e1b ac97_bus_type -EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0x60a88e04 snd_mixer_oss_ioctl_card +EXPORT_SYMBOL net/wireless/lib80211 0x0e17328d lib80211_crypt_info_free +EXPORT_SYMBOL net/wireless/lib80211 0x1c2563a2 lib80211_unregister_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x1edb8a58 lib80211_get_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x247818fa lib80211_register_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x3ce5a86d lib80211_crypt_info_init +EXPORT_SYMBOL net/wireless/lib80211 0xfa9a4d80 lib80211_crypt_delayed_deinit +EXPORT_SYMBOL sound/ac97_bus 0x4a492841 ac97_bus_type +EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0x881bf757 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 0x3126c070 snd_seq_event_port_attach EXPORT_SYMBOL sound/core/seq/snd-seq 0x3fb4d161 snd_seq_kernel_client_dispatch -EXPORT_SYMBOL sound/core/seq/snd-seq 0x432efe2a snd_seq_kernel_client_enqueue EXPORT_SYMBOL sound/core/seq/snd-seq 0x6bb71038 snd_seq_delete_kernel_client +EXPORT_SYMBOL sound/core/seq/snd-seq 0x6db54a22 snd_seq_kernel_client_enqueue 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 0x83c18a3b snd_seq_kernel_client_write_poll EXPORT_SYMBOL sound/core/seq/snd-seq 0xb8e448a0 snd_seq_set_queue_tempo -EXPORT_SYMBOL sound/core/seq/snd-seq 0xd9c162d0 snd_seq_create_kernel_client +EXPORT_SYMBOL sound/core/seq/snd-seq 0xce8c0a37 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 0xf03e35f1 snd_seq_event_port_attach +EXPORT_SYMBOL sound/core/seq/snd-seq 0xffb789d8 snd_seq_kernel_client_write_poll EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x6ea09972 snd_midi_channel_alloc_set EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x833a3e07 snd_midi_channel_set_clear EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0xb9948d2c snd_midi_channel_free_set @@ -5753,422 +5757,422 @@ 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 0x8ea2098a snd_virmidi_new -EXPORT_SYMBOL sound/core/snd 0x0469a01f snd_register_device -EXPORT_SYMBOL sound/core/snd 0x05890e6a snd_mixer_oss_notify_callback -EXPORT_SYMBOL sound/core/snd 0x0a77b24d snd_ctl_register_ioctl -EXPORT_SYMBOL sound/core/snd 0x0be57d08 snd_seq_root -EXPORT_SYMBOL sound/core/snd 0x0ef4a493 snd_ctl_unregister_ioctl +EXPORT_SYMBOL sound/core/seq/snd-seq-virmidi 0x40eed039 snd_virmidi_new +EXPORT_SYMBOL sound/core/snd 0x0ccd19c3 snd_seq_root +EXPORT_SYMBOL sound/core/snd 0x165197ba snd_info_free_entry EXPORT_SYMBOL sound/core/snd 0x198788b4 snd_lookup_oss_minor_data -EXPORT_SYMBOL sound/core/snd 0x1a1cdfeb snd_ctl_remove_id -EXPORT_SYMBOL sound/core/snd 0x21520411 snd_register_oss_device -EXPORT_SYMBOL sound/core/snd 0x243e35db snd_unregister_device -EXPORT_SYMBOL sound/core/snd 0x247ab92f snd_device_new EXPORT_SYMBOL sound/core/snd 0x24a94b26 snd_info_get_line -EXPORT_SYMBOL sound/core/snd 0x2bde0006 snd_card_file_add +EXPORT_SYMBOL sound/core/snd 0x2866e613 snd_unregister_oss_device +EXPORT_SYMBOL sound/core/snd 0x2fe90807 snd_ctl_new1 +EXPORT_SYMBOL sound/core/snd 0x310eb727 snd_info_create_card_entry EXPORT_SYMBOL sound/core/snd 0x342a2354 copy_to_user_fromio +EXPORT_SYMBOL sound/core/snd 0x3686d45e snd_unregister_device EXPORT_SYMBOL sound/core/snd 0x3971b4df snd_ecards_limit -EXPORT_SYMBOL sound/core/snd 0x3a14b53a snd_jack_set_parent -EXPORT_SYMBOL sound/core/snd 0x406e15cd snd_ctl_rename_id -EXPORT_SYMBOL sound/core/snd 0x4074a4f7 snd_ctl_notify_one -EXPORT_SYMBOL sound/core/snd 0x43540ff9 snd_jack_report +EXPORT_SYMBOL sound/core/snd 0x445eb544 snd_ctl_boolean_mono_info +EXPORT_SYMBOL sound/core/snd 0x457859a5 snd_ctl_rename_id EXPORT_SYMBOL sound/core/snd 0x4a3ea5c0 snd_request_card -EXPORT_SYMBOL sound/core/snd 0x5419e90a snd_ctl_notify -EXPORT_SYMBOL sound/core/snd 0x6249320d snd_ctl_find_numid -EXPORT_SYMBOL sound/core/snd 0x66fab152 snd_info_free_entry -EXPORT_SYMBOL sound/core/snd 0x6ab82d57 snd_ctl_find_id -EXPORT_SYMBOL sound/core/snd 0x72cc0c53 snd_jack_set_key +EXPORT_SYMBOL sound/core/snd 0x4cf364f1 snd_power_wait +EXPORT_SYMBOL sound/core/snd 0x4f438192 snd_ctl_remove +EXPORT_SYMBOL sound/core/snd 0x543bc9d7 snd_ctl_unregister_ioctl_compat +EXPORT_SYMBOL sound/core/snd 0x625c6be0 snd_register_device +EXPORT_SYMBOL sound/core/snd 0x62e2320f snd_ctl_free_one +EXPORT_SYMBOL sound/core/snd 0x63c83076 snd_ctl_make_virtual_master +EXPORT_SYMBOL sound/core/snd 0x68311ab3 snd_ctl_replace +EXPORT_SYMBOL sound/core/snd 0x6cedf5e7 snd_jack_add_new_kctl +EXPORT_SYMBOL sound/core/snd 0x6deed303 snd_register_oss_device EXPORT_SYMBOL sound/core/snd 0x73076315 snd_pci_quirk_lookup_id -EXPORT_SYMBOL sound/core/snd 0x7c953ad4 snd_ctl_free_one -EXPORT_SYMBOL sound/core/snd 0x7cec990e snd_ctl_make_virtual_master -EXPORT_SYMBOL sound/core/snd 0x7e6213a9 snd_device_register -EXPORT_SYMBOL sound/core/snd 0x8084f13a snd_ctl_add -EXPORT_SYMBOL sound/core/snd 0x85afdcc1 snd_ctl_boolean_stereo_info -EXPORT_SYMBOL sound/core/snd 0x8c138ad0 snd_card_disconnect -EXPORT_SYMBOL sound/core/snd 0x8c415ef8 snd_ctl_boolean_mono_info +EXPORT_SYMBOL sound/core/snd 0x7515bcfe snd_device_register +EXPORT_SYMBOL sound/core/snd 0x753ba792 snd_ctl_add +EXPORT_SYMBOL sound/core/snd 0x7a073739 snd_ctl_find_numid +EXPORT_SYMBOL sound/core/snd 0x7ebfd411 snd_ctl_remove_id +EXPORT_SYMBOL sound/core/snd 0x850c0ea4 snd_pci_quirk_lookup +EXPORT_SYMBOL sound/core/snd 0x88ba0fbd snd_ctl_register_ioctl_compat +EXPORT_SYMBOL sound/core/snd 0x8a9e037a snd_info_register EXPORT_SYMBOL sound/core/snd 0x8df3789f snd_oss_info_register EXPORT_SYMBOL sound/core/snd 0x8f595b11 snd_major -EXPORT_SYMBOL sound/core/snd 0x8fec2242 snd_ctl_replace -EXPORT_SYMBOL sound/core/snd 0x94366e62 snd_jack_new -EXPORT_SYMBOL sound/core/snd 0x94ad5ecb snd_ctl_register_ioctl_compat -EXPORT_SYMBOL sound/core/snd 0x96ff14b7 snd_pci_quirk_lookup -EXPORT_SYMBOL sound/core/snd 0x987ccf61 snd_unregister_oss_device +EXPORT_SYMBOL sound/core/snd 0x96f5128e snd_card_set_id +EXPORT_SYMBOL sound/core/snd 0x99524d1b snd_info_create_module_entry +EXPORT_SYMBOL sound/core/snd 0x99532824 snd_ctl_notify +EXPORT_SYMBOL sound/core/snd 0x9c20fae3 snd_ctl_register_ioctl EXPORT_SYMBOL sound/core/snd 0x9e6d79f8 snd_info_get_str -EXPORT_SYMBOL sound/core/snd 0x9f378307 snd_card_new -EXPORT_SYMBOL sound/core/snd 0xae8f19b2 snd_card_file_remove +EXPORT_SYMBOL sound/core/snd 0x9e7bcb60 snd_device_free +EXPORT_SYMBOL sound/core/snd 0xa2d0d98e snd_jack_set_parent +EXPORT_SYMBOL sound/core/snd 0xaa343c3f snd_ctl_find_id +EXPORT_SYMBOL sound/core/snd 0xac16da11 snd_card_disconnect EXPORT_SYMBOL sound/core/snd 0xb2e5ae4a snd_lookup_minor_data -EXPORT_SYMBOL sound/core/snd 0xb5424168 snd_power_wait -EXPORT_SYMBOL sound/core/snd 0xb8534203 snd_device_free -EXPORT_SYMBOL sound/core/snd 0xb9b7c179 snd_info_create_card_entry -EXPORT_SYMBOL sound/core/snd 0xbc284cee snd_card_register -EXPORT_SYMBOL sound/core/snd 0xbcbe4874 _snd_ctl_add_follower -EXPORT_SYMBOL sound/core/snd 0xbf700e56 snd_component_add -EXPORT_SYMBOL sound/core/snd 0xc3fa9a40 snd_ctl_unregister_ioctl_compat -EXPORT_SYMBOL sound/core/snd 0xc4f86c53 snd_card_set_id +EXPORT_SYMBOL sound/core/snd 0xb4fd5e80 snd_mixer_oss_notify_callback +EXPORT_SYMBOL sound/core/snd 0xb5218881 snd_card_register +EXPORT_SYMBOL sound/core/snd 0xbc594fb6 snd_component_add +EXPORT_SYMBOL sound/core/snd 0xbf3b8eb4 _snd_ctl_add_follower +EXPORT_SYMBOL sound/core/snd 0xc031d622 snd_ctl_boolean_stereo_info EXPORT_SYMBOL sound/core/snd 0xc5a6d10b release_and_free_resource -EXPORT_SYMBOL sound/core/snd 0xc62ee50a snd_card_free_when_closed +EXPORT_SYMBOL sound/core/snd 0xc751d726 snd_jack_new +EXPORT_SYMBOL sound/core/snd 0xcb773e68 snd_ctl_unregister_ioctl EXPORT_SYMBOL sound/core/snd 0xcc6a729f snd_ctl_enum_info -EXPORT_SYMBOL sound/core/snd 0xd43581ca snd_jack_add_new_kctl -EXPORT_SYMBOL sound/core/snd 0xdd2a3a01 snd_ctl_new1 -EXPORT_SYMBOL sound/core/snd 0xde3d0f60 snd_info_register -EXPORT_SYMBOL sound/core/snd 0xe3ce6b9b snd_info_create_module_entry -EXPORT_SYMBOL sound/core/snd 0xe82adbf7 snd_ctl_remove -EXPORT_SYMBOL sound/core/snd 0xfb988163 snd_card_free +EXPORT_SYMBOL sound/core/snd 0xcdc16680 snd_card_file_add +EXPORT_SYMBOL sound/core/snd 0xd2ddfc13 snd_device_new +EXPORT_SYMBOL sound/core/snd 0xd7731a42 snd_jack_set_key +EXPORT_SYMBOL sound/core/snd 0xe2d6fe12 snd_card_file_remove +EXPORT_SYMBOL sound/core/snd 0xe4146a3a snd_card_new +EXPORT_SYMBOL sound/core/snd 0xe7926649 snd_card_free +EXPORT_SYMBOL sound/core/snd 0xeae40e14 snd_ctl_notify_one +EXPORT_SYMBOL sound/core/snd 0xf71ffffb snd_card_free_when_closed +EXPORT_SYMBOL sound/core/snd 0xfa0403eb snd_jack_report EXPORT_SYMBOL sound/core/snd 0xfffd89db copy_from_user_toio -EXPORT_SYMBOL sound/core/snd-compress 0x8f8f4bce snd_compr_malloc_pages -EXPORT_SYMBOL sound/core/snd-compress 0xe7def783 snd_compr_free_pages -EXPORT_SYMBOL sound/core/snd-hwdep 0xf2a1b7db snd_hwdep_new +EXPORT_SYMBOL sound/core/snd-compress 0x8a46c624 snd_compr_free_pages +EXPORT_SYMBOL sound/core/snd-compress 0xe0cabdc7 snd_compr_malloc_pages +EXPORT_SYMBOL sound/core/snd-hwdep 0x334086d6 snd_hwdep_new EXPORT_SYMBOL sound/core/snd-pcm 0x0283dfe3 _snd_pcm_hw_params_any EXPORT_SYMBOL sound/core/snd-pcm 0x04cda566 snd_interval_refine -EXPORT_SYMBOL sound/core/snd-pcm 0x06a42a1c snd_pcm_lib_preallocate_free_for_all -EXPORT_SYMBOL sound/core/snd-pcm 0x0a9040de snd_pcm_lib_free_vmalloc_buffer -EXPORT_SYMBOL sound/core/snd-pcm 0x0b4f3b8f snd_pcm_period_elapsed -EXPORT_SYMBOL sound/core/snd-pcm 0x0c0b918d snd_pcm_hw_param_last -EXPORT_SYMBOL sound/core/snd-pcm 0x0c26a48d snd_pcm_hw_constraint_minmax -EXPORT_SYMBOL sound/core/snd-pcm 0x0d7538ad snd_pcm_release_substream EXPORT_SYMBOL sound/core/snd-pcm 0x11eba48e snd_pcm_create_iec958_consumer_hw_params -EXPORT_SYMBOL sound/core/snd-pcm 0x149593cb snd_pcm_set_ops -EXPORT_SYMBOL sound/core/snd-pcm 0x17e4388d snd_pcm_kernel_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0x17f76c28 snd_pcm_hw_constraint_minmax +EXPORT_SYMBOL sound/core/snd-pcm 0x1c9d2421 snd_pcm_set_sync EXPORT_SYMBOL sound/core/snd-pcm 0x1d027e4b snd_pcm_format_signed -EXPORT_SYMBOL sound/core/snd-pcm 0x26a42c1a snd_pcm_hw_param_first -EXPORT_SYMBOL sound/core/snd-pcm 0x288b833d snd_pcm_set_managed_buffer -EXPORT_SYMBOL sound/core/snd-pcm 0x362ee364 snd_pcm_create_iec958_consumer +EXPORT_SYMBOL sound/core/snd-pcm 0x1f3e1fb8 snd_pcm_suspend_all +EXPORT_SYMBOL sound/core/snd-pcm 0x25efe9ba snd_pcm_lib_preallocate_free_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0x27e8d143 snd_pcm_lib_malloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x2cc8263b snd_pcm_hw_constraint_ratdens +EXPORT_SYMBOL sound/core/snd-pcm 0x2dafc9e8 snd_pcm_new +EXPORT_SYMBOL sound/core/snd-pcm 0x33186e56 snd_pcm_lib_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0x37857a48 snd_pcm_hw_constraint_pow2 EXPORT_SYMBOL sound/core/snd-pcm 0x3796bdcc snd_pcm_format_little_endian -EXPORT_SYMBOL sound/core/snd-pcm 0x37b34940 snd_pcm_hw_constraint_list -EXPORT_SYMBOL sound/core/snd-pcm 0x37c403ba snd_pcm_hw_constraint_ratnums -EXPORT_SYMBOL sound/core/snd-pcm 0x385d1d29 snd_pcm_lib_preallocate_pages EXPORT_SYMBOL sound/core/snd-pcm 0x39bf9301 _snd_pcm_hw_param_setempty -EXPORT_SYMBOL sound/core/snd-pcm 0x3c671bf7 snd_pcm_hw_constraint_mask64 -EXPORT_SYMBOL sound/core/snd-pcm 0x43d17b7c snd_dma_alloc_pages -EXPORT_SYMBOL sound/core/snd-pcm 0x495191cb snd_pcm_set_sync -EXPORT_SYMBOL sound/core/snd-pcm 0x4c677476 snd_pcm_hw_constraint_msbits -EXPORT_SYMBOL sound/core/snd-pcm 0x4e1a0f85 snd_pcm_set_managed_buffer_all +EXPORT_SYMBOL sound/core/snd-pcm 0x40d7d590 snd_dma_buffer_mmap +EXPORT_SYMBOL sound/core/snd-pcm 0x46772f6c snd_pcm_set_managed_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0x495a3ef0 snd_pcm_create_iec958_consumer +EXPORT_SYMBOL sound/core/snd-pcm 0x4c009cbb snd_pcm_release_substream EXPORT_SYMBOL sound/core/snd-pcm 0x4f816e9b snd_pcm_format_big_endian EXPORT_SYMBOL sound/core/snd-pcm 0x503bd137 snd_interval_ranges -EXPORT_SYMBOL sound/core/snd-pcm 0x50cf23be snd_pcm_lib_malloc_pages EXPORT_SYMBOL sound/core/snd-pcm 0x52e3e4a5 snd_pcm_hw_param_value -EXPORT_SYMBOL sound/core/snd-pcm 0x540cfcc0 snd_dma_alloc_pages_fallback -EXPORT_SYMBOL sound/core/snd-pcm 0x56d2ea70 snd_pcm_lib_free_pages -EXPORT_SYMBOL sound/core/snd-pcm 0x5b7f0d5e snd_pcm_hw_refine +EXPORT_SYMBOL sound/core/snd-pcm 0x534bb5b7 snd_pcm_lib_preallocate_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x598f8429 snd_pcm_hw_constraint_ranges EXPORT_SYMBOL sound/core/snd-pcm 0x5e7f4920 snd_pcm_format_set_silence +EXPORT_SYMBOL sound/core/snd-pcm 0x62a26134 snd_pcm_hw_param_last +EXPORT_SYMBOL sound/core/snd-pcm 0x650c3cae snd_dma_free_pages EXPORT_SYMBOL sound/core/snd-pcm 0x650f8603 snd_pcm_format_silence_64 -EXPORT_SYMBOL sound/core/snd-pcm 0x67e9cd0a snd_pcm_lib_preallocate_pages_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0x66a7f728 snd_pcm_hw_constraint_msbits 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 0x6c50a8fd __snd_pcm_lib_xfer +EXPORT_SYMBOL sound/core/snd-pcm 0x6ed5ca3e snd_sgbuf_get_chunk_size EXPORT_SYMBOL sound/core/snd-pcm 0x6ef8fcd8 snd_pcm_format_linear -EXPORT_SYMBOL sound/core/snd-pcm 0x7293d7fc snd_pcm_stop -EXPORT_SYMBOL sound/core/snd-pcm 0x753f7d4c snd_sgbuf_get_addr -EXPORT_SYMBOL sound/core/snd-pcm 0x827d9302 snd_pcm_lib_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0x73937829 snd_pcm_lib_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x73ed439d snd_pcm_lib_get_vmalloc_page +EXPORT_SYMBOL sound/core/snd-pcm 0x74e68999 snd_pcm_hw_param_first +EXPORT_SYMBOL sound/core/snd-pcm 0x7d6e9bf2 snd_pcm_new_internal EXPORT_SYMBOL sound/core/snd-pcm 0x834dc955 snd_pcm_format_size -EXPORT_SYMBOL sound/core/snd-pcm 0x9143bbcb snd_pcm_hw_rule_add -EXPORT_SYMBOL sound/core/snd-pcm 0x9347ca17 _snd_pcm_lib_alloc_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0x8cc56fb2 snd_pcm_hw_constraint_list +EXPORT_SYMBOL sound/core/snd-pcm 0x8e5991e1 snd_pcm_hw_rule_add EXPORT_SYMBOL sound/core/snd-pcm 0x94098ff8 snd_interval_list -EXPORT_SYMBOL sound/core/snd-pcm 0x98eec922 snd_pcm_hw_constraint_ratdens -EXPORT_SYMBOL sound/core/snd-pcm 0xa5b9e46c snd_pcm_hw_constraint_step +EXPORT_SYMBOL sound/core/snd-pcm 0x9545f753 snd_pcm_open_substream +EXPORT_SYMBOL sound/core/snd-pcm 0x967a4cb1 snd_pcm_hw_refine +EXPORT_SYMBOL sound/core/snd-pcm 0x99875a28 snd_pcm_set_ops EXPORT_SYMBOL sound/core/snd-pcm 0xa61aa028 snd_pcm_format_unsigned +EXPORT_SYMBOL sound/core/snd-pcm 0xa733f75e snd_dma_alloc_pages_fallback +EXPORT_SYMBOL sound/core/snd-pcm 0xa8d10c68 snd_pcm_mmap_data EXPORT_SYMBOL sound/core/snd-pcm 0xac437f7b snd_interval_ratnum -EXPORT_SYMBOL sound/core/snd-pcm 0xae19a678 snd_pcm_mmap_data -EXPORT_SYMBOL sound/core/snd-pcm 0xb36c76e7 snd_sgbuf_get_chunk_size -EXPORT_SYMBOL sound/core/snd-pcm 0xb45042c0 snd_pcm_period_elapsed_under_stream_lock +EXPORT_SYMBOL sound/core/snd-pcm 0xb3ae3ae9 snd_pcm_kernel_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0xb571ae4f snd_pcm_set_managed_buffer_all +EXPORT_SYMBOL sound/core/snd-pcm 0xb8fd142a __snd_pcm_lib_xfer EXPORT_SYMBOL sound/core/snd-pcm 0xb9638db4 snd_pcm_rate_to_rate_bit -EXPORT_SYMBOL sound/core/snd-pcm 0xb9a77b54 snd_pcm_hw_rule_noresample -EXPORT_SYMBOL sound/core/snd-pcm 0xc9fe205e snd_dma_free_pages -EXPORT_SYMBOL sound/core/snd-pcm 0xca237878 snd_pcm_new -EXPORT_SYMBOL sound/core/snd-pcm 0xcc8a5a02 snd_pcm_hw_constraint_pow2 -EXPORT_SYMBOL sound/core/snd-pcm 0xd81ea8f5 snd_pcm_lib_get_vmalloc_page -EXPORT_SYMBOL sound/core/snd-pcm 0xddd73706 snd_pcm_new_stream -EXPORT_SYMBOL sound/core/snd-pcm 0xe1ac7016 snd_sgbuf_get_page +EXPORT_SYMBOL sound/core/snd-pcm 0xbb5b5c72 snd_pcm_period_elapsed_under_stream_lock +EXPORT_SYMBOL sound/core/snd-pcm 0xbe3579cf snd_pcm_new_stream +EXPORT_SYMBOL sound/core/snd-pcm 0xc409156e _snd_pcm_lib_alloc_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0xcdcf1e0a snd_pcm_lib_free_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0xcf9b9574 snd_pcm_period_elapsed +EXPORT_SYMBOL sound/core/snd-pcm 0xd2c845ba snd_sgbuf_get_page +EXPORT_SYMBOL sound/core/snd-pcm 0xdd632b8e snd_pcm_stop +EXPORT_SYMBOL sound/core/snd-pcm 0xe36c06d6 snd_pcm_hw_constraint_mask64 EXPORT_SYMBOL sound/core/snd-pcm 0xe56a9336 snd_pcm_format_width -EXPORT_SYMBOL sound/core/snd-pcm 0xe8eeafe5 snd_pcm_hw_constraint_ranges -EXPORT_SYMBOL sound/core/snd-pcm 0xec1472ab snd_dma_buffer_mmap -EXPORT_SYMBOL sound/core/snd-pcm 0xef064761 snd_pcm_hw_constraint_integer -EXPORT_SYMBOL sound/core/snd-pcm 0xef51bc31 snd_pcm_open_substream -EXPORT_SYMBOL sound/core/snd-pcm 0xfce9fd66 snd_pcm_suspend_all +EXPORT_SYMBOL sound/core/snd-pcm 0xeb2d2778 snd_pcm_hw_constraint_integer +EXPORT_SYMBOL sound/core/snd-pcm 0xf4bb5f26 snd_sgbuf_get_addr +EXPORT_SYMBOL sound/core/snd-pcm 0xf4c34bd6 snd_pcm_hw_rule_noresample +EXPORT_SYMBOL sound/core/snd-pcm 0xf500187a snd_pcm_hw_constraint_ratnums +EXPORT_SYMBOL sound/core/snd-pcm 0xf6c210ea snd_pcm_hw_constraint_step +EXPORT_SYMBOL sound/core/snd-pcm 0xf96120ee snd_pcm_lib_preallocate_pages_for_all EXPORT_SYMBOL sound/core/snd-pcm 0xff6104d0 snd_pcm_rate_bit_to_rate -EXPORT_SYMBOL sound/core/snd-pcm 0xffb9b760 snd_pcm_new_internal -EXPORT_SYMBOL sound/core/snd-rawmidi 0x01e2d48f __snd_rawmidi_transmit_peek -EXPORT_SYMBOL sound/core/snd-rawmidi 0x02ba2f3d snd_rawmidi_transmit_ack -EXPORT_SYMBOL sound/core/snd-rawmidi 0x1a281069 snd_rawmidi_set_ops -EXPORT_SYMBOL sound/core/snd-rawmidi 0x27c28014 snd_rawmidi_drop_output -EXPORT_SYMBOL sound/core/snd-rawmidi 0x2c52c646 snd_rawmidi_drain_input -EXPORT_SYMBOL sound/core/snd-rawmidi 0x3a4ed719 snd_rawmidi_new -EXPORT_SYMBOL sound/core/snd-rawmidi 0x4fa8fdeb snd_rawmidi_proceed -EXPORT_SYMBOL sound/core/snd-rawmidi 0x684abdbc snd_rawmidi_input_params -EXPORT_SYMBOL sound/core/snd-rawmidi 0x74135ad8 snd_rawmidi_drain_output -EXPORT_SYMBOL sound/core/snd-rawmidi 0x774f978e snd_rawmidi_receive -EXPORT_SYMBOL sound/core/snd-rawmidi 0x83420876 __snd_rawmidi_transmit_ack -EXPORT_SYMBOL sound/core/snd-rawmidi 0x90c827bf snd_rawmidi_transmit_peek -EXPORT_SYMBOL sound/core/snd-rawmidi 0x91364fa1 snd_rawmidi_kernel_read -EXPORT_SYMBOL sound/core/snd-rawmidi 0x981afe31 snd_rawmidi_kernel_open -EXPORT_SYMBOL sound/core/snd-rawmidi 0x9b16c040 snd_rawmidi_output_params -EXPORT_SYMBOL sound/core/snd-rawmidi 0xc48c52a7 snd_rawmidi_kernel_write -EXPORT_SYMBOL sound/core/snd-rawmidi 0xd071cb87 snd_rawmidi_info_select -EXPORT_SYMBOL sound/core/snd-rawmidi 0xe0835274 snd_rawmidi_transmit_empty -EXPORT_SYMBOL sound/core/snd-rawmidi 0xe637d157 snd_rawmidi_transmit -EXPORT_SYMBOL sound/core/snd-rawmidi 0xeca656ea snd_rawmidi_kernel_release +EXPORT_SYMBOL sound/core/snd-pcm 0xfff82224 snd_dma_alloc_pages +EXPORT_SYMBOL sound/core/snd-rawmidi 0x1d86f6aa snd_rawmidi_drain_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0x2a09e4fb snd_rawmidi_kernel_release +EXPORT_SYMBOL sound/core/snd-rawmidi 0x3532f538 __snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0x3c6c1f19 snd_rawmidi_kernel_read +EXPORT_SYMBOL sound/core/snd-rawmidi 0x5043fb57 snd_rawmidi_kernel_open +EXPORT_SYMBOL sound/core/snd-rawmidi 0x7753cc33 snd_rawmidi_receive +EXPORT_SYMBOL sound/core/snd-rawmidi 0x80da8ab9 snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0x83ade1ae snd_rawmidi_set_ops +EXPORT_SYMBOL sound/core/snd-rawmidi 0x92fa9c3e snd_rawmidi_transmit_empty +EXPORT_SYMBOL sound/core/snd-rawmidi 0x9ce905d6 __snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0xa3ff7b47 snd_rawmidi_drain_input +EXPORT_SYMBOL sound/core/snd-rawmidi 0xa5b03959 snd_rawmidi_input_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0xbb9914d7 snd_rawmidi_kernel_write +EXPORT_SYMBOL sound/core/snd-rawmidi 0xc0292e96 snd_rawmidi_proceed +EXPORT_SYMBOL sound/core/snd-rawmidi 0xc8b3cab9 snd_rawmidi_drop_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0xd233a7a3 snd_rawmidi_info_select +EXPORT_SYMBOL sound/core/snd-rawmidi 0xd8e2ec68 snd_rawmidi_output_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0xededdb19 snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0xf6de0f9a snd_rawmidi_new +EXPORT_SYMBOL sound/core/snd-rawmidi 0xf76ea001 snd_rawmidi_transmit EXPORT_SYMBOL sound/core/snd-seq-device 0x091def1c snd_seq_autoload_exit -EXPORT_SYMBOL sound/core/snd-seq-device 0x0da419c3 snd_seq_device_new EXPORT_SYMBOL sound/core/snd-seq-device 0x370a0736 snd_seq_autoload_init EXPORT_SYMBOL sound/core/snd-seq-device 0x6339b6d0 snd_seq_device_load_drivers -EXPORT_SYMBOL sound/core/snd-timer 0x02a5395d snd_timer_instance_new -EXPORT_SYMBOL sound/core/snd-timer 0x05de35c9 snd_timer_interrupt -EXPORT_SYMBOL sound/core/snd-timer 0x0a0a968d snd_timer_open -EXPORT_SYMBOL sound/core/snd-timer 0x233994b5 snd_timer_global_register -EXPORT_SYMBOL sound/core/snd-timer 0x3f220787 snd_timer_resolution -EXPORT_SYMBOL sound/core/snd-timer 0x4b997d68 snd_timer_new -EXPORT_SYMBOL sound/core/snd-timer 0x4f97aa4a snd_timer_close -EXPORT_SYMBOL sound/core/snd-timer 0x5279b0c7 snd_timer_pause -EXPORT_SYMBOL sound/core/snd-timer 0x5cdaec88 snd_timer_stop -EXPORT_SYMBOL sound/core/snd-timer 0x8da5e38c snd_timer_continue -EXPORT_SYMBOL sound/core/snd-timer 0xac9e6bb9 snd_timer_start -EXPORT_SYMBOL sound/core/snd-timer 0xb4188bae snd_timer_instance_free -EXPORT_SYMBOL sound/core/snd-timer 0xd9df4787 snd_timer_global_new -EXPORT_SYMBOL sound/core/snd-timer 0xea859b39 snd_timer_notify -EXPORT_SYMBOL sound/core/snd-timer 0xf7078d1a snd_timer_global_free -EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x61def301 snd_mpu401_uart_new +EXPORT_SYMBOL sound/core/snd-seq-device 0x7f9c3e18 snd_seq_device_new +EXPORT_SYMBOL sound/core/snd-timer 0x0506386c snd_timer_instance_new +EXPORT_SYMBOL sound/core/snd-timer 0x3622d380 snd_timer_close +EXPORT_SYMBOL sound/core/snd-timer 0x48398fb3 snd_timer_pause +EXPORT_SYMBOL sound/core/snd-timer 0x4fcd568e snd_timer_interrupt +EXPORT_SYMBOL sound/core/snd-timer 0x566ed0da snd_timer_stop +EXPORT_SYMBOL sound/core/snd-timer 0x5cc4aeb4 snd_timer_notify +EXPORT_SYMBOL sound/core/snd-timer 0x657c74fc snd_timer_new +EXPORT_SYMBOL sound/core/snd-timer 0x6fec31f2 snd_timer_instance_free +EXPORT_SYMBOL sound/core/snd-timer 0x8b10bd39 snd_timer_global_free +EXPORT_SYMBOL sound/core/snd-timer 0x8d720803 snd_timer_resolution +EXPORT_SYMBOL sound/core/snd-timer 0x91468f2e snd_timer_global_new +EXPORT_SYMBOL sound/core/snd-timer 0xa55e3051 snd_timer_open +EXPORT_SYMBOL sound/core/snd-timer 0xa90d65c4 snd_timer_global_register +EXPORT_SYMBOL sound/core/snd-timer 0xb61deffe snd_timer_continue +EXPORT_SYMBOL sound/core/snd-timer 0xdbd225c5 snd_timer_start EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x6d629c59 snd_mpu401_uart_interrupt_tx +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0xa10b0555 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 0x548a761c snd_opl3_find_patch -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x5f482997 snd_opl3_reset -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x69508df0 snd_opl3_init -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x79e904e3 snd_opl3_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x9d1b49a3 snd_opl3_load_patch -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xb0fa237b snd_opl3_create -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xc8788d24 snd_opl3_hwdep_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xf7143110 snd_opl3_timer_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xfa764a8e snd_opl3_interrupt -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x02eae80f snd_vx_check_reg_bit -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x138b7993 snd_vx_create +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x052abe3c snd_opl3_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x09b73b23 snd_opl3_create +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x09c9c4ea snd_opl3_load_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x38ca2f27 snd_opl3_interrupt +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x4bcfc55f snd_opl3_timer_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x58943d0a snd_opl3_find_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xba8b7769 snd_opl3_reset +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xe9662bb8 snd_opl3_init +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xf2d44ecf snd_opl3_hwdep_new +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x18010091 snd_vx_create EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x226138b0 snd_vx_threaded_irq_handler -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x287944cb snd_vx_load_boot_image -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x394b8e72 snd_vx_resume -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x3cc0c199 snd_vx_dsp_load -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x4fa912e5 snd_vx_suspend -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x929eb84c snd_vx_setup_firmware -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xbca7e141 snd_vx_dsp_boot +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x27aa92a8 snd_vx_resume +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x30413046 snd_vx_free_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x82be2715 snd_vx_suspend +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x96a57b9f snd_vx_setup_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x99d25cc7 snd_vx_dsp_load +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xbdf42bf9 snd_vx_check_reg_bit +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xc00e2b86 snd_vx_dsp_boot +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xedb15252 snd_vx_load_boot_image EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf1f04d23 snd_vx_irq_handler -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf7e49b80 snd_vx_free_firmware -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x0604e595 iso_packets_buffer_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x0a7a318a amdtp_stream_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x0d07d2cb cmp_connection_reserve -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x14fb8899 avc_general_get_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x16fd698f fcp_bus_reset EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x20254e45 amdtp_syt_intervals -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x243e50bd amdtp_stream_set_parameters -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x275cca8a amdtp_stream_update -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3335eb72 cmp_connection_release -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x4ba817fe fw_iso_resources_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x4df5c364 iso_packets_buffer_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x52376908 amdtp_stream_pcm_abort +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x287b523d fw_iso_resources_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x34032bfd snd_fw_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3c8f9f69 amdtp_stream_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x46a6d1ce amdtp_stream_set_parameters +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x48645f6d cmp_connection_break EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x53ca18e8 amdtp_rate_table -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x55fabeb6 cmp_connection_break -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x60c06c02 cmp_connection_establish -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x61cf59b2 fw_iso_resources_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x672f0d6e avc_general_set_sig_fmt -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x6c72baae cmp_connection_update -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x761b75e8 amdtp_stream_add_pcm_hw_constraints -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x76efdb69 snd_fw_transaction -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x94a00c14 amdtp_stream_pcm_prepare -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa48ade4d amdtp_stream_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb2b5c54a amdtp_stream_get_max_payload -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xbf5824c0 cmp_connection_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc5c0c70a cmp_connection_check_used -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd91672b0 fcp_avc_transaction -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xdc084286 fw_iso_resources_allocate -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xde0338d4 fw_iso_resources_free -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe5dcfecb cmp_connection_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe7c658c4 fcp_bus_reset -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xee3ebdac fw_iso_resources_update -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xf6d458a1 avc_general_get_plug_info -EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x87f8baa3 snd_ak4113_resume -EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0xd96c881a snd_ak4113_suspend -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x07960835 snd_ak4114_resume -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x1f92c722 snd_ak4114_suspend -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x20168d9d snd_ak4114_reg_write -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x3eaac2d4 snd_ak4114_build -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x5ee83fc7 snd_ak4114_reinit -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x8dbb3b79 snd_ak4114_create -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xc0ce86de snd_ak4114_external_rate -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xea400082 snd_ak4114_check_rate_and_errors -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x2927da53 snd_akm4xxx_build_controls -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x636008ca snd_akm4xxx_reset -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x65cdb5d3 snd_akm4xxx_init -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xcb084990 snd_akm4xxx_write -EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x0cd201b8 snd_pt2258_reset -EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x2656d851 snd_pt2258_build_controls -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x424de2c4 snd_cs8427_iec958_pcm -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x74eba2ab snd_cs8427_reg_write -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x86696db2 snd_cs8427_iec958_active -EXPORT_SYMBOL sound/i2c/snd-cs8427 0xb635bcb9 snd_cs8427_iec958_build -EXPORT_SYMBOL sound/i2c/snd-cs8427 0xb8437912 snd_cs8427_init -EXPORT_SYMBOL sound/i2c/snd-cs8427 0xdac4b341 snd_cs8427_create -EXPORT_SYMBOL sound/i2c/snd-i2c 0x175c6269 snd_i2c_probeaddr -EXPORT_SYMBOL sound/i2c/snd-i2c 0x33b143b1 snd_i2c_readbytes -EXPORT_SYMBOL sound/i2c/snd-i2c 0x4f18aa48 snd_i2c_device_free -EXPORT_SYMBOL sound/i2c/snd-i2c 0x923d4d95 snd_i2c_device_create -EXPORT_SYMBOL sound/i2c/snd-i2c 0xcd00943a snd_i2c_sendbytes -EXPORT_SYMBOL sound/i2c/snd-i2c 0xef580d5b snd_i2c_bus_create -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x03f07f1c snd_ac97_update -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x26827067 snd_ac97_suspend -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x2e4378a5 snd_ac97_write -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x398a490e snd_ac97_write_cache -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x4897559c snd_ac97_pcm_double_rate_rules -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x6918198e snd_ac97_pcm_close -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x713f3033 snd_ac97_pcm_assign -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x93d29581 snd_ac97_tune_hardware -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xa333f5ec snd_ac97_update_bits -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xa5866998 snd_ac97_pcm_open -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xc3512514 snd_ac97_read -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xc8aa8bb8 snd_ac97_get_short_name -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xe218027f snd_ac97_resume -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xee47cad2 snd_ac97_mixer -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xf468e8d3 snd_ac97_bus -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xf57e0d08 snd_ac97_set_rate -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xfc14e1fe snd_ac97_update_power -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x34fc3a7e snd_emu10k1_synth_copy_from_user -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x444913fb snd_emu10k1_memblk_map -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x45469a88 snd_emu10k1_synth_bzero -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x47009dee snd_emu10k1_synth_alloc -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xce0f6447 snd_emu10k1_ptr_write -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xdee0c8cd snd_emu10k1_ptr_read -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xf67cc7a2 snd_emu10k1_synth_free -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xfcc79187 snd_emu10k1_voice_free -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xfd203376 snd_emu10k1_voice_alloc -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x521bc7f4 snd_ice1712_akm4xxx_free -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x8f644be9 snd_ice1712_akm4xxx_init -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xddccf5cf snd_ice1712_akm4xxx_build_controls -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x0b258fca oxygen_read32 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x17b720e0 oxygen_write16_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x1b705e5b oxygen_pci_probe -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x34104fd7 oxygen_write_uart -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x51500177 oxygen_write16 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x564ce430 oxygen_pci_pm -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x585849a2 oxygen_write32_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x677cfb85 oxygen_write_i2c -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x6ad325ab oxygen_write_spi -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x6b6d1c58 oxygen_read16 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x6e905cf6 oxygen_write8 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x778f3c60 oxygen_write32 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x8583510a oxygen_read_ac97 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x8df890fb oxygen_read8 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x9640624a oxygen_pci_shutdown -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xb7c599d2 oxygen_write_ac97 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xb994f235 oxygen_write_ac97_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xd13eab24 oxygen_write8_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xde63209b oxygen_reset_uart -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xe0979b5d oxygen_update_dac_routing -EXPORT_SYMBOL sound/pci/trident/snd-trident 0x48b707fb snd_trident_stop_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0x504f6fc2 snd_trident_write_voice_regs -EXPORT_SYMBOL sound/pci/trident/snd-trident 0x6170bebc snd_trident_alloc_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0xbce8b456 snd_trident_start_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0xf51f0223 snd_trident_free_voice +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x56dcf2e2 amdtp_stream_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x597daa64 cmp_connection_release +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x68f0ce9b fcp_avc_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x6f9e9c35 fw_iso_resources_allocate +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x8b7183aa cmp_connection_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x97b6c9c4 fw_iso_resources_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa70395cd avc_general_get_plug_info +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xae85d42c amdtp_stream_get_max_payload +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xafd65675 fw_iso_resources_free +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xaffca17d amdtp_stream_pcm_abort +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb38879e1 cmp_connection_check_used +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xbf883855 fw_iso_resources_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc4306a3d avc_general_set_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc5a604b2 iso_packets_buffer_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc804e2f3 cmp_connection_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd235f76f cmp_connection_reserve +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xdee188cb amdtp_stream_pcm_prepare +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe28664fd amdtp_stream_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe7b23720 cmp_connection_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xed332305 avc_general_get_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xefcc214e cmp_connection_establish +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xf3f26bd1 amdtp_stream_add_pcm_hw_constraints +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xf7a5208d iso_packets_buffer_destroy +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0xf4e09bd9 snd_ak4113_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0xf91a5e83 snd_ak4113_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x06e42ca4 snd_ak4114_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x154b0368 snd_ak4114_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x29a8894a snd_ak4114_check_rate_and_errors +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x91e01d69 snd_ak4114_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x93c61292 snd_ak4114_build +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x993fccd0 snd_ak4114_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xeac13091 snd_ak4114_reinit +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xf26d2f54 snd_ak4114_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x55a2c97c snd_akm4xxx_init +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x97b0a6fa snd_akm4xxx_build_controls +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xd173c202 snd_akm4xxx_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xe800237b snd_akm4xxx_reset +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0xdaa5ec4d snd_pt2258_build_controls +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0xf2451b66 snd_pt2258_reset +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x17313104 snd_cs8427_create +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x1cd768ae snd_cs8427_reg_write +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x3370f5db snd_cs8427_iec958_build +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x3c279ab5 snd_cs8427_iec958_active +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xbc16c19f snd_cs8427_init +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xbd3526ef snd_cs8427_iec958_pcm +EXPORT_SYMBOL sound/i2c/snd-i2c 0x1f99fb40 snd_i2c_probeaddr +EXPORT_SYMBOL sound/i2c/snd-i2c 0x231bee10 snd_i2c_readbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0x554a623d snd_i2c_device_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0xa5a80dcb snd_i2c_device_free +EXPORT_SYMBOL sound/i2c/snd-i2c 0xaa802a33 snd_i2c_bus_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0xed2f3cbf snd_i2c_sendbytes +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x03929d54 snd_ac97_read +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x19bc9e61 snd_ac97_suspend +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x1d00972d snd_ac97_resume +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x22d034f9 snd_ac97_pcm_double_rate_rules +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x25d31e62 snd_ac97_write_cache +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x2bafe55f snd_ac97_update +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x2c68e1c5 snd_ac97_write +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x3baeb96f snd_ac97_update_power +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x4cfa95d0 snd_ac97_pcm_assign +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x5a97a406 snd_ac97_tune_hardware +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x631ffdcc snd_ac97_mixer +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x77670b1e snd_ac97_pcm_open +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xad758690 snd_ac97_get_short_name +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xce66a9ab snd_ac97_pcm_close +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xdab2548a snd_ac97_bus +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xe698a987 snd_ac97_update_bits +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xf516362d snd_ac97_set_rate +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x1b3c6e74 snd_emu10k1_ptr_read +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x209c63cb snd_emu10k1_voice_alloc +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x2b817dd7 snd_emu10k1_synth_copy_from_user +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x44aae6a6 snd_emu10k1_voice_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x45024207 snd_emu10k1_synth_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x557fab55 snd_emu10k1_memblk_map +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x76a07e80 snd_emu10k1_synth_alloc +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xbd73fef0 snd_emu10k1_ptr_write +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xe3d3762f snd_emu10k1_synth_bzero +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x264dc98d snd_ice1712_akm4xxx_init +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x2b378d97 snd_ice1712_akm4xxx_free +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x9740049f snd_ice1712_akm4xxx_build_controls +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x04311fd5 oxygen_write_ac97_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x0ef09a08 oxygen_read16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x28a3fa34 oxygen_pci_shutdown +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x3c53d8a2 oxygen_read_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x42e66dd0 oxygen_write_spi +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x6288d2aa oxygen_write32_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x70a72437 oxygen_pci_probe +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x790f8cd0 oxygen_write16_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x910dd0c3 oxygen_write_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xa75d7b96 oxygen_pci_pm +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xb09427a3 oxygen_write_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xb5bc738e oxygen_write_i2c +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xbef07d7b oxygen_read32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xc737c633 oxygen_write16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xd80fedad oxygen_update_dac_routing +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xd8927e60 oxygen_write8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xe29b912d oxygen_write8_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xf34658e9 oxygen_reset_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xfa164140 oxygen_write32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xfb3331dc oxygen_read8 +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x22fa6cbd snd_trident_alloc_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x396e3eaf snd_trident_write_voice_regs +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x4474145b snd_trident_stop_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x4ac7fe59 snd_trident_start_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xfed2c8ee snd_trident_free_voice EXPORT_SYMBOL sound/soc/amd/acp_audio_dma 0xea74f232 bt_uart_enable -EXPORT_SYMBOL sound/soc/codecs/snd-soc-adau1372 0xac6c52e0 adau1372_probe -EXPORT_SYMBOL sound/soc/codecs/snd-soc-lpass-wsa-macro 0x18a4374e wsa_macro_set_spkr_mode -EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0x04585964 pcm3060_regmap -EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0x736eefe4 pcm3060_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-adau1372 0x41f4e4fc adau1372_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-lpass-wsa-macro 0xe0812965 wsa_macro_set_spkr_mode +EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0x2eb3cc8c pcm3060_regmap +EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0x7d879b1d pcm3060_probe EXPORT_SYMBOL sound/soc/codecs/snd-soc-rt715 0xed2acb24 hda_to_sdw -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x9358d3d1 tlv320aic23_probe -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0xe6f29e7d tlv320aic23_regmap -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0xf4ef78d2 aic32x4_remove -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0xf754a203 aic32x4_probe -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0xfc1aedad aic32x4_regmap_config -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic3x 0x6b9cdc14 aic3x_probe -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic3x 0xfcedefdb aic3x_remove +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x575b76fb tlv320aic23_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x68d06e40 tlv320aic23_regmap +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x652482b0 aic32x4_regmap_config +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x7d3b9aed aic32x4_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0xba5b5c29 aic32x4_remove +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic3x 0x2f348ba8 aic3x_remove +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic3x 0x30938af5 aic3x_probe EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x3a195ca9 wcd_mbhc_get_impedance -EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x456661f8 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 0x78d4e3a1 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 0xc49bd27f wcd_dt_parse_mbhc_data +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0xa800fc10 wcd_dt_parse_mbhc_data +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0xb297c2d7 wcd_mbhc_start EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0xd094df47 wcd_mbhc_deinit +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0xdc8d6451 wcd_mbhc_init EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0xe2beca26 wcd_mbhc_stop -EXPORT_SYMBOL sound/soc/mediatek/mt8192/snd-soc-mt8192-afe 0x074d2cc9 mt8192_afe_gpio_init -EXPORT_SYMBOL sound/soc/mediatek/mt8192/snd-soc-mt8192-afe 0x93dc0b1e mt8192_afe_gpio_request -EXPORT_SYMBOL sound/soc/qcom/qdsp6/q6afe 0x51c90f08 q6afe_unvote_lpass_core_hw -EXPORT_SYMBOL sound/soc/qcom/qdsp6/q6afe 0x6b0efe09 q6afe_vote_lpass_core_hw -EXPORT_SYMBOL sound/soc/qcom/snd-soc-qcom-common 0xd8ee0016 qcom_snd_parse_of -EXPORT_SYMBOL sound/soc/snd-soc-core 0xc5c22030 snd_soc_alloc_ac97_component -EXPORT_SYMBOL sound/soc/sof/imx/imx-common 0xeff3ae6f imx8_dump -EXPORT_SYMBOL sound/soc/sof/imx/snd-sof-imx8 0x0d042eb8 sof_imx8x_ops -EXPORT_SYMBOL sound/soc/sof/imx/snd-sof-imx8 0x2bd14af9 sof_imx8_ops -EXPORT_SYMBOL sound/soc/sof/imx/snd-sof-imx8m 0xddcbd2e9 sof_imx8m_ops -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x0bb4cd0d snd_sof_init_trace +EXPORT_SYMBOL sound/soc/mediatek/mt8192/snd-soc-mt8192-afe 0x06450065 mt8192_afe_gpio_request +EXPORT_SYMBOL sound/soc/mediatek/mt8192/snd-soc-mt8192-afe 0xc5a6b3a1 mt8192_afe_gpio_init +EXPORT_SYMBOL sound/soc/qcom/qdsp6/q6afe 0x47f24660 q6afe_vote_lpass_core_hw +EXPORT_SYMBOL sound/soc/qcom/qdsp6/q6afe 0xf1ae54a1 q6afe_unvote_lpass_core_hw +EXPORT_SYMBOL sound/soc/qcom/snd-soc-qcom-common 0x46ee1a8c qcom_snd_parse_of +EXPORT_SYMBOL sound/soc/snd-soc-core 0xfdb88b5f snd_soc_alloc_ac97_component +EXPORT_SYMBOL sound/soc/sof/imx/imx-common 0x8e2edccc imx8_dump +EXPORT_SYMBOL sound/soc/sof/imx/snd-sof-imx8 0x2453a62d sof_imx8_ops +EXPORT_SYMBOL sound/soc/sof/imx/snd-sof-imx8 0x8cb5ba99 sof_imx8x_ops +EXPORT_SYMBOL sound/soc/sof/imx/snd-sof-imx8m 0x5bf873d7 sof_imx8m_ops +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x083502dd snd_sof_dsp_mailbox_init +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x0b65b495 snd_sof_load_topology +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x0d789d56 sof_fw_ready +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x102a6937 sof_dai_get_bclk +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x13c145c2 sof_machine_register +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x1561a137 sof_io_write64 +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x18c7104c snd_sof_dsp_update_bits64_unlocked EXPORT_SYMBOL sound/soc/sof/snd-sof 0x1d22a5ea sof_ipc_tx_message_no_pm -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x241882e8 sof_fw_ready -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x27e8aa1a snd_sof_run_firmware -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x2d2c8283 snd_sof_dsp_panic -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x2db4a637 sof_mailbox_read -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x2ec74e91 snd_sof_device_remove -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x311ef76c snd_sof_fw_unload -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x36a85cb2 snd_sof_free_trace -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x3ec25258 snd_sof_dsp_update_bits_forced -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x406a430b snd_sof_release_trace -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x469dcdc8 snd_sof_resume -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x4cae153c snd_sof_suspend -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x5156ba98 snd_sof_ipc_reply -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x5257038f snd_sof_complete -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x66342683 sof_block_read -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x6a25f803 snd_sof_ipc_free -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x6c9957b6 snd_sof_device_shutdown -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x6e5262ed snd_sof_trace_notify_for_error -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x6f1c3425 snd_sof_get_status -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x78253ecc snd_sof_pci_update_bits -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x7a6fd952 sof_machine_unregister -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x7b110a36 snd_sof_dsp_update_bits_unlocked -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x80f452c4 snd_sof_load_firmware_memcpy -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x82786e39 snd_sof_runtime_suspend -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x88c38554 snd_sof_ipc_set_get_comp_data -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x8aaeaf98 snd_sof_dsp_update_bits -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x8b24b1da sof_dai_get_mclk -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x90462a84 snd_sof_ipc_valid -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x905e22de snd_sof_pcm_period_elapsed -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x909139ee snd_sof_runtime_idle -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x9bb9c2c7 snd_sof_dsp_update_bits64_unlocked -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa0d9f51a snd_sof_load_firmware_raw -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa2e87656 sof_machine_check -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa4843694 sof_mailbox_write -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa7f7dbfd snd_sof_fw_parse_ext_data -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xad4222cc snd_sof_create_page_table -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xad431334 sof_io_read -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xaf45ce40 snd_sof_load_firmware -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb552baa8 sof_machine_register -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xbbbf8af8 snd_sof_dsp_update_bits64 -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xbbdf9fab sof_dai_get_bclk -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xbfa11473 snd_sof_ipc_init -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc12d9ff8 snd_sof_handle_fw_exception -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc94dbc04 snd_sof_device_probe -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc9742f82 snd_sof_load_topology -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc9cd4ba7 snd_sof_dsp_mailbox_init +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x21591a14 snd_sof_ipc_msgs_rx +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x242afe6d snd_sof_release_trace +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x25d2b67d snd_sof_ipc_reply +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x28aa8fed snd_sof_load_firmware +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x2bd0dec6 sof_io_read64 +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x2c7c83b3 snd_sof_free_trace +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x30cc83ec snd_sof_trace_notify_for_error +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x32350f31 sof_io_write +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x37650694 snd_sof_device_remove +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x3dc8267a snd_sof_get_status +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x4027a1be snd_sof_device_probe +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x43adc081 snd_sof_complete +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x46844957 snd_sof_handle_fw_exception +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x5002153e snd_sof_dsp_update_bits64 +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x51263626 snd_sof_fw_parse_ext_data +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x562fb047 sof_machine_unregister +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x57a90aec snd_sof_load_firmware_raw +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x5d230827 snd_sof_device_probe_completed +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x5e827fc4 snd_sof_ipc_stream_posn +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x5fcfc5cb snd_sof_dsp_update_bits +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x6a4ba0e3 snd_sof_pci_update_bits +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x6a782286 snd_sof_init_trace +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x6bedd135 snd_sof_fw_unload +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x719c98ed snd_sof_runtime_idle +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x725d66ba snd_sof_suspend +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x7888adf6 snd_sof_ipc_free +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x7f8d8b14 sof_block_write +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x7fb05875 sof_io_read +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x86f69032 sof_mailbox_write +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x8b5c1d85 snd_sof_dsp_only_d0i3_compatible_stream_active +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x8bb481df sof_machine_check +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x953dc400 snd_sof_resume +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x9df5ca0e snd_sof_dsp_update_bits_unlocked +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa48e0f00 sof_pcm_dai_link_fixup +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa8769d27 sof_mailbox_read +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa8f10e77 snd_sof_create_page_table +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xab4f2f5b snd_sof_prepare +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xac177c9d snd_sof_pcm_period_elapsed +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xacd87c02 snd_sof_dsp_panic +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xaf98b3c9 snd_sof_device_shutdown +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb15fbf55 snd_sof_ipc_valid +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb2f9729c snd_sof_parse_module_memcpy +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb4cb72f0 snd_sof_load_firmware_memcpy +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb7c6d19b sof_dai_get_mclk +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xcd838d1c snd_sof_ipc_init EXPORT_SYMBOL sound/soc/sof/snd-sof 0xcfdc5f98 sof_ipc_tx_message -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd134b062 sof_io_read64 -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd64bc389 sof_pcm_dai_link_fixup -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd80e0895 snd_sof_device_probe_completed -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd8311e45 snd_sof_ipc_stream_posn -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd953e711 snd_sof_parse_module_memcpy -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xdc098636 sof_block_write -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xdfbc6d5c snd_sof_prepare -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf10257bf snd_sof_runtime_resume -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf365d083 sof_io_write64 -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf65fe1d3 sof_io_write -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf6f952fa snd_sof_dsp_only_d0i3_compatible_stream_active -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf9759478 snd_sof_ipc_msgs_rx -EXPORT_SYMBOL sound/soundcore 0x680182fa sound_class +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd1a7a7d3 snd_sof_runtime_suspend +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd3fcd962 snd_sof_runtime_resume +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd52a4ddd snd_sof_dsp_update_bits_forced +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd704d2fa sof_block_read +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd8cc369d snd_sof_run_firmware +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf725b259 snd_sof_ipc_set_get_comp_data +EXPORT_SYMBOL sound/soundcore 0x04add908 register_sound_mixer +EXPORT_SYMBOL sound/soundcore 0x31641636 sound_class +EXPORT_SYMBOL sound/soundcore 0x61e3186c register_sound_dsp EXPORT_SYMBOL sound/soundcore 0x7afc9d8a unregister_sound_mixer EXPORT_SYMBOL sound/soundcore 0x99c95fa5 unregister_sound_special -EXPORT_SYMBOL sound/soundcore 0x9a88027f register_sound_mixer -EXPORT_SYMBOL sound/soundcore 0xc296209c register_sound_special -EXPORT_SYMBOL sound/soundcore 0xc65695d6 register_sound_dsp +EXPORT_SYMBOL sound/soundcore 0xade8cf11 register_sound_special +EXPORT_SYMBOL sound/soundcore 0xb955ecb8 register_sound_special_device EXPORT_SYMBOL sound/soundcore 0xcd083b10 unregister_sound_dsp -EXPORT_SYMBOL sound/soundcore 0xe383fa99 register_sound_special_device -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x27d03889 snd_emux_lock_voice -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x41f25db1 snd_emux_unlock_voice EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x655cb202 snd_sf_linear_to_log -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x66ef8ac0 snd_emux_free -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xac79cbec snd_emux_new -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xd3b26d86 snd_emux_register -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xe965ce1b snd_emux_terminate_all +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x6b542483 snd_emux_terminate_all +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x81eb55a6 snd_emux_lock_voice +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x891ab4d0 snd_emux_register +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xc10a2574 snd_emux_new +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xe712f4c1 snd_emux_unlock_voice +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xf00f050d snd_emux_free EXPORT_SYMBOL sound/synth/snd-util-mem 0x0eda33fa snd_util_memhdr_new EXPORT_SYMBOL sound/synth/snd-util-mem 0x2a48197f snd_util_mem_alloc EXPORT_SYMBOL sound/synth/snd-util-mem 0x6517719f __snd_util_mem_free @@ -6177,5519 +6181,5523 @@ EXPORT_SYMBOL sound/synth/snd-util-mem 0x9adc8c44 __snd_util_memblk_new 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 0x00e3c259 __snd_usbmidi_create EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x16756dc0 snd_usbmidi_input_start EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x63343b1d snd_usbmidi_input_stop -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xab03021a __snd_usbmidi_create EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xb2af19e1 snd_usbmidi_resume EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xbed43a41 snd_usbmidi_suspend EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xd9d2bb03 snd_usbmidi_disconnect -EXPORT_SYMBOL vmlinux 0x0000243f __dev_get_by_index -EXPORT_SYMBOL vmlinux 0x000c8936 simple_pin_fs +EXPORT_SYMBOL vmlinux 0x0012538e unpin_user_page_range_dirty_lock EXPORT_SYMBOL vmlinux 0x00148653 vsnprintf -EXPORT_SYMBOL vmlinux 0x001b02c0 sock_register -EXPORT_SYMBOL vmlinux 0x006d1ce3 flow_rule_match_enc_keyid -EXPORT_SYMBOL vmlinux 0x00828c9f blk_rq_count_integrity_sg -EXPORT_SYMBOL vmlinux 0x0084b8bf twl6040_get_pll +EXPORT_SYMBOL vmlinux 0x0037d7c6 rt6_lookup +EXPORT_SYMBOL vmlinux 0x0038a23f rproc_mem_entry_init +EXPORT_SYMBOL vmlinux 0x003adb00 iov_iter_zero +EXPORT_SYMBOL vmlinux 0x004d9be4 vme_bus_error_handler +EXPORT_SYMBOL vmlinux 0x00619b39 cdrom_get_media_event +EXPORT_SYMBOL vmlinux 0x0071467b genphy_read_mmd_unsupported EXPORT_SYMBOL vmlinux 0x00928200 trace_print_hex_dump_seq -EXPORT_SYMBOL vmlinux 0x0095be50 generic_shutdown_super -EXPORT_SYMBOL vmlinux 0x0098ea34 dma_unmap_sg_attrs -EXPORT_SYMBOL vmlinux 0x00a1343e sock_gettstamp -EXPORT_SYMBOL vmlinux 0x00b3b17e max8998_bulk_read +EXPORT_SYMBOL vmlinux 0x00af2ddf rproc_report_crash EXPORT_SYMBOL vmlinux 0x00b4e615 posix_acl_equiv_mode +EXPORT_SYMBOL vmlinux 0x00cf59ea nd_btt_arena_is_valid +EXPORT_SYMBOL vmlinux 0x00cfd07f logfc EXPORT_SYMBOL vmlinux 0x00d7e722 vme_lm_count -EXPORT_SYMBOL vmlinux 0x00f0e263 file_ns_capable +EXPORT_SYMBOL vmlinux 0x00df910e ether_setup EXPORT_SYMBOL vmlinux 0x01000e51 schedule -EXPORT_SYMBOL vmlinux 0x0105cd0a pcie_get_speed_cap -EXPORT_SYMBOL vmlinux 0x010da6e8 page_pool_create -EXPORT_SYMBOL vmlinux 0x01121ad7 dma_async_device_unregister -EXPORT_SYMBOL vmlinux 0x01183606 mark_buffer_dirty_inode EXPORT_SYMBOL vmlinux 0x011bab86 prepare_creds +EXPORT_SYMBOL vmlinux 0x0125b279 pagecache_write_begin EXPORT_SYMBOL vmlinux 0x0129c4f8 par_io_data_set EXPORT_SYMBOL vmlinux 0x012de2ea xudma_rchanrt_read +EXPORT_SYMBOL vmlinux 0x013eeebe devm_clk_hw_register_clkdev EXPORT_SYMBOL vmlinux 0x013f26ae dma_fence_get_stub -EXPORT_SYMBOL vmlinux 0x014754ed devm_request_any_context_irq EXPORT_SYMBOL vmlinux 0x0147812c kblockd_mod_delayed_work_on EXPORT_SYMBOL vmlinux 0x01505d85 imx_scu_call_rpc EXPORT_SYMBOL vmlinux 0x015af7f4 system_state -EXPORT_SYMBOL vmlinux 0x01621be1 tty_port_free_xmit_buf -EXPORT_SYMBOL vmlinux 0x01713c76 phy_driver_register +EXPORT_SYMBOL vmlinux 0x015c6f57 xfrm_lookup +EXPORT_SYMBOL vmlinux 0x015cb0c0 input_mt_init_slots +EXPORT_SYMBOL vmlinux 0x016a04cc nd_device_register +EXPORT_SYMBOL vmlinux 0x016f176c lock_page_memcg +EXPORT_SYMBOL vmlinux 0x017271ab register_key_type EXPORT_SYMBOL vmlinux 0x01757935 rdmacg_register_device -EXPORT_SYMBOL vmlinux 0x017cc23e dev_mc_del_global EXPORT_SYMBOL vmlinux 0x017de3d5 nr_cpu_ids +EXPORT_SYMBOL vmlinux 0x01804fc9 dma_alloc_attrs +EXPORT_SYMBOL vmlinux 0x0180c007 jbd2_journal_unlock_updates +EXPORT_SYMBOL vmlinux 0x01849a8b netif_device_detach EXPORT_SYMBOL vmlinux 0x018574a1 mb_cache_entry_delete EXPORT_SYMBOL vmlinux 0x0188cd88 vme_alloc_consistent EXPORT_SYMBOL vmlinux 0x0199c3bd ethtool_intersect_link_masks -EXPORT_SYMBOL vmlinux 0x01ab2be6 get_task_cred -EXPORT_SYMBOL vmlinux 0x01b6453a framebuffer_alloc EXPORT_SYMBOL vmlinux 0x01b6865c xa_get_mark +EXPORT_SYMBOL vmlinux 0x01bf4e77 phy_mac_interrupt EXPORT_SYMBOL vmlinux 0x01bf55fc paddr_vmcoreinfo_note -EXPORT_SYMBOL vmlinux 0x01c789e1 get_user_pages -EXPORT_SYMBOL vmlinux 0x01cac37d nf_ip_checksum -EXPORT_SYMBOL vmlinux 0x01eef140 inet_getname -EXPORT_SYMBOL vmlinux 0x0203b3fb mdio_driver_register -EXPORT_SYMBOL vmlinux 0x020c39c8 inet_proto_csum_replace16 +EXPORT_SYMBOL vmlinux 0x01c6541a i2c_del_driver +EXPORT_SYMBOL vmlinux 0x01d20c6c seq_escape_mem +EXPORT_SYMBOL vmlinux 0x01f133de dev_mc_add EXPORT_SYMBOL vmlinux 0x020dbf27 bitmap_alloc -EXPORT_SYMBOL vmlinux 0x020fdc3a fasync_helper +EXPORT_SYMBOL vmlinux 0x0210adea del_random_ready_callback EXPORT_SYMBOL vmlinux 0x02124474 ip_send_check -EXPORT_SYMBOL vmlinux 0x02226d44 ipv6_getsockopt -EXPORT_SYMBOL vmlinux 0x022804ee fddi_type_trans +EXPORT_SYMBOL vmlinux 0x02145906 vme_new_dma_list EXPORT_SYMBOL vmlinux 0x02293ac3 dma_fence_chain_ops -EXPORT_SYMBOL vmlinux 0x0241e483 __scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x023f14b4 pcie_set_readrq EXPORT_SYMBOL vmlinux 0x0248efd3 kstrtobool_from_user EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues -EXPORT_SYMBOL vmlinux 0x0285b64d neigh_parms_alloc -EXPORT_SYMBOL vmlinux 0x0293d81b flow_rule_match_tcp +EXPORT_SYMBOL vmlinux 0x028049a1 input_get_poll_interval +EXPORT_SYMBOL vmlinux 0x02806f15 ip_sock_set_freebind EXPORT_SYMBOL vmlinux 0x0296695f refcount_warn_saturate -EXPORT_SYMBOL vmlinux 0x029f0587 vmap -EXPORT_SYMBOL vmlinux 0x02a06acb keyring_clear -EXPORT_SYMBOL vmlinux 0x02a18c74 nf_conntrack_destroy -EXPORT_SYMBOL vmlinux 0x02a66d07 to_nd_pfn +EXPORT_SYMBOL vmlinux 0x029a945e fman_get_pause_cfg +EXPORT_SYMBOL vmlinux 0x02a3d99c mmc_retune_timer_stop EXPORT_SYMBOL vmlinux 0x02b8ab42 sg_copy_to_buffer EXPORT_SYMBOL vmlinux 0x02c065f8 ucc_set_qe_mux_mii_mng -EXPORT_SYMBOL vmlinux 0x02c37b3b blk_mq_kick_requeue_list -EXPORT_SYMBOL vmlinux 0x02e77fce watchdog_unregister_governor -EXPORT_SYMBOL vmlinux 0x02ed38e5 seq_open -EXPORT_SYMBOL vmlinux 0x02fb00bf dns_query -EXPORT_SYMBOL vmlinux 0x0301ff14 neigh_sysctl_unregister +EXPORT_SYMBOL vmlinux 0x02c23833 rpmh_write +EXPORT_SYMBOL vmlinux 0x02c4f905 tty_chars_in_buffer +EXPORT_SYMBOL vmlinux 0x02d6ed20 single_open_size +EXPORT_SYMBOL vmlinux 0x02fe8129 simple_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0x031a2642 discard_new_inode EXPORT_SYMBOL vmlinux 0x0334795d icst307_s2div EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl -EXPORT_SYMBOL vmlinux 0x03558427 phy_ethtool_set_eee +EXPORT_SYMBOL vmlinux 0x0336bb31 iov_iter_xarray +EXPORT_SYMBOL vmlinux 0x0342ab6a serio_rescan +EXPORT_SYMBOL vmlinux 0x0360d67f make_flow_keys_digest EXPORT_SYMBOL vmlinux 0x0366307a console_suspend_enabled -EXPORT_SYMBOL vmlinux 0x0372c6eb dentry_path_raw +EXPORT_SYMBOL vmlinux 0x0375b4c0 dev_close +EXPORT_SYMBOL vmlinux 0x0378334a datagram_poll EXPORT_SYMBOL vmlinux 0x037a0cba kfree EXPORT_SYMBOL vmlinux 0x03815f35 ledtrig_disk_activity EXPORT_SYMBOL vmlinux 0x0397edd5 fb_edid_to_monspecs -EXPORT_SYMBOL vmlinux 0x0398d9a4 get_tree_keyed +EXPORT_SYMBOL vmlinux 0x03a8f61c vlan_for_each +EXPORT_SYMBOL vmlinux 0x03b68314 lookup_one_len EXPORT_SYMBOL vmlinux 0x03bf0e5a acpi_walk_resource_buffer -EXPORT_SYMBOL vmlinux 0x03f364af in_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x03da115e tty_hung_up_p +EXPORT_SYMBOL vmlinux 0x03e2dad6 inode_init_always +EXPORT_SYMBOL vmlinux 0x03e61f61 xsk_tx_completed +EXPORT_SYMBOL vmlinux 0x03ef86c6 reuseport_add_sock +EXPORT_SYMBOL vmlinux 0x03f93b76 mmc_gpio_get_ro EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram -EXPORT_SYMBOL vmlinux 0x040b7332 ps2_end_command -EXPORT_SYMBOL vmlinux 0x042020ef of_phy_deregister_fixed_link -EXPORT_SYMBOL vmlinux 0x042dddc4 phy_register_fixup -EXPORT_SYMBOL vmlinux 0x042e3605 __sock_cmsg_send -EXPORT_SYMBOL vmlinux 0x043afc56 nf_unregister_net_hooks -EXPORT_SYMBOL vmlinux 0x0444541f blk_rq_map_kern +EXPORT_SYMBOL vmlinux 0x042fd526 kernel_listen +EXPORT_SYMBOL vmlinux 0x0433eaa7 tty_write_room +EXPORT_SYMBOL vmlinux 0x0440c886 skb_copy_and_hash_datagram_iter EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator -EXPORT_SYMBOL vmlinux 0x045238c1 nd_pfn_probe -EXPORT_SYMBOL vmlinux 0x0455e253 pci_match_id +EXPORT_SYMBOL vmlinux 0x044c1fb3 mii_ethtool_gset +EXPORT_SYMBOL vmlinux 0x04650e7f ethtool_rx_flow_rule_create EXPORT_SYMBOL vmlinux 0x04673adb qman_ip_rev -EXPORT_SYMBOL vmlinux 0x046d09e2 rproc_boot -EXPORT_SYMBOL vmlinux 0x04733d55 skb_headers_offset_update EXPORT_SYMBOL vmlinux 0x0474edef kstrtou16_from_user +EXPORT_SYMBOL vmlinux 0x047515e6 invalidate_mapping_pages +EXPORT_SYMBOL vmlinux 0x04765d39 unix_detach_fds +EXPORT_SYMBOL vmlinux 0x04820185 __skb_gro_checksum_complete EXPORT_SYMBOL vmlinux 0x0484c6c4 acpi_enter_sleep_state_prep EXPORT_SYMBOL vmlinux 0x04863e28 hdmi_audio_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0x0490f7d4 ppp_dev_name -EXPORT_SYMBOL vmlinux 0x049ceb93 get_phy_device -EXPORT_SYMBOL vmlinux 0x04d10edf mr_mfc_find_any_parent -EXPORT_SYMBOL vmlinux 0x04d315b6 jbd2_journal_try_to_free_buffers -EXPORT_SYMBOL vmlinux 0x04d71225 ethtool_notify +EXPORT_SYMBOL vmlinux 0x04a669fc pci_write_config_dword +EXPORT_SYMBOL vmlinux 0x04ae0c6c give_up_console +EXPORT_SYMBOL vmlinux 0x04b55c49 reuseport_stop_listen_sock +EXPORT_SYMBOL vmlinux 0x04b59f04 max8925_bulk_read +EXPORT_SYMBOL vmlinux 0x04cb9328 __scsi_iterate_devices +EXPORT_SYMBOL vmlinux 0x04d3a9f9 ilookup5 EXPORT_SYMBOL vmlinux 0x04d9bf4e blk_set_stacking_limits -EXPORT_SYMBOL vmlinux 0x04e57085 md_bitmap_endwrite +EXPORT_SYMBOL vmlinux 0x04dc6e86 __cleancache_invalidate_inode +EXPORT_SYMBOL vmlinux 0x04e23c7c md_integrity_add_rdev EXPORT_SYMBOL vmlinux 0x04ea5d10 ksize -EXPORT_SYMBOL vmlinux 0x04fd11cb dcb_ieee_setapp -EXPORT_SYMBOL vmlinux 0x04ff1eab sock_rfree EXPORT_SYMBOL vmlinux 0x050877b9 dmi_first_match EXPORT_SYMBOL vmlinux 0x051d58e8 dma_fence_wait_any_timeout EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch -EXPORT_SYMBOL vmlinux 0x052681fb neigh_xmit EXPORT_SYMBOL vmlinux 0x054496b4 schedule_timeout_interruptible +EXPORT_SYMBOL vmlinux 0x054c0e7b dcache_dir_lseek EXPORT_SYMBOL vmlinux 0x055e77e8 jiffies_64 -EXPORT_SYMBOL vmlinux 0x056d2ffc dst_discard_out -EXPORT_SYMBOL vmlinux 0x058e9c82 iov_iter_discard -EXPORT_SYMBOL vmlinux 0x05973469 xp_free +EXPORT_SYMBOL vmlinux 0x057679d0 simple_link EXPORT_SYMBOL vmlinux 0x059e1482 __traceiter_dma_fence_emit -EXPORT_SYMBOL vmlinux 0x05a178ea dma_resv_add_shared_fence -EXPORT_SYMBOL vmlinux 0x05a325b9 secure_tcpv6_ts_off -EXPORT_SYMBOL vmlinux 0x05ac9b3e user_path_at_empty -EXPORT_SYMBOL vmlinux 0x05d8af90 forget_cached_acl -EXPORT_SYMBOL vmlinux 0x05da124f netdev_class_remove_file_ns -EXPORT_SYMBOL vmlinux 0x05e67850 sock_pfree -EXPORT_SYMBOL vmlinux 0x05e8d302 deactivate_locked_super -EXPORT_SYMBOL vmlinux 0x05ec6e64 blk_queue_max_segments +EXPORT_SYMBOL vmlinux 0x05a981b3 update_devfreq +EXPORT_SYMBOL vmlinux 0x05ae5b0b scsi_device_quiesce +EXPORT_SYMBOL vmlinux 0x05c461b0 devfreq_add_device +EXPORT_SYMBOL vmlinux 0x05c9b7ee twl6030_mmc_card_detect +EXPORT_SYMBOL vmlinux 0x05da0187 __netdev_notify_peers +EXPORT_SYMBOL vmlinux 0x05ec5ffe sk_wait_data +EXPORT_SYMBOL vmlinux 0x05efd5cd __ClearPageMovable EXPORT_SYMBOL vmlinux 0x060ba97c gen_pool_free_owner -EXPORT_SYMBOL vmlinux 0x06143e18 tcp_md5_hash_key EXPORT_SYMBOL vmlinux 0x061651be strcat -EXPORT_SYMBOL vmlinux 0x06252fc5 iov_iter_gap_alignment +EXPORT_SYMBOL vmlinux 0x062a6178 jbd2_journal_set_triggers +EXPORT_SYMBOL vmlinux 0x062b50cc of_find_mipi_dsi_host_by_node +EXPORT_SYMBOL vmlinux 0x06303cb9 __starget_for_each_device +EXPORT_SYMBOL vmlinux 0x0631425e alloc_netdev_mqs +EXPORT_SYMBOL vmlinux 0x06333853 dst_alloc +EXPORT_SYMBOL vmlinux 0x0633d986 tc_setup_cb_call EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user -EXPORT_SYMBOL vmlinux 0x0641c294 param_ops_int -EXPORT_SYMBOL vmlinux 0x0662439c __of_get_address +EXPORT_SYMBOL vmlinux 0x0637e779 netdev_unbind_sb_channel +EXPORT_SYMBOL vmlinux 0x0642a9dd seg6_hmac_net_exit +EXPORT_SYMBOL vmlinux 0x06478784 security_inode_invalidate_secctx +EXPORT_SYMBOL vmlinux 0x064d68f4 sock_efree +EXPORT_SYMBOL vmlinux 0x065967a1 bio_kmalloc +EXPORT_SYMBOL vmlinux 0x0662d8d7 cdc_parse_cdc_header EXPORT_SYMBOL vmlinux 0x0668b595 _kstrtoul -EXPORT_SYMBOL vmlinux 0x068d4759 vlan_dev_real_dev -EXPORT_SYMBOL vmlinux 0x069025ac fscrypt_free_bounce_page -EXPORT_SYMBOL vmlinux 0x0696b6bb __task_pid_nr_ns -EXPORT_SYMBOL vmlinux 0x069c86f8 proto_unregister +EXPORT_SYMBOL vmlinux 0x0677921c kill_block_super +EXPORT_SYMBOL vmlinux 0x06a1b23d phy_attached_info_irq +EXPORT_SYMBOL vmlinux 0x06aa6214 of_mdiobus_phy_device_register +EXPORT_SYMBOL vmlinux 0x06b60dc5 xp_raw_get_data EXPORT_SYMBOL vmlinux 0x06bd88b5 ucs2_strnlen -EXPORT_SYMBOL vmlinux 0x06be97b0 __cleancache_get_page +EXPORT_SYMBOL vmlinux 0x06be2361 udp_pre_connect +EXPORT_SYMBOL vmlinux 0x06c0f521 cdrom_dummy_generic_packet +EXPORT_SYMBOL vmlinux 0x06c390da inet_frag_reasm_prepare EXPORT_SYMBOL vmlinux 0x06c8f2de slhc_compress -EXPORT_SYMBOL vmlinux 0x06cf4e7a fs_param_is_s32 -EXPORT_SYMBOL vmlinux 0x06df5eb2 d_hash_and_lookup -EXPORT_SYMBOL vmlinux 0x06eb3056 __skb_flow_dissect -EXPORT_SYMBOL vmlinux 0x06ee68a6 tcp_check_req -EXPORT_SYMBOL vmlinux 0x06f780ae mntget +EXPORT_SYMBOL vmlinux 0x06ef0e3b blk_queue_segment_boundary +EXPORT_SYMBOL vmlinux 0x06f80d8c trace_raw_output_prep +EXPORT_SYMBOL vmlinux 0x06fd16db xfrm_state_walk +EXPORT_SYMBOL vmlinux 0x0709016e neigh_destroy EXPORT_SYMBOL vmlinux 0x0711edc8 xudma_dev_get_tisci_rm -EXPORT_SYMBOL vmlinux 0x07128f78 dev_uc_add +EXPORT_SYMBOL vmlinux 0x0725ff27 of_node_name_eq EXPORT_SYMBOL vmlinux 0x072f901c vme_master_rmw +EXPORT_SYMBOL vmlinux 0x07300c1c netdev_lower_get_first_private_rcu +EXPORT_SYMBOL vmlinux 0x07345955 eth_header_cache +EXPORT_SYMBOL vmlinux 0x07372963 genphy_update_link EXPORT_SYMBOL vmlinux 0x0745a981 xa_erase -EXPORT_SYMBOL vmlinux 0x07591645 of_translate_address +EXPORT_SYMBOL vmlinux 0x075a1e09 vfs_parse_fs_param EXPORT_SYMBOL vmlinux 0x0781ec97 logic_insl -EXPORT_SYMBOL vmlinux 0x079b9bab splice_direct_to_actor +EXPORT_SYMBOL vmlinux 0x0797a0c9 skb_udp_tunnel_segment +EXPORT_SYMBOL vmlinux 0x079b4ced inet_frag_find +EXPORT_SYMBOL vmlinux 0x07a1d609 __scm_send +EXPORT_SYMBOL vmlinux 0x07a25716 skb_copy_and_csum_datagram_msg +EXPORT_SYMBOL vmlinux 0x07a2d6fe mini_qdisc_pair_swap +EXPORT_SYMBOL vmlinux 0x07a46d06 __skb_get_hash EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap -EXPORT_SYMBOL vmlinux 0x07b92564 vfs_dedupe_file_range_one +EXPORT_SYMBOL vmlinux 0x07c4d864 find_inode_by_ino_rcu EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit -EXPORT_SYMBOL vmlinux 0x07cdbbb9 input_set_max_poll_interval +EXPORT_SYMBOL vmlinux 0x07cdd0ad gnet_stats_finish_copy EXPORT_SYMBOL vmlinux 0x07ceeac9 panic_notifier_list +EXPORT_SYMBOL vmlinux 0x07cfda5a inet_sk_set_state EXPORT_SYMBOL vmlinux 0x07db17be qman_create_fq +EXPORT_SYMBOL vmlinux 0x07e7c1fe inet_csk_delete_keepalive_timer +EXPORT_SYMBOL vmlinux 0x07e903b7 pci_find_resource EXPORT_SYMBOL vmlinux 0x07f57478 pci_unmap_iospace +EXPORT_SYMBOL vmlinux 0x07f6c167 ip_mc_leave_group EXPORT_SYMBOL vmlinux 0x0800473f __cond_resched +EXPORT_SYMBOL vmlinux 0x0801922f devm_of_iomap EXPORT_SYMBOL vmlinux 0x0805f2c8 ecryptfs_get_auth_tok_key EXPORT_SYMBOL vmlinux 0x08162c74 free_bucket_spinlocks +EXPORT_SYMBOL vmlinux 0x08189c8f cdrom_ioctl +EXPORT_SYMBOL vmlinux 0x0819d77a scsi_mode_sense EXPORT_SYMBOL vmlinux 0x08249512 iwe_stream_add_point -EXPORT_SYMBOL vmlinux 0x0829e8e5 _copy_from_iter 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 0x083772c1 unregister_cdrom -EXPORT_SYMBOL vmlinux 0x083c11fb rpmh_invalidate +EXPORT_SYMBOL vmlinux 0x083cb3ad param_get_charp EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister -EXPORT_SYMBOL vmlinux 0x08687e0d sock_set_reuseport -EXPORT_SYMBOL vmlinux 0x08747964 phy_reset_after_clk_enable -EXPORT_SYMBOL vmlinux 0x0879a130 __skb_checksum_complete_head +EXPORT_SYMBOL vmlinux 0x085d3b60 pci_stop_and_remove_bus_device +EXPORT_SYMBOL vmlinux 0x086c0381 locks_remove_posix +EXPORT_SYMBOL vmlinux 0x0875e9dd flow_rule_match_ipv6_addrs EXPORT_SYMBOL vmlinux 0x0882a449 security_xfrm_policy_alloc -EXPORT_SYMBOL vmlinux 0x0896e77e dev_uc_add_excl -EXPORT_SYMBOL vmlinux 0x089db49d __dec_node_page_state -EXPORT_SYMBOL vmlinux 0x089ecfff skb_flow_dissect_meta -EXPORT_SYMBOL vmlinux 0x08a40736 submit_bio -EXPORT_SYMBOL vmlinux 0x08a59986 invalidate_mapping_pages -EXPORT_SYMBOL vmlinux 0x08b1edb1 vfs_fsync_range -EXPORT_SYMBOL vmlinux 0x08ceca4e uart_suspend_port +EXPORT_SYMBOL vmlinux 0x08946b38 mipi_dsi_compression_mode +EXPORT_SYMBOL vmlinux 0x0897cb5e __dynamic_ibdev_dbg +EXPORT_SYMBOL vmlinux 0x08bca088 security_task_getsecid_obj +EXPORT_SYMBOL vmlinux 0x08c260a3 is_acpi_device_node +EXPORT_SYMBOL vmlinux 0x08c68f71 cookie_timestamp_decode +EXPORT_SYMBOL vmlinux 0x08d949b0 mmc_can_gpio_ro EXPORT_SYMBOL vmlinux 0x08e39398 cmd_db_read_addr -EXPORT_SYMBOL vmlinux 0x0902ae5a dev_mc_flush -EXPORT_SYMBOL vmlinux 0x0928167e mipi_dsi_host_unregister +EXPORT_SYMBOL vmlinux 0x08f77f3d iov_iter_get_pages +EXPORT_SYMBOL vmlinux 0x090ab13e param_set_byte +EXPORT_SYMBOL vmlinux 0x090e67cf iunique EXPORT_SYMBOL vmlinux 0x092e26bf acpi_remove_address_space_handler EXPORT_SYMBOL vmlinux 0x093712e5 acpi_purge_cached_objects -EXPORT_SYMBOL vmlinux 0x0946e79c __hw_addr_sync_dev -EXPORT_SYMBOL vmlinux 0x0948e264 nf_register_sockopt +EXPORT_SYMBOL vmlinux 0x0961b036 d_genocide EXPORT_SYMBOL vmlinux 0x09769037 dmt_modes EXPORT_SYMBOL vmlinux 0x097af021 neigh_proc_dointvec_jiffies -EXPORT_SYMBOL vmlinux 0x097f1f17 simple_transaction_release -EXPORT_SYMBOL vmlinux 0x098a44e2 mmc_remove_host +EXPORT_SYMBOL vmlinux 0x0988eb33 sock_kzfree_s EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap -EXPORT_SYMBOL vmlinux 0x098e895c tc_setup_cb_reoffload EXPORT_SYMBOL vmlinux 0x0998cc3c hdmi_infoframe_unpack -EXPORT_SYMBOL vmlinux 0x099ada69 fb_validate_mode +EXPORT_SYMBOL vmlinux 0x09a0ebed _copy_to_iter +EXPORT_SYMBOL vmlinux 0x09add045 redraw_screen +EXPORT_SYMBOL vmlinux 0x09af0635 send_sig_info +EXPORT_SYMBOL vmlinux 0x09bbf614 __netdev_alloc_skb EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions EXPORT_SYMBOL vmlinux 0x09da0ba4 xa_set_mark +EXPORT_SYMBOL vmlinux 0x09e7a721 tcp_req_err EXPORT_SYMBOL vmlinux 0x09f9b261 xudma_rchan_put +EXPORT_SYMBOL vmlinux 0x0a0e2e21 __neigh_for_each_release EXPORT_SYMBOL vmlinux 0x0a0ebc08 __xa_cmpxchg EXPORT_SYMBOL vmlinux 0x0a1dbc76 tcp_rx_skb_cache_key -EXPORT_SYMBOL vmlinux 0x0a27fe74 devfreq_monitor_start +EXPORT_SYMBOL vmlinux 0x0a21d99b vfs_fileattr_set +EXPORT_SYMBOL vmlinux 0x0a253e5f acpi_dev_get_next_match_dev EXPORT_SYMBOL vmlinux 0x0a2a0bce nla_append -EXPORT_SYMBOL vmlinux 0x0a385108 security_path_mkdir -EXPORT_SYMBOL vmlinux 0x0a3fcb43 mmc_hw_reset -EXPORT_SYMBOL vmlinux 0x0a46ce2a dev_addr_del -EXPORT_SYMBOL vmlinux 0x0a4e1c98 dm_kcopyd_copy -EXPORT_SYMBOL vmlinux 0x0a55dc28 __traceiter_mmap_lock_released -EXPORT_SYMBOL vmlinux 0x0a6ff185 of_phy_register_fixed_link +EXPORT_SYMBOL vmlinux 0x0a3785a0 dquot_release +EXPORT_SYMBOL vmlinux 0x0a45f66c pci_irq_vector +EXPORT_SYMBOL vmlinux 0x0a4c5a15 phy_get_internal_delay +EXPORT_SYMBOL vmlinux 0x0a53ad8a cdev_device_del +EXPORT_SYMBOL vmlinux 0x0a5fa0f8 finish_no_open +EXPORT_SYMBOL vmlinux 0x0a67deeb phy_ethtool_set_wol +EXPORT_SYMBOL vmlinux 0x0a686134 tcf_action_check_ctrlact EXPORT_SYMBOL vmlinux 0x0a770832 register_memory_notifier -EXPORT_SYMBOL vmlinux 0x0a79bdd3 blk_put_queue -EXPORT_SYMBOL vmlinux 0x0a7bacfd inet_csk_reqsk_queue_drop_and_put -EXPORT_SYMBOL vmlinux 0x0a7d0884 tty_port_close -EXPORT_SYMBOL vmlinux 0x0a84465f mmc_wait_for_req_done -EXPORT_SYMBOL vmlinux 0x0a8ca3ac __dev_get_by_name -EXPORT_SYMBOL vmlinux 0x0a9bd36f __fib6_flush_trees -EXPORT_SYMBOL vmlinux 0x0aa245fc seq_dentry -EXPORT_SYMBOL vmlinux 0x0aa27c22 tcp_mtup_init +EXPORT_SYMBOL vmlinux 0x0a8411c7 tcp_md5_hash_skb_data +EXPORT_SYMBOL vmlinux 0x0a99ffa9 mipi_dsi_dcs_enter_sleep_mode +EXPORT_SYMBOL vmlinux 0x0aa20963 __cgroup_bpf_run_filter_skb EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq EXPORT_SYMBOL vmlinux 0x0aaccc92 pci_remap_iospace -EXPORT_SYMBOL vmlinux 0x0ac21ec1 tcf_get_next_proto +EXPORT_SYMBOL vmlinux 0x0ab732d5 __mmap_lock_do_trace_start_locking +EXPORT_SYMBOL vmlinux 0x0ab9ab45 of_graph_get_remote_port EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all -EXPORT_SYMBOL vmlinux 0x0ae83d64 mii_nway_restart -EXPORT_SYMBOL vmlinux 0x0aee7516 devm_of_clk_del_provider -EXPORT_SYMBOL vmlinux 0x0b00bc52 pnp_stop_dev -EXPORT_SYMBOL vmlinux 0x0b19fac0 simple_recursive_removal +EXPORT_SYMBOL vmlinux 0x0ad40785 rfkill_alloc +EXPORT_SYMBOL vmlinux 0x0aebf7fd vc_resize +EXPORT_SYMBOL vmlinux 0x0b0232ae key_task_permission EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user -EXPORT_SYMBOL vmlinux 0x0b21bdc3 acpi_mdiobus_register +EXPORT_SYMBOL vmlinux 0x0b244f81 mipi_dsi_dcs_exit_sleep_mode EXPORT_SYMBOL vmlinux 0x0b26b8c8 acpi_run_osc EXPORT_SYMBOL vmlinux 0x0b290ada dma_fence_chain_walk -EXPORT_SYMBOL vmlinux 0x0b337356 get_user_pages_locked -EXPORT_SYMBOL vmlinux 0x0b43ea98 ip_local_deliver -EXPORT_SYMBOL vmlinux 0x0b4d7944 d_alloc -EXPORT_SYMBOL vmlinux 0x0b5210cf inet_csk_destroy_sock +EXPORT_SYMBOL vmlinux 0x0b6af2fc pcim_iounmap +EXPORT_SYMBOL vmlinux 0x0b733fbb file_write_and_wait_range EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol -EXPORT_SYMBOL vmlinux 0x0b770524 __break_lease -EXPORT_SYMBOL vmlinux 0x0b81bb9a xfrm6_rcv_encap -EXPORT_SYMBOL vmlinux 0x0b8ee3c3 sock_kfree_s -EXPORT_SYMBOL vmlinux 0x0b93bcca rio_query_mport -EXPORT_SYMBOL vmlinux 0x0b964285 config_item_put +EXPORT_SYMBOL vmlinux 0x0b96b1e1 wait_on_page_private_2 +EXPORT_SYMBOL vmlinux 0x0b9866a6 __splice_from_pipe +EXPORT_SYMBOL vmlinux 0x0b9fa1a3 module_put EXPORT_SYMBOL vmlinux 0x0ba0b938 vm_brk -EXPORT_SYMBOL vmlinux 0x0ba7ecfd dev_close +EXPORT_SYMBOL vmlinux 0x0ba30e47 vfs_rename +EXPORT_SYMBOL vmlinux 0x0baf5e8e make_kprojid EXPORT_SYMBOL vmlinux 0x0bbfa78c set_security_override_from_ctx EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type -EXPORT_SYMBOL vmlinux 0x0bd70e8c tty_lock -EXPORT_SYMBOL vmlinux 0x0bd7e04d unregister_nexthop_notifier -EXPORT_SYMBOL vmlinux 0x0bd994f5 skb_recv_datagram -EXPORT_SYMBOL vmlinux 0x0bdb01c4 pci_bus_write_config_byte -EXPORT_SYMBOL vmlinux 0x0be941be phy_trigger_machine -EXPORT_SYMBOL vmlinux 0x0beccbcf netdev_rx_csum_fault +EXPORT_SYMBOL vmlinux 0x0be7f5b9 pci_iounmap EXPORT_SYMBOL vmlinux 0x0bf0e4a2 __SCK__tp_func_spi_transfer_stop -EXPORT_SYMBOL vmlinux 0x0bf3d63b qdisc_put_unlocked +EXPORT_SYMBOL vmlinux 0x0bf5af7f ppp_output_wakeup EXPORT_SYMBOL vmlinux 0x0bfc1d1a check_zeroed_user -EXPORT_SYMBOL vmlinux 0x0c025d7b of_mdiobus_register +EXPORT_SYMBOL vmlinux 0x0c094dc4 poll_freewait EXPORT_SYMBOL vmlinux 0x0c0f79af ZSTD_getDictID_fromFrame +EXPORT_SYMBOL vmlinux 0x0c209e31 netdev_set_tc_queue EXPORT_SYMBOL vmlinux 0x0c25ec48 secure_tcpv6_seq -EXPORT_SYMBOL vmlinux 0x0c35367d napi_get_frags -EXPORT_SYMBOL vmlinux 0x0c39e15f flow_rule_match_enc_ip -EXPORT_SYMBOL vmlinux 0x0c4a48ed unpin_user_page_range_dirty_lock +EXPORT_SYMBOL vmlinux 0x0c2cc685 buffer_migrate_page +EXPORT_SYMBOL vmlinux 0x0c349bdd fsync_bdev +EXPORT_SYMBOL vmlinux 0x0c34afdd _copy_from_iter_nocache +EXPORT_SYMBOL vmlinux 0x0c497f3c set_nlink EXPORT_SYMBOL vmlinux 0x0c575719 __cond_resched_rwlock_write -EXPORT_SYMBOL vmlinux 0x0c58290a sk_wait_data -EXPORT_SYMBOL vmlinux 0x0c5b3fbe vma_set_file -EXPORT_SYMBOL vmlinux 0x0c5d1e28 bio_integrity_alloc -EXPORT_SYMBOL vmlinux 0x0c67e856 md_error EXPORT_SYMBOL vmlinux 0x0c6bdc3f vme_master_read -EXPORT_SYMBOL vmlinux 0x0c744b37 default_qdisc_ops -EXPORT_SYMBOL vmlinux 0x0c8d2ab9 dev_mc_unsync -EXPORT_SYMBOL vmlinux 0x0c973f4d netpoll_print_options -EXPORT_SYMBOL vmlinux 0x0c996178 netdev_port_same_parent_id -EXPORT_SYMBOL vmlinux 0x0cab586d pm8606_osc_enable +EXPORT_SYMBOL vmlinux 0x0c782e82 unlock_rename +EXPORT_SYMBOL vmlinux 0x0c80ebc9 blk_rq_map_user_iov +EXPORT_SYMBOL vmlinux 0x0c96b452 generic_file_fsync +EXPORT_SYMBOL vmlinux 0x0c96f6e0 pci_disable_link_state_locked +EXPORT_SYMBOL vmlinux 0x0ca4aa65 udp_push_pending_frames EXPORT_SYMBOL vmlinux 0x0cb11bc7 __SCK__tp_func_dma_fence_enable_signal -EXPORT_SYMBOL vmlinux 0x0cb2052c devm_devfreq_unregister_notifier -EXPORT_SYMBOL vmlinux 0x0cc0bca4 dev_change_proto_down +EXPORT_SYMBOL vmlinux 0x0cb8092f __blk_alloc_disk +EXPORT_SYMBOL vmlinux 0x0cc1dc8b xfrm_policy_insert +EXPORT_SYMBOL vmlinux 0x0cc2ff48 file_path EXPORT_SYMBOL vmlinux 0x0cc4b4b6 crc_ccitt_false EXPORT_SYMBOL vmlinux 0x0cd5835b ipv6_flowlabel_exclusive EXPORT_SYMBOL vmlinux 0x0cdce87c rfkill_set_hw_state_reason EXPORT_SYMBOL vmlinux 0x0ce19729 mb_cache_entry_touch -EXPORT_SYMBOL vmlinux 0x0cf1ebf9 phy_suspend -EXPORT_SYMBOL vmlinux 0x0cf532b9 devm_pci_remap_iospace -EXPORT_SYMBOL vmlinux 0x0cf7e67d inode_set_flags +EXPORT_SYMBOL vmlinux 0x0cf54126 sk_stop_timer +EXPORT_SYMBOL vmlinux 0x0cfabc96 param_get_int +EXPORT_SYMBOL vmlinux 0x0cfc2f52 sock_i_ino EXPORT_SYMBOL vmlinux 0x0d07f543 get_anon_bdev -EXPORT_SYMBOL vmlinux 0x0d0f5f64 kobject_add +EXPORT_SYMBOL vmlinux 0x0d1c0f00 get_watch_queue EXPORT_SYMBOL vmlinux 0x0d2ca20f ucc_fast_get_qe_cr_subblock -EXPORT_SYMBOL vmlinux 0x0d2f05a1 ip_sock_set_tos -EXPORT_SYMBOL vmlinux 0x0d2f483e __mod_lruvec_page_state -EXPORT_SYMBOL vmlinux 0x0d30cd0a kmem_cache_alloc_trace +EXPORT_SYMBOL vmlinux 0x0d2de1b0 migrate_page_move_mapping EXPORT_SYMBOL vmlinux 0x0d3f5c1a fman_get_max_frm -EXPORT_SYMBOL vmlinux 0x0d407af8 register_quota_format -EXPORT_SYMBOL vmlinux 0x0d482b0c __netdev_alloc_skb -EXPORT_SYMBOL vmlinux 0x0d48b991 dquot_transfer -EXPORT_SYMBOL vmlinux 0x0d4cb563 nvdimm_namespace_disk_name EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type +EXPORT_SYMBOL vmlinux 0x0d600ea3 migrate_vma_finalize EXPORT_SYMBOL vmlinux 0x0d61eeee __bitmap_subset -EXPORT_SYMBOL vmlinux 0x0d6b4edf buffer_check_dirty_writeback -EXPORT_SYMBOL vmlinux 0x0d71a104 netif_set_real_num_queues -EXPORT_SYMBOL vmlinux 0x0d7f99c7 __quota_error -EXPORT_SYMBOL vmlinux 0x0da0d70b uart_add_one_port -EXPORT_SYMBOL vmlinux 0x0dbadd2f ppp_register_net_channel -EXPORT_SYMBOL vmlinux 0x0dbf3905 fb_pan_display -EXPORT_SYMBOL vmlinux 0x0dc52e0d seq_path -EXPORT_SYMBOL vmlinux 0x0dc845e4 pin_user_pages_remote -EXPORT_SYMBOL vmlinux 0x0de42e1d loop_register_transfer -EXPORT_SYMBOL vmlinux 0x0de53260 xsk_uses_need_wakeup -EXPORT_SYMBOL vmlinux 0x0e02b0de iov_iter_kvec -EXPORT_SYMBOL vmlinux 0x0e098ecf netlink_rcv_skb +EXPORT_SYMBOL vmlinux 0x0d78fb12 nvdimm_bus_unlock +EXPORT_SYMBOL vmlinux 0x0d847aa1 simple_rename +EXPORT_SYMBOL vmlinux 0x0d85f05c elv_rb_former_request +EXPORT_SYMBOL vmlinux 0x0d8883eb __breadahead_gfp +EXPORT_SYMBOL vmlinux 0x0d89ef5f devfreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x0d950695 skb_vlan_push +EXPORT_SYMBOL vmlinux 0x0db26536 __qdisc_calculate_pkt_len +EXPORT_SYMBOL vmlinux 0x0db35bc6 serio_bus +EXPORT_SYMBOL vmlinux 0x0db984db inet_stream_connect +EXPORT_SYMBOL vmlinux 0x0de0bab9 of_phy_connect +EXPORT_SYMBOL vmlinux 0x0e0c9214 sb_set_blocksize +EXPORT_SYMBOL vmlinux 0x0e14feed of_platform_bus_probe EXPORT_SYMBOL vmlinux 0x0e17678a siphash_4u64 -EXPORT_SYMBOL vmlinux 0x0e1c81da __destroy_inode -EXPORT_SYMBOL vmlinux 0x0e281867 serio_unregister_port +EXPORT_SYMBOL vmlinux 0x0e1ad57a simple_setattr +EXPORT_SYMBOL vmlinux 0x0e2c894d dev_uc_sync EXPORT_SYMBOL vmlinux 0x0e4262c6 __siphash_unaligned -EXPORT_SYMBOL vmlinux 0x0e490ee0 igrab EXPORT_SYMBOL vmlinux 0x0e74ad2d utf8ncursor +EXPORT_SYMBOL vmlinux 0x0e75beb3 key_payload_reserve +EXPORT_SYMBOL vmlinux 0x0e7ea44a mr_rtm_dumproute +EXPORT_SYMBOL vmlinux 0x0e7faeb8 pcie_get_width_cap +EXPORT_SYMBOL vmlinux 0x0e9c537c i2c_smbus_xfer EXPORT_SYMBOL vmlinux 0x0ea3c74e tasklet_kill -EXPORT_SYMBOL vmlinux 0x0ea48266 dev_getfirstbyhwtype EXPORT_SYMBOL vmlinux 0x0ea593f6 hdmi_drm_infoframe_init +EXPORT_SYMBOL vmlinux 0x0eb348c2 begin_new_exec EXPORT_SYMBOL vmlinux 0x0eb6eb87 add_taint EXPORT_SYMBOL vmlinux 0x0ec5babe vme_dma_free -EXPORT_SYMBOL vmlinux 0x0ed07c96 devm_extcon_unregister_notifier_all -EXPORT_SYMBOL vmlinux 0x0ef2d189 icmp_ndo_send +EXPORT_SYMBOL vmlinux 0x0eca48ec ipmr_rule_default +EXPORT_SYMBOL vmlinux 0x0ecbe67d proc_mkdir +EXPORT_SYMBOL vmlinux 0x0ee54c42 jbd2_journal_release_jbd_inode +EXPORT_SYMBOL vmlinux 0x0ef4da82 __lock_buffer +EXPORT_SYMBOL vmlinux 0x0efef335 ipv6_dev_find EXPORT_SYMBOL vmlinux 0x0f09cc34 schedule_timeout_killable -EXPORT_SYMBOL vmlinux 0x0f2bc69f devm_extcon_unregister_notifier +EXPORT_SYMBOL vmlinux 0x0f17bd5b security_task_getsecid_subj EXPORT_SYMBOL vmlinux 0x0f37ca89 lockref_put_not_zero -EXPORT_SYMBOL vmlinux 0x0f3f6ed9 kernel_param_unlock -EXPORT_SYMBOL vmlinux 0x0f439e05 serio_rescan -EXPORT_SYMBOL vmlinux 0x0f50a08e unlock_page -EXPORT_SYMBOL vmlinux 0x0f77e055 mmc_put_card -EXPORT_SYMBOL vmlinux 0x0f84739e napi_disable +EXPORT_SYMBOL vmlinux 0x0f5003cf mntput +EXPORT_SYMBOL vmlinux 0x0f58374d flush_signals +EXPORT_SYMBOL vmlinux 0x0f64188c neigh_parms_release +EXPORT_SYMBOL vmlinux 0x0f7c7e6f xfrm_policy_destroy +EXPORT_SYMBOL vmlinux 0x0f86a1b6 xattr_full_name EXPORT_SYMBOL vmlinux 0x0f86f560 kthread_delayed_work_timer_fn -EXPORT_SYMBOL vmlinux 0x0f918235 sk_stop_timer_sync -EXPORT_SYMBOL vmlinux 0x0f99d347 jbd2_journal_start_commit -EXPORT_SYMBOL vmlinux 0x0fa37d49 mmc_can_gpio_cd EXPORT_SYMBOL vmlinux 0x0fab1ab0 hdmi_spd_infoframe_pack +EXPORT_SYMBOL vmlinux 0x0fad2e2a vfs_path_lookup EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 -EXPORT_SYMBOL vmlinux 0x0fb6cf12 iov_iter_single_seg_count +EXPORT_SYMBOL vmlinux 0x0fc06604 jbd2_journal_inode_ranged_write EXPORT_SYMBOL vmlinux 0x0fd902db mb_cache_entry_create -EXPORT_SYMBOL vmlinux 0x0fdcb4fa tcp_setsockopt -EXPORT_SYMBOL vmlinux 0x0fdece90 skb_checksum_setup -EXPORT_SYMBOL vmlinux 0x0febd888 md_wakeup_thread -EXPORT_SYMBOL vmlinux 0x0fefe0f5 cdrom_dummy_generic_packet -EXPORT_SYMBOL vmlinux 0x0ff234d7 jbd2_journal_inode_ranged_write +EXPORT_SYMBOL vmlinux 0x0fda8d4e ip6_dst_alloc +EXPORT_SYMBOL vmlinux 0x0fecf279 sk_alloc +EXPORT_SYMBOL vmlinux 0x0ff09466 devfreq_recommended_opp EXPORT_SYMBOL vmlinux 0x0fff5afc time64_to_tm -EXPORT_SYMBOL vmlinux 0x1013c89e __skb_try_recv_datagram +EXPORT_SYMBOL vmlinux 0x100a986e __destroy_inode +EXPORT_SYMBOL vmlinux 0x10167aeb key_reject_and_link EXPORT_SYMBOL vmlinux 0x1025009a cpm_muram_alloc_fixed -EXPORT_SYMBOL vmlinux 0x102917b9 proc_mkdir_mode EXPORT_SYMBOL vmlinux 0x102936ec qe_clock_source +EXPORT_SYMBOL vmlinux 0x10352751 locks_lock_inode_wait EXPORT_SYMBOL vmlinux 0x1035c7c2 __release_region -EXPORT_SYMBOL vmlinux 0x1037b11c sk_page_frag_refill +EXPORT_SYMBOL vmlinux 0x104a633d jbd2_fc_end_commit_fallback EXPORT_SYMBOL vmlinux 0x1057a279 bsearch -EXPORT_SYMBOL vmlinux 0x1058db5d pagevec_lookup_range_tag -EXPORT_SYMBOL vmlinux 0x10631b38 file_open_root +EXPORT_SYMBOL vmlinux 0x1061f528 pci_release_region +EXPORT_SYMBOL vmlinux 0x1064fee7 __breadahead EXPORT_SYMBOL vmlinux 0x1068004b gf128mul_bbe -EXPORT_SYMBOL vmlinux 0x1073ce90 tcp_v4_destroy_sock EXPORT_SYMBOL vmlinux 0x107be0b0 percpu_counter_sync -EXPORT_SYMBOL vmlinux 0x107cfaaf sock_queue_err_skb EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd -EXPORT_SYMBOL vmlinux 0x10b5b1f4 kset_register +EXPORT_SYMBOL vmlinux 0x107f0000 bioset_integrity_create +EXPORT_SYMBOL vmlinux 0x10941f9c amba_device_unregister +EXPORT_SYMBOL vmlinux 0x10972506 bio_devname +EXPORT_SYMBOL vmlinux 0x109852a3 __tcp_md5_do_lookup +EXPORT_SYMBOL vmlinux 0x10ac6949 of_platform_device_create +EXPORT_SYMBOL vmlinux 0x10b42bbf genlmsg_put EXPORT_SYMBOL vmlinux 0x10c3f57e __gnet_stats_copy_queue EXPORT_SYMBOL vmlinux 0x10d9f885 scsi_sense_desc_find EXPORT_SYMBOL vmlinux 0x10e6f74a free_contig_range -EXPORT_SYMBOL vmlinux 0x10ec8716 clk_bulk_get +EXPORT_SYMBOL vmlinux 0x10f868ee get_phy_device EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype -EXPORT_SYMBOL vmlinux 0x113662ff import_iovec -EXPORT_SYMBOL vmlinux 0x11373f08 filemap_write_and_wait_range -EXPORT_SYMBOL vmlinux 0x11455998 blkdev_compat_ptr_ioctl -EXPORT_SYMBOL vmlinux 0x1152184a ptp_clock_unregister -EXPORT_SYMBOL vmlinux 0x11585aba __traceiter_spi_transfer_stop +EXPORT_SYMBOL vmlinux 0x1118b907 __page_cache_alloc +EXPORT_SYMBOL vmlinux 0x112e379c tty_port_tty_get +EXPORT_SYMBOL vmlinux 0x113bcc5f netif_stacked_transfer_operstate +EXPORT_SYMBOL vmlinux 0x114d9d15 pci_write_vpd +EXPORT_SYMBOL vmlinux 0x114dfaff regset_get_alloc +EXPORT_SYMBOL vmlinux 0x115374bf mmc_set_blocklen +EXPORT_SYMBOL vmlinux 0x11568b25 ps2_handle_ack EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init -EXPORT_SYMBOL vmlinux 0x118670a2 seq_pad -EXPORT_SYMBOL vmlinux 0x11abc98f pci_scan_root_bus -EXPORT_SYMBOL vmlinux 0x11bcec88 nvdimm_bus_lock +EXPORT_SYMBOL vmlinux 0x117357f9 of_pci_range_to_resource +EXPORT_SYMBOL vmlinux 0x117ad117 file_remove_privs +EXPORT_SYMBOL vmlinux 0x118788d7 of_mdio_find_bus +EXPORT_SYMBOL vmlinux 0x118f491b kern_path +EXPORT_SYMBOL vmlinux 0x11c4042e blk_rq_count_integrity_sg EXPORT_SYMBOL vmlinux 0x11d189b1 __tracepoint_kmem_cache_alloc_node -EXPORT_SYMBOL vmlinux 0x11d90573 __dec_zone_page_state EXPORT_SYMBOL vmlinux 0x11e0ec41 dm_read_arg EXPORT_SYMBOL vmlinux 0x11e30762 chacha_block_generic -EXPORT_SYMBOL vmlinux 0x11eaf170 ptp_schedule_worker +EXPORT_SYMBOL vmlinux 0x11f069f2 __tcf_em_tree_match EXPORT_SYMBOL vmlinux 0x11f47d8c utf8_strncmp -EXPORT_SYMBOL vmlinux 0x11f7ed4c hex_to_bin -EXPORT_SYMBOL vmlinux 0x11f8cb7b remap_pfn_range EXPORT_SYMBOL vmlinux 0x11ffdfee ucc_slow_stop_tx -EXPORT_SYMBOL vmlinux 0x120605df skb_seq_read +EXPORT_SYMBOL vmlinux 0x12007155 fwnode_mdio_find_device +EXPORT_SYMBOL vmlinux 0x1203c57b __scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x1209ddfa sk_stream_kill_queues EXPORT_SYMBOL vmlinux 0x120b336a __rb_insert_augmented EXPORT_SYMBOL vmlinux 0x120ff8e1 xudma_get_rflow_ring_offset -EXPORT_SYMBOL vmlinux 0x12151aae vme_bus_num +EXPORT_SYMBOL vmlinux 0x121776b5 to_nd_btt +EXPORT_SYMBOL vmlinux 0x12230ea6 xsk_tx_peek_release_desc_batch +EXPORT_SYMBOL vmlinux 0x12266115 input_mt_report_slot_state +EXPORT_SYMBOL vmlinux 0x1228bd4a max8998_write_reg +EXPORT_SYMBOL vmlinux 0x122d4697 pci_dev_get +EXPORT_SYMBOL vmlinux 0x12321dd7 jbd2_journal_ack_err EXPORT_SYMBOL vmlinux 0x124bad4d kstrtobool -EXPORT_SYMBOL vmlinux 0x127b5010 filemap_fdatawait_keep_errors -EXPORT_SYMBOL vmlinux 0x12983bc9 unlock_rename +EXPORT_SYMBOL vmlinux 0x1254927c jbd2_fc_release_bufs +EXPORT_SYMBOL vmlinux 0x126414db scsi_bios_ptable +EXPORT_SYMBOL vmlinux 0x126e8aa7 kobject_set_name +EXPORT_SYMBOL vmlinux 0x126ef15d of_clk_get_by_name +EXPORT_SYMBOL vmlinux 0x127685a6 inet6_protos +EXPORT_SYMBOL vmlinux 0x12790d55 dev_get_mac_address +EXPORT_SYMBOL vmlinux 0x127a3ff0 locks_copy_conflock +EXPORT_SYMBOL vmlinux 0x127c69dc phy_support_asym_pause +EXPORT_SYMBOL vmlinux 0x128403dd uart_suspend_port +EXPORT_SYMBOL vmlinux 0x12846703 rtnl_link_get_net EXPORT_SYMBOL vmlinux 0x12a4e128 __arch_copy_from_user -EXPORT_SYMBOL vmlinux 0x12bfe324 jbd2_journal_forget +EXPORT_SYMBOL vmlinux 0x12a54e94 __netlink_kernel_create +EXPORT_SYMBOL vmlinux 0x12c34fa8 xfrm_state_free EXPORT_SYMBOL vmlinux 0x12cabc89 siphash_2u64 -EXPORT_SYMBOL vmlinux 0x12ce1539 __i2c_transfer -EXPORT_SYMBOL vmlinux 0x12d22efe devm_devfreq_register_notifier -EXPORT_SYMBOL vmlinux 0x12de6cbf genphy_c37_read_status -EXPORT_SYMBOL vmlinux 0x12e640d0 __sk_mem_reduce_allocated -EXPORT_SYMBOL vmlinux 0x12e745a7 of_phy_is_fixed_link -EXPORT_SYMBOL vmlinux 0x12ea1b10 neigh_seq_start +EXPORT_SYMBOL vmlinux 0x12e528b9 mipi_dsi_device_unregister +EXPORT_SYMBOL vmlinux 0x12e77659 vme_unregister_bridge +EXPORT_SYMBOL vmlinux 0x12ea7a99 d_set_fallthru EXPORT_SYMBOL vmlinux 0x12f6f69c fb_videomode_to_var -EXPORT_SYMBOL vmlinux 0x12f80130 __pskb_pull_tail -EXPORT_SYMBOL vmlinux 0x1300b53c make_kprojid EXPORT_SYMBOL vmlinux 0x130afd75 acpi_get_sleep_type_data -EXPORT_SYMBOL vmlinux 0x130dd0cb devm_release_resource -EXPORT_SYMBOL vmlinux 0x130eee03 vme_irq_handler EXPORT_SYMBOL vmlinux 0x13110126 request_resource -EXPORT_SYMBOL vmlinux 0x13140255 crypto_sha512_update -EXPORT_SYMBOL vmlinux 0x1317b981 cdev_init +EXPORT_SYMBOL vmlinux 0x1313bac9 md_cluster_ops EXPORT_SYMBOL vmlinux 0x131a6146 xa_clear_mark EXPORT_SYMBOL vmlinux 0x13243d4b wl1251_get_platform_data -EXPORT_SYMBOL vmlinux 0x13295b32 qdisc_class_hash_grow -EXPORT_SYMBOL vmlinux 0x1330b333 i2c_smbus_write_i2c_block_data EXPORT_SYMBOL vmlinux 0x134cdd34 inet_frag_rbtree_purge -EXPORT_SYMBOL vmlinux 0x1350b1af sk_alloc -EXPORT_SYMBOL vmlinux 0x1359b8f6 inode_nohighmem -EXPORT_SYMBOL vmlinux 0x135f9559 tty_port_carrier_raised -EXPORT_SYMBOL vmlinux 0x136cec4a rproc_set_firmware -EXPORT_SYMBOL vmlinux 0x137213bd new_inode -EXPORT_SYMBOL vmlinux 0x137ac1c9 d_alloc_parallel +EXPORT_SYMBOL vmlinux 0x134f2237 dev_mc_flush +EXPORT_SYMBOL vmlinux 0x135bd16d register_cdrom +EXPORT_SYMBOL vmlinux 0x13606961 vfs_statfs +EXPORT_SYMBOL vmlinux 0x136a6522 tcp_v4_connect +EXPORT_SYMBOL vmlinux 0x137ec96e pci_enable_msi +EXPORT_SYMBOL vmlinux 0x13879dd0 __skb_warn_lro_forwarding +EXPORT_SYMBOL vmlinux 0x1389f4c5 clkdev_add EXPORT_SYMBOL vmlinux 0x138bdd96 cpumask_next -EXPORT_SYMBOL vmlinux 0x138bfa92 rawv6_mh_filter_unregister -EXPORT_SYMBOL vmlinux 0x139149d6 __pskb_copy_fclone +EXPORT_SYMBOL vmlinux 0x1390bd60 from_kuid_munged +EXPORT_SYMBOL vmlinux 0x1390f65e dma_set_coherent_mask +EXPORT_SYMBOL vmlinux 0x1397600f user_revoke +EXPORT_SYMBOL vmlinux 0x13995f6d fman_get_mem_region +EXPORT_SYMBOL vmlinux 0x139edb43 __cgroup_bpf_run_filter_sock_addr EXPORT_SYMBOL vmlinux 0x139f2189 __kfifo_alloc -EXPORT_SYMBOL vmlinux 0x13baf460 netdev_lower_get_next_private -EXPORT_SYMBOL vmlinux 0x13c79519 nf_ip6_checksum -EXPORT_SYMBOL vmlinux 0x13c873b3 eth_platform_get_mac_address +EXPORT_SYMBOL vmlinux 0x13b4232a mipi_dsi_picture_parameter_set EXPORT_SYMBOL vmlinux 0x13cead77 __SCK__tp_func_kmem_cache_alloc_node -EXPORT_SYMBOL vmlinux 0x13cf455c xsk_tx_release EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out EXPORT_SYMBOL vmlinux 0x13d928f5 __SCK__tp_func_kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0x13de3e04 security_sk_clone -EXPORT_SYMBOL vmlinux 0x13e111e0 qdisc_create_dflt -EXPORT_SYMBOL vmlinux 0x13eb2ab7 param_ops_charp -EXPORT_SYMBOL vmlinux 0x140f4dba mdiobus_scan +EXPORT_SYMBOL vmlinux 0x13deabd5 d_hash_and_lookup +EXPORT_SYMBOL vmlinux 0x13f49575 param_set_ushort +EXPORT_SYMBOL vmlinux 0x14012d5b try_lookup_one_len EXPORT_SYMBOL vmlinux 0x141271bf acpi_dev_found -EXPORT_SYMBOL vmlinux 0x141f8e00 devfreq_register_notifier EXPORT_SYMBOL vmlinux 0x1435c5ce __SCK__tp_func_kmalloc_node -EXPORT_SYMBOL vmlinux 0x1438e5dc sk_mc_loop -EXPORT_SYMBOL vmlinux 0x1446733b xfrm_policy_walk -EXPORT_SYMBOL vmlinux 0x1457d1e2 pci_get_subsys -EXPORT_SYMBOL vmlinux 0x1458954f io_uring_get_socket -EXPORT_SYMBOL vmlinux 0x1459280b pm_vt_switch_unregister +EXPORT_SYMBOL vmlinux 0x143cd113 blkdev_get_by_dev +EXPORT_SYMBOL vmlinux 0x1440c828 cdev_device_add +EXPORT_SYMBOL vmlinux 0x144ec38b kset_register +EXPORT_SYMBOL vmlinux 0x14513361 scsi_track_queue_full EXPORT_SYMBOL vmlinux 0x14605535 dma_fence_context_alloc EXPORT_SYMBOL vmlinux 0x146289b7 crc16_table -EXPORT_SYMBOL vmlinux 0x146594c3 __breadahead +EXPORT_SYMBOL vmlinux 0x146c16a4 dev_change_proto_down_generic +EXPORT_SYMBOL vmlinux 0x1471397f tcp_parse_options +EXPORT_SYMBOL vmlinux 0x14842844 mark_page_accessed EXPORT_SYMBOL vmlinux 0x1486ded2 dma_fence_allocate_private_stub -EXPORT_SYMBOL vmlinux 0x148d121d blk_mq_free_tag_set -EXPORT_SYMBOL vmlinux 0x149854c0 flow_rule_match_enc_opts -EXPORT_SYMBOL vmlinux 0x14b04940 __hw_addr_unsync_dev +EXPORT_SYMBOL vmlinux 0x1487a296 tcp_simple_retransmit +EXPORT_SYMBOL vmlinux 0x148b788e tcp_openreq_init_rwin +EXPORT_SYMBOL vmlinux 0x14a287ef dev_set_mtu EXPORT_SYMBOL vmlinux 0x14b89635 arm64_const_caps_ready -EXPORT_SYMBOL vmlinux 0x14be1be1 fget -EXPORT_SYMBOL vmlinux 0x14bf2e13 sdev_prefix_printk -EXPORT_SYMBOL vmlinux 0x14c11125 follow_down -EXPORT_SYMBOL vmlinux 0x14c38606 d_invalidate EXPORT_SYMBOL vmlinux 0x14c67e3e tcp_tx_delay_enabled -EXPORT_SYMBOL vmlinux 0x14c75f87 dm_get_device -EXPORT_SYMBOL vmlinux 0x14c94e9b readahead_expand -EXPORT_SYMBOL vmlinux 0x14e3db47 dev_uc_init +EXPORT_SYMBOL vmlinux 0x14cd9a0d acpi_bus_register_driver +EXPORT_SYMBOL vmlinux 0x14d29dfc pnp_device_detach +EXPORT_SYMBOL vmlinux 0x14dfb84e tty_port_open EXPORT_SYMBOL vmlinux 0x14f45fcc bman_free_pool -EXPORT_SYMBOL vmlinux 0x14f7401b pci_get_class -EXPORT_SYMBOL vmlinux 0x14fc5c52 f_setown -EXPORT_SYMBOL vmlinux 0x14ff47c5 fb_firmware_edid -EXPORT_SYMBOL vmlinux 0x150c816f mmc_start_request -EXPORT_SYMBOL vmlinux 0x15119d2a account_page_redirty +EXPORT_SYMBOL vmlinux 0x14fb5a3d vlan_filter_push_vids +EXPORT_SYMBOL vmlinux 0x151103ad dquot_quota_on_mount +EXPORT_SYMBOL vmlinux 0x1511dcfb con_set_default_unimap EXPORT_SYMBOL vmlinux 0x151f4898 schedule_timeout_uninterruptible +EXPORT_SYMBOL vmlinux 0x152516a3 blk_queue_split EXPORT_SYMBOL vmlinux 0x1526b301 unix_tot_inflight -EXPORT_SYMBOL vmlinux 0x15392c32 tcp_ioctl +EXPORT_SYMBOL vmlinux 0x153518f9 alloc_fcdev +EXPORT_SYMBOL vmlinux 0x153f0578 vfs_rmdir +EXPORT_SYMBOL vmlinux 0x1549d34b vme_unregister_driver EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy -EXPORT_SYMBOL vmlinux 0x155ed622 dm_table_event -EXPORT_SYMBOL vmlinux 0x1567f2ca skb_queue_head -EXPORT_SYMBOL vmlinux 0x1574a9b8 from_kprojid_munged -EXPORT_SYMBOL vmlinux 0x1580e08c update_devfreq -EXPORT_SYMBOL vmlinux 0x1586071f cros_ec_prepare_tx -EXPORT_SYMBOL vmlinux 0x158fa259 of_device_is_big_endian -EXPORT_SYMBOL vmlinux 0x15915b10 tcf_exts_dump -EXPORT_SYMBOL vmlinux 0x15934fa9 bio_put -EXPORT_SYMBOL vmlinux 0x15963531 mmc_of_parse_clk_phase -EXPORT_SYMBOL vmlinux 0x159ed992 __put_page -EXPORT_SYMBOL vmlinux 0x15a6b009 generic_update_time -EXPORT_SYMBOL vmlinux 0x15a6c49d inet_dgram_connect -EXPORT_SYMBOL vmlinux 0x15a73107 t10_pi_type3_ip -EXPORT_SYMBOL vmlinux 0x15ad3972 dmaengine_get_unmap_data +EXPORT_SYMBOL vmlinux 0x1555bb77 config_item_get_unless_zero +EXPORT_SYMBOL vmlinux 0x15640ed9 sock_no_bind +EXPORT_SYMBOL vmlinux 0x15736c66 __dynamic_netdev_dbg +EXPORT_SYMBOL vmlinux 0x15790bc2 sock_bind_add +EXPORT_SYMBOL vmlinux 0x15a37d7e neigh_lookup_nodev +EXPORT_SYMBOL vmlinux 0x15b32fba balance_dirty_pages_ratelimited EXPORT_SYMBOL vmlinux 0x15ba50a6 jiffies EXPORT_SYMBOL vmlinux 0x15bafe29 unregister_md_cluster_operations EXPORT_SYMBOL vmlinux 0x15bed7a5 LZ4_decompress_safe_partial -EXPORT_SYMBOL vmlinux 0x15c38a8c mmc_is_req_done -EXPORT_SYMBOL vmlinux 0x15c3dd32 twl6040_power EXPORT_SYMBOL vmlinux 0x15c85de3 mempool_init -EXPORT_SYMBOL vmlinux 0x15d1a4d6 locks_copy_conflock -EXPORT_SYMBOL vmlinux 0x15f26582 dm_table_get_size -EXPORT_SYMBOL vmlinux 0x16031900 mroute6_is_socket -EXPORT_SYMBOL vmlinux 0x160bffb0 arp_tbl -EXPORT_SYMBOL vmlinux 0x16156f85 mipi_dsi_generic_read -EXPORT_SYMBOL vmlinux 0x1619f7ba dquot_set_dqblk +EXPORT_SYMBOL vmlinux 0x15e3d09e xfrm_input_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x15f458f4 vfs_llseek +EXPORT_SYMBOL vmlinux 0x15f48429 thaw_bdev +EXPORT_SYMBOL vmlinux 0x15fad76f mark_buffer_dirty_inode +EXPORT_SYMBOL vmlinux 0x160b6302 mfd_cell_enable +EXPORT_SYMBOL vmlinux 0x161510f8 I_BDEV +EXPORT_SYMBOL vmlinux 0x1619d96c param_set_bint +EXPORT_SYMBOL vmlinux 0x162697c4 xfrm_policy_byid EXPORT_SYMBOL vmlinux 0x162893fd hashlen_string EXPORT_SYMBOL vmlinux 0x16316a10 ZSTD_getFrameContentSize EXPORT_SYMBOL vmlinux 0x1632bc21 kvasprintf_const -EXPORT_SYMBOL vmlinux 0x1633bef2 page_pool_destroy -EXPORT_SYMBOL vmlinux 0x163c18fc dec_zone_page_state +EXPORT_SYMBOL vmlinux 0x16373312 input_get_keycode +EXPORT_SYMBOL vmlinux 0x163bcb89 __neigh_create EXPORT_SYMBOL vmlinux 0x163d2417 tegra_io_rail_power_off +EXPORT_SYMBOL vmlinux 0x164c8c89 jbd2_journal_clear_features +EXPORT_SYMBOL vmlinux 0x164d2135 xfrm_parse_spi +EXPORT_SYMBOL vmlinux 0x165622fd tty_vhangup +EXPORT_SYMBOL vmlinux 0x1659f6ba serial8250_do_pm EXPORT_SYMBOL vmlinux 0x165ad395 trace_print_symbols_seq -EXPORT_SYMBOL vmlinux 0x16688406 is_bad_inode -EXPORT_SYMBOL vmlinux 0x1679d8b9 drop_super +EXPORT_SYMBOL vmlinux 0x165e1898 register_filesystem +EXPORT_SYMBOL vmlinux 0x16616eef dec_node_page_state EXPORT_SYMBOL vmlinux 0x167c5967 print_hex_dump -EXPORT_SYMBOL vmlinux 0x168253b7 of_phy_connect EXPORT_SYMBOL vmlinux 0x169938c1 __sysfs_match_string -EXPORT_SYMBOL vmlinux 0x16a8e44d nd_device_notify +EXPORT_SYMBOL vmlinux 0x16a72092 ipv4_specific +EXPORT_SYMBOL vmlinux 0x16b18fb2 dev_get_port_parent_id +EXPORT_SYMBOL vmlinux 0x16b364c6 simple_transaction_set +EXPORT_SYMBOL vmlinux 0x16ba4c99 proc_create_data EXPORT_SYMBOL vmlinux 0x16cdc340 acpi_get_table -EXPORT_SYMBOL vmlinux 0x16d38414 ppp_register_compressor -EXPORT_SYMBOL vmlinux 0x16deacb7 security_path_mknod +EXPORT_SYMBOL vmlinux 0x16ce8590 qdisc_offload_dump_helper +EXPORT_SYMBOL vmlinux 0x16cef4da eth_header EXPORT_SYMBOL vmlinux 0x16dee44d dma_fence_init EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait EXPORT_SYMBOL vmlinux 0x16e7e2cb cpu_all_bits -EXPORT_SYMBOL vmlinux 0x16f53efb jbd2_trans_will_send_data_barrier -EXPORT_SYMBOL vmlinux 0x16fce735 rproc_vq_interrupt -EXPORT_SYMBOL vmlinux 0x170ce27b of_mdiobus_child_is_phy +EXPORT_SYMBOL vmlinux 0x16f4fcfa iw_handler_set_spy +EXPORT_SYMBOL vmlinux 0x16fea793 kthread_stop EXPORT_SYMBOL vmlinux 0x170ddf79 acpi_install_notify_handler -EXPORT_SYMBOL vmlinux 0x171863f5 __hw_addr_ref_unsync_dev -EXPORT_SYMBOL vmlinux 0x1724250f drop_nlink -EXPORT_SYMBOL vmlinux 0x17470c4e sock_recvmsg -EXPORT_SYMBOL vmlinux 0x17476641 tcp_disconnect -EXPORT_SYMBOL vmlinux 0x174a2c6e xfrm_init_state -EXPORT_SYMBOL vmlinux 0x176d6806 vfs_mkobj -EXPORT_SYMBOL vmlinux 0x176db370 dcb_ieee_getapp_mask +EXPORT_SYMBOL vmlinux 0x1719f7e5 find_get_pages_range_tag +EXPORT_SYMBOL vmlinux 0x171cbc9f rawv6_mh_filter_unregister +EXPORT_SYMBOL vmlinux 0x173c11f7 key_move +EXPORT_SYMBOL vmlinux 0x17433008 of_find_compatible_node +EXPORT_SYMBOL vmlinux 0x17439616 pci_enable_device +EXPORT_SYMBOL vmlinux 0x174bdf2a xfrm6_rcv_spi +EXPORT_SYMBOL vmlinux 0x176e6853 pnp_request_card_device EXPORT_SYMBOL vmlinux 0x17825d3f xudma_rchan_get EXPORT_SYMBOL vmlinux 0x178c4894 qe_upload_firmware -EXPORT_SYMBOL vmlinux 0x1790588a dquot_writeback_dquots -EXPORT_SYMBOL vmlinux 0x1799d0f3 phy_device_free -EXPORT_SYMBOL vmlinux 0x17bcdd53 sock_alloc_send_pskb -EXPORT_SYMBOL vmlinux 0x17bef546 rproc_coredump_add_segment -EXPORT_SYMBOL vmlinux 0x17c1f3a9 sock_no_socketpair -EXPORT_SYMBOL vmlinux 0x17c41e5a amba_driver_unregister -EXPORT_SYMBOL vmlinux 0x17c4e3c4 scsi_command_normalize_sense -EXPORT_SYMBOL vmlinux 0x17fd90a9 mmc_of_parse -EXPORT_SYMBOL vmlinux 0x1808d9eb pcie_get_mps -EXPORT_SYMBOL vmlinux 0x181436c0 generic_writepages -EXPORT_SYMBOL vmlinux 0x182f1b12 d_add +EXPORT_SYMBOL vmlinux 0x179efeee pci_map_rom +EXPORT_SYMBOL vmlinux 0x17ce8c5a netdev_master_upper_dev_get +EXPORT_SYMBOL vmlinux 0x17e62b18 __bio_clone_fast +EXPORT_SYMBOL vmlinux 0x17e728aa __ip_options_compile +EXPORT_SYMBOL vmlinux 0x18016ba3 dma_supported +EXPORT_SYMBOL vmlinux 0x180d2c0d dcb_ieee_getapp_dscp_prio_mask_map +EXPORT_SYMBOL vmlinux 0x18184886 scsi_add_host_with_dma EXPORT_SYMBOL vmlinux 0x18345b8e __bitmap_replace -EXPORT_SYMBOL vmlinux 0x183e398b max8925_set_bits -EXPORT_SYMBOL vmlinux 0x1845c59e ip_options_compile -EXPORT_SYMBOL vmlinux 0x185765c9 tcf_qevent_handle +EXPORT_SYMBOL vmlinux 0x18421793 textsearch_destroy +EXPORT_SYMBOL vmlinux 0x184c3f0e keyring_alloc +EXPORT_SYMBOL vmlinux 0x18526ad6 input_reset_device +EXPORT_SYMBOL vmlinux 0x18705234 dev_pick_tx_cpu_id +EXPORT_SYMBOL vmlinux 0x18771b61 netdev_set_num_tc EXPORT_SYMBOL vmlinux 0x187884a8 cpm_muram_free -EXPORT_SYMBOL vmlinux 0x187dc11d input_get_keycode -EXPORT_SYMBOL vmlinux 0x18830bc5 __mdiobus_write EXPORT_SYMBOL vmlinux 0x18888d00 downgrade_write EXPORT_SYMBOL vmlinux 0x188ea314 jiffies_to_timespec64 -EXPORT_SYMBOL vmlinux 0x188f07ce tc_setup_cb_replace -EXPORT_SYMBOL vmlinux 0x1896f865 __alloc_pages +EXPORT_SYMBOL vmlinux 0x18971381 security_sock_rcv_skb +EXPORT_SYMBOL vmlinux 0x18a22f6b seq_dentry +EXPORT_SYMBOL vmlinux 0x18a24b26 filemap_page_mkwrite +EXPORT_SYMBOL vmlinux 0x18a2b40a jbd2_journal_start_commit EXPORT_SYMBOL vmlinux 0x18b48e28 __memset_io -EXPORT_SYMBOL vmlinux 0x18c9adc2 __lock_sock_fast -EXPORT_SYMBOL vmlinux 0x18d1a4f4 pnpacpi_protocol -EXPORT_SYMBOL vmlinux 0x18d89c2a nd_namespace_blk_validate -EXPORT_SYMBOL vmlinux 0x18e41b2c phy_ethtool_get_stats +EXPORT_SYMBOL vmlinux 0x18b7e7ff ethtool_notify +EXPORT_SYMBOL vmlinux 0x18c2c882 fscrypt_decrypt_pagecache_blocks EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start -EXPORT_SYMBOL vmlinux 0x18ff40a5 locks_init_lock +EXPORT_SYMBOL vmlinux 0x18e7c83c __f_setown +EXPORT_SYMBOL vmlinux 0x18e936a5 set_create_files_as +EXPORT_SYMBOL vmlinux 0x19066a92 block_commit_write EXPORT_SYMBOL vmlinux 0x190a48a9 efi -EXPORT_SYMBOL vmlinux 0x19206a7f tcf_block_get_ext -EXPORT_SYMBOL vmlinux 0x192a07f7 md_bitmap_unplug -EXPORT_SYMBOL vmlinux 0x1944f900 register_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x190c00aa dquot_alloc +EXPORT_SYMBOL vmlinux 0x19130675 d_obtain_alias +EXPORT_SYMBOL vmlinux 0x19274c67 acpi_processor_notify_smm +EXPORT_SYMBOL vmlinux 0x19431de6 acpi_bus_unregister_driver +EXPORT_SYMBOL vmlinux 0x19517b3a get_bitmap_from_slot EXPORT_SYMBOL vmlinux 0x1953c958 mempool_create -EXPORT_SYMBOL vmlinux 0x196783ce __cgroup_bpf_run_filter_sock_addr -EXPORT_SYMBOL vmlinux 0x196c87f3 passthru_features_check -EXPORT_SYMBOL vmlinux 0x19848f13 jbd2_journal_revoke +EXPORT_SYMBOL vmlinux 0x1962c867 nobh_writepage +EXPORT_SYMBOL vmlinux 0x1972f181 nobh_write_end EXPORT_SYMBOL vmlinux 0x1984d421 out_of_line_wait_on_bit EXPORT_SYMBOL vmlinux 0x198620d7 security_add_mnt_opt -EXPORT_SYMBOL vmlinux 0x199a0475 devm_request_resource EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp -EXPORT_SYMBOL vmlinux 0x19a44d68 unregister_md_personality EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec -EXPORT_SYMBOL vmlinux 0x19ca550c md_integrity_add_rdev -EXPORT_SYMBOL vmlinux 0x19d2fdbf mdio_device_remove -EXPORT_SYMBOL vmlinux 0x19fb9c3a gro_find_receive_by_type +EXPORT_SYMBOL vmlinux 0x19d57672 pldmfw_op_pci_match_record +EXPORT_SYMBOL vmlinux 0x19f85178 tegra_ahb_enable_smmu +EXPORT_SYMBOL vmlinux 0x1a0328db pci_set_power_state +EXPORT_SYMBOL vmlinux 0x1a130153 register_fib_notifier +EXPORT_SYMBOL vmlinux 0x1a15c8c7 eth_platform_get_mac_address EXPORT_SYMBOL vmlinux 0x1a1bac9c ZSTD_decompressDCtx -EXPORT_SYMBOL vmlinux 0x1a25e6d4 setup_arg_pages -EXPORT_SYMBOL vmlinux 0x1a28a0bd skb_ext_add +EXPORT_SYMBOL vmlinux 0x1a3e38a4 rproc_get_by_phandle EXPORT_SYMBOL vmlinux 0x1a45cb6c acpi_disabled -EXPORT_SYMBOL vmlinux 0x1a862633 mmc_add_host -EXPORT_SYMBOL vmlinux 0x1a94cf25 ethtool_get_phc_vclocks +EXPORT_SYMBOL vmlinux 0x1a4df0ac wireless_send_event +EXPORT_SYMBOL vmlinux 0x1a5af906 __blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0x1a5b114d phy_ethtool_ksettings_set EXPORT_SYMBOL vmlinux 0x1a9a433c prandom_u32_state -EXPORT_SYMBOL vmlinux 0x1aa34ce7 devm_kvasprintf -EXPORT_SYMBOL vmlinux 0x1aad0fa2 input_inject_event -EXPORT_SYMBOL vmlinux 0x1ab03f9d __xfrm_policy_check +EXPORT_SYMBOL vmlinux 0x1aa17ac3 genphy_restart_aneg +EXPORT_SYMBOL vmlinux 0x1aa6ab5c skb_try_coalesce EXPORT_SYMBOL vmlinux 0x1ac5d3cb strcspn -EXPORT_SYMBOL vmlinux 0x1ad1daeb fb_set_suspend -EXPORT_SYMBOL vmlinux 0x1ae5846d of_xudma_dev_get -EXPORT_SYMBOL vmlinux 0x1af0d24e fs_context_for_mount +EXPORT_SYMBOL vmlinux 0x1acdb81c tcp_create_openreq_child EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist -EXPORT_SYMBOL vmlinux 0x1b1d9f99 crypto_sha256_finup -EXPORT_SYMBOL vmlinux 0x1b3b4a8c ip_route_me_harder -EXPORT_SYMBOL vmlinux 0x1b3c2070 wait_on_page_private_2 -EXPORT_SYMBOL vmlinux 0x1b47102e generic_mii_ioctl +EXPORT_SYMBOL vmlinux 0x1b05679b fman_get_revision +EXPORT_SYMBOL vmlinux 0x1b1a0356 ip_cmsg_recv_offset +EXPORT_SYMBOL vmlinux 0x1b24d11d bio_integrity_trim +EXPORT_SYMBOL vmlinux 0x1b2772b6 of_device_register EXPORT_SYMBOL vmlinux 0x1b5196fc xudma_tchan_put EXPORT_SYMBOL vmlinux 0x1b597b7a swake_up_all -EXPORT_SYMBOL vmlinux 0x1b5ac12e netif_receive_skb -EXPORT_SYMBOL vmlinux 0x1b617edf dma_find_channel EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton EXPORT_SYMBOL vmlinux 0x1b777357 rdmacg_unregister_device -EXPORT_SYMBOL vmlinux 0x1b778908 sk_common_release -EXPORT_SYMBOL vmlinux 0x1b7a60cc jbd2_journal_get_undo_access -EXPORT_SYMBOL vmlinux 0x1b8dd989 devm_get_clk_from_child +EXPORT_SYMBOL vmlinux 0x1b7d0191 blk_cleanup_disk +EXPORT_SYMBOL vmlinux 0x1b8c4f90 generic_iommu_put_resv_regions +EXPORT_SYMBOL vmlinux 0x1b9bd09b alloc_skb_with_frags +EXPORT_SYMBOL vmlinux 0x1ba231b0 ip6mr_rule_default EXPORT_SYMBOL vmlinux 0x1ba59527 __kmalloc_node -EXPORT_SYMBOL vmlinux 0x1bb354f5 bio_integrity_add_page EXPORT_SYMBOL vmlinux 0x1bb51249 tcp_have_smc EXPORT_SYMBOL vmlinux 0x1bb86b9a xen_start_info -EXPORT_SYMBOL vmlinux 0x1bd09bd9 neigh_resolve_output +EXPORT_SYMBOL vmlinux 0x1bce739a bd_abort_claiming EXPORT_SYMBOL vmlinux 0x1bd59dbe vme_free_consistent -EXPORT_SYMBOL vmlinux 0x1c0e68ff nf_setsockopt -EXPORT_SYMBOL vmlinux 0x1c2536d4 fb_get_buffer_offset -EXPORT_SYMBOL vmlinux 0x1c26dd09 of_platform_bus_probe -EXPORT_SYMBOL vmlinux 0x1c285c80 __dquot_free_space -EXPORT_SYMBOL vmlinux 0x1c2ab990 tegra_ahb_enable_smmu -EXPORT_SYMBOL vmlinux 0x1c462e1f bio_integrity_prep +EXPORT_SYMBOL vmlinux 0x1bea8683 seq_puts +EXPORT_SYMBOL vmlinux 0x1c092974 seq_put_decimal_ll +EXPORT_SYMBOL vmlinux 0x1c187ce5 udp_prot +EXPORT_SYMBOL vmlinux 0x1c2b2ff7 iov_iter_npages +EXPORT_SYMBOL vmlinux 0x1c2f06b5 inet_sk_rebuild_header +EXPORT_SYMBOL vmlinux 0x1c38af10 sock_create_kern +EXPORT_SYMBOL vmlinux 0x1c429305 simple_nosetlease EXPORT_SYMBOL vmlinux 0x1c58427f acpi_remove_notify_handler EXPORT_SYMBOL vmlinux 0x1c5e3878 icst525_idx2s -EXPORT_SYMBOL vmlinux 0x1c604ab9 xfrm4_protocol_deregister -EXPORT_SYMBOL vmlinux 0x1c6edb42 generic_file_llseek_size -EXPORT_SYMBOL vmlinux 0x1c721e96 __blockdev_direct_IO -EXPORT_SYMBOL vmlinux 0x1c828e25 phy_modify_paged_changed -EXPORT_SYMBOL vmlinux 0x1c83643c mipi_dsi_dcs_enter_sleep_mode -EXPORT_SYMBOL vmlinux 0x1cb0a4c6 __d_drop +EXPORT_SYMBOL vmlinux 0x1c8b8272 netdev_features_change +EXPORT_SYMBOL vmlinux 0x1c9980e5 nf_log_register +EXPORT_SYMBOL vmlinux 0x1ca46f58 prepare_to_swait_event EXPORT_SYMBOL vmlinux 0x1cb11044 inetpeer_invalidate_tree -EXPORT_SYMBOL vmlinux 0x1cb23d30 get_user_pages_remote -EXPORT_SYMBOL vmlinux 0x1cb7a1b3 lock_rename EXPORT_SYMBOL vmlinux 0x1cc11154 __SCK__tp_func_mmap_lock_start_locking -EXPORT_SYMBOL vmlinux 0x1cc24165 remove_proc_entry -EXPORT_SYMBOL vmlinux 0x1cc2a576 mmc_can_secure_erase_trim -EXPORT_SYMBOL vmlinux 0x1ccafd3f param_get_charp -EXPORT_SYMBOL vmlinux 0x1ccd5e3a unregister_netdevice_notifier_net -EXPORT_SYMBOL vmlinux 0x1cd1d152 jbd2_journal_ack_err +EXPORT_SYMBOL vmlinux 0x1ccff0b9 i2c_smbus_write_byte_data +EXPORT_SYMBOL vmlinux 0x1cd76748 pci_get_class EXPORT_SYMBOL vmlinux 0x1cd8438b pxm_to_node -EXPORT_SYMBOL vmlinux 0x1cdbeb1f scsi_scan_host EXPORT_SYMBOL vmlinux 0x1cdd39ba logic_outsl -EXPORT_SYMBOL vmlinux 0x1cedf3f8 tty_driver_kref_put -EXPORT_SYMBOL vmlinux 0x1cf06de5 dev_pm_opp_unregister_notifier +EXPORT_SYMBOL vmlinux 0x1cf0ff71 pci_request_regions_exclusive EXPORT_SYMBOL vmlinux 0x1cf5efa6 xudma_rflow_get_id -EXPORT_SYMBOL vmlinux 0x1cf67942 fman_port_bind -EXPORT_SYMBOL vmlinux 0x1cfcc912 __filemap_set_wb_err +EXPORT_SYMBOL vmlinux 0x1cfe07fc input_register_handle +EXPORT_SYMBOL vmlinux 0x1d02f6a6 configfs_register_default_group EXPORT_SYMBOL vmlinux 0x1d07e365 memdup_user_nul -EXPORT_SYMBOL vmlinux 0x1d16a962 dma_sync_single_for_device EXPORT_SYMBOL vmlinux 0x1d1abdf0 acpi_get_physical_device_location +EXPORT_SYMBOL vmlinux 0x1d1f6a53 phy_sfp_probe EXPORT_SYMBOL vmlinux 0x1d24c881 ___ratelimit -EXPORT_SYMBOL vmlinux 0x1d25a18d xfrm_state_check_expire EXPORT_SYMBOL vmlinux 0x1d2d6d15 wait_iff_congested +EXPORT_SYMBOL vmlinux 0x1d3d991c pcie_print_link_status EXPORT_SYMBOL vmlinux 0x1d40b6f3 idr_for_each -EXPORT_SYMBOL vmlinux 0x1d4d4f18 blk_queue_split +EXPORT_SYMBOL vmlinux 0x1d44d3bc security_tun_dev_attach +EXPORT_SYMBOL vmlinux 0x1d581055 jbd2_submit_inode_data EXPORT_SYMBOL vmlinux 0x1d5cedae __tracepoint_kfree -EXPORT_SYMBOL vmlinux 0x1d5f79a4 __brelse -EXPORT_SYMBOL vmlinux 0x1d8caf4d pcie_capability_write_word -EXPORT_SYMBOL vmlinux 0x1db91c1e mmc_detect_change -EXPORT_SYMBOL vmlinux 0x1db9941d kobject_get -EXPORT_SYMBOL vmlinux 0x1dbe226a vfs_parse_fs_param -EXPORT_SYMBOL vmlinux 0x1dc12a13 blk_mq_rq_cpu +EXPORT_SYMBOL vmlinux 0x1d5f3533 of_io_request_and_map +EXPORT_SYMBOL vmlinux 0x1d857e78 of_get_next_child +EXPORT_SYMBOL vmlinux 0x1d8a1b91 sock_create_lite +EXPORT_SYMBOL vmlinux 0x1d93a367 fscrypt_zeroout_range +EXPORT_SYMBOL vmlinux 0x1d96884b truncate_inode_pages_final +EXPORT_SYMBOL vmlinux 0x1db7751a inet_dev_addr_type +EXPORT_SYMBOL vmlinux 0x1dc61794 genphy_handle_interrupt_no_ack EXPORT_SYMBOL vmlinux 0x1dc6c93b lookup_user_key -EXPORT_SYMBOL vmlinux 0x1dca22cb mr_fill_mroute EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap -EXPORT_SYMBOL vmlinux 0x1ddd643c flow_hash_from_keys -EXPORT_SYMBOL vmlinux 0x1de2536b jbd2_journal_check_used_features 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 0x1df2eb1e write_dirty_buffer -EXPORT_SYMBOL vmlinux 0x1df9e2b9 input_mt_report_slot_state +EXPORT_SYMBOL vmlinux 0x1df877d4 inet_twsk_deschedule_put +EXPORT_SYMBOL vmlinux 0x1e00e3b1 tcf_idr_cleanup 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 0x1e0dd4dd ip4_datagram_connect -EXPORT_SYMBOL vmlinux 0x1e149b1a ip6tun_encaps +EXPORT_SYMBOL vmlinux 0x1e1062be jbd2_fc_end_commit +EXPORT_SYMBOL vmlinux 0x1e118f5b skb_prepare_seq_read +EXPORT_SYMBOL vmlinux 0x1e160278 pcim_iomap_regions_request_all +EXPORT_SYMBOL vmlinux 0x1e161871 scsi_is_sdev_device EXPORT_SYMBOL vmlinux 0x1e1e140e ns_to_timespec64 -EXPORT_SYMBOL vmlinux 0x1e2e537d netdev_has_any_upper_dev -EXPORT_SYMBOL vmlinux 0x1e5e0577 input_grab_device +EXPORT_SYMBOL vmlinux 0x1e39ba8e cleancache_register_ops +EXPORT_SYMBOL vmlinux 0x1e462e93 ip_queue_xmit +EXPORT_SYMBOL vmlinux 0x1e4ef19b netdev_next_lower_dev_rcu +EXPORT_SYMBOL vmlinux 0x1e6679f0 param_ops_int +EXPORT_SYMBOL vmlinux 0x1e6a22f5 sock_no_sendpage EXPORT_SYMBOL vmlinux 0x1e6adaa0 bitmap_print_bitmask_to_buf -EXPORT_SYMBOL vmlinux 0x1e6cd1d2 dev_get_mac_address EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr -EXPORT_SYMBOL vmlinux 0x1e735466 seg6_hmac_info_del -EXPORT_SYMBOL vmlinux 0x1e83c3be pci_fixup_cardbus +EXPORT_SYMBOL vmlinux 0x1e8782ac fault_in_iov_iter_writeable +EXPORT_SYMBOL vmlinux 0x1e94fe5f inode_newsize_ok EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu -EXPORT_SYMBOL vmlinux 0x1e9fe75e pagecache_isize_extended -EXPORT_SYMBOL vmlinux 0x1ea28ea0 sock_cmsg_send -EXPORT_SYMBOL vmlinux 0x1eba55c2 tso_start +EXPORT_SYMBOL vmlinux 0x1ea254be xfrm_policy_flush +EXPORT_SYMBOL vmlinux 0x1ed34269 d_find_any_alias +EXPORT_SYMBOL vmlinux 0x1ed5612e page_pool_release_page +EXPORT_SYMBOL vmlinux 0x1ed56a28 rproc_add_subdev EXPORT_SYMBOL vmlinux 0x1ed7eb60 __sg_free_table EXPORT_SYMBOL vmlinux 0x1edb69d6 ktime_get_raw_ts64 -EXPORT_SYMBOL vmlinux 0x1f0a6947 flush_dcache_page -EXPORT_SYMBOL vmlinux 0x1f12f714 of_chosen -EXPORT_SYMBOL vmlinux 0x1f23a91a scsi_add_device -EXPORT_SYMBOL vmlinux 0x1f2f0bb5 dst_init -EXPORT_SYMBOL vmlinux 0x1f376c9e xfrm6_rcv_spi +EXPORT_SYMBOL vmlinux 0x1ee6233c nf_register_queue_handler +EXPORT_SYMBOL vmlinux 0x1ef0a878 jbd2_journal_flush +EXPORT_SYMBOL vmlinux 0x1ef416e4 xfrm_state_flush +EXPORT_SYMBOL vmlinux 0x1f1b5e5d tc_setup_flow_action +EXPORT_SYMBOL vmlinux 0x1f245120 blk_rq_map_integrity_sg +EXPORT_SYMBOL vmlinux 0x1f29388e sock_alloc_send_skb +EXPORT_SYMBOL vmlinux 0x1f4e5b13 seg6_hmac_info_del EXPORT_SYMBOL vmlinux 0x1f557414 gen_pool_has_addr -EXPORT_SYMBOL vmlinux 0x1f65fa68 iommu_put_dma_cookie -EXPORT_SYMBOL vmlinux 0x1f673446 filemap_range_has_page -EXPORT_SYMBOL vmlinux 0x1f7c8478 scsi_host_lookup -EXPORT_SYMBOL vmlinux 0x1f869439 pldmfw_flash_image -EXPORT_SYMBOL vmlinux 0x1f94c45e netdev_err -EXPORT_SYMBOL vmlinux 0x1fa42545 scsi_report_device_reset -EXPORT_SYMBOL vmlinux 0x1fb5c1e5 inet_sock_destruct +EXPORT_SYMBOL vmlinux 0x1f56f32b __put_page +EXPORT_SYMBOL vmlinux 0x1f60d1ff bdevname +EXPORT_SYMBOL vmlinux 0x1f8b4dad of_find_node_by_name +EXPORT_SYMBOL vmlinux 0x1f97c1c5 jbd2_journal_destroy +EXPORT_SYMBOL vmlinux 0x1f9a3893 of_translate_address +EXPORT_SYMBOL vmlinux 0x1fac4423 iter_file_splice_write +EXPORT_SYMBOL vmlinux 0x1fac774c md_check_recovery EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio -EXPORT_SYMBOL vmlinux 0x1fc4af6b register_fib_notifier -EXPORT_SYMBOL vmlinux 0x1fc53946 kmem_cache_free_bulk EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag -EXPORT_SYMBOL vmlinux 0x1fd9ddc2 nobh_truncate_page -EXPORT_SYMBOL vmlinux 0x1ff26a9c validate_slab_cache -EXPORT_SYMBOL vmlinux 0x1ff3fab1 __traceiter_mmap_lock_start_locking -EXPORT_SYMBOL vmlinux 0x1ff408d9 d_genocide -EXPORT_SYMBOL vmlinux 0x1fff5eb1 serial8250_set_isa_configurator +EXPORT_SYMBOL vmlinux 0x1fd542b6 make_bad_inode +EXPORT_SYMBOL vmlinux 0x1fd8d662 mr_table_alloc +EXPORT_SYMBOL vmlinux 0x1ff64a0d ptp_clock_register EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul -EXPORT_SYMBOL vmlinux 0x2002b89e vfs_parse_fs_param_source +EXPORT_SYMBOL vmlinux 0x2009e984 truncate_pagecache_range EXPORT_SYMBOL vmlinux 0x200b2041 in6addr_any -EXPORT_SYMBOL vmlinux 0x200c04fc jbd2_log_wait_commit -EXPORT_SYMBOL vmlinux 0x201173f6 kernel_connect -EXPORT_SYMBOL vmlinux 0x203692ec set_nlink -EXPORT_SYMBOL vmlinux 0x2037a809 i2c_smbus_write_byte -EXPORT_SYMBOL vmlinux 0x203808e5 inet6_csk_route_req -EXPORT_SYMBOL vmlinux 0x203bab08 fwnode_mdio_find_device +EXPORT_SYMBOL vmlinux 0x20127548 pcie_capability_clear_and_set_word +EXPORT_SYMBOL vmlinux 0x20173af0 bdi_put EXPORT_SYMBOL vmlinux 0x20463df4 wait_for_completion_killable EXPORT_SYMBOL vmlinux 0x204af5b5 netlbl_audit_start -EXPORT_SYMBOL vmlinux 0x204b0afe d_delete EXPORT_SYMBOL vmlinux 0x204c19f5 tcp_alloc_md5sig_pool EXPORT_SYMBOL vmlinux 0x204c5067 scsi_dev_info_add_list -EXPORT_SYMBOL vmlinux 0x20647623 param_ops_hexint -EXPORT_SYMBOL vmlinux 0x206751b9 xp_dma_unmap -EXPORT_SYMBOL vmlinux 0x207bbf13 neigh_update -EXPORT_SYMBOL vmlinux 0x208196bd xfrm_state_lookup_byaddr -EXPORT_SYMBOL vmlinux 0x2087f338 tcp_recvmsg -EXPORT_SYMBOL vmlinux 0x208919c0 shrink_dcache_parent -EXPORT_SYMBOL vmlinux 0x208e45fd security_sk_classify_flow -EXPORT_SYMBOL vmlinux 0x20a3d80c sk_capable +EXPORT_SYMBOL vmlinux 0x20672c2a dquot_commit_info +EXPORT_SYMBOL vmlinux 0x2075f6ee pnp_possible_config +EXPORT_SYMBOL vmlinux 0x20a13dac __generic_file_write_iter EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data -EXPORT_SYMBOL vmlinux 0x20bab50d d_splice_alias +EXPORT_SYMBOL vmlinux 0x20b7fbda __dec_node_page_state +EXPORT_SYMBOL vmlinux 0x20c5022c simple_dir_operations EXPORT_SYMBOL vmlinux 0x20cbb30a __percpu_counter_init -EXPORT_SYMBOL vmlinux 0x20d5626f xp_can_alloc EXPORT_SYMBOL vmlinux 0x20d65e40 fb_find_nearest_mode -EXPORT_SYMBOL vmlinux 0x20d76d87 fscrypt_free_inode +EXPORT_SYMBOL vmlinux 0x20dd9d20 netif_set_real_num_tx_queues EXPORT_SYMBOL vmlinux 0x20eadeb6 ip_compute_csum -EXPORT_SYMBOL vmlinux 0x20f70d31 bdi_register EXPORT_SYMBOL vmlinux 0x20fff6ec ZSTD_DStreamInSize EXPORT_SYMBOL vmlinux 0x21059cd7 audit_log_task_context -EXPORT_SYMBOL vmlinux 0x21207ff7 pci_write_config_dword -EXPORT_SYMBOL vmlinux 0x212fc5bb generic_parse_monolithic -EXPORT_SYMBOL vmlinux 0x2130c0b5 __cleancache_invalidate_fs +EXPORT_SYMBOL vmlinux 0x211b7552 cad_pid +EXPORT_SYMBOL vmlinux 0x21320340 nf_ct_attach +EXPORT_SYMBOL vmlinux 0x2136e032 load_nls_default EXPORT_SYMBOL vmlinux 0x213a738d memregion_alloc -EXPORT_SYMBOL vmlinux 0x213bb0ab iov_iter_alignment EXPORT_SYMBOL vmlinux 0x213e4965 ps2_is_keyboard_id +EXPORT_SYMBOL vmlinux 0x21450d17 seq_pad +EXPORT_SYMBOL vmlinux 0x214eb50d simple_unlink EXPORT_SYMBOL vmlinux 0x215a8ec8 slhc_init -EXPORT_SYMBOL vmlinux 0x215e38a4 netlink_ns_capable +EXPORT_SYMBOL vmlinux 0x215f1590 arp_create +EXPORT_SYMBOL vmlinux 0x216b7525 filemap_fault EXPORT_SYMBOL vmlinux 0x218e600b pci_add_resource_offset -EXPORT_SYMBOL vmlinux 0x21943faf param_set_hexint -EXPORT_SYMBOL vmlinux 0x21a0c85a ip_sock_set_mtu_discover -EXPORT_SYMBOL vmlinux 0x21adf6d1 elevator_alloc +EXPORT_SYMBOL vmlinux 0x218eeee6 __break_lease +EXPORT_SYMBOL vmlinux 0x218ef5f0 ata_dev_printk +EXPORT_SYMBOL vmlinux 0x21b1dfc7 mmc_remove_host +EXPORT_SYMBOL vmlinux 0x21b99b5e sock_rfree +EXPORT_SYMBOL vmlinux 0x21bac1d4 input_mt_destroy_slots EXPORT_SYMBOL vmlinux 0x21bdb523 errseq_check_and_advance EXPORT_SYMBOL vmlinux 0x21be37e1 hdmi_avi_infoframe_check -EXPORT_SYMBOL vmlinux 0x21c4fd3d vfs_get_super -EXPORT_SYMBOL vmlinux 0x21c6b5ab uart_match_port +EXPORT_SYMBOL vmlinux 0x21d2efe5 phys_mem_access_prot +EXPORT_SYMBOL vmlinux 0x21d366a1 iov_iter_discard EXPORT_SYMBOL vmlinux 0x21e13cb3 inet_peer_xrlim_allow EXPORT_SYMBOL vmlinux 0x21ef374c try_wait_for_completion -EXPORT_SYMBOL vmlinux 0x21f03847 noop_fsync -EXPORT_SYMBOL vmlinux 0x220648dc uart_resume_port +EXPORT_SYMBOL vmlinux 0x21f8fccd rproc_shutdown EXPORT_SYMBOL vmlinux 0x220c7021 tegra_io_pad_power_disable -EXPORT_SYMBOL vmlinux 0x220fec34 mmc_cqe_post_req +EXPORT_SYMBOL vmlinux 0x2218915e genlmsg_multicast_allns +EXPORT_SYMBOL vmlinux 0x221fb6a2 seq_read +EXPORT_SYMBOL vmlinux 0x2221fadb ipv6_dev_get_saddr EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq EXPORT_SYMBOL vmlinux 0x2234ca51 acpi_match_platform_list +EXPORT_SYMBOL vmlinux 0x223734ba phy_set_sym_pause +EXPORT_SYMBOL vmlinux 0x223ddcf7 t10_pi_type3_crc EXPORT_SYMBOL vmlinux 0x224ce651 xudma_free_gp_rflow_range -EXPORT_SYMBOL vmlinux 0x22566c61 xfrm_unregister_type_offload -EXPORT_SYMBOL vmlinux 0x22593ff9 write_cache_pages -EXPORT_SYMBOL vmlinux 0x225bde09 scsi_device_resume -EXPORT_SYMBOL vmlinux 0x2275faed _copy_to_iter -EXPORT_SYMBOL vmlinux 0x22ab5d30 ppp_unregister_channel -EXPORT_SYMBOL vmlinux 0x22abccf8 is_nd_pfn -EXPORT_SYMBOL vmlinux 0x22ac18c1 kernel_param_lock +EXPORT_SYMBOL vmlinux 0x2262d69c scsi_register_driver +EXPORT_SYMBOL vmlinux 0x228b4c3a devm_devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0x2296def7 init_net EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound -EXPORT_SYMBOL vmlinux 0x22beeb64 register_cdrom -EXPORT_SYMBOL vmlinux 0x22c0ce6d cdrom_check_events -EXPORT_SYMBOL vmlinux 0x22d652f4 copy_page_from_iter -EXPORT_SYMBOL vmlinux 0x22ec99e3 vfs_create -EXPORT_SYMBOL vmlinux 0x22f9156a __tty_insert_flip_char -EXPORT_SYMBOL vmlinux 0x231339cb reuseport_add_sock -EXPORT_SYMBOL vmlinux 0x2326ca55 sock_no_sendmsg -EXPORT_SYMBOL vmlinux 0x232ef671 flow_block_cb_alloc -EXPORT_SYMBOL vmlinux 0x233b4664 dma_sync_single_for_cpu -EXPORT_SYMBOL vmlinux 0x233e80ee rproc_elf_sanity_check -EXPORT_SYMBOL vmlinux 0x23400090 tcf_action_set_ctrlact -EXPORT_SYMBOL vmlinux 0x2347ae76 iterate_supers_type -EXPORT_SYMBOL vmlinux 0x23494be1 mark_info_dirty -EXPORT_SYMBOL vmlinux 0x234c123b flow_indr_dev_setup_offload +EXPORT_SYMBOL vmlinux 0x22b49747 stop_tty +EXPORT_SYMBOL vmlinux 0x22cf3c29 security_inode_getsecctx +EXPORT_SYMBOL vmlinux 0x22d5412b fman_unregister_intr +EXPORT_SYMBOL vmlinux 0x22e4b477 inet_rcv_saddr_equal +EXPORT_SYMBOL vmlinux 0x22e9e8e8 dquot_quota_sync +EXPORT_SYMBOL vmlinux 0x2303b8fb nf_log_unset +EXPORT_SYMBOL vmlinux 0x23157ae4 inet6_add_protocol +EXPORT_SYMBOL vmlinux 0x2340634c do_SAK +EXPORT_SYMBOL vmlinux 0x23529066 genl_unregister_family EXPORT_SYMBOL vmlinux 0x23559c51 qman_oos_fq -EXPORT_SYMBOL vmlinux 0x23587201 vme_dma_list_free -EXPORT_SYMBOL vmlinux 0x2359dac2 neigh_seq_stop -EXPORT_SYMBOL vmlinux 0x23601bb7 netdev_unbind_sb_channel EXPORT_SYMBOL vmlinux 0x2364c85a tasklet_init -EXPORT_SYMBOL vmlinux 0x236c651f end_buffer_write_sync +EXPORT_SYMBOL vmlinux 0x23657e14 ip_tunnel_header_ops +EXPORT_SYMBOL vmlinux 0x2377c02c blk_mq_stop_hw_queues EXPORT_SYMBOL vmlinux 0x237a0b5c __traceiter_dma_fence_signaled -EXPORT_SYMBOL vmlinux 0x237af0ff xfrm_find_acq_byseq -EXPORT_SYMBOL vmlinux 0x2380734f blkdev_issue_write_same -EXPORT_SYMBOL vmlinux 0x23819c4b netif_tx_stop_all_queues +EXPORT_SYMBOL vmlinux 0x237d37d2 gro_find_complete_by_type +EXPORT_SYMBOL vmlinux 0x23808e4b nobh_truncate_page EXPORT_SYMBOL vmlinux 0x238b099f mipi_dsi_packet_format_is_short EXPORT_SYMBOL vmlinux 0x2391f725 irq_stat -EXPORT_SYMBOL vmlinux 0x23941ab1 inetdev_by_index -EXPORT_SYMBOL vmlinux 0x23a411a6 fs_param_is_u32 -EXPORT_SYMBOL vmlinux 0x23a7c0c2 of_graph_get_remote_node +EXPORT_SYMBOL vmlinux 0x2391f89e tcp_peek_len +EXPORT_SYMBOL vmlinux 0x23a12fbf devm_devfreq_register_notifier EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path -EXPORT_SYMBOL vmlinux 0x23bd789f __netif_napi_del -EXPORT_SYMBOL vmlinux 0x23c163cf ip6_find_1stfragopt -EXPORT_SYMBOL vmlinux 0x23c74519 trace_event_printf -EXPORT_SYMBOL vmlinux 0x23c942c8 path_put +EXPORT_SYMBOL vmlinux 0x23c54810 tcf_block_get EXPORT_SYMBOL vmlinux 0x23cabbb1 register_sysctl_paths +EXPORT_SYMBOL vmlinux 0x23cb3803 tty_port_destroy +EXPORT_SYMBOL vmlinux 0x23d0276e phy_driver_register EXPORT_SYMBOL vmlinux 0x23daa989 mipi_dsi_create_packet -EXPORT_SYMBOL vmlinux 0x23ea571f pnp_device_detach -EXPORT_SYMBOL vmlinux 0x23ec2643 sock_sendmsg +EXPORT_SYMBOL vmlinux 0x23e3252d try_to_free_buffers EXPORT_SYMBOL vmlinux 0x23ee13fd mb_cache_entry_find_first -EXPORT_SYMBOL vmlinux 0x23eeb416 tcf_action_update_stats -EXPORT_SYMBOL vmlinux 0x23f447a3 seq_puts EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node -EXPORT_SYMBOL vmlinux 0x240640a8 skb_page_frag_refill -EXPORT_SYMBOL vmlinux 0x24079e71 sync_blockdev +EXPORT_SYMBOL vmlinux 0x2405357e devm_register_netdev EXPORT_SYMBOL vmlinux 0x24212d86 __frontswap_invalidate_page -EXPORT_SYMBOL vmlinux 0x242b9187 __dynamic_dev_dbg -EXPORT_SYMBOL vmlinux 0x2435c485 mmc_run_bkops +EXPORT_SYMBOL vmlinux 0x2423eec1 register_netdevice_notifier_dev_net EXPORT_SYMBOL vmlinux 0x24428be5 strncpy_from_user -EXPORT_SYMBOL vmlinux 0x2445508f vm_map_pages_zero -EXPORT_SYMBOL vmlinux 0x2453c8ff pci_read_config_byte +EXPORT_SYMBOL vmlinux 0x2442f2b3 get_user_pages_locked +EXPORT_SYMBOL vmlinux 0x2446925a __skb_vlan_pop +EXPORT_SYMBOL vmlinux 0x244d87bd neigh_table_init +EXPORT_SYMBOL vmlinux 0x244ff5fe i2c_verify_adapter EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline -EXPORT_SYMBOL vmlinux 0x247954f6 rtnl_set_sk_err -EXPORT_SYMBOL vmlinux 0x24795ffb of_parse_phandle_with_args_map +EXPORT_SYMBOL vmlinux 0x245fd69b inode_owner_or_capable +EXPORT_SYMBOL vmlinux 0x2465759d kernel_sendpage_locked +EXPORT_SYMBOL vmlinux 0x2471ccd4 skb_copy_header +EXPORT_SYMBOL vmlinux 0x247c7067 mmc_cqe_recovery EXPORT_SYMBOL vmlinux 0x2484adc3 __kfifo_to_user_r -EXPORT_SYMBOL vmlinux 0x24880834 jbd2_journal_init_dev -EXPORT_SYMBOL vmlinux 0x2490bcb6 netif_rx_ni -EXPORT_SYMBOL vmlinux 0x24a50f4c generic_read_dir -EXPORT_SYMBOL vmlinux 0x24b402e4 put_disk -EXPORT_SYMBOL vmlinux 0x24b65f08 devm_nvmem_cell_put +EXPORT_SYMBOL vmlinux 0x2493d2dd sock_set_reuseaddr EXPORT_SYMBOL vmlinux 0x24d273d1 add_timer -EXPORT_SYMBOL vmlinux 0x24d571e4 __page_symlink -EXPORT_SYMBOL vmlinux 0x24df309a phy_get_eee_err -EXPORT_SYMBOL vmlinux 0x24e4cf7b pci_save_state -EXPORT_SYMBOL vmlinux 0x24ee5051 thaw_bdev -EXPORT_SYMBOL vmlinux 0x24ef8eae seq_lseek -EXPORT_SYMBOL vmlinux 0x24ef904b blk_queue_update_dma_pad -EXPORT_SYMBOL vmlinux 0x24f7a05c device_add_disk -EXPORT_SYMBOL vmlinux 0x25022c1e __blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0x250056c3 _dev_info EXPORT_SYMBOL vmlinux 0x2505bf18 kstrtol_from_user -EXPORT_SYMBOL vmlinux 0x25100e46 _dev_alert +EXPORT_SYMBOL vmlinux 0x250d8f62 tso_build_data EXPORT_SYMBOL vmlinux 0x252332f1 __SCK__tp_func_mmap_lock_released -EXPORT_SYMBOL vmlinux 0x25264dff skb_ensure_writable -EXPORT_SYMBOL vmlinux 0x2545c526 page_symlink_inode_operations -EXPORT_SYMBOL vmlinux 0x2549506c skb_try_coalesce -EXPORT_SYMBOL vmlinux 0x255d73f6 md_bitmap_update_sb +EXPORT_SYMBOL vmlinux 0x257bb666 single_release EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid +EXPORT_SYMBOL vmlinux 0x2584f6f3 skb_trim 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 0x25ab112f acpi_dev_hid_uid_match +EXPORT_SYMBOL vmlinux 0x25a5ac45 __dev_remove_pack +EXPORT_SYMBOL vmlinux 0x25b1644b kthread_bind +EXPORT_SYMBOL vmlinux 0x25cc6b62 kfree_skb +EXPORT_SYMBOL vmlinux 0x25ccfc66 pci_ep_cfs_remove_epf_group +EXPORT_SYMBOL vmlinux 0x25d42f71 xp_set_rxq_info EXPORT_SYMBOL vmlinux 0x25e58a09 hdmi_avi_infoframe_init EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free -EXPORT_SYMBOL vmlinux 0x26007417 prepare_kernel_cred -EXPORT_SYMBOL vmlinux 0x2603f14f phy_init_hw +EXPORT_SYMBOL vmlinux 0x25ef2cf9 nf_hook_slow_list +EXPORT_SYMBOL vmlinux 0x26009f0d blk_execute_rq +EXPORT_SYMBOL vmlinux 0x26024d88 pci_free_irq_vectors EXPORT_SYMBOL vmlinux 0x260a095a __sg_alloc_table -EXPORT_SYMBOL vmlinux 0x26122645 phy_ethtool_ksettings_get +EXPORT_SYMBOL vmlinux 0x26183a44 is_nd_pfn +EXPORT_SYMBOL vmlinux 0x262e2298 softnet_data EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions EXPORT_SYMBOL vmlinux 0x263c3152 bcmp -EXPORT_SYMBOL vmlinux 0x263ed558 backlight_force_update EXPORT_SYMBOL vmlinux 0x263f0d1f qman_portal_set_iperiod -EXPORT_SYMBOL vmlinux 0x264583b0 xfrm_state_lookup -EXPORT_SYMBOL vmlinux 0x264de741 iterate_fd -EXPORT_SYMBOL vmlinux 0x26550678 generic_write_end -EXPORT_SYMBOL vmlinux 0x265cbc42 phy_validate_pause -EXPORT_SYMBOL vmlinux 0x266d169a __devm_release_region +EXPORT_SYMBOL vmlinux 0x264726d7 tcf_exts_validate +EXPORT_SYMBOL vmlinux 0x26482493 skb_push +EXPORT_SYMBOL vmlinux 0x265090f3 pnp_disable_dev +EXPORT_SYMBOL vmlinux 0x267011d7 skb_queue_purge +EXPORT_SYMBOL vmlinux 0x267ad1e8 sb_min_blocksize EXPORT_SYMBOL vmlinux 0x2688ec10 bitmap_zalloc -EXPORT_SYMBOL vmlinux 0x268bd70a kern_path -EXPORT_SYMBOL vmlinux 0x26987fac bio_endio -EXPORT_SYMBOL vmlinux 0x26be33ce sock_no_sendpage -EXPORT_SYMBOL vmlinux 0x26ca464c phy_write_mmd +EXPORT_SYMBOL vmlinux 0x269c1e8d __ip_select_ident EXPORT_SYMBOL vmlinux 0x26cc73c3 complete_and_exit -EXPORT_SYMBOL vmlinux 0x26e04237 dmam_alloc_attrs +EXPORT_SYMBOL vmlinux 0x26cdcad4 unregister_netdevice_queue +EXPORT_SYMBOL vmlinux 0x26dcba9a phy_device_remove +EXPORT_SYMBOL vmlinux 0x26de8488 PDE_DATA EXPORT_SYMBOL vmlinux 0x26e298e0 unregister_memory_notifier -EXPORT_SYMBOL vmlinux 0x26f46dbe skb_pull -EXPORT_SYMBOL vmlinux 0x26f97f0e dma_async_tx_descriptor_init -EXPORT_SYMBOL vmlinux 0x27027bf7 nf_getsockopt +EXPORT_SYMBOL vmlinux 0x2703f691 tc_cleanup_flow_action EXPORT_SYMBOL vmlinux 0x270cf88f dump_stack_lvl EXPORT_SYMBOL vmlinux 0x271cba95 acpi_bus_private_data_handler +EXPORT_SYMBOL vmlinux 0x2725b6fd xfrm_alloc_spi EXPORT_SYMBOL vmlinux 0x272a8933 udp_memory_allocated -EXPORT_SYMBOL vmlinux 0x272cff9d sk_stream_error -EXPORT_SYMBOL vmlinux 0x272dbbc9 dmam_pool_create -EXPORT_SYMBOL vmlinux 0x272f62ea del_gendisk -EXPORT_SYMBOL vmlinux 0x27309985 ip6_frag_init EXPORT_SYMBOL vmlinux 0x2733eaf7 scsi_dev_info_list_add_keyed +EXPORT_SYMBOL vmlinux 0x273bd082 tcp_stream_memory_free +EXPORT_SYMBOL vmlinux 0x273d4f2f tty_port_free_xmit_buf +EXPORT_SYMBOL vmlinux 0x273e660d dev_get_iflink EXPORT_SYMBOL vmlinux 0x27479d14 param_free_charp -EXPORT_SYMBOL vmlinux 0x27488c50 inode_dio_wait +EXPORT_SYMBOL vmlinux 0x275d9965 bio_integrity_clone EXPORT_SYMBOL vmlinux 0x275dfee4 ucc_slow_free EXPORT_SYMBOL vmlinux 0x275f3d49 hdmi_vendor_infoframe_check -EXPORT_SYMBOL vmlinux 0x27678fe0 i2c_smbus_xfer -EXPORT_SYMBOL vmlinux 0x2768290b udp_skb_destructor -EXPORT_SYMBOL vmlinux 0x2768f5f2 jbd2_journal_update_sb_errno -EXPORT_SYMBOL vmlinux 0x27691bd1 rtnetlink_put_metrics 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 0x278d45ab scm_detach_fds +EXPORT_SYMBOL vmlinux 0x27960c91 of_find_i2c_adapter_by_node +EXPORT_SYMBOL vmlinux 0x279edfb2 remove_arg_zero +EXPORT_SYMBOL vmlinux 0x279fc6d0 __skb_flow_get_ports +EXPORT_SYMBOL vmlinux 0x27a03ff2 skb_flow_dissect_tunnel_info +EXPORT_SYMBOL vmlinux 0x27ad1a56 unregister_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x27b8bda2 copy_page_from_iter EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync EXPORT_SYMBOL vmlinux 0x27bd5a47 trace_print_array_seq -EXPORT_SYMBOL vmlinux 0x27c146c9 PageMovable EXPORT_SYMBOL vmlinux 0x27c3c728 qman_release_fqid -EXPORT_SYMBOL vmlinux 0x27cd1b07 keyring_search EXPORT_SYMBOL vmlinux 0x27cdca93 pci_add_resource -EXPORT_SYMBOL vmlinux 0x2805438e generic_file_llseek -EXPORT_SYMBOL vmlinux 0x280d0429 ip_sock_set_freebind -EXPORT_SYMBOL vmlinux 0x281097ad dev_uc_sync +EXPORT_SYMBOL vmlinux 0x27d51a71 of_phy_get_and_connect +EXPORT_SYMBOL vmlinux 0x27e39a6e napi_gro_flush +EXPORT_SYMBOL vmlinux 0x2805ddea mmc_gpiod_request_ro +EXPORT_SYMBOL vmlinux 0x280f0a25 shrink_dcache_sb +EXPORT_SYMBOL vmlinux 0x28134b4a of_graph_get_port_parent EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek -EXPORT_SYMBOL vmlinux 0x28271026 __skb_gso_segment -EXPORT_SYMBOL vmlinux 0x2835c1c2 consume_skb -EXPORT_SYMBOL vmlinux 0x2844bb52 tty_vhangup -EXPORT_SYMBOL vmlinux 0x284874b8 vfs_tmpfile -EXPORT_SYMBOL vmlinux 0x286c5ca8 key_reject_and_link -EXPORT_SYMBOL vmlinux 0x28744aaa migrate_page_move_mapping +EXPORT_SYMBOL vmlinux 0x28199fcb clear_inode +EXPORT_SYMBOL vmlinux 0x281c6f86 dmaengine_get_unmap_data +EXPORT_SYMBOL vmlinux 0x282bb58a serial8250_register_8250_port +EXPORT_SYMBOL vmlinux 0x28515e25 kmem_cache_size +EXPORT_SYMBOL vmlinux 0x28571063 devm_devfreq_add_device +EXPORT_SYMBOL vmlinux 0x2860bca1 get_unmapped_area EXPORT_SYMBOL vmlinux 0x2875a315 utf32_to_utf8 -EXPORT_SYMBOL vmlinux 0x2876a5ca of_graph_get_port_parent -EXPORT_SYMBOL vmlinux 0x288212c4 i2c_smbus_write_byte_data -EXPORT_SYMBOL vmlinux 0x28abec76 pci_write_config_word -EXPORT_SYMBOL vmlinux 0x28c1bc3d km_report -EXPORT_SYMBOL vmlinux 0x28c52e41 may_setattr -EXPORT_SYMBOL vmlinux 0x28dca45c param_set_byte +EXPORT_SYMBOL vmlinux 0x289c6c58 generic_listxattr +EXPORT_SYMBOL vmlinux 0x28b485c2 netdev_change_features +EXPORT_SYMBOL vmlinux 0x28c7ca91 vfs_create_mount +EXPORT_SYMBOL vmlinux 0x28cc9720 genphy_read_status EXPORT_SYMBOL vmlinux 0x28f94604 __ubsan_handle_builtin_unreachable -EXPORT_SYMBOL vmlinux 0x290778a6 ip6_fraglist_init -EXPORT_SYMBOL vmlinux 0x29114f51 phy_detach -EXPORT_SYMBOL vmlinux 0x29183cad param_ops_byte -EXPORT_SYMBOL vmlinux 0x29225d39 tcp_prot -EXPORT_SYMBOL vmlinux 0x29298c40 mdio_bus_type -EXPORT_SYMBOL vmlinux 0x293f9b15 alloc_buffer_head -EXPORT_SYMBOL vmlinux 0x2950959f bfifo_qdisc_ops -EXPORT_SYMBOL vmlinux 0x295ca07e blk_mq_tag_to_rq +EXPORT_SYMBOL vmlinux 0x28fc44f8 bdi_alloc +EXPORT_SYMBOL vmlinux 0x28ff513f dump_skip_to +EXPORT_SYMBOL vmlinux 0x28ffa300 jbd2_journal_start_reserved +EXPORT_SYMBOL vmlinux 0x29093bcb kernel_connect +EXPORT_SYMBOL vmlinux 0x290ec7f7 dquot_set_dqblk +EXPORT_SYMBOL vmlinux 0x2918d79f tcf_action_dump_1 +EXPORT_SYMBOL vmlinux 0x291b0cf1 __dev_direct_xmit +EXPORT_SYMBOL vmlinux 0x291d9bb0 devm_clk_get_optional +EXPORT_SYMBOL vmlinux 0x2928b4c7 ata_std_end_eh +EXPORT_SYMBOL vmlinux 0x293d034e cros_ec_check_result +EXPORT_SYMBOL vmlinux 0x2949675b configfs_depend_item EXPORT_SYMBOL vmlinux 0x29604158 napi_busy_loop -EXPORT_SYMBOL vmlinux 0x29720ec3 generic_file_open -EXPORT_SYMBOL vmlinux 0x2981ab1c cdrom_number_of_slots -EXPORT_SYMBOL vmlinux 0x2985491d jbd2_journal_invalidatepage -EXPORT_SYMBOL vmlinux 0x2986d7ba fib_notifier_ops_unregister -EXPORT_SYMBOL vmlinux 0x298c5507 tcp_v4_do_rcv -EXPORT_SYMBOL vmlinux 0x29a04327 lookup_positive_unlocked -EXPORT_SYMBOL vmlinux 0x29a252e8 page_pool_put_page_bulk -EXPORT_SYMBOL vmlinux 0x29aedb2c proc_create_single_data -EXPORT_SYMBOL vmlinux 0x29bc9532 ppp_input -EXPORT_SYMBOL vmlinux 0x29c865d4 tegra_ivc_cleanup -EXPORT_SYMBOL vmlinux 0x29d96a87 iov_iter_fault_in_readable -EXPORT_SYMBOL vmlinux 0x29da9354 iov_iter_bvec -EXPORT_SYMBOL vmlinux 0x29e07297 prepare_to_swait_exclusive +EXPORT_SYMBOL vmlinux 0x2970fc8e phy_attached_info +EXPORT_SYMBOL vmlinux 0x297d8aa6 vlan_dev_vlan_proto +EXPORT_SYMBOL vmlinux 0x29829084 call_netdevice_notifiers +EXPORT_SYMBOL vmlinux 0x29bb3f48 sock_wfree EXPORT_SYMBOL vmlinux 0x29e1e204 hdmi_audio_infoframe_pack -EXPORT_SYMBOL vmlinux 0x2a12dec8 xfrm4_protocol_register +EXPORT_SYMBOL vmlinux 0x29e27941 kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0x29e49ee7 devm_of_clk_del_provider +EXPORT_SYMBOL vmlinux 0x29f3ff33 task_work_add +EXPORT_SYMBOL vmlinux 0x2a11f132 __traceiter_mmap_lock_start_locking +EXPORT_SYMBOL vmlinux 0x2a18877c __lock_page +EXPORT_SYMBOL vmlinux 0x2a20fcde alloc_xenballooned_pages EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature -EXPORT_SYMBOL vmlinux 0x2a4214ad dma_sync_wait -EXPORT_SYMBOL vmlinux 0x2a44a64b ps2_handle_ack -EXPORT_SYMBOL vmlinux 0x2a5bae8c md_reap_sync_thread -EXPORT_SYMBOL vmlinux 0x2a65054b padata_do_parallel -EXPORT_SYMBOL vmlinux 0x2a65f9b1 cdrom_ioctl +EXPORT_SYMBOL vmlinux 0x2a3156b1 register_quota_format +EXPORT_SYMBOL vmlinux 0x2a3beca5 dev_get_by_name +EXPORT_SYMBOL vmlinux 0x2a3cfa82 sock_diag_put_filterinfo +EXPORT_SYMBOL vmlinux 0x2a4413a0 flow_indr_dev_register +EXPORT_SYMBOL vmlinux 0x2a4dbabc pci_ep_cfs_add_epc_group +EXPORT_SYMBOL vmlinux 0x2a6d51b1 mmc_unregister_driver +EXPORT_SYMBOL vmlinux 0x2a7c60b9 max8998_bulk_read +EXPORT_SYMBOL vmlinux 0x2a7ed385 amba_device_register +EXPORT_SYMBOL vmlinux 0x2a8016a7 csum_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0x2a83024a pcie_bandwidth_available EXPORT_SYMBOL vmlinux 0x2a8a0b96 page_frag_alloc_align +EXPORT_SYMBOL vmlinux 0x2a8ae320 vme_slot_num +EXPORT_SYMBOL vmlinux 0x2a8cad86 neigh_lookup +EXPORT_SYMBOL vmlinux 0x2a97469d flow_rule_match_ip EXPORT_SYMBOL vmlinux 0x2a9a3905 vme_master_get EXPORT_SYMBOL vmlinux 0x2aa0843e mempool_resize EXPORT_SYMBOL vmlinux 0x2aabaf9d xudma_tchan_get +EXPORT_SYMBOL vmlinux 0x2ab039a0 nd_device_notify EXPORT_SYMBOL vmlinux 0x2ab2ee91 brcmstb_get_product_id -EXPORT_SYMBOL vmlinux 0x2adad557 unregister_quota_format -EXPORT_SYMBOL vmlinux 0x2ae57bb8 configfs_depend_item_unlocked -EXPORT_SYMBOL vmlinux 0x2af6df08 seq_vprintf -EXPORT_SYMBOL vmlinux 0x2af95b20 __traceiter_mmap_lock_acquire_returned +EXPORT_SYMBOL vmlinux 0x2ab84c55 pci_enable_device_io +EXPORT_SYMBOL vmlinux 0x2abcaddb skb_realloc_headroom +EXPORT_SYMBOL vmlinux 0x2ac7833f bh_submit_read +EXPORT_SYMBOL vmlinux 0x2aeee3f6 vfs_readlink +EXPORT_SYMBOL vmlinux 0x2af592e8 edac_mc_find +EXPORT_SYMBOL vmlinux 0x2b026866 napi_enable EXPORT_SYMBOL vmlinux 0x2b1abce3 fman_has_errata_a050385 -EXPORT_SYMBOL vmlinux 0x2b2504de i2c_smbus_read_byte -EXPORT_SYMBOL vmlinux 0x2b29e7f5 inet_reqsk_alloc -EXPORT_SYMBOL vmlinux 0x2b3e2fff inode_insert5 +EXPORT_SYMBOL vmlinux 0x2b1f3836 pci_enable_msix_range +EXPORT_SYMBOL vmlinux 0x2b246fc1 blkdev_put +EXPORT_SYMBOL vmlinux 0x2b50e18c tcp_close EXPORT_SYMBOL vmlinux 0x2b593aa8 gen_pool_alloc_algo_owner -EXPORT_SYMBOL vmlinux 0x2b65c0d4 kmem_cache_alloc_bulk +EXPORT_SYMBOL vmlinux 0x2b5ceccf netdev_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0x2b631af8 disk_end_io_acct EXPORT_SYMBOL vmlinux 0x2b68bd2f del_timer -EXPORT_SYMBOL vmlinux 0x2b71a4af inet_sk_rx_dst_set -EXPORT_SYMBOL vmlinux 0x2b8fa99e truncate_pagecache_range +EXPORT_SYMBOL vmlinux 0x2b6db0fc udp_lib_getsockopt EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock -EXPORT_SYMBOL vmlinux 0x2ba56fc7 pci_disable_link_state -EXPORT_SYMBOL vmlinux 0x2baa86ef init_pseudo -EXPORT_SYMBOL vmlinux 0x2bb3037b get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0x2bb01fd5 blk_queue_virt_boundary +EXPORT_SYMBOL vmlinux 0x2bb2fc8a ata_port_printk EXPORT_SYMBOL vmlinux 0x2bb6099e dq_data_lock EXPORT_SYMBOL vmlinux 0x2bd60ab9 acpi_reset -EXPORT_SYMBOL vmlinux 0x2be81700 udp6_seq_ops -EXPORT_SYMBOL vmlinux 0x2beb3243 sg_miter_next -EXPORT_SYMBOL vmlinux 0x2bf62ca0 bioset_integrity_create +EXPORT_SYMBOL vmlinux 0x2be5f382 __hw_addr_sync_dev +EXPORT_SYMBOL vmlinux 0x2bf262f9 sock_set_sndtimeo +EXPORT_SYMBOL vmlinux 0x2bf58912 mount_subtree EXPORT_SYMBOL vmlinux 0x2bfbab10 __memmove -EXPORT_SYMBOL vmlinux 0x2c0f5861 mmc_can_trim -EXPORT_SYMBOL vmlinux 0x2c16506e generic_permission +EXPORT_SYMBOL vmlinux 0x2c097af8 dev_get_by_index +EXPORT_SYMBOL vmlinux 0x2c19f3bf dqget +EXPORT_SYMBOL vmlinux 0x2c1fb688 skb_headers_offset_update EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar -EXPORT_SYMBOL vmlinux 0x2c2f9648 dev_set_mtu +EXPORT_SYMBOL vmlinux 0x2c26f443 tcf_generic_walker EXPORT_SYMBOL vmlinux 0x2c329e54 tegra_powergate_sequence_power_up -EXPORT_SYMBOL vmlinux 0x2c4820e4 lookup_one_len +EXPORT_SYMBOL vmlinux 0x2c391559 mmc_put_card +EXPORT_SYMBOL vmlinux 0x2c43ba4a neigh_for_each +EXPORT_SYMBOL vmlinux 0x2c50e126 pci_reenable_device EXPORT_SYMBOL vmlinux 0x2c541e7b radix_tree_next_chunk -EXPORT_SYMBOL vmlinux 0x2c6b90e5 setattr_prepare +EXPORT_SYMBOL vmlinux 0x2c6e9f76 security_socket_getpeersec_dgram EXPORT_SYMBOL vmlinux 0x2c71fbfb proc_dobool -EXPORT_SYMBOL vmlinux 0x2c7fe0bf find_vma -EXPORT_SYMBOL vmlinux 0x2c80a503 tcf_action_check_ctrlact -EXPORT_SYMBOL vmlinux 0x2c8630c3 __d_lookup_done +EXPORT_SYMBOL vmlinux 0x2c82d208 fs_param_is_path EXPORT_SYMBOL vmlinux 0x2c91e17c vm_get_page_prot -EXPORT_SYMBOL vmlinux 0x2c996a34 ilookup5_nowait -EXPORT_SYMBOL vmlinux 0x2ca2f730 configfs_register_default_group -EXPORT_SYMBOL vmlinux 0x2caac9d4 md_bitmap_sync_with_cluster -EXPORT_SYMBOL vmlinux 0x2cb451f4 input_set_timestamp +EXPORT_SYMBOL vmlinux 0x2ca2bbc1 bdev_read_only EXPORT_SYMBOL vmlinux 0x2ccd059a dim_on_top +EXPORT_SYMBOL vmlinux 0x2cd8b70e loop_register_transfer EXPORT_SYMBOL vmlinux 0x2cdf87a1 proc_dointvec_minmax -EXPORT_SYMBOL vmlinux 0x2ce860c6 xfrm_parse_spi -EXPORT_SYMBOL vmlinux 0x2d001b64 mipi_dsi_device_unregister -EXPORT_SYMBOL vmlinux 0x2d088e40 devm_memunmap EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock EXPORT_SYMBOL vmlinux 0x2d192c70 sg_zero_buffer +EXPORT_SYMBOL vmlinux 0x2d262082 nf_log_unbind_pf EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged EXPORT_SYMBOL vmlinux 0x2d3385d3 system_wq +EXPORT_SYMBOL vmlinux 0x2d3814ad mmc_wait_for_cmd EXPORT_SYMBOL vmlinux 0x2d39b0a7 kstrdup -EXPORT_SYMBOL vmlinux 0x2d3bd541 xfrm_state_walk +EXPORT_SYMBOL vmlinux 0x2d40bb17 gnet_stats_copy_app +EXPORT_SYMBOL vmlinux 0x2d4b16a1 md_finish_reshape EXPORT_SYMBOL vmlinux 0x2d4c773a hdmi_spd_infoframe_init EXPORT_SYMBOL vmlinux 0x2d4daef5 find_font +EXPORT_SYMBOL vmlinux 0x2d569663 mipi_dsi_dcs_set_display_brightness +EXPORT_SYMBOL vmlinux 0x2d5ccc1c __mdiobus_read +EXPORT_SYMBOL vmlinux 0x2d804e7c netlink_ack EXPORT_SYMBOL vmlinux 0x2d912bca dmi_get_bios_year -EXPORT_SYMBOL vmlinux 0x2d98bef2 kthread_associate_blkcg +EXPORT_SYMBOL vmlinux 0x2d91fc17 zap_page_range EXPORT_SYMBOL vmlinux 0x2d994605 security_inode_copy_up_xattr -EXPORT_SYMBOL vmlinux 0x2d9c3bd5 tcf_em_tree_validate -EXPORT_SYMBOL vmlinux 0x2dc082e7 __zerocopy_sg_from_iter -EXPORT_SYMBOL vmlinux 0x2dc5a2ec of_graph_get_port_by_id +EXPORT_SYMBOL vmlinux 0x2db4b18a device_add_disk EXPORT_SYMBOL vmlinux 0x2dce2f1c __irq_regs -EXPORT_SYMBOL vmlinux 0x2dd52d4a tcp_set_rcvlowat -EXPORT_SYMBOL vmlinux 0x2dde0233 pm860x_set_bits -EXPORT_SYMBOL vmlinux 0x2df30875 sock_no_connect -EXPORT_SYMBOL vmlinux 0x2df35b07 netif_stacked_transfer_operstate -EXPORT_SYMBOL vmlinux 0x2dff5206 serial8250_register_8250_port -EXPORT_SYMBOL vmlinux 0x2e0347af netif_carrier_on +EXPORT_SYMBOL vmlinux 0x2dfa0f72 __filemap_set_wb_err EXPORT_SYMBOL vmlinux 0x2e0b1deb dma_fence_get_status +EXPORT_SYMBOL vmlinux 0x2e110c95 sock_register EXPORT_SYMBOL vmlinux 0x2e1ca751 clk_put +EXPORT_SYMBOL vmlinux 0x2e1e9c67 finalize_exec EXPORT_SYMBOL vmlinux 0x2e2b40d2 strncat EXPORT_SYMBOL vmlinux 0x2e2c4ddc logic_inw -EXPORT_SYMBOL vmlinux 0x2e30db66 mfd_add_devices +EXPORT_SYMBOL vmlinux 0x2e371643 tcf_block_put_ext EXPORT_SYMBOL vmlinux 0x2e3bcce2 wait_for_completion_interruptible -EXPORT_SYMBOL vmlinux 0x2e3dff2f inode_init_once +EXPORT_SYMBOL vmlinux 0x2e3f8a1f fbcon_update_vcs EXPORT_SYMBOL vmlinux 0x2e439142 drm_get_panel_orientation_quirk -EXPORT_SYMBOL vmlinux 0x2e4b5083 dcb_ieee_getapp_prio_dscp_mask_map +EXPORT_SYMBOL vmlinux 0x2e546a2c fs_param_is_blob EXPORT_SYMBOL vmlinux 0x2e5b27da xudma_alloc_gp_rflow_range -EXPORT_SYMBOL vmlinux 0x2e5b4a71 devm_devfreq_register_opp_notifier EXPORT_SYMBOL vmlinux 0x2e5fe036 __skb_ext_put +EXPORT_SYMBOL vmlinux 0x2e690801 scsi_host_get +EXPORT_SYMBOL vmlinux 0x2e7e7eac md_bitmap_start_sync +EXPORT_SYMBOL vmlinux 0x2e945795 generic_pipe_buf_try_steal EXPORT_SYMBOL vmlinux 0x2ea52d3e dma_fence_chain_init -EXPORT_SYMBOL vmlinux 0x2ea77068 find_inode_rcu -EXPORT_SYMBOL vmlinux 0x2eaa6e42 empty_aops -EXPORT_SYMBOL vmlinux 0x2eb8cfc4 generic_write_checks -EXPORT_SYMBOL vmlinux 0x2ec0429f fman_get_revision +EXPORT_SYMBOL vmlinux 0x2ea7e5bd ps2_begin_command EXPORT_SYMBOL vmlinux 0x2ec6bba0 errseq_set +EXPORT_SYMBOL vmlinux 0x2ed6b3d5 __ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0x2edd65d6 ww_mutex_unlock +EXPORT_SYMBOL vmlinux 0x2ee1c85c xsk_uses_need_wakeup EXPORT_SYMBOL vmlinux 0x2ee4c2b1 hdmi_avi_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0x2ef5111e nobh_write_begin -EXPORT_SYMBOL vmlinux 0x2efdddb8 scsi_remove_target +EXPORT_SYMBOL vmlinux 0x2efef037 tcp_md5_do_del EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc -EXPORT_SYMBOL vmlinux 0x2f0cd417 scsi_is_sdev_device EXPORT_SYMBOL vmlinux 0x2f1254d1 ucc_tdm_init -EXPORT_SYMBOL vmlinux 0x2f1cd4e3 nf_ct_attach -EXPORT_SYMBOL vmlinux 0x2f2a47fe xfrm_dst_ifdown -EXPORT_SYMBOL vmlinux 0x2f2bd08f tcp_v4_md5_hash_skb +EXPORT_SYMBOL vmlinux 0x2f1abd2c dma_async_tx_descriptor_init EXPORT_SYMBOL vmlinux 0x2f2e91b2 security_ib_alloc_security EXPORT_SYMBOL vmlinux 0x2f333aab imx_scu_get_handle EXPORT_SYMBOL vmlinux 0x2f384db3 acpi_is_video_device -EXPORT_SYMBOL vmlinux 0x2f495c15 is_nvdimm_bus_locked -EXPORT_SYMBOL vmlinux 0x2f596476 generic_file_write_iter -EXPORT_SYMBOL vmlinux 0x2f620df8 __dquot_transfer +EXPORT_SYMBOL vmlinux 0x2f395ede jbd2_journal_init_inode +EXPORT_SYMBOL vmlinux 0x2f413d5b uart_resume_port +EXPORT_SYMBOL vmlinux 0x2f5e0d30 con_copy_unimap EXPORT_SYMBOL vmlinux 0x2f7754a8 dma_pool_free -EXPORT_SYMBOL vmlinux 0x2f7f063f tty_insert_flip_string_flags -EXPORT_SYMBOL vmlinux 0x2f95df5c __skb_get_hash +EXPORT_SYMBOL vmlinux 0x2f814b28 inet_add_protocol +EXPORT_SYMBOL vmlinux 0x2f95354b free_inode_nonrcu +EXPORT_SYMBOL vmlinux 0x2fb03aac of_get_property EXPORT_SYMBOL vmlinux 0x2fb6de5d add_device_randomness -EXPORT_SYMBOL vmlinux 0x2fb7baa8 dev_add_offload -EXPORT_SYMBOL vmlinux 0x2fe0aa2e try_to_free_buffers EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier -EXPORT_SYMBOL vmlinux 0x2fe475dc pcie_port_service_register EXPORT_SYMBOL vmlinux 0x2fe5b535 qcom_scm_assign_mem -EXPORT_SYMBOL vmlinux 0x2ffd4462 finish_no_open -EXPORT_SYMBOL vmlinux 0x2ffde10c of_get_cpu_node -EXPORT_SYMBOL vmlinux 0x2fffeeec tc_setup_cb_destroy -EXPORT_SYMBOL vmlinux 0x3013afbd pci_alloc_dev -EXPORT_SYMBOL vmlinux 0x3025423e jbd2_journal_flush +EXPORT_SYMBOL vmlinux 0x2ff5f90a flow_rule_match_enc_ipv4_addrs +EXPORT_SYMBOL vmlinux 0x2fff22b9 phy_start +EXPORT_SYMBOL vmlinux 0x30084dfb xfrm_state_register_afinfo +EXPORT_SYMBOL vmlinux 0x30098e92 blk_rq_map_user +EXPORT_SYMBOL vmlinux 0x300abb4a mount_bdev +EXPORT_SYMBOL vmlinux 0x30313705 blk_queue_max_hw_sectors +EXPORT_SYMBOL vmlinux 0x3031c3b5 __xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x3043c5cb bdev_check_media_change +EXPORT_SYMBOL vmlinux 0x3052d12d unpin_user_pages_dirty_lock EXPORT_SYMBOL vmlinux 0x3052fecd ptp_convert_timestamp -EXPORT_SYMBOL vmlinux 0x306b3c3f vfs_iocb_iter_read -EXPORT_SYMBOL vmlinux 0x307b786f gnet_stats_copy_rate_est -EXPORT_SYMBOL vmlinux 0x308defb1 nf_log_unbind_pf +EXPORT_SYMBOL vmlinux 0x305376a1 devm_get_clk_from_child EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep -EXPORT_SYMBOL vmlinux 0x3098cf8a register_filesystem -EXPORT_SYMBOL vmlinux 0x309f0032 tty_port_open +EXPORT_SYMBOL vmlinux 0x3099bf30 __test_set_page_writeback +EXPORT_SYMBOL vmlinux 0x30a22b28 bioset_init EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user EXPORT_SYMBOL vmlinux 0x30acfde9 hsiphash_2u32 -EXPORT_SYMBOL vmlinux 0x30ddf244 dm_io -EXPORT_SYMBOL vmlinux 0x30e6fed4 sock_set_rcvbuf +EXPORT_SYMBOL vmlinux 0x30b1377b __dynamic_dev_dbg +EXPORT_SYMBOL vmlinux 0x30bfb7c6 mipi_dsi_dcs_set_column_address +EXPORT_SYMBOL vmlinux 0x30c7b612 ethtool_op_get_link +EXPORT_SYMBOL vmlinux 0x30cc12f8 input_alloc_absinfo +EXPORT_SYMBOL vmlinux 0x30d289c2 netpoll_send_skb +EXPORT_SYMBOL vmlinux 0x30e2d7c4 devm_input_allocate_device EXPORT_SYMBOL vmlinux 0x30e74134 tty_termios_copy_hw -EXPORT_SYMBOL vmlinux 0x30f1bdd2 pcibios_bus_to_resource -EXPORT_SYMBOL vmlinux 0x30f5b58e tcp_mtu_to_mss -EXPORT_SYMBOL vmlinux 0x30fa92f8 register_key_type +EXPORT_SYMBOL vmlinux 0x30f83dbf blkdev_compat_ptr_ioctl EXPORT_SYMBOL vmlinux 0x3100cff9 lockref_get_or_lock EXPORT_SYMBOL vmlinux 0x3102d70b frontswap_curr_pages EXPORT_SYMBOL vmlinux 0x3126a9e8 siphash_1u64 -EXPORT_SYMBOL vmlinux 0x312a3840 udp6_set_csum -EXPORT_SYMBOL vmlinux 0x3150defe security_d_instantiate -EXPORT_SYMBOL vmlinux 0x31540a11 dev_mc_init -EXPORT_SYMBOL vmlinux 0x31561ad4 xattr_full_name -EXPORT_SYMBOL vmlinux 0x315cf17f input_set_keycode -EXPORT_SYMBOL vmlinux 0x315e9b40 devfreq_recommended_opp -EXPORT_SYMBOL vmlinux 0x315fc49d sock_create_kern -EXPORT_SYMBOL vmlinux 0x3176fccd devm_devfreq_remove_device -EXPORT_SYMBOL vmlinux 0x317fa98b fs_param_is_blob -EXPORT_SYMBOL vmlinux 0x31839802 skb_put +EXPORT_SYMBOL vmlinux 0x312d69a7 md_write_start +EXPORT_SYMBOL vmlinux 0x3179016d jbd2_log_start_commit EXPORT_SYMBOL vmlinux 0x319d493d proc_dostring -EXPORT_SYMBOL vmlinux 0x319eca02 tcp_sock_set_keepintvl +EXPORT_SYMBOL vmlinux 0x31a46e17 pin_user_pages_unlocked EXPORT_SYMBOL vmlinux 0x31a4767f qcom_scm_hdcp_available -EXPORT_SYMBOL vmlinux 0x31b0ff7b dev_get_stats -EXPORT_SYMBOL vmlinux 0x31c57260 remove_conflicting_pci_framebuffers -EXPORT_SYMBOL vmlinux 0x31d0d616 scsi_host_alloc -EXPORT_SYMBOL vmlinux 0x31d974a2 netdev_has_upper_dev_all_rcu -EXPORT_SYMBOL vmlinux 0x31e1b0b0 get_fs_type -EXPORT_SYMBOL vmlinux 0x31e4203d fman_get_pause_cfg -EXPORT_SYMBOL vmlinux 0x31e630a2 dcache_dir_lseek +EXPORT_SYMBOL vmlinux 0x31ae7a65 sunxi_sram_claim +EXPORT_SYMBOL vmlinux 0x31c5dbde pci_read_config_byte +EXPORT_SYMBOL vmlinux 0x31d05906 drop_super +EXPORT_SYMBOL vmlinux 0x31e14b31 vfs_iter_write EXPORT_SYMBOL vmlinux 0x3213f038 mutex_unlock +EXPORT_SYMBOL vmlinux 0x32192ec4 input_set_keycode +EXPORT_SYMBOL vmlinux 0x321cfd9e ndo_dflt_fdb_del +EXPORT_SYMBOL vmlinux 0x32226515 inode_get_bytes +EXPORT_SYMBOL vmlinux 0x32310580 md_check_no_bitmap EXPORT_SYMBOL vmlinux 0x32394d4b qe_issue_cmd -EXPORT_SYMBOL vmlinux 0x3241eba4 generic_file_mmap -EXPORT_SYMBOL vmlinux 0x32456566 input_handler_for_each_handle -EXPORT_SYMBOL vmlinux 0x32523196 posix_acl_chmod -EXPORT_SYMBOL vmlinux 0x3259ca9c netdev_refcnt_read -EXPORT_SYMBOL vmlinux 0x326792a2 nf_register_net_hook +EXPORT_SYMBOL vmlinux 0x323fc35c of_parse_phandle_with_args +EXPORT_SYMBOL vmlinux 0x32431a3d dmam_alloc_attrs +EXPORT_SYMBOL vmlinux 0x324758f3 wireless_spy_update +EXPORT_SYMBOL vmlinux 0x326822e1 ram_aops +EXPORT_SYMBOL vmlinux 0x327a8247 request_key_tag EXPORT_SYMBOL vmlinux 0x327c84bf vme_lm_attach EXPORT_SYMBOL vmlinux 0x3283e6b0 prandom_seed_full_state -EXPORT_SYMBOL vmlinux 0x3284ee63 console_stop -EXPORT_SYMBOL vmlinux 0x3285a4f9 find_inode_by_ino_rcu -EXPORT_SYMBOL vmlinux 0x328965af scsi_get_host_dev -EXPORT_SYMBOL vmlinux 0x329d30fc rtnl_configure_link -EXPORT_SYMBOL vmlinux 0x32aebe76 neigh_table_clear -EXPORT_SYMBOL vmlinux 0x32b4e32f super_setup_bdi_name -EXPORT_SYMBOL vmlinux 0x32c690e8 bioset_init_from_src +EXPORT_SYMBOL vmlinux 0x32895219 blk_queue_max_write_same_sectors +EXPORT_SYMBOL vmlinux 0x32b3b902 mdiobus_register_device +EXPORT_SYMBOL vmlinux 0x32c3c3d6 ip_frag_init +EXPORT_SYMBOL vmlinux 0x32c82944 fman_reset_mac EXPORT_SYMBOL vmlinux 0x32ce3777 radix_tree_preload -EXPORT_SYMBOL vmlinux 0x32d5b358 seq_printf EXPORT_SYMBOL vmlinux 0x32e6f1a0 acpi_video_backlight_string -EXPORT_SYMBOL vmlinux 0x32f6849d free_task -EXPORT_SYMBOL vmlinux 0x32fa8560 pskb_trim_rcsum_slow -EXPORT_SYMBOL vmlinux 0x32fbd257 take_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0x32f6cd2b vme_bus_num +EXPORT_SYMBOL vmlinux 0x32fbe78d neigh_table_clear EXPORT_SYMBOL vmlinux 0x33037fd8 logic_outl -EXPORT_SYMBOL vmlinux 0x330496d9 get_watch_queue -EXPORT_SYMBOL vmlinux 0x33069609 vlan_for_each -EXPORT_SYMBOL vmlinux 0x3320c758 sk_stream_wait_close -EXPORT_SYMBOL vmlinux 0x33281424 devm_extcon_register_notifier +EXPORT_SYMBOL vmlinux 0x3307c5d0 of_device_unregister +EXPORT_SYMBOL vmlinux 0x331bbd98 blk_mq_tag_to_rq +EXPORT_SYMBOL vmlinux 0x3321f27f neigh_sysctl_unregister +EXPORT_SYMBOL vmlinux 0x33353723 security_locked_down +EXPORT_SYMBOL vmlinux 0x333a8566 param_array_ops +EXPORT_SYMBOL vmlinux 0x33522f1b inet_frag_destroy +EXPORT_SYMBOL vmlinux 0x336ec65a add_to_page_cache_locked +EXPORT_SYMBOL vmlinux 0x336f848d path_get EXPORT_SYMBOL vmlinux 0x33736a1d __genradix_ptr_alloc -EXPORT_SYMBOL vmlinux 0x33820b50 tty_driver_flush_buffer -EXPORT_SYMBOL vmlinux 0x3384c0ac mfd_cell_enable -EXPORT_SYMBOL vmlinux 0x33995303 pnp_start_dev -EXPORT_SYMBOL vmlinux 0x339f605a skb_clone_sk -EXPORT_SYMBOL vmlinux 0x33a363ee pci_prepare_to_sleep -EXPORT_SYMBOL vmlinux 0x33a911af fs_param_is_path -EXPORT_SYMBOL vmlinux 0x33bd8309 pci_bus_type -EXPORT_SYMBOL vmlinux 0x33bf75ef fget_raw -EXPORT_SYMBOL vmlinux 0x33c5f44e fscrypt_fname_disk_to_usr +EXPORT_SYMBOL vmlinux 0x337c7297 fb_class +EXPORT_SYMBOL vmlinux 0x3384845e vfs_fileattr_get +EXPORT_SYMBOL vmlinux 0x338529e4 md_reload_sb +EXPORT_SYMBOL vmlinux 0x33ceb72d inet6_unregister_protosw +EXPORT_SYMBOL vmlinux 0x33e1fb38 md_bitmap_cond_end_sync +EXPORT_SYMBOL vmlinux 0x33ee63d5 xfrm_policy_alloc EXPORT_SYMBOL vmlinux 0x33f0768c cpufreq_quick_get_max EXPORT_SYMBOL vmlinux 0x33fc2a31 get_user_ifreq -EXPORT_SYMBOL vmlinux 0x33fcbb2f dquot_quota_on EXPORT_SYMBOL vmlinux 0x33fcf44a __kfifo_out_r -EXPORT_SYMBOL vmlinux 0x3410fd9b pci_irq_get_affinity +EXPORT_SYMBOL vmlinux 0x340cc501 page_get_link +EXPORT_SYMBOL vmlinux 0x3418956f sock_i_uid EXPORT_SYMBOL vmlinux 0x3424daf8 __traceiter_dma_fence_enable_signal -EXPORT_SYMBOL vmlinux 0x34435859 __phy_read_mmd -EXPORT_SYMBOL vmlinux 0x34584f5e bio_copy_data +EXPORT_SYMBOL vmlinux 0x34328a2a filemap_write_and_wait_range +EXPORT_SYMBOL vmlinux 0x34447917 blk_mq_alloc_request +EXPORT_SYMBOL vmlinux 0x34522b93 neigh_seq_next +EXPORT_SYMBOL vmlinux 0x34710762 mpage_readpage +EXPORT_SYMBOL vmlinux 0x348e2c1b tcp_fastopen_defer_connect EXPORT_SYMBOL vmlinux 0x349cba85 strchr EXPORT_SYMBOL vmlinux 0x34a1f7e3 acpi_processor_get_psd -EXPORT_SYMBOL vmlinux 0x34b431fc of_get_property +EXPORT_SYMBOL vmlinux 0x34adcbee ps2_cmd_aborted +EXPORT_SYMBOL vmlinux 0x34b05563 kmem_cache_free_bulk +EXPORT_SYMBOL vmlinux 0x34bf97cd sync_blockdev +EXPORT_SYMBOL vmlinux 0x34c554d6 register_qdisc +EXPORT_SYMBOL vmlinux 0x34c68ba8 dm_kobject_release EXPORT_SYMBOL vmlinux 0x34c7cdbc lookup_bdev -EXPORT_SYMBOL vmlinux 0x34cdebeb __block_write_full_page -EXPORT_SYMBOL vmlinux 0x34d1977b inode_init_owner -EXPORT_SYMBOL vmlinux 0x34e6469d netif_tx_wake_queue -EXPORT_SYMBOL vmlinux 0x34eb7770 input_register_handler -EXPORT_SYMBOL vmlinux 0x34ee06d5 filemap_check_errors -EXPORT_SYMBOL vmlinux 0x34ee2e24 redirty_page_for_writepage +EXPORT_SYMBOL vmlinux 0x34f124b6 flow_block_cb_lookup EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue +EXPORT_SYMBOL vmlinux 0x34f6ab11 tcf_block_netif_keep_dst +EXPORT_SYMBOL vmlinux 0x34faef4f skb_dequeue +EXPORT_SYMBOL vmlinux 0x35001bd2 qdisc_watchdog_init_clockid EXPORT_SYMBOL vmlinux 0x350ea558 dma_fence_default_wait +EXPORT_SYMBOL vmlinux 0x35143447 igrab EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier -EXPORT_SYMBOL vmlinux 0x3523c8ec xfrm_policy_walk_done -EXPORT_SYMBOL vmlinux 0x3525afcf mipi_dsi_dcs_set_tear_on +EXPORT_SYMBOL vmlinux 0x351ff895 dm_mq_kick_requeue_list EXPORT_SYMBOL vmlinux 0x3539f11b match_strlcpy -EXPORT_SYMBOL vmlinux 0x353dadf0 pcie_port_service_unregister -EXPORT_SYMBOL vmlinux 0x35469b97 vmf_insert_mixed_prot +EXPORT_SYMBOL vmlinux 0x35569c7e blk_integrity_register +EXPORT_SYMBOL vmlinux 0x355b24de scsi_dma_unmap +EXPORT_SYMBOL vmlinux 0x355e9a02 wait_for_key_construction EXPORT_SYMBOL vmlinux 0x356461c8 rtc_time64_to_tm -EXPORT_SYMBOL vmlinux 0x3569e5a7 tcp_sendmsg -EXPORT_SYMBOL vmlinux 0x357f7224 scsi_test_unit_ready -EXPORT_SYMBOL vmlinux 0x358b1192 of_get_i2c_adapter_by_node +EXPORT_SYMBOL vmlinux 0x3577a0bd compat_ptr_ioctl +EXPORT_SYMBOL vmlinux 0x357a65d8 tcp_time_wait +EXPORT_SYMBOL vmlinux 0x3598cc4d dquot_alloc_inode +EXPORT_SYMBOL vmlinux 0x35a7b21e pskb_extract EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 -EXPORT_SYMBOL vmlinux 0x35b203e2 dev_change_proto_down_reason -EXPORT_SYMBOL vmlinux 0x35c18869 request_key_tag -EXPORT_SYMBOL vmlinux 0x35d5a5cf freeze_super -EXPORT_SYMBOL vmlinux 0x35de7e6d set_blocksize -EXPORT_SYMBOL vmlinux 0x35ea9869 alloc_pages -EXPORT_SYMBOL vmlinux 0x35fbb34b blkdev_issue_discard -EXPORT_SYMBOL vmlinux 0x35fe676f __inode_add_bytes +EXPORT_SYMBOL vmlinux 0x35c988a7 get_thermal_instance +EXPORT_SYMBOL vmlinux 0x35f0d3bc dcb_ieee_getapp_default_prio_mask +EXPORT_SYMBOL vmlinux 0x35f2718d phy_request_interrupt EXPORT_SYMBOL vmlinux 0x360b1afe probe_irq_mask -EXPORT_SYMBOL vmlinux 0x360d8255 module_layout -EXPORT_SYMBOL vmlinux 0x361cea63 tcp_make_synack -EXPORT_SYMBOL vmlinux 0x362ce33d kmem_cache_size -EXPORT_SYMBOL vmlinux 0x364454e0 crypto_sha1_finup +EXPORT_SYMBOL vmlinux 0x361dfd64 __sk_dst_check +EXPORT_SYMBOL vmlinux 0x362f0ca2 elevator_alloc EXPORT_SYMBOL vmlinux 0x364850b1 down_write_killable -EXPORT_SYMBOL vmlinux 0x364b6ff7 block_write_full_page EXPORT_SYMBOL vmlinux 0x364c23ad mutex_is_locked +EXPORT_SYMBOL vmlinux 0x365371d8 i2c_smbus_read_byte_data EXPORT_SYMBOL vmlinux 0x365acda7 set_normalized_timespec64 +EXPORT_SYMBOL vmlinux 0x365c38fd blk_mq_start_stopped_hw_queues EXPORT_SYMBOL vmlinux 0x365e7911 kstrdup_const -EXPORT_SYMBOL vmlinux 0x3661ab87 gnet_stats_finish_copy -EXPORT_SYMBOL vmlinux 0x369f894f ipmr_rule_default -EXPORT_SYMBOL vmlinux 0x36b474c6 unix_destruct_scm +EXPORT_SYMBOL vmlinux 0x36773677 xp_dma_sync_for_cpu_slow EXPORT_SYMBOL vmlinux 0x36b6ebbf down_killable -EXPORT_SYMBOL vmlinux 0x36c017d4 xfrm_input_register_afinfo -EXPORT_SYMBOL vmlinux 0x36c2cce1 qdisc_hash_del -EXPORT_SYMBOL vmlinux 0x36e58d68 scsi_report_opcode -EXPORT_SYMBOL vmlinux 0x36f37c47 pcie_capability_write_dword -EXPORT_SYMBOL vmlinux 0x36f72a5d km_policy_notify -EXPORT_SYMBOL vmlinux 0x36fef80b dev_mc_add_excl -EXPORT_SYMBOL vmlinux 0x370b21dc jbd2_fc_get_buf +EXPORT_SYMBOL vmlinux 0x36c03d68 mr_mfc_seq_idx +EXPORT_SYMBOL vmlinux 0x36d9c925 tty_unthrottle +EXPORT_SYMBOL vmlinux 0x36f5cf67 backlight_device_register +EXPORT_SYMBOL vmlinux 0x3706b823 security_sctp_assoc_request +EXPORT_SYMBOL vmlinux 0x370956e4 input_register_handler +EXPORT_SYMBOL vmlinux 0x370a160b twl6040_power +EXPORT_SYMBOL vmlinux 0x370dcfa0 init_task EXPORT_SYMBOL vmlinux 0x37110088 remove_wait_queue -EXPORT_SYMBOL vmlinux 0x3717e219 import_single_range -EXPORT_SYMBOL vmlinux 0x372fab65 i2c_transfer +EXPORT_SYMBOL vmlinux 0x3711f74e phy_ethtool_ksettings_get +EXPORT_SYMBOL vmlinux 0x37130a37 blk_queue_logical_block_size +EXPORT_SYMBOL vmlinux 0x3727c69d elv_rb_latter_request EXPORT_SYMBOL vmlinux 0x3737d9a9 ZSTD_DStreamWorkspaceBound -EXPORT_SYMBOL vmlinux 0x3739678a devm_iounmap -EXPORT_SYMBOL vmlinux 0x3740a3d6 touch_buffer +EXPORT_SYMBOL vmlinux 0x373c1da7 udp_lib_rehash EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn +EXPORT_SYMBOL vmlinux 0x374b0230 __napi_schedule +EXPORT_SYMBOL vmlinux 0x3751ef36 max8925_set_bits EXPORT_SYMBOL vmlinux 0x3755f990 gf128mul_init_64k_bbe -EXPORT_SYMBOL vmlinux 0x375de9c9 dquot_mark_dquot_dirty EXPORT_SYMBOL vmlinux 0x37746fde ZSTD_initDStream -EXPORT_SYMBOL vmlinux 0x3778b0e4 amba_find_device EXPORT_SYMBOL vmlinux 0x377d8004 acpi_error -EXPORT_SYMBOL vmlinux 0x37ab95a0 skb_flow_dissect_tunnel_info +EXPORT_SYMBOL vmlinux 0x3781d373 pcie_capability_read_dword +EXPORT_SYMBOL vmlinux 0x37845311 pci_scan_root_bus +EXPORT_SYMBOL vmlinux 0x37a1b0b3 xfrm_state_lookup_byaddr +EXPORT_SYMBOL vmlinux 0x37a4f81b udp_gro_receive +EXPORT_SYMBOL vmlinux 0x37a6c535 max8925_reg_write +EXPORT_SYMBOL vmlinux 0x37b255ae input_mt_get_slot_by_key +EXPORT_SYMBOL vmlinux 0x37b509f7 pci_irq_get_affinity EXPORT_SYMBOL vmlinux 0x37b8b39e screen_info EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs -EXPORT_SYMBOL vmlinux 0x37bf09db mipi_dsi_dcs_write -EXPORT_SYMBOL vmlinux 0x37d5dc68 gro_cells_receive +EXPORT_SYMBOL vmlinux 0x37c1c1e8 keyring_clear +EXPORT_SYMBOL vmlinux 0x37d13e9a lookup_positive_unlocked EXPORT_SYMBOL vmlinux 0x37db8f19 dmi_get_date +EXPORT_SYMBOL vmlinux 0x37e186ea of_find_node_opts_by_path EXPORT_SYMBOL vmlinux 0x37e3ec9b vm_event_states -EXPORT_SYMBOL vmlinux 0x37e7ea02 sync_inode_metadata -EXPORT_SYMBOL vmlinux 0x37ebc614 mmc_cqe_start_req -EXPORT_SYMBOL vmlinux 0x38093579 configfs_depend_item +EXPORT_SYMBOL vmlinux 0x38075355 __scsi_device_lookup EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus -EXPORT_SYMBOL vmlinux 0x382a561b scsi_dma_unmap -EXPORT_SYMBOL vmlinux 0x3830cb97 __scm_send -EXPORT_SYMBOL vmlinux 0x3830f6cb pci_scan_bridge -EXPORT_SYMBOL vmlinux 0x3835732b unregister_tcf_proto_ops -EXPORT_SYMBOL vmlinux 0x38544910 tcf_exts_change +EXPORT_SYMBOL vmlinux 0x3824ffe2 phy_connect_direct +EXPORT_SYMBOL vmlinux 0x3828be3f genphy_aneg_done EXPORT_SYMBOL vmlinux 0x3854774b kstrtoll -EXPORT_SYMBOL vmlinux 0x385b990a pci_ep_cfs_add_epf_group -EXPORT_SYMBOL vmlinux 0x385c51e3 rpmh_write_batch -EXPORT_SYMBOL vmlinux 0x385da5ad tcf_classify -EXPORT_SYMBOL vmlinux 0x385eda72 inet_register_protosw -EXPORT_SYMBOL vmlinux 0x38608e96 cros_ec_cmd_xfer_status -EXPORT_SYMBOL vmlinux 0x387756ae ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0x38581841 writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0x386f9668 crypto_sha1_finup +EXPORT_SYMBOL vmlinux 0x3875187e write_dirty_buffer 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 0x389617b0 LZ4_decompress_fast_continue -EXPORT_SYMBOL vmlinux 0x38993596 km_state_notify EXPORT_SYMBOL vmlinux 0x38a71b7e pci_free_resource_list EXPORT_SYMBOL vmlinux 0x38a9f7c5 in6addr_loopback -EXPORT_SYMBOL vmlinux 0x38b02eba xfrm_unregister_km -EXPORT_SYMBOL vmlinux 0x38b4e1af jbd2_journal_clear_err -EXPORT_SYMBOL vmlinux 0x38c475a6 wait_on_page_bit -EXPORT_SYMBOL vmlinux 0x38d478f7 devfreq_suspend_device +EXPORT_SYMBOL vmlinux 0x38af33b8 cdrom_open +EXPORT_SYMBOL vmlinux 0x38bd5a41 generic_fillattr +EXPORT_SYMBOL vmlinux 0x38d427b1 of_device_get_match_data +EXPORT_SYMBOL vmlinux 0x38d80aa8 pci_set_master EXPORT_SYMBOL vmlinux 0x38e46431 mempool_exit -EXPORT_SYMBOL vmlinux 0x38e734d4 freezing_slow_path -EXPORT_SYMBOL vmlinux 0x38eb7e66 dev_set_threaded +EXPORT_SYMBOL vmlinux 0x38f3db51 register_netdevice EXPORT_SYMBOL vmlinux 0x38f48af7 put_user_ifreq +EXPORT_SYMBOL vmlinux 0x3906aeac passthru_features_check +EXPORT_SYMBOL vmlinux 0x390f85a0 __kfree_skb EXPORT_SYMBOL vmlinux 0x3928efe9 __per_cpu_offset -EXPORT_SYMBOL vmlinux 0x39295934 of_find_backlight_by_node -EXPORT_SYMBOL vmlinux 0x3929a8ac genphy_read_status_fixed EXPORT_SYMBOL vmlinux 0x392b1fea wait_for_completion_io -EXPORT_SYMBOL vmlinux 0x39360c17 __dev_get_by_flags EXPORT_SYMBOL vmlinux 0x3939f8f0 rfkill_pause_polling -EXPORT_SYMBOL vmlinux 0x393de64d alloc_file_pseudo +EXPORT_SYMBOL vmlinux 0x39452a34 framebuffer_release EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p -EXPORT_SYMBOL vmlinux 0x3946b17a of_node_name_eq +EXPORT_SYMBOL vmlinux 0x39496410 __blk_rq_map_sg EXPORT_SYMBOL vmlinux 0x394a1e11 phy_sfp_attach EXPORT_SYMBOL vmlinux 0x3955fcf6 __kfifo_in_r -EXPORT_SYMBOL vmlinux 0x39601945 of_platform_device_create -EXPORT_SYMBOL vmlinux 0x396d48a4 kiocb_set_cancel_fn -EXPORT_SYMBOL vmlinux 0x396f2289 inet6_del_protocol +EXPORT_SYMBOL vmlinux 0x3960d41d devm_mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0x3971e382 tty_name +EXPORT_SYMBOL vmlinux 0x3982ffae pcix_get_mmrbc EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow EXPORT_SYMBOL vmlinux 0x399ad043 __kfifo_dma_out_finish_r -EXPORT_SYMBOL vmlinux 0x39a0d8c2 __mod_zone_page_state EXPORT_SYMBOL vmlinux 0x39b52d19 __bitmap_and EXPORT_SYMBOL vmlinux 0x39b8d49c cpu_rmap_update +EXPORT_SYMBOL vmlinux 0x39ba996c PageMovable EXPORT_SYMBOL vmlinux 0x39be4b8e qman_volatile_dequeue -EXPORT_SYMBOL vmlinux 0x39bebb2d i2c_smbus_read_byte_data -EXPORT_SYMBOL vmlinux 0x39c50d60 rproc_resource_cleanup -EXPORT_SYMBOL vmlinux 0x39c9c4ec udp_disconnect -EXPORT_SYMBOL vmlinux 0x39d38495 module_put -EXPORT_SYMBOL vmlinux 0x39f130fa pcix_get_max_mmrbc -EXPORT_SYMBOL vmlinux 0x39f29989 pskb_extract -EXPORT_SYMBOL vmlinux 0x3a051728 con_copy_unimap -EXPORT_SYMBOL vmlinux 0x3a0d25a0 ip_mc_leave_group -EXPORT_SYMBOL vmlinux 0x3a11126e security_inode_init_security -EXPORT_SYMBOL vmlinux 0x3a129b05 serio_open +EXPORT_SYMBOL vmlinux 0x39ca1338 rproc_elf_load_rsc_table +EXPORT_SYMBOL vmlinux 0x39e8727e fwnode_graph_parse_endpoint +EXPORT_SYMBOL vmlinux 0x39efc09b capable_wrt_inode_uidgid +EXPORT_SYMBOL vmlinux 0x3a0111f8 sk_net_capable EXPORT_SYMBOL vmlinux 0x3a13f54a sgl_alloc -EXPORT_SYMBOL vmlinux 0x3a1c6725 fwnode_get_phy_id -EXPORT_SYMBOL vmlinux 0x3a29a939 tcp_sock_set_user_timeout +EXPORT_SYMBOL vmlinux 0x3a281b11 register_nexthop_notifier EXPORT_SYMBOL vmlinux 0x3a2f6702 sg_alloc_table -EXPORT_SYMBOL vmlinux 0x3a4064e2 end_page_private_2 +EXPORT_SYMBOL vmlinux 0x3a325eec ipv6_sock_mc_join +EXPORT_SYMBOL vmlinux 0x3a33d4a9 d_delete EXPORT_SYMBOL vmlinux 0x3a4f9d28 rng_is_initialized -EXPORT_SYMBOL vmlinux 0x3a55ea3b __ethtool_get_link_ksettings -EXPORT_SYMBOL vmlinux 0x3a5bebea ip_options_rcv_srr -EXPORT_SYMBOL vmlinux 0x3a5eb006 netdev_upper_dev_unlink -EXPORT_SYMBOL vmlinux 0x3a6ce128 key_type_keyring -EXPORT_SYMBOL vmlinux 0x3a8e282f of_count_phandle_with_args -EXPORT_SYMBOL vmlinux 0x3a941e5e kthread_create_worker -EXPORT_SYMBOL vmlinux 0x3aafcb06 current_time +EXPORT_SYMBOL vmlinux 0x3a58995a ip_route_me_harder +EXPORT_SYMBOL vmlinux 0x3a72e9e7 nvdimm_namespace_capacity +EXPORT_SYMBOL vmlinux 0x3a74b382 __pagevec_release +EXPORT_SYMBOL vmlinux 0x3a79da3f mipi_dsi_generic_write +EXPORT_SYMBOL vmlinux 0x3aac300f __inode_add_bytes +EXPORT_SYMBOL vmlinux 0x3aad505a netdev_upper_dev_link EXPORT_SYMBOL vmlinux 0x3ab7b1cc scsi_set_sense_field_pointer EXPORT_SYMBOL vmlinux 0x3ad5cda3 lockref_get_not_zero -EXPORT_SYMBOL vmlinux 0x3ad5e9ae flow_rule_match_ipv4_addrs EXPORT_SYMBOL vmlinux 0x3ad7a5d5 acpi_evaluate_reference EXPORT_SYMBOL vmlinux 0x3ada9e06 acpi_check_region -EXPORT_SYMBOL vmlinux 0x3add5979 blk_rq_init -EXPORT_SYMBOL vmlinux 0x3ae238d8 vme_master_request -EXPORT_SYMBOL vmlinux 0x3aeed8e7 block_commit_write -EXPORT_SYMBOL vmlinux 0x3af47176 ethtool_op_get_link -EXPORT_SYMBOL vmlinux 0x3af48cfb tcp_v4_send_check +EXPORT_SYMBOL vmlinux 0x3ade83f8 filp_close EXPORT_SYMBOL vmlinux 0x3aff3200 acpi_evaluate_object_typed EXPORT_SYMBOL vmlinux 0x3b0f23d2 xudma_is_pktdma -EXPORT_SYMBOL vmlinux 0x3b1f3e6f md_bitmap_free EXPORT_SYMBOL vmlinux 0x3b20fb95 dma_fence_remove_callback -EXPORT_SYMBOL vmlinux 0x3b243374 netif_schedule_queue EXPORT_SYMBOL vmlinux 0x3b321462 LZ4_setStreamDecode +EXPORT_SYMBOL vmlinux 0x3b503037 __udp_disconnect EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left -EXPORT_SYMBOL vmlinux 0x3b686719 config_item_get_unless_zero -EXPORT_SYMBOL vmlinux 0x3b696e84 param_ops_bint EXPORT_SYMBOL vmlinux 0x3b6c41ea kstrtouint -EXPORT_SYMBOL vmlinux 0x3b908e2e mipi_dsi_dcs_write_buffer +EXPORT_SYMBOL vmlinux 0x3b746083 pcie_get_readrq +EXPORT_SYMBOL vmlinux 0x3b79a861 sock_cmsg_send +EXPORT_SYMBOL vmlinux 0x3b7b1246 no_seek_end_llseek_size +EXPORT_SYMBOL vmlinux 0x3b7bdb00 __xfrm_init_state EXPORT_SYMBOL vmlinux 0x3b9144c9 acpi_get_current_resources -EXPORT_SYMBOL vmlinux 0x3bab431c fman_get_qman_channel_id -EXPORT_SYMBOL vmlinux 0x3bb32754 blk_mq_alloc_request -EXPORT_SYMBOL vmlinux 0x3bbcce3c netdev_set_num_tc -EXPORT_SYMBOL vmlinux 0x3bcd8589 mpage_writepages -EXPORT_SYMBOL vmlinux 0x3bdaeb7f xsk_tx_completed -EXPORT_SYMBOL vmlinux 0x3bdf65ae vme_unregister_bridge +EXPORT_SYMBOL vmlinux 0x3ba3f38d ip_getsockopt +EXPORT_SYMBOL vmlinux 0x3bb71165 nf_log_packet EXPORT_SYMBOL vmlinux 0x3be7643e security_xfrm_policy_free -EXPORT_SYMBOL vmlinux 0x3c0e9f55 sock_release +EXPORT_SYMBOL vmlinux 0x3bebb304 phy_get_pause +EXPORT_SYMBOL vmlinux 0x3bf353d4 key_put +EXPORT_SYMBOL vmlinux 0x3c030200 simple_rmdir +EXPORT_SYMBOL vmlinux 0x3c050f16 netlbl_calipso_ops_register +EXPORT_SYMBOL vmlinux 0x3c0ac448 sock_no_mmap +EXPORT_SYMBOL vmlinux 0x3c103672 pci_get_slot EXPORT_SYMBOL vmlinux 0x3c185c61 page_put_link -EXPORT_SYMBOL vmlinux 0x3c195c96 rpmh_write_async -EXPORT_SYMBOL vmlinux 0x3c2fc790 fs_param_is_string EXPORT_SYMBOL vmlinux 0x3c3215c4 qe_immr EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip EXPORT_SYMBOL vmlinux 0x3c3ff9fd sprintf -EXPORT_SYMBOL vmlinux 0x3c4164d3 fman_set_mac_active_pause -EXPORT_SYMBOL vmlinux 0x3c4a0ee7 pci_msix_vec_count -EXPORT_SYMBOL vmlinux 0x3c57adc7 mount_single -EXPORT_SYMBOL vmlinux 0x3c5c0036 phy_set_sym_pause -EXPORT_SYMBOL vmlinux 0x3c5ff5b9 param_ops_invbool -EXPORT_SYMBOL vmlinux 0x3c758172 pci_release_selected_regions -EXPORT_SYMBOL vmlinux 0x3c7bb334 blk_queue_dma_alignment -EXPORT_SYMBOL vmlinux 0x3c94e352 genphy_read_status -EXPORT_SYMBOL vmlinux 0x3c9a43a8 sk_stream_wait_connect -EXPORT_SYMBOL vmlinux 0x3c9d3cc6 jbd2_journal_errno -EXPORT_SYMBOL vmlinux 0x3cb28af3 pci_bus_size_bridges +EXPORT_SYMBOL vmlinux 0x3c5a93b2 tcf_get_next_proto +EXPORT_SYMBOL vmlinux 0x3c5cb06f dcb_ieee_delapp +EXPORT_SYMBOL vmlinux 0x3c612649 mmc_can_erase +EXPORT_SYMBOL vmlinux 0x3c7b138b __d_drop +EXPORT_SYMBOL vmlinux 0x3c86d753 phy_loopback +EXPORT_SYMBOL vmlinux 0x3cb90b66 skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x3cc1bb11 mr_vif_seq_idx EXPORT_SYMBOL vmlinux 0x3cd9ed83 logic_insw +EXPORT_SYMBOL vmlinux 0x3ce47b7f nvdimm_namespace_disk_name EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq -EXPORT_SYMBOL vmlinux 0x3cecdffa dev_get_phys_port_id -EXPORT_SYMBOL vmlinux 0x3cf5e058 udp_lib_rehash +EXPORT_SYMBOL vmlinux 0x3ce98912 param_set_bool EXPORT_SYMBOL vmlinux 0x3d02cd70 dma_fence_signal_locked -EXPORT_SYMBOL vmlinux 0x3d0e9680 ll_rw_block +EXPORT_SYMBOL vmlinux 0x3d1968ca input_open_device +EXPORT_SYMBOL vmlinux 0x3d1fa53a input_set_timestamp EXPORT_SYMBOL vmlinux 0x3d210724 gen_pool_dma_zalloc_align -EXPORT_SYMBOL vmlinux 0x3d3c7b88 fuse_dequeue_forget +EXPORT_SYMBOL vmlinux 0x3d24bfdd unpin_user_pages +EXPORT_SYMBOL vmlinux 0x3d2e1db1 set_binfmt +EXPORT_SYMBOL vmlinux 0x3d36ff45 request_key_with_auxdata +EXPORT_SYMBOL vmlinux 0x3d3e7414 param_get_ushort +EXPORT_SYMBOL vmlinux 0x3d3fa722 mmc_detect_card_removed +EXPORT_SYMBOL vmlinux 0x3d411d42 unregister_key_type EXPORT_SYMBOL vmlinux 0x3d56e7b3 utf8_unload -EXPORT_SYMBOL vmlinux 0x3d737fef pnp_is_active -EXPORT_SYMBOL vmlinux 0x3d7d25ff flow_block_cb_incref -EXPORT_SYMBOL vmlinux 0x3d85a446 dev_change_proto_down_generic +EXPORT_SYMBOL vmlinux 0x3d635415 param_ops_ullong +EXPORT_SYMBOL vmlinux 0x3d64541c notify_change +EXPORT_SYMBOL vmlinux 0x3d6bffda unregister_nexthop_notifier EXPORT_SYMBOL vmlinux 0x3d93c7c2 __arm_smccc_sve_check +EXPORT_SYMBOL vmlinux 0x3d9b4a40 scsi_target_quiesce EXPORT_SYMBOL vmlinux 0x3d9ee9f0 clear_page -EXPORT_SYMBOL vmlinux 0x3da7e548 from_kgid +EXPORT_SYMBOL vmlinux 0x3d9f4211 flow_rule_match_ct +EXPORT_SYMBOL vmlinux 0x3da6528c mipi_dsi_set_maximum_return_packet_size 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 0x3db1f68a sock_alloc_file +EXPORT_SYMBOL vmlinux 0x3dbaae03 generic_pipe_buf_release +EXPORT_SYMBOL vmlinux 0x3dbac795 ipv6_select_ident +EXPORT_SYMBOL vmlinux 0x3dbc2948 xattr_supported_namespace +EXPORT_SYMBOL vmlinux 0x3dbde9bb redirty_page_for_writepage EXPORT_SYMBOL vmlinux 0x3dc619d3 swake_up_locked -EXPORT_SYMBOL vmlinux 0x3dc8495b __alloc_disk_node -EXPORT_SYMBOL vmlinux 0x3dcb6ee9 dev_driver_string EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data -EXPORT_SYMBOL vmlinux 0x3dcf43ab rproc_coredump_using_sections +EXPORT_SYMBOL vmlinux 0x3dd3dceb _dev_err EXPORT_SYMBOL vmlinux 0x3dd3f054 xudma_rchan_get_id EXPORT_SYMBOL vmlinux 0x3dd9b230 proc_dointvec_userhz_jiffies +EXPORT_SYMBOL vmlinux 0x3dd9fd98 netdev_set_sb_channel +EXPORT_SYMBOL vmlinux 0x3de3719c fib_default_rule_add +EXPORT_SYMBOL vmlinux 0x3ded7a6c ipv6_chk_prefix EXPORT_SYMBOL vmlinux 0x3dfb86b9 resource_list_create_entry EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head +EXPORT_SYMBOL vmlinux 0x3dfe756d par_io_of_config +EXPORT_SYMBOL vmlinux 0x3e0cde52 cdev_add +EXPORT_SYMBOL vmlinux 0x3e294670 cros_ec_get_host_event +EXPORT_SYMBOL vmlinux 0x3e3769cc tcp_v4_syn_recv_sock EXPORT_SYMBOL vmlinux 0x3e3bad0a __tasklet_hi_schedule -EXPORT_SYMBOL vmlinux 0x3e52a611 key_put -EXPORT_SYMBOL vmlinux 0x3e549e6f input_enable_softrepeat -EXPORT_SYMBOL vmlinux 0x3e682ab2 tcf_action_dump_1 +EXPORT_SYMBOL vmlinux 0x3e7241f5 mmc_run_bkops +EXPORT_SYMBOL vmlinux 0x3e7519cc generic_writepages EXPORT_SYMBOL vmlinux 0x3e79fb00 arm_smccc_1_2_smc -EXPORT_SYMBOL vmlinux 0x3e824220 touchscreen_report_pos -EXPORT_SYMBOL vmlinux 0x3e890636 _copy_from_iter_nocache -EXPORT_SYMBOL vmlinux 0x3e90a464 mpage_readpage -EXPORT_SYMBOL vmlinux 0x3e945c60 jbd2_journal_force_commit -EXPORT_SYMBOL vmlinux 0x3e98fd26 skb_csum_hwoffload_help -EXPORT_SYMBOL vmlinux 0x3eb01b7a dquot_load_quota_inode -EXPORT_SYMBOL vmlinux 0x3ee101b9 jbd2__journal_start +EXPORT_SYMBOL vmlinux 0x3eb557f4 buffer_check_dirty_writeback +EXPORT_SYMBOL vmlinux 0x3eb62bf8 param_set_hexint +EXPORT_SYMBOL vmlinux 0x3eb6e4ce jbd2_journal_get_write_access +EXPORT_SYMBOL vmlinux 0x3ebae055 __alloc_pages +EXPORT_SYMBOL vmlinux 0x3ebe0532 flow_rule_match_mpls +EXPORT_SYMBOL vmlinux 0x3ed26c63 to_nd_pfn +EXPORT_SYMBOL vmlinux 0x3ed94d8c seg6_hmac_validate_skb EXPORT_SYMBOL vmlinux 0x3eeb2322 __wake_up +EXPORT_SYMBOL vmlinux 0x3eee52ab blk_cleanup_queue EXPORT_SYMBOL vmlinux 0x3efe1703 phy_unregister_fixup_for_id +EXPORT_SYMBOL vmlinux 0x3f015c15 vme_master_mmap +EXPORT_SYMBOL vmlinux 0x3f08fd8a dev_uc_add +EXPORT_SYMBOL vmlinux 0x3f0d31a3 tcf_exts_destroy EXPORT_SYMBOL vmlinux 0x3f0eabd2 xxh64_update -EXPORT_SYMBOL vmlinux 0x3f1a5cf6 padata_do_serial -EXPORT_SYMBOL vmlinux 0x3f31c77c xfrm_state_update +EXPORT_SYMBOL vmlinux 0x3f151e63 current_time +EXPORT_SYMBOL vmlinux 0x3f25fe87 gnet_stats_copy_basic_hw +EXPORT_SYMBOL vmlinux 0x3f2f8298 clk_add_alias EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd +EXPORT_SYMBOL vmlinux 0x3f47e881 block_read_full_page EXPORT_SYMBOL vmlinux 0x3f4bd846 gen_pool_first_fit_order_align +EXPORT_SYMBOL vmlinux 0x3f4db137 scsi_block_requests EXPORT_SYMBOL vmlinux 0x3f545cad cpumask_any_and_distribute -EXPORT_SYMBOL vmlinux 0x3f5a4d36 qdisc_tree_reduce_backlog -EXPORT_SYMBOL vmlinux 0x3f60057f dma_get_sgtable_attrs -EXPORT_SYMBOL vmlinux 0x3f7aa8a1 pcie_capability_clear_and_set_dword +EXPORT_SYMBOL vmlinux 0x3f57bab6 tty_unregister_device +EXPORT_SYMBOL vmlinux 0x3f5db808 scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x3f63c9a4 rproc_coredump_add_segment +EXPORT_SYMBOL vmlinux 0x3f68decf of_parse_phandle_with_fixed_args +EXPORT_SYMBOL vmlinux 0x3f814c91 mii_ethtool_sset +EXPORT_SYMBOL vmlinux 0x3f8279b8 path_has_submounts EXPORT_SYMBOL vmlinux 0x3f89071b security_ib_pkey_access -EXPORT_SYMBOL vmlinux 0x3f9f9646 vlan_vids_del_by_dev -EXPORT_SYMBOL vmlinux 0x3fa83f28 dev_uc_sync_multiple +EXPORT_SYMBOL vmlinux 0x3f93d23a netpoll_setup +EXPORT_SYMBOL vmlinux 0x3f97f4a5 skb_split +EXPORT_SYMBOL vmlinux 0x3f9dbe40 rtnl_unicast EXPORT_SYMBOL vmlinux 0x3fbf3c89 vme_slave_set -EXPORT_SYMBOL vmlinux 0x3fc351de fscrypt_encrypt_pagecache_blocks -EXPORT_SYMBOL vmlinux 0x3fcc24cb flow_rule_match_eth_addrs +EXPORT_SYMBOL vmlinux 0x3fc821f5 tcp_v4_conn_request +EXPORT_SYMBOL vmlinux 0x3fd1045d jbd2_fc_get_buf EXPORT_SYMBOL vmlinux 0x3fd78f3b register_chrdev_region -EXPORT_SYMBOL vmlinux 0x3fd908e3 blk_post_runtime_suspend EXPORT_SYMBOL vmlinux 0x3fe2ccbe memweight -EXPORT_SYMBOL vmlinux 0x3fe42697 tcp_openreq_init_rwin -EXPORT_SYMBOL vmlinux 0x3fe52d28 mdiobus_register_device -EXPORT_SYMBOL vmlinux 0x40071680 dev_get_phys_port_name -EXPORT_SYMBOL vmlinux 0x401802fc generic_set_encrypted_ci_d_ops -EXPORT_SYMBOL vmlinux 0x40207204 dump_align -EXPORT_SYMBOL vmlinux 0x407b0fe3 __mmc_claim_host -EXPORT_SYMBOL vmlinux 0x4090459a netdev_alert -EXPORT_SYMBOL vmlinux 0x40906dca max8925_reg_write -EXPORT_SYMBOL vmlinux 0x40942cec dquot_alloc +EXPORT_SYMBOL vmlinux 0x3fe3191d simple_lookup +EXPORT_SYMBOL vmlinux 0x3ff2eb51 inode_needs_sync +EXPORT_SYMBOL vmlinux 0x3ff5403c jbd2_journal_abort +EXPORT_SYMBOL vmlinux 0x401acef5 xfrm6_rcv +EXPORT_SYMBOL vmlinux 0x4022d24a xp_dma_unmap +EXPORT_SYMBOL vmlinux 0x4028e65d bio_alloc_bioset +EXPORT_SYMBOL vmlinux 0x406482b5 bio_integrity_alloc +EXPORT_SYMBOL vmlinux 0x40758693 inet6_offloads +EXPORT_SYMBOL vmlinux 0x407cb764 vlan_uses_dev +EXPORT_SYMBOL vmlinux 0x407ddfc8 xsk_get_pool_from_qid EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem EXPORT_SYMBOL vmlinux 0x409873e3 tty_termios_baud_rate -EXPORT_SYMBOL vmlinux 0x40a72345 vfs_symlink +EXPORT_SYMBOL vmlinux 0x409e1815 devfreq_monitor_start +EXPORT_SYMBOL vmlinux 0x409e615c nd_device_unregister +EXPORT_SYMBOL vmlinux 0x40a5a7dc input_handler_for_each_handle EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc -EXPORT_SYMBOL vmlinux 0x40bd5a53 flow_rule_match_ipv6_addrs +EXPORT_SYMBOL vmlinux 0x40babdba devm_devfreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x40bb825f netdev_pick_tx +EXPORT_SYMBOL vmlinux 0x40be1e3b seq_write +EXPORT_SYMBOL vmlinux 0x40c109cc pm860x_page_bulk_read EXPORT_SYMBOL vmlinux 0x40c7247c si_meminfo +EXPORT_SYMBOL vmlinux 0x40ccef5b pci_bus_set_ops EXPORT_SYMBOL vmlinux 0x40d04664 console_trylock EXPORT_SYMBOL vmlinux 0x40d59096 unregister_restart_handler -EXPORT_SYMBOL vmlinux 0x40d6fef7 fwnode_phy_find_device EXPORT_SYMBOL vmlinux 0x40d84a37 ZSTD_getFrameParams -EXPORT_SYMBOL vmlinux 0x40e3b28e inet_addr_type_table -EXPORT_SYMBOL vmlinux 0x40ef7a90 vfs_parse_fs_string -EXPORT_SYMBOL vmlinux 0x40f182e3 datagram_poll -EXPORT_SYMBOL vmlinux 0x40fa10d8 balance_dirty_pages_ratelimited -EXPORT_SYMBOL vmlinux 0x40ff3940 mmc_sw_reset -EXPORT_SYMBOL vmlinux 0x41280bee phy_driver_unregister +EXPORT_SYMBOL vmlinux 0x40fefc11 input_set_max_poll_interval +EXPORT_SYMBOL vmlinux 0x41037cac xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x4106441e tcf_exts_dump_stats +EXPORT_SYMBOL vmlinux 0x410bb229 sock_wake_async +EXPORT_SYMBOL vmlinux 0x41292d84 blk_mq_unique_tag +EXPORT_SYMBOL vmlinux 0x412adbe2 flow_block_cb_alloc EXPORT_SYMBOL vmlinux 0x412f893c page_offline_begin +EXPORT_SYMBOL vmlinux 0x4136cd25 ptp_clock_index EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user EXPORT_SYMBOL vmlinux 0x414da5e5 qman_enqueue +EXPORT_SYMBOL vmlinux 0x414db5a0 __hw_addr_ref_unsync_dev +EXPORT_SYMBOL vmlinux 0x416d6080 __traceiter_mmap_lock_released +EXPORT_SYMBOL vmlinux 0x41887600 input_unregister_device EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time -EXPORT_SYMBOL vmlinux 0x41c8f7d4 _dev_printk -EXPORT_SYMBOL vmlinux 0x41d08cee xp_dma_sync_for_cpu_slow -EXPORT_SYMBOL vmlinux 0x41d38d1f genphy_c37_config_aneg +EXPORT_SYMBOL vmlinux 0x419a2828 remove_conflicting_pci_framebuffers +EXPORT_SYMBOL vmlinux 0x419b0132 mr_mfc_find_parent +EXPORT_SYMBOL vmlinux 0x41a86d0f forget_cached_acl +EXPORT_SYMBOL vmlinux 0x41b8d607 iov_iter_alignment +EXPORT_SYMBOL vmlinux 0x41cd95cf jbd2_fc_wait_bufs +EXPORT_SYMBOL vmlinux 0x41d5fe0e skb_dequeue_tail +EXPORT_SYMBOL vmlinux 0x41d8deaa freeze_super +EXPORT_SYMBOL vmlinux 0x41dbb7cb grab_cache_page_write_begin +EXPORT_SYMBOL vmlinux 0x41e6784e devm_free_irq EXPORT_SYMBOL vmlinux 0x41efdeaf radix_tree_lookup_slot -EXPORT_SYMBOL vmlinux 0x41f21f2f send_sig_mceerr -EXPORT_SYMBOL vmlinux 0x41f42db6 flow_rule_match_mpls +EXPORT_SYMBOL vmlinux 0x41fb2281 inet_reqsk_alloc EXPORT_SYMBOL vmlinux 0x420964e3 __nla_parse -EXPORT_SYMBOL vmlinux 0x420f2773 unregister_nls -EXPORT_SYMBOL vmlinux 0x4212f132 fman_get_mem_region EXPORT_SYMBOL vmlinux 0x42160169 flush_workqueue -EXPORT_SYMBOL vmlinux 0x421cd1c8 reuseport_stop_listen_sock -EXPORT_SYMBOL vmlinux 0x42256464 tty_insert_flip_string_fixed_flag +EXPORT_SYMBOL vmlinux 0x42224442 backlight_device_set_brightness EXPORT_SYMBOL vmlinux 0x4230a8d7 sg_nents_for_len -EXPORT_SYMBOL vmlinux 0x42379884 fman_unregister_intr -EXPORT_SYMBOL vmlinux 0x423b099b open_with_fake_path -EXPORT_SYMBOL vmlinux 0x423c3a17 inet_del_protocol -EXPORT_SYMBOL vmlinux 0x42429a3c blk_queue_max_write_same_sectors +EXPORT_SYMBOL vmlinux 0x42327946 locks_free_lock EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp -EXPORT_SYMBOL vmlinux 0x42508fcc pci_set_power_state -EXPORT_SYMBOL vmlinux 0x4251916d phy_ethtool_get_eee EXPORT_SYMBOL vmlinux 0x42578e80 acpi_get_type -EXPORT_SYMBOL vmlinux 0x426397b5 inet_rcv_saddr_equal -EXPORT_SYMBOL vmlinux 0x4268c528 __skb_recv_datagram -EXPORT_SYMBOL vmlinux 0x4296d0a7 mr_vif_seq_idx -EXPORT_SYMBOL vmlinux 0x42990615 skb_coalesce_rx_frag -EXPORT_SYMBOL vmlinux 0x429e2726 udp_pre_connect -EXPORT_SYMBOL vmlinux 0x42a9349b phy_mac_interrupt -EXPORT_SYMBOL vmlinux 0x42b79b24 key_task_permission +EXPORT_SYMBOL vmlinux 0x425a85c4 _copy_from_iter +EXPORT_SYMBOL vmlinux 0x4268a702 tcp_v4_mtu_reduced +EXPORT_SYMBOL vmlinux 0x426da293 mfd_add_devices +EXPORT_SYMBOL vmlinux 0x427992b1 d_instantiate_new +EXPORT_SYMBOL vmlinux 0x427d1af1 dqput +EXPORT_SYMBOL vmlinux 0x42809b48 pps_unregister_source +EXPORT_SYMBOL vmlinux 0x42a587f8 tcp_get_cookie_sock +EXPORT_SYMBOL vmlinux 0x42aa6bdd config_item_init_type_name +EXPORT_SYMBOL vmlinux 0x42b5fd0e ptp_find_pin_unlocked EXPORT_SYMBOL vmlinux 0x42bed8d4 unix_gc_lock -EXPORT_SYMBOL vmlinux 0x42e367ed lru_cache_add +EXPORT_SYMBOL vmlinux 0x42d62bad __ip_queue_xmit +EXPORT_SYMBOL vmlinux 0x42d70aa8 xfrm_dst_ifdown +EXPORT_SYMBOL vmlinux 0x42d8a7ea rc5t583_ext_power_req_config +EXPORT_SYMBOL vmlinux 0x42e399a0 qdisc_warn_nonwc EXPORT_SYMBOL vmlinux 0x42f1b900 fb_pad_unaligned_buffer -EXPORT_SYMBOL vmlinux 0x42f54603 of_device_get_match_data +EXPORT_SYMBOL vmlinux 0x42fdc0bf devfreq_remove_device EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages -EXPORT_SYMBOL vmlinux 0x430b2015 is_subdir -EXPORT_SYMBOL vmlinux 0x431a730a phy_ethtool_nway_reset +EXPORT_SYMBOL vmlinux 0x4307be10 fb_prepare_logo +EXPORT_SYMBOL vmlinux 0x43084dbc mmc_gpio_set_cd_wake +EXPORT_SYMBOL vmlinux 0x4318bb8f migrate_vma_setup EXPORT_SYMBOL vmlinux 0x431ec3a9 __nla_validate -EXPORT_SYMBOL vmlinux 0x43264bb3 pm860x_reg_write -EXPORT_SYMBOL vmlinux 0x4331b617 dm_mq_kick_requeue_list -EXPORT_SYMBOL vmlinux 0x4333fddf skb_get_hash_perturb -EXPORT_SYMBOL vmlinux 0x43351bb5 netlink_kernel_release +EXPORT_SYMBOL vmlinux 0x4322413a pci_free_host_bridge +EXPORT_SYMBOL vmlinux 0x4326862f tcp_mtu_to_mss EXPORT_SYMBOL vmlinux 0x4336fcca ucs2_as_utf8 EXPORT_SYMBOL vmlinux 0x433cabfb acpi_decode_pld_buffer -EXPORT_SYMBOL vmlinux 0x4346f4b3 fwnode_graph_parse_endpoint +EXPORT_SYMBOL vmlinux 0x434285dd mmc_gpiod_request_cd_irq EXPORT_SYMBOL vmlinux 0x4351577a fb_parse_edid -EXPORT_SYMBOL vmlinux 0x436be123 netdev_upper_dev_link -EXPORT_SYMBOL vmlinux 0x43726549 sb_set_blocksize +EXPORT_SYMBOL vmlinux 0x4354950d get_task_cred +EXPORT_SYMBOL vmlinux 0x435d3e27 d_splice_alias +EXPORT_SYMBOL vmlinux 0x4364a143 xp_alloc +EXPORT_SYMBOL vmlinux 0x4364e661 ps2_end_command EXPORT_SYMBOL vmlinux 0x437a0d6d __sock_tx_timestamp -EXPORT_SYMBOL vmlinux 0x437cc04e vlan_vid_add +EXPORT_SYMBOL vmlinux 0x437eeb5f rdmacg_uncharge EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security -EXPORT_SYMBOL vmlinux 0x4391bf88 set_anon_super_fc -EXPORT_SYMBOL vmlinux 0x43971b7d nf_log_packet -EXPORT_SYMBOL vmlinux 0x43abc38a __napi_alloc_skb -EXPORT_SYMBOL vmlinux 0x43b503b4 dev_mc_sync -EXPORT_SYMBOL vmlinux 0x43b5fd38 tcp_shutdown +EXPORT_SYMBOL vmlinux 0x439cf2cd set_anon_super_fc +EXPORT_SYMBOL vmlinux 0x43ae5a63 eth_gro_complete EXPORT_SYMBOL vmlinux 0x43d22fb9 groups_alloc -EXPORT_SYMBOL vmlinux 0x43f13c0d tegra_ivc_write_advance +EXPORT_SYMBOL vmlinux 0x43d65186 xfrm_init_replay +EXPORT_SYMBOL vmlinux 0x43d653ff scm_detach_fds +EXPORT_SYMBOL vmlinux 0x43e338fb acpi_bus_get_device +EXPORT_SYMBOL vmlinux 0x43f4e6db free_cgroup_ns +EXPORT_SYMBOL vmlinux 0x43f537b3 remove_proc_entry +EXPORT_SYMBOL vmlinux 0x43fb142b pci_wait_for_pending_transaction EXPORT_SYMBOL vmlinux 0x4403bbd0 imx_sc_misc_set_control -EXPORT_SYMBOL vmlinux 0x4416419a unregister_framebuffer EXPORT_SYMBOL vmlinux 0x44469a76 crc_ccitt_false_table -EXPORT_SYMBOL vmlinux 0x444eddcf skb_add_rx_frag -EXPORT_SYMBOL vmlinux 0x4450c328 jbd2_journal_free_reserved -EXPORT_SYMBOL vmlinux 0x445cff7b scsi_mode_sense +EXPORT_SYMBOL vmlinux 0x4460f11e pm860x_reg_read EXPORT_SYMBOL vmlinux 0x4462d35e cpufreq_get_hw_max_freq -EXPORT_SYMBOL vmlinux 0x446f5830 udp_lib_unhash -EXPORT_SYMBOL vmlinux 0x44787c60 security_path_unlink -EXPORT_SYMBOL vmlinux 0x447c4f9b tcf_qevent_init -EXPORT_SYMBOL vmlinux 0x447dd6d3 is_nd_dax +EXPORT_SYMBOL vmlinux 0x446542d2 locks_copy_lock +EXPORT_SYMBOL vmlinux 0x446f2442 inet_del_offload +EXPORT_SYMBOL vmlinux 0x446fd0d5 tcf_block_get_ext +EXPORT_SYMBOL vmlinux 0x447b2782 pci_bus_read_dev_vendor_id +EXPORT_SYMBOL vmlinux 0x44808e32 start_tty +EXPORT_SYMBOL vmlinux 0x448c151c nexthop_res_grp_activity_update EXPORT_SYMBOL vmlinux 0x449ad0a7 memcmp +EXPORT_SYMBOL vmlinux 0x44a410c1 follow_down +EXPORT_SYMBOL vmlinux 0x44a45ec9 bio_chain EXPORT_SYMBOL vmlinux 0x44a6e90a irq_cpu_rmap_add -EXPORT_SYMBOL vmlinux 0x44aa4b00 is_acpi_device_node -EXPORT_SYMBOL vmlinux 0x44db1684 udplite_prot +EXPORT_SYMBOL vmlinux 0x44aba2bd crypto_sha512_update +EXPORT_SYMBOL vmlinux 0x44c38073 configfs_unregister_group EXPORT_SYMBOL vmlinux 0x44e9a829 match_token -EXPORT_SYMBOL vmlinux 0x44f51ae7 xfrm_input_unregister_afinfo -EXPORT_SYMBOL vmlinux 0x44fce71a tcf_em_tree_dump +EXPORT_SYMBOL vmlinux 0x44fd4d25 __mdiobus_write EXPORT_SYMBOL vmlinux 0x45006cee default_red -EXPORT_SYMBOL vmlinux 0x4504e4d2 get_unmapped_area EXPORT_SYMBOL vmlinux 0x45081703 ec_get_handle +EXPORT_SYMBOL vmlinux 0x450ce596 netlink_unicast EXPORT_SYMBOL vmlinux 0x450d9a35 cmd_db_read_slave_id -EXPORT_SYMBOL vmlinux 0x45140b04 ww_mutex_unlock -EXPORT_SYMBOL vmlinux 0x4514d74a dev_get_iflink EXPORT_SYMBOL vmlinux 0x452413a1 qman_alloc_pool_range EXPORT_SYMBOL vmlinux 0x452ba683 ipv6_ext_hdr -EXPORT_SYMBOL vmlinux 0x452bbdb0 kfree_skb_partial -EXPORT_SYMBOL vmlinux 0x452bbe40 seq_putc -EXPORT_SYMBOL vmlinux 0x45397a39 set_binfmt +EXPORT_SYMBOL vmlinux 0x45364ce8 blk_mq_complete_request EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled -EXPORT_SYMBOL vmlinux 0x455086f8 simple_rename +EXPORT_SYMBOL vmlinux 0x45450ba8 input_allocate_device EXPORT_SYMBOL vmlinux 0x45535485 xxh32_update -EXPORT_SYMBOL vmlinux 0x4554009a __napi_schedule +EXPORT_SYMBOL vmlinux 0x45540bdc flow_block_cb_incref +EXPORT_SYMBOL vmlinux 0x455e8e5e napi_build_skb EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user -EXPORT_SYMBOL vmlinux 0x459dbad5 request_firmware_nowait -EXPORT_SYMBOL vmlinux 0x45a860e7 netif_device_attach -EXPORT_SYMBOL vmlinux 0x45be8d27 flow_rule_match_meta -EXPORT_SYMBOL vmlinux 0x45c3940e fs_context_for_reconfigure -EXPORT_SYMBOL vmlinux 0x45d6449c blk_queue_bounce_limit -EXPORT_SYMBOL vmlinux 0x45e71a7a set_bdi_congested -EXPORT_SYMBOL vmlinux 0x45ee96cb __frontswap_load -EXPORT_SYMBOL vmlinux 0x45eea80d devm_rproc_add -EXPORT_SYMBOL vmlinux 0x45f15a69 vme_master_mmap -EXPORT_SYMBOL vmlinux 0x460cc66a security_task_getsecid_obj -EXPORT_SYMBOL vmlinux 0x46104b4b jbd2_log_start_commit -EXPORT_SYMBOL vmlinux 0x4611481e inet_bind +EXPORT_SYMBOL vmlinux 0x458b503d jbd2_journal_free_reserved +EXPORT_SYMBOL vmlinux 0x459f0368 tcp_setsockopt +EXPORT_SYMBOL vmlinux 0x45b05691 param_set_invbool +EXPORT_SYMBOL vmlinux 0x45b4ae4d security_sk_clone +EXPORT_SYMBOL vmlinux 0x45c21757 xfrm4_rcv +EXPORT_SYMBOL vmlinux 0x45d4b14d serial8250_set_isa_configurator +EXPORT_SYMBOL vmlinux 0x45dc520e generic_remap_file_range_prep +EXPORT_SYMBOL vmlinux 0x45fe5472 tcp_v4_md5_hash_skb +EXPORT_SYMBOL vmlinux 0x46058086 md_set_array_sectors +EXPORT_SYMBOL vmlinux 0x460a4aca gnet_stats_copy_queue +EXPORT_SYMBOL vmlinux 0x460f4a34 flow_hash_from_keys EXPORT_SYMBOL vmlinux 0x461d16ca sg_nents +EXPORT_SYMBOL vmlinux 0x462a0b85 fscrypt_fname_disk_to_usr +EXPORT_SYMBOL vmlinux 0x462b56fd scsi_alloc_sgtables EXPORT_SYMBOL vmlinux 0x463219fb tcp_hashinfo -EXPORT_SYMBOL vmlinux 0x46360d26 of_find_node_by_type -EXPORT_SYMBOL vmlinux 0x463d79f0 pnp_device_attach -EXPORT_SYMBOL vmlinux 0x463fbb79 simple_link -EXPORT_SYMBOL vmlinux 0x4642ea57 touchscreen_parse_properties -EXPORT_SYMBOL vmlinux 0x464c56af __set_page_dirty_buffers +EXPORT_SYMBOL vmlinux 0x463ea589 fman_port_bind +EXPORT_SYMBOL vmlinux 0x46406fba skb_vlan_untag EXPORT_SYMBOL vmlinux 0x465e24ff ucs2_utf8size -EXPORT_SYMBOL vmlinux 0x4662cbe3 blk_dump_rq_flags -EXPORT_SYMBOL vmlinux 0x4666b370 scsi_block_requests +EXPORT_SYMBOL vmlinux 0x465e7685 dev_open EXPORT_SYMBOL vmlinux 0x466c14a7 __delay -EXPORT_SYMBOL vmlinux 0x466f10f9 skb_kill_datagram EXPORT_SYMBOL vmlinux 0x467df16d netdev_rss_key_fill -EXPORT_SYMBOL vmlinux 0x467e0874 mntput EXPORT_SYMBOL vmlinux 0x4698fe8a bman_release +EXPORT_SYMBOL vmlinux 0x469912a2 of_graph_get_remote_node EXPORT_SYMBOL vmlinux 0x469a6ec7 tcp_parse_md5sig_option -EXPORT_SYMBOL vmlinux 0x46a35a51 pci_iounmap -EXPORT_SYMBOL vmlinux 0x46bcf9a5 flow_rule_match_cvlan +EXPORT_SYMBOL vmlinux 0x46aaa088 sk_common_release +EXPORT_SYMBOL vmlinux 0x46b5be56 tcp_add_backlog +EXPORT_SYMBOL vmlinux 0x46bdd477 km_report EXPORT_SYMBOL vmlinux 0x46c47fb6 __node_distance -EXPORT_SYMBOL vmlinux 0x46da9323 __sk_receive_skb +EXPORT_SYMBOL vmlinux 0x46ccd0f9 vmf_insert_mixed_prot +EXPORT_SYMBOL vmlinux 0x46d2cf60 skb_abort_seq_read +EXPORT_SYMBOL vmlinux 0x46d50b83 ip6_fraglist_init +EXPORT_SYMBOL vmlinux 0x46d5364c netdev_notify_peers EXPORT_SYMBOL vmlinux 0x46ff7d12 qcom_scm_iommu_secure_ptbl_size -EXPORT_SYMBOL vmlinux 0x47036a4f tc_setup_cb_call EXPORT_SYMBOL vmlinux 0x470612dc fman_port_get_qman_channel_id EXPORT_SYMBOL vmlinux 0x47065c73 cpm_muram_offset -EXPORT_SYMBOL vmlinux 0x4709498f security_inode_getsecctx +EXPORT_SYMBOL vmlinux 0x4710741c i2c_smbus_read_byte EXPORT_SYMBOL vmlinux 0x4715a909 acpi_load_table -EXPORT_SYMBOL vmlinux 0x47165b7d key_payload_reserve -EXPORT_SYMBOL vmlinux 0x4718b3df nf_unregister_net_hook -EXPORT_SYMBOL vmlinux 0x472afa77 tty_unregister_driver -EXPORT_SYMBOL vmlinux 0x47405d38 __skb_free_datagram_locked +EXPORT_SYMBOL vmlinux 0x473ecb4f netdev_refcnt_read +EXPORT_SYMBOL vmlinux 0x4745f3c7 register_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x47468e06 tegra_ivc_cleanup +EXPORT_SYMBOL vmlinux 0x4746b6c8 i2c_get_adapter +EXPORT_SYMBOL vmlinux 0x4759ed11 __xfrm_route_forward +EXPORT_SYMBOL vmlinux 0x475bcf28 netdev_state_change EXPORT_SYMBOL vmlinux 0x475d7427 fman_get_rx_extra_headroom -EXPORT_SYMBOL vmlinux 0x47624c7b of_parse_phandle -EXPORT_SYMBOL vmlinux 0x4766a5bd tty_port_tty_set +EXPORT_SYMBOL vmlinux 0x4768859d dquot_initialize EXPORT_SYMBOL vmlinux 0x47709e42 free_anon_bdev -EXPORT_SYMBOL vmlinux 0x477681a2 vmf_insert_pfn_prot +EXPORT_SYMBOL vmlinux 0x477d412c pagecache_get_page EXPORT_SYMBOL vmlinux 0x479137ca imx_scu_irq_unregister_notifier -EXPORT_SYMBOL vmlinux 0x4792fd88 md_handle_request EXPORT_SYMBOL vmlinux 0x47960bc4 proc_do_large_bitmap -EXPORT_SYMBOL vmlinux 0x479e9dce generic_remap_file_range_prep EXPORT_SYMBOL vmlinux 0x47a0cdcb mb_cache_entry_find_next -EXPORT_SYMBOL vmlinux 0x47a1859d pin_user_pages_locked EXPORT_SYMBOL vmlinux 0x47c20f8a refcount_dec_not_one -EXPORT_SYMBOL vmlinux 0x47c3da68 __traceiter_module_get EXPORT_SYMBOL vmlinux 0x47c65bfc unregister_inet6addr_validator_notifier EXPORT_SYMBOL vmlinux 0x47cfd825 kstrtouint_from_user -EXPORT_SYMBOL vmlinux 0x47d43479 simple_transaction_get +EXPORT_SYMBOL vmlinux 0x47d6bd6d dma_map_sg_attrs EXPORT_SYMBOL vmlinux 0x47d8d301 __cond_resched_rwlock_read -EXPORT_SYMBOL vmlinux 0x47ea7df3 sock_setsockopt -EXPORT_SYMBOL vmlinux 0x47fc0b51 bh_submit_read -EXPORT_SYMBOL vmlinux 0x4804ec1d _dev_notice -EXPORT_SYMBOL vmlinux 0x48169ddc max8998_read_reg +EXPORT_SYMBOL vmlinux 0x47e4a8f7 __traceiter_module_get +EXPORT_SYMBOL vmlinux 0x47f8d635 __get_hash_from_flowi6 EXPORT_SYMBOL vmlinux 0x48193639 acpi_lid_open -EXPORT_SYMBOL vmlinux 0x482141d1 pci_ep_cfs_remove_epf_group -EXPORT_SYMBOL vmlinux 0x48266bfc netif_set_real_num_tx_queues -EXPORT_SYMBOL vmlinux 0x48296b59 dquot_commit +EXPORT_SYMBOL vmlinux 0x4829122e netdev_txq_to_tc EXPORT_SYMBOL vmlinux 0x4829a47e memcpy EXPORT_SYMBOL vmlinux 0x4829cf6b fscrypt_enqueue_decrypt_work -EXPORT_SYMBOL vmlinux 0x482e7837 unix_attach_fds EXPORT_SYMBOL vmlinux 0x4837bb10 logic_outsb EXPORT_SYMBOL vmlinux 0x4841bdee strnchr -EXPORT_SYMBOL vmlinux 0x4846ce56 iov_iter_pipe EXPORT_SYMBOL vmlinux 0x4848cfb1 phy_mipi_dphy_get_default_config EXPORT_SYMBOL vmlinux 0x484f6edf ktime_get_coarse_real_ts64 EXPORT_SYMBOL vmlinux 0x4859b8bb rtc_year_days EXPORT_SYMBOL vmlinux 0x486075c8 gen_pool_dma_alloc -EXPORT_SYMBOL vmlinux 0x486d2c44 ip_tunnel_header_ops -EXPORT_SYMBOL vmlinux 0x4873de49 dma_unmap_page_attrs -EXPORT_SYMBOL vmlinux 0x4879301c unpin_user_pages +EXPORT_SYMBOL vmlinux 0x487e2f92 dquot_free_inode +EXPORT_SYMBOL vmlinux 0x48881a0b migrate_vma_pages +EXPORT_SYMBOL vmlinux 0x489c56b4 wait_on_page_private_2_killable EXPORT_SYMBOL vmlinux 0x489eda10 memset32 EXPORT_SYMBOL vmlinux 0x489f6e0b rdma_dim EXPORT_SYMBOL vmlinux 0x48a91171 string_get_size -EXPORT_SYMBOL vmlinux 0x48aa0ed5 block_write_end -EXPORT_SYMBOL vmlinux 0x48b5fdd4 d_path EXPORT_SYMBOL vmlinux 0x48b99a13 vme_lm_free EXPORT_SYMBOL vmlinux 0x48c093fb _atomic_dec_and_lock_irqsave -EXPORT_SYMBOL vmlinux 0x48d78e62 pfifo_qdisc_ops -EXPORT_SYMBOL vmlinux 0x48fbe62d dquot_free_inode +EXPORT_SYMBOL vmlinux 0x48ce320a register_netdev +EXPORT_SYMBOL vmlinux 0x48ddf39d of_match_device +EXPORT_SYMBOL vmlinux 0x48e9c76f alloc_buffer_head +EXPORT_SYMBOL vmlinux 0x48e9c836 __skb_checksum_complete +EXPORT_SYMBOL vmlinux 0x48ebf4e5 sock_no_accept EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert -EXPORT_SYMBOL vmlinux 0x49123929 gnet_stats_copy_basic -EXPORT_SYMBOL vmlinux 0x491a4df0 d_alloc_name -EXPORT_SYMBOL vmlinux 0x491c241c dcb_ieee_getapp_default_prio_mask -EXPORT_SYMBOL vmlinux 0x494c8465 filemap_fdatawrite_wbc +EXPORT_SYMBOL vmlinux 0x491d2e3c get_tree_single +EXPORT_SYMBOL vmlinux 0x4923be76 generic_file_readonly_mmap +EXPORT_SYMBOL vmlinux 0x4931dedf clear_page_dirty_for_io +EXPORT_SYMBOL vmlinux 0x493511fa __dquot_transfer +EXPORT_SYMBOL vmlinux 0x494146db seq_putc +EXPORT_SYMBOL vmlinux 0x494ea568 pcibios_bus_to_resource EXPORT_SYMBOL vmlinux 0x495231ea mul_u64_u64_div_u64 +EXPORT_SYMBOL vmlinux 0x495420c8 device_get_mac_address +EXPORT_SYMBOL vmlinux 0x49598d4b __xfrm_state_destroy EXPORT_SYMBOL vmlinux 0x4967e79f radix_tree_iter_resume -EXPORT_SYMBOL vmlinux 0x4968e3d9 backlight_device_get_by_type -EXPORT_SYMBOL vmlinux 0x49845376 pm860x_page_reg_write +EXPORT_SYMBOL vmlinux 0x49696989 ip6_output +EXPORT_SYMBOL vmlinux 0x497dddfe tcf_idr_check_alloc EXPORT_SYMBOL vmlinux 0x498e9128 ZSTD_findDecompressedSize +EXPORT_SYMBOL vmlinux 0x4993d76a blk_queue_alignment_offset EXPORT_SYMBOL vmlinux 0x499f0ecf nd_sb_checksum -EXPORT_SYMBOL vmlinux 0x49abf6bd xsk_clear_tx_need_wakeup +EXPORT_SYMBOL vmlinux 0x49a06ad0 kobject_put EXPORT_SYMBOL vmlinux 0x49b163b8 acpi_bus_scan -EXPORT_SYMBOL vmlinux 0x49b587bb page_pool_alloc_pages -EXPORT_SYMBOL vmlinux 0x49c1a2d6 dev_remove_offload -EXPORT_SYMBOL vmlinux 0x49cbda75 ptp_cancel_worker_sync -EXPORT_SYMBOL vmlinux 0x49eec462 fiemap_prep -EXPORT_SYMBOL vmlinux 0x49f09d52 blackhole_netdev -EXPORT_SYMBOL vmlinux 0x4a17c00f nf_hook_slow -EXPORT_SYMBOL vmlinux 0x4a25a56e xattr_supported_namespace +EXPORT_SYMBOL vmlinux 0x49c7f817 ip6_err_gen_icmpv6_unreach +EXPORT_SYMBOL vmlinux 0x49cc01ba configfs_unregister_subsystem +EXPORT_SYMBOL vmlinux 0x49d4e84d mipi_dsi_attach +EXPORT_SYMBOL vmlinux 0x49d575f2 ipmi_platform_add +EXPORT_SYMBOL vmlinux 0x49d59b89 proc_create_single_data +EXPORT_SYMBOL vmlinux 0x49fe17db tcf_action_update_stats +EXPORT_SYMBOL vmlinux 0x4a018721 dev_graft_qdisc +EXPORT_SYMBOL vmlinux 0x4a041977 dma_map_page_attrs +EXPORT_SYMBOL vmlinux 0x4a0f06e1 of_clk_get +EXPORT_SYMBOL vmlinux 0x4a103129 vga_get +EXPORT_SYMBOL vmlinux 0x4a237744 eth_prepare_mac_addr_change EXPORT_SYMBOL vmlinux 0x4a3ad70e wait_for_completion_timeout -EXPORT_SYMBOL vmlinux 0x4a494d86 ndo_dflt_fdb_del -EXPORT_SYMBOL vmlinux 0x4a5404b1 should_remove_suid -EXPORT_SYMBOL vmlinux 0x4a5e41cb dev_get_by_name_rcu -EXPORT_SYMBOL vmlinux 0x4a667cb5 param_set_charp -EXPORT_SYMBOL vmlinux 0x4a6ee5bd of_match_device +EXPORT_SYMBOL vmlinux 0x4a42c4f1 __blk_mq_end_request +EXPORT_SYMBOL vmlinux 0x4a45b13a pci_ep_cfs_remove_epc_group +EXPORT_SYMBOL vmlinux 0x4a562270 input_unregister_handler +EXPORT_SYMBOL vmlinux 0x4a6f3aab pnp_stop_dev EXPORT_SYMBOL vmlinux 0x4a8a6949 get_random_bytes_arch +EXPORT_SYMBOL vmlinux 0x4a8e99ff blk_mq_requeue_request EXPORT_SYMBOL vmlinux 0x4a93576a ucc_fast_free EXPORT_SYMBOL vmlinux 0x4a96a8eb xxh32_digest -EXPORT_SYMBOL vmlinux 0x4ac2344f kill_fasync -EXPORT_SYMBOL vmlinux 0x4ad82c08 del_random_ready_callback +EXPORT_SYMBOL vmlinux 0x4a9f1850 migrate_page_states +EXPORT_SYMBOL vmlinux 0x4aae8163 pcie_get_speed_cap +EXPORT_SYMBOL vmlinux 0x4ab8f286 devm_memremap +EXPORT_SYMBOL vmlinux 0x4ac6ae21 mipi_dsi_driver_unregister +EXPORT_SYMBOL vmlinux 0x4acaba5d mmc_detect_change +EXPORT_SYMBOL vmlinux 0x4acf958b pm8606_osc_disable +EXPORT_SYMBOL vmlinux 0x4add2c6d __devm_release_region EXPORT_SYMBOL vmlinux 0x4aea463f crc32_le_shift +EXPORT_SYMBOL vmlinux 0x4af421c8 irq_set_chip EXPORT_SYMBOL vmlinux 0x4af6ddf0 kstrtou16 EXPORT_SYMBOL vmlinux 0x4afb2238 add_wait_queue -EXPORT_SYMBOL vmlinux 0x4b009ff3 pci_bus_claim_resources -EXPORT_SYMBOL vmlinux 0x4b00e9f4 xfrm_register_km +EXPORT_SYMBOL vmlinux 0x4afb4af7 of_find_i2c_device_by_node +EXPORT_SYMBOL vmlinux 0x4afffd9c netif_set_xps_queue EXPORT_SYMBOL vmlinux 0x4b0a3f52 gic_nonsecure_priorities -EXPORT_SYMBOL vmlinux 0x4b2bb972 vfs_fileattr_set -EXPORT_SYMBOL vmlinux 0x4b50d41f phy_device_remove +EXPORT_SYMBOL vmlinux 0x4b150e59 seq_escape +EXPORT_SYMBOL vmlinux 0x4b1ba2e1 clk_hw_get_clk +EXPORT_SYMBOL vmlinux 0x4b4381b3 put_watch_queue +EXPORT_SYMBOL vmlinux 0x4b5fb030 scsi_rescan_device EXPORT_SYMBOL vmlinux 0x4b5fd49e dm_kcopyd_do_callback +EXPORT_SYMBOL vmlinux 0x4b6b4d1b of_device_alloc EXPORT_SYMBOL vmlinux 0x4b6df007 acpi_evaluate_reg -EXPORT_SYMBOL vmlinux 0x4b7e8186 __genphy_config_aneg -EXPORT_SYMBOL vmlinux 0x4b824ddc fscrypt_setup_filename -EXPORT_SYMBOL vmlinux 0x4b8b687a flow_rule_match_ports -EXPORT_SYMBOL vmlinux 0x4ba189ee vfs_statfs -EXPORT_SYMBOL vmlinux 0x4ba4b18a cleancache_register_ops +EXPORT_SYMBOL vmlinux 0x4b7935c5 scsicam_bios_param +EXPORT_SYMBOL vmlinux 0x4b8d97e6 param_ops_string +EXPORT_SYMBOL vmlinux 0x4b971e40 devfreq_monitor_suspend +EXPORT_SYMBOL vmlinux 0x4b9c4503 block_invalidatepage +EXPORT_SYMBOL vmlinux 0x4ba962e9 __serio_register_driver +EXPORT_SYMBOL vmlinux 0x4bad0f57 md_reap_sync_thread +EXPORT_SYMBOL vmlinux 0x4bbaa646 touch_atime +EXPORT_SYMBOL vmlinux 0x4bc38107 shrink_dcache_parent EXPORT_SYMBOL vmlinux 0x4bcc2662 mempool_init_node -EXPORT_SYMBOL vmlinux 0x4beacb6a param_set_bool +EXPORT_SYMBOL vmlinux 0x4becad5a __cleancache_put_page EXPORT_SYMBOL vmlinux 0x4bef1c67 empty_name -EXPORT_SYMBOL vmlinux 0x4bf11dff wake_up_process EXPORT_SYMBOL vmlinux 0x4bf3ce6f qman_release_cgrid EXPORT_SYMBOL vmlinux 0x4c07a7e0 acpi_processor_unregister_performance -EXPORT_SYMBOL vmlinux 0x4c095af5 skb_free_datagram -EXPORT_SYMBOL vmlinux 0x4c0aad79 jbd2_journal_get_create_access -EXPORT_SYMBOL vmlinux 0x4c10515f blk_mq_delay_run_hw_queues -EXPORT_SYMBOL vmlinux 0x4c1b240e neigh_event_ns -EXPORT_SYMBOL vmlinux 0x4c28d3c2 dma_map_sg_attrs +EXPORT_SYMBOL vmlinux 0x4c1447e9 tty_port_put +EXPORT_SYMBOL vmlinux 0x4c202f3a sock_no_connect +EXPORT_SYMBOL vmlinux 0x4c375c73 iov_iter_kvec EXPORT_SYMBOL vmlinux 0x4c38d4e0 utf8_strncasecmp_folded EXPORT_SYMBOL vmlinux 0x4c416eb9 LZ4_decompress_fast -EXPORT_SYMBOL vmlinux 0x4c551768 rtnl_notify -EXPORT_SYMBOL vmlinux 0x4c55c97b padata_free_shell -EXPORT_SYMBOL vmlinux 0x4c5d5eff pci_release_resource -EXPORT_SYMBOL vmlinux 0x4c7d15cb kmem_cache_shrink -EXPORT_SYMBOL vmlinux 0x4c8a404f cdev_set_parent -EXPORT_SYMBOL vmlinux 0x4c8dad64 skb_copy_bits -EXPORT_SYMBOL vmlinux 0x4c918f82 blk_rq_map_integrity_sg -EXPORT_SYMBOL vmlinux 0x4c951136 __ClearPageMovable -EXPORT_SYMBOL vmlinux 0x4c954f73 pagecache_write_begin -EXPORT_SYMBOL vmlinux 0x4cb0bd9f clk_hw_get_clk +EXPORT_SYMBOL vmlinux 0x4c47c8e6 rtnl_notify +EXPORT_SYMBOL vmlinux 0x4c4c18b2 blk_queue_update_dma_pad +EXPORT_SYMBOL vmlinux 0x4c5522e4 dst_release_immediate +EXPORT_SYMBOL vmlinux 0x4c81c175 get_vm_area +EXPORT_SYMBOL vmlinux 0x4c8579ef phy_set_asym_pause +EXPORT_SYMBOL vmlinux 0x4cb3bf4b truncate_setsize +EXPORT_SYMBOL vmlinux 0x4cb7919f kiocb_set_cancel_fn EXPORT_SYMBOL vmlinux 0x4cba441d iwe_stream_add_event -EXPORT_SYMBOL vmlinux 0x4cbed01c misc_register -EXPORT_SYMBOL vmlinux 0x4cbfb982 tty_chars_in_buffer -EXPORT_SYMBOL vmlinux 0x4ccc39c9 phy_connect_direct -EXPORT_SYMBOL vmlinux 0x4ccdbb9e pcim_iounmap_regions -EXPORT_SYMBOL vmlinux 0x4ceaf693 tcp_sock_set_quickack +EXPORT_SYMBOL vmlinux 0x4ce1137e phy_write_paged +EXPORT_SYMBOL vmlinux 0x4ce29ee2 tty_port_lower_dtr_rts +EXPORT_SYMBOL vmlinux 0x4cecf13d ppp_unregister_compressor +EXPORT_SYMBOL vmlinux 0x4cf0e542 __SetPageMovable +EXPORT_SYMBOL vmlinux 0x4cf85163 tcp_sock_set_syncnt +EXPORT_SYMBOL vmlinux 0x4cfb41ba dm_table_event +EXPORT_SYMBOL vmlinux 0x4d04f063 scsi_vpd_tpg_id EXPORT_SYMBOL vmlinux 0x4d0d163d copy_page -EXPORT_SYMBOL vmlinux 0x4d14d0f2 security_tun_dev_attach -EXPORT_SYMBOL vmlinux 0x4d1c44e7 acpi_processor_notify_smm -EXPORT_SYMBOL vmlinux 0x4d2703e0 iov_iter_get_pages -EXPORT_SYMBOL vmlinux 0x4d2a7254 devm_alloc_etherdev_mqs -EXPORT_SYMBOL vmlinux 0x4d2a9eac tcf_idr_release +EXPORT_SYMBOL vmlinux 0x4d19c76f kmem_cache_destroy +EXPORT_SYMBOL vmlinux 0x4d22def7 fasync_helper EXPORT_SYMBOL vmlinux 0x4d2c7133 acpi_info +EXPORT_SYMBOL vmlinux 0x4d61a1ad ip4_datagram_connect EXPORT_SYMBOL vmlinux 0x4d65cbd5 csum_ipv6_magic -EXPORT_SYMBOL vmlinux 0x4d748f3c __set_page_dirty_no_writeback -EXPORT_SYMBOL vmlinux 0x4d79c1d6 netdev_name_node_alt_create -EXPORT_SYMBOL vmlinux 0x4d857f9c textsearch_unregister +EXPORT_SYMBOL vmlinux 0x4d689fba twl6040_get_pll +EXPORT_SYMBOL vmlinux 0x4d69d0b6 tcp_md5_do_add +EXPORT_SYMBOL vmlinux 0x4d72fe1a inode_permission EXPORT_SYMBOL vmlinux 0x4d924f20 memremap EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase -EXPORT_SYMBOL vmlinux 0x4d9cf401 pci_find_parent_resource +EXPORT_SYMBOL vmlinux 0x4da37441 ip_generic_getfrag EXPORT_SYMBOL vmlinux 0x4da596e6 qman_retire_fq -EXPORT_SYMBOL vmlinux 0x4db67a2e gro_cells_init -EXPORT_SYMBOL vmlinux 0x4dc6aeca ether_setup +EXPORT_SYMBOL vmlinux 0x4dbb3df7 xfrm_if_register_cb +EXPORT_SYMBOL vmlinux 0x4dc5f895 __devm_request_region EXPORT_SYMBOL vmlinux 0x4dca08ee sync_file_get_fence -EXPORT_SYMBOL vmlinux 0x4dd72bf2 phy_read_paged -EXPORT_SYMBOL vmlinux 0x4de6c6d1 csum_and_copy_to_iter -EXPORT_SYMBOL vmlinux 0x4de70b5f of_find_node_by_phandle -EXPORT_SYMBOL vmlinux 0x4de7da6f inet_stream_connect +EXPORT_SYMBOL vmlinux 0x4dd667e1 mmc_hw_reset EXPORT_SYMBOL vmlinux 0x4de995ec gen_pool_dma_alloc_algo EXPORT_SYMBOL vmlinux 0x4df02057 crc32_be +EXPORT_SYMBOL vmlinux 0x4df023ad bioset_init_from_src EXPORT_SYMBOL vmlinux 0x4df2ea84 gen_estimator_read -EXPORT_SYMBOL vmlinux 0x4df3b8db processors EXPORT_SYMBOL vmlinux 0x4dfa8d4b mutex_lock EXPORT_SYMBOL vmlinux 0x4e20bcf8 radix_tree_tag_set -EXPORT_SYMBOL vmlinux 0x4e21ea1e acpi_device_set_power -EXPORT_SYMBOL vmlinux 0x4e2e6fee deactivate_super 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 0x4e494bef regset_get_alloc +EXPORT_SYMBOL vmlinux 0x4e4c87fe md_flush_request EXPORT_SYMBOL vmlinux 0x4e4f0f16 dma_fence_chain_find_seqno EXPORT_SYMBOL vmlinux 0x4e547048 __kmalloc_node_track_caller -EXPORT_SYMBOL vmlinux 0x4e568a63 __page_frag_cache_drain +EXPORT_SYMBOL vmlinux 0x4e66a1a5 rtnetlink_put_metrics EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder -EXPORT_SYMBOL vmlinux 0x4e69fee1 tcp_create_openreq_child EXPORT_SYMBOL vmlinux 0x4e6e4b41 radix_tree_delete EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console -EXPORT_SYMBOL vmlinux 0x4e889b25 dma_set_mask +EXPORT_SYMBOL vmlinux 0x4e8157c2 tcf_classify EXPORT_SYMBOL vmlinux 0x4ea25709 dql_reset EXPORT_SYMBOL vmlinux 0x4eada8f7 security_secid_to_secctx -EXPORT_SYMBOL vmlinux 0x4eb0d320 param_get_hexint +EXPORT_SYMBOL vmlinux 0x4eb0591d param_ops_ushort EXPORT_SYMBOL vmlinux 0x4ec54e78 bitmap_to_arr32 -EXPORT_SYMBOL vmlinux 0x4ee158d1 filp_close -EXPORT_SYMBOL vmlinux 0x4ef5c055 ipv6_dev_find -EXPORT_SYMBOL vmlinux 0x4f03d71b netif_skb_features -EXPORT_SYMBOL vmlinux 0x4f053ee4 phy_ethtool_get_link_ksettings -EXPORT_SYMBOL vmlinux 0x4f0fade2 kmem_cache_free +EXPORT_SYMBOL vmlinux 0x4ec5a179 inode_io_list_del +EXPORT_SYMBOL vmlinux 0x4ec9f637 param_ops_charp +EXPORT_SYMBOL vmlinux 0x4efaaab9 ip_sock_set_tos +EXPORT_SYMBOL vmlinux 0x4f07a61c km_new_mapping +EXPORT_SYMBOL vmlinux 0x4f1b1d21 inode_set_flags EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create EXPORT_SYMBOL vmlinux 0x4f2250ba rtc_tm_to_time64 -EXPORT_SYMBOL vmlinux 0x4f29c104 tcf_generic_walker -EXPORT_SYMBOL vmlinux 0x4f4102fb prepare_to_swait_event +EXPORT_SYMBOL vmlinux 0x4f235e4a pcibios_resource_to_bus +EXPORT_SYMBOL vmlinux 0x4f274c1e kernel_getpeername +EXPORT_SYMBOL vmlinux 0x4f2813c0 file_update_time +EXPORT_SYMBOL vmlinux 0x4f53f728 dquot_load_quota_inode EXPORT_SYMBOL vmlinux 0x4f55166f acpi_set_current_resources -EXPORT_SYMBOL vmlinux 0x4f68b460 of_root -EXPORT_SYMBOL vmlinux 0x4f6e4505 get_ipc_ns_exported +EXPORT_SYMBOL vmlinux 0x4f56cf75 pci_request_irq EXPORT_SYMBOL vmlinux 0x4f709989 security_binder_transfer_binder -EXPORT_SYMBOL vmlinux 0x4f7cc639 blk_integrity_register -EXPORT_SYMBOL vmlinux 0x4f845f21 inode_permission -EXPORT_SYMBOL vmlinux 0x4f8de506 lock_sock_nested -EXPORT_SYMBOL vmlinux 0x4f95c82e tcf_idr_create -EXPORT_SYMBOL vmlinux 0x4fa4b5bf fwnode_mdiobus_phy_device_register -EXPORT_SYMBOL vmlinux 0x4fb7e5b1 napi_gro_frags -EXPORT_SYMBOL vmlinux 0x4fc387aa page_symlink +EXPORT_SYMBOL vmlinux 0x4f7b805c mii_ethtool_set_link_ksettings +EXPORT_SYMBOL vmlinux 0x4f909713 blkdev_get_by_path +EXPORT_SYMBOL vmlinux 0x4fb0ee19 __netlink_dump_start +EXPORT_SYMBOL vmlinux 0x4fbdb0d6 __mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x4fca231d twl6040_get_vibralr_status +EXPORT_SYMBOL vmlinux 0x4fd8f4ea fixed_size_llseek +EXPORT_SYMBOL vmlinux 0x4ff530d2 of_graph_is_present +EXPORT_SYMBOL vmlinux 0x4ff9970b __mark_inode_dirty EXPORT_SYMBOL vmlinux 0x4ffb59bf __SCK__tp_func_kfree -EXPORT_SYMBOL vmlinux 0x50076c75 inet_frag_queue_insert +EXPORT_SYMBOL vmlinux 0x5008be94 generic_file_open EXPORT_SYMBOL vmlinux 0x50097088 security_tun_dev_free_security EXPORT_SYMBOL vmlinux 0x5009c71d glob_match +EXPORT_SYMBOL vmlinux 0x50267a72 fscrypt_decrypt_block_inplace EXPORT_SYMBOL vmlinux 0x5027bde2 acpi_acquire_mutex -EXPORT_SYMBOL vmlinux 0x502e3771 dquot_quotactl_sysfile_ops -EXPORT_SYMBOL vmlinux 0x50333bbc phy_support_sym_pause +EXPORT_SYMBOL vmlinux 0x502ae83e d_exact_alias +EXPORT_SYMBOL vmlinux 0x5033d1c6 fget_raw +EXPORT_SYMBOL vmlinux 0x50586660 amba_request_regions EXPORT_SYMBOL vmlinux 0x50624917 sha1_init +EXPORT_SYMBOL vmlinux 0x50681ec9 tty_kref_put EXPORT_SYMBOL vmlinux 0x506dff1a __genradix_free -EXPORT_SYMBOL vmlinux 0x5076c68c dump_skip -EXPORT_SYMBOL vmlinux 0x50936e27 ppp_unregister_compressor +EXPORT_SYMBOL vmlinux 0x507039e5 tc_setup_cb_replace +EXPORT_SYMBOL vmlinux 0x50763669 km_policy_expired EXPORT_SYMBOL vmlinux 0x509b64ea acpi_has_method EXPORT_SYMBOL vmlinux 0x50a4698c fb_videomode_to_modelist -EXPORT_SYMBOL vmlinux 0x50b371ee of_phy_get_and_connect EXPORT_SYMBOL vmlinux 0x50b73ce2 rfkill_find_type EXPORT_SYMBOL vmlinux 0x50be748d security_ib_free_security -EXPORT_SYMBOL vmlinux 0x50c0edea netdev_has_upper_dev EXPORT_SYMBOL vmlinux 0x50cf7585 hex2bin EXPORT_SYMBOL vmlinux 0x50d035c2 vsscanf -EXPORT_SYMBOL vmlinux 0x50f3dd62 __inet6_lookup_established +EXPORT_SYMBOL vmlinux 0x50ef160b ip6_find_1stfragopt EXPORT_SYMBOL vmlinux 0x50f85302 __arm_smccc_hvc EXPORT_SYMBOL vmlinux 0x50f91491 __genradix_ptr EXPORT_SYMBOL vmlinux 0x5102a30b do_wait_intr_irq -EXPORT_SYMBOL vmlinux 0x5114a972 migrate_page_states -EXPORT_SYMBOL vmlinux 0x5124f0f2 xfrm_state_flush -EXPORT_SYMBOL vmlinux 0x51276f47 dev_pick_tx_zero +EXPORT_SYMBOL vmlinux 0x51053dfd poll_initwait +EXPORT_SYMBOL vmlinux 0x5117fed7 sock_wmalloc +EXPORT_SYMBOL vmlinux 0x511b3aaf module_layout +EXPORT_SYMBOL vmlinux 0x511e699d page_mapped +EXPORT_SYMBOL vmlinux 0x51216116 mini_qdisc_pair_block_init EXPORT_SYMBOL vmlinux 0x512afb54 nla_put_nohdr -EXPORT_SYMBOL vmlinux 0x5141e940 __put_user_ns +EXPORT_SYMBOL vmlinux 0x51348cf3 mmc_can_secure_erase_trim +EXPORT_SYMBOL vmlinux 0x514d32d1 rt_mutex_base_init EXPORT_SYMBOL vmlinux 0x515083bf acpi_release_mutex +EXPORT_SYMBOL vmlinux 0x5155f179 __page_symlink +EXPORT_SYMBOL vmlinux 0x515b18ca twl6040_set_pll +EXPORT_SYMBOL vmlinux 0x515bcac6 unregister_netdevice_notifier_dev_net EXPORT_SYMBOL vmlinux 0x515f520b qman_portal_get_iperiod EXPORT_SYMBOL vmlinux 0x51641162 opal_unlock_from_suspend -EXPORT_SYMBOL vmlinux 0x517dc0c9 blk_mq_run_hw_queues -EXPORT_SYMBOL vmlinux 0x517eed99 security_inet_conn_request -EXPORT_SYMBOL vmlinux 0x5189f08a devm_clk_put -EXPORT_SYMBOL vmlinux 0x519ed745 pci_fixup_device -EXPORT_SYMBOL vmlinux 0x51afe4b5 key_instantiate_and_link +EXPORT_SYMBOL vmlinux 0x5175dca7 blk_mq_run_hw_queue +EXPORT_SYMBOL vmlinux 0x517de6ca nosteal_pipe_buf_ops +EXPORT_SYMBOL vmlinux 0x519e5f67 bioset_exit +EXPORT_SYMBOL vmlinux 0x51af99f3 set_bdi_congested EXPORT_SYMBOL vmlinux 0x51b40718 trace_seq_hex_dump -EXPORT_SYMBOL vmlinux 0x51b9111f i2c_smbus_read_word_data -EXPORT_SYMBOL vmlinux 0x51c45593 node_data +EXPORT_SYMBOL vmlinux 0x51b8c66f ip_sock_set_recverr EXPORT_SYMBOL vmlinux 0x51d12d4e acpi_pci_disabled -EXPORT_SYMBOL vmlinux 0x51d9098f vga_client_register -EXPORT_SYMBOL vmlinux 0x51e2c585 capable_wrt_inode_uidgid -EXPORT_SYMBOL vmlinux 0x51e77c97 pfn_valid +EXPORT_SYMBOL vmlinux 0x51d51cef tcp_seq_next +EXPORT_SYMBOL vmlinux 0x51d67865 rproc_elf_find_loaded_rsc_table +EXPORT_SYMBOL vmlinux 0x51dcc896 try_module_get +EXPORT_SYMBOL vmlinux 0x51f0ee55 always_delete_dentry +EXPORT_SYMBOL vmlinux 0x51f3bcef tcf_idr_release +EXPORT_SYMBOL vmlinux 0x51f6f5d6 kill_litter_super EXPORT_SYMBOL vmlinux 0x51f86a1a blk_limits_io_opt EXPORT_SYMBOL vmlinux 0x5203d176 cmd_db_ready -EXPORT_SYMBOL vmlinux 0x52139515 tcf_exts_num_actions +EXPORT_SYMBOL vmlinux 0x5208b2f8 neigh_event_ns EXPORT_SYMBOL vmlinux 0x52185192 __nla_reserve_nohdr -EXPORT_SYMBOL vmlinux 0x52201fd2 file_modified -EXPORT_SYMBOL vmlinux 0x522aefd9 scsi_register_interface -EXPORT_SYMBOL vmlinux 0x522fcab4 proc_create_seq_private -EXPORT_SYMBOL vmlinux 0x5246bbdd ps2_handle_response -EXPORT_SYMBOL vmlinux 0x52515962 mmc_register_driver +EXPORT_SYMBOL vmlinux 0x524195b4 generic_file_mmap +EXPORT_SYMBOL vmlinux 0x526d019e dquot_destroy EXPORT_SYMBOL vmlinux 0x526eef2c hdmi_vendor_infoframe_pack -EXPORT_SYMBOL vmlinux 0x52729a99 ip6_xmit -EXPORT_SYMBOL vmlinux 0x5288d107 tty_port_lower_dtr_rts -EXPORT_SYMBOL vmlinux 0x528c0ec9 sock_wake_async +EXPORT_SYMBOL vmlinux 0x5291de15 jbd2_journal_revoke EXPORT_SYMBOL vmlinux 0x52983a4f vme_master_write -EXPORT_SYMBOL vmlinux 0x52a254b3 genphy_loopback -EXPORT_SYMBOL vmlinux 0x52a8e233 input_set_capability +EXPORT_SYMBOL vmlinux 0x52a5d9f0 generic_cont_expand_simple +EXPORT_SYMBOL vmlinux 0x52aba32b vmf_insert_pfn_prot EXPORT_SYMBOL vmlinux 0x52ba6325 __cpuhp_setup_state -EXPORT_SYMBOL vmlinux 0x52cfdb32 qdisc_offload_graft_helper -EXPORT_SYMBOL vmlinux 0x52d3e484 __xfrm_decode_session -EXPORT_SYMBOL vmlinux 0x52d68111 configfs_remove_default_groups +EXPORT_SYMBOL vmlinux 0x52ca3669 genphy_c37_config_aneg EXPORT_SYMBOL vmlinux 0x52d717da xz_dec_init -EXPORT_SYMBOL vmlinux 0x52dc4fac cdev_device_del EXPORT_SYMBOL vmlinux 0x52dcb85b __traceiter_kmalloc -EXPORT_SYMBOL vmlinux 0x52e8fbcb serial8250_do_pm +EXPORT_SYMBOL vmlinux 0x52dd9588 tty_lock +EXPORT_SYMBOL vmlinux 0x52ec559c pci_dev_driver EXPORT_SYMBOL vmlinux 0x52ecbc75 crc_ccitt +EXPORT_SYMBOL vmlinux 0x52ee9988 proc_remove EXPORT_SYMBOL vmlinux 0x52f2850a imx_sc_pm_cpu_start EXPORT_SYMBOL vmlinux 0x530b1e98 pm_suspend EXPORT_SYMBOL vmlinux 0x53126ecc __percpu_counter_sum -EXPORT_SYMBOL vmlinux 0x5315d457 generic_error_remove_page -EXPORT_SYMBOL vmlinux 0x532b001e generic_file_direct_write +EXPORT_SYMBOL vmlinux 0x5312c4f0 devm_clk_get +EXPORT_SYMBOL vmlinux 0x532bdae5 update_region +EXPORT_SYMBOL vmlinux 0x533167f4 sock_enable_timestamps EXPORT_SYMBOL vmlinux 0x533206b5 sort_r EXPORT_SYMBOL vmlinux 0x5338184f ethtool_sprintf -EXPORT_SYMBOL vmlinux 0x533d8afc mipi_dsi_set_maximum_return_packet_size -EXPORT_SYMBOL vmlinux 0x5357c5e5 block_page_mkwrite -EXPORT_SYMBOL vmlinux 0x535d68c7 __dquot_alloc_space -EXPORT_SYMBOL vmlinux 0x53779446 fwnode_get_mac_address -EXPORT_SYMBOL vmlinux 0x537de407 flow_rule_match_control -EXPORT_SYMBOL vmlinux 0x53887338 i2c_add_adapter -EXPORT_SYMBOL vmlinux 0x538c1919 end_buffer_async_write -EXPORT_SYMBOL vmlinux 0x53ab88ab ata_link_printk -EXPORT_SYMBOL vmlinux 0x53affe08 blk_mq_requeue_request +EXPORT_SYMBOL vmlinux 0x534a47fe seq_open +EXPORT_SYMBOL vmlinux 0x534c5fa1 xfrm4_protocol_register +EXPORT_SYMBOL vmlinux 0x535b9084 proc_set_user +EXPORT_SYMBOL vmlinux 0x5374e6b8 input_match_device_id +EXPORT_SYMBOL vmlinux 0x538116a9 mfd_remove_devices_late +EXPORT_SYMBOL vmlinux 0x5392d650 alloc_pages_vma +EXPORT_SYMBOL vmlinux 0x53b4914c security_unix_stream_connect EXPORT_SYMBOL vmlinux 0x53b954a2 up_read -EXPORT_SYMBOL vmlinux 0x53bc777b grab_cache_page_write_begin -EXPORT_SYMBOL vmlinux 0x53df13f5 ata_scsi_cmd_error_handler -EXPORT_SYMBOL vmlinux 0x53e346e1 pci_bus_read_config_word +EXPORT_SYMBOL vmlinux 0x53da793f seq_file_path EXPORT_SYMBOL vmlinux 0x53e50ffa first_ec EXPORT_SYMBOL vmlinux 0x53eff192 tegra_ivc_align EXPORT_SYMBOL vmlinux 0x53fa36d1 ZSTD_decompressBlock -EXPORT_SYMBOL vmlinux 0x53fee156 __cgroup_bpf_run_filter_sk +EXPORT_SYMBOL vmlinux 0x54018df1 blk_queue_max_segments EXPORT_SYMBOL vmlinux 0x5402da9f xudma_navss_psil_pair -EXPORT_SYMBOL vmlinux 0x54301010 try_to_writeback_inodes_sb -EXPORT_SYMBOL vmlinux 0x543b7eed xfrm6_protocol_deregister +EXPORT_SYMBOL vmlinux 0x5403be24 vlan_vids_add_by_dev +EXPORT_SYMBOL vmlinux 0x541a94ef __netif_napi_del +EXPORT_SYMBOL vmlinux 0x541da054 block_is_partially_uptodate +EXPORT_SYMBOL vmlinux 0x5436472f cont_write_begin EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start -EXPORT_SYMBOL vmlinux 0x544d4b46 configfs_register_subsystem -EXPORT_SYMBOL vmlinux 0x5494f966 netdev_change_features +EXPORT_SYMBOL vmlinux 0x5460209a keyring_search +EXPORT_SYMBOL vmlinux 0x547757d1 blk_sync_queue +EXPORT_SYMBOL vmlinux 0x549c252c gnet_stats_copy_rate_est +EXPORT_SYMBOL vmlinux 0x54a75ceb posix_acl_chmod +EXPORT_SYMBOL vmlinux 0x54a7b44b tty_port_tty_set EXPORT_SYMBOL vmlinux 0x54b1fac6 __ubsan_handle_load_invalid_value -EXPORT_SYMBOL vmlinux 0x54b86ce5 serial8250_do_set_termios -EXPORT_SYMBOL vmlinux 0x54c20c26 pci_scan_slot -EXPORT_SYMBOL vmlinux 0x54e00acd devm_rproc_alloc +EXPORT_SYMBOL vmlinux 0x54db7542 nf_log_unregister +EXPORT_SYMBOL vmlinux 0x54e2fdbc config_item_put EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp EXPORT_SYMBOL vmlinux 0x54ea6dfe xen_start_flags -EXPORT_SYMBOL vmlinux 0x54fb9620 tcf_em_unregister -EXPORT_SYMBOL vmlinux 0x55038020 of_graph_get_endpoint_count +EXPORT_SYMBOL vmlinux 0x54fc3888 xudma_get_device +EXPORT_SYMBOL vmlinux 0x5503cca1 seq_bprintf +EXPORT_SYMBOL vmlinux 0x5503cf15 uart_get_divisor EXPORT_SYMBOL vmlinux 0x5506b8f7 netlbl_bitmap_setbit EXPORT_SYMBOL vmlinux 0x5508f28d bman_acquire -EXPORT_SYMBOL vmlinux 0x551341d9 proc_create +EXPORT_SYMBOL vmlinux 0x550a50d4 gnet_stats_start_copy_compat +EXPORT_SYMBOL vmlinux 0x550d1e0b submit_bio_wait EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color -EXPORT_SYMBOL vmlinux 0x551fa10e pci_read_config_word -EXPORT_SYMBOL vmlinux 0x55288118 pcix_get_mmrbc EXPORT_SYMBOL vmlinux 0x552db3aa qman_query_cgr_congested -EXPORT_SYMBOL vmlinux 0x553a4d15 pcie_get_width_cap -EXPORT_SYMBOL vmlinux 0x553f05e9 inet_addr_type_dev_table -EXPORT_SYMBOL vmlinux 0x5542722f blk_post_runtime_resume +EXPORT_SYMBOL vmlinux 0x5535875f pci_select_bars EXPORT_SYMBOL vmlinux 0x554ae3a4 irq_poll_sched -EXPORT_SYMBOL vmlinux 0x555086da ndo_dflt_fdb_dump -EXPORT_SYMBOL vmlinux 0x555cfe2f start_tty +EXPORT_SYMBOL vmlinux 0x554c2669 scmd_printk +EXPORT_SYMBOL vmlinux 0x555f1936 scsi_remove_host +EXPORT_SYMBOL vmlinux 0x5566d7b8 rtnl_create_link EXPORT_SYMBOL vmlinux 0x556b5d62 __kfifo_dma_in_prepare_r -EXPORT_SYMBOL vmlinux 0x558ac752 amba_device_register +EXPORT_SYMBOL vmlinux 0x5587b4ea tty_flip_buffer_push EXPORT_SYMBOL vmlinux 0x558b281d aes_expandkey -EXPORT_SYMBOL vmlinux 0x55a19ae2 security_sb_mnt_opts_compat -EXPORT_SYMBOL vmlinux 0x55a41065 devfreq_unregister_notifier -EXPORT_SYMBOL vmlinux 0x55a466b1 pin_user_pages -EXPORT_SYMBOL vmlinux 0x55ad1cd1 d_find_alias -EXPORT_SYMBOL vmlinux 0x55c32b0f mipi_dsi_dcs_set_tear_scanline -EXPORT_SYMBOL vmlinux 0x55c39979 tty_check_change -EXPORT_SYMBOL vmlinux 0x55d56c5e dma_alloc_attrs +EXPORT_SYMBOL vmlinux 0x559869a6 tcp_child_process +EXPORT_SYMBOL vmlinux 0x559eb04b nd_integrity_init +EXPORT_SYMBOL vmlinux 0x55c01c4b rproc_resource_cleanup +EXPORT_SYMBOL vmlinux 0x55cd1644 simple_write_begin +EXPORT_SYMBOL vmlinux 0x55d4d070 inet_pton_with_scope +EXPORT_SYMBOL vmlinux 0x55dc1166 iov_iter_bvec EXPORT_SYMBOL vmlinux 0x55e31703 ethtool_convert_link_mode_to_legacy_u32 -EXPORT_SYMBOL vmlinux 0x55e41eb3 pci_disable_device -EXPORT_SYMBOL vmlinux 0x55f68530 register_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x5606395b wait_on_page_bit +EXPORT_SYMBOL vmlinux 0x560f4a40 inet_get_local_port_range EXPORT_SYMBOL vmlinux 0x5614f48a qman_dqrr_get_ithresh -EXPORT_SYMBOL vmlinux 0x561662ce eth_header_cache_update -EXPORT_SYMBOL vmlinux 0x56171d2e netdev_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0x5618f740 xsk_clear_tx_need_wakeup +EXPORT_SYMBOL vmlinux 0x56289c2e skb_unlink EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user -EXPORT_SYMBOL vmlinux 0x563767f9 mmc_card_alternative_gpt_sector +EXPORT_SYMBOL vmlinux 0x56435da2 dcache_dir_open EXPORT_SYMBOL vmlinux 0x56470118 __warn_printk EXPORT_SYMBOL vmlinux 0x564f7608 acpi_reconfig_notifier_register -EXPORT_SYMBOL vmlinux 0x56554906 unlock_new_inode EXPORT_SYMBOL vmlinux 0x56555401 nla_put_64bit -EXPORT_SYMBOL vmlinux 0x565c46ae vfs_mkdir -EXPORT_SYMBOL vmlinux 0x5666463f devm_of_iomap -EXPORT_SYMBOL vmlinux 0x566d7e30 page_pool_return_skb_page +EXPORT_SYMBOL vmlinux 0x56566d46 ethtool_op_get_ts_info +EXPORT_SYMBOL vmlinux 0x565abef2 tegra_ivc_write_get_next_frame +EXPORT_SYMBOL vmlinux 0x566818ea simple_pin_fs +EXPORT_SYMBOL vmlinux 0x566d6d84 ppp_register_channel +EXPORT_SYMBOL vmlinux 0x567591b2 cfb_imageblit EXPORT_SYMBOL vmlinux 0x56802ae8 rps_cpu_mask -EXPORT_SYMBOL vmlinux 0x56bd53f4 simple_release_fs -EXPORT_SYMBOL vmlinux 0x56bd98b1 of_parse_phandle_with_fixed_args +EXPORT_SYMBOL vmlinux 0x5698e8c5 phy_ethtool_get_eee +EXPORT_SYMBOL vmlinux 0x569cd06d d_add +EXPORT_SYMBOL vmlinux 0x569e5a88 rpmh_write_batch +EXPORT_SYMBOL vmlinux 0x56b80e0a pnp_unregister_driver EXPORT_SYMBOL vmlinux 0x56c3db64 __tracepoint_kmalloc EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x56cd6b91 devm_ioport_map +EXPORT_SYMBOL vmlinux 0x56d13668 phy_mii_ioctl +EXPORT_SYMBOL vmlinux 0x56dc5f00 security_sb_mnt_opts_compat EXPORT_SYMBOL vmlinux 0x56de5ace __cpuhp_remove_state -EXPORT_SYMBOL vmlinux 0x56e0675c migrate_vma_finalize -EXPORT_SYMBOL vmlinux 0x570cd828 fb_set_var +EXPORT_SYMBOL vmlinux 0x56e0fdd3 __dev_set_mtu +EXPORT_SYMBOL vmlinux 0x56f13bd4 sk_reset_timer +EXPORT_SYMBOL vmlinux 0x5704fc9b genphy_write_mmd_unsupported +EXPORT_SYMBOL vmlinux 0x57062f96 scsi_print_sense +EXPORT_SYMBOL vmlinux 0x571a9bf8 dquot_quota_off +EXPORT_SYMBOL vmlinux 0x571f33e6 xfrm_state_delete_tunnel +EXPORT_SYMBOL vmlinux 0x5737f1d3 kmalloc_caches +EXPORT_SYMBOL vmlinux 0x573ed0f6 i2c_transfer EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put EXPORT_SYMBOL vmlinux 0x57674fd7 __sw_hweight16 -EXPORT_SYMBOL vmlinux 0x577c1ceb acpi_bus_unregister_driver EXPORT_SYMBOL vmlinux 0x578a408b ZSTD_initDCtx -EXPORT_SYMBOL vmlinux 0x578a5b8f blk_mq_queue_stopped EXPORT_SYMBOL vmlinux 0x57900416 gen_pool_fixed_alloc EXPORT_SYMBOL vmlinux 0x5792f848 strlcpy -EXPORT_SYMBOL vmlinux 0x57a04918 rproc_coredump_add_custom_segment +EXPORT_SYMBOL vmlinux 0x57ae04ec phy_stop EXPORT_SYMBOL vmlinux 0x57bc19d2 down_write -EXPORT_SYMBOL vmlinux 0x57caea3d __lock_page -EXPORT_SYMBOL vmlinux 0x57d50a79 mmc_release_host -EXPORT_SYMBOL vmlinux 0x57d900d0 bio_add_page +EXPORT_SYMBOL vmlinux 0x57cac88b tcp_connect +EXPORT_SYMBOL vmlinux 0x57d66062 sk_capable +EXPORT_SYMBOL vmlinux 0x57dae1b1 acpi_notifier_call_chain +EXPORT_SYMBOL vmlinux 0x57e04e2c skb_ensure_writable +EXPORT_SYMBOL vmlinux 0x57e846df simple_dentry_operations +EXPORT_SYMBOL vmlinux 0x57f3281d dm_kcopyd_zero EXPORT_SYMBOL vmlinux 0x57f38cdc qe_get_firmware_info -EXPORT_SYMBOL vmlinux 0x580a3c05 compat_ptr_ioctl +EXPORT_SYMBOL vmlinux 0x57ff1e8d dec_zone_page_state +EXPORT_SYMBOL vmlinux 0x58088734 gnet_stats_copy_basic EXPORT_SYMBOL vmlinux 0x58125fbb nla_reserve_64bit EXPORT_SYMBOL vmlinux 0x5818fe3c posix_acl_from_mode EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate EXPORT_SYMBOL vmlinux 0x582606eb xudma_rflow_put -EXPORT_SYMBOL vmlinux 0x58299c57 md_update_sb EXPORT_SYMBOL vmlinux 0x582b6275 xfrm_if_unregister_cb +EXPORT_SYMBOL vmlinux 0x582d7d42 jbd2_journal_invalidatepage EXPORT_SYMBOL vmlinux 0x5838f6c9 rtc_valid_tm +EXPORT_SYMBOL vmlinux 0x5847573c generic_splice_sendpage +EXPORT_SYMBOL vmlinux 0x5855208c fs_context_for_submount EXPORT_SYMBOL vmlinux 0x585ae877 nmi_panic -EXPORT_SYMBOL vmlinux 0x585dc0d4 find_inode_nowait -EXPORT_SYMBOL vmlinux 0x58625bc6 inet_proto_csum_replace_by_diff -EXPORT_SYMBOL vmlinux 0x58702653 md_integrity_register +EXPORT_SYMBOL vmlinux 0x586777c1 framebuffer_alloc EXPORT_SYMBOL vmlinux 0x587b0954 kvasprintf EXPORT_SYMBOL vmlinux 0x587b892e qe_get_num_of_risc +EXPORT_SYMBOL vmlinux 0x587da2b7 dm_table_run_md_queue_async EXPORT_SYMBOL vmlinux 0x587f22d7 devmap_managed_key -EXPORT_SYMBOL vmlinux 0x588373f9 seq_hex_dump -EXPORT_SYMBOL vmlinux 0x58888cfd i2c_verify_client -EXPORT_SYMBOL vmlinux 0x589006cf blk_mq_init_allocated_queue -EXPORT_SYMBOL vmlinux 0x58a08f98 eth_get_headlen +EXPORT_SYMBOL vmlinux 0x5884f556 ps2_sendbyte +EXPORT_SYMBOL vmlinux 0x58902cf6 sk_ns_capable +EXPORT_SYMBOL vmlinux 0x589f7cfe elv_bio_merge_ok +EXPORT_SYMBOL vmlinux 0x58a3c314 __napi_schedule_irqoff +EXPORT_SYMBOL vmlinux 0x58a7d029 xfrm_register_type_offload EXPORT_SYMBOL vmlinux 0x58acf24b mdiobus_register_board_info -EXPORT_SYMBOL vmlinux 0x58b053f3 simple_getattr EXPORT_SYMBOL vmlinux 0x58b4645c dev_close_many EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard -EXPORT_SYMBOL vmlinux 0x58b9f789 sock_kzfree_s -EXPORT_SYMBOL vmlinux 0x58ca3145 udp_lib_get_port +EXPORT_SYMBOL vmlinux 0x58b7f50f vlan_vids_del_by_dev +EXPORT_SYMBOL vmlinux 0x58dfe0ff handle_edge_irq EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io -EXPORT_SYMBOL vmlinux 0x58ea30db single_release -EXPORT_SYMBOL vmlinux 0x58ffe36d mdio_device_free +EXPORT_SYMBOL vmlinux 0x59067e96 fs_lookup_param +EXPORT_SYMBOL vmlinux 0x590cb03e is_nd_btt +EXPORT_SYMBOL vmlinux 0x590fba24 acpi_mdiobus_register +EXPORT_SYMBOL vmlinux 0x59158776 vfs_unlink +EXPORT_SYMBOL vmlinux 0x5932647e phy_resume EXPORT_SYMBOL vmlinux 0x5934b5a9 qman_destroy_fq -EXPORT_SYMBOL vmlinux 0x5939a03b register_netdevice +EXPORT_SYMBOL vmlinux 0x594151ec reuseport_alloc EXPORT_SYMBOL vmlinux 0x595d8002 hdmi_infoframe_pack -EXPORT_SYMBOL vmlinux 0x596f921a file_fdatawait_range -EXPORT_SYMBOL vmlinux 0x5973c19c skb_tx_error -EXPORT_SYMBOL vmlinux 0x5981ce3a try_module_get +EXPORT_SYMBOL vmlinux 0x59668bd2 tso_start +EXPORT_SYMBOL vmlinux 0x596a5c0d inet_frag_pull_head +EXPORT_SYMBOL vmlinux 0x597d6cf6 devm_clk_put EXPORT_SYMBOL vmlinux 0x599b4888 qe_setbrg EXPORT_SYMBOL vmlinux 0x599fb41c kvmalloc_node EXPORT_SYMBOL vmlinux 0x59a2f0ee packing +EXPORT_SYMBOL vmlinux 0x59a4024a inet6_bind +EXPORT_SYMBOL vmlinux 0x59a8eab0 fwnode_mdiobus_register_phy EXPORT_SYMBOL vmlinux 0x59b4ac3e tcp_memory_allocated -EXPORT_SYMBOL vmlinux 0x59b7dca1 netdev_adjacent_change_commit -EXPORT_SYMBOL vmlinux 0x5a0563e4 get_bitmap_from_slot -EXPORT_SYMBOL vmlinux 0x5a07f963 edac_mc_find +EXPORT_SYMBOL vmlinux 0x59b60b25 ip_setsockopt +EXPORT_SYMBOL vmlinux 0x59fd66d5 genphy_c37_read_status +EXPORT_SYMBOL vmlinux 0x5a037dca mark_buffer_async_write +EXPORT_SYMBOL vmlinux 0x5a050376 vfs_fsync EXPORT_SYMBOL vmlinux 0x5a0b73d0 zlib_deflateInit2 -EXPORT_SYMBOL vmlinux 0x5a25884d nobh_write_end -EXPORT_SYMBOL vmlinux 0x5a258adb netdev_master_upper_dev_link +EXPORT_SYMBOL vmlinux 0x5a1a3639 mmc_retune_unpause EXPORT_SYMBOL vmlinux 0x5a290250 hdmi_drm_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0x5a2b84d3 tcp_mmap -EXPORT_SYMBOL vmlinux 0x5a2ec205 reuseport_detach_sock -EXPORT_SYMBOL vmlinux 0x5a395a42 netdev_notify_peers +EXPORT_SYMBOL vmlinux 0x5a2a32d3 vmalloc_to_page EXPORT_SYMBOL vmlinux 0x5a44f8cb __crypto_memneq -EXPORT_SYMBOL vmlinux 0x5a4c7220 scsi_host_get +EXPORT_SYMBOL vmlinux 0x5a48d19b phy_driver_unregister EXPORT_SYMBOL vmlinux 0x5a4d313e gf128mul_4k_lle EXPORT_SYMBOL vmlinux 0x5a60b950 qm_channel_pool1 -EXPORT_SYMBOL vmlinux 0x5a6ca8bb do_splice_direct -EXPORT_SYMBOL vmlinux 0x5a72f16a fb_find_mode -EXPORT_SYMBOL vmlinux 0x5a738c58 seq_release -EXPORT_SYMBOL vmlinux 0x5a79b83e __ps2_command -EXPORT_SYMBOL vmlinux 0x5a8045b2 mipi_dsi_detach -EXPORT_SYMBOL vmlinux 0x5a814234 sock_alloc +EXPORT_SYMBOL vmlinux 0x5a6df17a tcp_init_sock EXPORT_SYMBOL vmlinux 0x5a8ae15a ZSTD_initDDict EXPORT_SYMBOL vmlinux 0x5a921311 strncmp -EXPORT_SYMBOL vmlinux 0x5a92dd88 clear_nlink +EXPORT_SYMBOL vmlinux 0x5a926eda sk_stream_wait_memory EXPORT_SYMBOL vmlinux 0x5a956b5b empty_zero_page +EXPORT_SYMBOL vmlinux 0x5a99a0d7 flow_get_u32_dst EXPORT_SYMBOL vmlinux 0x5a9f1d63 memmove -EXPORT_SYMBOL vmlinux 0x5a9fdbdc get_mem_cgroup_from_mm -EXPORT_SYMBOL vmlinux 0x5aa33e98 set_anon_super -EXPORT_SYMBOL vmlinux 0x5aaa2ee1 mipi_dsi_picture_parameter_set -EXPORT_SYMBOL vmlinux 0x5ac330e7 input_mt_assign_slots -EXPORT_SYMBOL vmlinux 0x5adaf64a devfreq_monitor_stop +EXPORT_SYMBOL vmlinux 0x5ac82e8b udp_lib_get_port EXPORT_SYMBOL vmlinux 0x5ae1154b __traceiter_kfree -EXPORT_SYMBOL vmlinux 0x5aecede2 input_mt_sync_frame -EXPORT_SYMBOL vmlinux 0x5afc627e inet_csk_clear_xmit_timers -EXPORT_SYMBOL vmlinux 0x5b03f33d blkdev_issue_flush -EXPORT_SYMBOL vmlinux 0x5b134e42 seg6_hmac_info_add -EXPORT_SYMBOL vmlinux 0x5b2d8034 phy_support_asym_pause +EXPORT_SYMBOL vmlinux 0x5aea37e5 fb_validate_mode +EXPORT_SYMBOL vmlinux 0x5aecc0a3 register_console +EXPORT_SYMBOL vmlinux 0x5afa1a25 fc_mount +EXPORT_SYMBOL vmlinux 0x5b0c75e3 __cleancache_init_fs +EXPORT_SYMBOL vmlinux 0x5b1ec2cb unlock_page_memcg EXPORT_SYMBOL vmlinux 0x5b2f27fb do_wait_intr -EXPORT_SYMBOL vmlinux 0x5b31cfc3 security_old_inode_init_security -EXPORT_SYMBOL vmlinux 0x5b3289aa tcp_add_backlog EXPORT_SYMBOL vmlinux 0x5b36d5dd utf8agemax -EXPORT_SYMBOL vmlinux 0x5b378d76 iunique +EXPORT_SYMBOL vmlinux 0x5b3bf2e8 kern_path_create EXPORT_SYMBOL vmlinux 0x5b3e282f xa_store EXPORT_SYMBOL vmlinux 0x5b54903b qcom_scm_pas_mem_setup EXPORT_SYMBOL vmlinux 0x5b56860c vm_munmap -EXPORT_SYMBOL vmlinux 0x5b63d2e3 from_kgid_munged -EXPORT_SYMBOL vmlinux 0x5b664431 load_nls -EXPORT_SYMBOL vmlinux 0x5b67000e sock_no_linger -EXPORT_SYMBOL vmlinux 0x5b702daa pcibios_resource_to_bus -EXPORT_SYMBOL vmlinux 0x5b89b17d con_set_default_unimap -EXPORT_SYMBOL vmlinux 0x5bad6763 sock_queue_rcv_skb -EXPORT_SYMBOL vmlinux 0x5bbc7d59 page_zero_new_buffers -EXPORT_SYMBOL vmlinux 0x5bd231fb __devm_request_region +EXPORT_SYMBOL vmlinux 0x5b7758d5 jbd2_journal_set_features +EXPORT_SYMBOL vmlinux 0x5b7c49b2 unlock_page +EXPORT_SYMBOL vmlinux 0x5b7d9e74 build_skb +EXPORT_SYMBOL vmlinux 0x5b940d0a pm860x_set_bits +EXPORT_SYMBOL vmlinux 0x5b98569c page_cache_next_miss +EXPORT_SYMBOL vmlinux 0x5b9ecad0 ipv6_dev_mc_inc +EXPORT_SYMBOL vmlinux 0x5baac05b __phy_write_mmd +EXPORT_SYMBOL vmlinux 0x5bc02c5c scsi_eh_restore_cmnd +EXPORT_SYMBOL vmlinux 0x5bc1fe53 __sk_backlog_rcv +EXPORT_SYMBOL vmlinux 0x5bd384ef memory_cgrp_subsys EXPORT_SYMBOL vmlinux 0x5bd4ff88 flow_action_cookie_create -EXPORT_SYMBOL vmlinux 0x5be2448c input_free_device EXPORT_SYMBOL vmlinux 0x5be63c5b crc32c_csum_stub -EXPORT_SYMBOL vmlinux 0x5bebd2cc jbd2_journal_extend -EXPORT_SYMBOL vmlinux 0x5bf42b65 dentry_open -EXPORT_SYMBOL vmlinux 0x5c0bcb66 tcf_qevent_destroy -EXPORT_SYMBOL vmlinux 0x5c0bed55 rproc_free -EXPORT_SYMBOL vmlinux 0x5c14154d pnp_disable_dev +EXPORT_SYMBOL vmlinux 0x5bf3c617 nonseekable_open +EXPORT_SYMBOL vmlinux 0x5c0b8125 pci_disable_msi EXPORT_SYMBOL vmlinux 0x5c1c3eb4 cpu_hwcaps +EXPORT_SYMBOL vmlinux 0x5c236f6d inet_csk_reqsk_queue_drop_and_put EXPORT_SYMBOL vmlinux 0x5c26a53b wait_for_completion_io_timeout -EXPORT_SYMBOL vmlinux 0x5c26b87f of_node_name_prefix +EXPORT_SYMBOL vmlinux 0x5c2abd55 textsearch_unregister EXPORT_SYMBOL vmlinux 0x5c3c7387 kstrtoull -EXPORT_SYMBOL vmlinux 0x5c47c01a netdev_emerg -EXPORT_SYMBOL vmlinux 0x5c4ba278 audit_log_start -EXPORT_SYMBOL vmlinux 0x5c4eedc9 of_n_size_cells -EXPORT_SYMBOL vmlinux 0x5c4f82a8 mipi_dsi_dcs_get_pixel_format -EXPORT_SYMBOL vmlinux 0x5c7682a2 mipi_dsi_dcs_set_display_off -EXPORT_SYMBOL vmlinux 0x5c7cf375 d_tmpfile -EXPORT_SYMBOL vmlinux 0x5c96594a phy_attach_direct -EXPORT_SYMBOL vmlinux 0x5c9c8a72 __inode_sub_bytes -EXPORT_SYMBOL vmlinux 0x5ca8c57e acpi_bus_get_device -EXPORT_SYMBOL vmlinux 0x5caee224 netlink_ack -EXPORT_SYMBOL vmlinux 0x5cb4dccd devm_nvmem_unregister -EXPORT_SYMBOL vmlinux 0x5cb7a3a3 tty_port_init -EXPORT_SYMBOL vmlinux 0x5cc23c26 refresh_frequency_limits -EXPORT_SYMBOL vmlinux 0x5ccd0164 dev_pre_changeaddr_notify -EXPORT_SYMBOL vmlinux 0x5ce84d23 audit_log -EXPORT_SYMBOL vmlinux 0x5cf31581 mdio_find_bus +EXPORT_SYMBOL vmlinux 0x5c45b990 inet_stream_ops +EXPORT_SYMBOL vmlinux 0x5c4780c1 end_page_writeback +EXPORT_SYMBOL vmlinux 0x5c4fc5b3 inet_csk_destroy_sock +EXPORT_SYMBOL vmlinux 0x5c69dd84 consume_skb +EXPORT_SYMBOL vmlinux 0x5c6accb3 adjust_managed_page_count +EXPORT_SYMBOL vmlinux 0x5c810efb sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0x5c8c1101 dev_get_by_napi_id +EXPORT_SYMBOL vmlinux 0x5c9db90d netpoll_poll_enable +EXPORT_SYMBOL vmlinux 0x5ca2b430 unregister_mii_timestamper +EXPORT_SYMBOL vmlinux 0x5ca31d9b pci_read_config_dword +EXPORT_SYMBOL vmlinux 0x5caec6a9 dget_parent +EXPORT_SYMBOL vmlinux 0x5ccc7163 kill_fasync +EXPORT_SYMBOL vmlinux 0x5cefa1c1 i2c_smbus_write_word_data +EXPORT_SYMBOL vmlinux 0x5cf39d98 input_free_device EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor -EXPORT_SYMBOL vmlinux 0x5cf871f5 inet_csk_accept EXPORT_SYMBOL vmlinux 0x5cfb26a0 acpi_enter_sleep_state -EXPORT_SYMBOL vmlinux 0x5cfe228b dump_emit -EXPORT_SYMBOL vmlinux 0x5d0f0dc0 of_device_alloc +EXPORT_SYMBOL vmlinux 0x5d04345e unregister_netdevice_notifier_net EXPORT_SYMBOL vmlinux 0x5d112304 __memcpy_fromio -EXPORT_SYMBOL vmlinux 0x5d41dedd jbd2_journal_release_jbd_inode -EXPORT_SYMBOL vmlinux 0x5d43a04f mdiobus_setup_mdiodev_from_board_info +EXPORT_SYMBOL vmlinux 0x5d20d790 ip_fraglist_prepare +EXPORT_SYMBOL vmlinux 0x5d2840fb pm8606_osc_enable +EXPORT_SYMBOL vmlinux 0x5d326172 mmc_of_parse +EXPORT_SYMBOL vmlinux 0x5d331af4 param_set_int EXPORT_SYMBOL vmlinux 0x5d49aabc init_wait_var_entry -EXPORT_SYMBOL vmlinux 0x5d6a97a2 request_firmware_into_buf -EXPORT_SYMBOL vmlinux 0x5d7e013f twl6040_reg_read -EXPORT_SYMBOL vmlinux 0x5d8ee277 release_sock +EXPORT_SYMBOL vmlinux 0x5d52b877 devm_register_reboot_notifier +EXPORT_SYMBOL vmlinux 0x5d6111d6 write_one_page +EXPORT_SYMBOL vmlinux 0x5d6dfe0f __scsi_print_sense +EXPORT_SYMBOL vmlinux 0x5d7bd76e fault_in_iov_iter_readable +EXPORT_SYMBOL vmlinux 0x5d8311e8 pnpacpi_protocol +EXPORT_SYMBOL vmlinux 0x5d844488 generic_file_direct_write +EXPORT_SYMBOL vmlinux 0x5da365fa __mmap_lock_do_trace_acquire_returned +EXPORT_SYMBOL vmlinux 0x5daac020 mmput_async EXPORT_SYMBOL vmlinux 0x5dac4cd6 qman_dqrr_set_ithresh -EXPORT_SYMBOL vmlinux 0x5db75084 __scsi_print_sense -EXPORT_SYMBOL vmlinux 0x5dd82dac phy_print_status -EXPORT_SYMBOL vmlinux 0x5dd98444 sdev_enable_disk_events -EXPORT_SYMBOL vmlinux 0x5de0b38d blk_pre_runtime_resume +EXPORT_SYMBOL vmlinux 0x5dac7807 setup_arg_pages +EXPORT_SYMBOL vmlinux 0x5db18bbe param_get_byte +EXPORT_SYMBOL vmlinux 0x5ddb4a92 fddi_type_trans +EXPORT_SYMBOL vmlinux 0x5deb37be crypto_sha256_finup +EXPORT_SYMBOL vmlinux 0x5df2429c __generic_file_fsync +EXPORT_SYMBOL vmlinux 0x5dfefd0d bio_free_pages EXPORT_SYMBOL vmlinux 0x5dffb495 ZSTD_decompress_usingDDict EXPORT_SYMBOL vmlinux 0x5e06bc5c refcount_dec_and_lock EXPORT_SYMBOL vmlinux 0x5e0ccb9f sha1_transform -EXPORT_SYMBOL vmlinux 0x5e147d02 __sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0x5e1cd849 d_invalidate EXPORT_SYMBOL vmlinux 0x5e2d7875 cpu_hwcap_keys EXPORT_SYMBOL vmlinux 0x5e3240a0 __cpu_online_mask EXPORT_SYMBOL vmlinux 0x5e332b52 __var_waitqueue EXPORT_SYMBOL vmlinux 0x5e373fb4 gf128mul_64k_bbe -EXPORT_SYMBOL vmlinux 0x5e37af83 twl6040_set_pll -EXPORT_SYMBOL vmlinux 0x5e456f4e __bio_clone_fast +EXPORT_SYMBOL vmlinux 0x5e44301a __cgroup_bpf_run_filter_sock_ops +EXPORT_SYMBOL vmlinux 0x5e4e0461 vfs_mknod EXPORT_SYMBOL vmlinux 0x5e6f91f9 tegra_powergate_remove_clamping +EXPORT_SYMBOL vmlinux 0x5e751407 ppp_input_error EXPORT_SYMBOL vmlinux 0x5e855e56 gen_pool_first_fit_align -EXPORT_SYMBOL vmlinux 0x5e91c0a5 tegra_ivc_read_get_next_frame +EXPORT_SYMBOL vmlinux 0x5e8b1407 inet6_release EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask -EXPORT_SYMBOL vmlinux 0x5e9b5432 genphy_write_mmd_unsupported +EXPORT_SYMBOL vmlinux 0x5ea207b1 nd_pfn_probe +EXPORT_SYMBOL vmlinux 0x5ea32b9a configfs_register_group EXPORT_SYMBOL vmlinux 0x5eb24829 dm_shift_arg -EXPORT_SYMBOL vmlinux 0x5eb8f8ba tcf_chain_get_by_act -EXPORT_SYMBOL vmlinux 0x5ebbdf97 rfkill_alloc EXPORT_SYMBOL vmlinux 0x5ec4aee6 put_sg_io_hdr -EXPORT_SYMBOL vmlinux 0x5ecc8f55 of_find_mipi_dsi_host_by_node +EXPORT_SYMBOL vmlinux 0x5ec795c0 unregister_netdev EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch EXPORT_SYMBOL vmlinux 0x5ed90adc int_to_scsilun -EXPORT_SYMBOL vmlinux 0x5edccbd3 __fs_parse -EXPORT_SYMBOL vmlinux 0x5ede88e0 phy_attached_info -EXPORT_SYMBOL vmlinux 0x5ee16721 flow_get_u32_src -EXPORT_SYMBOL vmlinux 0x5ef356f7 vm_mmap +EXPORT_SYMBOL vmlinux 0x5edfa545 ip_tunnel_parse_protocol +EXPORT_SYMBOL vmlinux 0x5ee25c5d __dev_kfree_skb_irq +EXPORT_SYMBOL vmlinux 0x5eeface8 __skb_pad +EXPORT_SYMBOL vmlinux 0x5ef08033 tcp_recvmsg EXPORT_SYMBOL vmlinux 0x5ef6a672 gen_pool_for_each_chunk EXPORT_SYMBOL vmlinux 0x5efdd68b __tracepoint_mmap_lock_released EXPORT_SYMBOL vmlinux 0x5efde8e6 proc_doulongvec_ms_jiffies_minmax +EXPORT_SYMBOL vmlinux 0x5f07a83e bio_advance EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters -EXPORT_SYMBOL vmlinux 0x5f0df2a1 vme_irq_request -EXPORT_SYMBOL vmlinux 0x5f3478fa vme_init_bridge +EXPORT_SYMBOL vmlinux 0x5f16abba __mmc_claim_host +EXPORT_SYMBOL vmlinux 0x5f16c72b from_kuid +EXPORT_SYMBOL vmlinux 0x5f17d145 pci_write_config_word +EXPORT_SYMBOL vmlinux 0x5f187db0 sunxi_sram_release +EXPORT_SYMBOL vmlinux 0x5f214dab xfrm_dev_state_flush +EXPORT_SYMBOL vmlinux 0x5f2b1fbf import_single_range +EXPORT_SYMBOL vmlinux 0x5f385ccc inc_node_page_state +EXPORT_SYMBOL vmlinux 0x5f5338e5 bio_add_page EXPORT_SYMBOL vmlinux 0x5f5441c8 __ubsan_handle_alignment_assumption -EXPORT_SYMBOL vmlinux 0x5f58dee8 add_watch_to_object -EXPORT_SYMBOL vmlinux 0x5f5b4f4e simple_dir_operations -EXPORT_SYMBOL vmlinux 0x5f647566 adjust_managed_page_count -EXPORT_SYMBOL vmlinux 0x5f6b1fe2 sg_miter_stop +EXPORT_SYMBOL vmlinux 0x5f63ca9e mmc_start_request EXPORT_SYMBOL vmlinux 0x5f6b889c rproc_va_to_pa -EXPORT_SYMBOL vmlinux 0x5f7b46a2 mem_cgroup_from_task -EXPORT_SYMBOL vmlinux 0x5f7f1873 lookup_one +EXPORT_SYMBOL vmlinux 0x5f73f519 dns_query +EXPORT_SYMBOL vmlinux 0x5f83d5b6 tcf_exts_change +EXPORT_SYMBOL vmlinux 0x5f868405 generic_update_time EXPORT_SYMBOL vmlinux 0x5f93525c acpi_extract_package -EXPORT_SYMBOL vmlinux 0x5f9d03ec __sk_mem_schedule -EXPORT_SYMBOL vmlinux 0x5fb66efc mipi_dsi_dcs_set_display_brightness +EXPORT_SYMBOL vmlinux 0x5f9a95a0 scsi_free_host_dev +EXPORT_SYMBOL vmlinux 0x5fc53039 xfrm_state_insert EXPORT_SYMBOL vmlinux 0x5fc72f0e alloc_pages_exact -EXPORT_SYMBOL vmlinux 0x5fe9637b ioc_lookup_icq -EXPORT_SYMBOL vmlinux 0x5fed88f8 jbd2_journal_put_journal_head -EXPORT_SYMBOL vmlinux 0x5ff09fda ip6_dst_alloc EXPORT_SYMBOL vmlinux 0x5ff9eb0e lockref_mark_dead +EXPORT_SYMBOL vmlinux 0x5ffb0c4c of_find_node_by_phandle +EXPORT_SYMBOL vmlinux 0x5ffcbf97 vfs_dedupe_file_range_one EXPORT_SYMBOL vmlinux 0x5ffedf63 __nla_put_nohdr -EXPORT_SYMBOL vmlinux 0x6003898e tcp_rtx_synack EXPORT_SYMBOL vmlinux 0x6005c351 zpool_has_pool +EXPORT_SYMBOL vmlinux 0x60061ccf mmc_wait_for_req EXPORT_SYMBOL vmlinux 0x600683d3 do_unblank_screen -EXPORT_SYMBOL vmlinux 0x600e33a9 cdrom_open -EXPORT_SYMBOL vmlinux 0x600f2881 jbd2_fc_release_bufs +EXPORT_SYMBOL vmlinux 0x60180a71 generic_fadvise EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create -EXPORT_SYMBOL vmlinux 0x6021ee3b done_path_create +EXPORT_SYMBOL vmlinux 0x60238b7e cros_ec_cmd_xfer_status EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier EXPORT_SYMBOL vmlinux 0x605790dc fiemap_fill_next_extent -EXPORT_SYMBOL vmlinux 0x60596517 mii_link_ok -EXPORT_SYMBOL vmlinux 0x6060da07 mdio_driver_unregister +EXPORT_SYMBOL vmlinux 0x6062e85c should_remove_suid +EXPORT_SYMBOL vmlinux 0x606d6399 mdio_device_free +EXPORT_SYMBOL vmlinux 0x607ca2ea fscrypt_decrypt_bio EXPORT_SYMBOL vmlinux 0x608741b5 __init_swait_queue_head EXPORT_SYMBOL vmlinux 0x6091b333 unregister_chrdev_region +EXPORT_SYMBOL vmlinux 0x6097c7f8 devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0x609b5d4e tcp_v4_md5_lookup EXPORT_SYMBOL vmlinux 0x609bcd98 in6_pton EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net -EXPORT_SYMBOL vmlinux 0x60a119f6 xp_dma_sync_for_device_slow -EXPORT_SYMBOL vmlinux 0x60a57cfa generic_pipe_buf_get -EXPORT_SYMBOL vmlinux 0x60a58b33 vme_dma_list_add +EXPORT_SYMBOL vmlinux 0x609fe1f2 netdev_has_any_upper_dev +EXPORT_SYMBOL vmlinux 0x60a7fd9e page_mapping EXPORT_SYMBOL vmlinux 0x60aaeb4b qman_p_irqsource_add -EXPORT_SYMBOL vmlinux 0x60ab49b4 jbd2_fc_end_commit -EXPORT_SYMBOL vmlinux 0x60aef7f8 napi_enable EXPORT_SYMBOL vmlinux 0x60b3071f neigh_proc_dointvec -EXPORT_SYMBOL vmlinux 0x60bcd21a sock_alloc_file EXPORT_SYMBOL vmlinux 0x60d8ab30 vme_lm_get -EXPORT_SYMBOL vmlinux 0x60efbf59 dev_uc_unsync -EXPORT_SYMBOL vmlinux 0x60f2edac key_move -EXPORT_SYMBOL vmlinux 0x60fffa54 pci_request_selected_regions_exclusive +EXPORT_SYMBOL vmlinux 0x60df7d49 remap_pfn_range +EXPORT_SYMBOL vmlinux 0x60e052ad tcp_make_synack +EXPORT_SYMBOL vmlinux 0x60f8f6c1 netif_skb_features +EXPORT_SYMBOL vmlinux 0x60f9affb simple_dir_inode_operations EXPORT_SYMBOL vmlinux 0x61073e4a acpi_os_map_generic_address -EXPORT_SYMBOL vmlinux 0x610f6e47 dcb_setapp -EXPORT_SYMBOL vmlinux 0x6116bb62 of_graph_get_next_endpoint -EXPORT_SYMBOL vmlinux 0x611c9891 xfrm_policy_byid -EXPORT_SYMBOL vmlinux 0x61205a5a pci_bus_find_capability +EXPORT_SYMBOL vmlinux 0x610fd7d3 tcp_v4_do_rcv EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit -EXPORT_SYMBOL vmlinux 0x613c4ded pcie_get_readrq -EXPORT_SYMBOL vmlinux 0x61438c46 scsi_report_bus_reset -EXPORT_SYMBOL vmlinux 0x6156221b security_inode_invalidate_secctx -EXPORT_SYMBOL vmlinux 0x615753a6 __cgroup_bpf_run_filter_sock_ops +EXPORT_SYMBOL vmlinux 0x612c934e __xfrm_policy_check +EXPORT_SYMBOL vmlinux 0x6140ca61 key_revoke +EXPORT_SYMBOL vmlinux 0x6155f055 lock_two_nondirectories EXPORT_SYMBOL vmlinux 0x615911d7 __bitmap_set +EXPORT_SYMBOL vmlinux 0x615b0143 inet_accept +EXPORT_SYMBOL vmlinux 0x615e0b2a bio_split +EXPORT_SYMBOL vmlinux 0x61611945 tcp_sock_set_cork EXPORT_SYMBOL vmlinux 0x6167e72c vmalloc_no_huge -EXPORT_SYMBOL vmlinux 0x616a21ce scsi_print_sense_hdr +EXPORT_SYMBOL vmlinux 0x617487a4 mfd_remove_devices EXPORT_SYMBOL vmlinux 0x617c452b queued_read_lock_slowpath +EXPORT_SYMBOL vmlinux 0x6183c3e4 dma_set_mask EXPORT_SYMBOL vmlinux 0x6185b747 radix_tree_gang_lookup_tag EXPORT_SYMBOL vmlinux 0x618911fc numa_node -EXPORT_SYMBOL vmlinux 0x618b3658 tso_build_data +EXPORT_SYMBOL vmlinux 0x61940f56 scsi_get_host_dev +EXPORT_SYMBOL vmlinux 0x619c6a11 of_phy_register_fixed_link EXPORT_SYMBOL vmlinux 0x619cb7dd simple_read_from_buffer -EXPORT_SYMBOL vmlinux 0x61ac0e80 inode_get_bytes +EXPORT_SYMBOL vmlinux 0x619f0d98 bio_copy_data_iter +EXPORT_SYMBOL vmlinux 0x61a49713 jbd2_journal_restart +EXPORT_SYMBOL vmlinux 0x61ab5d98 vme_register_bridge EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull -EXPORT_SYMBOL vmlinux 0x61e050cf input_release_device EXPORT_SYMBOL vmlinux 0x61e272c9 sha256_final +EXPORT_SYMBOL vmlinux 0x61e4e77c nvdimm_bus_lock EXPORT_SYMBOL vmlinux 0x61ea189b fb_pad_aligned_buffer -EXPORT_SYMBOL vmlinux 0x61f19979 jbd2_journal_submit_inode_data_buffers -EXPORT_SYMBOL vmlinux 0x620e70ef inet_frag_reasm_finish +EXPORT_SYMBOL vmlinux 0x61fb3d8e udplite_prot +EXPORT_SYMBOL vmlinux 0x62005a51 xfrm_state_lookup EXPORT_SYMBOL vmlinux 0x6214aef2 cpufreq_unregister_notifier -EXPORT_SYMBOL vmlinux 0x6220918a __cleancache_invalidate_page -EXPORT_SYMBOL vmlinux 0x62273cdc kernel_recvmsg EXPORT_SYMBOL vmlinux 0x6228c21f smp_call_function_single -EXPORT_SYMBOL vmlinux 0x62290847 dev_get_by_index_rcu -EXPORT_SYMBOL vmlinux 0x62300332 __dev_set_mtu -EXPORT_SYMBOL vmlinux 0x623559f4 bio_kmalloc EXPORT_SYMBOL vmlinux 0x624aa681 trace_print_hex_seq -EXPORT_SYMBOL vmlinux 0x625394bc devm_backlight_device_register -EXPORT_SYMBOL vmlinux 0x625c6dcc dma_resv_copy_fences EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister -EXPORT_SYMBOL vmlinux 0x6278bc13 pps_event EXPORT_SYMBOL vmlinux 0x62849ac7 dev_valid_name +EXPORT_SYMBOL vmlinux 0x6285e202 dev_vprintk_emit +EXPORT_SYMBOL vmlinux 0x628c6591 filemap_range_has_page EXPORT_SYMBOL vmlinux 0x629079b3 dma_fence_signal_timestamp EXPORT_SYMBOL vmlinux 0x62949074 acpi_buffer_to_resource -EXPORT_SYMBOL vmlinux 0x629e2571 phy_read_mmd -EXPORT_SYMBOL vmlinux 0x62a19dbe add_to_page_cache_locked -EXPORT_SYMBOL vmlinux 0x62b098f0 zpool_register_driver -EXPORT_SYMBOL vmlinux 0x62b2a8ca mini_qdisc_pair_block_init +EXPORT_SYMBOL vmlinux 0x6297d7af scsi_partsize +EXPORT_SYMBOL vmlinux 0x629e4f4c pci_scan_root_bus_bridge +EXPORT_SYMBOL vmlinux 0x62abd514 close_fd_get_file +EXPORT_SYMBOL vmlinux 0x62b39280 __block_write_begin +EXPORT_SYMBOL vmlinux 0x62ba6db9 skb_csum_hwoffload_help EXPORT_SYMBOL vmlinux 0x62bf6edf utf8agemin -EXPORT_SYMBOL vmlinux 0x62c4a3cd mr_dump -EXPORT_SYMBOL vmlinux 0x62d3671a rdmacg_uncharge -EXPORT_SYMBOL vmlinux 0x62d661d1 pci_resize_resource +EXPORT_SYMBOL vmlinux 0x62c338ff input_setup_polling +EXPORT_SYMBOL vmlinux 0x62cb1913 pci_bus_claim_resources +EXPORT_SYMBOL vmlinux 0x62d67089 tcf_exts_terse_dump +EXPORT_SYMBOL vmlinux 0x62d72617 mdiobus_unregister_device EXPORT_SYMBOL vmlinux 0x62d96443 qman_dma_portal -EXPORT_SYMBOL vmlinux 0x62db5b84 dma_unmap_resource -EXPORT_SYMBOL vmlinux 0x62e43b75 register_netdevice_notifier_dev_net +EXPORT_SYMBOL vmlinux 0x62da3f39 from_kgid_munged +EXPORT_SYMBOL vmlinux 0x62ddba6c blk_rq_append_bio +EXPORT_SYMBOL vmlinux 0x62f4ccb3 dquot_get_next_dqblk +EXPORT_SYMBOL vmlinux 0x62f6b954 fscrypt_free_bounce_page EXPORT_SYMBOL vmlinux 0x62f7e207 down_read_killable -EXPORT_SYMBOL vmlinux 0x6305c4ea sock_no_listen -EXPORT_SYMBOL vmlinux 0x6307ef4d ata_port_printk -EXPORT_SYMBOL vmlinux 0x6312822c dev_mc_add +EXPORT_SYMBOL vmlinux 0x62fe58cc unix_destruct_scm EXPORT_SYMBOL vmlinux 0x63187451 pcie_aspm_support_enabled EXPORT_SYMBOL vmlinux 0x631d06aa cpu_rmap_put -EXPORT_SYMBOL vmlinux 0x63214f71 devm_mfd_add_devices -EXPORT_SYMBOL vmlinux 0x63218a84 security_sock_graft -EXPORT_SYMBOL vmlinux 0x632b04a7 blk_rq_unmap_user -EXPORT_SYMBOL vmlinux 0x633272c0 rproc_elf_load_rsc_table -EXPORT_SYMBOL vmlinux 0x633f1ea1 d_prune_aliases -EXPORT_SYMBOL vmlinux 0x6343a9a6 netdev_lower_dev_get_private -EXPORT_SYMBOL vmlinux 0x636114c5 dcache_readdir -EXPORT_SYMBOL vmlinux 0x6389b4af clear_bdi_congested -EXPORT_SYMBOL vmlinux 0x638be5b1 netdev_state_change -EXPORT_SYMBOL vmlinux 0x63a581ba seq_escape_mem +EXPORT_SYMBOL vmlinux 0x633d5051 ps2_command +EXPORT_SYMBOL vmlinux 0x635cd792 xfrm_unregister_type +EXPORT_SYMBOL vmlinux 0x6384c3c2 alloc_pages +EXPORT_SYMBOL vmlinux 0x6394d871 jbd2_journal_grab_journal_head EXPORT_SYMBOL vmlinux 0x63a58370 flow_action_cookie_destroy EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region -EXPORT_SYMBOL vmlinux 0x63a91e62 inet_csk_reset_keepalive_timer -EXPORT_SYMBOL vmlinux 0x63adcaab pci_write_config_byte EXPORT_SYMBOL vmlinux 0x63c4d61f __bitmap_weight -EXPORT_SYMBOL vmlinux 0x63c57853 sock_bindtoindex -EXPORT_SYMBOL vmlinux 0x63e09f87 iptun_encaps -EXPORT_SYMBOL vmlinux 0x63e22434 inet_twsk_deschedule_put -EXPORT_SYMBOL vmlinux 0x63e6b233 clk_get -EXPORT_SYMBOL vmlinux 0x63e91a15 pci_bus_read_dev_vendor_id +EXPORT_SYMBOL vmlinux 0x63c9accf km_state_notify +EXPORT_SYMBOL vmlinux 0x63dfbe57 param_ops_byte +EXPORT_SYMBOL vmlinux 0x63e968d6 tcp_rtx_synack EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink +EXPORT_SYMBOL vmlinux 0x64021257 security_d_instantiate EXPORT_SYMBOL vmlinux 0x6405dcd3 slhc_toss +EXPORT_SYMBOL vmlinux 0x640dc2cc ipv6_skip_exthdr EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off -EXPORT_SYMBOL vmlinux 0x64142870 cookie_ecn_ok -EXPORT_SYMBOL vmlinux 0x64186edc pm860x_bulk_write -EXPORT_SYMBOL vmlinux 0x64209253 free_inode_nonrcu EXPORT_SYMBOL vmlinux 0x642eb5c6 xen_poll_irq_timeout -EXPORT_SYMBOL vmlinux 0x642fc141 setup_new_exec EXPORT_SYMBOL vmlinux 0x643f3068 __tracepoint_spi_transfer_stop -EXPORT_SYMBOL vmlinux 0x64442b23 __cgroup_bpf_run_filter_skb EXPORT_SYMBOL vmlinux 0x644be12c qman_affine_cpus -EXPORT_SYMBOL vmlinux 0x645c9879 n_tty_ioctl_helper -EXPORT_SYMBOL vmlinux 0x6461ee71 tegra_dfll_register -EXPORT_SYMBOL vmlinux 0x64623410 dquot_initialize -EXPORT_SYMBOL vmlinux 0x647a3acc skb_dequeue -EXPORT_SYMBOL vmlinux 0x647c5059 km_state_expired +EXPORT_SYMBOL vmlinux 0x64567a2f fman_bind +EXPORT_SYMBOL vmlinux 0x6458853f tcf_em_tree_validate +EXPORT_SYMBOL vmlinux 0x646c06af register_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x647256d0 get_cached_acl_rcu +EXPORT_SYMBOL vmlinux 0x647f5a67 scsi_set_medium_removal EXPORT_SYMBOL vmlinux 0x6481ffe0 hsiphash_1u32 +EXPORT_SYMBOL vmlinux 0x648495f4 scsi_print_command +EXPORT_SYMBOL vmlinux 0x6484aa47 phy_disconnect EXPORT_SYMBOL vmlinux 0x648eb59d gc_inflight_list +EXPORT_SYMBOL vmlinux 0x649298a3 console_start EXPORT_SYMBOL vmlinux 0x64999478 congestion_wait +EXPORT_SYMBOL vmlinux 0x64a7ed8c get_tree_single_reconf EXPORT_SYMBOL vmlinux 0x64a9c928 default_blu EXPORT_SYMBOL vmlinux 0x64bbc288 string_unescape -EXPORT_SYMBOL vmlinux 0x64ca9280 vfs_fileattr_get -EXPORT_SYMBOL vmlinux 0x64cf89e3 serio_close -EXPORT_SYMBOL vmlinux 0x64dd186f simple_symlink_inode_operations -EXPORT_SYMBOL vmlinux 0x64f1d564 skb_find_text -EXPORT_SYMBOL vmlinux 0x65125386 tegra_dfll_resume +EXPORT_SYMBOL vmlinux 0x64bf23a8 migrate_page +EXPORT_SYMBOL vmlinux 0x65016970 udp_sendmsg +EXPORT_SYMBOL vmlinux 0x650649d9 __vlan_find_dev_deep_rcu EXPORT_SYMBOL vmlinux 0x6513a3fa fb_get_color_depth -EXPORT_SYMBOL vmlinux 0x6519daa4 skb_checksum_help +EXPORT_SYMBOL vmlinux 0x6514c1e6 flow_get_u32_src EXPORT_SYMBOL vmlinux 0x651a4139 test_taint -EXPORT_SYMBOL vmlinux 0x651ef7ce follow_pfn EXPORT_SYMBOL vmlinux 0x652032cb mac_pton -EXPORT_SYMBOL vmlinux 0x6522a567 dev_queue_xmit_accel +EXPORT_SYMBOL vmlinux 0x65242b4e napi_disable +EXPORT_SYMBOL vmlinux 0x65249476 tcf_qevent_destroy EXPORT_SYMBOL vmlinux 0x652ce9aa nla_memcmp +EXPORT_SYMBOL vmlinux 0x6537c109 inet6_del_protocol +EXPORT_SYMBOL vmlinux 0x653a91a4 jbd2_journal_dirty_metadata EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob EXPORT_SYMBOL vmlinux 0x654449c3 memset16 -EXPORT_SYMBOL vmlinux 0x6555700b seq_write -EXPORT_SYMBOL vmlinux 0x655883d9 tcp_initialize_rcv_mss -EXPORT_SYMBOL vmlinux 0x656986b3 netlink_broadcast -EXPORT_SYMBOL vmlinux 0x656a8fad skb_udp_tunnel_segment +EXPORT_SYMBOL vmlinux 0x654c05c5 peernet2id +EXPORT_SYMBOL vmlinux 0x65605564 __find_get_block EXPORT_SYMBOL vmlinux 0x656c1a0e string_escape_mem EXPORT_SYMBOL vmlinux 0x656e4a6e snprintf -EXPORT_SYMBOL vmlinux 0x657b570d reuseport_migrate_sock -EXPORT_SYMBOL vmlinux 0x657d0a90 scsi_device_lookup_by_target -EXPORT_SYMBOL vmlinux 0x657d14ad mdiobus_write_nested -EXPORT_SYMBOL vmlinux 0x658bb163 tcp_timewait_state_process EXPORT_SYMBOL vmlinux 0x658ce1a8 xxh64_reset -EXPORT_SYMBOL vmlinux 0x659d77a5 md_bitmap_startwrite +EXPORT_SYMBOL vmlinux 0x6590c6b9 acpi_device_set_power EXPORT_SYMBOL vmlinux 0x659ded26 xfrm_flush_gc +EXPORT_SYMBOL vmlinux 0x65a541af sync_inodes_sb +EXPORT_SYMBOL vmlinux 0x65a9a68f tcp_sock_set_nodelay +EXPORT_SYMBOL vmlinux 0x65ccdd97 blk_mq_init_queue EXPORT_SYMBOL vmlinux 0x65cf8831 ZSTD_decompress_usingDict EXPORT_SYMBOL vmlinux 0x65d1bab2 acpi_bios_warning +EXPORT_SYMBOL vmlinux 0x65d49d12 proto_register EXPORT_SYMBOL vmlinux 0x65d9e877 cpufreq_register_notifier EXPORT_SYMBOL vmlinux 0x65dccf13 xz_dec_end -EXPORT_SYMBOL vmlinux 0x65df5c20 dquot_load_quota_sb EXPORT_SYMBOL vmlinux 0x65e0d6d7 memory_read_from_buffer -EXPORT_SYMBOL vmlinux 0x66012d82 of_mdio_find_bus +EXPORT_SYMBOL vmlinux 0x65e98e45 netdev_has_upper_dev_all_rcu +EXPORT_SYMBOL vmlinux 0x65fd0772 netlink_ns_capable +EXPORT_SYMBOL vmlinux 0x6604ad2f ppp_unregister_channel +EXPORT_SYMBOL vmlinux 0x6611ecd8 __dquot_free_space +EXPORT_SYMBOL vmlinux 0x66252f15 inet_unregister_protosw +EXPORT_SYMBOL vmlinux 0x66269b2d mmc_erase EXPORT_SYMBOL vmlinux 0x6626afca down -EXPORT_SYMBOL vmlinux 0x66297774 skb_queue_purge -EXPORT_SYMBOL vmlinux 0x662b18ee pldmfw_op_pci_match_record -EXPORT_SYMBOL vmlinux 0x66325314 security_sctp_sk_clone +EXPORT_SYMBOL vmlinux 0x66391f51 vfs_dup_fs_context +EXPORT_SYMBOL vmlinux 0x663b104a vme_lm_request EXPORT_SYMBOL vmlinux 0x664b1e29 qman_delete_cgr EXPORT_SYMBOL vmlinux 0x66628bf3 ip_tunnel_metadata_cnt -EXPORT_SYMBOL vmlinux 0x6663fd06 cad_pid -EXPORT_SYMBOL vmlinux 0x66682bb1 scsi_host_busy EXPORT_SYMBOL vmlinux 0x666863dc par_io_config_pin -EXPORT_SYMBOL vmlinux 0x666d43ff pci_ep_cfs_add_epc_group EXPORT_SYMBOL vmlinux 0x6673f96d xxh32_reset +EXPORT_SYMBOL vmlinux 0x6678cc0c inet_shutdown EXPORT_SYMBOL vmlinux 0x66826f5a xudma_get_ringacc EXPORT_SYMBOL vmlinux 0x668b19a1 down_read -EXPORT_SYMBOL vmlinux 0x66a526ee crypto_sha512_finup -EXPORT_SYMBOL vmlinux 0x66ab97f5 blk_queue_io_opt +EXPORT_SYMBOL vmlinux 0x66a36bb0 flow_indr_dev_unregister +EXPORT_SYMBOL vmlinux 0x66ab1962 file_fdatawait_range EXPORT_SYMBOL vmlinux 0x66af1fd1 lockref_put_or_lock -EXPORT_SYMBOL vmlinux 0x66af5b18 mount_subtree -EXPORT_SYMBOL vmlinux 0x66b4c536 qdisc_hash_add EXPORT_SYMBOL vmlinux 0x66b4cc41 kmemdup -EXPORT_SYMBOL vmlinux 0x66b85497 file_update_time -EXPORT_SYMBOL vmlinux 0x66fd8349 xsk_set_rx_need_wakeup -EXPORT_SYMBOL vmlinux 0x671e26de nosteal_pipe_buf_ops +EXPORT_SYMBOL vmlinux 0x66e4b0ec qman_get_qm_portal_config +EXPORT_SYMBOL vmlinux 0x66fdbdfc dcb_ieee_getapp_prio_dscp_mask_map +EXPORT_SYMBOL vmlinux 0x67038e51 nf_register_net_hooks +EXPORT_SYMBOL vmlinux 0x6716d064 __d_lookup_done EXPORT_SYMBOL vmlinux 0x6721fc7c security_cred_getsecid +EXPORT_SYMBOL vmlinux 0x672f1d73 of_phy_deregister_fixed_link EXPORT_SYMBOL vmlinux 0x67412d2f ucc_slow_enable -EXPORT_SYMBOL vmlinux 0x674230b8 iov_iter_init EXPORT_SYMBOL vmlinux 0x6749d53f hdmi_vendor_infoframe_init -EXPORT_SYMBOL vmlinux 0x674e1780 inc_node_page_state -EXPORT_SYMBOL vmlinux 0x676e17f0 locks_free_lock -EXPORT_SYMBOL vmlinux 0x67803d87 user_path_create +EXPORT_SYMBOL vmlinux 0x6762f477 registered_fb +EXPORT_SYMBOL vmlinux 0x6765f0d0 da903x_query_status +EXPORT_SYMBOL vmlinux 0x67731a31 fifo_set_limit +EXPORT_SYMBOL vmlinux 0x677b814f lease_modify EXPORT_SYMBOL vmlinux 0x678b96ec dma_pool_alloc -EXPORT_SYMBOL vmlinux 0x6795cd04 nexthop_bucket_set_hw_flags -EXPORT_SYMBOL vmlinux 0x679ffabf of_get_next_child -EXPORT_SYMBOL vmlinux 0x67a8b368 skb_eth_pop -EXPORT_SYMBOL vmlinux 0x67ab2c28 __netdev_notify_peers +EXPORT_SYMBOL vmlinux 0x67a08846 get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0x67b14bce inet_sendmsg EXPORT_SYMBOL vmlinux 0x67b27ec1 tty_std_termios EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu EXPORT_SYMBOL vmlinux 0x67c13ea0 acpi_read -EXPORT_SYMBOL vmlinux 0x67cad960 skb_dump -EXPORT_SYMBOL vmlinux 0x67e8894d __cleancache_init_shared_fs -EXPORT_SYMBOL vmlinux 0x67ed3524 serio_bus -EXPORT_SYMBOL vmlinux 0x67ee7afb amba_release_regions -EXPORT_SYMBOL vmlinux 0x6816625f nd_dax_probe +EXPORT_SYMBOL vmlinux 0x67c23cb8 may_umount_tree +EXPORT_SYMBOL vmlinux 0x67cd40cf rtc_add_groups +EXPORT_SYMBOL vmlinux 0x67d26d6d seq_printf +EXPORT_SYMBOL vmlinux 0x67d912a2 dm_kcopyd_copy +EXPORT_SYMBOL vmlinux 0x67e35100 unregister_cdrom +EXPORT_SYMBOL vmlinux 0x67f5052a dquot_disable +EXPORT_SYMBOL vmlinux 0x67fb62bf genphy_read_lpa +EXPORT_SYMBOL vmlinux 0x680bbe0b uart_get_baud_rate +EXPORT_SYMBOL vmlinux 0x6818d538 __ps2_command EXPORT_SYMBOL vmlinux 0x681b6670 is_firmware_framebuffer -EXPORT_SYMBOL vmlinux 0x682044fd ps2_sendbyte +EXPORT_SYMBOL vmlinux 0x681d06ff iov_iter_gap_alignment +EXPORT_SYMBOL vmlinux 0x681e04bb sget +EXPORT_SYMBOL vmlinux 0x68254f41 dev_set_allmulti +EXPORT_SYMBOL vmlinux 0x68277a60 hmm_range_fault +EXPORT_SYMBOL vmlinux 0x682ddbf5 neigh_app_ns +EXPORT_SYMBOL vmlinux 0x682f1cc0 unregister_quota_format +EXPORT_SYMBOL vmlinux 0x68389256 pci_find_bus EXPORT_SYMBOL vmlinux 0x683a9560 __gnet_stats_copy_basic -EXPORT_SYMBOL vmlinux 0x683cc226 dev_get_port_parent_id -EXPORT_SYMBOL vmlinux 0x686b09e1 vfs_iter_read -EXPORT_SYMBOL vmlinux 0x6871117a input_close_device -EXPORT_SYMBOL vmlinux 0x68727697 kset_unregister -EXPORT_SYMBOL vmlinux 0x68789ac0 pci_request_region +EXPORT_SYMBOL vmlinux 0x684f5648 dump_align +EXPORT_SYMBOL vmlinux 0x685ea232 follow_up +EXPORT_SYMBOL vmlinux 0x686a2633 pci_enable_device_mem EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval -EXPORT_SYMBOL vmlinux 0x688b6bdb xfrm4_rcv -EXPORT_SYMBOL vmlinux 0x68a52c1f kernel_sendpage -EXPORT_SYMBOL vmlinux 0x68b729af try_lookup_one_len -EXPORT_SYMBOL vmlinux 0x68d20ab8 __dev_kfree_skb_irq -EXPORT_SYMBOL vmlinux 0x68d95809 dquot_get_next_id -EXPORT_SYMBOL vmlinux 0x68dc4bd8 zap_page_range -EXPORT_SYMBOL vmlinux 0x68e0c010 fs_param_is_blockdev -EXPORT_SYMBOL vmlinux 0x68e0e9f7 sock_i_uid -EXPORT_SYMBOL vmlinux 0x68f058f4 dev_get_by_index -EXPORT_SYMBOL vmlinux 0x68f51811 kfree_skb_list +EXPORT_SYMBOL vmlinux 0x6892099e skb_checksum +EXPORT_SYMBOL vmlinux 0x68b3d382 mdio_driver_register +EXPORT_SYMBOL vmlinux 0x68b86403 tcf_em_register +EXPORT_SYMBOL vmlinux 0x68ba3352 md_write_inc +EXPORT_SYMBOL vmlinux 0x68ba7fbb in_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x68bed007 sock_queue_err_skb +EXPORT_SYMBOL vmlinux 0x68cb5888 skb_orphan_partial +EXPORT_SYMBOL vmlinux 0x68d27ec5 is_nd_dax EXPORT_SYMBOL vmlinux 0x68fb581a icst307_idx2s +EXPORT_SYMBOL vmlinux 0x68fd34c7 vme_irq_generate EXPORT_SYMBOL vmlinux 0x69049cd2 radix_tree_replace_slot -EXPORT_SYMBOL vmlinux 0x690508b4 devm_ioremap_np -EXPORT_SYMBOL vmlinux 0x690e864d security_sb_set_mnt_opts +EXPORT_SYMBOL vmlinux 0x690f17fd make_kgid +EXPORT_SYMBOL vmlinux 0x69107522 generic_delete_inode EXPORT_SYMBOL vmlinux 0x6917a77e __traceiter_kmem_cache_free -EXPORT_SYMBOL vmlinux 0x692d36d9 mdiobus_write -EXPORT_SYMBOL vmlinux 0x69483f98 vfs_setpos -EXPORT_SYMBOL vmlinux 0x694cfc30 eth_header_cache +EXPORT_SYMBOL vmlinux 0x691f3e0c ata_print_version +EXPORT_SYMBOL vmlinux 0x69346f0b touch_buffer +EXPORT_SYMBOL vmlinux 0x694421ed of_graph_get_remote_endpoint EXPORT_SYMBOL vmlinux 0x69585523 __ksize EXPORT_SYMBOL vmlinux 0x69668826 netdev_increment_features -EXPORT_SYMBOL vmlinux 0x696d4d88 clkdev_drop +EXPORT_SYMBOL vmlinux 0x6970b579 dquot_file_open EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days -EXPORT_SYMBOL vmlinux 0x69768485 rt_dst_clone -EXPORT_SYMBOL vmlinux 0x697d913f netdev_sk_get_lowest_dev +EXPORT_SYMBOL vmlinux 0x69763c43 inet_confirm_addr +EXPORT_SYMBOL vmlinux 0x697a3a7c pci_read_config_word +EXPORT_SYMBOL vmlinux 0x697b9d6d vif_device_init EXPORT_SYMBOL vmlinux 0x697ed5f0 memcpy_and_pad -EXPORT_SYMBOL vmlinux 0x699ff193 try_to_release_page -EXPORT_SYMBOL vmlinux 0x69a70cca mark_buffer_write_io_error +EXPORT_SYMBOL vmlinux 0x69881c7b thread_group_exited +EXPORT_SYMBOL vmlinux 0x6992db40 free_buffer_head +EXPORT_SYMBOL vmlinux 0x69a53c94 mii_check_media +EXPORT_SYMBOL vmlinux 0x69c974a8 __netlink_ns_capable +EXPORT_SYMBOL vmlinux 0x69d07429 uart_write_wakeup EXPORT_SYMBOL vmlinux 0x69d53cbc posix_acl_from_xattr -EXPORT_SYMBOL vmlinux 0x69dade0f dev_change_carrier +EXPORT_SYMBOL vmlinux 0x69d76841 bio_copy_data EXPORT_SYMBOL vmlinux 0x69dd3b5b crc32_le -EXPORT_SYMBOL vmlinux 0x69de0cc6 mipi_dsi_driver_unregister +EXPORT_SYMBOL vmlinux 0x69de4c50 cpufreq_get_policy EXPORT_SYMBOL vmlinux 0x69de8757 vme_check_window +EXPORT_SYMBOL vmlinux 0x69e1d9f2 locks_init_lock +EXPORT_SYMBOL vmlinux 0x69eec9f9 __inc_node_page_state +EXPORT_SYMBOL vmlinux 0x69f986b8 inode_add_bytes +EXPORT_SYMBOL vmlinux 0x69fc7c6a fman_set_mac_active_pause +EXPORT_SYMBOL vmlinux 0x6a01ed21 sock_release EXPORT_SYMBOL vmlinux 0x6a03751f sgl_free_order EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree -EXPORT_SYMBOL vmlinux 0x6a15c149 vfs_fsync -EXPORT_SYMBOL vmlinux 0x6a2183ba msi_desc_to_pci_dev -EXPORT_SYMBOL vmlinux 0x6a2530c7 qdisc_reset -EXPORT_SYMBOL vmlinux 0x6a2b2498 phy_get_c45_ids -EXPORT_SYMBOL vmlinux 0x6a2cda51 inode_set_bytes +EXPORT_SYMBOL vmlinux 0x6a28acf5 i2c_add_adapter +EXPORT_SYMBOL vmlinux 0x6a28dac6 security_inet_conn_established EXPORT_SYMBOL vmlinux 0x6a3766b2 qman_delete_cgr_safe -EXPORT_SYMBOL vmlinux 0x6a3fce03 fs_param_is_fd +EXPORT_SYMBOL vmlinux 0x6a3b5ffa is_nvdimm_bus_locked EXPORT_SYMBOL vmlinux 0x6a449c4f register_sysctl_table EXPORT_SYMBOL vmlinux 0x6a5cb5ee __get_free_pages +EXPORT_SYMBOL vmlinux 0x6a5e0314 dcbnl_ieee_notify EXPORT_SYMBOL vmlinux 0x6a5ecb18 unregister_module_notifier EXPORT_SYMBOL vmlinux 0x6a5fa363 sigprocmask -EXPORT_SYMBOL vmlinux 0x6a6d01af d_find_any_alias +EXPORT_SYMBOL vmlinux 0x6a6d3044 cdrom_number_of_slots EXPORT_SYMBOL vmlinux 0x6a6e05bf kstrtou8 -EXPORT_SYMBOL vmlinux 0x6a83c8d6 inet_csk_init_xmit_timers -EXPORT_SYMBOL vmlinux 0x6a83d8c1 from_kuid -EXPORT_SYMBOL vmlinux 0x6a86d896 napi_gro_receive -EXPORT_SYMBOL vmlinux 0x6a89e2a7 udp_prot -EXPORT_SYMBOL vmlinux 0x6a901439 sock_no_getname +EXPORT_SYMBOL vmlinux 0x6a7ce649 netpoll_send_udp +EXPORT_SYMBOL vmlinux 0x6a89dde6 jbd2_transaction_committed EXPORT_SYMBOL vmlinux 0x6a90663a qman_schedule_fq -EXPORT_SYMBOL vmlinux 0x6a9a85be twl6040_clear_bits +EXPORT_SYMBOL vmlinux 0x6a946eba netif_receive_skb EXPORT_SYMBOL vmlinux 0x6aa11aa6 sgl_free_n_order -EXPORT_SYMBOL vmlinux 0x6ad78ac4 dev_lstats_read -EXPORT_SYMBOL vmlinux 0x6ad7e647 fifo_set_limit +EXPORT_SYMBOL vmlinux 0x6aad0ea7 backlight_device_get_by_name +EXPORT_SYMBOL vmlinux 0x6ac69b26 i2c_smbus_write_byte EXPORT_SYMBOL vmlinux 0x6add5c9a dmi_find_device -EXPORT_SYMBOL vmlinux 0x6ae602e1 of_clk_get EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset -EXPORT_SYMBOL vmlinux 0x6b04bbf0 free_buffer_head +EXPORT_SYMBOL vmlinux 0x6aef5f6b serio_unregister_driver +EXPORT_SYMBOL vmlinux 0x6b109922 kern_unmount +EXPORT_SYMBOL vmlinux 0x6b12ef52 vfs_symlink EXPORT_SYMBOL vmlinux 0x6b27729b radix_tree_gang_lookup EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack -EXPORT_SYMBOL vmlinux 0x6b443f77 ipv6_chk_prefix +EXPORT_SYMBOL vmlinux 0x6b31c05b max8998_bulk_write +EXPORT_SYMBOL vmlinux 0x6b38a63b netdev_lower_state_changed +EXPORT_SYMBOL vmlinux 0x6b433cf0 pcie_capability_read_word +EXPORT_SYMBOL vmlinux 0x6b49668a amba_driver_unregister EXPORT_SYMBOL vmlinux 0x6b4b2933 __ioremap +EXPORT_SYMBOL vmlinux 0x6b50495a dump_skip EXPORT_SYMBOL vmlinux 0x6b55acd0 rtnl_lock_killable -EXPORT_SYMBOL vmlinux 0x6b5f2dec sync_inodes_sb -EXPORT_SYMBOL vmlinux 0x6b848c86 register_framebuffer +EXPORT_SYMBOL vmlinux 0x6b5952fe security_dentry_init_security +EXPORT_SYMBOL vmlinux 0x6b61ea0c to_ndd +EXPORT_SYMBOL vmlinux 0x6b62f7f5 scsi_test_unit_ready +EXPORT_SYMBOL vmlinux 0x6b6f914e open_exec +EXPORT_SYMBOL vmlinux 0x6b785077 vfs_clone_file_range +EXPORT_SYMBOL vmlinux 0x6b7e2d3a skb_flow_get_icmp_tci EXPORT_SYMBOL vmlinux 0x6b853d06 ns_to_kernel_old_timeval EXPORT_SYMBOL vmlinux 0x6b8bf149 netif_receive_skb_list +EXPORT_SYMBOL vmlinux 0x6b8f203e ip6_frag_next +EXPORT_SYMBOL vmlinux 0x6b9b7381 pcie_capability_write_dword EXPORT_SYMBOL vmlinux 0x6b9d1c95 security_req_classify_flow -EXPORT_SYMBOL vmlinux 0x6b9e576c security_sb_clone_mnt_opts -EXPORT_SYMBOL vmlinux 0x6baa87a1 pipe_lock -EXPORT_SYMBOL vmlinux 0x6bbd30c3 __ip_select_ident +EXPORT_SYMBOL vmlinux 0x6bb92da9 mdiobus_read EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev -EXPORT_SYMBOL vmlinux 0x6bc67fe8 seg6_hmac_validate_skb +EXPORT_SYMBOL vmlinux 0x6bca0c23 rtc_add_group +EXPORT_SYMBOL vmlinux 0x6bd07b0e scsi_host_put EXPORT_SYMBOL vmlinux 0x6bd0e573 down_interruptible -EXPORT_SYMBOL vmlinux 0x6bde08a1 ipmi_platform_add +EXPORT_SYMBOL vmlinux 0x6bd167f6 blk_mq_start_request EXPORT_SYMBOL vmlinux 0x6be1c1f8 acpi_install_method -EXPORT_SYMBOL vmlinux 0x6be4af72 flow_block_cb_decref -EXPORT_SYMBOL vmlinux 0x6be4e28c __sock_queue_rcv_skb EXPORT_SYMBOL vmlinux 0x6bf181c1 __tracepoint_kmem_cache_free -EXPORT_SYMBOL vmlinux 0x6bfcd91f cfb_imageblit -EXPORT_SYMBOL vmlinux 0x6c076c9f inet_frag_find +EXPORT_SYMBOL vmlinux 0x6bfc7eea rproc_get_by_child EXPORT_SYMBOL vmlinux 0x6c224cda gen_pool_destroy -EXPORT_SYMBOL vmlinux 0x6c2301ef neigh_destroy EXPORT_SYMBOL vmlinux 0x6c257ac0 tty_termios_hw_change -EXPORT_SYMBOL vmlinux 0x6c390adc security_socket_getpeersec_dgram -EXPORT_SYMBOL vmlinux 0x6c59a53b call_netdevice_notifiers +EXPORT_SYMBOL vmlinux 0x6c341c73 tty_insert_flip_string_flags EXPORT_SYMBOL vmlinux 0x6c5dae23 scsi_kmap_atomic_sg EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb EXPORT_SYMBOL vmlinux 0x6c7a0323 __tracepoint_kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0x6c7b0c58 lease_get_mtime -EXPORT_SYMBOL vmlinux 0x6c9341e0 acpi_dev_get_first_match_dev -EXPORT_SYMBOL vmlinux 0x6c938caf mdiobus_free -EXPORT_SYMBOL vmlinux 0x6c9997ea devm_backlight_device_unregister -EXPORT_SYMBOL vmlinux 0x6ca60e43 inet6_bind +EXPORT_SYMBOL vmlinux 0x6c7d5990 devm_request_resource +EXPORT_SYMBOL vmlinux 0x6c89a562 mmc_gpiod_request_cd +EXPORT_SYMBOL vmlinux 0x6c90a11f dmaenginem_async_device_register +EXPORT_SYMBOL vmlinux 0x6c93339a inode_update_time +EXPORT_SYMBOL vmlinux 0x6c93fd97 iterate_dir +EXPORT_SYMBOL vmlinux 0x6c9fffb3 napi_gro_receive EXPORT_SYMBOL vmlinux 0x6cb46525 netlbl_catmap_walk EXPORT_SYMBOL vmlinux 0x6cbbfc54 __arch_copy_to_user -EXPORT_SYMBOL vmlinux 0x6cd509bb ip6_route_me_harder -EXPORT_SYMBOL vmlinux 0x6ce21b2f notify_change +EXPORT_SYMBOL vmlinux 0x6cc27977 __hw_addr_unsync_dev +EXPORT_SYMBOL vmlinux 0x6cc61d71 security_old_inode_init_security +EXPORT_SYMBOL vmlinux 0x6cd36d2f __phy_resume +EXPORT_SYMBOL vmlinux 0x6cd990f3 configfs_depend_item_unlocked +EXPORT_SYMBOL vmlinux 0x6ce66ca4 input_mt_report_pointer_emulation +EXPORT_SYMBOL vmlinux 0x6ce8ba5d lru_cache_add +EXPORT_SYMBOL vmlinux 0x6ceb9b7c input_mt_assign_slots EXPORT_SYMBOL vmlinux 0x6cf0d67d qe_get_num_of_snums -EXPORT_SYMBOL vmlinux 0x6cf60889 ipv6_push_frag_opts -EXPORT_SYMBOL vmlinux 0x6d003b97 tcp_get_cookie_sock -EXPORT_SYMBOL vmlinux 0x6d08c253 sg_miter_skip -EXPORT_SYMBOL vmlinux 0x6d0e4e6a devfreq_add_governor -EXPORT_SYMBOL vmlinux 0x6d15d3d3 pci_map_rom EXPORT_SYMBOL vmlinux 0x6d16c104 mutex_lock_killable -EXPORT_SYMBOL vmlinux 0x6d16f7d8 dcbnl_cee_notify -EXPORT_SYMBOL vmlinux 0x6d261259 scsi_partsize +EXPORT_SYMBOL vmlinux 0x6d19a89c __xfrm_decode_session +EXPORT_SYMBOL vmlinux 0x6d22c612 elv_rb_del +EXPORT_SYMBOL vmlinux 0x6d237afa finish_open EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies -EXPORT_SYMBOL vmlinux 0x6d296a30 xfrm6_rcv -EXPORT_SYMBOL vmlinux 0x6d2a0f17 copy_highpage -EXPORT_SYMBOL vmlinux 0x6d2ea263 unregister_netdev EXPORT_SYMBOL vmlinux 0x6d340f64 tty_termios_input_baud_rate -EXPORT_SYMBOL vmlinux 0x6d3a1f85 bio_init -EXPORT_SYMBOL vmlinux 0x6d5d1e5e tcp_sync_mss +EXPORT_SYMBOL vmlinux 0x6d45df6b drop_nlink +EXPORT_SYMBOL vmlinux 0x6d486ea2 pcie_relaxed_ordering_enabled EXPORT_SYMBOL vmlinux 0x6d5f5b91 radix_tree_tagged +EXPORT_SYMBOL vmlinux 0x6d6ab71b padata_free_shell +EXPORT_SYMBOL vmlinux 0x6d709eb1 blk_queue_max_write_zeroes_sectors EXPORT_SYMBOL vmlinux 0x6d73c95f logic_outw +EXPORT_SYMBOL vmlinux 0x6d7c4b46 kmem_cache_alloc_trace EXPORT_SYMBOL vmlinux 0x6d7c7dcc bitmap_cut -EXPORT_SYMBOL vmlinux 0x6d83f999 ip_check_defrag -EXPORT_SYMBOL vmlinux 0x6d88d2dc param_get_ushort -EXPORT_SYMBOL vmlinux 0x6d95010f __starget_for_each_device -EXPORT_SYMBOL vmlinux 0x6d96418d pci_select_bars -EXPORT_SYMBOL vmlinux 0x6d988e66 pci_restore_state -EXPORT_SYMBOL vmlinux 0x6d9a7a98 dev_deactivate +EXPORT_SYMBOL vmlinux 0x6d84df1e input_mt_drop_unused +EXPORT_SYMBOL vmlinux 0x6d88df3d xfrm_state_lookup_byspi EXPORT_SYMBOL vmlinux 0x6da467cb pfn_is_map_memory -EXPORT_SYMBOL vmlinux 0x6daf3172 devm_request_threaded_irq -EXPORT_SYMBOL vmlinux 0x6dc26b66 register_md_personality +EXPORT_SYMBOL vmlinux 0x6dad92fc msi_desc_to_pci_dev +EXPORT_SYMBOL vmlinux 0x6db05071 skb_queue_tail EXPORT_SYMBOL vmlinux 0x6dc35b25 radix_tree_iter_delete -EXPORT_SYMBOL vmlinux 0x6dc38254 mmc_gpio_get_cd +EXPORT_SYMBOL vmlinux 0x6dc85854 xsk_set_rx_need_wakeup EXPORT_SYMBOL vmlinux 0x6dcf857f uuid_null EXPORT_SYMBOL vmlinux 0x6dd17e7b acpi_get_table_header -EXPORT_SYMBOL vmlinux 0x6ddbbba7 ip_output -EXPORT_SYMBOL vmlinux 0x6de70a0e devfreq_monitor_suspend +EXPORT_SYMBOL vmlinux 0x6de8dd9e __mod_lruvec_page_state EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction -EXPORT_SYMBOL vmlinux 0x6df9f5fc blk_mq_alloc_tag_set -EXPORT_SYMBOL vmlinux 0x6e0631f7 __get_hash_from_flowi6 -EXPORT_SYMBOL vmlinux 0x6e111691 ppp_channel_index -EXPORT_SYMBOL vmlinux 0x6e1859e6 param_array_ops -EXPORT_SYMBOL vmlinux 0x6e1efa53 d_obtain_root -EXPORT_SYMBOL vmlinux 0x6e26432d __blk_mq_end_request -EXPORT_SYMBOL vmlinux 0x6e321eb0 qman_start_using_portal -EXPORT_SYMBOL vmlinux 0x6e410efd of_translate_dma_address -EXPORT_SYMBOL vmlinux 0x6e4fc24d end_page_writeback -EXPORT_SYMBOL vmlinux 0x6e523196 rproc_da_to_va +EXPORT_SYMBOL vmlinux 0x6e0f5dbd kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x6e13cfe6 netif_tx_stop_all_queues +EXPORT_SYMBOL vmlinux 0x6e20443e vmf_insert_mixed_mkwrite +EXPORT_SYMBOL vmlinux 0x6e287711 do_splice_direct +EXPORT_SYMBOL vmlinux 0x6e3de933 tcp_timewait_state_process +EXPORT_SYMBOL vmlinux 0x6e5a199f make_kuid EXPORT_SYMBOL vmlinux 0x6e5b8651 xz_dec_run -EXPORT_SYMBOL vmlinux 0x6e5d1c8f nd_device_unregister -EXPORT_SYMBOL vmlinux 0x6e6bac21 i2c_transfer_buffer_flags -EXPORT_SYMBOL vmlinux 0x6e6cc9bb proc_create_mount_point EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock -EXPORT_SYMBOL vmlinux 0x6e7ddc62 sock_set_reuseaddr -EXPORT_SYMBOL vmlinux 0x6e84c191 icmp6_send +EXPORT_SYMBOL vmlinux 0x6e7697f5 fwnode_phy_find_device +EXPORT_SYMBOL vmlinux 0x6e80576a blk_mq_run_hw_queues +EXPORT_SYMBOL vmlinux 0x6e829467 nf_ip_checksum +EXPORT_SYMBOL vmlinux 0x6e83ec38 tegra_dfll_runtime_suspend +EXPORT_SYMBOL vmlinux 0x6e8e3245 nf_unregister_net_hooks EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put -EXPORT_SYMBOL vmlinux 0x6e9ef618 __insert_inode_hash +EXPORT_SYMBOL vmlinux 0x6e9e8fb0 get_ipc_ns_exported EXPORT_SYMBOL vmlinux 0x6ea9363b force_sig -EXPORT_SYMBOL vmlinux 0x6ec63b8d napi_complete_done -EXPORT_SYMBOL vmlinux 0x6eefc6b4 mount_bdev -EXPORT_SYMBOL vmlinux 0x6ef2fcd8 mdiobus_unregister -EXPORT_SYMBOL vmlinux 0x6ef37cab sock_no_accept -EXPORT_SYMBOL vmlinux 0x6efb9689 mipi_dsi_dcs_nop -EXPORT_SYMBOL vmlinux 0x6f0cd09b pci_enable_device -EXPORT_SYMBOL vmlinux 0x6f0f70f6 __sk_queue_drop_skb -EXPORT_SYMBOL vmlinux 0x6f12a2ae sk_error_report -EXPORT_SYMBOL vmlinux 0x6f1cfda9 rps_may_expire_flow +EXPORT_SYMBOL vmlinux 0x6eae0c5e xfrm_unregister_km +EXPORT_SYMBOL vmlinux 0x6ec57ee3 do_clone_file_range +EXPORT_SYMBOL vmlinux 0x6ee0a79d dev_mc_add_excl +EXPORT_SYMBOL vmlinux 0x6ef37efd elv_rb_find +EXPORT_SYMBOL vmlinux 0x6f0e1fd3 mdio_driver_unregister +EXPORT_SYMBOL vmlinux 0x6f185947 kernel_recvmsg +EXPORT_SYMBOL vmlinux 0x6f1d8eb0 con_is_visible +EXPORT_SYMBOL vmlinux 0x6f2f37b1 inc_zone_page_state EXPORT_SYMBOL vmlinux 0x6f41a428 acpi_get_vendor_resource -EXPORT_SYMBOL vmlinux 0x6f4498b1 of_find_matching_node_and_match -EXPORT_SYMBOL vmlinux 0x6f5051a1 __tcp_md5_do_lookup +EXPORT_SYMBOL vmlinux 0x6f4c4bac rproc_add_carveout +EXPORT_SYMBOL vmlinux 0x6f506bd0 mmc_sw_reset EXPORT_SYMBOL vmlinux 0x6f5ab52f acpi_get_local_address -EXPORT_SYMBOL vmlinux 0x6f676267 t10_pi_type1_ip -EXPORT_SYMBOL vmlinux 0x6f67e907 mmc_set_blocklen -EXPORT_SYMBOL vmlinux 0x6f6d63d0 drop_super_exclusive -EXPORT_SYMBOL vmlinux 0x6f7f1082 dm_table_get_mode -EXPORT_SYMBOL vmlinux 0x6f87180a tegra_ivc_init +EXPORT_SYMBOL vmlinux 0x6f641915 ihold +EXPORT_SYMBOL vmlinux 0x6f6993e7 of_find_all_nodes +EXPORT_SYMBOL vmlinux 0x6f72261c seg6_push_hmac EXPORT_SYMBOL vmlinux 0x6f8f674a bpf_dispatcher_xdp_func EXPORT_SYMBOL vmlinux 0x6f915a45 dqstats -EXPORT_SYMBOL vmlinux 0x6f9f4f82 dma_resv_init -EXPORT_SYMBOL vmlinux 0x6fa2eb89 phy_device_create EXPORT_SYMBOL vmlinux 0x6fb49676 queue_rcu_work -EXPORT_SYMBOL vmlinux 0x6fb9137a ip_setsockopt +EXPORT_SYMBOL vmlinux 0x6fbc0afa bio_clone_fast EXPORT_SYMBOL vmlinux 0x6fbc6a00 radix_tree_insert -EXPORT_SYMBOL vmlinux 0x6fc259a3 arp_create +EXPORT_SYMBOL vmlinux 0x6fc29169 devfreq_update_status EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog EXPORT_SYMBOL vmlinux 0x6fd9c35a __clzdi2 -EXPORT_SYMBOL vmlinux 0x6fdb1602 xudma_get_device -EXPORT_SYMBOL vmlinux 0x6fde41f1 con_is_visible -EXPORT_SYMBOL vmlinux 0x6fe7aacf sock_edemux -EXPORT_SYMBOL vmlinux 0x6ff8f1ec writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0x6fe5dc27 eth_header_parse +EXPORT_SYMBOL vmlinux 0x6fec5532 input_set_min_poll_interval +EXPORT_SYMBOL vmlinux 0x6ff57dfc t10_pi_type1_crc +EXPORT_SYMBOL vmlinux 0x6ff77bd8 writeback_inodes_sb EXPORT_SYMBOL vmlinux 0x6fff261f __arch_clear_user -EXPORT_SYMBOL vmlinux 0x6fff5d58 ppp_input_error EXPORT_SYMBOL vmlinux 0x70002fe8 siphash_1u32 -EXPORT_SYMBOL vmlinux 0x7020ae39 netpoll_cleanup +EXPORT_SYMBOL vmlinux 0x70135f6d gro_cells_init +EXPORT_SYMBOL vmlinux 0x701b8fb8 console_stop +EXPORT_SYMBOL vmlinux 0x701e7fad ip_fraglist_init EXPORT_SYMBOL vmlinux 0x7023bea8 unregister_acpi_notifier +EXPORT_SYMBOL vmlinux 0x7026832a rt_dst_alloc EXPORT_SYMBOL vmlinux 0x702946da ucs2_strlen -EXPORT_SYMBOL vmlinux 0x704510ab simple_transaction_set -EXPORT_SYMBOL vmlinux 0x704597e7 scsi_block_when_processing_errors -EXPORT_SYMBOL vmlinux 0x7060a594 d_add_ci -EXPORT_SYMBOL vmlinux 0x7063ac58 inet_add_offload -EXPORT_SYMBOL vmlinux 0x708ae552 tcp_sock_set_keepcnt -EXPORT_SYMBOL vmlinux 0x709976d5 devfreq_add_device -EXPORT_SYMBOL vmlinux 0x70a82e17 fqdir_init -EXPORT_SYMBOL vmlinux 0x70a89428 max8925_reg_read +EXPORT_SYMBOL vmlinux 0x702ddf0b vlan_dev_vlan_id +EXPORT_SYMBOL vmlinux 0x704d5ef7 put_devmap_managed_page +EXPORT_SYMBOL vmlinux 0x704ef583 phy_init_eee +EXPORT_SYMBOL vmlinux 0x7057df43 tty_register_driver +EXPORT_SYMBOL vmlinux 0x706bd364 ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0x7078f160 vlan_vid_del +EXPORT_SYMBOL vmlinux 0x707ae4a5 kernel_sendmsg +EXPORT_SYMBOL vmlinux 0x70aab779 sync_inode_metadata EXPORT_SYMBOL vmlinux 0x70ad75fb radix_tree_lookup -EXPORT_SYMBOL vmlinux 0x70cc2b27 cdrom_release +EXPORT_SYMBOL vmlinux 0x70ba12bb neigh_seq_stop +EXPORT_SYMBOL vmlinux 0x70cbde87 __zerocopy_sg_from_iter EXPORT_SYMBOL vmlinux 0x70d1a18e qman_release_pool -EXPORT_SYMBOL vmlinux 0x70d2a2e4 pcibus_to_node -EXPORT_SYMBOL vmlinux 0x70d319be dev_get_by_napi_id -EXPORT_SYMBOL vmlinux 0x70ebad93 scsi_eh_restore_cmnd -EXPORT_SYMBOL vmlinux 0x70f8289b pnp_register_card_driver -EXPORT_SYMBOL vmlinux 0x710a483f pci_get_slot -EXPORT_SYMBOL vmlinux 0x710bd6c5 alloc_pages_vma -EXPORT_SYMBOL vmlinux 0x710e056a tcp_gro_complete -EXPORT_SYMBOL vmlinux 0x7122a5ed xfrm_dev_state_flush +EXPORT_SYMBOL vmlinux 0x70ef602f address_space_init_once +EXPORT_SYMBOL vmlinux 0x7112562d filemap_fdatawrite_wbc EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc -EXPORT_SYMBOL vmlinux 0x712ab9ff phy_get_internal_delay -EXPORT_SYMBOL vmlinux 0x7130e78a param_set_ushort -EXPORT_SYMBOL vmlinux 0x7133b7f3 mmc_detect_card_removed -EXPORT_SYMBOL vmlinux 0x713b9b16 flow_rule_match_vlan -EXPORT_SYMBOL vmlinux 0x713c0b34 redraw_screen +EXPORT_SYMBOL vmlinux 0x71307dc7 xfrm_unregister_type_offload EXPORT_SYMBOL vmlinux 0x7141b88a logic_insb -EXPORT_SYMBOL vmlinux 0x7148cf74 blk_mq_start_hw_queues -EXPORT_SYMBOL vmlinux 0x714c27ab dst_release_immediate -EXPORT_SYMBOL vmlinux 0x71589d9c iput EXPORT_SYMBOL vmlinux 0x715a5ed0 vprintk +EXPORT_SYMBOL vmlinux 0x716f58ed jbd2_journal_stop EXPORT_SYMBOL vmlinux 0x7171121c overflowgid -EXPORT_SYMBOL vmlinux 0x7188f268 pci_iomap -EXPORT_SYMBOL vmlinux 0x719a9952 par_io_of_config -EXPORT_SYMBOL vmlinux 0x719b7b25 dm_register_target -EXPORT_SYMBOL vmlinux 0x71a1b07f dst_destroy +EXPORT_SYMBOL vmlinux 0x717769cf xp_dma_sync_for_device_slow +EXPORT_SYMBOL vmlinux 0x717d6e4d dquot_quotactl_sysfile_ops EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy -EXPORT_SYMBOL vmlinux 0x71a7bc23 init_task -EXPORT_SYMBOL vmlinux 0x71cc4687 iget5_locked +EXPORT_SYMBOL vmlinux 0x71a9658c dm_io +EXPORT_SYMBOL vmlinux 0x71aeec7e param_ops_bint +EXPORT_SYMBOL vmlinux 0x71bb0d8a seq_put_decimal_ull +EXPORT_SYMBOL vmlinux 0x71c6dd6e tcf_qevent_validate_change EXPORT_SYMBOL vmlinux 0x71dfc095 acpi_walk_resources -EXPORT_SYMBOL vmlinux 0x71e1f8a0 __dst_destroy_metrics_generic -EXPORT_SYMBOL vmlinux 0x71eb411b iov_iter_zero -EXPORT_SYMBOL vmlinux 0x7201efa8 ip_defrag +EXPORT_SYMBOL vmlinux 0x71edac0f dma_resv_add_excl_fence +EXPORT_SYMBOL vmlinux 0x72022d66 devm_ioremap_wc +EXPORT_SYMBOL vmlinux 0x7202f3a9 zpool_register_driver +EXPORT_SYMBOL vmlinux 0x720358af ip_options_compile EXPORT_SYMBOL vmlinux 0x720a27a7 __register_blkdev -EXPORT_SYMBOL vmlinux 0x720f1173 kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0x72129969 blk_mq_start_hw_queue -EXPORT_SYMBOL vmlinux 0x7217fd57 put_cmsg_scm_timestamping64 -EXPORT_SYMBOL vmlinux 0x7220c1c1 flush_signals -EXPORT_SYMBOL vmlinux 0x72213d68 flow_indr_dev_register -EXPORT_SYMBOL vmlinux 0x7224f6c8 fs_context_for_submount -EXPORT_SYMBOL vmlinux 0x723c840b xfrm_policy_delete +EXPORT_SYMBOL vmlinux 0x721e88ee __cleancache_get_page +EXPORT_SYMBOL vmlinux 0x72335263 tcf_idr_search EXPORT_SYMBOL vmlinux 0x724ddac7 utf8version_is_supported -EXPORT_SYMBOL vmlinux 0x726510cd genl_unregister_family -EXPORT_SYMBOL vmlinux 0x7269f0f5 sock_kmalloc -EXPORT_SYMBOL vmlinux 0x726a874c kobject_get_unless_zero -EXPORT_SYMBOL vmlinux 0x726b7e4d mod_node_page_state +EXPORT_SYMBOL vmlinux 0x726a4424 tty_port_hangup EXPORT_SYMBOL vmlinux 0x726bc3c7 wait_for_completion_killable_timeout +EXPORT_SYMBOL vmlinux 0x7273bece input_set_capability +EXPORT_SYMBOL vmlinux 0x727d97a6 dquot_get_dqblk +EXPORT_SYMBOL vmlinux 0x727dcfe6 of_find_net_device_by_node EXPORT_SYMBOL vmlinux 0x727de424 mem_section -EXPORT_SYMBOL vmlinux 0x729ba6e7 vlan_filter_push_vids +EXPORT_SYMBOL vmlinux 0x729b8c5c tcf_chain_get_by_act +EXPORT_SYMBOL vmlinux 0x72a2680a sock_kfree_s EXPORT_SYMBOL vmlinux 0x72a50966 ucc_fast_disable EXPORT_SYMBOL vmlinux 0x72b9d287 default_grn -EXPORT_SYMBOL vmlinux 0x72cb9e93 neigh_sysctl_register +EXPORT_SYMBOL vmlinux 0x72e7b756 __nlmsg_put EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type EXPORT_SYMBOL vmlinux 0x72f14ff7 acpi_get_object_info -EXPORT_SYMBOL vmlinux 0x72f9e87e kobject_put -EXPORT_SYMBOL vmlinux 0x7315780e kmem_cache_alloc_node_trace +EXPORT_SYMBOL vmlinux 0x730a4164 __register_binfmt +EXPORT_SYMBOL vmlinux 0x7312fcc1 prepare_kernel_cred EXPORT_SYMBOL vmlinux 0x7315a4e9 twl6030_mmc_card_detect_config EXPORT_SYMBOL vmlinux 0x731c4a9c dma_fence_signal +EXPORT_SYMBOL vmlinux 0x731d19db dquot_reclaim_space_nodirty EXPORT_SYMBOL vmlinux 0x731dba7a xen_domain_type +EXPORT_SYMBOL vmlinux 0x732dae22 md_wakeup_thread EXPORT_SYMBOL vmlinux 0x732dd326 groups_free -EXPORT_SYMBOL vmlinux 0x732f9788 pcie_set_readrq -EXPORT_SYMBOL vmlinux 0x733574cb fs_param_is_u64 -EXPORT_SYMBOL vmlinux 0x7345275e tty_schedule_flip +EXPORT_SYMBOL vmlinux 0x73345d08 skb_eth_pop +EXPORT_SYMBOL vmlinux 0x733b6cc6 of_get_compatible_child +EXPORT_SYMBOL vmlinux 0x7340ab2d unix_attach_fds +EXPORT_SYMBOL vmlinux 0x734778a7 xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x734e22f1 vme_bus_type EXPORT_SYMBOL vmlinux 0x735e6a81 acpi_evaluate_integer -EXPORT_SYMBOL vmlinux 0x7365db4c max8925_bulk_read -EXPORT_SYMBOL vmlinux 0x737e2408 phy_remove_link_mode +EXPORT_SYMBOL vmlinux 0x7367999f pnp_release_card_device +EXPORT_SYMBOL vmlinux 0x7374779d pci_alloc_irq_vectors_affinity +EXPORT_SYMBOL vmlinux 0x7379c393 mmc_card_alternative_gpt_sector EXPORT_SYMBOL vmlinux 0x7380dffa argv_split -EXPORT_SYMBOL vmlinux 0x73827d4a tcp_connect -EXPORT_SYMBOL vmlinux 0x7385a582 tcp_md5_do_del +EXPORT_SYMBOL vmlinux 0x7385e4a8 pci_pme_active +EXPORT_SYMBOL vmlinux 0x7395b766 netdev_lower_dev_get_private 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 0x73d476e4 inet6_add_offload -EXPORT_SYMBOL vmlinux 0x73e3d552 mmc_command_done -EXPORT_SYMBOL vmlinux 0x73e748e2 tcf_unregister_action -EXPORT_SYMBOL vmlinux 0x73ed1e7a netif_set_real_num_rx_queues +EXPORT_SYMBOL vmlinux 0x73c5421f vfs_getattr_nosec +EXPORT_SYMBOL vmlinux 0x73ca316b sock_common_recvmsg +EXPORT_SYMBOL vmlinux 0x73fc27bf serio_reconnect EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace EXPORT_SYMBOL vmlinux 0x7412ed5b kvfree_sensitive EXPORT_SYMBOL vmlinux 0x742578a5 wait_for_random_bytes +EXPORT_SYMBOL vmlinux 0x7427a576 tty_port_close_start EXPORT_SYMBOL vmlinux 0x7429e20c kstrtos8 -EXPORT_SYMBOL vmlinux 0x742bc6bd pci_try_set_mwi -EXPORT_SYMBOL vmlinux 0x7436239d blk_queue_segment_boundary -EXPORT_SYMBOL vmlinux 0x7438b90c ___pskb_trim EXPORT_SYMBOL vmlinux 0x743f4126 keygen_port_hashing_init -EXPORT_SYMBOL vmlinux 0x744c2e0e dcb_ieee_getapp_dscp_prio_mask_map -EXPORT_SYMBOL vmlinux 0x744f9381 cdev_del EXPORT_SYMBOL vmlinux 0x7453d3e8 security_release_secctx -EXPORT_SYMBOL vmlinux 0x74580bc6 pcix_set_mmrbc -EXPORT_SYMBOL vmlinux 0x74644d5d dev_add_pack -EXPORT_SYMBOL vmlinux 0x746d4ef6 phy_modify_paged +EXPORT_SYMBOL vmlinux 0x745df697 alloc_file_pseudo EXPORT_SYMBOL vmlinux 0x74754435 acpi_bus_generate_netlink_event -EXPORT_SYMBOL vmlinux 0x747c58a3 kmalloc_caches -EXPORT_SYMBOL vmlinux 0x747e2ae7 netdev_lower_state_changed -EXPORT_SYMBOL vmlinux 0x747fb7ca netif_carrier_off -EXPORT_SYMBOL vmlinux 0x74825e00 tcp_fastopen_defer_connect +EXPORT_SYMBOL vmlinux 0x7476e824 kill_anon_super +EXPORT_SYMBOL vmlinux 0x747b6049 pci_ep_cfs_add_epf_group +EXPORT_SYMBOL vmlinux 0x7481c2f8 nf_hook_slow EXPORT_SYMBOL vmlinux 0x7483dc59 pci_dev_present -EXPORT_SYMBOL vmlinux 0x74a995fe mii_ethtool_gset -EXPORT_SYMBOL vmlinux 0x74bba03d jbd2_journal_restart +EXPORT_SYMBOL vmlinux 0x7488f4c4 max8925_bulk_write +EXPORT_SYMBOL vmlinux 0x7490bb19 __wait_on_buffer +EXPORT_SYMBOL vmlinux 0x749a8546 inode_nohighmem +EXPORT_SYMBOL vmlinux 0x749dc14a generic_error_remove_page +EXPORT_SYMBOL vmlinux 0x74ac49b7 __block_write_full_page +EXPORT_SYMBOL vmlinux 0x74b838c1 security_inode_listsecurity +EXPORT_SYMBOL vmlinux 0x74bc968a vm_mmap EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 -EXPORT_SYMBOL vmlinux 0x74cf0732 ptp_clock_index -EXPORT_SYMBOL vmlinux 0x74ddd357 dma_resv_reserve_shared -EXPORT_SYMBOL vmlinux 0x74e309de tc_setup_cb_add +EXPORT_SYMBOL vmlinux 0x74cf4c29 udp6_set_csum +EXPORT_SYMBOL vmlinux 0x74d35188 scsi_change_queue_depth EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable -EXPORT_SYMBOL vmlinux 0x74f28fdf cdrom_mode_select -EXPORT_SYMBOL vmlinux 0x74f41cba __skb_gro_checksum_complete -EXPORT_SYMBOL vmlinux 0x750fdbf6 napi_gro_flush -EXPORT_SYMBOL vmlinux 0x7513c075 param_get_bool -EXPORT_SYMBOL vmlinux 0x751463e3 phy_ethtool_ksettings_set -EXPORT_SYMBOL vmlinux 0x751a58cf frontswap_register_ops -EXPORT_SYMBOL vmlinux 0x75372aa3 skb_copy_and_hash_datagram_iter -EXPORT_SYMBOL vmlinux 0x75578da0 dup_iter -EXPORT_SYMBOL vmlinux 0x75591053 vme_dma_list_exec -EXPORT_SYMBOL vmlinux 0x756537a3 phy_queue_state_machine -EXPORT_SYMBOL vmlinux 0x756b512f pci_enable_msix_range +EXPORT_SYMBOL vmlinux 0x74ed27dc devm_ioport_unmap +EXPORT_SYMBOL vmlinux 0x74fd15a0 __free_pages +EXPORT_SYMBOL vmlinux 0x7502a963 mmc_register_driver +EXPORT_SYMBOL vmlinux 0x7520df1f mipi_dsi_dcs_set_display_off +EXPORT_SYMBOL vmlinux 0x755c8433 dma_find_channel +EXPORT_SYMBOL vmlinux 0x75718fcf mdiobus_scan +EXPORT_SYMBOL vmlinux 0x7574b64e i2c_clients_command +EXPORT_SYMBOL vmlinux 0x757e036b dcbnl_cee_notify EXPORT_SYMBOL vmlinux 0x75871f5e acpi_get_next_object -EXPORT_SYMBOL vmlinux 0x758857db nf_log_unregister -EXPORT_SYMBOL vmlinux 0x7593e444 generic_pipe_buf_release -EXPORT_SYMBOL vmlinux 0x75bc696d __dev_kfree_skb_any -EXPORT_SYMBOL vmlinux 0x75bcda8f of_find_device_by_node +EXPORT_SYMBOL vmlinux 0x75919901 put_cmsg_scm_timestamping +EXPORT_SYMBOL vmlinux 0x759528ba send_sig +EXPORT_SYMBOL vmlinux 0x75ae38ce scsi_remove_device +EXPORT_SYMBOL vmlinux 0x75b35349 clk_bulk_get 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 0x75d69360 phy_do_ioctl_running -EXPORT_SYMBOL vmlinux 0x75d6e238 vm_insert_pages -EXPORT_SYMBOL vmlinux 0x75eb3aec eth_prepare_mac_addr_change -EXPORT_SYMBOL vmlinux 0x75f24ccd block_write_begin -EXPORT_SYMBOL vmlinux 0x75fc0566 vmf_insert_mixed_mkwrite -EXPORT_SYMBOL vmlinux 0x76025919 mdiobus_read -EXPORT_SYMBOL vmlinux 0x7609a505 mmc_retune_pause +EXPORT_SYMBOL vmlinux 0x75e7aed0 devfreq_update_interval +EXPORT_SYMBOL vmlinux 0x75f4c61d pci_bus_write_config_word +EXPORT_SYMBOL vmlinux 0x75f89345 skb_flow_dissect_meta EXPORT_SYMBOL vmlinux 0x760a0f4f yield -EXPORT_SYMBOL vmlinux 0x760a75f5 ip6_output -EXPORT_SYMBOL vmlinux 0x760ee1d1 udp_lib_setsockopt +EXPORT_SYMBOL vmlinux 0x76144f92 generic_write_end +EXPORT_SYMBOL vmlinux 0x761482a4 input_enable_softrepeat +EXPORT_SYMBOL vmlinux 0x7614dff5 generic_set_encrypted_ci_d_ops EXPORT_SYMBOL vmlinux 0x7618af39 hdmi_infoframe_check EXPORT_SYMBOL vmlinux 0x7624249e dim_park_tired +EXPORT_SYMBOL vmlinux 0x76268008 sdev_disable_disk_events +EXPORT_SYMBOL vmlinux 0x763063ca pci_find_parent_resource +EXPORT_SYMBOL vmlinux 0x7631ea7a textsearch_prepare +EXPORT_SYMBOL vmlinux 0x763498a8 filemap_fdatawait_range_keep_errors +EXPORT_SYMBOL vmlinux 0x76354bfe blk_get_queue +EXPORT_SYMBOL vmlinux 0x763b1615 __set_page_dirty_buffers EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq -EXPORT_SYMBOL vmlinux 0x7652461f rt_dst_alloc +EXPORT_SYMBOL vmlinux 0x764cd3fc set_blocksize +EXPORT_SYMBOL vmlinux 0x765beeef mark_buffer_write_io_error EXPORT_SYMBOL vmlinux 0x765ff474 crc_t10dif_generic +EXPORT_SYMBOL vmlinux 0x766a048b param_get_hexint EXPORT_SYMBOL vmlinux 0x766a0927 mempool_alloc_pages -EXPORT_SYMBOL vmlinux 0x766b245d md_bitmap_start_sync -EXPORT_SYMBOL vmlinux 0x7684aea1 seg6_hmac_info_lookup -EXPORT_SYMBOL vmlinux 0x7687fe65 md_check_recovery -EXPORT_SYMBOL vmlinux 0x768c227a hdmi_infoframe_log -EXPORT_SYMBOL vmlinux 0x768e0b50 mipi_dsi_compression_mode +EXPORT_SYMBOL vmlinux 0x768d7622 register_netdevice_notifier_net +EXPORT_SYMBOL vmlinux 0x76949123 rtnl_set_sk_err +EXPORT_SYMBOL vmlinux 0x769f60dd rtnl_configure_link EXPORT_SYMBOL vmlinux 0x769f6e64 errseq_check -EXPORT_SYMBOL vmlinux 0x76a0ca64 __register_binfmt -EXPORT_SYMBOL vmlinux 0x76ab5c17 textsearch_prepare -EXPORT_SYMBOL vmlinux 0x76c204f7 md_set_array_sectors -EXPORT_SYMBOL vmlinux 0x76c45b98 __mmap_lock_do_trace_acquire_returned +EXPORT_SYMBOL vmlinux 0x76abccc3 tty_port_close +EXPORT_SYMBOL vmlinux 0x76b30c08 pcix_set_mmrbc +EXPORT_SYMBOL vmlinux 0x76b8c880 input_set_poll_interval EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode -EXPORT_SYMBOL vmlinux 0x76dfe85c sg_alloc_table_from_pages_segment -EXPORT_SYMBOL vmlinux 0x76e6e82b fman_set_port_params -EXPORT_SYMBOL vmlinux 0x76f13743 ipv6_setsockopt -EXPORT_SYMBOL vmlinux 0x76f1eaf0 dquot_quota_off -EXPORT_SYMBOL vmlinux 0x77113ec4 __breadahead_gfp -EXPORT_SYMBOL vmlinux 0x77281793 skb_vlan_push +EXPORT_SYMBOL vmlinux 0x76d73f69 _dev_printk +EXPORT_SYMBOL vmlinux 0x770fb1d6 phy_ethtool_get_stats +EXPORT_SYMBOL vmlinux 0x7723033e eth_mac_addr +EXPORT_SYMBOL vmlinux 0x772f842c iproc_msi_exit +EXPORT_SYMBOL vmlinux 0x773067cb devm_pci_remap_cfgspace EXPORT_SYMBOL vmlinux 0x7732159c free_irq_cpu_rmap EXPORT_SYMBOL vmlinux 0x77358855 iomem_resource -EXPORT_SYMBOL vmlinux 0x77389280 km_new_mapping -EXPORT_SYMBOL vmlinux 0x773a8901 pci_set_mwi -EXPORT_SYMBOL vmlinux 0x773baf16 phy_start_cable_test EXPORT_SYMBOL vmlinux 0x773fa409 __kfifo_dma_in_finish_r +EXPORT_SYMBOL vmlinux 0x774529e8 jbd2_journal_clear_err EXPORT_SYMBOL vmlinux 0x77456e0a acpi_root_dir -EXPORT_SYMBOL vmlinux 0x774fad7a neigh_changeaddr -EXPORT_SYMBOL vmlinux 0x77576697 sock_set_keepalive -EXPORT_SYMBOL vmlinux 0x775e2283 flow_rule_match_enc_control -EXPORT_SYMBOL vmlinux 0x7762a287 xfrm_state_register_afinfo -EXPORT_SYMBOL vmlinux 0x776904ac pci_free_host_bridge -EXPORT_SYMBOL vmlinux 0x7772a5e4 __blk_alloc_disk +EXPORT_SYMBOL vmlinux 0x774c69ed filemap_invalidate_lock_two +EXPORT_SYMBOL vmlinux 0x775d67c4 deactivate_locked_super +EXPORT_SYMBOL vmlinux 0x77735a2e mipi_dsi_dcs_get_pixel_format EXPORT_SYMBOL vmlinux 0x777a47ff override_creds -EXPORT_SYMBOL vmlinux 0x777c2734 __register_chrdev -EXPORT_SYMBOL vmlinux 0x777ecbb8 dquot_release -EXPORT_SYMBOL vmlinux 0x778948e9 netdev_pick_tx +EXPORT_SYMBOL vmlinux 0x77894961 inet_csk_prepare_forced_close EXPORT_SYMBOL vmlinux 0x7791193f icst525_s2div -EXPORT_SYMBOL vmlinux 0x779b9f4d sk_filter_trim_cap -EXPORT_SYMBOL vmlinux 0x77b8341d bmap +EXPORT_SYMBOL vmlinux 0x7794532b twl6040_set_bits +EXPORT_SYMBOL vmlinux 0x77a4e33c devm_iounmap EXPORT_SYMBOL vmlinux 0x77bc13a0 strim -EXPORT_SYMBOL vmlinux 0x77c38985 qdisc_offload_dump_helper -EXPORT_SYMBOL vmlinux 0x77e0f0db dma_set_coherent_mask +EXPORT_SYMBOL vmlinux 0x77bc3d1d d_move +EXPORT_SYMBOL vmlinux 0x77c3c068 pci_enable_atomic_ops_to_root +EXPORT_SYMBOL vmlinux 0x77e38ba4 regset_get EXPORT_SYMBOL vmlinux 0x77e9eb37 aes_encrypt -EXPORT_SYMBOL vmlinux 0x77ec088c param_set_ullong -EXPORT_SYMBOL vmlinux 0x77ee1f88 netpoll_poll_disable -EXPORT_SYMBOL vmlinux 0x780197f6 tcf_action_exec -EXPORT_SYMBOL vmlinux 0x7803ade9 iget_failed +EXPORT_SYMBOL vmlinux 0x77f9b89d kthread_blkcg +EXPORT_SYMBOL vmlinux 0x78079992 acpi_device_hid EXPORT_SYMBOL vmlinux 0x7807f0f8 schedule_timeout_idle +EXPORT_SYMBOL vmlinux 0x78090889 audit_log +EXPORT_SYMBOL vmlinux 0x780b05c5 page_pool_put_page_bulk +EXPORT_SYMBOL vmlinux 0x781673fb skb_flow_dissect_hash +EXPORT_SYMBOL vmlinux 0x781d5d46 mmc_retune_pause +EXPORT_SYMBOL vmlinux 0x781e1583 netdev_printk +EXPORT_SYMBOL vmlinux 0x7836fcb5 __skb_try_recv_datagram +EXPORT_SYMBOL vmlinux 0x78404f57 netif_rx_any_context +EXPORT_SYMBOL vmlinux 0x78449b13 vm_iomap_memory EXPORT_SYMBOL vmlinux 0x7846af3e __kfifo_len_r -EXPORT_SYMBOL vmlinux 0x7849756a dst_cow_metrics_generic -EXPORT_SYMBOL vmlinux 0x787b4712 netdev_lower_get_next +EXPORT_SYMBOL vmlinux 0x784b5e68 dev_pre_changeaddr_notify +EXPORT_SYMBOL vmlinux 0x78593f81 param_set_copystring +EXPORT_SYMBOL vmlinux 0x787befe9 __sk_receive_skb EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback -EXPORT_SYMBOL vmlinux 0x788f22bc __sk_mem_reclaim +EXPORT_SYMBOL vmlinux 0x7884437b inet6_add_offload EXPORT_SYMBOL vmlinux 0x789affb1 frontswap_tmem_exclusive_gets EXPORT_SYMBOL vmlinux 0x78a16f48 aes_decrypt -EXPORT_SYMBOL vmlinux 0x78aaa6fe blk_queue_io_min +EXPORT_SYMBOL vmlinux 0x78b24092 inet_addr_type_dev_table +EXPORT_SYMBOL vmlinux 0x78b5401c phy_validate_pause EXPORT_SYMBOL vmlinux 0x78b887ed vsprintf +EXPORT_SYMBOL vmlinux 0x78c1913e blk_mq_delay_run_hw_queue +EXPORT_SYMBOL vmlinux 0x78c4dc69 neigh_resolve_output +EXPORT_SYMBOL vmlinux 0x78d9408c rproc_set_firmware +EXPORT_SYMBOL vmlinux 0x78dc2f0a flow_rule_match_cvlan +EXPORT_SYMBOL vmlinux 0x78dd9413 rproc_remove_subdev EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices -EXPORT_SYMBOL vmlinux 0x78e5c819 mini_qdisc_pair_swap -EXPORT_SYMBOL vmlinux 0x78f77d30 dst_dev_put -EXPORT_SYMBOL vmlinux 0x78f7be19 ip_sock_set_recverr -EXPORT_SYMBOL vmlinux 0x78fb66af get_vm_area +EXPORT_SYMBOL vmlinux 0x78ea1b39 pmem_should_map_pages +EXPORT_SYMBOL vmlinux 0x78f7285a jbd2_journal_finish_inode_data_buffers +EXPORT_SYMBOL vmlinux 0x7901db61 migrate_page_copy +EXPORT_SYMBOL vmlinux 0x79056ccc page_readlink +EXPORT_SYMBOL vmlinux 0x79077d4b sock_no_recvmsg EXPORT_SYMBOL vmlinux 0x790bafd4 blk_stack_limits -EXPORT_SYMBOL vmlinux 0x791d566e discard_new_inode -EXPORT_SYMBOL vmlinux 0x7941eb49 memory_cgrp_subsys -EXPORT_SYMBOL vmlinux 0x794340d0 address_space_init_once +EXPORT_SYMBOL vmlinux 0x792a3606 pci_pme_capable +EXPORT_SYMBOL vmlinux 0x793363b4 done_path_create +EXPORT_SYMBOL vmlinux 0x7951f695 inet_csk_init_xmit_timers EXPORT_SYMBOL vmlinux 0x79739c3c utf8nagemin -EXPORT_SYMBOL vmlinux 0x79750fa2 PDE_DATA EXPORT_SYMBOL vmlinux 0x7984eefc key_update -EXPORT_SYMBOL vmlinux 0x7994307e cont_write_begin +EXPORT_SYMBOL vmlinux 0x798ab0a5 rtnl_kfree_skbs +EXPORT_SYMBOL vmlinux 0x79905f90 inet_frag_reasm_finish EXPORT_SYMBOL vmlinux 0x79a33f85 vme_get_size EXPORT_SYMBOL vmlinux 0x79aa04a2 get_random_bytes -EXPORT_SYMBOL vmlinux 0x79b712a8 fs_bio_set -EXPORT_SYMBOL vmlinux 0x79d6eb01 clk_add_alias -EXPORT_SYMBOL vmlinux 0x79e34503 serio_interrupt -EXPORT_SYMBOL vmlinux 0x79e4fdbe scsi_register_driver +EXPORT_SYMBOL vmlinux 0x79ac6fbd cdrom_release +EXPORT_SYMBOL vmlinux 0x79bcd25c padata_set_cpumask +EXPORT_SYMBOL vmlinux 0x79d56e2e __dev_get_by_index +EXPORT_SYMBOL vmlinux 0x79e164c1 xfrm_policy_walk EXPORT_SYMBOL vmlinux 0x79ec8f93 blk_start_plug -EXPORT_SYMBOL vmlinux 0x7a0183c8 security_inode_setsecctx -EXPORT_SYMBOL vmlinux 0x7a03a60d eth_header_parse +EXPORT_SYMBOL vmlinux 0x79fa1e76 iterate_supers_type +EXPORT_SYMBOL vmlinux 0x79fd6e2b _dev_alert EXPORT_SYMBOL vmlinux 0x7a09a064 seg6_hmac_compute -EXPORT_SYMBOL vmlinux 0x7a166db8 unix_get_socket -EXPORT_SYMBOL vmlinux 0x7a176e0c phy_sfp_probe +EXPORT_SYMBOL vmlinux 0x7a0f06c6 udp_poll EXPORT_SYMBOL vmlinux 0x7a1bcd59 gf128mul_x8_ble -EXPORT_SYMBOL vmlinux 0x7a216213 max8998_bulk_write EXPORT_SYMBOL vmlinux 0x7a2af7b4 cpu_number -EXPORT_SYMBOL vmlinux 0x7a2efaf1 forget_all_cached_acls -EXPORT_SYMBOL vmlinux 0x7a3b1485 textsearch_destroy -EXPORT_SYMBOL vmlinux 0x7a4dde20 skb_orphan_partial -EXPORT_SYMBOL vmlinux 0x7a5b85f9 tty_devnum -EXPORT_SYMBOL vmlinux 0x7a944f52 __inc_zone_page_state +EXPORT_SYMBOL vmlinux 0x7a3b93b9 phy_error +EXPORT_SYMBOL vmlinux 0x7a429d31 tty_port_init +EXPORT_SYMBOL vmlinux 0x7a49930c flow_block_cb_priv +EXPORT_SYMBOL vmlinux 0x7a657911 sock_alloc +EXPORT_SYMBOL vmlinux 0x7a7205a7 sk_stop_timer_sync +EXPORT_SYMBOL vmlinux 0x7a764b8d devm_extcon_register_notifier EXPORT_SYMBOL vmlinux 0x7a95e5ae do_settimeofday64 EXPORT_SYMBOL vmlinux 0x7a968137 ucc_slow_restart_tx +EXPORT_SYMBOL vmlinux 0x7a9bd7a4 touchscreen_report_pos EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree -EXPORT_SYMBOL vmlinux 0x7aa55752 call_fib_notifiers +EXPORT_SYMBOL vmlinux 0x7aa44f5c would_dump EXPORT_SYMBOL vmlinux 0x7ab45d25 dma_fence_array_create EXPORT_SYMBOL vmlinux 0x7ab88a45 system_freezing_cnt +EXPORT_SYMBOL vmlinux 0x7ac0d2a2 inet_offloads +EXPORT_SYMBOL vmlinux 0x7acf9f46 nlmsg_notify EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt EXPORT_SYMBOL vmlinux 0x7adc0fbf rb_replace_node_rcu -EXPORT_SYMBOL vmlinux 0x7ae4fc86 pci_release_regions +EXPORT_SYMBOL vmlinux 0x7adf66a2 ip_sock_set_mtu_discover +EXPORT_SYMBOL vmlinux 0x7ae03bd2 fsl_ifc_ctrl_dev EXPORT_SYMBOL vmlinux 0x7ae5d317 qe_get_snum -EXPORT_SYMBOL vmlinux 0x7b0a22ba i2c_smbus_write_word_data -EXPORT_SYMBOL vmlinux 0x7b19a6b5 generic_key_instantiate -EXPORT_SYMBOL vmlinux 0x7b1e0fe7 copy_page_to_iter +EXPORT_SYMBOL vmlinux 0x7afc9b4a fscrypt_setup_filename EXPORT_SYMBOL vmlinux 0x7b37d4a7 _find_first_zero_bit -EXPORT_SYMBOL vmlinux 0x7b3da0cd devfreq_update_target -EXPORT_SYMBOL vmlinux 0x7b4879a1 tcp_seq_start +EXPORT_SYMBOL vmlinux 0x7b47b7f9 phy_modify_paged_changed EXPORT_SYMBOL vmlinux 0x7b4da6ff __init_rwsem -EXPORT_SYMBOL vmlinux 0x7b5ac09b of_find_all_nodes EXPORT_SYMBOL vmlinux 0x7b5b8f31 sha256_update +EXPORT_SYMBOL vmlinux 0x7b5f52c7 vfs_parse_fs_string +EXPORT_SYMBOL vmlinux 0x7b606c2c free_xenballooned_pages +EXPORT_SYMBOL vmlinux 0x7b6fd2a5 ilookup5_nowait EXPORT_SYMBOL vmlinux 0x7b82b9a1 idr_replace +EXPORT_SYMBOL vmlinux 0x7b85a018 xfrm_replay_seqhi +EXPORT_SYMBOL vmlinux 0x7b901ab0 pcie_capability_write_word +EXPORT_SYMBOL vmlinux 0x7b97f246 sk_dst_check +EXPORT_SYMBOL vmlinux 0x7ba55709 dev_uc_flush EXPORT_SYMBOL vmlinux 0x7ba5a3b4 tegra_powergate_power_off -EXPORT_SYMBOL vmlinux 0x7ba6cdab pci_read_config_dword +EXPORT_SYMBOL vmlinux 0x7bb3fe86 __task_pid_nr_ns EXPORT_SYMBOL vmlinux 0x7bb50b88 acpi_write EXPORT_SYMBOL vmlinux 0x7bbccd05 nr_node_ids -EXPORT_SYMBOL vmlinux 0x7bc381af bdi_put -EXPORT_SYMBOL vmlinux 0x7bd41548 tcf_em_tree_destroy -EXPORT_SYMBOL vmlinux 0x7be59846 pci_bus_read_config_byte -EXPORT_SYMBOL vmlinux 0x7bf4c9e0 page_pool_put_page -EXPORT_SYMBOL vmlinux 0x7bfc606b __nd_driver_register -EXPORT_SYMBOL vmlinux 0x7c0061fc __scsi_execute -EXPORT_SYMBOL vmlinux 0x7c0746d7 mr_mfc_find_any +EXPORT_SYMBOL vmlinux 0x7bc8bfcf pci_free_irq +EXPORT_SYMBOL vmlinux 0x7bd1db78 sg_miter_start +EXPORT_SYMBOL vmlinux 0x7be38142 __set_page_dirty_nobuffers +EXPORT_SYMBOL vmlinux 0x7bfb1e57 blkdev_issue_write_same +EXPORT_SYMBOL vmlinux 0x7bffaca9 seg6_hmac_info_lookup +EXPORT_SYMBOL vmlinux 0x7c010112 of_node_get EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement -EXPORT_SYMBOL vmlinux 0x7c1b962d __i2c_smbus_xfer -EXPORT_SYMBOL vmlinux 0x7c1c0e59 i2c_register_driver -EXPORT_SYMBOL vmlinux 0x7c3695f0 config_group_init_type_name -EXPORT_SYMBOL vmlinux 0x7c42cd5b __invalidate_device +EXPORT_SYMBOL vmlinux 0x7c286ce3 read_cache_page_gfp +EXPORT_SYMBOL vmlinux 0x7c30fc3f scsi_eh_prep_cmnd EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get -EXPORT_SYMBOL vmlinux 0x7c4c17fa nvdimm_namespace_common_probe -EXPORT_SYMBOL vmlinux 0x7c50ab77 ipv6_dev_mc_dec -EXPORT_SYMBOL vmlinux 0x7c5b27de update_region -EXPORT_SYMBOL vmlinux 0x7c786cd0 complete_request_key -EXPORT_SYMBOL vmlinux 0x7c82600a inet_frags_fini -EXPORT_SYMBOL vmlinux 0x7c875a9f mii_ethtool_sset -EXPORT_SYMBOL vmlinux 0x7c93f7d7 tty_name -EXPORT_SYMBOL vmlinux 0x7c9c8b9b reuseport_attach_prog +EXPORT_SYMBOL vmlinux 0x7c47f3a2 netpoll_cleanup +EXPORT_SYMBOL vmlinux 0x7c506149 md_done_sync +EXPORT_SYMBOL vmlinux 0x7c645814 xfrm_register_km +EXPORT_SYMBOL vmlinux 0x7c842167 ps2_sliced_command +EXPORT_SYMBOL vmlinux 0x7c86ee9f __sock_cmsg_send +EXPORT_SYMBOL vmlinux 0x7c92c163 bio_reset EXPORT_SYMBOL vmlinux 0x7c9ca58f __sg_page_iter_next -EXPORT_SYMBOL vmlinux 0x7c9e6497 neigh_app_ns -EXPORT_SYMBOL vmlinux 0x7cacaae4 inet_csk_prepare_forced_close +EXPORT_SYMBOL vmlinux 0x7ca9baaf qdisc_hash_del +EXPORT_SYMBOL vmlinux 0x7cb0a138 mnt_set_expiry EXPORT_SYMBOL vmlinux 0x7cb1aea1 devlink_dpipe_header_ethernet -EXPORT_SYMBOL vmlinux 0x7cc1862d xfrm_state_alloc -EXPORT_SYMBOL vmlinux 0x7cd84bd1 sunxi_sram_claim +EXPORT_SYMBOL vmlinux 0x7cb8b80e ipv6_push_frag_opts +EXPORT_SYMBOL vmlinux 0x7cbc64e1 iptun_encaps +EXPORT_SYMBOL vmlinux 0x7cc27780 ptp_clock_unregister EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid EXPORT_SYMBOL vmlinux 0x7ce58981 kvrealloc -EXPORT_SYMBOL vmlinux 0x7cf1ec70 vm_map_pages +EXPORT_SYMBOL vmlinux 0x7cef1d05 kernel_sock_ip_overhead EXPORT_SYMBOL vmlinux 0x7cf35220 vme_master_free -EXPORT_SYMBOL vmlinux 0x7cf6f9bf __skb_vlan_pop -EXPORT_SYMBOL vmlinux 0x7cf722f7 rproc_get_by_phandle -EXPORT_SYMBOL vmlinux 0x7cfa0718 sk_ns_capable +EXPORT_SYMBOL vmlinux 0x7cf8a518 nd_btt_version EXPORT_SYMBOL vmlinux 0x7cfe368d net_dim_get_def_tx_moderation +EXPORT_SYMBOL vmlinux 0x7cffbc50 tcp_check_req +EXPORT_SYMBOL vmlinux 0x7d0781ec scm_fp_dup EXPORT_SYMBOL vmlinux 0x7d0ba682 gen_pool_virt_to_phys EXPORT_SYMBOL vmlinux 0x7d0db45c jiffies_to_clock_t +EXPORT_SYMBOL vmlinux 0x7d1211fa qdisc_offload_graft_helper EXPORT_SYMBOL vmlinux 0x7d12d76d acpi_get_parent -EXPORT_SYMBOL vmlinux 0x7d16a089 pnp_get_resource -EXPORT_SYMBOL vmlinux 0x7d1c9ab1 generic_cont_expand_simple -EXPORT_SYMBOL vmlinux 0x7d271225 keyring_alloc -EXPORT_SYMBOL vmlinux 0x7d443fd4 pci_bus_set_ops -EXPORT_SYMBOL vmlinux 0x7d46cfd2 rtnl_unicast -EXPORT_SYMBOL vmlinux 0x7d473790 xfrm_lookup -EXPORT_SYMBOL vmlinux 0x7d48e3c2 pci_scan_root_bus_bridge +EXPORT_SYMBOL vmlinux 0x7d16a2a8 complete_request_key +EXPORT_SYMBOL vmlinux 0x7d3cbfd5 iget5_locked +EXPORT_SYMBOL vmlinux 0x7d3d2a80 thermal_zone_device_critical EXPORT_SYMBOL vmlinux 0x7d4b176a netlbl_catmap_setbit -EXPORT_SYMBOL vmlinux 0x7d4bf9d8 pcie_print_link_status -EXPORT_SYMBOL vmlinux 0x7d56a483 generic_pipe_buf_try_steal EXPORT_SYMBOL vmlinux 0x7d5e1008 __crc32c_le_shift -EXPORT_SYMBOL vmlinux 0x7d673997 sockfd_lookup -EXPORT_SYMBOL vmlinux 0x7d7152dd inc_zone_page_state -EXPORT_SYMBOL vmlinux 0x7d72bd6c sock_recv_errqueue +EXPORT_SYMBOL vmlinux 0x7d68cf69 dquot_mark_dquot_dirty EXPORT_SYMBOL vmlinux 0x7d74d522 kstrtoull_from_user -EXPORT_SYMBOL vmlinux 0x7d86c16d __register_nls -EXPORT_SYMBOL vmlinux 0x7d8f7302 pci_disable_msix +EXPORT_SYMBOL vmlinux 0x7d7ce245 secpath_set +EXPORT_SYMBOL vmlinux 0x7d9fb448 md_error +EXPORT_SYMBOL vmlinux 0x7da1795d tty_driver_flush_buffer +EXPORT_SYMBOL vmlinux 0x7da3f9a1 skb_copy_bits +EXPORT_SYMBOL vmlinux 0x7da9d3a9 i2c_put_adapter EXPORT_SYMBOL vmlinux 0x7daece67 quota_send_warning -EXPORT_SYMBOL vmlinux 0x7dc851d9 twl6040_set_bits -EXPORT_SYMBOL vmlinux 0x7dcda279 mdio_device_register +EXPORT_SYMBOL vmlinux 0x7dcc8d78 mdiobus_free EXPORT_SYMBOL vmlinux 0x7dcf4135 __xa_insert -EXPORT_SYMBOL vmlinux 0x7dcf99bf seq_release_private -EXPORT_SYMBOL vmlinux 0x7dd22cd4 disk_start_io_acct -EXPORT_SYMBOL vmlinux 0x7dd69f82 tty_port_block_til_ready -EXPORT_SYMBOL vmlinux 0x7de105b5 cdev_add -EXPORT_SYMBOL vmlinux 0x7de3ac6a scsi_remove_device EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args -EXPORT_SYMBOL vmlinux 0x7df13689 msm_pinctrl_dev_pm_ops -EXPORT_SYMBOL vmlinux 0x7e00cbe6 inet6_ioctl -EXPORT_SYMBOL vmlinux 0x7e11fc96 ipv6_find_hdr EXPORT_SYMBOL vmlinux 0x7e3191f6 try_to_del_timer_sync -EXPORT_SYMBOL vmlinux 0x7e5b2a64 xfrm_lookup_with_ifid -EXPORT_SYMBOL vmlinux 0x7e60285c __sk_backlog_rcv -EXPORT_SYMBOL vmlinux 0x7e618d01 __neigh_event_send -EXPORT_SYMBOL vmlinux 0x7e66b82e mii_check_gmii_support -EXPORT_SYMBOL vmlinux 0x7e75b7fc vfs_create_mount -EXPORT_SYMBOL vmlinux 0x7e88d386 dma_sync_sg_for_cpu -EXPORT_SYMBOL vmlinux 0x7eb3fc97 vfs_rmdir -EXPORT_SYMBOL vmlinux 0x7ef5a521 jbd2_journal_wipe +EXPORT_SYMBOL vmlinux 0x7e36e9dd block_write_end +EXPORT_SYMBOL vmlinux 0x7e6187c9 nf_log_set +EXPORT_SYMBOL vmlinux 0x7e6252c2 fib6_info_hw_flags_set +EXPORT_SYMBOL vmlinux 0x7e82a747 set_disk_ro +EXPORT_SYMBOL vmlinux 0x7e83ada5 dma_sync_single_for_device +EXPORT_SYMBOL vmlinux 0x7e99c1cd flow_rule_match_control +EXPORT_SYMBOL vmlinux 0x7e9d0d74 kobject_get_unless_zero +EXPORT_SYMBOL vmlinux 0x7e9e7d42 ip_output +EXPORT_SYMBOL vmlinux 0x7ea03e09 open_with_fake_path +EXPORT_SYMBOL vmlinux 0x7ed5893f sock_create +EXPORT_SYMBOL vmlinux 0x7ed62c56 ___pskb_trim +EXPORT_SYMBOL vmlinux 0x7ed6ff8a devm_rproc_alloc EXPORT_SYMBOL vmlinux 0x7f02188f __msecs_to_jiffies EXPORT_SYMBOL vmlinux 0x7f03b6a9 crc_ccitt_table -EXPORT_SYMBOL vmlinux 0x7f05b68c generic_delete_inode -EXPORT_SYMBOL vmlinux 0x7f085623 set_create_files_as -EXPORT_SYMBOL vmlinux 0x7f0ca9c4 cpufreq_get_policy -EXPORT_SYMBOL vmlinux 0x7f12a994 ip_getsockopt -EXPORT_SYMBOL vmlinux 0x7f16b75e scmd_printk -EXPORT_SYMBOL vmlinux 0x7f1a6834 seg6_hmac_net_init -EXPORT_SYMBOL vmlinux 0x7f1c1117 icmpv6_ndo_send +EXPORT_SYMBOL vmlinux 0x7f18c786 tcp_v4_destroy_sock +EXPORT_SYMBOL vmlinux 0x7f1afe19 pci_assign_resource EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs -EXPORT_SYMBOL vmlinux 0x7f288011 inet_frag_kill -EXPORT_SYMBOL vmlinux 0x7f2883a8 inet_frags_init -EXPORT_SYMBOL vmlinux 0x7f362242 sock_common_recvmsg +EXPORT_SYMBOL vmlinux 0x7f3d4223 pagecache_isize_extended +EXPORT_SYMBOL vmlinux 0x7f4fef2b __blkdev_issue_discard EXPORT_SYMBOL vmlinux 0x7f52071a net_dim +EXPORT_SYMBOL vmlinux 0x7f58bc49 pci_claim_resource EXPORT_SYMBOL vmlinux 0x7f5b4fe4 sg_free_table +EXPORT_SYMBOL vmlinux 0x7f75c8ee put_disk +EXPORT_SYMBOL vmlinux 0x7f773f0a jbd2_journal_begin_ordered_truncate EXPORT_SYMBOL vmlinux 0x7f7f7bb4 irq_poll_disable -EXPORT_SYMBOL vmlinux 0x7f8da78c sync_file_create -EXPORT_SYMBOL vmlinux 0x7fa6df2d ppp_output_wakeup -EXPORT_SYMBOL vmlinux 0x7fb51d1f can_nice -EXPORT_SYMBOL vmlinux 0x7fcd8756 rtc_add_groups +EXPORT_SYMBOL vmlinux 0x7f8745bb d_instantiate_anon +EXPORT_SYMBOL vmlinux 0x7f9ac362 xfrm_lookup_route +EXPORT_SYMBOL vmlinux 0x7fb34ae6 eth_validate_addr +EXPORT_SYMBOL vmlinux 0x7fb6e8d8 of_parse_phandle_with_args_map +EXPORT_SYMBOL vmlinux 0x7fc34d07 file_ns_capable EXPORT_SYMBOL vmlinux 0x7fce778e tegra_ivc_total_queue_size -EXPORT_SYMBOL vmlinux 0x7fd81a58 netif_set_xps_queue EXPORT_SYMBOL vmlinux 0x7fe105d7 bman_ip_rev EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node -EXPORT_SYMBOL vmlinux 0x7fe4025b kobject_set_name -EXPORT_SYMBOL vmlinux 0x7fe9c6c0 vme_slot_num -EXPORT_SYMBOL vmlinux 0x80074a32 __find_get_block -EXPORT_SYMBOL vmlinux 0x8019efb0 inet_ioctl -EXPORT_SYMBOL vmlinux 0x803aa1e7 fman_set_mac_max_frame +EXPORT_SYMBOL vmlinux 0x7fe3b80b of_chosen +EXPORT_SYMBOL vmlinux 0x7ff541f2 dm_register_target +EXPORT_SYMBOL vmlinux 0x80037aa5 pskb_trim_rcsum_slow +EXPORT_SYMBOL vmlinux 0x80072fc0 scsi_device_put +EXPORT_SYMBOL vmlinux 0x800a0e30 padata_do_parallel +EXPORT_SYMBOL vmlinux 0x800d30a3 page_zero_new_buffers EXPORT_SYMBOL vmlinux 0x803ddbb6 __posix_acl_create -EXPORT_SYMBOL vmlinux 0x806a9bff phy_loopback -EXPORT_SYMBOL vmlinux 0x809194f2 kernel_sendpage_locked +EXPORT_SYMBOL vmlinux 0x8050063c rdmacg_try_charge EXPORT_SYMBOL vmlinux 0x809712ff hdmi_avi_infoframe_pack +EXPORT_SYMBOL vmlinux 0x80a0201f pci_release_regions +EXPORT_SYMBOL vmlinux 0x80a5ef73 node_data EXPORT_SYMBOL vmlinux 0x80a717a8 __percpu_counter_compare -EXPORT_SYMBOL vmlinux 0x80bdf3ec phy_start +EXPORT_SYMBOL vmlinux 0x80b134af dquot_operations +EXPORT_SYMBOL vmlinux 0x80c3a085 padata_do_serial EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd EXPORT_SYMBOL vmlinux 0x80d68d3e fb_register_client EXPORT_SYMBOL vmlinux 0x80e5f86f fscrypt_fname_alloc_buffer -EXPORT_SYMBOL vmlinux 0x80eadd91 sock_create EXPORT_SYMBOL vmlinux 0x80ec0d50 qman_init_fq -EXPORT_SYMBOL vmlinux 0x80ee9aca xfrm4_rcv_encap -EXPORT_SYMBOL vmlinux 0x80f7f0c6 fb_class +EXPORT_SYMBOL vmlinux 0x80ee2af2 mmc_can_gpio_cd +EXPORT_SYMBOL vmlinux 0x81068cfc pnp_activate_dev EXPORT_SYMBOL vmlinux 0x810bef7e sg_free_append_table -EXPORT_SYMBOL vmlinux 0x810f9443 fscrypt_zeroout_range +EXPORT_SYMBOL vmlinux 0x810daf9d iproc_msi_init EXPORT_SYMBOL vmlinux 0x8112b3d2 scsi_build_sense_buffer EXPORT_SYMBOL vmlinux 0x81188c30 match_string -EXPORT_SYMBOL vmlinux 0x811988ba kernel_bind -EXPORT_SYMBOL vmlinux 0x813501c6 __mark_inode_dirty +EXPORT_SYMBOL vmlinux 0x81384707 genphy_loopback EXPORT_SYMBOL vmlinux 0x81533963 sysfs_format_mac EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal -EXPORT_SYMBOL vmlinux 0x81664a1d bdi_alloc -EXPORT_SYMBOL vmlinux 0x817cad07 __ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0x816090f9 jbd2_journal_force_commit +EXPORT_SYMBOL vmlinux 0x816a7491 tty_port_close_end +EXPORT_SYMBOL vmlinux 0x816b4590 default_llseek EXPORT_SYMBOL vmlinux 0x818416e1 scsi_set_sense_information +EXPORT_SYMBOL vmlinux 0x818b1503 tcf_idr_create EXPORT_SYMBOL vmlinux 0x818edf97 cpm_muram_alloc +EXPORT_SYMBOL vmlinux 0x81a96353 xfrm_state_check_expire EXPORT_SYMBOL vmlinux 0x81b20e8b ucc_fast_transmit_on_demand -EXPORT_SYMBOL vmlinux 0x81c8c551 udp_sendmsg -EXPORT_SYMBOL vmlinux 0x81ca63d4 invalidate_inode_buffers -EXPORT_SYMBOL vmlinux 0x81cbab66 rproc_detach +EXPORT_SYMBOL vmlinux 0x81c9e1a2 __napi_alloc_skb +EXPORT_SYMBOL vmlinux 0x81ccc103 simple_getattr EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset -EXPORT_SYMBOL vmlinux 0x81e28c2d blk_cleanup_queue +EXPORT_SYMBOL vmlinux 0x81dc205a serio_unregister_port +EXPORT_SYMBOL vmlinux 0x81e47d35 inet_csk_complete_hashdance EXPORT_SYMBOL vmlinux 0x81e6b37f dmi_get_system_info -EXPORT_SYMBOL vmlinux 0x81e795f0 skb_copy_and_csum_bits -EXPORT_SYMBOL vmlinux 0x821af76c mfd_remove_devices_late +EXPORT_SYMBOL vmlinux 0x82007b1f cdrom_check_events +EXPORT_SYMBOL vmlinux 0x821d68c0 cookie_ecn_ok +EXPORT_SYMBOL vmlinux 0x821f4527 __sock_queue_rcv_skb EXPORT_SYMBOL vmlinux 0x823d3505 cmxgcr_lock +EXPORT_SYMBOL vmlinux 0x8245c6ac set_page_dirty +EXPORT_SYMBOL vmlinux 0x82501ed2 pci_add_new_bus +EXPORT_SYMBOL vmlinux 0x82637c57 hdmi_infoframe_log EXPORT_SYMBOL vmlinux 0x8263a6d9 proc_douintvec -EXPORT_SYMBOL vmlinux 0x8267b728 devm_devfreq_add_device +EXPORT_SYMBOL vmlinux 0x8265cf06 dma_map_resource +EXPORT_SYMBOL vmlinux 0x826a28f9 dma_resv_fini +EXPORT_SYMBOL vmlinux 0x8275bd18 fs_param_is_u64 EXPORT_SYMBOL vmlinux 0x828062b1 __frontswap_init -EXPORT_SYMBOL vmlinux 0x82af3146 inet_put_port +EXPORT_SYMBOL vmlinux 0x82840c44 blk_integrity_compare +EXPORT_SYMBOL vmlinux 0x82979227 copy_page_from_iter_atomic EXPORT_SYMBOL vmlinux 0x82c87ad5 nr_online_nodes -EXPORT_SYMBOL vmlinux 0x82d07c04 __ip_options_compile -EXPORT_SYMBOL vmlinux 0x82d77ee7 mdiobus_is_registered_device -EXPORT_SYMBOL vmlinux 0x830965f9 inet_sendpage -EXPORT_SYMBOL vmlinux 0x832a1411 nf_log_set -EXPORT_SYMBOL vmlinux 0x834d2913 scsi_vpd_lun_id +EXPORT_SYMBOL vmlinux 0x82ccc524 __vfs_removexattr +EXPORT_SYMBOL vmlinux 0x830e7420 devm_rproc_add +EXPORT_SYMBOL vmlinux 0x8319e6a5 ip6_frag_init +EXPORT_SYMBOL vmlinux 0x832cf347 dev_queue_xmit_accel +EXPORT_SYMBOL vmlinux 0x832ea0b6 xfrm6_rcv_tnl +EXPORT_SYMBOL vmlinux 0x8332c354 __i2c_transfer +EXPORT_SYMBOL vmlinux 0x833623d8 flow_rule_match_enc_opts +EXPORT_SYMBOL vmlinux 0x8336fb5f phy_device_create +EXPORT_SYMBOL vmlinux 0x83380ef2 mmc_of_parse_voltage +EXPORT_SYMBOL vmlinux 0x833f117d delete_from_page_cache +EXPORT_SYMBOL vmlinux 0x83480e01 sock_kmalloc EXPORT_SYMBOL vmlinux 0x83581089 gf128mul_init_4k_lle -EXPORT_SYMBOL vmlinux 0x835f3ba2 mr_mfc_seq_next -EXPORT_SYMBOL vmlinux 0x836fd0fe sg_miter_start +EXPORT_SYMBOL vmlinux 0x835e0ab9 sk_mc_loop EXPORT_SYMBOL vmlinux 0x837b7b09 __dynamic_pr_debug +EXPORT_SYMBOL vmlinux 0x838100a8 phy_connect +EXPORT_SYMBOL vmlinux 0x8386df06 filemap_fdatawrite EXPORT_SYMBOL vmlinux 0x838d2bc8 siphash_3u32 -EXPORT_SYMBOL vmlinux 0x83b1cbb9 pci_release_region -EXPORT_SYMBOL vmlinux 0x83c41794 nvdimm_namespace_capacity +EXPORT_SYMBOL vmlinux 0x83aefdd4 dump_page +EXPORT_SYMBOL vmlinux 0x83bf5c9e jbd2_journal_forget EXPORT_SYMBOL vmlinux 0x83c52fba xfrm4_protocol_init -EXPORT_SYMBOL vmlinux 0x83fdb0d9 __scsi_iterate_devices -EXPORT_SYMBOL vmlinux 0x84017c1a ping_prot +EXPORT_SYMBOL vmlinux 0x83c89f49 genphy_suspend +EXPORT_SYMBOL vmlinux 0x83d845ba configfs_remove_default_groups +EXPORT_SYMBOL vmlinux 0x83f6c5e4 tegra_ivc_read_advance +EXPORT_SYMBOL vmlinux 0x83ff03d3 tty_schedule_flip EXPORT_SYMBOL vmlinux 0x840342c6 sgl_free -EXPORT_SYMBOL vmlinux 0x8416655d genphy_handle_interrupt_no_ack -EXPORT_SYMBOL vmlinux 0x8427a206 scsi_print_command -EXPORT_SYMBOL vmlinux 0x844cad3f find_get_pages_range_tag -EXPORT_SYMBOL vmlinux 0x844fb85b security_binder_transfer_file -EXPORT_SYMBOL vmlinux 0x8452eaf0 follow_up +EXPORT_SYMBOL vmlinux 0x842f2ee9 xfrm_state_walk_done +EXPORT_SYMBOL vmlinux 0x84318ecb phy_drivers_unregister +EXPORT_SYMBOL vmlinux 0x844ca241 is_bad_inode EXPORT_SYMBOL vmlinux 0x8455e3a7 dma_fence_signal_timestamp_locked -EXPORT_SYMBOL vmlinux 0x847e8bb1 blk_mq_delay_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x845966bd d_alloc_name +EXPORT_SYMBOL vmlinux 0x845c5afc nf_getsockopt EXPORT_SYMBOL vmlinux 0x84818f57 tegra_powergate_power_on EXPORT_SYMBOL vmlinux 0x84823cf3 nla_strscpy -EXPORT_SYMBOL vmlinux 0x849d291c pci_bus_alloc_resource -EXPORT_SYMBOL vmlinux 0x84a74197 simple_write_begin -EXPORT_SYMBOL vmlinux 0x84a90cca netif_rx_any_context -EXPORT_SYMBOL vmlinux 0x84bf9af8 param_get_byte +EXPORT_SYMBOL vmlinux 0x84ab61ac inet_select_addr +EXPORT_SYMBOL vmlinux 0x84b511d5 mipi_dsi_host_unregister EXPORT_SYMBOL vmlinux 0x84c03e9a rtnl_nla_parse_ifla EXPORT_SYMBOL vmlinux 0x84c1c552 proc_dointvec_ms_jiffies EXPORT_SYMBOL vmlinux 0x84c4040c security_binder_set_context_mgr -EXPORT_SYMBOL vmlinux 0x84c8f08e fqdir_exit -EXPORT_SYMBOL vmlinux 0x84dfc6e0 genphy_soft_reset -EXPORT_SYMBOL vmlinux 0x84ecb8ec tcf_block_netif_keep_dst -EXPORT_SYMBOL vmlinux 0x850f5c70 dquot_reclaim_space_nodirty -EXPORT_SYMBOL vmlinux 0x85182481 of_find_node_opts_by_path +EXPORT_SYMBOL vmlinux 0x84dbf3a3 __i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0x8507a73a sock_alloc_send_pskb +EXPORT_SYMBOL vmlinux 0x85152283 inet_frag_queue_insert +EXPORT_SYMBOL vmlinux 0x8515ff3a generic_shutdown_super EXPORT_SYMBOL vmlinux 0x851b9121 xudma_dev_get_psil_base -EXPORT_SYMBOL vmlinux 0x851e6252 pci_disable_link_state_locked -EXPORT_SYMBOL vmlinux 0x8525541d vfs_mknod -EXPORT_SYMBOL vmlinux 0x8534c657 dquot_operations +EXPORT_SYMBOL vmlinux 0x8526357b i2c_register_driver +EXPORT_SYMBOL vmlinux 0x852d6722 zpool_unregister_driver +EXPORT_SYMBOL vmlinux 0x8534ab48 unlock_two_nondirectories EXPORT_SYMBOL vmlinux 0x854fec83 tegra_sku_info -EXPORT_SYMBOL vmlinux 0x85533b2c inet_dgram_ops -EXPORT_SYMBOL vmlinux 0x8555238a mod_zone_page_state -EXPORT_SYMBOL vmlinux 0x855fe4df devm_free_irq EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked -EXPORT_SYMBOL vmlinux 0x85886eb0 ip_queue_xmit +EXPORT_SYMBOL vmlinux 0x856ee21d nvdimm_namespace_common_probe +EXPORT_SYMBOL vmlinux 0x858584f0 netif_rx_ni +EXPORT_SYMBOL vmlinux 0x858d6519 of_phy_find_device EXPORT_SYMBOL vmlinux 0x8591d7d5 ledtrig_mtd_activity -EXPORT_SYMBOL vmlinux 0x8598962b free_xenballooned_pages -EXPORT_SYMBOL vmlinux 0x85a9f892 nd_device_register +EXPORT_SYMBOL vmlinux 0x8595393e phy_suspend +EXPORT_SYMBOL vmlinux 0x85b4642c tty_check_change EXPORT_SYMBOL vmlinux 0x85b4cf2f utf8nlen EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states -EXPORT_SYMBOL vmlinux 0x85b7908c pci_get_domain_bus_and_slot +EXPORT_SYMBOL vmlinux 0x85b7757d d_make_root EXPORT_SYMBOL vmlinux 0x85bd1608 __request_region -EXPORT_SYMBOL vmlinux 0x85c74df8 imx_scu_enable_general_irq_channel -EXPORT_SYMBOL vmlinux 0x85c91b28 pci_enable_msi -EXPORT_SYMBOL vmlinux 0x85cbb8b1 truncate_pagecache -EXPORT_SYMBOL vmlinux 0x85d7e7b6 iter_file_splice_write +EXPORT_SYMBOL vmlinux 0x85d56374 security_sctp_sk_clone +EXPORT_SYMBOL vmlinux 0x85d677c7 pci_wake_from_d3 +EXPORT_SYMBOL vmlinux 0x85d95f0f posix_lock_file +EXPORT_SYMBOL vmlinux 0x85dba60d proc_mkdir_mode EXPORT_SYMBOL vmlinux 0x85df9b6c strsep EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn EXPORT_SYMBOL vmlinux 0x85fbc931 slhc_uncompress -EXPORT_SYMBOL vmlinux 0x862b7cb4 input_match_device_id +EXPORT_SYMBOL vmlinux 0x860b4c19 mmc_get_card +EXPORT_SYMBOL vmlinux 0x8612a82c padata_alloc +EXPORT_SYMBOL vmlinux 0x86159738 pagevec_lookup_range EXPORT_SYMBOL vmlinux 0x863a276a color_table -EXPORT_SYMBOL vmlinux 0x863cebb8 md_unregister_thread -EXPORT_SYMBOL vmlinux 0x863f8007 kthread_blkcg -EXPORT_SYMBOL vmlinux 0x864ff447 fman_register_intr -EXPORT_SYMBOL vmlinux 0x8679f4ab scsicam_bios_param -EXPORT_SYMBOL vmlinux 0x868267c4 ndo_dflt_fdb_add +EXPORT_SYMBOL vmlinux 0x864f2238 phy_ethtool_get_wol +EXPORT_SYMBOL vmlinux 0x86670769 dev_change_proto_down +EXPORT_SYMBOL vmlinux 0x866e4b75 __frontswap_load +EXPORT_SYMBOL vmlinux 0x866e88d3 inet_addr_type_table +EXPORT_SYMBOL vmlinux 0x8676d53e phy_init_hw +EXPORT_SYMBOL vmlinux 0x8688c688 kthread_associate_blkcg EXPORT_SYMBOL vmlinux 0x868acba5 get_options -EXPORT_SYMBOL vmlinux 0x869572fb ilookup -EXPORT_SYMBOL vmlinux 0x869ca3ae __netlink_kernel_create -EXPORT_SYMBOL vmlinux 0x86c334e9 write_inode_now -EXPORT_SYMBOL vmlinux 0x86c76da2 qdisc_watchdog_init_clockid +EXPORT_SYMBOL vmlinux 0x869bec36 from_kgid +EXPORT_SYMBOL vmlinux 0x86a9780d mipi_dsi_dcs_set_page_address +EXPORT_SYMBOL vmlinux 0x86a97aca udp_gro_complete +EXPORT_SYMBOL vmlinux 0x86c16fcd follow_pfn EXPORT_SYMBOL vmlinux 0x86d52ba5 lookup_constant -EXPORT_SYMBOL vmlinux 0x86d55f3e inet_offloads -EXPORT_SYMBOL vmlinux 0x86d6e634 pnp_release_card_device -EXPORT_SYMBOL vmlinux 0x86df2e57 ip_generic_getfrag +EXPORT_SYMBOL vmlinux 0x86dccf07 simple_open +EXPORT_SYMBOL vmlinux 0x86f05a4b dmam_pool_create EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user -EXPORT_SYMBOL vmlinux 0x871055f7 nf_log_trace -EXPORT_SYMBOL vmlinux 0x87288f7f ip_mc_join_group -EXPORT_SYMBOL vmlinux 0x8742954a phy_ethtool_set_link_ksettings -EXPORT_SYMBOL vmlinux 0x874e6cf8 phy_connect +EXPORT_SYMBOL vmlinux 0x872b1248 bpf_prog_get_type_path +EXPORT_SYMBOL vmlinux 0x87508e9a proc_symlink EXPORT_SYMBOL vmlinux 0x8761c87b rps_needed -EXPORT_SYMBOL vmlinux 0x8764abf4 param_get_string -EXPORT_SYMBOL vmlinux 0x8768fd8d md_bitmap_close_sync +EXPORT_SYMBOL vmlinux 0x8763e05b tegra_ivc_read_get_next_frame +EXPORT_SYMBOL vmlinux 0x87697a0e fb_pan_display EXPORT_SYMBOL vmlinux 0x87761528 __traceiter_kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0x8780b623 phy_register_fixup_for_id EXPORT_SYMBOL vmlinux 0x878469bd ZSTD_decompressStream -EXPORT_SYMBOL vmlinux 0x878a4aba lease_modify -EXPORT_SYMBOL vmlinux 0x87953f1c rtc_add_group -EXPORT_SYMBOL vmlinux 0x87a10421 sb_min_blocksize EXPORT_SYMBOL vmlinux 0x87a21cb3 __ubsan_handle_out_of_bounds -EXPORT_SYMBOL vmlinux 0x87a86168 nf_hook_slow_list -EXPORT_SYMBOL vmlinux 0x87b7c8b6 bh_uptodate_or_lock +EXPORT_SYMBOL vmlinux 0x87aa4547 blk_mq_end_request +EXPORT_SYMBOL vmlinux 0x87ae5fe6 new_inode +EXPORT_SYMBOL vmlinux 0x87b0a6d5 of_n_size_cells EXPORT_SYMBOL vmlinux 0x87b8798d sg_next -EXPORT_SYMBOL vmlinux 0x87cfc7e8 skb_vlan_untag -EXPORT_SYMBOL vmlinux 0x87d610d8 twl6040_get_vibralr_status -EXPORT_SYMBOL vmlinux 0x87fdab21 inet_accept -EXPORT_SYMBOL vmlinux 0x87febfcb fscrypt_ioctl_get_policy -EXPORT_SYMBOL vmlinux 0x87fedce8 kernel_sock_shutdown -EXPORT_SYMBOL vmlinux 0x880cffb3 rt_mutex_base_init +EXPORT_SYMBOL vmlinux 0x87c407cc __bread_gfp +EXPORT_SYMBOL vmlinux 0x87c6aa37 ptp_cancel_worker_sync +EXPORT_SYMBOL vmlinux 0x87cbe330 sk_free +EXPORT_SYMBOL vmlinux 0x87cdf211 security_path_mkdir +EXPORT_SYMBOL vmlinux 0x87d5d07f tcf_chain_put_by_act +EXPORT_SYMBOL vmlinux 0x87e8e494 icmp_ndo_send +EXPORT_SYMBOL vmlinux 0x87eea5da kernel_write +EXPORT_SYMBOL vmlinux 0x87ef9d91 sock_set_keepalive +EXPORT_SYMBOL vmlinux 0x87fc4fc5 __inet_stream_connect +EXPORT_SYMBOL vmlinux 0x87fd3daa dquot_drop +EXPORT_SYMBOL vmlinux 0x88077258 skb_clone_sk +EXPORT_SYMBOL vmlinux 0x880d2b96 dm_put_device EXPORT_SYMBOL vmlinux 0x8810754a _find_first_bit -EXPORT_SYMBOL vmlinux 0x88196d25 inode_sub_bytes +EXPORT_SYMBOL vmlinux 0x88179067 blk_queue_flag_clear EXPORT_SYMBOL vmlinux 0x881bad5e phy_mipi_dphy_config_validate EXPORT_SYMBOL vmlinux 0x881c4413 gen_pool_first_fit -EXPORT_SYMBOL vmlinux 0x881f31dc pci_request_regions -EXPORT_SYMBOL vmlinux 0x8826300d param_set_invbool -EXPORT_SYMBOL vmlinux 0x883186d4 filemap_page_mkwrite -EXPORT_SYMBOL vmlinux 0x8868b02b ata_dev_printk -EXPORT_SYMBOL vmlinux 0x88698aaf mmc_wait_for_req -EXPORT_SYMBOL vmlinux 0x88718336 xp_set_rxq_info +EXPORT_SYMBOL vmlinux 0x881e5fbe dma_unmap_page_attrs +EXPORT_SYMBOL vmlinux 0x88471eee vfs_dedupe_file_range +EXPORT_SYMBOL vmlinux 0x8852a3cc pci_setup_cardbus +EXPORT_SYMBOL vmlinux 0x88658352 pci_bus_find_capability +EXPORT_SYMBOL vmlinux 0x8874e2a3 __skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x88756e29 truncate_inode_pages EXPORT_SYMBOL vmlinux 0x88822d38 unregister_blocking_lsm_notifier EXPORT_SYMBOL vmlinux 0x8888f1fe xxh32 EXPORT_SYMBOL vmlinux 0x889b1370 _raw_read_trylock -EXPORT_SYMBOL vmlinux 0x88a2a082 acpi_dev_get_next_match_dev -EXPORT_SYMBOL vmlinux 0x88a41b49 uart_unregister_driver -EXPORT_SYMBOL vmlinux 0x88a8eb10 udp_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0x88a1ea02 rproc_of_resm_mem_entry_init EXPORT_SYMBOL vmlinux 0x88abb78b ZSTD_insertBlock -EXPORT_SYMBOL vmlinux 0x88b6b13c d_obtain_alias -EXPORT_SYMBOL vmlinux 0x88c34f4b inode_newsize_ok -EXPORT_SYMBOL vmlinux 0x88ccd3aa mpage_writepage +EXPORT_SYMBOL vmlinux 0x88b21ce9 pci_unmap_rom +EXPORT_SYMBOL vmlinux 0x88b9ae2f param_ops_invbool +EXPORT_SYMBOL vmlinux 0x88c3c2c8 phy_ethtool_set_eee +EXPORT_SYMBOL vmlinux 0x88c7af5d kmem_cache_create +EXPORT_SYMBOL vmlinux 0x88ca6887 sk_page_frag_refill +EXPORT_SYMBOL vmlinux 0x88cce601 serio_open +EXPORT_SYMBOL vmlinux 0x88d0052c invalidate_bdev EXPORT_SYMBOL vmlinux 0x88db9f48 __check_object_size +EXPORT_SYMBOL vmlinux 0x88dee47e end_buffer_read_sync EXPORT_SYMBOL vmlinux 0x88e1d0f0 page_frag_free -EXPORT_SYMBOL vmlinux 0x88ef5984 truncate_inode_pages_final -EXPORT_SYMBOL vmlinux 0x88f78bdd d_rehash -EXPORT_SYMBOL vmlinux 0x88f9d95a fscrypt_ioctl_set_policy -EXPORT_SYMBOL vmlinux 0x88fca7a2 unregister_mii_tstamp_controller -EXPORT_SYMBOL vmlinux 0x8921f7d3 neigh_connected_output +EXPORT_SYMBOL vmlinux 0x88ff0aed phy_set_max_speed +EXPORT_SYMBOL vmlinux 0x8915a553 dcb_getapp EXPORT_SYMBOL vmlinux 0x89434b4b radix_tree_tag_clear EXPORT_SYMBOL vmlinux 0x8946ea72 fpsimd_context_busy -EXPORT_SYMBOL vmlinux 0x894f4725 pnp_activate_dev -EXPORT_SYMBOL vmlinux 0x89683697 devm_devfreq_unregister_opp_notifier -EXPORT_SYMBOL vmlinux 0x896ce50b ww_mutex_lock -EXPORT_SYMBOL vmlinux 0x8976f6aa netif_receive_skb_core -EXPORT_SYMBOL vmlinux 0x897a1833 netdev_update_features -EXPORT_SYMBOL vmlinux 0x897d4692 xfrm_register_type_offload -EXPORT_SYMBOL vmlinux 0x898d93d6 udp_flush_pending_frames +EXPORT_SYMBOL vmlinux 0x8947465e bio_integrity_add_page +EXPORT_SYMBOL vmlinux 0x8951630d mr_dump +EXPORT_SYMBOL vmlinux 0x8962b92c jbd2_trans_will_send_data_barrier +EXPORT_SYMBOL vmlinux 0x8976a75d xfrm_find_acq +EXPORT_SYMBOL vmlinux 0x89806e77 pci_disable_msix +EXPORT_SYMBOL vmlinux 0x8993f2d4 filemap_invalidate_unlock_two EXPORT_SYMBOL vmlinux 0x89940875 mutex_lock_interruptible -EXPORT_SYMBOL vmlinux 0x89d5732e napi_schedule_prep +EXPORT_SYMBOL vmlinux 0x899b36d7 disk_stack_limits +EXPORT_SYMBOL vmlinux 0x89c3e4b4 inet_recvmsg EXPORT_SYMBOL vmlinux 0x89d93ef7 __nla_reserve_64bit -EXPORT_SYMBOL vmlinux 0x89dd09b9 reuseport_detach_prog -EXPORT_SYMBOL vmlinux 0x8a07b8d0 pci_dev_get -EXPORT_SYMBOL vmlinux 0x8a113173 cdev_device_add -EXPORT_SYMBOL vmlinux 0x8a13ce26 dquot_get_dqblk -EXPORT_SYMBOL vmlinux 0x8a1b61c9 d_move -EXPORT_SYMBOL vmlinux 0x8a25751a get_cached_acl_rcu -EXPORT_SYMBOL vmlinux 0x8a257f50 seq_read -EXPORT_SYMBOL vmlinux 0x8a459317 vfs_get_fsid +EXPORT_SYMBOL vmlinux 0x89e80064 jbd2_journal_try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x89ea338c mnt_drop_write_file +EXPORT_SYMBOL vmlinux 0x89ede1bd cdev_del +EXPORT_SYMBOL vmlinux 0x8a1a4c51 param_ops_long +EXPORT_SYMBOL vmlinux 0x8a238300 nd_dev_to_uuid +EXPORT_SYMBOL vmlinux 0x8a29230e mmc_can_trim EXPORT_SYMBOL vmlinux 0x8a47043d LZ4_decompress_safe_continue -EXPORT_SYMBOL vmlinux 0x8a48cec7 inet_sendmsg EXPORT_SYMBOL vmlinux 0x8a490c90 rfkill_set_sw_state +EXPORT_SYMBOL vmlinux 0x8a552b99 genl_register_family +EXPORT_SYMBOL vmlinux 0x8a644144 vfs_fadvise +EXPORT_SYMBOL vmlinux 0x8a6be8e1 posix_acl_update_mode +EXPORT_SYMBOL vmlinux 0x8a6dbd1a sock_no_ioctl EXPORT_SYMBOL vmlinux 0x8a7094ba vm_brk_flags EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory -EXPORT_SYMBOL vmlinux 0x8a8a4550 blk_cleanup_disk -EXPORT_SYMBOL vmlinux 0x8a8bfbc9 security_inode_copy_up +EXPORT_SYMBOL vmlinux 0x8a81955e udp_skb_destructor +EXPORT_SYMBOL vmlinux 0x8a8795cd netlink_broadcast_filtered +EXPORT_SYMBOL vmlinux 0x8a8ab28c sock_no_socketpair EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab -EXPORT_SYMBOL vmlinux 0x8ab4a453 cdc_parse_cdc_header -EXPORT_SYMBOL vmlinux 0x8ac0caac alloc_anon_inode +EXPORT_SYMBOL vmlinux 0x8ab321ea acpi_dev_get_first_match_dev +EXPORT_SYMBOL vmlinux 0x8ab7fe9b crypto_sha256_update EXPORT_SYMBOL vmlinux 0x8ac136ae imx_sc_misc_get_control EXPORT_SYMBOL vmlinux 0x8ac3334b net_dim_get_def_rx_moderation +EXPORT_SYMBOL vmlinux 0x8ac3c492 fman_get_qman_channel_id EXPORT_SYMBOL vmlinux 0x8ac743de sg_copy_buffer +EXPORT_SYMBOL vmlinux 0x8ad26987 vme_dma_list_exec +EXPORT_SYMBOL vmlinux 0x8ad84bcb of_root EXPORT_SYMBOL vmlinux 0x8b0088d1 LZ4_decompress_safe_usingDict EXPORT_SYMBOL vmlinux 0x8b07b51d flow_block_cb_is_busy -EXPORT_SYMBOL vmlinux 0x8b13262f tegra_dfll_unregister -EXPORT_SYMBOL vmlinux 0x8b2fed4a dev_uc_flush +EXPORT_SYMBOL vmlinux 0x8b0da8ad phy_ethtool_set_link_ksettings +EXPORT_SYMBOL vmlinux 0x8b13bc78 nf_log_bind_pf +EXPORT_SYMBOL vmlinux 0x8b2cd0bc pci_bus_alloc_resource EXPORT_SYMBOL vmlinux 0x8b2ffd83 __cpu_present_mask -EXPORT_SYMBOL vmlinux 0x8b46bd44 dquot_get_next_dqblk -EXPORT_SYMBOL vmlinux 0x8b60bb28 vlan_uses_dev +EXPORT_SYMBOL vmlinux 0x8b3c9612 finish_swait EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid -EXPORT_SYMBOL vmlinux 0x8b7e7ff1 jbd2_journal_init_inode EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p +EXPORT_SYMBOL vmlinux 0x8b81e7b1 netdev_alert EXPORT_SYMBOL vmlinux 0x8b910be2 errseq_sample EXPORT_SYMBOL vmlinux 0x8b989cf9 acpi_bus_can_wakeup EXPORT_SYMBOL vmlinux 0x8b9ea582 ZSTD_copyDCtx -EXPORT_SYMBOL vmlinux 0x8ba19254 __dev_direct_xmit -EXPORT_SYMBOL vmlinux 0x8bb55dac fb_set_cmap -EXPORT_SYMBOL vmlinux 0x8bba0fe1 neigh_lookup -EXPORT_SYMBOL vmlinux 0x8bc4df13 mmc_set_data_timeout -EXPORT_SYMBOL vmlinux 0x8bc8f34e pipe_unlock +EXPORT_SYMBOL vmlinux 0x8bb831a9 simple_get_link +EXPORT_SYMBOL vmlinux 0x8bd24560 __post_watch_notification +EXPORT_SYMBOL vmlinux 0x8bd43ffb scsi_host_lookup +EXPORT_SYMBOL vmlinux 0x8bdac7bc devm_nvmem_unregister +EXPORT_SYMBOL vmlinux 0x8bdfef4b request_firmware EXPORT_SYMBOL vmlinux 0x8be189ab ucc_slow_disable -EXPORT_SYMBOL vmlinux 0x8bfd904a tty_unregister_ldisc -EXPORT_SYMBOL vmlinux 0x8c0c2101 __vlan_find_dev_deep_rcu -EXPORT_SYMBOL vmlinux 0x8c0d7914 __module_get -EXPORT_SYMBOL vmlinux 0x8c0d8879 brioctl_set -EXPORT_SYMBOL vmlinux 0x8c1d0a8f mmput_async +EXPORT_SYMBOL vmlinux 0x8be7ee7f mroute6_is_socket +EXPORT_SYMBOL vmlinux 0x8c005a5e mipi_dsi_dcs_set_display_on +EXPORT_SYMBOL vmlinux 0x8c0e722b of_match_node +EXPORT_SYMBOL vmlinux 0x8c0f15a8 pcie_port_service_unregister EXPORT_SYMBOL vmlinux 0x8c26d495 prepare_to_wait_event -EXPORT_SYMBOL vmlinux 0x8c2dac3f register_nexthop_notifier -EXPORT_SYMBOL vmlinux 0x8c303dce __mdiobus_register -EXPORT_SYMBOL vmlinux 0x8c3f8cc7 put_cmsg -EXPORT_SYMBOL vmlinux 0x8c4d005d bio_free_pages -EXPORT_SYMBOL vmlinux 0x8c584f59 xsk_get_pool_from_qid -EXPORT_SYMBOL vmlinux 0x8c5e80b7 eth_type_trans +EXPORT_SYMBOL vmlinux 0x8c4337c3 jbd2_journal_submit_inode_data_buffers +EXPORT_SYMBOL vmlinux 0x8c512f5a pipe_lock +EXPORT_SYMBOL vmlinux 0x8c5ad826 phy_do_ioctl +EXPORT_SYMBOL vmlinux 0x8c63ef6a tcf_unregister_action EXPORT_SYMBOL vmlinux 0x8c683fcd posix_acl_to_xattr -EXPORT_SYMBOL vmlinux 0x8c689945 __skb_pad +EXPORT_SYMBOL vmlinux 0x8c6b47d0 inetdev_by_index +EXPORT_SYMBOL vmlinux 0x8c812d41 fuse_dequeue_forget EXPORT_SYMBOL vmlinux 0x8c8569cb kstrtoint -EXPORT_SYMBOL vmlinux 0x8c900db2 max8998_update_reg -EXPORT_SYMBOL vmlinux 0x8c968977 km_policy_expired EXPORT_SYMBOL vmlinux 0x8c9e338f acpi_bios_error EXPORT_SYMBOL vmlinux 0x8caf9305 uuid_is_valid -EXPORT_SYMBOL vmlinux 0x8cb277a4 unload_nls -EXPORT_SYMBOL vmlinux 0x8cc08e96 __page_cache_alloc -EXPORT_SYMBOL vmlinux 0x8cc3de2d md_write_end EXPORT_SYMBOL vmlinux 0x8cc53d20 __par_io_config_pin -EXPORT_SYMBOL vmlinux 0x8cd9984e pci_read_vpd +EXPORT_SYMBOL vmlinux 0x8cd89ff3 dev_queue_xmit EXPORT_SYMBOL vmlinux 0x8cda8029 xen_clear_irq_pending -EXPORT_SYMBOL vmlinux 0x8cdee113 proto_register -EXPORT_SYMBOL vmlinux 0x8cef293a dst_release -EXPORT_SYMBOL vmlinux 0x8ceff191 fixed_size_llseek -EXPORT_SYMBOL vmlinux 0x8cf0f486 vme_dma_request -EXPORT_SYMBOL vmlinux 0x8d0b034b of_graph_get_remote_port_parent -EXPORT_SYMBOL vmlinux 0x8d1dfdfd clocksource_unregister -EXPORT_SYMBOL vmlinux 0x8d232bf5 filemap_flush -EXPORT_SYMBOL vmlinux 0x8d24703f tcp_parse_options +EXPORT_SYMBOL vmlinux 0x8ce1d4dd pci_enable_wake +EXPORT_SYMBOL vmlinux 0x8d07c956 request_key_rcu +EXPORT_SYMBOL vmlinux 0x8d284468 vme_irq_handler +EXPORT_SYMBOL vmlinux 0x8d295bb2 tcf_em_tree_destroy +EXPORT_SYMBOL vmlinux 0x8d2d7705 kill_pid EXPORT_SYMBOL vmlinux 0x8d4112df qcom_scm_mem_protect_video_var -EXPORT_SYMBOL vmlinux 0x8d4722ae genl_register_family EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq -EXPORT_SYMBOL vmlinux 0x8d67b314 seq_open_private EXPORT_SYMBOL vmlinux 0x8d73278e hex_asc_upper +EXPORT_SYMBOL vmlinux 0x8d87ad0a xfrm_policy_walk_done +EXPORT_SYMBOL vmlinux 0x8d9b409f netif_rx +EXPORT_SYMBOL vmlinux 0x8d9c7d44 gro_find_receive_by_type EXPORT_SYMBOL vmlinux 0x8d9ca0e6 dma_fence_enable_sw_signaling EXPORT_SYMBOL vmlinux 0x8da6585d __stack_chk_fail EXPORT_SYMBOL vmlinux 0x8daedb79 cpumask_any_but -EXPORT_SYMBOL vmlinux 0x8db23ade udp_gro_complete -EXPORT_SYMBOL vmlinux 0x8db3c9e4 __block_write_begin -EXPORT_SYMBOL vmlinux 0x8db87410 t10_pi_type1_crc -EXPORT_SYMBOL vmlinux 0x8dcdb8e7 param_set_copystring +EXPORT_SYMBOL vmlinux 0x8dafe619 __getblk_gfp EXPORT_SYMBOL vmlinux 0x8ddd8aad schedule_timeout EXPORT_SYMBOL vmlinux 0x8df4afd9 qe_put_snum EXPORT_SYMBOL vmlinux 0x8df92f66 memchr_inv -EXPORT_SYMBOL vmlinux 0x8df9c30c backlight_device_set_brightness EXPORT_SYMBOL vmlinux 0x8df9dd10 guid_null -EXPORT_SYMBOL vmlinux 0x8dfe2ad5 vfs_link -EXPORT_SYMBOL vmlinux 0x8e0870dd pci_irq_vector -EXPORT_SYMBOL vmlinux 0x8e08be20 input_mt_get_slot_by_key +EXPORT_SYMBOL vmlinux 0x8e0d7aec devm_devfreq_remove_device EXPORT_SYMBOL vmlinux 0x8e17b3ae idr_destroy -EXPORT_SYMBOL vmlinux 0x8e1f12b0 input_get_poll_interval +EXPORT_SYMBOL vmlinux 0x8e1c8f69 pm860x_page_reg_write +EXPORT_SYMBOL vmlinux 0x8e1d210b d_tmpfile EXPORT_SYMBOL vmlinux 0x8e21c9a1 dma_fence_add_callback -EXPORT_SYMBOL vmlinux 0x8e331ce3 pci_enable_device_io +EXPORT_SYMBOL vmlinux 0x8e300c85 netdev_notice +EXPORT_SYMBOL vmlinux 0x8e38aad3 mmc_of_parse_clk_phase +EXPORT_SYMBOL vmlinux 0x8e3e0f7d fault_in_readable +EXPORT_SYMBOL vmlinux 0x8e4090ac sock_no_sendmsg_locked +EXPORT_SYMBOL vmlinux 0x8e4b83b3 super_setup_bdi EXPORT_SYMBOL vmlinux 0x8e4c60a3 cpm_muram_dma -EXPORT_SYMBOL vmlinux 0x8e6fb9bd __getblk_gfp -EXPORT_SYMBOL vmlinux 0x8e700049 alloc_skb_with_frags -EXPORT_SYMBOL vmlinux 0x8e7b2448 jbd2_journal_set_features -EXPORT_SYMBOL vmlinux 0x8e802094 xfrm_policy_bysel_ctx +EXPORT_SYMBOL vmlinux 0x8e5e17c6 mntget EXPORT_SYMBOL vmlinux 0x8e93bd24 security_secctx_to_secid -EXPORT_SYMBOL vmlinux 0x8eb4749d vme_new_dma_list -EXPORT_SYMBOL vmlinux 0x8edf5d59 remove_proc_subtree -EXPORT_SYMBOL vmlinux 0x8ef44de9 __scsi_device_lookup_by_target -EXPORT_SYMBOL vmlinux 0x8ef79b57 padata_set_cpumask +EXPORT_SYMBOL vmlinux 0x8e97747b inet_bind +EXPORT_SYMBOL vmlinux 0x8eb92302 reuseport_select_sock +EXPORT_SYMBOL vmlinux 0x8ec81094 tcp_shutdown +EXPORT_SYMBOL vmlinux 0x8ecbec89 scsi_device_resume +EXPORT_SYMBOL vmlinux 0x8ef68c02 mdio_device_create EXPORT_SYMBOL vmlinux 0x8f01afd6 twl6030_interrupt_mask -EXPORT_SYMBOL vmlinux 0x8f15c112 of_graph_get_remote_port -EXPORT_SYMBOL vmlinux 0x8f2c3483 d_mark_dontcache -EXPORT_SYMBOL vmlinux 0x8f44f672 dm_table_run_md_queue_async -EXPORT_SYMBOL vmlinux 0x8f4766ee mii_ethtool_set_link_ksettings -EXPORT_SYMBOL vmlinux 0x8f803f59 tty_kref_put -EXPORT_SYMBOL vmlinux 0x8f94832a blk_mq_start_request -EXPORT_SYMBOL vmlinux 0x8f96e9e3 serio_unregister_child_port -EXPORT_SYMBOL vmlinux 0x8f98db48 qdisc_warn_nonwc +EXPORT_SYMBOL vmlinux 0x8f35597a qman_start_using_portal +EXPORT_SYMBOL vmlinux 0x8f7d3e7b rproc_coredump_set_elf_info +EXPORT_SYMBOL vmlinux 0x8f856f66 f_setown EXPORT_SYMBOL vmlinux 0x8f996a30 ethtool_convert_legacy_u32_to_link_mode -EXPORT_SYMBOL vmlinux 0x8f9b0a26 dev_graft_qdisc EXPORT_SYMBOL vmlinux 0x8fa25c24 xa_find -EXPORT_SYMBOL vmlinux 0x8fc25431 ata_std_end_eh +EXPORT_SYMBOL vmlinux 0x8fb2ab7e fman_register_intr +EXPORT_SYMBOL vmlinux 0x8fb58351 no_llseek +EXPORT_SYMBOL vmlinux 0x8fb8bec4 xfrm_user_policy +EXPORT_SYMBOL vmlinux 0x8fc49c9c may_umount EXPORT_SYMBOL vmlinux 0x8fc9ea11 fman_port_cfg_buf_prefix_content +EXPORT_SYMBOL vmlinux 0x8fd0a328 acpi_bus_get_status EXPORT_SYMBOL vmlinux 0x8fd180e7 kernel_neon_begin EXPORT_SYMBOL vmlinux 0x8fda6a7f __next_node_in EXPORT_SYMBOL vmlinux 0x8fdb0752 abort_creds +EXPORT_SYMBOL vmlinux 0x8fdda8f3 page_pool_create EXPORT_SYMBOL vmlinux 0x8ff89ed0 seg6_hmac_exit -EXPORT_SYMBOL vmlinux 0x8ffe0bf4 udp_poll EXPORT_SYMBOL vmlinux 0x90006be6 dm_kcopyd_client_flush -EXPORT_SYMBOL vmlinux 0x90171edf inet6_protos +EXPORT_SYMBOL vmlinux 0x9006340e tcp_sendmsg +EXPORT_SYMBOL vmlinux 0x901d2c4f inet_frags_fini +EXPORT_SYMBOL vmlinux 0x90280ed3 __register_nls EXPORT_SYMBOL vmlinux 0x902d8722 vme_slave_get EXPORT_SYMBOL vmlinux 0x902f5199 cpumask_next_wrap EXPORT_SYMBOL vmlinux 0x9034a696 mempool_destroy -EXPORT_SYMBOL vmlinux 0x903b22a2 xsk_clear_rx_need_wakeup -EXPORT_SYMBOL vmlinux 0x905309b8 tegra_ivc_notified +EXPORT_SYMBOL vmlinux 0x904de714 unpin_user_page EXPORT_SYMBOL vmlinux 0x905695ab sg_copy_from_buffer EXPORT_SYMBOL vmlinux 0x90576ec4 vmemdup_user -EXPORT_SYMBOL vmlinux 0x905834be thermal_cdev_update -EXPORT_SYMBOL vmlinux 0x90598224 security_inode_listsecurity -EXPORT_SYMBOL vmlinux 0x907a6c31 inet_release +EXPORT_SYMBOL vmlinux 0x905ec15a prepare_to_swait_exclusive +EXPORT_SYMBOL vmlinux 0x90653dde phy_get_eee_err EXPORT_SYMBOL vmlinux 0x907ea00e set_security_override -EXPORT_SYMBOL vmlinux 0x909c156c xfrm_policy_hash_rebuild -EXPORT_SYMBOL vmlinux 0x909f8e1b pci_free_irq -EXPORT_SYMBOL vmlinux 0x90cc44c6 thermal_zone_device_critical -EXPORT_SYMBOL vmlinux 0x90d29fb2 skb_unlink +EXPORT_SYMBOL vmlinux 0x908eb380 fb_get_buffer_offset +EXPORT_SYMBOL vmlinux 0x90927462 phy_register_fixup_for_uid +EXPORT_SYMBOL vmlinux 0x90a2043d generic_perform_write +EXPORT_SYMBOL vmlinux 0x90a4e4ba fb_set_var +EXPORT_SYMBOL vmlinux 0x90ad7945 devfreq_update_target +EXPORT_SYMBOL vmlinux 0x90cc56a2 inet_csk_clear_xmit_timers +EXPORT_SYMBOL vmlinux 0x90da25c4 of_count_phandle_with_args EXPORT_SYMBOL vmlinux 0x90e273e2 cred_fscmp -EXPORT_SYMBOL vmlinux 0x90f535ec mnt_set_expiry -EXPORT_SYMBOL vmlinux 0x90ff5fa8 sock_no_sendmsg_locked EXPORT_SYMBOL vmlinux 0x9114b616 __xa_alloc -EXPORT_SYMBOL vmlinux 0x911ebfb5 wait_for_key_construction -EXPORT_SYMBOL vmlinux 0x912e6ba0 lookup_one_len_unlocked -EXPORT_SYMBOL vmlinux 0x9137c8ab tty_wait_until_sent -EXPORT_SYMBOL vmlinux 0x9144f8c5 devm_clk_hw_register_clkdev -EXPORT_SYMBOL vmlinux 0x9156ea30 handle_edge_irq -EXPORT_SYMBOL vmlinux 0x9162d18d flow_block_cb_lookup +EXPORT_SYMBOL vmlinux 0x911c7204 empty_aops +EXPORT_SYMBOL vmlinux 0x911cec08 sock_set_priority +EXPORT_SYMBOL vmlinux 0x91238921 bprm_change_interp +EXPORT_SYMBOL vmlinux 0x9129746f xfrm_input_register_afinfo +EXPORT_SYMBOL vmlinux 0x912af700 d_mark_dontcache +EXPORT_SYMBOL vmlinux 0x912efa17 fscrypt_put_encryption_info +EXPORT_SYMBOL vmlinux 0x9134d602 scsi_device_lookup EXPORT_SYMBOL vmlinux 0x9166fada strncpy -EXPORT_SYMBOL vmlinux 0x916a6a68 xfrm_user_policy -EXPORT_SYMBOL vmlinux 0x916fc5fd inet_add_protocol +EXPORT_SYMBOL vmlinux 0x916abf80 dcache_readdir +EXPORT_SYMBOL vmlinux 0x917de79a proto_unregister EXPORT_SYMBOL vmlinux 0x919c58f3 __clzsi2 EXPORT_SYMBOL vmlinux 0x91a488ac __netdev_alloc_frag_align -EXPORT_SYMBOL vmlinux 0x91a55f16 md_bitmap_cond_end_sync -EXPORT_SYMBOL vmlinux 0x91a656c7 skb_copy_datagram_iter +EXPORT_SYMBOL vmlinux 0x91a4df2f xsk_tx_peek_desc EXPORT_SYMBOL vmlinux 0x91a7b1da qdisc_class_hash_remove -EXPORT_SYMBOL vmlinux 0x91b47469 security_path_rename -EXPORT_SYMBOL vmlinux 0x91b83a0a xfrm_state_walk_done EXPORT_SYMBOL vmlinux 0x91c0980e icst_hz -EXPORT_SYMBOL vmlinux 0x91c30e82 csum_and_copy_from_iter -EXPORT_SYMBOL vmlinux 0x91c565fa ipv6_skip_exthdr -EXPORT_SYMBOL vmlinux 0x91cee818 copy_string_kernel -EXPORT_SYMBOL vmlinux 0x91ea2a80 i2c_del_adapter +EXPORT_SYMBOL vmlinux 0x91c87b21 deactivate_super +EXPORT_SYMBOL vmlinux 0x91e65aca neigh_carrier_down EXPORT_SYMBOL vmlinux 0x91f44510 idr_alloc_cyclic EXPORT_SYMBOL vmlinux 0x91f68ea1 __hw_addr_sync -EXPORT_SYMBOL vmlinux 0x91f9aff8 pcie_relaxed_ordering_enabled -EXPORT_SYMBOL vmlinux 0x921e347e skb_expand_head +EXPORT_SYMBOL vmlinux 0x92069f03 default_qdisc_ops +EXPORT_SYMBOL vmlinux 0x922b4fe7 dquot_acquire EXPORT_SYMBOL vmlinux 0x922f45a6 __bitmap_clear EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get -EXPORT_SYMBOL vmlinux 0x923c05da request_partial_firmware_into_buf +EXPORT_SYMBOL vmlinux 0x923d243d sock_pfree +EXPORT_SYMBOL vmlinux 0x924e43bb sync_filesystem +EXPORT_SYMBOL vmlinux 0x9253811f ppp_input EXPORT_SYMBOL vmlinux 0x92540fbf finish_wait -EXPORT_SYMBOL vmlinux 0x925787c8 dcbnl_ieee_notify +EXPORT_SYMBOL vmlinux 0x92581de3 pin_user_pages EXPORT_SYMBOL vmlinux 0x9258c776 hdmi_vendor_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0x925a2fcc flow_rule_match_ip -EXPORT_SYMBOL vmlinux 0x925baf5a scsi_track_queue_full +EXPORT_SYMBOL vmlinux 0x92682848 param_get_bool +EXPORT_SYMBOL vmlinux 0x92706616 pci_get_subsys EXPORT_SYMBOL vmlinux 0x92774cf8 __kfence_pool EXPORT_SYMBOL vmlinux 0x9291cd3b memdup_user EXPORT_SYMBOL vmlinux 0x92997ed8 _printk -EXPORT_SYMBOL vmlinux 0x92a5e8a3 __sk_dst_check -EXPORT_SYMBOL vmlinux 0x92b26e66 block_truncate_page +EXPORT_SYMBOL vmlinux 0x929cc27e skb_find_text +EXPORT_SYMBOL vmlinux 0x929ec6ca mipi_dsi_dcs_set_tear_scanline +EXPORT_SYMBOL vmlinux 0x92a5068a phy_reset_after_clk_enable +EXPORT_SYMBOL vmlinux 0x92b06561 of_graph_get_next_endpoint EXPORT_SYMBOL vmlinux 0x92b99a33 acpi_put_table EXPORT_SYMBOL vmlinux 0x92b9b180 slash_name -EXPORT_SYMBOL vmlinux 0x92c22a94 mark_page_accessed +EXPORT_SYMBOL vmlinux 0x92ba26e6 fb_firmware_edid +EXPORT_SYMBOL vmlinux 0x92ba6def file_modified +EXPORT_SYMBOL vmlinux 0x92bbc6a4 n_tty_ioctl_helper +EXPORT_SYMBOL vmlinux 0x92bd913e ata_link_printk EXPORT_SYMBOL vmlinux 0x92d5838e request_threaded_irq -EXPORT_SYMBOL vmlinux 0x92d9fa45 vga_remove_vgacon -EXPORT_SYMBOL vmlinux 0x92df49f2 tegra_ivc_read_advance +EXPORT_SYMBOL vmlinux 0x92d681ba netdev_lower_get_next +EXPORT_SYMBOL vmlinux 0x92da2bf1 noop_qdisc EXPORT_SYMBOL vmlinux 0x92e683f5 down_timeout EXPORT_SYMBOL vmlinux 0x92ec510d jiffies64_to_msecs -EXPORT_SYMBOL vmlinux 0x92eed740 unregister_qdisc -EXPORT_SYMBOL vmlinux 0x92f0924f phy_aneg_done +EXPORT_SYMBOL vmlinux 0x92f885d0 blackhole_netdev EXPORT_SYMBOL vmlinux 0x92fa5abb vme_lm_detach -EXPORT_SYMBOL vmlinux 0x9300f449 skb_vlan_pop EXPORT_SYMBOL vmlinux 0x93022ba6 __scsi_format_command -EXPORT_SYMBOL vmlinux 0x9305c8ff simple_unlink EXPORT_SYMBOL vmlinux 0x9305f8e6 cpufreq_get -EXPORT_SYMBOL vmlinux 0x930dd482 xfrm_unregister_type -EXPORT_SYMBOL vmlinux 0x9318f2fe tty_port_destroy -EXPORT_SYMBOL vmlinux 0x931cd6db skb_tunnel_check_pmtu -EXPORT_SYMBOL vmlinux 0x9322a7b4 fscrypt_has_permitted_context -EXPORT_SYMBOL vmlinux 0x932720c3 put_fs_context -EXPORT_SYMBOL vmlinux 0x93368c7c __hw_addr_ref_sync_dev -EXPORT_SYMBOL vmlinux 0x93451949 blk_mq_stop_hw_queues -EXPORT_SYMBOL vmlinux 0x935a941e skb_store_bits -EXPORT_SYMBOL vmlinux 0x9363e069 register_mii_timestamper -EXPORT_SYMBOL vmlinux 0x9366136c do_clone_file_range -EXPORT_SYMBOL vmlinux 0x937463cf vme_register_error_handler -EXPORT_SYMBOL vmlinux 0x937716f0 devfreq_resume_device +EXPORT_SYMBOL vmlinux 0x93371a1f d_alloc_parallel +EXPORT_SYMBOL vmlinux 0x933b7841 xsk_set_tx_need_wakeup +EXPORT_SYMBOL vmlinux 0x933e9ac1 config_item_get +EXPORT_SYMBOL vmlinux 0x933f82c4 generic_setlease EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid -EXPORT_SYMBOL vmlinux 0x93782827 mdiobus_read_nested -EXPORT_SYMBOL vmlinux 0x9388e794 simple_empty -EXPORT_SYMBOL vmlinux 0x93a2a5fb i2c_smbus_read_block_data +EXPORT_SYMBOL vmlinux 0x9378dea0 rproc_del +EXPORT_SYMBOL vmlinux 0x9389d51e __scm_destroy EXPORT_SYMBOL vmlinux 0x93a6e0b2 io_schedule +EXPORT_SYMBOL vmlinux 0x93b3bdf4 dcb_ieee_getapp_mask EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier -EXPORT_SYMBOL vmlinux 0x93ce43f8 bio_integrity_trim +EXPORT_SYMBOL vmlinux 0x93c59abe file_check_and_advance_wb_err +EXPORT_SYMBOL vmlinux 0x93c71366 get_tz_trend +EXPORT_SYMBOL vmlinux 0x93ce51ad rproc_boot EXPORT_SYMBOL vmlinux 0x93d6dd8c complete_all -EXPORT_SYMBOL vmlinux 0x93eb6c7f page_cache_next_miss +EXPORT_SYMBOL vmlinux 0x93dad543 dev_addr_init EXPORT_SYMBOL vmlinux 0x93f12561 nla_put -EXPORT_SYMBOL vmlinux 0x93f18dab of_node_get -EXPORT_SYMBOL vmlinux 0x94004570 rproc_report_crash -EXPORT_SYMBOL vmlinux 0x940496ca pci_request_regions_exclusive -EXPORT_SYMBOL vmlinux 0x940f5d4e dev_load +EXPORT_SYMBOL vmlinux 0x93f632b4 dm_table_get_size +EXPORT_SYMBOL vmlinux 0x93fa9425 mipi_dsi_shutdown_peripheral +EXPORT_SYMBOL vmlinux 0x940d8d0c vga_remove_vgacon EXPORT_SYMBOL vmlinux 0x9428f816 dim_turn +EXPORT_SYMBOL vmlinux 0x942991d1 input_mt_sync_frame EXPORT_SYMBOL vmlinux 0x944375db _totalram_pages -EXPORT_SYMBOL vmlinux 0x94461269 tcp_rcv_state_process +EXPORT_SYMBOL vmlinux 0x94443b60 scsi_scan_target +EXPORT_SYMBOL vmlinux 0x9445db80 ethtool_virtdev_set_link_ksettings EXPORT_SYMBOL vmlinux 0x944a564d is_console_locked -EXPORT_SYMBOL vmlinux 0x94540c08 gro_find_complete_by_type -EXPORT_SYMBOL vmlinux 0x94554160 register_console -EXPORT_SYMBOL vmlinux 0x947be06b close_fd_get_file EXPORT_SYMBOL vmlinux 0x9487d3e1 ns_capable -EXPORT_SYMBOL vmlinux 0x948e9a1b param_ops_short -EXPORT_SYMBOL vmlinux 0x94944a93 mmc_of_parse_voltage +EXPORT_SYMBOL vmlinux 0x94940572 __skb_checksum EXPORT_SYMBOL vmlinux 0x94961283 vunmap +EXPORT_SYMBOL vmlinux 0x94a1b77f eth_header_cache_update +EXPORT_SYMBOL vmlinux 0x94a4a7f2 in6_dev_finish_destroy EXPORT_SYMBOL vmlinux 0x94bb7ec3 gen_pool_dma_zalloc_algo -EXPORT_SYMBOL vmlinux 0x94bbea41 inet_frag_reasm_prepare EXPORT_SYMBOL vmlinux 0x94bf03ca utf8_to_utf32 -EXPORT_SYMBOL vmlinux 0x94c3973f tty_port_hangup -EXPORT_SYMBOL vmlinux 0x94cead09 xfrm_state_add -EXPORT_SYMBOL vmlinux 0x94cf4cbd md_finish_reshape -EXPORT_SYMBOL vmlinux 0x94d91b3f bprm_change_interp +EXPORT_SYMBOL vmlinux 0x94c284eb blk_queue_bounce_limit +EXPORT_SYMBOL vmlinux 0x94d3e136 netdev_bind_sb_channel_queue +EXPORT_SYMBOL vmlinux 0x94e0e252 frontswap_register_ops EXPORT_SYMBOL vmlinux 0x94e50ad4 call_fib_notifier -EXPORT_SYMBOL vmlinux 0x94f495e0 xfrm6_rcv_tnl +EXPORT_SYMBOL vmlinux 0x94e8687b mdiobus_setup_mdiodev_from_board_info EXPORT_SYMBOL vmlinux 0x94fc8d93 smp_call_function_many -EXPORT_SYMBOL vmlinux 0x94fcc909 get_thermal_instance EXPORT_SYMBOL vmlinux 0x9507c90f copy_fsxattr_to_user -EXPORT_SYMBOL vmlinux 0x9530c119 blk_put_request -EXPORT_SYMBOL vmlinux 0x953d7eca __ip_dev_find +EXPORT_SYMBOL vmlinux 0x95085f15 mipi_dsi_dcs_write_buffer +EXPORT_SYMBOL vmlinux 0x95233191 tcp_sock_set_quickack +EXPORT_SYMBOL vmlinux 0x9535e7e1 fs_context_for_mount +EXPORT_SYMBOL vmlinux 0x954c02c8 generic_key_instantiate EXPORT_SYMBOL vmlinux 0x954cef6f init_on_alloc EXPORT_SYMBOL vmlinux 0x954f099c idr_preload -EXPORT_SYMBOL vmlinux 0x956c0bc7 security_sock_rcv_skb -EXPORT_SYMBOL vmlinux 0x9590924e sk_stop_timer +EXPORT_SYMBOL vmlinux 0x9551b692 __page_frag_cache_drain +EXPORT_SYMBOL vmlinux 0x956e3566 vme_master_request EXPORT_SYMBOL vmlinux 0x95a67b07 udp_table -EXPORT_SYMBOL vmlinux 0x95ac43fe dev_set_promiscuity -EXPORT_SYMBOL vmlinux 0x95bcb5c8 ip_fraglist_init -EXPORT_SYMBOL vmlinux 0x95cba75f pcie_set_mps -EXPORT_SYMBOL vmlinux 0x95dc145f generic_splice_sendpage -EXPORT_SYMBOL vmlinux 0x95f47aa5 wireless_send_event -EXPORT_SYMBOL vmlinux 0x960bac2f jbd2_wait_inode_data -EXPORT_SYMBOL vmlinux 0x96644e89 d_make_root +EXPORT_SYMBOL vmlinux 0x9601413c mdio_find_bus +EXPORT_SYMBOL vmlinux 0x9633b577 md_bitmap_close_sync +EXPORT_SYMBOL vmlinux 0x964bb2f9 of_find_node_with_property +EXPORT_SYMBOL vmlinux 0x966f5a3b __scsi_add_device EXPORT_SYMBOL vmlinux 0x96848186 scnprintf -EXPORT_SYMBOL vmlinux 0x968665af tcp_release_cb EXPORT_SYMBOL vmlinux 0x9688de8b memstart_addr +EXPORT_SYMBOL vmlinux 0x96957e68 current_in_userns EXPORT_SYMBOL vmlinux 0x96b29254 strncasecmp -EXPORT_SYMBOL vmlinux 0x96b6284f of_get_next_parent EXPORT_SYMBOL vmlinux 0x96c17136 fb_var_to_videomode EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string +EXPORT_SYMBOL vmlinux 0x96e3221b skb_checksum_trimmed EXPORT_SYMBOL vmlinux 0x96e5d30f gen_pool_set_algo -EXPORT_SYMBOL vmlinux 0x96f186c7 tcp_conn_request +EXPORT_SYMBOL vmlinux 0x96f1fc68 rawv6_mh_filter_register EXPORT_SYMBOL vmlinux 0x96fab350 dim_park_on_top +EXPORT_SYMBOL vmlinux 0x96fca70b dquot_set_dqinfo +EXPORT_SYMBOL vmlinux 0x970d0d86 flow_rule_match_enc_control +EXPORT_SYMBOL vmlinux 0x971a666e devfreq_register_notifier +EXPORT_SYMBOL vmlinux 0x97326ec6 tcp_filter +EXPORT_SYMBOL vmlinux 0x97395a0b __inet_hash +EXPORT_SYMBOL vmlinux 0x973b3f7c find_inode_nowait +EXPORT_SYMBOL vmlinux 0x973cda4c phy_write_mmd EXPORT_SYMBOL vmlinux 0x973fa82e register_acpi_notifier -EXPORT_SYMBOL vmlinux 0x9740d644 dev_addr_flush +EXPORT_SYMBOL vmlinux 0x97416bd3 dev_pm_opp_register_notifier EXPORT_SYMBOL vmlinux 0x9746eb89 ZSTD_decompressBegin_usingDict -EXPORT_SYMBOL vmlinux 0x978ac5b3 remove_watch_from_object +EXPORT_SYMBOL vmlinux 0x97558bc0 devm_request_threaded_irq +EXPORT_SYMBOL vmlinux 0x97600797 super_setup_bdi_name EXPORT_SYMBOL vmlinux 0x97934ecf del_timer_sync +EXPORT_SYMBOL vmlinux 0x979d21ec bio_integrity_prep EXPORT_SYMBOL vmlinux 0x97a57333 crc_t10dif_update EXPORT_SYMBOL vmlinux 0x97adb487 utf8s_to_utf16s -EXPORT_SYMBOL vmlinux 0x97b1017a migrate_vma_pages -EXPORT_SYMBOL vmlinux 0x97b2470a tcp_sock_set_keepidle -EXPORT_SYMBOL vmlinux 0x97b422f2 sdev_disable_disk_events -EXPORT_SYMBOL vmlinux 0x97b8f532 truncate_setsize -EXPORT_SYMBOL vmlinux 0x97bc9951 genphy_setup_forced +EXPORT_SYMBOL vmlinux 0x97b5ec29 dev_addr_del EXPORT_SYMBOL vmlinux 0x97bdfa60 scsi_dev_info_remove_list -EXPORT_SYMBOL vmlinux 0x97e23b82 mmc_erase +EXPORT_SYMBOL vmlinux 0x97ce3278 kthread_destroy_worker +EXPORT_SYMBOL vmlinux 0x97e0f6d2 ipv6_chk_addr_and_flags EXPORT_SYMBOL vmlinux 0x97e2789a commit_creds -EXPORT_SYMBOL vmlinux 0x97e28210 tegra_dfll_runtime_resume +EXPORT_SYMBOL vmlinux 0x97e9b657 security_sb_set_mnt_opts +EXPORT_SYMBOL vmlinux 0x97ebc35c iov_iter_init EXPORT_SYMBOL vmlinux 0x97ed2212 __tracepoint_spi_transfer_start -EXPORT_SYMBOL vmlinux 0x97fb27f6 dma_sync_sg_for_device -EXPORT_SYMBOL vmlinux 0x981e849e pci_free_irq_vectors -EXPORT_SYMBOL vmlinux 0x98217a2a cookie_timestamp_decode +EXPORT_SYMBOL vmlinux 0x97f0b4db user_path_create +EXPORT_SYMBOL vmlinux 0x9800d9a9 ip_route_input_noref +EXPORT_SYMBOL vmlinux 0x98220f54 qdisc_watchdog_schedule_range_ns EXPORT_SYMBOL vmlinux 0x9829fc11 __kfifo_out_peek_r EXPORT_SYMBOL vmlinux 0x982bcde4 __cpu_dying_mask -EXPORT_SYMBOL vmlinux 0x982f065f iommu_dma_get_resv_regions -EXPORT_SYMBOL vmlinux 0x98309b82 __test_set_page_writeback -EXPORT_SYMBOL vmlinux 0x98405054 devm_ioport_unmap -EXPORT_SYMBOL vmlinux 0x985614f9 ipv6_chk_addr_and_flags -EXPORT_SYMBOL vmlinux 0x9866aa7d irq_domain_set_info -EXPORT_SYMBOL vmlinux 0x986bf37c rt6_lookup -EXPORT_SYMBOL vmlinux 0x986ea92c pci_find_resource -EXPORT_SYMBOL vmlinux 0x989d5cae d_alloc_anon -EXPORT_SYMBOL vmlinux 0x989dfe66 dev_addr_add -EXPORT_SYMBOL vmlinux 0x98a43f8b fs_lookup_param -EXPORT_SYMBOL vmlinux 0x98ae7416 bpf_prog_get_type_path -EXPORT_SYMBOL vmlinux 0x98bebf3f simple_open +EXPORT_SYMBOL vmlinux 0x9848fc33 devm_backlight_device_register +EXPORT_SYMBOL vmlinux 0x9867bf66 param_set_short +EXPORT_SYMBOL vmlinux 0x98756bf6 copy_highpage +EXPORT_SYMBOL vmlinux 0x98ae67bf seg6_hmac_info_add EXPORT_SYMBOL vmlinux 0x98c039dc dma_fence_wait_timeout EXPORT_SYMBOL vmlinux 0x98c89ade security_xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x98caba38 sock_set_reuseport EXPORT_SYMBOL vmlinux 0x98cf60b3 strlen -EXPORT_SYMBOL vmlinux 0x98d616b4 input_set_poll_interval +EXPORT_SYMBOL vmlinux 0x98d8e418 phy_aneg_done +EXPORT_SYMBOL vmlinux 0x98e3681b write_inode_now EXPORT_SYMBOL vmlinux 0x98e508ef ignore_console_lock_warning -EXPORT_SYMBOL vmlinux 0x98e56ea1 bio_uninit -EXPORT_SYMBOL vmlinux 0x98ecab49 d_instantiate_anon +EXPORT_SYMBOL vmlinux 0x98ef512d phy_queue_state_machine +EXPORT_SYMBOL vmlinux 0x98fab82a dma_async_device_register +EXPORT_SYMBOL vmlinux 0x9903802a mipi_dsi_host_register EXPORT_SYMBOL vmlinux 0x99094fb2 qcom_scm_is_available -EXPORT_SYMBOL vmlinux 0x990ab3e7 security_inode_notifysecctx -EXPORT_SYMBOL vmlinux 0x990bd9e8 tcf_get_next_chain -EXPORT_SYMBOL vmlinux 0x9919d80e netpoll_parse_options -EXPORT_SYMBOL vmlinux 0x991df8d9 mmc_retune_release +EXPORT_SYMBOL vmlinux 0x99137c1f sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0x99262030 sock_no_getname +EXPORT_SYMBOL vmlinux 0x99264a70 dst_init EXPORT_SYMBOL vmlinux 0x9931f8c9 qcom_scm_lmh_dcvsh_available EXPORT_SYMBOL vmlinux 0x9939eba0 backlight_unregister_notifier -EXPORT_SYMBOL vmlinux 0x993c1025 md_cluster_ops -EXPORT_SYMBOL vmlinux 0x993e4d37 pci_choose_state +EXPORT_SYMBOL vmlinux 0x9946179a phy_drivers_register +EXPORT_SYMBOL vmlinux 0x994e62af uart_remove_one_port EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable -EXPORT_SYMBOL vmlinux 0x99722d42 console_start +EXPORT_SYMBOL vmlinux 0x9956852e nf_register_net_hook +EXPORT_SYMBOL vmlinux 0x9963b76e tcp_prot EXPORT_SYMBOL vmlinux 0x9975dc22 acpi_get_handle -EXPORT_SYMBOL vmlinux 0x9978f98f unregister_shrinker -EXPORT_SYMBOL vmlinux 0x997ee03a __mdiobus_read -EXPORT_SYMBOL vmlinux 0x997fff0a mr_mfc_seq_idx -EXPORT_SYMBOL vmlinux 0x998174d9 qdisc_watchdog_cancel -EXPORT_SYMBOL vmlinux 0x9983c143 backlight_device_get_by_name -EXPORT_SYMBOL vmlinux 0x998853e1 tcp_seq_stop -EXPORT_SYMBOL vmlinux 0x9992fd88 scsi_is_host_device +EXPORT_SYMBOL vmlinux 0x997cae41 input_register_device +EXPORT_SYMBOL vmlinux 0x9981a1a0 set_user_nice +EXPORT_SYMBOL vmlinux 0x999506aa dev_mc_sync EXPORT_SYMBOL vmlinux 0x999e8297 vfree -EXPORT_SYMBOL vmlinux 0x99a21948 ip_frag_init -EXPORT_SYMBOL vmlinux 0x99a91c40 security_unix_may_send -EXPORT_SYMBOL vmlinux 0x99ac3d8b sched_autogroup_create_attach +EXPORT_SYMBOL vmlinux 0x99a2eed9 __dec_zone_page_state +EXPORT_SYMBOL vmlinux 0x99bf8396 fb_show_logo +EXPORT_SYMBOL vmlinux 0x99cac2b7 netdev_sk_get_lowest_dev EXPORT_SYMBOL vmlinux 0x99d472b1 net_dim_get_rx_moderation EXPORT_SYMBOL vmlinux 0x99daa9bf try_offline_node -EXPORT_SYMBOL vmlinux 0x99e23791 cpufreq_generic_suspend -EXPORT_SYMBOL vmlinux 0x99e4acd5 bio_advance -EXPORT_SYMBOL vmlinux 0x99e74124 textsearch_find_continuous -EXPORT_SYMBOL vmlinux 0x99ef7410 tcp_select_initial_window EXPORT_SYMBOL vmlinux 0x99f7371c refcount_dec_and_mutex_lock -EXPORT_SYMBOL vmlinux 0x99f835ca uart_get_divisor EXPORT_SYMBOL vmlinux 0x99f9638f __napi_alloc_frag_align -EXPORT_SYMBOL vmlinux 0x99ffd8bf scsi_eh_prep_cmnd EXPORT_SYMBOL vmlinux 0x9a0c3a18 vme_unregister_error_handler -EXPORT_SYMBOL vmlinux 0x9a19ec50 make_flow_keys_digest +EXPORT_SYMBOL vmlinux 0x9a149aae t10_pi_type1_ip EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk -EXPORT_SYMBOL vmlinux 0x9a219977 scsi_vpd_tpg_id +EXPORT_SYMBOL vmlinux 0x9a1ff755 scsi_is_target_device EXPORT_SYMBOL vmlinux 0x9a22391e radix_tree_gang_lookup_tag_slot +EXPORT_SYMBOL vmlinux 0x9a37a27f phy_attach +EXPORT_SYMBOL vmlinux 0x9a382c50 ipv6_setsockopt EXPORT_SYMBOL vmlinux 0x9a583306 netlbl_bitmap_walk EXPORT_SYMBOL vmlinux 0x9a73b032 ZSTD_initDStream_usingDDict -EXPORT_SYMBOL vmlinux 0x9a9b9d66 put_cmsg_scm_timestamping +EXPORT_SYMBOL vmlinux 0x9a7b367d pagecache_write_end +EXPORT_SYMBOL vmlinux 0x9a8d7e63 flow_block_cb_free +EXPORT_SYMBOL vmlinux 0x9a94e580 security_inode_copy_up EXPORT_SYMBOL vmlinux 0x9aaeefce sysctl_nf_log_all_netns -EXPORT_SYMBOL vmlinux 0x9ad47842 kthread_destroy_worker -EXPORT_SYMBOL vmlinux 0x9ad49ffe netdev_reset_tc -EXPORT_SYMBOL vmlinux 0x9ae419e4 mmc_alloc_host +EXPORT_SYMBOL vmlinux 0x9abdfb6e key_alloc +EXPORT_SYMBOL vmlinux 0x9acfcf60 mipi_dsi_device_register_full EXPORT_SYMBOL vmlinux 0x9ae47436 _find_last_bit -EXPORT_SYMBOL vmlinux 0x9aed053c tcp_enter_quickack_mode -EXPORT_SYMBOL vmlinux 0x9af23626 build_skb -EXPORT_SYMBOL vmlinux 0x9afa4f54 md_register_thread -EXPORT_SYMBOL vmlinux 0x9b03382b netdev_set_tc_queue +EXPORT_SYMBOL vmlinux 0x9af8fdba noop_llseek +EXPORT_SYMBOL vmlinux 0x9b126ea4 phy_register_fixup_for_id EXPORT_SYMBOL vmlinux 0x9b128a66 qcom_scm_set_remote_state -EXPORT_SYMBOL vmlinux 0x9b1f3eec scsi_free_host_dev +EXPORT_SYMBOL vmlinux 0x9b1a9891 skb_seq_read +EXPORT_SYMBOL vmlinux 0x9b21bb1e vlan_dev_real_dev EXPORT_SYMBOL vmlinux 0x9b2560b9 gf128mul_init_4k_bbe -EXPORT_SYMBOL vmlinux 0x9b282a85 __dev_remove_pack +EXPORT_SYMBOL vmlinux 0x9b305800 read_cache_pages EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier -EXPORT_SYMBOL vmlinux 0x9b3ec6d9 mr_table_dump EXPORT_SYMBOL vmlinux 0x9b420478 utf8_strncasecmp EXPORT_SYMBOL vmlinux 0x9b496b21 posix_acl_alloc -EXPORT_SYMBOL vmlinux 0x9b616da0 inode_needs_sync -EXPORT_SYMBOL vmlinux 0x9b6836eb tty_port_raise_dtr_rts -EXPORT_SYMBOL vmlinux 0x9b6962fd rproc_of_resm_mem_entry_init +EXPORT_SYMBOL vmlinux 0x9b4f940f seq_open_private +EXPORT_SYMBOL vmlinux 0x9b630629 get_cached_acl +EXPORT_SYMBOL vmlinux 0x9b65df49 skb_tunnel_check_pmtu EXPORT_SYMBOL vmlinux 0x9b6c724e xudma_pktdma_tflow_get_irq +EXPORT_SYMBOL vmlinux 0x9b723b96 iget_failed EXPORT_SYMBOL vmlinux 0x9b72478f acpi_unload_parent_table -EXPORT_SYMBOL vmlinux 0x9b8598ae super_setup_bdi -EXPORT_SYMBOL vmlinux 0x9b874a05 proc_remove -EXPORT_SYMBOL vmlinux 0x9ba50c44 pci_request_selected_regions -EXPORT_SYMBOL vmlinux 0x9ba7c9cf __ip_queue_xmit -EXPORT_SYMBOL vmlinux 0x9bb18e74 touch_atime +EXPORT_SYMBOL vmlinux 0x9b8ae790 inode_sub_bytes +EXPORT_SYMBOL vmlinux 0x9b9d45d5 acpi_pm_device_sleep_state +EXPORT_SYMBOL vmlinux 0x9b9ec9be d_set_d_op +EXPORT_SYMBOL vmlinux 0x9b9fde8d vfs_iocb_iter_write +EXPORT_SYMBOL vmlinux 0x9baf11bf sget_fc +EXPORT_SYMBOL vmlinux 0x9bcf4a9d write_cache_pages +EXPORT_SYMBOL vmlinux 0x9bf0a723 input_unregister_handle +EXPORT_SYMBOL vmlinux 0x9c0af4f9 dev_alloc_name EXPORT_SYMBOL vmlinux 0x9c122bcf mempool_create_node -EXPORT_SYMBOL vmlinux 0x9c1245dc sget_fc +EXPORT_SYMBOL vmlinux 0x9c1af12a alloc_anon_inode +EXPORT_SYMBOL vmlinux 0x9c1bd8a0 kthread_create_on_node EXPORT_SYMBOL vmlinux 0x9c1e5bf5 queued_spin_lock_slowpath -EXPORT_SYMBOL vmlinux 0x9c2004f2 netdev_info -EXPORT_SYMBOL vmlinux 0x9c214f16 bio_integrity_clone -EXPORT_SYMBOL vmlinux 0x9c306dac unregister_key_type -EXPORT_SYMBOL vmlinux 0x9c4243f4 pci_dev_put -EXPORT_SYMBOL vmlinux 0x9c425b3d netdev_bonding_info_change -EXPORT_SYMBOL vmlinux 0x9c54e848 dev_get_flags +EXPORT_SYMBOL vmlinux 0x9c4f1250 netdev_lower_get_next_private EXPORT_SYMBOL vmlinux 0x9c5a2ada ucc_fast_dump_regs EXPORT_SYMBOL vmlinux 0x9c5d5b94 crc8 -EXPORT_SYMBOL vmlinux 0x9c6208df blk_mq_end_request -EXPORT_SYMBOL vmlinux 0x9c71759b file_check_and_advance_wb_err -EXPORT_SYMBOL vmlinux 0x9c78306f pci_rebar_get_possible_sizes -EXPORT_SYMBOL vmlinux 0x9c7bebdb page_readlink +EXPORT_SYMBOL vmlinux 0x9c70186c flow_rule_alloc +EXPORT_SYMBOL vmlinux 0x9c79bc99 tcf_action_exec EXPORT_SYMBOL vmlinux 0x9c86b9ab fileattr_fill_flags +EXPORT_SYMBOL vmlinux 0x9c8b11ba unregister_mii_tstamp_controller +EXPORT_SYMBOL vmlinux 0x9ca217a7 misc_register EXPORT_SYMBOL vmlinux 0x9cab34a6 rfkill_set_led_trigger_name -EXPORT_SYMBOL vmlinux 0x9cc0f6ff fscrypt_encrypt_block_inplace +EXPORT_SYMBOL vmlinux 0x9cc1ac67 ucc_of_parse_tdm EXPORT_SYMBOL vmlinux 0x9ccf7171 vme_dma_pci_attribute +EXPORT_SYMBOL vmlinux 0x9cd7583d vme_dma_request +EXPORT_SYMBOL vmlinux 0x9cd7a1d2 mipi_dsi_generic_read EXPORT_SYMBOL vmlinux 0x9cd91791 register_sysctl EXPORT_SYMBOL vmlinux 0x9cdfb3f7 sysctl_fb_tunnels_only_for_init_net +EXPORT_SYMBOL vmlinux 0x9ce44c54 of_find_node_by_type +EXPORT_SYMBOL vmlinux 0x9cee1404 __pskb_pull_tail +EXPORT_SYMBOL vmlinux 0x9d05c5ea jbd2_journal_check_used_features EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier -EXPORT_SYMBOL vmlinux 0x9d0e02d9 blk_queue_alignment_offset -EXPORT_SYMBOL vmlinux 0x9d12c75e may_umount_tree +EXPORT_SYMBOL vmlinux 0x9d14fb25 ip6_fraglist_prepare EXPORT_SYMBOL vmlinux 0x9d1a5e3a __memcpy -EXPORT_SYMBOL vmlinux 0x9d1cd972 __cancel_dirty_page -EXPORT_SYMBOL vmlinux 0x9d202e77 ipv6_sock_mc_drop +EXPORT_SYMBOL vmlinux 0x9d1fefa0 generic_ro_fops EXPORT_SYMBOL vmlinux 0x9d250156 __nla_put -EXPORT_SYMBOL vmlinux 0x9d256d8a kernel_sock_ip_overhead EXPORT_SYMBOL vmlinux 0x9d2ab8ac __tasklet_schedule -EXPORT_SYMBOL vmlinux 0x9d2d08d3 tcp_v4_syn_recv_sock -EXPORT_SYMBOL vmlinux 0x9d2d2917 netlink_net_capable EXPORT_SYMBOL vmlinux 0x9d2e7707 unregister_sysrq_key -EXPORT_SYMBOL vmlinux 0x9d32b174 no_llseek -EXPORT_SYMBOL vmlinux 0x9d3cf43d __kfree_skb EXPORT_SYMBOL vmlinux 0x9d61e994 ucs2_strncmp -EXPORT_SYMBOL vmlinux 0x9d685c15 phy_ethtool_get_strings -EXPORT_SYMBOL vmlinux 0x9d6e9149 inet_protos -EXPORT_SYMBOL vmlinux 0x9d835927 qdisc_watchdog_schedule_range_ns -EXPORT_SYMBOL vmlinux 0x9d89277d put_devmap_managed_page +EXPORT_SYMBOL vmlinux 0x9d62e7da rproc_add +EXPORT_SYMBOL vmlinux 0x9d89d919 rps_may_expire_flow EXPORT_SYMBOL vmlinux 0x9d92f3ad __wait_on_bit_lock -EXPORT_SYMBOL vmlinux 0x9d94d747 of_find_mipi_dsi_device_by_node +EXPORT_SYMBOL vmlinux 0x9d94dece inet_proto_csum_replace4 +EXPORT_SYMBOL vmlinux 0x9d95af6f msm_pinctrl_dev_pm_ops +EXPORT_SYMBOL vmlinux 0x9d9667af gnet_stats_start_copy EXPORT_SYMBOL vmlinux 0x9d97ab2c audit_log_object_context -EXPORT_SYMBOL vmlinux 0x9d99dcc5 vlan_ioctl_set -EXPORT_SYMBOL vmlinux 0x9d9ae64a tcp_stream_memory_free -EXPORT_SYMBOL vmlinux 0x9da0f335 pci_enable_atomic_ops_to_root -EXPORT_SYMBOL vmlinux 0x9da21475 ethtool_rx_flow_rule_create -EXPORT_SYMBOL vmlinux 0x9da9a6c5 skb_flow_dissect_ct -EXPORT_SYMBOL vmlinux 0x9db68193 __mmap_lock_do_trace_start_locking -EXPORT_SYMBOL vmlinux 0x9db6e5d9 ip6_dst_hoplimit -EXPORT_SYMBOL vmlinux 0x9dbfaf7d __check_sticky -EXPORT_SYMBOL vmlinux 0x9dc4c5f6 d_drop -EXPORT_SYMBOL vmlinux 0x9dc619bf dma_map_page_attrs -EXPORT_SYMBOL vmlinux 0x9dd63f4d pci_alloc_host_bridge -EXPORT_SYMBOL vmlinux 0x9ddbc336 param_ops_bool -EXPORT_SYMBOL vmlinux 0x9df1030e eth_header +EXPORT_SYMBOL vmlinux 0x9dd4ef33 sock_no_sendpage_locked +EXPORT_SYMBOL vmlinux 0x9defa27f dst_dev_put EXPORT_SYMBOL vmlinux 0x9df21d0e qman_affine_channel -EXPORT_SYMBOL vmlinux 0x9e04eb72 tcp_v4_connect -EXPORT_SYMBOL vmlinux 0x9e068a1f kill_anon_super +EXPORT_SYMBOL vmlinux 0x9df445fb dev_trans_start +EXPORT_SYMBOL vmlinux 0x9df69995 qdisc_put_unlocked +EXPORT_SYMBOL vmlinux 0x9dfa03e2 devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0x9dfc2b7d pci_request_regions EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node EXPORT_SYMBOL vmlinux 0x9e0fa5ae hsiphash_3u32 -EXPORT_SYMBOL vmlinux 0x9e132941 rtnl_create_link EXPORT_SYMBOL vmlinux 0x9e13f6f6 gf128mul_lle -EXPORT_SYMBOL vmlinux 0x9e16f7c8 phy_mii_ioctl -EXPORT_SYMBOL vmlinux 0x9e1de49d tcp_req_err EXPORT_SYMBOL vmlinux 0x9e2737f0 acpi_install_interface_handler -EXPORT_SYMBOL vmlinux 0x9e40cee3 irq_set_chip -EXPORT_SYMBOL vmlinux 0x9e4c98a2 genphy_read_mmd_unsupported -EXPORT_SYMBOL vmlinux 0x9e4e3407 cdrom_get_media_event +EXPORT_SYMBOL vmlinux 0x9e28cdb4 rproc_elf_get_boot_addr +EXPORT_SYMBOL vmlinux 0x9e2bff0b phy_ethtool_get_strings +EXPORT_SYMBOL vmlinux 0x9e2d7fa1 fib_notifier_ops_unregister +EXPORT_SYMBOL vmlinux 0x9e2fc3bb page_pool_alloc_pages EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy +EXPORT_SYMBOL vmlinux 0x9e5c7efe __cgroup_bpf_run_filter_sk EXPORT_SYMBOL vmlinux 0x9e5e750d node_to_cpumask_map +EXPORT_SYMBOL vmlinux 0x9e61b5ef sock_dequeue_err_skb EXPORT_SYMBOL vmlinux 0x9e61bb05 set_freezable -EXPORT_SYMBOL vmlinux 0x9e678769 neigh_carrier_down +EXPORT_SYMBOL vmlinux 0x9e777c98 sock_gettstamp +EXPORT_SYMBOL vmlinux 0x9e7aa672 mdiobus_write_nested EXPORT_SYMBOL vmlinux 0x9e7d6bd0 __udelay -EXPORT_SYMBOL vmlinux 0x9e8fa87a phy_device_register EXPORT_SYMBOL vmlinux 0x9e99837e __nla_put_64bit EXPORT_SYMBOL vmlinux 0x9e9eab95 devcgroup_check_permission EXPORT_SYMBOL vmlinux 0x9e9fdd9d memunmap +EXPORT_SYMBOL vmlinux 0x9ea03b0b inode_insert5 +EXPORT_SYMBOL vmlinux 0x9ea30396 rproc_detach +EXPORT_SYMBOL vmlinux 0x9ea618c0 param_ops_ulong EXPORT_SYMBOL vmlinux 0x9eacf8a5 kstrndup EXPORT_SYMBOL vmlinux 0x9eb187fa xudma_pktdma_rflow_get_irq -EXPORT_SYMBOL vmlinux 0x9eb8ff41 tcp_get_md5sig_pool +EXPORT_SYMBOL vmlinux 0x9ebd7921 scsi_report_device_reset EXPORT_SYMBOL vmlinux 0x9ec0e639 twl6030_interrupt_unmask EXPORT_SYMBOL vmlinux 0x9ec6ca96 ktime_get_real_ts64 -EXPORT_SYMBOL vmlinux 0x9eca4d90 nobh_writepage EXPORT_SYMBOL vmlinux 0x9ed7c847 brcmstb_get_family_id EXPORT_SYMBOL vmlinux 0x9ed978de vme_lm_set -EXPORT_SYMBOL vmlinux 0x9f15ffd9 file_path -EXPORT_SYMBOL vmlinux 0x9f25948a watchdog_register_governor -EXPORT_SYMBOL vmlinux 0x9f26804e dquot_commit_info -EXPORT_SYMBOL vmlinux 0x9f30c0aa input_set_abs_params -EXPORT_SYMBOL vmlinux 0x9f30f24d ipv6_chk_custom_prefix -EXPORT_SYMBOL vmlinux 0x9f37e457 pm860x_page_bulk_read +EXPORT_SYMBOL vmlinux 0x9eef0192 pci_bus_type +EXPORT_SYMBOL vmlinux 0x9ef34d92 tcp_sock_set_keepcnt +EXPORT_SYMBOL vmlinux 0x9f0b0ddb max8998_update_reg +EXPORT_SYMBOL vmlinux 0x9f159dd6 sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0x9f1895eb insert_inode_locked4 +EXPORT_SYMBOL vmlinux 0x9f1af223 __insert_inode_hash +EXPORT_SYMBOL vmlinux 0x9f318b28 pci_prepare_to_sleep +EXPORT_SYMBOL vmlinux 0x9f4566bb devm_ioremap_resource EXPORT_SYMBOL vmlinux 0x9f46ced8 __sw_hweight64 +EXPORT_SYMBOL vmlinux 0x9f4b1df5 dma_resv_add_shared_fence EXPORT_SYMBOL vmlinux 0x9f4f2aa3 acpi_gbl_FADT EXPORT_SYMBOL vmlinux 0x9f50b770 keyring_restrict EXPORT_SYMBOL vmlinux 0x9f54ead7 gro_cells_destroy -EXPORT_SYMBOL vmlinux 0x9f655426 gnet_stats_start_copy -EXPORT_SYMBOL vmlinux 0x9f700967 dma_map_resource +EXPORT_SYMBOL vmlinux 0x9f722d23 genphy_config_eee_advert +EXPORT_SYMBOL vmlinux 0x9f727f7b arp_tbl EXPORT_SYMBOL vmlinux 0x9f7d7dbb logic_outsw -EXPORT_SYMBOL vmlinux 0x9f7e5d64 input_mt_report_pointer_emulation -EXPORT_SYMBOL vmlinux 0x9f8745ff sync_filesystem EXPORT_SYMBOL vmlinux 0x9f984513 strrchr -EXPORT_SYMBOL vmlinux 0x9fa3b154 flow_block_cb_setup_simple +EXPORT_SYMBOL vmlinux 0x9f9b3461 __skb_free_datagram_locked +EXPORT_SYMBOL vmlinux 0x9fa28e4b pmem_sector_size +EXPORT_SYMBOL vmlinux 0x9fa581a7 blk_integrity_unregister EXPORT_SYMBOL vmlinux 0x9fa7184a cancel_delayed_work_sync -EXPORT_SYMBOL vmlinux 0x9fa878c5 flow_block_cb_free -EXPORT_SYMBOL vmlinux 0x9facbfcc d_set_fallthru -EXPORT_SYMBOL vmlinux 0x9facd531 netdev_bind_sb_channel_queue -EXPORT_SYMBOL vmlinux 0x9fd278c1 generic_perform_write +EXPORT_SYMBOL vmlinux 0x9fb0bba0 freezing_slow_path +EXPORT_SYMBOL vmlinux 0x9fbfa8a5 neigh_seq_start +EXPORT_SYMBOL vmlinux 0x9fd0b457 qdisc_hash_add +EXPORT_SYMBOL vmlinux 0x9fde2e3c inet_proto_csum_replace_by_diff EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many -EXPORT_SYMBOL vmlinux 0x9fe120b0 gnet_stats_copy_queue -EXPORT_SYMBOL vmlinux 0x9fee8cae backlight_device_register EXPORT_SYMBOL vmlinux 0x9feed7ce timer_reduce -EXPORT_SYMBOL vmlinux 0x9ff7e43a sunxi_sram_release EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog +EXPORT_SYMBOL vmlinux 0x9ffb63ba fman_set_mac_max_frame EXPORT_SYMBOL vmlinux 0xa00aca2a dql_completed EXPORT_SYMBOL vmlinux 0xa01d3df6 font_vga_8x16 +EXPORT_SYMBOL vmlinux 0xa0201314 alloc_fddidev +EXPORT_SYMBOL vmlinux 0xa022b47d ll_rw_block EXPORT_SYMBOL vmlinux 0xa022c739 call_usermodehelper_setup EXPORT_SYMBOL vmlinux 0xa02aa74a __cond_resched_lock +EXPORT_SYMBOL vmlinux 0xa02e48de sock_set_mark +EXPORT_SYMBOL vmlinux 0xa0321fe8 tty_port_raise_dtr_rts EXPORT_SYMBOL vmlinux 0xa033d747 next_arg +EXPORT_SYMBOL vmlinux 0xa03b68dc devfreq_monitor_resume +EXPORT_SYMBOL vmlinux 0xa041d91c __dev_kfree_skb_any EXPORT_SYMBOL vmlinux 0xa0436e98 in6addr_linklocal_allnodes -EXPORT_SYMBOL vmlinux 0xa0459daa tcp_ld_RTO_revert -EXPORT_SYMBOL vmlinux 0xa046b893 nd_btt_version -EXPORT_SYMBOL vmlinux 0xa04b88b8 pskb_expand_head EXPORT_SYMBOL vmlinux 0xa04e33da qcom_scm_lmh_dcvsh +EXPORT_SYMBOL vmlinux 0xa05444de fs_param_is_enum EXPORT_SYMBOL vmlinux 0xa057df8f twl_set_regcache_bypass EXPORT_SYMBOL vmlinux 0xa05b6be2 psched_ppscfg_precompute -EXPORT_SYMBOL vmlinux 0xa07041d6 tcp_sock_set_nodelay +EXPORT_SYMBOL vmlinux 0xa0756350 end_page_private_2 +EXPORT_SYMBOL vmlinux 0xa0784bf7 blk_queue_update_dma_alignment EXPORT_SYMBOL vmlinux 0xa07a37f0 memchr EXPORT_SYMBOL vmlinux 0xa07d1b3c tasklet_setup +EXPORT_SYMBOL vmlinux 0xa0815318 skb_clone EXPORT_SYMBOL vmlinux 0xa084749a __bitmap_or +EXPORT_SYMBOL vmlinux 0xa084dfa5 skb_dump EXPORT_SYMBOL vmlinux 0xa095e02e generic_check_addressable -EXPORT_SYMBOL vmlinux 0xa099243f xfrm_replay_seqhi +EXPORT_SYMBOL vmlinux 0xa0a9f460 inet_release EXPORT_SYMBOL vmlinux 0xa0ae1e73 siphash_3u64 EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 -EXPORT_SYMBOL vmlinux 0xa0b2dc6e genlmsg_put -EXPORT_SYMBOL vmlinux 0xa0b69697 inet_stream_ops +EXPORT_SYMBOL vmlinux 0xa0c52b7a sg_alloc_table_from_pages_segment +EXPORT_SYMBOL vmlinux 0xa0cfcfbe clk_bulk_get_all EXPORT_SYMBOL vmlinux 0xa0d87339 qdisc_get_rtab EXPORT_SYMBOL vmlinux 0xa0dad88e netdev_adjacent_get_private -EXPORT_SYMBOL vmlinux 0xa0e0c62d bdev_read_only +EXPORT_SYMBOL vmlinux 0xa0e057a7 input_release_device +EXPORT_SYMBOL vmlinux 0xa0e8042d vfs_get_link 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 0xa0f82b71 __ip_mc_dec_group +EXPORT_SYMBOL vmlinux 0xa0f65cd7 rproc_elf_sanity_check EXPORT_SYMBOL vmlinux 0xa0fbac79 wake_up_bit EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max -EXPORT_SYMBOL vmlinux 0xa13a0dac _dev_emerg +EXPORT_SYMBOL vmlinux 0xa117cab9 pci_set_mwi +EXPORT_SYMBOL vmlinux 0xa11e0bec netdev_adjacent_change_commit +EXPORT_SYMBOL vmlinux 0xa13dfdae i2c_smbus_read_i2c_block_data_or_emulated EXPORT_SYMBOL vmlinux 0xa13e780a gen_replace_estimator -EXPORT_SYMBOL vmlinux 0xa170b4f8 simple_nosetlease -EXPORT_SYMBOL vmlinux 0xa184227c mipi_dsi_host_register -EXPORT_SYMBOL vmlinux 0xa19ee927 param_get_ulong -EXPORT_SYMBOL vmlinux 0xa1a84a01 scsi_add_host_with_dma -EXPORT_SYMBOL vmlinux 0xa1aabe0e register_qdisc -EXPORT_SYMBOL vmlinux 0xa1bf0b09 i2c_get_adapter -EXPORT_SYMBOL vmlinux 0xa1d39021 ethtool_op_get_ts_info -EXPORT_SYMBOL vmlinux 0xa1e728ce xfrm_lookup_route -EXPORT_SYMBOL vmlinux 0xa1f8a781 make_bad_inode +EXPORT_SYMBOL vmlinux 0xa1484a6f jbd2_journal_start +EXPORT_SYMBOL vmlinux 0xa1566ef9 pci_try_set_mwi +EXPORT_SYMBOL vmlinux 0xa15b1d6e nobh_write_begin +EXPORT_SYMBOL vmlinux 0xa163e8e1 wake_up_process +EXPORT_SYMBOL vmlinux 0xa172c7e5 __inc_zone_page_state +EXPORT_SYMBOL vmlinux 0xa17bb339 amba_driver_register +EXPORT_SYMBOL vmlinux 0xa1851243 tcf_action_set_ctrlact +EXPORT_SYMBOL vmlinux 0xa1ab0e17 try_to_writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0xa1b0240d __lock_sock_fast +EXPORT_SYMBOL vmlinux 0xa1d27bf8 reuseport_attach_prog EXPORT_SYMBOL vmlinux 0xa2035ac6 qcom_scm_set_warm_boot_addr EXPORT_SYMBOL vmlinux 0xa2060911 inet_current_timestamp -EXPORT_SYMBOL vmlinux 0xa22c82b3 blk_integrity_compare +EXPORT_SYMBOL vmlinux 0xa2080b7a dma_unmap_sg_attrs +EXPORT_SYMBOL vmlinux 0xa2246a49 dev_printk_emit +EXPORT_SYMBOL vmlinux 0xa22bc7a5 clear_nlink EXPORT_SYMBOL vmlinux 0xa2326c49 acpi_remove_table_handler -EXPORT_SYMBOL vmlinux 0xa23753a6 input_flush_device EXPORT_SYMBOL vmlinux 0xa23ffc04 groups_sort -EXPORT_SYMBOL vmlinux 0xa24b3c9c param_set_long -EXPORT_SYMBOL vmlinux 0xa24dedcf noop_qdisc EXPORT_SYMBOL vmlinux 0xa24f23d8 __request_module EXPORT_SYMBOL vmlinux 0xa25b90ab utf8byte +EXPORT_SYMBOL vmlinux 0xa262e84c fs_param_is_bool EXPORT_SYMBOL vmlinux 0xa263892b fscrypt_fname_free_buffer EXPORT_SYMBOL vmlinux 0xa2660e90 __tracepoint_dma_fence_signaled -EXPORT_SYMBOL vmlinux 0xa26c5db7 netlink_capable -EXPORT_SYMBOL vmlinux 0xa270bac9 set_capacity -EXPORT_SYMBOL vmlinux 0xa28049b4 xfrm_sad_getinfo -EXPORT_SYMBOL vmlinux 0xa28b6e1f tc_cleanup_flow_action EXPORT_SYMBOL vmlinux 0xa28cfcc0 gen_estimator_active -EXPORT_SYMBOL vmlinux 0xa2951bdd kill_block_super -EXPORT_SYMBOL vmlinux 0xa299cfa2 xfrm_register_type -EXPORT_SYMBOL vmlinux 0xa2b877eb ip6mr_rule_default +EXPORT_SYMBOL vmlinux 0xa29c7612 blk_queue_max_discard_sectors +EXPORT_SYMBOL vmlinux 0xa2b608c6 tegra_dfll_register +EXPORT_SYMBOL vmlinux 0xa2beb039 sk_stream_wait_connect EXPORT_SYMBOL vmlinux 0xa2cf3649 qman_fq_fqid EXPORT_SYMBOL vmlinux 0xa2d7ec8d __SCK__tp_func_kmem_cache_free -EXPORT_SYMBOL vmlinux 0xa2ef9bfd tcp_peek_len -EXPORT_SYMBOL vmlinux 0xa2f5b7aa trace_raw_output_prep -EXPORT_SYMBOL vmlinux 0xa2f8f696 simple_statfs -EXPORT_SYMBOL vmlinux 0xa305d0e2 devm_ioremap_resource -EXPORT_SYMBOL vmlinux 0xa311c4a1 dma_supported -EXPORT_SYMBOL vmlinux 0xa3130295 netdev_master_upper_dev_get +EXPORT_SYMBOL vmlinux 0xa2e41498 blk_queue_dma_alignment +EXPORT_SYMBOL vmlinux 0xa2fee26e phy_trigger_machine +EXPORT_SYMBOL vmlinux 0xa30279c9 tegra_dfll_suspend +EXPORT_SYMBOL vmlinux 0xa3046a9f skb_put +EXPORT_SYMBOL vmlinux 0xa305f51e blk_mq_alloc_tag_set +EXPORT_SYMBOL vmlinux 0xa312d4f9 pci_save_state +EXPORT_SYMBOL vmlinux 0xa3156a90 xfrm4_protocol_deregister +EXPORT_SYMBOL vmlinux 0xa32b0303 input_event EXPORT_SYMBOL vmlinux 0xa339e6e5 on_each_cpu_cond_mask +EXPORT_SYMBOL vmlinux 0xa3436ec8 crypto_sha1_update EXPORT_SYMBOL vmlinux 0xa3522df5 qman_query_fq_np -EXPORT_SYMBOL vmlinux 0xa355f8e1 param_ops_ushort -EXPORT_SYMBOL vmlinux 0xa35f6876 is_acpi_data_node -EXPORT_SYMBOL vmlinux 0xa3786ce5 skb_mac_gso_segment -EXPORT_SYMBOL vmlinux 0xa37a829c i2c_clients_command -EXPORT_SYMBOL vmlinux 0xa38fae5e devm_gen_pool_create -EXPORT_SYMBOL vmlinux 0xa3920001 kfree_skb -EXPORT_SYMBOL vmlinux 0xa39fcfc7 page_mapped +EXPORT_SYMBOL vmlinux 0xa357decb pin_user_pages_locked +EXPORT_SYMBOL vmlinux 0xa364cf21 security_sb_clone_mnt_opts +EXPORT_SYMBOL vmlinux 0xa3654322 rpmh_write_async +EXPORT_SYMBOL vmlinux 0xa368e362 vfs_create +EXPORT_SYMBOL vmlinux 0xa36ea7ec param_ops_uint +EXPORT_SYMBOL vmlinux 0xa380c88f __skb_ext_del +EXPORT_SYMBOL vmlinux 0xa39b889e phy_start_cable_test EXPORT_SYMBOL vmlinux 0xa3a3f229 cpumask_next_and -EXPORT_SYMBOL vmlinux 0xa3a5c8ca __devm_mdiobus_register -EXPORT_SYMBOL vmlinux 0xa3b21592 page_pool_alloc_frag +EXPORT_SYMBOL vmlinux 0xa3b65b19 tcf_qevent_init EXPORT_SYMBOL vmlinux 0xa3be8342 __ubsan_handle_type_mismatch -EXPORT_SYMBOL vmlinux 0xa3c0c888 fwnode_mdiobus_register_phy -EXPORT_SYMBOL vmlinux 0xa3c2dcb8 netdev_get_xmit_slave -EXPORT_SYMBOL vmlinux 0xa3c4aa4d phy_attach -EXPORT_SYMBOL vmlinux 0xa3d76d0b get_tree_bdev -EXPORT_SYMBOL vmlinux 0xa3dbbc9e textsearch_register -EXPORT_SYMBOL vmlinux 0xa3dfaa9f input_open_device +EXPORT_SYMBOL vmlinux 0xa3cc697d iov_iter_pipe +EXPORT_SYMBOL vmlinux 0xa3ce6d89 devm_of_mdiobus_register +EXPORT_SYMBOL vmlinux 0xa3e0a11a xfrm_trans_queue_net +EXPORT_SYMBOL vmlinux 0xa3e1a63b iov_iter_get_pages_alloc +EXPORT_SYMBOL vmlinux 0xa3e2b3b8 pci_bus_write_config_byte +EXPORT_SYMBOL vmlinux 0xa3e4c039 starget_for_each_device +EXPORT_SYMBOL vmlinux 0xa3ef388e clocksource_change_rating EXPORT_SYMBOL vmlinux 0xa3fb735a blk_set_default_limits EXPORT_SYMBOL vmlinux 0xa3fea172 sha224_final -EXPORT_SYMBOL vmlinux 0xa40b0580 jbd2_journal_destroy EXPORT_SYMBOL vmlinux 0xa40ff01b acpi_dbg_layer -EXPORT_SYMBOL vmlinux 0xa41976ba skb_trim -EXPORT_SYMBOL vmlinux 0xa41f6d4b netlink_set_err -EXPORT_SYMBOL vmlinux 0xa42e9c31 mount_nodev -EXPORT_SYMBOL vmlinux 0xa4428103 sock_init_data +EXPORT_SYMBOL vmlinux 0xa41fbe8c of_device_is_big_endian +EXPORT_SYMBOL vmlinux 0xa434290f udp6_csum_init EXPORT_SYMBOL vmlinux 0xa448c653 qcom_scm_ice_set_key -EXPORT_SYMBOL vmlinux 0xa4613823 tag_pages_for_writeback -EXPORT_SYMBOL vmlinux 0xa46717c6 tty_register_ldisc -EXPORT_SYMBOL vmlinux 0xa46ed3a8 vfs_get_link +EXPORT_SYMBOL vmlinux 0xa464258a ipv6_sock_mc_drop +EXPORT_SYMBOL vmlinux 0xa466159c cros_ec_query_all EXPORT_SYMBOL vmlinux 0xa47a31c8 security_binder_transaction -EXPORT_SYMBOL vmlinux 0xa4865a6b config_group_init -EXPORT_SYMBOL vmlinux 0xa489ee05 inode_update_time -EXPORT_SYMBOL vmlinux 0xa4b96616 inet6_release -EXPORT_SYMBOL vmlinux 0xa4bc1a31 mipi_dsi_dcs_set_display_on -EXPORT_SYMBOL vmlinux 0xa4e0f5b7 phys_mem_access_prot -EXPORT_SYMBOL vmlinux 0xa4eb1544 phy_disconnect +EXPORT_SYMBOL vmlinux 0xa480e51a ioc_lookup_icq +EXPORT_SYMBOL vmlinux 0xa49b2857 nf_ip6_checksum +EXPORT_SYMBOL vmlinux 0xa4ab2ac1 netif_schedule_queue +EXPORT_SYMBOL vmlinux 0xa4bccec6 d_path +EXPORT_SYMBOL vmlinux 0xa4cbf5fd seq_hex_dump +EXPORT_SYMBOL vmlinux 0xa4d72042 _dev_notice +EXPORT_SYMBOL vmlinux 0xa4da57cb tcp_rcv_established +EXPORT_SYMBOL vmlinux 0xa4dcaf25 configfs_unregister_default_group EXPORT_SYMBOL vmlinux 0xa4fca045 qcom_scm_ocmem_lock EXPORT_SYMBOL vmlinux 0xa50a3da7 _find_next_bit -EXPORT_SYMBOL vmlinux 0xa5190ce2 netlink_broadcast_filtered +EXPORT_SYMBOL vmlinux 0xa522607a config_group_init EXPORT_SYMBOL vmlinux 0xa52bedf6 xenbus_dev_request_and_reply -EXPORT_SYMBOL vmlinux 0xa52f0004 __lock_buffer -EXPORT_SYMBOL vmlinux 0xa5399542 blk_pm_runtime_init -EXPORT_SYMBOL vmlinux 0xa540b0ff jbd2__journal_restart -EXPORT_SYMBOL vmlinux 0xa54e7643 scsi_dma_map EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color -EXPORT_SYMBOL vmlinux 0xa55289e4 phy_write_paged -EXPORT_SYMBOL vmlinux 0xa566effe udp_seq_stop -EXPORT_SYMBOL vmlinux 0xa576e5f1 __sk_mem_raise_allocated -EXPORT_SYMBOL vmlinux 0xa5772a5b __frontswap_test -EXPORT_SYMBOL vmlinux 0xa5809b8d mmc_gpio_set_cd_isr -EXPORT_SYMBOL vmlinux 0xa596d785 devm_extcon_register_notifier_all +EXPORT_SYMBOL vmlinux 0xa590dc44 pci_find_capability +EXPORT_SYMBOL vmlinux 0xa5944392 devfreq_resume_device EXPORT_SYMBOL vmlinux 0xa5976e4f dev_base_lock +EXPORT_SYMBOL vmlinux 0xa59ffb54 pm_vt_switch_unregister +EXPORT_SYMBOL vmlinux 0xa5a6f629 flow_rule_match_enc_ipv6_addrs EXPORT_SYMBOL vmlinux 0xa5ac3e33 ZSTD_DCtxWorkspaceBound -EXPORT_SYMBOL vmlinux 0xa5dfe87f kobject_del -EXPORT_SYMBOL vmlinux 0xa5e4c9b7 mipi_dsi_device_register_full -EXPORT_SYMBOL vmlinux 0xa5e84c28 ethtool_rx_flow_rule_destroy -EXPORT_SYMBOL vmlinux 0xa5ed9c38 gnet_stats_copy_basic_hw +EXPORT_SYMBOL vmlinux 0xa5ac6b42 mark_buffer_dirty +EXPORT_SYMBOL vmlinux 0xa5b6b4ff devm_pci_remap_cfg_resource +EXPORT_SYMBOL vmlinux 0xa5bc4160 dst_discard_out +EXPORT_SYMBOL vmlinux 0xa5c62a17 md_wait_for_blocked_rdev +EXPORT_SYMBOL vmlinux 0xa5d9c37a unregister_framebuffer +EXPORT_SYMBOL vmlinux 0xa5dff706 md_handle_request +EXPORT_SYMBOL vmlinux 0xa5e3f1b5 fqdir_init +EXPORT_SYMBOL vmlinux 0xa5efb401 xfrm_register_type EXPORT_SYMBOL vmlinux 0xa5f7cf37 __cpu_possible_mask -EXPORT_SYMBOL vmlinux 0xa5f7df0d jbd2_complete_transaction -EXPORT_SYMBOL vmlinux 0xa5faf855 devm_clk_get -EXPORT_SYMBOL vmlinux 0xa6036a2c tty_unthrottle -EXPORT_SYMBOL vmlinux 0xa60c608d ip_mc_check_igmp +EXPORT_SYMBOL vmlinux 0xa5f8b010 tty_driver_kref_put +EXPORT_SYMBOL vmlinux 0xa5f9af42 xfrm_trans_queue +EXPORT_SYMBOL vmlinux 0xa617cecc amba_find_device EXPORT_SYMBOL vmlinux 0xa61ced89 qdisc_put_rtab -EXPORT_SYMBOL vmlinux 0xa61fdd83 input_setup_polling -EXPORT_SYMBOL vmlinux 0xa62497a0 __cleancache_invalidate_inode EXPORT_SYMBOL vmlinux 0xa6257a2f complete -EXPORT_SYMBOL vmlinux 0xa625d5ca pcie_capability_read_word +EXPORT_SYMBOL vmlinux 0xa63fd65c pci_iomap EXPORT_SYMBOL vmlinux 0xa648e561 __ubsan_handle_shift_out_of_bounds -EXPORT_SYMBOL vmlinux 0xa653ef7e remap_vmalloc_range -EXPORT_SYMBOL vmlinux 0xa660d94d neigh_for_each -EXPORT_SYMBOL vmlinux 0xa668361a param_ops_string -EXPORT_SYMBOL vmlinux 0xa66eaee2 dev_change_flags -EXPORT_SYMBOL vmlinux 0xa678a427 gnet_stats_copy_app +EXPORT_SYMBOL vmlinux 0xa671ac7e netdev_master_upper_dev_link +EXPORT_SYMBOL vmlinux 0xa6801c4f sk_send_sigurg EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid -EXPORT_SYMBOL vmlinux 0xa6886794 devm_register_netdev -EXPORT_SYMBOL vmlinux 0xa688c1d7 rproc_del -EXPORT_SYMBOL vmlinux 0xa6b283f3 dev_alloc_name -EXPORT_SYMBOL vmlinux 0xa6cbac0a iw_handler_get_thrspy -EXPORT_SYMBOL vmlinux 0xa6fb87b8 ipv6_select_ident -EXPORT_SYMBOL vmlinux 0xa701e523 seq_put_decimal_ll -EXPORT_SYMBOL vmlinux 0xa7039cd7 send_sig_info +EXPORT_SYMBOL vmlinux 0xa685740b phy_support_sym_pause +EXPORT_SYMBOL vmlinux 0xa690fc33 twl6040_clear_bits +EXPORT_SYMBOL vmlinux 0xa6adf8ce udp_lib_unhash +EXPORT_SYMBOL vmlinux 0xa6b42ec0 bdi_register +EXPORT_SYMBOL vmlinux 0xa6b84ce9 set_page_dirty_lock +EXPORT_SYMBOL vmlinux 0xa6c5e108 mmc_wait_for_req_done +EXPORT_SYMBOL vmlinux 0xa6ce9e4d blk_mq_free_tag_set +EXPORT_SYMBOL vmlinux 0xa6d993c6 qdisc_watchdog_init +EXPORT_SYMBOL vmlinux 0xa6e9beae sdev_prefix_printk EXPORT_SYMBOL vmlinux 0xa70bc96d qcom_scm_restore_sec_cfg_available EXPORT_SYMBOL vmlinux 0xa70fb761 flow_keys_basic_dissector +EXPORT_SYMBOL vmlinux 0xa7132175 tcp_sock_set_keepidle EXPORT_SYMBOL vmlinux 0xa71acc92 fman_port_config -EXPORT_SYMBOL vmlinux 0xa71cc06f filp_open EXPORT_SYMBOL vmlinux 0xa72035f9 xa_get_order -EXPORT_SYMBOL vmlinux 0xa7213b85 elv_rb_del -EXPORT_SYMBOL vmlinux 0xa72ee621 unregister_netdevice_queue -EXPORT_SYMBOL vmlinux 0xa73043af nexthop_set_hw_flags -EXPORT_SYMBOL vmlinux 0xa732a8bb tty_register_driver -EXPORT_SYMBOL vmlinux 0xa734525e security_socket_socketpair -EXPORT_SYMBOL vmlinux 0xa74c2d96 phy_free_interrupt EXPORT_SYMBOL vmlinux 0xa74c9877 refcount_dec_and_rtnl_lock -EXPORT_SYMBOL vmlinux 0xa76d2d55 load_nls_default +EXPORT_SYMBOL vmlinux 0xa7583783 qdisc_put +EXPORT_SYMBOL vmlinux 0xa759a636 inet_put_port +EXPORT_SYMBOL vmlinux 0xa761e856 udp_seq_ops EXPORT_SYMBOL vmlinux 0xa77bfd29 register_inet6addr_validator_notifier -EXPORT_SYMBOL vmlinux 0xa7c5a651 get_tree_single_reconf -EXPORT_SYMBOL vmlinux 0xa7d55cd3 dev_addr_init +EXPORT_SYMBOL vmlinux 0xa793d4d8 inet6_csk_route_req +EXPORT_SYMBOL vmlinux 0xa796525b sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0xa7ab1ef1 netif_carrier_off +EXPORT_SYMBOL vmlinux 0xa7ad5e79 fscrypt_ioctl_get_policy +EXPORT_SYMBOL vmlinux 0xa7b990c0 pfifo_fast_ops EXPORT_SYMBOL vmlinux 0xa7d5f92e ida_destroy -EXPORT_SYMBOL vmlinux 0xa7e60514 sock_set_mark EXPORT_SYMBOL vmlinux 0xa7eedcc4 call_usermodehelper -EXPORT_SYMBOL vmlinux 0xa7ef5c8d scm_fp_dup -EXPORT_SYMBOL vmlinux 0xa7f369ec sock_bind_add -EXPORT_SYMBOL vmlinux 0xa808891a inode_init_always -EXPORT_SYMBOL vmlinux 0xa817cd83 follow_down_one +EXPORT_SYMBOL vmlinux 0xa7f0531f sg_alloc_append_table_from_pages +EXPORT_SYMBOL vmlinux 0xa7f9fa0c dev_get_by_index_rcu +EXPORT_SYMBOL vmlinux 0xa7fe3df1 pcibus_to_node +EXPORT_SYMBOL vmlinux 0xa805328f udp_lib_setsockopt +EXPORT_SYMBOL vmlinux 0xa80d8fb7 sock_no_linger EXPORT_SYMBOL vmlinux 0xa8181adf proc_dointvec -EXPORT_SYMBOL vmlinux 0xa8289c21 dqput -EXPORT_SYMBOL vmlinux 0xa82c6b5b input_register_handle +EXPORT_SYMBOL vmlinux 0xa81d23a7 __tty_insert_flip_char EXPORT_SYMBOL vmlinux 0xa843805a get_unused_fd_flags +EXPORT_SYMBOL vmlinux 0xa843e12d backlight_device_unregister EXPORT_SYMBOL vmlinux 0xa84ce9e0 crypto_aes_inv_sbox -EXPORT_SYMBOL vmlinux 0xa852f198 padata_alloc_shell EXPORT_SYMBOL vmlinux 0xa853396b xa_extract EXPORT_SYMBOL vmlinux 0xa85a3e6d xa_load EXPORT_SYMBOL vmlinux 0xa8694ecd kblockd_schedule_work -EXPORT_SYMBOL vmlinux 0xa86ca2b1 kthread_bind -EXPORT_SYMBOL vmlinux 0xa874f19e pcim_pin_device -EXPORT_SYMBOL vmlinux 0xa890ab19 iov_iter_xarray +EXPORT_SYMBOL vmlinux 0xa87931b2 udp_seq_next +EXPORT_SYMBOL vmlinux 0xa8924528 __brelse +EXPORT_SYMBOL vmlinux 0xa8939162 submit_bh EXPORT_SYMBOL vmlinux 0xa897e3e7 mempool_free EXPORT_SYMBOL vmlinux 0xa89a1cf1 ipmi_dmi_get_slave_addr -EXPORT_SYMBOL vmlinux 0xa89f3e9f tty_port_close_start -EXPORT_SYMBOL vmlinux 0xa8a1254b netif_rx EXPORT_SYMBOL vmlinux 0xa8a8110c kernel_neon_end -EXPORT_SYMBOL vmlinux 0xa8bd5512 vm_iomap_memory +EXPORT_SYMBOL vmlinux 0xa8b21aa7 dev_pm_opp_unregister_notifier +EXPORT_SYMBOL vmlinux 0xa8b283e7 nf_setsockopt +EXPORT_SYMBOL vmlinux 0xa8b83821 scsi_dma_map EXPORT_SYMBOL vmlinux 0xa8caa845 clk_bulk_put_all -EXPORT_SYMBOL vmlinux 0xa8d19ecd d_set_d_op -EXPORT_SYMBOL vmlinux 0xa8d65ad1 flow_rule_match_basic -EXPORT_SYMBOL vmlinux 0xa8d8271d build_skb_around +EXPORT_SYMBOL vmlinux 0xa8e02bb9 ip_do_fragment EXPORT_SYMBOL vmlinux 0xa8e6933a qdf2400_e44_present -EXPORT_SYMBOL vmlinux 0xa8f1880d neigh_seq_next +EXPORT_SYMBOL vmlinux 0xa8ead7fb find_vma +EXPORT_SYMBOL vmlinux 0xa8ebd755 xsk_clear_rx_need_wakeup EXPORT_SYMBOL vmlinux 0xa8f6c843 ip_frag_ecn_table +EXPORT_SYMBOL vmlinux 0xa8f7ef36 __neigh_set_probe_once EXPORT_SYMBOL vmlinux 0xa90ca0de flush_rcu_work EXPORT_SYMBOL vmlinux 0xa916b694 strnlen -EXPORT_SYMBOL vmlinux 0xa920de5c of_get_next_cpu_node EXPORT_SYMBOL vmlinux 0xa924b4aa __traceiter_kmem_cache_alloc_node -EXPORT_SYMBOL vmlinux 0xa931ef93 skb_copy_and_csum_datagram_msg -EXPORT_SYMBOL vmlinux 0xa9324573 regset_get -EXPORT_SYMBOL vmlinux 0xa934bc4b flow_get_u32_dst -EXPORT_SYMBOL vmlinux 0xa9441557 dev_mc_add_global -EXPORT_SYMBOL vmlinux 0xa94c9b0c simple_transaction_read -EXPORT_SYMBOL vmlinux 0xa9543e50 kmem_cache_alloc_node -EXPORT_SYMBOL vmlinux 0xa964de6f pci_assign_resource +EXPORT_SYMBOL vmlinux 0xa93bc054 generic_permission +EXPORT_SYMBOL vmlinux 0xa9576195 dev_addr_add +EXPORT_SYMBOL vmlinux 0xa960f9df scsi_remove_target +EXPORT_SYMBOL vmlinux 0xa963046f pagevec_lookup_range_tag EXPORT_SYMBOL vmlinux 0xa965ca81 reciprocal_value +EXPORT_SYMBOL vmlinux 0xa9679c22 __skb_checksum_complete_head EXPORT_SYMBOL vmlinux 0xa976957d bitmap_remap +EXPORT_SYMBOL vmlinux 0xa98e067d ppp_channel_index +EXPORT_SYMBOL vmlinux 0xa997edfd flow_rule_match_meta +EXPORT_SYMBOL vmlinux 0xa99940fb cdev_set_parent EXPORT_SYMBOL vmlinux 0xa99b39c2 prandom_bytes -EXPORT_SYMBOL vmlinux 0xa99c13f2 alloc_netdev_mqs -EXPORT_SYMBOL vmlinux 0xa9a4a6ca reuseport_alloc +EXPORT_SYMBOL vmlinux 0xa9b29abc scsi_is_host_device +EXPORT_SYMBOL vmlinux 0xa9ca5051 arp_xmit EXPORT_SYMBOL vmlinux 0xa9ed62d2 tegra_fuse_readl EXPORT_SYMBOL vmlinux 0xaa00fdc0 ec_transaction +EXPORT_SYMBOL vmlinux 0xaa07e385 param_set_charp EXPORT_SYMBOL vmlinux 0xaa0c318b vscnprintf -EXPORT_SYMBOL vmlinux 0xaa11e07c serio_reconnect +EXPORT_SYMBOL vmlinux 0xaa1182db devm_of_find_backlight +EXPORT_SYMBOL vmlinux 0xaa18e1e8 nvdimm_check_and_set_ro EXPORT_SYMBOL vmlinux 0xaa19e4aa _kstrtol -EXPORT_SYMBOL vmlinux 0xaa200275 thread_group_exited -EXPORT_SYMBOL vmlinux 0xaa21814c fib_default_rule_add -EXPORT_SYMBOL vmlinux 0xaa2ebd78 tcp_rcv_established -EXPORT_SYMBOL vmlinux 0xaa2f3d67 dev_printk_emit +EXPORT_SYMBOL vmlinux 0xaa237158 uart_add_one_port +EXPORT_SYMBOL vmlinux 0xaa2822f2 __hw_addr_ref_sync_dev EXPORT_SYMBOL vmlinux 0xaa341905 acpi_bios_exception -EXPORT_SYMBOL vmlinux 0xaa566bef sk_stream_kill_queues -EXPORT_SYMBOL vmlinux 0xaa68a716 dquot_claim_space_nodirty +EXPORT_SYMBOL vmlinux 0xaa365c3f tegra_ivc_write_advance +EXPORT_SYMBOL vmlinux 0xaa413e0f of_get_mac_address +EXPORT_SYMBOL vmlinux 0xaa5e6791 page_symlink EXPORT_SYMBOL vmlinux 0xaa6f23ad rfkill_get_led_trigger_name -EXPORT_SYMBOL vmlinux 0xaa7e0f0b dma_resv_fini -EXPORT_SYMBOL vmlinux 0xaa8025d0 of_node_put +EXPORT_SYMBOL vmlinux 0xaa742adc md_write_end EXPORT_SYMBOL vmlinux 0xaa8106bc crc8_populate_msb +EXPORT_SYMBOL vmlinux 0xaa8ea71c tcp_mss_to_mtu +EXPORT_SYMBOL vmlinux 0xaa927290 kernel_accept +EXPORT_SYMBOL vmlinux 0xaa9509f0 of_find_property EXPORT_SYMBOL vmlinux 0xaaa4b9bc hchacha_block_generic EXPORT_SYMBOL vmlinux 0xaaa50fb2 qcom_scm_lmh_profile_change -EXPORT_SYMBOL vmlinux 0xaaa7d16e netdev_lower_get_first_private_rcu +EXPORT_SYMBOL vmlinux 0xaaab1a01 md_bitmap_endwrite +EXPORT_SYMBOL vmlinux 0xaab14b49 jbd2_journal_errno EXPORT_SYMBOL vmlinux 0xaad0ae78 __bitmap_shift_right -EXPORT_SYMBOL vmlinux 0xaad0c48b tty_do_resize EXPORT_SYMBOL vmlinux 0xaad6d92f rfkill_init_sw_state EXPORT_SYMBOL vmlinux 0xaad8c7d6 default_wake_function EXPORT_SYMBOL vmlinux 0xaae8ab0e acpi_bus_power_manageable -EXPORT_SYMBOL vmlinux 0xaaf38ab0 udp_seq_start EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp -EXPORT_SYMBOL vmlinux 0xaafe968f filemap_fdatawait_range -EXPORT_SYMBOL vmlinux 0xaafebf1a shmem_aops -EXPORT_SYMBOL vmlinux 0xab092eab tcp_read_sock -EXPORT_SYMBOL vmlinux 0xab21e863 scsi_device_set_state -EXPORT_SYMBOL vmlinux 0xab2369dc poll_initwait -EXPORT_SYMBOL vmlinux 0xab244499 jbd2_journal_inode_ranged_wait +EXPORT_SYMBOL vmlinux 0xab0b3873 napi_schedule_prep EXPORT_SYMBOL vmlinux 0xab3697e4 irq_poll_init EXPORT_SYMBOL vmlinux 0xab3b75ea vme_dma_pattern_attribute -EXPORT_SYMBOL vmlinux 0xab4b7bb4 kern_path_create +EXPORT_SYMBOL vmlinux 0xab43914e __sk_queue_drop_skb +EXPORT_SYMBOL vmlinux 0xab451603 netdev_update_features +EXPORT_SYMBOL vmlinux 0xab52f717 inet_listen +EXPORT_SYMBOL vmlinux 0xab5311fa skb_append +EXPORT_SYMBOL vmlinux 0xab5935be mmc_calc_max_discard +EXPORT_SYMBOL vmlinux 0xab5fdd3a netdev_bonding_info_change EXPORT_SYMBOL vmlinux 0xab600421 probe_irq_off EXPORT_SYMBOL vmlinux 0xab63baa5 unregister_inetaddr_validator_notifier EXPORT_SYMBOL vmlinux 0xab67a0ac dql_init -EXPORT_SYMBOL vmlinux 0xab70755c mmc_gpio_get_ro +EXPORT_SYMBOL vmlinux 0xab6d5b3b hex_to_bin +EXPORT_SYMBOL vmlinux 0xab753e1e rproc_alloc +EXPORT_SYMBOL vmlinux 0xab762a7d phy_attach_direct EXPORT_SYMBOL vmlinux 0xab781570 fb_get_options -EXPORT_SYMBOL vmlinux 0xab8b95b0 input_event -EXPORT_SYMBOL vmlinux 0xab9209f1 netdev_features_change -EXPORT_SYMBOL vmlinux 0xab94bc3b kill_pid -EXPORT_SYMBOL vmlinux 0xabd9c225 kill_litter_super +EXPORT_SYMBOL vmlinux 0xab8c8b63 nf_log_trace +EXPORT_SYMBOL vmlinux 0xab9cabfd mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0xaba0062b dev_loopback_xmit +EXPORT_SYMBOL vmlinux 0xabafad6f mount_nodev +EXPORT_SYMBOL vmlinux 0xabb6722e skb_copy EXPORT_SYMBOL vmlinux 0xabeb9438 skb_flow_dissector_init -EXPORT_SYMBOL vmlinux 0xabf06b17 _dev_err EXPORT_SYMBOL vmlinux 0xabf32f29 utf16s_to_utf8s -EXPORT_SYMBOL vmlinux 0xabffd1e4 generic_fillattr EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier -EXPORT_SYMBOL vmlinux 0xac244d5b acpi_pm_device_sleep_state -EXPORT_SYMBOL vmlinux 0xac25aa53 sock_enable_timestamps -EXPORT_SYMBOL vmlinux 0xac29bf51 pnp_possible_config +EXPORT_SYMBOL vmlinux 0xac250ecd path_is_mountpoint EXPORT_SYMBOL vmlinux 0xac3201b0 udp_flow_hashrnd -EXPORT_SYMBOL vmlinux 0xac46212e jbd2_journal_blocks_per_page EXPORT_SYMBOL vmlinux 0xac537ac2 percpu_counter_destroy -EXPORT_SYMBOL vmlinux 0xac5bd487 input_mt_init_slots EXPORT_SYMBOL vmlinux 0xac5fcec0 in4_pton -EXPORT_SYMBOL vmlinux 0xac73bf8c of_find_i2c_device_by_node -EXPORT_SYMBOL vmlinux 0xac790ac0 mipi_dsi_turn_on_peripheral -EXPORT_SYMBOL vmlinux 0xac824b4b blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0xac715c4d pcim_iomap_regions +EXPORT_SYMBOL vmlinux 0xac845665 sched_autogroup_create_attach EXPORT_SYMBOL vmlinux 0xac8597d5 mb_cache_entry_get -EXPORT_SYMBOL vmlinux 0xac89f9e7 genphy_config_eee_advert -EXPORT_SYMBOL vmlinux 0xac9d7bf9 pci_bus_read_config_dword +EXPORT_SYMBOL vmlinux 0xac8a8596 pci_back_from_sleep +EXPORT_SYMBOL vmlinux 0xac9d2f4f mr_fill_mroute +EXPORT_SYMBOL vmlinux 0xac9e6aa8 kernel_param_unlock EXPORT_SYMBOL vmlinux 0xacaa4c72 dma_fence_match_context EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu -EXPORT_SYMBOL vmlinux 0xacc8c335 blk_get_queue +EXPORT_SYMBOL vmlinux 0xacb3ee80 from_kprojid_munged +EXPORT_SYMBOL vmlinux 0xacc46e5f pci_alloc_dev +EXPORT_SYMBOL vmlinux 0xacc95a9b sock_edemux EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache EXPORT_SYMBOL vmlinux 0xacddd806 ptp_get_vclocks_index -EXPORT_SYMBOL vmlinux 0xacde736a input_unregister_handler -EXPORT_SYMBOL vmlinux 0xace27a9c vme_slave_request +EXPORT_SYMBOL vmlinux 0xacde33ac sock_setsockopt +EXPORT_SYMBOL vmlinux 0xace5f90b kern_unmount_array +EXPORT_SYMBOL vmlinux 0xace6a523 security_inode_notifysecctx +EXPORT_SYMBOL vmlinux 0xacf2d42f phy_device_free +EXPORT_SYMBOL vmlinux 0xacf428f8 dquot_claim_space_nodirty EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup EXPORT_SYMBOL vmlinux 0xacf649bf audit_log_task_info -EXPORT_SYMBOL vmlinux 0xacf8d585 scsi_is_target_device -EXPORT_SYMBOL vmlinux 0xacfcff9b phy_drivers_register -EXPORT_SYMBOL vmlinux 0xacff6ad5 sk_dst_check +EXPORT_SYMBOL vmlinux 0xad032b1c processors EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex +EXPORT_SYMBOL vmlinux 0xad100ade dm_table_get_mode +EXPORT_SYMBOL vmlinux 0xad11eef0 iterate_fd EXPORT_SYMBOL vmlinux 0xad128dc1 __tracepoint_dma_fence_enable_signal -EXPORT_SYMBOL vmlinux 0xad2869a6 of_get_mac_address -EXPORT_SYMBOL vmlinux 0xad2bb789 disk_end_io_acct EXPORT_SYMBOL vmlinux 0xad357133 __traceiter_kmalloc_node -EXPORT_SYMBOL vmlinux 0xad35c17f sock_no_bind +EXPORT_SYMBOL vmlinux 0xad3c0079 tcp_splice_read EXPORT_SYMBOL vmlinux 0xad3ea04c qman_p_irqsource_remove -EXPORT_SYMBOL vmlinux 0xad505d0e __SetPageMovable -EXPORT_SYMBOL vmlinux 0xad50cb22 submit_bio_wait -EXPORT_SYMBOL vmlinux 0xad5fec0b tcf_exts_dump_stats -EXPORT_SYMBOL vmlinux 0xad600942 jbd2_journal_force_commit_nested -EXPORT_SYMBOL vmlinux 0xad66b63e clocksource_change_rating +EXPORT_SYMBOL vmlinux 0xad46ccd0 of_graph_get_remote_port_parent +EXPORT_SYMBOL vmlinux 0xad5cc161 tcp_rcv_state_process 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 0xad7a8f0d sock_from_file -EXPORT_SYMBOL vmlinux 0xad7d05ec unmap_mapping_range -EXPORT_SYMBOL vmlinux 0xad7d0680 get_tz_trend EXPORT_SYMBOL vmlinux 0xad9901ae bit_waitqueue EXPORT_SYMBOL vmlinux 0xad995dac netdev_stats_to_stats64 EXPORT_SYMBOL vmlinux 0xada31e57 gen_pool_dma_alloc_align +EXPORT_SYMBOL vmlinux 0xadab90f1 pipe_unlock +EXPORT_SYMBOL vmlinux 0xadb72667 seg6_hmac_net_init EXPORT_SYMBOL vmlinux 0xadbeed61 mipi_dsi_packet_format_is_long EXPORT_SYMBOL vmlinux 0xadcba50b ZSTD_findFrameCompressedSize EXPORT_SYMBOL vmlinux 0xadd139d4 rfs_needed -EXPORT_SYMBOL vmlinux 0xaddffd75 dev_loopback_xmit -EXPORT_SYMBOL vmlinux 0xade3a9ff set_cached_acl -EXPORT_SYMBOL vmlinux 0xadf0b6f3 skb_checksum_trimmed +EXPORT_SYMBOL vmlinux 0xadec1990 freeze_bdev EXPORT_SYMBOL vmlinux 0xadfdfcef __bitmap_andnot EXPORT_SYMBOL vmlinux 0xae04012c __vmalloc +EXPORT_SYMBOL vmlinux 0xae051ecc scsi_vpd_lun_id +EXPORT_SYMBOL vmlinux 0xae248e0e ip_frag_next EXPORT_SYMBOL vmlinux 0xae316c11 icmpv6_err_convert EXPORT_SYMBOL vmlinux 0xae33c403 xudma_navss_psil_unpair +EXPORT_SYMBOL vmlinux 0xae3844d2 dquot_quota_on +EXPORT_SYMBOL vmlinux 0xae3aa2ab tcf_exts_dump +EXPORT_SYMBOL vmlinux 0xae4c8120 tcp_select_initial_window EXPORT_SYMBOL vmlinux 0xae5a04bb acpi_evaluate_dsm -EXPORT_SYMBOL vmlinux 0xae880f25 current_in_userns +EXPORT_SYMBOL vmlinux 0xae5b6ad9 netdev_crit +EXPORT_SYMBOL vmlinux 0xae915eee cdev_init +EXPORT_SYMBOL vmlinux 0xae96ef33 ip6_route_me_harder +EXPORT_SYMBOL vmlinux 0xae9a2c00 security_sb_remount EXPORT_SYMBOL vmlinux 0xaeac049a generate_random_guid -EXPORT_SYMBOL vmlinux 0xaebcd99c inet_proto_csum_replace4 +EXPORT_SYMBOL vmlinux 0xaeb5b4d2 sdev_enable_disk_events EXPORT_SYMBOL vmlinux 0xaebd12f0 acpi_get_name -EXPORT_SYMBOL vmlinux 0xaec59ed7 netdev_adjacent_change_prepare -EXPORT_SYMBOL vmlinux 0xaecaa908 security_lock_kernel_down -EXPORT_SYMBOL vmlinux 0xaedadbc5 jbd2_journal_finish_inode_data_buffers -EXPORT_SYMBOL vmlinux 0xaee31e24 dev_mc_del -EXPORT_SYMBOL vmlinux 0xaef0a51c dev_queue_xmit -EXPORT_SYMBOL vmlinux 0xaef8b231 dquot_quota_on_mount -EXPORT_SYMBOL vmlinux 0xaefc447a tty_port_put -EXPORT_SYMBOL vmlinux 0xaf02af5d vfs_rename -EXPORT_SYMBOL vmlinux 0xaf115930 read_cache_page_gfp -EXPORT_SYMBOL vmlinux 0xaf1ec3d9 locks_remove_posix +EXPORT_SYMBOL vmlinux 0xaee4a32d dev_set_promiscuity +EXPORT_SYMBOL vmlinux 0xaf0b3086 jbd2_journal_force_commit_nested +EXPORT_SYMBOL vmlinux 0xaf129982 generic_read_dir +EXPORT_SYMBOL vmlinux 0xaf2c33ce csum_and_copy_from_iter +EXPORT_SYMBOL vmlinux 0xaf32d6f1 cros_ec_get_next_event +EXPORT_SYMBOL vmlinux 0xaf3332b9 pci_request_selected_regions EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level -EXPORT_SYMBOL vmlinux 0xaf501146 __netlink_dump_start +EXPORT_SYMBOL vmlinux 0xaf4b3d47 dev_add_offload EXPORT_SYMBOL vmlinux 0xaf56600a arm64_use_ng_mappings -EXPORT_SYMBOL vmlinux 0xaf5bbe31 vfs_clone_file_range -EXPORT_SYMBOL vmlinux 0xaf648d5d udp_lib_getsockopt -EXPORT_SYMBOL vmlinux 0xaf670c3a netif_device_detach -EXPORT_SYMBOL vmlinux 0xaf6b79a4 vfs_copy_file_range -EXPORT_SYMBOL vmlinux 0xaf739e1c simple_dentry_operations -EXPORT_SYMBOL vmlinux 0xaf9f7f43 set_user_nice +EXPORT_SYMBOL vmlinux 0xaf6bc688 eth_gro_receive +EXPORT_SYMBOL vmlinux 0xaf85c861 blk_queue_physical_block_size +EXPORT_SYMBOL vmlinux 0xaf8a4953 napi_get_frags EXPORT_SYMBOL vmlinux 0xafb864c1 refcount_dec_and_lock_irqsave EXPORT_SYMBOL vmlinux 0xafc08054 dotdot_name -EXPORT_SYMBOL vmlinux 0xafd17730 tegra_dfll_runtime_suspend -EXPORT_SYMBOL vmlinux 0xafe54b42 __napi_schedule_irqoff -EXPORT_SYMBOL vmlinux 0xaff4b6b4 phy_attached_print -EXPORT_SYMBOL vmlinux 0xb003ffce mnt_drop_write_file -EXPORT_SYMBOL vmlinux 0xb00881d3 dquot_initialize_needed -EXPORT_SYMBOL vmlinux 0xb00d3b8f fb_get_mode -EXPORT_SYMBOL vmlinux 0xb00e011a __serio_register_port -EXPORT_SYMBOL vmlinux 0xb01bcff5 nd_integrity_init +EXPORT_SYMBOL vmlinux 0xafc5241d d_obtain_root +EXPORT_SYMBOL vmlinux 0xafcc6fdb phy_print_status +EXPORT_SYMBOL vmlinux 0xafeb3ae8 of_xudma_dev_get +EXPORT_SYMBOL vmlinux 0xb010cc55 kmem_cache_alloc_bulk +EXPORT_SYMBOL vmlinux 0xb016826e tcp_mmap EXPORT_SYMBOL vmlinux 0xb01bebf9 xfrm_get_acqseq -EXPORT_SYMBOL vmlinux 0xb0265c0d blk_set_queue_depth -EXPORT_SYMBOL vmlinux 0xb03566d3 tcp_seq_next +EXPORT_SYMBOL vmlinux 0xb031235f get_tree_nodev +EXPORT_SYMBOL vmlinux 0xb03c576d ndo_dflt_fdb_dump +EXPORT_SYMBOL vmlinux 0xb04a390b may_setattr EXPORT_SYMBOL vmlinux 0xb04a43ad __xa_alloc_cyclic -EXPORT_SYMBOL vmlinux 0xb051124c flow_rule_match_enc_ipv4_addrs +EXPORT_SYMBOL vmlinux 0xb050bd0b sockfd_lookup EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max -EXPORT_SYMBOL vmlinux 0xb060fd55 ip_frag_next -EXPORT_SYMBOL vmlinux 0xb075d5dd filemap_invalidate_lock_two -EXPORT_SYMBOL vmlinux 0xb07e7c88 devfreq_remove_governor -EXPORT_SYMBOL vmlinux 0xb083d7fd mmc_gpiod_request_cd -EXPORT_SYMBOL vmlinux 0xb092574c bdev_check_media_change +EXPORT_SYMBOL vmlinux 0xb070a46c simple_transaction_release +EXPORT_SYMBOL vmlinux 0xb07d7f92 kmem_cache_create_usercopy +EXPORT_SYMBOL vmlinux 0xb08b5005 mount_single +EXPORT_SYMBOL vmlinux 0xb0948ab1 nvmem_get_mac_address EXPORT_SYMBOL vmlinux 0xb0a0da0c rational_best_approximation -EXPORT_SYMBOL vmlinux 0xb0a9fd30 delete_from_page_cache -EXPORT_SYMBOL vmlinux 0xb0ac25ec twl6040_reg_write +EXPORT_SYMBOL vmlinux 0xb0a4037f dquot_scan_active +EXPORT_SYMBOL vmlinux 0xb0aac41c find_inode_rcu +EXPORT_SYMBOL vmlinux 0xb0c3a69c gro_cells_receive EXPORT_SYMBOL vmlinux 0xb0c5e247 lockref_put_return -EXPORT_SYMBOL vmlinux 0xb0d4987f devm_clk_get_optional -EXPORT_SYMBOL vmlinux 0xb0dd626e bio_chain +EXPORT_SYMBOL vmlinux 0xb0cab60f tcf_em_unregister +EXPORT_SYMBOL vmlinux 0xb0d507bf d_lookup EXPORT_SYMBOL vmlinux 0xb0e10781 get_option -EXPORT_SYMBOL vmlinux 0xb0ea66f9 mipi_dsi_dcs_set_pixel_format -EXPORT_SYMBOL vmlinux 0xb0f33325 neigh_table_init +EXPORT_SYMBOL vmlinux 0xb0f310ed ip_ct_attach EXPORT_SYMBOL vmlinux 0xb0f389ee utf8_normalize -EXPORT_SYMBOL vmlinux 0xb0fb90ff xfrm_policy_destroy +EXPORT_SYMBOL vmlinux 0xb0fbd4bc phy_config_aneg +EXPORT_SYMBOL vmlinux 0xb0ff1560 jbd2_journal_get_create_access +EXPORT_SYMBOL vmlinux 0xb10a8fca xfrm_input EXPORT_SYMBOL vmlinux 0xb10e7df4 __kfifo_dma_in_prepare -EXPORT_SYMBOL vmlinux 0xb11e8e9c migrate_page_copy +EXPORT_SYMBOL vmlinux 0xb10f4c0d tso_build_hdr +EXPORT_SYMBOL vmlinux 0xb115e5e0 __mod_node_page_state +EXPORT_SYMBOL vmlinux 0xb11e9725 kset_unregister EXPORT_SYMBOL vmlinux 0xb121390a probe_irq_on -EXPORT_SYMBOL vmlinux 0xb12824ad nf_unregister_sockopt -EXPORT_SYMBOL vmlinux 0xb12a81cd bdev_dax_pgoff +EXPORT_SYMBOL vmlinux 0xb128c2fe touchscreen_parse_properties EXPORT_SYMBOL vmlinux 0xb12cbacb fb_unregister_client -EXPORT_SYMBOL vmlinux 0xb147562f dec_node_page_state +EXPORT_SYMBOL vmlinux 0xb134c02a tc_setup_cb_destroy EXPORT_SYMBOL vmlinux 0xb14ab1ef hdmi_audio_infoframe_init EXPORT_SYMBOL vmlinux 0xb14fc46a find_next_clump8 -EXPORT_SYMBOL vmlinux 0xb1642aef pci_wait_for_pending_transaction -EXPORT_SYMBOL vmlinux 0xb1679212 twl6030_mmc_card_detect -EXPORT_SYMBOL vmlinux 0xb16d8761 softnet_data -EXPORT_SYMBOL vmlinux 0xb18788fe register_mii_tstamp_controller -EXPORT_SYMBOL vmlinux 0xb19b77b0 pci_request_irq -EXPORT_SYMBOL vmlinux 0xb19c36eb neigh_parms_release -EXPORT_SYMBOL vmlinux 0xb1a3a351 ndisc_mc_map -EXPORT_SYMBOL vmlinux 0xb1a573b8 pci_get_device -EXPORT_SYMBOL vmlinux 0xb1a63ae0 ram_aops -EXPORT_SYMBOL vmlinux 0xb1adb239 blk_mq_tagset_busy_iter -EXPORT_SYMBOL vmlinux 0xb1bb1c85 __mmap_lock_do_trace_released -EXPORT_SYMBOL vmlinux 0xb1c0f386 fsl_ifc_ctrl_dev -EXPORT_SYMBOL vmlinux 0xb1c10413 uart_remove_one_port +EXPORT_SYMBOL vmlinux 0xb15258af __ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0xb1833c20 dev_driver_string +EXPORT_SYMBOL vmlinux 0xb184370d tcf_qevent_dump +EXPORT_SYMBOL vmlinux 0xb1879401 netpoll_print_options +EXPORT_SYMBOL vmlinux 0xb187c638 kernel_bind +EXPORT_SYMBOL vmlinux 0xb199f490 xfrm6_protocol_register +EXPORT_SYMBOL vmlinux 0xb1a4124a neigh_xmit +EXPORT_SYMBOL vmlinux 0xb1a5446a of_mdiobus_register +EXPORT_SYMBOL vmlinux 0xb1b4682c __skb_flow_dissect +EXPORT_SYMBOL vmlinux 0xb1b7af48 xfrm_state_add +EXPORT_SYMBOL vmlinux 0xb1bd382e eth_get_headlen EXPORT_SYMBOL vmlinux 0xb1c3a01a oops_in_progress -EXPORT_SYMBOL vmlinux 0xb1cd1b23 d_exact_alias EXPORT_SYMBOL vmlinux 0xb1d3a15c blk_finish_plug EXPORT_SYMBOL vmlinux 0xb1db9a69 fsl_ifc_find EXPORT_SYMBOL vmlinux 0xb1ddf995 jiffies_64_to_clock_t -EXPORT_SYMBOL vmlinux 0xb20b0485 jbd2_journal_start -EXPORT_SYMBOL vmlinux 0xb20ebdc3 device_get_mac_address -EXPORT_SYMBOL vmlinux 0xb20f4f12 fscrypt_decrypt_block_inplace +EXPORT_SYMBOL vmlinux 0xb1de24d3 cros_ec_prepare_tx +EXPORT_SYMBOL vmlinux 0xb1e562cb sync_mapping_buffers +EXPORT_SYMBOL vmlinux 0xb1f6f6cf zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0xb2042cea __fib6_flush_trees +EXPORT_SYMBOL vmlinux 0xb209879a scsi_block_when_processing_errors +EXPORT_SYMBOL vmlinux 0xb20d2108 mpage_writepage +EXPORT_SYMBOL vmlinux 0xb20f09af security_binder_transfer_file +EXPORT_SYMBOL vmlinux 0xb21dd7ce i2c_verify_client +EXPORT_SYMBOL vmlinux 0xb2210c3b genphy_resume EXPORT_SYMBOL vmlinux 0xb22e16d5 radix_tree_maybe_preload EXPORT_SYMBOL vmlinux 0xb23027c1 kstrtos16_from_user -EXPORT_SYMBOL vmlinux 0xb23ef9ff mii_check_link -EXPORT_SYMBOL vmlinux 0xb273a2fd phy_ethtool_get_wol -EXPORT_SYMBOL vmlinux 0xb27e276a of_graph_is_present -EXPORT_SYMBOL vmlinux 0xb287ebd2 md_bitmap_end_sync -EXPORT_SYMBOL vmlinux 0xb2a5d408 tcf_exts_validate -EXPORT_SYMBOL vmlinux 0xb2ad6157 logfc -EXPORT_SYMBOL vmlinux 0xb2b15861 ip_do_fragment +EXPORT_SYMBOL vmlinux 0xb238ff56 padata_free +EXPORT_SYMBOL vmlinux 0xb23a939e msm_pinctrl_remove +EXPORT_SYMBOL vmlinux 0xb247cae6 clocksource_unregister +EXPORT_SYMBOL vmlinux 0xb24b6562 ata_scsi_cmd_error_handler +EXPORT_SYMBOL vmlinux 0xb2548e22 jbd2_complete_transaction +EXPORT_SYMBOL vmlinux 0xb25524d2 netif_tx_wake_queue +EXPORT_SYMBOL vmlinux 0xb25fa594 __sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0xb261df03 blk_mq_init_allocated_queue +EXPORT_SYMBOL vmlinux 0xb293ecf7 pci_fixup_device +EXPORT_SYMBOL vmlinux 0xb29e9567 blk_get_request EXPORT_SYMBOL vmlinux 0xb2bcb088 acpi_current_gpe_count -EXPORT_SYMBOL vmlinux 0xb2bec63f pci_alloc_irq_vectors_affinity -EXPORT_SYMBOL vmlinux 0xb2bfb142 pmem_should_map_pages -EXPORT_SYMBOL vmlinux 0xb2c903eb cfb_copyarea -EXPORT_SYMBOL vmlinux 0xb2cd2fc6 key_unlink -EXPORT_SYMBOL vmlinux 0xb2e1172b pci_unregister_driver +EXPORT_SYMBOL vmlinux 0xb2c52f9b __sock_create +EXPORT_SYMBOL vmlinux 0xb2ca70a7 tegra_ivc_notified +EXPORT_SYMBOL vmlinux 0xb2def8f7 cdrom_mode_select +EXPORT_SYMBOL vmlinux 0xb2e7b39c bfifo_qdisc_ops EXPORT_SYMBOL vmlinux 0xb2ead97c kimage_vaddr EXPORT_SYMBOL vmlinux 0xb2f35c6a xxh64 EXPORT_SYMBOL vmlinux 0xb2f579c7 __cpuhp_remove_state_cpuslocked EXPORT_SYMBOL vmlinux 0xb2fcb56d queue_delayed_work_on -EXPORT_SYMBOL vmlinux 0xb3039303 mmc_can_discard EXPORT_SYMBOL vmlinux 0xb308c97d wait_woken +EXPORT_SYMBOL vmlinux 0xb30999f6 __skb_wait_for_more_packets EXPORT_SYMBOL vmlinux 0xb30b9822 vme_master_set -EXPORT_SYMBOL vmlinux 0xb31938a8 __do_once_done -EXPORT_SYMBOL vmlinux 0xb31e6086 skb_eth_push +EXPORT_SYMBOL vmlinux 0xb31a7f99 fget +EXPORT_SYMBOL vmlinux 0xb31b3f36 blk_queue_chunk_sectors EXPORT_SYMBOL vmlinux 0xb320cc0e sg_init_one EXPORT_SYMBOL vmlinux 0xb3258f79 __ubsan_handle_type_mismatch_v1 EXPORT_SYMBOL vmlinux 0xb32728bb qcom_scm_iommu_secure_ptbl_init -EXPORT_SYMBOL vmlinux 0xb328eb95 pci_remove_bus -EXPORT_SYMBOL vmlinux 0xb329ac36 udp_gro_receive -EXPORT_SYMBOL vmlinux 0xb34d07f8 put_watch_queue +EXPORT_SYMBOL vmlinux 0xb348a973 udp_seq_start EXPORT_SYMBOL vmlinux 0xb34dca1c kryo_l2_get_indirect_reg -EXPORT_SYMBOL vmlinux 0xb34f9530 xfrm_state_lookup_byspi -EXPORT_SYMBOL vmlinux 0xb35764fa bioset_init +EXPORT_SYMBOL vmlinux 0xb3644bc7 of_iomap EXPORT_SYMBOL vmlinux 0xb3687850 out_of_line_wait_on_bit_lock -EXPORT_SYMBOL vmlinux 0xb36aaa9b param_get_short -EXPORT_SYMBOL vmlinux 0xb37b6fd4 inet_pton_with_scope -EXPORT_SYMBOL vmlinux 0xb3824e29 mmc_unregister_driver -EXPORT_SYMBOL vmlinux 0xb3932e03 dquot_file_open +EXPORT_SYMBOL vmlinux 0xb36ff330 tcp_initialize_rcv_mss +EXPORT_SYMBOL vmlinux 0xb3709a33 __dst_destroy_metrics_generic +EXPORT_SYMBOL vmlinux 0xb37b0a62 audit_log_start +EXPORT_SYMBOL vmlinux 0xb3871e02 __put_user_ns +EXPORT_SYMBOL vmlinux 0xb3941cf7 kernel_sendpage +EXPORT_SYMBOL vmlinux 0xb3944996 jbd2_journal_init_jbd_inode +EXPORT_SYMBOL vmlinux 0xb39d628a init_special_inode EXPORT_SYMBOL vmlinux 0xb3a82019 profile_pc -EXPORT_SYMBOL vmlinux 0xb3b533da rc5t583_ext_power_req_config -EXPORT_SYMBOL vmlinux 0xb3bbf941 blk_rq_map_user_iov +EXPORT_SYMBOL vmlinux 0xb3a9261b qdisc_reset +EXPORT_SYMBOL vmlinux 0xb3bb7ddc user_path_at_empty +EXPORT_SYMBOL vmlinux 0xb3bcd863 tty_port_carrier_raised EXPORT_SYMBOL vmlinux 0xb3bd68cc security_secmark_relabel_packet -EXPORT_SYMBOL vmlinux 0xb3c9f843 get_acl -EXPORT_SYMBOL vmlinux 0xb3d221d5 phy_attached_info_irq +EXPORT_SYMBOL vmlinux 0xb3c159ac mii_check_gmii_support EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string -EXPORT_SYMBOL vmlinux 0xb3d9b3c3 phy_stop -EXPORT_SYMBOL vmlinux 0xb3dc648f netdev_adjacent_change_abort -EXPORT_SYMBOL vmlinux 0xb3ec8dfe blk_queue_max_segment_size -EXPORT_SYMBOL vmlinux 0xb3f3f4d9 pm8606_osc_disable +EXPORT_SYMBOL vmlinux 0xb3d4752a __neigh_event_send +EXPORT_SYMBOL vmlinux 0xb3e0e12f ptp_find_pin +EXPORT_SYMBOL vmlinux 0xb3e37103 vfs_iter_read +EXPORT_SYMBOL vmlinux 0xb3ea57be inode_init_owner +EXPORT_SYMBOL vmlinux 0xb3f02300 xp_free EXPORT_SYMBOL vmlinux 0xb3f49446 kstrtos8_from_user EXPORT_SYMBOL vmlinux 0xb3f548ad kmemdup_nul -EXPORT_SYMBOL vmlinux 0xb3f5efc7 rdmacg_try_charge EXPORT_SYMBOL vmlinux 0xb3f7646e kthread_should_stop -EXPORT_SYMBOL vmlinux 0xb3f9e0ab security_locked_down -EXPORT_SYMBOL vmlinux 0xb4019951 msm_pinctrl_remove +EXPORT_SYMBOL vmlinux 0xb4035c8b dma_get_sgtable_attrs EXPORT_SYMBOL vmlinux 0xb4043948 acpi_execute_simple_method -EXPORT_SYMBOL vmlinux 0xb409d6f2 vm_map_ram -EXPORT_SYMBOL vmlinux 0xb41238e2 module_refcount +EXPORT_SYMBOL vmlinux 0xb40f2e13 bh_uptodate_or_lock +EXPORT_SYMBOL vmlinux 0xb41be590 backlight_device_get_by_type +EXPORT_SYMBOL vmlinux 0xb41d6077 tag_pages_for_writeback EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked -EXPORT_SYMBOL vmlinux 0xb4341732 devfreq_update_interval -EXPORT_SYMBOL vmlinux 0xb44239fe dump_skip_to -EXPORT_SYMBOL vmlinux 0xb44f2df9 devm_mdiobus_alloc_size EXPORT_SYMBOL vmlinux 0xb4577003 acpi_dev_present -EXPORT_SYMBOL vmlinux 0xb457a485 vga_put -EXPORT_SYMBOL vmlinux 0xb45a31cc jbd2_journal_check_available_features -EXPORT_SYMBOL vmlinux 0xb45dbf0b jbd2_journal_get_write_access -EXPORT_SYMBOL vmlinux 0xb46d6723 phy_error -EXPORT_SYMBOL vmlinux 0xb46ef755 input_unregister_device -EXPORT_SYMBOL vmlinux 0xb4704e9f of_clk_get_by_name -EXPORT_SYMBOL vmlinux 0xb4811f43 mipi_dsi_shutdown_peripheral -EXPORT_SYMBOL vmlinux 0xb4835b55 __xfrm_init_state -EXPORT_SYMBOL vmlinux 0xb4856ca7 input_mt_report_finger_count -EXPORT_SYMBOL vmlinux 0xb48c1a82 fman_get_bmi_max_fifo_size +EXPORT_SYMBOL vmlinux 0xb45a8095 load_nls +EXPORT_SYMBOL vmlinux 0xb4663653 nf_reinject +EXPORT_SYMBOL vmlinux 0xb46afb93 mmc_erase_group_aligned +EXPORT_SYMBOL vmlinux 0xb4819811 con_is_bound +EXPORT_SYMBOL vmlinux 0xb48a6132 skb_eth_push EXPORT_SYMBOL vmlinux 0xb48d4d22 security_sb_eat_lsm_opts -EXPORT_SYMBOL vmlinux 0xb498ad23 simple_lookup -EXPORT_SYMBOL vmlinux 0xb4a0500e alloc_fcdev -EXPORT_SYMBOL vmlinux 0xb4a5726a mipi_dsi_attach -EXPORT_SYMBOL vmlinux 0xb4c16ff0 sock_no_ioctl -EXPORT_SYMBOL vmlinux 0xb4e800ed pps_lookup_dev -EXPORT_SYMBOL vmlinux 0xb4e8c984 rproc_remove_subdev +EXPORT_SYMBOL vmlinux 0xb497bcf4 unregister_console +EXPORT_SYMBOL vmlinux 0xb497c072 mii_link_ok +EXPORT_SYMBOL vmlinux 0xb4a1723a blk_rq_unmap_user +EXPORT_SYMBOL vmlinux 0xb4b72b48 ww_mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0xb4bc5255 sock_no_listen +EXPORT_SYMBOL vmlinux 0xb4c9ea86 vfs_link +EXPORT_SYMBOL vmlinux 0xb4e7bfea put_fs_context +EXPORT_SYMBOL vmlinux 0xb4ec5e82 get_user_pages EXPORT_SYMBOL vmlinux 0xb4f13d2a abort -EXPORT_SYMBOL vmlinux 0xb50a0818 of_find_compatible_node -EXPORT_SYMBOL vmlinux 0xb5270564 generic_block_bmap +EXPORT_SYMBOL vmlinux 0xb504070e filemap_check_errors +EXPORT_SYMBOL vmlinux 0xb5113fc9 dst_cow_metrics_generic +EXPORT_SYMBOL vmlinux 0xb51d714b take_dentry_name_snapshot EXPORT_SYMBOL vmlinux 0xb53f2810 tcp_sockets_allocated -EXPORT_SYMBOL vmlinux 0xb55198aa ps2_cmd_aborted +EXPORT_SYMBOL vmlinux 0xb54f6538 xfrm_policy_delete EXPORT_SYMBOL vmlinux 0xb57343c2 frontswap_shrink -EXPORT_SYMBOL vmlinux 0xb577adf6 xp_raw_get_dma EXPORT_SYMBOL vmlinux 0xb57f1e27 fman_port_disable -EXPORT_SYMBOL vmlinux 0xb57f91ad mmc_can_gpio_ro EXPORT_SYMBOL vmlinux 0xb58aeaab kernel_cpustat +EXPORT_SYMBOL vmlinux 0xb593c6c8 inet_register_protosw EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev -EXPORT_SYMBOL vmlinux 0xb5a99bd4 read_cache_pages +EXPORT_SYMBOL vmlinux 0xb5a815d4 thaw_super EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy +EXPORT_SYMBOL vmlinux 0xb5b55e20 __dev_get_by_flags EXPORT_SYMBOL vmlinux 0xb5b63711 fileattr_fill_xflags -EXPORT_SYMBOL vmlinux 0xb5df0c51 starget_for_each_device +EXPORT_SYMBOL vmlinux 0xb5c079c7 block_write_begin +EXPORT_SYMBOL vmlinux 0xb5d7d8af fman_port_get_device +EXPORT_SYMBOL vmlinux 0xb5e03b91 qdisc_create_dflt +EXPORT_SYMBOL vmlinux 0xb5e3aa4b mdiobus_write EXPORT_SYMBOL vmlinux 0xb5e73116 flush_delayed_work -EXPORT_SYMBOL vmlinux 0xb5f0d17a nd_btt_arena_is_valid -EXPORT_SYMBOL vmlinux 0xb6041a62 inet_select_addr -EXPORT_SYMBOL vmlinux 0xb6081df3 reuseport_select_sock -EXPORT_SYMBOL vmlinux 0xb6131ae1 register_netdevice_notifier_net +EXPORT_SYMBOL vmlinux 0xb61571ea rio_query_mport EXPORT_SYMBOL vmlinux 0xb61d6fc2 down_read_interruptible -EXPORT_SYMBOL vmlinux 0xb6230872 inet_sk_set_state -EXPORT_SYMBOL vmlinux 0xb6242db5 tcf_idrinfo_destroy +EXPORT_SYMBOL vmlinux 0xb62a4df7 devm_extcon_unregister_notifier_all EXPORT_SYMBOL vmlinux 0xb633f115 irq_poll_enable -EXPORT_SYMBOL vmlinux 0xb63cca78 devm_pci_remap_cfg_resource -EXPORT_SYMBOL vmlinux 0xb64676ca bio_copy_data_iter -EXPORT_SYMBOL vmlinux 0xb64fb190 tegra_dfll_suspend -EXPORT_SYMBOL vmlinux 0xb6523938 put_ipc_ns EXPORT_SYMBOL vmlinux 0xb654ef65 acpi_os_read_port -EXPORT_SYMBOL vmlinux 0xb67085b1 sk_reset_timer +EXPORT_SYMBOL vmlinux 0xb668f6c9 neigh_sysctl_register +EXPORT_SYMBOL vmlinux 0xb66edc4a fb_blank +EXPORT_SYMBOL vmlinux 0xb673935b nexthop_bucket_set_hw_flags EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt EXPORT_SYMBOL vmlinux 0xb67c9280 utf8cursor +EXPORT_SYMBOL vmlinux 0xb67f892b tcf_idr_create_from_flags EXPORT_SYMBOL vmlinux 0xb67fec0e uuid_parse -EXPORT_SYMBOL vmlinux 0xb68ff3ff kernel_accept -EXPORT_SYMBOL vmlinux 0xb6921b0a generic_fill_statx_attr +EXPORT_SYMBOL vmlinux 0xb6828546 netlink_net_capable EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin -EXPORT_SYMBOL vmlinux 0xb6a4f8f2 phy_config_aneg +EXPORT_SYMBOL vmlinux 0xb6a0c0d7 netdev_get_xmit_slave EXPORT_SYMBOL vmlinux 0xb6acaa13 phy_sfp_detach -EXPORT_SYMBOL vmlinux 0xb6bcd35c phy_drivers_unregister -EXPORT_SYMBOL vmlinux 0xb6e2ac8e nf_log_register +EXPORT_SYMBOL vmlinux 0xb6bcf5ef tcp_seq_stop +EXPORT_SYMBOL vmlinux 0xb6c7e498 mr_table_dump +EXPORT_SYMBOL vmlinux 0xb6ce9388 pldmfw_flash_image +EXPORT_SYMBOL vmlinux 0xb6d1de27 dcache_dir_close EXPORT_SYMBOL vmlinux 0xb6e36ce2 psched_ratecfg_precompute -EXPORT_SYMBOL vmlinux 0xb6f146b4 security_skb_classify_flow -EXPORT_SYMBOL vmlinux 0xb6f9d00a tty_hangup +EXPORT_SYMBOL vmlinux 0xb6eb3ef1 inet_csk_reqsk_queue_add EXPORT_SYMBOL vmlinux 0xb6fde909 close_fd -EXPORT_SYMBOL vmlinux 0xb704f8a5 scsi_bios_ptable +EXPORT_SYMBOL vmlinux 0xb7016367 rproc_da_to_va +EXPORT_SYMBOL vmlinux 0xb704a64c nexthop_set_hw_flags +EXPORT_SYMBOL vmlinux 0xb712706a cfb_copyarea EXPORT_SYMBOL vmlinux 0xb71589f0 skip_spaces EXPORT_SYMBOL vmlinux 0xb71ed69f __hw_addr_unsync -EXPORT_SYMBOL vmlinux 0xb721761c dm_put_device -EXPORT_SYMBOL vmlinux 0xb723c196 param_set_bint +EXPORT_SYMBOL vmlinux 0xb732c559 vme_irq_request +EXPORT_SYMBOL vmlinux 0xb7371c2a register_md_personality EXPORT_SYMBOL vmlinux 0xb737b185 gen_pool_best_fit -EXPORT_SYMBOL vmlinux 0xb73e862c dma_pool_create -EXPORT_SYMBOL vmlinux 0xb73f6509 pci_clear_master -EXPORT_SYMBOL vmlinux 0xb761708d vfs_fadvise +EXPORT_SYMBOL vmlinux 0xb73f8d23 mmc_is_req_done +EXPORT_SYMBOL vmlinux 0xb7473dab dev_mc_sync_multiple +EXPORT_SYMBOL vmlinux 0xb74cd686 scsi_scan_host +EXPORT_SYMBOL vmlinux 0xb75381b7 pci_enable_ptm +EXPORT_SYMBOL vmlinux 0xb75cfade pskb_expand_head +EXPORT_SYMBOL vmlinux 0xb766b62f pci_bus_size_bridges EXPORT_SYMBOL vmlinux 0xb7688155 ucc_slow_init -EXPORT_SYMBOL vmlinux 0xb77e8bc7 uart_update_timeout +EXPORT_SYMBOL vmlinux 0xb770457d tcp_sock_set_user_timeout +EXPORT_SYMBOL vmlinux 0xb7731f35 config_group_init_type_name EXPORT_SYMBOL vmlinux 0xb784154f utf8_casefold_hash EXPORT_SYMBOL vmlinux 0xb788fb30 gic_pmr_sync +EXPORT_SYMBOL vmlinux 0xb78b8e8a netdev_emerg EXPORT_SYMBOL vmlinux 0xb78debe3 LZ4_decompress_fast_usingDict -EXPORT_SYMBOL vmlinux 0xb79f4506 inet_csk_delete_keepalive_timer -EXPORT_SYMBOL vmlinux 0xb79fbbc5 proc_create_data -EXPORT_SYMBOL vmlinux 0xb7ac0e89 tegra_ivc_write_get_next_frame +EXPORT_SYMBOL vmlinux 0xb78ef4bb backlight_force_update +EXPORT_SYMBOL vmlinux 0xb7992985 tty_do_resize EXPORT_SYMBOL vmlinux 0xb7b7fa6e node_states -EXPORT_SYMBOL vmlinux 0xb7bac0b7 pnp_register_driver -EXPORT_SYMBOL vmlinux 0xb7bdf65f tcp_md5_do_add EXPORT_SYMBOL vmlinux 0xb7c0f443 sort -EXPORT_SYMBOL vmlinux 0xb7c393fe netdev_txq_to_tc -EXPORT_SYMBOL vmlinux 0xb7c60e87 zero_fill_bio EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags -EXPORT_SYMBOL vmlinux 0xb7d7f183 vmalloc_to_page -EXPORT_SYMBOL vmlinux 0xb7da99ad napi_build_skb -EXPORT_SYMBOL vmlinux 0xb7e6f885 mr_table_alloc -EXPORT_SYMBOL vmlinux 0xb7f9785a iov_iter_get_pages_alloc -EXPORT_SYMBOL vmlinux 0xb7fb7d6b dput -EXPORT_SYMBOL vmlinux 0xb8086316 generic_iommu_put_resv_regions -EXPORT_SYMBOL vmlinux 0xb815c23b devm_clk_release_clkdev -EXPORT_SYMBOL vmlinux 0xb820c229 mipi_dsi_dcs_exit_sleep_mode +EXPORT_SYMBOL vmlinux 0xb7d05277 pcix_get_max_mmrbc +EXPORT_SYMBOL vmlinux 0xb7da8046 bio_add_pc_page +EXPORT_SYMBOL vmlinux 0xb7e20a9e kernel_read +EXPORT_SYMBOL vmlinux 0xb7fe7bf1 of_get_i2c_adapter_by_node +EXPORT_SYMBOL vmlinux 0xb7fee705 jbd2_journal_get_undo_access +EXPORT_SYMBOL vmlinux 0xb8264c26 blk_mq_start_hw_queues EXPORT_SYMBOL vmlinux 0xb83129db ZSTD_decompressContinue +EXPORT_SYMBOL vmlinux 0xb836929c __traceiter_spi_transfer_stop EXPORT_SYMBOL vmlinux 0xb842716c qcom_scm_ocmem_lock_available -EXPORT_SYMBOL vmlinux 0xb85538ee ipv6_dev_get_saddr EXPORT_SYMBOL vmlinux 0xb8605d9c qman_p_static_dequeue_add EXPORT_SYMBOL vmlinux 0xb868ac5c register_sysrq_key -EXPORT_SYMBOL vmlinux 0xb86ddc98 skb_split +EXPORT_SYMBOL vmlinux 0xb86d71ce devfreq_suspend_device +EXPORT_SYMBOL vmlinux 0xb8813ab4 xfrm_sad_getinfo EXPORT_SYMBOL vmlinux 0xb88fd035 set_groups -EXPORT_SYMBOL vmlinux 0xb8967246 kernel_getsockname +EXPORT_SYMBOL vmlinux 0xb892fd75 dma_free_attrs EXPORT_SYMBOL vmlinux 0xb89b6e6b guid_parse +EXPORT_SYMBOL vmlinux 0xb8a5509c unlock_buffer +EXPORT_SYMBOL vmlinux 0xb8af6f4f dev_disable_lro EXPORT_SYMBOL vmlinux 0xb8b043f2 kfree_link -EXPORT_SYMBOL vmlinux 0xb8b40223 dev_set_mac_address_user EXPORT_SYMBOL vmlinux 0xb8b9f817 kmalloc_order_trace -EXPORT_SYMBOL vmlinux 0xb8d6417b do_SAK -EXPORT_SYMBOL vmlinux 0xb8d7e21f filemap_fault -EXPORT_SYMBOL vmlinux 0xb8e22e47 dqget -EXPORT_SYMBOL vmlinux 0xb8e2ad76 pci_dev_driver +EXPORT_SYMBOL vmlinux 0xb8cdd24e dev_remove_pack +EXPORT_SYMBOL vmlinux 0xb8dfa2a2 mii_ethtool_get_link_ksettings EXPORT_SYMBOL vmlinux 0xb9056bb6 remove_conflicting_framebuffers +EXPORT_SYMBOL vmlinux 0xb905e6ae max8998_read_reg EXPORT_SYMBOL vmlinux 0xb907513f unpoison_memory EXPORT_SYMBOL vmlinux 0xb911bb58 minmax_running_max -EXPORT_SYMBOL vmlinux 0xb91a1335 ipv4_specific -EXPORT_SYMBOL vmlinux 0xb9262d1b component_match_add_release -EXPORT_SYMBOL vmlinux 0xb9290f94 to_nd_btt -EXPORT_SYMBOL vmlinux 0xb9304c71 inet6_offloads -EXPORT_SYMBOL vmlinux 0xb935c9b5 cros_ec_check_result -EXPORT_SYMBOL vmlinux 0xb93d0dd9 param_get_uint -EXPORT_SYMBOL vmlinux 0xb940d4f3 default_llseek +EXPORT_SYMBOL vmlinux 0xb92c149e mipi_dsi_dcs_read +EXPORT_SYMBOL vmlinux 0xb92d2360 is_subdir EXPORT_SYMBOL vmlinux 0xb94339c4 qdisc_put_stab +EXPORT_SYMBOL vmlinux 0xb945e965 clk_hw_register_clkdev EXPORT_SYMBOL vmlinux 0xb9478d90 hdmi_drm_infoframe_unpack_only -EXPORT_SYMBOL vmlinux 0xb96a38b7 param_set_ulong -EXPORT_SYMBOL vmlinux 0xb971ae3e of_find_node_with_property EXPORT_SYMBOL vmlinux 0xb97220ff bitmap_parse -EXPORT_SYMBOL vmlinux 0xb978fa5f tcf_qevent_validate_change -EXPORT_SYMBOL vmlinux 0xb97d8f07 nd_region_release_lane +EXPORT_SYMBOL vmlinux 0xb97c8c01 flow_block_cb_setup_simple +EXPORT_SYMBOL vmlinux 0xb9a7d464 param_get_string +EXPORT_SYMBOL vmlinux 0xb9ac6856 input_get_timestamp EXPORT_SYMBOL vmlinux 0xb9af1d0d __xa_clear_mark +EXPORT_SYMBOL vmlinux 0xb9c4b4d5 xfrm_policy_register_afinfo +EXPORT_SYMBOL vmlinux 0xb9c92edd input_inject_event +EXPORT_SYMBOL vmlinux 0xb9d66a92 create_empty_buffers +EXPORT_SYMBOL vmlinux 0xb9dcd9ff __ip_dev_find EXPORT_SYMBOL vmlinux 0xb9e8e2cc in6addr_sitelocal_allrouters -EXPORT_SYMBOL vmlinux 0xb9ec7f2a get_cached_acl +EXPORT_SYMBOL vmlinux 0xb9f3d95b tc_setup_cb_reoffload +EXPORT_SYMBOL vmlinux 0xb9f52354 xfrm_lookup_with_ifid EXPORT_SYMBOL vmlinux 0xb9fc381a qcom_scm_hdcp_req EXPORT_SYMBOL vmlinux 0xba0676e2 vm_zone_stat EXPORT_SYMBOL vmlinux 0xba1008c8 __crc32c_le -EXPORT_SYMBOL vmlinux 0xba1c5209 mipi_dsi_generic_write -EXPORT_SYMBOL vmlinux 0xba4089a1 blk_queue_logical_block_size +EXPORT_SYMBOL vmlinux 0xba2a62bf blk_set_runtime_active +EXPORT_SYMBOL vmlinux 0xba446db7 sock_recv_errqueue +EXPORT_SYMBOL vmlinux 0xba4533a8 xp_raw_get_dma +EXPORT_SYMBOL vmlinux 0xba493241 dev_mc_del_global EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy EXPORT_SYMBOL vmlinux 0xba53adab nla_policy_len -EXPORT_SYMBOL vmlinux 0xba586707 dev_get_by_name -EXPORT_SYMBOL vmlinux 0xba61db76 nf_reinject +EXPORT_SYMBOL vmlinux 0xba56859f mmc_retune_release +EXPORT_SYMBOL vmlinux 0xba642382 xfrm_input_resume EXPORT_SYMBOL vmlinux 0xba707a78 qe_get_brg_clk -EXPORT_SYMBOL vmlinux 0xba738d31 pcim_iomap_table -EXPORT_SYMBOL vmlinux 0xba7f9ed7 is_nd_btt -EXPORT_SYMBOL vmlinux 0xba920067 md_done_sync -EXPORT_SYMBOL vmlinux 0xba96fc02 pci_bus_add_devices -EXPORT_SYMBOL vmlinux 0xbaa5b746 peernet2id -EXPORT_SYMBOL vmlinux 0xbad9376e generic_listxattr -EXPORT_SYMBOL vmlinux 0xbafac2ac genphy_read_lpa +EXPORT_SYMBOL vmlinux 0xba796aec scsi_print_result +EXPORT_SYMBOL vmlinux 0xba7ad1f1 ndo_dflt_fdb_add +EXPORT_SYMBOL vmlinux 0xba86aab5 skb_tx_error +EXPORT_SYMBOL vmlinux 0xba8ce06a __phy_read_mmd +EXPORT_SYMBOL vmlinux 0xbabb4545 generic_file_llseek_size +EXPORT_SYMBOL vmlinux 0xbabbe4eb blk_queue_flag_set +EXPORT_SYMBOL vmlinux 0xbac7b787 input_flush_device +EXPORT_SYMBOL vmlinux 0xbacd6663 bio_uninit +EXPORT_SYMBOL vmlinux 0xbacdbf70 unregister_md_personality +EXPORT_SYMBOL vmlinux 0xbacebd85 path_is_under +EXPORT_SYMBOL vmlinux 0xbb032076 of_get_parent EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset -EXPORT_SYMBOL vmlinux 0xbb1ca454 genlmsg_multicast_allns +EXPORT_SYMBOL vmlinux 0xbb0b7526 inet6_ioctl +EXPORT_SYMBOL vmlinux 0xbb1a96c9 qdisc_tree_reduce_backlog EXPORT_SYMBOL vmlinux 0xbb21260e convert_ifc_address EXPORT_SYMBOL vmlinux 0xbb24f607 init_cdrom_command -EXPORT_SYMBOL vmlinux 0xbb32fcb1 nf_ct_get_tuple_skb EXPORT_SYMBOL vmlinux 0xbb35675b __bitmap_intersects EXPORT_SYMBOL vmlinux 0xbb4f4766 simple_write_to_buffer -EXPORT_SYMBOL vmlinux 0xbb685e03 __remove_inode_hash +EXPORT_SYMBOL vmlinux 0xbb648181 d_rehash EXPORT_SYMBOL vmlinux 0xbb687724 bman_new_pool -EXPORT_SYMBOL vmlinux 0xbb7885d2 nvdimm_check_and_set_ro -EXPORT_SYMBOL vmlinux 0xbb803d82 netif_napi_add -EXPORT_SYMBOL vmlinux 0xbb83ec50 from_kprojid -EXPORT_SYMBOL vmlinux 0xbb8ec43e locks_copy_lock -EXPORT_SYMBOL vmlinux 0xbb90891d pneigh_lookup -EXPORT_SYMBOL vmlinux 0xbb9d3303 pagecache_write_end +EXPORT_SYMBOL vmlinux 0xbb774d28 skb_page_frag_refill +EXPORT_SYMBOL vmlinux 0xbb7bffdc remove_proc_subtree +EXPORT_SYMBOL vmlinux 0xbb90ca55 udp6_seq_ops +EXPORT_SYMBOL vmlinux 0xbb992b95 mmc_can_discard EXPORT_SYMBOL vmlinux 0xbb9ed3bf mutex_trylock -EXPORT_SYMBOL vmlinux 0xbb9ff3ce proc_symlink -EXPORT_SYMBOL vmlinux 0xbba81163 uart_write_wakeup -EXPORT_SYMBOL vmlinux 0xbbafde2f ip_sock_set_pktinfo -EXPORT_SYMBOL vmlinux 0xbbb5b705 nf_log_unset -EXPORT_SYMBOL vmlinux 0xbbc1bc82 jbd2_fc_end_commit_fallback -EXPORT_SYMBOL vmlinux 0xbbc33e91 dma_free_attrs -EXPORT_SYMBOL vmlinux 0xbbcdbf13 blk_execute_rq -EXPORT_SYMBOL vmlinux 0xbbe5f7ab generic_fadvise +EXPORT_SYMBOL vmlinux 0xbbc17ccc netdev_adjacent_change_abort +EXPORT_SYMBOL vmlinux 0xbbcddd6e twl6040_reg_read +EXPORT_SYMBOL vmlinux 0xbbdc9bbc tegra_dfll_runtime_resume +EXPORT_SYMBOL vmlinux 0xbbdcad92 md_register_thread +EXPORT_SYMBOL vmlinux 0xbbdd37da imx_scu_enable_general_irq_channel EXPORT_SYMBOL vmlinux 0xbbe80fdb kmalloc_order -EXPORT_SYMBOL vmlinux 0xbbf0db11 sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0xbc007d83 pci_bus_add_devices +EXPORT_SYMBOL vmlinux 0xbc0602aa scsi_device_get +EXPORT_SYMBOL vmlinux 0xbc098177 cdrom_mode_sense EXPORT_SYMBOL vmlinux 0xbc2031de acpi_processor_get_bios_limit -EXPORT_SYMBOL vmlinux 0xbc208bdc dev_disable_lro -EXPORT_SYMBOL vmlinux 0xbc348bae i2c_verify_adapter -EXPORT_SYMBOL vmlinux 0xbc352a0b __icmp_send -EXPORT_SYMBOL vmlinux 0xbc4118c2 tcf_exts_destroy -EXPORT_SYMBOL vmlinux 0xbc487039 posix_test_lock -EXPORT_SYMBOL vmlinux 0xbc4b5fd2 seq_read_iter -EXPORT_SYMBOL vmlinux 0xbc6fae5b pcim_set_mwi -EXPORT_SYMBOL vmlinux 0xbc73f8b0 insert_inode_locked4 -EXPORT_SYMBOL vmlinux 0xbcab20f6 dev_trans_start +EXPORT_SYMBOL vmlinux 0xbc2baeb5 security_inode_setsecctx +EXPORT_SYMBOL vmlinux 0xbc62007f inet_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0xbc64e503 fb_set_suspend +EXPORT_SYMBOL vmlinux 0xbc6b7ccb seq_path +EXPORT_SYMBOL vmlinux 0xbc7fb33a invalidate_inode_buffers +EXPORT_SYMBOL vmlinux 0xbc868c19 xfrm_policy_hash_rebuild +EXPORT_SYMBOL vmlinux 0xbca20b8e kernel_getsockname +EXPORT_SYMBOL vmlinux 0xbca300a1 __frontswap_store EXPORT_SYMBOL vmlinux 0xbcab6ee6 sscanf -EXPORT_SYMBOL vmlinux 0xbcef0e5c __phy_resume -EXPORT_SYMBOL vmlinux 0xbcfba841 config_item_set_name -EXPORT_SYMBOL vmlinux 0xbcfbad97 config_item_init_type_name -EXPORT_SYMBOL vmlinux 0xbd0a4159 __traceiter_spi_transfer_start +EXPORT_SYMBOL vmlinux 0xbcc8b447 pci_scan_slot +EXPORT_SYMBOL vmlinux 0xbcd036c3 config_group_find_item +EXPORT_SYMBOL vmlinux 0xbcd77240 dev_getbyhwaddr_rcu +EXPORT_SYMBOL vmlinux 0xbcecf44c acpi_get_hp_hw_control_from_firmware +EXPORT_SYMBOL vmlinux 0xbcf2d124 i2c_del_adapter +EXPORT_SYMBOL vmlinux 0xbd1b183a dump_emit +EXPORT_SYMBOL vmlinux 0xbd33a20b flow_rule_match_eth_addrs +EXPORT_SYMBOL vmlinux 0xbd387261 udp_set_csum EXPORT_SYMBOL vmlinux 0xbd462b55 __kfifo_init -EXPORT_SYMBOL vmlinux 0xbd492beb fs_param_is_bool +EXPORT_SYMBOL vmlinux 0xbd4fdace put_ipc_ns +EXPORT_SYMBOL vmlinux 0xbd5e42f9 register_mii_timestamper EXPORT_SYMBOL vmlinux 0xbd628752 __tracepoint_mmap_lock_start_locking EXPORT_SYMBOL vmlinux 0xbd6841d4 crc16 -EXPORT_SYMBOL vmlinux 0xbd96d517 pci_msi_vec_count -EXPORT_SYMBOL vmlinux 0xbda35b15 dmam_free_coherent -EXPORT_SYMBOL vmlinux 0xbdd5edff devm_input_allocate_device -EXPORT_SYMBOL vmlinux 0xbe118709 of_device_register +EXPORT_SYMBOL vmlinux 0xbd82df4e kthread_create_worker +EXPORT_SYMBOL vmlinux 0xbd84b5eb mmc_gpio_get_cd +EXPORT_SYMBOL vmlinux 0xbd876c87 dev_uc_unsync +EXPORT_SYMBOL vmlinux 0xbda465d6 dev_remove_offload +EXPORT_SYMBOL vmlinux 0xbdc15b42 __cleancache_invalidate_fs +EXPORT_SYMBOL vmlinux 0xbdca88f7 pci_choose_state +EXPORT_SYMBOL vmlinux 0xbdd813f3 component_match_add_release +EXPORT_SYMBOL vmlinux 0xbdd89539 pci_scan_bus +EXPORT_SYMBOL vmlinux 0xbde8531a dev_get_flags +EXPORT_SYMBOL vmlinux 0xbdf706a6 ww_mutex_lock EXPORT_SYMBOL vmlinux 0xbe118c52 __tracepoint_mmap_lock_acquire_returned EXPORT_SYMBOL vmlinux 0xbe1427af __printk_cpu_unlock -EXPORT_SYMBOL vmlinux 0xbe2f826f jbd2_journal_grab_journal_head +EXPORT_SYMBOL vmlinux 0xbe1c6700 mmc_alloc_host +EXPORT_SYMBOL vmlinux 0xbe213614 sock_from_file +EXPORT_SYMBOL vmlinux 0xbe301467 skb_copy_datagram_from_iter +EXPORT_SYMBOL vmlinux 0xbe3b5b06 netpoll_poll_disable +EXPORT_SYMBOL vmlinux 0xbe422efc xp_can_alloc EXPORT_SYMBOL vmlinux 0xbe49252c acpi_os_write_port EXPORT_SYMBOL vmlinux 0xbe4eb6ed secure_dccpv6_sequence_number -EXPORT_SYMBOL vmlinux 0xbe4f09a6 device_match_acpi_dev EXPORT_SYMBOL vmlinux 0xbe5a24e9 xxh32_copy_state -EXPORT_SYMBOL vmlinux 0xbe5aeb94 inet_unregister_protosw -EXPORT_SYMBOL vmlinux 0xbe631a10 blk_rq_map_user EXPORT_SYMBOL vmlinux 0xbe6a866f __wait_on_bit -EXPORT_SYMBOL vmlinux 0xbe7d24be kernel_read EXPORT_SYMBOL vmlinux 0xbe7e05a8 acpi_tb_install_and_load_table -EXPORT_SYMBOL vmlinux 0xbe8250bf acpi_bus_get_status -EXPORT_SYMBOL vmlinux 0xbe84d31d tcp_splice_read -EXPORT_SYMBOL vmlinux 0xbe86b32f input_set_min_poll_interval -EXPORT_SYMBOL vmlinux 0xbe913f05 scsi_device_get -EXPORT_SYMBOL vmlinux 0xbe9756e5 remove_arg_zero -EXPORT_SYMBOL vmlinux 0xbec038b5 input_mt_drop_unused -EXPORT_SYMBOL vmlinux 0xbeee8c32 __cleancache_init_fs +EXPORT_SYMBOL vmlinux 0xbe84e7de pci_scan_single_device +EXPORT_SYMBOL vmlinux 0xbe8a5585 find_get_pages_contig +EXPORT_SYMBOL vmlinux 0xbeac8ed5 genphy_check_and_restart_aneg +EXPORT_SYMBOL vmlinux 0xbeb8a39c set_cached_acl +EXPORT_SYMBOL vmlinux 0xbeb8b7df blk_mq_delay_kick_requeue_list +EXPORT_SYMBOL vmlinux 0xbee035c0 fib_notifier_ops_register +EXPORT_SYMBOL vmlinux 0xbee0c3c1 genphy_setup_forced +EXPORT_SYMBOL vmlinux 0xbee26753 cdev_alloc +EXPORT_SYMBOL vmlinux 0xbee4aea2 i2c_smbus_write_i2c_block_data EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule EXPORT_SYMBOL vmlinux 0xbefa51a3 gen_pool_add_owner -EXPORT_SYMBOL vmlinux 0xbf032ad2 sched_autogroup_detach -EXPORT_SYMBOL vmlinux 0xbf0e6461 to_nd_dax -EXPORT_SYMBOL vmlinux 0xbf1bb218 mr_vif_seq_next -EXPORT_SYMBOL vmlinux 0xbf2076bd single_open_size -EXPORT_SYMBOL vmlinux 0xbf2a1a41 fb_show_logo -EXPORT_SYMBOL vmlinux 0xbf353145 i2c_smbus_read_i2c_block_data -EXPORT_SYMBOL vmlinux 0xbf46d231 wait_on_page_bit_killable -EXPORT_SYMBOL vmlinux 0xbf4b9e12 ucc_of_parse_tdm -EXPORT_SYMBOL vmlinux 0xbf56aeef skb_copy_header +EXPORT_SYMBOL vmlinux 0xbefe5302 filp_open +EXPORT_SYMBOL vmlinux 0xbf032958 security_path_rename +EXPORT_SYMBOL vmlinux 0xbf0e296c generic_parse_monolithic +EXPORT_SYMBOL vmlinux 0xbf0e9686 of_phy_is_fixed_link +EXPORT_SYMBOL vmlinux 0xbf23210f vme_init_bridge +EXPORT_SYMBOL vmlinux 0xbf26656e dma_resv_copy_fences +EXPORT_SYMBOL vmlinux 0xbf29394d kfree_skb_list +EXPORT_SYMBOL vmlinux 0xbf33d535 pid_task +EXPORT_SYMBOL vmlinux 0xbf3877b0 __alloc_skb EXPORT_SYMBOL vmlinux 0xbf59c419 posix_acl_init -EXPORT_SYMBOL vmlinux 0xbf6d5756 xsk_set_tx_need_wakeup -EXPORT_SYMBOL vmlinux 0xbf7f8779 fs_param_is_enum -EXPORT_SYMBOL vmlinux 0xbf83bf36 __cleancache_put_page -EXPORT_SYMBOL vmlinux 0xbf915bb0 skb_realloc_headroom +EXPORT_SYMBOL vmlinux 0xbf772a9e kmem_cache_free +EXPORT_SYMBOL vmlinux 0xbf902085 sock_recvmsg +EXPORT_SYMBOL vmlinux 0xbf9191f0 skb_queue_head +EXPORT_SYMBOL vmlinux 0xbf92ed55 dma_sync_sg_for_device EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set +EXPORT_SYMBOL vmlinux 0xbfab41d1 __skb_gso_segment +EXPORT_SYMBOL vmlinux 0xbfb18fa1 scsi_report_opcode +EXPORT_SYMBOL vmlinux 0xbfb4b9b4 mark_info_dirty +EXPORT_SYMBOL vmlinux 0xbfb6a054 udp_ioctl +EXPORT_SYMBOL vmlinux 0xbfb9d0a5 send_sig_mceerr +EXPORT_SYMBOL vmlinux 0xbfc6d36b pci_resize_resource EXPORT_SYMBOL vmlinux 0xbfcbc0d2 stmp_reset_block -EXPORT_SYMBOL vmlinux 0xbfd5412a give_up_console -EXPORT_SYMBOL vmlinux 0xbfdc741b security_sctp_assoc_request -EXPORT_SYMBOL vmlinux 0xbfe62b34 iw_handler_get_spy -EXPORT_SYMBOL vmlinux 0xbfe90b33 skb_set_owner_w +EXPORT_SYMBOL vmlinux 0xbfe52419 scsi_add_device EXPORT_SYMBOL vmlinux 0xbfee3ad5 loop_unregister_transfer -EXPORT_SYMBOL vmlinux 0xc01285c2 fscrypt_decrypt_pagecache_blocks -EXPORT_SYMBOL vmlinux 0xc019338a dma_mmap_attrs -EXPORT_SYMBOL vmlinux 0xc01a9d69 mfd_remove_devices -EXPORT_SYMBOL vmlinux 0xc021f350 eth_validate_addr +EXPORT_SYMBOL vmlinux 0xbffb6949 i2c_smbus_write_block_data +EXPORT_SYMBOL vmlinux 0xc00a344a phy_ethtool_get_sset_count EXPORT_SYMBOL vmlinux 0xc0243ea6 nla_reserve_nohdr -EXPORT_SYMBOL vmlinux 0xc02977c1 security_inet_conn_established -EXPORT_SYMBOL vmlinux 0xc032c4d6 rproc_shutdown -EXPORT_SYMBOL vmlinux 0xc0699bf7 block_read_full_page -EXPORT_SYMBOL vmlinux 0xc070d51b t10_pi_type3_crc +EXPORT_SYMBOL vmlinux 0xc025a7df irq_domain_set_info +EXPORT_SYMBOL vmlinux 0xc0364007 fault_in_writeable +EXPORT_SYMBOL vmlinux 0xc04431bc phy_read_mmd +EXPORT_SYMBOL vmlinux 0xc065aa9d kobject_get +EXPORT_SYMBOL vmlinux 0xc06ed61a unmap_mapping_range +EXPORT_SYMBOL vmlinux 0xc07012b2 dev_uc_del +EXPORT_SYMBOL vmlinux 0xc075b6c7 nf_unregister_sockopt EXPORT_SYMBOL vmlinux 0xc0763484 rfkill_blocked -EXPORT_SYMBOL vmlinux 0xc076b4ca generic_file_fsync EXPORT_SYMBOL vmlinux 0xc07b0863 fb_destroy_modedb -EXPORT_SYMBOL vmlinux 0xc07f0ade unlock_buffer -EXPORT_SYMBOL vmlinux 0xc0898554 rproc_add -EXPORT_SYMBOL vmlinux 0xc092670e fc_mount -EXPORT_SYMBOL vmlinux 0xc098f6e4 inet_rtx_syn_ack +EXPORT_SYMBOL vmlinux 0xc07e8ea9 phy_free_interrupt +EXPORT_SYMBOL vmlinux 0xc0847ca0 unregister_filesystem +EXPORT_SYMBOL vmlinux 0xc084d563 fscrypt_encrypt_pagecache_blocks +EXPORT_SYMBOL vmlinux 0xc0991671 nf_ct_get_tuple_skb +EXPORT_SYMBOL vmlinux 0xc0a77caa dquot_get_next_id EXPORT_SYMBOL vmlinux 0xc0afb5d7 cgroup_bpf_enabled_key -EXPORT_SYMBOL vmlinux 0xc0b09f58 seq_bprintf EXPORT_SYMBOL vmlinux 0xc0b2664d devlink_dpipe_header_ipv4 +EXPORT_SYMBOL vmlinux 0xc0b38ea4 dev_get_phys_port_id +EXPORT_SYMBOL vmlinux 0xc0b3d774 xfrm4_rcv_encap EXPORT_SYMBOL vmlinux 0xc0bca0f1 ZSTD_nextSrcSizeToDecompress -EXPORT_SYMBOL vmlinux 0xc0bcdbe9 tty_port_alloc_xmit_buf -EXPORT_SYMBOL vmlinux 0xc0c862fc vfs_llseek -EXPORT_SYMBOL vmlinux 0xc0ca35ff xsk_tx_peek_desc -EXPORT_SYMBOL vmlinux 0xc0dcc94e tcp_mss_to_mtu -EXPORT_SYMBOL vmlinux 0xc0ddceab param_ops_long -EXPORT_SYMBOL vmlinux 0xc0e51588 kern_unmount -EXPORT_SYMBOL vmlinux 0xc0f17c90 __wait_on_buffer -EXPORT_SYMBOL vmlinux 0xc0faff83 mmc_retune_timer_stop +EXPORT_SYMBOL vmlinux 0xc0f0eafa __sk_mem_raise_allocated +EXPORT_SYMBOL vmlinux 0xc0f1b2ed iov_iter_single_seg_count EXPORT_SYMBOL vmlinux 0xc0ff12fb nla_strdup EXPORT_SYMBOL vmlinux 0xc0ff21c1 input_get_new_minor -EXPORT_SYMBOL vmlinux 0xc11323ed md_check_no_bitmap -EXPORT_SYMBOL vmlinux 0xc13cf659 migrate_vma_setup +EXPORT_SYMBOL vmlinux 0xc10262ac ip_defrag +EXPORT_SYMBOL vmlinux 0xc12e9d96 __vfs_setxattr +EXPORT_SYMBOL vmlinux 0xc130b828 block_page_mkwrite +EXPORT_SYMBOL vmlinux 0xc13b30dd flow_indr_dev_setup_offload +EXPORT_SYMBOL vmlinux 0xc1469046 pm860x_bulk_read EXPORT_SYMBOL vmlinux 0xc14dc168 acpi_get_data EXPORT_SYMBOL vmlinux 0xc1514a3b free_irq +EXPORT_SYMBOL vmlinux 0xc156e4d0 pnp_start_dev EXPORT_SYMBOL vmlinux 0xc1579516 fman_port_enable -EXPORT_SYMBOL vmlinux 0xc15c86ef mii_ethtool_get_link_ksettings -EXPORT_SYMBOL vmlinux 0xc1632ae2 netdev_class_create_file_ns +EXPORT_SYMBOL vmlinux 0xc157f68a netif_set_real_num_rx_queues EXPORT_SYMBOL vmlinux 0xc16410b9 ZSTD_getDictID_fromDDict EXPORT_SYMBOL vmlinux 0xc164a51c keygen_init -EXPORT_SYMBOL vmlinux 0xc1688bf8 pin_user_pages_unlocked -EXPORT_SYMBOL vmlinux 0xc1696a7f mmc_cqe_request_done +EXPORT_SYMBOL vmlinux 0xc169d541 dev_activate EXPORT_SYMBOL vmlinux 0xc16be39d iter_div_u64_rem -EXPORT_SYMBOL vmlinux 0xc186d600 pmem_sector_size -EXPORT_SYMBOL vmlinux 0xc19621ee acpi_bus_register_driver -EXPORT_SYMBOL vmlinux 0xc1aa59df inet_del_offload -EXPORT_SYMBOL vmlinux 0xc1bc5f88 dquot_set_dqinfo +EXPORT_SYMBOL vmlinux 0xc1786981 pcie_set_mps +EXPORT_SYMBOL vmlinux 0xc1834939 dev_get_phys_port_name +EXPORT_SYMBOL vmlinux 0xc18afeaa tcp_disconnect +EXPORT_SYMBOL vmlinux 0xc1aa363f tcf_qevent_handle +EXPORT_SYMBOL vmlinux 0xc1ae2432 netdev_port_same_parent_id +EXPORT_SYMBOL vmlinux 0xc1baedf6 skb_expand_head +EXPORT_SYMBOL vmlinux 0xc1c0a5fc km_policy_notify +EXPORT_SYMBOL vmlinux 0xc1d552b0 simple_release_fs EXPORT_SYMBOL vmlinux 0xc1d5d504 scsi_cmd_allowed EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget -EXPORT_SYMBOL vmlinux 0xc1e18cd2 md_flush_request EXPORT_SYMBOL vmlinux 0xc1e2c742 tegra_io_rail_power_on -EXPORT_SYMBOL vmlinux 0xc1eaed19 __inet_stream_connect -EXPORT_SYMBOL vmlinux 0xc1eb61b4 ps2_sliced_command -EXPORT_SYMBOL vmlinux 0xc1f1a78f _dev_crit +EXPORT_SYMBOL vmlinux 0xc1f4b4b5 xfrm_stateonly_find +EXPORT_SYMBOL vmlinux 0xc1f4df9b pps_event +EXPORT_SYMBOL vmlinux 0xc1f9fb20 dev_set_group +EXPORT_SYMBOL vmlinux 0xc1fb4035 tcp_mtup_init EXPORT_SYMBOL vmlinux 0xc2050974 fman_port_get_tstamp -EXPORT_SYMBOL vmlinux 0xc2152e4f filemap_invalidate_unlock_two -EXPORT_SYMBOL vmlinux 0xc21d8363 inet6_del_offload -EXPORT_SYMBOL vmlinux 0xc23078b7 max8925_bulk_write EXPORT_SYMBOL vmlinux 0xc2310cdc logic_inl -EXPORT_SYMBOL vmlinux 0xc24122b5 jbd2_journal_unlock_updates +EXPORT_SYMBOL vmlinux 0xc235dab1 blk_queue_io_opt EXPORT_SYMBOL vmlinux 0xc267960e utf8_validate -EXPORT_SYMBOL vmlinux 0xc27355a3 rproc_mem_entry_init -EXPORT_SYMBOL vmlinux 0xc275e36d block_is_partially_uptodate -EXPORT_SYMBOL vmlinux 0xc276c08e block_invalidatepage -EXPORT_SYMBOL vmlinux 0xc29722e2 sock_no_mmap +EXPORT_SYMBOL vmlinux 0xc26bf228 bmap +EXPORT_SYMBOL vmlinux 0xc2831677 jbd2_fc_begin_commit +EXPORT_SYMBOL vmlinux 0xc28b2000 single_open EXPORT_SYMBOL vmlinux 0xc29bf967 strspn EXPORT_SYMBOL vmlinux 0xc2a17ebe seqno_fence_ops -EXPORT_SYMBOL vmlinux 0xc2b120ee kobject_init -EXPORT_SYMBOL vmlinux 0xc2bcd057 hash_and_copy_to_iter -EXPORT_SYMBOL vmlinux 0xc2c0678c vfs_iter_write -EXPORT_SYMBOL vmlinux 0xc2ca20cc security_task_getsecid_subj -EXPORT_SYMBOL vmlinux 0xc2d6495f ps2_begin_command EXPORT_SYMBOL vmlinux 0xc2e168ab caches_clean_inval_pou EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices +EXPORT_SYMBOL vmlinux 0xc2e9a86c jbd2_log_wait_commit EXPORT_SYMBOL vmlinux 0xc2f52274 __lshrti3 -EXPORT_SYMBOL vmlinux 0xc2fde243 nvdimm_namespace_locked -EXPORT_SYMBOL vmlinux 0xc30040e9 vga_set_legacy_decoding EXPORT_SYMBOL vmlinux 0xc3055d20 usleep_range_state -EXPORT_SYMBOL vmlinux 0xc308bc8f sock_set_sndtimeo -EXPORT_SYMBOL vmlinux 0xc30c9676 pid_task EXPORT_SYMBOL vmlinux 0xc310b981 strnstr +EXPORT_SYMBOL vmlinux 0xc3153631 request_firmware_nowait EXPORT_SYMBOL vmlinux 0xc31db0ce is_vmalloc_addr -EXPORT_SYMBOL vmlinux 0xc328836e pci_claim_resource +EXPORT_SYMBOL vmlinux 0xc3245f1c blk_set_queue_depth EXPORT_SYMBOL vmlinux 0xc32c71af register_inetaddr_validator_notifier -EXPORT_SYMBOL vmlinux 0xc3384e42 pci_reenable_device -EXPORT_SYMBOL vmlinux 0xc34c74b4 unpin_user_pages_dirty_lock -EXPORT_SYMBOL vmlinux 0xc356ef4e netdev_next_lower_dev_rcu -EXPORT_SYMBOL vmlinux 0xc35b92e0 open_exec +EXPORT_SYMBOL vmlinux 0xc360445b d_instantiate EXPORT_SYMBOL vmlinux 0xc36a3bd4 __acpi_handle_debug +EXPORT_SYMBOL vmlinux 0xc36b09e7 ethtool_get_phc_vclocks +EXPORT_SYMBOL vmlinux 0xc36dcea5 security_skb_classify_flow EXPORT_SYMBOL vmlinux 0xc3762aec mempool_alloc -EXPORT_SYMBOL vmlinux 0xc376f1b2 skb_copy_datagram_from_iter -EXPORT_SYMBOL vmlinux 0xc37bf7e5 zerocopy_sg_from_iter EXPORT_SYMBOL vmlinux 0xc37f9c6e cpufreq_update_policy -EXPORT_SYMBOL vmlinux 0xc38379f9 finalize_exec -EXPORT_SYMBOL vmlinux 0xc384c440 param_ops_ulong -EXPORT_SYMBOL vmlinux 0xc389029a clk_bulk_get_all +EXPORT_SYMBOL vmlinux 0xc388c066 sk_stream_wait_close +EXPORT_SYMBOL vmlinux 0xc38a1cea of_cpu_node_to_id EXPORT_SYMBOL vmlinux 0xc38c83b8 mod_timer -EXPORT_SYMBOL vmlinux 0xc3929227 tcp_sock_set_syncnt -EXPORT_SYMBOL vmlinux 0xc3966a85 arp_send +EXPORT_SYMBOL vmlinux 0xc3902609 param_get_invbool +EXPORT_SYMBOL vmlinux 0xc3976772 path_put +EXPORT_SYMBOL vmlinux 0xc39d52c5 pcim_iomap_table +EXPORT_SYMBOL vmlinux 0xc39e7ffa devfreq_monitor_stop +EXPORT_SYMBOL vmlinux 0xc3aaa00e of_graph_parse_endpoint +EXPORT_SYMBOL vmlinux 0xc3b38b60 watchdog_register_governor EXPORT_SYMBOL vmlinux 0xc3cd034d crc8_populate_lsb -EXPORT_SYMBOL vmlinux 0xc3ce2902 param_get_invbool -EXPORT_SYMBOL vmlinux 0xc3d375a0 mipi_dsi_driver_register_full EXPORT_SYMBOL vmlinux 0xc3ff38c2 down_read_trylock -EXPORT_SYMBOL vmlinux 0xc4031abc phy_get_pause -EXPORT_SYMBOL vmlinux 0xc40518dd inet_recvmsg -EXPORT_SYMBOL vmlinux 0xc4156c8b __free_pages +EXPORT_SYMBOL vmlinux 0xc4065d05 dquot_load_quota_sb +EXPORT_SYMBOL vmlinux 0xc4192763 devm_clk_release_clkdev +EXPORT_SYMBOL vmlinux 0xc41ba919 show_init_ipc_ns EXPORT_SYMBOL vmlinux 0xc41bc980 iwe_stream_add_value +EXPORT_SYMBOL vmlinux 0xc41db9dd ip_mc_check_igmp EXPORT_SYMBOL vmlinux 0xc4212ab9 qdisc_class_hash_insert EXPORT_SYMBOL vmlinux 0xc42dcb99 acpi_evaluate_ost -EXPORT_SYMBOL vmlinux 0xc450219a netdev_printk -EXPORT_SYMBOL vmlinux 0xc468a896 jbd2_journal_abort +EXPORT_SYMBOL vmlinux 0xc4535950 dquot_transfer EXPORT_SYMBOL vmlinux 0xc4708199 cpm_muram_addr +EXPORT_SYMBOL vmlinux 0xc4748031 kobject_del EXPORT_SYMBOL vmlinux 0xc4777aa9 __ctzsi2 -EXPORT_SYMBOL vmlinux 0xc487d432 vm_insert_page -EXPORT_SYMBOL vmlinux 0xc489cf43 mmc_free_host -EXPORT_SYMBOL vmlinux 0xc497f2c5 blk_mq_complete_request -EXPORT_SYMBOL vmlinux 0xc49864f0 md_write_start +EXPORT_SYMBOL vmlinux 0xc47eb181 config_item_set_name EXPORT_SYMBOL vmlinux 0xc4b21d2f qman_get_affine_portal -EXPORT_SYMBOL vmlinux 0xc4b354f2 kernel_sendmsg_locked -EXPORT_SYMBOL vmlinux 0xc4b66709 flow_block_cb_priv -EXPORT_SYMBOL vmlinux 0xc4e52336 __sock_create -EXPORT_SYMBOL vmlinux 0xc4f9d7e8 fib_notifier_ops_register -EXPORT_SYMBOL vmlinux 0xc50416e1 of_device_is_available -EXPORT_SYMBOL vmlinux 0xc5092873 page_cache_prev_miss -EXPORT_SYMBOL vmlinux 0xc5141a56 fwnode_irq_get -EXPORT_SYMBOL vmlinux 0xc514502d vfs_getattr_nosec -EXPORT_SYMBOL vmlinux 0xc51ee683 vif_device_init +EXPORT_SYMBOL vmlinux 0xc4c76d43 clear_bdi_congested +EXPORT_SYMBOL vmlinux 0xc4ffef68 vfs_getattr +EXPORT_SYMBOL vmlinux 0xc51e8aa5 set_bh_page EXPORT_SYMBOL vmlinux 0xc528a49a queued_write_lock_slowpath -EXPORT_SYMBOL vmlinux 0xc5590cdf of_find_node_by_name +EXPORT_SYMBOL vmlinux 0xc52a9f11 md_bitmap_sync_with_cluster +EXPORT_SYMBOL vmlinux 0xc537b71f vfs_get_super +EXPORT_SYMBOL vmlinux 0xc54fbb1a nd_region_to_nstype +EXPORT_SYMBOL vmlinux 0xc5569a05 tcp_enter_quickack_mode +EXPORT_SYMBOL vmlinux 0xc565b906 mr_vif_seq_next EXPORT_SYMBOL vmlinux 0xc56a41e6 vabits_actual +EXPORT_SYMBOL vmlinux 0xc572693f vmf_insert_mixed EXPORT_SYMBOL vmlinux 0xc57c48a3 idr_get_next EXPORT_SYMBOL vmlinux 0xc58d5a90 kstrtoll_from_user EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete EXPORT_SYMBOL vmlinux 0xc5a3367a __tracepoint_dma_fence_emit EXPORT_SYMBOL vmlinux 0xc5b6f236 queue_work_on -EXPORT_SYMBOL vmlinux 0xc5bea6e1 dm_table_get_md -EXPORT_SYMBOL vmlinux 0xc5beee57 request_key_rcu -EXPORT_SYMBOL vmlinux 0xc5c84119 dquot_scan_active -EXPORT_SYMBOL vmlinux 0xc5de47ae fb_blank +EXPORT_SYMBOL vmlinux 0xc5c4b799 reuseport_detach_prog EXPORT_SYMBOL vmlinux 0xc5e74216 release_resource EXPORT_SYMBOL vmlinux 0xc5f7e801 sg_last +EXPORT_SYMBOL vmlinux 0xc5fd4721 __cleancache_init_shared_fs EXPORT_SYMBOL vmlinux 0xc60d0620 __num_online_cpus -EXPORT_SYMBOL vmlinux 0xc613dfd2 generic_copy_file_range -EXPORT_SYMBOL vmlinux 0xc6166b0a filemap_fdatawrite_range EXPORT_SYMBOL vmlinux 0xc622556f prepare_to_wait_exclusive -EXPORT_SYMBOL vmlinux 0xc6245ede clear_inode +EXPORT_SYMBOL vmlinux 0xc626419b mpage_writepages EXPORT_SYMBOL vmlinux 0xc631580a console_unlock EXPORT_SYMBOL vmlinux 0xc633d82d phy_unregister_fixup -EXPORT_SYMBOL vmlinux 0xc63f225e flow_rule_match_enc_ipv6_addrs -EXPORT_SYMBOL vmlinux 0xc64139f7 phy_do_ioctl -EXPORT_SYMBOL vmlinux 0xc645ccba mmc_retune_unpause -EXPORT_SYMBOL vmlinux 0xc64863ef of_match_node -EXPORT_SYMBOL vmlinux 0xc6595477 disk_stack_limits EXPORT_SYMBOL vmlinux 0xc65e4e97 secure_dccp_sequence_number -EXPORT_SYMBOL vmlinux 0xc664348c pci_set_master +EXPORT_SYMBOL vmlinux 0xc65fde96 param_get_long EXPORT_SYMBOL vmlinux 0xc666a132 crc_t10dif +EXPORT_SYMBOL vmlinux 0xc6670e0d tty_insert_flip_string_fixed_flag +EXPORT_SYMBOL vmlinux 0xc668d4bc nd_btt_probe EXPORT_SYMBOL vmlinux 0xc66a8304 cpu_rmap_add -EXPORT_SYMBOL vmlinux 0xc676ec1f neigh_direct_output -EXPORT_SYMBOL vmlinux 0xc6859c32 blk_set_runtime_active -EXPORT_SYMBOL vmlinux 0xc6862a99 sk_free -EXPORT_SYMBOL vmlinux 0xc68e3ae5 __vfs_removexattr +EXPORT_SYMBOL vmlinux 0xc66fd34f pci_restore_state +EXPORT_SYMBOL vmlinux 0xc69bf33a tcp_poll EXPORT_SYMBOL vmlinux 0xc69fce52 qcom_scm_qsmmu500_wait_safe_toggle -EXPORT_SYMBOL vmlinux 0xc6a60484 register_netdev -EXPORT_SYMBOL vmlinux 0xc6a9de18 lock_page_memcg -EXPORT_SYMBOL vmlinux 0xc6b6a394 blk_queue_chunk_sectors EXPORT_SYMBOL vmlinux 0xc6cb465a __kfifo_max_r EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable +EXPORT_SYMBOL vmlinux 0xc6ccc4a4 mipi_dsi_dcs_get_display_brightness EXPORT_SYMBOL vmlinux 0xc6d09aa9 release_firmware -EXPORT_SYMBOL vmlinux 0xc6e3d869 tcf_idr_search -EXPORT_SYMBOL vmlinux 0xc6e476b8 send_sig +EXPORT_SYMBOL vmlinux 0xc6db4a09 dev_change_flags EXPORT_SYMBOL vmlinux 0xc6f3b3fc refcount_dec_if_one EXPORT_SYMBOL vmlinux 0xc6f46339 init_timer_key -EXPORT_SYMBOL vmlinux 0xc6f7d26a __set_page_dirty_nobuffers -EXPORT_SYMBOL vmlinux 0xc7058fdf jbd2_submit_inode_data EXPORT_SYMBOL vmlinux 0xc708f1fe ec_write -EXPORT_SYMBOL vmlinux 0xc717dd28 I_BDEV -EXPORT_SYMBOL vmlinux 0xc71b3b46 dev_pm_opp_register_notifier +EXPORT_SYMBOL vmlinux 0xc7111fef of_find_backlight_by_node EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port -EXPORT_SYMBOL vmlinux 0xc73350ef add_random_ready_callback -EXPORT_SYMBOL vmlinux 0xc74e1f2b tc_setup_flow_action -EXPORT_SYMBOL vmlinux 0xc774cb05 blk_get_request -EXPORT_SYMBOL vmlinux 0xc781b955 of_device_is_compatible +EXPORT_SYMBOL vmlinux 0xc7508080 tegra_dfll_unregister +EXPORT_SYMBOL vmlinux 0xc75769d0 tty_unregister_driver EXPORT_SYMBOL vmlinux 0xc781bd9f rfkill_resume_polling EXPORT_SYMBOL vmlinux 0xc7856a3d inet6addr_notifier_call_chain -EXPORT_SYMBOL vmlinux 0xc78f34b0 jbd2_journal_dirty_metadata -EXPORT_SYMBOL vmlinux 0xc7909e35 netdev_set_sb_channel -EXPORT_SYMBOL vmlinux 0xc794874a fput -EXPORT_SYMBOL vmlinux 0xc7a068c3 of_get_compatible_child EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock -EXPORT_SYMBOL vmlinux 0xc7abf5b0 cros_ec_get_next_event -EXPORT_SYMBOL vmlinux 0xc7b6e842 ip_fraglist_prepare -EXPORT_SYMBOL vmlinux 0xc7beb0a0 blk_mq_stop_hw_queue +EXPORT_SYMBOL vmlinux 0xc7b4db7a jbd2__journal_start EXPORT_SYMBOL vmlinux 0xc7c1107a LZ4_decompress_safe -EXPORT_SYMBOL vmlinux 0xc7cfac94 scsi_alloc_sgtables EXPORT_SYMBOL vmlinux 0xc7d094b5 dm_read_arg_group -EXPORT_SYMBOL vmlinux 0xc7d8874f nvmem_get_mac_address -EXPORT_SYMBOL vmlinux 0xc7da3268 ilookup5 -EXPORT_SYMBOL vmlinux 0xc7e7bbd7 ptp_clock_register -EXPORT_SYMBOL vmlinux 0xc7f5b46f ethtool_virtdev_set_link_ksettings -EXPORT_SYMBOL vmlinux 0xc8020fee filemap_fdatawait_range_keep_errors +EXPORT_SYMBOL vmlinux 0xc7e29551 pci_remove_bus +EXPORT_SYMBOL vmlinux 0xc7e6e9d2 tcp_ld_RTO_revert EXPORT_SYMBOL vmlinux 0xc80ab559 swake_up_one -EXPORT_SYMBOL vmlinux 0xc81e5102 phy_ethtool_set_wol -EXPORT_SYMBOL vmlinux 0xc8354af7 eth_mac_addr +EXPORT_SYMBOL vmlinux 0xc80b8ef2 inet_del_protocol +EXPORT_SYMBOL vmlinux 0xc8331c17 __devm_mdiobus_register +EXPORT_SYMBOL vmlinux 0xc8361aeb import_iovec EXPORT_SYMBOL vmlinux 0xc838c3f5 __ashrti3 EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu -EXPORT_SYMBOL vmlinux 0xc857cbf5 ip_cmsg_recv_offset -EXPORT_SYMBOL vmlinux 0xc85d4d97 write_one_page +EXPORT_SYMBOL vmlinux 0xc85052d0 pci_request_selected_regions_exclusive EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes -EXPORT_SYMBOL vmlinux 0xc877d42d mipi_dsi_dcs_soft_reset EXPORT_SYMBOL vmlinux 0xc8827b75 sysctl_vals +EXPORT_SYMBOL vmlinux 0xc8889da1 km_state_expired EXPORT_SYMBOL vmlinux 0xc890c008 zlib_deflateEnd -EXPORT_SYMBOL vmlinux 0xc890fd53 filemap_fdatawrite EXPORT_SYMBOL vmlinux 0xc89846c4 xudma_tchanrt_read EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread -EXPORT_SYMBOL vmlinux 0xc8ab9a65 of_cpu_node_to_id -EXPORT_SYMBOL vmlinux 0xc8d63595 jbd2_journal_load +EXPORT_SYMBOL vmlinux 0xc8bb5cb5 scsi_register_interface +EXPORT_SYMBOL vmlinux 0xc8d8b545 netdev_upper_dev_unlink EXPORT_SYMBOL vmlinux 0xc8dcc62a krealloc -EXPORT_SYMBOL vmlinux 0xc8ddb3db config_group_find_item -EXPORT_SYMBOL vmlinux 0xc8f061f7 dma_resv_add_excl_fence -EXPORT_SYMBOL vmlinux 0xc8f5d59b rproc_of_parse_firmware +EXPORT_SYMBOL vmlinux 0xc8df5127 __inode_sub_bytes +EXPORT_SYMBOL vmlinux 0xc8f47509 generic_file_llseek +EXPORT_SYMBOL vmlinux 0xc8fcdd71 from_kprojid +EXPORT_SYMBOL vmlinux 0xc8fcf2dc dma_sync_sg_for_cpu +EXPORT_SYMBOL vmlinux 0xc9084b60 __frontswap_test EXPORT_SYMBOL vmlinux 0xc916dd46 __SCK__tp_func_kmalloc +EXPORT_SYMBOL vmlinux 0xc92ade81 security_lock_kernel_down +EXPORT_SYMBOL vmlinux 0xc9354803 dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0xc93d0e28 nf_unregister_net_hook EXPORT_SYMBOL vmlinux 0xc93e8461 acpi_get_event_resources -EXPORT_SYMBOL vmlinux 0xc9448d64 ip6_fraglist_prepare +EXPORT_SYMBOL vmlinux 0xc94546dc sock_no_shutdown EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters +EXPORT_SYMBOL vmlinux 0xc96c08a2 lock_sock_nested EXPORT_SYMBOL vmlinux 0xc972449f mempool_alloc_slab -EXPORT_SYMBOL vmlinux 0xc98068c2 __xfrm_dst_lookup +EXPORT_SYMBOL vmlinux 0xc974cf9b fscrypt_has_permitted_context +EXPORT_SYMBOL vmlinux 0xc97d2d45 generic_block_bmap EXPORT_SYMBOL vmlinux 0xc9822234 clk_register_clkdev EXPORT_SYMBOL vmlinux 0xc9831ad7 flow_keys_dissector -EXPORT_SYMBOL vmlinux 0xc98bfca0 shrink_dcache_sb +EXPORT_SYMBOL vmlinux 0xc993e5d8 tcf_block_put EXPORT_SYMBOL vmlinux 0xc99e2a55 twl_rev -EXPORT_SYMBOL vmlinux 0xc9a78edb dev_set_mac_address -EXPORT_SYMBOL vmlinux 0xc9ba4edd tcp_sendpage -EXPORT_SYMBOL vmlinux 0xc9bb4bb3 bio_alloc_bioset -EXPORT_SYMBOL vmlinux 0xc9bbe560 rawv6_mh_filter_register -EXPORT_SYMBOL vmlinux 0xc9bff15e framebuffer_release -EXPORT_SYMBOL vmlinux 0xc9cb2bb3 vlan_filter_drop_vids +EXPORT_SYMBOL vmlinux 0xc9ac469b param_ops_short +EXPORT_SYMBOL vmlinux 0xc9be6486 eth_type_trans +EXPORT_SYMBOL vmlinux 0xc9c87994 neigh_direct_output +EXPORT_SYMBOL vmlinux 0xc9cfbacf nd_namespace_blk_validate +EXPORT_SYMBOL vmlinux 0xc9d75b48 devm_gen_pool_create +EXPORT_SYMBOL vmlinux 0xc9deb889 simple_empty EXPORT_SYMBOL vmlinux 0xc9df055a xfrm_policy_walk_init +EXPORT_SYMBOL vmlinux 0xc9dfc383 __invalidate_device +EXPORT_SYMBOL vmlinux 0xc9e1da72 ppp_register_net_channel EXPORT_SYMBOL vmlinux 0xc9ed0401 imx_sc_rm_is_resource_owned +EXPORT_SYMBOL vmlinux 0xc9eefd51 d_prune_aliases +EXPORT_SYMBOL vmlinux 0xca05b882 vc_cons +EXPORT_SYMBOL vmlinux 0xca0e76c7 md_bitmap_update_sb EXPORT_SYMBOL vmlinux 0xca15413f ZSTD_resetDStream EXPORT_SYMBOL vmlinux 0xca21ebd3 bitmap_free -EXPORT_SYMBOL vmlinux 0xca2a210b read_cache_page -EXPORT_SYMBOL vmlinux 0xca373323 task_work_add EXPORT_SYMBOL vmlinux 0xca431c05 wake_bit_function -EXPORT_SYMBOL vmlinux 0xca465b41 phy_register_fixup_for_uid -EXPORT_SYMBOL vmlinux 0xca47c88b __skb_ext_del -EXPORT_SYMBOL vmlinux 0xca6170d6 truncate_inode_pages_range +EXPORT_SYMBOL vmlinux 0xca4de4bb inet_frag_kill +EXPORT_SYMBOL vmlinux 0xca53845a pnp_get_resource EXPORT_SYMBOL vmlinux 0xca62afaf xudma_rflow_is_gp -EXPORT_SYMBOL vmlinux 0xca6ccd66 bdi_set_max_ratio -EXPORT_SYMBOL vmlinux 0xca70e9f1 vfs_ioctl -EXPORT_SYMBOL vmlinux 0xca7748d3 jbd2_journal_start_reserved -EXPORT_SYMBOL vmlinux 0xca83acf9 __skb_recv_udp -EXPORT_SYMBOL vmlinux 0xca88d528 blk_integrity_unregister -EXPORT_SYMBOL vmlinux 0xca8e5c07 vfs_getattr +EXPORT_SYMBOL vmlinux 0xca62d360 netif_carrier_on +EXPORT_SYMBOL vmlinux 0xca90417d ip_check_defrag EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next +EXPORT_SYMBOL vmlinux 0xca98aba5 get_tree_keyed EXPORT_SYMBOL vmlinux 0xca9beaa4 __xa_store -EXPORT_SYMBOL vmlinux 0xcaafbec0 __scsi_add_device -EXPORT_SYMBOL vmlinux 0xcacffc83 mmc_card_is_blockaddr +EXPORT_SYMBOL vmlinux 0xcaa050ef module_refcount +EXPORT_SYMBOL vmlinux 0xcacf793b __cancel_dirty_page EXPORT_SYMBOL vmlinux 0xcad1aca8 acpi_exception -EXPORT_SYMBOL vmlinux 0xcade77c1 to_ndd -EXPORT_SYMBOL vmlinux 0xcae31370 dev_uc_del -EXPORT_SYMBOL vmlinux 0xcae5b606 kmem_cache_create -EXPORT_SYMBOL vmlinux 0xcaeb02f1 of_get_parent +EXPORT_SYMBOL vmlinux 0xcae1944b devfreq_remove_governor +EXPORT_SYMBOL vmlinux 0xcaed9c09 fman_get_bmi_max_fifo_size +EXPORT_SYMBOL vmlinux 0xcaeef171 locks_delete_block EXPORT_SYMBOL vmlinux 0xcaf2c603 scsi_sd_pm_domain -EXPORT_SYMBOL vmlinux 0xcaffa062 dev_remove_pack +EXPORT_SYMBOL vmlinux 0xcaf72368 mmc_release_host EXPORT_SYMBOL vmlinux 0xcb0288ea ledtrig_cpu -EXPORT_SYMBOL vmlinux 0xcb0a83c5 udp_seq_ops -EXPORT_SYMBOL vmlinux 0xcb1c9bf0 ps2_drain -EXPORT_SYMBOL vmlinux 0xcb211c61 pci_ep_cfs_remove_epc_group -EXPORT_SYMBOL vmlinux 0xcb227ee1 phy_set_max_speed -EXPORT_SYMBOL vmlinux 0xcb32b8a0 sock_set_priority +EXPORT_SYMBOL vmlinux 0xcb0567e4 jbd2_journal_inode_ranged_wait +EXPORT_SYMBOL vmlinux 0xcb0fca48 ppp_register_compressor +EXPORT_SYMBOL vmlinux 0xcb35fbaa msm_pinctrl_probe EXPORT_SYMBOL vmlinux 0xcb3ae215 call_blocking_lsm_notifier -EXPORT_SYMBOL vmlinux 0xcb435329 pci_bus_write_config_word -EXPORT_SYMBOL vmlinux 0xcb56a0e7 freeze_bdev -EXPORT_SYMBOL vmlinux 0xcb65a311 mmc_gpio_set_cd_wake -EXPORT_SYMBOL vmlinux 0xcb67266f input_allocate_device -EXPORT_SYMBOL vmlinux 0xcb6c4bc5 bio_clone_fast +EXPORT_SYMBOL vmlinux 0xcb503f9e netdev_adjacent_change_prepare +EXPORT_SYMBOL vmlinux 0xcb5b02d1 xfrm_policy_unregister_afinfo +EXPORT_SYMBOL vmlinux 0xcb5caf6f tcf_exts_num_actions EXPORT_SYMBOL vmlinux 0xcb733bf2 acpi_bus_set_power -EXPORT_SYMBOL vmlinux 0xcb85b6b6 tcf_exts_terse_dump -EXPORT_SYMBOL vmlinux 0xcb8ab4f6 md_write_inc -EXPORT_SYMBOL vmlinux 0xcbc531f6 sget +EXPORT_SYMBOL vmlinux 0xcb7d0e81 iw_handler_get_thrspy +EXPORT_SYMBOL vmlinux 0xcb7e134e __do_once_done +EXPORT_SYMBOL vmlinux 0xcb8e1282 pci_write_config_byte +EXPORT_SYMBOL vmlinux 0xcb96c00d pci_rebar_get_possible_sizes +EXPORT_SYMBOL vmlinux 0xcb96feee pcim_pin_device +EXPORT_SYMBOL vmlinux 0xcbbbb531 elv_rb_add EXPORT_SYMBOL vmlinux 0xcbc88a23 ZSTD_isFrame -EXPORT_SYMBOL vmlinux 0xcbc9719d sock_wmalloc -EXPORT_SYMBOL vmlinux 0xcbcbb777 mmc_gpiod_request_ro EXPORT_SYMBOL vmlinux 0xcbd4898c fortify_panic -EXPORT_SYMBOL vmlinux 0xcbf3d5a1 stream_open +EXPORT_SYMBOL vmlinux 0xcbddc6a4 tty_hangup EXPORT_SYMBOL vmlinux 0xcbfb33e4 init_opal_dev +EXPORT_SYMBOL vmlinux 0xcc05a6da mdio_device_remove EXPORT_SYMBOL vmlinux 0xcc1b882a idr_get_next_ul +EXPORT_SYMBOL vmlinux 0xcc1db857 inet_protos EXPORT_SYMBOL vmlinux 0xcc23002a hdmi_infoframe_pack_only EXPORT_SYMBOL vmlinux 0xcc248d26 serial8250_suspend_port -EXPORT_SYMBOL vmlinux 0xcc2c22cc netdev_name_node_alt_destroy EXPORT_SYMBOL vmlinux 0xcc328a5c reservation_ww_class -EXPORT_SYMBOL vmlinux 0xcc3e9889 copy_page_from_iter_atomic EXPORT_SYMBOL vmlinux 0xcc445ceb __sg_page_iter_dma_next -EXPORT_SYMBOL vmlinux 0xcc4871ab mmc_calc_max_discard -EXPORT_SYMBOL vmlinux 0xcc48d1e9 param_set_int EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible -EXPORT_SYMBOL vmlinux 0xcc59017a __post_watch_notification EXPORT_SYMBOL vmlinux 0xcc5d22d9 can_do_mlock +EXPORT_SYMBOL vmlinux 0xcc5df7a1 dup_iter +EXPORT_SYMBOL vmlinux 0xcc6ed6cd __blk_mq_alloc_disk +EXPORT_SYMBOL vmlinux 0xcc891d57 d_drop +EXPORT_SYMBOL vmlinux 0xcc951037 xp_dma_map EXPORT_SYMBOL vmlinux 0xcca5839d xen_vcpu_id -EXPORT_SYMBOL vmlinux 0xcca7ac64 cros_ec_query_all -EXPORT_SYMBOL vmlinux 0xcca802b9 sync_dirty_buffer -EXPORT_SYMBOL vmlinux 0xccadaba6 zpool_unregister_driver +EXPORT_SYMBOL vmlinux 0xccad2a02 of_get_child_by_name +EXPORT_SYMBOL vmlinux 0xccb55173 dm_table_get_md +EXPORT_SYMBOL vmlinux 0xccd481a1 netdev_err EXPORT_SYMBOL vmlinux 0xccd4c999 __sg_page_iter_start -EXPORT_SYMBOL vmlinux 0xccee6521 always_delete_dentry +EXPORT_SYMBOL vmlinux 0xccd956ac jbd2_journal_init_dev +EXPORT_SYMBOL vmlinux 0xcce75c79 md_bitmap_unplug EXPORT_SYMBOL vmlinux 0xccef37e4 ZSTD_DStreamOutSize -EXPORT_SYMBOL vmlinux 0xccf0ba4e pcie_capability_read_dword -EXPORT_SYMBOL vmlinux 0xccf187e5 con_is_bound +EXPORT_SYMBOL vmlinux 0xccf61f9f tcp_v4_send_check EXPORT_SYMBOL vmlinux 0xccfb9e07 dst_default_metrics EXPORT_SYMBOL vmlinux 0xccfd2ebc scsi_dev_info_list_del_keyed -EXPORT_SYMBOL vmlinux 0xccff65ba elv_rb_former_request +EXPORT_SYMBOL vmlinux 0xcd007ce8 _dev_warn EXPORT_SYMBOL vmlinux 0xcd01b8e6 acpi_attach_data -EXPORT_SYMBOL vmlinux 0xcd0beb27 __udp_disconnect +EXPORT_SYMBOL vmlinux 0xcd1d020b tcf_idrinfo_destroy EXPORT_SYMBOL vmlinux 0xcd256667 tcp_md5_needed +EXPORT_SYMBOL vmlinux 0xcd25cd0b param_set_uint EXPORT_SYMBOL vmlinux 0xcd279169 nla_find -EXPORT_SYMBOL vmlinux 0xcd31b5ef tcf_block_put_ext -EXPORT_SYMBOL vmlinux 0xcd7619bb inode_io_list_del +EXPORT_SYMBOL vmlinux 0xcd2d35d4 dquot_initialize_needed +EXPORT_SYMBOL vmlinux 0xcd3e5486 is_acpi_data_node +EXPORT_SYMBOL vmlinux 0xcd417cbb phy_read_paged +EXPORT_SYMBOL vmlinux 0xcd4f26c6 iw_handler_set_thrspy +EXPORT_SYMBOL vmlinux 0xcd5607a6 scsi_print_sense_hdr +EXPORT_SYMBOL vmlinux 0xcd5af52f tegra_ivc_init +EXPORT_SYMBOL vmlinux 0xcd81d7df param_ops_hexint EXPORT_SYMBOL vmlinux 0xcd8ce890 acpi_format_exception -EXPORT_SYMBOL vmlinux 0xcd984278 get_tree_nodev -EXPORT_SYMBOL vmlinux 0xcda666a4 path_get -EXPORT_SYMBOL vmlinux 0xcda97b3b iw_handler_set_spy -EXPORT_SYMBOL vmlinux 0xcdafbd3a free_cgroup_ns -EXPORT_SYMBOL vmlinux 0xcdb9abe6 blk_mq_tagset_wait_completed_request -EXPORT_SYMBOL vmlinux 0xcdc0c828 d_instantiate_new -EXPORT_SYMBOL vmlinux 0xcdc1256d ipv6_chk_addr +EXPORT_SYMBOL vmlinux 0xcdb25a51 security_dentry_create_files_as +EXPORT_SYMBOL vmlinux 0xcdbd27e2 __cleancache_invalidate_page EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel -EXPORT_SYMBOL vmlinux 0xcdc7ba4c config_item_get -EXPORT_SYMBOL vmlinux 0xcdddffce posix_lock_file +EXPORT_SYMBOL vmlinux 0xcdccfdb2 md_update_sb EXPORT_SYMBOL vmlinux 0xcde77bcc free_opal_dev +EXPORT_SYMBOL vmlinux 0xcde94dc4 inet_add_offload +EXPORT_SYMBOL vmlinux 0xcdecbf8b page_pool_put_page +EXPORT_SYMBOL vmlinux 0xcdf92d33 inet_csk_reqsk_queue_drop +EXPORT_SYMBOL vmlinux 0xcdfd2a9f del_gendisk EXPORT_SYMBOL vmlinux 0xce036f24 sg_split -EXPORT_SYMBOL vmlinux 0xce085762 mmc_cqe_recovery +EXPORT_SYMBOL vmlinux 0xce24ddae twl6040_reg_write EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake -EXPORT_SYMBOL vmlinux 0xce398c03 flow_rule_match_enc_ports +EXPORT_SYMBOL vmlinux 0xce310481 dev_uc_add_excl +EXPORT_SYMBOL vmlinux 0xce3b18e3 phy_ethtool_nway_reset +EXPORT_SYMBOL vmlinux 0xce3db51c xfrm_state_unregister_afinfo EXPORT_SYMBOL vmlinux 0xce4cdb8e fb_find_best_mode EXPORT_SYMBOL vmlinux 0xce4e47b6 __kfifo_skip_r +EXPORT_SYMBOL vmlinux 0xce531ed1 skb_ext_add EXPORT_SYMBOL vmlinux 0xce5ac24f zlib_inflate_workspacesize -EXPORT_SYMBOL vmlinux 0xce5dff10 scsi_device_lookup +EXPORT_SYMBOL vmlinux 0xce5d192d get_fs_type +EXPORT_SYMBOL vmlinux 0xce6e9e08 vfs_parse_fs_param_source EXPORT_SYMBOL vmlinux 0xce731b34 ucc_slow_get_qe_cr_subblock EXPORT_SYMBOL vmlinux 0xce76c257 acpi_get_irq_routing_table +EXPORT_SYMBOL vmlinux 0xce77cbeb mipi_dsi_dcs_nop +EXPORT_SYMBOL vmlinux 0xce7bf971 netlink_rcv_skb +EXPORT_SYMBOL vmlinux 0xce8036cd neigh_connected_output EXPORT_SYMBOL vmlinux 0xce807a25 up_write -EXPORT_SYMBOL vmlinux 0xce8c563e tty_port_tty_get -EXPORT_SYMBOL vmlinux 0xce97fc72 xp_raw_get_data +EXPORT_SYMBOL vmlinux 0xce8bed30 __icmp_send EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul -EXPORT_SYMBOL vmlinux 0xced0606f netpoll_setup EXPORT_SYMBOL vmlinux 0xced0f4d4 gen_pool_create -EXPORT_SYMBOL vmlinux 0xcee70b71 release_pages +EXPORT_SYMBOL vmlinux 0xcede5232 inet_csk_accept +EXPORT_SYMBOL vmlinux 0xceea23bc ndisc_mc_map EXPORT_SYMBOL vmlinux 0xceec8abd __mb_cache_entry_free -EXPORT_SYMBOL vmlinux 0xcef94d69 mark_buffer_async_write -EXPORT_SYMBOL vmlinux 0xcefaad34 cfb_fillrect +EXPORT_SYMBOL vmlinux 0xcef5ef81 blkdev_issue_flush EXPORT_SYMBOL vmlinux 0xcefb0c9f __mutex_init +EXPORT_SYMBOL vmlinux 0xcefc4fcc pci_release_selected_regions EXPORT_SYMBOL vmlinux 0xcefcd99a serial8250_unregister_port -EXPORT_SYMBOL vmlinux 0xcf29084a tcf_qevent_dump +EXPORT_SYMBOL vmlinux 0xcf001514 block_truncate_page +EXPORT_SYMBOL vmlinux 0xcf094024 tcp_md5_hash_key +EXPORT_SYMBOL vmlinux 0xcf0f3123 dput +EXPORT_SYMBOL vmlinux 0xcf11260b of_get_next_parent +EXPORT_SYMBOL vmlinux 0xcf273c73 set_anon_super EXPORT_SYMBOL vmlinux 0xcf2a6966 up -EXPORT_SYMBOL vmlinux 0xcf2d9824 nd_region_acquire_lane -EXPORT_SYMBOL vmlinux 0xcf39f8ba ptp_find_pin_unlocked -EXPORT_SYMBOL vmlinux 0xcf4f4b4d sync_mapping_buffers EXPORT_SYMBOL vmlinux 0xcf4fdd4d _atomic_dec_and_lock -EXPORT_SYMBOL vmlinux 0xcf5be2e3 cdrom_mode_sense -EXPORT_SYMBOL vmlinux 0xcf7204f5 pagecache_get_page -EXPORT_SYMBOL vmlinux 0xcf852906 __inet_hash -EXPORT_SYMBOL vmlinux 0xcf8c8d22 pci_scan_bus -EXPORT_SYMBOL vmlinux 0xcf8e82cc pci_clear_mwi -EXPORT_SYMBOL vmlinux 0xcf94ac2e dcache_dir_open +EXPORT_SYMBOL vmlinux 0xcf561a71 xfrm_init_state +EXPORT_SYMBOL vmlinux 0xcf5661e5 proc_create +EXPORT_SYMBOL vmlinux 0xcf57bc6a page_pool_update_nid +EXPORT_SYMBOL vmlinux 0xcf5cdd56 jbd2_journal_extend +EXPORT_SYMBOL vmlinux 0xcf5e0af5 eth_commit_mac_addr_change +EXPORT_SYMBOL vmlinux 0xcf699f80 iget_locked +EXPORT_SYMBOL vmlinux 0xcf7cea5a param_get_short +EXPORT_SYMBOL vmlinux 0xcf800129 uart_register_driver +EXPORT_SYMBOL vmlinux 0xcf825cbf pci_clear_master EXPORT_SYMBOL vmlinux 0xcf9b558d touchscreen_set_mt_pos -EXPORT_SYMBOL vmlinux 0xcfa52f1a vlan_vid_del -EXPORT_SYMBOL vmlinux 0xcfa7837b proc_set_size +EXPORT_SYMBOL vmlinux 0xcfa398e3 __register_chrdev EXPORT_SYMBOL vmlinux 0xcfa7e913 posix_acl_valid -EXPORT_SYMBOL vmlinux 0xcfc83b9d tcf_idr_check_alloc -EXPORT_SYMBOL vmlinux 0xcfc85c77 nd_dev_to_uuid +EXPORT_SYMBOL vmlinux 0xcfa8c49d flow_rule_match_ports +EXPORT_SYMBOL vmlinux 0xcfb43b08 sk_filter_trim_cap +EXPORT_SYMBOL vmlinux 0xcfb59c10 __mmap_lock_do_trace_released EXPORT_SYMBOL vmlinux 0xcfc9deaf atomic_dec_and_mutex_lock -EXPORT_SYMBOL vmlinux 0xcfd7f4b7 neigh_ifdown EXPORT_SYMBOL vmlinux 0xcfd884a8 __hsiphash_unaligned -EXPORT_SYMBOL vmlinux 0xcfe88463 no_seek_end_llseek +EXPORT_SYMBOL vmlinux 0xcfe30283 __ip_mc_dec_group EXPORT_SYMBOL vmlinux 0xcfeb98a8 acpi_processor_register_performance -EXPORT_SYMBOL vmlinux 0xcff3ba62 simple_dir_inode_operations -EXPORT_SYMBOL vmlinux 0xd0110867 jbd2_fc_begin_commit -EXPORT_SYMBOL vmlinux 0xd01a3ade fman_port_get_device +EXPORT_SYMBOL vmlinux 0xcfede0af inet_proto_csum_replace16 +EXPORT_SYMBOL vmlinux 0xcff16c19 padata_alloc_shell +EXPORT_SYMBOL vmlinux 0xcff44077 inet_dgram_ops +EXPORT_SYMBOL vmlinux 0xcff88b72 pci_msi_vec_count +EXPORT_SYMBOL vmlinux 0xd0128140 blk_mq_stop_hw_queue +EXPORT_SYMBOL vmlinux 0xd013b9ea netdev_class_remove_file_ns +EXPORT_SYMBOL vmlinux 0xd027d9fc bdi_set_max_ratio +EXPORT_SYMBOL vmlinux 0xd03e47e2 dev_mc_init +EXPORT_SYMBOL vmlinux 0xd0473265 tty_unregister_ldisc EXPORT_SYMBOL vmlinux 0xd04c1a64 sysctl_devconf_inherit_init_net -EXPORT_SYMBOL vmlinux 0xd060e9bb posix_acl_update_mode +EXPORT_SYMBOL vmlinux 0xd05247dd skb_copy_and_csum_bits EXPORT_SYMBOL vmlinux 0xd0654aba woken_wake_function -EXPORT_SYMBOL vmlinux 0xd06aeee9 stop_tty -EXPORT_SYMBOL vmlinux 0xd0718fd3 blkdev_get_by_dev -EXPORT_SYMBOL vmlinux 0xd0733f67 phy_start_cable_test_tdr -EXPORT_SYMBOL vmlinux 0xd074d015 path_has_submounts +EXPORT_SYMBOL vmlinux 0xd070d97a mmc_request_done EXPORT_SYMBOL vmlinux 0xd0760fc0 kfree_sensitive -EXPORT_SYMBOL vmlinux 0xd07d47b8 clean_bdev_aliases -EXPORT_SYMBOL vmlinux 0xd086ae2f skb_queue_tail -EXPORT_SYMBOL vmlinux 0xd086f5e9 param_ops_ullong -EXPORT_SYMBOL vmlinux 0xd08b8d3f tcp_sock_set_cork +EXPORT_SYMBOL vmlinux 0xd08f2546 blk_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0xd09b9def lease_get_mtime +EXPORT_SYMBOL vmlinux 0xd0a4e465 devm_kvasprintf EXPORT_SYMBOL vmlinux 0xd0ae5f55 __printk_cpu_trylock EXPORT_SYMBOL vmlinux 0xd0b74705 acpi_install_interface -EXPORT_SYMBOL vmlinux 0xd0d18e2f pcim_enable_device -EXPORT_SYMBOL vmlinux 0xd0d466f8 bioset_exit +EXPORT_SYMBOL vmlinux 0xd0b88d96 __remove_inode_hash +EXPORT_SYMBOL vmlinux 0xd0bbc08a mipi_dsi_dcs_set_tear_off +EXPORT_SYMBOL vmlinux 0xd0cd3929 fs_param_is_blockdev +EXPORT_SYMBOL vmlinux 0xd0d0df0c __genphy_config_aneg +EXPORT_SYMBOL vmlinux 0xd0e6564c qdisc_class_hash_grow EXPORT_SYMBOL vmlinux 0xd0fe8d51 sg_pcopy_from_buffer -EXPORT_SYMBOL vmlinux 0xd115619a pm860x_reg_read -EXPORT_SYMBOL vmlinux 0xd11af2b8 xfrm_alloc_spi +EXPORT_SYMBOL vmlinux 0xd106ba32 ip6_dst_hoplimit +EXPORT_SYMBOL vmlinux 0xd128bac7 ptp_clock_event EXPORT_SYMBOL vmlinux 0xd1363cc1 ucs2_strsize -EXPORT_SYMBOL vmlinux 0xd14b9a79 tcp_v4_conn_request -EXPORT_SYMBOL vmlinux 0xd15863ab blk_rq_append_bio -EXPORT_SYMBOL vmlinux 0xd15d4956 file_remove_privs +EXPORT_SYMBOL vmlinux 0xd147f87e fs_bio_set +EXPORT_SYMBOL vmlinux 0xd158e50b vm_insert_page EXPORT_SYMBOL vmlinux 0xd15eada0 nla_reserve -EXPORT_SYMBOL vmlinux 0xd1630a85 scsi_print_result -EXPORT_SYMBOL vmlinux 0xd17a95c8 kernel_write +EXPORT_SYMBOL vmlinux 0xd170dddc dev_mc_add_global EXPORT_SYMBOL vmlinux 0xd1816f32 frontswap_writethrough EXPORT_SYMBOL vmlinux 0xd194ddf9 acpi_gpe_count -EXPORT_SYMBOL vmlinux 0xd198c425 gnet_stats_start_copy_compat -EXPORT_SYMBOL vmlinux 0xd1d87da1 dev_open +EXPORT_SYMBOL vmlinux 0xd1aa2cac stream_open +EXPORT_SYMBOL vmlinux 0xd1b07db3 no_seek_end_llseek +EXPORT_SYMBOL vmlinux 0xd1bf00a4 dev_mc_unsync +EXPORT_SYMBOL vmlinux 0xd1c8b9cc key_unlink +EXPORT_SYMBOL vmlinux 0xd1d7428d fs_context_for_reconfigure EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string -EXPORT_SYMBOL vmlinux 0xd1f903a4 fib6_info_hw_flags_set -EXPORT_SYMBOL vmlinux 0xd1fcc040 rtnl_kfree_skbs +EXPORT_SYMBOL vmlinux 0xd1d9ae08 blk_put_queue +EXPORT_SYMBOL vmlinux 0xd1dab658 devm_pci_remap_iospace +EXPORT_SYMBOL vmlinux 0xd1db68a2 put_cmsg EXPORT_SYMBOL vmlinux 0xd2051916 qcom_scm_cpu_power_down +EXPORT_SYMBOL vmlinux 0xd213b33f bdev_dax_pgoff EXPORT_SYMBOL vmlinux 0xd2237016 radix_tree_delete_item -EXPORT_SYMBOL vmlinux 0xd22a64f0 genphy_check_and_restart_aneg +EXPORT_SYMBOL vmlinux 0xd22cec84 drop_super_exclusive +EXPORT_SYMBOL vmlinux 0xd22f97b0 mmc_free_host +EXPORT_SYMBOL vmlinux 0xd2386ada pm_vt_switch_required 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 0xd25f4f99 ipv6_mc_check_mld -EXPORT_SYMBOL vmlinux 0xd2659da9 nf_log_bind_pf +EXPORT_SYMBOL vmlinux 0xd271604e xfrm_policy_bysel_ctx EXPORT_SYMBOL vmlinux 0xd2779731 blk_limits_io_min -EXPORT_SYMBOL vmlinux 0xd279b429 noop_llseek EXPORT_SYMBOL vmlinux 0xd27b25dd blk_check_plugged -EXPORT_SYMBOL vmlinux 0xd27bfb84 fman_bind -EXPORT_SYMBOL vmlinux 0xd28a0ee3 request_key_with_auxdata -EXPORT_SYMBOL vmlinux 0xd28f8842 pnp_unregister_driver -EXPORT_SYMBOL vmlinux 0xd2b63e45 set_posix_acl +EXPORT_SYMBOL vmlinux 0xd2800691 nf_conntrack_destroy +EXPORT_SYMBOL vmlinux 0xd289254d netdev_reset_tc +EXPORT_SYMBOL vmlinux 0xd29e205f netdev_class_create_file_ns +EXPORT_SYMBOL vmlinux 0xd2b36869 icmp6_send +EXPORT_SYMBOL vmlinux 0xd2b47ca4 pci_match_id EXPORT_SYMBOL vmlinux 0xd2c99738 __kmalloc_track_caller EXPORT_SYMBOL vmlinux 0xd2da1048 register_netdevice_notifier EXPORT_SYMBOL vmlinux 0xd2e2a9d0 hdmi_spd_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0xd2e4d875 fs_param_is_u32 EXPORT_SYMBOL vmlinux 0xd2ea49b8 acpi_leave_sleep_state_prep -EXPORT_SYMBOL vmlinux 0xd2f1d436 dmaenginem_async_device_register +EXPORT_SYMBOL vmlinux 0xd2ef4d2d tcp_sendpage +EXPORT_SYMBOL vmlinux 0xd3112e96 seq_lseek EXPORT_SYMBOL vmlinux 0xd31ccb06 of_machine_is_compatible -EXPORT_SYMBOL vmlinux 0xd3286249 inc_nlink -EXPORT_SYMBOL vmlinux 0xd32d5758 crypto_sha1_update -EXPORT_SYMBOL vmlinux 0xd33bd008 jbd2_journal_begin_ordered_truncate +EXPORT_SYMBOL vmlinux 0xd32d752c register_shrinker +EXPORT_SYMBOL vmlinux 0xd32f7200 pci_bus_read_config_dword EXPORT_SYMBOL vmlinux 0xd3543063 memcg_kmem_enabled_key EXPORT_SYMBOL vmlinux 0xd3559ef4 __memset +EXPORT_SYMBOL vmlinux 0xd356241e seq_release EXPORT_SYMBOL vmlinux 0xd35a6d31 mempool_kmalloc -EXPORT_SYMBOL vmlinux 0xd3664213 dm_kobject_release +EXPORT_SYMBOL vmlinux 0xd360a861 pfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0xd36c339c sched_autogroup_detach EXPORT_SYMBOL vmlinux 0xd36dc10c get_random_u32 EXPORT_SYMBOL vmlinux 0xd36e3d59 prandom_bytes_state -EXPORT_SYMBOL vmlinux 0xd377ecc3 of_get_next_available_child -EXPORT_SYMBOL vmlinux 0xd3790215 ptp_clock_event -EXPORT_SYMBOL vmlinux 0xd396725c scsi_remove_host -EXPORT_SYMBOL vmlinux 0xd3aabb56 devfreq_unregister_opp_notifier -EXPORT_SYMBOL vmlinux 0xd3c33948 eth_gro_complete -EXPORT_SYMBOL vmlinux 0xd3d39250 __blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0xd370580d blk_rq_map_kern +EXPORT_SYMBOL vmlinux 0xd38bb389 watchdog_unregister_governor +EXPORT_SYMBOL vmlinux 0xd38c2098 sock_set_rcvbuf +EXPORT_SYMBOL vmlinux 0xd3aadae1 file_open_root +EXPORT_SYMBOL vmlinux 0xd3b577e6 pcie_capability_clear_and_set_dword +EXPORT_SYMBOL vmlinux 0xd3c291ef __quota_error +EXPORT_SYMBOL vmlinux 0xd3d889ae reuseport_migrate_sock +EXPORT_SYMBOL vmlinux 0xd3db4cf2 skb_set_owner_w +EXPORT_SYMBOL vmlinux 0xd3de1578 ppp_unit_number +EXPORT_SYMBOL vmlinux 0xd3e455ef dma_sync_single_for_cpu +EXPORT_SYMBOL vmlinux 0xd3e9de10 kmem_cache_alloc_node_trace EXPORT_SYMBOL vmlinux 0xd3eaf1ed devlink_dpipe_entry_clear -EXPORT_SYMBOL vmlinux 0xd3f100a1 __vfs_getxattr -EXPORT_SYMBOL vmlinux 0xd3f6ebd0 dquot_disable +EXPORT_SYMBOL vmlinux 0xd3f6b02d __inet6_lookup_established EXPORT_SYMBOL vmlinux 0xd3fba534 qcom_scm_set_cold_boot_addr -EXPORT_SYMBOL vmlinux 0xd40232a4 mr_mfc_find_parent +EXPORT_SYMBOL vmlinux 0xd4053258 fb_set_cmap EXPORT_SYMBOL vmlinux 0xd406d266 fb_mode_is_equal -EXPORT_SYMBOL vmlinux 0xd418cf10 vmf_insert_pfn -EXPORT_SYMBOL vmlinux 0xd42351ea phy_set_asym_pause -EXPORT_SYMBOL vmlinux 0xd423abc4 fd_install -EXPORT_SYMBOL vmlinux 0xd423d59f dev_set_group +EXPORT_SYMBOL vmlinux 0xd4126f17 of_mdiobus_child_is_phy +EXPORT_SYMBOL vmlinux 0xd41bc4de mr_mfc_find_any_parent EXPORT_SYMBOL vmlinux 0xd4339de8 qcom_scm_pas_init_image -EXPORT_SYMBOL vmlinux 0xd438af2b ip6_err_gen_icmpv6_unreach -EXPORT_SYMBOL vmlinux 0xd43c6f0d ps2_command -EXPORT_SYMBOL vmlinux 0xd44afd1e pps_register_source +EXPORT_SYMBOL vmlinux 0xd4452128 noop_fsync +EXPORT_SYMBOL vmlinux 0xd45b0dce param_get_ullong EXPORT_SYMBOL vmlinux 0xd45cc6ca bin2hex -EXPORT_SYMBOL vmlinux 0xd45de277 unregister_mii_timestamper -EXPORT_SYMBOL vmlinux 0xd4600157 skb_clone -EXPORT_SYMBOL vmlinux 0xd470704a key_invalidate +EXPORT_SYMBOL vmlinux 0xd47af57c unregister_binfmt EXPORT_SYMBOL vmlinux 0xd4835ef8 dmi_check_system -EXPORT_SYMBOL vmlinux 0xd48e0bd3 inet_shutdown -EXPORT_SYMBOL vmlinux 0xd4946829 kmem_cache_create_usercopy +EXPORT_SYMBOL vmlinux 0xd493d41f dev_lstats_read +EXPORT_SYMBOL vmlinux 0xd4947d86 to_nd_dax +EXPORT_SYMBOL vmlinux 0xd497951f pci_get_device +EXPORT_SYMBOL vmlinux 0xd49d6b9a dm_unregister_target EXPORT_SYMBOL vmlinux 0xd4a69d20 qm_channel_caam +EXPORT_SYMBOL vmlinux 0xd4b3618a flow_block_cb_decref EXPORT_SYMBOL vmlinux 0xd4bb4a82 inet6addr_validator_notifier_call_chain -EXPORT_SYMBOL vmlinux 0xd4cf79e8 pci_enable_device_mem +EXPORT_SYMBOL vmlinux 0xd4c04fea blk_post_runtime_suspend +EXPORT_SYMBOL vmlinux 0xd4c8a5a6 skb_get_hash_perturb +EXPORT_SYMBOL vmlinux 0xd4cfe8ff tcf_em_tree_dump EXPORT_SYMBOL vmlinux 0xd4d1983c udplite_table +EXPORT_SYMBOL vmlinux 0xd4e43a85 arp_send +EXPORT_SYMBOL vmlinux 0xd4efd450 mipi_dsi_dcs_soft_reset EXPORT_SYMBOL vmlinux 0xd4fa5a87 __kfifo_dma_out_prepare -EXPORT_SYMBOL vmlinux 0xd4fb17c3 cros_ec_get_host_event -EXPORT_SYMBOL vmlinux 0xd501e4bd mpage_readahead -EXPORT_SYMBOL vmlinux 0xd5248533 genphy_update_link +EXPORT_SYMBOL vmlinux 0xd4fc65e1 md_bitmap_free EXPORT_SYMBOL vmlinux 0xd5263820 mb_cache_destroy -EXPORT_SYMBOL vmlinux 0xd529e5a9 alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0xd5266a92 filemap_fdatawrite_range +EXPORT_SYMBOL vmlinux 0xd52f5929 max8925_reg_read EXPORT_SYMBOL vmlinux 0xd5346bfc acpi_get_possible_resources -EXPORT_SYMBOL vmlinux 0xd55f9b70 uart_register_driver -EXPORT_SYMBOL vmlinux 0xd562994d create_empty_buffers -EXPORT_SYMBOL vmlinux 0xd56fa442 i2c_del_driver -EXPORT_SYMBOL vmlinux 0xd571cf4f vme_register_bridge -EXPORT_SYMBOL vmlinux 0xd57617a6 skb_prepare_seq_read -EXPORT_SYMBOL vmlinux 0xd57cc731 pci_back_from_sleep -EXPORT_SYMBOL vmlinux 0xd5822b14 dcb_ieee_delapp +EXPORT_SYMBOL vmlinux 0xd56887ed timestamp_truncate +EXPORT_SYMBOL vmlinux 0xd57c5085 devm_ioremap_np +EXPORT_SYMBOL vmlinux 0xd5800077 kernel_sendmsg_locked +EXPORT_SYMBOL vmlinux 0xd584c620 free_task EXPORT_SYMBOL vmlinux 0xd58e70dd net_rand_noise -EXPORT_SYMBOL vmlinux 0xd58ee043 blk_queue_max_discard_sectors -EXPORT_SYMBOL vmlinux 0xd5a4739d _dev_warn -EXPORT_SYMBOL vmlinux 0xd5a691e9 clear_page_dirty_for_io +EXPORT_SYMBOL vmlinux 0xd5b18de8 xfrm6_protocol_deregister EXPORT_SYMBOL vmlinux 0xd5b3d0d5 xxh64_copy_state -EXPORT_SYMBOL vmlinux 0xd5f341d5 sock_no_recvmsg +EXPORT_SYMBOL vmlinux 0xd5d99635 of_get_cpu_state_node +EXPORT_SYMBOL vmlinux 0xd5e017c4 param_set_long +EXPORT_SYMBOL vmlinux 0xd5e52496 tcp_sync_mss EXPORT_SYMBOL vmlinux 0xd5fd90f1 prepare_to_wait EXPORT_SYMBOL vmlinux 0xd60736ec gf128mul_free_64k +EXPORT_SYMBOL vmlinux 0xd608500d iw_handler_get_spy +EXPORT_SYMBOL vmlinux 0xd60b91a9 vfs_ioctl +EXPORT_SYMBOL vmlinux 0xd60c5510 dev_set_alias +EXPORT_SYMBOL vmlinux 0xd61167c0 of_mdio_find_device +EXPORT_SYMBOL vmlinux 0xd6160dbb proc_create_mount_point +EXPORT_SYMBOL vmlinux 0xd621b254 generic_file_read_iter +EXPORT_SYMBOL vmlinux 0xd621d363 mmc_set_data_timeout +EXPORT_SYMBOL vmlinux 0xd623a2b2 neigh_changeaddr EXPORT_SYMBOL vmlinux 0xd62b1e45 trace_print_flags_seq EXPORT_SYMBOL vmlinux 0xd62ecd49 rps_sock_flow_table -EXPORT_SYMBOL vmlinux 0xd63bfde6 add_to_pipe -EXPORT_SYMBOL vmlinux 0xd63c7398 ps2_init EXPORT_SYMBOL vmlinux 0xd63fd8d1 utf8nagemax EXPORT_SYMBOL vmlinux 0xd643239a acpi_leave_sleep_state -EXPORT_SYMBOL vmlinux 0xd65416c1 jbd2_journal_lock_updates -EXPORT_SYMBOL vmlinux 0xd658d469 alloc_fddidev -EXPORT_SYMBOL vmlinux 0xd666c9ee pcie_ptm_enabled -EXPORT_SYMBOL vmlinux 0xd6674548 get_tree_single +EXPORT_SYMBOL vmlinux 0xd6499689 __alloc_disk_node +EXPORT_SYMBOL vmlinux 0xd6814235 set_posix_acl +EXPORT_SYMBOL vmlinux 0xd6856a77 dev_uc_sync_multiple +EXPORT_SYMBOL vmlinux 0xd68767c9 kill_pgrp EXPORT_SYMBOL vmlinux 0xd688716b dm_kcopyd_client_create EXPORT_SYMBOL vmlinux 0xd68c5a1f adjust_resource EXPORT_SYMBOL vmlinux 0xd691c6a9 unregister_sysctl_table -EXPORT_SYMBOL vmlinux 0xd6a8e182 mipi_dsi_dcs_read +EXPORT_SYMBOL vmlinux 0xd69326ba inet6_getname EXPORT_SYMBOL vmlinux 0xd6a91f54 twl_i2c_read -EXPORT_SYMBOL vmlinux 0xd6b944ae ppp_register_channel -EXPORT_SYMBOL vmlinux 0xd6bf4789 mr_rtm_dumproute -EXPORT_SYMBOL vmlinux 0xd6d00db3 tcf_chain_put_by_act -EXPORT_SYMBOL vmlinux 0xd6d492bb xfrm_stateonly_find +EXPORT_SYMBOL vmlinux 0xd6b5c691 dma_resv_init +EXPORT_SYMBOL vmlinux 0xd6b783fc mipi_dsi_dcs_write +EXPORT_SYMBOL vmlinux 0xd6bcd632 of_device_is_available +EXPORT_SYMBOL vmlinux 0xd6de934b of_find_mipi_dsi_device_by_node EXPORT_SYMBOL vmlinux 0xd6eaaea1 full_name_hash EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc -EXPORT_SYMBOL vmlinux 0xd6f839df inet_csk_complete_hashdance +EXPORT_SYMBOL vmlinux 0xd6fa02bb mdio_device_register EXPORT_SYMBOL vmlinux 0xd6fde043 is_module_sig_enforced -EXPORT_SYMBOL vmlinux 0xd707c7b5 blk_queue_max_write_zeroes_sectors +EXPORT_SYMBOL vmlinux 0xd702f7da lock_rename EXPORT_SYMBOL vmlinux 0xd70d35a1 gf128mul_4k_bbe EXPORT_SYMBOL vmlinux 0xd70f62b6 acpi_os_execute -EXPORT_SYMBOL vmlinux 0xd71a1767 __f_setown +EXPORT_SYMBOL vmlinux 0xd71c41cc param_ops_bool +EXPORT_SYMBOL vmlinux 0xd7272487 setup_new_exec +EXPORT_SYMBOL vmlinux 0xd7284202 seq_vprintf +EXPORT_SYMBOL vmlinux 0xd7328e05 release_pages +EXPORT_SYMBOL vmlinux 0xd733ada8 tcp_read_sock EXPORT_SYMBOL vmlinux 0xd738ca1b phy_unregister_fixup_for_uid -EXPORT_SYMBOL vmlinux 0xd74a1658 amba_driver_register -EXPORT_SYMBOL vmlinux 0xd74a9c24 xfrm_spd_getinfo -EXPORT_SYMBOL vmlinux 0xd74cfdb7 __scm_destroy -EXPORT_SYMBOL vmlinux 0xd75e67a2 ptp_find_pin -EXPORT_SYMBOL vmlinux 0xd76c46b6 __ip_mc_inc_group -EXPORT_SYMBOL vmlinux 0xd772401c scsi_target_resume -EXPORT_SYMBOL vmlinux 0xd773daec skb_abort_seq_read -EXPORT_SYMBOL vmlinux 0xd78304a9 pci_enable_wake -EXPORT_SYMBOL vmlinux 0xd7868408 security_dentry_init_security -EXPORT_SYMBOL vmlinux 0xd79cf656 bio_split -EXPORT_SYMBOL vmlinux 0xd7a24deb netdev_warn -EXPORT_SYMBOL vmlinux 0xd7b0f71f locks_delete_block -EXPORT_SYMBOL vmlinux 0xd7ba6556 pci_disable_msi +EXPORT_SYMBOL vmlinux 0xd73e4254 disk_start_io_acct +EXPORT_SYMBOL vmlinux 0xd74eb3e3 fwnode_mdiobus_phy_device_register +EXPORT_SYMBOL vmlinux 0xd75c0594 configfs_register_subsystem +EXPORT_SYMBOL vmlinux 0xd761c3c2 scsi_target_resume +EXPORT_SYMBOL vmlinux 0xd7627b15 rproc_put +EXPORT_SYMBOL vmlinux 0xd779f5e8 dquot_writeback_dquots +EXPORT_SYMBOL vmlinux 0xd78e0a0b dma_sync_wait +EXPORT_SYMBOL vmlinux 0xd79ff515 __module_get +EXPORT_SYMBOL vmlinux 0xd7bc987e generic_mii_ioctl +EXPORT_SYMBOL vmlinux 0xd7bcdd3b ipv6_chk_custom_prefix +EXPORT_SYMBOL vmlinux 0xd7c7f70f __netif_schedule +EXPORT_SYMBOL vmlinux 0xd7ce0ade of_get_next_available_child EXPORT_SYMBOL vmlinux 0xd7d280ad irq_poll_complete -EXPORT_SYMBOL vmlinux 0xd7d42a61 xfrm6_input_addr -EXPORT_SYMBOL vmlinux 0xd7dcb71c dump_page +EXPORT_SYMBOL vmlinux 0xd7d87e87 of_parse_phandle +EXPORT_SYMBOL vmlinux 0xd7e3d2d7 fwnode_get_mac_address EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll EXPORT_SYMBOL vmlinux 0xd7ea7094 nf_unregister_queue_handler +EXPORT_SYMBOL vmlinux 0xd7f65fde neigh_ifdown EXPORT_SYMBOL vmlinux 0xd7ff1b8a __ashlti3 -EXPORT_SYMBOL vmlinux 0xd80473c5 scsi_device_put +EXPORT_SYMBOL vmlinux 0xd80a65ba inet_ioctl +EXPORT_SYMBOL vmlinux 0xd80eef93 dev_set_mac_address EXPORT_SYMBOL vmlinux 0xd8131274 qman_alloc_cgrid_range -EXPORT_SYMBOL vmlinux 0xd82604c2 tcp_poll EXPORT_SYMBOL vmlinux 0xd828f063 xudma_tchanrt_write -EXPORT_SYMBOL vmlinux 0xd8338a38 padata_free -EXPORT_SYMBOL vmlinux 0xd846401e pcie_bandwidth_available -EXPORT_SYMBOL vmlinux 0xd86ce09f scsi_unblock_requests -EXPORT_SYMBOL vmlinux 0xd874c274 sock_no_shutdown -EXPORT_SYMBOL vmlinux 0xd87a76bb km_query +EXPORT_SYMBOL vmlinux 0xd82f3213 fb_find_mode +EXPORT_SYMBOL vmlinux 0xd8319ca1 dentry_path_raw +EXPORT_SYMBOL vmlinux 0xd8466894 vfs_mkobj +EXPORT_SYMBOL vmlinux 0xd8693662 sync_file_create +EXPORT_SYMBOL vmlinux 0xd86fc8cb phy_find_first +EXPORT_SYMBOL vmlinux 0xd87863f0 phy_attached_print +EXPORT_SYMBOL vmlinux 0xd878c176 udp_disconnect +EXPORT_SYMBOL vmlinux 0xd891f9be iput EXPORT_SYMBOL vmlinux 0xd89da37f movable_zone +EXPORT_SYMBOL vmlinux 0xd8a5ecd0 jbd2_journal_check_available_features EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format +EXPORT_SYMBOL vmlinux 0xd8afc19f of_node_put EXPORT_SYMBOL vmlinux 0xd8b61304 get_default_font -EXPORT_SYMBOL vmlinux 0xd8b627ad pci_pme_active -EXPORT_SYMBOL vmlinux 0xd8bd6a9f wireless_spy_update -EXPORT_SYMBOL vmlinux 0xd8bf6920 vme_unregister_driver -EXPORT_SYMBOL vmlinux 0xd8c93882 iov_iter_npages -EXPORT_SYMBOL vmlinux 0xd8d838f8 ww_mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0xd8c87f61 nd_region_release_lane EXPORT_SYMBOL vmlinux 0xd8df08ac acpi_handle_printk -EXPORT_SYMBOL vmlinux 0xd8e428f1 tcf_idr_create_from_flags -EXPORT_SYMBOL vmlinux 0xd91642b1 nexthop_res_grp_activity_update -EXPORT_SYMBOL vmlinux 0xd91e648f devm_of_find_backlight +EXPORT_SYMBOL vmlinux 0xd8e71da9 blk_mq_queue_stopped +EXPORT_SYMBOL vmlinux 0xd8f944c5 tcp_get_md5sig_pool EXPORT_SYMBOL vmlinux 0xd91f6ab6 strnlen_user -EXPORT_SYMBOL vmlinux 0xd925b035 seq_escape -EXPORT_SYMBOL vmlinux 0xd9261d35 netdev_master_upper_dev_get_rcu EXPORT_SYMBOL vmlinux 0xd92deb6b acpi_evaluate_object -EXPORT_SYMBOL vmlinux 0xd945a4f6 dquot_quota_sync +EXPORT_SYMBOL vmlinux 0xd936f069 netlink_kernel_release +EXPORT_SYMBOL vmlinux 0xd93b0751 fifo_create_dflt +EXPORT_SYMBOL vmlinux 0xd942964a key_type_keyring EXPORT_SYMBOL vmlinux 0xd9491c14 xa_destroy -EXPORT_SYMBOL vmlinux 0xd94b1ae5 pcim_iomap -EXPORT_SYMBOL vmlinux 0xd951ac98 security_dentry_create_files_as -EXPORT_SYMBOL vmlinux 0xd972db5c secpath_set +EXPORT_SYMBOL vmlinux 0xd959432c serio_unregister_child_port +EXPORT_SYMBOL vmlinux 0xd96226e8 add_to_pipe +EXPORT_SYMBOL vmlinux 0xd9796f26 proc_create_seq_private +EXPORT_SYMBOL vmlinux 0xd98579fa page_pool_return_skb_page EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages -EXPORT_SYMBOL vmlinux 0xd98c83e3 i2c_smbus_read_i2c_block_data_or_emulated -EXPORT_SYMBOL vmlinux 0xd98f85e7 iommu_get_msi_cookie -EXPORT_SYMBOL vmlinux 0xd9905998 of_mdio_find_device -EXPORT_SYMBOL vmlinux 0xd99b00c6 udp_set_csum +EXPORT_SYMBOL vmlinux 0xd98a57b1 udp_read_sock +EXPORT_SYMBOL vmlinux 0xd98cda47 kernel_sock_shutdown +EXPORT_SYMBOL vmlinux 0xd99483d6 build_skb_around EXPORT_SYMBOL vmlinux 0xd9a5ea54 __init_waitqueue_head -EXPORT_SYMBOL vmlinux 0xd9a90cf6 devm_pci_alloc_host_bridge -EXPORT_SYMBOL vmlinux 0xd9b2847f __qdisc_calculate_pkt_len +EXPORT_SYMBOL vmlinux 0xd9b3268f ip_mc_inc_group EXPORT_SYMBOL vmlinux 0xd9b85ef6 lockref_get EXPORT_SYMBOL vmlinux 0xd9b8eaea __SCK__tp_func_dma_fence_signaled +EXPORT_SYMBOL vmlinux 0xd9baa902 sock_bindtoindex +EXPORT_SYMBOL vmlinux 0xd9caf8e4 mmc_cqe_post_req EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler EXPORT_SYMBOL vmlinux 0xd9d952d1 crypto_aes_sbox -EXPORT_SYMBOL vmlinux 0xd9ddd73d fuse_mount_destroy -EXPORT_SYMBOL vmlinux 0xd9e15b29 fman_reset_mac -EXPORT_SYMBOL vmlinux 0xd9ee0b1a vfs_dup_fs_context -EXPORT_SYMBOL vmlinux 0xd9fd4d39 ipv6_sock_mc_join -EXPORT_SYMBOL vmlinux 0xda0f95ce xfrm_policy_unregister_afinfo +EXPORT_SYMBOL vmlinux 0xd9e224ae inet_frags_init +EXPORT_SYMBOL vmlinux 0xd9e3eb03 netdev_rx_csum_fault +EXPORT_SYMBOL vmlinux 0xd9fcc4fd pci_bus_read_config_byte +EXPORT_SYMBOL vmlinux 0xda029183 netif_receive_skb_core EXPORT_SYMBOL vmlinux 0xda10443c xudma_tchan_get_id -EXPORT_SYMBOL vmlinux 0xda2227e5 udp_read_sock -EXPORT_SYMBOL vmlinux 0xda3075cf vme_irq_generate +EXPORT_SYMBOL vmlinux 0xda10b2e6 tso_count_descs +EXPORT_SYMBOL vmlinux 0xda2b3e5b generic_fill_statx_attr EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open -EXPORT_SYMBOL vmlinux 0xda57ccca page_pool_update_nid -EXPORT_SYMBOL vmlinux 0xda5a9247 key_revoke +EXPORT_SYMBOL vmlinux 0xda4116a6 vme_register_driver +EXPORT_SYMBOL vmlinux 0xda4830c0 scsi_ioctl +EXPORT_SYMBOL vmlinux 0xda48c686 skb_copy_and_csum_dev +EXPORT_SYMBOL vmlinux 0xda6e11ce xfrm_find_acq_byseq EXPORT_SYMBOL vmlinux 0xda72a7ec ZSTD_nextInputType -EXPORT_SYMBOL vmlinux 0xda73a6f7 devm_ioremap +EXPORT_SYMBOL vmlinux 0xda73c4a4 of_graph_get_endpoint_by_regs +EXPORT_SYMBOL vmlinux 0xda76fc9c dev_change_carrier +EXPORT_SYMBOL vmlinux 0xda78052b blk_pm_runtime_init EXPORT_SYMBOL vmlinux 0xda89ea3b ip_idents_reserve -EXPORT_SYMBOL vmlinux 0xda974388 tcp_v4_mtu_reduced -EXPORT_SYMBOL vmlinux 0xdab4ea03 mmc_can_erase +EXPORT_SYMBOL vmlinux 0xda8d20fd of_get_next_cpu_node +EXPORT_SYMBOL vmlinux 0xdaa40547 pci_bus_assign_resources +EXPORT_SYMBOL vmlinux 0xdaae67f6 scsi_get_device_flags_keyed EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region -EXPORT_SYMBOL vmlinux 0xdaf364bf arp_xmit -EXPORT_SYMBOL vmlinux 0xdaf6a92a __vfs_setxattr -EXPORT_SYMBOL vmlinux 0xdaf9e8db inode_owner_or_capable -EXPORT_SYMBOL vmlinux 0xdafbb98e fscrypt_put_encryption_info -EXPORT_SYMBOL vmlinux 0xdafc5e65 sg_alloc_append_table_from_pages -EXPORT_SYMBOL vmlinux 0xdb3a194f scsi_set_medium_removal -EXPORT_SYMBOL vmlinux 0xdb5e2417 set_disk_ro -EXPORT_SYMBOL vmlinux 0xdb67de68 nd_btt_probe +EXPORT_SYMBOL vmlinux 0xdad695f2 __traceiter_spi_transfer_start +EXPORT_SYMBOL vmlinux 0xdadddc60 devm_mfd_add_devices +EXPORT_SYMBOL vmlinux 0xdaf54163 mii_check_link +EXPORT_SYMBOL vmlinux 0xdb075256 security_inode_init_security +EXPORT_SYMBOL vmlinux 0xdb3044c7 inode_dio_wait EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy -EXPORT_SYMBOL vmlinux 0xdb7093aa __alloc_skb EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free -EXPORT_SYMBOL vmlinux 0xdb80188a xfrm_policy_register_afinfo -EXPORT_SYMBOL vmlinux 0xdb8899cd inet6_unregister_protosw -EXPORT_SYMBOL vmlinux 0xdb8a633e skb_flow_dissect_hash -EXPORT_SYMBOL vmlinux 0xdb96956d register_shrinker -EXPORT_SYMBOL vmlinux 0xdbbf9d7f eth_commit_mac_addr_change +EXPORT_SYMBOL vmlinux 0xdb9985b4 posix_test_lock +EXPORT_SYMBOL vmlinux 0xdba04e84 mipi_dsi_dcs_get_power_mode +EXPORT_SYMBOL vmlinux 0xdba4f624 mod_zone_page_state +EXPORT_SYMBOL vmlinux 0xdbc19b90 pcim_iounmap_regions EXPORT_SYMBOL vmlinux 0xdbcf041a acpi_install_address_space_handler -EXPORT_SYMBOL vmlinux 0xdbdab28f iproc_msi_exit EXPORT_SYMBOL vmlinux 0xdbdf6c92 ioport_resource -EXPORT_SYMBOL vmlinux 0xdbe67e79 tcf_block_put -EXPORT_SYMBOL vmlinux 0xdbf9764b mipi_dsi_dcs_set_column_address -EXPORT_SYMBOL vmlinux 0xdbfb0809 xfrm_if_register_cb -EXPORT_SYMBOL vmlinux 0xdbff9ed7 sock_i_ino +EXPORT_SYMBOL vmlinux 0xdc0baab2 simple_transaction_read EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems -EXPORT_SYMBOL vmlinux 0xdc1cff63 vme_irq_free +EXPORT_SYMBOL vmlinux 0xdc3042d0 neigh_parms_alloc EXPORT_SYMBOL vmlinux 0xdc34158f fman_port_init EXPORT_SYMBOL vmlinux 0xdc3fcbc9 __sw_hweight8 EXPORT_SYMBOL vmlinux 0xdc49c198 reciprocal_value_adv +EXPORT_SYMBOL vmlinux 0xdc4dae48 flow_rule_match_enc_ports EXPORT_SYMBOL vmlinux 0xdc512134 backlight_register_notifier -EXPORT_SYMBOL vmlinux 0xdc667233 pcie_capability_clear_and_set_word -EXPORT_SYMBOL vmlinux 0xdc71dbc9 rtnl_link_get_net -EXPORT_SYMBOL vmlinux 0xdc98df3b inet_listen -EXPORT_SYMBOL vmlinux 0xdc99e8c9 scsi_get_device_flags_keyed +EXPORT_SYMBOL vmlinux 0xdc5ef663 unix_get_socket +EXPORT_SYMBOL vmlinux 0xdc6f8c0a serial8250_do_set_termios +EXPORT_SYMBOL vmlinux 0xdc77cf2b blk_mq_tagset_busy_iter +EXPORT_SYMBOL vmlinux 0xdc809b75 tc_setup_cb_add +EXPORT_SYMBOL vmlinux 0xdc8e6605 rproc_vq_interrupt +EXPORT_SYMBOL vmlinux 0xdc8e9016 iommu_get_dma_cookie +EXPORT_SYMBOL vmlinux 0xdc906fcd rt_dst_clone +EXPORT_SYMBOL vmlinux 0xdc96193f follow_down_one EXPORT_SYMBOL vmlinux 0xdca8c3d4 logic_outb +EXPORT_SYMBOL vmlinux 0xdcb75869 submit_bio_noacct EXPORT_SYMBOL vmlinux 0xdcb764ad memset -EXPORT_SYMBOL vmlinux 0xdcc5c4a8 proc_mkdir -EXPORT_SYMBOL vmlinux 0xdcd37287 mipi_dsi_dcs_set_tear_off -EXPORT_SYMBOL vmlinux 0xdcd695e3 genl_notify -EXPORT_SYMBOL vmlinux 0xdce598b3 fsync_bdev -EXPORT_SYMBOL vmlinux 0xdcfa920e mmc_request_done +EXPORT_SYMBOL vmlinux 0xdcd65ce7 mdiobus_unregister +EXPORT_SYMBOL vmlinux 0xdce82db4 proc_set_size +EXPORT_SYMBOL vmlinux 0xdcec39ee __of_get_address +EXPORT_SYMBOL vmlinux 0xdcf263a6 blk_mq_delay_run_hw_queues EXPORT_SYMBOL vmlinux 0xdd00447a acpi_resource_to_address64 -EXPORT_SYMBOL vmlinux 0xdd05b8b8 invalidate_bdev +EXPORT_SYMBOL vmlinux 0xdd05f0c5 free_netdev +EXPORT_SYMBOL vmlinux 0xdd109e51 xfrm_spd_getinfo EXPORT_SYMBOL vmlinux 0xdd18a993 acpi_check_dsm -EXPORT_SYMBOL vmlinux 0xdd29712d proc_set_user EXPORT_SYMBOL vmlinux 0xdd2c169b mb_cache_create -EXPORT_SYMBOL vmlinux 0xdd4e8a80 padata_alloc -EXPORT_SYMBOL vmlinux 0xdd5ea208 simple_fill_super -EXPORT_SYMBOL vmlinux 0xdd5f0522 amba_device_unregister +EXPORT_SYMBOL vmlinux 0xdd538c16 inet_dgram_connect +EXPORT_SYMBOL vmlinux 0xdd54b46d md_unregister_thread +EXPORT_SYMBOL vmlinux 0xdd5a22c4 skb_add_rx_frag +EXPORT_SYMBOL vmlinux 0xdd5c207b pps_register_source +EXPORT_SYMBOL vmlinux 0xdd645d76 has_capability EXPORT_SYMBOL vmlinux 0xdd64e639 strscpy -EXPORT_SYMBOL vmlinux 0xdd6cb8a0 __frontswap_store -EXPORT_SYMBOL vmlinux 0xdd7d9c16 jbd2_journal_init_jbd_inode +EXPORT_SYMBOL vmlinux 0xdd7790de secure_tcpv6_ts_off +EXPORT_SYMBOL vmlinux 0xdd7829e3 skb_store_bits EXPORT_SYMBOL vmlinux 0xdd7e3192 qcom_scm_pas_auth_and_reset EXPORT_SYMBOL vmlinux 0xdd8166a1 dma_fence_free -EXPORT_SYMBOL vmlinux 0xdd81b049 pci_stop_and_remove_bus_device EXPORT_SYMBOL vmlinux 0xdd849d51 scsi_get_sense_info_fld -EXPORT_SYMBOL vmlinux 0xdd8b5649 tcp_filter -EXPORT_SYMBOL vmlinux 0xdd8dbc97 eth_header_parse_protocol -EXPORT_SYMBOL vmlinux 0xdd973fce param_set_short -EXPORT_SYMBOL vmlinux 0xdd9fa2c7 mdiobus_unregister_device -EXPORT_SYMBOL vmlinux 0xdda39a94 mmc_erase_group_aligned +EXPORT_SYMBOL vmlinux 0xdd852ff2 netdev_name_node_alt_create +EXPORT_SYMBOL vmlinux 0xdd93913e unregister_qdisc EXPORT_SYMBOL vmlinux 0xddad7952 acpi_dbg_level EXPORT_SYMBOL vmlinux 0xddafdd31 vm_node_stat -EXPORT_SYMBOL vmlinux 0xddbc1360 eth_gro_receive -EXPORT_SYMBOL vmlinux 0xddc5d86c __generic_file_fsync -EXPORT_SYMBOL vmlinux 0xddceb498 rproc_elf_get_boot_addr -EXPORT_SYMBOL vmlinux 0xddd131fc iget_locked -EXPORT_SYMBOL vmlinux 0xddd9c8cb kthread_create_worker_on_cpu -EXPORT_SYMBOL vmlinux 0xdded92d7 has_capability -EXPORT_SYMBOL vmlinux 0xddf2595d submit_bio_noacct +EXPORT_SYMBOL vmlinux 0xddb88a4e __sk_mem_schedule +EXPORT_SYMBOL vmlinux 0xddbd9ee7 nd_pfn_validate +EXPORT_SYMBOL vmlinux 0xddd48540 inode_init_once +EXPORT_SYMBOL vmlinux 0xdde6b9d1 inc_nlink +EXPORT_SYMBOL vmlinux 0xddf58cc8 scsi_eh_finish_cmd EXPORT_SYMBOL vmlinux 0xddf6ad7a completion_done -EXPORT_SYMBOL vmlinux 0xde0e4f25 sock_diag_put_filterinfo -EXPORT_SYMBOL vmlinux 0xde14feb3 may_umount -EXPORT_SYMBOL vmlinux 0xde194785 genphy_read_abilities +EXPORT_SYMBOL vmlinux 0xde00f89c bio_endio +EXPORT_SYMBOL vmlinux 0xde1e1964 devm_extcon_register_notifier_all +EXPORT_SYMBOL vmlinux 0xde1eb803 sock_no_sendmsg +EXPORT_SYMBOL vmlinux 0xde226744 dev_load EXPORT_SYMBOL vmlinux 0xde293f9e add_wait_queue_exclusive -EXPORT_SYMBOL vmlinux 0xde2f8aaf __nlmsg_put +EXPORT_SYMBOL vmlinux 0xde326db5 dquot_get_state +EXPORT_SYMBOL vmlinux 0xde4016a9 generic_copy_file_range +EXPORT_SYMBOL vmlinux 0xde41becb tcp_gro_complete +EXPORT_SYMBOL vmlinux 0xde4c8492 iommu_dma_get_resv_regions EXPORT_SYMBOL vmlinux 0xde4d4ace dim_calc_stats -EXPORT_SYMBOL vmlinux 0xde64eeb0 rproc_add_subdev -EXPORT_SYMBOL vmlinux 0xde750f6a tso_build_hdr -EXPORT_SYMBOL vmlinux 0xde94f532 __inc_node_page_state +EXPORT_SYMBOL vmlinux 0xde53cdc2 cfb_fillrect +EXPORT_SYMBOL vmlinux 0xde5460e8 copy_string_kernel +EXPORT_SYMBOL vmlinux 0xde64a4d1 mipi_dsi_detach +EXPORT_SYMBOL vmlinux 0xde8caa5f generic_file_write_iter +EXPORT_SYMBOL vmlinux 0xdebaba76 pci_iomap_range +EXPORT_SYMBOL vmlinux 0xdec4bad7 input_close_device EXPORT_SYMBOL vmlinux 0xded39a6b gen_kill_estimator +EXPORT_SYMBOL vmlinux 0xdee7f22c pcim_enable_device EXPORT_SYMBOL vmlinux 0xdef7c893 fb_match_mode -EXPORT_SYMBOL vmlinux 0xdef85526 inet_get_local_port_range -EXPORT_SYMBOL vmlinux 0xdf035398 devfreq_update_status -EXPORT_SYMBOL vmlinux 0xdf0bcc75 pneigh_enqueue -EXPORT_SYMBOL vmlinux 0xdf1b0d93 sk_send_sigurg +EXPORT_SYMBOL vmlinux 0xdf02ae90 napi_complete_done +EXPORT_SYMBOL vmlinux 0xdf04619f fs_param_is_string +EXPORT_SYMBOL vmlinux 0xdf053a89 uart_match_port +EXPORT_SYMBOL vmlinux 0xdf106cdc jbd2_wait_inode_data EXPORT_SYMBOL vmlinux 0xdf256037 kstrtou8_from_user EXPORT_SYMBOL vmlinux 0xdf2c2742 rb_last EXPORT_SYMBOL vmlinux 0xdf36914b xa_find_after -EXPORT_SYMBOL vmlinux 0xdf4288a0 flow_rule_alloc -EXPORT_SYMBOL vmlinux 0xdf4e228b inet_csk_reqsk_queue_add +EXPORT_SYMBOL vmlinux 0xdf432b14 device_match_acpi_dev EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier -EXPORT_SYMBOL vmlinux 0xdf57530a kernel_listen -EXPORT_SYMBOL vmlinux 0xdf5ad0d0 dm_unregister_target +EXPORT_SYMBOL vmlinux 0xdf5bb021 security_unix_may_send EXPORT_SYMBOL vmlinux 0xdf6b082f proc_dointvec_jiffies -EXPORT_SYMBOL vmlinux 0xdf8baabb vc_cons +EXPORT_SYMBOL vmlinux 0xdf743115 netif_device_attach +EXPORT_SYMBOL vmlinux 0xdf81a791 register_mii_tstamp_controller EXPORT_SYMBOL vmlinux 0xdf8c695a __ndelay -EXPORT_SYMBOL vmlinux 0xdf8e3ba5 inet_frag_pull_head -EXPORT_SYMBOL vmlinux 0xdf908c65 cdrom_get_last_written EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid EXPORT_SYMBOL vmlinux 0xdf93b9d8 timespec64_to_jiffies -EXPORT_SYMBOL vmlinux 0xdf9d8b52 tcf_idr_cleanup -EXPORT_SYMBOL vmlinux 0xdfa29536 __neigh_create -EXPORT_SYMBOL vmlinux 0xdfcb4e21 unregister_binfmt +EXPORT_SYMBOL vmlinux 0xdfb1d84a release_sock +EXPORT_SYMBOL vmlinux 0xdfc6e7f5 add_random_ready_callback EXPORT_SYMBOL vmlinux 0xdfcc992c current_work -EXPORT_SYMBOL vmlinux 0xdfd4e132 fbcon_update_vcs +EXPORT_SYMBOL vmlinux 0xdfcd6c68 kobject_init +EXPORT_SYMBOL vmlinux 0xdfd67db1 dst_destroy EXPORT_SYMBOL vmlinux 0xdfdfa9e7 utf8nfdi -EXPORT_SYMBOL vmlinux 0xdfecd5ac page_mapping +EXPORT_SYMBOL vmlinux 0xdff777fd mdio_bus_type EXPORT_SYMBOL vmlinux 0xdff905e5 vme_slave_free +EXPORT_SYMBOL vmlinux 0xdff9d66c security_sk_classify_flow EXPORT_SYMBOL vmlinux 0xdffc80fc vesa_modes -EXPORT_SYMBOL vmlinux 0xe016d8f2 __generic_file_write_iter -EXPORT_SYMBOL vmlinux 0xe0287dbd filemap_map_pages +EXPORT_SYMBOL vmlinux 0xe00bbb1e wait_on_page_bit_killable +EXPORT_SYMBOL vmlinux 0xe01e2730 pci_dev_put EXPORT_SYMBOL vmlinux 0xe02c9c92 __xa_erase +EXPORT_SYMBOL vmlinux 0xe02d289c __pci_register_driver +EXPORT_SYMBOL vmlinux 0xe0383acc setattr_prepare EXPORT_SYMBOL vmlinux 0xe03a689d dma_fence_array_ops -EXPORT_SYMBOL vmlinux 0xe040052f devfreq_register_opp_notifier EXPORT_SYMBOL vmlinux 0xe0419ac4 kstrtos16 -EXPORT_SYMBOL vmlinux 0xe0778f31 dm_kcopyd_zero EXPORT_SYMBOL vmlinux 0xe07e5f44 acpi_reconfig_notifier_unregister -EXPORT_SYMBOL vmlinux 0xe07eb22f pnp_request_card_device +EXPORT_SYMBOL vmlinux 0xe07fe253 pcim_set_mwi EXPORT_SYMBOL vmlinux 0xe080e8f0 set_current_groups EXPORT_SYMBOL vmlinux 0xe082e88d acpi_check_address_range +EXPORT_SYMBOL vmlinux 0xe0853d28 tcp_seq_start +EXPORT_SYMBOL vmlinux 0xe085762b pci_get_domain_bus_and_slot EXPORT_SYMBOL vmlinux 0xe091c977 list_sort EXPORT_SYMBOL vmlinux 0xe0955f76 utf8_casefold -EXPORT_SYMBOL vmlinux 0xe09e0e99 __dynamic_netdev_dbg -EXPORT_SYMBOL vmlinux 0xe0b04174 path_is_under +EXPORT_SYMBOL vmlinux 0xe097fd4b set_capacity +EXPORT_SYMBOL vmlinux 0xe0a0ca9c pci_bus_read_config_word EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free -EXPORT_SYMBOL vmlinux 0xe0b4dd6d vme_bus_type EXPORT_SYMBOL vmlinux 0xe0bef318 icst_hz_to_vco -EXPORT_SYMBOL vmlinux 0xe0c15dc1 __skb_warn_lro_forwarding -EXPORT_SYMBOL vmlinux 0xe0c7aa7c ip_route_input_noref -EXPORT_SYMBOL vmlinux 0xe0cbc6fe would_dump -EXPORT_SYMBOL vmlinux 0xe0cc56fa netdev_notice -EXPORT_SYMBOL vmlinux 0xe0e7173d iov_iter_revert +EXPORT_SYMBOL vmlinux 0xe0d4c9ce t10_pi_type3_ip +EXPORT_SYMBOL vmlinux 0xe0e44acd dma_resv_reserve_shared +EXPORT_SYMBOL vmlinux 0xe0fd9a65 flow_rule_match_enc_keyid EXPORT_SYMBOL vmlinux 0xe113bbbc csum_partial -EXPORT_SYMBOL vmlinux 0xe11694b8 sock_no_sendpage_locked -EXPORT_SYMBOL vmlinux 0xe116d7d0 tty_unlock +EXPORT_SYMBOL vmlinux 0xe116e431 mr_mfc_seq_next EXPORT_SYMBOL vmlinux 0xe11ca997 ZSTD_getDictID_fromDict -EXPORT_SYMBOL vmlinux 0xe1224ebb input_mt_destroy_slots EXPORT_SYMBOL vmlinux 0xe123f3d9 dma_fence_release +EXPORT_SYMBOL vmlinux 0xe1265db2 blk_mq_tagset_wait_completed_request +EXPORT_SYMBOL vmlinux 0xe12a7cfe kernel_param_lock EXPORT_SYMBOL vmlinux 0xe12bda79 vme_dma_free_attribute EXPORT_SYMBOL vmlinux 0xe138fb8c percpu_counter_add_batch +EXPORT_SYMBOL vmlinux 0xe1396b0b filemap_map_pages EXPORT_SYMBOL vmlinux 0xe13cd8a7 dmi_name_in_vendors -EXPORT_SYMBOL vmlinux 0xe146ec05 pfifo_fast_ops -EXPORT_SYMBOL vmlinux 0xe15167aa pci_add_new_bus -EXPORT_SYMBOL vmlinux 0xe1526529 inet6_add_protocol -EXPORT_SYMBOL vmlinux 0xe155bb68 __xfrm_route_forward -EXPORT_SYMBOL vmlinux 0xe15c3b82 of_n_addr_cells -EXPORT_SYMBOL vmlinux 0xe178f2e0 kill_pgrp -EXPORT_SYMBOL vmlinux 0xe17b8038 inode_add_bytes -EXPORT_SYMBOL vmlinux 0xe19a3fca blk_sync_queue +EXPORT_SYMBOL vmlinux 0xe158a942 icmpv6_ndo_send +EXPORT_SYMBOL vmlinux 0xe15e03f9 page_pool_alloc_frag +EXPORT_SYMBOL vmlinux 0xe162a8b0 xfrm6_rcv_encap +EXPORT_SYMBOL vmlinux 0xe165de66 skb_mac_gso_segment +EXPORT_SYMBOL vmlinux 0xe16cf820 security_sctp_bind_connect +EXPORT_SYMBOL vmlinux 0xe17d664c of_graph_get_endpoint_count +EXPORT_SYMBOL vmlinux 0xe1a1be32 lookup_one_len_unlocked EXPORT_SYMBOL vmlinux 0xe1a4f16a secure_ipv6_port_ephemeral -EXPORT_SYMBOL vmlinux 0xe1b1fe78 dma_async_device_register -EXPORT_SYMBOL vmlinux 0xe1bb7d07 acpi_device_hid +EXPORT_SYMBOL vmlinux 0xe1b80292 devm_devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0xe1b9fdd3 i2c_transfer_buffer_flags +EXPORT_SYMBOL vmlinux 0xe1c7ad72 amba_release_regions +EXPORT_SYMBOL vmlinux 0xe1d3eeb7 phy_advertise_supported EXPORT_SYMBOL vmlinux 0xe1dcf64a audit_log_format -EXPORT_SYMBOL vmlinux 0xe1f6ba70 __xfrm_state_destroy -EXPORT_SYMBOL vmlinux 0xe2000c91 __pagevec_release -EXPORT_SYMBOL vmlinux 0xe2030718 xfrm_find_acq -EXPORT_SYMBOL vmlinux 0xe211ffb7 __blk_rq_map_sg +EXPORT_SYMBOL vmlinux 0xe1f698da vga_client_register +EXPORT_SYMBOL vmlinux 0xe20a77ba genphy_read_status_fixed +EXPORT_SYMBOL vmlinux 0xe2120cb8 nf_register_sockopt EXPORT_SYMBOL vmlinux 0xe21f18ac __genradix_iter_peek -EXPORT_SYMBOL vmlinux 0xe22bb223 sock_efree -EXPORT_SYMBOL vmlinux 0xe238d1a0 blk_mq_unique_tag -EXPORT_SYMBOL vmlinux 0xe247dce0 xfrm_state_delete -EXPORT_SYMBOL vmlinux 0xe2567692 skb_push -EXPORT_SYMBOL vmlinux 0xe25f765d nonseekable_open -EXPORT_SYMBOL vmlinux 0xe262ea8c iommu_get_dma_cookie +EXPORT_SYMBOL vmlinux 0xe2267c0f d_alloc +EXPORT_SYMBOL vmlinux 0xe240e720 textsearch_find_continuous +EXPORT_SYMBOL vmlinux 0xe24e4bd8 netlink_broadcast +EXPORT_SYMBOL vmlinux 0xe260ab49 vm_map_pages EXPORT_SYMBOL vmlinux 0xe271128b cpumask_any_distribute EXPORT_SYMBOL vmlinux 0xe273d75d alloc_cpu_rmap -EXPORT_SYMBOL vmlinux 0xe299426d tcp_syn_ack_timeout -EXPORT_SYMBOL vmlinux 0xe29a2550 elv_bio_merge_ok -EXPORT_SYMBOL vmlinux 0xe29ecd83 generic_file_read_iter -EXPORT_SYMBOL vmlinux 0xe29fb98a xfrm_policy_insert -EXPORT_SYMBOL vmlinux 0xe2d18e1c dquot_destroy +EXPORT_SYMBOL vmlinux 0xe27b824f mfd_cell_disable +EXPORT_SYMBOL vmlinux 0xe2945a7b page_pool_destroy +EXPORT_SYMBOL vmlinux 0xe297ab63 md_bitmap_end_sync +EXPORT_SYMBOL vmlinux 0xe2a4c1d2 vm_map_ram +EXPORT_SYMBOL vmlinux 0xe2acd992 ip6tun_encaps +EXPORT_SYMBOL vmlinux 0xe2d01f4c devm_pci_alloc_host_bridge EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp -EXPORT_SYMBOL vmlinux 0xe2fc1fcd da903x_query_status -EXPORT_SYMBOL vmlinux 0xe302d28a wait_on_page_private_2_killable -EXPORT_SYMBOL vmlinux 0xe30a9c0c mdiobus_alloc_size -EXPORT_SYMBOL vmlinux 0xe31b9014 __pci_register_driver -EXPORT_SYMBOL vmlinux 0xe32775eb qdisc_put +EXPORT_SYMBOL vmlinux 0xe2eb9495 sock_sendmsg +EXPORT_SYMBOL vmlinux 0xe2ff667d ipv6_chk_addr +EXPORT_SYMBOL vmlinux 0xe302dcb7 rproc_free +EXPORT_SYMBOL vmlinux 0xe3049208 page_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0xe305762c rpmh_invalidate +EXPORT_SYMBOL vmlinux 0xe30e7c58 mipi_dsi_dcs_set_pixel_format +EXPORT_SYMBOL vmlinux 0xe315a8dd init_pseudo EXPORT_SYMBOL vmlinux 0xe32ab4d8 xxh64_digest -EXPORT_SYMBOL vmlinux 0xe3397fbc from_kuid_munged -EXPORT_SYMBOL vmlinux 0xe3469765 devfreq_remove_device -EXPORT_SYMBOL vmlinux 0xe3568754 xp_alloc -EXPORT_SYMBOL vmlinux 0xe35a82be scsi_eh_finish_cmd -EXPORT_SYMBOL vmlinux 0xe35b9094 end_buffer_read_sync -EXPORT_SYMBOL vmlinux 0xe381ff61 d_lookup -EXPORT_SYMBOL vmlinux 0xe3880607 tty_flip_buffer_push -EXPORT_SYMBOL vmlinux 0xe39736c5 of_get_child_by_name +EXPORT_SYMBOL vmlinux 0xe338f79a copy_page_to_iter +EXPORT_SYMBOL vmlinux 0xe33e07ac mmc_gpio_set_cd_isr +EXPORT_SYMBOL vmlinux 0xe348cdf8 clk_get +EXPORT_SYMBOL vmlinux 0xe349f9a3 pin_user_pages_remote +EXPORT_SYMBOL vmlinux 0xe360e113 pnp_unregister_card_driver +EXPORT_SYMBOL vmlinux 0xe379e5dc fwnode_irq_get EXPORT_SYMBOL vmlinux 0xe39b2ea5 sha256 -EXPORT_SYMBOL vmlinux 0xe3a17259 dev_mc_sync_multiple -EXPORT_SYMBOL vmlinux 0xe3b39a00 truncate_inode_pages -EXPORT_SYMBOL vmlinux 0xe3bfe670 input_register_device -EXPORT_SYMBOL vmlinux 0xe3dc4226 pci_unmap_rom -EXPORT_SYMBOL vmlinux 0xe3dec000 dquot_acquire +EXPORT_SYMBOL vmlinux 0xe3a0f381 blk_queue_io_min +EXPORT_SYMBOL vmlinux 0xe3af7f80 mmc_card_is_blockaddr +EXPORT_SYMBOL vmlinux 0xe3bd8071 fman_set_port_params +EXPORT_SYMBOL vmlinux 0xe3cc8a31 end_buffer_async_write +EXPORT_SYMBOL vmlinux 0xe3e95f87 scsi_device_set_state EXPORT_SYMBOL vmlinux 0xe3ec2f2b alloc_chrdev_region -EXPORT_SYMBOL vmlinux 0xe3ed7ddf component_match_add_typed -EXPORT_SYMBOL vmlinux 0xe3fb13c7 inet_csk_reqsk_queue_drop +EXPORT_SYMBOL vmlinux 0xe3fe6546 vfs_mkdir EXPORT_SYMBOL vmlinux 0xe3feba56 tasklet_unlock_spin_wait EXPORT_SYMBOL vmlinux 0xe3ff2c41 get_random_u64 -EXPORT_SYMBOL vmlinux 0xe4066a9a qdisc_watchdog_init +EXPORT_SYMBOL vmlinux 0xe407e9a0 tty_port_block_til_ready EXPORT_SYMBOL vmlinux 0xe40976c0 pnp_range_reserved -EXPORT_SYMBOL vmlinux 0xe40a8480 tcp_child_process EXPORT_SYMBOL vmlinux 0xe40c37ea down_write_trylock -EXPORT_SYMBOL vmlinux 0xe411fd1b twl6040_get_sysclk -EXPORT_SYMBOL vmlinux 0xe420faef tcp_getsockopt -EXPORT_SYMBOL vmlinux 0xe4269e51 inet_addr_type -EXPORT_SYMBOL vmlinux 0xe42d5399 md_wait_for_blocked_rdev +EXPORT_SYMBOL vmlinux 0xe41bd365 sg_miter_stop +EXPORT_SYMBOL vmlinux 0xe41c49c5 skb_copy_expand +EXPORT_SYMBOL vmlinux 0xe42df7d2 blk_put_request EXPORT_SYMBOL vmlinux 0xe4329092 __ctzdi2 -EXPORT_SYMBOL vmlinux 0xe43e4adf request_firmware -EXPORT_SYMBOL vmlinux 0xe4414ca6 xp_dma_map -EXPORT_SYMBOL vmlinux 0xe44c2594 simple_setattr -EXPORT_SYMBOL vmlinux 0xe4862be3 scsi_host_put -EXPORT_SYMBOL vmlinux 0xe486bcd5 bio_reset +EXPORT_SYMBOL vmlinux 0xe4332fbf netpoll_poll_dev +EXPORT_SYMBOL vmlinux 0xe434d75d vmf_insert_pfn +EXPORT_SYMBOL vmlinux 0xe4391928 netdev_master_upper_dev_get_rcu +EXPORT_SYMBOL vmlinux 0xe43f8c73 bio_init +EXPORT_SYMBOL vmlinux 0xe454a205 request_firmware_into_buf +EXPORT_SYMBOL vmlinux 0xe455cf70 jbd2_journal_put_journal_head +EXPORT_SYMBOL vmlinux 0xe465cc82 phy_detach +EXPORT_SYMBOL vmlinux 0xe471bf93 dma_unmap_resource +EXPORT_SYMBOL vmlinux 0xe47ceeb4 mod_node_page_state +EXPORT_SYMBOL vmlinux 0xe4812536 i2c_smbus_read_i2c_block_data +EXPORT_SYMBOL vmlinux 0xe48178fb register_framebuffer +EXPORT_SYMBOL vmlinux 0xe49f2dbe of_graph_get_port_by_id EXPORT_SYMBOL vmlinux 0xe4bbc1dd kimage_voffset EXPORT_SYMBOL vmlinux 0xe4bc2c2f hdmi_drm_infoframe_pack -EXPORT_SYMBOL vmlinux 0xe4c7a5f0 dev_pick_tx_cpu_id -EXPORT_SYMBOL vmlinux 0xe4c8faf2 dev_set_allmulti -EXPORT_SYMBOL vmlinux 0xe4e0963b cdev_alloc -EXPORT_SYMBOL vmlinux 0xe4e42759 __xfrm_state_delete -EXPORT_SYMBOL vmlinux 0xe4e50ba9 phy_ethtool_get_sset_count -EXPORT_SYMBOL vmlinux 0xe4f1981a tcf_register_action -EXPORT_SYMBOL vmlinux 0xe4fa8250 set_bh_page -EXPORT_SYMBOL vmlinux 0xe4ff390c phy_find_first +EXPORT_SYMBOL vmlinux 0xe4cbbe0d vm_insert_pages +EXPORT_SYMBOL vmlinux 0xe4da261e filemap_fdatawait_keep_errors +EXPORT_SYMBOL vmlinux 0xe4dc1d77 tty_wait_until_sent +EXPORT_SYMBOL vmlinux 0xe4e72545 forget_all_cached_acls +EXPORT_SYMBOL vmlinux 0xe503a311 can_nice EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq -EXPORT_SYMBOL vmlinux 0xe5307a4b xfrm6_protocol_register -EXPORT_SYMBOL vmlinux 0xe5353547 seg6_hmac_net_exit -EXPORT_SYMBOL vmlinux 0xe559f830 blkdev_put -EXPORT_SYMBOL vmlinux 0xe5791be8 unregister_console +EXPORT_SYMBOL vmlinux 0xe524db2c __bforget +EXPORT_SYMBOL vmlinux 0xe55c3b80 blk_mq_start_hw_queue +EXPORT_SYMBOL vmlinux 0xe569cfc8 ping_prot +EXPORT_SYMBOL vmlinux 0xe56e1858 account_page_redirty EXPORT_SYMBOL vmlinux 0xe57feefb qcom_scm_ocmem_unlock EXPORT_SYMBOL vmlinux 0xe58090ca security_ib_endport_manage_subnet -EXPORT_SYMBOL vmlinux 0xe588e6cc misc_deregister +EXPORT_SYMBOL vmlinux 0xe583c465 __skb_recv_udp +EXPORT_SYMBOL vmlinux 0xe58a80ae vlan_ioctl_set +EXPORT_SYMBOL vmlinux 0xe58ae9b8 cpufreq_generic_suspend EXPORT_SYMBOL vmlinux 0xe590dea3 sk_busy_loop_end -EXPORT_SYMBOL vmlinux 0xe5bab7a3 vlan_dev_vlan_proto +EXPORT_SYMBOL vmlinux 0xe59bf834 pnp_register_card_driver +EXPORT_SYMBOL vmlinux 0xe5a792b5 __ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0xe5ab7b49 devm_request_any_context_irq +EXPORT_SYMBOL vmlinux 0xe5b86cef flow_indr_block_cb_alloc EXPORT_SYMBOL vmlinux 0xe5bc9a53 slhc_free -EXPORT_SYMBOL vmlinux 0xe5bedc4a of_graph_get_remote_endpoint EXPORT_SYMBOL vmlinux 0xe5c60bd2 percpu_counter_set EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen -EXPORT_SYMBOL vmlinux 0xe5f98ad9 crypto_sha256_update -EXPORT_SYMBOL vmlinux 0xe5fc0da1 dquot_drop +EXPORT_SYMBOL vmlinux 0xe5d027f5 serio_close +EXPORT_SYMBOL vmlinux 0xe5d5cc95 ip_mc_join_group +EXPORT_SYMBOL vmlinux 0xe60230bf sk_stream_error EXPORT_SYMBOL vmlinux 0xe613a798 inet_addr_is_any -EXPORT_SYMBOL vmlinux 0xe620a4bb param_get_ullong -EXPORT_SYMBOL vmlinux 0xe65be9f2 rproc_coredump_set_elf_info -EXPORT_SYMBOL vmlinux 0xe661ef61 __tcf_em_tree_match -EXPORT_SYMBOL vmlinux 0xe66b259c mipi_dsi_dcs_get_display_brightness -EXPORT_SYMBOL vmlinux 0xe66d2397 dget_parent -EXPORT_SYMBOL vmlinux 0xe670447d pnp_unregister_card_driver -EXPORT_SYMBOL vmlinux 0xe678ce05 scsi_device_quiesce -EXPORT_SYMBOL vmlinux 0xe67f22ff generic_ro_fops -EXPORT_SYMBOL vmlinux 0xe67f51d1 configfs_unregister_group +EXPORT_SYMBOL vmlinux 0xe613c620 ptp_schedule_worker +EXPORT_SYMBOL vmlinux 0xe619c362 fb_get_mode +EXPORT_SYMBOL vmlinux 0xe61abbed ip_local_deliver +EXPORT_SYMBOL vmlinux 0xe624b4f0 dev_change_proto_down_reason +EXPORT_SYMBOL vmlinux 0xe62589ab devm_memunmap +EXPORT_SYMBOL vmlinux 0xe62747a2 vme_dma_list_free +EXPORT_SYMBOL vmlinux 0xe6354097 scsi_report_bus_reset +EXPORT_SYMBOL vmlinux 0xe639ff35 key_validate +EXPORT_SYMBOL vmlinux 0xe646a398 netdev_info +EXPORT_SYMBOL vmlinux 0xe64972b7 scsi_host_busy +EXPORT_SYMBOL vmlinux 0xe6499df1 phy_ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0xe6672f39 request_partial_firmware_into_buf +EXPORT_SYMBOL vmlinux 0xe66c4eee blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0xe688ad2c linkwatch_fire_event +EXPORT_SYMBOL vmlinux 0xe689aa10 vfs_get_fsid EXPORT_SYMBOL vmlinux 0xe691ac7f ZSTD_decompressBegin -EXPORT_SYMBOL vmlinux 0xe6c00f52 mdiobus_get_phy -EXPORT_SYMBOL vmlinux 0xe6c8fde8 iov_iter_advance +EXPORT_SYMBOL vmlinux 0xe692a9b7 tcp_getsockopt +EXPORT_SYMBOL vmlinux 0xe694a649 udp_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0xe69f705e pcie_port_service_register +EXPORT_SYMBOL vmlinux 0xe6b0a728 rproc_coredump_add_custom_segment +EXPORT_SYMBOL vmlinux 0xe6b1cf5b blk_queue_max_segment_size +EXPORT_SYMBOL vmlinux 0xe6b9a663 tty_register_device +EXPORT_SYMBOL vmlinux 0xe6bf02a4 xfrm_state_update +EXPORT_SYMBOL vmlinux 0xe6c1dec5 param_get_ulong +EXPORT_SYMBOL vmlinux 0xe6cca3b2 pnp_register_driver EXPORT_SYMBOL vmlinux 0xe6d2458e do_trace_netlink_extack -EXPORT_SYMBOL vmlinux 0xe6e25585 lock_two_nondirectories +EXPORT_SYMBOL vmlinux 0xe6ede2de fput EXPORT_SYMBOL vmlinux 0xe6fa06a2 rename_lock -EXPORT_SYMBOL vmlinux 0xe70c4963 vfs_path_lookup -EXPORT_SYMBOL vmlinux 0xe71f9142 vme_bus_error_handler -EXPORT_SYMBOL vmlinux 0xe724d7e9 pm860x_bulk_read +EXPORT_SYMBOL vmlinux 0xe714f8ab __check_sticky +EXPORT_SYMBOL vmlinux 0xe715c1e9 page_cache_prev_miss +EXPORT_SYMBOL vmlinux 0xe71b6bb4 dentry_open +EXPORT_SYMBOL vmlinux 0xe71bb036 inet6_register_protosw EXPORT_SYMBOL vmlinux 0xe7257ab8 xa_store_range -EXPORT_SYMBOL vmlinux 0xe728c63f __mod_node_page_state EXPORT_SYMBOL vmlinux 0xe7324b9a utf8nfdicf -EXPORT_SYMBOL vmlinux 0xe7370e5c kmem_cache_destroy -EXPORT_SYMBOL vmlinux 0xe7517235 mini_qdisc_pair_init -EXPORT_SYMBOL vmlinux 0xe756da90 vmf_insert_mixed -EXPORT_SYMBOL vmlinux 0xe763a532 sock_common_setsockopt -EXPORT_SYMBOL vmlinux 0xe763e722 configfs_undepend_item +EXPORT_SYMBOL vmlinux 0xe7550089 md_integrity_register EXPORT_SYMBOL vmlinux 0xe7698027 ioremap_cache -EXPORT_SYMBOL vmlinux 0xe7788c9a submit_bh +EXPORT_SYMBOL vmlinux 0xe78c235b inet_addr_type EXPORT_SYMBOL vmlinux 0xe7a02573 ida_alloc_range -EXPORT_SYMBOL vmlinux 0xe7a57ecd tcp_simple_retransmit -EXPORT_SYMBOL vmlinux 0xe7ac8b45 inet6_getname +EXPORT_SYMBOL vmlinux 0xe7a0ec82 tcp_enter_cwr EXPORT_SYMBOL vmlinux 0xe7b0353b __cpu_active_mask -EXPORT_SYMBOL vmlinux 0xe7bd5a6d setattr_copy +EXPORT_SYMBOL vmlinux 0xe7bc8522 get_user_pages_remote EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next -EXPORT_SYMBOL vmlinux 0xe80e677a generic_setlease +EXPORT_SYMBOL vmlinux 0xe7d8f134 of_node_name_prefix +EXPORT_SYMBOL vmlinux 0xe7e3fc3e clean_bdev_aliases +EXPORT_SYMBOL vmlinux 0xe7f2c34f fwnode_get_phy_id +EXPORT_SYMBOL vmlinux 0xe7f88130 dev_uc_init +EXPORT_SYMBOL vmlinux 0xe7fab532 skb_checksum_help +EXPORT_SYMBOL vmlinux 0xe80a8b95 mini_qdisc_pair_init +EXPORT_SYMBOL vmlinux 0xe81a3932 dst_release +EXPORT_SYMBOL vmlinux 0xe81e1caf pci_unregister_driver +EXPORT_SYMBOL vmlinux 0xe8265119 get_mem_cgroup_from_mm EXPORT_SYMBOL vmlinux 0xe8330a5a call_usermodehelper_exec +EXPORT_SYMBOL vmlinux 0xe83da704 generic_file_splice_read +EXPORT_SYMBOL vmlinux 0xe85b4be2 tty_devnum EXPORT_SYMBOL vmlinux 0xe85f2123 acpi_tb_unload_table -EXPORT_SYMBOL vmlinux 0xe87de522 __skb_wait_for_more_packets -EXPORT_SYMBOL vmlinux 0xe8a27beb blk_queue_max_hw_sectors +EXPORT_SYMBOL vmlinux 0xe86cb3c7 __seq_open_private +EXPORT_SYMBOL vmlinux 0xe87771cd generic_write_checks +EXPORT_SYMBOL vmlinux 0xe8a93724 flush_dcache_page EXPORT_SYMBOL vmlinux 0xe8b5c3c3 __tracepoint_module_get -EXPORT_SYMBOL vmlinux 0xe8c840bd dcache_dir_close -EXPORT_SYMBOL vmlinux 0xe8d35a66 unregister_filesystem -EXPORT_SYMBOL vmlinux 0xe8db1e59 skb_copy_expand +EXPORT_SYMBOL vmlinux 0xe8b6abbb fscrypt_encrypt_block_inplace +EXPORT_SYMBOL vmlinux 0xe8c8820d rproc_elf_load_segments +EXPORT_SYMBOL vmlinux 0xe8f4bfc1 simple_recursive_removal +EXPORT_SYMBOL vmlinux 0xe8f9a966 ipv6_dev_mc_dec EXPORT_SYMBOL vmlinux 0xe8fbf4fa __alloc_bucket_spinlocks EXPORT_SYMBOL vmlinux 0xe90253f0 xudma_rflow_get EXPORT_SYMBOL vmlinux 0xe909997a bitmap_print_list_to_buf -EXPORT_SYMBOL vmlinux 0xe911a30a tty_port_close_end -EXPORT_SYMBOL vmlinux 0xe9146afd finish_open EXPORT_SYMBOL vmlinux 0xe914e41e strcpy -EXPORT_SYMBOL vmlinux 0xe945433f pci_wake_from_d3 -EXPORT_SYMBOL vmlinux 0xe946b9f4 begin_new_exec -EXPORT_SYMBOL vmlinux 0xe94ed0ad skb_flow_get_icmp_tci -EXPORT_SYMBOL vmlinux 0xe951551f xfrm_init_replay +EXPORT_SYMBOL vmlinux 0xe91ad6c4 pci_read_vpd +EXPORT_SYMBOL vmlinux 0xe91eaf29 vfs_setpos +EXPORT_SYMBOL vmlinux 0xe9254d72 fiemap_prep +EXPORT_SYMBOL vmlinux 0xe92d0e12 security_socket_socketpair EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino -EXPORT_SYMBOL vmlinux 0xe96e6738 flow_indr_dev_unregister -EXPORT_SYMBOL vmlinux 0xe97f2559 acpi_notifier_call_chain -EXPORT_SYMBOL vmlinux 0xe98f1567 blkdev_get_by_path -EXPORT_SYMBOL vmlinux 0xe9a92516 param_ops_uint +EXPORT_SYMBOL vmlinux 0xe95f34c5 md_bitmap_startwrite +EXPORT_SYMBOL vmlinux 0xe97cf83a mmc_cqe_start_req +EXPORT_SYMBOL vmlinux 0xe996074b setattr_copy +EXPORT_SYMBOL vmlinux 0xe99cd05e mipi_dsi_turn_on_peripheral EXPORT_SYMBOL vmlinux 0xe9af7397 __xa_set_mark -EXPORT_SYMBOL vmlinux 0xe9b52206 phy_advertise_supported -EXPORT_SYMBOL vmlinux 0xe9b55378 pci_setup_cardbus -EXPORT_SYMBOL vmlinux 0xe9d8e04c dquot_alloc_inode +EXPORT_SYMBOL vmlinux 0xe9bcfaf2 kthread_create_worker_on_cpu EXPORT_SYMBOL vmlinux 0xe9e8faeb efi_tpm_final_log_size -EXPORT_SYMBOL vmlinux 0xe9f70263 tty_hung_up_p +EXPORT_SYMBOL vmlinux 0xe9f4adc2 submit_bio +EXPORT_SYMBOL vmlinux 0xe9f4d5ba tcp_conn_request +EXPORT_SYMBOL vmlinux 0xe9f61ca4 sg_miter_skip EXPORT_SYMBOL vmlinux 0xe9f7149c zlib_deflate_workspacesize +EXPORT_SYMBOL vmlinux 0xe9fccec5 __module_put_and_exit EXPORT_SYMBOL vmlinux 0xe9ffc063 down_trylock -EXPORT_SYMBOL vmlinux 0xea12a62e vfs_dedupe_file_range +EXPORT_SYMBOL vmlinux 0xea10b483 phy_get_c45_ids +EXPORT_SYMBOL vmlinux 0xea115f6d dcb_setapp EXPORT_SYMBOL vmlinux 0xea1c3e3a arm_smccc_1_2_hvc -EXPORT_SYMBOL vmlinux 0xea1d2490 blk_mq_init_queue +EXPORT_SYMBOL vmlinux 0xea2717de insert_inode_locked EXPORT_SYMBOL vmlinux 0xea3c8e4e scsilun_to_int -EXPORT_SYMBOL vmlinux 0xea696844 xfrm_state_insert -EXPORT_SYMBOL vmlinux 0xea697d6b inet6_register_protosw +EXPORT_SYMBOL vmlinux 0xea417e7c fqdir_exit +EXPORT_SYMBOL vmlinux 0xea484343 uart_unregister_driver +EXPORT_SYMBOL vmlinux 0xea498f5a skb_coalesce_rx_frag +EXPORT_SYMBOL vmlinux 0xea570f38 genl_notify EXPORT_SYMBOL vmlinux 0xea6f9a36 zlib_deflate_dfltcc_enabled EXPORT_SYMBOL vmlinux 0xea778fab sg_pcopy_to_buffer -EXPORT_SYMBOL vmlinux 0xea80e7a0 sock_dequeue_err_skb -EXPORT_SYMBOL vmlinux 0xeaa062d3 of_get_cpu_state_node -EXPORT_SYMBOL vmlinux 0xeaae4708 kern_unmount_array +EXPORT_SYMBOL vmlinux 0xea7d377b netdev_lower_get_next_private_rcu +EXPORT_SYMBOL vmlinux 0xea900b2d dma_mmap_attrs EXPORT_SYMBOL vmlinux 0xeab6f4c4 acpi_check_resource_conflict +EXPORT_SYMBOL vmlinux 0xeabf1735 uart_update_timeout +EXPORT_SYMBOL vmlinux 0xead817f0 inet_sock_destruct EXPORT_SYMBOL vmlinux 0xead8c400 bman_get_bpid -EXPORT_SYMBOL vmlinux 0xeadbeacd writeback_inodes_sb EXPORT_SYMBOL vmlinux 0xeae3dfd6 __const_udelay -EXPORT_SYMBOL vmlinux 0xeaf75eef security_unix_stream_connect +EXPORT_SYMBOL vmlinux 0xeae4d36f vfs_iocb_iter_read +EXPORT_SYMBOL vmlinux 0xeae7a849 security_inet_conn_request +EXPORT_SYMBOL vmlinux 0xeae7bf8b simple_statfs +EXPORT_SYMBOL vmlinux 0xeae848f2 d_alloc_anon +EXPORT_SYMBOL vmlinux 0xeaf27a76 rproc_of_parse_firmware +EXPORT_SYMBOL vmlinux 0xeaf52a7c debugfs_create_automount EXPORT_SYMBOL vmlinux 0xeafc141f __posix_acl_chmod +EXPORT_SYMBOL vmlinux 0xeb058f4c vme_register_error_handler EXPORT_SYMBOL vmlinux 0xeb233a45 __kmalloc EXPORT_SYMBOL vmlinux 0xeb2391c9 gen_new_estimator -EXPORT_SYMBOL vmlinux 0xeb265d5a rproc_add_carveout EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end +EXPORT_SYMBOL vmlinux 0xeb441656 genphy_read_abilities EXPORT_SYMBOL vmlinux 0xeb44339a free_pages_exact -EXPORT_SYMBOL vmlinux 0xeb75f514 registered_fb +EXPORT_SYMBOL vmlinux 0xeb5b82c9 eth_header_parse_protocol +EXPORT_SYMBOL vmlinux 0xeb6707d4 __sk_mem_reduce_allocated +EXPORT_SYMBOL vmlinux 0xeb7779fe key_instantiate_and_link EXPORT_SYMBOL vmlinux 0xeb7f6046 acpi_get_devices -EXPORT_SYMBOL vmlinux 0xeb8b7f11 of_find_property +EXPORT_SYMBOL vmlinux 0xeb997c38 get_acl EXPORT_SYMBOL vmlinux 0xeb9e913d sgl_alloc_order EXPORT_SYMBOL vmlinux 0xeb9eef52 match_uint -EXPORT_SYMBOL vmlinux 0xebc7c2a8 pci_pme_capable -EXPORT_SYMBOL vmlinux 0xebe45322 xfrm_state_free -EXPORT_SYMBOL vmlinux 0xebf9e300 sock_wfree -EXPORT_SYMBOL vmlinux 0xec045faf xfrm_policy_alloc -EXPORT_SYMBOL vmlinux 0xec28d39d genphy_suspend +EXPORT_SYMBOL vmlinux 0xebb18b3c pnp_device_attach +EXPORT_SYMBOL vmlinux 0xebdb9d44 vme_slave_request +EXPORT_SYMBOL vmlinux 0xebdc150c __fs_parse +EXPORT_SYMBOL vmlinux 0xebdf2e75 read_cache_page +EXPORT_SYMBOL vmlinux 0xec1139ed readahead_expand +EXPORT_SYMBOL vmlinux 0xec1c42ee ipv6_find_hdr +EXPORT_SYMBOL vmlinux 0xec1df1ed seq_release_private +EXPORT_SYMBOL vmlinux 0xec25464c netlink_capable EXPORT_SYMBOL vmlinux 0xec2b8a42 acpi_walk_namespace EXPORT_SYMBOL vmlinux 0xec2e1c8f proc_doulongvec_minmax EXPORT_SYMBOL vmlinux 0xec33c668 __SCK__tp_func_spi_transfer_start +EXPORT_SYMBOL vmlinux 0xec3bf7be __serio_register_port EXPORT_SYMBOL vmlinux 0xec41716a qman_alloc_fqid_range EXPORT_SYMBOL vmlinux 0xec4d9e3a clk_get_sys -EXPORT_SYMBOL vmlinux 0xec6ff591 configfs_unregister_default_group -EXPORT_SYMBOL vmlinux 0xec82f7a5 param_get_int -EXPORT_SYMBOL vmlinux 0xec8d1605 key_alloc -EXPORT_SYMBOL vmlinux 0xeca3e4a5 fifo_create_dflt -EXPORT_SYMBOL vmlinux 0xecab2c8d __tty_alloc_driver -EXPORT_SYMBOL vmlinux 0xecd5ac86 tcp_enter_cwr -EXPORT_SYMBOL vmlinux 0xecd90150 make_kuid -EXPORT_SYMBOL vmlinux 0xecda211f of_graph_parse_endpoint +EXPORT_SYMBOL vmlinux 0xec83eb7f cdrom_get_last_written +EXPORT_SYMBOL vmlinux 0xec959f00 kmem_cache_shrink +EXPORT_SYMBOL vmlinux 0xec9f2777 pm860x_bulk_write +EXPORT_SYMBOL vmlinux 0xecbd0c5f truncate_pagecache +EXPORT_SYMBOL vmlinux 0xecd7b70c __dev_get_by_name EXPORT_SYMBOL vmlinux 0xece784c2 rb_first -EXPORT_SYMBOL vmlinux 0xece981bc param_set_uint -EXPORT_SYMBOL vmlinux 0xecf9b61e dev_getbyhwaddr_rcu +EXPORT_SYMBOL vmlinux 0xecfbbe80 pci_msix_vec_count EXPORT_SYMBOL vmlinux 0xecfd68ef acpi_get_node -EXPORT_SYMBOL vmlinux 0xecff3853 tcf_block_get +EXPORT_SYMBOL vmlinux 0xecfda67f napi_consume_skb EXPORT_SYMBOL vmlinux 0xed00c4fb acpi_os_printf -EXPORT_SYMBOL vmlinux 0xed11ad2d insert_inode_locked -EXPORT_SYMBOL vmlinux 0xed15337b unpin_user_page -EXPORT_SYMBOL vmlinux 0xed17d64b buffer_migrate_page EXPORT_SYMBOL vmlinux 0xed238617 __put_cred -EXPORT_SYMBOL vmlinux 0xed290a15 skb_append -EXPORT_SYMBOL vmlinux 0xed3789d5 xfrm_state_delete_tunnel -EXPORT_SYMBOL vmlinux 0xed3c0c30 bd_abort_claiming +EXPORT_SYMBOL vmlinux 0xed4768a7 bio_put +EXPORT_SYMBOL vmlinux 0xed4a87c7 textsearch_register +EXPORT_SYMBOL vmlinux 0xed4b2280 ip_options_rcv_srr +EXPORT_SYMBOL vmlinux 0xed4ff949 tegra_dfll_resume +EXPORT_SYMBOL vmlinux 0xed50901e pci_request_region EXPORT_SYMBOL vmlinux 0xed5376c5 __printk_wait_on_cpu_lock +EXPORT_SYMBOL vmlinux 0xed5470ba phy_start_aneg EXPORT_SYMBOL vmlinux 0xed55f929 acpi_os_unmap_generic_address -EXPORT_SYMBOL vmlinux 0xed5815d0 pcim_iomap_regions_request_all EXPORT_SYMBOL vmlinux 0xed656e30 udp_encap_disable -EXPORT_SYMBOL vmlinux 0xed6e0b97 backlight_device_unregister -EXPORT_SYMBOL vmlinux 0xed6f529c scsi_change_queue_depth -EXPORT_SYMBOL vmlinux 0xed72d1a1 init_special_inode +EXPORT_SYMBOL vmlinux 0xed747138 flow_rule_match_icmp +EXPORT_SYMBOL vmlinux 0xed78c47d ethtool_rx_flow_rule_destroy +EXPORT_SYMBOL vmlinux 0xed86fe5e security_sock_graft EXPORT_SYMBOL vmlinux 0xed8a2d95 memset64 -EXPORT_SYMBOL vmlinux 0xeda4e962 vme_lm_request -EXPORT_SYMBOL vmlinux 0xedb122a2 pci_find_next_bus -EXPORT_SYMBOL vmlinux 0xedb48ceb rproc_elf_load_segments +EXPORT_SYMBOL vmlinux 0xed8c3311 __dquot_alloc_space +EXPORT_SYMBOL vmlinux 0xedb2f1d2 __vfs_getxattr EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp EXPORT_SYMBOL vmlinux 0xedc03953 iounmap -EXPORT_SYMBOL vmlinux 0xedd1bbce scsi_ioctl -EXPORT_SYMBOL vmlinux 0xedd3f6c2 flow_rule_match_icmp -EXPORT_SYMBOL vmlinux 0xede7e151 iproc_msi_init -EXPORT_SYMBOL vmlinux 0xee18ab49 __skb_flow_get_ports -EXPORT_SYMBOL vmlinux 0xee2b938a xfrm_input +EXPORT_SYMBOL vmlinux 0xedc2cc67 mem_cgroup_from_task +EXPORT_SYMBOL vmlinux 0xedca30ba ip6_xmit +EXPORT_SYMBOL vmlinux 0xedd55120 ppp_dev_name +EXPORT_SYMBOL vmlinux 0xedd75f3c devfreq_add_governor +EXPORT_SYMBOL vmlinux 0xedfea190 vme_irq_free +EXPORT_SYMBOL vmlinux 0xee290a7d vga_put EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable -EXPORT_SYMBOL vmlinux 0xee30f2a0 fb_prepare_logo -EXPORT_SYMBOL vmlinux 0xee37ca90 set_page_dirty_lock +EXPORT_SYMBOL vmlinux 0xee2e3b9b tty_unlock +EXPORT_SYMBOL vmlinux 0xee3fa7f4 mdiobus_read_nested +EXPORT_SYMBOL vmlinux 0xee4b6f0e mipi_dsi_driver_register_full +EXPORT_SYMBOL vmlinux 0xee523895 netpoll_parse_options EXPORT_SYMBOL vmlinux 0xee58e970 fb_add_videomode -EXPORT_SYMBOL vmlinux 0xee672b18 input_reset_device -EXPORT_SYMBOL vmlinux 0xee68e949 sk_stream_wait_memory -EXPORT_SYMBOL vmlinux 0xee6d390d bio_add_pc_page -EXPORT_SYMBOL vmlinux 0xee6e2634 show_init_ipc_ns -EXPORT_SYMBOL vmlinux 0xee72c64c of_phy_find_device -EXPORT_SYMBOL vmlinux 0xee792bef kernel_getpeername +EXPORT_SYMBOL vmlinux 0xee6a84a9 alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0xee70d3bc dev_set_mac_address_user EXPORT_SYMBOL vmlinux 0xee7d7deb gen_pool_dma_zalloc EXPORT_SYMBOL vmlinux 0xee7eb9e1 pnp_platform_devices -EXPORT_SYMBOL vmlinux 0xee865557 vme_register_driver EXPORT_SYMBOL vmlinux 0xee8c02e9 vprintk_emit EXPORT_SYMBOL vmlinux 0xee8d74d6 jiffies64_to_nsecs -EXPORT_SYMBOL vmlinux 0xee913d44 phy_request_interrupt EXPORT_SYMBOL vmlinux 0xee91879b rb_first_postorder -EXPORT_SYMBOL vmlinux 0xee9a8fd4 vga_get EXPORT_SYMBOL vmlinux 0xeea9dbaf bitmap_bitremap -EXPORT_SYMBOL vmlinux 0xeeaa719d phy_start_aneg -EXPORT_SYMBOL vmlinux 0xeeb0c467 serio_unregister_driver -EXPORT_SYMBOL vmlinux 0xeeb8246d of_io_request_and_map -EXPORT_SYMBOL vmlinux 0xeeba062c xfrm_policy_flush -EXPORT_SYMBOL vmlinux 0xeecd6763 dev_activate -EXPORT_SYMBOL vmlinux 0xeedb8054 blk_mq_run_hw_queue -EXPORT_SYMBOL vmlinux 0xeede9d44 devm_ioremap_wc -EXPORT_SYMBOL vmlinux 0xeee29672 ppp_unit_number +EXPORT_SYMBOL vmlinux 0xeeb00b92 __pskb_copy_fclone +EXPORT_SYMBOL vmlinux 0xeeb14ee0 unregister_nls +EXPORT_SYMBOL vmlinux 0xeed54d55 unlock_new_inode +EXPORT_SYMBOL vmlinux 0xeed62a9a vga_set_legacy_decoding +EXPORT_SYMBOL vmlinux 0xeedb653c acpi_dev_hid_uid_match EXPORT_SYMBOL vmlinux 0xeee75d91 ucc_fast_init -EXPORT_SYMBOL vmlinux 0xef167ded elv_rb_add -EXPORT_SYMBOL vmlinux 0xef3ce07c inet_dev_addr_type -EXPORT_SYMBOL vmlinux 0xef525485 rpmh_write -EXPORT_SYMBOL vmlinux 0xef57e347 vlan_dev_vlan_id -EXPORT_SYMBOL vmlinux 0xef742356 xfrm_trans_queue_net -EXPORT_SYMBOL vmlinux 0xef765b2b migrate_page -EXPORT_SYMBOL vmlinux 0xef79e626 __module_put_and_exit -EXPORT_SYMBOL vmlinux 0xef7acdac tcp_close -EXPORT_SYMBOL vmlinux 0xef7b9246 init_net +EXPORT_SYMBOL vmlinux 0xeefb8592 of_find_matching_node_and_match +EXPORT_SYMBOL vmlinux 0xeeff33e1 mr_mfc_find_any +EXPORT_SYMBOL vmlinux 0xef0f6160 of_device_is_compatible +EXPORT_SYMBOL vmlinux 0xef3c93ca km_query +EXPORT_SYMBOL vmlinux 0xef489dd6 dma_async_device_unregister +EXPORT_SYMBOL vmlinux 0xef5882d5 twl6040_get_sysclk +EXPORT_SYMBOL vmlinux 0xef6ef9ef d_find_alias +EXPORT_SYMBOL vmlinux 0xef7da805 vfs_get_tree EXPORT_SYMBOL vmlinux 0xef8ac53d qcom_scm_restore_sec_cfg -EXPORT_SYMBOL vmlinux 0xef8ca9b9 mark_buffer_dirty -EXPORT_SYMBOL vmlinux 0xef8f5987 simple_get_link EXPORT_SYMBOL vmlinux 0xefaf2e4f tcf_queue_work -EXPORT_SYMBOL vmlinux 0xefb06909 genphy_restart_aneg -EXPORT_SYMBOL vmlinux 0xefb62491 of_iomap -EXPORT_SYMBOL vmlinux 0xefc49196 elv_rb_find -EXPORT_SYMBOL vmlinux 0xefc97d99 kthread_create_on_node -EXPORT_SYMBOL vmlinux 0xefca71b8 netpoll_send_skb +EXPORT_SYMBOL vmlinux 0xefaf7bb2 pci_disable_device +EXPORT_SYMBOL vmlinux 0xefbeb6f9 scsi_command_normalize_sense +EXPORT_SYMBOL vmlinux 0xefc31f9f pci_find_next_bus EXPORT_SYMBOL vmlinux 0xefcea2e7 acpi_warning -EXPORT_SYMBOL vmlinux 0xefde227b vfs_readlink -EXPORT_SYMBOL vmlinux 0xefed1fc6 scsi_rescan_device +EXPORT_SYMBOL vmlinux 0xefde14db pci_fixup_cardbus +EXPORT_SYMBOL vmlinux 0xefe537db nd_region_acquire_lane EXPORT_SYMBOL vmlinux 0xefee932c acpi_get_data_full EXPORT_SYMBOL vmlinux 0xefeefc09 __SCK__tp_func_dma_fence_emit +EXPORT_SYMBOL vmlinux 0xefef5692 ipv6_mc_check_mld EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list +EXPORT_SYMBOL vmlinux 0xf00144c1 acpi_match_device_ids +EXPORT_SYMBOL vmlinux 0xf001cd70 pneigh_enqueue +EXPORT_SYMBOL vmlinux 0xf003a032 crypto_sha512_finup EXPORT_SYMBOL vmlinux 0xf008a885 seg6_hmac_init -EXPORT_SYMBOL vmlinux 0xf0190765 nd_region_to_nstype +EXPORT_SYMBOL vmlinux 0xf0134721 sk_error_report +EXPORT_SYMBOL vmlinux 0xf017bdac vm_map_pages_zero EXPORT_SYMBOL vmlinux 0xf02aa937 wait_for_completion_interruptible_timeout -EXPORT_SYMBOL vmlinux 0xf04b4460 dev_vprintk_emit -EXPORT_SYMBOL vmlinux 0xf0538937 netpoll_poll_dev -EXPORT_SYMBOL vmlinux 0xf0678b26 mmc_gpiod_request_cd_irq -EXPORT_SYMBOL vmlinux 0xf06ee682 unlock_two_nondirectories -EXPORT_SYMBOL vmlinux 0xf0711003 blk_queue_virt_boundary -EXPORT_SYMBOL vmlinux 0xf08a15b8 thaw_super +EXPORT_SYMBOL vmlinux 0xf045d652 io_uring_get_socket +EXPORT_SYMBOL vmlinux 0xf0498941 netlink_set_err +EXPORT_SYMBOL vmlinux 0xf072e78f key_link +EXPORT_SYMBOL vmlinux 0xf0776c47 blk_dump_rq_flags +EXPORT_SYMBOL vmlinux 0xf0860178 remap_vmalloc_range EXPORT_SYMBOL vmlinux 0xf09b5d9a get_zeroed_page +EXPORT_SYMBOL vmlinux 0xf0a4a54d validate_slab_cache EXPORT_SYMBOL vmlinux 0xf0a71b1b revert_creds +EXPORT_SYMBOL vmlinux 0xf0aa9127 pm860x_reg_write +EXPORT_SYMBOL vmlinux 0xf0aebef3 jbd2_journal_wipe EXPORT_SYMBOL vmlinux 0xf0b2419f cmd_db_read_aux_data -EXPORT_SYMBOL vmlinux 0xf0c46439 blk_mq_delay_run_hw_queue -EXPORT_SYMBOL vmlinux 0xf0f03ddc rproc_get_by_child -EXPORT_SYMBOL vmlinux 0xf0f9213a blk_pre_runtime_suspend -EXPORT_SYMBOL vmlinux 0xf0fa33f9 of_mdiobus_phy_device_register -EXPORT_SYMBOL vmlinux 0xf100763d mipi_dsi_dcs_set_page_address +EXPORT_SYMBOL vmlinux 0xf0bf727f component_match_add_typed +EXPORT_SYMBOL vmlinux 0xf0c37bbf pci_disable_link_state +EXPORT_SYMBOL vmlinux 0xf0d4b8f7 mdio_device_reset +EXPORT_SYMBOL vmlinux 0xf0e32ac1 of_n_addr_cells EXPORT_SYMBOL vmlinux 0xf102033e slhc_remember -EXPORT_SYMBOL vmlinux 0xf1035b5c pci_write_vpd -EXPORT_SYMBOL vmlinux 0xf1108834 flow_rule_match_ct -EXPORT_SYMBOL vmlinux 0xf11dc85f devm_memremap +EXPORT_SYMBOL vmlinux 0xf1022afd inet6_del_offload +EXPORT_SYMBOL vmlinux 0xf10f23da sg_miter_next EXPORT_SYMBOL vmlinux 0xf11dd46e _page_poisoning_enabled_early -EXPORT_SYMBOL vmlinux 0xf12424f9 max8998_write_reg -EXPORT_SYMBOL vmlinux 0xf125dd99 pcim_iomap_regions -EXPORT_SYMBOL vmlinux 0xf132cc2c timestamp_truncate -EXPORT_SYMBOL vmlinux 0xf144bbd8 __netif_schedule -EXPORT_SYMBOL vmlinux 0xf14fea10 iw_handler_set_thrspy -EXPORT_SYMBOL vmlinux 0xf15e1793 tso_count_descs -EXPORT_SYMBOL vmlinux 0xf1677fe5 of_pci_range_to_resource -EXPORT_SYMBOL vmlinux 0xf179af4e __bread_gfp +EXPORT_SYMBOL vmlinux 0xf11e68a5 netif_set_real_num_queues +EXPORT_SYMBOL vmlinux 0xf125d4ef iov_iter_revert +EXPORT_SYMBOL vmlinux 0xf12ac092 dquot_resume +EXPORT_SYMBOL vmlinux 0xf13fe159 netdev_has_upper_dev +EXPORT_SYMBOL vmlinux 0xf159b9ff __nd_driver_register +EXPORT_SYMBOL vmlinux 0xf15edeea genphy_soft_reset EXPORT_SYMBOL vmlinux 0xf18300ad logic_inb -EXPORT_SYMBOL vmlinux 0xf18f6e32 jbd2_transaction_committed EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps EXPORT_SYMBOL vmlinux 0xf1969a8e __usecs_to_jiffies -EXPORT_SYMBOL vmlinux 0xf1b0e3ec inet_confirm_addr -EXPORT_SYMBOL vmlinux 0xf1d512b8 netdev_crit +EXPORT_SYMBOL vmlinux 0xf1a0631e tegra_ivc_reset +EXPORT_SYMBOL vmlinux 0xf1b73596 netif_napi_add +EXPORT_SYMBOL vmlinux 0xf1c940a5 blk_pre_runtime_suspend EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy -EXPORT_SYMBOL vmlinux 0xf1dcae7a xsk_tx_peek_release_desc_batch EXPORT_SYMBOL vmlinux 0xf1e046cc panic +EXPORT_SYMBOL vmlinux 0xf1e0ff51 hash_and_copy_to_iter EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun -EXPORT_SYMBOL vmlinux 0xf1f013be udp_seq_next -EXPORT_SYMBOL vmlinux 0xf1f40746 clk_hw_register_clkdev -EXPORT_SYMBOL vmlinux 0xf21e4b41 devfreq_monitor_resume -EXPORT_SYMBOL vmlinux 0xf227c43e __phy_write_mmd +EXPORT_SYMBOL vmlinux 0xf1eadae0 reuseport_detach_sock +EXPORT_SYMBOL vmlinux 0xf2128de1 __scsi_execute +EXPORT_SYMBOL vmlinux 0xf22d9984 iommu_get_msi_cookie EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in -EXPORT_SYMBOL vmlinux 0xf25da1f1 __serio_register_driver -EXPORT_SYMBOL vmlinux 0xf2627abc ihold +EXPORT_SYMBOL vmlinux 0xf247aefb iommu_put_dma_cookie EXPORT_SYMBOL vmlinux 0xf2669a2c imx_scu_irq_register_notifier -EXPORT_SYMBOL vmlinux 0xf266e01a nvdimm_bus_unlock +EXPORT_SYMBOL vmlinux 0xf269a752 vlan_vid_add +EXPORT_SYMBOL vmlinux 0xf27ea50b phy_modify_paged EXPORT_SYMBOL vmlinux 0xf28404cf devlink_dpipe_header_ipv6 -EXPORT_SYMBOL vmlinux 0xf2848c74 rproc_put EXPORT_SYMBOL vmlinux 0xf28cf0ae __hw_addr_init -EXPORT_SYMBOL vmlinux 0xf29264df neigh_lookup_nodev EXPORT_SYMBOL vmlinux 0xf29403e5 acpi_install_table_handler -EXPORT_SYMBOL vmlinux 0xf29eda7d alloc_xenballooned_pages +EXPORT_SYMBOL vmlinux 0xf29e2e4c unload_nls EXPORT_SYMBOL vmlinux 0xf29f8515 __kfifo_dma_out_prepare_r +EXPORT_SYMBOL vmlinux 0xf2a5f58f dev_get_stats EXPORT_SYMBOL vmlinux 0xf2c43f3f zlib_deflate -EXPORT_SYMBOL vmlinux 0xf2c62201 make_kgid -EXPORT_SYMBOL vmlinux 0xf2d26f17 pcim_iounmap +EXPORT_SYMBOL vmlinux 0xf2c7ea4c truncate_inode_pages_range +EXPORT_SYMBOL vmlinux 0xf2d54f43 kobject_add EXPORT_SYMBOL vmlinux 0xf2e5bd87 security_free_mnt_opts EXPORT_SYMBOL vmlinux 0xf2f53617 memregion_free +EXPORT_SYMBOL vmlinux 0xf2fca9ae mpage_readahead +EXPORT_SYMBOL vmlinux 0xf30780ba vfs_copy_file_range +EXPORT_SYMBOL vmlinux 0xf30f89bb filemap_flush EXPORT_SYMBOL vmlinux 0xf3107926 sha224_update -EXPORT_SYMBOL vmlinux 0xf31a4deb blk_queue_physical_block_size -EXPORT_SYMBOL vmlinux 0xf32c3967 file_write_and_wait_range +EXPORT_SYMBOL vmlinux 0xf3155010 input_mt_report_finger_count +EXPORT_SYMBOL vmlinux 0xf3235aa5 pci_release_resource EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head -EXPORT_SYMBOL vmlinux 0xf34b4e8c uart_get_baud_rate -EXPORT_SYMBOL vmlinux 0xf34ed7d0 key_validate EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier -EXPORT_SYMBOL vmlinux 0xf356ada8 d_instantiate -EXPORT_SYMBOL vmlinux 0xf3627cfa skb_copy -EXPORT_SYMBOL vmlinux 0xf38e2b57 ipv6_dev_mc_inc +EXPORT_SYMBOL vmlinux 0xf356f4d5 scsi_unblock_requests +EXPORT_SYMBOL vmlinux 0xf376dd7a unregister_shrinker +EXPORT_SYMBOL vmlinux 0xf38503f2 block_write_full_page +EXPORT_SYMBOL vmlinux 0xf389995d dev_set_threaded EXPORT_SYMBOL vmlinux 0xf3916987 global_cursor_default +EXPORT_SYMBOL vmlinux 0xf3921a50 inet_rtx_syn_ack EXPORT_SYMBOL vmlinux 0xf3a57892 release_dentry_name_snapshot -EXPORT_SYMBOL vmlinux 0xf3af4919 of_find_i2c_adapter_by_node EXPORT_SYMBOL vmlinux 0xf3b30a06 utf8version_latest -EXPORT_SYMBOL vmlinux 0xf3b9d89b napi_consume_skb +EXPORT_SYMBOL vmlinux 0xf3b556c5 blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0xf3c23a41 fd_install +EXPORT_SYMBOL vmlinux 0xf3c43b12 zero_fill_bio +EXPORT_SYMBOL vmlinux 0xf3cc5b8a dev_addr_flush +EXPORT_SYMBOL vmlinux 0xf3d1bb56 pci_alloc_host_bridge +EXPORT_SYMBOL vmlinux 0xf3db8d62 _dev_emerg EXPORT_SYMBOL vmlinux 0xf3e0e1df allocate_resource EXPORT_SYMBOL vmlinux 0xf3e6402e __bitmap_equal -EXPORT_SYMBOL vmlinux 0xf3e7a8a6 iterate_dir -EXPORT_SYMBOL vmlinux 0xf3efd4c0 genphy_resume -EXPORT_SYMBOL vmlinux 0xf3f9e873 unregister_netdevice_notifier_dev_net +EXPORT_SYMBOL vmlinux 0xf3f55171 skb_checksum_setup EXPORT_SYMBOL vmlinux 0xf3fc8a70 ns_capable_noaudit -EXPORT_SYMBOL vmlinux 0xf40cc4f5 acpi_match_device_ids -EXPORT_SYMBOL vmlinux 0xf4227cfd __netlink_ns_capable +EXPORT_SYMBOL vmlinux 0xf4158910 fuse_mount_destroy EXPORT_SYMBOL vmlinux 0xf43d2caa acpi_remove_interface EXPORT_SYMBOL vmlinux 0xf44a904a net_ns_barrier -EXPORT_SYMBOL vmlinux 0xf4594a68 mii_check_media -EXPORT_SYMBOL vmlinux 0xf459b4f5 pps_unregister_source -EXPORT_SYMBOL vmlinux 0xf46bf3c4 generic_file_readonly_mmap +EXPORT_SYMBOL vmlinux 0xf45586a8 skb_copy_datagram_iter EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const -EXPORT_SYMBOL vmlinux 0xf47decab mdio_device_reset -EXPORT_SYMBOL vmlinux 0xf488b315 __bforget -EXPORT_SYMBOL vmlinux 0xf48b5128 __skb_checksum_complete -EXPORT_SYMBOL vmlinux 0xf48c744c sock_alloc_send_skb -EXPORT_SYMBOL vmlinux 0xf48c7bff __splice_from_pipe -EXPORT_SYMBOL vmlinux 0xf4a1fe96 no_seek_end_llseek_size +EXPORT_SYMBOL vmlinux 0xf47c5bf0 try_to_release_page +EXPORT_SYMBOL vmlinux 0xf4b6060d end_buffer_write_sync EXPORT_SYMBOL vmlinux 0xf4b754fd acpi_resources_are_enforced +EXPORT_SYMBOL vmlinux 0xf4bdbded flow_rule_match_tcp EXPORT_SYMBOL vmlinux 0xf4bdbeb9 __frontswap_invalidate_area -EXPORT_SYMBOL vmlinux 0xf4d35725 ip_ct_attach +EXPORT_SYMBOL vmlinux 0xf4c21130 blk_pre_runtime_resume +EXPORT_SYMBOL vmlinux 0xf4dae06a phy_device_register EXPORT_SYMBOL vmlinux 0xf4db35bc stpcpy -EXPORT_SYMBOL vmlinux 0xf4e1e741 pagevec_lookup_range -EXPORT_SYMBOL vmlinux 0xf4e5fbee phy_init_eee -EXPORT_SYMBOL vmlinux 0xf4ed9bd2 path_is_mountpoint -EXPORT_SYMBOL vmlinux 0xf4ef7d6d finish_swait +EXPORT_SYMBOL vmlinux 0xf4dc8450 devm_release_resource +EXPORT_SYMBOL vmlinux 0xf4df660d devm_nvmem_cell_put EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock -EXPORT_SYMBOL vmlinux 0xf4f53f45 skb_checksum -EXPORT_SYMBOL vmlinux 0xf4faa7c9 devm_pci_remap_cfgspace -EXPORT_SYMBOL vmlinux 0xf5258c3b md_reload_sb +EXPORT_SYMBOL vmlinux 0xf4f1e787 flow_rule_match_basic +EXPORT_SYMBOL vmlinux 0xf53bdd68 of_translate_dma_address EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy -EXPORT_SYMBOL vmlinux 0xf54ea0fb tcp_md5_hash_skb_data -EXPORT_SYMBOL vmlinux 0xf5785f3e inet_sk_rebuild_header -EXPORT_SYMBOL vmlinux 0xf57fb325 pci_enable_ptm -EXPORT_SYMBOL vmlinux 0xf58e73a6 mdio_device_create +EXPORT_SYMBOL vmlinux 0xf5402cbe pci_scan_bridge +EXPORT_SYMBOL vmlinux 0xf57ea8c6 mipi_dsi_dcs_set_tear_on +EXPORT_SYMBOL vmlinux 0xf581a569 mmc_command_done +EXPORT_SYMBOL vmlinux 0xf5877b15 vme_dma_list_add +EXPORT_SYMBOL vmlinux 0xf58ccb7e dma_pool_create EXPORT_SYMBOL vmlinux 0xf591753d nf_hooks_needed +EXPORT_SYMBOL vmlinux 0xf59dad4c neigh_update EXPORT_SYMBOL vmlinux 0xf5a20ed2 __genradix_prealloc EXPORT_SYMBOL vmlinux 0xf5add0ae ns_capable_setid -EXPORT_SYMBOL vmlinux 0xf5b742e4 __neigh_for_each_release -EXPORT_SYMBOL vmlinux 0xf5c749d7 devm_ioport_map +EXPORT_SYMBOL vmlinux 0xf5b7896d input_set_abs_params +EXPORT_SYMBOL vmlinux 0xf5bad986 thermal_cdev_update +EXPORT_SYMBOL vmlinux 0xf5c4e889 vlan_filter_drop_vids EXPORT_SYMBOL vmlinux 0xf5e7ea40 ktime_get_coarse_ts64 -EXPORT_SYMBOL vmlinux 0xf61be481 dquot_resume +EXPORT_SYMBOL vmlinux 0xf5f849d3 devm_backlight_device_unregister +EXPORT_SYMBOL vmlinux 0xf60a235e blk_post_runtime_resume +EXPORT_SYMBOL vmlinux 0xf60a7120 fscrypt_free_inode +EXPORT_SYMBOL vmlinux 0xf60bb7b9 inet_sendpage +EXPORT_SYMBOL vmlinux 0xf61098df dcb_ieee_setapp +EXPORT_SYMBOL vmlinux 0xf6275aad phy_do_ioctl_running EXPORT_SYMBOL vmlinux 0xf62c39fe ucc_slow_graceful_stop_tx EXPORT_SYMBOL vmlinux 0xf643d104 hsiphash_4u32 -EXPORT_SYMBOL vmlinux 0xf65828f5 vfs_get_tree -EXPORT_SYMBOL vmlinux 0xf65d537b elv_rb_latter_request +EXPORT_SYMBOL vmlinux 0xf64d0275 ps2_handle_response +EXPORT_SYMBOL vmlinux 0xf65e9f43 __mdiobus_register +EXPORT_SYMBOL vmlinux 0xf662f74f input_grab_device EXPORT_SYMBOL vmlinux 0xf665f74f sock_load_diag_module -EXPORT_SYMBOL vmlinux 0xf66e7c19 mipi_dsi_dcs_get_power_mode +EXPORT_SYMBOL vmlinux 0xf66f0f10 i2c_smbus_read_block_data +EXPORT_SYMBOL vmlinux 0xf67698bd __set_page_dirty_no_writeback EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier -EXPORT_SYMBOL vmlinux 0xf68e6389 pci_bus_assign_resources -EXPORT_SYMBOL vmlinux 0xf6ae729b i2c_put_adapter -EXPORT_SYMBOL vmlinux 0xf6af7d9f pci_find_capability -EXPORT_SYMBOL vmlinux 0xf6e7315a find_get_pages_contig +EXPORT_SYMBOL vmlinux 0xf692fd77 dev_add_pack +EXPORT_SYMBOL vmlinux 0xf6a8ff8e unregister_fib_notifier +EXPORT_SYMBOL vmlinux 0xf6b141f3 inet_getname +EXPORT_SYMBOL vmlinux 0xf6cca1ea of_find_device_by_node +EXPORT_SYMBOL vmlinux 0xf6cdf5db ip_sock_set_pktinfo +EXPORT_SYMBOL vmlinux 0xf6cf46bb tcp_release_cb EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit -EXPORT_SYMBOL vmlinux 0xf6ed064e tcp_init_sock -EXPORT_SYMBOL vmlinux 0xf6f724b2 sock_create_lite EXPORT_SYMBOL vmlinux 0xf6f9d58d init_on_free +EXPORT_SYMBOL vmlinux 0xf6fc502a pneigh_lookup EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor EXPORT_SYMBOL vmlinux 0xf738d1be register_blocking_lsm_notifier -EXPORT_SYMBOL vmlinux 0xf74fb149 clkdev_add -EXPORT_SYMBOL vmlinux 0xf750eabc udp_ioctl -EXPORT_SYMBOL vmlinux 0xf75f22f9 seq_file_path +EXPORT_SYMBOL vmlinux 0xf73b24f8 tcp_set_rcvlowat EXPORT_SYMBOL vmlinux 0xf76843b5 qcom_scm_pas_supported EXPORT_SYMBOL vmlinux 0xf77337a1 hdmi_audio_infoframe_check EXPORT_SYMBOL vmlinux 0xf77555cd __memcpy_toio -EXPORT_SYMBOL vmlinux 0xf785325f xfrm_trans_queue -EXPORT_SYMBOL vmlinux 0xf79b4560 kthread_stop -EXPORT_SYMBOL vmlinux 0xf7a9ddb4 tty_register_device -EXPORT_SYMBOL vmlinux 0xf7b33cc2 pci_bus_write_config_dword +EXPORT_SYMBOL vmlinux 0xf77bdfa0 dquot_commit +EXPORT_SYMBOL vmlinux 0xf78345b3 pnp_is_active +EXPORT_SYMBOL vmlinux 0xf78f87a9 fs_param_is_s32 +EXPORT_SYMBOL vmlinux 0xf7aaf1a2 vfs_tmpfile EXPORT_SYMBOL vmlinux 0xf7c48778 __tracepoint_kmalloc_node +EXPORT_SYMBOL vmlinux 0xf7d20694 phy_remove_link_mode EXPORT_SYMBOL vmlinux 0xf7d31de9 kstrtoul_from_user -EXPORT_SYMBOL vmlinux 0xf7d8ac74 blk_queue_flag_set EXPORT_SYMBOL vmlinux 0xf7da6e6f acpi_unload_table EXPORT_SYMBOL vmlinux 0xf7ea6311 qman_p_poll_dqrr -EXPORT_SYMBOL vmlinux 0xf7eb5009 devm_register_reboot_notifier -EXPORT_SYMBOL vmlinux 0xf7edcef6 sk_net_capable EXPORT_SYMBOL vmlinux 0xf7f05c17 fman_port_use_kg_hash -EXPORT_SYMBOL vmlinux 0xf805fafc fscrypt_decrypt_bio -EXPORT_SYMBOL vmlinux 0xf8082044 nf_register_net_hooks +EXPORT_SYMBOL vmlinux 0xf7f0dcc4 mdiobus_is_registered_device +EXPORT_SYMBOL vmlinux 0xf7f71ae7 ps2_drain EXPORT_SYMBOL vmlinux 0xf811e69d scsi_eh_flush_done_q EXPORT_SYMBOL vmlinux 0xf812cff6 memscan -EXPORT_SYMBOL vmlinux 0xf819a17b unix_detach_fds +EXPORT_SYMBOL vmlinux 0xf81dd32a qdisc_watchdog_cancel +EXPORT_SYMBOL vmlinux 0xf8286351 trace_event_printf EXPORT_SYMBOL vmlinux 0xf82abc1d isa_dma_bridge_buggy -EXPORT_SYMBOL vmlinux 0xf82b2a49 udp_push_pending_frames EXPORT_SYMBOL vmlinux 0xf82ec573 rb_prev -EXPORT_SYMBOL vmlinux 0xf838c1d1 pci_scan_single_device -EXPORT_SYMBOL vmlinux 0xf83a57f6 of_find_net_device_by_node -EXPORT_SYMBOL vmlinux 0xf83b0fa0 jbd2_journal_stop -EXPORT_SYMBOL vmlinux 0xf83d2c82 udp6_csum_init +EXPORT_SYMBOL vmlinux 0xf837f043 remove_watch_from_object EXPORT_SYMBOL vmlinux 0xf84bd6ee bpf_stats_enabled_key EXPORT_SYMBOL vmlinux 0xf866b00c tegra_io_pad_power_enable -EXPORT_SYMBOL vmlinux 0xf8786bca param_get_long +EXPORT_SYMBOL vmlinux 0xf870972a generic_pipe_buf_get +EXPORT_SYMBOL vmlinux 0xf872ee9e param_set_ulong EXPORT_SYMBOL vmlinux 0xf888ca21 sg_init_table +EXPORT_SYMBOL vmlinux 0xf8a21e20 of_get_cpu_node EXPORT_SYMBOL vmlinux 0xf8b05467 __nla_reserve -EXPORT_SYMBOL vmlinux 0xf8b65f88 free_netdev +EXPORT_SYMBOL vmlinux 0xf8b58798 vma_set_file EXPORT_SYMBOL vmlinux 0xf8bf8e22 ZSTD_DDictWorkspaceBound -EXPORT_SYMBOL vmlinux 0xf8c954ea debugfs_create_automount -EXPORT_SYMBOL vmlinux 0xf8cbbb30 bdevname EXPORT_SYMBOL vmlinux 0xf8d07858 bitmap_from_arr32 -EXPORT_SYMBOL vmlinux 0xf8e2cc59 tcp_time_wait +EXPORT_SYMBOL vmlinux 0xf8d2f1a0 blk_mq_rq_cpu +EXPORT_SYMBOL vmlinux 0xf8eb119f jbd2_journal_lock_updates +EXPORT_SYMBOL vmlinux 0xf8ef2cb6 shmem_aops EXPORT_SYMBOL vmlinux 0xf8f61ebc wake_up_var +EXPORT_SYMBOL vmlinux 0xf8f91ebd tcp_sock_set_keepintvl +EXPORT_SYMBOL vmlinux 0xf9007a1a rproc_coredump_using_sections +EXPORT_SYMBOL vmlinux 0xf9077827 kfree_skb_partial EXPORT_SYMBOL vmlinux 0xf91b89ab fman_sp_build_buffer_struct -EXPORT_SYMBOL vmlinux 0xf93018eb input_unregister_handle -EXPORT_SYMBOL vmlinux 0xf9393894 xfrm_input_resume +EXPORT_SYMBOL vmlinux 0xf928ab45 flow_rule_match_ipv4_addrs +EXPORT_SYMBOL vmlinux 0xf938ba86 blk_rq_init EXPORT_SYMBOL vmlinux 0xf93aae46 __arm_smccc_smc EXPORT_SYMBOL vmlinux 0xf93fd09c fb_find_mode_cvt -EXPORT_SYMBOL vmlinux 0xf9478f4a of_device_unregister -EXPORT_SYMBOL vmlinux 0xf94bd614 ip6_frag_next -EXPORT_SYMBOL vmlinux 0xf94eb76f ata_print_version +EXPORT_SYMBOL vmlinux 0xf945b3ba sock_init_data EXPORT_SYMBOL vmlinux 0xf95c619b acpi_processor_preregister_performance -EXPORT_SYMBOL vmlinux 0xf9639583 of_graph_get_endpoint_by_regs +EXPORT_SYMBOL vmlinux 0xf95fdafb dm_get_device EXPORT_SYMBOL vmlinux 0xf971cea8 utf8len EXPORT_SYMBOL vmlinux 0xf9722676 twl_i2c_write -EXPORT_SYMBOL vmlinux 0xf97492ba generic_file_splice_read -EXPORT_SYMBOL vmlinux 0xf99f3078 blk_mq_start_stopped_hw_queues +EXPORT_SYMBOL vmlinux 0xf97b9096 configfs_undepend_item EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep +EXPORT_SYMBOL vmlinux 0xf9b5f0bd mii_nway_restart EXPORT_SYMBOL vmlinux 0xf9c0b663 strlcat EXPORT_SYMBOL vmlinux 0xf9ca2eb4 kstrtoint_from_user -EXPORT_SYMBOL vmlinux 0xf9d1fa0f of_parse_phandle_with_args -EXPORT_SYMBOL vmlinux 0xf9d66baa poll_freewait -EXPORT_SYMBOL vmlinux 0xf9e3b45c hmm_range_fault +EXPORT_SYMBOL vmlinux 0xf9d6c872 xsk_tx_release +EXPORT_SYMBOL vmlinux 0xf9e95060 ilookup EXPORT_SYMBOL vmlinux 0xf9f3696e __cpuhp_setup_state_cpuslocked -EXPORT_SYMBOL vmlinux 0xf9fcabfc qman_get_qm_portal_config -EXPORT_SYMBOL vmlinux 0xf9ffa148 __blk_mq_alloc_disk +EXPORT_SYMBOL vmlinux 0xf9f4dd89 jbd2_journal_blocks_per_page +EXPORT_SYMBOL vmlinux 0xf9fe8d83 __blockdev_direct_IO +EXPORT_SYMBOL vmlinux 0xfa040fc2 tcp_syn_ack_timeout EXPORT_SYMBOL vmlinux 0xfa08c34a page_offline_end -EXPORT_SYMBOL vmlinux 0xfa0ed026 __skb_checksum +EXPORT_SYMBOL vmlinux 0xfa24497f tcf_get_next_chain +EXPORT_SYMBOL vmlinux 0xfa26bab2 pci_bus_write_config_dword EXPORT_SYMBOL vmlinux 0xfa297415 acpi_map_pxm_to_node EXPORT_SYMBOL vmlinux 0xfa2e5f32 i2c_smbus_pec -EXPORT_SYMBOL vmlinux 0xfa4e0857 flow_indr_block_cb_alloc +EXPORT_SYMBOL vmlinux 0xfa37efa2 skb_free_datagram +EXPORT_SYMBOL vmlinux 0xfa3bce92 udp_seq_stop EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier -EXPORT_SYMBOL vmlinux 0xfa5a72d1 rproc_alloc -EXPORT_SYMBOL vmlinux 0xfa6866e4 ip_tunnel_parse_protocol -EXPORT_SYMBOL vmlinux 0xfa77fb5f security_sctp_bind_connect -EXPORT_SYMBOL vmlinux 0xfa80693d msm_pinctrl_probe -EXPORT_SYMBOL vmlinux 0xfa829750 tty_unregister_device +EXPORT_SYMBOL vmlinux 0xfa5fc8d1 skb_flow_dissect_ct +EXPORT_SYMBOL vmlinux 0xfa64166a pcie_get_mps +EXPORT_SYMBOL vmlinux 0xfa69b8bf mmc_cqe_request_done +EXPORT_SYMBOL vmlinux 0xfa7b73da napi_gro_frags EXPORT_SYMBOL vmlinux 0xfa873ad0 prandom_seed -EXPORT_SYMBOL vmlinux 0xfa8b659f security_sb_remount -EXPORT_SYMBOL vmlinux 0xfa9e3d9b pci_iomap_range +EXPORT_SYMBOL vmlinux 0xfa8b4c7f mdiobus_get_phy +EXPORT_SYMBOL vmlinux 0xfaa31e12 get_tree_bdev EXPORT_SYMBOL vmlinux 0xfaaa12d0 _page_poisoning_enabled -EXPORT_SYMBOL vmlinux 0xfabbb00c devm_of_mdiobus_register -EXPORT_SYMBOL vmlinux 0xfac6ad92 __neigh_set_probe_once +EXPORT_SYMBOL vmlinux 0xfaafd03a devm_extcon_unregister_notifier +EXPORT_SYMBOL vmlinux 0xfab16765 __traceiter_mmap_lock_acquire_returned +EXPORT_SYMBOL vmlinux 0xfabe75f1 pcie_ptm_enabled +EXPORT_SYMBOL vmlinux 0xfac50b84 phy_start_cable_test_tdr EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max -EXPORT_SYMBOL vmlinux 0xfb02b09f bio_devname +EXPORT_SYMBOL vmlinux 0xfad6dc45 fscrypt_ioctl_set_policy +EXPORT_SYMBOL vmlinux 0xfadacb65 flow_rule_match_enc_ip +EXPORT_SYMBOL vmlinux 0xfadcb2c2 ps2_init +EXPORT_SYMBOL vmlinux 0xfadcbbe4 devm_ioremap +EXPORT_SYMBOL vmlinux 0xfb348fea fault_in_safe_writeable EXPORT_SYMBOL vmlinux 0xfb384d37 kasprintf -EXPORT_SYMBOL vmlinux 0xfb42a59c vfs_unlink -EXPORT_SYMBOL vmlinux 0xfb55c0d7 nf_register_queue_handler -EXPORT_SYMBOL vmlinux 0xfb577590 unregister_fib_notifier -EXPORT_SYMBOL vmlinux 0xfb5ece3a amba_request_regions -EXPORT_SYMBOL vmlinux 0xfb64ac17 dquot_get_state +EXPORT_SYMBOL vmlinux 0xfb40ebfb misc_deregister EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending -EXPORT_SYMBOL vmlinux 0xfb71a2a1 tty_write_room -EXPORT_SYMBOL vmlinux 0xfb84ad6b key_link -EXPORT_SYMBOL vmlinux 0xfb932fde mfd_cell_disable +EXPORT_SYMBOL vmlinux 0xfb819ad1 scsi_host_alloc +EXPORT_SYMBOL vmlinux 0xfb950101 simple_fill_super +EXPORT_SYMBOL vmlinux 0xfba5e358 skb_vlan_pop EXPORT_SYMBOL vmlinux 0xfba7ddd2 match_u64 EXPORT_SYMBOL vmlinux 0xfbaaf01e console_lock EXPORT_SYMBOL vmlinux 0xfbad3cf0 scsi_normalize_sense @@ -11697,197 +11705,227 @@ EXPORT_SYMBOL vmlinux 0xfbc4f89e io_schedule_timeout EXPORT_SYMBOL vmlinux 0xfbe4b175 qman_create_cgr EXPORT_SYMBOL vmlinux 0xfbe8ee28 acpi_get_table_by_index -EXPORT_SYMBOL vmlinux 0xfbec2308 genphy_aneg_done -EXPORT_SYMBOL vmlinux 0xfc12a363 unlock_page_memcg -EXPORT_SYMBOL vmlinux 0xfc23ca42 __dynamic_ibdev_dbg -EXPORT_SYMBOL vmlinux 0xfc276dbb _dev_info +EXPORT_SYMBOL vmlinux 0xfbf899d3 dmam_free_coherent +EXPORT_SYMBOL vmlinux 0xfc01bf9d netdev_warn +EXPORT_SYMBOL vmlinux 0xfc0399c7 brioctl_set +EXPORT_SYMBOL vmlinux 0xfc1653fd skb_pull EXPORT_SYMBOL vmlinux 0xfc336d2e __wake_up_bit EXPORT_SYMBOL vmlinux 0xfc399557 utf8_load -EXPORT_SYMBOL vmlinux 0xfc3b1397 netlbl_calipso_ops_register EXPORT_SYMBOL vmlinux 0xfc4152fc ec_read -EXPORT_SYMBOL vmlinux 0xfc4a71d8 set_page_dirty -EXPORT_SYMBOL vmlinux 0xfc4bcf2c tcp_v4_md5_lookup +EXPORT_SYMBOL vmlinux 0xfc45923b refresh_frequency_limits EXPORT_SYMBOL vmlinux 0xfc52abc7 qcom_scm_pas_shutdown -EXPORT_SYMBOL vmlinux 0xfc6134dc scsi_print_sense -EXPORT_SYMBOL vmlinux 0xfc62e608 mmc_wait_for_cmd -EXPORT_SYMBOL vmlinux 0xfc775358 nd_pfn_validate -EXPORT_SYMBOL vmlinux 0xfc847687 input_get_timestamp +EXPORT_SYMBOL vmlinux 0xfc6f25b3 filemap_fdatawait_range +EXPORT_SYMBOL vmlinux 0xfc79a8a5 add_watch_to_object +EXPORT_SYMBOL vmlinux 0xfc82407c dev_deactivate EXPORT_SYMBOL vmlinux 0xfc881b89 fman_port_get_hash_result_offset -EXPORT_SYMBOL vmlinux 0xfc8a78fa rproc_elf_find_loaded_rsc_table EXPORT_SYMBOL vmlinux 0xfc9ed8c3 qcom_scm_ice_available -EXPORT_SYMBOL vmlinux 0xfcc21698 dst_alloc -EXPORT_SYMBOL vmlinux 0xfcc75d78 __seq_open_private +EXPORT_SYMBOL vmlinux 0xfca17a9b _dev_crit +EXPORT_SYMBOL vmlinux 0xfca775aa nvdimm_namespace_locked +EXPORT_SYMBOL vmlinux 0xfcb73ac0 security_path_unlink +EXPORT_SYMBOL vmlinux 0xfcbf7bd3 serio_interrupt +EXPORT_SYMBOL vmlinux 0xfcc6bf08 tcf_register_action +EXPORT_SYMBOL vmlinux 0xfccc8afc jbd2_journal_load EXPORT_SYMBOL vmlinux 0xfcce2f7d ucc_fast_enable -EXPORT_SYMBOL vmlinux 0xfcce74b0 vlan_vids_add_by_dev -EXPORT_SYMBOL vmlinux 0xfcd02151 skb_copy_and_csum_dev EXPORT_SYMBOL vmlinux 0xfcd1819a hdmi_spd_infoframe_check -EXPORT_SYMBOL vmlinux 0xfcd63bff blk_queue_update_dma_alignment -EXPORT_SYMBOL vmlinux 0xfce985ba inet_frag_destroy +EXPORT_SYMBOL vmlinux 0xfcea7eaa __xfrm_dst_lookup EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq -EXPORT_SYMBOL vmlinux 0xfcffe371 dev_set_alias -EXPORT_SYMBOL vmlinux 0xfd0af0a0 linkwatch_fire_event -EXPORT_SYMBOL vmlinux 0xfd1507bb page_get_link -EXPORT_SYMBOL vmlinux 0xfd1dbf66 netpoll_send_udp -EXPORT_SYMBOL vmlinux 0xfd49054a page_pool_release_page -EXPORT_SYMBOL vmlinux 0xfd6b9a92 configfs_unregister_subsystem -EXPORT_SYMBOL vmlinux 0xfd710c1f pm_vt_switch_required -EXPORT_SYMBOL vmlinux 0xfd715707 netdev_lower_get_next_private_rcu -EXPORT_SYMBOL vmlinux 0xfd81c9e4 netlink_unicast -EXPORT_SYMBOL vmlinux 0xfd896dbc simple_rmdir -EXPORT_SYMBOL vmlinux 0xfd956271 netpoll_poll_enable -EXPORT_SYMBOL vmlinux 0xfd973b33 skb_dequeue_tail +EXPORT_SYMBOL vmlinux 0xfcf1c01e jbd2_journal_update_sb_errno +EXPORT_SYMBOL vmlinux 0xfcf8423d netdev_name_node_alt_destroy +EXPORT_SYMBOL vmlinux 0xfd0128c8 lookup_one +EXPORT_SYMBOL vmlinux 0xfd09de21 inet_csk_reset_keepalive_timer +EXPORT_SYMBOL vmlinux 0xfd0e57a7 tty_port_alloc_xmit_buf +EXPORT_SYMBOL vmlinux 0xfd2d536b clkdev_drop +EXPORT_SYMBOL vmlinux 0xfd69e6bd nd_dax_probe +EXPORT_SYMBOL vmlinux 0xfd7f5ce3 param_get_uint +EXPORT_SYMBOL vmlinux 0xfda0ea7d vmap +EXPORT_SYMBOL vmlinux 0xfda6d9c2 security_path_mknod EXPORT_SYMBOL vmlinux 0xfda9581f prandom_u32 -EXPORT_SYMBOL vmlinux 0xfdb409f4 mmc_get_card EXPORT_SYMBOL vmlinux 0xfdcb4ed3 acpi_os_get_line EXPORT_SYMBOL vmlinux 0xfdcc8a0e fb_find_best_display -EXPORT_SYMBOL vmlinux 0xfdd0bbdb single_open -EXPORT_SYMBOL vmlinux 0xfdf4a094 nlmsg_notify +EXPORT_SYMBOL vmlinux 0xfdd7aaa2 simple_transaction_get +EXPORT_SYMBOL vmlinux 0xfdd81c3b xfrm6_input_addr +EXPORT_SYMBOL vmlinux 0xfdebddde iov_iter_advance +EXPORT_SYMBOL vmlinux 0xfe027a52 mmc_add_host EXPORT_SYMBOL vmlinux 0xfe029963 unregister_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xfe145fd2 fs_param_is_fd EXPORT_SYMBOL vmlinux 0xfe1d2e94 key_create_or_update -EXPORT_SYMBOL vmlinux 0xfe326592 i2c_smbus_write_block_data -EXPORT_SYMBOL vmlinux 0xfe3ab12d seg6_push_hmac EXPORT_SYMBOL vmlinux 0xfe487975 init_wait_entry -EXPORT_SYMBOL vmlinux 0xfe500f95 blk_queue_flag_clear +EXPORT_SYMBOL vmlinux 0xfe4d3e67 skb_kill_datagram +EXPORT_SYMBOL vmlinux 0xfe58c49c param_set_ullong EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz -EXPORT_SYMBOL vmlinux 0xfe6246eb jbd2_journal_clear_features -EXPORT_SYMBOL vmlinux 0xfe6d2d3a jbd2_journal_set_triggers -EXPORT_SYMBOL vmlinux 0xfe7bb6e7 in6_dev_finish_destroy -EXPORT_SYMBOL vmlinux 0xfe81b3a7 vfs_iocb_iter_write -EXPORT_SYMBOL vmlinux 0xfe863637 tcf_em_register +EXPORT_SYMBOL vmlinux 0xfe83cf04 dev_get_by_name_rcu +EXPORT_SYMBOL vmlinux 0xfe89abb1 __sk_mem_reclaim +EXPORT_SYMBOL vmlinux 0xfe89dce6 dev_mc_del EXPORT_SYMBOL vmlinux 0xfe916dc6 hex_dump_to_buffer +EXPORT_SYMBOL vmlinux 0xfe955cc3 tcp_ioctl EXPORT_SYMBOL vmlinux 0xfe9ebbbb acpi_osi_is_win8 -EXPORT_SYMBOL vmlinux 0xfea2505b locks_lock_inode_wait -EXPORT_SYMBOL vmlinux 0xfea67378 user_revoke EXPORT_SYMBOL vmlinux 0xfeb5d0aa verify_spi_info -EXPORT_SYMBOL vmlinux 0xfec4c722 scsi_target_quiesce +EXPORT_SYMBOL vmlinux 0xfec1ecae udp_flush_pending_frames +EXPORT_SYMBOL vmlinux 0xfecd1852 devm_alloc_etherdev_mqs EXPORT_SYMBOL vmlinux 0xfedcdb60 seq_hlist_next_percpu -EXPORT_SYMBOL vmlinux 0xfee0f7d3 pci_find_bus EXPORT_SYMBOL vmlinux 0xfeebc7c4 __kfifo_from_user_r -EXPORT_SYMBOL vmlinux 0xfefc72f2 vc_resize +EXPORT_SYMBOL vmlinux 0xfef7bf26 pps_lookup_dev +EXPORT_SYMBOL vmlinux 0xfefa24a9 call_fib_notifiers EXPORT_SYMBOL vmlinux 0xfefcb98e vme_dma_vme_attribute -EXPORT_SYMBOL vmlinux 0xff0ea540 input_alloc_absinfo -EXPORT_SYMBOL vmlinux 0xff16bbd4 configfs_register_group +EXPORT_SYMBOL vmlinux 0xff1a2cca pcim_iomap EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start +EXPORT_SYMBOL vmlinux 0xff1ff727 vfs_fsync_range EXPORT_SYMBOL vmlinux 0xff282521 rfkill_register -EXPORT_SYMBOL vmlinux 0xff3eaeca phy_resume +EXPORT_SYMBOL vmlinux 0xff311c92 __tty_alloc_driver +EXPORT_SYMBOL vmlinux 0xff365bd5 pci_clear_mwi +EXPORT_SYMBOL vmlinux 0xff4009f5 key_invalidate +EXPORT_SYMBOL vmlinux 0xff44cd0a seq_read_iter +EXPORT_SYMBOL vmlinux 0xff4e26ae put_cmsg_scm_timestamping64 +EXPORT_SYMBOL vmlinux 0xff52e9a4 jbd2__journal_restart +EXPORT_SYMBOL vmlinux 0xff54d21f d_add_ci EXPORT_SYMBOL vmlinux 0xff6878cf fb_default_cmap EXPORT_SYMBOL vmlinux 0xff7e7f8d kryo_l2_set_indirect_reg -EXPORT_SYMBOL vmlinux 0xff84072e kernel_sendmsg +EXPORT_SYMBOL vmlinux 0xff80dbfa dev_pick_tx_zero EXPORT_SYMBOL vmlinux 0xff87cd18 lockref_get_not_dead -EXPORT_SYMBOL vmlinux 0xff9ee565 seq_put_decimal_ull -EXPORT_SYMBOL vmlinux 0xffaa61ff tegra_ivc_reset +EXPORT_SYMBOL vmlinux 0xffa3165a tty_register_ldisc +EXPORT_SYMBOL vmlinux 0xffa48117 phy_register_fixup EXPORT_SYMBOL vmlinux 0xffb7c514 ida_free -EXPORT_SYMBOL vmlinux 0xffbdc202 dcb_getapp EXPORT_SYMBOL vmlinux 0xffcc4ec7 tcp_bpf_bypass_getsockopt -EXPORT_SYMBOL vmlinux 0xffe1f7bc scsi_scan_target -EXPORT_SYMBOL vmlinux 0xffe31074 acpi_get_hp_hw_control_from_firmware -EXPORT_SYMBOL vmlinux 0xffe9d810 xfrm_state_unregister_afinfo +EXPORT_SYMBOL vmlinux 0xffcddc8a flow_rule_match_vlan +EXPORT_SYMBOL vmlinux 0xffd27950 splice_direct_to_actor +EXPORT_SYMBOL vmlinux 0xffe147f2 i2c_smbus_read_word_data +EXPORT_SYMBOL vmlinux 0xffecccb6 inode_set_bytes EXPORT_SYMBOL vmlinux 0xffeedf6a delayed_work_timer_fn -EXPORT_SYMBOL vmlinux 0xfffc4526 jbd2_fc_wait_bufs -EXPORT_SYMBOL_GPL crypto/af_alg 0x0207847d af_alg_register_type -EXPORT_SYMBOL_GPL crypto/af_alg 0x0c849322 af_alg_release -EXPORT_SYMBOL_GPL crypto/af_alg 0x1b78bc19 af_alg_get_rsgl -EXPORT_SYMBOL_GPL crypto/af_alg 0x3088e737 af_alg_alloc_areq -EXPORT_SYMBOL_GPL crypto/af_alg 0x420cb346 af_alg_release_parent -EXPORT_SYMBOL_GPL crypto/af_alg 0x4ead140c af_alg_free_resources -EXPORT_SYMBOL_GPL crypto/af_alg 0x5131c3d5 af_alg_wait_for_data -EXPORT_SYMBOL_GPL crypto/af_alg 0x5890c829 af_alg_poll -EXPORT_SYMBOL_GPL crypto/af_alg 0x689b9b2e af_alg_count_tsgl -EXPORT_SYMBOL_GPL crypto/af_alg 0x72b8c70f af_alg_pull_tsgl -EXPORT_SYMBOL_GPL crypto/af_alg 0x874fb0e9 af_alg_sendpage -EXPORT_SYMBOL_GPL crypto/af_alg 0x8ab8708f af_alg_unregister_type -EXPORT_SYMBOL_GPL crypto/af_alg 0xa2dfbbfc af_alg_sendmsg -EXPORT_SYMBOL_GPL crypto/af_alg 0xaad472a5 af_alg_free_sg -EXPORT_SYMBOL_GPL crypto/af_alg 0xcd4a8068 af_alg_make_sg -EXPORT_SYMBOL_GPL crypto/af_alg 0xdbe2ca3f af_alg_accept -EXPORT_SYMBOL_GPL crypto/af_alg 0xdc433926 af_alg_wmem_wakeup -EXPORT_SYMBOL_GPL crypto/af_alg 0xe4d2b6f8 af_alg_async_cb -EXPORT_SYMBOL_GPL crypto/asymmetric_keys/asym_tpm 0x3347a9a5 asym_tpm_subtype +EXPORT_SYMBOL_GPL crypto/af_alg 0x0736fedc af_alg_async_cb +EXPORT_SYMBOL_GPL crypto/af_alg 0x131eaaa1 af_alg_pull_tsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0x1949943a af_alg_register_type +EXPORT_SYMBOL_GPL crypto/af_alg 0x1ff960a4 af_alg_alloc_areq +EXPORT_SYMBOL_GPL crypto/af_alg 0x24e61bb2 af_alg_poll +EXPORT_SYMBOL_GPL crypto/af_alg 0x2d390ce1 af_alg_count_tsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0x35fb8573 af_alg_sendpage +EXPORT_SYMBOL_GPL crypto/af_alg 0x435f4598 af_alg_make_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x58ea2c59 af_alg_sendmsg +EXPORT_SYMBOL_GPL crypto/af_alg 0x6769fc69 af_alg_unregister_type +EXPORT_SYMBOL_GPL crypto/af_alg 0x6c9bb678 af_alg_wmem_wakeup +EXPORT_SYMBOL_GPL crypto/af_alg 0x7609ebe1 af_alg_release_parent +EXPORT_SYMBOL_GPL crypto/af_alg 0x7b1e3bfb af_alg_accept +EXPORT_SYMBOL_GPL crypto/af_alg 0x8abceaaa af_alg_wait_for_data +EXPORT_SYMBOL_GPL crypto/af_alg 0xa43c1c46 af_alg_get_rsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0xc2750bc4 af_alg_free_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0xe7f2c7fd af_alg_release +EXPORT_SYMBOL_GPL crypto/af_alg 0xef8a2507 af_alg_free_resources +EXPORT_SYMBOL_GPL crypto/asymmetric_keys/asym_tpm 0x436ef902 asym_tpm_subtype EXPORT_SYMBOL_GPL crypto/asymmetric_keys/asym_tpm 0x7430f97c tpm_key_create -EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0xdd3f7a66 async_memcpy -EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0xaa307411 async_gen_syndrome -EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0xbc46b9bd async_syndrome_val -EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x271a05fc async_raid6_datap_recov -EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x8a177831 async_raid6_2data_recov -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x3f3e125c async_tx_submit -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x6171a949 async_tx_quiesce -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x83d4bcec async_trigger_callback -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xe040fa88 __async_tx_find_channel -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x43c90e93 async_xor -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x51e597b2 async_xor_val -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xa3000df8 async_xor_val_offs -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xba02c3bd async_xor_offs +EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0xb5cf2a0a async_memcpy +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x28023f83 async_syndrome_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x3b00966f async_gen_syndrome +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x7542d5f8 async_raid6_datap_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0xf9f298ed async_raid6_2data_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x2914c209 async_trigger_callback +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x48e56e38 __async_tx_find_channel +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x8056428e async_tx_submit +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xcb590e33 async_tx_quiesce +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x048f1963 async_xor +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x27fce44b async_xor_val_offs +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x87ab8dd1 async_xor_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x8a27b723 async_xor_offs EXPORT_SYMBOL_GPL crypto/authenc 0x2479193e crypto_authenc_extractkeys -EXPORT_SYMBOL_GPL crypto/blowfish_common 0x3c9c6227 blowfish_setkey +EXPORT_SYMBOL_GPL crypto/blowfish_common 0x6a25d579 blowfish_setkey EXPORT_SYMBOL_GPL crypto/cast5_generic 0x188d9d26 __cast5_decrypt -EXPORT_SYMBOL_GPL crypto/cast5_generic 0x6117d79b cast5_setkey +EXPORT_SYMBOL_GPL crypto/cast5_generic 0x8faa8533 cast5_setkey EXPORT_SYMBOL_GPL crypto/cast5_generic 0xef81a4af __cast5_encrypt EXPORT_SYMBOL_GPL crypto/cast6_generic 0x3dbae082 __cast6_decrypt -EXPORT_SYMBOL_GPL crypto/cast6_generic 0xc5a3f2e4 cast6_setkey EXPORT_SYMBOL_GPL crypto/cast6_generic 0xcfce512f __cast6_encrypt EXPORT_SYMBOL_GPL crypto/cast6_generic 0xd76a5716 __cast6_setkey +EXPORT_SYMBOL_GPL crypto/cast6_generic 0xe5a591f2 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 0x0471af86 cryptd_alloc_skcipher -EXPORT_SYMBOL_GPL crypto/cryptd 0x049c9d00 cryptd_free_skcipher -EXPORT_SYMBOL_GPL crypto/cryptd 0x1da99c5e cryptd_free_aead -EXPORT_SYMBOL_GPL crypto/cryptd 0x2d04671b cryptd_ahash_child -EXPORT_SYMBOL_GPL crypto/cryptd 0x56160368 cryptd_aead_queued -EXPORT_SYMBOL_GPL crypto/cryptd 0x5f373983 cryptd_shash_desc -EXPORT_SYMBOL_GPL crypto/cryptd 0x79661fb1 cryptd_ahash_queued -EXPORT_SYMBOL_GPL crypto/cryptd 0x839f835b cryptd_alloc_aead -EXPORT_SYMBOL_GPL crypto/cryptd 0xa2278993 cryptd_alloc_ahash -EXPORT_SYMBOL_GPL crypto/cryptd 0xc64caa1a cryptd_free_ahash -EXPORT_SYMBOL_GPL crypto/cryptd 0xd966f22a cryptd_skcipher_queued -EXPORT_SYMBOL_GPL crypto/cryptd 0xe2675fe5 cryptd_aead_child -EXPORT_SYMBOL_GPL crypto/cryptd 0xefbd88c4 cryptd_skcipher_child -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x1c820797 crypto_engine_alloc_init_and_set -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x46d09c5c crypto_engine_exit -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x5d262c81 crypto_engine_alloc_init -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x5d83e003 crypto_transfer_akcipher_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x7c596f46 crypto_finalize_skcipher_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xbd9a41e4 crypto_finalize_aead_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xbe5d5119 crypto_transfer_skcipher_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xc44cf797 crypto_finalize_hash_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xcadf30d9 crypto_finalize_akcipher_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xd25a49b6 crypto_engine_stop -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xe1936bee crypto_transfer_aead_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xe2dcb419 crypto_transfer_hash_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xf034f681 crypto_engine_start -EXPORT_SYMBOL_GPL crypto/crypto_simd 0x2635dbce simd_unregister_skciphers +EXPORT_SYMBOL_GPL crypto/cryptd 0x09b4b4b1 cryptd_aead_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0x0cd3ae1a cryptd_free_skcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0x0f55e623 cryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0x27f8c7ee cryptd_alloc_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0x35453830 cryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/cryptd 0x48065cff cryptd_skcipher_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0x4d3175d8 cryptd_alloc_skcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0x502fa9ce cryptd_aead_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x5f4965fe cryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/cryptd 0xc6789a6e cryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0xcc45c3eb cryptd_skcipher_child +EXPORT_SYMBOL_GPL crypto/cryptd 0xce9e8a18 cryptd_ahash_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0xf0b5c0b6 cryptd_free_aead +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x0897be9d crypto_transfer_akcipher_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x1d94af03 crypto_transfer_skcipher_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x2fdfc901 crypto_engine_alloc_init +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x33b26775 crypto_finalize_akcipher_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x430e283a crypto_finalize_skcipher_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x581f4ac1 crypto_engine_start +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x656f4a39 crypto_transfer_aead_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x6aadc41b crypto_engine_alloc_init_and_set +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x961c8465 crypto_finalize_hash_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xa2bb0a64 crypto_finalize_aead_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xcc03ced0 crypto_transfer_hash_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xde297421 crypto_engine_exit +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xf27ede24 crypto_engine_stop EXPORT_SYMBOL_GPL crypto/crypto_simd 0x504cb053 simd_aead_create_compat -EXPORT_SYMBOL_GPL crypto/crypto_simd 0x52cb8c66 simd_register_aeads_compat +EXPORT_SYMBOL_GPL crypto/crypto_simd 0x58f9a7ef simd_unregister_skciphers EXPORT_SYMBOL_GPL crypto/crypto_simd 0x66983e96 simd_skcipher_create 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 0xa3c7fcf6 simd_unregister_aeads +EXPORT_SYMBOL_GPL crypto/crypto_simd 0xa7da875d simd_register_skciphers_compat +EXPORT_SYMBOL_GPL crypto/crypto_simd 0xa981b7e7 simd_register_aeads_compat +EXPORT_SYMBOL_GPL crypto/crypto_simd 0xb64150d9 simd_unregister_aeads EXPORT_SYMBOL_GPL crypto/crypto_simd 0xbfd26f15 simd_aead_free -EXPORT_SYMBOL_GPL crypto/crypto_simd 0xd3a5ff2e simd_register_skciphers_compat EXPORT_SYMBOL_GPL crypto/crypto_simd 0xefe73979 simd_skcipher_free EXPORT_SYMBOL_GPL crypto/ecdh_generic 0x33b866ce crypto_ecdh_decode_key EXPORT_SYMBOL_GPL crypto/ecdh_generic 0x7475be8e crypto_ecdh_key_len EXPORT_SYMBOL_GPL crypto/ecdh_generic 0xb230d2ec crypto_ecdh_encode_key -EXPORT_SYMBOL_GPL crypto/serpent_generic 0x20bbfd7f serpent_setkey +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x480d6ca8 serpent_setkey EXPORT_SYMBOL_GPL crypto/serpent_generic 0x4eb4c55e __serpent_encrypt EXPORT_SYMBOL_GPL crypto/serpent_generic 0xbcc074f3 __serpent_decrypt EXPORT_SYMBOL_GPL crypto/serpent_generic 0xd4c9681a __serpent_setkey EXPORT_SYMBOL_GPL crypto/sm3_generic 0x0bddca87 sm3_zero_message_hash -EXPORT_SYMBOL_GPL crypto/twofish_common 0x97760ca8 twofish_setkey +EXPORT_SYMBOL_GPL crypto/twofish_common 0x6987c196 twofish_setkey EXPORT_SYMBOL_GPL crypto/twofish_common 0xe22b7787 __twofish_setkey -EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x40a127e8 acpi_nfit_desc_init +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x045f1c9d spk_ttyio_synth_probe +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x049598a7 spk_var_store +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x10f831c4 synth_add +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x1e39eb14 synth_putws +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x21cd756f spk_do_catch_up_unicode +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x3532f5ed spk_synth_is_alive_nop +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 0x466f5eb7 synth_putwc +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x47d5ce61 spk_synth_is_alive_restart +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x4c0f1995 spk_do_catch_up +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x5a592f4f spk_synth_flush +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x76d40046 synth_buffer_skip_nonlatin1 +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x76f3b863 synth_remove +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x84dad068 synth_buffer_getc +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x8c5756dd spk_var_show +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 0xaadb0612 synth_buffer_peek +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xb01b03e2 spk_synth_get_index +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xb4c8a615 synth_current +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 0xc6a06d16 spk_get_var +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 0xdaf7f7a2 spk_ttyio_release +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xde0d614f spk_ttyio_synth_immediate +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xe194d0ef synth_printf +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xe6c2cab2 spk_ttyio_ops 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 0x4dab8c2b acpi_nfit_init -EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0xa47dae93 acpi_nfit_ctl -EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0xf6cdaec8 __acpi_nvdimm_notify -EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0xffceba61 __acpi_nfit_notify +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x8864d7d6 acpi_nfit_ctl +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x9c447bc1 acpi_nfit_desc_init +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0xd1ebf67d __acpi_nfit_notify +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0xd6c050ea __acpi_nvdimm_notify +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0xf5213fcb 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 0x30235e67 __pata_platform_probe -EXPORT_SYMBOL_GPL drivers/ata/pata_sis 0xf9b97601 sis_info133_for_sata +EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0xf1f93d79 __pata_platform_probe +EXPORT_SYMBOL_GPL drivers/ata/pata_sis 0x747d14a2 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 @@ -11908,143 +11946,143 @@ EXPORT_SYMBOL_GPL drivers/auxdisplay/hd44780_common 0xa22afdaa hd44780_common_cursor EXPORT_SYMBOL_GPL drivers/auxdisplay/hd44780_common 0xc369090d hd44780_common_shift_cursor EXPORT_SYMBOL_GPL drivers/auxdisplay/hd44780_common 0xf360d788 hd44780_common_fontsize -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-ac97 0x08199b60 regmap_ac97_default_volatile -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-ac97 0xb2da121f __regmap_init_ac97 -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-ac97 0xd9092bbc __devm_regmap_init_ac97 -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-i3c 0x7c72d9b4 __devm_regmap_init_i3c -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0x3b605d84 __regmap_init_sccb -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0x7c9e5a0b __devm_regmap_init_sccb -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw 0x0dbacba2 __devm_regmap_init_sdw -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw 0x5bb32264 __regmap_init_sdw -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw-mbq 0x13faffba __devm_regmap_init_sdw_mbq -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw-mbq 0xb525eac7 __regmap_init_sdw_mbq -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0x206cedf1 __regmap_init_slimbus -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0xc7da875c __devm_regmap_init_slimbus -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spi-avmm 0xda0c68ef __regmap_init_spi_avmm -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spi-avmm 0xfbf5fac1 __devm_regmap_init_spi_avmm -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x48001033 __devm_regmap_init_spmi_ext -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x55e8c17a __devm_regmap_init_spmi_base -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xf5e4ea59 __regmap_init_spmi_ext -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xf832adc6 __regmap_init_spmi_base -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0x48158763 __regmap_init_w1 -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0xee354a67 __devm_regmap_init_w1 -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x1aba8a29 bcma_find_core_unit -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x25a51a9a bcma_chipco_gpio_outen -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x25ed5162 bcma_chipco_pll_read -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x372397e3 bcma_core_pll_ctl -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x3788d556 bcma_chipco_b_mii_write -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x3b94c727 bcma_host_pci_irq_ctl -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x49c1421b bcma_chipco_pll_write -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x4f8556c8 bcma_pmu_spuravoid_pllupdate -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x71097d31 bcma_core_set_clockmode -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x74f9165a bcma_host_pci_up -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7efc74a2 bcma_driver_unregister -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x981f73fc bcma_chipco_get_alp_clock -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x9825c53e bcma_core_pci_power_save -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa19df3a0 bcma_chipco_pll_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa92798c3 bcma_chipco_gpio_control -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xac79e9f3 bcma_pmu_get_bus_clock -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xb8c17008 bcma_core_disable -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xce394177 __bcma_driver_register -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xce41c6d2 bcma_chipco_regctl_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd59fdc22 bcma_host_pci_down -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd75268f3 bcma_chipco_chipctl_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe39cc954 bcma_core_enable -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xea390eb2 bcma_chipco_gpio_out -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xff1845ea bcma_core_is_enabled -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x2b18975c btbcm_setup_apple -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x2f6c7dda btbcm_setup_patchram -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x4b64f88c btbcm_finalize -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x5c4f2d23 btbcm_check_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x684b3326 btbcm_write_pcm_int_params -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x986f1fec btbcm_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xfecb092a btbcm_read_pcm_int_params -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xff52e28f btbcm_initialize -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x0e55ea92 btintel_enter_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x1b72f217 btintel_bootup -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x1f47eba8 btintel_download_firmware -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x27118942 btintel_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x4c533e6c btintel_set_diag -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x5063d9ba btintel_exit_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x73766f33 btintel_regmap_init -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x8ec2d634 btintel_secure_send_result -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x94f69545 btintel_send_intel_reset -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x98132a24 btintel_load_ddc_config -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x9b52e965 btintel_read_version -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x9b704072 btintel_configure_setup -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xcb4c1c5e btintel_check_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xd01ad543 btintel_version_info -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xd0980571 btintel_read_boot_params -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xeb7edc3c btintel_set_event_mask_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x02cf9394 btmrvl_enable_hs -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x191c9c62 btmrvl_interrupt -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x1d11b725 btmrvl_process_event -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x1db662a9 btmrvl_remove_card -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x31d519e6 btmrvl_add_card -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x37bbf527 btmrvl_register_hdev -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x3d612b59 btmrvl_pscan_window_reporting -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x43d23b4e btmrvl_enable_ps -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x44e36feb btmrvl_check_evtpkt -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x63175200 btmrvl_send_hscfg_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xd47bea3d btmrvl_send_module_cfg_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x39c932dc qca_set_bdaddr_rome -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x3ece3099 qca_uart_setup -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x459a1d54 qca_send_pre_shutdown_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xac454695 qca_read_soc_version -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xf0e2b9e1 qca_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x13e467e1 btrtl_shutdown_realtek -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x3765cea9 btrtl_download_firmware -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x7378d1c0 btrtl_get_uart_settings -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x91611e95 btrtl_initialize -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x98110c4d btrtl_set_quirks -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xa9b695f4 btrtl_setup_realtek +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-ac97 0x77975099 __regmap_init_ac97 +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-ac97 0x7e17dd38 regmap_ac97_default_volatile +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-ac97 0xf06f985a __devm_regmap_init_ac97 +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-i3c 0x29da5abb __devm_regmap_init_i3c +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0x3089ed9f __regmap_init_sccb +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0x331b80e6 __devm_regmap_init_sccb +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw 0x3e69e05a __regmap_init_sdw +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw 0x577bc4cc __devm_regmap_init_sdw +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw-mbq 0x71f59f39 __regmap_init_sdw_mbq +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw-mbq 0x9a006652 __devm_regmap_init_sdw_mbq +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0x3d62d607 __devm_regmap_init_slimbus +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0x421df847 __regmap_init_slimbus +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spi-avmm 0x5c45657e __regmap_init_spi_avmm +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spi-avmm 0xda31b5da __devm_regmap_init_spi_avmm +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x0e38a18f __devm_regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x159d837f __regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xbc1e5df3 __devm_regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xea9fed5a __regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0x0cb80cc1 __regmap_init_w1 +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0x9b3ff399 __devm_regmap_init_w1 +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x051acbd6 bcma_host_pci_up +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x095b087a __bcma_driver_register +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x1d29dfeb bcma_chipco_pll_read +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x3d664237 bcma_host_pci_down +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x52ce9c3a bcma_core_set_clockmode +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x5f2daf3e bcma_driver_unregister +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x680fefc0 bcma_chipco_pll_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x760873d4 bcma_chipco_get_alp_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x79b77cee bcma_chipco_gpio_outen +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x88135367 bcma_pmu_get_bus_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x947558c3 bcma_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x9fb9c6c7 bcma_core_pci_power_save +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xbef04395 bcma_chipco_b_mii_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc14d5163 bcma_core_disable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd51ec011 bcma_find_core_unit +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd7dec10a bcma_chipco_gpio_out +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xdc619b94 bcma_core_pll_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xde07e75b bcma_chipco_gpio_control +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xdf26f8e3 bcma_chipco_chipctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xdf4c397c bcma_core_is_enabled +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xeddda2b0 bcma_chipco_regctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xede9ad2f bcma_chipco_pll_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf0da46b6 bcma_core_enable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xfa9a3313 bcma_host_pci_irq_ctl +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x189030c7 btbcm_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x1aa44ad8 btbcm_setup_apple +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x70049942 btbcm_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x7d6df4c0 btbcm_setup_patchram +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x84336a67 btbcm_read_pcm_int_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xd54cca37 btbcm_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xd71500f2 btbcm_write_pcm_int_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xff8e7b3a btbcm_finalize +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x0c8a9dac btintel_secure_send_result +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x2802a06b btintel_load_ddc_config +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x37d12097 btintel_send_intel_reset +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x3a0f82ca btintel_enter_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x5941a42d btintel_regmap_init +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x637faea1 btintel_set_event_mask_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x643d979d btintel_exit_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x81b3b3a3 btintel_set_diag +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xa03640f2 btintel_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xabb07bc8 btintel_download_firmware +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xb275e4dd btintel_version_info +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xc1f9aa33 btintel_read_boot_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xc40b2f53 btintel_configure_setup +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xc9b6383a btintel_read_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xd5df098d btintel_bootup +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xdb0f26ec btintel_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x0379e779 btmrvl_enable_ps +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x2a06375a btmrvl_remove_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x330bd56c btmrvl_register_hdev +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x509711a8 btmrvl_process_event +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x63d6e601 btmrvl_check_evtpkt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x9315edcc btmrvl_add_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xb6033ad0 btmrvl_interrupt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xdca26828 btmrvl_enable_hs +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xdfb16ac2 btmrvl_send_hscfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xe5f17985 btmrvl_send_module_cfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xece622a3 btmrvl_pscan_window_reporting +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x07535445 qca_set_bdaddr_rome +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x0c9b816f qca_send_pre_shutdown_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x0d8f1630 qca_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x48fc6b66 qca_uart_setup +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xe3f01389 qca_read_soc_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x3c8518eb btrtl_set_quirks EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xaf78f260 btrtl_free -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x392bd4c2 h4_recv_buf -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x4c8b0ab7 hci_uart_unregister_device -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x93e693cf hci_uart_register_device -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0xec231873 hci_uart_tx_wakeup -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x00be9a5c mhi_queue_is_full -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x0d9a5740 mhi_queue_dma -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x10272a33 mhi_queue_skb -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x108a79d8 mhi_free_controller -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x22b4aea0 mhi_get_free_desc_count -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x290a40da mhi_alloc_controller -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x2d9438e5 __mhi_driver_register -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x416e139e mhi_notify -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x45a324e0 mhi_pm_resume_force -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x52b9b97d mhi_download_rddm_image -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x643e03cb mhi_queue_buf -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x67c59b3f mhi_prepare_for_power_up -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x6a58ae0d mhi_power_down -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x7018fb51 mhi_register_controller -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x734451a2 mhi_soc_reset -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x7d6ecfbb mhi_device_get_sync -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x879d088f mhi_unprepare_after_power_down -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x891f510f mhi_get_mhi_state -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x8c6d0a1d mhi_device_put -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x9795765c mhi_unprepare_from_transfer -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xa071224b mhi_prepare_for_transfer -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xabac6d5e mhi_force_rddm_mode -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xac2cf43c mhi_poll -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xb0b99358 mhi_get_exec_env -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xb516b5ea mhi_async_power_up -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xd01db179 mhi_driver_unregister -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xe2ecd2f2 mhi_pm_suspend -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xf0307d7c mhi_unregister_controller -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xf39aa15c mhi_pm_resume -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xfe65f166 mhi_device_get -EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x1c187c8d moxtet_device_written -EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x41e52721 moxtet_device_write -EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x823bceac moxtet_device_read -EXPORT_SYMBOL_GPL drivers/bus/moxtet 0xd473de87 __moxtet_register_driver -EXPORT_SYMBOL_GPL drivers/bus/sunxi-rsb 0x00c932be __devm_regmap_init_sunxi_rsb -EXPORT_SYMBOL_GPL drivers/bus/sunxi-rsb 0xde59caf6 sunxi_rsb_driver_register -EXPORT_SYMBOL_GPL drivers/clk/meson/clk-phase 0x4ae3d094 meson_clk_phase_ops -EXPORT_SYMBOL_GPL drivers/clk/meson/clk-phase 0xa54cdd0f meson_sclk_ws_inv_ops -EXPORT_SYMBOL_GPL drivers/clk/meson/clk-phase 0xf4a4a1ad meson_clk_triphase_ops -EXPORT_SYMBOL_GPL drivers/clk/meson/sclk-div 0x01e5c3a7 meson_sclk_div_ops +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xcfa42e39 btrtl_shutdown_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xd41e98c9 btrtl_get_uart_settings +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xe3aa791f btrtl_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xe763ab31 btrtl_setup_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xf99e72cd btrtl_download_firmware +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x125dac2b hci_uart_register_device +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x227140f6 h4_recv_buf +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x28f66fb8 hci_uart_unregister_device +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x81c46134 hci_uart_tx_wakeup +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x1009304d mhi_get_free_desc_count +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x1106c840 mhi_power_down +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x1a4eb832 mhi_device_get +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x1b01992a mhi_device_get_sync +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x25bbb934 mhi_alloc_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x2e2a5f55 mhi_download_rddm_image +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x3093d679 mhi_get_mhi_state +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x35bd4c53 mhi_poll +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x3bd5aaf0 mhi_device_put +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x52beaf0b mhi_notify +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x60d166c4 mhi_pm_resume_force +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x68378b18 mhi_unregister_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x698975a8 mhi_queue_buf +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x78583593 mhi_queue_dma +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x83c37494 mhi_free_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x9bb2571b __mhi_driver_register +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x9c8711cd mhi_pm_resume +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x9fbe8c34 mhi_prepare_for_transfer +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xa51b8cc3 mhi_register_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xa757ed0a mhi_pm_suspend +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xca48528f mhi_unprepare_after_power_down +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xce6c35dc mhi_get_exec_env +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xd0a3498c mhi_soc_reset +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xd16f807a mhi_queue_is_full +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xe17fe8b9 mhi_queue_skb +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xe50f1a35 mhi_force_rddm_mode +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xe55acc10 mhi_unprepare_from_transfer +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xefdfd010 mhi_async_power_up +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xf1bf611f mhi_driver_unregister +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xf9540b4d mhi_prepare_for_power_up +EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x9f0fae59 moxtet_device_written +EXPORT_SYMBOL_GPL drivers/bus/moxtet 0xe985c629 moxtet_device_write +EXPORT_SYMBOL_GPL drivers/bus/moxtet 0xef7aa346 moxtet_device_read +EXPORT_SYMBOL_GPL drivers/bus/moxtet 0xf16a9ab6 __moxtet_register_driver +EXPORT_SYMBOL_GPL drivers/bus/sunxi-rsb 0x7ce51ea2 sunxi_rsb_driver_register +EXPORT_SYMBOL_GPL drivers/bus/sunxi-rsb 0xd5322ab3 __devm_regmap_init_sunxi_rsb +EXPORT_SYMBOL_GPL drivers/clk/meson/clk-phase 0x638958d6 meson_clk_phase_ops +EXPORT_SYMBOL_GPL drivers/clk/meson/clk-phase 0x8460d2f0 meson_sclk_ws_inv_ops +EXPORT_SYMBOL_GPL drivers/clk/meson/clk-phase 0xd987622f meson_clk_triphase_ops +EXPORT_SYMBOL_GPL drivers/clk/meson/sclk-div 0xb2a419de meson_sclk_div_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x0000139e clk_alpha_pll_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x008d348f qcom_cc_probe_by_index +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x001f06ab qcom_cc_probe_by_index EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x08f0cc30 clk_is_enabled_regmap EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x0d10c3c4 clk_enable_regmap EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x0d678ab9 qcom_reset_ops @@ -12055,23 +12093,23 @@ EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x1a142e7c clk_alpha_pll_fixed_trion_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x20796d46 clk_trion_pll_configure EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x24a7abf5 clk_zonda_pll_configure +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x24af0f1d qcom_cc_register_sleep_clk EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x272f3204 clk_alpha_pll_fixed_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x2a9c7452 clk_rcg_lcc_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x2b0d957d clk_pixel_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x2cae96b3 clk_regmap_div_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x30bbf987 clk_rcg2_shared_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x310b6341 clk_regmap_mux_closest_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x342afdba qcom_cc_probe +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x37419b7f gdsc_gx_do_nothing_enable EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x3747af55 clk_rcg_bypass2_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x395868a1 qcom_find_freq_floor -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x3a4c60c6 gdsc_gx_do_nothing_enable EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x3dfc2dc5 clk_branch_simple_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x405d394a clk_alpha_pll_postdiv_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x418e9cfd clk_pll_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x4b0ed6da clk_ops_hfpll EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x5111f2ad clk_rcg2_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x51b2d5c5 qcom_cc_really_probe EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x520df3b7 clk_rcg_esc_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x54789a5f qcom_cc_register_board_clk EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x57172323 clk_byte_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x5a6ae327 clk_alpha_pll_configure EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x5e6abb22 mux_div_set_src_div @@ -12081,43 +12119,43 @@ EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x66922845 clk_branch_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x68199825 clk_disable_regmap EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x6af41b8b qcom_pll_set_fsm_mode -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x6b071892 qcom_cc_map EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7019378d clk_pll_configure_sr_hpm_lp -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x71372ab3 qcom_find_src_index EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x766e9f87 clk_regmap_div_ro_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x787e8234 qcom_find_freq EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x78b81ea0 clk_rcg2_floor_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x78ee4505 qcom_find_cfg_index +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x79c0bf19 qcom_cc_register_board_clk EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7a7d500f clk_fabia_pll_configure EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7e66fd9e clk_regmap_mux_div_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7e7206ae devm_clk_register_regmap +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7e9823fc devm_clk_register_regmap EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x8515663c clk_alpha_pll_regs +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x852aa6f2 qcom_find_src_index EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x8b55eac4 clk_dyn_rcg_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x91c41c9f clk_edp_pixel_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x9445466f qcom_cc_register_sleep_clk EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x97488818 clk_rcg_pixel_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x9c8854a1 clk_alpha_pll_lucid_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x9d909edd clk_gfx3d_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x9f1bf2e0 clk_alpha_pll_trion_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x9f241baa clk_rcg_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xaa403ee8 clk_alpha_pll_huayra_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xaa5a832c qcom_cc_really_probe EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xadc2751b clk_alpha_pll_postdiv_fabia_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xba961aa7 clk_dp_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xc150d434 clk_alpha_pll_postdiv_ro_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xc5bdfa11 clk_byte2_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xc6c03345 qcom_find_cfg_index EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xc82bd181 clk_agera_pll_configure EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xcf422970 clk_rcg_bypass_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xd39f9079 qcom_cc_probe EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xd438c1c3 clk_alpha_pll_postdiv_trion_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xd7ab6782 clk_alpha_pll_postdiv_lucid_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xdc014e02 qcom_cc_register_rcg_dfs EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xe6e14638 clk_alpha_pll_fabia_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xe816a036 clk_pll_configure_sr +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xf338aa95 qcom_cc_map EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x096aa17b sprd_div_helper_recalc_rate -EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x09ddaa82 sprd_clk_probe EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x0a3ec278 sprd_gate_ops EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x14212841 sprd_div_ops EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x1ca519ca sprd_pll_ops +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x46277c6d sprd_clk_probe EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x4cad4f51 sprd_div_helper_round_rate EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x4f93d75f sprd_mux_helper_get_parent EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x597905e4 sprd_sc_gate_ops @@ -12126,107 +12164,107 @@ EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x9925914a sprd_mux_helper_set_parent EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0xaf833f64 sprd_pll_sc_gate_ops EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0xe305cb73 sprd_comp_ops -EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0xeb4d3932 sprd_clk_regmap_init +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0xedbdde4f sprd_clk_regmap_init EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x0cd330f4 range_unknown +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x106a74e3 comedi_buf_write_free +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x1bd23a99 comedi_set_spriv_auto_free +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x1e3bd397 comedi_event EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x21102f87 range_0_32mA -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x282433fa comedi_load_firmware -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x28cf2eec comedi_dev_get_from_minor +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x2391e97d comedi_handle_events +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x2c6bff53 comedi_bytes_per_scan_cmd EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x2f0ad9d3 range_bipolar5 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x3345b1e2 comedi_nscans_left -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x420070be comedi_dio_insn_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x3fe8ab35 comedi_driver_register EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4236eaaf range_4_20mA -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4afc1a3a __comedi_request_region +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4a01e9a4 comedi_dev_get_from_minor +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4a86acdf comedi_auto_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4f65b6b3 comedi_check_chanlist EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4fe634f3 range_bipolar2_5 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x58835f22 comedi_auto_unconfig -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x60f42afb comedi_alloc_devpriv -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x6f2c7a1f comedi_alloc_spriv -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x7364f94b comedi_buf_write_samples -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x76795d30 comedi_is_subdevice_running -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x7b84d945 comedi_legacy_detach -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x7cd14eff comedi_bytes_per_scan -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x7ddcea1a comedi_set_spriv_auto_free +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x58615e74 comedi_buf_read_samples +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x59502caa comedi_alloc_subdev_readback +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x5bdcf15e comedi_nsamples_left +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x65534759 comedi_driver_unregister +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x66be15a7 comedi_buf_read_n_available +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x6c6146d2 comedi_bytes_per_scan +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x6eae0b4f comedi_alloc_spriv +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x6eae2ee6 comedi_timeout +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x73563001 comedi_is_subdevice_running EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x8113872c range_unipolar10 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x835900d9 comedi_handle_events -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x8522cde1 comedi_inc_scan_progress -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x868833f9 comedi_buf_read_alloc -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x90d7423a comedi_driver_register -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x92c46506 comedi_set_hw_dev -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x977e387a comedi_dio_update_state -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xa10a4cd8 comedi_event -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xa3d48aff comedi_alloc_subdevices -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xa9e09c5b comedi_auto_config -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xac93c27e comedi_buf_read_samples -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xaf5faf0e comedi_buf_read_n_available -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xb1def04e comedi_driver_unregister -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xb3e02603 comedi_buf_write_free -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xb4c2a2f6 comedi_bytes_per_scan_cmd +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x82f1d6fb comedi_nscans_left +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x93d895e0 comedi_buf_write_samples +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x988d56f0 comedi_auto_unconfig +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x9e61a84d comedi_request_region +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xa90b9ef6 comedi_buf_write_alloc +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xb252c09d __comedi_request_region +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xb600a4cf comedi_dio_insn_config EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xb679cebc range_0_20mA -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xb7b95370 comedi_request_region -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xb84e7bbc comedi_readback_insn_read +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xb9500b0b 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 0xc403341c comedi_set_hw_dev +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xc46c3527 comedi_dev_put +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xc9eed69a comedi_legacy_detach +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xd76fb28f comedi_buf_read_free +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xd8fde9fa comedi_alloc_subdevices EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xdb2044b2 range_unipolar5 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xdb8d79a9 comedi_check_chanlist -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xe73d39e3 comedi_dev_put -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xe9e18e07 comedi_timeout -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xeacd875f comedi_buf_write_alloc -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xeb0d427e comedi_alloc_subdev_readback -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xf0c16d57 comedi_buf_read_free -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xf1698696 comedi_nsamples_left -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x130f5480 comedi_pci_auto_config -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x3e7cba5d comedi_pci_driver_register -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x64e770b7 comedi_pci_detach -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x75dee092 comedi_pci_driver_unregister -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x79a39f1a comedi_pci_disable -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xa06079de comedi_to_pci_dev -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xbd33e170 comedi_pci_enable -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xfee50b4d comedi_pci_auto_unconfig -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x0051ed73 comedi_usb_driver_register -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x46bc4701 comedi_usb_auto_unconfig -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x495a3598 comedi_to_usb_interface -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x63c9ef5a comedi_to_usb_dev -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0xa5ed1fd4 comedi_usb_driver_unregister -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0xc7cbde64 comedi_usb_auto_config -EXPORT_SYMBOL_GPL drivers/comedi/drivers/addi_watchdog 0x1f4a62b5 addi_watchdog_init +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xdcf2bbc7 comedi_inc_scan_progress +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xdd1ae9b4 comedi_dio_update_state +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xe4142e69 comedi_readback_insn_read +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xe56c8d8c comedi_alloc_devpriv +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xedc8b643 comedi_buf_read_alloc +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x019515ac comedi_pci_disable +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x098d6c31 comedi_pci_driver_unregister +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x0b9ca929 comedi_pci_auto_unconfig +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x375234f7 comedi_pci_enable +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xa305675d comedi_pci_driver_register +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xcffb7f9e comedi_pci_detach +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xd1295c51 comedi_pci_auto_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xf540b39b comedi_to_pci_dev +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x27295fad comedi_usb_auto_unconfig +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x2a1ec1df comedi_usb_driver_register +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x485f8476 comedi_usb_auto_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x5fca980f comedi_usb_driver_unregister +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0xb545becb comedi_to_usb_dev +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0xe6e9d072 comedi_to_usb_interface +EXPORT_SYMBOL_GPL drivers/comedi/drivers/addi_watchdog 0x6a29315b addi_watchdog_init EXPORT_SYMBOL_GPL drivers/comedi/drivers/addi_watchdog 0x79f4a6cf addi_watchdog_reset -EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_dio200_common 0x05a6fe38 amplc_dio200_set_enhance -EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_dio200_common 0x0ba6f05e amplc_dio200_common_attach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_pc236_common 0x9bcba328 amplc_pc236_common_attach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x08d554e5 comedi_8254_set_mode -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x19db86df comedi_8254_status -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x1a5b5f1f comedi_8254_set_busy -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x52765450 comedi_8254_ns_to_timer -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x5fae6014 comedi_8254_read -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x61c0e23b comedi_8254_pacer_enable -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x6b56cb3f comedi_8254_init -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x73d7cfa6 comedi_8254_cascade_ns_to_timer -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x85f90d81 comedi_8254_load -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x971e200b comedi_8254_mm_init -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xa007de67 comedi_8254_write -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xeaf975af comedi_8254_subdevice_init -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xf2844734 comedi_8254_update_divisors -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0x5cab93fb subdev_8255_init -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0xb3beb543 subdev_8255_regbase -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0xc5a9f514 subdev_8255_mm_init -EXPORT_SYMBOL_GPL drivers/comedi/drivers/das08 0x668091e8 das08_common_attach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x1169fc3e mite_detach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x1c2ebea2 mite_sync_dma -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x21c31a7d mite_dma_arm -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x470077c7 mite_release_channel -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x68252189 mite_prep_dma -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x6b771811 mite_alloc_ring -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x82bdd1ee mite_done -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x858b0e91 mite_request_channel -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x961b9418 mite_buf_change -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xbd27ba23 mite_init_ring_descriptors -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xd1edf092 mite_bytes_in_transit -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xdd06d60a mite_request_channel_in_range -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xe619fdcd mite_free_ring -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xeca08ae8 mite_ack_linkc -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xef455d77 mite_dma_disarm -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xfe322320 mite_attach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_common 0x1039ff20 labpc_common_detach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_common 0x488263d7 labpc_common_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_dio200_common 0x9c697cca amplc_dio200_common_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_dio200_common 0xf888c0d8 amplc_dio200_set_enhance +EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_pc236_common 0xdf242a5f amplc_pc236_common_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x087e7d4a comedi_8254_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x1d86388f comedi_8254_subdevice_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x21e3aa2e comedi_8254_update_divisors +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x45728879 comedi_8254_set_mode +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x4e465140 comedi_8254_load +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x5fe76a16 comedi_8254_set_busy +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x7b2e8afa comedi_8254_read +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x9e3a59cf comedi_8254_write +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xb7463dfa comedi_8254_mm_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xd98cf225 comedi_8254_cascade_ns_to_timer +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xf6066da7 comedi_8254_pacer_enable +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xfa64d14a comedi_8254_status +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xfc4a653b comedi_8254_ns_to_timer +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0x04eaa22a subdev_8255_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0x952765dd subdev_8255_mm_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0xc1ad9410 subdev_8255_regbase +EXPORT_SYMBOL_GPL drivers/comedi/drivers/das08 0x45f3c920 das08_common_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x035ce587 mite_request_channel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x060af38d mite_prep_dma +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x0a27ecf9 mite_dma_disarm +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x175e67ed mite_done +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x28247e4e mite_free_ring +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x41e24358 mite_detach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x44d0ee18 mite_dma_arm +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x54d505b5 mite_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x7788f948 mite_init_ring_descriptors +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x7cd9d280 mite_ack_linkc +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x94491a2d mite_buf_change +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xb091768f mite_sync_dma +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xb9394323 mite_release_channel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xc27347bc mite_request_channel_in_range +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xf2be4b51 mite_alloc_ring +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xf3ee9045 mite_bytes_in_transit +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_common 0x6d27a6e9 labpc_common_detach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_common 0xa7f5c911 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 @@ -12237,879 +12275,875 @@ 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 0x0511638b ni_tio_unset_routing -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x05679ace ni_tio_set_routing -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x0745ab17 ni_gpct_device_destroy -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x1616e057 ni_tio_insn_config -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x1946adec ni_tio_init_counter -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x1fb17b4d ni_tio_get_soft_copy -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x327f79f9 ni_tio_set_gate_src_raw -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x365d196a ni_tio_write -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x47f71e23 ni_tio_insn_write -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x4c9095a6 ni_tio_set_bits -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x5dd892a3 ni_gpct_device_construct -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x86366653 ni_tio_insn_read -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x975dce32 ni_tio_get_routing -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x9dc7436b ni_tio_read -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xb6017029 ni_tio_arm -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xcdfa878e ni_tio_set_gate_src -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x084ed5de ni_tio_set_mite_channel -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x3a2a8133 ni_tio_cmdtest -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x3b36dd8f ni_tio_cmd -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xdad8d976 ni_tio_cancel -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xebc35775 ni_tio_acknowledge -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xef689225 ni_tio_handle_interrupt -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x2bd34885 comedi_get_n_channels -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x40609a4b comedi_dio_bitfield2 -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x47326a94 comedi_close -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x582f9827 comedi_find_subdevice_by_type -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x61948fa6 comedi_dio_get_config -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x6fd00f03 comedi_open -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xcf7628e7 comedi_dio_config +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x1643f471 ni_tio_get_soft_copy +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x29117fc0 ni_tio_write +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x2ac7a478 ni_gpct_device_construct +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x37c5d038 ni_tio_insn_config +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x38f9ee23 ni_tio_get_routing +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x5ff674dc ni_tio_set_gate_src_raw +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x63c516c8 ni_tio_read +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x667fdac1 ni_tio_insn_write +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x74b39129 ni_tio_set_bits +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x77e2cd4e ni_tio_insn_read +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xa2dc7a07 ni_tio_unset_routing +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xa795f765 ni_tio_arm +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xd2cc6833 ni_tio_set_routing +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xf03c4402 ni_gpct_device_destroy +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xf7ba70a2 ni_tio_init_counter +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xfea2db03 ni_tio_set_gate_src +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x0344cff7 ni_tio_acknowledge +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x0d1e32dc ni_tio_handle_interrupt +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x0e90bce8 ni_tio_cmd +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x3e5d11b8 ni_tio_cmdtest +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x49b19995 ni_tio_cancel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xa302932d ni_tio_set_mite_channel +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x6a52d571 comedi_dio_bitfield2 +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x78f420a5 comedi_open +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x7d7e051d comedi_close +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x85d49f9f comedi_dio_config +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xddc739f5 comedi_find_subdevice_by_type +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xefc63962 comedi_get_n_channels +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xf8cde9c7 comedi_dio_get_config EXPORT_SYMBOL_GPL drivers/counter/counter 0x01aab51b counter_count_direction_str -EXPORT_SYMBOL_GPL drivers/counter/counter 0x085dbb89 counter_device_enum_write -EXPORT_SYMBOL_GPL drivers/counter/counter 0x3db9d723 counter_register -EXPORT_SYMBOL_GPL drivers/counter/counter 0x3dc6826e counter_device_enum_read -EXPORT_SYMBOL_GPL drivers/counter/counter 0x437757ce counter_count_enum_available_read -EXPORT_SYMBOL_GPL drivers/counter/counter 0x4d8f63f7 counter_count_enum_read -EXPORT_SYMBOL_GPL drivers/counter/counter 0x7061d383 counter_device_enum_available_read -EXPORT_SYMBOL_GPL drivers/counter/counter 0x8054e547 counter_signal_enum_available_read -EXPORT_SYMBOL_GPL drivers/counter/counter 0x83d0378d counter_count_enum_write -EXPORT_SYMBOL_GPL drivers/counter/counter 0x8436a8d8 counter_signal_enum_write -EXPORT_SYMBOL_GPL drivers/counter/counter 0xaef36d58 counter_signal_enum_read -EXPORT_SYMBOL_GPL drivers/counter/counter 0xd74e3409 devm_counter_register +EXPORT_SYMBOL_GPL drivers/counter/counter 0x04085ddd counter_signal_enum_available_read +EXPORT_SYMBOL_GPL drivers/counter/counter 0x065c4b3b counter_signal_enum_write +EXPORT_SYMBOL_GPL drivers/counter/counter 0x2fea4cc9 devm_counter_unregister +EXPORT_SYMBOL_GPL drivers/counter/counter 0x44187353 devm_counter_register +EXPORT_SYMBOL_GPL drivers/counter/counter 0x469ca63e counter_device_enum_read +EXPORT_SYMBOL_GPL drivers/counter/counter 0x484079dd counter_device_enum_available_read +EXPORT_SYMBOL_GPL drivers/counter/counter 0x8982480b counter_device_enum_write +EXPORT_SYMBOL_GPL drivers/counter/counter 0x8a9c8510 counter_unregister +EXPORT_SYMBOL_GPL drivers/counter/counter 0x8dfb8074 counter_count_enum_read +EXPORT_SYMBOL_GPL drivers/counter/counter 0x9ecebb31 counter_count_enum_write +EXPORT_SYMBOL_GPL drivers/counter/counter 0xb77049e1 counter_count_enum_available_read +EXPORT_SYMBOL_GPL drivers/counter/counter 0xdeef88a7 counter_register +EXPORT_SYMBOL_GPL drivers/counter/counter 0xe597bcc4 counter_signal_enum_read EXPORT_SYMBOL_GPL drivers/counter/counter 0xee526d0f counter_count_mode_str -EXPORT_SYMBOL_GPL drivers/counter/counter 0xf0269c2e devm_counter_unregister -EXPORT_SYMBOL_GPL drivers/counter/counter 0xf2b63b10 counter_unregister 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 0x449040a8 ccp_enqueue_cmd -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x1390b689 hisi_qm_dev_err_init -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x1adc18f8 hisi_qm_dev_err_uninit -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x33e058a6 hisi_acc_sg_buf_map_to_hw_sgl -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x34cc2c3e hisi_qm_stop -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x366d8c59 hisi_qm_stop_qp -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x37c0e454 hisi_qm_sriov_enable -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x380cb4f2 hisi_acc_sg_buf_unmap -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x41246721 hisi_qm_suspend -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x4b3dd0f6 hisi_qm_get_vft -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x526735e3 hisi_qm_dev_slot_reset -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x5b3c0c31 hisi_qm_init -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x605e97c5 hisi_qm_regs_dump -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x620aa933 hisi_acc_create_sgl_pool -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x64161354 hisi_qp_send -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x675dff28 hisi_qm_pm_init -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x6803b9de hisi_qm_release_qp -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x688196f7 hisi_qm_resume -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x6b65f851 hisi_qm_debug_init -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x74e6623c hisi_qm_dev_shutdown -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x780ea44e hisi_qm_alg_unregister -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x7eb80c34 hisi_qm_uninit -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x83613f30 hisi_qm_reset_prepare -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x91111bef hisi_qm_start -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x96fd9815 hisi_qm_sriov_disable -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x9c2940cd hisi_qm_alloc_qps_node -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x9e913d14 hisi_qm_free_qps -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xa2c018a9 hisi_qm_pm_uninit -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xa7f8092d hisi_qm_dev_err_detected -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xaa722e48 hisi_qm_put_dfx_access -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xae3eb99e hisi_qm_create_qp -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xb5d87a19 hisi_qm_start_qp -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xbefe4e8d hisi_qm_get_free_qp_num -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xc0651e04 hisi_qm_alg_register -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xc26f903f hisi_qm_wait_task_finish -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xde39e684 hisi_qm_debug_regs_clear -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xe8393f3a hisi_qm_sriov_configure -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xf97f8b64 hisi_qm_reset_done -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xfb02cbe4 hisi_qm_get_dfx_access -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xff0c23e0 hisi_acc_free_sgl_pool +EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x4eef7688 ccp_enqueue_cmd +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x07f0af7c hisi_qm_put_dfx_access +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x1a9e1c48 hisi_acc_free_sgl_pool +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x22bf2690 hisi_qm_dev_err_detected +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x2e638dcc hisi_qm_debug_init +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x2effb45a hisi_qm_alg_register +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x47bc4d29 hisi_qm_create_qp +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x4e3410e8 hisi_qm_debug_regs_clear +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x51a3281e hisi_qm_reset_done +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x548bd4ca hisi_qm_pm_init +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x5fab5b2a hisi_qm_alloc_qps_node +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x652f69a9 hisi_qm_regs_dump +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x78d8b9a1 hisi_qm_dev_shutdown +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x7fe3fa06 hisi_qm_release_qp +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x8707c429 hisi_qm_get_dfx_access +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x8951ccb7 hisi_qm_reset_prepare +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x99612e84 hisi_acc_create_sgl_pool +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x9adac3f5 hisi_qm_pm_uninit +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x9afd111d hisi_qm_dev_slot_reset +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x9bf7f137 hisi_qm_start +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x9f3b7dd7 hisi_qm_get_vft +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xa011e643 hisi_qm_resume +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xaf975569 hisi_qm_uninit +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xb218a26b hisi_qm_stop_qp +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xb30334d1 hisi_acc_sg_buf_map_to_hw_sgl +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xb789770d hisi_qp_send +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xb803c4ab hisi_qm_dev_err_uninit +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xb8b80387 hisi_qm_stop +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xb8f7d876 hisi_qm_get_free_qp_num +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xc7b9bd46 hisi_qm_free_qps +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xd0fff7be hisi_acc_sg_buf_unmap +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xd331ead2 hisi_qm_suspend +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xd33b97ef hisi_qm_sriov_enable +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xd38b350a hisi_qm_alg_unregister +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xdbc9501d hisi_qm_wait_task_finish +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xddd8e52c hisi_qm_sriov_configure +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xdf7cb9fb hisi_qm_sriov_disable +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xf6c1f36a hisi_qm_start_qp +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xfea5b4e0 hisi_qm_dev_err_init +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xfec0ca4f hisi_qm_init 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 0x651a3270 otx_cpt_eng_grp_has_eng_type -EXPORT_SYMBOL_GPL drivers/dax/device_dax 0x64b96288 dev_dax_probe -EXPORT_SYMBOL_GPL drivers/dax/pmem/dax_pmem_core 0x25f03a5a __dax_pmem_probe -EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0x0d341e11 dw_edma_remove -EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0xa58249e3 dw_edma_probe -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x386abf77 dw_dma_filter -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x5751c8d9 dw_dma_acpi_controller_register -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x63da402a do_dw_dma_disable -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x69680708 idma32_dma_remove -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x76489fb4 do_dw_dma_enable -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x8712f854 dw_dma_acpi_controller_free -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xa5acc6ad dw_dma_remove -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xd811417f idma32_dma_probe -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xf3056891 dw_dma_probe -EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x1113c82a dpdmai_get_rx_queue -EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x1efee114 dpdmai_get_attributes -EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x4010f639 dpdmai_destroy -EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x869081e2 dpdmai_get_tx_queue -EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x8808f773 dpdmai_set_rx_queue -EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0xa7c6678b dpdmai_reset -EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0xbb7ce146 dpdmai_open -EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0xbda38621 dpdmai_enable -EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0xd442c02c dpdmai_close -EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0xfd3d2544 dpdmai_disable -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x0867c61a fsl_edma_prep_slave_sg -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x27b5f5be fsl_edma_disable_request -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x33cd1016 fsl_edma_tx_status -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x3df50290 fsl_edma_prep_dma_cyclic -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x3f646dd8 fsl_edma_terminate_all -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x4201d8bd fsl_edma_xfer_desc -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x57b80ef7 fsl_edma_setup_regs -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x5d3d71cb fsl_edma_slave_config -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x79232a5f fsl_edma_resume -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x8abe9c8b fsl_edma_cleanup_vchan -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x98ae14b7 fsl_edma_free_desc -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x9e1d02c7 fsl_edma_pause -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xcbe89f12 fsl_edma_alloc_chan_resources -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xdfc7bb91 fsl_edma_chan_mux -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xe4542936 fsl_edma_free_chan_resources -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xee010c0a fsl_edma_issue_pending -EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0x6996b2cc hidma_mgmt_init_sys -EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0xbb194253 hidma_mgmt_setup +EXPORT_SYMBOL_GPL drivers/crypto/marvell/octeontx/octeontx-cpt 0xfcb6a2a3 otx_cpt_eng_grp_has_eng_type +EXPORT_SYMBOL_GPL drivers/dax/device_dax 0xe117481f dev_dax_probe +EXPORT_SYMBOL_GPL drivers/dax/pmem/dax_pmem_core 0x902ea257 __dax_pmem_probe +EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0x7f98a442 dw_edma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0x833d9b1b dw_edma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x12c666b7 dw_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x2c36e656 do_dw_dma_enable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x3a62afb6 dw_dma_filter +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x6bf62999 idma32_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xa89e0771 idma32_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xac0cf7fd do_dw_dma_disable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xc520881e dw_dma_acpi_controller_register +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xeadf9e1c dw_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xfa21cd8b dw_dma_acpi_controller_free +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x0c12297f dpdmai_close +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x547a3666 dpdmai_disable +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x584d1161 dpdmai_get_rx_queue +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x799ebe6b dpdmai_get_attributes +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x7bfc728c dpdmai_open +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x9b2694fe dpdmai_destroy +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0xb7ebfce9 dpdmai_reset +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0xba084ae3 dpdmai_get_tx_queue +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0xddfdadf6 dpdmai_set_rx_queue +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0xe75ef728 dpdmai_enable +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x0024f2be fsl_edma_issue_pending +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x2d685b7c fsl_edma_disable_request +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x43c54ae5 fsl_edma_slave_config +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x5abe0270 fsl_edma_resume +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x5c777c24 fsl_edma_free_desc +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x5de4fd99 fsl_edma_free_chan_resources +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x5f0cd620 fsl_edma_prep_dma_cyclic +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x66f219ac fsl_edma_setup_regs +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x8c8865e7 fsl_edma_cleanup_vchan +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x9807eec0 fsl_edma_prep_slave_sg +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xa1291a6a fsl_edma_xfer_desc +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xb69e3538 fsl_edma_alloc_chan_resources +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xbc9bed9e fsl_edma_chan_mux +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xe9e457e8 fsl_edma_terminate_all +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xefbc7a3e fsl_edma_pause +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xfab1655c fsl_edma_tx_status +EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0x2eacd160 hidma_mgmt_setup +EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0x72ff8aaa hidma_mgmt_init_sys EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0xe86fb5c7 fw_card_release -EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0x4ec66ac4 ffa_device_register -EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0x6c33e0f7 ffa_dev_ops_get -EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0x951e6c01 ffa_driver_unregister -EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0xc83d14c8 ffa_driver_register -EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0xdbce084b ffa_bus_type -EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0xf4b68500 ffa_device_unregister -EXPORT_SYMBOL_GPL drivers/firmware/arm_scpi 0x19dbac81 get_scpi_ops +EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0x12d64a16 ffa_driver_register +EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0x26a9401f ffa_device_unregister +EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0x618cb7b1 ffa_driver_unregister +EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0x88394982 ffa_dev_ops_get +EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0x8eef6216 ffa_device_register +EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0xc5d0391d ffa_bus_type +EXPORT_SYMBOL_GPL drivers/firmware/arm_scpi 0x0353c7c8 get_scpi_ops 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 0xcadd204e stratix10_svc_request_channel_byname +EXPORT_SYMBOL_GPL drivers/firmware/stratix10-svc 0xa2b02417 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 0x37b421b7 alt_pr_register -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x06ff446d dfl_feature_ioctl_set_irq -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x07fb3141 dfl_fpga_dev_ops_unregister -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x0c903e43 dfl_fpga_dev_ops_register -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x0ea55bde dfl_fpga_enum_info_add_dfl -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x243eb77b dfl_fpga_dev_feature_init -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x508d55df dfl_fpga_dev_feature_uinit -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x52ba2aee dfl_fpga_set_irq_triggers -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x5bb00e18 dfl_fpga_port_ops_put -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x5d305205 dfl_fpga_cdev_release_port -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x79f6bf29 dfl_feature_ioctl_get_num_irqs -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x91a31903 dfl_fpga_enum_info_add_irq -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x9268fd5b dfl_fpga_enum_info_free -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xacd9f644 dfl_fpga_feature_devs_remove -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xae1ca595 dfl_fpga_enum_info_alloc -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xaf74600b dfl_fpga_port_ops_del -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xbc165753 dfl_fpga_cdev_assign_port -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xcd674645 dfl_fpga_port_ops_add -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xe06398dd __dfl_fpga_cdev_find_port -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xe295af32 dfl_fpga_port_ops_get -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xe8fb400b dfl_fpga_feature_devs_enumerate -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xea492866 dfl_fpga_check_port_id -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xfb3333b5 dfl_fpga_cdev_config_ports_pf -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xffd56284 dfl_fpga_cdev_config_ports_vf +EXPORT_SYMBOL_GPL drivers/fpga/altera-pr-ip-core 0xb7968e80 alt_pr_register +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x104a5c00 dfl_fpga_cdev_release_port +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x1854abaf __dfl_fpga_cdev_find_port +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x20c0edc7 dfl_fpga_cdev_assign_port +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x2a6aa77e dfl_fpga_feature_devs_enumerate +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x3d0723ca dfl_fpga_cdev_config_ports_vf +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x4435a903 dfl_fpga_dev_feature_uinit +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x48efcb5a dfl_fpga_dev_ops_unregister +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x496c8aae dfl_fpga_check_port_id +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x4f672cb3 dfl_fpga_port_ops_get +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x5034c957 dfl_fpga_feature_devs_remove +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x50fe048c dfl_feature_ioctl_get_num_irqs +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x616fedad dfl_fpga_set_irq_triggers +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x7a466b20 dfl_fpga_enum_info_free +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xa1a36e87 dfl_feature_ioctl_set_irq +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xab5af8c1 dfl_fpga_enum_info_add_irq +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xb1d562ef dfl_fpga_port_ops_del +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xc08c457d dfl_fpga_port_ops_put +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xc27b583a dfl_fpga_port_ops_add +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xc5cc6a67 dfl_fpga_enum_info_add_dfl +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xe60e8e7d dfl_fpga_enum_info_alloc +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xe7a69f58 dfl_fpga_cdev_config_ports_pf +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xedbc98af dfl_fpga_dev_feature_init +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xffa4d83b dfl_fpga_dev_ops_register EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x0633c4b9 fpga_bridges_enable EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x0b2b884c fpga_bridges_put -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x1828652e fpga_bridge_create -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x2280b7c7 fpga_bridge_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x27bb902a fpga_bridge_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x2636a6d4 fpga_bridge_disable EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x2c8167cf fpga_bridges_disable -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x303ed69b of_fpga_bridge_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x324c7979 of_fpga_bridge_get_to_list -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x44f13f5a fpga_bridge_free -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x4e863458 devm_fpga_bridge_create -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x740497f5 fpga_bridge_put -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xa6a15f61 fpga_bridge_disable -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xc06ffec4 fpga_bridge_unregister -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xc6626150 fpga_bridge_get_to_list -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xd70cd845 fpga_bridge_enable -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x07f98142 fpga_mgr_lock -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x22411a7f devm_fpga_mgr_register -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x48bf6036 fpga_mgr_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x5c7d4658 devm_fpga_mgr_create -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x62edfe25 fpga_image_info_alloc -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x6724a0c0 of_fpga_mgr_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x6cb4cdc5 fpga_mgr_free -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x87d26dcb fpga_mgr_put -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xa986ec9f fpga_mgr_create -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xb69d0ca0 fpga_mgr_unlock -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xd46cfe01 fpga_image_info_free -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xd7cf358e fpga_mgr_load -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xd9df34cf fpga_mgr_unregister -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xf1b31816 fpga_mgr_register -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x0b0f44b9 fpga_region_program_fpga -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x102bf1ca fpga_region_free -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x402aab16 fpga_region_class_find -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x4e7c96dd devm_fpga_region_create -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x6be5eeb8 fpga_region_register -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x92d1a1b1 fpga_region_unregister -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0xd5649ce7 fpga_region_create -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x01b250f2 fsi_master_unregister -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x32a55bda fsi_bus_type +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x2d557543 fpga_bridge_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x454503e5 fpga_bridge_enable +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x47a258ea devm_fpga_bridge_create +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x4873dbbf of_fpga_bridge_get_to_list +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x5b1edd34 fpga_bridge_create +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x7c6ec954 of_fpga_bridge_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x9730f296 fpga_bridge_get_to_list +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xa98d6633 fpga_bridge_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xc0c31e5e fpga_bridge_free +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xf49009d6 fpga_bridge_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xff31754b fpga_bridge_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x0a5c9ddf fpga_image_info_free +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x1fa0bd28 of_fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x411eec45 fpga_mgr_create +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x4f773343 fpga_mgr_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x5f155ac4 fpga_mgr_lock +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x6a9db2af fpga_mgr_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x72c72302 fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xbe9cd7b8 fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xdd0912af fpga_image_info_alloc +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xe87e9b37 devm_fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xf419c2dc fpga_mgr_free +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xf9bfad4c fpga_mgr_load +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xfa9fb10c devm_fpga_mgr_create +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xffc77e2d fpga_mgr_unlock +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x11bdf4ef fpga_region_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x691972f8 fpga_region_create +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x806387f9 fpga_region_class_find +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x8e35ba32 devm_fpga_region_create +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x92565faf fpga_region_program_fpga +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0xb6884e85 fpga_region_free +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0xd5e44eee fpga_region_register +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x27a7d7fa fsi_device_write +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x290e7236 fsi_get_new_minor EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x3a93847e fsi_slave_claim_range -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x3b082fc5 fsi_cdev_type -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x4411bc94 fsi_master_rescan -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x4cb50541 fsi_master_register +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x3bef2c8f fsi_device_read EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x5a57d574 fsi_free_minor +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x7299f8c9 fsi_master_register +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x77b2e1c4 fsi_master_rescan EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x78060f23 fsi_slave_read -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xa621d7a3 fsi_get_new_minor -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xb4c903dc fsi_driver_unregister -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xc083f0cb fsi_device_write +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x8c25ce78 fsi_master_unregister +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x9039cb84 fsi_bus_type EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xce22aee2 fsi_slave_release_range EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xd942f235 fsi_slave_write -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xecaad939 fsi_device_read -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xfa6edda0 fsi_driver_register -EXPORT_SYMBOL_GPL drivers/fsi/fsi-occ 0x39d0db50 fsi_occ_submit -EXPORT_SYMBOL_GPL drivers/fsi/fsi-sbefifo 0x7d803790 sbefifo_parse_status -EXPORT_SYMBOL_GPL drivers/fsi/fsi-sbefifo 0xd104e29c sbefifo_submit -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x2e2b534c gnss_put_device -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x2ef971bd gnss_insert_raw -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x7794d05c gnss_deregister_device -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x9ada20ae gnss_allocate_device -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0xa872dc8e gnss_register_device -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x067c85b8 gnss_serial_allocate -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x4b0c48a3 gnss_serial_deregister -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0xcaa141bf gnss_serial_free -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0xd0372cca gnss_serial_pm_ops -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0xd3370ed8 gnss_serial_register -EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x558a88a2 __max730x_probe -EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0xe387d32c __max730x_remove -EXPORT_SYMBOL_GPL drivers/gpio/gpio-regmap 0x3bdae4f2 devm_gpio_regmap_register -EXPORT_SYMBOL_GPL drivers/gpio/gpio-regmap 0x4874b173 gpio_regmap_register +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xe983c8b5 fsi_cdev_type +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xed093079 fsi_driver_register +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xf488fc38 fsi_driver_unregister +EXPORT_SYMBOL_GPL drivers/fsi/fsi-occ 0xeae87e6b fsi_occ_submit +EXPORT_SYMBOL_GPL drivers/fsi/fsi-sbefifo 0x474211a6 sbefifo_submit +EXPORT_SYMBOL_GPL drivers/fsi/fsi-sbefifo 0x56bfe11d sbefifo_parse_status +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x16624d20 gnss_register_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x5f3721d2 gnss_put_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x7ba5c987 gnss_allocate_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x845f0487 gnss_deregister_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x9ae0be2a gnss_insert_raw +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x0ad6c9e4 gnss_serial_free +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x0d91ed3d gnss_serial_allocate +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x50f5e4ef gnss_serial_deregister +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x5ae42e6b gnss_serial_pm_ops +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0xc99ec993 gnss_serial_register +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0xa7e04fb3 __max730x_probe +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0xf3163e3a __max730x_remove +EXPORT_SYMBOL_GPL drivers/gpio/gpio-regmap 0x030b5d57 devm_gpio_regmap_register EXPORT_SYMBOL_GPL drivers/gpio/gpio-regmap 0x496ce291 gpio_regmap_get_drvdata +EXPORT_SYMBOL_GPL drivers/gpio/gpio-regmap 0x77d64f0a gpio_regmap_register EXPORT_SYMBOL_GPL drivers/gpio/gpio-regmap 0xb7066570 gpio_regmap_unregister -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x09cff517 analogix_dp_suspend -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x210ef183 analogix_dp_start_crc -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x22c32cf1 analogix_dp_stop_crc -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x34e5a89c analogix_dp_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x05ffe919 analogix_dp_resume +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x18ee8644 analogix_dp_probe EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x3ee0dd60 anx_dp_aux_transfer -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x5d86cade analogix_dp_remove -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xd7341f50 analogix_dp_bind -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xf2e563de analogix_dp_unbind -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xf6f1c760 analogix_dp_resume +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x50b02830 analogix_dp_stop_crc +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x7335bc86 analogix_dp_bind +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x9901b377 analogix_dp_unbind +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xae33174c analogix_dp_start_crc +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xbdd53a6d analogix_dp_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xcef64681 analogix_dp_suspend EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x09340e05 dw_hdmi_set_channel_count EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x094f6fc5 dw_hdmi_phy_i2c_set_addr EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x1461e227 dw_hdmi_set_channel_status EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x157e02b6 dw_hdmi_phy_reset -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x175698be dw_hdmi_probe 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 0x42926f4a dw_hdmi_resume +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x43c7b091 dw_hdmi_set_plugged_cb +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x4423fd92 dw_hdmi_set_high_tmds_clock_ratio EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x4a9b174f dw_hdmi_remove -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x65219965 dw_hdmi_bind +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x5be4fc8c dw_hdmi_bind EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x6712b5a7 dw_hdmi_phy_gen2_txpwron EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x7d8a3aee dw_hdmi_phy_i2c_write EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x8dcd6f43 dw_hdmi_set_sample_rate -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x9477a08b 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 0xc3353374 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 0xe4779346 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 0x36468fda 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 0x773be6d0 dw_mipi_dsi_probe -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x0195a0ad drm_gem_shmem_prime_import_sg_table -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x023941ac drm_bridge_get_modes -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x149718fe drm_gem_shmem_get_sg_table -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x1ae4e464 drm_gem_cma_dumb_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x1cbd0939 drm_crtc_add_crc_entry -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x201d5095 drm_bridge_get_edid -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x26f6df0e drm_of_component_match_add -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x2e8cc423 drm_gem_shmem_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x33bfacb2 drm_gem_shmem_mmap -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x36d784ae drm_gem_shmem_free_object -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x3b5cd0bd drmm_kstrdup -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x46471d9a drm_gem_cma_free_object -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x579e65aa drm_class_device_register -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x5846cc9c drm_hdcp_check_ksvs_revoked -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x5cd98072 drm_gem_shmem_get_pages_sgt -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x65d76db9 drm_bridge_hpd_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-mipi-dsi 0x5426d624 dw_mipi_dsi_bind +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-mipi-dsi 0xf8867783 dw_mipi_dsi_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x06161af0 of_get_drm_display_mode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x0fe71e84 drmm_kstrdup +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x13182feb drm_gem_shmem_free_object +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x197f138e drm_of_encoder_active_endpoint +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x1cf2e78c drm_bridge_get_modes +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x2126b0b9 drm_gem_shmem_dumb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x220e46e5 drm_bridge_hpd_enable +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x2c89de91 drm_gem_shmem_get_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x32364b93 drm_bridge_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x3276ebca drm_gem_cma_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x33784d81 drm_gem_shmem_prime_import_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x3fab80ab drm_gem_cma_vm_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x5eb07c69 drm_gem_cma_get_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x5f9c113b drm_gem_cma_vmap EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x66cf2f64 drm_display_mode_from_videomode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x69a21cc1 of_get_drm_display_mode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x73c41f70 drm_class_device_unregister -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x74bd2e60 drm_get_unmapped_area -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x7c40b0e4 drm_gem_dumb_map_offset -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x8590da81 drm_of_lvds_get_dual_link_pixel_order -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x9888eeda drm_gem_cma_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x9ee595b2 drm_gem_cma_vm_ops -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x9f80692c drm_gem_cma_prime_import_sg_table -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xa3566310 drm_do_get_edid -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xa5db6aa6 drm_bridge_hpd_enable -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xabd4c3b5 drm_gem_shmem_dumb_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xad05d476 drm_of_find_panel_or_bridge +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x6c08f1a2 drm_of_find_panel_or_bridge +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x7d50a479 drm_gem_shmem_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x9e4d04d5 drm_gem_cma_dumb_create_internal +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x9fd0351c drm_class_device_unregister +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xa103a747 drm_of_lvds_get_dual_link_pixel_order +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xa12e37b6 drm_bridge_detect +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xa385f47f drm_bridge_hpd_disable EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xad885165 drm_bus_flags_from_videomode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xb2585396 drm_gem_cma_mmap -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xc73f574f drm_gem_cma_get_sg_table -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xc93b8320 drm_bridge_detect -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xd80bbf24 drm_gem_cma_vmap -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xdb1b620c drm_bridge_hpd_notify -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xdc6d9357 drm_gem_cma_dumb_create_internal -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xe0044f5f drm_of_encoder_active_endpoint +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xaf330067 drm_gem_cma_prime_import_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xb33b191b drm_gem_dumb_map_offset +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xbc53b109 drm_hdcp_check_ksvs_revoked +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xc03d6b62 drm_bridge_hpd_notify +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xcceecb13 drm_gem_cma_mmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xce415b7f drm_gem_shmem_get_pages_sgt +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xd141246b drm_gem_cma_free_object +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xd6128942 drm_crtc_add_crc_entry +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xe1800be9 drm_gem_shmem_mmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xe6b300bb drm_get_unmapped_area +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xe7cd6c11 drm_of_component_match_add +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xeeea232d drm_do_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xf6eac67d drm_class_device_register +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xfe31e55a drm_gem_cma_dumb_create EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xfe9f72f3 drm_display_mode_to_videomode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dp_aux_bus 0x2036e4f0 dp_aux_dp_driver_unregister -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dp_aux_bus 0x4609684a of_dp_aux_depopulate_ep_devices -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dp_aux_bus 0x4db2d5ca devm_of_dp_aux_populate_ep_devices -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dp_aux_bus 0x728785bb __dp_aux_dp_driver_register -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x0635fdcd drm_bridge_connector_init -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x20e98df6 drm_gem_fb_init_with_funcs -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x34eb3114 drm_gem_plane_helper_prepare_fb -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x3a830238 drm_fb_cma_get_gem_obj -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x5ac9c5a7 drm_gem_fb_afbc_init -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x6448a3dd drm_bridge_connector_enable_hpd -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x7f101e5a drm_fb_cma_get_gem_addr -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xbe9a8451 drm_gem_fb_get_obj -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xbf6642a8 drm_gem_fb_create_with_funcs -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xcbececf1 drm_gem_fb_create_with_dirty -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xdb4a5c1f drm_fb_cma_sync_non_coherent -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xdeeccc78 drm_gem_fb_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xe029d503 drm_bridge_connector_disable_hpd +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dp_aux_bus 0x050938b6 devm_of_dp_aux_populate_ep_devices +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dp_aux_bus 0x1ebc3451 of_dp_aux_depopulate_ep_devices +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dp_aux_bus 0xa6216ecc dp_aux_dp_driver_unregister +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dp_aux_bus 0xd5fd5991 __dp_aux_dp_driver_register +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x0bec2e3b drm_gem_fb_create_with_dirty +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x14002a91 drm_bridge_connector_enable_hpd +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x1b14feb4 drm_gem_fb_get_obj +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x3161fc93 drm_gem_fb_create_with_funcs +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x4791234b drm_fb_cma_sync_non_coherent +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x51162678 drm_fb_cma_get_gem_addr +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x5ee41c9d drm_gem_fb_init_with_funcs +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x9756f7f3 drm_gem_fb_afbc_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x9acb56c5 drm_bridge_connector_disable_hpd +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xa011ae60 drm_bridge_connector_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xaeae0916 drm_gem_fb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xe74ab7bf drm_fb_cma_get_gem_obj +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xf4f04943 drm_gem_plane_helper_prepare_fb EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x2c73cfcf meson_venc_hdmi_venc_repeat -EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x40a59703 meson_venc_hdmi_mode_set -EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x412a5305 meson_vclk_vic_supported_freq -EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x4247b286 meson_vclk_dmt_supported_freq +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x30a020f1 meson_vclk_setup +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x36e271a3 meson_vclk_vic_supported_freq +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x6f7bece1 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 0xd43b389b meson_vclk_setup -EXPORT_SYMBOL_GPL drivers/gpu/drm/panel/panel-samsung-s6e63m0 0x37692dfa s6e63m0_remove -EXPORT_SYMBOL_GPL drivers/gpu/drm/panel/panel-samsung-s6e63m0 0xd50df992 s6e63m0_probe -EXPORT_SYMBOL_GPL drivers/gpu/drm/pl111/pl111_drm 0x2463b506 pl111_versatile_init -EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0x12762ea4 rcar_cmm_enable -EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0x2b023b29 rcar_cmm_init -EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0x60f5ce1a rcar_cmm_setup -EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0x7504085c rcar_cmm_disable -EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0x5454b4c2 rcar_lvds_clk_disable -EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0x57b6ccba rcar_lvds_is_connected -EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0x8faf5b35 rcar_lvds_dual_link -EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0xc1a29c81 rcar_lvds_clk_enable -EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0x550d510e rockchip_rgb_init -EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0x8040628c vop_component_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0xb77028e8 meson_venc_hdmi_mode_set +EXPORT_SYMBOL_GPL drivers/gpu/drm/panel/panel-samsung-s6e63m0 0x80d9e911 s6e63m0_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/panel/panel-samsung-s6e63m0 0x8f704970 s6e63m0_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/pl111/pl111_drm 0xe17719e3 pl111_versatile_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0x3154f12c rcar_cmm_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0x4bcaefbe rcar_cmm_setup +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0x92d31fac rcar_cmm_enable +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0xa978f692 rcar_cmm_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0x038b6120 rcar_lvds_clk_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0x5b5681a4 rcar_lvds_is_connected +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0xa97dabf0 rcar_lvds_dual_link +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0xfa2da303 rcar_lvds_clk_enable +EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0x0ce06985 rockchip_rgb_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0x7c63c8ff vop_component_ops EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0xfead7585 rockchip_rgb_fini -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x00f30a17 greybus_deregister_driver EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x02f46d26 __tracepoint_gb_message_submit -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x074beaff __traceiter_gb_hd_add -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x0f09a0c7 gb_connection_latency_tag_disable -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x1353af1a __traceiter_gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x0568bc90 gb_operation_put +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x066b9f14 greybus_data_rcvd +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x0b4908cc gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x0f05f523 __traceiter_gb_hd_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x0f738f0b gb_operation_cancel EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x14028e17 __SCK__tp_func_gb_hd_add -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x157fa008 gb_interface_request_mode_switch EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x15d1942f greybus_disabled -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x31280311 gb_hd_output -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x3816a10e gb_operation_create_flags -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x3c0dee99 gb_operation_request_send -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x442e7eca gb_hd_shutdown -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x47e27b63 gb_hd_create -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x4f14a0ef gb_connection_disable_rx -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x4f31a4af gb_debugfs_get -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x593e865c gb_connection_create_offloaded -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x5a47adf4 greybus_message_sent +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x1f39499f gb_connection_latency_tag_disable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x1fc78089 gb_hd_put +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x2e92ba11 gb_hd_cport_release_reserved +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x372dd04a gb_debugfs_get +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x3907bc31 gb_svc_intf_set_power_mode +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x3a31006e gb_operation_get +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x41656efc gb_operation_sync_timeout +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x4653da02 __traceiter_gb_hd_add +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x52d27ee4 gb_interface_request_mode_switch +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x538b2f28 gb_hd_add EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x5ad3f2d7 __tracepoint_gb_hd_add -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x5b5ede25 greybus_register_driver +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x5b601e60 gb_connection_enable_tx EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x5c0a8043 __tracepoint_gb_hd_in +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x5ebeaff6 gb_operation_get_payload_size_max EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6213634d __tracepoint_gb_hd_create -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x689f8a6d gb_hd_cport_release_reserved EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6d3bb9ec __SCK__tp_func_gb_message_submit -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7072e08f gb_operation_result -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7d224afc gb_operation_response_alloc -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7ea1983e gb_connection_create_flags +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6fad33a1 __traceiter_gb_hd_release +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x74c87797 gb_connection_destroy +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x79e4bca5 gb_operation_create_flags EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x81e221fb __SCK__tp_func_gb_hd_create -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x86f86853 gb_hd_cport_reserve -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x87d6e5f0 __traceiter_gb_hd_in +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x84c84d0d gb_connection_latency_tag_enable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x85824da4 __traceiter_gb_hd_in +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x87e83433 greybus_message_sent +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x885fe805 gb_hd_create EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x89f514a1 __SCK__tp_func_gb_hd_in -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x8aa84f3a gb_operation_sync_timeout -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x8c6ccb2b greybus_data_rcvd -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x8e8ba122 gb_connection_create -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x93672756 __traceiter_gb_hd_create -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x938a9d9a __traceiter_gb_hd_release -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x97bc77bc gb_operation_get_payload_size_max -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x9a2945e0 gb_operation_get -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x9a718a18 gb_connection_enable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x8e09d4c9 gb_connection_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x90f043c1 gb_hd_cport_reserve +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x9178169e greybus_register_driver +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x9478879f gb_hd_output +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x96679a7d gb_operation_unidirectional_timeout +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x9e515c15 greybus_deregister_driver EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xa416e2da __tracepoint_gb_hd_del -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xae279543 gb_connection_disable -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xaeb7a1b8 gb_hd_put -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xb4e717d6 gb_connection_latency_tag_enable -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xc489a186 gb_operation_unidirectional_timeout -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xc6841742 gb_hd_del -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd11370e8 gb_hd_add +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xa7b9a6fb gb_connection_enable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xad77d6a2 gb_connection_create_offloaded +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xbcf1fe65 gb_connection_disable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xc7b5d4e6 __traceiter_gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xc7fc232d __traceiter_gb_message_submit EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd3e646d9 __tracepoint_gb_hd_release -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd52021eb gb_operation_cancel -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xda3fe89b gb_operation_put -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe0f51d2a gb_connection_disable_forced -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe98b5823 gb_svc_intf_set_power_mode -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xeaba3ef2 gb_connection_destroy +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd8c262d1 gb_connection_disable_forced +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe00f356a gb_connection_disable_rx +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe28c0b4c gb_hd_shutdown +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe8daeccf gb_operation_request_send_sync_timeout 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 0xf3348d06 gb_connection_enable_tx -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf9fe11b6 gb_operation_request_send_sync_timeout -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xfb2c42bf __traceiter_gb_message_submit +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf5fcae6b gb_operation_response_alloc +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf77728f5 gb_connection_create_flags +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf81fe3b9 gb_operation_result +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xfa112bfb gb_operation_request_send EXPORT_SYMBOL_GPL drivers/hid/hid 0x05495392 hid_debug -EXPORT_SYMBOL_GPL drivers/hid/hid 0x143844bc hid_dump_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0x1478f4e6 hid_resolv_usage -EXPORT_SYMBOL_GPL drivers/hid/hid 0x1634caf8 __hid_register_driver -EXPORT_SYMBOL_GPL drivers/hid/hid 0x1760eae0 hidinput_find_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x07b8e145 hid_match_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x1833db81 hid_open_report EXPORT_SYMBOL_GPL drivers/hid/hid 0x19d52f1f hid_quirks_exit -EXPORT_SYMBOL_GPL drivers/hid/hid 0x29af6ac6 hidinput_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x2b5a9378 hidinput_get_led_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0x32786bbe hid_destroy_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0x38bb0c77 hid_parse_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x39c81f5e hidinput_calc_abs_res -EXPORT_SYMBOL_GPL drivers/hid/hid 0x4156528e hid_add_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0x480992ef hid_hw_start -EXPORT_SYMBOL_GPL drivers/hid/hid 0x49683ffa __hid_request -EXPORT_SYMBOL_GPL drivers/hid/hid 0x4ccb74aa hid_dump_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0x57287a9d hid_dump_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x5dc2d178 hidinput_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0x5ec31192 hid_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x6383c31a hid_lookup_quirk -EXPORT_SYMBOL_GPL drivers/hid/hid 0x6a6f1062 hid_hw_open -EXPORT_SYMBOL_GPL drivers/hid/hid 0x6d70407f hid_set_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0x7d3158e7 hid_field_extract -EXPORT_SYMBOL_GPL drivers/hid/hid 0x8103908c hid_setup_resolution_multiplier -EXPORT_SYMBOL_GPL drivers/hid/hid 0x8198d13e hid_check_keys_pressed -EXPORT_SYMBOL_GPL drivers/hid/hid 0x8425c2a1 hidraw_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0x896e5b5d hidraw_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x8b027a4f hid_register_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x1ff6efc2 hidinput_calc_abs_res +EXPORT_SYMBOL_GPL drivers/hid/hid 0x28c8e547 hid_check_keys_pressed +EXPORT_SYMBOL_GPL drivers/hid/hid 0x292863eb hidinput_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3c9c190d hid_destroy_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x43334a2a hid_validate_values +EXPORT_SYMBOL_GPL drivers/hid/hid 0x43916028 hid_input_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x439d0bf2 hidinput_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4a255e74 hid_lookup_quirk +EXPORT_SYMBOL_GPL drivers/hid/hid 0x50aa7b7f hid_hw_start +EXPORT_SYMBOL_GPL drivers/hid/hid 0x598362f0 hid_allocate_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x65a49e6f hid_dump_input +EXPORT_SYMBOL_GPL drivers/hid/hid 0x6876dba9 hid_field_extract +EXPORT_SYMBOL_GPL drivers/hid/hid 0x6bb55797 hid_dump_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x6c60b181 hidraw_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x6fef6c60 hid_alloc_report_buf +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7403f3d2 hid_hw_close +EXPORT_SYMBOL_GPL drivers/hid/hid 0x744d633c __hid_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0x76536632 hidinput_find_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7703e50d hid_hw_stop +EXPORT_SYMBOL_GPL drivers/hid/hid 0x83dcdff7 hid_register_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x841600bd hidinput_get_led_field EXPORT_SYMBOL_GPL drivers/hid/hid 0x8b13a8b8 hid_snto32 -EXPORT_SYMBOL_GPL drivers/hid/hid 0x912446b8 hid_validate_values -EXPORT_SYMBOL_GPL drivers/hid/hid 0x92287edd hid_allocate_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0x9c881443 hid_dump_input -EXPORT_SYMBOL_GPL drivers/hid/hid 0xa7493c07 hidraw_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0xaa95f52e hid_match_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0xb7553be0 hid_compare_device_paths -EXPORT_SYMBOL_GPL drivers/hid/hid 0xb787edd5 hid_alloc_report_buf -EXPORT_SYMBOL_GPL drivers/hid/hid 0xbc70ff52 hidinput_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0xbfa565ff hid_debug_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0xc8e9d9c1 hid_hw_close -EXPORT_SYMBOL_GPL drivers/hid/hid 0xd387b7d6 hid_output_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0xd5156a2b hid_report_raw_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0xd5ad3f01 hid_hw_stop -EXPORT_SYMBOL_GPL drivers/hid/hid 0xd90bf2eb hid_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0xdd876d2a hidinput_count_leds -EXPORT_SYMBOL_GPL drivers/hid/hid 0xdde662e5 hid_input_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0xe592e401 hid_ignore -EXPORT_SYMBOL_GPL drivers/hid/hid 0xeb1d413e hid_open_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0xf7e48253 hid_unregister_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8fb36614 hidinput_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x93e654db hid_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x9603894a hid_compare_device_paths +EXPORT_SYMBOL_GPL drivers/hid/hid 0x9fb6e658 hid_parse_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa0e7f41b hid_ignore +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa6ac4ad3 hid_output_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb0f1742d hid_add_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb53a3edd hidinput_count_leds +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc814c4b0 hid_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc8b2378d __hid_register_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0xcaa627ca hidraw_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xcd381383 hidraw_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd1e63ff7 hid_set_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd5a08258 hid_unregister_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0xdae7d1d3 hid_resolv_usage +EXPORT_SYMBOL_GPL drivers/hid/hid 0xdb2c4dd9 hid_debug_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xe0736167 hid_dump_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xe7b70d5d hid_dump_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xed63e1e1 hid_hw_open +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf9c004f1 hid_report_raw_event EXPORT_SYMBOL_GPL drivers/hid/hid 0xfa355613 hid_quirks_init +EXPORT_SYMBOL_GPL drivers/hid/hid 0xfdf07406 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 0xa706e9ec roccat_connect -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x16b5178e roccat_common2_receive -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x322d4cc3 roccat_common2_sysfs_write -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x4ce866c5 roccat_common2_send -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x4e331f93 roccat_common2_sysfs_read -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xb72fad46 roccat_common2_device_init_struct -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xdd4356cf roccat_common2_send_with_status -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x01f5f280 sensor_hub_input_get_attribute_info -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x78abb49d hid_sensor_get_usage_index -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x8f1bf08c sensor_hub_set_feature -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xc4f7dfab sensor_hub_device_close -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xce4fc43f sensor_hub_get_feature -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xd272cf39 sensor_hub_input_attr_get_raw_value -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xd2df0e59 sensor_hub_device_open -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xdfc1254c sensor_hub_register_callback -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xf90c3f2a sensor_hub_remove_callback -EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x7f62649d i2c_hid_core_shutdown -EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0xda695fb6 i2c_hid_core_remove -EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0xe78d0708 i2c_hid_ll_driver -EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0xedec1ce3 i2c_hid_core_probe -EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0xf7ebb85e i2c_hid_core_pm -EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0x613aded4 surface_hid_device_add -EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0x94d6e563 surface_hid_device_destroy -EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0xeb4af057 surface_hid_pm_ops -EXPORT_SYMBOL_GPL drivers/hid/uhid 0xbe49b346 uhid_hid_driver -EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x55e51606 hiddev_hid_event -EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0xceeb422e usb_hid_driver -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x0b31f75b hsi_new_client -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x0e6cab2d hsi_free_msg -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x1dd418ef hsi_unregister_port_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x2d3419a8 hsi_async -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x2ebd8a35 hsi_get_channel_id_by_name -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x31dcde2b hsi_remove_client -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x3b24edfd hsi_unregister_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x3ef130df hsi_alloc_msg -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x4b47d318 hsi_register_port_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x4d93e34f hsi_register_client_driver +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x86c85c38 roccat_connect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x279542f3 roccat_common2_sysfs_read +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x36bbb743 roccat_common2_receive +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x623522c6 roccat_common2_sysfs_write +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x7aaface8 roccat_common2_send_with_status +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xd8aedc4d roccat_common2_send +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xf7a67437 roccat_common2_device_init_struct +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x0ba825aa sensor_hub_device_close +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x275f52f9 sensor_hub_set_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x4712142c sensor_hub_get_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x4a8d1f24 sensor_hub_remove_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x72b65e54 sensor_hub_input_attr_get_raw_value +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x942e2e88 hid_sensor_get_usage_index +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xa5e8ad56 sensor_hub_device_open +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xd14109b6 sensor_hub_register_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xed2497d3 sensor_hub_input_get_attribute_info +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x31177c63 i2c_hid_ll_driver +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x742d133a i2c_hid_core_remove +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x83caa59d i2c_hid_core_shutdown +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x98b213b1 i2c_hid_core_pm +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0xe1d03327 i2c_hid_core_probe +EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0x0b962185 surface_hid_device_destroy +EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0x63889083 surface_hid_pm_ops +EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0xdc656b8e surface_hid_device_add +EXPORT_SYMBOL_GPL drivers/hid/uhid 0x79ce96ca uhid_hid_driver +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x112aece7 usb_hid_driver +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x1482ba63 hiddev_hid_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x011d20dd hsi_new_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x1563054a hsi_put_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x171579e5 hsi_unregister_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x1f36d911 hsi_alloc_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x499d1221 hsi_register_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x4e245a19 hsi_event EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5210a5bf hsi_board_list -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x53df4e73 hsi_put_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x94675c51 hsi_add_clients_from_dt -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xa0fc07e2 hsi_release_port -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xa138c67f hsi_port_unregister_clients -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xa77a865d hsi_alloc_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xc15cc4cd hsi_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xca3dc299 hsi_register_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xf19f9b25 hsi_claim_port -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x0a13f889 vmbus_send_modifychannel -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x111edc6f vmbus_connection -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x183b4ce1 vmbus_set_sc_create_callback -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x19d98f9c vmbus_free_ring -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x20d40679 hv_pkt_iter_first -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x2615c4d0 vmbus_establish_gpadl -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x273d6e39 vmbus_set_chn_rescind_callback -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x2e9c7c43 vmbus_driver_unregister -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x2f22ec51 vmbus_allocate_mmio +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x52ce0b18 hsi_free_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x6794eb1e hsi_register_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x6b69abc3 hsi_async +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x778991d7 hsi_add_clients_from_dt +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x93b44905 hsi_unregister_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x9aeb5ae9 hsi_release_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x9dfd76be hsi_alloc_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xc02556ea hsi_register_client_driver +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xc027a75b hsi_claim_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xd6301516 hsi_remove_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xdfaf28ea hsi_get_channel_id_by_name +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xe3a58915 hsi_port_unregister_clients +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x00df75ee __hv_pkt_iter_next +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x023a8d8c vmbus_sendpacket_pagebuffer +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x04e12fd8 vmbus_set_chn_rescind_callback +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x07da7836 vmbus_are_subchannels_present +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x121a15aa vmbus_driver_unregister +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x31ae5a2c vmbus_send_modifychannel 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 0x347be6c6 hv_pkt_iter_close -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x348dee24 vmbus_hvsock_device_unregister -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x3a4013f3 __vmbus_driver_register -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x3ba67b28 vmbus_teardown_gpadl -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x41a7fab3 vmbus_are_subchannels_present EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x46a417ca vmbus_proto_version -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x46c8f868 vmbus_disconnect_ring +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x48fa7309 vmbus_sendpacket_mpb_desc EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x4b2210b8 vmbus_send_tl_connect_request +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x4fb18cc8 hv_pkt_iter_first_raw +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x5249263e vmbus_connect_ring EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x548521b1 hv_ringbuffer_get_debuginfo -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x5ee5fc18 __hv_pkt_iter_next -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x633edbea vmbus_close -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x6e16744c vmbus_request_addr -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x824bda99 vmbus_alloc_ring -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x8c1b7df2 vmbus_setevent -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x9767f4d9 vmbus_connect_ring -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xa133d4bd vmbus_recvpacket_raw -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xae559eaa vmbus_open -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xb469471e vmbus_sendpacket_mpb_desc -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xc1d16e74 vmbus_next_request_id -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xc34382ef vmbus_sendpacket_pagebuffer -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xe5a71425 vmbus_set_event -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xef10532f hv_pkt_iter_first_raw -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x19a4cb89 adt7x10_remove -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x204ef019 adt7x10_dev_pm_ops -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0xb94e8cb3 adt7x10_probe +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x62621702 vmbus_hvsock_device_unregister +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x6585cf90 vmbus_set_event +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x6a59d3f6 vmbus_open +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x7299e899 vmbus_close +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x8cd10bf7 vmbus_allocate_mmio +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x8dffc0b5 vmbus_connection +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x8eca6552 vmbus_request_addr +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xaabc5ca1 vmbus_establish_gpadl +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xac4699ba __vmbus_driver_register +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xb21f6dd3 vmbus_setevent +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xc7ecba82 vmbus_disconnect_ring +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xccb5e5d9 vmbus_alloc_ring +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xdc74ff14 vmbus_next_request_id +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xe6d8be1a vmbus_free_ring +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xe8bdce23 hv_pkt_iter_first +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xf03c54fb vmbus_teardown_gpadl +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xf1a1db90 vmbus_set_sc_create_callback +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xf1c0daa4 vmbus_recvpacket_raw +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xfc80ec4a hv_pkt_iter_close +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x009f8cd3 adt7x10_dev_pm_ops +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x8a6dec20 adt7x10_remove +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0xe7dae4e0 adt7x10_probe EXPORT_SYMBOL_GPL drivers/hwmon/ltc2947-core 0x5cbb5274 ltc2947_core_probe +EXPORT_SYMBOL_GPL drivers/hwmon/ltc2947-core 0xa51daa7d ltc2947_pm_ops EXPORT_SYMBOL_GPL drivers/hwmon/ltc2947-core 0xbc54f93e ltc2947_of_match -EXPORT_SYMBOL_GPL drivers/hwmon/ltc2947-core 0xd7034f14 ltc2947_pm_ops -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x14cecaf5 intel_th_driver_unregister -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x16120aab intel_th_output_enable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x38cc392c intel_th_set_output -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x4dcc0f9d intel_th_driver_register -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x85b55c61 intel_th_trace_disable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xad6d92d9 intel_th_trace_enable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xb21a5f0f intel_th_trace_switch -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xba9ff61b intel_th_free -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xfa43f567 intel_th_alloc -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x12f87a32 intel_th_msc_window_unlock -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x1845a19a intel_th_msu_buffer_unregister -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x5c7b2bfd intel_th_msu_buffer_register -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x0b88904f stm_data_write -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x6b7f8d81 stm_unregister_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xacc978a6 stm_source_register_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xc60017f4 stm_register_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xd6426de9 stm_register_protocol -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xd8470349 stm_source_write -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xf8243f80 to_pdrv_policy_node -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xfc777569 stm_source_unregister_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xfd421882 stm_unregister_protocol -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x6ca861ec i2c_mux_del_adapters -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xb8bbb1b4 i2c_mux_add_adapter -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xc62b383b i2c_root_adapter -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xd56faff0 i2c_mux_alloc -EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x066ae780 i2c_handle_smbus_alert -EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x65917466 i2c_free_slave_host_notify_device -EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x8d06fe7d i2c_new_slave_host_notify_device -EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xdfd29557 i2c_register_spd -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x033431cc i3c_master_get_free_addr -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x080702f2 i3c_driver_register_with_owner -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x10138057 i3c_master_defslvs_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x11e047b0 i3c_device_request_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x1ae0b4a8 i3c_master_queue_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x256f5685 i3c_master_set_info -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x357ed70d i3c_master_register -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x45512e1a i3c_device_enable_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x67f67e27 i3c_device_do_priv_xfers -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x6a7f79ad i3c_generic_ibi_alloc_pool -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x6bdb0995 i3c_master_unregister -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x725f2464 i3c_master_add_i3c_dev_locked +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x2c50b59f intel_th_set_output +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x3d240cb6 intel_th_output_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x3dd038f2 intel_th_trace_disable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x8cf09890 intel_th_driver_register +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xb949065d intel_th_driver_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xb9e9081a intel_th_free +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xc0575854 intel_th_alloc +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xd9abf5b8 intel_th_trace_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xff46b5bb intel_th_trace_switch +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x04e036f5 intel_th_msc_window_unlock +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x9f575e5d intel_th_msu_buffer_register +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0xd9d11270 intel_th_msu_buffer_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x03cd1354 stm_data_write +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x10ba94ed stm_source_write +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x4fb22e39 to_pdrv_policy_node +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x57d44283 stm_unregister_protocol +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x61e4db19 stm_source_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xa8d92094 stm_source_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xaa4a9ffc stm_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xb1279e28 stm_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xbca3681f stm_register_protocol +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x23e66c91 i2c_mux_alloc +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x7960f1bf i2c_mux_del_adapters +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xaa6766a9 i2c_mux_add_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xe8401cbb i2c_root_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x75edb1de i2c_register_spd +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xaadf2f28 i2c_handle_smbus_alert +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xb57a554c i2c_free_slave_host_notify_device +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xe9b5ee94 i2c_new_slave_host_notify_device +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x0c52c9e3 i3c_master_queue_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x184fc66c i3c_master_register +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x1e9aa9b4 i3c_device_enable_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x2b8b3675 i3c_device_get_info +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x3698e8a1 i3c_generic_ibi_recycle_slot +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x479de4c1 i3c_driver_register_with_owner +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x534c40c5 i3c_generic_ibi_alloc_pool +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x567df2f0 i3c_master_defslvs_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x58e4a728 dev_to_i3cdev +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x71da02cc i3c_device_disable_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x769440db i3c_master_set_info EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x76fe3e05 i3c_generic_ibi_free_pool -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x785e5eab i3c_device_match_id -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x832574f6 i3c_device_disable_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x95b781e4 i3c_master_enec_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xa10450f8 i3c_master_disec_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xa5214c24 i3c_device_get_info -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xa5fa778e i3cdev_to_dev -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xb54e6951 i3c_generic_ibi_recycle_slot -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xd84c8e0d i3c_master_entdaa_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xdb9a4dcd i3c_master_do_daa -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xde599a28 i3c_driver_unregister -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xee97b1d0 dev_to_i3cdev -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xf309e6dc i3c_device_free_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xf3581b67 i3c_generic_ibi_get_free_slot -EXPORT_SYMBOL_GPL drivers/iio/accel/adxl372 0x6c8806fc adxl372_readable_noinc_reg -EXPORT_SYMBOL_GPL drivers/iio/accel/adxl372 0xd54465a2 adxl372_probe -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x4be195bb bmc150_accel_core_remove -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x72e69bfc bmc150_accel_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xc659727c bmc150_regmap_conf -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xfb086656 bmc150_accel_core_probe -EXPORT_SYMBOL_GPL drivers/iio/accel/bmi088-accel-core 0x4e9510c2 bmi088_accel_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/accel/bmi088-accel-core 0x78322d15 bmi088_regmap_conf -EXPORT_SYMBOL_GPL drivers/iio/accel/bmi088-accel-core 0x9a4de620 bmi088_accel_core_remove -EXPORT_SYMBOL_GPL drivers/iio/accel/bmi088-accel-core 0xd660b863 bmi088_accel_core_probe -EXPORT_SYMBOL_GPL drivers/iio/accel/fxls8962af-core 0x078915e5 fxls8962af_i2c_regmap_conf -EXPORT_SYMBOL_GPL drivers/iio/accel/fxls8962af-core 0x133cf388 fxls8962af_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/accel/fxls8962af-core 0x776eb35b fxls8962af_core_probe -EXPORT_SYMBOL_GPL drivers/iio/accel/fxls8962af-core 0xa5578120 fxls8962af_spi_regmap_conf -EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0x25e2cf91 mma7455_core_regmap -EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0x70d19825 mma7455_core_remove -EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0xbd56a833 mma7455_core_probe -EXPORT_SYMBOL_GPL drivers/iio/adc/ad7091r-base 0x9194d4fe ad7091r_regmap_config -EXPORT_SYMBOL_GPL drivers/iio/adc/ad7091r-base 0xdfb0bf94 ad7091r_probe -EXPORT_SYMBOL_GPL drivers/iio/adc/ad7606 0x14c798a4 ad7606_probe -EXPORT_SYMBOL_GPL drivers/iio/adc/ad7606 0xb9f1d90a ad7606_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x212cec9a ad_sd_reset -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x35c0224b ad_sd_calibrate -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x7ade6c04 ad_sd_calibrate_all -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xae4ee002 ad_sd_set_comm -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xbac000af ad_sd_init -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xbdeaf175 devm_ad_sd_setup_buffer_and_trigger -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xcad70d92 ad_sd_read_reg -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xd5dedc65 ad_sigma_delta_single_conversion -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xe135c798 ad_sd_write_reg -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xe395b1ce ad_sd_validate_trigger -EXPORT_SYMBOL_GPL drivers/iio/adc/adi-axi-adc 0x3aa17c58 adi_axi_adc_conv_priv -EXPORT_SYMBOL_GPL drivers/iio/adc/adi-axi-adc 0xf4462828 devm_adi_axi_adc_conv_register +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x7c63fb17 i3c_master_unregister +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x88eca376 i3c_device_free_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x98bd9b51 i3c_master_add_i3c_dev_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xb0a350c2 i3c_master_do_daa +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xb97253b8 i3c_master_entdaa_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xd0b6140b i3c_device_match_id +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xd1e7cccf i3cdev_to_dev +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xd8328f23 i3c_master_disec_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xdcbcc160 i3c_generic_ibi_get_free_slot +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xf2810ff9 i3c_device_do_priv_xfers +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xf566919a i3c_master_enec_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xf5c1d3ca i3c_driver_unregister +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xf89529a3 i3c_device_request_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xf986c8ca i3c_master_get_free_addr +EXPORT_SYMBOL_GPL drivers/iio/accel/adxl372 0x21ae5d3b adxl372_probe +EXPORT_SYMBOL_GPL drivers/iio/accel/adxl372 0x9cf82e28 adxl372_readable_noinc_reg +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x1b1b3dd3 bmc150_accel_core_remove +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x7532720b bmc150_accel_core_probe +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x9fa3e2c7 bmc150_accel_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xa7d0fb79 bmc150_regmap_conf +EXPORT_SYMBOL_GPL drivers/iio/accel/bmi088-accel-core 0x09ca7ec6 bmi088_regmap_conf +EXPORT_SYMBOL_GPL drivers/iio/accel/bmi088-accel-core 0x0d62bc71 bmi088_accel_core_remove +EXPORT_SYMBOL_GPL drivers/iio/accel/bmi088-accel-core 0x204cd708 bmi088_accel_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/accel/bmi088-accel-core 0x2be40856 bmi088_accel_core_probe +EXPORT_SYMBOL_GPL drivers/iio/accel/fxls8962af-core 0x6dd43b88 fxls8962af_spi_regmap_conf +EXPORT_SYMBOL_GPL drivers/iio/accel/fxls8962af-core 0x8bde0992 fxls8962af_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/accel/fxls8962af-core 0xcf0aaf4d fxls8962af_i2c_regmap_conf +EXPORT_SYMBOL_GPL drivers/iio/accel/fxls8962af-core 0xe55850d5 fxls8962af_core_probe +EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0x3a49b4ac mma7455_core_regmap +EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0x7e27c5e4 mma7455_core_probe +EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0xc346942a mma7455_core_remove +EXPORT_SYMBOL_GPL drivers/iio/adc/ad7091r-base 0x1cdf0fb1 ad7091r_probe +EXPORT_SYMBOL_GPL drivers/iio/adc/ad7091r-base 0x25beb06f ad7091r_regmap_config +EXPORT_SYMBOL_GPL drivers/iio/adc/ad7606 0xb49cf4de ad7606_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/adc/ad7606 0xf91b5e70 ad7606_probe +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x1a5c16d1 ad_sigma_delta_single_conversion +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x2b3411ce ad_sd_set_comm +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x3e442231 ad_sd_write_reg +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x514e06c5 ad_sd_calibrate_all +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x544d1cf9 ad_sd_calibrate +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x5623822e ad_sd_read_reg +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x5dcfa6d9 devm_ad_sd_setup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x7e00de0c ad_sd_init +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xb087310f ad_sd_reset +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xd89226d6 ad_sd_validate_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/adi-axi-adc 0x6df5ffc1 devm_adi_axi_adc_conv_register +EXPORT_SYMBOL_GPL drivers/iio/adc/adi-axi-adc 0xbd896e17 adi_axi_adc_conv_priv 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 0x56d7c420 iio_channel_cb_get_channels -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x5ac2ae5b iio_channel_cb_get_iio_dev -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x75a81b5e iio_channel_get_all_cb +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x526eb38b 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 0x8a8bf934 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-dma 0x11e0492a iio_dma_buffer_block_list_abort -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x15ec8050 iio_dma_buffer_init -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x1baee786 iio_dma_buffer_set_length -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x1d7b3d17 iio_dma_buffer_exit -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x5a52bc86 iio_dma_buffer_release -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x674883d1 iio_dma_buffer_enable -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x822f66b1 iio_dma_buffer_request_update -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x94240941 iio_dma_buffer_block_done -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xa6d04cad iio_dma_buffer_disable -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xc94202a7 iio_dma_buffer_set_bytes_per_datum -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xd270e5ff iio_dma_buffer_read -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xf393fef6 iio_dma_buffer_data_available -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dmaengine 0x90139d0c devm_iio_dmaengine_buffer_setup +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0xfa190c19 iio_channel_get_all_cb +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x13e0513a iio_dma_buffer_release +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x151d5956 iio_dma_buffer_block_list_abort +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x356ba406 iio_dma_buffer_set_bytes_per_datum +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x45a1c63e iio_dma_buffer_exit +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x54c2c3c6 iio_dma_buffer_disable +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x8c41dc10 iio_dma_buffer_block_done +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xae990a9c iio_dma_buffer_data_available +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xb033304a iio_dma_buffer_enable +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xcbd79d0e iio_dma_buffer_set_length +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xd8b4f7a9 iio_dma_buffer_request_update +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xe79efeff iio_dma_buffer_init +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xf19f6a59 iio_dma_buffer_read +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dmaengine 0x6793392b devm_iio_dmaengine_buffer_setup EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x3391543d iio_hw_consumer_disable -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x3f1693b1 iio_hw_consumer_alloc +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x8473ab5c devm_iio_hw_consumer_alloc EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x9671bc15 iio_hw_consumer_free EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0xbf358fa9 iio_hw_consumer_enable -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0xfe85c98a devm_iio_hw_consumer_alloc -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-triggered-buffer 0xee34bbc1 devm_iio_triggered_buffer_setup_ext -EXPORT_SYMBOL_GPL drivers/iio/buffer/kfifo_buf 0x0ddf492e devm_iio_kfifo_buffer_setup_ext -EXPORT_SYMBOL_GPL drivers/iio/chemical/bme680_core 0xe97569f7 bme680_core_probe -EXPORT_SYMBOL_GPL drivers/iio/chemical/sps30 0xc8b89999 sps30_probe -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x05fb16f5 cros_ec_sensors_core_write -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x75959c62 cros_ec_motion_send_host_cmd -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x7b9e159f cros_ec_sensors_core_init -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x842d7d33 cros_ec_sensors_read_lpc -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x8544a88d cros_ec_sensors_core_read_avail -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x89aceb7b cros_ec_sensors_push_data -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x8f99495d cros_ec_sensors_ext_info +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0xdb55a5c6 iio_hw_consumer_alloc +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-triggered-buffer 0xd33380cd devm_iio_triggered_buffer_setup_ext +EXPORT_SYMBOL_GPL drivers/iio/buffer/kfifo_buf 0x145f2f69 devm_iio_kfifo_buffer_setup_ext +EXPORT_SYMBOL_GPL drivers/iio/chemical/bme680_core 0x53f17b3b bme680_core_probe +EXPORT_SYMBOL_GPL drivers/iio/chemical/sps30 0x266fb4a4 sps30_probe +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x16190ae8 cros_ec_sensors_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x40d88599 cros_ec_sensors_read_lpc +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x47140f6a cros_ec_sensors_core_write +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x5e1711da cros_ec_sensors_core_read_avail +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x98ad3f56 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 0xaefa24c5 cros_ec_sensors_read_cmd -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xf19532e9 cros_ec_sensors_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xf9be6e08 cros_ec_sensors_core_read -EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0x710a7832 ad5592r_remove -EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0xec24e7d7 ad5592r_probe -EXPORT_SYMBOL_GPL drivers/iio/dac/ad5686 0x3b5a1f98 ad5686_remove -EXPORT_SYMBOL_GPL drivers/iio/dac/ad5686 0x6abe0b9d ad5686_probe -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x6128d81e bmg160_core_remove -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xcf7ca70e bmg160_core_probe -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xd03c238e bmg160_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0x7d198ba5 fxas21002c_core_remove -EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0xa3b0237b fxas21002c_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0xc30b5d23 fxas21002c_core_probe -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x01f55ced __adis_write_reg -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x2ba8e640 adis_single_conversion -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x3a2b3833 devm_adis_setup_buffer_and_trigger -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x6a0f3401 __adis_update_bits_base -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x9bc49e34 adis_init -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xb9bceec4 __adis_check_status -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xbc6ea5da __adis_reset -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xbef31913 devm_adis_probe_trigger -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xcabefa3f adis_update_scan_mode -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xe440b646 __adis_read_reg -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xf919e471 __adis_initial_startup -EXPORT_SYMBOL_GPL drivers/iio/imu/bmi160/bmi160_core 0x20b2fd3f bmi160_core_probe -EXPORT_SYMBOL_GPL drivers/iio/imu/fxos8700_core 0x5b162a70 fxos8700_core_probe -EXPORT_SYMBOL_GPL drivers/iio/imu/inv_icm42600/inv-icm42600 0x200df8c9 inv_icm42600_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/imu/inv_icm42600/inv-icm42600 0x95d04967 inv_icm42600_core_probe -EXPORT_SYMBOL_GPL drivers/iio/imu/inv_icm42600/inv-icm42600 0xc9b7684c inv_icm42600_regmap_config -EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0x1d5ddbf0 inv_mpu_pmops -EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0x26e95173 inv_mpu_core_probe -EXPORT_SYMBOL_GPL drivers/iio/imu/st_lsm9ds0/st_lsm9ds0 0x5c57cbd9 st_lsm9ds0_remove -EXPORT_SYMBOL_GPL drivers/iio/imu/st_lsm9ds0/st_lsm9ds0 0x9a1895fa st_lsm9ds0_probe -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x05f272ff iio_enum_write -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x07dea1b2 iio_buffer_put -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x106c525b iio_device_id -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x112ab420 devm_iio_channel_get -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1237b1d4 iio_enum_read -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1f7cfcf9 iio_enum_available_read +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xa48c7022 cros_ec_sensors_core_read +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xd246fb69 cros_ec_sensors_push_data +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xd70949cb cros_ec_sensors_ext_info +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xe58e6808 cros_ec_motion_send_host_cmd +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xee9f1499 cros_ec_sensors_core_init +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0x48a2e83a ad5592r_remove +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0x963cf1f0 ad5592r_probe +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5686 0x066940eb ad5686_probe +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5686 0xcf78c60f ad5686_remove +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x2c81b222 bmg160_core_remove +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x6f97c088 bmg160_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xdde303b5 bmg160_core_probe +EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0x3c5c31ec fxas21002c_core_probe +EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0x7b50321b fxas21002c_core_remove +EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0x98294d97 fxas21002c_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x29284046 devm_adis_probe_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x29fe9aee adis_update_scan_mode +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x3d1ba7b7 __adis_check_status +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x52944712 __adis_write_reg +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x7d0b68a4 adis_init +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x96cd4ae5 devm_adis_setup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xb0bb68b8 __adis_reset +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xd3cb8ea2 __adis_read_reg +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xd837cebe adis_single_conversion +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xdd1313ef __adis_initial_startup +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xe32f492f __adis_update_bits_base +EXPORT_SYMBOL_GPL drivers/iio/imu/bmi160/bmi160_core 0x5f1fa008 bmi160_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/fxos8700_core 0x4ef032c8 fxos8700_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_icm42600/inv-icm42600 0x24e6ae32 inv_icm42600_regmap_config +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_icm42600/inv-icm42600 0x5167f1c8 inv_icm42600_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_icm42600/inv-icm42600 0x55bb30b7 inv_icm42600_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0x5b7a49f6 inv_mpu_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0xa2f638f6 inv_mpu_pmops +EXPORT_SYMBOL_GPL drivers/iio/imu/st_lsm9ds0/st_lsm9ds0 0x9bb92769 st_lsm9ds0_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/st_lsm9ds0/st_lsm9ds0 0xecab089f st_lsm9ds0_remove +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x03256e87 iio_enum_write +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0ddb941a iio_enum_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1573db25 devm_iio_device_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x16aed1e1 __devm_iio_trigger_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x18a0da45 iio_read_avail_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x24ce4cb1 devm_iio_channel_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x253a6c82 iio_read_channel_processed_scale EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x26f6b499 iio_str_to_fixpoint -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2c1b93cb iio_get_channel_type -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x39f2597b __devm_iio_trigger_register -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x464c2abf iio_read_channel_ext_info -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4758fcd8 iio_get_debugfs_dentry -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4d1983d5 iio_validate_scan_mask_onehot -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4d6e18f1 devm_iio_device_alloc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4d9429b2 __devm_iio_device_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2a502314 iio_read_avail_channel_attribute +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2fb9bc00 iio_write_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x33d9b15a iio_convert_raw_to_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x35117630 iio_read_channel_ext_info +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x35a13387 iio_write_channel_attribute +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3eb5ab30 devm_of_iio_channel_get_by_name +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3ee81708 iio_read_max_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x40477bef iio_channel_release_all EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4dce7dd4 iio_format_value -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5065c683 iio_show_mount_matrix -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5499bb64 iio_read_channel_processed -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x56ab9ea1 devm_iio_trigger_alloc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x63039249 iio_get_channel_ext_info_count -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x63269548 iio_channel_release_all -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x65626d0c iio_channel_release -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6eb83229 iio_read_channel_attribute -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6f0ec007 iio_map_array_register -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7b8380fa iio_read_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7fef3939 iio_channel_get_all -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x82ce5b36 iio_convert_raw_to_processed -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8305aee1 iio_read_channel_offset -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8844daa4 iio_write_channel_ext_info -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8a3fe35c iio_update_buffers -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x91835530 iio_buffer_get -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x91a14077 iio_read_channel_average_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x91e5a851 devm_iio_channel_get_all -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x97bbb0ec iio_device_release_direct_mode -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x990564eb iio_alloc_pollfunc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa09eab50 iio_map_array_unregister -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa6ee78ab iio_write_channel_attribute -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xab1e9231 iio_write_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xabed63df iio_read_avail_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb5b67add devm_of_iio_channel_get_by_name -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xbad8ac6c iio_read_channel_scale -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc474ec66 iio_push_to_buffers -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc8dac28b iio_read_avail_channel_attribute -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xca7608f6 of_iio_channel_get_by_name -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd6209d47 iio_channel_get -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd9e6e8a0 iio_device_claim_direct_mode -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe5efd282 iio_read_channel_processed_scale -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xef9a5567 iio_device_attach_buffer -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xfd288668 iio_read_max_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xfdf61156 iio_dealloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x599a16cd iio_buffer_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5c681e24 iio_read_channel_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5f23d460 iio_read_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6080887d iio_device_release_direct_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x61295b29 iio_update_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x65223020 iio_validate_scan_mask_onehot +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x65e06b0d iio_get_channel_type +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6c8d65a4 iio_buffer_put +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x73a084fa iio_dealloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7b8367f1 of_iio_channel_get_by_name +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x81da10a4 iio_channel_release +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x81f966d2 iio_map_array_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x873e2e85 iio_get_debugfs_dentry +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8d2e10c2 iio_channel_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8e407247 iio_show_mount_matrix +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x95856e11 iio_device_id +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9be48fe7 iio_channel_get_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa4d2a875 iio_read_channel_scale +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa5c99cde iio_read_channel_average_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa97ea126 devm_iio_channel_get_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb209496a iio_alloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb268ed62 iio_read_channel_attribute +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb8be399e iio_device_claim_direct_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xcb05eef8 __devm_iio_device_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xcc58828b iio_write_channel_ext_info +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xcd3e6471 iio_enum_available_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd3b75bc2 iio_push_to_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe54efe5c iio_device_attach_buffer +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf214e097 iio_get_channel_ext_info_count +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf9d1e17a iio_map_array_unregister +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xfad675d7 devm_iio_trigger_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xfc9d8e8f iio_read_channel_offset EXPORT_SYMBOL_GPL drivers/iio/magnetometer/rm3100-core 0x0a1424e0 rm3100_volatile_table -EXPORT_SYMBOL_GPL drivers/iio/magnetometer/rm3100-core 0x98472ca7 rm3100_common_probe +EXPORT_SYMBOL_GPL drivers/iio/magnetometer/rm3100-core 0x20219dff rm3100_common_probe EXPORT_SYMBOL_GPL drivers/iio/magnetometer/rm3100-core 0xaa911f08 rm3100_readable_table EXPORT_SYMBOL_GPL drivers/iio/magnetometer/rm3100-core 0xcc7209be rm3100_writable_table -EXPORT_SYMBOL_GPL drivers/iio/pressure/mpl115 0x878015b4 mpl115_probe -EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0x3281d16c zpa2326_probe -EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0x6614d555 zpa2326_isreg_precious -EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0x734e1bc0 zpa2326_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0x8efb5a57 zpa2326_isreg_writeable -EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0xa9cc5d78 zpa2326_remove -EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0xd802414a zpa2326_isreg_readable +EXPORT_SYMBOL_GPL drivers/iio/pressure/mpl115 0xf1096011 mpl115_probe +EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0x2d316b50 zpa2326_probe +EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0x6a95148e zpa2326_isreg_precious +EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0xcca293c6 zpa2326_isreg_writeable +EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0xda6bb984 zpa2326_remove +EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0xf077ab7e zpa2326_isreg_readable +EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0xf2fd6020 zpa2326_pm_ops EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x1a5f6b08 rtrs_iu_post_send -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x1b75c58e rtrs_send_hb_ack -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x2643cefe rtrs_cq_qp_destroy -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x2d953acd rtrs_init_hb -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x3f381112 rtrs_stop_hb -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x4102f5eb rtrs_iu_post_recv -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x4d4031c0 rtrs_cq_qp_create -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x846a3f44 rtrs_post_recv_empty -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x87f54f84 rtrs_start_hb -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xb54ad258 rtrs_iu_free -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xdb93e1bf rtrs_iu_alloc -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xff70e3b9 rtrs_iu_post_rdma_write_imm -EXPORT_SYMBOL_GPL drivers/input/ff-memless 0xb58cbb4f input_ff_create_memless -EXPORT_SYMBOL_GPL drivers/input/matrix-keymap 0xf4bcf8e3 matrix_keypad_parse_properties +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x085f25e7 rtrs_cq_qp_destroy +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x3b6edadc rtrs_send_hb_ack +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x5754c194 rtrs_post_recv_empty +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x6525f589 rtrs_init_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x73ceb2f3 rtrs_cq_qp_create +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x78f7015c rtrs_iu_post_recv +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x7ac52080 rtrs_iu_alloc +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x841a9e48 rtrs_stop_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x90f9ceb5 rtrs_iu_post_rdma_write_imm +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xba76179d rtrs_iu_post_send +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xd6229193 rtrs_iu_free +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xf763614a rtrs_start_hb +EXPORT_SYMBOL_GPL drivers/input/ff-memless 0x5b7accd3 input_ff_create_memless +EXPORT_SYMBOL_GPL drivers/input/matrix-keymap 0xe3fc35e8 matrix_keypad_parse_properties +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x44053bb9 adxl34x_probe EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x49a4fcbd adxl34x_remove EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x66535a18 adxl34x_suspend -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x974e28ec adxl34x_probe EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xe4586827 adxl34x_resume -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x0ebcf064 rmi_driver_resume -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x1b157b7a rmi_2d_sensor_abs_report -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x20118807 rmi_2d_sensor_of_probe -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x52556a95 rmi_2d_sensor_abs_process -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x5fc532d0 rmi_dbg -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x7403d713 rmi_set_attn_data -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x848182b5 rmi_of_property_read_u32 -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x8f729acd rmi_register_transport_device -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x941b3ee7 rmi_2d_sensor_rel_report -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xa6fa7120 rmi_2d_sensor_configure_input -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xc16e8058 rmi_unregister_function_handler -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xc3023ec5 __rmi_register_function_handler -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xd2f2e749 rmi_driver_suspend -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x217d97dc cyttsp4_remove -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x24370f98 cyttsp4_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x2a9e57cf cyttsp4_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x5fa6797d cyttsp_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x7dd0e1ee cyttsp_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x3b922e97 cyttsp_i2c_write_block_data -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x40d30858 cyttsp_i2c_read_block_data -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x29937f02 tsc200x_remove -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x499efcc9 tsc200x_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xbba9dd4c tsc200x_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xd53c3183 tsc200x_regmap_config -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x0870b4c8 wm9713_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x0d42a73e wm97xx_set_suspend_mode -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x49e70802 wm97xx_get_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x6081c631 wm97xx_read_aux_adc -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x7c9c90ea wm97xx_register_mach_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x8b10432c wm97xx_unregister_mach_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xb83a572e wm97xx_config_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xc4dab456 wm9712_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xc731de72 wm97xx_reg_write -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xd964a90c wm9705_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xdce6d7ec wm97xx_set_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xe68b4ee2 wm97xx_reg_read -EXPORT_SYMBOL_GPL drivers/interconnect/imx/imx-interconnect 0x84ad416b imx_icc_unregister -EXPORT_SYMBOL_GPL drivers/interconnect/imx/imx-interconnect 0xbfd15138 imx_icc_register +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x0422d38d rmi_register_transport_device +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x0be8ce4b __rmi_register_function_handler +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x0f579e87 rmi_set_attn_data +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x0fc08369 rmi_2d_sensor_abs_report +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x16fb7eb1 rmi_2d_sensor_of_probe +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x1a72ef44 rmi_driver_suspend +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x218a6532 rmi_driver_resume +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x4c348bd1 rmi_unregister_function_handler +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x561728d1 rmi_2d_sensor_rel_report +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x869ac72a rmi_of_property_read_u32 +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x8c4dcb57 rmi_2d_sensor_abs_process +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xc5b59dba rmi_dbg +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xf44867f9 rmi_2d_sensor_configure_input +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x6a223f8c cyttsp4_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xa838d15f cyttsp4_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xb1523fc5 cyttsp4_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x142bb06f cyttsp_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x302a0121 cyttsp_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x00a30a12 cyttsp_i2c_read_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0xd85b071a cyttsp_i2c_write_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x0b55ee14 tsc200x_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x7948fc83 tsc200x_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xc20dfebb tsc200x_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xf7785518 tsc200x_regmap_config +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x00ecc1ce wm97xx_set_suspend_mode +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x11655bc9 wm97xx_reg_read +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x1b131351 wm97xx_config_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x2d95a5c4 wm9713_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x57fa344b wm97xx_read_aux_adc +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x8021dc17 wm97xx_set_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x87b99c3f wm97xx_reg_write +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xaeec6cfd wm97xx_unregister_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xb6060fb1 wm97xx_register_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xe13fa55a wm9712_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xe25890ee wm97xx_get_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xfc81b800 wm9705_codec +EXPORT_SYMBOL_GPL drivers/interconnect/imx/imx-interconnect 0xb975b86b imx_icc_unregister +EXPORT_SYMBOL_GPL drivers/interconnect/imx/imx-interconnect 0xf25f3ec0 imx_icc_register 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 0xc3a71511 of_bcm_voter_get -EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x3a7d329f qcom_icc_rpmh_remove -EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x785cd18c qcom_icc_aggregate -EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x967e1940 qcom_icc_bcm_init -EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0xa63374ee qcom_icc_rpmh_probe -EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0xaf3bbb35 qcom_icc_pre_aggregate -EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0xe969df58 qcom_icc_xlate_extended -EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0xff886327 qcom_icc_set +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-bcm-voter 0x978bace7 of_bcm_voter_get +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x028ea1e9 qcom_icc_set +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x08622fc4 qcom_icc_aggregate +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x0f87eee5 qcom_icc_rpmh_remove +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x4b42c17e qcom_icc_bcm_init +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x8ccc643f qcom_icc_rpmh_probe +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x961ff315 qcom_icc_xlate_extended +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0xa245f761 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 0x003f9783 ipack_driver_register -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x333212a8 ipack_device_init -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x452a3591 ipack_get_device -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x48fd0c87 ipack_device_add -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x4ea36939 ipack_bus_register -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x6d1c04d0 ipack_device_del -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x96f6b28e ipack_driver_unregister -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xa0995c23 ipack_bus_unregister -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xdd311389 ipack_put_device -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x2375af45 led_get_flash_fault -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x4021e2c7 led_classdev_flash_unregister -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x49f00a21 led_set_flash_timeout -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x4b001f25 led_set_flash_brightness -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x60604d3d devm_led_classdev_flash_register_ext -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x7e48f0cf devm_led_classdev_flash_unregister -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xa6660cf1 led_update_flash_brightness -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xe6d90767 led_classdev_flash_register_ext -EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x0c3f177a led_classdev_multicolor_unregister -EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x3089795d devm_led_classdev_multicolor_register_ext -EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x3687474d led_classdev_multicolor_register_ext -EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x57cbb35e led_mc_calc_color_components -EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x7e10fa0e devm_led_classdev_multicolor_unregister -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x03f2a0cf lp55xx_update_bits -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x0cc936a1 lp55xx_unregister_sysfs -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x14e99bdd lp55xx_register_leds -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x5b017759 lp55xx_of_populate_pdata -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x72d503aa lp55xx_register_sysfs -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x8c49f4f7 lp55xx_read -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x9a0b32ca lp55xx_init_device -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xa030b7f0 lp55xx_deinit_device -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xefd06556 lp55xx_is_extclk_used -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xf6c3c5c8 lp55xx_write +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x0943d799 ipack_driver_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x232f3360 ipack_put_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x27ebec3f ipack_device_add +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x460ce8bd ipack_bus_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x78d4d3a0 ipack_bus_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xaf920808 ipack_device_del +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xc92f683a ipack_get_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xf0b99e36 ipack_device_init +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xff917ba2 ipack_driver_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x0a88b443 devm_led_classdev_flash_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x415ed975 led_get_flash_fault +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x4f5b799e led_update_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x5edc4623 devm_led_classdev_flash_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x9dd6b65d led_set_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xb16109b9 led_classdev_flash_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xd8bf99b0 led_set_flash_timeout +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xf60ba832 led_classdev_flash_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x14084e08 led_classdev_multicolor_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x2237bc59 devm_led_classdev_multicolor_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x6d2a923a led_classdev_multicolor_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0xaedf8994 devm_led_classdev_multicolor_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0xb1bbfd09 led_mc_calc_color_components +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x2bc011a2 lp55xx_of_populate_pdata +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x73ef3108 lp55xx_init_device +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x7cfa4bb6 lp55xx_register_sysfs +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x862b6c0e lp55xx_register_leds +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x92ff7436 lp55xx_is_extclk_used +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xa042a9c8 lp55xx_read +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xacd12a9b lp55xx_write +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xd7e5e965 lp55xx_update_bits +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xe4a2d7f9 lp55xx_deinit_device +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xeb0d012c lp55xx_unregister_sysfs EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-audio 0x3bd45b0d ledtrig_audio_set EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-audio 0xce593c22 ledtrig_audio_get EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-camera 0x749e05f2 ledtrig_flash_ctrl EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-camera 0x7903e46e ledtrig_torch_ctrl -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x01e62715 __traceiter_bcache_btree_node_free 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 0x06cfad41 __traceiter_bcache_read 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 0x0d2fdf5c __traceiter_bcache_journal_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0e769ded __traceiter_bcache_invalidate -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0ef51792 __traceiter_bcache_request_start EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x15f3de09 __SCK__tp_func_bcache_read_retry -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x16aa7c36 __traceiter_bcache_btree_set_root 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 @@ -13124,105 +13158,108 @@ 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 0x2a4498be __traceiter_bcache_read EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2af60833 __SCK__tp_func_bcache_writeback_collision -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3072a094 __traceiter_bcache_btree_read EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3257d343 __tracepoint_bcache_gc_copy -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3ca4e2c5 __traceiter_bcache_btree_node_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x46bb26ef __traceiter_bcache_btree_node_alloc 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 0x488758de __traceiter_bcache_btree_node_compact EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4a2d1241 __SCK__tp_func_bcache_btree_node_compact 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 0x54b1842c __traceiter_bcache_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x59515a34 __traceiter_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x59e7c700 __traceiter_bcache_btree_node_free EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5cc8cb86 __tracepoint_bcache_btree_insert_key EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5d9c8fc8 __SCK__tp_func_bcache_cache_insert EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 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 0x625eacfa __traceiter_bcache_gc_end 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 0x67f1f102 __traceiter_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6881290b __traceiter_bcache_btree_cache_cannibalize EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x690dd415 __tracepoint_bcache_btree_node_alloc +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6d842bf0 __traceiter_bcache_journal_full EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6e74dca7 __SCK__tp_func_bcache_btree_node_free -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x747d5eeb __traceiter_bcache_btree_node_compact +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7074d895 __traceiter_bcache_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x75a7a3f4 __traceiter_bcache_read_retry 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 0x7d8834e2 __traceiter_bcache_btree_read 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 0x8ad20d61 __SCK__tp_func_bcache_request_start -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8b3ccb33 __traceiter_bcache_journal_entry_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8e875da6 __traceiter_bcache_btree_node_split EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x902cb523 __tracepoint_bcache_gc_copy_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x91bc7b69 __traceiter_bcache_btree_node_alloc 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 0x9ce21c84 __SCK__tp_func_bcache_journal_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9de85c72 __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 0xa16ac1c1 __traceiter_bcache_gc_start EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa187023e __SCK__tp_func_bcache_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa1e90c51 __traceiter_bcache_btree_insert_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa35121c8 __traceiter_bcache_gc_start EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa64134e4 __SCK__tp_func_bcache_journal_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa70ac7bb __traceiter_bcache_read_retry +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa7672ea7 __traceiter_bcache_request_end EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa842a5c8 __SCK__tp_func_bcache_invalidate -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa9553854 __traceiter_bcache_bypass_sequential -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xabfce509 __traceiter_bcache_btree_cache_cannibalize EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xad6440b4 __traceiter_bcache_gc_copy -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb28dcf9a __traceiter_bcache_journal_write EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb5a62a8c __traceiter_bcache_cache_insert -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb80f5a50 __traceiter_bcache_btree_insert_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb65b01b7 __traceiter_bcache_btree_set_root 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 0xbcd801c4 __traceiter_bcache_bypass_congested +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xbfc008d0 __traceiter_bcache_bypass_congested EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc1857470 __tracepoint_bcache_bypass_congested +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc51ab40a __traceiter_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc62a289e __traceiter_bcache_journal_write 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 0xcb0a37ae __traceiter_bcache_request_end EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xce48d6f4 __tracepoint_bcache_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd0203065 __traceiter_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xcfb64eb3 __traceiter_bcache_bypass_sequential EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xda06fe86 __SCK__tp_func_bcache_btree_node_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xdbab70b6 __traceiter_bcache_gc_end 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 0xe270a14f __traceiter_bcache_journal_entry_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe8d9e8b3 __traceiter_bcache_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xeaafcdcb __traceiter_bcache_btree_node_alloc_fail EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xec29e22a __traceiter_bcache_gc_copy_collision EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xec92a163 __SCK__tp_func_bcache_btree_cache_cannibalize EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xed37c90e __tracepoint_bcache_cache_insert EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xee55d047 __tracepoint_bcache_journal_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xef4d1c68 __traceiter_bcache_invalidate EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xef7eec02 __tracepoint_bcache_btree_gc_coalesce 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 0x10a4b19d dm_cell_lock_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x035592e3 dm_bio_prison_free_cell_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x04479cd3 dm_cell_error EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x17dd39d6 dm_deferred_set_create -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x180e8240 dm_cell_promote_or_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x1c2c81f5 dm_cell_get_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x268bc97c dm_cell_quiesce_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2b01bfcd dm_bio_prison_alloc_cell_v2 EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2eb01e04 dm_deferred_set_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x5b966b17 dm_cell_release_no_holder -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x630fe123 dm_bio_prison_alloc_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x31fabaa7 dm_cell_unlock_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x5d101764 dm_bio_prison_alloc_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x6348b2c1 dm_cell_visit_release EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x6791a44e dm_deferred_entry_dec EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x753e20b2 dm_bio_prison_create -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x7ef8b50b dm_bio_prison_free_cell_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xa24383c4 dm_cell_lock_promote_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xa51f46e6 dm_bio_prison_free_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xa68683e1 dm_cell_put_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x75a3b333 dm_get_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x8461d8e8 dm_cell_promote_or_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x9ad658bf dm_bio_prison_free_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xa1d08e64 dm_cell_put_v2 EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xace9b57b dm_bio_prison_destroy_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb5f21023 dm_cell_release_no_holder EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb6d5c65d dm_deferred_set_add_work EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb70b342a dm_bio_prison_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb82409ec dm_cell_visit_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xc4e368a7 dm_cell_error +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xbeaaa3d6 dm_bio_detain +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xc98e3843 dm_cell_lock_v2 EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xca2e3a88 dm_deferred_entry_inc -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xced4a7ef dm_cell_unlock_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xcffc38af dm_bio_detain +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xd6fa4276 dm_cell_get_v2 EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xd99e003d dm_bio_prison_create_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xe549ecd7 dm_bio_prison_alloc_cell_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xf137c9b9 dm_get_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xf2456e71 dm_cell_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xdfe2bda9 dm_cell_quiesce_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xfa7374b2 dm_cell_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xfff696b6 dm_cell_lock_promote_v2 EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x0ad0dc4f dm_bufio_mark_buffer_dirty EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x111ab12a dm_bufio_mark_partial_buffer_dirty EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x24772bfe dm_bufio_get -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x26655971 dm_bufio_client_create EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x2e0774dc dm_bufio_get_block_number EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6aebce95 dm_bufio_issue_discard EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6d3f57bd dm_bufio_get_client @@ -13244,44 +13281,45 @@ 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 0xf8b2bb33 dm_bufio_client_create EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x0efbca4c btracker_promotion_already_present +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x38e05ae3 dm_cache_policy_register EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x5adc2807 btracker_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x5c0b5ab5 dm_cache_policy_register EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x5de611a9 btracker_nr_writebacks_queued +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x73ffbb89 dm_cache_policy_unregister EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x7890d535 dm_cache_policy_get_name EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x87bee547 btracker_queue EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x890723f7 dm_cache_policy_get_version 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 0xa9922dba dm_cache_policy_unregister EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xadbefda4 dm_cache_policy_destroy EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xbf1a2968 btracker_create EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xccfe6409 btracker_nr_demotions_queued EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xcf8c2590 dm_cache_policy_get_hint_size EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xe1bdae47 dm_cache_policy_create -EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x91b49b11 dm_register_path_selector -EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0xefe2936e dm_unregister_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x3faed170 dm_unregister_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x904e1a45 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 0x1b0978c5 dm_rh_bio_to_region +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x0cc61701 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 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 0x6f2a7d23 dm_region_hash_create +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x6a8176b6 dm_region_hash_create EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7774620f dm_rh_stop_recovery EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7d053fc5 dm_rh_start_recovery EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7d5e1815 dm_rh_get_region_key -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x8f619584 dm_rh_delay EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa53387c7 dm_rh_flush +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa543a207 dm_rh_delay +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa627f919 dm_rh_bio_to_region EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa83588eb dm_rh_recovery_end EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xbe38a431 dm_rh_recovery_prepare -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xc2f95c1e dm_rh_mark_nosync +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xd108752a dm_rh_mark_nosync EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xd8aa4284 dm_rh_region_context EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xf92b8a3d dm_rh_get_region_size -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfa6a3b4c dm_rh_inc_pending +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfbdb468d dm_rh_inc_pending EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfd93482e dm_rh_recovery_in_flight -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xffc7382e dm_rh_dirty_log 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 0x11fbbe02 dm_bitset_set_bit EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x15085586 dm_btree_cursor_begin @@ -13304,7 +13342,6 @@ EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3d6961ed dm_btree_insert EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x46768dbf dm_btree_remove_leaves EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x48e323be dm_bm_unlock -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x49f01a30 dm_block_manager_create EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x4f477261 dm_bm_checksum EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5375ca71 dm_bm_write_lock EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5475ba9e dm_block_location @@ -13341,6 +13378,7 @@ EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x9e798e22 dm_bm_set_read_only EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa29d4c0c dm_bitset_cursor_skip EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa2a74861 dm_array_set_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa81200c9 dm_block_manager_create EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa9cf611b dm_btree_insert_notify EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xb3d7482b dm_bitset_new EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xb6879c01 dm_btree_lookup_next @@ -13356,77 +13394,77 @@ EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xe8438eb5 dm_array_del EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf82dba90 dm_btree_empty EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xfce51d79 dm_array_empty -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x007b8b3e cec_transmit_attempt_done_ts -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x06af5b6f cec_s_phys_addr_from_edid -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x0dfc0e57 cec_register_adapter -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x14ccf898 cec_pin_allocate_adapter -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x183c021f cec_s_phys_addr -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x2612504a cec_notifier_cec_adap_unregister -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x29165387 cec_pin_changed -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x2a0bfbcf cec_delete_adapter -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x3a573d09 cec_queue_pin_5v_event -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x3bb99c63 cec_fill_conn_info_from_drm +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x3a03e0c9 cec_delete_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x3bf4ea22 cec_transmit_msg +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x3c9be05b cec_queue_pin_hpd_event +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x41c4521d cec_allocate_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x50c02a0e cec_s_log_addrs +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x50f92f07 cec_fill_conn_info_from_drm +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x5e3f4c2f cec_unregister_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x619cb199 cec_s_conn_info +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x64790cef cec_queue_pin_5v_event EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x67e1dfdc cec_notifier_set_phys_addr_from_edid -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x75ab5caf cec_notifier_conn_register -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x76178032 cec_notifier_cec_adap_register -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x80b09528 cec_queue_pin_cec_event -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x81050937 cec_s_conn_info -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x865cc559 cec_received_msg_ts -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x9925fefe cec_transmit_msg +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x6f130412 cec_s_phys_addr +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x74c9f57a cec_transmit_done_ts +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x82d1e542 cec_notifier_parse_hdmi_phandle +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x894b6591 cec_notifier_conn_register +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x8af87b94 cec_pin_changed EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xa01fbb6b cec_notifier_set_phys_addr -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xab3236a2 cec_s_log_addrs EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xaee236c6 cec_notifier_conn_unregister +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xb30a52a6 cec_transmit_attempt_done_ts +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xb4b916de cec_pin_allocate_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xbd71f660 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 0xcae24ebc cec_unregister_adapter -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xd29b2879 cec_queue_pin_hpd_event -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xddfbfd27 cec_notifier_parse_hdmi_phandle -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xe5bd64a0 cec_allocate_adapter -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xe68c029c cec_transmit_done_ts +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xd069a23f cec_queue_pin_cec_event +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xdbd0d2fb cec_received_msg_ts +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xe1e38adc cec_notifier_cec_adap_unregister +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xe584f1a6 cec_notifier_cec_adap_register +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xeef50ac9 cec_s_phys_addr_from_edid EXPORT_SYMBOL_GPL drivers/media/common/b2c2/b2c2-flexcop 0x66c0289a b2c2_flexcop_debug -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x2cef91b9 saa7146_register_extension -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x57701dcd saa7146_pgtable_free -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x72da0aa7 saa7146_vmalloc_build_pgtable -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x7a82dc34 saa7146_vfree_destroy_pgtable -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xc61d3164 saa7146_unregister_extension -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xd7d1eb5a saa7146_setgpio -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xdc7fe509 saa7146_pgtable_build_single +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x20a59135 saa7146_pgtable_alloc +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x2876ac46 saa7146_i2c_adapter_prepare +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x3da23e54 saa7146_pgtable_free +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x5f664389 saa7146_vfree_destroy_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x82b53404 saa7146_wait_for_debi_done +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x89056404 saa7146_register_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xb6b0f420 saa7146_unregister_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xc0632c64 saa7146_setgpio +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xce4f0c1f saa7146_pgtable_build_single EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe3cd9b5c saa7146_debug -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xf2e58606 saa7146_pgtable_alloc -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xf5d2ddc2 saa7146_wait_for_debi_done -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xf9b3931b saa7146_i2c_adapter_prepare -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x1df793b9 saa7146_stop_preview -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x369c9117 saa7146_unregister_device -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x4d3eea3a saa7146_set_hps_source_and_sync -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x636b550e saa7146_register_device -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x971e1569 saa7146_vv_init -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xe6045965 saa7146_vv_release -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xf854dccc saa7146_start_preview -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x10773b9f smscore_register_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x115c3b3b smscore_register_client -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x11a95dd6 smscore_get_device_mode -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x2053046b smscore_putbuffer +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xeba388be saa7146_vmalloc_build_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x568d4331 saa7146_register_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xa44f1f70 saa7146_stop_preview +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xb740b5e8 saa7146_start_preview +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xe5cf2ac8 saa7146_set_hps_source_and_sync +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xefcdea72 saa7146_vv_init +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xf0cccdfb saa7146_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xf8e4c0f7 saa7146_vv_release +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x061a40e0 smscore_unregister_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x0fc3f866 sms_board_setup +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x1f978010 sms_board_power EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x21e36bf2 smscore_registry_getmode -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x2b3a04a7 smscore_get_board_id -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x2ce7f590 sms_board_led_feedback +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x2d9a383d sms_board_lna_control +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x341ff1b4 smscore_getbuffer 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 0x45284ae9 smsendian_handle_rx_message -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x5e63ba32 smscore_unregister_hotplug -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x61fd6970 smscore_set_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x6c557196 smscore_register_hotplug EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x74ee9098 sms_board_load_modules EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7c576277 smsendian_handle_message_header +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x820d317e sms_board_event EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x844539ae sms_get_board -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x8e2b7996 smscore_register_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x8f46553e smscore_get_device_mode EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x99a81ab3 smsclient_sendrequest -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x9b9a0836 smscore_start_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x9bc50587 smscore_getbuffer -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xad349875 sms_board_event -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xad73a210 sms_board_lna_control -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xae039bee smscore_unregister_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xb164cdf0 sms_board_power +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xa049c852 smscore_register_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xacfd9a59 smscore_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xb4c0fe64 smscore_start_device EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbbdb5c42 smscore_unregister_client -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xcd95d562 smscore_onresponse -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xce1f6e7c sms_board_setup +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xc564ba0e sms_board_led_feedback +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xe2f53237 smscore_onresponse +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xe47ef42c smscore_register_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xe7e8929b smscore_get_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xec4f3cf0 smscore_putbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xef4ec5e2 smscore_set_board_id EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x03005a48 tpg_alloc EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x040dc7cd tpg_aspect_strings EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x4d1d285c tpg_init @@ -13444,411 +13482,411 @@ EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xce8159bb tpg_pattern_strings EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xf4aef3a4 tpg_gen_text EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xf65c5e46 tpg_fillbuffer -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x010834ae __traceiter_vb2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x0543a3d9 vb2_wait_for_all_buffers +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x01d961c6 vb2_plane_cookie 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 0x1ab474ca vb2_thread_start -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x1df353af vb2_core_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x1ebe4872 vb2_thread_stop +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x0ab56c60 vb2_plane_vaddr +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x0c86806c vb2_core_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x0f17d3b5 vb2_buffer_done 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 0x2609db39 __traceiter_vb2_buf_done -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x277cb1dc __traceiter_vb2_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x3d66ecfc vb2_core_reqbufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x4eb8887a vb2_read -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x527f231f vb2_request_buffer_cnt +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x3066474a vb2_core_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x34c2e125 vb2_discard_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x357a6bb7 vb2_thread_start +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x3923d7e9 vb2_request_object_is_buffer +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x3b952c15 vb2_queue_error +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x3c59e071 vb2_read +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x47340305 vb2_core_expbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x4835e094 vb2_core_queue_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x4bd4e323 vb2_core_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x52ca6085 vb2_core_dqbuf EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x630b24d3 __tracepoint_vb2_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x6cc3c4f6 vb2_core_querybuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x7f3ad18a vb2_request_object_is_buffer -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x83c59f95 vb2_core_queue_release -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x8a2648f1 vb2_write -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x8f869c1d vb2_core_streamon -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x9b21e026 vb2_core_streamoff -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x9cd96f2e vb2_buffer_done -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xa0e6822a vb2_core_expbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x64806ef3 __traceiter_vb2_buf_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x6ad0b7d3 vb2_wait_for_all_buffers +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x703f2d87 vb2_thread_stop +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x85676263 vb2_core_querybuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x8715e2a5 vb2_core_queue_init +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x8c515839 vb2_core_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x9228b59b vb2_mmap +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x9889c83f vb2_core_streamoff +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x9f4581a7 vb2_core_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xac3a740c vb2_core_create_bufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xb38002a5 __traceiter_vb2_qbuf EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xb6f4b031 __SCK__tp_func_vb2_qbuf EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xb9d2df39 __SCK__tp_func_vb2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xbc89ff56 vb2_core_create_bufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xc0d9a4b6 vb2_plane_vaddr -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xc0f6cfad vb2_core_queue_init -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xc75c4225 vb2_queue_error +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xbd2a489b vb2_request_buffer_cnt 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 0xcca5b6f7 vb2_mmap -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xcec78e97 __traceiter_vb2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xd800afa7 vb2_discard_done -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xe1cdd76e vb2_plane_cookie -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xe200cd7a vb2_core_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xe49b9f3a vb2_core_poll -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xf3ede79c vb2_core_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xe0e57dc4 vb2_write +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xe5abedf3 __traceiter_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xf311e780 __traceiter_vb2_dqbuf EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xf703a3f9 __tracepoint_vb2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0x8bb019f9 vb2_dma_contig_memops -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0xdad5481d vb2_dma_contig_set_max_seg_size -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-sg 0x41ed828f vb2_dma_sg_memops -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-memops 0x559b5356 vb2_common_vm_ops -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x0503bc80 _vb2_fop_release -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x17d63112 vb2_ioctl_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x1f1a1472 vb2_ioctl_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x211ea247 vb2_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x293dc257 vb2_fop_write -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x32c9e885 vb2_ops_wait_prepare -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x3da37452 vb2_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x45a94dd0 vb2_streamon -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x45c0fbfd vb2_queue_release -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x5645a67e vb2_queue_init -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x57e27792 vb2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x57e33a4a vb2_ioctl_streamon -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x59a0b051 vb2_poll -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x5d23f6a4 vb2_streamoff -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x694c6549 vb2_reqbufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x71a9b67b vb2_ioctl_expbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x79c56265 vb2_create_bufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x7ed91f4a vb2_video_unregister_device -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x82b8bfbd vb2_ioctl_querybuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x87073440 vb2_ioctl_streamoff -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x87409489 vb2_ioctl_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x940fe9ce vb2_fop_release -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x974196e2 vb2_fop_read -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xb2300214 vb2_request_validate -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xbc917de0 vb2_fop_poll -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xbd818e9d vb2_fop_mmap -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xc2807da3 vb2_ioctl_reqbufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xc5ddc2c6 vb2_ioctl_create_bufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xc8fe149b vb2_queue_change_type -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xcfb22dfa vb2_expbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xdd05b639 vb2_queue_init_name -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xdff7c9d2 vb2_find_timestamp -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xe6dfd97b vb2_ops_wait_finish -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xf6ee5392 vb2_request_queue -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-vmalloc 0x049b090e vb2_vmalloc_memops -EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0x19b30a23 dvb_module_release -EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0xa0163d33 dvb_module_probe -EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0xf8ec764e dvb_create_media_graph -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/as102_fe 0x79f97557 as102_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24117 0xa5197b3d cx24117_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/gp8psk-fe 0x26b2604f gp8psk_fe_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mxl5xx 0x7da5d20f mxl5xx_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0910 0xa0fc6dbe stv0910_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv6111 0xc90cd028 stv6111_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0xc3646c97 tda18271c2dd_attach -EXPORT_SYMBOL_GPL drivers/media/i2c/aptina-pll 0xa7e57706 aptina_pll_calculate -EXPORT_SYMBOL_GPL drivers/media/i2c/ccs-pll 0x4d91761c ccs_pll_calculate -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x08b7dcb5 max9271_set_address -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x0a238e8f max9271_configure_gmsl_link -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x0cab4e0f max9271_set_gpios -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x2f7dacd5 max9271_set_serial_link -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x3a511a52 max9271_set_deserializer_address -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x58e3932e max9271_enable_gpios -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x6de0ae15 max9271_verify_id -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x79083db9 max9271_wake_up -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x7dcac286 max9271_clear_gpios -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xca86614e max9271_disable_gpios -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xd6b44463 max9271_set_translation -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xec3622db max9271_set_high_threshold -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xfdb3e6eb max9271_configure_i2c -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x0001fbb3 __media_entity_setup_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x004d75d3 __media_remove_intf_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x078d3748 __media_pipeline_stop -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x0d7f1fa7 media_entity_remove_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x0e18974d media_get_pad_index -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x18a30802 __media_pipeline_start -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x2044ad2f media_request_object_put -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x204cb195 media_request_object_unbind -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x2b5ed544 media_devnode_remove -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x361935b8 media_request_object_complete -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x3abec25b media_create_intf_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x3ea433a3 media_devnode_create -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x4e024238 media_request_object_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x4f043b30 media_entity_get_fwnode_pad -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x5e31dd29 media_remove_intf_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x6b2ece58 media_entity_pads_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x6cc7be48 media_device_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x6f45dbcc media_request_object_find -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x6f979f1a media_request_put -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x769893e8 media_device_cleanup -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x82575c25 media_remove_intf_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x8cfa5878 media_device_pci_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x90f7d717 media_create_pad_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x9355720e media_request_get_by_fd -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x94163f48 media_entity_setup_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x9b6f788f media_graph_walk_start -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x9be6b0f9 media_entity_find_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xa15ed43c media_entity_remote_pad -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xa28ee420 media_graph_walk_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xac0782c0 media_device_unregister -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xac631caa media_graph_walk_cleanup -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xaf2eebdf __media_entity_remove_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc15b7b38 media_device_delete -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc1a2c295 __media_device_register -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc7ed24b6 media_pipeline_stop -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd892e32d __media_remove_intf_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xdb4b11ea media_pipeline_start -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xde71663d __media_device_usb_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe1fb7041 media_create_pad_link +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0x2180334b vb2_dma_contig_memops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0x7ad69eea vb2_dma_contig_set_max_seg_size +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-sg 0xa557179e vb2_dma_sg_memops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-memops 0xc85b36ef vb2_common_vm_ops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x159d611a vb2_ops_wait_prepare +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x19862f9c vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x277c28b1 vb2_create_bufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x2a4dce20 vb2_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x2ccb5e22 vb2_queue_init_name +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x30762780 vb2_expbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x3591522d _vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x3e8bd7ca vb2_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x3f71500e vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x41b236f8 vb2_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x42230230 vb2_video_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x4a75cf49 vb2_request_validate +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x5312b0bf vb2_queue_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x62ddf066 vb2_queue_init +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x6944bb14 vb2_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x6a788fc5 vb2_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x6cced80c vb2_streamoff +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x70b5ed1a vb2_queue_change_type +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x80ffe984 vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x95cb9629 vb2_find_timestamp +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x9e44ff72 vb2_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xb6bbe2b7 vb2_fop_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xbdc4bfc4 vb2_ops_wait_finish +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xcd0d8dbf vb2_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xcec48c2c vb2_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xd8f2b0fc vb2_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xdd2476e0 vb2_fop_read +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xe6b8fc9e vb2_request_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xe76ff6d3 vb2_fop_write +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xe9abbf32 vb2_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xf0c7e9dd vb2_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xf3ab990c vb2_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xf56ec707 vb2_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xfa75ecda vb2_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-vmalloc 0x6ecf9369 vb2_vmalloc_memops +EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0x514e2e0d dvb_create_media_graph +EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0x854fdf03 dvb_module_release +EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0xab209614 dvb_module_probe +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/as102_fe 0xcd6b7599 as102_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24117 0x772c4f06 cx24117_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/gp8psk-fe 0x8234ad99 gp8psk_fe_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mxl5xx 0x2775bb0e mxl5xx_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0910 0x1f90da4a stv0910_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv6111 0x32803041 stv6111_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0x9e5ee201 tda18271c2dd_attach +EXPORT_SYMBOL_GPL drivers/media/i2c/aptina-pll 0xdb613113 aptina_pll_calculate +EXPORT_SYMBOL_GPL drivers/media/i2c/ccs-pll 0x1ec960bd ccs_pll_calculate +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x2359de7a max9271_set_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x37377de8 max9271_set_address +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x44b83ffc max9271_enable_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x68a3ab99 max9271_set_deserializer_address +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x823b70d3 max9271_verify_id +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xa1f9a86a max9271_configure_i2c +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xa76c6af5 max9271_set_serial_link +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xbb6a2b7c max9271_configure_gmsl_link +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xc04aa22b max9271_clear_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xcaa02897 max9271_set_high_threshold +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xcf9a0b84 max9271_disable_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xe1464f26 max9271_set_translation +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xfe7e4b55 max9271_wake_up +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x012f7eda media_entity_find_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x111c52a0 media_graph_walk_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x118a438d media_request_object_bind +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x1e27e33d media_request_object_unbind +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x1e5a4e67 __media_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x2db74ea8 media_device_delete +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x3609b480 __media_device_usb_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x4026e69d media_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x55291f26 media_devnode_remove +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x5606a932 media_device_unregister +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x5a21fbc7 media_device_unregister_entity +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x5d04ea5f __media_remove_intf_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x5d04fc9b media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x5ee2a7db media_device_register_entity +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x6210e38c media_entity_get_fwnode_pad +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x63831c5f media_graph_walk_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x6ad153b2 __media_device_register +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x6c42b3bf media_graph_walk_cleanup +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7fb56914 media_remove_intf_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x8d6862ce media_devnode_create +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x911b3aa5 media_request_object_find +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x933d4445 media_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x97675c3c media_request_object_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x9a04a86b __media_remove_intf_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x9c8d7161 media_entity_remote_pad +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x9e2117c5 media_create_pad_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xa417726c media_create_intf_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xa578ff13 media_device_unregister_entity_notify +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xb00a245d media_device_usb_allocate +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xb0eda557 media_request_object_complete +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xba1d4764 media_create_pad_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc29f2046 media_device_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc732cfc1 media_remove_intf_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xcb563d40 media_get_pad_index +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd0abf50e media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xdc49faee __media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xdd089f94 media_request_put +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xde467af2 media_request_object_put EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe5ceecd6 media_entity_enum_cleanup -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf118ff96 media_device_unregister_entity -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf19ef21b media_device_unregister_entity_notify -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf1d2b931 media_request_object_bind -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf21374f4 media_device_register_entity -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf7065263 media_graph_walk_next -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xfa2ea1bc media_device_register_entity_notify -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xfbbabe4d media_device_usb_allocate +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xee910e2d __media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf2003ebf media_request_get_by_fd +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf2d63205 media_entity_pads_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf69d22fa media_device_pci_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf8f4ef8f media_device_register_entity_notify +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xfbdfa27f media_graph_walk_next +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xfbf73290 __media_pipeline_start EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xfc781c47 __media_entity_enum_init -EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0x624d82c8 cx88_setup_xc3028 -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x0295a81f mantis_pci_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x08e3bb82 mantis_ca_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x164c4980 mantis_get_mac -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x4206d425 mantis_frontend_power -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x81cfdcd6 mantis_input_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x8654b8db mantis_gpio_set_bits -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x9a579d88 mantis_pci_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xa9615312 mantis_i2c_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xab8e27b2 mantis_uart_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xac62851e mantis_i2c_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xb3319e4e mantis_dma_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xb6324842 mantis_dma_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xbe5ec7b6 mantis_ca_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xc92a4ffc mantis_input_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xc9cd7a91 mantis_uart_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xee3fc3e3 mantis_stream_control -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xf069954a mantis_dvb_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xf44a7622 mantis_frontend_soft_reset -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xf56a4346 mantis_dvb_init -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x169ca81d saa7134_ts_start_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x18643522 saa7134_ts_buffer_init -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x20f7913f saa7134_g_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x25aa9a4e saa7134_ts_qops -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x38603609 saa7134_s_frequency -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x3e11b0a7 saa7134_ts_buffer_prepare -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x4eecd4a2 saa7134_s_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x5bb2e2e1 saa7134_g_tuner -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x5eaa0ead saa7134_querycap -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x5efa98c3 saa7134_ts_queue_setup -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x73ffd299 saa7134_g_frequency -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x768243d7 saa7134_stop_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x770838eb saa7134_ts_stop_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x7f083f01 saa7134_enum_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x8cba1655 saa7134_vb2_buffer_queue -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xbce20079 saa7134_querystd -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xcb5cdd0c saa7134_g_std -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xd13a3979 saa7134_s_std -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xe7fc968c saa7134_s_tuner -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x673b6d7d ttpci_budget_debiwrite -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x71590a7c ttpci_budget_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xfd0203ad media_device_cleanup +EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0xdd044d9a cx88_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x18ead948 mantis_uart_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x1ac80d9e mantis_uart_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x206f5a8c mantis_dvb_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x2a4c7614 mantis_get_mac +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x35605b20 mantis_i2c_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x54c51271 mantis_frontend_soft_reset +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x55062a2c mantis_input_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x59e117b6 mantis_stream_control +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x601811f5 mantis_dma_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x733d82bd mantis_pci_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x78df6b0d mantis_gpio_set_bits +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x7fc340ed mantis_pci_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x80a08f18 mantis_ca_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xa74b531d mantis_dma_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xb97a7516 mantis_input_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xe73c1864 mantis_dvb_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xef9babce mantis_ca_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xf23319c8 mantis_i2c_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xf90e2945 mantis_frontend_power +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x0509047f saa7134_s_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x0934070d saa7134_ts_queue_setup +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x19aeecb9 saa7134_s_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x1e5637c3 saa7134_s_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x2666b665 saa7134_ts_buffer_init +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x2efd747a saa7134_ts_qops +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x43974d89 saa7134_g_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x4b211c90 saa7134_g_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x4d8014ea saa7134_vb2_buffer_queue +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x676aaba9 saa7134_enum_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x6f8d29c9 saa7134_ts_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x7a8b10e1 saa7134_g_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x94067998 saa7134_querystd +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xbb0edc71 saa7134_g_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xc1e821cb saa7134_ts_start_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xd6a65dc6 saa7134_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xd853cd63 saa7134_ts_buffer_prepare +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xe4687566 saa7134_querycap +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xef22a3e4 saa7134_s_input +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x3037f3d0 ttpci_budget_init +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x604febe3 ttpci_budget_debiread EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x7948c222 budget_debug -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x84d09089 ttpci_budget_init_hooks -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xa9d37b17 ttpci_budget_debiread -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xb1048127 ttpci_budget_deinit -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xbf6f05cd ttpci_budget_set_video_port -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xdb21553f ttpci_budget_irq10_handler +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x8197c1d1 ttpci_budget_debiwrite +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x8c22cb9c ttpci_budget_set_video_port +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xb24362e0 ttpci_budget_deinit +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xd5dda735 ttpci_budget_irq10_handler +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xda0c4035 ttpci_budget_init_hooks EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x0a7999a8 nal_hevc_tier_from_v4l2 -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x2429134b nal_h264_write_pps -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x30bd897f nal_hevc_read_vps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x18377b06 nal_h264_read_pps EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x36d13921 nal_hevc_level_from_v4l2 -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x5ee042c5 nal_hevc_write_filler -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x65d46c25 nal_hevc_write_vps -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x67d2095c nal_hevc_write_sps -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x76f51aa5 nal_hevc_read_sps -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x8164fdf7 nal_h264_read_sps -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x8b145f02 nal_h264_read_filler -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xa5827e82 nal_hevc_read_filler -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xaea7c998 nal_hevc_read_pps -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xd4d7f5bb nal_h264_write_filler -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xd528fa9a nal_hevc_write_pps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x441fab71 nal_hevc_write_vps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x8ac9ecc3 nal_hevc_read_sps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xa0cf8d46 nal_h264_write_pps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xa19eb4cd nal_hevc_read_filler +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xab239016 nal_hevc_read_vps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xc3f483e5 nal_hevc_write_sps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xcd122587 nal_h264_write_filler +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xce805cc9 nal_h264_read_sps EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xda687e65 nal_hevc_profile_from_v4l2 -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xf9dab047 nal_h264_read_pps -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xfcf2acd1 nal_h264_write_sps -EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0x093d9d6a mccic_shutdown -EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0x27d2af46 mccic_suspend -EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0x2af063fb mccic_register -EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0x63abf446 mccic_resume -EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0xf33ded77 mccic_irq -EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x1adb5c90 vpu_mapping_dm_addr -EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x2e126389 vpu_get_vdec_hw_capa -EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x905e0739 vpu_load_firmware -EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x9b749500 vpu_get_venc_hw_capa -EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0xce3353e8 vpu_wdt_reg_handler -EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0xd102de85 vpu_ipi_send -EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0xd694943b vpu_get_plat_device -EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0xf38ac43a vpu_ipi_register -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x001ba557 venus_helper_free_dpb_bufs -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x066e37c6 venus_helper_set_output_resolution -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x07af5638 venus_helper_set_profile_level -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x0d6e2a25 venus_helper_acquire_buf_ref -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x1616ed79 hfi_session_process_buf -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x1c60de92 venus_helper_intbufs_realloc -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x1d61f0a1 hfi_session_flush -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x1f3de952 venus_helper_check_codec +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xe055a3c6 nal_hevc_read_pps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xe11f8d67 nal_hevc_write_filler +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xeaa3e890 nal_hevc_write_pps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xfd3599b1 nal_h264_write_sps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xfda39083 nal_h264_read_filler +EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0x2e077444 mccic_register +EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0x5d98376c mccic_resume +EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0x648ce182 mccic_suspend +EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0xbcc857b0 mccic_shutdown +EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0xfbd1d065 mccic_irq +EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x02ba247e vpu_ipi_register +EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x0e8dd0f0 vpu_get_vdec_hw_capa +EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x26577be4 vpu_get_plat_device +EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0xa94400aa vpu_wdt_reg_handler +EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0xb91b0ace vpu_ipi_send +EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0xd7752e7c vpu_mapping_dm_addr +EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0xdd335efd vpu_load_firmware +EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0xec16b990 vpu_get_venc_hw_capa +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x04bf44e0 venus_helper_get_ts_metadata +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x0b34c9bd venus_helper_free_dpb_bufs +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x0dc41732 venus_helper_unregister_bufs +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x0e3c29be hfi_session_abort +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x107e1e7f venus_helper_acquire_buf_ref +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x1111ac0c hfi_session_deinit +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x13ada7cc venus_helper_set_bufsize +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x1841a324 venus_helper_set_work_mode 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 0x2817c598 venus_helper_set_work_mode -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x2952bba2 hfi_session_stop +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x2a8618e1 venus_helper_get_opb_size 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 0x2e074be2 venus_helper_set_raw_format -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x2eab0838 venus_helper_unregister_bufs -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x37733505 venus_helper_vb2_start_streaming -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x397c6672 venus_helper_get_out_fmts -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x39cb1f81 venus_helper_queue_dpb_bufs -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x3db2cf90 venus_helper_vb2_buf_prepare -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x428815fd hfi_session_set_property -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x468bc41c venus_helper_get_bufreq -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x4de5cf8b hfi_session_destroy -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x582ab258 venus_helper_get_opb_size -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x5bd6fb47 hfi_session_abort -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x62e02bc0 hfi_session_unload_res -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x6a18920b venus_helper_vb2_stop_streaming -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x77b53245 venus_helper_intbufs_free -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x8418a56b hfi_session_create -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x8755c347 venus_helper_vb2_buf_init -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x8ed82604 venus_helper_get_profile_level -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x9088d56e venus_helper_intbufs_alloc -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x9389150f venus_helper_alloc_dpb_bufs -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x966f3722 venus_helper_set_color_format -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xa726fc7d venus_helper_buffers_done -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xa7e0275b venus_helper_find_buf -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xb3365838 hfi_session_start -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xb3b6d490 venus_helper_set_stride -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xb46b8456 venus_helper_session_init -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xb5b07f62 venus_helper_process_initial_out_bufs +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x32aeb7fb venus_helper_set_profile_level +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x3a9e1d91 venus_helper_process_initial_out_bufs +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x3ea71c1b venus_helper_get_out_fmts +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x415833ca venus_helper_set_dyn_bufmode +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x41a0827e venus_helper_set_stride +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x4641a8f2 venus_helper_set_raw_format +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x4e059473 venus_helper_release_buf_ref +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x4faea96d hfi_session_get_property +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x4fecbc35 venus_helper_vb2_start_streaming +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x5088adb6 venus_helper_get_bufreq +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x577afde9 hfi_session_set_property +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x5f5c8dba venus_helper_queue_dpb_bufs +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x65d5aeb3 venus_helper_set_color_format +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x6d938da6 venus_helper_set_output_resolution +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x6fb11593 hfi_session_process_buf +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x7370fc21 hfi_session_destroy +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x7da258ff hfi_session_flush +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x8446c045 venus_helper_process_initial_cap_bufs +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x8b4e11b8 hfi_session_create +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x987d1a2a venus_helper_intbufs_realloc +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xa60556ca venus_helper_set_num_bufs +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xb2e76482 hfi_session_start 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 0xbcf65672 venus_helper_set_num_bufs -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xc0e01b81 hfi_session_get_property -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xcdcdfd8b venus_helper_set_input_resolution -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xcf64ce46 venus_helper_release_buf_ref -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xd1f214cb venus_helper_set_dyn_bufmode +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xb63a5473 venus_helper_intbufs_free +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xb8d54b6e venus_helper_intbufs_alloc +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xb9aa31b7 hfi_session_continue +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xbb92038a venus_helper_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xbe0932fd venus_helper_vb2_buf_prepare +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xcb1f5630 venus_helper_init_instance +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xcf871245 venus_helper_vb2_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xd1a0eb15 venus_helper_find_buf 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 0xd37cf007 venus_helper_set_format_constraints -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xd3839506 venus_helper_get_ts_metadata -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xdc187742 venus_helper_set_multistream -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xdf414210 hfi_session_deinit -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xe47268ce hfi_session_init -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xedc88acf venus_helper_vb2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xef40750e hfi_session_continue -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xf2d215e7 venus_helper_init_instance -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xf7e4fa10 venus_helper_set_bufsize -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xf8d0c7c2 venus_helper_process_initial_cap_bufs +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xd5daac2e venus_helper_set_input_resolution +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xd788c5a2 hfi_session_init +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xe3e78900 venus_helper_session_init +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xe6801ec4 hfi_session_stop +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xe87c2018 venus_helper_set_format_constraints +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xe89a392c venus_helper_buffers_done +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xe959d72f venus_helper_check_codec +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xeaabfe07 venus_helper_get_profile_level +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xeebdb34a hfi_session_unload_res +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xf9cc890a venus_helper_set_multistream +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xfa219bf6 venus_helper_vb2_buf_init +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xfdf0eedf venus_helper_alloc_dpb_bufs EXPORT_SYMBOL_GPL drivers/media/platform/rcar-fcp 0x3d858696 rcar_fcp_put -EXPORT_SYMBOL_GPL drivers/media/platform/rcar-fcp 0x3e732d57 rcar_fcp_get_device EXPORT_SYMBOL_GPL drivers/media/platform/rcar-fcp 0x4ad5d888 rcar_fcp_enable EXPORT_SYMBOL_GPL drivers/media/platform/rcar-fcp 0x5fe6f6e8 rcar_fcp_disable EXPORT_SYMBOL_GPL drivers/media/platform/rcar-fcp 0x9877c29f rcar_fcp_get -EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0x2b84610b vsp1_du_map_sg -EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0x5895a38d vsp1_du_atomic_update -EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0x904fbaab vsp1_du_setup_lif -EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0x94b5afa5 vsp1_du_atomic_flush -EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0xbe5b9fcc vsp1_du_init -EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0xce67abad vsp1_du_unmap_sg -EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0xe6c6b602 vsp1_du_atomic_begin -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x03002048 xvip_init_resources -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x2f134d13 xvip_enum_mbus_code -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x4189f38e xvip_clr_and_set +EXPORT_SYMBOL_GPL drivers/media/platform/rcar-fcp 0xd29fe4b4 rcar_fcp_get_device +EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0x3617bc2c vsp1_du_atomic_begin +EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0x485873e7 vsp1_du_map_sg +EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0x53e8d31e vsp1_du_unmap_sg +EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0x55a3c172 vsp1_du_init +EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0x6f0ece71 vsp1_du_atomic_update +EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0x6fa341da vsp1_du_atomic_flush +EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0xf4e54a70 vsp1_du_setup_lif +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x05fe1a16 xvip_enum_mbus_code +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x06b5cf49 xvip_clr_and_set EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x43738fab xvip_set_format_size -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x761931d1 xvip_of_get_format -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x899944cf xvip_enum_frame_size -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xab0f6038 xvip_cleanup_resources +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x8f4e1745 xvip_init_resources +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xac91c0d5 xvip_of_get_format +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xb2a06bcb xvip_clr_or_set EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xb67940fb xvip_get_format_by_fourcc -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xb7e7a39c xvip_clr_or_set +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xc5adddea xvip_cleanup_resources EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xe08e6063 xvip_get_format_by_code +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xffda4650 xvip_enum_frame_size EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0x3c16a6b1 xvtc_generator_stop EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0x47d7900b xvtc_generator_start -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0x645dda1b xvtc_of_get +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0x65fd512d xvtc_of_get EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0xa8a0f912 xvtc_put -EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x7991c3b3 radio_tea5777_exit -EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0xb9d9d834 radio_tea5777_init -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x0507f8ae si470x_start -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x2a005160 si470x_viddev_template -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x4c5d0de8 si470x_stop -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xad9cb468 si470x_set_freq -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xe7c76da8 si470x_ctrl_ops -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x022bf8bd rc_keyup -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x1f63cef6 ir_raw_event_handle -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x22434ee1 rc_allocate_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x2e8c5ad5 ir_raw_event_store_edge +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x224226ec radio_tea5777_init +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x9eb6ba07 radio_tea5777_exit +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x1b365d77 si470x_stop +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x63e26680 si470x_start +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xa3ca98a1 si470x_set_freq +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xb88c3298 si470x_viddev_template +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xbc35946e si470x_ctrl_ops +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x0495d4db ir_raw_event_set_idle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x0fce8801 rc_g_keycode_from_table +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x1c5ac328 rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x21d3f8d4 ir_raw_event_store_with_timeout EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x2ed90ced rc_map_unregister -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x39e8054c rc_g_keycode_from_table -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x43556205 ir_raw_event_store_with_filter -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x501bed87 ir_raw_event_set_idle -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x6402c5dc rc_keydown -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x6b95fe39 devm_rc_allocate_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x9f2dd424 devm_rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x44ce4749 lirc_scancode_event +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x5128c4d9 devm_rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x5d2f4d11 rc_keydown_notimeout +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x5fd62327 ir_raw_event_store_edge +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x66521481 ir_raw_event_store_with_filter +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x8149fa20 rc_keyup +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x864b3344 devm_rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xa2d5f242 rc_unregister_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xafd7efd9 rc_repeat +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb84afca3 ir_raw_event_handle EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb960f15c rc_map_register -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xbc1e9754 rc_keydown_notimeout -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xd1b650ef ir_raw_event_store -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xe64b52ae rc_repeat -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xe6cabc63 rc_unregister_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xea2a8b85 rc_register_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xf0081fc5 lirc_scancode_event -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xf80afa4b rc_free_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb9d82e1d rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xde55a4bf rc_free_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xe160ab8d rc_keydown +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xf00ddf5e ir_raw_event_store EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xfc5d3079 rc_map_get -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xfeaa95c4 ir_raw_event_store_with_timeout -EXPORT_SYMBOL_GPL drivers/media/tuners/mt2063 0x796b46b8 mt2063_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/mt20xx 0xdd890bf9 microtune_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5007t 0x73455734 mxl5007t_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/r820t 0xcef9bfc5 r820t_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda18271 0xdb2a5b92 tda18271_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda827x 0x56b85342 tda827x_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0xa42f4273 tda829x_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0xd3b8c75d tda829x_probe -EXPORT_SYMBOL_GPL drivers/media/tuners/tda9887 0x59243866 tda9887_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x7dc8cf92 tea5761_autodetection -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0xf07928fb tea5761_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x0b5865f8 tea5767_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0xe027f19a tea5767_autodetection -EXPORT_SYMBOL_GPL drivers/media/tuners/tuner-simple 0x9d759f04 simple_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mt2063 0x5fcda885 mt2063_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mt20xx 0xc9bcc2e3 microtune_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5007t 0xec510893 mxl5007t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/r820t 0x665b60ad r820t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda18271 0x657c6b60 tda18271_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda827x 0x5011f600 tda827x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x107140df tda829x_probe +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x388d3110 tda829x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda9887 0x76061502 tda9887_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0xc6e55204 tea5761_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0xdf5b059f tea5761_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0xcbbcfbfe tea5767_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0xf0d48591 tea5767_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tuner-simple 0x5d80b0f7 simple_tuner_attach EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x017ea7c7 cx231xx_tuner_callback -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x07604ead cx231xx_uninit_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x0c6e0e6a is_fw_load -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x110f0982 cx231xx_demod_reset -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x18d05de2 cx231xx_set_alt_setting -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x194b5a21 cx231xx_dev_uninit -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x1f32669c cx231xx_send_gpio_cmd -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x2491af25 cx231xx_init_bulk -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x2d305444 cx231xx_uninit_vbi_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x2d9d6951 cx231xx_unmute_audio -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x2ef2843b cx231xx_dev_init -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x3ff5ffca cx231xx_init_vbi_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x83434180 cx231xx_get_i2c_adap -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xaa69c11c cx231xx_uninit_bulk -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xbd7a6449 cx231xx_enable_i2c_port_3 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xca5a4807 cx231xx_disable656 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xd3949207 cx231xx_set_mode -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xe09803fc cx231xx_init_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xe0e14185 cx231xx_capture_start -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xe1c72522 cx231xx_send_usb_command -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xfbaba83f cx231xx_enable656 -EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0x0d0749f2 mxl111sf_demod_attach -EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0x81ddc4e5 mxl111sf_tuner_attach -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x11dd3387 em28xx_stop_urbs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x3512e7a1 em28xx_uninit_usb_xfer -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x4e6319dd em28xx_read_reg -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x50d3173d em28xx_init_camera -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x64993045 em28xx_alloc_urbs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x65c53c1b em28xx_write_reg_bits -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x681bdd79 em28xx_set_mode -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x71322296 em28xx_write_reg +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x02b97b1a cx231xx_uninit_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x1fb693a6 is_fw_load +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x2e072efa cx231xx_unmute_audio +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x345b0fde cx231xx_dev_uninit +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x3e7bd4bd cx231xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x4a561a3e cx231xx_capture_start +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x4ed0ad27 cx231xx_init_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x654bfbaf cx231xx_init_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x77f2e678 cx231xx_send_gpio_cmd +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x7cac45f1 cx231xx_enable_i2c_port_3 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x7f32254b cx231xx_get_i2c_adap +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x7fa97f9a cx231xx_enable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x8b612dc0 cx231xx_dev_init +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x93d4d943 cx231xx_disable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x94ad1ecc cx231xx_send_usb_command +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xa3cdd70d cx231xx_uninit_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xd4dde2f0 cx231xx_uninit_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xd5ffce1f cx231xx_set_alt_setting +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xf8913034 cx231xx_init_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xfd7de590 cx231xx_demod_reset +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0x61dea043 mxl111sf_demod_attach +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0x99a7435c mxl111sf_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x010cfc00 em28xx_audio_analog_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x1aef834f em28xx_write_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x3d45d664 em28xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x4995304c em28xx_init_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x569eb5db em28xx_find_led +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x5837a37e em28xx_gpio_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x6127a40b em28xx_read_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x696b3f0f em28xx_write_reg_bits EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x721f7cc7 em28xx_free_device -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x74363a4a em28xx_toggle_reg_bits -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x78298b7b em28xx_read_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x72370625 em28xx_read_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7f90e0ff em28xx_uninit_usb_xfer EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7fc8652c em28xx_tuner_callback -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x91552281 em28xx_audio_setup -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x91e4f71f em28xx_init_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x861f43d2 em28xx_setup_xc3028 EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x921d7c65 em28xx_boards -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xa7bb81ff em28xx_setup_xc3028 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xad819564 em28xx_gpio_set -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xaf28e7ab em28xx_write_regs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xb65fb7cf em28xx_audio_analog_set -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xd8e3cc16 em28xx_find_led -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xe6cc861a em28xx_write_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x9e8cd613 em28xx_write_regs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xa78ff808 em28xx_audio_setup +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xa8682981 em28xx_toggle_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xc4c6c40f em28xx_stop_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xc8656682 em28xx_init_camera +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xd05c7435 em28xx_write_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xf6312701 em28xx_alloc_urbs EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x2309a6d6 tm6000_xc5000_callback -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x2c336d3b tm6000_get_reg -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x36f93f15 tm6000_set_audio_bitrate -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x741018da tm6000_set_reg +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x30da3f82 tm6000_set_reg_mask +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x52bc49eb tm6000_set_audio_bitrate +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x5409e5bb tm6000_get_reg EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x89b611dd tm6000_debug -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xb5c75313 tm6000_set_reg_mask EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xdff8e89d tm6000_tuner_callback -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x2d41d17b __v4l2_async_notifier_add_fwnode_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x78b81d18 __v4l2_async_notifier_add_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0xb0a212b5 __v4l2_async_notifier_add_fwnode_remote_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0xb7488069 v4l2_async_notifier_cleanup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0xce802bd9 __v4l2_async_notifier_add_i2c_subdev +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xee411678 tm6000_set_reg +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x0eae1bba __v4l2_async_notifier_add_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x83380c94 __v4l2_async_notifier_add_fwnode_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0xace30762 v4l2_async_notifier_cleanup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0xb29c2732 __v4l2_async_notifier_add_fwnode_remote_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0xf19db69d __v4l2_async_notifier_add_i2c_subdev EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x01612c0b v4l2_detect_gtf EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x08402862 v4l2_print_dv_timings EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x0958448b v4l2_set_edid_phys_addr @@ -13866,20 +13904,20 @@ EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xef15cc44 v4l2_hdmi_rx_colorimetry 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 0x646696ce v4l2_flash_indicator_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x9344e526 v4l2_flash_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0xbe8cce76 v4l2_flash_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x0113db2d v4l2_fwnode_connector_add_link -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x1d2f396b v4l2_fwnode_endpoint_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x5a35c817 v4l2_fwnode_device_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x568130ea v4l2_flash_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x97672747 v4l2_flash_indicator_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x98403e88 v4l2_flash_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x1c68790d v4l2_fwnode_device_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x23ffdbb4 v4l2_fwnode_connector_add_link +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x5849af8b v4l2_async_register_subdev_sensor +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x5a26ea6a v4l2_fwnode_endpoint_free EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x612ddce5 v4l2_fwnode_connector_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x907b0f59 v4l2_async_notifier_parse_fwnode_endpoints -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xaa2189d5 v4l2_fwnode_connector_parse -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xb6a08ff8 v4l2_fwnode_endpoint_alloc_parse -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xcb8127fe v4l2_fwnode_endpoint_parse -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xd96a28b4 v4l2_fwnode_put_link -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xe1b351bc v4l2_async_register_subdev_sensor -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xfe74d39f v4l2_fwnode_parse_link +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x8d5167e0 v4l2_fwnode_endpoint_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xa32b10d9 v4l2_async_notifier_parse_fwnode_endpoints +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xb87ed3b2 v4l2_fwnode_connector_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xcff9368a v4l2_fwnode_parse_link +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xdf1a9a4d v4l2_fwnode_endpoint_alloc_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xea1990ab v4l2_fwnode_put_link EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-h264 0x2c620a2d v4l2_h264_build_p_ref_list EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-h264 0x4b224860 v4l2_h264_init_reflist_builder EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-h264 0x5150f937 v4l2_h264_build_b_ref_lists @@ -13888,383 +13926,383 @@ 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 0x01894898 v4l2_m2m_encoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x040c577b v4l2_m2m_ioctl_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x08f36095 v4l2_m2m_ioctl_encoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0eca8279 v4l2_m2m_update_stop_streaming_state -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x152c5147 v4l2_m2m_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x19baa886 v4l2_m2m_buf_remove_by_idx -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1c1f40a0 v4l2_m2m_ioctl_try_encoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x2088b1ed v4l2_m2m_ioctl_stateless_try_decoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x212257ad v4l2_m2m_ctx_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x24f025c7 v4l2_m2m_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x27460f0e v4l2_m2m_last_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x27bcfd47 v4l2_m2m_buf_remove_by_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x283afd74 v4l2_m2m_ioctl_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x2b8d6417 v4l2_m2m_ioctl_decoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x32834c99 v4l2_m2m_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x342951f4 v4l2_m2m_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4173c7e2 v4l2_m2m_ioctl_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x48e2bdec v4l2_m2m_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x56b2b51c v4l2_m2m_request_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x58399d7a v4l2_m2m_ctx_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5cfa984b v4l2_m2m_ioctl_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6dfd0cab v4l2_m2m_ioctl_stateless_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x060d7ce6 v4l2_m2m_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0863c0e8 v4l2_m2m_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0db7e36b v4l2_m2m_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x101a2fe9 v4l2_m2m_ctx_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1649760d v4l2_m2m_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x17764b4c v4l2_m2m_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1e5c49dc v4l2_m2m_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x2002a39e v4l2_m2m_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x2a015896 v4l2_m2m_buf_copy_metadata +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3e45ce6b v4l2_m2m_request_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x445640b4 v4l2_m2m_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4d5d9bd2 v4l2_m2m_last_buffer_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x52a7c5b7 v4l2_m2m_ioctl_encoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x56a669e3 v4l2_m2m_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5d78f905 v4l2_m2m_buf_remove_by_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x62727422 v4l2_m2m_buf_remove_by_idx +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x66ad1fe8 v4l2_m2m_ioctl_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x68ead57e v4l2_m2m_update_start_streaming_state +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6e4a3206 v4l2_m2m_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x70bfa1d4 v4l2_m2m_ioctl_try_decoder_cmd EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x730f2eae v4l2_m2m_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x741e09ec v4l2_m2m_ioctl_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x810b93a9 v4l2_m2m_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x81684704 v4l2_m2m_ioctl_try_decoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x85d85a7b v4l2_m2m_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x894f0a6f v4l2_m2m_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8b71464d v4l2_m2m_next_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8f05c65d v4l2_m2m_ioctl_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x94883c7a v4l2_m2m_buf_remove -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa0b715b5 v4l2_m2m_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa477b6d8 v4l2_m2m_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb6538564 v4l2_m2m_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7637dbb3 v4l2_m2m_buf_remove +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7b689649 v4l2_m2m_next_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7f9e71d0 v4l2_m2m_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x9023c0e1 v4l2_m2m_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa0638dae v4l2_m2m_register_media_controller +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa269120a v4l2_m2m_update_stop_streaming_state +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa3c28b19 v4l2_m2m_ioctl_try_encoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa66acc81 v4l2_m2m_fop_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb54ca453 v4l2_m2m_encoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xbd30d453 v4l2_m2m_ioctl_streamoff EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc6fca5ad v4l2_m2m_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xdf374107 v4l2_m2m_update_start_streaming_state -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe00112e1 v4l2_m2m_last_buffer_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe2f665df v4l2_m2m_ioctl_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe77c4b7e v4l2_m2m_register_media_controller -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe8a79ca5 v4l2_m2m_buf_copy_metadata -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xebaf2d94 v4l2_m2m_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc711c725 v4l2_m2m_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xca2d855b v4l2_m2m_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xcbfb83c4 v4l2_m2m_ioctl_stateless_try_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd3c513ac v4l2_m2m_ctx_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd75fdf0a v4l2_m2m_last_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd9850446 v4l2_m2m_ioctl_stateless_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xdbf9b848 v4l2_m2m_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xdf152d20 v4l2_m2m_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe423671b v4l2_m2m_try_schedule +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe8f0ae34 v4l2_m2m_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xedd0fadc v4l2_m2m_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xeeb38f51 v4l2_m2m_querybuf EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf13ff84d v4l2_m2m_unregister_media_controller -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf45f9544 v4l2_m2m_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf542ce35 v4l2_m2m_fop_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf8ad1ef6 v4l2_m2m_try_schedule -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xfb54ad12 v4l2_m2m_ioctl_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xfe7432b3 v4l2_m2m_ioctl_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x0ee10d44 videobuf_read_start -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x1506d7f6 videobuf_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x1cc0ba59 videobuf_alloc_vb -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x1eddc649 videobuf_mmap_setup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x20719584 videobuf_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x40789df6 videobuf_iolock -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x44b90a31 videobuf_read_stream -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x46812d4a videobuf_poll_stream -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x4e412459 videobuf_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x53192275 videobuf_queue_to_vaddr -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x5e63e234 videobuf_queue_core_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x680fa283 videobuf_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x752afcee videobuf_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x7b706bdb videobuf_mmap_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x7ee57fb3 videobuf_mmap_mapper -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x852343bf videobuf_waiton -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x9353613e videobuf_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x9b8f0b4b videobuf_read_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xc4239adb __videobuf_mmap_setup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xc5363fb0 videobuf_queue_cancel -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xc750b6ad videobuf_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xe90cee07 videobuf_read_one -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xf3b2d66c videobuf_next_field -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xfeacbbdf videobuf_queue_is_busy -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x1a07d383 videobuf_dma_unmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x36426144 videobuf_dma_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf8ff3d7c v4l2_m2m_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xfc02d4ea v4l2_m2m_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x0133702b videobuf_waiton +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x016b186f __videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x0be2b83b videobuf_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x19beae45 videobuf_queue_to_vaddr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x230e93b0 videobuf_alloc_vb +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x2c02948a videobuf_iolock +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x34ec5ee8 videobuf_poll_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x507f6cfe videobuf_mmap_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x54801823 videobuf_read_one +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x5a3e4b16 videobuf_mmap_mapper +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x6248ab9a videobuf_read_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x719db533 videobuf_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x71b89cb6 videobuf_read_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x74aca9d0 videobuf_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x7891f715 videobuf_queue_core_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x7f2020a8 videobuf_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x8e7cce21 videobuf_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x971d7f23 videobuf_queue_is_busy +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x981c2b61 videobuf_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xbe02a8e0 videobuf_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xcde21732 videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xcf48e493 videobuf_next_field +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd5fe3b35 videobuf_read_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xf908437d videobuf_queue_cancel +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x451a9f55 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 0x813fdf1e videobuf_to_dma -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xd32eee80 videobuf_queue_sg_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x63e16927 videobuf_vmalloc_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0xe9e32bc1 videobuf_queue_vmalloc_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0xfb4e071b videobuf_to_vmalloc -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x001788bc v4l_enable_media_source -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x03d60a59 v4l2_event_subdev_unsubscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x05b48166 v4l2_fh_is_singular -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0b8c343c v4l2_subdev_notify_event -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0bce3d71 v4l2_fh_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0ebe9794 v4l2_create_fwnode_links_to_pad -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x10dc725b v4l_vb2q_enable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xa0370a45 videobuf_dma_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xc9665548 videobuf_dma_unmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xefcc50ad videobuf_queue_sg_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x16c4f087 videobuf_vmalloc_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0xb643690f videobuf_queue_vmalloc_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0xefc86745 videobuf_to_vmalloc +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x057ac3a1 v4l2_fh_del +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x062c8360 v4l2_event_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0aabf307 v4l_enable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0f93e6f8 __v4l2_device_register_subdev_nodes EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x11f3044c __SCK__tp_func_vb2_v4l2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x120db8b1 v4l2_device_put -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1e8e2a88 v4l2_subdev_get_fwnode_pad_1_to_1 -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1f896514 __traceiter_vb2_v4l2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x21137243 v4l2_ctrl_request_hdl_find -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x257d03e5 v4l2_device_disconnect -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x262edb70 v4l_disable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x21a39ae0 __v4l2_ctrl_handler_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x282eedd8 v4l2_i2c_subdev_set_name +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2a8ff21e v4l2_device_unregister_subdev EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2ae0877b __SCK__tp_func_vb2_v4l2_buf_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2d6afb17 v4l2_i2c_subdev_set_name -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2e0b31bc v4l2_subdev_link_validate_default -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2fde84a4 __traceiter_vb2_v4l2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x40c94581 v4l2_device_register_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x431105f6 __v4l2_ctrl_handler_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2eac6373 v4l2_event_subdev_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x356fdd52 v4l2_fh_open +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3a981d71 v4l2_fh_is_singular 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 0x53a37b62 v4l2_subdev_link_validate -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5ad45960 v4l2_fh_del -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5bea9db1 v4l2_compat_ioctl32 -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5cc64327 v4l2_event_unsubscribe_all -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x603eb84a v4l2_i2c_new_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x60ced254 v4l2_event_subscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x629205b2 v4l2_event_wake_all -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x650f0eb7 v4l2_spi_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4a94353c v4l2_device_register_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4fa81679 v4l2_ctrl_request_hdl_ctrl_find +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x52306eae v4l2_pipeline_link_notify +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6200a495 v4l2_event_queue_fh +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6528ffc0 v4l2_device_register +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6654e3be v4l2_create_fwnode_links_to_pad +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x676e5f72 v4l2_fh_init EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6a2de036 __tracepoint_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6af57800 v4l2_pipeline_pm_put EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6ce1c95c __SCK__tp_func_vb2_v4l2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6d57861f __v4l2_device_register_subdev_nodes EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6e9acc41 v4l2_fill_pixfmt_mp -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x717db759 v4l2_event_pending -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x74de62d3 v4l2_i2c_subdev_addr -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x79eb3837 v4l2_src_change_event_subscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x840d6877 v4l2_src_change_event_subdev_subscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x84aac6b0 v4l2_device_unregister_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8a6c8a35 v4l2_device_register -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8b6c9986 v4l2_event_unsubscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8e42c72b v4l2_fh_exit -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8e5e5115 v4l2_event_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8f1ffe00 v4l2_mc_create_media_graph -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8f38f681 v4l2_g_parm_cap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9208e9b6 v4l2_i2c_subdev_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x94619173 v4l2_fh_add -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9cdd56b9 v4l2_i2c_new_subdev_board +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7015e523 v4l2_spi_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x70449cde v4l2_subdev_link_validate +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x725beb96 v4l2_device_put +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x732cb863 v4l2_device_disconnect +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7400a54f v4l2_i2c_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x775ca2b6 v4l2_s_parm_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x77f18fbd v4l2_subdev_alloc_state +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x78e97ae4 v4l_disable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7ab94f29 v4l2_src_change_event_subdev_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7cb9f3d8 __traceiter_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7dc7b791 v4l2_src_change_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7f8f88aa __traceiter_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x82838f9f v4l2_subdev_notify_event +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x88297967 v4l2_create_fwnode_links +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x88502982 v4l2_subdev_link_validate_default +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x88db5bda __traceiter_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8f2c16f0 v4l2_device_unregister +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8f63d0da v4l2_subdev_get_fwnode_pad_1_to_1 +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x90e89392 v4l2_fh_add +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x90f344b0 v4l2_i2c_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x950d773f v4l2_fh_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x99272ca6 v4l2_ctrl_request_hdl_find EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9fef35ac v4l2_apply_frmsize_constraints -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa035e6a7 v4l2_subdev_alloc_state -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa0f64054 v4l2_event_dequeue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa21f51e7 __traceiter_vb2_v4l2_buf_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa333cb2b v4l2_get_link_freq -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa7cbe6f0 __traceiter_vb2_v4l2_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa96b28da v4l2_create_fwnode_links +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa7f36099 v4l2_event_queue EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb13d41a0 v4l2_subdev_free_state -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbb9407b2 v4l2_s_parm_cap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc280be3a v4l2_pipeline_link_notify +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb2e965b3 v4l2_g_parm_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbbc1cd8f v4l2_event_wake_all +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbbd18a50 v4l2_event_unsubscribe_all +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbcca34cf v4l2_event_pending EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc742d6e8 __tracepoint_vb2_v4l2_qbuf EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcc501597 v4l2_fill_pixfmt -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd179af8c v4l2_pipeline_pm_put -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd98ed3c0 v4l2_pipeline_pm_get -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xdf35f1cd v4l2_fh_open +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xced0bde7 __traceiter_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcf8d8823 v4l2_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd24ffa67 v4l2_i2c_new_subdev_board +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd2e70500 v4l2_event_dequeue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd7ec01e8 v4l_vb2q_enable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd867f522 v4l2_fh_exit +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd8c61b64 v4l2_get_link_freq +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd9e1d110 v4l2_i2c_subdev_addr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xdf5faf72 v4l2_pipeline_pm_get +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe0ef1d6f v4l2_spi_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe177a287 v4l2_device_set_name EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe2822320 __v4l2_find_nearest_size -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe3d80685 v4l2_ctrl_request_hdl_ctrl_find -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe535e2de v4l2_spi_subdev_init EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe5a33113 __SCK__tp_func_vb2_v4l2_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe9d16ac3 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 0xf2ca36fe v4l2_fh_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf3422345 v4l2_device_set_name EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf5ef842e v4l_bound_align_image -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfab41b2b v4l2_device_unregister -EXPORT_SYMBOL_GPL drivers/memory/mtk-smi 0x4d325fc3 mtk_smi_larb_get -EXPORT_SYMBOL_GPL drivers/memory/mtk-smi 0xce1f5239 mtk_smi_larb_put -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x2dd2e8a0 pm80x_regmap_config -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xd58440ba pm80x_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf9a5ef6c v4l2_mc_create_media_graph +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfeb731e7 v4l2_compat_ioctl32 +EXPORT_SYMBOL_GPL drivers/memory/mtk-smi 0x5e21e06b mtk_smi_larb_get +EXPORT_SYMBOL_GPL drivers/memory/mtk-smi 0xe40c6442 mtk_smi_larb_put +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x5dd995a6 pm80x_regmap_config +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x84dbdea8 pm80x_pm_ops EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xd99fd720 pm80x_deinit -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xff59ce9b pm80x_pm_ops -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x118bd1e5 arizona_pm_ops -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x147e2775 arizona_dev_exit -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x1c0529d4 wm5110_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x1f406b5b arizona_clk32k_disable -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x21c6181a arizona_set_irq_wake -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x232c95d5 cs47l24_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x2b529072 wm8997_patch +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xdea95206 pm80x_init +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x1acd4620 wm5102_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x1b53bd88 arizona_free_irq EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x3dc526a9 arizona_of_match -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x3fe7796f wm5110_patch EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x4048fbbc wm8997_aod -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x4baffa8f arizona_free_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x48075198 wm8998_i2c_regmap EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x4c087981 wm5110_aod -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x5f3de898 wm5110_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x64bcc618 cs47l24_patch -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xa26ebca5 wm5102_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xa4948adc arizona_dev_init +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x59f5876c wm5102_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x6f7784ad wm8997_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x844581bc cs47l24_patch +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x941e94dc arizona_clk32k_disable +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xa4a6d351 wm5110_spi_regmap EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xa6b70564 wm8997_irq EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xa727bd3b cs47l24_irq EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xaaf78759 wm5110_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xb2b97bce arizona_dev_exit +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xbc79b5c3 arizona_set_irq_wake +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xbe464180 cs47l24_spi_regmap EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xc81b43ab wm5110_revd_irq -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xd7d47e28 wm8997_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xe0eb8229 arizona_request_irq -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xe1567de9 wm5102_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xf0a4ab1d wm8998_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xf22593c8 arizona_clk32k_enable -EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0x0c05cfe7 atc260x_device_probe -EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0xc2c2fad5 atc260x_match_device -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x15b03f71 da9150_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x46ab3c31 da9150_bulk_read -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x5904aee8 da9150_write_qif -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x87596900 da9150_read_qif -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xaa7fda46 da9150_set_bits -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xba915756 da9150_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xe57dd08d da9150_bulk_write +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xc9ecd69d arizona_request_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xd206d778 wm8997_patch +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xd2506178 arizona_clk32k_enable +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xd36af02a arizona_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xe79e121d wm5110_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xeafdf6df wm5110_patch +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xf845879c arizona_dev_init +EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0x35dc0a5c atc260x_device_probe +EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0x5bc5394d atc260x_match_device +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x1bee1271 da9150_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x22c0ec9c da9150_read_qif +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x39a73092 da9150_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x3fc227f9 da9150_bulk_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x5b135d2b da9150_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x94ee4fe1 da9150_bulk_read +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xd4900a4c 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 0x2167d1af kempld_write8 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x2d4351eb kempld_write16 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x331ac446 kempld_release_mutex -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x493e66b1 kempld_get_mutex -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xa7b3275d kempld_read32 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xb162975d kempld_read16 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xcedc541e kempld_write32 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xee68b444 kempld_read8 -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x5e842ae8 lm3533_read -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x8ade6edb lm3533_write -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xebb99d93 lm3533_update -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x0343f5cb lm3533_ctrlbank_get_brightness -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x3d26abce lm3533_ctrlbank_get_pwm -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x6f7293be lm3533_ctrlbank_set_max_current -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x8f83f90a lm3533_ctrlbank_set_brightness -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xa42cb12a lm3533_ctrlbank_set_pwm -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xf15e3625 lm3533_ctrlbank_enable -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xfef5a25b lm3533_ctrlbank_disable -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x4b7b991e lp3943_read_byte -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x8da96640 lp3943_update_bits -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xe465f465 lp3943_write_byte +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x3f25b043 kempld_write32 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x440dc9cc kempld_release_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x55df5eb9 kempld_read16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x677243b3 kempld_write16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x81c3b442 kempld_get_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x8ef21366 kempld_read32 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xf7059972 kempld_write8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xff7ff769 kempld_read8 +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x54e708fc lm3533_read +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xadfa395f lm3533_update +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xc17d9dc7 lm3533_write +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x5d29e69a lm3533_ctrlbank_set_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x9a9e556b lm3533_ctrlbank_disable +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xc56c7fbf lm3533_ctrlbank_set_max_current +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xda909101 lm3533_ctrlbank_get_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xf4db777f lm3533_ctrlbank_set_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xff0aa08e lm3533_ctrlbank_get_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xffaa1499 lm3533_ctrlbank_enable +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x18663fb1 lp3943_read_byte +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x265b466f lp3943_update_bits +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x640ff7be lp3943_write_byte +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x00672ca8 cs47l90_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x006af0e8 cs47l90_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x079f9275 madera_dev_exit EXPORT_SYMBOL_GPL drivers/mfd/madera 0x0f379262 madera_of_match -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x22500bb9 cs47l15_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x225dd7f9 cs47l15_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x40ceca4b madera_dev_exit -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x515a618b cs47l35_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x5aaf45b4 cs47l15_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x5d3bdd50 madera_dev_init -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x616516b5 cs47l15_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x6168caf5 cs47l15_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x6f560a22 madera_pm_ops -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x810150b1 cs47l90_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x810c8cf1 cs47l90_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x99d42701 cs47l85_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x99d9fb41 cs47l85_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x9d39c477 cs47l85_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xaba6bc79 cs47l35_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xabab6039 cs47l35_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xb6804b4c cs47l92_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xb68d970c cs47l92_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xc2344dbd cs47l90_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xc23991fd cs47l90_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xd248e491 cs47l90_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xdae13a0d cs47l85_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xdaece64d cs47l85_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xe893a175 cs47l35_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xe89e7d35 cs47l35_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x18b25b18 cs47l85_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x18bf8758 cs47l85_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x19aca4de cs47l90_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x22aceaed madera_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x2ac0c060 cs47l35_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x2acd1c20 cs47l35_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x37e63755 cs47l92_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x37ebeb15 cs47l92_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x435231a4 cs47l90_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x435fede4 cs47l90_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x5b874614 cs47l85_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x5b8a9a54 cs47l85_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x6658c27d cs47l85_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x69f5dd6c cs47l35_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x69f8012c cs47l35_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x74d32a59 cs47l92_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x74def619 cs47l92_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x81e92634 cs47l35_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x8c09eeef cs47l92_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xa33677a0 cs47l15_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xa33babe0 cs47l15_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xd0a28344 cs47l15_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xe0036aac cs47l15_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xe00eb6ec cs47l15_32bit_spi_regmap EXPORT_SYMBOL_GPL drivers/mfd/madera 0xebe384cb madera_name_from_type -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xf5b55640 cs47l92_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xf5b88a00 cs47l92_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xfcb3fa5e cs47l92_patch -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x194369ce mc13xxx_common_init -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x6e9b12b0 mc13xxx_common_exit -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x9954f5d3 mc13xxx_adc_do_conversion -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xb3416a8e mc13xxx_variant_mc13892 -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xe1f4d4c6 mc13xxx_variant_mc34708 -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xf3fb21ae mc13xxx_variant_mc13783 +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xf15199e5 madera_dev_init +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x0bcabd3f mc13xxx_adc_do_conversion +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x2ca67574 mc13xxx_variant_mc34708 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x3ea9801c mc13xxx_variant_mc13783 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x6d083491 mc13xxx_common_init +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x7e13cb3c mc13xxx_variant_mc13892 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xffd7ce58 mc13xxx_common_exit EXPORT_SYMBOL_GPL drivers/mfd/motorola-cpcap 0xa226dbe8 cpcap_sense_virq -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x01f1deb1 pcf50633_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x404ffe6a pcf50633_reg_set_bit_mask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x5660315f pcf50633_write_block -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x5a117c93 pcf50633_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x5b24290e pcf50633_read_block -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x66727388 pcf50633_register_irq -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x6e8ff15d pcf50633_irq_mask_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x843ec8cf pcf50633_irq_mask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x862ba592 pcf50633_irq_unmask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xc981fdbd pcf50633_free_irq -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xfa325526 pcf50633_reg_clear_bits -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x2f480812 pcf50633_adc_async_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x84eb58db pcf50633_adc_sync_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x019c698d pcf50633_gpio_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x1c272c46 pcf50633_gpio_set -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x63fad9d3 pcf50633_gpio_invert_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xa8a3f92b pcf50633_gpio_power_supply_set -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xadda7491 pcf50633_gpio_invert_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x01746929 pcf50633_write_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x0c818420 pcf50633_irq_mask_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x0cf34eee pcf50633_reg_set_bit_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x38b70046 pcf50633_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x3c886d47 pcf50633_irq_unmask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x52491995 pcf50633_register_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x75f95e1a pcf50633_irq_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x76b0881b pcf50633_reg_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xbb88e371 pcf50633_read_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xc9489227 pcf50633_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xdb1d0db6 pcf50633_free_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0xaa903ca9 pcf50633_adc_sync_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0xc008cc2a pcf50633_adc_async_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x0c8ee79c pcf50633_gpio_invert_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x1f34d77e pcf50633_gpio_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x3ee15819 pcf50633_gpio_power_supply_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x95fc2b32 pcf50633_gpio_invert_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xedd185e8 pcf50633_gpio_set EXPORT_SYMBOL_GPL drivers/mfd/rave-sp 0x43e53ef9 rave_sp_exec -EXPORT_SYMBOL_GPL drivers/mfd/rave-sp 0xc5fc18a2 devm_rave_sp_register_event_notifier +EXPORT_SYMBOL_GPL drivers/mfd/rave-sp 0x48bb9307 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 0x00342575 si476x_core_cmd_fm_tune_freq -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x05c29a9e si476x_core_cmd_zif_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x20136113 si476x_core_cmd_am_acf_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x21b69279 devm_regmap_init_si476x -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x21d20f95 si476x_core_is_a_primary_tuner -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x26265dc1 si476x_core_i2c_xfer -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x29c4d479 si476x_core_cmd_am_rsq_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x31d0566e si476x_core_cmd_fm_phase_diversity -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x377e4943 si476x_core_cmd_fm_phase_div_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x37f7df60 si476x_core_cmd_fm_rds_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3ead1c7b si476x_core_is_powered_up -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x54e51d12 si476x_core_cmd_get_property -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5601fb32 si476x_core_cmd_dig_audio_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x58e354ce si476x_core_cmd_set_property -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5f61405e si476x_core_cmd_intb_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x682ad2e8 si476x_core_has_diversity -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x71e9b34d si476x_core_cmd_ana_audio_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7f247be8 si476x_core_has_am -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8a049eb1 si476x_core_cmd_fm_acf_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9250f965 si476x_core_cmd_ic_link_gpo_ctl_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x97e8d9e8 si476x_core_cmd_power_up -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9c98d917 si476x_core_stop -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9cac2d15 si476x_core_cmd_fm_rsq_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9debf089 si476x_core_cmd_func_info -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9f52b0e8 si476x_core_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xab6f155f si476x_core_cmd_am_tune_freq -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xbbd3c366 si476x_core_cmd_fm_seek_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc091f014 si476x_core_is_in_am_receiver_mode -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc0c35ffa si476x_core_cmd_power_down -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc3a416e1 si476x_core_cmd_am_seek_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd37bb69f si476x_core_cmd_fm_rds_blockcount -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe9d32d8b si476x_core_is_a_secondary_tuner -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xef644f1c si476x_core_cmd_agc_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xfd915db8 si476x_core_set_power_state -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x14d0b4b4 sm501_modify_reg -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x2ec734b6 sm501_unit_power -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x6485d784 sm501_misc_control -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x8ff91344 sm501_find_clock -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xef9602de sm501_set_clock -EXPORT_SYMBOL_GPL drivers/mfd/sprd-sc27xx-spi 0x227fa9fb sprd_pmic_detect_charger_type -EXPORT_SYMBOL_GPL drivers/mfd/stmfx 0x8063cb31 stmfx_function_enable -EXPORT_SYMBOL_GPL drivers/mfd/stmfx 0xb3da089b stmfx_function_disable -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x12821bae am335x_tsc_se_set_once -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x2b7155ed am335x_tsc_se_clr -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x3fdfb5f0 am335x_tsc_se_set_cache -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x99ca240f am335x_tsc_se_adc_done -EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0x25ae5468 tps65217_set_bits -EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0x267b28d0 tps65217_clear_bits -EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0xcd1c2b1c tps65217_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0xe90c5ea5 tps65217_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xd1507595 tps65218_clear_bits -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xddfc01b0 tps65218_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xf273f893 tps65218_set_bits -EXPORT_SYMBOL_GPL drivers/mfd/ucb1400_core 0xe087f7f7 ucb1400_adc_read -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x0673aa57 alcor_read32 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x3b2fc0d4 alcor_read32be -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x3c1b1c1c alcor_write32be -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x495613d4 alcor_read8 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x9c0be5ed alcor_write32 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xd4e4192e alcor_write8 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xec8d788a alcor_write16 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x0b239a61 rtsx_pci_write_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x0eafe9f3 rtsx_pci_dma_unmap_sg -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x1133f405 rtsx_pci_transfer_data -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x198a33b0 rtsx_pci_card_power_off -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x2ab0aa77 rtsx_pci_dma_map_sg -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x312b0fa7 rtsx_pci_card_exist -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x4e3c6fcb rtsx_pci_stop_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x4eafbe3e rtsx_pci_start_run -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x69f9d050 rtsx_pci_read_ppbuf -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x6b15064e rtsx_pci_write_phy_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x738e140b rtsx_pci_send_cmd_no_wait -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x7d3bd6c0 rtsx_pci_switch_clock -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x803c8bc4 rtsx_pci_send_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x81fe80d8 rtsx_pci_card_exclusive_check -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x836bc9bd rtsx_pci_write_ppbuf -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x9aa56e87 rtsx_pci_dma_transfer -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xb4244a94 rtsx_pci_read_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xc13ed79b rtsx_pci_complete_unfinished_transfer -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xcc9232c6 rtsx_pci_card_pull_ctl_enable -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xd198a15e rtsx_pci_add_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xf36b2af6 rtsx_pci_switch_output_voltage -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xf530471b rtsx_pci_card_power_on -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xf5fbc298 rtsx_pci_card_pull_ctl_disable -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xff77ef31 rtsx_pci_read_phy_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x00f837bd rtsx_usb_add_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x02133754 rtsx_usb_transfer_data -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x2322f00d rtsx_usb_card_exclusive_check -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x261465c1 rtsx_usb_get_card_status -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x2712cade rtsx_usb_write_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x9c40c3c4 rtsx_usb_read_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x9cf835e9 rtsx_usb_ep0_read_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xa7ed7986 rtsx_usb_get_rsp -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xaa6ed21f rtsx_usb_switch_clock -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xe81f96ef rtsx_usb_ep0_write_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xef86a968 rtsx_usb_write_ppbuf -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xf8fab09f rtsx_usb_send_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xff4b4cf7 rtsx_usb_read_ppbuf -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x05ce533b cb710_pci_update_config_reg -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x12417fe5 cb710_sg_dwiter_write_next_block -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x809a6518 cb710_set_irq_handler -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x8808f6dc cb710_sg_dwiter_read_next_block +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x043ac27d si476x_core_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0d01a1fe si476x_core_cmd_ic_link_gpo_ctl_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x1350dc9a si476x_core_has_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x15c8e247 si476x_core_is_powered_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x1c180eab si476x_core_cmd_set_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x1c5b692a si476x_core_cmd_ana_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x202c4562 si476x_core_cmd_get_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x21442fdb si476x_core_cmd_am_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x21d24694 si476x_core_i2c_xfer +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x37278002 devm_regmap_init_si476x +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3fb44579 si476x_core_cmd_fm_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4306218c si476x_core_cmd_am_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x48350e4f si476x_core_is_a_secondary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4d7716a9 si476x_core_cmd_zif_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4e7882f8 si476x_core_cmd_fm_phase_div_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x50a91448 si476x_core_cmd_power_down +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x50c075b4 si476x_core_stop +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5f49b24f si476x_core_cmd_fm_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6dc9a723 si476x_core_set_power_state +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x73a998b5 si476x_core_cmd_fm_phase_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x749a01dc si476x_core_cmd_func_info +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7e137b47 si476x_core_is_in_am_receiver_mode +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8653ad11 si476x_core_cmd_am_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x881ef082 si476x_core_cmd_intb_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x929c5329 si476x_core_cmd_dig_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x92a9cc61 si476x_core_cmd_agc_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x96a86a3e si476x_core_cmd_fm_rds_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb25737c3 si476x_core_cmd_fm_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc9a9c146 si476x_core_cmd_am_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xce12ef79 si476x_core_cmd_fm_rds_blockcount +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd5c2da64 si476x_core_cmd_fm_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xdb8512ca si476x_core_is_a_primary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe92c399b si476x_core_cmd_power_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf1eb655e si476x_core_has_am +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x100a594e sm501_set_clock +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x5d68c824 sm501_unit_power +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x7ac6bf7f sm501_misc_control +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xb37cb69d sm501_find_clock +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xef0656b8 sm501_modify_reg +EXPORT_SYMBOL_GPL drivers/mfd/sprd-sc27xx-spi 0x387999de sprd_pmic_detect_charger_type +EXPORT_SYMBOL_GPL drivers/mfd/stmfx 0xb4453fed stmfx_function_disable +EXPORT_SYMBOL_GPL drivers/mfd/stmfx 0xc196f9f1 stmfx_function_enable +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x2375f68d am335x_tsc_se_set_once +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x7f85c904 am335x_tsc_se_adc_done +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xe1526860 am335x_tsc_se_set_cache +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xe1736fd3 am335x_tsc_se_clr +EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0x3c05bd91 tps65217_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0x40f9990e tps65217_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0x75cfcbf3 tps65217_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0xd9554cd0 tps65217_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x0772f58b tps65218_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x8bffe852 tps65218_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xb02014ce tps65218_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/ucb1400_core 0x0112a4f5 ucb1400_adc_read +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x10a4fa51 alcor_write16 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x143655a0 alcor_read32be +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x4843d20c alcor_write32be +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x5911eaa3 alcor_write8 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x86b5192f alcor_read8 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xa2c8b203 alcor_read32 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xb49373e8 alcor_write32 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x0c78b737 rtsx_pci_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x3e21ded3 rtsx_pci_card_power_off +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x402dec35 rtsx_pci_add_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x4545b346 rtsx_pci_stop_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x4b2e8eea rtsx_pci_write_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x53581788 rtsx_pci_dma_transfer +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x547bbdce rtsx_pci_read_phy_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x5b6909c7 rtsx_pci_dma_map_sg +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x60d9d89d rtsx_pci_switch_output_voltage +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x69c3f173 rtsx_pci_read_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x79091246 rtsx_pci_dma_unmap_sg +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x7bec2c04 rtsx_pci_card_exist +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x8a1ac3a7 rtsx_pci_card_pull_ctl_enable +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x92aff4df rtsx_pci_transfer_data +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x92cb48e8 rtsx_pci_complete_unfinished_transfer +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x965cdf03 rtsx_pci_write_phy_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x9c6d6e22 rtsx_pci_read_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x9d9efbb3 rtsx_pci_send_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xa40c484a rtsx_pci_card_power_on +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xa813e144 rtsx_pci_switch_clock +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xa843dd78 rtsx_pci_start_run +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xc5b6de8c rtsx_pci_write_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xca0d5248 rtsx_pci_send_cmd_no_wait +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xf9120c23 rtsx_pci_card_pull_ctl_disable +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x0a276c78 rtsx_usb_get_rsp +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x2360b30f rtsx_usb_read_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x295a6152 rtsx_usb_send_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x377ea156 rtsx_usb_add_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x37e20d78 rtsx_usb_ep0_write_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x6e765282 rtsx_usb_ep0_read_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x7dbfc397 rtsx_usb_get_card_status +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x8a048336 rtsx_usb_switch_clock +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x8b933708 rtsx_usb_transfer_data +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x940451f3 rtsx_usb_write_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xa67a03bc rtsx_usb_read_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xb8eff4ad rtsx_usb_write_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xfd84c6ec rtsx_usb_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x24109ba2 cb710_sg_dwiter_write_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x7df33381 cb710_pci_update_config_reg +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x9e6bad39 cb710_set_irq_handler +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xeb324f13 cb710_sg_dwiter_read_next_block EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x0b008db0 oslec_hpf_tx EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x296a8983 oslec_update EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x3115970d oslec_create @@ -14278,2828 +14316,2874 @@ 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 0x11767a9c enclosure_component_register -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x5351ecc5 enclosure_find -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x67fd116a enclosure_for_each_device -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x85be4d96 enclosure_unregister -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xc97585b0 enclosure_remove_device -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xd28fc624 enclosure_register -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xde27966f enclosure_add_device -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xec8954f6 enclosure_component_alloc -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x1972d2c5 lis3lv02d_remove_fs -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x34c8bcf7 lis3lv02d_init_dt -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x6746b791 lis3lv02d_init_device -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x6cd3a838 lis3lv02d_joystick_disable -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x8f39a9d3 lis3lv02d_joystick_enable -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x9c500428 lis3lv02d_poweroff -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xc585c6bd lis3_dev -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xd08ebff1 lis3lv02d_poweron -EXPORT_SYMBOL_GPL drivers/misc/pvpanic/pvpanic 0x263833ef devm_pvpanic_probe +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x09e8e2bd enclosure_add_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x10483024 enclosure_find +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x5047edd8 enclosure_for_each_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x52896576 enclosure_component_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x6d271244 enclosure_component_alloc +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xb61880b5 enclosure_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xd0d5b342 enclosure_remove_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xd6e7286f enclosure_unregister +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x0cfecf17 lis3lv02d_init_device +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x2063a028 lis3_dev +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x41eb21b7 lis3lv02d_init_dt +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x44f32f4c lis3lv02d_remove_fs +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x558a613e lis3lv02d_joystick_enable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x5d70d1e8 lis3lv02d_poweroff +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xbe81430c lis3lv02d_joystick_disable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xe4cdacaf lis3lv02d_poweron +EXPORT_SYMBOL_GPL drivers/misc/pvpanic/pvpanic 0xf93aa7b5 devm_pvpanic_probe EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0x472340b2 st_unregister EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0xc8e56e36 st_register -EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0x9ae50601 uacce_alloc -EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0xa9b5f183 uacce_remove -EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0xea1ec1f4 uacce_register -EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0x06973c84 dw_mci_pltfm_remove -EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0x477a6847 dw_mci_pltfm_pmops -EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0x792e6235 dw_mci_pltfm_register -EXPORT_SYMBOL_GPL drivers/mmc/host/mmc_hsq 0x3e23f0f2 mmc_hsq_init -EXPORT_SYMBOL_GPL drivers/mmc/host/mmc_hsq 0x575934a2 mmc_hsq_suspend -EXPORT_SYMBOL_GPL drivers/mmc/host/mmc_hsq 0xe0744f16 mmc_hsq_finalize_request -EXPORT_SYMBOL_GPL drivers/mmc/host/mmc_hsq 0xfec573fb mmc_hsq_resume -EXPORT_SYMBOL_GPL drivers/mmc/host/renesas_sdhi_core 0x7717f321 renesas_sdhi_remove -EXPORT_SYMBOL_GPL drivers/mmc/host/renesas_sdhi_core 0xd918dcae renesas_sdhi_probe -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x00ad1b7a sdhci_resume_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x0b99e15f sdhci_runtime_suspend_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x18307226 sdhci_end_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x194da2f7 __sdhci_add_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x1a00fe0b sdhci_cqe_disable -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x1e46779b sdhci_switch_external_dma -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x23ad95a2 __sdhci_read_caps -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x24739033 sdhci_start_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x2f22b89d sdhci_alloc_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x3181a321 sdhci_dumpregs -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x3b238b80 __sdhci_set_timeout -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x3d0ab3b6 sdhci_set_ios -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x3f995ce0 sdhci_set_power_noreg -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x40d82d8e sdhci_suspend_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x47e0c450 sdhci_set_clock -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x493b3b54 sdhci_set_data_timeout_irq -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x4f934162 sdhci_cqe_enable -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x50832c9f sdhci_add_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x50d24bda sdhci_abort_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x522f65ff sdhci_reset -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x59bc62f4 sdhci_execute_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x59ca31df sdhci_adma_write_desc -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x5aae9cfb sdhci_request_atomic -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x5c8fe338 sdhci_setup_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x6114c35f sdhci_start_signal_voltage_switch -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x61f28672 sdhci_remove_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x64418431 sdhci_enable_v4_mode -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x67dd3df2 sdhci_set_uhs_signaling -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x6c6bf85d sdhci_calc_clk -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x71c6d115 sdhci_send_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x7e9f16de sdhci_set_power -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x7ed17228 sdhci_set_power_and_bus_voltage -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x856f0d05 sdhci_enable_sdio_irq -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x8bb438a0 sdhci_cleanup_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x8c642efb sdhci_free_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x8fdd9807 sdhci_set_bus_width -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x94ba3124 sdhci_enable_clk -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa018f8f0 sdhci_cqe_irq -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xbbb0c9f3 sdhci_runtime_resume_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc52ee650 sdhci_request -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xfaedf35a sdhci_reset_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x1034bc14 sdhci_pltfm_clk_get_max_clock -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x612359a5 sdhci_pltfm_suspend -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x8277c7f1 sdhci_pltfm_unregister -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xa1499c43 sdhci_pltfm_init -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xa17652ec sdhci_pltfm_free -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xa309264d sdhci_pltfm_resume -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xc8941b3f sdhci_pltfm_pmops -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xe387d34f sdhci_pltfm_register -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xfa52dd22 sdhci_get_property -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x1213c63b tmio_mmc_disable_mmc_irqs -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x1495907d tmio_mmc_host_free +EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0x1f068c80 uacce_alloc +EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0x26899507 uacce_remove +EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0xd97b86e8 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 0x3bfb8408 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 0x61bb5d47 vmci_qpair_enquev +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x676bd843 vmci_qpair_consume_free_space +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x75fe065a vmci_send_datagram +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x787f0fe8 vmci_register_vsock_callback +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x7c74d7a6 vmci_qpair_consume_buf_ready +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x81d61eef vmci_qpair_dequeue +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x8c2cbd5d 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 0xde3abc2e vmci_datagram_create_handle_priv +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xe0cc9c92 vmci_qpair_alloc +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xe11895c1 vmci_event_unsubscribe +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xe67343c1 vmci_qpair_enqueue +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xea143610 vmci_datagram_send +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xea61eefe vmci_qpair_produce_buf_ready +EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0x12540dd3 dw_mci_pltfm_remove +EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0xa4de4f7c dw_mci_pltfm_pmops +EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0xf3b5cd6a dw_mci_pltfm_register +EXPORT_SYMBOL_GPL drivers/mmc/host/mmc_hsq 0x8deee279 mmc_hsq_resume +EXPORT_SYMBOL_GPL drivers/mmc/host/mmc_hsq 0xa6b42ca1 mmc_hsq_init +EXPORT_SYMBOL_GPL drivers/mmc/host/mmc_hsq 0xe7ede7ed mmc_hsq_suspend +EXPORT_SYMBOL_GPL drivers/mmc/host/mmc_hsq 0xffb2daf0 mmc_hsq_finalize_request +EXPORT_SYMBOL_GPL drivers/mmc/host/renesas_sdhi_core 0x1f171a04 renesas_sdhi_probe +EXPORT_SYMBOL_GPL drivers/mmc/host/renesas_sdhi_core 0xb586b9ed renesas_sdhi_remove +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x004392d8 sdhci_abort_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x0609c908 sdhci_set_bus_width +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x11536211 sdhci_request +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x13577837 sdhci_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x191c3ddc sdhci_send_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x2342c343 sdhci_set_power_noreg +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x23f6ab6c sdhci_enable_clk +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x2d52bc09 sdhci_free_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x30c5da5a sdhci_start_signal_voltage_switch +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x4dbfec97 sdhci_set_data_timeout_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x4fc0d5c2 sdhci_enable_sdio_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x5160f4d0 sdhci_calc_clk +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x557f3609 sdhci_alloc_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x594929ee sdhci_enable_v4_mode +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x6240b38a sdhci_runtime_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x645a7aeb sdhci_start_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x675586bb sdhci_cqe_enable +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x7008799b sdhci_request_atomic +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x7ed4532a sdhci_set_ios +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x818ff304 sdhci_set_uhs_signaling +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x83b7308d sdhci_execute_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x89200e30 sdhci_reset_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x98da3636 sdhci_reset +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x9d26bf8e sdhci_runtime_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x9d6375b6 __sdhci_read_caps +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x9ea7df1a sdhci_switch_external_dma +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x9f52f7ee __sdhci_set_timeout +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa012cfcf sdhci_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa4a1a90d sdhci_set_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa6076c9d sdhci_cqe_disable +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa7810856 sdhci_cqe_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xbc4e57a9 sdhci_set_power +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc12d8209 sdhci_remove_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc1a521f3 sdhci_add_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc667af99 sdhci_end_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc990399a sdhci_set_power_and_bus_voltage +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xd0e6dfe2 sdhci_cleanup_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xdad9aaec sdhci_setup_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xea60577a sdhci_dumpregs +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xf320ae7c __sdhci_add_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xf5509dcd sdhci_adma_write_desc +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x0aa82b4a sdhci_pltfm_init +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x0fb832b7 sdhci_pltfm_pmops +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x1e02ab6f sdhci_get_property +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x4e6481e7 sdhci_pltfm_register +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x8d9ae756 sdhci_pltfm_suspend +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x8e195036 sdhci_pltfm_free +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xb37906ca sdhci_pltfm_resume +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xc1e50826 sdhci_pltfm_unregister +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xf966f508 sdhci_pltfm_clk_get_max_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x08fea117 tmio_mmc_host_runtime_suspend +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x325d0367 tmio_mmc_do_data_irq EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x378f2335 tmio_mmc_irq -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x43d53b50 tmio_mmc_do_data_irq -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x95273e0e tmio_mmc_host_alloc -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xac3206ec tmio_mmc_enable_mmc_irqs -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xb58723f1 tmio_mmc_host_probe -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xd7ccbd8d tmio_mmc_host_runtime_suspend -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xfd5dd2e1 tmio_mmc_host_runtime_resume -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xfdf0757d tmio_mmc_host_remove -EXPORT_SYMBOL_GPL drivers/most/most_core 0x1fc16826 most_register_interface -EXPORT_SYMBOL_GPL drivers/most/most_core 0x3daa77d5 most_start_channel -EXPORT_SYMBOL_GPL drivers/most/most_core 0x47a55d08 channel_has_mbo -EXPORT_SYMBOL_GPL drivers/most/most_core 0x4879279e most_register_component -EXPORT_SYMBOL_GPL drivers/most/most_core 0x4942991d most_deregister_component -EXPORT_SYMBOL_GPL drivers/most/most_core 0x69d7ccd1 most_get_mbo -EXPORT_SYMBOL_GPL drivers/most/most_core 0x81dbfbc0 most_submit_mbo -EXPORT_SYMBOL_GPL drivers/most/most_core 0x8b3959b3 most_put_mbo -EXPORT_SYMBOL_GPL drivers/most/most_core 0x8cd917a4 most_deregister_configfs_subsys -EXPORT_SYMBOL_GPL drivers/most/most_core 0xa6341ea2 most_resume_enqueue -EXPORT_SYMBOL_GPL drivers/most/most_core 0xd3ae5638 most_stop_channel -EXPORT_SYMBOL_GPL drivers/most/most_core 0xd851dc3f most_deregister_interface -EXPORT_SYMBOL_GPL drivers/most/most_core 0xe6ab29c7 most_register_configfs_subsys -EXPORT_SYMBOL_GPL drivers/most/most_core 0xefa928fd most_stop_enqueue -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x200c45ef cfi_cmdset_0200 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xdd126079 cfi_cmdset_0003 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xe23b4591 cfi_cmdset_0001 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x317f3d0b cfi_cmdset_0701 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xbcd4b95d cfi_cmdset_0006 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xc286f28d cfi_cmdset_0002 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0x5341940a cfi_cmdset_0020 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x0449cf71 cfi_qry_mode_off -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xf6bba75b cfi_qry_mode_on -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xf7d78187 cfi_qry_present -EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0x6f14c6fe hyperbus_register_device -EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0xd3e26f7d hyperbus_unregister_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x02353780 __mtd_next_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x03a76fe9 mtd_writev -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0c75947e mtd_read_oob -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0c7e71ee mtd_panic_write -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x143748b4 unregister_mtd_user -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x18c0dff0 mtd_device_parse_register -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1d8c86ab __put_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1da8f9a7 __register_mtd_parser -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x21784b00 mtd_device_unregister -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x275ecf69 put_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x376e6f5f mtd_pairing_groups -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3c4fdc6f mtd_ooblayout_get_eccbytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x40deb3b1 mtd_write -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x48ee52be mtd_del_partition -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4e462997 mtd_add_partition +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x505a9feb tmio_mmc_host_remove +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x54dd48c6 tmio_mmc_host_alloc +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x650dcd52 tmio_mmc_disable_mmc_irqs +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xa4337419 tmio_mmc_host_runtime_resume +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xaa7cff5d tmio_mmc_host_probe +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xdf2ec007 tmio_mmc_enable_mmc_irqs +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xe07a32da tmio_mmc_host_free +EXPORT_SYMBOL_GPL drivers/most/most_core 0x108d905b most_deregister_interface +EXPORT_SYMBOL_GPL drivers/most/most_core 0x1bb52523 most_register_configfs_subsys +EXPORT_SYMBOL_GPL drivers/most/most_core 0x323c7c02 most_start_channel +EXPORT_SYMBOL_GPL drivers/most/most_core 0x374d78c2 most_submit_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0x463c2ba2 most_get_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0x4812b14e most_deregister_configfs_subsys +EXPORT_SYMBOL_GPL drivers/most/most_core 0x499525fe most_stop_enqueue +EXPORT_SYMBOL_GPL drivers/most/most_core 0x590ce98a most_register_interface +EXPORT_SYMBOL_GPL drivers/most/most_core 0x5f9bfd8d most_stop_channel +EXPORT_SYMBOL_GPL drivers/most/most_core 0x7258ad45 most_register_component +EXPORT_SYMBOL_GPL drivers/most/most_core 0x81a1ac06 most_resume_enqueue +EXPORT_SYMBOL_GPL drivers/most/most_core 0x83b0764a most_put_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0x852bc1dd most_deregister_component +EXPORT_SYMBOL_GPL drivers/most/most_core 0xd8cdeffe channel_has_mbo +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x5b2ca37f cfi_cmdset_0001 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x64058697 cfi_cmdset_0003 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x991ba301 cfi_cmdset_0200 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x05c35fb3 cfi_cmdset_0006 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x7b911463 cfi_cmdset_0002 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x8868dbe5 cfi_cmdset_0701 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0xea5672e4 cfi_cmdset_0020 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x08107659 cfi_qry_mode_on +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xc802de6e cfi_qry_present +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xf97bfe3b cfi_qry_mode_off +EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0x2b6c8304 hyperbus_register_device +EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0xb0883da8 hyperbus_unregister_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0ac6474e mtd_read +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0ebf849f __get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x121045b0 mtd_pairing_info_to_wunit +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x122216af mtd_ooblayout_find_eccregion +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1a992f77 mtd_writev +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1b0e2afe mtd_add_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1d7c9d46 mtd_erase +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1de3f804 mtd_unpoint +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x20e0332a mtd_write_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x26360c28 mtd_ooblayout_get_eccbytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x272421d8 register_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x293f403c mtd_write_oob +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2f11f29c mtd_ooblayout_free +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x31a88a68 mtd_read_fact_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x334b8a79 mtd_ooblayout_ecc +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3b006aef mtd_pairing_groups +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3cb3e233 get_mtd_device_nm +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x45bf979b mtd_device_parse_register EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x50dabc2f mtd_table_mutex -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x51c7ace0 mtd_block_markbad -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x63abfee2 kill_mtd_super -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x68a66693 __get_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6cfaff73 mtd_get_user_prot_info -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6f83bf90 mtd_read_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x701164f7 mtd_write_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7398ef6d mtd_wunit_to_pairing_info -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x785eafe2 mtd_is_locked -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x796a8e3c mtd_ooblayout_count_freebytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7ed21238 mtd_ooblayout_ecc -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8046fa71 mtd_get_device_size -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x81299a95 mtd_ooblayout_count_eccbytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x81d5c0d4 mtd_block_isbad -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8ead028b register_mtd_user -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x913bc201 deregister_mtd_parser -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9200a726 mtd_erase_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9d46ea05 mtd_read_fact_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9e025d64 mtd_lock_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa1d254bd mtd_ooblayout_get_databytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa23b2fe6 mtd_write_oob -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa6281587 get_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb07ad1a1 mtd_unlock -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb26f794d mtd_pairing_info_to_wunit -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb8897ff8 mtd_read -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xbe96b3f2 mtd_get_unmapped_area -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xbef90cab mtd_block_isreserved -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc5247f8f mtd_ooblayout_set_databytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xce530d05 mtd_ooblayout_free -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd53efe27 mtd_ooblayout_find_eccregion -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd5dfeb2b get_mtd_device_nm -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xdfcf48ac get_tree_mtd -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe1930446 mtd_ooblayout_set_eccbytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe7483b5f mtd_point -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xec6d5ded mtd_get_fact_prot_info -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf53a0366 mtd_kmalloc_up_to -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf6165b57 mtd_lock -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf91a4a62 mtd_unpoint -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xfca46f88 mtd_erase -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x1c2a6eb8 mtd_blktrans_cease_background -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x2f6b3324 register_mtd_blktrans -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x342b2030 del_mtd_blktrans_dev -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x6c55c0e0 add_mtd_blktrans_dev -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xd62a64f5 deregister_mtd_blktrans -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x00f0f929 nanddev_bbt_get_block_status -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x046e59ba nanddev_init -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x0470420f nanddev_mtd_max_bad_blocks -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x050c4242 nanddev_bbt_cleanup -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x056910bc nand_get_large_page_hamming_ooblayout -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x06ea0b86 nand_ecc_init_req_tweaking -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x22bae6ee nand_ecc_tweak_req -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x503f6f3a nand_get_small_page_ooblayout -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x556b1a0f nanddev_mtd_erase -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x60d09d53 nanddev_erase -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x6c3d6dcb nanddev_bbt_set_block_status -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x84905920 nand_ecc_cleanup_req_tweaking -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x8e96e5e7 nand_get_large_page_ooblayout -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x9f64c68d nand_ecc_restore_req -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xb98eb8a4 nanddev_isreserved -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xc8429e59 nanddev_cleanup -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xdb2fa2c0 nanddev_bbt_init -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xdeb1f291 nanddev_ecc_engine_init -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xdfd6a27a nanddev_isbad -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xe9da03a9 nanddev_bbt_update -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xfd0aec5d nanddev_ecc_engine_cleanup -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xff61e9b4 nanddev_markbad -EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0xc1a252bd onenand_scan -EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0xee385b6d onenand_release -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0x0c9a759b brcmnand_probe -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0x10172cab brcmnand_remove -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0x890749e4 brcmnand_pm_ops -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/denali 0x0d0ef2e2 denali_chip_init -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x005a8b7c nand_deselect_target -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x0169acbb nand_ecc_choose_conf -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x0a0678b6 nand_read_page_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x0c6b2f8c nand_read_page_hwecc_oob_first +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x52de14e7 mtd_block_markbad +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x63a9f8dc mtd_ooblayout_count_eccbytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x684d8e77 mtd_get_user_prot_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x69c0e4a9 mtd_read_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6de5d73a mtd_device_unregister +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6e73163f mtd_ooblayout_get_databytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x77d32c96 mtd_is_locked +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7842aff6 mtd_get_device_size +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x78e6bb4c mtd_ooblayout_set_databytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x804b1a9c mtd_del_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8476143f mtd_get_fact_prot_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x89c67f4d deregister_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x908a1237 unregister_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x90bcf3fe mtd_lock_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x93c96729 __put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x99173645 mtd_get_unmapped_area +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9f0b10c7 mtd_ooblayout_set_eccbytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9f785ffc mtd_kmalloc_up_to +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa1aefd01 put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xac4319a8 get_tree_mtd +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xad63299a mtd_wunit_to_pairing_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb554b078 kill_mtd_super +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb9a81f5d mtd_panic_write +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc1637e43 mtd_read_oob +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc3e9eda5 __mtd_next_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc5fda000 __register_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc61c1045 get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc68df1ea mtd_unlock +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd1a02ef2 mtd_point +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xdb0d9099 mtd_ooblayout_count_freebytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf1dabaa9 mtd_erase_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf48be5ee mtd_block_isreserved +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf808f796 mtd_write +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xfb83954d mtd_lock +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xfe3583b2 mtd_block_isbad +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x223daab6 mtd_blktrans_cease_background +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x3d806663 add_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x4dd7fdf0 register_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xf1474cb3 del_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xffe68841 deregister_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x01f7f205 nanddev_ecc_engine_cleanup +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x03a6b7cd nanddev_erase +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x21c9f9dd nanddev_mtd_max_bad_blocks +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x384e087b nand_get_small_page_ooblayout +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x411c1756 nand_ecc_tweak_req +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x47a740a3 nanddev_isreserved +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x5134a61a nanddev_isbad +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x61593f3f nanddev_bbt_cleanup +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x72bf6c39 nanddev_ecc_engine_init +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x780be3f0 nanddev_markbad +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x82c0c5d1 nanddev_bbt_set_block_status +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x881ab915 nanddev_bbt_get_block_status +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x919ec6d1 nanddev_bbt_update +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xa045d39c nand_ecc_init_req_tweaking +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xa867f58c nanddev_init +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xab0860c8 nand_ecc_restore_req +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xad29db3a nand_ecc_cleanup_req_tweaking +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xc63c4327 nanddev_bbt_init +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xc773424c nand_get_large_page_hamming_ooblayout +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xd66aea81 nanddev_cleanup +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xe3c01732 nanddev_mtd_erase +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xe6e782a6 nand_get_large_page_ooblayout +EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0x33483e02 onenand_scan +EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0x3751d8ec onenand_release +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0x1feacd09 brcmnand_pm_ops +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0x7c0d2cc8 brcmnand_remove +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0xba9e89e5 brcmnand_probe +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/denali 0x0e75f948 denali_chip_init +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x0fdcdd91 nand_reset_op EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x11091291 nand_extract_bits -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x11368e9d nand_gpio_waitrdy -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x170300dc nand_read_oob_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x204e7704 nand_cleanup +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x20870098 nand_read_data_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x21d098fb nand_change_read_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 0x31005232 nand_soft_waitrdy -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x41eee162 nand_erase_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x44a68eda nand_status_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x39dca6cb nand_ecc_choose_conf +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x3becb1b0 nand_write_data_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x3c0ff1a3 nand_readid_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x4b6cd093 nand_op_parser_exec_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x4d1828b9 nand_read_oob_op EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x5632e63d nand_subop_get_num_addr_cyc -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x563e80e0 nand_readid_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x6025b889 nand_change_write_column_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x6028d99a nand_prog_page_end_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x6f96dbe8 nand_reset -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x79b72880 nand_wait_ready -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x87430857 nand_change_read_column_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x90384ce8 nand_write_data_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x90ac7660 nand_prog_page_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xbce0ebdb nand_cleanup -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xcef44f6f nand_read_data_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x649fb0c5 nand_read_page_hwecc_oob_first +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x7262c21d nand_gpio_waitrdy +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x7284da8b nand_decode_ext_id +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x79939b7c nand_select_target +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x90242f18 nand_status_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x945e35d6 nand_soft_waitrdy +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xa60d8fbc nand_prog_page_end_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xb3c96773 nand_change_write_column_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xbd05e6e3 nand_prog_page_begin_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 0xdfe929a8 nand_op_parser_exec_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xe655a118 nand_select_target -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xe6cf64c0 nand_prog_page_begin_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xf4453cff nand_reset_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xfbd5b19c nand_decode_ext_id -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/sm_common 0xeb017e70 sm_register_device -EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0x1baac0a4 spi_nor_scan -EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0x1e74a104 spi_nor_restore -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x0ad0b60e ubi_is_mapped -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x0d7c79d0 ubi_leb_change -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x20a2b844 ubi_leb_read_sg +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xdd61151e nand_wait_ready +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xe089236d nand_read_page_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xe217df26 nand_reset +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xe7510a48 nand_deselect_target +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xec4091d7 nand_prog_page_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xee41dd4a nand_erase_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/sm_common 0xae4bab07 sm_register_device +EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0x1f5244d5 spi_nor_scan +EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0x55d63620 spi_nor_restore +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x30bb7f0f ubi_leb_map EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x38e10c1d ubi_flush EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x42801d20 ubi_sync -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x4ead2b9b ubi_get_volume_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x49c35045 ubi_open_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x4be3d90b ubi_leb_read_sg +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x4f572e57 ubi_do_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x50373538 ubi_is_mapped +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x52c0e216 ubi_leb_read EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x66011ab6 ubi_get_device_info -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x84a0c3ed ubi_open_volume_nm +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x7eccbabf ubi_open_volume_path EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x85a8ee76 ubi_unregister_volume_notifier -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x9c3fd10a ubi_close_volume -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x9e773141 ubi_open_volume_path -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xa0fa6e33 ubi_leb_unmap -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xbc4458ad ubi_open_volume -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xc58a8cba ubi_leb_erase -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xcf2a594d ubi_leb_map -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xd4a02d93 ubi_leb_write -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xd8369ae0 ubi_do_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x8c68a015 ubi_get_volume_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x9286545b ubi_leb_erase +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xa842c313 ubi_open_volume_nm +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xc03addca ubi_leb_write +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xd6ca4122 ubi_leb_change +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xe9882d2f ubi_leb_unmap EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf5ee9ba8 ubi_register_volume_notifier -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xfeb396eb ubi_leb_read -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x0b25d30f mux_control_try_select -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x112a1ad9 mux_control_deselect -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x29504c5f mux_control_put -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x417f5204 devm_mux_chip_alloc -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x42c7aff4 mux_chip_free -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x4a66be7f mux_chip_register -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x5d44e885 mux_control_select -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x6f60c256 mux_control_states -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x7c623027 devm_mux_chip_register -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x813d9eb5 mux_chip_alloc -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x94d049d6 devm_mux_control_get -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xaf6494b8 mux_control_get -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xe8ce429f mux_chip_unregister -EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x4c9a3d41 devm_arcnet_led_init -EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0xbb54ba7b arcnet_led_event -EXPORT_SYMBOL_GPL drivers/net/bareudp 0x38f61f80 bareudp_dev_create -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x02112923 unregister_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x7080eb81 register_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xa2545721 c_can_power_up -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xae4ffa46 free_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xbe83bd4f c_can_power_down -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xce9d9acd alloc_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x28405d78 register_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x5ccf5f95 free_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x62f82120 alloc_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xbee57abe unregister_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x03394b65 alloc_can_err_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x06112eda can_free_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x0ab3dc85 unregister_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x0c15bab0 can_rx_offload_enable -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x0ebf9f4b can_rx_offload_queue_tail +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf9be0fc2 ubi_close_volume +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x1d415c1d mux_chip_register +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x248691ec mux_control_select +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x2c69ddbd mux_control_try_select +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x55fdab1d mux_control_get +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x636f17d6 mux_control_deselect +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x75efe698 devm_mux_chip_alloc +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x7aff84c8 mux_control_states +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x98ce3b8f devm_mux_control_get +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xd4830bd4 mux_control_put +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xd729ade2 mux_chip_free +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xdb8426b1 mux_chip_unregister +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xdcc0397b mux_chip_alloc +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xffa1ef81 devm_mux_chip_register +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x8c8d6478 arcnet_led_event +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0xd8f1bebd devm_arcnet_led_init +EXPORT_SYMBOL_GPL drivers/net/bareudp 0x5bff1984 bareudp_dev_create +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x510cbc1d alloc_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x58593993 c_can_power_up +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x9b7c99fd c_can_power_down +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xb166a0bf register_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xb17304dd unregister_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xd03946fa free_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x4c3a5466 alloc_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x916d5ac8 free_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xa574cc16 register_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xb0d0ae16 unregister_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x08b2c441 can_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x0952d1cb can_rx_offload_del EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x10d892eb can_get_state_str -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x15027699 can_change_state -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x1b89ea49 can_rx_offload_add_manual -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x2cd69ed0 alloc_candev_mqs -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x378ad197 register_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x4b586807 can_rx_offload_del -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x53462cc7 free_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x5722e97d can_get_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x5cf83b8d alloc_can_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x16cf262f safe_candev_priv +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x2270d04c alloc_candev_mqs +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x3db87c08 register_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x4276ddb5 can_change_mtu +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x43823c71 can_rx_offload_add_timestamp +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x4a311b86 free_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x4f7277b2 can_rx_offload_irq_offload_timestamp +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x543145a0 close_candev EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6047ede6 can_fd_len2dlc -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x60f5fed2 can_skb_get_frame_len -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x7563f043 can_bus_off -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x769bf4d5 open_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x7d78e512 can_rx_offload_add_timestamp -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x7ded44aa can_change_mtu -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x935d41fb can_rx_offload_queue_sorted -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xa7e5ff86 can_rx_offload_add_fifo -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xb011e7b6 safe_candev_priv -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xb1a589d8 close_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xb529e2a7 can_put_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xb7240ada can_rx_offload_irq_offload_timestamp -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xc74367b9 alloc_canfd_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xc86776a4 of_can_transceiver -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xd1b47638 can_rx_offload_get_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xefd760b3 can_rx_offload_irq_offload_fifo +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6606a9ff open_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x75086cd1 can_rx_offload_add_fifo +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x7a4a6224 alloc_canfd_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x7a4b2c5f alloc_can_err_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x7c1022b1 can_rx_offload_threaded_irq_finish +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x82fb1c87 of_can_transceiver +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x854adb32 can_rx_offload_irq_finish +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x86e4de89 can_bus_off +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x91787d4b can_rx_offload_add_manual +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xa74def6f can_rx_offload_queue_sorted +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xb25600ca can_change_state +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xb6bb7f5c can_free_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xd51e816e can_put_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xe39cc2ec can_rx_offload_enable +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xe9c3e619 can_skb_get_frame_len +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xeefd14e5 can_rx_offload_irq_offload_fifo +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf10edf57 can_rx_offload_get_echo_skb EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf12d9387 can_fd_dlc2len -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf58bdba6 can_rx_offload_irq_finish -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf632c5f7 can_rx_offload_threaded_irq_finish -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x09ed465c m_can_class_get_clocks -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x134bd128 m_can_class_free_dev -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x5b7ebf6d m_can_class_suspend -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x6eff8d7b m_can_class_resume -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x6f2afcb2 m_can_init_ram -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xa9cdaf4b m_can_class_unregister -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xd34cd314 m_can_class_allocate_dev -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xf7d34794 m_can_class_register -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x1b75212d register_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x1eabb92f free_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x23df722b unregister_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf43d087c unregister_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf551abc5 can_rx_offload_queue_tail +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf85eb4b1 alloc_can_skb +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x055ec03d m_can_class_suspend +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x22fcab11 m_can_class_get_clocks +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x4af1dc2f m_can_class_register +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x4d43b1be m_can_class_allocate_dev +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x91e1d997 m_can_class_unregister +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x9fd6ca05 m_can_init_ram +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xa6b8061c m_can_class_resume +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xbfdcd517 m_can_class_free_dev EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xe8e3a6ce alloc_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/dsa/lan9303-core 0xc7d8065d lan9303_indirect_phy_ops -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x07dec8ee ksz_port_mdb_add -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x0eec4dc8 ksz_phy_write16 -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x156505ac ksz_port_bridge_join -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x21d133d8 ksz_get_ethtool_stats -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x3babe3eb ksz_mac_link_down -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x535013fc ksz_init_mib_timer -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x5ffa2b85 ksz_sset_count -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x7c482b87 ksz_port_fdb_dump -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x7f68d9f9 ksz_port_mdb_del -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xa31a681e ksz_port_bridge_leave -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xbc081fbb ksz_enable_port -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xc5da7688 ksz_update_port_member -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xe291ab9d ksz_phy_read16 -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xf5abff15 ksz_port_fast_age -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x06d9e20b rtl8366_enable_vlan -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x208a9321 rtl8366_set_vlan -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x25cebe06 rtl8366_get_ethtool_stats -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x35a6c0d8 rtl8366_set_pvid -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x50f1fa99 rtl8366_mc_is_used -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x691ae747 rtl8366_vlan_del -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x834354a6 rtl8366_vlan_filtering -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xaa448ef6 rtl8366_reset_vlan -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xb0da2d22 rtl8366rb_variant -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xb91379ea rtl8366_enable_vlan4k -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xc160d132 rtl8366_init_vlan -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xc73e3d39 rtl8366_vlan_add -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xe6ff8ccf rtl8366_get_sset_count -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xea26773b rtl8366_get_strings -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xfed75d81 realtek_smi_write_reg_noack -EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0x19b2caf1 arc_emac_probe -EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0xcda0fe02 arc_emac_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0x9ecebcda enetc_hw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0xca84ea96 enetc_mdio_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0xd6802b1c enetc_mdio_read +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x4b40e98e free_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x4d970377 register_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x6eafe53c alloc_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xee2b16a7 unregister_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/dsa/lan9303-core 0x0f0ce1da lan9303_indirect_phy_ops +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x220827e2 ksz_port_bridge_leave +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x4241d69c ksz_get_ethtool_stats +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x42f62b87 ksz_phy_read16 +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x4a2b5db3 ksz_port_fdb_dump +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x555c40b9 ksz_sset_count +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x58b29726 ksz_port_bridge_join +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x693771f1 ksz_update_port_member +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x7247a4a7 ksz_init_mib_timer +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x8ab68cf6 ksz_port_fast_age +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x91e67a4f ksz_port_mdb_del +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xac99802f ksz_enable_port +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xbed4cb48 ksz_phy_write16 +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xcc3d4e13 ksz_mac_link_down +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xcc6bb695 ksz_port_mdb_add +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x0fd0cca1 rtl8366_vlan_filtering +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x33a52b2e rtl8366_get_ethtool_stats +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x39dbec97 rtl8366_vlan_del +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x7c022e4c rtl8366_init_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x8473b8f8 rtl8366_reset_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x89d93ec3 rtl8366_enable_vlan4k +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x969973da rtl8366_vlan_add +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x9ff4d829 realtek_smi_write_reg_noack +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xa3a66d6d rtl8366_get_sset_count +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xcd92b902 rtl8366_enable_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xd1c011a7 rtl8366_set_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xdd627123 rtl8366_get_strings +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xe06dc644 rtl8366rb_variant +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xef8a26c3 rtl8366_mc_is_used +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xf0328736 rtl8366_set_pvid +EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0x3ce144c1 arc_emac_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0x53911f5e arc_emac_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0x874c06f4 enetc_mdio_read EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0xd9d61d6f enetc_mdio_lock -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0x9efd02d3 i40e_client_device_unregister -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0xc3438ba2 i40e_client_device_register -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x08d90935 ice_add_rdma_qset -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xb3ef1a9a ice_del_rdma_qset -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xb4d3e50a ice_rdma_update_vsi_filter -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xca861947 ice_rdma_request_reset -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xcc8a109d ice_get_qos_params -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0202f481 mlx4_qp_reserve_range -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x06618181 mlx4_db_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x06f6afe7 __mlx4_register_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0c0b3b83 mlx4_free_cmd_mailbox -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0fe7f038 mlx4_set_vf_spoofchk -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x11c524f7 mlx4_map_sw_to_hw_steering_mode -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x13fc6b15 mlx4_buf_write_mtt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x149860ff mlx4_get_base_gid_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x15bb22c1 mlx4_set_vf_rate -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x167a7daf mlx4_vf_get_enable_smi_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1703b10d mlx4_config_vxlan_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1d42590c mlx4_get_admin_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1e67d06b mlx4_unbond -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x20a31ed6 mlx4_alloc_cmd_mailbox -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2112e117 mlx4_unicast_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x21578168 mlx4_srq_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x292dfb28 mlx4_qp_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x31ea2ab2 mlx4_bf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x31f1f3d6 mlx4_get_slave_default_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x34380e0f mlx4_uar_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x36e4151f mlx4_flow_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x39cddcd3 mlx4_multicast_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3d81f57a mlx4_srq_arm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3d8352a7 mlx4_hw_rule_sz -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3d9c58c8 __mlx4_replace_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3e0f5a2c mlx4_mr_hw_change_pd -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3ea410f6 mlx4_cq_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4472082b mlx4_SYNC_TPT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x471db634 mlx4_mtt_addr -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x494496e0 mlx4_map_sw_to_hw_steering_id -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4b6595cb mlx4_alloc_hwq_res -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x506c3f81 mlx4_qp_to_ready -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x51db9375 mlx4_ACCESS_PTYS_REG -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x52b2aa52 mlx4_mw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x534bcfa7 mlx4_uar_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5350fe42 mlx4_read_clock -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x58ae3372 mlx4_mtt_cleanup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5a26da78 mlx4_cq_resize -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5ae07388 mlx4_cq_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5bbed7c7 mlx4_mr_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5e391a92 mlx4_find_cached_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x611558f3 __mlx4_cmd -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x69ea09fa mlx4_set_vf_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6babea42 mlx4_flow_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6cebc5cf mlx4_wol_read -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6de8293c mlx4_db_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x705dabdc mlx4_register_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x71416be3 mlx4_mr_rereg_mem_cleanup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x73bcb895 mlx4_mr_hw_write_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x787f259d mlx4_unregister_interface -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x797a2750 mlx4_mr_hw_put_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x79cf1742 mlx4_free_hwq_res -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7e593ad3 mlx4_counter_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x82620c42 mlx4_flow_steer_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x82ba8438 mlx4_config_roce_v2_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8a308325 mlx4_get_devlink_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8ac58d19 mlx4_phys_to_slaves_pport_actv -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8d734cf2 mlx4_get_default_counter_index -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8e97bde6 mlx4_wol_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8f826ad7 mlx4_register_interface -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8fea67a8 mlx4_get_vf_config -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x906aafbe mlx4_qp_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x91af9706 mlx4_qp_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x960185d9 mlx4_mtt_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x97699ea2 mlx4_mr_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x978f2c9c mlx4_update_qp -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x97da5a8a mlx4_write_mtt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x97ea75cf mlx4_unicast_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9bff7225 mlx4_get_counter_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9d246c22 mlx4_srq_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9f5f6169 mlx4_mw_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa075101a mlx4_INIT_PORT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa25f421b mlx4_unregister_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa2b09ff8 mlx4_mr_hw_change_access -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa3259cb2 mlx4_vf_smi_enabled -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa3c05b26 mlx4_phys_to_slaves_pport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa4663eb1 mlx4_cq_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa4d53691 mlx4_get_protocol_dev -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa4f30c50 mlx4_mr_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa827d8e6 mlx4_get_base_qpn -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xad291757 mlx4_srq_lookup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xad7dacb0 mlx4_unregister_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xae9b7123 mlx4_qp_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb0d43ecb mlx4_unicast_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb1016720 mlx4_replace_zero_macs -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb11f54e8 mlx4_counter_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb3002a87 mlx4_get_active_ports -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb46233e7 mlx4_multicast_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb565db5d __mlx4_unregister_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbb4cdc12 mlx4_FLOW_STEERING_IB_UC_QP_RANGE -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbcf2044d mlx4_pd_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc277dc08 mlx4_config_dev_retrieval -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc7396c65 mlx4_set_vf_link_state -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcb12ea48 mlx4_port_map_set -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcb8c2253 mlx4_phys_to_slave_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcecf665c mlx4_buf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcf228d7f mlx4_flow_steer_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd5de26b3 mlx4_set_vf_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd72dc720 mlx4_multicast_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd88b07fd mlx4_xrcd_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd95dfb12 mlx4_vf_set_enable_smi_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdbd3a778 mlx4_qp_release_range -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdcc5a73f mlx4_mr_hw_get_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xddb2b9d3 mlx4_mw_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe1c73af2 mlx4_srq_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe35dbbfe mlx4_bf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe42a532a mlx4_set_admin_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe6028dbf mlx4_find_cached_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe67b59fc mlx4_pd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe85d8017 mlx4_qp_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe9b27115 mlx4_unicast_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xec420b08 mlx4_bond -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xecfa9733 mlx4_register_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xef5b91a0 mlx4_CLOSE_PORT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xefafbf98 mlx4_xrcd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf3a4bafa mlx4_multicast_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf3adcd8f mlx4_mr_rereg_mem_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf46374f7 mlx4_get_vf_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfd12c93b mlx4_slave_convert_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfe76406b mlx4_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfee34b7a mlx4_get_internal_clock_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0xe3df9073 enetc_mdio_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0xfa947784 enetc_hw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0x2f6d3447 i40e_client_device_register +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0xff2a1cf0 i40e_client_device_unregister +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x1abede39 ice_rdma_update_vsi_filter +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x27f231ca ice_rdma_request_reset +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x6e8a5889 ice_get_qos_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xc1761260 ice_add_rdma_qset +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xeff1e6ac ice_del_rdma_qset +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x006d08c6 mlx4_alloc_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x019f7a26 mlx4_srq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0280e18b mlx4_update_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0288c824 mlx4_mr_rereg_mem_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x031cc62f mlx4_replace_zero_macs +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0933e6ba mlx4_uar_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0d06923d mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0e58b598 mlx4_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x114848f3 __mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x16288e6e mlx4_ACCESS_PTYS_REG +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1ce4eae4 mlx4_mw_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1faca77f mlx4_CLOSE_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x20eb821b mlx4_config_vxlan_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x22dbe0c8 mlx4_get_slave_default_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x25619a46 mlx4_unicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2786a990 mlx4_find_cached_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2886e818 mlx4_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2b84e65a mlx4_srq_lookup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2ba918ec mlx4_multicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2cab9c67 mlx4_buf_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2fc466ca mlx4_qp_reserve_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2ff437b5 mlx4_vf_set_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x31a56104 mlx4_flow_steer_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x31f17f32 mlx4_cq_resize +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3592f6ad mlx4_bond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x37a8b7d1 mlx4_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x39f80c68 mlx4_counter_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3b30f310 mlx4_get_vf_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3b461ad4 mlx4_free_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3b82aaf4 mlx4_get_internal_clock_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3bce5679 mlx4_qp_release_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x451001ef mlx4_flow_steer_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x47e96398 mlx4_mw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x48fa6113 mlx4_mr_hw_put_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x49488fe9 mlx4_unicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4b19594b mlx4_set_vf_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4c20c511 mlx4_pd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4ee64bed mlx4_unregister_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x51c2767e mlx4_get_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x56272a9c mlx4_get_default_counter_index +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x57ccedb5 mlx4_srq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x582e30ae mlx4_bf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x590eace0 mlx4_flow_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x59cae79d mlx4_vf_smi_enabled +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5e711011 mlx4_flow_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5ed0faae mlx4_phys_to_slave_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6438b285 mlx4_qp_to_ready +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6518ed0a mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x654626ba mlx4_unicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6868717c mlx4_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6ac0534a mlx4_wol_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6ad38272 mlx4_set_vf_link_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6e38d30b mlx4_mr_rereg_mem_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x75e243c6 mlx4_mr_hw_get_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x78496602 mlx4_qp_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x78ef4d69 mlx4_set_vf_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7ea80a12 __mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x851b2578 mlx4_mr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x87e52cb2 mlx4_alloc_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x88f49dff mlx4_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8a4e6a1e mlx4_srq_arm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8c4aa0cb mlx4_multicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8f10f811 mlx4_qp_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x91d556d4 mlx4_mr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9336ccd3 mlx4_srq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x94f86b26 mlx4_qp_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x951e36b4 mlx4_read_clock +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9a52e8e7 mlx4_mw_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9a564502 mlx4_port_map_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9c16b27c mlx4_get_devlink_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9c88ea76 __mlx4_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa1a56dae mlx4_mr_hw_change_pd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa1c06efe mlx4_get_vf_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa22c5c35 mlx4_config_dev_retrieval +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa29dedb0 mlx4_multicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa5309a96 mlx4_free_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa7eb1656 mlx4_get_active_ports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa9470e69 mlx4_multicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb04132ab mlx4_phys_to_slaves_pport_actv +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb72b84d3 mlx4_cq_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb72e3149 mlx4_mtt_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb7909d37 mlx4_map_sw_to_hw_steering_id +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb8818745 mlx4_set_vf_spoofchk +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xba3c3a43 mlx4_get_base_gid_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xba55b1f2 mlx4_set_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbb5154d4 mlx4_config_roce_v2_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbc09c719 mlx4_get_counter_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbce92058 mlx4_unicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc10b4919 mlx4_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc3b00e1d mlx4_get_base_qpn +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc4ee46fd mlx4_slave_convert_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc8d375b7 mlx4_pd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcc1b52b7 mlx4_register_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcee1ea91 mlx4_bf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd03067b9 __mlx4_replace_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd163823a mlx4_wol_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd320325e mlx4_INIT_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd3b4917c mlx4_register_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd482cb6f mlx4_get_protocol_dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd5ccd0bc mlx4_mr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd7bcca41 mlx4_hw_rule_sz +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd7cb6dee mlx4_unbond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdb6a5ceb mlx4_phys_to_slaves_pport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdbe7a5e3 mlx4_set_vf_rate +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdc2733f5 mlx4_mtt_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdd6083d6 mlx4_mr_hw_change_access +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdf82cce3 mlx4_mtt_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe065f54c mlx4_find_cached_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe45bce63 mlx4_mr_hw_write_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeb790631 mlx4_counter_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xed40a3a7 mlx4_map_sw_to_hw_steering_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeef2bf06 mlx4_cq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xef68a2ea mlx4_xrcd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf2253ca0 mlx4_vf_get_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf2cb837d mlx4_FLOW_STEERING_IB_UC_QP_RANGE +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf96bbb17 mlx4_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf9b54427 mlx4_uar_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfae24779 mlx4_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfaf245ba mlx4_SYNC_TPT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfb81379f mlx4_unregister_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfd85d222 mlx4_cq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x032aa687 mlx5_query_port_admin_status 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 0x0ccf4088 mlx5_dm_sw_icm_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0dbc64b5 mlx5_set_port_caps -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x11f96cc4 mlx5_query_port_pfc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x17c2c619 mlx5_nic_vport_affiliate_multiport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x193be7a8 mlx5_query_port_tc_group -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x19580f98 mlx5_query_hca_vport_gid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1a2ababb mlx5_core_query_ib_ppcnt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1a90e4db mlx5_query_hca_vport_node_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1f8e5c52 mlx5_query_port_wol -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2083dd1f mlx5_query_hca_vport_pkey -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x21efd3a1 mlx5_query_nic_vport_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2713f315 mlx5_set_port_prio_tc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2989ae3a mlx5_modify_port_ets_rate_limit -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x29e62b44 mlx5_query_min_inline -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2a39df3f mlx5_modify_nic_vport_promisc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2c52b561 mlx5_query_nic_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x308082ec mlx5_query_module_eeprom_by_page -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x361c5c30 mlx5_core_query_sq_state -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x37738d5f mlx5_query_port_ets_rate_limit -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x389f9bfb mlx5_set_port_pfc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3ee27dde mlx5_query_port_vl_hw_cap -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4074c53d mlx5_query_nic_vport_node_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x420dc84f mlx5_nic_vport_update_local_lb -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4660463b mlx5_query_nic_vport_min_inline -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x471bed55 mlx5_query_nic_vport_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x472c33dd mlx5_modify_nic_vport_vlans -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x53ee311d mlx5_set_port_admin_status -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5a4242da mlx5_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5aaaae80 mlx5_query_port_ptys -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x645b85ad mlx5_dm_sw_icm_dealloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x64718eba mlx5_db_alloc_node -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x64cca9bd mlx5_accel_esp_create_xfrm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6771b358 mlx5_db_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x68575bd9 mlx5_core_modify_hca_vport_context -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6a14adae mlx5_query_port_admin_status -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6e14f3a2 mlx5_set_port_wol -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x78ba7fae mlx5_query_port_tc_bw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7aff0d69 mlx5_toggle_port_link -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7deb8e21 mlx5_core_query_vport_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0eafa388 mlx5_set_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0ed7f213 mlx5_query_min_inline +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x105c1399 mlx5_set_port_tc_bw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x117cae68 mlx5_nic_vport_unaffiliate_multiport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x17532b3e mlx5_frag_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x175cf34d mlx5_dm_sw_icm_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1ef93c2e mlx5_set_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x20034f8c mlx5_nic_vport_affiliate_multiport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x249a1edb mlx5_query_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2be0984f mlx5_dm_sw_icm_dealloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2d1a7ce5 mlx5_eswitch_get_total_vports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2f6ae488 mlx5_query_port_tc_bw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2f935eb3 mlx5_modify_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x32edded6 mlx5_nic_vport_query_local_lb +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x350e7b7f mlx5_frag_buf_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x39dbf0b5 mlx5_query_hca_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3eba75b2 mlx5_query_nic_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x42318588 mlx5_query_port_prio_tc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x42e1c831 mlx5_query_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x45c73179 mlx5_query_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x499b3492 mlx5_accel_esp_destroy_xfrm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5498cd3c mlx5_toggle_port_link +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x62135272 mlx5_query_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x65ac53dc mlx5_query_port_ptys +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x65c70fae mlx5_query_port_oper_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6894afa0 mlx5_set_port_tc_group +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x691e7a7f mlx5_core_query_ib_ppcnt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6d9abafe mlx5_accel_esp_create_xfrm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x70208060 mlx5_eswitch_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7323ed03 mlx5_set_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7332a04a mlx5_accel_ipsec_device_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7513c18b mlx5_query_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x78b19659 mlx5_set_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7aae63c4 mlx5_core_reserved_gids_count +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7d60c6f0 mlx5_query_port_tc_group +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fc68f90 mlx5_modify_nic_vport_vlans 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 0x84bc4b36 mlx5_accel_ipsec_device_caps -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8e2f136f mlx5_accel_esp_modify_xfrm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8e5eab97 mlx5_nic_vport_query_local_lb -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x90dd8291 mlx5_modify_nic_vport_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96453050 mlx5_set_port_pause -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x990abdb0 mlx5_eswitch_mode -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9b24ed91 mlx5_query_module_eeprom -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9ffe5ab9 mlx5_query_port_prio_tc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa0056aae mlx5_query_nic_vport_mac_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa044abd8 mlx5_nic_vport_enable_roce -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa5a91df8 mlx5_query_port_max_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa69f9ac9 mlx5_modify_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x820300a5 mlx5_modify_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x850b52d9 mlx5_query_nic_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x88bcf8b1 mlx5_nic_vport_update_local_lb +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x92fdfcff mlx5_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9355d65d mlx5_modify_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9ca4a3bb mlx5_core_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa13e1f23 mlx5_set_port_mtu EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa75f49d6 mlx5_fill_page_array -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa9e36e1f mlx5_query_port_oper_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaf2c38e8 mlx5_core_reserved_gids_count -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb15c5ee3 mlx5_query_port_pause -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb42b69d7 mlx5_set_port_tc_group -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb4d51337 mlx5_set_port_tc_bw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc2a874d8 mlx5_query_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc39a9b60 mlx5_accel_esp_destroy_xfrm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc7151afe mlx5_nic_vport_unaffiliate_multiport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcc7c8502 mlx5_query_hca_vport_context -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd337cf25 mlx5_query_nic_vport_qkey_viol_cntr -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd4c803de mlx5_frag_buf_alloc_node -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd5d3dbd7 mlx5_query_nic_vport_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdada6fcf mlx5_core_access_reg -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdd55a313 mlx5_query_nic_vport_promisc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf2ec4391 mlx5_query_hca_vport_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf35725eb mlx5_set_port_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf365bc3f mlx5_frag_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf8d1b907 mlx5_db_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfd8b61be mlx5_modify_nic_vport_mac_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfe91ec88 mlx5_eswitch_get_total_vports -EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x4f3c360f ks8851_remove_common -EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x6f3b04f0 ks8851_suspend -EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x8f20b347 ks8851_probe_common -EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0xbddf456a ks8851_resume -EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x9536792c devm_regmap_init_encx24j600 +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa8b5f17e mlx5_query_module_eeprom +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa9813562 mlx5_query_nic_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaec3fb3b mlx5_query_hca_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb0f25912 mlx5_nic_vport_enable_roce +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb411893f mlx5_query_nic_vport_qkey_viol_cntr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb603d1ba mlx5_modify_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb8f203ac mlx5_db_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbc028d96 mlx5_query_port_max_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbefa3184 mlx5_query_hca_vport_gid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc683d033 mlx5_query_nic_vport_min_inline +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc9a3f3ae mlx5_set_port_prio_tc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xca831cdc mlx5_core_query_vport_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xce18fba1 mlx5_core_query_sq_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd00e2d9f mlx5_query_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd96ad086 mlx5_query_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdcfdf147 mlx5_query_hca_vport_pkey +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xde8fed23 mlx5_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe1fb9931 mlx5_query_module_eeprom_by_page +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe212aaa1 mlx5_set_port_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe96cd57f mlx5_accel_esp_modify_xfrm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf09f5b4b mlx5_query_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf0c672ac mlx5_query_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf2e7eb00 mlx5_query_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf377fc67 mlx5_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf63309c5 mlx5_query_port_vl_hw_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf9286a7e mlx5_modify_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfc157168 mlx5_core_modify_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x20d4bcd7 ks8851_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0xaabdb0a2 ks8851_probe_common +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0xdec3c4a0 ks8851_suspend +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0xe4a361da ks8851_remove_common +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x76bcd22a 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 0x131e610a ocelot_regfields_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1fb98896 ocelot_cls_flower_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x28c94254 ocelot_cls_flower_replace -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3dd04e60 ocelot_phylink_mac_link_up -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6d21a515 ocelot_phylink_mac_link_down -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6d6a222c ocelot_port_writel -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6f2428f4 ocelot_port_readl -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x730e42cd ocelot_port_rmwl -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa2edc247 __ocelot_write_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd4cb804c ocelot_cls_flower_destroy -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xecbe4daa __ocelot_read_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xef3ac126 ocelot_regmap_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfa24d346 __ocelot_rmw_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0a544bbe ocelot_cls_flower_destroy +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1a264595 ocelot_port_writel +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2831f24b ocelot_phylink_mac_link_down +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x28ef3012 __ocelot_rmw_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3149aaed ocelot_port_readl +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x850d7324 ocelot_port_rmwl +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9284c58d __ocelot_read_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa736485a __ocelot_write_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xab0de78a ocelot_regmap_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xcc78aaa7 ocelot_phylink_mac_link_up +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xdc85e127 ocelot_cls_flower_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf15e0e60 ocelot_cls_flower_replace +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf163f6e1 ocelot_regfields_init EXPORT_SYMBOL_GPL drivers/net/ethernet/qualcomm/qca_7k_common 0x0b28a9ad qcafrm_create_footer EXPORT_SYMBOL_GPL drivers/net/ethernet/qualcomm/qca_7k_common 0x2b6ddf3f qcafrm_fsm_decode EXPORT_SYMBOL_GPL drivers/net/ethernet/qualcomm/qca_7k_common 0x41da0375 qcafrm_create_header -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x77cd388a stmmac_resume -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x817ba344 stmmac_suspend -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x8a93a386 stmmac_dvr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x6974f16a stmmac_dvr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x87164250 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 0x9cc15944 stmmac_dvr_probe -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xa4c171e8 stmmac_bus_clks_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xc3346259 stmmac_bus_clks_config EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xd1cc24db stmmac_set_mac_addr -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xf2e1ff2b stmmac_init_tstamp_counter -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x922ebccd stmmac_remove_config_dt -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xc063bba1 stmmac_probe_config_dt -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xc8dba6b4 stmmac_pltfr_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xf17239f9 stmmac_pltfr_pm_ops -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xfc022ea4 stmmac_get_platform_resources -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0x13095406 am65_cpts_tx_timestamp +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xeefb0997 stmmac_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xf7653f26 stmmac_dvr_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xfa1d0f1f stmmac_init_tstamp_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x29640b82 stmmac_pltfr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x4994e8ac stmmac_probe_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x5b931516 stmmac_remove_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xaeaf7891 stmmac_get_platform_resources +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xcb726cd2 stmmac_pltfr_pm_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0x0caae46e am65_cpts_create EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0x405b51c2 am65_cpts_ns_gettime EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0x91fd3558 am65_cpts_rx_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0xaea6e23e am65_cpts_prep_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 0xbe20d9d5 am65_cpts_create EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0xbfc83e4d am65_cpts_estf_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0xceca63a3 am65_cpts_prep_tx_timestamp +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0xe29c4235 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 0x7f7174cc w5100_pm_ops -EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xe1be927a w5100_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xebed1e89 w5100_ops_priv -EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xef5c5f28 w5100_probe -EXPORT_SYMBOL_GPL drivers/net/geneve 0xf0240a43 geneve_dev_create_fb -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x4c4dff5e ipvlan_link_setup -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x70a8e600 ipvlan_link_delete -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xc2f023d1 ipvlan_link_new -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xe44f8248 ipvlan_count_rx -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xfbaf43c4 ipvlan_link_register -EXPORT_SYMBOL_GPL drivers/net/macsec 0x173dc8ca macsec_pn_wrapped -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x07d49992 macvlan_common_setup -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x0eac9c5d macvlan_dellink -EXPORT_SYMBOL_GPL drivers/net/macvlan 0xb6948e66 macvlan_common_newlink -EXPORT_SYMBOL_GPL drivers/net/macvlan 0xdb41b204 macvlan_link_register -EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-i2c 0x17417a9a mdio_i2c_alloc -EXPORT_SYMBOL_GPL drivers/net/net_failover 0x6493b64e net_failover_create -EXPORT_SYMBOL_GPL drivers/net/net_failover 0x6c9f45f3 net_failover_destroy -EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x06e8acc7 xpcs_config_eee -EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x38e75868 xpcs_create -EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x4f9c94d1 xpcs_do_config -EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x8ea3ee33 xpcs_destroy -EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xa08e202f xpcs_get_an_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x05975635 w5100_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x1bfa73d1 w5100_pm_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xb641c24e w5100_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xf6b4d5e3 w5100_ops_priv +EXPORT_SYMBOL_GPL drivers/net/geneve 0xd27255ba geneve_dev_create_fb +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x12f5fa55 ipvlan_link_setup +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x88adb86f ipvlan_link_new +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xaf437401 ipvlan_link_delete +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xb283b494 ipvlan_count_rx +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xc741f2fb ipvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/macsec 0xe4dcaa80 macsec_pn_wrapped +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x3160c4d2 macvlan_common_setup +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x5d560bcd macvlan_dellink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xb05e3e4c macvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xcb1501d7 macvlan_common_newlink +EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-i2c 0xdcc107c8 mdio_i2c_alloc +EXPORT_SYMBOL_GPL drivers/net/net_failover 0x47dfd437 net_failover_create +EXPORT_SYMBOL_GPL drivers/net/net_failover 0x6b86d206 net_failover_destroy +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x1768cbfa xpcs_create +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x17f2c14e xpcs_destroy +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x3153d663 xpcs_validate EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xe05362b0 xpcs_link_up -EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xefd17fe3 xpcs_validate -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x0054f0ef bcm_phy_modify_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x006e53b2 bcm_phy_cable_test_start_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x0bc0f8d3 bcm54xx_auxctl_read -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x18c5c8cd __bcm_phy_modify_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x1d95342e bcm_phy_write_misc -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x336d2103 bcm_phy_config_intr -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x37851995 bcm_phy_get_stats -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x3e9a408e bcm_phy_set_eee -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x45a9d559 bcm_phy_28nm_a0b0_afe_config_init -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x50a2a20f bcm_phy_write_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x5293d2f6 bcm_phy_cable_test_get_status_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x5efeb0f4 bcm_phy_r_rc_cal_reset -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x5f4db7dc bcm_phy_downshift_get -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x6c3c1ddd bcm_phy_cable_test_start -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x6d4b24df bcm_phy_write_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x839e4931 bcm_phy_write_shadow -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x84aef75e bcm_phy_handle_interrupt -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x907ff976 __bcm_phy_write_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x93d1fe5f bcm_phy_read_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x98bf5404 bcm_phy_downshift_set -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x99990401 __bcm_phy_read_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa160ceb1 bcm_phy_read_misc -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa62ef341 bcm_phy_read_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xab08d183 bcm_phy_modify_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xac66091f __bcm_phy_read_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xad967fa6 __bcm_phy_write_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb36400b8 bcm_phy_get_sset_count -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb399e9a1 __bcm_phy_modify_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb3e30831 bcm_phy_enable_apd -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xbd46a2b5 bcm_phy_cable_test_get_status -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xcf64c909 bcm_phy_get_strings -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xd79e6e75 bcm_phy_ack_intr -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xdae4040e bcm_phy_enable_jumbo -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xed1de1eb bcm_phy_read_shadow -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x044d98aa phylink_mii_c22_pcs_an_restart +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xe317cff3 xpcs_do_config +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xe5f25fdb xpcs_get_an_mode +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xfb1bf555 xpcs_config_eee +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x01865e2c bcm_phy_enable_apd +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x02c75147 bcm_phy_write_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x0da4af71 bcm_phy_handle_interrupt +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x1025c5e8 __bcm_phy_modify_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x10f2ab3a bcm_phy_read_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x126379d4 __bcm_phy_read_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x1c018041 bcm_phy_get_sset_count +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x29152ce2 bcm_phy_config_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x2cf6dcb5 __bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x33d7c1bf bcm_phy_ack_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x36a97081 bcm_phy_downshift_set +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x4a824f5c bcm_phy_r_rc_cal_reset +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x501a7fd3 bcm_phy_read_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x54b902ed bcm_phy_get_strings +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x5d3f154d bcm_phy_cable_test_start_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x668f0566 bcm_phy_28nm_a0b0_afe_config_init +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x66f07af0 bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x707ef87c __bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x72ef2a92 bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x78754e2b __bcm_phy_modify_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa7f93e80 bcm_phy_read_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb0e644a4 bcm_phy_cable_test_get_status +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb2ba203c bcm_phy_modify_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xbc1f4618 __bcm_phy_write_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc8f08a1a bcm_phy_downshift_get +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc957c1bf bcm_phy_write_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xd0232971 bcm_phy_set_eee +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xd357d2a2 bcm_phy_get_stats +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xd5c409f6 bcm_phy_cable_test_get_status_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xd8e7da05 bcm54xx_auxctl_read +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xdaeaabff bcm_phy_modify_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf619e05d bcm_phy_write_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xfbe89a8d bcm_phy_cable_test_start +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xfe646795 bcm_phy_enable_jumbo +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x011db752 phylink_mii_c22_pcs_config +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x037d11f1 phylink_mii_c22_pcs_an_restart EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x08213956 phylink_ethtool_get_wol EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x12135396 phylink_mac_change EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x131e8b94 phylink_helper_basex_speed 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 0x2a5a0dbd phylink_create EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x2c8e28ee phylink_ethtool_get_eee -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x52ed29d7 phylink_connect_phy +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x30c95988 phylink_mii_c45_pcs_get_state EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x57727285 phylink_ethtool_set_eee EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x59e0695d phylink_speed_down EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x5d0c4dcc phylink_speed_up +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x5f3b5665 phylink_create EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x62104126 phylink_ethtool_set_wol EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x6831eccf phylink_ethtool_ksettings_get EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x6fa426d2 phylink_ethtool_nway_reset -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x741a9663 phylink_mii_c22_pcs_get_state EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x825c7340 phylink_get_eee_err +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x90df42ac phylink_connect_phy EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x911fcd6c phylink_start EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x983276da phylink_disconnect_phy -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x993cb620 phylink_mii_c22_pcs_set_advertisement EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x9ad6f36d phylink_decode_usxgmii_word -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xb1567e88 phylink_fwnode_phy_connect +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xb4f095e4 phylink_mii_c22_pcs_set_advertisement +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xc0a3dbc7 phylink_fwnode_phy_connect EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xc0a8f4be phylink_resume -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xc13b9b6e phylink_of_phy_connect EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xc1d15a4c phylink_set_port_modes EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xc3906c58 phylink_ethtool_ksettings_set -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xc4f56665 phylink_mii_c45_pcs_get_state +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xd4c19120 phylink_of_phy_connect +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xd67d1308 phylink_mii_c22_pcs_get_state EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xdcb0a2c0 phylink_stop EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xde66f4a7 phylink_mii_ioctl -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xdfa20cf2 phylink_mii_c22_pcs_config EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xe8c137ed phylink_set_pcs EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xec02ebe0 phylink_init_eee EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xf3083a1d phylink_destroy EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xf8fe5642 phylink_ethtool_get_pauseparam -EXPORT_SYMBOL_GPL drivers/net/tap 0x0537469e tap_create_cdev -EXPORT_SYMBOL_GPL drivers/net/tap 0x1729432f tap_handle_frame -EXPORT_SYMBOL_GPL drivers/net/tap 0x2b74fe1d tap_queue_resize -EXPORT_SYMBOL_GPL drivers/net/tap 0x499d6fc5 tap_get_minor -EXPORT_SYMBOL_GPL drivers/net/tap 0x5291576c tap_del_queues -EXPORT_SYMBOL_GPL drivers/net/tap 0xa636d4a5 tap_get_ptr_ring -EXPORT_SYMBOL_GPL drivers/net/tap 0xd90f3186 tap_get_socket -EXPORT_SYMBOL_GPL drivers/net/tap 0xf5700000 tap_free_minor -EXPORT_SYMBOL_GPL drivers/net/tap 0xfe06ff30 tap_destroy_cdev -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x15a890f8 usbnet_generic_cdc_bind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x1a06908e usbnet_cdc_status -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x39096fa5 usbnet_cdc_bind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xa9f631ce usbnet_cdc_update_filter -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xc2bc56e4 usbnet_ether_cdc_bind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xca219d0b usbnet_cdc_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x1a09d057 cdc_ncm_rx_verify_ndp32 -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x49608807 cdc_ncm_rx_verify_nth32 -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x55bf5846 cdc_ncm_rx_verify_ndp16 -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x7cb91c24 cdc_ncm_bind_common -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xa8112f69 cdc_ncm_fill_tx_frame -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xcd44eecc cdc_ncm_change_mtu -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xd0acdc21 cdc_ncm_rx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xd3bc62d9 cdc_ncm_select_altsetting -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xea2cd702 cdc_ncm_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xf2a1d54b cdc_ncm_tx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xfe651b9e cdc_ncm_rx_verify_nth16 -EXPORT_SYMBOL_GPL drivers/net/usb/r8152 0xa4c8aa1d rtl8152_get_version -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x0b5a3dab rndis_tx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x17f66183 rndis_rx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x207218d1 rndis_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xb9e8551b rndis_command -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xc4ad1ed1 rndis_status -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xe9281e1b generic_rndis_bind -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x0a59f980 usbnet_write_cmd -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x0ef6ad4c usbnet_defer_kevent -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x13ef34cc usbnet_skb_return -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1e816fb7 usbnet_write_cmd_async -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x22b3ea3d usbnet_change_mtu -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2bfb0ddb usbnet_set_msglevel -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2d372d06 usbnet_resume -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x357ad5d6 usbnet_get_link_ksettings_internal -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3c08dc62 usbnet_set_rx_mode -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4666f75e usbnet_get_link_ksettings_mii -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x49b420ac usbnet_tx_timeout -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4fce8722 usbnet_stop -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5196c125 usbnet_purge_paused_rxq -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x55b09bce usbnet_nway_reset -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5963f288 usbnet_resume_rx -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x618f6dc2 usbnet_set_link_ksettings_mii -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x62974d61 usbnet_disconnect -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x65604e1a usbnet_get_ethernet_addr -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7f3a8f41 usbnet_unlink_rx_urbs -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x88ff3cfe usbnet_status_start -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x934f656b usbnet_get_link -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9e991f99 usbnet_status_stop -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9fdb33c2 usbnet_read_cmd -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa23dda5c usbnet_get_msglevel -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xacd0a884 usbnet_start_xmit -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xaf05ef7d usbnet_probe -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb48d8a53 usbnet_get_endpoints -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb839238c usbnet_get_drvinfo -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xba4bdb52 usbnet_update_max_qlen -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc62cf539 usbnet_read_cmd_nopm -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd47abcef usbnet_suspend -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd54eab77 usbnet_pause_rx -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xdec8718e usbnet_open -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe3c56a80 usbnet_write_cmd_nopm -EXPORT_SYMBOL_GPL drivers/net/vxlan 0x066b711e vxlan_dev_create -EXPORT_SYMBOL_GPL drivers/net/vxlan 0x5d4eebc6 vxlan_fdb_find_uc -EXPORT_SYMBOL_GPL drivers/net/vxlan 0x777fba6c vxlan_fdb_replay -EXPORT_SYMBOL_GPL drivers/net/vxlan 0xc8cb7689 vxlan_fdb_clear_offload -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/ipw2x00/libipw 0x1f5d9ed7 libipw_rx_any -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1b3cfa20 il_dealloc_bcast_stations -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x398adbf3 il_remove_station -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8ef12c32 _il_grab_nic_access -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc138d64b il_prep_station -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfc362bac il_mac_tx_last_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x036acacb iwl_set_soc_latency -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x0d4fd980 iwl_fw_dbg_stop_sync -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x0e0739e1 iwl_fw_dbg_read_d3_debug_data -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x0ebdc7cf iwl_acpi_get_dsm_u32 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x127aab9f iwl_read_direct32 +EXPORT_SYMBOL_GPL drivers/net/tap 0x07fca4cd tap_free_minor +EXPORT_SYMBOL_GPL drivers/net/tap 0x1a1b1b20 tap_queue_resize +EXPORT_SYMBOL_GPL drivers/net/tap 0x2e3dc320 tap_destroy_cdev +EXPORT_SYMBOL_GPL drivers/net/tap 0x3f2049f7 tap_get_minor +EXPORT_SYMBOL_GPL drivers/net/tap 0x95299396 tap_get_ptr_ring +EXPORT_SYMBOL_GPL drivers/net/tap 0x9bd04b0f tap_create_cdev +EXPORT_SYMBOL_GPL drivers/net/tap 0xb4a6d702 tap_del_queues +EXPORT_SYMBOL_GPL drivers/net/tap 0xc67fbafe tap_handle_frame +EXPORT_SYMBOL_GPL drivers/net/tap 0xf3c14d31 tap_get_socket +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x5b1ae37f usbnet_cdc_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x684b42d7 usbnet_ether_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x8cda18f1 usbnet_cdc_update_filter +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xa4b01e48 usbnet_cdc_status +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xb198bac7 usbnet_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xc3e47a58 usbnet_generic_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x155986b2 cdc_ncm_rx_verify_nth32 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x40048e30 cdc_ncm_bind_common +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x48f3072d cdc_ncm_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x515bf5cc cdc_ncm_fill_tx_frame +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x5a8d67ef cdc_ncm_rx_verify_ndp16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x6c23a88a cdc_ncm_rx_verify_ndp32 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x7227699e cdc_ncm_select_altsetting +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xbb66fed6 cdc_ncm_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xc2663978 cdc_ncm_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xe450a20f cdc_ncm_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xec8b3092 cdc_ncm_rx_verify_nth16 +EXPORT_SYMBOL_GPL drivers/net/usb/r8152 0xb90c5847 rtl8152_get_version +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x01707c85 generic_rndis_bind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x1c0e5885 rndis_status +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x612c4d2e rndis_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x6ceb06fc rndis_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xa60b69db rndis_command +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xab35d9b1 rndis_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x13dfe53d usbnet_write_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1b8364e6 usbnet_tx_timeout +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1f97630f usbnet_get_link_ksettings_mii +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2535625c usbnet_skb_return +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2fa046be usbnet_update_max_qlen +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x343ddbc9 usbnet_get_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x385ce6ec usbnet_get_endpoints +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4f44448e usbnet_get_ethernet_addr +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x55bfd994 usbnet_resume_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5837dd97 usbnet_get_drvinfo +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x584ab4ef usbnet_read_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x68c2b524 usbnet_write_cmd_async +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x75a02bf8 usbnet_disconnect +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7b2d8e52 usbnet_resume +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7cf0e0b9 usbnet_read_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8081d4a7 usbnet_suspend +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x829fe47c usbnet_open +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x83e10075 usbnet_nway_reset +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x84e3cfba usbnet_set_link_ksettings_mii +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x87eb788c usbnet_pause_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8c89ed3d usbnet_set_rx_mode +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8fdbcede usbnet_defer_kevent +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x986b42f5 usbnet_probe +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9942391e usbnet_write_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa6ff861b usbnet_get_link_ksettings_internal +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa90b30c7 usbnet_get_link +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xbd0ce2b0 usbnet_status_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd3d3fe85 usbnet_unlink_rx_urbs +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xdb07aae7 usbnet_purge_paused_rxq +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xdda4f9f0 usbnet_set_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe60e8e3d usbnet_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf5b3752b usbnet_status_start +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xfe8b088c usbnet_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xffab9648 usbnet_start_xmit +EXPORT_SYMBOL_GPL drivers/net/vxlan 0x179c4a84 vxlan_fdb_replay +EXPORT_SYMBOL_GPL drivers/net/vxlan 0x2795f61c vxlan_dev_create +EXPORT_SYMBOL_GPL drivers/net/vxlan 0x8d545a29 vxlan_fdb_clear_offload +EXPORT_SYMBOL_GPL drivers/net/vxlan 0xcfdee297 vxlan_fdb_find_uc +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/ipw2x00/libipw 0xc2f43e12 libipw_rx_any +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x174f94b6 il_prep_station +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x80835965 il_remove_station +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9758b58d il_dealloc_bcast_stations +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x97d8e56e _il_grab_nic_access +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9ad658e1 il_mac_tx_last_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x07be59db iwl_write_direct32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x0a16aaef iwl_write_direct64 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x0e5f7eb6 iwl_parse_nvm_data +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x111981a2 _iwl_dbg_tlv_time_point EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1332e4de iwl_abort_notification_waits -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1cf0e07a iwl_force_nmi -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1f239193 iwl_fw_dbg_collect_desc -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x21a6909f iwl_acpi_get_wifi_pkg -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x249132d3 iwl_get_cmd_string +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x13d6d43d iwl_init_paging +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1687f7f3 iwl_sar_get_ewrd_table +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1739a8f6 iwl_fw_runtime_init +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1e3b8ca1 iwl_fw_dbg_read_d3_debug_data +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x24e84257 iwl_sar_get_wrds_table +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x24f09d2b iwl_parse_eeprom_data +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x267ed694 iwl_set_bits_prph EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2710c362 iwl_dump_desc_assert -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2b08408d __iwl_err -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2d8b5ec6 iwl_sar_select_profile -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x30117d35 iwl_sar_get_wrds_table -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x30e69619 iwl_finish_nic_init +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x28483321 iwl_sar_get_wgds_table +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x29727237 iwl_fw_runtime_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2b02a414 iwl_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2b19f69c iwl_read32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2db65a1a iwl_phy_db_init +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2eda64f9 iwl_force_nmi +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x305f5d6b iwl_write8 EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x35033c81 iwl_phy_db_free -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x37db025f iwl_get_shared_mem_conf -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x38c802c0 iwl_fw_runtime_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x3a213f03 iwl_get_nvm -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x3f3084da iwl_clear_bits_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x3fbe8e2d _iwl_dbg_tlv_time_point -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x460297d1 iwl_write_direct32 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x4e966aec iwl_dbg_tlv_del_timers -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x549dd765 iwl_poll_bit +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x3873230b __iwl_info +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x38f5dccf iwl_fw_runtime_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x3cd7ecc3 iwl_acpi_get_pwr_limit +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x3d5f06b9 iwl_write_prph_no_grab +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x3dc729fd iwl_fw_dbg_collect_trig +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x47d5f328 iwl_read_prph_no_grab +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x47f30aa1 iwl_read_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x4a8eab6f iwl_sar_geo_init +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x523adaff iwl_fw_dbg_stop_restart_recording +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x55973b8b iwl_read_direct32 EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5987fe45 iwl_fw_lookup_assert_desc EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5988395c iwl_notification_wait_init +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5b05d59f iwl_finish_nic_init EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5c52e109 iwl_opmode_deregister -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x600546a3 iwl_fw_dbg_collect_trig -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x6b2cb8bd iwl_write_direct64 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x6c20ab7b iwl_write_prph_delay -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x6e0e71cf iwl_acpi_get_lari_config_bitmap -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x737f7756 __iwl_crit -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x756d0e92 iwl_acpi_get_mcc +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x6023011c iwl_fw_start_dbg_conf +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x684e484c iwl_clear_bits_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x71cfa14d iwl_write_prph_delay +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x72f8645f iwl_set_bits_mask_prph EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x776221bf iwl_send_phy_db_data -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x77cef0c2 iwl_phy_db_init -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x784046ac iwl_read_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x7a77ebc9 iwl_sar_geo_init -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x7eee45c7 iwl_trans_send_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8102483f iwl_sar_geo_support -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x85a2b864 iwl_set_bits_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x866ec4ee __iwl_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x868b385c iwl_fw_start_dbg_conf -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8c4d3088 iwl_pnvm_load +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x78377362 iwl_acpi_get_lari_config_bitmap +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x794cfc2c iwl_get_nvm +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x86969c26 iwl_cmd_groups_verify_sorted +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x88e2e4ae iwl_acpi_get_mcc +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x89ca8ab3 iwl_fwrt_dump_error_logs +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8b729fea iwl_write_prph64_no_grab EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8cd2f16c iwl_fw_lookup_notif_ver -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8cd7cddc iwl_write64 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8fb16bf0 iwl_acpi_get_object EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x9038811a iwl_rfi_guid -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x913f9fb3 iwl_fwrt_dump_error_logs -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x99af52b5 iwl_acpi_get_tas -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x9b958c02 iwl_sar_get_ewrd_table -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa1afd3a9 iwl_write_prph_no_grab -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa1f9e2b0 iwl_write32 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa29623ac iwl_poll_direct_bit -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa3c87809 iwl_read_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa3da0581 iwl_fw_runtime_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x91f94332 __iwl_warn +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x938e8e2b iwl_set_soc_latency +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x95005e23 iwl_fw_dbg_collect +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x96193a35 iwl_acpi_get_tas +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x97478dd1 iwl_write64 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x983778df iwl_acpi_get_dsm_u8 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x988b1eca iwl_fw_dbg_stop_sync +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x98aee4d5 __iwl_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x9aef7ee5 iwl_write32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x9b24f96f iwl_trans_send_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x9bfd04cb iwl_pnvm_load +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa1c79cf1 __iwl_crit +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa2ae441b iwl_acpi_get_eckv +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa5527aa7 iwl_free_fw_paging +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa6cfcf30 iwl_get_cmd_string EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa9f05394 iwlwifi_mod_params EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb1338340 iwl_fw_lookup_cmd_ver -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb1d27993 iwl_read32 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb55a84fb iwl_parse_nvm_data -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb8cef508 iwl_read_prph_no_grab -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb9e4e5bd iwl_acpi_get_object +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb68f4339 iwl_read_external_nvm +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb7c64b95 iwl_configure_rxq +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb7cc7fda iwl_poll_bit EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xbafc8994 iwl_wait_notification -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xbdfaaa69 __iwl_warn -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc1103796 iwl_set_bits_mask_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc2b29581 iwl_write8 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc8ad1fed iwl_opmode_register +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xbc588957 iwl_fw_dbg_collect_desc +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xbcb99590 iwl_dbg_tlv_del_timers +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xbdf29942 iwl_opmode_register +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc3a23a7a iwl_poll_direct_bit +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xcbf6db97 iwl_acpi_get_wifi_pkg EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xce0c6460 iwl_phy_db_set_section -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd51226df iwl_acpi_get_dsm_u8 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd66434ac iwl_init_paging -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xda1b384c iwl_fw_dbg_stop_restart_recording -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xdd1f617d iwl_configure_rxq -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xddeaa572 iwl_parse_eeprom_data -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xdf9fb2ba iwl_free_fw_paging -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe0775a32 iwl_sar_get_wgds_table +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xdf7ebab4 iwl_sar_geo_support EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe0eb5838 iwl_init_notification_wait -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe0fa6143 iwl_acpi_get_eckv -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe122a0ab iwl_cmd_groups_verify_sorted -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe540a13d iwl_parse_nvm_mcc_info -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe5afa67b iwl_fw_dbg_error_collect +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe1137aa0 iwl_sar_select_profile +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe55c1f1f iwl_get_shared_mem_conf EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe75b7e77 iwl_notification_wait EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xea1b26fc iwl_nvm_fixups -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xec19e215 iwl_read_external_nvm -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xeee289d4 iwl_fw_runtime_init -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf0c71d1b iwl_write_prph64_no_grab -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf25d1344 iwl_fw_dbg_collect -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf35624da iwl_acpi_get_pwr_limit -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf7faeff6 __iwl_info +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xea4fe9a8 iwl_acpi_get_dsm_u32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf2721142 iwl_fw_dbg_error_collect EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf88964e4 iwl_remove_notification +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf9ecc11e __iwl_err EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xfc1e6f41 iwl_guid -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x08682654 p54_read_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x08fb899f p54_register_common -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x1d52f6f7 p54_parse_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x44a27def p54_unregister_common -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x545db1a3 p54_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x7126dc0b p54_free_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x82019bb3 p54_init_common -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xa383aa28 p54_parse_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xb6707dcf p54_free_common -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x20b9a10a lbs_get_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x27141afd lbs_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x4c90f542 lbs_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x50a16be5 lbs_get_firmware_async -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x5c3c24d6 lbs_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xfeb3a2ab iwl_parse_nvm_mcc_info +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x06a13f4f p54_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x332eacc0 p54_register_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x6b0b8877 p54_free_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x6e0e3c12 p54_unregister_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x93c6a388 p54_init_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xc0b27be0 p54_free_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xce25b3c6 p54_parse_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xd13b652a p54_parse_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xf78d49e5 p54_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x112e3079 __lbs_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x26a11d2c lbs_process_rxed_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x33887b67 lbs_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x3e49193b lbs_notify_command_response +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x561851ed lbs_get_firmware_async EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x5fdf38b8 lbs_disablemesh -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x614b4980 lbs_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x6a5d8f7e lbs_stop_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x7b61b2a9 lbs_host_sleep_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x7b89073d lbs_start_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x7cd89909 lbs_process_rxed_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x8178e849 lbs_queue_event -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x879b66e3 lbs_send_tx_feedback -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xc060042c lbs_host_to_card_done -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xe6d6159a lbs_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x68bfb1d7 lbs_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xa49fea0e lbs_stop_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xa9f305cf lbs_queue_event +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xb99e49cb lbs_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xbb8752d8 lbs_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xc47627bd lbs_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xc923f3a7 lbs_host_to_card_done +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xc9de23ac lbs_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xd83cdd0a lbs_host_sleep_cfg EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xf64277de lbs_debug -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xf6d17b55 lbs_notify_command_response -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xfb2f3294 __lbs_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x106be9d2 lbtf_cmd_copyback -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x1d7ef868 lbtf_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x4f4330aa lbtf_cmd_response_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x63b78dc9 lbtf_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x781daae7 __lbtf_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x81e1f39a lbtf_send_tx_feedback -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x8ddc412f lbtf_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xf7a82472 lbs_get_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xf8761ca8 lbs_start_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x459bdb98 lbtf_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x46a7560c lbtf_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x60427ab1 lbtf_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x8b5c028a lbtf_cmd_response_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xab5c4a3b lbtf_bcn_sent +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xbfedd32f __lbtf_cmd EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xc85e6899 lbtf_debug -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xeedb957f lbtf_bcn_sent -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x03e59b7b mwifiex_disable_auto_ds -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x10d36015 mwifiex_dnld_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x11958a6f mwifiex_queue_main_work -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x12b27343 mwifiex_write_data_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x170da144 mwifiex_process_sleep_confirm_resp -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x19432b5e mwifiex_del_virtual_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x2ae77c11 mwifiex_add_virtual_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x2c328062 mwifiex_prepare_fw_dump_info -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x3b9d6653 _mwifiex_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x4a5d2881 mwifiex_upload_device_dump -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x4d363aea mwifiex_cancel_hs -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x4ff84a26 mwifiex_reinit_sw -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x5549aece mwifiex_multi_chan_resync -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x884cb841 mwifiex_enable_hs -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x8a4a95c6 mwifiex_handle_rx_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x93f3a602 mwifiex_shutdown_sw -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x94959dc2 mwifiex_deauthenticate_all -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xa9bf4fd9 mwifiex_main_process -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xb05125ef mwifiex_process_hs_config -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xb0bbea75 mwifiex_drv_info_dump -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xc007ca20 mwifiex_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xc90a4bf3 mwifiex_init_shutdown_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xc89d36a8 lbtf_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xd346e91c lbtf_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x0765a69a mwifiex_main_process +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x2ace04f6 mwifiex_queue_main_work +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x4005a8bb mwifiex_write_data_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x463d97fa mwifiex_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x5a05364d mwifiex_del_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x6f2f56a2 mwifiex_process_sleep_confirm_resp +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x79fb3e82 mwifiex_handle_rx_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x809c6fb1 mwifiex_dnld_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x9917afaf mwifiex_multi_chan_resync +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xa5211109 mwifiex_deauthenticate_all +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xacb4e850 mwifiex_drv_info_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xad55a0be mwifiex_upload_device_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xae4d655a mwifiex_fw_dump_event +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xc1dc4578 mwifiex_enable_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xc3a4a7b6 mwifiex_add_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xc699e9f3 mwifiex_reinit_sw EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xd4dad9f3 mwifiex_alloc_dma_align_buf -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xdc4774d6 mwifiex_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xdfe5b94d mwifiex_fw_dump_event -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x04511c3d mt76_get_min_avg_rssi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x05a50ef6 __mt76_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x08532aeb mt76_release_buffered_frames -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0b7770b2 mt76_wake_tx_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0ce22df6 __mt76_poll_msec -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1370d5fd mt76_skb_adjust_pad +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xe4902bba mwifiex_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xe7ab72ab mwifiex_disable_auto_ds +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xee68e7b7 mwifiex_prepare_fw_dump_info +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xf0306893 mwifiex_init_shutdown_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xf158ff0e _mwifiex_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xf325a86e mwifiex_process_hs_config +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xf77ca950 mwifiex_cancel_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xfca8701a mwifiex_shutdown_sw +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x03b617fb mt76_init_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0757bfd7 mt76_seq_puts_array +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x08f4f3fb mt76_register_debugfs_fops +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0b7f9839 mt76_rx_aggr_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x110e0cd3 mt76_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x11cf5f80 mt76_unregister_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x12d67328 __mt76_poll_msec EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x17f568e9 mt76_rates -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x18ba2271 mt76_get_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x19d83aa9 mt76_tx_status_skb_done -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1a1f0ecd mt76_stop_tx_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1b9837ba __traceiter_mac_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1a769e66 mt76_tx_status_skb_get +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1b7971fa mt76_set_irq_mask +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1ca28749 mt76_sw_scan 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 0x23148ff2 mt76_mcu_skb_send_and_get_msg -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2547a777 mt76_has_tx_pending -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x28694bfa mt76_tx_worker_run -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2a15c04f mt76_init_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x30b207ac mt76_pci_disable_aspm -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3231d884 mt76_put_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x35469e16 mt76_get_survey -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x359f51b8 mt76_get_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x42134e96 mt76_set_stream_caps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x455b042d mt76_mcu_send_and_get_msg -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x49db6389 mt76_mcu_msg_alloc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4d809807 mt76_register_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x50979f3b mt76_tx_status_skb_add -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x55e5fd3d mt76_set_tim -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x563b53c3 mt76_sta_state -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x579b4809 mt76_queue_tx_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x58cda0db mt76_token_release -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x598a10e7 mt76_unregister_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5c425b26 mt76_free_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2c299fe6 mt76_mcu_skb_send_and_get_msg +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2c3fca8c mt76_tx_status_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x30669235 mt76_dma_attach +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x39e0f2f5 mt76_stop_tx_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x413a44aa mt76_release_buffered_frames +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x427af367 mt76_has_tx_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x45237eec mt76_mcu_rx_event +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x481b6eef mt76_csa_check +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4e2af3e5 mt76_put_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x55a1575e mt76_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x561754f1 mt76_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x56e3dbf8 mt76_wake_tx_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5a8c6897 mt76_alloc_device EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5d1b4e42 __tracepoint_mac_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5d6b8a69 mt76_txq_schedule_all -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5e59eb55 __mt76_set_tx_blocked -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x628202f4 mt76_get_rate_power_limits -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x72c908c9 mt76_update_survey -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x74df114a mt76_rx_aggr_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x75301ef3 mt76_seq_puts_array -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7a4252b4 mt76_register_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7c8da44f mt76_register_debugfs_fops +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x63b535a8 mt76_update_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6413d238 mt76_queue_tx_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x65cd1a1f mt76_txq_schedule +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x65e781a5 mt76_txq_schedule_all +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x69689dee mt76_get_rate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x79728d04 mt76_get_rate_power_limits +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7dd6e592 mt76_queues_read EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x805fc13a __SCK__tp_func_dev_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x876a6b77 mt76_update_survey_active_time -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x93d66089 mt76_dma_cleanup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x93df2fbb mt76_insert_ccmp_hdr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x94fde2f2 mt76_txq_schedule -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x99cd070e mt76_eeprom_override -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9b110dbe __traceiter_dev_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9d6ffe11 mt76_dma_rx_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9f208802 mt76_tx_check_agg_ssn -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa659664a mt76_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xaaa52eed mt76_set_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xaf89806f mt76_tx_status_check -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb55a63a2 mt76_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb6cdb610 mt76_unregister_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xba701092 mt76_rx_aggr_start -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbc5f5117 mt76_eeprom_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc1ae9f7c mt76_queues_read -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc1bee832 mt76_mcu_get_response -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc390a0d0 mt76_alloc_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8b04359e mt76_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8c7affd1 mt76_get_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8f33852e __traceiter_mac_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8f434891 mt76_unregister_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9370974c __mt76_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x941f3fae mt76_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x95dad4de __mt76_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9698b2d9 mt76_set_stream_caps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x98b8ad4f __traceiter_dev_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9dedb3f6 mt76_dma_rx_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa152ef16 mt76_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa2f50e00 mt76_sta_state +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa305124a mt76_insert_ccmp_hdr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xaa2c4211 __mt76_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xae0936af mt76_mcu_get_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb140a44e mt76_alloc_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb4e2495d mt76_get_of_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb6e4904c mt76_tx_status_skb_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb8d1abaa mt76_free_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbf3a0402 mt76_mmio_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc211c88a mt76_register_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc2eedb7f mt76_tx_status_skb_done +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc3ff9adc mt76_sta_pre_rcu_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc48d9d34 mt76_get_min_avg_rssi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc4986262 mt76_skb_adjust_pad +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc4efbc58 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 0xc78c57ae mt76_csa_check -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xcc2ef0d0 mt76_token_consume -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xcc4c4c68 mt76_tx_status_skb_get -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd17590ac mt76_alloc_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd34d91c3 mt76_csa_finish -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd4aa8131 mt76_sta_pre_rcu_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd4f22943 mt76_sw_scan_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd5024529 mt76_tx_status_unlock -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd8c2851c mt76_get_rate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xdaa56641 mt76_rx_poll_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xdbe33e7b mt76_mcu_send_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xdd243dde mt76_set_irq_mask +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc81694a1 mt76_csa_finish +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xcaa2bb6d mt76_mcu_send_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xcab30cc9 mt76_mcu_send_and_get_msg +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd1b4b105 mt76_rx_aggr_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd4c14aed __mt76_set_tx_blocked +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd63582ad mt76_tx_status_check +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xdbec8bc3 mt76_tx_status_unlock +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xdf81f6bc mt76_rx_poll_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe0a766e2 mt76_dma_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe1eeaad5 mt76_token_consume EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe40b66ef mt76_wcid_alloc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xea258066 __mt76_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xed9ea677 mt76_mcu_rx_event -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xeefd1c65 mt76_sw_scan -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf03f2fab __mt76_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf1c42766 mt76_mmio_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xfb12f8f9 mt76_tx_status_lock -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xfdb6767f mt76_dma_attach -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xff278677 mt76_get_of_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x04ff982f mt76_connac_mcu_set_suspend_iter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x07da5a0d mt76_connac_mcu_wtbl_ht_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x0a571c95 mt76_connac_sta_state_dp -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x134d7a60 mt76_connac_mcu_update_gtk_rekey -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x1fa7e5a0 mt76_connac_mcu_patch_sem_ctrl -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x259bb526 mt76_connac_mcu_set_rate_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x273c83b1 mt76_connac_pm_queue_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x2b6725b3 mt76_connac_mcu_set_hif_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x3d8b33f8 mt76_connac_mcu_alloc_sta_req -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x3ea02d4f mt76_connac_pm_dequeue_skbs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x48281874 mt76_connac_mcu_cancel_hw_scan -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4931cf64 mt76_connac_mcu_sta_basic_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x5dc8bfd7 mt76_connac_mcu_uni_add_bss -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x5e4ac274 mt76_connac_pm_wake -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x674aef03 mt76_connac_mcu_wtbl_hdr_trans_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x6959a34a mt76_connac_mcu_set_rts_thresh -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x6a32f8a1 mt76_connac_mcu_beacon_loss_iter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x6c02f651 mt76_connac_mcu_wtbl_ba_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x6e028cba mt76_connac_power_save_sched -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x71449a1a mt76_connac_mcu_start_patch -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7516c2fa mt76_connac_mcu_get_nic_capability -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x760762fc mt76_connac_mcu_set_deep_sleep -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x832e42de mt76_connac_mcu_uni_add_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x8b6efa7b mt76_connac_mcu_alloc_wtbl_req +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe5410050 mt76_eeprom_override +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe84f629f mt76_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xec5f07ba mt76_mcu_msg_alloc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf615bc9c mt76_tx_worker_run +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf6be327a mt76_pci_disable_aspm +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf7cb2c7b mt76_update_survey_active_time +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf90ef399 mt76_token_release +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xfb186394 mt76_set_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xfb4e5233 mt76_tx_check_agg_ssn +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x015ffe69 mt76_connac_mcu_set_channel_domain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x039e33d6 mt76_connac_pm_dequeue_skbs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x03da0b35 mt76_connac_mcu_set_hif_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x12555514 mt76_connac_sta_state_dp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x135cb90d mt76_connac_mcu_add_nested_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x1aade6ad mt76_connac_mcu_get_nic_capability +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x1b8ca585 mt76_connac_free_pending_tx_skbs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x1dd1394f mt76_connac_mcu_alloc_wtbl_req +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x1ebb3860 mt76_connac_mcu_wtbl_ba_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x293d7e70 mt76_connac_mcu_sta_ba +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x29860855 mt76_connac_mcu_set_deep_sleep +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x2cecb53c mt76_connac_mcu_coredump_event +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x2e1abd4a mt76_connac_mcu_chip_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x3dfebeb3 mt76_connac_mcu_alloc_sta_req +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x52f459b6 mt76_connac_mcu_sched_scan_req +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x5b9f05d7 mt76_connac_mcu_uni_add_bss +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x6112b16b mt76_connac_pm_queue_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x689ec4f5 mt76_connac_mcu_hw_scan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x6abd1658 mt76_connac_mcu_sta_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x6e699c58 mt76_connac_mcu_set_rate_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x71d70779 mt76_connac_mcu_wtbl_generic_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x8071796c mt76_connac_mcu_sched_scan_enable +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x833ba1ab mt76_connac_mcu_uni_add_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x84427230 mt76_connac_mcu_update_gtk_rekey +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x8f24158f mt76_connac_mcu_set_vif_ps 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 0x937d392a mt76_connac_mcu_hw_scan -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x9edbc374 mt76_connac_mcu_sta_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa282676b mt76_connac_mcu_add_nested_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb30fac04 mt76_connac_mcu_sta_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb9e1fab6 mt76_connac_mcu_set_channel_domain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xbbe24286 mt76_connac_mcu_set_mac_enable -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc5f9ccba mt76_connac_mcu_chip_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc7b62a60 mt76_connac_mcu_sta_update_hdr_trans -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc92168a9 mt76_connac_mcu_sched_scan_req -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd71358b5 mt76_connac_free_pending_tx_skbs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xdc1c7a1d mt76_connac_mcu_start_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xdc3abd12 mt76_connac_mcu_init_download -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xdf35eae1 mt76_connac_mcu_wtbl_generic_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe6d92114 mt76_connac_mcu_sched_scan_enable -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xedf68aa6 mt76_connac_mcu_sta_ba_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xef894db2 mt76_connac_mcu_coredump_event -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf8e4244f mt76_connac_mcu_set_vif_ps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xfbd9891c mt76_connac_mcu_sta_ba -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xfd0dcfff mt76_connac_mcu_update_arp_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x27ee5ede mt76s_deinit -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xb1067915 mt76s_alloc_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xd8cb5afc mt76s_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x1cb57d24 mt76u_resume_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x23b405b7 mt76u_alloc_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x276fafc8 mt76u_vendor_request -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x27f8b480 mt76u_stop_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x463fa32a mt76u_alloc_mcu_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x471665a4 mt76u_queues_deinit -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xa69261c7 mt76u_single_wr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xc56c1b48 mt76u_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xebc8d922 mt76u_stop_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x00239566 mt7615_mac_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x01f19c02 mt7615_init_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x01f9a1ef mt7615_mac_sta_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x02d17b09 mt7615_mac_set_rates -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x238dca46 mt7615_mac_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x26ab309e mt7615_thermal_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x32800dae __mt7663_load_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x36e618dc mt7615_txp_skb_unmap -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x3b958c5d mt7615_eeprom_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x44ce36e5 mt7615_init_debugfs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x4a42a24e mt7615_register_ext_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x5bc1c145 mt7615_update_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x5c73f7e9 mt7615_sta_ps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x60cfcaeb mt7615_mcu_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x745cd840 mt7615_queue_rx_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x7cb0c90b mt7615_unregister_ext_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x87b188c4 mt7615_mcu_reg_wr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x8fef897e mt7615_mcu_fill_msg -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xc2a41ded mt7615_mcu_parse_response -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xccb75659 mt7615_mcu_exit -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xdae81c66 mt7615_mcu_restart -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xeb43ff53 mt7615_ops -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xf0ec726b mt7615_wait_for_mcu_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xf30aee83 mt7615_tx_token_put -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xf9e55c96 mt7615_mac_write_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xfb79af4b mt7615_init_work -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xfd3b2e23 mt7615_init_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xff429df6 mt7615_mcu_reg_rr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xffa5e195 mt7622_trigger_hif_int -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615e 0x1c7c58f9 mt7615_dma_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa68c68e7 mt76_connac_mcu_patch_sem_ctrl +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb4ed8b04 mt76_connac_mcu_wtbl_ht_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xbc51f6f0 mt76_connac_mcu_start_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc032e962 mt76_connac_mcu_set_rts_thresh +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc485f7ff mt76_connac_mcu_start_patch +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc61a2338 mt76_connac_mcu_wtbl_hdr_trans_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc6314df8 mt76_connac_mcu_sta_basic_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc6fdbe47 mt76_connac_mcu_init_download +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd555f6e7 mt76_connac_mcu_set_suspend_iter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd675bc02 mt76_connac_mcu_beacon_loss_iter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xdd2d7ac3 mt76_connac_mcu_sta_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xde261696 mt76_connac_mcu_sta_ba_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xdfc0e6e4 mt76_connac_mcu_update_arp_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xed262306 mt76_connac_mcu_cancel_hw_scan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf15c7313 mt76_connac_power_save_sched +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf5b2d497 mt76_connac_mcu_sta_update_hdr_trans +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf6e706f7 mt76_connac_pm_wake +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xff9aa3b4 mt76_connac_mcu_set_mac_enable +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x7efd90a0 mt76s_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xe01a9b48 mt76s_alloc_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xf7acaa2e mt76s_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x0481011c mt76u_alloc_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x1270b04c mt76u_alloc_mcu_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x43669790 mt76u_queues_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x55ec9652 mt76u_stop_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x633a760a mt76u_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x6931ef0c mt76u_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x6d6d8a53 mt76u_single_wr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x9a303544 mt76u_resume_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xe837e3c1 mt76u_stop_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x0263855c mt7615_queue_rx_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x0ba1c6cc mt7615_mcu_reg_rr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x1fabf3f3 mt7615_update_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x20903d6f mt7615_mac_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x2ef3b933 mt7615_mcu_parse_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x3176bdd2 mt7615_init_debugfs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x3626f344 mt7615_mcu_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x468b10be mt7615_thermal_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x51cd9c9e mt7615_mac_set_rates +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x65e07fff mt7615_mac_write_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x7526eb27 mt7615_init_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x7c7d6dcb mt7622_trigger_hif_int +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x85de8ce5 mt7615_mac_sta_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x9b9def01 mt7615_tx_token_put +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xa78ae8f0 mt7615_wait_for_mcu_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xb148f6c0 mt7615_txp_skb_unmap +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xb394fdda __mt7663_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xb47ebed1 mt7615_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xb81c9076 mt7615_mcu_reg_wr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xbc83abdd mt7615_init_work +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xc1c11799 mt7615_init_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xc76ac78d mt7615_register_ext_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xd6e2736b mt7615_eeprom_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xdc6ec871 mt7615_unregister_ext_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xeb076a2a mt7615_sta_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xef6e674f mt7615_mcu_fill_msg +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xef834749 mt7615_mcu_restart +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xf0b0d474 mt7615_mac_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xf6627299 mt7615_mcu_exit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615e 0xf4104c72 mt7615_dma_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x0c853a28 mt7663_usb_sdio_tx_prepare_skb EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x1506ffca mt7663_usb_sdio_reg_map -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x2178e158 mt7663_usb_sdio_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x2220b7eb mt7663_usb_sdio_register_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x49d5324a mt7663_usb_sdio_tx_status_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0xc013d0af mt7663_usb_sdio_tx_prepare_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x5de6556a mt76x0_chip_onoff -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x68441f96 mt76x0_phy_calibrate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x6c6ed6d9 mt76x0_init_hardware -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xec2562f4 mt76x0_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xf7c70d55 mt76x0_register_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xfe098547 mt76x0_mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x41f83b37 mt7663_usb_sdio_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x54c8f986 mt7663_usb_sdio_tx_status_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x69cbe27b mt7663_usb_sdio_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x006bad2d mt76x0_phy_calibrate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x348c1836 mt76x0_chip_onoff +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x9871b1f5 mt76x0_mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xa4a42af2 mt76x0_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xd072ceb9 mt76x0_init_hardware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xf89914f0 mt76x0_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x01ce51d4 mt76x02_phy_dfs_adjust_agc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0292fe6a mt76x02_tx EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0462ce68 mt76x02_add_rate_power_offset -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x056c68d3 mt76x02_init_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x06c9cff0 mt76x02_mac_set_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0525d3e9 mt76x02_phy_set_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0635dc99 mt76x02_rx_poll_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0a98f177 mt76x02_mcu_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0af9525a mt76x02_bss_info_changed EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0d4023ec mt76x02_get_max_rate_power -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x119b0c12 mt76x02_phy_set_bw -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x134ce66b mt76x02_add_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x13f85c61 mt76x02_tx_prepare_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1b8433a3 mt76x02_eeprom_parse_hw_cap -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1f1e02bf mt76x02_init_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x22bc8c2f mt76x02_phy_set_txdac -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2c22e843 mt76x02_ext_pa_enabled -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x31ac39d9 mt76x02_update_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x329133de mt76x02_enqueue_buffered_bc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0f4252f2 mt76x02_phy_set_txdac +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x11e75483 mt76x02_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1546a6f4 mt76x02_edcca_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x17d3036c mt76x02_queue_rx_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2294a2af mt76x02_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2c6764a9 mt76x02_get_lna_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2facb974 mt76x02_phy_adjust_vga_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x306d1e35 mt76x02_mac_shared_key_setup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x326af6b3 mt76x02_set_ethtool_fwver +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x33097c73 mt76x02_dfs_init_params +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3399425d mt76x02_sta_rate_tbl_update EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x35d2834d mt76x02_limit_rate_power -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3cf3720f mt76x02_mac_start -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3dc9e073 mt76x02_init_debugfs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3de88e46 mt76x02_phy_set_band -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3f585f55 mt76x02_dma_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x411d0c59 mt76x02_get_lna_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x44a7b98b mt76x02_update_beacon_iter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x48adb11f mt76x02_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4c6f416c mt76x02_dma_disable -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x538eaf6c mt76x02_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x45ce2f9a mt76x02_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4887a9f8 mt76x02_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4c41d47a mt76x02_mcu_calibrate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x51616446 mt76x02e_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 0x5ef69f3a mt76x02_mcu_cleanup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x64e1370c mt76x02_phy_dfs_adjust_agc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6908b70b mt76x02_mac_shared_key_setup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x74e8b174 mt76x02_phy_adjust_vga_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x751ef08b mt76x02_rx_poll_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7afe9484 mt76x02_init_agc_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8028b3d8 mt76x02_tx_set_txpwr_auto -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x80f6a965 mt76x02_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x815261ee mt76x02_get_rx_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x82ccd6b2 mt76x02_dfs_init_params -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8a5d223a mt76x02_reconfig_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8c1666fb mt76x02_phy_set_rxpath -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8c81c4d9 mt76x02_mac_cc_reset -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8e97fa25 mt76x02_mcu_function_select -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x91c2c91e mt76x02_eeprom_copy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6015591d mt76x02_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6271515a mt76x02_init_debugfs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x64592476 mt76x02_mac_setaddr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7499e303 mt76x02_mac_cc_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x759c036a mt76x02_init_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x75aa7213 mt76x02_mcu_function_select +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x76c5e265 mt76x02_eeprom_copy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7c3631b2 mt76x02_dma_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8576c384 mt76x02_phy_set_band +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8b802cf6 mt76x02_phy_set_bw +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8c9ea127 mt76x02_mac_wcid_setup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8d7b5b3f mt76x02_get_efuse_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x907b02ca mt76x02_set_rts_threshold EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x91d5b9ee mt76x02_irq_handler -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x96880abf mt76x02_mcu_set_radio_state -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9778be0c mt76x02e_init_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9915a049 mt76x02_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x99f1a2c8 mt76x02_set_coverage_class -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9a251b38 mt76x02_config_mac_addr_list -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9ca20874 mt76x02_set_tx_ackto -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9f4aa8a0 mt76x02_configure_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa1585cac mt76x02_tx_status_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa60a7962 mt76x02_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa6ef6a67 mt76x02_remove_hdr_pad -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa765a5de mt76x02_bss_info_changed -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa77874b2 mt76x02_phy_set_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xab537886 mt76x02_edcca_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xaf33ffc1 mt76x02_sta_rate_tbl_update -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb1be82bc mt76x02_mac_reset_counters -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb8a017dd mt76x02_remove_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb9990f73 mt76x02_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xbce25aaf mt76x02_set_ethtool_fwver -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xbdd0525f mt76x02_mcu_parse_response -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xbec125c4 mt76x02_mcu_calibrate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc185a62a mt76x02_sta_ps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc9e66713 mt76x02_resync_beacon_timer -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xdb3a923f mt76x02_queue_rx_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xdfbf769f mt76x02_set_rts_threshold -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe0376ea8 mt76x02_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe686de60 mt76x02_mac_setaddr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe99d2988 mt76x02_get_efuse_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xeb204110 mt76x02_mac_wcid_setup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf383b499 mt76x02_sw_scan_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf7a72af6 mt76x02_mac_write_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xfa012c6d mt76x02_mcu_msg_send -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x0ea0a018 mt76x02u_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x12260cac mt76x02u_init_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x45c560a3 mt76x02u_tx_prepare_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x504e90fa mt76x02u_exit_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x7125da91 mt76x02u_mcu_fw_send_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x7d26aeb5 mt76x02u_mac_start -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xe3f8a02e mt76x02u_mcu_fw_reset -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xf7d72cf3 mt76x02u_init_mcu -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x181c6e7a mt76x2_mcu_init_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x37756e5b mt76x2_mcu_set_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x3972eee8 mt76x2_configure_tx_delay -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x3de5f493 mt76x2_eeprom_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x59781fc0 mt76_write_mac_initvals -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x5ea575e8 mt76x2_mac_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x6537c675 mt76x2_mcu_load_cr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x7f3aa63b mt76x2_phy_set_txpower_regs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x849547eb mt76x2_mcu_tssi_comp -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x9667fd33 mt76x2_apply_gain_adj -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xbfc38a18 mt76x2_phy_set_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xc1cfdb31 mt76x2_phy_update_channel_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xcdb7c472 mt76x2_phy_tssi_compensate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xe335670a mt76x2_get_rate_power -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xe435d075 mt76x2_read_rx_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xe72605e0 mt76x2_reset_wlan -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xee0352a1 mt76x2_init_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xf1d227c9 mt76x2_get_temp_comp -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xf4d70911 mt76x2_get_power_info -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x09a77111 chip_wakeup -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x2bb4b084 chip_allow_sleep -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x4c35ced3 wilc_cfg80211_init -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x601bb36c host_wakeup_notify -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x9d0da905 wilc_handle_isr -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xb2fabada wilc_netdev_cleanup -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xdeaedb2d host_sleep_notify +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x93eef666 mt76x02_set_coverage_class +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x96e17685 mt76x02_get_rx_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9914d252 mt76x02_mac_set_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa0549d6b mt76x02_sta_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa127baa3 mt76x02_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xad52c694 mt76x02_set_tx_ackto +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xafa32a57 mt76x02_update_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb064b8a3 mt76x02_enqueue_buffered_bc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xbc82b5ea mt76x02_config_mac_addr_list +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc084a997 mt76x02_tx_status_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc0d773a5 mt76x02_update_beacon_iter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc5d56a0a mt76x02_resync_beacon_timer +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc60c9c7f mt76x02_mcu_set_radio_state +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc7233009 mt76x02_eeprom_parse_hw_cap +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd1c71070 mt76x02_mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd6905699 mt76x02_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xdb7cf808 mt76x02_reconfig_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xdc93e11c mt76x02_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xddb5e878 mt76x02_mcu_msg_send +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xddf6413b mt76x02_remove_hdr_pad +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xdee66215 mt76x02_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe2031ce8 mt76x02_phy_set_rxpath +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe6ab1b17 mt76x02_ext_pa_enabled +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe8dd4d60 mt76x02_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe92420fe mt76x02_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xee674204 mt76x02_mcu_parse_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xee8d9bf9 mt76x02_mac_reset_counters +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf302c64b mt76x02_tx_set_txpwr_auto +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf748e5e3 mt76x02_dma_disable +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf86e3f8b mt76x02_init_agc_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf8b1ea4a mt76x02_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xfc6f4eed mt76x02_mac_write_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x2afc597a mt76x02u_init_mcu +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x3094ec48 mt76x02u_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x3c6e4dca mt76x02u_mcu_fw_send_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x56aa21c4 mt76x02u_mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x58ac387a mt76x02u_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xbd22fec5 mt76x02u_mcu_fw_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xe6a46954 mt76x02u_exit_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xfd878bdf mt76x02u_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x16d09667 mt76x2_phy_update_channel_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x2691c317 mt76x2_read_rx_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x33cd9e2c mt76x2_reset_wlan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x479a68f1 mt76x2_get_temp_comp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x696d0e6a mt76x2_init_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x6dcd0048 mt76_write_mac_initvals +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x7a20c354 mt76x2_configure_tx_delay +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x835774a9 mt76x2_phy_set_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x9dc7ee8a mt76x2_phy_tssi_compensate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xa97d2ed5 mt76x2_mcu_load_cr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xaa1b4ccc mt76x2_mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xbc71b860 mt76x2_get_rate_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xbceb83c0 mt76x2_eeprom_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xcb16cd8f mt76x2_apply_gain_adj +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xd693fdc9 mt76x2_get_power_info +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xe718562b mt76x2_mcu_tssi_comp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xfab2b6d0 mt76x2_mcu_init_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xfad35244 mt76x2_mcu_set_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xfbb22ef7 mt76x2_phy_set_txpower_regs +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x18015c4c chip_allow_sleep +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x5122e1bd host_sleep_notify +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x601c2d7b wilc_cfg80211_init +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x8ce232f3 wilc_netdev_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xc72999dd wilc_handle_isr +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xdd472243 chip_wakeup +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xf581cfed host_wakeup_notify +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x27a0d4ec qtnf_classify_skb EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x31fab83c qtnf_chipid_to_string -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x331ad909 qtnf_wake_all_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x71c88613 qtnf_core_detach -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x7ab67aff qtnf_classify_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xbbeb2cb1 qtnf_trans_handle_rx_ctl_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xc19622b4 qtnf_core_attach -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xe26b0fc6 qtnf_get_debugfs_dir -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x087f9d87 rt2800_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x0a7eef01 rt2800_get_key_seq -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x0c7dda80 rt2800_config_shared_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x0d0de199 rt2800_get_tsf -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x0db11325 rt2800_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x120d6e03 rt2800_write_tx_data -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x136a651d rt2800_check_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x1d44867d rt2800_link_tuner -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x201f8042 rt2800_set_rts_threshold -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x27e10fb6 rt2800_watchdog -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x30779085 rt2800_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x3579ab80 rt2800_disable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x37c933c7 rt2800_config_ant -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x39b1a512 rt2800_config_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x3a316359 rt2800_wait_wpdma_ready -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x3f94a3a5 rt2800_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x40cd5a22 rt2800_txdone_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x41c29188 rt2800_disable_wpdma -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x52ab3c41 rt2800_probe_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x5317bd07 rt2800_txstatus_pending -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x5e9ce1de rt2800_clear_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x65797835 rt2800_get_txwi_rxwi_size -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6c7bbcc1 rt2800_reset_tuner -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x718030be rt2800_config_erp -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x74984322 rt2800_link_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x752caf52 rt2800_txdone_nostatus -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7fc97be0 rt2800_wait_csr_ready -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x830f8019 rt2800_txstatus_timeout -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x8bafb143 rt2800_mcu_request -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x8bc797f8 rt2800_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x8fa692aa rt2800_rfkill_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x942b7bac rt2800_config_pairwise_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x975f8cef rt2800_efuse_detect -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x9b538d16 rt2800_vco_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa60fc930 rt2800_write_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb11b56ba rt2800_get_survey -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc0ebba81 rt2800_config_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc2b0e92f rt2800_load_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xcd47c37f rt2800_process_rxwi -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd03ac170 rt2800_ampdu_action -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xdb423cb6 rt2800_gain_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe1ded91c rt2800_pre_reset_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe941e074 rt2800_read_eeprom_efuse -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xfdd959df rt2800_enable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x009f49c3 rt2800mmio_stop_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x05af8f4a rt2800mmio_toggle_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x206f7f0f rt2800mmio_write_tx_desc -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x27d06a6c rt2800mmio_get_dma_done -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x2d9dc29d rt2800mmio_start_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x2f13fbb0 rt2800mmio_init_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x3694bfe0 qtnf_get_debugfs_dir +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x4b9e63a6 qtnf_core_attach +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x5b499963 qtnf_core_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x81313de1 qtnf_trans_handle_rx_ctl_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xb970f706 qtnf_wake_all_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x09f71289 rt2800_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x0d1f419a rt2800_config_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x1123f8bd rt2800_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x131ef97f rt2800_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x15175d0c rt2800_txdone_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x2fbc5d1d rt2800_txdone_nostatus +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x3661a744 rt2800_probe_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x3a342277 rt2800_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x3b88b181 rt2800_clear_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x40752621 rt2800_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x418e8e00 rt2800_link_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x48be9aca rt2800_read_eeprom_efuse +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x4b113795 rt2800_config_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x50ac04f7 rt2800_gain_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x528f7c7e rt2800_get_tsf +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x580c0203 rt2800_disable_wpdma +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x59d71b70 rt2800_txstatus_timeout +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x5e237aa2 rt2800_config_pairwise_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x64b3c861 rt2800_process_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6973450a rt2800_mcu_request +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7511566f rt2800_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7de927a6 rt2800_wait_csr_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x89ef8267 rt2800_txstatus_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x8bb1676c rt2800_vco_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x8d341d0c rt2800_get_key_seq +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x90cb944a rt2800_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x960e8aa9 rt2800_check_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x966ac4c7 rt2800_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x96d10fda rt2800_write_tx_data +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x990e0760 rt2800_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x9c72faf0 rt2800_config_shared_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa003498d rt2800_reset_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa84bcc30 rt2800_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc5da0487 rt2800_efuse_detect +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc7bac960 rt2800_config_erp +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc89d3c39 rt2800_pre_reset_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc8a38dc8 rt2800_config_ant +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd02455d0 rt2800_write_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd32d09c0 rt2800_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd347a7c6 rt2800_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd8b2dac2 rt2800_wait_wpdma_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe580331b rt2800_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe8cc6c25 rt2800_get_txwi_rxwi_size +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe8d68c12 rt2800_link_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x1b4759e3 rt2800mmio_toggle_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x2806ec47 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 0x399206f4 rt2800mmio_get_entry_state EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x3d741c87 rt2800mmio_pretbtt_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x48df9d3f rt2800mmio_init_registers EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5028bbb2 rt2800mmio_tbtt_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x545af9ba rt2800mmio_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x51808d23 rt2800mmio_probe_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x53c7529f rt2800mmio_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5d6c002b rt2800mmio_queue_init EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5fa4db64 rt2800mmio_interrupt -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x645bcdfe rt2800mmio_get_entry_state -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x71d46478 rt2800mmio_clear_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x963e6da2 rt2800mmio_get_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x8552bcd2 rt2800mmio_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x8d9ca6a3 rt2800mmio_write_tx_desc +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x92c03b63 rt2800mmio_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x94fc9463 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 0x996861cb rt2800mmio_init_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x9e963dba rt2800mmio_enable_radio EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x9f3c8921 rt2800mmio_txstatus_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xa96b3955 rt2800mmio_fill_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xc6559d66 rt2800mmio_queue_init -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xd36d223b rt2800mmio_probe_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xd78abf97 rt2800mmio_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xe8fc5423 rt2800mmio_enable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x02890b81 rt2x00lib_remove_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x0ed20e7a rt2x00mac_set_tim -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x13968f73 rt2x00mac_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x18c195ff rt2x00lib_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1d4ff405 rt2x00queue_stop_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1f0a13c6 rt2x00lib_dmastart -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1ff0cf7a rt2x00mac_get_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x238d3600 rt2x00mac_sw_scan_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x29aa9057 rt2x00mac_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x2bdae5a1 rt2x00queue_unpause_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x304edf81 rt2x00mac_start -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x33b7aa43 rt2x00mac_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3a077028 rt2x00lib_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3dde5b08 rt2x00queue_flush_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4316316d rt2x00mac_tx_frames_pending -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x53751d39 rt2x00queue_get_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x541ccc1d rt2x00queue_for_each_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x60a8daf4 rt2x00mac_set_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x6678bb52 rt2x00mac_reconfig_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x68ae9544 rt2x00mac_remove_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x6e3a95b7 rt2x00mac_configure_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7f99500b rt2x00lib_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x843f4577 rt2x00queue_pause_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x9a6c4380 rt2x00lib_get_bssidx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x9b112fb0 rt2x00queue_stop_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x9d65a830 rt2x00mac_get_ringparam -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x9e19d321 rt2x00lib_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x9f5f3392 rt2x00queue_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa357dbb0 rt2x00lib_txdone_noinfo -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa61bf2fb rt2x00mac_sw_scan_start -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa829fe62 rt2x00lib_set_mac_address -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa9253359 rt2x00lib_probe_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xacfbf9fa rt2x00lib_dmadone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb28ff912 rt2x00mac_add_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb7c69cf2 rt2x00queue_map_txskb -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xbc9c0718 rt2x00queue_unmap_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc3cedbee rt2x00lib_beacondone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc4c48ba7 rt2x00lib_pretbtt -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc6b1c2ff rt2x00mac_bss_info_changed -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc84b4a85 rt2x00mac_flush -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xcc039caa rt2x00mac_rfkill_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xceac9baa rt2x00lib_txdone_nomatch -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xdbdf7df5 rt2x00mac_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe40a6c7d rt2x00queue_start_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf575931f rt2x00mac_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf8a9e32c rt2x00mac_get_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf8e5514b rt2x00queue_start_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x634d6c2f rt2x00mmio_uninitialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x6708c5de rt2x00mmio_regbusy_read -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x7f9da44c rt2x00mmio_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x91b3a475 rt2x00mmio_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xbb6fe818 rt2x00mmio_initialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x567f2147 rt2x00pci_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0xa5050499 rt2x00pci_pm_ops -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0xb77334b3 rt2x00pci_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x011b4b06 rt2x00usb_uninitialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x1c3a8b34 rt2x00usb_regbusy_read -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x228f47c7 rt2x00usb_vendor_request_buff -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x6533f01c rt2x00usb_initialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x6655ae51 rt2x00usb_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x67c44caf rt2x00usb_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x6b72563d rt2x00usb_register_read_async -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x955f1e7c rt2x00usb_disable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x9c1accbe rt2x00usb_clear_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xa1374601 rt2x00usb_watchdog -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xa3fde9fa rt2x00usb_kick_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xac553b15 rt2x00usb_vendor_req_buff_lock -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xd687e84d rt2x00usb_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xe86b1d2d rt2x00usb_disconnect -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xfd90bacd rt2x00usb_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xfe650843 rt2x00usb_vendor_request -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0676d725 dm_writepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2bd1a900 dm_savepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x80b9030b dm_restorepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8cd21501 rtl92c_set_p2p_ps_offload_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x003f78a8 rtl8723_phy_rf_serial_read -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x07f619a9 rtl8723_save_adda_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x16ac29a5 rtl8723_dm_init_dynamic_bb_powersaving -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x1c9cb77f rtl8723_fw_free_to_go -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x23693695 rtl8723_phy_init_bb_rf_reg_def -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x32ec4fe5 rtl8723_phy_pi_mode_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xb2ee9a1b rt2800mmio_init_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xb3aff1a0 rt2800mmio_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xb4567a1f rt2800mmio_fill_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xbbcff206 rt2800mmio_get_dma_done +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x0aa026ab rt2x00queue_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x0ba68d82 rt2x00lib_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x0c6ec2b1 rt2x00mac_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x0fe71681 rt2x00mac_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x17586dda rt2x00queue_for_each_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1ee82f45 rt2x00lib_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x2129659d rt2x00mac_get_ringparam +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x2ae5ac46 rt2x00mac_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x302ee7b6 rt2x00mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x35b64df3 rt2x00queue_pause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x37c53db5 rt2x00lib_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3883f19d rt2x00lib_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x40906522 rt2x00lib_txdone_nomatch +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x52ef8c32 rt2x00mac_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x560e07d2 rt2x00queue_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x56329c3c rt2x00lib_remove_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x58bd23cc rt2x00mac_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x5ea3167a rt2x00lib_set_mac_address +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x62cc5e69 rt2x00mac_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x62f0791e rt2x00queue_get_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x64c27156 rt2x00mac_reconfig_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x6c4a46eb rt2x00queue_map_txskb +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7a0df17b rt2x00mac_set_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7bcc5b15 rt2x00mac_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x804e659c rt2x00lib_dmastart +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x84d79489 rt2x00queue_start_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x89ab2d2f rt2x00queue_flush_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x8c5099a4 rt2x00lib_probe_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x951c4a64 rt2x00mac_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x98305330 rt2x00lib_dmadone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa2491720 rt2x00queue_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa4b738be rt2x00mac_tx_frames_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xaa868e6b rt2x00mac_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb4a2a2b6 rt2x00mac_get_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb59ae3fd rt2x00lib_get_bssidx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb8cbdba7 rt2x00lib_pretbtt +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc1c0b949 rt2x00queue_unpause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc2b7f806 rt2x00lib_txdone_noinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc445a72f rt2x00mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc6831eac rt2x00mac_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc6e6f22e rt2x00queue_unmap_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd3019b54 rt2x00lib_beacondone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd79040a9 rt2x00queue_stop_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xdea2ab5e rt2x00mac_sw_scan_start +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf6dd0f62 rt2x00mac_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf923d549 rt2x00mac_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xff74d3ba rt2x00mac_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x0589d5b6 rt2x00mmio_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x0f855358 rt2x00mmio_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x416a3071 rt2x00mmio_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x50ec9d2a rt2x00mmio_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xee1bbe22 rt2x00mmio_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x07eb037b rt2x00pci_pm_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0xeb515449 rt2x00pci_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0xf83c66a1 rt2x00pci_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x1d9ac85c rt2x00usb_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x20d0d4f3 rt2x00usb_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x31382aef rt2x00usb_register_read_async +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x34a54fe6 rt2x00usb_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x47cf8614 rt2x00usb_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x5030122a rt2x00usb_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x5a59a354 rt2x00usb_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x5bed6507 rt2x00usb_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x62cd8be9 rt2x00usb_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x9a8a6b16 rt2x00usb_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xb463e837 rt2x00usb_vendor_request_buff +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xb989aa13 rt2x00usb_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xda8a49bf rt2x00usb_vendor_req_buff_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xe0c81a5a rt2x00usb_disconnect +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xe55414da rt2x00usb_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xf600ddb1 rt2x00usb_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x31946450 dm_writepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x706045e4 dm_restorepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x98de347a dm_savepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc900c003 rtl92c_set_p2p_ps_offload_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x091f2e6c rtl8723_phy_reload_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x141318f9 rtl8723_save_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x16245d01 rtl8723_phy_path_adda_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x16cd4397 rtl8723_phy_save_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x1d324103 rtl8723ae_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x2278749f rtl8723_phy_rf_serial_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x3647ad46 rtl8723_fw_free_to_go +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x3b516d55 rtl8723_phy_query_bb_reg EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x3f5bf9c0 rtl8723_phy_calculate_bit_shift -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x51169ec8 rtl8723_phy_reload_adda_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x5599d182 rtl8723_phy_set_bb_reg -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x55df96d8 rtl8723be_firmware_selfreset -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x63116c47 rtl8723_download_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6d40f198 rtl8723_phy_path_a_standby -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x70030664 rtl8723_phy_query_bb_reg -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x78d1a88d rtl8723_phy_reload_mac_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x7e390e12 rtl8723_phy_path_a_fill_iqk_matrix -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x7fbcf124 rtl8723_phy_save_mac_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x808d8bae rtl8723_phy_mac_setting_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x49efdec4 rtl8723_enable_fw_download +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x4a675f69 rtl8723_dm_init_dynamic_bb_powersaving +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x51872ce0 rtl8723_phy_set_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x572a42bf rtl8723_write_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x5f427517 rtl8723_cmd_send_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x899c80aa rtl8723_dm_init_edca_turbo 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 0x9dc3fa53 rtl8723_phy_rf_serial_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb1af7bd7 rtl8723_enable_fw_download -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xbeb81276 rtl8723_phy_path_adda_on -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xbf61b49b rtl8723_phy_txpwr_idx_to_dbm -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xca25de08 rtl8723ae_firmware_selfreset -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd7795543 rtl8723_cmd_send_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe8393ed5 rtl8723_write_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xfb80aed0 rtl8723_dm_init_edca_turbo -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xfd16b6b3 rtl8723_dm_init_dynamic_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x038d6504 rtl_is_special_data -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0cc47fc6 read_efuse_byte -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x14d86b83 rtl_get_hwinfo -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x17ae6555 rtl_deinit_rfkill +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x92ec177b rtl8723be_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xaa03d4d6 rtl8723_phy_init_bb_rf_reg_def +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb761975f rtl8723_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xc1b67ca6 rtl8723_download_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xc38a9107 rtl8723_phy_mac_setting_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd3b872d3 rtl8723_phy_rf_serial_read +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xdc7ae03c rtl8723_phy_path_a_fill_iqk_matrix +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xde31f3ea rtl8723_dm_init_dynamic_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xde4d9f8b rtl8723_phy_path_a_standby +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xeea21966 rtl8723_phy_pi_mode_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xeebfec21 rtl8723_phy_reload_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x004ef5a8 rtl_ips_nic_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x10173322 rtl_lps_enter +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x16d3ea82 rtl_init_rx_config +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1a08e248 rtl_get_hal_edca_param EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2921a4d4 rtl_btc_status_false -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2c8f3d63 rtl_set_tx_report +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2d0b04d0 rtl_lps_leave 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 0x347b8a13 rtl_lps_leave -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3566aa5e rtl_ops -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3f1eb90b rtl_init_rx_config -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x40cb371d rtl_recognize_peer -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x43c4c653 rtl_fw_block_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x49725430 rtl_action_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x332e8d3c rtl_deinit_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3502fcdb rtl_init_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x42ff188d rtl_fw_block_write EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4e94cd48 rtl_global_var -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4edfd33e rtl_get_hal_edca_param -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6c9b383d rtl_tx_report_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x50628fdc rtl_swlps_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6365c8ae rtl_deinit_rfkill EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6db3ba37 rtl_update_beacon_work_callback -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7f2fe5d3 rtl_fw_page_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x82355731 rtl_efuse_ops_init -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x87b5e743 rtl_tx_ackqueue +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x775b571a rtl_p2p_info +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7c905485 rtl_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8e637f22 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 0x98917f78 rtl_beacon_statistic -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9b3d4b7d rtl_p2p_info -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa561f244 rtl_lps_enter -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xac857808 rtl_deinit_deferred_work -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbfeb206d rtl_ips_nic_on -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd8e314fb rtl_deinit_core -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xeb69aabc rtl_init_core -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf040fbac rtl_tx_mgmt_proc -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf82bdc19 rtl_swlps_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9a848ddb rtl_is_special_data +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa61244b2 rtl_get_hwinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb5f12efd rtl_tx_ackqueue +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb733512b rtl_fw_page_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbbeda9be rtl_deinit_deferred_work +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbdf5a6eb read_efuse_byte +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbe99e86f rtl_action_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xcaed6fd6 rtl_set_tx_report +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd5c56b8d rtl_tx_report_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf043e3ba rtl_tx_mgmt_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xfd73e3d0 rtl_beacon_statistic +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xfd9c2366 rtl_efuse_ops_init EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x0f5c3ce9 rsi_zone_enabled -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x372d9972 rsi_mac80211_detach -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x558d99e3 rsi_hal_device_init -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x8561828f rsi_91x_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x2c7011cc rsi_91x_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x3b599b6c rsi_hal_device_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x41aa86e9 rsi_read_pkt +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x7a4b041d rsi_91x_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x9101b76d rsi_mac80211_detach EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xcd173710 rsi_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xcd1eddff rsi_91x_deinit -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xd1ca2606 rsi_read_pkt -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x240c33f5 cw1200_can_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x4d8a4116 cw1200_core_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x82ee292e cw1200_irq_handler -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xaccd9d7e cw1200_core_release -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x017ca72e wl1251_init_ieee80211 -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x6378144f wl1251_free_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xb2f0a5a5 wl1251_alloc_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0168fbe4 wlcore_enable_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x06ac545f wlcore_event_beacon_loss +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x114ba3ac cw1200_core_release +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x3679c08c cw1200_irq_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x9788abd6 cw1200_core_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xaba62d7c cw1200_can_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x50496ba8 wl1251_init_ieee80211 +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x8cabce43 wl1251_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x8d4ecc9f wl1251_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x033e77d8 wlcore_free_hw EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x06d3b27e wl12xx_debug_level -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x06e8cf3b wl1271_acx_init_mem_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x07af86da wl12xx_acx_mem_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x13a9e824 wlcore_event_roc_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1d22a0f3 wlcore_cmd_wait_for_event_or_timeout +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x07066f65 wl1271_debugfs_update_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0be8468e wl1271_acx_set_ht_capabilities +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0fa745d2 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 0x254c3d99 wl1271_debugfs_update_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2d047c3f wlcore_translate_addr -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x30f0cc15 wlcore_event_ba_rx_constraint -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x37b4f9dd wlcore_alloc_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x491223d3 wl1271_cmd_test -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x496b78d3 wlcore_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x52d0be29 wl1271_cmd_configure -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6cb3956a wl12xx_cmd_build_probe_req -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7b6e9d15 wlcore_event_dummy_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x80594b70 wlcore_disable_interrupts_nosync -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x84e818e9 wlcore_event_channel_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2484f82e wlcore_enable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x295e4872 wlcore_scan_sched_scan_results +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x296600e8 wlcore_event_beacon_loss +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2aa97cfa wlcore_synchronize_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x32dcbe65 wlcore_event_roc_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x35d79c80 wlcore_disable_interrupts_nosync +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x37e64e45 wlcore_event_sched_scan_completed +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4749080c wl1271_acx_init_mem_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x58f96709 wlcore_event_ba_rx_constraint +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x59728545 wl12xx_cmd_build_probe_req +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5bfdf454 wlcore_translate_addr +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x622a1d71 wlcore_boot_upload_nvs +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x685f537a wlcore_set_scan_chan_params +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6d8860c7 wlcore_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6e88480c wlcore_event_dummy_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x745f4a59 wlcore_set_partition +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x74799266 wlcore_event_channel_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7852829a wlcore_scan_sched_scan_ssid_list +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x78594e72 wlcore_disable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7c74dc1f wl12xx_acx_mem_cfg EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x85498cd1 wl1271_format_buffer -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x85a9bc4a wlcore_synchronize_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8f42e93b wlcore_event_rssi_trigger -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8fe2bec7 wl1271_tx_min_rate_get -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x90ac9565 wl1271_acx_pm_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x91035993 wlcore_event_fw_logger -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x951db983 wl1271_cmd_send -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x95aebba8 wlcore_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x97d8e13d wl1271_acx_set_ht_capabilities -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x991525ac wl1271_cmd_data_path -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x99c646fb wlcore_set_scan_chan_params -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9f5cebf4 wlcore_disable_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa4c6bb3d wlcore_scan_sched_scan_ssid_list -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb077aa71 wlcore_cmd_generic_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb11db60c wlcore_event_max_tx_failure -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb3c69bf4 wlcore_event_sched_scan_completed -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb7429698 wlcore_scan_sched_scan_results -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb7b62850 wlcore_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xbaa24214 wlcore_event_soft_gemini_sense -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc43fcf36 wlcore_boot_run_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xca97132a wlcore_event_inactive_sta -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xcfc126e5 wlcore_boot_upload_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe821df01 wl1271_tx_flush -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xed8c859d wlcore_boot_upload_nvs -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf35564c1 wl1271_acx_sleep_auth -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf3c94342 wlcore_set_partition -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf9b36e1a wlcore_free_hw -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x642cc7dd nfcmrvl_nci_unregister_dev -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x67dfabdf nfcmrvl_nci_register_dev -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x6e399513 nfcmrvl_parse_dt -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xaf1097eb nfcmrvl_nci_recv_frame -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x0a7ce949 pn532_i2c_nfc_alloc -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x166426b3 pn53x_unregister_nfc -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x212d14fe pn53x_register_nfc -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x3a7563a4 pn53x_common_init -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x7acd581b pn533_rx_frame_is_cmd_response -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xb718da16 pn53x_common_clean -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xce61d762 pn533_finalize_setup +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x86502992 wl1271_cmd_configure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x87c79f59 wlcore_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x882c57b5 wl1271_acx_pm_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9c55cd95 wlcore_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa3a7f7bf wlcore_cmd_wait_for_event_or_timeout +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa6fb75c3 wl1271_tx_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xab21778e wlcore_boot_run_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb876cf82 wlcore_event_inactive_sta +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xba1955b6 wlcore_event_fw_logger +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc9b4f14a wlcore_cmd_generic_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe17e8264 wlcore_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe3b3816a wl1271_cmd_send +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe9323eb8 wl1271_cmd_data_path +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe9d6f2ac wl1271_acx_sleep_auth +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xea03c652 wl1271_tx_min_rate_get +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xee9bdaf6 wlcore_event_rssi_trigger +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf3cd5319 wlcore_event_max_tx_failure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf4be8c78 wl1271_cmd_test +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf6aa39b5 wlcore_boot_upload_firmware +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xb06e1b91 nfcmrvl_parse_dt +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xbe827f07 nfcmrvl_nci_unregister_dev +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xc52586da nfcmrvl_nci_register_dev +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xf99c0117 nfcmrvl_nci_recv_frame +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x159a241a pn53x_unregister_nfc +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x20d15f13 pn533_rx_frame_is_cmd_response +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x2378affe pn53x_common_clean +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x595df95a pn53x_register_nfc +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xb941127b pn533_finalize_setup +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xbcb1f1e0 pn53x_common_init EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xdecfd339 pn533_rx_frame_is_ack -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x2f791fc0 st_nci_hci_cmd_received -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x459cee44 st_nci_hci_load_session -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x4d87678d st_nci_discover_se -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x56980b6c st_nci_disable_se -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x9e12775e st_nci_hci_event_received -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xacd458ce st_nci_remove -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xb95e5b71 st_nci_enable_se -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xc58a0eca st_nci_probe -EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x626492a3 st95hf_spi_send -EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0xdda64dda st95hf_spi_recv_echo_res -EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0xfa0b6c98 st95hf_spi_recv_response +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xeced6358 pn532_i2c_nfc_alloc +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x10258c50 st_nci_probe +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x3a617c23 st_nci_disable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x872562bb st_nci_hci_event_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x89150a99 st_nci_hci_cmd_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xb67111f2 st_nci_enable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xbff78b0c st_nci_hci_load_session +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xc7b19157 st_nci_discover_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xf8562307 st_nci_remove +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x3212a828 st95hf_spi_recv_response +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x3b2c073f st95hf_spi_recv_echo_res +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0xa54ed468 st95hf_spi_send EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x0862001f ntb_transport_tx_free_entry -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x0f60577f ntb_transport_register_client EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x30934216 ntb_transport_max_size EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x32537aca ntb_transport_link_query EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x3d54dbfc ntb_transport_tx_enqueue EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x436098aa ntb_transport_link_down -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x7b78c414 ntb_transport_unregister_client +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x5ba40cd7 ntb_transport_create_queue EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x82e6c13d ntb_transport_qp_num EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x9c992c8f ntb_transport_link_up EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc270dc24 ntb_transport_free_queue EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc37d9036 ntb_transport_rx_remove -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xcd55c7b4 ntb_transport_create_queue EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xd40e7a02 ntb_transport_rx_enqueue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xd65ab78d 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 0x17fd6ac8 async_pmem_flush -EXPORT_SYMBOL_GPL drivers/nvdimm/nd_virtio 0x643d4077 virtio_pmem_host_ack -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x005c5c38 nvme_kill_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x03ba7e30 nvme_wait_reset +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xfa425126 ntb_transport_unregister_client +EXPORT_SYMBOL_GPL drivers/nvdimm/nd_virtio 0x9b0d5816 async_pmem_flush +EXPORT_SYMBOL_GPL drivers/nvdimm/nd_virtio 0xb8abaacc virtio_pmem_host_ack +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x02700aee nvme_set_queue_count +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0566849b nvme_unfreeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x06f515ae nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0752edf7 __nvme_check_ready +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1019e5c8 nvme_fail_nonready_command EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x11abc494 __SCK__tp_func_nvme_sq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x166a126d nvme_enable_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1998295b nvme_init_ctrl_finish -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x19b3cea2 nvme_host_path_error -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1fa91925 nvme_uninit_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2ade9819 nvme_shutdown_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2f8208a6 nvme_fail_nonready_command -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x424c8945 nvme_stop_keep_alive +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x181e178a __nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x19c69c26 nvme_kill_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1deddc33 nvme_change_ctrl_state +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2df1a8db nvme_set_features +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x424c7dd8 nvme_wait_freeze_timeout EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x49224181 nvme_reset_wq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x49f789bd nvme_cancel_tagset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x52c3fda4 nvme_wait_freeze -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x56f800ed nvme_complete_rq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x5791de48 nvme_change_ctrl_state -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x5af3e0bb nvme_get_features -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x5f8dceca nvme_submit_sync_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x60ac35d4 nvme_delete_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x4ea92098 nvme_try_sched_reset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x5884715e nvme_shutdown_ctrl EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x64b62862 nvme_wq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x65bb21f3 __nvme_submit_sync_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x67ea4cbd nvme_reset_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x6fcdda7e nvme_cancel_request -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x703f19e7 nvme_remove_namespaces -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7d3d1519 nvme_set_queue_count -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x80125ec3 nvme_cancel_admin_tagset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x66ba36d0 nvme_complete_rq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x689a81d2 nvme_alloc_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x692e6ff1 nvme_delete_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x797167a1 nvme_cancel_admin_tagset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7d3d6f33 nvme_uninit_ctrl EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x813cf212 nvme_io_timeout -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x82c7caea nvme_sync_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x832317a1 nvme_unfreeze -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x879f09b4 nvme_complete_async_event EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8a9c70ed nvme_sec_submit -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8dd953b0 nvme_alloc_request EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8e7ec2b6 __tracepoint_nvme_sq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x96b69882 nvme_start_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x97c56590 nvme_start_freeze -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x987427b6 nvme_init_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa9570de3 nvme_try_sched_reset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xaac359bc nvme_wait_freeze_timeout -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb40d8985 __nvme_check_ready -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xcdf06e78 nvme_cleanup_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8e9d6e47 nvme_disable_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8fe49ffe nvme_sync_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x957b1a75 nvme_start_freeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x974b1473 nvme_cleanup_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x985fa534 nvme_cancel_tagset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x996ed054 nvme_start_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x9cdbb974 nvme_remove_namespaces +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa787f0a8 __traceiter_nvme_sq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xbb520ab1 nvme_host_path_error +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xbb9b89d0 nvme_stop_keep_alive +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc0be1cf3 nvme_enable_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc4f39d4d nvme_init_ctrl_finish +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc55f58f5 nvme_sync_io_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc8fb5b64 nvme_init_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xca5a76f6 nvme_stop_queues EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd45434ee admin_timeout -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd4a98619 nvme_sync_io_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd58b2c2d nvme_reset_ctrl EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd58bbbcb nvme_delete_wq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd8ca606a nvme_start_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe5249752 nvme_stop_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe6e1b716 nvme_disable_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf7130b28 nvme_stop_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf8893eec __traceiter_nvme_sq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf9630ec3 nvme_setup_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xfa38bdcf nvme_set_features -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x1413f71d nvmf_connect_admin_queue -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x14c6ce6d nvmf_unregister_transport -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x38671fb5 nvmf_should_reconnect -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x3f8f2e8c nvmf_reg_write32 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xdce85f06 nvme_start_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe1d97f97 nvme_stop_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe8014c97 nvme_wait_reset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe8e61bba nvme_get_features +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xea42f092 nvme_wait_freeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xeb1cb7db nvme_complete_async_event +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf8dc10bb nvme_cancel_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xff40e631 nvme_setup_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x088e77a2 nvmf_reg_write32 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x0c48758f nvmf_connect_admin_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x4a7d5b59 nvmf_reg_read32 EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x51c659eb nvmf_free_options -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x619e6346 nvmf_reg_read32 -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x6f36e698 nvmf_ip_options_match -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x6fc42afa nvmf_connect_io_queue -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x8a8b92b6 nvmf_reg_read64 -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x9a3e48f6 nvmf_register_transport -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xda0ff5dc nvmf_get_address +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x5ddb1ea7 nvmf_register_transport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x604cd042 nvmf_ip_options_match +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x90a2acec nvmf_get_address +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x963f5468 nvmf_reg_read64 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x9e730d5f nvmf_connect_io_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xc3db47f2 nvmf_should_reconnect +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xcf0cb656 nvmf_unregister_transport EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x0d12e564 nvme_fc_register_remoteport -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x222eca29 nvme_fc_register_localport EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x3884f8b8 nvme_fc_unregister_localport EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x3e33ac54 nvme_fc_rescan_remoteport EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x8a9cf5a7 nvme_fc_set_remoteport_devloss EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0xbb0e18a6 nvme_fc_rcv_ls_req +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0xbcf2b949 nvme_fc_register_localport EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0xfca9dc99 nvme_fc_unregister_remoteport -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x25a00da8 nvmet_sq_init -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x28391d9f nvmet_req_free_sgls -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x36b0bd09 nvmet_ctrl_fatal_error -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x3e87e6c9 nvmet_check_transfer_len -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x697d2821 nvmet_req_complete -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x6c82ab38 nvmet_sq_destroy -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x894c9370 nvmet_req_init -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x9fbe2274 nvmet_req_alloc_sgls -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xa7a8c1e4 nvmet_register_transport -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xc6cfcbc1 nvmet_unregister_transport -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xda2ff318 nvmet_req_uninit +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x0716738e nvmet_sq_destroy +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x3750a149 nvmet_req_complete +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x4941f4be nvmet_ctrl_fatal_error +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x4c1c1068 nvmet_req_uninit +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x5e7ee92e nvmet_check_transfer_len +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x63febf11 nvmet_req_free_sgls +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x7f25ba77 nvmet_unregister_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x8f47300a nvmet_sq_init +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xad57c6d7 nvmet_req_init +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xc82cfc4a nvmet_req_alloc_sgls +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xd6d485f5 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 0x1048b92a nvmet_fc_rcv_fcp_req -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x35f08e2f 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 0x7fa5302a nvmet_fc_rcv_fcp_abort EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x9ef76d99 nvmet_fc_unregister_targetport -EXPORT_SYMBOL_GPL drivers/pci/controller/pcie-iproc 0x9b745a45 iproc_pcie_shutdown -EXPORT_SYMBOL_GPL drivers/pci/switch/switchtec 0xf789b3c3 switchtec_class -EXPORT_SYMBOL_GPL drivers/phy/allwinner/phy-sun4i-usb 0xceeb8708 sun4i_usb_phy_set_squelch_detect -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x129dcf47 tegra210_xusb_padctl_soc -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x15cad322 tegra124_xusb_padctl_soc -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x166aea74 tegra_xusb_padctl_usb3_save_context -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x5a0bacff tegra_xusb_padctl_put -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x6d0ba3d5 tegra186_xusb_padctl_soc -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x6ed0afed tegra_xusb_padctl_usb3_set_lfps_detect -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x72cd4d41 tegra_phy_xusb_utmi_port_reset -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x7540cab6 tegra_xusb_padctl_get_usb3_companion -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x90527824 tegra_xusb_padctl_disable_phy_wake -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x974e6992 tegra_xusb_padctl_remote_wake_detected -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xad9b2d15 tegra_xusb_padctl_set_vbus_override -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xb54c58ca tegra_xusb_padctl_get -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xba9d1786 tegra_xusb_padctl_disable_phy_sleepwalk -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xbf3d480e tegra194_xusb_padctl_soc -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xd05d6713 tegra_xusb_padctl_hsic_set_idle -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xf3f88939 tegra_xusb_padctl_enable_phy_wake -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xfb6c020c tegra_xusb_padctl_enable_phy_sleepwalk +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0xb273c214 nvmet_fc_register_targetport +EXPORT_SYMBOL_GPL drivers/pci/controller/pcie-iproc 0x744ba005 iproc_pcie_shutdown +EXPORT_SYMBOL_GPL drivers/pci/switch/switchtec 0xa3438827 switchtec_class +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x17c070bc hisi_uncore_pmu_stop +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x1f2131d0 hisi_uncore_pmu_start +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x2f9f5723 hisi_uncore_pmu_init_irq +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x3d378ab4 hisi_uncore_pmu_set_event_period +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x3ec4fc27 hisi_uncore_pmu_online_cpu +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x5d903225 hisi_uncore_pmu_event_update +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x69dfcf7d hisi_uncore_pmu_del +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x7d151695 hisi_uncore_pmu_get_event_idx +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x8364f423 hisi_event_sysfs_show +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x883e42c8 hisi_uncore_pmu_event_init +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x8d7f75b3 hisi_uncore_pmu_identifier_attr_show +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xa30fdc32 hisi_format_sysfs_show +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xaffa90ab hisi_cpumask_sysfs_show +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xcc52ccc3 hisi_uncore_pmu_read +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xe661cb58 hisi_uncore_pmu_add +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xf4f61cbd hisi_uncore_pmu_enable +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xfb6373d1 hisi_uncore_pmu_offline_cpu +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xff885d37 hisi_uncore_pmu_disable +EXPORT_SYMBOL_GPL drivers/phy/allwinner/phy-sun4i-usb 0x5544c072 sun4i_usb_phy_set_squelch_detect +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x02d6a0bd tegra_xusb_padctl_set_vbus_override +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x05a1d356 tegra_xusb_padctl_put +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x21c67906 tegra_xusb_padctl_remote_wake_detected +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x26b86b44 tegra_xusb_padctl_enable_phy_sleepwalk +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x34463bc8 tegra_xusb_padctl_hsic_set_idle +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x3cfa6073 tegra186_xusb_padctl_soc +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x436c0ce1 tegra210_xusb_padctl_soc +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x443b1084 tegra124_xusb_padctl_soc +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x513425be tegra_xusb_padctl_enable_phy_wake +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x61566b64 tegra_xusb_padctl_usb3_save_context +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x6c9ae0a3 tegra_xusb_padctl_disable_phy_wake +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x9634fdbb tegra_xusb_padctl_disable_phy_sleepwalk +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xa7856024 tegra_xusb_padctl_get_usb3_companion +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xe4be26a9 tegra_xusb_padctl_get +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xeecc8ba8 tegra194_xusb_padctl_soc +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xf846fc0f tegra_xusb_padctl_usb3_set_lfps_detect +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xfcd5f7d3 tegra_phy_xusb_utmi_port_reset EXPORT_SYMBOL_GPL drivers/phy/ti/phy-omap-usb2 0x00d48f33 omap_usb2_set_comparator -EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0x14788c4c mcp23s08_probe_one -EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0xd150bc3f mcp23x17_regmap -EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0xe12b18d0 mcp23x08_regmap -EXPORT_SYMBOL_GPL drivers/platform/chrome/cros-ec-sensorhub 0x73b958c5 cros_ec_sensorhub_unregister_push_data -EXPORT_SYMBOL_GPL drivers/platform/chrome/cros-ec-sensorhub 0xe0ba591c cros_ec_sensorhub_register_push_data +EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0x1ae3edee mcp23x08_regmap +EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0x2a984901 mcp23x17_regmap +EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0x9d81cfcc mcp23s08_probe_one +EXPORT_SYMBOL_GPL drivers/platform/chrome/cros-ec-sensorhub 0x577b3fea cros_ec_sensorhub_unregister_push_data +EXPORT_SYMBOL_GPL drivers/platform/chrome/cros-ec-sensorhub 0xad187e38 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 0x07027e93 ssam_device_get_match -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x08f0871f ssam_request_sync_init -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x1266dfaf ssam_request_sync -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x186be1d9 ssam_controller_put -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x2c1a50ea ssam_device_alloc -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x2d2885e0 ssh_packet_get -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x3a21bc40 ssam_notifier_register -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x3ee0ed15 ssam_controller_get -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x468f5e92 ssam_controller_stateunlock -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x4afc7e6f ssam_device_get_match_data -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x515c5bce ssam_device_type -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x5acd7886 ssam_client_link -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x5d733ec4 ssam_client_bind -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x62ecb921 ssam_request_sync_with_buffer -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x64c6e499 ssam_controller_statelock -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x6d00695e ssam_request_write_data -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x7dcaae91 ssam_notifier_unregister -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x7f4dc5d5 __ssam_device_driver_register -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x80b5573e ssam_controller_event_enable -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x929f471e ssam_controller_device -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x9b86529f ssam_bus_type -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xa0d29945 ssam_device_remove -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xaf5dc680 ssh_packet_put +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x0b53a271 ssam_device_alloc +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x12392f68 ssam_controller_device +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x15fe72d4 ssam_device_remove +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x258f5c26 ssam_controller_statelock +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x47d402b8 ssam_device_get_match +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x4b82ac2f ssam_request_sync_with_buffer +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x4cf25a8b ssam_get_controller +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x53cdd3af ssam_device_add +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x5f48e2f0 ssam_client_link +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x61e23350 ssam_request_sync_submit +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x677c2203 ssam_client_bind +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x6b26ac0f ssam_controller_event_enable +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x6bf03c99 __ssam_device_driver_register +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x88aeeb96 ssam_request_sync_alloc +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x9817fcef ssam_controller_put +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xb008fdf6 ssh_packet_get +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xb2410f05 ssam_device_get_match_data +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xbe7c5e55 ssam_request_sync +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xc0bfedbf ssam_notifier_unregister EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xc2bd582d ssam_device_id_match -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xdcf14f08 ssam_device_add -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xebb2e9cc ssam_controller_event_disable -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xf18b92bf ssam_get_controller -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xf4a97981 ssam_device_driver_unregister -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xf7016b32 ssam_request_sync_alloc -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xf9562901 ssam_request_sync_submit -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xfde879f2 ssam_request_sync_free +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xc3016542 ssam_controller_stateunlock +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xcede241d ssam_device_driver_unregister +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xd00d6944 ssam_device_type +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xda2663f3 ssam_request_write_data +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xdad2d094 ssam_notifier_register +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xe3d0cbed ssh_packet_put +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xe60059e8 ssam_controller_event_disable +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xe6eecef0 ssam_bus_type +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xe786338d ssam_controller_get +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xfb68b0bf ssam_request_sync_free +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xff01ce51 ssam_request_sync_init EXPORT_SYMBOL_GPL drivers/platform/surface/surface_acpi_notify 0x48cf4c48 san_dgpu_notifier_register -EXPORT_SYMBOL_GPL drivers/platform/surface/surface_acpi_notify 0xc196cd3a san_client_link +EXPORT_SYMBOL_GPL drivers/platform/surface/surface_acpi_notify 0x8931fd21 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 0x21a26e63 reboot_mode_unregister -EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0x4b0f116f devm_reboot_mode_unregister -EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0x6aba20b2 reboot_mode_register -EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0xf356aa99 devm_reboot_mode_register -EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0x5743bb8f bq27xxx_battery_teardown -EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0x918df406 bq27xxx_battery_update -EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0xe8f2e32d bq27xxx_battery_setup -EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x3ce6bf02 pcf50633_mbc_get_status -EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x6a5156e2 pcf50633_mbc_usb_curlim_set -EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0xd220a33e pcf50633_mbc_get_usb_online_status -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x0a0397c4 ptp_qoriq_free -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x2c3df4a8 ptp_qoriq_init +EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0x12036290 devm_reboot_mode_unregister +EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0x87687dd2 reboot_mode_register +EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0x8865450a devm_reboot_mode_register +EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0xa30b1d40 reboot_mode_unregister +EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0x36ed4c3c bq27xxx_battery_update +EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0x88318b71 bq27xxx_battery_setup +EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0xd06ebcc4 bq27xxx_battery_teardown +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x0402b7f5 pcf50633_mbc_get_status +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x82fff286 pcf50633_mbc_get_usb_online_status +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0xbadfb074 pcf50633_mbc_usb_curlim_set EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x2eae82b0 ptp_qoriq_isr -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x3ad36bcb ptp_qoriq_gettime -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x4cf219cf ptp_qoriq_adjtime -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x63e5f3a9 ptp_qoriq_settime -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x8049fb38 ptp_qoriq_adjfine -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x853561c3 extts_clean_up -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xb61f47ff ptp_qoriq_enable -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x27fa69f2 mc13xxx_regulator_ops -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x39736ad6 mc13xxx_fixed_regulator_set_voltage -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x54b54d69 mc13xxx_fixed_regulator_ops -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xbfffe71e mc13xxx_parse_regulators_dt -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xc6cbeec5 mc13xxx_get_num_regulators_dt -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x29ebd23f wm8350_register_regulator -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x4a9cebaf wm8350_dcdc25_set_mode -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xb2a73717 wm8350_dcdc_set_slot -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xbb7a5a2b wm8350_ldo_set_slot -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xc0d736e4 wm8350_isink_set_flash -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xe44f5cfe wm8350_register_led -EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0xd67531a7 wm8400_register_regulator -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x091d76e7 scp_get_venc_hw_capa -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x36e78375 scp_get_device -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x8efbefd1 scp_get_rproc -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x98b63241 scp_get_vdec_hw_capa -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0xd2fcc4d7 scp_put -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0xd4e6f40a scp_mapping_dm_addr -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0xfe0521f3 scp_get +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x2ec8dfed ptp_qoriq_adjfine +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x41c0b84f extts_clean_up +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x44d000da ptp_qoriq_adjtime +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x49f6baae ptp_qoriq_free +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x5195b807 ptp_qoriq_gettime +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x5dde972f ptp_qoriq_settime +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x64eb6144 ptp_qoriq_enable +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xec70a92a ptp_qoriq_init +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x1d2a3225 mc13xxx_fixed_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x4eebc3ce mc13xxx_parse_regulators_dt +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x8ab3f371 mc13xxx_fixed_regulator_set_voltage +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x8c86cb8f mc13xxx_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xb0ae31fe mc13xxx_get_num_regulators_dt +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x2835331d wm8350_isink_set_flash +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x4197aa9f wm8350_register_regulator +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x84f51169 wm8350_ldo_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x90299617 wm8350_dcdc25_set_mode +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xd7dcb4ba wm8350_dcdc_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xe0104fda wm8350_register_led +EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0x75f79933 wm8400_register_regulator +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x1116fb7f scp_get_vdec_hw_capa +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x13a0c6ff scp_get +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0xa01b0879 scp_mapping_dm_addr +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0xa3af7d17 scp_get_venc_hw_capa +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0xb4603619 scp_get_rproc +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0xb82fbacc scp_put +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0xc9cf3dbf scp_get_device EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x09313652 scp_memcpy_aligned -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x09c7fc44 scp_ipi_lock -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x24cef98c scp_ipi_register -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x7289af94 scp_ipi_unregister -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x8d1ea2b7 scp_ipi_unlock -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0xcd20a99a scp_ipi_send +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x152044ed scp_ipi_unregister +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x64e0c0eb scp_ipi_send +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x6f04fc44 scp_ipi_lock +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x9eca3762 scp_ipi_register +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0xeac889c3 scp_ipi_unlock EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x0fa538df qcom_register_ssr_notifier -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x1eef4363 qcom_remove_ssr_subdev -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x33684ba4 qcom_remove_glink_subdev -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x4065ede6 qcom_remove_smd_subdev -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x46a7378b qcom_minidump -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x688d8751 qcom_add_smd_subdev -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xb43d347f qcom_add_glink_subdev -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xc9defda2 qcom_register_dump_segments +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x117e0df9 qcom_remove_glink_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x62c72c4e qcom_add_ssr_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xa25bc733 qcom_minidump +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xa436579c qcom_remove_smd_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xa7d0fe9b qcom_remove_ssr_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xca0adcf6 qcom_add_glink_subdev EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xd6cc0cc0 qcom_unregister_ssr_notifier -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xde93e460 qcom_add_ssr_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xdcfa1ab5 qcom_register_dump_segments +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xfb7e9da1 qcom_add_smd_subdev EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_pil_info 0x30e58241 qcom_pil_info_store -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x07bcb7b1 qcom_q6v5_init -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x5e1bdfaf qcom_q6v5_prepare -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x9d560c08 qcom_q6v5_panic -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0xb95a626c qcom_q6v5_unprepare -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0xce88e05c qcom_q6v5_request_stop -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0xf9035427 qcom_q6v5_wait_for_start -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_sysmon 0x1074c332 qcom_add_sysmon_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x24ece794 qcom_q6v5_wait_for_start +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x4d8a4e51 qcom_q6v5_panic +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0xd7508c9c qcom_q6v5_init +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0xe58f30f8 qcom_q6v5_request_stop +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0xee6ff72a qcom_q6v5_prepare +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0xffc64ed1 qcom_q6v5_unprepare EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_sysmon 0x1482d168 qcom_sysmon_shutdown_acked +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_sysmon 0x413efebb qcom_add_sysmon_subdev EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_sysmon 0xa881c6fc qcom_remove_sysmon_subdev -EXPORT_SYMBOL_GPL drivers/rpmsg/mtk_rpmsg 0x84a848e2 mtk_rpmsg_create_rproc_subdev +EXPORT_SYMBOL_GPL drivers/rpmsg/mtk_rpmsg 0x16454b6f mtk_rpmsg_create_rproc_subdev EXPORT_SYMBOL_GPL drivers/rpmsg/mtk_rpmsg 0x86903274 mtk_rpmsg_destroy_rproc_subdev EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0x149236da qcom_glink_native_remove -EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0xbdf8dc9d qcom_glink_native_probe +EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0xe1d337b0 qcom_glink_native_probe EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0xf14f5684 qcom_glink_ssr_notify EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0xfd2d5a1d qcom_glink_native_unregister EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink_smem 0x72dd75d9 qcom_glink_smem_unregister -EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink_smem 0xb75490dd qcom_glink_smem_register -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x02d1ffbd cxgbi_ep_poll -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x066a769d cxgbi_device_find_by_netdev_rcu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x093c7552 cxgbi_device_find_by_netdev -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x10ee8fc4 cxgbi_iscsi_cleanup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1ef70c8f cxgbi_sock_select_mss -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1f8085c9 cxgbi_get_host_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2092eb5d cxgbi_conn_tx_open -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x27c16ee7 cxgbi_sock_free_cpl_skbs -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x31927326 cxgbi_sock_established -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x428e5654 cxgbi_device_register -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x540646f9 cxgbi_sock_skb_entail -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5c0f952c cxgbi_conn_xmit_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5d90c2d0 cxgbi_conn_pdu_ready -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6568e4d0 cxgbi_sock_act_open_req_arp_failure -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6828aacc cxgbi_get_ep_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x68da66db cxgbi_bind_conn -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6d723f2b cxgbi_device_unregister -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x72516288 cxgbi_get_conn_stats -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x74dc42be cxgbi_sock_rcv_wr_ack -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x74f9a029 cxgbi_create_conn -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7a2735cb cxgbi_ddp_ppm_setup +EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink_smem 0xe81fac82 qcom_glink_smem_register +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x01866ca2 cxgbi_ep_disconnect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x043e7a45 cxgbi_device_register +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x065c3c28 cxgbi_ep_connect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x09cf3e3e cxgbi_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x11015faf cxgbi_set_conn_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x162612d8 cxgbi_conn_alloc_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x20ca4b96 cxgbi_parse_pdu_itt +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x22a6e324 cxgbi_get_conn_stats +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2c5d37be cxgbi_sock_rcv_peer_close +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x30257bbc cxgbi_set_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x329d1c19 cxgbi_sock_rcv_wr_ack +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x330b073c cxgbi_conn_pdu_ready +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x449cc1e5 cxgbi_device_portmap_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x456ea8e1 cxgbi_sock_free_cpl_skbs +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x47ed65b9 cxgbi_conn_tx_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x47f70bbc cxgbi_device_find_by_lldev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x57f4b429 cxgbi_ep_poll +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5bee7b18 cxgbi_device_find_by_netdev_rcu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5f3e15ba cxgbi_hbas_remove +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6009c70a cxgbi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6a0fcb32 cxgbi_sock_fail_act_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7155506b cxgbi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7d1d100d cxgbi_conn_xmit_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7dbfecab cxgbi_get_ep_param EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fdb6004 cxgbi_device_unregister_all -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x89978fa6 cxgbi_hbas_add -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8b093d3a cxgbi_set_host_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8cd6af00 cxgbi_sock_closed -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8da36ea4 cxgbi_ep_connect -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x94b72ef0 cxgbi_iscsi_init -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9793d2a0 cxgbi_sock_rcv_peer_close -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9963a2a2 cxgbi_device_portmap_create -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa3680ffd cxgbi_sock_check_wr_invariants -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa824ca54 cxgbi_parse_pdu_itt -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa87b96d5 cxgbi_set_conn_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xae95287a cxgbi_sock_rcv_close_conn_rpl -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb1d3db5a cxgbi_device_portmap_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x879f2a10 cxgbi_bind_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8a5f0201 cxgbi_device_unregister +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8f4c567a cxgbi_device_portmap_create +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9110e25f cxgbi_sock_select_mss +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x949c7c84 cxgbi_iscsi_init +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x97eec56c cxgbi_sock_established +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa07e12af cxgbi_get_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa7de52c6 cxgbi_iscsi_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xace2d981 cxgbi_device_find_by_netdev EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc011af75 cxgbi_ddp_set_one_ppod -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc1b7df97 cxgbi_device_find_by_lldev -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc31193d0 cxgbi_ep_disconnect -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc63f97b6 cxgbi_destroy_session -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xce55a6f9 cxgbi_conn_init_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd2a7dd14 cxgbi_conn_alloc_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdf121340 cxgbi_hbas_remove -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe3f08a36 cxgbi_sock_fail_act_open -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xea5b068c cxgbi_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc409d3df cxgbi_sock_rcv_abort_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc56189c4 cxgbi_conn_init_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc588bedd cxgbi_sock_skb_entail +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc626d1b1 cxgbi_sock_closed +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd57ac72d cxgbi_sock_check_wr_invariants +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd890c641 cxgbi_sock_act_open_req_arp_failure +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd9cd088e cxgbi_sock_rcv_close_conn_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xde808046 cxgbi_ddp_ppm_setup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe6f39bbe cxgbi_sock_purge_wr_queue +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xee8c9c8d cxgbi_hbas_add EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xef346615 cxgbi_attr_is_visible -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf56cc393 cxgbi_sock_purge_wr_queue -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf58d71f7 cxgbi_sock_rcv_abort_rpl -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf70eeab0 cxgbi_create_session -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x046ead87 fcoe_ctlr_device_add -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0f58c2e1 fcoe_clean_pending_queue -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x18292b4c fcoe_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x45d4fe9d fcoe_fcf_device_add -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x5510cc60 fcoe_ctlr_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x5a794a78 fcoe_link_speed_update -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x5a88b610 fcoe_libfc_config -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x77086f7c fcoe_ctlr_device_delete -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x793d2801 fcoe_validate_vport_create +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xfda2c644 cxgbi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x04ebef04 fcoe_fcf_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x17422613 fcoe_get_wwn +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x341e6c22 fcoe_fc_crc +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x5aa8659e __fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x70d0fbc9 fcoe_get_paged_crc_eof EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x7e92994b fcoe_wwn_from_mac -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x81b54121 __fcoe_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x878a52ac fcoe_check_wait_queue -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xab92733b fcoe_fcf_device_delete -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xb3fcba66 fcoe_get_paged_crc_eof -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xb6505c00 fcoe_get_wwn +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xa9f87dc2 fcoe_link_speed_update +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xae64c73e fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xb017b6e8 fcoe_start_io +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xb5c11100 fcoe_ctlr_device_delete EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xbac58840 fcoe_queue_timer -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xcb2fe034 fcoe_start_io -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xddd9ec95 fcoe_fc_crc +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xbcb29917 fcoe_clean_pending_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xce471432 fcoe_ctlr_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xde8d89c8 fcoe_check_wait_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xe6096ab0 fcoe_fcf_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xe71bbbbf fcoe_validate_vport_create EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf167cb7a fcoe_wwn_to_str -EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0xdcd4fd8c fdomain_destroy -EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0xdd253fa1 fdomain_create -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x01468ae6 hisi_sas_get_fw_info -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x0e7ba006 hisi_sas_slave_configure -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x16200497 hisi_sas_controller_reset_prepare -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x313afa5d hisi_sas_phy_down +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xfa8b05cb fcoe_ctlr_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xfec9e3ed fcoe_libfc_config +EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0x07ccbc67 fdomain_destroy +EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0x44356a14 fdomain_create +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x269fc4f3 hisi_sas_free +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x2f7e1375 hisi_sas_phy_oob_ready EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x4fc22123 hisi_sas_stt -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x5b461891 hisi_sas_slot_task_free -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x62b92400 hisi_sas_free -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x6d434139 hisi_sas_phy_oob_ready -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x6e640e46 hisi_sas_alloc -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x6f0a4f22 hisi_sas_stop_phys -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x73961e42 hisi_sas_debugfs_dir -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x760a6c75 hisi_sas_controller_reset_done -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x76ecbbcf hisi_sas_scan_finished -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x780743c8 hisi_sas_scan_start -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x783a3e84 hisi_sas_phy_enable -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x85a8ba28 hisi_sas_sync_irqs -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x8719473f hisi_sas_init_mem +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x51b09c0c hisi_sas_release_tasks +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x52233f35 hisi_sas_controller_reset_done +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x55567a84 hisi_sas_alloc +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x59ec2cef hisi_sas_stop_phys +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x6d354334 hisi_sas_scan_start +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x7a92a4fa hisi_sas_controller_reset_prepare +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x877031bc hisi_sas_slot_task_free +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x98a045fa hisi_sas_probe EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x9b807c91 hisi_sas_get_prog_phy_linkrate_mask +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xa19b1b7b hisi_sas_init_mem +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xa2d58bb2 hisi_sas_debugfs_dir +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xac744edc hisi_sas_notify_phy_event 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 0xb38ef913 hisi_sas_notify_phy_event -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xbe37be69 to_hisi_sas_port -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xc2afdfe6 hisi_sas_sata_done +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xb0777c02 hisi_sas_slave_configure +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xb31fe3fc hisi_sas_phy_enable +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xbccdaa62 hisi_sas_sync_irqs 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 0xce0ff533 hisi_sas_probe -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xdad4b47a hisi_sas_host_reset +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xc5be0474 hisi_sas_sata_done +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xd1d21e5d hisi_sas_host_reset +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xd3292d3a hisi_sas_remove 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 0xeb69cd7e hisi_sas_release_tasks +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xeaa50bed hisi_sas_phy_down 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 0xffb25450 hisi_sas_remove -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x29a1a1e1 iscsi_boot_destroy_kset -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x5b125b45 iscsi_boot_create_ethernet -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x75471824 iscsi_boot_create_target -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x9a57360c iscsi_boot_create_host_kset -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xad852b35 iscsi_boot_create_acpitbl -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xae0ce553 iscsi_boot_create_kset -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xb316434c iscsi_boot_create_initiator +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xf2d2bb2e hisi_sas_get_fw_info +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xf5b3d911 to_hisi_sas_port +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xfd78b51d hisi_sas_scan_finished +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x09206628 iscsi_boot_create_target +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x401a3415 iscsi_boot_create_ethernet +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x8bbafc27 iscsi_boot_destroy_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xa44f0060 iscsi_boot_create_acpitbl +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xa4b31359 iscsi_boot_create_host_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xc4dc5c8f iscsi_boot_create_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xd8661ad7 iscsi_boot_create_initiator EXPORT_SYMBOL_GPL drivers/scsi/libfc/libfc 0x66f43542 fc_seq_els_rsp_send -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x02c83b11 iscsi_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x02616c29 iscsi_session_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0f7673bb iscsi_session_get_param EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x159452f1 iscsi_itt_to_ctask -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x213cfb05 iscsi_complete_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x28747a8d iscsi_host_set_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2ce927f0 iscsi_host_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2e376640 iscsi_target_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x34215b8e iscsi_conn_bind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x15950c8f iscsi_session_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x175214c2 __iscsi_get_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1de48b84 iscsi_eh_session_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x27e91505 iscsi_conn_send_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x38615afc iscsi_prep_data_out_pdu EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3c1f5b25 iscsi_prep_data_out_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4410178d iscsi_conn_unbind -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4bc10047 iscsi_suspend_tx -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4bf23e33 iscsi_conn_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5754e08d iscsi_eh_cmd_timed_out -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x596cb6fa iscsi_host_add -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5c928070 iscsi_conn_stop -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5ec59ff5 iscsi_conn_send_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6045ee95 iscsi_update_cmdsn -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x64916005 __iscsi_complete_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x682fcbe8 iscsi_conn_start -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x695f9174 iscsi_host_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7195af00 iscsi_conn_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x73215433 iscsi_conn_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7746aa18 iscsi_host_remove -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x79f967cf iscsi_set_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7bd56e20 iscsi_verify_itt -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8b02380c iscsi_requeue_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x43d06db1 iscsi_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x452ba408 iscsi_conn_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4bcd6515 iscsi_conn_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4ff10251 iscsi_conn_stop +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5091e0f9 iscsi_conn_bind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5336b80c iscsi_eh_cmd_timed_out +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5462668f iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x553cd8ae iscsi_host_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x558f11d7 iscsi_eh_device_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x592c17da iscsi_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x59fbf166 __iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5f33576f iscsi_host_get_max_scsi_cmds +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6340a05a iscsi_itt_to_ctask +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6aa15715 iscsi_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7a409c63 __iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x803e393f iscsi_conn_start +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x867347ff iscsi_update_cmdsn +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8bf9f3e4 iscsi_session_failure EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9170b554 iscsi_host_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x96f8f4ce iscsi_eh_session_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9ae978f1 iscsi_eh_abort -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9d4d82c9 iscsi_conn_failure -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa6d81201 iscsi_eh_recover_target -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa7990f86 iscsi_conn_queue_work -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xadd3e64d iscsi_complete_scsi_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xae64029b __iscsi_get_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbcc2a625 iscsi_session_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbd6629de iscsi_host_get_max_scsi_cmds -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc08adb44 iscsi_eh_device_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcc75786a iscsi_suspend_queue -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd6795a24 iscsi_put_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd879470a iscsi_session_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xda19bdb0 iscsi_session_failure -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe1c4c03f iscsi_session_recovery_timedout -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe3059779 __iscsi_put_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe964f6e3 iscsi_itt_to_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x901fdc54 iscsi_host_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa8855dfd iscsi_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb267f222 iscsi_verify_itt +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb7696ad7 iscsi_conn_queue_work +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xba315b00 iscsi_session_recovery_timedout +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbb758ed5 iscsi_conn_unbind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc213ff1b iscsi_suspend_tx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd292a92b iscsi_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd2a6d36d iscsi_eh_abort +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd2d36b13 iscsi_suspend_queue +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd8fd8a05 iscsi_eh_recover_target +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xde227ea4 iscsi_host_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdfc2e558 iscsi_complete_scsi_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe1932388 iscsi_host_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe1d7cda3 iscsi_itt_to_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe5d7997e iscsi_complete_pdu EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeab9cbd5 iscsi_conn_get_addr_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf449063e iscsi_session_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x22175f06 iscsi_tcp_task_init -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x2bd1d475 iscsi_tcp_cleanup_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x2c5dc112 iscsi_segment_seek_sg -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x2f80c094 iscsi_tcp_hdr_recv_prep -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x301b7807 iscsi_tcp_r2tpool_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x39c342ba iscsi_tcp_task_xmit -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x3bdf421f iscsi_tcp_r2tpool_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x4321bd48 iscsi_tcp_recv_segment_is_hdr -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x526f05cc iscsi_tcp_conn_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x541ed33b iscsi_segment_init_linear -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x6d445725 iscsi_tcp_recv_skb -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x82e0e10b iscsi_tcp_segment_done -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x8a05aae4 iscsi_tcp_set_max_r2t -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xb079cd7f iscsi_tcp_segment_unmap -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xef308177 iscsi_tcp_conn_get_stats -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xf224042f iscsi_tcp_dgst_header -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xf48ce96b iscsi_tcp_conn_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0b667739 sas_task_abort -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1d29fea7 sas_notify_port_event -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2937e5a4 sas_phy_reset -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x324e4c18 sas_change_queue_depth -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x37e5b95c sas_unregister_ha -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5036aeda sas_eh_target_reset_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5737696f sas_eh_abort_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5c873b54 sas_target_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x63b166ba sas_ssp_task_response -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x68e98837 sas_domain_attach_transport -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x71afa648 sas_request_addr -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x79049830 sas_ioctl -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7d804aa6 sas_queuecommand -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7eeb907e sas_eh_device_reset_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x81d07ee8 sas_slave_configure -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9078edc5 sas_bios_param -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xaacb66ec sas_get_local_phy -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb0e4495d sas_drain_work -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb292eed4 sas_alloc_slow_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xbf72a046 sas_slave_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xcc1cc638 sas_register_ha -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xdca27d7f sas_ata_schedule_reset -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xde04c9b2 sas_alloc_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe84dc541 dev_attr_phy_event_threshold -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xebee9e46 sas_target_destroy -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf644c988 sas_notify_phy_event -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xfede8e8e sas_free_task -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_fc 0x137db718 fc_eh_should_retry_cmd -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x03266a4d iscsi_is_session_dev +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xedc3c42b iscsi_host_add +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf78a74be iscsi_requeue_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfaa95062 iscsi_host_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x137e942e iscsi_tcp_dgst_header +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x2d921871 iscsi_tcp_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x3335dc77 iscsi_tcp_r2tpool_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x3bc2a360 iscsi_tcp_recv_segment_is_hdr +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x3e68bd82 iscsi_tcp_conn_get_stats +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x43b97a60 iscsi_tcp_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x4f39c286 iscsi_tcp_hdr_recv_prep +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x55dcf382 iscsi_tcp_task_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x610f2ed2 iscsi_segment_init_linear +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x6d423898 iscsi_tcp_r2tpool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x950108b2 iscsi_tcp_recv_skb +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x9edd29fe iscsi_tcp_segment_done +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xa696d05e iscsi_segment_seek_sg +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xc3749e32 iscsi_tcp_set_max_r2t +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xc5c3b4e9 iscsi_tcp_task_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xd2d760e9 iscsi_tcp_segment_unmap +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xd3e55342 iscsi_tcp_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x052d5342 sas_request_addr +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0c0d518d sas_target_destroy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x10bef430 sas_ata_schedule_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1804c664 sas_bios_param +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1b7f14ef sas_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2463956a sas_eh_abort_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x28ce50de sas_drain_work +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x409c96f2 sas_change_queue_depth +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x433f760f sas_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5640c677 dev_attr_phy_event_threshold +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x586b956d sas_alloc_slow_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8b4bc9e6 sas_register_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x99887f3d sas_domain_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa2672343 sas_eh_device_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xaf0424bc sas_task_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xaf416a40 sas_free_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xbe538e57 sas_alloc_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xcbb890ea sas_slave_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd372f4a1 sas_ssp_task_response +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd3a14b2b sas_unregister_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xdc07183b sas_phy_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe51ba1e7 sas_ioctl +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe53f7841 sas_slave_configure +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe68a69b2 sas_get_local_phy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xecb0cbd8 sas_notify_phy_event +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xfd8b62c7 sas_notify_port_event +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xff46fa2c sas_eh_target_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_fc 0x48c3cb72 fc_eh_should_retry_cmd +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x048611c4 iscsi_put_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x04a8106a iscsi_create_endpoint EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0736dd10 __tracepoint_iscsi_dbg_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x147faa2c iscsi_recv_pdu -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x18e7024a iscsi_create_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x19ee6601 iscsi_destroy_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1d81c502 iscsi_scan_finished -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x24c3843d iscsi_block_scsi_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x25063474 iscsi_dbg_trace -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x252f852a iscsi_remove_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x29db9c06 iscsi_free_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2bdb9cb2 iscsi_alloc_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x32ee911a iscsi_put_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x175b2f00 iscsi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1bb22fbd iscsi_is_session_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x23cdd903 iscsi_add_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x267d2452 iscsi_destroy_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x29f8149f iscsi_host_for_each_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2b32551c iscsi_flashnode_bus_match +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x30b0896f __traceiter_iscsi_dbg_session EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3785e561 __tracepoint_iscsi_dbg_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3f955426 iscsi_register_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x48a4d83f iscsi_offload_mesg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x50a188b0 __traceiter_iscsi_dbg_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x52cf809c __traceiter_iscsi_dbg_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x52d95306 __traceiter_iscsi_dbg_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3ba4ea36 iscsi_destroy_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x41beaed2 iscsi_alloc_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x46b15bf8 iscsi_destroy_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4b45a022 __traceiter_iscsi_dbg_sw_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4d340fee iscsi_get_port_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x54a9633e iscsi_find_flashnode_conn EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x584a31ab __SCK__tp_func_iscsi_dbg_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5a2446c0 iscsi_session_event EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5bfaa2c3 __tracepoint_iscsi_dbg_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5ca146ce iscsi_session_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x60e5281d iscsi_session_chkready +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x62540e25 iscsi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x62f5305c iscsi_offload_mesg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x64ba12d5 iscsi_get_port_speed_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x66333e45 iscsi_is_session_online +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x674edc98 iscsi_scan_finished EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x699fe53e iscsi_get_discovery_parent_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6a28de29 iscsi_conn_login_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6a5e6ad4 iscsi_put_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6a971547 iscsi_find_flashnode_sess EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x71b768b0 __SCK__tp_func_iscsi_dbg_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7255fd13 iscsi_is_session_online -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x76e9effb iscsi_create_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7aad4435 iscsi_create_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x830781a5 iscsi_post_host_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x72f92e40 iscsi_destroy_conn EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x84a005f1 iscsi_get_router_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x84b0e124 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 0x8c8f3efa iscsi_find_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8ec82ec9 iscsi_destroy_iface -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8f6c0673 iscsi_destroy_all_flashnode -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8f8e5d46 iscsi_find_flashnode_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x91928deb iscsi_host_for_each_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x98fff304 iscsi_lookup_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9a3c0816 iscsi_ping_comp_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9bb70917 iscsi_put_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9c316180 iscsi_conn_error_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9c3348a1 iscsi_get_port_speed_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9f6b8b24 iscsi_session_chkready +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x930a24ce iscsi_recv_pdu +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9347f46b __traceiter_iscsi_dbg_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x94e65e36 iscsi_destroy_all_flashnode +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9d194d55 __traceiter_iscsi_dbg_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9f8c67c9 iscsi_register_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa43248db iscsi_unblock_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 0xaca0c982 iscsi_destroy_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xaed8af7f iscsi_add_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb60478e2 iscsi_block_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb68081c9 iscsi_unregister_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb9e4c49a __traceiter_iscsi_dbg_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xba5a1517 iscsi_create_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbb2d2d1a iscsi_get_port_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xacbb891f iscsi_create_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb4eec384 iscsi_post_host_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb859bcac iscsi_remove_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xba250b55 iscsi_create_flashnode_conn EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc071179 iscsi_get_ipaddress_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc6458e0 iscsi_flashnode_bus_match -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbf5062b1 iscsi_create_iface -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc226b752 iscsi_conn_login_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc303c8bc __traceiter_iscsi_dbg_sw_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc9a30be0 iscsi_create_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbf8b396a iscsi_unregister_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc4e96889 iscsi_block_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xcc8df459 iscsi_get_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd0f551fd __traceiter_iscsi_dbg_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd31a34cc iscsi_block_scsi_eh EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd4e55f1e __tracepoint_iscsi_dbg_sw_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd8bef5c8 iscsi_unblock_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd9bb923b iscsi_ping_comp_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe2bc5811 iscsi_dbg_trace EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe4c79fa6 __SCK__tp_func_iscsi_dbg_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe981c850 iscsi_destroy_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfb3d8c5b iscsi_get_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x072f70dd sas_tlr_supported -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x47c62211 sas_enable_tlr -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x9af74be0 sas_disable_tlr -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x9b9df75a sas_is_tlr_enabled +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf4ab60ac iscsi_conn_error_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf5b8b98e iscsi_create_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfb5372fe iscsi_free_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x60623d57 sas_tlr_supported +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x8987a233 sas_is_tlr_enabled +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x94476ff8 sas_disable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xa3f91c0e sas_enable_tlr EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x0ef06974 spi_populate_ppr_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x7dac0840 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 0xa6717639 spi_populate_tag_msg EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xcffa2aff spi_populate_width_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x1104969f srp_rport_add EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x1902178a srp_tmo_valid -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x3efda83f srp_rport_del -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x4e7867fb srp_remove_host -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x6af88b8d srp_rport_add -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x6e134933 srp_stop_rport_timers -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x7ceb05d4 srp_attach_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xc3d59458 srp_release_transport -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x1d3cf49c ufshcd_dme_get_attr -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x240e556e ufshcd_dealloc_host -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x2c73f6a5 ufshcd_release -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x36f11664 ufshcd_init -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x37cc4e9f ufshcd_hba_enable -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x3ff8ec52 ufshcd_hold -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x4453f7df ufshcd_dme_set_attr -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x4e659354 ufshcd_link_recovery -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x70266791 ufshcd_uic_hibern8_exit +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xa95f39a8 srp_remove_host +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xc86ca997 srp_stop_rport_timers +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xca4ed3cf srp_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xcb60c12b srp_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xe08946f7 srp_rport_del +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x15dd79bf ufshcd_init +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x26e2d7dc ufshcd_hba_stop +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x2f221a9f ufshcd_suspend_prepare +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x33d4eb93 ufshcd_resume_complete +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x3521fc73 ufshcd_config_pwr_mode +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x370eeba5 ufshcd_auto_hibern8_update +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x4f948229 ufshcd_uic_hibern8_exit +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x5a447877 ufshcd_dme_set_attr +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x7046a6e3 ufshcd_fixup_dev_quirks EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x723b1abf ufshcd_delay_us -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x8a0e57ca ufshcd_fixup_dev_quirks -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x8f7cf7c0 ufshcd_suspend_prepare -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x97082260 ufshcd_config_pwr_mode -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xa19be7a5 ufshcd_hba_stop -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xa5c02afc ufshcd_update_evt_hist -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xabff1604 ufshcd_resume_complete -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xac96e341 ufshcd_auto_hibern8_update -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xae1037e2 ufshcd_make_hba_operational -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xc4e63cde ufshcd_dump_regs -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xd43b1b81 ufshcd_remove -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xf7e822b6 ufshcd_dme_configure_adapt -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x47463cb5 ufshcd_pltfrm_shutdown +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x735225ba ufshcd_link_recovery +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x812b1378 ufshcd_dme_get_attr +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x8cf0e45a ufshcd_update_evt_hist +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xa21f59b6 ufshcd_dme_configure_adapt +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xaf017227 ufshcd_hold +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xaf8827b2 ufshcd_dump_regs +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xb1f3b526 ufshcd_remove +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xc8edb74d ufshcd_dealloc_host +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xf852460a ufshcd_release +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xfebce5f0 ufshcd_hba_enable +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xff0ae04b ufshcd_make_hba_operational +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x29fc0c08 ufshcd_pltfrm_shutdown EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x54c946de ufshcd_init_pwr_dev_param -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xa1b95f5e ufshcd_pltfrm_init +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xa1acce73 ufshcd_pltfrm_init EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xff85cd6b ufshcd_get_pwr_dev_param -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x2ec4935b siox_device_synced -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x74f6e8c9 __siox_driver_register -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x7887401c siox_device_connected -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xad380a75 siox_master_register -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xf7c48110 siox_master_unregister -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xf818ca8c siox_master_alloc -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x040e43cf slimbus_bus -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x0514b9b1 __slim_driver_register -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x1979d521 slim_write -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x1dc720c3 slim_writeb -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x23cdcc7d slim_stream_enable -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x2f4ff9da slim_do_transfer -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x3632224d slim_report_absent -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x3fa6f5fc slim_stream_free -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x4455f158 slim_device_report_present -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x473895dc slim_readb -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x545eca1d slim_msg_response -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x5897b46c slim_unregister_controller -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x5b40a24a slim_driver_unregister -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x5ebbad40 slim_read -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x605fad97 slim_register_controller -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x67dcde9e slim_xfer_msg -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x71bf0192 slim_get_logical_addr -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x78348ff2 slim_stream_unprepare -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x90ae35e2 slim_free_txn_tid -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x96ce2f44 slim_get_device -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x9878f2b6 slim_stream_allocate -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xa85c7ce1 slim_stream_prepare -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xda6c76ca of_slim_get_device -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xdbd5bd7e slim_ctrl_clk_pause -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xdd25d2ef slim_alloc_txn_tid -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xe04c3094 slim_stream_disable +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x89653bb4 siox_device_synced +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x899d5783 siox_device_connected +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x8a937edf siox_master_unregister +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x8cb7bd48 siox_master_alloc +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xb7304469 __siox_driver_register +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xbbcec484 siox_master_register +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x0df47ca7 slim_readb +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x12db4df3 slim_read +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x1450fa85 slim_alloc_txn_tid +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x1fc15e7a of_slim_get_device +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x20cc728c __slim_driver_register +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x3126c65f slim_stream_unprepare +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x3e4fea16 slim_get_logical_addr +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x3eec999c slim_register_controller +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x4d7d5e31 slim_write +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x510b86f6 slim_device_report_present +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x577b3595 slim_driver_unregister +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x66a58751 slim_stream_free +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x7c8d3445 slim_do_transfer +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x838a7c65 slim_stream_disable +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x90b6d7b8 slim_unregister_controller +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x96223492 slim_stream_prepare +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x9c20c657 slim_xfer_msg +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x9f9c9e09 slim_stream_enable +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xaae92776 slimbus_bus +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xad49fa85 slim_report_absent +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xc2c29a9a slim_get_device +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xd18eb11c slim_free_txn_tid +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xd442ab04 slim_writeb +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xddcdcf9e slim_ctrl_clk_pause +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xe02107fb slim_msg_response +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xfddc0fac slim_stream_allocate +EXPORT_SYMBOL_GPL drivers/soc/amlogic/meson-canvas 0x13fc5914 meson_canvas_get EXPORT_SYMBOL_GPL drivers/soc/amlogic/meson-canvas 0x494128eb meson_canvas_alloc -EXPORT_SYMBOL_GPL drivers/soc/amlogic/meson-canvas 0x5ed0ae8f meson_canvas_get EXPORT_SYMBOL_GPL drivers/soc/amlogic/meson-canvas 0x673c5a86 meson_canvas_config EXPORT_SYMBOL_GPL drivers/soc/amlogic/meson-canvas 0xfbd79150 meson_canvas_free EXPORT_SYMBOL_GPL drivers/soc/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 0x218f54eb dpaa2_io_store_create 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 0x34760aa6 dpaa2_io_service_deregister 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 0x40ad5a3a dpaa2_io_service_register 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 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/qcom/apr 0x2f539154 apr_driver_unregister -EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x3c2934ae aprbus -EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0xb2fa15f2 apr_send_pkt -EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0xc22e0fec __apr_driver_register +EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0xdc954fc0 dpaa2_io_service_deregister +EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0xe20b22fc dpaa2_io_service_register +EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0xed2ea77f dpaa2_io_store_create +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x29797a9c __apr_driver_register +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x9c93bb16 apr_send_pkt +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0xbbee56c3 aprbus +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0xca5589de apr_driver_unregister 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 0x1e64d369 qcom_mdt_load -EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0x51338c1b qcom_mdt_load_no_init +EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0x01cbda23 qcom_mdt_load EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0xa1c6a5b9 qcom_mdt_read_metadata +EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0xcea0fab3 qcom_mdt_load_no_init EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0xe8a3861c qcom_mdt_get_size -EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x55f7b74a sdw_bus_type -EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x9ff81eef __sdw_register_driver -EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0xcd1cd955 sdw_unregister_driver -EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-cadence 0x0b02c4ab sdw_cdns_debugfs_init +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x0781b410 __sdw_register_driver +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x213f8dfd sdw_bus_type +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x4df63e17 sdw_unregister_driver +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-cadence 0x941ee655 sdw_cdns_debugfs_init +EXPORT_SYMBOL_GPL drivers/spi/spi-altera-core 0x3e002fe4 altera_spi_init_master EXPORT_SYMBOL_GPL drivers/spi/spi-altera-core 0xb9edd149 altera_spi_irq -EXPORT_SYMBOL_GPL drivers/spi/spi-altera-core 0xdc2b253f altera_spi_init_master -EXPORT_SYMBOL_GPL drivers/spi/spi-bcm-qspi 0x2dc72888 bcm_qspi_pm_ops -EXPORT_SYMBOL_GPL drivers/spi/spi-bcm-qspi 0x38c256fb bcm_qspi_probe -EXPORT_SYMBOL_GPL drivers/spi/spi-bcm-qspi 0x6327cf6c bcm_qspi_remove -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x13642885 spi_bitbang_setup -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x406ae9b2 spi_bitbang_start -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x4f7f52e0 spi_bitbang_setup_transfer -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xc9febf35 spi_bitbang_stop -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xeec382a2 spi_bitbang_cleanup -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xfb6f8b36 spi_bitbang_init -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x06710c74 dw_spi_remove_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x0c157b96 dw_spi_update_config -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x2d4b1f90 dw_spi_suspend_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x4e02dc56 dw_spi_add_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x62bb46db dw_spi_dma_setup_generic -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x7c9c5a35 dw_spi_dma_setup_mfld -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xa4b6d795 dw_spi_check_status -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xd4046d89 dw_spi_set_cs -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xe98f0cd9 dw_spi_resume_host -EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x2d9e644d spi_test_execute_msg -EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x691876cc spi_test_run_tests -EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x7a324453 spi_test_run_test -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x03ae5778 spmi_controller_alloc -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x1973236e spmi_command_sleep -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x276364f9 spmi_controller_remove -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x34a68c1c spmi_device_alloc -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x4804aa75 spmi_device_remove -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x5c1a2249 spmi_command_wakeup -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x6e687e88 spmi_register_zero_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x71b6bf88 spmi_ext_register_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x7e89a812 spmi_register_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x87138e0c spmi_controller_add -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xb48d602b spmi_ext_register_readl -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xbb2a9d67 spmi_register_read -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xbd234fc9 __spmi_driver_register -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xbfe244ba spmi_command_reset -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xc8450661 spmi_device_add -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xd0705aa6 spmi_ext_register_read -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xd60c77f7 spmi_command_shutdown -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xf6dbf0e4 spmi_ext_register_writel -EXPORT_SYMBOL_GPL drivers/ssb/ssb 0x0dcba20c ssb_pmu_spuravoid_pllupdate -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x30798da2 anybuss_write_input -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x3e3ffe3d anybuss_client_driver_register -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x474a0e80 devm_anybuss_host_common_probe -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x4efce31e anybuss_client_driver_unregister -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x7934b554 anybuss_send_ext -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x7e5ae953 anybuss_send_msg -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x9ea82dec anybuss_read_fbctrl -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x9f9317ca anybuss_finish_init -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xae8ec617 anybuss_read_output -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xc594cfa9 anybuss_host_common_probe -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xc61eefee anybuss_set_power -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xedb61729 anybuss_start_init -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xf7d22d68 anybuss_recv_msg +EXPORT_SYMBOL_GPL drivers/spi/spi-bcm-qspi 0x151571d6 bcm_qspi_pm_ops +EXPORT_SYMBOL_GPL drivers/spi/spi-bcm-qspi 0x47f94012 bcm_qspi_probe +EXPORT_SYMBOL_GPL drivers/spi/spi-bcm-qspi 0xee3b0fb2 bcm_qspi_remove +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x0d69624c spi_bitbang_setup_transfer +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x372beb5e spi_bitbang_cleanup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x56a5636e spi_bitbang_setup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x63f1450a spi_bitbang_stop +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xd2efd96b spi_bitbang_start +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xdf9bb2b6 spi_bitbang_init +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x3a234153 dw_spi_suspend_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x3cde4ff6 dw_spi_update_config +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x4d76695f dw_spi_add_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x6ed60b69 dw_spi_set_cs +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x88acb032 dw_spi_remove_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xa8bf8fe0 dw_spi_check_status +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xaffd44e4 dw_spi_resume_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xb4d95330 dw_spi_dma_setup_mfld +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xfb14119a dw_spi_dma_setup_generic +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x34324b83 spi_test_run_tests +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x8a55c14e spi_test_run_test +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0xd420663e spi_test_execute_msg +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x02fc40f6 __spmi_driver_register +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x1cf02f7f spmi_register_zero_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x4d5c2909 spmi_ext_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x5395c134 spmi_device_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x55ecbdaf spmi_command_sleep +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x6524f787 spmi_ext_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x7857a8bf spmi_ext_register_writel +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x834aeec9 spmi_command_wakeup +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x8fb48014 spmi_controller_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x931cdbe8 spmi_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x97ba26e8 spmi_command_shutdown +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xc1fd2940 spmi_controller_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xc7652e2c spmi_device_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xcd446cf7 spmi_controller_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xd0d34f21 spmi_ext_register_readl +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xe0ce9d8f spmi_command_reset +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xf61d154c spmi_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xfe3deec3 spmi_device_add +EXPORT_SYMBOL_GPL drivers/ssb/ssb 0x8840f2be ssb_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x03218905 anybuss_client_driver_register +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x0ae2eca1 anybuss_send_msg +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x0ddd5ac2 devm_anybuss_host_common_probe +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x0fdceb36 anybuss_send_ext +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x3c1e7d86 anybuss_write_input +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x41f849aa anybuss_recv_msg +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x5d1cd0df anybuss_set_power +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x5f288cbb anybuss_read_output +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x87b689d6 anybuss_client_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xabefb65c anybuss_finish_init +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xc8edc7ac anybuss_read_fbctrl +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xe5cce22e anybuss_start_init +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xfcd95414 anybuss_host_common_probe EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xfce879ad anybuss_host_common_remove -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x340c918e fieldbus_dev_area_updated -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x9baf6e13 fieldbus_dev_unregister -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0xb8fcdd86 fieldbus_dev_online_changed -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0xeb6ae554 fieldbus_dev_register -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x147d127f gb_audio_apbridgea_start_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x1a822719 gb_audio_apbridgea_set_config -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x1c52f035 gb_audio_apbridgea_stop_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x58227c3e gb_audio_apbridgea_register_cport -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x62f02eae gb_audio_apbridgea_prepare_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x7e657e17 gb_audio_apbridgea_shutdown_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x851975a0 gb_audio_apbridgea_set_tx_data_size -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x8ad8e963 gb_audio_apbridgea_start_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x9ce7ca4b gb_audio_apbridgea_stop_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xc7b90205 gb_audio_apbridgea_set_rx_data_size -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xe24514d0 gb_audio_apbridgea_prepare_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xf77d9cdf gb_audio_apbridgea_unregister_cport -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xfed04469 gb_audio_apbridgea_shutdown_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x07eb5696 gb_audio_gb_get_control -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x1122c47c gb_audio_gb_activate_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x1880bf98 gb_audio_gb_get_pcm -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x2c81a699 gb_audio_gb_activate_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x426ad332 gb_audio_gb_set_control -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x579f720d gb_audio_gb_set_tx_data_size -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x660c5dd5 gb_audio_gb_set_pcm -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x819471ca gb_audio_gb_disable_widget -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x919ee39c gb_audio_gb_get_topology -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xd0e104aa gb_audio_gb_set_rx_data_size -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xd565b049 gb_audio_gb_deactivate_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xe8c6d2ac gb_audio_gb_deactivate_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xf6a734e5 gb_audio_gb_enable_widget +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x1fa8332e fieldbus_dev_register +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0xa0b95bf5 fieldbus_dev_unregister +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0xe8ed0bd0 fieldbus_dev_area_updated +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0xfb0db134 fieldbus_dev_online_changed +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x114578f5 gb_audio_apbridgea_start_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x16e4e160 gb_audio_apbridgea_stop_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x203dc40e gb_audio_apbridgea_unregister_cport +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x3a2c5f82 gb_audio_apbridgea_stop_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x3ce52366 gb_audio_apbridgea_register_cport +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x5218a5a0 gb_audio_apbridgea_prepare_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x61450e07 gb_audio_apbridgea_set_config +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x7ed01b42 gb_audio_apbridgea_prepare_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xa0f79d1d gb_audio_apbridgea_set_tx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xb51ec2ca gb_audio_apbridgea_start_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xc49a5981 gb_audio_apbridgea_shutdown_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xe279538d gb_audio_apbridgea_set_rx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xe852e763 gb_audio_apbridgea_shutdown_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x04a69e42 gb_audio_gb_set_rx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x17e28c38 gb_audio_gb_disable_widget +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x53102f16 gb_audio_gb_get_pcm +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x5ef9b3d1 gb_audio_gb_get_topology +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x61eb04e1 gb_audio_gb_enable_widget +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x6dbd4d52 gb_audio_gb_set_tx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x790c412a gb_audio_gb_set_control +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x7dc7412a gb_audio_gb_set_pcm +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x9513b1c5 gb_audio_gb_activate_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xa4d90211 gb_audio_gb_get_control +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xb471531e gb_audio_gb_activate_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xcd656b34 gb_audio_gb_deactivate_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xec0789ef gb_audio_gb_deactivate_tx EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x19e9e6b1 gb_audio_manager_remove_all EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x32e6391e gb_audio_manager_remove +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x4c989945 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 0x6e056ce3 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 0x8fb89e3a 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 0x6f6285da gb_gbphy_deregister_driver -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0xddb4ec28 gb_gbphy_register_driver -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0x89b13db9 gb_spilib_master_exit -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0x9a22d3fe gb_spilib_master_init -EXPORT_SYMBOL_GPL drivers/staging/iio/addac/adt7316 0x815433dc adt7316_pm_ops -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x0075d711 imx_media_free_dma_buf -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x03a46018 imx_media_capture_device_next_buf -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x2be71a51 imx_media_dev_notifier_register -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x37814513 imx_media_capture_device_register -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x3a2147d3 imx_media_pipeline_csi2_channel +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0xc1c96ba6 gb_audio_manager_put_module +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0x94174002 gb_gbphy_deregister_driver +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0xf51bb551 gb_gbphy_register_driver +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0x1aef7315 gb_spilib_master_init +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0xe99a5e13 gb_spilib_master_exit +EXPORT_SYMBOL_GPL drivers/staging/iio/addac/adt7316 0x68883d0a adt7316_pm_ops +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x0e50a629 imx_media_find_subdev_by_devname +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x10c158b9 imx_media_dev_notifier_register +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x128705bf imx_media_probe_complete +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x179c1237 imx_media_dev_init +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x238104b0 imx_media_capture_device_remove +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x23931891 imx_media_capture_device_register +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x2e0728f7 imx_media_pipeline_set_stream +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x2e5e6cf7 imx_media_capture_device_next_buf +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x2f24dd7b imx_media_find_subdev_by_fwnode +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x302ff8b7 imx_media_add_video_device +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x35fb7d8b imx_media_of_add_csi 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 0x3b4ccb5e imx_media_add_of_subdevs -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x447d9c4f imx_media_capture_device_init -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x4c3460ba imx_media_probe_complete -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x50569c17 imx_media_dev_init +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x40dd5364 imx_media_free_dma_buf +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x4aa504e5 imx_media_capture_device_unregister 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 0x5fe3cf78 imx_media_pipeline_pad -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x6fffda55 imx_media_get_pad_fwnode -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x83b7b024 imx_media_pipeline_subdev -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x864894f6 imx_media_init_cfg +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x5a042ec4 imx_media_capture_device_error +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x5ae9e212 imx_media_pipeline_subdev +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x7dd26f57 imx_media_pipeline_csi2_channel +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x821262e2 imx_media_get_pad_fwnode +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xa2dec964 imx_media_pipeline_video_device 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 0xa7794c6c imx_media_capture_device_remove -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xa89e81b0 imx_media_pipeline_set_stream 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 0xaa12f4aa imx_media_add_video_device +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xb42935d3 imx_media_pipeline_pad 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 0xc05a10e9 imx_media_alloc_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 0xcfd26d40 imx_media_capture_device_error EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xd2cd6cbe imx_media_ipu_image_to_mbus_fmt -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xd49c1961 imx_media_pipeline_video_device 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 0xd7548a3c imx_media_of_add_csi -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xd97142aa imx_media_capture_device_unregister -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xe1d25ae5 imx_media_alloc_dma_buf -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xe2b214df imx_media_find_subdev_by_fwnode +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xd6453298 imx_media_init_cfg +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xd8444cd6 imx_media_add_of_subdevs 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 0xea9aa212 imx_media_find_subdev_by_devname EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xf5c8707e imx_media_mbus_fmt_to_ipu_image -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x0c1fc9ae amvdec_read_dos -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x0df9809b amvdec_read_parser +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xfec2d4b1 imx_media_capture_device_init +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x00c4c7a4 amvdec_read_dos 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 0x137b7792 amvdec_read_parser +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x1725e63b amvdec_clear_dos_bits +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x18c860fa codec_hevc_setup_decode_head EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x1cb1e6d9 amvdec_am21c_size -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x1d0c842b amvdec_dst_buf_done_offset -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x21658ea4 amvdec_add_ts -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x31dfcb7d amvdec_set_par_from_dar -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x3663140a amvdec_dst_buf_done_idx -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x3ae89003 amvdec_write_dos_bits -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x42b02eab codec_hevc_setup_buffers -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x53d7ff4c amvdec_abort -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x5a3de0e4 amvdec_get_output_size +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x1f46b83b amvdec_set_canvases +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x2a0f8973 codec_hevc_free_mmu_headers +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x2c5a31fe amvdec_dst_buf_done +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x306d0f14 amvdec_abort +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x361e2bb2 amvdec_set_par_from_dar +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x5c9fcc27 amvdec_dst_buf_done_offset 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 0x6b1ab641 amvdec_src_change -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x6d121100 amvdec_write_dos -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x750809ab amvdec_write_parser -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x90dbaa72 amvdec_dst_buf_done -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x9e964b5b amvdec_set_canvases -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xb31b685e codec_hevc_fill_mmu_map -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xd74b0524 amvdec_remove_ts -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xd9cfcc7f codec_hevc_setup_decode_head -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xe9c04a4a codec_hevc_free_fbc_buffers -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xea8454ae amvdec_clear_dos_bits -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xfdf6049f codec_hevc_free_mmu_headers -EXPORT_SYMBOL_GPL drivers/staging/nvec/nvec 0x3f43e6cf nvec_unregister_notifier -EXPORT_SYMBOL_GPL drivers/staging/nvec/nvec 0x8bccdc4a nvec_msg_free -EXPORT_SYMBOL_GPL drivers/staging/nvec/nvec 0x8e7e1991 nvec_register_notifier -EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x0a3a5238 vchiq_mmal_port_parameter_get -EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x11821c17 vchiq_mmal_component_disable -EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x198e833d vchiq_mmal_port_set_format -EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x25f66c20 mmal_vchi_buffer_cleanup -EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x280a51eb vchiq_mmal_submit_buffer -EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x4cec8bd8 vchiq_mmal_port_parameter_set +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x6474fa2a codec_hevc_free_fbc_buffers +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x67cbdde5 amvdec_add_ts +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x92cb0d7c amvdec_get_output_size +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xb8026cd9 amvdec_dst_buf_done_idx +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xb86abe3a amvdec_src_change +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xcc1cee5e amvdec_remove_ts +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xd329599a codec_hevc_fill_mmu_map +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xe6171157 amvdec_write_dos +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xf7cf05db amvdec_write_dos_bits +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xf99594fe amvdec_write_parser +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xf9ffcf47 codec_hevc_setup_buffers +EXPORT_SYMBOL_GPL drivers/staging/nvec/nvec 0x7c5dd80d nvec_unregister_notifier +EXPORT_SYMBOL_GPL drivers/staging/nvec/nvec 0xb686e6a7 nvec_register_notifier +EXPORT_SYMBOL_GPL drivers/staging/nvec/nvec 0xfe5acbc6 nvec_msg_free +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x1db65108 vchiq_mmal_port_disable +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x3af7c1bf mmal_vchi_buffer_init +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x44731a66 vchiq_mmal_component_finalise +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x4b2df89f vchiq_mmal_port_connect_tunnel +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x52b3cf5f mmal_vchi_buffer_cleanup +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x53968312 vchiq_mmal_port_set_format EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x6192e1a2 vchiq_mmal_version EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x73577d20 vchiq_mmal_finalise -EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x8358c6d3 vchiq_mmal_port_enable +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x8539dbad vchiq_mmal_component_init +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x9f8b689e vchiq_mmal_port_enable EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0xaca4dd80 vchiq_mmal_init -EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0xb14b3d63 mmal_vchi_buffer_init -EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0xc466ed79 vchiq_mmal_port_disable -EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0xd1b08ef0 vchiq_mmal_component_enable -EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0xd2c4ed51 vchiq_mmal_port_connect_tunnel -EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0xde1620be vchiq_mmal_component_init -EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0xe5588278 vchiq_mmal_component_finalise -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x05e521ca target_init_cmd -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xd0c8145a target_submit -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xd1c2ab0b target_submit_prep -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xd8e1e189 target_queue_submission -EXPORT_SYMBOL_GPL drivers/tee/tee 0x0efec067 tee_shm_pa2va -EXPORT_SYMBOL_GPL drivers/tee/tee 0x12c66391 tee_shm_alloc -EXPORT_SYMBOL_GPL drivers/tee/tee 0x2b123d51 tee_shm_va2pa -EXPORT_SYMBOL_GPL drivers/tee/tee 0x2be5b7f7 tee_bus_type -EXPORT_SYMBOL_GPL drivers/tee/tee 0x386c9742 tee_device_alloc -EXPORT_SYMBOL_GPL drivers/tee/tee 0x3e3a72ad tee_shm_pool_alloc_res_mem -EXPORT_SYMBOL_GPL drivers/tee/tee 0x5a1b82f8 tee_shm_pool_free -EXPORT_SYMBOL_GPL drivers/tee/tee 0x64753b6f tee_shm_free -EXPORT_SYMBOL_GPL drivers/tee/tee 0x732744e3 tee_client_open_session -EXPORT_SYMBOL_GPL drivers/tee/tee 0x7da2c2a9 teedev_close_context +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0xc1b3632b vchiq_mmal_port_parameter_get +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0xd4a0b751 vchiq_mmal_component_disable +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0xe256b777 vchiq_mmal_submit_buffer +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0xefa59d60 vchiq_mmal_component_enable +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0xf17a67bc vchiq_mmal_port_parameter_set +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x203b8cd7 target_submit_prep +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x52c2cb7c target_queue_submission +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x56a7cd5b target_init_cmd +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x77408c7a target_submit +EXPORT_SYMBOL_GPL drivers/tee/tee 0x062e7ad4 tee_shm_pool_alloc +EXPORT_SYMBOL_GPL drivers/tee/tee 0x0a0f7a07 tee_shm_get_from_id +EXPORT_SYMBOL_GPL drivers/tee/tee 0x0c2b62ce tee_client_invoke_func +EXPORT_SYMBOL_GPL drivers/tee/tee 0x1a20adec tee_shm_pool_alloc_res_mem +EXPORT_SYMBOL_GPL drivers/tee/tee 0x253c8879 teedev_open +EXPORT_SYMBOL_GPL drivers/tee/tee 0x2da5e100 tee_shm_get_pa +EXPORT_SYMBOL_GPL drivers/tee/tee 0x3d40dbfd tee_device_unregister +EXPORT_SYMBOL_GPL drivers/tee/tee 0x3f65c285 tee_client_open_context +EXPORT_SYMBOL_GPL drivers/tee/tee 0x40403c6f tee_shm_get_va +EXPORT_SYMBOL_GPL drivers/tee/tee 0x49b7d910 tee_client_open_session +EXPORT_SYMBOL_GPL drivers/tee/tee 0x582dbfc6 tee_shm_va2pa +EXPORT_SYMBOL_GPL drivers/tee/tee 0x5ecc32be tee_shm_pool_free +EXPORT_SYMBOL_GPL drivers/tee/tee 0x763b355a tee_device_alloc +EXPORT_SYMBOL_GPL drivers/tee/tee 0x7adeaa9d tee_client_get_version +EXPORT_SYMBOL_GPL drivers/tee/tee 0x85650b1c tee_device_register EXPORT_SYMBOL_GPL drivers/tee/tee 0x85fd9922 tee_session_calc_client_uuid -EXPORT_SYMBOL_GPL drivers/tee/tee 0x86f27a13 tee_get_drvdata -EXPORT_SYMBOL_GPL drivers/tee/tee 0x8dc4f66d tee_shm_get_from_id -EXPORT_SYMBOL_GPL drivers/tee/tee 0x92097a09 tee_client_close_session -EXPORT_SYMBOL_GPL drivers/tee/tee 0x9ae3a277 tee_shm_alloc_kernel_buf -EXPORT_SYMBOL_GPL drivers/tee/tee 0xa049d170 tee_shm_get_pa -EXPORT_SYMBOL_GPL drivers/tee/tee 0xa8b5c429 tee_shm_pool_mgr_alloc_res_mem -EXPORT_SYMBOL_GPL drivers/tee/tee 0xab192f31 tee_client_close_context -EXPORT_SYMBOL_GPL drivers/tee/tee 0xad6671ca tee_shm_get_va -EXPORT_SYMBOL_GPL drivers/tee/tee 0xb02a99cf tee_client_open_context -EXPORT_SYMBOL_GPL drivers/tee/tee 0xb7dd8a28 tee_device_unregister -EXPORT_SYMBOL_GPL drivers/tee/tee 0xb911a7ce tee_shm_put -EXPORT_SYMBOL_GPL drivers/tee/tee 0xc0833048 tee_shm_pool_alloc -EXPORT_SYMBOL_GPL drivers/tee/tee 0xcb8235fe tee_device_register -EXPORT_SYMBOL_GPL drivers/tee/tee 0xd494cf34 tee_client_invoke_func -EXPORT_SYMBOL_GPL drivers/tee/tee 0xd80cc8ea tee_shm_register -EXPORT_SYMBOL_GPL drivers/tee/tee 0xdee861be teedev_open -EXPORT_SYMBOL_GPL drivers/tee/tee 0xf0209f0a tee_client_get_version +EXPORT_SYMBOL_GPL drivers/tee/tee 0x89b0145d tee_get_drvdata +EXPORT_SYMBOL_GPL drivers/tee/tee 0x9a847088 tee_shm_pool_mgr_alloc_res_mem +EXPORT_SYMBOL_GPL drivers/tee/tee 0xa44c2f38 teedev_close_context +EXPORT_SYMBOL_GPL drivers/tee/tee 0xb3941e0d tee_shm_pa2va +EXPORT_SYMBOL_GPL drivers/tee/tee 0xb4222e59 tee_shm_register +EXPORT_SYMBOL_GPL drivers/tee/tee 0xb4371d46 tee_shm_free +EXPORT_SYMBOL_GPL drivers/tee/tee 0xb699c07f tee_client_close_context +EXPORT_SYMBOL_GPL drivers/tee/tee 0xb8a8ac01 tee_shm_put +EXPORT_SYMBOL_GPL drivers/tee/tee 0xcc06e19f tee_shm_alloc +EXPORT_SYMBOL_GPL drivers/tee/tee 0xd74cb39f tee_client_close_session +EXPORT_SYMBOL_GPL drivers/tee/tee 0xec971c77 tee_shm_alloc_kernel_buf +EXPORT_SYMBOL_GPL drivers/tee/tee 0xf467af14 tee_bus_type +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x009bf51e tb_xdomain_enable_paths EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x01d23ee1 tb_property_create_dir -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x063b337e tb_xdomain_alloc_out_hopid -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x0f841771 tb_xdomain_find_by_route -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x22ad0d42 tb_register_service_driver -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x25c15ec0 tb_xdomain_lane_bonding_disable +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x049e3852 tb_xdomain_find_by_uuid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x0a5ea529 tb_xdomain_disable_paths +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x0b38ba90 tb_xdomain_find_by_route +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x18be5a29 tb_xdomain_release_out_hopid EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x393b4f2f tb_property_free_dir -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x4b18239d tb_xdomain_type +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x3b5e49b9 tb_xdomain_release_in_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x3d10ae69 tb_xdomain_request 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 0x5117916e tb_ring_stop -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x534e6415 tb_xdomain_alloc_in_hopid -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x55bc6caa tb_unregister_service_driver -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x596ed0d8 tb_xdomain_disable_paths -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x5d99609c __tb_ring_enqueue EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x603249ed tb_unregister_property_dir EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x658e3d97 tb_property_add_immediate -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x683e0d0a tb_xdomain_enable_paths -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x6de0013e tb_ring_poll EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x73ad2acb tb_property_get_next +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x76cfd912 tb_xdomain_type EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x785eb82c tb_property_remove -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x79682e9a tb_ring_alloc_tx +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x7fd7e37e tb_ring_start +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x803e44f6 tb_xdomain_alloc_in_hopid EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x8b62f95e tb_property_add_dir -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x9ee004b4 tb_xdomain_release_in_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x98903327 tb_service_type +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x9db3ac59 tb_register_service_driver +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x9ff0ade4 tb_xdomain_lane_bonding_enable +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xa09a7e30 tb_ring_poll EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xa3d2b403 tb_property_add_data -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xa547c9a8 tb_service_type -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xa7270e60 tb_xdomain_release_out_hopid -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xa97b9556 tb_ring_alloc_rx +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xae12c851 tb_xdomain_lane_bonding_disable EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xb7c7cdce tb_property_add_text -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xbc43dc5d tb_xdomain_find_by_uuid -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xd0fc92b1 tb_xdomain_lane_bonding_enable -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xd17a3b86 tb_ring_start -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xd2f474c4 tb_ring_free -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xe3078dd5 tb_xdomain_request -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xe5ae0c7a tb_ring_poll_complete +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xc53cbec1 tb_unregister_service_driver +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xc7e31f37 tb_ring_poll_complete +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xde4f92ec __tb_ring_enqueue +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xea871ab7 tb_ring_free +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xeea03106 tb_ring_stop +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xf057be10 tb_xdomain_response EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xf1cfd1ff tb_register_property_dir -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xf236e3fa tb_xdomain_response +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xf2c10a23 tb_ring_alloc_rx EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xf76028c7 tb_unregister_protocol_handler -EXPORT_SYMBOL_GPL drivers/uio/uio 0x436ef39b uio_unregister_device -EXPORT_SYMBOL_GPL drivers/uio/uio 0x4b2ab907 __uio_register_device -EXPORT_SYMBOL_GPL drivers/uio/uio 0x7561fe4c __devm_uio_register_device -EXPORT_SYMBOL_GPL drivers/uio/uio 0xd2806e1d uio_event_notify -EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x7737cbe5 usbatm_usb_disconnect -EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0xfcdd63df usbatm_usb_probe -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x1789d9d3 cdns_suspend -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x51293a84 cdns_power_is_lost -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x5bebf773 cdns_clear_vbus -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x7f12ec66 cdns_set_vbus -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x84055890 cdns_init -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x8f80d363 cdns_resume -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x915ffa8f cdns_drd_gadget_on -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xb649098c cdns_remove -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xbeb7a63e cdns_drd_gadget_off -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x641ce3fc ci_hdrc_remove_device -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x7cd55133 ci_hdrc_query_available_role -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x9b86a2d4 hw_phymode_configure -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xdfb42400 ci_hdrc_add_device -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x6e5bcb3c imx_usbmisc_set_wakeup -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x8973417c imx_usbmisc_init_post -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x98f299d7 imx_usbmisc_hsic_set_clk -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xa4b04bb2 imx_usbmisc_init -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xce2fa8d5 imx_usbmisc_hsic_set_connect -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xd94a7e68 imx_usbmisc_charger_detection -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x112af5f7 ulpi_register_interface -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x4cfb9754 ulpi_read -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x78071f0f ulpi_unregister_driver -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x8dd3913a ulpi_write -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xd6e097df __ulpi_register_driver -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xd71f4fb7 ulpi_unregister_interface -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x08250bf3 u_audio_set_mute -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x44a539ef g_audio_cleanup -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x4b1977e1 u_audio_get_mute -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xb5d7ca9f u_audio_stop_capture -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xb9c1edf3 u_audio_start_playback -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xcc0d5515 u_audio_set_volume -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xe13fd13c u_audio_start_capture -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xed579b71 g_audio_setup -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xf424f71f u_audio_get_volume -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xf64af7ba u_audio_stop_playback -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x06c28704 gether_get_dev_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x1b8e2f54 gether_get_host_addr_cdc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x1d2fd769 gether_set_gadget -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x4f44b8f4 gether_set_dev_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x735fea87 gether_get_host_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x7b20543a gether_set_qmult -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x7bb83efa gether_get_host_addr_u8 -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x7e31b50d gether_get_qmult +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xfb541241 tb_ring_alloc_tx +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xfe666625 tb_xdomain_alloc_out_hopid +EXPORT_SYMBOL_GPL drivers/uio/uio 0x03473ce6 __devm_uio_register_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0x45adfd8c uio_unregister_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0x68c1c17b __uio_register_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0x9d8bd8a6 uio_event_notify +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x091c930c usbatm_usb_disconnect +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x236ed147 usbatm_usb_probe +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x115e4c00 cdns_suspend +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x25eee284 cdns_init +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x83dcd33b cdns_resume +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xc5f1d93e cdns_clear_vbus +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xc6e5c31f cdns_drd_gadget_on +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xd9768201 cdns_remove +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xdc4d2b20 cdns_power_is_lost +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xdcc69c32 cdns_set_vbus +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xec265bb3 cdns_drd_gadget_off +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x34e092fe ci_hdrc_add_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x6c096d80 ci_hdrc_query_available_role +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x9eba911e ci_hdrc_remove_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xe33e2dfe hw_phymode_configure +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x07cadeab imx_usbmisc_init +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x73fb4bac imx_usbmisc_init_post +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x7ef6a3ac imx_usbmisc_hsic_set_clk +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x852e725c imx_usbmisc_set_wakeup +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x909543e1 imx_usbmisc_hsic_set_connect +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xb471415b imx_usbmisc_charger_detection +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x06cb8b61 ulpi_write +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x29162e48 ulpi_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x2e020810 __ulpi_register_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x304cf4f7 ulpi_register_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x31fd77c0 ulpi_unregister_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xbd97b1b9 ulpi_read +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x1d5a0bf2 g_audio_cleanup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x2c35bc86 u_audio_start_playback +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x42dc6918 u_audio_get_volume +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x5aaa6439 u_audio_stop_playback +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x81d8b8b7 u_audio_get_mute +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x9c655d43 u_audio_start_capture +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xc92742e7 u_audio_set_mute +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xdffc7203 u_audio_stop_capture +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xea0a2abe g_audio_setup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xf0cde927 u_audio_set_volume +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x0556c6a0 gether_get_ifname +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x073501a0 gether_get_host_addr_u8 +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x09965bd7 gether_get_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x177b776d gether_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x2a7d1268 gether_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x40dd3543 gether_set_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x44adbdfb gether_setup_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x6e00c9ae gether_register_netdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x6f9b2718 gether_setup_name_default EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8878cfa6 gether_cleanup -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x971d7053 gether_setup_name_default -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x9aa9d10c gether_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xb663cdba gether_set_ifname -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xbbf50f75 gether_setup_name -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xcb9e432a gether_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xccffd76f gether_set_host_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xe018bc60 gether_get_ifname -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xf6b356e0 gether_register_netdev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x0ce488e6 gserial_suspend +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x96c47d3f gether_get_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x99c7954b gether_get_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xab068482 gether_set_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xb66396d0 gether_set_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xe85186c9 gether_get_host_addr_cdc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xe88826fa gether_set_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xfa00001f gether_set_ifname EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x33bfdca2 gserial_alloc_line +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x49fb3e5a gserial_connect EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x4a3df9d0 gs_alloc_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x4c48678a gserial_suspend EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x60db48f5 gserial_get_console EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x60ea48a0 gs_free_req -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x88ee4128 gserial_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x9bb09cdb 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 0xd3dfc610 gserial_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xd672232d 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 0xf0bf5383 gserial_resume EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x6c825859 ffs_lock -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x9d00b4cc ffs_single_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0xa0b46843 ffs_name_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x05f28ff7 fsg_lun_open -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x0ebdea08 fsg_show_ro +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x74b3f58c ffs_name_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x8137c95c ffs_single_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x02fc52c3 fsg_store_cdrom +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x034dc90c fsg_store_inquiry_string EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x141fce2a fsg_common_remove_luns EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1710b539 fsg_fs_bulk_out_desc EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1ccb58f7 fsg_common_set_num_buffers EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2933ee1d fsg_ss_bulk_in_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x38d21452 fsg_store_nofua +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2aab1155 fsg_store_ro +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x34496eb9 fsg_show_removable +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x3801aad7 fsg_common_remove_lun +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x38bac620 fsg_lun_fsync_sub EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x398778e1 fsg_ss_function EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x3c6a07d0 fsg_common_create_lun -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x3c7f3e78 fsg_store_cdrom +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x3d7056fc fsg_store_removable EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x423845e4 fsg_ss_bulk_in_comp_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x490d758f 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 0x65ece7bc fsg_lun_close 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 0x749b03d6 fsg_show_cdrom +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x6de71114 fsg_show_ro +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x76b498ef fsg_lun_close +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x76fd8534 fsg_show_inquiry_string EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7e26d4a5 fsg_common_set_sysfs -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7ed79007 fsg_store_removable 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 0x9091762d fsg_show_removable +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x8fd76590 fsg_store_file EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x95cffb3e fsg_hs_bulk_in_desc EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x9a0221c7 fsg_common_free_buffers -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x9fbde671 fsg_store_file -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa1822f82 fsg_common_set_cdev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa24de0e3 fsg_show_file -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa5573d3f fsg_common_remove_lun EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa5cae92f fsg_ss_bulk_out_comp_desc EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa5f99b69 fsg_fs_function EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 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 0xbc4e68e1 fsg_lun_fsync_sub -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xc62ca81a fsg_show_nofua +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xc2d2868b fsg_common_set_cdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xca8d27eb fsg_show_nofua +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xce546686 fsg_store_nofua +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xd0128db0 fsg_lun_open 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 0xf3781416 fsg_store_inquiry_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xebc502d6 fsg_show_file EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf4efc0c8 fsg_ss_bulk_out_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xfbdd2ec0 fsg_show_inquiry_string -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x0487f439 rndis_borrow_net -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x0a187968 rndis_rm_hdr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x0a1fbc2d rndis_add_hdr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x1ee35d3c rndis_signal_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x39ca00f9 rndis_set_host_mac -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x4882403d rndis_set_param_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x4cab8897 rndis_get_next_response -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x545246ef rndis_deregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x59e72f0b rndis_set_param_medium -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x6281e156 rndis_register -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x640e676d rndis_uninit -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x807ce3f4 rndis_msg_parser -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x93531fe4 rndis_free_response -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xa7ec53fb rndis_set_param_vendor -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xc9bc574f rndis_signal_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x05797faa usb_ep_autoconfig_ss +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xfab74d23 fsg_show_cdrom +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x11bcf893 rndis_get_next_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x23bfb786 rndis_add_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x30f78374 rndis_set_param_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x3255361c rndis_uninit +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x4db16f72 rndis_deregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x4ff27f3e rndis_msg_parser +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x4ffc4447 rndis_set_param_vendor +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x5c493224 rndis_signal_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x846caca4 rndis_set_param_medium +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x84ec1d29 rndis_set_host_mac +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x89a5059e rndis_borrow_net +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x91805021 rndis_rm_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xa67f897b rndis_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xdd4cdeb7 rndis_free_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xfbe5c438 rndis_signal_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x098779bb usb_function_deactivate EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0c589aba usb_validate_langid EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0cb7e477 usb_ep_autoconfig_release -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0f66c204 usb_composite_unregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x12708285 usb_function_deactivate -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x199a0f55 unregister_gadget_item -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x1de00e32 usb_function_register -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2ca94681 usb_add_config_only -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2ddacc91 usb_ep_autoconfig EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2e09263f usb_copy_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3d5be45b usb_string_ids_n -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x45667f32 config_ep_by_speed -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x49a3e14b usb_add_config +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2fb4929d usb_function_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3499e8f3 usb_function_activate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3973cfe7 config_ep_by_speed +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x49e1388c usb_ep_autoconfig_ss EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4beb505d usb_gadget_get_string -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x56c824e4 usb_ep_autoconfig_reset -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x585055f0 usb_otg_descriptor_alloc -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5b3726af usb_free_all_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6644e021 usb_otg_descriptor_init -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x709715b1 usb_gstrings_attach -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7a10a787 usb_get_function_instance -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7fae0dfe usb_string_id -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8a89d828 usb_assign_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8cca27f8 config_ep_by_speed_and_alt -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x919d5480 usb_put_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb15e2ce0 usb_add_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb2ee8860 usb_get_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4c260f90 usb_composite_probe +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4cee6c93 usb_string_ids_tab +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x56308ac0 config_ep_by_speed_and_alt +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x59bece63 usb_assign_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x67cefbde usb_put_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x80c2d011 usb_gstrings_attach +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x86f9275b usb_add_config +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8c6fdca9 unregister_gadget_item +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa7090cf6 usb_ep_autoconfig +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xaaa8e552 usb_function_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xad20faae usb_composite_setup_continue EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb775db55 alloc_ep_req -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb9dbf5c5 usb_function_activate -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xcb43b523 usb_function_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb9f34a17 usb_composite_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc425d622 usb_ep_autoconfig_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc7b4b356 usb_get_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc89ba9a5 usb_composite_overwrite_options +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc9410065 usb_remove_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd13c6d66 usb_otg_descriptor_init EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd2ea2134 usb_descriptor_fillbuf -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe5c2ddd2 usb_interface_id -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xea9988a8 usb_string_ids_tab -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xebc0f4e4 usb_composite_overwrite_options -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xec483aff usb_composite_setup_continue +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xdb05f7ea usb_interface_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xdb8bc8ca usb_get_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe36bb033 usb_put_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe502099a usb_string_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xee521bf3 usb_free_all_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf3371dab usb_string_ids_n +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf39dfd43 usb_otg_descriptor_alloc EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf474a207 usb_gadget_config_buf -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xfa7a93eb usb_put_function_instance -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xfb52d8b2 usb_remove_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xff4c13f8 usb_composite_probe -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x012632cb gadget_release -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x051ef645 init_dma_pools +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf9879630 usb_add_config_only +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf9de6eb2 usb_add_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x213b207d gadget_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x3c28fe08 init_dma_pools +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x4560e084 udc_mask_unused_interrupts EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x5d01d078 udc_irq -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x5d0dbff2 udc_remove -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x7cf08d2c udc_probe -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x90b433c7 empty_req_queue -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xa13f6385 free_dma_pools -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xa2f950eb udc_mask_unused_interrupts -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xf28e586e udc_enable_dev_setup_interrupts -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xfd7eb46c udc_basic_init +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x6946bd28 udc_remove +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x8883a064 free_dma_pools +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xbb78babc udc_probe +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xdeb990e4 udc_enable_dev_setup_interrupts +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xf8522813 empty_req_queue +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xf9425008 udc_basic_init +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x014f883c usb_udc_vbus_handler EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x01b12bfb usb_ep_free_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x05bea20e usb_gadget_map_request_by_dev EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x0a8c3b4b usb_ep_set_halt EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x0acfe2e7 usb_ep_set_wedge -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x0b8f260b usb_gadget_frame_number EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x0d90d784 usb_ep_fifo_flush -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x10719a69 usb_gadget_activate -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x11ede1aa usb_del_gadget_udc -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x1c742dcc usb_gadget_vbus_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x395b9c65 usb_gadget_unmap_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x397c4b43 usb_gadget_unmap_request_by_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x39b103ef usb_add_gadget -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x44434272 usb_gadget_vbus_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x1bf61845 usb_gadget_map_request_by_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x1fb917a0 usb_gadget_set_selfpowered +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x2423f45c usb_gadget_ep_match_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x2649ba14 usb_gadget_unmap_request_by_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x29ebe323 usb_gadget_unmap_request EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x49d9f030 usb_ep_fifo_status -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x50540cb4 usb_gadget_ep_match_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x4f40fbcd usb_gadget_vbus_draw EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x506ab3a9 usb_ep_queue EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x50b88f41 usb_get_gadget_udc_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x5221fea0 usb_gadget_frame_number +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x531c4ec0 usb_gadget_activate +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x55b4e40e usb_gadget_probe_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x57266ba5 usb_gadget_vbus_connect EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x5fc294ef usb_ep_clear_halt -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x6baa0026 usb_gadget_set_selfpowered -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x7071971a usb_udc_vbus_handler +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x63469ba0 usb_del_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x70657e2b usb_gadget_udc_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x78d4e3b5 usb_gadget_deactivate +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x79456d33 usb_gadget_map_request EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x7a41b9f2 usb_ep_set_maxpacket_limit +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x7ba91bcd usb_gadget_check_config EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x7be89624 usb_gadget_giveback_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x7e90506b usb_add_gadget_udc_release -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x856169be usb_gadget_map_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x7c94f076 usb_gadget_wakeup +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x86008f83 usb_add_gadget_udc_release EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x882077d5 usb_ep_dequeue -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x90e265bd usb_del_gadget -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x92ba0031 usb_gadget_unregister_driver -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x9a3f663d usb_gadget_set_state +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x93ab29a1 usb_del_gadget EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x9eb52803 usb_ep_disable -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa36b4678 usb_initialize_gadget -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa603662c usb_gadget_probe_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa280e953 usb_add_gadget_udc EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa9e74462 usb_ep_alloc_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xaf1a1666 usb_gadget_clear_selfpowered EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xaf201fa6 usb_ep_enable -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xbbb334a7 gadget_find_ep_by_name -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc82901db usb_gadget_deactivate -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xcc14ade7 usb_gadget_clear_selfpowered -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xd20cd9eb usb_gadget_vbus_draw -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xd8e84f94 usb_gadget_check_config -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xdf1d1432 usb_gadget_udc_reset -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xf06842a8 usb_gadget_wakeup -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xf183ab7a usb_add_gadget_udc -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xf8734beb usb_gadget_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xfe6720a1 usb_gadget_connect -EXPORT_SYMBOL_GPL drivers/usb/host/xhci-pci-renesas 0xb2002334 renesas_xhci_check_request_fw -EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x34147a4a ezusb_fx1_ihex_firmware_download -EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x709f2298 ezusb_fx1_set_reset -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x0ea6c4ec usb_ftdi_elan_edset_single -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x2674d1b9 usb_ftdi_elan_write_pcimem -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x7dd58c9c usb_ftdi_elan_edset_setup -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x7e021d58 usb_ftdi_elan_edset_empty -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x924b06e0 ftdi_elan_gone_away -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x9710b3a2 usb_ftdi_elan_edset_output -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x9ef0fb7c usb_ftdi_elan_read_pcimem -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xd69f63ac usb_ftdi_elan_edset_flush -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xdced909c usb_ftdi_elan_edset_input -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x080ad1f6 musb_interrupt +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xb69cdeec usb_add_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc1e242f6 usb_gadget_set_state +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc376a10c usb_gadget_vbus_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xcebffb16 usb_gadget_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xe49bab44 gadget_find_ep_by_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xee63e85e usb_initialize_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xef8ef0d4 usb_gadget_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xfcfc4026 usb_gadget_disconnect +EXPORT_SYMBOL_GPL drivers/usb/host/xhci-pci-renesas 0x8f11b76f renesas_xhci_check_request_fw +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x11f472dd ezusb_fx1_ihex_firmware_download +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x70b260e4 ezusb_fx1_set_reset +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x0a496f2d usb_ftdi_elan_write_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x0b140f0a usb_ftdi_elan_edset_output +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x2860120a ftdi_elan_gone_away +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x4254523a usb_ftdi_elan_read_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x56c86fcd usb_ftdi_elan_edset_single +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x595bd053 usb_ftdi_elan_edset_empty +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x8ec1ed4d usb_ftdi_elan_edset_input +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x9e53a28a usb_ftdi_elan_edset_setup +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xa8be017a usb_ftdi_elan_edset_flush +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x00805109 musb_get_mode 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 0x25edf6ce musb_queue_resume_work EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x2734197f musb_readb -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x2db4ea90 musb_root_disconnect +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x35b5feb0 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 0x835ebfcc musb_set_peripheral -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x8527f5c8 musb_set_host -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x9ffffd17 musb_get_mode +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x81a65e8a musb_set_peripheral +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x8dfedfe3 musb_root_disconnect EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xade3e56c musb_writew 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 0x0e01dfef usb_phy_generic_register -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x10db3c2b usb_phy_generic_unregister -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x408e2974 usb_gen_phy_init -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x4a1dc569 usb_gen_phy_shutdown -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0xe28f4e62 usb_phy_gen_create_phy -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-isp1301 0x9fe15d38 isp1301_get_client -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0x3fc93873 tegra_ehci_phy_restore_start -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0xb486c7f0 tegra_usb_phy_postresume -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0xc8e8fb28 tegra_ehci_phy_restore_end -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0xdb8e90b6 tegra_usb_phy_preresume -EXPORT_SYMBOL_GPL drivers/usb/serial/usb_wwan 0x4acbebce usb_wwan_port_probe -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x0a58f97d usb_serial_generic_close -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x0bf56e35 usb_serial_port_softint -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x0fd61b19 usb_serial_generic_write_start -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x1d77047d usb_serial_generic_wait_until_sent -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x36ec5401 usb_serial_generic_chars_in_buffer -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x3b1e0049 usb_serial_generic_write -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x4214bcd0 usb_serial_generic_throttle -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x468b63f6 usb_serial_generic_resume -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x51691944 usb_serial_generic_write_bulk_callback -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x61dc6053 usb_serial_handle_dcd_change -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x676fed5c usb_serial_generic_unthrottle -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x6b101695 usb_serial_generic_read_bulk_callback -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x779fcb43 usb_serial_generic_tiocmiwait -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x7e58cb19 usb_serial_generic_submit_read_urbs -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x93cc8d3d usb_serial_generic_get_icount -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xc5dc4cdb usb_serial_claim_interface -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xd1ecd6b9 usb_serial_generic_process_read_urb -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xe3c8d3ee usb_serial_generic_open -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xe82ca160 usb_serial_deregister_drivers -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xed542575 usb_serial_register_drivers -EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0x2ab8183a dp_altmode_remove -EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0xda272c57 dp_altmode_probe +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xf2e534c0 musb_queue_resume_work +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xf723a792 musb_set_host +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x03bb4e35 usb_phy_gen_create_phy +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x31c3dadc usb_phy_generic_register +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0xecdbf188 usb_phy_generic_unregister +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0xf0caa7d3 usb_gen_phy_init +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0xf69299e1 usb_gen_phy_shutdown +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-isp1301 0xfc6a7dd8 isp1301_get_client +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0x5671b851 tegra_ehci_phy_restore_start +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0x73f900f6 tegra_usb_phy_preresume +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0xe05ecee4 tegra_usb_phy_postresume +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0xf5a76f02 tegra_ehci_phy_restore_end +EXPORT_SYMBOL_GPL drivers/usb/serial/usb_wwan 0xaa768e48 usb_wwan_port_probe +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x130aa723 usb_serial_generic_wait_until_sent +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x2522fe9d usb_serial_generic_write +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x2774535e usb_serial_generic_throttle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x27883d0c usb_serial_generic_get_icount +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x4cceee17 usb_serial_generic_chars_in_buffer +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x5406f5ce usb_serial_generic_submit_read_urbs +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x62c9b86e usb_serial_register_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x66c84b5a usb_serial_generic_open +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x6b0f33a1 usb_serial_generic_resume +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x6b34b5eb usb_serial_generic_read_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x777bb6ce usb_serial_deregister_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x8753538d usb_serial_handle_dcd_change +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x8dcaeb15 usb_serial_generic_process_read_urb +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x8eb1718e usb_serial_generic_tiocmiwait +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x9b6d20eb usb_serial_generic_write_start +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xabdf65b8 usb_serial_claim_interface +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xb6fe8658 usb_serial_generic_unthrottle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xbfcb5cbf usb_serial_port_softint +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xf8477d18 usb_serial_generic_close +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xfc8295b4 usb_serial_generic_write_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0x66039621 dp_altmode_probe +EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0xc6b958d9 dp_altmode_remove EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0x6f497a3c tcpci_irq +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0x9df00e35 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 0xfae2882e tcpci_register_port EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x10ec6d2d tcpm_sink_frs -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x2449d580 tcpm_register_port EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x3b84657b tcpm_pd_transmit_complete EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x76eeda4b tcpm_unregister_port EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x9e0bd753 tcpm_pd_hard_reset +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xb25ff1e6 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 0x00258668 typec_partner_register_altmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x04364deb typec_mux_get_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x07ec1eed typec_register_port -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x0997d4ff typec_unregister_partner -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x0bf5229d typec_port_register_altmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x0cf555ae typec_partner_set_num_altmodes -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x11a0510e typec_get_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x168e6583 __typec_altmode_register_driver -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x1dcb7afb typec_mux_set -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x1facc56a typec_unregister_plug -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x21462d0b typec_mux_put -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x21e79a90 typec_altmode_vdm +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x082dfde6 typec_register_partner +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x0c7ca28b typec_set_pwr_opmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x12aba45f typec_altmode_update_active +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x158a57df typec_mux_register +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x15b81b98 typec_altmode_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x170344f5 typec_set_vconn_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x1f6cf5cd typec_unlink_port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x20dc84da typec_register_port EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2d1e301d typec_find_power_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x3adea705 typec_cable_set_identity -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x3e90912b typec_match_altmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x47580929 typec_altmode_unregister_driver -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x49062518 typec_altmode_notify -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x4ce2daef typec_altmode_enter -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5235e35c typec_switch_register -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x569794fc typec_altmode_get_plug -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x56d8d850 typec_altmode_update_active -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5a13a01a fwnode_typec_switch_get -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5a749e20 typec_cable_is_active -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5dfe442a typec_partner_set_svdm_version -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5eb572c4 typec_set_vconn_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x66c9565e fwnode_typec_mux_get -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6aa09d95 typec_set_orientation -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6b52ff78 typec_get_orientation -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x71a82c38 typec_set_mode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x77b7d344 typec_set_pwr_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7c3021c0 typec_switch_put -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7e953a0b typec_altmode_put_plug -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7ffad32f typec_switch_set_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x834598e8 typec_plug_set_num_altmodes -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x8b02c006 typec_partner_set_pd_revision -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x8d541524 typec_plug_register_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2fa0eac8 typec_altmode_exit +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x335a0a86 typec_register_cable +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x36cb225b typec_link_port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x375a04d9 typec_mux_set +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x3d6172c2 typec_partner_set_identity +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x451417b8 typec_switch_register +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x459e9b63 fwnode_typec_switch_get +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x47b1dadc typec_altmode2port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x4823aae4 typec_altmode_put_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x4c185dc1 typec_match_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x4c807a2f __typec_altmode_register_driver +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x4f6b9631 typec_altmode_attention +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x50450771 typec_partner_register_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x520af48e typec_get_negotiated_svdm_version +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x58663977 typec_partner_set_pd_revision +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5a50ab64 typec_cable_set_identity +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5cf0bfca typec_switch_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x669ddd39 typec_cable_put +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x67c14f24 fwnode_typec_mux_get +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x698ec0ef typec_altmode_notify +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6efe4338 typec_switch_set_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x715f9bb5 typec_unregister_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x71a7d93a typec_partner_set_svdm_version +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x736069fd typec_altmode_get_partner +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x74bff127 typec_set_mode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x75ff0242 typec_set_orientation +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x794c7984 typec_altmode_vdm +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x885fc677 typec_altmode_get_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x8ac73c02 typec_altmode_enter +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x8e2fdcdb typec_mux_put EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9049491e typec_find_port_data_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x93423390 typec_switch_set -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x953329b0 typec_mux_set_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9df5cf8f typec_unregister_cable -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9f63e0b8 typec_switch_get_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9fd1f3e4 typec_mux_register +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x917f5c94 typec_mux_set_drvdata EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa254de98 typec_find_orientation -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa67b3e8b typec_altmode_exit -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa8d27284 typec_register_cable -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xad4e4a8c typec_altmode_attention -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb1ad8265 typec_unlink_port -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb2f8b2c2 typec_cable_put -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb386a1bd typec_get_negotiated_svdm_version -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb4fbdce3 typec_partner_set_identity -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb5e7ec27 typec_cable_get -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb61ee30b typec_register_partner -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb7ad8360 typec_unregister_altmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb7e8ba72 typec_altmode2port -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc98e0c2b typec_register_plug -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xcc81a548 typec_link_port -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd1208610 typec_set_pwr_opmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xdfad65b8 typec_set_data_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe0323292 typec_mux_unregister -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe621e731 typec_unregister_port -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe9eaa53f typec_switch_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa5e2c163 typec_unregister_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb0ec288e typec_register_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xbc76ddca typec_switch_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc1241a5f typec_switch_set +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc2960a1e typec_unregister_partner +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc45c9016 typec_mux_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xca153e59 typec_port_register_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xca32315c typec_set_data_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xcbd3af54 typec_get_orientation +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xdb5cd50b typec_port_register_altmodes +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe2bab75a typec_switch_put +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe5119b0e typec_cable_is_active +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xea74c338 typec_plug_register_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xeaafdf98 typec_set_pwr_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xeac7332e typec_plug_set_num_altmodes EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xeafc1eb8 typec_find_port_power_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf0f65faa typec_altmode_get_partner +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xeafede52 typec_cable_get +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xeb45ca55 typec_mux_get_drvdata EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf1234a8b typec_find_pwr_opmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xfdbffa14 typec_port_register_altmodes -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x0cdab64e ucsi_unregister -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x65aa1cf2 ucsi_register -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x6c414582 ucsi_create -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x7ca19eb3 ucsi_send_command -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xaff6810e ucsi_resume -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xb5158e90 ucsi_destroy -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xda2be7ad ucsi_connector_change -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xda838e82 ucsi_set_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xe62902d4 ucsi_get_drvdata -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x0889dc73 usbip_in_eh -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x1492bf92 usbip_alloc_iso_desc_pdu -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x2533d695 usbip_pad_iso -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x2f858077 usbip_pack_pdu -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x35755df7 usbip_dump_urb -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x43aa104d usbip_event_happened -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x6c3d299a usbip_start_eh +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf43cac46 typec_unregister_cable +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xfa2f517f typec_partner_set_num_altmodes +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xfa69216f typec_unregister_port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xffe6b380 typec_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x08e5319e ucsi_register +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x26ade8ef ucsi_set_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x3065dd1d ucsi_create +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x34b1d8c9 ucsi_connector_change +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x94fe8d44 ucsi_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xb6c5eaf9 ucsi_send_command +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xe84b7e84 ucsi_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xeed04806 ucsi_resume +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xf0a1fd46 ucsi_destroy +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x05e84b2e usbip_recv_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x18ad6632 usbip_recv +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x277894df usbip_stop_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x323bf9ee dev_attr_usbip_debug +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x373f6f7e usbip_event_happened +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x52f30f16 usbip_in_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x6e746bed usbip_pad_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x705e84fc usbip_start_eh EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x78b72f44 usbip_debug_flag -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x7953c07a usbip_recv_iso -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x7fc1c121 usbip_recv_xbuff -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x89a0f546 usbip_event_add -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xab1d7bb4 usbip_recv -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xb8fe8969 dev_attr_usbip_debug -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xc1fb46a8 usbip_stop_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x7f02bdbc usbip_pack_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xa66f2f71 usbip_alloc_iso_desc_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xa710d8ae usbip_event_add +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xab22aa07 usbip_dump_urb EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd02753dc usbip_header_correct_endian EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe1ea0586 usbip_dump_header -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x3f1ca6f8 _vdpa_unregister_device -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x7271136e vdpa_mgmtdev_unregister -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x73ba4908 __vdpa_alloc_device -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x7b6a5014 vdpa_register_device -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x7c3a8950 __vdpa_register_driver -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x8c445f82 vdpa_unregister_device -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xb67da576 vdpa_unregister_driver -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xbadb130b vdpa_mgmtdev_register -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xfaa63cb1 _vdpa_register_device -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa_sim/vdpa_sim 0xd24fb993 vdpasim_create -EXPORT_SYMBOL_GPL drivers/vfio/mdev/mdev 0xe41c6cbc mdev_bus_type -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x02257b11 vfio_pci_core_write -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x02eae5bd vfio_pci_core_enable -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x03fb6e5f vfio_pci_core_request -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x0c72ceb7 vfio_pci_core_init_device -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x13cb8ae0 vfio_pci_core_unregister_device -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x2b2af797 vfio_pci_core_sriov_configure -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x31615404 vfio_pci_core_mmap +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe223e5d0 usbip_recv_xbuff +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x1d1f1647 vdpa_mgmtdev_unregister +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x22e7dc44 vdpa_unregister_driver +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x2dcdc36f _vdpa_unregister_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x302e2d15 __vdpa_register_driver +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x46e475fc vdpa_register_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x61b97fd6 vdpa_unregister_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x95139660 _vdpa_register_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xeaaad414 vdpa_mgmtdev_register +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xf253b0e6 __vdpa_alloc_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa_sim/vdpa_sim 0xd23dbcd7 vdpasim_create +EXPORT_SYMBOL_GPL drivers/vfio/mdev/mdev 0xea1c31ab mdev_bus_type +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x151a7df7 vfio_pci_core_match +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x1bd4510e vfio_pci_core_read +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x268615c3 vfio_pci_core_write +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x34041833 vfio_pci_core_unregister_device +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x4b544f2b vfio_pci_core_mmap +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x4ba74ea2 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 0x4dad4532 vfio_pci_core_register_device -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x5ffa67c6 vfio_pci_core_ioctl -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x6c46dc66 vfio_pci_core_err_handlers -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x7b676262 vfio_pci_register_dev_region -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x7f4bfb4a vfio_pci_core_uninit_device -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x85438d22 vfio_pci_core_finish_enable -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x92fc950b vfio_pci_core_disable -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xb61b8269 vfio_pci_core_read -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xc31399b0 vfio_pci_core_match -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xde60204b vfio_pci_core_close_device -EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x66743e6f __vfio_platform_register_reset -EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xc7baaa63 vfio_platform_remove_common -EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xe41679a2 vfio_platform_probe_common -EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xe701999a vfio_platform_unregister_reset -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x0e1f12e1 vfio_iommu_group_put -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x2ce8b5a9 vfio_external_group_match_file -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x2e8b123d vfio_iommu_group_get -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x324d2588 vfio_register_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x660c9cb1 vfio_pci_register_dev_region +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x6b0723f8 vfio_pci_core_disable +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x705bcbe9 vfio_pci_core_close_device +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x7344a1c1 vfio_pci_core_ioctl +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x83ee8150 vfio_pci_core_err_handlers +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x9ab4af75 vfio_pci_core_sriov_configure +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xbda34f07 vfio_pci_core_uninit_device +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xd346ed72 vfio_pci_core_request +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xd99ec142 vfio_pci_core_enable +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xdf1627d8 vfio_pci_core_init_device +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xeee92243 vfio_pci_core_register_device +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x2f759895 __vfio_platform_register_reset +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x9242a478 vfio_platform_probe_common +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x9e381fdc vfio_platform_unregister_reset +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xa2062c9e vfio_platform_remove_common +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x12b835fc vfio_iommu_group_get +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x14bd6b05 vfio_register_iommu_driver +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x1810456e vfio_unregister_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x2dded503 vfio_uninit_group_dev EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x3567743b vfio_external_user_iommu_id -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x40ce3e72 vfio_group_get_external_user_from_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x46696a64 vfio_unregister_group_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x4ca5fea3 vfio_device_put -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x56aa717e vfio_assign_device_set +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x3850def1 vfio_iommu_group_put +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x4153fa56 vfio_device_get_from_dev EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x5b35c4f9 vfio_group_set_kvm -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x5c5af020 vfio_init_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x5fd8e064 vfio_external_group_match_file EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x60a634c4 vfio_info_cap_add -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x636886cb vfio_group_get_external_user -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x706dc947 vfio_device_get_from_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x7622fdbf vfio_register_iommu_driver -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xa8b6d46c vfio_group_iommu_domain -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xbcaaf69d vfio_unregister_iommu_driver +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x63ee5477 vfio_device_put +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x74dbe782 vfio_group_iommu_domain +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x8d8dd5fc vfio_register_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x9d323472 vfio_assign_device_set +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x9e07c6bd vfio_init_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xb0b80241 vfio_unregister_iommu_driver EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc1d989c5 vfio_external_check_extension EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc4913442 vfio_group_put_external_user -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xeb2f72e6 vfio_uninit_group_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0x092d0f55 vfio_virqfd_enable -EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0x861c8bdc vfio_virqfd_disable -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0c1dee80 vhost_has_work -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0ccd72fd vhost_poll_queue -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x11726a10 vhost_poll_flush -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1a182f69 vhost_dev_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x213930cf vhost_enqueue_msg -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x389dd60d vhost_vq_is_setup -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3e9ffc9d vhost_add_used -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3eac9b34 vhost_add_used_and_signal -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x407abcc1 vhost_dev_reset_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x445e6688 vhost_disable_notify -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4665240d vhost_log_write -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5557ffb2 vhost_get_vq_desc -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x584fade7 vq_meta_prefetch -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x64161cf1 vhost_dev_set_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6709f113 vhost_dev_cleanup -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x67e4ad40 vhost_set_backend_features -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6b42a2c6 vhost_work_dev_flush -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6b838c96 vhost_poll_stop -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x84e4bedb vhost_vring_ioctl -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8bfc5d3b vhost_enable_notify -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8d35fb64 vhost_chr_read_iter -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8d82906b vhost_discard_vq_desc -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x97beb288 vhost_work_queue -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9d83a91e vhost_init_device_iotlb -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa3b9a4c0 vhost_exceeds_weight -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa49ceda2 vhost_dev_check_owner +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xcaa4f247 vfio_group_get_external_user_from_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xf10d17fd vfio_group_get_external_user +EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0xac08f6bd vfio_virqfd_disable +EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0xb1177cd7 vfio_virqfd_enable +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x03597af3 vhost_work_dev_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x06732609 vhost_log_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0f9b38ed vhost_poll_start +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1dcaa5aa vhost_add_used_and_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2827ac49 vhost_dev_has_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x31dd2773 vhost_init_device_iotlb +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x32ba4b3e vhost_poll_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3e1fef21 vhost_dev_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x47dc538d vhost_dev_cleanup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4c82bbb7 vhost_add_used_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5236da30 vq_meta_prefetch +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5f65561a vhost_disable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x73b7f6f3 vhost_discard_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x78a48a32 vhost_vring_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7e3430d9 vhost_work_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x801f6747 vhost_poll_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8067e6e7 vhost_vq_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x86f64cd3 vhost_poll_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8b82cd3d vhost_vq_avail_empty +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8d00f79e vhost_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8d1d783b vhost_dev_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8d7329f9 vhost_add_used_and_signal_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x90adade8 vhost_dev_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x966c38e6 vhost_dev_check_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x96804d91 vhost_log_write +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9f70e21f vhost_exceeds_weight +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa1b59384 vhost_vq_is_setup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa2f44cb2 vhost_dev_set_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa51d1aab vhost_enable_notify EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa909cfc5 vhost_work_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xac2f3cfa vhost_poll_start -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xaf0fa954 vhost_dev_has_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xbbdeb580 vhost_new_msg -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xbe726339 vhost_vq_access_ok -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xbee3b0f1 vhost_log_access_ok -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc1ce8182 vhost_dequeue_msg -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd49fdbf6 vhost_vq_avail_empty -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe02806a4 vhost_dev_stop -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe030a659 vhost_add_used_n -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe7d28e0b vhost_dev_ioctl -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xedc3919d vhost_vq_init_access -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf2d09b0f vhost_add_used_and_signal_n -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf3211bc4 vhost_poll_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf3ac40c5 vhost_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xae574324 vhost_enqueue_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xaec35c4e vhost_set_backend_features +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb24402f6 vhost_dequeue_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb614a03d vhost_get_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc97484c6 vhost_new_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd28af161 vhost_add_used +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd3ed2c2c vhost_chr_read_iter +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xde2b1654 vhost_poll_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe8284e0b vhost_dev_reset_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xecbe913f vhost_vq_init_access +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf01f29ed vhost_has_work EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfd2b3e45 vhost_dev_reset_owner_prepare EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0x38ff875f vhost_iotlb_add_range EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0x5f4e5249 vhost_iotlb_reset @@ -17110,393 +17194,392 @@ 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 0x33bcdf62 ili9320_write_regs -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x6746127e ili9320_remove -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x72fdcf7c ili9320_probe_spi -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x95f2b42a ili9320_write -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x9c35f983 ili9320_resume -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xa18ec3ec ili9320_shutdown -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xec3c4c23 ili9320_suspend -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0x34a0a46c fb_ddc_read -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x5e167486 fb_sys_read -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x5ebc42a3 fb_sys_write -EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0xa03e1688 sis_malloc_new -EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0xf4319ac6 sis_free_new -EXPORT_SYMBOL_GPL drivers/w1/wire 0x4897de4c w1_reset_select_slave -EXPORT_SYMBOL_GPL drivers/w1/wire 0x4e163e90 w1_next_pullup -EXPORT_SYMBOL_GPL drivers/w1/wire 0x5a698c55 w1_triplet +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x22c326cf ili9320_remove +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x35cbdb5e ili9320_write +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x78d210a7 ili9320_shutdown +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x9ba7b46a ili9320_suspend +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xcdbbdc13 ili9320_probe_spi +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xed9193ff ili9320_resume +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xee1ad642 ili9320_write_regs +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0xcc9e7062 fb_ddc_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x8d0504e3 fb_sys_write +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0xf1b8375d fb_sys_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x2cf6b793 sis_free_new +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x89c92a4f sis_malloc_new +EXPORT_SYMBOL_GPL drivers/w1/wire 0x0129b72f w1_touch_bit +EXPORT_SYMBOL_GPL drivers/w1/wire 0x05171d10 w1_read_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x0aba6e81 w1_write_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x1cb861ad w1_reset_resume_command +EXPORT_SYMBOL_GPL drivers/w1/wire 0x2c64a81c w1_next_pullup +EXPORT_SYMBOL_GPL drivers/w1/wire 0x3d894f9b w1_touch_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x41ba1d98 w1_triplet EXPORT_SYMBOL_GPL drivers/w1/wire 0x63757e92 w1_calc_crc8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0x71f7badd w1_reset_resume_command -EXPORT_SYMBOL_GPL drivers/w1/wire 0x7bf74b5f w1_write_8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0x9974641e w1_touch_bit -EXPORT_SYMBOL_GPL drivers/w1/wire 0xa87f974f w1_read_8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0xb429471f w1_read_block -EXPORT_SYMBOL_GPL drivers/w1/wire 0xbea75aff w1_write_block -EXPORT_SYMBOL_GPL drivers/w1/wire 0xcf5154bf w1_touch_block -EXPORT_SYMBOL_GPL drivers/w1/wire 0xd20c0108 w1_reset_bus -EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x1f0afee3 xen_front_pgdir_shbuf_get_dir_start -EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x54a44af1 xen_front_pgdir_shbuf_map -EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x8a875bf5 xen_front_pgdir_shbuf_unmap -EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x9e76ec01 xen_front_pgdir_shbuf_free -EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0xfb4dc19a xen_front_pgdir_shbuf_alloc -EXPORT_SYMBOL_GPL drivers/xen/xen-privcmd 0x0361f2b1 xen_privcmdbuf_fops -EXPORT_SYMBOL_GPL drivers/xen/xen-privcmd 0x65b81486 xen_privcmd_fops -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x22a16818 dlm_posix_unlock +EXPORT_SYMBOL_GPL drivers/w1/wire 0x8afc6053 w1_read_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0xb9b143d1 w1_write_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0xe79b2139 w1_reset_select_slave +EXPORT_SYMBOL_GPL drivers/w1/wire 0xf574795e w1_reset_bus +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x125a7ba3 xen_front_pgdir_shbuf_map +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x53a491d2 xen_front_pgdir_shbuf_free +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x5ad9cbc2 xen_front_pgdir_shbuf_alloc +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x6e7515f0 xen_front_pgdir_shbuf_unmap +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0xe04259ec xen_front_pgdir_shbuf_get_dir_start +EXPORT_SYMBOL_GPL drivers/xen/xen-privcmd 0x6a368832 xen_privcmd_fops +EXPORT_SYMBOL_GPL drivers/xen/xen-privcmd 0xed7296ce xen_privcmdbuf_fops +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x0c4702d8 dlm_posix_get +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x37806a1a dlm_posix_unlock EXPORT_SYMBOL_GPL fs/dlm/dlm 0x4b62826c dlm_unlock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x629af4e5 dlm_posix_lock EXPORT_SYMBOL_GPL fs/dlm/dlm 0x647d6170 dlm_lock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x878fc00d dlm_posix_get EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcd224e1d dlm_new_lockspace EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcf9f3328 dlm_release_lockspace +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xf48224e9 dlm_posix_lock EXPORT_SYMBOL_GPL fs/fscache/fscache 0x092cf98e fscache_object_sleep_till_congested -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x3653486a nlmclnt_proc -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x614cfd34 nlmsvc_ops -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x6bb5f1e1 lockd_up -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x73142871 nlmsvc_unlock_all_by_sb +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x43386ca8 lockd_up EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77e35ccc nlmsvc_unlock_all_by_ip -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x8b5f3570 nlmclnt_done -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x94d467a8 lockd_down -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xdb82cea7 nlmclnt_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x004bdeb5 nfs_set_cache_invalid -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x009c4667 nfs_statfs -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x028fb43b __traceiter_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x82710896 nlmclnt_done +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xad1e4857 nlmclnt_proc +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xb01a3423 nlmsvc_ops +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xb5c19d45 nlmsvc_unlock_all_by_sb +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xd8f305a5 lockd_down +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xf1561e8b nlmclnt_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0008d7d8 nfs_sops +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00c2a6d3 nfs_generic_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0166ea0a nfs_force_lookup_revalidate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x018e2575 nfs_write_inode EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0294c6a2 nfs_callback_nr_threads -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x046f6fc5 nfs_writeback_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x04910b2a nfs_client_init_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x07a25bd6 nfs_setattr_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0a6245b7 nfs_clone_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0aab0e0b nfs_init_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0ca6ac49 nfs_server_remove_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x031cfee0 nfs_show_devname +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x06a8fdf7 nfs_pgio_header_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x096bbc4b nfs_inode_attach_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0b5c0385 nfs_file_llseek +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0d2ceaa4 nfs_pgheader_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0e76fca7 nfs_show_stats +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0e8b9b1b nfs_commitdata_alloc EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10962bc2 nfs_auth_info_match -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x13564c1b nfs_pageio_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x11aeb4ba nfs_init_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x132b55aa nfs_umount_begin +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x142e18db nfs_client_for_each_server EXPORT_SYMBOL_GPL fs/nfs/nfs 0x14feb109 nfs_access_set_mask -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x15773c28 nfs_alloc_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x197b73c8 nfs_post_op_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1a0ca2a4 __traceiter_nfs_xdr_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1aaee923 nfs_create -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1ae790fb nfs_set_verifier -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1bc3c381 nfs_wait_client_init_complete -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1c2f0ace put_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x226d1625 nfs_flock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1af9b4a3 nfs_mark_client_ready +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1b0ea4cc alloc_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1da06bc3 nfs_show_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x20259127 nfs_initiate_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2232f67a nfs_flock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x22c51ef8 nfs_get_client EXPORT_SYMBOL_GPL fs/nfs/nfs 0x22d795a8 _nfs_display_fhandle_hash -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x24c06aec nfs_do_submount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x25da263a nfs_file_release -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x25f9df22 nfs_zap_acl_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26771628 nfs_clear_verifier_delegated +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x248525c8 nfs_init_cinfo EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x27568e83 nfs_client_for_each_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x27fccfd8 nfs_put_lock_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x295331ff unregister_nfs_version -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2c0ac7aa nfs_atomic_open -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2c9645fe nfs_request_add_commit_list_locked -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2dd5fc43 nfs_sops -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2df29498 nfs_wait_on_request -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2dfeb45e nfs_server_copy_userdata -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2f36d368 nfs_invalidate_atime +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x269ea8ce nfs_wait_on_request +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26ac1050 nfs_commit_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2999c97d nfs_kill_super EXPORT_SYMBOL_GPL fs/nfs/nfs 0x30496988 __tracepoint_nfs_fsync_enter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3106586f nfs_pgio_header_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3309ee63 nfs4_label_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x34df6e22 nfs_add_or_obtain -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x353a4caa nfs_commitdata_release -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x364c43d8 nfs_mknod -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39217470 __traceiter_nfs_xdr_bad_filehandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x307ee986 nfs_statfs +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x32546b7e nfs_alloc_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x32c267e5 nfs_clear_verifier_delegated +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x352af841 nfs_check_cache_invalid +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3594c6cc nfs_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x375e09ea nfs_mknod +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x37ac4a91 nfs_sync_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39066319 nfs_getattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x391ec28c nfs_get_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x393acb14 nfs_request_remove_commit_list EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3c32a555 nfs_mkdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3c33c3e4 unregister_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3d66116f nfs_retry_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3ee3a060 nfs_alloc_server EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f2690f2 nfs_check_flags +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x403bfa58 nfs_create_server EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40739385 nfs_wait_bit_killable +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40a810b0 nfs_path EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f2c81f nfs4_client_id_uniquifier -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4460761b nfs_rmdir -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x44860831 nfs_alloc_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x44c20388 nfs_file_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4430bd19 nfs_pageio_reset_write_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x447cb10f nfs_refresh_inode EXPORT_SYMBOL_GPL fs/nfs/nfs 0x44cc3a41 __tracepoint_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x487c5be9 nfs_client_init_is_complete -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4b5d5fae nfs_show_stats -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4b9920a0 nfs_show_devname +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x46abb9d0 nfs4_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4982c8d8 nfs_rmdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4a903ffc nfs_access_zap_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4c6b7872 nfs_file_read EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4e2f76d1 nfs_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4f82afa8 __traceiter_nfs_fsync_enter EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x53ebee6d nfs_setattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x56589c0d nfs_wb_all -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x575c8de2 nfs_free_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x57e7d87f nfs_access_zap_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x52a1a5ed nfs_permission +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x536073b5 nfs_client_init_is_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5410164f nfs_may_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5485aa39 nfs_clear_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x581b513b nfs_filemap_write_and_wait_range 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 0x5b4e235b nfs_request_remove_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5bcde03b nfs_kill_super -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x654ab45c nfs_umount_begin -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6777e0e6 nfs_initiate_pgio -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6853ad7e nfs_rename -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6cc823e2 nfs_refresh_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6e13ee70 nfs_setsecurity +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5b102220 nfs_commitdata_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5f66bfd0 nfs_server_copy_userdata +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x614be4b6 nfs_create_rpc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6158aa28 nfs_pgio_header_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x62972b6f nfs_file_mmap +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x63c59656 nfs_put_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x651127fd nfs_init_server_rpcclient +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x694f1a7d nfs_request_add_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6a401821 nfs_file_write EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6e81f032 __SCK__tp_func_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6e935545 nfs_may_open -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x712f171b nfs_server_insert_lists -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x71c95d89 nfs_file_set_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6ecb5016 nfs_revalidate_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6fcffcc4 nfs_probe_fsinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x716045bd nfs_rename +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x73d0e767 nfs_lock EXPORT_SYMBOL_GPL fs/nfs/nfs 0x73dff4c0 __SCK__tp_func_nfs_xdr_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x75ce478a nfs_post_op_update_inode_force_wcc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7797bc6a nfs_sb_deactive +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x79f0ae9f nfs_pageio_resend EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7c9722ba nfs_dreq_bytes_left -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7d192ea1 nfs_getattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7d52f84d nfs_generic_pgio -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fc74930 nfs_inode_attach_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x80d072fd nfs_access_get_cached -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x827e312f nfs_sync_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7f1e4e08 nfs_mkdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x831bd986 nfs_access_get_cached EXPORT_SYMBOL_GPL fs/nfs/nfs 0x832e8f0b nfs_alloc_fattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x85575b4f nfs_init_server_rpcclient -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x85ed47c2 nfs_unlink -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x86440ab1 nfs_get_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8688754f nfs_commitdata_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x87ad15fd nfs_lookup -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x89580248 nfs_create_rpc_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x89987e91 nfs_pgheader_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8e837652 nfs_pgio_current_mirror -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8ea2821f nfs_link -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8f943025 nfs_drop_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x84debf13 nfs_symlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x852929f6 nfs_try_get_tree +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x855d629e nfs_sb_active +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x85605989 nfs_wait_client_init_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x891bac22 nfs_setattr_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8a3059d9 nfs_setsecurity +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8d630cac nfs_init_commit EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90a5530f nfsiod_workqueue EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91d1fe52 max_session_slots -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x946fd688 nfs_init_cinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x934894a4 nfs4_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x941e9c9e get_nfs_open_context EXPORT_SYMBOL_GPL fs/nfs/nfs 0x95007f7e __SCK__tp_func_nfs_xdr_bad_filehandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x973252c0 nfs_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9616e16d nfs_file_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x96d73415 nfs_release_request +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x97a3bc48 nfs_atomic_open EXPORT_SYMBOL_GPL fs/nfs/nfs 0x98b0ece8 nfs_init_timeout_values -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9923e4d3 nfs_free_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x993a4c4e nfs_commit_free -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x99c13368 nfs_scan_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9a5c7e1b nfs4_fs_type -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9a660475 nfs_file_llseek -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9acfed72 nfs_symlink -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9cd824d6 nfs_commit_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9d406f7b nfs_revalidate_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9dde34ff nfs_file_fsync -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9e19cf96 nfs_clear_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9e269cbc nfs_reconfigure +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9a109444 nfs_link +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9bc7f295 nfs_do_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9cba09c9 nfs_free_client EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa05ca625 nfs_fattr_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa44a1bf4 nfs_pgio_header_free -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa72b45a1 nfs_put_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa7e0ff5d nfs_lock -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8d3c814 nfs_fscache_open_file +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa09873fd nfs_create +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa437b0e2 nfs_access_add_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa50cabb5 nfs_zap_acl_cache EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e9e1ae send_implementation_id -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaa91e2d9 nfs_check_cache_invalid EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaafd4acc max_session_cb_slots -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xad10abb1 alloc_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb3f44810 get_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb6862741 nfs_show_path -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb74eac97 nfs_dentry_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb9293cc3 nfs_free_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xba626e49 nfs_pageio_reset_read_mds -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbe3a8f71 nfs_filemap_write_and_wait_range -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbf73ee53 nfs_show_options -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc00abdd0 nfs_instantiate -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc070323a nfs_async_iocounter_wait -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc168ea35 nfs_write_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc18cc919 nfs_file_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc2e7516b nfs_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xab519741 nfs_async_iocounter_wait +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xab6a3275 __traceiter_nfs_xdr_bad_filehandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xabc30429 nfs_file_set_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xac4b1978 nfs_pageio_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xae2bf900 nfs_pgio_current_mirror +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xae45f2cf nfs_lookup +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaf5a99de nfs_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb0a94092 nfs4_label_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb11bc7dc nfs_clone_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb17fba5a nfs_add_or_obtain +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb19c2eb2 nfs_request_add_commit_list_locked +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb9bcf0cf nfs_fscache_open_file +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbcc6ddc2 nfs_file_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbd749a56 nfs_unlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbf836250 nfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc13f94a5 nfs_scan_commit_list EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3a2be67 nfs_net_id -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc50edffb nfs_sb_deactive -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc9899ad7 nfs_probe_fsinfo -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xca3d6ab1 nfs_file_mmap -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcc6666d8 nfs_pageio_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcf5db34f nfs_release_request -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd006883f __traceiter_nfs_fsync_enter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd45c56bc nfs_request_add_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd8aa15be nfs_force_lookup_revalidate -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd9ed3caf nfs4_dentry_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdac0372d nfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc6805874 nfs_put_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc71e3fe7 __traceiter_nfs_xdr_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc7d88ee8 nfs_writeback_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc92d1446 nfs_server_insert_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcbf30c28 put_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcc190f32 nfs_pageio_reset_read_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcdd84dd5 nfs_set_cache_invalid +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcf5c331c register_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcfb06de2 nfs_setattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd1723597 nfs_commit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd51a1f3a nfs_initiate_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd728fdeb nfs_alloc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd88bb10d nfs_free_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd92f05a8 nfs_set_verifier +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdac19f2a nfs_fhget EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdb32af1d nfs_pageio_reset_write_mds -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdc463004 nfs_close_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe1053f72 nfs_submount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe331a90f nfs_get_lock_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe53d05b6 nfs_try_get_tree +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdda84b0a nfs_drop_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdff17d45 nfs_instantiate EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe70507df __tracepoint_nfs_xdr_bad_filehandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe7ff8ac2 nfs_post_op_update_inode_force_wcc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe871387a nfs_init_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe98e3b20 nfs_mark_client_ready -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xea834f4a nfs_permission -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xec49795b nfs_alloc_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf0dfc1a3 nfs_access_add_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf187fe4c nfs_sb_active -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf40fab76 nfs_pageio_resend -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf4fe3449 register_nfs_version -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf55be47b nfs_file_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe7b15cae nfs_pageio_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeb8528ef nfs_free_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeb98e768 nfs_file_fsync +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xee68b7c6 nfs_invalidate_atime +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf0a02828 nfs_post_op_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf0fbcd7c nfs_wb_all +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf844802b __traceiter_nfs_fsync_exit EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf96f04c4 __SCK__tp_func_nfs_fsync_enter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfa9cfd3e nfs_create_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfb6900a9 nfs_retry_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc5fd027 nfs_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf9eac0b0 nfs_reconfigure EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc619abd _nfs_display_fhandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfdf7beeb nfs_fhget -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfea84141 nfs_initiate_commit -EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0x0a4e7a5b nfs3_set_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x00056e99 pnfs_generic_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfcb23b74 nfs_close_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfe0882e5 nfs_server_remove_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfe5db819 nfs_show_options +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xff7e16cd nfs_client_init_status +EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0x6bf77326 nfs3_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x02e4387f pnfs_generic_pg_readpages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0303b62e pnfs_put_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x036c2595 nfs42_proc_layouterror +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x04ba7465 pnfs_read_resend_pnfs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0532eaed pnfs_generic_clear_request_commit 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 0x08fdfda3 pnfs_read_resend_pnfs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x09657c1f nfs4_schedule_migration_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0a9457f9 pnfs_register_layoutdriver EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0aebca68 __tracepoint_ff_layout_read_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0d8cb391 nfs4_proc_getdeviceinfo -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0e05210c nfs4_schedule_lease_moved_recovery 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 0x111a3778 pnfs_ld_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x116bccac __traceiter_pnfs_mds_fallback_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1198aa26 nfs4_pnfs_ds_connect -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x11fc3369 nfs4_schedule_stateid_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x130fae73 __traceiter_pnfs_mds_fallback_read_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x17ea5723 pnfs_update_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1b11ee82 nfs4_find_or_create_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x150fac77 nfs4_pnfs_ds_put +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x18339cf2 nfs4_test_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1a3dae26 nfs4_proc_getdeviceinfo +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1f021a6a pnfs_generic_recover_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1fb447ce nfs41_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x25e8779c nfs_remove_bad_delegation +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x271ccef4 __traceiter_pnfs_mds_fallback_write_done EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x27ad47ea __SCK__tp_func_pnfs_mds_fallback_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2bf3352b pnfs_put_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2fa2e1f2 pnfs_nfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2bdb7dcc nfs4_schedule_lease_moved_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2c172980 __traceiter_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2c37df6b nfs4_init_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2ff6f5d9 nfs4_setup_sequence 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 0x33f8f150 pnfs_set_lo_fail -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x36aeddc3 nfs42_proc_layouterror -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3e7b29f4 nfs4_test_session_trunk -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4530d491 nfs4_test_deviceid_unavailable -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4e122862 pnfs_generic_ds_cinfo_release_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x516732ff pnfs_generic_recover_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3383c04f pnfs_write_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3d9e78a8 pnfs_generic_search_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3e1e17de pnfs_error_mark_layout_for_return +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x40df71a4 nfs4_mark_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x46a1d8b8 __traceiter_ff_layout_commit_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x46a419b1 nfs4_pnfs_ds_add +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4894ae36 nfs4_put_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x48f21764 pnfs_generic_scan_commit_lists +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4c249a4b pnfs_generic_pg_cleanup +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4ee8b740 pnfs_generic_ds_cinfo_destroy EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x533c198f __SCK__tp_func_nfs4_pnfs_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x53e922fc pnfs_generic_prepare_to_resend_writes -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x56f1c498 pnfs_read_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5534274d pnfs_generic_ds_cinfo_release_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5766eb43 pnfs_generic_pg_init_write EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x579126b8 __SCK__tp_func_pnfs_mds_fallback_read_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5a1b07a2 pnfs_generic_sync -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5a1b266d pnfs_generic_pg_cleanup +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x587e6f9a pnfs_generic_sync EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5a4314e9 __SCK__tp_func_nfs4_pnfs_commit_ds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5ba42f73 __traceiter_nfs4_pnfs_commit_ds EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5ce462a3 __tracepoint_pnfs_mds_fallback_write_done EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6085edbd nfs_map_string_to_numeric -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x60e42f90 nfs_remove_bad_delegation -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x620f1dbb pnfs_destroy_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x62b7bcd1 nfs4_init_ds_session -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x66a159b0 pnfs_unregister_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x61144736 __traceiter_ff_layout_read_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x61f430d7 pnfs_generic_write_commit_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6512f64e pnfs_set_layoutcommit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x662c2c52 nfs4_find_or_create_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x67dba065 pnfs_generic_pg_writepages EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6c3af551 nfs4_schedule_session_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6c926197 nfs4_decode_mp_ds_addr -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6eef2ed0 pnfs_generic_pg_readpages -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x70809d97 pnfs_generic_commit_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7336d0ec __traceiter_pnfs_mds_fallback_pg_get_mirror_count -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x740985ab pnfs_write_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6f1c96d3 pnfs_generic_prepare_to_resend_writes +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x77e9fc5e __traceiter_ff_layout_write_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x77f23a1a pnfs_ld_write_done EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x785c06ab __SCK__tp_func_ff_layout_read_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x79fdcbd1 pnfs_generic_clear_request_commit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7a090797 nfs4_schedule_lease_recovery 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 0x7d616a57 nfs4_sequence_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7f20688d pnfs_generic_ds_cinfo_destroy +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7de5baf3 pnfs_generic_pg_check_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7ea9563a nfs4_set_rw_stateid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x80131c8d pnfs_free_commit_array EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x82409884 __tracepoint_pnfs_mds_fallback_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x87948350 pnfs_free_commit_array -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8a03fc51 pnfs_alloc_commit_array -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8b087d8f __traceiter_pnfs_mds_fallback_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8b0a24e9 __traceiter_nfs4_pnfs_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8b407228 __traceiter_pnfs_mds_fallback_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8c46d40d nfs4_set_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8dac3338 pnfs_generic_layout_insert_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x90e4d994 __traceiter_ff_layout_write_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9545651a pnfs_layout_mark_request_commit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x95ba2a17 nfs4_mark_deviceid_unavailable -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x96d63131 __traceiter_ff_layout_commit_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x833d8f97 pnfs_unregister_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x84fb7143 nfs4_init_ds_session +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x85acad80 pnfs_ld_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x88c43354 pnfs_read_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8986fea7 pnfs_nfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8a17b84f nfs4_schedule_lease_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8adacc18 pnfs_layoutcommit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8ff6c6e4 pnfs_generic_pg_check_range EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x974a1614 __tracepoint_pnfs_mds_fallback_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x97bf3cfe pnfs_set_lo_fail +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x990b8594 __traceiter_pnfs_mds_fallback_write_pagelist EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9a1a74c3 __tracepoint_nfs4_pnfs_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9aa28fa9 pnfs_generic_scan_commit_lists -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9f4545b6 nfs4_delete_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xab42e915 nfs41_sequence_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xadd90cd3 pnfs_generic_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xaf8aa494 nfs4_mark_deviceid_available -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb047a2e9 pnfs_add_commit_array -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb32e16fb pnfs_set_layoutcommit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb6eff77a pnfs_generic_pg_check_range -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb737bec6 nfs4_pnfs_ds_put -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb8cc171e nfs4_set_rw_stateid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9bbb5bd7 nfs4_schedule_session_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9e3ceb04 __traceiter_pnfs_mds_fallback_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa485cf77 pnfs_destroy_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa5683f95 nfs4_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa592c9fc __traceiter_pnfs_mds_fallback_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa6df82f5 pnfs_add_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xafe27a4c nfs4_test_session_trunk +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb17a2cdd nfs4_find_get_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb17a813d nfs4_schedule_migration_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb4b0708d nfs4_sequence_done EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xba53a1ef __SCK__tp_func_pnfs_mds_fallback_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbbc6a59a pnfs_generic_write_commit_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbcfbc688 pnfs_register_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbe71777e nfs4_delete_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc32f4cac pnfs_layout_mark_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc46b24df __traceiter_pnfs_mds_fallback_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc61d62ce pnfs_generic_pg_init_read EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc7a9d954 __SCK__tp_func_nfs4_pnfs_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc8524435 pnfs_generic_pg_check_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcc8bd838 nfs4_pnfs_ds_add +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xccdb95e2 pnfs_generic_commit_pagelist EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcf29b95f __tracepoint_pnfs_mds_fallback_read_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd062b167 pnfs_generic_pg_writepages EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd0ecfaad __tracepoint_pnfs_mds_fallback_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd4d512b4 pnfs_generic_search_commit_reqs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd5c9f95c pnfs_ld_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdb2f5580 __traceiter_pnfs_mds_fallback_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdb787c64 nfs4_setup_sequence -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdc05c201 nfs4_find_get_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd312602b pnfs_update_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdbb27a85 __traceiter_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xde1b2fe2 nfs4_pnfs_ds_connect EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdf6991a4 __SCK__tp_func_pnfs_mds_fallback_write_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe1762699 nfs4_put_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe174acb8 pnfs_generic_layout_insert_lseg EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe19f5ee0 __tracepoint_pnfs_mds_fallback_write_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe48d9c25 __traceiter_pnfs_mds_fallback_write_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe6fb7489 pnfs_layoutcommit_inode -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe9fdc9d9 pnfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe1d73b0c __traceiter_pnfs_mds_fallback_pg_get_mirror_count +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe33237e3 __traceiter_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe358f2bf nfs4_mark_deviceid_available +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe90fb904 pnfs_alloc_commit_array EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xeae8522f __tracepoint_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xeb0bd63c nfs4_schedule_stateid_recovery 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 0xf2f4333d nfs4_init_deviceid_node -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf4ada021 __traceiter_nfs4_pnfs_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf4b80e57 pnfs_error_mark_layout_for_return +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf127d69d pnfs_report_layoutstat EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf7801360 nfs41_maxgetdevinfo_overhead -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf7d3897d __traceiter_ff_layout_read_error EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf999267e pnfs_generic_commit_release -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfdc614ea pnfs_report_layoutstat +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfb382de7 nfs4_decode_mp_ds_addr +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfc33c111 pnfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xff46ec37 __traceiter_pnfs_mds_fallback_read_pagelist EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fe1e1ad locks_end_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x552671d2 opens_in_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xbcd624cf locks_in_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xd30162da locks_start_grace -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x15b4d1eb nfs_stream_encode_acl -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x17da0622 nfs_stream_decode_acl -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x5237dc62 nfsacl_decode -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xf9c1f8bc nfsacl_encode -EXPORT_SYMBOL_GPL fs/nfsd/nfsd 0x87879580 nfsd4_ssc_init_umount_work +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x40d0d6c7 locks_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x565f55fc locks_start_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x6f34ad50 opens_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x8632485d nfs_stream_encode_acl +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xa0aae21e nfs_stream_decode_acl +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xb6749e6b nfsacl_decode +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xd6d4a44c nfsacl_encode +EXPORT_SYMBOL_GPL fs/nfsd/nfsd 0xdf7f176b nfsd4_ssc_init_umount_work +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x09d32255 o2hb_register_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x15ec9ee6 o2nm_node_put +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x17e87f96 o2hb_setup_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x181a3be3 o2nm_get_node_by_num EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1b89c6ee o2hb_fill_node_map -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x47399840 o2nm_get_node_by_ip +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x3f7d0ae2 o2nm_node_get 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 0x58e553d2 o2nm_get_node_by_num EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x5e95a4b2 o2net_send_message_vec -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x678278cb o2hb_register_callback EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x6a0c3847 __mlog_printk -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x6a9c1b7e o2hb_setup_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x6bca8bb5 o2nm_node_put EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x81a17396 mlog_and_bits -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa3972532 o2nm_node_get EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa87bc9e7 o2nm_configured_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 0xce669c24 o2hb_unregister_callback EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd859ac8c o2net_fill_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xe2b61985 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 0x2a1de472 dlm_print_one_lock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x492d6f3d dlmlock +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xfe436e6c o2hb_unregister_callback +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x08fcfb47 dlmunlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x4ebbb7a0 dlm_register_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x54d8a348 dlm_register_domain EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7a1211f8 dlm_setup_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x956e7088 dlmunlock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xa2d59333 dlm_register_domain -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xc88b74af dlm_unregister_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x86738fc0 dlm_print_one_lock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xafcd7a00 dlm_unregister_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xce2c106a 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 0xe921d796 dlm_register_eviction_cb EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xfb86b96f dlm_errname -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x00fdbe96 ocfs2_kset +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x02359a00 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 0x1475f64b ocfs2_dlm_lvb_valid EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4d3af7fa ocfs2_cluster_hangup EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x76f40744 ocfs2_dlm_lvb -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x90f6e605 ocfs2_plock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x7ac60152 ocfs2_plock EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x9507547f ocfs2_cluster_disconnect EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xaf969565 ocfs2_dlm_lock EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbbc4ef97 ocfs2_stack_supports_plocks -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xc2ec49b6 ocfs2_stack_glue_unregister +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xc4e897e1 ocfs2_stack_glue_register EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xc5196999 ocfs2_dlm_unlock EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xc9fae756 ocfs2_cluster_connect EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xcafdd707 ocfs2_dlm_lock_status -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xcba67533 ocfs2_stack_glue_register EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xd344e4ee ocfs2_stack_glue_set_max_proto_version EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xd806a273 ocfs2_dlm_dump_lksb -EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0x1b49784e register_pstore_device +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xf0803463 ocfs2_kset +EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0x2f671830 register_pstore_device EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0x43cc3d4b pstore_blk_get_config -EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0xb67c770a unregister_pstore_device -EXPORT_SYMBOL_GPL fs/pstore/pstore_zone 0x1a7852c8 unregister_pstore_zone -EXPORT_SYMBOL_GPL fs/pstore/pstore_zone 0x7dc3f9d7 register_pstore_zone +EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0xaf933293 unregister_pstore_device +EXPORT_SYMBOL_GPL fs/pstore/pstore_zone 0xa4c24468 register_pstore_zone +EXPORT_SYMBOL_GPL fs/pstore/pstore_zone 0xdbcf74f7 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 @@ -17521,8 +17604,8 @@ EXPORT_SYMBOL_GPL lib/crypto/libpoly1305 0x8c874435 poly1305_init_generic EXPORT_SYMBOL_GPL lib/crypto/libsm4 0x24e254e8 sm4_expandkey EXPORT_SYMBOL_GPL lib/crypto/libsm4 0xfa81970e sm4_crypt_block -EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x0df16838 notifier_err_inject_dir -EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x6f92ba4a notifier_err_inject_init +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x5fc6c496 notifier_err_inject_dir +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0xfc118952 notifier_err_inject_init EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x1803a6ed raid6_2data_recov EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x2b30f429 raid6_call EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0xe4b051cf raid6_datap_recov @@ -17532,1062 +17615,1063 @@ 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 0x60ec636e lowpan_header_compress -EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0xf1e880fa lowpan_header_decompress -EXPORT_SYMBOL_GPL net/802/garp 0x3e741b32 garp_request_leave -EXPORT_SYMBOL_GPL net/802/garp 0x618752a9 garp_unregister_application -EXPORT_SYMBOL_GPL net/802/garp 0xb15366e2 garp_register_application -EXPORT_SYMBOL_GPL net/802/garp 0xdba932a1 garp_uninit_applicant -EXPORT_SYMBOL_GPL net/802/garp 0xfde39256 garp_init_applicant -EXPORT_SYMBOL_GPL net/802/garp 0xff080d8d garp_request_join -EXPORT_SYMBOL_GPL net/802/mrp 0x0132897f mrp_uninit_applicant -EXPORT_SYMBOL_GPL net/802/mrp 0x03cbb9d3 mrp_request_leave -EXPORT_SYMBOL_GPL net/802/mrp 0x1a8a15be mrp_unregister_application -EXPORT_SYMBOL_GPL net/802/mrp 0x24071c9c mrp_register_application -EXPORT_SYMBOL_GPL net/802/mrp 0x2ec9be28 mrp_init_applicant -EXPORT_SYMBOL_GPL net/802/mrp 0x7dac96f1 mrp_request_join -EXPORT_SYMBOL_GPL net/802/stp 0x03a099c0 stp_proto_unregister -EXPORT_SYMBOL_GPL net/802/stp 0x134ff1d6 stp_proto_register -EXPORT_SYMBOL_GPL net/9p/9pnet 0x9cd5c6e8 p9_client_xattrwalk -EXPORT_SYMBOL_GPL net/9p/9pnet 0xc6707629 p9_client_xattrcreate +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x55ca9f77 lowpan_header_compress +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0xbe879fa3 lowpan_header_decompress +EXPORT_SYMBOL_GPL net/802/garp 0x0d6d8ac1 garp_request_join +EXPORT_SYMBOL_GPL net/802/garp 0x2bc9eaa8 garp_unregister_application +EXPORT_SYMBOL_GPL net/802/garp 0x38812066 garp_init_applicant +EXPORT_SYMBOL_GPL net/802/garp 0x59407718 garp_register_application +EXPORT_SYMBOL_GPL net/802/garp 0x7b37c5f0 garp_request_leave +EXPORT_SYMBOL_GPL net/802/garp 0x94024ce4 garp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0x100681d2 mrp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0x299cda9d mrp_unregister_application +EXPORT_SYMBOL_GPL net/802/mrp 0x51b0a9cd mrp_register_application +EXPORT_SYMBOL_GPL net/802/mrp 0xbf847100 mrp_request_leave +EXPORT_SYMBOL_GPL net/802/mrp 0xc818bf7f mrp_init_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0xe5ecf43f mrp_request_join +EXPORT_SYMBOL_GPL net/802/stp 0x0cd9764e stp_proto_unregister +EXPORT_SYMBOL_GPL net/802/stp 0xb8acb1f9 stp_proto_register +EXPORT_SYMBOL_GPL net/9p/9pnet 0x333a31b9 p9_client_xattrwalk +EXPORT_SYMBOL_GPL net/9p/9pnet 0xf53b4a11 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 0x0262e84f 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 0x1933970c l2cap_chan_list -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x3f1ffcc4 l2cap_chan_set_defaults -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x5bb8f174 l2cap_chan_put -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x5c8266a3 l2cap_chan_del -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x6c94cb58 l2cap_add_psm -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x9def11d8 l2cap_chan_send -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xabddcf37 l2cap_chan_connect -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xf0507029 bt_debugfs -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xfa21ed2f l2cap_chan_create -EXPORT_SYMBOL_GPL net/bluetooth/hidp/hidp 0xdb8da17b hidp_hid_driver -EXPORT_SYMBOL_GPL net/bridge/bridge 0x16c82253 nf_br_ops -EXPORT_SYMBOL_GPL net/bridge/bridge 0x1ef0d8bf br_vlan_get_info -EXPORT_SYMBOL_GPL net/bridge/bridge 0x245f3d3d br_multicast_enabled -EXPORT_SYMBOL_GPL net/bridge/bridge 0x34ccfeda br_multicast_has_querier_anywhere -EXPORT_SYMBOL_GPL net/bridge/bridge 0x3565eea3 br_vlan_get_proto -EXPORT_SYMBOL_GPL net/bridge/bridge 0x3964edee br_port_flag_is_set -EXPORT_SYMBOL_GPL net/bridge/bridge 0x3b3e1b3d br_fdb_find_port -EXPORT_SYMBOL_GPL net/bridge/bridge 0x3f775a06 br_multicast_has_querier_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0x4fb7674d br_dev_queue_push_xmit -EXPORT_SYMBOL_GPL net/bridge/bridge 0x50c03f9a br_vlan_enabled -EXPORT_SYMBOL_GPL net/bridge/bridge 0x63c32bb3 br_vlan_get_info_rcu -EXPORT_SYMBOL_GPL net/bridge/bridge 0x69878785 br_multicast_has_router_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0x74a4a621 br_fdb_clear_offload -EXPORT_SYMBOL_GPL net/bridge/bridge 0x7e920d97 br_forward_finish -EXPORT_SYMBOL_GPL net/bridge/bridge 0x99928662 br_forward -EXPORT_SYMBOL_GPL net/bridge/bridge 0x9e00e346 br_multicast_list_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0xc80039ea br_vlan_get_pvid_rcu -EXPORT_SYMBOL_GPL net/bridge/bridge 0xca860ccb br_multicast_router -EXPORT_SYMBOL_GPL net/bridge/bridge 0xd22d18c9 br_vlan_get_pvid -EXPORT_SYMBOL_GPL net/bridge/bridge 0xe1e23581 br_handle_frame_finish -EXPORT_SYMBOL_GPL net/bridge/bridge 0xe4173849 br_get_ageing_time -EXPORT_SYMBOL_GPL net/bridge/bridge 0xf19409a5 br_port_get_stp_state -EXPORT_SYMBOL_GPL net/core/failover 0x08a2f094 failover_register -EXPORT_SYMBOL_GPL net/core/failover 0x7c31731a failover_slave_unregister -EXPORT_SYMBOL_GPL net/core/failover 0xfdd179bf failover_unregister -EXPORT_SYMBOL_GPL net/dccp/dccp 0x0287246f dccp_create_openreq_child -EXPORT_SYMBOL_GPL net/dccp/dccp 0x05e42e50 dccp_feat_signal_nn_change -EXPORT_SYMBOL_GPL net/dccp/dccp 0x0ba2ee56 dccp_poll +EXPORT_SYMBOL_GPL net/ax25/ax25 0xd5b369be ax25_register_pid +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x03bff417 bt_debugfs +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x3118bcd9 l2cap_chan_set_defaults +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x3252082b l2cap_chan_del +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x54485bad l2cap_chan_connect +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x6b3dccf0 l2cap_chan_send +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xb50c1b57 l2cap_add_psm +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xcf8e4c0c l2cap_chan_list +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xd99da8b9 l2cap_chan_create +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xddb075b1 l2cap_chan_put +EXPORT_SYMBOL_GPL net/bluetooth/hidp/hidp 0x7c273ef4 hidp_hid_driver +EXPORT_SYMBOL_GPL net/bridge/bridge 0x21d363b1 br_fdb_clear_offload +EXPORT_SYMBOL_GPL net/bridge/bridge 0x2747b6ec br_get_ageing_time +EXPORT_SYMBOL_GPL net/bridge/bridge 0x279213cb br_handle_frame_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0x344a727e br_multicast_has_querier_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x3b5c23f2 br_multicast_has_querier_anywhere +EXPORT_SYMBOL_GPL net/bridge/bridge 0x5a3541b9 br_fdb_find_port +EXPORT_SYMBOL_GPL net/bridge/bridge 0x64154515 br_multicast_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0x6700d998 br_forward_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0x6a0b8adc br_vlan_get_pvid_rcu +EXPORT_SYMBOL_GPL net/bridge/bridge 0x716c75e5 br_vlan_get_info +EXPORT_SYMBOL_GPL net/bridge/bridge 0x7ed57678 br_vlan_get_info_rcu +EXPORT_SYMBOL_GPL net/bridge/bridge 0x8312adcd br_multicast_router +EXPORT_SYMBOL_GPL net/bridge/bridge 0x888e8b87 br_forward +EXPORT_SYMBOL_GPL net/bridge/bridge 0x906a571d br_dev_queue_push_xmit +EXPORT_SYMBOL_GPL net/bridge/bridge 0xb2bdfc17 br_port_flag_is_set +EXPORT_SYMBOL_GPL net/bridge/bridge 0xb7878699 nf_br_ops +EXPORT_SYMBOL_GPL net/bridge/bridge 0xbca325f3 br_vlan_get_proto +EXPORT_SYMBOL_GPL net/bridge/bridge 0xccaaa2dc br_multicast_list_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0xce9b8a90 br_vlan_get_pvid +EXPORT_SYMBOL_GPL net/bridge/bridge 0xcf0836ca br_port_get_stp_state +EXPORT_SYMBOL_GPL net/bridge/bridge 0xd3b75b6a br_multicast_has_router_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0xdb42da1a br_vlan_enabled +EXPORT_SYMBOL_GPL net/core/failover 0x3b49b449 failover_unregister +EXPORT_SYMBOL_GPL net/core/failover 0xacce066a failover_slave_unregister +EXPORT_SYMBOL_GPL net/core/failover 0xf34d90d2 failover_register +EXPORT_SYMBOL_GPL net/dccp/dccp 0x03f11018 dccp_shutdown +EXPORT_SYMBOL_GPL net/dccp/dccp 0x03f9aae2 dccp_destroy_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x0719ad4e dccp_set_state +EXPORT_SYMBOL_GPL net/dccp/dccp 0x09803a05 dccp_reqsk_init +EXPORT_SYMBOL_GPL net/dccp/dccp 0x0f20a5e7 dccp_done +EXPORT_SYMBOL_GPL net/dccp/dccp 0x150d08bd dccp_sync_mss +EXPORT_SYMBOL_GPL net/dccp/dccp 0x177e0dcb dccp_poll EXPORT_SYMBOL_GPL net/dccp/dccp 0x182ec2bf dccp_ackvec_parsed_add -EXPORT_SYMBOL_GPL net/dccp/dccp 0x184cbf8e dccp_done -EXPORT_SYMBOL_GPL net/dccp/dccp 0x1ce9c203 dccp_make_response -EXPORT_SYMBOL_GPL net/dccp/dccp 0x22506138 dccp_disconnect -EXPORT_SYMBOL_GPL net/dccp/dccp 0x22a3f04c dccp_close -EXPORT_SYMBOL_GPL net/dccp/dccp 0x2563dbb6 dccp_getsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0x26780ed0 dccp_send_sync -EXPORT_SYMBOL_GPL net/dccp/dccp 0x27ecb001 dccp_send_ack -EXPORT_SYMBOL_GPL net/dccp/dccp 0x2c193230 dccp_ctl_make_reset -EXPORT_SYMBOL_GPL net/dccp/dccp 0x39844039 dccp_feat_nn_get -EXPORT_SYMBOL_GPL net/dccp/dccp 0x3ff5dfd3 dccp_rcv_state_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1ddba189 dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x23d6f9d3 inet_dccp_listen +EXPORT_SYMBOL_GPL net/dccp/dccp 0x2403c437 dccp_reqsk_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x2876efda dccp_ctl_make_reset +EXPORT_SYMBOL_GPL net/dccp/dccp 0x2a3c21eb dccp_rcv_established +EXPORT_SYMBOL_GPL net/dccp/dccp 0x2c715246 dccp_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x2ea46124 dccp_init_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x36ba4d09 dccp_make_response +EXPORT_SYMBOL_GPL net/dccp/dccp 0x3efd2cc6 dccp_send_sync EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4e175fe9 dccp_recvmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0x558f3eb5 dccp_disconnect EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics -EXPORT_SYMBOL_GPL net/dccp/dccp 0x5c38cea0 dccp_reqsk_send_ack -EXPORT_SYMBOL_GPL net/dccp/dccp 0x607c4655 dccp_shutdown -EXPORT_SYMBOL_GPL net/dccp/dccp 0x66aeb8d3 dccp_insert_option -EXPORT_SYMBOL_GPL net/dccp/dccp 0x6e66984b dccp_connect -EXPORT_SYMBOL_GPL net/dccp/dccp 0x717e4606 dccp_init_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x66b978b5 dccp_check_req +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7130e06a dccp_create_openreq_child EXPORT_SYMBOL_GPL net/dccp/dccp 0x722630de dccp_hashinfo +EXPORT_SYMBOL_GPL net/dccp/dccp 0x79400911 dccp_child_process EXPORT_SYMBOL_GPL net/dccp/dccp 0x80993155 dccp_timestamp +EXPORT_SYMBOL_GPL net/dccp/dccp 0x81c626a2 dccp_feat_nn_get EXPORT_SYMBOL_GPL net/dccp/dccp 0x86be7924 dccp_packet_name EXPORT_SYMBOL_GPL net/dccp/dccp 0x884a32bd dccp_death_row +EXPORT_SYMBOL_GPL net/dccp/dccp 0x8c24d8f8 dccp_close +EXPORT_SYMBOL_GPL net/dccp/dccp 0x932d86aa dccp_connect EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup -EXPORT_SYMBOL_GPL net/dccp/dccp 0x98e46bb1 dccp_destroy_sock -EXPORT_SYMBOL_GPL net/dccp/dccp 0x9cd71015 dccp_sync_mss -EXPORT_SYMBOL_GPL net/dccp/dccp 0xa28b711e dccp_reqsk_init -EXPORT_SYMBOL_GPL net/dccp/dccp 0xa804fd65 dccp_rcv_established -EXPORT_SYMBOL_GPL net/dccp/dccp 0xb6e6a8a6 dccp_parse_options -EXPORT_SYMBOL_GPL net/dccp/dccp 0xb79f3f84 dccp_setsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0xc2cce9be dccp_check_req -EXPORT_SYMBOL_GPL net/dccp/dccp 0xc55b04cc inet_dccp_listen -EXPORT_SYMBOL_GPL net/dccp/dccp 0xcd97fba3 dccp_child_process -EXPORT_SYMBOL_GPL net/dccp/dccp 0xd0f6c2ee dccp_ioctl +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9e0093ff dccp_feat_signal_nn_change +EXPORT_SYMBOL_GPL net/dccp/dccp 0xb59a93b6 dccp_recvmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0xb7dc2a42 dccp_rcv_state_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc409a9ca dccp_sendmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0xcba4ced2 dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd2602efb dccp_ioctl EXPORT_SYMBOL_GPL net/dccp/dccp 0xd75b7072 dccp_orphan_count -EXPORT_SYMBOL_GPL net/dccp/dccp 0xf05ca38f dccp_set_state -EXPORT_SYMBOL_GPL net/dccp/dccp 0xf3985479 dccp_sendmsg -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x22a70791 dccp_v4_request_recv_sock -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x31f349dc dccp_invalid_packet -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x4db8ce82 dccp_v4_do_rcv -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xaabd82c6 dccp_v4_connect -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xd197b8f8 dccp_v4_send_check -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xeea3fe2a dccp_v4_conn_request -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x09ae2cea dsa_register_switch -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x20d293a2 dsa_devlink_param_get -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x23e7c94b dsa_devlink_resource_occ_get_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x3030846c dsa_devlink_params_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x3ea43b3d dsa_tag_8021q_bridge_tx_fwd_offload +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe6d0c4fb dccp_parse_options +EXPORT_SYMBOL_GPL net/dccp/dccp 0xeac09ddc dccp_insert_option +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x24fd7177 dccp_v4_request_recv_sock +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x2edcc637 dccp_v4_conn_request +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x4ddb3879 dccp_v4_do_rcv +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x971f0db8 dccp_invalid_packet +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xa4d63c00 dccp_v4_connect +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xa6f9766a dccp_v4_send_check +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x00c2b881 dsa_switch_shutdown +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x077917b8 dsa_tag_8021q_bridge_tx_fwd_unoffload +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x0f0d631d dsa_enqueue_skb +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x0fc602cb dsa_tag_drivers_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x1834aaa4 dsa_tag_8021q_bridge_tx_fwd_offload +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x323b1207 dsa_port_phylink_mac_change +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x397ae61d dsa_devlink_resource_occ_get_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x3a1585d4 dsa_unregister_switch +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x401247a1 dsa_devlink_resource_occ_get_register EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x417d1fed dsa_8021q_rx_switch_id -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x41d51cd1 dsa_tag_drivers_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x4c068ef0 dsa_tag_8021q_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x52b54ecd dsa_8021q_rcv -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x58c3189d dsa_tag_8021q_bridge_tx_fwd_unoffload +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x49f6fe6f dsa_switch_suspend +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x55b0fba9 dsa_devlink_resources_unregister EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x5928bba7 vid_is_dsa_8021q_rxvlan -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x6a1c4c22 dsa_port_from_netdev -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x76e2090d dsa_8021q_xmit -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x7b40bbc6 dsa_devlink_port_region_create -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x831945fc dsa_devlink_resource_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x93e20d53 dsa_port_phylink_mac_change -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x942d39c8 dsa_dev_to_net_device -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x9b187eb6 dsa_devlink_param_set +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x6930f414 dsa_port_get_ethtool_phy_stats +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x69416338 dsa_port_from_netdev +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x69f31e0d dsa_devlink_params_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x755fb33b dsa_switch_resume +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x7b44ba6e dsa_devlink_resource_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x7f16c33b dsa_8021q_rx_vid +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x7f72ce2a dsa_8021q_rcv +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x820be0ab dsa_devlink_param_set +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x8952bf93 dsa_port_get_phy_sset_count +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x95726296 dsa_slave_dev_check EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x9e59271d dsa_8021q_rx_source_port -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xa25b165b dsa_devlink_params_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xa385c557 dsa_slave_dev_check -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xa8be4337 dsa_port_get_phy_strings -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xaecdce2e dsa_switch_resume -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xb86b711e dsa_tag_drivers_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xbd56931d dsa_port_get_ethtool_phy_stats +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xa22b8b5e dsa_tag_8021q_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xa76b2dc2 dsa_switch_find EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xbe3856fc dsa_8021q_bridge_tx_fwd_offload_vid EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc23e8d5f dsa_devlink_region_destroy -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc57e8ac6 dsa_8021q_rx_vid -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc634cf50 dsa_switch_shutdown -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc78075ad dsa_port_get_phy_sset_count -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc88d78fa dsa_devlink_region_create -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xca21ae3e dsa_switch_find -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xd14dfa74 dsa_switch_suspend -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xd72c19bf dsa_devlink_resources_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xe352c7fb dsa_8021q_tx_vid +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc2fdb45c dsa_devlink_param_get +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xd7aa6a04 dsa_port_get_phy_strings +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xd7ea95b3 dsa_8021q_xmit +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xdf87ccb5 dsa_devlink_port_region_create +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xe5e074af dsa_tag_8021q_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xe7aba518 dsa_8021q_tx_vid +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xebbbf0da dsa_devlink_region_create +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xebc25222 dsa_tag_drivers_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf127c2f7 dsa_dev_to_net_device EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf13e1803 vid_is_dsa_8021q -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf1707e20 dsa_devlink_resource_occ_get_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf3f48cb1 dsa_unregister_switch -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf5a139e6 dsa_enqueue_skb -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf5e5f610 dsa_tag_8021q_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf23e0007 dsa_devlink_params_unregister EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf6f3b5c8 vid_is_dsa_8021q_txvlan -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x3a10f74a ieee802154_hdr_peek -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x5a8caacf ieee802154_hdr_peek_addrs -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x5b0a9a32 ieee802154_hdr_push +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xfc592c2d dsa_register_switch +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x62f3eecd ieee802154_hdr_peek_addrs +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x807fd5be ieee802154_hdr_push EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x87e2553b ieee802154_max_payload -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xa1361907 ieee802154_hdr_pull -EXPORT_SYMBOL_GPL net/ife/ife 0x587816f1 ife_decode +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xaaf611f7 ieee802154_hdr_pull +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xc7f28b96 ieee802154_hdr_peek 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 0x905b0f34 ife_encode +EXPORT_SYMBOL_GPL net/ife/ife 0xb042da09 ife_decode EXPORT_SYMBOL_GPL net/ife/ife 0xe7888e98 ife_tlv_meta_encode -EXPORT_SYMBOL_GPL net/ipv4/esp4 0x001fa780 esp_output_tail -EXPORT_SYMBOL_GPL net/ipv4/esp4 0xe13bf046 esp_input_done2 -EXPORT_SYMBOL_GPL net/ipv4/esp4 0xecbb1c0f esp_output_head -EXPORT_SYMBOL_GPL net/ipv4/gre 0xa63969aa gre_add_protocol -EXPORT_SYMBOL_GPL net/ipv4/gre 0xe5204a13 gre_del_protocol -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x20421127 inet_sk_diag_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x35bb4ca9 inet_diag_dump_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x438a716f inet_diag_msg_common_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x5a7ecd24 inet_diag_unregister -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x5d5831db inet_diag_register -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x6fec44ad inet_diag_bc_sk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xa3f3a637 inet_diag_msg_attrs_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xd8c612ab inet_diag_dump_one_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xf4d65416 inet_diag_find_one_icsk -EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0x4cf2519d gretap_fb_dev_create -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x00f6a9fb ip_tunnel_uninit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x47e37bf9 ip_tunnel_newlink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x4f3bff43 ip_tunnel_encap_setup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x644a0566 ip_md_tunnel_xmit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x64731c05 ip_tunnel_init_net -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x8d8bed6e ip_tunnel_setup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x8fd051f4 ip_tunnel_changelink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x9c6521b5 __ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xa52c4967 ip_tunnel_init -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xa5e92096 ip_tunnel_rcv -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xa6a8027a ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xab3b9e84 ip_tunnel_ctl -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xbdc671d9 ip_tunnel_xmit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xbf6219b4 ip_tunnel_delete_nets -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xc5189ba1 ip_tunnel_dellink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xc6a5797a ip_tunnel_siocdevprivate -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xfd421e6e ip_tunnel_lookup -EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0xd7bce38e arpt_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0x50ecfd83 ipt_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0xabd3b6a5 nf_defrag_ipv4_disable -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0xd075a29e nf_defrag_ipv4_enable -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0x03cccf46 nf_dup_ipv4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x0b6fa3ac nf_reject_skb_v4_unreach -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x2a10b9ea nf_send_reset -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x44516b29 nf_reject_skb_v4_tcp_reset -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x4f2eec2c nf_reject_iphdr_put -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x87343f79 nf_reject_ip_tcphdr_get -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xe8236011 nf_reject_ip_tcphdr_put -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xeb3dbac7 nf_send_unreach -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_socket_ipv4 0xb915e668 nf_sk_lookup_slow_v4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x0a02c0c0 nf_tproxy_laddr4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x57a9ee57 nf_tproxy_get_sock_v4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x5ce9d437 nf_tproxy_handle_time_wait4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0x0228393d nft_fib4_eval -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0xea7f86a6 nft_fib4_eval_type -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x19c9812e tcp_vegas_init -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x4576148a tcp_vegas_cwnd_event -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x6bc23bd0 tcp_vegas_get_info -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x6eb0bd46 tcp_vegas_state -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xd2086760 tcp_vegas_pkts_acked -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x295ae153 udp_tunnel_xmit_skb -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x544aa01e udp_tunnel_notify_add_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x7cfb2ae9 udp_tunnel_push_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xd7469e30 udp_tunnel_sock_release -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xea68925c udp_tun_rx_dst -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xf605489b udp_tunnel_notify_del_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xfd8b8bf9 setup_udp_tunnel_sock -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xfea617eb udp_tunnel_drop_rx_port -EXPORT_SYMBOL_GPL net/ipv6/esp6 0x2ab2ac9d esp6_output_tail -EXPORT_SYMBOL_GPL net/ipv6/esp6 0x45efb4e1 esp6_output_head -EXPORT_SYMBOL_GPL net/ipv6/esp6 0x77848182 esp6_input_done2 -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x3d962c56 ip6_tnl_encap_setup -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xb4719d48 ip6_tnl_xmit_ctl -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xdc180e75 ip6_tnl_rcv_ctl -EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x4930f36f udp_tunnel6_xmit_skb -EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x9873a83a udp_sock_create6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0x763a6eba ip6t_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x131398c0 nf_defrag_ipv6_enable -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x195e9d84 nf_ct_frag6_gather -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xd792b578 nf_defrag_ipv6_disable -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0x8d5cbb41 nf_dup_ipv6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x00e2b39f nf_reject_ip6_tcphdr_get -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x455c3ec2 nf_reject_ip6_tcphdr_put -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x61310d34 nf_send_reset6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x70d510c9 nf_reject_skb_v6_tcp_reset -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x8493943c nf_reject_skb_v6_unreach -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xac643003 nf_reject_ip6hdr_put -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xd59849a8 nf_send_unreach6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_socket_ipv6 0x3e724701 nf_sk_lookup_slow_v6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x0e0f3de1 nf_tproxy_laddr6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x58164279 nf_tproxy_handle_time_wait6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0xec8882de nf_tproxy_get_sock_v6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0x9b11788e nft_fib6_eval_type -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0x9d2e2712 nft_fib6_eval -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x13b576b4 l2tp_session_dec_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x19dc35ac l2tp_session_get_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x210039b9 l2tp_tunnel_dec_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x2c8cf2de l2tp_tunnel_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x35daae4c l2tp_tunnel_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x387daab3 l2tp_tunnel_get -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x57b2ddce l2tp_session_get_by_ifname -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x59eb205e l2tp_tunnel_register -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x5a16603e l2tp_session_inc_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x5e98dcf9 l2tp_session_register -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x7747d61a l2tp_session_get -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x8834dff5 l2tp_tunnel_get_session -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x9373258d l2tp_session_set_header_len -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x987fedfb l2tp_session_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x9fe9255c l2tp_tunnel_get_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xca5cf0de l2tp_session_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd0db19a5 l2tp_udp_encap_recv -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xe6442a34 l2tp_tunnel_inc_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xea23c5bd l2tp_sk_to_tunnel -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xeb23c1f5 l2tp_recv_common -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xedcc794b l2tp_xmit_skb -EXPORT_SYMBOL_GPL net/l2tp/l2tp_ip 0x6c231a21 l2tp_ioctl +EXPORT_SYMBOL_GPL net/ife/ife 0xff82a514 ife_encode +EXPORT_SYMBOL_GPL net/ipv4/esp4 0x7393415c esp_input_done2 +EXPORT_SYMBOL_GPL net/ipv4/esp4 0x75b379fd esp_output_tail +EXPORT_SYMBOL_GPL net/ipv4/esp4 0xb7bd72f8 esp_output_head +EXPORT_SYMBOL_GPL net/ipv4/gre 0x22175b28 gre_add_protocol +EXPORT_SYMBOL_GPL net/ipv4/gre 0x9bd067c5 gre_del_protocol +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x009d9d0d inet_diag_dump_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x0bd59113 inet_diag_find_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x243ca082 inet_diag_register +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x5dadb06f inet_diag_msg_common_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x82040666 inet_diag_unregister +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x8da828a1 inet_sk_diag_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xad3fa5d7 inet_diag_msg_attrs_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xca7e26b1 inet_diag_bc_sk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xe5c113a8 inet_diag_dump_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0x12a65f1f gretap_fb_dev_create +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x06c96211 ip_tunnel_siocdevprivate +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x23ff3ea6 ip_tunnel_newlink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x243d6cc3 ip_tunnel_changelink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x259ca8ee ip_md_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x2a5be947 ip_tunnel_rcv +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x47c974e7 ip_tunnel_init_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x51742f27 ip_tunnel_delete_nets +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x57ae1b37 ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x6f4c2820 ip_tunnel_init +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x869d4014 ip_tunnel_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x93cfe614 ip_tunnel_ctl +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xa2767279 ip_tunnel_encap_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xb0822db8 ip_tunnel_dellink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xc0df0c18 ip_tunnel_lookup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xc7a3f6b2 ip_tunnel_uninit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xd187c3a0 ip_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xf2c3d0d2 __ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0x301ade67 arpt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0x6f16fb5b ipt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x45d6ad02 nf_defrag_ipv4_disable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x5ca799dd nf_defrag_ipv4_enable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0xbb5437b6 nf_dup_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x61f5cfea nf_reject_skb_v4_tcp_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x8356958c nf_reject_skb_v4_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xb90ef7f9 nf_reject_ip_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xbb18658e nf_reject_ip_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xc3c93baa nf_send_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xf5e87515 nf_reject_iphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xfdfceb74 nf_send_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_socket_ipv4 0x9829b9e5 nf_sk_lookup_slow_v4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x3283ce68 nf_tproxy_laddr4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x61569d64 nf_tproxy_get_sock_v4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x792fee9c nf_tproxy_handle_time_wait4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0x47dd059c nft_fib4_eval +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0x5e1ba4ad nft_fib4_eval_type +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x2f37e16f tcp_vegas_init +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x3b4b7ce9 tcp_vegas_state +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x607d9f94 tcp_vegas_pkts_acked +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x91eea102 tcp_vegas_cwnd_event +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xbf57ef16 tcp_vegas_get_info +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x5083631e udp_tunnel_notify_del_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x6856dba6 udp_tunnel_push_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x7a896e42 udp_tunnel_drop_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x938b9560 udp_tunnel_sock_release +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xbd600477 setup_udp_tunnel_sock +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xddc9c043 udp_tunnel_notify_add_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xe42c0411 udp_tun_rx_dst +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xf084a4c8 udp_tunnel_xmit_skb +EXPORT_SYMBOL_GPL net/ipv6/esp6 0xc5230d81 esp6_output_tail +EXPORT_SYMBOL_GPL net/ipv6/esp6 0xec650d88 esp6_output_head +EXPORT_SYMBOL_GPL net/ipv6/esp6 0xf1e93e27 esp6_input_done2 +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x2ce7db30 ip6_tnl_xmit_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x66ced1d8 ip6_tnl_rcv_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x7661e85c ip6_tnl_encap_setup +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x22e9a22f udp_tunnel6_xmit_skb +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0xa2fbdbfe udp_sock_create6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0x36e83803 ip6t_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x78c1c0e7 nf_defrag_ipv6_disable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xc8e3f84e nf_ct_frag6_gather +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xd07e941b nf_defrag_ipv6_enable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0x7b53daca nf_dup_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x2f616c90 nf_reject_ip6_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x431df648 nf_send_unreach6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x6abdf882 nf_reject_ip6hdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x7b252e67 nf_reject_skb_v6_tcp_reset +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xab0d0d3c nf_reject_skb_v6_unreach +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xc294e7d9 nf_send_reset6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xeb292f1a nf_reject_ip6_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_socket_ipv6 0x1f4e188c nf_sk_lookup_slow_v6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x259b3441 nf_tproxy_get_sock_v6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x86b512cb nf_tproxy_laddr6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0xb1b5a911 nf_tproxy_handle_time_wait6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0xcb24b22a nft_fib6_eval +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0xfcee0030 nft_fib6_eval_type +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x0a4ed902 l2tp_session_dec_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x1e0bd232 l2tp_tunnel_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x2f48691d l2tp_session_get_by_ifname +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x3ec4319b l2tp_sk_to_tunnel +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x4bf0e76a l2tp_session_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x4c7fd071 l2tp_udp_encap_recv +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x4ebb448c l2tp_session_set_header_len +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x51f72bb1 l2tp_session_inc_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x5e95b60f l2tp_session_register +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x620a74c6 l2tp_session_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x627e6111 l2tp_session_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x856a41ff l2tp_recv_common +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x930dfd08 l2tp_tunnel_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xa1fea6aa l2tp_xmit_skb +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xa3bde859 l2tp_tunnel_get_session +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb13a7fb6 l2tp_tunnel_register +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xe4c1cb62 l2tp_tunnel_inc_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xe8f19d8d l2tp_tunnel_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xeb0474dd l2tp_session_get +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf1f303c9 l2tp_tunnel_dec_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xfd1f8d8a l2tp_tunnel_get +EXPORT_SYMBOL_GPL net/l2tp/l2tp_ip 0xf3f0d749 l2tp_ioctl EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops -EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0xb52c7c1e l2tp_nl_register_ops -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x40e7a167 wdev_to_ieee80211_vif -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x4d1f13f6 ieee80211_request_smps +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0xa1070706 l2tp_nl_register_ops +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x119f5764 ieee80211_update_mu_groups +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x26dab5eb ieee80211_iter_chan_contexts_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x3b5d45d9 ieee80211_iterate_active_interfaces_mtx EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x5250cf98 ieee80211_tkip_add_iv -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x5760e435 ieee80211_resume_disconnect EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x59c13bed ieee80211_key_mic_failure -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x5fdb744c ieee80211_ready_on_channel -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x6b8a8ada ieee80211_iterate_interfaces -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x8a971aca ieee80211_vif_to_wdev +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x6ae87fe7 ieee80211_vif_to_wdev +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x70affbeb ieee80211_color_change_finish +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x713ccdfd ieee80211_iterate_active_interfaces_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x79cb595a ieee80211_calc_tx_airtime +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x89a55bd2 ieee80211_gtk_rekey_add +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x8d09a724 ieee80211_ave_rssi +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x9905cee3 ieee80211_request_smps +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x9ef24293 ieee80211_ready_on_channel EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xa1247034 ieee80211_remove_key +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xa36b630c ieeee80211_obss_color_collision_notify EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xa4b2b77e ieee80211_key_replay -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xa7b43a14 ieee80211_ave_rssi -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xaa8fe219 ieeee80211_obss_color_collision_notify -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xae863a9b ieee80211_color_change_finish -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xb416d544 ieee80211_gtk_rekey_add -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xb9009a8c ieee80211_calc_tx_airtime -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xb9a3378d ieee80211_iterate_active_interfaces_mtx -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xc668620a ieee80211_iter_chan_contexts_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xcd2ad1b1 ieee80211_update_mu_groups -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xcfe9127a ieee80211_find_sta_by_ifaddr -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd2ef597e ieee80211_gtk_rekey_notify +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xab1c038f ieee80211_gtk_rekey_notify +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xb923f128 ieee80211_resume_disconnect +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xc7028ab5 ieee80211_iterate_interfaces EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd8e09da4 ieee80211_set_key_rx_seq -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd9e9cecd ieee80211_remain_on_channel_expired -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xe525ea1f ieee80211_iterate_active_interfaces_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xe6db4c04 ieee80211_calc_rx_airtime -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf4b38f69 ieee80211_iterate_stations_atomic -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x3da3155a mpls_dev_mtu -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x5eb481fc nla_put_labels +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xdf8b3d76 ieee80211_iterate_stations_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xe97354cf ieee80211_find_sta_by_ifaddr +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xeaba16e9 ieee80211_calc_rx_airtime +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xec7f0110 ieee80211_remain_on_channel_expired +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xfcdcd44e wdev_to_ieee80211_vif +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x1d7fd817 mpls_stats_inc_outucastpkts +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x27d2cc36 mpls_pkt_too_big +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x2fcd3af9 mpls_dev_mtu EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x7670b536 nla_get_labels -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xb4c33c01 mpls_pkt_too_big -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xc25a3b3a mpls_stats_inc_outucastpkts -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xf9448e6a mpls_output_possible -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x0ffb8ccb ip_set_init_comment +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x9738466a mpls_output_possible +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xeea45078 nla_put_labels +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x0a467e72 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 0x3160f533 ip_set_get_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x26991747 ip_set_get_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x2b9876e4 ip_set_get_ip4_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x2fedf0aa ip_set_extensions EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x4364ad17 ip_set_put_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x4509c696 ip_set_name_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x465f3ab5 ip_set_get_ip4_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x4a9d2d05 ip_set_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x5c4d948b ip_set_nfnl_put -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x60f2afe8 ip_set_type_register +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x3f7c735f ip_set_type_unregister +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x62e8d522 ip_set_type_register +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6d6889d5 ip_set_get_byname EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7924b6de ip_set_hostmask_map -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7c7fb085 ip_set_elem_len -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7d7685f5 ip_set_type_unregister -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x81563220 ip_set_nfnl_get_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7cd0d1d4 ip_set_name_byindex EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x81fff2d1 ip_set_netmask_map -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x89cef67c ip_set_test +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x87b2d401 ip_set_put_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x8a29de1e ip_set_get_ip6_port EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9e98722b ip_set_get_ipaddr6 EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa293f8a6 ip_set_get_ipaddr4 -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa3756ff4 ip_set_match_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xcd24d974 ip_set_get_ip6_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xd404cbdf ip_set_put_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xdb9be68b ip_set_put_flags -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xe3a844cf ip_set_del -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xeaa099a7 ip_set_get_byname +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xb7cabf4a ip_set_put_flags +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xc0399cb2 ip_set_nfnl_get_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xc3bec2bc ip_set_init_comment +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xcb1fb162 ip_set_del +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xcc8b1b1f ip_set_add +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xd7b1d0b3 ip_set_test +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xd97c250b ip_set_put_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xd992120d ip_set_nfnl_put +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xdbac395f ip_set_elem_len EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf3b4d4ae ip_set_alloc -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf54813c1 ip_set_add -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x033cb8c7 ip_vs_conn_in_get_proto -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xa65692ea register_ip_vs_pe -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xcf976c77 ip_vs_conn_out_get_proto -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xef2e2aba unregister_ip_vs_pe -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x0eb5e983 nf_conncount_gc_list -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x1061b9d3 nf_conncount_add +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x028004b9 ip_vs_conn_out_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x6212abf3 unregister_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xc352e532 ip_vs_conn_in_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xd3a31f80 register_ip_vs_pe EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x3ff55ad3 nf_conncount_cache_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x8383de97 nf_conncount_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x45726a35 nf_conncount_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x7637414f nf_conncount_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x89c5a2c2 nf_conncount_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x89e2080b nf_conncount_count EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x8c4cb9c3 nf_conncount_list_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x92ef7e59 nf_conncount_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xd32cab0e nf_conncount_count -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x00c3e2ff nf_ct_tmpl_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x015e6563 nf_ct_remove_expectations -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0a3b8859 nf_ct_helper_expectfn_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0a76f161 nf_ct_extend_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xf775ae30 nf_conncount_gc_list +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x02c4e3ff nf_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x08458e3c nf_ct_l4proto_find EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0bc00f80 nf_nat_helper_try_module_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x15e17655 nf_connlabels_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x17165bbf nf_ct_expect_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1f8f0ee7 nf_nat_helper_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x20b0b68e nf_conntrack_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2759120e nf_ct_acct_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2761131f nf_ct_helper_expectfn_find_by_name +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x121d0697 nf_ct_port_tuple_to_nlattr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1316a6af nf_conntrack_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2712bdd9 nf_ct_expect_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2803b1eb nf_conntrack_count EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x289c3714 nf_ct_alloc_hashtable +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x28a9999d nf_ct_l4proto_log_invalid EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x28eff409 nf_conntrack_hash -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2b76eb27 nf_conntrack_hash_check_insert -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2dedd0f9 nf_ct_helper_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3082707c nf_ct_helper_expectfn_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3270b818 nf_ct_expect_iterate_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x35b4a4b9 nf_ct_gre_keymap_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x38172010 nf_ct_unlink_expect_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3cb4805b nf_ct_seq_offset -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3d0ab5db nf_ct_seqadj_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x439a081d nf_conntrack_register_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x455bc647 nf_ct_destroy_timeout -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x47016088 nf_ct_expect_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4d99e8b0 nf_conntrack_eventmask_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4dbbe0cb __nf_conntrack_confirm -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4e034823 nf_ct_iterate_cleanup_net -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x50a309d8 nf_conntrack_helpers_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x591c11ac nf_ct_helper_expectfn_find_by_symbol -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5cf2d19f nf_ct_unconfirmed_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5f0d1fb8 __nf_ct_expect_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6616106a nf_ct_bridge_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x67bc6b8b nf_conntrack_helper_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x68981659 nf_nat_helper_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x29f6c866 nf_conntrack_eventmask_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2b73999b nf_ct_timeout_put_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2bfdf238 nf_ct_extend_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2d491a89 nf_conntrack_hash_check_insert +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2e5587ca nf_ct_expect_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2ef8d9d1 nf_ct_seq_offset +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x34ddd206 nf_ct_seq_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x351872e9 nf_ct_acct_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3644ff5d nf_ct_untimeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x379c25c2 nf_ct_expect_iterate_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x39daa186 nf_ct_kill_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3a619a1f nf_conntrack_helper_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3c070a9d nf_conntrack_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3dbe4276 nf_connlabels_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3f42ab66 nf_ct_helper_log +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4e2fa60e nf_conntrack_helpers_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x54a78f4a nf_ct_helper_expectfn_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5b0d87e7 nf_conntrack_in +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5d613444 __nf_ct_expect_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5d8b1d45 nf_ct_netns_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5da1eeb8 nf_ct_delete +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6643e6ad nf_ct_set_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x667b9494 nf_ct_destroy_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x68c5211b nf_ct_helper_init EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x693c3961 nf_ct_helper_hash -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6d48259d nf_nat_helper_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6fb5dc40 nf_ct_unexpect_related -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x74762894 nf_ct_netns_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x75505c58 nf_ct_tcp_seqadj_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x76ff0eaa nf_ct_delete -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x77aaf365 nf_connlabels_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7a3d56f9 nf_ct_timeout_find_get_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7c558d94 __nf_ct_refresh_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x80b81031 nf_ct_helper_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x842500de nf_ct_timeout_put_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x86037a2d nf_ct_seq_adjust -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x86f36b53 nf_conntrack_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8bd1faed nf_conntrack_helper_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8c22838e nf_ct_tmpl_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6a0fafc0 nf_ct_helper_expectfn_find_by_name +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6a9b44a0 nf_ct_unlink_expect_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6fcbd609 nf_ct_tmpl_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6fd6fb3b nf_ct_expect_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7332e216 nf_ct_seqadj_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x789aab70 nf_ct_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x830f8885 nf_ct_expect_related_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8d75177b nf_conntrack_register_notifier EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ffe7e89 nf_conntrack_htable_size -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9a17929b nf_conntrack_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8fffc671 nf_ct_bridge_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x920fe324 nf_conntrack_tuple_taken +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x927fdb6d nf_ct_extend_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x94d58f83 nf_ct_get_id +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x95180113 nf_ct_remove_expectations +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x959e62bd nf_ct_iterate_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x95dee166 nf_conntrack_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9776cb6b nf_ct_tmpl_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x98ce55e2 nf_ct_remove_expect EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9adb7399 nf_conntrack_expect_lock -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9ea6b4a9 nf_ct_l4proto_log_invalid -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa0f69a3c __nf_conntrack_helper_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa40407bd nf_ct_expect_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa4efcf89 nf_ct_gre_keymap_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa5416107 nf_ct_port_tuple_to_nlattr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa924e0ce nf_conntrack_tuple_taken -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xac69e710 __nf_ct_try_assign_helper -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xad3759c4 nf_ct_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9d6b7ab5 nf_ct_helper_expectfn_find_by_symbol +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa6265d35 nf_ct_set_auto_assign_helper_warned +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xaa4a7161 nf_ct_gre_keymap_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xab35e6c2 __nf_conntrack_helper_find 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 0xb476a5cd nf_confirm -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb8327072 nf_ct_extend_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb9dc3557 nf_ct_remove_expect -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbc0a5842 nf_conntrack_count -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbdcfad7e nf_ct_untimeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb1f8e3d2 nf_ct_helper_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb459caed nf_ct_tcp_seqadj_set EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc18ac88d nf_ct_expect_hsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc3aa247b nf_ct_kill_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc26597b1 nf_l4proto_log_invalid +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc300bc08 nf_ct_unexpect_related EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc40f284c nf_ct_helper_hsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc5ceecc0 nf_connlabels_replace -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc622cb53 nf_conntrack_helpers_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc68a9535 nf_conntrack_alter_reply -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcb8c6b56 nf_conntrack_in -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcf5e421d nf_conntrack_helper_try_module_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd0681115 nf_ct_iterate_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd077e48c nf_conntrack_helper_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc4d4de4b nf_nat_helper_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc796721f nf_ct_helper_expectfn_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xca383480 nf_ct_gre_keymap_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd06c7f55 nf_conntrack_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd19be480 nf_connlabels_replace +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd44b9802 nf_ct_timeout_find_get_hook EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd505c3e0 nf_ct_port_nlattr_tuple_size -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd5804ec8 nf_ct_get_tuplepr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xda027016 nf_ct_helper_log +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd88fec4e nf_ct_bridge_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xda9ea1a5 nf_ct_iterate_cleanup_net +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdb0f6b25 nf_nat_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdb9a27de nf_conntrack_helper_unregister EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdba7326b nf_conntrack_lock -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdc082f8c nf_ct_get_id +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xddfefcf0 nf_ct_netns_get EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdf0aed48 nf_ct_port_nla_policy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xea03106d nf_ct_seqadj_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xeaa7e0aa nf_ct_deliver_cached_events -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xec187846 nf_ct_expect_iterate_net +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdf1b16d1 nf_ct_expect_iterate_net +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe4616afe nf_conntrack_alter_reply +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe54cc7a7 nf_ct_expect_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe981d57e nf_conntrack_helpers_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xeb607895 nf_connlabels_put EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xec8beba6 nf_ct_expect_hash -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf1f9923a nf_ct_expect_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf22f5ba4 nf_ct_bridge_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xed841df4 __nf_ct_try_assign_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xeedba331 nf_conntrack_helper_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xef9ff887 __nf_ct_refresh_acct EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf6f03465 nf_ct_netns_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfb184f59 nf_conntrack_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf435576d nf_nat_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf47aa5b3 nf_conntrack_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf7814e97 nf_ct_unconfirmed_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfad98f2f nf_ct_deliver_cached_events EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfe731af8 nf_ct_invert_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfeaaa765 nf_ct_set_timeout -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xff03c252 nf_ct_expect_related_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xffa0e20e nf_l4proto_log_invalid -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0xa1ce9e0a nf_nat_amanda_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0xcd3204b6 nf_conntrack_broadcast_help -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0xb70aaab9 nf_nat_ftp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x37be09fd nat_q931_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x89a5f652 set_sig_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xa8a8141f set_h225_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xae94f3b1 nat_h245_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xb35ed42f set_h245_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xb6722a69 get_h225_addr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xb8dff768 nat_rtp_rtcp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xd725eaf2 nat_callforwarding_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xdce48293 nat_t120_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xffc7bcd2 set_ras_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0xf384efdf nf_nat_irc_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x061613d8 nf_nat_pptp_hook_exp_gre -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x8c8e220d nf_nat_pptp_hook_inbound -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x915c5904 nf_nat_pptp_hook_expectfn -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xf9edb68f nf_nat_pptp_hook_outbound -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x00ebf698 ct_sip_parse_header_uri -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x04adde1a ct_sip_parse_request -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x138fe80f ct_sip_get_sdp_header -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x66457ca9 ct_sip_get_header -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xb30902c5 ct_sip_parse_numerical_param -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xbac77e7c nf_nat_sip_hooks -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xe2067935 ct_sip_parse_address_param -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0x7a56c353 nf_nat_snmp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0x1c9b0d1d nf_nat_tftp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x64c33461 nft_fwd_dup_netdev_offload -EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x94eb25b5 nf_fwd_netdev_egress -EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0xae0f95bb nf_dup_netdev_egress -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x03222af2 nf_flow_rule_route_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x130f21f7 nf_flow_table_init -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x1efe9f68 flow_offload_refresh -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x2c4c2ae3 nf_flow_table_cleanup -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x3488ba33 nf_flow_rule_route_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x42f002d0 nf_flow_table_free -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x4f27b74b flow_offload_route_init -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x5350c5e8 nf_flow_snat_port -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x68da9928 flow_offload_teardown -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x6c080517 flow_offload_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x79d32777 flow_offload_add -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xb72e0541 flow_offload_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xb747a538 nf_flow_offload_ipv6_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xbdafe67d nf_flow_offload_ip_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xf356b729 flow_offload_free -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xf699edab nf_flow_table_offload_setup -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xfaee0942 nf_flow_dnat_port -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x1bcbd252 nf_nat_ipv6_register_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x2166a0b6 nf_nat_inet_register_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x2bcd24f5 nf_nat_icmpv6_reply_translation -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x325c65fb nf_nat_packet -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x34ef5804 nf_nat_masquerade_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfe7c2b43 nf_ct_get_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfee7040d __nf_conntrack_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0x8b468188 nf_nat_amanda_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0xcb921f02 nf_conntrack_broadcast_help +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0x78b9e379 nf_nat_ftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x1dedbee0 nat_callforwarding_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x4565e33b set_h245_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x8055e02e nat_rtp_rtcp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x933afcf8 set_ras_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xb005a57a nat_h245_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xc734e1d0 nat_q931_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xd8a557cc set_sig_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xed229fae get_h225_addr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xfd921b6b set_h225_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xff31bb7c nat_t120_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0x9bef07f9 nf_nat_irc_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x77a7ab79 nf_nat_pptp_hook_outbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xb092ada5 nf_nat_pptp_hook_inbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xb912a260 nf_nat_pptp_hook_expectfn +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xdb05f3a2 nf_nat_pptp_hook_exp_gre +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x1c36e292 ct_sip_parse_header_uri +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x5e31bf81 ct_sip_get_sdp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x648aa2d0 ct_sip_parse_request +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x749b74bb ct_sip_parse_address_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x8310f83e ct_sip_get_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x91148a67 nf_nat_sip_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xa1a10337 ct_sip_parse_numerical_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0x21422087 nf_nat_snmp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0x756274d8 nf_nat_tftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x6933dd26 nf_fwd_netdev_egress +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x7d5c1f95 nft_fwd_dup_netdev_offload +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0xc0f974fe nf_dup_netdev_egress +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x079fe0d6 nf_flow_rule_route_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x5418da36 nf_flow_dnat_port +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x7bd6c98f nf_flow_rule_route_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x94efb17e nf_flow_table_free +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xa0d20076 nf_flow_snat_port +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xb04cafe4 flow_offload_add +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xb7209d37 flow_offload_free +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xb79933f0 nf_flow_table_offload_setup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xbf6e3d0d nf_flow_table_cleanup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xc41721a5 flow_offload_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xc4413c79 nf_flow_offload_ipv6_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xd1ce2cf3 nf_flow_offload_ip_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xd6e95b23 nf_flow_table_init +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xdc14dac9 flow_offload_teardown +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xdf1ee9de flow_offload_refresh +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xf9522b57 flow_offload_route_init +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xf9c059b4 flow_offload_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x0e8a0644 nf_nat_inet_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x147bd00c nf_nat_inet_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x1f9889d8 nf_nat_masquerade_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x36bb1efd nf_nat_ipv6_unregister_fn EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3bc17c49 nf_nat_masquerade_inet_register_notifiers -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x4717c943 nf_nat_ipv6_unregister_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x7c16f74e nf_nat_redirect_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x8a64e1aa nf_nat_ipv4_unregister_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x8f34faca nf_nat_inet_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x95cc9bfa nf_nat_icmp_reply_translation -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xbd8e5faf nf_nat_redirect_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xc30ed516 nf_nat_inet_unregister_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xc8d7a219 nf_ct_nat_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd29a9dac nf_nat_masquerade_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x70265399 nf_nat_ipv4_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x72ae8396 nf_nat_alloc_null_binding +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x760dcedc nf_nat_ipv4_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x7d36a215 nf_nat_redirect_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x83a2c33e nf_nat_icmpv6_reply_translation +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x97a753a1 nf_nat_masquerade_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xa0e0c99d nf_nat_icmp_reply_translation +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xa9fff393 nf_nat_redirect_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xabad1b67 nf_nat_inet_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xada3470a nf_nat_ipv6_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xb789d81e nf_ct_nat_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd43377da nf_nat_packet EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd9c25654 nf_nat_masquerade_inet_unregister_notifiers -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xe4754a34 nf_nat_ipv4_register_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xf1a7b5cd nf_nat_alloc_null_binding -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x02a7ed19 synproxy_parse_options -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x1bd11ef7 ipv6_synproxy_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x14dee582 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 0x85dcdfd4 synproxy_recv_client_ack -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x8e889082 synproxy_recv_client_ack_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xad5051a9 nf_synproxy_ipv4_init -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xb4bf448d nf_synproxy_ipv6_fini -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xbd5364aa ipv4_synproxy_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xc90727e5 nf_synproxy_ipv4_fini +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x2484d96d ipv6_synproxy_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x2f150ebd synproxy_recv_client_ack_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x48d00475 nf_synproxy_ipv4_fini +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x4920bbee synproxy_parse_options +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x4a884cf9 synproxy_send_client_synack_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x595b1f25 nf_synproxy_ipv6_init +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x64dba12e synproxy_send_client_synack +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x8f96f567 ipv4_synproxy_hook EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xca9fc082 synproxy_net_id -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xd0e832c1 nf_synproxy_ipv6_init -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xd5a52d6f synproxy_send_client_synack_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xe6c17657 synproxy_send_client_synack -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0026ec0c nft_meta_get_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xcc209486 nf_synproxy_ipv6_fini +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xddab8fd6 nf_synproxy_ipv4_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0266ee2a nft_set_catchall_gc +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x03e71819 nft_unregister_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x04c1b28b nft_unregister_expr EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x06c6ca47 nft_meta_policy -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1098d201 nf_tables_destroy_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x15cd3056 nft_set_elem_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x179e67f2 nft_flowtable_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x19e72e04 nft_unregister_chain_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2653f1e7 nft_set_catchall_gc -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2853b94c nft_request_module -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2c66e5aa nft_register_obj -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2cc85b81 nft_meta_set_dump -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3166a43b nft_parse_register_store +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0eb453c3 nft_unregister_flowtable_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x103603ed nft_meta_get_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x18b1947c nft_meta_set_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x204b891b nft_meta_set_validate EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3251d762 nf_tables_trans_destroy_flush_work +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3678cd5a nft_meta_set_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3fb6fef6 nft_chain_validate EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x41b71e65 nft_trace_enabled -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4cdc671b nft_set_lookup_global -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5671ed21 nft_meta_set_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7570f421 nft_chain_validate -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7c47b79b nft_data_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x43ad896f nft_register_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x639f8134 nf_tables_deactivate_flowtable +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x66b29554 nft_flowtable_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6bcb9dcb nft_meta_get_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6d177122 nft_obj_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x78328a76 nf_tables_bind_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7913333a nf_tables_destroy_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7bb56706 nft_register_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7e0b589e nft_set_lookup_global EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8b5ae838 nft_chain_validate_dependency -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8c1b8b3b __nft_release_basechain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9e24e77b nft_unregister_obj -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa0d3b29a nft_register_chain_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa560aa46 nft_data_dump -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa5aed8ed nft_meta_set_eval -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa66778f9 nft_obj_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb21cae52 nft_obj_notify +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa94abf34 nft_request_module EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb3bd62b8 nft_data_release -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb8375a82 nft_unregister_flowtable_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbc65f0ab nf_tables_deactivate_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc224d27e nft_register_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbfac7b76 nft_register_flowtable_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc0d0ad84 nft_meta_set_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc139d6cc __nft_release_basechain EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc23cd9bb nft_chain_validate_hooks -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc915ce36 nft_meta_get_init -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcec73573 nft_dump_register -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd13e3d47 nf_tables_deactivate_flowtable -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd56fa994 nft_register_flowtable_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xda9e14fd nf_tables_bind_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xdd593b4a nft_do_chain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc86b920d nft_parse_register_store +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd6c0c4bc nft_obj_notify +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xdc8b37d9 nft_data_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xdd79af31 nft_unregister_obj EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xde57b5f5 nft_parse_u32_check +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xdee29552 nft_do_chain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe01ca0a5 nf_tables_deactivate_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe049cc71 nft_meta_get_init EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe2b8cc13 nft_parse_register_load -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xeaf7193f nft_unregister_expr -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xeb0ccbb1 nft_meta_get_dump -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xed6a8338 nft_set_catchall_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xedc38d24 nft_meta_set_validate -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf7a55b01 nft_meta_set_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe6df5191 nft_dump_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe8f2036f nft_register_obj +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf1705978 nft_set_elem_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xfdc7c6e5 nft_data_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xffb13c1b nft_meta_set_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xfff604a0 nft_set_catchall_lookup +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x0ffc3920 nfnetlink_set_err EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x617438f5 nfnetlink_unicast -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x64876665 nfnetlink_subsys_unregister -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x95a1674b nfnetlink_send -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xbb4a7f69 nfnetlink_subsys_register -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xc5dbfbfc nfnetlink_set_err -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xd9c977a9 nfnetlink_broadcast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ea957af nfnetlink_has_listeners +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x71b920c9 nfnetlink_subsys_register +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x7bce8e00 nfnetlink_send +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x91498468 nfnetlink_unicast EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xf4c6b471 nfnetlink_has_listeners -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x5d57defb nfnl_acct_find_get +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xeb574d92 nfnetlink_subsys_unregister +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xfc1716c3 nfnetlink_broadcast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x30bed167 nfnl_acct_overquota +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x6ad10cdb nfnl_acct_find_get EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbecf5d14 nfnl_acct_put -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xe13b1266 nfnl_acct_overquota -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xfafa6678 nfnl_acct_update +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xd7c5c45a nfnl_acct_update +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x08e58874 nf_osf_find EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x35eff5e0 nf_osf_fingers -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0xc1488c62 nf_osf_find -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0xf528fcd8 nf_osf_match -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x42552bc8 nft_fib_store_result -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x4593c6b1 nft_fib_validate -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xb973b2df nft_fib_init -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xf7280755 nft_fib_dump +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x814b4ce6 nf_osf_match +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x11d0053b nft_fib_init +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x3adf2ce2 nft_fib_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x6df96b74 nft_fib_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xd0ecade2 nft_fib_store_result EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x1de558c1 nft_reject_icmpv6_code EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x6081751d nft_reject_policy -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xc75a21f8 nft_reject_init -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xdbec2184 nft_reject_validate -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xe15c5f45 nft_reject_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x75dfb1aa nft_reject_init +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xb595eb75 nft_reject_validate EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xe2c84666 nft_reject_icmp_code +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xe530e1c5 nft_reject_dump EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x04e27719 xt_compat_flush_offsets -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x1598f922 xt_request_find_target -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x249244ce xt_target_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x30a1bf4e xt_register_template -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x36767c11 xt_replace_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3c8b914b xt_proto_fini -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3f345fb0 xt_check_match -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x48220d83 xt_compat_match_from_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x4af880ae xt_compat_target_offset -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x58758b18 xt_unregister_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x6467ed89 xt_hook_ops_alloc -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x64e33f3a xt_request_find_match -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7166d92d xt_compat_match_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x750856a7 xt_compat_match_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x0b4eb5e4 xt_hook_ops_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x0c76babf xt_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x0d266550 xt_compat_match_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x14a53f06 xt_unregister_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x1d1309a4 xt_compat_target_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x30c71a77 xt_request_find_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x31b323f3 xt_request_find_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3371fd4e xt_check_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3a1b3551 xt_replace_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3c9208b3 xt_compat_match_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x57a1124b xt_check_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x62d15f0b xt_unregister_template +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7b45af38 xt_compat_target_offset EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7bce4603 xt_data_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7c596e8f xt_register_table 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 0x87ec9e40 xt_proto_init -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x99d20045 xt_compat_target_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9b21ffb2 xt_check_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x8b0eec22 xt_compat_target_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x8c530e8d xt_target_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x980abc6a xt_proto_init 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 0xaaca1162 xt_match_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xb692760f xt_proto_fini EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbfacb837 xt_percpu_counter_free -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbfdc0158 xt_table_unlock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc1276638 xt_request_find_table_lock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc14676e1 xt_unregister_template EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc7fae024 xt_compat_calc_jump -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc996b949 xt_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xcdd00943 xt_compat_match_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd08a2c3f xt_table_unlock 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 0xd9bb821b xt_copy_counters +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xdcc11418 xt_match_to_user EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xddf68fc6 xt_find_revision -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xf6cfb473 xt_compat_target_from_user -EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x0259b1c6 xt_rateest_put -EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0xf8555240 xt_rateest_lookup -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x5b330ff6 nci_spi_read -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x7fe2fe41 nci_spi_allocate_spi -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x8cbf9cf4 nci_spi_send -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x4dbf3d2e nci_uart_set_config -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x559307ed nci_uart_unregister -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x9627d7f7 nci_uart_register -EXPORT_SYMBOL_GPL net/nsh/nsh 0xba97220c nsh_push -EXPORT_SYMBOL_GPL net/nsh/nsh 0xca0ac912 nsh_pop -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x039d08ff ovs_vport_free -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x10fb1e71 ovs_vport_ops_unregister -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x46aa1cfa __ovs_vport_ops_register -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xb2bd67af ovs_vport_alloc -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xbf23c5bc ovs_netdev_link -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xf5b14e1e ovs_netdev_tunnel_destroy -EXPORT_SYMBOL_GPL net/psample/psample 0x2a54227a psample_sample_packet -EXPORT_SYMBOL_GPL net/psample/psample 0xaa3b520a psample_group_get -EXPORT_SYMBOL_GPL net/psample/psample 0xc4d8380f psample_group_take -EXPORT_SYMBOL_GPL net/psample/psample 0xf4292e2e psample_group_put +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xfa8d8fa0 xt_register_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xfe7a1d41 xt_request_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xffe724f5 xt_register_template +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x35320654 xt_rateest_lookup +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0xda11a9c6 xt_rateest_put +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x0b59d78e nci_spi_read +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x3dbc9da1 nci_spi_allocate_spi +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x8e52af4a nci_spi_send +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x20a3622b nci_uart_set_config +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xac9e8bca nci_uart_register +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xb4a50e3f nci_uart_unregister +EXPORT_SYMBOL_GPL net/nsh/nsh 0xba6245fc nsh_pop +EXPORT_SYMBOL_GPL net/nsh/nsh 0xca7a559d nsh_push +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x17b804fa ovs_netdev_tunnel_destroy +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x8caec3f7 ovs_vport_alloc +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x8ded7ed8 ovs_netdev_link +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x9d58d907 ovs_vport_free +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xa50b1b94 ovs_vport_ops_unregister +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xc44af0e3 __ovs_vport_ops_register +EXPORT_SYMBOL_GPL net/psample/psample 0x388f2020 psample_group_put +EXPORT_SYMBOL_GPL net/psample/psample 0x6f9283a9 psample_group_get +EXPORT_SYMBOL_GPL net/psample/psample 0x867bf6c9 psample_sample_packet +EXPORT_SYMBOL_GPL net/psample/psample 0xd3e1e082 psample_group_take EXPORT_SYMBOL_GPL net/qrtr/ns 0x8d25501f qrtr_ns_remove EXPORT_SYMBOL_GPL net/qrtr/ns 0xa47e91ba qrtr_ns_init -EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x314fae3d qrtr_endpoint_post -EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x946f2332 qrtr_endpoint_register -EXPORT_SYMBOL_GPL net/qrtr/qrtr 0xa4c17979 qrtr_endpoint_unregister +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x2a1baffc qrtr_endpoint_register +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0xbe49ed6d qrtr_endpoint_post +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0xe253b645 qrtr_endpoint_unregister EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq -EXPORT_SYMBOL_GPL net/rds/rds 0x12db0e99 rds_message_put -EXPORT_SYMBOL_GPL net/rds/rds 0x25fbf5a7 rds_trans_unregister -EXPORT_SYMBOL_GPL net/rds/rds 0x288d8f85 rds_inc_init +EXPORT_SYMBOL_GPL net/rds/rds 0x01a66694 rds_message_put +EXPORT_SYMBOL_GPL net/rds/rds 0x0e0114dc rds_send_xmit +EXPORT_SYMBOL_GPL net/rds/rds 0x1793d2d4 rds_conn_path_drop +EXPORT_SYMBOL_GPL net/rds/rds 0x21b7192f rds_send_path_drop_acked EXPORT_SYMBOL_GPL net/rds/rds 0x2b0d543c rds_message_add_extension -EXPORT_SYMBOL_GPL net/rds/rds 0x31ee7152 rds_connect_path_complete -EXPORT_SYMBOL_GPL net/rds/rds 0x3326f3bd rds_connect_complete EXPORT_SYMBOL_GPL net/rds/rds 0x36087aa4 rds_stats -EXPORT_SYMBOL_GPL net/rds/rds 0x42085373 rds_conn_destroy +EXPORT_SYMBOL_GPL net/rds/rds 0x36a215de rds_send_ping +EXPORT_SYMBOL_GPL net/rds/rds 0x39f875f4 rds_send_path_reset +EXPORT_SYMBOL_GPL net/rds/rds 0x43013e04 rds_message_addref EXPORT_SYMBOL_GPL net/rds/rds 0x45a4781e rds_addr_cmp -EXPORT_SYMBOL_GPL net/rds/rds 0x4907df6a rds_send_ping -EXPORT_SYMBOL_GPL net/rds/rds 0x4bda83e6 rds_conn_create_outgoing -EXPORT_SYMBOL_GPL net/rds/rds 0x51ca3dc3 rds_info_register_func -EXPORT_SYMBOL_GPL net/rds/rds 0x5445a04b rds_for_each_conn_info -EXPORT_SYMBOL_GPL net/rds/rds 0x544ff48a rds_inc_put +EXPORT_SYMBOL_GPL net/rds/rds 0x49b8b14d rds_conn_drop +EXPORT_SYMBOL_GPL net/rds/rds 0x4b9e7c12 rds_inc_init +EXPORT_SYMBOL_GPL net/rds/rds 0x4ee1c7fe 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 0x58baa453 rds_conn_destroy +EXPORT_SYMBOL_GPL net/rds/rds 0x5f76e9da rds_trans_unregister +EXPORT_SYMBOL_GPL net/rds/rds 0x6359a126 rds_conn_create_outgoing EXPORT_SYMBOL_GPL net/rds/rds 0x69e2f583 rds_cong_map_updated -EXPORT_SYMBOL_GPL net/rds/rds 0x6afe6b9e rds_info_deregister_func -EXPORT_SYMBOL_GPL net/rds/rds 0x741808cc rds_conn_path_drop +EXPORT_SYMBOL_GPL net/rds/rds 0x78597f70 rds_rdma_send_complete EXPORT_SYMBOL_GPL net/rds/rds 0x7b399e66 rds_page_remainder_alloc +EXPORT_SYMBOL_GPL net/rds/rds 0x7b52ce40 rds_recv_incoming +EXPORT_SYMBOL_GPL net/rds/rds 0x7f4e2c11 rds_connect_path_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x7f69a4c0 rds_atomic_send_complete EXPORT_SYMBOL_GPL net/rds/rds 0x85e4e520 rds_stats_info_copy -EXPORT_SYMBOL_GPL net/rds/rds 0x8829722d rds_message_addref -EXPORT_SYMBOL_GPL net/rds/rds 0x9401bc93 rds_rdma_send_complete -EXPORT_SYMBOL_GPL net/rds/rds 0x9db7c011 rds_send_xmit -EXPORT_SYMBOL_GPL net/rds/rds 0xad5927a7 rds_conn_drop -EXPORT_SYMBOL_GPL net/rds/rds 0xb6537c8d rds_send_path_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0x8e812113 rds_send_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0x9a9ee82f rds_inc_path_init +EXPORT_SYMBOL_GPL net/rds/rds 0xa7502255 rds_info_deregister_func +EXPORT_SYMBOL_GPL net/rds/rds 0xab87d761 rds_conn_create +EXPORT_SYMBOL_GPL net/rds/rds 0xb5a66d4e rds_conn_connect_if_down EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy -EXPORT_SYMBOL_GPL net/rds/rds 0xc53bd790 rds_message_unmapped -EXPORT_SYMBOL_GPL net/rds/rds 0xce44be1d rds_atomic_send_complete -EXPORT_SYMBOL_GPL net/rds/rds 0xdca6074a rds_send_path_reset -EXPORT_SYMBOL_GPL net/rds/rds 0xdd2117d1 rds_inc_path_init -EXPORT_SYMBOL_GPL net/rds/rds 0xe3edf551 rds_send_drop_acked -EXPORT_SYMBOL_GPL net/rds/rds 0xf54cda00 rds_conn_create -EXPORT_SYMBOL_GPL net/rds/rds 0xf62964d4 rds_conn_path_connect_if_down -EXPORT_SYMBOL_GPL net/rds/rds 0xf9acfe2b rds_conn_connect_if_down -EXPORT_SYMBOL_GPL net/rds/rds 0xfa16add2 rds_trans_register -EXPORT_SYMBOL_GPL net/rds/rds 0xffb8bc6e rds_recv_incoming -EXPORT_SYMBOL_GPL net/sched/sch_pie 0x3f29a39f pie_drop_early -EXPORT_SYMBOL_GPL net/sched/sch_pie 0x4a26724f pie_process_dequeue +EXPORT_SYMBOL_GPL net/rds/rds 0xd0986c59 rds_for_each_conn_info +EXPORT_SYMBOL_GPL net/rds/rds 0xee19a9bd rds_trans_register +EXPORT_SYMBOL_GPL net/rds/rds 0xf0dd8ac3 rds_message_unmapped +EXPORT_SYMBOL_GPL net/rds/rds 0xf184b2ef rds_inc_put +EXPORT_SYMBOL_GPL net/rds/rds 0xf94f7347 rds_connect_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xffe5f6e7 rds_info_register_func +EXPORT_SYMBOL_GPL net/sched/sch_pie 0x1b87402f pie_drop_early EXPORT_SYMBOL_GPL net/sched/sch_pie 0x6ce9b467 pie_calculate_probability +EXPORT_SYMBOL_GPL net/sched/sch_pie 0xd327d7af pie_process_dequeue EXPORT_SYMBOL_GPL net/sched/sch_taprio 0x5fc3c6ed taprio_offload_free EXPORT_SYMBOL_GPL net/sched/sch_taprio 0xa7f08102 taprio_offload_get -EXPORT_SYMBOL_GPL net/sctp/sctp 0x21f923bb sctp_transport_lookup_process -EXPORT_SYMBOL_GPL net/sctp/sctp 0x330c1815 sctp_transport_traverse_process -EXPORT_SYMBOL_GPL net/sctp/sctp 0x64175a3d sctp_get_sctp_info -EXPORT_SYMBOL_GPL net/sctp/sctp 0x7a3a110c sctp_for_each_endpoint -EXPORT_SYMBOL_GPL net/smc/smc 0x134f0f1c smc_hash_sk -EXPORT_SYMBOL_GPL net/smc/smc 0x22e49bb4 smcd_free_dev -EXPORT_SYMBOL_GPL net/smc/smc 0x37e1d798 smc_proto6 -EXPORT_SYMBOL_GPL net/smc/smc 0x5715c2b9 smc_unhash_sk -EXPORT_SYMBOL_GPL net/smc/smc 0x606def9d smcd_handle_event -EXPORT_SYMBOL_GPL net/smc/smc 0x70fb9148 smcd_handle_irq -EXPORT_SYMBOL_GPL net/smc/smc 0x758cd4c7 smcd_unregister_dev -EXPORT_SYMBOL_GPL net/smc/smc 0x8517d3fc smcd_alloc_dev -EXPORT_SYMBOL_GPL net/smc/smc 0xc252adbc smc_proto -EXPORT_SYMBOL_GPL net/smc/smc 0xd287fb35 smcd_register_dev -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x2169741b svcauth_gss_register_pseudoflavor +EXPORT_SYMBOL_GPL net/sctp/sctp 0x67e509e3 sctp_transport_lookup_process +EXPORT_SYMBOL_GPL net/sctp/sctp 0x8d0861b2 sctp_transport_traverse_process +EXPORT_SYMBOL_GPL net/sctp/sctp 0xacd44354 sctp_for_each_endpoint +EXPORT_SYMBOL_GPL net/sctp/sctp 0xfbb91628 sctp_get_sctp_info +EXPORT_SYMBOL_GPL net/smc/smc 0x195f7973 smcd_alloc_dev +EXPORT_SYMBOL_GPL net/smc/smc 0x36f2ca13 smcd_handle_event +EXPORT_SYMBOL_GPL net/smc/smc 0x3c9bad95 smcd_unregister_dev +EXPORT_SYMBOL_GPL net/smc/smc 0x5ca43eff smcd_free_dev +EXPORT_SYMBOL_GPL net/smc/smc 0x6f6c6b39 smc_proto +EXPORT_SYMBOL_GPL net/smc/smc 0x7a170553 smc_hash_sk +EXPORT_SYMBOL_GPL net/smc/smc 0xa0ee0460 smcd_register_dev +EXPORT_SYMBOL_GPL net/smc/smc 0xaa9e9ef1 smc_proto6 +EXPORT_SYMBOL_GPL net/smc/smc 0xe2b8439d smcd_handle_irq +EXPORT_SYMBOL_GPL net/smc/smc 0xeb9bb392 smc_unhash_sk EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x38d3dce5 g_make_token_header EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x482ac5a4 g_token_size -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x82ef7445 gss_mech_unregister -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xb846eb11 svcauth_gss_flavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xba94558d gss_mech_register +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xd16f2564 svcauth_gss_flavor EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xd7673035 g_verify_token_header -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xf2be77e5 gss_mech_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x000271a6 sunrpc_cache_lookup_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x01076c2d rpc_mkpipe_dentry -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x01372ca8 xprt_complete_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x019788b6 rpc_clnt_test_and_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x04065cca svc_unreg_xprt_class -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0446da47 rpc_count_iostats_metrics -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x056d71ec xdr_stream_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xf394aa84 svcauth_gss_register_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xfb37859e gss_mech_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0071ff36 rpc_prepare_reply_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x010ce400 cache_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x011ecb76 svc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x027973bf rpc_pton +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x02b81dde xdr_process_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05766b66 xprt_lock_connect EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05e807a9 xdr_encode_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05f570c1 svc_set_num_threads_sync EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x065994f1 xdr_encode_opaque_fixed -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x06f94a0c rpc_d_lookup_sb -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x07bb4ae6 rpc_call_sync -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x07f597cb sunrpc_init_cache_detail -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0813ace4 xdr_reserve_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x08580a56 svc_bind -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x08e3e16e rpc_alloc_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x08f320bb put_rpccred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x09616d89 xdr_align_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x09c334f1 rpc_destroy_pipe_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0a973dc7 svc_xprt_deferred_close -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0b844778 svc_rpcb_cleanup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0d4ecab7 svc_authenticate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0dd8a705 rpc_put_task_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0e8405f4 rpc_sleep_on_priority -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0e962438 rpc_bind_new_program -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0eb9769e svc_wake_up -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f4b3660 xprt_release_xprt_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x10d1ce45 rpc_shutdown_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x14880ae5 xprt_lookup_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x15b6546f xdr_commit_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x16ea10b0 xprt_disconnect_done -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x17d66791 rpcauth_lookupcred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1819d1eb sunrpc_cache_register_pipefs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1877e074 rpc_init_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1a801ed5 rpc_clnt_iterate_for_each_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1aebd54e sunrpc_cache_pipe_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1b6f9acd sunrpc_cache_unregister_pipefs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1b70a331 xdr_terminate_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1c4fa49d xdr_expand_hole -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1dcd4c82 _copy_from_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1dd8c077 xprt_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x06ec90ed rpc_clone_client_set_auth +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x08a47279 xdr_stream_decode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0aa64f4c rpc_clnt_swap_deactivate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x11fe6c78 svc_generic_init_request +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1270beed rpc_wake_up_queued_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x137a4d44 svc_prepare_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x16af7647 rpc_destroy_pipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x16bc691a rpc_call_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x16cfa2d8 rpc_call_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1a068353 xdr_buf_from_iov +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1acd85b4 rpc_release_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1b0cb816 svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1b3ac734 svc_encode_result_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1caaa93d rpc_set_connect_timeout EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e119a79 rpcauth_get_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e9b03b5 rpc_unlink EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f2a9970 rpc_ntop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f81de48 rpcauth_unwrap_resp_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x21092a49 cache_seq_start_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2271dfd6 rpcauth_stringify_acceptor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x22c27e7f xdr_stream_decode_opaque -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x22e9e94a rpc_find_or_alloc_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x23cfebb7 svc_xprt_copy_addrs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x23e21572 rpc_init_pipe_dir_head -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x266a375d rpc_sleep_on -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x281cf8f9 auth_domain_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2823e33f xprt_reconnect_backoff -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x28ce1e3b xprt_reserve_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f4734d7 sunrpc_cache_pipe_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1fbb0529 svc_drop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2118ebd2 svc_auth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x22f5827e xdr_decode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x23586aff svc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2365e7e2 xprt_reconnect_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x23fc49e9 xprt_reserve_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2830cbac xdr_stream_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x285b57c3 sunrpc_cache_unregister_pipefs EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x296895bc rpc_peeraddr2str -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x29d88c93 rpc_clnt_xprt_switch_has_addr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2a0d559f xdr_buf_trim -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2a120296 rpc_sleep_on_priority_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2b105b97 rpc_clnt_xprt_switch_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2bb5a807 svc_generic_init_request -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2d0f02b2 rpcauth_wrap_req_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2d80634b rpc_proc_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2dbe6d57 sunrpc_cache_unhash -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f0ffda4 xdr_buf_subsegment -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x312a878f svc_find_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2b2793c5 xprt_wake_up_backlog +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2bbf0e6a xprt_release_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f953cd7 xdr_inline_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f9ca756 rpc_peeraddr2str +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x30c8de17 xprt_adjust_cwnd EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3409679c rpc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31d9f90e xprt_complete_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x33352297 unix_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x343dc979 xprt_wait_for_buffer_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x348ebd3d rpc_d_lookup_sb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x34c6c429 svc_sock_update_bufs EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x34d184de rpc_wake_up_status -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x366dfa30 svc_age_temp_xprts_now -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x373a7314 write_bytes_to_xdr_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x37e36ac5 rpc_wake_up_first +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x359a72f1 svcauth_unix_set_client EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x388b3225 cache_seq_stop_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3ae0cefa svc_rqst_replace_page -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3b0d6fe8 xprt_setup_backchannel -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3b6a48d0 rpc_remove_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3cc8a8ba sunrpc_destroy_cache_detail -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3d93873e svc_prepare_thread -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3eee160a rpc_prepare_reply_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f54ccd9 svc_xprt_do_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3893fe76 xprt_unlock_connect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x393b5cc4 svc_reg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3b0f8312 svc_rqst_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3b1c8389 rpc_add_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3b51c8bc xdr_inline_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3b77a312 svc_shutdown_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3ca8d5bb rpcauth_unwrap_resp_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3e21bf8f rpc_clnt_iterate_for_each_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3ea28018 xdr_write_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f191148 sunrpc_cache_update EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f9a2b0b rpcauth_get_gssinfo -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f9c0852 svc_destroy -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x41872fef rpc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x41ee2c0c svc_fill_symlink_pathname +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3fb0d148 svc_rpcbind_set_version +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x42586ea9 xprt_unregister_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x432f6e94 sunrpc_init_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x44bc17bd svc_set_client EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x453efa54 svc_pool_map -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x46d2ff70 rpc_uaddr2sockaddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x48475bf7 svc_seq_show -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x489674de svc_sock_update_bufs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x490a1c58 rpc_add_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x45b20c3b rpcauth_stringify_acceptor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x45b9cb21 rpc_put_task_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x461b3c2b svc_xprt_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x47a5b048 xdr_read_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x48ded8a8 rpcauth_destroy_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4988985e xdr_terminate_string EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4afedab1 xprtiod_workqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4b3b11a7 rpc_bind_new_program +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4b563330 xdr_buf_trim +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4b873247 rpc_mkpipe_dentry EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4dac77f0 xdr_encode_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e54fbff xprt_unpin_rqst EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e8f6ca7 sunrpc_net_id -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x51fb6297 rpc_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4ea475a9 rpc_shutdown_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4ef66e11 xprt_force_disconnect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x50cd0d6a gssd_running +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x513faf86 rpc_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x530cc447 rpc_proc_register EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5366002d rpc_delay -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x54494e29 xdr_stream_decode_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x54d696e8 svc_reserve -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x54fb7b80 rpc_run_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5798865e xdr_write_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x57a46be7 xdr_stream_decode_opaque_dup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x595cc0eb xprt_lock_connect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x543d501b rpc_alloc_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5509a22c rpc_task_release_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x55db1fd4 xprt_add_backlog +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x561f2824 rpc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x57d240e2 svc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x57e58460 rpcauth_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5816911b xdr_page_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5901ebab xprt_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x59814491 __rpc_wait_for_completion_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a40ab00 xdr_encode_array2 EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a45ba31 svc_auth_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a89d39e rpc_pipe_generic_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5afbe2a5 __rpc_wait_for_completion_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5b4fcd93 svc_rqst_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5d1cac00 svc_rqst_alloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5d609607 cache_seq_next_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5f2278f4 rpc_restart_call_prepare -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5f6d835a xprt_pin_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6024ddad svc_encode_result_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x602d4f8f rpcauth_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x622055c5 rpcauth_init_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x643bf9a1 rpc_exit -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x661a6b5e svc_create_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66509991 svc_addsock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66e377ff rpc_clnt_xprt_switch_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66e9cd0a gssd_running +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5b6743d1 svc_fill_write_vector +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5b697b5d xprt_wait_for_reply_request_def +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5c77309a xprt_setup_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5cabced0 rpc_sleep_on_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5d7cc635 rpc_restart_call_prepare +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5da17fc3 svc_reserve +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5ffd86b8 xprt_disconnect_done +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x60cf7115 xdr_expand_hole +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x60f0798a xprt_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6161d483 xdr_align_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6317f9df svc_create_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x635a8062 svc_close_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x63e55074 svc_fill_symlink_pathname +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x64cebed1 cache_seq_next_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x65a0117d svc_xprt_copy_addrs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x65a8109b xdr_enter_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66246ab6 xdr_encode_word EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66ed2439 rpc_destroy_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x68895dae csum_partial_copy_to_xdr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x690a0b69 svc_close_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6a1b2b34 rpc_net_ns -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6a238c21 svc_recv -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6b666137 svc_xprt_init -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6bcc3f89 rpc_task_release_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6d301c0a rpc_call_start -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6d541ab3 rpcauth_lookup_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6f6d1b33 svc_drop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6fcd65ae rpc_clnt_setup_test_and_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x716ad63b svc_reg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x670a5e49 svc_authenticate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x67751cc7 rpc_exit +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x69130bec auth_domain_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6a828c8c xprt_unpin_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6d7742a4 rpc_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6e2e8649 rpc_clnt_swap_activate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6f19d828 xdr_stream_decode_string_dup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6f88ea70 xprt_destroy_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7041a238 rpcb_getport_async EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71bc40e3 rpc_wake_up -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71d45c9f auth_domain_find EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fa908a cache_flush -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x72d7fe60 rpc_put_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x739c67bb rpc_restart_call -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x743b769e svc_auth_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7596443f svcauth_unix_set_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x761a1df0 xprt_alloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x767a6f59 xprt_update_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x777cd3c8 bc_svc_process -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7a373b53 xprt_write_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7ab8bfac cache_check -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7c310732 rpc_set_connect_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7c9f4937 svc_create_pooled -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7d4f1372 rpcauth_destroy_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7d8e2ae4 xprt_wake_pending_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x727a51e5 cache_seq_start_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7345b0c7 xdr_init_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x751c798b sunrpc_cache_lookup_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x76b85c87 svc_unreg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x77bec0a3 rpc_pipe_generic_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x77d5d2ba xprt_free_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7841fb33 svc_destroy +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x78f4e820 rpc_sleep_on_priority +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x791afd28 rpc_uaddr2sockaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7b36f013 write_bytes_to_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7b85d990 xdr_buf_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7c7f8702 svc_rqst_replace_page EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7eabf569 xdr_encode_array2 -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fc145db xdr_init_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x81d660d7 rpcauth_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x82f2c07e svc_process -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x83be547c svc_xprt_enqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x840e29a5 xdr_reserve_space_vec -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x84aa8f62 xdr_inline_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x86cade68 sunrpc_cache_update -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x86f500a4 svc_shutdown_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8715ca36 svc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x88cc2597 xdr_decode_array2 -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8a8e003a xprt_request_get_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8d1d0f5b rpc_clnt_swap_activate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8ec6317e svc_set_num_threads -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8efa10c0 xprt_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x96025d14 rpc_call_null -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x961491c2 svc_xprt_received +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7e8d9eab xprt_wait_for_reply_request_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7ede1200 svc_addsock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7eea719c xprt_write_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x817cb32f svc_rpcb_cleanup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x85c96a32 xdr_stream_decode_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8870e062 svc_print_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8922670e auth_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8bbb5788 rpc_task_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8c478312 sunrpc_cache_pipe_upcall_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8cc28210 rpc_clnt_xprt_switch_has_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8efa94a6 rpc_clnt_setup_test_and_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9009ef5e xdr_commit_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x92b350cc svc_exit_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x92d16d43 svc_xprt_do_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x938ff7cf rpc_create EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9670b5a1 rpc_free_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98661d1f cache_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x969edcc8 svc_xprt_deferred_close +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x976caa71 cache_create_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x97792eb4 rpc_init_pipe_dir_head +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x97b17d1c rpc_clnt_xprt_switch_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x97b3cdd3 svc_xprt_names +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98003bb7 rpc_remove_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9931aa0b rpc_count_iostats EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x99aee353 rpc_init_priority_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x99f804ec rpc_peeraddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9bdc3786 xprt_release_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9df25c79 svc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9a73f22f svc_set_num_threads +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9c6b65b3 svc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9c9dfaa1 xprt_register_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9cd5acb8 rpc_num_bc_slots +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9df72908 svc_bind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9e4afd30 xprt_release_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9fc0a533 rpc_force_rebind EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa13acdb8 svc_pool_map_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa204fe39 rpc_task_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa363b5a3 svc_xprt_names -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa3f5dce2 xdr_shift_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa7b18af4 xprt_wait_for_buffer_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa8b28c65 unix_domain_find -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa8c33e50 xprt_reconnect_delay -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa8d75c15 xdr_stream_pos -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa98cd60a xprt_destroy_backchannel -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaaaaa945 xprt_register_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xabbd8797 svc_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xad0a09ca rpc_release_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xad437bc6 xprt_wait_for_reply_request_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xadebee16 svc_alien_sock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xae245ba1 rpc_clnt_show_stats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaeadfece xdr_buf_from_iov -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf54bddd xprt_force_disconnect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa2c4c487 rpc_clnt_test_and_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa344a49a rpc_malloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa45d1911 cache_seq_stop_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa47d5ece put_rpccred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa58189d9 rpc_queue_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa61c6dc3 rpc_call_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa7e2aaed xdr_init_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa7ef8240 cache_unregister_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa9a5ef93 rpc_init_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xab2dd48c svc_seq_show +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xab3fb52e xprt_reserve_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xac11956a svc_set_num_threads_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xac5c38d2 xdr_reserve_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xad2407d5 rpc_wake_up_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xae7210ec xprt_reconnect_backoff +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaeb6186e sunrpc_cache_register_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaed26583 rpc_clnt_show_stats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf1f7310 svc_rpcb_setup EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb21bb410 xprt_unregister_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf9ab52f xprt_release_rqst_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb064cd67 rpc_sleep_on_priority_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb0f704c1 rpc_clnt_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb13e6856 sunrpc_cache_unhash +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb1ebc93f xprt_free EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb312d0c4 svc_pool_map_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb3a1bf69 rpc_wake_up_next -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb45f9ca1 xprt_add_backlog +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb39aa514 rpc_restart_call +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb3eb57d9 cache_register_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb436192c rpc_clnt_xprt_switch_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb48332a4 svc_create_pooled +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb4f31f3d _copy_from_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb4fad926 xprt_wake_pending_tasks EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb5ccb45f xprt_release_rqst_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb5dd6a40 rpc_malloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb5fb206e xprt_wait_for_reply_request_def -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb62d2a31 xprt_wake_up_backlog -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb75eab46 rpc_killall_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbaba0535 xdr_stream_decode_string_dup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbc05be07 rpc_clone_client_set_auth -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbc511127 rpc_queue_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbc7afd47 svcauth_unix_purge -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbd63e616 rpc_put_sb_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbe754a68 xprt_alloc_slot -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbef8257f rpc_setbufsize +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb5a1d240 xdr_init_decode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb7782475 xdr_stream_decode_opaque_dup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb9a105d2 rpc_find_or_alloc_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xba6e1ea9 read_bytes_from_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbb4dc7ac xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbb552da8 xprt_update_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbc30f4c2 rpc_wake_up_first +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbd6df04c rpcauth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbe63d2f5 rpcauth_lookup_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf48fa47 cache_destroy_net EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc05876af xprt_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc0786a3f rpc_create EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12435e3 rpc_calc_rto -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc1d1eef1 xdr_init_decode_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc281884c svc_rpcbind_set_version -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc2b0cf00 xdr_process_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc2ccf87e xdr_inline_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc4ffd040 rpc_unlink -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8748ec6 rpc_count_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc5f4f54a svc_age_temp_xprts_now +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc6d3e91f bc_svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8d94fca rpc_localaddr EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc905e5ef svc_generic_rpcbind_set -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xca99ec09 svc_rpcb_setup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xccfe31f6 svc_fill_write_vector -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcd1d0e99 xdr_page_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc9753019 svc_xprt_received +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc9816ecf rpc_setbufsize +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcc126775 rpc_get_sb_net EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce678a59 xdr_decode_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcf80d69a auth_domain_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd064580d rpcauth_wrap_req_encode EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd10d1d5b rpc_machine_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd12cbc63 rpc_clone_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd1845a22 rpc_localaddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd1fc253c rpc_num_bc_slots -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd3520926 xdr_init_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd44dd5ed sunrpc_cache_pipe_upcall_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd8030533 xdr_enter_page -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xda63361e xprt_adjust_cwnd -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdb1899e1 svc_proc_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd3db6dd rpcauth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd441fa9c xprt_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd45af0e2 svc_alien_sock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd4a558d8 svc_generic_rpcbind_set +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd6b89bd2 cache_check +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd7c20f15 xdr_reserve_space_vec +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd9320589 xdr_decode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xda8b308c svc_recv +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdb871959 rpcauth_lookupcred EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd691402 xprt_find_transport_ident -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xde27ce68 rpcauth_init_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe048e869 xdr_decode_word -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe161fdaa rpc_switch_client_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1625334 rpcb_getport_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1f0acf5 xdr_encode_word -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe358190f svc_xprt_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe3a4ba56 rpc_sleep_on_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe48b5f31 read_bytes_from_xdr_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5774f30 xprt_unlock_connect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd80a3d6 csum_partial_copy_to_xdr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xde0eac17 rpcauth_init_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdec1507b xprt_lookup_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe3189db7 rpc_max_bc_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe4d34bfa xdr_stream_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe51d4a6c rpc_clone_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe522595f auth_domain_put EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5be38e8 xdr_read_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe6299b53 rpc_call_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe7f7719b cache_register_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe91b2023 rpc_force_rebind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe7575e60 rpc_put_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe88a2bd8 xdr_shift_buf EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe9e01e32 rpc_wake_up_queued_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xea6c9014 xprt_reserve_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xec3eaf2e svcauth_unix_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xec66ff5d rpc_call_null +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xec7f45b7 rpc_switch_client_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeced3c84 svc_rqst_alloc EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedcf6be4 qword_add -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeddd2c12 xprt_free_slot EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeeacab69 rpc_update_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf00a76d4 svc_set_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf0af96bc rpc_clnt_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeec6e880 rpc_count_iostats_metrics +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xefa34768 svc_xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xefa812fb rpc_peeraddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf082a198 rpc_sleep_on EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf0b7775d rpc_init_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf3a7c9db rpc_mkpipe_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf4d2759a svc_print_addr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf4d71386 cache_create_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf55629e3 rpc_get_sb_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf71df75e rpc_clnt_swap_deactivate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf735d63b rpc_pton -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf8678197 svc_exit_thread -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf929b8ba cache_destroy_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfa6b10a1 rpc_max_bc_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfd9fb2ee cache_unregister_net -EXPORT_SYMBOL_GPL net/tls/tls 0x07b43aa5 tls_offload_tx_resync_request -EXPORT_SYMBOL_GPL net/tls/tls 0xa2af1c1b tls_device_sk_destruct -EXPORT_SYMBOL_GPL net/tls/tls 0xa9c9bf0e tls_encrypt_skb -EXPORT_SYMBOL_GPL net/tls/tls 0xbefb070f tls_validate_xmit_skb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf1408640 rpcauth_init_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf229f1a2 svc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf2f31d58 svc_xprt_init +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf302f857 rpc_run_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf5824dff rpc_mkpipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf840566e rpc_net_ns +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfc491cfd rpc_killall_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfd12d0cf svc_find_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfd2e995d rpc_put_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfe39b5ee rpcauth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xff61df74 rpc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xff95aa19 xprt_request_get_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfffc927d sunrpc_destroy_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xffff2a05 xprt_pin_rqst +EXPORT_SYMBOL_GPL net/tls/tls 0x0269ab4b tls_encrypt_skb +EXPORT_SYMBOL_GPL net/tls/tls 0x56b5aca1 tls_offload_tx_resync_request +EXPORT_SYMBOL_GPL net/tls/tls 0xa5e24e41 tls_validate_xmit_skb +EXPORT_SYMBOL_GPL net/tls/tls 0xb4d2562c tls_device_sk_destruct +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x03007e1b virtio_transport_stream_dequeue 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 0x2418b972 virtio_transport_get_credit -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x24b79d4c virtio_transport_stream_rcvhiwat -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x254cbeee virtio_transport_dgram_bind -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x37b0cf2a virtio_transport_notify_poll_out -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x3b878118 virtio_transport_dgram_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x437d5c2d virtio_transport_notify_recv_pre_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x4d50fb32 virtio_transport_do_socket_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x4dd16691 virtio_transport_seqpacket_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x52d6674e virtio_transport_stream_has_data -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x5c81cabb virtio_transport_notify_send_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x5ff76781 virtio_transport_stream_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x61fb5861 virtio_transport_recv_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x69b98aab virtio_transport_destruct -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x6c7a9fff virtio_transport_seqpacket_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7673a868 virtio_transport_notify_send_pre_block -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7a1edd9d virtio_transport_notify_poll_in -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7a4cda2f virtio_transport_stream_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x883744bf virtio_transport_notify_recv_post_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x8b1b6a4a virtio_transport_put_credit -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa4692031 virtio_transport_release -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xabbdd320 virtio_transport_shutdown -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb0e80e91 virtio_transport_seqpacket_has_data -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb5e0dfba virtio_transport_inc_tx_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x05d68dae virtio_transport_notify_send_post_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x07716359 virtio_transport_seqpacket_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x0e645ae0 virtio_transport_notify_send_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x152877ef virtio_transport_notify_poll_out +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x16cd0a50 virtio_transport_shutdown +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x26b5e21e virtio_transport_get_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x279ecfca virtio_transport_dgram_bind +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2c42e6d6 virtio_transport_seqpacket_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2eecd2a9 virtio_transport_notify_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x34dc0d54 virtio_transport_free_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x34f43a7f virtio_transport_do_socket_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x47caa1d4 virtio_transport_stream_is_active +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x482d302c virtio_transport_notify_recv_pre_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x4fe93f7c virtio_transport_stream_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x5e625dcb virtio_transport_put_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x5ea55836 virtio_transport_release +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x6196a166 virtio_transport_notify_recv_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x70807f91 virtio_transport_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x869aa1ce virtio_transport_notify_recv_post_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x8810e619 virtio_transport_notify_poll_in +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x8f91fcf1 virtio_transport_dgram_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x95078785 virtio_transport_deliver_tap_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa7d39ff2 virtio_transport_seqpacket_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xacd04e3f virtio_transport_notify_send_pre_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb15fcf3c virtio_transport_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb1fba41e virtio_transport_stream_rcvhiwat +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xba0e63fb virtio_transport_connect 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 0xbb03d20d virtio_transport_dgram_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xbb7595e8 virtio_transport_connect -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xbccb48c2 virtio_transport_stream_is_active -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xc11ac578 virtio_transport_notify_send_pre_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd565afd4 virtio_transport_deliver_tap_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xed804915 virtio_transport_notify_buffer_size -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xeff54b75 virtio_transport_stream_has_space -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf55c2b55 virtio_transport_free_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xfb372bb1 virtio_transport_notify_recv_pre_block -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xfd152887 virtio_transport_notify_recv_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xfed10209 virtio_transport_notify_send_post_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x087d5e64 vsock_add_tap -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0e3486bf vsock_remove_sock +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xbf78a200 virtio_transport_recv_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xc3d81295 virtio_transport_destruct +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xcb28fb5a virtio_transport_dgram_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xce1ea7c0 virtio_transport_inc_tx_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd7da0348 virtio_transport_notify_recv_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xff44f089 virtio_transport_notify_send_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0661a6ba vsock_add_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0d10c1ae vsock_remove_sock EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0e9bc9b6 vsock_addr_unbind +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0fe944bc vsock_find_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x23b4139c vsock_remove_pending EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x284e07d8 vsock_bind_table -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x3807c56e vsock_remove_bound -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x39548cde vsock_enqueue_accept +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x328cf341 vsock_insert_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x35a320d2 vsock_stream_has_space EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x3d4b0fca vsock_addr_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x40257d2e vsock_for_each_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x43c5ea45 vsock_stream_has_data EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4b99648c vsock_addr_bound -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x5484bd42 vsock_core_register -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x54c1b59f vsock_core_unregister -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x5646a39d vsock_remove_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4e84f0fb vsock_deliver_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x52861da9 vsock_for_each_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x589584c8 vsock_core_unregister +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x64139931 vsock_create_connected EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x77c14317 vsock_addr_cast -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x84cde5eb vsock_find_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x8cf3d153 vsock_remove_connected EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x90aa8549 vsock_find_cid -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9252653b vsock_find_bound_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x918e3c74 vsock_remove_tap EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9bb6fd09 vsock_connected_table -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9f70ee76 vsock_core_get_transport +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xa67ec160 vsock_assign_transport +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xa8741c9e vsock_core_get_transport EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xaf2674b5 vsock_addr_equals_addr -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xb38c147a vsock_stream_has_space -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbaf57d5f vsock_create_connected -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbc57b4e7 vsock_remove_tap -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbc96771d vsock_insert_connected EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc92f7f50 vsock_table_lock -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xcd1a8ff0 vsock_deliver_tap -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xcfe0b90a vsock_remove_connected -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd7b13032 vsock_add_pending -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xdd92a549 vsock_assign_transport -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xe702b644 vsock_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd5ee0c41 vsock_remove_bound EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xec96eadf vsock_addr_validate -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x02e41716 cfg80211_wext_siwrts -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x04c695fc cfg80211_vendor_cmd_get_sender -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x0aa4b9e4 cfg80211_shutdown_all_interfaces -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x3719c114 cfg80211_wext_siwmode -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x3d684b9b cfg80211_wext_giwscan -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x624485ff cfg80211_wext_siwscan -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x671a754b cfg80211_pmsr_complete -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x7c478015 cfg80211_wext_giwrange -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x7ea8eca9 cfg80211_wext_giwrts -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x8354a288 cfg80211_wext_siwfrag -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xb7f8b9d5 cfg80211_wext_giwretry -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xb88e6475 cfg80211_pmsr_report -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xd8f6406e cfg80211_wext_giwfrag -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xed4e9b19 cfg80211_wext_giwname -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xf6c23df1 cfg80211_wext_giwmode -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xfd0ba8ff cfg80211_vendor_cmd_reply +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xee4e5688 vsock_find_bound_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf00a0f1a vsock_enqueue_accept +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf625f965 vsock_core_register +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xfa831f0e vsock_add_tap +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x024ba619 cfg80211_wext_giwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x3470757e cfg80211_wext_siwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x4feb4d89 cfg80211_shutdown_all_interfaces +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x81701b4a cfg80211_wext_siwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x9da27e19 cfg80211_wext_siwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xb1913b23 cfg80211_pmsr_complete +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xb6dfbe88 cfg80211_vendor_cmd_reply +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xb7612deb cfg80211_pmsr_report +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xb80cdabb cfg80211_wext_siwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xb9e98ae0 cfg80211_wext_giwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xbae0f675 cfg80211_wext_giwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xc19bea2d cfg80211_wext_giwname +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xcae45e9d cfg80211_vendor_cmd_get_sender +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xd57aae9c cfg80211_wext_giwrange +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xf01eed65 cfg80211_wext_giwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xf7c3ec7d cfg80211_wext_giwretry EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x0049ca83 xfrm_aead_get_byname EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x00c80741 xfrm_ealg_get_byid EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x0a575945 xfrm_count_pfkey_auth_supported @@ -18600,565 +18684,609 @@ 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 0x42f8f2e4 ipcomp_init_state -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x6fda2b68 ipcomp_input -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x9dc3a271 ipcomp_output -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xab9fd2ac ipcomp_destroy +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x64181390 ipcomp_destroy +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x8a8d3a17 ipcomp_output +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xaf53f44d ipcomp_init_state +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xec7bd414 ipcomp_input EXPORT_SYMBOL_GPL net/xfrm/xfrm_user 0x4a0c7516 xfrm_msg_min EXPORT_SYMBOL_GPL net/xfrm/xfrm_user 0xe2521b1c xfrma_policy -EXPORT_SYMBOL_GPL sound/ac97_bus 0xce49ccb1 snd_ac97_reset +EXPORT_SYMBOL_GPL sound/ac97_bus 0xd6f436ba 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 0x15d51018 snd_ctl_get_preferred_subdevice -EXPORT_SYMBOL_GPL sound/core/snd 0x200db335 snd_card_ref -EXPORT_SYMBOL_GPL sound/core/snd 0x27f1355f snd_ctl_apply_vmaster_followers -EXPORT_SYMBOL_GPL sound/core/snd 0x2ac67b5f snd_power_ref_and_wait -EXPORT_SYMBOL_GPL sound/core/snd 0x2ea83a47 snd_ctl_sync_vmaster -EXPORT_SYMBOL_GPL sound/core/snd 0x557b6fb9 snd_card_disconnect_sync -EXPORT_SYMBOL_GPL sound/core/snd 0x5e6ed003 snd_card_rw_proc_new -EXPORT_SYMBOL_GPL sound/core/snd 0x668ae2dc snd_ctl_register_layer -EXPORT_SYMBOL_GPL sound/core/snd 0x6a7e6d57 snd_ctl_add_vmaster_hook -EXPORT_SYMBOL_GPL sound/core/snd 0x84e2b67c snd_card_add_dev_attr -EXPORT_SYMBOL_GPL sound/core/snd 0x98390381 snd_devm_card_new -EXPORT_SYMBOL_GPL sound/core/snd 0xb2fabad9 snd_device_get_state -EXPORT_SYMBOL_GPL sound/core/snd 0xc85380b4 snd_device_initialize -EXPORT_SYMBOL_GPL sound/core/snd 0xd1f69f90 snd_ctl_disconnect_layer -EXPORT_SYMBOL_GPL sound/core/snd 0xd4d279ae snd_ctl_activate_id -EXPORT_SYMBOL_GPL sound/core/snd 0xebc38a88 snd_device_disconnect +EXPORT_SYMBOL_GPL sound/core/snd 0x02191ba2 snd_ctl_apply_vmaster_followers +EXPORT_SYMBOL_GPL sound/core/snd 0x06af9389 snd_card_disconnect_sync +EXPORT_SYMBOL_GPL sound/core/snd 0x18909b17 snd_devm_card_new +EXPORT_SYMBOL_GPL sound/core/snd 0x20bd0dca snd_card_add_dev_attr +EXPORT_SYMBOL_GPL sound/core/snd 0x25933c46 snd_power_ref_and_wait +EXPORT_SYMBOL_GPL sound/core/snd 0x2a84340a snd_ctl_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/core/snd 0x38950a6d snd_ctl_disconnect_layer +EXPORT_SYMBOL_GPL sound/core/snd 0x4730d48b snd_card_free_on_error +EXPORT_SYMBOL_GPL sound/core/snd 0x51d8820f snd_ctl_activate_id +EXPORT_SYMBOL_GPL sound/core/snd 0x7a83119c snd_device_get_state +EXPORT_SYMBOL_GPL sound/core/snd 0x92733400 snd_card_ref +EXPORT_SYMBOL_GPL sound/core/snd 0xac068d8e snd_device_initialize +EXPORT_SYMBOL_GPL sound/core/snd 0xb0057092 snd_ctl_register_layer +EXPORT_SYMBOL_GPL sound/core/snd 0xb46e05c4 snd_ctl_sync_vmaster +EXPORT_SYMBOL_GPL sound/core/snd 0xbd41e62a snd_ctl_get_preferred_subdevice +EXPORT_SYMBOL_GPL sound/core/snd 0xe16f6eed snd_device_disconnect EXPORT_SYMBOL_GPL sound/core/snd 0xfaf598c6 snd_ctl_request_layer -EXPORT_SYMBOL_GPL sound/core/snd-compress 0x4056c89c snd_compr_stop_error -EXPORT_SYMBOL_GPL sound/core/snd-compress 0xae4023bd snd_compress_new +EXPORT_SYMBOL_GPL sound/core/snd 0xfd33f988 snd_card_rw_proc_new +EXPORT_SYMBOL_GPL sound/core/snd-compress 0x6009aa17 snd_compress_new +EXPORT_SYMBOL_GPL sound/core/snd-compress 0xb8d4608e snd_compr_stop_error EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x04e1b99f snd_pcm_std_chmaps -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x07cdc284 snd_pcm_stream_lock_irq EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x09e913c1 snd_pcm_alt_chmaps -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x2dadb4dc snd_pcm_stream_lock -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x35a9209f snd_devm_alloc_pages -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x48ee5b9e snd_pcm_fill_iec958_consumer -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x560d34be snd_pcm_stream_unlock_irqrestore +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x0f384c70 snd_pcm_hw_constraint_eld +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x3cdac2c3 snd_pcm_stream_lock +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x4ea036a7 snd_pcm_fill_iec958_consumer +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x56d7a51f snd_pcm_stream_unlock_irq EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x5c407196 snd_pcm_fill_iec958_consumer_hw_params -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x5f5ed371 snd_pcm_add_chmap_ctls +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x63e835bc snd_pcm_stream_unlock EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x649892e8 snd_pcm_create_iec958_consumer_default -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x7695e482 snd_pcm_stream_unlock -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x8836ebfb snd_pcm_hw_constraint_eld +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x68d2935b snd_pcm_stop_xrun +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x8a38720c snd_pcm_stream_unlock_irqrestore EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x8d864069 snd_pcm_rate_range_to_bits +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x8f4ddb7d _snd_pcm_stream_lock_irqsave +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x95d3a3ae snd_pcm_add_chmap_ctls EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xa286a234 snd_pcm_format_name -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xab85a022 snd_pcm_stream_unlock_irq EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xab8bc1a2 snd_pcm_rate_mask_intersect -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xb034f6df snd_pcm_lib_default_mmap -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xcb09639a _snd_pcm_stream_lock_irqsave -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xd463ca3c snd_pcm_stop_xrun -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x085636a7 snd_dmaengine_pcm_close -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x353c8fd6 snd_dmaengine_pcm_close_release_chan -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x5711439e snd_dmaengine_pcm_set_config_from_dai_data -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x6e53d69a snd_hwparams_to_dma_slave_config -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x729e7527 snd_dmaengine_pcm_pointer -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x833b858f snd_dmaengine_pcm_get_chan -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x945cc238 snd_dmaengine_pcm_pointer_no_residue -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xa108b5b6 snd_dmaengine_pcm_open_request_chan -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xaa535af4 snd_dmaengine_pcm_request_channel -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xc3755b47 snd_dmaengine_pcm_trigger -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xca85dc76 snd_dmaengine_pcm_open -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xfc16f45e snd_dmaengine_pcm_refine_runtime_hwparams -EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0x42abdd4e snd_seq_driver_unregister -EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0xd7d580d8 __snd_seq_driver_register -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x0651fcc8 amdtp_domain_add_stream -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x412b9221 amdtp_am824_set_midi_position -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x480f790d amdtp_am824_init -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x4b220aeb amdtp_am824_add_pcm_hw_constraints -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x4bba7593 amdtp_am824_set_pcm_position -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x635ca694 amdtp_domain_stream_pcm_ack -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x688844ed amdtp_am824_midi_trigger -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x9dc71d62 amdtp_domain_init -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xaabfeb46 amdtp_domain_stop -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xb7a4372f amdtp_domain_stream_pcm_pointer -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xd4fc01be amdtp_domain_destroy -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xddb79e58 amdtp_domain_start -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xf36c2d2a amdtp_am824_set_parameters -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x03e33ee5 snd_hdac_stream_start -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0456ec70 snd_hdac_stream_timecounter_init +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xc3a46894 snd_pcm_stream_lock_irq +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xe3ac2b83 snd_devm_alloc_pages +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xe4042917 snd_pcm_lib_default_mmap +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x015d0451 snd_dmaengine_pcm_open +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x020bbb19 snd_dmaengine_pcm_pointer_no_residue +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x1c832585 snd_dmaengine_pcm_trigger +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x2de331dc snd_dmaengine_pcm_get_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x5e282a44 snd_dmaengine_pcm_close_release_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x6b7098a2 snd_dmaengine_pcm_open_request_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x98f22434 snd_hwparams_to_dma_slave_config +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x99c87a4b snd_dmaengine_pcm_close +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x9c9784c3 snd_dmaengine_pcm_pointer +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xcf0ebac7 snd_dmaengine_pcm_refine_runtime_hwparams +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xd0d3d184 snd_dmaengine_pcm_request_channel +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xef3734f4 snd_dmaengine_pcm_set_config_from_dai_data +EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0x76f3ab9a snd_seq_driver_unregister +EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0x835b6b92 __snd_seq_driver_register +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x1f085023 amdtp_am824_add_pcm_hw_constraints +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x2cc2987e amdtp_domain_destroy +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x55b3c252 amdtp_am824_init +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x5ae74376 amdtp_domain_init +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x9a25facd amdtp_domain_stop +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xa343d004 amdtp_domain_start +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xd0338f01 amdtp_domain_stream_pcm_pointer +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xd16df88b amdtp_am824_set_pcm_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xd768f10c amdtp_am824_midi_trigger +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xe914d256 amdtp_domain_add_stream +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xf8b8105c amdtp_am824_set_midi_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xfa855957 amdtp_domain_stream_pcm_ack +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xff6b541d amdtp_am824_set_parameters +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x01d269b7 snd_hdac_regmap_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x028f248f snd_hdac_query_supported_pcm EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x05636f93 snd_hdac_aligned_read -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0675a836 snd_hdac_regmap_update_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0eb1d83e snd_hdac_bus_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0f242c37 snd_hdac_stream_set_params -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0f668f91 snd_hdac_power_up_pm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1117ec8d snd_hdac_stream_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1278f6c7 snd_hdac_stream_clear +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x080b8096 snd_hdac_bus_get_response +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x08bd04ba snd_hdac_bus_init_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x111143dc snd_hdac_bus_enter_link_reset EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1488641f snd_hdac_aligned_write -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x19426642 snd_hdac_codec_link_up -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1c5f3c28 snd_hdac_power_up -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1fcc5371 snd_hdac_sync_power_state -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1fe6edc6 snd_hdac_regmap_read_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2032c992 _snd_hdac_read_parm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x247c4470 snd_hdac_dsp_trigger -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x265f33cd snd_hdac_codec_modalias -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x294bb66a snd_hdac_device_set_chip_name -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2d10f3f0 snd_hdac_codec_write -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3290ce86 snd_hdac_sync_audio_rate -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3a6653dc snd_hdac_stream_setup_periods +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x156b15e4 snd_hdac_bus_update_rirb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x178534cb snd_hdac_stream_setup_periods +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x21bae54a snd_hdac_stream_assign +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x25006b9e snd_hdac_bus_send_cmd +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x26dea8c1 snd_hdac_bus_parse_capabilities +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x29ea911d snd_hdac_device_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2a62c4c2 snd_hdac_sync_power_state +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2ab2cb0a snd_hdac_stream_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2d4286dc snd_hdac_stream_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x312ecb52 snd_hdac_stream_setup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3346f1fe snd_hdac_stream_release +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x34c29d32 snd_hdac_stream_sync +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x34e8d944 snd_hdac_bus_free_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3afb7c67 snd_hdac_regmap_add_vendor_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3bccfac7 snd_hdac_dsp_prepare EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3bd544c2 snd_hdac_get_active_channels -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3e1474f8 snd_hdac_stream_sync -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3f98bc50 snd_hdac_bus_free_stream_pages -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x434aa46e snd_hdac_override_parm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x46490fc3 snd_hdac_refresh_widgets -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4ad2ad61 snd_hdac_is_supported_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3d59fb82 snd_hdac_codec_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3e4885a1 snd_hdac_dsp_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3f78a640 snd_hdac_codec_link_down +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4127f616 snd_hdac_is_supported_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4685d46b snd_hdac_codec_link_up +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x49263834 snd_hdac_stream_timecounter_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4b3d7b30 snd_hdac_check_power_state +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4b64dc77 snd_hdac_bus_reset_link +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4be72e51 snd_hdac_bus_handle_stream_irq EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4c7ec4b6 snd_hdac_get_ch_alloc_from_ca -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4c9ff2b1 snd_hdac_acomp_get_eld -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4d2c6c77 snd_hdac_bus_init_cmd_io -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4ea59f6a snd_hdac_bus_init_chip -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x526215d3 snd_hdac_acomp_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x52e12dfb snd_hda_bus_type -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x540f5a95 snd_hdac_bus_stop_cmd_io -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x55237880 snd_hdac_bus_parse_capabilities -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x564272f9 snd_hdac_get_stream_stripe_ctl -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x58dde5ed snd_hdac_regmap_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x545dcf5d snd_hdac_bus_exec_verb_unlocked +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x57864803 snd_hdac_device_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x583ec4d6 snd_hdac_channel_allocation +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x58b40f0a snd_hdac_dsp_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5994d580 snd_hdac_acomp_init EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5c07cb49 snd_hdac_calc_stream_format -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5ce4bcc8 snd_hdac_device_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x60c59a91 snd_hdac_bus_get_response -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6116f07c snd_hdac_regmap_write_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x62128b2c snd_hdac_codec_modalias +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x634fb40b snd_hdac_device_set_chip_name +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x65a67ae0 snd_hdac_stream_set_params +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x66c425c9 snd_hdac_regmap_sync +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x676c78e7 snd_hdac_display_power EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x67bfe791 snd_hdac_spk_to_chmap -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6c5f93e7 snd_hdac_regmap_add_vendor_verb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x70cc7c26 snd_hdac_bus_reset_link +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6bf84f50 snd_hdac_power_up +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6c7f24ee snd_hdac_bus_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x72fe7739 snd_hdac_bus_exit_link_reset EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x77c754a8 snd_hdac_chmap_to_spk_mask -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x792a2c05 snd_hdac_bus_alloc_stream_pages -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x79b901c9 snd_hdac_regmap_update_raw_once -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7aa12230 snd_hdac_regmap_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7d282636 snd_hdac_codec_read -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7dca808e snd_hdac_device_register -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7fb9bf30 snd_hdac_device_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x83962cf4 snd_hdac_bus_exit_link_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x83bdbfe7 snd_hdac_get_stream -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8915f07e snd_hdac_power_down_pm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8b466000 snd_hdac_get_connections -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x91c2009d snd_hdac_bus_exec_verb_unlocked -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x91df4d66 snd_hdac_setup_channel_mapping -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x922b72ed snd_hdac_check_power_state -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x925e8be7 snd_hdac_bus_enter_link_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9577953a snd_hdac_add_chmap_ctls -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x96d6b0c0 snd_hdac_set_codec_wakeup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x98a63705 snd_hdac_regmap_sync +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7909db95 snd_hdac_acomp_register_notifier +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x791a7620 snd_hdac_regmap_update_raw_once +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7fa4ee56 snd_hdac_register_chmap_ops +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x858b2c38 snd_hdac_acomp_get_eld +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x861f0b45 snd_hdac_regmap_write_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x87989b41 snd_hdac_regmap_read_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x891c0995 hdac_get_device_id +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8a3b204a snd_hdac_codec_write +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8c1b5582 snd_hdac_bus_alloc_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8d2df461 snd_hdac_set_codec_wakeup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x921ba09e snd_hdac_stream_clear +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x95136b7c snd_hdac_stream_init EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9a8e1877 snd_array_free -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa179a106 snd_hdac_stream_release -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa2d1bdcc snd_hdac_power_down -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa46a95e4 snd_hdac_dsp_cleanup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xac117bd8 hdac_get_device_id -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb2beacd1 snd_hdac_codec_link_down -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb42cc253 snd_hdac_register_chmap_ops -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb49c6953 snd_hdac_stream_stop -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb7e4fe85 snd_hdac_acomp_register_notifier +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa3a1455a snd_hdac_refresh_widgets +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa6cc1476 snd_hdac_get_connections +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xacd6067e snd_hdac_power_up_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb368a1dc snd_hdac_stream_start +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb7fa15d4 snd_hdac_bus_stop_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb8215679 snd_hdac_get_stream_stripe_ctl +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb8f7420c snd_hdac_device_register +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb9ee7551 snd_hdac_get_stream +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xba7ee8ad _snd_hdac_read_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xba803d73 snd_hdac_power_down +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe038566 snd_hdac_acomp_exit EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe7dd7dc snd_array_new -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc1e47acf snd_hdac_bus_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc605f78e snd_hdac_stream_cleanup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc6258631 snd_hdac_stream_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc806f336 snd_hdac_display_power -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcb862d4e snd_hdac_query_supported_pcm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcbb459d5 snd_hdac_read_parm_uncached -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcc1dc60a snd_hdac_get_sub_nodes -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd7525442 snd_hdac_stream_sync_trigger -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xddb6e445 snd_hdac_bus_send_cmd -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdf9c9e2a snd_hdac_bus_update_rirb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe34a1576 snd_hdac_bus_handle_stream_irq -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe4cdaf40 snd_hdac_acomp_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbeeb355a snd_hdac_stream_stop +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc9b8f605 snd_hda_bus_type +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xca86c926 snd_hdac_regmap_update_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcab97924 snd_hdac_device_unregister +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcae0a6f0 snd_hdac_setup_channel_mapping +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcaff282b snd_hdac_override_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd50a1c6c snd_hdac_power_down_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdcc930f8 snd_hdac_bus_init_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe1e267a3 snd_hdac_add_chmap_ctls EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe4e07754 snd_hdac_print_channel_allocation -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe8e31661 snd_hdac_bus_stop_chip -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xeb286955 snd_hdac_stream_assign -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xeed392ad snd_hdac_device_unregister -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xeff58773 snd_hdac_channel_allocation -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf006afa9 snd_hdac_dsp_prepare -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf0b742cd snd_hdac_bus_link_power -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfbd5cf5b snd_hdac_stream_setup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xffa42f31 snd_hdac_read -EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x0d682476 intel_nhlt_init -EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x0ec065bd snd_intel_acpi_dsp_driver_probe +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe5d11af5 snd_hdac_bus_stop_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xeb6773c4 snd_hdac_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xeb7a9927 snd_hdac_bus_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xeba0ac59 snd_hdac_sync_audio_rate +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xecf90890 snd_hdac_bus_link_power +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf1324f45 snd_hdac_regmap_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf17d348b snd_hdac_stream_sync_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf353aa21 snd_hdac_read_parm_uncached +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfc8efa17 snd_hdac_get_sub_nodes +EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x1b794f95 snd_intel_acpi_dsp_driver_probe +EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x466a4485 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 0x68fd3c23 snd_intel_dsp_driver_probe -EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x7ae65bce intel_nhlt_get_dmic_geo -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x5ce7648f snd_ak4113_check_rate_and_errors -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x7018388a snd_ak4113_build -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x9f485b8f snd_ak4113_external_rate -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xa9570e5c snd_ak4113_create -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xb4526e92 snd_ak4113_reg_write -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xfe31a4f4 snd_ak4113_reinit -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x00c3eeec azx_stop_all_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x01e46ef2 azx_free_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x026628c3 snd_hda_create_spdif_in_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x02f5ed0a snd_hda_ctl_add -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x04a6ac0b __snd_hda_add_vmaster +EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0xcdafa8a0 snd_intel_dsp_driver_probe +EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0xf04e17e4 intel_nhlt_init +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x0cba32d0 snd_ak4113_build +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x36f15f6c snd_ak4113_reg_write +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x62e31f9c snd_ak4113_check_rate_and_errors +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xa6edaf16 snd_ak4113_external_rate +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xadcd4226 snd_ak4113_create +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xdd682c9f snd_ak4113_reinit +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0014dca2 hda_get_autocfg_input_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x02586774 snd_hda_codec_parse_pcms +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x031c0324 snd_hda_sync_vmaster_hook EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0676f5ac snd_hda_get_input_pin_attr -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x07345aa9 snd_hda_enable_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0a141168 snd_hda_check_amp_list_power -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0f95aecd azx_get_position -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x119383ba _snd_hda_set_pin_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x149174c9 snd_hda_jack_add_kctl_mst -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1574611b snd_hda_sequence_write -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1610bfcc snd_hda_codec_set_pin_target -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1850de9d snd_hda_codec_load_dsp_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x18a4ff73 snd_hda_multi_out_dig_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1ba8e188 snd_hda_shutup_pins -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1e59a8d6 snd_hda_add_verbs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1fff325e snd_hda_multi_out_dig_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x23716a39 snd_hda_codec_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x23ff2124 snd_hda_get_default_vref -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x26d20227 snd_hda_mixer_amp_switch_get_beep -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x27659a1d snd_hda_create_dig_out_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2775794a snd_hda_codec_pcm_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x291121e1 snd_hda_enum_helper_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2ae781f8 azx_get_pos_posbuf -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2be66384 snd_hda_override_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2de69074 snd_hda_get_pin_label -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2dfde5f1 snd_hda_jack_report_sync -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x31ab9df8 snd_hda_input_mux_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x31e62764 snd_hda_mixer_amp_switch_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x33aa1a82 azx_init_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x36794f5e snd_hda_find_mixer_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0a6ae7e5 snd_hda_create_spdif_share_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0aba3b62 snd_hda_jack_tbl_get_from_tag +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0de8a40d snd_hda_jack_set_gating_jack +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0fc33c27 snd_hda_jack_bind_keymap +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x104c17a2 snd_hda_jack_detect_enable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x12316501 snd_hda_shutup_pins +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x130c03b8 snd_hda_apply_pincfgs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x147fce0d snd_hda_multi_out_dig_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x15e3c725 snd_hda_get_default_vref +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x16a3015a snd_hda_jack_tbl_get_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2301606a snd_hda_detach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x24930fd6 snd_hda_lock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2613a42a azx_probe_codecs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x29fd31a2 snd_hda_add_new_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2b55949a snd_hda_set_vmaster_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x30367b54 snd_hda_correct_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3040fd0c snd_hda_jack_detect_enable_callback_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3073834e snd_hda_create_spdif_in_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x31755a1d snd_hda_spdif_out_of_nid EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x38ce402b azx_interrupt -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x38d58f91 snd_hda_mixer_amp_volume_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x397eed1f snd_hda_pick_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3a96a7ba snd_hda_check_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3b4b14d2 snd_hda_correct_pin_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3f7ccec1 snd_hda_codec_load_dsp_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4220ca8e snd_hda_codec_amp_update -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x46180b65 snd_hda_codec_set_power_to_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4a793d3e snd_hda_sync_vmaster_hook -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4af0a116 snd_hda_codec_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4ef4c9a1 snd_hda_apply_verbs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x51592c2c snd_hda_codec_get_pin_target -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x540845d6 azx_bus_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x55cf1abc snd_hda_codec_cleanup_for_unbind -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5832706a snd_hda_spdif_ctls_assign -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x59e7e7ec snd_hda_apply_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5a621c74 snd_hda_codec_amp_stereo -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5d26d318 azx_codec_configure -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5e43deaa snd_hda_mixer_amp_switch_put_beep -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5e89375f __snd_hda_codec_cleanup_stream -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x60569dcd snd_hda_lock_devices -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x617dd74f snd_hda_jack_detect_state_mst -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x68c30f62 snd_hda_jack_poll_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x69dc354a azx_get_pos_lpib -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6ada1462 snd_hda_set_vmaster_tlv -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6bc423a3 snd_hda_get_dev_select -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6c586644 snd_hda_codec_update_widgets -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6ee22e7f __hda_codec_driver_register -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x712f7409 snd_hda_jack_detect_enable_callback_mst -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7302c9f5 snd_hda_detach_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x73fe8fc7 snd_hda_mixer_amp_volume_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x76a1a9e2 snd_hda_jack_tbl_get_from_tag -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x76fc7192 hda_get_autocfg_input_label -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x78d9dc23 snd_hda_codec_parse_pcms -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7a2c622a snd_hda_jack_bind_keymap -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7acd2732 snd_hda_mixer_amp_switch_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7d48c14f snd_hda_jack_pin_sense -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fb94183 snd_hda_codec_amp_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8233bde3 snd_hda_jack_set_button_state -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x82c74d28 azx_stop_chip -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x83c84cf5 snd_hda_spdif_ctls_unassign -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x89a15a07 snd_hda_jack_detect_enable -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x89e811bf snd_hda_codec_configure -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8d58cbba snd_hda_codec_setup_stream -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8f6c7027 snd_hda_parse_pin_defcfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8f9e3ebf snd_hda_get_connections -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8fdcba61 snd_hda_codec_eapd_power_filter -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x908787eb snd_hda_multi_out_dig_close -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x917c9f8b snd_hda_codec_pcm_new -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x95c9055b snd_hda_mixer_amp_switch_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x97eed92c snd_hda_spdif_out_of_nid -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa1118ed7 snd_hda_get_conn_index -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa2784d76 azx_init_chip -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa2f45533 snd_hda_add_new_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa38cd4f5 snd_hda_override_conn_list -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa5890e95 snd_hda_unlock_devices -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa58a295a snd_hda_jack_add_kctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa62421da snd_hda_add_imux_item -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa71f314f snd_hda_codec_amp_init_stereo -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa7e1cf7c snd_hda_jack_set_dirty_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa8de8f78 snd_hda_multi_out_analog_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xabd51504 snd_hda_set_dev_select -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xacdd8bbc snd_hda_codec_get_pincfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaed046f6 snd_hda_get_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb3b7a4b1 snd_hda_get_int_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb3bc8354 snd_hda_codec_load_dsp_trigger -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbaf48841 snd_hda_add_nid -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbb0a1205 snd_hda_codec_new -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc058869b snd_hda_multi_out_analog_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc0ff9de9 snd_hda_apply_pincfgs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc140b948 snd_hda_attach_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc1e345c1 snd_hda_jack_set_gating_jack -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc7cd2b6c azx_probe_codecs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xce639c16 snd_hda_load_patch -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xced8583c snd_hda_get_num_devices -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd49dbb31 snd_hda_codec_build_controls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd6f34f13 snd_hda_jack_tbl_get_mst -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd7d1adf8 snd_hda_mixer_amp_volume_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdceb4bdc snd_hda_set_power_save -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdfe584e9 snd_hda_multi_out_analog_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x38f6fe68 snd_hda_codec_set_name +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x397e684a snd_hda_codec_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3a0b2374 snd_hda_get_num_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3cc9ee62 snd_hda_jack_pin_sense +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3d71d3a2 snd_hda_sequence_write +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x42fc570f snd_hda_mixer_amp_switch_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x43d896d2 snd_hda_get_pin_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4c2b31d1 __snd_hda_add_vmaster +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4d268d45 snd_hda_codec_build_controls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4ddd2b15 snd_hda_codec_amp_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4e1cd340 snd_hda_codec_pcm_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x55202440 snd_hda_codec_setup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5551cc5a snd_hda_mixer_amp_switch_get_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x55be499d snd_hda_mixer_amp_volume_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x570d9ee4 azx_init_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5d266805 snd_hda_input_mux_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5e0c2cd6 snd_hda_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5f262a82 hda_codec_driver_unregister +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5f2a3bbb snd_hda_pick_pin_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x619189c9 snd_hda_codec_cleanup_for_unbind +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x62849225 snd_hda_get_bool_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6950256a snd_hda_set_power_save +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6997f4d3 snd_hda_codec_set_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6d2a0daa snd_hda_mixer_amp_switch_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6db9187e snd_hda_enum_helper_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x71219786 azx_bus_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x719d4b12 snd_hda_jack_add_kctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x745fea2c azx_get_pos_lpib +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x74bcf4a2 snd_hda_spdif_ctls_unassign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7662e55d snd_hda_jack_poll_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x782de657 snd_hda_codec_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x79c6be68 snd_hda_override_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7f7817ff snd_hda_codec_get_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x844ddb95 _snd_hda_set_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x847598b5 snd_hda_codec_amp_init_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x848dd5ce snd_hda_codec_load_dsp_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x862acbd3 snd_hda_codec_amp_update +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8698f4cc snd_hda_codec_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x89619e8a azx_get_pos_posbuf +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8a95389c snd_hda_jack_add_kctl_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8aa80ede snd_hda_get_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8bf2bde1 snd_hda_add_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8ca1a131 snd_hda_set_dev_select +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8d9c29d6 snd_hda_attach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8e395123 __hda_codec_driver_register +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8e857bc8 snd_hda_codec_load_dsp_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8f03f9ce snd_hda_multi_out_dig_close +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8fab1b2f snd_hda_mixer_amp_volume_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x90254ded snd_hda_jack_set_button_state +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x918ae622 snd_hda_parse_pin_defcfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9a48d035 snd_hda_jack_detect_state_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9b0773a1 snd_hda_codec_device_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9b811def snd_hda_mixer_amp_switch_put_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9b82baef snd_hda_get_connections +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9c9d7fef snd_hda_add_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9dcb4b17 snd_hda_get_dev_select +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa07d418a snd_hda_mixer_amp_volume_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa3394dc5 snd_hda_find_mixer_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa4c398bd snd_hda_codec_get_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa4e57ce6 snd_hda_codec_update_widgets +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa64289ac query_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa707ec23 snd_hda_multi_out_dig_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa7b5546b snd_hda_multi_out_analog_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa7c5ab87 azx_free_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa9ef2d07 snd_hda_codec_load_dsp_trigger +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xab07d92e snd_hda_multi_out_analog_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xab4c7c1e __snd_hda_codec_cleanup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xad461ff0 snd_hda_jack_report_sync +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb00fa06a snd_hda_override_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb122f7e1 snd_hda_check_amp_list_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb2586459 azx_stop_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb28de582 snd_hda_get_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb582903f snd_hda_spdif_ctls_assign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb73f5f18 snd_hda_mixer_amp_switch_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbdec6af6 snd_hda_multi_out_analog_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbed2d72f is_jack_detectable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbf115db0 azx_get_position +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc182776e snd_hda_codec_set_power_to_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc5449e4e snd_hda_jack_set_dirty_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc706a9b0 snd_hda_get_conn_index +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xca46817f azx_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xca74492c snd_hda_load_patch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcbd1166c snd_hda_multi_out_dig_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd35df2f2 snd_hda_check_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xda7e0996 snd_hda_apply_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe06d95f1 snd_hda_codec_amp_stereo EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe118de5d snd_pcm_2_1_chmaps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe17f8b10 snd_hda_pick_pin_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe1a78038 snd_hda_add_vmaster_hook -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe1e9aca7 snd_hda_get_bool_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe27695b6 hda_codec_driver_unregister -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe4007592 snd_hda_mixer_amp_tlv -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe5816ec1 snd_hda_get_conn_list -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe6c9d792 snd_hda_codec_set_pincfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe8d69f8a is_jack_detectable -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe9fed7df snd_hda_codec_device_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe1e9a0ad snd_hda_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe2d92510 snd_hda_jack_unsol_event +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe56d3a57 snd_hda_unlock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe6c44a7f snd_hda_pick_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe7ef1a8c snd_hda_enable_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe7fa4e31 snd_hda_mixer_amp_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe83184cf azx_init_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xebb4008e snd_hda_ctl_add EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeda3a721 snd_print_pcm_bits -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf0062bb6 snd_hda_multi_out_dig_open -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf2a007dd snd_hda_jack_unsol_event -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf33c3d69 query_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xef0d5eba snd_hda_codec_pcm_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf285d48e azx_stop_all_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf34c8610 snd_hda_create_dig_out_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf38b7c3a snd_hda_codec_eapd_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf6d76269 snd_hda_add_imux_item +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf7ac3a95 snd_hda_get_int_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf87cf06a snd_hda_apply_fixup EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf8dc35ac snd_hda_input_mux_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfd9d956a snd_hda_codec_set_name -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfdc0234d snd_hda_create_spdif_share_sw -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x0aedf7b2 snd_hda_gen_hp_automute -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x0d3f4c7d snd_hda_gen_fix_pin_power -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x1cf5642c snd_hda_get_path_from_idx -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x1cf747fa snd_hda_gen_free -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x281277e5 snd_hda_get_path_idx -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x2d089518 snd_hda_gen_spec_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x43e8cc92 snd_hda_gen_build_controls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x658d76fe snd_hda_gen_update_outputs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x6b5162bc snd_hda_activate_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfc59e081 snd_hda_codec_set_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x1b6b8f2a snd_hda_add_new_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x1f2bd130 snd_hda_gen_update_outputs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x28e4f241 snd_hda_gen_add_kctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x3ce7cf6d snd_hda_gen_build_controls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x48253f72 snd_hda_gen_parse_auto_config +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x4891e485 snd_hda_gen_path_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x4c83c039 snd_hda_gen_hp_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x5ce6c9c6 snd_hda_gen_mic_autoswitch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x630454ec snd_hda_gen_stream_pm +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x653e4d2a snd_hda_get_path_idx EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x76dc6871 hda_main_out_badness -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x7be3d13b snd_hda_gen_add_micmute_led_cdev -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x80588b47 snd_hda_gen_mic_autoswitch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x81173653 snd_hda_gen_free EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x871a6e44 hda_extra_out_badness -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x8818b66e snd_hda_gen_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x8aaef733 snd_hda_gen_line_automute -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x8c6cfd4a snd_hda_add_new_path -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xbc6f2245 snd_hda_gen_check_power_status -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xcee7c549 snd_hda_gen_stream_pm -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xd817fa25 snd_hda_gen_build_pcms -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xd8319844 snd_hda_gen_add_kctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xf1947c5c snd_hda_gen_add_mute_led_cdev -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xf8c5b3f0 snd_hda_gen_parse_auto_config -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xfb22d703 snd_hda_gen_path_power_filter -EXPORT_SYMBOL_GPL sound/soc/codecs/mt6359-accdet 0x81c43f7f mt6359_accdet_enable_jack_detect +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x8a932438 snd_hda_gen_check_power_status +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x90e8b5dd snd_hda_gen_line_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x9bf71db5 snd_hda_gen_add_micmute_led_cdev +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xa7b2a8a7 snd_hda_get_path_from_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xab33fbda snd_hda_gen_build_pcms +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xb11c0482 snd_hda_gen_spec_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xb972076e snd_hda_gen_add_mute_led_cdev +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xbe3c4713 snd_hda_gen_fix_pin_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xd268c453 snd_hda_activate_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xdcf8883d snd_hda_gen_init +EXPORT_SYMBOL_GPL sound/soc/codecs/mt6359-accdet 0x0ee5fe86 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 0x248039f0 adau1372_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0x491554f7 adau1761_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0x56a7305b adau1761_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x1e1c487c adau17x1_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x3946f323 adau17x1_set_micbias_voltage -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x3d40738e adau17x1_add_widgets -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x537aadc5 adau17x1_precious_register -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x56c7e0df adau17x1_readable_register -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x92a3de1f adau17x1_add_routes -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xda853a85 adau17x1_resume -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xdb6f7f99 adau17x1_dai_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xe95b420e adau17x1_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xebe25480 adau17x1_volatile_register -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau7118 0xca94cfe2 adau7118_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x0e230be6 cs4271_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1372 0x3eb7825b adau1372_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0x83bfb875 adau1761_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0x9e4fe60e adau1761_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x1f186738 adau17x1_add_routes +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x41abdb40 adau17x1_resume +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x6fcb7107 adau17x1_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x9d733f4b adau17x1_readable_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xa3cd63db adau17x1_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xacea531f adau17x1_add_widgets +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xb9d11d58 adau17x1_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xcf4909ac adau17x1_volatile_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xf84037c9 adau17x1_set_micbias_voltage +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xf87c2e57 adau17x1_precious_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau7118 0xd26e99f2 adau7118_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0x2b5855c2 cs35l41_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0x9e5ac32e cs35l41_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0xff450462 cs35l41_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x1de42b18 cs35l41_otp_unpack +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x2da22ad9 cs35l41_regmap_spi +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x603e7c74 cs35l41_set_channels +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x6c6ff037 cs35l41_test_key_unlock +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x931a2fb7 cs35l41_register_errata_patch +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x9bf72c06 cs35l41_regmap_i2c +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x9f1cd5fd cs35l41_test_key_lock +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xd8219390 cs35l41_boost_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x17e7de8b cs4271_probe EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x7d05786f cs4271_dt_ids -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0xdc43b739 cs4271_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x132cb729 cs42l51_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x2a3a63d8 cs42l51_suspend +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0xdd007126 cs4271_regmap_config EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x375ad98c cs42l51_of_match -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x61bc3d67 cs42l51_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x951af755 cs42l51_resume -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xcf38e387 cs42l51_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x6bd0a403 cs42l51_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xb2a10ef4 cs42l51_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xb368dcea cs42l51_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xb746bb45 cs42l51_suspend +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xd27a4091 cs42l51_resume EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x0245c4f2 cs42xx8_of_match -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x5b8fb16d cs42xx8_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x6984dd91 cs42xx8_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x126c4385 cs42xx8_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x165a4092 cs42xx8_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x6f6ac3db cs42xx8_probe EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x7cac7292 cs42888_data EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xcd3794c9 cs42448_data -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xe7b2b50c cs42xx8_pm -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0x0aa35d1b da7219_aad_jack_det -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0x216ac14a da7219_aad_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0x644a4e5e da7219_aad_exit -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0x797e27f3 da7219_aad_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x2b62e6f8 es8328_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x4de5a2a5 es8328_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98090 0x7be05ac7 max98090_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x519fac0e soc_codec_dev_max98373_sdw -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0xcca68858 max98373_reset -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0xda23373a soc_codec_dev_max98373 -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0xe775899b max98373_slot_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0x6e797aaa mt6359_mtkaif_calibration_enable -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0x6ee99b76 mt6359_set_mtkaif_protocol -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0x9687e385 mt6359_mtkaif_calibration_disable -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0xab32d7b6 mt6359_set_mtkaif_calibration_phase -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8824 0xba6bbbe3 nau8824_enable_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x10f9ad37 pcm1789_common_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x1fc72308 pcm1789_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0xa8f50b11 pcm1789_common_exit -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0x18778f20 pcm179x_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0x9131cb97 pcm179x_common_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0x3fbc7b28 pcm186x_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0x886131e3 pcm186x_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x504be370 pcm3168a_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x9df1b559 pcm3168a_pm_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0xcd9322fc pcm3168a_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0xd4cf5aed pcm3168a_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x00f5bb10 pcm512x_pm_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xe7dc11b9 pcm512x_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xf9c19463 pcm512x_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xff262571 pcm512x_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0x29a68ec0 da7219_aad_exit +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0x517a3634 da7219_aad_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0xa98db91e da7219_aad_jack_det +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0xf1ba9671 da7219_aad_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x69f7db77 es8328_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0xf9751ae9 es8328_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98090 0x8efb7c89 max98090_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x0a9a0374 max98373_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x4002be83 max98373_slot_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x5adbaa57 soc_codec_dev_max98373 +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x5cc540e6 soc_codec_dev_max98373_sdw +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x1d75e30d mt6358_mtkaif_calibration_disable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x3c158dc6 mt6358_set_mtkaif_calibration_phase +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x6f3b65d8 mt6358_mtkaif_calibration_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x77c11744 mt6358_set_mtkaif_protocol +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0x1132675a mt6359_mtkaif_calibration_disable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0x1e2aaee5 mt6359_set_mtkaif_calibration_phase +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0x865e788f mt6359_set_mtkaif_protocol +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0x9ea40a13 mt6359_mtkaif_calibration_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8824 0x99900b67 nau8824_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x9197ff6e pcm1789_common_exit +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0xb4a82694 pcm1789_common_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0xf2a8f51c pcm1789_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0xa12e6bf9 pcm179x_common_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0xf5185934 pcm179x_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0x28255a20 pcm186x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0x77fe6859 pcm186x_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x899f4efa pcm3168a_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x941944f3 pcm3168a_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x97839157 pcm3168a_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0xb2e9f1c6 pcm3168a_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x0908cd60 pcm512x_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x5985ffa0 pcm512x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xbfe71b9c pcm512x_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xf381a3c1 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 0x138e7f0b rt5640_disable_micbias1_for_ovcd -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x1f51fcc7 rt5640_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x5cf376df rt5640_dmic_enable -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x80e469a9 rt5640_detect_headset -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xe15287ca rt5640_set_ovcd_params -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xfa06d5a2 rt5640_enable_micbias1_for_ovcd -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0x0a637276 rt5645_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0x95893b7c rt5645_set_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5659 0xe2e587e9 rt5659_set_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5663 0xed961024 rt5663_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677 0xac9a3d6e rt5677_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x497edc3a rt5640_enable_micbias1_for_ovcd +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x58f37871 rt5640_set_ovcd_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x8745f940 rt5640_detect_headset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xa98e3d8e rt5640_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xbf75a011 rt5640_dmic_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xc3bc46a0 rt5640_disable_micbias1_for_ovcd +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0x52eea4a2 rt5645_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0x98b89bb6 rt5645_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5659 0x9b3337bd rt5659_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5663 0xaf4dfc33 rt5663_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677 0x8512394a 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 0x03100b05 rt5682_calibrate -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x0cda7673 rt5682_readable_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x04aec9eb rt5682_aif1_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x0bfcb0f0 rt5682_headset_detect EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x28730696 rt5682_supply_names -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x334eedf3 rt5682_volatile_register -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x40ff6c4c rt5682_parse_dt -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x43d4f4f9 rt5682_soc_component_dev -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x4f8dfccf rt5682_aif2_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x386ab3c4 rt5682_calibrate +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x44acee39 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 0x5f68d498 rt5682_reset -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x63d114fc rt5682_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x87ba3a30 rt5682_headset_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xa4ba47cc rt5682_aif1_dai_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xa7f49973 rt5682_apply_patch_list +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x61ad93da rt5682_readable_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x65ea828d rt5682_parse_dt +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x8a9f226e rt5682_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xa9f2e3f0 rt5682_volatile_register EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xb897de56 rt5682_reg -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x04acf58e sigmadsp_restrict_params -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x09a30eda sigmadsp_attach -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x151452fd sigmadsp_reset -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x39fd575a sigmadsp_setup -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xda0bb3cd devm_sigmadsp_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-i2c 0x749366bf devm_sigmadsp_init_i2c -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-regmap 0xec228670 devm_sigmadsp_init_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x9d94c8cf ssm2602_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0xde8e3288 ssm2602_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic32x4 0x381b19ea aic32x4_register_clocks -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic3x 0x303a6daf aic3x_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0xe09fd572 ts3a227e_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xc14c1eaf rt5682_soc_component_dev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xec021f24 rt5682_apply_patch_list +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xef9972e8 rt5682_aif2_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x33782acd devm_sigmadsp_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x475a652c sigmadsp_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x8d796946 sigmadsp_restrict_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xbdf59ff4 sigmadsp_setup +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xdca31357 sigmadsp_attach +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-i2c 0x3f1c4714 devm_sigmadsp_init_i2c +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-regmap 0x32af375c devm_sigmadsp_init_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x250b4c00 ssm2602_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x70fb1edb ssm2602_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic32x4 0x6c1d6609 aic32x4_register_clocks +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic3x 0x69c9c9dc aic3x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0x10bccff6 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 0x202a0729 wcd938x_swr_get_current_bank -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x65468f1c wcd938x_sdw_set_sdw_stream -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x71baaf06 wcd938x_sdw_hw_params -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x9408f15c wcd938x_sdw_device_get -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0xe6bf9e10 wcd938x_sdw_free -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x0074f0d6 wm_hubs_hpl_mux -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x0554dde6 wm_hubs_add_analogue_routes -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x39a8933d wm_hubs_hpr_mux -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x46f217aa wm_hubs_vmid_ena +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x56f16e05 wcd938x_sdw_hw_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x6628b06f wcd938x_sdw_set_sdw_stream +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x6ba9f1cb wcd938x_sdw_device_get +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x96fec487 wcd938x_swr_get_current_bank +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0xdc24d6b8 wcd938x_sdw_free +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x053f3c15 wm_halo_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x27c390e0 wm_adsp_compr_free +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x35f08b2e wm_adsp_fw_enum +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x3617172a wm_adsp_compr_open +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x485afdbd wm_adsp_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x50b337c0 wm_adsp_compr_handle_irq +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 0x56a4d64c wm_adsp_fw_get +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x59841195 wm_adsp2_set_dspclk +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x5ca008da wm_adsp2_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x618653d3 wm_adsp_read_ctl +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x6434ad9f wm_adsp_compr_copy +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x7557901b wm_adsp2_component_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x7a6484ca wm_adsp_compr_pointer +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x7cec49ac wm_adsp_fw_put +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x91174ed9 wm_adsp2_component_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xacf4b0bd wm_adsp1_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xb17b14bc wm_adsp_compr_get_caps +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xcbdc3b71 wm_adsp2_preloader_put +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xd46ebe11 wm_adsp_compr_trigger +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xd93c7785 wm_adsp_early_event +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xdd3c79ef wm_adsp2_bus_error +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xe194a491 wm_adsp2_preloader_get +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 0xf0420067 wm_adsp2_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xf3b5e139 wm_adsp1_event +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xf6943c81 wm_adsp_event +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xffdd4c2b wm_adsp_write_ctl EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x5cd7eb9b wm_hubs_dcs_done EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x757206d5 wm_hubs_spkmix_tlv -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x983ab2b7 wm_hubs_add_analogue_controls -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xa1469690 wm_hubs_handle_analogue_pdata -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xd6b993bd wm_hubs_set_bias_level -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xdd9c5c5b wm_hubs_update_class_w -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x29fb3062 wm8804_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x68e697fc wm8804_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x95326117 wm8804_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xa0832b67 wm8804_pm -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0x72312400 wm8903_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0xba25b2ac wm8962_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8994 0x17826b10 wm8994_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8994 0x2859deb2 wm8958_mic_detect -EXPORT_SYMBOL_GPL sound/soc/fsl/imx-pcm-dma 0x4f362814 imx_pcm_dma_init -EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0xc5733a7f fsl_asrc_component +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x766d9026 wm_hubs_set_bias_level +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x7cb3803e wm_hubs_add_analogue_controls +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x8331d221 wm_hubs_hpr_mux +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x8a6ad35a wm_hubs_update_class_w +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x8c0aeaa3 wm_hubs_handle_analogue_pdata +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xbaedb1ca wm_hubs_hpl_mux +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xbb629152 wm_hubs_add_analogue_routes +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xc01e57e1 wm_hubs_vmid_ena +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x21a2d95b wm8804_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x4c5b840f wm8804_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x71b1f530 wm8804_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x804140be wm8804_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0xe98e1d23 wm8903_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0xe6770133 wm8962_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8994 0xa3ca90db wm8958_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8994 0xd9f5dc11 wm8994_mic_detect +EXPORT_SYMBOL_GPL sound/soc/fsl/imx-pcm-dma 0x5a2724e3 imx_pcm_dma_init +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0xc959b5e3 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 0xcf93ec2c audio_graph_parse_of -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x00fd2a46 asoc_simple_parse_clk -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x1ec7a740 asoc_simple_shutdown -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x2379a340 asoc_simple_set_dailink_name -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x2e97ed15 asoc_simple_be_hw_params_fixup -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x51259ebf asoc_simple_parse_convert -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x77b2ccbd asoc_simple_parse_routing -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x7f8bce79 asoc_simple_hw_params -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x8c267f94 asoc_simple_dai_init -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x8dd6793a asoc_simple_startup -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x95969b05 asoc_simple_parse_widgets -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x97008dd5 asoc_simple_init_jack -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xa734a51f asoc_simple_init_priv -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xa813681f asoc_graph_card_probe -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xb560818c asoc_simple_canonicalize_platform -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xc3f06b53 asoc_simple_parse_daifmt -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xce4cec61 asoc_simple_canonicalize_cpu -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xdb47cf9e asoc_simple_parse_pin_switches -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xdffa89d7 asoc_simple_parse_card_name -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xe52e4ef7 asoc_simple_clean_reference +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-audio-graph-card 0x1353c444 audio_graph_parse_of +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x14dec1ba asoc_simple_init_jack +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x1988b580 asoc_simple_startup +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x29a13661 asoc_simple_hw_params +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x2b8acb11 asoc_simple_init_priv +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x35cba380 asoc_simple_be_hw_params_fixup +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x3a4dc699 asoc_simple_parse_convert +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x3f91f138 asoc_simple_set_dailink_name +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x519fe077 asoc_simple_parse_clk +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x73356eea asoc_simple_canonicalize_cpu +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x7e31f3e2 asoc_simple_clean_reference +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x81e00dd3 asoc_graph_card_probe +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x92261907 asoc_simple_canonicalize_platform +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xa0e4d817 asoc_simple_parse_card_name +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xa3a42f89 asoc_simple_dai_init +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xa748fbd5 asoc_simple_parse_pin_switches +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xab1721e8 asoc_simple_parse_routing +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xb53d8a9c asoc_simple_shutdown +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xb8e34a12 asoc_simple_parse_daifmt +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xd7738e11 asoc_simple_parse_widgets EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xf3bafb75 asoc_simple_convert_fixup -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xfcbe3cf6 asoc_simple_remove -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x011f65be mtk_afe_pcm_platform -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x200f0bab mtk_afe_fe_startup -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x22b42b84 mtk_memif_set_format -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x24b7c722 mtk_memif_set_channel -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x251d08e0 mtk_afe_fe_hw_free -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x37510e3d mtk_afe_fe_prepare -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x4921deaf mtk_afe_pcm_new -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x4c83772e mtk_afe_fe_hw_params -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x4ce38cc5 mtk_memif_set_addr -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x4d5bcc07 mtk_afe_suspend -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x5bea02dd mtk_memif_set_disable -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x65ffd946 mtk_afe_add_sub_dai_control -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x6cd4a71a mtk_afe_combine_sub_dai -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x7ba3a571 mtk_memif_set_enable -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x809bb6b1 mtk_afe_fe_shutdown -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x82947564 mtk_memif_set_pbuf_size -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x84761eb9 mtk_memif_set_rate_substream -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x91a35dae mtk_dynamic_irq_release -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x982491b4 mtk_afe_resume -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xac81edbf mtk_afe_fe_ops -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xb130414d mtk_afe_pcm_pointer -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xb13b59c0 mtk_dynamic_irq_acquire -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xcb77e598 mtk_afe_fe_trigger -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xe272f8e4 mtk_memif_set_rate -EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8195/snd-soc-mt8195-afe 0x5963007b mt8195_afe_disable_clk -EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8195/snd-soc-mt8195-afe 0xa4151e9c mt8195_afe_enable_clk -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x03fc19be axg_fifo_pcm_hw_params -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x5213c0cd axg_fifo_pcm_hw_free -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x56560cbd axg_fifo_pcm_open -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x60d06932 axg_fifo_pcm_trigger -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x6f275b78 axg_fifo_pcm_new -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x8fe0ac5f axg_fifo_pcm_close -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xa15cc606 axg_fifo_probe -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xc6e78fe9 g12a_fifo_pcm_hw_params -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xe3cf8680 axg_fifo_pcm_pointer +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xfa8c5279 asoc_simple_remove +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x04dfff9e mtk_afe_pcm_new +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x1722b9d6 mtk_afe_fe_trigger +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x3cae590e mtk_memif_set_format +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x3ccd8ff8 mtk_memif_set_rate +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x4091ccc4 mtk_memif_set_pbuf_size +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x456248ff mtk_dynamic_irq_acquire +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x4bc4dc93 mtk_afe_fe_shutdown +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x570dc5b0 mtk_afe_suspend +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x581534f4 mtk_afe_add_sub_dai_control +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x7504d9f3 mtk_memif_set_channel +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x78b94dda mtk_afe_fe_prepare +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x86f44514 mtk_afe_fe_startup +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x8a4f97b8 mtk_dynamic_irq_release +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xa8feb7da mtk_memif_set_enable +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xae079025 mtk_afe_fe_hw_free +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xc0baeb9d mtk_afe_fe_hw_params +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xc7a8d517 mtk_afe_resume +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xcac98e67 mtk_afe_pcm_platform +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xcc397c7e mtk_afe_pcm_pointer +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xd8fd26e7 mtk_memif_set_addr +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xe5f35965 mtk_memif_set_rate_substream +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xe61aa06c mtk_memif_set_disable +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xf26147aa mtk_afe_combine_sub_dai +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xf5eecf45 mtk_afe_fe_ops +EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8195/snd-soc-mt8195-afe 0x0dd8526f mt8195_afe_enable_clk +EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8195/snd-soc-mt8195-afe 0x5447fdc2 mt8195_afe_disable_clk +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x40a95e9f g12a_fifo_pcm_hw_params +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x5c0cfbe8 axg_fifo_pcm_new +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x8eb2a4e2 axg_fifo_pcm_close +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xade70a5d axg_fifo_probe +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xd074fde7 axg_fifo_pcm_pointer +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xe0762a54 axg_fifo_pcm_open +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xe79a576a axg_fifo_pcm_hw_free +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xe88345c9 axg_fifo_pcm_hw_params +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xfc548872 axg_fifo_pcm_trigger +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x121cb0e1 axg_tdm_formatter_event EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x4988d1f8 axg_tdm_stream_alloc EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x539c48cc axg_tdm_stream_start EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x55316323 axg_tdm_formatter_set_channel_masks EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x64e0ca85 axg_tdm_stream_free -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x73f515cd axg_tdm_formatter_event -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x8984208d axg_tdm_formatter_probe +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0xcb98485e axg_tdm_formatter_probe EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0xef4a0d56 axg_tdm_stream_stop -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-interface 0x2f534dec axg_tdm_set_tdm_slots -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x0833b325 meson_card_parse_daifmt -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x24193048 meson_card_parse_dai -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x32b2cc5b meson_card_remove -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x3b70e819 meson_card_i2s_set_sysclk -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x43d71f22 meson_card_reallocate_links -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x4d4a9430 meson_card_probe -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x9da2fb49 meson_card_set_fe_link -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0xe5e3e980 meson_card_set_be_link -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x2b3c13e9 meson_codec_glue_input_set_fmt -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x4e382881 meson_codec_glue_input_dai_probe -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x553e50e0 meson_codec_glue_input_hw_params -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x68b564b4 meson_codec_glue_input_get_data -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x94140f8b meson_codec_glue_input_dai_remove -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0xa01017f6 meson_codec_glue_output_startup -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0x0fd725c6 q6adm_open +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-interface 0x2efbf1cf axg_tdm_set_tdm_slots +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x7027de48 meson_card_set_fe_link +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x70a230a3 meson_card_i2s_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x8278cdb1 meson_card_reallocate_links +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x84b02eb9 meson_card_set_be_link +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x861f2165 meson_card_remove +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x89f0f02c meson_card_parse_daifmt +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x9cc61047 meson_card_parse_dai +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0xa46b18b6 meson_card_probe +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x2e913ac7 meson_codec_glue_input_get_data +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x430aa248 meson_codec_glue_input_dai_remove +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x7f7808de meson_codec_glue_input_set_fmt +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0xa494eee0 meson_codec_glue_output_startup +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0xc5b81355 meson_codec_glue_input_hw_params +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0xdca768dd meson_codec_glue_input_dai_probe EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0x28421460 q6adm_get_copp_id -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0xce063baf q6adm_close -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0xde3e7c48 q6adm_matrix_map +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0x69fc0bbc q6adm_close +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0x6d80b661 q6adm_open +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0x9ff88d56 q6adm_matrix_map EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x07a54780 q6afe_cdc_dma_port_prepare EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x369b6eeb q6afe_port_put EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x3b16d6e7 q6afe_port_stop EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x498d993b q6afe_get_port_id EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x5332304f q6afe_slim_port_prepare EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x7df60063 q6afe_port_set_sysclk -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x85e07561 q6afe_set_lpass_clock -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0xa88231d4 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 0xc16c13c9 q6afe_port_get_from_id +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0xc5af4aba q6afe_set_lpass_clock 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 @@ -19166,9 +19294,9 @@ 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 0x3dec0292 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 0x5bbe5c53 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 @@ -19189,229 +19317,229 @@ EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6dsp-common 0x17142e58 q6dsp_map_channels 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/snd-soc-lpass-cpu 0x497e906e asoc_qcom_lpass_cpu_platform_shutdown -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x5bb7b64a asoc_qcom_lpass_cpu_dai_probe -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x5db002a1 asoc_qcom_lpass_cpu_dai_ops -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0xc688d52d lpass_cpu_pcm_new -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0xe3f03488 asoc_qcom_lpass_cpu_platform_probe -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0xf7a64d45 asoc_qcom_lpass_cpu_platform_remove -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-hdmi 0xee2ce7d5 asoc_qcom_lpass_hdmi_dai_ops -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-platform 0x092e637c asoc_qcom_lpass_platform_register -EXPORT_SYMBOL_GPL sound/soc/rockchip/snd-soc-rockchip-pcm 0x2079d363 rockchip_pcm_platform_register -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x00095f60 snd_soc_dpcm_get_substream -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x018f84ec snd_soc_component_init_regmap -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x020acc1a snd_soc_component_compr_trigger -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x02a7f55f snd_soc_component_compr_get_metadata -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x03230748 dapm_pinctrl_event -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x05419d4c snd_soc_put_xr_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x08254203 snd_soc_dapm_get_pin_switch -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x08f77380 snd_soc_lookup_component_nolocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x098b3e72 snd_soc_pm_ops -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0990a008 snd_soc_component_force_enable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x099aad5c snd_soc_get_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x09c9d70b snd_soc_component_compr_get_codec_caps -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0a22a209 snd_soc_card_get_kcontrol -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0cbd6c26 snd_soc_daifmt_parse_format -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x10ea847c snd_soc_component_read_field -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x11d1676e devm_snd_soc_register_dai -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x125ee86e snd_soc_info_volsw_range -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x139ebbf6 snd_soc_put_volsw_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1447a062 soc_ac97_ops -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x14aa75b9 snd_soc_jack_add_gpiods -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1913b0af snd_soc_bytes_get -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1a4b090b snd_soc_component_disable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1b7c8af1 snd_soc_resume -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1d2e1951 snd_soc_jack_free_gpios -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1e014f53 snd_soc_dapm_new_widgets -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1e4370b9 snd_soc_set_runtime_hwparams -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1f7e3172 snd_soc_dpcm_can_be_free_stop -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2073618f snd_soc_put_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x20d09ffc snd_soc_dapm_get_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x20effdd1 snd_soc_dai_compr_trigger -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x211ed013 snd_soc_component_compr_get_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2264bdd2 snd_soc_dapm_enable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x23be37b8 snd_soc_info_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x24055e7b snd_soc_dai_set_clkdiv -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2431879b snd_soc_dapm_get_pin_status -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x24369db6 snd_soc_dapm_disable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x0f56b70f asoc_qcom_lpass_cpu_dai_ops +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x592e761c asoc_qcom_lpass_cpu_platform_probe +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x5eea71c0 asoc_qcom_lpass_cpu_dai_probe +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x97d3415b asoc_qcom_lpass_cpu_platform_shutdown +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0xb0e12efd asoc_qcom_lpass_cpu_platform_remove +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0xb47798a0 lpass_cpu_pcm_new +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-hdmi 0xdf108f8f asoc_qcom_lpass_hdmi_dai_ops +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-platform 0x579330fd asoc_qcom_lpass_platform_register +EXPORT_SYMBOL_GPL sound/soc/rockchip/snd-soc-rockchip-pcm 0x4de4e158 rockchip_pcm_platform_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x00662181 snd_soc_jack_add_gpiods +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0163528c snd_soc_of_parse_aux_devs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x021201bb snd_soc_poweroff +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x02447c4b snd_soc_dapm_new_control +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0288bbc3 snd_soc_dapm_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x04254d3c snd_soc_dai_set_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0689cf17 snd_soc_component_initialize +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x079ec25c snd_soc_get_dai_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0c7a00ff snd_soc_component_write_field +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1048247d snd_soc_of_parse_card_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x10b0a680 snd_soc_find_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x134d976d snd_soc_get_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x16c88d22 snd_soc_component_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x17183e00 snd_soc_limit_volume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x179978b7 snd_soc_dai_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x17f606ef snd_soc_card_remove_dai_link +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1a6135cb devm_snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1ae1c255 snd_soc_dai_set_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1b80967e snd_soc_jack_get_type +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1cba53cd snd_soc_component_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x200a20f2 snd_soc_dapm_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x20a04740 snd_soc_component_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x22cb9d4e snd_soc_dapm_free +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x24c30786 snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2508f079 snd_soc_runtime_calc_hw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x25302458 snd_soc_dapm_force_enable_pin_unlocked EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2541a979 snd_soc_calc_frame_size -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2582f3cf snd_soc_dapm_del_routes -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x29724a81 snd_soc_dapm_put_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x298b4772 snd_soc_register_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x29b092e1 snd_soc_runtime_set_dai_fmt -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2acf5977 snd_soc_add_card_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2ce928de snd_soc_of_get_dai_name -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x326e4d61 snd_soc_get_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3345cc6c snd_soc_tplg_component_remove -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x34d748bc snd_dmaengine_pcm_prepare_slave_config -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x34e5684e snd_soc_dapm_weak_routes -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3533b92b snd_soc_dai_action -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x35eb6f95 snd_soc_set_dmi_name -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x36dfe69f snd_soc_add_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3aca4dbd snd_soc_of_put_dai_link_codecs -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3adca425 snd_soc_dapm_kcontrol_dapm -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3ca21b16 snd_soc_put_strobe -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x41144ed9 snd_soc_component_update_bits -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x418f2d56 snd_soc_get_dai_id -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x41b63e49 snd_soc_dapm_force_enable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x41d3c688 snd_soc_dai_set_pll -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x424d9c40 snd_soc_dapm_mux_update_power -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4329acc2 snd_soc_unregister_card -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x44fceaa3 snd_soc_dapm_ignore_suspend -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x45f4ce2f snd_soc_dai_link_set_capabilities -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x48c55f19 snd_soc_card_add_dai_link -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4999f5a1 snd_soc_unregister_component_by_driver -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4ac03bab snd_soc_bytes_info_ext -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4b6738df snd_soc_card_jack_new -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4f55c80b snd_soc_component_compr_get_caps -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4ff2f6b1 snd_soc_put_volsw_range -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x54e0c512 snd_soc_dapm_kcontrol_widget -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x57e4c6d8 snd_soc_jack_notifier_unregister -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5847e22d snd_soc_dai_active -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x587b080e snd_soc_dai_set_channel_map -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x596838c6 snd_soc_link_compr_set_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5c40ac1f snd_soc_of_parse_audio_simple_widgets -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5d13ad51 snd_soc_dapm_nc_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5d83d22b snd_soc_dapm_force_enable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5db87b61 snd_soc_component_compr_open -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5f4fa733 snd_soc_dai_compr_pointer -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5f74db0b snd_soc_get_strobe -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x61902ed6 snd_soc_jack_add_gpios -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x62be8c6f snd_soc_component_enable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x63207646 snd_soc_dai_set_sysclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x63ae3d91 snd_soc_dai_compr_set_metadata -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x641d4fc9 dpcm_be_dai_trigger -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x642a7d46 snd_soc_dapm_new_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x647263ab snd_soc_dapm_sync_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x64beab7f snd_soc_dapm_put_pin_switch -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x65aab08e snd_soc_cnew -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x661b3a62 snd_soc_get_volsw_range -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x66297799 snd_soc_dai_digital_mute -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x66adf572 dapm_clock_event -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x68af4399 snd_soc_set_ac97_ops -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6a71ba01 snd_soc_card_remove_dai_link -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6a82e1ac snd_soc_bytes_put -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6d4f3c04 snd_soc_component_get_pin_status -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6d51460e snd_soc_of_parse_audio_routing -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6e838e71 snd_soc_component_enable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x70acef86 snd_soc_jack_report -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x70adec7f snd_soc_dapm_get_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x74134f86 snd_soc_tplg_widget_bind_event -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x747ffc00 snd_soc_remove_pcm_runtime -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x74ab7085 snd_soc_info_volsw_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x75471587 snd_soc_component_compr_set_metadata -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7796768c snd_soc_get_volsw_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7836a065 dapm_kcontrol_get_value -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x796c17df snd_soc_dai_set_tristate -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7dce49e0 devm_snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x259dbee6 snd_soc_lookup_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x297e9781 snd_soc_dapm_force_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x29e3efdf snd_soc_dapm_force_bias_level +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2ce38eb6 devm_snd_soc_register_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2f887802 snd_soc_dapm_stream_stop +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x301f9d60 snd_soc_dapm_del_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3221bf14 snd_soc_dai_active +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3265f1c9 snd_soc_daifmt_parse_clock_provider_raw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x337599e1 snd_soc_dai_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x34294430 snd_soc_component_compr_get_metadata +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x345e8d2d snd_soc_dapm_get_pin_status +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x348b8448 snd_soc_dapm_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x349cb8e0 snd_soc_dai_compr_startup +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x354cf835 snd_soc_dapm_nc_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3a7cf845 snd_soc_dapm_ignore_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3c3b4178 snd_soc_dapm_kcontrol_dapm +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3e575149 dpcm_be_dai_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3ef53cde snd_soc_of_parse_audio_routing +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3f2e6860 snd_soc_dai_set_channel_map +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3f66388d snd_soc_info_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3ffa84ef snd_soc_component_disable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x40985381 snd_soc_add_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x42753e6d snd_soc_dapm_info_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x44d48b8a snd_soc_jack_add_pins +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4606ab61 snd_soc_jack_free_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x46c3425b snd_soc_get_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x47333c89 snd_soc_dapm_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x47d7e3ff snd_soc_dapm_disable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x485d2aa7 snd_soc_card_get_kcontrol +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4a6ea3b8 snd_soc_dapm_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4ae5e2df snd_soc_component_init_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4b1825df snd_soc_info_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4b7d27bc null_dailink_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4b8c9e2f snd_soc_set_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4b9e8959 snd_dmaengine_pcm_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4c152e52 snd_soc_component_test_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4c44a343 snd_soc_dai_get_channel_map +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4c5258c9 snd_soc_dapm_mixer_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4ca9a286 snd_soc_component_compr_copy +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4d30a8ab snd_soc_jack_add_zones +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4dbe51c6 snd_soc_add_card_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x516d29bc snd_soc_info_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5183b9f9 snd_soc_dai_compr_set_metadata +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5321266a dapm_clock_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5437e405 snd_soc_dapm_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5566581c snd_soc_bytes_info_ext +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x593028f9 snd_soc_put_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x599da4ff snd_soc_component_update_bits_async +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5cc5e989 snd_soc_jack_notifier_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5dc0b031 snd_soc_tplg_component_load +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5e2ad385 snd_soc_dpcm_be_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x614cef16 snd_soc_runtime_set_dai_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6184acb4 soc_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x61f4055d snd_soc_component_compr_pointer +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x62d6811e snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x647d4d6a snd_soc_component_compr_set_metadata +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x65b9fd8c snd_soc_component_force_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x67b205ce snd_soc_link_compr_startup +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x68dff923 snd_soc_dai_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6ac4724f snd_soc_add_pcm_runtime +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6ac79eb2 snd_soc_component_update_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6b0cf3a6 snd_soc_find_dai_with_mutex +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6b8d8a19 snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6da4ed77 snd_soc_jack_add_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6eebc597 snd_soc_component_force_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6eeecf39 snd_soc_dapm_kcontrol_widget +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x70a2eff5 snd_soc_component_async_complete +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x72173ef7 snd_soc_put_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x728610e6 snd_soc_card_jack_new +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x73b003d5 snd_soc_dapm_mux_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x73b5b5b0 snd_soc_cnew +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x745ef813 snd_soc_info_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x74d3ad5f snd_soc_dai_digital_mute +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x771a5d96 snd_soc_component_compr_free +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x78d5b6e9 snd_soc_pm_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7de1d38a snd_soc_dapm_new_widgets EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e606130 snd_soc_calc_bclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x81a9eb43 devm_snd_soc_register_card -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x84bb2006 snd_soc_dai_compr_shutdown -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x851844d9 snd_soc_component_exit_regmap -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x875e0854 snd_dmaengine_pcm_register -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x87fb9ea7 snd_soc_dapm_add_routes -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x880c13c7 snd_soc_dpcm_can_be_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x88a2d62e snd_soc_of_get_dai_link_codecs -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x891d6653 snd_soc_of_parse_card_name -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x89de48eb snd_soc_free_ac97_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8a13bf79 snd_soc_dapm_nc_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8a65337c snd_soc_get_pcm_runtime -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8ab17358 snd_dmaengine_pcm_unregister -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8ae774b2 snd_soc_dai_set_tdm_slot -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8eb54c1c snd_soc_runtime_calc_hw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x91252edf snd_soc_component_async_complete -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9127f83c snd_soc_dapm_new_control -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9403050d snd_soc_component_update_bits_async -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x95557c19 snd_soc_dapm_init -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9785436a snd_soc_link_compr_startup -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x98323dbb snd_soc_dapm_enable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9a48278c snd_soc_dapm_free -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9b55d9d1 snd_soc_dapm_disable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e8572d0 snd_soc_set_dmi_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7f373e7e snd_soc_component_compr_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x81cde40b snd_soc_dapm_get_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x82be02a7 snd_soc_set_runtime_hwparams +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x843842a1 snd_soc_daifmt_parse_format +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8481b91d snd_soc_component_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x85b68ab5 snd_soc_component_set_jack +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8856f617 snd_soc_bytes_get +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8943ccc0 snd_soc_info_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8a02e3e9 snd_soc_unregister_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8a98c067 snd_soc_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8ba19788 snd_soc_component_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8d078cce snd_soc_dpcm_get_substream +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8db0d2f9 snd_soc_dai_set_tristate +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8e67426a snd_soc_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x90fe8908 snd_soc_dapm_init +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x941f5881 snd_soc_of_parse_audio_simple_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x94b0fb37 snd_soc_component_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x97905851 snd_soc_debugfs_root +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x97b58b8e snd_soc_component_read_field +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x97ca9384 snd_soc_dai_action +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x97d11f16 snd_soc_get_dai_id +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x98934bfb snd_soc_of_get_dai_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x999bc4e9 snd_soc_get_volsw_range EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9bfde704 snd_soc_daifmt_clock_provider_fliped -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9f04af18 snd_soc_dapm_info_pin_switch -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9f6b5f92 dapm_mark_endpoints_dirty -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa085a532 snd_soc_component_read -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa175aec4 null_dailink_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa260644a snd_soc_component_set_pll -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa2ae5cb2 snd_soc_dapm_force_bias_level -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa2d647eb snd_soc_dapm_mixer_update_power -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa5e04fb5 snd_soc_component_disable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa9557f49 snd_soc_find_dai -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xabc11b65 snd_soc_component_nc_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xabf44cf8 snd_soc_find_dai_with_mutex -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaf463592 snd_soc_dapm_sync -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb0c374d7 snd_soc_component_compr_free -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb174194e snd_soc_bytes_info -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb17f70ec snd_soc_bytes_tlv_callback -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb2b6f801 snd_soc_jack_add_pins -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb5a7105e snd_soc_new_compress -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbd8f391a snd_soc_dapm_put_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbf2489c1 snd_soc_dpcm_fe_can_update -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbf649dd8 snd_soc_register_card -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbfcd263b snd_soc_component_force_enable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc001307e snd_soc_poweroff -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc01c51d2 snd_soc_info_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc17e62eb snd_soc_runtime_action -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc22197ae snd_soc_dai_compr_get_metadata -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc38d7638 snd_soc_set_ac97_ops_of_reset -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc5aa4ad7 snd_soc_dapm_update_dai -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc5db6e92 snd_soc_jack_get_type -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc61e3b11 snd_soc_tplg_component_load -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc629146e snd_soc_dai_set_fmt -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc66c6726 snd_soc_of_get_slot_mask -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc6dc307a snd_soc_component_test_bits -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc70d3a0a snd_soc_debugfs_root +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9d343b5c snd_soc_of_get_dai_link_codecs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9d6446e4 snd_soc_put_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9ec1ac13 snd_soc_tplg_widget_bind_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa1f70617 snd_soc_free_ac97_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa2c55e9a snd_soc_component_compr_get_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa3bc0854 snd_soc_bytes_tlv_callback +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa69ff8c4 snd_soc_component_compr_ack +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa7ab6515 dapm_kcontrol_get_value +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa7febfdb snd_soc_of_put_dai_link_codecs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa81e1475 snd_soc_component_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa92f044e snd_soc_dai_link_set_capabilities +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa9f33363 snd_soc_resume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaa94f27d dapm_regulator_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xabf8ce00 snd_soc_remove_pcm_runtime +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xac36b45c snd_soc_dpcm_runtime_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xad068a54 snd_soc_of_get_slot_mask +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaf5eb36b snd_soc_get_pcm_runtime +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb0aa18c8 dapm_mark_endpoints_dirty +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb0da8eaa snd_soc_unregister_component_by_driver +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb597f0ba snd_soc_dai_set_bclk_ratio +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb642d575 snd_soc_dapm_sync +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb65a4950 snd_soc_dapm_sync_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb685429a snd_soc_new_ac97_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb7a48aa5 snd_soc_dapm_nc_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xba163de9 snd_soc_of_parse_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbaab1f75 snd_soc_dapm_new_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbbdf3470 snd_soc_runtime_action +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbd57e3bb snd_soc_component_nc_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbf81a0a4 snd_soc_dapm_add_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc08adb8d snd_soc_link_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc1cd02a8 snd_soc_lookup_component_nolocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc1de2133 snd_soc_unregister_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc3fb128b snd_soc_dai_compr_pointer +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc4afd76a snd_soc_add_dai_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc62f7ba9 snd_soc_dai_compr_get_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc7e1a95d snd_soc_close_delayed_work EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8269f94 snd_soc_params_to_frame_size -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8f5e503 snd_soc_dapm_stream_stop -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc91e4063 snd_soc_of_parse_tdm_slot -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcb22f3e5 snd_soc_component_compr_ack -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcb4619ce snd_soc_daifmt_parse_clock_provider_raw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcb7cf807 snd_soc_limit_volume -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcd08df9a snd_soc_dai_compr_ack -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcf5472db snd_soc_component_set_sysclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd017e151 snd_soc_lookup_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd2265075 snd_soc_new_ac97_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd3c9023a snd_soc_suspend -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd490cf44 snd_soc_component_set_jack -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd5ed5951 snd_soc_get_xr_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd61fb135 snd_soc_add_dai_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd65339b2 dapm_regulator_event -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd66d7892 snd_soc_of_parse_node_prefix -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd670ae4b snd_soc_rtdcom_lookup -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd85bba8c snd_soc_dai_compr_startup -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdb557d4d snd_soc_component_compr_set_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe106bbde devm_snd_soc_register_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe141c0ca snd_soc_component_initialize -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe1477cf2 snd_soc_dai_get_channel_map -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe17be1c2 snd_soc_dai_set_bclk_ratio -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe2c2897c snd_soc_put_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe349d061 snd_soc_close_delayed_work -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe65ba87c snd_soc_component_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc92cc794 snd_soc_component_compr_get_codec_caps +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcad8c648 snd_dmaengine_pcm_prepare_slave_config +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcb091447 snd_soc_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcc200040 snd_soc_component_nc_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xccec524f snd_soc_get_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcd8e121a snd_soc_component_disable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd3d17f0b snd_soc_add_component_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd4fa7ee5 snd_soc_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd51bbb60 snd_soc_dapm_weak_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd53bffb9 snd_soc_link_compr_shutdown +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd5865be2 snd_soc_dapm_disable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xda5f852a snd_soc_tplg_component_remove +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdbc6e489 snd_soc_card_add_dai_link +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdcc43803 snd_soc_of_parse_node_prefix +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdda86d88 snd_soc_component_get_pin_status +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdfd30c1e snd_soc_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe00a6255 snd_soc_component_compr_open +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe03b77dd snd_soc_dapm_update_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe30c3cc0 snd_soc_rtdcom_lookup +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe3dc3e9a snd_soc_component_exit_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe516db26 snd_soc_dapm_put_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe5a1394d snd_soc_dpcm_fe_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe7236cc1 snd_soc_unregister_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe82037ab snd_soc_dpcm_can_be_free_stop +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe8a3e6c0 snd_soc_dai_compr_get_metadata EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb711ae7 snd_soc_params_to_bclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xec914c78 snd_soc_get_dai_name -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeea68f4b snd_soc_dpcm_runtime_update -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeeb4f34f snd_soc_dai_compr_set_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeec28289 snd_soc_unregister_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xefaf9b96 snd_soc_add_component_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf22f56b9 snd_soc_component_nc_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf35ec29e snd_soc_component_compr_copy -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf51d3bd1 snd_soc_of_parse_aux_devs -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf5ff77bc snd_soc_dai_compr_get_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf6a162e9 snd_soc_add_pcm_runtime -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf6f828e7 snd_soc_link_compr_shutdown +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb80360a snd_soc_bytes_put +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xee6316c8 devm_snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xefc18261 snd_soc_set_ac97_ops_of_reset +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf209d2c0 snd_soc_dai_compr_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf31828f8 snd_soc_dai_set_clkdiv +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf42b63e1 snd_soc_put_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf618e576 snd_soc_jack_notifier_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf67df18b devm_snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf79ca0e3 snd_soc_jack_report +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf7ab6e2e snd_soc_dai_compr_ack +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf9185c9b snd_soc_component_compr_get_caps EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf9622dd1 snd_soc_daifmt_clock_provider_from_bitmap -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfb09b5ab snd_soc_dpcm_be_can_update -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfb2566dc snd_soc_info_xr_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfb541360 snd_soc_component_compr_pointer -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfdb8db74 snd_soc_jack_add_zones -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xff0d7b77 snd_soc_jack_notifier_register -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xff951b91 snd_soc_unregister_dai -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xffcca3b2 snd_soc_component_write_field -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x2449d5dc snd_sof_debugfs_io_item -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x3c0145c1 snd_sof_free_debug -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x53e66230 snd_sof_dbg_memory_info_init -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x640469aa snd_sof_debugfs_buf_item -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0xcc434372 snd_sof_dbg_init +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfa792907 snd_soc_new_compress +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfaba4ae3 snd_soc_bytes_info +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfeeb5fb4 snd_soc_dpcm_can_be_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xff2d4e45 dapm_pinctrl_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xffbc5147 snd_soc_dai_compr_shutdown +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x54038c56 snd_sof_debugfs_io_item +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x5ac622c7 snd_sof_dbg_memory_info_init +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x943b9530 snd_sof_dbg_init +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0xda3a5127 snd_sof_debugfs_buf_item +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0xeb445fd3 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 @@ -19421,16 +19549,16 @@ 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 0x52730c90 tegra_asoc_machine_init -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-machine 0xcd4915d5 tegra_asoc_machine_probe -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x22fd1217 tegra_pcm_construct -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x36e9703b tegra_pcm_pointer -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x4e6bd3f0 tegra_pcm_close -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x636fd45c tegra_pcm_platform_register -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x88691d1d tegra_pcm_platform_register_with_chan_names -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0xb624433a tegra_pcm_hw_params -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0xc1a63b05 tegra_pcm_platform_unregister -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0xfde29ba1 tegra_pcm_open +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-machine 0x49e0cdfb tegra_asoc_machine_init +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-machine 0x8ae69a90 tegra_asoc_machine_probe +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x145dca82 tegra_pcm_open +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x534afbb3 tegra_pcm_platform_register +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x81200121 tegra_pcm_construct +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0xc8f37ebb tegra_pcm_hw_params +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0xdfcfd820 tegra_pcm_platform_register_with_chan_names +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0xe63098d5 tegra_pcm_pointer +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0xed830f2a tegra_pcm_platform_unregister +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0xf8373685 tegra_pcm_close EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra20-das 0x0d54c9b9 tegra20_das_connect_dap_to_dac EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra20-das 0xb52cfca4 tegra20_das_connect_dac_to_dap EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra20-das 0xbced7431 tegra20_das_connect_dap_to_dap @@ -19449,6890 +19577,6883 @@ -EXPORT_SYMBOL_GPL sound/soc/ti/snd-soc-ti-edma 0x45a51f65 edma_pcm_platform_register -EXPORT_SYMBOL_GPL sound/soc/ti/snd-soc-ti-sdma 0x7a9fc058 sdma_pcm_platform_register -EXPORT_SYMBOL_GPL sound/soc/ti/snd-soc-ti-udma 0xf1a2c8ea udma_pcm_platform_register -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x038f5e1b line6_write_data -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x0774c7ea line6_read_data -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x1b9c11a4 line6_init_pcm -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x1d6c5511 line6_disconnect +EXPORT_SYMBOL_GPL sound/soc/ti/snd-soc-ti-edma 0xf6b30735 edma_pcm_platform_register +EXPORT_SYMBOL_GPL sound/soc/ti/snd-soc-ti-sdma 0x3aac20c6 sdma_pcm_platform_register +EXPORT_SYMBOL_GPL sound/soc/ti/snd-soc-ti-udma 0x266e2463 udma_pcm_platform_register +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x0a504b3f line6_send_sysex_message +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x0d632620 line6_suspend +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x0e31f23f line6_init_pcm +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x12969a5b line6_pcm_release EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x202a1b1b line6_midi_id -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x30683cd2 line6_send_raw_message -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x3314a0d5 line6_version_request_async -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x5b37f021 line6_suspend -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x61f4f033 line6_read_serial_number -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x83e8162b line6_init_midi -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x92721286 line6_pcm_release -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xaa5db975 line6_send_raw_message_async -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xb8b7c512 line6_send_sysex_message -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xbf90b9da line6_resume -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xc9d79592 line6_alloc_sysex_buffer -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xd075d05e line6_probe -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xd9ef9f15 line6_pcm_acquire -EXPORT_SYMBOL_GPL vmlinux 0x000736ec fscrypt_ioctl_add_key -EXPORT_SYMBOL_GPL vmlinux 0x000eab83 xenbus_register_driver_common -EXPORT_SYMBOL_GPL vmlinux 0x001f18a2 __mnt_is_readonly -EXPORT_SYMBOL_GPL vmlinux 0x00459393 thermal_zone_unbind_cooling_device +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x2ed5ae28 line6_alloc_sysex_buffer +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x4fda2da2 line6_resume +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x57266c66 line6_pcm_acquire +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x59124e8d line6_version_request_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x636eaf9f line6_send_raw_message +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x8ae051f8 line6_disconnect +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x8b72a816 line6_init_midi +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xa37b786e line6_send_raw_message_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xc27bce0f line6_probe +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xc410b3b2 line6_read_serial_number +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xde50b7d2 line6_read_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xe0545cc8 line6_write_data +EXPORT_SYMBOL_GPL vmlinux 0x000362ab device_register +EXPORT_SYMBOL_GPL vmlinux 0x00112c3e class_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x001730fa irq_gc_set_wake +EXPORT_SYMBOL_GPL vmlinux 0x001ffa3e devm_hwspin_lock_unregister +EXPORT_SYMBOL_GPL vmlinux 0x00294213 securityfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x002bbeb1 crypto_alloc_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x003458a6 of_platform_populate +EXPORT_SYMBOL_GPL vmlinux 0x004e0c87 crypto_remove_spawns EXPORT_SYMBOL_GPL vmlinux 0x00513f58 get_timespec64 +EXPORT_SYMBOL_GPL vmlinux 0x0055f502 fscrypt_drop_inode EXPORT_SYMBOL_GPL vmlinux 0x00565f18 pernet_ops_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x0057d51b __traceiter_neigh_update +EXPORT_SYMBOL_GPL vmlinux 0x005b478a __clocksource_register_scale EXPORT_SYMBOL_GPL vmlinux 0x005f18a6 add_wait_queue_priority EXPORT_SYMBOL_GPL vmlinux 0x0063d2eb srcu_batches_completed -EXPORT_SYMBOL_GPL vmlinux 0x007c1e14 dprc_get_obj_region -EXPORT_SYMBOL_GPL vmlinux 0x00897ae5 dpm_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x008a47d5 validate_xmit_skb_list -EXPORT_SYMBOL_GPL vmlinux 0x009a35ee xhci_resume -EXPORT_SYMBOL_GPL vmlinux 0x009a8699 dw_pcie_upconfig_setup -EXPORT_SYMBOL_GPL vmlinux 0x00a43076 trace_event_ignore_this_pid -EXPORT_SYMBOL_GPL vmlinux 0x00b4a939 dprc_set_obj_irq -EXPORT_SYMBOL_GPL vmlinux 0x00b9b9b6 pci_host_common_probe -EXPORT_SYMBOL_GPL vmlinux 0x00c1849e ptp_parse_header -EXPORT_SYMBOL_GPL vmlinux 0x00c52e3d screen_pos -EXPORT_SYMBOL_GPL vmlinux 0x00cd7c9a usb_get_descriptor -EXPORT_SYMBOL_GPL vmlinux 0x00d22dd8 regmap_noinc_write +EXPORT_SYMBOL_GPL vmlinux 0x007ba513 do_tcp_sendpages +EXPORT_SYMBOL_GPL vmlinux 0x0094862a __pm_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x0096869d usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0x00994ec9 memremap_pages +EXPORT_SYMBOL_GPL vmlinux 0x00b07312 pm_generic_restore_noirq +EXPORT_SYMBOL_GPL vmlinux 0x00bae3d1 wm8350_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x00c400b7 tps6586x_set_bits EXPORT_SYMBOL_GPL vmlinux 0x00d4c500 usb_decode_interval -EXPORT_SYMBOL_GPL vmlinux 0x00d80781 register_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0x00dbeb42 devm_pinctrl_put EXPORT_SYMBOL_GPL vmlinux 0x00df9837 ioasid_register_allocator -EXPORT_SYMBOL_GPL vmlinux 0x00ea9378 pci_msi_mask_irq -EXPORT_SYMBOL_GPL vmlinux 0x00eb7892 led_trigger_blink_oneshot -EXPORT_SYMBOL_GPL vmlinux 0x00ff69b9 fsl_mc_portal_free -EXPORT_SYMBOL_GPL vmlinux 0x0119e0dc devlink_port_param_driverinit_value_get +EXPORT_SYMBOL_GPL vmlinux 0x00f75b6b devm_kmemdup +EXPORT_SYMBOL_GPL vmlinux 0x01007a51 skb_zerocopy_iter_dgram +EXPORT_SYMBOL_GPL vmlinux 0x010f639e _copy_from_iter_flushcache +EXPORT_SYMBOL_GPL vmlinux 0x0125f580 sdio_release_host EXPORT_SYMBOL_GPL vmlinux 0x012e730e apei_exec_noop -EXPORT_SYMBOL_GPL vmlinux 0x0140ea9c __traceiter_fdb_delete -EXPORT_SYMBOL_GPL vmlinux 0x014acb6d bpf_offload_dev_netdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x012e9d20 imx_check_clk_hws +EXPORT_SYMBOL_GPL vmlinux 0x01373c09 pinctrl_generic_add_group +EXPORT_SYMBOL_GPL vmlinux 0x013ce6d9 netif_carrier_event +EXPORT_SYMBOL_GPL vmlinux 0x014bb0be xfrm_dev_offload_ok EXPORT_SYMBOL_GPL vmlinux 0x014e8186 cpu_scale -EXPORT_SYMBOL_GPL vmlinux 0x015fddf3 auxiliary_device_init -EXPORT_SYMBOL_GPL vmlinux 0x01642d58 cpufreq_cpu_get_raw -EXPORT_SYMBOL_GPL vmlinux 0x01853771 dma_release_channel +EXPORT_SYMBOL_GPL vmlinux 0x014ee6e0 kvm_vcpu_block +EXPORT_SYMBOL_GPL vmlinux 0x01536393 tcp_ca_get_key_by_name +EXPORT_SYMBOL_GPL vmlinux 0x0156cecc battery_hook_unregister +EXPORT_SYMBOL_GPL vmlinux 0x016c8274 devlink_rate_leaf_destroy +EXPORT_SYMBOL_GPL vmlinux 0x017ebd41 acpi_subsys_poweroff EXPORT_SYMBOL_GPL vmlinux 0x01866a57 ezx_pcap_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x0190748c sk_attach_filter -EXPORT_SYMBOL_GPL vmlinux 0x019d30fb to_nd_blk_region -EXPORT_SYMBOL_GPL vmlinux 0x019e2af9 regulator_get +EXPORT_SYMBOL_GPL vmlinux 0x01919700 devm_regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x01a0665b genphy_c45_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0x01a0851b ahci_platform_enable_clks EXPORT_SYMBOL_GPL vmlinux 0x01a0cb78 property_entries_free -EXPORT_SYMBOL_GPL vmlinux 0x01a38908 gpiochip_unlock_as_irq -EXPORT_SYMBOL_GPL vmlinux 0x01a49eda crypto_register_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x01a8753b dma_buf_export -EXPORT_SYMBOL_GPL vmlinux 0x01b17586 of_device_modalias -EXPORT_SYMBOL_GPL vmlinux 0x01bbe6bf posix_acl_create -EXPORT_SYMBOL_GPL vmlinux 0x01c21a2e ahci_platform_enable_resources +EXPORT_SYMBOL_GPL vmlinux 0x01b62663 rockchip_clk_register_branches +EXPORT_SYMBOL_GPL vmlinux 0x01c4da73 ata_do_set_mode EXPORT_SYMBOL_GPL vmlinux 0x01c6cb0c cpu_cluster_pm_enter +EXPORT_SYMBOL_GPL vmlinux 0x01c72694 ata_sas_tport_add +EXPORT_SYMBOL_GPL vmlinux 0x01c9bf51 dma_buf_unpin +EXPORT_SYMBOL_GPL vmlinux 0x01d9875e extcon_dev_free EXPORT_SYMBOL_GPL vmlinux 0x01e1a8de kgdb_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x01e8dd36 dev_pm_qos_hide_flags -EXPORT_SYMBOL_GPL vmlinux 0x01f04761 dm_suspended -EXPORT_SYMBOL_GPL vmlinux 0x01f1d7a6 devfreq_cooling_unregister -EXPORT_SYMBOL_GPL vmlinux 0x01f29f51 __fscrypt_prepare_rename -EXPORT_SYMBOL_GPL vmlinux 0x01ff2ec5 governor_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0x01e217a6 pci_epf_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x01e5f100 tpm_chip_stop +EXPORT_SYMBOL_GPL vmlinux 0x02006628 serial8250_clear_and_reinit_fifos +EXPORT_SYMBOL_GPL vmlinux 0x02032105 dw_pcie_wait_for_link EXPORT_SYMBOL_GPL vmlinux 0x0207a6c6 reset_control_bulk_acquire -EXPORT_SYMBOL_GPL vmlinux 0x02185e49 handle_irq_desc -EXPORT_SYMBOL_GPL vmlinux 0x021fcf5b fb_bl_default_curve -EXPORT_SYMBOL_GPL vmlinux 0x0227b33f sysfs_file_change_owner -EXPORT_SYMBOL_GPL vmlinux 0x022d1c99 pm_generic_thaw +EXPORT_SYMBOL_GPL vmlinux 0x020d3f7a rio_release_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x02151d00 pci_test_config_bits +EXPORT_SYMBOL_GPL vmlinux 0x02203de3 devm_regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x02352578 serial8250_em485_start_tx EXPORT_SYMBOL_GPL vmlinux 0x02394899 play_idle_precise -EXPORT_SYMBOL_GPL vmlinux 0x023eb3fd devm_hwmon_device_register_with_groups -EXPORT_SYMBOL_GPL vmlinux 0x0245a94c dev_pm_opp_get_suspend_opp_freq -EXPORT_SYMBOL_GPL vmlinux 0x02477084 pci_load_and_free_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x0247ef5b ohci_restart +EXPORT_SYMBOL_GPL vmlinux 0x024c778c adp5520_unregister_notifier EXPORT_SYMBOL_GPL vmlinux 0x024d13dd request_free_mem_region -EXPORT_SYMBOL_GPL vmlinux 0x0274a9e5 soc_device_register -EXPORT_SYMBOL_GPL vmlinux 0x0276fa4b pci_add_dynid -EXPORT_SYMBOL_GPL vmlinux 0x027cbc1b rio_mport_read_config_16 -EXPORT_SYMBOL_GPL vmlinux 0x027f5298 irq_create_mapping_affinity -EXPORT_SYMBOL_GPL vmlinux 0x028df885 regmap_field_update_bits_base -EXPORT_SYMBOL_GPL vmlinux 0x028e797d tpm_is_tpm2 -EXPORT_SYMBOL_GPL vmlinux 0x0295b024 clk_hw_get_parent -EXPORT_SYMBOL_GPL vmlinux 0x029cf460 sysfs_create_mount_point +EXPORT_SYMBOL_GPL vmlinux 0x026cef97 dmi_kobj +EXPORT_SYMBOL_GPL vmlinux 0x0276d25e pwm_put +EXPORT_SYMBOL_GPL vmlinux 0x0284d128 pm_clk_create +EXPORT_SYMBOL_GPL vmlinux 0x0296a681 devm_of_icc_get +EXPORT_SYMBOL_GPL vmlinux 0x0297ced1 unix_peer_get EXPORT_SYMBOL_GPL vmlinux 0x029dd9d5 gnttab_batch_copy -EXPORT_SYMBOL_GPL vmlinux 0x029ed2d8 crypto_ahash_finup -EXPORT_SYMBOL_GPL vmlinux 0x02ab432a ti_sci_inta_msi_create_irq_domain -EXPORT_SYMBOL_GPL vmlinux 0x02b206c4 __pci_epc_create -EXPORT_SYMBOL_GPL vmlinux 0x02b330c3 serial8250_em485_start_tx -EXPORT_SYMBOL_GPL vmlinux 0x02cb365d xfrm_audit_policy_add +EXPORT_SYMBOL_GPL vmlinux 0x029f2cd4 ahci_handle_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x03006554 max8997_update_reg EXPORT_SYMBOL_GPL vmlinux 0x0312b3b0 reset_controller_add_lookup -EXPORT_SYMBOL_GPL vmlinux 0x0319c802 nvmem_cell_read_variable_le_u64 +EXPORT_SYMBOL_GPL vmlinux 0x031d51ab scsi_queue_work +EXPORT_SYMBOL_GPL vmlinux 0x03204754 ipv6_recv_error EXPORT_SYMBOL_GPL vmlinux 0x0321cdbf of_alias_get_highest_id -EXPORT_SYMBOL_GPL vmlinux 0x0322510e switchdev_handle_port_obj_del +EXPORT_SYMBOL_GPL vmlinux 0x032d0986 crypto_mod_put +EXPORT_SYMBOL_GPL vmlinux 0x0331f9a7 ata_host_alloc EXPORT_SYMBOL_GPL vmlinux 0x033832c7 usb_amd_hang_symptom_quirk +EXPORT_SYMBOL_GPL vmlinux 0x03383fc6 __netif_set_xps_queue +EXPORT_SYMBOL_GPL vmlinux 0x0338474c register_virtio_device EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list -EXPORT_SYMBOL_GPL vmlinux 0x034d8339 hvc_remove -EXPORT_SYMBOL_GPL vmlinux 0x034df627 devm_nvmem_register -EXPORT_SYMBOL_GPL vmlinux 0x0354409e virtqueue_kick -EXPORT_SYMBOL_GPL vmlinux 0x036152b8 nvmem_device_get -EXPORT_SYMBOL_GPL vmlinux 0x036bb30d serial8250_do_startup +EXPORT_SYMBOL_GPL vmlinux 0x0352422b skcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x0359cbde devm_ti_sci_get_handle +EXPORT_SYMBOL_GPL vmlinux 0x03699191 __fib_lookup EXPORT_SYMBOL_GPL vmlinux 0x036de383 perf_event_cgrp_subsys_enabled_key EXPORT_SYMBOL_GPL vmlinux 0x03701a42 zynqmp_pm_pinctrl_set_function -EXPORT_SYMBOL_GPL vmlinux 0x0373d0ec da903x_clr_bits -EXPORT_SYMBOL_GPL vmlinux 0x0392a81e crypto_shash_final -EXPORT_SYMBOL_GPL vmlinux 0x0394b325 i2c_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x03824364 dw_pcie_ep_init_notify +EXPORT_SYMBOL_GPL vmlinux 0x03835222 desc_to_gpio +EXPORT_SYMBOL_GPL vmlinux 0x03940f7c pci_ecam_create EXPORT_SYMBOL_GPL vmlinux 0x03952887 ktime_add_safe +EXPORT_SYMBOL_GPL vmlinux 0x03963004 raw_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x0398f23c rio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x03a0eb64 kthread_unpark +EXPORT_SYMBOL_GPL vmlinux 0x03a47e5e of_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0x03b32e28 sdio_claim_host EXPORT_SYMBOL_GPL vmlinux 0x03c12dfe cancel_work_sync -EXPORT_SYMBOL_GPL vmlinux 0x03c68675 crypto_alloc_shash -EXPORT_SYMBOL_GPL vmlinux 0x03c6906b sdio_readb +EXPORT_SYMBOL_GPL vmlinux 0x03c5b30a dw_pcie_find_ext_capability EXPORT_SYMBOL_GPL vmlinux 0x03ce7234 sched_smt_present -EXPORT_SYMBOL_GPL vmlinux 0x03e1d64d usb_hc_died -EXPORT_SYMBOL_GPL vmlinux 0x03f3c4d4 dm_copy_name_and_uuid -EXPORT_SYMBOL_GPL vmlinux 0x03f410e9 mtk_pinconf_bias_get_combo +EXPORT_SYMBOL_GPL vmlinux 0x03dcc2c7 meson_clk_pcie_pll_ops EXPORT_SYMBOL_GPL vmlinux 0x0402cbbf preempt_notifier_inc -EXPORT_SYMBOL_GPL vmlinux 0x04031b5c crypto_unregister_acomp -EXPORT_SYMBOL_GPL vmlinux 0x0408d191 ata_pci_bmdma_clear_simplex +EXPORT_SYMBOL_GPL vmlinux 0x041fb823 devlink_net +EXPORT_SYMBOL_GPL vmlinux 0x042395f5 fib_nh_common_release +EXPORT_SYMBOL_GPL vmlinux 0x0425ded1 fsstack_copy_attr_all EXPORT_SYMBOL_GPL vmlinux 0x042c9a04 em_cpu_get -EXPORT_SYMBOL_GPL vmlinux 0x0446511d switchdev_handle_port_attr_set +EXPORT_SYMBOL_GPL vmlinux 0x044482a7 usb_mon_register +EXPORT_SYMBOL_GPL vmlinux 0x0459b66e mctrl_gpio_init_noauto EXPORT_SYMBOL_GPL vmlinux 0x0465a073 regmap_reg_in_ranges +EXPORT_SYMBOL_GPL vmlinux 0x0467da2b __clk_hw_register_mux EXPORT_SYMBOL_GPL vmlinux 0x046f359e of_overlay_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x047080b0 devlink_port_region_create EXPORT_SYMBOL_GPL vmlinux 0x0472cf3b register_kprobe -EXPORT_SYMBOL_GPL vmlinux 0x0485d9df scsi_eh_ready_devs +EXPORT_SYMBOL_GPL vmlinux 0x0477c394 __bio_add_page EXPORT_SYMBOL_GPL vmlinux 0x048b5f8d twl4030_audio_get_mclk -EXPORT_SYMBOL_GPL vmlinux 0x04916b19 ata_sas_tport_delete -EXPORT_SYMBOL_GPL vmlinux 0x0498ec5f rockchip_clk_register_armclk EXPORT_SYMBOL_GPL vmlinux 0x049e5156 gnttab_try_end_foreign_access -EXPORT_SYMBOL_GPL vmlinux 0x04a6f3f2 find_extend_vma -EXPORT_SYMBOL_GPL vmlinux 0x04a75f4e clone_private_mount -EXPORT_SYMBOL_GPL vmlinux 0x04bee696 ata_sas_port_alloc +EXPORT_SYMBOL_GPL vmlinux 0x04a12933 fwnode_graph_get_endpoint_by_id +EXPORT_SYMBOL_GPL vmlinux 0x04a44528 xhci_check_bandwidth +EXPORT_SYMBOL_GPL vmlinux 0x04b9a40b kthread_park EXPORT_SYMBOL_GPL vmlinux 0x04bf0092 io_cgrp_subsys_enabled_key EXPORT_SYMBOL_GPL vmlinux 0x04c4f603 mpi_get_buffer EXPORT_SYMBOL_GPL vmlinux 0x04c8aebf console_verbose -EXPORT_SYMBOL_GPL vmlinux 0x04cf09ae inet_twsk_hashdance EXPORT_SYMBOL_GPL vmlinux 0x04df8fbc lzo1x_decompress_safe -EXPORT_SYMBOL_GPL vmlinux 0x04ed4bc2 md_bitmap_load -EXPORT_SYMBOL_GPL vmlinux 0x0507f97d of_platform_device_destroy -EXPORT_SYMBOL_GPL vmlinux 0x051c44cb do_truncate -EXPORT_SYMBOL_GPL vmlinux 0x051e1988 device_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x05021fb1 efivar_entry_delete +EXPORT_SYMBOL_GPL vmlinux 0x050ec935 iomap_ioend_try_merge +EXPORT_SYMBOL_GPL vmlinux 0x0515c9ba generic_fsdax_supported EXPORT_SYMBOL_GPL vmlinux 0x052c9aed ktime_get_real_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0x052dcc0b pid_nr_ns -EXPORT_SYMBOL_GPL vmlinux 0x052fdcb1 blk_queue_max_zone_append_sectors -EXPORT_SYMBOL_GPL vmlinux 0x053cc72b iopf_queue_add_device +EXPORT_SYMBOL_GPL vmlinux 0x0532406b ahci_host_activate +EXPORT_SYMBOL_GPL vmlinux 0x0536518c rdev_get_regmap +EXPORT_SYMBOL_GPL vmlinux 0x0536e45d pci_check_and_mask_intx EXPORT_SYMBOL_GPL vmlinux 0x053d738a __SCK__tp_func_br_fdb_update +EXPORT_SYMBOL_GPL vmlinux 0x05460546 regulator_map_voltage_ascend +EXPORT_SYMBOL_GPL vmlinux 0x054663a5 pinconf_generic_parse_dt_config +EXPORT_SYMBOL_GPL vmlinux 0x054978c1 gnttab_unmap_refs_async +EXPORT_SYMBOL_GPL vmlinux 0x054c697a dst_blackhole_redirect EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt -EXPORT_SYMBOL_GPL vmlinux 0x054e959d __inet_inherit_port -EXPORT_SYMBOL_GPL vmlinux 0x055b10a5 vring_del_virtqueue EXPORT_SYMBOL_GPL vmlinux 0x05610897 of_changeset_destroy -EXPORT_SYMBOL_GPL vmlinux 0x0562d050 fuse_fill_super_common EXPORT_SYMBOL_GPL vmlinux 0x05641313 imx_clk_hw_sscg_pll -EXPORT_SYMBOL_GPL vmlinux 0x057f674a __clk_mux_determine_rate -EXPORT_SYMBOL_GPL vmlinux 0x05808b30 vfs_test_lock +EXPORT_SYMBOL_GPL vmlinux 0x05792dc9 devm_regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x057c43bd acpi_dev_suspend 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 0x0596b653 xenbus_free_evtchn -EXPORT_SYMBOL_GPL vmlinux 0x059e1c49 dma_run_dependencies -EXPORT_SYMBOL_GPL vmlinux 0x05a049c2 simple_attr_release -EXPORT_SYMBOL_GPL vmlinux 0x05a50fd7 nl_table -EXPORT_SYMBOL_GPL vmlinux 0x05af12b5 dax_iomap_rw -EXPORT_SYMBOL_GPL vmlinux 0x05b3d7e4 power_supply_get_property -EXPORT_SYMBOL_GPL vmlinux 0x05f2d2ae fat_truncate_time -EXPORT_SYMBOL_GPL vmlinux 0x06022991 ahci_check_ready +EXPORT_SYMBOL_GPL vmlinux 0x05b4fe20 timer_unstable_counter_workaround +EXPORT_SYMBOL_GPL vmlinux 0x05c654b3 dev_pm_opp_set_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0x05e7df04 pci_set_cacheline_size +EXPORT_SYMBOL_GPL vmlinux 0x0600a3e2 netdev_walk_all_upper_dev_rcu EXPORT_SYMBOL_GPL vmlinux 0x06055a23 __tracepoint_pelt_se_tp -EXPORT_SYMBOL_GPL vmlinux 0x060883a2 pci_check_and_mask_intx EXPORT_SYMBOL_GPL vmlinux 0x06209f49 phy_lookup_setting EXPORT_SYMBOL_GPL vmlinux 0x0626da5f od_unregister_powersave_bias_handler -EXPORT_SYMBOL_GPL vmlinux 0x06270ef0 amba_bustype +EXPORT_SYMBOL_GPL vmlinux 0x062ce2f8 devres_add +EXPORT_SYMBOL_GPL vmlinux 0x062fd4e2 bpf_trace_run2 +EXPORT_SYMBOL_GPL vmlinux 0x0638dcc1 ipv6_find_tlv EXPORT_SYMBOL_GPL vmlinux 0x063e9296 rpi_firmware_put -EXPORT_SYMBOL_GPL vmlinux 0x064387c8 amba_ahb_device_add +EXPORT_SYMBOL_GPL vmlinux 0x064a1e23 dw_pcie_ep_init EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry -EXPORT_SYMBOL_GPL vmlinux 0x06583eec ahci_stop_engine -EXPORT_SYMBOL_GPL vmlinux 0x06612c6a wbc_attach_and_unlock_inode -EXPORT_SYMBOL_GPL vmlinux 0x0687bb31 iommu_map -EXPORT_SYMBOL_GPL vmlinux 0x06960230 vchan_init -EXPORT_SYMBOL_GPL vmlinux 0x06a64ef0 __put_task_struct -EXPORT_SYMBOL_GPL vmlinux 0x06c9abc1 __traceiter_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0x0660d155 devfreq_get_devfreq_by_node +EXPORT_SYMBOL_GPL vmlinux 0x066159b3 __pm_runtime_use_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x068ab547 hwspin_lock_register +EXPORT_SYMBOL_GPL vmlinux 0x069c3713 xfrm_audit_state_replay_overflow +EXPORT_SYMBOL_GPL vmlinux 0x06a0c3ab efivar_entry_set_get_size +EXPORT_SYMBOL_GPL vmlinux 0x06a17b6d gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0x06a57c7a of_map_id +EXPORT_SYMBOL_GPL vmlinux 0x06bb4526 __devm_alloc_percpu EXPORT_SYMBOL_GPL vmlinux 0x06cca30b ring_buffer_record_off -EXPORT_SYMBOL_GPL vmlinux 0x06d1787e bsg_remove_queue -EXPORT_SYMBOL_GPL vmlinux 0x06d30ba0 regulator_set_ramp_delay_regmap -EXPORT_SYMBOL_GPL vmlinux 0x06d5762c timer_unstable_counter_workaround +EXPORT_SYMBOL_GPL vmlinux 0x06ccc8fd skcipher_walk_aead_decrypt EXPORT_SYMBOL_GPL vmlinux 0x06e4433e sunxi_ccu_set_mmc_timing_mode -EXPORT_SYMBOL_GPL vmlinux 0x06fad50c usb_get_dr_mode -EXPORT_SYMBOL_GPL vmlinux 0x07001e2d pm_generic_freeze -EXPORT_SYMBOL_GPL vmlinux 0x0704853f devm_gpiod_get_index_optional -EXPORT_SYMBOL_GPL vmlinux 0x0705b81e regmap_raw_write -EXPORT_SYMBOL_GPL vmlinux 0x070ca55e __reset_control_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0x0720ca47 ata_sff_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x06ec2f11 pinctrl_select_state +EXPORT_SYMBOL_GPL vmlinux 0x06ff7fc2 pwmchip_add EXPORT_SYMBOL_GPL vmlinux 0x07242d92 put_dax -EXPORT_SYMBOL_GPL vmlinux 0x0732c99d l3mdev_master_upper_ifindex_by_index_rcu -EXPORT_SYMBOL_GPL vmlinux 0x07343e55 ping_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x0724b827 ip6_sk_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x07336cdb hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x073d8f87 virtqueue_poll +EXPORT_SYMBOL_GPL vmlinux 0x07456bcf pm_relax +EXPORT_SYMBOL_GPL vmlinux 0x07483b31 skb_segment_list EXPORT_SYMBOL_GPL vmlinux 0x07483e13 cn_del_callback EXPORT_SYMBOL_GPL vmlinux 0x074f98db synth_event_add_field -EXPORT_SYMBOL_GPL vmlinux 0x07526c58 fat_attach -EXPORT_SYMBOL_GPL vmlinux 0x075c2d46 proc_get_parent_data +EXPORT_SYMBOL_GPL vmlinux 0x0752ad55 ata_sff_check_status +EXPORT_SYMBOL_GPL vmlinux 0x075878fb iommu_register_device_fault_handler EXPORT_SYMBOL_GPL vmlinux 0x076356e7 sfp_may_have_phy EXPORT_SYMBOL_GPL vmlinux 0x07646cee ata_tf_to_fis -EXPORT_SYMBOL_GPL vmlinux 0x07722144 extcon_register_notifier_all -EXPORT_SYMBOL_GPL vmlinux 0x077a265b trace_array_get_by_name -EXPORT_SYMBOL_GPL vmlinux 0x078ddc8d crypto_unregister_shashes -EXPORT_SYMBOL_GPL vmlinux 0x079b88f1 __bio_try_merge_page -EXPORT_SYMBOL_GPL vmlinux 0x07a21c22 exportfs_decode_fh -EXPORT_SYMBOL_GPL vmlinux 0x07a4845f transport_remove_device -EXPORT_SYMBOL_GPL vmlinux 0x07aabba3 __devm_regmap_init -EXPORT_SYMBOL_GPL vmlinux 0x07ad4e63 regulator_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x077ac116 bgmac_phy_connect_direct +EXPORT_SYMBOL_GPL vmlinux 0x0791e9ae of_detach_node EXPORT_SYMBOL_GPL vmlinux 0x07b21f85 kdb_get_kbd_char EXPORT_SYMBOL_GPL vmlinux 0x07b52e38 rtnl_unregister -EXPORT_SYMBOL_GPL vmlinux 0x07b87de9 regulator_disable_deferred +EXPORT_SYMBOL_GPL vmlinux 0x07b89a00 pci_find_vsec_capability EXPORT_SYMBOL_GPL vmlinux 0x07be6905 net_inc_egress_queue -EXPORT_SYMBOL_GPL vmlinux 0x07c13171 __traceiter_xdp_exception -EXPORT_SYMBOL_GPL vmlinux 0x07c21075 devm_otg_ulpi_create -EXPORT_SYMBOL_GPL vmlinux 0x07d58977 led_trigger_set -EXPORT_SYMBOL_GPL vmlinux 0x07d6f49f mtk_hw_get_value -EXPORT_SYMBOL_GPL vmlinux 0x07e7c1f3 genphy_c45_check_and_restart_aneg -EXPORT_SYMBOL_GPL vmlinux 0x07eb87ca irq_gc_mask_set_bit -EXPORT_SYMBOL_GPL vmlinux 0x07f48b0e of_platform_depopulate +EXPORT_SYMBOL_GPL vmlinux 0x07d0ce30 sk_msg_free_nocharge +EXPORT_SYMBOL_GPL vmlinux 0x07de341f phy_set_media +EXPORT_SYMBOL_GPL vmlinux 0x07e42f1d ata_link_offline +EXPORT_SYMBOL_GPL vmlinux 0x07e43990 devlink_dpipe_table_counter_enabled EXPORT_SYMBOL_GPL vmlinux 0x08135613 dax_write_cache -EXPORT_SYMBOL_GPL vmlinux 0x081f00fd usb_add_phy_dev -EXPORT_SYMBOL_GPL vmlinux 0x082c4ad4 iommu_group_remove_device -EXPORT_SYMBOL_GPL vmlinux 0x083818bc od_register_powersave_bias_handler -EXPORT_SYMBOL_GPL vmlinux 0x0840b588 device_bind_driver -EXPORT_SYMBOL_GPL vmlinux 0x084ab6ff memunmap_pages -EXPORT_SYMBOL_GPL vmlinux 0x084ce1a3 user_read -EXPORT_SYMBOL_GPL vmlinux 0x084dc306 blk_lld_busy -EXPORT_SYMBOL_GPL vmlinux 0x0850d567 blk_queue_set_zoned +EXPORT_SYMBOL_GPL vmlinux 0x08329e21 edac_pci_del_device +EXPORT_SYMBOL_GPL vmlinux 0x084b01cd __traceiter_xdp_exception +EXPORT_SYMBOL_GPL vmlinux 0x084c520c dax_writeback_mapping_range +EXPORT_SYMBOL_GPL vmlinux 0x084cee06 kthread_flush_worker +EXPORT_SYMBOL_GPL vmlinux 0x0856fade devm_rtc_nvmem_register EXPORT_SYMBOL_GPL vmlinux 0x08576175 unregister_kretprobes -EXPORT_SYMBOL_GPL vmlinux 0x085911ea hisi_uncore_pmu_init_irq EXPORT_SYMBOL_GPL vmlinux 0x085bffd1 trace_seq_bitmask -EXPORT_SYMBOL_GPL vmlinux 0x085ea0ab dax_region_put -EXPORT_SYMBOL_GPL vmlinux 0x085ec194 fwnode_property_match_string -EXPORT_SYMBOL_GPL vmlinux 0x087016fc kobject_uevent_env +EXPORT_SYMBOL_GPL vmlinux 0x085e9726 devm_acpi_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x08600c1d ptp_classify_raw +EXPORT_SYMBOL_GPL vmlinux 0x08682964 netdev_rx_handler_unregister EXPORT_SYMBOL_GPL vmlinux 0x087f5dc5 wm831x_of_match -EXPORT_SYMBOL_GPL vmlinux 0x08803af0 security_path_rmdir -EXPORT_SYMBOL_GPL vmlinux 0x0884a214 fat_free_clusters -EXPORT_SYMBOL_GPL vmlinux 0x08a0bf3a nvdimm_to_bus -EXPORT_SYMBOL_GPL vmlinux 0x08b2949e dm_internal_resume_fast -EXPORT_SYMBOL_GPL vmlinux 0x08b3a2fc peernet2id_alloc -EXPORT_SYMBOL_GPL vmlinux 0x08c6de5e regulator_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0x0880c1cf __udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x088856ca blk_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0x0899ec7e tcp_ca_openreq_child +EXPORT_SYMBOL_GPL vmlinux 0x08a7c19e ncsi_stop_dev +EXPORT_SYMBOL_GPL vmlinux 0x08aa06c7 fat_detach +EXPORT_SYMBOL_GPL vmlinux 0x08b05190 set_online_page_callback +EXPORT_SYMBOL_GPL vmlinux 0x08bb74f0 kvm_vcpu_map EXPORT_SYMBOL_GPL vmlinux 0x08c78cf7 offline_and_remove_memory -EXPORT_SYMBOL_GPL vmlinux 0x08ccf552 iomap_fiemap -EXPORT_SYMBOL_GPL vmlinux 0x08e11b47 rockchip_clk_of_add_provider -EXPORT_SYMBOL_GPL vmlinux 0x08f79e44 cgrp_dfl_root +EXPORT_SYMBOL_GPL vmlinux 0x08d00353 ohci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0x08d29110 key_type_encrypted +EXPORT_SYMBOL_GPL vmlinux 0x08d85175 irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x08de0f9d pci_hp_create_module_link +EXPORT_SYMBOL_GPL vmlinux 0x08f9adb6 clean_acked_data_enable EXPORT_SYMBOL_GPL vmlinux 0x0907d14d blocking_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x090e10cd usb_alloc_streams +EXPORT_SYMBOL_GPL vmlinux 0x09100843 genphy_c45_pma_read_abilities EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x092b3302 hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x092f4063 acpiphp_unregister_attention EXPORT_SYMBOL_GPL vmlinux 0x09337cd0 __wake_up_locked_key EXPORT_SYMBOL_GPL vmlinux 0x093786cf synth_event_add_field_str -EXPORT_SYMBOL_GPL vmlinux 0x0937bec8 sdio_writesb -EXPORT_SYMBOL_GPL vmlinux 0x0949f4a6 xen_remap_vma_range -EXPORT_SYMBOL_GPL vmlinux 0x096e0259 of_get_named_gpio_flags -EXPORT_SYMBOL_GPL vmlinux 0x099f25b4 ata_cable_80wire -EXPORT_SYMBOL_GPL vmlinux 0x09a4d78e pci_epc_map_addr -EXPORT_SYMBOL_GPL vmlinux 0x09ac7525 blkg_rwstat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0x095f9a32 regmap_reinit_cache +EXPORT_SYMBOL_GPL vmlinux 0x096e26a2 gpiochip_populate_parent_fwspec_fourcell +EXPORT_SYMBOL_GPL vmlinux 0x097027e4 dev_pm_opp_put_prop_name +EXPORT_SYMBOL_GPL vmlinux 0x097cfc20 of_genpd_add_device +EXPORT_SYMBOL_GPL vmlinux 0x0984aa4a iommu_group_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x099b1168 phy_create EXPORT_SYMBOL_GPL vmlinux 0x09b53e14 interval_tree_remove -EXPORT_SYMBOL_GPL vmlinux 0x09b642b0 mtk_is_virt_gpio -EXPORT_SYMBOL_GPL vmlinux 0x09c38735 fscrypt_prepare_new_inode -EXPORT_SYMBOL_GPL vmlinux 0x09d60fd2 thermal_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x09b9c332 mbox_flush +EXPORT_SYMBOL_GPL vmlinux 0x09c1adf3 device_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0x09cfe686 acct_bioset_exit +EXPORT_SYMBOL_GPL vmlinux 0x09d61cc1 mmu_notifier_register EXPORT_SYMBOL_GPL vmlinux 0x09d63265 list_lru_count_node -EXPORT_SYMBOL_GPL vmlinux 0x09d770c5 iomap_page_mkwrite -EXPORT_SYMBOL_GPL vmlinux 0x09e2ad2a ip_route_output_flow -EXPORT_SYMBOL_GPL vmlinux 0x09e6293b nvmem_device_find -EXPORT_SYMBOL_GPL vmlinux 0x0a088a99 dax_writeback_mapping_range -EXPORT_SYMBOL_GPL vmlinux 0x0a0ca339 pinconf_generic_dt_node_to_map -EXPORT_SYMBOL_GPL vmlinux 0x0a30b977 thermal_zone_get_zone_by_name +EXPORT_SYMBOL_GPL vmlinux 0x09d7bf00 dev_set_name +EXPORT_SYMBOL_GPL vmlinux 0x09e43b94 crypto_stats_kpp_generate_public_key +EXPORT_SYMBOL_GPL vmlinux 0x09f576cb screen_glyph +EXPORT_SYMBOL_GPL vmlinux 0x09fee93d devlink_resource_size_get +EXPORT_SYMBOL_GPL vmlinux 0x0a00d15e thermal_zone_unbind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0x0a13961b pci_dev_trylock +EXPORT_SYMBOL_GPL vmlinux 0x0a1a7475 dma_buf_end_cpu_access +EXPORT_SYMBOL_GPL vmlinux 0x0a1abe5e devm_request_pci_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0x0a209480 __traceiter_devlink_hwmsg EXPORT_SYMBOL_GPL vmlinux 0x0a463293 __tracepoint_error_report_end +EXPORT_SYMBOL_GPL vmlinux 0x0a514c77 __put_net EXPORT_SYMBOL_GPL vmlinux 0x0a52c511 hv_query_ext_cap -EXPORT_SYMBOL_GPL vmlinux 0x0a573b8e rt_mutex_lock -EXPORT_SYMBOL_GPL vmlinux 0x0a576160 md_new_event -EXPORT_SYMBOL_GPL vmlinux 0x0a62c690 sk_msg_clone +EXPORT_SYMBOL_GPL vmlinux 0x0a54a6e2 regulator_disable_regmap EXPORT_SYMBOL_GPL vmlinux 0x0a6c4041 cn_netlink_send -EXPORT_SYMBOL_GPL vmlinux 0x0a6d05a2 regulator_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0x0a6e1eaa devm_pm_opp_set_supported_hw +EXPORT_SYMBOL_GPL vmlinux 0x0a7916a0 gnttab_map_refs EXPORT_SYMBOL_GPL vmlinux 0x0a7ceb30 __tracepoint_non_standard_event -EXPORT_SYMBOL_GPL vmlinux 0x0aa14fdf devm_regulator_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0x0aa6f90e component_add +EXPORT_SYMBOL_GPL vmlinux 0x0a7f460b devm_regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x0a950b2e iommu_fwspec_free +EXPORT_SYMBOL_GPL vmlinux 0x0a956b4f clk_bulk_get_optional EXPORT_SYMBOL_GPL vmlinux 0x0abc6be6 k3_ringacc_ring_is_full EXPORT_SYMBOL_GPL vmlinux 0x0abcbf05 pkcs7_parse_message -EXPORT_SYMBOL_GPL vmlinux 0x0adb4351 pci_status_get_and_clear_errors +EXPORT_SYMBOL_GPL vmlinux 0x0af188a5 scsi_flush_work EXPORT_SYMBOL_GPL vmlinux 0x0af40724 iommu_alloc_resv_region -EXPORT_SYMBOL_GPL vmlinux 0x0af6e352 kvm_vcpu_unmap +EXPORT_SYMBOL_GPL vmlinux 0x0b023a87 xdp_rxq_info_unused EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct -EXPORT_SYMBOL_GPL vmlinux 0x0b07e0c5 mmc_crypto_setup_queue -EXPORT_SYMBOL_GPL vmlinux 0x0b082f9e bpf_prog_put +EXPORT_SYMBOL_GPL vmlinux 0x0b0f7b07 skb_mpls_push +EXPORT_SYMBOL_GPL vmlinux 0x0b18645f ahci_platform_get_resources +EXPORT_SYMBOL_GPL vmlinux 0x0b26a31c netdev_walk_all_lower_dev_rcu +EXPORT_SYMBOL_GPL vmlinux 0x0b2d4805 irq_domain_get_irq_data EXPORT_SYMBOL_GPL vmlinux 0x0b2db2d5 remove_resource EXPORT_SYMBOL_GPL vmlinux 0x0b3a3ed7 zynqmp_pm_fpga_get_status -EXPORT_SYMBOL_GPL vmlinux 0x0b3c0025 __kernel_write -EXPORT_SYMBOL_GPL vmlinux 0x0b40e8ff virtqueue_kick_prepare -EXPORT_SYMBOL_GPL vmlinux 0x0b453310 regmap_add_irq_chip_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x0b4967c6 handle_fasteoi_ack_irq +EXPORT_SYMBOL_GPL vmlinux 0x0b3f7300 nl_table +EXPORT_SYMBOL_GPL vmlinux 0x0b423c00 __traceiter_wbc_writepage EXPORT_SYMBOL_GPL vmlinux 0x0b52e502 apei_resources_add -EXPORT_SYMBOL_GPL vmlinux 0x0b5be09f usb_unlocked_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x0b559904 __device_reset EXPORT_SYMBOL_GPL vmlinux 0x0b690f04 k3_udma_glue_tx_get_txcq_id -EXPORT_SYMBOL_GPL vmlinux 0x0b734cca acpi_device_get_match_data -EXPORT_SYMBOL_GPL vmlinux 0x0b7e423e tty_ldisc_ref_wait -EXPORT_SYMBOL_GPL vmlinux 0x0b85e798 spi_mem_dirmap_create -EXPORT_SYMBOL_GPL vmlinux 0x0b89eb0d led_set_brightness_sync -EXPORT_SYMBOL_GPL vmlinux 0x0b8cb1f8 devlink_param_unpublish -EXPORT_SYMBOL_GPL vmlinux 0x0ba7f9bd serdev_device_write_buf +EXPORT_SYMBOL_GPL vmlinux 0x0b712c06 pci_vfs_assigned +EXPORT_SYMBOL_GPL vmlinux 0x0b82e263 acpi_dev_remove_driver_gpios +EXPORT_SYMBOL_GPL vmlinux 0x0b85bd37 usb_interrupt_msg +EXPORT_SYMBOL_GPL vmlinux 0x0ba3b958 sk_msg_free_partial +EXPORT_SYMBOL_GPL vmlinux 0x0ba55371 get_device EXPORT_SYMBOL_GPL vmlinux 0x0bb028d4 hisi_clk_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x0bba7e90 free_fib_info EXPORT_SYMBOL_GPL vmlinux 0x0bbdc9b2 remove_memory -EXPORT_SYMBOL_GPL vmlinux 0x0bbef02b dev_pm_opp_get_freq -EXPORT_SYMBOL_GPL vmlinux 0x0bc26281 serial8250_do_set_divisor -EXPORT_SYMBOL_GPL vmlinux 0x0bd02992 skb_cow_data -EXPORT_SYMBOL_GPL vmlinux 0x0bd79475 extcon_get_property_capability -EXPORT_SYMBOL_GPL vmlinux 0x0bd7aaef __page_file_mapping -EXPORT_SYMBOL_GPL vmlinux 0x0bdb89bf regmap_async_complete_cb -EXPORT_SYMBOL_GPL vmlinux 0x0be6d6f8 irq_alloc_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x0be86e74 uart_handle_dcd_change -EXPORT_SYMBOL_GPL vmlinux 0x0bee0288 led_put +EXPORT_SYMBOL_GPL vmlinux 0x0bc46851 of_k3_ringacc_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x0bcecc5a devm_extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0bd39cec ata_pci_bmdma_init +EXPORT_SYMBOL_GPL vmlinux 0x0bdfd3c6 badblocks_exit EXPORT_SYMBOL_GPL vmlinux 0x0bf32478 __SCK__tp_func_pelt_rt_tp EXPORT_SYMBOL_GPL vmlinux 0x0bfa3a19 rcu_idle_exit -EXPORT_SYMBOL_GPL vmlinux 0x0bfae1af lp8788_write_byte -EXPORT_SYMBOL_GPL vmlinux 0x0bfcdf79 ata_platform_remove_one -EXPORT_SYMBOL_GPL vmlinux 0x0bfcf6ae pci_rescan_bus -EXPORT_SYMBOL_GPL vmlinux 0x0c03fc32 ata_sff_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x0bfeeab0 of_reserved_mem_lookup +EXPORT_SYMBOL_GPL vmlinux 0x0c14bd92 clk_gate_restore_context +EXPORT_SYMBOL_GPL vmlinux 0x0c258b4d virtqueue_enable_cb +EXPORT_SYMBOL_GPL vmlinux 0x0c262493 input_ff_destroy +EXPORT_SYMBOL_GPL vmlinux 0x0c2aed26 get_task_pid EXPORT_SYMBOL_GPL vmlinux 0x0c2c5802 work_busy EXPORT_SYMBOL_GPL vmlinux 0x0c32ff8a edac_pci_alloc_index -EXPORT_SYMBOL_GPL vmlinux 0x0c38cfbc dst_cache_get_ip6 +EXPORT_SYMBOL_GPL vmlinux 0x0c386a93 fscrypt_show_test_dummy_encryption EXPORT_SYMBOL_GPL vmlinux 0x0c3e6241 k3_udma_glue_disable_rx_chn -EXPORT_SYMBOL_GPL vmlinux 0x0c3eccfe fsverity_prepare_setattr -EXPORT_SYMBOL_GPL vmlinux 0x0c41211a class_remove_file_ns -EXPORT_SYMBOL_GPL vmlinux 0x0c49b62f relay_reset -EXPORT_SYMBOL_GPL vmlinux 0x0c500829 trace_output_call -EXPORT_SYMBOL_GPL vmlinux 0x0c52e97e clk_hw_register_composite -EXPORT_SYMBOL_GPL vmlinux 0x0c6a4d77 phy_pm_runtime_put -EXPORT_SYMBOL_GPL vmlinux 0x0c858c60 __efivar_entry_delete +EXPORT_SYMBOL_GPL vmlinux 0x0c6b3f95 meson_eeclkc_probe +EXPORT_SYMBOL_GPL vmlinux 0x0c7f8158 fwnode_property_get_reference_args EXPORT_SYMBOL_GPL vmlinux 0x0c88c1c3 pci_vpd_find_id_string -EXPORT_SYMBOL_GPL vmlinux 0x0c88da68 pinctrl_add_gpio_range -EXPORT_SYMBOL_GPL vmlinux 0x0c8dfaa1 __hvc_resize -EXPORT_SYMBOL_GPL vmlinux 0x0ca3d491 crypto_enqueue_request -EXPORT_SYMBOL_GPL vmlinux 0x0ca8fbb0 mtk_pinconf_adv_drive_get_raw -EXPORT_SYMBOL_GPL vmlinux 0x0cba3c6a ping_queue_rcv_skb -EXPORT_SYMBOL_GPL vmlinux 0x0cbc3ae7 inet_unhash +EXPORT_SYMBOL_GPL vmlinux 0x0c88e679 trace_get_event_file +EXPORT_SYMBOL_GPL vmlinux 0x0c948506 device_for_each_child_reverse +EXPORT_SYMBOL_GPL vmlinux 0x0c9cd378 devres_open_group +EXPORT_SYMBOL_GPL vmlinux 0x0ca34d91 regulator_put +EXPORT_SYMBOL_GPL vmlinux 0x0ca446ff ipv6_stub EXPORT_SYMBOL_GPL vmlinux 0x0cbe3ee2 software_node_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0ccd335e iommu_map EXPORT_SYMBOL_GPL vmlinux 0x0ccf5275 zynqmp_pm_pinctrl_get_config -EXPORT_SYMBOL_GPL vmlinux 0x0cd83c81 fuse_dev_install +EXPORT_SYMBOL_GPL vmlinux 0x0cd44966 component_add +EXPORT_SYMBOL_GPL vmlinux 0x0cd4c002 regulator_disable_deferred EXPORT_SYMBOL_GPL vmlinux 0x0ce3dd73 bman_is_probed -EXPORT_SYMBOL_GPL vmlinux 0x0cf79835 __regmap_init_i2c -EXPORT_SYMBOL_GPL vmlinux 0x0cf9b35c devlink_net -EXPORT_SYMBOL_GPL vmlinux 0x0d0454ad pinctrl_pm_select_sleep_state -EXPORT_SYMBOL_GPL vmlinux 0x0d0e7b48 of_find_spi_device_by_node -EXPORT_SYMBOL_GPL vmlinux 0x0d3604d2 hisi_reset_init +EXPORT_SYMBOL_GPL vmlinux 0x0cea4653 scsi_dh_set_params +EXPORT_SYMBOL_GPL vmlinux 0x0cf1ac57 dpcon_open +EXPORT_SYMBOL_GPL vmlinux 0x0d049eae of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0d078155 ata_port_wait_eh +EXPORT_SYMBOL_GPL vmlinux 0x0d0f4048 ata_noop_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x0d169e0b pinctrl_find_and_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x0d1b6d80 devm_gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0x0d2a705e i2c_dw_acpi_configure +EXPORT_SYMBOL_GPL vmlinux 0x0d33be0f of_platform_depopulate +EXPORT_SYMBOL_GPL vmlinux 0x0d341141 ti_sci_inta_msi_domain_alloc_irqs +EXPORT_SYMBOL_GPL vmlinux 0x0d407103 __class_register EXPORT_SYMBOL_GPL vmlinux 0x0d459213 work_on_cpu_safe EXPORT_SYMBOL_GPL vmlinux 0x0d4961de nf_log_buf_open -EXPORT_SYMBOL_GPL vmlinux 0x0d49bd02 crypto_register_aeads -EXPORT_SYMBOL_GPL vmlinux 0x0d4a4670 genphy_c45_read_link EXPORT_SYMBOL_GPL vmlinux 0x0d4e3f8c iopf_queue_alloc -EXPORT_SYMBOL_GPL vmlinux 0x0d50f1cd ata_acpi_gtm_xfermask -EXPORT_SYMBOL_GPL vmlinux 0x0d5913a0 genphy_c45_read_pma +EXPORT_SYMBOL_GPL vmlinux 0x0d4e9da2 ping_queue_rcv_skb +EXPORT_SYMBOL_GPL vmlinux 0x0d56565e ata_bmdma_dumb_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x0d5753fc edac_device_del_device EXPORT_SYMBOL_GPL vmlinux 0x0d5cecc6 ima_measure_critical_data -EXPORT_SYMBOL_GPL vmlinux 0x0d87bded gnttab_unmap_refs_sync -EXPORT_SYMBOL_GPL vmlinux 0x0d8be68d vga_default_device -EXPORT_SYMBOL_GPL vmlinux 0x0d8da256 devm_phy_package_join -EXPORT_SYMBOL_GPL vmlinux 0x0d92d189 gen_pool_get -EXPORT_SYMBOL_GPL vmlinux 0x0d938f93 phy_exit -EXPORT_SYMBOL_GPL vmlinux 0x0d96e6cd devlink_resources_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0d9a653b pcie_aspm_capable -EXPORT_SYMBOL_GPL vmlinux 0x0d9c64bf ahci_set_em_messages -EXPORT_SYMBOL_GPL vmlinux 0x0da9c732 put_device -EXPORT_SYMBOL_GPL vmlinux 0x0dc0421b ata_bmdma32_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x0dceb95b __rio_local_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x0d5ff698 netdev_rx_handler_register +EXPORT_SYMBOL_GPL vmlinux 0x0d633741 crypto_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x0d672798 sk_msg_memcopy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0x0d678ec5 kernfs_path_from_node +EXPORT_SYMBOL_GPL vmlinux 0x0d70ae56 crypto_stats_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x0d7a908d serial8250_do_startup +EXPORT_SYMBOL_GPL vmlinux 0x0d874af9 bgmac_enet_suspend +EXPORT_SYMBOL_GPL vmlinux 0x0d8a74d0 event_triggers_post_call +EXPORT_SYMBOL_GPL vmlinux 0x0dadc8d3 spi_controller_resume +EXPORT_SYMBOL_GPL vmlinux 0x0db22d26 ahci_check_ready +EXPORT_SYMBOL_GPL vmlinux 0x0dd87ae3 security_path_chmod EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order -EXPORT_SYMBOL_GPL vmlinux 0x0df15043 pinctrl_generic_get_group -EXPORT_SYMBOL_GPL vmlinux 0x0df2eb73 bdev_disk_changed -EXPORT_SYMBOL_GPL vmlinux 0x0df85d7e msg_zerocopy_realloc +EXPORT_SYMBOL_GPL vmlinux 0x0ddc7dab pcie_reset_flr +EXPORT_SYMBOL_GPL vmlinux 0x0de9845d usb_hcd_pci_remove +EXPORT_SYMBOL_GPL vmlinux 0x0df2e226 pci_iomap_wc +EXPORT_SYMBOL_GPL vmlinux 0x0df4a953 acpi_device_get_match_data +EXPORT_SYMBOL_GPL vmlinux 0x0df6923e divider_recalc_rate +EXPORT_SYMBOL_GPL vmlinux 0x0df96a9e usb_hcd_link_urb_to_ep EXPORT_SYMBOL_GPL vmlinux 0x0e007edf xen_evtchn_nr_channels -EXPORT_SYMBOL_GPL vmlinux 0x0e055b65 spi_finalize_current_message -EXPORT_SYMBOL_GPL vmlinux 0x0e0e3123 cpufreq_dbs_governor_limits EXPORT_SYMBOL_GPL vmlinux 0x0e1194d5 hrtimer_try_to_cancel EXPORT_SYMBOL_GPL vmlinux 0x0e13cb4d apei_resources_release -EXPORT_SYMBOL_GPL vmlinux 0x0e1e96b1 pwm_set_chip_data -EXPORT_SYMBOL_GPL vmlinux 0x0e207fb1 __mmu_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x0e221920 of_reserved_mem_device_init_by_idx -EXPORT_SYMBOL_GPL vmlinux 0x0e2cb73e bsg_job_get -EXPORT_SYMBOL_GPL vmlinux 0x0e2e7ce5 kthread_use_mm -EXPORT_SYMBOL_GPL vmlinux 0x0e3d823d tcp_done -EXPORT_SYMBOL_GPL vmlinux 0x0e4893ed clk_hw_is_prepared -EXPORT_SYMBOL_GPL vmlinux 0x0e48ec0c powercap_register_zone -EXPORT_SYMBOL_GPL vmlinux 0x0e57b8b1 spi_take_timestamp_pre -EXPORT_SYMBOL_GPL vmlinux 0x0e5a00f0 devm_gpiod_get_index -EXPORT_SYMBOL_GPL vmlinux 0x0e63b6b6 xenbus_dev_is_online -EXPORT_SYMBOL_GPL vmlinux 0x0e68d343 of_alias_get_id +EXPORT_SYMBOL_GPL vmlinux 0x0e14cf4c dma_request_chan +EXPORT_SYMBOL_GPL vmlinux 0x0e3c83ee wm8350_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0x0e58f815 crypto_unregister_shash +EXPORT_SYMBOL_GPL vmlinux 0x0e683f0d __traceiter_pelt_dl_tp EXPORT_SYMBOL_GPL vmlinux 0x0e6b79af static_key_disable_cpuslocked -EXPORT_SYMBOL_GPL vmlinux 0x0e79910c kvm_write_guest -EXPORT_SYMBOL_GPL vmlinux 0x0e91a6e2 gnttab_unmap_refs -EXPORT_SYMBOL_GPL vmlinux 0x0e9f5fc3 tty_release_struct -EXPORT_SYMBOL_GPL vmlinux 0x0ea53593 noop_direct_IO +EXPORT_SYMBOL_GPL vmlinux 0x0e763dfe clockevents_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0x0e831fca ata_sas_port_init +EXPORT_SYMBOL_GPL vmlinux 0x0e838cca iommu_detach_group +EXPORT_SYMBOL_GPL vmlinux 0x0e84eab5 mbox_send_message +EXPORT_SYMBOL_GPL vmlinux 0x0e8695ca wbc_detach_inode +EXPORT_SYMBOL_GPL vmlinux 0x0e925119 platform_get_irq +EXPORT_SYMBOL_GPL vmlinux 0x0e930e23 param_set_uint_minmax +EXPORT_SYMBOL_GPL vmlinux 0x0e944445 usb_hcd_poll_rh_status +EXPORT_SYMBOL_GPL vmlinux 0x0e983dd3 debugfs_create_x16 +EXPORT_SYMBOL_GPL vmlinux 0x0e9b26c8 bd_prepare_to_claim EXPORT_SYMBOL_GPL vmlinux 0x0ea5cbce xen_irq_lateeoi -EXPORT_SYMBOL_GPL vmlinux 0x0eb23969 mtk_pctrl_show_one_pin -EXPORT_SYMBOL_GPL vmlinux 0x0ebd66e9 ata_sff_freeze +EXPORT_SYMBOL_GPL vmlinux 0x0eb48b55 of_irq_parse_raw EXPORT_SYMBOL_GPL vmlinux 0x0ec096b0 hv_read_reference_counter -EXPORT_SYMBOL_GPL vmlinux 0x0ec97376 serial8250_em485_config -EXPORT_SYMBOL_GPL vmlinux 0x0ed64551 devlink_port_type_ib_set -EXPORT_SYMBOL_GPL vmlinux 0x0ed9a729 xfrm_audit_policy_delete -EXPORT_SYMBOL_GPL vmlinux 0x0eea89ff cpufreq_disable_fast_switch -EXPORT_SYMBOL_GPL vmlinux 0x0eedb82a account_locked_vm -EXPORT_SYMBOL_GPL vmlinux 0x0ef11474 i2c_dw_prepare_clk -EXPORT_SYMBOL_GPL vmlinux 0x0f0514f0 usb_add_phy -EXPORT_SYMBOL_GPL vmlinux 0x0f0da291 pci_create_slot +EXPORT_SYMBOL_GPL vmlinux 0x0ecdd6e6 sdio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x0ee42c31 debugfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x0ef6ea3d irq_domain_create_legacy +EXPORT_SYMBOL_GPL vmlinux 0x0efbe082 devm_hwspin_lock_free +EXPORT_SYMBOL_GPL vmlinux 0x0efc92bf phy_check_downshift +EXPORT_SYMBOL_GPL vmlinux 0x0f08072e pm_runtime_get_if_active EXPORT_SYMBOL_GPL vmlinux 0x0f180070 ring_buffer_free_read_page -EXPORT_SYMBOL_GPL vmlinux 0x0f1fd131 shash_ahash_digest -EXPORT_SYMBOL_GPL vmlinux 0x0f2a9b5a pinctrl_enable -EXPORT_SYMBOL_GPL vmlinux 0x0f2e4af8 devlink_trap_groups_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0f346fd0 devlink_region_snapshot_id_put -EXPORT_SYMBOL_GPL vmlinux 0x0f3ea7b1 irq_domain_create_simple -EXPORT_SYMBOL_GPL vmlinux 0x0f70ff04 da9052_request_irq +EXPORT_SYMBOL_GPL vmlinux 0x0f22fbe9 pci_epc_init_notify +EXPORT_SYMBOL_GPL vmlinux 0x0f54e8d2 of_mm_gpiochip_remove EXPORT_SYMBOL_GPL vmlinux 0x0f72ada1 acpi_dev_resource_io +EXPORT_SYMBOL_GPL vmlinux 0x0f7314d5 handle_level_irq +EXPORT_SYMBOL_GPL vmlinux 0x0f746953 usb_acpi_power_manageable EXPORT_SYMBOL_GPL vmlinux 0x0f7ca236 dmi_memdev_name -EXPORT_SYMBOL_GPL vmlinux 0x0f8a880a __alloc_pages_bulk EXPORT_SYMBOL_GPL vmlinux 0x0f8bce10 __traceiter_sched_overutilized_tp -EXPORT_SYMBOL_GPL vmlinux 0x0f91505f auxiliary_find_device -EXPORT_SYMBOL_GPL vmlinux 0x0f9da88c handle_fasteoi_nmi -EXPORT_SYMBOL_GPL vmlinux 0x0f9fff07 of_genpd_del_provider -EXPORT_SYMBOL_GPL vmlinux 0x0fb7888c pci_bridge_secondary_bus_reset +EXPORT_SYMBOL_GPL vmlinux 0x0f93db2a usb_alloc_dev +EXPORT_SYMBOL_GPL vmlinux 0x0f9f28d0 unregister_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x0fa03f95 crypto_unregister_shashes +EXPORT_SYMBOL_GPL vmlinux 0x0fb33ce5 dmaengine_desc_attach_metadata +EXPORT_SYMBOL_GPL vmlinux 0x0fb9678b skb_mpls_dec_ttl +EXPORT_SYMBOL_GPL vmlinux 0x0fbadf75 sysfs_remove_link EXPORT_SYMBOL_GPL vmlinux 0x0fbb7344 memremap_compat_align +EXPORT_SYMBOL_GPL vmlinux 0x0fbda1dd unregister_wide_hw_breakpoint EXPORT_SYMBOL_GPL vmlinux 0x0fd4610e kmem_dump_obj -EXPORT_SYMBOL_GPL vmlinux 0x0fd6563d pinctrl_select_state -EXPORT_SYMBOL_GPL vmlinux 0x10043716 rio_del_device -EXPORT_SYMBOL_GPL vmlinux 0x10086f84 scsi_dh_activate +EXPORT_SYMBOL_GPL vmlinux 0x0fe01faf dev_coredumpm +EXPORT_SYMBOL_GPL vmlinux 0x0ff8e44c watchdog_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x1009c6da devm_rtc_device_register EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on -EXPORT_SYMBOL_GPL vmlinux 0x1016d91a bpf_prog_free -EXPORT_SYMBOL_GPL vmlinux 0x102572ce devlink_health_reporter_create -EXPORT_SYMBOL_GPL vmlinux 0x102ff641 regulator_bulk_force_disable -EXPORT_SYMBOL_GPL vmlinux 0x10444817 percpu_up_write -EXPORT_SYMBOL_GPL vmlinux 0x1055cd2e of_device_uevent_modalias -EXPORT_SYMBOL_GPL vmlinux 0x105f7ef0 sk_setup_caps -EXPORT_SYMBOL_GPL vmlinux 0x10625994 phy_modify -EXPORT_SYMBOL_GPL vmlinux 0x10885e30 mmc_send_abort_tuning +EXPORT_SYMBOL_GPL vmlinux 0x102182f2 spi_mem_driver_register_with_owner +EXPORT_SYMBOL_GPL vmlinux 0x1022bc4f pm_generic_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x10316da8 edac_mc_del_mc +EXPORT_SYMBOL_GPL vmlinux 0x103fff79 sdev_evt_send_simple +EXPORT_SYMBOL_GPL vmlinux 0x10474cc7 virtio_config_changed +EXPORT_SYMBOL_GPL vmlinux 0x10670157 nf_queue_entry_free +EXPORT_SYMBOL_GPL vmlinux 0x107b02a2 __traceiter_neigh_cleanup_and_release EXPORT_SYMBOL_GPL vmlinux 0x108a0acd bstr_printf -EXPORT_SYMBOL_GPL vmlinux 0x109a7c20 sdio_claim_host -EXPORT_SYMBOL_GPL vmlinux 0x109cf0db devm_clk_hw_register_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0x10a7a5cc usb_get_from_anchor -EXPORT_SYMBOL_GPL vmlinux 0x10c5f615 input_ff_upload -EXPORT_SYMBOL_GPL vmlinux 0x10ca179c misc_cg_uncharge -EXPORT_SYMBOL_GPL vmlinux 0x10cefa03 tpm_pcr_read -EXPORT_SYMBOL_GPL vmlinux 0x10e4bb4a ata_sas_async_probe -EXPORT_SYMBOL_GPL vmlinux 0x10ec8537 ata_link_abort +EXPORT_SYMBOL_GPL vmlinux 0x108e81e4 device_find_child_by_name +EXPORT_SYMBOL_GPL vmlinux 0x10d9ddba usb_string +EXPORT_SYMBOL_GPL vmlinux 0x10e220d8 dax_attribute_group EXPORT_SYMBOL_GPL vmlinux 0x10ecc52c usb_amd_quirk_pll_enable -EXPORT_SYMBOL_GPL vmlinux 0x10ee90c7 blk_mq_pci_map_queues -EXPORT_SYMBOL_GPL vmlinux 0x10f2a852 cpci_hp_unregister_bus +EXPORT_SYMBOL_GPL vmlinux 0x10f071f2 dev_pm_opp_remove_all_dynamic +EXPORT_SYMBOL_GPL vmlinux 0x10fa195d strp_check_rcv EXPORT_SYMBOL_GPL vmlinux 0x110106c1 cper_severity_to_aer -EXPORT_SYMBOL_GPL vmlinux 0x110b7f1c fat_flush_inodes -EXPORT_SYMBOL_GPL vmlinux 0x111197d5 power_supply_am_i_supplied -EXPORT_SYMBOL_GPL vmlinux 0x111db62b generic_fh_to_parent -EXPORT_SYMBOL_GPL vmlinux 0x1130ee88 crypto_unregister_rngs -EXPORT_SYMBOL_GPL vmlinux 0x1139bf90 da9055_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0x113d38c6 pci_user_read_config_word -EXPORT_SYMBOL_GPL vmlinux 0x11466f23 clk_divider_ops -EXPORT_SYMBOL_GPL vmlinux 0x114e4aef dma_buf_mmap -EXPORT_SYMBOL_GPL vmlinux 0x115effad fwnode_usb_role_switch_get -EXPORT_SYMBOL_GPL vmlinux 0x11629ec7 usb_autopm_put_interface_async -EXPORT_SYMBOL_GPL vmlinux 0x118228dd devlink_dpipe_entry_ctx_prepare -EXPORT_SYMBOL_GPL vmlinux 0x118d5d7d pwm_free -EXPORT_SYMBOL_GPL vmlinux 0x119b38c1 __mmdrop +EXPORT_SYMBOL_GPL vmlinux 0x1106b854 acct_bioset_init +EXPORT_SYMBOL_GPL vmlinux 0x1121bae0 dma_get_any_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x11510f0b mptcp_pm_get_add_addr_signal_max +EXPORT_SYMBOL_GPL vmlinux 0x1164b5a1 __efivar_entry_iter +EXPORT_SYMBOL_GPL vmlinux 0x116d3ffd devm_pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x117bf6e8 mtk_pinconf_bias_get_combo +EXPORT_SYMBOL_GPL vmlinux 0x118093f9 serial8250_release_dma +EXPORT_SYMBOL_GPL vmlinux 0x1197c950 genphy_c45_read_pma EXPORT_SYMBOL_GPL vmlinux 0x11a2e0ac crypto_dh_key_len -EXPORT_SYMBOL_GPL vmlinux 0x11a9ef03 pci_d3cold_enable -EXPORT_SYMBOL_GPL vmlinux 0x11b868f5 dev_pm_opp_of_get_opp_desc_node -EXPORT_SYMBOL_GPL vmlinux 0x11c27926 nf_checksum_partial -EXPORT_SYMBOL_GPL vmlinux 0x11dc7afd nf_queue +EXPORT_SYMBOL_GPL vmlinux 0x11a68c0f to_nvdimm +EXPORT_SYMBOL_GPL vmlinux 0x11bcf1a0 crypto_stats_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0x11c89587 trace_event_buffer_reserve +EXPORT_SYMBOL_GPL vmlinux 0x11da125c trace_put_event_file EXPORT_SYMBOL_GPL vmlinux 0x11df0e75 devlink_fmsg_binary_pair_nest_start EXPORT_SYMBOL_GPL vmlinux 0x11e06ee9 badrange_init -EXPORT_SYMBOL_GPL vmlinux 0x11ed9b48 inet6_hash_connect -EXPORT_SYMBOL_GPL vmlinux 0x121d0742 dma_buf_dynamic_attach +EXPORT_SYMBOL_GPL vmlinux 0x11e7360d acpi_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x11e9442e extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x11ef9817 skcipher_alloc_instance_simple +EXPORT_SYMBOL_GPL vmlinux 0x11f84906 lwtunnel_cmp_encap +EXPORT_SYMBOL_GPL vmlinux 0x11ff5440 i2c_dw_configure_master +EXPORT_SYMBOL_GPL vmlinux 0x121609d9 efivar_entry_get +EXPORT_SYMBOL_GPL vmlinux 0x1219d55c pci_sriov_get_totalvfs EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier -EXPORT_SYMBOL_GPL vmlinux 0x122b4f39 of_add_property -EXPORT_SYMBOL_GPL vmlinux 0x1234b462 irq_domain_simple_ops +EXPORT_SYMBOL_GPL vmlinux 0x121f820f extcon_set_state +EXPORT_SYMBOL_GPL vmlinux 0x122c9a93 devlink_trap_groups_register +EXPORT_SYMBOL_GPL vmlinux 0x1232fba6 led_trigger_read EXPORT_SYMBOL_GPL vmlinux 0x1234e483 get_cpu_iowait_time_us EXPORT_SYMBOL_GPL vmlinux 0x1234ffa1 cper_estatus_check_header -EXPORT_SYMBOL_GPL vmlinux 0x123873c7 device_remove_groups -EXPORT_SYMBOL_GPL vmlinux 0x123998cf make_device_exclusive_range +EXPORT_SYMBOL_GPL vmlinux 0x12505dca fib_rules_lookup EXPORT_SYMBOL_GPL vmlinux 0x12537dae __tracepoint_napi_poll -EXPORT_SYMBOL_GPL vmlinux 0x125c77d0 rio_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x1262f20e ahci_platform_init_host +EXPORT_SYMBOL_GPL vmlinux 0x1263c1e3 devm_rtc_allocate_device +EXPORT_SYMBOL_GPL vmlinux 0x1267e3dc linear_hugepage_index EXPORT_SYMBOL_GPL vmlinux 0x1268f357 resume_device_irqs -EXPORT_SYMBOL_GPL vmlinux 0x128a413a crypto_shash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x1272e836 __platform_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x128208d0 class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x12931377 __phy_modify EXPORT_SYMBOL_GPL vmlinux 0x129334ae sfp_parse_support -EXPORT_SYMBOL_GPL vmlinux 0x129795e4 ip6_datagram_recv_ctl -EXPORT_SYMBOL_GPL vmlinux 0x129b7b97 posix_acl_default_xattr_handler -EXPORT_SYMBOL_GPL vmlinux 0x12a94728 of_pinctrl_get -EXPORT_SYMBOL_GPL vmlinux 0x12b2b7d5 ncsi_vlan_rx_kill_vid -EXPORT_SYMBOL_GPL vmlinux 0x12b8fa93 driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0x12ba7417 gpiod_get_value -EXPORT_SYMBOL_GPL vmlinux 0x12bf159e irq_get_irq_data -EXPORT_SYMBOL_GPL vmlinux 0x12cdc75f ahci_pmp_retry_srst_ops -EXPORT_SYMBOL_GPL vmlinux 0x12d40f2a regulator_get_bypass_regmap -EXPORT_SYMBOL_GPL vmlinux 0x12d63048 msi_desc_to_pci_sysdata -EXPORT_SYMBOL_GPL vmlinux 0x12d76c4e devm_led_trigger_register -EXPORT_SYMBOL_GPL vmlinux 0x12dfb790 phy_remove_lookup -EXPORT_SYMBOL_GPL vmlinux 0x12e1a115 pm_generic_freeze_late -EXPORT_SYMBOL_GPL vmlinux 0x12ed2f33 ping_close +EXPORT_SYMBOL_GPL vmlinux 0x12950e71 dma_run_dependencies +EXPORT_SYMBOL_GPL vmlinux 0x129e8051 tpm_tis_core_init +EXPORT_SYMBOL_GPL vmlinux 0x12cacc07 iomap_readahead +EXPORT_SYMBOL_GPL vmlinux 0x12de793b l3mdev_ifindex_lookup_by_table_id +EXPORT_SYMBOL_GPL vmlinux 0x12ecf34e pm_genpd_opp_to_performance_state EXPORT_SYMBOL_GPL vmlinux 0x12ee1173 memory_group_unregister -EXPORT_SYMBOL_GPL vmlinux 0x12efd0f0 driver_register -EXPORT_SYMBOL_GPL vmlinux 0x12f383fb rio_unmap_inb_region -EXPORT_SYMBOL_GPL vmlinux 0x1304b6c5 bpf_prog_sub -EXPORT_SYMBOL_GPL vmlinux 0x1309b331 dev_pm_qos_update_request -EXPORT_SYMBOL_GPL vmlinux 0x130d2de2 edac_pci_handle_pe -EXPORT_SYMBOL_GPL vmlinux 0x1314fd23 dev_pm_opp_set_regulators -EXPORT_SYMBOL_GPL vmlinux 0x13156a5a gpiod_set_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x12f0b510 powercap_register_control_type +EXPORT_SYMBOL_GPL vmlinux 0x12f4e478 md_find_rdev_rcu +EXPORT_SYMBOL_GPL vmlinux 0x12f64a31 rq_flush_dcache_pages +EXPORT_SYMBOL_GPL vmlinux 0x13111bf2 blk_queue_max_zone_append_sectors +EXPORT_SYMBOL_GPL vmlinux 0x1314b25e gpiochip_line_is_open_drain +EXPORT_SYMBOL_GPL vmlinux 0x131a2095 cpufreq_unregister_governor EXPORT_SYMBOL_GPL vmlinux 0x131a5ed7 regmap_del_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x131b9c67 pinctrl_find_gpio_range_from_pin_nolock EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq -EXPORT_SYMBOL_GPL vmlinux 0x1328ba3e kthread_mod_delayed_work -EXPORT_SYMBOL_GPL vmlinux 0x132929d3 wm831x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x1329989d iommu_device_sysfs_remove -EXPORT_SYMBOL_GPL vmlinux 0x132deb58 scsi_dh_set_params -EXPORT_SYMBOL_GPL vmlinux 0x13308b47 devlink_dpipe_table_resource_set -EXPORT_SYMBOL_GPL vmlinux 0x133887c9 i2c_adapter_depth +EXPORT_SYMBOL_GPL vmlinux 0x13331ee4 dev_pm_get_subsys_data EXPORT_SYMBOL_GPL vmlinux 0x133969d7 __trace_printk -EXPORT_SYMBOL_GPL vmlinux 0x134d6ba4 pci_host_probe -EXPORT_SYMBOL_GPL vmlinux 0x135352bf iommu_capable +EXPORT_SYMBOL_GPL vmlinux 0x134359f5 usb_autopm_put_interface +EXPORT_SYMBOL_GPL vmlinux 0x13519402 platform_device_del +EXPORT_SYMBOL_GPL vmlinux 0x135823c6 devm_pm_clk_create EXPORT_SYMBOL_GPL vmlinux 0x136209db power_supply_reg_notifier EXPORT_SYMBOL_GPL vmlinux 0x13640660 get_cached_msi_msg -EXPORT_SYMBOL_GPL vmlinux 0x1366027f dev_fill_forward_path EXPORT_SYMBOL_GPL vmlinux 0x136adddc trace_seq_vprintf -EXPORT_SYMBOL_GPL vmlinux 0x137609c7 icc_link_destroy -EXPORT_SYMBOL_GPL vmlinux 0x137742d3 crypto_stats_akcipher_sign -EXPORT_SYMBOL_GPL vmlinux 0x1377b49a irq_chip_set_affinity_parent -EXPORT_SYMBOL_GPL vmlinux 0x137b1428 perf_aux_output_flag +EXPORT_SYMBOL_GPL vmlinux 0x137a60ee of_clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0x137bdf86 serial8250_tx_chars +EXPORT_SYMBOL_GPL vmlinux 0x137cda4d devm_clk_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1384c6d8 virtqueue_get_vring_size EXPORT_SYMBOL_GPL vmlinux 0x138aff76 gnttab_init EXPORT_SYMBOL_GPL vmlinux 0x138e0957 dax_write_cache_enabled -EXPORT_SYMBOL_GPL vmlinux 0x139ad559 icc_put -EXPORT_SYMBOL_GPL vmlinux 0x13a6e852 blk_ksm_update_capabilities -EXPORT_SYMBOL_GPL vmlinux 0x13ca628a posix_clock_register +EXPORT_SYMBOL_GPL vmlinux 0x139106b9 genphy_c45_read_status +EXPORT_SYMBOL_GPL vmlinux 0x1399f3bf account_locked_vm +EXPORT_SYMBOL_GPL vmlinux 0x13a64929 xenbus_watch_path +EXPORT_SYMBOL_GPL vmlinux 0x13b764bc usb_remove_hcd +EXPORT_SYMBOL_GPL vmlinux 0x13bf8cc1 trace_array_put EXPORT_SYMBOL_GPL vmlinux 0x13ce87e8 asn1_ber_decoder -EXPORT_SYMBOL_GPL vmlinux 0x13cf7f62 register_virtio_device -EXPORT_SYMBOL_GPL vmlinux 0x13d0bee2 debugfs_real_fops +EXPORT_SYMBOL_GPL vmlinux 0x13d53aa5 iommu_set_pgtable_quirks EXPORT_SYMBOL_GPL vmlinux 0x13db1eb8 k3_udma_glue_rx_cppi5_to_dma_addr -EXPORT_SYMBOL_GPL vmlinux 0x13dd6873 devm_of_phy_get EXPORT_SYMBOL_GPL vmlinux 0x13ed8784 sdev_evt_alloc +EXPORT_SYMBOL_GPL vmlinux 0x13f1ea03 usb_hcd_is_primary_hcd EXPORT_SYMBOL_GPL vmlinux 0x13fab921 cpuidle_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x13fcca0f tps6586x_update EXPORT_SYMBOL_GPL vmlinux 0x1403ad09 cpufreq_add_update_util_hook -EXPORT_SYMBOL_GPL vmlinux 0x141550d0 mptcp_pm_get_local_addr_max -EXPORT_SYMBOL_GPL vmlinux 0x141d760b thermal_zone_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x141db9f4 bus_find_device +EXPORT_SYMBOL_GPL vmlinux 0x1415fd7c cpufreq_register_driver EXPORT_SYMBOL_GPL vmlinux 0x141f38bf ktime_get_raw_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0x14475ca3 iommu_get_domain_for_dev +EXPORT_SYMBOL_GPL vmlinux 0x1441dca8 put_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x14443444 dma_release_channel +EXPORT_SYMBOL_GPL vmlinux 0x14499daa __fsnotify_parent +EXPORT_SYMBOL_GPL vmlinux 0x144b2073 tpm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0x14542174 usb_hcd_pci_probe EXPORT_SYMBOL_GPL vmlinux 0x1456762b k3_ringacc_ring_get_free -EXPORT_SYMBOL_GPL vmlinux 0x145c879e cn_add_callback +EXPORT_SYMBOL_GPL vmlinux 0x14636604 devfreq_event_enable_edev +EXPORT_SYMBOL_GPL vmlinux 0x1464fb64 of_usb_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x1467ac15 sata_link_resume EXPORT_SYMBOL_GPL vmlinux 0x146cc88f bpf_master_redirect_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x147c923b bpf_sk_storage_diag_put -EXPORT_SYMBOL_GPL vmlinux 0x148655bc umd_load_blob +EXPORT_SYMBOL_GPL vmlinux 0x146d34d0 dev_pm_opp_get_required_pstate +EXPORT_SYMBOL_GPL vmlinux 0x14721d89 sysfs_chmod_file EXPORT_SYMBOL_GPL vmlinux 0x148fd794 enable_kprobe -EXPORT_SYMBOL_GPL vmlinux 0x1497c7b3 crypto_shash_tfm_digest -EXPORT_SYMBOL_GPL vmlinux 0x1498b446 em_pd_get -EXPORT_SYMBOL_GPL vmlinux 0x14a1912d mbox_free_channel -EXPORT_SYMBOL_GPL vmlinux 0x14a1f1d7 user_describe -EXPORT_SYMBOL_GPL vmlinux 0x14bd6e8d virtqueue_get_vring_size +EXPORT_SYMBOL_GPL vmlinux 0x149650d7 security_inode_permission +EXPORT_SYMBOL_GPL vmlinux 0x149dba42 ip_local_out +EXPORT_SYMBOL_GPL vmlinux 0x14aa53ae bpf_offload_dev_netdev_register EXPORT_SYMBOL_GPL vmlinux 0x14d01690 clk_mux_index_to_val -EXPORT_SYMBOL_GPL vmlinux 0x14d303f2 platform_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0x14d523fc ata_sff_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x14e0f451 wait_on_page_writeback +EXPORT_SYMBOL_GPL vmlinux 0x14e36961 trace_event_buffer_commit EXPORT_SYMBOL_GPL vmlinux 0x14ec4fdb evtchn_put -EXPORT_SYMBOL_GPL vmlinux 0x14ec7569 ip4_datagram_release_cb -EXPORT_SYMBOL_GPL vmlinux 0x14ed408d pingv6_prot EXPORT_SYMBOL_GPL vmlinux 0x15021b4a xa_delete_node +EXPORT_SYMBOL_GPL vmlinux 0x150bccc6 irq_chip_ack_parent +EXPORT_SYMBOL_GPL vmlinux 0x150d8f78 dm_path_uevent +EXPORT_SYMBOL_GPL vmlinux 0x1524cc9f perf_event_read_value +EXPORT_SYMBOL_GPL vmlinux 0x1525bc13 pci_set_pcie_reset_state +EXPORT_SYMBOL_GPL vmlinux 0x152bf977 devm_spi_register_controller EXPORT_SYMBOL_GPL vmlinux 0x153b60a6 klist_del EXPORT_SYMBOL_GPL vmlinux 0x15510a89 devlink_fmsg_binary_put -EXPORT_SYMBOL_GPL vmlinux 0x155850e1 regulator_suspend_disable -EXPORT_SYMBOL_GPL vmlinux 0x1558632e of_dma_request_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0x15937e17 crypto_comp_decompress -EXPORT_SYMBOL_GPL vmlinux 0x15a0bec5 pci_epf_create -EXPORT_SYMBOL_GPL vmlinux 0x15b85daa shash_ahash_finup -EXPORT_SYMBOL_GPL vmlinux 0x15c5d408 cpci_hp_register_bus +EXPORT_SYMBOL_GPL vmlinux 0x155ba5ee xfrm_output +EXPORT_SYMBOL_GPL vmlinux 0x15794649 of_irq_parse_and_map_pci +EXPORT_SYMBOL_GPL vmlinux 0x157da6cc device_reprobe +EXPORT_SYMBOL_GPL vmlinux 0x158115a1 fuse_direct_io +EXPORT_SYMBOL_GPL vmlinux 0x159024fb fat_setattr +EXPORT_SYMBOL_GPL vmlinux 0x15a55f37 led_trigger_blink_oneshot +EXPORT_SYMBOL_GPL vmlinux 0x15a75c59 mpc8xxx_spi_probe +EXPORT_SYMBOL_GPL vmlinux 0x15ade1cc filter_irq_stacks +EXPORT_SYMBOL_GPL vmlinux 0x15b30d9f kvm_vcpu_is_visible_gfn +EXPORT_SYMBOL_GPL vmlinux 0x15b60b25 tpm_chip_register EXPORT_SYMBOL_GPL vmlinux 0x15c60a71 __tracepoint_pelt_dl_tp -EXPORT_SYMBOL_GPL vmlinux 0x15d00a38 usb_get_hcd -EXPORT_SYMBOL_GPL vmlinux 0x15e303a1 nvdimm_delete +EXPORT_SYMBOL_GPL vmlinux 0x15dcdd1b __ndisc_fill_addr_option +EXPORT_SYMBOL_GPL vmlinux 0x15e5e12a dev_pm_qos_expose_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x15e6d42b pinctrl_pm_select_sleep_state EXPORT_SYMBOL_GPL vmlinux 0x15ea2648 hwpoison_filter_flags_mask -EXPORT_SYMBOL_GPL vmlinux 0x15ec3cd3 crypto_register_shash -EXPORT_SYMBOL_GPL vmlinux 0x1601a444 lwtunnel_build_state -EXPORT_SYMBOL_GPL vmlinux 0x16106200 acpi_unbind_one -EXPORT_SYMBOL_GPL vmlinux 0x1632dc6b __mmc_poll_for_busy -EXPORT_SYMBOL_GPL vmlinux 0x1638f1f8 serdev_device_set_flow_control -EXPORT_SYMBOL_GPL vmlinux 0x163bc698 tegra_bpmp_free_mrq -EXPORT_SYMBOL_GPL vmlinux 0x1640d64b stmpe_set_altfunc -EXPORT_SYMBOL_GPL vmlinux 0x164bf139 devm_regulator_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x164cb7fd ata_std_qc_defer -EXPORT_SYMBOL_GPL vmlinux 0x1650af3b kvm_vcpu_gfn_to_page +EXPORT_SYMBOL_GPL vmlinux 0x161683e9 dw_pcie_ep_init_complete +EXPORT_SYMBOL_GPL vmlinux 0x161bd004 tpm_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0x16290e3a usb_hcd_resume_root_hub +EXPORT_SYMBOL_GPL vmlinux 0x1635d8a0 usb_poison_urb +EXPORT_SYMBOL_GPL vmlinux 0x163aa86b nvdimm_name EXPORT_SYMBOL_GPL vmlinux 0x16516798 osc_pc_lpi_support_confirmed -EXPORT_SYMBOL_GPL vmlinux 0x166263f8 rio_local_set_device_id -EXPORT_SYMBOL_GPL vmlinux 0x16639c05 fib6_new_table -EXPORT_SYMBOL_GPL vmlinux 0x166baabf __rtnl_link_register -EXPORT_SYMBOL_GPL vmlinux 0x167cd34f of_detach_node +EXPORT_SYMBOL_GPL vmlinux 0x1665df5a pci_epc_linkup +EXPORT_SYMBOL_GPL vmlinux 0x166a9f47 open_related_ns EXPORT_SYMBOL_GPL vmlinux 0x167d7113 acpi_bus_register_early_device -EXPORT_SYMBOL_GPL vmlinux 0x1684d74f serdev_device_close EXPORT_SYMBOL_GPL vmlinux 0x1687ec20 tty_get_frame_size -EXPORT_SYMBOL_GPL vmlinux 0x1688d114 blk_queue_flag_test_and_set +EXPORT_SYMBOL_GPL vmlinux 0x16895781 phy_package_leave +EXPORT_SYMBOL_GPL vmlinux 0x168fa52d rtc_set_alarm EXPORT_SYMBOL_GPL vmlinux 0x1690b503 usb_role_switch_get_drvdata EXPORT_SYMBOL_GPL vmlinux 0x169482bf gfn_to_pfn_memslot_atomic -EXPORT_SYMBOL_GPL vmlinux 0x169985b3 irq_domain_free_irqs_parent -EXPORT_SYMBOL_GPL vmlinux 0x169b76d9 hvc_poll -EXPORT_SYMBOL_GPL vmlinux 0x169ea970 usb_hcd_amd_remote_wakeup_quirk -EXPORT_SYMBOL_GPL vmlinux 0x16a00538 get_user_pages_fast_only -EXPORT_SYMBOL_GPL vmlinux 0x16a622fc __traceiter_br_fdb_add -EXPORT_SYMBOL_GPL vmlinux 0x16b09214 platform_device_add_resources -EXPORT_SYMBOL_GPL vmlinux 0x16b9c4af __pm_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0x16bd4f15 sock_diag_register -EXPORT_SYMBOL_GPL vmlinux 0x16be3ef1 devlink_port_attrs_pci_vf_set -EXPORT_SYMBOL_GPL vmlinux 0x16be7aed blk_execute_rq_nowait -EXPORT_SYMBOL_GPL vmlinux 0x16c42b25 mtk_pinconf_adv_drive_set -EXPORT_SYMBOL_GPL vmlinux 0x16c69b50 trace_event_reg -EXPORT_SYMBOL_GPL vmlinux 0x16cd380a crypto_remove_spawns -EXPORT_SYMBOL_GPL vmlinux 0x16ce295f sk_msg_return_zero +EXPORT_SYMBOL_GPL vmlinux 0x16b2c920 sysfs_remove_link_from_group +EXPORT_SYMBOL_GPL vmlinux 0x16d64399 blk_ksm_intersect_modes EXPORT_SYMBOL_GPL vmlinux 0x16da1f88 devlink_fmsg_u32_put -EXPORT_SYMBOL_GPL vmlinux 0x16dd0280 iommu_device_unlink -EXPORT_SYMBOL_GPL vmlinux 0x16dd4b8a fixed_phy_change_carrier -EXPORT_SYMBOL_GPL vmlinux 0x16e0d8c8 devm_ti_sci_get_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x16e44aa7 xfrm_local_error +EXPORT_SYMBOL_GPL vmlinux 0x16ee5eb4 regulator_enable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x16ef8d48 device_move EXPORT_SYMBOL_GPL vmlinux 0x16f15139 bind_evtchn_to_irq -EXPORT_SYMBOL_GPL vmlinux 0x16f2e3fe umd_unload_blob -EXPORT_SYMBOL_GPL vmlinux 0x16f74493 blk_clear_pm_only EXPORT_SYMBOL_GPL vmlinux 0x170cc36c put_timespec64 -EXPORT_SYMBOL_GPL vmlinux 0x1711b813 __traceiter_neigh_timer_handler -EXPORT_SYMBOL_GPL vmlinux 0x17129360 genphy_c45_read_mdix -EXPORT_SYMBOL_GPL vmlinux 0x17189c23 tps65912_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0x1745e7ed device_add_software_node -EXPORT_SYMBOL_GPL vmlinux 0x1747fdcf netlink_add_tap +EXPORT_SYMBOL_GPL vmlinux 0x17119136 proc_create_net_single_write +EXPORT_SYMBOL_GPL vmlinux 0x1715c24f __regmap_init +EXPORT_SYMBOL_GPL vmlinux 0x1717fe69 pm_wakeup_dev_event +EXPORT_SYMBOL_GPL vmlinux 0x171a3ec2 of_pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0x173d2cf4 dax_inode EXPORT_SYMBOL_GPL vmlinux 0x17480d56 x509_free_certificate -EXPORT_SYMBOL_GPL vmlinux 0x1749c992 put_pid -EXPORT_SYMBOL_GPL vmlinux 0x174ad6d8 dev_pm_opp_disable EXPORT_SYMBOL_GPL vmlinux 0x174c6274 ring_buffer_time_stamp EXPORT_SYMBOL_GPL vmlinux 0x17591ecd zynqmp_pm_write_ggs EXPORT_SYMBOL_GPL vmlinux 0x176031a7 devlink_fmsg_string_put EXPORT_SYMBOL_GPL vmlinux 0x17614bf3 apei_resources_sub -EXPORT_SYMBOL_GPL vmlinux 0x177c2cd9 alloc_io_pgtable_ops +EXPORT_SYMBOL_GPL vmlinux 0x176a6c27 devm_serdev_device_open +EXPORT_SYMBOL_GPL vmlinux 0x176d713d xdp_do_redirect EXPORT_SYMBOL_GPL vmlinux 0x177c338d twl_get_version -EXPORT_SYMBOL_GPL vmlinux 0x17864f61 nvmem_cell_get -EXPORT_SYMBOL_GPL vmlinux 0x1786a445 fsverity_ioctl_read_metadata -EXPORT_SYMBOL_GPL vmlinux 0x1789cb38 rq_flush_dcache_pages -EXPORT_SYMBOL_GPL vmlinux 0x178ed2dc irq_chip_release_resources_parent -EXPORT_SYMBOL_GPL vmlinux 0x17a65e69 usb_get_current_frame_number -EXPORT_SYMBOL_GPL vmlinux 0x17a87d83 serdev_device_write_flush -EXPORT_SYMBOL_GPL vmlinux 0x17aebf5a ata_sff_drain_fifo -EXPORT_SYMBOL_GPL vmlinux 0x17bf2793 usb_control_msg_recv -EXPORT_SYMBOL_GPL vmlinux 0x17d371b8 mbox_request_channel_byname -EXPORT_SYMBOL_GPL vmlinux 0x17de538c icc_node_create +EXPORT_SYMBOL_GPL vmlinux 0x1785df7b umd_unload_blob +EXPORT_SYMBOL_GPL vmlinux 0x179808f4 amba_ahb_device_add +EXPORT_SYMBOL_GPL vmlinux 0x179873fd pci_d3cold_enable +EXPORT_SYMBOL_GPL vmlinux 0x17a8fbb0 phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0x17b4091d wm831x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x17b51ce1 mmc_crypto_prepare_req +EXPORT_SYMBOL_GPL vmlinux 0x17c184cf icc_nodes_remove +EXPORT_SYMBOL_GPL vmlinux 0x17c93387 irq_chip_release_resources_parent EXPORT_SYMBOL_GPL vmlinux 0x17e01f11 erst_clear -EXPORT_SYMBOL_GPL vmlinux 0x17fbb072 shmem_zero_setup -EXPORT_SYMBOL_GPL vmlinux 0x17ff3795 crypto_lookup_template +EXPORT_SYMBOL_GPL vmlinux 0x17e91eb1 get_dev_pagemap EXPORT_SYMBOL_GPL vmlinux 0x18008c59 ring_buffer_resize -EXPORT_SYMBOL_GPL vmlinux 0x18110f36 irq_domain_pop_irq -EXPORT_SYMBOL_GPL vmlinux 0x181ea0f1 copy_user_highpage -EXPORT_SYMBOL_GPL vmlinux 0x18204674 regmap_field_free -EXPORT_SYMBOL_GPL vmlinux 0x18233905 ata_sas_port_resume -EXPORT_SYMBOL_GPL vmlinux 0x18373cd1 devm_hwmon_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x18578bdc blk_mq_free_request -EXPORT_SYMBOL_GPL vmlinux 0x1860fb1b soc_device_match +EXPORT_SYMBOL_GPL vmlinux 0x1819fffd tc3589x_block_write +EXPORT_SYMBOL_GPL vmlinux 0x181d03fb __traceiter_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x1825449a usb_get_urb +EXPORT_SYMBOL_GPL vmlinux 0x1840b1a8 auxiliary_find_device +EXPORT_SYMBOL_GPL vmlinux 0x1844233a virtqueue_kick_prepare +EXPORT_SYMBOL_GPL vmlinux 0x185371ec ahci_stop_engine EXPORT_SYMBOL_GPL vmlinux 0x18615d35 efivar_supports_writes -EXPORT_SYMBOL_GPL vmlinux 0x186be17a of_pci_get_devfn EXPORT_SYMBOL_GPL vmlinux 0x18715353 k3_udma_glue_push_tx_chn -EXPORT_SYMBOL_GPL vmlinux 0x1873021c __netpoll_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x1881c787 devlink_dpipe_entry_ctx_append -EXPORT_SYMBOL_GPL vmlinux 0x188a99b7 of_clk_hw_onecell_get -EXPORT_SYMBOL_GPL vmlinux 0x188b3b40 fwnode_gpiod_get_index -EXPORT_SYMBOL_GPL vmlinux 0x188b6904 tps6586x_writes -EXPORT_SYMBOL_GPL vmlinux 0x188dfbd9 ahci_platform_disable_phys -EXPORT_SYMBOL_GPL vmlinux 0x18927b93 ata_common_sdev_attrs -EXPORT_SYMBOL_GPL vmlinux 0x189ec2ab phy_pm_runtime_get -EXPORT_SYMBOL_GPL vmlinux 0x18a3dc33 of_get_pci_domain_nr -EXPORT_SYMBOL_GPL vmlinux 0x18c62c10 task_cgroup_path -EXPORT_SYMBOL_GPL vmlinux 0x18e2aa73 iommu_sva_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0x1877b601 pci_enable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0x1886d689 set_cpus_allowed_ptr +EXPORT_SYMBOL_GPL vmlinux 0x188f83bc k3_udma_glue_tx_get_dma_device +EXPORT_SYMBOL_GPL vmlinux 0x18a0e1da fuse_sync_release +EXPORT_SYMBOL_GPL vmlinux 0x18af292e inet_ehash_nolisten +EXPORT_SYMBOL_GPL vmlinux 0x18b32f84 sata_scr_valid +EXPORT_SYMBOL_GPL vmlinux 0x18c6bccd fat_build_inode +EXPORT_SYMBOL_GPL vmlinux 0x18d0fa06 gpiod_set_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x18d9e4fb pci_epf_free_space +EXPORT_SYMBOL_GPL vmlinux 0x18e22353 attribute_container_find_class_device EXPORT_SYMBOL_GPL vmlinux 0x18e4f8aa swphy_read_reg EXPORT_SYMBOL_GPL vmlinux 0x18e8c440 arch_freq_scale -EXPORT_SYMBOL_GPL vmlinux 0x18ee1b6d gpiochip_irq_unmap EXPORT_SYMBOL_GPL vmlinux 0x18f10f38 k3_udma_glue_enable_rx_chn -EXPORT_SYMBOL_GPL vmlinux 0x18f3472f dev_pm_opp_find_freq_exact -EXPORT_SYMBOL_GPL vmlinux 0x18fa9401 device_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x18f36c46 of_pm_clk_add_clk +EXPORT_SYMBOL_GPL vmlinux 0x18f4d97c rio_request_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x18f60e5a power_supply_powers EXPORT_SYMBOL_GPL vmlinux 0x18fb2caf cpus_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x19007204 page_cache_ra_unbounded +EXPORT_SYMBOL_GPL vmlinux 0x1900bb37 mtk_paris_pinctrl_probe EXPORT_SYMBOL_GPL vmlinux 0x19032d6d trace_handle_return -EXPORT_SYMBOL_GPL vmlinux 0x1916a89f irq_setup_alt_chip -EXPORT_SYMBOL_GPL vmlinux 0x19192895 regulator_get_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x1924761e task_active_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x1906a1d7 vfs_setxattr +EXPORT_SYMBOL_GPL vmlinux 0x1906ef0d nf_route +EXPORT_SYMBOL_GPL vmlinux 0x190f8aab regulator_set_voltage +EXPORT_SYMBOL_GPL vmlinux 0x1917eaaa kvm_vcpu_yield_to EXPORT_SYMBOL_GPL vmlinux 0x1926028c zynqmp_pm_reset_assert -EXPORT_SYMBOL_GPL vmlinux 0x1930b8d8 usb_hcd_end_port_resume -EXPORT_SYMBOL_GPL vmlinux 0x194920a2 devm_phy_destroy -EXPORT_SYMBOL_GPL vmlinux 0x1958a431 balloon_page_list_dequeue -EXPORT_SYMBOL_GPL vmlinux 0x1977b377 fwnode_find_reference +EXPORT_SYMBOL_GPL vmlinux 0x19272f59 ip6_input +EXPORT_SYMBOL_GPL vmlinux 0x19275459 clk_hw_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0x194c8063 dev_pm_opp_get_opp_table +EXPORT_SYMBOL_GPL vmlinux 0x1962ceaf regulator_set_current_limit +EXPORT_SYMBOL_GPL vmlinux 0x196556b8 kvm_get_running_vcpu +EXPORT_SYMBOL_GPL vmlinux 0x196faa57 usb_add_hcd EXPORT_SYMBOL_GPL vmlinux 0x19821689 __tracepoint_fdb_delete -EXPORT_SYMBOL_GPL vmlinux 0x198500ad subsys_interface_unregister -EXPORT_SYMBOL_GPL vmlinux 0x19923958 tcp_bpf_update_proto -EXPORT_SYMBOL_GPL vmlinux 0x199c995d bpf_map_inc_with_uref +EXPORT_SYMBOL_GPL vmlinux 0x198555f9 percpu_free_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x198dc14b sysfs_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x198ef73e crypto_grab_ahash EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled -EXPORT_SYMBOL_GPL vmlinux 0x19aa3381 pinctrl_count_index_with_args +EXPORT_SYMBOL_GPL vmlinux 0x19bd3af1 gpiod_toggle_active_low EXPORT_SYMBOL_GPL vmlinux 0x19c20269 soc_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x19da52f3 clk_regmap_mux_ops -EXPORT_SYMBOL_GPL vmlinux 0x19def2cd iomap_seek_hole +EXPORT_SYMBOL_GPL vmlinux 0x19ca5f25 ip6_route_input_lookup +EXPORT_SYMBOL_GPL vmlinux 0x19cb67c7 governor_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0x19d219c4 __netpoll_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x19d8f96a fib_rules_register +EXPORT_SYMBOL_GPL vmlinux 0x19dd3758 rio_mport_get_physefb EXPORT_SYMBOL_GPL vmlinux 0x19e81304 btree_alloc EXPORT_SYMBOL_GPL vmlinux 0x19edd064 blkg_rwstat_exit -EXPORT_SYMBOL_GPL vmlinux 0x19fb7e57 gpiochip_line_is_irq -EXPORT_SYMBOL_GPL vmlinux 0x1a01d49e dm_bio_get_target_bio_nr +EXPORT_SYMBOL_GPL vmlinux 0x19f02679 rdev_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x1a0d8396 mbox_free_channel EXPORT_SYMBOL_GPL vmlinux 0x1a10c32b crypto_ft_tab EXPORT_SYMBOL_GPL vmlinux 0x1a146ec3 usb_ep_type_string -EXPORT_SYMBOL_GPL vmlinux 0x1a3a632a bio_associate_blkg_from_css -EXPORT_SYMBOL_GPL vmlinux 0x1a3ea581 kvm_vcpu_read_guest -EXPORT_SYMBOL_GPL vmlinux 0x1a45798d acpi_subsys_freeze -EXPORT_SYMBOL_GPL vmlinux 0x1a51e729 xdp_rxq_info_unreg_mem_model -EXPORT_SYMBOL_GPL vmlinux 0x1a54040d ata_dev_disable +EXPORT_SYMBOL_GPL vmlinux 0x1a17d778 __devm_regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0x1a272c02 dev_pm_genpd_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x1a2ca41c pci_find_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0x1a311dea to_of_pinfo +EXPORT_SYMBOL_GPL vmlinux 0x1a670d1f serial8250_em485_config EXPORT_SYMBOL_GPL vmlinux 0x1a6bf28f fsnotify_get_cookie -EXPORT_SYMBOL_GPL vmlinux 0x1a6d1d0c handle_mm_fault +EXPORT_SYMBOL_GPL vmlinux 0x1a73ee96 pci_enable_pasid +EXPORT_SYMBOL_GPL vmlinux 0x1a772358 xen_xlate_remap_gfn_array EXPORT_SYMBOL_GPL vmlinux 0x1a77903a of_alias_get_alias_list +EXPORT_SYMBOL_GPL vmlinux 0x1a7c147f ip6_datagram_release_cb EXPORT_SYMBOL_GPL vmlinux 0x1a876574 __tracepoint_attach_device_to_domain -EXPORT_SYMBOL_GPL vmlinux 0x1a8c737c devlink_port_param_driverinit_value_set +EXPORT_SYMBOL_GPL vmlinux 0x1a8e9d0f pinctrl_generic_remove_group EXPORT_SYMBOL_GPL vmlinux 0x1a9754cf sbitmap_queue_min_shallow_depth -EXPORT_SYMBOL_GPL vmlinux 0x1a9e3ac7 unix_peer_get -EXPORT_SYMBOL_GPL vmlinux 0x1aab0298 ohci_resume -EXPORT_SYMBOL_GPL vmlinux 0x1ac1e8e8 crypto_get_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x1aa738e4 devm_fwnode_gpiod_get_index EXPORT_SYMBOL_GPL vmlinux 0x1acd18c8 cpuset_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x1ae2f730 bpf_map_inc_with_uref +EXPORT_SYMBOL_GPL vmlinux 0x1ae778a6 cpufreq_freq_attr_scaling_available_freqs EXPORT_SYMBOL_GPL vmlinux 0x1af267f8 int_pow -EXPORT_SYMBOL_GPL vmlinux 0x1afb59d4 ata_qc_complete -EXPORT_SYMBOL_GPL vmlinux 0x1b006d83 edac_device_free_ctl_info -EXPORT_SYMBOL_GPL vmlinux 0x1b0515b7 pci_epc_write_header -EXPORT_SYMBOL_GPL vmlinux 0x1b084f27 of_led_get -EXPORT_SYMBOL_GPL vmlinux 0x1b105349 irq_find_matching_fwspec -EXPORT_SYMBOL_GPL vmlinux 0x1b167752 pci_get_dsn -EXPORT_SYMBOL_GPL vmlinux 0x1b1cdeef pm_stay_awake -EXPORT_SYMBOL_GPL vmlinux 0x1b1efde7 devm_ti_sci_get_resource -EXPORT_SYMBOL_GPL vmlinux 0x1b3e6cfe devm_bitmap_zalloc -EXPORT_SYMBOL_GPL vmlinux 0x1b3f0c4f altr_sysmgr_regmap_lookup_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x1b4b7225 ata_sff_prereset +EXPORT_SYMBOL_GPL vmlinux 0x1af47f26 input_ff_flush +EXPORT_SYMBOL_GPL vmlinux 0x1b057e40 pci_disable_rom +EXPORT_SYMBOL_GPL vmlinux 0x1b087a4a vfs_write +EXPORT_SYMBOL_GPL vmlinux 0x1b203831 kvm_put_kvm_no_destroy +EXPORT_SYMBOL_GPL vmlinux 0x1b295cd3 __fscrypt_inode_uses_inline_crypto +EXPORT_SYMBOL_GPL vmlinux 0x1b3ad9ef bpf_prog_alloc +EXPORT_SYMBOL_GPL vmlinux 0x1b427d20 of_get_videomode EXPORT_SYMBOL_GPL vmlinux 0x1b5059ce ata_id_xfermask -EXPORT_SYMBOL_GPL vmlinux 0x1b536bd8 iommu_device_sysfs_add -EXPORT_SYMBOL_GPL vmlinux 0x1b5d40e0 synth_event_create -EXPORT_SYMBOL_GPL vmlinux 0x1b61f7ea pm_generic_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0x1b703243 led_trigger_register_simple -EXPORT_SYMBOL_GPL vmlinux 0x1b710997 usb_kill_urb -EXPORT_SYMBOL_GPL vmlinux 0x1b71d1ca ata_acpi_gtm -EXPORT_SYMBOL_GPL vmlinux 0x1b785452 __regmap_init -EXPORT_SYMBOL_GPL vmlinux 0x1b815ce4 xenbus_probe_devices +EXPORT_SYMBOL_GPL vmlinux 0x1b66f235 is_dock_device +EXPORT_SYMBOL_GPL vmlinux 0x1b6aaf63 usb_autopm_get_interface +EXPORT_SYMBOL_GPL vmlinux 0x1b710d2d scsi_target_unblock +EXPORT_SYMBOL_GPL vmlinux 0x1b72210f pci_dev_unlock EXPORT_SYMBOL_GPL vmlinux 0x1b8822d8 pinctrl_gpio_direction_output -EXPORT_SYMBOL_GPL vmlinux 0x1b894ec2 posix_clock_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1b88f8bd fib_rule_matchall EXPORT_SYMBOL_GPL vmlinux 0x1b92e41d inet_putpeer -EXPORT_SYMBOL_GPL vmlinux 0x1b999196 kthread_flush_work -EXPORT_SYMBOL_GPL vmlinux 0x1baaebea acpi_debugfs_dir -EXPORT_SYMBOL_GPL vmlinux 0x1bafee4b ndo_dflt_bridge_getlink -EXPORT_SYMBOL_GPL vmlinux 0x1bb2ebc8 devm_pinctrl_put -EXPORT_SYMBOL_GPL vmlinux 0x1bc4d664 of_get_videomode +EXPORT_SYMBOL_GPL vmlinux 0x1b995558 devlink_param_publish +EXPORT_SYMBOL_GPL vmlinux 0x1b9e1b84 ping_init_sock +EXPORT_SYMBOL_GPL vmlinux 0x1bb0a3cd ahci_platform_disable_phys +EXPORT_SYMBOL_GPL vmlinux 0x1bb32ed6 icc_put +EXPORT_SYMBOL_GPL vmlinux 0x1bbe3c8d vchan_find_desc EXPORT_SYMBOL_GPL vmlinux 0x1bc5eebe pinctrl_gpio_direction_input -EXPORT_SYMBOL_GPL vmlinux 0x1bc6e38b meson_pmx_get_func_name EXPORT_SYMBOL_GPL vmlinux 0x1bc85e1c irq_set_affinity -EXPORT_SYMBOL_GPL vmlinux 0x1bd2ba91 device_match_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x1be33b68 bpfilter_ops EXPORT_SYMBOL_GPL vmlinux 0x1bee4974 sg_alloc_table_chained -EXPORT_SYMBOL_GPL vmlinux 0x1c01dc51 regulator_disable_regmap -EXPORT_SYMBOL_GPL vmlinux 0x1c03b463 is_nvdimm_sync -EXPORT_SYMBOL_GPL vmlinux 0x1c0e572b __traceiter_tcp_send_reset -EXPORT_SYMBOL_GPL vmlinux 0x1c1d3e61 rio_request_inb_dbell -EXPORT_SYMBOL_GPL vmlinux 0x1c266628 input_class -EXPORT_SYMBOL_GPL vmlinux 0x1c29c944 relay_flush -EXPORT_SYMBOL_GPL vmlinux 0x1c2aff2f debugfs_create_symlink -EXPORT_SYMBOL_GPL vmlinux 0x1c493a41 edac_device_alloc_ctl_info -EXPORT_SYMBOL_GPL vmlinux 0x1c55327d device_find_child_by_name +EXPORT_SYMBOL_GPL vmlinux 0x1bf79f68 ata_sff_lost_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x1c086485 fsverity_verify_bio +EXPORT_SYMBOL_GPL vmlinux 0x1c2bba6d dev_coredumpsg EXPORT_SYMBOL_GPL vmlinux 0x1c5541bd cpufreq_boost_enabled EXPORT_SYMBOL_GPL vmlinux 0x1c5b1f28 irq_free_descs -EXPORT_SYMBOL_GPL vmlinux 0x1c5d3a69 meson8_pmx_ops EXPORT_SYMBOL_GPL vmlinux 0x1c5ff742 clk_get_phase -EXPORT_SYMBOL_GPL vmlinux 0x1c6f33ff ata_cable_40wire -EXPORT_SYMBOL_GPL vmlinux 0x1c782a56 devlink_dpipe_entry_ctx_close -EXPORT_SYMBOL_GPL vmlinux 0x1c7f90b9 usb_driver_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0x1c61b0a2 kgdb_unregister_io_module +EXPORT_SYMBOL_GPL vmlinux 0x1c625d9f ata_cable_ignore +EXPORT_SYMBOL_GPL vmlinux 0x1c636526 tty_ldisc_flush +EXPORT_SYMBOL_GPL vmlinux 0x1c64f9a1 bpf_offload_dev_create +EXPORT_SYMBOL_GPL vmlinux 0x1c6e1ed9 security_path_truncate EXPORT_SYMBOL_GPL vmlinux 0x1c80d27d btree_geo128 EXPORT_SYMBOL_GPL vmlinux 0x1c87a811 __round_jiffies_up -EXPORT_SYMBOL_GPL vmlinux 0x1c882797 sk_msg_free_partial EXPORT_SYMBOL_GPL vmlinux 0x1c89fb22 zynqmp_pm_clock_setparent -EXPORT_SYMBOL_GPL vmlinux 0x1c97b2c0 of_get_required_opp_performance_state +EXPORT_SYMBOL_GPL vmlinux 0x1c8ff9fd kobject_rename EXPORT_SYMBOL_GPL vmlinux 0x1ca3aa97 alarm_forward EXPORT_SYMBOL_GPL vmlinux 0x1ca4a930 smp_call_function_any +EXPORT_SYMBOL_GPL vmlinux 0x1cab3bc0 xenbus_probe_devices +EXPORT_SYMBOL_GPL vmlinux 0x1cb480a9 bpf_map_put +EXPORT_SYMBOL_GPL vmlinux 0x1cb6fffa device_show_int EXPORT_SYMBOL_GPL vmlinux 0x1cb7c983 apei_exec_read_register_value +EXPORT_SYMBOL_GPL vmlinux 0x1cb81322 tty_put_char EXPORT_SYMBOL_GPL vmlinux 0x1cb9a1c8 xenbus_gather EXPORT_SYMBOL_GPL vmlinux 0x1cbd92b0 cpu_mitigations_off -EXPORT_SYMBOL_GPL vmlinux 0x1cc76247 posix_acl_access_xattr_handler -EXPORT_SYMBOL_GPL vmlinux 0x1cc82464 ping_common_sendmsg -EXPORT_SYMBOL_GPL vmlinux 0x1ce33236 mtk_pinconf_bias_get_rev1 -EXPORT_SYMBOL_GPL vmlinux 0x1ce86d06 mtk_eint_find_irq -EXPORT_SYMBOL_GPL vmlinux 0x1ceb3854 wm8350_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0x1cca6ef0 phy_driver_is_genphy_10g +EXPORT_SYMBOL_GPL vmlinux 0x1ccc4f0a devm_of_clk_add_hw_provider +EXPORT_SYMBOL_GPL vmlinux 0x1ce18b44 pci_epf_bind +EXPORT_SYMBOL_GPL vmlinux 0x1d0b39ea fat_add_entries +EXPORT_SYMBOL_GPL vmlinux 0x1d17f23a vp_modern_probe EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state -EXPORT_SYMBOL_GPL vmlinux 0x1d41e6cf dw_pcie_ep_init -EXPORT_SYMBOL_GPL vmlinux 0x1d519686 blk_ksm_init -EXPORT_SYMBOL_GPL vmlinux 0x1d56b78e sched_set_fifo_low +EXPORT_SYMBOL_GPL vmlinux 0x1d27be2f da9055_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x1d29ee9c fsl_mc_portal_reset +EXPORT_SYMBOL_GPL vmlinux 0x1d4a703f clk_fixed_factor_ops +EXPORT_SYMBOL_GPL vmlinux 0x1d56b252 fwnode_connection_find_match EXPORT_SYMBOL_GPL vmlinux 0x1d6696b0 mtk_mutex_disable -EXPORT_SYMBOL_GPL vmlinux 0x1d671b76 handle_fasteoi_mask_irq -EXPORT_SYMBOL_GPL vmlinux 0x1d6d99d1 udp_init_sock -EXPORT_SYMBOL_GPL vmlinux 0x1d71ed52 scmi_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0x1d749c07 nvmem_cell_read_variable_le_u32 +EXPORT_SYMBOL_GPL vmlinux 0x1d74409f hwpoison_filter EXPORT_SYMBOL_GPL vmlinux 0x1d77b0f8 unix_socket_table -EXPORT_SYMBOL_GPL vmlinux 0x1d7fa3ba gpiochip_get_desc EXPORT_SYMBOL_GPL vmlinux 0x1d94a218 dmi_memdev_handle -EXPORT_SYMBOL_GPL vmlinux 0x1d98432f blk_mq_virtio_map_queues -EXPORT_SYMBOL_GPL vmlinux 0x1d9e1bea usb_urb_ep_type_check -EXPORT_SYMBOL_GPL vmlinux 0x1da063ce phy_modify_changed -EXPORT_SYMBOL_GPL vmlinux 0x1da2390f bpf_trace_run2 -EXPORT_SYMBOL_GPL vmlinux 0x1db5bd60 __auxiliary_driver_register -EXPORT_SYMBOL_GPL vmlinux 0x1db6955f sched_trace_rq_avg_dl -EXPORT_SYMBOL_GPL vmlinux 0x1dbcaf96 acpi_storage_d3 -EXPORT_SYMBOL_GPL vmlinux 0x1dc9693f dprc_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x1dd4ba8b mtk_pinconf_bias_disable_set -EXPORT_SYMBOL_GPL vmlinux 0x1de1d68b dmi_kobj -EXPORT_SYMBOL_GPL vmlinux 0x1de22257 anon_inode_getfd_secure +EXPORT_SYMBOL_GPL vmlinux 0x1d9631d5 dev_pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x1d9fbee3 pci_ioremap_wc_bar +EXPORT_SYMBOL_GPL vmlinux 0x1da122ef kvm_unmap_gfn +EXPORT_SYMBOL_GPL vmlinux 0x1da3c23a tps80031_ext_power_req_config +EXPORT_SYMBOL_GPL vmlinux 0x1da8ff19 ata_sas_sync_probe +EXPORT_SYMBOL_GPL vmlinux 0x1da94a33 rio_dma_prep_xfer +EXPORT_SYMBOL_GPL vmlinux 0x1dede871 regmap_field_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0x1def5f08 devm_regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x1df05bb0 pci_disable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0x1df319d1 devm_gpiod_get_index EXPORT_SYMBOL_GPL vmlinux 0x1dfa5dbd mpi_invm -EXPORT_SYMBOL_GPL vmlinux 0x1dfe1290 platform_device_register EXPORT_SYMBOL_GPL vmlinux 0x1e0670c6 reset_control_release -EXPORT_SYMBOL_GPL vmlinux 0x1e09fd51 devm_rtc_allocate_device -EXPORT_SYMBOL_GPL vmlinux 0x1e1786f7 apply_to_existing_page_range -EXPORT_SYMBOL_GPL vmlinux 0x1e2a7208 serdev_controller_add +EXPORT_SYMBOL_GPL vmlinux 0x1e376586 crypto_unregister_acomps +EXPORT_SYMBOL_GPL vmlinux 0x1e421be1 divider_determine_rate EXPORT_SYMBOL_GPL vmlinux 0x1e424d61 user_preparse -EXPORT_SYMBOL_GPL vmlinux 0x1e46e5b2 fib_new_table -EXPORT_SYMBOL_GPL vmlinux 0x1e4c7f46 regmap_register_patch -EXPORT_SYMBOL_GPL vmlinux 0x1e4da8cd ata_sff_data_xfer32 EXPORT_SYMBOL_GPL vmlinux 0x1e4e98c0 acpi_dev_filter_resource_type -EXPORT_SYMBOL_GPL vmlinux 0x1e58bd2c crypto_stats_kpp_set_secret -EXPORT_SYMBOL_GPL vmlinux 0x1e5c51f0 of_genpd_add_provider_onecell -EXPORT_SYMBOL_GPL vmlinux 0x1e5d1271 device_store_ulong +EXPORT_SYMBOL_GPL vmlinux 0x1e5e5986 usb_deregister +EXPORT_SYMBOL_GPL vmlinux 0x1e66f790 sbitmap_bitmap_show +EXPORT_SYMBOL_GPL vmlinux 0x1e696bfe register_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x1e6b26aa thermal_zone_of_get_sensor_id EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart EXPORT_SYMBOL_GPL vmlinux 0x1e83fee6 HYPERVISOR_physdev_op -EXPORT_SYMBOL_GPL vmlinux 0x1e841f15 __devm_of_phy_provider_register -EXPORT_SYMBOL_GPL vmlinux 0x1e8a31f7 pktgen_xfrm_outer_mode_output -EXPORT_SYMBOL_GPL vmlinux 0x1e8f60fa hisi_uncore_pmu_set_event_period +EXPORT_SYMBOL_GPL vmlinux 0x1e89cfd4 clk_register_mux_table +EXPORT_SYMBOL_GPL vmlinux 0x1e8a9ab4 ipv4_sk_redirect EXPORT_SYMBOL_GPL vmlinux 0x1e8fac8e wireless_nlevent_flush -EXPORT_SYMBOL_GPL vmlinux 0x1e946cec crypto_stats_aead_decrypt EXPORT_SYMBOL_GPL vmlinux 0x1e9872f6 sbitmap_finish_wait -EXPORT_SYMBOL_GPL vmlinux 0x1e993ed6 gpiochip_irq_domain_deactivate EXPORT_SYMBOL_GPL vmlinux 0x1e9bc719 freq_qos_update_request EXPORT_SYMBOL_GPL vmlinux 0x1e9c590a usb_find_common_endpoints_reverse -EXPORT_SYMBOL_GPL vmlinux 0x1ea9b626 uart_console_write EXPORT_SYMBOL_GPL vmlinux 0x1eb9516e round_jiffies_relative -EXPORT_SYMBOL_GPL vmlinux 0x1ebe4692 i2c_new_smbus_alert_device EXPORT_SYMBOL_GPL vmlinux 0x1ebf6c2a pci_power_names +EXPORT_SYMBOL_GPL vmlinux 0x1ec1ee7d crypto_register_shashes +EXPORT_SYMBOL_GPL vmlinux 0x1ec5af24 tc3589x_reg_read EXPORT_SYMBOL_GPL vmlinux 0x1ed4d2eb percpu_ref_kill_and_confirm -EXPORT_SYMBOL_GPL vmlinux 0x1edf7f0f dpcon_get_attributes -EXPORT_SYMBOL_GPL vmlinux 0x1ef4503e regmap_get_max_register -EXPORT_SYMBOL_GPL vmlinux 0x1ef853a8 sdio_writew -EXPORT_SYMBOL_GPL vmlinux 0x1ef9ee94 bus_register -EXPORT_SYMBOL_GPL vmlinux 0x1efa5373 of_prop_next_string +EXPORT_SYMBOL_GPL vmlinux 0x1ed738fe spi_split_transfers_maxsize EXPORT_SYMBOL_GPL vmlinux 0x1efaa06f __tracepoint_xhci_dbg_quirks -EXPORT_SYMBOL_GPL vmlinux 0x1f002fb5 dev_pm_opp_of_add_table_noclk -EXPORT_SYMBOL_GPL vmlinux 0x1f04b0e6 devm_clk_bulk_get_all -EXPORT_SYMBOL_GPL vmlinux 0x1f0793ce kobject_init_and_add -EXPORT_SYMBOL_GPL vmlinux 0x1f095e99 kobject_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0x1f09c7c3 trace_array_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0x1f0bbcf1 fsnotify_add_mark EXPORT_SYMBOL_GPL vmlinux 0x1f0cb5bf pm_power_off_prepare EXPORT_SYMBOL_GPL vmlinux 0x1f1cc011 zynqmp_pm_get_chipid -EXPORT_SYMBOL_GPL vmlinux 0x1f279849 of_thermal_get_trip_points -EXPORT_SYMBOL_GPL vmlinux 0x1f303849 uart_handle_cts_change +EXPORT_SYMBOL_GPL vmlinux 0x1f213c16 fwnode_graph_get_next_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x1f24c7b3 of_pwm_xlate_with_flags +EXPORT_SYMBOL_GPL vmlinux 0x1f25ade3 scsi_host_busy_iter EXPORT_SYMBOL_GPL vmlinux 0x1f38a4f6 mpi_set_highbit -EXPORT_SYMBOL_GPL vmlinux 0x1f3e4156 devm_remove_action +EXPORT_SYMBOL_GPL vmlinux 0x1f3edac4 wait_for_stable_page EXPORT_SYMBOL_GPL vmlinux 0x1f449588 mctrl_gpio_disable_ms +EXPORT_SYMBOL_GPL vmlinux 0x1f478816 __platform_register_drivers +EXPORT_SYMBOL_GPL vmlinux 0x1f51ac87 regulator_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x1f561a68 dpcon_close EXPORT_SYMBOL_GPL vmlinux 0x1f563160 bpf_offload_dev_priv -EXPORT_SYMBOL_GPL vmlinux 0x1f5a0527 ahci_platform_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x1f7f4899 md_run -EXPORT_SYMBOL_GPL vmlinux 0x1f852d8e is_swiotlb_active +EXPORT_SYMBOL_GPL vmlinux 0x1f615d64 mmc_get_ext_csd +EXPORT_SYMBOL_GPL vmlinux 0x1f6a8fd4 vp_modern_set_status EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout -EXPORT_SYMBOL_GPL vmlinux 0x1f8fbea0 rio_mport_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x1f8a5aa0 gpiod_get_value_cansleep EXPORT_SYMBOL_GPL vmlinux 0x1f9a2b53 zynqmp_pm_clock_enable -EXPORT_SYMBOL_GPL vmlinux 0x1fa06cc3 pci_enable_rom EXPORT_SYMBOL_GPL vmlinux 0x1fa1d95c sha256_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x1fa3c727 pci_vpd_alloc -EXPORT_SYMBOL_GPL vmlinux 0x1fa4125c __rio_local_write_config_32 -EXPORT_SYMBOL_GPL vmlinux 0x1fb20232 gfn_to_page_many_atomic -EXPORT_SYMBOL_GPL vmlinux 0x1fb69abb bpf_map_inc EXPORT_SYMBOL_GPL vmlinux 0x1fb70eb9 gnttab_end_foreign_transfer_ref -EXPORT_SYMBOL_GPL vmlinux 0x1fc35b5e tpm_transmit_cmd -EXPORT_SYMBOL_GPL vmlinux 0x1fd2c2f3 bsg_register_queue +EXPORT_SYMBOL_GPL vmlinux 0x1fba40af serial8250_handle_irq EXPORT_SYMBOL_GPL vmlinux 0x1fdb2501 poll_state_synchronize_srcu -EXPORT_SYMBOL_GPL vmlinux 0x1fe20b9f tegra_mc_write_emem_configuration +EXPORT_SYMBOL_GPL vmlinux 0x1fe0f990 devm_tegra_memory_controller_get EXPORT_SYMBOL_GPL vmlinux 0x1fe6e504 gpiod_add_hogs EXPORT_SYMBOL_GPL vmlinux 0x1fee7136 trace_seq_putc -EXPORT_SYMBOL_GPL vmlinux 0x1ff05e83 virtqueue_add_sgs -EXPORT_SYMBOL_GPL vmlinux 0x1ff164f3 irq_domain_add_legacy -EXPORT_SYMBOL_GPL vmlinux 0x1fff7899 da903x_writes EXPORT_SYMBOL_GPL vmlinux 0x2009e400 devlink_info_board_serial_number_put -EXPORT_SYMBOL_GPL vmlinux 0x201c3c57 ahci_init_controller -EXPORT_SYMBOL_GPL vmlinux 0x2027eccd irq_chip_enable_parent +EXPORT_SYMBOL_GPL vmlinux 0x200a4d6f of_property_read_string EXPORT_SYMBOL_GPL vmlinux 0x202d4ed6 nvmem_cell_write -EXPORT_SYMBOL_GPL vmlinux 0x2038995a nvdimm_has_cache -EXPORT_SYMBOL_GPL vmlinux 0x20419693 transport_setup_device -EXPORT_SYMBOL_GPL vmlinux 0x204237ed task_cls_state -EXPORT_SYMBOL_GPL vmlinux 0x204caa49 regmap_mmio_attach_clk +EXPORT_SYMBOL_GPL vmlinux 0x203268e8 pinctrl_generic_get_group EXPORT_SYMBOL_GPL vmlinux 0x204f2c5c gnttab_free_grant_reference -EXPORT_SYMBOL_GPL vmlinux 0x206b94aa verify_signature -EXPORT_SYMBOL_GPL vmlinux 0x206f6024 crypto_alloc_sync_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x2080d201 __fscrypt_encrypt_symlink +EXPORT_SYMBOL_GPL vmlinux 0x205db99b cpufreq_dbs_governor_start +EXPORT_SYMBOL_GPL vmlinux 0x206feed7 fsl_mc_resource_allocate +EXPORT_SYMBOL_GPL vmlinux 0x2080c7fe regulator_set_mode EXPORT_SYMBOL_GPL vmlinux 0x20835a9f __xdp_release_frame -EXPORT_SYMBOL_GPL vmlinux 0x20852f3c fwnode_remove_software_node -EXPORT_SYMBOL_GPL vmlinux 0x20916c99 usb_hcd_pci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x2088a893 regulator_map_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x208ab038 fsl_mc_driver_unregister EXPORT_SYMBOL_GPL vmlinux 0x20978fb9 idr_find -EXPORT_SYMBOL_GPL vmlinux 0x2099ffa2 regulator_is_equal -EXPORT_SYMBOL_GPL vmlinux 0x209c30ce devfreq_event_set_event -EXPORT_SYMBOL_GPL vmlinux 0x20abdc3c set_primary_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x20b43fe2 strp_init -EXPORT_SYMBOL_GPL vmlinux 0x20c2de88 edac_pci_release_generic_ctl -EXPORT_SYMBOL_GPL vmlinux 0x20c7cf2f blk_add_driver_data -EXPORT_SYMBOL_GPL vmlinux 0x20cf6abb crypto_grab_aead -EXPORT_SYMBOL_GPL vmlinux 0x20dbf96e percpu_free_rwsem -EXPORT_SYMBOL_GPL vmlinux 0x20e57f8b class_dev_iter_init -EXPORT_SYMBOL_GPL vmlinux 0x20ef9d40 xenbus_dev_remove +EXPORT_SYMBOL_GPL vmlinux 0x20b4b6ef platform_device_add +EXPORT_SYMBOL_GPL vmlinux 0x20b81a6f __vfs_removexattr_locked +EXPORT_SYMBOL_GPL vmlinux 0x20c41a47 __netdev_watchdog_up +EXPORT_SYMBOL_GPL vmlinux 0x20ceae44 rdev_set_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x20d27ee2 extcon_set_property +EXPORT_SYMBOL_GPL vmlinux 0x20dccb3f ahci_set_em_messages +EXPORT_SYMBOL_GPL vmlinux 0x20e8bb38 class_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x20f26c61 rio_local_set_device_id EXPORT_SYMBOL_GPL vmlinux 0x20fc44ac serdev_acpi_get_uart_resource -EXPORT_SYMBOL_GPL vmlinux 0x21031c64 device_attach -EXPORT_SYMBOL_GPL vmlinux 0x21069174 driver_attach -EXPORT_SYMBOL_GPL vmlinux 0x2106ed4f __traceiter_block_rq_insert -EXPORT_SYMBOL_GPL vmlinux 0x2109ce23 fuse_get_unique -EXPORT_SYMBOL_GPL vmlinux 0x2109d65d usb_of_get_interface_node -EXPORT_SYMBOL_GPL vmlinux 0x21143efd tcp_reno_ssthresh -EXPORT_SYMBOL_GPL vmlinux 0x2120b2b8 wbc_detach_inode -EXPORT_SYMBOL_GPL vmlinux 0x21397e3b devm_usb_get_phy_by_node -EXPORT_SYMBOL_GPL vmlinux 0x213af20f sk_msg_zerocopy_from_iter -EXPORT_SYMBOL_GPL vmlinux 0x215d2619 ethnl_cable_test_alloc -EXPORT_SYMBOL_GPL vmlinux 0x21637021 xfer_to_guest_mode_handle_work -EXPORT_SYMBOL_GPL vmlinux 0x2165fe63 virtqueue_notify -EXPORT_SYMBOL_GPL vmlinux 0x216735cd cdrom_multisession -EXPORT_SYMBOL_GPL vmlinux 0x216d2409 raw_hash_sk +EXPORT_SYMBOL_GPL vmlinux 0x20ff9414 pid_vnr +EXPORT_SYMBOL_GPL vmlinux 0x2109dc05 usb_phy_roothub_resume +EXPORT_SYMBOL_GPL vmlinux 0x2115d60e uart_xchar_out +EXPORT_SYMBOL_GPL vmlinux 0x212d12b1 devm_phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0x21409bf2 crypto_stats_skcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x21682dbf irq_chip_mask_ack_parent +EXPORT_SYMBOL_GPL vmlinux 0x216c80b1 iommu_unmap EXPORT_SYMBOL_GPL vmlinux 0x216de4e1 rcu_get_gp_kthreads_prio EXPORT_SYMBOL_GPL vmlinux 0x216df332 tracepoint_srcu EXPORT_SYMBOL_GPL vmlinux 0x2176e42a hwpoison_filter_memcg -EXPORT_SYMBOL_GPL vmlinux 0x217d9718 pinctrl_utils_add_map_configs -EXPORT_SYMBOL_GPL vmlinux 0x2193e898 adp5520_clr_bits -EXPORT_SYMBOL_GPL vmlinux 0x21a3aa79 pci_enable_pasid +EXPORT_SYMBOL_GPL vmlinux 0x21824e30 page_cache_sync_ra +EXPORT_SYMBOL_GPL vmlinux 0x2185c350 __devres_alloc_node +EXPORT_SYMBOL_GPL vmlinux 0x2190c059 dma_resv_test_signaled +EXPORT_SYMBOL_GPL vmlinux 0x219e2967 receive_fd EXPORT_SYMBOL_GPL vmlinux 0x21a563da clk_get_accuracy EXPORT_SYMBOL_GPL vmlinux 0x21ac8b77 iommu_group_get_by_id -EXPORT_SYMBOL_GPL vmlinux 0x21b58927 pcie_aspm_enabled +EXPORT_SYMBOL_GPL vmlinux 0x21b26d38 software_node_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x21b65dc3 dev_pm_opp_adjust_voltage +EXPORT_SYMBOL_GPL vmlinux 0x21b72d9a dm_table_set_type EXPORT_SYMBOL_GPL vmlinux 0x21c34c8f gnttab_end_foreign_transfer -EXPORT_SYMBOL_GPL vmlinux 0x21caa6f5 tegra_xusb_padctl_legacy_remove +EXPORT_SYMBOL_GPL vmlinux 0x21c455a4 amba_device_put EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher EXPORT_SYMBOL_GPL vmlinux 0x21ce3ed1 dev_fetch_sw_netstats -EXPORT_SYMBOL_GPL vmlinux 0x21ecdd63 acpi_dev_pm_attach -EXPORT_SYMBOL_GPL vmlinux 0x21fc2063 pm_generic_thaw_early +EXPORT_SYMBOL_GPL vmlinux 0x21d3af7e meson_axg_pmx_ops +EXPORT_SYMBOL_GPL vmlinux 0x21fb74c5 inet6_csk_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0x2200061c __tracepoint_pelt_irq_tp -EXPORT_SYMBOL_GPL vmlinux 0x2207eb3e securityfs_create_symlink -EXPORT_SYMBOL_GPL vmlinux 0x22096f63 pm_genpd_remove_subdomain EXPORT_SYMBOL_GPL vmlinux 0x220ce70c kvm_arm_hyp_service_available -EXPORT_SYMBOL_GPL vmlinux 0x220e0c3b devm_gpiochip_add_data_with_key +EXPORT_SYMBOL_GPL vmlinux 0x220e5f07 aead_register_instance EXPORT_SYMBOL_GPL vmlinux 0x2211a4c0 blk_op_str +EXPORT_SYMBOL_GPL vmlinux 0x2216601f devm_thermal_zone_of_sensor_register EXPORT_SYMBOL_GPL vmlinux 0x221eab6d scatterwalk_copychunks -EXPORT_SYMBOL_GPL vmlinux 0x2220b127 of_genpd_remove_subdomain -EXPORT_SYMBOL_GPL vmlinux 0x22330062 platform_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0x224562e7 of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0x222c423b nf_hook_entries_insert_raw +EXPORT_SYMBOL_GPL vmlinux 0x2233b45c debugfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0x22408e36 i2c_parse_fw_timings +EXPORT_SYMBOL_GPL vmlinux 0x22464052 wakeup_source_create +EXPORT_SYMBOL_GPL vmlinux 0x22499af2 md_bitmap_copy_from_slot EXPORT_SYMBOL_GPL vmlinux 0x224f51bf nvmem_device_cell_read -EXPORT_SYMBOL_GPL vmlinux 0x22541fdc ata_sff_wait_ready -EXPORT_SYMBOL_GPL vmlinux 0x225f0351 bgmac_adjust_link -EXPORT_SYMBOL_GPL vmlinux 0x22606af2 __traceiter_wbc_writepage -EXPORT_SYMBOL_GPL vmlinux 0x226448d0 usb_control_msg -EXPORT_SYMBOL_GPL vmlinux 0x227488b8 pm_generic_resume_noirq -EXPORT_SYMBOL_GPL vmlinux 0x229afd20 __traceiter_fib6_table_lookup -EXPORT_SYMBOL_GPL vmlinux 0x229eb170 register_pernet_device -EXPORT_SYMBOL_GPL vmlinux 0x229fd5ec inet6_csk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x22a01805 crypto_shash_digest -EXPORT_SYMBOL_GPL vmlinux 0x22b6b439 phy_modify_mmd_changed -EXPORT_SYMBOL_GPL vmlinux 0x22b7e72c pinctrl_register_and_init -EXPORT_SYMBOL_GPL vmlinux 0x22bbeabd dmaengine_desc_set_metadata_len -EXPORT_SYMBOL_GPL vmlinux 0x22c4d3d7 security_path_chmod -EXPORT_SYMBOL_GPL vmlinux 0x22cdabc7 __blk_mq_debugfs_rq_show -EXPORT_SYMBOL_GPL vmlinux 0x22d110ea serial8250_em485_stop_tx +EXPORT_SYMBOL_GPL vmlinux 0x22540708 __traceiter_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0x22554860 component_master_add_with_match +EXPORT_SYMBOL_GPL vmlinux 0x225f8dfe clk_hw_rate_is_protected +EXPORT_SYMBOL_GPL vmlinux 0x22665a58 __fsl_mc_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x22720a6e platform_unregister_drivers +EXPORT_SYMBOL_GPL vmlinux 0x22739af6 lwtunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0x2284202f skb_splice_bits +EXPORT_SYMBOL_GPL vmlinux 0x228c25c9 mtk_pinconf_drive_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x22920583 rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0x229332eb tcp_reno_undo_cwnd +EXPORT_SYMBOL_GPL vmlinux 0x229ce121 of_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x22b88e9f blk_mq_flush_busy_ctxs +EXPORT_SYMBOL_GPL vmlinux 0x22bfd3b1 setfl +EXPORT_SYMBOL_GPL vmlinux 0x22c04787 devm_rpi_firmware_get +EXPORT_SYMBOL_GPL vmlinux 0x22c1a976 pm_clk_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x22d0b290 bsg_job_done +EXPORT_SYMBOL_GPL vmlinux 0x22d316ae irq_chip_set_affinity_parent EXPORT_SYMBOL_GPL vmlinux 0x22d60537 tcf_frag_xmit_count EXPORT_SYMBOL_GPL vmlinux 0x22d9409b iomap_sort_ioends +EXPORT_SYMBOL_GPL vmlinux 0x22dfe32e of_get_regulator_init_data EXPORT_SYMBOL_GPL vmlinux 0x22ec5205 cpu_latency_qos_remove_request -EXPORT_SYMBOL_GPL vmlinux 0x22f35a56 l3mdev_ifindex_lookup_by_table_id -EXPORT_SYMBOL_GPL vmlinux 0x22f598f8 trace_event_buffer_reserve EXPORT_SYMBOL_GPL vmlinux 0x22fd08ba cpuacct_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x231a3781 to_nvdimm_bus -EXPORT_SYMBOL_GPL vmlinux 0x231e8f71 blk_mq_queue_inflight -EXPORT_SYMBOL_GPL vmlinux 0x2324fe3c __fib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x23272516 pci_epc_remove_epf +EXPORT_SYMBOL_GPL vmlinux 0x230d31da virtqueue_notify +EXPORT_SYMBOL_GPL vmlinux 0x230fb71a gnttab_unmap_refs +EXPORT_SYMBOL_GPL vmlinux 0x232f305d usb_phy_set_charger_current +EXPORT_SYMBOL_GPL vmlinux 0x232f4a09 of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x233c5382 usb_autopm_get_interface_no_resume EXPORT_SYMBOL_GPL vmlinux 0x23412816 rtc_tm_to_ktime -EXPORT_SYMBOL_GPL vmlinux 0x234cceb4 dax_finish_sync_fault EXPORT_SYMBOL_GPL vmlinux 0x234cf416 devlink_fmsg_string_pair_put -EXPORT_SYMBOL_GPL vmlinux 0x234fe0b8 bio_clone_blkg_association -EXPORT_SYMBOL_GPL vmlinux 0x2351eb4b ipv4_sk_redirect -EXPORT_SYMBOL_GPL vmlinux 0x235fee01 is_transparent_hugepage -EXPORT_SYMBOL_GPL vmlinux 0x23650a87 ipv6_find_tlv -EXPORT_SYMBOL_GPL vmlinux 0x23724c84 of_pm_clk_add_clk -EXPORT_SYMBOL_GPL vmlinux 0x237761a4 xen_dbgp_external_startup -EXPORT_SYMBOL_GPL vmlinux 0x2379241f get_net_ns_by_pid -EXPORT_SYMBOL_GPL vmlinux 0x2380e61f device_pm_wait_for_dev +EXPORT_SYMBOL_GPL vmlinux 0x23770184 xenbus_dev_changed EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node -EXPORT_SYMBOL_GPL vmlinux 0x23868534 pci_epc_start -EXPORT_SYMBOL_GPL vmlinux 0x238e6774 balloon_page_alloc EXPORT_SYMBOL_GPL vmlinux 0x2396c7f0 clk_set_parent -EXPORT_SYMBOL_GPL vmlinux 0x2398d720 ip6_flush_pending_frames -EXPORT_SYMBOL_GPL vmlinux 0x23a8bdfa pci_epc_put -EXPORT_SYMBOL_GPL vmlinux 0x23adc722 gpiod_export -EXPORT_SYMBOL_GPL vmlinux 0x23ba28c5 scsi_host_complete_all_commands -EXPORT_SYMBOL_GPL vmlinux 0x23c6e59a iptunnel_handle_offloads -EXPORT_SYMBOL_GPL vmlinux 0x23d5281e crypto_comp_compress -EXPORT_SYMBOL_GPL vmlinux 0x23d95fcd da903x_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x23dd6518 __auxiliary_device_add -EXPORT_SYMBOL_GPL vmlinux 0x23e27c2b phy_power_off -EXPORT_SYMBOL_GPL vmlinux 0x23e50b32 regulator_set_soft_start_regmap -EXPORT_SYMBOL_GPL vmlinux 0x23e7ca2d gfn_to_pfn_prot -EXPORT_SYMBOL_GPL vmlinux 0x23ec01cb devm_gpiod_get_array -EXPORT_SYMBOL_GPL vmlinux 0x23f67ea5 usb_unlocked_disable_lpm -EXPORT_SYMBOL_GPL vmlinux 0x23ff61f9 gpiod_put -EXPORT_SYMBOL_GPL vmlinux 0x24098976 smpboot_register_percpu_thread -EXPORT_SYMBOL_GPL vmlinux 0x241199f2 ima_file_hash -EXPORT_SYMBOL_GPL vmlinux 0x2419b05f kvm_vcpu_map +EXPORT_SYMBOL_GPL vmlinux 0x23a39647 da9052_disable_irq_nosync +EXPORT_SYMBOL_GPL vmlinux 0x23ae9fa5 device_match_of_node +EXPORT_SYMBOL_GPL vmlinux 0x23b01019 pci_destroy_slot +EXPORT_SYMBOL_GPL vmlinux 0x23d88166 sdio_writesb +EXPORT_SYMBOL_GPL vmlinux 0x23dfb64e user_update +EXPORT_SYMBOL_GPL vmlinux 0x23e0fa41 gnttab_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x23e52907 __devm_rtc_register_device +EXPORT_SYMBOL_GPL vmlinux 0x23e69547 list_lru_walk_one +EXPORT_SYMBOL_GPL vmlinux 0x23ec8b53 security_kernel_read_file +EXPORT_SYMBOL_GPL vmlinux 0x23f8df20 dm_report_zones +EXPORT_SYMBOL_GPL vmlinux 0x240d3d73 icc_std_aggregate EXPORT_SYMBOL_GPL vmlinux 0x2421097b mpi_const -EXPORT_SYMBOL_GPL vmlinux 0x2424efd5 efivars_unregister -EXPORT_SYMBOL_GPL vmlinux 0x24251455 devm_hwspin_lock_free -EXPORT_SYMBOL_GPL vmlinux 0x243cb7e4 kvm_read_guest -EXPORT_SYMBOL_GPL vmlinux 0x24476532 nf_hook_entries_delete_raw -EXPORT_SYMBOL_GPL vmlinux 0x244bbcb9 phy_led_triggers_register -EXPORT_SYMBOL_GPL vmlinux 0x2451e214 extcon_get_property -EXPORT_SYMBOL_GPL vmlinux 0x2460a710 virtqueue_add_inbuf_ctx -EXPORT_SYMBOL_GPL vmlinux 0x2460aa75 dpbp_close +EXPORT_SYMBOL_GPL vmlinux 0x2425a94f pm_generic_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x242b3ccb devm_nvmem_device_put +EXPORT_SYMBOL_GPL vmlinux 0x2435b91c gnttab_alloc_pages +EXPORT_SYMBOL_GPL vmlinux 0x243723b8 pci_dev_lock +EXPORT_SYMBOL_GPL vmlinux 0x243fd59a devlink_free +EXPORT_SYMBOL_GPL vmlinux 0x24437a2c pci_create_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x2444bca3 validate_xmit_skb_list +EXPORT_SYMBOL_GPL vmlinux 0x24512d1e __auxiliary_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x24527764 kick_process +EXPORT_SYMBOL_GPL vmlinux 0x24574027 xenbus_read_otherend_details EXPORT_SYMBOL_GPL vmlinux 0x2464da17 gen_pool_size -EXPORT_SYMBOL_GPL vmlinux 0x2484ab77 i2c_handle_smbus_host_notify +EXPORT_SYMBOL_GPL vmlinux 0x2481ad92 extcon_dev_register EXPORT_SYMBOL_GPL vmlinux 0x2484e789 vbin_printf -EXPORT_SYMBOL_GPL vmlinux 0x248bb5b4 xdp_do_redirect -EXPORT_SYMBOL_GPL vmlinux 0x248bc4d1 blk_queue_rq_timeout EXPORT_SYMBOL_GPL vmlinux 0x248bc867 raw_notifier_call_chain_robust EXPORT_SYMBOL_GPL vmlinux 0x248e1473 kfree_strarray -EXPORT_SYMBOL_GPL vmlinux 0x2497e763 bgmac_enet_probe -EXPORT_SYMBOL_GPL vmlinux 0x24ac29e2 key_type_trusted +EXPORT_SYMBOL_GPL vmlinux 0x24a8ac37 usb_hcd_start_port_resume EXPORT_SYMBOL_GPL vmlinux 0x24ad11db wakeup_sources_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0x24c3a1ab cgroup_get_e_css +EXPORT_SYMBOL_GPL vmlinux 0x24bd8b08 pci_msi_mask_irq +EXPORT_SYMBOL_GPL vmlinux 0x24be2f67 devm_pm_opp_set_regulators +EXPORT_SYMBOL_GPL vmlinux 0x24c0db67 ata_scsi_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x24d04409 __audit_inode_child EXPORT_SYMBOL_GPL vmlinux 0x24da0093 rcu_inkernel_boot_has_ended -EXPORT_SYMBOL_GPL vmlinux 0x24da09fc watchdog_set_restart_priority -EXPORT_SYMBOL_GPL vmlinux 0x24e9ea99 kgdb_unregister_io_module +EXPORT_SYMBOL_GPL vmlinux 0x24dbfd4b regulator_bulk_register_supply_alias EXPORT_SYMBOL_GPL vmlinux 0x24eb7e32 leds_list -EXPORT_SYMBOL_GPL vmlinux 0x24ee4a60 sk_psock_init +EXPORT_SYMBOL_GPL vmlinux 0x24f3145e spi_mem_exec_op EXPORT_SYMBOL_GPL vmlinux 0x24f39c39 reset_control_reset +EXPORT_SYMBOL_GPL vmlinux 0x24f4c61b led_update_brightness EXPORT_SYMBOL_GPL vmlinux 0x24f63dcf ata_xfer_mask2mode EXPORT_SYMBOL_GPL vmlinux 0x24fc50f4 kdb_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2511301c pci_store_saved_state -EXPORT_SYMBOL_GPL vmlinux 0x2517b500 __mdiobus_modify_changed -EXPORT_SYMBOL_GPL vmlinux 0x251d7492 iommu_unmap +EXPORT_SYMBOL_GPL vmlinux 0x24fe7f71 devm_regulator_irq_helper +EXPORT_SYMBOL_GPL vmlinux 0x250aa5a9 da9052_request_irq +EXPORT_SYMBOL_GPL vmlinux 0x252089aa simple_attr_open EXPORT_SYMBOL_GPL vmlinux 0x25301bc6 arch_wb_cache_pmem +EXPORT_SYMBOL_GPL vmlinux 0x2536b3f9 cpufreq_dbs_governor_limits EXPORT_SYMBOL_GPL vmlinux 0x25379e73 clk_set_min_rate -EXPORT_SYMBOL_GPL vmlinux 0x25432859 acpi_subsys_suspend_late -EXPORT_SYMBOL_GPL vmlinux 0x2555e6b1 ata_eh_freeze_port -EXPORT_SYMBOL_GPL vmlinux 0x255c25d0 fsl8250_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0x255df795 usb_hcd_link_urb_to_ep -EXPORT_SYMBOL_GPL vmlinux 0x256d8755 fsl_mc_bus_dpdcei_type +EXPORT_SYMBOL_GPL vmlinux 0x25425bc5 regmap_irq_get_domain +EXPORT_SYMBOL_GPL vmlinux 0x25529696 netlink_remove_tap +EXPORT_SYMBOL_GPL vmlinux 0x256be7d5 fat_get_dotdot_entry EXPORT_SYMBOL_GPL vmlinux 0x2574da11 zynqmp_pm_write_pggs -EXPORT_SYMBOL_GPL vmlinux 0x257a4452 get_cpu_device -EXPORT_SYMBOL_GPL vmlinux 0x2587faf2 kvm_get_running_vcpu -EXPORT_SYMBOL_GPL vmlinux 0x25893d90 iommu_aux_detach_device +EXPORT_SYMBOL_GPL vmlinux 0x258f6f06 dma_get_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x25911269 crypto_grab_shash EXPORT_SYMBOL_GPL vmlinux 0x2592fc6c console_printk -EXPORT_SYMBOL_GPL vmlinux 0x25a68517 gen10g_config_aneg -EXPORT_SYMBOL_GPL vmlinux 0x25a83002 pm_clk_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x25aa2ff7 dev_attr_em_message_type EXPORT_SYMBOL_GPL vmlinux 0x25bbfa9a security_kernel_load_data -EXPORT_SYMBOL_GPL vmlinux 0x25d0bcbe devm_nvmem_device_put -EXPORT_SYMBOL_GPL vmlinux 0x25fa103f serdev_device_write -EXPORT_SYMBOL_GPL vmlinux 0x261b1913 dev_fill_metadata_dst -EXPORT_SYMBOL_GPL vmlinux 0x26290069 sock_gen_put -EXPORT_SYMBOL_GPL vmlinux 0x2638e599 lp8788_update_bits +EXPORT_SYMBOL_GPL vmlinux 0x25c839fd con_debug_enter +EXPORT_SYMBOL_GPL vmlinux 0x25cd451f rio_inb_pwrite_handler +EXPORT_SYMBOL_GPL vmlinux 0x25e88351 ata_sff_prereset +EXPORT_SYMBOL_GPL vmlinux 0x2608571d i2c_add_numbered_adapter +EXPORT_SYMBOL_GPL vmlinux 0x2630828c of_clk_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0x26393ba4 __pm_runtime_idle EXPORT_SYMBOL_GPL vmlinux 0x263f039e xas_nomem -EXPORT_SYMBOL_GPL vmlinux 0x263f7c83 spi_alloc_device -EXPORT_SYMBOL_GPL vmlinux 0x26437949 perf_event_release_kernel +EXPORT_SYMBOL_GPL vmlinux 0x26512301 badblocks_set EXPORT_SYMBOL_GPL vmlinux 0x26520970 vm_memory_committed +EXPORT_SYMBOL_GPL vmlinux 0x265b1a64 mptcp_token_get_sock EXPORT_SYMBOL_GPL vmlinux 0x265bbef9 kexec_crash_loaded -EXPORT_SYMBOL_GPL vmlinux 0x265cbcc9 da903x_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x265e1b91 devres_open_group -EXPORT_SYMBOL_GPL vmlinux 0x26605d90 of_property_count_elems_of_size -EXPORT_SYMBOL_GPL vmlinux 0x26618aa5 acpi_dma_request_slave_chan_by_name +EXPORT_SYMBOL_GPL vmlinux 0x26694da8 l3mdev_master_ifindex_rcu EXPORT_SYMBOL_GPL vmlinux 0x266a4b08 tasklet_unlock -EXPORT_SYMBOL_GPL vmlinux 0x266e332d ata_dummy_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x266f5efb usb_alloc_urb +EXPORT_SYMBOL_GPL vmlinux 0x266bbe37 of_nvmem_cell_get +EXPORT_SYMBOL_GPL vmlinux 0x2672f43e rio_add_net +EXPORT_SYMBOL_GPL vmlinux 0x267dbdfa mmc_cmdq_disable EXPORT_SYMBOL_GPL vmlinux 0x267df662 smp_call_on_cpu -EXPORT_SYMBOL_GPL vmlinux 0x26808d29 spi_async -EXPORT_SYMBOL_GPL vmlinux 0x2689bcee gov_attr_set_get +EXPORT_SYMBOL_GPL vmlinux 0x268404e8 irq_generic_chip_ops +EXPORT_SYMBOL_GPL vmlinux 0x2684232a kvm_io_bus_write EXPORT_SYMBOL_GPL vmlinux 0x26a93eb2 verify_pkcs7_signature EXPORT_SYMBOL_GPL vmlinux 0x26ab4755 put_old_itimerspec32 +EXPORT_SYMBOL_GPL vmlinux 0x26bd5e6d fib4_rule_default +EXPORT_SYMBOL_GPL vmlinux 0x26c310d9 usb_submit_urb +EXPORT_SYMBOL_GPL vmlinux 0x26c85604 sysfs_remove_mount_point EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense -EXPORT_SYMBOL_GPL vmlinux 0x26ece7d2 mptcp_subflow_init_cookie_req +EXPORT_SYMBOL_GPL vmlinux 0x26cc50b1 pm_generic_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0x26d69aa3 __traceiter_tcp_bad_csum +EXPORT_SYMBOL_GPL vmlinux 0x26eb16c2 xenbus_frontend_closed EXPORT_SYMBOL_GPL vmlinux 0x26ed2186 register_vmap_purge_notifier +EXPORT_SYMBOL_GPL vmlinux 0x26fafedf ip_route_output_key_hash +EXPORT_SYMBOL_GPL vmlinux 0x26fb629c __iomap_dio_rw EXPORT_SYMBOL_GPL vmlinux 0x2701953f mtk_mutex_add_comp +EXPORT_SYMBOL_GPL vmlinux 0x27031953 ulpi_viewport_access_ops EXPORT_SYMBOL_GPL vmlinux 0x27046576 kvm_exit -EXPORT_SYMBOL_GPL vmlinux 0x2712d998 icc_provider_del +EXPORT_SYMBOL_GPL vmlinux 0x2711afef rio_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x27149aa8 virtio_max_dma_size +EXPORT_SYMBOL_GPL vmlinux 0x27268b51 gfn_to_hva EXPORT_SYMBOL_GPL vmlinux 0x272e9d77 hisi_reset_exit -EXPORT_SYMBOL_GPL vmlinux 0x27350229 mddev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x2730e1a2 acpi_pci_check_ejectable +EXPORT_SYMBOL_GPL vmlinux 0x27456583 sysfs_update_group EXPORT_SYMBOL_GPL vmlinux 0x274dd1a3 sg_free_table_chained -EXPORT_SYMBOL_GPL vmlinux 0x2755ce5b __inode_attach_wb -EXPORT_SYMBOL_GPL vmlinux 0x276bff10 clk_mux_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x275d254d fib_rules_unregister EXPORT_SYMBOL_GPL vmlinux 0x2773c485 __wake_up_locked -EXPORT_SYMBOL_GPL vmlinux 0x277a0a4f trace_event_raw_init -EXPORT_SYMBOL_GPL vmlinux 0x278ebc70 alloc_skb_for_msg -EXPORT_SYMBOL_GPL vmlinux 0x27950102 mmc_switch -EXPORT_SYMBOL_GPL vmlinux 0x2795d3b9 iomap_zero_range -EXPORT_SYMBOL_GPL vmlinux 0x279b7ee1 device_dma_supported -EXPORT_SYMBOL_GPL vmlinux 0x279bfd17 generic_device_group -EXPORT_SYMBOL_GPL vmlinux 0x279fdb2e ti_sci_get_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x27a1f416 dev_pm_opp_of_add_table -EXPORT_SYMBOL_GPL vmlinux 0x27bb69d3 pm_runtime_autosuspend_expiration -EXPORT_SYMBOL_GPL vmlinux 0x27c74d9b irq_chip_set_vcpu_affinity_parent -EXPORT_SYMBOL_GPL vmlinux 0x27cde84d pinmux_generic_remove_function +EXPORT_SYMBOL_GPL vmlinux 0x2774cfd6 __inode_attach_wb +EXPORT_SYMBOL_GPL vmlinux 0x277f4397 __rio_local_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x2782f0ac devres_close_group +EXPORT_SYMBOL_GPL vmlinux 0x2787b0dc mptcp_subflow_init_cookie_req +EXPORT_SYMBOL_GPL vmlinux 0x278d2cf5 dpcon_get_attributes +EXPORT_SYMBOL_GPL vmlinux 0x27adf0d1 anon_inode_getfile +EXPORT_SYMBOL_GPL vmlinux 0x27bcd276 kobject_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0x27c142dd pci_epf_destroy +EXPORT_SYMBOL_GPL vmlinux 0x27c5d5a6 cpufreq_enable_fast_switch EXPORT_SYMBOL_GPL vmlinux 0x27dc9471 __tracepoint_br_fdb_update -EXPORT_SYMBOL_GPL vmlinux 0x27f27b13 power_supply_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0x27eec8b4 __devm_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x27ef7ea9 dev_pm_opp_put_regulators EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter EXPORT_SYMBOL_GPL vmlinux 0x27fa66e1 nr_free_buffer_pages +EXPORT_SYMBOL_GPL vmlinux 0x27fd321d fsl_mc_bus_dpmcp_type EXPORT_SYMBOL_GPL vmlinux 0x27fd4f87 gfn_to_hva_memslot -EXPORT_SYMBOL_GPL vmlinux 0x2817f27e edac_pci_free_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0x2805d72d __traceiter_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x280edecd __pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0x281585d6 devm_pm_opp_register_set_opp_helper +EXPORT_SYMBOL_GPL vmlinux 0x28163a9c tty_init_termios EXPORT_SYMBOL_GPL vmlinux 0x2817f7fd cppc_get_desired_perf -EXPORT_SYMBOL_GPL vmlinux 0x28234108 xfrm_audit_state_delete -EXPORT_SYMBOL_GPL vmlinux 0x282c79d9 of_dma_xlate_by_chan_id EXPORT_SYMBOL_GPL vmlinux 0x282cdabc usb_led_activity -EXPORT_SYMBOL_GPL vmlinux 0x28523e51 of_property_read_variable_u64_array -EXPORT_SYMBOL_GPL vmlinux 0x285843dd __ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0x283138e2 set_secondary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x283d616f phy_driver_is_genphy +EXPORT_SYMBOL_GPL vmlinux 0x284ccf86 crypto_ahash_finup EXPORT_SYMBOL_GPL vmlinux 0x2864abc9 klist_node_attached -EXPORT_SYMBOL_GPL vmlinux 0x28658f5c crypto_register_ahash +EXPORT_SYMBOL_GPL vmlinux 0x2868b019 regulator_set_current_limit_regmap EXPORT_SYMBOL_GPL vmlinux 0x286cc647 async_synchronize_cookie_domain -EXPORT_SYMBOL_GPL vmlinux 0x286f0e1a spi_add_device -EXPORT_SYMBOL_GPL vmlinux 0x2875b2d0 __traceiter_neigh_update +EXPORT_SYMBOL_GPL vmlinux 0x286d60d3 ip6_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x287879a1 power_supply_set_input_current_limit_from_supplier +EXPORT_SYMBOL_GPL vmlinux 0x287c95c1 tps6586x_read EXPORT_SYMBOL_GPL vmlinux 0x2882d40e usb_role_switch_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2891ed24 blkg_conf_prep -EXPORT_SYMBOL_GPL vmlinux 0x28929818 receive_fd -EXPORT_SYMBOL_GPL vmlinux 0x289aaa7a splice_to_pipe +EXPORT_SYMBOL_GPL vmlinux 0x2884a834 devm_power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0x288e42d4 espintcp_queue_out +EXPORT_SYMBOL_GPL vmlinux 0x2891cf92 bgmac_alloc EXPORT_SYMBOL_GPL vmlinux 0x28aa6a67 call_rcu EXPORT_SYMBOL_GPL vmlinux 0x28ab4fb9 pinctrl_gpio_free EXPORT_SYMBOL_GPL vmlinux 0x28afbb08 cpu_latency_qos_add_request EXPORT_SYMBOL_GPL vmlinux 0x28b030d2 of_overlay_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0x28b10838 md_start -EXPORT_SYMBOL_GPL vmlinux 0x28c60f3e bpf_trace_run4 -EXPORT_SYMBOL_GPL vmlinux 0x28e30d58 usb_alloc_streams -EXPORT_SYMBOL_GPL vmlinux 0x28e34b54 fsl_mc_bus_dpmac_type -EXPORT_SYMBOL_GPL vmlinux 0x28eb60ab nf_checksum +EXPORT_SYMBOL_GPL vmlinux 0x28b39118 get_kernel_pages +EXPORT_SYMBOL_GPL vmlinux 0x28c0289c __efivar_entry_get +EXPORT_SYMBOL_GPL vmlinux 0x28c77939 pm_generic_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x28d015e1 acpi_subsys_restore_early EXPORT_SYMBOL_GPL vmlinux 0x28f26684 irq_set_affinity_hint -EXPORT_SYMBOL_GPL vmlinux 0x28f3ecdf __traceiter_pelt_se_tp -EXPORT_SYMBOL_GPL vmlinux 0x28f82b92 virtqueue_add_outbuf -EXPORT_SYMBOL_GPL vmlinux 0x2902e1f3 gpiod_set_raw_value -EXPORT_SYMBOL_GPL vmlinux 0x290376f5 nvmem_cell_read_u8 +EXPORT_SYMBOL_GPL vmlinux 0x28f646d8 devfreq_event_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x290ad580 __sync_filesystem EXPORT_SYMBOL_GPL vmlinux 0x291876f3 mpi_ec_get_affine -EXPORT_SYMBOL_GPL vmlinux 0x29199255 dm_internal_suspend_fast -EXPORT_SYMBOL_GPL vmlinux 0x2925bba6 rockchip_pcie_init_port -EXPORT_SYMBOL_GPL vmlinux 0x292e0d92 kgdb_register_io_module +EXPORT_SYMBOL_GPL vmlinux 0x292478cf clk_fixed_rate_ops +EXPORT_SYMBOL_GPL vmlinux 0x2937ba9c init_dummy_netdev +EXPORT_SYMBOL_GPL vmlinux 0x293d6f91 dax_iomap_fault +EXPORT_SYMBOL_GPL vmlinux 0x29509b96 virtqueue_get_buf_ctx EXPORT_SYMBOL_GPL vmlinux 0x295b982a hisi_clk_register_fixed_rate -EXPORT_SYMBOL_GPL vmlinux 0x295c6a6c clk_bulk_get_optional -EXPORT_SYMBOL_GPL vmlinux 0x296d0472 power_supply_put -EXPORT_SYMBOL_GPL vmlinux 0x297bc64c lp8788_read_byte -EXPORT_SYMBOL_GPL vmlinux 0x298aea47 dw_pcie_ep_linkup -EXPORT_SYMBOL_GPL vmlinux 0x2993735f blk_mq_freeze_queue -EXPORT_SYMBOL_GPL vmlinux 0x29a28ae3 setfl -EXPORT_SYMBOL_GPL vmlinux 0x29ae15b7 power_supply_set_battery_charged -EXPORT_SYMBOL_GPL vmlinux 0x29ce582e tps6586x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x296a65cc i2c_match_id +EXPORT_SYMBOL_GPL vmlinux 0x296aedca tty_port_register_device_attr_serdev +EXPORT_SYMBOL_GPL vmlinux 0x297025e8 iommu_dev_disable_feature +EXPORT_SYMBOL_GPL vmlinux 0x29819590 shash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x299413d8 crypto_alloc_shash +EXPORT_SYMBOL_GPL vmlinux 0x29a03042 rcuwait_wake_up +EXPORT_SYMBOL_GPL vmlinux 0x29a47c1b ip6_flush_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x29bd0b5b inet6_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x29c4e86a serial8250_modem_status +EXPORT_SYMBOL_GPL vmlinux 0x29d02eb0 rio_request_mport_dma EXPORT_SYMBOL_GPL vmlinux 0x29d76547 k3_udma_glue_tdown_rx_chn -EXPORT_SYMBOL_GPL vmlinux 0x29dcb5a9 fat_get_dotdot_entry -EXPORT_SYMBOL_GPL vmlinux 0x29e70bf2 __blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0x29e59c18 nvdimm_has_cache EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async -EXPORT_SYMBOL_GPL vmlinux 0x29f29e4d iommu_set_pgtable_quirks +EXPORT_SYMBOL_GPL vmlinux 0x2a027501 synth_event_trace_array +EXPORT_SYMBOL_GPL vmlinux 0x2a094508 bpf_trace_run7 +EXPORT_SYMBOL_GPL vmlinux 0x2a09aee6 acpi_bind_one EXPORT_SYMBOL_GPL vmlinux 0x2a0a40fa mdio_bus_init -EXPORT_SYMBOL_GPL vmlinux 0x2a23b995 crypto_find_alg +EXPORT_SYMBOL_GPL vmlinux 0x2a1573dc mmc_poll_for_busy +EXPORT_SYMBOL_GPL vmlinux 0x2a1ac84a crypto_ahash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x2a2f54ca synth_event_add_next_val EXPORT_SYMBOL_GPL vmlinux 0x2a37ea11 imx_clk_hw_frac_pll -EXPORT_SYMBOL_GPL vmlinux 0x2a491f51 phy_modify_mmd EXPORT_SYMBOL_GPL vmlinux 0x2a5ea9ef rhashtable_destroy EXPORT_SYMBOL_GPL vmlinux 0x2a62cb3a ring_buffer_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0x2a653920 bus_get_device_klist EXPORT_SYMBOL_GPL vmlinux 0x2a678a13 __suspend_report_result +EXPORT_SYMBOL_GPL vmlinux 0x2a6f47bf ping_bind +EXPORT_SYMBOL_GPL vmlinux 0x2a7309fc spi_add_device EXPORT_SYMBOL_GPL vmlinux 0x2a7316da __SCK__tp_func_neigh_cleanup_and_release -EXPORT_SYMBOL_GPL vmlinux 0x2a866560 pm_generic_restore +EXPORT_SYMBOL_GPL vmlinux 0x2a7838f7 dprc_close EXPORT_SYMBOL_GPL vmlinux 0x2a8af55a acpi_ec_add_query_handler -EXPORT_SYMBOL_GPL vmlinux 0x2a8d93a3 i2c_recover_bus -EXPORT_SYMBOL_GPL vmlinux 0x2aacf880 kvm_vcpu_read_guest_page +EXPORT_SYMBOL_GPL vmlinux 0x2a96d60c ip6_dst_lookup_flow EXPORT_SYMBOL_GPL vmlinux 0x2aadad1a efi_capsule_update -EXPORT_SYMBOL_GPL vmlinux 0x2aae3a2e device_create_file -EXPORT_SYMBOL_GPL vmlinux 0x2abf945d tty_ldisc_receive_buf -EXPORT_SYMBOL_GPL vmlinux 0x2acb1a74 sdio_memcpy_fromio -EXPORT_SYMBOL_GPL vmlinux 0x2ad881f9 usb_of_has_combined_node +EXPORT_SYMBOL_GPL vmlinux 0x2aae47ab pm_generic_restore_early +EXPORT_SYMBOL_GPL vmlinux 0x2aae51cd crypto_enqueue_request +EXPORT_SYMBOL_GPL vmlinux 0x2ab30a85 gfn_to_memslot +EXPORT_SYMBOL_GPL vmlinux 0x2abcda8b ata_sff_freeze +EXPORT_SYMBOL_GPL vmlinux 0x2abe9f7b ndo_dflt_bridge_getlink +EXPORT_SYMBOL_GPL vmlinux 0x2ac154f3 subsys_find_device_by_id +EXPORT_SYMBOL_GPL vmlinux 0x2acc197b dma_buf_get +EXPORT_SYMBOL_GPL vmlinux 0x2ad3cfd1 free_io_pgtable_ops +EXPORT_SYMBOL_GPL vmlinux 0x2adf11f3 devm_phy_create +EXPORT_SYMBOL_GPL vmlinux 0x2adf8c7c rockchip_register_restart_notifier EXPORT_SYMBOL_GPL vmlinux 0x2ae1689e zynqmp_pm_clock_getdivider -EXPORT_SYMBOL_GPL vmlinux 0x2ae209a5 tegra_bpmp_mrq_return -EXPORT_SYMBOL_GPL vmlinux 0x2ae345a6 tc3589x_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x2af42ee6 devlink_resource_register +EXPORT_SYMBOL_GPL vmlinux 0x2ae32fcf cpufreq_cpu_get +EXPORT_SYMBOL_GPL vmlinux 0x2ae4295e thermal_zone_get_temp +EXPORT_SYMBOL_GPL vmlinux 0x2aec5cf8 rio_route_get_entry +EXPORT_SYMBOL_GPL vmlinux 0x2afa8a8d thermal_add_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0x2aff9fcf crypto_stats_akcipher_encrypt EXPORT_SYMBOL_GPL vmlinux 0x2b0765ca xen_store_interface -EXPORT_SYMBOL_GPL vmlinux 0x2b0b21ea genpd_dev_pm_attach_by_id EXPORT_SYMBOL_GPL vmlinux 0x2b0fe000 gnttab_cancel_free_callback -EXPORT_SYMBOL_GPL vmlinux 0x2b1140d4 irq_domain_reset_irq_data -EXPORT_SYMBOL_GPL vmlinux 0x2b15202a driver_for_each_device -EXPORT_SYMBOL_GPL vmlinux 0x2b307735 tegra_bpmp_transfer -EXPORT_SYMBOL_GPL vmlinux 0x2b35edf2 subsys_virtual_register +EXPORT_SYMBOL_GPL vmlinux 0x2b1b25f4 devlink_sb_register +EXPORT_SYMBOL_GPL vmlinux 0x2b22a1a7 pm_schedule_suspend +EXPORT_SYMBOL_GPL vmlinux 0x2b316cd4 acpi_subsys_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0x2b38d22f max8997_read_reg +EXPORT_SYMBOL_GPL vmlinux 0x2b3b8a17 umd_cleanup_helper EXPORT_SYMBOL_GPL vmlinux 0x2b4509dd devlink_health_reporter_state_update -EXPORT_SYMBOL_GPL vmlinux 0x2b473e2c __fscrypt_prepare_readdir -EXPORT_SYMBOL_GPL vmlinux 0x2b502b33 pid_vnr -EXPORT_SYMBOL_GPL vmlinux 0x2b5adf79 hwmon_device_register_with_info -EXPORT_SYMBOL_GPL vmlinux 0x2b5c900f pin_user_pages_fast -EXPORT_SYMBOL_GPL vmlinux 0x2b5ce223 __spi_alloc_controller EXPORT_SYMBOL_GPL vmlinux 0x2b6150fb power_supply_temp2resist_simple -EXPORT_SYMBOL_GPL vmlinux 0x2b672c59 usb_choose_configuration EXPORT_SYMBOL_GPL vmlinux 0x2b6d960d synth_event_cmd_init -EXPORT_SYMBOL_GPL vmlinux 0x2b701a77 pinmux_generic_get_function_count +EXPORT_SYMBOL_GPL vmlinux 0x2b6e84e9 dst_cache_get_ip4 +EXPORT_SYMBOL_GPL vmlinux 0x2b70b416 inet_csk_route_child_sock +EXPORT_SYMBOL_GPL vmlinux 0x2b7565e8 raw_abort +EXPORT_SYMBOL_GPL vmlinux 0x2b7968d4 devlink_port_attrs_pci_sf_set +EXPORT_SYMBOL_GPL vmlinux 0x2b7db22f tegra_bpmp_mrq_is_supported EXPORT_SYMBOL_GPL vmlinux 0x2b952517 clk_has_parent +EXPORT_SYMBOL_GPL vmlinux 0x2b95c71f led_trigger_remove EXPORT_SYMBOL_GPL vmlinux 0x2b960b66 qman_is_probed -EXPORT_SYMBOL_GPL vmlinux 0x2b961993 wm8350_reg_lock EXPORT_SYMBOL_GPL vmlinux 0x2b9997fb atomic_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0x2ba0f148 __netpoll_setup -EXPORT_SYMBOL_GPL vmlinux 0x2bab8f25 vp_modern_config_vector -EXPORT_SYMBOL_GPL vmlinux 0x2be08939 clk_hw_get_parent_by_index -EXPORT_SYMBOL_GPL vmlinux 0x2be2158a devlink_dpipe_headers_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2c0a41b5 dev_pm_domain_attach -EXPORT_SYMBOL_GPL vmlinux 0x2c0ad541 iommu_unmap_fast +EXPORT_SYMBOL_GPL vmlinux 0x2ba55c37 blk_stat_enable_accounting +EXPORT_SYMBOL_GPL vmlinux 0x2bc47b1c acpi_dma_configure_id +EXPORT_SYMBOL_GPL vmlinux 0x2bcebc6c devm_usb_get_phy_by_node +EXPORT_SYMBOL_GPL vmlinux 0x2bd2ded0 usb_get_status +EXPORT_SYMBOL_GPL vmlinux 0x2bd35ae5 pci_stop_and_remove_bus_device_locked +EXPORT_SYMBOL_GPL vmlinux 0x2be72c69 skb_append_pagefrags +EXPORT_SYMBOL_GPL vmlinux 0x2bfdccf1 dw_pcie_ep_linkup +EXPORT_SYMBOL_GPL vmlinux 0x2bff4900 devm_ti_sci_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x2c045ad8 iomap_readpage +EXPORT_SYMBOL_GPL vmlinux 0x2c136655 md_rdev_init +EXPORT_SYMBOL_GPL vmlinux 0x2c2018be bpf_trace_run5 EXPORT_SYMBOL_GPL vmlinux 0x2c208607 power_supply_is_system_supplied -EXPORT_SYMBOL_GPL vmlinux 0x2c2b7837 devfreq_event_reset_event +EXPORT_SYMBOL_GPL vmlinux 0x2c22f22a devlink_region_create +EXPORT_SYMBOL_GPL vmlinux 0x2c29fc64 fsnotify_put_mark EXPORT_SYMBOL_GPL vmlinux 0x2c3054f9 net_inc_ingress_queue -EXPORT_SYMBOL_GPL vmlinux 0x2c34190c dm_per_bio_data EXPORT_SYMBOL_GPL vmlinux 0x2c36cc85 __tracepoint_unmap -EXPORT_SYMBOL_GPL vmlinux 0x2c4480a8 iommu_setup_dma_ops -EXPORT_SYMBOL_GPL vmlinux 0x2c45cc63 skb_mpls_update_lse -EXPORT_SYMBOL_GPL vmlinux 0x2c4c05b2 blk_queue_max_discard_segments -EXPORT_SYMBOL_GPL vmlinux 0x2c4f47c1 xen_xenbus_fops +EXPORT_SYMBOL_GPL vmlinux 0x2c419ea6 kgdb_register_io_module +EXPORT_SYMBOL_GPL vmlinux 0x2c6304d1 clk_hw_get_flags EXPORT_SYMBOL_GPL vmlinux 0x2c635527 arch_invalidate_pmem EXPORT_SYMBOL_GPL vmlinux 0x2c66ac85 devlink_info_serial_number_put +EXPORT_SYMBOL_GPL vmlinux 0x2c6a6cd5 __udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x2c6fac10 scsi_ioctl_block_when_processing_errors +EXPORT_SYMBOL_GPL vmlinux 0x2c73ee00 dm_start_time_ns_from_clone EXPORT_SYMBOL_GPL vmlinux 0x2c790d4a __tracepoint_sched_util_est_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x2c79735f acpi_gpiochip_free_interrupts +EXPORT_SYMBOL_GPL vmlinux 0x2c7a9a3b of_clk_hw_onecell_get EXPORT_SYMBOL_GPL vmlinux 0x2c7db649 irq_dispose_mapping EXPORT_SYMBOL_GPL vmlinux 0x2c81a826 imx_1443x_pll -EXPORT_SYMBOL_GPL vmlinux 0x2c8a0464 vfs_getxattr +EXPORT_SYMBOL_GPL vmlinux 0x2c83d413 debugfs_write_file_bool EXPORT_SYMBOL_GPL vmlinux 0x2c8dd6b8 edac_mem_types EXPORT_SYMBOL_GPL vmlinux 0x2c97f8a2 of_reconfig_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x2ca029e5 devm_spi_mem_dirmap_create -EXPORT_SYMBOL_GPL vmlinux 0x2ca3b4e3 regulator_notifier_call_chain EXPORT_SYMBOL_GPL vmlinux 0x2ca41024 ioasid_get -EXPORT_SYMBOL_GPL vmlinux 0x2ca8146f mpc8xxx_spi_rx_buf_u32 -EXPORT_SYMBOL_GPL vmlinux 0x2cad898a shash_ahash_update -EXPORT_SYMBOL_GPL vmlinux 0x2cb593b4 device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2ca59dd0 gpiod_get_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x2cacbee1 regmap_mmio_detach_clk +EXPORT_SYMBOL_GPL vmlinux 0x2cb958fb devfreq_event_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x2cbfaccf dev_pm_qos_hide_latency_tolerance EXPORT_SYMBOL_GPL vmlinux 0x2cc495c5 rpi_firmware_property_list -EXPORT_SYMBOL_GPL vmlinux 0x2cc84413 __clocksource_register_scale -EXPORT_SYMBOL_GPL vmlinux 0x2ccc5ef9 ahci_host_activate -EXPORT_SYMBOL_GPL vmlinux 0x2cd672a8 dma_get_merge_boundary -EXPORT_SYMBOL_GPL vmlinux 0x2cd6e49c pinctrl_pm_select_default_state +EXPORT_SYMBOL_GPL vmlinux 0x2cd8ea53 spi_mem_driver_unregister EXPORT_SYMBOL_GPL vmlinux 0x2ce61f33 __SCK__tp_func_br_fdb_add +EXPORT_SYMBOL_GPL vmlinux 0x2ce731f9 power_supply_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0x2ce88526 rtc_set_time EXPORT_SYMBOL_GPL vmlinux 0x2cea32ee unregister_oldmem_pfn_is_ram -EXPORT_SYMBOL_GPL vmlinux 0x2cf00af1 tty_save_termios -EXPORT_SYMBOL_GPL vmlinux 0x2cf4192f nd_blk_region_to_dimm -EXPORT_SYMBOL_GPL vmlinux 0x2cf67527 dev_attr_ncq_prio_enable -EXPORT_SYMBOL_GPL vmlinux 0x2cf9b973 rio_mport_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x2cf7a229 pci_epc_write_header EXPORT_SYMBOL_GPL vmlinux 0x2d0684a9 hrtimer_init -EXPORT_SYMBOL_GPL vmlinux 0x2d0ac9bd spi_async_locked -EXPORT_SYMBOL_GPL vmlinux 0x2d16b9ff nd_cmd_in_size -EXPORT_SYMBOL_GPL vmlinux 0x2d187d9f __fscrypt_inode_uses_inline_crypto +EXPORT_SYMBOL_GPL vmlinux 0x2d110fa4 devm_pm_opp_attach_genpd +EXPORT_SYMBOL_GPL vmlinux 0x2d1a684d driver_deferred_probe_check_state EXPORT_SYMBOL_GPL vmlinux 0x2d1b02d2 usermodehelper_read_lock_wait -EXPORT_SYMBOL_GPL vmlinux 0x2d28fc4c dma_need_sync +EXPORT_SYMBOL_GPL vmlinux 0x2d26b957 crypto_stats_rng_generate EXPORT_SYMBOL_GPL vmlinux 0x2d2c902f perf_trace_buf_alloc EXPORT_SYMBOL_GPL vmlinux 0x2d2dd36f kobj_ns_grab_current +EXPORT_SYMBOL_GPL vmlinux 0x2d302c0a pci_ioremap_bar EXPORT_SYMBOL_GPL vmlinux 0x2d41e6f5 __trace_puts +EXPORT_SYMBOL_GPL vmlinux 0x2d4782a3 cpufreq_table_index_unsorted +EXPORT_SYMBOL_GPL vmlinux 0x2d4d842e blk_mq_debugfs_rq_show +EXPORT_SYMBOL_GPL vmlinux 0x2d5dd8d1 usb_enable_intel_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0x2d5e9fc5 xenbus_grant_ring EXPORT_SYMBOL_GPL vmlinux 0x2d5f69b3 rcu_read_unlock_strict -EXPORT_SYMBOL_GPL vmlinux 0x2d60a78c bpf_map_inc_not_zero EXPORT_SYMBOL_GPL vmlinux 0x2d6aa0f0 arch_apei_enable_cmcff -EXPORT_SYMBOL_GPL vmlinux 0x2d6f16f4 tcp_set_state -EXPORT_SYMBOL_GPL vmlinux 0x2d84d892 iomap_is_partially_uptodate -EXPORT_SYMBOL_GPL vmlinux 0x2d86ff5e wm831x_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0x2d8fba35 ata_host_start -EXPORT_SYMBOL_GPL vmlinux 0x2d99feab tpm_get_random -EXPORT_SYMBOL_GPL vmlinux 0x2da1f76c cpufreq_cooling_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2dabd89c regmap_reinit_cache -EXPORT_SYMBOL_GPL vmlinux 0x2db02c09 udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x2d879f94 blkcg_activate_policy +EXPORT_SYMBOL_GPL vmlinux 0x2d87f190 scsi_free_sgtables EXPORT_SYMBOL_GPL vmlinux 0x2db67d4a owl_sps_set_pg -EXPORT_SYMBOL_GPL vmlinux 0x2db90da0 gpiochip_get_data -EXPORT_SYMBOL_GPL vmlinux 0x2dcad4da blkg_conf_finish -EXPORT_SYMBOL_GPL vmlinux 0x2de84c0f dev_pm_domain_start +EXPORT_SYMBOL_GPL vmlinux 0x2dcbdd6a __xenbus_register_backend +EXPORT_SYMBOL_GPL vmlinux 0x2de4fe72 acpi_dev_resume EXPORT_SYMBOL_GPL vmlinux 0x2e028ae6 rcutorture_get_gp_data EXPORT_SYMBOL_GPL vmlinux 0x2e08226d badrange_add -EXPORT_SYMBOL_GPL vmlinux 0x2e1c6a07 sata_link_hardreset -EXPORT_SYMBOL_GPL vmlinux 0x2e1f29e1 devm_platform_get_irqs_affinity +EXPORT_SYMBOL_GPL vmlinux 0x2e146f51 phy_modify +EXPORT_SYMBOL_GPL vmlinux 0x2e21edf9 task_active_pid_ns EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace -EXPORT_SYMBOL_GPL vmlinux 0x2e2d6b11 pin_user_pages_fast_only -EXPORT_SYMBOL_GPL vmlinux 0x2e34d643 clk_hw_get_name -EXPORT_SYMBOL_GPL vmlinux 0x2e3552a3 of_clk_add_provider -EXPORT_SYMBOL_GPL vmlinux 0x2e4c8493 phy_restore_page +EXPORT_SYMBOL_GPL vmlinux 0x2e5fa9ee blockdev_superblock EXPORT_SYMBOL_GPL vmlinux 0x2e66298c __SCK__tp_func_sched_util_est_cfs_tp EXPORT_SYMBOL_GPL vmlinux 0x2e670427 sbitmap_queue_wake_all EXPORT_SYMBOL_GPL vmlinux 0x2e678211 xas_find_conflict -EXPORT_SYMBOL_GPL vmlinux 0x2e748633 ata_port_pbar_desc -EXPORT_SYMBOL_GPL vmlinux 0x2e8efe8b sched_set_normal -EXPORT_SYMBOL_GPL vmlinux 0x2ea9f561 serial8250_rpm_put_tx +EXPORT_SYMBOL_GPL vmlinux 0x2e67a7e3 fsl_mc_populate_irq_pool +EXPORT_SYMBOL_GPL vmlinux 0x2e682360 of_add_property +EXPORT_SYMBOL_GPL vmlinux 0x2e6e1baa devm_usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0x2e7c4472 mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0x2e7c8c70 __auxiliary_device_add +EXPORT_SYMBOL_GPL vmlinux 0x2e846c0d ahci_pmp_retry_srst_ops +EXPORT_SYMBOL_GPL vmlinux 0x2e8c4bee inet_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x2e912436 spi_unregister_device EXPORT_SYMBOL_GPL vmlinux 0x2ebb19fd execute_in_process_context EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable -EXPORT_SYMBOL_GPL vmlinux 0x2ecf890c of_devfreq_cooling_register -EXPORT_SYMBOL_GPL vmlinux 0x2ed424b9 usb_deregister_dev -EXPORT_SYMBOL_GPL vmlinux 0x2edc3a5b debugfs_create_size_t -EXPORT_SYMBOL_GPL vmlinux 0x2edf353d devm_kmalloc -EXPORT_SYMBOL_GPL vmlinux 0x2edfd4d1 pm_genpd_add_device -EXPORT_SYMBOL_GPL vmlinux 0x2ee24df2 perf_pmu_register -EXPORT_SYMBOL_GPL vmlinux 0x2ee445b5 clk_fixed_factor_ops +EXPORT_SYMBOL_GPL vmlinux 0x2ec308ab evm_inode_init_security EXPORT_SYMBOL_GPL vmlinux 0x2ee7c52b btree_visitor -EXPORT_SYMBOL_GPL vmlinux 0x2ee7cf5f devm_devfreq_event_remove_edev -EXPORT_SYMBOL_GPL vmlinux 0x2ef23d0c irq_set_chip_and_handler_name -EXPORT_SYMBOL_GPL vmlinux 0x2ef3ed79 strp_done -EXPORT_SYMBOL_GPL vmlinux 0x2eff0145 meson_clk_pcie_pll_ops -EXPORT_SYMBOL_GPL vmlinux 0x2f0043b1 gpiod_set_raw_array_value -EXPORT_SYMBOL_GPL vmlinux 0x2f03108c ehci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x2eef30f4 sysfs_remove_files +EXPORT_SYMBOL_GPL vmlinux 0x2ef80e3a of_gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0x2f0180d0 ata_port_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0x2f04e9fc pinctrl_count_index_with_args EXPORT_SYMBOL_GPL vmlinux 0x2f0d9053 usb_otg_state_string -EXPORT_SYMBOL_GPL vmlinux 0x2f14ced5 nvmem_cell_read_u64 -EXPORT_SYMBOL_GPL vmlinux 0x2f1af330 phy_pm_runtime_put_sync +EXPORT_SYMBOL_GPL vmlinux 0x2f0e2be4 synth_event_trace_start +EXPORT_SYMBOL_GPL vmlinux 0x2f19d8ed pinctrl_utils_free_map EXPORT_SYMBOL_GPL vmlinux 0x2f1ea064 __SCK__tp_func_xdp_bulk_tx -EXPORT_SYMBOL_GPL vmlinux 0x2f1f1076 platform_device_add -EXPORT_SYMBOL_GPL vmlinux 0x2f20c5e3 xhci_reset_bandwidth +EXPORT_SYMBOL_GPL vmlinux 0x2f2837e1 bpf_sk_storage_diag_put EXPORT_SYMBOL_GPL vmlinux 0x2f2c95c4 flush_work +EXPORT_SYMBOL_GPL vmlinux 0x2f4085ed apply_to_page_range EXPORT_SYMBOL_GPL vmlinux 0x2f4880df static_key_slow_dec -EXPORT_SYMBOL_GPL vmlinux 0x2f4c9680 pci_user_write_config_byte -EXPORT_SYMBOL_GPL vmlinux 0x2f51e37b thermal_add_hwmon_sysfs -EXPORT_SYMBOL_GPL vmlinux 0x2f58ee61 rtc_alarm_irq_enable -EXPORT_SYMBOL_GPL vmlinux 0x2f5caf57 gpiochip_enable_irq -EXPORT_SYMBOL_GPL vmlinux 0x2f61f314 spi_write_then_read -EXPORT_SYMBOL_GPL vmlinux 0x2f6311ce perf_aux_output_end +EXPORT_SYMBOL_GPL vmlinux 0x2f55b1f0 pm_generic_resume +EXPORT_SYMBOL_GPL vmlinux 0x2f637620 devm_gpio_request EXPORT_SYMBOL_GPL vmlinux 0x2f64415f unregister_acpi_hed_notifier -EXPORT_SYMBOL_GPL vmlinux 0x2f68d36f __devm_clk_hw_register_mux -EXPORT_SYMBOL_GPL vmlinux 0x2f6945f8 query_asymmetric_key -EXPORT_SYMBOL_GPL vmlinux 0x2f6c4692 of_property_read_variable_u32_array -EXPORT_SYMBOL_GPL vmlinux 0x2f737999 skcipher_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x2f7ab24a firmware_kobj -EXPORT_SYMBOL_GPL vmlinux 0x2f8d0a28 devm_usb_get_phy_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x2f7584ab acpi_match_device +EXPORT_SYMBOL_GPL vmlinux 0x2f8aab6c wm831x_bulk_read EXPORT_SYMBOL_GPL vmlinux 0x2f8fd89d xas_split_alloc -EXPORT_SYMBOL_GPL vmlinux 0x2f941a2c skb_pull_rcsum -EXPORT_SYMBOL_GPL vmlinux 0x2f9f8e66 i2c_new_ancillary_device EXPORT_SYMBOL_GPL vmlinux 0x2fac3c71 k3_ringacc_request_rings_pair -EXPORT_SYMBOL_GPL vmlinux 0x2fac82cb bus_get_kset -EXPORT_SYMBOL_GPL vmlinux 0x2fb0f085 mtk_pinconf_bias_disable_get_rev1 -EXPORT_SYMBOL_GPL vmlinux 0x2fb29270 inet6_sk_rebuild_header -EXPORT_SYMBOL_GPL vmlinux 0x2fb90d55 sysfs_create_files -EXPORT_SYMBOL_GPL vmlinux 0x2fbf6705 arm64_mm_context_get +EXPORT_SYMBOL_GPL vmlinux 0x2fb4c0f9 rio_mport_send_doorbell +EXPORT_SYMBOL_GPL vmlinux 0x2fc1729a unregister_pernet_device EXPORT_SYMBOL_GPL vmlinux 0x2fc1e0fe kmem_valid_obj -EXPORT_SYMBOL_GPL vmlinux 0x2fc9e51d pinctrl_utils_add_config -EXPORT_SYMBOL_GPL vmlinux 0x2fd4672b ata_sff_thaw -EXPORT_SYMBOL_GPL vmlinux 0x2ff098bc __traceiter_kfree_skb -EXPORT_SYMBOL_GPL vmlinux 0x3004fa22 battery_hook_unregister -EXPORT_SYMBOL_GPL vmlinux 0x30057e68 regmap_get_device -EXPORT_SYMBOL_GPL vmlinux 0x3012550e pci_disable_sriov -EXPORT_SYMBOL_GPL vmlinux 0x3023d815 sk_psock_drop +EXPORT_SYMBOL_GPL vmlinux 0x2fd1714a gnttab_pages_clear_private +EXPORT_SYMBOL_GPL vmlinux 0x2fdcd82f mtk_pinconf_drive_get +EXPORT_SYMBOL_GPL vmlinux 0x2fe67fcf noop_backing_dev_info +EXPORT_SYMBOL_GPL vmlinux 0x2fe9fac6 sata_scr_read +EXPORT_SYMBOL_GPL vmlinux 0x2ff5612f bpf_prog_create +EXPORT_SYMBOL_GPL vmlinux 0x300fc7b4 ipv6_opt_accepted EXPORT_SYMBOL_GPL vmlinux 0x3025eee0 tegra210_clk_emc_dll_update_setting -EXPORT_SYMBOL_GPL vmlinux 0x302b3135 mdio_mux_init -EXPORT_SYMBOL_GPL vmlinux 0x30338e5a nfs42_ssc_unregister -EXPORT_SYMBOL_GPL vmlinux 0x3034e9ef pm_genpd_init +EXPORT_SYMBOL_GPL vmlinux 0x30324248 fat_sync_inode EXPORT_SYMBOL_GPL vmlinux 0x30351294 k3_udma_glue_rx_flow_get_fdq_id -EXPORT_SYMBOL_GPL vmlinux 0x303e15ba power_supply_register -EXPORT_SYMBOL_GPL vmlinux 0x3042108c ata_dev_pair -EXPORT_SYMBOL_GPL vmlinux 0x304fb1fe pci_hp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0x303cacd0 kvm_set_memory_region +EXPORT_SYMBOL_GPL vmlinux 0x30612b11 usb_lock_device_for_reset EXPORT_SYMBOL_GPL vmlinux 0x3061cfce ring_buffer_entries_cpu -EXPORT_SYMBOL_GPL vmlinux 0x308dd6b7 devm_pm_opp_set_supported_hw -EXPORT_SYMBOL_GPL vmlinux 0x3094e7cf irq_domain_associate_many -EXPORT_SYMBOL_GPL vmlinux 0x30ab04ad wakeup_source_add -EXPORT_SYMBOL_GPL vmlinux 0x30b31582 ata_eh_analyze_ncq_error -EXPORT_SYMBOL_GPL vmlinux 0x30b501cc vring_new_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0x30caffdc ata_sff_tf_load -EXPORT_SYMBOL_GPL vmlinux 0x30cb2b78 blk_trace_startstop -EXPORT_SYMBOL_GPL vmlinux 0x30cec47c devm_create_dev_dax -EXPORT_SYMBOL_GPL vmlinux 0x30d446ae serdev_device_write_room -EXPORT_SYMBOL_GPL vmlinux 0x30d5144b sfp_bus_add_upstream +EXPORT_SYMBOL_GPL vmlinux 0x30743eac usb_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0x3074727b led_blink_set_oneshot +EXPORT_SYMBOL_GPL vmlinux 0x30796f7b sk_msg_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0x308a8324 rockchip_pcie_deinit_phys +EXPORT_SYMBOL_GPL vmlinux 0x30aa131d of_phy_put +EXPORT_SYMBOL_GPL vmlinux 0x30b64f2a dev_pm_disable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x30bb6a78 kvm_vcpu_destroy +EXPORT_SYMBOL_GPL vmlinux 0x30bbe5bc serial8250_do_shutdown EXPORT_SYMBOL_GPL vmlinux 0x30d5747b srcu_init_notifier_head +EXPORT_SYMBOL_GPL vmlinux 0x30db79ae pm_clk_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x30deff94 crypto_req_done EXPORT_SYMBOL_GPL vmlinux 0x30e1ec25 apei_map_generic_address +EXPORT_SYMBOL_GPL vmlinux 0x30e2a129 ata_port_freeze +EXPORT_SYMBOL_GPL vmlinux 0x30eb4e25 skb_mpls_update_lse +EXPORT_SYMBOL_GPL vmlinux 0x30fd4fd4 pinconf_generic_dump_config EXPORT_SYMBOL_GPL vmlinux 0x31019477 __ftrace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0x3103eb9b device_store_ulong +EXPORT_SYMBOL_GPL vmlinux 0x310f5d67 kvm_map_gfn EXPORT_SYMBOL_GPL vmlinux 0x31128b8e hv_remove_kexec_handler EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave -EXPORT_SYMBOL_GPL vmlinux 0x312f0681 tpm_pcr_extend +EXPORT_SYMBOL_GPL vmlinux 0x312de77d __regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0x3133dd0d devm_ti_sci_get_resource EXPORT_SYMBOL_GPL vmlinux 0x313ea5fd ipi_send_single -EXPORT_SYMBOL_GPL vmlinux 0x314209ec dev_coredumpv -EXPORT_SYMBOL_GPL vmlinux 0x31549f66 dev_pm_opp_put_prop_name -EXPORT_SYMBOL_GPL vmlinux 0x3176765d sdio_set_block_size -EXPORT_SYMBOL_GPL vmlinux 0x31799ad0 nvmem_cell_read_u32 +EXPORT_SYMBOL_GPL vmlinux 0x313f2a95 dm_device_name +EXPORT_SYMBOL_GPL vmlinux 0x3143e881 dev_pm_opp_set_rate +EXPORT_SYMBOL_GPL vmlinux 0x314f9c09 pci_epc_mem_alloc_addr +EXPORT_SYMBOL_GPL vmlinux 0x31573332 kvm_vcpu_gfn_to_page +EXPORT_SYMBOL_GPL vmlinux 0x315a36f1 pstore_unregister 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 0x318a5ef1 usb_wakeup_notification EXPORT_SYMBOL_GPL vmlinux 0x3192d768 cpufreq_remove_update_util_hook -EXPORT_SYMBOL_GPL vmlinux 0x319a4235 blk_mq_hctx_set_fq_lock_class -EXPORT_SYMBOL_GPL vmlinux 0x319c422b led_get_default_pattern +EXPORT_SYMBOL_GPL vmlinux 0x319720a2 dev_pm_opp_find_freq_exact EXPORT_SYMBOL_GPL vmlinux 0x31a95e8b ring_buffer_record_enable_cpu -EXPORT_SYMBOL_GPL vmlinux 0x31baf62f ata_std_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x31ae37c4 scsi_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0x31b2ef87 rtnl_get_net_ns_capable +EXPORT_SYMBOL_GPL vmlinux 0x31b8d228 kobject_uevent_env EXPORT_SYMBOL_GPL vmlinux 0x31c7970f pciserial_suspend_ports -EXPORT_SYMBOL_GPL vmlinux 0x31d85df8 max8997_write_reg -EXPORT_SYMBOL_GPL vmlinux 0x31d8ee7d crypto_stats_init EXPORT_SYMBOL_GPL vmlinux 0x31dca4d8 gnttab_claim_grant_reference -EXPORT_SYMBOL_GPL vmlinux 0x31dd46bd _proc_mkdir -EXPORT_SYMBOL_GPL vmlinux 0x31e052e4 bpf_offload_dev_netdev_register -EXPORT_SYMBOL_GPL vmlinux 0x31e186c3 __netdev_watchdog_up -EXPORT_SYMBOL_GPL vmlinux 0x31e3c021 blk_ksm_destroy EXPORT_SYMBOL_GPL vmlinux 0x31e9e8d5 zynqmp_pm_set_suspend_mode -EXPORT_SYMBOL_GPL vmlinux 0x31fdf026 tpm_tis_resume -EXPORT_SYMBOL_GPL vmlinux 0x32021e27 rio_dma_prep_xfer -EXPORT_SYMBOL_GPL vmlinux 0x3205664a ping_getfrag -EXPORT_SYMBOL_GPL vmlinux 0x3216244e devm_request_free_mem_region +EXPORT_SYMBOL_GPL vmlinux 0x321d8bbf mmc_app_cmd EXPORT_SYMBOL_GPL vmlinux 0x3224b2a9 mpi_read_raw_from_sgl -EXPORT_SYMBOL_GPL vmlinux 0x323af979 of_i2c_setup_smbus_alert -EXPORT_SYMBOL_GPL vmlinux 0x32480452 devlink_param_driverinit_value_set -EXPORT_SYMBOL_GPL vmlinux 0x325767ec unregister_acpi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x322e9ebd virtqueue_is_broken +EXPORT_SYMBOL_GPL vmlinux 0x3232fa74 __traceiter_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0x323ad5e7 br_fdb_test_addr_hook +EXPORT_SYMBOL_GPL vmlinux 0x3245f98b sysfs_file_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x324fbfb6 mbox_client_peek_data EXPORT_SYMBOL_GPL vmlinux 0x325888a3 __tracepoint_neigh_update -EXPORT_SYMBOL_GPL vmlinux 0x3267c41d iommu_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x326c73f8 __platform_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x325ea2d2 __devm_spi_alloc_controller +EXPORT_SYMBOL_GPL vmlinux 0x326af2b9 irq_domain_xlate_onetwocell EXPORT_SYMBOL_GPL vmlinux 0x326cefe5 hwpoison_filter_dev_minor +EXPORT_SYMBOL_GPL vmlinux 0x326de07f store_sampling_rate +EXPORT_SYMBOL_GPL vmlinux 0x3276d2f8 serdev_device_remove EXPORT_SYMBOL_GPL vmlinux 0x327a2687 bind_evtchn_to_irq_lateeoi -EXPORT_SYMBOL_GPL vmlinux 0x32861834 platform_get_resource_byname -EXPORT_SYMBOL_GPL vmlinux 0x329e1d7c kvm_write_guest_page -EXPORT_SYMBOL_GPL vmlinux 0x32a73f7b iommu_unregister_device_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0x32836b9d tcp_bpf_sendmsg_redir +EXPORT_SYMBOL_GPL vmlinux 0x3297a7ea ip6_redirect +EXPORT_SYMBOL_GPL vmlinux 0x32a698dd fscrypt_prepare_symlink EXPORT_SYMBOL_GPL vmlinux 0x32ab06cc irq_percpu_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0x32b444fe tpm_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0x32ba83b2 edac_device_add_device EXPORT_SYMBOL_GPL vmlinux 0x32bc0fcf preempt_notifier_dec -EXPORT_SYMBOL_GPL vmlinux 0x32c27441 power_supply_powers EXPORT_SYMBOL_GPL vmlinux 0x32c2bb04 list_lru_walk_node EXPORT_SYMBOL_GPL vmlinux 0x32c3cb4e class_compat_register -EXPORT_SYMBOL_GPL vmlinux 0x32c609d1 ip6_append_data -EXPORT_SYMBOL_GPL vmlinux 0x32c6753a phy_destroy -EXPORT_SYMBOL_GPL vmlinux 0x32d1ebaf genphy_c45_read_lpa -EXPORT_SYMBOL_GPL vmlinux 0x32ec4427 spi_slave_abort -EXPORT_SYMBOL_GPL vmlinux 0x32ec8809 dev_pm_genpd_set_next_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x32e6543e inet_ctl_sock_create EXPORT_SYMBOL_GPL vmlinux 0x330010b6 cpuset_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x330378c6 of_fwnode_ops -EXPORT_SYMBOL_GPL vmlinux 0x3332907f of_modalias_node -EXPORT_SYMBOL_GPL vmlinux 0x333667c1 pcc_mbox_free_channel -EXPORT_SYMBOL_GPL vmlinux 0x334c086b ata_ehi_clear_desc -EXPORT_SYMBOL_GPL vmlinux 0x3354159e usb_set_interface +EXPORT_SYMBOL_GPL vmlinux 0x33052830 addrconf_prefix_rcv_add_addr +EXPORT_SYMBOL_GPL vmlinux 0x3305916f skcipher_walk_async +EXPORT_SYMBOL_GPL vmlinux 0x3305b1aa unregister_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x3306414b devlink_dpipe_table_register +EXPORT_SYMBOL_GPL vmlinux 0x333efce4 mtk_hw_set_value +EXPORT_SYMBOL_GPL vmlinux 0x33491a13 __traceiter_tcp_send_reset EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0x33696880 ping_init_sock -EXPORT_SYMBOL_GPL vmlinux 0x336dba69 __spi_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x3371704e unregister_wide_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x338c1f0a sysfs_rename_link_ns -EXPORT_SYMBOL_GPL vmlinux 0x338ea60e devlink_params_unregister -EXPORT_SYMBOL_GPL vmlinux 0x33b97a71 sk_msg_is_readable -EXPORT_SYMBOL_GPL vmlinux 0x33baf6d0 regmap_irq_get_domain -EXPORT_SYMBOL_GPL vmlinux 0x33c1bf9b icc_enable -EXPORT_SYMBOL_GPL vmlinux 0x33c3edc6 dev_pm_opp_get_max_volt_latency -EXPORT_SYMBOL_GPL vmlinux 0x33c9c928 rtnl_register_module -EXPORT_SYMBOL_GPL vmlinux 0x33cbb64e mptcp_pm_get_add_addr_signal_max -EXPORT_SYMBOL_GPL vmlinux 0x33d09af4 dev_pm_opp_put_opp_table -EXPORT_SYMBOL_GPL vmlinux 0x33d164e5 dm_hold -EXPORT_SYMBOL_GPL vmlinux 0x33d8a104 usb_hcd_check_unlink_urb -EXPORT_SYMBOL_GPL vmlinux 0x33e5c9fb of_irq_parse_and_map_pci -EXPORT_SYMBOL_GPL vmlinux 0x33ee3121 tty_buffer_set_limit -EXPORT_SYMBOL_GPL vmlinux 0x33fbc664 gfn_to_pfn -EXPORT_SYMBOL_GPL vmlinux 0x33fda603 fsl_mc_bus_dpio_type -EXPORT_SYMBOL_GPL vmlinux 0x34066d42 ahci_reset_em -EXPORT_SYMBOL_GPL vmlinux 0x34148eac scsi_unregister_device_handler -EXPORT_SYMBOL_GPL vmlinux 0x3418a5c3 usb_reset_device -EXPORT_SYMBOL_GPL vmlinux 0x3428756e pm_clk_add_clk -EXPORT_SYMBOL_GPL vmlinux 0x3429a9e9 mtk_eint_do_init -EXPORT_SYMBOL_GPL vmlinux 0x342ddc59 regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x337512ae dev_pm_opp_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0x33776cdb regulator_set_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x338787e7 crypto_register_scomps +EXPORT_SYMBOL_GPL vmlinux 0x338fc2db tcp_is_ulp_esp +EXPORT_SYMBOL_GPL vmlinux 0x339d7e93 of_property_read_variable_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x33ad4a01 ehci_adjust_port_wakeup_flags +EXPORT_SYMBOL_GPL vmlinux 0x33af7e60 ata_host_start +EXPORT_SYMBOL_GPL vmlinux 0x33b233fe fsnotify_put_group +EXPORT_SYMBOL_GPL vmlinux 0x33c1d064 dpcon_disable +EXPORT_SYMBOL_GPL vmlinux 0x33c3ba2a pci_cfg_access_unlock +EXPORT_SYMBOL_GPL vmlinux 0x33c46eb4 blk_set_pm_only +EXPORT_SYMBOL_GPL vmlinux 0x33ccd034 crypto_register_rng +EXPORT_SYMBOL_GPL vmlinux 0x33ce96e4 fsl_mc_get_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x33eeb333 fsl_mc_bus_dpmac_type +EXPORT_SYMBOL_GPL vmlinux 0x33f03834 power_supply_set_property +EXPORT_SYMBOL_GPL vmlinux 0x33fb4c6c regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x33fc9834 class_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x3408afdf ip_icmp_error_rfc4884 +EXPORT_SYMBOL_GPL vmlinux 0x341df81d class_compat_remove_link +EXPORT_SYMBOL_GPL vmlinux 0x342b3957 ata_cable_sata +EXPORT_SYMBOL_GPL vmlinux 0x34319ce9 mmu_notifier_get_locked +EXPORT_SYMBOL_GPL vmlinux 0x34330261 nvdimm_badblocks_populate EXPORT_SYMBOL_GPL vmlinux 0x34331f04 acpi_os_unmap_memory -EXPORT_SYMBOL_GPL vmlinux 0x34332fce gpiochip_is_requested -EXPORT_SYMBOL_GPL vmlinux 0x34372431 serial8250_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0x34404a4b divider_round_rate_parent EXPORT_SYMBOL_GPL vmlinux 0x34407691 crypto_has_ahash EXPORT_SYMBOL_GPL vmlinux 0x344361a1 kdb_register -EXPORT_SYMBOL_GPL vmlinux 0x34472c4e efivars_register EXPORT_SYMBOL_GPL vmlinux 0x344a2c84 iomap_dio_complete -EXPORT_SYMBOL_GPL vmlinux 0x344e9581 device_store_bool EXPORT_SYMBOL_GPL vmlinux 0x3450ad94 mpi_set_ui -EXPORT_SYMBOL_GPL vmlinux 0x347d6045 subsys_interface_register -EXPORT_SYMBOL_GPL vmlinux 0x34857135 devres_find -EXPORT_SYMBOL_GPL vmlinux 0x3486c6a5 iomap_swapfile_activate -EXPORT_SYMBOL_GPL vmlinux 0x34917b76 mbox_send_message -EXPORT_SYMBOL_GPL vmlinux 0x34a2bf97 rtnl_get_net_ns_capable +EXPORT_SYMBOL_GPL vmlinux 0x3457ce6b meson_clk_mpll_ops +EXPORT_SYMBOL_GPL vmlinux 0x3461ff8c regulator_bulk_force_disable +EXPORT_SYMBOL_GPL vmlinux 0x346fab6b cpuidle_register +EXPORT_SYMBOL_GPL vmlinux 0x3477998f i2c_dw_prepare_clk +EXPORT_SYMBOL_GPL vmlinux 0x3485955e clk_hw_get_parent_index +EXPORT_SYMBOL_GPL vmlinux 0x34898726 mptcp_pm_get_add_addr_accept_max +EXPORT_SYMBOL_GPL vmlinux 0x3493e28b badblocks_init +EXPORT_SYMBOL_GPL vmlinux 0x349a57a2 devm_clk_hw_unregister EXPORT_SYMBOL_GPL vmlinux 0x34a7b142 __SCK__tp_func_rpm_suspend -EXPORT_SYMBOL_GPL vmlinux 0x34b036fc pinconf_generic_parse_dt_config -EXPORT_SYMBOL_GPL vmlinux 0x34c567c9 platform_get_irq_byname -EXPORT_SYMBOL_GPL vmlinux 0x34c9e803 pwmchip_remove -EXPORT_SYMBOL_GPL vmlinux 0x34cfce23 wbt_disable_default -EXPORT_SYMBOL_GPL vmlinux 0x34d7e849 serial8250_rx_dma_flush -EXPORT_SYMBOL_GPL vmlinux 0x34e3997c hrtimer_init_sleeper +EXPORT_SYMBOL_GPL vmlinux 0x34a9bd71 uart_handle_dcd_change +EXPORT_SYMBOL_GPL vmlinux 0x34aa1f8f gpiochip_irqchip_irq_valid +EXPORT_SYMBOL_GPL vmlinux 0x34c3beb8 of_msi_configure +EXPORT_SYMBOL_GPL vmlinux 0x34ca2cf5 blkcg_root +EXPORT_SYMBOL_GPL vmlinux 0x34cc1d4d uprobe_register +EXPORT_SYMBOL_GPL vmlinux 0x34e3851e wbc_account_cgroup_owner +EXPORT_SYMBOL_GPL vmlinux 0x34e55706 sysfs_rename_link_ns EXPORT_SYMBOL_GPL vmlinux 0x34eab46d bind_evtchn_to_irqhandler EXPORT_SYMBOL_GPL vmlinux 0x34fc4ad3 __tracepoint_block_split -EXPORT_SYMBOL_GPL vmlinux 0x3506488d aead_exit_geniv EXPORT_SYMBOL_GPL vmlinux 0x350f6ce5 tasklet_unlock_wait -EXPORT_SYMBOL_GPL vmlinux 0x3511dee1 stmpe_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x35136f61 gpiod_set_config +EXPORT_SYMBOL_GPL vmlinux 0x3511468a spi_register_controller +EXPORT_SYMBOL_GPL vmlinux 0x35192905 firmware_request_platform +EXPORT_SYMBOL_GPL vmlinux 0x3526596e hrtimer_sleeper_start_expires EXPORT_SYMBOL_GPL vmlinux 0x352b3813 maxim_charger_calc_reg_current EXPORT_SYMBOL_GPL vmlinux 0x352ec68b bpf_offload_dev_destroy -EXPORT_SYMBOL_GPL vmlinux 0x3531a457 xhci_dbg_trace +EXPORT_SYMBOL_GPL vmlinux 0x353425e5 pm_generic_thaw +EXPORT_SYMBOL_GPL vmlinux 0x354dbb3a fib_nh_common_init +EXPORT_SYMBOL_GPL vmlinux 0x354e6967 fwnode_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x3557f2dc iommu_aux_get_pasid +EXPORT_SYMBOL_GPL vmlinux 0x355ab181 __cpufreq_driver_target EXPORT_SYMBOL_GPL vmlinux 0x355b2ef2 ti_sci_put_handle EXPORT_SYMBOL_GPL vmlinux 0x355bc89a klist_next EXPORT_SYMBOL_GPL vmlinux 0x3562f983 read_sanitised_ftr_reg -EXPORT_SYMBOL_GPL vmlinux 0x357070c5 dev_pm_opp_find_level_exact +EXPORT_SYMBOL_GPL vmlinux 0x3565adf1 bus_register EXPORT_SYMBOL_GPL vmlinux 0x357457c3 psil_get_ep_config -EXPORT_SYMBOL_GPL vmlinux 0x35782f08 icc_sync_state -EXPORT_SYMBOL_GPL vmlinux 0x3580e8a0 iomap_bmap +EXPORT_SYMBOL_GPL vmlinux 0x358f431d fib_nexthop_info EXPORT_SYMBOL_GPL vmlinux 0x358ff60f twl_get_hfclk_rate -EXPORT_SYMBOL_GPL vmlinux 0x35999cf3 pci_try_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x35a3a29f sk_psock_tls_strp_read EXPORT_SYMBOL_GPL vmlinux 0x35a4f59d zynqmp_pm_clock_setdivider -EXPORT_SYMBOL_GPL vmlinux 0x35a52697 tps6586x_get_version +EXPORT_SYMBOL_GPL vmlinux 0x35ae7b0c regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x35b99c72 gov_attr_set_get +EXPORT_SYMBOL_GPL vmlinux 0x35bfe6b1 mmput EXPORT_SYMBOL_GPL vmlinux 0x35d3dc46 crypto_alg_sem -EXPORT_SYMBOL_GPL vmlinux 0x35de4142 bio_iov_iter_get_pages -EXPORT_SYMBOL_GPL vmlinux 0x35ec035a fsl_mc_bus_dpaiop_type -EXPORT_SYMBOL_GPL vmlinux 0x36039f5c irq_chip_request_resources_parent -EXPORT_SYMBOL_GPL vmlinux 0x36054c65 proc_create_net_single +EXPORT_SYMBOL_GPL vmlinux 0x35fb97a1 pci_disable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x3602d8e9 vp_modern_get_num_queues EXPORT_SYMBOL_GPL vmlinux 0x36075bb5 iommu_group_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x360cc4ca mptcp_subflow_request_sock_ops -EXPORT_SYMBOL_GPL vmlinux 0x361a2570 xdp_rxq_info_reg +EXPORT_SYMBOL_GPL vmlinux 0x362000db query_asymmetric_key EXPORT_SYMBOL_GPL vmlinux 0x36242943 switchdev_deferred_process -EXPORT_SYMBOL_GPL vmlinux 0x362c781d usb_hcd_giveback_urb -EXPORT_SYMBOL_GPL vmlinux 0x362dd9b1 ohci_setup -EXPORT_SYMBOL_GPL vmlinux 0x3637d75d of_map_id -EXPORT_SYMBOL_GPL vmlinux 0x3638b337 cookie_tcp_reqsk_alloc -EXPORT_SYMBOL_GPL vmlinux 0x363c57a7 pm_generic_freeze_noirq -EXPORT_SYMBOL_GPL vmlinux 0x3647e776 bpf_trace_run5 -EXPORT_SYMBOL_GPL vmlinux 0x36553551 regulator_put +EXPORT_SYMBOL_GPL vmlinux 0x3644448c spi_alloc_device +EXPORT_SYMBOL_GPL vmlinux 0x36475d7b irq_get_domain_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x364a1d84 ip6_dst_lookup EXPORT_SYMBOL_GPL vmlinux 0x365989e5 imx_1416x_pll EXPORT_SYMBOL_GPL vmlinux 0x365b45d1 __tracepoint_sched_update_nr_running_tp -EXPORT_SYMBOL_GPL vmlinux 0x3665f097 devlink_resource_occ_get_unregister -EXPORT_SYMBOL_GPL vmlinux 0x368644b7 ata_std_bios_param -EXPORT_SYMBOL_GPL vmlinux 0x3694ceb9 wakeup_sources_walk_start -EXPORT_SYMBOL_GPL vmlinux 0x369d67da power_supply_set_property +EXPORT_SYMBOL_GPL vmlinux 0x36645d7c cpci_hp_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0x3669915f hwmon_device_register_with_info +EXPORT_SYMBOL_GPL vmlinux 0x3675e2a7 led_trigger_rename_static +EXPORT_SYMBOL_GPL vmlinux 0x3680eda6 __pm_runtime_set_status +EXPORT_SYMBOL_GPL vmlinux 0x36841980 ip6_push_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x369292c0 tpm_tis_remove +EXPORT_SYMBOL_GPL vmlinux 0x3695856f regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0x369897fa unix_inq_len EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot -EXPORT_SYMBOL_GPL vmlinux 0x36aad5bd reset_controller_unregister -EXPORT_SYMBOL_GPL vmlinux 0x36d03b50 trace_array_destroy -EXPORT_SYMBOL_GPL vmlinux 0x36d9f9e1 fwnode_connection_find_match -EXPORT_SYMBOL_GPL vmlinux 0x36df112d irq_chip_set_wake_parent -EXPORT_SYMBOL_GPL vmlinux 0x36e2850c clk_hw_round_rate -EXPORT_SYMBOL_GPL vmlinux 0x36e2aaa6 software_node_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x36eaffe8 __traceiter_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0x36af1f80 dpcon_reset +EXPORT_SYMBOL_GPL vmlinux 0x36b22d88 fwnode_graph_get_remote_node +EXPORT_SYMBOL_GPL vmlinux 0x36ba650d sch_frag_xmit_hook +EXPORT_SYMBOL_GPL vmlinux 0x36c5b6f7 __clk_hw_register_divider +EXPORT_SYMBOL_GPL vmlinux 0x36e2a4b9 __blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0x36eb2273 sk_msg_alloc EXPORT_SYMBOL_GPL vmlinux 0x36ef99a2 srcu_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0x36efd7b2 ohci_suspend -EXPORT_SYMBOL_GPL vmlinux 0x36fa0eb7 ata_port_abort -EXPORT_SYMBOL_GPL vmlinux 0x3706c123 get_pid_task -EXPORT_SYMBOL_GPL vmlinux 0x370baea5 blk_req_zone_write_trylock +EXPORT_SYMBOL_GPL vmlinux 0x36f80180 anon_transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x36fbcaf9 regulator_desc_list_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0x36fdd30e kill_pid_usb_asyncio +EXPORT_SYMBOL_GPL vmlinux 0x36ff2e61 kthread_cancel_delayed_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x37036abc __inet_twsk_schedule EXPORT_SYMBOL_GPL vmlinux 0x37169f79 cpu_latency_qos_update_request -EXPORT_SYMBOL_GPL vmlinux 0x37177a65 fsl_mc_device_remove +EXPORT_SYMBOL_GPL vmlinux 0x37218bd9 scsi_autopm_get_device +EXPORT_SYMBOL_GPL vmlinux 0x372caca8 set_capacity_and_notify EXPORT_SYMBOL_GPL vmlinux 0x372cfd6e gnttab_end_foreign_access -EXPORT_SYMBOL_GPL vmlinux 0x37335e12 sysfs_group_change_owner -EXPORT_SYMBOL_GPL vmlinux 0x3736b907 acpi_dev_add_driver_gpios -EXPORT_SYMBOL_GPL vmlinux 0x37435237 class_compat_remove_link +EXPORT_SYMBOL_GPL vmlinux 0x3735a214 scsi_nl_sock EXPORT_SYMBOL_GPL vmlinux 0x374c53e1 ata_get_cmd_descript EXPORT_SYMBOL_GPL vmlinux 0x3750d770 erst_read -EXPORT_SYMBOL_GPL vmlinux 0x37538ed5 spi_mem_poll_status -EXPORT_SYMBOL_GPL vmlinux 0x375cbe02 virtqueue_enable_cb_delayed 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 0x377ceffd usb_enable_ltm -EXPORT_SYMBOL_GPL vmlinux 0x37873f61 pci_probe_reset_bus -EXPORT_SYMBOL_GPL vmlinux 0x378a8ad3 tcp_cong_avoid_ai +EXPORT_SYMBOL_GPL vmlinux 0x377cb056 fscrypt_set_context +EXPORT_SYMBOL_GPL vmlinux 0x3782688c crypto_lookup_template +EXPORT_SYMBOL_GPL vmlinux 0x37857542 generic_online_page EXPORT_SYMBOL_GPL vmlinux 0x378adfb7 zynqmp_pm_sd_dll_reset +EXPORT_SYMBOL_GPL vmlinux 0x3790f278 pcc_mbox_free_channel EXPORT_SYMBOL_GPL vmlinux 0x37914025 xenbus_write -EXPORT_SYMBOL_GPL vmlinux 0x37a74743 pci_remove_root_bus -EXPORT_SYMBOL_GPL vmlinux 0x37a92cba irq_gc_set_wake -EXPORT_SYMBOL_GPL vmlinux 0x37aa02b0 __clk_mux_determine_rate_closest -EXPORT_SYMBOL_GPL vmlinux 0x37af8153 ehci_hub_control -EXPORT_SYMBOL_GPL vmlinux 0x37b4095b uprobe_register_refctr -EXPORT_SYMBOL_GPL vmlinux 0x37bc753a sysfs_create_group -EXPORT_SYMBOL_GPL vmlinux 0x37bd79d0 of_pm_clk_add_clks +EXPORT_SYMBOL_GPL vmlinux 0x3792e22a disk_force_media_change +EXPORT_SYMBOL_GPL vmlinux 0x37a1be3b bpf_prog_select_runtime +EXPORT_SYMBOL_GPL vmlinux 0x37ad2dcc xenbus_watch_pathfmt +EXPORT_SYMBOL_GPL vmlinux 0x37b31ae3 of_css EXPORT_SYMBOL_GPL vmlinux 0x37bf7be3 percpu_ref_exit -EXPORT_SYMBOL_GPL vmlinux 0x37c09eb4 shash_free_singlespawn_instance -EXPORT_SYMBOL_GPL vmlinux 0x37c43621 udp6_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x37deeade mmc_send_status +EXPORT_SYMBOL_GPL vmlinux 0x37ccca06 ata_pio_need_iordy +EXPORT_SYMBOL_GPL vmlinux 0x37cdd9cc cpuidle_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x37ced567 ahci_platform_resume EXPORT_SYMBOL_GPL vmlinux 0x37e00980 pci_bridge_emul_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x37e7002b devm_free_percpu -EXPORT_SYMBOL_GPL vmlinux 0x37ed666b ethnl_cable_test_fault_length +EXPORT_SYMBOL_GPL vmlinux 0x37efeb76 sched_setattr_nocheck EXPORT_SYMBOL_GPL vmlinux 0x3801776b __ioread32_copy -EXPORT_SYMBOL_GPL vmlinux 0x380863df skcipher_walk_done -EXPORT_SYMBOL_GPL vmlinux 0x3809a76e hvc_instantiate -EXPORT_SYMBOL_GPL vmlinux 0x3819470a cpufreq_table_index_unsorted -EXPORT_SYMBOL_GPL vmlinux 0x381ce107 nd_blk_region_set_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x380af0b9 soc_device_register EXPORT_SYMBOL_GPL vmlinux 0x38268b62 icc_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0x38338a1a mbox_controller_unregister EXPORT_SYMBOL_GPL vmlinux 0x38374815 clear_selection -EXPORT_SYMBOL_GPL vmlinux 0x384e7550 clk_hw_register_fractional_divider -EXPORT_SYMBOL_GPL vmlinux 0x3863c880 tpm_pm_resume +EXPORT_SYMBOL_GPL vmlinux 0x3837d89e iommu_map_sg +EXPORT_SYMBOL_GPL vmlinux 0x384b1938 ata_sff_thaw +EXPORT_SYMBOL_GPL vmlinux 0x384b5050 kvm_is_visible_gfn +EXPORT_SYMBOL_GPL vmlinux 0x385dde23 ohci_suspend EXPORT_SYMBOL_GPL vmlinux 0x3866e217 nvmem_device_write -EXPORT_SYMBOL_GPL vmlinux 0x38675eef regulator_bulk_enable EXPORT_SYMBOL_GPL vmlinux 0x38708e25 inet_peer_base_init -EXPORT_SYMBOL_GPL vmlinux 0x3893fb4e crypto_unregister_alg +EXPORT_SYMBOL_GPL vmlinux 0x38774539 smpboot_unregister_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0x388a424d rtc_alarm_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0x388ea5dc pci_disable_pri +EXPORT_SYMBOL_GPL vmlinux 0x3895f13d clk_hw_register_composite EXPORT_SYMBOL_GPL vmlinux 0x389b64a2 static_key_count EXPORT_SYMBOL_GPL vmlinux 0x38aa1397 gpiod_add_lookup_table -EXPORT_SYMBOL_GPL vmlinux 0x38aad90f kvm_map_gfn -EXPORT_SYMBOL_GPL vmlinux 0x38af700f synth_event_trace_end +EXPORT_SYMBOL_GPL vmlinux 0x38bc6e0b mtk_pctrl_show_one_pin EXPORT_SYMBOL_GPL vmlinux 0x38c3ff30 freq_qos_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0x38d2a806 to_software_node +EXPORT_SYMBOL_GPL vmlinux 0x38c54fdb regulator_get_current_limit +EXPORT_SYMBOL_GPL vmlinux 0x38d049c7 posix_acl_default_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0x38d4c1cf perf_event_refresh +EXPORT_SYMBOL_GPL vmlinux 0x38da79ed sched_set_fifo +EXPORT_SYMBOL_GPL vmlinux 0x38dea6bc posix_acl_access_xattr_handler EXPORT_SYMBOL_GPL vmlinux 0x38e1fde7 mpi_set EXPORT_SYMBOL_GPL vmlinux 0x38e5bc5a clk_set_rate_range -EXPORT_SYMBOL_GPL vmlinux 0x38e640c3 vcpu_put -EXPORT_SYMBOL_GPL vmlinux 0x3907242d fscrypt_set_context -EXPORT_SYMBOL_GPL vmlinux 0x39139e69 xdp_rxq_info_is_reg -EXPORT_SYMBOL_GPL vmlinux 0x39215ce2 sprd_pinctrl_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x3924b6c6 serdev_device_set_baudrate -EXPORT_SYMBOL_GPL vmlinux 0x392a67a7 rtnl_link_register -EXPORT_SYMBOL_GPL vmlinux 0x392f74c6 devm_fwnode_gpiod_get_index -EXPORT_SYMBOL_GPL vmlinux 0x39345eb5 of_dma_router_register -EXPORT_SYMBOL_GPL vmlinux 0x3934e88f ata_pci_remove_one -EXPORT_SYMBOL_GPL vmlinux 0x39389c84 of_prop_next_u32 -EXPORT_SYMBOL_GPL vmlinux 0x393940e8 lwtunnel_xmit -EXPORT_SYMBOL_GPL vmlinux 0x393de1b2 power_supply_get_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x3955e7da regulator_force_disable -EXPORT_SYMBOL_GPL vmlinux 0x3957ee97 skb_to_sgvec -EXPORT_SYMBOL_GPL vmlinux 0x3959b612 pwm_request_from_chip -EXPORT_SYMBOL_GPL vmlinux 0x3960bc4c bpf_prog_create -EXPORT_SYMBOL_GPL vmlinux 0x397598e8 xhci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x38fafc1f dw_pcie_own_conf_map_bus +EXPORT_SYMBOL_GPL vmlinux 0x39115fc2 ata_bmdma_port_start32 +EXPORT_SYMBOL_GPL vmlinux 0x3913de22 devm_hwspin_lock_register +EXPORT_SYMBOL_GPL vmlinux 0x39148086 md_allow_write +EXPORT_SYMBOL_GPL vmlinux 0x392c7b9f ata_std_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x393f9193 tty_ldisc_ref_wait +EXPORT_SYMBOL_GPL vmlinux 0x394425fa kvm_vcpu_gfn_to_pfn_atomic +EXPORT_SYMBOL_GPL vmlinux 0x39447540 stmpe_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x395c4990 tty_perform_flush +EXPORT_SYMBOL_GPL vmlinux 0x39764dc8 metadata_dst_free +EXPORT_SYMBOL_GPL vmlinux 0x39783fc2 usb_asmedia_modifyflowcontrol +EXPORT_SYMBOL_GPL vmlinux 0x3979b346 rio_mport_chk_dev_access EXPORT_SYMBOL_GPL vmlinux 0x397e2142 __SCK__tp_func_sched_cpu_capacity_tp -EXPORT_SYMBOL_GPL vmlinux 0x3985b704 hwmon_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x3998683b devm_regulator_bulk_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x399929a2 usb_get_maximum_ssp_rate EXPORT_SYMBOL_GPL vmlinux 0x399eda0f sbitmap_add_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x39a26b6f i2c_of_match_device +EXPORT_SYMBOL_GPL vmlinux 0x39a4a08d regmap_write +EXPORT_SYMBOL_GPL vmlinux 0x39a66bd2 devlink_dpipe_headers_register EXPORT_SYMBOL_GPL vmlinux 0x39a7affc driver_deferred_probe_timeout EXPORT_SYMBOL_GPL vmlinux 0x39aa4888 usb_role_string -EXPORT_SYMBOL_GPL vmlinux 0x39bbb488 ata_dummy_port_info +EXPORT_SYMBOL_GPL vmlinux 0x39afa583 clk_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0x39b09290 gfn_to_page EXPORT_SYMBOL_GPL vmlinux 0x39c32aca __SCK__tp_func_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0x39c46edc sdio_readw +EXPORT_SYMBOL_GPL vmlinux 0x39db1118 xfrm_local_error EXPORT_SYMBOL_GPL vmlinux 0x39ded098 rdma_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x39dee37a noop_invalidatepage -EXPORT_SYMBOL_GPL vmlinux 0x39e610d7 divider_ro_determine_rate -EXPORT_SYMBOL_GPL vmlinux 0x39e91bc1 regulator_set_load -EXPORT_SYMBOL_GPL vmlinux 0x39f5eabe dev_pm_opp_find_freq_floor +EXPORT_SYMBOL_GPL vmlinux 0x39ef7b7b vfs_removexattr +EXPORT_SYMBOL_GPL vmlinux 0x39f52d05 attribute_container_unregister EXPORT_SYMBOL_GPL vmlinux 0x39fd83db halt_poll_ns_shrink -EXPORT_SYMBOL_GPL vmlinux 0x3a0168e6 fsl_mc_allocate_irqs -EXPORT_SYMBOL_GPL vmlinux 0x3a0f3a03 kernel_kobj -EXPORT_SYMBOL_GPL vmlinux 0x3a18ff6f pm_genpd_add_subdomain -EXPORT_SYMBOL_GPL vmlinux 0x3a193753 __traceiter_br_fdb_external_learn_add -EXPORT_SYMBOL_GPL vmlinux 0x3a1d5a08 dw_pcie_setup_rc -EXPORT_SYMBOL_GPL vmlinux 0x3a23ccc9 dprc_close +EXPORT_SYMBOL_GPL vmlinux 0x39fe8853 fuse_mount_remove +EXPORT_SYMBOL_GPL vmlinux 0x3a0209a8 switchdev_handle_fdb_del_to_device EXPORT_SYMBOL_GPL vmlinux 0x3a24fb2f percpu_ref_resurrect -EXPORT_SYMBOL_GPL vmlinux 0x3a2de32f register_acpi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x3a440ed0 crypto_spawn_tfm2 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 0x3a5c6575 wm831x_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x3a5fc97b ata_bmdma_post_internal_cmd -EXPORT_SYMBOL_GPL vmlinux 0x3a6604b0 devm_init_badblocks -EXPORT_SYMBOL_GPL vmlinux 0x3a6a4be0 __traceiter_br_fdb_update +EXPORT_SYMBOL_GPL vmlinux 0x3a6004bc iommu_sva_unbind_gpasid +EXPORT_SYMBOL_GPL vmlinux 0x3a722e06 clk_gate_is_enabled EXPORT_SYMBOL_GPL vmlinux 0x3a74e484 __tracepoint_sched_util_est_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x3a854962 irq_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x3a99dba4 md_run EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial -EXPORT_SYMBOL_GPL vmlinux 0x3aafe17c rio_mport_class +EXPORT_SYMBOL_GPL vmlinux 0x3aa4f01a fwnode_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x3aa86b4c dev_pm_opp_get_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0x3ab829e6 rio_add_mport_pw_handler +EXPORT_SYMBOL_GPL vmlinux 0x3abf9112 sysfs_create_bin_file EXPORT_SYMBOL_GPL vmlinux 0x3ac3feba rhltable_init -EXPORT_SYMBOL_GPL vmlinux 0x3ac7e9cb class_compat_create_link +EXPORT_SYMBOL_GPL vmlinux 0x3ac6e942 platform_msi_domain_alloc_irqs EXPORT_SYMBOL_GPL vmlinux 0x3acdf325 twl4030_audio_enable_resource -EXPORT_SYMBOL_GPL vmlinux 0x3ad22057 raw_seq_next -EXPORT_SYMBOL_GPL vmlinux 0x3ad817c5 inet_twsk_put -EXPORT_SYMBOL_GPL vmlinux 0x3aee4658 amba_device_alloc -EXPORT_SYMBOL_GPL vmlinux 0x3b115784 syscon_regmap_lookup_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x3b29b7f4 md_kick_rdev_from_array -EXPORT_SYMBOL_GPL vmlinux 0x3b318bd1 power_supply_set_input_current_limit_from_supplier -EXPORT_SYMBOL_GPL vmlinux 0x3b334aeb acpi_gpiochip_free_interrupts -EXPORT_SYMBOL_GPL vmlinux 0x3b40c6ab virtio_add_status -EXPORT_SYMBOL_GPL vmlinux 0x3b433a8d acpi_dev_clear_dependencies -EXPORT_SYMBOL_GPL vmlinux 0x3b48316a blk_stat_enable_accounting +EXPORT_SYMBOL_GPL vmlinux 0x3ad6e8c2 skb_gso_validate_mac_len +EXPORT_SYMBOL_GPL vmlinux 0x3ad7a9e6 fat_scan +EXPORT_SYMBOL_GPL vmlinux 0x3aea61cd ping_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x3afee37f nvdimm_pmem_region_create +EXPORT_SYMBOL_GPL vmlinux 0x3b0f17b5 led_classdev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x3b1deb88 input_ff_upload +EXPORT_SYMBOL_GPL vmlinux 0x3b1e7a5a of_clk_get_parent_name +EXPORT_SYMBOL_GPL vmlinux 0x3b29891a wm8350_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0x3b419eb7 devm_memunmap_pages +EXPORT_SYMBOL_GPL vmlinux 0x3b494a52 iopf_queue_remove_device EXPORT_SYMBOL_GPL vmlinux 0x3b4c240a display_timings_release -EXPORT_SYMBOL_GPL vmlinux 0x3b4f5d44 blk_queue_can_use_dma_map_merging -EXPORT_SYMBOL_GPL vmlinux 0x3b55da75 pstore_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3b536303 crypto_shash_tfm_digest +EXPORT_SYMBOL_GPL vmlinux 0x3b5c268a component_unbind_all EXPORT_SYMBOL_GPL vmlinux 0x3b610584 __tracepoint_sched_cpu_capacity_tp +EXPORT_SYMBOL_GPL vmlinux 0x3b65213e sprd_pinctrl_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x3b656730 vfs_truncate +EXPORT_SYMBOL_GPL vmlinux 0x3b6d58a2 gpio_to_desc +EXPORT_SYMBOL_GPL vmlinux 0x3b75c9cb mptcp_pm_get_subflows_max EXPORT_SYMBOL_GPL vmlinux 0x3b78bf02 sunxi_ccu_get_mmc_timing_mode -EXPORT_SYMBOL_GPL vmlinux 0x3b7a00ca espintcp_push_skb -EXPORT_SYMBOL_GPL vmlinux 0x3b7a3363 irq_set_chained_handler_and_data +EXPORT_SYMBOL_GPL vmlinux 0x3b7ab78c __traceiter_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0x3b7b0495 gpiochip_irq_domain_activate +EXPORT_SYMBOL_GPL vmlinux 0x3b7bc0b5 virtio_device_restore +EXPORT_SYMBOL_GPL vmlinux 0x3b82ce9b dma_buf_dynamic_attach EXPORT_SYMBOL_GPL vmlinux 0x3b8979ea gnttab_grant_foreign_transfer_ref -EXPORT_SYMBOL_GPL vmlinux 0x3b9c881f dev_pm_opp_get_level +EXPORT_SYMBOL_GPL vmlinux 0x3b95741f devm_reset_control_array_get EXPORT_SYMBOL_GPL vmlinux 0x3ba01b47 get_compat_sigset -EXPORT_SYMBOL_GPL vmlinux 0x3ba33440 gpiod_set_raw_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x3bb8c6ef debugfs_create_file_size -EXPORT_SYMBOL_GPL vmlinux 0x3bca0f69 cpufreq_dbs_governor_start -EXPORT_SYMBOL_GPL vmlinux 0x3bcf80cf fsnotify_alloc_group +EXPORT_SYMBOL_GPL vmlinux 0x3ba3c5f8 rio_map_inb_region +EXPORT_SYMBOL_GPL vmlinux 0x3bbd75aa platform_get_irq_byname_optional +EXPORT_SYMBOL_GPL vmlinux 0x3bcdd092 led_sysfs_enable +EXPORT_SYMBOL_GPL vmlinux 0x3bcfe126 ata_scsi_slave_config EXPORT_SYMBOL_GPL vmlinux 0x3bdb5d28 alg_test EXPORT_SYMBOL_GPL vmlinux 0x3bdc0e0c __tracepoint_neigh_event_send_done -EXPORT_SYMBOL_GPL vmlinux 0x3bdc4585 dev_pm_set_dedicated_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0x3be11c5a tcp_rate_check_app_limited -EXPORT_SYMBOL_GPL vmlinux 0x3bec9a82 regmap_field_bulk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x3bdd90dc dev_pm_opp_get_level +EXPORT_SYMBOL_GPL vmlinux 0x3bf07e2e irq_domain_remove +EXPORT_SYMBOL_GPL vmlinux 0x3bf0b6c1 ahci_port_resume EXPORT_SYMBOL_GPL vmlinux 0x3bf17755 mpi_read_buffer -EXPORT_SYMBOL_GPL vmlinux 0x3bf98186 device_property_present -EXPORT_SYMBOL_GPL vmlinux 0x3c0d8572 crypto_grab_shash +EXPORT_SYMBOL_GPL vmlinux 0x3bf45ae6 pci_epc_raise_irq EXPORT_SYMBOL_GPL vmlinux 0x3c0e8050 hyperv_pcpu_input_arg -EXPORT_SYMBOL_GPL vmlinux 0x3c0ff541 devfreq_event_remove_edev EXPORT_SYMBOL_GPL vmlinux 0x3c11b9f5 tegra210_put_utmipll_in_iddq -EXPORT_SYMBOL_GPL vmlinux 0x3c12f5db acpi_driver_match_device -EXPORT_SYMBOL_GPL vmlinux 0x3c1343af vfs_kern_mount +EXPORT_SYMBOL_GPL vmlinux 0x3c1ba768 __of_reset_control_get EXPORT_SYMBOL_GPL vmlinux 0x3c1c3725 rcu_fwd_progress_check -EXPORT_SYMBOL_GPL vmlinux 0x3c1d2cf7 blkg_prfill_rwstat -EXPORT_SYMBOL_GPL vmlinux 0x3c1e2499 rio_alloc_net -EXPORT_SYMBOL_GPL vmlinux 0x3c1f5bc9 dw_pcie_write_dbi EXPORT_SYMBOL_GPL vmlinux 0x3c2b68f7 of_changeset_apply -EXPORT_SYMBOL_GPL vmlinux 0x3c2cc678 gpiochip_add_data_with_key -EXPORT_SYMBOL_GPL vmlinux 0x3c30452c hisi_uncore_pmu_start -EXPORT_SYMBOL_GPL vmlinux 0x3c31664d clk_hw_unregister_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0x3c350c83 cpuidle_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3c3640d8 pci_status_get_and_clear_errors +EXPORT_SYMBOL_GPL vmlinux 0x3c3b969a skcipher_walk_complete EXPORT_SYMBOL_GPL vmlinux 0x3c3c85d8 __SCK__tp_func_kfree_skb -EXPORT_SYMBOL_GPL vmlinux 0x3c406e0f devm_of_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0x3c4dfb7e gpiod_get_array -EXPORT_SYMBOL_GPL vmlinux 0x3c576a78 page_mkclean +EXPORT_SYMBOL_GPL vmlinux 0x3c3d8414 pcie_bus_configure_settings +EXPORT_SYMBOL_GPL vmlinux 0x3c5cd69b subsys_dev_iter_exit EXPORT_SYMBOL_GPL vmlinux 0x3c5d543a hrtimer_start_range_ns -EXPORT_SYMBOL_GPL vmlinux 0x3c639b68 inet_hash +EXPORT_SYMBOL_GPL vmlinux 0x3c660763 skb_clone_tx_timestamp EXPORT_SYMBOL_GPL vmlinux 0x3c681dc4 ring_buffer_record_disable -EXPORT_SYMBOL_GPL vmlinux 0x3c6e5c6c ip6_datagram_send_ctl -EXPORT_SYMBOL_GPL vmlinux 0x3c7812e8 devm_phy_optional_get -EXPORT_SYMBOL_GPL vmlinux 0x3c7815c0 blkcg_policy_unregister -EXPORT_SYMBOL_GPL vmlinux 0x3c7b72a8 ping_get_port -EXPORT_SYMBOL_GPL vmlinux 0x3c892e2e __ata_change_queue_depth -EXPORT_SYMBOL_GPL vmlinux 0x3ca78156 usb_lock_device_for_reset -EXPORT_SYMBOL_GPL vmlinux 0x3cb09c9d gov_attr_set_put -EXPORT_SYMBOL_GPL vmlinux 0x3cb3494a rio_lock_device -EXPORT_SYMBOL_GPL vmlinux 0x3cb63b91 dst_cache_set_ip6 -EXPORT_SYMBOL_GPL vmlinux 0x3cb6da96 pcie_reset_flr +EXPORT_SYMBOL_GPL vmlinux 0x3c7bebf4 sysfs_create_files +EXPORT_SYMBOL_GPL vmlinux 0x3c80dce4 dev_pm_opp_set_opp +EXPORT_SYMBOL_GPL vmlinux 0x3c8771de __sock_recv_ts_and_drops +EXPORT_SYMBOL_GPL vmlinux 0x3c8fd631 acpi_bus_trim +EXPORT_SYMBOL_GPL vmlinux 0x3c94bab8 led_set_brightness_nopm +EXPORT_SYMBOL_GPL vmlinux 0x3c9beb2d ata_ncq_sdev_attrs +EXPORT_SYMBOL_GPL vmlinux 0x3caaf172 pciserial_init_ports +EXPORT_SYMBOL_GPL vmlinux 0x3caf8fc9 icc_node_del EXPORT_SYMBOL_GPL vmlinux 0x3ccd8b46 zynqmp_pm_clock_getparent +EXPORT_SYMBOL_GPL vmlinux 0x3ccd8e2d blk_mq_sched_try_insert_merge EXPORT_SYMBOL_GPL vmlinux 0x3cd06035 add_input_randomness EXPORT_SYMBOL_GPL vmlinux 0x3cd1b510 trace_vbprintk -EXPORT_SYMBOL_GPL vmlinux 0x3cd24bb5 iomap_migrate_page -EXPORT_SYMBOL_GPL vmlinux 0x3cda580d kvm_io_bus_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x3ce34389 pci_pr3_present EXPORT_SYMBOL_GPL vmlinux 0x3ce650fd phy_10gbit_features -EXPORT_SYMBOL_GPL vmlinux 0x3ceb7a68 spi_bus_lock -EXPORT_SYMBOL_GPL vmlinux 0x3cee3bef pci_assign_unassigned_bridge_resources -EXPORT_SYMBOL_GPL vmlinux 0x3cf0ca7a fsl_mc_bus_dpmcp_type -EXPORT_SYMBOL_GPL vmlinux 0x3cffaddc ata_dev_set_feature -EXPORT_SYMBOL_GPL vmlinux 0x3d1cfd01 fuse_dev_operations -EXPORT_SYMBOL_GPL vmlinux 0x3d22df9f genphy_c45_an_config_aneg -EXPORT_SYMBOL_GPL vmlinux 0x3d275022 iommu_page_response -EXPORT_SYMBOL_GPL vmlinux 0x3d2af801 imx_obtain_fixed_clk_hw +EXPORT_SYMBOL_GPL vmlinux 0x3ceacb9f devm_device_add_groups +EXPORT_SYMBOL_GPL vmlinux 0x3d0bc53f rio_del_device +EXPORT_SYMBOL_GPL vmlinux 0x3d0f3d3b dax_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3d12baf7 devm_pci_epc_destroy +EXPORT_SYMBOL_GPL vmlinux 0x3d304246 mpc8xxx_spi_rx_buf_u16 +EXPORT_SYMBOL_GPL vmlinux 0x3d3565af fb_deferred_io_open EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end -EXPORT_SYMBOL_GPL vmlinux 0x3d46d8ea pinctrl_find_gpio_range_from_pin -EXPORT_SYMBOL_GPL vmlinux 0x3d4d8346 gnttab_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x3d4a63bf is_software_node EXPORT_SYMBOL_GPL vmlinux 0x3d510a7b rcu_jiffies_till_stall_check -EXPORT_SYMBOL_GPL vmlinux 0x3d519a6b ipv6_recv_error -EXPORT_SYMBOL_GPL vmlinux 0x3d532d40 __synth_event_gen_cmd_start -EXPORT_SYMBOL_GPL vmlinux 0x3d5b2fb0 bio_start_io_acct_time -EXPORT_SYMBOL_GPL vmlinux 0x3d5e527f rio_request_inb_pwrite -EXPORT_SYMBOL_GPL vmlinux 0x3d6d4086 pm_generic_resume -EXPORT_SYMBOL_GPL vmlinux 0x3d8181a3 rio_map_inb_region +EXPORT_SYMBOL_GPL vmlinux 0x3d5f716e wwan_register_ops +EXPORT_SYMBOL_GPL vmlinux 0x3d6411eb dev_xdp_prog_count +EXPORT_SYMBOL_GPL vmlinux 0x3d77243f dev_pm_opp_get_max_volt_latency +EXPORT_SYMBOL_GPL vmlinux 0x3d7e0326 clockevents_register_device +EXPORT_SYMBOL_GPL vmlinux 0x3d84b440 irq_domain_associate EXPORT_SYMBOL_GPL vmlinux 0x3d866e05 __SCK__tp_func_block_rq_insert EXPORT_SYMBOL_GPL vmlinux 0x3d8baf3b zs_huge_class_size -EXPORT_SYMBOL_GPL vmlinux 0x3d8d2c90 tegra210_clk_emc_attach -EXPORT_SYMBOL_GPL vmlinux 0x3d966277 em_dev_register_perf_domain +EXPORT_SYMBOL_GPL vmlinux 0x3d9597c4 dma_buf_attach +EXPORT_SYMBOL_GPL vmlinux 0x3d971eaf ncsi_register_dev +EXPORT_SYMBOL_GPL vmlinux 0x3d9b76ca of_i2c_setup_smbus_alert EXPORT_SYMBOL_GPL vmlinux 0x3d9bbf75 wwan_port_txon -EXPORT_SYMBOL_GPL vmlinux 0x3d9c6467 lwtunnel_get_encap_size -EXPORT_SYMBOL_GPL vmlinux 0x3d9f787b sock_map_unhash EXPORT_SYMBOL_GPL vmlinux 0x3daa2540 nf_hooks_lwtunnel_enabled -EXPORT_SYMBOL_GPL vmlinux 0x3daa5285 devm_device_remove_group -EXPORT_SYMBOL_GPL vmlinux 0x3dabbc89 nfs_ssc_client_tbl -EXPORT_SYMBOL_GPL vmlinux 0x3daf668c devm_of_led_get +EXPORT_SYMBOL_GPL vmlinux 0x3db08b29 k3_udma_glue_rx_get_dma_device EXPORT_SYMBOL_GPL vmlinux 0x3db48927 sbitmap_any_bit_set -EXPORT_SYMBOL_GPL vmlinux 0x3db918ee of_property_read_u64_index +EXPORT_SYMBOL_GPL vmlinux 0x3dca0a8b kvm_release_page_clean EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final EXPORT_SYMBOL_GPL vmlinux 0x3df70c99 trace_clock_global -EXPORT_SYMBOL_GPL vmlinux 0x3e1235b8 gpiochip_irq_map -EXPORT_SYMBOL_GPL vmlinux 0x3e26d814 devm_led_classdev_register_ext +EXPORT_SYMBOL_GPL vmlinux 0x3e0bcd27 uprobe_register_refctr +EXPORT_SYMBOL_GPL vmlinux 0x3e0ebe69 ata_sas_slave_configure +EXPORT_SYMBOL_GPL vmlinux 0x3e15fd8a device_store_bool +EXPORT_SYMBOL_GPL vmlinux 0x3e160151 usb_hub_claim_port +EXPORT_SYMBOL_GPL vmlinux 0x3e21206b strp_data_ready +EXPORT_SYMBOL_GPL vmlinux 0x3e33e2c6 pinctrl_lookup_state +EXPORT_SYMBOL_GPL vmlinux 0x3e3ff6f8 extcon_find_edev_by_node +EXPORT_SYMBOL_GPL vmlinux 0x3e636820 scsi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x3e6636c1 dev_pm_qos_update_user_latency_tolerance EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer -EXPORT_SYMBOL_GPL vmlinux 0x3e789a02 kset_create_and_add -EXPORT_SYMBOL_GPL vmlinux 0x3e803d6f spi_new_ancillary_device -EXPORT_SYMBOL_GPL vmlinux 0x3e978569 cpufreq_driver_resolve_freq +EXPORT_SYMBOL_GPL vmlinux 0x3e8139cf crypto_unregister_templates +EXPORT_SYMBOL_GPL vmlinux 0x3e8969e3 nvdimm_kobj +EXPORT_SYMBOL_GPL vmlinux 0x3e90e3e8 crypto_unregister_alg +EXPORT_SYMBOL_GPL vmlinux 0x3e98a2fa __regmap_init_i2c EXPORT_SYMBOL_GPL vmlinux 0x3ea5196d apei_osc_setup -EXPORT_SYMBOL_GPL vmlinux 0x3ea9b908 usb_autopm_put_interface -EXPORT_SYMBOL_GPL vmlinux 0x3eac15a1 max8997_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0x3eb0b1f1 thp_get_unmapped_area -EXPORT_SYMBOL_GPL vmlinux 0x3eb4555d acpi_irq_create_hierarchy -EXPORT_SYMBOL_GPL vmlinux 0x3eb898a0 gpiochip_relres_irq -EXPORT_SYMBOL_GPL vmlinux 0x3ec4fc27 hisi_uncore_pmu_online_cpu -EXPORT_SYMBOL_GPL vmlinux 0x3ec6f065 mmc_regulator_set_ocr +EXPORT_SYMBOL_GPL vmlinux 0x3ea7d784 cpufreq_freq_transition_begin +EXPORT_SYMBOL_GPL vmlinux 0x3ea93bc9 kvm_read_guest_offset_cached +EXPORT_SYMBOL_GPL vmlinux 0x3eb11609 fib6_new_table +EXPORT_SYMBOL_GPL vmlinux 0x3eb56ea9 blkcg_policy_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3ec02111 handle_fasteoi_nmi +EXPORT_SYMBOL_GPL vmlinux 0x3ec367ce ata_dummy_port_info EXPORT_SYMBOL_GPL vmlinux 0x3ecbce4e find_iova -EXPORT_SYMBOL_GPL vmlinux 0x3ed45c92 virtio_break_device +EXPORT_SYMBOL_GPL vmlinux 0x3eddcfd3 dev_pm_genpd_set_next_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x3eeec5d3 tcp_register_ulp EXPORT_SYMBOL_GPL vmlinux 0x3ef051c8 crypto_inc EXPORT_SYMBOL_GPL vmlinux 0x3efd1889 dax_direct_access -EXPORT_SYMBOL_GPL vmlinux 0x3f03ffb0 iopf_queue_flush_dev -EXPORT_SYMBOL_GPL vmlinux 0x3f138387 free_fib_info +EXPORT_SYMBOL_GPL vmlinux 0x3f0716b6 gpiochip_populate_parent_fwspec_twocell +EXPORT_SYMBOL_GPL vmlinux 0x3f08e2a6 crypto_unregister_instance +EXPORT_SYMBOL_GPL vmlinux 0x3f0986a8 of_console_check +EXPORT_SYMBOL_GPL vmlinux 0x3f0c336a pci_generic_config_write EXPORT_SYMBOL_GPL vmlinux 0x3f2092e3 fl6_update_dst -EXPORT_SYMBOL_GPL vmlinux 0x3f31cc2e pci_generic_config_read32 -EXPORT_SYMBOL_GPL vmlinux 0x3f37fbcf hwspin_lock_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3f243c78 phy_modify_mmd_changed +EXPORT_SYMBOL_GPL vmlinux 0x3f2b9147 bpf_prog_inc_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x3f2da2c7 kvm_make_all_cpus_request +EXPORT_SYMBOL_GPL vmlinux 0x3f30bee8 shash_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x3f450571 rt_mutex_trylock +EXPORT_SYMBOL_GPL vmlinux 0x3f47de05 gpiod_direction_output +EXPORT_SYMBOL_GPL vmlinux 0x3f484fd7 cpufreq_dbs_governor_exit EXPORT_SYMBOL_GPL vmlinux 0x3f491f49 reset_control_bulk_reset -EXPORT_SYMBOL_GPL vmlinux 0x3f601d7b ata_sas_port_init -EXPORT_SYMBOL_GPL vmlinux 0x3f65e7f5 acpi_data_fwnode_ops -EXPORT_SYMBOL_GPL vmlinux 0x3f68e0df pci_test_config_bits -EXPORT_SYMBOL_GPL vmlinux 0x3f78ed23 regcache_sync_region -EXPORT_SYMBOL_GPL vmlinux 0x3f798b52 mark_page_dirty_in_slot +EXPORT_SYMBOL_GPL vmlinux 0x3f62e791 skb_gso_validate_network_len +EXPORT_SYMBOL_GPL vmlinux 0x3f6582bc rio_release_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x3f6d543b regmap_raw_write_async +EXPORT_SYMBOL_GPL vmlinux 0x3f746ba0 pinctrl_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x3f772098 regmap_test_bits EXPORT_SYMBOL_GPL vmlinux 0x3f84bcd7 dax_alive EXPORT_SYMBOL_GPL vmlinux 0x3f8ab72e devlink_fmsg_bool_put -EXPORT_SYMBOL_GPL vmlinux 0x3f8d9639 irq_gc_ack_set_bit -EXPORT_SYMBOL_GPL vmlinux 0x3f95c59a pci_epc_destroy +EXPORT_SYMBOL_GPL vmlinux 0x3f8f425e nvdimm_clear_poison +EXPORT_SYMBOL_GPL vmlinux 0x3f97a7af clk_hw_get_name +EXPORT_SYMBOL_GPL vmlinux 0x3f9f2fe5 regulator_map_voltage_pickable_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x3fa0ba56 fsl_mc_bus_dpio_type EXPORT_SYMBOL_GPL vmlinux 0x3fae6ab0 hv_vp_index -EXPORT_SYMBOL_GPL vmlinux 0x3fb00dff devm_kasprintf -EXPORT_SYMBOL_GPL vmlinux 0x3fb0a95f blk_mq_sched_try_merge -EXPORT_SYMBOL_GPL vmlinux 0x3fd15133 max8997_read_reg -EXPORT_SYMBOL_GPL vmlinux 0x3fd56a03 class_destroy -EXPORT_SYMBOL_GPL vmlinux 0x3fda4fba dm_get_queue_limits +EXPORT_SYMBOL_GPL vmlinux 0x3fc3e14f switchdev_handle_port_obj_add +EXPORT_SYMBOL_GPL vmlinux 0x3fc78fc6 debugfs_create_x8 +EXPORT_SYMBOL_GPL vmlinux 0x3fc82e7c clk_register +EXPORT_SYMBOL_GPL vmlinux 0x3fd82a28 ata_sff_irq_on +EXPORT_SYMBOL_GPL vmlinux 0x3fd972f1 sdio_retune_release +EXPORT_SYMBOL_GPL vmlinux 0x3fe267b5 inet_hash_connect EXPORT_SYMBOL_GPL vmlinux 0x3fe35aea irq_bypass_unregister_consumer EXPORT_SYMBOL_GPL vmlinux 0x3fe6c346 devlink_fmsg_binary_pair_put +EXPORT_SYMBOL_GPL vmlinux 0x3fe72117 mmu_interval_notifier_insert +EXPORT_SYMBOL_GPL vmlinux 0x3fe8aed2 pci_epc_unmap_addr EXPORT_SYMBOL_GPL vmlinux 0x3fea029c hisi_clk_register_gate -EXPORT_SYMBOL_GPL vmlinux 0x3ff4a6c4 cpufreq_unregister_governor +EXPORT_SYMBOL_GPL vmlinux 0x3ff15014 devm_gpio_free EXPORT_SYMBOL_GPL vmlinux 0x3ff82085 public_key_signature_free EXPORT_SYMBOL_GPL vmlinux 0x3ffdacf3 timerqueue_iterate_next -EXPORT_SYMBOL_GPL vmlinux 0x400393cc crypto_register_scomps +EXPORT_SYMBOL_GPL vmlinux 0x3ffed37d screen_glyph_unicode EXPORT_SYMBOL_GPL vmlinux 0x400a024b acpi_scan_lock_release -EXPORT_SYMBOL_GPL vmlinux 0x400be6e1 ata_pci_sff_prepare_host -EXPORT_SYMBOL_GPL vmlinux 0x400c879f fuse_simple_background -EXPORT_SYMBOL_GPL vmlinux 0x4018010b devm_reset_control_array_get +EXPORT_SYMBOL_GPL vmlinux 0x401d268e unregister_acpi_bus_type EXPORT_SYMBOL_GPL vmlinux 0x40267068 usb_anchor_resume_wakeups -EXPORT_SYMBOL_GPL vmlinux 0x402fcfd1 clkdev_hw_create -EXPORT_SYMBOL_GPL vmlinux 0x4038837a dev_pm_opp_init_cpufreq_table -EXPORT_SYMBOL_GPL vmlinux 0x403f68db __devm_regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0x4032e7c6 class_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x403d6366 nf_nat_hook EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one EXPORT_SYMBOL_GPL vmlinux 0x4044ca16 pkcs7_verify -EXPORT_SYMBOL_GPL vmlinux 0x404dbaf8 fb_deferred_io_init -EXPORT_SYMBOL_GPL vmlinux 0x405debaf devm_pinctrl_register +EXPORT_SYMBOL_GPL vmlinux 0x404f097d kvm_read_guest_cached +EXPORT_SYMBOL_GPL vmlinux 0x404fd3fa scsi_host_block +EXPORT_SYMBOL_GPL vmlinux 0x4052c458 vfs_fallocate +EXPORT_SYMBOL_GPL vmlinux 0x40561fa3 debugfs_lookup EXPORT_SYMBOL_GPL vmlinux 0x4065d168 pm_print_active_wakeup_sources -EXPORT_SYMBOL_GPL vmlinux 0x406a52d3 stmpe811_adc_common_init EXPORT_SYMBOL_GPL vmlinux 0x406c4cb1 hrtimer_resolution +EXPORT_SYMBOL_GPL vmlinux 0x4070a14c pci_iov_virtfn_devfn EXPORT_SYMBOL_GPL vmlinux 0x4071b517 out_of_line_wait_on_bit_timeout -EXPORT_SYMBOL_GPL vmlinux 0x4075d05f of_genpd_add_subdomain +EXPORT_SYMBOL_GPL vmlinux 0x407768a3 serial8250_set_defaults EXPORT_SYMBOL_GPL vmlinux 0x407af304 usb_wait_anchor_empty_timeout -EXPORT_SYMBOL_GPL vmlinux 0x407e3c51 vp_modern_set_features -EXPORT_SYMBOL_GPL vmlinux 0x40900f9c acpi_find_child_device +EXPORT_SYMBOL_GPL vmlinux 0x407d14d7 mmc_send_status +EXPORT_SYMBOL_GPL vmlinux 0x4084a85e __fscrypt_prepare_link +EXPORT_SYMBOL_GPL vmlinux 0x408707f4 iptunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0x408adfce genphy_c45_read_link EXPORT_SYMBOL_GPL vmlinux 0x4099f919 tun_ptr_free -EXPORT_SYMBOL_GPL vmlinux 0x40cf3c66 pinctrl_select_default_state +EXPORT_SYMBOL_GPL vmlinux 0x409ccd44 preempt_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x409d06d9 spi_controller_dma_map_mem_op_data +EXPORT_SYMBOL_GPL vmlinux 0x40a2b60e kvm_init +EXPORT_SYMBOL_GPL vmlinux 0x40a7ce0e generic_device_group +EXPORT_SYMBOL_GPL vmlinux 0x40ab9f77 devm_platform_get_and_ioremap_resource +EXPORT_SYMBOL_GPL vmlinux 0x40c97ff6 extcon_get_edev_by_phandle EXPORT_SYMBOL_GPL vmlinux 0x40d349b6 sbitmap_queue_resize -EXPORT_SYMBOL_GPL vmlinux 0x40de5b97 __irq_domain_alloc_fwnode EXPORT_SYMBOL_GPL vmlinux 0x40e0ba52 ftrace_set_notrace -EXPORT_SYMBOL_GPL vmlinux 0x40ea6c83 blk_mq_flush_busy_ctxs EXPORT_SYMBOL_GPL vmlinux 0x40f0683e reset_control_put -EXPORT_SYMBOL_GPL vmlinux 0x40f17f57 debugfs_create_dir -EXPORT_SYMBOL_GPL vmlinux 0x40f82bef __irq_resolve_mapping +EXPORT_SYMBOL_GPL vmlinux 0x40f5945f device_driver_attach EXPORT_SYMBOL_GPL vmlinux 0x40f8b94e ring_buffer_iter_dropped EXPORT_SYMBOL_GPL vmlinux 0x40f8bd4e klist_add_before -EXPORT_SYMBOL_GPL vmlinux 0x40fbd74c devlink_is_reload_failed +EXPORT_SYMBOL_GPL vmlinux 0x4100901b vchan_init EXPORT_SYMBOL_GPL vmlinux 0x4100a662 clk_get_scaled_duty_cycle -EXPORT_SYMBOL_GPL vmlinux 0x410ea632 ata_scsi_queuecmd -EXPORT_SYMBOL_GPL vmlinux 0x4112a245 fwnode_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x4115d78d ata_pci_bmdma_prepare_host EXPORT_SYMBOL_GPL vmlinux 0x41237f71 cpu_have_feature EXPORT_SYMBOL_GPL vmlinux 0x412bc681 ring_buffer_empty_cpu +EXPORT_SYMBOL_GPL vmlinux 0x41308fdc subsys_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0x41346659 uart_handle_cts_change +EXPORT_SYMBOL_GPL vmlinux 0x413e07e9 cpu_subsys +EXPORT_SYMBOL_GPL vmlinux 0x413e0ad7 dev_pm_opp_xlate_required_opp EXPORT_SYMBOL_GPL vmlinux 0x414d119a videomode_from_timings -EXPORT_SYMBOL_GPL vmlinux 0x415baac5 usb_get_role_switch_default_mode -EXPORT_SYMBOL_GPL vmlinux 0x4163c3f7 dw_pcie_host_init -EXPORT_SYMBOL_GPL vmlinux 0x417124b9 rtnl_link_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4176f50e __vfs_setxattr_noperm -EXPORT_SYMBOL_GPL vmlinux 0x41772a49 mmc_sanitize +EXPORT_SYMBOL_GPL vmlinux 0x4156f16c ata_cable_80wire +EXPORT_SYMBOL_GPL vmlinux 0x416baf92 acpi_pm_set_device_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x416da3c5 imx_obtain_fixed_clk_hw +EXPORT_SYMBOL_GPL vmlinux 0x416ebf98 sk_clone_lock EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval EXPORT_SYMBOL_GPL vmlinux 0x418873cc irq_bypass_register_producer -EXPORT_SYMBOL_GPL vmlinux 0x418fa233 regulator_get_voltage_rdev -EXPORT_SYMBOL_GPL vmlinux 0x4194298c usb_hcd_poll_rh_status -EXPORT_SYMBOL_GPL vmlinux 0x41996af3 ata_wait_register +EXPORT_SYMBOL_GPL vmlinux 0x41969be1 edac_device_free_ctl_info EXPORT_SYMBOL_GPL vmlinux 0x419d7c83 zynqmp_pm_pinctrl_set_config EXPORT_SYMBOL_GPL vmlinux 0x419e7efd sfp_module_stop -EXPORT_SYMBOL_GPL vmlinux 0x41a58edc scsi_internal_device_unblock_nowait -EXPORT_SYMBOL_GPL vmlinux 0x41b90234 tpm_default_chip +EXPORT_SYMBOL_GPL vmlinux 0x41ad06c9 skb_partial_csum_set +EXPORT_SYMBOL_GPL vmlinux 0x41b84dc5 device_add_properties EXPORT_SYMBOL_GPL vmlinux 0x41b9a6e6 bsg_unregister_queue EXPORT_SYMBOL_GPL vmlinux 0x41bce49a ghes_register_vendor_record_notifier -EXPORT_SYMBOL_GPL vmlinux 0x41c6ea34 __percpu_down_read -EXPORT_SYMBOL_GPL vmlinux 0x41cb94c2 __fscrypt_prepare_link -EXPORT_SYMBOL_GPL vmlinux 0x41d145e4 acpi_bus_trim -EXPORT_SYMBOL_GPL vmlinux 0x41d76a25 disk_update_readahead -EXPORT_SYMBOL_GPL vmlinux 0x41dfa271 efivar_entry_remove +EXPORT_SYMBOL_GPL vmlinux 0x41c76d11 register_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0x41d5aa11 pci_epc_get_msi +EXPORT_SYMBOL_GPL vmlinux 0x41d66d5c meson8_aobus_parse_dt_extra +EXPORT_SYMBOL_GPL vmlinux 0x41e298d0 blk_update_request EXPORT_SYMBOL_GPL vmlinux 0x41ed3cec eventfd_ctx_remove_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x41efcb00 rio_enable_rx_tx_port +EXPORT_SYMBOL_GPL vmlinux 0x42028f43 gpiochip_add_data_with_key EXPORT_SYMBOL_GPL vmlinux 0x42041512 i2c_get_dma_safe_msg_buf -EXPORT_SYMBOL_GPL vmlinux 0x42068eb2 xfrm_output_resume -EXPORT_SYMBOL_GPL vmlinux 0x420c5674 cgroup_attach_task_all +EXPORT_SYMBOL_GPL vmlinux 0x42068eeb pin_user_pages_fast_only +EXPORT_SYMBOL_GPL vmlinux 0x420db156 clk_regmap_divider_ops EXPORT_SYMBOL_GPL vmlinux 0x420f3d01 nvmem_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4216f922 pci_walk_bus -EXPORT_SYMBOL_GPL vmlinux 0x42334d66 ata_sas_sync_probe -EXPORT_SYMBOL_GPL vmlinux 0x425326f7 pinctrl_add_gpio_ranges -EXPORT_SYMBOL_GPL vmlinux 0x42547158 tcp_unregister_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0x4229273a rio_release_dma +EXPORT_SYMBOL_GPL vmlinux 0x42366533 pci_enable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x42376484 of_get_pci_domain_nr +EXPORT_SYMBOL_GPL vmlinux 0x424cdc8f netlink_strict_get_check +EXPORT_SYMBOL_GPL vmlinux 0x424e4552 sysfs_unmerge_group +EXPORT_SYMBOL_GPL vmlinux 0x424e48f8 devm_namespace_disable +EXPORT_SYMBOL_GPL vmlinux 0x425217dd crypto_stats_akcipher_verify EXPORT_SYMBOL_GPL vmlinux 0x42635d55 pm_suspend_global_flags EXPORT_SYMBOL_GPL vmlinux 0x426452a3 acpi_evaluation_failure_warn -EXPORT_SYMBOL_GPL vmlinux 0x4280ea3d rio_mport_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x42664d05 regmap_get_raw_write_max +EXPORT_SYMBOL_GPL vmlinux 0x42736953 kthread_func EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active -EXPORT_SYMBOL_GPL vmlinux 0x4287a59f kvm_put_kvm_no_destroy -EXPORT_SYMBOL_GPL vmlinux 0x428a6b76 devlink_free -EXPORT_SYMBOL_GPL vmlinux 0x4292f266 hwspin_lock_register -EXPORT_SYMBOL_GPL vmlinux 0x42a35628 rdev_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x42b6bc18 stmpe_enable -EXPORT_SYMBOL_GPL vmlinux 0x42bcae2e ata_timing_compute -EXPORT_SYMBOL_GPL vmlinux 0x42c82f8d perf_event_sysfs_show -EXPORT_SYMBOL_GPL vmlinux 0x42d8d902 device_add_groups -EXPORT_SYMBOL_GPL vmlinux 0x42dde7c4 rockchip_clk_add_lookup +EXPORT_SYMBOL_GPL vmlinux 0x42887b36 fixed_phy_register_with_gpiod +EXPORT_SYMBOL_GPL vmlinux 0x428a455c devm_regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0x429a5a8c platform_device_register +EXPORT_SYMBOL_GPL vmlinux 0x42cfe82b mdio_mux_init EXPORT_SYMBOL_GPL vmlinux 0x42e9d0da ring_buffer_unlock_commit -EXPORT_SYMBOL_GPL vmlinux 0x42ef0639 devres_remove_group -EXPORT_SYMBOL_GPL vmlinux 0x42f3a44e kvm_vcpu_gfn_to_hva EXPORT_SYMBOL_GPL vmlinux 0x42f728aa mctrl_gpio_get_outputs -EXPORT_SYMBOL_GPL vmlinux 0x42fc4ff8 mbox_controller_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4308d315 spi_sync_locked +EXPORT_SYMBOL_GPL vmlinux 0x42f742b8 tcf_dev_queue_xmit +EXPORT_SYMBOL_GPL vmlinux 0x42fe4197 pcie_aspm_capable +EXPORT_SYMBOL_GPL vmlinux 0x430a7b70 regcache_drop_region EXPORT_SYMBOL_GPL vmlinux 0x430d88ec __traceiter_arm_event -EXPORT_SYMBOL_GPL vmlinux 0x43207b1e nexthop_select_path -EXPORT_SYMBOL_GPL vmlinux 0x433bdce1 follow_pte -EXPORT_SYMBOL_GPL vmlinux 0x433d6d59 fixed_phy_register_with_gpiod -EXPORT_SYMBOL_GPL vmlinux 0x433fd7da pci_ats_supported -EXPORT_SYMBOL_GPL vmlinux 0x4347f280 __hwspin_trylock -EXPORT_SYMBOL_GPL vmlinux 0x435a39e3 rdev_get_regmap -EXPORT_SYMBOL_GPL vmlinux 0x436c3a6c virtqueue_poll +EXPORT_SYMBOL_GPL vmlinux 0x432c5171 sdio_set_block_size +EXPORT_SYMBOL_GPL vmlinux 0x43374d74 unregister_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0x433e10c8 dma_buf_mmap +EXPORT_SYMBOL_GPL vmlinux 0x435e7397 uart_set_options +EXPORT_SYMBOL_GPL vmlinux 0x43608144 ata_bmdma_irq_clear +EXPORT_SYMBOL_GPL vmlinux 0x4363a086 thermal_zone_of_sensor_register EXPORT_SYMBOL_GPL vmlinux 0x436d817f mpi_clear_bit EXPORT_SYMBOL_GPL vmlinux 0x437eb1df ipv6_mod_enabled +EXPORT_SYMBOL_GPL vmlinux 0x43850da1 sb800_prefetch EXPORT_SYMBOL_GPL vmlinux 0x438d8df2 iova_cache_get -EXPORT_SYMBOL_GPL vmlinux 0x438e47e4 of_icc_get_by_index -EXPORT_SYMBOL_GPL vmlinux 0x438ebdda gpiod_toggle_active_low +EXPORT_SYMBOL_GPL vmlinux 0x4397c7e3 dst_blackhole_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x439f4805 fwnode_property_present EXPORT_SYMBOL_GPL vmlinux 0x43aa319e lease_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x43acb1e7 acpi_pm_wakeup_event -EXPORT_SYMBOL_GPL vmlinux 0x43b30b49 led_trigger_remove -EXPORT_SYMBOL_GPL vmlinux 0x43e4775c led_classdev_register_ext -EXPORT_SYMBOL_GPL vmlinux 0x43e7a3de rio_route_add_entry +EXPORT_SYMBOL_GPL vmlinux 0x43ae9d68 vp_modern_get_status +EXPORT_SYMBOL_GPL vmlinux 0x43b0dcba devm_regulator_register +EXPORT_SYMBOL_GPL vmlinux 0x43b194ce udp4_hwcsum +EXPORT_SYMBOL_GPL vmlinux 0x43be52bc gpiod_unexport +EXPORT_SYMBOL_GPL vmlinux 0x43c9042c unregister_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x43dce475 rtnl_link_unregister EXPORT_SYMBOL_GPL vmlinux 0x43f56e82 ata_xfer_mode2shift +EXPORT_SYMBOL_GPL vmlinux 0x43f766f3 meson_clk_mpll_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x43f7933b pinctrl_dev_get_devname 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 0x440aaeca gpiochip_irqchip_add_domain -EXPORT_SYMBOL_GPL vmlinux 0x440cf047 fuse_conn_put -EXPORT_SYMBOL_GPL vmlinux 0x4414a90e rio_unregister_mport EXPORT_SYMBOL_GPL vmlinux 0x442deaa9 poll_state_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0x4435652e dpcon_open -EXPORT_SYMBOL_GPL vmlinux 0x4436669d l3mdev_update_flow +EXPORT_SYMBOL_GPL vmlinux 0x44385562 __traceiter_br_fdb_external_learn_add EXPORT_SYMBOL_GPL vmlinux 0x4439bcd2 __SCK__tp_func_neigh_event_send_dead -EXPORT_SYMBOL_GPL vmlinux 0x444ddac2 bgmac_alloc +EXPORT_SYMBOL_GPL vmlinux 0x4441af8b crypto_stats_kpp_compute_shared_secret +EXPORT_SYMBOL_GPL vmlinux 0x4442c8be wakeup_source_register EXPORT_SYMBOL_GPL vmlinux 0x444f1735 cpu_pm_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4458ef0e __blk_req_zone_write_unlock EXPORT_SYMBOL_GPL vmlinux 0x445a09c0 nvmem_device_cell_write -EXPORT_SYMBOL_GPL vmlinux 0x445ac757 blk_mq_freeze_queue_wait_timeout -EXPORT_SYMBOL_GPL vmlinux 0x44669475 of_phandle_iterator_next -EXPORT_SYMBOL_GPL vmlinux 0x4480c64f serial8250_rpm_get +EXPORT_SYMBOL_GPL vmlinux 0x446638e5 skb_zerocopy_headlen +EXPORT_SYMBOL_GPL vmlinux 0x446f2167 evict_inodes +EXPORT_SYMBOL_GPL vmlinux 0x4470473e stmpe_set_altfunc EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe -EXPORT_SYMBOL_GPL vmlinux 0x4485f93c mark_page_dirty -EXPORT_SYMBOL_GPL vmlinux 0x448bdf67 edac_mc_handle_error -EXPORT_SYMBOL_GPL vmlinux 0x449389be pci_iov_virtfn_devfn -EXPORT_SYMBOL_GPL vmlinux 0x449eeb90 regulator_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x449ef846 sysfs_remove_groups -EXPORT_SYMBOL_GPL vmlinux 0x44a6207d dma_get_any_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x448e6a68 driver_find +EXPORT_SYMBOL_GPL vmlinux 0x449cfa9a fib_rules_seq_read +EXPORT_SYMBOL_GPL vmlinux 0x449de8cb irq_get_default_host +EXPORT_SYMBOL_GPL vmlinux 0x44a4c5eb __trace_note_message EXPORT_SYMBOL_GPL vmlinux 0x44a793ab HYPERVISOR_grant_table_op -EXPORT_SYMBOL_GPL vmlinux 0x44a92f04 fib_add_nexthop -EXPORT_SYMBOL_GPL vmlinux 0x44b353a0 pinconf_generic_dump_config -EXPORT_SYMBOL_GPL vmlinux 0x44b6e407 acpi_dev_remove_driver_gpios EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout -EXPORT_SYMBOL_GPL vmlinux 0x44bb502e of_genpd_add_device -EXPORT_SYMBOL_GPL vmlinux 0x44bfc0d1 __fput_sync -EXPORT_SYMBOL_GPL vmlinux 0x44bfc844 strp_data_ready -EXPORT_SYMBOL_GPL vmlinux 0x44c107d8 da903x_write -EXPORT_SYMBOL_GPL vmlinux 0x44c8d5fb pm_clk_remove_clk EXPORT_SYMBOL_GPL vmlinux 0x44cf8cf0 blk_zone_cond_str -EXPORT_SYMBOL_GPL vmlinux 0x44e12bde usb_hub_find_child +EXPORT_SYMBOL_GPL vmlinux 0x44d22d3d pwm_set_chip_data +EXPORT_SYMBOL_GPL vmlinux 0x44dffa50 pci_try_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x44e168f9 __tcp_send_ack EXPORT_SYMBOL_GPL vmlinux 0x44e1e9aa balloon_stats -EXPORT_SYMBOL_GPL vmlinux 0x44ee1b02 usb_queue_reset_device -EXPORT_SYMBOL_GPL vmlinux 0x44fed4c6 wbc_account_cgroup_owner -EXPORT_SYMBOL_GPL vmlinux 0x4503c3f2 irq_domain_set_hwirq_and_chip +EXPORT_SYMBOL_GPL vmlinux 0x44ec6d7b crypto_stats_kpp_set_secret EXPORT_SYMBOL_GPL vmlinux 0x4507f4a8 cpuhp_tasks_frozen -EXPORT_SYMBOL_GPL vmlinux 0x4514ecc7 usb_phy_set_charger_current -EXPORT_SYMBOL_GPL vmlinux 0x4519363b usb_block_urb +EXPORT_SYMBOL_GPL vmlinux 0x4509500f bpf_prog_put +EXPORT_SYMBOL_GPL vmlinux 0x451076f5 sysfs_remove_group EXPORT_SYMBOL_GPL vmlinux 0x4531624f usb_decode_ctrl EXPORT_SYMBOL_GPL vmlinux 0x4531ab62 copy_from_kernel_nofault -EXPORT_SYMBOL_GPL vmlinux 0x453551b6 devlink_port_health_reporter_create +EXPORT_SYMBOL_GPL vmlinux 0x4549cc33 pci_sriov_set_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0x454ed500 usb_phy_get_charger_current +EXPORT_SYMBOL_GPL vmlinux 0x455042d9 irq_domain_associate_many +EXPORT_SYMBOL_GPL vmlinux 0x45512363 synth_event_trace_end EXPORT_SYMBOL_GPL vmlinux 0x45558f56 clk_unregister_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x455b8755 ti_sci_inta_msi_create_irq_domain EXPORT_SYMBOL_GPL vmlinux 0x4561f990 qcom_smem_state_unregister -EXPORT_SYMBOL_GPL vmlinux 0x456c35a5 adp5520_set_bits EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list -EXPORT_SYMBOL_GPL vmlinux 0x457ec376 ehci_adjust_port_wakeup_flags -EXPORT_SYMBOL_GPL vmlinux 0x45971d0c devm_power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0x4576890c sysfs_groups_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x457cbfcf driver_find_device +EXPORT_SYMBOL_GPL vmlinux 0x457d7a81 cpufreq_freq_attr_scaling_boost_freqs +EXPORT_SYMBOL_GPL vmlinux 0x4584ee6e usb_remove_phy +EXPORT_SYMBOL_GPL vmlinux 0x459c27ff security_file_permission EXPORT_SYMBOL_GPL vmlinux 0x459e6151 mm_unaccount_pinned_pages -EXPORT_SYMBOL_GPL vmlinux 0x45a8b33d pskb_put -EXPORT_SYMBOL_GPL vmlinux 0x45b119f9 kvm_vcpu_is_visible_gfn -EXPORT_SYMBOL_GPL vmlinux 0x45b5a895 device_for_each_child -EXPORT_SYMBOL_GPL vmlinux 0x45bae2d1 pci_find_ht_capability -EXPORT_SYMBOL_GPL vmlinux 0x45d5d81e devm_add_action -EXPORT_SYMBOL_GPL vmlinux 0x45da7893 device_remove_software_node -EXPORT_SYMBOL_GPL vmlinux 0x45da94dc mpc8xxx_spi_tx_buf_u32 -EXPORT_SYMBOL_GPL vmlinux 0x460032d7 led_stop_software_blink +EXPORT_SYMBOL_GPL vmlinux 0x45a103d7 of_dma_configure_id +EXPORT_SYMBOL_GPL vmlinux 0x45a1a245 xhci_dbg_trace +EXPORT_SYMBOL_GPL vmlinux 0x45cc0809 key_type_trusted +EXPORT_SYMBOL_GPL vmlinux 0x45d7e3f6 iommu_aux_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x45da197d fsverity_ioctl_enable +EXPORT_SYMBOL_GPL vmlinux 0x45e549db transport_destroy_device +EXPORT_SYMBOL_GPL vmlinux 0x45e574e9 tcp_get_info +EXPORT_SYMBOL_GPL vmlinux 0x45f0ceb9 ata_pci_sff_init_host +EXPORT_SYMBOL_GPL vmlinux 0x45ffd14c gpiod_get_direction EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue EXPORT_SYMBOL_GPL vmlinux 0x46030074 __hrtimer_get_remaining -EXPORT_SYMBOL_GPL vmlinux 0x460f196e xenbus_dev_groups -EXPORT_SYMBOL_GPL vmlinux 0x461ba08e iptunnel_metadata_reply -EXPORT_SYMBOL_GPL vmlinux 0x461c8a8c __traceiter_sched_util_est_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x460a4e4d ata_bmdma32_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x4613b282 efivar_entry_iter +EXPORT_SYMBOL_GPL vmlinux 0x461aac03 debugfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x461bb503 of_device_modalias EXPORT_SYMBOL_GPL vmlinux 0x46269814 __tracepoint_neigh_event_send_dead -EXPORT_SYMBOL_GPL vmlinux 0x462d6431 platform_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4639cb28 crypto_unregister_rng -EXPORT_SYMBOL_GPL vmlinux 0x4648a424 iptunnel_xmit -EXPORT_SYMBOL_GPL vmlinux 0x464cdbb1 power_supply_put_battery_info -EXPORT_SYMBOL_GPL vmlinux 0x4650ba41 gpiochip_disable_irq -EXPORT_SYMBOL_GPL vmlinux 0x4651ac80 clk_gate_restore_context -EXPORT_SYMBOL_GPL vmlinux 0x46693afa devm_gpio_request_one -EXPORT_SYMBOL_GPL vmlinux 0x4677dad6 pci_epf_remove_vepf -EXPORT_SYMBOL_GPL vmlinux 0x467e239b dprc_get_obj +EXPORT_SYMBOL_GPL vmlinux 0x465a2c6c __devm_irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0x466b7c98 device_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x46764c41 genpd_dev_pm_attach_by_id EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x468f2226 usb_autopm_get_interface -EXPORT_SYMBOL_GPL vmlinux 0x46940c46 sdio_claim_irq +EXPORT_SYMBOL_GPL vmlinux 0x468d8aed da903x_update +EXPORT_SYMBOL_GPL vmlinux 0x46926115 ping_get_port +EXPORT_SYMBOL_GPL vmlinux 0x469c2994 fsl_mc_object_free +EXPORT_SYMBOL_GPL vmlinux 0x469d2a11 xenbus_probe_node +EXPORT_SYMBOL_GPL vmlinux 0x46a4984a ahci_ops EXPORT_SYMBOL_GPL vmlinux 0x46a4b118 hrtimer_cancel -EXPORT_SYMBOL_GPL vmlinux 0x46a84761 xfrm_dev_offload_ok -EXPORT_SYMBOL_GPL vmlinux 0x46ad6b30 tps6586x_write -EXPORT_SYMBOL_GPL vmlinux 0x46ae32d7 tcp_twsk_destructor -EXPORT_SYMBOL_GPL vmlinux 0x46b78a28 regmap_raw_write_async -EXPORT_SYMBOL_GPL vmlinux 0x46c1fb96 __irq_domain_add +EXPORT_SYMBOL_GPL vmlinux 0x46a84edd sysfs_update_groups +EXPORT_SYMBOL_GPL vmlinux 0x46b60950 gpiod_set_value +EXPORT_SYMBOL_GPL vmlinux 0x46bb088f crypto_skcipher_encrypt EXPORT_SYMBOL_GPL vmlinux 0x46c5be22 clk_multiplier_ops -EXPORT_SYMBOL_GPL vmlinux 0x46da8feb tc3589x_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x46df1935 attribute_container_classdev_to_container -EXPORT_SYMBOL_GPL vmlinux 0x46f18d05 uprobe_register -EXPORT_SYMBOL_GPL vmlinux 0x46f1e55d gpiochip_find +EXPORT_SYMBOL_GPL vmlinux 0x46edc27c hwspin_lock_free EXPORT_SYMBOL_GPL vmlinux 0x46f42be0 devlink_fmsg_u8_put -EXPORT_SYMBOL_GPL vmlinux 0x46f55ea4 blkcg_policy_register -EXPORT_SYMBOL_GPL vmlinux 0x4711ca83 ahci_fill_cmd_slot -EXPORT_SYMBOL_GPL vmlinux 0x471db3b4 __rio_local_read_config_8 -EXPORT_SYMBOL_GPL vmlinux 0x471eb11a kvm_make_all_cpus_request +EXPORT_SYMBOL_GPL vmlinux 0x46f7e32b regulator_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0x47020286 sdio_writeb_readb +EXPORT_SYMBOL_GPL vmlinux 0x4708ca3c fuse_conn_get EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request -EXPORT_SYMBOL_GPL vmlinux 0x4722b703 __pneigh_lookup -EXPORT_SYMBOL_GPL vmlinux 0x4722c4d6 regulator_set_active_discharge_regmap +EXPORT_SYMBOL_GPL vmlinux 0x4753a250 icc_get +EXPORT_SYMBOL_GPL vmlinux 0x475ff7da xhci_shutdown EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4763c912 meson_a1_parse_dt_extra -EXPORT_SYMBOL_GPL vmlinux 0x4764ee63 rt_mutex_lock_interruptible -EXPORT_SYMBOL_GPL vmlinux 0x476b879d mtk_hw_set_value -EXPORT_SYMBOL_GPL vmlinux 0x476d5c3c meson_vid_pll_div_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0x4782013a regulator_set_drvdata EXPORT_SYMBOL_GPL vmlinux 0x47884890 system_power_efficient_wq EXPORT_SYMBOL_GPL vmlinux 0x478debf5 phy_10gbit_fec_features EXPORT_SYMBOL_GPL vmlinux 0x478e81f8 tcp_orphan_count -EXPORT_SYMBOL_GPL vmlinux 0x4796a3ce balloon_page_enqueue EXPORT_SYMBOL_GPL vmlinux 0x479f7d4b clk_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0x47aa94a7 nfs42_ssc_unregister EXPORT_SYMBOL_GPL vmlinux 0x47aad3b9 have_governor_per_policy -EXPORT_SYMBOL_GPL vmlinux 0x47b01af6 of_irq_get -EXPORT_SYMBOL_GPL vmlinux 0x47bba788 fl6_merge_options -EXPORT_SYMBOL_GPL vmlinux 0x47c575ea hisi_uncore_pmu_del +EXPORT_SYMBOL_GPL vmlinux 0x47bd0f27 nvdimm_has_flush +EXPORT_SYMBOL_GPL vmlinux 0x47be9ff8 nvdimm_blk_region_create +EXPORT_SYMBOL_GPL vmlinux 0x47c6674b udp_tunnel_nic_ops +EXPORT_SYMBOL_GPL vmlinux 0x47c6cf06 crypto_hash_alg_has_setkey EXPORT_SYMBOL_GPL vmlinux 0x47d0eea2 acpi_lpat_temp_to_raw EXPORT_SYMBOL_GPL vmlinux 0x47de0dc7 clk_unregister_mux -EXPORT_SYMBOL_GPL vmlinux 0x47f3a908 usb_hcd_unlink_urb_from_ep -EXPORT_SYMBOL_GPL vmlinux 0x47fa4916 ahci_platform_enable_phys +EXPORT_SYMBOL_GPL vmlinux 0x47ebfcdf i2c_new_dummy_device +EXPORT_SYMBOL_GPL vmlinux 0x47fdf3f3 nvmem_device_get EXPORT_SYMBOL_GPL vmlinux 0x480305ca kmsg_dump_rewind -EXPORT_SYMBOL_GPL vmlinux 0x480a3a4c device_set_node +EXPORT_SYMBOL_GPL vmlinux 0x480c2b19 platform_get_mem_or_io +EXPORT_SYMBOL_GPL vmlinux 0x480da706 crypto_register_ahashes EXPORT_SYMBOL_GPL vmlinux 0x4815aa79 dev_pm_opp_cpumask_remove_table -EXPORT_SYMBOL_GPL vmlinux 0x481b784e gpiod_get_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x481f4154 pci_stop_and_remove_bus_device_locked EXPORT_SYMBOL_GPL vmlinux 0x481f9b7d mpi_mulm EXPORT_SYMBOL_GPL vmlinux 0x4828e77b acpi_scan_lock_acquire -EXPORT_SYMBOL_GPL vmlinux 0x482e1265 iommu_dev_enable_feature +EXPORT_SYMBOL_GPL vmlinux 0x482d8d6c rio_mport_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x484275ee __traceiter_xdp_bulk_tx EXPORT_SYMBOL_GPL vmlinux 0x4843a748 qman_portals_probed -EXPORT_SYMBOL_GPL vmlinux 0x48471600 debugfs_read_file_bool -EXPORT_SYMBOL_GPL vmlinux 0x484c3634 dma_alloc_noncontiguous -EXPORT_SYMBOL_GPL vmlinux 0x4855de97 dev_pm_opp_put_clkname +EXPORT_SYMBOL_GPL vmlinux 0x48479d7d extcon_register_notifier_all +EXPORT_SYMBOL_GPL vmlinux 0x485324f1 crypto_register_scomp EXPORT_SYMBOL_GPL vmlinux 0x485cd7f6 kvm_rebooting -EXPORT_SYMBOL_GPL vmlinux 0x486b1d59 devm_regmap_field_alloc EXPORT_SYMBOL_GPL vmlinux 0x486dedc3 ghes_unregister_vendor_record_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4876762b lp8788_read_multi_bytes -EXPORT_SYMBOL_GPL vmlinux 0x48772650 serial8250_set_defaults -EXPORT_SYMBOL_GPL vmlinux 0x488b4a9f acpiphp_register_attention -EXPORT_SYMBOL_GPL vmlinux 0x488cdfd1 acpi_get_pci_dev -EXPORT_SYMBOL_GPL vmlinux 0x48a36110 debugfs_rename +EXPORT_SYMBOL_GPL vmlinux 0x486e860e devm_gpiod_unhinge +EXPORT_SYMBOL_GPL vmlinux 0x4880887b __ata_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x48818903 lp8788_write_byte +EXPORT_SYMBOL_GPL vmlinux 0x488ff056 stmpe_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x4892e9ce i2c_new_client_device EXPORT_SYMBOL_GPL vmlinux 0x48a3a923 pkcs7_get_content_data EXPORT_SYMBOL_GPL vmlinux 0x48a3d20b mctrl_gpio_get -EXPORT_SYMBOL_GPL vmlinux 0x48a69a7b ptp_classify_raw -EXPORT_SYMBOL_GPL vmlinux 0x48a744a8 stmpe_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x48a8482d usb_autopm_get_interface_no_resume -EXPORT_SYMBOL_GPL vmlinux 0x48b47a42 spi_mem_dirmap_destroy -EXPORT_SYMBOL_GPL vmlinux 0x48bb14af iommu_present +EXPORT_SYMBOL_GPL vmlinux 0x48ab36aa devm_platform_ioremap_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0x48b36f55 clk_hw_unregister_fixed_factor EXPORT_SYMBOL_GPL vmlinux 0x48c32847 __SCK__tp_func_sched_util_est_se_tp -EXPORT_SYMBOL_GPL vmlinux 0x48df50a3 perf_tp_event +EXPORT_SYMBOL_GPL vmlinux 0x48cb3a65 devm_pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0x48d074a3 rio_alloc_net +EXPORT_SYMBOL_GPL vmlinux 0x48dfcd00 bpf_trace_run6 +EXPORT_SYMBOL_GPL vmlinux 0x48e4d544 transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x48f0aa82 trace_seq_path EXPORT_SYMBOL_GPL vmlinux 0x48f49400 apei_hest_parse -EXPORT_SYMBOL_GPL vmlinux 0x48f4a5c1 ping_seq_start -EXPORT_SYMBOL_GPL vmlinux 0x490a0583 __inet_twsk_schedule -EXPORT_SYMBOL_GPL vmlinux 0x491d1d83 gpiochip_remove_pin_ranges +EXPORT_SYMBOL_GPL vmlinux 0x4906672f fat_attach EXPORT_SYMBOL_GPL vmlinux 0x49242bc7 freezer_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x49293b8a skb_copy_ubufs +EXPORT_SYMBOL_GPL vmlinux 0x4926ba98 device_property_read_u8_array EXPORT_SYMBOL_GPL vmlinux 0x4934bdd0 crypto_check_attr_type -EXPORT_SYMBOL_GPL vmlinux 0x493874ec ata_bmdma_dumb_qc_prep -EXPORT_SYMBOL_GPL vmlinux 0x4939319a led_trigger_blink EXPORT_SYMBOL_GPL vmlinux 0x4939ebcd numa_map_to_online_node -EXPORT_SYMBOL_GPL vmlinux 0x493aae89 pci_epc_set_msix -EXPORT_SYMBOL_GPL vmlinux 0x4959f92c mddev_unlock +EXPORT_SYMBOL_GPL vmlinux 0x49548cee mtk_eint_set_debounce EXPORT_SYMBOL_GPL vmlinux 0x49608959 migrate_disable -EXPORT_SYMBOL_GPL vmlinux 0x4968bc5e blk_trace_remove -EXPORT_SYMBOL_GPL vmlinux 0x496e75c1 debugfs_lookup -EXPORT_SYMBOL_GPL vmlinux 0x49833d90 xen_dbgp_reset_prep -EXPORT_SYMBOL_GPL vmlinux 0x49859c18 __hwspin_unlock -EXPORT_SYMBOL_GPL vmlinux 0x498ebeef pfn_to_online_page +EXPORT_SYMBOL_GPL vmlinux 0x496e79cd fuse_free_conn +EXPORT_SYMBOL_GPL vmlinux 0x49861f2f blk_ksm_init_passthrough +EXPORT_SYMBOL_GPL vmlinux 0x49901925 devfreq_cooling_unregister EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue -EXPORT_SYMBOL_GPL vmlinux 0x4991a778 mctrl_gpio_free -EXPORT_SYMBOL_GPL vmlinux 0x499af54b ulpi_viewport_access_ops -EXPORT_SYMBOL_GPL vmlinux 0x499e3649 kvm_vcpu_mark_page_dirty -EXPORT_SYMBOL_GPL vmlinux 0x49b3185e ata_bmdma_port_start -EXPORT_SYMBOL_GPL vmlinux 0x49b39800 wakeup_source_register -EXPORT_SYMBOL_GPL vmlinux 0x49c06501 iommu_sva_bind_device +EXPORT_SYMBOL_GPL vmlinux 0x49964898 devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0x49982418 usb_match_one_id +EXPORT_SYMBOL_GPL vmlinux 0x49ac1943 pci_epc_map_msi_irq +EXPORT_SYMBOL_GPL vmlinux 0x49af2686 fsnotify_init_mark +EXPORT_SYMBOL_GPL vmlinux 0x49baac57 dax_layout_busy_page_range +EXPORT_SYMBOL_GPL vmlinux 0x49c2424b pci_host_common_probe EXPORT_SYMBOL_GPL vmlinux 0x49cd25ed alloc_workqueue -EXPORT_SYMBOL_GPL vmlinux 0x49d1e0c3 regulator_set_current_limit -EXPORT_SYMBOL_GPL vmlinux 0x49d7601b dma_buf_fd -EXPORT_SYMBOL_GPL vmlinux 0x49d82324 fsverity_verify_page +EXPORT_SYMBOL_GPL vmlinux 0x49e2f835 tty_ldisc_receive_buf +EXPORT_SYMBOL_GPL vmlinux 0x49e461cd xfrm_state_mtu EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0x49fed328 device_find_child -EXPORT_SYMBOL_GPL vmlinux 0x4a004a6a fuse_send_init -EXPORT_SYMBOL_GPL vmlinux 0x4a00cc6b xhci_init_driver -EXPORT_SYMBOL_GPL vmlinux 0x4a11b243 regulator_suspend_enable +EXPORT_SYMBOL_GPL vmlinux 0x49fe3b87 powercap_unregister_zone EXPORT_SYMBOL_GPL vmlinux 0x4a17ed66 sysrq_mask -EXPORT_SYMBOL_GPL vmlinux 0x4a2f30fb crypto_unregister_instance +EXPORT_SYMBOL_GPL vmlinux 0x4a2bd695 subsys_dev_iter_next EXPORT_SYMBOL_GPL vmlinux 0x4a420d09 acpi_bus_detach_private_data -EXPORT_SYMBOL_GPL vmlinux 0x4a46cb5c phy_pm_runtime_get_sync -EXPORT_SYMBOL_GPL vmlinux 0x4a52fc8b sk_clear_memalloc -EXPORT_SYMBOL_GPL vmlinux 0x4a534b3e crypto_shash_alg_has_setkey -EXPORT_SYMBOL_GPL vmlinux 0x4a797615 usb_clear_halt -EXPORT_SYMBOL_GPL vmlinux 0x4a7d7b55 pci_find_next_ht_capability -EXPORT_SYMBOL_GPL vmlinux 0x4a9c45fa i2c_slave_register -EXPORT_SYMBOL_GPL vmlinux 0x4ac226f3 of_thermal_is_trip_valid -EXPORT_SYMBOL_GPL vmlinux 0x4ac834a5 fsnotify_find_mark -EXPORT_SYMBOL_GPL vmlinux 0x4acf2670 pm_runtime_force_suspend -EXPORT_SYMBOL_GPL vmlinux 0x4ad0c136 crypto_aes_set_key -EXPORT_SYMBOL_GPL vmlinux 0x4ade330d dma_buf_vmap -EXPORT_SYMBOL_GPL vmlinux 0x4afe1c26 tty_set_ldisc -EXPORT_SYMBOL_GPL vmlinux 0x4b05f879 cpu_device_create -EXPORT_SYMBOL_GPL vmlinux 0x4b0956a1 shmem_read_mapping_page_gfp -EXPORT_SYMBOL_GPL vmlinux 0x4b410cff ethnl_cable_test_finished -EXPORT_SYMBOL_GPL vmlinux 0x4b411c57 nfnl_ct_hook -EXPORT_SYMBOL_GPL vmlinux 0x4b478ee7 of_remove_property +EXPORT_SYMBOL_GPL vmlinux 0x4a6f5484 iommu_enable_nesting +EXPORT_SYMBOL_GPL vmlinux 0x4a9926a6 nvmem_cell_read_u16 +EXPORT_SYMBOL_GPL vmlinux 0x4aa0d5db acpi_cppc_processor_probe +EXPORT_SYMBOL_GPL vmlinux 0x4aacfcd1 usb_free_urb +EXPORT_SYMBOL_GPL vmlinux 0x4acf8613 fixed_phy_register +EXPORT_SYMBOL_GPL vmlinux 0x4acfd0e0 usb_set_device_state +EXPORT_SYMBOL_GPL vmlinux 0x4ad7a477 mptcp_token_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x4ae364fc tegra_bpmp_free_mrq +EXPORT_SYMBOL_GPL vmlinux 0x4aed66c3 relay_flush +EXPORT_SYMBOL_GPL vmlinux 0x4b00c9ee sched_show_task +EXPORT_SYMBOL_GPL vmlinux 0x4b0cfa6d cpufreq_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x4b28c5ed inet_hash EXPORT_SYMBOL_GPL vmlinux 0x4b51f74c ata_xfer_mode2mask EXPORT_SYMBOL_GPL vmlinux 0x4b5acf74 rhashtable_init -EXPORT_SYMBOL_GPL vmlinux 0x4b5b7efb perf_event_read_value -EXPORT_SYMBOL_GPL vmlinux 0x4b6251ce bpf_offload_dev_create -EXPORT_SYMBOL_GPL vmlinux 0x4b641523 i2c_acpi_find_adapter_by_handle -EXPORT_SYMBOL_GPL vmlinux 0x4b644b08 devlink_flash_update_timeout_notify -EXPORT_SYMBOL_GPL vmlinux 0x4b64d8a8 sysfs_remove_link_from_group -EXPORT_SYMBOL_GPL vmlinux 0x4b653b35 pinctrl_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4b6732e0 addrconf_prefix_rcv_add_addr -EXPORT_SYMBOL_GPL vmlinux 0x4b6facd6 __rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4b5e0f14 dev_pm_opp_remove_table +EXPORT_SYMBOL_GPL vmlinux 0x4b6b4a43 cdrom_read_tocentry EXPORT_SYMBOL_GPL vmlinux 0x4b72009e dynamic_debug_exec_queries -EXPORT_SYMBOL_GPL vmlinux 0x4b7a14d0 of_phy_simple_xlate -EXPORT_SYMBOL_GPL vmlinux 0x4b7f3284 pinctrl_generic_get_group_count -EXPORT_SYMBOL_GPL vmlinux 0x4b8537fc get_user_pages_fast -EXPORT_SYMBOL_GPL vmlinux 0x4b88b0cd switchdev_handle_fdb_add_to_device +EXPORT_SYMBOL_GPL vmlinux 0x4b7562f3 input_ff_event +EXPORT_SYMBOL_GPL vmlinux 0x4b7a3830 blk_bio_list_merge +EXPORT_SYMBOL_GPL vmlinux 0x4b8d1c73 udp6_lib_lookup EXPORT_SYMBOL_GPL vmlinux 0x4b931968 xen_features -EXPORT_SYMBOL_GPL vmlinux 0x4b95fa1d ata_port_schedule_eh -EXPORT_SYMBOL_GPL vmlinux 0x4b976350 pm_generic_restore_early -EXPORT_SYMBOL_GPL vmlinux 0x4b9e2ee3 blk_mq_debugfs_rq_show +EXPORT_SYMBOL_GPL vmlinux 0x4b961c3c phy_led_triggers_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4ba3a58c to_nd_desc +EXPORT_SYMBOL_GPL vmlinux 0x4bc65134 ata_pci_bmdma_init_one EXPORT_SYMBOL_GPL vmlinux 0x4bc8727f xen_balloon_init -EXPORT_SYMBOL_GPL vmlinux 0x4bd62c3a fib_nh_common_init +EXPORT_SYMBOL_GPL vmlinux 0x4bcb7daf __percpu_init_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x4bd14754 dev_fill_metadata_dst +EXPORT_SYMBOL_GPL vmlinux 0x4bd5e728 blk_mq_quiesce_queue_nowait EXPORT_SYMBOL_GPL vmlinux 0x4bd6f08b misc_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x4bf922fb bd_prepare_to_claim -EXPORT_SYMBOL_GPL vmlinux 0x4bfe8c41 blkdev_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x4c03eddd policy_has_boost_freq -EXPORT_SYMBOL_GPL vmlinux 0x4c22d529 nvdimm_kobj +EXPORT_SYMBOL_GPL vmlinux 0x4be73096 usb_set_interface +EXPORT_SYMBOL_GPL vmlinux 0x4bee0710 fscrypt_ioctl_remove_key_all_users +EXPORT_SYMBOL_GPL vmlinux 0x4bee47dc gpiochip_irqchip_add_domain +EXPORT_SYMBOL_GPL vmlinux 0x4bffa437 rtnl_put_cacheinfo +EXPORT_SYMBOL_GPL vmlinux 0x4c06a536 kthread_queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0x4c0ec5f7 usb_driver_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0x4c0f8d44 devm_acpi_dev_remove_driver_gpios +EXPORT_SYMBOL_GPL vmlinux 0x4c218e7c blkg_conf_finish +EXPORT_SYMBOL_GPL vmlinux 0x4c24617e acpi_gpiochip_request_interrupts EXPORT_SYMBOL_GPL vmlinux 0x4c2c0ea7 evtchn_make_refcounted -EXPORT_SYMBOL_GPL vmlinux 0x4c51eba1 sysfs_create_link +EXPORT_SYMBOL_GPL vmlinux 0x4c3980f1 __vfs_setxattr_locked +EXPORT_SYMBOL_GPL vmlinux 0x4c39d2a4 dev_fill_forward_path +EXPORT_SYMBOL_GPL vmlinux 0x4c3d0425 generic_fh_to_dentry +EXPORT_SYMBOL_GPL vmlinux 0x4c46439d __clk_get_hw +EXPORT_SYMBOL_GPL vmlinux 0x4c47ecc6 __blk_req_zone_write_unlock +EXPORT_SYMBOL_GPL vmlinux 0x4c4aeba4 meson_clk_pll_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x4c50e4e7 simple_attr_read EXPORT_SYMBOL_GPL vmlinux 0x4c549b36 __traceiter_xhci_dbg_quirks -EXPORT_SYMBOL_GPL vmlinux 0x4c5d58e2 ata_scsi_slave_destroy -EXPORT_SYMBOL_GPL vmlinux 0x4c614d78 devm_usb_get_phy -EXPORT_SYMBOL_GPL vmlinux 0x4c69fd8c ncsi_start_dev -EXPORT_SYMBOL_GPL vmlinux 0x4c761b13 dst_cache_set_ip4 -EXPORT_SYMBOL_GPL vmlinux 0x4c7f4387 device_remove_file_self -EXPORT_SYMBOL_GPL vmlinux 0x4c8312fc ip6_sk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x4c863257 devm_tegra_memory_controller_get +EXPORT_SYMBOL_GPL vmlinux 0x4c58d34a edac_pci_release_generic_ctl +EXPORT_SYMBOL_GPL vmlinux 0x4c5a21ca device_find_child +EXPORT_SYMBOL_GPL vmlinux 0x4c5bdb8a tpm_pcr_read +EXPORT_SYMBOL_GPL vmlinux 0x4c5dcd95 clk_regmap_divider_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x4c705595 blkg_conf_prep EXPORT_SYMBOL_GPL vmlinux 0x4c8adfe1 hv_root_partition -EXPORT_SYMBOL_GPL vmlinux 0x4ca093fd dev_pm_genpd_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4c8bdeb0 _proc_mkdir +EXPORT_SYMBOL_GPL vmlinux 0x4c906ef5 path_noexec +EXPORT_SYMBOL_GPL vmlinux 0x4c954ff1 switchdev_port_obj_del +EXPORT_SYMBOL_GPL vmlinux 0x4c99cde4 nvdimm_cmd_mask +EXPORT_SYMBOL_GPL vmlinux 0x4ca79d8b pinmux_generic_get_function_name EXPORT_SYMBOL_GPL vmlinux 0x4cb27100 ktime_get_snapshot -EXPORT_SYMBOL_GPL vmlinux 0x4cb2a123 nf_nat_hook +EXPORT_SYMBOL_GPL vmlinux 0x4cb518dc meson_vid_pll_div_ro_ops EXPORT_SYMBOL_GPL vmlinux 0x4cb81fda __SCK__tp_func_wbc_writepage -EXPORT_SYMBOL_GPL vmlinux 0x4cbf3f04 of_irq_parse_one -EXPORT_SYMBOL_GPL vmlinux 0x4cc8a190 dev_pm_qos_add_ancestor_request -EXPORT_SYMBOL_GPL vmlinux 0x4cc95f29 dax_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0x4ce5e163 handle_simple_irq -EXPORT_SYMBOL_GPL vmlinux 0x4cf8c9b8 platform_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x4cc2d3cc blk_revalidate_disk_zones +EXPORT_SYMBOL_GPL vmlinux 0x4ccdc524 of_prop_next_string +EXPORT_SYMBOL_GPL vmlinux 0x4cd1c2cb devm_regmap_add_irq_chip_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x4cda311b tcp_get_syncookie_mss +EXPORT_SYMBOL_GPL vmlinux 0x4cde5fc4 regmap_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0x4cdf523c icc_sync_state +EXPORT_SYMBOL_GPL vmlinux 0x4ce78a09 acpi_dev_get_dma_resources +EXPORT_SYMBOL_GPL vmlinux 0x4ceec085 regulator_list_voltage_linear_range EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable -EXPORT_SYMBOL_GPL vmlinux 0x4d06fd11 fat_sync_inode +EXPORT_SYMBOL_GPL vmlinux 0x4d038c3e rio_dma_prep_slave_sg +EXPORT_SYMBOL_GPL vmlinux 0x4d06bfbe device_store_int EXPORT_SYMBOL_GPL vmlinux 0x4d0b752f alloc_iova -EXPORT_SYMBOL_GPL vmlinux 0x4d1e66e5 rio_mport_get_feature EXPORT_SYMBOL_GPL vmlinux 0x4d202b8c __xas_prev -EXPORT_SYMBOL_GPL vmlinux 0x4d2d0d23 k3_udma_glue_request_rx_chn -EXPORT_SYMBOL_GPL vmlinux 0x4d318513 tps6586x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x4d338195 dprc_reset_container -EXPORT_SYMBOL_GPL vmlinux 0x4d339ad8 imx_pinctrl_probe -EXPORT_SYMBOL_GPL vmlinux 0x4d366ec8 kvm_irq_has_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4d37807e devlink_params_register EXPORT_SYMBOL_GPL vmlinux 0x4d3a0696 __SCK__tp_func_rpm_idle -EXPORT_SYMBOL_GPL vmlinux 0x4d427dca genphy_c45_pma_setup_forced -EXPORT_SYMBOL_GPL vmlinux 0x4d47aabe hwspin_lock_request_specific EXPORT_SYMBOL_GPL vmlinux 0x4d4d7b79 blk_mq_map_queues -EXPORT_SYMBOL_GPL vmlinux 0x4d512db2 adp5520_write -EXPORT_SYMBOL_GPL vmlinux 0x4d5549fa pci_cfg_access_unlock -EXPORT_SYMBOL_GPL vmlinux 0x4d5cb079 device_phy_find_device -EXPORT_SYMBOL_GPL vmlinux 0x4d6847ce exportfs_encode_inode_fh +EXPORT_SYMBOL_GPL vmlinux 0x4d5e52b5 mpc8xxx_spi_rx_buf_u8 +EXPORT_SYMBOL_GPL vmlinux 0x4d5e96a8 attribute_container_register EXPORT_SYMBOL_GPL vmlinux 0x4d6d0bbc iommu_group_ref_get -EXPORT_SYMBOL_GPL vmlinux 0x4d6dc726 phy_check_downshift -EXPORT_SYMBOL_GPL vmlinux 0x4d700789 pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0x4d7211b0 nexthop_for_each_fib6_nh EXPORT_SYMBOL_GPL vmlinux 0x4d7272e4 migrate_enable -EXPORT_SYMBOL_GPL vmlinux 0x4d82be79 rio_release_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x4d7fbac5 efivar_entry_add EXPORT_SYMBOL_GPL vmlinux 0x4d83c710 k3_udma_glue_tdown_tx_chn EXPORT_SYMBOL_GPL vmlinux 0x4d8a96ab xas_set_mark +EXPORT_SYMBOL_GPL vmlinux 0x4d8b3f06 sk_setup_caps +EXPORT_SYMBOL_GPL vmlinux 0x4d8d9f24 pci_epf_add_vepf +EXPORT_SYMBOL_GPL vmlinux 0x4d92055a devm_reset_controller_register EXPORT_SYMBOL_GPL vmlinux 0x4d95d6d1 memcpy_flushcache -EXPORT_SYMBOL_GPL vmlinux 0x4d98360d handle_bad_irq +EXPORT_SYMBOL_GPL vmlinux 0x4d97a4ac ahci_fill_cmd_slot +EXPORT_SYMBOL_GPL vmlinux 0x4d9d2069 gpiod_put_array EXPORT_SYMBOL_GPL vmlinux 0x4da1f4a7 list_lru_del +EXPORT_SYMBOL_GPL vmlinux 0x4daadc46 dma_resv_get_fences EXPORT_SYMBOL_GPL vmlinux 0x4dae16e4 i2c_put_dma_safe_msg_buf +EXPORT_SYMBOL_GPL vmlinux 0x4daec7ef phy_pm_runtime_put_sync +EXPORT_SYMBOL_GPL vmlinux 0x4db65e0a serdev_controller_add +EXPORT_SYMBOL_GPL vmlinux 0x4dcc89bd wm8350_gpio_config +EXPORT_SYMBOL_GPL vmlinux 0x4dd00e67 iomap_seek_data EXPORT_SYMBOL_GPL vmlinux 0x4dd9d14d cn_netlink_send_mult +EXPORT_SYMBOL_GPL vmlinux 0x4ddfbe30 regmap_get_val_endian EXPORT_SYMBOL_GPL vmlinux 0x4de17ab3 usb_state_string -EXPORT_SYMBOL_GPL vmlinux 0x4df864e2 palmas_ext_control_req_config -EXPORT_SYMBOL_GPL vmlinux 0x4df9627b device_wakeup_enable -EXPORT_SYMBOL_GPL vmlinux 0x4dfa9df4 clk_register_fractional_divider EXPORT_SYMBOL_GPL vmlinux 0x4dff61e5 wwan_port_txoff -EXPORT_SYMBOL_GPL vmlinux 0x4e142af1 acpi_match_device +EXPORT_SYMBOL_GPL vmlinux 0x4e0a6806 of_reserved_mem_device_release +EXPORT_SYMBOL_GPL vmlinux 0x4e125bed devm_watchdog_register_device EXPORT_SYMBOL_GPL vmlinux 0x4e17c613 ata_sff_queue_delayed_work -EXPORT_SYMBOL_GPL vmlinux 0x4e1ab662 mtk_pinconf_drive_get_rev1 -EXPORT_SYMBOL_GPL vmlinux 0x4e1c4d6e mmu_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4e1dbc0e nexthop_find_by_id -EXPORT_SYMBOL_GPL vmlinux 0x4e2d7a69 spi_get_device_id -EXPORT_SYMBOL_GPL vmlinux 0x4e37f480 devres_release_group -EXPORT_SYMBOL_GPL vmlinux 0x4e395ca1 xfrm_output +EXPORT_SYMBOL_GPL vmlinux 0x4e1f25d7 register_acpi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x4e23e7c1 fs_dax_get_by_bdev +EXPORT_SYMBOL_GPL vmlinux 0x4e345898 power_supply_set_battery_charged +EXPORT_SYMBOL_GPL vmlinux 0x4e37cc4f ip6_sk_redirect EXPORT_SYMBOL_GPL vmlinux 0x4e3fd1b4 kvm_release_pfn_clean EXPORT_SYMBOL_GPL vmlinux 0x4e4c37e2 freq_qos_remove_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4e625a75 dev_pm_qos_expose_latency_limit -EXPORT_SYMBOL_GPL vmlinux 0x4e626e63 debugfs_create_x32 -EXPORT_SYMBOL_GPL vmlinux 0x4e698a7b acpi_dma_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0x4e59331c regulator_get_mode +EXPORT_SYMBOL_GPL vmlinux 0x4e6a007f ahci_platform_disable_regulators +EXPORT_SYMBOL_GPL vmlinux 0x4e7173f2 hisi_reset_init EXPORT_SYMBOL_GPL vmlinux 0x4e74878e __tracepoint_devlink_hwerr -EXPORT_SYMBOL_GPL vmlinux 0x4e7bfda8 do_tcp_sendpages -EXPORT_SYMBOL_GPL vmlinux 0x4e838aa0 devm_clk_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0x4e8ba144 usb_find_interface -EXPORT_SYMBOL_GPL vmlinux 0x4eab7041 sched_trace_rq_cpu +EXPORT_SYMBOL_GPL vmlinux 0x4e8e8932 dm_set_target_max_io_len +EXPORT_SYMBOL_GPL vmlinux 0x4ea54748 __crypto_alloc_tfm EXPORT_SYMBOL_GPL vmlinux 0x4eac5fc1 cpu_mitigations_auto_nosmt EXPORT_SYMBOL_GPL vmlinux 0x4eb39d4e __tracepoint_tcp_bad_csum -EXPORT_SYMBOL_GPL vmlinux 0x4eb92de1 tty_prepare_flip_string +EXPORT_SYMBOL_GPL vmlinux 0x4ebe6fb3 dev_pm_opp_of_find_icc_paths EXPORT_SYMBOL_GPL vmlinux 0x4ece3615 blocking_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4ecfe375 rio_enable_rx_tx_port +EXPORT_SYMBOL_GPL vmlinux 0x4ed35427 phy_package_join +EXPORT_SYMBOL_GPL vmlinux 0x4ed88507 xenbus_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x4ee3c561 fb_deferred_io_fsync +EXPORT_SYMBOL_GPL vmlinux 0x4eeedad6 dev_pm_opp_find_freq_floor EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context +EXPORT_SYMBOL_GPL vmlinux 0x4efb1a7c devlink_alloc_ns EXPORT_SYMBOL_GPL vmlinux 0x4efcf021 mpi_normalize -EXPORT_SYMBOL_GPL vmlinux 0x4f061534 imx_pinctrl_sc_ipc_init -EXPORT_SYMBOL_GPL vmlinux 0x4f1b64b6 devm_thermal_zone_of_sensor_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4f01e572 of_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0x4f12ae53 kvm_vcpu_on_spin +EXPORT_SYMBOL_GPL vmlinux 0x4f139e47 switchdev_handle_fdb_add_to_device +EXPORT_SYMBOL_GPL vmlinux 0x4f16e781 md_find_rdev_nr_rcu EXPORT_SYMBOL_GPL vmlinux 0x4f2593f0 btree_update +EXPORT_SYMBOL_GPL vmlinux 0x4f28d903 i2c_new_smbus_alert_device EXPORT_SYMBOL_GPL vmlinux 0x4f2c996d kmsg_dump_get_line -EXPORT_SYMBOL_GPL vmlinux 0x4f309c57 scsi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x4f31db83 clk_fractional_divider_ops -EXPORT_SYMBOL_GPL vmlinux 0x4f32327d espintcp_queue_out -EXPORT_SYMBOL_GPL vmlinux 0x4f3d4151 rio_request_outb_mbox -EXPORT_SYMBOL_GPL vmlinux 0x4f4ec4d9 of_hwspin_lock_get_id_byname -EXPORT_SYMBOL_GPL vmlinux 0x4f548981 of_pci_range_parser_one -EXPORT_SYMBOL_GPL vmlinux 0x4f58f4f1 genphy_c45_config_aneg -EXPORT_SYMBOL_GPL vmlinux 0x4f5c5a65 scsi_autopm_get_device +EXPORT_SYMBOL_GPL vmlinux 0x4f34fb6e blk_abort_request +EXPORT_SYMBOL_GPL vmlinux 0x4f38411c pm_generic_resume_noirq +EXPORT_SYMBOL_GPL vmlinux 0x4f45f2b7 irq_create_mapping_affinity +EXPORT_SYMBOL_GPL vmlinux 0x4f478661 aead_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0x4f53bf3f devres_remove +EXPORT_SYMBOL_GPL vmlinux 0x4f554436 pm_genpd_remove_subdomain +EXPORT_SYMBOL_GPL vmlinux 0x4f60df6d bd_unlink_disk_holder EXPORT_SYMBOL_GPL vmlinux 0x4f6a07fe show_rcu_gp_kthreads +EXPORT_SYMBOL_GPL vmlinux 0x4f6d2de5 kthread_flush_work EXPORT_SYMBOL_GPL vmlinux 0x4f722eb0 acpi_ec_remove_query_handler EXPORT_SYMBOL_GPL vmlinux 0x4f72a987 uart_parse_options -EXPORT_SYMBOL_GPL vmlinux 0x4f776347 arm64_mm_context_put -EXPORT_SYMBOL_GPL vmlinux 0x4f7b44e6 clk_mux_determine_rate_flags -EXPORT_SYMBOL_GPL vmlinux 0x4f9340a7 devm_gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0x4f7a52b2 ethnl_cable_test_step +EXPORT_SYMBOL_GPL vmlinux 0x4f84a768 decrypt_blob +EXPORT_SYMBOL_GPL vmlinux 0x4f926364 md_new_event +EXPORT_SYMBOL_GPL vmlinux 0x4f935558 ata_host_activate EXPORT_SYMBOL_GPL vmlinux 0x4f98d766 cpu_pm_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4f9e6678 sdio_set_host_pm_flags -EXPORT_SYMBOL_GPL vmlinux 0x4fa6a085 devm_acpi_dma_controller_free -EXPORT_SYMBOL_GPL vmlinux 0x4fc31157 acpi_subsys_poweroff -EXPORT_SYMBOL_GPL vmlinux 0x4fd6cd2d debugfs_create_u32 -EXPORT_SYMBOL_GPL vmlinux 0x4fd740d8 fuse_abort_conn +EXPORT_SYMBOL_GPL vmlinux 0x4fa281ca bsg_job_put +EXPORT_SYMBOL_GPL vmlinux 0x4face35c ata_pci_sff_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0x4fbb25c1 nvdimm_bus_check_dimm_count +EXPORT_SYMBOL_GPL vmlinux 0x4fc5f99e devlink_param_driverinit_value_set +EXPORT_SYMBOL_GPL vmlinux 0x4fd90256 regulator_bulk_free EXPORT_SYMBOL_GPL vmlinux 0x4fdc945d sata_deb_timing_normal -EXPORT_SYMBOL_GPL vmlinux 0x4fdded1c ti_sci_inta_msi_domain_free_irqs EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4fe51db3 usb_free_urb -EXPORT_SYMBOL_GPL vmlinux 0x4fea82dd udp_destruct_sock -EXPORT_SYMBOL_GPL vmlinux 0x4fec87c2 pcie_flr -EXPORT_SYMBOL_GPL vmlinux 0x4ff91b4d i2c_new_dummy_device +EXPORT_SYMBOL_GPL vmlinux 0x4fe57de4 dma_request_chan_by_mask +EXPORT_SYMBOL_GPL vmlinux 0x4ff88afb mtk_pinconf_adv_pull_set +EXPORT_SYMBOL_GPL vmlinux 0x500aeef5 of_pm_clk_add_clks EXPORT_SYMBOL_GPL vmlinux 0x500c768c apei_exec_read_register +EXPORT_SYMBOL_GPL vmlinux 0x500ff40b virtqueue_disable_cb +EXPORT_SYMBOL_GPL vmlinux 0x50189ade ata_std_prereset +EXPORT_SYMBOL_GPL vmlinux 0x501b37c8 edac_device_alloc_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0x5024bbed ata_sff_dev_select EXPORT_SYMBOL_GPL vmlinux 0x5026585c xen_irq_from_gsi -EXPORT_SYMBOL_GPL vmlinux 0x5049da8f skb_segment -EXPORT_SYMBOL_GPL vmlinux 0x504ca1d5 usb_driver_release_interface -EXPORT_SYMBOL_GPL vmlinux 0x504f1edf skb_to_sgvec_nomark -EXPORT_SYMBOL_GPL vmlinux 0x50511adf rockchip_pcie_get_phys -EXPORT_SYMBOL_GPL vmlinux 0x50585fc4 hisi_clk_register_phase -EXPORT_SYMBOL_GPL vmlinux 0x5058aa4c bio_start_io_acct -EXPORT_SYMBOL_GPL vmlinux 0x5059c08e device_for_each_child_reverse -EXPORT_SYMBOL_GPL vmlinux 0x50603770 acpi_register_gsi -EXPORT_SYMBOL_GPL vmlinux 0x50662316 dw8250_setup_port -EXPORT_SYMBOL_GPL vmlinux 0x5069045c rio_pw_enable -EXPORT_SYMBOL_GPL vmlinux 0x507acc9c kill_pid_usb_asyncio -EXPORT_SYMBOL_GPL vmlinux 0x509030eb fwnode_property_present +EXPORT_SYMBOL_GPL vmlinux 0x50287ae0 sk_psock_drop +EXPORT_SYMBOL_GPL vmlinux 0x5040a5c9 nvdimm_security_setup_events +EXPORT_SYMBOL_GPL vmlinux 0x5041e7dd platform_add_devices +EXPORT_SYMBOL_GPL vmlinux 0x505459e6 of_nvmem_device_get +EXPORT_SYMBOL_GPL vmlinux 0x505fcaef crypto_aes_set_key +EXPORT_SYMBOL_GPL vmlinux 0x5060059b devlink_flash_update_status_notify +EXPORT_SYMBOL_GPL vmlinux 0x507077b6 pstore_register +EXPORT_SYMBOL_GPL vmlinux 0x508559fb regulator_bulk_set_supply_names +EXPORT_SYMBOL_GPL vmlinux 0x5085eeb7 stmpe811_adc_common_init EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start -EXPORT_SYMBOL_GPL vmlinux 0x50a1c30b ping_seq_next -EXPORT_SYMBOL_GPL vmlinux 0x50a99117 regulator_is_enabled_regmap -EXPORT_SYMBOL_GPL vmlinux 0x50b3ef20 inode_congested -EXPORT_SYMBOL_GPL vmlinux 0x50baf94b da903x_update -EXPORT_SYMBOL_GPL vmlinux 0x50bb5407 meson_pmx_get_groups -EXPORT_SYMBOL_GPL vmlinux 0x50bdfa96 fsl_mc_bus_dpdmux_type +EXPORT_SYMBOL_GPL vmlinux 0x509ae3a5 vp_modern_set_queue_enable +EXPORT_SYMBOL_GPL vmlinux 0x50a7622b ata_dev_next +EXPORT_SYMBOL_GPL vmlinux 0x50b23c8e of_clk_add_provider +EXPORT_SYMBOL_GPL vmlinux 0x50b62380 dpcon_set_notification +EXPORT_SYMBOL_GPL vmlinux 0x50b8e675 securityfs_create_symlink EXPORT_SYMBOL_GPL vmlinux 0x50c2ae54 rpi_firmware_property -EXPORT_SYMBOL_GPL vmlinux 0x50c51a78 led_trigger_write -EXPORT_SYMBOL_GPL vmlinux 0x50c92fd0 ohci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0x50cbed14 dev_pm_opp_get_freq +EXPORT_SYMBOL_GPL vmlinux 0x50dabafd divider_ro_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0x50de4ba3 of_irq_to_resource_table EXPORT_SYMBOL_GPL vmlinux 0x50df94f5 btree_insert -EXPORT_SYMBOL_GPL vmlinux 0x50e33d43 devlink_dpipe_match_put EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num -EXPORT_SYMBOL_GPL vmlinux 0x50f05203 fsnotify_put_group +EXPORT_SYMBOL_GPL vmlinux 0x50f60566 tty_buffer_space_avail EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up -EXPORT_SYMBOL_GPL vmlinux 0x5104c229 scsi_get_vpd_page -EXPORT_SYMBOL_GPL vmlinux 0x511edf0c devm_mbox_controller_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5124c61c dma_resv_test_signaled -EXPORT_SYMBOL_GPL vmlinux 0x51285c93 spi_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0x50fb76d8 gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0x510292a4 crypto_unregister_ahashes +EXPORT_SYMBOL_GPL vmlinux 0x51128342 irq_create_fwspec_mapping +EXPORT_SYMBOL_GPL vmlinux 0x511a4b15 dev_pm_opp_find_freq_ceil_by_volt +EXPORT_SYMBOL_GPL vmlinux 0x5137bf16 ata_sas_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x51383d7f scsi_autopm_put_device EXPORT_SYMBOL_GPL vmlinux 0x51390c96 rcu_barrier_tasks_rude -EXPORT_SYMBOL_GPL vmlinux 0x513fe827 of_property_match_string -EXPORT_SYMBOL_GPL vmlinux 0x514ae260 of_property_read_variable_u16_array -EXPORT_SYMBOL_GPL vmlinux 0x515511bc page_cache_async_ra EXPORT_SYMBOL_GPL vmlinux 0x515b390f __SCK__tp_func_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0x515ebf64 proc_create_net_single +EXPORT_SYMBOL_GPL vmlinux 0x51616a93 genphy_c45_loopback EXPORT_SYMBOL_GPL vmlinux 0x5169344d k3_udma_glue_pop_tx_chn -EXPORT_SYMBOL_GPL vmlinux 0x516a4e22 inet_csk_clone_lock -EXPORT_SYMBOL_GPL vmlinux 0x516bbbff proc_mkdir_data -EXPORT_SYMBOL_GPL vmlinux 0x516c197f __dev_change_net_namespace EXPORT_SYMBOL_GPL vmlinux 0x5187ac4b xen_store_evtchn -EXPORT_SYMBOL_GPL vmlinux 0x518f302f regmap_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x51920243 ata_sff_data_xfer32 +EXPORT_SYMBOL_GPL vmlinux 0x5193c055 usb_intf_get_dma_device EXPORT_SYMBOL_GPL vmlinux 0x51991b38 mtk_mutex_enable +EXPORT_SYMBOL_GPL vmlinux 0x519aa8d7 sdio_memcpy_toio EXPORT_SYMBOL_GPL vmlinux 0x51a348cc usb_role_switch_set_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x51a4b404 regmap_parse_val -EXPORT_SYMBOL_GPL vmlinux 0x51ac739e acpi_pci_find_root +EXPORT_SYMBOL_GPL vmlinux 0x51a51932 pci_generic_config_write32 +EXPORT_SYMBOL_GPL vmlinux 0x51aba903 xdp_return_frame_bulk EXPORT_SYMBOL_GPL vmlinux 0x51ad07dd tegra210_plle_hw_sequence_start -EXPORT_SYMBOL_GPL vmlinux 0x51be865f fsl_mc_resource_free +EXPORT_SYMBOL_GPL vmlinux 0x51ce9822 devm_acpi_dev_add_driver_gpios EXPORT_SYMBOL_GPL vmlinux 0x51d13875 nf_hooks_lwtunnel_sysctl_handler -EXPORT_SYMBOL_GPL vmlinux 0x51e3feb3 pci_hp_remove_module_link -EXPORT_SYMBOL_GPL vmlinux 0x51eb1547 ncsi_stop_dev -EXPORT_SYMBOL_GPL vmlinux 0x51f7ba07 acpi_dev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x51d39312 tty_port_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0x51ec5934 tcp_reno_ssthresh +EXPORT_SYMBOL_GPL vmlinux 0x51f1c637 i2c_detect_slave_mode +EXPORT_SYMBOL_GPL vmlinux 0x51fa96ae __traceiter_remove_device_from_group EXPORT_SYMBOL_GPL vmlinux 0x51fc9a6d xenmem_reservation_decrease -EXPORT_SYMBOL_GPL vmlinux 0x52072585 pm_runtime_irq_safe -EXPORT_SYMBOL_GPL vmlinux 0x521d2b01 dummy_con -EXPORT_SYMBOL_GPL vmlinux 0x5221a484 tty_ldisc_flush +EXPORT_SYMBOL_GPL vmlinux 0x52099149 switchdev_handle_port_obj_del +EXPORT_SYMBOL_GPL vmlinux 0x5213886d fwnode_get_nth_parent +EXPORT_SYMBOL_GPL vmlinux 0x52198bb6 pci_ecam_map_bus +EXPORT_SYMBOL_GPL vmlinux 0x521b1a46 to_nvdimm_bus_dev EXPORT_SYMBOL_GPL vmlinux 0x52252316 clk_unregister_fixed_rate -EXPORT_SYMBOL_GPL vmlinux 0x522e7198 device_link_del -EXPORT_SYMBOL_GPL vmlinux 0x5232a4b5 cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0x52264387 dm_disk +EXPORT_SYMBOL_GPL vmlinux 0x5228db88 switchdev_bridge_port_unoffload +EXPORT_SYMBOL_GPL vmlinux 0x522ed116 iommu_attach_device EXPORT_SYMBOL_GPL vmlinux 0x52431348 xenbus_transaction_start -EXPORT_SYMBOL_GPL vmlinux 0x524db772 pci_generic_config_write -EXPORT_SYMBOL_GPL vmlinux 0x525aff8a rio_mport_get_efb -EXPORT_SYMBOL_GPL vmlinux 0x5262d2a9 devm_irq_setup_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x52654f5f usb_add_hcd -EXPORT_SYMBOL_GPL vmlinux 0x52657ab3 fib_rules_lookup -EXPORT_SYMBOL_GPL vmlinux 0x52669e81 of_gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0x5257f8a0 mc_send_command +EXPORT_SYMBOL_GPL vmlinux 0x52605018 acpi_get_and_request_gpiod +EXPORT_SYMBOL_GPL vmlinux 0x526558ff cpufreq_policy_transition_delay_us +EXPORT_SYMBOL_GPL vmlinux 0x526a924b gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0x526b4d9e devm_i2c_add_adapter EXPORT_SYMBOL_GPL vmlinux 0x526bcf2a wwan_port_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x52731520 serdev_device_wait_until_sent -EXPORT_SYMBOL_GPL vmlinux 0x529665d5 file_ra_state_init -EXPORT_SYMBOL_GPL vmlinux 0x529b8150 usb_hcd_unmap_urb_for_dma -EXPORT_SYMBOL_GPL vmlinux 0x52aa40f8 vp_modern_get_num_queues +EXPORT_SYMBOL_GPL vmlinux 0x5278f95f ahci_start_fis_rx +EXPORT_SYMBOL_GPL vmlinux 0x528fe75d cpufreq_dbs_governor_init +EXPORT_SYMBOL_GPL vmlinux 0x52910d37 devlink_traps_unregister +EXPORT_SYMBOL_GPL vmlinux 0x52933056 regmap_field_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0x529d8989 verify_signature EXPORT_SYMBOL_GPL vmlinux 0x52b1e3c7 pci_flags -EXPORT_SYMBOL_GPL vmlinux 0x52b8dbe5 rio_release_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x52b3760a blkcg_policy_register +EXPORT_SYMBOL_GPL vmlinux 0x52c04516 amba_bustype +EXPORT_SYMBOL_GPL vmlinux 0x52c209fb __rio_local_write_config_32 EXPORT_SYMBOL_GPL vmlinux 0x52c35e83 call_rcu_tasks_trace -EXPORT_SYMBOL_GPL vmlinux 0x52c69a12 __udp6_lib_lookup EXPORT_SYMBOL_GPL vmlinux 0x52ce2057 hv_setup_crash_handler +EXPORT_SYMBOL_GPL vmlinux 0x52d2045d divider_round_rate_parent EXPORT_SYMBOL_GPL vmlinux 0x52d54fce devlink_info_version_stored_put -EXPORT_SYMBOL_GPL vmlinux 0x52db7097 device_set_wakeup_enable -EXPORT_SYMBOL_GPL vmlinux 0x52e1c860 kvm_release_page_clean -EXPORT_SYMBOL_GPL vmlinux 0x52fd597e device_set_wakeup_capable -EXPORT_SYMBOL_GPL vmlinux 0x52ff085b irq_create_of_mapping +EXPORT_SYMBOL_GPL vmlinux 0x52ecc00c fwnode_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0x53005b29 xfrm_audit_state_replay EXPORT_SYMBOL_GPL vmlinux 0x53012944 __tracepoint_rpm_resume -EXPORT_SYMBOL_GPL vmlinux 0x530496d1 serdev_device_get_tiocm -EXPORT_SYMBOL_GPL vmlinux 0x531a2d41 usb_phy_get_charger_current +EXPORT_SYMBOL_GPL vmlinux 0x531d6662 iommu_sva_alloc_pasid EXPORT_SYMBOL_GPL vmlinux 0x5321d3d6 sbitmap_get -EXPORT_SYMBOL_GPL vmlinux 0x5328703f tty_perform_flush EXPORT_SYMBOL_GPL vmlinux 0x532b90b5 kprobe_event_cmd_init -EXPORT_SYMBOL_GPL vmlinux 0x53325199 crypto_dequeue_request -EXPORT_SYMBOL_GPL vmlinux 0x534d9064 apei_get_debugfs_dir -EXPORT_SYMBOL_GPL vmlinux 0x534f47ce serial8250_do_set_ldisc -EXPORT_SYMBOL_GPL vmlinux 0x53501b45 phy_package_join -EXPORT_SYMBOL_GPL vmlinux 0x535752f1 dm_bio_from_per_bio_data +EXPORT_SYMBOL_GPL vmlinux 0x532da6cb pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x532e5c16 icc_provider_add +EXPORT_SYMBOL_GPL vmlinux 0x53389ef3 irq_remove_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x533a12f1 policy_has_boost_freq +EXPORT_SYMBOL_GPL vmlinux 0x534dd349 gpiod_export_link +EXPORT_SYMBOL_GPL vmlinux 0x534fbb7a led_trigger_unregister_simple +EXPORT_SYMBOL_GPL vmlinux 0x53503e78 dm_get_queue_limits EXPORT_SYMBOL_GPL vmlinux 0x5358864e devlink_fmsg_binary_pair_nest_end -EXPORT_SYMBOL_GPL vmlinux 0x5365b9d6 scsi_check_sense +EXPORT_SYMBOL_GPL vmlinux 0x535f923a dax_layout_busy_page EXPORT_SYMBOL_GPL vmlinux 0x536822e3 sfp_module_insert +EXPORT_SYMBOL_GPL vmlinux 0x536fee3f alloc_skb_for_msg EXPORT_SYMBOL_GPL vmlinux 0x537252cf __SCK__tp_func_rpm_return_int -EXPORT_SYMBOL_GPL vmlinux 0x538c66a4 crypto_register_ahashes +EXPORT_SYMBOL_GPL vmlinux 0x53737104 of_prop_next_u32 EXPORT_SYMBOL_GPL vmlinux 0x538d073d phy_duplex_to_str EXPORT_SYMBOL_GPL vmlinux 0x5391f2c7 gnttab_end_foreign_access_ref -EXPORT_SYMBOL_GPL vmlinux 0x53b014ce of_dma_is_coherent -EXPORT_SYMBOL_GPL vmlinux 0x53b3632a ipv4_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x5393cd8d clk_divider_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x53970489 subsys_interface_register +EXPORT_SYMBOL_GPL vmlinux 0x53a42d1b nf_ip_route +EXPORT_SYMBOL_GPL vmlinux 0x53a7d83f pci_bus_max_busnr +EXPORT_SYMBOL_GPL vmlinux 0x53aa3155 led_get_default_pattern +EXPORT_SYMBOL_GPL vmlinux 0x53b0ed92 gpiochip_irq_map +EXPORT_SYMBOL_GPL vmlinux 0x53be4293 sdio_readl EXPORT_SYMBOL_GPL vmlinux 0x53c089f5 property_entries_dup +EXPORT_SYMBOL_GPL vmlinux 0x53c5737c tracing_snapshot_cond +EXPORT_SYMBOL_GPL vmlinux 0x53c5cf79 dm_noflush_suspending +EXPORT_SYMBOL_GPL vmlinux 0x53c63f67 iommu_sva_get_pasid +EXPORT_SYMBOL_GPL vmlinux 0x53c7f3d3 tcp_twsk_destructor +EXPORT_SYMBOL_GPL vmlinux 0x53ca9102 gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0x53cfded9 ethnl_cable_test_amplitude EXPORT_SYMBOL_GPL vmlinux 0x53d7c01e __traceiter_cpu_idle -EXPORT_SYMBOL_GPL vmlinux 0x53d85b8d rt_mutex_trylock -EXPORT_SYMBOL_GPL vmlinux 0x53e20296 wwan_unregister_ops -EXPORT_SYMBOL_GPL vmlinux 0x53e9d01a mbox_chan_txdone -EXPORT_SYMBOL_GPL vmlinux 0x54121a2a kvm_gfn_to_hva_cache_init +EXPORT_SYMBOL_GPL vmlinux 0x53ed9281 sched_trace_rq_avg_dl +EXPORT_SYMBOL_GPL vmlinux 0x53f31cbd dev_pm_opp_get_suspend_opp_freq +EXPORT_SYMBOL_GPL vmlinux 0x53f54396 security_kernel_post_read_file +EXPORT_SYMBOL_GPL vmlinux 0x53f5610f device_property_present +EXPORT_SYMBOL_GPL vmlinux 0x53fb7754 usb_register_dev +EXPORT_SYMBOL_GPL vmlinux 0x54146f10 usb_hc_died +EXPORT_SYMBOL_GPL vmlinux 0x5415c906 gnttab_page_cache_put EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run EXPORT_SYMBOL_GPL vmlinux 0x54215db5 visitor64 -EXPORT_SYMBOL_GPL vmlinux 0x542bfde9 fat_setattr -EXPORT_SYMBOL_GPL vmlinux 0x543eaef3 ethtool_set_ethtool_phy_ops -EXPORT_SYMBOL_GPL vmlinux 0x54425f13 da9052_free_irq -EXPORT_SYMBOL_GPL vmlinux 0x544e5e7a crypto_stats_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x544b320d of_irq_find_parent +EXPORT_SYMBOL_GPL vmlinux 0x544f73f7 device_del EXPORT_SYMBOL_GPL vmlinux 0x545025e5 nvmem_add_cell_table -EXPORT_SYMBOL_GPL vmlinux 0x545ce895 get_task_pid -EXPORT_SYMBOL_GPL vmlinux 0x545df03c bsg_job_put EXPORT_SYMBOL_GPL vmlinux 0x54651f9b rhashtable_walk_next -EXPORT_SYMBOL_GPL vmlinux 0x5465fe69 gnttab_dma_free_pages -EXPORT_SYMBOL_GPL vmlinux 0x546e6f2c metadata_dst_free_percpu -EXPORT_SYMBOL_GPL vmlinux 0x54728951 rio_mport_write_config_32 -EXPORT_SYMBOL_GPL vmlinux 0x5475f43f class_find_device -EXPORT_SYMBOL_GPL vmlinux 0x547c8c28 transport_class_register -EXPORT_SYMBOL_GPL vmlinux 0x548b0b3e __clocksource_update_freq_scale +EXPORT_SYMBOL_GPL vmlinux 0x5467ce58 tpm_pcr_extend +EXPORT_SYMBOL_GPL vmlinux 0x546d2f44 balloon_page_alloc +EXPORT_SYMBOL_GPL vmlinux 0x5485e4d0 pci_bus_add_device EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq EXPORT_SYMBOL_GPL vmlinux 0x54a25da2 qcom_smem_state_put -EXPORT_SYMBOL_GPL vmlinux 0x54b9ce10 phy_create -EXPORT_SYMBOL_GPL vmlinux 0x54be6b0d set_online_page_callback -EXPORT_SYMBOL_GPL vmlinux 0x54c4049d device_create_managed_software_node -EXPORT_SYMBOL_GPL vmlinux 0x54e26271 con_debug_enter -EXPORT_SYMBOL_GPL vmlinux 0x54e7287a platform_device_put -EXPORT_SYMBOL_GPL vmlinux 0x54ecc9ef __pm_runtime_disable -EXPORT_SYMBOL_GPL vmlinux 0x5501c41e usb_wakeup_notification -EXPORT_SYMBOL_GPL vmlinux 0x550f32b6 devm_hwspin_lock_request_specific +EXPORT_SYMBOL_GPL vmlinux 0x54ad1e27 of_hwspin_lock_get_id_byname +EXPORT_SYMBOL_GPL vmlinux 0x54b23b68 usb_hcd_check_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0x54b54e70 stmpe_block_write +EXPORT_SYMBOL_GPL vmlinux 0x54b5a721 vfs_listxattr +EXPORT_SYMBOL_GPL vmlinux 0x54bf4d5f crypto_mod_get +EXPORT_SYMBOL_GPL vmlinux 0x54c6f278 bus_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x54ca0dfa dw_pcie_host_deinit +EXPORT_SYMBOL_GPL vmlinux 0x54e256d5 ata_std_qc_defer +EXPORT_SYMBOL_GPL vmlinux 0x54f4d64c sk_detach_filter EXPORT_SYMBOL_GPL vmlinux 0x550f3e05 i2c_freq_mode_string -EXPORT_SYMBOL_GPL vmlinux 0x551e1280 gpiod_get_index_optional -EXPORT_SYMBOL_GPL vmlinux 0x552d9cba dm_table_set_type +EXPORT_SYMBOL_GPL vmlinux 0x551561e7 nvmem_device_find +EXPORT_SYMBOL_GPL vmlinux 0x552be5bb usb_autopm_put_interface_async EXPORT_SYMBOL_GPL vmlinux 0x55339365 flush_delayed_fput -EXPORT_SYMBOL_GPL vmlinux 0x553515b8 devlink_reload_enable EXPORT_SYMBOL_GPL vmlinux 0x553b49a4 cpufreq_get_driver_data -EXPORT_SYMBOL_GPL vmlinux 0x553e2e95 pm_clk_runtime_resume EXPORT_SYMBOL_GPL vmlinux 0x55417264 unregister_vt_notifier -EXPORT_SYMBOL_GPL vmlinux 0x5548c230 icc_node_del -EXPORT_SYMBOL_GPL vmlinux 0x554f8cbb dev_attr_sw_activity -EXPORT_SYMBOL_GPL vmlinux 0x5559d0be clk_gate_ops -EXPORT_SYMBOL_GPL vmlinux 0x5567feb0 tps6586x_read -EXPORT_SYMBOL_GPL vmlinux 0x556a6dc9 fsl_mc_bus_dpseci_type +EXPORT_SYMBOL_GPL vmlinux 0x55630368 sock_diag_unregister_inet_compat EXPORT_SYMBOL_GPL vmlinux 0x556e4390 clk_get_rate -EXPORT_SYMBOL_GPL vmlinux 0x55738c4c fat_search_long -EXPORT_SYMBOL_GPL vmlinux 0x5577c7a0 dax_layout_busy_page_range -EXPORT_SYMBOL_GPL vmlinux 0x557805e0 wbt_enable_default +EXPORT_SYMBOL_GPL vmlinux 0x55748301 ehci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x5577bf5b of_usb_update_otg_caps EXPORT_SYMBOL_GPL vmlinux 0x55784228 regmap_irq_get_virq -EXPORT_SYMBOL_GPL vmlinux 0x559197f9 edac_mc_find_csrow_by_page -EXPORT_SYMBOL_GPL vmlinux 0x5595ed6a register_pernet_subsys -EXPORT_SYMBOL_GPL vmlinux 0x55a14e94 regcache_drop_region -EXPORT_SYMBOL_GPL vmlinux 0x55a9258a usb_autopm_get_interface_async -EXPORT_SYMBOL_GPL vmlinux 0x55b3f5e3 d_walk -EXPORT_SYMBOL_GPL vmlinux 0x55b93b11 fsl_mc_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x557b78fc alloc_empty_file +EXPORT_SYMBOL_GPL vmlinux 0x55862c00 fwnode_find_reference +EXPORT_SYMBOL_GPL vmlinux 0x559927ed relay_buf_full +EXPORT_SYMBOL_GPL vmlinux 0x55ac3f13 irq_chip_set_wake_parent +EXPORT_SYMBOL_GPL vmlinux 0x55b0139b __fsnotify_inode_delete +EXPORT_SYMBOL_GPL vmlinux 0x55bb141c fuse_abort_conn +EXPORT_SYMBOL_GPL vmlinux 0x55c37033 device_link_remove EXPORT_SYMBOL_GPL vmlinux 0x55c76a23 ksys_sync_helper EXPORT_SYMBOL_GPL vmlinux 0x55c9880c zynqmp_pm_release_node -EXPORT_SYMBOL_GPL vmlinux 0x55c9cca2 tty_port_install +EXPORT_SYMBOL_GPL vmlinux 0x55dce656 crypto_register_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x55e86727 irq_chip_eoi_parent +EXPORT_SYMBOL_GPL vmlinux 0x55ed6a2a power_supply_put_battery_info EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout EXPORT_SYMBOL_GPL vmlinux 0x56054c05 crypto_it_tab -EXPORT_SYMBOL_GPL vmlinux 0x56072b1d pci_iomap_wc_range +EXPORT_SYMBOL_GPL vmlinux 0x561176b8 __spi_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x561273df get_task_mm +EXPORT_SYMBOL_GPL vmlinux 0x5614cdbc regulator_list_hardware_vsel EXPORT_SYMBOL_GPL vmlinux 0x56173654 pcap_set_ts_bits +EXPORT_SYMBOL_GPL vmlinux 0x562468b9 fwnode_gpiod_get_index EXPORT_SYMBOL_GPL vmlinux 0x56256e8a orderly_poweroff -EXPORT_SYMBOL_GPL vmlinux 0x562f728d __pci_reset_function_locked EXPORT_SYMBOL_GPL vmlinux 0x56310925 regulator_mode_to_status -EXPORT_SYMBOL_GPL vmlinux 0x563f430a phy_resolve_aneg_linkmode EXPORT_SYMBOL_GPL vmlinux 0x5641485b tty_termios_encode_baud_rate -EXPORT_SYMBOL_GPL vmlinux 0x565e1deb devm_gpiod_put -EXPORT_SYMBOL_GPL vmlinux 0x56918db8 kvm_read_guest_cached -EXPORT_SYMBOL_GPL vmlinux 0x5694d95d sdio_retune_crc_disable -EXPORT_SYMBOL_GPL vmlinux 0x569a4684 wm8400_reset_codec_reg_cache -EXPORT_SYMBOL_GPL vmlinux 0x569acfba devm_acpi_dev_add_driver_gpios -EXPORT_SYMBOL_GPL vmlinux 0x56af2b13 rockchip_pcie_cfg_configuration_accesses -EXPORT_SYMBOL_GPL vmlinux 0x56bbcbbc relay_late_setup_files -EXPORT_SYMBOL_GPL vmlinux 0x56c3039a find_asymmetric_key -EXPORT_SYMBOL_GPL vmlinux 0x56c7de4c usb_debug_root -EXPORT_SYMBOL_GPL vmlinux 0x56c99f82 fwnode_get_parent -EXPORT_SYMBOL_GPL vmlinux 0x56d46594 ip_build_and_send_pkt -EXPORT_SYMBOL_GPL vmlinux 0x56dafdb2 iomap_finish_ioends -EXPORT_SYMBOL_GPL vmlinux 0x56e40a43 clk_hw_register_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0x56e5e62b debugfs_create_regset32 +EXPORT_SYMBOL_GPL vmlinux 0x564743ee ip6_route_output_flags_noref +EXPORT_SYMBOL_GPL vmlinux 0x56486a7f ehci_resume +EXPORT_SYMBOL_GPL vmlinux 0x56696a59 dev_attr_link_power_management_policy +EXPORT_SYMBOL_GPL vmlinux 0x56713dd8 user_read +EXPORT_SYMBOL_GPL vmlinux 0x569049cc pci_ecam_free +EXPORT_SYMBOL_GPL vmlinux 0x56a34867 dma_wait_for_async_tx +EXPORT_SYMBOL_GPL vmlinux 0x56a6cef3 dev_pm_qos_add_ancestor_request +EXPORT_SYMBOL_GPL vmlinux 0x56abbae5 md_kick_rdev_from_array +EXPORT_SYMBOL_GPL vmlinux 0x56ad70fa nvdimm_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x56b58675 fsl_mc_bus_dpni_type +EXPORT_SYMBOL_GPL vmlinux 0x56c0c445 tegra210_clk_emc_attach +EXPORT_SYMBOL_GPL vmlinux 0x56c486af devm_add_action +EXPORT_SYMBOL_GPL vmlinux 0x56cd284e driver_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x56d59c6a clk_mux_val_to_index +EXPORT_SYMBOL_GPL vmlinux 0x56d6d150 device_match_fwnode EXPORT_SYMBOL_GPL vmlinux 0x56e9103b cpu_pm_enter -EXPORT_SYMBOL_GPL vmlinux 0x56f00adc devm_watchdog_register_device -EXPORT_SYMBOL_GPL vmlinux 0x56f1594d dev_pm_opp_is_turbo -EXPORT_SYMBOL_GPL vmlinux 0x56f42b6c dma_map_sgtable -EXPORT_SYMBOL_GPL vmlinux 0x56f9dd4e pci_bus_resource_n EXPORT_SYMBOL_GPL vmlinux 0x56fbb130 no_hash_pointers -EXPORT_SYMBOL_GPL vmlinux 0x56fd652e ata_bmdma_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x57014d4d ehci_resume -EXPORT_SYMBOL_GPL vmlinux 0x57044851 acpi_bind_one -EXPORT_SYMBOL_GPL vmlinux 0x571884a8 pinctrl_utils_add_map_mux -EXPORT_SYMBOL_GPL vmlinux 0x57391565 scmi_protocol_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5700f7e5 devm_devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0x570c370d ata_wait_register +EXPORT_SYMBOL_GPL vmlinux 0x570ca724 spi_mem_supports_op +EXPORT_SYMBOL_GPL vmlinux 0x571f4959 gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0x5736f3dc dev_nit_active EXPORT_SYMBOL_GPL vmlinux 0x573b5453 ipv6_fixup_options -EXPORT_SYMBOL_GPL vmlinux 0x574371b9 inet6_lookup_listener EXPORT_SYMBOL_GPL vmlinux 0x574609c5 apei_exec_write_register_value -EXPORT_SYMBOL_GPL vmlinux 0x574737c8 clk_hw_set_parent -EXPORT_SYMBOL_GPL vmlinux 0x574922d0 devm_kstrdup_const -EXPORT_SYMBOL_GPL vmlinux 0x57541f0a virtqueue_is_broken -EXPORT_SYMBOL_GPL vmlinux 0x57566e0f thermal_remove_hwmon_sysfs -EXPORT_SYMBOL_GPL vmlinux 0x5759c34c bind_interdomain_evtchn_to_irq_lateeoi -EXPORT_SYMBOL_GPL vmlinux 0x5761f4bd acpi_dev_get_resources -EXPORT_SYMBOL_GPL vmlinux 0x5766b63b blk_mq_unfreeze_queue +EXPORT_SYMBOL_GPL vmlinux 0x574af97b usb_sg_init +EXPORT_SYMBOL_GPL vmlinux 0x574c5cf1 xdp_attachment_setup +EXPORT_SYMBOL_GPL vmlinux 0x5764e337 of_get_phy_mode EXPORT_SYMBOL_GPL vmlinux 0x57719632 gnttab_grant_foreign_access +EXPORT_SYMBOL_GPL vmlinux 0x5772f160 cpuidle_unregister EXPORT_SYMBOL_GPL vmlinux 0x57732438 inet_twsk_purge -EXPORT_SYMBOL_GPL vmlinux 0x5779151c to_of_pinfo EXPORT_SYMBOL_GPL vmlinux 0x577a438a tegra210_clk_emc_detach +EXPORT_SYMBOL_GPL vmlinux 0x5782122c edac_mc_free +EXPORT_SYMBOL_GPL vmlinux 0x57893069 regulator_set_voltage_rdev +EXPORT_SYMBOL_GPL vmlinux 0x578d20dc acpi_subsys_runtime_suspend EXPORT_SYMBOL_GPL vmlinux 0x578eeb4d hugetlb_cgrp_subsys_enabled_key EXPORT_SYMBOL_GPL vmlinux 0x5790e7a0 pci_unlock_rescan_remove -EXPORT_SYMBOL_GPL vmlinux 0x5794f45e usb_sg_wait +EXPORT_SYMBOL_GPL vmlinux 0x579aebcb gpiochip_generic_config EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all -EXPORT_SYMBOL_GPL vmlinux 0x57a25cc1 serdev_device_open -EXPORT_SYMBOL_GPL vmlinux 0x57bc9c60 dw_pcie_find_ext_capability -EXPORT_SYMBOL_GPL vmlinux 0x57d34634 kvm_put_kvm +EXPORT_SYMBOL_GPL vmlinux 0x57abc0e2 usb_deregister_dev +EXPORT_SYMBOL_GPL vmlinux 0x57b2a5af __traceiter_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0x57b6a778 led_compose_name EXPORT_SYMBOL_GPL vmlinux 0x57d4050a xhci_get_endpoint_index -EXPORT_SYMBOL_GPL vmlinux 0x57f3e7ba sdio_retune_crc_enable +EXPORT_SYMBOL_GPL vmlinux 0x57df37d0 __inet_inherit_port +EXPORT_SYMBOL_GPL vmlinux 0x57e07471 dev_pm_opp_put_opp_table +EXPORT_SYMBOL_GPL vmlinux 0x57f4f2d3 irq_domain_reset_irq_data EXPORT_SYMBOL_GPL vmlinux 0x57f576b9 mpi_ec_curve_point -EXPORT_SYMBOL_GPL vmlinux 0x57f64215 fscrypt_set_test_dummy_encryption EXPORT_SYMBOL_GPL vmlinux 0x57f70547 secure_ipv4_port_ephemeral -EXPORT_SYMBOL_GPL vmlinux 0x5825c620 bpf_verifier_log_write +EXPORT_SYMBOL_GPL vmlinux 0x57f73e0b rtc_class_open +EXPORT_SYMBOL_GPL vmlinux 0x5814399c perf_get_aux +EXPORT_SYMBOL_GPL vmlinux 0x582540d9 blk_queue_flag_test_and_set EXPORT_SYMBOL_GPL vmlinux 0x58276f93 cper_next_record_id +EXPORT_SYMBOL_GPL vmlinux 0x582b25c4 genphy_c45_aneg_done EXPORT_SYMBOL_GPL vmlinux 0x5831e062 cpus_read_trylock -EXPORT_SYMBOL_GPL vmlinux 0x583716f2 nvdimm_volatile_region_create -EXPORT_SYMBOL_GPL vmlinux 0x583a3d8e led_trigger_unregister -EXPORT_SYMBOL_GPL vmlinux 0x583db3a5 of_clk_del_provider -EXPORT_SYMBOL_GPL vmlinux 0x584c3e33 io_cgrp_subsys -EXPORT_SYMBOL_GPL vmlinux 0x584e038d regmap_update_bits_base -EXPORT_SYMBOL_GPL vmlinux 0x58522161 clk_hw_get_num_parents -EXPORT_SYMBOL_GPL vmlinux 0x585269f4 debugfs_create_ulong -EXPORT_SYMBOL_GPL vmlinux 0x5853d09f mptcp_token_iter_next -EXPORT_SYMBOL_GPL vmlinux 0x585c8787 extcon_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x584a904a thermal_zone_get_zone_by_name +EXPORT_SYMBOL_GPL vmlinux 0x584dc4a5 vp_modern_get_features EXPORT_SYMBOL_GPL vmlinux 0x586bfc8a alarm_restart -EXPORT_SYMBOL_GPL vmlinux 0x586fed3b serial8250_get_port +EXPORT_SYMBOL_GPL vmlinux 0x586caf49 serial8250_request_dma +EXPORT_SYMBOL_GPL vmlinux 0x58701605 __traceiter_rpm_suspend EXPORT_SYMBOL_GPL vmlinux 0x5879a27d sfp_get_module_info -EXPORT_SYMBOL_GPL vmlinux 0x587e65ef __phy_modify_mmd_changed -EXPORT_SYMBOL_GPL vmlinux 0x58839801 component_master_add_with_match -EXPORT_SYMBOL_GPL vmlinux 0x5894d6e4 key_type_logon -EXPORT_SYMBOL_GPL vmlinux 0x589cf56b raw_abort -EXPORT_SYMBOL_GPL vmlinux 0x58a92afe kvm_vcpu_block -EXPORT_SYMBOL_GPL vmlinux 0x58ab80a9 watchdog_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0x58b69905 devm_blk_ksm_init -EXPORT_SYMBOL_GPL vmlinux 0x58d39e9e dev_pm_domain_attach_by_name +EXPORT_SYMBOL_GPL vmlinux 0x58a09784 xfrm_audit_policy_delete +EXPORT_SYMBOL_GPL vmlinux 0x58a65ea7 rio_release_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x58b508bb fuse_dev_alloc_install +EXPORT_SYMBOL_GPL vmlinux 0x58dc6913 devm_gpiod_get_array EXPORT_SYMBOL_GPL vmlinux 0x58def6ca sfp_module_remove EXPORT_SYMBOL_GPL vmlinux 0x58e14f15 HYPERVISOR_event_channel_op -EXPORT_SYMBOL_GPL vmlinux 0x58ea7248 i2c_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x58f25686 fixed_phy_register -EXPORT_SYMBOL_GPL vmlinux 0x58fc304d pci_user_read_config_byte -EXPORT_SYMBOL_GPL vmlinux 0x5903aa8e usb_store_new_id -EXPORT_SYMBOL_GPL vmlinux 0x590fb6bc inet_send_prepare -EXPORT_SYMBOL_GPL vmlinux 0x59164357 led_set_brightness_nopm +EXPORT_SYMBOL_GPL vmlinux 0x58fc8cd0 gpiochip_get_data +EXPORT_SYMBOL_GPL vmlinux 0x58fd8db0 sched_trace_rq_cpu_capacity +EXPORT_SYMBOL_GPL vmlinux 0x590dee76 nf_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0x592957a2 blkcg_print_blkgs +EXPORT_SYMBOL_GPL vmlinux 0x59330235 sysfs_create_mount_point +EXPORT_SYMBOL_GPL vmlinux 0x593cb358 __netpoll_free +EXPORT_SYMBOL_GPL vmlinux 0x593e95e9 crypto_alg_mod_lookup +EXPORT_SYMBOL_GPL vmlinux 0x59454b87 usb_get_current_frame_number EXPORT_SYMBOL_GPL vmlinux 0x594c2224 srcu_torture_stats_print -EXPORT_SYMBOL_GPL vmlinux 0x59533a7c xenbus_map_ring_valloc -EXPORT_SYMBOL_GPL vmlinux 0x595e7a25 bsg_job_done -EXPORT_SYMBOL_GPL vmlinux 0x595f84a2 ata_host_detach -EXPORT_SYMBOL_GPL vmlinux 0x598418b4 netlink_has_listeners +EXPORT_SYMBOL_GPL vmlinux 0x595ed65a of_clk_get_parent_count +EXPORT_SYMBOL_GPL vmlinux 0x5961e175 espintcp_push_skb +EXPORT_SYMBOL_GPL vmlinux 0x596301d4 of_dma_is_coherent +EXPORT_SYMBOL_GPL vmlinux 0x59631577 device_link_del +EXPORT_SYMBOL_GPL vmlinux 0x59644a2c pinctrl_utils_add_config +EXPORT_SYMBOL_GPL vmlinux 0x597ae4f5 pci_host_probe +EXPORT_SYMBOL_GPL vmlinux 0x597ec394 gfn_to_page_many_atomic EXPORT_SYMBOL_GPL vmlinux 0x5986d190 kdb_printf -EXPORT_SYMBOL_GPL vmlinux 0x598bae83 hisi_uncore_pmu_identifier_attr_show -EXPORT_SYMBOL_GPL vmlinux 0x5993805b pci_common_swizzle -EXPORT_SYMBOL_GPL vmlinux 0x59970fc5 regulator_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0x59a1ff80 skb_complete_tx_timestamp -EXPORT_SYMBOL_GPL vmlinux 0x59aade14 usb_unpoison_urb +EXPORT_SYMBOL_GPL vmlinux 0x598f6b16 devm_qcom_smem_state_get EXPORT_SYMBOL_GPL vmlinux 0x59b2adbf input_ff_effect_from_user +EXPORT_SYMBOL_GPL vmlinux 0x59c41138 bus_register_notifier EXPORT_SYMBOL_GPL vmlinux 0x59c43dc9 __traceiter_non_standard_event -EXPORT_SYMBOL_GPL vmlinux 0x59d98141 set_task_ioprio -EXPORT_SYMBOL_GPL vmlinux 0x59da4dba usb_put_dev -EXPORT_SYMBOL_GPL vmlinux 0x59dd2b28 sysfs_update_group -EXPORT_SYMBOL_GPL vmlinux 0x59e36cdf dax_copy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0x59d7cae5 extcon_get_property_capability EXPORT_SYMBOL_GPL vmlinux 0x59e640c0 halt_poll_ns -EXPORT_SYMBOL_GPL vmlinux 0x59ed5816 i2c_acpi_new_device +EXPORT_SYMBOL_GPL vmlinux 0x59e8d9bc xen_dbgp_reset_prep +EXPORT_SYMBOL_GPL vmlinux 0x59ec4dff device_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x59ef1394 dev_pm_opp_find_level_exact EXPORT_SYMBOL_GPL vmlinux 0x59f32720 mpi_subm -EXPORT_SYMBOL_GPL vmlinux 0x5a00b957 sfp_bus_find_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x59f3bf9f acpi_initialize_hp_context +EXPORT_SYMBOL_GPL vmlinux 0x59fc79ed vchan_tx_submit +EXPORT_SYMBOL_GPL vmlinux 0x59feb306 tegra_bpmp_request_mrq +EXPORT_SYMBOL_GPL vmlinux 0x5a0bef87 gpiod_direction_output_raw EXPORT_SYMBOL_GPL vmlinux 0x5a12e60c __SCK__tp_func_sched_update_nr_running_tp -EXPORT_SYMBOL_GPL vmlinux 0x5a1c7523 ip6_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x5a1924f4 usb_phy_set_event EXPORT_SYMBOL_GPL vmlinux 0x5a1d134a rcu_momentary_dyntick_idle -EXPORT_SYMBOL_GPL vmlinux 0x5a298bf9 __nf_ip6_route -EXPORT_SYMBOL_GPL vmlinux 0x5a2ade16 wm831x_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0x5a2052bc perf_aux_output_end +EXPORT_SYMBOL_GPL vmlinux 0x5a2d8039 ping_common_sendmsg EXPORT_SYMBOL_GPL vmlinux 0x5a49dbc9 timerqueue_del -EXPORT_SYMBOL_GPL vmlinux 0x5a696339 crypto_shash_update +EXPORT_SYMBOL_GPL vmlinux 0x5a58918b pinctrl_find_gpio_range_from_pin EXPORT_SYMBOL_GPL vmlinux 0x5a6cdb52 nf_ct_zone_dflt -EXPORT_SYMBOL_GPL vmlinux 0x5a7716a3 __traceiter_devlink_trap_report -EXPORT_SYMBOL_GPL vmlinux 0x5a77dba8 xenbus_dev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x5a6fc7be usb_add_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0x5a76b963 l3mdev_table_lookup_register EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify -EXPORT_SYMBOL_GPL vmlinux 0x5a83c0d0 usb_get_phy -EXPORT_SYMBOL_GPL vmlinux 0x5a8ec2e5 gpiod_is_active_low -EXPORT_SYMBOL_GPL vmlinux 0x5a947c9f mtk_pinconf_drive_get -EXPORT_SYMBOL_GPL vmlinux 0x5a96470d usb_hcd_setup_local_mem +EXPORT_SYMBOL_GPL vmlinux 0x5a894060 housekeeping_affine +EXPORT_SYMBOL_GPL vmlinux 0x5a8a9dc2 da9052_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0x5a93d4d8 fat_time_fat2unix +EXPORT_SYMBOL_GPL vmlinux 0x5a96e561 ata_pci_bmdma_clear_simplex EXPORT_SYMBOL_GPL vmlinux 0x5aa70984 acpi_reduced_hardware +EXPORT_SYMBOL_GPL vmlinux 0x5aa83c3c spi_new_ancillary_device EXPORT_SYMBOL_GPL vmlinux 0x5ab09745 edac_get_owner -EXPORT_SYMBOL_GPL vmlinux 0x5ab4604e wwan_create_port -EXPORT_SYMBOL_GPL vmlinux 0x5abcdae1 page_cache_ra_unbounded -EXPORT_SYMBOL_GPL vmlinux 0x5ac042fb vp_modern_map_vq_notify -EXPORT_SYMBOL_GPL vmlinux 0x5ae89a20 fsl_mc_bus_dpni_type -EXPORT_SYMBOL_GPL vmlinux 0x5b04ec01 mbox_chan_received_data -EXPORT_SYMBOL_GPL vmlinux 0x5b1030b5 tty_kopen_shared -EXPORT_SYMBOL_GPL vmlinux 0x5b1573f8 debugfs_create_blob -EXPORT_SYMBOL_GPL vmlinux 0x5b208891 ata_host_init +EXPORT_SYMBOL_GPL vmlinux 0x5ab928fb dev_pm_opp_get_opp_count +EXPORT_SYMBOL_GPL vmlinux 0x5abf0ff4 ata_sff_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0x5ad57642 fuse_simple_background +EXPORT_SYMBOL_GPL vmlinux 0x5ad645f4 crypto_type_has_alg +EXPORT_SYMBOL_GPL vmlinux 0x5aeefc67 ohci_resume +EXPORT_SYMBOL_GPL vmlinux 0x5b04aff0 usb_phy_set_charger_state +EXPORT_SYMBOL_GPL vmlinux 0x5b19f4fd mpc8xxx_spi_tx_buf_u8 EXPORT_SYMBOL_GPL vmlinux 0x5b21ceff ring_buffer_iter_peek -EXPORT_SYMBOL_GPL vmlinux 0x5b35fcff user_update -EXPORT_SYMBOL_GPL vmlinux 0x5b4df525 dev_queue_xmit_nit -EXPORT_SYMBOL_GPL vmlinux 0x5b529dd4 sb800_prefetch -EXPORT_SYMBOL_GPL vmlinux 0x5b6660a6 regulator_desc_list_voltage_linear_range -EXPORT_SYMBOL_GPL vmlinux 0x5b6842af pm_relax +EXPORT_SYMBOL_GPL vmlinux 0x5b245af6 regmap_async_complete +EXPORT_SYMBOL_GPL vmlinux 0x5b3f5dae regmap_async_complete_cb +EXPORT_SYMBOL_GPL vmlinux 0x5b42c4cd nexthop_select_path +EXPORT_SYMBOL_GPL vmlinux 0x5b5e3d4f akcipher_register_instance EXPORT_SYMBOL_GPL vmlinux 0x5b6b0329 swiotlb_max_segment -EXPORT_SYMBOL_GPL vmlinux 0x5b6e6f98 power_supply_get_battery_info -EXPORT_SYMBOL_GPL vmlinux 0x5b8813ca edac_device_del_device -EXPORT_SYMBOL_GPL vmlinux 0x5b9320ee crypto_register_shashes -EXPORT_SYMBOL_GPL vmlinux 0x5b95b008 scsi_ioctl_block_when_processing_errors -EXPORT_SYMBOL_GPL vmlinux 0x5b9e6adf l3mdev_table_lookup_register +EXPORT_SYMBOL_GPL vmlinux 0x5b7e5c93 ata_pci_shutdown_one +EXPORT_SYMBOL_GPL vmlinux 0x5b811f1d usb_hcd_setup_local_mem +EXPORT_SYMBOL_GPL vmlinux 0x5b859e8e pinctrl_utils_add_map_configs +EXPORT_SYMBOL_GPL vmlinux 0x5babe8eb vp_modern_generation +EXPORT_SYMBOL_GPL vmlinux 0x5bad98b1 pm_clk_resume EXPORT_SYMBOL_GPL vmlinux 0x5bbdfa26 scatterwalk_ffwd EXPORT_SYMBOL_GPL vmlinux 0x5bc950fe regulator_irq_helper_cancel EXPORT_SYMBOL_GPL vmlinux 0x5bd0748f crypto_del_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x5bd3ac0b tpm2_get_tpm_pt +EXPORT_SYMBOL_GPL vmlinux 0x5bd1f4a7 hisi_clk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x5bd85959 __traceiter_sched_cpu_capacity_tp EXPORT_SYMBOL_GPL vmlinux 0x5bdae35b usb_phy_roothub_set_mode EXPORT_SYMBOL_GPL vmlinux 0x5bdbac4e rcu_unexpedite_gp -EXPORT_SYMBOL_GPL vmlinux 0x5bea2194 ata_pci_device_suspend +EXPORT_SYMBOL_GPL vmlinux 0x5c0729bf usb_hub_clear_tt_buffer EXPORT_SYMBOL_GPL vmlinux 0x5c0eaf31 acpi_dev_resource_interrupt EXPORT_SYMBOL_GPL vmlinux 0x5c0f77ce HYPERVISOR_platform_op_raw +EXPORT_SYMBOL_GPL vmlinux 0x5c22e10f spi_statistics_add_transfer_stats EXPORT_SYMBOL_GPL vmlinux 0x5c2bcd37 bpf_warn_invalid_xdp_action EXPORT_SYMBOL_GPL vmlinux 0x5c3bbd06 __SCK__tp_func_mc_event -EXPORT_SYMBOL_GPL vmlinux 0x5c4141ea __platform_create_bundle -EXPORT_SYMBOL_GPL vmlinux 0x5c51c9e5 sysfs_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0x5c4029d3 ata_acpi_stm +EXPORT_SYMBOL_GPL vmlinux 0x5c44a10d ata_sff_exec_command +EXPORT_SYMBOL_GPL vmlinux 0x5c4d671f sk_msg_trim EXPORT_SYMBOL_GPL vmlinux 0x5c5a1b16 tick_broadcast_control EXPORT_SYMBOL_GPL vmlinux 0x5c5c6826 phy_10gbit_full_features -EXPORT_SYMBOL_GPL vmlinux 0x5c645131 css_next_descendant_pre -EXPORT_SYMBOL_GPL vmlinux 0x5c7b3dcc __traceiter_pelt_cfs_tp -EXPORT_SYMBOL_GPL vmlinux 0x5c7e3a25 scmi_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x5c623164 regmap_multi_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x5c76dd9a dev_pm_qos_flags +EXPORT_SYMBOL_GPL vmlinux 0x5c79c366 dm_internal_resume_fast +EXPORT_SYMBOL_GPL vmlinux 0x5c7a1dff regmap_field_read +EXPORT_SYMBOL_GPL vmlinux 0x5c7e13cf pci_generic_config_read32 EXPORT_SYMBOL_GPL vmlinux 0x5c82016e __SCK__tp_func_napi_poll -EXPORT_SYMBOL_GPL vmlinux 0x5c86017a pci_epc_mem_init +EXPORT_SYMBOL_GPL vmlinux 0x5c8b7bed dev_pm_opp_put_clkname +EXPORT_SYMBOL_GPL vmlinux 0x5c995992 exportfs_decode_fh_raw +EXPORT_SYMBOL_GPL vmlinux 0x5ca4333a ata_sff_drain_fifo EXPORT_SYMBOL_GPL vmlinux 0x5cab9945 unregister_xenbus_watch -EXPORT_SYMBOL_GPL vmlinux 0x5cad2a4d usb_mon_register +EXPORT_SYMBOL_GPL vmlinux 0x5cad8405 tpm1_do_selftest EXPORT_SYMBOL_GPL vmlinux 0x5cad8fc3 power_supply_ocv2cap_simple -EXPORT_SYMBOL_GPL vmlinux 0x5cad98c9 __sock_recv_ts_and_drops -EXPORT_SYMBOL_GPL vmlinux 0x5cb273e4 hwmon_notify_event -EXPORT_SYMBOL_GPL vmlinux 0x5cb9c7ae device_create -EXPORT_SYMBOL_GPL vmlinux 0x5cbb86cf iommu_sva_alloc_pasid -EXPORT_SYMBOL_GPL vmlinux 0x5cbf052a __traceiter_neigh_cleanup_and_release -EXPORT_SYMBOL_GPL vmlinux 0x5ce47282 regmap_field_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0x5cbadb5f dev_pm_qos_hide_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0x5cc9c01b devm_regulator_get +EXPORT_SYMBOL_GPL vmlinux 0x5ccbad0f ata_sas_port_suspend EXPORT_SYMBOL_GPL vmlinux 0x5cede0a7 xdp_flush_frame_bulk -EXPORT_SYMBOL_GPL vmlinux 0x5cf9f240 disk_uevent -EXPORT_SYMBOL_GPL vmlinux 0x5d018547 acpiphp_unregister_attention -EXPORT_SYMBOL_GPL vmlinux 0x5d084861 thermal_zone_device_enable -EXPORT_SYMBOL_GPL vmlinux 0x5d1511ab crypto_unregister_acomps -EXPORT_SYMBOL_GPL vmlinux 0x5d15828c to_nvdimm +EXPORT_SYMBOL_GPL vmlinux 0x5cf01bdf tegra_bpmp_put +EXPORT_SYMBOL_GPL vmlinux 0x5cf266aa devm_devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0x5d0b8395 dev_attr_sw_activity EXPORT_SYMBOL_GPL vmlinux 0x5d17148b apei_write -EXPORT_SYMBOL_GPL vmlinux 0x5d184a42 scsi_autopm_put_device -EXPORT_SYMBOL_GPL vmlinux 0x5d214fdf ata_sas_port_start +EXPORT_SYMBOL_GPL vmlinux 0x5d219bf3 dst_cache_set_ip4 EXPORT_SYMBOL_GPL vmlinux 0x5d2aa5fb rhashtable_walk_peek EXPORT_SYMBOL_GPL vmlinux 0x5d2bc42a reset_control_rearm -EXPORT_SYMBOL_GPL vmlinux 0x5d327ef1 skb_zerocopy_iter_dgram -EXPORT_SYMBOL_GPL vmlinux 0x5d493358 sync_page_io -EXPORT_SYMBOL_GPL vmlinux 0x5d4c8343 divider_determine_rate -EXPORT_SYMBOL_GPL vmlinux 0x5d4dad7b irq_domain_disconnect_hierarchy -EXPORT_SYMBOL_GPL vmlinux 0x5d568305 vp_modern_remove -EXPORT_SYMBOL_GPL vmlinux 0x5d8312f0 fwnode_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x5d537298 pci_epc_get_features +EXPORT_SYMBOL_GPL vmlinux 0x5d575930 lp8788_read_multi_bytes +EXPORT_SYMBOL_GPL vmlinux 0x5d6d5e22 tty_buffer_unlock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x5d8452b6 debugfs_create_u8 EXPORT_SYMBOL_GPL vmlinux 0x5d8476d3 bpf_sk_storage_diag_alloc -EXPORT_SYMBOL_GPL vmlinux 0x5d8f8a3c devres_release -EXPORT_SYMBOL_GPL vmlinux 0x5d91e866 udp_cmsg_send -EXPORT_SYMBOL_GPL vmlinux 0x5d96fc75 usb_phy_roothub_resume +EXPORT_SYMBOL_GPL vmlinux 0x5d8b6dde mbox_chan_received_data +EXPORT_SYMBOL_GPL vmlinux 0x5d8e61f4 css_next_descendant_pre +EXPORT_SYMBOL_GPL vmlinux 0x5d8f931a bgmac_enet_probe +EXPORT_SYMBOL_GPL vmlinux 0x5d96142b nfs_ssc_register +EXPORT_SYMBOL_GPL vmlinux 0x5d9a0da0 pci_user_write_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x5da471ee amba_device_alloc EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact -EXPORT_SYMBOL_GPL vmlinux 0x5db45af9 ata_cable_unknown +EXPORT_SYMBOL_GPL vmlinux 0x5db10c86 wm8350_block_read +EXPORT_SYMBOL_GPL vmlinux 0x5dbd6637 rt_mutex_lock_interruptible EXPORT_SYMBOL_GPL vmlinux 0x5de412cd k3_ringacc_ring_push -EXPORT_SYMBOL_GPL vmlinux 0x5de581ea split_page -EXPORT_SYMBOL_GPL vmlinux 0x5de9a781 __rio_local_read_config_32 -EXPORT_SYMBOL_GPL vmlinux 0x5dfa3907 regmap_async_complete -EXPORT_SYMBOL_GPL vmlinux 0x5dfca3cd devm_release_action -EXPORT_SYMBOL_GPL vmlinux 0x5dfd4c9f cpufreq_generic_init -EXPORT_SYMBOL_GPL vmlinux 0x5e0d3f91 elv_rqhash_del +EXPORT_SYMBOL_GPL vmlinux 0x5df6bcf1 __of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0x5dfb6908 mctrl_gpio_init +EXPORT_SYMBOL_GPL vmlinux 0x5dfeecdd virtqueue_get_buf EXPORT_SYMBOL_GPL vmlinux 0x5e173309 cpu_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x5e2909f8 iomap_readahead -EXPORT_SYMBOL_GPL vmlinux 0x5e319c52 usb_disable_xhci_ports -EXPORT_SYMBOL_GPL vmlinux 0x5e3b26f3 __traceiter_add_device_to_group -EXPORT_SYMBOL_GPL vmlinux 0x5e3b5aa6 regulator_desc_list_voltage_linear -EXPORT_SYMBOL_GPL vmlinux 0x5e3e6958 cpufreq_freq_attr_scaling_available_freqs -EXPORT_SYMBOL_GPL vmlinux 0x5e5083ec mtk_pinconf_drive_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x5e2737d7 kvm_write_guest_offset_cached +EXPORT_SYMBOL_GPL vmlinux 0x5e3319a2 crypto_shash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x5e3c07a6 irq_gc_ack_set_bit +EXPORT_SYMBOL_GPL vmlinux 0x5e4b67bb devm_pm_opp_of_add_table EXPORT_SYMBOL_GPL vmlinux 0x5e515be6 ktime_get_ts64 -EXPORT_SYMBOL_GPL vmlinux 0x5e531176 __tcp_send_ack +EXPORT_SYMBOL_GPL vmlinux 0x5e55497f em_pd_get +EXPORT_SYMBOL_GPL vmlinux 0x5e5f2de0 blk_mq_rdma_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x5e67a267 cpuidle_get_cpu_driver +EXPORT_SYMBOL_GPL vmlinux 0x5e67a701 __traceiter_neigh_event_send_dead +EXPORT_SYMBOL_GPL vmlinux 0x5e73eb95 dev_pm_opp_of_remove_table EXPORT_SYMBOL_GPL vmlinux 0x5e76bb57 k3_ringacc_ring_get_size +EXPORT_SYMBOL_GPL vmlinux 0x5e779d2d pci_dev_run_wake EXPORT_SYMBOL_GPL vmlinux 0x5e798ffb divider_get_val +EXPORT_SYMBOL_GPL vmlinux 0x5e7d1bef ip6_datagram_connect_v6_only EXPORT_SYMBOL_GPL vmlinux 0x5e85415b ring_buffer_consume -EXPORT_SYMBOL_GPL vmlinux 0x5eac2568 icc_set_tag -EXPORT_SYMBOL_GPL vmlinux 0x5eace50d scsi_free_sgtables +EXPORT_SYMBOL_GPL vmlinux 0x5e8f4c11 of_irq_parse_one +EXPORT_SYMBOL_GPL vmlinux 0x5e9b36cf phy_exit +EXPORT_SYMBOL_GPL vmlinux 0x5eaa1991 shmem_read_mapping_page_gfp 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 0x5ebb1f29 ata_sff_error_handler EXPORT_SYMBOL_GPL vmlinux 0x5ec2319a mtk_mutex_unprepare +EXPORT_SYMBOL_GPL vmlinux 0x5ec4f7a0 pinmux_generic_add_function EXPORT_SYMBOL_GPL vmlinux 0x5ec62549 ata_dev_classify EXPORT_SYMBOL_GPL vmlinux 0x5ecdcf90 ti_sci_get_free_resource -EXPORT_SYMBOL_GPL vmlinux 0x5ed57e24 usb_control_msg_send -EXPORT_SYMBOL_GPL vmlinux 0x5ee25456 powercap_register_control_type -EXPORT_SYMBOL_GPL vmlinux 0x5eeae24e dma_alloc_pages -EXPORT_SYMBOL_GPL vmlinux 0x5ef4ef4a devlink_dpipe_table_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5f0c170f usb_asmedia_modifyflowcontrol -EXPORT_SYMBOL_GPL vmlinux 0x5f1ab070 add_disk_randomness -EXPORT_SYMBOL_GPL vmlinux 0x5f220627 mmc_cmdq_disable +EXPORT_SYMBOL_GPL vmlinux 0x5edaf71d ohci_setup +EXPORT_SYMBOL_GPL vmlinux 0x5ef68a40 inet6_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0x5f05abf3 rio_mport_get_efb +EXPORT_SYMBOL_GPL vmlinux 0x5f0ec22a stmpe_disable +EXPORT_SYMBOL_GPL vmlinux 0x5f1dff5b file_ra_state_init EXPORT_SYMBOL_GPL vmlinux 0x5f23e3fa insert_resource -EXPORT_SYMBOL_GPL vmlinux 0x5f2c210b devlink_trap_policers_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5f2e2f7f fwnode_get_name -EXPORT_SYMBOL_GPL vmlinux 0x5f42d1fe spi_split_transfers_maxsize -EXPORT_SYMBOL_GPL vmlinux 0x5f4e7dae fuse_conn_init -EXPORT_SYMBOL_GPL vmlinux 0x5f594cec devm_rtc_nvmem_register -EXPORT_SYMBOL_GPL vmlinux 0x5f5cb45c fib6_get_table +EXPORT_SYMBOL_GPL vmlinux 0x5f2567d7 gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0x5f283e15 blk_mq_freeze_queue_wait +EXPORT_SYMBOL_GPL vmlinux 0x5f30ec49 usb_control_msg EXPORT_SYMBOL_GPL vmlinux 0x5f6f1e9e dax_get_private -EXPORT_SYMBOL_GPL vmlinux 0x5f71653e tpm_pm_suspend -EXPORT_SYMBOL_GPL vmlinux 0x5f76c46d nfs_ssc_register -EXPORT_SYMBOL_GPL vmlinux 0x5f772d17 dax_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5f7d2d34 of_platform_device_destroy +EXPORT_SYMBOL_GPL vmlinux 0x5f85a3f2 iommu_report_device_fault +EXPORT_SYMBOL_GPL vmlinux 0x5f958ef7 fuse_dev_install +EXPORT_SYMBOL_GPL vmlinux 0x5f9ea50c of_clk_parent_fill EXPORT_SYMBOL_GPL vmlinux 0x5fa625ed mpi_ec_mul_point -EXPORT_SYMBOL_GPL vmlinux 0x5fb5a9db gpiod_direction_output EXPORT_SYMBOL_GPL vmlinux 0x5fb8848b halt_poll_ns_grow_start -EXPORT_SYMBOL_GPL vmlinux 0x5fbb64b7 inet_twsk_alloc -EXPORT_SYMBOL_GPL vmlinux 0x5fc1b19b crypto_alloc_aead -EXPORT_SYMBOL_GPL vmlinux 0x5fcd0c02 ata_link_offline -EXPORT_SYMBOL_GPL vmlinux 0x5fcd479b wm8350_device_init -EXPORT_SYMBOL_GPL vmlinux 0x5fd919aa gpiochip_add_pingroup_range -EXPORT_SYMBOL_GPL vmlinux 0x5fe32681 shmem_file_setup -EXPORT_SYMBOL_GPL vmlinux 0x5feb5041 device_get_child_node_count -EXPORT_SYMBOL_GPL vmlinux 0x5ff8bec4 xenbus_dev_resume -EXPORT_SYMBOL_GPL vmlinux 0x60031a8b devm_namespace_disable +EXPORT_SYMBOL_GPL vmlinux 0x5fc87d5a usb_hcd_platform_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x5fd1db16 iommu_iova_to_phys +EXPORT_SYMBOL_GPL vmlinux 0x5fd3daff xhci_run +EXPORT_SYMBOL_GPL vmlinux 0x5fdb5698 dev_get_regmap +EXPORT_SYMBOL_GPL vmlinux 0x5fdeb223 irq_find_matching_fwspec +EXPORT_SYMBOL_GPL vmlinux 0x5fdfcd57 __tracepoint_pelt_thermal_tp +EXPORT_SYMBOL_GPL vmlinux 0x5fe029e7 usb_sg_wait +EXPORT_SYMBOL_GPL vmlinux 0x5fed442d class_destroy +EXPORT_SYMBOL_GPL vmlinux 0x5ffd2604 usb_get_maximum_speed +EXPORT_SYMBOL_GPL vmlinux 0x6001d3aa pci_sriov_configure_simple +EXPORT_SYMBOL_GPL vmlinux 0x6005cfd4 ata_sff_dev_classify EXPORT_SYMBOL_GPL vmlinux 0x60069ee1 inet_ehash_locks_alloc -EXPORT_SYMBOL_GPL vmlinux 0x6007eb64 mmu_interval_notifier_insert EXPORT_SYMBOL_GPL vmlinux 0x60091316 clk_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x600f416d gpiochip_generic_request -EXPORT_SYMBOL_GPL vmlinux 0x60203f2d stmpe_block_write +EXPORT_SYMBOL_GPL vmlinux 0x600f0c84 devlink_dpipe_table_resource_set +EXPORT_SYMBOL_GPL vmlinux 0x6013fff1 devm_phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0x601f0448 perf_event_period +EXPORT_SYMBOL_GPL vmlinux 0x60258b18 fscrypt_fname_siphash +EXPORT_SYMBOL_GPL vmlinux 0x603827d5 aead_init_geniv EXPORT_SYMBOL_GPL vmlinux 0x603d0d51 acpi_os_map_iomem EXPORT_SYMBOL_GPL vmlinux 0x60442822 phys_to_mach EXPORT_SYMBOL_GPL vmlinux 0x604722fd devices_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x604a6ff9 tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x605aa6f4 virtio_add_status +EXPORT_SYMBOL_GPL vmlinux 0x605b3300 crypto_default_rng EXPORT_SYMBOL_GPL vmlinux 0x605d5bfa cache_line_size -EXPORT_SYMBOL_GPL vmlinux 0x6066d5e5 crypto_larval_kill -EXPORT_SYMBOL_GPL vmlinux 0x6075ae68 imx_unregister_hw_clocks +EXPORT_SYMBOL_GPL vmlinux 0x6064d735 dma_async_device_channel_register +EXPORT_SYMBOL_GPL vmlinux 0x60656c00 clk_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0x6066186d iommu_capable +EXPORT_SYMBOL_GPL vmlinux 0x606e2219 device_get_next_child_node EXPORT_SYMBOL_GPL vmlinux 0x607c4683 devlink_info_version_fixed_put -EXPORT_SYMBOL_GPL vmlinux 0x60860d43 __list_lru_init EXPORT_SYMBOL_GPL vmlinux 0x6091797f synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0x609463e7 perf_event_pause -EXPORT_SYMBOL_GPL vmlinux 0x609d0e17 hisi_uncore_pmu_enable +EXPORT_SYMBOL_GPL vmlinux 0x609b423a regulator_set_voltage_time_sel +EXPORT_SYMBOL_GPL vmlinux 0x609b76a2 phy_speed_down +EXPORT_SYMBOL_GPL vmlinux 0x609f23e6 mtk_pinconf_bias_set +EXPORT_SYMBOL_GPL vmlinux 0x60a121ca ata_sff_port_ops EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier EXPORT_SYMBOL_GPL vmlinux 0x60a32ea9 pm_power_off -EXPORT_SYMBOL_GPL vmlinux 0x60e309dd devlink_param_publish -EXPORT_SYMBOL_GPL vmlinux 0x60e42f2a find_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x60b3ffcb dm_accept_partial_bio +EXPORT_SYMBOL_GPL vmlinux 0x60cd747f of_clk_hw_simple_get +EXPORT_SYMBOL_GPL vmlinux 0x60cecacd perf_event_pause +EXPORT_SYMBOL_GPL vmlinux 0x60d015bf mddev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x60dccd1f tty_port_register_device_serdev EXPORT_SYMBOL_GPL vmlinux 0x60ebc96f ring_buffer_read_prepare -EXPORT_SYMBOL_GPL vmlinux 0x60edea45 xdp_return_frame +EXPORT_SYMBOL_GPL vmlinux 0x60f8bb1a kstrdup_quotable_cmdline +EXPORT_SYMBOL_GPL vmlinux 0x60f93ecf rio_add_device EXPORT_SYMBOL_GPL vmlinux 0x60f99e1b cppc_set_perf -EXPORT_SYMBOL_GPL vmlinux 0x61033095 anon_transport_class_unregister -EXPORT_SYMBOL_GPL vmlinux 0x61079def edac_mc_free -EXPORT_SYMBOL_GPL vmlinux 0x610d2586 of_clk_get_from_provider -EXPORT_SYMBOL_GPL vmlinux 0x61110483 crypto_skcipher_setkey -EXPORT_SYMBOL_GPL vmlinux 0x6117e41b bpf_map_put +EXPORT_SYMBOL_GPL vmlinux 0x60fea63e clk_fractional_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0x611af7ab fs_kobj EXPORT_SYMBOL_GPL vmlinux 0x611cfa85 klist_add_tail EXPORT_SYMBOL_GPL vmlinux 0x6129fb93 sfp_remove_phy EXPORT_SYMBOL_GPL vmlinux 0x612bfd89 errno_to_blk_status -EXPORT_SYMBOL_GPL vmlinux 0x6132b73d vfs_removexattr -EXPORT_SYMBOL_GPL vmlinux 0x613f929d ata_pci_sff_init_one -EXPORT_SYMBOL_GPL vmlinux 0x6143a0a4 icc_link_create +EXPORT_SYMBOL_GPL vmlinux 0x6142b9d6 devfreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x61455814 gpiod_put EXPORT_SYMBOL_GPL vmlinux 0x614adcb7 of_overlay_remove_all -EXPORT_SYMBOL_GPL vmlinux 0x614cc167 pci_epf_destroy -EXPORT_SYMBOL_GPL vmlinux 0x6151611f iommu_domain_free -EXPORT_SYMBOL_GPL vmlinux 0x6152d34d tty_get_pgrp EXPORT_SYMBOL_GPL vmlinux 0x615beeb5 __cpuhp_state_add_instance EXPORT_SYMBOL_GPL vmlinux 0x615d3447 kernel_read_file_from_path -EXPORT_SYMBOL_GPL vmlinux 0x61676185 genphy_c45_pma_suspend -EXPORT_SYMBOL_GPL vmlinux 0x6175f35a acpi_device_modalias +EXPORT_SYMBOL_GPL vmlinux 0x616441d4 meson_clk_dualdiv_ro_ops EXPORT_SYMBOL_GPL vmlinux 0x617b026c hwrng_register EXPORT_SYMBOL_GPL vmlinux 0x6181e79f timerqueue_add -EXPORT_SYMBOL_GPL vmlinux 0x61856f93 of_pci_range_parser_init -EXPORT_SYMBOL_GPL vmlinux 0x61920c0b ata_sas_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0x618f1363 device_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x61910190 phy_set_speed +EXPORT_SYMBOL_GPL vmlinux 0x6191e8fe ahci_platform_disable_clks +EXPORT_SYMBOL_GPL vmlinux 0x6192136b devm_memremap_pages +EXPORT_SYMBOL_GPL vmlinux 0x6194c940 dprc_setup 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 0x619fc148 device_show_ulong +EXPORT_SYMBOL_GPL vmlinux 0x61a920f6 nd_cmd_out_size EXPORT_SYMBOL_GPL vmlinux 0x61ae1d2d xas_pause -EXPORT_SYMBOL_GPL vmlinux 0x61ba4ef8 kvm_io_bus_write EXPORT_SYMBOL_GPL vmlinux 0x61c1ca29 __SCK__tp_func_add_device_to_group -EXPORT_SYMBOL_GPL vmlinux 0x61c8817a pci_epc_unmap_addr -EXPORT_SYMBOL_GPL vmlinux 0x61d7410a serial8250_rx_chars -EXPORT_SYMBOL_GPL vmlinux 0x61de9a3f clean_record_shared_mapping_range +EXPORT_SYMBOL_GPL vmlinux 0x61c4591b clk_hw_unregister_divider +EXPORT_SYMBOL_GPL vmlinux 0x61c73f4f device_release_driver +EXPORT_SYMBOL_GPL vmlinux 0x61d4b76f efivars_register +EXPORT_SYMBOL_GPL vmlinux 0x61d8a741 regmap_multi_reg_write_bypassed +EXPORT_SYMBOL_GPL vmlinux 0x61dbe8fd pci_bus_resource_n EXPORT_SYMBOL_GPL vmlinux 0x61e30b70 init_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0x61e53cfe rio_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x61f40470 xhci_ext_cap_init EXPORT_SYMBOL_GPL vmlinux 0x61f67c92 phy_gbit_features_array +EXPORT_SYMBOL_GPL vmlinux 0x6206bf41 ip6_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x620e75a7 mmu_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6228e470 gen10g_config_aneg EXPORT_SYMBOL_GPL vmlinux 0x622c7922 register_oom_notifier -EXPORT_SYMBOL_GPL vmlinux 0x622ed345 ata_msleep +EXPORT_SYMBOL_GPL vmlinux 0x622ecab8 syscon_regmap_lookup_by_phandle_args EXPORT_SYMBOL_GPL vmlinux 0x62377a7b blk_io_schedule EXPORT_SYMBOL_GPL vmlinux 0x6246a629 synchronize_rcu_tasks_trace -EXPORT_SYMBOL_GPL vmlinux 0x62475be8 device_show_bool -EXPORT_SYMBOL_GPL vmlinux 0x624ee13b of_irq_parse_raw -EXPORT_SYMBOL_GPL vmlinux 0x6255a018 wait_on_page_writeback +EXPORT_SYMBOL_GPL vmlinux 0x624b1bee device_match_name EXPORT_SYMBOL_GPL vmlinux 0x6257dda7 clk_rate_exclusive_get EXPORT_SYMBOL_GPL vmlinux 0x6259d291 clk_restore_context -EXPORT_SYMBOL_GPL vmlinux 0x62612b67 pl08x_filter_id -EXPORT_SYMBOL_GPL vmlinux 0x629ea715 crypto_unregister_shash -EXPORT_SYMBOL_GPL vmlinux 0x62a48efe xenbus_grant_ring -EXPORT_SYMBOL_GPL vmlinux 0x62a5b6d0 dma_max_mapping_size -EXPORT_SYMBOL_GPL vmlinux 0x62a8897d akcipher_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x62ada7df ip6_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0x625aa52b regulator_set_voltage_sel_pickable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x625b29ee fat_dir_empty +EXPORT_SYMBOL_GPL vmlinux 0x626effb6 pm_runtime_irq_safe +EXPORT_SYMBOL_GPL vmlinux 0x626fdf63 dma_buf_put +EXPORT_SYMBOL_GPL vmlinux 0x6270fe2d dma_buf_map_attachment +EXPORT_SYMBOL_GPL vmlinux 0x6274a56c __devm_clk_hw_register_mux +EXPORT_SYMBOL_GPL vmlinux 0x6283e4f0 regmap_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x6283e5b0 ata_do_dev_read_id +EXPORT_SYMBOL_GPL vmlinux 0x6290430d gpiod_set_transitory +EXPORT_SYMBOL_GPL vmlinux 0x629230b5 __efivar_entry_delete +EXPORT_SYMBOL_GPL vmlinux 0x62acfcd0 pingv6_prot EXPORT_SYMBOL_GPL vmlinux 0x62bb09bf clocks_calc_mult_shift -EXPORT_SYMBOL_GPL vmlinux 0x62cd4901 ata_bmdma_port_intr -EXPORT_SYMBOL_GPL vmlinux 0x62db690c meson_clk_mpll_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0x62e1ebef fsl_mc_object_free -EXPORT_SYMBOL_GPL vmlinux 0x62f323ed fuse_free_conn -EXPORT_SYMBOL_GPL vmlinux 0x62f95527 subsys_find_device_by_id -EXPORT_SYMBOL_GPL vmlinux 0x630236be sdio_align_size +EXPORT_SYMBOL_GPL vmlinux 0x62c8cadd xdp_rxq_info_unreg +EXPORT_SYMBOL_GPL vmlinux 0x62d4a1d9 driver_create_file +EXPORT_SYMBOL_GPL vmlinux 0x62f668dd xfrm_audit_state_icvfail +EXPORT_SYMBOL_GPL vmlinux 0x62fa81c5 filemap_range_needs_writeback EXPORT_SYMBOL_GPL vmlinux 0x63150e06 clk_get_parent -EXPORT_SYMBOL_GPL vmlinux 0x6317c7a1 cgroup_get_from_path EXPORT_SYMBOL_GPL vmlinux 0x6318757f mdio_mux_uninit EXPORT_SYMBOL_GPL vmlinux 0x63197685 s2idle_wake -EXPORT_SYMBOL_GPL vmlinux 0x633cd8e2 pinctrl_dev_get_name -EXPORT_SYMBOL_GPL vmlinux 0x63458cdf dma_vmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x631e71ae gfn_to_pfn +EXPORT_SYMBOL_GPL vmlinux 0x6329a88d acpi_dev_gpio_irq_get_by +EXPORT_SYMBOL_GPL vmlinux 0x6349370a dev_pm_opp_get_max_transition_latency EXPORT_SYMBOL_GPL vmlinux 0x634b9d42 __SCK__tp_func_block_unplug -EXPORT_SYMBOL_GPL vmlinux 0x634d1f69 rio_route_get_entry -EXPORT_SYMBOL_GPL vmlinux 0x634da2bb gpiod_set_value -EXPORT_SYMBOL_GPL vmlinux 0x634ec459 irq_remove_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x63538593 kick_process -EXPORT_SYMBOL_GPL vmlinux 0x6354e5cd pciserial_init_ports -EXPORT_SYMBOL_GPL vmlinux 0x636b8906 of_reconfig_get_state_change -EXPORT_SYMBOL_GPL vmlinux 0x63702200 tps65912_device_init -EXPORT_SYMBOL_GPL vmlinux 0x6374bcb7 fat_build_inode -EXPORT_SYMBOL_GPL vmlinux 0x637a91de dev_pm_opp_detach_genpd +EXPORT_SYMBOL_GPL vmlinux 0x634fa700 iopf_queue_add_device +EXPORT_SYMBOL_GPL vmlinux 0x63531751 devlink_dpipe_table_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6363ddc3 devm_power_supply_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x63642b0a irq_domain_simple_ops +EXPORT_SYMBOL_GPL vmlinux 0x6367f4ed blk_mq_unquiesce_queue +EXPORT_SYMBOL_GPL vmlinux 0x63728383 rockchip_pcie_get_phys +EXPORT_SYMBOL_GPL vmlinux 0x6378a4fa usb_reset_configuration EXPORT_SYMBOL_GPL vmlinux 0x638aff11 proc_douintvec_minmax -EXPORT_SYMBOL_GPL vmlinux 0x639149e9 mbox_client_txdone -EXPORT_SYMBOL_GPL vmlinux 0x63b50ff5 dm_post_suspending +EXPORT_SYMBOL_GPL vmlinux 0x639dbdbb devlink_port_type_clear +EXPORT_SYMBOL_GPL vmlinux 0x639ed462 kvm_release_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0x63b03528 iommu_uapi_sva_bind_gpasid +EXPORT_SYMBOL_GPL vmlinux 0x63b5dcf1 pm_clk_add_clk +EXPORT_SYMBOL_GPL vmlinux 0x63bd9fc3 tpm2_get_tpm_pt EXPORT_SYMBOL_GPL vmlinux 0x63c08029 clk_bulk_unprepare -EXPORT_SYMBOL_GPL vmlinux 0x63c615e8 ata_scsi_slave_config -EXPORT_SYMBOL_GPL vmlinux 0x63d26129 of_get_display_timings -EXPORT_SYMBOL_GPL vmlinux 0x63d4fe22 edac_mc_del_mc -EXPORT_SYMBOL_GPL vmlinux 0x63e6a343 fuse_dev_free -EXPORT_SYMBOL_GPL vmlinux 0x63e990d3 nvdimm_has_flush EXPORT_SYMBOL_GPL vmlinux 0x63ea80b3 cper_mem_err_type_str -EXPORT_SYMBOL_GPL vmlinux 0x63fea2bd nfs42_ssc_register -EXPORT_SYMBOL_GPL vmlinux 0x64038c32 platform_device_del -EXPORT_SYMBOL_GPL vmlinux 0x640b8c2d spi_controller_resume -EXPORT_SYMBOL_GPL vmlinux 0x640e167a page_cache_sync_ra -EXPORT_SYMBOL_GPL vmlinux 0x641a3047 devm_krealloc +EXPORT_SYMBOL_GPL vmlinux 0x63f38cc0 tpm_put_ops +EXPORT_SYMBOL_GPL vmlinux 0x6410174a pinctrl_get_group_pins +EXPORT_SYMBOL_GPL vmlinux 0x64189b51 pskb_put +EXPORT_SYMBOL_GPL vmlinux 0x641cf95f dst_cache_get +EXPORT_SYMBOL_GPL vmlinux 0x641eb6e2 devm_i2c_new_dummy_device +EXPORT_SYMBOL_GPL vmlinux 0x6420270a usb_unlocked_enable_lpm EXPORT_SYMBOL_GPL vmlinux 0x6427572b tegra210_clk_emc_dll_enable -EXPORT_SYMBOL_GPL vmlinux 0x642fb613 ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0x642ab8e1 pm_wakeup_ws_event +EXPORT_SYMBOL_GPL vmlinux 0x64302a0a adp5520_write EXPORT_SYMBOL_GPL vmlinux 0x643b06b0 zynqmp_pm_clock_setrate -EXPORT_SYMBOL_GPL vmlinux 0x643b1c1b __put_net -EXPORT_SYMBOL_GPL vmlinux 0x643d16d7 serial8250_do_get_mctrl -EXPORT_SYMBOL_GPL vmlinux 0x64407f5c input_ff_create -EXPORT_SYMBOL_GPL vmlinux 0x644120ec unregister_virtio_driver -EXPORT_SYMBOL_GPL vmlinux 0x644631c0 irq_chip_set_type_parent -EXPORT_SYMBOL_GPL vmlinux 0x644d609b __devm_pci_epc_create +EXPORT_SYMBOL_GPL vmlinux 0x64437388 devfreq_event_set_event +EXPORT_SYMBOL_GPL vmlinux 0x6448d0e1 phy_modify_changed +EXPORT_SYMBOL_GPL vmlinux 0x6449c865 gpiochip_irq_unmap +EXPORT_SYMBOL_GPL vmlinux 0x6458f408 psil_set_new_ep_config +EXPORT_SYMBOL_GPL vmlinux 0x645c55b3 vfs_lock_file EXPORT_SYMBOL_GPL vmlinux 0x64609d25 __tracepoint_devlink_trap_report -EXPORT_SYMBOL_GPL vmlinux 0x64640e58 tc3589x_block_read -EXPORT_SYMBOL_GPL vmlinux 0x646a0c76 crypto_alloc_kpp EXPORT_SYMBOL_GPL vmlinux 0x647537f3 pl320_ipc_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6477ed8d tty_register_device_attr -EXPORT_SYMBOL_GPL vmlinux 0x64831895 ip6_dst_lookup EXPORT_SYMBOL_GPL vmlinux 0x6485cd35 trace_print_bitmask_seq +EXPORT_SYMBOL_GPL vmlinux 0x648ceef9 dev_attr_unload_heads EXPORT_SYMBOL_GPL vmlinux 0x64925270 __dax_synchronous -EXPORT_SYMBOL_GPL vmlinux 0x649c68c4 tty_set_termios -EXPORT_SYMBOL_GPL vmlinux 0x649d1d0c trace_array_put +EXPORT_SYMBOL_GPL vmlinux 0x649d90eb usb_get_dr_mode EXPORT_SYMBOL_GPL vmlinux 0x64a31445 mutex_lock_io +EXPORT_SYMBOL_GPL vmlinux 0x64a95f7a __clk_hw_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x64a9d29f device_remove_software_node EXPORT_SYMBOL_GPL vmlinux 0x64b71173 reserve_iova -EXPORT_SYMBOL_GPL vmlinux 0x64bf074b regulator_disable -EXPORT_SYMBOL_GPL vmlinux 0x64c00aaa get_task_mm -EXPORT_SYMBOL_GPL vmlinux 0x64c674cf devm_of_platform_populate -EXPORT_SYMBOL_GPL vmlinux 0x64ce3bcb ata_pio_need_iordy -EXPORT_SYMBOL_GPL vmlinux 0x64d017c6 xfrm_audit_state_add +EXPORT_SYMBOL_GPL vmlinux 0x64bbf4ac fscrypt_d_revalidate +EXPORT_SYMBOL_GPL vmlinux 0x64d271d4 otg_ulpi_create EXPORT_SYMBOL_GPL vmlinux 0x64d3cc4e xas_load EXPORT_SYMBOL_GPL vmlinux 0x64e27c4f synth_event_delete -EXPORT_SYMBOL_GPL vmlinux 0x64e969df ip_icmp_error_rfc4884 -EXPORT_SYMBOL_GPL vmlinux 0x64ed8142 relay_file_operations -EXPORT_SYMBOL_GPL vmlinux 0x64f2ad49 d_exchange EXPORT_SYMBOL_GPL vmlinux 0x64f36620 dax_flush -EXPORT_SYMBOL_GPL vmlinux 0x64f3b5fe open_related_ns EXPORT_SYMBOL_GPL vmlinux 0x64f74abf __tracepoint_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x64ff0492 fscrypt_get_symlink +EXPORT_SYMBOL_GPL vmlinux 0x6500c08b genphy_c45_pma_resume EXPORT_SYMBOL_GPL vmlinux 0x6502d9c2 xenbus_scanf -EXPORT_SYMBOL_GPL vmlinux 0x6508c79b devm_power_supply_register -EXPORT_SYMBOL_GPL vmlinux 0x651b6c37 pci_num_vf -EXPORT_SYMBOL_GPL vmlinux 0x651d9f2a device_property_read_string_array -EXPORT_SYMBOL_GPL vmlinux 0x652f8500 rockchip_pcie_enable_clocks +EXPORT_SYMBOL_GPL vmlinux 0x650e36e8 balloon_aops +EXPORT_SYMBOL_GPL vmlinux 0x6521728f fat_alloc_new_dir +EXPORT_SYMBOL_GPL vmlinux 0x6524a511 __bio_crypt_clone +EXPORT_SYMBOL_GPL vmlinux 0x65250024 task_user_regset_view +EXPORT_SYMBOL_GPL vmlinux 0x652675a5 pm_generic_resume_early +EXPORT_SYMBOL_GPL vmlinux 0x652e9b99 devlink_param_register EXPORT_SYMBOL_GPL vmlinux 0x6531a37f mpi_add +EXPORT_SYMBOL_GPL vmlinux 0x6531f9c3 gpiochip_line_is_open_source +EXPORT_SYMBOL_GPL vmlinux 0x65366c9e xfrm_dev_state_add +EXPORT_SYMBOL_GPL vmlinux 0x6537c6a0 crypto_hash_walk_done EXPORT_SYMBOL_GPL vmlinux 0x6545268e __tracepoint_neigh_cleanup_and_release -EXPORT_SYMBOL_GPL vmlinux 0x6547d1d4 of_devfreq_cooling_register_power -EXPORT_SYMBOL_GPL vmlinux 0x654995b4 mtk_pinconf_bias_set -EXPORT_SYMBOL_GPL vmlinux 0x655a1d93 nf_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0x6546601f exportfs_decode_fh EXPORT_SYMBOL_GPL vmlinux 0x655e4879 __irq_alloc_descs -EXPORT_SYMBOL_GPL vmlinux 0x6587b76d blk_poll -EXPORT_SYMBOL_GPL vmlinux 0x6596c755 rdev_get_dev -EXPORT_SYMBOL_GPL vmlinux 0x659ef102 ata_sas_tport_add -EXPORT_SYMBOL_GPL vmlinux 0x65a13a03 regulator_get_voltage_sel_pickable_regmap -EXPORT_SYMBOL_GPL vmlinux 0x65b1ade3 cpufreq_policy_transition_delay_us +EXPORT_SYMBOL_GPL vmlinux 0x65679ee2 devm_hwspin_lock_request_specific +EXPORT_SYMBOL_GPL vmlinux 0x657e0a60 pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0x659775d6 debugfs_create_x64 +EXPORT_SYMBOL_GPL vmlinux 0x6599385a usb_get_descriptor +EXPORT_SYMBOL_GPL vmlinux 0x65a10af4 perf_pmu_unregister +EXPORT_SYMBOL_GPL vmlinux 0x65a663a1 sdio_release_irq +EXPORT_SYMBOL_GPL vmlinux 0x65ac8d53 __reset_control_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x65c57323 extcon_set_property_capability +EXPORT_SYMBOL_GPL vmlinux 0x65c8e279 sysfs_remove_file_from_group EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x65cda9ae led_trigger_write +EXPORT_SYMBOL_GPL vmlinux 0x65da9acd xfrm_audit_state_notfound_simple EXPORT_SYMBOL_GPL vmlinux 0x65e01af9 __sync_icache_dcache -EXPORT_SYMBOL_GPL vmlinux 0x65ea12f1 addrconf_add_linklocal -EXPORT_SYMBOL_GPL vmlinux 0x65f166ac dev_xdp_prog_count -EXPORT_SYMBOL_GPL vmlinux 0x65fc3064 handle_level_irq -EXPORT_SYMBOL_GPL vmlinux 0x660b0c69 pci_assign_unassigned_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0x65e28b04 acpi_kobj +EXPORT_SYMBOL_GPL vmlinux 0x65fe95a7 fwnode_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x660968dc spi_slave_abort EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol -EXPORT_SYMBOL_GPL vmlinux 0x661ce31e device_property_read_u8_array -EXPORT_SYMBOL_GPL vmlinux 0x662bc952 dev_pm_opp_xlate_required_opp -EXPORT_SYMBOL_GPL vmlinux 0x662d71ed usb_altnum_to_altsetting -EXPORT_SYMBOL_GPL vmlinux 0x663185d0 regulator_set_current_limit_regmap +EXPORT_SYMBOL_GPL vmlinux 0x66285d2c __mmc_poll_for_busy +EXPORT_SYMBOL_GPL vmlinux 0x662db155 xfrm_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0x6633dfa7 nvdimm_region_notify EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity -EXPORT_SYMBOL_GPL vmlinux 0x6638b071 wp_shared_mapping_range +EXPORT_SYMBOL_GPL vmlinux 0x66370bae bio_alloc_kiocb +EXPORT_SYMBOL_GPL vmlinux 0x663824e3 powercap_unregister_control_type EXPORT_SYMBOL_GPL vmlinux 0x663bb448 devlink_fmsg_obj_nest_end -EXPORT_SYMBOL_GPL vmlinux 0x6642ca21 inet6_compat_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x6645d290 mctrl_gpio_init_noauto -EXPORT_SYMBOL_GPL vmlinux 0x664c1f2f input_ff_event +EXPORT_SYMBOL_GPL vmlinux 0x6644d2d7 dma_buf_move_notify EXPORT_SYMBOL_GPL vmlinux 0x664eb54a k3_ringacc_ring_reset_dma +EXPORT_SYMBOL_GPL vmlinux 0x665b9b51 sata_pmp_qc_defer_cmd_switch EXPORT_SYMBOL_GPL vmlinux 0x665e92a0 clk_set_duty_cycle -EXPORT_SYMBOL_GPL vmlinux 0x66657b66 regmap_fields_update_bits_base -EXPORT_SYMBOL_GPL vmlinux 0x666ac38c divider_ro_round_rate_parent -EXPORT_SYMBOL_GPL vmlinux 0x666cfa09 psil_set_new_ep_config -EXPORT_SYMBOL_GPL vmlinux 0x666d142a sysfs_remove_file_from_group -EXPORT_SYMBOL_GPL vmlinux 0x666f402b of_clk_get_parent_name -EXPORT_SYMBOL_GPL vmlinux 0x668382d7 device_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x66708117 regmap_fields_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0x667f9d4f debugfs_create_regset32 EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x6684e76a usb_get_status -EXPORT_SYMBOL_GPL vmlinux 0x6695c368 crypto_aead_setkey -EXPORT_SYMBOL_GPL vmlinux 0x66a64d2f raw_seq_start -EXPORT_SYMBOL_GPL vmlinux 0x66ab062f of_hwspin_lock_get_id -EXPORT_SYMBOL_GPL vmlinux 0x66af4e46 sdio_retune_release -EXPORT_SYMBOL_GPL vmlinux 0x66b7c416 ata_sff_exec_command +EXPORT_SYMBOL_GPL vmlinux 0x6689d81b encrypt_blob +EXPORT_SYMBOL_GPL vmlinux 0x66a05fa3 clockevents_config_and_register +EXPORT_SYMBOL_GPL vmlinux 0x66a44d6a iomap_bmap +EXPORT_SYMBOL_GPL vmlinux 0x66af1776 tps6586x_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0x66aff9ef __traceiter_sched_util_est_cfs_tp EXPORT_SYMBOL_GPL vmlinux 0x66b97421 sfp_link_up +EXPORT_SYMBOL_GPL vmlinux 0x66cdcee1 regmap_attach_dev +EXPORT_SYMBOL_GPL vmlinux 0x66d201d0 tpm_tis_resume +EXPORT_SYMBOL_GPL vmlinux 0x66d26caf kvm_read_guest_page EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr -EXPORT_SYMBOL_GPL vmlinux 0x66e79ead gfn_to_memslot -EXPORT_SYMBOL_GPL vmlinux 0x66ee8a63 gnttab_map_refs -EXPORT_SYMBOL_GPL vmlinux 0x66f0499d icc_node_add -EXPORT_SYMBOL_GPL vmlinux 0x66fa3d78 devlink_param_register -EXPORT_SYMBOL_GPL vmlinux 0x66fe0612 __fscrypt_prepare_lookup -EXPORT_SYMBOL_GPL vmlinux 0x6703c824 xenbus_probe_node -EXPORT_SYMBOL_GPL vmlinux 0x6704f7ae kvm_debugfs_dir -EXPORT_SYMBOL_GPL vmlinux 0x6705b62d fwnode_handle_put -EXPORT_SYMBOL_GPL vmlinux 0x670b3abd fs_dax_get_by_bdev -EXPORT_SYMBOL_GPL vmlinux 0x670ec009 debugfs_remove -EXPORT_SYMBOL_GPL vmlinux 0x67214ebc ata_port_wait_eh -EXPORT_SYMBOL_GPL vmlinux 0x6732f14e screen_glyph_unicode -EXPORT_SYMBOL_GPL vmlinux 0x673573b3 security_inode_setattr +EXPORT_SYMBOL_GPL vmlinux 0x66e49552 ncsi_vlan_rx_kill_vid +EXPORT_SYMBOL_GPL vmlinux 0x66ef1bdb __rt_mutex_init +EXPORT_SYMBOL_GPL vmlinux 0x66ff6851 gpiod_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x67147a53 udp4_lib_lookup EXPORT_SYMBOL_GPL vmlinux 0x6735d56e tcp_ca_get_name_by_key EXPORT_SYMBOL_GPL vmlinux 0x6739a503 balloon_set_new_target -EXPORT_SYMBOL_GPL vmlinux 0x67412d28 tcp_abort EXPORT_SYMBOL_GPL vmlinux 0x67429c91 __SCK__tp_func_block_bio_remap -EXPORT_SYMBOL_GPL vmlinux 0x6743813a devres_for_each_res -EXPORT_SYMBOL_GPL vmlinux 0x674a9168 platform_get_irq_optional -EXPORT_SYMBOL_GPL vmlinux 0x674ba9a3 devm_clk_register -EXPORT_SYMBOL_GPL vmlinux 0x674c00d0 mdiobus_modify -EXPORT_SYMBOL_GPL vmlinux 0x674f7ed4 edac_mc_add_mc_with_groups -EXPORT_SYMBOL_GPL vmlinux 0x675fd6af kthread_flush_worker +EXPORT_SYMBOL_GPL vmlinux 0x67478ab6 iommu_dev_enable_feature +EXPORT_SYMBOL_GPL vmlinux 0x675bdd81 devlink_dpipe_match_put +EXPORT_SYMBOL_GPL vmlinux 0x6762027b acomp_request_alloc +EXPORT_SYMBOL_GPL vmlinux 0x676540cc shmem_zero_setup EXPORT_SYMBOL_GPL vmlinux 0x676c688f k3_ringacc_ring_free -EXPORT_SYMBOL_GPL vmlinux 0x676e83af __bio_crypt_clone -EXPORT_SYMBOL_GPL vmlinux 0x678c0dd1 da903x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x6792a57f kstrdup_quotable_cmdline -EXPORT_SYMBOL_GPL vmlinux 0x67938ed2 fscrypt_ioctl_get_nonce +EXPORT_SYMBOL_GPL vmlinux 0x67737a76 cpufreq_cpu_put +EXPORT_SYMBOL_GPL vmlinux 0x677e9747 blk_insert_cloned_request +EXPORT_SYMBOL_GPL vmlinux 0x6786bdc9 fib_new_table +EXPORT_SYMBOL_GPL vmlinux 0x6788b066 inet_csk_get_port EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits -EXPORT_SYMBOL_GPL vmlinux 0x67b66c59 devres_close_group -EXPORT_SYMBOL_GPL vmlinux 0x67c72f1e rio_set_port_lockout +EXPORT_SYMBOL_GPL vmlinux 0x67aa36e0 tpm2_get_cc_attrs_tbl EXPORT_SYMBOL_GPL vmlinux 0x67da9f7c sha512_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x67dc5bba ahci_platform_disable_regulators -EXPORT_SYMBOL_GPL vmlinux 0x67e999ab crypto_alloc_acomp_node -EXPORT_SYMBOL_GPL vmlinux 0x67ef93c1 pm_clk_suspend -EXPORT_SYMBOL_GPL vmlinux 0x67f2f66c gfn_to_hva -EXPORT_SYMBOL_GPL vmlinux 0x681b3aae spi_res_alloc -EXPORT_SYMBOL_GPL vmlinux 0x6825bc3c irq_domain_free_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x682a6dfa mtk_mutex_get +EXPORT_SYMBOL_GPL vmlinux 0x67f5c31e acpi_device_update_power +EXPORT_SYMBOL_GPL vmlinux 0x67f7b309 mtk_mmsys_ddp_disconnect +EXPORT_SYMBOL_GPL vmlinux 0x6810886b crypto_stats_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0x681c43b4 ata_sff_tf_read +EXPORT_SYMBOL_GPL vmlinux 0x682825db devm_of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0x682d5326 crypto_unregister_ahash +EXPORT_SYMBOL_GPL vmlinux 0x682f387c blk_mq_alloc_sq_tag_set EXPORT_SYMBOL_GPL vmlinux 0x682ff057 ring_buffer_commit_overrun_cpu -EXPORT_SYMBOL_GPL vmlinux 0x68343c54 show_class_attr_string -EXPORT_SYMBOL_GPL vmlinux 0x6838e9fb clk_hw_unregister_gate -EXPORT_SYMBOL_GPL vmlinux 0x683976fa dw_pcie_read_dbi -EXPORT_SYMBOL_GPL vmlinux 0x6842ce90 fscrypt_drop_inode -EXPORT_SYMBOL_GPL vmlinux 0x68482380 fsl_mc_free_irqs +EXPORT_SYMBOL_GPL vmlinux 0x6832e0bf nvmem_cell_read_variable_le_u32 +EXPORT_SYMBOL_GPL vmlinux 0x68353951 clk_hw_unregister_gate +EXPORT_SYMBOL_GPL vmlinux 0x6848e07d dma_get_required_mask EXPORT_SYMBOL_GPL vmlinux 0x684ca117 zynqmp_pm_get_pll_frac_mode -EXPORT_SYMBOL_GPL vmlinux 0x6853f5ae ethnl_cable_test_free -EXPORT_SYMBOL_GPL vmlinux 0x6876ed44 __nvdimm_create +EXPORT_SYMBOL_GPL vmlinux 0x686f9a90 icmp_build_probe +EXPORT_SYMBOL_GPL vmlinux 0x688517e9 kvm_vcpu_mark_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0x68856c1c ti_sci_inta_msi_domain_free_irqs +EXPORT_SYMBOL_GPL vmlinux 0x688aa6ec pci_add_dynid +EXPORT_SYMBOL_GPL vmlinux 0x688b4bf8 usb_create_shared_hcd +EXPORT_SYMBOL_GPL vmlinux 0x688b6b87 led_classdev_register_ext EXPORT_SYMBOL_GPL vmlinux 0x6892e3c3 kvm_set_pfn_accessed EXPORT_SYMBOL_GPL vmlinux 0x68952493 rcu_note_context_switch -EXPORT_SYMBOL_GPL vmlinux 0x68a4205c imx_pinconf_get_scu -EXPORT_SYMBOL_GPL vmlinux 0x68cb195e sched_setattr_nocheck -EXPORT_SYMBOL_GPL vmlinux 0x68df0856 crypto_unregister_scomp -EXPORT_SYMBOL_GPL vmlinux 0x68e49d6a acomp_request_free -EXPORT_SYMBOL_GPL vmlinux 0x69095ade edac_pci_alloc_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0x68a16a1f fork_usermode_driver +EXPORT_SYMBOL_GPL vmlinux 0x68b4120f kvm_read_guest +EXPORT_SYMBOL_GPL vmlinux 0x68d8fb3e serial8250_rx_chars +EXPORT_SYMBOL_GPL vmlinux 0x68e1ab42 devm_clk_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x68ef8d94 ata_host_resume +EXPORT_SYMBOL_GPL vmlinux 0x68f375d4 of_icc_get +EXPORT_SYMBOL_GPL vmlinux 0x69016d56 ahci_platform_enable_regulators +EXPORT_SYMBOL_GPL vmlinux 0x690489c7 usb_for_each_port EXPORT_SYMBOL_GPL vmlinux 0x690f585e phy_basic_ports_array -EXPORT_SYMBOL_GPL vmlinux 0x69393823 rio_add_net -EXPORT_SYMBOL_GPL vmlinux 0x69555d20 vfs_listxattr -EXPORT_SYMBOL_GPL vmlinux 0x695c4846 thermal_zone_of_sensor_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6910f897 driver_register +EXPORT_SYMBOL_GPL vmlinux 0x6919c8dc pci_epf_remove_vepf +EXPORT_SYMBOL_GPL vmlinux 0x692c641e uart_insert_char +EXPORT_SYMBOL_GPL vmlinux 0x6941ab20 __hwspin_unlock +EXPORT_SYMBOL_GPL vmlinux 0x69532ed4 cgroup_attach_task_all EXPORT_SYMBOL_GPL vmlinux 0x696340a5 __i2c_board_lock EXPORT_SYMBOL_GPL vmlinux 0x69637b2c __traceiter_powernv_throttle -EXPORT_SYMBOL_GPL vmlinux 0x696c8094 mtk_eint_do_suspend EXPORT_SYMBOL_GPL vmlinux 0x696f2b63 of_changeset_init +EXPORT_SYMBOL_GPL vmlinux 0x697249bb devm_power_supply_register_no_ws EXPORT_SYMBOL_GPL vmlinux 0x697c5d0d tracing_snapshot_alloc -EXPORT_SYMBOL_GPL vmlinux 0x6993c789 bus_for_each_drv -EXPORT_SYMBOL_GPL vmlinux 0x699c451d __efivar_entry_get -EXPORT_SYMBOL_GPL vmlinux 0x69a8681f pci_disable_pcie_error_reporting -EXPORT_SYMBOL_GPL vmlinux 0x69c3ac37 dma_buf_attach -EXPORT_SYMBOL_GPL vmlinux 0x69c64e37 __hwspin_lock_timeout +EXPORT_SYMBOL_GPL vmlinux 0x697e3ea4 spi_controller_dma_unmap_mem_op_data +EXPORT_SYMBOL_GPL vmlinux 0x6980619c vfs_submount +EXPORT_SYMBOL_GPL vmlinux 0x69916c6c debugfs_create_x32 +EXPORT_SYMBOL_GPL vmlinux 0x69981415 devm_regulator_put +EXPORT_SYMBOL_GPL vmlinux 0x699eccf7 cpci_hp_unregister_bus +EXPORT_SYMBOL_GPL vmlinux 0x69aeac72 irq_of_parse_and_map +EXPORT_SYMBOL_GPL vmlinux 0x69c358b6 __traceiter_neigh_update_done +EXPORT_SYMBOL_GPL vmlinux 0x69c39b73 rio_mport_initialize +EXPORT_SYMBOL_GPL vmlinux 0x69c999ef fb_deferred_io_cleanup EXPORT_SYMBOL_GPL vmlinux 0x69cf0632 mpi_fromstr -EXPORT_SYMBOL_GPL vmlinux 0x69e5523d fsl_mc_bus_dpdmai_type +EXPORT_SYMBOL_GPL vmlinux 0x69d04038 elv_register EXPORT_SYMBOL_GPL vmlinux 0x69e683de uuid_gen +EXPORT_SYMBOL_GPL vmlinux 0x69ed4dae da903x_writes +EXPORT_SYMBOL_GPL vmlinux 0x69eda939 phy_select_page EXPORT_SYMBOL_GPL vmlinux 0x69ee2220 linear_range_get_selector_high -EXPORT_SYMBOL_GPL vmlinux 0x69ee854f file_is_kvm -EXPORT_SYMBOL_GPL vmlinux 0x69f91843 nvdimm_flush -EXPORT_SYMBOL_GPL vmlinux 0x6a052820 ahci_kick_engine +EXPORT_SYMBOL_GPL vmlinux 0x69ef51c5 pinctrl_register_and_init EXPORT_SYMBOL_GPL vmlinux 0x6a05b65b fb_videomode_from_videomode +EXPORT_SYMBOL_GPL vmlinux 0x6a082343 handle_untracked_irq +EXPORT_SYMBOL_GPL vmlinux 0x6a1549af mtk_pinconf_drive_set_raw EXPORT_SYMBOL_GPL vmlinux 0x6a1733eb iommu_group_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6a41fa2c of_clk_src_onecell_get +EXPORT_SYMBOL_GPL vmlinux 0x6a3eea17 clockevent_delta2ns EXPORT_SYMBOL_GPL vmlinux 0x6a421062 memory_failure_queue -EXPORT_SYMBOL_GPL vmlinux 0x6a431f21 crypto_unregister_kpp EXPORT_SYMBOL_GPL vmlinux 0x6a460dc5 schedule_hrtimeout EXPORT_SYMBOL_GPL vmlinux 0x6a4f623b mmu_notifier_synchronize +EXPORT_SYMBOL_GPL vmlinux 0x6a4fd82d platform_irqchip_probe EXPORT_SYMBOL_GPL vmlinux 0x6a5e2bde __cookie_v6_init_sequence -EXPORT_SYMBOL_GPL vmlinux 0x6a6ce54b gnttab_pages_clear_private -EXPORT_SYMBOL_GPL vmlinux 0x6a78c089 ping_err -EXPORT_SYMBOL_GPL vmlinux 0x6a82e383 usb_hcd_is_primary_hcd +EXPORT_SYMBOL_GPL vmlinux 0x6a70cf28 crypto_register_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x6a83a4a0 fib_add_nexthop EXPORT_SYMBOL_GPL vmlinux 0x6a8441be cpci_hp_start -EXPORT_SYMBOL_GPL vmlinux 0x6a90084f led_init_core -EXPORT_SYMBOL_GPL vmlinux 0x6a91f62a scsi_nl_sock EXPORT_SYMBOL_GPL vmlinux 0x6a93c9b2 zynqmp_pm_pinctrl_get_function EXPORT_SYMBOL_GPL vmlinux 0x6aa2a877 xenbus_printf -EXPORT_SYMBOL_GPL vmlinux 0x6aa77fe3 rio_dma_prep_slave_sg EXPORT_SYMBOL_GPL vmlinux 0x6aad9152 xen_set_callback_via -EXPORT_SYMBOL_GPL vmlinux 0x6ab013bf ata_host_suspend -EXPORT_SYMBOL_GPL vmlinux 0x6abc0534 meson_clk_dualdiv_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0x6ac15f04 inet6_csk_xmit -EXPORT_SYMBOL_GPL vmlinux 0x6ac4d5fc phy_speed_up -EXPORT_SYMBOL_GPL vmlinux 0x6ac9a9f2 regcache_sync -EXPORT_SYMBOL_GPL vmlinux 0x6acce969 pinctrl_register -EXPORT_SYMBOL_GPL vmlinux 0x6ad36d4c usb_enable_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0x6ae48ed6 trace_define_field -EXPORT_SYMBOL_GPL vmlinux 0x6af6c75a ata_bmdma_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x6af9f0d2 __traceiter_block_bio_complete -EXPORT_SYMBOL_GPL vmlinux 0x6aff4f3a bpf_trace_run8 -EXPORT_SYMBOL_GPL vmlinux 0x6b0055a7 sdio_signal_irq -EXPORT_SYMBOL_GPL vmlinux 0x6b08f19a gpiochip_reqres_irq +EXPORT_SYMBOL_GPL vmlinux 0x6aaf2f68 ack_all_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x6ab09a23 gpiochip_remove_pin_ranges +EXPORT_SYMBOL_GPL vmlinux 0x6ab0e614 set_selection_kernel +EXPORT_SYMBOL_GPL vmlinux 0x6ac79dec tpm_default_chip +EXPORT_SYMBOL_GPL vmlinux 0x6adbecd0 blk_mq_sched_try_merge +EXPORT_SYMBOL_GPL vmlinux 0x6ae56392 fuse_send_init +EXPORT_SYMBOL_GPL vmlinux 0x6af25569 balloon_page_enqueue EXPORT_SYMBOL_GPL vmlinux 0x6b0dc565 xen_set_irq_priority -EXPORT_SYMBOL_GPL vmlinux 0x6b107497 pci_ioremap_bar EXPORT_SYMBOL_GPL vmlinux 0x6b198c77 led_colors -EXPORT_SYMBOL_GPL vmlinux 0x6b1bf88a msg_zerocopy_put_abort -EXPORT_SYMBOL_GPL vmlinux 0x6b24a272 dev_pm_genpd_set_performance_state -EXPORT_SYMBOL_GPL vmlinux 0x6b27bc4d dev_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x6b1b4bad nfnl_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0x6b23b524 sk_msg_return_zero EXPORT_SYMBOL_GPL vmlinux 0x6b2b69f7 static_key_enable -EXPORT_SYMBOL_GPL vmlinux 0x6b2cafdb device_get_dma_attr -EXPORT_SYMBOL_GPL vmlinux 0x6b30c024 devlink_port_params_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6b2e4bf8 vcpu_put +EXPORT_SYMBOL_GPL vmlinux 0x6b376696 regmap_mmio_attach_clk +EXPORT_SYMBOL_GPL vmlinux 0x6b3a4b5e skb_cow_data EXPORT_SYMBOL_GPL vmlinux 0x6b3ae022 acpi_os_unmap_iomem -EXPORT_SYMBOL_GPL vmlinux 0x6b3e3a66 mmc_regulator_get_supply +EXPORT_SYMBOL_GPL vmlinux 0x6b3cca70 regmap_add_irq_chip_fwnode EXPORT_SYMBOL_GPL vmlinux 0x6b4045ee zynqmp_pm_get_api_version EXPORT_SYMBOL_GPL vmlinux 0x6b413c9b sfp_link_down -EXPORT_SYMBOL_GPL vmlinux 0x6b46a34c crypto_aead_setauthsize +EXPORT_SYMBOL_GPL vmlinux 0x6b442fec regulator_get_voltage_sel_pickable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x6b45e7e1 pci_epf_type_add_cfs +EXPORT_SYMBOL_GPL vmlinux 0x6b4730e1 register_pernet_device EXPORT_SYMBOL_GPL vmlinux 0x6b47f8a4 hisi_clk_register_mux -EXPORT_SYMBOL_GPL vmlinux 0x6b4adfa1 bd_unlink_disk_holder -EXPORT_SYMBOL_GPL vmlinux 0x6b671617 dma_get_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0x6b730a08 pm_clk_remove -EXPORT_SYMBOL_GPL vmlinux 0x6b76d253 devm_of_platform_depopulate +EXPORT_SYMBOL_GPL vmlinux 0x6b4d7071 imx_pinconf_get_scu +EXPORT_SYMBOL_GPL vmlinux 0x6b52e9bb dev_pm_opp_find_freq_ceil +EXPORT_SYMBOL_GPL vmlinux 0x6b599bb3 devlink_port_param_value_changed +EXPORT_SYMBOL_GPL vmlinux 0x6b62a3b5 bpf_prog_inc +EXPORT_SYMBOL_GPL vmlinux 0x6b6b3181 transport_class_register EXPORT_SYMBOL_GPL vmlinux 0x6b7a4335 hyperv_cleanup EXPORT_SYMBOL_GPL vmlinux 0x6b81c38b power_supply_unreg_notifier EXPORT_SYMBOL_GPL vmlinux 0x6b834121 bman_portals_probed -EXPORT_SYMBOL_GPL vmlinux 0x6b8d66f2 ethnl_cable_test_amplitude -EXPORT_SYMBOL_GPL vmlinux 0x6b8da71c i2c_slave_unregister -EXPORT_SYMBOL_GPL vmlinux 0x6b9390f9 tty_buffer_request_room +EXPORT_SYMBOL_GPL vmlinux 0x6b99493c pci_epc_set_bar +EXPORT_SYMBOL_GPL vmlinux 0x6ba347f0 msg_zerocopy_callback EXPORT_SYMBOL_GPL vmlinux 0x6ba36c6a hwpoison_filter_flags_value -EXPORT_SYMBOL_GPL vmlinux 0x6bad9cb3 rio_mport_initialize -EXPORT_SYMBOL_GPL vmlinux 0x6baf1e5b tpm1_do_selftest -EXPORT_SYMBOL_GPL vmlinux 0x6bb8a594 ata_host_resume -EXPORT_SYMBOL_GPL vmlinux 0x6bc6d280 iomap_writepage +EXPORT_SYMBOL_GPL vmlinux 0x6ba7140f spi_sync +EXPORT_SYMBOL_GPL vmlinux 0x6ba74465 of_clk_del_provider +EXPORT_SYMBOL_GPL vmlinux 0x6baef917 irq_domain_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0x6bcd93cc dax_iomap_rw EXPORT_SYMBOL_GPL vmlinux 0x6bcdedc0 mpi_point_init -EXPORT_SYMBOL_GPL vmlinux 0x6bceddd5 component_master_del EXPORT_SYMBOL_GPL vmlinux 0x6bd1aa56 stack_trace_save -EXPORT_SYMBOL_GPL vmlinux 0x6bd2779d netif_carrier_event EXPORT_SYMBOL_GPL vmlinux 0x6bdef35c acpi_ec_mark_gpe_for_wake +EXPORT_SYMBOL_GPL vmlinux 0x6be13623 synth_event_gen_cmd_array_start EXPORT_SYMBOL_GPL vmlinux 0x6be3a96b hv_remove_vmbus_handler -EXPORT_SYMBOL_GPL vmlinux 0x6bf2bba1 vfs_getxattr_alloc -EXPORT_SYMBOL_GPL vmlinux 0x6bf464f9 blk_mq_start_stopped_hw_queue -EXPORT_SYMBOL_GPL vmlinux 0x6bffaa5c pwm_put -EXPORT_SYMBOL_GPL vmlinux 0x6c031209 crypto_grab_ahash -EXPORT_SYMBOL_GPL vmlinux 0x6c063c7d sfp_register_socket +EXPORT_SYMBOL_GPL vmlinux 0x6bf2e5a7 icc_set_tag +EXPORT_SYMBOL_GPL vmlinux 0x6bf49df3 device_get_match_data +EXPORT_SYMBOL_GPL vmlinux 0x6bfef825 dprc_get_obj_count +EXPORT_SYMBOL_GPL vmlinux 0x6c1fab43 iommu_fwspec_init EXPORT_SYMBOL_GPL vmlinux 0x6c205008 mpi_print +EXPORT_SYMBOL_GPL vmlinux 0x6c272a65 usb_phy_roothub_suspend EXPORT_SYMBOL_GPL vmlinux 0x6c389761 acpi_bus_get_private_data EXPORT_SYMBOL_GPL vmlinux 0x6c3f70e0 guid_gen -EXPORT_SYMBOL_GPL vmlinux 0x6c4446f5 dma_buf_begin_cpu_access -EXPORT_SYMBOL_GPL vmlinux 0x6c4a4532 regulator_set_voltage_time_sel EXPORT_SYMBOL_GPL vmlinux 0x6c4b6684 reset_control_assert -EXPORT_SYMBOL_GPL vmlinux 0x6c4bb1e9 locks_alloc_lock -EXPORT_SYMBOL_GPL vmlinux 0x6c54c999 sysfs_unbreak_active_protection -EXPORT_SYMBOL_GPL vmlinux 0x6c551489 rockchip_pcie_parse_dt -EXPORT_SYMBOL_GPL vmlinux 0x6c552b6a nvdimm_region_notify -EXPORT_SYMBOL_GPL vmlinux 0x6c56cb9e stmpe_block_read +EXPORT_SYMBOL_GPL vmlinux 0x6c4f4988 __platform_create_bundle +EXPORT_SYMBOL_GPL vmlinux 0x6c4f8177 devlink_rate_leaf_create EXPORT_SYMBOL_GPL vmlinux 0x6c5ad0cd kmsg_dump_register +EXPORT_SYMBOL_GPL vmlinux 0x6c5bf03e tracing_snapshot_cond_disable +EXPORT_SYMBOL_GPL vmlinux 0x6c5c0f5b crypto_unregister_akcipher EXPORT_SYMBOL_GPL vmlinux 0x6c655913 register_acpi_hed_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6c65908f sfp_add_phy -EXPORT_SYMBOL_GPL vmlinux 0x6c67d1ab irq_chip_mask_ack_parent -EXPORT_SYMBOL_GPL vmlinux 0x6c73b2f2 max8997_bulk_write -EXPORT_SYMBOL_GPL vmlinux 0x6c77e287 dev_pm_qos_add_request -EXPORT_SYMBOL_GPL vmlinux 0x6c8e5a99 clk_hw_unregister_mux +EXPORT_SYMBOL_GPL vmlinux 0x6c7793e0 k3_ringacc_dmarings_init +EXPORT_SYMBOL_GPL vmlinux 0x6c94c593 udp_destruct_sock EXPORT_SYMBOL_GPL vmlinux 0x6c956075 __SCK__tp_func_devlink_hwerr +EXPORT_SYMBOL_GPL vmlinux 0x6c9bd0bd mark_page_dirty_in_slot +EXPORT_SYMBOL_GPL vmlinux 0x6c9e3aab acpi_processor_get_performance_info EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain +EXPORT_SYMBOL_GPL vmlinux 0x6ca866b8 security_inode_create EXPORT_SYMBOL_GPL vmlinux 0x6cb0ce87 irq_get_percpu_devid_partition -EXPORT_SYMBOL_GPL vmlinux 0x6cbab480 pinconf_generic_dt_subnode_to_map -EXPORT_SYMBOL_GPL vmlinux 0x6cbea33c tcp_slow_start -EXPORT_SYMBOL_GPL vmlinux 0x6cc04116 usb_ifnum_to_if -EXPORT_SYMBOL_GPL vmlinux 0x6cda3cde modify_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x6cb7a962 kvm_vcpu_read_guest_page +EXPORT_SYMBOL_GPL vmlinux 0x6cbf872e pm_runtime_suspended_time +EXPORT_SYMBOL_GPL vmlinux 0x6cc5c736 usb_phy_roothub_alloc +EXPORT_SYMBOL_GPL vmlinux 0x6cd85ece tps6586x_get_version EXPORT_SYMBOL_GPL vmlinux 0x6ce10eb0 trace_clock_jiffies -EXPORT_SYMBOL_GPL vmlinux 0x6cec7668 iommu_dev_disable_feature -EXPORT_SYMBOL_GPL vmlinux 0x6cf3df8e dev_get_tstats64 -EXPORT_SYMBOL_GPL vmlinux 0x6d035a5f adp5520_read +EXPORT_SYMBOL_GPL vmlinux 0x6cefe08a of_alias_get_id +EXPORT_SYMBOL_GPL vmlinux 0x6cf373ea scsi_host_complete_all_commands +EXPORT_SYMBOL_GPL vmlinux 0x6d041c2d do_unregister_con_driver EXPORT_SYMBOL_GPL vmlinux 0x6d04891d inet_getpeer EXPORT_SYMBOL_GPL vmlinux 0x6d09843f copy_bpf_fprog_from_user EXPORT_SYMBOL_GPL vmlinux 0x6d0ae550 pinctrl_gpio_request -EXPORT_SYMBOL_GPL vmlinux 0x6d114693 dev_pm_opp_put_supported_hw -EXPORT_SYMBOL_GPL vmlinux 0x6d1f1f2c gpiochip_populate_parent_fwspec_fourcell -EXPORT_SYMBOL_GPL vmlinux 0x6d20e361 debugfs_create_u32_array -EXPORT_SYMBOL_GPL vmlinux 0x6d29f812 thermal_zone_get_temp +EXPORT_SYMBOL_GPL vmlinux 0x6d0c908c xenbus_dev_remove +EXPORT_SYMBOL_GPL vmlinux 0x6d0f0398 thermal_cooling_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6d188e02 wm8350_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x6d2a0acb sata_set_spd EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list -EXPORT_SYMBOL_GPL vmlinux 0x6d395cca gnttab_dma_alloc_pages -EXPORT_SYMBOL_GPL vmlinux 0x6d39d8fe regmap_read +EXPORT_SYMBOL_GPL vmlinux 0x6d37aebb __rio_local_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x6d43763a balloon_page_list_dequeue EXPORT_SYMBOL_GPL vmlinux 0x6d467b08 arm_smccc_1_1_get_conduit -EXPORT_SYMBOL_GPL vmlinux 0x6d4a76c6 devfreq_event_disable_edev -EXPORT_SYMBOL_GPL vmlinux 0x6d4b86b9 fwnode_graph_get_next_endpoint -EXPORT_SYMBOL_GPL vmlinux 0x6d5b3313 pinctrl_dev_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x6d5e2c17 meson_eeclkc_probe -EXPORT_SYMBOL_GPL vmlinux 0x6d63c0fc ata_pci_sff_activate_host -EXPORT_SYMBOL_GPL vmlinux 0x6d6b149d serial8250_request_dma +EXPORT_SYMBOL_GPL vmlinux 0x6d4deaa3 fsl_mc_allocate_irqs +EXPORT_SYMBOL_GPL vmlinux 0x6d6e627b tc3589x_reg_write EXPORT_SYMBOL_GPL vmlinux 0x6d6fec1f ktime_mono_to_any +EXPORT_SYMBOL_GPL vmlinux 0x6d6ff2b5 wakeup_source_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6d71d0b2 acpi_set_modalias EXPORT_SYMBOL_GPL vmlinux 0x6d7e951e rcu_exp_batches_completed -EXPORT_SYMBOL_GPL vmlinux 0x6d852cd1 vma_kernel_pagesize -EXPORT_SYMBOL_GPL vmlinux 0x6da399f0 device_wakeup_disable EXPORT_SYMBOL_GPL vmlinux 0x6dbaafd3 put_old_timespec32 -EXPORT_SYMBOL_GPL vmlinux 0x6dc1df99 mctrl_gpio_init -EXPORT_SYMBOL_GPL vmlinux 0x6dc291d9 usb_alloc_coherent -EXPORT_SYMBOL_GPL vmlinux 0x6dcafa9f ata_do_dev_read_id +EXPORT_SYMBOL_GPL vmlinux 0x6dbc6da1 i2c_slave_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6dbda795 int_active_memcg EXPORT_SYMBOL_GPL vmlinux 0x6dd5680d sprint_symbol_build_id -EXPORT_SYMBOL_GPL vmlinux 0x6ded964f __cpufreq_driver_target -EXPORT_SYMBOL_GPL vmlinux 0x6deec943 fat_time_fat2unix -EXPORT_SYMBOL_GPL vmlinux 0x6df027cd fsverity_ioctl_enable -EXPORT_SYMBOL_GPL vmlinux 0x6df7b14b pci_hp_destroy -EXPORT_SYMBOL_GPL vmlinux 0x6e0698d1 inet_ehash_nolisten +EXPORT_SYMBOL_GPL vmlinux 0x6e0057d7 xenbus_dev_probe +EXPORT_SYMBOL_GPL vmlinux 0x6e0344ba msi_desc_to_pci_sysdata +EXPORT_SYMBOL_GPL vmlinux 0x6e05b101 device_create_file EXPORT_SYMBOL_GPL vmlinux 0x6e09d93d __SCK__tp_func_map -EXPORT_SYMBOL_GPL vmlinux 0x6e1d07cb crypto_spawn_tfm +EXPORT_SYMBOL_GPL vmlinux 0x6e1fc05d dma_alloc_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x6e23cba0 pinmux_generic_get_function_groups +EXPORT_SYMBOL_GPL vmlinux 0x6e2752b4 validate_xmit_xfrm +EXPORT_SYMBOL_GPL vmlinux 0x6e3780eb rio_release_outb_dbell EXPORT_SYMBOL_GPL vmlinux 0x6e3ff83a edac_device_alloc_index -EXPORT_SYMBOL_GPL vmlinux 0x6e429d0a crypto_req_done EXPORT_SYMBOL_GPL vmlinux 0x6e4aa78d k3_udma_glue_rx_flow_enable EXPORT_SYMBOL_GPL vmlinux 0x6e4bc056 spi_res_free -EXPORT_SYMBOL_GPL vmlinux 0x6e4edffa sata_scr_write_flush +EXPORT_SYMBOL_GPL vmlinux 0x6e4d01f4 phy_pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0x6e52423b iommu_domain_free +EXPORT_SYMBOL_GPL vmlinux 0x6e578ac3 bio_trim EXPORT_SYMBOL_GPL vmlinux 0x6e59f821 __tracepoint_wbc_writepage EXPORT_SYMBOL_GPL vmlinux 0x6e7943ec iommu_group_id +EXPORT_SYMBOL_GPL vmlinux 0x6e89645f mtk_pinconf_bias_disable_set_rev1 EXPORT_SYMBOL_GPL vmlinux 0x6e89a560 regmap_irq_chip_get_base -EXPORT_SYMBOL_GPL vmlinux 0x6e9d78a6 __kthread_should_park -EXPORT_SYMBOL_GPL vmlinux 0x6ea3a494 regulator_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6ead2c11 rtnl_delete_link -EXPORT_SYMBOL_GPL vmlinux 0x6ead9565 pci_acpi_set_companion_lookup_hook -EXPORT_SYMBOL_GPL vmlinux 0x6eb12b7d iommu_register_device_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0x6e9f1954 xhci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x6ebb6c28 sata_pmp_port_ops EXPORT_SYMBOL_GPL vmlinux 0x6ebe366f ktime_get_mono_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0x6ec0f07e sysfs_create_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x6ec54eee __traceiter_devlink_hwmsg -EXPORT_SYMBOL_GPL vmlinux 0x6ec7d414 i2c_get_device_id -EXPORT_SYMBOL_GPL vmlinux 0x6ed42751 bus_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6eda997b ata_scsi_unlock_native_capacity +EXPORT_SYMBOL_GPL vmlinux 0x6ed07e20 regulator_list_voltage_table +EXPORT_SYMBOL_GPL vmlinux 0x6ed77be9 devm_clk_bulk_get_all +EXPORT_SYMBOL_GPL vmlinux 0x6ee24ca0 misc_cg_uncharge EXPORT_SYMBOL_GPL vmlinux 0x6ee8c94b sfp_get_module_eeprom -EXPORT_SYMBOL_GPL vmlinux 0x6eed9835 dst_blackhole_mtu +EXPORT_SYMBOL_GPL vmlinux 0x6ee8db0c paste_selection +EXPORT_SYMBOL_GPL vmlinux 0x6eeadc33 firmware_kobj +EXPORT_SYMBOL_GPL vmlinux 0x6eee21f0 regulator_set_active_discharge_regmap EXPORT_SYMBOL_GPL vmlinux 0x6ef0855c ftrace_set_filter_ip -EXPORT_SYMBOL_GPL vmlinux 0x6ef31813 fwnode_get_next_parent +EXPORT_SYMBOL_GPL vmlinux 0x6ef2da93 stmpe_set_bits EXPORT_SYMBOL_GPL vmlinux 0x6ef6b54f ktime_get_boot_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0x6f0a4d25 dma_mmap_noncontiguous -EXPORT_SYMBOL_GPL vmlinux 0x6f118093 dst_blackhole_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x6f00a644 ahci_reset_em EXPORT_SYMBOL_GPL vmlinux 0x6f12560a get_old_timespec32 EXPORT_SYMBOL_GPL vmlinux 0x6f2017de misc_cg_set_capacity -EXPORT_SYMBOL_GPL vmlinux 0x6f2e72d4 clk_regmap_divider_ops -EXPORT_SYMBOL_GPL vmlinux 0x6f379f65 rtc_set_time -EXPORT_SYMBOL_GPL vmlinux 0x6f3bb242 devm_regulator_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x6f4902fa devlink_sb_unregister -EXPORT_SYMBOL_GPL vmlinux 0x6f5dad64 usb_enable_lpm -EXPORT_SYMBOL_GPL vmlinux 0x6f60f17e balloon_aops -EXPORT_SYMBOL_GPL vmlinux 0x6f67cdca gov_attr_set_init -EXPORT_SYMBOL_GPL vmlinux 0x6f6d8eef usb_hcd_start_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x6f2e2366 dma_async_device_channel_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6f429bde xenbus_register_driver_common +EXPORT_SYMBOL_GPL vmlinux 0x6f4d0438 usb_hcd_pci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x6f50fc2c bpf_trace_run4 +EXPORT_SYMBOL_GPL vmlinux 0x6f602983 ata_pci_device_do_suspend +EXPORT_SYMBOL_GPL vmlinux 0x6f635dbf mtk_pinconf_bias_disable_get +EXPORT_SYMBOL_GPL vmlinux 0x6f6b251f cgrp_dfl_root EXPORT_SYMBOL_GPL vmlinux 0x6f7e6040 irq_has_action -EXPORT_SYMBOL_GPL vmlinux 0x6f822f3f dprc_scan_container -EXPORT_SYMBOL_GPL vmlinux 0x6f8c03e1 cpufreq_freq_transition_begin -EXPORT_SYMBOL_GPL vmlinux 0x6f901961 mmc_pwrseq_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6f8087bd sysfs_break_active_protection +EXPORT_SYMBOL_GPL vmlinux 0x6f85e640 sk_free_unlock_clone EXPORT_SYMBOL_GPL vmlinux 0x6f95bb84 sbitmap_queue_init_node EXPORT_SYMBOL_GPL vmlinux 0x6f9e763b timecounter_read EXPORT_SYMBOL_GPL vmlinux 0x6fa2c222 call_srcu -EXPORT_SYMBOL_GPL vmlinux 0x6fac66cb pinctrl_find_gpio_range_from_pin_nolock -EXPORT_SYMBOL_GPL vmlinux 0x6fb3e73e sbitmap_show -EXPORT_SYMBOL_GPL vmlinux 0x6fb50165 spi_new_device -EXPORT_SYMBOL_GPL vmlinux 0x6fc1f9bb fsl_mc_bus_dprtc_type +EXPORT_SYMBOL_GPL vmlinux 0x6fa4db9e fwnode_get_named_child_node +EXPORT_SYMBOL_GPL vmlinux 0x6fcea2ea md_bitmap_resize EXPORT_SYMBOL_GPL vmlinux 0x6fcef6ab ring_buffer_reset -EXPORT_SYMBOL_GPL vmlinux 0x6fe41e65 devm_regulator_get_optional -EXPORT_SYMBOL_GPL vmlinux 0x6fe80ad9 wm831x_device_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x6ff5a9b0 sock_diag_save_cookie EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x6ffa87ee devlink_trap_groups_register +EXPORT_SYMBOL_GPL vmlinux 0x7000a0b1 soc_device_match EXPORT_SYMBOL_GPL vmlinux 0x7006586e iommu_get_group_resv_regions -EXPORT_SYMBOL_GPL vmlinux 0x700c9b05 __efivar_entry_iter -EXPORT_SYMBOL_GPL vmlinux 0x701ff0a8 regmap_get_raw_write_max -EXPORT_SYMBOL_GPL vmlinux 0x702bbe8e ahci_start_fis_rx -EXPORT_SYMBOL_GPL vmlinux 0x70381264 vp_modern_get_driver_features -EXPORT_SYMBOL_GPL vmlinux 0x70419a07 mtk_pinconf_bias_disable_set_rev1 -EXPORT_SYMBOL_GPL vmlinux 0x70517f57 __reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x700f7b13 anon_transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x701fa801 xdp_rxq_info_unreg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0x7028545c regmap_get_device +EXPORT_SYMBOL_GPL vmlinux 0x70472026 serial8250_em485_stop_tx +EXPORT_SYMBOL_GPL vmlinux 0x704e18f9 blk_mark_disk_dead EXPORT_SYMBOL_GPL vmlinux 0x7055c56e __sbitmap_queue_get_shallow -EXPORT_SYMBOL_GPL vmlinux 0x705d6620 xenbus_dev_probe -EXPORT_SYMBOL_GPL vmlinux 0x7068190b inet_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0x70562b9d blk_ksm_reprogram_all_keys +EXPORT_SYMBOL_GPL vmlinux 0x7056c6ed firmware_request_cache +EXPORT_SYMBOL_GPL vmlinux 0x706d8a97 ata_sff_busy_sleep +EXPORT_SYMBOL_GPL vmlinux 0x70708c32 rio_route_add_entry EXPORT_SYMBOL_GPL vmlinux 0x7073c04f phy_10_100_features_array -EXPORT_SYMBOL_GPL vmlinux 0x70965b70 switchdev_handle_fdb_del_to_device -EXPORT_SYMBOL_GPL vmlinux 0x70992f53 tcp_ca_openreq_child -EXPORT_SYMBOL_GPL vmlinux 0x709f22e5 crypto_register_alg +EXPORT_SYMBOL_GPL vmlinux 0x707ed0b6 fib_nl_newrule +EXPORT_SYMBOL_GPL vmlinux 0x70851791 nvmem_cell_read_u8 +EXPORT_SYMBOL_GPL vmlinux 0x70ac2ea4 ipv4_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0x70b7c07a gnttab_grant_foreign_transfer EXPORT_SYMBOL_GPL vmlinux 0x70c2c7ea pids_cgrp_subsys_on_dfl_key EXPORT_SYMBOL_GPL vmlinux 0x70c52dc5 nf_skb_duplicated -EXPORT_SYMBOL_GPL vmlinux 0x70c81535 mtk_pinconf_drive_set_rev1 EXPORT_SYMBOL_GPL vmlinux 0x70cf032f usb_hcd_irq +EXPORT_SYMBOL_GPL vmlinux 0x70dc53cc kthread_unuse_mm EXPORT_SYMBOL_GPL vmlinux 0x70e06e33 pkcs7_free_message -EXPORT_SYMBOL_GPL vmlinux 0x70fa4f68 __get_task_comm -EXPORT_SYMBOL_GPL vmlinux 0x70fffcef virtqueue_get_buf -EXPORT_SYMBOL_GPL vmlinux 0x7109ca4c proc_create_net_single_write +EXPORT_SYMBOL_GPL vmlinux 0x70e5d230 clk_hw_is_prepared +EXPORT_SYMBOL_GPL vmlinux 0x70f2db45 iommu_group_get +EXPORT_SYMBOL_GPL vmlinux 0x70f4d142 dev_pm_enable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x70f777ec perf_aux_output_begin +EXPORT_SYMBOL_GPL vmlinux 0x70fda137 platform_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7109ee46 dev_pm_opp_set_supported_hw EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x7110f545 sbitmap_bitmap_show -EXPORT_SYMBOL_GPL vmlinux 0x711b47b1 dprc_open -EXPORT_SYMBOL_GPL vmlinux 0x711f33f9 rtnl_af_register -EXPORT_SYMBOL_GPL vmlinux 0x7120564d pwm_capture -EXPORT_SYMBOL_GPL vmlinux 0x7122edb0 ata_slave_link_init +EXPORT_SYMBOL_GPL vmlinux 0x71100844 xhci_gen_setup +EXPORT_SYMBOL_GPL vmlinux 0x7112db2b spi_get_next_queued_message +EXPORT_SYMBOL_GPL vmlinux 0x71191317 usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0x711c5802 phy_pm_runtime_put +EXPORT_SYMBOL_GPL vmlinux 0x712742ac i2c_dw_adjust_bus_speed EXPORT_SYMBOL_GPL vmlinux 0x7129a6f4 osc_sb_native_usb4_support_confirmed -EXPORT_SYMBOL_GPL vmlinux 0x712ecf27 tracing_snapshot_cond_disable -EXPORT_SYMBOL_GPL vmlinux 0x714fe77f uart_set_options -EXPORT_SYMBOL_GPL vmlinux 0x71567ac6 meson_aoclkc_probe -EXPORT_SYMBOL_GPL vmlinux 0x71570162 vp_modern_set_queue_size -EXPORT_SYMBOL_GPL vmlinux 0x715c9f36 vp_modern_get_queue_enable +EXPORT_SYMBOL_GPL vmlinux 0x71302c43 register_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x713397aa __fscrypt_encrypt_symlink +EXPORT_SYMBOL_GPL vmlinux 0x713b61d4 netlink_has_listeners +EXPORT_SYMBOL_GPL vmlinux 0x7144a711 of_genpd_add_subdomain +EXPORT_SYMBOL_GPL vmlinux 0x714d46ac ahci_platform_init_host +EXPORT_SYMBOL_GPL vmlinux 0x714f1b2a crypto_unregister_aeads +EXPORT_SYMBOL_GPL vmlinux 0x71527e1b tcp_sendpage_locked +EXPORT_SYMBOL_GPL vmlinux 0x715840cc pcie_aspm_enabled EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized EXPORT_SYMBOL_GPL vmlinux 0x71650819 add_bootloader_randomness -EXPORT_SYMBOL_GPL vmlinux 0x7172f9b3 iommu_uapi_cache_invalidate +EXPORT_SYMBOL_GPL vmlinux 0x717b9abc wbt_disable_default EXPORT_SYMBOL_GPL vmlinux 0x7181db30 atomic_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0x71836dd0 mtk_pinconf_bias_get -EXPORT_SYMBOL_GPL vmlinux 0x71973bb5 nf_hook_entries_insert_raw +EXPORT_SYMBOL_GPL vmlinux 0x719326a2 __traceiter_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0x719bdd9e device_create_managed_software_node EXPORT_SYMBOL_GPL vmlinux 0x719e17ff clk_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0x719f7f6d tpm2_get_cc_attrs_tbl EXPORT_SYMBOL_GPL vmlinux 0x71a20f4a __SCK__tp_func_non_standard_event EXPORT_SYMBOL_GPL vmlinux 0x71a9a3ab mtk_mutex_acquire EXPORT_SYMBOL_GPL vmlinux 0x71b15008 lwtunnel_valid_encap_type +EXPORT_SYMBOL_GPL vmlinux 0x71b38539 __traceiter_napi_poll EXPORT_SYMBOL_GPL vmlinux 0x71b6cf94 dst_cache_reset_now EXPORT_SYMBOL_GPL vmlinux 0x71c059d8 __traceiter_map -EXPORT_SYMBOL_GPL vmlinux 0x71e4e18e relay_open +EXPORT_SYMBOL_GPL vmlinux 0x71c0e2a4 kvm_gfn_to_hva_cache_init +EXPORT_SYMBOL_GPL vmlinux 0x71d21857 palmas_ext_control_req_config +EXPORT_SYMBOL_GPL vmlinux 0x71d2703e crypto_skcipher_decrypt EXPORT_SYMBOL_GPL vmlinux 0x71f6670b __cookie_v6_check -EXPORT_SYMBOL_GPL vmlinux 0x71f7f1ac sata_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x71ffe9b6 gpiod_direction_output_raw -EXPORT_SYMBOL_GPL vmlinux 0x7214b06d wakeup_sources_walk_next -EXPORT_SYMBOL_GPL vmlinux 0x7239be55 __pm_stay_awake -EXPORT_SYMBOL_GPL vmlinux 0x723b0bab led_trigger_read -EXPORT_SYMBOL_GPL vmlinux 0x72407bec fib_rules_seq_read -EXPORT_SYMBOL_GPL vmlinux 0x7244e0e7 fwnode_handle_get -EXPORT_SYMBOL_GPL vmlinux 0x72483ad1 mmu_interval_notifier_remove -EXPORT_SYMBOL_GPL vmlinux 0x724a62a2 gpiod_get -EXPORT_SYMBOL_GPL vmlinux 0x7254dbea __rio_local_write_config_16 -EXPORT_SYMBOL_GPL vmlinux 0x725f68f3 fwnode_get_next_available_child_node -EXPORT_SYMBOL_GPL vmlinux 0x72600342 xenbus_switch_state +EXPORT_SYMBOL_GPL vmlinux 0x71f74645 __fscrypt_prepare_lookup +EXPORT_SYMBOL_GPL vmlinux 0x7206cbf2 of_icc_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0x7207a1b0 device_rename +EXPORT_SYMBOL_GPL vmlinux 0x720be21f devm_get_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x721540e8 crypto_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x721d5f34 clk_hw_register_gate2 +EXPORT_SYMBOL_GPL vmlinux 0x722c8d5e blkg_rwstat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0x724bb3b9 devfreq_event_add_edev EXPORT_SYMBOL_GPL vmlinux 0x7262702b sfp_get_module_eeprom_by_page EXPORT_SYMBOL_GPL vmlinux 0x7265f2b0 pci_vpd_check_csum -EXPORT_SYMBOL_GPL vmlinux 0x726d1060 usb_hub_claim_port -EXPORT_SYMBOL_GPL vmlinux 0x726de14c bgmac_enet_remove EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events +EXPORT_SYMBOL_GPL vmlinux 0x727d8183 dbs_update +EXPORT_SYMBOL_GPL vmlinux 0x727eecb4 fwnode_property_read_u16_array EXPORT_SYMBOL_GPL vmlinux 0x7283161b percpu_ref_switch_to_percpu -EXPORT_SYMBOL_GPL vmlinux 0x7284ad40 pci_disable_pasid -EXPORT_SYMBOL_GPL vmlinux 0x728a92d6 iommu_uapi_sva_unbind_gpasid -EXPORT_SYMBOL_GPL vmlinux 0x729217ce led_classdev_notify_brightness_hw_changed -EXPORT_SYMBOL_GPL vmlinux 0x72964f58 securityfs_create_file -EXPORT_SYMBOL_GPL vmlinux 0x72b16c1e stmpe_disable -EXPORT_SYMBOL_GPL vmlinux 0x72b4b3a4 pinctrl_put -EXPORT_SYMBOL_GPL vmlinux 0x72ccbabf usb_deregister_device_driver -EXPORT_SYMBOL_GPL vmlinux 0x72ce5de1 crypto_unregister_algs -EXPORT_SYMBOL_GPL vmlinux 0x72cf3989 sk_msg_return +EXPORT_SYMBOL_GPL vmlinux 0x728b4e76 __pm_runtime_disable +EXPORT_SYMBOL_GPL vmlinux 0x728b70fe sock_diag_put_meminfo +EXPORT_SYMBOL_GPL vmlinux 0x728ce449 devm_device_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0x72a7c2ea devlink_resource_register +EXPORT_SYMBOL_GPL vmlinux 0x72af98a0 xenbus_alloc_evtchn +EXPORT_SYMBOL_GPL vmlinux 0x72b08277 devm_acpi_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0x72b3c6b3 nd_region_dev +EXPORT_SYMBOL_GPL vmlinux 0x72c583bf raw_seq_start +EXPORT_SYMBOL_GPL vmlinux 0x72c628ad wm8350_device_init EXPORT_SYMBOL_GPL vmlinux 0x72d267dc nvmem_del_cell_lookups -EXPORT_SYMBOL_GPL vmlinux 0x72ec0fee cros_ec_check_features -EXPORT_SYMBOL_GPL vmlinux 0x72ed55ff xdp_build_skb_from_frame +EXPORT_SYMBOL_GPL vmlinux 0x72e15d83 irq_chip_set_vcpu_affinity_parent +EXPORT_SYMBOL_GPL vmlinux 0x72e4c5cd spi_mem_dirmap_create +EXPORT_SYMBOL_GPL vmlinux 0x72edb6f1 pci_epf_unbind EXPORT_SYMBOL_GPL vmlinux 0x72edf918 __tracepoint_kfree_skb -EXPORT_SYMBOL_GPL vmlinux 0x72fe1e8e rtnl_af_unregister -EXPORT_SYMBOL_GPL vmlinux 0x7300a560 regulator_sync_voltage -EXPORT_SYMBOL_GPL vmlinux 0x7317e504 dev_pm_opp_get_required_pstate -EXPORT_SYMBOL_GPL vmlinux 0x731f8455 crypto_stats_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0x72f033c0 gpiod_set_config +EXPORT_SYMBOL_GPL vmlinux 0x72f2724e genphy_c45_read_lpa +EXPORT_SYMBOL_GPL vmlinux 0x72f7427f inet_csk_reqsk_queue_hash_add +EXPORT_SYMBOL_GPL vmlinux 0x72fbf592 ip_route_output_tunnel +EXPORT_SYMBOL_GPL vmlinux 0x72fd5961 perf_event_release_kernel +EXPORT_SYMBOL_GPL vmlinux 0x730036ab dma_get_merge_boundary +EXPORT_SYMBOL_GPL vmlinux 0x7301c53b fsl_mc_device_remove +EXPORT_SYMBOL_GPL vmlinux 0x73066444 dev_pm_opp_init_cpufreq_table +EXPORT_SYMBOL_GPL vmlinux 0x7312a73c pm_generic_suspend +EXPORT_SYMBOL_GPL vmlinux 0x7317b560 acpi_subsys_suspend_late EXPORT_SYMBOL_GPL vmlinux 0x73242dcd cpu_set_feature EXPORT_SYMBOL_GPL vmlinux 0x732852fe xenbus_transaction_end -EXPORT_SYMBOL_GPL vmlinux 0x7337e5ea mmc_regulator_set_vqmmc -EXPORT_SYMBOL_GPL vmlinux 0x733c1706 fwnode_graph_get_remote_port_parent -EXPORT_SYMBOL_GPL vmlinux 0x735dd1e1 badblocks_init -EXPORT_SYMBOL_GPL vmlinux 0x7380e323 devfreq_event_get_event -EXPORT_SYMBOL_GPL vmlinux 0x738e7d01 usb_deregister +EXPORT_SYMBOL_GPL vmlinux 0x732d503a regmap_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0x73335beb fwnode_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x733784e2 spi_bus_lock +EXPORT_SYMBOL_GPL vmlinux 0x7339c705 wm831x_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0x734acc15 pin_get_name +EXPORT_SYMBOL_GPL vmlinux 0x735275b4 pci_assign_unassigned_bridge_resources +EXPORT_SYMBOL_GPL vmlinux 0x73569549 skb_morph +EXPORT_SYMBOL_GPL vmlinux 0x735c98b3 wm8350_block_write +EXPORT_SYMBOL_GPL vmlinux 0x737c2832 pci_device_group +EXPORT_SYMBOL_GPL vmlinux 0x738035ab edac_pci_handle_npe +EXPORT_SYMBOL_GPL vmlinux 0x739af0cb input_device_enabled +EXPORT_SYMBOL_GPL vmlinux 0x73a16585 pci_hp_remove_module_link EXPORT_SYMBOL_GPL vmlinux 0x73a48b4a ata_sff_std_ports -EXPORT_SYMBOL_GPL vmlinux 0x73a8992f xhci_check_bandwidth -EXPORT_SYMBOL_GPL vmlinux 0x73b0b81a invalidate_inode_pages2 -EXPORT_SYMBOL_GPL vmlinux 0x73b6aed4 icc_get -EXPORT_SYMBOL_GPL vmlinux 0x73bc2c96 pm_clk_create +EXPORT_SYMBOL_GPL vmlinux 0x73b7f631 regulator_set_pull_down_regmap +EXPORT_SYMBOL_GPL vmlinux 0x73bad066 pci_epc_map_addr EXPORT_SYMBOL_GPL vmlinux 0x73c2554f __iowrite64_copy EXPORT_SYMBOL_GPL vmlinux 0x73cc8631 oiap -EXPORT_SYMBOL_GPL vmlinux 0x73d19421 mpc8xxx_spi_rx_buf_u8 -EXPORT_SYMBOL_GPL vmlinux 0x73e2d2bb pci_epf_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x73ec7291 dm_get_md -EXPORT_SYMBOL_GPL vmlinux 0x740366c6 ata_sas_slave_configure -EXPORT_SYMBOL_GPL vmlinux 0x7406544b bpf_prog_select_runtime -EXPORT_SYMBOL_GPL vmlinux 0x740b3281 of_pci_get_max_link_speed -EXPORT_SYMBOL_GPL vmlinux 0x740cd59d crypto_grab_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x74148813 sock_prot_inuse_add -EXPORT_SYMBOL_GPL vmlinux 0x7415e2e6 crypto_shoot_alg -EXPORT_SYMBOL_GPL vmlinux 0x741edd39 md_rdev_init -EXPORT_SYMBOL_GPL vmlinux 0x7425d4ba hypervisor_kobj -EXPORT_SYMBOL_GPL vmlinux 0x7426746b fscrypt_get_symlink -EXPORT_SYMBOL_GPL vmlinux 0x7433d831 __inet_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x73ccaca3 dm_post_suspending +EXPORT_SYMBOL_GPL vmlinux 0x73cf4979 uhci_check_and_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0x73d71551 clk_register_divider_table +EXPORT_SYMBOL_GPL vmlinux 0x73eb8f46 crypto_register_alg +EXPORT_SYMBOL_GPL vmlinux 0x73ec12f8 da903x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x74183312 xhci_reset_bandwidth +EXPORT_SYMBOL_GPL vmlinux 0x741c3f6c ata_sff_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x742082c2 crypto_register_aeads +EXPORT_SYMBOL_GPL vmlinux 0x742215d7 spi_mem_poll_status +EXPORT_SYMBOL_GPL vmlinux 0x742dd0cf fat_fill_super EXPORT_SYMBOL_GPL vmlinux 0x743a165e ata_pack_xfermask EXPORT_SYMBOL_GPL vmlinux 0x743b99d8 xenmem_reservation_increase EXPORT_SYMBOL_GPL vmlinux 0x74457e56 apei_resources_fini -EXPORT_SYMBOL_GPL vmlinux 0x744add6b usb_poison_urb -EXPORT_SYMBOL_GPL vmlinux 0x7461b1e5 kvm_get_kvm_safe -EXPORT_SYMBOL_GPL vmlinux 0x7461c726 irq_domain_alloc_irqs_parent -EXPORT_SYMBOL_GPL vmlinux 0x7465a673 security_inode_mkdir -EXPORT_SYMBOL_GPL vmlinux 0x749e0700 devm_bitmap_alloc +EXPORT_SYMBOL_GPL vmlinux 0x74493558 dma_buf_pin +EXPORT_SYMBOL_GPL vmlinux 0x7458ff87 clk_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0x745b1497 ip6_append_data +EXPORT_SYMBOL_GPL vmlinux 0x74797b5d fscrypt_ioctl_add_key +EXPORT_SYMBOL_GPL vmlinux 0x747f4efb kernfs_notify +EXPORT_SYMBOL_GPL vmlinux 0x74800512 kvm_vcpu_kick +EXPORT_SYMBOL_GPL vmlinux 0x7489c9db devlink_trap_policers_unregister +EXPORT_SYMBOL_GPL vmlinux 0x749af5de crypto_grab_aead EXPORT_SYMBOL_GPL vmlinux 0x74a22bb4 k3_udma_glue_push_rx_chn +EXPORT_SYMBOL_GPL vmlinux 0x74ad1c45 device_add_groups +EXPORT_SYMBOL_GPL vmlinux 0x74b53781 tty_buffer_set_limit EXPORT_SYMBOL_GPL vmlinux 0x74b5ea68 lcm_not_zero -EXPORT_SYMBOL_GPL vmlinux 0x74b8a818 fsnotify_init_mark +EXPORT_SYMBOL_GPL vmlinux 0x74b98cac led_trigger_blink EXPORT_SYMBOL_GPL vmlinux 0x74baf17a tracing_is_on +EXPORT_SYMBOL_GPL vmlinux 0x74c366f3 kvm_clear_guest EXPORT_SYMBOL_GPL vmlinux 0x74c7bffa stack_trace_snprint -EXPORT_SYMBOL_GPL vmlinux 0x74c88d17 is_current_mnt_ns -EXPORT_SYMBOL_GPL vmlinux 0x74ca2710 dpcon_reset -EXPORT_SYMBOL_GPL vmlinux 0x74cae43f platform_get_mem_or_io -EXPORT_SYMBOL_GPL vmlinux 0x74cb6498 skb_tstamp_tx -EXPORT_SYMBOL_GPL vmlinux 0x74d0a207 ipv6_proxy_select_ident -EXPORT_SYMBOL_GPL vmlinux 0x74e1fdcf dev_pm_opp_get_opp_table -EXPORT_SYMBOL_GPL vmlinux 0x74e2ce95 pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x74c7cd57 tty_kopen_shared +EXPORT_SYMBOL_GPL vmlinux 0x74cc01dc fsl_mc_bus_dprtc_type +EXPORT_SYMBOL_GPL vmlinux 0x74d6d042 crypto_ahash_final EXPORT_SYMBOL_GPL vmlinux 0x74e73871 housekeeping_overridden -EXPORT_SYMBOL_GPL vmlinux 0x74fd267e xfrm_state_afinfo_get_rcu -EXPORT_SYMBOL_GPL vmlinux 0x750139af pm_genpd_remove -EXPORT_SYMBOL_GPL vmlinux 0x750680ac ethnl_cable_test_pulse +EXPORT_SYMBOL_GPL vmlinux 0x74f021a9 debugfs_create_ulong +EXPORT_SYMBOL_GPL vmlinux 0x74f71fe3 skcipher_walk_virt +EXPORT_SYMBOL_GPL vmlinux 0x74fad924 serdev_device_open +EXPORT_SYMBOL_GPL vmlinux 0x74fdfa89 blk_mq_hctx_set_fq_lock_class +EXPORT_SYMBOL_GPL vmlinux 0x750e2fcb bsg_job_get EXPORT_SYMBOL_GPL vmlinux 0x75133f6e visitor128 -EXPORT_SYMBOL_GPL vmlinux 0x751fe2fb mmu_notifier_get_locked +EXPORT_SYMBOL_GPL vmlinux 0x75151b2d adp5520_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x751dc7c4 pm_generic_poweroff_late +EXPORT_SYMBOL_GPL vmlinux 0x75208ea2 blk_mq_sched_mark_restart_hctx EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status -EXPORT_SYMBOL_GPL vmlinux 0x7523d5dc fib_info_nh_uses_dev -EXPORT_SYMBOL_GPL vmlinux 0x75247b2c icc_get_name -EXPORT_SYMBOL_GPL vmlinux 0x7528dbc4 thermal_cooling_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x752e5d28 bpf_offload_dev_match -EXPORT_SYMBOL_GPL vmlinux 0x753773d1 fuse_conn_get -EXPORT_SYMBOL_GPL vmlinux 0x7558ab01 ata_scsi_change_queue_depth -EXPORT_SYMBOL_GPL vmlinux 0x756e1bc5 crypto_unregister_akcipher -EXPORT_SYMBOL_GPL vmlinux 0x7575450c sdio_release_irq -EXPORT_SYMBOL_GPL vmlinux 0x757db04c __pci_epf_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x75405ba5 i2c_adapter_depth +EXPORT_SYMBOL_GPL vmlinux 0x75574029 ahash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x755943e9 meson_pinctrl_probe +EXPORT_SYMBOL_GPL vmlinux 0x755a0f04 devm_usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0x755d27a0 __spi_alloc_controller +EXPORT_SYMBOL_GPL vmlinux 0x756138cf mtk_pinconf_adv_drive_set_raw +EXPORT_SYMBOL_GPL vmlinux 0x7561829b ata_sff_dma_pause +EXPORT_SYMBOL_GPL vmlinux 0x7575be61 bio_start_io_acct +EXPORT_SYMBOL_GPL vmlinux 0x75868051 dax_copy_to_iter EXPORT_SYMBOL_GPL vmlinux 0x7587986b synchronize_srcu EXPORT_SYMBOL_GPL vmlinux 0x758a43fe k3_ringacc_get_ring_irq_num -EXPORT_SYMBOL_GPL vmlinux 0x758b7b6d firmware_request_platform -EXPORT_SYMBOL_GPL vmlinux 0x758e55ad crypto_alloc_acomp +EXPORT_SYMBOL_GPL vmlinux 0x758d808a pci_user_read_config_dword EXPORT_SYMBOL_GPL vmlinux 0x759139cb of_pci_check_probe_only -EXPORT_SYMBOL_GPL vmlinux 0x75986232 dma_async_device_channel_unregister EXPORT_SYMBOL_GPL vmlinux 0x759bfe36 btree_destroy -EXPORT_SYMBOL_GPL vmlinux 0x75a233c4 __crypto_alloc_tfm -EXPORT_SYMBOL_GPL vmlinux 0x75be83ca debugfs_write_file_bool -EXPORT_SYMBOL_GPL vmlinux 0x75be966a usb_of_get_companion_dev +EXPORT_SYMBOL_GPL vmlinux 0x75a1a118 gpiochip_reqres_irq +EXPORT_SYMBOL_GPL vmlinux 0x75ac6ac6 sk_msg_is_readable +EXPORT_SYMBOL_GPL vmlinux 0x75c2c903 perf_pmu_migrate_context EXPORT_SYMBOL_GPL vmlinux 0x75cbfb09 add_interrupt_randomness -EXPORT_SYMBOL_GPL vmlinux 0x75ce263d pm_genpd_opp_to_performance_state EXPORT_SYMBOL_GPL vmlinux 0x75d968ee cleanup_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0x75da5239 dev_pm_domain_detach EXPORT_SYMBOL_GPL vmlinux 0x75dd4ebe of_overlay_remove -EXPORT_SYMBOL_GPL vmlinux 0x75ddaed9 device_store_int -EXPORT_SYMBOL_GPL vmlinux 0x75dee661 of_reserved_mem_device_init_by_name -EXPORT_SYMBOL_GPL vmlinux 0x75e3416d mtk_pinconf_adv_drive_get EXPORT_SYMBOL_GPL vmlinux 0x75e51945 __SCK__tp_func_error_report_end EXPORT_SYMBOL_GPL vmlinux 0x75e9c735 pci_ats_disabled EXPORT_SYMBOL_GPL vmlinux 0x75f0e875 xas_store +EXPORT_SYMBOL_GPL vmlinux 0x75f32a9c do_truncate +EXPORT_SYMBOL_GPL vmlinux 0x75f33848 tpm_pm_resume +EXPORT_SYMBOL_GPL vmlinux 0x75f66be0 dma_need_sync EXPORT_SYMBOL_GPL vmlinux 0x75fb9062 arch_timer_read_counter -EXPORT_SYMBOL_GPL vmlinux 0x76292d1e virtio_device_freeze -EXPORT_SYMBOL_GPL vmlinux 0x7641d990 of_changeset_action +EXPORT_SYMBOL_GPL vmlinux 0x760fedf9 genphy_c45_pma_suspend +EXPORT_SYMBOL_GPL vmlinux 0x761f6142 nvmem_cell_read_u64 +EXPORT_SYMBOL_GPL vmlinux 0x76311180 ata_sff_tf_load EXPORT_SYMBOL_GPL vmlinux 0x764ffefa page_reporting_register -EXPORT_SYMBOL_GPL vmlinux 0x7652ec80 spi_mem_dirmap_write -EXPORT_SYMBOL_GPL vmlinux 0x7652f15a ata_port_freeze -EXPORT_SYMBOL_GPL vmlinux 0x76566e68 devm_pci_epc_destroy -EXPORT_SYMBOL_GPL vmlinux 0x765a8caf xdp_rxq_info_unused +EXPORT_SYMBOL_GPL vmlinux 0x7653ad6c vmf_insert_pfn_pmd_prot +EXPORT_SYMBOL_GPL vmlinux 0x76619662 input_class +EXPORT_SYMBOL_GPL vmlinux 0x76633289 of_reserved_mem_device_init_by_idx EXPORT_SYMBOL_GPL vmlinux 0x7665a95b idr_remove EXPORT_SYMBOL_GPL vmlinux 0x7665ee72 crypto_dh_decode_key -EXPORT_SYMBOL_GPL vmlinux 0x76682776 mmu_notifier_put -EXPORT_SYMBOL_GPL vmlinux 0x766aed9b dma_buf_pin -EXPORT_SYMBOL_GPL vmlinux 0x7673f787 desc_to_gpio EXPORT_SYMBOL_GPL vmlinux 0x7681946c unregister_pm_notifier -EXPORT_SYMBOL_GPL vmlinux 0x7686fcb0 devm_hwmon_device_register_with_info +EXPORT_SYMBOL_GPL vmlinux 0x76963d34 __pm_stay_awake EXPORT_SYMBOL_GPL vmlinux 0x769cefb5 percpu_ref_switch_to_atomic EXPORT_SYMBOL_GPL vmlinux 0x769dec6a srcu_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0x76a36137 dma_can_mmap -EXPORT_SYMBOL_GPL vmlinux 0x76be00b3 regulator_set_bypass_regmap -EXPORT_SYMBOL_GPL vmlinux 0x76d5f266 pci_host_common_remove +EXPORT_SYMBOL_GPL vmlinux 0x76a03309 xen_xenbus_fops +EXPORT_SYMBOL_GPL vmlinux 0x76c2cdae pci_check_and_unmask_intx EXPORT_SYMBOL_GPL vmlinux 0x76d680f6 acpi_dev_resource_memory EXPORT_SYMBOL_GPL vmlinux 0x76d9b876 clk_set_rate +EXPORT_SYMBOL_GPL vmlinux 0x76e708b5 locks_release_private +EXPORT_SYMBOL_GPL vmlinux 0x76e7a74d fuse_dax_cancel_work EXPORT_SYMBOL_GPL vmlinux 0x76e85b92 gnttab_request_free_callback EXPORT_SYMBOL_GPL vmlinux 0x76eeeb0f sha384_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x76f8a106 crypto_ahash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x76fc6226 regulator_list_voltage +EXPORT_SYMBOL_GPL vmlinux 0x770d0fba platform_find_device_by_driver +EXPORT_SYMBOL_GPL vmlinux 0x770de5b2 __sock_recv_wifi_status EXPORT_SYMBOL_GPL vmlinux 0x7712771a unbind_from_irqhandler -EXPORT_SYMBOL_GPL vmlinux 0x771fc858 regulator_get_hardware_vsel_register -EXPORT_SYMBOL_GPL vmlinux 0x77206cf7 iommu_sva_unbind_gpasid +EXPORT_SYMBOL_GPL vmlinux 0x771875ef power_supply_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x7719d87c bsg_register_queue +EXPORT_SYMBOL_GPL vmlinux 0x771c014d bus_set_iommu +EXPORT_SYMBOL_GPL vmlinux 0x7720d805 platform_bus EXPORT_SYMBOL_GPL vmlinux 0x77222306 ring_buffer_read_page +EXPORT_SYMBOL_GPL vmlinux 0x7724b247 bio_start_io_acct_time +EXPORT_SYMBOL_GPL vmlinux 0x7727bb0b ata_sas_port_alloc EXPORT_SYMBOL_GPL vmlinux 0x7729cbdd task_handoff_register -EXPORT_SYMBOL_GPL vmlinux 0x772ae28f wm8350_block_read EXPORT_SYMBOL_GPL vmlinux 0x772b0f64 __wake_up_pollfree -EXPORT_SYMBOL_GPL vmlinux 0x773bee70 sched_trace_cfs_rq_avg EXPORT_SYMBOL_GPL vmlinux 0x774f16ef __tracepoint_cpu_idle -EXPORT_SYMBOL_GPL vmlinux 0x775217ba dev_pm_opp_find_freq_ceil -EXPORT_SYMBOL_GPL vmlinux 0x77577fc4 devm_thermal_of_cooling_device_register EXPORT_SYMBOL_GPL vmlinux 0x7757b51a clk_unregister -EXPORT_SYMBOL_GPL vmlinux 0x776a94d7 pci_dev_unlock -EXPORT_SYMBOL_GPL vmlinux 0x7777a65f gpiod_get_raw_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x77874d89 subsys_system_register +EXPORT_SYMBOL_GPL vmlinux 0x775fa52d devres_find +EXPORT_SYMBOL_GPL vmlinux 0x7773c49c usb_deregister_device_driver +EXPORT_SYMBOL_GPL vmlinux 0x7783f3d1 register_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x778e3e50 fib6_get_table +EXPORT_SYMBOL_GPL vmlinux 0x7791549b acpi_dev_clear_dependencies +EXPORT_SYMBOL_GPL vmlinux 0x7791590a __clk_determine_rate EXPORT_SYMBOL_GPL vmlinux 0x7791e066 dw_pcie_read -EXPORT_SYMBOL_GPL vmlinux 0x779dc677 clk_hw_unregister_divider -EXPORT_SYMBOL_GPL vmlinux 0x77ae417c sata_link_scr_lpm +EXPORT_SYMBOL_GPL vmlinux 0x7795ea2b fat_remove_entries +EXPORT_SYMBOL_GPL vmlinux 0x779cacf4 mptcp_subflow_request_sock_ops +EXPORT_SYMBOL_GPL vmlinux 0x77a5a7e3 icc_disable EXPORT_SYMBOL_GPL vmlinux 0x77ae495d usb_speed_string -EXPORT_SYMBOL_GPL vmlinux 0x77b8ec06 hwmon_device_register -EXPORT_SYMBOL_GPL vmlinux 0x77ce2b3e gpiochip_line_is_open_source -EXPORT_SYMBOL_GPL vmlinux 0x77d867ee vfs_read +EXPORT_SYMBOL_GPL vmlinux 0x77c21e68 inet6_sk_rebuild_header +EXPORT_SYMBOL_GPL vmlinux 0x77c5709f unix_outq_len +EXPORT_SYMBOL_GPL vmlinux 0x77c7d1eb inet_twsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x77d6fa07 spi_async +EXPORT_SYMBOL_GPL vmlinux 0x77d8f9a1 fat_time_unix2fat +EXPORT_SYMBOL_GPL vmlinux 0x77df96dc kthread_mod_delayed_work EXPORT_SYMBOL_GPL vmlinux 0x77e75be3 sfp_bus_put EXPORT_SYMBOL_GPL vmlinux 0x77ecf68d memalloc_socks_key -EXPORT_SYMBOL_GPL vmlinux 0x783634a3 rdev_get_name -EXPORT_SYMBOL_GPL vmlinux 0x783d634a acpi_dev_gpio_irq_get_by +EXPORT_SYMBOL_GPL vmlinux 0x77ed644e divider_ro_round_rate_parent +EXPORT_SYMBOL_GPL vmlinux 0x77f9b929 do_unbind_con_driver +EXPORT_SYMBOL_GPL vmlinux 0x78074934 platform_msi_domain_free_irqs +EXPORT_SYMBOL_GPL vmlinux 0x78107c80 iommu_uapi_cache_invalidate +EXPORT_SYMBOL_GPL vmlinux 0x781717be memunmap_pages +EXPORT_SYMBOL_GPL vmlinux 0x781a272b kill_device +EXPORT_SYMBOL_GPL vmlinux 0x781ae037 usb_hcd_unmap_urb_setup_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x782d6627 bio_iov_iter_get_pages +EXPORT_SYMBOL_GPL vmlinux 0x7835d9b0 ata_pci_device_do_resume +EXPORT_SYMBOL_GPL vmlinux 0x783936c8 find_vpid +EXPORT_SYMBOL_GPL vmlinux 0x7848cfda __irq_set_handler +EXPORT_SYMBOL_GPL vmlinux 0x784c9f78 tegra_xusb_padctl_legacy_probe EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available -EXPORT_SYMBOL_GPL vmlinux 0x786bde83 devres_add -EXPORT_SYMBOL_GPL vmlinux 0x7871cc39 devm_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x785c902f dmaengine_unmap_put +EXPORT_SYMBOL_GPL vmlinux 0x78686d4a pci_find_next_capability +EXPORT_SYMBOL_GPL vmlinux 0x7875a6d9 nvdimm_bus_register EXPORT_SYMBOL_GPL vmlinux 0x787c882b lzo1x_1_compress -EXPORT_SYMBOL_GPL vmlinux 0x787e2c98 dev_pm_opp_find_freq_ceil_by_volt EXPORT_SYMBOL_GPL vmlinux 0x788bfbad ring_buffer_empty +EXPORT_SYMBOL_GPL vmlinux 0x788c88b6 vring_transport_features +EXPORT_SYMBOL_GPL vmlinux 0x7896b0ec transport_setup_device EXPORT_SYMBOL_GPL vmlinux 0x789c73d9 rcu_cpu_stall_suppress_at_boot -EXPORT_SYMBOL_GPL vmlinux 0x78acb132 security_path_truncate -EXPORT_SYMBOL_GPL vmlinux 0x78ad415f dax_supported -EXPORT_SYMBOL_GPL vmlinux 0x78ad637e devfreq_get_devfreq_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x78cb0d67 thermal_zone_bind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0x78a09fdc nvdimm_bus_add_badrange +EXPORT_SYMBOL_GPL vmlinux 0x78b2f2e3 ata_cable_unknown EXPORT_SYMBOL_GPL vmlinux 0x78ddb76b dmi_match -EXPORT_SYMBOL_GPL vmlinux 0x78deac7d sk_msg_free -EXPORT_SYMBOL_GPL vmlinux 0x78dfef46 xhci_run -EXPORT_SYMBOL_GPL vmlinux 0x7903d4fe kvm_arch_ptp_get_crosststamp -EXPORT_SYMBOL_GPL vmlinux 0x790b706f acpi_is_pnp_device +EXPORT_SYMBOL_GPL vmlinux 0x78e217f4 ip_fib_metrics_init +EXPORT_SYMBOL_GPL vmlinux 0x78e6a4c0 dma_vunmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x78e9e4ba sock_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0x7904911b pci_ignore_hotplug EXPORT_SYMBOL_GPL vmlinux 0x790be0b9 usb_bus_idr -EXPORT_SYMBOL_GPL vmlinux 0x7913c1ea regmap_write +EXPORT_SYMBOL_GPL vmlinux 0x7912c017 rio_route_clr_table +EXPORT_SYMBOL_GPL vmlinux 0x7918d082 vcpu_load EXPORT_SYMBOL_GPL vmlinux 0x7918d817 memory_failure -EXPORT_SYMBOL_GPL vmlinux 0x79234743 regulator_list_voltage -EXPORT_SYMBOL_GPL vmlinux 0x792fd57c serial8250_em485_destroy +EXPORT_SYMBOL_GPL vmlinux 0x791b631a dev_pm_opp_sync_regulators 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 0x793fed59 kset_find_obj EXPORT_SYMBOL_GPL vmlinux 0x7944e0fc tracing_off EXPORT_SYMBOL_GPL vmlinux 0x79470a2c TSS_authhmac -EXPORT_SYMBOL_GPL vmlinux 0x79476197 kvm_is_visible_gfn EXPORT_SYMBOL_GPL vmlinux 0x794a0461 rockchip_pcie_disable_clocks EXPORT_SYMBOL_GPL vmlinux 0x794b7271 orderly_reboot -EXPORT_SYMBOL_GPL vmlinux 0x7954ea5f clk_register -EXPORT_SYMBOL_GPL vmlinux 0x7955fed4 int_active_memcg -EXPORT_SYMBOL_GPL vmlinux 0x795a23fe fat_dir_empty -EXPORT_SYMBOL_GPL vmlinux 0x796a76d0 tc3589x_block_write -EXPORT_SYMBOL_GPL vmlinux 0x797f7ede debugfs_create_file_unsafe +EXPORT_SYMBOL_GPL vmlinux 0x795df503 phy_get +EXPORT_SYMBOL_GPL vmlinux 0x797481bc acpi_spi_count_resources +EXPORT_SYMBOL_GPL vmlinux 0x79838e62 fscrypt_set_test_dummy_encryption +EXPORT_SYMBOL_GPL vmlinux 0x7985de6d blk_poll EXPORT_SYMBOL_GPL vmlinux 0x798b7682 klist_prev -EXPORT_SYMBOL_GPL vmlinux 0x7996ca19 qcom_smem_state_register -EXPORT_SYMBOL_GPL vmlinux 0x79983d05 irq_domain_update_bus_token -EXPORT_SYMBOL_GPL vmlinux 0x79988aac balloon_page_dequeue -EXPORT_SYMBOL_GPL vmlinux 0x799e024a nd_blk_memremap_flags -EXPORT_SYMBOL_GPL vmlinux 0x79a4d28a devm_kmemdup -EXPORT_SYMBOL_GPL vmlinux 0x79b73ecc devm_pwmchip_add +EXPORT_SYMBOL_GPL vmlinux 0x799349b8 serdev_device_set_flow_control +EXPORT_SYMBOL_GPL vmlinux 0x79a1562c usb_match_id +EXPORT_SYMBOL_GPL vmlinux 0x79a2f1c1 device_pm_wait_for_dev +EXPORT_SYMBOL_GPL vmlinux 0x79a38eea unregister_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x79a4cd1a pci_user_write_config_word +EXPORT_SYMBOL_GPL vmlinux 0x79a5bb82 da9052_adc_read_temp +EXPORT_SYMBOL_GPL vmlinux 0x79b5b337 device_get_phy_mode EXPORT_SYMBOL_GPL vmlinux 0x79bc842c usb_anchor_suspend_wakeups -EXPORT_SYMBOL_GPL vmlinux 0x79ca1a13 gpiod_set_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x79d35d9d ata_sff_lost_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x79bd335a ethnl_cable_test_pulse +EXPORT_SYMBOL_GPL vmlinux 0x79bfa914 gpiochip_get_desc +EXPORT_SYMBOL_GPL vmlinux 0x79d32e29 pm_genpd_init EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park -EXPORT_SYMBOL_GPL vmlinux 0x79e61f6f gpiochip_populate_parent_fwspec_twocell -EXPORT_SYMBOL_GPL vmlinux 0x79ec77d0 vring_create_virtqueue EXPORT_SYMBOL_GPL vmlinux 0x79f697e4 lzorle1x_1_compress -EXPORT_SYMBOL_GPL vmlinux 0x7a08bde9 perf_aux_output_begin -EXPORT_SYMBOL_GPL vmlinux 0x7a0e2d12 genphy_c45_aneg_done -EXPORT_SYMBOL_GPL vmlinux 0x7a1ea923 ata_sas_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x7a034e7c uart_console_write +EXPORT_SYMBOL_GPL vmlinux 0x7a0876a3 udp_abort +EXPORT_SYMBOL_GPL vmlinux 0x7a30ccde ata_cable_40wire +EXPORT_SYMBOL_GPL vmlinux 0x7a32e9c2 ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0x7a33dbe1 of_get_required_opp_performance_state EXPORT_SYMBOL_GPL vmlinux 0x7a33f504 power_supply_find_ocv2cap_table -EXPORT_SYMBOL_GPL vmlinux 0x7a415794 net_selftest +EXPORT_SYMBOL_GPL vmlinux 0x7a3e77fe is_swiotlb_active +EXPORT_SYMBOL_GPL vmlinux 0x7a40c032 dma_can_mmap +EXPORT_SYMBOL_GPL vmlinux 0x7a4d848d iomap_writepage EXPORT_SYMBOL_GPL vmlinux 0x7a672569 xen_xlate_map_ballooned_pages -EXPORT_SYMBOL_GPL vmlinux 0x7a6bf4d6 fwnode_property_read_u64_array -EXPORT_SYMBOL_GPL vmlinux 0x7a71b0a6 pci_set_pcie_reset_state EXPORT_SYMBOL_GPL vmlinux 0x7a73e605 wm831x_isinkv_values +EXPORT_SYMBOL_GPL vmlinux 0x7a7a2cc3 regulator_irq_helper EXPORT_SYMBOL_GPL vmlinux 0x7a81541b async_synchronize_cookie +EXPORT_SYMBOL_GPL vmlinux 0x7a85fef7 tty_buffer_request_room EXPORT_SYMBOL_GPL vmlinux 0x7a944007 rcu_idle_enter EXPORT_SYMBOL_GPL vmlinux 0x7a98f4b4 copy_from_user_nofault EXPORT_SYMBOL_GPL vmlinux 0x7a9e4c23 software_node_register_node_group -EXPORT_SYMBOL_GPL vmlinux 0x7aa3a61f validate_xmit_xfrm -EXPORT_SYMBOL_GPL vmlinux 0x7aad7d81 l3mdev_table_lookup_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7aa13008 ata_std_bios_param +EXPORT_SYMBOL_GPL vmlinux 0x7ab00254 dw_pcie_find_capability EXPORT_SYMBOL_GPL vmlinux 0x7ac10ad8 icst_clk_register EXPORT_SYMBOL_GPL vmlinux 0x7ac722bd phy_all_ports_features_array -EXPORT_SYMBOL_GPL vmlinux 0x7acfe37b fib_rules_register +EXPORT_SYMBOL_GPL vmlinux 0x7acd4f57 regulator_set_load 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 0x7adc486f kthread_cancel_work_sync -EXPORT_SYMBOL_GPL vmlinux 0x7ae490cd mnt_want_write_file -EXPORT_SYMBOL_GPL vmlinux 0x7aef68ac of_pci_dma_range_parser_init -EXPORT_SYMBOL_GPL vmlinux 0x7af8e4dd pci_hp_deregister +EXPORT_SYMBOL_GPL vmlinux 0x7ad36d10 gpiod_count +EXPORT_SYMBOL_GPL vmlinux 0x7ada841a regulator_list_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0x7adf16e8 mddev_init +EXPORT_SYMBOL_GPL vmlinux 0x7adfd4f5 usb_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x7af14067 crypto_register_algs EXPORT_SYMBOL_GPL vmlinux 0x7afcb7db __kprobe_event_add_fields EXPORT_SYMBOL_GPL vmlinux 0x7afe324e halt_poll_ns_grow -EXPORT_SYMBOL_GPL vmlinux 0x7b0af6d1 crypto_unregister_ahashes -EXPORT_SYMBOL_GPL vmlinux 0x7b0fcb76 pm_clk_init +EXPORT_SYMBOL_GPL vmlinux 0x7aff7776 gpiochip_line_is_valid +EXPORT_SYMBOL_GPL vmlinux 0x7b0527e7 wm831x_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0x7b053486 acpi_pci_find_root +EXPORT_SYMBOL_GPL vmlinux 0x7b11bc25 xfrm_audit_state_add +EXPORT_SYMBOL_GPL vmlinux 0x7b16ed58 acpi_get_pci_dev EXPORT_SYMBOL_GPL vmlinux 0x7b178afe unlock_system_sleep EXPORT_SYMBOL_GPL vmlinux 0x7b2163bd HYPERVISOR_tmem_op -EXPORT_SYMBOL_GPL vmlinux 0x7b23a383 crypto_alloc_ahash -EXPORT_SYMBOL_GPL vmlinux 0x7b355f1c pci_epc_mem_exit -EXPORT_SYMBOL_GPL vmlinux 0x7b387e9f fscrypt_d_revalidate -EXPORT_SYMBOL_GPL vmlinux 0x7b445206 iommu_fwspec_free +EXPORT_SYMBOL_GPL vmlinux 0x7b233ca3 devm_of_phy_get_by_index +EXPORT_SYMBOL_GPL vmlinux 0x7b2a1e00 serdev_device_write_room +EXPORT_SYMBOL_GPL vmlinux 0x7b44c888 gpiod_set_array_value EXPORT_SYMBOL_GPL vmlinux 0x7b5452b8 acpi_unregister_gsi -EXPORT_SYMBOL_GPL vmlinux 0x7b5a3738 phy_create_lookup +EXPORT_SYMBOL_GPL vmlinux 0x7b58fff7 irq_chip_retrigger_hierarchy EXPORT_SYMBOL_GPL vmlinux 0x7b5a4926 sha1_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x7b62697a ata_msleep +EXPORT_SYMBOL_GPL vmlinux 0x7b6ae56a led_init_default_state_get EXPORT_SYMBOL_GPL vmlinux 0x7b6f9536 acpi_register_wakeup_handler -EXPORT_SYMBOL_GPL vmlinux 0x7b7cf960 sdio_readl -EXPORT_SYMBOL_GPL vmlinux 0x7b81944d rio_mport_get_physefb -EXPORT_SYMBOL_GPL vmlinux 0x7b8899fd device_show_ulong +EXPORT_SYMBOL_GPL vmlinux 0x7b81ce28 ahci_platform_enable_phys EXPORT_SYMBOL_GPL vmlinux 0x7b8ea197 ethtool_params_from_link_mode EXPORT_SYMBOL_GPL vmlinux 0x7b90d1a9 bind_virq_to_irqhandler EXPORT_SYMBOL_GPL vmlinux 0x7b9793a2 get_cpu_idle_time_us +EXPORT_SYMBOL_GPL vmlinux 0x7b9c5f96 irq_domain_create_simple +EXPORT_SYMBOL_GPL vmlinux 0x7ba3d013 vfs_kern_mount +EXPORT_SYMBOL_GPL vmlinux 0x7baeb57f crypto_aead_decrypt EXPORT_SYMBOL_GPL vmlinux 0x7bb045a7 __request_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0x7bb44620 __phy_modify_mmd -EXPORT_SYMBOL_GPL vmlinux 0x7bbeb41e device_init_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x7bc8d081 pinctrl_generic_get_group_name -EXPORT_SYMBOL_GPL vmlinux 0x7bd0ef14 blk_ksm_reprogram_all_keys -EXPORT_SYMBOL_GPL vmlinux 0x7bd233d6 trace_event_buffer_lock_reserve -EXPORT_SYMBOL_GPL vmlinux 0x7bd44158 clk_register_fixed_rate -EXPORT_SYMBOL_GPL vmlinux 0x7be43e1f of_usb_get_dr_mode_by_phy -EXPORT_SYMBOL_GPL vmlinux 0x7c00d3a2 tty_encode_baud_rate -EXPORT_SYMBOL_GPL vmlinux 0x7c125774 fuse_do_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x7c1abe9c usb_acpi_set_power_state +EXPORT_SYMBOL_GPL vmlinux 0x7bc26b4e __traceiter_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0x7bcc4f71 devlink_port_attrs_set +EXPORT_SYMBOL_GPL vmlinux 0x7bd18560 __traceiter_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0x7beabca2 dm_send_uevents +EXPORT_SYMBOL_GPL vmlinux 0x7bf0a68e __hwspin_trylock +EXPORT_SYMBOL_GPL vmlinux 0x7c003efe gov_attr_set_put +EXPORT_SYMBOL_GPL vmlinux 0x7c034d8d dev_pm_opp_set_regulators +EXPORT_SYMBOL_GPL vmlinux 0x7c0a575c __pci_hp_register +EXPORT_SYMBOL_GPL vmlinux 0x7c12821d devm_clk_hw_get_clk +EXPORT_SYMBOL_GPL vmlinux 0x7c21ba4b mmu_notifier_range_update_to_read_only EXPORT_SYMBOL_GPL vmlinux 0x7c291e86 show_rcu_tasks_trace_gp_kthread -EXPORT_SYMBOL_GPL vmlinux 0x7c310f39 acpi_subsys_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0x7c34fd36 virtqueue_get_vring +EXPORT_SYMBOL_GPL vmlinux 0x7c2bf1d7 fib_alias_hw_flags_set +EXPORT_SYMBOL_GPL vmlinux 0x7c2ce82a led_set_brightness_sync EXPORT_SYMBOL_GPL vmlinux 0x7c3d8a4b icc_bulk_put -EXPORT_SYMBOL_GPL vmlinux 0x7c4a884b tcp_sendpage_locked +EXPORT_SYMBOL_GPL vmlinux 0x7c5cd5de extcon_sync +EXPORT_SYMBOL_GPL vmlinux 0x7c5d4e90 dma_mmap_noncontiguous EXPORT_SYMBOL_GPL vmlinux 0x7c5f3711 ioasid_unregister_allocator -EXPORT_SYMBOL_GPL vmlinux 0x7c607680 event_triggers_post_call EXPORT_SYMBOL_GPL vmlinux 0x7c626556 list_lru_destroy -EXPORT_SYMBOL_GPL vmlinux 0x7c62d94a nvdimm_badblocks_populate -EXPORT_SYMBOL_GPL vmlinux 0x7c6d5d07 ahci_platform_enable_regulators -EXPORT_SYMBOL_GPL vmlinux 0x7c6ddc19 regmap_get_raw_read_max -EXPORT_SYMBOL_GPL vmlinux 0x7c781979 dax_iomap_fault -EXPORT_SYMBOL_GPL vmlinux 0x7c7bfbcd crypto_register_skciphers -EXPORT_SYMBOL_GPL vmlinux 0x7c8d255b ata_sas_port_stop -EXPORT_SYMBOL_GPL vmlinux 0x7c8e63cc xfrm_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0x7c64fbb2 pci_load_and_free_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x7c66d639 device_initialize +EXPORT_SYMBOL_GPL vmlinux 0x7c6af600 debugfs_create_blob +EXPORT_SYMBOL_GPL vmlinux 0x7c6ea2c2 thermal_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x7c7bd630 net_ns_get_ownership +EXPORT_SYMBOL_GPL vmlinux 0x7c851ef0 tpm_chip_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7c8b06f0 key_set_timeout EXPORT_SYMBOL_GPL vmlinux 0x7c94c99a kvm_release_pfn_dirty EXPORT_SYMBOL_GPL vmlinux 0x7c983a5d dmi_walk -EXPORT_SYMBOL_GPL vmlinux 0x7c997343 md_find_rdev_nr_rcu EXPORT_SYMBOL_GPL vmlinux 0x7c9a7371 clk_prepare -EXPORT_SYMBOL_GPL vmlinux 0x7ca6e9fa of_msi_configure +EXPORT_SYMBOL_GPL vmlinux 0x7ca1701c regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x7ca6ca28 __pci_epf_register_driver EXPORT_SYMBOL_GPL vmlinux 0x7ca85256 ms_hyperv -EXPORT_SYMBOL_GPL vmlinux 0x7ca8df42 xenbus_dev_changed -EXPORT_SYMBOL_GPL vmlinux 0x7cb66f5c pci_dev_lock +EXPORT_SYMBOL_GPL vmlinux 0x7cadb122 blk_mq_queue_inflight +EXPORT_SYMBOL_GPL vmlinux 0x7cb6a691 pci_user_write_config_byte EXPORT_SYMBOL_GPL vmlinux 0x7cb803de btree_grim_visitor -EXPORT_SYMBOL_GPL vmlinux 0x7cbb3ee7 fat_time_unix2fat -EXPORT_SYMBOL_GPL vmlinux 0x7cc0c96a bpf_trace_run12 -EXPORT_SYMBOL_GPL vmlinux 0x7cc4f334 bus_get_device_klist +EXPORT_SYMBOL_GPL vmlinux 0x7cba4530 spi_sync_locked +EXPORT_SYMBOL_GPL vmlinux 0x7cca4b0d dprc_cleanup EXPORT_SYMBOL_GPL vmlinux 0x7cceaf92 zs_pool_stats -EXPORT_SYMBOL_GPL vmlinux 0x7cd096b3 get_governor_parent_kobj EXPORT_SYMBOL_GPL vmlinux 0x7cd6f042 cpufreq_get_current_driver -EXPORT_SYMBOL_GPL vmlinux 0x7cead41b inet_ctl_sock_create EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0x7cf2d842 ehci_handshake -EXPORT_SYMBOL_GPL vmlinux 0x7cf9c428 edac_device_handle_ue_count -EXPORT_SYMBOL_GPL vmlinux 0x7cfbe10a __traceiter_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0x7cef7b0e devm_of_led_get EXPORT_SYMBOL_GPL vmlinux 0x7d00c65b nd_synchronize -EXPORT_SYMBOL_GPL vmlinux 0x7d154956 cros_ec_get_sensor_count +EXPORT_SYMBOL_GPL vmlinux 0x7d1626d0 power_supply_unregister EXPORT_SYMBOL_GPL vmlinux 0x7d1bb1d4 tnum_strn -EXPORT_SYMBOL_GPL vmlinux 0x7d2587f6 of_nvmem_device_get -EXPORT_SYMBOL_GPL vmlinux 0x7d2f5bb3 skb_segment_list +EXPORT_SYMBOL_GPL vmlinux 0x7d2465da devlink_port_params_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7d265e7b kobj_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0x7d2dce21 debugfs_real_fops +EXPORT_SYMBOL_GPL vmlinux 0x7d32e77c dma_buf_detach +EXPORT_SYMBOL_GPL vmlinux 0x7d33195e reset_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7d3506b9 crypto_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x7d43d815 rt_mutex_unlock EXPORT_SYMBOL_GPL vmlinux 0x7d471321 zynqmp_pm_pinctrl_release EXPORT_SYMBOL_GPL vmlinux 0x7d491683 free_iova_fast EXPORT_SYMBOL_GPL vmlinux 0x7d558968 trace_seq_puts EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq -EXPORT_SYMBOL_GPL vmlinux 0x7d6cccca input_ff_erase -EXPORT_SYMBOL_GPL vmlinux 0x7d6e6226 cdrom_read_tocentry -EXPORT_SYMBOL_GPL vmlinux 0x7d78baed xfrm_audit_state_replay -EXPORT_SYMBOL_GPL vmlinux 0x7d7c313c regulator_register -EXPORT_SYMBOL_GPL vmlinux 0x7d8435cc ata_scsi_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x7d872cd1 devm_acpi_dev_remove_driver_gpios -EXPORT_SYMBOL_GPL vmlinux 0x7da5a6e4 __clk_hw_register_divider -EXPORT_SYMBOL_GPL vmlinux 0x7da7275b devfreq_event_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0x7dae9300 xenbus_match -EXPORT_SYMBOL_GPL vmlinux 0x7dbd740e nvdimm_setup_pfn -EXPORT_SYMBOL_GPL vmlinux 0x7dc28850 device_set_of_node_from_dev -EXPORT_SYMBOL_GPL vmlinux 0x7dd0a145 fsl_mc_portal_reset -EXPORT_SYMBOL_GPL vmlinux 0x7dd2c759 thermal_zone_get_offset -EXPORT_SYMBOL_GPL vmlinux 0x7dd8458c switchdev_bridge_port_offload +EXPORT_SYMBOL_GPL vmlinux 0x7d5cc16d page_cache_async_ra +EXPORT_SYMBOL_GPL vmlinux 0x7d5d9984 pci_epc_clear_bar +EXPORT_SYMBOL_GPL vmlinux 0x7d67e5f1 kvm_vcpu_write_guest_page +EXPORT_SYMBOL_GPL vmlinux 0x7d6dbab3 bgpio_init +EXPORT_SYMBOL_GPL vmlinux 0x7d7191cd show_class_attr_string +EXPORT_SYMBOL_GPL vmlinux 0x7d7ad4f1 ata_scsi_port_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x7d86d334 iomap_file_unshare +EXPORT_SYMBOL_GPL vmlinux 0x7da3d89d locks_alloc_lock +EXPORT_SYMBOL_GPL vmlinux 0x7daa1dc3 of_property_read_variable_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x7dbf4088 __dax_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x7dc08b9a meson_pmx_get_funcs_count +EXPORT_SYMBOL_GPL vmlinux 0x7dc0ac79 devm_gpio_request_one EXPORT_SYMBOL_GPL vmlinux 0x7dda30af unregister_tracepoint_module_notifier -EXPORT_SYMBOL_GPL vmlinux 0x7de4dc81 i2c_acpi_client_count +EXPORT_SYMBOL_GPL vmlinux 0x7de17cbf irq_chip_request_resources_parent 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 0x7de8ea1c led_blink_set -EXPORT_SYMBOL_GPL vmlinux 0x7dfe9180 driver_create_file -EXPORT_SYMBOL_GPL vmlinux 0x7e088138 iommu_domain_alloc -EXPORT_SYMBOL_GPL vmlinux 0x7e0dc0ae pci_stop_root_bus -EXPORT_SYMBOL_GPL vmlinux 0x7e110572 devm_kfree -EXPORT_SYMBOL_GPL vmlinux 0x7e2430d8 sk_psock_msg_verdict -EXPORT_SYMBOL_GPL vmlinux 0x7e25010c of_irq_to_resource_table -EXPORT_SYMBOL_GPL vmlinux 0x7e25f2fd clk_hw_unregister -EXPORT_SYMBOL_GPL vmlinux 0x7e357990 regulator_list_hardware_vsel +EXPORT_SYMBOL_GPL vmlinux 0x7de7fc26 udp_cmsg_send +EXPORT_SYMBOL_GPL vmlinux 0x7e0197b3 __synth_event_gen_cmd_start +EXPORT_SYMBOL_GPL vmlinux 0x7e0a118c regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x7e2d121f dw_pcie_write_dbi EXPORT_SYMBOL_GPL vmlinux 0x7e3bdecd __ftrace_vprintk -EXPORT_SYMBOL_GPL vmlinux 0x7e43d051 iomap_writepages +EXPORT_SYMBOL_GPL vmlinux 0x7e3d6d24 mmu_interval_notifier_remove +EXPORT_SYMBOL_GPL vmlinux 0x7e47f089 usb_block_urb +EXPORT_SYMBOL_GPL vmlinux 0x7e51b8ba scsi_register_device_handler EXPORT_SYMBOL_GPL vmlinux 0x7e5db80b pstore_name_to_type +EXPORT_SYMBOL_GPL vmlinux 0x7e5df3e1 regulator_set_voltage_sel_regmap EXPORT_SYMBOL_GPL vmlinux 0x7e64181d usb_calc_bus_time -EXPORT_SYMBOL_GPL vmlinux 0x7e669cff dev_pm_opp_register_set_opp_helper -EXPORT_SYMBOL_GPL vmlinux 0x7e6c032f elv_rqhash_add -EXPORT_SYMBOL_GPL vmlinux 0x7e6f064c synth_event_trace_start +EXPORT_SYMBOL_GPL vmlinux 0x7e734705 pci_hp_deregister +EXPORT_SYMBOL_GPL vmlinux 0x7e791456 transport_add_device +EXPORT_SYMBOL_GPL vmlinux 0x7e79af36 clk_register_fixed_factor EXPORT_SYMBOL_GPL vmlinux 0x7e7a47c9 pci_acpi_clear_companion_lookup_hook EXPORT_SYMBOL_GPL vmlinux 0x7e7e3f58 ring_buffer_reset_cpu -EXPORT_SYMBOL_GPL vmlinux 0x7e8a5d82 usb_phy_roothub_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7e838de5 phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0x7e8c07f4 sdio_disable_func EXPORT_SYMBOL_GPL vmlinux 0x7e8d8619 usb_anchor_empty EXPORT_SYMBOL_GPL vmlinux 0x7e917894 __SCK__tp_func_unmap +EXPORT_SYMBOL_GPL vmlinux 0x7e93e9bf iommu_sva_find +EXPORT_SYMBOL_GPL vmlinux 0x7ea3679d fscrypt_mergeable_bio_bh EXPORT_SYMBOL_GPL vmlinux 0x7ea75c24 __wake_up_locked_key_bookmark EXPORT_SYMBOL_GPL vmlinux 0x7eb1795e __tracepoint_detach_device_from_domain EXPORT_SYMBOL_GPL vmlinux 0x7eb808d0 add_cpu -EXPORT_SYMBOL_GPL vmlinux 0x7ec514e0 tps80031_ext_power_req_config +EXPORT_SYMBOL_GPL vmlinux 0x7ebfc01d disk_update_readahead +EXPORT_SYMBOL_GPL vmlinux 0x7ec73d54 tty_port_link_device EXPORT_SYMBOL_GPL vmlinux 0x7ec814de inet_hashinfo_init -EXPORT_SYMBOL_GPL vmlinux 0x7ecc1d44 crypto_unregister_aead -EXPORT_SYMBOL_GPL vmlinux 0x7ed5ce76 pci_dev_trylock -EXPORT_SYMBOL_GPL vmlinux 0x7ee15630 tpm_send -EXPORT_SYMBOL_GPL vmlinux 0x7ee90e8c iomap_truncate_page +EXPORT_SYMBOL_GPL vmlinux 0x7ecda54e regmap_get_raw_read_max +EXPORT_SYMBOL_GPL vmlinux 0x7ece1613 ping_close +EXPORT_SYMBOL_GPL vmlinux 0x7ed4de73 dma_mmap_pages +EXPORT_SYMBOL_GPL vmlinux 0x7ee80411 bpf_trace_run11 EXPORT_SYMBOL_GPL vmlinux 0x7eea6b8b pcap_adc_async -EXPORT_SYMBOL_GPL vmlinux 0x7ef6a690 mmu_interval_read_begin -EXPORT_SYMBOL_GPL vmlinux 0x7efc0731 kobject_rename -EXPORT_SYMBOL_GPL vmlinux 0x7f0a944b xenbus_watch_pathfmt -EXPORT_SYMBOL_GPL vmlinux 0x7f11572b rockchip_register_restart_notifier -EXPORT_SYMBOL_GPL vmlinux 0x7f198705 fork_usermode_driver -EXPORT_SYMBOL_GPL vmlinux 0x7f2eb447 sata_async_notification -EXPORT_SYMBOL_GPL vmlinux 0x7f2f2d4d sdio_release_host -EXPORT_SYMBOL_GPL vmlinux 0x7f3d6079 dt_init_idle_driver -EXPORT_SYMBOL_GPL vmlinux 0x7f3eaa69 xen_xlate_unmap_gfn_range -EXPORT_SYMBOL_GPL vmlinux 0x7f40c416 __pci_hp_register -EXPORT_SYMBOL_GPL vmlinux 0x7f5a8be4 do_unregister_con_driver -EXPORT_SYMBOL_GPL vmlinux 0x7f5f100b ipv6_stub -EXPORT_SYMBOL_GPL vmlinux 0x7f679440 xhci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x7ef22ed0 get_net_ns_by_fd +EXPORT_SYMBOL_GPL vmlinux 0x7f14aa6b fwnode_count_parents +EXPORT_SYMBOL_GPL vmlinux 0x7f2cf556 pci_epf_create +EXPORT_SYMBOL_GPL vmlinux 0x7f35160c __nvdimm_create +EXPORT_SYMBOL_GPL vmlinux 0x7f36f2f3 serial8250_do_set_mctrl +EXPORT_SYMBOL_GPL vmlinux 0x7f5aa40e sdio_readsb +EXPORT_SYMBOL_GPL vmlinux 0x7f608549 acpi_dev_get_resources EXPORT_SYMBOL_GPL vmlinux 0x7f6cee89 rhashtable_free_and_destroy -EXPORT_SYMBOL_GPL vmlinux 0x7f74eadc usb_role_switch_find_by_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x7f7a71bf ata_sas_port_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7f6e278f pci_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x7f70d593 usb_alloc_coherent EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata +EXPORT_SYMBOL_GPL vmlinux 0x7f8f63a0 nvdimm_flush +EXPORT_SYMBOL_GPL vmlinux 0x7fa3a27a yield_to +EXPORT_SYMBOL_GPL vmlinux 0x7fa61f99 __reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x7fa74ee1 power_supply_class EXPORT_SYMBOL_GPL vmlinux 0x7fa96509 erst_get_record_id_next -EXPORT_SYMBOL_GPL vmlinux 0x7fa99e2e lwtunnel_state_alloc -EXPORT_SYMBOL_GPL vmlinux 0x7fb01263 led_sysfs_disable -EXPORT_SYMBOL_GPL vmlinux 0x7fd02d91 __clk_hw_register_mux -EXPORT_SYMBOL_GPL vmlinux 0x7feeac9b iomap_ioend_try_merge +EXPORT_SYMBOL_GPL vmlinux 0x7fb04b3e devlink_dpipe_headers_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fc4dc83 tpm_transmit_cmd +EXPORT_SYMBOL_GPL vmlinux 0x7fd696c3 __pm_relax +EXPORT_SYMBOL_GPL vmlinux 0x7fe04d6c kstrdup_quotable_file EXPORT_SYMBOL_GPL vmlinux 0x7ff19c40 zynqmp_pm_set_requirement -EXPORT_SYMBOL_GPL vmlinux 0x7ff5f949 pinmux_generic_get_function_name -EXPORT_SYMBOL_GPL vmlinux 0x7ff8331f watchdog_init_timeout -EXPORT_SYMBOL_GPL vmlinux 0x7ffacd0f pci_find_ext_capability EXPORT_SYMBOL_GPL vmlinux 0x80135182 k3_ringacc_ring_pop_tail -EXPORT_SYMBOL_GPL vmlinux 0x801a8937 __udp_gso_segment -EXPORT_SYMBOL_GPL vmlinux 0x80308fa5 lwtunnel_encap_del_ops +EXPORT_SYMBOL_GPL vmlinux 0x802922cc mtk_pinconf_drive_get_rev1 +EXPORT_SYMBOL_GPL vmlinux 0x802e92e8 usb_put_hcd +EXPORT_SYMBOL_GPL vmlinux 0x80355267 component_add_typed EXPORT_SYMBOL_GPL vmlinux 0x8035bed7 rockchip_clk_protect_critical -EXPORT_SYMBOL_GPL vmlinux 0x8043e7fc __lock_page_killable +EXPORT_SYMBOL_GPL vmlinux 0x803d3de2 pci_enable_rom EXPORT_SYMBOL_GPL vmlinux 0x805667cf devlink_fmsg_u64_put -EXPORT_SYMBOL_GPL vmlinux 0x8057f976 tty_init_termios -EXPORT_SYMBOL_GPL vmlinux 0x805e1b6e devm_device_remove_groups EXPORT_SYMBOL_GPL vmlinux 0x806327ea imx_clk_hw_cpu -EXPORT_SYMBOL_GPL vmlinux 0x8065beee inet6_csk_addr2sockaddr -EXPORT_SYMBOL_GPL vmlinux 0x806ab899 sysfs_add_link_to_group -EXPORT_SYMBOL_GPL vmlinux 0x80764c41 ata_bmdma_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x8071e53d ncsi_start_dev +EXPORT_SYMBOL_GPL vmlinux 0x8074e551 lwtunnel_build_state EXPORT_SYMBOL_GPL vmlinux 0x807766ea usb_scuttle_anchored_urbs EXPORT_SYMBOL_GPL vmlinux 0x807fdcc4 call_rcu_tasks_rude -EXPORT_SYMBOL_GPL vmlinux 0x80817d00 tty_find_polling_driver -EXPORT_SYMBOL_GPL vmlinux 0x80842b44 ima_inode_hash EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested -EXPORT_SYMBOL_GPL vmlinux 0x808fcdd9 devm_nvmem_cell_get -EXPORT_SYMBOL_GPL vmlinux 0x809d3438 dma_buf_move_notify +EXPORT_SYMBOL_GPL vmlinux 0x8090d19d pm_generic_thaw_early +EXPORT_SYMBOL_GPL vmlinux 0x809b676e skb_zerocopy +EXPORT_SYMBOL_GPL vmlinux 0x80b6175f platform_get_irq_optional +EXPORT_SYMBOL_GPL vmlinux 0x80b66a48 fuse_conn_destroy EXPORT_SYMBOL_GPL vmlinux 0x80badff4 __tracepoint_block_unplug -EXPORT_SYMBOL_GPL vmlinux 0x80c56597 pm_runtime_force_resume +EXPORT_SYMBOL_GPL vmlinux 0x80bc9860 tpm2_probe EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close EXPORT_SYMBOL_GPL vmlinux 0x80d5e57a mpi_free -EXPORT_SYMBOL_GPL vmlinux 0x80e517f7 dm_disk -EXPORT_SYMBOL_GPL vmlinux 0x80ed7ca5 ahci_dev_classify -EXPORT_SYMBOL_GPL vmlinux 0x80ee0cf1 iommu_aux_attach_device -EXPORT_SYMBOL_GPL vmlinux 0x80f6d714 ata_scsi_port_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x810ee5e6 class_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x80f7a5fb vp_modern_set_queue_size +EXPORT_SYMBOL_GPL vmlinux 0x810be8cc imx_pinctrl_probe +EXPORT_SYMBOL_GPL vmlinux 0x810cc3d9 __udp_gso_segment EXPORT_SYMBOL_GPL vmlinux 0x811dc334 usb_unregister_notify -EXPORT_SYMBOL_GPL vmlinux 0x813056a1 gpio_to_desc -EXPORT_SYMBOL_GPL vmlinux 0x81354334 blk_mq_alloc_sq_tag_set +EXPORT_SYMBOL_GPL vmlinux 0x8134c55f rio_pw_enable EXPORT_SYMBOL_GPL vmlinux 0x813cdf4a __free_iova -EXPORT_SYMBOL_GPL vmlinux 0x81473679 bpf_prog_add -EXPORT_SYMBOL_GPL vmlinux 0x814ede0a ip6_input -EXPORT_SYMBOL_GPL vmlinux 0x815093e5 pci_ignore_hotplug +EXPORT_SYMBOL_GPL vmlinux 0x813fd9bf gpiod_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x81414c12 irq_set_chained_handler_and_data EXPORT_SYMBOL_GPL vmlinux 0x815588a6 clk_enable -EXPORT_SYMBOL_GPL vmlinux 0x8156a860 mmu_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x815f4124 fwnode_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x81599c0c usb_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0x815e0772 tty_port_unregister_device EXPORT_SYMBOL_GPL vmlinux 0x815fda83 sed_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x8164e149 __page_file_mapping EXPORT_SYMBOL_GPL vmlinux 0x816a41ca cpufreq_update_limits -EXPORT_SYMBOL_GPL vmlinux 0x8175af2c pci_slots_kset -EXPORT_SYMBOL_GPL vmlinux 0x817915d5 wm831x_reg_lock -EXPORT_SYMBOL_GPL vmlinux 0x817ccd1d acpi_dev_get_dma_resources +EXPORT_SYMBOL_GPL vmlinux 0x817a8a8a kvm_vcpu_read_guest EXPORT_SYMBOL_GPL vmlinux 0x8180cede asn1_encode_sequence -EXPORT_SYMBOL_GPL vmlinux 0x81902964 blk_crypto_evict_key +EXPORT_SYMBOL_GPL vmlinux 0x81826254 blk_execute_rq_nowait +EXPORT_SYMBOL_GPL vmlinux 0x8197d282 blk_mq_freeze_queue_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x819d339c cgroup_path_ns EXPORT_SYMBOL_GPL vmlinux 0x819d72cb klist_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0x819ff688 devm_acpi_dma_controller_register EXPORT_SYMBOL_GPL vmlinux 0x81a7f541 percpu_ref_init EXPORT_SYMBOL_GPL vmlinux 0x81aa78d8 zynqmp_pm_aes_engine -EXPORT_SYMBOL_GPL vmlinux 0x81ae3623 efivar_entry_delete EXPORT_SYMBOL_GPL vmlinux 0x81b03377 efivar_entry_set_safe +EXPORT_SYMBOL_GPL vmlinux 0x81c3c54a devm_usb_get_phy_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x81c7817b tegra_mc_get_emem_device_count EXPORT_SYMBOL_GPL vmlinux 0x81cf5282 trace_seq_bprintf -EXPORT_SYMBOL_GPL vmlinux 0x81d56581 dm_device_name -EXPORT_SYMBOL_GPL vmlinux 0x81e624e4 bus_create_file -EXPORT_SYMBOL_GPL vmlinux 0x81eccbfb rio_inb_pwrite_handler EXPORT_SYMBOL_GPL vmlinux 0x81f372a2 unregister_ftrace_export -EXPORT_SYMBOL_GPL vmlinux 0x82014cae devm_platform_get_and_ioremap_resource +EXPORT_SYMBOL_GPL vmlinux 0x81fc3258 usb_free_coherent EXPORT_SYMBOL_GPL vmlinux 0x82092899 badrange_forget -EXPORT_SYMBOL_GPL vmlinux 0x821739a6 iommu_device_link -EXPORT_SYMBOL_GPL vmlinux 0x822035e6 nfs_ssc_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8209f212 device_init_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x820d74ab strp_done +EXPORT_SYMBOL_GPL vmlinux 0x821090f9 gpiod_is_active_low +EXPORT_SYMBOL_GPL vmlinux 0x821352ee alloc_page_buffers +EXPORT_SYMBOL_GPL vmlinux 0x82197a84 pci_epc_start EXPORT_SYMBOL_GPL vmlinux 0x8220a38e k3_ringacc_get_ring_id EXPORT_SYMBOL_GPL vmlinux 0x82226c53 pinctrl_unregister_mappings -EXPORT_SYMBOL_GPL vmlinux 0x8227d103 md_bitmap_copy_from_slot +EXPORT_SYMBOL_GPL vmlinux 0x822b7061 mbox_chan_txdone EXPORT_SYMBOL_GPL vmlinux 0x823eae06 blocking_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x82510bca dev_pm_opp_attach_genpd -EXPORT_SYMBOL_GPL vmlinux 0x825d166e scsi_dh_attached_handler_name -EXPORT_SYMBOL_GPL vmlinux 0x826c85bf skb_gso_validate_network_len +EXPORT_SYMBOL_GPL vmlinux 0x824463a7 pcie_port_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x82448cf9 devm_irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x824f8b98 sdio_get_host_pm_caps +EXPORT_SYMBOL_GPL vmlinux 0x82632e87 __fl6_sock_lookup +EXPORT_SYMBOL_GPL vmlinux 0x8279fe69 devm_device_add_group EXPORT_SYMBOL_GPL vmlinux 0x827e61f8 acpi_has_watchdog -EXPORT_SYMBOL_GPL vmlinux 0x827fafdb usb_match_id -EXPORT_SYMBOL_GPL vmlinux 0x828297dd __udp4_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x82841b86 screen_glyph -EXPORT_SYMBOL_GPL vmlinux 0x82870e99 crypto_drop_spawn EXPORT_SYMBOL_GPL vmlinux 0x828e22f4 hrtimer_forward +EXPORT_SYMBOL_GPL vmlinux 0x82a2dcb5 dev_fwnode EXPORT_SYMBOL_GPL vmlinux 0x82a80545 __SCK__tp_func_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0x82b0dfb1 ata_scsi_unlock_native_capacity +EXPORT_SYMBOL_GPL vmlinux 0x82b791fb is_current_mnt_ns +EXPORT_SYMBOL_GPL vmlinux 0x82b9cb16 scsi_internal_device_block_nowait EXPORT_SYMBOL_GPL vmlinux 0x82bbf30b __tracepoint_map +EXPORT_SYMBOL_GPL vmlinux 0x82cd0d98 dev_pm_opp_put_supported_hw EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure -EXPORT_SYMBOL_GPL vmlinux 0x82da5968 pcie_bus_configure_settings -EXPORT_SYMBOL_GPL vmlinux 0x82dd51e7 xdp_rxq_info_reg_mem_model -EXPORT_SYMBOL_GPL vmlinux 0x82eabbf5 regmap_add_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0x82eacbf6 devm_thermal_zone_of_sensor_register -EXPORT_SYMBOL_GPL vmlinux 0x82f3105a acpi_processor_get_performance_info -EXPORT_SYMBOL_GPL vmlinux 0x82fad612 wm8350_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x82ecfae2 usb_of_get_interface_node +EXPORT_SYMBOL_GPL vmlinux 0x82eefdfa fwnode_handle_get +EXPORT_SYMBOL_GPL vmlinux 0x82fc6c35 fat_update_time +EXPORT_SYMBOL_GPL vmlinux 0x82ffb294 pm_runtime_force_resume +EXPORT_SYMBOL_GPL vmlinux 0x8314cfa6 iommu_dev_feature_enabled EXPORT_SYMBOL_GPL vmlinux 0x83202334 alloc_iova_fast -EXPORT_SYMBOL_GPL vmlinux 0x83216a2a wm8350_block_write -EXPORT_SYMBOL_GPL vmlinux 0x832975cd irq_domain_free_irqs_common -EXPORT_SYMBOL_GPL vmlinux 0x8333568e anon_inode_getfile +EXPORT_SYMBOL_GPL vmlinux 0x8326959c vfs_test_lock +EXPORT_SYMBOL_GPL vmlinux 0x8328c156 pwm_get EXPORT_SYMBOL_GPL vmlinux 0x8339df73 klist_add_behind -EXPORT_SYMBOL_GPL vmlinux 0x8344bb5a led_set_brightness_nosleep +EXPORT_SYMBOL_GPL vmlinux 0x83419e96 power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0x834779a4 fsverity_ioctl_read_metadata EXPORT_SYMBOL_GPL vmlinux 0x8349a895 nvmem_device_put EXPORT_SYMBOL_GPL vmlinux 0x834ff60e start_poll_synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0x83522726 rtc_initialize_alarm EXPORT_SYMBOL_GPL vmlinux 0x8353dfff acpi_os_get_iomem -EXPORT_SYMBOL_GPL vmlinux 0x839e36a5 platform_find_device_by_driver -EXPORT_SYMBOL_GPL vmlinux 0x83df5d2b ata_dev_next -EXPORT_SYMBOL_GPL vmlinux 0x83e6951b mmc_send_tuning -EXPORT_SYMBOL_GPL vmlinux 0x840d82ad pci_d3cold_disable -EXPORT_SYMBOL_GPL vmlinux 0x840f8e22 spi_mem_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x836017ab regmap_noinc_write +EXPORT_SYMBOL_GPL vmlinux 0x83617f27 nvmem_cell_get +EXPORT_SYMBOL_GPL vmlinux 0x836d9b2c bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0x83700395 fsl_mc_bus_dpdmux_type +EXPORT_SYMBOL_GPL vmlinux 0x83789e55 sysfs_group_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x83a889ea kvm_write_guest_cached +EXPORT_SYMBOL_GPL vmlinux 0x83a90a01 fuse_dev_release +EXPORT_SYMBOL_GPL vmlinux 0x83a969ca ohci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x83ab5b17 class_find_device +EXPORT_SYMBOL_GPL vmlinux 0x83c52c74 thermal_zone_device_disable +EXPORT_SYMBOL_GPL vmlinux 0x83d8449f add_to_page_cache_lru +EXPORT_SYMBOL_GPL vmlinux 0x83f9f4e8 copy_user_highpage +EXPORT_SYMBOL_GPL vmlinux 0x8400be2a xenbus_map_ring_valloc +EXPORT_SYMBOL_GPL vmlinux 0x840e51fc hvc_alloc +EXPORT_SYMBOL_GPL vmlinux 0x840ea636 spi_mem_dirmap_destroy EXPORT_SYMBOL_GPL vmlinux 0x84106f36 devlink_trap_ctx_priv -EXPORT_SYMBOL_GPL vmlinux 0x8425222d __sock_recv_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x841d2f09 phy_power_on EXPORT_SYMBOL_GPL vmlinux 0x84264ced fs_umode_to_ftype -EXPORT_SYMBOL_GPL vmlinux 0x842816a7 devm_platform_ioremap_resource +EXPORT_SYMBOL_GPL vmlinux 0x842b0223 class_interface_unregister EXPORT_SYMBOL_GPL vmlinux 0x842f046d usb_poison_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x843d5fc4 alloc_dax +EXPORT_SYMBOL_GPL vmlinux 0x843a23d5 pinctrl_utils_reserve_map EXPORT_SYMBOL_GPL vmlinux 0x843d70ef acpi_is_root_bridge -EXPORT_SYMBOL_GPL vmlinux 0x844143f4 pci_epc_map_msi_irq -EXPORT_SYMBOL_GPL vmlinux 0x844c4077 net_ns_type_operations +EXPORT_SYMBOL_GPL vmlinux 0x843e6b11 blk_clear_pm_only +EXPORT_SYMBOL_GPL vmlinux 0x8442535f platform_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8444d9d7 irq_chip_unmask_parent +EXPORT_SYMBOL_GPL vmlinux 0x8445a89a crypto_register_acomp +EXPORT_SYMBOL_GPL vmlinux 0x8445b70e get_cpu_device +EXPORT_SYMBOL_GPL vmlinux 0x844620ee devlink_reload_disable +EXPORT_SYMBOL_GPL vmlinux 0x844be1e7 blk_mq_unfreeze_queue EXPORT_SYMBOL_GPL vmlinux 0x844cb904 mtk_mutex_remove_comp EXPORT_SYMBOL_GPL vmlinux 0x84502a47 blk_status_to_errno -EXPORT_SYMBOL_GPL vmlinux 0x8457eed4 serial8250_rpm_put +EXPORT_SYMBOL_GPL vmlinux 0x8458b948 sk_msg_clone EXPORT_SYMBOL_GPL vmlinux 0x845dbf3b scatterwalk_map_and_copy EXPORT_SYMBOL_GPL vmlinux 0x8462cb62 atapi_cmd_type -EXPORT_SYMBOL_GPL vmlinux 0x8468d170 unix_inq_len -EXPORT_SYMBOL_GPL vmlinux 0x846b66eb tty_buffer_space_avail -EXPORT_SYMBOL_GPL vmlinux 0x8470e434 ipv6_dup_options -EXPORT_SYMBOL_GPL vmlinux 0x84757a74 sdio_f0_readb -EXPORT_SYMBOL_GPL vmlinux 0x847c679b tcp_reno_cong_avoid -EXPORT_SYMBOL_GPL vmlinux 0x84a86820 acpi_cppc_processor_exit +EXPORT_SYMBOL_GPL vmlinux 0x84732232 __mnt_is_readonly +EXPORT_SYMBOL_GPL vmlinux 0x849d9799 dev_pm_opp_of_add_table +EXPORT_SYMBOL_GPL vmlinux 0x84a43ddf genpd_dev_pm_attach +EXPORT_SYMBOL_GPL vmlinux 0x84a6d2c5 blk_mq_complete_request_remote EXPORT_SYMBOL_GPL vmlinux 0x84a8d0eb of_changeset_revert -EXPORT_SYMBOL_GPL vmlinux 0x84b8eb52 tty_port_link_device -EXPORT_SYMBOL_GPL vmlinux 0x84bc85bd acpi_device_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0x84b20518 pinctrl_pm_select_idle_state +EXPORT_SYMBOL_GPL vmlinux 0x84b2c0ba dm_suspended +EXPORT_SYMBOL_GPL vmlinux 0x84b2f3c7 pm_clk_remove_clk +EXPORT_SYMBOL_GPL vmlinux 0x84b890fe is_nvdimm_sync +EXPORT_SYMBOL_GPL vmlinux 0x84d4dabf pm_stay_awake EXPORT_SYMBOL_GPL vmlinux 0x84ef27f5 synth_event_add_fields +EXPORT_SYMBOL_GPL vmlinux 0x84f9a57e __kernel_write +EXPORT_SYMBOL_GPL vmlinux 0x84fd7bf8 sock_diag_register_inet_compat EXPORT_SYMBOL_GPL vmlinux 0x8506baa8 clk_unregister_gate -EXPORT_SYMBOL_GPL vmlinux 0x850a3375 fib_nl_delrule EXPORT_SYMBOL_GPL vmlinux 0x850bb6db devlink_health_reporter_destroy -EXPORT_SYMBOL_GPL vmlinux 0x850d3bae gpiod_to_chip +EXPORT_SYMBOL_GPL vmlinux 0x851e310f iommu_present EXPORT_SYMBOL_GPL vmlinux 0x851e6003 usb_phy_roothub_calibrate +EXPORT_SYMBOL_GPL vmlinux 0x851f00d2 ata_sff_hsm_move EXPORT_SYMBOL_GPL vmlinux 0x851fe124 __SCK__tp_func_fib6_table_lookup -EXPORT_SYMBOL_GPL vmlinux 0x85249e66 clk_regmap_gate_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0x852b0477 inet_csk_route_req -EXPORT_SYMBOL_GPL vmlinux 0x853bf359 platform_irq_count -EXPORT_SYMBOL_GPL vmlinux 0x854078f7 get_device_system_crosststamp -EXPORT_SYMBOL_GPL vmlinux 0x85534b65 cpufreq_dbs_governor_init +EXPORT_SYMBOL_GPL vmlinux 0x852bc315 vp_modern_get_driver_features +EXPORT_SYMBOL_GPL vmlinux 0x85409403 efivar_entry_remove +EXPORT_SYMBOL_GPL vmlinux 0x854a0da2 fsnotify_find_mark EXPORT_SYMBOL_GPL vmlinux 0x85540ebc nvmem_cell_put -EXPORT_SYMBOL_GPL vmlinux 0x85563bea is_dock_device +EXPORT_SYMBOL_GPL vmlinux 0x85541a16 __netpoll_setup +EXPORT_SYMBOL_GPL vmlinux 0x85595910 vp_modern_map_vq_notify +EXPORT_SYMBOL_GPL vmlinux 0x85615c0d of_reset_control_array_get +EXPORT_SYMBOL_GPL vmlinux 0x8565b419 fwnode_remove_software_node +EXPORT_SYMBOL_GPL vmlinux 0x857d742c clk_hw_round_rate +EXPORT_SYMBOL_GPL vmlinux 0x85854ac4 ahci_shost_attrs EXPORT_SYMBOL_GPL vmlinux 0x85862277 ioasid_find -EXPORT_SYMBOL_GPL vmlinux 0x858d7816 pm_clk_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x858b752d blk_ksm_is_superset +EXPORT_SYMBOL_GPL vmlinux 0x858fb476 sdio_retune_crc_enable EXPORT_SYMBOL_GPL vmlinux 0x85935a61 acpi_dev_irq_flags -EXPORT_SYMBOL_GPL vmlinux 0x85bb0ffe i2c_new_client_device -EXPORT_SYMBOL_GPL vmlinux 0x85c11a02 __pci_hp_initialize +EXPORT_SYMBOL_GPL vmlinux 0x8595dc47 uart_console_device +EXPORT_SYMBOL_GPL vmlinux 0x85970896 ahci_reset_controller EXPORT_SYMBOL_GPL vmlinux 0x85c54b61 efivar_validate -EXPORT_SYMBOL_GPL vmlinux 0x85cbd99a class_dev_iter_next -EXPORT_SYMBOL_GPL vmlinux 0x85d4bac1 __of_phy_provider_register -EXPORT_SYMBOL_GPL vmlinux 0x85df532d meson_pinctrl_probe -EXPORT_SYMBOL_GPL vmlinux 0x85e082e4 kvm_write_guest_cached +EXPORT_SYMBOL_GPL vmlinux 0x85d275f2 bpfilter_ops +EXPORT_SYMBOL_GPL vmlinux 0x85d3566c vga_default_device +EXPORT_SYMBOL_GPL vmlinux 0x85eb1e85 pm_generic_poweroff_noirq EXPORT_SYMBOL_GPL vmlinux 0x85eed1be iopf_queue_discard_partial -EXPORT_SYMBOL_GPL vmlinux 0x85f4eb17 mtk_pinconf_adv_drive_set_raw -EXPORT_SYMBOL_GPL vmlinux 0x8620216e device_match_any +EXPORT_SYMBOL_GPL vmlinux 0x85fdd66d bd_link_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0x8607d65c icc_node_add +EXPORT_SYMBOL_GPL vmlinux 0x861c5862 bpf_prog_destroy EXPORT_SYMBOL_GPL vmlinux 0x862258db timecounter_init +EXPORT_SYMBOL_GPL vmlinux 0x862406d1 serdev_controller_alloc EXPORT_SYMBOL_GPL vmlinux 0x862bb17b linear_range_values_in_range_array -EXPORT_SYMBOL_GPL vmlinux 0x863003d7 anon_inode_getfd -EXPORT_SYMBOL_GPL vmlinux 0x864697d6 clk_register_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0x864afd8e genpd_dev_pm_attach +EXPORT_SYMBOL_GPL vmlinux 0x863d42da gpiod_to_chip +EXPORT_SYMBOL_GPL vmlinux 0x86510ec8 hvc_instantiate +EXPORT_SYMBOL_GPL vmlinux 0x865302d5 bio_clone_blkg_association EXPORT_SYMBOL_GPL vmlinux 0x86585a33 devlink_fmsg_obj_nest_start +EXPORT_SYMBOL_GPL vmlinux 0x865e195f crypto_alloc_base EXPORT_SYMBOL_GPL vmlinux 0x86623fd7 notify_remote_via_irq -EXPORT_SYMBOL_GPL vmlinux 0x866c9799 rtc_set_alarm EXPORT_SYMBOL_GPL vmlinux 0x866ca6a3 gnttab_page_cache_init EXPORT_SYMBOL_GPL vmlinux 0x86700220 acpi_get_cpuid +EXPORT_SYMBOL_GPL vmlinux 0x867219e7 bpf_trace_run8 +EXPORT_SYMBOL_GPL vmlinux 0x8672b173 __platform_driver_probe +EXPORT_SYMBOL_GPL vmlinux 0x8674ce1d scsi_internal_device_unblock_nowait EXPORT_SYMBOL_GPL vmlinux 0x8677245d unregister_switchdev_blocking_notifier +EXPORT_SYMBOL_GPL vmlinux 0x86782b65 blk_queue_required_elevator_features +EXPORT_SYMBOL_GPL vmlinux 0x86847277 ahci_platform_suspend +EXPORT_SYMBOL_GPL vmlinux 0x86876f40 devlink_dpipe_entry_ctx_append EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get -EXPORT_SYMBOL_GPL vmlinux 0x869128e4 mtk_pinconf_bias_set_combo -EXPORT_SYMBOL_GPL vmlinux 0x86a8c556 irq_domain_remove -EXPORT_SYMBOL_GPL vmlinux 0x86a99e71 ip6_sk_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x86a769e6 inet_csk_listen_start +EXPORT_SYMBOL_GPL vmlinux 0x86a794ca fsl_mc_bus_dpseci_type +EXPORT_SYMBOL_GPL vmlinux 0x86b0ed2c bio_associate_blkg_from_css EXPORT_SYMBOL_GPL vmlinux 0x86b13d2a usb_unpoison_anchored_urbs EXPORT_SYMBOL_GPL vmlinux 0x86b1ceb3 tegra210_set_sata_pll_seq_sw -EXPORT_SYMBOL_GPL vmlinux 0x86b9e47d gpiod_get_optional -EXPORT_SYMBOL_GPL vmlinux 0x86ba9f06 pinctrl_find_and_add_gpio_range -EXPORT_SYMBOL_GPL vmlinux 0x86bc344a iommu_fwspec_add_ids EXPORT_SYMBOL_GPL vmlinux 0x86c02001 ipi_send_mask +EXPORT_SYMBOL_GPL vmlinux 0x86c048b9 power_supply_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x86c3d950 cros_ec_check_features EXPORT_SYMBOL_GPL vmlinux 0x86c43a8c cper_estatus_check EXPORT_SYMBOL_GPL vmlinux 0x86c961b3 __set_dax_synchronous +EXPORT_SYMBOL_GPL vmlinux 0x86d623d4 tc3589x_block_read EXPORT_SYMBOL_GPL vmlinux 0x86dda6ef rtm_getroute_parse_ip_proto -EXPORT_SYMBOL_GPL vmlinux 0x86e3ef72 access_process_vm +EXPORT_SYMBOL_GPL vmlinux 0x86e3b285 spi_setup +EXPORT_SYMBOL_GPL vmlinux 0x86ea451c fsl_mc_bus_dpsw_type EXPORT_SYMBOL_GPL vmlinux 0x86f6b99d synchronize_rcu_expedited EXPORT_SYMBOL_GPL vmlinux 0x86f85114 net_dec_egress_queue -EXPORT_SYMBOL_GPL vmlinux 0x87058613 rio_del_mport_pw_handler -EXPORT_SYMBOL_GPL vmlinux 0x870681c5 pm_wakeup_dev_event +EXPORT_SYMBOL_GPL vmlinux 0x86f892bb regmap_register_patch +EXPORT_SYMBOL_GPL vmlinux 0x87059457 regulator_set_suspend_voltage +EXPORT_SYMBOL_GPL vmlinux 0x8706594f da9052_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0x870ce881 lp8788_read_byte EXPORT_SYMBOL_GPL vmlinux 0x870e16b7 xen_test_irq_shared -EXPORT_SYMBOL_GPL vmlinux 0x87161412 meson_clk_mpll_ops -EXPORT_SYMBOL_GPL vmlinux 0x871c8c1b acpi_subsys_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0x871d63cd blkdev_zone_mgmt -EXPORT_SYMBOL_GPL vmlinux 0x8733eacb mmc_cmdq_enable -EXPORT_SYMBOL_GPL vmlinux 0x874cf9c6 devm_clk_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x875533ad of_pci_find_child_device +EXPORT_SYMBOL_GPL vmlinux 0x8715bae2 inet_csk_route_req +EXPORT_SYMBOL_GPL vmlinux 0x872b4fcf fsverity_ioctl_measure EXPORT_SYMBOL_GPL vmlinux 0x875582b7 nvmem_del_cell_table -EXPORT_SYMBOL_GPL vmlinux 0x87803d2f pci_enable_sriov -EXPORT_SYMBOL_GPL vmlinux 0x87a1658d tpm_chip_unregister -EXPORT_SYMBOL_GPL vmlinux 0x87a1697b fsl_mc_cleanup_irq_pool -EXPORT_SYMBOL_GPL vmlinux 0x87a3c096 usb_hcd_map_urb_for_dma -EXPORT_SYMBOL_GPL vmlinux 0x87a856b3 dequeue_signal -EXPORT_SYMBOL_GPL vmlinux 0x87a97fb6 of_icc_xlate_onecell -EXPORT_SYMBOL_GPL vmlinux 0x87ab8435 fuse_dev_release -EXPORT_SYMBOL_GPL vmlinux 0x87bd393c blk_set_pm_only -EXPORT_SYMBOL_GPL vmlinux 0x87c07b11 dbs_update +EXPORT_SYMBOL_GPL vmlinux 0x875763e2 kvm_write_guest_page +EXPORT_SYMBOL_GPL vmlinux 0x8762daa3 relay_late_setup_files +EXPORT_SYMBOL_GPL vmlinux 0x8765d725 pinctrl_generic_get_group_name +EXPORT_SYMBOL_GPL vmlinux 0x876a6abf dax_region_put +EXPORT_SYMBOL_GPL vmlinux 0x8772a926 usb_get_maximum_ssp_rate +EXPORT_SYMBOL_GPL vmlinux 0x87a0859b PageHuge +EXPORT_SYMBOL_GPL vmlinux 0x87a781ae dpbp_enable +EXPORT_SYMBOL_GPL vmlinux 0x87b29fc0 fsl_mc_resource_free +EXPORT_SYMBOL_GPL vmlinux 0x87bc82d3 alloc_dax_region +EXPORT_SYMBOL_GPL vmlinux 0x87c05af6 hvc_remove EXPORT_SYMBOL_GPL vmlinux 0x87ce0be2 free_iova -EXPORT_SYMBOL_GPL vmlinux 0x87eab659 device_remove_properties -EXPORT_SYMBOL_GPL vmlinux 0x87ebbf64 crypto_unregister_ahash -EXPORT_SYMBOL_GPL vmlinux 0x87f71a78 rio_free_net -EXPORT_SYMBOL_GPL vmlinux 0x87f7f46e pci_epf_unbind -EXPORT_SYMBOL_GPL vmlinux 0x87fff0b5 pm_generic_poweroff_late -EXPORT_SYMBOL_GPL vmlinux 0x88022d66 ata_host_alloc_pinfo +EXPORT_SYMBOL_GPL vmlinux 0x87d4fbfa devm_thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x87d6a032 lwtunnel_get_encap_size +EXPORT_SYMBOL_GPL vmlinux 0x87d77205 ata_link_next +EXPORT_SYMBOL_GPL vmlinux 0x87f27cf9 ata_dev_set_feature +EXPORT_SYMBOL_GPL vmlinux 0x8802bc62 device_match_any +EXPORT_SYMBOL_GPL vmlinux 0x880d7b99 of_icc_get_from_provider EXPORT_SYMBOL_GPL vmlinux 0x8810e36e pci_bridge_emul_conf_read -EXPORT_SYMBOL_GPL vmlinux 0x883c4337 platform_msi_domain_free_irqs -EXPORT_SYMBOL_GPL vmlinux 0x8841e092 irq_set_default_host -EXPORT_SYMBOL_GPL vmlinux 0x8842f1cc devm_clk_hw_register -EXPORT_SYMBOL_GPL vmlinux 0x8853712c fwnode_get_named_gpiod +EXPORT_SYMBOL_GPL vmlinux 0x8817b2ec tcpv6_prot +EXPORT_SYMBOL_GPL vmlinux 0x8827fd6b bpf_verifier_log_write EXPORT_SYMBOL_GPL vmlinux 0x885528a6 ring_buffer_discard_commit -EXPORT_SYMBOL_GPL vmlinux 0x88586f5f vp_modern_get_queue_size -EXPORT_SYMBOL_GPL vmlinux 0x88591deb simple_attr_open -EXPORT_SYMBOL_GPL vmlinux 0x88697778 dev_pm_opp_set_supported_hw -EXPORT_SYMBOL_GPL vmlinux 0x8871196b wakeup_source_destroy -EXPORT_SYMBOL_GPL vmlinux 0x887b47d3 mtk_pinconf_adv_pull_set +EXPORT_SYMBOL_GPL vmlinux 0x885bde05 pinctrl_dev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x885eb46e edac_mc_handle_error +EXPORT_SYMBOL_GPL vmlinux 0x886022e3 pci_find_next_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0x886bf999 of_thermal_get_trip_points +EXPORT_SYMBOL_GPL vmlinux 0x8874cc79 ahci_do_softreset +EXPORT_SYMBOL_GPL vmlinux 0x8888a622 debugfs_create_size_t EXPORT_SYMBOL_GPL vmlinux 0x888c5be5 irq_bypass_register_consumer -EXPORT_SYMBOL_GPL vmlinux 0x888e13ab spi_mem_dirmap_read -EXPORT_SYMBOL_GPL vmlinux 0x888fd11e ata_sff_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0x8890be5e dma_buf_vmap +EXPORT_SYMBOL_GPL vmlinux 0x88a6a7ba iomap_zero_range EXPORT_SYMBOL_GPL vmlinux 0x88ab6fe3 kgdb_active +EXPORT_SYMBOL_GPL vmlinux 0x88b46036 blk_steal_bios EXPORT_SYMBOL_GPL vmlinux 0x88b4ae92 ring_buffer_normalize_time_stamp -EXPORT_SYMBOL_GPL vmlinux 0x88b64e85 add_to_page_cache_lru -EXPORT_SYMBOL_GPL vmlinux 0x88b989c3 of_usb_host_tpl_support -EXPORT_SYMBOL_GPL vmlinux 0x88c806e3 class_for_each_device -EXPORT_SYMBOL_GPL vmlinux 0x88c947e4 devm_spi_register_controller +EXPORT_SYMBOL_GPL vmlinux 0x88c0f584 irq_set_chip_and_handler_name EXPORT_SYMBOL_GPL vmlinux 0x88cd7a9a k3_ringacc_ring_get_occ -EXPORT_SYMBOL_GPL vmlinux 0x88dec2f2 kvm_get_kvm -EXPORT_SYMBOL_GPL vmlinux 0x890798b9 security_file_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x890bc5ef ahci_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x88d8287a serial8250_init_port +EXPORT_SYMBOL_GPL vmlinux 0x88db0d9d fsverity_verify_page +EXPORT_SYMBOL_GPL vmlinux 0x88e38af7 pci_epc_put +EXPORT_SYMBOL_GPL vmlinux 0x88f0a38f handle_mm_fault +EXPORT_SYMBOL_GPL vmlinux 0x88f98aae mbox_controller_register EXPORT_SYMBOL_GPL vmlinux 0x890f4f97 __kprobe_event_gen_cmd_start EXPORT_SYMBOL_GPL vmlinux 0x890fa0fa btree_get_prev -EXPORT_SYMBOL_GPL vmlinux 0x891140ba find_vpid +EXPORT_SYMBOL_GPL vmlinux 0x890fab61 clk_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x8915350f devm_clk_notifier_register EXPORT_SYMBOL_GPL vmlinux 0x891a5a7f gnttab_max_grant_frames +EXPORT_SYMBOL_GPL vmlinux 0x891b14f5 key_type_logon EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state EXPORT_SYMBOL_GPL vmlinux 0x893abbdd devlink_fmsg_u32_pair_put -EXPORT_SYMBOL_GPL vmlinux 0x8943dee8 devm_of_icc_get 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 0x8972d5ba switchdev_handle_port_obj_add -EXPORT_SYMBOL_GPL vmlinux 0x898768df bd_link_disk_holder -EXPORT_SYMBOL_GPL vmlinux 0x899114db fib_rule_matchall -EXPORT_SYMBOL_GPL vmlinux 0x89a0c605 __regmap_init_spi -EXPORT_SYMBOL_GPL vmlinux 0x89a181b6 misc_cg_try_charge +EXPORT_SYMBOL_GPL vmlinux 0x896496e4 dev_pm_opp_of_get_opp_desc_node +EXPORT_SYMBOL_GPL vmlinux 0x896f04c2 mptcp_pm_get_local_addr_max +EXPORT_SYMBOL_GPL vmlinux 0x8971a99a __list_lru_init +EXPORT_SYMBOL_GPL vmlinux 0x897ac0df usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0x897b61d4 regulator_allow_bypass +EXPORT_SYMBOL_GPL vmlinux 0x8997f39a rio_mport_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x899a66ff pci_pri_supported EXPORT_SYMBOL_GPL vmlinux 0x89a4476d HYPERVISOR_multicall EXPORT_SYMBOL_GPL vmlinux 0x89ae7aa0 rsa_parse_pub_key -EXPORT_SYMBOL_GPL vmlinux 0x89b5502f dev_pm_domain_attach_by_id +EXPORT_SYMBOL_GPL vmlinux 0x89b5f66b gpiod_set_raw_array_value_cansleep EXPORT_SYMBOL_GPL vmlinux 0x89bbafc6 usb_register_notify -EXPORT_SYMBOL_GPL vmlinux 0x89bd082b skb_mpls_push EXPORT_SYMBOL_GPL vmlinux 0x89c429e4 __tracepoint_mc_event -EXPORT_SYMBOL_GPL vmlinux 0x89d9de13 clk_gate_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0x89dccddf bpf_trace_run11 +EXPORT_SYMBOL_GPL vmlinux 0x89c46a4f tracing_cond_snapshot_data EXPORT_SYMBOL_GPL vmlinux 0x89e340cf acpi_bus_get_ejd -EXPORT_SYMBOL_GPL vmlinux 0x8a0458e1 usb_sg_init -EXPORT_SYMBOL_GPL vmlinux 0x8a1357cd virtqueue_get_desc_addr -EXPORT_SYMBOL_GPL vmlinux 0x8a15adec blk_mq_quiesce_queue_nowait -EXPORT_SYMBOL_GPL vmlinux 0x8a162d52 device_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0x89f0b8f6 usb_kill_urb +EXPORT_SYMBOL_GPL vmlinux 0x89f1a22e __blkg_prfill_u64 +EXPORT_SYMBOL_GPL vmlinux 0x89fc5f19 security_path_link +EXPORT_SYMBOL_GPL vmlinux 0x8a027883 subsys_virtual_register +EXPORT_SYMBOL_GPL vmlinux 0x8a1cdbbe nexthop_find_by_id EXPORT_SYMBOL_GPL vmlinux 0x8a240bff __xas_next -EXPORT_SYMBOL_GPL vmlinux 0x8a2d27b4 dmaengine_unmap_put -EXPORT_SYMBOL_GPL vmlinux 0x8a30e390 crypto_hash_walk_first -EXPORT_SYMBOL_GPL vmlinux 0x8a32c69c kvm_write_guest_offset_cached -EXPORT_SYMBOL_GPL vmlinux 0x8a347769 __mmc_send_status +EXPORT_SYMBOL_GPL vmlinux 0x8a2aed2c dst_cache_set_ip6 +EXPORT_SYMBOL_GPL vmlinux 0x8a3d5680 blkg_lookup_slowpath +EXPORT_SYMBOL_GPL vmlinux 0x8a3ed081 pm_generic_freeze_noirq EXPORT_SYMBOL_GPL vmlinux 0x8a3f84ba linear_range_get_selector_low -EXPORT_SYMBOL_GPL vmlinux 0x8a3fa928 cgroup_get_from_fd EXPORT_SYMBOL_GPL vmlinux 0x8a45a555 acpi_unregister_wakeup_handler +EXPORT_SYMBOL_GPL vmlinux 0x8a46bc36 perf_event_create_kernel_counter +EXPORT_SYMBOL_GPL vmlinux 0x8a490414 usb_autopm_get_interface_async EXPORT_SYMBOL_GPL vmlinux 0x8a554a36 mpc8xxx_spi_strmode +EXPORT_SYMBOL_GPL vmlinux 0x8a59448f edac_mc_find_csrow_by_page EXPORT_SYMBOL_GPL vmlinux 0x8a62b81b sfp_upstream_stop -EXPORT_SYMBOL_GPL vmlinux 0x8a6dc074 acpi_cppc_processor_probe -EXPORT_SYMBOL_GPL vmlinux 0x8a82eff5 devm_namespace_enable +EXPORT_SYMBOL_GPL vmlinux 0x8a6d8145 __traceiter_pelt_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x8a75ffbc pm_clk_add EXPORT_SYMBOL_GPL vmlinux 0x8a83fb45 mpi_point_free_parts -EXPORT_SYMBOL_GPL vmlinux 0x8a977ac9 umd_cleanup_helper -EXPORT_SYMBOL_GPL vmlinux 0x8a99cc0a devlink_params_register -EXPORT_SYMBOL_GPL vmlinux 0x8ab75949 fsl_mc_bus_dpsw_type +EXPORT_SYMBOL_GPL vmlinux 0x8a8e2fb0 pm_generic_restore +EXPORT_SYMBOL_GPL vmlinux 0x8aa6e85f virtio_break_device +EXPORT_SYMBOL_GPL vmlinux 0x8ab8e419 xenbus_dev_fatal EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files -EXPORT_SYMBOL_GPL vmlinux 0x8b0691dc fwnode_get_next_child_node -EXPORT_SYMBOL_GPL vmlinux 0x8b0fdf2b sysfs_remove_link +EXPORT_SYMBOL_GPL vmlinux 0x8ac45132 crypto_register_acomps +EXPORT_SYMBOL_GPL vmlinux 0x8ad6f79b virtqueue_add_sgs +EXPORT_SYMBOL_GPL vmlinux 0x8ad89070 posix_clock_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8ae26a8f irq_domain_pop_irq +EXPORT_SYMBOL_GPL vmlinux 0x8af9f3ad ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0x8afcc7a7 nd_cmd_in_size +EXPORT_SYMBOL_GPL vmlinux 0x8b0f568e fscrypt_ioctl_get_nonce EXPORT_SYMBOL_GPL vmlinux 0x8b149c36 clk_is_match -EXPORT_SYMBOL_GPL vmlinux 0x8b39136c crypto_register_acomps -EXPORT_SYMBOL_GPL vmlinux 0x8b4317d6 __traceiter_detach_device_from_domain -EXPORT_SYMBOL_GPL vmlinux 0x8b458d8f led_trigger_rename_static -EXPORT_SYMBOL_GPL vmlinux 0x8b45da5a put_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0x8b4b626e of_pci_parse_bus_range -EXPORT_SYMBOL_GPL vmlinux 0x8b63f212 of_reset_control_array_get +EXPORT_SYMBOL_GPL vmlinux 0x8b149f95 percpu_up_write +EXPORT_SYMBOL_GPL vmlinux 0x8b206796 pci_cfg_access_trylock +EXPORT_SYMBOL_GPL vmlinux 0x8b250423 fsl_mc_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x8b3ede0a acpi_dma_request_slave_chan_by_name +EXPORT_SYMBOL_GPL vmlinux 0x8b3fa2c1 tty_ldisc_ref +EXPORT_SYMBOL_GPL vmlinux 0x8b4e299f crypto_unregister_aead +EXPORT_SYMBOL_GPL vmlinux 0x8b5173bd da903x_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x8b55ba0b pci_reset_function_locked EXPORT_SYMBOL_GPL vmlinux 0x8b650752 mtk_mutex_release -EXPORT_SYMBOL_GPL vmlinux 0x8b66610a ata_bmdma_qc_issue -EXPORT_SYMBOL_GPL vmlinux 0x8b683638 of_clk_get_parent_count -EXPORT_SYMBOL_GPL vmlinux 0x8b7110d6 acpi_pm_set_device_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x8b6e4a2c mptcp_get_reset_option EXPORT_SYMBOL_GPL vmlinux 0x8b7a698b __tracepoint_xdp_exception -EXPORT_SYMBOL_GPL vmlinux 0x8b7aa204 dm_table_device_name -EXPORT_SYMBOL_GPL vmlinux 0x8b8662c2 tegra_mc_get_emem_device_count -EXPORT_SYMBOL_GPL vmlinux 0x8b885776 platform_unregister_drivers -EXPORT_SYMBOL_GPL vmlinux 0x8b8d45ba rtc_class_close -EXPORT_SYMBOL_GPL vmlinux 0x8b9eae3a otg_ulpi_create -EXPORT_SYMBOL_GPL vmlinux 0x8b9f1245 blk_mq_update_nr_hw_queues +EXPORT_SYMBOL_GPL vmlinux 0x8b99c255 posix_clock_register +EXPORT_SYMBOL_GPL vmlinux 0x8b9ff2b4 ehci_handshake EXPORT_SYMBOL_GPL vmlinux 0x8ba0eb15 hv_set_vpreg EXPORT_SYMBOL_GPL vmlinux 0x8ba5afe9 HYPERVISOR_memory_op -EXPORT_SYMBOL_GPL vmlinux 0x8bd23d2e sata_scr_read -EXPORT_SYMBOL_GPL vmlinux 0x8be09a34 regmap_check_range_table -EXPORT_SYMBOL_GPL vmlinux 0x8be4101b mddev_init +EXPORT_SYMBOL_GPL vmlinux 0x8bb03086 of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x8bb6e64f dma_vmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x8bbc9f2d devlink_port_param_driverinit_value_get +EXPORT_SYMBOL_GPL vmlinux 0x8bdde672 kern_mount EXPORT_SYMBOL_GPL vmlinux 0x8bf5f379 k3_udma_glue_release_tx_chn -EXPORT_SYMBOL_GPL vmlinux 0x8bf752ef cpufreq_dbs_governor_exit EXPORT_SYMBOL_GPL vmlinux 0x8c0215f2 pm_system_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x8c037013 ata_host_activate EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue EXPORT_SYMBOL_GPL vmlinux 0x8c0ed103 rcu_check_boost_fail -EXPORT_SYMBOL_GPL vmlinux 0x8c278eb4 devlink_param_value_changed -EXPORT_SYMBOL_GPL vmlinux 0x8c2c790f usb_driver_claim_interface -EXPORT_SYMBOL_GPL vmlinux 0x8c301cbb dma_resv_wait_timeout -EXPORT_SYMBOL_GPL vmlinux 0x8c310c55 blk_bio_list_merge -EXPORT_SYMBOL_GPL vmlinux 0x8c3d26af usb_of_get_device_node -EXPORT_SYMBOL_GPL vmlinux 0x8c42beec bio_release_pages +EXPORT_SYMBOL_GPL vmlinux 0x8c143f2c fwnode_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0x8c35f4e3 gpiochip_free_own_desc +EXPORT_SYMBOL_GPL vmlinux 0x8c3b9f8a devlink_dpipe_entry_ctx_close EXPORT_SYMBOL_GPL vmlinux 0x8c484409 gnttab_release_grant_reference -EXPORT_SYMBOL_GPL vmlinux 0x8c61c4ac gnttab_foreach_grant_in_range -EXPORT_SYMBOL_GPL vmlinux 0x8c62ceb4 iommu_group_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x8c73960c bus_rescan_devices +EXPORT_SYMBOL_GPL vmlinux 0x8c4d2b2c devm_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x8c5613b8 acpi_dev_pm_attach +EXPORT_SYMBOL_GPL vmlinux 0x8c56b221 regmap_get_val_bytes +EXPORT_SYMBOL_GPL vmlinux 0x8c582dd0 thermal_remove_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0x8c5ab6e4 iommu_sva_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0x8c64a715 strp_stop +EXPORT_SYMBOL_GPL vmlinux 0x8c6a392a file_is_kvm +EXPORT_SYMBOL_GPL vmlinux 0x8c731cb1 spi_mem_get_name EXPORT_SYMBOL_GPL vmlinux 0x8c743fb6 reset_control_status EXPORT_SYMBOL_GPL vmlinux 0x8c89e3b8 usb_phy_roothub_power_off -EXPORT_SYMBOL_GPL vmlinux 0x8c8c3dec efivar_entry_size -EXPORT_SYMBOL_GPL vmlinux 0x8c8f2eb6 __fsl_mc_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x8c8db1b1 iomap_is_partially_uptodate +EXPORT_SYMBOL_GPL vmlinux 0x8c985269 gpiod_get_value EXPORT_SYMBOL_GPL vmlinux 0x8cb5a38e k3_udma_glue_rx_flow_disable -EXPORT_SYMBOL_GPL vmlinux 0x8cc5cd15 __platform_driver_probe -EXPORT_SYMBOL_GPL vmlinux 0x8cc95da0 __platform_register_drivers +EXPORT_SYMBOL_GPL vmlinux 0x8cbe2f17 cpufreq_register_governor +EXPORT_SYMBOL_GPL vmlinux 0x8cc5ee91 __phy_modify_mmd +EXPORT_SYMBOL_GPL vmlinux 0x8cd4c154 tcp_abort +EXPORT_SYMBOL_GPL vmlinux 0x8cd6f313 add_swap_extent +EXPORT_SYMBOL_GPL vmlinux 0x8ce003ab sysfs_remove_file_self EXPORT_SYMBOL_GPL vmlinux 0x8ce2d446 __tracepoint_block_rq_remap -EXPORT_SYMBOL_GPL vmlinux 0x8cf1fd74 ata_sff_postreset -EXPORT_SYMBOL_GPL vmlinux 0x8cfd2ec8 nd_region_dev +EXPORT_SYMBOL_GPL vmlinux 0x8ce8f988 devm_bitmap_zalloc +EXPORT_SYMBOL_GPL vmlinux 0x8cf8f6ba devm_thermal_zone_of_sensor_unregister EXPORT_SYMBOL_GPL vmlinux 0x8d0abf3a __tracepoint_io_page_fault -EXPORT_SYMBOL_GPL vmlinux 0x8d0df56b of_thermal_get_ntrips -EXPORT_SYMBOL_GPL vmlinux 0x8d1c0f53 tpm_put_ops +EXPORT_SYMBOL_GPL vmlinux 0x8d0b4061 ata_eh_analyze_ncq_error +EXPORT_SYMBOL_GPL vmlinux 0x8d153f48 vchan_dma_desc_free_list EXPORT_SYMBOL_GPL vmlinux 0x8d22bb58 iommu_group_alloc -EXPORT_SYMBOL_GPL vmlinux 0x8d25dab8 pci_hp_add -EXPORT_SYMBOL_GPL vmlinux 0x8d294bc6 uhci_check_and_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0x8d30f89f phy_validate EXPORT_SYMBOL_GPL vmlinux 0x8d3330b6 cpuacct_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x8d44095e acpi_dev_resume -EXPORT_SYMBOL_GPL vmlinux 0x8d49a8af usb_wakeup_enabled_descendants -EXPORT_SYMBOL_GPL vmlinux 0x8d4c010d pci_epc_clear_bar -EXPORT_SYMBOL_GPL vmlinux 0x8d4dbb4a netlink_strict_get_check -EXPORT_SYMBOL_GPL vmlinux 0x8d527fdb nvmem_cell_read_u16 -EXPORT_SYMBOL_GPL vmlinux 0x8d52aa94 create_signature -EXPORT_SYMBOL_GPL vmlinux 0x8d688de0 phy_pm_runtime_allow -EXPORT_SYMBOL_GPL vmlinux 0x8d73372a inode_dax +EXPORT_SYMBOL_GPL vmlinux 0x8d657fba irq_chip_set_type_parent +EXPORT_SYMBOL_GPL vmlinux 0x8d674ffc crypto_register_skciphers EXPORT_SYMBOL_GPL vmlinux 0x8d7e3373 hwpoison_filter_dev_major +EXPORT_SYMBOL_GPL vmlinux 0x8d81300b pcie_update_link_speed EXPORT_SYMBOL_GPL vmlinux 0x8d88ee64 sbitmap_queue_wake_up -EXPORT_SYMBOL_GPL vmlinux 0x8d9573a9 simple_attr_read -EXPORT_SYMBOL_GPL vmlinux 0x8d9f7acc nf_ip_route -EXPORT_SYMBOL_GPL vmlinux 0x8da44e48 nvdimm_bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8d8cb01f component_del EXPORT_SYMBOL_GPL vmlinux 0x8dafdded lwtunnel_valid_encap_type_attr -EXPORT_SYMBOL_GPL vmlinux 0x8db9c017 ping_unhash EXPORT_SYMBOL_GPL vmlinux 0x8dbf7aaa privcmd_call -EXPORT_SYMBOL_GPL vmlinux 0x8dc852e1 sec_irq_init +EXPORT_SYMBOL_GPL vmlinux 0x8dc74e07 acpi_storage_d3 +EXPORT_SYMBOL_GPL vmlinux 0x8dcad6ee scsi_target_block EXPORT_SYMBOL_GPL vmlinux 0x8dd218b0 icc_bulk_disable -EXPORT_SYMBOL_GPL vmlinux 0x8dd47c91 kvm_read_guest_offset_cached -EXPORT_SYMBOL_GPL vmlinux 0x8dd55798 crypto_register_acomp -EXPORT_SYMBOL_GPL vmlinux 0x8dd58c0b dm_internal_resume -EXPORT_SYMBOL_GPL vmlinux 0x8de3c406 acct_bioset_init +EXPORT_SYMBOL_GPL vmlinux 0x8dd4533a devm_led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8ddcad18 usb_hub_release_port EXPORT_SYMBOL_GPL vmlinux 0x8de6817a acpi_dev_resource_address_space -EXPORT_SYMBOL_GPL vmlinux 0x8df75311 xenbus_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x8dfcb4b8 tty_port_register_device_serdev -EXPORT_SYMBOL_GPL vmlinux 0x8e021232 wm8350_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0x8de85996 bsg_remove_queue +EXPORT_SYMBOL_GPL vmlinux 0x8deeaede ping_err +EXPORT_SYMBOL_GPL vmlinux 0x8e013f6b sysfs_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x8e108dbe gpiod_get_from_of_node EXPORT_SYMBOL_GPL vmlinux 0x8e16419b trace_clock_local -EXPORT_SYMBOL_GPL vmlinux 0x8e1a91ed dev_pm_qos_hide_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0x8e1e7290 pci_epc_multi_mem_init -EXPORT_SYMBOL_GPL vmlinux 0x8e20e2ed regulator_get_mode -EXPORT_SYMBOL_GPL vmlinux 0x8e3037be serial8250_do_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x8e313cb0 init_uts_ns -EXPORT_SYMBOL_GPL vmlinux 0x8e3361ad irq_domain_create_hierarchy -EXPORT_SYMBOL_GPL vmlinux 0x8e34326e rdev_clear_badblocks -EXPORT_SYMBOL_GPL vmlinux 0x8e36bf68 dax_copy_to_iter +EXPORT_SYMBOL_GPL vmlinux 0x8e25ec8d devlink_rate_nodes_destroy +EXPORT_SYMBOL_GPL vmlinux 0x8e3dd80d sdio_memcpy_fromio +EXPORT_SYMBOL_GPL vmlinux 0x8e3f1341 nf_hook_entries_delete_raw EXPORT_SYMBOL_GPL vmlinux 0x8e44823a sfp_select_interface -EXPORT_SYMBOL_GPL vmlinux 0x8e472dff devlink_trap_report EXPORT_SYMBOL_GPL vmlinux 0x8e4b63a6 hisi_clk_register_gate_sep +EXPORT_SYMBOL_GPL vmlinux 0x8e4c415c devm_hwspin_lock_request EXPORT_SYMBOL_GPL vmlinux 0x8e4eb451 bpf_sk_storage_diag_free -EXPORT_SYMBOL_GPL vmlinux 0x8e4ebd54 __fsnotify_inode_delete -EXPORT_SYMBOL_GPL vmlinux 0x8e5024d7 skb_morph -EXPORT_SYMBOL_GPL vmlinux 0x8e5ee5fb device_link_remove -EXPORT_SYMBOL_GPL vmlinux 0x8e60479a icc_disable -EXPORT_SYMBOL_GPL vmlinux 0x8e659f0e crypto_register_template -EXPORT_SYMBOL_GPL vmlinux 0x8e676fcf pcie_port_bus_type EXPORT_SYMBOL_GPL vmlinux 0x8e6b1a9e net_selftest_get_count EXPORT_SYMBOL_GPL vmlinux 0x8e6fa8b5 apei_exec_pre_map_gars -EXPORT_SYMBOL_GPL vmlinux 0x8e78b0f6 ahci_reset_controller +EXPORT_SYMBOL_GPL vmlinux 0x8e7bc2cc crypto_comp_decompress +EXPORT_SYMBOL_GPL vmlinux 0x8e7e1e38 usb_reset_device EXPORT_SYMBOL_GPL vmlinux 0x8e7f0a9c acpi_get_phys_id -EXPORT_SYMBOL_GPL vmlinux 0x8e7ff8e4 __device_reset -EXPORT_SYMBOL_GPL vmlinux 0x8e82efe0 meson_clk_pll_ops -EXPORT_SYMBOL_GPL vmlinux 0x8e8b6a18 fixed_phy_unregister -EXPORT_SYMBOL_GPL vmlinux 0x8e8e0b38 tegra_bpmp_request_mrq +EXPORT_SYMBOL_GPL vmlinux 0x8e915222 bus_unregister EXPORT_SYMBOL_GPL vmlinux 0x8e92f7c4 static_key_slow_inc -EXPORT_SYMBOL_GPL vmlinux 0x8e99001b fib_nl_newrule +EXPORT_SYMBOL_GPL vmlinux 0x8e9ef255 gpiochip_generic_free +EXPORT_SYMBOL_GPL vmlinux 0x8ea31b41 dprc_get_obj EXPORT_SYMBOL_GPL vmlinux 0x8ead800c user_free_preparse -EXPORT_SYMBOL_GPL vmlinux 0x8eb0d65d rio_request_dma -EXPORT_SYMBOL_GPL vmlinux 0x8eb30297 usb_remove_phy -EXPORT_SYMBOL_GPL vmlinux 0x8ec0f6c1 platform_get_resource -EXPORT_SYMBOL_GPL vmlinux 0x8ed76196 acpi_subsys_complete -EXPORT_SYMBOL_GPL vmlinux 0x8ee4ce50 kernfs_find_and_get_ns -EXPORT_SYMBOL_GPL vmlinux 0x8eeac80d fwnode_get_nth_parent +EXPORT_SYMBOL_GPL vmlinux 0x8eb633b3 apei_get_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0x8edfc69a pci_load_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x8ee78eb7 usb_driver_release_interface EXPORT_SYMBOL_GPL vmlinux 0x8eec19bd __SCK__tp_func_pelt_dl_tp EXPORT_SYMBOL_GPL vmlinux 0x8eed0fa2 sbitmap_get_shallow EXPORT_SYMBOL_GPL vmlinux 0x8eee3399 dax_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0x8eee5926 xdp_attachment_setup -EXPORT_SYMBOL_GPL vmlinux 0x8ef6db70 do_splice_from -EXPORT_SYMBOL_GPL vmlinux 0x8efb476e regulator_set_pull_down_regmap +EXPORT_SYMBOL_GPL vmlinux 0x8ef68369 crypto_unregister_rngs +EXPORT_SYMBOL_GPL vmlinux 0x8ef686ab meson8_pmx_ops EXPORT_SYMBOL_GPL vmlinux 0x8effb505 phy_gbit_features EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp -EXPORT_SYMBOL_GPL vmlinux 0x8f0cba40 pm_clk_destroy -EXPORT_SYMBOL_GPL vmlinux 0x8f0df5bf skb_mpls_pop -EXPORT_SYMBOL_GPL vmlinux 0x8f13d53d rio_register_scan -EXPORT_SYMBOL_GPL vmlinux 0x8f1d0a46 devm_of_clk_add_hw_provider -EXPORT_SYMBOL_GPL vmlinux 0x8f1f5714 free_vm_area -EXPORT_SYMBOL_GPL vmlinux 0x8f272f54 sprd_pinctrl_core_probe +EXPORT_SYMBOL_GPL vmlinux 0x8f16a65c event_triggers_call EXPORT_SYMBOL_GPL vmlinux 0x8f2e5212 __gfn_to_pfn_memslot 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 0x8f421731 __fat_fs_error -EXPORT_SYMBOL_GPL vmlinux 0x8f5dd165 pci_hp_del -EXPORT_SYMBOL_GPL vmlinux 0x8f61d47f proc_create_net_data_write +EXPORT_SYMBOL_GPL vmlinux 0x8f65f17c spi_mem_dtr_supports_op +EXPORT_SYMBOL_GPL vmlinux 0x8f69c379 fwnode_get_name +EXPORT_SYMBOL_GPL vmlinux 0x8f6aaa1a efivars_kobject EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x8f6ffec8 dpm_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x8f711b53 fsl_mc_bus_dpcon_type +EXPORT_SYMBOL_GPL vmlinux 0x8f76ddfc i2c_acpi_find_bus_speed EXPORT_SYMBOL_GPL vmlinux 0x8f786bee fs_umode_to_dtype -EXPORT_SYMBOL_GPL vmlinux 0x8f7a5e69 hwspin_lock_request EXPORT_SYMBOL_GPL vmlinux 0x8f7bd0a6 btree_init_mempool -EXPORT_SYMBOL_GPL vmlinux 0x8f7dc2fc badblocks_show -EXPORT_SYMBOL_GPL vmlinux 0x8f901c84 event_triggers_call -EXPORT_SYMBOL_GPL vmlinux 0x8f9ff016 i2c_dw_acpi_configure -EXPORT_SYMBOL_GPL vmlinux 0x8fa6cd33 device_move -EXPORT_SYMBOL_GPL vmlinux 0x8fa8ac39 regulator_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x8f7be32b irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x8f8817cb regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x8f8da13f find_get_pid +EXPORT_SYMBOL_GPL vmlinux 0x8fa8ff1b check_move_unevictable_pages EXPORT_SYMBOL_GPL vmlinux 0x8faa800d acpi_cpc_valid -EXPORT_SYMBOL_GPL vmlinux 0x8fafed5c pm_clk_resume -EXPORT_SYMBOL_GPL vmlinux 0x8fba9412 pinctrl_dev_get_devname EXPORT_SYMBOL_GPL vmlinux 0x8fc12788 software_node_unregister_node_group -EXPORT_SYMBOL_GPL vmlinux 0x8fd4bb07 fwnode_get_named_child_node -EXPORT_SYMBOL_GPL vmlinux 0x8fdd5c5a i2c_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x8fe75d57 usb_get_dev -EXPORT_SYMBOL_GPL vmlinux 0x8ff55b86 kill_dev_dax +EXPORT_SYMBOL_GPL vmlinux 0x8fcb8c73 seg6_do_srh_encap +EXPORT_SYMBOL_GPL vmlinux 0x8fdc0c22 irq_domain_free_irqs_parent +EXPORT_SYMBOL_GPL vmlinux 0x8fdec3f7 __traceiter_devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0x8fee06d6 scsi_mode_select EXPORT_SYMBOL_GPL vmlinux 0x8ff60436 mpi_ec_add_points -EXPORT_SYMBOL_GPL vmlinux 0x8ffa93c0 driver_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x8ffa8ead da9052_free_irq +EXPORT_SYMBOL_GPL vmlinux 0x8ffd523d unmap_mapping_pages EXPORT_SYMBOL_GPL vmlinux 0x8ffe792f tracepoint_probe_register_prio_may_exist -EXPORT_SYMBOL_GPL vmlinux 0x900d2d82 securityfs_create_dir -EXPORT_SYMBOL_GPL vmlinux 0x9012166b power_supply_class -EXPORT_SYMBOL_GPL vmlinux 0x9028693b fat_update_time +EXPORT_SYMBOL_GPL vmlinux 0x9008f6fd crypto_stats_rng_seed +EXPORT_SYMBOL_GPL vmlinux 0x901eee45 virtqueue_kick +EXPORT_SYMBOL_GPL vmlinux 0x901faf07 ima_inode_hash +EXPORT_SYMBOL_GPL vmlinux 0x90251a4f bpf_prog_create_from_user EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move -EXPORT_SYMBOL_GPL vmlinux 0x90402683 trace_array_set_clr_event -EXPORT_SYMBOL_GPL vmlinux 0x904e8140 pm_runtime_barrier -EXPORT_SYMBOL_GPL vmlinux 0x9059e3cf iommu_map_sg -EXPORT_SYMBOL_GPL vmlinux 0x90636bbb eventfd_ctx_fileget +EXPORT_SYMBOL_GPL vmlinux 0x903f652f regulator_get_current_limit_regmap +EXPORT_SYMBOL_GPL vmlinux 0x90688925 strp_init EXPORT_SYMBOL_GPL vmlinux 0x90688bcd devlink_info_driver_name_put -EXPORT_SYMBOL_GPL vmlinux 0x90740b49 devres_get -EXPORT_SYMBOL_GPL vmlinux 0x907e8071 pinmux_generic_get_function -EXPORT_SYMBOL_GPL vmlinux 0x907f8168 perf_event_period -EXPORT_SYMBOL_GPL vmlinux 0x9084236b vfs_submount -EXPORT_SYMBOL_GPL vmlinux 0x90a85ce4 devm_regmap_init_vexpress_config +EXPORT_SYMBOL_GPL vmlinux 0x906a3ff4 __inet_lookup_established +EXPORT_SYMBOL_GPL vmlinux 0x90795872 dma_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x907e2ec1 fwnode_usb_role_switch_get +EXPORT_SYMBOL_GPL vmlinux 0x9080c3fe usb_wakeup_enabled_descendants +EXPORT_SYMBOL_GPL vmlinux 0x908427f3 ahci_platform_enable_resources +EXPORT_SYMBOL_GPL vmlinux 0x9087c2e1 dm_put +EXPORT_SYMBOL_GPL vmlinux 0x909391aa rtc_class_close +EXPORT_SYMBOL_GPL vmlinux 0x909fdef0 gnttab_pages_set_private +EXPORT_SYMBOL_GPL vmlinux 0x90a0ed83 tc3589x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x90a1c93f tty_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0x90a1e244 dma_buf_vunmap EXPORT_SYMBOL_GPL vmlinux 0x90a9d8cc hv_is_hyperv_initialized EXPORT_SYMBOL_GPL vmlinux 0x90ad66b1 software_node_unregister_nodes EXPORT_SYMBOL_GPL vmlinux 0x90b763f1 HYPERVISOR_console_io -EXPORT_SYMBOL_GPL vmlinux 0x90ba415e nd_cmd_out_size -EXPORT_SYMBOL_GPL vmlinux 0x90c64d32 mddev_init_writes_pending EXPORT_SYMBOL_GPL vmlinux 0x90c8498c apei_exec_write_register -EXPORT_SYMBOL_GPL vmlinux 0x90cbd10f rio_add_device EXPORT_SYMBOL_GPL vmlinux 0x90d937b4 __tracepoint_pelt_rt_tp -EXPORT_SYMBOL_GPL vmlinux 0x90e2cc8b crypto_rng_reset -EXPORT_SYMBOL_GPL vmlinux 0x90f44cdd get_net_ns_by_fd -EXPORT_SYMBOL_GPL vmlinux 0x9114e2df ohci_hub_status_data -EXPORT_SYMBOL_GPL vmlinux 0x9136e12b crypto_register_rng -EXPORT_SYMBOL_GPL vmlinux 0x9155a534 phy_get -EXPORT_SYMBOL_GPL vmlinux 0x915bac09 led_trigger_set_default -EXPORT_SYMBOL_GPL vmlinux 0x9167cbbb pinctrl_parse_index_with_args -EXPORT_SYMBOL_GPL vmlinux 0x9173835c usb_interrupt_msg -EXPORT_SYMBOL_GPL vmlinux 0x917f46e8 dpcon_set_notification +EXPORT_SYMBOL_GPL vmlinux 0x90e8ae0d i2c_slave_register +EXPORT_SYMBOL_GPL vmlinux 0x90fd1e5b get_governor_parent_kobj +EXPORT_SYMBOL_GPL vmlinux 0x910ca90c devres_release +EXPORT_SYMBOL_GPL vmlinux 0x9117302e serial8250_update_uartclk +EXPORT_SYMBOL_GPL vmlinux 0x91347dc2 __raw_v6_lookup +EXPORT_SYMBOL_GPL vmlinux 0x9137e661 phy_led_trigger_change_speed +EXPORT_SYMBOL_GPL vmlinux 0x914414df bus_for_each_drv +EXPORT_SYMBOL_GPL vmlinux 0x915225bf crypto_hash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0x915dc7f4 serdev_device_write_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x91677ab9 device_destroy +EXPORT_SYMBOL_GPL vmlinux 0x91679c04 pinctrl_force_default EXPORT_SYMBOL_GPL vmlinux 0x9194e18f xenbus_mkdir EXPORT_SYMBOL_GPL vmlinux 0x91955a9f start_poll_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0x91b0d62f tcp_register_ulp +EXPORT_SYMBOL_GPL vmlinux 0x91a37725 spi_replace_transfers EXPORT_SYMBOL_GPL vmlinux 0x91b774a1 mpi_scanval -EXPORT_SYMBOL_GPL vmlinux 0x91c05021 platform_device_add_data -EXPORT_SYMBOL_GPL vmlinux 0x91c3d49b sched_show_task -EXPORT_SYMBOL_GPL vmlinux 0x91c5c131 crypto_alloc_akcipher -EXPORT_SYMBOL_GPL vmlinux 0x91c5dbde devm_pm_opp_attach_genpd +EXPORT_SYMBOL_GPL vmlinux 0x91c2e303 usb_hcd_giveback_urb EXPORT_SYMBOL_GPL vmlinux 0x91c6e5b0 pcap_to_irq EXPORT_SYMBOL_GPL vmlinux 0x91c9313c acpi_gpio_get_io_resource -EXPORT_SYMBOL_GPL vmlinux 0x91c9ef32 devm_gpiod_get_from_of_node -EXPORT_SYMBOL_GPL vmlinux 0x91ca8828 phy_set_mode_ext -EXPORT_SYMBOL_GPL vmlinux 0x91e1ff47 serdev_device_set_parity -EXPORT_SYMBOL_GPL vmlinux 0x91e2fb51 trace_array_printk +EXPORT_SYMBOL_GPL vmlinux 0x91ce37dc regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x91cfdf17 vring_del_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x91d883ae irq_set_default_host +EXPORT_SYMBOL_GPL vmlinux 0x91e12570 kvm_vcpu_gfn_to_pfn EXPORT_SYMBOL_GPL vmlinux 0x91e30809 HYPERVISOR_vm_assist EXPORT_SYMBOL_GPL vmlinux 0x91ea8726 asn1_encode_boolean -EXPORT_SYMBOL_GPL vmlinux 0x91f72b12 mpc8xxx_spi_rx_buf_u16 -EXPORT_SYMBOL_GPL vmlinux 0x92029174 pci_platform_power_transition -EXPORT_SYMBOL_GPL vmlinux 0x92087c41 usb_phy_set_charger_state -EXPORT_SYMBOL_GPL vmlinux 0x920c3ce7 bpf_trace_run10 EXPORT_SYMBOL_GPL vmlinux 0x920cc389 visitorl -EXPORT_SYMBOL_GPL vmlinux 0x920db82c rio_route_clr_table -EXPORT_SYMBOL_GPL vmlinux 0x921acc04 irq_generic_chip_ops +EXPORT_SYMBOL_GPL vmlinux 0x920cfaaa tty_register_device_attr EXPORT_SYMBOL_GPL vmlinux 0x92295424 clk_register_gate +EXPORT_SYMBOL_GPL vmlinux 0x923e8566 xenbus_dev_is_online EXPORT_SYMBOL_GPL vmlinux 0x9241b358 __static_key_slow_dec_deferred -EXPORT_SYMBOL_GPL vmlinux 0x92499b7a rcuwait_wake_up EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object -EXPORT_SYMBOL_GPL vmlinux 0x92528e2b clean_acked_data_disable -EXPORT_SYMBOL_GPL vmlinux 0x9256b63d acpi_subsys_restore_early -EXPORT_SYMBOL_GPL vmlinux 0x92574442 i2c_parse_fw_timings -EXPORT_SYMBOL_GPL vmlinux 0x925ef034 clk_hw_get_rate -EXPORT_SYMBOL_GPL vmlinux 0x9266a50b ncsi_unregister_dev +EXPORT_SYMBOL_GPL vmlinux 0x9255e75b crypto_alloc_acomp_node +EXPORT_SYMBOL_GPL vmlinux 0x925e94fe acpi_data_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0x92604ec3 pci_iomap_wc_range EXPORT_SYMBOL_GPL vmlinux 0x927487ea zynqmp_pm_read_ggs +EXPORT_SYMBOL_GPL vmlinux 0x92757c25 get_device_system_crosststamp +EXPORT_SYMBOL_GPL vmlinux 0x927d3628 page_mkclean +EXPORT_SYMBOL_GPL vmlinux 0x9287d492 __rio_local_read_config_8 EXPORT_SYMBOL_GPL vmlinux 0x928ebcd4 register_ftrace_function -EXPORT_SYMBOL_GPL vmlinux 0x92932243 skb_complete_wifi_ack -EXPORT_SYMBOL_GPL vmlinux 0x92ac47ec usb_get_urb EXPORT_SYMBOL_GPL vmlinux 0x92b8c78b hyperv_pcpu_output_arg -EXPORT_SYMBOL_GPL vmlinux 0x92c2ee6d fw_devlink_purge_absent_suppliers -EXPORT_SYMBOL_GPL vmlinux 0x92c5489a sock_diag_unregister +EXPORT_SYMBOL_GPL vmlinux 0x92be5dd7 regcache_cache_bypass +EXPORT_SYMBOL_GPL vmlinux 0x92c81ee5 iomap_dio_rw EXPORT_SYMBOL_GPL vmlinux 0x92d31cfb fixed_phy_add +EXPORT_SYMBOL_GPL vmlinux 0x92d97c76 ethnl_cable_test_fault_length EXPORT_SYMBOL_GPL vmlinux 0x92db8f68 do_trace_rcu_torture_read +EXPORT_SYMBOL_GPL vmlinux 0x92e5c6b3 device_dma_supported EXPORT_SYMBOL_GPL vmlinux 0x92e8e9ab fsverity_enqueue_verify_work -EXPORT_SYMBOL_GPL vmlinux 0x92edc553 ata_wait_after_reset -EXPORT_SYMBOL_GPL vmlinux 0x9307cc47 set_secondary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x92f05e84 xen_xlate_unmap_gfn_range +EXPORT_SYMBOL_GPL vmlinux 0x9301067e tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x9308c8a9 dst_cache_get_ip6 EXPORT_SYMBOL_GPL vmlinux 0x930ab533 k3_ringacc_request_ring -EXPORT_SYMBOL_GPL vmlinux 0x930b31a9 regmap_exit -EXPORT_SYMBOL_GPL vmlinux 0x9319e153 ata_acpi_cbl_80wire EXPORT_SYMBOL_GPL vmlinux 0x93255b2b ring_buffer_lock_reserve EXPORT_SYMBOL_GPL vmlinux 0x932c8d7a linear_range_get_value_array -EXPORT_SYMBOL_GPL vmlinux 0x933112f8 dma_buf_get +EXPORT_SYMBOL_GPL vmlinux 0x93357c25 dma_alloc_pages EXPORT_SYMBOL_GPL vmlinux 0x933f75e0 usb_unlink_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x93443566 devm_mbox_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x934ce8c8 led_init_default_state_get -EXPORT_SYMBOL_GPL vmlinux 0x9356252e clean_acked_data_enable -EXPORT_SYMBOL_GPL vmlinux 0x93629e52 mmc_poll_for_busy -EXPORT_SYMBOL_GPL vmlinux 0x93642de9 xenbus_dev_cancel -EXPORT_SYMBOL_GPL vmlinux 0x936a8e22 of_property_read_u64 -EXPORT_SYMBOL_GPL vmlinux 0x937095d3 devm_extcon_dev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x9376620c rockchip_clk_register_branches -EXPORT_SYMBOL_GPL vmlinux 0x937f382f debugfs_create_u8 -EXPORT_SYMBOL_GPL vmlinux 0x937f3d69 call_switchdev_blocking_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x93412c34 iommu_set_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0x934b110e inet_csk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x93527838 dax_copy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0x935c727e rtnl_af_register +EXPORT_SYMBOL_GPL vmlinux 0x936c96a6 ata_sff_wait_ready EXPORT_SYMBOL_GPL vmlinux 0x9384cd49 ata_tf_from_fis -EXPORT_SYMBOL_GPL vmlinux 0x93877039 pci_find_next_capability -EXPORT_SYMBOL_GPL vmlinux 0x93a35c08 extcon_find_edev_by_node -EXPORT_SYMBOL_GPL vmlinux 0x93a60d45 register_wide_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x93bb0dcd dmaengine_desc_attach_metadata -EXPORT_SYMBOL_GPL vmlinux 0x93c7d799 ping_hash +EXPORT_SYMBOL_GPL vmlinux 0x938ae3dc ip6_datagram_recv_ctl +EXPORT_SYMBOL_GPL vmlinux 0x939d696d __traceiter_devlink_hwerr +EXPORT_SYMBOL_GPL vmlinux 0x93b1fe16 dev_pm_opp_disable +EXPORT_SYMBOL_GPL vmlinux 0x93b9f322 skb_to_sgvec_nomark +EXPORT_SYMBOL_GPL vmlinux 0x93c3f3bc led_put EXPORT_SYMBOL_GPL vmlinux 0x93c7edeb usb_find_common_endpoints -EXPORT_SYMBOL_GPL vmlinux 0x93c83aad pci_msi_unmask_irq -EXPORT_SYMBOL_GPL vmlinux 0x93cb5073 sdio_writeb -EXPORT_SYMBOL_GPL vmlinux 0x93cf384d regulator_set_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0x93cf7e4b relay_file_operations EXPORT_SYMBOL_GPL vmlinux 0x93d1d424 gnttab_free_grant_references +EXPORT_SYMBOL_GPL vmlinux 0x93d8766d dma_free_noncontiguous EXPORT_SYMBOL_GPL vmlinux 0x93edef07 devlink_health_report -EXPORT_SYMBOL_GPL vmlinux 0x93f4a8fd aead_init_geniv EXPORT_SYMBOL_GPL vmlinux 0x93f55fe0 power_supply_batinfo_ocv2cap -EXPORT_SYMBOL_GPL vmlinux 0x94053e96 fat_alloc_new_dir +EXPORT_SYMBOL_GPL vmlinux 0x93ff0aab usb_disable_ltm +EXPORT_SYMBOL_GPL vmlinux 0x9410485c pci_assign_unassigned_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0x941ea62f alarmtimer_get_rtcdev EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put -EXPORT_SYMBOL_GPL vmlinux 0x9423e432 device_reprobe EXPORT_SYMBOL_GPL vmlinux 0x9425bb34 nvmem_dev_name -EXPORT_SYMBOL_GPL vmlinux 0x94260b78 serdev_controller_remove -EXPORT_SYMBOL_GPL vmlinux 0x94286b7a find_get_pid +EXPORT_SYMBOL_GPL vmlinux 0x942a217f inet_send_prepare +EXPORT_SYMBOL_GPL vmlinux 0x942b1ede devm_phy_get EXPORT_SYMBOL_GPL vmlinux 0x9430b198 trace_dump_stack -EXPORT_SYMBOL_GPL vmlinux 0x9435d131 cpufreq_enable_fast_switch EXPORT_SYMBOL_GPL vmlinux 0x9436e405 memory_group_register_dynamic EXPORT_SYMBOL_GPL vmlinux 0x943fc708 xen_setup_shutdown_event -EXPORT_SYMBOL_GPL vmlinux 0x9443e389 dev_pm_opp_get_opp_count -EXPORT_SYMBOL_GPL vmlinux 0x9461c4bb edac_device_handle_ce_count -EXPORT_SYMBOL_GPL vmlinux 0x9469ecb0 __dma_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x944122f7 report_iommu_fault +EXPORT_SYMBOL_GPL vmlinux 0x9445a812 __fput_sync +EXPORT_SYMBOL_GPL vmlinux 0x944ce3e6 irqchip_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0x945213f1 dev_coredumpv +EXPORT_SYMBOL_GPL vmlinux 0x946d3e9a sk_set_peek_off EXPORT_SYMBOL_GPL vmlinux 0x946dd559 sha224_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x946e879d acpi_get_first_physical_node -EXPORT_SYMBOL_GPL vmlinux 0x947083fd gov_update_cpu_data -EXPORT_SYMBOL_GPL vmlinux 0x94709c59 rtc_read_alarm -EXPORT_SYMBOL_GPL vmlinux 0x94773d53 of_genpd_add_provider_simple -EXPORT_SYMBOL_GPL vmlinux 0x947ce334 fsl_mc_bus_dpcon_type -EXPORT_SYMBOL_GPL vmlinux 0x948330ba bus_sort_breadthfirst -EXPORT_SYMBOL_GPL vmlinux 0x948d5105 devm_clk_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9474bbbb acpi_device_modalias +EXPORT_SYMBOL_GPL vmlinux 0x94842c57 xfer_to_guest_mode_handle_work +EXPORT_SYMBOL_GPL vmlinux 0x94917048 iomap_page_mkwrite EXPORT_SYMBOL_GPL vmlinux 0x949b5176 devlink_region_snapshot_create -EXPORT_SYMBOL_GPL vmlinux 0x949c8334 pinctrl_generic_get_group_pins EXPORT_SYMBOL_GPL vmlinux 0x949f7342 __alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0x94a0a07a sk_free_unlock_clone -EXPORT_SYMBOL_GPL vmlinux 0x94ac3d6e xenbus_unmap_ring_vfree -EXPORT_SYMBOL_GPL vmlinux 0x94aeffa9 pci_pri_supported -EXPORT_SYMBOL_GPL vmlinux 0x94d16dbc dprc_remove_devices +EXPORT_SYMBOL_GPL vmlinux 0x94a3fd69 fwnode_get_next_parent +EXPORT_SYMBOL_GPL vmlinux 0x94a7f85b devlink_region_snapshot_id_get +EXPORT_SYMBOL_GPL vmlinux 0x94ae42f6 noop_invalidatepage +EXPORT_SYMBOL_GPL vmlinux 0x94aed30b dma_resv_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x94b0f87e crypto_find_alg +EXPORT_SYMBOL_GPL vmlinux 0x94c88a78 usb_get_role_switch_default_mode +EXPORT_SYMBOL_GPL vmlinux 0x94cefc22 rio_request_inb_pwrite EXPORT_SYMBOL_GPL vmlinux 0x94dd71af __srcu_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x94e3c576 wm831x_device_shutdown EXPORT_SYMBOL_GPL vmlinux 0x94e62d2e __set_phys_to_machine_multi -EXPORT_SYMBOL_GPL vmlinux 0x94eb4105 thermal_zone_device_register +EXPORT_SYMBOL_GPL vmlinux 0x94edcdfa rio_free_net +EXPORT_SYMBOL_GPL vmlinux 0x94ef0ba6 pci_hp_destroy +EXPORT_SYMBOL_GPL vmlinux 0x94ef3264 spi_write_then_read EXPORT_SYMBOL_GPL vmlinux 0x94ef4d05 cpci_hp_stop EXPORT_SYMBOL_GPL vmlinux 0x94f0136c irq_set_affinity_notifier -EXPORT_SYMBOL_GPL vmlinux 0x94f59c86 lwtunnel_fill_encap +EXPORT_SYMBOL_GPL vmlinux 0x94f56853 mark_page_dirty EXPORT_SYMBOL_GPL vmlinux 0x9504df26 irq_wake_thread -EXPORT_SYMBOL_GPL vmlinux 0x950a8ed1 tty_ldisc_deref -EXPORT_SYMBOL_GPL vmlinux 0x95151aac devfreq_cooling_register -EXPORT_SYMBOL_GPL vmlinux 0x9515d8ea __traceiter_sched_update_nr_running_tp +EXPORT_SYMBOL_GPL vmlinux 0x9508dead pci_host_common_remove +EXPORT_SYMBOL_GPL vmlinux 0x95091bb2 get_net_ns_by_pid EXPORT_SYMBOL_GPL vmlinux 0x951a2773 crypto_has_alg EXPORT_SYMBOL_GPL vmlinux 0x952664c5 do_exit -EXPORT_SYMBOL_GPL vmlinux 0x952a9e0f sysfs_create_groups -EXPORT_SYMBOL_GPL vmlinux 0x95337f1b virtqueue_enable_cb -EXPORT_SYMBOL_GPL vmlinux 0x953b6e61 __traceiter_rpm_suspend -EXPORT_SYMBOL_GPL vmlinux 0x953bd578 crypto_shash_finup -EXPORT_SYMBOL_GPL vmlinux 0x953d69fe efivar_entry_set_get_size +EXPORT_SYMBOL_GPL vmlinux 0x95291bb4 devlink_port_params_register +EXPORT_SYMBOL_GPL vmlinux 0x95315d87 crypto_create_tfm_node EXPORT_SYMBOL_GPL vmlinux 0x953e1b9e ktime_get_real_seconds -EXPORT_SYMBOL_GPL vmlinux 0x954388e9 dev_pm_qos_expose_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0x954bd3d0 led_trigger_register -EXPORT_SYMBOL_GPL vmlinux 0x954d6801 regulator_get_current_limit_regmap +EXPORT_SYMBOL_GPL vmlinux 0x9549f56f pci_platform_power_transition EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn -EXPORT_SYMBOL_GPL vmlinux 0x9563aaed devlink_alloc_ns +EXPORT_SYMBOL_GPL vmlinux 0x955d06ce to_software_node EXPORT_SYMBOL_GPL vmlinux 0x956ac400 ring_buffer_dropped_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0x956cf6b9 dpbp_reset +EXPORT_SYMBOL_GPL vmlinux 0x957859ca gpiochip_irq_domain_deactivate EXPORT_SYMBOL_GPL vmlinux 0x95843030 mpi_ec_init +EXPORT_SYMBOL_GPL vmlinux 0x95849009 regulator_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x9588e52d of_pci_parse_bus_range EXPORT_SYMBOL_GPL vmlinux 0x958df3ac zs_free +EXPORT_SYMBOL_GPL vmlinux 0x958ebdfb __traceiter_block_split +EXPORT_SYMBOL_GPL vmlinux 0x959043dd spi_finalize_current_message EXPORT_SYMBOL_GPL vmlinux 0x9593ef31 register_ftrace_export -EXPORT_SYMBOL_GPL vmlinux 0x9594f564 hisi_cpumask_sysfs_show -EXPORT_SYMBOL_GPL vmlinux 0x9595388e skb_append_pagefrags -EXPORT_SYMBOL_GPL vmlinux 0x95a571de usb_put_phy -EXPORT_SYMBOL_GPL vmlinux 0x95b3db75 usb_free_streams -EXPORT_SYMBOL_GPL vmlinux 0x95b4998e sk_detach_filter -EXPORT_SYMBOL_GPL vmlinux 0x95b795fc gpiod_count +EXPORT_SYMBOL_GPL vmlinux 0x959ca317 xhci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x95ac69c9 dprc_remove_devices +EXPORT_SYMBOL_GPL vmlinux 0x95aec7bd shash_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0x95bb9237 sfp_bus_find_fwnode EXPORT_SYMBOL_GPL vmlinux 0x95bc9078 btree_free -EXPORT_SYMBOL_GPL vmlinux 0x95c69263 bio_add_zone_append_page -EXPORT_SYMBOL_GPL vmlinux 0x95c9b8ce irq_domain_associate -EXPORT_SYMBOL_GPL vmlinux 0x95ccd3a6 nvdimm_bus_register -EXPORT_SYMBOL_GPL vmlinux 0x95d15623 phy_driver_is_genphy +EXPORT_SYMBOL_GPL vmlinux 0x95c0f6f8 nd_tbl +EXPORT_SYMBOL_GPL vmlinux 0x95cb3707 scmi_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x95db1013 clk_hw_register_fixed_factor EXPORT_SYMBOL_GPL vmlinux 0x95e102ab tracepoint_probe_register +EXPORT_SYMBOL_GPL vmlinux 0x95e5cca7 platform_device_add_resources EXPORT_SYMBOL_GPL vmlinux 0x95ef1ccc dmi_memdev_size -EXPORT_SYMBOL_GPL vmlinux 0x95f09915 phy_speed_down -EXPORT_SYMBOL_GPL vmlinux 0x95f7ff12 regulator_enable_regmap -EXPORT_SYMBOL_GPL vmlinux 0x95fb10d6 amba_device_put -EXPORT_SYMBOL_GPL vmlinux 0x960a3245 ip_route_output_tunnel -EXPORT_SYMBOL_GPL vmlinux 0x960d1103 dev_pm_opp_set_opp +EXPORT_SYMBOL_GPL vmlinux 0x95f3418e regmap_raw_write +EXPORT_SYMBOL_GPL vmlinux 0x96015a00 devlink_traps_register EXPORT_SYMBOL_GPL vmlinux 0x961286e0 ring_buffer_read_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0x9613a059 bpf_prog_add +EXPORT_SYMBOL_GPL vmlinux 0x9615312a of_resolve_phandles +EXPORT_SYMBOL_GPL vmlinux 0x96182073 tpm_try_get_ops +EXPORT_SYMBOL_GPL vmlinux 0x961ff703 ata_scsi_slave_destroy EXPORT_SYMBOL_GPL vmlinux 0x9621d738 alarm_start_relative -EXPORT_SYMBOL_GPL vmlinux 0x962b9fcf phy_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0x96226dfe usb_register_device_driver +EXPORT_SYMBOL_GPL vmlinux 0x9628feb6 tty_mode_ioctl EXPORT_SYMBOL_GPL vmlinux 0x962c8ae1 usb_kill_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x96329409 devm_gpiod_unhinge -EXPORT_SYMBOL_GPL vmlinux 0x963cce8a led_classdev_resume -EXPORT_SYMBOL_GPL vmlinux 0x963f6079 iopf_queue_remove_device -EXPORT_SYMBOL_GPL vmlinux 0x9649dc03 bio_trim -EXPORT_SYMBOL_GPL vmlinux 0x964bb209 __pm_runtime_idle +EXPORT_SYMBOL_GPL vmlinux 0x96525538 crypto_larval_kill EXPORT_SYMBOL_GPL vmlinux 0x96554810 register_keyboard_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9664824f set_selection_kernel -EXPORT_SYMBOL_GPL vmlinux 0x9665978d of_icc_get_from_provider -EXPORT_SYMBOL_GPL vmlinux 0x966f1ab9 blkcg_activate_policy -EXPORT_SYMBOL_GPL vmlinux 0x968673f6 clk_register_divider_table +EXPORT_SYMBOL_GPL vmlinux 0x966f59cf ethnl_cable_test_free +EXPORT_SYMBOL_GPL vmlinux 0x967c0997 blk_next_bio EXPORT_SYMBOL_GPL vmlinux 0x968f9a23 efivar_entry_iter_begin -EXPORT_SYMBOL_GPL vmlinux 0x969b5f83 dst_cache_get -EXPORT_SYMBOL_GPL vmlinux 0x96a04b3c of_nvmem_cell_get -EXPORT_SYMBOL_GPL vmlinux 0x96d32000 da9052_adc_read_temp -EXPORT_SYMBOL_GPL vmlinux 0x96fc679d debugfs_file_get -EXPORT_SYMBOL_GPL vmlinux 0x97079def sch_frag_xmit_hook +EXPORT_SYMBOL_GPL vmlinux 0x969f504f fat_flush_inodes +EXPORT_SYMBOL_GPL vmlinux 0x96ad06d2 subsys_system_register +EXPORT_SYMBOL_GPL vmlinux 0x96b10cec bus_create_file +EXPORT_SYMBOL_GPL vmlinux 0x96cc5dda dev_err_probe +EXPORT_SYMBOL_GPL vmlinux 0x96d63eb2 __serdev_device_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x96ecad7c i2c_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x96f0c8c6 ipv6_bpf_stub +EXPORT_SYMBOL_GPL vmlinux 0x96f9a01b __SCK__tp_func_pelt_thermal_tp +EXPORT_SYMBOL_GPL vmlinux 0x96fb2b3f fib_nl_delrule +EXPORT_SYMBOL_GPL vmlinux 0x96fe368d sfp_add_phy EXPORT_SYMBOL_GPL vmlinux 0x9714e0bb ktime_get_raw -EXPORT_SYMBOL_GPL vmlinux 0x97174b14 pci_find_host_bridge -EXPORT_SYMBOL_GPL vmlinux 0x973bd32b sdio_retune_hold_now -EXPORT_SYMBOL_GPL vmlinux 0x974b88ab of_k3_ringacc_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x9740cd23 of_pci_find_child_device +EXPORT_SYMBOL_GPL vmlinux 0x974c7f18 fscrypt_symlink_getattr +EXPORT_SYMBOL_GPL vmlinux 0x974f3762 serdev_device_add +EXPORT_SYMBOL_GPL vmlinux 0x9752ec3f dprc_reset_container EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same +EXPORT_SYMBOL_GPL vmlinux 0x97562d6a ahci_qc_issue EXPORT_SYMBOL_GPL vmlinux 0x97623558 xas_create_range +EXPORT_SYMBOL_GPL vmlinux 0x97657411 tcp_slow_start +EXPORT_SYMBOL_GPL vmlinux 0x9768e6a7 trace_event_reg EXPORT_SYMBOL_GPL vmlinux 0x977be5c7 klist_iter_init_node -EXPORT_SYMBOL_GPL vmlinux 0x9787b709 of_cpufreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x978cc2dd of_fdt_unflatten_tree EXPORT_SYMBOL_GPL vmlinux 0x97971f83 srcutorture_get_gp_data -EXPORT_SYMBOL_GPL vmlinux 0x9798c5bb spi_sync -EXPORT_SYMBOL_GPL vmlinux 0x97dab234 dev_pm_opp_of_add_table_indexed +EXPORT_SYMBOL_GPL vmlinux 0x97a7718b xen_dbgp_external_startup +EXPORT_SYMBOL_GPL vmlinux 0x97aa7612 ip6_dst_lookup_tunnel +EXPORT_SYMBOL_GPL vmlinux 0x97ad5a1f tty_release_struct +EXPORT_SYMBOL_GPL vmlinux 0x97aed137 tcp_register_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0x97afbda1 gpiochip_line_is_irq +EXPORT_SYMBOL_GPL vmlinux 0x97c12484 sysfs_merge_group EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent -EXPORT_SYMBOL_GPL vmlinux 0x97e306ce devm_request_pci_bus_resources -EXPORT_SYMBOL_GPL vmlinux 0x97ed98b1 sock_diag_register_inet_compat -EXPORT_SYMBOL_GPL vmlinux 0x97f227f1 device_driver_attach -EXPORT_SYMBOL_GPL vmlinux 0x97f3dd95 devm_tegra_core_dev_init_opp_table -EXPORT_SYMBOL_GPL vmlinux 0x97f3f792 extcon_dev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x980dc7f7 gfn_to_page -EXPORT_SYMBOL_GPL vmlinux 0x980f2b15 dma_async_device_channel_register -EXPORT_SYMBOL_GPL vmlinux 0x98271faf phy_resolve_aneg_pause +EXPORT_SYMBOL_GPL vmlinux 0x97dec85d ata_host_alloc_pinfo +EXPORT_SYMBOL_GPL vmlinux 0x97e106c0 do_splice_from +EXPORT_SYMBOL_GPL vmlinux 0x97e1b420 power_supply_get_battery_info +EXPORT_SYMBOL_GPL vmlinux 0x97ece755 replace_page_cache_page +EXPORT_SYMBOL_GPL vmlinux 0x97ee21f2 l3mdev_master_upper_ifindex_by_index_rcu +EXPORT_SYMBOL_GPL vmlinux 0x980c27ac sysfs_add_link_to_group +EXPORT_SYMBOL_GPL vmlinux 0x9822e61b l3mdev_link_scope_lookup +EXPORT_SYMBOL_GPL vmlinux 0x98240643 splice_to_pipe +EXPORT_SYMBOL_GPL vmlinux 0x982f312f power_supply_register EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick -EXPORT_SYMBOL_GPL vmlinux 0x9839ba57 nvdimm_clear_poison -EXPORT_SYMBOL_GPL vmlinux 0x983a97f6 crypto_stats_kpp_generate_public_key -EXPORT_SYMBOL_GPL vmlinux 0x984f3a06 shmem_file_setup_with_mnt EXPORT_SYMBOL_GPL vmlinux 0x98503a63 mpi_alloc -EXPORT_SYMBOL_GPL vmlinux 0x9850c09d pinconf_generic_dt_free_map EXPORT_SYMBOL_GPL vmlinux 0x985453e1 lease_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9866294e thermal_zone_device_disable -EXPORT_SYMBOL_GPL vmlinux 0x986c1f27 blk_mq_sched_try_insert_merge EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9881015b scsi_host_unblock EXPORT_SYMBOL_GPL vmlinux 0x989074ff kmsg_dump_reason_str -EXPORT_SYMBOL_GPL vmlinux 0x989b60fc ahci_platform_resume -EXPORT_SYMBOL_GPL vmlinux 0x98b04842 rtnl_put_cacheinfo EXPORT_SYMBOL_GPL vmlinux 0x98b142fa blk_fill_rwbs -EXPORT_SYMBOL_GPL vmlinux 0x98b74d5e devm_pm_opp_set_regulators -EXPORT_SYMBOL_GPL vmlinux 0x98bb64e1 sata_std_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x98b6062e pm_clk_init EXPORT_SYMBOL_GPL vmlinux 0x98c59274 __tracepoint_rpm_idle -EXPORT_SYMBOL_GPL vmlinux 0x98c6e781 icc_std_aggregate -EXPORT_SYMBOL_GPL vmlinux 0x98dad580 __irq_set_handler -EXPORT_SYMBOL_GPL vmlinux 0x98e48002 ata_bmdma_port_start32 -EXPORT_SYMBOL_GPL vmlinux 0x98e4bdff fs_kobj -EXPORT_SYMBOL_GPL vmlinux 0x98e81eb3 acpi_initialize_hp_context EXPORT_SYMBOL_GPL vmlinux 0x98ee62b2 ring_buffer_record_disable_cpu -EXPORT_SYMBOL_GPL vmlinux 0x98fa1632 fsverity_ioctl_measure +EXPORT_SYMBOL_GPL vmlinux 0x98ef5541 dw_pcie_setup_rc +EXPORT_SYMBOL_GPL vmlinux 0x98f78c04 devm_regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x98f8ee54 devm_of_phy_get EXPORT_SYMBOL_GPL vmlinux 0x98fa1e20 dm_get_reserved_rq_based_ios -EXPORT_SYMBOL_GPL vmlinux 0x99030a41 crypto_register_algs -EXPORT_SYMBOL_GPL vmlinux 0x993329f6 pinmux_generic_get_function_groups -EXPORT_SYMBOL_GPL vmlinux 0x9934e0ac pm_generic_thaw_noirq -EXPORT_SYMBOL_GPL vmlinux 0x9944e655 virtio_config_changed -EXPORT_SYMBOL_GPL vmlinux 0x99479700 dprc_setup -EXPORT_SYMBOL_GPL vmlinux 0x9949b17a trace_event_buffer_commit -EXPORT_SYMBOL_GPL vmlinux 0x9959805d devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0x98fac4bf sysfs_create_groups +EXPORT_SYMBOL_GPL vmlinux 0x98fd1f34 usb_amd_pt_check_port +EXPORT_SYMBOL_GPL vmlinux 0x99073688 wm8400_reset_codec_reg_cache +EXPORT_SYMBOL_GPL vmlinux 0x990d8815 uprobe_unregister +EXPORT_SYMBOL_GPL vmlinux 0x992542a4 devm_led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0x9939bb10 serdev_device_write_buf +EXPORT_SYMBOL_GPL vmlinux 0x993c5824 regcache_cache_only EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on +EXPORT_SYMBOL_GPL vmlinux 0x9960e38a i2c_recover_bus +EXPORT_SYMBOL_GPL vmlinux 0x996244a3 gpiod_get_array_value EXPORT_SYMBOL_GPL vmlinux 0x9968aacb __audit_log_nfcfg -EXPORT_SYMBOL_GPL vmlinux 0x996d2c36 debugfs_attr_read -EXPORT_SYMBOL_GPL vmlinux 0x996e42aa ata_qc_get_active -EXPORT_SYMBOL_GPL vmlinux 0x99706bc3 pinctrl_utils_free_map -EXPORT_SYMBOL_GPL vmlinux 0x9976dd1b sk_msg_memcopy_from_iter -EXPORT_SYMBOL_GPL vmlinux 0x997d92ef of_icc_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x996d174e list_lru_count_one +EXPORT_SYMBOL_GPL vmlinux 0x9988e27c fsl_mc_portal_free EXPORT_SYMBOL_GPL vmlinux 0x998d79d6 x509_decode_time -EXPORT_SYMBOL_GPL vmlinux 0x9999d3af __raw_v4_lookup -EXPORT_SYMBOL_GPL vmlinux 0x999f93e5 devlink_dpipe_table_register -EXPORT_SYMBOL_GPL vmlinux 0x99ac82f9 crypto_alloc_base -EXPORT_SYMBOL_GPL vmlinux 0x99ad33af regmap_test_bits -EXPORT_SYMBOL_GPL vmlinux 0x99c5ef93 iommu_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x999351c3 pci_epc_get +EXPORT_SYMBOL_GPL vmlinux 0x999f90a1 regulator_get_voltage_rdev +EXPORT_SYMBOL_GPL vmlinux 0x99b45976 of_property_read_u32_index +EXPORT_SYMBOL_GPL vmlinux 0x99c52d2a cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0x99c6e785 rtc_read_alarm +EXPORT_SYMBOL_GPL vmlinux 0x99cf90ce tty_find_polling_driver EXPORT_SYMBOL_GPL vmlinux 0x99dd730c page_reporting_unregister -EXPORT_SYMBOL_GPL vmlinux 0x99e019a9 trace_seq_path +EXPORT_SYMBOL_GPL vmlinux 0x99e6d678 shmem_file_setup +EXPORT_SYMBOL_GPL vmlinux 0x99e93212 rio_request_outb_mbox EXPORT_SYMBOL_GPL vmlinux 0x99f018c4 nvmem_cell_read -EXPORT_SYMBOL_GPL vmlinux 0x99f05077 udp_tunnel_nic_ops EXPORT_SYMBOL_GPL vmlinux 0x99f2d00a sysfs_emit_at -EXPORT_SYMBOL_GPL vmlinux 0x9a054b6d serial8250_rpm_get_tx -EXPORT_SYMBOL_GPL vmlinux 0x9a0573b2 dev_pm_opp_of_remove_table -EXPORT_SYMBOL_GPL vmlinux 0x9a0d0175 xen_unmap_domain_gfn_range +EXPORT_SYMBOL_GPL vmlinux 0x99fae2b1 access_process_vm +EXPORT_SYMBOL_GPL vmlinux 0x99ff09c6 wbt_enable_default +EXPORT_SYMBOL_GPL vmlinux 0x9a02e7a8 of_clk_get_from_provider +EXPORT_SYMBOL_GPL vmlinux 0x9a04f2b5 handle_fasteoi_mask_irq EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name -EXPORT_SYMBOL_GPL vmlinux 0x9a150905 vfs_setlease -EXPORT_SYMBOL_GPL vmlinux 0x9a1519f3 vp_modern_queue_address -EXPORT_SYMBOL_GPL vmlinux 0x9a1604f6 pci_disable_rom -EXPORT_SYMBOL_GPL vmlinux 0x9a1ed68f badblocks_check +EXPORT_SYMBOL_GPL vmlinux 0x9a159c7b crypto_alloc_tfm_node EXPORT_SYMBOL_GPL vmlinux 0x9a23ea6b alarm_expires_remaining -EXPORT_SYMBOL_GPL vmlinux 0x9a4483c7 inet_csk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x9a4cd11d subsys_dev_iter_next -EXPORT_SYMBOL_GPL vmlinux 0x9a4db037 blk_mq_freeze_queue_wait -EXPORT_SYMBOL_GPL vmlinux 0x9a579a4a blk_freeze_queue_start +EXPORT_SYMBOL_GPL vmlinux 0x9a3cd9ef amba_apb_device_add_res +EXPORT_SYMBOL_GPL vmlinux 0x9a3e1ded handle_fasteoi_irq +EXPORT_SYMBOL_GPL vmlinux 0x9a506941 vring_create_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x9a5b506e clk_hw_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0x9a5cbe86 fsl_mc_portal_allocate EXPORT_SYMBOL_GPL vmlinux 0x9a5dce5c rhashtable_walk_start_check -EXPORT_SYMBOL_GPL vmlinux 0x9a65a2b6 clk_fixed_rate_ops -EXPORT_SYMBOL_GPL vmlinux 0x9a6ef9b7 blk_mq_quiesce_queue -EXPORT_SYMBOL_GPL vmlinux 0x9a7f144f nvdimm_in_overwrite -EXPORT_SYMBOL_GPL vmlinux 0x9a9bd242 iommu_detach_group -EXPORT_SYMBOL_GPL vmlinux 0x9a9dde46 exportfs_decode_fh_raw -EXPORT_SYMBOL_GPL vmlinux 0x9aa623b2 vp_modern_get_status -EXPORT_SYMBOL_GPL vmlinux 0x9aae3ef5 kset_find_obj -EXPORT_SYMBOL_GPL vmlinux 0x9aaf9312 get_kernel_pages -EXPORT_SYMBOL_GPL vmlinux 0x9ab77578 __pm_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0x9abc4877 pm_generic_resume_early +EXPORT_SYMBOL_GPL vmlinux 0x9a6302f7 pin_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0x9a7ef432 mmu_notifier_put +EXPORT_SYMBOL_GPL vmlinux 0x9a8d3ecf devm_hwmon_device_register_with_info +EXPORT_SYMBOL_GPL vmlinux 0x9aab2836 xenbus_dev_groups EXPORT_SYMBOL_GPL vmlinux 0x9ac11b74 suspend_set_ops -EXPORT_SYMBOL_GPL vmlinux 0x9ac73194 pci_user_write_config_word -EXPORT_SYMBOL_GPL vmlinux 0x9ac97ca0 gpiod_set_consumer_name -EXPORT_SYMBOL_GPL vmlinux 0x9ac99ca1 usb_hcd_pci_pm_ops -EXPORT_SYMBOL_GPL vmlinux 0x9acb83b2 dev_pm_opp_remove_table -EXPORT_SYMBOL_GPL vmlinux 0x9acf1cda tcp_enter_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0x9ae2f74f mdiobus_modify +EXPORT_SYMBOL_GPL vmlinux 0x9ae74965 thermal_of_cooling_device_register EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty -EXPORT_SYMBOL_GPL vmlinux 0x9af2b93b virtio_check_driver_offered_feature EXPORT_SYMBOL_GPL vmlinux 0x9af49514 icc_bulk_set_bw +EXPORT_SYMBOL_GPL vmlinux 0x9af793dc nfs_ssc_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9b04d06a bdev_disk_changed EXPORT_SYMBOL_GPL vmlinux 0x9b0eaa52 tegra210_xusb_pll_hw_sequence_start -EXPORT_SYMBOL_GPL vmlinux 0x9b0fbb26 fuse_sync_release -EXPORT_SYMBOL_GPL vmlinux 0x9b10e066 fsstack_copy_inode_size -EXPORT_SYMBOL_GPL vmlinux 0x9b31fe47 sysfs_create_link_nowarn -EXPORT_SYMBOL_GPL vmlinux 0x9b399fee bus_unregister -EXPORT_SYMBOL_GPL vmlinux 0x9b4e4eb4 amba_device_add -EXPORT_SYMBOL_GPL vmlinux 0x9b5387cc mmput +EXPORT_SYMBOL_GPL vmlinux 0x9b10416f __traceiter_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0x9b112732 usb_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x9b3532c5 spi_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0x9b360a4b vp_modern_get_queue_size +EXPORT_SYMBOL_GPL vmlinux 0x9b37c3cd dm_table_device_name +EXPORT_SYMBOL_GPL vmlinux 0x9b3d5474 adp5520_read +EXPORT_SYMBOL_GPL vmlinux 0x9b3f6f6b tcp_twsk_unique +EXPORT_SYMBOL_GPL vmlinux 0x9b48be99 stmpe_enable +EXPORT_SYMBOL_GPL vmlinux 0x9b4ab6cf sk_set_memalloc +EXPORT_SYMBOL_GPL vmlinux 0x9b50f5d7 to_nvdimm_bus EXPORT_SYMBOL_GPL vmlinux 0x9b555c8c pm_suspend_default_s2idle -EXPORT_SYMBOL_GPL vmlinux 0x9b603fd5 pci_vfs_assigned -EXPORT_SYMBOL_GPL vmlinux 0x9b649e33 bpf_trace_run3 +EXPORT_SYMBOL_GPL vmlinux 0x9b630d39 iommu_attach_group EXPORT_SYMBOL_GPL vmlinux 0x9b698c42 ioasid_set_data +EXPORT_SYMBOL_GPL vmlinux 0x9b6994f5 ipv6_proxy_select_ident +EXPORT_SYMBOL_GPL vmlinux 0x9b6ce767 regulator_register EXPORT_SYMBOL_GPL vmlinux 0x9b6ec967 ring_buffer_size EXPORT_SYMBOL_GPL vmlinux 0x9b70c6ff tracepoint_probe_register_prio -EXPORT_SYMBOL_GPL vmlinux 0x9b712c68 nd_blk_region_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x9b84429b clk_hw_is_enabled EXPORT_SYMBOL_GPL vmlinux 0x9b896724 devlink_param_value_str_fill EXPORT_SYMBOL_GPL vmlinux 0x9b9071cb get_old_itimerspec32 EXPORT_SYMBOL_GPL vmlinux 0x9b92d16e pinctrl_gpio_set_config -EXPORT_SYMBOL_GPL vmlinux 0x9b96a03f badblocks_set -EXPORT_SYMBOL_GPL vmlinux 0x9b96fb04 inet6_hash -EXPORT_SYMBOL_GPL vmlinux 0x9ba2176f mtk_build_eint +EXPORT_SYMBOL_GPL vmlinux 0x9b9d99de of_mm_gpiochip_add_data +EXPORT_SYMBOL_GPL vmlinux 0x9ba02cb5 devm_hwmon_device_register_with_groups EXPORT_SYMBOL_GPL vmlinux 0x9ba2bb2b gpio_request_array -EXPORT_SYMBOL_GPL vmlinux 0x9bad5af8 fib6_rule_default -EXPORT_SYMBOL_GPL vmlinux 0x9bb0cda5 bsg_setup_queue -EXPORT_SYMBOL_GPL vmlinux 0x9bc589ee dpbp_get_attributes -EXPORT_SYMBOL_GPL vmlinux 0x9bcd41a1 gpiod_get_raw_array_value -EXPORT_SYMBOL_GPL vmlinux 0x9bcddd00 edac_mc_alloc +EXPORT_SYMBOL_GPL vmlinux 0x9baa0a4e of_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0x9babdcbd pci_cfg_access_lock +EXPORT_SYMBOL_GPL vmlinux 0x9bb1a187 clkdev_hw_create +EXPORT_SYMBOL_GPL vmlinux 0x9bb871ac regmap_write_async +EXPORT_SYMBOL_GPL vmlinux 0x9bca42ce acpi_irq_create_hierarchy EXPORT_SYMBOL_GPL vmlinux 0x9bcf9f7d housekeeping_enabled -EXPORT_SYMBOL_GPL vmlinux 0x9bd0a66e dma_request_chan_by_mask -EXPORT_SYMBOL_GPL vmlinux 0x9bdc2c3c serial8250_clear_and_reinit_fifos -EXPORT_SYMBOL_GPL vmlinux 0x9be2f4f4 kvm_vcpu_on_spin +EXPORT_SYMBOL_GPL vmlinux 0x9bd09d04 xfrm_audit_state_delete EXPORT_SYMBOL_GPL vmlinux 0x9be30d27 mhp_get_pluggable_range EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui -EXPORT_SYMBOL_GPL vmlinux 0x9bf6b5a2 dma_resv_get_fences -EXPORT_SYMBOL_GPL vmlinux 0x9c00a1b6 ti_sci_get_handle +EXPORT_SYMBOL_GPL vmlinux 0x9bf8e4ab irq_domain_create_hierarchy EXPORT_SYMBOL_GPL vmlinux 0x9c149893 ftrace_ops_set_global_filter -EXPORT_SYMBOL_GPL vmlinux 0x9c17e2d9 of_phandle_iterator_init -EXPORT_SYMBOL_GPL vmlinux 0x9c25ec40 pm_generic_suspend +EXPORT_SYMBOL_GPL vmlinux 0x9c19116a debugfs_file_get +EXPORT_SYMBOL_GPL vmlinux 0x9c364c45 sk_msg_zerocopy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0x9c374846 kthread_cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x9c3bcc37 device_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0x9c4377ad pci_epc_mem_free_addr EXPORT_SYMBOL_GPL vmlinux 0x9c448d8d tegra210_put_utmipll_out_iddq +EXPORT_SYMBOL_GPL vmlinux 0x9c470437 badblocks_check EXPORT_SYMBOL_GPL vmlinux 0x9c51b078 srcu_barrier -EXPORT_SYMBOL_GPL vmlinux 0x9c5c0603 rio_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x9c54f385 task_cgroup_path EXPORT_SYMBOL_GPL vmlinux 0x9c6febfc add_uevent_var -EXPORT_SYMBOL_GPL vmlinux 0x9c7aa505 iommu_fwspec_init +EXPORT_SYMBOL_GPL vmlinux 0x9c7017e6 ip_route_output_flow +EXPORT_SYMBOL_GPL vmlinux 0x9c711ff6 bpf_trace_run10 +EXPORT_SYMBOL_GPL vmlinux 0x9c72432a skb_copy_ubufs EXPORT_SYMBOL_GPL vmlinux 0x9c803020 usb_phy_roothub_power_on -EXPORT_SYMBOL_GPL vmlinux 0x9c89697e fwnode_count_parents -EXPORT_SYMBOL_GPL vmlinux 0x9c89e966 debugfs_file_put -EXPORT_SYMBOL_GPL vmlinux 0x9cb1644c blkcg_deactivate_policy +EXPORT_SYMBOL_GPL vmlinux 0x9c87d23c platform_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0x9ca7a33d tps65912_device_init +EXPORT_SYMBOL_GPL vmlinux 0x9cabf58b nf_queue +EXPORT_SYMBOL_GPL vmlinux 0x9cafcc9e ata_pci_device_resume EXPORT_SYMBOL_GPL vmlinux 0x9cb5af34 disable_kprobe -EXPORT_SYMBOL_GPL vmlinux 0x9cbca242 devm_pm_opp_set_clkname -EXPORT_SYMBOL_GPL vmlinux 0x9cc2df53 regulator_map_voltage_linear_range -EXPORT_SYMBOL_GPL vmlinux 0x9cc4b922 rio_request_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x9cba94c7 pci_vpd_alloc EXPORT_SYMBOL_GPL vmlinux 0x9cc4f70a register_pm_notifier EXPORT_SYMBOL_GPL vmlinux 0x9cd7551a rhashtable_walk_stop -EXPORT_SYMBOL_GPL vmlinux 0x9cdc2f6b replace_page_cache_page -EXPORT_SYMBOL_GPL vmlinux 0x9ce0e452 sysfs_merge_group +EXPORT_SYMBOL_GPL vmlinux 0x9ce17729 crypto_shash_finup +EXPORT_SYMBOL_GPL vmlinux 0x9cf08302 sysfs_notify +EXPORT_SYMBOL_GPL vmlinux 0x9cf204b7 fsl_mc_object_allocate EXPORT_SYMBOL_GPL vmlinux 0x9cf37c44 __iowrite32_copy +EXPORT_SYMBOL_GPL vmlinux 0x9cf84a71 iptunnel_metadata_reply +EXPORT_SYMBOL_GPL vmlinux 0x9d07b75c synth_event_add_val EXPORT_SYMBOL_GPL vmlinux 0x9d09e8ae ring_buffer_event_data -EXPORT_SYMBOL_GPL vmlinux 0x9d125368 of_dma_configure_id -EXPORT_SYMBOL_GPL vmlinux 0x9d199812 pwm_apply_state -EXPORT_SYMBOL_GPL vmlinux 0x9d25314b dma_buf_end_cpu_access -EXPORT_SYMBOL_GPL vmlinux 0x9d2d3257 crypto_unregister_template -EXPORT_SYMBOL_GPL vmlinux 0x9d2e2a12 fsverity_file_open +EXPORT_SYMBOL_GPL vmlinux 0x9d1ae7ac rtc_update_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0x9d229cb4 is_transparent_hugepage +EXPORT_SYMBOL_GPL vmlinux 0x9d23c84f dev_pm_set_dedicated_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x9d23d5c2 od_register_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0x9d27cb22 devm_regmap_init_vexpress_config EXPORT_SYMBOL_GPL vmlinux 0x9d2f49ef __SCK__tp_func_pelt_se_tp -EXPORT_SYMBOL_GPL vmlinux 0x9d39f02f efivar_entry_add -EXPORT_SYMBOL_GPL vmlinux 0x9d3a6948 netdev_walk_all_lower_dev -EXPORT_SYMBOL_GPL vmlinux 0x9d42cb49 wm831x_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x9d438991 devm_pm_opp_of_add_table -EXPORT_SYMBOL_GPL vmlinux 0x9d52605b debugfs_create_bool -EXPORT_SYMBOL_GPL vmlinux 0x9d7147fb __blk_req_zone_write_lock -EXPORT_SYMBOL_GPL vmlinux 0x9d8235c3 kernfs_path_from_node -EXPORT_SYMBOL_GPL vmlinux 0x9d8ed329 acpi_subsys_prepare -EXPORT_SYMBOL_GPL vmlinux 0x9d9cd34b fsnotify_alloc_user_group -EXPORT_SYMBOL_GPL vmlinux 0x9dcf4f5f fscrypt_set_bio_crypt_ctx_bh -EXPORT_SYMBOL_GPL vmlinux 0x9de1d17a rio_map_outb_region -EXPORT_SYMBOL_GPL vmlinux 0x9df7fc57 regmap_get_val_endian +EXPORT_SYMBOL_GPL vmlinux 0x9d3bf72a __irq_alloc_domain_generic_chips +EXPORT_SYMBOL_GPL vmlinux 0x9d591999 crypto_stats_akcipher_sign +EXPORT_SYMBOL_GPL vmlinux 0x9d593952 badblocks_show +EXPORT_SYMBOL_GPL vmlinux 0x9d627c8b icc_link_create +EXPORT_SYMBOL_GPL vmlinux 0x9d63c35e i2c_acpi_client_count +EXPORT_SYMBOL_GPL vmlinux 0x9d89af6c __devm_pci_epc_create +EXPORT_SYMBOL_GPL vmlinux 0x9d98e90a xdp_convert_zc_to_xdp_frame +EXPORT_SYMBOL_GPL vmlinux 0x9da000d2 usb_disable_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0x9db7175c serial8250_rpm_put +EXPORT_SYMBOL_GPL vmlinux 0x9dbdaed7 device_set_wakeup_capable EXPORT_SYMBOL_GPL vmlinux 0x9e005e6f cppc_get_perf_caps +EXPORT_SYMBOL_GPL vmlinux 0x9e011889 crypto_alg_extsize EXPORT_SYMBOL_GPL vmlinux 0x9e047ec0 __srcu_read_lock -EXPORT_SYMBOL_GPL vmlinux 0x9e065353 usb_create_shared_hcd -EXPORT_SYMBOL_GPL vmlinux 0x9e1714d3 ata_sff_data_xfer -EXPORT_SYMBOL_GPL vmlinux 0x9e29e311 clk_hw_register_gate2 -EXPORT_SYMBOL_GPL vmlinux 0x9e3918ce pci_destroy_slot -EXPORT_SYMBOL_GPL vmlinux 0x9e3c67cc pci_set_host_bridge_release +EXPORT_SYMBOL_GPL vmlinux 0x9e0af1a0 spi_mem_adjust_op_size +EXPORT_SYMBOL_GPL vmlinux 0x9e13b392 extcon_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9e1f21f0 phy_save_page +EXPORT_SYMBOL_GPL vmlinux 0x9e24e069 sdio_writel +EXPORT_SYMBOL_GPL vmlinux 0x9e2b5f2e sysfs_create_group +EXPORT_SYMBOL_GPL vmlinux 0x9e44de1c cpufreq_cpu_get_raw EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field -EXPORT_SYMBOL_GPL vmlinux 0x9e47d267 skb_scrub_packet -EXPORT_SYMBOL_GPL vmlinux 0x9e573400 unregister_trace_event -EXPORT_SYMBOL_GPL vmlinux 0x9e724e44 uart_get_rs485_mode -EXPORT_SYMBOL_GPL vmlinux 0x9e7dc315 md_find_rdev_rcu -EXPORT_SYMBOL_GPL vmlinux 0x9e80c5d1 __devm_reset_control_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0x9e8471d9 pci_aer_clear_nonfatal_status -EXPORT_SYMBOL_GPL vmlinux 0x9e8a2e14 kvm_release_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0x9e4bd7a6 skb_send_sock_locked +EXPORT_SYMBOL_GPL vmlinux 0x9e5316c1 skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x9e549a64 edac_pci_alloc_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0x9e54d1d6 gpiod_set_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x9e5d3956 device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9e691b53 bus_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9e6e16a6 devm_platform_ioremap_resource +EXPORT_SYMBOL_GPL vmlinux 0x9e71bdac pci_hp_del +EXPORT_SYMBOL_GPL vmlinux 0x9e74440c pm_runtime_force_suspend +EXPORT_SYMBOL_GPL vmlinux 0x9e7a54e5 md_account_bio +EXPORT_SYMBOL_GPL vmlinux 0x9e7be783 ata_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0x9e7eb07b serdev_device_wait_until_sent +EXPORT_SYMBOL_GPL vmlinux 0x9e92dd8e fuse_get_unique +EXPORT_SYMBOL_GPL vmlinux 0x9e9413d6 device_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x9e95690b virtqueue_get_used_addr EXPORT_SYMBOL_GPL vmlinux 0x9e9b913d __tracepoint_arm_event -EXPORT_SYMBOL_GPL vmlinux 0x9ea67be1 kobject_uevent -EXPORT_SYMBOL_GPL vmlinux 0x9eab7da9 of_css -EXPORT_SYMBOL_GPL vmlinux 0x9eb30e07 i2c_dw_configure_master -EXPORT_SYMBOL_GPL vmlinux 0x9ec13c5a vchan_dma_desc_free_list -EXPORT_SYMBOL_GPL vmlinux 0x9ec90b42 regulator_map_voltage_pickable_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x9e9fef3f devfreq_event_reset_event +EXPORT_SYMBOL_GPL vmlinux 0x9ea51a75 meson_pmx_get_groups +EXPORT_SYMBOL_GPL vmlinux 0x9ea5c9db crypto_unregister_template +EXPORT_SYMBOL_GPL vmlinux 0x9ec34188 __kthread_should_park EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9ed5f072 crypto_stats_kpp_compute_shared_secret -EXPORT_SYMBOL_GPL vmlinux 0x9edfdeda dma_buf_map_attachment +EXPORT_SYMBOL_GPL vmlinux 0x9eeb131d nf_queue_nf_hook_drop EXPORT_SYMBOL_GPL vmlinux 0x9eebdde7 mpi_point_new -EXPORT_SYMBOL_GPL vmlinux 0x9ef38065 security_path_symlink -EXPORT_SYMBOL_GPL vmlinux 0x9f00f69c __bio_add_page -EXPORT_SYMBOL_GPL vmlinux 0x9f06a8a5 ima_file_check -EXPORT_SYMBOL_GPL vmlinux 0x9f18ebbd dw_pcie_find_capability -EXPORT_SYMBOL_GPL vmlinux 0x9f28b3b5 tty_port_default_client_ops -EXPORT_SYMBOL_GPL vmlinux 0x9f341f7c register_net_sysctl -EXPORT_SYMBOL_GPL vmlinux 0x9f398f3e pci_check_and_unmask_intx -EXPORT_SYMBOL_GPL vmlinux 0x9f3a02ec skb_consume_udp -EXPORT_SYMBOL_GPL vmlinux 0x9f3f3544 ip_local_out -EXPORT_SYMBOL_GPL vmlinux 0x9f4aa69a rcu_read_unlock_trace_special +EXPORT_SYMBOL_GPL vmlinux 0x9ef0ad1e device_match_devt +EXPORT_SYMBOL_GPL vmlinux 0x9ef18459 devm_platform_get_irqs_affinity +EXPORT_SYMBOL_GPL vmlinux 0x9f0226da crypto_larval_alloc +EXPORT_SYMBOL_GPL vmlinux 0x9f044b28 device_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x9f065729 fsnotify_alloc_group +EXPORT_SYMBOL_GPL vmlinux 0x9f06e613 platform_irq_count +EXPORT_SYMBOL_GPL vmlinux 0x9f29efd7 dev_attr_em_message +EXPORT_SYMBOL_GPL vmlinux 0x9f30095c iommu_page_response +EXPORT_SYMBOL_GPL vmlinux 0x9f329671 watchdog_init_timeout EXPORT_SYMBOL_GPL vmlinux 0x9f4c4aa0 spi_delay_to_ns +EXPORT_SYMBOL_GPL vmlinux 0x9f502696 cgroup_get_from_fd EXPORT_SYMBOL_GPL vmlinux 0x9f517986 HYPERVISOR_hvm_op -EXPORT_SYMBOL_GPL vmlinux 0x9f531851 synth_event_add_next_val -EXPORT_SYMBOL_GPL vmlinux 0x9f5369f9 metadata_dst_free -EXPORT_SYMBOL_GPL vmlinux 0x9f536ad5 __phy_modify EXPORT_SYMBOL_GPL vmlinux 0x9f56c4b9 __SCK__tp_func_devlink_hwmsg -EXPORT_SYMBOL_GPL vmlinux 0x9faf7841 gpiod_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x9fb0c68a sk_msg_free_nocharge +EXPORT_SYMBOL_GPL vmlinux 0x9f7c9872 of_changeset_action +EXPORT_SYMBOL_GPL vmlinux 0x9f7fc8b7 wm831x_auxadc_read_uv +EXPORT_SYMBOL_GPL vmlinux 0x9f8303f1 usb_alloc_urb +EXPORT_SYMBOL_GPL vmlinux 0x9f873b4d umd_load_blob +EXPORT_SYMBOL_GPL vmlinux 0x9f9e3c01 switchdev_port_obj_add +EXPORT_SYMBOL_GPL vmlinux 0x9fa4ffc0 platform_get_resource_byname EXPORT_SYMBOL_GPL vmlinux 0x9fbfebab erst_write +EXPORT_SYMBOL_GPL vmlinux 0x9fc2f3ee __traceiter_pelt_irq_tp EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x9fdde0ba fscrypt_file_open -EXPORT_SYMBOL_GPL vmlinux 0x9fe7d3dc hisi_clk_alloc EXPORT_SYMBOL_GPL vmlinux 0x9fe899b7 get_cpu_idle_time EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm -EXPORT_SYMBOL_GPL vmlinux 0x9febad38 regulator_set_voltage -EXPORT_SYMBOL_GPL vmlinux 0x9ff4e9c8 regulator_list_voltage_table -EXPORT_SYMBOL_GPL vmlinux 0xa0112ac3 to_nd_region -EXPORT_SYMBOL_GPL vmlinux 0xa011dbdd param_ops_bool_enable_only -EXPORT_SYMBOL_GPL vmlinux 0xa014d8be regulator_map_voltage_iterate -EXPORT_SYMBOL_GPL vmlinux 0xa01a7d40 ata_std_postreset +EXPORT_SYMBOL_GPL vmlinux 0xa00610af transport_configure_device EXPORT_SYMBOL_GPL vmlinux 0xa01a8d9b nd_cmd_bus_desc -EXPORT_SYMBOL_GPL vmlinux 0xa031e1cb virtio_max_dma_size -EXPORT_SYMBOL_GPL vmlinux 0xa0419899 pci_device_group -EXPORT_SYMBOL_GPL vmlinux 0xa044c6ad __class_create +EXPORT_SYMBOL_GPL vmlinux 0xa0209d11 devres_destroy +EXPORT_SYMBOL_GPL vmlinux 0xa02af78d pm_generic_freeze_late +EXPORT_SYMBOL_GPL vmlinux 0xa02df3f6 __ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0xa03b5a35 acpi_get_first_physical_node +EXPORT_SYMBOL_GPL vmlinux 0xa04ab0c5 phy_power_off +EXPORT_SYMBOL_GPL vmlinux 0xa04d591f hvc_poll EXPORT_SYMBOL_GPL vmlinux 0xa04f945a cpus_read_lock -EXPORT_SYMBOL_GPL vmlinux 0xa0553358 reset_controller_register -EXPORT_SYMBOL_GPL vmlinux 0xa062b329 fuse_dev_alloc_install -EXPORT_SYMBOL_GPL vmlinux 0xa064068c pwm_request -EXPORT_SYMBOL_GPL vmlinux 0xa06cde39 devres_remove -EXPORT_SYMBOL_GPL vmlinux 0xa06d8d80 fsl_mc_device_group -EXPORT_SYMBOL_GPL vmlinux 0xa06f32cb kill_device -EXPORT_SYMBOL_GPL vmlinux 0xa0716c49 __devm_spi_alloc_controller +EXPORT_SYMBOL_GPL vmlinux 0xa05334ce platform_device_add_data +EXPORT_SYMBOL_GPL vmlinux 0xa05f622c k3_udma_glue_rx_flow_init +EXPORT_SYMBOL_GPL vmlinux 0xa06277a9 tun_get_tx_ring EXPORT_SYMBOL_GPL vmlinux 0xa071c0cd tegra210_xusb_pll_hw_control_enable -EXPORT_SYMBOL_GPL vmlinux 0xa071c49f root_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa07e2c75 dma_get_required_mask +EXPORT_SYMBOL_GPL vmlinux 0xa07d4e0b usb_hcd_end_port_resume EXPORT_SYMBOL_GPL vmlinux 0xa080c5e5 smp_call_function_single_async -EXPORT_SYMBOL_GPL vmlinux 0xa082baa7 ahci_shost_attrs -EXPORT_SYMBOL_GPL vmlinux 0xa0876074 pwmchip_add -EXPORT_SYMBOL_GPL vmlinux 0xa09a90c4 mptcp_pm_get_add_addr_accept_max -EXPORT_SYMBOL_GPL vmlinux 0xa09b2868 sysfs_remove_bin_file -EXPORT_SYMBOL_GPL vmlinux 0xa0b886dd __devm_alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0xa0bb3cc3 crypto_register_kpp +EXPORT_SYMBOL_GPL vmlinux 0xa0861813 mmc_pwrseq_register +EXPORT_SYMBOL_GPL vmlinux 0xa08d34b5 crypto_shash_update +EXPORT_SYMBOL_GPL vmlinux 0xa0a2b572 phy_pm_runtime_get_sync +EXPORT_SYMBOL_GPL vmlinux 0xa0c9f607 usb_put_intf +EXPORT_SYMBOL_GPL vmlinux 0xa0cbf52f io_cgrp_subsys +EXPORT_SYMBOL_GPL vmlinux 0xa0ceb1f9 qcom_smem_state_get +EXPORT_SYMBOL_GPL vmlinux 0xa0d03058 dev_pm_opp_detach_genpd EXPORT_SYMBOL_GPL vmlinux 0xa0d3456d nr_swap_pages -EXPORT_SYMBOL_GPL vmlinux 0xa0d4e4b7 cpufreq_driver_fast_switch -EXPORT_SYMBOL_GPL vmlinux 0xa0d6b603 phy_power_on -EXPORT_SYMBOL_GPL vmlinux 0xa106fff0 pcie_port_find_device +EXPORT_SYMBOL_GPL vmlinux 0xa0d65a6a regcache_mark_dirty +EXPORT_SYMBOL_GPL vmlinux 0xa0e36f01 devlink_region_snapshot_id_put +EXPORT_SYMBOL_GPL vmlinux 0xa0e8466e inet_unhash +EXPORT_SYMBOL_GPL vmlinux 0xa0f4b6e1 gpiochip_find +EXPORT_SYMBOL_GPL vmlinux 0xa10bf6ee gpiochip_generic_request EXPORT_SYMBOL_GPL vmlinux 0xa11216be xen_store_domain_type -EXPORT_SYMBOL_GPL vmlinux 0xa1296886 smpboot_unregister_percpu_thread -EXPORT_SYMBOL_GPL vmlinux 0xa1396e4c dpbp_disable +EXPORT_SYMBOL_GPL vmlinux 0xa129a951 crypto_register_ahash +EXPORT_SYMBOL_GPL vmlinux 0xa13042fc ti_sci_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xa134117d relay_close +EXPORT_SYMBOL_GPL vmlinux 0xa1394cb0 sata_async_notification +EXPORT_SYMBOL_GPL vmlinux 0xa14c26ca devlink_is_reload_failed EXPORT_SYMBOL_GPL vmlinux 0xa156a1f2 erst_get_record_id_end -EXPORT_SYMBOL_GPL vmlinux 0xa16797c1 netdev_rx_handler_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa15f43e0 tcp_bpf_update_proto EXPORT_SYMBOL_GPL vmlinux 0xa1691b63 xas_find_marked EXPORT_SYMBOL_GPL vmlinux 0xa16deb13 sbitmap_resize -EXPORT_SYMBOL_GPL vmlinux 0xa1749afb qcom_smem_state_get -EXPORT_SYMBOL_GPL vmlinux 0xa194ddea ata_scsi_dma_need_drain +EXPORT_SYMBOL_GPL vmlinux 0xa17276f4 rio_mport_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0xa173d2ea ata_link_online +EXPORT_SYMBOL_GPL vmlinux 0xa176a356 regulator_force_disable +EXPORT_SYMBOL_GPL vmlinux 0xa18497ee kthread_use_mm +EXPORT_SYMBOL_GPL vmlinux 0xa186ac26 ata_pci_sff_activate_host +EXPORT_SYMBOL_GPL vmlinux 0xa198f17c kvm_arch_ptp_get_crosststamp +EXPORT_SYMBOL_GPL vmlinux 0xa1ae504d get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0xa1b8e0a4 cpu_device_create +EXPORT_SYMBOL_GPL vmlinux 0xa1bf697f bind_interdomain_evtchn_to_irq_lateeoi EXPORT_SYMBOL_GPL vmlinux 0xa1c4231f kvm_set_pfn_dirty -EXPORT_SYMBOL_GPL vmlinux 0xa1c42d86 blk_rq_err_bytes -EXPORT_SYMBOL_GPL vmlinux 0xa1cfd1f3 request_firmware_direct +EXPORT_SYMBOL_GPL vmlinux 0xa1d447e1 __skb_get_hash_symmetric EXPORT_SYMBOL_GPL vmlinux 0xa1d8004a videomode_from_timing -EXPORT_SYMBOL_GPL vmlinux 0xa1dad81e device_release_driver -EXPORT_SYMBOL_GPL vmlinux 0xa1e0f573 i2c_dw_adjust_bus_speed -EXPORT_SYMBOL_GPL vmlinux 0xa1ecf761 rockchip_pcie_deinit_phys +EXPORT_SYMBOL_GPL vmlinux 0xa1e2ca3d perf_event_sysfs_show +EXPORT_SYMBOL_GPL vmlinux 0xa1ea9c58 tps6586x_clr_bits EXPORT_SYMBOL_GPL vmlinux 0xa1ed9c8b add_hwgenerator_randomness -EXPORT_SYMBOL_GPL vmlinux 0xa1f6ff00 raw_unhash_sk -EXPORT_SYMBOL_GPL vmlinux 0xa1fef552 l3mdev_fib_table_by_index -EXPORT_SYMBOL_GPL vmlinux 0xa20cc13d efivar_entry_get +EXPORT_SYMBOL_GPL vmlinux 0xa1f13611 serial8250_read_char +EXPORT_SYMBOL_GPL vmlinux 0xa1f74c6d blk_mq_pci_map_queues +EXPORT_SYMBOL_GPL vmlinux 0xa2024d96 shmem_file_setup_with_mnt EXPORT_SYMBOL_GPL vmlinux 0xa20d01ba __trace_bprintk -EXPORT_SYMBOL_GPL vmlinux 0xa21ab356 ip6_datagram_connect -EXPORT_SYMBOL_GPL vmlinux 0xa22af091 blkcg_root +EXPORT_SYMBOL_GPL vmlinux 0xa219b11b __traceiter_sched_update_nr_running_tp +EXPORT_SYMBOL_GPL vmlinux 0xa22c5691 of_pci_address_to_resource +EXPORT_SYMBOL_GPL vmlinux 0xa22d64bd serdev_device_write EXPORT_SYMBOL_GPL vmlinux 0xa22d9548 trace_seq_to_user -EXPORT_SYMBOL_GPL vmlinux 0xa23ed2e9 dm_noflush_suspending -EXPORT_SYMBOL_GPL vmlinux 0xa2492e27 __fscrypt_prepare_setattr +EXPORT_SYMBOL_GPL vmlinux 0xa243240c devm_pinctrl_register +EXPORT_SYMBOL_GPL vmlinux 0xa243e8a6 cgroup_get_e_css +EXPORT_SYMBOL_GPL vmlinux 0xa249f4da pm_generic_freeze EXPORT_SYMBOL_GPL vmlinux 0xa2500ef6 __SCK__tp_func_powernv_throttle -EXPORT_SYMBOL_GPL vmlinux 0xa255925d blk_revalidate_disk_zones +EXPORT_SYMBOL_GPL vmlinux 0xa255a48d tty_port_register_device EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested -EXPORT_SYMBOL_GPL vmlinux 0xa26f7e02 regmap_get_val_bytes +EXPORT_SYMBOL_GPL vmlinux 0xa26e2c31 of_dma_router_register +EXPORT_SYMBOL_GPL vmlinux 0xa298c77c trace_output_call +EXPORT_SYMBOL_GPL vmlinux 0xa2a72a94 mtk_pinconf_bias_get EXPORT_SYMBOL_GPL vmlinux 0xa2af54b3 irq_from_evtchn EXPORT_SYMBOL_GPL vmlinux 0xa2b0820d __SCK__tp_func_cpu_idle -EXPORT_SYMBOL_GPL vmlinux 0xa2b3251e ksm_madvise +EXPORT_SYMBOL_GPL vmlinux 0xa2b276a7 phy_calibrate +EXPORT_SYMBOL_GPL vmlinux 0xa2b30dc3 wp_shared_mapping_range +EXPORT_SYMBOL_GPL vmlinux 0xa2b73882 shash_ahash_finup EXPORT_SYMBOL_GPL vmlinux 0xa2b99209 alarm_start -EXPORT_SYMBOL_GPL vmlinux 0xa2c13506 udp_abort -EXPORT_SYMBOL_GPL vmlinux 0xa2c92fe8 platform_irqchip_probe -EXPORT_SYMBOL_GPL vmlinux 0xa2d30ce0 vchan_tx_submit -EXPORT_SYMBOL_GPL vmlinux 0xa2d80fbd serial8250_tx_chars -EXPORT_SYMBOL_GPL vmlinux 0xa2db42cb ata_noop_qc_prep -EXPORT_SYMBOL_GPL vmlinux 0xa2dfd443 ata_pci_shutdown_one +EXPORT_SYMBOL_GPL vmlinux 0xa2bba9ac user_describe +EXPORT_SYMBOL_GPL vmlinux 0xa2bfe86a of_property_read_string_helper +EXPORT_SYMBOL_GPL vmlinux 0xa2c78cd6 devm_gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xa2d45317 netlink_add_tap EXPORT_SYMBOL_GPL vmlinux 0xa2e1b3ef trace_printk_init_buffers +EXPORT_SYMBOL_GPL vmlinux 0xa2f08ee6 of_device_uevent_modalias EXPORT_SYMBOL_GPL vmlinux 0xa2f7487f hv_is_hibernation_supported -EXPORT_SYMBOL_GPL vmlinux 0xa30a68c2 pci_bus_add_device -EXPORT_SYMBOL_GPL vmlinux 0xa319b835 blk_insert_cloned_request -EXPORT_SYMBOL_GPL vmlinux 0xa322eb55 register_user_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0xa32d7e2d vfs_fallocate -EXPORT_SYMBOL_GPL vmlinux 0xa32e4235 bpf_preload_ops -EXPORT_SYMBOL_GPL vmlinux 0xa34c2fef pm_runtime_allow -EXPORT_SYMBOL_GPL vmlinux 0xa353d67d of_get_display_timing +EXPORT_SYMBOL_GPL vmlinux 0xa30b3fb1 devlink_port_param_driverinit_value_set +EXPORT_SYMBOL_GPL vmlinux 0xa335dd18 device_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xa3421659 led_blink_set +EXPORT_SYMBOL_GPL vmlinux 0xa352c642 raw_unhash_sk +EXPORT_SYMBOL_GPL vmlinux 0xa353c979 usb_bulk_msg +EXPORT_SYMBOL_GPL vmlinux 0xa3653e12 sock_map_close +EXPORT_SYMBOL_GPL vmlinux 0xa3691ffe component_master_del EXPORT_SYMBOL_GPL vmlinux 0xa36f50fb is_binary_blacklisted -EXPORT_SYMBOL_GPL vmlinux 0xa377dae8 power_supply_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa37cf096 handle_simple_irq EXPORT_SYMBOL_GPL vmlinux 0xa38602cd drain_workqueue EXPORT_SYMBOL_GPL vmlinux 0xa389a49a profile_event_register EXPORT_SYMBOL_GPL vmlinux 0xa38a9f71 get_itimerspec64 EXPORT_SYMBOL_GPL vmlinux 0xa38c1436 cpu_bit_bitmap -EXPORT_SYMBOL_GPL vmlinux 0xa394b113 cpufreq_cpu_put +EXPORT_SYMBOL_GPL vmlinux 0xa39bc1b5 rockchip_clk_of_add_provider EXPORT_SYMBOL_GPL vmlinux 0xa3a04602 btree_geo64 -EXPORT_SYMBOL_GPL vmlinux 0xa3b8358b dev_pm_opp_adjust_voltage +EXPORT_SYMBOL_GPL vmlinux 0xa3a47f37 ata_scsi_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0xa3aa1842 dmaengine_desc_get_metadata_ptr +EXPORT_SYMBOL_GPL vmlinux 0xa3ad0443 of_i2c_get_board_info +EXPORT_SYMBOL_GPL vmlinux 0xa3adae88 rio_register_mport +EXPORT_SYMBOL_GPL vmlinux 0xa3afb7f7 amba_device_add EXPORT_SYMBOL_GPL vmlinux 0xa3b958ce reset_hung_task_detector -EXPORT_SYMBOL_GPL vmlinux 0xa3d54a18 kthread_unuse_mm -EXPORT_SYMBOL_GPL vmlinux 0xa3d7ece5 devlink_port_attrs_set +EXPORT_SYMBOL_GPL vmlinux 0xa3d8799b thermal_zone_bind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0xa3d8b766 fixed_phy_set_link_update EXPORT_SYMBOL_GPL vmlinux 0xa3dcb681 zynqmp_pm_fpga_load -EXPORT_SYMBOL_GPL vmlinux 0xa3ec8cb5 generic_fsdax_supported +EXPORT_SYMBOL_GPL vmlinux 0xa3e1117b crypto_aead_setauthsize EXPORT_SYMBOL_GPL vmlinux 0xa3ece414 freezer_cgrp_subsys_enabled_key EXPORT_SYMBOL_GPL vmlinux 0xa3f12f69 __crypto_xor +EXPORT_SYMBOL_GPL vmlinux 0xa401ef09 tcp_reno_cong_avoid EXPORT_SYMBOL_GPL vmlinux 0xa4031b7f sfp_parse_port EXPORT_SYMBOL_GPL vmlinux 0xa410a295 devlink_region_destroy -EXPORT_SYMBOL_GPL vmlinux 0xa41e2415 hwpoison_filter -EXPORT_SYMBOL_GPL vmlinux 0xa4392076 devm_platform_ioremap_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0xa4163167 cpci_hp_register_controller +EXPORT_SYMBOL_GPL vmlinux 0xa41fe33c dev_pm_opp_free_cpufreq_table +EXPORT_SYMBOL_GPL vmlinux 0xa43117ef dev_pm_set_wake_irq EXPORT_SYMBOL_GPL vmlinux 0xa44a1307 interval_tree_iter_first EXPORT_SYMBOL_GPL vmlinux 0xa452f2a4 xen_pirq_from_irq +EXPORT_SYMBOL_GPL vmlinux 0xa4583bc3 inet6_lookup EXPORT_SYMBOL_GPL vmlinux 0xa45c7b90 stack_trace_print EXPORT_SYMBOL_GPL vmlinux 0xa45d44fc zynqmp_pm_get_pll_frac_data -EXPORT_SYMBOL_GPL vmlinux 0xa472cd6f filemap_range_needs_writeback -EXPORT_SYMBOL_GPL vmlinux 0xa475d8f4 fsl_mc_device_add +EXPORT_SYMBOL_GPL vmlinux 0xa45d4f6e usb_ifnum_to_if +EXPORT_SYMBOL_GPL vmlinux 0xa45f1fc4 add_page_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0xa47e2d8f da903x_write EXPORT_SYMBOL_GPL vmlinux 0xa48196c8 kdb_poll_idx -EXPORT_SYMBOL_GPL vmlinux 0xa482dfd6 of_mm_gpiochip_add_data +EXPORT_SYMBOL_GPL vmlinux 0xa48fffbe ehci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0xa4a206d9 crypto_unregister_skciphers +EXPORT_SYMBOL_GPL vmlinux 0xa4a81a54 iommu_detach_device EXPORT_SYMBOL_GPL vmlinux 0xa4ab7c1c ring_buffer_overruns -EXPORT_SYMBOL_GPL vmlinux 0xa4ae2f3a virtio_device_restore +EXPORT_SYMBOL_GPL vmlinux 0xa4afd425 get_net_ns EXPORT_SYMBOL_GPL vmlinux 0xa4b07fe7 ring_buffer_change_overwrite -EXPORT_SYMBOL_GPL vmlinux 0xa4bf22a5 exportfs_encode_fh +EXPORT_SYMBOL_GPL vmlinux 0xa4b0d335 dm_bio_get_target_bio_nr EXPORT_SYMBOL_GPL vmlinux 0xa4c00324 asn1_encode_octet_string -EXPORT_SYMBOL_GPL vmlinux 0xa4d938c4 pci_reset_function -EXPORT_SYMBOL_GPL vmlinux 0xa4df41f8 mmu_interval_notifier_insert_locked -EXPORT_SYMBOL_GPL vmlinux 0xa4e002c7 driver_find_device +EXPORT_SYMBOL_GPL vmlinux 0xa4d21aec iommu_unmap_fast +EXPORT_SYMBOL_GPL vmlinux 0xa4d76b19 pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0xa4e10297 bus_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xa4e4ef91 blk_ksm_destroy +EXPORT_SYMBOL_GPL vmlinux 0xa4e8fbcc skcipher_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xa4eb12fe ata_host_init EXPORT_SYMBOL_GPL vmlinux 0xa4eb5793 sbitmap_weight -EXPORT_SYMBOL_GPL vmlinux 0xa4ed5e1b kthread_data +EXPORT_SYMBOL_GPL vmlinux 0xa4ee564a security_path_chown +EXPORT_SYMBOL_GPL vmlinux 0xa4f18bf6 virtqueue_add_inbuf EXPORT_SYMBOL_GPL vmlinux 0xa4f2a2ed acpi_irq_get -EXPORT_SYMBOL_GPL vmlinux 0xa5030412 __mnt_drop_write -EXPORT_SYMBOL_GPL vmlinux 0xa510e05b dev_pm_qos_hide_latency_limit -EXPORT_SYMBOL_GPL vmlinux 0xa514cd76 list_lru_count_one +EXPORT_SYMBOL_GPL vmlinux 0xa4f45a3f clk_hw_get_num_parents +EXPORT_SYMBOL_GPL vmlinux 0xa508df56 of_modalias_node +EXPORT_SYMBOL_GPL vmlinux 0xa50e0338 kvm_irq_has_notifier +EXPORT_SYMBOL_GPL vmlinux 0xa51623df badblocks_store EXPORT_SYMBOL_GPL vmlinux 0xa517f884 tegra210_plle_hw_sequence_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0xa527552e cpuidle_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xa51e9323 device_add +EXPORT_SYMBOL_GPL vmlinux 0xa520aad2 cookie_tcp_reqsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0xa530523f tty_ldisc_deref EXPORT_SYMBOL_GPL vmlinux 0xa531471e clk_save_context -EXPORT_SYMBOL_GPL vmlinux 0xa53f2545 devm_regmap_field_free -EXPORT_SYMBOL_GPL vmlinux 0xa5455a2e spi_res_release -EXPORT_SYMBOL_GPL vmlinux 0xa54f21da amba_apb_device_add_res -EXPORT_SYMBOL_GPL vmlinux 0xa5682f73 tegra_bpmp_put -EXPORT_SYMBOL_GPL vmlinux 0xa57abdf1 irq_domain_translate_onecell -EXPORT_SYMBOL_GPL vmlinux 0xa586653a evict_inodes -EXPORT_SYMBOL_GPL vmlinux 0xa5874e22 blk_req_needs_zone_write_lock -EXPORT_SYMBOL_GPL vmlinux 0xa5893ee2 __traceiter_pelt_rt_tp -EXPORT_SYMBOL_GPL vmlinux 0xa589a439 device_del -EXPORT_SYMBOL_GPL vmlinux 0xa59e9a62 i2c_detect_slave_mode +EXPORT_SYMBOL_GPL vmlinux 0xa53f9bbc scsi_dh_attach +EXPORT_SYMBOL_GPL vmlinux 0xa54545c3 ncsi_vlan_rx_add_vid +EXPORT_SYMBOL_GPL vmlinux 0xa55f5feb tpm_get_random +EXPORT_SYMBOL_GPL vmlinux 0xa5719620 iommu_setup_dma_ops +EXPORT_SYMBOL_GPL vmlinux 0xa5a5fd6e regulator_is_enabled_regmap +EXPORT_SYMBOL_GPL vmlinux 0xa5b46bd6 alloc_dax +EXPORT_SYMBOL_GPL vmlinux 0xa5bd07d2 metadata_dst_alloc_percpu EXPORT_SYMBOL_GPL vmlinux 0xa5bda8a1 efi_capsule_supported -EXPORT_SYMBOL_GPL vmlinux 0xa5cf61b6 tty_port_register_device -EXPORT_SYMBOL_GPL vmlinux 0xa5d625e2 tcp_reno_undo_cwnd +EXPORT_SYMBOL_GPL vmlinux 0xa5d74aa1 pm_generic_suspend_noirq EXPORT_SYMBOL_GPL vmlinux 0xa5d7c388 pstore_type_to_name +EXPORT_SYMBOL_GPL vmlinux 0xa5e34409 perf_event_disable +EXPORT_SYMBOL_GPL vmlinux 0xa5ebe522 extcon_get_property EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full -EXPORT_SYMBOL_GPL vmlinux 0xa5faa445 devm_regulator_get_exclusive -EXPORT_SYMBOL_GPL vmlinux 0xa61a0b96 k3_ringacc_ring_cfg -EXPORT_SYMBOL_GPL vmlinux 0xa61c4ddf blkg_lookup_slowpath +EXPORT_SYMBOL_GPL vmlinux 0xa5f259a0 rockchip_register_softrst +EXPORT_SYMBOL_GPL vmlinux 0xa5fd972b regulator_sync_voltage +EXPORT_SYMBOL_GPL vmlinux 0xa6031eb8 gpiod_direction_input +EXPORT_SYMBOL_GPL vmlinux 0xa608ab67 proc_create_net_data_write +EXPORT_SYMBOL_GPL vmlinux 0xa60bdf57 devm_gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0xa62b7a80 dev_pm_opp_of_get_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0xa62d2e3f bio_associate_blkg +EXPORT_SYMBOL_GPL vmlinux 0xa634e0ed relay_open +EXPORT_SYMBOL_GPL vmlinux 0xa6459dd0 edac_pci_free_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0xa64b54c5 iomap_migrate_page +EXPORT_SYMBOL_GPL vmlinux 0xa64d21cb acpi_pm_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0xa65407f4 fuse_dev_operations +EXPORT_SYMBOL_GPL vmlinux 0xa65ccebf thermal_zone_get_offset EXPORT_SYMBOL_GPL vmlinux 0xa65f3c8c __tracepoint_block_bio_complete -EXPORT_SYMBOL_GPL vmlinux 0xa664465f transport_configure_device +EXPORT_SYMBOL_GPL vmlinux 0xa6637519 restore_online_page_callback +EXPORT_SYMBOL_GPL vmlinux 0xa669d70e of_genpd_add_provider_simple +EXPORT_SYMBOL_GPL vmlinux 0xa66dff0c power_supply_am_i_supplied +EXPORT_SYMBOL_GPL vmlinux 0xa673bfba trace_array_printk +EXPORT_SYMBOL_GPL vmlinux 0xa6793a85 ata_acpi_gtm +EXPORT_SYMBOL_GPL vmlinux 0xa69518c4 of_platform_default_populate EXPORT_SYMBOL_GPL vmlinux 0xa6a088b7 fscrypt_match_name -EXPORT_SYMBOL_GPL vmlinux 0xa6ae7e03 nvdimm_security_setup_events +EXPORT_SYMBOL_GPL vmlinux 0xa6a5c472 sk_clear_memalloc 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 0xa6bb34d4 dma_wait_for_async_tx -EXPORT_SYMBOL_GPL vmlinux 0xa6d42611 task_user_regset_view +EXPORT_SYMBOL_GPL vmlinux 0xa6bb09f7 debugfs_attr_write +EXPORT_SYMBOL_GPL vmlinux 0xa6c76a19 regmap_raw_read +EXPORT_SYMBOL_GPL vmlinux 0xa6d04c77 devres_get +EXPORT_SYMBOL_GPL vmlinux 0xa6d29ea6 devm_hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa6d9bf3c dst_blackhole_mtu EXPORT_SYMBOL_GPL vmlinux 0xa6dc0d97 tegra_read_ram_code +EXPORT_SYMBOL_GPL vmlinux 0xa6de1de5 pktgen_xfrm_outer_mode_output EXPORT_SYMBOL_GPL vmlinux 0xa6e1a69d kick_all_cpus_sync -EXPORT_SYMBOL_GPL vmlinux 0xa6e7f341 pci_epc_add_epf -EXPORT_SYMBOL_GPL vmlinux 0xa6eaa2cb i2c_of_match_device EXPORT_SYMBOL_GPL vmlinux 0xa6ee15ca __tracepoint_rpm_suspend -EXPORT_SYMBOL_GPL vmlinux 0xa6f55ed5 yield_to +EXPORT_SYMBOL_GPL vmlinux 0xa707c80a usb_disable_autosuspend EXPORT_SYMBOL_GPL vmlinux 0xa709c835 fib6_info_destroy_rcu -EXPORT_SYMBOL_GPL vmlinux 0xa7151372 pci_epf_type_add_cfs -EXPORT_SYMBOL_GPL vmlinux 0xa71c8397 rtc_update_irq -EXPORT_SYMBOL_GPL vmlinux 0xa726b727 crypto_stats_skcipher_encrypt -EXPORT_SYMBOL_GPL vmlinux 0xa72eff86 serdev_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0xa70a36b3 vfs_getxattr_alloc +EXPORT_SYMBOL_GPL vmlinux 0xa71094d7 crypto_shash_alg_has_setkey EXPORT_SYMBOL_GPL vmlinux 0xa731f387 nl_table_lock -EXPORT_SYMBOL_GPL vmlinux 0xa74b9cef led_blink_set_oneshot -EXPORT_SYMBOL_GPL vmlinux 0xa75ae8d1 scsi_mode_select +EXPORT_SYMBOL_GPL vmlinux 0xa735eb07 of_get_display_timings +EXPORT_SYMBOL_GPL vmlinux 0xa74c3469 devlink_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa74dfcb9 perf_aux_output_flag +EXPORT_SYMBOL_GPL vmlinux 0xa755874a fsl8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0xa758ebaf __devm_reset_control_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0xa75addae pci_epc_destroy EXPORT_SYMBOL_GPL vmlinux 0xa7856098 cpu_topology +EXPORT_SYMBOL_GPL vmlinux 0xa78721bb crypto_spawn_tfm EXPORT_SYMBOL_GPL vmlinux 0xa788700b copy_to_user_nofault -EXPORT_SYMBOL_GPL vmlinux 0xa78c6863 xfrm_audit_state_notfound -EXPORT_SYMBOL_GPL vmlinux 0xa794a37d ata_bmdma_start -EXPORT_SYMBOL_GPL vmlinux 0xa79aaad1 regmap_get_reg_stride -EXPORT_SYMBOL_GPL vmlinux 0xa7b6359d usb_pipe_type_check +EXPORT_SYMBOL_GPL vmlinux 0xa79a454a ti_sci_get_handle +EXPORT_SYMBOL_GPL vmlinux 0xa79a571e bind_interdomain_evtchn_to_irqhandler_lateeoi +EXPORT_SYMBOL_GPL vmlinux 0xa79dfccf kthread_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xa79ef9d0 switchdev_port_attr_set +EXPORT_SYMBOL_GPL vmlinux 0xa7acb60d tcp_leave_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0xa7adf6a1 fib_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0xa7b2c54a sk_attach_filter +EXPORT_SYMBOL_GPL vmlinux 0xa7b308f0 dev_pm_opp_get_of_node +EXPORT_SYMBOL_GPL vmlinux 0xa7b462c3 devres_remove_group EXPORT_SYMBOL_GPL vmlinux 0xa7cba284 housekeeping_any_cpu -EXPORT_SYMBOL_GPL vmlinux 0xa7ce3d4a adp5520_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xa7e5e4c6 regcache_mark_dirty -EXPORT_SYMBOL_GPL vmlinux 0xa7f5959d genphy_c45_pma_resume -EXPORT_SYMBOL_GPL vmlinux 0xa7fd12e4 ata_pci_bmdma_prepare_host -EXPORT_SYMBOL_GPL vmlinux 0xa80d04b0 phy_optional_get -EXPORT_SYMBOL_GPL vmlinux 0xa821da10 ata_sff_qc_issue -EXPORT_SYMBOL_GPL vmlinux 0xa8448204 of_dma_controller_free -EXPORT_SYMBOL_GPL vmlinux 0xa84c8e7c of_pwm_xlate_with_flags +EXPORT_SYMBOL_GPL vmlinux 0xa7d9ccd3 __pm_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0xa7dc4e78 ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0xa7e93258 blk_freeze_queue_start +EXPORT_SYMBOL_GPL vmlinux 0xa7eaa093 request_firmware_direct +EXPORT_SYMBOL_GPL vmlinux 0xa7f5fe5d bio_end_io_acct_remapped +EXPORT_SYMBOL_GPL vmlinux 0xa8075de4 clk_regmap_gate_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0xa828e32b i2c_dw_validate_speed +EXPORT_SYMBOL_GPL vmlinux 0xa8392526 fixed_phy_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa8438106 ping_rcv +EXPORT_SYMBOL_GPL vmlinux 0xa844c4c9 blk_trace_remove +EXPORT_SYMBOL_GPL vmlinux 0xa845df36 xenbus_dev_resume EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xa869ec5a pci_iomap_wc -EXPORT_SYMBOL_GPL vmlinux 0xa878060a tcp_get_info -EXPORT_SYMBOL_GPL vmlinux 0xa88444a4 sk_msg_trim -EXPORT_SYMBOL_GPL vmlinux 0xa8866fdd thermal_zone_get_slope -EXPORT_SYMBOL_GPL vmlinux 0xa892abdd ata_sff_tf_read -EXPORT_SYMBOL_GPL vmlinux 0xa8ba24c5 compat_only_sysfs_link_entry_to_kobj -EXPORT_SYMBOL_GPL vmlinux 0xa8bba238 pci_dev_run_wake -EXPORT_SYMBOL_GPL vmlinux 0xa8d2e850 serial8250_read_char -EXPORT_SYMBOL_GPL vmlinux 0xa8ebd2d6 i2c_dw_probe_master -EXPORT_SYMBOL_GPL vmlinux 0xa92765b0 rockchip_clk_init -EXPORT_SYMBOL_GPL vmlinux 0xa92e968b ip6_route_input_lookup +EXPORT_SYMBOL_GPL vmlinux 0xa86062f0 of_clk_add_hw_provider +EXPORT_SYMBOL_GPL vmlinux 0xa8d78b82 qcom_smem_state_register +EXPORT_SYMBOL_GPL vmlinux 0xa8e46faa acpi_is_pnp_device +EXPORT_SYMBOL_GPL vmlinux 0xa8e57086 fuse_file_poll +EXPORT_SYMBOL_GPL vmlinux 0xa8eacef4 dprc_set_obj_irq +EXPORT_SYMBOL_GPL vmlinux 0xa8ecdb54 mddev_unlock +EXPORT_SYMBOL_GPL vmlinux 0xa8efd5c3 rio_unregister_mport +EXPORT_SYMBOL_GPL vmlinux 0xa8fb0ce9 of_usb_host_tpl_support +EXPORT_SYMBOL_GPL vmlinux 0xa8ff97b8 serdev_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0xa91db8f0 rt_mutex_lock +EXPORT_SYMBOL_GPL vmlinux 0xa922b818 meson_clk_pll_ops EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds -EXPORT_SYMBOL_GPL vmlinux 0xa953fe38 ata_qc_complete_multiple +EXPORT_SYMBOL_GPL vmlinux 0xa93f3dbe xdp_return_frame +EXPORT_SYMBOL_GPL vmlinux 0xa9444dae pcc_mbox_request_channel +EXPORT_SYMBOL_GPL vmlinux 0xa94e95cb md_start +EXPORT_SYMBOL_GPL vmlinux 0xa95722a8 fsverity_prepare_setattr +EXPORT_SYMBOL_GPL vmlinux 0xa95c5429 iommu_uapi_sva_unbind_gpasid +EXPORT_SYMBOL_GPL vmlinux 0xa95f9b64 acpi_cppc_processor_exit +EXPORT_SYMBOL_GPL vmlinux 0xa9681ceb of_property_read_u64 EXPORT_SYMBOL_GPL vmlinux 0xa96e8b4e hv_setup_vmbus_handler -EXPORT_SYMBOL_GPL vmlinux 0xa972df73 nf_route -EXPORT_SYMBOL_GPL vmlinux 0xa97be417 devfreq_event_get_edev_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0xa9805188 pci_ecam_free -EXPORT_SYMBOL_GPL vmlinux 0xa988fb8f devm_i2c_add_adapter -EXPORT_SYMBOL_GPL vmlinux 0xa98c1b6f irq_domain_xlate_twocell -EXPORT_SYMBOL_GPL vmlinux 0xa9906d6a hisi_format_sysfs_show -EXPORT_SYMBOL_GPL vmlinux 0xa996a2a5 devm_phy_create -EXPORT_SYMBOL_GPL vmlinux 0xa9993670 clk_mux_val_to_index +EXPORT_SYMBOL_GPL vmlinux 0xa97a2e94 dequeue_signal +EXPORT_SYMBOL_GPL vmlinux 0xa9939f88 arm64_mm_context_put EXPORT_SYMBOL_GPL vmlinux 0xa99b8e70 __SCK__tp_func_xdp_exception EXPORT_SYMBOL_GPL vmlinux 0xa99ef899 devlink_fmsg_bool_pair_put -EXPORT_SYMBOL_GPL vmlinux 0xa9a79e99 cpufreq_dbs_governor_stop -EXPORT_SYMBOL_GPL vmlinux 0xa9b09a45 switchdev_port_obj_del -EXPORT_SYMBOL_GPL vmlinux 0xa9b4fd63 rio_mport_send_doorbell -EXPORT_SYMBOL_GPL vmlinux 0xa9c9d69f tps6586x_reads -EXPORT_SYMBOL_GPL vmlinux 0xa9cc13d4 device_create_bin_file -EXPORT_SYMBOL_GPL vmlinux 0xa9d342bb dprc_get_obj_count -EXPORT_SYMBOL_GPL vmlinux 0xa9d3a447 kvm_vcpu_write_guest_page -EXPORT_SYMBOL_GPL vmlinux 0xa9d6e658 ata_do_set_mode -EXPORT_SYMBOL_GPL vmlinux 0xa9d8b00e unregister_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0xa9a516c2 crypto_grab_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xa9a527a1 device_set_of_node_from_dev +EXPORT_SYMBOL_GPL vmlinux 0xa9a5cf05 ata_sff_pause +EXPORT_SYMBOL_GPL vmlinux 0xa9addc1e md_stop_writes +EXPORT_SYMBOL_GPL vmlinux 0xa9bc2c6d sata_link_hardreset +EXPORT_SYMBOL_GPL vmlinux 0xa9c6cb46 debugfs_create_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xa9cfbb51 rio_dev_get EXPORT_SYMBOL_GPL vmlinux 0xa9e18049 task_handoff_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa9e53874 wm831x_auxadc_read_uv -EXPORT_SYMBOL_GPL vmlinux 0xaa01a40f rio_request_mport_dma -EXPORT_SYMBOL_GPL vmlinux 0xaa0add68 tps6586x_irq_get_virq -EXPORT_SYMBOL_GPL vmlinux 0xaa197873 pstore_register +EXPORT_SYMBOL_GPL vmlinux 0xa9e2e34b pci_bridge_secondary_bus_reset +EXPORT_SYMBOL_GPL vmlinux 0xaa089072 __account_locked_vm +EXPORT_SYMBOL_GPL vmlinux 0xaa20a855 devlink_params_publish +EXPORT_SYMBOL_GPL vmlinux 0xaa21a1b7 screen_pos EXPORT_SYMBOL_GPL vmlinux 0xaa230f88 perf_unregister_guest_info_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xaa2784b0 blkdev_nr_zones -EXPORT_SYMBOL_GPL vmlinux 0xaa3acf1c ahci_platform_suspend -EXPORT_SYMBOL_GPL vmlinux 0xaa40b704 of_platform_default_populate -EXPORT_SYMBOL_GPL vmlinux 0xaa5aac36 set_cpus_allowed_ptr -EXPORT_SYMBOL_GPL vmlinux 0xaa62fc94 iommu_map_atomic +EXPORT_SYMBOL_GPL vmlinux 0xaa3c9a7f rio_unlock_device +EXPORT_SYMBOL_GPL vmlinux 0xaa668a19 tps65912_device_exit EXPORT_SYMBOL_GPL vmlinux 0xaa6a50f9 __static_key_deferred_flush -EXPORT_SYMBOL_GPL vmlinux 0xaa6b0763 mtk_pinconf_drive_set_raw -EXPORT_SYMBOL_GPL vmlinux 0xaa6bb73c of_console_check -EXPORT_SYMBOL_GPL vmlinux 0xaa793601 task_cputime_adjusted -EXPORT_SYMBOL_GPL vmlinux 0xaa796d3c of_address_to_resource -EXPORT_SYMBOL_GPL vmlinux 0xaa7c613e __clk_get_hw -EXPORT_SYMBOL_GPL vmlinux 0xaa921d70 rio_release_dma -EXPORT_SYMBOL_GPL vmlinux 0xaa936b37 iomap_file_unshare -EXPORT_SYMBOL_GPL vmlinux 0xaa939f59 __rt_mutex_init -EXPORT_SYMBOL_GPL vmlinux 0xaaa22909 of_dma_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0xaa6e81e1 pci_hp_add +EXPORT_SYMBOL_GPL vmlinux 0xaa87b011 pm_runtime_set_autosuspend_delay +EXPORT_SYMBOL_GPL vmlinux 0xaa8a4f06 rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0xaa8ee524 pm_generic_thaw_noirq +EXPORT_SYMBOL_GPL vmlinux 0xaa9b888a clk_regmap_mux_ops EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump -EXPORT_SYMBOL_GPL vmlinux 0xaab5e173 gpiod_set_array_value -EXPORT_SYMBOL_GPL vmlinux 0xaacb4c2c wakeup_source_remove -EXPORT_SYMBOL_GPL vmlinux 0xaad75313 dummy_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0xaadd41f8 tty_buffer_lock_exclusive -EXPORT_SYMBOL_GPL vmlinux 0xaafd2bb5 gpiod_get_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xaaaa4502 eventfd_fget +EXPORT_SYMBOL_GPL vmlinux 0xaab79fcb perf_event_addr_filters_sync +EXPORT_SYMBOL_GPL vmlinux 0xaab8804f regulator_get +EXPORT_SYMBOL_GPL vmlinux 0xaac60f79 class_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xaac8003b nf_ipv6_ops +EXPORT_SYMBOL_GPL vmlinux 0xaac96b57 bio_add_zone_append_page +EXPORT_SYMBOL_GPL vmlinux 0xaad2382d user_destroy +EXPORT_SYMBOL_GPL vmlinux 0xaad27105 sdio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xaad2daa5 devm_regmap_del_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0xaad44b6b blk_mq_free_request +EXPORT_SYMBOL_GPL vmlinux 0xaad5f695 watchdog_notify_pretimeout +EXPORT_SYMBOL_GPL vmlinux 0xaae7d1dd of_genpd_remove_subdomain +EXPORT_SYMBOL_GPL vmlinux 0xaaf849c5 iommu_device_unlink EXPORT_SYMBOL_GPL vmlinux 0xab060841 zynqmp_pm_query_data -EXPORT_SYMBOL_GPL vmlinux 0xab11e8df regmap_mmio_detach_clk -EXPORT_SYMBOL_GPL vmlinux 0xab19b547 vp_modern_generation +EXPORT_SYMBOL_GPL vmlinux 0xab16f828 devlink_port_type_ib_set EXPORT_SYMBOL_GPL vmlinux 0xab1e0e93 hv_setup_kexec_handler -EXPORT_SYMBOL_GPL vmlinux 0xab2d8d55 crypto_stats_akcipher_encrypt -EXPORT_SYMBOL_GPL vmlinux 0xab641fd4 bus_remove_file -EXPORT_SYMBOL_GPL vmlinux 0xab6c8cb9 auxiliary_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xab1f5357 rdev_get_id +EXPORT_SYMBOL_GPL vmlinux 0xab317b76 dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0xab48ea0a ata_eh_freeze_port +EXPORT_SYMBOL_GPL vmlinux 0xab5688fc sdio_f0_writeb +EXPORT_SYMBOL_GPL vmlinux 0xab581ae9 fsstack_copy_inode_size +EXPORT_SYMBOL_GPL vmlinux 0xab6e3cb7 sched_trace_rq_cpu EXPORT_SYMBOL_GPL vmlinux 0xab7f853d mtk_mutex_prepare -EXPORT_SYMBOL_GPL vmlinux 0xab815080 md_stop +EXPORT_SYMBOL_GPL vmlinux 0xab7fe4b7 security_path_rmdir +EXPORT_SYMBOL_GPL vmlinux 0xab817f30 devm_hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0xab8800d9 __devm_regmap_init_spi EXPORT_SYMBOL_GPL vmlinux 0xab9bd884 perf_register_guest_info_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xaba93431 skb_gso_validate_mac_len -EXPORT_SYMBOL_GPL vmlinux 0xabae0112 devlink_unregister -EXPORT_SYMBOL_GPL vmlinux 0xabb68b53 class_unregister +EXPORT_SYMBOL_GPL vmlinux 0xabad3dbe skb_defer_rx_timestamp EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate -EXPORT_SYMBOL_GPL vmlinux 0xabc92fbe of_mm_gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0xabcbda65 pci_max_pasids EXPORT_SYMBOL_GPL vmlinux 0xabd45848 stop_machine -EXPORT_SYMBOL_GPL vmlinux 0xabe2b89d gpiochip_request_own_desc -EXPORT_SYMBOL_GPL vmlinux 0xabfe88c0 wwan_port_rx -EXPORT_SYMBOL_GPL vmlinux 0xabff8ffe kthread_cancel_delayed_work_sync -EXPORT_SYMBOL_GPL vmlinux 0xabffd044 kthread_queue_delayed_work -EXPORT_SYMBOL_GPL vmlinux 0xac5b301a blkcg_root_css -EXPORT_SYMBOL_GPL vmlinux 0xac5cea25 lwtunnel_input -EXPORT_SYMBOL_GPL vmlinux 0xac5d20dc ata_sff_queue_pio_task -EXPORT_SYMBOL_GPL vmlinux 0xac68dee6 device_get_match_data -EXPORT_SYMBOL_GPL vmlinux 0xac7bce85 __inet_lookup_established -EXPORT_SYMBOL_GPL vmlinux 0xac8a60a9 xdp_master_redirect -EXPORT_SYMBOL_GPL vmlinux 0xac8ab0f9 pm_runtime_get_if_active -EXPORT_SYMBOL_GPL vmlinux 0xac9c677c usb_alloc_dev -EXPORT_SYMBOL_GPL vmlinux 0xacabafe7 lwtunnel_encap_add_ops -EXPORT_SYMBOL_GPL vmlinux 0xacaffd58 kvm_set_memory_region +EXPORT_SYMBOL_GPL vmlinux 0xabf431d6 pm_runtime_set_memalloc_noio +EXPORT_SYMBOL_GPL vmlinux 0xac106425 ehci_reset +EXPORT_SYMBOL_GPL vmlinux 0xac1fb22a strp_unpause +EXPORT_SYMBOL_GPL vmlinux 0xac224ae9 pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0xac2d3625 vp_modern_config_vector +EXPORT_SYMBOL_GPL vmlinux 0xac2e5002 devm_regmap_field_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0xac32f25b ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0xac340952 devm_kmalloc +EXPORT_SYMBOL_GPL vmlinux 0xac3aef49 regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xac44c222 kobject_uevent +EXPORT_SYMBOL_GPL vmlinux 0xac491cf8 spi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xac540a14 crypto_stats_decompress +EXPORT_SYMBOL_GPL vmlinux 0xac60a141 dev_pm_opp_of_register_em +EXPORT_SYMBOL_GPL vmlinux 0xac64e1a0 platform_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xac657346 lwtunnel_encap_add_ops +EXPORT_SYMBOL_GPL vmlinux 0xac66e38e pci_generic_ecam_ops +EXPORT_SYMBOL_GPL vmlinux 0xac6c7912 sata_pmp_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xac707935 mmc_regulator_set_vqmmc +EXPORT_SYMBOL_GPL vmlinux 0xac7f2cf7 devm_pwmchip_add +EXPORT_SYMBOL_GPL vmlinux 0xac81e116 usb_put_dev +EXPORT_SYMBOL_GPL vmlinux 0xacadd934 sdio_align_size +EXPORT_SYMBOL_GPL vmlinux 0xacb11beb mpc8xxx_spi_rx_buf_u32 EXPORT_SYMBOL_GPL vmlinux 0xacb4d88c clk_rate_exclusive_put -EXPORT_SYMBOL_GPL vmlinux 0xacc1e9dc tcp_leave_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0xacb5730d devm_kfree +EXPORT_SYMBOL_GPL vmlinux 0xacb9dbea tegra_bpmp_mrq_return +EXPORT_SYMBOL_GPL vmlinux 0xacc12b2d devm_device_remove_group +EXPORT_SYMBOL_GPL vmlinux 0xacc33c57 fat_getattr EXPORT_SYMBOL_GPL vmlinux 0xacc977ac alarm_forward_now -EXPORT_SYMBOL_GPL vmlinux 0xacce36fe net_ns_get_ownership -EXPORT_SYMBOL_GPL vmlinux 0xacd99aba trace_get_event_file -EXPORT_SYMBOL_GPL vmlinux 0xace18696 skb_zerocopy -EXPORT_SYMBOL_GPL vmlinux 0xace3f8c0 efivar_entry_set -EXPORT_SYMBOL_GPL vmlinux 0xace7e885 fat_fill_super -EXPORT_SYMBOL_GPL vmlinux 0xacebf95d ahci_platform_enable_clks -EXPORT_SYMBOL_GPL vmlinux 0xacf11b75 regulator_bulk_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0xacf910e9 ipv4_redirect +EXPORT_SYMBOL_GPL vmlinux 0xacceac7c __pci_hp_initialize +EXPORT_SYMBOL_GPL vmlinux 0xacd61451 tpm1_getcap +EXPORT_SYMBOL_GPL vmlinux 0xace3cce4 of_property_read_variable_u64_array +EXPORT_SYMBOL_GPL vmlinux 0xace3fbca xdp_rxq_info_is_reg +EXPORT_SYMBOL_GPL vmlinux 0xacea3fdd fwnode_create_software_node EXPORT_SYMBOL_GPL vmlinux 0xad0f2b6c unix_table_lock +EXPORT_SYMBOL_GPL vmlinux 0xad0f6b5a dev_pm_domain_attach_by_id +EXPORT_SYMBOL_GPL vmlinux 0xad1cb338 devm_regmap_add_irq_chip EXPORT_SYMBOL_GPL vmlinux 0xad25602f __tracepoint_sched_overutilized_tp -EXPORT_SYMBOL_GPL vmlinux 0xad2f1b7f class_dev_iter_exit EXPORT_SYMBOL_GPL vmlinux 0xad395dd9 mm_account_pinned_pages +EXPORT_SYMBOL_GPL vmlinux 0xad3d06f7 __alloc_pages_bulk EXPORT_SYMBOL_GPL vmlinux 0xad42dff8 __SCK__tp_func_tcp_bad_csum -EXPORT_SYMBOL_GPL vmlinux 0xad4b979b pin_get_name EXPORT_SYMBOL_GPL vmlinux 0xad4e6259 remove_cpu EXPORT_SYMBOL_GPL vmlinux 0xad5737fc efivar_init -EXPORT_SYMBOL_GPL vmlinux 0xad58709f spi_get_next_queued_message -EXPORT_SYMBOL_GPL vmlinux 0xad5d3a7b sysfs_remove_group -EXPORT_SYMBOL_GPL vmlinux 0xad5f7e33 console_drivers +EXPORT_SYMBOL_GPL vmlinux 0xad5adac8 do_xdp_generic +EXPORT_SYMBOL_GPL vmlinux 0xad641a7b nfs42_ssc_register EXPORT_SYMBOL_GPL vmlinux 0xad645234 register_switchdev_notifier -EXPORT_SYMBOL_GPL vmlinux 0xad670bd7 blk_rq_unprep_clone -EXPORT_SYMBOL_GPL vmlinux 0xad71ccbe pci_set_cacheline_size +EXPORT_SYMBOL_GPL vmlinux 0xad7167c8 pinctrl_remove_gpio_range EXPORT_SYMBOL_GPL vmlinux 0xad76a3f0 __SCK__tp_func_neigh_update_done -EXPORT_SYMBOL_GPL vmlinux 0xad7b5c16 sdio_disable_func -EXPORT_SYMBOL_GPL vmlinux 0xad883493 devlink_rate_leaf_destroy -EXPORT_SYMBOL_GPL vmlinux 0xad88da89 fsnotify_get_group +EXPORT_SYMBOL_GPL vmlinux 0xad80b39d devm_gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0xad95f24e fuse_do_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xad9b509a device_show_bool EXPORT_SYMBOL_GPL vmlinux 0xada38766 dst_cache_destroy -EXPORT_SYMBOL_GPL vmlinux 0xadbe1bec tpm_chip_register -EXPORT_SYMBOL_GPL vmlinux 0xadbf0638 devm_device_add_group -EXPORT_SYMBOL_GPL vmlinux 0xade2541a devlink_port_param_value_changed -EXPORT_SYMBOL_GPL vmlinux 0xaded6cee sysfs_groups_change_owner -EXPORT_SYMBOL_GPL vmlinux 0xadffb489 shash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xadc973fa devm_nvdimm_memremap +EXPORT_SYMBOL_GPL vmlinux 0xadd1ae8f blkcg_root_css +EXPORT_SYMBOL_GPL vmlinux 0xadd91cf5 is_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0xaded2a61 debugfs_rename +EXPORT_SYMBOL_GPL vmlinux 0xadf9e20b pci_enable_ats +EXPORT_SYMBOL_GPL vmlinux 0xadfef6c4 nvdimm_volatile_region_create EXPORT_SYMBOL_GPL vmlinux 0xae0ecf40 usb_bus_idr_lock EXPORT_SYMBOL_GPL vmlinux 0xae1051b0 net_cls_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xae225a4c dev_pm_opp_of_get_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0xae153e75 mtk_pinconf_adv_drive_set +EXPORT_SYMBOL_GPL vmlinux 0xae1bead3 rio_del_mport_pw_handler +EXPORT_SYMBOL_GPL vmlinux 0xae262584 __ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0xae2e25d5 nd_region_provider_data +EXPORT_SYMBOL_GPL vmlinux 0xae331ea6 devm_blk_ksm_init EXPORT_SYMBOL_GPL vmlinux 0xae39f80e dst_cache_init -EXPORT_SYMBOL_GPL vmlinux 0xae3d1768 bus_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xae44d1cb acpi_device_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0xae475c0f ping_seq_next +EXPORT_SYMBOL_GPL vmlinux 0xae48cc27 bpf_preload_ops +EXPORT_SYMBOL_GPL vmlinux 0xae57275f rio_register_driver 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 0xae6677b9 bus_set_iommu EXPORT_SYMBOL_GPL vmlinux 0xae69b1c1 usermodehelper_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0xae6ca2b2 crypto_aead_decrypt -EXPORT_SYMBOL_GPL vmlinux 0xae70daa0 firmware_request_cache -EXPORT_SYMBOL_GPL vmlinux 0xae76f657 kernfs_get +EXPORT_SYMBOL_GPL vmlinux 0xae7a817e crypto_enqueue_request_head EXPORT_SYMBOL_GPL vmlinux 0xae7c231d mpi_cmp -EXPORT_SYMBOL_GPL vmlinux 0xae7dca66 gpiochip_line_is_persistent -EXPORT_SYMBOL_GPL vmlinux 0xae7f9490 mmc_app_cmd -EXPORT_SYMBOL_GPL vmlinux 0xae87133d devfreq_get_devfreq_by_node -EXPORT_SYMBOL_GPL vmlinux 0xaea08c40 iommu_enable_nesting -EXPORT_SYMBOL_GPL vmlinux 0xaec8c4ad md_rdev_clear -EXPORT_SYMBOL_GPL vmlinux 0xaef9e116 xdp_convert_zc_to_xdp_frame -EXPORT_SYMBOL_GPL vmlinux 0xaefd7f66 device_rename -EXPORT_SYMBOL_GPL vmlinux 0xaf029635 devlink_region_create +EXPORT_SYMBOL_GPL vmlinux 0xae86d9b1 fuse_conn_init +EXPORT_SYMBOL_GPL vmlinux 0xaea3ea47 sdio_retune_hold_now +EXPORT_SYMBOL_GPL vmlinux 0xaeac6870 devm_thermal_add_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0xaeada9b3 spi_busnum_to_master +EXPORT_SYMBOL_GPL vmlinux 0xaeae08f4 wakeup_source_remove +EXPORT_SYMBOL_GPL vmlinux 0xaeb0a4bf crypto_unregister_rng +EXPORT_SYMBOL_GPL vmlinux 0xaed857db rpi_firmware_get +EXPORT_SYMBOL_GPL vmlinux 0xaee349a3 devm_gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0xaee8582a ip4_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0xaefdbc05 noop_direct_IO +EXPORT_SYMBOL_GPL vmlinux 0xaf0402df rtnl_delete_link EXPORT_SYMBOL_GPL vmlinux 0xaf076aec nd_fletcher64 EXPORT_SYMBOL_GPL vmlinux 0xaf0b6ba7 blkg_rwstat_init -EXPORT_SYMBOL_GPL vmlinux 0xaf13510a __regmap_init_mmio_clk -EXPORT_SYMBOL_GPL vmlinux 0xaf1fa5d1 spi_mem_get_name -EXPORT_SYMBOL_GPL vmlinux 0xaf227524 __udp_enqueue_schedule_skb +EXPORT_SYMBOL_GPL vmlinux 0xaf0c906d pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0xaf15d44a inode_congested +EXPORT_SYMBOL_GPL vmlinux 0xaf1cabf4 led_trigger_set +EXPORT_SYMBOL_GPL vmlinux 0xaf20647e device_remove_groups EXPORT_SYMBOL_GPL vmlinux 0xaf348da7 cpu_pm_exit -EXPORT_SYMBOL_GPL vmlinux 0xaf38a46d firmware_request_nowarn EXPORT_SYMBOL_GPL vmlinux 0xaf3a44e9 __SCK__tp_func_sched_overutilized_tp -EXPORT_SYMBOL_GPL vmlinux 0xaf3d56fb metadata_dst_alloc EXPORT_SYMBOL_GPL vmlinux 0xaf4014ff usb_amd_quirk_pll_check -EXPORT_SYMBOL_GPL vmlinux 0xaf4462bd fib_alias_hw_flags_set -EXPORT_SYMBOL_GPL vmlinux 0xaf4a7eae __devres_alloc_node -EXPORT_SYMBOL_GPL vmlinux 0xaf6cf7ee crypto_larval_alloc -EXPORT_SYMBOL_GPL vmlinux 0xaf6fdc88 ata_pci_device_do_suspend +EXPORT_SYMBOL_GPL vmlinux 0xaf45a573 genphy_c45_an_disable_aneg +EXPORT_SYMBOL_GPL vmlinux 0xaf572801 tty_save_termios +EXPORT_SYMBOL_GPL vmlinux 0xaf703efe pci_epc_set_msix EXPORT_SYMBOL_GPL vmlinux 0xaf793668 __alloc_percpu_gfp -EXPORT_SYMBOL_GPL vmlinux 0xaf7db42f tps65912_device_exit +EXPORT_SYMBOL_GPL vmlinux 0xaf834ac1 pci_probe_reset_bus EXPORT_SYMBOL_GPL vmlinux 0xaf852873 cpuidle_register_device -EXPORT_SYMBOL_GPL vmlinux 0xaf979695 xdp_rxq_info_unreg -EXPORT_SYMBOL_GPL vmlinux 0xafa1deed sock_inuse_get -EXPORT_SYMBOL_GPL vmlinux 0xafaba648 tcp_register_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0xaf9eea3a bpf_trace_run9 +EXPORT_SYMBOL_GPL vmlinux 0xafa2d262 pm_clk_suspend +EXPORT_SYMBOL_GPL vmlinux 0xafa5cdc2 i2c_adapter_type EXPORT_SYMBOL_GPL vmlinux 0xafb07262 __pfn_to_mfn -EXPORT_SYMBOL_GPL vmlinux 0xafb50c25 dma_free_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0xafb5ef59 dprc_scan_container +EXPORT_SYMBOL_GPL vmlinux 0xafb71843 thermal_zone_device_enable +EXPORT_SYMBOL_GPL vmlinux 0xafb8855a led_set_brightness_nosleep +EXPORT_SYMBOL_GPL vmlinux 0xafbf65b9 __usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0xafd13548 clk_gate_ops EXPORT_SYMBOL_GPL vmlinux 0xafddd545 ata_id_c_string -EXPORT_SYMBOL_GPL vmlinux 0xafe390bc strp_unpause -EXPORT_SYMBOL_GPL vmlinux 0xafe75fa8 dev_pm_opp_remove EXPORT_SYMBOL_GPL vmlinux 0xafeb58c1 __SCK__tp_func_io_page_fault -EXPORT_SYMBOL_GPL vmlinux 0xaff9e61e pm_clk_add +EXPORT_SYMBOL_GPL vmlinux 0xb005137e pci_get_dsn EXPORT_SYMBOL_GPL vmlinux 0xb0099f79 topology_clear_scale_freq_source -EXPORT_SYMBOL_GPL vmlinux 0xb01c529b da903x_reads +EXPORT_SYMBOL_GPL vmlinux 0xb01d3ad1 pci_set_host_bridge_release EXPORT_SYMBOL_GPL vmlinux 0xb02ac411 register_xenstore_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb02e3433 ata_host_put -EXPORT_SYMBOL_GPL vmlinux 0xb033f01a pinctrl_force_sleep -EXPORT_SYMBOL_GPL vmlinux 0xb03a5ca3 devm_rtc_device_register -EXPORT_SYMBOL_GPL vmlinux 0xb0455856 uart_console_device -EXPORT_SYMBOL_GPL vmlinux 0xb0496fa9 irq_chip_unmask_parent +EXPORT_SYMBOL_GPL vmlinux 0xb038c478 __traceiter_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0xb04497c9 kvm_get_kvm_safe EXPORT_SYMBOL_GPL vmlinux 0xb049a294 __SCK__tp_func_pelt_irq_tp -EXPORT_SYMBOL_GPL vmlinux 0xb056400f dst_blackhole_redirect EXPORT_SYMBOL_GPL vmlinux 0xb05b68d5 zynqmp_pm_reset_get_status -EXPORT_SYMBOL_GPL vmlinux 0xb05d91ff spi_statistics_add_transfer_stats -EXPORT_SYMBOL_GPL vmlinux 0xb064464a device_destroy +EXPORT_SYMBOL_GPL vmlinux 0xb067aa1d device_remove_file_self EXPORT_SYMBOL_GPL vmlinux 0xb0747ed2 rcu_cpu_stall_suppress EXPORT_SYMBOL_GPL vmlinux 0xb077e70a clk_unprepare EXPORT_SYMBOL_GPL vmlinux 0xb08a22a3 cpufreq_show_cpus +EXPORT_SYMBOL_GPL vmlinux 0xb0a25589 dev_pm_qos_expose_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0xb0b04a52 invalidate_inode_pages2 +EXPORT_SYMBOL_GPL vmlinux 0xb0b364cc simple_attr_release EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset -EXPORT_SYMBOL_GPL vmlinux 0xb0cb3d9b usb_string EXPORT_SYMBOL_GPL vmlinux 0xb0d1656c gpio_free_array -EXPORT_SYMBOL_GPL vmlinux 0xb0d35c28 ip6_route_output_flags -EXPORT_SYMBOL_GPL vmlinux 0xb0dbe75e pingv6_ops +EXPORT_SYMBOL_GPL vmlinux 0xb0d3f816 ima_file_hash +EXPORT_SYMBOL_GPL vmlinux 0xb0d8935d sched_trace_rq_avg_irq +EXPORT_SYMBOL_GPL vmlinux 0xb0e0adb3 devlink_resource_occ_get_unregister EXPORT_SYMBOL_GPL vmlinux 0xb0e8e671 xenbus_otherend_changed +EXPORT_SYMBOL_GPL vmlinux 0xb0ea7d6c nvdimm_to_bus +EXPORT_SYMBOL_GPL vmlinux 0xb0f39666 of_irq_to_resource +EXPORT_SYMBOL_GPL vmlinux 0xb0f5949f cros_ec_get_sensor_count +EXPORT_SYMBOL_GPL vmlinux 0xb10a4f33 tcp_sendmsg_locked EXPORT_SYMBOL_GPL vmlinux 0xb10d964d devlink_fmsg_pair_nest_end -EXPORT_SYMBOL_GPL vmlinux 0xb10e6df3 regulator_set_voltage_time -EXPORT_SYMBOL_GPL vmlinux 0xb10eb3b8 platform_get_irq_byname_optional -EXPORT_SYMBOL_GPL vmlinux 0xb1176e50 phy_package_leave -EXPORT_SYMBOL_GPL vmlinux 0xb118ed9e cpci_hp_register_controller EXPORT_SYMBOL_GPL vmlinux 0xb11d9000 tty_dev_name_to_number -EXPORT_SYMBOL_GPL vmlinux 0xb1265e94 icmp_build_probe -EXPORT_SYMBOL_GPL vmlinux 0xb12a3eaa kthread_park -EXPORT_SYMBOL_GPL vmlinux 0xb13632e8 devm_regulator_put -EXPORT_SYMBOL_GPL vmlinux 0xb14dad49 __sock_recv_wifi_status -EXPORT_SYMBOL_GPL vmlinux 0xb1587d43 handle_fasteoi_irq -EXPORT_SYMBOL_GPL vmlinux 0xb15dc6e5 devm_kstrdup +EXPORT_SYMBOL_GPL vmlinux 0xb1200e20 dw8250_setup_port +EXPORT_SYMBOL_GPL vmlinux 0xb1495e07 ip_valid_fib_dump_req +EXPORT_SYMBOL_GPL vmlinux 0xb158b75f mctrl_gpio_free EXPORT_SYMBOL_GPL vmlinux 0xb15e43b8 get_state_synchronize_srcu -EXPORT_SYMBOL_GPL vmlinux 0xb161dc7b ahci_platform_disable_resources EXPORT_SYMBOL_GPL vmlinux 0xb1647fc2 devlink_info_version_running_put -EXPORT_SYMBOL_GPL vmlinux 0xb165bcda memremap_pages -EXPORT_SYMBOL_GPL vmlinux 0xb1750599 __iptunnel_pull_header -EXPORT_SYMBOL_GPL vmlinux 0xb1751d70 ip6_push_pending_frames -EXPORT_SYMBOL_GPL vmlinux 0xb17bce12 generic_fh_to_dentry -EXPORT_SYMBOL_GPL vmlinux 0xb17d6a85 scsi_flush_work -EXPORT_SYMBOL_GPL vmlinux 0xb180b730 __vfs_removexattr_locked +EXPORT_SYMBOL_GPL vmlinux 0xb16aa132 xfrm_state_afinfo_get_rcu EXPORT_SYMBOL_GPL vmlinux 0xb18429eb suspend_device_irqs -EXPORT_SYMBOL_GPL vmlinux 0xb1ac905c ata_pci_device_do_resume -EXPORT_SYMBOL_GPL vmlinux 0xb1b3c355 crypto_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0xb186d15d regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0xb18745d2 exportfs_encode_fh +EXPORT_SYMBOL_GPL vmlinux 0xb1955a65 rockchip_clk_register_plls +EXPORT_SYMBOL_GPL vmlinux 0xb19da019 zap_vma_ptes +EXPORT_SYMBOL_GPL vmlinux 0xb1a876cc __traceiter_neigh_timer_handler EXPORT_SYMBOL_GPL vmlinux 0xb1bed25d dpm_resume_start -EXPORT_SYMBOL_GPL vmlinux 0xb1c1867b regulator_list_voltage_linear -EXPORT_SYMBOL_GPL vmlinux 0xb1c62503 scsi_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xb1c25dcf perf_pmu_register +EXPORT_SYMBOL_GPL vmlinux 0xb1c4800a pci_epc_mem_exit +EXPORT_SYMBOL_GPL vmlinux 0xb1df8188 of_phy_simple_xlate EXPORT_SYMBOL_GPL vmlinux 0xb1e25684 __trace_bputs -EXPORT_SYMBOL_GPL vmlinux 0xb1f36983 fuse_dev_alloc EXPORT_SYMBOL_GPL vmlinux 0xb1fc1782 pci_speed_string EXPORT_SYMBOL_GPL vmlinux 0xb202f0d7 rht_bucket_nested_insert +EXPORT_SYMBOL_GPL vmlinux 0xb204647a i2c_probe_func_quick_read +EXPORT_SYMBOL_GPL vmlinux 0xb208d63b nd_blk_memremap_flags +EXPORT_SYMBOL_GPL vmlinux 0xb20bae46 inet6_destroy_sock +EXPORT_SYMBOL_GPL vmlinux 0xb20c4aed __pneigh_lookup +EXPORT_SYMBOL_GPL vmlinux 0xb216e9f5 devlink_health_reporter_create EXPORT_SYMBOL_GPL vmlinux 0xb2210d64 reset_control_deassert -EXPORT_SYMBOL_GPL vmlinux 0xb22ea5c6 sysfs_add_file_to_group -EXPORT_SYMBOL_GPL vmlinux 0xb23d0fc7 phy_calibrate EXPORT_SYMBOL_GPL vmlinux 0xb2405efc secure_tcp_seq -EXPORT_SYMBOL_GPL vmlinux 0xb2462a78 vp_modern_set_queue_enable -EXPORT_SYMBOL_GPL vmlinux 0xb249b7d2 clk_hw_rate_is_protected -EXPORT_SYMBOL_GPL vmlinux 0xb24efeff acpi_set_modalias -EXPORT_SYMBOL_GPL vmlinux 0xb25326d7 dma_mmap_pages +EXPORT_SYMBOL_GPL vmlinux 0xb240e83f blk_mq_freeze_queue +EXPORT_SYMBOL_GPL vmlinux 0xb243de3d compat_only_sysfs_link_entry_to_kobj +EXPORT_SYMBOL_GPL vmlinux 0xb2462ea3 irq_chip_set_parent_state +EXPORT_SYMBOL_GPL vmlinux 0xb2599283 debugfs_create_atomic_t EXPORT_SYMBOL_GPL vmlinux 0xb26a1add elfcorehdr_addr -EXPORT_SYMBOL_GPL vmlinux 0xb2758b53 fat_scan -EXPORT_SYMBOL_GPL vmlinux 0xb279c17f fib_nh_common_release -EXPORT_SYMBOL_GPL vmlinux 0xb281bca1 rio_unlock_device -EXPORT_SYMBOL_GPL vmlinux 0xb2858caa mptcp_token_get_sock +EXPORT_SYMBOL_GPL vmlinux 0xb26ef70f dev_pm_genpd_remove_notifier EXPORT_SYMBOL_GPL vmlinux 0xb29533ee zs_malloc -EXPORT_SYMBOL_GPL vmlinux 0xb29ad9b6 i2c_dw_validate_speed -EXPORT_SYMBOL_GPL vmlinux 0xb2b67f4d aead_register_instance -EXPORT_SYMBOL_GPL vmlinux 0xb2b7cdf4 spi_setup -EXPORT_SYMBOL_GPL vmlinux 0xb2bc3166 dev_pm_genpd_suspend +EXPORT_SYMBOL_GPL vmlinux 0xb2a14667 gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xb2c0939c skb_pull_rcsum EXPORT_SYMBOL_GPL vmlinux 0xb2c1732e rcu_gp_set_torture_wait -EXPORT_SYMBOL_GPL vmlinux 0xb2c76d43 lwtunnel_cmp_encap +EXPORT_SYMBOL_GPL vmlinux 0xb2c2d82b __ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0xb2c5859c regmap_read +EXPORT_SYMBOL_GPL vmlinux 0xb2c610a5 blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0xb2cac00a debugfs_create_u64 +EXPORT_SYMBOL_GPL vmlinux 0xb2e4e1e5 skb_mpls_pop +EXPORT_SYMBOL_GPL vmlinux 0xb2e6789c sock_diag_unregister EXPORT_SYMBOL_GPL vmlinux 0xb2e764e8 suspend_valid_only_mem -EXPORT_SYMBOL_GPL vmlinux 0xb2f7ac41 devm_hwspin_lock_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb2ec8c6b blk_queue_write_cache +EXPORT_SYMBOL_GPL vmlinux 0xb2f55416 of_reconfig_get_state_change +EXPORT_SYMBOL_GPL vmlinux 0xb2f80d47 driver_remove_file +EXPORT_SYMBOL_GPL vmlinux 0xb303ac21 dprc_get_obj_region EXPORT_SYMBOL_GPL vmlinux 0xb307c909 devlink_fmsg_u64_pair_put -EXPORT_SYMBOL_GPL vmlinux 0xb3179e64 devm_regmap_add_irq_chip_fwnode -EXPORT_SYMBOL_GPL vmlinux 0xb31a020e dw_pcie_ep_init_notify -EXPORT_SYMBOL_GPL vmlinux 0xb366d1de tcp_is_ulp_esp -EXPORT_SYMBOL_GPL vmlinux 0xb37b2b53 dev_pm_qos_remove_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb38b7e8d regulator_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb3a24ae2 __dev_forward_skb -EXPORT_SYMBOL_GPL vmlinux 0xb3b042f7 regulator_set_mode -EXPORT_SYMBOL_GPL vmlinux 0xb3c26e26 cpci_hp_unregister_controller -EXPORT_SYMBOL_GPL vmlinux 0xb3ce1f34 usb_unlink_urb -EXPORT_SYMBOL_GPL vmlinux 0xb3dfd0fb msg_zerocopy_alloc -EXPORT_SYMBOL_GPL vmlinux 0xb3e02583 pwm_get_chip_data -EXPORT_SYMBOL_GPL vmlinux 0xb3e6dc1a device_create_with_groups -EXPORT_SYMBOL_GPL vmlinux 0xb3fc4126 usb_intf_get_dma_device -EXPORT_SYMBOL_GPL vmlinux 0xb3ff06af k3_udma_glue_request_tx_chn +EXPORT_SYMBOL_GPL vmlinux 0xb32cfa5a pinmux_generic_get_function +EXPORT_SYMBOL_GPL vmlinux 0xb337a74d devm_hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb34f9f12 devm_gpiod_get_from_of_node +EXPORT_SYMBOL_GPL vmlinux 0xb36ce838 devlink_flash_update_timeout_notify +EXPORT_SYMBOL_GPL vmlinux 0xb36e025e pm_runtime_no_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xb36ec854 hwspin_lock_request +EXPORT_SYMBOL_GPL vmlinux 0xb3797544 skb_segment +EXPORT_SYMBOL_GPL vmlinux 0xb3830c77 syscon_regmap_lookup_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xb3b1c479 regulator_desc_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0xb3cbf7d2 icc_get_name +EXPORT_SYMBOL_GPL vmlinux 0xb3da3a6d dev_pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0xb3dfc3ae auxiliary_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb4011f3f devm_pm_opp_set_clkname +EXPORT_SYMBOL_GPL vmlinux 0xb40a6282 __clk_mux_determine_rate_closest EXPORT_SYMBOL_GPL vmlinux 0xb40d673e zynqmp_pm_pinctrl_request -EXPORT_SYMBOL_GPL vmlinux 0xb420bec7 cpu_subsys -EXPORT_SYMBOL_GPL vmlinux 0xb436c642 iomap_invalidatepage +EXPORT_SYMBOL_GPL vmlinux 0xb41af5cd nd_blk_region_set_provider_data EXPORT_SYMBOL_GPL vmlinux 0xb43f9365 ktime_get EXPORT_SYMBOL_GPL vmlinux 0xb4429b64 acpi_dev_resource_ext_address_space EXPORT_SYMBOL_GPL vmlinux 0xb44e18ea audit_enabled -EXPORT_SYMBOL_GPL vmlinux 0xb44e8a65 dpcon_close -EXPORT_SYMBOL_GPL vmlinux 0xb4513c69 nd_region_provider_data -EXPORT_SYMBOL_GPL vmlinux 0xb468bb88 bpf_trace_run9 -EXPORT_SYMBOL_GPL vmlinux 0xb477f1f5 genphy_c45_restart_aneg -EXPORT_SYMBOL_GPL vmlinux 0xb47893f5 __netif_set_xps_queue -EXPORT_SYMBOL_GPL vmlinux 0xb4803350 pci_pasid_features -EXPORT_SYMBOL_GPL vmlinux 0xb48a6f86 regulator_set_suspend_voltage +EXPORT_SYMBOL_GPL vmlinux 0xb465abd3 fib_info_nh_uses_dev +EXPORT_SYMBOL_GPL vmlinux 0xb471573e regulator_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0xb486ae8b crypto_grab_spawn EXPORT_SYMBOL_GPL vmlinux 0xb48f0638 software_node_register -EXPORT_SYMBOL_GPL vmlinux 0xb48fb30a wm8350_read_auxadc -EXPORT_SYMBOL_GPL vmlinux 0xb4a52053 dev_pm_opp_get_max_clock_latency -EXPORT_SYMBOL_GPL vmlinux 0xb4aa3028 power_supply_property_is_writeable -EXPORT_SYMBOL_GPL vmlinux 0xb4abcd03 platform_msi_domain_alloc_irqs -EXPORT_SYMBOL_GPL vmlinux 0xb4b0ac18 gpiod_get_array_optional EXPORT_SYMBOL_GPL vmlinux 0xb4b19455 imx8m_clk_hw_composite_flags -EXPORT_SYMBOL_GPL vmlinux 0xb4b1f1f2 synth_event_trace -EXPORT_SYMBOL_GPL vmlinux 0xb4b7237c regmap_attach_dev +EXPORT_SYMBOL_GPL vmlinux 0xb4b54a17 regulator_get_hardware_vsel_register +EXPORT_SYMBOL_GPL vmlinux 0xb4b7264a dw_pcie_host_init EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb4c3d6ba usb_put_intf -EXPORT_SYMBOL_GPL vmlinux 0xb4cc91ba nd_tbl -EXPORT_SYMBOL_GPL vmlinux 0xb4daecc2 pci_enable_pcie_error_reporting -EXPORT_SYMBOL_GPL vmlinux 0xb4e588cd kvm_vcpu_yield_to +EXPORT_SYMBOL_GPL vmlinux 0xb4c937a0 mnt_want_write_file +EXPORT_SYMBOL_GPL vmlinux 0xb4cccd13 tcp_set_keepalive +EXPORT_SYMBOL_GPL vmlinux 0xb4d3a449 tpm_send +EXPORT_SYMBOL_GPL vmlinux 0xb4da26b6 regmap_field_bulk_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb4db4655 sock_diag_destroy +EXPORT_SYMBOL_GPL vmlinux 0xb4df88da handle_irq_desc EXPORT_SYMBOL_GPL vmlinux 0xb4ea7cf7 kgdb_connected EXPORT_SYMBOL_GPL vmlinux 0xb4eda0da ring_buffer_event_length -EXPORT_SYMBOL_GPL vmlinux 0xb4f8795f tracing_cond_snapshot_data EXPORT_SYMBOL_GPL vmlinux 0xb501b2df nd_cmd_dimm_desc +EXPORT_SYMBOL_GPL vmlinux 0xb50c540f bpf_prog_get_type_dev EXPORT_SYMBOL_GPL vmlinux 0xb510c250 raw_v4_hashinfo +EXPORT_SYMBOL_GPL vmlinux 0xb5176c7e blk_queue_set_zoned +EXPORT_SYMBOL_GPL vmlinux 0xb5182d83 ahci_init_controller EXPORT_SYMBOL_GPL vmlinux 0xb51fbd64 edac_op_state EXPORT_SYMBOL_GPL vmlinux 0xb520eb79 btree_merge -EXPORT_SYMBOL_GPL vmlinux 0xb5253df2 devm_pinctrl_register_and_init -EXPORT_SYMBOL_GPL vmlinux 0xb526729f anon_transport_class_register -EXPORT_SYMBOL_GPL vmlinux 0xb52b2801 ncsi_register_dev -EXPORT_SYMBOL_GPL vmlinux 0xb530a47f alloc_page_buffers -EXPORT_SYMBOL_GPL vmlinux 0xb5328173 regcache_cache_only -EXPORT_SYMBOL_GPL vmlinux 0xb543325d metadata_dst_alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0xb548de3f devm_of_phy_provider_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb549cb02 __traceiter_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0xb522ee6f bpf_trace_run1 +EXPORT_SYMBOL_GPL vmlinux 0xb52f2ad1 of_hwspin_lock_get_id +EXPORT_SYMBOL_GPL vmlinux 0xb539c350 pci_stop_root_bus +EXPORT_SYMBOL_GPL vmlinux 0xb53a0bcf __get_task_comm +EXPORT_SYMBOL_GPL vmlinux 0xb55a7731 edac_pci_create_generic_ctl EXPORT_SYMBOL_GPL vmlinux 0xb55de460 HYPERVISOR_dm_op -EXPORT_SYMBOL_GPL vmlinux 0xb5615a7a of_fdt_unflatten_tree -EXPORT_SYMBOL_GPL vmlinux 0xb56d340b sk_clone_lock -EXPORT_SYMBOL_GPL vmlinux 0xb5749007 crypto_alloc_rng -EXPORT_SYMBOL_GPL vmlinux 0xb5804caf fwnode_graph_get_remote_node -EXPORT_SYMBOL_GPL vmlinux 0xb5894397 irq_domain_push_irq +EXPORT_SYMBOL_GPL vmlinux 0xb567f296 security_path_symlink +EXPORT_SYMBOL_GPL vmlinux 0xb56a71ec devlink_port_register +EXPORT_SYMBOL_GPL vmlinux 0xb57a5b53 security_file_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xb58d496c serdev_device_close +EXPORT_SYMBOL_GPL vmlinux 0xb596e7ea ti_sci_inta_msi_get_virq +EXPORT_SYMBOL_GPL vmlinux 0xb5973500 mtk_pinconf_bias_disable_set EXPORT_SYMBOL_GPL vmlinux 0xb5a83e35 gnttab_setup_auto_xlat_frames EXPORT_SYMBOL_GPL vmlinux 0xb5a8c226 acpi_gsi_to_irq -EXPORT_SYMBOL_GPL vmlinux 0xb5b0d7d3 get_device +EXPORT_SYMBOL_GPL vmlinux 0xb5b3f92b xfrm_output_resume EXPORT_SYMBOL_GPL vmlinux 0xb5b6fb04 hv_get_vpreg -EXPORT_SYMBOL_GPL vmlinux 0xb5b8ff1a clkdev_create -EXPORT_SYMBOL_GPL vmlinux 0xb5bba810 xfrm_audit_state_notfound_simple -EXPORT_SYMBOL_GPL vmlinux 0xb61bec9a dev_attr_em_message +EXPORT_SYMBOL_GPL vmlinux 0xb5b96e01 tcp_enter_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0xb5c616f4 usb_altnum_to_altsetting +EXPORT_SYMBOL_GPL vmlinux 0xb5d3b5fd mtk_pinconf_bias_disable_get_rev1 +EXPORT_SYMBOL_GPL vmlinux 0xb5e4835b __phy_modify_mmd_changed +EXPORT_SYMBOL_GPL vmlinux 0xb5e90f40 add_disk_randomness +EXPORT_SYMBOL_GPL vmlinux 0xb5ed5554 clk_mux_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0xb60bd256 imx_pinctrl_parse_pin_scu +EXPORT_SYMBOL_GPL vmlinux 0xb612a0ae rio_register_scan +EXPORT_SYMBOL_GPL vmlinux 0xb61ee1b8 devfreq_event_get_event EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb6262998 pci_hp_create_module_link +EXPORT_SYMBOL_GPL vmlinux 0xb62eab81 power_supply_put EXPORT_SYMBOL_GPL vmlinux 0xb6357e53 cpuidle_enable_device +EXPORT_SYMBOL_GPL vmlinux 0xb636a18b vc_scrolldelta_helper +EXPORT_SYMBOL_GPL vmlinux 0xb637e2e5 addrconf_add_linklocal EXPORT_SYMBOL_GPL vmlinux 0xb6410433 mpi_addm -EXPORT_SYMBOL_GPL vmlinux 0xb64dbbb7 mnt_want_write -EXPORT_SYMBOL_GPL vmlinux 0xb64df911 gpiod_export_link -EXPORT_SYMBOL_GPL vmlinux 0xb6512f8d rpi_firmware_get +EXPORT_SYMBOL_GPL vmlinux 0xb64c7a1e of_cpufreq_cooling_register EXPORT_SYMBOL_GPL vmlinux 0xb655f91b pci_epc_get_next_free_bar -EXPORT_SYMBOL_GPL vmlinux 0xb66543d6 of_reserved_mem_lookup -EXPORT_SYMBOL_GPL vmlinux 0xb66e67ad ahci_print_info +EXPORT_SYMBOL_GPL vmlinux 0xb676532d iomap_truncate_page EXPORT_SYMBOL_GPL vmlinux 0xb6787346 sfp_unregister_socket -EXPORT_SYMBOL_GPL vmlinux 0xb67cb6e1 sk_set_memalloc -EXPORT_SYMBOL_GPL vmlinux 0xb67dcf38 blk_queue_zone_write_granularity -EXPORT_SYMBOL_GPL vmlinux 0xb69a2be0 extcon_get_state -EXPORT_SYMBOL_GPL vmlinux 0xb6a37181 udp_bpf_update_proto -EXPORT_SYMBOL_GPL vmlinux 0xb6b11a3b reset_control_get_count -EXPORT_SYMBOL_GPL vmlinux 0xb6d09390 fuse_do_open -EXPORT_SYMBOL_GPL vmlinux 0xb6d68bf3 __xenbus_register_frontend -EXPORT_SYMBOL_GPL vmlinux 0xb6e32ec7 device_add_properties +EXPORT_SYMBOL_GPL vmlinux 0xb6867aa7 acpi_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0xb68d6926 usb_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xb6b0f5e8 devlink_register +EXPORT_SYMBOL_GPL vmlinux 0xb6b6ec9e kvm_io_bus_get_dev +EXPORT_SYMBOL_GPL vmlinux 0xb6b986ce sdio_f0_readb +EXPORT_SYMBOL_GPL vmlinux 0xb6bc07e2 nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0xb6bc4a5b ata_scsi_dma_need_drain +EXPORT_SYMBOL_GPL vmlinux 0xb6bf082c iommu_group_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xb6c4b1e1 irq_domain_free_fwnode EXPORT_SYMBOL_GPL vmlinux 0xb6e6d99d clk_disable -EXPORT_SYMBOL_GPL vmlinux 0xb6eeb91b gpiod_set_transitory -EXPORT_SYMBOL_GPL vmlinux 0xb6fdd177 kthread_unpark -EXPORT_SYMBOL_GPL vmlinux 0xb6fecc6a devm_hwrng_register -EXPORT_SYMBOL_GPL vmlinux 0xb7101b7a subsys_dev_iter_init -EXPORT_SYMBOL_GPL vmlinux 0xb71e17f2 badblocks_clear -EXPORT_SYMBOL_GPL vmlinux 0xb7237c63 fscrypt_mergeable_bio -EXPORT_SYMBOL_GPL vmlinux 0xb72f65d0 tcf_dev_queue_xmit +EXPORT_SYMBOL_GPL vmlinux 0xb6fe1ece fsl_mc_device_add +EXPORT_SYMBOL_GPL vmlinux 0xb7012723 switchdev_handle_port_attr_set +EXPORT_SYMBOL_GPL vmlinux 0xb704a485 ahci_do_hardreset +EXPORT_SYMBOL_GPL vmlinux 0xb706b79c regmap_get_reg_stride +EXPORT_SYMBOL_GPL vmlinux 0xb708dd0a sfp_bus_add_upstream +EXPORT_SYMBOL_GPL vmlinux 0xb719ebda __fscrypt_prepare_setattr +EXPORT_SYMBOL_GPL vmlinux 0xb71fee2b __irq_resolve_mapping +EXPORT_SYMBOL_GPL vmlinux 0xb7226dd9 crypto_shash_digest +EXPORT_SYMBOL_GPL vmlinux 0xb731272b fsl_mc_cleanup_irq_pool EXPORT_SYMBOL_GPL vmlinux 0xb7329c06 clk_set_phase EXPORT_SYMBOL_GPL vmlinux 0xb73713d7 nvmem_add_cell_lookups -EXPORT_SYMBOL_GPL vmlinux 0xb74498e9 pci_generic_config_read -EXPORT_SYMBOL_GPL vmlinux 0xb7453ab2 usb_hcd_unmap_urb_setup_for_dma -EXPORT_SYMBOL_GPL vmlinux 0xb74b3c5e rio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xb737a8b1 metadata_dst_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb73c22cd gpiochip_request_own_desc +EXPORT_SYMBOL_GPL vmlinux 0xb7420552 raw_hash_sk EXPORT_SYMBOL_GPL vmlinux 0xb74c31cd wwan_remove_port -EXPORT_SYMBOL_GPL vmlinux 0xb74e5ed5 ip_route_output_key_hash -EXPORT_SYMBOL_GPL vmlinux 0xb75aafc7 br_ip6_fragment -EXPORT_SYMBOL_GPL vmlinux 0xb75ac0cb dw_pcie_ep_init_complete -EXPORT_SYMBOL_GPL vmlinux 0xb76cde8b nvdimm_pmem_region_create -EXPORT_SYMBOL_GPL vmlinux 0xb76f825e gpiochip_irqchip_irq_valid -EXPORT_SYMBOL_GPL vmlinux 0xb780543c ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0xb762fcd8 rio_request_dma +EXPORT_SYMBOL_GPL vmlinux 0xb77f9681 __percpu_down_read EXPORT_SYMBOL_GPL vmlinux 0xb782c1a3 hv_get_vpreg_128 +EXPORT_SYMBOL_GPL vmlinux 0xb7868a14 modify_user_hw_breakpoint EXPORT_SYMBOL_GPL vmlinux 0xb786bf75 pci_write_msi_msg -EXPORT_SYMBOL_GPL vmlinux 0xb79418ad regulator_get_current_limit -EXPORT_SYMBOL_GPL vmlinux 0xb799c5a2 sched_trace_cfs_rq_path -EXPORT_SYMBOL_GPL vmlinux 0xb79b2ffe get_current_tty +EXPORT_SYMBOL_GPL vmlinux 0xb78f32f3 ncsi_unregister_dev +EXPORT_SYMBOL_GPL vmlinux 0xb798601d of_property_read_variable_u8_array +EXPORT_SYMBOL_GPL vmlinux 0xb79de758 __mmc_send_status EXPORT_SYMBOL_GPL vmlinux 0xb7a387fc synchronize_rcu_tasks_rude -EXPORT_SYMBOL_GPL vmlinux 0xb7b77980 ti_sci_inta_msi_get_virq -EXPORT_SYMBOL_GPL vmlinux 0xb7c36e07 gnttab_unmap_refs_async +EXPORT_SYMBOL_GPL vmlinux 0xb7af142a usb_free_streams +EXPORT_SYMBOL_GPL vmlinux 0xb7c1ab03 kset_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0xb7c6943c usb_hcd_pci_pm_ops EXPORT_SYMBOL_GPL vmlinux 0xb7c69a63 unregister_vmap_purge_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb7c8cc8e simple_attr_write EXPORT_SYMBOL_GPL vmlinux 0xb7cc0cff __tracepoint_br_fdb_add -EXPORT_SYMBOL_GPL vmlinux 0xb7eec810 devm_regulator_register +EXPORT_SYMBOL_GPL vmlinux 0xb7d47d68 rtc_update_irq +EXPORT_SYMBOL_GPL vmlinux 0xb7e14a90 skb_to_sgvec +EXPORT_SYMBOL_GPL vmlinux 0xb7f5862b of_property_count_elems_of_size EXPORT_SYMBOL_GPL vmlinux 0xb7f73ef8 xas_init_marks EXPORT_SYMBOL_GPL vmlinux 0xb7f990e9 rht_bucket_nested -EXPORT_SYMBOL_GPL vmlinux 0xb807ec02 pcc_mbox_request_channel -EXPORT_SYMBOL_GPL vmlinux 0xb812918d __ndisc_fill_addr_option -EXPORT_SYMBOL_GPL vmlinux 0xb820dd97 power_supply_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0xb826a32c iommu_set_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0xb8126ca0 xdp_rxq_info_reg +EXPORT_SYMBOL_GPL vmlinux 0xb81d1a24 __page_file_index EXPORT_SYMBOL_GPL vmlinux 0xb8273d0b __wake_up_sync -EXPORT_SYMBOL_GPL vmlinux 0xb82c40ea usb_phy_roothub_suspend -EXPORT_SYMBOL_GPL vmlinux 0xb82d8030 crypto_stats_compress -EXPORT_SYMBOL_GPL vmlinux 0xb83feb6c clk_hw_register -EXPORT_SYMBOL_GPL vmlinux 0xb842eea2 crypto_grab_spawn -EXPORT_SYMBOL_GPL vmlinux 0xb8441680 __traceiter_neigh_update_done +EXPORT_SYMBOL_GPL vmlinux 0xb82add49 regulator_count_voltages +EXPORT_SYMBOL_GPL vmlinux 0xb83022be bgmac_enet_remove EXPORT_SYMBOL_GPL vmlinux 0xb847585f is_hash_blacklisted -EXPORT_SYMBOL_GPL vmlinux 0xb87b2021 ahci_platform_get_resources -EXPORT_SYMBOL_GPL vmlinux 0xb885d950 sysfs_break_active_protection +EXPORT_SYMBOL_GPL vmlinux 0xb85090f1 bpf_trace_run12 +EXPORT_SYMBOL_GPL vmlinux 0xb879ab9c kvm_vcpu_unmap +EXPORT_SYMBOL_GPL vmlinux 0xb87b7fee md_rdev_clear +EXPORT_SYMBOL_GPL vmlinux 0xb87f40fe cppc_set_enable +EXPORT_SYMBOL_GPL vmlinux 0xb88735ea ip6_route_output_flags EXPORT_SYMBOL_GPL vmlinux 0xb88bc47e arch_apei_report_mem_error EXPORT_SYMBOL_GPL vmlinux 0xb88dbfce irq_set_irqchip_state -EXPORT_SYMBOL_GPL vmlinux 0xb892e242 sdio_memcpy_toio +EXPORT_SYMBOL_GPL vmlinux 0xb8966a45 extcon_set_state_sync EXPORT_SYMBOL_GPL vmlinux 0xb8993fac __tracepoint_remove_device_from_group EXPORT_SYMBOL_GPL vmlinux 0xb89e69b1 jump_label_update_timeout -EXPORT_SYMBOL_GPL vmlinux 0xb8a73ec3 bpf_prog_get_type_dev EXPORT_SYMBOL_GPL vmlinux 0xb8b8c4f0 ti_sci_release_resource -EXPORT_SYMBOL_GPL vmlinux 0xb8bbc756 pci_restore_msi_state -EXPORT_SYMBOL_GPL vmlinux 0xb8ca7002 skcipher_walk_virt EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put -EXPORT_SYMBOL_GPL vmlinux 0xb8d92ed5 fat_detach -EXPORT_SYMBOL_GPL vmlinux 0xb8e04618 iommu_sva_get_pasid -EXPORT_SYMBOL_GPL vmlinux 0xb8e31f5b fib4_rule_default +EXPORT_SYMBOL_GPL vmlinux 0xb8d335d0 mmc_crypto_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0xb8d3922e key_type_asymmetric +EXPORT_SYMBOL_GPL vmlinux 0xb8f0f3ff lwtunnel_output EXPORT_SYMBOL_GPL vmlinux 0xb8f11603 idr_alloc -EXPORT_SYMBOL_GPL vmlinux 0xb90af6dc sata_pmp_error_handler -EXPORT_SYMBOL_GPL vmlinux 0xb90fd10d kvm_vcpu_kick +EXPORT_SYMBOL_GPL vmlinux 0xb8f62ebc devlink_remote_reload_actions_performed +EXPORT_SYMBOL_GPL vmlinux 0xb90b8f80 blk_rq_unprep_clone +EXPORT_SYMBOL_GPL vmlinux 0xb90bbe43 iommu_device_unregister EXPORT_SYMBOL_GPL vmlinux 0xb912560d static_key_disable -EXPORT_SYMBOL_GPL vmlinux 0xb9131cc3 usb_enable_intel_xhci_ports -EXPORT_SYMBOL_GPL vmlinux 0xb916dcef vp_modern_probe EXPORT_SYMBOL_GPL vmlinux 0xb917b6d7 return_address -EXPORT_SYMBOL_GPL vmlinux 0xb91c6547 fuse_file_poll -EXPORT_SYMBOL_GPL vmlinux 0xb91ea633 pci_epc_stop -EXPORT_SYMBOL_GPL vmlinux 0xb92a97ad nvdimm_bus_add_badrange -EXPORT_SYMBOL_GPL vmlinux 0xb93370e9 crypto_stats_rng_generate -EXPORT_SYMBOL_GPL vmlinux 0xb94345ff mc_send_command +EXPORT_SYMBOL_GPL vmlinux 0xb91ae805 class_interface_register +EXPORT_SYMBOL_GPL vmlinux 0xb91d968e dev_pm_opp_unregister_set_opp_helper +EXPORT_SYMBOL_GPL vmlinux 0xb91ff662 msg_zerocopy_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb920ce11 scsi_build_sense +EXPORT_SYMBOL_GPL vmlinux 0xb93584e9 gpiod_set_debounce +EXPORT_SYMBOL_GPL vmlinux 0xb941ecc5 rio_unmap_inb_region +EXPORT_SYMBOL_GPL vmlinux 0xb94d039c clk_hw_get_parent_by_index +EXPORT_SYMBOL_GPL vmlinux 0xb9505b82 devres_release_group +EXPORT_SYMBOL_GPL vmlinux 0xb95e0e83 device_create_with_groups +EXPORT_SYMBOL_GPL vmlinux 0xb9636d96 sock_prot_inuse_add EXPORT_SYMBOL_GPL vmlinux 0xb9681621 xdp_do_flush -EXPORT_SYMBOL_GPL vmlinux 0xb96afe73 pci_ecam_create +EXPORT_SYMBOL_GPL vmlinux 0xb9737f50 __fscrypt_prepare_readdir EXPORT_SYMBOL_GPL vmlinux 0xb9852d11 __traceiter_mc_event -EXPORT_SYMBOL_GPL vmlinux 0xb98694f1 ipv6_opt_accepted EXPORT_SYMBOL_GPL vmlinux 0xb98bb315 phy_gbit_fibre_features -EXPORT_SYMBOL_GPL vmlinux 0xb99b4c21 vp_modern_get_features -EXPORT_SYMBOL_GPL vmlinux 0xb9ac7aea kstrdup_quotable_file EXPORT_SYMBOL_GPL vmlinux 0xb9b9df41 usb_amd_dev_put -EXPORT_SYMBOL_GPL vmlinux 0xb9be0d39 devlink_reload_disable +EXPORT_SYMBOL_GPL vmlinux 0xb9c06d90 devlink_param_driverinit_value_get EXPORT_SYMBOL_GPL vmlinux 0xb9c16f51 hv_max_vp_index +EXPORT_SYMBOL_GPL vmlinux 0xb9c229f0 wm831x_reg_read EXPORT_SYMBOL_GPL vmlinux 0xb9c425de register_syscore_ops -EXPORT_SYMBOL_GPL vmlinux 0xb9cd3bb4 sdev_evt_send EXPORT_SYMBOL_GPL vmlinux 0xb9d025c9 llist_del_first -EXPORT_SYMBOL_GPL vmlinux 0xb9d5b70c nvdimm_provider_data -EXPORT_SYMBOL_GPL vmlinux 0xb9e180ac devlink_resource_occ_get_register -EXPORT_SYMBOL_GPL vmlinux 0xb9e4280a pcie_update_link_speed -EXPORT_SYMBOL_GPL vmlinux 0xb9f49ee8 wakeup_source_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb9f87e29 inet_csk_addr2sockaddr -EXPORT_SYMBOL_GPL vmlinux 0xb9ff3b74 nvdimm_cmd_mask +EXPORT_SYMBOL_GPL vmlinux 0xb9f148cc dev_pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0xba0170b5 ata_host_detach EXPORT_SYMBOL_GPL vmlinux 0xba057786 kernel_read_file_from_path_initns -EXPORT_SYMBOL_GPL vmlinux 0xba0c13c6 vring_transport_features -EXPORT_SYMBOL_GPL vmlinux 0xba0f7c25 paste_selection +EXPORT_SYMBOL_GPL vmlinux 0xba215e3d devm_nvmem_device_get EXPORT_SYMBOL_GPL vmlinux 0xba220db7 __wake_up_sync_key +EXPORT_SYMBOL_GPL vmlinux 0xba27856c edac_pci_add_device +EXPORT_SYMBOL_GPL vmlinux 0xba280cf9 iommu_unregister_device_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0xba28ab3e fsl_mc_bus_dpdmai_type EXPORT_SYMBOL_GPL vmlinux 0xba2b7f64 cpufreq_generic_get -EXPORT_SYMBOL_GPL vmlinux 0xba3be700 __audit_inode_child -EXPORT_SYMBOL_GPL vmlinux 0xba6789eb sbitmap_queue_show -EXPORT_SYMBOL_GPL vmlinux 0xba6e6580 of_resolve_phandles -EXPORT_SYMBOL_GPL vmlinux 0xba7e456d perf_event_disable -EXPORT_SYMBOL_GPL vmlinux 0xba832eb5 tegra_bpmp_get -EXPORT_SYMBOL_GPL vmlinux 0xba86f47f devm_phy_put -EXPORT_SYMBOL_GPL vmlinux 0xba8c7616 meson_axg_pmx_ops +EXPORT_SYMBOL_GPL vmlinux 0xba2ccc55 mtk_is_virt_gpio +EXPORT_SYMBOL_GPL vmlinux 0xba3a2b7b serdev_device_write_flush +EXPORT_SYMBOL_GPL vmlinux 0xba45a090 dev_pm_opp_of_add_table_indexed +EXPORT_SYMBOL_GPL vmlinux 0xba4ed68a skcipher_walk_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0xba598800 devm_regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xba728eb1 rio_get_comptag +EXPORT_SYMBOL_GPL vmlinux 0xba77ffa3 pingv6_ops +EXPORT_SYMBOL_GPL vmlinux 0xba86705d blkdev_report_zones +EXPORT_SYMBOL_GPL vmlinux 0xba996901 iommu_sva_bind_device +EXPORT_SYMBOL_GPL vmlinux 0xba99fed0 fuse_dev_fiq_ops +EXPORT_SYMBOL_GPL vmlinux 0xbaa002a9 crypto_unregister_scomp +EXPORT_SYMBOL_GPL vmlinux 0xbaa0b048 inet_twsk_hashdance +EXPORT_SYMBOL_GPL vmlinux 0xbab23c68 rtnl_register_module EXPORT_SYMBOL_GPL vmlinux 0xbab9a9f0 maxim_charger_currents -EXPORT_SYMBOL_GPL vmlinux 0xbac4ee39 acpi_subsys_suspend -EXPORT_SYMBOL_GPL vmlinux 0xbac9b7b4 devfreq_event_get_edev_count -EXPORT_SYMBOL_GPL vmlinux 0xbacdf7b8 dm_internal_suspend_noflush -EXPORT_SYMBOL_GPL vmlinux 0xbad1cdb4 cpufreq_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xbabb6cc4 devm_irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xbac85ceb sprd_pinctrl_remove +EXPORT_SYMBOL_GPL vmlinux 0xbad05126 tcp_unregister_ulp +EXPORT_SYMBOL_GPL vmlinux 0xbad2167c usb_unlocked_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xbaeb9f22 bgmac_enet_resume EXPORT_SYMBOL_GPL vmlinux 0xbaf22757 kvfree_call_rcu -EXPORT_SYMBOL_GPL vmlinux 0xbaf6485e fsnotify EXPORT_SYMBOL_GPL vmlinux 0xbaf6850c fsnotify_wait_marks_destroyed EXPORT_SYMBOL_GPL vmlinux 0xbb0ab47b debug_locks EXPORT_SYMBOL_GPL vmlinux 0xbb0b25d2 register_xenbus_watch -EXPORT_SYMBOL_GPL vmlinux 0xbb1b438e l3mdev_fib_table_rcu -EXPORT_SYMBOL_GPL vmlinux 0xbb2007f1 crypto_type_has_alg +EXPORT_SYMBOL_GPL vmlinux 0xbb0f871e badblocks_clear +EXPORT_SYMBOL_GPL vmlinux 0xbb22afd9 fsnotify_destroy_mark EXPORT_SYMBOL_GPL vmlinux 0xbb24f372 __SCK__tp_func_attach_device_to_domain -EXPORT_SYMBOL_GPL vmlinux 0xbb26ae7d icc_nodes_remove -EXPORT_SYMBOL_GPL vmlinux 0xbb35d6cb gnttab_page_cache_get EXPORT_SYMBOL_GPL vmlinux 0xbb6a3cbd devlink_fmsg_arr_pair_nest_start -EXPORT_SYMBOL_GPL vmlinux 0xbb6c3748 crypto_alloc_tfm_node EXPORT_SYMBOL_GPL vmlinux 0xbb6f025a asymmetric_key_generate_id EXPORT_SYMBOL_GPL vmlinux 0xbb7195a5 xdp_warn -EXPORT_SYMBOL_GPL vmlinux 0xbb738b35 tun_get_tx_ring -EXPORT_SYMBOL_GPL vmlinux 0xbb840043 debugfs_create_atomic_t +EXPORT_SYMBOL_GPL vmlinux 0xbb87e22a public_key_subtype +EXPORT_SYMBOL_GPL vmlinux 0xbb89d234 extcon_get_state +EXPORT_SYMBOL_GPL vmlinux 0xbb90deb3 dev_pm_domain_attach_by_name EXPORT_SYMBOL_GPL vmlinux 0xbb93eec5 ioasid_alloc -EXPORT_SYMBOL_GPL vmlinux 0xbb95eab1 ata_host_alloc +EXPORT_SYMBOL_GPL vmlinux 0xbb98f616 wakeup_sources_walk_start +EXPORT_SYMBOL_GPL vmlinux 0xbb9c31bc acpi_device_uevent_modalias +EXPORT_SYMBOL_GPL vmlinux 0xbba25c9a dma_map_sgtable +EXPORT_SYMBOL_GPL vmlinux 0xbbaea45d max8997_bulk_write EXPORT_SYMBOL_GPL vmlinux 0xbbb4ab02 mtk_mutex_put -EXPORT_SYMBOL_GPL vmlinux 0xbbc114b2 sata_link_debounce -EXPORT_SYMBOL_GPL vmlinux 0xbbc619ba inverse_translate -EXPORT_SYMBOL_GPL vmlinux 0xbbc6347a md_submit_discard_bio -EXPORT_SYMBOL_GPL vmlinux 0xbbca1033 tpm_chip_alloc -EXPORT_SYMBOL_GPL vmlinux 0xbbcc1ec2 pci_device_is_present -EXPORT_SYMBOL_GPL vmlinux 0xbbd4ca34 device_match_devt -EXPORT_SYMBOL_GPL vmlinux 0xbbd5eb57 gpiochip_remove -EXPORT_SYMBOL_GPL vmlinux 0xbbdea4d8 hisi_uncore_pmu_get_event_idx EXPORT_SYMBOL_GPL vmlinux 0xbbe56404 sprint_OID -EXPORT_SYMBOL_GPL vmlinux 0xbbec258c dev_pm_domain_set EXPORT_SYMBOL_GPL vmlinux 0xbbf4dfbe phy_basic_t1_features -EXPORT_SYMBOL_GPL vmlinux 0xbbfc6a0f devm_hwspin_lock_register -EXPORT_SYMBOL_GPL vmlinux 0xbc030a46 __account_locked_vm -EXPORT_SYMBOL_GPL vmlinux 0xbc056d4e edac_pci_handle_npe -EXPORT_SYMBOL_GPL vmlinux 0xbc0f6e9d devlink_port_attrs_pci_pf_set -EXPORT_SYMBOL_GPL vmlinux 0xbc196486 ack_all_badblocks -EXPORT_SYMBOL_GPL vmlinux 0xbc2f6888 pinctrl_force_default +EXPORT_SYMBOL_GPL vmlinux 0xbbfaf099 ata_acpi_cbl_80wire +EXPORT_SYMBOL_GPL vmlinux 0xbbfd796e sk_psock_init +EXPORT_SYMBOL_GPL vmlinux 0xbc26132a mmc_send_abort_tuning +EXPORT_SYMBOL_GPL vmlinux 0xbc2c153c iomap_releasepage EXPORT_SYMBOL_GPL vmlinux 0xbc3f2cb0 timecounter_cyc2time -EXPORT_SYMBOL_GPL vmlinux 0xbc4c8091 devm_nvdimm_memremap +EXPORT_SYMBOL_GPL vmlinux 0xbc40a7cf irq_domain_free_irqs_common +EXPORT_SYMBOL_GPL vmlinux 0xbc4f6fcf platform_get_irq_byname EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0xbc8d11dd devm_pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0xbc7695fc cpuidle_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xbc8c312b kill_dev_dax +EXPORT_SYMBOL_GPL vmlinux 0xbc9300f7 rio_local_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0xbc95f351 dpbp_close EXPORT_SYMBOL_GPL vmlinux 0xbc9b8588 ehci_cf_port_reset_rwsem -EXPORT_SYMBOL_GPL vmlinux 0xbc9ffa26 spi_mem_default_supports_op -EXPORT_SYMBOL_GPL vmlinux 0xbcac9694 iommu_group_add_device -EXPORT_SYMBOL_GPL vmlinux 0xbcad24bb of_property_read_u32_index +EXPORT_SYMBOL_GPL vmlinux 0xbca36394 kvm_vcpu_gfn_to_hva +EXPORT_SYMBOL_GPL vmlinux 0xbcaf04a5 mtk_pinconf_adv_drive_get +EXPORT_SYMBOL_GPL vmlinux 0xbcaf482c edac_mc_add_mc_with_groups +EXPORT_SYMBOL_GPL vmlinux 0xbcb598db device_remove_file +EXPORT_SYMBOL_GPL vmlinux 0xbcb967f5 dev_pm_genpd_set_performance_state +EXPORT_SYMBOL_GPL vmlinux 0xbcbe9411 led_stop_software_blink EXPORT_SYMBOL_GPL vmlinux 0xbcc15e75 ktime_get_coarse_with_offset -EXPORT_SYMBOL_GPL vmlinux 0xbcc39c68 attribute_container_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbcc94c9a __traceiter_br_fdb_add +EXPORT_SYMBOL_GPL vmlinux 0xbccd6508 synth_event_trace EXPORT_SYMBOL_GPL vmlinux 0xbccfd4d8 register_oldmem_pfn_is_ram -EXPORT_SYMBOL_GPL vmlinux 0xbcd3b162 fwnode_create_software_node -EXPORT_SYMBOL_GPL vmlinux 0xbcdbe848 iommu_iova_to_phys -EXPORT_SYMBOL_GPL vmlinux 0xbcdc1a43 devm_hwspin_lock_request +EXPORT_SYMBOL_GPL vmlinux 0xbcdcd2fe fuse_dev_alloc EXPORT_SYMBOL_GPL vmlinux 0xbcdd5b99 iommu_group_set_name -EXPORT_SYMBOL_GPL vmlinux 0xbcee1158 phy_set_media EXPORT_SYMBOL_GPL vmlinux 0xbcf1f0e6 zs_create_pool -EXPORT_SYMBOL_GPL vmlinux 0xbcf3ea45 phy_led_triggers_unregister -EXPORT_SYMBOL_GPL vmlinux 0xbcf8c6ab serial8250_modem_status -EXPORT_SYMBOL_GPL vmlinux 0xbd083e47 locks_release_private -EXPORT_SYMBOL_GPL vmlinux 0xbd0d1a77 clk_hw_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0xbd156540 edac_device_add_device -EXPORT_SYMBOL_GPL vmlinux 0xbd3201d5 gpiod_set_debounce -EXPORT_SYMBOL_GPL vmlinux 0xbd367002 nvdimm_bus_check_dimm_count +EXPORT_SYMBOL_GPL vmlinux 0xbd076b8f spi_mem_default_supports_op +EXPORT_SYMBOL_GPL vmlinux 0xbd20ff47 pci_generic_config_read +EXPORT_SYMBOL_GPL vmlinux 0xbd2395f3 devm_krealloc +EXPORT_SYMBOL_GPL vmlinux 0xbd2d389e pci_epc_get_msix +EXPORT_SYMBOL_GPL vmlinux 0xbd2fdf26 gpiod_set_raw_value +EXPORT_SYMBOL_GPL vmlinux 0xbd358c9d sdio_readb +EXPORT_SYMBOL_GPL vmlinux 0xbd3604c2 nvdimm_delete +EXPORT_SYMBOL_GPL vmlinux 0xbd3951d1 gpiochip_add_pingroup_range EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq -EXPORT_SYMBOL_GPL vmlinux 0xbd4195bf synth_event_gen_cmd_array_start -EXPORT_SYMBOL_GPL vmlinux 0xbd556233 usb_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xbd41381c fib6_check_nexthop EXPORT_SYMBOL_GPL vmlinux 0xbd5704ec __tracepoint_xdp_bulk_tx -EXPORT_SYMBOL_GPL vmlinux 0xbd5e3a78 device_match_name -EXPORT_SYMBOL_GPL vmlinux 0xbd5ecd9d devm_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0xbd68394f crypto_create_tfm_node -EXPORT_SYMBOL_GPL vmlinux 0xbd6b6b49 ahci_sdev_attrs -EXPORT_SYMBOL_GPL vmlinux 0xbd75319c dma_buf_vunmap -EXPORT_SYMBOL_GPL vmlinux 0xbd759116 ata_bmdma_setup -EXPORT_SYMBOL_GPL vmlinux 0xbd78d81f __trace_note_message +EXPORT_SYMBOL_GPL vmlinux 0xbd6650fd spi_async_locked +EXPORT_SYMBOL_GPL vmlinux 0xbd69031f device_get_dma_attr EXPORT_SYMBOL_GPL vmlinux 0xbd7aaaee add_memory -EXPORT_SYMBOL_GPL vmlinux 0xbd83f30b blk_ksm_init_passthrough -EXPORT_SYMBOL_GPL vmlinux 0xbd8c2ddd check_move_unevictable_pages -EXPORT_SYMBOL_GPL vmlinux 0xbd957273 tpmm_chip_alloc -EXPORT_SYMBOL_GPL vmlinux 0xbda228e5 hisi_event_sysfs_show -EXPORT_SYMBOL_GPL vmlinux 0xbda5577d rio_request_inb_mbox -EXPORT_SYMBOL_GPL vmlinux 0xbdaf3d7e pinmux_generic_add_function +EXPORT_SYMBOL_GPL vmlinux 0xbd7b3a67 stmpe_block_read +EXPORT_SYMBOL_GPL vmlinux 0xbd85d233 kvm_vcpu_write_guest +EXPORT_SYMBOL_GPL vmlinux 0xbd8e9617 serial8250_do_set_ldisc +EXPORT_SYMBOL_GPL vmlinux 0xbd955baf scmi_protocol_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbda667e2 fscrypt_file_open +EXPORT_SYMBOL_GPL vmlinux 0xbda958a4 clean_record_shared_mapping_range +EXPORT_SYMBOL_GPL vmlinux 0xbdab3de8 tcp_unregister_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0xbdb1ca7d imx_pinctrl_pm_ops EXPORT_SYMBOL_GPL vmlinux 0xbdb2217d hv_is_isolation_supported EXPORT_SYMBOL_GPL vmlinux 0xbdb72342 __tracepoint_devlink_hwmsg -EXPORT_SYMBOL_GPL vmlinux 0xbdba6a0d dev_pm_qos_flags -EXPORT_SYMBOL_GPL vmlinux 0xbdd6e815 spi_mem_dtr_supports_op -EXPORT_SYMBOL_GPL vmlinux 0xbde01e9c devlink_param_unregister -EXPORT_SYMBOL_GPL vmlinux 0xbdefa894 gpiod_put_array -EXPORT_SYMBOL_GPL vmlinux 0xbdf3f357 bpf_redirect_info -EXPORT_SYMBOL_GPL vmlinux 0xbdff7fdc irq_domain_xlate_onetwocell -EXPORT_SYMBOL_GPL vmlinux 0xbe063659 __devm_irq_alloc_descs -EXPORT_SYMBOL_GPL vmlinux 0xbe106228 uart_try_toggle_sysrq -EXPORT_SYMBOL_GPL vmlinux 0xbe1fa18e of_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0xbe2e09c1 unregister_pernet_device -EXPORT_SYMBOL_GPL vmlinux 0xbe3cf9d5 xenbus_alloc_evtchn -EXPORT_SYMBOL_GPL vmlinux 0xbe592984 dm_accept_partial_bio +EXPORT_SYMBOL_GPL vmlinux 0xbdbecc6a tps6586x_write +EXPORT_SYMBOL_GPL vmlinux 0xbdc566d9 extcon_get_edev_name +EXPORT_SYMBOL_GPL vmlinux 0xbdca825a crypto_unregister_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xbdd24fe2 debugfs_create_file_unsafe +EXPORT_SYMBOL_GPL vmlinux 0xbddc565d acpi_dev_add_driver_gpios +EXPORT_SYMBOL_GPL vmlinux 0xbde14e74 altr_sysmgr_regmap_lookup_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xbdef086b __clk_mux_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0xbe026abb mtk_build_eint +EXPORT_SYMBOL_GPL vmlinux 0xbe137613 blk_trace_setup +EXPORT_SYMBOL_GPL vmlinux 0xbe3e2774 sdio_enable_func +EXPORT_SYMBOL_GPL vmlinux 0xbe4c0a1c of_genpd_remove_last +EXPORT_SYMBOL_GPL vmlinux 0xbe4dbddc phy_create_lookup EXPORT_SYMBOL_GPL vmlinux 0xbe5c888b crypto_chain EXPORT_SYMBOL_GPL vmlinux 0xbe5e3414 k3_udma_glue_reset_rx_chn EXPORT_SYMBOL_GPL vmlinux 0xbe687e88 wake_up_all_idle_cpus EXPORT_SYMBOL_GPL vmlinux 0xbe6d43d7 ioasid_put -EXPORT_SYMBOL_GPL vmlinux 0xbe7577bb pci_epc_get_features -EXPORT_SYMBOL_GPL vmlinux 0xbe807b81 perf_event_addr_filters_sync -EXPORT_SYMBOL_GPL vmlinux 0xbe94aa92 devm_clk_hw_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbe6ecb61 input_ff_erase +EXPORT_SYMBOL_GPL vmlinux 0xbe70c981 phy_speed_up +EXPORT_SYMBOL_GPL vmlinux 0xbe8ac203 dw_pcie_read_dbi EXPORT_SYMBOL_GPL vmlinux 0xbe96dfd8 of_reconfig_notifier_unregister EXPORT_SYMBOL_GPL vmlinux 0xbe9a83d5 dw_pcie_write -EXPORT_SYMBOL_GPL vmlinux 0xbea0d027 acpi_pci_check_ejectable -EXPORT_SYMBOL_GPL vmlinux 0xbea38386 da9052_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0xbe9b65bc tty_standard_install +EXPORT_SYMBOL_GPL vmlinux 0xbea2608d iommu_device_sysfs_add EXPORT_SYMBOL_GPL vmlinux 0xbea5ff1e static_key_initialized -EXPORT_SYMBOL_GPL vmlinux 0xbea96891 fuse_conn_destroy -EXPORT_SYMBOL_GPL vmlinux 0xbec398ca __pm_runtime_set_status +EXPORT_SYMBOL_GPL vmlinux 0xbeabe76a blk_queue_max_discard_segments +EXPORT_SYMBOL_GPL vmlinux 0xbeb1f18c pinconf_generic_dt_subnode_to_map EXPORT_SYMBOL_GPL vmlinux 0xbec66c3a __apei_exec_run -EXPORT_SYMBOL_GPL vmlinux 0xbec9850e fscrypt_show_test_dummy_encryption -EXPORT_SYMBOL_GPL vmlinux 0xbee60468 blockdev_superblock -EXPORT_SYMBOL_GPL vmlinux 0xbee9770b inode_sb_list_add +EXPORT_SYMBOL_GPL vmlinux 0xbeccd9b0 debugfs_create_u32 +EXPORT_SYMBOL_GPL vmlinux 0xbecf8884 sched_trace_rq_avg_rt +EXPORT_SYMBOL_GPL vmlinux 0xbee14445 adp5520_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbef2602d tps6586x_writes +EXPORT_SYMBOL_GPL vmlinux 0xbef91185 reset_controller_register EXPORT_SYMBOL_GPL vmlinux 0xbf041102 register_vt_notifier -EXPORT_SYMBOL_GPL vmlinux 0xbf0e8207 ata_sas_port_suspend -EXPORT_SYMBOL_GPL vmlinux 0xbf0ff464 devm_rpi_firmware_get -EXPORT_SYMBOL_GPL vmlinux 0xbf212404 sock_diag_destroy -EXPORT_SYMBOL_GPL vmlinux 0xbf2597e0 extcon_dev_free -EXPORT_SYMBOL_GPL vmlinux 0xbf3cc4b4 crypto_register_rngs -EXPORT_SYMBOL_GPL vmlinux 0xbf40592a irq_setup_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0xbf55cfef __devm_regmap_init_spi -EXPORT_SYMBOL_GPL vmlinux 0xbf6e0a75 dst_cache_get_ip4 -EXPORT_SYMBOL_GPL vmlinux 0xbf70d69e hisi_uncore_pmu_event_init -EXPORT_SYMBOL_GPL vmlinux 0xbf71ab17 dev_forward_skb -EXPORT_SYMBOL_GPL vmlinux 0xbf8947ba rio_dev_get -EXPORT_SYMBOL_GPL vmlinux 0xbfb4fc35 fwnode_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0xbfb7be13 dev_set_name +EXPORT_SYMBOL_GPL vmlinux 0xbf05871b sched_trace_rq_nr_running +EXPORT_SYMBOL_GPL vmlinux 0xbf0e4d73 iterate_mounts +EXPORT_SYMBOL_GPL vmlinux 0xbf17a724 blk_crypto_evict_key +EXPORT_SYMBOL_GPL vmlinux 0xbf226070 devm_kasprintf +EXPORT_SYMBOL_GPL vmlinux 0xbf2507be crypto_register_kpp +EXPORT_SYMBOL_GPL vmlinux 0xbf267c1e ahci_print_info +EXPORT_SYMBOL_GPL vmlinux 0xbf299ea4 lochnagar_update_config +EXPORT_SYMBOL_GPL vmlinux 0xbf6489c8 nf_checksum_partial +EXPORT_SYMBOL_GPL vmlinux 0xbf740a7b pwm_apply_state +EXPORT_SYMBOL_GPL vmlinux 0xbf7ae4af blk_add_driver_data +EXPORT_SYMBOL_GPL vmlinux 0xbf8592ef gnttab_dma_alloc_pages +EXPORT_SYMBOL_GPL vmlinux 0xbf886364 xenbus_dev_cancel +EXPORT_SYMBOL_GPL vmlinux 0xbfba5443 param_set_bool_enable_only EXPORT_SYMBOL_GPL vmlinux 0xbfbc5434 pciserial_resume_ports -EXPORT_SYMBOL_GPL vmlinux 0xbfbcffc0 of_genpd_remove_last +EXPORT_SYMBOL_GPL vmlinux 0xbfcd3190 gov_attr_set_init +EXPORT_SYMBOL_GPL vmlinux 0xbfd4912b vp_modern_set_features EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control EXPORT_SYMBOL_GPL vmlinux 0xbfed2cd9 __wait_rcu_gp -EXPORT_SYMBOL_GPL vmlinux 0xbff3b844 dax_inode EXPORT_SYMBOL_GPL vmlinux 0xbffa29be srcu_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xbffaf08d __of_reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0xbfff0ad1 mmc_crypto_prepare_req -EXPORT_SYMBOL_GPL vmlinux 0xc0030307 blk_next_bio -EXPORT_SYMBOL_GPL vmlinux 0xc0052150 regulator_get_error_flags -EXPORT_SYMBOL_GPL vmlinux 0xc0135d60 extcon_dev_register -EXPORT_SYMBOL_GPL vmlinux 0xc013db11 i2c_generic_scl_recovery +EXPORT_SYMBOL_GPL vmlinux 0xc00487ed power_supply_get_property +EXPORT_SYMBOL_GPL vmlinux 0xc00c4fde vfs_getxattr +EXPORT_SYMBOL_GPL vmlinux 0xc019e2a2 gnttab_unmap_refs_sync +EXPORT_SYMBOL_GPL vmlinux 0xc02efe61 hisi_clk_register_phase +EXPORT_SYMBOL_GPL vmlinux 0xc02fb004 md_stop +EXPORT_SYMBOL_GPL vmlinux 0xc02fb423 dev_pm_genpd_suspend +EXPORT_SYMBOL_GPL vmlinux 0xc03d039a mtk_pinconf_bias_set_rev1 +EXPORT_SYMBOL_GPL vmlinux 0xc05708bd phy_start_machine EXPORT_SYMBOL_GPL vmlinux 0xc05cee80 ipi_get_hwirq -EXPORT_SYMBOL_GPL vmlinux 0xc063cb82 spi_mem_exec_op -EXPORT_SYMBOL_GPL vmlinux 0xc0704a9d dma_buf_unpin -EXPORT_SYMBOL_GPL vmlinux 0xc07155d3 regmap_multi_reg_write_bypassed EXPORT_SYMBOL_GPL vmlinux 0xc071b3c5 trace_seq_putmem -EXPORT_SYMBOL_GPL vmlinux 0xc07d2a09 device_property_read_u64_array -EXPORT_SYMBOL_GPL vmlinux 0xc07dccdc usb_register_driver -EXPORT_SYMBOL_GPL vmlinux 0xc07fd0d6 pm_schedule_suspend +EXPORT_SYMBOL_GPL vmlinux 0xc073a2ab lp8788_update_bits +EXPORT_SYMBOL_GPL vmlinux 0xc07d3710 hwspin_lock_request_specific +EXPORT_SYMBOL_GPL vmlinux 0xc08bd015 wm831x_regmap_config EXPORT_SYMBOL_GPL vmlinux 0xc090c376 net_selftest_get_strings -EXPORT_SYMBOL_GPL vmlinux 0xc0a114b4 ata_sff_check_status EXPORT_SYMBOL_GPL vmlinux 0xc0a3d155 k3_udma_glue_rx_get_flow_id_base -EXPORT_SYMBOL_GPL vmlinux 0xc0a44ba5 dev_pm_opp_get_voltage -EXPORT_SYMBOL_GPL vmlinux 0xc0a63aea blk_mq_complete_request_remote +EXPORT_SYMBOL_GPL vmlinux 0xc0a72cf1 fscrypt_prepare_new_inode EXPORT_SYMBOL_GPL vmlinux 0xc0a96e14 rcu_gp_is_expedited -EXPORT_SYMBOL_GPL vmlinux 0xc0b4d063 gpiochip_lock_as_irq -EXPORT_SYMBOL_GPL vmlinux 0xc0d3f172 inet_csk_get_port +EXPORT_SYMBOL_GPL vmlinux 0xc0ac68e9 of_pci_range_parser_init +EXPORT_SYMBOL_GPL vmlinux 0xc0b2b478 rio_map_outb_region +EXPORT_SYMBOL_GPL vmlinux 0xc0b69473 devlink_reload_enable +EXPORT_SYMBOL_GPL vmlinux 0xc0c821e0 debugfs_file_put +EXPORT_SYMBOL_GPL vmlinux 0xc0d11b53 __traceiter_block_unplug EXPORT_SYMBOL_GPL vmlinux 0xc0dcb59e edac_layer_name -EXPORT_SYMBOL_GPL vmlinux 0xc0eb8b39 __traceiter_tcp_bad_csum +EXPORT_SYMBOL_GPL vmlinux 0xc0debdd6 meson_clk_cpu_dyndiv_ops +EXPORT_SYMBOL_GPL vmlinux 0xc0e3fa78 devm_fwnode_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xc0eabb78 sysfs_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xc0edb888 devlink_port_attrs_pci_pf_set EXPORT_SYMBOL_GPL vmlinux 0xc0f0458a ip_tunnel_unneed_metadata -EXPORT_SYMBOL_GPL vmlinux 0xc0f9e38d proc_create_net_data -EXPORT_SYMBOL_GPL vmlinux 0xc100e98b device_show_int +EXPORT_SYMBOL_GPL vmlinux 0xc10029b5 serdev_device_set_parity EXPORT_SYMBOL_GPL vmlinux 0xc1086e0c sysrq_toggle_support EXPORT_SYMBOL_GPL vmlinux 0xc10fddb8 name_to_dev_t -EXPORT_SYMBOL_GPL vmlinux 0xc1100dc3 devm_devfreq_event_add_edev -EXPORT_SYMBOL_GPL vmlinux 0xc11f8a80 phy_init -EXPORT_SYMBOL_GPL vmlinux 0xc1274f31 ping_bind -EXPORT_SYMBOL_GPL vmlinux 0xc12830bd devm_memremap_pages -EXPORT_SYMBOL_GPL vmlinux 0xc12a5508 rtc_read_time -EXPORT_SYMBOL_GPL vmlinux 0xc1383a8d device_change_owner -EXPORT_SYMBOL_GPL vmlinux 0xc153a851 efivar_entry_iter -EXPORT_SYMBOL_GPL vmlinux 0xc159e4ae acpi_gpiochip_request_interrupts -EXPORT_SYMBOL_GPL vmlinux 0xc166b627 nvmem_register -EXPORT_SYMBOL_GPL vmlinux 0xc1671f84 iommu_sva_free_pasid -EXPORT_SYMBOL_GPL vmlinux 0xc16ae692 crypto_skcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0xc11321ac dev_queue_xmit_nit +EXPORT_SYMBOL_GPL vmlinux 0xc11f34b8 fat_truncate_time +EXPORT_SYMBOL_GPL vmlinux 0xc127c723 dm_per_bio_data +EXPORT_SYMBOL_GPL vmlinux 0xc128757f regmap_noinc_read +EXPORT_SYMBOL_GPL vmlinux 0xc135c2ae gpiod_set_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0xc13a1b83 blk_req_zone_write_trylock +EXPORT_SYMBOL_GPL vmlinux 0xc13e62c8 serial8250_rpm_get +EXPORT_SYMBOL_GPL vmlinux 0xc161223e mtk_pinconf_bias_get_rev1 +EXPORT_SYMBOL_GPL vmlinux 0xc16aba3c sock_map_unhash EXPORT_SYMBOL_GPL vmlinux 0xc1743430 cpuidle_disable_device EXPORT_SYMBOL_GPL vmlinux 0xc17515d7 usb_hcds_loaded EXPORT_SYMBOL_GPL vmlinux 0xc17e9946 usb_show_dynids -EXPORT_SYMBOL_GPL vmlinux 0xc180a6b9 k3_udma_glue_tx_get_dma_device -EXPORT_SYMBOL_GPL vmlinux 0xc184687c wait_on_page_writeback_killable -EXPORT_SYMBOL_GPL vmlinux 0xc1a448fe irq_chip_retrigger_hierarchy -EXPORT_SYMBOL_GPL vmlinux 0xc1bed394 spi_mem_adjust_op_size -EXPORT_SYMBOL_GPL vmlinux 0xc1d9e288 spi_finalize_current_transfer +EXPORT_SYMBOL_GPL vmlinux 0xc184abd3 i2c_dw_probe_master +EXPORT_SYMBOL_GPL vmlinux 0xc1874ee8 gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0xc19e3661 irq_create_of_mapping +EXPORT_SYMBOL_GPL vmlinux 0xc1c860ec syscon_regmap_lookup_by_phandle_optional EXPORT_SYMBOL_GPL vmlinux 0xc1dce028 k3_udma_glue_reset_tx_chn -EXPORT_SYMBOL_GPL vmlinux 0xc1ed8ff1 fsl_mc_bus_dpci_type -EXPORT_SYMBOL_GPL vmlinux 0xc1f3c745 dev_pm_qos_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0xc1f91812 dev_pm_domain_detach -EXPORT_SYMBOL_GPL vmlinux 0xc1fcc215 acpi_dma_request_slave_chan_by_index -EXPORT_SYMBOL_GPL vmlinux 0xc2008491 generic_online_page -EXPORT_SYMBOL_GPL vmlinux 0xc20d7f30 tty_port_tty_wakeup -EXPORT_SYMBOL_GPL vmlinux 0xc21828e5 vp_modern_queue_vector +EXPORT_SYMBOL_GPL vmlinux 0xc20ce10d extcon_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc211e44c crypto_stats_skcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0xc22218e1 of_devfreq_cooling_register EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases +EXPORT_SYMBOL_GPL vmlinux 0xc22b4e67 pm_genpd_remove +EXPORT_SYMBOL_GPL vmlinux 0xc23770ff iommu_fwspec_add_ids EXPORT_SYMBOL_GPL vmlinux 0xc2472388 tegra210_clk_emc_update_setting -EXPORT_SYMBOL_GPL vmlinux 0xc24b4fe8 dev_pm_opp_get_max_transition_latency -EXPORT_SYMBOL_GPL vmlinux 0xc24d87ca blk_rq_prep_clone -EXPORT_SYMBOL_GPL vmlinux 0xc24f5b66 tty_standard_install -EXPORT_SYMBOL_GPL vmlinux 0xc256dffd devm_serdev_device_open +EXPORT_SYMBOL_GPL vmlinux 0xc2481458 serial8250_get_port EXPORT_SYMBOL_GPL vmlinux 0xc25b8971 hv_remove_crash_handler +EXPORT_SYMBOL_GPL vmlinux 0xc264161a crypto_alloc_rng EXPORT_SYMBOL_GPL vmlinux 0xc2692173 wakeup_sources_read_lock -EXPORT_SYMBOL_GPL vmlinux 0xc26fa6de clockevent_delta2ns -EXPORT_SYMBOL_GPL vmlinux 0xc2730355 usb_autopm_put_interface_no_suspend -EXPORT_SYMBOL_GPL vmlinux 0xc27bba97 devm_clk_hw_get_clk -EXPORT_SYMBOL_GPL vmlinux 0xc27cdb84 sched_trace_rq_cpu_capacity +EXPORT_SYMBOL_GPL vmlinux 0xc27bea5e nvmem_cell_read_u32 +EXPORT_SYMBOL_GPL vmlinux 0xc27c2b0a make_device_exclusive_range +EXPORT_SYMBOL_GPL vmlinux 0xc28481ad device_wakeup_disable EXPORT_SYMBOL_GPL vmlinux 0xc289e46d cpufreq_generic_frequency_table_verify -EXPORT_SYMBOL_GPL vmlinux 0xc29a78b3 spi_take_timestamp_post +EXPORT_SYMBOL_GPL vmlinux 0xc29474f3 mm_kobj +EXPORT_SYMBOL_GPL vmlinux 0xc2987e28 __vfs_removexattr_noperm EXPORT_SYMBOL_GPL vmlinux 0xc2a1cbaf __cpuhp_state_remove_instance EXPORT_SYMBOL_GPL vmlinux 0xc2a3e570 errata EXPORT_SYMBOL_GPL vmlinux 0xc2a814db tcp_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0xc2ad8e53 sk_msg_return +EXPORT_SYMBOL_GPL vmlinux 0xc2af1880 evm_verifyxattr +EXPORT_SYMBOL_GPL vmlinux 0xc2af8bcd phy_init EXPORT_SYMBOL_GPL vmlinux 0xc2b9773a __tracepoint_neigh_update_done -EXPORT_SYMBOL_GPL vmlinux 0xc2bc5775 gpiod_get_direction +EXPORT_SYMBOL_GPL vmlinux 0xc2c1ab37 usb_role_switch_register EXPORT_SYMBOL_GPL vmlinux 0xc2c1c427 perf_event_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xc2c8f506 spi_controller_dma_map_mem_op_data +EXPORT_SYMBOL_GPL vmlinux 0xc2d111d1 of_genpd_parse_idle_states EXPORT_SYMBOL_GPL vmlinux 0xc2d69ca6 gfn_to_pfn_memslot +EXPORT_SYMBOL_GPL vmlinux 0xc2da61a1 virtio_device_freeze EXPORT_SYMBOL_GPL vmlinux 0xc2de27ca hest_disable -EXPORT_SYMBOL_GPL vmlinux 0xc2fabdc6 device_initialize -EXPORT_SYMBOL_GPL vmlinux 0xc2fd32a3 of_pci_address_to_resource -EXPORT_SYMBOL_GPL vmlinux 0xc301ebc1 pci_cfg_access_trylock -EXPORT_SYMBOL_GPL vmlinux 0xc30e8944 dma_buf_detach -EXPORT_SYMBOL_GPL vmlinux 0xc30fe45f scsi_host_block -EXPORT_SYMBOL_GPL vmlinux 0xc31daeb6 gpiod_get_raw_value -EXPORT_SYMBOL_GPL vmlinux 0xc32d8520 bpf_trace_run6 -EXPORT_SYMBOL_GPL vmlinux 0xc32e9090 fixup_user_fault -EXPORT_SYMBOL_GPL vmlinux 0xc33bbe50 pci_epf_bind -EXPORT_SYMBOL_GPL vmlinux 0xc340774f ehci_suspend -EXPORT_SYMBOL_GPL vmlinux 0xc340c628 power_supply_changed +EXPORT_SYMBOL_GPL vmlinux 0xc2f0c574 hwspin_lock_get_id +EXPORT_SYMBOL_GPL vmlinux 0xc2f27e9a pci_restore_msi_state +EXPORT_SYMBOL_GPL vmlinux 0xc3039302 tty_buffer_lock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xc304b364 sata_scr_write_flush +EXPORT_SYMBOL_GPL vmlinux 0xc30ac83e kvm_put_kvm EXPORT_SYMBOL_GPL vmlinux 0xc340e246 zynqmp_pm_request_node +EXPORT_SYMBOL_GPL vmlinux 0xc34185d6 n_tty_inherit_ops EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object -EXPORT_SYMBOL_GPL vmlinux 0xc34f832c input_device_enabled -EXPORT_SYMBOL_GPL vmlinux 0xc35ff50b skcipher_walk_aead_decrypt -EXPORT_SYMBOL_GPL vmlinux 0xc36e6946 ata_link_online +EXPORT_SYMBOL_GPL vmlinux 0xc346095d netdev_is_rx_handler_busy +EXPORT_SYMBOL_GPL vmlinux 0xc34abbd4 bpf_map_inc +EXPORT_SYMBOL_GPL vmlinux 0xc350afdc meson_clk_dualdiv_ops +EXPORT_SYMBOL_GPL vmlinux 0xc35a78a5 pci_acpi_set_companion_lookup_hook EXPORT_SYMBOL_GPL vmlinux 0xc3708747 trace_vprintk -EXPORT_SYMBOL_GPL vmlinux 0xc378f9be __vfs_removexattr_noperm +EXPORT_SYMBOL_GPL vmlinux 0xc3740120 invalidate_inode_pages2_range EXPORT_SYMBOL_GPL vmlinux 0xc3805cd1 fs_ftype_to_dtype -EXPORT_SYMBOL_GPL vmlinux 0xc389d89f tcp_unregister_ulp -EXPORT_SYMBOL_GPL vmlinux 0xc38f040c restore_online_page_callback -EXPORT_SYMBOL_GPL vmlinux 0xc390744e fwnode_get_phy_node -EXPORT_SYMBOL_GPL vmlinux 0xc3941cbc ahci_do_hardreset -EXPORT_SYMBOL_GPL vmlinux 0xc39f45af skb_clone_tx_timestamp -EXPORT_SYMBOL_GPL vmlinux 0xc3b24891 __traceiter_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0xc38863fd ata_timing_compute +EXPORT_SYMBOL_GPL vmlinux 0xc38c7024 fwnode_get_next_available_child_node +EXPORT_SYMBOL_GPL vmlinux 0xc3a0a7d0 cpufreq_generic_attr +EXPORT_SYMBOL_GPL vmlinux 0xc3b251f2 ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0xc3b8c760 fuse_request_end EXPORT_SYMBOL_GPL vmlinux 0xc3c4c6cc hash_algo_name -EXPORT_SYMBOL_GPL vmlinux 0xc3cbffe6 __fsnotify_parent -EXPORT_SYMBOL_GPL vmlinux 0xc3d4002b usb_register_device_driver -EXPORT_SYMBOL_GPL vmlinux 0xc3d47202 crypto_register_scomp +EXPORT_SYMBOL_GPL vmlinux 0xc3c6e710 vfs_read +EXPORT_SYMBOL_GPL vmlinux 0xc3c76661 crypto_comp_compress +EXPORT_SYMBOL_GPL vmlinux 0xc3d83ab5 edac_device_handle_ue_count EXPORT_SYMBOL_GPL vmlinux 0xc3de65ff ring_buffer_bytes_cpu EXPORT_SYMBOL_GPL vmlinux 0xc3ea5305 iommu_default_passthrough +EXPORT_SYMBOL_GPL vmlinux 0xc3ebdf10 pci_disable_pasid +EXPORT_SYMBOL_GPL vmlinux 0xc3ee9618 iomap_finish_ioends +EXPORT_SYMBOL_GPL vmlinux 0xc40dc1b7 devm_tegra_core_dev_init_opp_table +EXPORT_SYMBOL_GPL vmlinux 0xc4209d1e tegra_bpmp_transfer +EXPORT_SYMBOL_GPL vmlinux 0xc42329ee cpufreq_generic_init EXPORT_SYMBOL_GPL vmlinux 0xc428068d sata_deb_timing_long -EXPORT_SYMBOL_GPL vmlinux 0xc42c37e6 pci_epf_free_space -EXPORT_SYMBOL_GPL vmlinux 0xc4307e0d pci_epc_raise_irq -EXPORT_SYMBOL_GPL vmlinux 0xc4480b25 iomap_dio_rw +EXPORT_SYMBOL_GPL vmlinux 0xc42c27f7 ata_bmdma_port_start +EXPORT_SYMBOL_GPL vmlinux 0xc444a39c ata_sas_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xc448c679 spi_bus_unlock +EXPORT_SYMBOL_GPL vmlinux 0xc451dc1d __regmap_init_mmio_clk EXPORT_SYMBOL_GPL vmlinux 0xc454fc7b twl_get_type -EXPORT_SYMBOL_GPL vmlinux 0xc4575175 alarmtimer_get_rtcdev -EXPORT_SYMBOL_GPL vmlinux 0xc4581314 phy_reset EXPORT_SYMBOL_GPL vmlinux 0xc45e246f housekeeping_test_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc46053d4 k3_ringacc_ring_cfg EXPORT_SYMBOL_GPL vmlinux 0xc46324f6 dynevent_create -EXPORT_SYMBOL_GPL vmlinux 0xc4662479 kvm_unmap_gfn -EXPORT_SYMBOL_GPL vmlinux 0xc468af6e crypto_grab_akcipher EXPORT_SYMBOL_GPL vmlinux 0xc471c67a twl4030_audio_disable_resource -EXPORT_SYMBOL_GPL vmlinux 0xc47ae9e2 fwnode_property_get_reference_args -EXPORT_SYMBOL_GPL vmlinux 0xc482ebc9 usb_set_device_state -EXPORT_SYMBOL_GPL vmlinux 0xc48546c6 hwspin_lock_free +EXPORT_SYMBOL_GPL vmlinux 0xc47a2440 clk_hw_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc486ff34 sync_page_io +EXPORT_SYMBOL_GPL vmlinux 0xc48a95b2 icc_node_create EXPORT_SYMBOL_GPL vmlinux 0xc48b7ccf ata_mode_string -EXPORT_SYMBOL_GPL vmlinux 0xc48ca25a tty_buffer_unlock_exclusive -EXPORT_SYMBOL_GPL vmlinux 0xc490a898 device_link_add -EXPORT_SYMBOL_GPL vmlinux 0xc4938ca0 usb_role_switch_register EXPORT_SYMBOL_GPL vmlinux 0xc4a31146 rdma_cgrp_subsys_on_dfl_key EXPORT_SYMBOL_GPL vmlinux 0xc4a72936 trusted_tpm_send EXPORT_SYMBOL_GPL vmlinux 0xc4b5a900 synchronize_srcu_expedited -EXPORT_SYMBOL_GPL vmlinux 0xc4d3811b ipv6_bpf_stub -EXPORT_SYMBOL_GPL vmlinux 0xc4dac727 dev_attr_link_power_management_policy -EXPORT_SYMBOL_GPL vmlinux 0xc4ebc495 wb_writeout_inc +EXPORT_SYMBOL_GPL vmlinux 0xc4b92b17 phy_set_mode_ext +EXPORT_SYMBOL_GPL vmlinux 0xc4d5882c mtk_eint_find_irq +EXPORT_SYMBOL_GPL vmlinux 0xc4de0ea3 br_ip6_fragment +EXPORT_SYMBOL_GPL vmlinux 0xc4f06c30 hwspin_lock_unregister EXPORT_SYMBOL_GPL vmlinux 0xc4f0da12 ktime_get_with_offset -EXPORT_SYMBOL_GPL vmlinux 0xc4f459cd gpiochip_irq_domain_activate -EXPORT_SYMBOL_GPL vmlinux 0xc4f65bf7 param_set_bool_enable_only -EXPORT_SYMBOL_GPL vmlinux 0xc4f95d27 clk_register_hisi_phase -EXPORT_SYMBOL_GPL vmlinux 0xc503f690 sk_set_peek_off -EXPORT_SYMBOL_GPL vmlinux 0xc508eeaa regmap_field_read -EXPORT_SYMBOL_GPL vmlinux 0xc50c1781 spi_replace_transfers +EXPORT_SYMBOL_GPL vmlinux 0xc4f7833e of_clk_src_onecell_get +EXPORT_SYMBOL_GPL vmlinux 0xc4f870c1 ata_bmdma_stop +EXPORT_SYMBOL_GPL vmlinux 0xc4f905a3 kvm_vcpu_wake_up +EXPORT_SYMBOL_GPL vmlinux 0xc502400b dw_pcie_upconfig_setup EXPORT_SYMBOL_GPL vmlinux 0xc51450c6 imx_ccm_lock -EXPORT_SYMBOL_GPL vmlinux 0xc516fe21 extcon_set_property_capability -EXPORT_SYMBOL_GPL vmlinux 0xc51e341c perf_pmu_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc51d3e10 rio_unmap_outb_region +EXPORT_SYMBOL_GPL vmlinux 0xc524f401 ata_bmdma_port_intr +EXPORT_SYMBOL_GPL vmlinux 0xc542188a root_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc5453825 gpiochip_lock_as_irq EXPORT_SYMBOL_GPL vmlinux 0xc55ff962 phy_basic_t1_features_array EXPORT_SYMBOL_GPL vmlinux 0xc5604800 clk_set_rate_exclusive -EXPORT_SYMBOL_GPL vmlinux 0xc565ac80 power_supply_register_no_ws -EXPORT_SYMBOL_GPL vmlinux 0xc56782b5 __kthread_init_worker 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 0xc57838a1 tun_get_socket -EXPORT_SYMBOL_GPL vmlinux 0xc57c52e2 battery_hook_register +EXPORT_SYMBOL_GPL vmlinux 0xc57a9a4d k3_udma_glue_request_tx_chn +EXPORT_SYMBOL_GPL vmlinux 0xc57b2082 dev_pm_opp_is_turbo +EXPORT_SYMBOL_GPL vmlinux 0xc57dc79e fat_search_long +EXPORT_SYMBOL_GPL vmlinux 0xc57ea406 sata_link_scr_lpm EXPORT_SYMBOL_GPL vmlinux 0xc58a3ee6 icc_node_destroy -EXPORT_SYMBOL_GPL vmlinux 0xc59374d3 divider_recalc_rate -EXPORT_SYMBOL_GPL vmlinux 0xc59eb69a usb_hub_clear_tt_buffer +EXPORT_SYMBOL_GPL vmlinux 0xc58cfe9f ahci_save_initial_config +EXPORT_SYMBOL_GPL vmlinux 0xc59cdf8e free_vm_area EXPORT_SYMBOL_GPL vmlinux 0xc5a5c678 uart_parse_earlycon -EXPORT_SYMBOL_GPL vmlinux 0xc5b0f310 mbox_controller_register -EXPORT_SYMBOL_GPL vmlinux 0xc5ca47de serdev_device_remove -EXPORT_SYMBOL_GPL vmlinux 0xc5cdc09b crypto_hash_alg_has_setkey -EXPORT_SYMBOL_GPL vmlinux 0xc5d9deea devm_regmap_field_bulk_alloc -EXPORT_SYMBOL_GPL vmlinux 0xc5f05f4e security_kernel_read_file -EXPORT_SYMBOL_GPL vmlinux 0xc5f0caeb kvm_read_guest_page -EXPORT_SYMBOL_GPL vmlinux 0xc5f1ee88 pci_user_read_config_dword -EXPORT_SYMBOL_GPL vmlinux 0xc5f56c40 decrypt_blob -EXPORT_SYMBOL_GPL vmlinux 0xc5f70b3f pm_runtime_no_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xc5fbb59e dpbp_enable +EXPORT_SYMBOL_GPL vmlinux 0xc5ab9b0f led_trigger_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc5aeaec3 trace_event_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0xc5b31cc2 fwnode_graph_get_remote_endpoint +EXPORT_SYMBOL_GPL vmlinux 0xc5bea55f usb_urb_ep_type_check +EXPORT_SYMBOL_GPL vmlinux 0xc5ce97df irq_domain_add_legacy +EXPORT_SYMBOL_GPL vmlinux 0xc5d0b77e phy_put +EXPORT_SYMBOL_GPL vmlinux 0xc5d55d23 usb_hcd_unmap_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0xc5daa62b sdio_writeb +EXPORT_SYMBOL_GPL vmlinux 0xc5e8e23c regulator_get_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0xc5fdf490 perf_event_update_userpage +EXPORT_SYMBOL_GPL vmlinux 0xc60e020c __kthread_init_worker EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier -EXPORT_SYMBOL_GPL vmlinux 0xc61c6adf xhci_ext_cap_init EXPORT_SYMBOL_GPL vmlinux 0xc621bb43 sched_trace_rd_span -EXPORT_SYMBOL_GPL vmlinux 0xc622607f devm_ti_sci_get_of_resource -EXPORT_SYMBOL_GPL vmlinux 0xc629bb18 dev_pm_opp_set_sharing_cpus -EXPORT_SYMBOL_GPL vmlinux 0xc63e1d8a devlink_flash_update_status_notify +EXPORT_SYMBOL_GPL vmlinux 0xc62592dc ata_sff_qc_fill_rtf +EXPORT_SYMBOL_GPL vmlinux 0xc639c5fe pci_probe_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0xc63be29d sysfs_add_file_to_group +EXPORT_SYMBOL_GPL vmlinux 0xc6505a63 dev_pm_opp_enable EXPORT_SYMBOL_GPL vmlinux 0xc6572a90 xenbus_read_unsigned -EXPORT_SYMBOL_GPL vmlinux 0xc65dc455 iommu_uapi_sva_bind_gpasid +EXPORT_SYMBOL_GPL vmlinux 0xc6572da8 dm_internal_suspend_noflush EXPORT_SYMBOL_GPL vmlinux 0xc66019cc xen_resume_notifier_unregister EXPORT_SYMBOL_GPL vmlinux 0xc662ecda __tracepoint_br_fdb_external_learn_add +EXPORT_SYMBOL_GPL vmlinux 0xc664fef2 alloc_io_pgtable_ops EXPORT_SYMBOL_GPL vmlinux 0xc66b77b1 iommu_group_set_iommudata -EXPORT_SYMBOL_GPL vmlinux 0xc6710533 uprobe_unregister EXPORT_SYMBOL_GPL vmlinux 0xc672a391 irq_work_sync +EXPORT_SYMBOL_GPL vmlinux 0xc676abe6 tty_port_tty_wakeup EXPORT_SYMBOL_GPL vmlinux 0xc6779093 ring_buffer_record_enable -EXPORT_SYMBOL_GPL vmlinux 0xc68b6256 acpi_create_platform_device -EXPORT_SYMBOL_GPL vmlinux 0xc694e586 mmu_notifier_range_update_to_read_only -EXPORT_SYMBOL_GPL vmlinux 0xc695f83b apply_to_page_range +EXPORT_SYMBOL_GPL vmlinux 0xc6810450 perf_trace_run_bpf_submit EXPORT_SYMBOL_GPL vmlinux 0xc697b0f7 nvmem_device_read -EXPORT_SYMBOL_GPL vmlinux 0xc699c247 perf_event_enable EXPORT_SYMBOL_GPL vmlinux 0xc69b7ee5 zs_destroy_pool -EXPORT_SYMBOL_GPL vmlinux 0xc6a03518 badblocks_exit -EXPORT_SYMBOL_GPL vmlinux 0xc6a1a851 __traceiter_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0xc69de448 regulator_set_ramp_delay_regmap EXPORT_SYMBOL_GPL vmlinux 0xc6a4a872 __clk_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0xc6a7e212 iommu_device_register -EXPORT_SYMBOL_GPL vmlinux 0xc6c7ef69 amba_ahb_device_add_res +EXPORT_SYMBOL_GPL vmlinux 0xc6b9b22b split_page +EXPORT_SYMBOL_GPL vmlinux 0xc6ba96e5 __traceiter_pelt_rt_tp +EXPORT_SYMBOL_GPL vmlinux 0xc6d781de regmap_can_raw_write EXPORT_SYMBOL_GPL vmlinux 0xc6def34b gnttab_empty_grant_references +EXPORT_SYMBOL_GPL vmlinux 0xc6e59040 dpbp_get_attributes EXPORT_SYMBOL_GPL vmlinux 0xc6e5bcf3 linear_range_get_selector_within -EXPORT_SYMBOL_GPL vmlinux 0xc6ea3ccf ata_pci_device_resume -EXPORT_SYMBOL_GPL vmlinux 0xc6ee7c26 virtqueue_detach_unused_buf -EXPORT_SYMBOL_GPL vmlinux 0xc6f66e85 kthread_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xc6e8ff25 tegra_xusb_padctl_legacy_remove +EXPORT_SYMBOL_GPL vmlinux 0xc6eb2f88 xen_unmap_domain_gfn_range +EXPORT_SYMBOL_GPL vmlinux 0xc6ee4704 dma_buf_fd +EXPORT_SYMBOL_GPL vmlinux 0xc6f9e44c pci_common_swizzle +EXPORT_SYMBOL_GPL vmlinux 0xc6fc22d5 fwnode_get_named_gpiod EXPORT_SYMBOL_GPL vmlinux 0xc7061ef3 iova_cache_put -EXPORT_SYMBOL_GPL vmlinux 0xc71dc966 mtk_pinconf_adv_pull_get +EXPORT_SYMBOL_GPL vmlinux 0xc707ae10 mmc_regulator_get_supply +EXPORT_SYMBOL_GPL vmlinux 0xc71832bd serial8250_rx_dma_flush EXPORT_SYMBOL_GPL vmlinux 0xc71e64a9 snmp_get_cpu_field -EXPORT_SYMBOL_GPL vmlinux 0xc720a665 blk_mq_sched_mark_restart_hctx -EXPORT_SYMBOL_GPL vmlinux 0xc72e9dbc rio_release_outb_mbox -EXPORT_SYMBOL_GPL vmlinux 0xc738f95f mtk_pinconf_bias_set_rev1 -EXPORT_SYMBOL_GPL vmlinux 0xc73c641c tracing_snapshot_cond_enable -EXPORT_SYMBOL_GPL vmlinux 0xc749cc3f hwmon_device_register_with_groups -EXPORT_SYMBOL_GPL vmlinux 0xc74c5aff phy_select_page -EXPORT_SYMBOL_GPL vmlinux 0xc74f873d of_dma_controller_register -EXPORT_SYMBOL_GPL vmlinux 0xc750c669 tegra_bpmp_mrq_is_supported -EXPORT_SYMBOL_GPL vmlinux 0xc7643e92 dw_pcie_wait_for_link -EXPORT_SYMBOL_GPL vmlinux 0xc76e63c9 devfreq_cooling_em_register +EXPORT_SYMBOL_GPL vmlinux 0xc71fc2f1 i2c_generic_scl_recovery +EXPORT_SYMBOL_GPL vmlinux 0xc7225d80 aead_exit_geniv +EXPORT_SYMBOL_GPL vmlinux 0xc72351ff xenbus_match +EXPORT_SYMBOL_GPL vmlinux 0xc7496851 device_for_each_child +EXPORT_SYMBOL_GPL vmlinux 0xc75f4c1c genphy_c45_check_and_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0xc763f39b irq_chip_mask_parent +EXPORT_SYMBOL_GPL vmlinux 0xc76e6f96 tps6586x_reads EXPORT_SYMBOL_GPL vmlinux 0xc76f8048 __sbitmap_queue_get -EXPORT_SYMBOL_GPL vmlinux 0xc77a2bee wm831x_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0xc78101a4 tty_port_register_device_attr_serdev -EXPORT_SYMBOL_GPL vmlinux 0xc781a98d hisi_uncore_pmu_read +EXPORT_SYMBOL_GPL vmlinux 0xc77e8062 acpi_create_platform_device +EXPORT_SYMBOL_GPL vmlinux 0xc77f6556 of_icc_get_by_index EXPORT_SYMBOL_GPL vmlinux 0xc7856e74 __wake_up_locked_sync_key -EXPORT_SYMBOL_GPL vmlinux 0xc78cbf90 devm_ioremap_uc -EXPORT_SYMBOL_GPL vmlinux 0xc7915786 perf_event_refresh +EXPORT_SYMBOL_GPL vmlinux 0xc78ea85c iomap_dio_iopoll +EXPORT_SYMBOL_GPL vmlinux 0xc7927c24 shmem_truncate_range EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch EXPORT_SYMBOL_GPL vmlinux 0xc7a7e770 clk_bulk_enable -EXPORT_SYMBOL_GPL vmlinux 0xc7ad89c5 rio_mport_write_config_8 -EXPORT_SYMBOL_GPL vmlinux 0xc7c05fc5 blk_mq_alloc_request_hctx +EXPORT_SYMBOL_GPL vmlinux 0xc7ae96eb spi_finalize_current_transfer +EXPORT_SYMBOL_GPL vmlinux 0xc7b1a52e pwm_request EXPORT_SYMBOL_GPL vmlinux 0xc7c23ff0 xenbus_exists -EXPORT_SYMBOL_GPL vmlinux 0xc7e0629d badblocks_store +EXPORT_SYMBOL_GPL vmlinux 0xc7e2d7f3 vp_modern_remove EXPORT_SYMBOL_GPL vmlinux 0xc7e64fc2 asn1_encode_integer -EXPORT_SYMBOL_GPL vmlinux 0xc7ea10fd tty_get_icount +EXPORT_SYMBOL_GPL vmlinux 0xc7e693cf ping_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0xc7f70eab fwnode_get_next_child_node EXPORT_SYMBOL_GPL vmlinux 0xc7fa4aa9 kobj_ns_drop -EXPORT_SYMBOL_GPL vmlinux 0xc7fbd982 blk_queue_write_cache -EXPORT_SYMBOL_GPL vmlinux 0xc8078447 led_compose_name -EXPORT_SYMBOL_GPL vmlinux 0xc820f718 dev_pm_opp_unregister_set_opp_helper +EXPORT_SYMBOL_GPL vmlinux 0xc7fdba69 inverse_translate +EXPORT_SYMBOL_GPL vmlinux 0xc81f1539 ipv6_dup_options +EXPORT_SYMBOL_GPL vmlinux 0xc8215db2 tegra_bpmp_get EXPORT_SYMBOL_GPL vmlinux 0xc82b3a88 __SCK__tp_func_rpm_resume EXPORT_SYMBOL_GPL vmlinux 0xc82c721f klist_remove -EXPORT_SYMBOL_GPL vmlinux 0xc83679a0 ti_sci_inta_msi_domain_alloc_irqs -EXPORT_SYMBOL_GPL vmlinux 0xc83c5aa0 kvm_vcpu_read_guest_atomic -EXPORT_SYMBOL_GPL vmlinux 0xc841fe9c md_allow_write -EXPORT_SYMBOL_GPL vmlinux 0xc84affd7 sdio_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0xc84b44de extcon_get_edev_name +EXPORT_SYMBOL_GPL vmlinux 0xc8330573 gpiochip_line_is_persistent +EXPORT_SYMBOL_GPL vmlinux 0xc8341a44 devm_of_platform_populate +EXPORT_SYMBOL_GPL vmlinux 0xc84c8350 bpf_prog_sub +EXPORT_SYMBOL_GPL vmlinux 0xc84cbc14 devlink_resource_occ_get_register +EXPORT_SYMBOL_GPL vmlinux 0xc85252aa crypto_aead_setkey EXPORT_SYMBOL_GPL vmlinux 0xc8594d3d reset_control_acquire -EXPORT_SYMBOL_GPL vmlinux 0xc8711e0d usb_put_hcd -EXPORT_SYMBOL_GPL vmlinux 0xc873af61 regulator_list_voltage_pickable_linear_range +EXPORT_SYMBOL_GPL vmlinux 0xc859fa58 __traceiter_pelt_thermal_tp +EXPORT_SYMBOL_GPL vmlinux 0xc8643d50 dm_hold +EXPORT_SYMBOL_GPL vmlinux 0xc876e5f0 __rio_local_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0xc87d26e4 of_phandle_iterator_init EXPORT_SYMBOL_GPL vmlinux 0xc87dd725 k3_udma_glue_pop_rx_chn EXPORT_SYMBOL_GPL vmlinux 0xc87fb025 xas_get_mark -EXPORT_SYMBOL_GPL vmlinux 0xc882d633 fscrypt_ioctl_remove_key_all_users -EXPORT_SYMBOL_GPL vmlinux 0xc887d6ba init_dummy_netdev -EXPORT_SYMBOL_GPL vmlinux 0xc88b1e11 security_inode_create -EXPORT_SYMBOL_GPL vmlinux 0xc890d6fd of_mpc8xxx_spi_probe -EXPORT_SYMBOL_GPL vmlinux 0xc894db56 extcon_set_property_sync -EXPORT_SYMBOL_GPL vmlinux 0xc899d57e bgmac_phy_connect_direct -EXPORT_SYMBOL_GPL vmlinux 0xc89c825b crypto_mod_get -EXPORT_SYMBOL_GPL vmlinux 0xc8a01a0e gpiod_get_array_value -EXPORT_SYMBOL_GPL vmlinux 0xc8a2f7f9 devlink_dpipe_headers_register -EXPORT_SYMBOL_GPL vmlinux 0xc8a4109a device_register -EXPORT_SYMBOL_GPL vmlinux 0xc8b37ac4 md_bitmap_resize -EXPORT_SYMBOL_GPL vmlinux 0xc8b6154e thermal_zone_of_sensor_register -EXPORT_SYMBOL_GPL vmlinux 0xc8c1baa5 crypto_ahash_final -EXPORT_SYMBOL_GPL vmlinux 0xc8cce25e gpiochip_generic_free -EXPORT_SYMBOL_GPL vmlinux 0xc8d9d89c pwm_adjust_config -EXPORT_SYMBOL_GPL vmlinux 0xc8da9506 devm_extcon_dev_free -EXPORT_SYMBOL_GPL vmlinux 0xc8ddb61b mtk_pinconf_bias_disable_get +EXPORT_SYMBOL_GPL vmlinux 0xc88ffea7 iommu_domain_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc8947366 dm_bio_from_per_bio_data +EXPORT_SYMBOL_GPL vmlinux 0xc8988989 xenbus_dev_suspend +EXPORT_SYMBOL_GPL vmlinux 0xc89af6f7 devm_namespace_enable +EXPORT_SYMBOL_GPL vmlinux 0xc8b9e367 trace_event_ignore_this_pid +EXPORT_SYMBOL_GPL vmlinux 0xc8bb8765 ata_sff_softreset EXPORT_SYMBOL_GPL vmlinux 0xc8ddd5b5 kstrdup_quotable -EXPORT_SYMBOL_GPL vmlinux 0xc8eb3777 dmaengine_desc_get_metadata_ptr -EXPORT_SYMBOL_GPL vmlinux 0xc8f6b4c8 class_interface_register -EXPORT_SYMBOL_GPL vmlinux 0xc8f8066b evm_inode_init_security -EXPORT_SYMBOL_GPL vmlinux 0xc91d183e gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0xc8e0cb47 pinctrl_select_default_state +EXPORT_SYMBOL_GPL vmlinux 0xc8e25aae dma_get_slave_caps +EXPORT_SYMBOL_GPL vmlinux 0xc8e6c4f5 acpi_register_gsi +EXPORT_SYMBOL_GPL vmlinux 0xc8f08072 spi_mem_dirmap_write EXPORT_SYMBOL_GPL vmlinux 0xc91fdf58 percpu_ref_is_zero -EXPORT_SYMBOL_GPL vmlinux 0xc92555db unregister_pernet_subsys -EXPORT_SYMBOL_GPL vmlinux 0xc9291476 dma_get_slave_caps -EXPORT_SYMBOL_GPL vmlinux 0xc92da693 skb_partial_csum_set -EXPORT_SYMBOL_GPL vmlinux 0xc932216c call_switchdev_notifiers EXPORT_SYMBOL_GPL vmlinux 0xc9345c0f digsig_verify EXPORT_SYMBOL_GPL vmlinux 0xc93ee1e7 usb_phy_roothub_init -EXPORT_SYMBOL_GPL vmlinux 0xc94743de irq_chip_get_parent_state +EXPORT_SYMBOL_GPL vmlinux 0xc942146b devm_mbox_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xc9437d9f dev_pm_put_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0xc9486389 phy_led_triggers_register +EXPORT_SYMBOL_GPL vmlinux 0xc94f8d86 sfp_register_socket +EXPORT_SYMBOL_GPL vmlinux 0xc955964e ata_dev_disable EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist EXPORT_SYMBOL_GPL vmlinux 0xc9641b48 visitor32 -EXPORT_SYMBOL_GPL vmlinux 0xc9754b37 dev_pm_opp_find_level_ceil -EXPORT_SYMBOL_GPL vmlinux 0xc9788699 __skb_tstamp_tx -EXPORT_SYMBOL_GPL vmlinux 0xc97b5da9 pci_user_write_config_dword +EXPORT_SYMBOL_GPL vmlinux 0xc96a1481 ip6_pol_route +EXPORT_SYMBOL_GPL vmlinux 0xc974213d device_link_add +EXPORT_SYMBOL_GPL vmlinux 0xc975980e wwan_unregister_ops EXPORT_SYMBOL_GPL vmlinux 0xc9827693 __bpf_call_base -EXPORT_SYMBOL_GPL vmlinux 0xc9a99488 fscrypt_fname_siphash -EXPORT_SYMBOL_GPL vmlinux 0xc9baf6e5 netdev_set_default_ethtool_ops -EXPORT_SYMBOL_GPL vmlinux 0xc9cb46e1 zap_vma_ptes -EXPORT_SYMBOL_GPL vmlinux 0xc9d2e5f9 crypto_register_instance -EXPORT_SYMBOL_GPL vmlinux 0xc9d3650e __page_mapcount +EXPORT_SYMBOL_GPL vmlinux 0xc994e2de irq_domain_set_hwirq_and_chip +EXPORT_SYMBOL_GPL vmlinux 0xc9aee071 crypto_stats_akcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0xc9b97dc8 shash_free_singlespawn_instance +EXPORT_SYMBOL_GPL vmlinux 0xc9c76e0f of_thermal_is_trip_valid +EXPORT_SYMBOL_GPL vmlinux 0xc9ca40d7 rio_request_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0xc9e66cd1 sysfs_unbreak_active_protection +EXPORT_SYMBOL_GPL vmlinux 0xc9e7ebd5 usb_hcd_map_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0xc9e832da acpi_subsys_complete EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu -EXPORT_SYMBOL_GPL vmlinux 0xc9f442f7 devm_led_classdev_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc9f67e56 skb_zerocopy_iter_stream -EXPORT_SYMBOL_GPL vmlinux 0xc9f8e2e9 vp_modern_set_status +EXPORT_SYMBOL_GPL vmlinux 0xc9f20b6b tegra_mc_probe_device +EXPORT_SYMBOL_GPL vmlinux 0xc9f83f56 devm_bitmap_alloc EXPORT_SYMBOL_GPL vmlinux 0xc9fb00f7 pl320_ipc_transmit -EXPORT_SYMBOL_GPL vmlinux 0xc9fc673d get_net_ns EXPORT_SYMBOL_GPL vmlinux 0xc9fd634a usb_role_switch_put -EXPORT_SYMBOL_GPL vmlinux 0xca164d74 pci_msi_create_irq_domain -EXPORT_SYMBOL_GPL vmlinux 0xca214d25 devm_regulator_get -EXPORT_SYMBOL_GPL vmlinux 0xca270505 crypto_unregister_aeads -EXPORT_SYMBOL_GPL vmlinux 0xca454395 ip6_redirect +EXPORT_SYMBOL_GPL vmlinux 0xca0ee78a lwtstate_free +EXPORT_SYMBOL_GPL vmlinux 0xca1a479b device_attach +EXPORT_SYMBOL_GPL vmlinux 0xca2e172d spi_new_device +EXPORT_SYMBOL_GPL vmlinux 0xca33438a disk_uevent +EXPORT_SYMBOL_GPL vmlinux 0xca378990 wwan_create_port +EXPORT_SYMBOL_GPL vmlinux 0xca4022bd auxiliary_device_init EXPORT_SYMBOL_GPL vmlinux 0xca454a34 vt_get_leds -EXPORT_SYMBOL_GPL vmlinux 0xca458bd5 phy_start_machine -EXPORT_SYMBOL_GPL vmlinux 0xca464e96 device_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0xca565b8c debugfs_create_file -EXPORT_SYMBOL_GPL vmlinux 0xca5bd123 regulator_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0xca5c78cd debugfs_create_devm_seqfile -EXPORT_SYMBOL_GPL vmlinux 0xca6dea90 lwtunnel_output +EXPORT_SYMBOL_GPL vmlinux 0xca4718f6 i2c_new_scanned_device +EXPORT_SYMBOL_GPL vmlinux 0xca68d0eb regulator_disable +EXPORT_SYMBOL_GPL vmlinux 0xca68fdef fw_devlink_purge_absent_suppliers +EXPORT_SYMBOL_GPL vmlinux 0xca7207f9 pci_store_saved_state EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop -EXPORT_SYMBOL_GPL vmlinux 0xca90d1ef __dax_driver_register +EXPORT_SYMBOL_GPL vmlinux 0xca846eb1 __xdp_build_skb_from_frame +EXPORT_SYMBOL_GPL vmlinux 0xca8f39e4 __devm_clk_hw_register_divider EXPORT_SYMBOL_GPL vmlinux 0xca9a1d5e ring_buffer_free -EXPORT_SYMBOL_GPL vmlinux 0xca9fa3b2 tc3589x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xcaab0643 ata_bmdma_irq_clear +EXPORT_SYMBOL_GPL vmlinux 0xcaab92c2 vfs_setlease +EXPORT_SYMBOL_GPL vmlinux 0xcab27594 msg_zerocopy_put_abort +EXPORT_SYMBOL_GPL vmlinux 0xcab848f6 bus_find_device +EXPORT_SYMBOL_GPL vmlinux 0xcabbf1ed uart_get_rs485_mode EXPORT_SYMBOL_GPL vmlinux 0xcabe04de cpuidle_resume_and_unlock -EXPORT_SYMBOL_GPL vmlinux 0xcac892c6 class_interface_unregister -EXPORT_SYMBOL_GPL vmlinux 0xcad199d4 pm_wakeup_ws_event -EXPORT_SYMBOL_GPL vmlinux 0xcae278ed transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcac02edd pwm_adjust_config +EXPORT_SYMBOL_GPL vmlinux 0xcac937c7 irq_setup_alt_chip +EXPORT_SYMBOL_GPL vmlinux 0xcac95262 pid_nr_ns +EXPORT_SYMBOL_GPL vmlinux 0xcacfac8e seg6_do_srh_inline +EXPORT_SYMBOL_GPL vmlinux 0xcadf5c64 of_devfreq_cooling_register_power +EXPORT_SYMBOL_GPL vmlinux 0xcae76976 serdev_controller_remove EXPORT_SYMBOL_GPL vmlinux 0xcae7ce5d fsl_mc_get_version EXPORT_SYMBOL_GPL vmlinux 0xcaf1d958 evtchn_get -EXPORT_SYMBOL_GPL vmlinux 0xcaf41e49 irq_domain_create_legacy -EXPORT_SYMBOL_GPL vmlinux 0xcafb6dc7 pci_scan_child_bus -EXPORT_SYMBOL_GPL vmlinux 0xcb04d325 ata_sff_pause -EXPORT_SYMBOL_GPL vmlinux 0xcb06f936 meson_clk_cpu_dyndiv_ops -EXPORT_SYMBOL_GPL vmlinux 0xcb11fea7 crypto_spawn_tfm2 +EXPORT_SYMBOL_GPL vmlinux 0xcb154201 balloon_page_dequeue EXPORT_SYMBOL_GPL vmlinux 0xcb15eee9 sdhci_pci_get_data -EXPORT_SYMBOL_GPL vmlinux 0xcb216a42 security_path_link EXPORT_SYMBOL_GPL vmlinux 0xcb2bfe2b nvmem_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xcb381bee xhci_drop_endpoint -EXPORT_SYMBOL_GPL vmlinux 0xcb3fb9c9 unregister_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xcb2c5107 ata_bmdma_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0xcb47655a platform_device_put EXPORT_SYMBOL_GPL vmlinux 0xcb561441 mem_dump_obj -EXPORT_SYMBOL_GPL vmlinux 0xcb588d56 msg_zerocopy_callback -EXPORT_SYMBOL_GPL vmlinux 0xcb6ec1a0 rio_register_mport -EXPORT_SYMBOL_GPL vmlinux 0xcb8f4d10 devm_fwnode_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0xcb922b02 pinctrl_utils_reserve_map -EXPORT_SYMBOL_GPL vmlinux 0xcbb449dc devm_gpiod_get_array_optional -EXPORT_SYMBOL_GPL vmlinux 0xcbb846e5 __sync_filesystem -EXPORT_SYMBOL_GPL vmlinux 0xcbcb73b6 add_swap_extent +EXPORT_SYMBOL_GPL vmlinux 0xcb6b9a7b crypto_inst_setname +EXPORT_SYMBOL_GPL vmlinux 0xcb768214 cpufreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0xcbb7c7dd ipv4_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xcbc461b5 subsys_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0xcbc60d36 pci_ats_supported +EXPORT_SYMBOL_GPL vmlinux 0xcbcae4fd devm_pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0xcbce0da0 sched_trace_cfs_rq_path EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages -EXPORT_SYMBOL_GPL vmlinux 0xcbe801c6 device_property_read_string -EXPORT_SYMBOL_GPL vmlinux 0xcbed5d93 cpufreq_cpu_get -EXPORT_SYMBOL_GPL vmlinux 0xcbf2031b pci_disable_ats -EXPORT_SYMBOL_GPL vmlinux 0xcc0231d2 mtk_mmsys_ddp_connect -EXPORT_SYMBOL_GPL vmlinux 0xcc0b7f24 regmap_noinc_read +EXPORT_SYMBOL_GPL vmlinux 0xcbe6b2d3 tpmm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0xcbf91c54 init_uts_ns +EXPORT_SYMBOL_GPL vmlinux 0xcc08a5aa trace_array_init_printk EXPORT_SYMBOL_GPL vmlinux 0xcc0fd0a7 k3_ringacc_ring_push_head -EXPORT_SYMBOL_GPL vmlinux 0xcc149b12 fuse_init_fs_context_submount -EXPORT_SYMBOL_GPL vmlinux 0xcc2128a6 xhci_get_ep_ctx -EXPORT_SYMBOL_GPL vmlinux 0xcc22cffa extcon_get_extcon_dev -EXPORT_SYMBOL_GPL vmlinux 0xcc27b867 param_set_uint_minmax -EXPORT_SYMBOL_GPL vmlinux 0xcc2b4870 of_property_read_variable_u8_array +EXPORT_SYMBOL_GPL vmlinux 0xcc168694 scsi_eh_ready_devs +EXPORT_SYMBOL_GPL vmlinux 0xcc26c86c sysfs_create_link EXPORT_SYMBOL_GPL vmlinux 0xcc2dbfd8 irq_domain_check_msi_remap -EXPORT_SYMBOL_GPL vmlinux 0xcc36be04 crypto_unregister_skciphers +EXPORT_SYMBOL_GPL vmlinux 0xcc384d8e elv_rqhash_del EXPORT_SYMBOL_GPL vmlinux 0xcc39c03e nvmem_unregister -EXPORT_SYMBOL_GPL vmlinux 0xcc6477d0 transport_destroy_device -EXPORT_SYMBOL_GPL vmlinux 0xcc6a935d bio_end_io_acct_remapped +EXPORT_SYMBOL_GPL vmlinux 0xcc61bf52 wakeup_source_add +EXPORT_SYMBOL_GPL vmlinux 0xcc659dae tun_get_socket +EXPORT_SYMBOL_GPL vmlinux 0xcc7e5e52 gpiochip_is_requested +EXPORT_SYMBOL_GPL vmlinux 0xcc87d1ab ata_qc_complete_multiple EXPORT_SYMBOL_GPL vmlinux 0xcc9268fc hwpoison_filter_enable EXPORT_SYMBOL_GPL vmlinux 0xcc935375 walk_iomem_res_desc -EXPORT_SYMBOL_GPL vmlinux 0xcca08a50 crypto_stats_decompress -EXPORT_SYMBOL_GPL vmlinux 0xccb42e5e rio_unregister_scan -EXPORT_SYMBOL_GPL vmlinux 0xccb81b42 rio_local_get_device_id -EXPORT_SYMBOL_GPL vmlinux 0xccc96b66 kernfs_put +EXPORT_SYMBOL_GPL vmlinux 0xcca8e73b sata_port_ops EXPORT_SYMBOL_GPL vmlinux 0xcccfb2fa sata_deb_timing_hotplug -EXPORT_SYMBOL_GPL vmlinux 0xccd16bc3 fwnode_graph_get_remote_port EXPORT_SYMBOL_GPL vmlinux 0xccd86806 ata_id_string -EXPORT_SYMBOL_GPL vmlinux 0xcce85aa7 strp_check_rcv +EXPORT_SYMBOL_GPL vmlinux 0xcce1fae1 hypervisor_kobj +EXPORT_SYMBOL_GPL vmlinux 0xccee751f da9052_adc_manual_read EXPORT_SYMBOL_GPL vmlinux 0xccf52bc9 sfp_upstream_start -EXPORT_SYMBOL_GPL vmlinux 0xccffe14c blk_queue_required_elevator_features -EXPORT_SYMBOL_GPL vmlinux 0xcd091640 cpuidle_register +EXPORT_SYMBOL_GPL vmlinux 0xccfc7ac8 raw_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0xcd12e989 handle_fasteoi_ack_irq +EXPORT_SYMBOL_GPL vmlinux 0xcd139c13 icc_provider_del +EXPORT_SYMBOL_GPL vmlinux 0xcd15b8f3 __traceiter_block_rq_insert +EXPORT_SYMBOL_GPL vmlinux 0xcd161242 get_pid_task +EXPORT_SYMBOL_GPL vmlinux 0xcd187c43 ata_bmdma_post_internal_cmd EXPORT_SYMBOL_GPL vmlinux 0xcd1c1a53 trace_seq_printf EXPORT_SYMBOL_GPL vmlinux 0xcd24e146 hash_digest_size -EXPORT_SYMBOL_GPL vmlinux 0xcd279c62 fuse_mount_remove -EXPORT_SYMBOL_GPL vmlinux 0xcd29572b switchdev_port_attr_set EXPORT_SYMBOL_GPL vmlinux 0xcd3e5c7c acpi_release_memory -EXPORT_SYMBOL_GPL vmlinux 0xcd4dbda4 regulator_map_voltage_ascend -EXPORT_SYMBOL_GPL vmlinux 0xcd5b111f __pm_relax -EXPORT_SYMBOL_GPL vmlinux 0xcd5befac fwnode_device_is_available -EXPORT_SYMBOL_GPL vmlinux 0xcd60103f devlink_param_driverinit_value_get +EXPORT_SYMBOL_GPL vmlinux 0xcd4daeb8 nf_checksum +EXPORT_SYMBOL_GPL vmlinux 0xcd5670df rockchip_clk_add_lookup +EXPORT_SYMBOL_GPL vmlinux 0xcd658210 synth_event_create EXPORT_SYMBOL_GPL vmlinux 0xcd6f2dc9 nf_log_buf_add -EXPORT_SYMBOL_GPL vmlinux 0xcd725592 debugfs_attr_write +EXPORT_SYMBOL_GPL vmlinux 0xcd740820 of_find_spi_device_by_node EXPORT_SYMBOL_GPL vmlinux 0xcd759b82 k3_ringacc_ring_reset -EXPORT_SYMBOL_GPL vmlinux 0xcd84c470 invalidate_inode_pages2_range +EXPORT_SYMBOL_GPL vmlinux 0xcd7e55fd crypto_shash_final +EXPORT_SYMBOL_GPL vmlinux 0xcd845ec4 devlink_port_type_eth_set +EXPORT_SYMBOL_GPL vmlinux 0xcd875adf xenbus_unmap_ring_vfree EXPORT_SYMBOL_GPL vmlinux 0xcd910be7 ti_sci_get_num_resources EXPORT_SYMBOL_GPL vmlinux 0xcd91b127 system_highpri_wq -EXPORT_SYMBOL_GPL vmlinux 0xcd971b76 spi_bus_unlock EXPORT_SYMBOL_GPL vmlinux 0xcd974f00 rcu_all_qs -EXPORT_SYMBOL_GPL vmlinux 0xcd9c51c4 __raw_v6_lookup EXPORT_SYMBOL_GPL vmlinux 0xcd9cd2ff wakeme_after_rcu +EXPORT_SYMBOL_GPL vmlinux 0xcd9fd02c devm_extcon_dev_allocate EXPORT_SYMBOL_GPL vmlinux 0xcda2aaba k3_udma_glue_tx_dma_to_cppi5_addr -EXPORT_SYMBOL_GPL vmlinux 0xcda67ce4 acpi_kobj -EXPORT_SYMBOL_GPL vmlinux 0xcdadca0e crypto_enqueue_request_head -EXPORT_SYMBOL_GPL vmlinux 0xcdafaa76 __clk_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0xcdaf2abc devm_gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0xcdb093a4 fsl_mc_bus_dpci_type EXPORT_SYMBOL_GPL vmlinux 0xcdb6adcc ras_userspace_consumers -EXPORT_SYMBOL_GPL vmlinux 0xcdb6e0e8 xenbus_watch_path +EXPORT_SYMBOL_GPL vmlinux 0xcdc5699f set_task_ioprio EXPORT_SYMBOL_GPL vmlinux 0xcdc86b55 sched_clock EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs -EXPORT_SYMBOL_GPL vmlinux 0xcdcd22d1 gpiod_set_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xcdcf5f51 rio_request_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0xcddebd8e ata_host_suspend EXPORT_SYMBOL_GPL vmlinux 0xcde26600 cppc_get_transition_latency -EXPORT_SYMBOL_GPL vmlinux 0xcde7ff92 aead_geniv_alloc -EXPORT_SYMBOL_GPL vmlinux 0xce066478 ata_pci_sff_init_host +EXPORT_SYMBOL_GPL vmlinux 0xce04208d sysfs_create_file_ns EXPORT_SYMBOL_GPL vmlinux 0xce0a4020 xenbus_directory -EXPORT_SYMBOL_GPL vmlinux 0xce1306b5 of_irq_find_parent -EXPORT_SYMBOL_GPL vmlinux 0xce2319b1 device_property_match_string -EXPORT_SYMBOL_GPL vmlinux 0xce2ca162 skb_mpls_dec_ttl +EXPORT_SYMBOL_GPL vmlinux 0xce0b78cf dev_pm_genpd_resume +EXPORT_SYMBOL_GPL vmlinux 0xce203c3c pinctrl_utils_add_map_mux EXPORT_SYMBOL_GPL vmlinux 0xce316d7e zynqmp_pm_set_sd_tapdelay -EXPORT_SYMBOL_GPL vmlinux 0xce40d3ed tty_port_register_device_attr -EXPORT_SYMBOL_GPL vmlinux 0xce4cd8f6 fuse_request_end -EXPORT_SYMBOL_GPL vmlinux 0xce546547 regulator_get_voltage_sel_regmap -EXPORT_SYMBOL_GPL vmlinux 0xce584ad3 usb_hcd_pci_remove +EXPORT_SYMBOL_GPL vmlinux 0xce4d6fb4 usb_disable_lpm EXPORT_SYMBOL_GPL vmlinux 0xce598ef2 unregister_kretprobe -EXPORT_SYMBOL_GPL vmlinux 0xce5de944 sata_pmp_qc_defer_cmd_switch -EXPORT_SYMBOL_GPL vmlinux 0xce6aabad gpiochip_generic_config +EXPORT_SYMBOL_GPL vmlinux 0xce65b192 cgroup_get_from_path EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching -EXPORT_SYMBOL_GPL vmlinux 0xce7c23ef sdev_evt_send_simple -EXPORT_SYMBOL_GPL vmlinux 0xce944b7f security_kernel_post_read_file -EXPORT_SYMBOL_GPL vmlinux 0xce9faabb of_genpd_parse_idle_states +EXPORT_SYMBOL_GPL vmlinux 0xce7ffdce rdev_clear_badblocks EXPORT_SYMBOL_GPL vmlinux 0xceac8674 zynqmp_pm_read_pggs +EXPORT_SYMBOL_GPL vmlinux 0xceb0d4ff efivars_unregister EXPORT_SYMBOL_GPL vmlinux 0xceb1f126 mpi_read_raw_data -EXPORT_SYMBOL_GPL vmlinux 0xceb50529 virtqueue_add_inbuf -EXPORT_SYMBOL_GPL vmlinux 0xcec56a20 acpi_subsys_suspend_noirq -EXPORT_SYMBOL_GPL vmlinux 0xced6a1ab devm_thermal_add_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0xceb8eb2d crypto_get_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xcecdb195 xenbus_dev_error EXPORT_SYMBOL_GPL vmlinux 0xcee1641c kgdb_unregister_nmi_console EXPORT_SYMBOL_GPL vmlinux 0xcee88e7a of_overlay_fdt_apply +EXPORT_SYMBOL_GPL vmlinux 0xceed6b4e usb_hcd_unlink_urb_from_ep EXPORT_SYMBOL_GPL vmlinux 0xceed8c16 __set_phys_to_machine -EXPORT_SYMBOL_GPL vmlinux 0xcf090359 fat_remove_entries -EXPORT_SYMBOL_GPL vmlinux 0xcf12a335 crypto_default_rng -EXPORT_SYMBOL_GPL vmlinux 0xcf232038 acpi_dev_get_property -EXPORT_SYMBOL_GPL vmlinux 0xcf2ca916 usb_root_hub_lost_power -EXPORT_SYMBOL_GPL vmlinux 0xcf2dd981 devm_regmap_del_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0xcf70932c inet_csk_reqsk_queue_hash_add -EXPORT_SYMBOL_GPL vmlinux 0xcf7516f0 dm_put +EXPORT_SYMBOL_GPL vmlinux 0xcef29adc lwtunnel_input +EXPORT_SYMBOL_GPL vmlinux 0xcf0c6bdf iommu_device_register +EXPORT_SYMBOL_GPL vmlinux 0xcf10c33e devm_regmap_field_bulk_alloc +EXPORT_SYMBOL_GPL vmlinux 0xcf26f393 usb_of_has_combined_node +EXPORT_SYMBOL_GPL vmlinux 0xcf2a3647 regcache_sync +EXPORT_SYMBOL_GPL vmlinux 0xcf2bd614 __devm_regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0xcf4030d7 pci_epc_remove_epf +EXPORT_SYMBOL_GPL vmlinux 0xcf4412dc of_phandle_iterator_next +EXPORT_SYMBOL_GPL vmlinux 0xcf5a2deb genphy_c45_read_mdix +EXPORT_SYMBOL_GPL vmlinux 0xcf64ce93 sdio_set_host_pm_flags +EXPORT_SYMBOL_GPL vmlinux 0xcf7ce4f0 dm_internal_resume EXPORT_SYMBOL_GPL vmlinux 0xcf7f66f9 imx_dev_clk_hw_pll14xx -EXPORT_SYMBOL_GPL vmlinux 0xcf82c225 set_capacity_and_notify -EXPORT_SYMBOL_GPL vmlinux 0xcf973f0e led_set_brightness -EXPORT_SYMBOL_GPL vmlinux 0xcfb6b856 regulator_map_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0xcf8a87fe dax_supported +EXPORT_SYMBOL_GPL vmlinux 0xcfb0ac84 virtqueue_enable_cb_prepare EXPORT_SYMBOL_GPL vmlinux 0xcfc5108a devlink_fmsg_u8_pair_put -EXPORT_SYMBOL_GPL vmlinux 0xcfc74092 thermal_zone_of_get_sensor_id EXPORT_SYMBOL_GPL vmlinux 0xcfc7b4e4 rcu_barrier_tasks_trace -EXPORT_SYMBOL_GPL vmlinux 0xcfcbc396 netdev_is_rx_handler_busy -EXPORT_SYMBOL_GPL vmlinux 0xcfcfaa6d PageHuge EXPORT_SYMBOL_GPL vmlinux 0xcfd30d71 acpi_os_map_memory -EXPORT_SYMBOL_GPL vmlinux 0xcfd8121d sk_msg_alloc +EXPORT_SYMBOL_GPL vmlinux 0xcfe9809a get_current_tty +EXPORT_SYMBOL_GPL vmlinux 0xcff222cf acpi_device_fix_up_power +EXPORT_SYMBOL_GPL vmlinux 0xcff54ec6 ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0xcffcc1e1 xhci_add_endpoint EXPORT_SYMBOL_GPL vmlinux 0xcffd793e hyperv_report_panic -EXPORT_SYMBOL_GPL vmlinux 0xd0081737 syscon_regmap_lookup_by_phandle_optional -EXPORT_SYMBOL_GPL vmlinux 0xd01e8190 unix_outq_len -EXPORT_SYMBOL_GPL vmlinux 0xd01ff8b8 icc_provider_add +EXPORT_SYMBOL_GPL vmlinux 0xd01a1509 usb_control_msg_recv +EXPORT_SYMBOL_GPL vmlinux 0xd01aeda5 phy_restore_page EXPORT_SYMBOL_GPL vmlinux 0xd026d518 HYPERVISOR_vcpu_op -EXPORT_SYMBOL_GPL vmlinux 0xd02d2d05 gpiod_unexport -EXPORT_SYMBOL_GPL vmlinux 0xd02f9224 sysfs_update_groups +EXPORT_SYMBOL_GPL vmlinux 0xd02e8679 ata_ehi_clear_desc +EXPORT_SYMBOL_GPL vmlinux 0xd03997db regulator_suspend_enable EXPORT_SYMBOL_GPL vmlinux 0xd03eaf4c schedule_hrtimeout_range -EXPORT_SYMBOL_GPL vmlinux 0xd0410b22 dev_pm_qos_update_user_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0xd03f3947 wb_writeout_inc +EXPORT_SYMBOL_GPL vmlinux 0xd0423140 rockchip_pcie_parse_dt EXPORT_SYMBOL_GPL vmlinux 0xd0458ccb xenbus_strstate -EXPORT_SYMBOL_GPL vmlinux 0xd04771c6 dw_pcie_host_deinit EXPORT_SYMBOL_GPL vmlinux 0xd04aedfd __SCK__tp_func_arm_event +EXPORT_SYMBOL_GPL vmlinux 0xd051e9b5 device_get_child_node_count +EXPORT_SYMBOL_GPL vmlinux 0xd051f5d5 __hwspin_lock_timeout +EXPORT_SYMBOL_GPL vmlinux 0xd0533b88 rockchip_pcie_init_port +EXPORT_SYMBOL_GPL vmlinux 0xd06306cc meson_pmx_get_func_name +EXPORT_SYMBOL_GPL vmlinux 0xd06455d2 mtk_pinconf_adv_drive_get_raw EXPORT_SYMBOL_GPL vmlinux 0xd06524ba raw_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd0666ebd component_bind_all EXPORT_SYMBOL_GPL vmlinux 0xd067d3c5 system_freezable_power_efficient_wq -EXPORT_SYMBOL_GPL vmlinux 0xd06e00e5 dev_pm_clear_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0xd07ecbd9 fsl_mc_get_endpoint -EXPORT_SYMBOL_GPL vmlinux 0xd095ccfb dpcon_disable +EXPORT_SYMBOL_GPL vmlinux 0xd06e87fc __traceiter_br_fdb_update +EXPORT_SYMBOL_GPL vmlinux 0xd071d476 powercap_register_zone +EXPORT_SYMBOL_GPL vmlinux 0xd07b9642 rio_release_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0xd08a841a crypto_grab_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xd08d5174 device_set_node EXPORT_SYMBOL_GPL vmlinux 0xd09911a6 acpi_dev_get_irq_type -EXPORT_SYMBOL_GPL vmlinux 0xd09adfda crypto_unregister_scomps -EXPORT_SYMBOL_GPL vmlinux 0xd09f0d81 ahci_platform_resume_host -EXPORT_SYMBOL_GPL vmlinux 0xd0a163b9 filemap_read -EXPORT_SYMBOL_GPL vmlinux 0xd0a2a6f2 fwnode_property_read_string -EXPORT_SYMBOL_GPL vmlinux 0xd0b79d6a fib_nexthop_info +EXPORT_SYMBOL_GPL vmlinux 0xd0b4b4e8 xen_remap_vma_range EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart -EXPORT_SYMBOL_GPL vmlinux 0xd0ceaebf nexthop_for_each_fib6_nh -EXPORT_SYMBOL_GPL vmlinux 0xd0cfa933 blk_mq_unquiesce_queue +EXPORT_SYMBOL_GPL vmlinux 0xd0ca8f75 rcu_read_unlock_trace_special +EXPORT_SYMBOL_GPL vmlinux 0xd0cd828a dev_pm_opp_put EXPORT_SYMBOL_GPL vmlinux 0xd0d156e9 __rht_bucket_nested EXPORT_SYMBOL_GPL vmlinux 0xd0d3f0a4 gen_pool_avail -EXPORT_SYMBOL_GPL vmlinux 0xd0d6afe0 sata_scr_write -EXPORT_SYMBOL_GPL vmlinux 0xd0da1447 to_nd_desc +EXPORT_SYMBOL_GPL vmlinux 0xd0d5d035 iptunnel_handle_offloads EXPORT_SYMBOL_GPL vmlinux 0xd0db0f12 run_dax -EXPORT_SYMBOL_GPL vmlinux 0xd0dc0514 dev_pm_opp_get_sharing_cpus -EXPORT_SYMBOL_GPL vmlinux 0xd0ee675a tty_ldisc_ref -EXPORT_SYMBOL_GPL vmlinux 0xd0ee6ce3 of_usb_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0xd104a9c1 usb_init_urb -EXPORT_SYMBOL_GPL vmlinux 0xd1123258 trace_put_event_file -EXPORT_SYMBOL_GPL vmlinux 0xd1146a27 sata_set_spd -EXPORT_SYMBOL_GPL vmlinux 0xd11971c7 cpufreq_freq_attr_scaling_boost_freqs -EXPORT_SYMBOL_GPL vmlinux 0xd11e6774 user_destroy -EXPORT_SYMBOL_GPL vmlinux 0xd1252311 ahci_error_handler -EXPORT_SYMBOL_GPL vmlinux 0xd1271f10 devlink_traps_register -EXPORT_SYMBOL_GPL vmlinux 0xd130113f irq_domain_translate_twocell -EXPORT_SYMBOL_GPL vmlinux 0xd1336043 wm8350_gpio_config +EXPORT_SYMBOL_GPL vmlinux 0xd0e5bf94 gpiochip_unlock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0xd0e65ed9 of_dma_xlate_by_chan_id +EXPORT_SYMBOL_GPL vmlinux 0xd0e74724 i2c_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xd0fe76da __traceiter_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0xd116840a pinconf_generic_dt_free_map +EXPORT_SYMBOL_GPL vmlinux 0xd11ce6aa blk_queue_zone_write_granularity +EXPORT_SYMBOL_GPL vmlinux 0xd1255a9a __scsi_init_queue +EXPORT_SYMBOL_GPL vmlinux 0xd133f6fb perf_tp_event EXPORT_SYMBOL_GPL vmlinux 0xd1386738 x509_cert_parse EXPORT_SYMBOL_GPL vmlinux 0xd1481de7 mpi_clear EXPORT_SYMBOL_GPL vmlinux 0xd159586c net_prio_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xd15b94e8 netdev_walk_all_upper_dev_rcu -EXPORT_SYMBOL_GPL vmlinux 0xd15fa69f pci_reset_bus -EXPORT_SYMBOL_GPL vmlinux 0xd16222c7 dev_pm_get_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0xd15fb112 tracing_snapshot_cond_enable +EXPORT_SYMBOL_GPL vmlinux 0xd1607f99 bpf_offload_dev_match EXPORT_SYMBOL_GPL vmlinux 0xd16a8cef __tracepoint_add_device_to_group -EXPORT_SYMBOL_GPL vmlinux 0xd173004a da9052_disable_irq_nosync -EXPORT_SYMBOL_GPL vmlinux 0xd173a022 ata_cable_sata +EXPORT_SYMBOL_GPL vmlinux 0xd17b4b9e tegra_bpmp_transfer_atomic +EXPORT_SYMBOL_GPL vmlinux 0xd17cdf90 rio_dev_put EXPORT_SYMBOL_GPL vmlinux 0xd17d2a22 phy_basic_features -EXPORT_SYMBOL_GPL vmlinux 0xd1848dae hisi_uncore_pmu_event_update -EXPORT_SYMBOL_GPL vmlinux 0xd195321f xenbus_dev_fatal -EXPORT_SYMBOL_GPL vmlinux 0xd19c6595 of_regulator_match -EXPORT_SYMBOL_GPL vmlinux 0xd19edfa5 acpi_dma_controller_free -EXPORT_SYMBOL_GPL vmlinux 0xd1a9bc40 cpufreq_generic_attr +EXPORT_SYMBOL_GPL vmlinux 0xd1851ae4 dev_pm_clear_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xd1958e1a usb_enable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0xd1969e39 debugfs_create_devm_seqfile +EXPORT_SYMBOL_GPL vmlinux 0xd19a9ee1 fwnode_device_is_available +EXPORT_SYMBOL_GPL vmlinux 0xd19bb01f irq_domain_xlate_twocell +EXPORT_SYMBOL_GPL vmlinux 0xd1a7e5ee icc_set_bw EXPORT_SYMBOL_GPL vmlinux 0xd1a9ca15 __SCK__tp_func_neigh_update -EXPORT_SYMBOL_GPL vmlinux 0xd1c52a3a sdio_writel +EXPORT_SYMBOL_GPL vmlinux 0xd1b332bd crypto_unregister_scomps +EXPORT_SYMBOL_GPL vmlinux 0xd1b73102 fscrypt_ioctl_remove_key +EXPORT_SYMBOL_GPL vmlinux 0xd1be8a82 clk_regmap_gate_ops EXPORT_SYMBOL_GPL vmlinux 0xd1cbc23c add_timer_on -EXPORT_SYMBOL_GPL vmlinux 0xd1ccdb8f alloc_empty_file -EXPORT_SYMBOL_GPL vmlinux 0xd1d497cf devlink_params_publish -EXPORT_SYMBOL_GPL vmlinux 0xd1d74639 devlink_rate_leaf_create -EXPORT_SYMBOL_GPL vmlinux 0xd1e124c9 powercap_unregister_control_type -EXPORT_SYMBOL_GPL vmlinux 0xd1e79e16 fscrypt_set_bio_crypt_ctx +EXPORT_SYMBOL_GPL vmlinux 0xd1e11523 blk_mq_update_nr_hw_queues +EXPORT_SYMBOL_GPL vmlinux 0xd1e6150b fwnode_graph_get_port_parent +EXPORT_SYMBOL_GPL vmlinux 0xd1eab7c5 mmc_sanitize EXPORT_SYMBOL_GPL vmlinux 0xd1f2eee2 nf_logger_find_get -EXPORT_SYMBOL_GPL vmlinux 0xd2079791 devm_pm_opp_register_set_opp_helper -EXPORT_SYMBOL_GPL vmlinux 0xd20c2a20 vc_scrolldelta_helper -EXPORT_SYMBOL_GPL vmlinux 0xd20c322c dm_send_uevents -EXPORT_SYMBOL_GPL vmlinux 0xd213f48e pm_genpd_remove_device +EXPORT_SYMBOL_GPL vmlinux 0xd1f805eb serial8250_rpm_put_tx +EXPORT_SYMBOL_GPL vmlinux 0xd20a17b7 bus_sort_breadthfirst +EXPORT_SYMBOL_GPL vmlinux 0xd20a677d scsi_unregister_device_handler EXPORT_SYMBOL_GPL vmlinux 0xd217e9e6 trace_set_clr_event -EXPORT_SYMBOL_GPL vmlinux 0xd2190e0c bio_associate_blkg EXPORT_SYMBOL_GPL vmlinux 0xd21b61bd async_schedule_node_domain -EXPORT_SYMBOL_GPL vmlinux 0xd21c9919 spi_mem_supports_op +EXPORT_SYMBOL_GPL vmlinux 0xd21cd0ec irq_domain_translate_onecell EXPORT_SYMBOL_GPL vmlinux 0xd21f1d35 __SCK__tp_func_tcp_send_reset -EXPORT_SYMBOL_GPL vmlinux 0xd21f686a pci_sriov_set_totalvfs -EXPORT_SYMBOL_GPL vmlinux 0xd2235b62 device_property_read_u16_array -EXPORT_SYMBOL_GPL vmlinux 0xd2415c2e device_node_to_regmap -EXPORT_SYMBOL_GPL vmlinux 0xd2422034 pci_pr3_present +EXPORT_SYMBOL_GPL vmlinux 0xd2362bea scsi_check_sense EXPORT_SYMBOL_GPL vmlinux 0xd2423f76 i2c_acpi_get_i2c_resource -EXPORT_SYMBOL_GPL vmlinux 0xd2490934 dev_coredumpsg EXPORT_SYMBOL_GPL vmlinux 0xd24e9e8c klist_init -EXPORT_SYMBOL_GPL vmlinux 0xd257907d ata_pci_bmdma_init_one -EXPORT_SYMBOL_GPL vmlinux 0xd25a1638 dev_pm_disable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xd25f4bfa clk_hw_get_parent EXPORT_SYMBOL_GPL vmlinux 0xd260af0d ring_buffer_write +EXPORT_SYMBOL_GPL vmlinux 0xd262af9f devm_free_pages EXPORT_SYMBOL_GPL vmlinux 0xd270e977 pci_bridge_emul_conf_write EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative -EXPORT_SYMBOL_GPL vmlinux 0xd279ca68 i2c_client_type EXPORT_SYMBOL_GPL vmlinux 0xd27f215d gnttab_alloc_grant_references +EXPORT_SYMBOL_GPL vmlinux 0xd28a5128 pm_genpd_add_device +EXPORT_SYMBOL_GPL vmlinux 0xd2aefff9 xenbus_switch_state EXPORT_SYMBOL_GPL vmlinux 0xd2b10a05 ata_timing_find_mode -EXPORT_SYMBOL_GPL vmlinux 0xd2ba9823 fb_deferred_io_cleanup -EXPORT_SYMBOL_GPL vmlinux 0xd2c46621 blk_mark_disk_dead -EXPORT_SYMBOL_GPL vmlinux 0xd2e26329 pci_epc_linkup -EXPORT_SYMBOL_GPL vmlinux 0xd303132e __devm_rtc_register_device -EXPORT_SYMBOL_GPL vmlinux 0xd316acf1 tegra_xusb_padctl_legacy_probe +EXPORT_SYMBOL_GPL vmlinux 0xd2b56d75 apply_to_existing_page_range +EXPORT_SYMBOL_GPL vmlinux 0xd2c06f1d call_switchdev_blocking_notifiers +EXPORT_SYMBOL_GPL vmlinux 0xd2c28e17 da903x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0xd2d8680f fscrypt_mergeable_bio +EXPORT_SYMBOL_GPL vmlinux 0xd3037d2d ata_bmdma_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xd3039340 devfreq_event_get_edev_count EXPORT_SYMBOL_GPL vmlinux 0xd31a2ac5 ring_buffer_oldest_event_ts +EXPORT_SYMBOL_GPL vmlinux 0xd31cbcdf __rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0xd31f4af1 md_bitmap_load +EXPORT_SYMBOL_GPL vmlinux 0xd3202a3c __dev_change_net_namespace EXPORT_SYMBOL_GPL vmlinux 0xd320ebaf pci_epc_get_first_free_bar -EXPORT_SYMBOL_GPL vmlinux 0xd327a982 __vring_new_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0xd336a702 sdio_readsb +EXPORT_SYMBOL_GPL vmlinux 0xd3275c97 pm_runtime_autosuspend_expiration +EXPORT_SYMBOL_GPL vmlinux 0xd3339bfd nvdimm_setup_pfn EXPORT_SYMBOL_GPL vmlinux 0xd33ada8b cci_probed -EXPORT_SYMBOL_GPL vmlinux 0xd3441da4 efivars_kobject -EXPORT_SYMBOL_GPL vmlinux 0xd346451f ata_sff_dma_pause -EXPORT_SYMBOL_GPL vmlinux 0xd34d4049 ncsi_vlan_rx_add_vid -EXPORT_SYMBOL_GPL vmlinux 0xd35855bb i2c_new_scanned_device +EXPORT_SYMBOL_GPL vmlinux 0xd3528559 serdev_device_get_tiocm +EXPORT_SYMBOL_GPL vmlinux 0xd35be445 pcie_port_find_device EXPORT_SYMBOL_GPL vmlinux 0xd36760ef __usb_get_extra_descriptor +EXPORT_SYMBOL_GPL vmlinux 0xd3684fad device_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0xd3730960 phy_pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0xd3736e27 sock_diag_save_cookie +EXPORT_SYMBOL_GPL vmlinux 0xd3737da6 bpf_event_output EXPORT_SYMBOL_GPL vmlinux 0xd3752c27 atomic_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xd37a7947 __devm_reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0xd387771b tcp_get_syncookie_mss -EXPORT_SYMBOL_GPL vmlinux 0xd38dbad6 kvm_vcpu_gfn_to_pfn -EXPORT_SYMBOL_GPL vmlinux 0xd395894c pci_intx -EXPORT_SYMBOL_GPL vmlinux 0xd39a8d26 of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0xd37a2817 devm_phy_put +EXPORT_SYMBOL_GPL vmlinux 0xd37a2bdb pwmchip_remove +EXPORT_SYMBOL_GPL vmlinux 0xd37b8b61 ata_slave_link_init +EXPORT_SYMBOL_GPL vmlinux 0xd3970323 icc_enable EXPORT_SYMBOL_GPL vmlinux 0xd39e9848 put_itimerspec64 -EXPORT_SYMBOL_GPL vmlinux 0xd3c74555 pinctrl_generic_add_group -EXPORT_SYMBOL_GPL vmlinux 0xd3e111e0 uhci_reset_hc -EXPORT_SYMBOL_GPL vmlinux 0xd3e484e0 __traceiter_io_page_fault -EXPORT_SYMBOL_GPL vmlinux 0xd3e6f1c8 skb_splice_bits +EXPORT_SYMBOL_GPL vmlinux 0xd3b0ed49 xhci_resume +EXPORT_SYMBOL_GPL vmlinux 0xd3b3e6a6 crypto_alloc_acomp +EXPORT_SYMBOL_GPL vmlinux 0xd3cb6e91 ata_bmdma_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xd3ce965b wakeup_sources_walk_next +EXPORT_SYMBOL_GPL vmlinux 0xd3e238b1 virtqueue_add_inbuf_ctx +EXPORT_SYMBOL_GPL vmlinux 0xd3e48184 __inet_lookup_listener EXPORT_SYMBOL_GPL vmlinux 0xd3ec851c __traceiter_unmap -EXPORT_SYMBOL_GPL vmlinux 0xd3eec896 skb_send_sock_locked EXPORT_SYMBOL_GPL vmlinux 0xd3f0cd42 misc_cg_res_total_usage -EXPORT_SYMBOL_GPL vmlinux 0xd3f3f559 gpiochip_add_pin_range -EXPORT_SYMBOL_GPL vmlinux 0xd3f88fc7 inet_csk_route_child_sock +EXPORT_SYMBOL_GPL vmlinux 0xd3f30805 gpiod_get_raw_array_value EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq -EXPORT_SYMBOL_GPL vmlinux 0xd41254fa debugfs_create_u64 EXPORT_SYMBOL_GPL vmlinux 0xd426dbc4 erst_get_record_count EXPORT_SYMBOL_GPL vmlinux 0xd42f1d4e show_rcu_tasks_rude_gp_kthread -EXPORT_SYMBOL_GPL vmlinux 0xd4392020 ip6_route_output_flags_noref -EXPORT_SYMBOL_GPL vmlinux 0xd43d51c3 pci_find_next_ext_capability -EXPORT_SYMBOL_GPL vmlinux 0xd446b790 is_skb_forwardable +EXPORT_SYMBOL_GPL vmlinux 0xd4351df6 usb_add_phy +EXPORT_SYMBOL_GPL vmlinux 0xd4383009 securityfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0xd43b87c2 adp5520_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0xd445998d phy_remove_lookup +EXPORT_SYMBOL_GPL vmlinux 0xd4471349 rdev_get_name EXPORT_SYMBOL_GPL vmlinux 0xd44a5eac kgdb_register_nmi_console -EXPORT_SYMBOL_GPL vmlinux 0xd463071d edac_get_sysfs_subsys -EXPORT_SYMBOL_GPL vmlinux 0xd467ef54 irq_chip_eoi_parent +EXPORT_SYMBOL_GPL vmlinux 0xd45394c2 fsl_mc_free_irqs +EXPORT_SYMBOL_GPL vmlinux 0xd45546df usb_unanchor_urb +EXPORT_SYMBOL_GPL vmlinux 0xd45b6a6f wbc_attach_and_unlock_inode +EXPORT_SYMBOL_GPL vmlinux 0xd45d4401 mbox_client_txdone EXPORT_SYMBOL_GPL vmlinux 0xd46af5ef cppc_get_perf_ctrs -EXPORT_SYMBOL_GPL vmlinux 0xd482158a do_splice_to EXPORT_SYMBOL_GPL vmlinux 0xd4935851 __SCK__tp_func_suspend_resume -EXPORT_SYMBOL_GPL vmlinux 0xd4935db6 devm_phy_get -EXPORT_SYMBOL_GPL vmlinux 0xd4b1a190 meson_clk_pll_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0xd49928cd find_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xd49df59e tpm_pm_suspend +EXPORT_SYMBOL_GPL vmlinux 0xd4a076a5 vma_kernel_pagesize +EXPORT_SYMBOL_GPL vmlinux 0xd4a5f660 task_cls_state +EXPORT_SYMBOL_GPL vmlinux 0xd4aeef2c devm_extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0xd4b2db78 filemap_read EXPORT_SYMBOL_GPL vmlinux 0xd4b6157e devlink_health_reporter_recovery_done EXPORT_SYMBOL_GPL vmlinux 0xd4b9a616 reset_control_bulk_put -EXPORT_SYMBOL_GPL vmlinux 0xd4bf80a0 security_file_permission +EXPORT_SYMBOL_GPL vmlinux 0xd4ba5ed1 pci_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0xd4bd7af1 spi_res_release EXPORT_SYMBOL_GPL vmlinux 0xd4c14632 system_unbound_wq -EXPORT_SYMBOL_GPL vmlinux 0xd4c2d6ad spi_register_controller -EXPORT_SYMBOL_GPL vmlinux 0xd4c45b22 bind_interdomain_evtchn_to_irqhandler_lateeoi -EXPORT_SYMBOL_GPL vmlinux 0xd4caff57 of_i2c_get_board_info EXPORT_SYMBOL_GPL vmlinux 0xd4cbdbe3 __SCK__tp_func_devlink_trap_report -EXPORT_SYMBOL_GPL vmlinux 0xd4d49f74 ip_valid_fib_dump_req -EXPORT_SYMBOL_GPL vmlinux 0xd4d7dbaf __irq_alloc_domain_generic_chips -EXPORT_SYMBOL_GPL vmlinux 0xd4e60cfb tpm_get_timeouts +EXPORT_SYMBOL_GPL vmlinux 0xd4de24be rio_mport_write_config_32 EXPORT_SYMBOL_GPL vmlinux 0xd4e6d7e0 linear_range_get_value +EXPORT_SYMBOL_GPL vmlinux 0xd4f56ccc wm8350_set_bits EXPORT_SYMBOL_GPL vmlinux 0xd4f5bfa5 iommu_queue_iopf -EXPORT_SYMBOL_GPL vmlinux 0xd4fa2457 sysfs_change_owner -EXPORT_SYMBOL_GPL vmlinux 0xd51b8c54 clk_hw_unregister_fixed_rate -EXPORT_SYMBOL_GPL vmlinux 0xd51ef8be __traceiter_devlink_hwerr -EXPORT_SYMBOL_GPL vmlinux 0xd5282d4b crypto_register_templates +EXPORT_SYMBOL_GPL vmlinux 0xd50e915c max8997_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0xd512695e __kvm_set_memory_region +EXPORT_SYMBOL_GPL vmlinux 0xd527b783 dev_pm_opp_remove +EXPORT_SYMBOL_GPL vmlinux 0xd527db73 mtk_pinconf_bias_set_combo EXPORT_SYMBOL_GPL vmlinux 0xd5301b2c linear_range_get_max_value +EXPORT_SYMBOL_GPL vmlinux 0xd53208b9 pinctrl_generic_get_group_pins EXPORT_SYMBOL_GPL vmlinux 0xd53c67b3 unregister_net_sysctl_table -EXPORT_SYMBOL_GPL vmlinux 0xd53f2355 mbox_client_peek_data -EXPORT_SYMBOL_GPL vmlinux 0xd541af5e scsi_host_busy_iter EXPORT_SYMBOL_GPL vmlinux 0xd5474690 usb_role_switch_set_role -EXPORT_SYMBOL_GPL vmlinux 0xd552b219 security_inode_permission -EXPORT_SYMBOL_GPL vmlinux 0xd554cda4 strp_process +EXPORT_SYMBOL_GPL vmlinux 0xd54917cc edac_get_sysfs_subsys +EXPORT_SYMBOL_GPL vmlinux 0xd549a8fb ahci_sdev_attrs +EXPORT_SYMBOL_GPL vmlinux 0xd54a5953 genphy_c45_an_config_aneg EXPORT_SYMBOL_GPL vmlinux 0xd55ad93b iommu_group_get_iommudata -EXPORT_SYMBOL_GPL vmlinux 0xd57766fb kthread_func +EXPORT_SYMBOL_GPL vmlinux 0xd575b536 dev_pm_opp_find_level_ceil EXPORT_SYMBOL_GPL vmlinux 0xd57fbd31 hwrng_unregister EXPORT_SYMBOL_GPL vmlinux 0xd5807af3 k3_ringacc_ring_pop -EXPORT_SYMBOL_GPL vmlinux 0xd58ce10a fsl_mc_bus_dprc_type +EXPORT_SYMBOL_GPL vmlinux 0xd588a9d9 pci_user_read_config_word +EXPORT_SYMBOL_GPL vmlinux 0xd58ae6b2 crypto_alloc_sync_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xd5910277 da903x_reads EXPORT_SYMBOL_GPL vmlinux 0xd59a1587 linkmode_resolve_pause -EXPORT_SYMBOL_GPL vmlinux 0xd59da95b pinctrl_pm_select_idle_state -EXPORT_SYMBOL_GPL vmlinux 0xd5a6f7b4 debugfs_create_x64 -EXPORT_SYMBOL_GPL vmlinux 0xd5ada589 extcon_unregister_notifier_all -EXPORT_SYMBOL_GPL vmlinux 0xd5b75fa0 dev_pm_opp_set_clkname -EXPORT_SYMBOL_GPL vmlinux 0xd5bc3f43 crypto_stats_ahash_final -EXPORT_SYMBOL_GPL vmlinux 0xd5e33f74 path_noexec -EXPORT_SYMBOL_GPL vmlinux 0xd5e4e0c8 usb_reset_configuration -EXPORT_SYMBOL_GPL vmlinux 0xd5e5debd ata_sff_softreset -EXPORT_SYMBOL_GPL vmlinux 0xd5ef4944 devlink_region_snapshot_id_get -EXPORT_SYMBOL_GPL vmlinux 0xd5f77b25 ip_fib_metrics_init -EXPORT_SYMBOL_GPL vmlinux 0xd6084003 pm_generic_suspend_noirq -EXPORT_SYMBOL_GPL vmlinux 0xd60ac93b bpf_event_output -EXPORT_SYMBOL_GPL vmlinux 0xd61af5b3 usb_find_alt_setting -EXPORT_SYMBOL_GPL vmlinux 0xd627861a tcp_sendmsg_locked -EXPORT_SYMBOL_GPL vmlinux 0xd633847b shake_page -EXPORT_SYMBOL_GPL vmlinux 0xd63a4f7b dev_coredumpm +EXPORT_SYMBOL_GPL vmlinux 0xd59ab8e3 pci_slots_kset +EXPORT_SYMBOL_GPL vmlinux 0xd59eb436 fsnotify_alloc_user_group +EXPORT_SYMBOL_GPL vmlinux 0xd5a085b7 usb_pipe_type_check +EXPORT_SYMBOL_GPL vmlinux 0xd5a61def ata_platform_remove_one +EXPORT_SYMBOL_GPL vmlinux 0xd5dd907a of_get_display_timing +EXPORT_SYMBOL_GPL vmlinux 0xd5edbf17 mnt_want_write +EXPORT_SYMBOL_GPL vmlinux 0xd6053667 device_set_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0xd610a002 fsl_mc_device_group +EXPORT_SYMBOL_GPL vmlinux 0xd6151c96 of_reserved_mem_device_init_by_name +EXPORT_SYMBOL_GPL vmlinux 0xd63e1dd1 netdev_walk_all_lower_dev +EXPORT_SYMBOL_GPL vmlinux 0xd63f2c09 ata_sas_port_start +EXPORT_SYMBOL_GPL vmlinux 0xd6401c81 find_extend_vma +EXPORT_SYMBOL_GPL vmlinux 0xd64e002c dummy_con EXPORT_SYMBOL_GPL vmlinux 0xd64ed259 __memcat_p -EXPORT_SYMBOL_GPL vmlinux 0xd656e658 sched_trace_rq_avg_irq -EXPORT_SYMBOL_GPL vmlinux 0xd65add88 blkcg_print_blkgs -EXPORT_SYMBOL_GPL vmlinux 0xd65c189e serdev_device_add -EXPORT_SYMBOL_GPL vmlinux 0xd6607dca xfrm_audit_state_replay_overflow -EXPORT_SYMBOL_GPL vmlinux 0xd665bfc3 register_trace_event +EXPORT_SYMBOL_GPL vmlinux 0xd64ef747 of_get_named_gpio_flags EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget -EXPORT_SYMBOL_GPL vmlinux 0xd692ea0c fwnode_graph_get_remote_endpoint -EXPORT_SYMBOL_GPL vmlinux 0xd69e37eb xdp_return_frame_bulk -EXPORT_SYMBOL_GPL vmlinux 0xd6a1fb60 iterate_mounts -EXPORT_SYMBOL_GPL vmlinux 0xd6bbbe0a list_lru_walk_one -EXPORT_SYMBOL_GPL vmlinux 0xd6c4a3b9 of_platform_populate -EXPORT_SYMBOL_GPL vmlinux 0xd6caa5d6 blk_mq_rdma_map_queues -EXPORT_SYMBOL_GPL vmlinux 0xd6d03d9d dm_report_zones -EXPORT_SYMBOL_GPL vmlinux 0xd6d5a142 elv_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd67512c0 regulator_set_voltage_time +EXPORT_SYMBOL_GPL vmlinux 0xd6a31681 tpm_get_timeouts +EXPORT_SYMBOL_GPL vmlinux 0xd6b73c2d pci_intx +EXPORT_SYMBOL_GPL vmlinux 0xd6bd6ffa fwnode_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0xd6c1b37d pinmux_generic_get_function_count EXPORT_SYMBOL_GPL vmlinux 0xd6d8f6b3 topology_set_scale_freq_source -EXPORT_SYMBOL_GPL vmlinux 0xd6f1c375 attribute_container_register -EXPORT_SYMBOL_GPL vmlinux 0xd7092151 led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd6de5939 ehci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0xd6f03e4f pci_find_next_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0xd6fe928c irq_domain_translate_twocell +EXPORT_SYMBOL_GPL vmlinux 0xd70938d5 blk_mq_alloc_request_hctx +EXPORT_SYMBOL_GPL vmlinux 0xd7140ab5 xhci_drop_endpoint +EXPORT_SYMBOL_GPL vmlinux 0xd7183298 of_pci_dma_range_parser_init +EXPORT_SYMBOL_GPL vmlinux 0xd7193ab6 __sock_recv_timestamp EXPORT_SYMBOL_GPL vmlinux 0xd7269c64 osc_sb_native_usb4_control EXPORT_SYMBOL_GPL vmlinux 0xd7293ffc percpu_ref_reinit EXPORT_SYMBOL_GPL vmlinux 0xd72feba2 xenbus_read_driver_state -EXPORT_SYMBOL_GPL vmlinux 0xd7399b33 sock_diag_put_meminfo +EXPORT_SYMBOL_GPL vmlinux 0xd732ef89 i2c_acpi_new_device +EXPORT_SYMBOL_GPL vmlinux 0xd73796d3 bgmac_adjust_link +EXPORT_SYMBOL_GPL vmlinux 0xd737a352 pl08x_filter_id EXPORT_SYMBOL_GPL vmlinux 0xd7399d2a efivar_entry_iter_end -EXPORT_SYMBOL_GPL vmlinux 0xd7482c4c skcipher_walk_async -EXPORT_SYMBOL_GPL vmlinux 0xd74c9f58 k3_udma_glue_rx_flow_init +EXPORT_SYMBOL_GPL vmlinux 0xd747dd98 spi_take_timestamp_pre +EXPORT_SYMBOL_GPL vmlinux 0xd751d373 devfreq_event_remove_edev EXPORT_SYMBOL_GPL vmlinux 0xd75b20aa rsa_parse_priv_key EXPORT_SYMBOL_GPL vmlinux 0xd768e985 regulator_has_full_constraints -EXPORT_SYMBOL_GPL vmlinux 0xd76afee6 cpufreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0xd76b51ee hwmon_notify_event +EXPORT_SYMBOL_GPL vmlinux 0xd76e4457 sbitmap_show +EXPORT_SYMBOL_GPL vmlinux 0xd770eddf class_compat_create_link +EXPORT_SYMBOL_GPL vmlinux 0xd7716dc9 tty_set_termios EXPORT_SYMBOL_GPL vmlinux 0xd774957d mpi_write_to_sgl -EXPORT_SYMBOL_GPL vmlinux 0xd78ac21c mpc8xxx_spi_tx_buf_u8 -EXPORT_SYMBOL_GPL vmlinux 0xd78fa6ad ata_bmdma_stop +EXPORT_SYMBOL_GPL vmlinux 0xd78aeb57 devm_regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xd7982738 devm_ti_sci_get_of_resource +EXPORT_SYMBOL_GPL vmlinux 0xd79c9b08 power_supply_external_power_changed EXPORT_SYMBOL_GPL vmlinux 0xd7b5dfee xas_split EXPORT_SYMBOL_GPL vmlinux 0xd7b7fb80 pkcs7_validate_trust -EXPORT_SYMBOL_GPL vmlinux 0xd7bf2932 rio_unmap_outb_region +EXPORT_SYMBOL_GPL vmlinux 0xd7b95a20 tpm_is_tpm2 EXPORT_SYMBOL_GPL vmlinux 0xd7c91b63 tegra210_sata_pll_hw_control_enable 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 0xd7fb01fd dev_pm_opp_put -EXPORT_SYMBOL_GPL vmlinux 0xd807cd84 pm_generic_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0xd808396f of_device_request_module -EXPORT_SYMBOL_GPL vmlinux 0xd81ee565 dev_pm_qos_remove_request -EXPORT_SYMBOL_GPL vmlinux 0xd8215aef synth_event_add_val -EXPORT_SYMBOL_GPL vmlinux 0xd82dde18 lwtstate_free +EXPORT_SYMBOL_GPL vmlinux 0xd7e95fce skb_zerocopy_iter_stream +EXPORT_SYMBOL_GPL vmlinux 0xd7fcf692 __iptunnel_pull_header +EXPORT_SYMBOL_GPL vmlinux 0xd7fe8a12 __udp_enqueue_schedule_skb +EXPORT_SYMBOL_GPL vmlinux 0xd7ff6acb serial8250_do_set_divisor +EXPORT_SYMBOL_GPL vmlinux 0xd801ca4f dpcon_enable +EXPORT_SYMBOL_GPL vmlinux 0xd80fd203 proc_get_parent_data +EXPORT_SYMBOL_GPL vmlinux 0xd8224561 set_primary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xd825a789 dummy_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0xd8303000 regulator_list_voltage_pickable_linear_range +EXPORT_SYMBOL_GPL vmlinux 0xd8348441 nvdimm_in_overwrite EXPORT_SYMBOL_GPL vmlinux 0xd84d35bd dax_read_lock -EXPORT_SYMBOL_GPL vmlinux 0xd85e4cff public_key_subtype -EXPORT_SYMBOL_GPL vmlinux 0xd86e326b spi_res_add -EXPORT_SYMBOL_GPL vmlinux 0xd870889d hisi_clk_init -EXPORT_SYMBOL_GPL vmlinux 0xd874bd18 pci_epc_mem_free_addr -EXPORT_SYMBOL_GPL vmlinux 0xd87c0727 watchdog_register_device -EXPORT_SYMBOL_GPL vmlinux 0xd87f777c mtk_paris_pinctrl_probe +EXPORT_SYMBOL_GPL vmlinux 0xd851660b ata_sas_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0xd86997bf usb_root_hub_lost_power +EXPORT_SYMBOL_GPL vmlinux 0xd8703c34 pinctrl_generic_get_group_count EXPORT_SYMBOL_GPL vmlinux 0xd87fc0a0 usb_amd_prefetch_quirk -EXPORT_SYMBOL_GPL vmlinux 0xd889a02b ahci_platform_suspend_host -EXPORT_SYMBOL_GPL vmlinux 0xd88f417f kvm_vcpu_destroy -EXPORT_SYMBOL_GPL vmlinux 0xd895b073 power_supply_external_power_changed -EXPORT_SYMBOL_GPL vmlinux 0xd89dc6bf device_match_of_node -EXPORT_SYMBOL_GPL vmlinux 0xd8b0a2c9 ahci_handle_port_intr -EXPORT_SYMBOL_GPL vmlinux 0xd8bf144c hrtimer_sleeper_start_expires -EXPORT_SYMBOL_GPL vmlinux 0xd8cbde8f of_clk_hw_register -EXPORT_SYMBOL_GPL vmlinux 0xd8cd8ce1 ethnl_cable_test_step -EXPORT_SYMBOL_GPL vmlinux 0xd8d13dd3 gnttab_alloc_pages +EXPORT_SYMBOL_GPL vmlinux 0xd88fc68a __mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0xd8911795 devm_nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0xd89ace27 gpiod_set_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xd8cbaecb devm_clk_hw_register_fixed_factor EXPORT_SYMBOL_GPL vmlinux 0xd8d68ab1 dmi_memdev_type -EXPORT_SYMBOL_GPL vmlinux 0xd8dc8bda dpcon_enable -EXPORT_SYMBOL_GPL vmlinux 0xd8e69abc sprd_pinctrl_remove +EXPORT_SYMBOL_GPL vmlinux 0xd8d7ae53 virtqueue_enable_cb_delayed +EXPORT_SYMBOL_GPL vmlinux 0xd8ddd5ce irq_chip_disable_parent +EXPORT_SYMBOL_GPL vmlinux 0xd8df06e9 cpufreq_freq_transition_end EXPORT_SYMBOL_GPL vmlinux 0xd8fbb14d net_cls_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xd8fd424a ohci_restart +EXPORT_SYMBOL_GPL vmlinux 0xd906d762 xfrm_audit_state_notfound EXPORT_SYMBOL_GPL vmlinux 0xd90a93a7 k3_udma_glue_rx_get_irq -EXPORT_SYMBOL_GPL vmlinux 0xd91c697d crypto_stats_akcipher_verify EXPORT_SYMBOL_GPL vmlinux 0xd91dbd1f xdp_alloc_skb_bulk -EXPORT_SYMBOL_GPL vmlinux 0xd92e5f2a dev_pm_opp_sync_regulators +EXPORT_SYMBOL_GPL vmlinux 0xd91f4163 devm_gpiochip_add_data_with_key +EXPORT_SYMBOL_GPL vmlinux 0xd92b66c5 phy_reset +EXPORT_SYMBOL_GPL vmlinux 0xd92cf6a9 l3mdev_update_flow +EXPORT_SYMBOL_GPL vmlinux 0xd92dc647 handle_bad_irq EXPORT_SYMBOL_GPL vmlinux 0xd92ef192 security_kernel_post_load_data EXPORT_SYMBOL_GPL vmlinux 0xd92f0791 leds_list_lock +EXPORT_SYMBOL_GPL vmlinux 0xd92f7242 acpi_subsys_prepare EXPORT_SYMBOL_GPL vmlinux 0xd93a5cb1 efivar_variable_is_removable -EXPORT_SYMBOL_GPL vmlinux 0xd95316a3 fb_deferred_io_open -EXPORT_SYMBOL_GPL vmlinux 0xd9694799 tcp_bpf_sendmsg_redir +EXPORT_SYMBOL_GPL vmlinux 0xd94134e7 net_ns_type_operations +EXPORT_SYMBOL_GPL vmlinux 0xd95f5706 pci_pasid_features EXPORT_SYMBOL_GPL vmlinux 0xd96babb4 interval_tree_iter_next -EXPORT_SYMBOL_GPL vmlinux 0xd970da8f devm_i2c_new_dummy_device -EXPORT_SYMBOL_GPL vmlinux 0xd9829c3b pm_runtime_suspended_time -EXPORT_SYMBOL_GPL vmlinux 0xd987b00e regulator_set_voltage_rdev -EXPORT_SYMBOL_GPL vmlinux 0xd98856ac blk_ksm_register -EXPORT_SYMBOL_GPL vmlinux 0xd9889258 sock_diag_check_cookie +EXPORT_SYMBOL_GPL vmlinux 0xd96c6d79 fscrypt_ioctl_get_policy_ex EXPORT_SYMBOL_GPL vmlinux 0xd9916c3a idr_alloc_u32 -EXPORT_SYMBOL_GPL vmlinux 0xd9a2956d sdio_enable_func -EXPORT_SYMBOL_GPL vmlinux 0xd9aafb58 led_trigger_event -EXPORT_SYMBOL_GPL vmlinux 0xd9aebd11 ip6_datagram_release_cb -EXPORT_SYMBOL_GPL vmlinux 0xd9af24fc register_asymmetric_key_parser -EXPORT_SYMBOL_GPL vmlinux 0xd9c1427e usb_remove_hcd -EXPORT_SYMBOL_GPL vmlinux 0xd9c84732 virtqueue_disable_cb -EXPORT_SYMBOL_GPL vmlinux 0xd9d1a46e devm_irq_alloc_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0xd9d49e07 dev_pm_opp_enable -EXPORT_SYMBOL_GPL vmlinux 0xd9dff557 acpi_device_uevent_modalias +EXPORT_SYMBOL_GPL vmlinux 0xd9a3bd81 dev_pm_qos_expose_flags +EXPORT_SYMBOL_GPL vmlinux 0xd9abc44f edac_pci_handle_pe +EXPORT_SYMBOL_GPL vmlinux 0xd9ac338f kvm_get_kvm +EXPORT_SYMBOL_GPL vmlinux 0xd9c1e52a __root_device_register +EXPORT_SYMBOL_GPL vmlinux 0xd9c25499 usb_hcd_amd_remote_wakeup_quirk +EXPORT_SYMBOL_GPL vmlinux 0xd9c2f749 devm_request_free_mem_region +EXPORT_SYMBOL_GPL vmlinux 0xd9c5880f debugfs_create_u16 +EXPORT_SYMBOL_GPL vmlinux 0xd9c9d4fa usb_debug_root +EXPORT_SYMBOL_GPL vmlinux 0xd9d1fd5f fsl_mc_bus_dprc_type +EXPORT_SYMBOL_GPL vmlinux 0xd9d9f7c1 of_dma_request_slave_channel EXPORT_SYMBOL_GPL vmlinux 0xd9e24457 ring_buffer_peek -EXPORT_SYMBOL_GPL vmlinux 0xd9e47d35 raw_seq_stop -EXPORT_SYMBOL_GPL vmlinux 0xd9e7ca3c led_classdev_suspend -EXPORT_SYMBOL_GPL vmlinux 0xd9e9a990 trace_array_init_printk -EXPORT_SYMBOL_GPL vmlinux 0xd9f972ac relay_buf_full +EXPORT_SYMBOL_GPL vmlinux 0xd9f2d1e3 usb_role_switch_find_by_fwnode EXPORT_SYMBOL_GPL vmlinux 0xd9faa7a5 zynqmp_pm_set_pll_frac_mode -EXPORT_SYMBOL_GPL vmlinux 0xd9fc16a7 crypto_stats_rng_seed EXPORT_SYMBOL_GPL vmlinux 0xd9ff2172 ezx_pcap_write EXPORT_SYMBOL_GPL vmlinux 0xda0947de kmsg_dump_unregister -EXPORT_SYMBOL_GPL vmlinux 0xda0958be switchdev_bridge_port_unoffload -EXPORT_SYMBOL_GPL vmlinux 0xda107aec acpi_dma_configure_id -EXPORT_SYMBOL_GPL vmlinux 0xda2114c6 dma_request_chan -EXPORT_SYMBOL_GPL vmlinux 0xda2e8de8 netlink_remove_tap -EXPORT_SYMBOL_GPL vmlinux 0xda3154f4 ahci_start_engine EXPORT_SYMBOL_GPL vmlinux 0xda320d31 sfp_module_start -EXPORT_SYMBOL_GPL vmlinux 0xda6c8e8a i2c_match_id +EXPORT_SYMBOL_GPL vmlinux 0xda354d10 pci_device_is_present +EXPORT_SYMBOL_GPL vmlinux 0xda4e3794 iopf_queue_flush_dev +EXPORT_SYMBOL_GPL vmlinux 0xda4f47aa pci_aer_clear_nonfatal_status +EXPORT_SYMBOL_GPL vmlinux 0xda5cfb7a skb_scrub_packet +EXPORT_SYMBOL_GPL vmlinux 0xda62c07f fwnode_handle_put +EXPORT_SYMBOL_GPL vmlinux 0xda64c43c ahci_kick_engine +EXPORT_SYMBOL_GPL vmlinux 0xda67b904 clk_hw_set_parent +EXPORT_SYMBOL_GPL vmlinux 0xda75bf8a sk_msg_free EXPORT_SYMBOL_GPL vmlinux 0xda7912d4 freq_qos_add_request -EXPORT_SYMBOL_GPL vmlinux 0xda89734a pm_runtime_forbid -EXPORT_SYMBOL_GPL vmlinux 0xda8a2ff1 perf_event_create_kernel_counter EXPORT_SYMBOL_GPL vmlinux 0xda8e1302 software_node_find_by_name -EXPORT_SYMBOL_GPL vmlinux 0xda95aa1b meson_pmx_get_funcs_count -EXPORT_SYMBOL_GPL vmlinux 0xda9fe6d2 skcipher_walk_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0xda916daa mmc_pwrseq_unregister +EXPORT_SYMBOL_GPL vmlinux 0xda98f0ce devfreq_get_devfreq_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xda9a8cb3 led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0xda9ca3a3 console_drivers EXPORT_SYMBOL_GPL vmlinux 0xdaa06dc1 acpi_lpat_raw_to_temp -EXPORT_SYMBOL_GPL vmlinux 0xdaa60115 do_xdp_generic +EXPORT_SYMBOL_GPL vmlinux 0xdaa70b3a fuse_conn_put EXPORT_SYMBOL_GPL vmlinux 0xdab5a1eb interval_tree_insert -EXPORT_SYMBOL_GPL vmlinux 0xdac8adde mm_kobj -EXPORT_SYMBOL_GPL vmlinux 0xdac91cdd genphy_c45_loopback -EXPORT_SYMBOL_GPL vmlinux 0xdacbd6d6 pci_epc_set_msi -EXPORT_SYMBOL_GPL vmlinux 0xdae946e5 dev_pm_put_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0xdad6df5c led_classdev_unregister EXPORT_SYMBOL_GPL vmlinux 0xdaf4dfb3 fb_mode_option EXPORT_SYMBOL_GPL vmlinux 0xdaf5c16e __cookie_v4_check -EXPORT_SYMBOL_GPL vmlinux 0xdb00968c tty_port_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0xdb0fd50e em_dev_unregister_perf_domain -EXPORT_SYMBOL_GPL vmlinux 0xdb11bd19 extcon_set_state -EXPORT_SYMBOL_GPL vmlinux 0xdb12a807 usb_disable_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0xdb1b7677 usb_submit_urb -EXPORT_SYMBOL_GPL vmlinux 0xdb27dad4 device_get_named_child_node -EXPORT_SYMBOL_GPL vmlinux 0xdb5b81cd pci_create_root_bus -EXPORT_SYMBOL_GPL vmlinux 0xdb5ec03e get_dev_pagemap -EXPORT_SYMBOL_GPL vmlinux 0xdb620f5f vfs_setxattr +EXPORT_SYMBOL_GPL vmlinux 0xdb02bf62 device_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0xdb08b519 irq_domain_push_irq +EXPORT_SYMBOL_GPL vmlinux 0xdb194c42 class_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xdb1ecb48 __traceiter_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0xdb380870 percpu_down_write +EXPORT_SYMBOL_GPL vmlinux 0xdb4d1385 usb_sg_cancel +EXPORT_SYMBOL_GPL vmlinux 0xdb580d2f pci_epc_set_msi +EXPORT_SYMBOL_GPL vmlinux 0xdb59f041 devm_init_badblocks +EXPORT_SYMBOL_GPL vmlinux 0xdb5cbc04 md_do_sync EXPORT_SYMBOL_GPL vmlinux 0xdb63a944 acpi_lpat_get_conversion_table -EXPORT_SYMBOL_GPL vmlinux 0xdb73e3ba __xdp_build_skb_from_frame -EXPORT_SYMBOL_GPL vmlinux 0xdb8174eb pci_epc_mem_alloc_addr +EXPORT_SYMBOL_GPL vmlinux 0xdb650d6e pwm_request_from_chip +EXPORT_SYMBOL_GPL vmlinux 0xdb78a737 netdev_set_default_ethtool_ops EXPORT_SYMBOL_GPL vmlinux 0xdb82f71f sbitmap_init_node -EXPORT_SYMBOL_GPL vmlinux 0xdb8968c3 tty_put_char EXPORT_SYMBOL_GPL vmlinux 0xdb8a1b3f usermodehelper_read_trylock -EXPORT_SYMBOL_GPL vmlinux 0xdb97c72a l3mdev_link_scope_lookup -EXPORT_SYMBOL_GPL vmlinux 0xdba3e3dc sysfs_remove_files -EXPORT_SYMBOL_GPL vmlinux 0xdbc0a589 of_irq_to_resource -EXPORT_SYMBOL_GPL vmlinux 0xdbd6bb43 kobj_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0xdb8e38e8 em_dev_register_perf_domain +EXPORT_SYMBOL_GPL vmlinux 0xdb8fbd5a regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xdb944bae usb_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xdb9a7494 crypto_register_aead +EXPORT_SYMBOL_GPL vmlinux 0xdba8737f devm_phy_package_join +EXPORT_SYMBOL_GPL vmlinux 0xdbad70ea register_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0xdbc4515a sec_irq_init +EXPORT_SYMBOL_GPL vmlinux 0xdbd0a770 ata_pci_device_suspend +EXPORT_SYMBOL_GPL vmlinux 0xdbd377a2 init_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xdbd43fd1 __blk_req_zone_write_lock 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 0xdbf951fc ahash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xdbfde84b devm_create_dev_dax EXPORT_SYMBOL_GPL vmlinux 0xdc02eb39 dmi_available -EXPORT_SYMBOL_GPL vmlinux 0xdc0b3434 bpf_trace_run7 +EXPORT_SYMBOL_GPL vmlinux 0xdc0bf392 ata_sas_port_stop +EXPORT_SYMBOL_GPL vmlinux 0xdc112a6f acpi_spi_device_alloc 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 0xdc1d754b tcp_set_keepalive -EXPORT_SYMBOL_GPL vmlinux 0xdc25ab55 ahci_ops -EXPORT_SYMBOL_GPL vmlinux 0xdc3f23da genphy_c45_pma_read_abilities +EXPORT_SYMBOL_GPL vmlinux 0xdc2eb974 ata_dummy_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xdc34c00d shake_page EXPORT_SYMBOL_GPL vmlinux 0xdc43bdc6 pci_vpd_find_ro_info_keyword EXPORT_SYMBOL_GPL vmlinux 0xdc45a5db edac_stop_work -EXPORT_SYMBOL_GPL vmlinux 0xdc575b97 devm_get_free_pages -EXPORT_SYMBOL_GPL vmlinux 0xdc5b28c5 tpm2_flush_context -EXPORT_SYMBOL_GPL vmlinux 0xdc5fac3b xhci_add_endpoint +EXPORT_SYMBOL_GPL vmlinux 0xdc566ba3 nvmem_cell_read_variable_le_u64 +EXPORT_SYMBOL_GPL vmlinux 0xdc626942 acpi_find_child_device +EXPORT_SYMBOL_GPL vmlinux 0xdc652939 fixup_user_fault EXPORT_SYMBOL_GPL vmlinux 0xdc6596fa irq_set_parent EXPORT_SYMBOL_GPL vmlinux 0xdc6699cb acpi_dev_free_resource_list -EXPORT_SYMBOL_GPL vmlinux 0xdc6b8d5d irqchip_fwnode_ops 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 0xdc958f92 crypto_skcipher_setkey EXPORT_SYMBOL_GPL vmlinux 0xdc97af2e syscore_suspend -EXPORT_SYMBOL_GPL vmlinux 0xdc9c7109 irq_of_parse_and_map -EXPORT_SYMBOL_GPL vmlinux 0xdc9e74c8 devm_power_supply_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xdc9e26ef fuse_dev_free EXPORT_SYMBOL_GPL vmlinux 0xdc9fa232 raw_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0xdca1e1c2 pinctrl_get -EXPORT_SYMBOL_GPL vmlinux 0xdcbf79c7 ata_cable_ignore -EXPORT_SYMBOL_GPL vmlinux 0xdcc854e7 ata_host_register -EXPORT_SYMBOL_GPL vmlinux 0xdcf7b400 thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0xdca2f749 xdp_master_redirect +EXPORT_SYMBOL_GPL vmlinux 0xdcab6e7c dm_internal_suspend_fast +EXPORT_SYMBOL_GPL vmlinux 0xdcb0b35c get_user_pages_fast_only +EXPORT_SYMBOL_GPL vmlinux 0xdccad175 usb_driver_claim_interface +EXPORT_SYMBOL_GPL vmlinux 0xdccb46dd balloon_page_list_enqueue +EXPORT_SYMBOL_GPL vmlinux 0xdcf3bfff __class_create +EXPORT_SYMBOL_GPL vmlinux 0xdcf3fe18 relay_reset EXPORT_SYMBOL_GPL vmlinux 0xdd0762df set_worker_desc -EXPORT_SYMBOL_GPL vmlinux 0xdd169e49 regulator_bulk_set_supply_names -EXPORT_SYMBOL_GPL vmlinux 0xdd1c2ac8 dev_pm_opp_of_find_icc_paths -EXPORT_SYMBOL_GPL vmlinux 0xdd26b962 gpiod_get_from_of_node +EXPORT_SYMBOL_GPL vmlinux 0xdd07e7a0 blk_ksm_init EXPORT_SYMBOL_GPL vmlinux 0xdd391eff profile_event_unregister -EXPORT_SYMBOL_GPL vmlinux 0xdd450370 iomap_releasepage -EXPORT_SYMBOL_GPL vmlinux 0xdd4aa98a ip6_pol_route +EXPORT_SYMBOL_GPL vmlinux 0xdd4613da loop_backing_file +EXPORT_SYMBOL_GPL vmlinux 0xdd4de91c mtk_eint_do_resume +EXPORT_SYMBOL_GPL vmlinux 0xdd55358b __clk_hw_register_gate EXPORT_SYMBOL_GPL vmlinux 0xdd626ee3 fuse_len_args -EXPORT_SYMBOL_GPL vmlinux 0xdd6ab7e5 crypto_alg_extsize EXPORT_SYMBOL_GPL vmlinux 0xdd6ddcec __traceiter_error_report_end -EXPORT_SYMBOL_GPL vmlinux 0xdd6f9b1f kern_mount +EXPORT_SYMBOL_GPL vmlinux 0xdd80bbcc fsnotify EXPORT_SYMBOL_GPL vmlinux 0xdd81d8f6 __SCK__tp_func_block_bio_complete -EXPORT_SYMBOL_GPL vmlinux 0xdd89e0f9 rio_add_mport_pw_handler -EXPORT_SYMBOL_GPL vmlinux 0xdd8e9ee7 nvdimm_blk_region_create -EXPORT_SYMBOL_GPL vmlinux 0xdd999593 cpufreq_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0xdda02d08 bpf_prog_inc -EXPORT_SYMBOL_GPL vmlinux 0xddaf7a85 sock_prot_inuse_get -EXPORT_SYMBOL_GPL vmlinux 0xddaffd93 tcpv6_prot -EXPORT_SYMBOL_GPL vmlinux 0xddb6fb30 inet_csk_listen_start +EXPORT_SYMBOL_GPL vmlinux 0xdd8b8459 kernel_kobj +EXPORT_SYMBOL_GPL vmlinux 0xddb2ddd0 ethnl_cable_test_result +EXPORT_SYMBOL_GPL vmlinux 0xddb40400 fscrypt_set_bio_crypt_ctx +EXPORT_SYMBOL_GPL vmlinux 0xddbd3929 pwm_get_chip_data EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove -EXPORT_SYMBOL_GPL vmlinux 0xddbf5094 dev_pm_opp_set_prop_name +EXPORT_SYMBOL_GPL vmlinux 0xddcc448a __traceiter_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0xdddc4f86 inet_csk_listen_stop +EXPORT_SYMBOL_GPL vmlinux 0xdddf3b39 xdp_return_frame_rx_napi +EXPORT_SYMBOL_GPL vmlinux 0xdddfb302 pm_clk_destroy +EXPORT_SYMBOL_GPL vmlinux 0xdde1fb58 of_irq_get_byname +EXPORT_SYMBOL_GPL vmlinux 0xdde6acae key_type_user +EXPORT_SYMBOL_GPL vmlinux 0xddf2c72f __fscrypt_prepare_rename EXPORT_SYMBOL_GPL vmlinux 0xddf32520 __tracepoint_powernv_throttle -EXPORT_SYMBOL_GPL vmlinux 0xddf96438 usb_reset_endpoint -EXPORT_SYMBOL_GPL vmlinux 0xde0157d3 skcipher_alloc_instance_simple +EXPORT_SYMBOL_GPL vmlinux 0xddfa9465 ohci_hub_status_data +EXPORT_SYMBOL_GPL vmlinux 0xddfc3e04 sysfs_create_link_nowarn +EXPORT_SYMBOL_GPL vmlinux 0xde0543c8 tegra_mc_write_emem_configuration EXPORT_SYMBOL_GPL vmlinux 0xde09a94d xas_find -EXPORT_SYMBOL_GPL vmlinux 0xde18a100 virtqueue_get_buf_ctx -EXPORT_SYMBOL_GPL vmlinux 0xde5c822d serial8250_update_uartclk +EXPORT_SYMBOL_GPL vmlinux 0xde19b8e9 fscrypt_ioctl_get_key_status +EXPORT_SYMBOL_GPL vmlinux 0xde596d65 sk_psock_msg_verdict +EXPORT_SYMBOL_GPL vmlinux 0xde61038a regulator_map_voltage_iterate +EXPORT_SYMBOL_GPL vmlinux 0xde6456bb sched_trace_cfs_rq_avg +EXPORT_SYMBOL_GPL vmlinux 0xde651f73 __strp_unpause +EXPORT_SYMBOL_GPL vmlinux 0xde69291a led_classdev_resume EXPORT_SYMBOL_GPL vmlinux 0xde6f1851 TSS_checkhmac1 -EXPORT_SYMBOL_GPL vmlinux 0xde775596 dma_buf_unmap_attachment -EXPORT_SYMBOL_GPL vmlinux 0xde7f6788 led_trigger_unregister_simple -EXPORT_SYMBOL_GPL vmlinux 0xde93b1bc __traceiter_block_split -EXPORT_SYMBOL_GPL vmlinux 0xde95ebba devlink_port_params_register +EXPORT_SYMBOL_GPL vmlinux 0xde727c5d tty_kclose +EXPORT_SYMBOL_GPL vmlinux 0xde74bd67 dev_pm_opp_of_add_table_noclk +EXPORT_SYMBOL_GPL vmlinux 0xde75fbe6 devm_spi_mem_dirmap_create +EXPORT_SYMBOL_GPL vmlinux 0xde778f9b irq_domain_disconnect_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0xde78b2e7 devlink_params_unpublish +EXPORT_SYMBOL_GPL vmlinux 0xde7cd573 devm_of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xde7cf659 of_mpc8xxx_spi_probe +EXPORT_SYMBOL_GPL vmlinux 0xde877147 ipv4_redirect +EXPORT_SYMBOL_GPL vmlinux 0xde9173a3 __blk_mq_debugfs_rq_show EXPORT_SYMBOL_GPL vmlinux 0xde9ab8c7 xenbus_rm -EXPORT_SYMBOL_GPL vmlinux 0xdeabfaa3 powercap_unregister_zone -EXPORT_SYMBOL_GPL vmlinux 0xdeaf1775 scsi_register_device_handler -EXPORT_SYMBOL_GPL vmlinux 0xdeca9257 __traceiter_block_rq_remap -EXPORT_SYMBOL_GPL vmlinux 0xdee103a5 usb_sg_cancel -EXPORT_SYMBOL_GPL vmlinux 0xdef0ae59 platform_bus +EXPORT_SYMBOL_GPL vmlinux 0xdea7c8d7 dev_pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0xdeb48b8a dev_pm_domain_set +EXPORT_SYMBOL_GPL vmlinux 0xdec7b60e pci_epc_add_epf +EXPORT_SYMBOL_GPL vmlinux 0xded56aaf scsi_host_unblock +EXPORT_SYMBOL_GPL vmlinux 0xdef68772 d_exchange EXPORT_SYMBOL_GPL vmlinux 0xdeffa0a7 edac_raw_mc_handle_error -EXPORT_SYMBOL_GPL vmlinux 0xdf09fa1c usb_get_intf +EXPORT_SYMBOL_GPL vmlinux 0xdf0136cd devlink_trap_policers_register +EXPORT_SYMBOL_GPL vmlinux 0xdf02d898 phy_resolve_aneg_pause +EXPORT_SYMBOL_GPL vmlinux 0xdf0492f8 spi_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0xdf0796a1 of_usb_get_dr_mode_by_phy EXPORT_SYMBOL_GPL vmlinux 0xdf0ca3f4 cpu_latency_qos_request_active EXPORT_SYMBOL_GPL vmlinux 0xdf0f75c6 eventfd_signal -EXPORT_SYMBOL_GPL vmlinux 0xdf180e24 ata_sff_qc_fill_rtf -EXPORT_SYMBOL_GPL vmlinux 0xdf18d5e6 clk_hw_get_parent_index +EXPORT_SYMBOL_GPL vmlinux 0xdf1122bd ahci_platform_suspend_host +EXPORT_SYMBOL_GPL vmlinux 0xdf26bae2 clk_regmap_mux_ro_ops EXPORT_SYMBOL_GPL vmlinux 0xdf2738bb cpu_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xdf30182e devlink_traps_unregister -EXPORT_SYMBOL_GPL vmlinux 0xdf3624ab __traceiter_sched_util_est_cfs_tp -EXPORT_SYMBOL_GPL vmlinux 0xdf411881 devm_qcom_smem_state_get +EXPORT_SYMBOL_GPL vmlinux 0xdf3b5e1b usb_ep0_reinit EXPORT_SYMBOL_GPL vmlinux 0xdf448d1c fanout_mutex -EXPORT_SYMBOL_GPL vmlinux 0xdf45b113 ip6_route_lookup -EXPORT_SYMBOL_GPL vmlinux 0xdf49a868 mptcp_get_reset_option -EXPORT_SYMBOL_GPL vmlinux 0xdf639ad3 __strp_unpause -EXPORT_SYMBOL_GPL vmlinux 0xdf7bda9a inet6_destroy_sock -EXPORT_SYMBOL_GPL vmlinux 0xdf8235a0 md_do_sync -EXPORT_SYMBOL_GPL vmlinux 0xdf8a65bb bus_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xdf8d4368 tpm1_getcap -EXPORT_SYMBOL_GPL vmlinux 0xdfa28e54 serdev_controller_alloc -EXPORT_SYMBOL_GPL vmlinux 0xdfa68248 acomp_request_alloc -EXPORT_SYMBOL_GPL vmlinux 0xdfadd2fb regulator_enable -EXPORT_SYMBOL_GPL vmlinux 0xdfb6fbe0 wm8350_reg_write -EXPORT_SYMBOL_GPL vmlinux 0xdfc1bbef tpm_tis_remove +EXPORT_SYMBOL_GPL vmlinux 0xdf48f26a devm_clk_bulk_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xdf549fef regulator_enable +EXPORT_SYMBOL_GPL vmlinux 0xdf8798c9 scmi_protocol_register +EXPORT_SYMBOL_GPL vmlinux 0xdf8a4e4e l3mdev_fib_table_rcu +EXPORT_SYMBOL_GPL vmlinux 0xdf8cc9e8 crypto_drop_spawn +EXPORT_SYMBOL_GPL vmlinux 0xdfc37ae8 of_thermal_get_ntrips +EXPORT_SYMBOL_GPL vmlinux 0xdfc40912 tcp_set_state EXPORT_SYMBOL_GPL vmlinux 0xdfcb6c90 mctrl_gpio_set -EXPORT_SYMBOL_GPL vmlinux 0xdfd116be crypto_register_aead -EXPORT_SYMBOL_GPL vmlinux 0xdfe102d0 fat_getattr -EXPORT_SYMBOL_GPL vmlinux 0xdfe44b79 bgpio_init -EXPORT_SYMBOL_GPL vmlinux 0xdfecf7db dev_pm_opp_of_register_em -EXPORT_SYMBOL_GPL vmlinux 0xdff0e2b6 gpiochip_line_is_open_drain -EXPORT_SYMBOL_GPL vmlinux 0xe010892c pci_find_vsec_capability +EXPORT_SYMBOL_GPL vmlinux 0xdfcc2267 crypto_shoot_alg +EXPORT_SYMBOL_GPL vmlinux 0xdfce4348 cdrom_multisession +EXPORT_SYMBOL_GPL vmlinux 0xdfd379b0 pci_d3cold_disable +EXPORT_SYMBOL_GPL vmlinux 0xdfd65181 usb_get_intf +EXPORT_SYMBOL_GPL vmlinux 0xdfdaadce led_trigger_event +EXPORT_SYMBOL_GPL vmlinux 0xdff77c6f sdev_evt_send +EXPORT_SYMBOL_GPL vmlinux 0xe0138ae9 crypto_unregister_acomp EXPORT_SYMBOL_GPL vmlinux 0xe01f4cb0 irq_force_affinity -EXPORT_SYMBOL_GPL vmlinux 0xe024fc77 blk_update_request +EXPORT_SYMBOL_GPL vmlinux 0xe0215754 devlink_port_attrs_pci_vf_set +EXPORT_SYMBOL_GPL vmlinux 0xe027dc04 sdio_signal_irq EXPORT_SYMBOL_GPL vmlinux 0xe0313d71 rhashtable_insert_slow -EXPORT_SYMBOL_GPL vmlinux 0xe0346921 pinctrl_generic_remove_group -EXPORT_SYMBOL_GPL vmlinux 0xe03c23f5 fsl_mc_resource_allocate -EXPORT_SYMBOL_GPL vmlinux 0xe03e1e52 tracing_snapshot_cond -EXPORT_SYMBOL_GPL vmlinux 0xe045a641 of_usb_update_otg_caps -EXPORT_SYMBOL_GPL vmlinux 0xe04ba8cf fib_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0xe03730fc devlink_port_health_reporter_create +EXPORT_SYMBOL_GPL vmlinux 0xe053fb4e serdev_device_set_tiocm +EXPORT_SYMBOL_GPL vmlinux 0xe059c8ea pm_genpd_remove_device EXPORT_SYMBOL_GPL vmlinux 0xe05e2f85 nexthop_free_rcu -EXPORT_SYMBOL_GPL vmlinux 0xe065e7ff led_sysfs_enable -EXPORT_SYMBOL_GPL vmlinux 0xe07fea1e pm_generic_poweroff_noirq -EXPORT_SYMBOL_GPL vmlinux 0xe08d4280 wm831x_auxadc_read -EXPORT_SYMBOL_GPL vmlinux 0xe09131c0 of_clk_src_simple_get -EXPORT_SYMBOL_GPL vmlinux 0xe098f89c wait_for_stable_page -EXPORT_SYMBOL_GPL vmlinux 0xe09b9df0 __traceiter_attach_device_to_domain -EXPORT_SYMBOL_GPL vmlinux 0xe09c4db6 __percpu_init_rwsem -EXPORT_SYMBOL_GPL vmlinux 0xe0a27fd9 crypto_alg_mod_lookup -EXPORT_SYMBOL_GPL vmlinux 0xe0a29562 regmap_raw_read +EXPORT_SYMBOL_GPL vmlinux 0xe06061ae irq_domain_alloc_irqs_parent +EXPORT_SYMBOL_GPL vmlinux 0xe06982e2 mmc_cmdq_enable +EXPORT_SYMBOL_GPL vmlinux 0xe074a133 l3mdev_fib_table_by_index EXPORT_SYMBOL_GPL vmlinux 0xe0b1c103 clk_set_max_rate -EXPORT_SYMBOL_GPL vmlinux 0xe0baf6e9 inet6_lookup -EXPORT_SYMBOL_GPL vmlinux 0xe0d1f331 sock_map_close -EXPORT_SYMBOL_GPL vmlinux 0xe0d217f4 clk_divider_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0xe0ba375e misc_cg_try_charge +EXPORT_SYMBOL_GPL vmlinux 0xe0cd06c2 spi_take_timestamp_post +EXPORT_SYMBOL_GPL vmlinux 0xe0cda47f irq_gc_mask_set_bit +EXPORT_SYMBOL_GPL vmlinux 0xe0d0772d extcon_get_extcon_dev +EXPORT_SYMBOL_GPL vmlinux 0xe0d4b9b2 skb_consume_udp +EXPORT_SYMBOL_GPL vmlinux 0xe0d820fd ata_link_abort +EXPORT_SYMBOL_GPL vmlinux 0xe0d90ba9 l3mdev_table_lookup_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe0de465a da9052_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0xe0dec2c8 __put_task_struct +EXPORT_SYMBOL_GPL vmlinux 0xe0e2d4d2 pm_clk_add_notifier EXPORT_SYMBOL_GPL vmlinux 0xe0e3147c HYPERVISOR_sched_op -EXPORT_SYMBOL_GPL vmlinux 0xe0e49fd1 irq_domain_xlate_onecell -EXPORT_SYMBOL_GPL vmlinux 0xe0e552d2 ata_port_desc -EXPORT_SYMBOL_GPL vmlinux 0xe0e906f0 input_ff_flush -EXPORT_SYMBOL_GPL vmlinux 0xe0fb937c tpm2_probe +EXPORT_SYMBOL_GPL vmlinux 0xe0e439ab transport_remove_device +EXPORT_SYMBOL_GPL vmlinux 0xe0f55057 proc_mkdir_data +EXPORT_SYMBOL_GPL vmlinux 0xe0fdb188 firmware_request_nowarn +EXPORT_SYMBOL_GPL vmlinux 0xe0fde332 devm_remove_action +EXPORT_SYMBOL_GPL vmlinux 0xe104972a dev_pm_opp_attach_genpd EXPORT_SYMBOL_GPL vmlinux 0xe10cd6ad erst_get_record_id_begin -EXPORT_SYMBOL_GPL vmlinux 0xe11b5c97 fsnotify_destroy_mark -EXPORT_SYMBOL_GPL vmlinux 0xe11f926f usb_role_switch_get -EXPORT_SYMBOL_GPL vmlinux 0xe12fa691 bpf_prog_alloc -EXPORT_SYMBOL_GPL vmlinux 0xe1337458 da9052_adc_manual_read -EXPORT_SYMBOL_GPL vmlinux 0xe14f8131 regulator_bulk_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0xe15f1ad2 ethnl_cable_test_result +EXPORT_SYMBOL_GPL vmlinux 0xe10f59c0 __rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe11358d6 watchdog_set_last_hw_keepalive +EXPORT_SYMBOL_GPL vmlinux 0xe135f6ba task_cputime_adjusted +EXPORT_SYMBOL_GPL vmlinux 0xe14a868c pci_epc_mem_init +EXPORT_SYMBOL_GPL vmlinux 0xe156b5b9 iommu_sva_free_pasid +EXPORT_SYMBOL_GPL vmlinux 0xe1589731 dev_pm_opp_set_prop_name +EXPORT_SYMBOL_GPL vmlinux 0xe166de87 devfreq_event_disable_edev EXPORT_SYMBOL_GPL vmlinux 0xe1775ee7 dm_get_reserved_bio_based_ios -EXPORT_SYMBOL_GPL vmlinux 0xe196453b bpf_prog_inc_not_zero -EXPORT_SYMBOL_GPL vmlinux 0xe19c5482 regcache_cache_bypass -EXPORT_SYMBOL_GPL vmlinux 0xe1a209e9 of_clk_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0xe1860fd1 crypto_rng_reset +EXPORT_SYMBOL_GPL vmlinux 0xe1a6eace usb_role_switch_get EXPORT_SYMBOL_GPL vmlinux 0xe1a8d7c9 net_rwsem -EXPORT_SYMBOL_GPL vmlinux 0xe1b843f5 pinctrl_lookup_state +EXPORT_SYMBOL_GPL vmlinux 0xe1b84612 devlink_param_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe1b90b45 usb_anchor_urb +EXPORT_SYMBOL_GPL vmlinux 0xe1bc0449 relay_switch_subbuf EXPORT_SYMBOL_GPL vmlinux 0xe1bd6c99 rio_init_mports +EXPORT_SYMBOL_GPL vmlinux 0xe1c4a416 device_remove_properties EXPORT_SYMBOL_GPL vmlinux 0xe1c63523 blk_ksm_get_slot_idx -EXPORT_SYMBOL_GPL vmlinux 0xe1dab32b skb_zerocopy_headlen -EXPORT_SYMBOL_GPL vmlinux 0xe1f007c2 relay_switch_subbuf -EXPORT_SYMBOL_GPL vmlinux 0xe1f7bfc3 crypto_stats_akcipher_decrypt -EXPORT_SYMBOL_GPL vmlinux 0xe2070576 extcon_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xe210a3f9 hwspin_lock_get_id -EXPORT_SYMBOL_GPL vmlinux 0xe217145e phy_validate -EXPORT_SYMBOL_GPL vmlinux 0xe2246d12 clk_hw_get_flags -EXPORT_SYMBOL_GPL vmlinux 0xe226aa29 rio_release_inb_dbell -EXPORT_SYMBOL_GPL vmlinux 0xe228d05b shmem_truncate_range +EXPORT_SYMBOL_GPL vmlinux 0xe1e70d85 __clocksource_update_freq_scale +EXPORT_SYMBOL_GPL vmlinux 0xe1e75c99 fwnode_get_phy_node +EXPORT_SYMBOL_GPL vmlinux 0xe1e948ac rockchip_pcie_cfg_configuration_accesses +EXPORT_SYMBOL_GPL vmlinux 0xe20fe103 regulator_is_supported_voltage +EXPORT_SYMBOL_GPL vmlinux 0xe226d99d ptp_parse_header +EXPORT_SYMBOL_GPL vmlinux 0xe22ac3cb iommu_group_add_device +EXPORT_SYMBOL_GPL vmlinux 0xe22c9b1a bus_rescan_devices +EXPORT_SYMBOL_GPL vmlinux 0xe22ffbda debugfs_create_bool EXPORT_SYMBOL_GPL vmlinux 0xe233762a input_event_from_user -EXPORT_SYMBOL_GPL vmlinux 0xe2365f59 init_user_ns -EXPORT_SYMBOL_GPL vmlinux 0xe259d25a usb_bulk_msg +EXPORT_SYMBOL_GPL vmlinux 0xe23ca087 xdp_build_skb_from_frame +EXPORT_SYMBOL_GPL vmlinux 0xe24151d9 find_asymmetric_key EXPORT_SYMBOL_GPL vmlinux 0xe25d23f3 blocking_notifier_call_chain_robust -EXPORT_SYMBOL_GPL vmlinux 0xe269ceab of_get_regulator_init_data -EXPORT_SYMBOL_GPL vmlinux 0xe27225a8 fsnotify_put_mark -EXPORT_SYMBOL_GPL vmlinux 0xe275fefb clk_hw_set_rate_range -EXPORT_SYMBOL_GPL vmlinux 0xe27ca023 meson_clk_dualdiv_ops -EXPORT_SYMBOL_GPL vmlinux 0xe28e6682 __traceiter_rpm_return_int -EXPORT_SYMBOL_GPL vmlinux 0xe2918983 spi_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0xe2a6ccdc scsi_target_block -EXPORT_SYMBOL_GPL vmlinux 0xe2add1a4 devm_hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe26bc28b dev_attr_ncq_prio_supported +EXPORT_SYMBOL_GPL vmlinux 0xe2738cec cpufreq_disable_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0xe278ff29 ata_pci_sff_init_one +EXPORT_SYMBOL_GPL vmlinux 0xe27e5523 fl6_merge_options +EXPORT_SYMBOL_GPL vmlinux 0xe27e766b ata_std_sched_eh +EXPORT_SYMBOL_GPL vmlinux 0xe28efddb led_classdev_notify_brightness_hw_changed +EXPORT_SYMBOL_GPL vmlinux 0xe294fc3c led_set_brightness +EXPORT_SYMBOL_GPL vmlinux 0xe299a1f0 debugfs_create_file_size +EXPORT_SYMBOL_GPL vmlinux 0xe29d3a47 inet6_csk_xmit +EXPORT_SYMBOL_GPL vmlinux 0xe29fc0ff pfn_to_online_page EXPORT_SYMBOL_GPL vmlinux 0xe2b3207a unregister_switchdev_notifier -EXPORT_SYMBOL_GPL vmlinux 0xe2bb7bcb input_ff_destroy +EXPORT_SYMBOL_GPL vmlinux 0xe2c95ded crypto_destroy_tfm EXPORT_SYMBOL_GPL vmlinux 0xe2ce2b4d evm_set_key -EXPORT_SYMBOL_GPL vmlinux 0xe2f2e4d9 platform_device_alloc -EXPORT_SYMBOL_GPL vmlinux 0xe30e97a6 iommu_report_device_fault +EXPORT_SYMBOL_GPL vmlinux 0xe2f2b574 crypto_stats_get +EXPORT_SYMBOL_GPL vmlinux 0xe303d740 crypto_alloc_aead +EXPORT_SYMBOL_GPL vmlinux 0xe30b4fba vp_modern_get_queue_enable EXPORT_SYMBOL_GPL vmlinux 0xe31315a4 spi_delay_exec -EXPORT_SYMBOL_GPL vmlinux 0xe329f53f usb_unanchor_urb -EXPORT_SYMBOL_GPL vmlinux 0xe33649d0 rtc_class_open +EXPORT_SYMBOL_GPL vmlinux 0xe316be97 em_dev_unregister_perf_domain +EXPORT_SYMBOL_GPL vmlinux 0xe3351e89 device_add_software_node EXPORT_SYMBOL_GPL vmlinux 0xe338c5ac inet_hashinfo2_init_mod -EXPORT_SYMBOL_GPL vmlinux 0xe34994b0 perf_trace_run_bpf_submit -EXPORT_SYMBOL_GPL vmlinux 0xe3661fd1 __iomap_dio_rw -EXPORT_SYMBOL_GPL vmlinux 0xe375c1ef ehci_reset -EXPORT_SYMBOL_GPL vmlinux 0xe37daf52 netdev_walk_all_lower_dev_rcu +EXPORT_SYMBOL_GPL vmlinux 0xe34058ce __traceiter_sched_util_est_se_tp +EXPORT_SYMBOL_GPL vmlinux 0xe34184a4 mbox_request_channel_byname +EXPORT_SYMBOL_GPL vmlinux 0xe346bb3b fsnotify_get_group +EXPORT_SYMBOL_GPL vmlinux 0xe3474154 dma_max_mapping_size +EXPORT_SYMBOL_GPL vmlinux 0xe35f3d41 regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0xe37b7b64 crypto_unregister_kpp +EXPORT_SYMBOL_GPL vmlinux 0xe37fb8dc acpi_driver_match_device +EXPORT_SYMBOL_GPL vmlinux 0xe380923c tps65912_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0xe38c707d crypto_register_templates EXPORT_SYMBOL_GPL vmlinux 0xe397caf5 seq_buf_printf +EXPORT_SYMBOL_GPL vmlinux 0xe39b0afb rdev_get_drvdata EXPORT_SYMBOL_GPL vmlinux 0xe39d0794 usb_phy_roothub_exit -EXPORT_SYMBOL_GPL vmlinux 0xe3a3ab8a inet_csk_listen_stop +EXPORT_SYMBOL_GPL vmlinux 0xe39f5663 ip_build_and_send_pkt +EXPORT_SYMBOL_GPL vmlinux 0xe3a5bc5c of_icc_bulk_get EXPORT_SYMBOL_GPL vmlinux 0xe3b09712 kprobe_event_delete -EXPORT_SYMBOL_GPL vmlinux 0xe3c19c93 kvm_clear_guest +EXPORT_SYMBOL_GPL vmlinux 0xe3bfec05 __irq_domain_add +EXPORT_SYMBOL_GPL vmlinux 0xe3c90a19 ahci_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xe3cd0d3b __lock_page_killable EXPORT_SYMBOL_GPL vmlinux 0xe3cd5fae klist_iter_init -EXPORT_SYMBOL_GPL vmlinux 0xe3d8a8aa tty_port_tty_hangup -EXPORT_SYMBOL_GPL vmlinux 0xe3e25e6e usb_amd_pt_check_port -EXPORT_SYMBOL_GPL vmlinux 0xe4081e61 __vfs_setxattr_locked +EXPORT_SYMBOL_GPL vmlinux 0xe3da07e5 of_regulator_match +EXPORT_SYMBOL_GPL vmlinux 0xe3dbd14b pci_create_slot +EXPORT_SYMBOL_GPL vmlinux 0xe3dd41f3 securityfs_remove +EXPORT_SYMBOL_GPL vmlinux 0xe3e5bfa7 blkcg_deactivate_policy +EXPORT_SYMBOL_GPL vmlinux 0xe3fa4c7d trace_define_field EXPORT_SYMBOL_GPL vmlinux 0xe40bb23e devlink_health_reporter_priv -EXPORT_SYMBOL_GPL vmlinux 0xe4173a5e vcpu_load +EXPORT_SYMBOL_GPL vmlinux 0xe40e1b21 ahci_start_engine +EXPORT_SYMBOL_GPL vmlinux 0xe42064b3 skb_complete_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0xe42075ef xdp_rxq_info_reg_mem_model EXPORT_SYMBOL_GPL vmlinux 0xe4248980 cper_estatus_print EXPORT_SYMBOL_GPL vmlinux 0xe4309905 syscore_resume -EXPORT_SYMBOL_GPL vmlinux 0xe4380238 synth_event_trace_array -EXPORT_SYMBOL_GPL vmlinux 0xe4438ade fscrypt_symlink_getattr -EXPORT_SYMBOL_GPL vmlinux 0xe4534aa9 ata_sff_hsm_move -EXPORT_SYMBOL_GPL vmlinux 0xe4670e41 __fl6_sock_lookup -EXPORT_SYMBOL_GPL vmlinux 0xe478e4f9 dev_attr_ncq_prio_supported -EXPORT_SYMBOL_GPL vmlinux 0xe4901cb3 fuse_direct_io +EXPORT_SYMBOL_GPL vmlinux 0xe4375a02 acpi_dev_get_property +EXPORT_SYMBOL_GPL vmlinux 0xe4383d0f acpi_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0xe43a0e79 page_endio +EXPORT_SYMBOL_GPL vmlinux 0xe444e704 fscrypt_set_bio_crypt_ctx_bh +EXPORT_SYMBOL_GPL vmlinux 0xe45e3b55 ata_common_sdev_attrs +EXPORT_SYMBOL_GPL vmlinux 0xe46a2804 ata_bmdma_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0xe474ad31 tty_get_pgrp +EXPORT_SYMBOL_GPL vmlinux 0xe4813f16 thermal_zone_device_register EXPORT_SYMBOL_GPL vmlinux 0xe491e700 unregister_kprobes +EXPORT_SYMBOL_GPL vmlinux 0xe493a4c1 dpbp_disable EXPORT_SYMBOL_GPL vmlinux 0xe4971ade tracing_alloc_snapshot -EXPORT_SYMBOL_GPL vmlinux 0xe4a50500 pci_bus_max_busnr EXPORT_SYMBOL_GPL vmlinux 0xe4b064f9 pcie_link_speed -EXPORT_SYMBOL_GPL vmlinux 0xe4b26d57 virtqueue_get_used_addr EXPORT_SYMBOL_GPL vmlinux 0xe4b818c3 phy_speed_to_str EXPORT_SYMBOL_GPL vmlinux 0xe4b93f27 public_key_verify_signature -EXPORT_SYMBOL_GPL vmlinux 0xe4bfae2c k3_udma_glue_rx_get_dma_device EXPORT_SYMBOL_GPL vmlinux 0xe4c2c66c rtc_ktime_to_tm -EXPORT_SYMBOL_GPL vmlinux 0xe4d83692 irq_domain_get_irq_data -EXPORT_SYMBOL_GPL vmlinux 0xe4d97cc3 dev_pm_genpd_remove_notifier -EXPORT_SYMBOL_GPL vmlinux 0xe4e40700 dpbp_reset +EXPORT_SYMBOL_GPL vmlinux 0xe4c78462 ata_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0xe4cb8411 usb_find_interface +EXPORT_SYMBOL_GPL vmlinux 0xe4d3d286 irq_gc_mask_clr_bit +EXPORT_SYMBOL_GPL vmlinux 0xe4d4e7ec irq_chip_get_parent_state EXPORT_SYMBOL_GPL vmlinux 0xe4e48b12 swphy_validate_state -EXPORT_SYMBOL_GPL vmlinux 0xe4ebe6a9 serial8250_init_port -EXPORT_SYMBOL_GPL vmlinux 0xe4f57a5d iomap_file_buffered_write -EXPORT_SYMBOL_GPL vmlinux 0xe51182d4 find_mci_by_dev -EXPORT_SYMBOL_GPL vmlinux 0xe516bfdf to_nvdimm_bus_dev -EXPORT_SYMBOL_GPL vmlinux 0xe518a023 scsi_internal_device_block_nowait -EXPORT_SYMBOL_GPL vmlinux 0xe53ccff6 fib6_check_nexthop -EXPORT_SYMBOL_GPL vmlinux 0xe54a63a5 key_set_timeout -EXPORT_SYMBOL_GPL vmlinux 0xe54b583c dev_nit_active +EXPORT_SYMBOL_GPL vmlinux 0xe4f2dc77 cpufreq_dbs_governor_stop +EXPORT_SYMBOL_GPL vmlinux 0xe4f5277c regulator_suspend_disable +EXPORT_SYMBOL_GPL vmlinux 0xe5250f10 ip6_datagram_send_ctl +EXPORT_SYMBOL_GPL vmlinux 0xe549f7ad ata_sas_async_probe EXPORT_SYMBOL_GPL vmlinux 0xe5516728 k3_udma_glue_tx_get_irq -EXPORT_SYMBOL_GPL vmlinux 0xe555ba6c fsverity_verify_bio -EXPORT_SYMBOL_GPL vmlinux 0xe56eee57 sysfs_create_file_ns -EXPORT_SYMBOL_GPL vmlinux 0xe5712dc2 __traceiter_sched_cpu_capacity_tp -EXPORT_SYMBOL_GPL vmlinux 0xe57420aa usb_disable_ltm -EXPORT_SYMBOL_GPL vmlinux 0xe585a9ec ahci_platform_ops +EXPORT_SYMBOL_GPL vmlinux 0xe5565a9a blk_mq_start_stopped_hw_queue +EXPORT_SYMBOL_GPL vmlinux 0xe56d4f82 usb_clear_halt +EXPORT_SYMBOL_GPL vmlinux 0xe56d7a03 sbitmap_queue_show +EXPORT_SYMBOL_GPL vmlinux 0xe56f2637 usb_get_from_anchor +EXPORT_SYMBOL_GPL vmlinux 0xe580be8c skb_complete_wifi_ack +EXPORT_SYMBOL_GPL vmlinux 0xe58644be bpf_trace_run3 EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe58adc3d bpf_trace_run1 -EXPORT_SYMBOL_GPL vmlinux 0xe58d61fd attribute_container_find_class_device -EXPORT_SYMBOL_GPL vmlinux 0xe58fd4c7 syscon_regmap_lookup_by_phandle_args -EXPORT_SYMBOL_GPL vmlinux 0xe590605a iommu_aux_get_pasid -EXPORT_SYMBOL_GPL vmlinux 0xe5948fc2 spi_busnum_to_master -EXPORT_SYMBOL_GPL vmlinux 0xe5a74197 phy_configure +EXPORT_SYMBOL_GPL vmlinux 0xe58d2698 fsl_mc_bus_dpdbg_type +EXPORT_SYMBOL_GPL vmlinux 0xe58ef1fd phy_resolve_aneg_linkmode +EXPORT_SYMBOL_GPL vmlinux 0xe59c21aa wakeup_source_destroy EXPORT_SYMBOL_GPL vmlinux 0xe5a925d3 zynqmp_pm_init_finalize -EXPORT_SYMBOL_GPL vmlinux 0xe5afb718 dw_pcie_own_conf_map_bus -EXPORT_SYMBOL_GPL vmlinux 0xe5be19ba rio_mport_chk_dev_access +EXPORT_SYMBOL_GPL vmlinux 0xe5bc6345 usb_store_new_id EXPORT_SYMBOL_GPL vmlinux 0xe5c02b64 freq_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0xe5c515f6 pm_genpd_add_subdomain EXPORT_SYMBOL_GPL vmlinux 0xe5cb1943 hisi_clk_register_divider -EXPORT_SYMBOL_GPL vmlinux 0xe5cb8418 page_endio EXPORT_SYMBOL_GPL vmlinux 0xe5ce1a56 rhashtable_walk_enter EXPORT_SYMBOL_GPL vmlinux 0xe5d0164f acpi_get_psd_map -EXPORT_SYMBOL_GPL vmlinux 0xe5d09b64 do_unbind_con_driver -EXPORT_SYMBOL_GPL vmlinux 0xe5ed5a3b sysfs_notify -EXPORT_SYMBOL_GPL vmlinux 0xe5fa0f01 regmap_multi_reg_write -EXPORT_SYMBOL_GPL vmlinux 0xe600e460 vfs_lock_file -EXPORT_SYMBOL_GPL vmlinux 0xe60357bf devm_regmap_add_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0xe605c9eb unmap_mapping_pages +EXPORT_SYMBOL_GPL vmlinux 0xe5d64177 __raw_v4_lookup +EXPORT_SYMBOL_GPL vmlinux 0xe5e52f76 usb_autopm_put_interface_no_suspend +EXPORT_SYMBOL_GPL vmlinux 0xe5e74c0d of_remove_property +EXPORT_SYMBOL_GPL vmlinux 0xe5e828e1 rtc_read_time +EXPORT_SYMBOL_GPL vmlinux 0xe5f1b884 gpiod_get_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xe5fb27bf nd_blk_region_to_dimm +EXPORT_SYMBOL_GPL vmlinux 0xe6016ff0 exportfs_encode_inode_fh EXPORT_SYMBOL_GPL vmlinux 0xe60632a9 edac_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xe60712aa fb_deferred_io_init EXPORT_SYMBOL_GPL vmlinux 0xe60a5e8d pids_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xe611f0fd linear_hugepage_index -EXPORT_SYMBOL_GPL vmlinux 0xe61e749a devm_pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0xe6119749 dprc_open +EXPORT_SYMBOL_GPL vmlinux 0xe621fa59 fsl_mc_bus_dpaiop_type EXPORT_SYMBOL_GPL vmlinux 0xe628bb9f phy_fibre_port_array -EXPORT_SYMBOL_GPL vmlinux 0xe632e4f2 dev_pm_opp_set_rate -EXPORT_SYMBOL_GPL vmlinux 0xe63c3845 devlink_port_type_eth_set -EXPORT_SYMBOL_GPL vmlinux 0xe654dfe9 pci_max_pasids -EXPORT_SYMBOL_GPL vmlinux 0xe664635f dev_pm_opp_get_of_node -EXPORT_SYMBOL_GPL vmlinux 0xe668acd6 tpm_tis_core_init -EXPORT_SYMBOL_GPL vmlinux 0xe68cdec7 __devm_clk_hw_register_divider -EXPORT_SYMBOL_GPL vmlinux 0xe69cb4e5 fsverity_cleanup_inode -EXPORT_SYMBOL_GPL vmlinux 0xe6b3d9ce dev_pm_opp_free_cpufreq_table -EXPORT_SYMBOL_GPL vmlinux 0xe6b9e533 fuse_dev_fiq_ops -EXPORT_SYMBOL_GPL vmlinux 0xe6bb8423 usb_hub_release_port -EXPORT_SYMBOL_GPL vmlinux 0xe6d48897 sata_lpm_ignore_phy_events +EXPORT_SYMBOL_GPL vmlinux 0xe63b155f dev_pm_opp_add +EXPORT_SYMBOL_GPL vmlinux 0xe64c9cf6 sata_link_debounce +EXPORT_SYMBOL_GPL vmlinux 0xe6654bb3 mmc_switch +EXPORT_SYMBOL_GPL vmlinux 0xe6688421 devlink_trap_groups_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe67252a4 virtqueue_get_desc_addr +EXPORT_SYMBOL_GPL vmlinux 0xe682fa3a fwnode_graph_get_remote_port_parent +EXPORT_SYMBOL_GPL vmlinux 0xe691eb51 tty_prepare_flip_string +EXPORT_SYMBOL_GPL vmlinux 0xe69440b1 imx_pinctrl_sc_ipc_init +EXPORT_SYMBOL_GPL vmlinux 0xe6987536 usb_choose_configuration +EXPORT_SYMBOL_GPL vmlinux 0xe6a083d0 bio_release_pages +EXPORT_SYMBOL_GPL vmlinux 0xe6ab3a22 serial8250_em485_destroy +EXPORT_SYMBOL_GPL vmlinux 0xe6b4067b efivar_entry_find +EXPORT_SYMBOL_GPL vmlinux 0xe6b62546 devres_for_each_res +EXPORT_SYMBOL_GPL vmlinux 0xe6c0c99a devm_pinctrl_register_and_init +EXPORT_SYMBOL_GPL vmlinux 0xe6cf37fd serdev_device_set_baudrate +EXPORT_SYMBOL_GPL vmlinux 0xe6d592fe inode_dax +EXPORT_SYMBOL_GPL vmlinux 0xe6d880ff bsg_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0xe6e35745 fwnode_get_parent EXPORT_SYMBOL_GPL vmlinux 0xe6e40502 rcu_get_gp_seq EXPORT_SYMBOL_GPL vmlinux 0xe6e988c5 k3_ringacc_get_tisci_dev_id -EXPORT_SYMBOL_GPL vmlinux 0xe6ee731f report_iommu_fault +EXPORT_SYMBOL_GPL vmlinux 0xe6f4535a dma_buf_unmap_attachment EXPORT_SYMBOL_GPL vmlinux 0xe6f52443 klist_add_head EXPORT_SYMBOL_GPL vmlinux 0xe6f5e6f5 xas_clear_mark +EXPORT_SYMBOL_GPL vmlinux 0xe6f66e07 fuse_do_open EXPORT_SYMBOL_GPL vmlinux 0xe6f83837 acpi_bus_attach_private_data +EXPORT_SYMBOL_GPL vmlinux 0xe6f8b34d uhci_reset_hc EXPORT_SYMBOL_GPL vmlinux 0xe700d767 reset_control_bulk_deassert -EXPORT_SYMBOL_GPL vmlinux 0xe71a46c6 clockevents_config_and_register -EXPORT_SYMBOL_GPL vmlinux 0xe746ccdd clockevents_unbind_device -EXPORT_SYMBOL_GPL vmlinux 0xe74f5ed3 dev_pm_qos_expose_flags +EXPORT_SYMBOL_GPL vmlinux 0xe70c0efe pci_epc_multi_mem_init +EXPORT_SYMBOL_GPL vmlinux 0xe710a15d register_trace_event +EXPORT_SYMBOL_GPL vmlinux 0xe71658f2 inet6_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0xe73f3775 lwtunnel_encap_del_ops EXPORT_SYMBOL_GPL vmlinux 0xe753b68d devlink_fmsg_arr_pair_nest_end -EXPORT_SYMBOL_GPL vmlinux 0xe75605a3 tty_mode_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xe754ac62 extcon_unregister_notifier_all +EXPORT_SYMBOL_GPL vmlinux 0xe755f0f0 dev_pm_opp_register_set_opp_helper +EXPORT_SYMBOL_GPL vmlinux 0xe75c4601 crypto_register_rngs +EXPORT_SYMBOL_GPL vmlinux 0xe760bb62 kernfs_put EXPORT_SYMBOL_GPL vmlinux 0xe769232e sprint_symbol_no_offset -EXPORT_SYMBOL_GPL vmlinux 0xe772f4f6 devm_pm_clk_create -EXPORT_SYMBOL_GPL vmlinux 0xe77dc85b devm_regulator_irq_helper +EXPORT_SYMBOL_GPL vmlinux 0xe770ed4b __xenbus_register_frontend +EXPORT_SYMBOL_GPL vmlinux 0xe77803b3 of_genpd_del_provider EXPORT_SYMBOL_GPL vmlinux 0xe783e261 sysfs_emit -EXPORT_SYMBOL_GPL vmlinux 0xe79173e9 init_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xe79297be clk_hw_get_rate +EXPORT_SYMBOL_GPL vmlinux 0xe7930259 ata_sff_error_handler EXPORT_SYMBOL_GPL vmlinux 0xe7936243 zynqmp_pm_clock_getstate -EXPORT_SYMBOL_GPL vmlinux 0xe793d9e3 of_reserved_mem_device_release -EXPORT_SYMBOL_GPL vmlinux 0xe7a7972e bpf_prog_destroy -EXPORT_SYMBOL_GPL vmlinux 0xe7c20997 i2c_add_numbered_adapter -EXPORT_SYMBOL_GPL vmlinux 0xe7cfa09e __ata_ehi_push_desc -EXPORT_SYMBOL_GPL vmlinux 0xe7d0dcc9 devm_memunmap_pages +EXPORT_SYMBOL_GPL vmlinux 0xe7a1c8a8 mbox_request_channel +EXPORT_SYMBOL_GPL vmlinux 0xe7a87e01 led_trigger_register_simple +EXPORT_SYMBOL_GPL vmlinux 0xe7a89246 pci_msi_create_irq_domain +EXPORT_SYMBOL_GPL vmlinux 0xe7b02aee ata_sas_port_destroy +EXPORT_SYMBOL_GPL vmlinux 0xe7bc5005 mmc_send_tuning +EXPORT_SYMBOL_GPL vmlinux 0xe7d50135 wait_on_page_writeback_killable EXPORT_SYMBOL_GPL vmlinux 0xe7d6d2d4 filter_match_preds -EXPORT_SYMBOL_GPL vmlinux 0xe7ee36d6 crypto_register_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xe7d841b1 vchan_tx_desc_free EXPORT_SYMBOL_GPL vmlinux 0xe7eee3d5 __cookie_v4_init_sequence -EXPORT_SYMBOL_GPL vmlinux 0xe7eee82b reset_simple_ops -EXPORT_SYMBOL_GPL vmlinux 0xe7ef0614 crypto_stats_get -EXPORT_SYMBOL_GPL vmlinux 0xe7ef72ef br_fdb_test_addr_hook -EXPORT_SYMBOL_GPL vmlinux 0xe7f2681b is_software_node -EXPORT_SYMBOL_GPL vmlinux 0xe7f675f8 pci_ecam_map_bus -EXPORT_SYMBOL_GPL vmlinux 0xe7f68c17 dpbp_open -EXPORT_SYMBOL_GPL vmlinux 0xe80514a0 dm_set_target_max_io_len +EXPORT_SYMBOL_GPL vmlinux 0xe7f315fb net_selftest +EXPORT_SYMBOL_GPL vmlinux 0xe7fd1ffe usb_of_get_device_node +EXPORT_SYMBOL_GPL vmlinux 0xe80f0d79 find_mci_by_dev EXPORT_SYMBOL_GPL vmlinux 0xe818b32b ata_bmdma_interrupt EXPORT_SYMBOL_GPL vmlinux 0xe8199ff8 sbitmap_del_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0xe82ba9f0 sched_trace_rq_nr_running +EXPORT_SYMBOL_GPL vmlinux 0xe81bfa67 cpufreq_driver_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0xe82d433d mmu_interval_read_begin +EXPORT_SYMBOL_GPL vmlinux 0xe8341b16 smpboot_register_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0xe834dc13 of_pci_get_max_link_speed +EXPORT_SYMBOL_GPL vmlinux 0xe84d6014 acpi_unbind_one EXPORT_SYMBOL_GPL vmlinux 0xe84ed34a unregister_ftrace_function EXPORT_SYMBOL_GPL vmlinux 0xe84f6e5c pciserial_remove_ports -EXPORT_SYMBOL_GPL vmlinux 0xe85232f3 extcon_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0xe859c27d rdev_set_badblocks +EXPORT_SYMBOL_GPL vmlinux 0xe8509da5 perf_event_enable +EXPORT_SYMBOL_GPL vmlinux 0xe85276f6 virtqueue_add_outbuf +EXPORT_SYMBOL_GPL vmlinux 0xe8560a17 pci_hp_add_bridge EXPORT_SYMBOL_GPL vmlinux 0xe85a9fd3 cpu_cluster_pm_exit -EXPORT_SYMBOL_GPL vmlinux 0xe85d0357 devm_extcon_dev_allocate -EXPORT_SYMBOL_GPL vmlinux 0xe861c2f9 _copy_from_iter_flushcache -EXPORT_SYMBOL_GPL vmlinux 0xe862a2e5 tpm_chip_start +EXPORT_SYMBOL_GPL vmlinux 0xe860b460 virtqueue_get_vring EXPORT_SYMBOL_GPL vmlinux 0xe862c4b7 dpm_suspend_start -EXPORT_SYMBOL_GPL vmlinux 0xe86c0095 preempt_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe86df5c7 bdi_dev_name -EXPORT_SYMBOL_GPL vmlinux 0xe8753afc crypto_ahash_digest -EXPORT_SYMBOL_GPL vmlinux 0xe8810246 ata_pci_bmdma_init +EXPORT_SYMBOL_GPL vmlinux 0xe86ad664 pwm_capture +EXPORT_SYMBOL_GPL vmlinux 0xe8843e85 acpi_dma_simple_xlate EXPORT_SYMBOL_GPL vmlinux 0xe8874a05 irq_work_queue -EXPORT_SYMBOL_GPL vmlinux 0xe890017d __scsi_init_queue -EXPORT_SYMBOL_GPL vmlinux 0xe8a2b55a fb_deferred_io_fsync -EXPORT_SYMBOL_GPL vmlinux 0xe8a86d79 mptcp_pm_get_subflows_max +EXPORT_SYMBOL_GPL vmlinux 0xe88c017a fsverity_cleanup_inode +EXPORT_SYMBOL_GPL vmlinux 0xe896c7ac clk_hw_unregister_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0xe8a0bf0d kernfs_get EXPORT_SYMBOL_GPL vmlinux 0xe8c0065d memory_group_register_static -EXPORT_SYMBOL_GPL vmlinux 0xe8d32925 usb_phy_set_event -EXPORT_SYMBOL_GPL vmlinux 0xe8daf247 of_clk_add_hw_provider +EXPORT_SYMBOL_GPL vmlinux 0xe8cee735 reset_control_get_count +EXPORT_SYMBOL_GPL vmlinux 0xe8e625d6 __devm_of_phy_provider_register 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 0xe93a9983 acct_bioset_exit +EXPORT_SYMBOL_GPL vmlinux 0xe927bbfd generic_handle_domain_irq +EXPORT_SYMBOL_GPL vmlinux 0xe92e6351 regcache_sync_region +EXPORT_SYMBOL_GPL vmlinux 0xe93080af ata_port_desc EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free -EXPORT_SYMBOL_GPL vmlinux 0xe9434c0a key_type_user -EXPORT_SYMBOL_GPL vmlinux 0xe952ae7e evm_verifyxattr +EXPORT_SYMBOL_GPL vmlinux 0xe94dc38e crypto_register_shash EXPORT_SYMBOL_GPL vmlinux 0xe956a75c pl320_ipc_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0xe95faf18 __ip6_datagram_connect -EXPORT_SYMBOL_GPL vmlinux 0xe966ce20 ip6_dst_lookup_tunnel -EXPORT_SYMBOL_GPL vmlinux 0xe9670e57 kvm_vcpu_write_guest -EXPORT_SYMBOL_GPL vmlinux 0xe9709c5b pci_generic_config_write32 -EXPORT_SYMBOL_GPL vmlinux 0xe971ec77 devlink_port_type_clear -EXPORT_SYMBOL_GPL vmlinux 0xe9759e78 hisi_uncore_pmu_stop -EXPORT_SYMBOL_GPL vmlinux 0xe9854c3b crypto_inst_setname -EXPORT_SYMBOL_GPL vmlinux 0xe98bda8b platform_get_irq +EXPORT_SYMBOL_GPL vmlinux 0xe95d4255 dm_get_md +EXPORT_SYMBOL_GPL vmlinux 0xe960b2e9 debugfs_attr_read +EXPORT_SYMBOL_GPL vmlinux 0xe9848a9b sata_lpm_ignore_phy_events EXPORT_SYMBOL_GPL vmlinux 0xe98f55f2 arm_smccc_get_version -EXPORT_SYMBOL_GPL vmlinux 0xe996a853 regulator_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe9a16523 fsl_mc_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe9cb4f17 spi_controller_dma_unmap_mem_op_data +EXPORT_SYMBOL_GPL vmlinux 0xe9c1b676 kobject_get_path +EXPORT_SYMBOL_GPL vmlinux 0xe9d00e75 d_walk EXPORT_SYMBOL_GPL vmlinux 0xe9d1b7cf irq_to_pcap EXPORT_SYMBOL_GPL vmlinux 0xe9d63a0d k3_udma_glue_enable_tx_chn -EXPORT_SYMBOL_GPL vmlinux 0xe9de3857 xfrm_state_mtu -EXPORT_SYMBOL_GPL vmlinux 0xe9e443e0 devlink_port_region_create -EXPORT_SYMBOL_GPL vmlinux 0xe9ec35bb sdio_register_driver -EXPORT_SYMBOL_GPL vmlinux 0xe9f61247 pci_epc_get_msix +EXPORT_SYMBOL_GPL vmlinux 0xe9d9a00e dev_pm_domain_start +EXPORT_SYMBOL_GPL vmlinux 0xe9debf4d __bio_try_merge_page +EXPORT_SYMBOL_GPL vmlinux 0xe9dfe25d irq_domain_update_bus_token +EXPORT_SYMBOL_GPL vmlinux 0xe9fb73a5 ata_dev_pair EXPORT_SYMBOL_GPL vmlinux 0xea018bbb mpi_test_bit +EXPORT_SYMBOL_GPL vmlinux 0xea083318 init_user_ns +EXPORT_SYMBOL_GPL vmlinux 0xea10e7bd mtk_eint_do_init EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd -EXPORT_SYMBOL_GPL vmlinux 0xea17e996 transport_add_device -EXPORT_SYMBOL_GPL vmlinux 0xea1eae89 mtk_pinconf_drive_set -EXPORT_SYMBOL_GPL vmlinux 0xea2dce08 of_property_read_string -EXPORT_SYMBOL_GPL vmlinux 0xea3155a8 rtc_update_irq_enable -EXPORT_SYMBOL_GPL vmlinux 0xea337dc4 dev_pm_opp_put_regulators +EXPORT_SYMBOL_GPL vmlinux 0xea1a3e10 devlink_params_unregister +EXPORT_SYMBOL_GPL vmlinux 0xea2bb391 fib_rules_dump +EXPORT_SYMBOL_GPL vmlinux 0xea364ac8 virtio_check_driver_offered_feature EXPORT_SYMBOL_GPL vmlinux 0xea38036f ring_buffer_entries EXPORT_SYMBOL_GPL vmlinux 0xea3a23f3 public_key_free -EXPORT_SYMBOL_GPL vmlinux 0xea47fef9 cpufreq_register_governor +EXPORT_SYMBOL_GPL vmlinux 0xea412e7c tcp_done +EXPORT_SYMBOL_GPL vmlinux 0xea49803f amba_apb_device_add EXPORT_SYMBOL_GPL vmlinux 0xea50dad3 ahci_ignore_sss -EXPORT_SYMBOL_GPL vmlinux 0xea5f8adb stmpe_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xea6f1e90 securityfs_remove -EXPORT_SYMBOL_GPL vmlinux 0xea7648d4 __acpi_node_get_property_reference -EXPORT_SYMBOL_GPL vmlinux 0xea82b4f1 kernfs_notify -EXPORT_SYMBOL_GPL vmlinux 0xea9f48b8 tpm_try_get_ops -EXPORT_SYMBOL_GPL vmlinux 0xeaa7ae74 kernel_read_file -EXPORT_SYMBOL_GPL vmlinux 0xeaaea1b1 clk_register_mux_table -EXPORT_SYMBOL_GPL vmlinux 0xeac99538 kvm_vcpu_wake_up +EXPORT_SYMBOL_GPL vmlinux 0xea5be59c mpc8xxx_spi_tx_buf_u32 +EXPORT_SYMBOL_GPL vmlinux 0xea5fb637 bpfilter_umh_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xea7788e1 tty_set_ldisc +EXPORT_SYMBOL_GPL vmlinux 0xea78187c devm_clk_register +EXPORT_SYMBOL_GPL vmlinux 0xea838dda pinctrl_pm_select_default_state +EXPORT_SYMBOL_GPL vmlinux 0xea99f8e6 pci_scan_child_bus +EXPORT_SYMBOL_GPL vmlinux 0xeaa4f591 trace_event_raw_init +EXPORT_SYMBOL_GPL vmlinux 0xeaa966f9 acpi_dev_get_first_consumer_dev +EXPORT_SYMBOL_GPL vmlinux 0xeaa9d3e1 wm831x_auxadc_read +EXPORT_SYMBOL_GPL vmlinux 0xeaad7482 elv_unregister EXPORT_SYMBOL_GPL vmlinux 0xead035ee __tracepoint_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0xead2fc8d gpiod_set_consumer_name EXPORT_SYMBOL_GPL vmlinux 0xead3e41b __traceiter_cpu_frequency EXPORT_SYMBOL_GPL vmlinux 0xead54924 mctrl_gpio_to_gpiod EXPORT_SYMBOL_GPL vmlinux 0xead5c8e5 clk_bulk_prepare EXPORT_SYMBOL_GPL vmlinux 0xeae0f496 clean_acked_data_flush -EXPORT_SYMBOL_GPL vmlinux 0xeaeab562 __xenbus_register_backend -EXPORT_SYMBOL_GPL vmlinux 0xeaebd4d4 regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xeaee8b6f device_wakeup_enable EXPORT_SYMBOL_GPL vmlinux 0xeaf0a57c look_up_OID -EXPORT_SYMBOL_GPL vmlinux 0xeaf21656 security_path_chown -EXPORT_SYMBOL_GPL vmlinux 0xeaf47270 nf_queue_nf_hook_drop -EXPORT_SYMBOL_GPL vmlinux 0xeaf4a65f __pm_runtime_use_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0xeaf50156 fwnode_property_read_u8_array EXPORT_SYMBOL_GPL vmlinux 0xeaf8469d hv_do_fast_hypercall8 -EXPORT_SYMBOL_GPL vmlinux 0xeb0af398 percpu_down_write -EXPORT_SYMBOL_GPL vmlinux 0xeb1fce4f __clk_hw_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0xeb01c0c2 gpiod_get_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xeb0f2f38 genphy_c45_pma_setup_forced +EXPORT_SYMBOL_GPL vmlinux 0xeb10ab6b __page_mapcount +EXPORT_SYMBOL_GPL vmlinux 0xeb10d5c4 ethtool_set_ethtool_phy_ops +EXPORT_SYMBOL_GPL vmlinux 0xeb21d384 ping_getfrag +EXPORT_SYMBOL_GPL vmlinux 0xeb235dae usb_find_alt_setting +EXPORT_SYMBOL_GPL vmlinux 0xeb2c5396 blkdev_zone_mgmt +EXPORT_SYMBOL_GPL vmlinux 0xeb32b897 debugfs_print_regs32 +EXPORT_SYMBOL_GPL vmlinux 0xeb3f0c39 usb_enable_ltm EXPORT_SYMBOL_GPL vmlinux 0xeb4221e4 trace_clock -EXPORT_SYMBOL_GPL vmlinux 0xeb42f088 devm_gpio_free -EXPORT_SYMBOL_GPL vmlinux 0xeb57fcfb noop_backing_dev_info -EXPORT_SYMBOL_GPL vmlinux 0xeb73d4d3 __skb_get_hash_symmetric +EXPORT_SYMBOL_GPL vmlinux 0xeb4b4197 __devm_regmap_init +EXPORT_SYMBOL_GPL vmlinux 0xeb4f7685 devlink_sb_unregister +EXPORT_SYMBOL_GPL vmlinux 0xeb51201a blk_ksm_update_capabilities +EXPORT_SYMBOL_GPL vmlinux 0xeb59a502 blk_mq_quiesce_queue +EXPORT_SYMBOL_GPL vmlinux 0xeb5f0341 is_skb_forwardable +EXPORT_SYMBOL_GPL vmlinux 0xeb75a82a i2c_handle_smbus_host_notify EXPORT_SYMBOL_GPL vmlinux 0xeb78b1ed unregister_kprobe -EXPORT_SYMBOL_GPL vmlinux 0xeb86ba07 cpuidle_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0xeb8bbbb8 clockevents_register_device -EXPORT_SYMBOL_GPL vmlinux 0xeb90d548 usb_hcd_pci_probe -EXPORT_SYMBOL_GPL vmlinux 0xebc99cb2 dev_get_regmap +EXPORT_SYMBOL_GPL vmlinux 0xeb7f7767 ip6_route_lookup +EXPORT_SYMBOL_GPL vmlinux 0xeb85f2e0 gpiochip_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0xeb99cbcf device_create +EXPORT_SYMBOL_GPL vmlinux 0xebb01d5c create_signature +EXPORT_SYMBOL_GPL vmlinux 0xebbbdc8a hwmon_device_register +EXPORT_SYMBOL_GPL vmlinux 0xebc1fe52 sched_set_fifo_low EXPORT_SYMBOL_GPL vmlinux 0xebc9a09f lock_system_sleep -EXPORT_SYMBOL_GPL vmlinux 0xebccb79e mddev_resume -EXPORT_SYMBOL_GPL vmlinux 0xebcd7afb gpiod_direction_input -EXPORT_SYMBOL_GPL vmlinux 0xebd1bbc2 dm_path_uevent -EXPORT_SYMBOL_GPL vmlinux 0xebd43163 usb_acpi_power_manageable +EXPORT_SYMBOL_GPL vmlinux 0xebcbcc87 cgroup_get_from_id EXPORT_SYMBOL_GPL vmlinux 0xebd4cc11 mctrl_gpio_enable_ms -EXPORT_SYMBOL_GPL vmlinux 0xebe03246 mnt_drop_write -EXPORT_SYMBOL_GPL vmlinux 0xebe6d59e fib_rules_dump -EXPORT_SYMBOL_GPL vmlinux 0xebed6d15 dev_pm_opp_remove_all_dynamic -EXPORT_SYMBOL_GPL vmlinux 0xebf506c1 l3mdev_master_ifindex_rcu -EXPORT_SYMBOL_GPL vmlinux 0xec025766 of_icc_get -EXPORT_SYMBOL_GPL vmlinux 0xec0420b1 usb_anchor_urb -EXPORT_SYMBOL_GPL vmlinux 0xec30f9f1 crypto_skcipher_decrypt -EXPORT_SYMBOL_GPL vmlinux 0xec31ed6a key_type_asymmetric -EXPORT_SYMBOL_GPL vmlinux 0xec33e1b8 vmf_insert_pfn_pmd_prot -EXPORT_SYMBOL_GPL vmlinux 0xec3560a6 phy_driver_is_genphy_10g -EXPORT_SYMBOL_GPL vmlinux 0xec41f2b1 nvdimm_name -EXPORT_SYMBOL_GPL vmlinux 0xec462d27 sata_sff_hardreset +EXPORT_SYMBOL_GPL vmlinux 0xebd826d5 virtqueue_detach_unused_buf +EXPORT_SYMBOL_GPL vmlinux 0xebeab058 ksm_madvise +EXPORT_SYMBOL_GPL vmlinux 0xebff7f8f inet_twsk_put +EXPORT_SYMBOL_GPL vmlinux 0xec38450b blk_rq_prep_clone +EXPORT_SYMBOL_GPL vmlinux 0xec396332 trace_array_set_clr_event +EXPORT_SYMBOL_GPL vmlinux 0xec4bf8ee pci_find_host_bridge EXPORT_SYMBOL_GPL vmlinux 0xec5668f6 dax_zero_page_range -EXPORT_SYMBOL_GPL vmlinux 0xec5cf7a9 clk_regmap_divider_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0xec5b7c1c generic_fh_to_parent +EXPORT_SYMBOL_GPL vmlinux 0xec61696f ethnl_cable_test_alloc +EXPORT_SYMBOL_GPL vmlinux 0xec628c0a regulator_set_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0xec6b687a sysfs_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0xec6c7173 ima_file_check +EXPORT_SYMBOL_GPL vmlinux 0xec6ced1e regulator_get_error_flags +EXPORT_SYMBOL_GPL vmlinux 0xec6f71b6 hisi_clk_init EXPORT_SYMBOL_GPL vmlinux 0xec774acb cpufreq_frequency_table_verify -EXPORT_SYMBOL_GPL vmlinux 0xec924581 efivar_entry_find -EXPORT_SYMBOL_GPL vmlinux 0xec93aa74 pci_epf_add_vepf +EXPORT_SYMBOL_GPL vmlinux 0xec7d8ce5 to_nd_blk_region +EXPORT_SYMBOL_GPL vmlinux 0xec7e41f8 blk_mq_virtio_map_queues +EXPORT_SYMBOL_GPL vmlinux 0xec89ce03 ata_std_postreset +EXPORT_SYMBOL_GPL vmlinux 0xec8a1b51 iommu_map_atomic +EXPORT_SYMBOL_GPL vmlinux 0xecafa68a ata_pci_remove_one +EXPORT_SYMBOL_GPL vmlinux 0xecb2fbae __vfs_setxattr_noperm EXPORT_SYMBOL_GPL vmlinux 0xecb671fc tegra210_sata_pll_hw_sequence_start EXPORT_SYMBOL_GPL vmlinux 0xecba68e3 gnttab_batch_map -EXPORT_SYMBOL_GPL vmlinux 0xecc047e5 da9052_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0xecc868e6 crypto_unregister_templates -EXPORT_SYMBOL_GPL vmlinux 0xecd6988a regulator_set_voltage_sel_pickable_regmap +EXPORT_SYMBOL_GPL vmlinux 0xecbfeffa syscon_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0xecd01a70 kvm_vcpu_read_guest_atomic +EXPORT_SYMBOL_GPL vmlinux 0xecd7c339 of_genpd_add_provider_onecell EXPORT_SYMBOL_GPL vmlinux 0xecd8f23d xenbus_read -EXPORT_SYMBOL_GPL vmlinux 0xecde0abc eventfd_fget -EXPORT_SYMBOL_GPL vmlinux 0xece704b0 blk_ksm_intersect_modes -EXPORT_SYMBOL_GPL vmlinux 0xecee6e01 handle_untracked_irq -EXPORT_SYMBOL_GPL vmlinux 0xecf01975 pci_generic_ecam_ops -EXPORT_SYMBOL_GPL vmlinux 0xed1772cb devm_reset_controller_register -EXPORT_SYMBOL_GPL vmlinux 0xed370aa7 sysfs_remove_mount_point +EXPORT_SYMBOL_GPL vmlinux 0xecef2b18 of_device_request_module +EXPORT_SYMBOL_GPL vmlinux 0xecf4fe89 hrtimer_init_sleeper +EXPORT_SYMBOL_GPL vmlinux 0xed142503 mtk_mutex_get +EXPORT_SYMBOL_GPL vmlinux 0xed1916b8 phy_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0xed321ae4 gpiod_export +EXPORT_SYMBOL_GPL vmlinux 0xed347ccf devlink_param_unpublish +EXPORT_SYMBOL_GPL vmlinux 0xed3853a8 iomap_writepages +EXPORT_SYMBOL_GPL vmlinux 0xed38e82e power_supply_changed EXPORT_SYMBOL_GPL vmlinux 0xed39b7b8 parse_OID -EXPORT_SYMBOL_GPL vmlinux 0xed3ed325 cgroup_path_ns -EXPORT_SYMBOL_GPL vmlinux 0xed41f4a4 devm_extcon_dev_register -EXPORT_SYMBOL_GPL vmlinux 0xed483cff xhci_gen_setup -EXPORT_SYMBOL_GPL vmlinux 0xed54bf12 usb_free_coherent -EXPORT_SYMBOL_GPL vmlinux 0xed6072a2 sysfs_chmod_file -EXPORT_SYMBOL_GPL vmlinux 0xed670bc3 is_virtio_device -EXPORT_SYMBOL_GPL vmlinux 0xed7b7dba usb_ep0_reinit +EXPORT_SYMBOL_GPL vmlinux 0xed3a058b sock_gen_put +EXPORT_SYMBOL_GPL vmlinux 0xed3d1756 devm_free_percpu +EXPORT_SYMBOL_GPL vmlinux 0xed44b6c4 devm_otg_ulpi_create +EXPORT_SYMBOL_GPL vmlinux 0xed5c1509 of_clk_src_simple_get +EXPORT_SYMBOL_GPL vmlinux 0xed7668ab i2c_new_ancillary_device +EXPORT_SYMBOL_GPL vmlinux 0xed799723 posix_acl_create EXPORT_SYMBOL_GPL vmlinux 0xed7c7b91 raw_v6_hashinfo -EXPORT_SYMBOL_GPL vmlinux 0xed943928 devm_regulator_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0xeda61bb2 of_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0xedab1ece genphy_c45_an_disable_aneg -EXPORT_SYMBOL_GPL vmlinux 0xedb1c953 crypto_alloc_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xed7e9a96 devm_kstrdup_const +EXPORT_SYMBOL_GPL vmlinux 0xed83209d nd_blk_region_provider_data +EXPORT_SYMBOL_GPL vmlinux 0xed845cd3 pm_clk_remove +EXPORT_SYMBOL_GPL vmlinux 0xed91c835 regulator_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xed9d8084 acpi_dma_request_slave_chan_by_index +EXPORT_SYMBOL_GPL vmlinux 0xeda03454 tcp_cong_avoid_ai +EXPORT_SYMBOL_GPL vmlinux 0xeda5ac34 iomap_invalidatepage +EXPORT_SYMBOL_GPL vmlinux 0xedb0d585 mtk_pinconf_drive_set +EXPORT_SYMBOL_GPL vmlinux 0xedbdb3be gnttab_dma_free_pages +EXPORT_SYMBOL_GPL vmlinux 0xedbe7ff6 __acpi_node_get_property_reference +EXPORT_SYMBOL_GPL vmlinux 0xedcea3ac serial8250_rpm_get_tx EXPORT_SYMBOL_GPL vmlinux 0xedd092d5 power_supply_notifier -EXPORT_SYMBOL_GPL vmlinux 0xeddf657f iommu_attach_group -EXPORT_SYMBOL_GPL vmlinux 0xede4762e ata_ncq_sdev_attrs +EXPORT_SYMBOL_GPL vmlinux 0xeddf6241 spi_mem_dirmap_read +EXPORT_SYMBOL_GPL vmlinux 0xede017f5 eventfd_ctx_fileget EXPORT_SYMBOL_GPL vmlinux 0xede9a09a btree_lookup -EXPORT_SYMBOL_GPL vmlinux 0xedf8008f tty_kopen_exclusive -EXPORT_SYMBOL_GPL vmlinux 0xedfc85b1 crypto_stats_skcipher_decrypt -EXPORT_SYMBOL_GPL vmlinux 0xee1163f6 max8997_update_reg -EXPORT_SYMBOL_GPL vmlinux 0xee17c509 subsys_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0xedf38bc0 sata_sff_hardreset +EXPORT_SYMBOL_GPL vmlinux 0xedfa85d6 cn_add_callback +EXPORT_SYMBOL_GPL vmlinux 0xedfc6bde cpufreq_frequency_table_get_index +EXPORT_SYMBOL_GPL vmlinux 0xee02c2ff fwnode_graph_get_remote_port +EXPORT_SYMBOL_GPL vmlinux 0xee04705f devm_nvmem_cell_get +EXPORT_SYMBOL_GPL vmlinux 0xee144175 virtqueue_get_avail_addr +EXPORT_SYMBOL_GPL vmlinux 0xee1d0401 kernfs_find_and_get_ns EXPORT_SYMBOL_GPL vmlinux 0xee1f5126 __tracepoint_neigh_timer_handler +EXPORT_SYMBOL_GPL vmlinux 0xee21d1e8 crypto_stats_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0xee2cee22 phy_modify_mmd EXPORT_SYMBOL_GPL vmlinux 0xee38ef57 register_switchdev_blocking_notifier -EXPORT_SYMBOL_GPL vmlinux 0xee4a3dd5 serial8250_do_set_mctrl -EXPORT_SYMBOL_GPL vmlinux 0xee4baa52 wakeup_source_create -EXPORT_SYMBOL_GPL vmlinux 0xee4e2a27 rio_get_comptag -EXPORT_SYMBOL_GPL vmlinux 0xee4e3fee regulator_bulk_disable -EXPORT_SYMBOL_GPL vmlinux 0xee4fc238 fscrypt_prepare_symlink +EXPORT_SYMBOL_GPL vmlinux 0xee3a68d3 nfs_ssc_client_tbl +EXPORT_SYMBOL_GPL vmlinux 0xee44e740 peernet2id_alloc +EXPORT_SYMBOL_GPL vmlinux 0xee47a33f register_net_sysctl +EXPORT_SYMBOL_GPL vmlinux 0xee4da11c __hvc_resize EXPORT_SYMBOL_GPL vmlinux 0xee518148 kmsg_dump_get_buffer -EXPORT_SYMBOL_GPL vmlinux 0xee5746b2 pci_probe_reset_slot -EXPORT_SYMBOL_GPL vmlinux 0xee57ca50 tegra_bpmp_transfer_atomic -EXPORT_SYMBOL_GPL vmlinux 0xee5e5a57 fsl_mc_populate_irq_pool +EXPORT_SYMBOL_GPL vmlinux 0xee5307ad usb_acpi_set_power_state +EXPORT_SYMBOL_GPL vmlinux 0xee5a3980 blkdev_nr_zones 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 0xee84fa90 ata_sff_busy_sleep -EXPORT_SYMBOL_GPL vmlinux 0xee873036 scsi_dh_attach -EXPORT_SYMBOL_GPL vmlinux 0xee9af3b2 fib_rules_unregister +EXPORT_SYMBOL_GPL vmlinux 0xee6ccce3 clean_acked_data_disable +EXPORT_SYMBOL_GPL vmlinux 0xee784cbe iommu_device_sysfs_remove +EXPORT_SYMBOL_GPL vmlinux 0xee7bdf8b clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0xee8dc482 i2c_client_type +EXPORT_SYMBOL_GPL vmlinux 0xee8fd295 pwm_free +EXPORT_SYMBOL_GPL vmlinux 0xee9f2e6d gpiochip_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0xeea000f9 metadata_dst_free_percpu +EXPORT_SYMBOL_GPL vmlinux 0xeea44825 __dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0xeec96cb5 mtk_mmsys_ddp_connect +EXPORT_SYMBOL_GPL vmlinux 0xeecaef8b serial8250_do_get_mctrl +EXPORT_SYMBOL_GPL vmlinux 0xeecf2ff5 elv_rqhash_add EXPORT_SYMBOL_GPL vmlinux 0xeed0cea4 kernel_read_file_from_fd -EXPORT_SYMBOL_GPL vmlinux 0xeed5bbcb pci_enable_ats -EXPORT_SYMBOL_GPL vmlinux 0xeed8186b tpm_chip_stop -EXPORT_SYMBOL_GPL vmlinux 0xeed8bb21 regmap_fields_read +EXPORT_SYMBOL_GPL vmlinux 0xeed1c7b5 vfs_cancel_lock +EXPORT_SYMBOL_GPL vmlinux 0xeed5eb49 fuse_init_fs_context_submount EXPORT_SYMBOL_GPL vmlinux 0xeedd987e phy_10gbit_features_array EXPORT_SYMBOL_GPL vmlinux 0xeedfcec3 task_work_run -EXPORT_SYMBOL_GPL vmlinux 0xeee511f8 gnttab_pages_set_private -EXPORT_SYMBOL_GPL vmlinux 0xeee6fabb ata_sff_irq_on -EXPORT_SYMBOL_GPL vmlinux 0xef032961 devm_usb_put_phy -EXPORT_SYMBOL_GPL vmlinux 0xef0b9458 dev_attr_unload_heads -EXPORT_SYMBOL_GPL vmlinux 0xef1d9e7f blk_steal_bios +EXPORT_SYMBOL_GPL vmlinux 0xeee700cc fib6_rule_default +EXPORT_SYMBOL_GPL vmlinux 0xef14ec62 ping_seq_start EXPORT_SYMBOL_GPL vmlinux 0xef1f6e23 apei_resources_request -EXPORT_SYMBOL_GPL vmlinux 0xef22bf1a imx_pinctrl_parse_pin_scu EXPORT_SYMBOL_GPL vmlinux 0xef29fcdd clk_bulk_put EXPORT_SYMBOL_GPL vmlinux 0xef34bf3e hrtimer_active -EXPORT_SYMBOL_GPL vmlinux 0xef45eb84 pci_ioremap_wc_bar -EXPORT_SYMBOL_GPL vmlinux 0xef4632aa i2c_adapter_type EXPORT_SYMBOL_GPL vmlinux 0xef464c28 getboottime64 -EXPORT_SYMBOL_GPL vmlinux 0xef4c9238 acpi_dev_get_first_consumer_dev -EXPORT_SYMBOL_GPL vmlinux 0xef517192 mmc_pwrseq_register +EXPORT_SYMBOL_GPL vmlinux 0xef4ce577 switchdev_bridge_port_offload +EXPORT_SYMBOL_GPL vmlinux 0xef4d4db4 wm8350_read_auxadc EXPORT_SYMBOL_GPL vmlinux 0xef5db66d regulator_get_init_drvdata -EXPORT_SYMBOL_GPL vmlinux 0xef644c4b pci_reset_function_locked -EXPORT_SYMBOL_GPL vmlinux 0xef678679 rockchip_register_softrst +EXPORT_SYMBOL_GPL vmlinux 0xef66f427 ata_sas_tport_delete EXPORT_SYMBOL_GPL vmlinux 0xef6c3f70 round_jiffies_up_relative EXPORT_SYMBOL_GPL vmlinux 0xef70eb7e ring_buffer_iter_advance -EXPORT_SYMBOL_GPL vmlinux 0xef72c6fa extcon_sync +EXPORT_SYMBOL_GPL vmlinux 0xef714abe acpiphp_register_attention EXPORT_SYMBOL_GPL vmlinux 0xef744bb5 sbitmap_queue_clear -EXPORT_SYMBOL_GPL vmlinux 0xef7eee88 pci_epc_get_msi +EXPORT_SYMBOL_GPL vmlinux 0xef881e27 xenbus_free_evtchn +EXPORT_SYMBOL_GPL vmlinux 0xef8abcac pinmux_generic_remove_function +EXPORT_SYMBOL_GPL vmlinux 0xef8e06eb devm_clk_hw_register EXPORT_SYMBOL_GPL vmlinux 0xef92ef33 btree_last +EXPORT_SYMBOL_GPL vmlinux 0xef98ebcb crypto_alloc_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xef9e036c ahci_platform_resume_host +EXPORT_SYMBOL_GPL vmlinux 0xef9e1830 tpm2_flush_context +EXPORT_SYMBOL_GPL vmlinux 0xefa08244 vring_new_virtqueue EXPORT_SYMBOL_GPL vmlinux 0xefa2c27d register_tracepoint_module_notifier -EXPORT_SYMBOL_GPL vmlinux 0xefa32241 virtqueue_get_avail_addr -EXPORT_SYMBOL_GPL vmlinux 0xefb878a4 fat_add_entries -EXPORT_SYMBOL_GPL vmlinux 0xefc23849 fuse_dax_cancel_work -EXPORT_SYMBOL_GPL vmlinux 0xefd3b323 udp4_hwcsum -EXPORT_SYMBOL_GPL vmlinux 0xefd54b4e rt_mutex_unlock -EXPORT_SYMBOL_GPL vmlinux 0xefd9f9b0 xenbus_frontend_closed +EXPORT_SYMBOL_GPL vmlinux 0xefb513d7 fixed_phy_change_carrier +EXPORT_SYMBOL_GPL vmlinux 0xefbd759e i2c_acpi_find_adapter_by_handle +EXPORT_SYMBOL_GPL vmlinux 0xefbf8c04 strp_process +EXPORT_SYMBOL_GPL vmlinux 0xefd9b526 dax_finish_sync_fault +EXPORT_SYMBOL_GPL vmlinux 0xefe34840 power_supply_property_is_writeable EXPORT_SYMBOL_GPL vmlinux 0xefeafcf1 edac_has_mcs -EXPORT_SYMBOL_GPL vmlinux 0xeffb3b9b usb_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0xf00210a9 sk_psock_tls_strp_read -EXPORT_SYMBOL_GPL vmlinux 0xf006ba84 devm_of_phy_get_by_index -EXPORT_SYMBOL_GPL vmlinux 0xf00a1501 bgmac_enet_resume -EXPORT_SYMBOL_GPL vmlinux 0xf00a8252 scsi_build_sense -EXPORT_SYMBOL_GPL vmlinux 0xf0194f98 pinctrl_get_group_pins +EXPORT_SYMBOL_GPL vmlinux 0xeffed7eb blk_rq_err_bytes +EXPORT_SYMBOL_GPL vmlinux 0xefff2977 ata_qc_get_active +EXPORT_SYMBOL_GPL vmlinux 0xf008863f regulator_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0xf00dbaf0 usb_unpoison_urb +EXPORT_SYMBOL_GPL vmlinux 0xf026feb0 regmap_exit +EXPORT_SYMBOL_GPL vmlinux 0xf0380efb rio_mport_write_config_8 EXPORT_SYMBOL_GPL vmlinux 0xf03b0410 ftrace_set_filter EXPORT_SYMBOL_GPL vmlinux 0xf04429b4 acpi_bus_get_status_handle -EXPORT_SYMBOL_GPL vmlinux 0xf04f8954 n_tty_inherit_ops -EXPORT_SYMBOL_GPL vmlinux 0xf0503879 debugfs_create_u16 -EXPORT_SYMBOL_GPL vmlinux 0xf051abbc __usb_create_hcd -EXPORT_SYMBOL_GPL vmlinux 0xf055d0a0 ip6_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0xf04647f3 dev_get_tstats64 EXPORT_SYMBOL_GPL vmlinux 0xf05a52fe asn1_encode_oid EXPORT_SYMBOL_GPL vmlinux 0xf05fbf09 pci_pio_to_address -EXPORT_SYMBOL_GPL vmlinux 0xf068c473 thermal_zone_device_update EXPORT_SYMBOL_GPL vmlinux 0xf0696401 acpi_pci_detect_ejectable -EXPORT_SYMBOL_GPL vmlinux 0xf06ae4e8 syscon_node_to_regmap -EXPORT_SYMBOL_GPL vmlinux 0xf0724df8 fsl_mc_object_allocate -EXPORT_SYMBOL_GPL vmlinux 0xf08f33ba pm_runtime_set_memalloc_noio -EXPORT_SYMBOL_GPL vmlinux 0xf090eeef __clk_hw_register_gate +EXPORT_SYMBOL_GPL vmlinux 0xf0808f6f scsi_dh_attached_handler_name +EXPORT_SYMBOL_GPL vmlinux 0xf088e4bd ping_unhash EXPORT_SYMBOL_GPL vmlinux 0xf0910075 sfp_bus_del_upstream +EXPORT_SYMBOL_GPL vmlinux 0xf098b529 inet6_compat_ioctl EXPORT_SYMBOL_GPL vmlinux 0xf0a0c69d init_iova_domain -EXPORT_SYMBOL_GPL vmlinux 0xf0a94348 i2c_acpi_find_bus_speed -EXPORT_SYMBOL_GPL vmlinux 0xf0bf8c46 iommu_sva_find -EXPORT_SYMBOL_GPL vmlinux 0xf0c14b02 iommu_group_get -EXPORT_SYMBOL_GPL vmlinux 0xf0d337e1 preempt_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xf0a6c57f sock_diag_register +EXPORT_SYMBOL_GPL vmlinux 0xf0c58e0b __mdiobus_modify_changed +EXPORT_SYMBOL_GPL vmlinux 0xf0c99ac4 trace_array_destroy +EXPORT_SYMBOL_GPL vmlinux 0xf0d1f263 ata_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xf0d44232 da903x_register_notifier EXPORT_SYMBOL_GPL vmlinux 0xf0d478c7 list_lru_add -EXPORT_SYMBOL_GPL vmlinux 0xf0e52258 component_bind_all -EXPORT_SYMBOL_GPL vmlinux 0xf0ff3be7 perf_aux_output_skip -EXPORT_SYMBOL_GPL vmlinux 0xf10e39f9 __serdev_device_driver_register -EXPORT_SYMBOL_GPL vmlinux 0xf115385d bio_alloc_kiocb -EXPORT_SYMBOL_GPL vmlinux 0xf115ee13 dev_pm_opp_add +EXPORT_SYMBOL_GPL vmlinux 0xf0decd6b bpf_redirect_info +EXPORT_SYMBOL_GPL vmlinux 0xf0f6486b rio_lock_device +EXPORT_SYMBOL_GPL vmlinux 0xf0f7c957 blkdev_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xf0f9cdb7 param_ops_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0xf0fc1d68 usb_hub_find_child +EXPORT_SYMBOL_GPL vmlinux 0xf1117efc tpm_chip_start +EXPORT_SYMBOL_GPL vmlinux 0xf1189c48 of_pci_range_parser_one EXPORT_SYMBOL_GPL vmlinux 0xf12180fd imx_1443x_dram_pll -EXPORT_SYMBOL_GPL vmlinux 0xf1223626 adp5520_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0xf12c4255 regulator_get_linear_step -EXPORT_SYMBOL_GPL vmlinux 0xf12c8db2 seg6_do_srh_inline -EXPORT_SYMBOL_GPL vmlinux 0xf137a886 sysfs_unmerge_group -EXPORT_SYMBOL_GPL vmlinux 0xf14098f9 debugfs_create_x8 -EXPORT_SYMBOL_GPL vmlinux 0xf15a780a sata_link_resume -EXPORT_SYMBOL_GPL vmlinux 0xf1636d56 cpufreq_freq_transition_end -EXPORT_SYMBOL_GPL vmlinux 0xf167ee54 sdio_readw +EXPORT_SYMBOL_GPL vmlinux 0xf12a227c dpbp_open +EXPORT_SYMBOL_GPL vmlinux 0xf14d4f97 watchdog_set_restart_priority +EXPORT_SYMBOL_GPL vmlinux 0xf150bc5e blk_queue_rq_timeout +EXPORT_SYMBOL_GPL vmlinux 0xf15b11c6 platform_get_resource +EXPORT_SYMBOL_GPL vmlinux 0xf1629aa0 lwtunnel_state_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf167f536 scsi_dh_activate +EXPORT_SYMBOL_GPL vmlinux 0xf179b4f8 regmap_check_range_table EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off -EXPORT_SYMBOL_GPL vmlinux 0xf184ea26 ping_rcv EXPORT_SYMBOL_GPL vmlinux 0xf188a662 rhashtable_walk_exit -EXPORT_SYMBOL_GPL vmlinux 0xf19408c3 store_sampling_rate -EXPORT_SYMBOL_GPL vmlinux 0xf19ae509 __traceiter_xdp_bulk_tx -EXPORT_SYMBOL_GPL vmlinux 0xf1a3958d pci_sriov_get_totalvfs -EXPORT_SYMBOL_GPL vmlinux 0xf1a3f14d irq_chip_ack_parent -EXPORT_SYMBOL_GPL vmlinux 0xf1bcf977 dev_pm_enable_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0xf1c296fc devm_gpiod_get_optional -EXPORT_SYMBOL_GPL vmlinux 0xf1d40233 blk_abort_request -EXPORT_SYMBOL_GPL vmlinux 0xf1e49b37 debugfs_create_x16 -EXPORT_SYMBOL_GPL vmlinux 0xf1e586cf __traceiter_neigh_event_send_dead -EXPORT_SYMBOL_GPL vmlinux 0xf1f118f6 vfs_truncate -EXPORT_SYMBOL_GPL vmlinux 0xf1f167cf devlink_port_register -EXPORT_SYMBOL_GPL vmlinux 0xf1f16b97 debugfs_print_regs32 -EXPORT_SYMBOL_GPL vmlinux 0xf202254b device_add -EXPORT_SYMBOL_GPL vmlinux 0xf20798cd devm_ti_sci_get_handle -EXPORT_SYMBOL_GPL vmlinux 0xf20cf398 sdio_f0_writeb +EXPORT_SYMBOL_GPL vmlinux 0xf18abafa crypto_dequeue_request +EXPORT_SYMBOL_GPL vmlinux 0xf18dd116 ata_sff_postreset +EXPORT_SYMBOL_GPL vmlinux 0xf1acb17c devlink_port_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf1b77f68 meson_aoclkc_probe +EXPORT_SYMBOL_GPL vmlinux 0xf1ba477f ahci_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0xf1bba81e kernel_read_file +EXPORT_SYMBOL_GPL vmlinux 0xf1bd5682 __nf_ip6_route +EXPORT_SYMBOL_GPL vmlinux 0xf1d3bbc9 device_phy_find_device +EXPORT_SYMBOL_GPL vmlinux 0xf1d78e5a ata_host_register +EXPORT_SYMBOL_GPL vmlinux 0xf1f2224d cpuidle_get_driver +EXPORT_SYMBOL_GPL vmlinux 0xf2024c3f inet_csk_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0xf22258d1 extcon_set_property -EXPORT_SYMBOL_GPL vmlinux 0xf23a24fc gpiochip_free_own_desc -EXPORT_SYMBOL_GPL vmlinux 0xf23b2354 of_get_fb_videomode +EXPORT_SYMBOL_GPL vmlinux 0xf225e347 of_pci_get_devfn +EXPORT_SYMBOL_GPL vmlinux 0xf23a6faf gfn_to_pfn_prot EXPORT_SYMBOL_GPL vmlinux 0xf241e46f topology_set_thermal_pressure -EXPORT_SYMBOL_GPL vmlinux 0xf242e46a tcp_ca_get_key_by_name -EXPORT_SYMBOL_GPL vmlinux 0xf24bbe0d devlink_register -EXPORT_SYMBOL_GPL vmlinux 0xf2589593 regulator_is_supported_voltage -EXPORT_SYMBOL_GPL vmlinux 0xf26d4991 __netpoll_free +EXPORT_SYMBOL_GPL vmlinux 0xf2498a2c kobject_move +EXPORT_SYMBOL_GPL vmlinux 0xf2578796 devlink_param_value_changed +EXPORT_SYMBOL_GPL vmlinux 0xf25c882f gpiod_get_raw_value +EXPORT_SYMBOL_GPL vmlinux 0xf25d6b22 dev_pm_opp_get_max_clock_latency +EXPORT_SYMBOL_GPL vmlinux 0xf26009f3 device_bind_driver +EXPORT_SYMBOL_GPL vmlinux 0xf26afe29 edac_device_handle_ce_count +EXPORT_SYMBOL_GPL vmlinux 0xf279e085 ata_sff_data_xfer +EXPORT_SYMBOL_GPL vmlinux 0xf27cc7ea put_device EXPORT_SYMBOL_GPL vmlinux 0xf27d0a7b gnttab_grant_foreign_access_ref -EXPORT_SYMBOL_GPL vmlinux 0xf280d94f pci_cfg_access_lock -EXPORT_SYMBOL_GPL vmlinux 0xf28a381e dm_start_time_ns_from_clone +EXPORT_SYMBOL_GPL vmlinux 0xf28728bc kvm_debugfs_dir EXPORT_SYMBOL_GPL vmlinux 0xf2967796 ring_buffer_record_on -EXPORT_SYMBOL_GPL vmlinux 0xf2b0eeb2 ata_acpi_stm +EXPORT_SYMBOL_GPL vmlinux 0xf29e1dcf imx_pinconf_set_scu EXPORT_SYMBOL_GPL vmlinux 0xf2b33cb7 memory_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xf2b45809 bpf_prog_create_from_user -EXPORT_SYMBOL_GPL vmlinux 0xf2b8eecd skb_defer_rx_timestamp -EXPORT_SYMBOL_GPL vmlinux 0xf2d12e60 seg6_do_srh_encap -EXPORT_SYMBOL_GPL vmlinux 0xf2d3a704 scmi_protocol_register -EXPORT_SYMBOL_GPL vmlinux 0xf2de9b13 sk_msg_recvmsg -EXPORT_SYMBOL_GPL vmlinux 0xf2f5940c dma_vunmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0xf2b6b81d devm_of_platform_depopulate +EXPORT_SYMBOL_GPL vmlinux 0xf2ba660f acomp_request_free +EXPORT_SYMBOL_GPL vmlinux 0xf2cc45ab led_sysfs_disable +EXPORT_SYMBOL_GPL vmlinux 0xf2cfe40e mmu_interval_notifier_insert_locked +EXPORT_SYMBOL_GPL vmlinux 0xf2d564bf acpi_subsys_runtime_resume EXPORT_SYMBOL_GPL vmlinux 0xf2fb61bd vprintk_default -EXPORT_SYMBOL_GPL vmlinux 0xf2ffdd02 serial8250_release_dma 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 0xf31b3fd1 workqueue_set_max_active -EXPORT_SYMBOL_GPL vmlinux 0xf31cf757 of_clk_parent_fill -EXPORT_SYMBOL_GPL vmlinux 0xf31f1b1f pm_generic_suspend_late -EXPORT_SYMBOL_GPL vmlinux 0xf3203f50 devlink_trap_policers_register -EXPORT_SYMBOL_GPL vmlinux 0xf321bd7a regmap_can_raw_write EXPORT_SYMBOL_GPL vmlinux 0xf32bdc5d unregister_xenstore_notifier EXPORT_SYMBOL_GPL vmlinux 0xf331236f btree_geo32 -EXPORT_SYMBOL_GPL vmlinux 0xf335bc37 fwnode_graph_get_port_parent -EXPORT_SYMBOL_GPL vmlinux 0xf336e516 k3_ringacc_dmarings_init -EXPORT_SYMBOL_GPL vmlinux 0xf33a0891 cpuidle_get_cpu_driver -EXPORT_SYMBOL_GPL vmlinux 0xf340786e pci_load_saved_state -EXPORT_SYMBOL_GPL vmlinux 0xf34f9892 watchdog_set_last_hw_keepalive -EXPORT_SYMBOL_GPL vmlinux 0xf3512a1b extcon_set_state_sync +EXPORT_SYMBOL_GPL vmlinux 0xf33b8b2e spi_res_alloc EXPORT_SYMBOL_GPL vmlinux 0xf352023f memory_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xf35f3024 usb_register_dev -EXPORT_SYMBOL_GPL vmlinux 0xf35fa39f pm_generic_restore_noirq -EXPORT_SYMBOL_GPL vmlinux 0xf360aad4 devlink_resource_size_get -EXPORT_SYMBOL_GPL vmlinux 0xf36d6867 acpi_dma_controller_register -EXPORT_SYMBOL_GPL vmlinux 0xf378d748 ahci_save_initial_config +EXPORT_SYMBOL_GPL vmlinux 0xf353b37d thermal_zone_get_slope +EXPORT_SYMBOL_GPL vmlinux 0xf35c4a27 fsl_mc_bus_dpbp_type +EXPORT_SYMBOL_GPL vmlinux 0xf36cb53d rockchip_clk_register_armclk +EXPORT_SYMBOL_GPL vmlinux 0xf36de1b4 crypto_stats_compress +EXPORT_SYMBOL_GPL vmlinux 0xf376a0c0 iomap_fiemap EXPORT_SYMBOL_GPL vmlinux 0xf3797506 mpi_ec_deinit -EXPORT_SYMBOL_GPL vmlinux 0xf37b7951 sata_scr_valid -EXPORT_SYMBOL_GPL vmlinux 0xf3806a99 clk_mux_ops EXPORT_SYMBOL_GPL vmlinux 0xf3808cb1 get_state_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0xf384d0c2 regmap_parse_val EXPORT_SYMBOL_GPL vmlinux 0xf386bbb4 housekeeping_cpumask -EXPORT_SYMBOL_GPL vmlinux 0xf3871fdc devlink_port_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf39c4b92 ahci_platform_disable_clks -EXPORT_SYMBOL_GPL vmlinux 0xf3a4dedb devlink_port_attrs_pci_sf_set -EXPORT_SYMBOL_GPL vmlinux 0xf3a77295 pci_epc_get +EXPORT_SYMBOL_GPL vmlinux 0xf3928300 ping_hash +EXPORT_SYMBOL_GPL vmlinux 0xf3ac21a8 wwan_port_rx +EXPORT_SYMBOL_GPL vmlinux 0xf3ada2a6 blk_trace_startstop EXPORT_SYMBOL_GPL vmlinux 0xf3b451ca kdb_poll_funcs EXPORT_SYMBOL_GPL vmlinux 0xf3b95d79 btree_remove -EXPORT_SYMBOL_GPL vmlinux 0xf3bcecd4 devm_spi_mem_dirmap_destroy -EXPORT_SYMBOL_GPL vmlinux 0xf3bf6179 driver_find -EXPORT_SYMBOL_GPL vmlinux 0xf3e478ba md_account_bio -EXPORT_SYMBOL_GPL vmlinux 0xf3ed8fb8 encrypt_blob -EXPORT_SYMBOL_GPL vmlinux 0xf40f6b40 xfrm_audit_state_icvfail -EXPORT_SYMBOL_GPL vmlinux 0xf41ba758 devlink_remote_reload_actions_performed -EXPORT_SYMBOL_GPL vmlinux 0xf43e08a0 devlink_rate_nodes_destroy -EXPORT_SYMBOL_GPL vmlinux 0xf441a75d wwan_register_ops -EXPORT_SYMBOL_GPL vmlinux 0xf4520d66 phy_put -EXPORT_SYMBOL_GPL vmlinux 0xf4666de0 serdev_device_write_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xf3c41a29 pci_user_read_config_byte +EXPORT_SYMBOL_GPL vmlinux 0xf3c85caf gpiochip_add_pin_range +EXPORT_SYMBOL_GPL vmlinux 0xf3c8fc1a kobject_init_and_add +EXPORT_SYMBOL_GPL vmlinux 0xf3db9bae mtk_hw_get_value +EXPORT_SYMBOL_GPL vmlinux 0xf3ec0e45 usb_reset_endpoint +EXPORT_SYMBOL_GPL vmlinux 0xf3efc5cf __rio_local_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0xf4496cfc dev_pm_qos_hide_flags +EXPORT_SYMBOL_GPL vmlinux 0xf4518c28 __dma_request_channel EXPORT_SYMBOL_GPL vmlinux 0xf4689d50 linkmode_set_pause -EXPORT_SYMBOL_GPL vmlinux 0xf46ff79f sysfs_remove_file_ns -EXPORT_SYMBOL_GPL vmlinux 0xf470df96 perf_event_update_userpage +EXPORT_SYMBOL_GPL vmlinux 0xf46a75fa device_get_named_child_node +EXPORT_SYMBOL_GPL vmlinux 0xf4721531 efivar_entry_size +EXPORT_SYMBOL_GPL vmlinux 0xf4765070 devm_release_action EXPORT_SYMBOL_GPL vmlinux 0xf47654df irq_check_status_bit +EXPORT_SYMBOL_GPL vmlinux 0xf48044d6 blk_queue_can_use_dma_map_merging +EXPORT_SYMBOL_GPL vmlinux 0xf486c229 scsi_get_vpd_page +EXPORT_SYMBOL_GPL vmlinux 0xf490a765 mtk_pinconf_adv_pull_get +EXPORT_SYMBOL_GPL vmlinux 0xf4978f32 follow_pte +EXPORT_SYMBOL_GPL vmlinux 0xf49be93e udp_bpf_update_proto EXPORT_SYMBOL_GPL vmlinux 0xf4a00349 __tracepoint_block_rq_insert +EXPORT_SYMBOL_GPL vmlinux 0xf4a2e9af reset_simple_ops +EXPORT_SYMBOL_GPL vmlinux 0xf4a6039b cpufreq_cooling_unregister EXPORT_SYMBOL_GPL vmlinux 0xf4af35c2 rcu_gp_is_normal -EXPORT_SYMBOL_GPL vmlinux 0xf4b02b98 usb_set_configuration -EXPORT_SYMBOL_GPL vmlinux 0xf4b425fd crypto_hash_walk_done -EXPORT_SYMBOL_GPL vmlinux 0xf4b5ac81 fsl_mc_portal_allocate -EXPORT_SYMBOL_GPL vmlinux 0xf4c18c11 ohci_init_driver -EXPORT_SYMBOL_GPL vmlinux 0xf4cbe71d pci_disable_pri +EXPORT_SYMBOL_GPL vmlinux 0xf4aff838 gpiochip_relres_irq +EXPORT_SYMBOL_GPL vmlinux 0xf4b7cf2f udp_init_sock +EXPORT_SYMBOL_GPL vmlinux 0xf4c5cfe5 sock_prot_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0xf4c904f8 preempt_notifier_register EXPORT_SYMBOL_GPL vmlinux 0xf4cd9f8f reset_control_bulk_release -EXPORT_SYMBOL_GPL vmlinux 0xf4d22ab9 free_io_pgtable_ops -EXPORT_SYMBOL_GPL vmlinux 0xf4d5b2f4 dev_attr_em_message_type -EXPORT_SYMBOL_GPL vmlinux 0xf4dcffbb bgmac_enet_suspend +EXPORT_SYMBOL_GPL vmlinux 0xf4db01f5 bpf_map_inc_not_zero +EXPORT_SYMBOL_GPL vmlinux 0xf4e120d6 pcie_flr EXPORT_SYMBOL_GPL vmlinux 0xf4e35e28 sbitmap_prepare_to_wait -EXPORT_SYMBOL_GPL vmlinux 0xf4fd8261 rio_dev_put -EXPORT_SYMBOL_GPL vmlinux 0xf510a7b4 __traceiter_pelt_dl_tp -EXPORT_SYMBOL_GPL vmlinux 0xf529a814 mmc_get_ext_csd -EXPORT_SYMBOL_GPL vmlinux 0xf541b30b kvm_vcpu_gfn_to_pfn_atomic +EXPORT_SYMBOL_GPL vmlinux 0xf4f2cc29 __mmdrop +EXPORT_SYMBOL_GPL vmlinux 0xf50d5e83 pci_epc_stop +EXPORT_SYMBOL_GPL vmlinux 0xf51e2723 to_nd_region +EXPORT_SYMBOL_GPL vmlinux 0xf5260cdf iomap_file_buffered_write +EXPORT_SYMBOL_GPL vmlinux 0xf5288186 __pci_epc_create +EXPORT_SYMBOL_GPL vmlinux 0xf52a1e89 vp_modern_queue_vector +EXPORT_SYMBOL_GPL vmlinux 0xf52d9c86 i2c_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xf52f1c2c anon_inode_getfd_secure +EXPORT_SYMBOL_GPL vmlinux 0xf52f764b crypto_unregister_algs +EXPORT_SYMBOL_GPL vmlinux 0xf5374fb8 pci_walk_bus EXPORT_SYMBOL_GPL vmlinux 0xf548988d put_iova_domain EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm -EXPORT_SYMBOL_GPL vmlinux 0xf54beed7 phy_pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0xf551f34e acpi_subsys_freeze EXPORT_SYMBOL_GPL vmlinux 0xf553318d cpuidle_pause_and_lock -EXPORT_SYMBOL_GPL vmlinux 0xf56fc167 pci_epc_set_bar -EXPORT_SYMBOL_GPL vmlinux 0xf575f44f phy_save_page -EXPORT_SYMBOL_GPL vmlinux 0xf579d745 gpiochip_line_is_valid -EXPORT_SYMBOL_GPL vmlinux 0xf5980d30 mpc8xxx_spi_probe -EXPORT_SYMBOL_GPL vmlinux 0xf5985fc9 blk_ksm_is_superset -EXPORT_SYMBOL_GPL vmlinux 0xf598853e regulator_count_voltages -EXPORT_SYMBOL_GPL vmlinux 0xf59d4b67 rio_attach_device +EXPORT_SYMBOL_GPL vmlinux 0xf553f396 crypto_stats_init +EXPORT_SYMBOL_GPL vmlinux 0xf5562999 extcon_set_property_sync +EXPORT_SYMBOL_GPL vmlinux 0xf560a24f kthread_data +EXPORT_SYMBOL_GPL vmlinux 0xf56e39b7 regulator_map_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0xf5832ed7 k3_udma_glue_request_rx_chn +EXPORT_SYMBOL_GPL vmlinux 0xf5850d8e ata_sff_queue_pio_task EXPORT_SYMBOL_GPL vmlinux 0xf5a3ba99 linear_range_values_in_range EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus -EXPORT_SYMBOL_GPL vmlinux 0xf5a91c13 switchdev_port_obj_add -EXPORT_SYMBOL_GPL vmlinux 0xf5b934e4 cpuidle_get_driver -EXPORT_SYMBOL_GPL vmlinux 0xf5cf10c6 hisi_uncore_pmu_disable +EXPORT_SYMBOL_GPL vmlinux 0xf5d79ba9 gnttab_foreach_grant_in_range EXPORT_SYMBOL_GPL vmlinux 0xf5e1a77c trace_seq_putmem_hex -EXPORT_SYMBOL_GPL vmlinux 0xf5edcf91 devlink_dpipe_action_put +EXPORT_SYMBOL_GPL vmlinux 0xf5efe032 perf_aux_output_skip EXPORT_SYMBOL_GPL vmlinux 0xf5f370e0 async_schedule_node -EXPORT_SYMBOL_GPL vmlinux 0xf6182ca7 edac_pci_add_device +EXPORT_SYMBOL_GPL vmlinux 0xf5f65bfd uart_try_toggle_sysrq +EXPORT_SYMBOL_GPL vmlinux 0xf5fca405 cpufreq_driver_resolve_freq +EXPORT_SYMBOL_GPL vmlinux 0xf608b899 devm_extcon_dev_register EXPORT_SYMBOL_GPL vmlinux 0xf61c6b74 hv_do_hypercall -EXPORT_SYMBOL_GPL vmlinux 0xf6331f0d __rio_local_write_config_8 -EXPORT_SYMBOL_GPL vmlinux 0xf634fbc1 skcipher_walk_complete -EXPORT_SYMBOL_GPL vmlinux 0xf6426ce8 __root_device_register -EXPORT_SYMBOL_GPL vmlinux 0xf645e0c3 kvm_init -EXPORT_SYMBOL_GPL vmlinux 0xf646df79 __page_file_index +EXPORT_SYMBOL_GPL vmlinux 0xf622912b icc_link_destroy EXPORT_SYMBOL_GPL vmlinux 0xf64aaa25 alarm_init -EXPORT_SYMBOL_GPL vmlinux 0xf65dd7d8 meson8_aobus_parse_dt_extra +EXPORT_SYMBOL_GPL vmlinux 0xf661e0fc fuse_fill_super_common EXPORT_SYMBOL_GPL vmlinux 0xf663ee2f pcap_adc_sync -EXPORT_SYMBOL_GPL vmlinux 0xf6a169a2 housekeeping_affine +EXPORT_SYMBOL_GPL vmlinux 0xf674596a watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0xf68dc8d1 tcp_rate_check_app_limited +EXPORT_SYMBOL_GPL vmlinux 0xf69732c5 iommu_aux_detach_device +EXPORT_SYMBOL_GPL vmlinux 0xf69a2c20 platform_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xf6a07e56 fsl_mc_bus_dpdcei_type EXPORT_SYMBOL_GPL vmlinux 0xf6a28554 region_intersects -EXPORT_SYMBOL_GPL vmlinux 0xf6b3e08c xenbus_dev_error +EXPORT_SYMBOL_GPL vmlinux 0xf6b10439 fat_free_clusters +EXPORT_SYMBOL_GPL vmlinux 0xf6b50241 dmaengine_desc_set_metadata_len EXPORT_SYMBOL_GPL vmlinux 0xf6beee37 __SCK__tp_func_pelt_cfs_tp -EXPORT_SYMBOL_GPL vmlinux 0xf6c1343b sched_trace_rq_avg_rt -EXPORT_SYMBOL_GPL vmlinux 0xf6c3e53a usb_for_each_port +EXPORT_SYMBOL_GPL vmlinux 0xf6c2c10d mpc8xxx_spi_tx_buf_u16 EXPORT_SYMBOL_GPL vmlinux 0xf6c71a25 cper_severity_str EXPORT_SYMBOL_GPL vmlinux 0xf6c8dc62 cpu_hotplug_enable -EXPORT_SYMBOL_GPL vmlinux 0xf6d62ce2 irq_create_fwspec_mapping -EXPORT_SYMBOL_GPL vmlinux 0xf6d871e6 regulator_irq_helper -EXPORT_SYMBOL_GPL vmlinux 0xf6e07934 of_phy_put +EXPORT_SYMBOL_GPL vmlinux 0xf6cd7c04 sched_trace_cfs_rq_cpu +EXPORT_SYMBOL_GPL vmlinux 0xf6de4226 phy_pm_runtime_get EXPORT_SYMBOL_GPL vmlinux 0xf6e772c3 irq_bypass_unregister_producer -EXPORT_SYMBOL_GPL vmlinux 0xf6e7accf gpiod_to_irq -EXPORT_SYMBOL_GPL vmlinux 0xf6e84dbb vfs_write EXPORT_SYMBOL_GPL vmlinux 0xf6e874f5 ata_timing_merge -EXPORT_SYMBOL_GPL vmlinux 0xf6ef5d1c devm_nvmem_device_get -EXPORT_SYMBOL_GPL vmlinux 0xf6f33fcc blkdev_report_zones -EXPORT_SYMBOL_GPL vmlinux 0xf6f73829 devres_destroy -EXPORT_SYMBOL_GPL vmlinux 0xf6f9d59d scsi_target_unblock -EXPORT_SYMBOL_GPL vmlinux 0xf70a2ec6 iomap_dio_iopoll +EXPORT_SYMBOL_GPL vmlinux 0xf6ff52ce dma_buf_begin_cpu_access EXPORT_SYMBOL_GPL vmlinux 0xf72a65ea tty_get_char_size +EXPORT_SYMBOL_GPL vmlinux 0xf72addc0 arm64_mm_context_get EXPORT_SYMBOL_GPL vmlinux 0xf730fb4a qcom_smem_state_update_bits -EXPORT_SYMBOL_GPL vmlinux 0xf732d258 acpi_get_and_request_gpiod -EXPORT_SYMBOL_GPL vmlinux 0xf742513b __class_register -EXPORT_SYMBOL_GPL vmlinux 0xf744a4e1 regulator_allow_bypass +EXPORT_SYMBOL_GPL vmlinux 0xf73e0c2c rio_unregister_scan EXPORT_SYMBOL_GPL vmlinux 0xf7455c16 input_event_to_user -EXPORT_SYMBOL_GPL vmlinux 0xf746e6eb lochnagar_update_config -EXPORT_SYMBOL_GPL vmlinux 0xf74738d8 xdp_return_frame_rx_napi EXPORT_SYMBOL_GPL vmlinux 0xf749debc md5_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0xf74b747a iomap_seek_hole EXPORT_SYMBOL_GPL vmlinux 0xf74bb274 mod_delayed_work_on EXPORT_SYMBOL_GPL vmlinux 0xf74e7c93 jump_label_rate_limit -EXPORT_SYMBOL_GPL vmlinux 0xf76e39d7 dev_err_probe -EXPORT_SYMBOL_GPL vmlinux 0xf7741efc __traceiter_rpm_resume -EXPORT_SYMBOL_GPL vmlinux 0xf77b6499 rdev_get_id +EXPORT_SYMBOL_GPL vmlinux 0xf76100d7 pm_runtime_barrier +EXPORT_SYMBOL_GPL vmlinux 0xf7627d95 thermal_zone_of_sensor_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf77d6551 edac_mc_alloc EXPORT_SYMBOL_GPL vmlinux 0xf782fb07 percpu_ref_switch_to_atomic_sync +EXPORT_SYMBOL_GPL vmlinux 0xf7837409 __skb_tstamp_tx EXPORT_SYMBOL_GPL vmlinux 0xf7866b4f bind_evtchn_to_irqhandler_lateeoi -EXPORT_SYMBOL_GPL vmlinux 0xf7908b41 devfreq_event_enable_edev -EXPORT_SYMBOL_GPL vmlinux 0xf7940679 of_irq_get_byname -EXPORT_SYMBOL_GPL vmlinux 0xf797eeb0 regmap_bulk_write -EXPORT_SYMBOL_GPL vmlinux 0xf79a1183 usb_get_maximum_speed -EXPORT_SYMBOL_GPL vmlinux 0xf79afc6b rio_release_inb_pwrite -EXPORT_SYMBOL_GPL vmlinux 0xf79b0bd0 mbox_request_channel -EXPORT_SYMBOL_GPL vmlinux 0xf7a47d45 irq_chip_disable_parent -EXPORT_SYMBOL_GPL vmlinux 0xf7a9e3d9 fscrypt_ioctl_get_key_status +EXPORT_SYMBOL_GPL vmlinux 0xf7a1d5e2 pci_msi_unmask_irq EXPORT_SYMBOL_GPL vmlinux 0xf7afb369 btree_init EXPORT_SYMBOL_GPL vmlinux 0xf7bc95b0 devlink_fmsg_pair_nest_start -EXPORT_SYMBOL_GPL vmlinux 0xf7c1d2c4 imx_pinctrl_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0xf7beb413 __irq_domain_alloc_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xf7c2a869 gov_update_cpu_data +EXPORT_SYMBOL_GPL vmlinux 0xf7c3aa04 pinctrl_force_sleep EXPORT_SYMBOL_GPL vmlinux 0xf7c3f273 xen_resume_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0xf7cf18a2 __devm_regmap_init_mmio_clk -EXPORT_SYMBOL_GPL vmlinux 0xf7d31aa8 nf_ipv6_ops +EXPORT_SYMBOL_GPL vmlinux 0xf7cb26ae dma_buf_export +EXPORT_SYMBOL_GPL vmlinux 0xf7cf772a battery_hook_register +EXPORT_SYMBOL_GPL vmlinux 0xf7d1384a crypto_register_template +EXPORT_SYMBOL_GPL vmlinux 0xf7d6558e dev_pm_domain_attach EXPORT_SYMBOL_GPL vmlinux 0xf7d961d8 clk_hw_unregister_composite -EXPORT_SYMBOL_GPL vmlinux 0xf7f46372 iommu_dev_feature_enabled -EXPORT_SYMBOL_GPL vmlinux 0xf82c1266 alloc_dax_region +EXPORT_SYMBOL_GPL vmlinux 0xf7dbbd7b of_irq_get +EXPORT_SYMBOL_GPL vmlinux 0xf7fdf88f msg_zerocopy_realloc +EXPORT_SYMBOL_GPL vmlinux 0xf800730b do_splice_to +EXPORT_SYMBOL_GPL vmlinux 0xf80213b6 sdio_claim_irq +EXPORT_SYMBOL_GPL vmlinux 0xf803d212 devm_ioremap_uc +EXPORT_SYMBOL_GPL vmlinux 0xf80543d7 da903x_read +EXPORT_SYMBOL_GPL vmlinux 0xf8099a09 iommu_get_domain_for_dev +EXPORT_SYMBOL_GPL vmlinux 0xf80c702c dev_pm_opp_set_clkname +EXPORT_SYMBOL_GPL vmlinux 0xf81fe80e ethnl_cable_test_finished +EXPORT_SYMBOL_GPL vmlinux 0xf8206cb6 fsverity_file_open +EXPORT_SYMBOL_GPL vmlinux 0xf8241389 sata_scr_write +EXPORT_SYMBOL_GPL vmlinux 0xf82b1448 usb_init_urb EXPORT_SYMBOL_GPL vmlinux 0xf82f3657 work_on_cpu -EXPORT_SYMBOL_GPL vmlinux 0xf8330879 sched_trace_cfs_rq_cpu -EXPORT_SYMBOL_GPL vmlinux 0xf836ba6b ata_std_sched_eh -EXPORT_SYMBOL_GPL vmlinux 0xf84a2ef3 iomap_readpage -EXPORT_SYMBOL_GPL vmlinux 0xf84b4d77 mpc8xxx_spi_tx_buf_u16 +EXPORT_SYMBOL_GPL vmlinux 0xf8327da5 regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf8358b6b usb_queue_reset_device +EXPORT_SYMBOL_GPL vmlinux 0xf8372069 usb_get_hcd +EXPORT_SYMBOL_GPL vmlinux 0xf83ca1e7 efivar_entry_set EXPORT_SYMBOL_GPL vmlinux 0xf852d746 __tracepoint_tcp_send_reset EXPORT_SYMBOL_GPL vmlinux 0xf861bd31 rockchip_clk_register_ddrclk -EXPORT_SYMBOL_GPL vmlinux 0xf866de77 spi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0xf879c89b fwnode_graph_get_endpoint_by_id -EXPORT_SYMBOL_GPL vmlinux 0xf87a3ee4 serdev_device_set_tiocm -EXPORT_SYMBOL_GPL vmlinux 0xf8804251 ata_link_next -EXPORT_SYMBOL_GPL vmlinux 0xf88fbb2c ata_sff_dev_select -EXPORT_SYMBOL_GPL vmlinux 0xf890c9d8 mtk_mmsys_ddp_disconnect -EXPORT_SYMBOL_GPL vmlinux 0xf8a2f816 fscrypt_ioctl_get_policy_ex -EXPORT_SYMBOL_GPL vmlinux 0xf8ada41c uart_insert_char -EXPORT_SYMBOL_GPL vmlinux 0xf8ca5d88 add_page_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0xf8d402c0 clk_regmap_gate_ops -EXPORT_SYMBOL_GPL vmlinux 0xf8e5c7d2 fscrypt_mergeable_bio_bh -EXPORT_SYMBOL_GPL vmlinux 0xf8efb38e hisi_uncore_pmu_add +EXPORT_SYMBOL_GPL vmlinux 0xf872b67a ata_host_put +EXPORT_SYMBOL_GPL vmlinux 0xf8856b3f input_ff_create +EXPORT_SYMBOL_GPL vmlinux 0xf890c11d meson_a1_parse_dt_extra +EXPORT_SYMBOL_GPL vmlinux 0xf89da22d cpci_hp_register_bus +EXPORT_SYMBOL_GPL vmlinux 0xf89e75c7 dm_copy_name_and_uuid +EXPORT_SYMBOL_GPL vmlinux 0xf8a76fa5 clk_hw_unregister_mux +EXPORT_SYMBOL_GPL vmlinux 0xf8bd8b3c bpf_offload_dev_netdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf8cf3411 pinctrl_add_gpio_ranges +EXPORT_SYMBOL_GPL vmlinux 0xf8d6a831 __traceiter_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0xf8dbffdf irq_chip_enable_parent +EXPORT_SYMBOL_GPL vmlinux 0xf8dffd75 __mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xf8ed914b fb_bl_default_curve EXPORT_SYMBOL_GPL vmlinux 0xf8f3a0fb ata_ratelimit -EXPORT_SYMBOL_GPL vmlinux 0xf8f8822e pci_sriov_configure_simple EXPORT_SYMBOL_GPL vmlinux 0xf900c77d zynqmp_pm_clock_disable -EXPORT_SYMBOL_GPL vmlinux 0xf90762c1 pci_epf_alloc_space EXPORT_SYMBOL_GPL vmlinux 0xf9093f5b __tracepoint_cpu_frequency -EXPORT_SYMBOL_GPL vmlinux 0xf90e0c01 sock_diag_unregister_inet_compat -EXPORT_SYMBOL_GPL vmlinux 0xf931ca09 key_type_encrypted -EXPORT_SYMBOL_GPL vmlinux 0xf937bde8 __traceiter_pelt_irq_tp -EXPORT_SYMBOL_GPL vmlinux 0xf93b3da0 relay_close -EXPORT_SYMBOL_GPL vmlinux 0xf93e8a7c perf_pmu_migrate_context +EXPORT_SYMBOL_GPL vmlinux 0xf90ccdee thermal_zone_device_update +EXPORT_SYMBOL_GPL vmlinux 0xf910ae72 pci_num_vf +EXPORT_SYMBOL_GPL vmlinux 0xf914c323 sata_std_hardreset +EXPORT_SYMBOL_GPL vmlinux 0xf91a8bdb pinctrl_enable +EXPORT_SYMBOL_GPL vmlinux 0xf933089d lwtunnel_fill_encap +EXPORT_SYMBOL_GPL vmlinux 0xf935ecbf gnttab_page_cache_get +EXPORT_SYMBOL_GPL vmlinux 0xf94bb13f wm831x_set_bits EXPORT_SYMBOL_GPL vmlinux 0xf95322f4 kthread_parkme EXPORT_SYMBOL_GPL vmlinux 0xf955e9c5 bprintf -EXPORT_SYMBOL_GPL vmlinux 0xf95a0c17 sched_set_fifo +EXPORT_SYMBOL_GPL vmlinux 0xf9637f71 __vring_new_virtqueue EXPORT_SYMBOL_GPL vmlinux 0xf967422b HYPERVISOR_xen_version -EXPORT_SYMBOL_GPL vmlinux 0xf9712312 cpufreq_frequency_table_get_index -EXPORT_SYMBOL_GPL vmlinux 0xf97fa731 ip6_datagram_connect_v6_only -EXPORT_SYMBOL_GPL vmlinux 0xf989671a disk_force_media_change -EXPORT_SYMBOL_GPL vmlinux 0xf995409d acpi_device_update_power -EXPORT_SYMBOL_GPL vmlinux 0xf9968057 vchan_find_desc +EXPORT_SYMBOL_GPL vmlinux 0xf971ea92 kvm_write_guest +EXPORT_SYMBOL_GPL vmlinux 0xf986de33 rio_mport_class +EXPORT_SYMBOL_GPL vmlinux 0xf9951275 pci_disable_ats EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies EXPORT_SYMBOL_GPL vmlinux 0xf9a3c5dc zynqmp_pm_load_pdi -EXPORT_SYMBOL_GPL vmlinux 0xf9a43a03 do_take_over_console -EXPORT_SYMBOL_GPL vmlinux 0xf9af6cf7 watchdog_notify_pretimeout +EXPORT_SYMBOL_GPL vmlinux 0xf9a74c2c regulator_set_soft_start_regmap +EXPORT_SYMBOL_GPL vmlinux 0xf9a8a482 ahci_platform_disable_resources +EXPORT_SYMBOL_GPL vmlinux 0xf9aafef0 rio_mport_get_feature +EXPORT_SYMBOL_GPL vmlinux 0xf9af3484 iommu_device_link +EXPORT_SYMBOL_GPL vmlinux 0xf9b279d3 scmi_driver_register EXPORT_SYMBOL_GPL vmlinux 0xf9b34a0b iopf_queue_free -EXPORT_SYMBOL_GPL vmlinux 0xf9b9dc4d edac_pci_del_device -EXPORT_SYMBOL_GPL vmlinux 0xf9bb06d5 ata_std_prereset -EXPORT_SYMBOL_GPL vmlinux 0xf9c4579d devlink_dpipe_table_counter_enabled -EXPORT_SYMBOL_GPL vmlinux 0xf9cb9d84 pm_generic_poweroff -EXPORT_SYMBOL_GPL vmlinux 0xf9ccfa25 sdio_writeb_readb -EXPORT_SYMBOL_GPL vmlinux 0xf9d157a4 fsstack_copy_attr_all -EXPORT_SYMBOL_GPL vmlinux 0xf9d73e5c imx_pinconf_set_scu -EXPORT_SYMBOL_GPL vmlinux 0xf9d7de64 gpiod_get_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xf9b370cb debugfs_read_file_bool +EXPORT_SYMBOL_GPL vmlinux 0xf9b4175c amba_ahb_device_add_res +EXPORT_SYMBOL_GPL vmlinux 0xf9b4dc2c tty_port_tty_hangup +EXPORT_SYMBOL_GPL vmlinux 0xf9b6a616 clkdev_create +EXPORT_SYMBOL_GPL vmlinux 0xf9ea0f3b mddev_resume EXPORT_SYMBOL_GPL vmlinux 0xf9ebe553 pci_bridge_emul_init -EXPORT_SYMBOL_GPL vmlinux 0xfa05095e usb_hcd_resume_root_hub -EXPORT_SYMBOL_GPL vmlinux 0xfa094f12 component_add_typed +EXPORT_SYMBOL_GPL vmlinux 0xf9ed99ed clk_register_hisi_phase +EXPORT_SYMBOL_GPL vmlinux 0xfa0a6280 pci_epf_alloc_space +EXPORT_SYMBOL_GPL vmlinux 0xfa10e6f8 devlink_dpipe_action_put +EXPORT_SYMBOL_GPL vmlinux 0xfa1cbf6c regulator_get_bypass_regmap EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops -EXPORT_SYMBOL_GPL vmlinux 0xfa3017f5 blk_trace_setup +EXPORT_SYMBOL_GPL vmlinux 0xfa214236 devfreq_cooling_em_register +EXPORT_SYMBOL_GPL vmlinux 0xfa286533 iomap_swapfile_activate +EXPORT_SYMBOL_GPL vmlinux 0xfa33cc1e ata_port_pbar_desc EXPORT_SYMBOL_GPL vmlinux 0xfa349688 aer_recover_queue -EXPORT_SYMBOL_GPL vmlinux 0xfa3aef6c regmap_write_async +EXPORT_SYMBOL_GPL vmlinux 0xfa3afa27 vp_modern_queue_address +EXPORT_SYMBOL_GPL vmlinux 0xfa40369d mtk_pinconf_drive_set_rev1 +EXPORT_SYMBOL_GPL vmlinux 0xfa551b2e nvdimm_bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0xfa5c6273 mmc_regulator_set_ocr EXPORT_SYMBOL_GPL vmlinux 0xfa666974 queue_work_node EXPORT_SYMBOL_GPL vmlinux 0xfa690589 netdev_cmd_to_name -EXPORT_SYMBOL_GPL vmlinux 0xfa783aa1 da9052_enable_irq -EXPORT_SYMBOL_GPL vmlinux 0xfa8dbfb9 devlink_sb_register -EXPORT_SYMBOL_GPL vmlinux 0xfa91b3b2 iommu_detach_device -EXPORT_SYMBOL_GPL vmlinux 0xfa938128 __kvm_set_memory_region -EXPORT_SYMBOL_GPL vmlinux 0xfa9864d3 led_update_brightness -EXPORT_SYMBOL_GPL vmlinux 0xfaa1d52e devm_pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0xfa800393 regmap_get_max_register EXPORT_SYMBOL_GPL vmlinux 0xfab30dc0 mdio_bus_exit EXPORT_SYMBOL_GPL vmlinux 0xfab53ed9 pinctrl_gpio_can_use_line -EXPORT_SYMBOL_GPL vmlinux 0xfac3ca78 bpfilter_umh_cleanup -EXPORT_SYMBOL_GPL vmlinux 0xfad7ed7e dma_buf_put EXPORT_SYMBOL_GPL vmlinux 0xfad9c827 kill_dax -EXPORT_SYMBOL_GPL vmlinux 0xfb1b0835 fixed_phy_set_link_update -EXPORT_SYMBOL_GPL vmlinux 0xfb32af6e ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0xfadd0a76 debugfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0xfaf3bc0d put_pid +EXPORT_SYMBOL_GPL vmlinux 0xfaf95b76 ata_port_abort +EXPORT_SYMBOL_GPL vmlinux 0xfb141f1b regulator_is_equal +EXPORT_SYMBOL_GPL vmlinux 0xfb2354e5 tty_port_default_client_ops +EXPORT_SYMBOL_GPL vmlinux 0xfb2b97af sdio_retune_crc_disable +EXPORT_SYMBOL_GPL vmlinux 0xfb2f3ce0 crypto_alloc_ahash EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync -EXPORT_SYMBOL_GPL vmlinux 0xfb33e9ce fsnotify_add_mark -EXPORT_SYMBOL_GPL vmlinux 0xfb5071ad ata_sff_port_intr -EXPORT_SYMBOL_GPL vmlinux 0xfb509697 devlink_params_unpublish -EXPORT_SYMBOL_GPL vmlinux 0xfb53ca89 __blkg_prfill_u64 -EXPORT_SYMBOL_GPL vmlinux 0xfb56db9b ping_recvmsg -EXPORT_SYMBOL_GPL vmlinux 0xfb625bfb perf_get_aux -EXPORT_SYMBOL_GPL vmlinux 0xfb6373d1 hisi_uncore_pmu_offline_cpu -EXPORT_SYMBOL_GPL vmlinux 0xfb65c0e8 hvc_alloc +EXPORT_SYMBOL_GPL vmlinux 0xfb43c5a6 of_property_read_u64_index +EXPORT_SYMBOL_GPL vmlinux 0xfb54cccc pinconf_generic_dt_node_to_map +EXPORT_SYMBOL_GPL vmlinux 0xfb56d270 clone_private_mount +EXPORT_SYMBOL_GPL vmlinux 0xfb5841cc xhci_get_ep_ctx EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name -EXPORT_SYMBOL_GPL vmlinux 0xfb75053d pm_runtime_set_autosuspend_delay -EXPORT_SYMBOL_GPL vmlinux 0xfb855c0f edac_pci_create_generic_ctl -EXPORT_SYMBOL_GPL vmlinux 0xfb920f03 amba_apb_device_add -EXPORT_SYMBOL_GPL vmlinux 0xfb92dc8a strp_stop -EXPORT_SYMBOL_GPL vmlinux 0xfb9eebb2 phy_set_speed -EXPORT_SYMBOL_GPL vmlinux 0xfbb4f896 da903x_read -EXPORT_SYMBOL_GPL vmlinux 0xfbb8920f component_unbind_all +EXPORT_SYMBOL_GPL vmlinux 0xfb92ad17 mtk_eint_do_suspend +EXPORT_SYMBOL_GPL vmlinux 0xfba57694 anon_inode_getfd +EXPORT_SYMBOL_GPL vmlinux 0xfbb92b35 devlink_resources_unregister EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action -EXPORT_SYMBOL_GPL vmlinux 0xfbc53f05 dev_pm_set_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0xfbcaeb7c crypto_unregister_skcipher -EXPORT_SYMBOL_GPL vmlinux 0xfbd4fbe4 irq_get_domain_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xfbbd4ec8 unregister_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0xfbc8eccf pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0xfbcc1ed5 sock_diag_check_cookie +EXPORT_SYMBOL_GPL vmlinux 0xfbe0c86d usb_of_get_companion_dev +EXPORT_SYMBOL_GPL vmlinux 0xfbe59eb4 ahci_platform_ops +EXPORT_SYMBOL_GPL vmlinux 0xfbeaf7cf tty_port_install EXPORT_SYMBOL_GPL vmlinux 0xfbeeb13c phy_gbit_all_ports_features -EXPORT_SYMBOL_GPL vmlinux 0xfbf34633 iomap_seek_data -EXPORT_SYMBOL_GPL vmlinux 0xfbf74810 vfs_cancel_lock -EXPORT_SYMBOL_GPL vmlinux 0xfbf89632 nf_queue_entry_free +EXPORT_SYMBOL_GPL vmlinux 0xfbf8709e ahci_platform_shutdown 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 0xfc09b975 usb_hcd_platform_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xfc14b11d fscrypt_ioctl_remove_key EXPORT_SYMBOL_GPL vmlinux 0xfc14bb2e dm_get_dev_t EXPORT_SYMBOL_GPL vmlinux 0xfc19bc45 crypto_dh_encode_key -EXPORT_SYMBOL_GPL vmlinux 0xfc1c04bf elv_register EXPORT_SYMBOL_GPL vmlinux 0xfc201b66 sprint_oid EXPORT_SYMBOL_GPL vmlinux 0xfc254d15 gnttab_free_auto_xlat_frames -EXPORT_SYMBOL_GPL vmlinux 0xfc2e7bab xen_xlate_remap_gfn_array -EXPORT_SYMBOL_GPL vmlinux 0xfc3677f6 wm8350_reg_read -EXPORT_SYMBOL_GPL vmlinux 0xfc3a9370 nf_queue_entry_get_refs +EXPORT_SYMBOL_GPL vmlinux 0xfc2758e5 thp_get_unmapped_area +EXPORT_SYMBOL_GPL vmlinux 0xfc30a20b spi_res_add EXPORT_SYMBOL_GPL vmlinux 0xfc3b4246 acpi_bus_update_power -EXPORT_SYMBOL_GPL vmlinux 0xfc3d4bdf irq_gc_mask_clr_bit -EXPORT_SYMBOL_GPL vmlinux 0xfc453c07 xenbus_read_otherend_details -EXPORT_SYMBOL_GPL vmlinux 0xfc5ab63d gnttab_page_cache_put -EXPORT_SYMBOL_GPL vmlinux 0xfc5c5935 usb_create_hcd -EXPORT_SYMBOL_GPL vmlinux 0xfc6f7cb7 simple_attr_write -EXPORT_SYMBOL_GPL vmlinux 0xfc70e780 ipv4_sk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0xfc7274a6 kobject_move +EXPORT_SYMBOL_GPL vmlinux 0xfc3c21cd clk_mux_determine_rate_flags +EXPORT_SYMBOL_GPL vmlinux 0xfc4ac4f1 md_submit_discard_bio EXPORT_SYMBOL_GPL vmlinux 0xfc746b3c gnttab_page_cache_shrink -EXPORT_SYMBOL_GPL vmlinux 0xfc7c501c ahci_do_softreset +EXPORT_SYMBOL_GPL vmlinux 0xfc8023d8 of_address_to_resource +EXPORT_SYMBOL_GPL vmlinux 0xfc846651 devm_kstrdup EXPORT_SYMBOL_GPL vmlinux 0xfc9477b5 zynqmp_pm_set_pll_frac_data +EXPORT_SYMBOL_GPL vmlinux 0xfcb35c63 sched_set_normal EXPORT_SYMBOL_GPL vmlinux 0xfcbfec70 add_memory_driver_managed EXPORT_SYMBOL_GPL vmlinux 0xfcc1edd3 memory_block_size_bytes -EXPORT_SYMBOL_GPL vmlinux 0xfce14f95 rtc_initialize_alarm +EXPORT_SYMBOL_GPL vmlinux 0xfcccf150 relay_subbufs_consumed +EXPORT_SYMBOL_GPL vmlinux 0xfcd254f0 bus_get_kset +EXPORT_SYMBOL_GPL vmlinux 0xfce6bdfe inode_sb_list_add +EXPORT_SYMBOL_GPL vmlinux 0xfcf25ada sprd_pinctrl_core_probe EXPORT_SYMBOL_GPL vmlinux 0xfcf9ef73 hw_protection_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xfcfe014d netdev_rx_handler_register EXPORT_SYMBOL_GPL vmlinux 0xfd068326 register_kretprobes EXPORT_SYMBOL_GPL vmlinux 0xfd195774 k3_udma_glue_disable_tx_chn -EXPORT_SYMBOL_GPL vmlinux 0xfd258992 dax_layout_busy_page -EXPORT_SYMBOL_GPL vmlinux 0xfd41362e devm_gpio_request -EXPORT_SYMBOL_GPL vmlinux 0xfd44bfc6 md_stop_writes -EXPORT_SYMBOL_GPL vmlinux 0xfd48e09f pci_epc_init_notify -EXPORT_SYMBOL_GPL vmlinux 0xfd579113 crypto_destroy_tfm -EXPORT_SYMBOL_GPL vmlinux 0xfd59ffe6 mtk_eint_set_debounce -EXPORT_SYMBOL_GPL vmlinux 0xfd5fc568 mbox_flush +EXPORT_SYMBOL_GPL vmlinux 0xfd1cd847 pinctrl_dev_get_name +EXPORT_SYMBOL_GPL vmlinux 0xfd1cdc64 mddev_init_writes_pending +EXPORT_SYMBOL_GPL vmlinux 0xfd1d3cc3 call_switchdev_notifiers +EXPORT_SYMBOL_GPL vmlinux 0xfd1f4d50 devlink_dpipe_entry_ctx_prepare +EXPORT_SYMBOL_GPL vmlinux 0xfd22edf0 regmap_fields_read +EXPORT_SYMBOL_GPL vmlinux 0xfd30f4e0 pci_rescan_bus +EXPORT_SYMBOL_GPL vmlinux 0xfd35a721 do_take_over_console +EXPORT_SYMBOL_GPL vmlinux 0xfd3e25ea regulator_get_linear_step +EXPORT_SYMBOL_GPL vmlinux 0xfd561631 proc_create_net_data +EXPORT_SYMBOL_GPL vmlinux 0xfd5a2356 imx_unregister_hw_clocks EXPORT_SYMBOL_GPL vmlinux 0xfd7243c7 erst_disable -EXPORT_SYMBOL_GPL vmlinux 0xfd771497 ehci_setup -EXPORT_SYMBOL_GPL vmlinux 0xfd855465 loop_backing_file -EXPORT_SYMBOL_GPL vmlinux 0xfdadb628 icc_set_bw -EXPORT_SYMBOL_GPL vmlinux 0xfdb3bf61 xfrm_dev_state_add -EXPORT_SYMBOL_GPL vmlinux 0xfdb5484e irq_chip_set_parent_state -EXPORT_SYMBOL_GPL vmlinux 0xfdb6ac32 vchan_tx_desc_free +EXPORT_SYMBOL_GPL vmlinux 0xfd775f5e of_get_fb_videomode +EXPORT_SYMBOL_GPL vmlinux 0xfd89e824 dev_attr_ncq_prio_enable +EXPORT_SYMBOL_GPL vmlinux 0xfd92a786 max8997_write_reg +EXPORT_SYMBOL_GPL vmlinux 0xfd9b460d ehci_setup +EXPORT_SYMBOL_GPL vmlinux 0xfda53058 devm_led_classdev_register_ext +EXPORT_SYMBOL_GPL vmlinux 0xfdac9f2c sdio_writew EXPORT_SYMBOL_GPL vmlinux 0xfdbd7a17 crypto_get_attr_type -EXPORT_SYMBOL_GPL vmlinux 0xfdd5125e sata_pmp_port_ops -EXPORT_SYMBOL_GPL vmlinux 0xfde572af balloon_page_list_enqueue +EXPORT_SYMBOL_GPL vmlinux 0xfdcad7e1 pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0xfdcdebc0 driver_attach +EXPORT_SYMBOL_GPL vmlinux 0xfdd02073 pinctrl_parse_index_with_args EXPORT_SYMBOL_GPL vmlinux 0xfdea2d04 alarm_cancel -EXPORT_SYMBOL_GPL vmlinux 0xfe0ab51d clk_regmap_mux_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0xfdeb1cee dt_init_idle_driver +EXPORT_SYMBOL_GPL vmlinux 0xfdebdebf usb_control_msg_send +EXPORT_SYMBOL_GPL vmlinux 0xfdf35436 __fat_fs_error +EXPORT_SYMBOL_GPL vmlinux 0xfdfe13ac crypto_alloc_kpp EXPORT_SYMBOL_GPL vmlinux 0xfe0e7cd3 apei_exec_post_unmap_gars -EXPORT_SYMBOL_GPL vmlinux 0xfe170416 of_clk_hw_simple_get -EXPORT_SYMBOL_GPL vmlinux 0xfe198238 kobject_get_path EXPORT_SYMBOL_GPL vmlinux 0xfe1a7a7b mpi_point_release -EXPORT_SYMBOL_GPL vmlinux 0xfe1b6db9 platform_add_devices -EXPORT_SYMBOL_GPL vmlinux 0xfe2fbe07 dma_free_pages +EXPORT_SYMBOL_GPL vmlinux 0xfe335bac attribute_container_classdev_to_container +EXPORT_SYMBOL_GPL vmlinux 0xfe369113 dev_pm_qos_remove_notifier EXPORT_SYMBOL_GPL vmlinux 0xfe3a6de3 alarm_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0xfe3b4ead rio_set_port_lockout +EXPORT_SYMBOL_GPL vmlinux 0xfe3bdce9 tty_kopen_exclusive EXPORT_SYMBOL_GPL vmlinux 0xfe476039 ktime_get_resolution_ns -EXPORT_SYMBOL_GPL vmlinux 0xfe536651 usb_match_one_id -EXPORT_SYMBOL_GPL vmlinux 0xfe6c68e2 genphy_c45_read_status -EXPORT_SYMBOL_GPL vmlinux 0xfe75db4d sdio_get_host_pm_caps -EXPORT_SYMBOL_GPL vmlinux 0xfe804b9f crypto_mod_put -EXPORT_SYMBOL_GPL vmlinux 0xfe80deff fsl_mc_bus_dpdbg_type -EXPORT_SYMBOL_GPL vmlinux 0xfe86f7bc tty_kclose -EXPORT_SYMBOL_GPL vmlinux 0xfe8a0036 devm_gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0xfe69b01e genphy_c45_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0xfe84f514 thermal_zone_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xfe86243e of_dma_simple_xlate EXPORT_SYMBOL_GPL vmlinux 0xfe8cdb84 ring_buffer_alloc_read_page -EXPORT_SYMBOL_GPL vmlinux 0xfe931973 regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0xfe8e2b6f rockchip_pcie_enable_clocks EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free -EXPORT_SYMBOL_GPL vmlinux 0xfe9b1c51 ahci_qc_issue -EXPORT_SYMBOL_GPL vmlinux 0xfea44339 cgroup_get_from_id -EXPORT_SYMBOL_GPL vmlinux 0xfea6c778 tcp_twsk_unique -EXPORT_SYMBOL_GPL vmlinux 0xfeb21e21 generic_handle_domain_irq -EXPORT_SYMBOL_GPL vmlinux 0xfec2a61e spi_mem_driver_register_with_owner +EXPORT_SYMBOL_GPL vmlinux 0xfe9abf17 led_init_core EXPORT_SYMBOL_GPL vmlinux 0xfec3bf84 icst_clk_setup -EXPORT_SYMBOL_GPL vmlinux 0xfec4f3ba imx_check_clk_hws -EXPORT_SYMBOL_GPL vmlinux 0xfec74537 dev_pm_genpd_resume -EXPORT_SYMBOL_GPL vmlinux 0xfecd519c rockchip_clk_register_plls +EXPORT_SYMBOL_GPL vmlinux 0xfec80ae3 bdi_dev_name EXPORT_SYMBOL_GPL vmlinux 0xfed11ed1 usb_mon_deregister -EXPORT_SYMBOL_GPL vmlinux 0xfed20a06 devm_device_add_groups +EXPORT_SYMBOL_GPL vmlinux 0xfed38207 inet6_hash +EXPORT_SYMBOL_GPL vmlinux 0xfedd5ca6 i2c_bus_type EXPORT_SYMBOL_GPL vmlinux 0xfede9222 __tracepoint_suspend_resume -EXPORT_SYMBOL_GPL vmlinux 0xfee4115b tegra_mc_probe_device -EXPORT_SYMBOL_GPL vmlinux 0xfee52a9a tps6586x_update +EXPORT_SYMBOL_GPL vmlinux 0xfee3e658 pinctrl_register EXPORT_SYMBOL_GPL vmlinux 0xfeeecd05 apei_read -EXPORT_SYMBOL_GPL vmlinux 0xfefaca1b mtk_eint_do_resume -EXPORT_SYMBOL_GPL vmlinux 0xff015672 fsl_mc_bus_dpbp_type +EXPORT_SYMBOL_GPL vmlinux 0xff025e54 xfrm_audit_policy_add +EXPORT_SYMBOL_GPL vmlinux 0xff046e91 wm8350_reg_lock EXPORT_SYMBOL_GPL vmlinux 0xff05fa13 vring_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xff0fc3db i2c_probe_func_quick_read EXPORT_SYMBOL_GPL vmlinux 0xff1666f3 reset_control_bulk_assert +EXPORT_SYMBOL_GPL vmlinux 0xff28943a nf_queue_entry_get_refs EXPORT_SYMBOL_GPL vmlinux 0xff291ecf clk_unregister_divider -EXPORT_SYMBOL_GPL vmlinux 0xff2af737 virtqueue_enable_cb_prepare -EXPORT_SYMBOL_GPL vmlinux 0xff311a6b relay_subbufs_consumed -EXPORT_SYMBOL_GPL vmlinux 0xff39d828 of_property_read_string_helper +EXPORT_SYMBOL_GPL vmlinux 0xff2ca0a7 acpi_subsys_suspend +EXPORT_SYMBOL_GPL vmlinux 0xff2e0722 rio_mport_read_config_8 EXPORT_SYMBOL_GPL vmlinux 0xff42c374 usb_role_switch_get_role -EXPORT_SYMBOL_GPL vmlinux 0xff5a1140 irq_chip_mask_parent -EXPORT_SYMBOL_GPL vmlinux 0xff660fa5 unregister_asymmetric_key_parser -EXPORT_SYMBOL_GPL vmlinux 0xff7bee47 devm_regmap_field_bulk_free -EXPORT_SYMBOL_GPL vmlinux 0xff7cbc3f irq_get_default_host +EXPORT_SYMBOL_GPL vmlinux 0xff4a9b64 driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xff69898c blk_ksm_register +EXPORT_SYMBOL_GPL vmlinux 0xff7b8da7 security_inode_mkdir +EXPORT_SYMBOL_GPL vmlinux 0xff7d8147 devm_spi_mem_dirmap_destroy EXPORT_SYMBOL_GPL vmlinux 0xff7e33bf mpi_sub_ui +EXPORT_SYMBOL_GPL vmlinux 0xff7e6e3c led_trigger_set_default EXPORT_SYMBOL_GPL vmlinux 0xff81487d gpiod_remove_lookup_table -EXPORT_SYMBOL_GPL vmlinux 0xff9dd292 spi_controller_suspend +EXPORT_SYMBOL_GPL vmlinux 0xff8bc76d phy_configure +EXPORT_SYMBOL_GPL vmlinux 0xff8e00f5 tty_get_icount +EXPORT_SYMBOL_GPL vmlinux 0xff916061 pci_remove_root_bus +EXPORT_SYMBOL_GPL vmlinux 0xff934e0b ata_acpi_gtm_xfermask EXPORT_SYMBOL_GPL vmlinux 0xff9e23d1 hugetlb_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xffa7ac94 pinctrl_remove_gpio_range EXPORT_SYMBOL_GPL vmlinux 0xffae8e8b nsecs_to_jiffies -EXPORT_SYMBOL_GPL vmlinux 0xffb50f58 acpi_device_fix_up_power -EXPORT_SYMBOL_GPL vmlinux 0xffb56562 scsi_schedule_eh -EXPORT_SYMBOL_GPL vmlinux 0xffb8b55b phy_led_trigger_change_speed -EXPORT_SYMBOL_GPL vmlinux 0xffcb126f component_del -EXPORT_SYMBOL_GPL vmlinux 0xfffcf5b4 devm_clk_bulk_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xffb409ea blk_req_needs_zone_write_lock +EXPORT_SYMBOL_GPL vmlinux 0xffbccec3 devm_mbox_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0xffc814d9 spi_controller_suspend +EXPORT_SYMBOL_GPL vmlinux 0xffd42255 of_led_get +EXPORT_SYMBOL_GPL vmlinux 0xffebec0a security_inode_setattr +EXPORT_SYMBOL_GPL vmlinux 0xfffe8523 rockchip_clk_init FIRMWARE_LOADER_PRIVATE EXPORT_SYMBOL_GPL 0xd3ae7756 fw_fallback_config vmlinux -IIO_HID EXPORT_SYMBOL 0x1a1942ed hid_sensor_convert_timestamp drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0x226ba18f hid_sensor_read_raw_hyst_rel_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0x64eb4e08 hid_sensor_write_raw_hyst_rel_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0x7b806d47 hid_sensor_power_state drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0x5f9300ba hid_sensor_parse_common_attributes drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x613a21f5 hid_sensor_read_samp_freq_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x69e893eb hid_sensor_read_raw_hyst_value drivers/iio/common/hid-sensors/hid-sensor-iio-common IIO_HID EXPORT_SYMBOL 0x7f7621ec hid_sensor_format_scale drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0xa0f927b9 hid_sensor_setup_trigger drivers/iio/common/hid-sensors/hid-sensor-trigger -IIO_HID EXPORT_SYMBOL 0xc6397a1f hid_sensor_read_samp_freq_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0xde8a5978 hid_sensor_pm_ops drivers/iio/common/hid-sensors/hid-sensor-trigger -IIO_HID EXPORT_SYMBOL 0xef23f3f8 hid_sensor_read_raw_hyst_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0xf034018b hid_sensor_parse_common_attributes drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0xf164cdd2 hid_sensor_write_samp_freq_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0xf1cbd643 hid_sensor_remove_trigger drivers/iio/common/hid-sensors/hid-sensor-trigger -IIO_HID EXPORT_SYMBOL 0xfb589bd6 hid_sensor_write_raw_hyst_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x389f584b hid_sensor_set_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x5b28cc78 hid_sensor_read_poll_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0xd6704483 hid_sensor_get_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0xe1e14752 hid_sensor_batch_mode_supported drivers/iio/common/hid-sensors/hid-sensor-iio-common -LTC2497 EXPORT_SYMBOL 0x8d4fd638 ltc2497core_remove drivers/iio/adc/ltc2497-core -LTC2497 EXPORT_SYMBOL 0xc361bbc0 ltc2497core_probe drivers/iio/adc/ltc2497-core -MCB EXPORT_SYMBOL_GPL 0x0942864b mcb_bus_put drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x14ef072b mcb_request_mem drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x1df69020 mcb_bus_add_devices drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x3a4482aa mcb_alloc_dev drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x3b44c8ec mcb_bus_get drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x4ef26ece mcb_release_bus drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x66513b23 mcb_get_irq drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x79d86569 mcb_unregister_driver drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x7c2e3fa8 mcb_alloc_bus drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x93c210cb mcb_get_resource drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0xa9f963b1 mcb_free_dev drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0xbd204eed mcb_device_register drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0xd4d29802 __mcb_register_driver drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0xdca26dc3 chameleon_parse_cells drivers/mcb/mcb +IIO_HID EXPORT_SYMBOL 0x99d40f5d hid_sensor_power_state drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0x9dd4c698 hid_sensor_setup_trigger drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0xa1347006 hid_sensor_remove_trigger drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0xa2ace6c1 hid_sensor_pm_ops drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0xd8eeb149 hid_sensor_write_samp_freq_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0xdaa97815 hid_sensor_convert_timestamp drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0xedc5f1e1 hid_sensor_read_raw_hyst_rel_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0xf651bde1 hid_sensor_write_raw_hyst_rel_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0xfd1acb53 hid_sensor_write_raw_hyst_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x4007db28 hid_sensor_batch_mode_supported drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x47c2bb38 hid_sensor_set_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x4abd6fcf hid_sensor_get_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0xc9777db5 hid_sensor_read_poll_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +LTC2497 EXPORT_SYMBOL 0xa0b61cab ltc2497core_remove drivers/iio/adc/ltc2497-core +LTC2497 EXPORT_SYMBOL 0xd4634db2 ltc2497core_probe drivers/iio/adc/ltc2497-core +MCB EXPORT_SYMBOL_GPL 0x0a4138a7 chameleon_parse_cells drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x15a650dd mcb_free_dev drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x1894a013 mcb_get_resource drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x2138bfa5 mcb_alloc_bus drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x2d83f4cb mcb_bus_add_devices drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x45dfc716 mcb_bus_get drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x4b81634e mcb_bus_put drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x7dbc5764 mcb_release_bus drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xa7415e06 mcb_unregister_driver drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xb8d88c51 mcb_request_mem drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xdb866fda __mcb_register_driver drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xe3559755 mcb_get_irq drivers/mcb/mcb MCB EXPORT_SYMBOL_GPL 0xeb2c8905 mcb_release_mem drivers/mcb/mcb -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x0a0fc6fa nvme_find_get_ns drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x11f0c852 nvme_put_ns drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x1706996d nvme_execute_passthru_rq drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x46cd2ede nvme_command_effects drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x7de5db2e nvme_ctrl_from_file drivers/nvme/host/nvme-core -PMBUS EXPORT_SYMBOL_GPL 0x08a6e43e pmbus_set_update drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x2ac63dce pmbus_check_byte_register drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x45cdedbd pmbus_read_word_data drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x4a782294 pmbus_write_word_data drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x501fb9e3 pmbus_get_fan_rate_device drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x5c6459c2 pmbus_update_byte_data drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x61c6221e pmbus_write_byte drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x7431d831 pmbus_clear_faults drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x79300ed7 pmbus_read_byte_data drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x82bef689 pmbus_get_debugfs_dir drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xa3a4c62f pmbus_get_fan_rate_cached drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xb08b90d5 pmbus_do_probe drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xc71044e3 pmbus_clear_cache drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xcce41f3c pmbus_update_fan drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xd0b7dce6 pmbus_write_byte_data drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xe7b0f9b4 pmbus_regulator_ops drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xe7c6f564 pmbus_set_page drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xeec7987a pmbus_check_word_register drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xf38181f5 pmbus_get_driver_info drivers/hwmon/pmbus/pmbus_core +MCB EXPORT_SYMBOL_GPL 0xf3811d54 mcb_alloc_dev drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xfff2fa58 mcb_device_register drivers/mcb/mcb +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x20e89325 nvme_put_ns drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xb4cdc733 nvme_ctrl_from_file drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xce41fb0d nvme_command_effects drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xd4a30eca nvme_execute_passthru_rq drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xe2b2583e nvme_find_get_ns drivers/nvme/host/nvme-core +PMBUS EXPORT_SYMBOL_GPL 0x157eb2a8 pmbus_check_word_register drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x1681b591 pmbus_clear_cache drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x20df9b4e pmbus_read_byte_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x23b7f1f3 pmbus_do_probe drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x25abe968 pmbus_get_debugfs_dir drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x4b217fae pmbus_get_driver_info drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x5ba0403c pmbus_set_page drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x6e10c5e5 pmbus_check_byte_register drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x8a360065 pmbus_update_byte_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x8f23abab pmbus_set_update drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xa4b4713a pmbus_write_byte drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xadf61009 pmbus_clear_faults drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xb2e10b5a pmbus_update_fan drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xb4a69d41 pmbus_get_fan_rate_device drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xcbc771dc pmbus_get_fan_rate_cached drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xd10092a1 pmbus_regulator_ops drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xdf755253 pmbus_read_word_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xf64bc36a pmbus_write_byte_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xfa1605d4 pmbus_write_word_data drivers/hwmon/pmbus/pmbus_core +SND_HDA_SCODEC_CS35L41 EXPORT_SYMBOL_GPL 0x9d673f58 cs35l41_hda_probe sound/pci/hda/snd-hda-scodec-cs35l41 +SND_HDA_SCODEC_CS35L41 EXPORT_SYMBOL_GPL 0xbe8d9567 cs35l41_hda_remove sound/pci/hda/snd-hda-scodec-cs35l41 SND_INTEL_SOUNDWIRE_ACPI EXPORT_SYMBOL 0xbb4f9d1f sdw_intel_acpi_scan sound/hda/snd-intel-sdw-acpi -SND_SOC_SOF_XTENSA EXPORT_SYMBOL 0x8d770a62 sof_xtensa_arch_ops sound/soc/sof/xtensa/snd-sof-xtensa-dsp -SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0x33c3b27f sdw_intel_process_wakeen_event drivers/soundwire/soundwire-intel -SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0x4374845f sdw_intel_startup drivers/soundwire/soundwire-intel +SND_SOC_SOF_XTENSA EXPORT_SYMBOL 0xa9ce2943 sof_xtensa_arch_ops sound/soc/sof/xtensa/snd-sof-xtensa-dsp +SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0x32be37a7 sdw_intel_probe drivers/soundwire/soundwire-intel +SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0x36e26231 sdw_intel_process_wakeen_event drivers/soundwire/soundwire-intel SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0x5af438eb sdw_intel_enable_irq drivers/soundwire/soundwire-intel -SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0x745b2eba sdw_intel_exit drivers/soundwire/soundwire-intel +SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0x5c20f6ea sdw_intel_startup drivers/soundwire/soundwire-intel SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0xaa52eba1 sdw_intel_thread drivers/soundwire/soundwire-intel -SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0xdb39b87a sdw_intel_probe drivers/soundwire/soundwire-intel -USB_STORAGE EXPORT_SYMBOL_GPL 0x0bdb1563 usb_stor_bulk_transfer_buf drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x0db46f9b usb_stor_access_xfer_buf drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x1320c683 usb_stor_ctrl_transfer drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x16f2a79f usb_stor_suspend drivers/usb/storage/usb-storage +SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0xf1423da7 sdw_intel_exit drivers/soundwire/soundwire-intel +USB_STORAGE EXPORT_SYMBOL_GPL 0x026be003 usb_stor_ctrl_transfer drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x0405a6b9 usb_stor_probe2 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 0x272540f6 usb_stor_transparent_scsi_command drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x3087c9c2 usb_stor_control_msg drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x351fe1e3 usb_stor_bulk_transfer_sg drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x3b415221 usb_stor_Bulk_transport drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x3daea21a fill_inquiry_response drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x3f6f4076 usb_stor_disconnect drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x4b86a751 usb_stor_pre_reset drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x667b2cb2 usb_stor_clear_halt drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x6c85d98f usb_stor_resume drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x74e99a4e usb_stor_host_template_init drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x83512783 usb_stor_probe2 drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x88d28ea6 usb_stor_post_reset drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x90a0e1d5 usb_stor_probe1 drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x9566c83d usb_stor_adjust_quirks drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xac8a3ab1 usb_stor_set_xfer_buf drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xb8c88a0b usb_stor_CB_transport drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xc2773021 usb_stor_CB_reset drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xd4394b56 usb_stor_Bulk_reset drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xe374598c usb_stor_reset_resume drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xf280e078 usb_stor_bulk_srb drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x26349a2d usb_stor_adjust_quirks drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x2be7b0fb usb_stor_bulk_srb drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x2c856c35 usb_stor_Bulk_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x31fe9dd5 usb_stor_pre_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x3290e494 usb_stor_post_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x53e33b1e usb_stor_host_template_init drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x6768a50e usb_stor_CB_transport drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x7e6ec005 usb_stor_bulk_transfer_buf drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x8809605d usb_stor_clear_halt drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x8d4807c0 usb_stor_Bulk_transport drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x99d66dbb usb_stor_control_msg drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xa99b6ae8 usb_stor_transparent_scsi_command drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xbfe0da25 usb_stor_bulk_transfer_sg drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xc8265b86 usb_stor_set_xfer_buf drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xc92ab395 usb_stor_disconnect drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xca1160c3 usb_stor_access_xfer_buf drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xccab9f2a usb_stor_CB_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xd4f8b148 usb_stor_probe1 drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xee090ffc usb_stor_resume drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xef167d5e usb_stor_suspend drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xfc4df5ef fill_inquiry_response drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xfd1851d3 usb_stor_reset_resume drivers/usb/storage/usb-storage diff -u linux-intel-iotg-5.15-5.15.0/debian.master/abi/arm64/generic-64k.modules linux-intel-iotg-5.15-5.15.0/debian.master/abi/arm64/generic-64k.modules --- linux-intel-iotg-5.15-5.15.0/debian.master/abi/arm64/generic-64k.modules +++ linux-intel-iotg-5.15-5.15.0/debian.master/abi/arm64/generic-64k.modules @@ -2097,6 +2097,12 @@ hisi_sec hisi_sec2 hisi_thermal +hisi_uncore_ddrc_pmu +hisi_uncore_hha_pmu +hisi_uncore_l3c_pmu +hisi_uncore_pa_pmu +hisi_uncore_pmu +hisi_uncore_sllc_pmu hisi_zip hix5hd2_gmac hmc425a @@ -2773,7 +2779,6 @@ lib80211_crypt_wep libarc4 libblake2s -libblake2s-generic libceph libchacha libchacha20poly1305 @@ -5279,6 +5284,9 @@ snd-hda-codec-via snd-hda-core snd-hda-intel +snd-hda-scodec-cs35l41 +snd-hda-scodec-cs35l41-i2c +snd-hda-scodec-cs35l41-spi snd-hda-tegra snd-hdsp snd-hdspm @@ -5380,6 +5388,10 @@ snd-soc-cs35l34 snd-soc-cs35l35 snd-soc-cs35l36 +snd-soc-cs35l41 +snd-soc-cs35l41-i2c +snd-soc-cs35l41-lib +snd-soc-cs35l41-spi snd-soc-cs4234 snd-soc-cs4265 snd-soc-cs4270 @@ -5627,6 +5639,7 @@ snd-soc-wcd934x snd-soc-wcd938x snd-soc-wcd938x-sdw +snd-soc-wm-adsp snd-soc-wm-hubs snd-soc-wm8510 snd-soc-wm8523 @@ -5718,6 +5731,18 @@ sparx5-temp sparx5_serdes spcp8x5 +speakup +speakup_acntsa +speakup_apollo +speakup_audptr +speakup_bns +speakup_decext +speakup_dectlk +speakup_dummy +speakup_ltlk +speakup_soft +speakup_spkout +speakup_txprt speedfax speedtch spi-altera-core @@ -6557,8 +6582,10 @@ vme_user vme_vmivme7805 vmk80xx +vmw_vmci vmw_vsock_virtio_transport vmw_vsock_virtio_transport_common +vmw_vsock_vmci_transport vmwgfx vp27smpx vp_vdpa diff -u linux-intel-iotg-5.15-5.15.0/debian.master/abi/arm64/generic.modules linux-intel-iotg-5.15-5.15.0/debian.master/abi/arm64/generic.modules --- linux-intel-iotg-5.15-5.15.0/debian.master/abi/arm64/generic.modules +++ linux-intel-iotg-5.15-5.15.0/debian.master/abi/arm64/generic.modules @@ -2097,6 +2097,12 @@ hisi_sec hisi_sec2 hisi_thermal +hisi_uncore_ddrc_pmu +hisi_uncore_hha_pmu +hisi_uncore_l3c_pmu +hisi_uncore_pa_pmu +hisi_uncore_pmu +hisi_uncore_sllc_pmu hisi_zip hix5hd2_gmac hmc425a @@ -2773,7 +2779,6 @@ lib80211_crypt_wep libarc4 libblake2s -libblake2s-generic libceph libchacha libchacha20poly1305 @@ -5280,6 +5285,9 @@ snd-hda-codec-via snd-hda-core snd-hda-intel +snd-hda-scodec-cs35l41 +snd-hda-scodec-cs35l41-i2c +snd-hda-scodec-cs35l41-spi snd-hda-tegra snd-hdsp snd-hdspm @@ -5381,6 +5389,10 @@ snd-soc-cs35l34 snd-soc-cs35l35 snd-soc-cs35l36 +snd-soc-cs35l41 +snd-soc-cs35l41-i2c +snd-soc-cs35l41-lib +snd-soc-cs35l41-spi snd-soc-cs4234 snd-soc-cs4265 snd-soc-cs4270 @@ -5628,6 +5640,7 @@ snd-soc-wcd934x snd-soc-wcd938x snd-soc-wcd938x-sdw +snd-soc-wm-adsp snd-soc-wm-hubs snd-soc-wm8510 snd-soc-wm8523 @@ -5719,6 +5732,18 @@ sparx5-temp sparx5_serdes spcp8x5 +speakup +speakup_acntsa +speakup_apollo +speakup_audptr +speakup_bns +speakup_decext +speakup_dectlk +speakup_dummy +speakup_ltlk +speakup_soft +speakup_spkout +speakup_txprt speedfax speedtch spi-altera-core @@ -6559,8 +6584,10 @@ vme_vmivme7805 vmk80xx vmw_pvrdma +vmw_vmci vmw_vsock_virtio_transport vmw_vsock_virtio_transport_common +vmw_vsock_vmci_transport vmwgfx vmxnet3 vp27smpx diff -u linux-intel-iotg-5.15-5.15.0/debian.master/abi/armhf/generic linux-intel-iotg-5.15-5.15.0/debian.master/abi/armhf/generic --- linux-intel-iotg-5.15-5.15.0/debian.master/abi/armhf/generic +++ linux-intel-iotg-5.15-5.15.0/debian.master/abi/armhf/generic @@ -1,24 +1,24 @@ -CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x9502c683 crypto_cipher_decrypt_one vmlinux -CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0xd3e097aa crypto_cipher_encrypt_one vmlinux -CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0xf3e74f4e crypto_cipher_setkey vmlinux -CXL EXPORT_SYMBOL_GPL 0x0729045d devm_cxl_add_port drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x0fb83ebc cxl_bus_type drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x1a5341b0 cxl_map_device_regs drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x2776e543 to_cxl_decoder drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x317a1230 to_cxl_nvdimm drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x48d6fba2 cxl_probe_device_regs drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x62cc9156 devm_cxl_add_memdev drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x6b93c160 cxl_driver_unregister drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x80c2254a devm_cxl_add_nvdimm drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x9b8d1941 devm_cxl_add_nvdimm_bridge drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xb917c664 to_cxl_nvdimm_bridge drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xd32e9f4d __cxl_driver_register drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xda3b195f cxl_map_component_regs drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xdaf8d9fe devm_cxl_add_decoder drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xe37e4938 cxl_probe_component_regs drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xf5cd1c22 is_root_decoder drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xf8ab4184 cxl_add_dport drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xfcade1e3 is_cxl_nvdimm drivers/cxl/core/cxl_core +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x2488ddb6 crypto_cipher_decrypt_one vmlinux +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x855438f1 crypto_cipher_setkey vmlinux +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0xa6995d61 crypto_cipher_encrypt_one vmlinux +CXL EXPORT_SYMBOL_GPL 0x0b33e7a8 __cxl_driver_register drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x15cd0c7e is_cxl_nvdimm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x1f9b446c devm_cxl_add_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x2e810369 cxl_probe_component_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x376bcad9 cxl_map_device_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x45f18252 to_cxl_nvdimm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x4bd005f0 cxl_bus_type drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x5d2e1257 devm_cxl_add_memdev drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x5e996a7a devm_cxl_add_nvdimm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x60ced292 devm_cxl_add_nvdimm_bridge drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x610ccea9 cxl_driver_unregister drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x704fae34 devm_cxl_add_port drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x7c33b5aa is_root_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x7ec01b46 to_cxl_nvdimm_bridge drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x8067962b cxl_map_component_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xc2fc981d cxl_add_dport drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xc9691e7b cxl_probe_device_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xfa21c5f8 to_cxl_decoder drivers/cxl/core/cxl_core EXPORT_SYMBOL arch/arm/crypto/blake2s-arm 0x5c9b932c blake2s_compress_arch EXPORT_SYMBOL arch/arm/crypto/chacha-neon 0x220b49ab chacha_crypt_arch EXPORT_SYMBOL arch/arm/crypto/chacha-neon 0xdc94f829 chacha_init_arch @@ -28,8 +28,8 @@ EXPORT_SYMBOL arch/arm/crypto/poly1305-arm 0x1c3e6e5b poly1305_init_arch EXPORT_SYMBOL arch/arm/crypto/poly1305-arm 0x6ddf27bc poly1305_update_arch EXPORT_SYMBOL arch/arm/crypto/poly1305-arm 0xf39f5240 poly1305_final_arch -EXPORT_SYMBOL arch/arm/crypto/sha256-arm 0x5bc675b2 crypto_sha256_arm_update -EXPORT_SYMBOL arch/arm/crypto/sha256-arm 0xeacbabb8 crypto_sha256_arm_finup +EXPORT_SYMBOL arch/arm/crypto/sha256-arm 0x3fda710b crypto_sha256_arm_finup +EXPORT_SYMBOL arch/arm/crypto/sha256-arm 0xeedc59cd crypto_sha256_arm_update EXPORT_SYMBOL arch/arm/lib/xor-neon 0x0f051164 xor_block_neon_inner EXPORT_SYMBOL crypto/blake2b_generic 0x99d7fe16 blake2b_compress_generic EXPORT_SYMBOL crypto/ecc 0x16e410ff vli_from_be64 @@ -57,103 +57,103 @@ EXPORT_SYMBOL crypto/sha3_generic 0x46c5f90f crypto_sha3_final EXPORT_SYMBOL crypto/sha3_generic 0x61e70f6a crypto_sha3_update EXPORT_SYMBOL crypto/sha3_generic 0xd9cd2a37 crypto_sha3_init -EXPORT_SYMBOL crypto/sm2_generic 0xb4f3bd1c sm2_compute_z_digest -EXPORT_SYMBOL crypto/sm3_generic 0x1ce1caf7 crypto_sm3_update -EXPORT_SYMBOL crypto/sm3_generic 0x6ff9a360 crypto_sm3_finup -EXPORT_SYMBOL crypto/sm3_generic 0x75aecd4f crypto_sm3_final +EXPORT_SYMBOL crypto/sm2_generic 0x951d8dc7 sm2_compute_z_digest +EXPORT_SYMBOL crypto/sm3_generic 0x499559a6 crypto_sm3_final +EXPORT_SYMBOL crypto/sm3_generic 0x574171b6 crypto_sm3_finup +EXPORT_SYMBOL crypto/sm3_generic 0xd5bc5d39 crypto_sm3_update EXPORT_SYMBOL crypto/xor 0x5b6c00e6 xor_blocks -EXPORT_SYMBOL drivers/atm/suni 0x8ea241b6 suni_init -EXPORT_SYMBOL drivers/bcma/bcma 0x1288cab0 bcma_core_dma_translation -EXPORT_SYMBOL drivers/bcma/bcma 0x76543f5e bcma_core_irq +EXPORT_SYMBOL drivers/atm/suni 0x6faeb27b suni_init +EXPORT_SYMBOL drivers/bcma/bcma 0x8729a212 bcma_core_dma_translation +EXPORT_SYMBOL drivers/bcma/bcma 0xde337fc6 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 0x00ee32f0 pi_init -EXPORT_SYMBOL drivers/block/paride/paride 0x0ccd6681 pi_read_block -EXPORT_SYMBOL drivers/block/paride/paride 0x1fd30049 pi_release -EXPORT_SYMBOL drivers/block/paride/paride 0x2c5d5b68 pi_disconnect +EXPORT_SYMBOL drivers/block/paride/paride 0x03a083c7 paride_register +EXPORT_SYMBOL drivers/block/paride/paride 0x185dee09 pi_release +EXPORT_SYMBOL drivers/block/paride/paride 0x39c2a19f pi_read_regr +EXPORT_SYMBOL drivers/block/paride/paride 0x3e9f1d60 pi_connect EXPORT_SYMBOL drivers/block/paride/paride 0x4267110a pi_register_driver -EXPORT_SYMBOL drivers/block/paride/paride 0x478b6850 pi_write_regr -EXPORT_SYMBOL drivers/block/paride/paride 0x5406b736 paride_register -EXPORT_SYMBOL drivers/block/paride/paride 0x694d36c9 paride_unregister -EXPORT_SYMBOL drivers/block/paride/paride 0x7d351c2f pi_connect -EXPORT_SYMBOL drivers/block/paride/paride 0x8ed94b0f pi_read_regr +EXPORT_SYMBOL drivers/block/paride/paride 0x5ca9a5af pi_write_block +EXPORT_SYMBOL drivers/block/paride/paride 0x6429c4a1 pi_read_block +EXPORT_SYMBOL drivers/block/paride/paride 0x944eb3f9 pi_do_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0xa4bdfe0b pi_write_regr +EXPORT_SYMBOL drivers/block/paride/paride 0xa5a696f9 paride_unregister EXPORT_SYMBOL drivers/block/paride/paride 0xb21ba07d pi_unregister_driver -EXPORT_SYMBOL drivers/block/paride/paride 0xd6f1ee07 pi_do_claimed -EXPORT_SYMBOL drivers/block/paride/paride 0xe2ef54db pi_write_block -EXPORT_SYMBOL drivers/block/paride/paride 0xf04bc7cb pi_schedule_claimed -EXPORT_SYMBOL drivers/bluetooth/btbcm 0x98067d52 btbcm_patchram -EXPORT_SYMBOL drivers/bluetooth/btrsi 0xcf878102 rsi_bt_ops -EXPORT_SYMBOL drivers/bus/mhi/core/mhi 0xabbb7047 mhi_sync_power_up +EXPORT_SYMBOL drivers/block/paride/paride 0xd0482600 pi_schedule_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0xdf0a9a54 pi_disconnect +EXPORT_SYMBOL drivers/block/paride/paride 0xe8dbb147 pi_init +EXPORT_SYMBOL drivers/bluetooth/btbcm 0xdf2ba6df btbcm_patchram +EXPORT_SYMBOL drivers/bluetooth/btrsi 0xb2ba05d4 rsi_bt_ops +EXPORT_SYMBOL drivers/bus/mhi/core/mhi 0xe7143800 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 0x14d576c9 ipmi_smi_watcher_register +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x16b0f98b ipmi_add_smi EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x230094ac ipmi_smi_watchdog_pretimeout EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x31cab048 ipmi_smi_msg_received EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x40f2b10c ipmi_alloc_smi_msg 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 0x6c0f1608 ipmi_smi_watcher_register 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 0xa27f526a ipmi_get_smi_info EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xaca90ebd ipmi_request_supply_msgs EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xae71627d ipmi_create_user EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xd54a5050 ipmi_unregister_for_cmd -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe041579e 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 0xe52a4ff4 ipmi_add_smi -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xea9ef613 ipmi_smi_watcher_unregister EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xec1c2a90 ipmi_get_my_address +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xeedea896 ipmi_smi_watcher_unregister 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 0x02bce432 kcs_bmc_enable_device -EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x06271a6d kcs_bmc_unregister_driver -EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x0b088778 kcs_bmc_remove_device -EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x3d694b21 kcs_bmc_write_status -EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x5663aa68 kcs_bmc_register_driver -EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x71ac7421 kcs_bmc_write_data -EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x7b04f1a4 kcs_bmc_read_data -EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x7eac4bd8 kcs_bmc_handle_event -EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x8a41299a kcs_bmc_disable_device -EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x99a121ed kcs_bmc_update_status -EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0xb1178a2e kcs_bmc_read_status -EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0xf0e466e8 kcs_bmc_add_device -EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0xf7069394 kcs_bmc_update_event_mask -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x7f5f1eb1 st33zp24_probe -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xa54a0f36 st33zp24_pm_suspend -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xb40c2bd7 st33zp24_pm_resume -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xcc6ae168 st33zp24_remove -EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0x1f125a83 xillybus_find_inode -EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0x94c34c0f xillybus_init_chrdev -EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0xb48b8c56 xillybus_cleanup_chrdev +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x0d09f3f1 kcs_bmc_add_device +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x15744aa2 kcs_bmc_enable_device +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x30755ee9 kcs_bmc_register_driver +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x4e129dab kcs_bmc_update_event_mask +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x65effc9d kcs_bmc_read_status +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x69597d16 kcs_bmc_remove_device +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x699feb72 kcs_bmc_write_status +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x70c1ef55 kcs_bmc_update_status +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0xc5728741 kcs_bmc_handle_event +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0xcb39bee9 kcs_bmc_disable_device +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0xdff48166 kcs_bmc_unregister_driver +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0xf7906bd3 kcs_bmc_write_data +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0xfed2169a kcs_bmc_read_data +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x1638dde2 st33zp24_pm_resume +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x56a025f2 st33zp24_pm_suspend +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x7d3832ac st33zp24_remove +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xfa9db340 st33zp24_probe +EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0x9aedd566 xillybus_find_inode +EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0xd65fbf59 xillybus_cleanup_chrdev +EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0xfb65c79e xillybus_init_chrdev +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x1bb2a496 xillybus_init_endpoint EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x25978d50 xillybus_isr -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x46fd967c xillybus_endpoint_discovery -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x636f27fd xillybus_init_endpoint -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x9bb6a3ed xillybus_endpoint_remove +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xaf21eaca xillybus_endpoint_remove +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xec728b04 xillybus_endpoint_discovery EXPORT_SYMBOL drivers/clk/qcom/clk-qcom 0x25c98843 clk_alpha_pll_zonda_ops EXPORT_SYMBOL drivers/clk/qcom/clk-qcom 0xa03f8920 clk_alpha_pll_postdiv_lucid_5lpe_ops EXPORT_SYMBOL drivers/clk/qcom/clk-qcom 0xd89a02cf clk_alpha_pll_fixed_lucid_5lpe_ops EXPORT_SYMBOL drivers/clk/qcom/clk-qcom 0xed46e5cc clk_alpha_pll_lucid_5lpe_ops -EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x1c6a3511 atmel_i2c_enqueue EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x6c28f9b1 atmel_i2c_init_ecdh_cmd +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x79999b43 atmel_i2c_send_receive EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x80a11b1d atmel_i2c_init_read_cmd -EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xb140102e atmel_i2c_send_receive +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x849ca95f atmel_i2c_enqueue +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xa1b413e1 atmel_i2c_probe EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xc71ed50c atmel_i2c_init_genkey_cmd -EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xef93f525 atmel_i2c_probe 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 0x32d6c9d0 caam_jr_free -EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x50cf0626 gen_split_key -EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x5fd0972c split_key_done -EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x6b8d34aa caam_jr_alloc -EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0xf3c0cc0c caam_jr_enqueue +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x0f7ded77 gen_split_key +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x8f57c510 caam_jr_enqueue +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x91c0b773 caam_jr_free +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0xbb99ae3d split_key_done +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0xc495a16a caam_jr_alloc 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 @@ -173,1041 +173,1041 @@ EXPORT_SYMBOL drivers/crypto/caam/caamhash_desc 0x686d05f8 cnstr_shdsc_ahash EXPORT_SYMBOL drivers/crypto/caam/caamhash_desc 0x9dc00876 cnstr_shdsc_sk_hash EXPORT_SYMBOL drivers/crypto/caam/error 0x2eed504a caam_ptr_sz -EXPORT_SYMBOL drivers/crypto/caam/error 0x5e69ade1 caam_strstatus EXPORT_SYMBOL drivers/crypto/caam/error 0x8db6e8c5 caam_dump_sg +EXPORT_SYMBOL drivers/crypto/caam/error 0x9b18dccc caam_strstatus EXPORT_SYMBOL drivers/crypto/caam/error 0xa51f16c7 caam_little_end EXPORT_SYMBOL drivers/crypto/caam/error 0xbd67c092 caam_imx -EXPORT_SYMBOL drivers/firewire/firewire-core 0x1754e89e fw_send_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0x1a52987d fw_core_handle_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0x1ee95bc7 fw_core_handle_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0x0987391e fw_run_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0x1210e69a fw_iso_context_stop +EXPORT_SYMBOL drivers/firewire/firewire-core 0x20ceca09 fw_core_handle_bus_reset EXPORT_SYMBOL drivers/firewire/firewire-core 0x2885fec5 fw_get_request_speed -EXPORT_SYMBOL drivers/firewire/firewire-core 0x294cbbb5 fw_iso_context_queue -EXPORT_SYMBOL drivers/firewire/firewire-core 0x2e62cd84 fw_core_remove_address_handler -EXPORT_SYMBOL drivers/firewire/firewire-core 0x347dc60a fw_iso_context_create EXPORT_SYMBOL drivers/firewire/firewire-core 0x3c56ef91 fw_workqueue -EXPORT_SYMBOL drivers/firewire/firewire-core 0x3c645c25 fw_bus_type +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3ebc90c0 fw_core_remove_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3ecd1685 fw_core_handle_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x41734cbb fw_core_remove_card +EXPORT_SYMBOL drivers/firewire/firewire-core 0x42301ef2 fw_schedule_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0x46f6f9c2 fw_core_handle_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0x4b0b78aa fw_iso_context_start EXPORT_SYMBOL drivers/firewire/firewire-core 0x556601c3 fw_csr_string -EXPORT_SYMBOL drivers/firewire/firewire-core 0x5827cacf fw_iso_buffer_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0x5b5ed594 fw_iso_context_create +EXPORT_SYMBOL drivers/firewire/firewire-core 0x5c4580e8 fw_card_initialize +EXPORT_SYMBOL drivers/firewire/firewire-core 0x5fdf8bfa fw_fill_response EXPORT_SYMBOL drivers/firewire/firewire-core 0x69f08f72 fw_core_remove_descriptor -EXPORT_SYMBOL drivers/firewire/firewire-core 0x6aaf4c71 fw_card_add -EXPORT_SYMBOL drivers/firewire/firewire-core 0x79136620 fw_core_add_address_handler -EXPORT_SYMBOL drivers/firewire/firewire-core 0x810e1899 fw_run_transaction -EXPORT_SYMBOL drivers/firewire/firewire-core 0x83ef87ef fw_core_remove_card +EXPORT_SYMBOL drivers/firewire/firewire-core 0x6d57cd56 fw_iso_buffer_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0x80ed048e fw_send_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0x81579ad4 fw_cancel_transaction EXPORT_SYMBOL drivers/firewire/firewire-core 0x86468d44 fw_rcode_string -EXPORT_SYMBOL drivers/firewire/firewire-core 0x87cec551 fw_cancel_transaction -EXPORT_SYMBOL drivers/firewire/firewire-core 0x8ce5bda1 fw_send_request EXPORT_SYMBOL drivers/firewire/firewire-core 0x8ec4e37e fw_core_add_descriptor -EXPORT_SYMBOL drivers/firewire/firewire-core 0x9f9034a8 fw_iso_context_flush_completions -EXPORT_SYMBOL drivers/firewire/firewire-core 0xa893f729 fw_iso_context_stop -EXPORT_SYMBOL drivers/firewire/firewire-core 0xac80837d fw_iso_resource_manage +EXPORT_SYMBOL drivers/firewire/firewire-core 0x9a69f540 fw_device_enable_phys_dma +EXPORT_SYMBOL drivers/firewire/firewire-core 0x9a89f1fa fw_iso_resource_manage +EXPORT_SYMBOL drivers/firewire/firewire-core 0x9b796c9f fw_iso_context_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0xa2b34dbb fw_bus_type +EXPORT_SYMBOL drivers/firewire/firewire-core 0xaa0839d4 fw_iso_context_queue EXPORT_SYMBOL drivers/firewire/firewire-core 0xaedf84ce fw_high_memory_region -EXPORT_SYMBOL drivers/firewire/firewire-core 0xafd9e365 fw_iso_context_start -EXPORT_SYMBOL drivers/firewire/firewire-core 0xc254220e fw_schedule_bus_reset -EXPORT_SYMBOL drivers/firewire/firewire-core 0xc7976477 fw_fill_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0xc7c0b581 fw_card_initialize -EXPORT_SYMBOL drivers/firewire/firewire-core 0xcca3abc6 fw_core_handle_bus_reset -EXPORT_SYMBOL drivers/firewire/firewire-core 0xd8b9804f fw_iso_context_queue_flush -EXPORT_SYMBOL drivers/firewire/firewire-core 0xd9ac700d fw_iso_buffer_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0xb4d4513e fw_core_add_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0xc4145196 fw_card_add +EXPORT_SYMBOL drivers/firewire/firewire-core 0xd7348245 fw_iso_context_flush_completions +EXPORT_SYMBOL drivers/firewire/firewire-core 0xe3ceb8ad fw_send_response EXPORT_SYMBOL drivers/firewire/firewire-core 0xe3fde125 fw_csr_iterator_next EXPORT_SYMBOL drivers/firewire/firewire-core 0xe80e5087 fw_csr_iterator_init -EXPORT_SYMBOL drivers/firewire/firewire-core 0xef295770 fw_device_enable_phys_dma -EXPORT_SYMBOL drivers/firewire/firewire-core 0xf3cc2090 fw_iso_context_destroy -EXPORT_SYMBOL drivers/firmware/imx/imx-dsp 0x14817a3c imx_dsp_request_channel -EXPORT_SYMBOL drivers/firmware/imx/imx-dsp 0x24a318f9 imx_dsp_free_channel -EXPORT_SYMBOL drivers/firmware/imx/imx-dsp 0x7e65b3b1 imx_dsp_ring_doorbell -EXPORT_SYMBOL drivers/fpga/dfl 0x5a0e5fb0 __dfl_driver_register -EXPORT_SYMBOL drivers/fpga/dfl 0xabeffb56 dfl_driver_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm 0x005f8ed5 drm_crtc_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x008baca3 drm_display_info_set_bus_formats -EXPORT_SYMBOL drivers/gpu/drm/drm 0x00b74655 drm_plane_force_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x01bf42e6 drm_atomic_get_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x02326ce9 drm_syncobj_find_fence -EXPORT_SYMBOL drivers/gpu/drm/drm 0x024175f3 drm_panel_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x026593b5 drm_send_event_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x02688c5f drm_crtc_vblank_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x03683848 drm_universal_plane_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x039f4670 drm_event_cancel_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0x04660c41 drm_color_lut_check -EXPORT_SYMBOL drivers/gpu/drm/drm 0x048d94b5 drm_crtc_vblank_helper_get_vblank_timestamp_internal -EXPORT_SYMBOL drivers/gpu/drm/drm 0x05b29570 drm_gem_object_lookup +EXPORT_SYMBOL drivers/firewire/firewire-core 0xf4065034 fw_iso_buffer_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0xfa5fc05d fw_iso_context_queue_flush +EXPORT_SYMBOL drivers/firmware/imx/imx-dsp 0x229c81b0 imx_dsp_ring_doorbell +EXPORT_SYMBOL drivers/firmware/imx/imx-dsp 0x93dd4715 imx_dsp_request_channel +EXPORT_SYMBOL drivers/firmware/imx/imx-dsp 0xd1d3e73d imx_dsp_free_channel +EXPORT_SYMBOL drivers/fpga/dfl 0x515c003c dfl_driver_unregister +EXPORT_SYMBOL drivers/fpga/dfl 0x7ae667e8 __dfl_driver_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x00459efe drm_atomic_set_fb_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x006c093b drm_crtc_vblank_on +EXPORT_SYMBOL drivers/gpu/drm/drm 0x00be72e5 drm_property_blob_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0156d57e drm_gem_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0170f275 drm_gem_handle_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0x018ec2e7 drm_framebuffer_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x049cf42a drm_send_event_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x05c1463a drm_mode_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0x05ef9a00 drm_atomic_normalize_zpos +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0636132d drm_i2c_encoder_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x064b7fb8 drm_connector_init EXPORT_SYMBOL drivers/gpu/drm/drm 0x065e86ac drm_detect_hdmi_monitor -EXPORT_SYMBOL drivers/gpu/drm/drm 0x06c52a96 drm_mode_prune_invalid EXPORT_SYMBOL drivers/gpu/drm/drm 0x070b28aa drm_ht_remove_item -EXPORT_SYMBOL drivers/gpu/drm/drm 0x072e302e drm_vblank_work_schedule -EXPORT_SYMBOL drivers/gpu/drm/drm 0x07676467 drm_gem_fence_array_add_implicit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x07889037 drm_i2c_encoder_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x091d7f57 drm_bridge_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0985b963 drm_object_property_get_value -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a3d6c15 drm_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x070f2ff2 drm_client_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0769b7d6 drm_gem_object_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x07890234 drm_connector_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x08223045 drm_gem_shmem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x086e68fa drm_connector_attach_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x08ed3a32 drm_i2c_encoder_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0x091c79f1 drm_warn_on_modeset_not_all_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x09b6103b drm_object_property_get_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x09fbe01e drm_color_lut_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a02b93c drm_dev_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a33053c drm_property_lookup_blob EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a72f765 drm_clflush_virt_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ad350b2 drm_mode_create_scaling_mode_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0b52b2f2 drm_atomic_add_encoder_bridges -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0b6d3bb1 drm_client_modeset_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0c299f36 drm_of_component_probe -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0cc0a49b drm_crtc_vblank_count_and_time -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d2511e0 drm_writeback_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a915db8 drm_mode_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ba7479b drm_i2c_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d41bd47 drm_event_reserve_init EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d9b4753 drm_mode_equal -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0de0fce8 drm_plane_get_damage_clips +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0e1fec5f drm_mode_object_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f1cf42c drm_atomic_bridge_chain_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f3293dc drm_mode_object_get EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f7acb66 drm_mm_print EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fd60df2 drm_get_connector_status_name EXPORT_SYMBOL drivers/gpu/drm/drm 0x107742a9 drm_get_subpixel_order_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1086ba7a drm_vblank_work_cancel_sync -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1093537f drm_connector_set_path_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x10d548af drm_connector_attach_hdr_output_metadata_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x116fdb8d drm_connector_set_panel_orientation_with_quirk -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1192ff5c drm_gem_object_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x134762df drm_gem_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x142a9271 drm_bridge_chain_pre_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x14d7c21b drm_atomic_bridge_chain_check -EXPORT_SYMBOL drivers/gpu/drm/drm 0x15208058 drm_mode_put_tile_group -EXPORT_SYMBOL drivers/gpu/drm/drm 0x152b1185 drm_mode_crtc_set_gamma_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1586a858 drm_vblank_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x169ffebc drm_client_modeset_probe -EXPORT_SYMBOL drivers/gpu/drm/drm 0x178d2b0b drm_send_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x18088419 drm_connector_init_with_ddc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x180c5570 drm_atomic_bridge_chain_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x181b15b8 drm_crtc_create_scaling_filter_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x18d63ff5 drm_display_mode_from_cea_vic -EXPORT_SYMBOL drivers/gpu/drm/drm 0x19d18482 drm_dev_has_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1086fea9 drm_atomic_add_encoder_bridges +EXPORT_SYMBOL drivers/gpu/drm/drm 0x10a99504 drm_connector_list_iter_begin +EXPORT_SYMBOL drivers/gpu/drm/drm 0x10fbe33f drm_gem_dmabuf_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x129d402f drm_connector_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x12cbc4a0 drm_put_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x130c627a drm_dev_unplug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x132c8ec3 drm_syncobj_add_point +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1367b8e5 drm_connector_has_possible_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x13ce39e7 drm_vblank_work_flush +EXPORT_SYMBOL drivers/gpu/drm/drm 0x13e0ad32 drm_noop +EXPORT_SYMBOL drivers/gpu/drm/drm 0x14102d5e drm_client_dev_hotplug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x141a7db1 drm_mode_is_420 +EXPORT_SYMBOL drivers/gpu/drm/drm 0x14e04768 drm_syncobj_get_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0x150043d5 drm_panel_unprepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0x176b3fe9 drm_gem_mmap_obj +EXPORT_SYMBOL drivers/gpu/drm/drm 0x18d07193 drm_connector_set_panel_orientation_with_quirk +EXPORT_SYMBOL drivers/gpu/drm/drm 0x192a9125 drm_gem_dmabuf_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1947ff17 drm_atomic_bridge_chain_post_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x19bab4a8 drm_panel_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a09710f drm_framebuffer_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a169572 drm_clflush_pages EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a411479 drm_syncobj_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1aa76f91 drm_client_modeset_commit_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1ab6dbf8 drm_av_sync_delay -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1b0c31db drm_crtc_accurate_vblank_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1b773bff drm_dev_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c1171ab drm_crtc_enable_color_mgmt -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d3dc7fc drm_plane_enable_fb_damage_clips -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d6f1920 drm_state_dump -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1de28b45 drm_atomic_state_default_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1fee72f2 drm_gem_dmabuf_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x204b2188 drm_connector_attach_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a57b8dd drm_atomic_set_mode_prop_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1b47b83b drm_hdcp_update_content_protection +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1b4b608f drm_any_plane_has_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1b9a0fb8 drm_plane_enable_fb_damage_clips +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c187a6d drm_master_internal_acquire +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1dac6577 drm_mode_put_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1e0e0d78 drm_hdmi_avi_infoframe_content_type +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1e82781c drm_panel_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1e976f0d drm_mode_set_config_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1fb08431 drm_client_buffer_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1fbdd4f8 drm_syncobj_find_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0x20750d1b drm_gem_private_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x20a7ffb0 drm_atomic_state_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x20c6ea42 drm_sysfs_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x21172371 drm_hdmi_avi_infoframe_quant_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2154fd3c drm_i2c_encoder_save EXPORT_SYMBOL drivers/gpu/drm/drm 0x2183c08c drm_mm_scan_add_block -EXPORT_SYMBOL drivers/gpu/drm/drm 0x21e9825c drm_connector_attach_content_type_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2246b845 drm_atomic_private_obj_fini -EXPORT_SYMBOL drivers/gpu/drm/drm 0x22832a62 drm_of_find_possible_crtcs -EXPORT_SYMBOL drivers/gpu/drm/drm 0x22c4bf39 drm_mode_create_hdmi_colorspace_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x22fd47f5 drm_cvt_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x230769f5 drm_open -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2355e458 drm_framebuffer_unregister_private -EXPORT_SYMBOL drivers/gpu/drm/drm 0x244b2152 drm_vblank_work_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x21b135df devm_aperture_acquire_from_firmware +EXPORT_SYMBOL drivers/gpu/drm/drm 0x23f81655 drm_event_reserve_init_locked EXPORT_SYMBOL drivers/gpu/drm/drm 0x24d124ac drm_mode_equal_no_clocks_no_stereo -EXPORT_SYMBOL drivers/gpu/drm/drm 0x259f82fd drm_connector_attach_edid_property EXPORT_SYMBOL drivers/gpu/drm/drm 0x25daad93 __drm_mm_interval_first EXPORT_SYMBOL drivers/gpu/drm/drm 0x2754dad8 drm_mm_reserve_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2828b99e drm_set_preferred_mode EXPORT_SYMBOL drivers/gpu/drm/drm 0x28779e52 drm_printf -EXPORT_SYMBOL drivers/gpu/drm/drm 0x28ad7980 drm_writeback_cleanup_job -EXPORT_SYMBOL drivers/gpu/drm/drm 0x29cfe5b6 drm_mode_create_tv_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x293f4c79 drm_gem_cma_prime_import_sg_table_vmap EXPORT_SYMBOL drivers/gpu/drm/drm 0x29f078d1 drm_mode_legacy_fb_format -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a75f0fe drm_client_modeset_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a667756 drm_connector_set_tile_property EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a962499 drm_mm_scan_init_with_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2bd82178 drm_syncobj_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2caa6ef4 drm_atomic_get_crtc_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2cbf1e6f drm_mode_create_aspect_ratio_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2addce22 drm_prime_gem_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c3ae57e drm_crtc_accurate_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2cc7cc20 drm_crtc_set_max_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d3c0473 drm_wait_one_vblank EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d50570f drm_rect_calc_hscale -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2dd71d5c drm_modeset_acquire_init EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ed3c600 drm_mode_debug_printmodeline -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ed54007 drm_plane_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f86a888 drm_hdmi_infoframe_set_hdr_metadata +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f0cd4d2 drm_framebuffer_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f942acd drm_crtc_vblank_helper_get_vblank_timestamp_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x31118ae8 drm_display_info_set_bus_formats EXPORT_SYMBOL drivers/gpu/drm/drm 0x31b8a5e3 __drm_set_edid_firmware_path -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3212283d drm_property_create_object +EXPORT_SYMBOL drivers/gpu/drm/drm 0x31e0798a drm_add_override_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x325c9ab9 drm_gem_prime_import_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3293e138 drm_plane_from_index EXPORT_SYMBOL drivers/gpu/drm/drm 0x32a0cc37 drm_print_bits -EXPORT_SYMBOL drivers/gpu/drm/drm 0x34580cbe drm_master_internal_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x35590c3f drm_plane_create_alpha_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x364980db drm_mode_object_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x32aca094 drm_modeset_lock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x32ecd8c6 drm_av_sync_delay +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3445faef drm_writeback_signal_completion +EXPORT_SYMBOL drivers/gpu/drm/drm 0x365e7787 drm_connector_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x37279ec6 drm_connector_attach_content_protection_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x373a5bde drm_connector_attach_tv_margin_properties EXPORT_SYMBOL drivers/gpu/drm/drm 0x380b5fbb __drm_get_edid_firmware_path -EXPORT_SYMBOL drivers/gpu/drm/drm 0x385e4b43 drm_gem_objects_lookup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x386b7594 drm_mode_create_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3881468d drm_connector_attach_content_type_property EXPORT_SYMBOL drivers/gpu/drm/drm 0x39093b79 drm_vma_offset_manager_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x39237afc drm_i2c_encoder_save -EXPORT_SYMBOL drivers/gpu/drm/drm 0x39e267f5 drm_gem_map_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x392f22b5 drm_mode_create_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3938542b drm_property_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x39c2748c drm_client_rotation +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3a83a82a drm_gem_create_mmap_offset_size EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ab87110 drm_mode_equal_no_clocks -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ac1595b drm_mode_object_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ae1902a drm_modeset_lock_single_interruptible EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b0e5e9c __drm_puts_coredump EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ba17eab drm_ht_insert_item -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3badcbb5 drm_syncobj_replace_fence -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c3c92b5 drm_dev_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c6baf7e drm_gem_handle_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3d1f94b6 drm_gem_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3d2c165f drm_file_get_master -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3d2db5f0 drm_probe_ddc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3d8065c3 drm_gem_map_detach -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3db1fbd0 drm_i2c_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ccaddbd drm_state_dump +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3deb556d drm_ioctl EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e3f8c5c drm_prime_get_contiguous_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f0e018e drm_crtc_vblank_on -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f2244d0 drm_gem_prime_import_dev EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f405489 __drm_printfn_err -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3fb0d894 drm_ioctl_permit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3fce6471 drm_client_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0x40b4b0a3 of_drm_find_panel -EXPORT_SYMBOL drivers/gpu/drm/drm 0x40b832fb drm_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x41ed754f drm_modeset_lock_all -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4227444b drm_crtc_vblank_helper_get_vblank_timestamp -EXPORT_SYMBOL drivers/gpu/drm/drm 0x42db9679 drm_connector_set_link_status_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x430ca628 drm_crtc_from_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0x432a6fe5 drm_ioctl_kernel -EXPORT_SYMBOL drivers/gpu/drm/drm 0x43734dd7 drm_writeback_prepare_job -EXPORT_SYMBOL drivers/gpu/drm/drm 0x43a50e82 drm_bridge_chain_mode_set -EXPORT_SYMBOL drivers/gpu/drm/drm 0x43b4b641 drm_gem_shmem_print_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0x43d722d3 drm_connector_list_iter_next +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3fb5feac drm_syncobj_get_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3fcfd8e4 drm_modeset_acquire_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0x40c5fdcf drm_framebuffer_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x40ddea2a drm_property_create_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x40efb5a0 drm_connector_set_link_status_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x41180752 drm_atomic_state_default_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4151ce97 drm_mode_prune_invalid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4218f495 drm_send_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x42197e97 drm_gem_shmem_pin +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4305452d drm_i2c_encoder_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0x432ad06e drm_mode_create_from_cmdline_mode EXPORT_SYMBOL drivers/gpu/drm/drm 0x4403a9c3 drm_mode_get_hv_timing -EXPORT_SYMBOL drivers/gpu/drm/drm 0x447ae40d drm_client_framebuffer_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4404c8a7 drm_of_crtc_port_mask +EXPORT_SYMBOL drivers/gpu/drm/drm 0x442f5815 drm_dev_unregister EXPORT_SYMBOL drivers/gpu/drm/drm 0x4575a0ca drm_mode_set_crtcinfo -EXPORT_SYMBOL drivers/gpu/drm/drm 0x457fc769 drm_panel_unprepare -EXPORT_SYMBOL drivers/gpu/drm/drm 0x45c918c6 drm_connector_attach_scaling_mode_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x46680077 drm_wait_one_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x47919d51 drm_atomic_bridge_chain_post_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x457e2388 drm_crtc_enable_color_mgmt EXPORT_SYMBOL drivers/gpu/drm/drm 0x4834906a drm_flip_work_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x490db6f7 drm_crtc_commit_wait +EXPORT_SYMBOL drivers/gpu/drm/drm 0x48ae9183 drm_client_framebuffer_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x49460c68 drm_of_find_possible_crtcs EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a35d30d drm_mode_set_name EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a7d75b0 drm_memcpy_from_wc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b04cee1 drm_gem_map_dma_buf +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b2c2ad7 drm_client_modeset_commit_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b45992d __devm_drm_dev_alloc EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b7ebf95 drm_mm_remove_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c0c8c34 drm_crtc_vblank_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ca137bf drm_crtc_vblank_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ca748e7 drm_universal_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ce8e80b drm_encoder_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d077705 drm_atomic_get_new_bridge_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d2ad869 drm_gem_shmem_madvise +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d3e65c2 drm_atomic_private_obj_init EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d73b36c drm_vma_offset_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4dba9659 drm_master_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d9a1fdb drm_gem_unlock_reservations +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e21f09a drm_gtf_mode_complex +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f0b841c drmm_mode_config_init EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f18a150 __drm_debug EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f8169e2 drm_vma_offset_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4fc397ed drm_mode_crtc_set_gamma_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4fe8ca3a drm_crtc_create_scaling_filter_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5008346a drm_mode_find_dmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50621676 drm_property_create_range EXPORT_SYMBOL drivers/gpu/drm/drm 0x50674de7 drm_timeout_abs_to_jiffies +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50a76342 drm_gem_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50b65afc __drmm_encoder_alloc EXPORT_SYMBOL drivers/gpu/drm/drm 0x513072fe __drm_puts_seq_file -EXPORT_SYMBOL drivers/gpu/drm/drm 0x51894600 drm_writeback_queue_job EXPORT_SYMBOL drivers/gpu/drm/drm 0x521ad6d0 drm_puts -EXPORT_SYMBOL drivers/gpu/drm/drm 0x53583b7d drm_vblank_work_flush -EXPORT_SYMBOL drivers/gpu/drm/drm 0x53e28089 drm_dev_dbg -EXPORT_SYMBOL drivers/gpu/drm/drm 0x54a8239b drm_panel_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x54ea2c94 drm_release_noglobal -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5506144e drm_bridge_chain_mode_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x55502621 drm_debugfs_create_files -EXPORT_SYMBOL drivers/gpu/drm/drm 0x55907860 drm_prime_pages_to_sg -EXPORT_SYMBOL drivers/gpu/drm/drm 0x55c27656 __drmm_add_action_or_reset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x56242b44 drm_connector_attach_content_protection_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x52c2d158 drm_master_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x52dde405 drm_crtc_vblank_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x53d6dbd6 drm_gem_shmem_purge +EXPORT_SYMBOL drivers/gpu/drm/drm 0x53e48e31 drm_gem_lock_reservations +EXPORT_SYMBOL drivers/gpu/drm/drm 0x54bb3d8a drm_plane_create_zpos_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x55e3b833 drm_mode_config_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x56c3d728 drm_modeset_lock +EXPORT_SYMBOL drivers/gpu/drm/drm 0x56f71d2c drm_connector_attach_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5713bd0c drm_plane_get_damage_clips_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57454943 drm_master_put EXPORT_SYMBOL drivers/gpu/drm/drm 0x57698a50 drm_mm_takedown +EXPORT_SYMBOL drivers/gpu/drm/drm 0x578ce24c drm_mode_create_tv_margin_properties EXPORT_SYMBOL drivers/gpu/drm/drm 0x57b6efe3 drm_ioctl_flags -EXPORT_SYMBOL drivers/gpu/drm/drm 0x57de7e6c drm_connector_set_vrr_capable_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x58876867 drm_connector_has_possible_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0x58a21a18 drm_crtc_vblank_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57d0501b drm_syncobj_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0x58623701 drm_gem_shmem_purge_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x58e964ca drm_modeset_drop_locks EXPORT_SYMBOL drivers/gpu/drm/drm 0x59056243 drm_mm_replace_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5947a976 drm_gem_lock_reservations -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5950fcce drm_send_event_timestamp_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5922c25d of_drm_get_panel_orientation EXPORT_SYMBOL drivers/gpu/drm/drm 0x599dea05 drm_edid_is_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5a0bae5f drm_modeset_unlock -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5a741e46 drm_gem_shmem_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5b42e792 drm_aperture_remove_conflicting_framebuffers -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5b4c76f6 drm_atomic_get_new_bridge_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c729f7c drm_mode_is_420_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5ad402fe drm_panel_get_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5b657e6a drm_gem_shmem_unpin +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c6e01dd drm_bridge_chain_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c89f7df drm_handle_vblank EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c9ae404 drm_prime_sg_to_dma_addr_array -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5cb37352 drm_add_modes_noedid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d5350eb drm_gem_dmabuf_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d60b7a0 of_drm_find_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5ca18bbe drm_gem_shmem_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5cc9a296 drmm_kfree +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d338d09 drm_atomic_check_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d7623dc drm_mode_create_content_type_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d7dd50c drm_master_internal_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d98e71e drm_gem_vm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5e704151 of_drm_find_panel +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5ef126af drm_atomic_get_connector_state EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f09ac76 drm_driver_legacy_fb_format -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f5bf256 drm_gem_shmem_put_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f5c6a22 drm_hdcp_update_content_protection EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f7985a5 drm_mm_scan_remove_block -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f973653 drm_modeset_acquire_fini -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6098f9f4 drm_framebuffer_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x629f15f6 drm_syncobj_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0x60027797 drm_atomic_get_bridge_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6029574a drm_crtc_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x60a30a05 drm_crtc_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0x60a85b3d drm_crtc_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x612becab drm_i2c_encoder_restore +EXPORT_SYMBOL drivers/gpu/drm/drm 0x61fa6046 drm_gem_objects_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x623db031 drm_gem_dmabuf_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x62933c1f drm_gem_dma_resv_wait +EXPORT_SYMBOL drivers/gpu/drm/drm 0x633791d7 drm_writeback_cleanup_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0x634ce872 drm_mode_create_hdmi_colorspace_property EXPORT_SYMBOL drivers/gpu/drm/drm 0x63b00f9c drm_get_format_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0x63d6632f __drmm_encoder_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6416b848 drm_client_framebuffer_flush -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6463ee9d drm_gem_free_mmap_offset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x64944aa2 drm_atomic_check_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0x63df9c20 drm_vblank_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6413a4c0 drm_plane_create_scaling_filter_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x64276b9d drm_framebuffer_plane_width EXPORT_SYMBOL drivers/gpu/drm/drm 0x65702bd6 drm_default_rgb_quant_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x65964aa8 drm_gem_mmap_obj -EXPORT_SYMBOL drivers/gpu/drm/drm 0x65ca6f5b drm_connector_set_tile_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6601bce9 drm_atomic_print_new_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x66a2bdd0 drm_plane_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x66b4c53e drm_gem_shmem_unpin -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6778be8a drm_gem_vm_open -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6812c00a drm_property_create_enum -EXPORT_SYMBOL drivers/gpu/drm/drm 0x686881d7 drmm_mode_config_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x68d863e4 drm_property_create_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x66839343 drm_ioctl_kernel +EXPORT_SYMBOL drivers/gpu/drm/drm 0x67819585 drm_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x67cc3559 drm_crtc_check_viewport EXPORT_SYMBOL drivers/gpu/drm/drm 0x6914a422 drm_edid_are_equal -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6a6340a9 drm_client_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x696bfd1b drm_gem_shmem_create_with_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0x69c3c967 drm_is_current_master +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6a309522 drm_plane_create_zpos_immutable_property EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b0b9550 drm_flip_work_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6bf99570 drm_mode_parse_command_line_for_connector -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ca33360 drm_i2c_encoder_detect -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6cd3f1aa drm_gem_prime_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6d9d8d84 drm_property_replace_global_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6db2d8c8 drm_prime_gem_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b1e8453 drm_hdmi_vendor_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b9be4cf drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6d86f034 drm_gem_unmap_dma_buf +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6de6a9a9 drm_open EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e30ba8e drm_rect_rotate_inv -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ed049b4 drm_panel_of_backlight +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e562bbb drm_add_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ebc81fa drm_prime_sg_to_page_array EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ef2f78e drm_format_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6f9d16c7 drm_get_edid_switcheroo -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6f9e3946 drm_gem_cma_print_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0x70c3e18b drm_connector_attach_colorspace_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x70d30713 drm_i2c_encoder_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6f25f89c drm_gem_object_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7017b958 drm_mode_create_aspect_ratio_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x703db344 drm_mode_is_420_also EXPORT_SYMBOL drivers/gpu/drm/drm 0x71221d52 drm_vma_offset_manager_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7164a174 drm_property_lookup_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0x719c4f08 drm_gem_unlock_reservations -EXPORT_SYMBOL drivers/gpu/drm/drm 0x71f42306 __drm_atomic_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm 0x72219ed2 drm_dev_printk -EXPORT_SYMBOL drivers/gpu/drm/drm 0x72c35209 drm_connector_list_iter_begin -EXPORT_SYMBOL drivers/gpu/drm/drm 0x739c4bd0 drm_dev_set_unique -EXPORT_SYMBOL drivers/gpu/drm/drm 0x74073f73 drm_property_create_signed_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x741982b3 drm_property_blob_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x74b6955e drm_hdmi_avi_infoframe_bars +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7124574a drm_plane_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x71cd8d0c drm_bridge_chain_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x72e2e070 drm_connector_attach_hdr_output_metadata_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x72f6b938 drm_bridge_chain_enable EXPORT_SYMBOL drivers/gpu/drm/drm 0x74eaf26b drm_vma_offset_lookup_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x75357ef6 drm_gem_shmem_get_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0x765e022d drm_atomic_add_affected_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x76eb1151 drm_gem_shmem_purge -EXPORT_SYMBOL drivers/gpu/drm/drm 0x78fd2017 drm_plane_create_color_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x791c0e5e drm_mode_set_config_internal -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7a5aebe3 drm_atomic_bridge_chain_pre_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7acc2bbb drm_atomic_set_mode_for_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b8917f1 drm_mode_validate_driver -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7bfe7b12 drm_gem_cma_prime_import_sg_table_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d7c89f1 drm_i2c_encoder_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm 0x750807d3 drm_mode_get_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x77cec385 drm_atomic_add_affected_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm 0x77f5bf8a drm_client_modeset_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm 0x787bd822 drm_mode_create_dvi_i_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x78f350f2 drm_gem_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c4bdb87 drm_client_framebuffer_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7dbc6eab drm_i2c_encoder_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7dd506c5 drm_connector_list_iter_end EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e016d38 drm_flip_work_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7ef4c0c5 drm_object_property_set_value -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fb7d1b1 drm_gem_shmem_purge_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8089579e drm_dev_enter -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8114b6c3 drm_gem_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8152789c drm_atomic_state_default_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e5a738b drm_writeback_get_out_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7f8f64d9 drm_atomic_get_crtc_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fa5cad9 drm_mode_is_420_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fd3aae1 drm_connector_attach_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x80c14789 drm_atomic_set_mode_for_crtc EXPORT_SYMBOL drivers/gpu/drm/drm 0x81992424 drm_edid_header_is_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x81d6c83d drm_add_override_edid_modes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x81ea1d5e drm_atomic_get_old_bridge_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8318bd49 drm_mode_validate_ycbcr420 -EXPORT_SYMBOL drivers/gpu/drm/drm 0x838f9143 drm_property_create_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8476082d drm_modeset_lock_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8350f464 drm_debugfs_remove_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0x835da732 drm_atomic_print_new_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8386fbb1 drm_crtc_arm_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x844a5632 drm_dev_set_unique EXPORT_SYMBOL drivers/gpu/drm/drm 0x8563a554 drm_ht_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x85b6a704 drm_gem_unmap_dma_buf -EXPORT_SYMBOL drivers/gpu/drm/drm 0x86659399 drm_property_replace_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0x86a3e30e drm_any_plane_has_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0x85c304a9 drm_gem_cma_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0x86d73d15 drm_gem_shmem_vunmap EXPORT_SYMBOL drivers/gpu/drm/drm 0x871ab41a drm_rect_intersect -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8929a979 drmm_kmalloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x893bfc0b drm_atomic_set_fence_for_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0x898552a2 __drmm_universal_plane_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8a1c106a drm_panel_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8a4cf248 drm_bridge_chain_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8a91cfaf drm_connector_set_panel_orientation -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8baea5ce drm_print_regset32 -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c01cf5e drm_master_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c2666b8 __drmm_add_action -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c40bc42 drm_gem_dmabuf_export -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8cad309a drm_crtc_send_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d980236 drm_atomic_set_fb_for_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8e0b9d19 drm_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8e5bb5d3 drm_sysfs_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8eae0da4 drm_crtc_vblank_restore -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ee480a6 drm_plane_create_zpos_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8f6a9d88 drm_warn_on_modeset_not_all_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8fed3752 drm_mode_create_from_cmdline_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8feddba8 drm_panel_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x913955ef drm_syncobj_get_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0x884cecf5 drm_bridge_chain_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x894c4301 drm_gem_vm_close +EXPORT_SYMBOL drivers/gpu/drm/drm 0x89695a55 drm_mode_parse_command_line_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8996b8ea drm_atomic_bridge_chain_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x89b23399 drm_client_buffer_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x89dff991 drm_atomic_get_old_connector_for_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8a6bc15c drm_object_attach_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ab5367d drm_gem_dmabuf_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8bce33ca drm_mode_probed_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c05e4c0 drm_gem_handle_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c2b9d03 drm_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8cdf0940 drm_dev_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8db02770 drm_modeset_acquire_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ef71ecd drm_atomic_get_new_connector_for_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8fcaaddb drm_i2c_encoder_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8fcd8e3a drm_crtc_vblank_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x90279be2 drm_atomic_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x90efeb4a drm_plane_create_rotation_property EXPORT_SYMBOL drivers/gpu/drm/drm 0x91fec1cc drm_rect_calc_vscale -EXPORT_SYMBOL drivers/gpu/drm/drm 0x92f8944f drm_framebuffer_plane_width -EXPORT_SYMBOL drivers/gpu/drm/drm 0x93da9624 drm_mode_config_reset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9443e149 drm_bridge_chain_post_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x95714237 drm_mode_plane_set_obj_prop +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9240e1bb drm_gem_prime_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0x92f3f8a7 drm_client_modeset_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0x932af85f drm_mode_validate_ycbcr420 +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9357b220 drm_atomic_private_obj_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0x936ddfbe drm_vblank_work_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x95b88fa2 drm_gem_fence_array_add_implicit EXPORT_SYMBOL drivers/gpu/drm/drm 0x95dbc76d drm_ht_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x95fa16b0 drm_gem_create_mmap_offset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x965d6674 drm_atomic_state_clear -EXPORT_SYMBOL drivers/gpu/drm/drm 0x98408f6f drm_crtc_init_with_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x98555cf0 drm_event_reserve_init_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x99102caa drmm_kfree -EXPORT_SYMBOL drivers/gpu/drm/drm 0x99d0f829 drm_plane_create_rotation_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x99de2a27 drm_framebuffer_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x96116f2e drm_connector_attach_max_bpc_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x97a11cad drm_atomic_get_old_bridge_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x99106017 drm_release_noglobal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9996cdaf drm_gem_prime_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x99d10da0 drm_plane_create_color_properties EXPORT_SYMBOL drivers/gpu/drm/drm 0x99fd20aa drm_rect_clip_scaled +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9a08533c drm_crtc_vblank_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9a884db2 drm_property_blob_put EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b285573 drm_match_cea_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b5d8167 drm_connector_attach_tv_margin_properties EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b8a53f5 drm_ht_just_insert_please EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b95c885 drm_mode_match +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9bcbc288 drm_hdmi_infoframe_set_hdr_metadata +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c643f57 drm_client_framebuffer_flush EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ce050be drm_mode_copy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9d1ad569 drm_gem_object_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9d4ca071 drm_atomic_set_crtc_for_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9dc9b662 drm_dev_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9d265722 __drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9d7e44b1 drm_connector_init_with_ddc EXPORT_SYMBOL drivers/gpu/drm/drm 0x9e7e8009 drm_edid_to_sad -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9f0307be drm_atomic_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9f0d82fd drm_atomic_state_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9f14116a drm_dev_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9f1948a4 drm_crtc_vblank_count_and_time +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9f5b5534 drm_dev_printk EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ffcdfdb drm_detect_monitor_audio -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa014cb16 drm_object_attach_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0565ffa drm_bridge_chain_mode_set EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0713087 drm_ht_find_item -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0a092f5 drm_property_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0d1c254 drm_gem_private_object_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1009516 drm_of_crtc_port_mask -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa19e2146 drm_client_rotation -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa2f487bd drm_connector_attach_vrr_capable_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa428cf02 drm_panel_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4a4363b drm_mode_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4d36bc5 drm_calc_timestamping_constants -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa500107a drm_aperture_remove_conflicting_pci_framebuffers -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa88a72fd drm_panel_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa9a0d35b drm_noop -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaa9913db drm_gem_map_dma_buf -EXPORT_SYMBOL drivers/gpu/drm/drm 0xab965efa __drm_atomic_helper_disable_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0xab9b0f07 drm_gem_shmem_create_with_handle -EXPORT_SYMBOL drivers/gpu/drm/drm 0xac09da08 drm_atomic_get_private_obj_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0xacd3d387 drm_mode_get_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa10a4bea drm_gem_free_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4581188 drm_sysfs_connector_status_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4809fd1 drm_plane_force_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4889f26 drm_atomic_state_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4b55f9c drm_crtc_vblank_helper_get_vblank_timestamp +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa603c6fb drm_client_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa67c0141 drm_add_modes_noedid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa78bf866 drm_mode_create_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa7aba948 drm_debugfs_create_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa9f100a7 drm_connector_list_iter_next +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaac77694 drm_property_create_bitmask +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaba3f4a4 drm_print_regset32 EXPORT_SYMBOL drivers/gpu/drm/drm 0xad4e902b drm_color_ctm_s31_32_to_qm_n -EXPORT_SYMBOL drivers/gpu/drm/drm 0xad78cf1c drm_mode_is_420_also -EXPORT_SYMBOL drivers/gpu/drm/drm 0xae097fbd drm_bridge_attach EXPORT_SYMBOL drivers/gpu/drm/drm 0xae277372 __drm_crtc_commit_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaef28d7e drm_prime_sg_to_page_array -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf0fa106 __devm_drm_dev_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf63f5dd drm_framebuffer_lookup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf85d0b7 drm_crtc_arm_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0xafd30d25 drm_atomic_private_obj_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf1f77c8 drm_gem_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf85ccf2 __drmm_add_action_or_reset EXPORT_SYMBOL drivers/gpu/drm/drm 0xb053adda drm_rect_rotate -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb087418a drm_atomic_set_mode_prop_for_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb0a6f425 drm_modeset_lock_all_ctx -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb1173094 drm_mode_probed_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb0946fac drm_client_modeset_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb097f69c drm_crtc_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb0a508a7 drm_calc_timestamping_constants EXPORT_SYMBOL drivers/gpu/drm/drm 0xb11ac7a7 __drm_err -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb1b10934 drm_connector_list_iter_end -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb211ef23 drm_read EXPORT_SYMBOL drivers/gpu/drm/drm 0xb22dfd68 drm_format_info_min_pitch -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb320d679 drm_crtc_set_max_vblank_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb3c5caa2 drm_gem_prime_import +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb2da830d drm_poll +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb3be07e8 drm_modeset_lock_single_interruptible +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb3cc546d drm_property_add_enum EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4032484 drm_mm_insert_node_in_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb43f5d84 drm_hdmi_vendor_infoframe_from_display_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb44f7ef2 drm_modeset_drop_locks -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb469583e drm_dev_unplug -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5071bdd drm_bridge_chain_mode_fixup EXPORT_SYMBOL drivers/gpu/drm/drm 0xb52cda4c drm_vma_node_is_allowed EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6127243 drm_need_swiotlb -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb635fbc4 drm_get_edid -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6515b43 drm_bridge_chain_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6aaa6c8 drm_atomic_get_bridge_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb72344ba drm_i2c_encoder_mode_fixup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb823ce06 __drmm_crtc_alloc_with_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb8cc45d5 drm_mode_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb916f9a7 drm_gem_dmabuf_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6d9237b drm_mode_create_suggested_offset_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb7d0404c drm_syncobj_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb93cf5fc drm_mode_plane_set_obj_prop +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb976a19d drm_aperture_remove_conflicting_pci_framebuffers EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9cad492 __drm_atomic_state_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbbfe05d2 drm_gem_shmem_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbc298f2f drm_mode_create_dp_colorspace_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbc4da487 drm_writeback_get_out_fence -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbc6a0edf drm_modeset_lock -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbca0109e drm_connector_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbcc2f27f drm_mode_find_dmt -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbdfa03b8 drm_plane_get_damage_clips_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbe8a1d26 drm_gem_prime_export -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbf005643 drm_syncobj_get_fd -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbf927659 drm_connector_attach_dp_subconnector_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbaecbe9c drm_gem_shmem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbb6f0a27 drm_writeback_queue_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbbfd8528 drm_ioctl_permit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbc6c6b12 drm_property_create_object +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbce1c84d drm_mode_create_tv_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbd5c20e3 drm_gem_dmabuf_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbe4037af drm_panel_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbefa1243 drm_display_mode_from_cea_vic +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc01d7571 drm_vblank_work_schedule EXPORT_SYMBOL drivers/gpu/drm/drm 0xc05fee8e drm_vma_node_allow -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc0b47175 drm_gem_dmabuf_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc1f52e09 drm_hdmi_avi_infoframe_from_display_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc205a979 drm_plane_create_blend_mode_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc32c2542 drm_i2c_encoder_restore -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc41be08c drm_plane_from_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc451999b drm_mode_config_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc4856fa2 drm_master_internal_acquire -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc504550d drm_client_modeset_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc093bc6c drm_connector_set_panel_orientation +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc0c865c3 drm_connector_attach_vrr_capable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc1f7395b drm_atomic_get_old_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc2d88b00 drm_plane_create_alpha_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc2e66182 drm_connector_set_vrr_capable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc43d0947 drm_connector_attach_colorspace_property EXPORT_SYMBOL drivers/gpu/drm/drm 0xc5ce9af3 drm_clflush_sg -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6f0959b drm_mode_create_content_type_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc74aad82 drm_connector_atomic_hdr_metadata_equal -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc77b954c drm_gem_create_mmap_offset_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc7ffd762 drm_atomic_bridge_chain_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc88a355a drm_dev_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc8ce9aae drm_property_create_bitmask +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc64c7879 drm_hdmi_avi_infoframe_bars +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6dfde07 drm_atomic_get_new_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc72007f8 drm_send_event_timestamp_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc74094ef drm_i2c_encoder_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc80922f8 drm_crtc_commit_wait +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc84c8cb8 drm_hdmi_avi_infoframe_colorspace +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc85dbbe0 drm_connector_set_path_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc8678002 drm_atomic_state_default_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc8c59a62 drm_cvt_mode EXPORT_SYMBOL drivers/gpu/drm/drm 0xca190085 drm_format_info_block_height -EXPORT_SYMBOL drivers/gpu/drm/drm 0xca22abda drm_gem_shmem_pin -EXPORT_SYMBOL drivers/gpu/drm/drm 0xca96bf47 drm_connector_attach_max_bpc_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xca3fb433 drm_probe_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xca4f1c61 drm_atomic_bridge_chain_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xca6af131 drm_panel_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcad03681 drm_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcad48463 drm_client_modeset_probe EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb2340b8 drm_rect_debug_print -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb2eafde drm_connector_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb93cb2b drm_property_create_bool -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcba7ab50 drm_debugfs_remove_files -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcc11cdaf drm_gem_shmem_madvise -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcc149363 drm_connector_update_edid_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcc35fd30 drm_gem_put_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcc6444b1 of_drm_get_panel_orientation +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb2e0e61 drm_connector_attach_dp_subconnector_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb556173 drm_atomic_set_fence_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcbaaf1db __drmm_crtc_alloc_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcc030c22 drm_crtc_wait_one_vblank EXPORT_SYMBOL drivers/gpu/drm/drm 0xccc59759 drm_format_info_block_width -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd489394 drm_hdmi_avi_infoframe_colorspace -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd579765 drm_atomic_get_connector_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcdcc2f99 drm_mode_create_tv_margin_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcee494a7 drm_connector_list_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd143f18 __drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcdddbae3 drm_atomic_get_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xce79f49a drm_property_create_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcef69453 drm_dev_enter EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf11a549 drm_flip_work_allocate_task -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd02c337f drm_framebuffer_plane_height -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd0c9688b drm_crtc_check_viewport -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd0fb5dff drm_client_buffer_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd11af210 drm_dev_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf424299 drm_modeset_unlock +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf6ca50e drm_property_replace_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd00288d8 drm_gem_shmem_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd028bc3b drm_modeset_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd0a427e7 drm_mode_validate_driver +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd0ad5cee drm_hdmi_avi_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd0bb9723 drm_crtc_vblank_restore +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd0bdf9bf drm_panel_add EXPORT_SYMBOL drivers/gpu/drm/drm 0xd13f9985 drm_edid_block_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd1ea65f1 drm_encoder_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd1586a32 drm_mode_create_dp_colorspace_property EXPORT_SYMBOL drivers/gpu/drm/drm 0xd1fc5f14 drm_flip_work_queue -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd3adbff1 drm_gem_vm_close +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd211a980 of_drm_find_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd27e6096 drm_dev_has_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2af8b59 drm_gem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd3a73a59 drm_gem_prime_handle_to_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd3b66286 drm_gem_prime_fd_to_handle EXPORT_SYMBOL drivers/gpu/drm/drm 0xd4132cc6 drm_gem_fence_array_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd4a36e6e drm_atomic_set_crtc_for_connector -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd55bf6d2 drm_gem_get_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd58bce74 drm_atomic_nonblocking_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd5d80df4 drm_mode_create_dvi_i_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd501265f drm_property_replace_global_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd5439732 drm_event_cancel_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd579e5d0 drm_property_create_signed_range EXPORT_SYMBOL drivers/gpu/drm/drm 0xd60baf5a drm_edid_get_monitor_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd62a17f3 drm_syncobj_add_point -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd63bfa3b drm_event_reserve_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd639b665 drm_connector_atomic_hdr_metadata_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd665b0f5 drm_syncobj_replace_fence EXPORT_SYMBOL drivers/gpu/drm/drm 0xd680a377 drm_gem_object_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd68d0c1d drm_put_dev EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7a9cf42 drm_mode_validate_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd8a6c000 drm_atomic_state_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd8af3447 drm_atomic_normalize_zpos -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd98f6abf drm_connector_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd9d1c747 drm_mode_is_420 -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd9f2555f drm_panel_get_modes -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd9fee89c drm_writeback_signal_completion -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdad518cb drm_client_framebuffer_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb8c7bac drm_sysfs_connector_status_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbf11c08 drm_i2c_encoder_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7c0c998 drm_modeset_lock_all_ctx +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7dcc2e7 drm_atomic_add_affected_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7ec2b35 drm_vblank_work_cancel_sync +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7edb5cc drm_framebuffer_unregister_private +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd83f4ba8 drm_crtc_init_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd9bcca6f drm_crtc_vblank_waitqueue +EXPORT_SYMBOL drivers/gpu/drm/drm 0xda99f8bc drm_bridge_chain_mode_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbd06898 drm_writeback_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdc04db4f drm_atomic_bridge_chain_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdc3d207c drm_connector_list_update EXPORT_SYMBOL drivers/gpu/drm/drm 0xdc833fbb drm_flip_work_queue_task -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdcd893f9 drm_gem_dma_resv_wait -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd0579ae drm_i2c_encoder_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd1f5694 drm_mode_duplicate -EXPORT_SYMBOL drivers/gpu/drm/drm 0xde3486e6 drm_plane_create_zpos_immutable_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xde7cdfb0 drm_property_add_enum -EXPORT_SYMBOL drivers/gpu/drm/drm 0xded9d9b8 drm_crtc_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdcbc8e4f drm_bridge_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd085cbb drm_file_get_master +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdeaee985 drm_mode_object_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdebe08d5 drm_gem_prime_import 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 0xe0adc834 drm_gem_prime_fd_to_handle -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe16e37b7 drm_gtf_mode_complex -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe2adb9ce drm_crtc_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe11048fb drm_object_property_set_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe142002d drm_atomic_state_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe29918f4 drm_gem_create_mmap_offset EXPORT_SYMBOL drivers/gpu/drm/drm 0xe317082a __drm_printfn_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe39ccbc8 drm_client_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe43acc10 drm_poll -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe578bdb7 drm_mode_create_suggested_offset_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe5b4de7a drm_bridge_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe5d6b4b7 drm_connector_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe71dd6ee drm_plane_create_scaling_filter_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe74d1cf2 drm_gtf_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe3b3a5c4 drm_gem_map_detach +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe48f3d79 drm_get_edid_switcheroo +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe5ebf01b drm_invalid_op +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7d56b51 __drmm_universal_plane_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7eb67fa drm_gem_map_attach EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8362900 drm_edid_duplicate -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe867ae65 drm_crtc_vblank_off EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8a034df drm_dev_exit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe97edd4e drm_framebuffer_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe99e5bef drm_hdmi_avi_infoframe_content_type -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe9d67177 drm_atomic_get_new_private_obj_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe9eea9c4 drm_hdmi_avi_infoframe_quant_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe97f70f7 drm_property_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe9f76d36 __drmm_add_action EXPORT_SYMBOL drivers/gpu/drm/drm 0xea00fe81 __drm_printfn_coredump +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeaa8b478 drm_framebuffer_plane_height +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeaaf2ccc drm_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeacdd84c drmm_kmalloc EXPORT_SYMBOL drivers/gpu/drm/drm 0xec12af74 __drm_dbg -EXPORT_SYMBOL drivers/gpu/drm/drm 0xed6697fd drm_gem_handle_delete -EXPORT_SYMBOL drivers/gpu/drm/drm 0xeed8eba8 drm_client_dev_hotplug -EXPORT_SYMBOL drivers/gpu/drm/drm 0xeefe962b drm_atomic_get_old_private_obj_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0xeff3b3d9 drm_atomic_add_affected_connectors -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0191d03 drm_atomic_get_old_connector_for_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0383a30 drm_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0xedee101b drm_dev_dbg +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeee3031f drm_modeset_lock_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xefc7f8aa drm_bridge_chain_post_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0274386 drm_atomic_set_crtc_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0310561 drm_mode_destroy EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0517d7a drm_mm_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1359dfc drm_prime_pages_to_sg EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1421d13 drm_mode_sort -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1614edc drm_modeset_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf14a5f66 drm_modeset_unlock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1926ee1 drm_atomic_get_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1abe250 drm_panel_enable EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1b5340a drm_mode_vrefresh +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1b84870 drm_i2c_encoder_detect +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf268268e drm_crtc_cleanup EXPORT_SYMBOL drivers/gpu/drm/drm 0xf406e46a drm_get_connector_type_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf4fada72 drm_property_blob_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf68ee0b0 drm_mode_object_find -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf6b1d362 drm_property_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf730c4be drm_clflush_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf731fa5f drm_atomic_get_new_connector_for_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf7a3a760 drm_crtc_vblank_waitqueue +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf44e0883 drm_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf46419ef drm_gtf_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf5b7efd3 drm_read +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf73ad70b drm_of_component_probe EXPORT_SYMBOL drivers/gpu/drm/drm 0xf824c7db __drm_printfn_debug +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf8811b1d drm_property_create_bool +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf8cc030e drm_plane_create_blend_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf968fc30 drm_atomic_nonblocking_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf98d55fa drm_gem_get_pages EXPORT_SYMBOL drivers/gpu/drm/drm 0xf9a5ebd7 drm_vma_node_revoke -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfadcb985 drm_modeset_unlock_all -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfbe1d01e drm_gem_prime_handle_to_fd -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc5cc450 drm_client_buffer_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd0a92a2 drm_invalid_op -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd9a789c drm_is_current_master +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf9b1b383 drm_mode_config_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb419041 drm_aperture_remove_conflicting_framebuffers +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfbed87c6 drm_crtc_send_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc54eca9 drm_atomic_set_crtc_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfca9a6d9 drm_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd0f029c drm_connector_update_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfde867d4 drm_panel_of_backlight +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfdfee7e6 drm_client_register EXPORT_SYMBOL drivers/gpu/drm/drm 0xfeb953b1 __drm_printfn_seq_file +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfec88717 drm_plane_get_damage_clips EXPORT_SYMBOL drivers/gpu/drm/drm 0xfecc8840 drm_edid_to_speaker_allocation -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfee4933c devm_aperture_acquire_from_firmware -EXPORT_SYMBOL drivers/gpu/drm/drm 0xff0cf296 drm_set_preferred_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0xff2aa66d drm_add_edid_modes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x00f6ee17 drm_helper_crtc_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfff44dc9 drm_writeback_prepare_job +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x007873ff drm_gem_simple_kms_prepare_shadow_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x01040aff drm_dp_get_vc_payload_bw +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0169c0db drm_atomic_helper_commit_tail_rpm +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0174a79e drm_fb_helper_sys_copyarea EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x01c4bba9 drm_dp_lttpr_max_link_rate -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x01fa2ec8 __drm_atomic_helper_plane_state_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x03651120 drm_kms_helper_poll_fini -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x03cbc3ce drm_dp_aux_register -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x03fa25ff __drm_gem_destroy_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x03fac417 drm_dp_mst_get_port_malloc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x05028919 __drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x01cb1906 drm_dp_read_sink_count +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x021da6ce drm_self_refresh_helper_update_avg_times +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x05ad684d __drm_atomic_helper_crtc_state_reset EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x06c49551 drm_dp_dsc_sink_line_buf_depth +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x06d41b21 drm_dp_atomic_find_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x06f5623a drm_dp_mst_detect_port EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x07a00858 drm_fb_memcpy_dstclip -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x07d484c7 drm_dp_read_downstream_info -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x07fbf726 drm_atomic_helper_commit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x09d565bf drm_fb_helper_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0a073f69 __drm_atomic_helper_plane_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0ae9b514 drm_atomic_helper_connector_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0c0e06bc drm_atomic_helper_disable_all -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0c905252 drm_atomic_helper_setup_commit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0cd406ca drm_dp_read_desc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0d20927a drm_atomic_helper_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0fa7c040 drm_dp_read_mst_cap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x11a9c6ab drm_atomic_helper_prepare_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1245661b drm_dp_update_payload_part1 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x138fe072 drm_gem_simple_kms_duplicate_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x14725daa drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0824a415 devm_drm_panel_bridge_add_typed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x08e64433 drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0da652a5 drm_simple_display_pipe_attach_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0deceb28 drm_edp_backlight_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0e7412ca drm_dp_check_act_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0eedc8b9 drm_fb_helper_output_poll_changed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0fbcb485 drm_dp_pcon_frl_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x11173a55 drm_atomic_helper_bridge_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x11250d0e drm_gem_duplicate_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x11368862 drm_crtc_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x115ebccb drm_dp_dual_mode_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x11f51dc6 drm_dp_pcon_frl_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x133be4d3 drm_fb_helper_unregister_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x13fda136 drm_dp_mst_connector_late_register +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1405bf3a drm_dp_downstream_debug +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x142ffcca __drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x14de7be5 drm_atomic_helper_bridge_propagate_bus_fmt EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1605d0ed drm_dp_lttpr_max_lane_count +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x16abeeb1 drm_atomic_helper_setup_commit EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1709ddcf drm_dp_lttpr_link_train_clock_recovery_delay -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x170f43ba drm_dp_get_vc_payload_bw -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1750760f drm_gem_fb_begin_cpu_access -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x17694b64 drm_atomic_helper_crtc_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x186810aa drm_atomic_helper_commit_tail_rpm -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x18afba0c drm_dp_pcon_frl_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x194b3712 drm_helper_hpd_irq_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x19e052df drm_dp_lttpr_link_train_channel_eq_delay -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x19f23c61 drm_dp_downstream_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x172990eb drm_panel_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x18c3f3f2 drm_fbdev_generic_setup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x18fa87b2 drm_gem_fb_begin_cpu_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1a1e2b88 drm_scdc_get_scrambling_status EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1a5bf3ca drm_dsc_dp_rc_buffer_size EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1b0a1fdc drm_dp_lttpr_voltage_swing_level_3_supported -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1bbff94c drm_atomic_helper_commit_tail -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1c815351 drm_atomic_helper_commit_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1ec4f3c0 drm_fb_helper_lastclose -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1f8513d1 drm_dp_mst_deallocate_vcpi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2025a61b drm_dp_mst_allocate_vcpi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2164222a drm_panel_dp_aux_backlight -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x22a7ecaa drm_dp_pcon_hdmi_link_active -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x22b1ed36 drm_dp_read_lttpr_phy_caps -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x22e6965b drm_helper_force_disable_all -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2566fdf5 drm_dp_cec_unregister_connector -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x25729147 drm_dp_atomic_find_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x25bc02de drm_dp_pcon_reset_frl_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1c0ff6fa drm_atomic_helper_damage_merged +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1c375c9b drm_fb_helper_debug_enter +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1e372c58 drm_helper_mode_fill_fb_struct +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x210f9f1a drm_lspcon_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x21252985 drm_dp_pcon_hdmi_link_active +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2234dc3a __drm_atomic_helper_plane_state_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x24948c70 drm_dp_cec_register_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2609300b drm_atomic_helper_connector_tv_reset EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x26815dbc drm_dp_link_rate_to_bw_code -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2764f0d7 drm_dp_dual_mode_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x28cc5067 drm_fb_helper_sys_fillrect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2d35a077 drm_atomic_helper_plane_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2d4323c2 drm_edp_backlight_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2ed0b98d drm_self_refresh_helper_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x276d8e7f drm_dp_downstream_id +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x28f0f500 drm_panel_bridge_add_typed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2a1e6a4c drm_kms_helper_poll_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2bd915df drm_atomic_helper_check_plane_damage EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2fa94ef2 drm_dp_downstream_444_to_420_conversion -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x303a8220 drm_kms_helper_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x306cb3b2 drm_dp_cec_unset_edid +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2feb4502 drm_kms_helper_poll_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x302e4f10 drm_dp_set_phy_test_pattern +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x307c1cc0 drm_simple_display_pipe_init EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3117b63b drm_dp_downstream_max_bpc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x32af47c9 __drm_atomic_helper_crtc_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x32ce0e2f drm_atomic_helper_commit_hw_done -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x32f66a22 drm_fb_helper_output_poll_changed -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3364a0a0 drm_atomic_get_mst_topology_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x34748b30 drm_panel_bridge_remove -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3538e135 __drm_atomic_helper_plane_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x369be3ee drm_gem_simple_kms_prepare_shadow_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3797424d drm_dp_vsc_sdp_log +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x32898530 drm_gem_simple_display_pipe_prepare_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x32903ee4 drm_dp_read_sink_count_cap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x351b544a drm_gem_fb_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x36313b52 drm_kms_helper_poll_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x36e4b40f drm_dp_send_power_updown_phy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3875e4dc drm_atomic_helper_prepare_planes EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x392a838b drm_dp_downstream_max_dotclock -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x39a40b7d drm_mode_config_helper_resume -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3a490fa3 drm_dp_get_phy_test_pattern +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3985ca1b drm_crtc_helper_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x39c1b74c drm_atomic_helper_cleanup_planes EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3a8063f3 drm_dp_dsc_sink_supported_input_bpcs -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3b389e55 drm_fb_helper_ioctl -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3c3e3c47 drm_atomic_helper_connector_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3d19e285 __drm_gem_duplicate_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3e4b1c9b drm_edp_backlight_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x44083c4d drm_dp_pcon_convert_rgb_to_ycbcr -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x44f74e6f drm_dp_pcon_enc_is_dsc_1_2 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x45e0c23a drm_atomic_helper_calc_timestamping_constants -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4602451b drm_atomic_helper_async_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3bd8486e drm_helper_hpd_irq_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3f5be680 drm_fb_helper_deferred_io +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3f9cdbfe drm_gem_simple_kms_cleanup_shadow_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x412e49a9 drm_dp_cec_unregister_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x41421954 drm_dp_mst_topology_mgr_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x42f2956c drm_dp_set_subconnector_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x44a1adcc drm_fb_helper_blank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4603c416 drm_dp_pcon_dsc_bpp_incr EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4668c9dc drm_dp_downstream_min_tmds_clock -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x48d9c561 drm_helper_probe_single_connector_modes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4931ea0f drm_atomic_helper_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x49c34165 drm_dp_send_real_edid_checksum -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4a1fa233 drm_self_refresh_helper_alter_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4a2c4ee5 drm_crtc_helper_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x46d92280 drm_dp_mst_get_port_malloc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4756119e drm_atomic_helper_async_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x47d4957d drm_atomic_helper_async_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x48401ea5 drm_dp_dual_mode_max_tmds_clock +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x48b2788a drm_atomic_helper_shutdown +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4a8f26d9 drm_fb_helper_pan_display +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4b74a779 drm_helper_move_panel_connectors_to_head +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4b8acdd0 drm_gem_cleanup_shadow_fb EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4bb89424 drm_dp_downstream_max_tmds_clock -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4c919dba drm_atomic_helper_bridge_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4d7200fb drm_atomic_helper_dirtyfb EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4e41ad5c drm_fb_xrgb8888_to_rgb565 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x502a6f3b drm_dp_mst_topology_mgr_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x52a95721 drm_dp_link_train_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4e5ac252 __drm_atomic_helper_connector_state_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x50eae187 drm_fb_helper_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x51ad0376 drm_dp_link_train_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x52ad7838 drm_self_refresh_helper_alter_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x52ae0927 drm_atomic_helper_duplicate_state EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x537b8893 drm_fb_blit_rect_dstclip EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5407ae9e drm_dp_get_dual_mode_type_name -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x549c6b1f drm_helper_encoder_in_use -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x553c6ce1 drm_fb_helper_cfb_fillrect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x55514050 drm_dp_pcon_pps_override_param -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x56b740aa __drm_atomic_helper_private_obj_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x56d5c6bc __drm_atomic_helper_crtc_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x577fa961 drm_dp_link_train_clock_recovery_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5460e885 drm_fb_helper_cfb_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x564158e0 drm_dp_lttpr_link_train_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x564f3b64 __drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x567e3391 drm_dp_pcon_pps_default EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x582f248e drm_dp_get_adjust_request_pre_emphasis EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x58d8fcaa drm_dsc_pps_payload_pack -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x58db3cd4 drm_dp_mst_atomic_enable_dsc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x58ecd2cd devm_drm_panel_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x59f27ed7 drm_dp_pcon_enc_is_dsc_1_2 EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5a4734d1 drm_kms_helper_is_poll_worker -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5a93e7c0 drm_dp_mst_topology_mgr_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5b06f4ae drm_dp_pcon_dsc_bpp_incr -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5b1ada69 drm_dp_dpcd_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5b986d4c drm_dp_cec_set_edid -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5be2388b drm_dp_mst_get_edid -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5c12f2dd drm_helper_mode_fill_fb_struct -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5cfc1ff2 drm_scdc_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5d89af73 drm_atomic_helper_check_modeset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5e61843a drm_atomic_helper_damage_merged -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5e72aa2c drm_simple_display_pipe_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5ea9af89 drm_fb_helper_set_suspend_unlocked -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5f1cee39 drm_gem_fb_create_handle -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5f2bd423 drm_atomic_helper_damage_iter_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x614f1c66 drm_fbdev_generic_setup -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x61b23ed4 drm_fb_helper_sys_imageblit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x63a29eee drm_gem_cleanup_shadow_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6401c742 drm_dp_find_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x648b08d9 drm_dp_mst_topology_mgr_set_mst +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5b81444f __drm_gem_reset_shadow_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5d83611f drm_dp_mst_topology_state_funcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5e137aa6 drm_fb_helper_debug_leave +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5e77a867 drm_gem_prepare_shadow_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6189b00d drm_dp_vsc_sdp_log +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x635243f7 drm_dp_mst_topology_mgr_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x640e09b4 drm_dp_find_vcpi_slots EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x648d953b drm_dsc_dp_pps_header_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x64b61a1b drm_fb_helper_restore_fbdev_mode_unlocked -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6599fbfa drm_edp_backlight_set_level -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x65f0d448 drm_dp_mst_connector_early_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x64a7b2a3 drm_atomic_helper_check_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x65348a14 drm_fb_helper_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x659beb21 drm_edp_backlight_set_level +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x660fc73a drm_dp_send_query_stream_enc_status EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6615069e drm_dp_dsc_sink_max_slice_count -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6650e0d5 drm_kms_helper_poll_enable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x66753dcf drm_lspcon_set_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x674c1df1 drm_crtc_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x676c15cb drm_dp_set_subconnector_property -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x67e2379d drm_atomic_helper_resume -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6ade2c27 drm_dp_mst_topology_mgr_resume -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6b40c19c drm_dp_aux_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x666c4b9f drm_gem_reset_shadow_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x68cbbcd5 drm_dp_pcon_reset_frl_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6a840b1e drm_dp_get_phy_test_pattern +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6b39f520 drm_helper_probe_single_connector_modes EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6b5c2b06 drm_atomic_helper_damage_iter_next -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6d12cdaf drm_panel_bridge_add_typed -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6d8e5853 __drm_atomic_helper_connector_state_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6e76b0fc drm_panel_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6cd2b40e drm_primary_helper_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6cfdee01 drm_fb_helper_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6d97d323 drm_fb_helper_check_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6d9a0807 drm_dp_mst_get_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6e7faea8 drm_fb_helper_set_suspend_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6e8bd739 __drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x70298de0 drm_dp_mst_add_affected_dsc_crtcs EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7053fa72 drm_dp_get_pcon_max_frl_bw EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x73011db0 drm_dp_bw_code_to_link_rate -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x74c47504 drm_gem_simple_kms_cleanup_shadow_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x75637978 drm_dp_dual_mode_detect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x764baf66 drm_atomic_helper_fake_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x740a0a9b drm_dp_mst_topology_mgr_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x74eb8cd4 drm_atomic_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x75f59866 __drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7645aca2 drm_helper_encoder_in_use EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x76ff6644 drm_dp_lttpr_pre_emphasis_level_3_supported -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7739f479 drm_helper_disable_unused_functions -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x77c7a627 drm_atomic_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x786c4cc4 drm_self_refresh_helper_update_avg_times -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x78fd7089 drm_dp_update_payload_part2 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x796a99a6 drm_dp_pcon_pps_default +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7729caa7 drm_atomic_helper_commit_hw_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x77774d8e drm_dp_dual_mode_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7840932e drm_atomic_helper_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x78ba33c8 drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7a6f4ab5 drm_dp_read_lttpr_common_caps EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7ae669d0 drm_fb_xrgb8888_to_gray8 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7cfeef4f __drm_atomic_helper_connector_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7d914e5b drm_dp_downstream_id -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7f0ddbf3 drm_fb_helper_debug_leave -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fe4cbfb drm_scdc_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x80c67129 drm_fb_helper_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x80c8f8b8 drm_fb_helper_unregister_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x81ffa1cb __drm_atomic_helper_bridge_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x823ca3cf drm_fb_helper_setcmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7bfcd513 drm_scdc_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7ee56c35 drm_dp_mst_topology_mgr_set_mst +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x806af192 drm_primary_helper_funcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x81eede01 __drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x82cb9194 drm_dp_pcon_pps_override_buf EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x838a8fa0 drm_fb_memcpy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x83cd1ad3 drm_atomic_helper_commit_modeset_disables -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x85745e1b drm_dp_set_phy_test_pattern -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x861bc95b drm_atomic_helper_wait_for_flip_done -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x866e086c drm_fb_helper_alloc_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8780c1bd drm_dp_mst_hpd_irq -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x88f0a2b8 drm_atomic_helper_disable_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x894842f2 drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x83b67a0a drm_scdc_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x83d7df58 drm_atomic_helper_commit_tail +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x83dcaae1 drm_dp_mst_atomic_enable_dsc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x841fbb5f drm_atomic_helper_commit_modeset_enables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8487cca0 drm_dp_mst_dsc_aux_for_port +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x873b36f9 drm_atomic_helper_check_modeset EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x894b1f57 drm_dp_get_adjust_request_post_cursor -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x89c6a553 drm_fb_helper_check_var EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x89d100ba drm_fb_xrgb8888_to_rgb888_dstclip -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8a226889 drm_dp_mst_atomic_check -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8a5fb2c9 drm_fb_helper_blank -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8b54ce5f drm_atomic_helper_connector_tv_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8bc93fc5 drm_fb_helper_initial_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8c20ea75 drm_atomic_helper_check_plane_damage +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8a84d262 drm_fb_helper_alloc_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8ba4ffed drm_dp_mst_dump_topology +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8bdc6097 drm_lspcon_get_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8c51856e drm_atomic_helper_connector_reset EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8ca2d9e4 drm_dp_calc_pbn_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8d4c2902 drm_fb_helper_pan_display -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8d4cadff drm_dp_start_crc EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8d701329 drm_dp_clock_recovery_ok -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8d7d5533 drm_gem_fb_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8f89bec0 drm_helper_connector_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x90174613 drm_atomic_helper_commit_planes_on_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x90856598 drm_atomic_helper_wait_for_vblanks -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x91088aaa drm_atomic_helper_commit_duplicated_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9225711e drm_scdc_set_scrambling -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x93382747 drm_dp_pcon_hdmi_link_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x93cfc777 drm_dp_mst_put_port_malloc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x960f57d0 drm_fb_helper_fini -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x964841c5 __drm_gem_reset_shadow_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9706bfb7 drm_dp_dual_mode_get_tmds_output -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x97f735eb drm_atomic_helper_plane_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x983b3bf8 drm_atomic_helper_async_check -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x98aca11c drm_mode_config_helper_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x98c10312 drm_dp_atomic_release_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9a33a86b drm_dp_pcon_is_frl_ready -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9a3df56f drm_dp_stop_crc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9b169803 drm_dp_dpcd_read_phy_link_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9b865c8d drm_dp_read_sink_count_cap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9bc548a9 drm_dp_pcon_frl_configure_2 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9cddf713 drm_atomic_helper_disable_planes_on_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9ec31a87 drm_atomic_helper_swap_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9f4f0e46 drm_dp_read_dpcd_caps -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9f775f0b drm_atomic_helper_check -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa091e234 drm_panel_bridge_connector -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa1d2ec40 drm_fb_helper_cfb_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8e7c89a6 drm_fb_helper_set_par +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8e86f276 drm_dp_mst_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8edcdad7 drm_fb_helper_initial_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x914eba8c drm_atomic_helper_bridge_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x927dd60b __drm_atomic_helper_private_obj_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x948c21a9 drm_atomic_helper_check_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x96883318 __drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x969c1166 drm_atomic_helper_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9aae1b7b drm_dp_start_crc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9af29acf devm_drm_panel_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9c8c2145 drm_edp_backlight_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9e03e09b drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa01b9af4 drm_kms_helper_poll_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa04ed2ff drm_atomic_helper_update_legacy_modeset_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa14d7ae3 drm_helper_connector_dpms EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa1fefe6a drm_dp_psr_setup_time -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa46ef326 drm_gem_fb_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa475ca14 drm_gem_destroy_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa4c732f0 drm_atomic_helper_check_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa826d6dc drm_gem_duplicate_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa88d57c2 drm_helper_resume_force_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa9696f2c drm_dp_dual_mode_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaa0a3fdd drm_dp_mst_detect_port -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaa5acb61 drm_gem_reset_shadow_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xab24c8c6 drm_dp_read_sink_count -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xab2afb4c drm_kms_helper_poll_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xab620be7 drm_dp_pcon_pps_override_buf -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xac4b8b2e __drmm_simple_encoder_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xac8a082f drm_dp_check_act_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xad6dec79 drm_fb_helper_sys_copyarea -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xadf81495 drm_edp_backlight_enable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xae7701d8 drm_atomic_helper_check_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa2e8c30a __drm_gem_duplicate_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa37bcb10 drm_atomic_helper_dirtyfb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa4b10f8d drm_dp_dpcd_read_phy_link_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa512c74e __drm_atomic_helper_bridge_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa53b3d3e drm_dp_pcon_hdmi_link_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa5e18731 drm_mode_config_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa6d69990 drm_dp_mst_put_port_malloc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa73266e5 drm_atomic_helper_disable_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa78c69fc drm_dp_mst_topology_mgr_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa81bc37e drm_dp_update_payload_part2 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa8456cde drm_dp_cec_set_edid +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa9cba8be drm_mode_config_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa9d5c04e drm_atomic_helper_page_flip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa9e2b3b9 drm_fb_helper_cfb_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xac04119a drm_atomic_helper_wait_for_flip_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xad093655 drm_gem_simple_kms_reset_shadow_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xadbf86a5 drm_dp_atomic_release_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xadd96585 drm_dp_dual_mode_set_tmds_output EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaf267620 drm_dp_lttpr_count -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaf6552ab drm_atomic_helper_wait_for_fences -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb0186b0e drm_gem_simple_display_pipe_prepare_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb01b2d6d drm_atomic_helper_crtc_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb0d525bd drm_dp_send_power_updown_phy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb16441f9 drm_atomic_helper_bridge_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb187c9a1 drm_dp_remote_aux_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb1e64e5a drm_gem_simple_kms_reset_shadow_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb293e937 devm_drm_panel_bridge_add_typed -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb308e5e9 drm_atomic_helper_crtc_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb47fc5d0 drm_crtc_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb5e6f945 drm_fb_helper_debug_enter -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb5f7cf9b drm_atomic_helper_commit_cleanup_done -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb60a196e drm_atomic_helper_shutdown -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb6d20327 drm_fb_helper_fill_info -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb7e27266 drm_dp_mst_reset_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb932044a drm_dp_mst_topology_state_funcs -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbbed9521 drm_gem_fb_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbe75f5e1 drm_atomic_helper_wait_for_dependencies -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbeae7724 __drm_atomic_helper_bridge_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc147e9d8 drm_dp_mst_connector_late_register -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc1f1a4bb drm_scdc_set_high_tmds_clock_ratio -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc3db0491 drm_dp_dual_mode_set_tmds_output -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc3fce1a0 drm_dp_mst_get_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc42239a6 drm_atomic_helper_page_flip_target +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb0dabe98 drm_dp_stop_crc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb11c328f __drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb1c5e547 __drmm_simple_encoder_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb2acec9c drm_atomic_helper_wait_for_vblanks +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb56c2b44 drm_atomic_helper_bridge_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb71ff40c drm_dp_dpcd_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb749e7ff drm_dp_mst_atomic_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb752d85e drm_atomic_helper_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb75d2a2a drm_atomic_helper_commit_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb88b742c drm_dp_pcon_frl_configure_1 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb92a25cc drm_dp_dual_mode_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb9a684c6 drm_fb_helper_sys_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xba9f0bc0 drm_panel_bridge_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbb0c0bb4 drm_panel_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbca2d2b3 drm_atomic_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbdfb5f9b drm_dp_send_real_edid_checksum +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbedd4563 drm_helper_crtc_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc020c0c1 drm_dp_pcon_dsc_max_slice_width +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc10a49db drm_scdc_set_high_tmds_clock_ratio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc153712f drm_helper_disable_unused_functions +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc18384f5 drm_dp_read_dpcd_caps +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc2289917 drm_atomic_helper_fake_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc245272a drm_gem_fb_create_handle +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc2a1d48c drm_panel_dp_aux_backlight +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc32ae98d drm_atomic_helper_plane_destroy_state EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc5c99a79 drm_dp_get_adjust_request_voltage -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc62759bc drm_atomic_helper_cleanup_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc63aa620 drm_atomic_get_mst_topology_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc692feea drm_atomic_helper_commit_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc6de9572 drm_gem_fb_end_cpu_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc6fc693c drm_dp_pcon_convert_rgb_to_ycbcr EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc79ecffb drm_dp_downstream_is_type -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc7ab3e62 drm_dp_mst_dsc_aux_for_port -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc84e0d4a drm_gem_simple_kms_destroy_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc7c226cd drm_dp_link_train_clock_recovery_delay EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc85e28e8 drm_fb_xrgb8888_to_rgb565_dstclip -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc8a97f27 drm_dp_cec_register_connector -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcc60e951 drm_kms_helper_poll_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xce36d09d drm_atomic_helper_update_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcf9a4939 __drm_atomic_helper_plane_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd04c4676 drm_primary_helper_funcs -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd08a02f1 drm_dp_dual_mode_max_tmds_clock -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd09dd0ff drm_fb_helper_cfb_copyarea -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd10dbe60 drm_dp_read_lttpr_common_caps -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd1c7da2e drm_atomic_helper_page_flip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xca673399 drm_atomic_helper_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xca79a5a0 drm_gem_destroy_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcaee0ed8 __drm_atomic_helper_bridge_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcc54c1f0 drm_dp_aux_register +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcdf6e2ab drm_atomic_helper_commit_modeset_disables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcea863c1 drm_fb_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd064e7a5 drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd1368471 drm_gem_simple_kms_duplicate_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd1996f1d drm_fb_helper_cfb_imageblit EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd2b0c7e6 drm_dp_downstream_is_tmds -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd4381550 drm_fb_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd398db53 drm_gem_fb_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd40bb4f9 drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd42bbdac drm_self_refresh_helper_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd45f676b drm_fb_helper_set_suspend EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd4983d85 drm_fb_swab -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd5b0ee7b drm_dp_pcon_frl_enable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd5c33042 drm_atomic_helper_bridge_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd881a5ad drm_gem_fb_end_cpu_access -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd928992f drm_fb_helper_sys_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd92e9622 drm_helper_move_panel_connectors_to_head -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xda2badb0 drm_dp_aux_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd4c63202 drm_fb_helper_sys_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd4d50a48 drm_dp_aux_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd5a4e6ac drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd5da577b drm_kms_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd718c46f drm_fb_helper_sys_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd78702a1 __drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd86c542e drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd886b07a drm_dp_cec_irq +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd93ee56b drm_atomic_helper_wait_for_fences +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd98f74a3 drm_dp_dpcd_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xda15b8f6 drm_dp_mst_hpd_irq +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdb72bdab drm_fb_helper_setcmap EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdbc3c128 drm_fb_blit_dstclip -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdcb17cad drm_dp_dpcd_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdd25f079 drm_dp_pcon_dsc_max_slice_width -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdf499721 drm_dp_dpcd_read_link_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe123e244 drm_fb_helper_set_par -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe1def2f1 drm_lspcon_get_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe31d86bc drm_dp_mst_dump_topology -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe49d1b36 __drm_atomic_helper_connector_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe551bc50 drm_dp_cec_irq -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe578c016 drm_self_refresh_helper_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe66b488d drm_primary_helper_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdc65391d drm_simple_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xddba9bff drm_dp_update_payload_part1 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xde17b53b drm_dp_read_desc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xde53066a drm_dp_pcon_frl_configure_2 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdf5bace8 drm_fb_helper_restore_fbdev_mode_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdf9732fc drm_fb_helper_fill_info +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe07330c3 drm_crtc_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe089887f drm_atomic_helper_swap_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe0d43956 drm_helper_force_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe1b622cc drm_dp_read_lttpr_phy_caps +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe2327f81 drm_dp_read_downstream_info +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe3f57edb drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe409ab9c drm_dp_read_mst_cap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe46bc146 drm_dp_mst_deallocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe480ba9c __drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe5360b84 drm_dp_pcon_dsc_max_slices +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe5f8d550 drm_dp_dpcd_read_link_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe64b8f30 drm_fb_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe65aa43d drm_self_refresh_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe6ef819e drm_edp_backlight_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe7b1d808 drm_atomic_helper_commit_duplicated_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe7d2135b drm_atomic_helper_damage_iter_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe9d0fc41 drm_dp_mst_allocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeafaa18c drm_dp_remote_aux_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xebea42ac drm_dp_aux_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xec505eae drm_scdc_set_scrambling EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xedcf81ce drm_dp_channel_eq_ok -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xee1b9b1a __drm_atomic_helper_connector_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xee9c25cf drm_fb_helper_sys_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeef39900 drm_scdc_get_scrambling_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf292e1bf drm_fb_helper_set_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf3602f36 __drm_atomic_helper_crtc_state_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf622f93d drm_helper_probe_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xee62ae0f drm_dp_pcon_pps_override_param +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xee77a7c9 drm_atomic_helper_wait_for_dependencies +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf097b03b drm_helper_resume_force_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf2ebe90f drm_dp_mst_reset_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf2f31041 drm_gem_fb_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf36d4bb5 drm_helper_probe_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf424dced drm_atomic_helper_page_flip_target +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf55d3adc drm_dp_mst_connector_early_unregister EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf68741fb drm_dp_subconnector_type EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf689ad25 drm_dp_downstream_420_passthrough -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf7cf08ee drm_atomic_helper_commit_modeset_enables -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf7f9acd3 drm_gem_prepare_shadow_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf81cafea drm_simple_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf8333b3c drm_dp_pcon_dsc_max_slices -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf9428b4d drm_dp_pcon_frl_configure_1 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfad9f19b drm_dp_mst_add_affected_dsc_crtcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf6d008ac drm_gem_simple_kms_destroy_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf6fb9275 __drm_gem_destroy_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf9d0de83 drm_dp_cec_unset_edid +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfa3499c8 drm_dp_downstream_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfac11454 drm_atomic_helper_update_plane EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfb1a7a5a drm_dp_downstream_rgb_to_ycbcr_conversion -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfb6b2fcc drm_dp_pcon_hdmi_frl_link_error_count -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfd7d168c drm_fb_helper_deferred_io -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfd8ec074 drm_dp_send_query_stream_enc_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfdbbf074 drm_atomic_helper_bridge_propagate_bus_fmt +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfb5b862e drm_fb_helper_lastclose +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfcf6fca2 drm_fb_helper_sys_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfd7e82dd drm_atomic_helper_commit_cleanup_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfdd47281 drm_dp_pcon_hdmi_frl_link_error_count EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfe12bcb9 drm_dsc_compute_rc_parameters -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfe26eaf6 drm_dp_mst_topology_mgr_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfe7d1185 drm_simple_display_pipe_attach_bridge -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xff1e98e3 drm_atomic_helper_update_legacy_modeset_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xff840b2e drm_dp_downstream_debug -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x09449d6e mipi_dbi_command_buf -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x0d5d06ee mipi_dbi_pipe_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x21628357 mipi_dbi_dev_init -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x3199a3fd mipi_dbi_dev_init_with_formats -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x34d6d236 mipi_dbi_poweron_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x451e9233 mipi_dbi_debugfs_init -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x47e61cbb mipi_dbi_hw_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x4f27a403 mipi_dbi_command_stackbuf -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x55ad3d18 mipi_dbi_buf_copy -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x61309811 mipi_dbi_spi_transfer -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x6b772fb8 mipi_dbi_command_read -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x6c3a35bf mipi_dbi_pipe_update -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x9ccfbc07 mipi_dbi_enable_flush -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xbed53a39 mipi_dbi_spi_cmd_max_speed -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xca2fa348 mipi_dbi_spi_init -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xd99684c2 mipi_dbi_display_is_on -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xd9f70ec7 mipi_dbi_poweron_conditional_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x26bcda7f drm_gem_ttm_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x42dd2bac drm_gem_ttm_print_info -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x4bd9240d drm_gem_ttm_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x72a29d78 drm_gem_ttm_dumb_map_offset -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0xbb3defb7 drm_gem_ttm_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x0c6fcaf9 drm_vram_mm_debugfs_init -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x14d162f8 drm_gem_vram_simple_display_pipe_cleanup_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x18dffdd5 drm_gem_vram_driver_dumb_create -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x256bf462 drm_gem_vram_unpin -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x29422315 drm_gem_vram_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x320595d7 drm_gem_vram_plane_helper_cleanup_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x442a3701 drm_gem_vram_pin -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x4515dfbe drm_gem_vram_put -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x4755303a drm_vram_helper_mode_valid -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x5e54871f drm_gem_vram_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x8d7c5e0f drm_gem_vram_create -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x8ed6e36f drm_gem_vram_offset -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x98a178b9 drmm_vram_helper_init -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xa301fb43 drm_gem_vram_plane_helper_prepare_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xee3d698a drm_gem_vram_simple_display_pipe_prepare_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xf30cff60 drm_gem_vram_fill_create_dumb -EXPORT_SYMBOL drivers/gpu/drm/rockchip/rockchipdrm 0x79c55c17 rockchip_drm_wait_vact_end -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x0776641f drm_sched_dependency_optimized -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x1361576d drm_sched_fini -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x24e799ab drm_sched_entity_set_priority -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x27036b98 drm_sched_entity_destroy -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x2d7b6392 drm_sched_resubmit_jobs -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x59cdcbc7 drm_sched_pick_best -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x67661b15 drm_sched_start -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x6ed65a16 drm_sched_increase_karma -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x746a31e1 drm_sched_suspend_timeout -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x8291c5fd drm_sched_resubmit_jobs_ext -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x86da9c6b drm_sched_entity_flush -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x897ae594 drm_sched_job_init -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x89e31dd1 drm_sched_entity_push_job -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x9b483a07 drm_sched_reset_karma -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x9cd9dd8b drm_sched_entity_init -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x9e1a1e93 drm_sched_entity_modify_sched -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xabd317a5 drm_sched_stop -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xac5bc495 drm_sched_entity_fini -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xdef4ea60 drm_sched_increase_karma_ext -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xe43edb6b drm_sched_resume_timeout -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xe4e068de drm_sched_job_cleanup -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xe817e422 to_drm_sched_fence -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xf7bd9a31 drm_sched_fault -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xfc680a3b drm_sched_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0ebd470b ttm_bo_put -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1171df1e ttm_bo_wait -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x14628bbb ttm_resource_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1a03c930 ttm_bo_eviction_valuable -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1b8a2b48 ttm_bo_move_to_lru_tail -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1c2c7fdb ttm_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1e0b5a51 ttm_bo_vm_reserve -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1f43f0f7 ttm_resource_free +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfe42b72e drm_dp_pcon_is_frl_ready +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfefbcb54 drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xff6f6481 drm_dp_dual_mode_get_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x01e05c11 mipi_dbi_spi_init +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x083fafbb mipi_dbi_spi_transfer +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x262dee4c mipi_dbi_enable_flush +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x3e01f334 mipi_dbi_command_buf +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x412d5581 mipi_dbi_pipe_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x4aa11a02 mipi_dbi_spi_cmd_max_speed +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x5a12ccaf mipi_dbi_dev_init +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x744eab37 mipi_dbi_command_stackbuf +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x7ca82cef mipi_dbi_display_is_on +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x7edde88c mipi_dbi_hw_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x957ef73c mipi_dbi_poweron_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x98976a97 mipi_dbi_dev_init_with_formats +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x9cae8eef mipi_dbi_pipe_update +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xa8423302 mipi_dbi_buf_copy +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xb60f7c9d mipi_dbi_command_read +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xeb7c27d1 mipi_dbi_poweron_conditional_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xed2b6d52 mipi_dbi_debugfs_init +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x76dfb3cf drm_gem_ttm_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x7befa634 drm_gem_ttm_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x8baf5939 drm_gem_ttm_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x8e714db5 drm_gem_ttm_dumb_map_offset +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x8f7b9f7b drm_gem_ttm_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x139bec26 drm_gem_vram_pin +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x152e3304 drm_gem_vram_unpin +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x21bad1d1 drmm_vram_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x27e2c13e drm_gem_vram_create +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x361c0482 drm_gem_vram_driver_dumb_create +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x48ef4216 drm_gem_vram_offset +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x4976213e drm_gem_vram_put +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x55e0c339 drm_gem_vram_plane_helper_prepare_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x58c34512 drm_gem_vram_simple_display_pipe_cleanup_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x63fb392d drm_gem_vram_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xa6b72a09 drm_vram_mm_debugfs_init +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xb8ff467c drm_vram_helper_mode_valid +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xd5ecfb71 drm_gem_vram_simple_display_pipe_prepare_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xe1519a9e drm_gem_vram_plane_helper_cleanup_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xe9842547 drm_gem_vram_fill_create_dumb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xf2aa240d drm_gem_vram_vmap +EXPORT_SYMBOL drivers/gpu/drm/rockchip/rockchipdrm 0x4c758644 rockchip_drm_wait_vact_end +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x13bebe82 drm_sched_stop +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x19662e6e drm_sched_reset_karma +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x2424c99c drm_sched_start +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x25e6d16b drm_sched_entity_fini +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x4625ce9d drm_sched_entity_destroy +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x512ad4ac drm_sched_fini +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x5d3ab71d drm_sched_job_cleanup +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x676bc732 drm_sched_entity_flush +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x6f2c78fc drm_sched_suspend_timeout +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x70f62198 drm_sched_increase_karma +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x8b735e07 to_drm_sched_fence +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xa1c7d88a drm_sched_pick_best +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xb59a514b drm_sched_resubmit_jobs +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xb9581b52 drm_sched_dependency_optimized +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xb9642f36 drm_sched_entity_set_priority +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xc0867b6e drm_sched_resubmit_jobs_ext +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xc4907903 drm_sched_entity_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xc7abc1e9 drm_sched_job_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xcb65330b drm_sched_resume_timeout +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xdeac0087 drm_sched_entity_push_job +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xdf427172 drm_sched_increase_karma_ext +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xe3585f15 drm_sched_entity_modify_sched +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xf935cf5c drm_sched_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xfe4292bc drm_sched_fault +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0f217209 ttm_eu_backoff_reservation +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x12e4c4a9 ttm_bo_mem_space +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x16f23abd ttm_bo_move_accel_cleanup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1864f599 ttm_bo_vm_reserve +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1df78ab2 ttm_sg_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2916e023 ttm_bo_vunmap EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x298e6ad6 ttm_bo_mem_compat -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2a85927a ttm_tt_populate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2fd6eee9 ttm_global_swapout -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x325cfe89 ttm_bo_vm_fault -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x33fe6e2b ttm_bo_unlock_delayed_workqueue -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x351f2646 ttm_bo_vmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x45e2041a ttm_bo_move_accel_cleanup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2c2135c4 ttm_bo_vm_access +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x34c7fa6c ttm_bo_vm_open +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x358333d4 ttm_range_man_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x47fd02b3 ttm_resource_manager_debug +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x49922322 ttm_bo_unlock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4a7c3ca9 ttm_bo_move_to_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4b02698b ttm_bo_eviction_valuable EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4d8a3407 ttm_kmap_iter_iomap_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x530c22ae ttm_move_memcpy -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x53fea19b ttm_bo_lock_delayed_workqueue -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x56730d3c ttm_bo_validate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5b6655c5 ttm_bo_vm_dummy_page -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5cce984f ttm_kmap_iter_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5df47364 ttm_bo_vm_open -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x629404ad ttm_bo_move_memcpy -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x66c89c7c ttm_pool_debugfs -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6ae63fcc ttm_tt_destroy_common -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x79b58d9e ttm_pool_free -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7c897f93 ttm_sg_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x802ae388 ttm_bo_kmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x86da1a0e ttm_resource_manager_debug -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8c3ec97b ttm_device_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8e485f19 ttm_glob -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8f92b925 ttm_tt_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x99b2e2c7 ttm_io_prot -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9c1e4a9b ttm_resource_manager_evict_all -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa342c9b9 ttm_pool_alloc -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa51e1aea ttm_range_man_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xac08e27b ttm_eu_reserve_buffers -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb0fc59e2 ttm_bo_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb6388539 ttm_eu_backoff_reservation -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb768aa37 ttm_bo_vunmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xba85da08 ttm_bo_init_reserved -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc18df4b2 ttm_bo_vm_fault_reserved -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc6eee9ae ttm_device_swapout -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc9ea884f ttm_bo_vm_access -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd4f031cf ttm_bo_mmap_obj -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd772cc3d ttm_bo_vm_close -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd85b8c95 ttm_bo_bulk_move_lru_tail -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe21cc952 ttm_resource_manager_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe264db18 ttm_eu_fence_buffer_objects -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf08b4ea4 ttm_bo_unmap_virtual -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf4616dee ttm_device_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf5aec0af ttm_bo_mem_space -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf60b031c ttm_range_man_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf7fdbffe ttm_bo_kunmap -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x0839bb36 host1x_syncpt_incr_max -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x08e5fb8a host1x_job_put -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x0968dc1b host1x_driver_unregister -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x11385371 host1x_syncpt_read -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x1e128c87 host1x_syncpt_id -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x2d135bb7 host1x_channel_request -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x2eeac9d9 host1x_syncpt_put -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x30de6254 host1x_syncpt_get_base -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x3f3c1813 host1x_job_get -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x421cf6ba tegra_mipi_request -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x49f1b396 host1x_syncpt_get +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x519a13d1 ttm_move_memcpy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x522f74d0 ttm_bo_kmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x57607c07 ttm_bo_put +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x63eebef6 ttm_resource_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x667e16bf ttm_device_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6def5f20 ttm_bo_init_reserved +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6fa5d817 ttm_bo_vm_close +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6fda7720 ttm_bo_wait +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x767543a9 ttm_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7724daf6 ttm_bo_mmap_obj +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7981946c ttm_pool_debugfs +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x884f8922 ttm_kmap_iter_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x88cd8471 ttm_bo_vm_fault +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8be89736 ttm_bo_kunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x920f408b ttm_resource_manager_evict_all +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x994534b0 ttm_eu_fence_buffer_objects +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9dc77b99 ttm_bo_vm_dummy_page +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa13a6a43 ttm_pool_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa41c37f8 ttm_bo_validate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa44fceca ttm_bo_lock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa58faaf6 ttm_io_prot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa707d0cf ttm_global_swapout +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa89e59bf ttm_range_man_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb50855f3 ttm_tt_destroy_common +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb7cf68b4 ttm_eu_reserve_buffers +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbc964f19 ttm_pool_alloc +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc1b32d13 ttm_resource_manager_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc3a80543 ttm_bo_move_memcpy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc46ac2a7 ttm_bo_vm_fault_reserved +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc61d68a0 ttm_bo_unmap_virtual +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xccf4b66b ttm_device_swapout +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd3a909b2 ttm_glob +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd54e16b4 ttm_tt_populate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd85784ee ttm_bo_bulk_move_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdb5d9969 ttm_bo_vmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xec915037 ttm_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf1717baa ttm_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf322dd43 ttm_bo_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfcb7071a ttm_resource_free +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x010fc164 host1x_client_unregister +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x01540253 host1x_channel_request +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x02589408 host1x_syncpt_get_base +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x17757c27 host1x_device_init +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x17888cc0 __host1x_client_init +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x17d14945 host1x_syncpt_id +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x1f4ad8b1 host1x_syncpt_incr +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x204ecc3f host1x_syncpt_alloc +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x2116d997 host1x_job_get +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x23a198ec host1x_syncpt_incr_max +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x319bfc78 host1x_client_suspend +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x33f1c6c3 host1x_channel_get +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x38f217b0 host1x_syncpt_put +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x417a8996 host1x_device_exit +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x45d78a00 tegra_mipi_request +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x516dff62 host1x_syncpt_get EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x51de13ce host1x_syncpt_base_id -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x53971c56 host1x_job_add_gather +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x53b825c7 host1x_get_dma_mask EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x57553ccd host1x_fence_create -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x575e44fd host1x_syncpt_read_max -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x584b668a host1x_syncpt_get_by_id_noref -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x5b412d06 host1x_client_unregister -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x5dcbb165 host1x_syncpt_alloc -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x5e8ed728 host1x_client_suspend -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x5f88e3b0 host1x_syncpt_incr -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x606bd6d8 host1x_syncpt_wait -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x61407a69 host1x_driver_register_full -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x6a30543b host1x_job_add_wait +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x588c7d0c host1x_driver_unregister +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x5e443dcf host1x_job_pin +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x5ecd4844 __host1x_client_register +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x653ef779 host1x_job_put +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x66280efe host1x_syncpt_get_by_id_noref +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x6f8ed701 host1x_syncpt_read_max EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x72e78e54 tegra_mipi_start_calibration -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x750fd503 host1x_job_submit -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x75ecb5a1 host1x_channel_get -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x819dd4c1 host1x_syncpt_read_min -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x872c8d79 host1x_job_unpin -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x898b6011 __host1x_client_init -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x8cc2a46f host1x_channel_put -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x8de93f00 host1x_syncpt_get_by_id -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x8faa9c09 host1x_client_resume +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x7b7d87ee host1x_channel_put +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x84f58142 host1x_syncpt_read_min +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x852bd8d3 host1x_job_unpin +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x920bb5f8 host1x_syncpt_read EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x9451a33e tegra_mipi_free -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xa088acf6 host1x_syncpt_release_vblank_reservation +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x978df7d5 host1x_syncpt_get_by_id EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xa733ff60 tegra_mipi_disable -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xa8865023 host1x_job_pin EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xbcbe65a0 tegra_mipi_finish_calibration -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xc42a8300 host1x_syncpt_request -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xc75db764 host1x_device_init -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xccdb5f83 host1x_job_alloc -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xdd42eb40 host1x_get_dma_mask -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xddf224c5 __host1x_client_register -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xe53846a7 host1x_device_exit -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xec60a9bc host1x_client_exit +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xc859c8a5 host1x_client_resume +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xc907c3c9 host1x_syncpt_wait +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xe094808d host1x_driver_register_full +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xe34513ac host1x_client_exit +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xe42ca117 host1x_job_add_wait +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xe4e0bb42 host1x_job_submit +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xee459a72 host1x_syncpt_request +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xf1beac90 host1x_syncpt_release_vblank_reservation +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xf3c1cd71 host1x_job_add_gather EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xf8a79b19 tegra_mipi_enable -EXPORT_SYMBOL drivers/hid/hid 0x521e591e hid_bus_type +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xfd83e4a5 host1x_job_alloc +EXPORT_SYMBOL drivers/hid/hid 0x4537304c hid_bus_type EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x2f9e7f8e vid_which_vrm EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x446615bd vid_from_reg EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x01568393 sch56xx_read_virtual_reg -EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x70f48df7 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 0xab892074 sch56xx_watchdog_register EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xb37b9b81 sch56xx_read_virtual_reg16 -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x2e586e91 i2c_bit_algo -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xb5a96f1b i2c_bit_add_numbered_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xf1bb435f i2c_bit_add_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x47e77772 i2c_pca_add_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0xef7624c3 i2c_pca_add_numbered_bus -EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0xf93fefc3 amd756_smbus -EXPORT_SYMBOL drivers/iio/accel/bma400_core 0x2876beec bma400_regmap_config -EXPORT_SYMBOL drivers/iio/accel/bma400_core 0x6a6dd7c3 bma400_remove -EXPORT_SYMBOL drivers/iio/accel/bma400_core 0xe7d8d15b bma400_probe -EXPORT_SYMBOL drivers/iio/accel/kxsd9 0x30648b06 kxsd9_common_remove -EXPORT_SYMBOL drivers/iio/accel/kxsd9 0xb8dc6216 kxsd9_common_probe -EXPORT_SYMBOL drivers/iio/accel/kxsd9 0xd6915741 kxsd9_dev_pm_ops -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x104e70a9 mma9551_read_config_word -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x12304f46 mma9551_read_config_words -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x17499ea4 mma9551_read_status_words -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x1dd25125 mma9551_set_device_state -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x2c968df5 mma9551_read_status_word -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x388a89a5 mma9551_read_status_byte +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x29787ce2 i2c_bit_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xa34c72d2 i2c_bit_algo +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xb7fd7314 i2c_bit_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x8843a8f7 i2c_pca_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0xf4d22a03 i2c_pca_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0x09f14231 amd756_smbus +EXPORT_SYMBOL drivers/iio/accel/bma400_core 0x604d6595 bma400_regmap_config +EXPORT_SYMBOL drivers/iio/accel/bma400_core 0xe3d50605 bma400_probe +EXPORT_SYMBOL drivers/iio/accel/bma400_core 0xf9cdabcb bma400_remove +EXPORT_SYMBOL drivers/iio/accel/kxsd9 0x1265fd90 kxsd9_common_probe +EXPORT_SYMBOL drivers/iio/accel/kxsd9 0x5f18b729 kxsd9_common_remove +EXPORT_SYMBOL drivers/iio/accel/kxsd9 0xf0da0e7f kxsd9_dev_pm_ops +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x093311a3 mma9551_write_config_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x3b8f319e mma9551_app_reset EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x41ef446c mma9551_read_accel_scale -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x48d0e95b mma9551_read_version -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x4905463a mma9551_write_config_words -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x5b710599 mma9551_write_config_word -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x786758b4 mma9551_gpio_config -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x86c5f8be mma9551_update_config_bits -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x88efe6df mma9551_write_config_byte -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x96c3ca3d mma9551_read_accel_chan -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x9eb14665 mma9551_set_power_state +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x42c18916 mma9551_read_version +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x473da73c mma9551_read_status_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x4910e108 mma9551_read_status_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x5084b649 mma9551_read_status_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x591581c9 mma9551_read_config_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x6911689f mma9551_write_config_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x71e9f9e6 mma9551_gpio_config +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x8233de6e mma9551_write_config_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x84d9cfbd mma9551_read_config_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x8782379f mma9551_read_accel_chan +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x963a6ef7 mma9551_update_config_bits +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xae38a0d2 mma9551_set_device_state +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xb54a3092 mma9551_set_power_state EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xbcd7fe96 mma9551_sleep -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xe3930481 mma9551_read_config_byte -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xf27e1753 mma9551_app_reset -EXPORT_SYMBOL drivers/iio/accel/st_accel 0x6a54a356 st_accel_get_settings -EXPORT_SYMBOL drivers/iio/accel/st_accel 0xa54890bd st_accel_common_remove -EXPORT_SYMBOL drivers/iio/accel/st_accel 0xef90e7e2 st_accel_common_probe +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xf6400175 mma9551_read_config_words +EXPORT_SYMBOL drivers/iio/accel/st_accel 0x2789bd09 st_accel_common_probe +EXPORT_SYMBOL drivers/iio/accel/st_accel 0x39234972 st_accel_common_remove +EXPORT_SYMBOL drivers/iio/accel/st_accel 0x9f015ae7 st_accel_get_settings EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x10a4c688 qcom_adc5_hw_scale EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x12402a0a qcom_vadc_scale EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x39885d6b qcom_adc_tm5_temp_volt_scale @@ -1216,1262 +1216,1262 @@ 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 0x719362ee iio_triggered_buffer_setup_ext -EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0x9446b626 iio_triggered_buffer_cleanup -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x221fe973 iio_kfifo_free -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x30a51475 iio_kfifo_allocate -EXPORT_SYMBOL drivers/iio/chemical/bme680_core 0xafac504d bme680_regmap_config -EXPORT_SYMBOL drivers/iio/chemical/scd30_core 0x5fd2a90f scd30_suspend -EXPORT_SYMBOL drivers/iio/chemical/scd30_core 0x884f805c scd30_resume -EXPORT_SYMBOL drivers/iio/chemical/scd30_core 0xab9d0a6a scd30_probe +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0x82b1cc93 iio_triggered_buffer_setup_ext +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0x8d5c9980 iio_triggered_buffer_cleanup +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x0948b688 iio_kfifo_free +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x3cf996d9 iio_kfifo_allocate +EXPORT_SYMBOL drivers/iio/chemical/bme680_core 0xb5587047 bme680_regmap_config +EXPORT_SYMBOL drivers/iio/chemical/scd30_core 0x6c2915a6 scd30_probe +EXPORT_SYMBOL drivers/iio/chemical/scd30_core 0xa39382ac scd30_suspend +EXPORT_SYMBOL drivers/iio/chemical/scd30_core 0xfc3d1525 scd30_resume EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x045688dd ms_sensors_read_prom_word -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x089824fb ms_sensors_tp_read_prom -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x0ca6eec1 ms_sensors_ht_read_temperature -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x1aeb70bb ms_sensors_show_heater -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x227cb2e2 ms_sensors_read_serial EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x2d2f5cd5 ms_sensors_reset +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x3425dead ms_sensors_show_battery_low +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x3a918c28 ms_sensors_write_resolution EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x42b6a050 ms_sensors_convert_and_read -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x4d909c64 ms_sensors_write_resolution -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x9b7d731f ms_sensors_show_battery_low -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xac20d287 ms_sensors_write_heater -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xf51fc465 ms_sensors_read_temp_and_pressure -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xf57bb574 ms_sensors_ht_read_humidity -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x05d11c4e ssp_register_consumer -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x2ba477d2 ssp_enable_sensor -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xac7412c1 ssp_disable_sensor -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xb88013ac ssp_change_delay -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xd0bd1491 ssp_get_sensor_delay -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x8b90bc79 ssp_common_buffer_postdisable -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x9c72fd47 ssp_common_process_data -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0xf2f02a05 ssp_common_buffer_postenable +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x51f32012 ms_sensors_tp_read_prom +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x592a718c ms_sensors_read_temp_and_pressure +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x70b4287a ms_sensors_ht_read_temperature +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x71f2a17a ms_sensors_write_heater +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xb953aebe ms_sensors_show_heater +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xce70a270 ms_sensors_read_serial +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xde7dab8e ms_sensors_ht_read_humidity +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x3f8bb140 ssp_enable_sensor +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x4471f9a8 ssp_change_delay +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x675c921d ssp_register_consumer +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x8c839ce5 ssp_get_sensor_delay +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xa7b6c6aa ssp_disable_sensor +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x788b2d32 ssp_common_process_data +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0xdcd8179e ssp_common_buffer_postenable +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0xf8638462 ssp_common_buffer_postdisable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x03160f20 st_sensors_allocate_trigger +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x05f101e4 st_sensors_set_odr EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x074d7047 st_sensors_trigger_handler -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x0d6763e5 st_sensors_validate_device -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x11948866 st_sensors_set_axis_enable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x25d4ba2d st_sensors_debugfs_reg_access -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x3a341c30 st_sensors_verify_id -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x4dff00f3 st_sensors_power_disable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x5b6981f0 st_sensors_init_sensor -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x86a54baa st_sensors_dev_name_probe -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x8b375c91 st_sensors_sysfs_scale_avail -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x9e7ec3c9 st_sensors_power_enable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xad82c57f st_sensors_set_enable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xbd8df2d8 st_sensors_get_settings_index -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xc2678daf st_sensors_deallocate_trigger -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xcaef620e st_sensors_sysfs_sampling_frequency_avail -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xd5c3c294 st_sensors_set_fullscale_by_gain -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xd7dcb511 st_sensors_set_dataready_irq -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xd8ea8ef1 st_sensors_read_info_raw -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xe007388d st_sensors_allocate_trigger -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xeeddf0a1 st_sensors_set_odr -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0x85b038cb st_sensors_i2c_configure -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_spi 0xe097bad0 st_sensors_spi_configure -EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0xc4238675 mpu3050_dev_pm_ops -EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0xf3a52456 mpu3050_common_remove -EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0xf7820644 mpu3050_common_probe -EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x017eac1d st_gyro_common_probe -EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x215626bf st_gyro_get_settings -EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x308dc78b st_gyro_common_remove -EXPORT_SYMBOL drivers/iio/humidity/hts221 0x0e875978 hts221_pm_ops -EXPORT_SYMBOL drivers/iio/humidity/hts221 0x349c2fa2 hts221_probe -EXPORT_SYMBOL drivers/iio/imu/adis_lib 0x4f9c195e adis_debugfs_reg_access -EXPORT_SYMBOL drivers/iio/imu/adis_lib 0x71778987 adis_enable_irq -EXPORT_SYMBOL drivers/iio/imu/bmi160/bmi160_core 0x4f92e3dd bmi160_regmap_config +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x1dfb6e4c st_sensors_set_axis_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x3e365870 st_sensors_init_sensor +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x40419844 st_sensors_deallocate_trigger +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x689eae9b st_sensors_get_settings_index +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x7cf39bdc st_sensors_read_info_raw +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x847d4a76 st_sensors_debugfs_reg_access +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x89793248 st_sensors_set_dataready_irq +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x8e6c5895 st_sensors_validate_device +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xa036839e st_sensors_verify_id +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xa3c68ebd st_sensors_power_disable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xa50053b9 st_sensors_power_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xa6a7d309 st_sensors_dev_name_probe +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xbf67adc7 st_sensors_sysfs_scale_avail +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xc7172fa7 st_sensors_sysfs_sampling_frequency_avail +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xd1ff04d2 st_sensors_set_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xd737fd54 st_sensors_set_fullscale_by_gain +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0x66cc5701 st_sensors_i2c_configure +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_spi 0xe46ef946 st_sensors_spi_configure +EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0x1d73125e mpu3050_dev_pm_ops +EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0x54332518 mpu3050_common_remove +EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0xc1f04988 mpu3050_common_probe +EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x32cde630 st_gyro_common_probe +EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x7b6bc0e8 st_gyro_get_settings +EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0xc6e90870 st_gyro_common_remove +EXPORT_SYMBOL drivers/iio/humidity/hts221 0x196b96cd hts221_pm_ops +EXPORT_SYMBOL drivers/iio/humidity/hts221 0x8be6d653 hts221_probe +EXPORT_SYMBOL drivers/iio/imu/adis_lib 0x5cc4f8cf adis_enable_irq +EXPORT_SYMBOL drivers/iio/imu/adis_lib 0x7bfc8aaa adis_debugfs_reg_access +EXPORT_SYMBOL drivers/iio/imu/bmi160/bmi160_core 0xc18b7869 bmi160_regmap_config EXPORT_SYMBOL drivers/iio/imu/bmi160/bmi160_core 0xca19cfae bmi160_enable_irq -EXPORT_SYMBOL drivers/iio/imu/fxos8700_core 0x72160a86 fxos8700_regmap_config -EXPORT_SYMBOL drivers/iio/imu/st_lsm6dsx/st_lsm6dsx 0x4d82e595 st_lsm6dsx_probe -EXPORT_SYMBOL drivers/iio/imu/st_lsm6dsx/st_lsm6dsx 0x8ba5ffc3 st_lsm6dsx_pm_ops -EXPORT_SYMBOL drivers/iio/industrialio 0x094dfbcd __iio_device_register -EXPORT_SYMBOL drivers/iio/industrialio 0x095fac8f iio_read_const_attr -EXPORT_SYMBOL drivers/iio/industrialio 0x0a1aa25d iio_trigger_poll -EXPORT_SYMBOL drivers/iio/industrialio 0x0dda69f4 iio_trigger_free -EXPORT_SYMBOL drivers/iio/industrialio 0x11c21517 iio_get_time_ns -EXPORT_SYMBOL drivers/iio/industrialio 0x1eebaf49 iio_trigger_notify_done -EXPORT_SYMBOL drivers/iio/industrialio 0x25341826 iio_trigger_validate_own_device -EXPORT_SYMBOL drivers/iio/industrialio 0x2539b510 iio_buffer_init -EXPORT_SYMBOL drivers/iio/industrialio 0x2d3845fa iio_device_unregister +EXPORT_SYMBOL drivers/iio/imu/fxos8700_core 0xb397d830 fxos8700_regmap_config +EXPORT_SYMBOL drivers/iio/imu/st_lsm6dsx/st_lsm6dsx 0x4ae2a931 st_lsm6dsx_pm_ops +EXPORT_SYMBOL drivers/iio/imu/st_lsm6dsx/st_lsm6dsx 0x9fd0837d st_lsm6dsx_probe +EXPORT_SYMBOL drivers/iio/industrialio 0x02cb362c iio_trigger_using_own +EXPORT_SYMBOL drivers/iio/industrialio 0x0cb4d792 iio_buffer_init +EXPORT_SYMBOL drivers/iio/industrialio 0x11605c54 iio_get_time_res +EXPORT_SYMBOL drivers/iio/industrialio 0x1379975a iio_push_event +EXPORT_SYMBOL drivers/iio/industrialio 0x217bf6c2 iio_trigger_unregister EXPORT_SYMBOL drivers/iio/industrialio 0x2d6bcdcb iio_trigger_generic_data_rdy_poll -EXPORT_SYMBOL drivers/iio/industrialio 0x5477c172 iio_bus_type -EXPORT_SYMBOL drivers/iio/industrialio 0x65d5c4a6 __iio_trigger_register -EXPORT_SYMBOL drivers/iio/industrialio 0x75bcbfb9 iio_trigger_poll_chained -EXPORT_SYMBOL drivers/iio/industrialio 0x75c063cc iio_trigger_set_immutable -EXPORT_SYMBOL drivers/iio/industrialio 0x7aedec71 iio_push_event -EXPORT_SYMBOL drivers/iio/industrialio 0x7c44f174 iio_read_mount_matrix -EXPORT_SYMBOL drivers/iio/industrialio 0x838dc42c iio_get_time_res -EXPORT_SYMBOL drivers/iio/industrialio 0xa17c000f iio_trigger_alloc -EXPORT_SYMBOL drivers/iio/industrialio 0xadfd2910 iio_trigger_unregister -EXPORT_SYMBOL drivers/iio/industrialio 0xaffcf84c iio_device_get_clock -EXPORT_SYMBOL drivers/iio/industrialio 0xc0b3d9fb iio_device_set_clock +EXPORT_SYMBOL drivers/iio/industrialio 0x2d7961c6 __iio_trigger_register +EXPORT_SYMBOL drivers/iio/industrialio 0x38838ec7 iio_device_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0x39a822d1 iio_trigger_free +EXPORT_SYMBOL drivers/iio/industrialio 0x4c8a6a3b iio_trigger_poll_chained +EXPORT_SYMBOL drivers/iio/industrialio 0x5263b92a iio_trigger_poll +EXPORT_SYMBOL drivers/iio/industrialio 0x609158f6 iio_device_get_clock +EXPORT_SYMBOL drivers/iio/industrialio 0x7137bc04 __iio_device_register +EXPORT_SYMBOL drivers/iio/industrialio 0x759d62df iio_get_time_ns +EXPORT_SYMBOL drivers/iio/industrialio 0x790671bd iio_trigger_notify_done +EXPORT_SYMBOL drivers/iio/industrialio 0x7cfe4f42 iio_trigger_set_immutable +EXPORT_SYMBOL drivers/iio/industrialio 0x864f36fe iio_trigger_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0x88b0b3a8 iio_trigger_validate_own_device +EXPORT_SYMBOL drivers/iio/industrialio 0x8a542a03 iio_read_mount_matrix +EXPORT_SYMBOL drivers/iio/industrialio 0xa36c5238 iio_device_set_clock +EXPORT_SYMBOL drivers/iio/industrialio 0xb297ef91 iio_bus_type +EXPORT_SYMBOL drivers/iio/industrialio 0xb3121668 iio_device_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0xd09d1ba1 iio_device_free +EXPORT_SYMBOL drivers/iio/industrialio 0xdf64bf15 iio_read_const_attr EXPORT_SYMBOL drivers/iio/industrialio 0xdf76bbeb iio_pollfunc_store_time -EXPORT_SYMBOL drivers/iio/industrialio 0xf21c0e6c iio_device_alloc -EXPORT_SYMBOL drivers/iio/industrialio 0xf50f6458 iio_trigger_using_own -EXPORT_SYMBOL drivers/iio/industrialio 0xf64cf83a iio_device_free -EXPORT_SYMBOL drivers/iio/industrialio-configfs 0x154f0665 iio_configfs_subsys -EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x233c4894 iio_unregister_sw_device_type -EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x597284f7 iio_sw_device_destroy -EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x7b1f0964 iio_register_sw_device_type -EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x8f2c45a8 iio_sw_device_create -EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x126bb27c iio_sw_trigger_destroy -EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x211db3d3 iio_register_sw_trigger_type -EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x5a8c6e02 iio_unregister_sw_trigger_type -EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0xf7bcc3b7 iio_sw_trigger_create -EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0xa3502698 iio_triggered_event_cleanup -EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0xedaa662d iio_triggered_event_setup -EXPORT_SYMBOL drivers/iio/light/st_uvis25_core 0x60082c15 st_uvis25_probe -EXPORT_SYMBOL drivers/iio/light/st_uvis25_core 0xdb782469 st_uvis25_pm_ops -EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0x155790da bmc150_magn_regmap_config -EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0x1c3ad375 bmc150_magn_remove -EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0x697e635e bmc150_magn_pm_ops -EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0x9b3098ea bmc150_magn_probe -EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0x151ee9a4 hmc5843_common_remove -EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0xaba2bd4a hmc5843_common_probe -EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0xdcc45b15 hmc5843_common_suspend -EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0xf579e705 hmc5843_common_resume -EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x0bb0b399 st_magn_common_remove -EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x522a763d st_magn_common_probe -EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0xb0a2ed1e st_magn_get_settings -EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x2c9b7ed9 bmp280_regmap_config -EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x6fe112e3 bmp280_common_probe -EXPORT_SYMBOL drivers/iio/pressure/bmp280 0xc61da3bb bmp180_regmap_config -EXPORT_SYMBOL drivers/iio/pressure/bmp280 0xd1220f2d bmp280_dev_pm_ops -EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0x23507c2d ms5611_remove -EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0x923755a2 ms5611_probe -EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x56d4a418 st_press_common_remove -EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x6c308918 st_press_get_settings -EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0xcad50af0 st_press_common_probe -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x2169c06e ib_send_cm_req -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x21bbdfc6 ib_send_cm_dreq -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x255f8212 ib_send_cm_sidr_rep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x26e79f46 ib_send_cm_mra -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x35c0ecac ib_send_cm_rej -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x594ede3e ib_cm_init_qp_attr +EXPORT_SYMBOL drivers/iio/industrialio-configfs 0xbbfc2a7e iio_configfs_subsys +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x4c66cae2 iio_register_sw_device_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x7c923a52 iio_unregister_sw_device_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x9d199a92 iio_sw_device_destroy +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0xf9e9c547 iio_sw_device_create +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x6d57479a iio_sw_trigger_destroy +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x794859c8 iio_sw_trigger_create +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0xaf8ee624 iio_unregister_sw_trigger_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0xe4c3181a iio_register_sw_trigger_type +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x49496a2b iio_triggered_event_cleanup +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0xf15b3610 iio_triggered_event_setup +EXPORT_SYMBOL drivers/iio/light/st_uvis25_core 0x41620f9c st_uvis25_probe +EXPORT_SYMBOL drivers/iio/light/st_uvis25_core 0x4c0b0dfa st_uvis25_pm_ops +EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0x2ca67591 bmc150_magn_regmap_config +EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0x37073bdc bmc150_magn_probe +EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0xb02ef775 bmc150_magn_pm_ops +EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0xd07b94f3 bmc150_magn_remove +EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0x15fe2dfd hmc5843_common_remove +EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0x34358ffa hmc5843_common_probe +EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0x9811101b hmc5843_common_resume +EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0xd3c9df80 hmc5843_common_suspend +EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x5682085c st_magn_common_probe +EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x82896aed st_magn_common_remove +EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0xea9f0b49 st_magn_get_settings +EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x106559df bmp280_dev_pm_ops +EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x3fd99a43 bmp280_regmap_config +EXPORT_SYMBOL drivers/iio/pressure/bmp280 0xbe18141d bmp280_common_probe +EXPORT_SYMBOL drivers/iio/pressure/bmp280 0xd55f4721 bmp180_regmap_config +EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0x0eb8bc22 ms5611_remove +EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0x85ac23b8 ms5611_probe +EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x3f0d2997 st_press_common_remove +EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x996570a9 st_press_get_settings +EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0xbf5c474c st_press_common_probe +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x07a558ad ib_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x09713d16 ib_send_cm_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x2d978b97 ib_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x2e02794c ib_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x4c1d208f ib_send_cm_mra +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x622c8d54 ib_send_cm_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x63921031 ib_send_cm_rtu EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x69824a14 ibcm_reject_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x6c1ecbc0 ib_send_cm_sidr_req -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x83b5850a ib_create_cm_id -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x9c5f68b8 ib_cm_insert_listen -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x9c600723 ib_cm_notify -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xb12d470c ib_send_cm_drep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xb4cf74a9 ib_send_cm_rep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xcfb981fd ib_destroy_cm_id -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xd3f2d2aa ib_send_cm_rtu -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xfbde28e3 ib_cm_listen -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x01e4a951 ib_query_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x028b3efb rdma_get_gid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x02e87361 __ib_create_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x07cc8821 ib_dealloc_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x07f05535 ib_get_cached_subnet_prefix -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0825e813 ib_dispatch_event -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x08df0762 ib_alloc_xrcd_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x099578de rdma_move_grh_sgid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0a05f100 ib_drain_rq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0b32e3b6 ib_unregister_device_queued -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0bcc76ab ib_alloc_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c16af67 rdma_restrack_add -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0e0fbe2e rdma_user_mmap_entry_insert -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x11ee9d4b ib_port_unregister_client_groups -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x144ef046 rdma_init_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x15f114e3 ib_destroy_qp_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x16e9eefb ib_register_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x175d9977 ib_port_sysfs_get_ibdev_kobj -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x183c8183 rdma_restrack_parent_name +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x69a5ba0f ib_cm_insert_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x6a22dd41 ib_send_cm_rej +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x8e0c3d33 ib_send_cm_drep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xa98b7fa7 ib_send_cm_sidr_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xe4e3824c ib_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xee3c2f3a ib_send_cm_sidr_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xf122d04a ib_send_cm_dreq +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xf2e9f6df ib_cm_notify +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x015d052a ib_unregister_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0283976c rdma_port_get_link_layer +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x06ba418a ib_dealloc_pd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x07bfe114 ib_get_rmpp_segment +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x09d3f9b0 ib_drain_sq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0ad9e4db ib_advise_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0af5f4fd ib_find_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c1f7d14 ib_mr_pool_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0d1237f0 ib_qp_usecnt_dec +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0f004435 ib_device_get_by_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0f6aa037 ib_mr_pool_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0fadcd4b ib_detach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x12c5c445 rdma_query_gid_table +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1376c718 ib_create_qp_kernel +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x157625dc rdma_nl_put_driver_u64 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x15874558 rdma_rw_ctx_wrs +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x167724a5 rdma_create_ah EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x184621a4 ib_get_rdma_header_version -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1bb671d6 ib_create_qp_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1f36aacc ib_process_cq_direct -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1f46371b ib_register_mad_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x28a32d03 rdma_query_gid_table -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2a379710 ib_create_qp_security -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2a534535 ib_mr_pool_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2b9ec56a ib_unregister_mad_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2edff4b2 _ib_alloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x18541979 rdma_nl_stat_hwcounter_entry +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1c761d8f rdma_move_grh_sgid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x20a95af0 roce_gid_type_mask_support +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x21678595 ib_get_net_dev_by_params +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2532f648 rdma_user_mmap_entry_insert_range +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2651f93e ib_alloc_mr_integrity +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x26e6b5ef ib_device_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x27b60f5a rdma_nl_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x29a171eb rdma_translate_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2bb0e19d ib_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2db4d38a ib_qp_usecnt_inc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2e4d67f4 ibnl_put_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2f109fc0 ibdev_printk EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2f384613 ib_modify_qp_is_ok -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2f76e61c ib_map_mr_sg_pi EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2fc70b9e ib_get_gids_from_rdma_hdr EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x305e5701 rdma_addr_size_kss -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3070dd2a ib_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x311836b1 rdma_rw_ctx_post -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x312de9a5 ib_create_ah_from_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x32100ac9 ib_init_ah_from_mcmember -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x324c80f7 ib_dereg_mr_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x338bb78e ib_modify_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x384400a7 rdma_read_gid_l2_fields -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x390ddd8b ib_dealloc_pd_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x39ec92a4 rdma_restrack_get_byid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3d111a16 ib_resize_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3d3d35d3 ib_sa_path_rec_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3d8f7428 rdma_read_gid_hw_context -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3e5462f1 __ib_alloc_pd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3f4594bb rdma_nl_put_driver_u64 -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3f624252 ib_create_srq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3f75e0d4 rdma_query_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x30802eb1 ib_init_ah_from_mcmember +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x31efefbe rdma_user_mmap_entry_insert +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x32188cf0 ib_resize_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3239f1ab rdma_restrack_count +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x32a21536 ibdev_crit +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x33b75b40 ib_free_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x35f12491 __ib_alloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x36184883 ibdev_info +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x367eef97 ib_set_vf_guid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x39658a31 ib_query_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x39c52e39 ib_modify_qp_with_udata +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3a8c3b70 ibdev_alert +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3ae8a6ee rdma_nl_put_driver_u32_hex +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3ccfa0ca ib_unregister_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3d0374f2 rdma_destroy_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3f2b3006 ib_unregister_client EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3fc2387c ib_ud_header_unpack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4071326d rdma_user_mmap_io -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x411f91dd rdma_copy_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x41746de9 rdma_query_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x418377e5 ib_cq_pool_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x418d4897 ib_device_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x42f30744 ib_reg_user_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x40020647 rdma_read_gid_l2_fields +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x41652399 ib_port_register_client_groups +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x41bc9112 ib_port_immutable_read +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x42cd5860 ib_process_cq_direct EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x434c5d10 zgid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4363c498 ib_get_rmpp_segment -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x43a5461d rdma_rw_mr_factor -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x45a63474 rdma_restrack_new +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x43823e2d ib_destroy_srq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x43de82eb ib_attach_mcast EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x45fb8985 rdma_nl_chk_listeners -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4666833a rdma_restrack_count -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x49b0f566 rdma_user_mmap_entry_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x49e17e22 rdma_copy_src_l2_addr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4c29951c rdma_nl_put_driver_u64_hex -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4ca3fe5b rdma_rw_ctx_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4a9af124 rdma_restrack_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 0x4f8bdb49 rdma_nl_put_driver_string -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x50806fd0 rdma_resolve_ip -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x50fb10c2 rdma_read_gid_attr_ndev_rcu -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x51c655cc ib_sa_join_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x51ea28bb ib_free_recv_mad EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x520b2638 ib_pack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x53aaf522 rdma_restrack_set_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x52cfb1f4 ib_register_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x544adde5 rdma_restrack_parent_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x55110d4c ib_init_ah_attr_from_wc EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x55bb02f3 ib_cache_gid_type_str -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x566909ec ib_sa_guid_info_rec_query -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5ccb7f5f ib_dealloc_xrcd_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5e826b09 rdma_find_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5ee013ac ib_get_cached_lmc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x60317475 ib_modify_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x60a6fb1a ib_post_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x55f6d18e ib_close_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x56015cdd ib_get_eth_speed +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x57896344 rdma_user_mmap_entry_get_pgoff +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x586fa90e ib_create_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x58706dd1 rdma_restrack_add +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5a10c76f rdma_read_gid_hw_context +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5a677d81 rdma_alloc_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5be88aef ib_free_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5c22d6e7 rdma_rw_ctx_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5c7f0717 ib_sg_to_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5d3d9dac rdma_restrack_get_byid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5d9ae00a ib_sa_guid_info_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5dcfbaed ib_dereg_mr_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5de657c1 ib_map_mr_sg_pi +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5e5bfe70 _ib_alloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5ee622af rdma_umap_priv_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x605a5c6d rdma_nl_unicast_wait 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 0x64a816b3 ib_drain_sq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x63d702bc ibdev_warn +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x64c0eef2 ib_alloc_mr EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6581ca90 ib_sa_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6a5bde42 ib_device_get_by_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6a5eda81 ib_port_immutable_read -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6aa7b37b rdma_move_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x66500106 ib_destroy_cq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x67eb4ef8 ib_get_cached_port_state +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x681ec04f ib_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6a16c5dd ib_cq_pool_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6a94dba1 ib_sa_get_mcmember_rec EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b958320 ib_ud_ip4_csum -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6c159dc7 rdma_replace_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6d2d3626 __ib_alloc_cq_any -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6d573049 rdma_rw_ctx_signature_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6db4cb65 rdma_nl_register EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f3614b6 rdma_is_zero_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f69ae48 rdma_put_gid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7166ecbb rdma_restrack_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x71fea7f9 rdma_nl_register -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7466b5d7 ib_sa_get_mcmember_rec -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x751e4870 ib_cq_pool_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f6f1452 __ib_alloc_cq_any +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7013fdb5 ib_get_vf_guid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x71f78d39 ib_rdmacg_uncharge +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x72c72c9b rdma_restrack_set_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x73d1aa9a ib_port_sysfs_get_ibdev_kobj +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x741e2aae rdma_link_unregister +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x74abc172 ib_register_device EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x75a729a0 rdma_nl_unregister -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7622fbe9 ib_open_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7784a289 rdma_resolve_ip EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x787ccc4c ib_get_mad_data_offset -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x78bb4c2f ib_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x78d4d8da rdma_restrack_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7afd0b1a rdma_restrack_del -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7d1904a6 rdma_nl_unicast_wait -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7e92946a ibdev_warn -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7f128d42 ib_drain_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7f9dcc7a rdma_hold_gid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x83f21d43 ib_register_event_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x842b8b60 ib_find_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8473b428 rdma_user_mmap_entry_remove -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8559e798 rdma_alloc_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7895b41c ib_destroy_wq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x79ecd206 ib_cq_pool_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7a8dd245 rdma_destroy_ah_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7adeffa5 __ib_alloc_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7c9dd43f __ib_create_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7d3b9d4d ib_find_exact_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x80698c51 ib_device_get_by_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x826b4e59 rdma_set_cq_moderation +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x83ef7072 rdma_put_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x852d2b79 rdma_nl_put_driver_string +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x86c9f242 rdma_get_gid_attr EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x86cef180 rdma_addr_size -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x87d7c810 ib_find_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x880fab2d rdma_nl_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x88ba75cc ib_create_qp_kernel -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x88d84549 rdma_rw_ctx_wrs -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8ae18945 rdma_create_user_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8e19c427 rdma_rw_ctx_destroy_signature -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8e7c21d4 ib_device_set_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8e9a36b7 ib_qp_usecnt_inc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8eff1206 ib_query_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8f1af4d2 ib_sg_to_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8f385e7a ib_unregister_event_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8fdfd8f6 ib_unregister_device_and_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x887425ba rdma_restrack_new +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x893e815c ib_get_vf_config +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8f075524 ib_get_device_fw_str EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90e807c7 ib_cache_gid_parse_type_str -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90f0aef9 ibdev_notice -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x91b25fa1 ib_check_mr_status -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x92131e10 ibdev_info -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9250d75a ib_get_vf_stats -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x92f64a37 ibnl_put_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x938eeb70 ib_init_ah_attr_from_path -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x947515b5 ib_attach_mcast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x94b8a16b rdma_nl_unicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x968db12a ib_create_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x97f85f20 rdma_set_cq_moderation -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9b9899ed ib_get_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9ba76b5c ibdev_crit -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9bd586f7 rdma_destroy_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9e316d48 ibdev_emerg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa1243d79 rdma_find_gid_by_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90f508ca ib_sa_path_rec_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x91b05e2d ib_reg_user_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x92009aeb rdma_query_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x92da0095 ib_modify_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x94a80ae8 ib_sa_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x97919a20 ib_set_device_ops +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9ac09a47 ib_dealloc_xrcd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9b996341 rdma_user_mmap_entry_remove +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9c30a29c ib_mad_kernel_rmpp_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9cd0802d ib_modify_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9d029956 rdma_rw_mr_factor +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa035f98d rdma_find_gid_by_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa09a6bab ib_init_ah_attr_from_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa51a3a55 ib_post_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa5ffbe66 ib_drain_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa61e53b4 ib_find_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa681c576 ib_get_cached_subnet_prefix +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa782f763 ib_unregister_device_queued EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa7c4c123 ib_sa_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaaaa3d6b ibdev_err -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xabbc7478 ib_map_mr_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa836f3a7 rdma_restrack_del +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa89b4887 rdma_rw_ctx_destroy_signature +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa932b010 ib_get_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xab3179fa ib_register_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xab4b9297 rdma_rw_ctx_signature_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xac431425 ib_mr_pool_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xac9e9611 ib_dealloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae0f0847 ib_mr_pool_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae3cf2d6 ib_create_ah_from_wc EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae956dce ib_rate_to_mult -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae97ff65 rdma_user_mmap_entry_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaf6a358f ib_alloc_mr_integrity EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaf9179c0 __rdma_block_iter_next -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb156f5e5 ibdev_printk +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb16876e0 ib_drain_rq EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb1a312e1 ib_unpack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb1beab58 rdma_destroy_ah_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb2ec38d7 rdma_roce_rescan_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb351c3f1 ib_find_exact_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb1a35682 ibdev_err +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb3048f85 rdma_rw_ctx_destroy EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb36e4148 ib_sa_pack_path -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb503fd85 rdma_nl_put_driver_u32 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb384f0de ib_modify_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb3e26b9e rdma_copy_src_l2_addr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb617f4c7 ib_rdmacg_try_charge +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb626639a rdma_restrack_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb664f105 rdma_query_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb6938dc0 ib_query_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb6a9a973 ib_port_unregister_client_groups +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb6f11c01 rdma_copy_ah_attr EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb7852a05 ib_ud_header_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb7f521cc ib_mr_pool_destroy -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbaa94aa5 roce_gid_type_mask_support -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbb6dac3a ib_unregister_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbb87d3ca ib_get_eth_speed -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbb95ba60 ib_mad_kernel_rmpp_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbc076c5c ib_get_vf_config -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbc4d3c82 ib_device_get_by_name -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbc6735aa ib_rdmacg_uncharge -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc22e2de7 ib_qp_usecnt_dec -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc29754e5 rdma_umap_priv_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb7bbfda0 ib_set_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb82362e6 ib_get_cached_lmc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb83c8740 ib_check_mr_status +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb8e593f5 ib_set_vf_link_state +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xba01a2a0 ib_create_qp_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbb18f2cb ib_alloc_xrcd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbcd8c0f2 rdma_user_mmap_io +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbdd08a8f rdma_modify_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbdf7caee rdma_read_gid_attr_ndev_rcu +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc213b76c rdma_create_user_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc21e2b38 ib_dispatch_event EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc386f007 __rdma_block_iter_start -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc4d2827c ib_query_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc545a9e0 rdma_addr_cancel -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc67f7119 ib_mr_pool_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc6bdfec5 rdma_user_mmap_entry_insert_range -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc71677ca ib_get_net_dev_by_params -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xca19c108 ib_find_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcb62b538 ib_get_cached_port_state -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcc1bd4a5 ib_rdmacg_try_charge -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcd4f79aa ib_get_vf_guid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcd59b342 ib_init_ah_attr_from_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xce34485b rdma_dev_access_netns -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xce4a0620 ib_close_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc530f2de rdma_hold_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc5fe7b76 ib_query_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc674d1e1 ib_destroy_qp_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc678aff7 ib_unregister_device_and_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcb890d8f ib_device_set_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcb92d754 rdma_nl_put_driver_u64_hex +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcc0c92e5 rdma_nl_unicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcc219cc9 ibdev_notice +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcdfc5d0d ib_map_mr_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xce103e15 rdma_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xce3ec25e ib_get_vf_stats +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xce5187e8 rdma_link_register +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcef540ad ib_open_qp EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcfbc053b ib_unregister_driver -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd0cfb8c8 ib_get_device_fw_str -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd0e35432 ib_modify_qp_with_udata -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd1e6f4f8 rdma_nl_put_driver_u32_hex -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd2e7b362 ib_free_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd305eaae ib_create_wq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd3fc4afc ib_free_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd41ffa90 rdma_create_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd10556f3 rdma_addr_cancel EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd6636ca6 rdma_addr_size_in6 -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd7d7b0b7 ib_destroy_wq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd901a005 ib_modify_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd9304018 ib_set_device_ops -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda074d15 ib_query_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd7a62203 rdma_init_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd86639dd ib_modify_qp EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda0d50ec ib_sa_cancel_query -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda245bd5 rdma_rw_ctx_destroy -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdeef3cfd rdma_translate_ip -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe09b1671 ib_mr_pool_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe274bcfd ib_modify_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe37a6a63 rdma_modify_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe38712f8 ibdev_alert -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe4ed00f1 __ib_alloc_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdbb9c880 ibdev_emerg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdc7aca04 ib_query_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdcd1f120 ib_unregister_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdedcf55a rdma_dev_access_netns +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe310710c rdma_replace_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe3b9e173 rdma_user_mmap_entry_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe4969b8c rdma_nl_put_driver_u32 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe522e3ba ib_free_recv_mad EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5840ec6 ib_wc_status_msg EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5a78c1e ib_sa_unpack_path -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe6c830b7 ib_set_client_data EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe7b52e5f mult_to_ib_rate -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe87006e1 rdma_user_mmap_entry_get_pgoff -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe985c06e ib_destroy_srq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9e6515a rdma_link_register +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe83424ef ibnl_put_attr EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9e799fc ib_ud_header_pack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xebbb0991 ib_set_vf_link_state -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeec824d2 rdma_port_get_link_layer -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xef116d8b ib_advise_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf171ab37 ib_modify_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf190058c rdma_link_unregister -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf1f3588e ib_set_vf_guid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xec307f4b rdma_rw_ctx_post +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf168c607 ib_create_srq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf184df99 rdma_move_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf40bb0a5 ib_modify_mad EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf5dedb30 rdma_node_get_transport EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf6ed3334 ib_event_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf75a908a rdma_nl_stat_hwcounter_entry -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf770ea14 ib_destroy_cq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfa95d627 ib_detach_mcast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfe33b0cd ibnl_put_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfe699ad1 ib_port_register_client_groups -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x0bbc4cd7 uverbs_fd_class -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x0eebd170 uverbs_get_flags32 -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1420b1c4 _uverbs_get_const_unsigned -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x180b2704 ib_umem_activate_invalidation_notifier -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1b1d71b6 uverbs_finalize_uobj_create +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf6f62c6f ib_create_wq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfde987d9 rdma_user_mmap_entry_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfed66753 ib_create_qp_security +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xff343eb0 rdma_roce_rescan_device +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x01096f1e ib_copy_qp_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x055eb130 ib_uverbs_get_ucontext_file +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x059b838f ib_umem_activate_invalidation_notifier +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x0e7201e5 uverbs_destroy_def_handler EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1b54bd5d ib_copy_path_rec_from_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x2065cdec flow_resources_alloc -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x214ad9f9 ib_umem_dmabuf_map_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x29e77527 uverbs_uobject_put -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x2f91db32 ib_umem_odp_alloc_implicit -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x319d14dc ib_umem_odp_release -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x3c68fb10 ib_umem_odp_unmap_dma_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x446e030c ib_umem_odp_get -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x53f957f4 ib_copy_ah_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1da222a0 ib_umem_odp_alloc_implicit +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1f3d2831 uverbs_get_flags32 +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x27cbe375 ib_copy_ah_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x2de68831 flow_resources_add +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x2e4fc2df ib_register_peer_memory_client +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x3610a5c0 uverbs_fd_class +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x4d729178 ib_umem_dmabuf_unmap_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5e949480 ib_umem_get EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x63057f4b ib_copy_path_rec_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x6a3d932b _uverbs_get_const_signed -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x6f2b30b5 uverbs_idr_class -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x70badabf ib_umem_odp_alloc_child -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7c89db42 _uverbs_alloc -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7e0ee82e ib_register_peer_memory_client -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x81c3b5c9 ib_umem_copy_from -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x81f07cfe uverbs_copy_to -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x9160faaf uverbs_uobject_fd_release -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x9efc08c6 ib_umem_odp_map_dma_and_lock -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x9fccc5ed ib_umem_get_peer -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa1e8d1a1 ib_uverbs_flow_resources_free -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa6a90e26 ib_umem_find_best_pgsz -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xaa276936 ib_umem_release -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xaf002958 ib_umem_dmabuf_unmap_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb044aa4a uverbs_destroy_def_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x65640cd4 uverbs_uobject_fd_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7246d267 uverbs_copy_to_struct_or_zero +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x77ee0d93 uverbs_copy_to +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7c17c694 ib_umem_dmabuf_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x801d97f8 ib_umem_odp_map_dma_and_lock +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x843d2ed4 uverbs_uobject_put +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x963d9798 ib_uverbs_flow_resources_free +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb4111fc7 ib_umem_odp_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb50a5716 _uverbs_get_const_unsigned +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb80c7621 ib_umem_copy_from +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xbad47857 flow_resources_alloc EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xbde5c050 ib_unregister_peer_memory_client -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xce992a03 uverbs_copy_to_struct_or_zero -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xda0503da ib_uverbs_get_ucontext_file -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xde77f591 ib_umem_get -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe5d131ec uverbs_get_flags64 -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xed9fe540 flow_resources_add -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf3709d9e ib_umem_stop_invalidation_notifier -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf7c8879d ib_umem_dmabuf_get -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xfeea48af ib_copy_qp_attr_to_user -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x2fd178bf iw_cm_disconnect -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x4517cfac iw_destroy_cm_id -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x4e7f019d iw_create_cm_id -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x64d59ee2 iw_cm_connect -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6e2b94b5 iw_cm_listen -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x709da47c iw_cm_reject -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x7c69a849 iw_cm_accept -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xb5c5b45a iw_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc9bade4a uverbs_finalize_uobj_create +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xcd610043 ib_umem_stop_invalidation_notifier +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xcf47b39a ib_umem_odp_unmap_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd0bdfbcd _uverbs_get_const_signed +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd1682cd9 ib_umem_dmabuf_map_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd1d07e89 ib_umem_odp_alloc_child +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd7854b3c ib_umem_odp_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xdbe1408e ib_umem_find_best_pgsz +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xdd10e215 uverbs_get_flags64 +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xecc5199b uverbs_idr_class +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xee81386e ib_umem_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf8017936 _uverbs_alloc +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xfd31bd80 ib_umem_get_peer +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x28c008b1 iw_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x60d79401 iw_cm_accept +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x7984b3c0 iw_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xacfa67b9 iw_cm_connect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xdc503474 iw_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xe55fde1c iw_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xe8c57cd1 iw_cm_reject +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf0a4552e iw_cm_disconnect EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf3df871f iwcm_reject_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0ef8258e rdma_reject_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x17238603 rdma_destroy_qp -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1c542578 __rdma_create_kernel_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x21ac6716 rdma_create_user_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x22fab7a6 rdma_set_ib_path -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x24814716 rdma_res_to_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x27ba0858 rdma_connect -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2ab1854d rdma_resolve_route -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2f693eb2 rdma_accept_ece -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x43776c8a rdma_get_service_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x461b6848 rdma_resolve_addr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5f00b9f4 rdma_leave_multicast -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6548fda1 rdma_disconnect -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6f2eb29f rdma_set_ack_timeout -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x86c2d287 rdma_bind_addr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x89859b2f rdma_read_gids +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x05fbe47d rdma_accept_ece +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0cc5fffd rdma_leave_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0f50e9e3 rdma_connect_ece +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x179418e3 rdma_destroy_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x276b873c rdma_bind_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4273df17 rdma_reject +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x468f2424 rdma_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4aebcc78 rdma_set_reuseaddr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x50dec478 __rdma_create_kernel_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x51097c56 rdma_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x57c42a7a rdma_unlock_handler +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x69bab2f8 rdma_accept +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7067a993 rdma_iw_cm_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x729c184b rdma_set_ack_timeout +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x78783881 rdma_res_to_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x86c6d8b6 rdma_set_min_rnr_timer EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa0f72c5d rdma_listen -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa5ba2d97 rdma_destroy_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb96351f1 rdma_reject -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xbd8a98cf rdma_consumer_reject_data -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc01f63cc rdma_set_afonly -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc35b375e rdma_connect_locked -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc77fc592 rdma_set_reuseaddr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd1f00b8e rdma_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd2262674 rdma_accept -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd5f1f30f rdma_notify -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd8fc4611 rdma_lock_handler -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xdb091e88 rdma_unlock_handler -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xddb95cea rdma_set_min_rnr_timer -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xdfa0e1a8 rdma_create_qp -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe16db85e rdma_iw_cm_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf74b1aed rdma_join_multicast -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf7be6d79 rdma_connect_ece -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf9cce0f0 rdma_set_service_type -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x1e286811 rtrs_clt_get_permit -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x3c835147 rtrs_clt_request -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x4548f0f3 rtrs_clt_put_permit -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x59350b3a rtrs_clt_query -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xaa46dc22 rtrs_clt_close -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xdbdd5b61 rtrs_clt_rdma_cq_direct -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xef80020f rtrs_clt_open +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x94d15310 rdma_resolve_route +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9eb028aa rdma_read_gids +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa4b9c4ce rdma_listen +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa848d210 rdma_create_user_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa8898d89 rdma_disconnect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb972dcf7 rdma_set_ib_path +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xbb79b0be rdma_connect_locked +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xbbdef42d rdma_connect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xbf62031b rdma_set_service_type +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc0d6b4ce rdma_consumer_reject_data +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc9203302 rdma_notify +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd63c0b46 rdma_get_service_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd9619b55 rdma_set_afonly +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe56a568a rdma_lock_handler +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xea731c38 rdma_create_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xeb368d6b rdma_reject_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf33fe547 rdma_resolve_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf4f8fa7f rdma_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x42aabae3 rtrs_clt_request +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x47f5c086 rtrs_clt_get_permit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x8c14c4c9 rtrs_clt_close +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x96bbf225 rtrs_clt_put_permit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xab2ff0a0 rtrs_clt_query +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xaf7d6e3b rtrs_clt_rdma_cq_direct +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xd2e295ea rtrs_clt_open EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x2510363a sockaddr_to_str +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x59f1578a rtrs_ib_dev_find_or_add +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x62c8a596 rtrs_ib_dev_put EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x67029a33 rtrs_addr_to_sockaddr -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x6ada218b rtrs_ib_dev_put -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x85f37159 rtrs_rdma_dev_pd_init EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x926b41e5 rtrs_addr_to_str -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xda35d2fe rtrs_ib_dev_find_or_add -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xdcac105b rtrs_rdma_dev_pd_deinit -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x054bd469 rtrs_srv_resp_rdma -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x507606ac rtrs_srv_get_queue_depth -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x926c0dca rtrs_srv_close -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xeab1316a rtrs_srv_get_sess_name -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xee9979b7 rtrs_srv_open -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xff9c574b rtrs_srv_set_sess_priv -EXPORT_SYMBOL drivers/input/gameport/gameport 0x0baf00b1 gameport_stop_polling -EXPORT_SYMBOL drivers/input/gameport/gameport 0x169cc89b gameport_start_polling -EXPORT_SYMBOL drivers/input/gameport/gameport 0x282f76cd gameport_unregister_port -EXPORT_SYMBOL drivers/input/gameport/gameport 0x337c0cfa gameport_close -EXPORT_SYMBOL drivers/input/gameport/gameport 0x51a8b0ea __gameport_register_driver -EXPORT_SYMBOL drivers/input/gameport/gameport 0xd3f9f371 gameport_open -EXPORT_SYMBOL drivers/input/gameport/gameport 0xe1a5cf74 gameport_set_phys -EXPORT_SYMBOL drivers/input/gameport/gameport 0xece0d3eb __gameport_register_port -EXPORT_SYMBOL drivers/input/gameport/gameport 0xecee431e gameport_unregister_driver -EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x2ac4bfef iforce_process_packet -EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0xc86b245f iforce_send_packet -EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0xce1abd9b iforce_init_device -EXPORT_SYMBOL drivers/input/matrix-keymap 0xb8f5e487 matrix_keypad_build_keymap -EXPORT_SYMBOL drivers/input/misc/ad714x 0xa3d9bbb8 ad714x_enable -EXPORT_SYMBOL drivers/input/misc/ad714x 0xbff584f3 ad714x_probe -EXPORT_SYMBOL drivers/input/misc/ad714x 0xc60852bb ad714x_disable -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x4d9fbe25 cma3000_init +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xcec511d6 rtrs_rdma_dev_pd_deinit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xee7c16e2 rtrs_rdma_dev_pd_init +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x0a29a522 rtrs_srv_set_sess_priv +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x3129fcba rtrs_srv_get_queue_depth +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x6263661c rtrs_srv_get_sess_name +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x799c20c5 rtrs_srv_close +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xb1c27f3f rtrs_srv_resp_rdma +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xb8790994 rtrs_srv_open +EXPORT_SYMBOL drivers/input/gameport/gameport 0x1cf6a517 __gameport_register_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0x214b4a0c gameport_unregister_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0x46a8bae7 gameport_unregister_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0x5bdd65fa gameport_close +EXPORT_SYMBOL drivers/input/gameport/gameport 0x5c3b50d6 gameport_stop_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0x91d77783 gameport_start_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0x98bd509c gameport_set_phys +EXPORT_SYMBOL drivers/input/gameport/gameport 0xb6d18701 __gameport_register_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0xc55e069b gameport_open +EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x113d19ac iforce_send_packet +EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x2e2489e8 iforce_process_packet +EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x362d6da7 iforce_init_device +EXPORT_SYMBOL drivers/input/matrix-keymap 0xc9c236b5 matrix_keypad_build_keymap +EXPORT_SYMBOL drivers/input/misc/ad714x 0x44d4f1ee ad714x_enable +EXPORT_SYMBOL drivers/input/misc/ad714x 0x6d4e7231 ad714x_probe +EXPORT_SYMBOL drivers/input/misc/ad714x 0xcc05b11b ad714x_disable +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x7eb922eb cma3000_init EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x892d76b2 cma3000_resume EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x89d9444e cma3000_exit EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0xca3f100a cma3000_suspend -EXPORT_SYMBOL drivers/input/rmi4/rmi_core 0xeafde1fe rmi_unregister_transport_device -EXPORT_SYMBOL drivers/input/sparse-keymap 0x14e45d4e sparse_keymap_report_event -EXPORT_SYMBOL drivers/input/sparse-keymap 0x484e37da sparse_keymap_report_entry -EXPORT_SYMBOL drivers/input/sparse-keymap 0x8a882ed0 sparse_keymap_setup -EXPORT_SYMBOL drivers/input/sparse-keymap 0x8cfe806f sparse_keymap_entry_from_scancode -EXPORT_SYMBOL drivers/input/sparse-keymap 0x9eb60edd sparse_keymap_entry_from_keycode -EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x38a849d0 ad7879_pm_ops -EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0xf137fb5d ad7879_probe -EXPORT_SYMBOL drivers/interconnect/qcom/icc-smd-rpm 0x40f6420c qnoc_remove -EXPORT_SYMBOL drivers/interconnect/qcom/icc-smd-rpm 0x7e0b8aa7 qnoc_probe -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x34e63577 capi_ctr_handle_message -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x6a24fe06 detach_capi_ctr -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x93a78832 attach_capi_ctr -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x9c871b34 capi_ctr_down -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xf4ec4ac7 capi_ctr_ready +EXPORT_SYMBOL drivers/input/rmi4/rmi_core 0xa1a72992 rmi_unregister_transport_device +EXPORT_SYMBOL drivers/input/sparse-keymap 0x05963f12 sparse_keymap_report_event +EXPORT_SYMBOL drivers/input/sparse-keymap 0x60f3eb76 sparse_keymap_setup +EXPORT_SYMBOL drivers/input/sparse-keymap 0x90ba3780 sparse_keymap_report_entry +EXPORT_SYMBOL drivers/input/sparse-keymap 0xaf910ab8 sparse_keymap_entry_from_scancode +EXPORT_SYMBOL drivers/input/sparse-keymap 0xc6a44b7a sparse_keymap_entry_from_keycode +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x333001d9 ad7879_pm_ops +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0xed5e6c5c ad7879_probe +EXPORT_SYMBOL drivers/interconnect/qcom/icc-smd-rpm 0x3addebf7 qnoc_remove +EXPORT_SYMBOL drivers/interconnect/qcom/icc-smd-rpm 0x57190815 qnoc_probe +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x1cd7ffb1 detach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x1f23d448 capi_ctr_handle_message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x3620795c capi_ctr_ready +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x3ea3e216 attach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xedabae7c 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 0x09caeb48 mISDNisac_irq -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x20badf46 mISDNipac_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x45ab2bc7 mISDNisac_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xd766a366 mISDNipac_irq -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x6390bb73 mISDNisar_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x67d46666 mISDNisar_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x084b275b mISDNisac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xd7ead623 mISDNipac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xe9b6167e mISDNipac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xef4296bd mISDNisac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x42b688ae mISDNisar_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0xc6cfc83d mISDNisar_init EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x03a68066 mISDN_FsmRestartTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x0dbf05f1 mISDNDevName4ch -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x10cad9b9 get_next_bframe -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1159622d recv_Bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1bb57f2e mISDN_freedchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2321d178 bchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x0460c39f recv_Dchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x0468017f get_next_bframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x113f60f6 recv_Dchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x125558ef mISDN_unregister_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x12cb016d bchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1d0d303a queue_ch_frame 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 0x2e7e790b mISDN_register_device EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x30d25b0d mISDN_FsmDelTimer EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x313b1fde mISDN_FsmAddTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x3c1088bf mISDN_clear_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x44ef10a5 get_next_dframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x4d0eff02 mISDN_initbchannel EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x50c2230c mISDN_FsmChangeState -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x57b1e393 recv_Dchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x523fdfb5 recv_Bchannel_skb EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x588886a6 l1_event -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x5a29863f mISDN_unregister_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x5e64718a dchannel_senddata EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6047df40 mISDN_FsmInitTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x60e18877 mISDN_register_device -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x62208b98 bchannel_get_rxbuf -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x66248915 queue_ch_frame -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x669d1ee5 mISDN_freebchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x77988f72 get_next_dframe -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x77e6ef2b create_l1 -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7949cb4e recv_Echannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7cdcca37 recv_Dchannel_skb -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7d8ecdc3 mISDN_unregister_device -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x903614e9 mISDN_register_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x654a248b mISDN_freebchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6b9050fc recv_Echannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x87d20110 mISDN_clear_bchannel EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9c928457 mISDN_FsmNew -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xac295286 mISDN_ctrl_bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb455635b mISDN_initdchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9ef955a0 mISDN_freedchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa0b4efb8 bchannel_get_rxbuf +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa0cd5b40 mISDN_register_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb98e28c4 mISDN_ctrl_bchannel EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc3401729 mISDN_register_clock EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd285995f mISDN_clock_get EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd5145151 mISDN_FsmEvent +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xdb1fd25f create_l1 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xdf31dcd6 mISDN_unregister_Bprotocol EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe8f617eb mISDN_unregister_clock -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xedcfb487 mISDN_initbchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf30e6a49 recv_Bchannel_skb -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf56639c2 dchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf5a0465a recv_Bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf5f9cebd mISDNDevName4ch +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xfa6b1ac0 mISDN_initdchannel 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 0x2ff14e59 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 0xced72aae ti_lmu_common_set_brightness -EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0xe65ebdeb ti_lmu_common_get_ramp_params -EXPORT_SYMBOL drivers/mailbox/mtk-cmdq-mailbox 0xe4ac6c48 cmdq_get_shift_pa -EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0x23be23a4 omap_mbox_disable_irq -EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0x47be6857 omap_mbox_request_channel -EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0x6cc19c9a omap_mbox_enable_irq -EXPORT_SYMBOL drivers/md/dm-log 0x26d1d262 dm_dirty_log_type_unregister -EXPORT_SYMBOL drivers/md/dm-log 0x413b2b9f dm_dirty_log_create -EXPORT_SYMBOL drivers/md/dm-log 0x421d0234 dm_dirty_log_type_register -EXPORT_SYMBOL drivers/md/dm-log 0xb8a844f7 dm_dirty_log_destroy -EXPORT_SYMBOL drivers/md/dm-snapshot 0x019dd20e dm_snap_cow -EXPORT_SYMBOL drivers/md/dm-snapshot 0x2465769e dm_exception_store_type_register -EXPORT_SYMBOL drivers/md/dm-snapshot 0x2530de30 dm_exception_store_create -EXPORT_SYMBOL drivers/md/dm-snapshot 0x362faf61 dm_snap_origin -EXPORT_SYMBOL drivers/md/dm-snapshot 0x540febb5 dm_exception_store_destroy -EXPORT_SYMBOL drivers/md/dm-snapshot 0xfca2c9c0 dm_exception_store_type_unregister -EXPORT_SYMBOL drivers/md/raid456 0xb96ead45 raid5_set_cache_size -EXPORT_SYMBOL drivers/md/raid456 0xf9fc3baf r5c_journal_mode_set -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x07f36c28 flexcop_sram_ctrl -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x1018d488 flexcop_eeprom_check_mac_addr -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x1807c323 flexcop_device_kfree -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x465cd971 flexcop_pass_dmx_packets -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x4f7ea545 flexcop_i2c_request -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x530e8d4a flexcop_sram_set_dest -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x74f6dbce flexcop_pass_dmx_data -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x8a01aac6 flexcop_device_exit -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xa44f33fb flexcop_pid_feed_control -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xa6b3aa3a flexcop_dump_reg -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xb8fe0821 flexcop_device_kmalloc -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xbc6f1729 flexcop_device_initialize -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xfa83e95b flexcop_wan_set_speed +EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0xd98f8dd2 ti_lmu_common_get_brt_res +EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0xe6e8cd64 ti_lmu_common_get_ramp_params +EXPORT_SYMBOL drivers/mailbox/mtk-cmdq-mailbox 0x6a400160 cmdq_get_shift_pa +EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0x322b6df6 omap_mbox_request_channel +EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0x716677d8 omap_mbox_disable_irq +EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0xe1879ad7 omap_mbox_enable_irq +EXPORT_SYMBOL drivers/md/dm-log 0x1b756231 dm_dirty_log_create +EXPORT_SYMBOL drivers/md/dm-log 0xa1e11c30 dm_dirty_log_type_unregister +EXPORT_SYMBOL drivers/md/dm-log 0xa80e79dc dm_dirty_log_destroy +EXPORT_SYMBOL drivers/md/dm-log 0xd95200eb dm_dirty_log_type_register +EXPORT_SYMBOL drivers/md/dm-snapshot 0x2db30aed dm_snap_origin +EXPORT_SYMBOL drivers/md/dm-snapshot 0x48033e9d dm_exception_store_type_register +EXPORT_SYMBOL drivers/md/dm-snapshot 0x6a2dd0da dm_exception_store_destroy +EXPORT_SYMBOL drivers/md/dm-snapshot 0x8ce2aa28 dm_snap_cow +EXPORT_SYMBOL drivers/md/dm-snapshot 0x94052221 dm_exception_store_create +EXPORT_SYMBOL drivers/md/dm-snapshot 0xe2135934 dm_exception_store_type_unregister +EXPORT_SYMBOL drivers/md/raid456 0x2ec102cc r5c_journal_mode_set +EXPORT_SYMBOL drivers/md/raid456 0xe71f6972 raid5_set_cache_size +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x2ae51440 flexcop_pass_dmx_data +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x5363a821 flexcop_dump_reg +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x5480506b flexcop_eeprom_check_mac_addr +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x64193a75 flexcop_device_kfree +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x64528c89 flexcop_device_exit +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x68270810 flexcop_wan_set_speed +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x742ca8ca flexcop_sram_ctrl +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x7cd9ee5c flexcop_device_kmalloc +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xa68a0f35 flexcop_pid_feed_control +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xb30b0aff flexcop_sram_set_dest +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xd5d23b19 flexcop_i2c_request +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xe7fb4615 flexcop_device_initialize +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xfea179c2 flexcop_pass_dmx_packets +EXPORT_SYMBOL drivers/media/common/cx2341x 0x0d85e7cd cx2341x_handler_setup EXPORT_SYMBOL drivers/media/common/cx2341x 0x15ac1bd0 cx2341x_ctrl_query -EXPORT_SYMBOL drivers/media/common/cx2341x 0x25aff855 cx2341x_handler_init +EXPORT_SYMBOL drivers/media/common/cx2341x 0x24161722 cx2341x_handler_set_busy EXPORT_SYMBOL drivers/media/common/cx2341x 0x28240e61 cx2341x_ctrl_get_menu EXPORT_SYMBOL drivers/media/common/cx2341x 0x55aa7c5f cx2341x_mpeg_ctrls EXPORT_SYMBOL drivers/media/common/cx2341x 0x7b4dd2cb cx2341x_fill_defaults EXPORT_SYMBOL drivers/media/common/cx2341x 0xb2b9efb7 cx2341x_ext_ctrls -EXPORT_SYMBOL drivers/media/common/cx2341x 0xb4bf8d51 cx2341x_handler_setup -EXPORT_SYMBOL drivers/media/common/cx2341x 0xc6e71981 cx2341x_handler_set_50hz +EXPORT_SYMBOL drivers/media/common/cx2341x 0xbb3aa266 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/cx2341x 0xff6faf60 cx2341x_handler_set_busy -EXPORT_SYMBOL drivers/media/common/cypress_firmware 0x94df88ec cypress_load_firmware +EXPORT_SYMBOL drivers/media/common/cx2341x 0xe7d2f265 cx2341x_handler_init +EXPORT_SYMBOL drivers/media/common/cypress_firmware 0x2fbdb5b3 cypress_load_firmware EXPORT_SYMBOL drivers/media/common/ttpci-eeprom 0x693e74ba ttpci_eeprom_decode_mac -EXPORT_SYMBOL drivers/media/common/ttpci-eeprom 0xeaa94ffd ttpci_eeprom_parse_mac +EXPORT_SYMBOL drivers/media/common/ttpci-eeprom 0xb092b9b9 ttpci_eeprom_parse_mac EXPORT_SYMBOL drivers/media/common/tveeprom 0x0dbf0296 tveeprom_hauppauge_analog -EXPORT_SYMBOL drivers/media/common/tveeprom 0xb08fc39c tveeprom_read +EXPORT_SYMBOL drivers/media/common/tveeprom 0x4c3a4da6 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 0xa67febd4 vb2_buffer_in_use +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x21e2adf8 vb2_verify_memory_type +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0xa19c275f vb2_buffer_in_use EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0xc2d9e090 get_vaddr_frames EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0xc5e5573a frame_vector_to_pages -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0xdaa14bdf vb2_verify_memory_type EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0xdffb744b frame_vector_to_pfns -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x41e6c08e vb2_dvb_unregister_bus -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x5662f275 vb2_dvb_find_frontend -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x5b580c6a vb2_dvb_dealloc_frontends -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x6279d00f vb2_dvb_alloc_frontend -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x881f2a54 vb2_dvb_register_bus -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xac583da8 vb2_dvb_get_frontend +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x07c27639 vb2_dvb_alloc_frontend +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x08774467 vb2_dvb_get_frontend +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x2b10248f vb2_dvb_find_frontend +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x6b40069b vb2_dvb_register_bus +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xb20f1465 vb2_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xba056e7e vb2_dvb_unregister_bus EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-memops 0xa21fa765 vb2_create_framevec EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-memops 0xccd197c7 vb2_destroy_framevec -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-v4l2 0x87778be3 vb2_querybuf +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-v4l2 0x6872c201 vb2_querybuf EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x08733236 intlog10 -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1133e949 dvb_register_device EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1609d70c dvb_ringbuffer_flush -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1d99ba60 dvb_ca_en50221_camchange_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x18933a0e dvb_register_frontend EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1e7a8283 dvb_ringbuffer_read +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1eee7eb9 dvb_unregister_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1f26c6fb dvb_frontend_reinitialise EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x214d5b4e dvb_ringbuffer_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x25072eea dvb_free_device EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2c12c287 dvb_ringbuffer_empty -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2cbf5b4b dvb_register_frontend EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3b93d71a dvb_frontend_sleep_until +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3fa44de8 dvb_ca_en50221_camready_irq EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3fd96ba7 dvb_ringbuffer_flush_spinlock_wakeup EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x42d15a1b dvb_ringbuffer_write_user -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x481ff867 dvb_register_adapter -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4dcca9fd dvb_frontend_resume -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x507cb28c dvb_frontend_detach +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5d312238 dvb_remove_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5e400a89 dvb_frontend_detach +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5eb944ac dvb_generic_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5ef12031 dvb_frontend_suspend EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5f2b1d95 intlog2 -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7810aec9 dvb_generic_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x67541ba1 dvb_dmxdev_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6896036c dvb_free_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x79a96a5d dvb_ca_en50221_release EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8026ef3e dvb_ringbuffer_read_user EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x82143c17 dvb_ringbuffer_avail -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x89418497 dvb_dmxdev_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8b1b7bec dvb_unregister_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x883a28dd dvb_unregister_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8fb7fe37 dvb_unregister_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9037025c dvb_ca_en50221_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x922a862d dvb_net_release EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x989a4a69 dvb_dmx_swfilter_raw -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x992b1d88 dvb_ca_en50221_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa3014e4d dvb_ca_en50221_camready_irq -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa7c2d18c dvb_frontend_suspend -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xaa320168 dvb_net_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x991ad8a0 dvb_frontend_resume +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9b7ed417 dvb_dmxdev_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa3407ae7 dvb_generic_open +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa5f70084 dvb_ca_en50221_camchange_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xaf12821d dvb_generic_ioctl EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb2edd80a dvb_dmx_swfilter EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb7feaf5a dvb_dmx_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xbcc83758 dvb_register_device EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc0b93899 dvb_ringbuffer_write EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc4426d5c dvb_dmx_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd3502e66 dvb_unregister_device -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd5b88654 dvb_dmxdev_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd787a422 dvb_remove_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xcb5e0cc7 dvb_net_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xcf29fa7b dvb_ca_en50221_frda_irq EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd7a1edab dvb_dmx_swfilter_packets -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xdbb36e82 dvb_frontend_reinitialise -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe0ac9122 dvb_generic_open EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe7367529 dvb_dmx_swfilter_204 -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe82eb171 dvb_net_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf3dfc611 dvb_unregister_adapter -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf97dd992 dvb_generic_ioctl -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf9e9a849 dvb_ca_en50221_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfa5beb22 dvb_ca_en50221_frda_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf0f44c50 dvb_register_adapter EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfe73d116 dvb_ringbuffer_free -EXPORT_SYMBOL drivers/media/dvb-frontends/ascot2e 0xa32c183e ascot2e_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/atbm8830 0xffbf7f6c atbm8830_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x25356581 au8522_get_state -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x3136867e au8522_sleep -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x3ca9cc3c au8522_init -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x822129de au8522_writereg -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x84b8fc73 au8522_i2c_gate_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xdc5aeea4 au8522_release_state -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xe65fddca au8522_analog_i2c_gate_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xf9c35880 au8522_led_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xf9e31c20 au8522_readreg -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_dig 0xdcf38a2e au8522_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/bcm3510 0x275f1619 bcm3510_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx22700 0x3fe9353e cx22700_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx22702 0xd5394f68 cx22702_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24110 0x24f97f51 cx24110_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x7a3af61c cx24113_agc_callback -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0xfa10b9dd cx24113_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24116 0x32beae2f cx24116_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24120 0xa33b9692 cx24120_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x1b7e1858 cx24123_get_tuner_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x2d918a39 cx24123_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2820r 0x315a7cd2 cxd2820r_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x2af94c9b cxd2841er_attach_t_c -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0xf08dc2f9 cxd2841er_attach_s -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2880/cxd2880 0x3b8e1058 cxd2880_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x4b2eee41 dib0070_set_rf_output -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x6531490e dib0070_get_rf_output -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x8b435bef dib0070_ctrl_agc_filter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xf1eefcb9 dib0070_wbd_offset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xfbcd37eb dib0070_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x0c6a25f8 dib0090_fw_register -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x5049f70e dib0090_dcc_freq -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x52590742 dib0090_gain_control -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x58af6269 dib0090_set_switch -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x644e4393 dib0090_update_rframp_7090 -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x807b8835 dib0090_get_current_gain -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x8f46cd0b dib0090_get_wbd_offset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xb036d11c dib0090_get_tune_state -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xb130cdb4 dib0090_pwm_gain_reset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xb8069d14 dib0090_set_tune_state -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xbbde5d35 dib0090_set_vga -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xd9b5e56b dib0090_update_tuning_table_7090 -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xdd4a5ee3 dib0090_get_wbd_target -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xe6201c54 dib0090_set_dc_servo -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xf7556766 dib0090_register -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mb 0x3e3f532e dib3000mb_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x4d2a4d30 dib3000mc_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x51f8794b dib3000mc_i2c_enumeration -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x5f42f3dc dib3000mc_get_tuner_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x5f769906 dib3000mc_set_config -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xa555bf61 dib3000mc_pid_control -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xac337a2d dib3000mc_pid_parse -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x000f39c9 dib7000m_get_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x2f19051c dib7000m_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x30136537 dib7000m_pid_filter_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xb54b906f dib7000m_pid_filter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000p 0x639d53fe dib7000p_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib8000 0x4b1de49e dib8000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x0c27e6eb dib9000_get_tuner_interface -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x0ff52702 dib9000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x1895e904 dib9000_firmware_post_pll_init -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x461baf36 dib9000_set_gpio -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x63de88e5 dib9000_fw_set_component_bus_speed -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x670ceaf6 dib9000_set_slave_frontend -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x680fb4c3 dib9000_get_slave_frontend -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x8f81f2e6 dib9000_get_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x9994e9aa dib9000_fw_pid_filter_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xa18a3bf6 dib9000_i2c_enumeration -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xc682200c dib9000_fw_pid_filter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xe874c787 dib9000_set_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xfacb3d7b dib9000_get_component_bus_interface -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x41299652 dibx000_get_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x61a95cf8 dibx000_init_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x7d16918f dibx000_exit_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x907b41d7 dibx000_reset_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x9f9ada9b dibx000_i2c_set_speed -EXPORT_SYMBOL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0xf7eaa854 drx39xxj_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/drxd 0x837d4ce8 drxd_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/drxk 0x240ec50a drxk_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ds3000 0xdf1e07a1 ds3000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dvb-pll 0x9d22d716 dvb_pll_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x17bd5e2b dvb_dummy_fe_qpsk_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x5f388526 dvb_dummy_fe_qam_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0xbc737a43 dvb_dummy_fe_ofdm_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ec100 0xc486a3e6 ec100_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0x0caa0e33 helene_attach_s -EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0xb3784e06 helene_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/horus3a 0x1cbe7235 horus3a_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/isl6405 0xed29cfd2 isl6405_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/isl6421 0xdfcc5315 isl6421_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/isl6423 0x469a748c isl6423_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/itd1000 0x10be1ac3 itd1000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ix2505v 0x473a2ce2 ix2505v_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/l64781 0x802a0c1b l64781_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lg2160 0x9c450e5a lg2160_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3305 0x70847ca2 lgdt3305_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3306a 0xae688cab lgdt3306a_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt330x 0x47d4d0a8 lgdt330x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gl5 0x661129b2 lgs8gl5_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gxx 0xc5620a73 lgs8gxx_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh25 0xcba69bcc lnbh25_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh29 0x12e752d8 lnbh29_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x3e3cc1ca lnbp21_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x4f74e73f lnbh24_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp22 0x8d79efa7 lnbp22_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x3e51fc78 m88ds3103_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x59eb3221 m88ds3103_get_agc_pwm -EXPORT_SYMBOL drivers/media/dvb-frontends/m88rs2000 0x1fdc70e1 m88rs2000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a16 0x50abc15e mb86a16_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a20s 0x4e3200ae mb86a20s_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mt312 0x7f037000 mt312_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mt352 0x77cacf1d mt352_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/nxt200x 0xa18ffc7c nxt200x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/nxt6000 0x8dacab36 nxt6000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/or51132 0x433c8ca0 or51132_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/or51211 0xbc31a455 or51211_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1409 0x11f32aa2 s5h1409_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1411 0x4734a288 s5h1411_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0xc20074df s5h1420_get_tuner_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0xcaa0ad02 s5h1420_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1432 0x49858f54 s5h1432_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s921 0x0b805756 s921_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/si21xx 0xdbd283e2 si21xx_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/sp887x 0xf8b0c0b8 sp887x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stb0899 0xafb99dda stb0899_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stb6000 0x49bf231c stb6000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stb6100 0x118b5b79 stb6100_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0288 0xe072b445 stv0288_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0297 0x955a07a4 stv0297_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0299 0xcc7c409f stv0299_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x74c5e922 stv0367cab_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0xc5070d75 stv0367ddb_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0xf5f7134f stv0367ter_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0900 0xda266c30 stv0900_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv090x 0x28167c45 stv090x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110 0x18ac00cd stv6110_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110x 0xafc9b3a7 stv6110x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10021 0xe1157b81 tda10021_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10023 0x8f10c48b tda10023_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10048 0x02a2bce1 tda10048_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x865e4ae6 tda10046_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0xbdd35592 tda10045_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10086 0xba631ad3 tda10086_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda665x 0x2e3d2320 tda665x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda8083 0x50e8c178 tda8083_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda8261 0x1d95f26b tda8261_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda826x 0xe74f80e8 tda826x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ts2020 0xa6954498 ts2020_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tua6100 0xdb7313f8 tua6100_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ves1820 0xda9c2ac3 ves1820_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ves1x93 0x5b8d3be9 ves1x93_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0x601af065 zd1301_demod_get_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0xf61ff9d7 zd1301_demod_get_dvb_frontend -EXPORT_SYMBOL drivers/media/dvb-frontends/zl10036 0x93486171 zl10036_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/zl10039 0xa4b175fd zl10039_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/zl10353 0xd36904f8 zl10353_attach -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x45d9104d flexcop_dma_config -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x7eeef2cc flexcop_dma_allocate -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x9596267d flexcop_dma_control_timer_irq -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x9e56f585 flexcop_dma_config_timer -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xa27f5325 flexcop_dma_xfer_control -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xd19801cc flexcop_dma_free -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xddf1708f flexcop_dma_control_size_irq -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x21e53f39 bt878_stop -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x4c6a94ba bt878_device_control -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x578203ec bt878_start -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xc68d691b bt878 +EXPORT_SYMBOL drivers/media/dvb-frontends/ascot2e 0x186723de ascot2e_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/atbm8830 0xf1b33a48 atbm8830_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x16407c57 au8522_writereg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x4b2fc50d au8522_get_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x76d8e189 au8522_release_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x901a6b8a au8522_readreg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xb90ce1ed au8522_sleep +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xdf36c2e7 au8522_analog_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xe9a35b65 au8522_init +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xf5e658d9 au8522_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xf9f241bd au8522_led_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_dig 0x108f378f au8522_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/bcm3510 0x4b746742 bcm3510_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22700 0xb61609c8 cx22700_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22702 0xcb7992f8 cx22702_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24110 0xad0643a7 cx24110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x0743fcc1 cx24113_agc_callback +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0xadf19e10 cx24113_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24116 0x4d115789 cx24116_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24120 0x0205c89b cx24120_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x4c813eb0 cx24123_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x7179d504 cx24123_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2820r 0x5e6cd121 cxd2820r_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x074c34cc cxd2841er_attach_t_c +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0xda0b0687 cxd2841er_attach_s +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2880/cxd2880 0x237deb48 cxd2880_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x137c3a73 dib0070_ctrl_agc_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x2ee32267 dib0070_set_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x79384f39 dib0070_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x7b9c0360 dib0070_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xec2631e3 dib0070_get_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x0d392158 dib0090_update_tuning_table_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x104a8e37 dib0090_update_rframp_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x346eeda0 dib0090_set_switch +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x39766142 dib0090_get_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x508d2ce8 dib0090_gain_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x6317d749 dib0090_get_current_gain +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x8978cfc6 dib0090_pwm_gain_reset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x952528bd dib0090_get_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xb815c22e dib0090_get_wbd_target +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xca1e539e dib0090_dcc_freq +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xcbb8c90e dib0090_set_vga +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xe063b42f dib0090_fw_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xf0928d01 dib0090_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xf71b2200 dib0090_set_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xfe192dc3 dib0090_set_dc_servo +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mb 0x459e26d4 dib3000mb_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x24f0fba2 dib3000mc_pid_parse +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x29d3cd00 dib3000mc_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x3a9eec5e dib3000mc_set_config +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x54171995 dib3000mc_pid_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xdef399b3 dib3000mc_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xf0fab602 dib3000mc_get_tuner_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x213badc1 dib7000m_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x23e250d7 dib7000m_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x6d46b6fc dib7000m_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xb34d58cf dib7000m_pid_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000p 0xf1fd284c dib7000p_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib8000 0x1243fc98 dib8000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x004b545f dib9000_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x4895afd2 dib9000_get_component_bus_interface +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x5cd5cc95 dib9000_get_tuner_interface +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x7375ae7b dib9000_set_slave_frontend +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x8f8bce65 dib9000_set_gpio +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xa3d81184 dib9000_fw_set_component_bus_speed +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xbb8f5311 dib9000_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xbf0d37d4 dib9000_get_slave_frontend +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xc3e0dce2 dib9000_set_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xdf00c34b dib9000_fw_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xf15ca09b dib9000_firmware_post_pll_init +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xf6dde823 dib9000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xfd153922 dib9000_fw_pid_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x303dc0cb dibx000_i2c_set_speed +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xb598b5f1 dibx000_init_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xc859b999 dibx000_get_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xd059fa0c dibx000_reset_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xf67ff0d1 dibx000_exit_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0xabecbe21 drx39xxj_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxd 0x3c56133a drxd_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxk 0x563ca321 drxk_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ds3000 0x0d5bdfdf ds3000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb-pll 0x5dbdf22e dvb_pll_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x6cc7fe4f dvb_dummy_fe_ofdm_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x8baa7ec3 dvb_dummy_fe_qam_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0xc709da27 dvb_dummy_fe_qpsk_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ec100 0x5102e1e0 ec100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0x3e2ee6a4 helene_attach_s +EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0x846666bd helene_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/horus3a 0xa7f549d5 horus3a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6405 0x736c6ffa isl6405_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6421 0xf70e74ae isl6421_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6423 0xa9efb606 isl6423_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/itd1000 0x5191e251 itd1000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ix2505v 0x93a1d37c ix2505v_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/l64781 0x4ea21ea5 l64781_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lg2160 0xb40da24b lg2160_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3305 0xba20d8f5 lgdt3305_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3306a 0xbcef26d6 lgdt3306a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt330x 0x71393f96 lgdt330x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gl5 0xefee1544 lgs8gl5_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gxx 0xd340fead lgs8gxx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh25 0x8a650f55 lnbh25_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh29 0xd509ab73 lnbh29_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x6e416c38 lnbh24_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0xa44577b2 lnbp21_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp22 0xaaafae98 lnbp22_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x4362a60c m88ds3103_get_agc_pwm +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0xbe51c2aa m88ds3103_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88rs2000 0xeafe01ce m88rs2000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a16 0xa7a002fb mb86a16_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a20s 0x77631fd5 mb86a20s_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt312 0x3ec0e499 mt312_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt352 0xcc3938d9 mt352_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt200x 0x486eed1d nxt200x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt6000 0xb8b05ecd nxt6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51132 0xaadd9dc1 or51132_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51211 0x9e91c03e or51211_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1409 0xe1ffcdc4 s5h1409_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1411 0x955d7e55 s5h1411_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x1af5a579 s5h1420_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0xa807b983 s5h1420_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1432 0x9bec5389 s5h1432_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s921 0x6d245776 s921_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/si21xx 0xc5925e72 si21xx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/sp887x 0x1ee91947 sp887x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb0899 0x93ba099b stb0899_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6000 0xe8c03210 stb6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6100 0x60319190 stb6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0288 0xcdc7cc12 stv0288_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0297 0x17ee53a2 stv0297_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0299 0x87b6a82f stv0299_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x02fcd0ea stv0367ter_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x320cced0 stv0367ddb_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x83ce2a87 stv0367cab_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0900 0xf922d7b0 stv0900_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv090x 0xfaf5c32c stv090x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110 0xa40cc79b stv6110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110x 0xa00233bc stv6110x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10021 0x683641b2 tda10021_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10023 0x7a32b5a4 tda10023_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10048 0xd003f7d7 tda10048_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0xcf2f56e5 tda10046_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0xf4a24991 tda10045_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10086 0x6ef8e54d tda10086_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda665x 0x8a61b134 tda665x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8083 0xd917fd8e tda8083_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8261 0x8990d95b tda8261_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda826x 0x26eb793c tda826x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ts2020 0xd4a722b3 ts2020_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tua6100 0x7a0c02f4 tua6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1820 0x518d2d20 ves1820_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1x93 0x62dc2492 ves1x93_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0xbd4f4509 zd1301_demod_get_dvb_frontend +EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0xc5ce14e5 zd1301_demod_get_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10036 0x265a77d8 zl10036_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10039 0x0a33075c zl10039_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10353 0xa769a9d5 zl10353_attach +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x217541ec flexcop_dma_allocate +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x2f9b6713 flexcop_dma_xfer_control +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x4987dd69 flexcop_dma_control_timer_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x6a379ce4 flexcop_dma_config +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xbc7bc358 flexcop_dma_config_timer +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xdd5336bb flexcop_dma_free +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xe44e8e6e flexcop_dma_control_size_irq +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x10d604df bt878_device_control +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x20578dd0 bt878 EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xd5d0bdef bt878_num +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xe6a0a123 bt878_start +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xee6fd36a bt878_stop EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x11dc4b6d bttv_gpio_enable -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x47828da6 bttv_sub_unregister -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x4e418261 bttv_get_pcidev -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x50e21c17 bttv_sub_register +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x474a953f bttv_sub_unregister +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x7bf42655 bttv_sub_register EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x8ecf4acc bttv_write_gpio +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xb4bc2d1e bttv_get_pcidev EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xbcf2d2fb bttv_read_gpio -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x0651144c dst_error_recovery -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x17a60aed dst_wait_dst_ready +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x1f92b34e read_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x3d206f31 dst_attach +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x40a8b45c dst_pio_disable EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x43a983fd dst_check_sum -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x5b078043 write_dst -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x6ae180a2 dst_attach -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x816779ec rdc_reset_state -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xd92c3165 dst_comm_init -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xd9cd1b51 read_dst -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xdd2d4fa6 dst_error_bailout -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xf6427200 dst_pio_disable -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst_ca 0x60ad7dda dst_ca_attach -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x04f4742e cx18_claim_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x08911bb3 cx18_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x5b2d242c dst_error_recovery +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x5e50dad7 write_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x72814d26 dst_error_bailout +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x9adc991f rdc_reset_state +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xea024742 dst_wait_dst_ready +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xfa6b861d dst_comm_init +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst_ca 0x9143da65 dst_ca_attach EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2cdea06d cx18_reset_ir_gpio -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x56c324b6 cx18_ext_init -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x67de0f78 cx18_start_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x6c3e4c67 cx18_release_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x60ea7021 cx18_release_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x803ff584 cx18_ext_init +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xb88d404d cx18_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xd51600f2 cx18_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xdbe70435 cx18_claim_stream EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0x6ff7510d altera_ci_tuner_reset EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xc46aeddb altera_ci_init EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xdb3faf38 altera_ci_release EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xe66b9812 altera_ci_irq -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x04756199 cx25821_sram_channel_dump_audio -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x0734e926 cx25821_sram_channel_setup_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x18fa5ec6 cx25821_set_gpiopin_direction +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x1f7cd231 cx25821_risc_databuffer_audio EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x44b517f5 cx25821_print_irqbits -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x504a361b cx25821_riscmem_alloc -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x6468ce74 cx25821_dev_get -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xbd01a9c3 cx25821_set_gpiopin_direction -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xd071b389 cx25821_dev_unregister +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x4ae230f4 cx25821_riscmem_alloc +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x4dd99a83 cx25821_dev_get +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x786c22b6 cx25821_dev_unregister +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xdfa9b43c cx25821_sram_channel_dump_audio EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xe9050411 cx25821_sram_channels -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xeb4e3439 cx25821_risc_databuffer_audio -EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x73f58bc5 vp3054_i2c_remove -EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0xb8c4e443 vp3054_i2c_probe -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x49cea1e3 cx88_enum_input -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x657398fb cx88_set_freq -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x7b791375 cx88_video_mux -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xbc91468d cx88_querycap -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x26668e50 cx8802_register_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x29939aec cx8802_buf_prepare -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x40883755 cx8802_buf_queue -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x58dc2478 cx8802_cancel_buffers -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x61c0d58e cx8802_unregister_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x9788b669 cx8802_get_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xe9e7efb3 cx8802_start_dma -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x14fdce02 cx88_core_get -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x1850f1e9 cx88_risc_databuffer -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x303783ba cx88_set_stereo -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x31ab5e5c cx88_ir_start -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x351a5035 cx88_get_stereo -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x403f1b75 cx88_shutdown -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x47748b4f cx88_newstation -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4c113202 cx88_vdev_init -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4f8f5156 cx88_risc_buffer -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4ffb12d7 cx88_set_tvnorm -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x5898ee45 cx88_dsp_detect_stereo_sap -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x59d4ef88 cx88_reset -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x5b6f67b6 cx88_ir_stop +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xf2141442 cx25821_sram_channel_setup_audio +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x2d88ffbb vp3054_i2c_remove +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x60ffdbda vp3054_i2c_probe +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x260cb9e4 cx88_querycap +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x48d211b5 cx88_enum_input +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x8e6f1fea cx88_video_mux +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xa38333d1 cx88_set_freq +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x26f63fd3 cx8802_get_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x363bc58b cx8802_unregister_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x3c805227 cx8802_start_dma +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x8b635be1 cx8802_buf_prepare +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xb99ecfc4 cx8802_cancel_buffers +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xf496c3a7 cx8802_register_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xfbda5338 cx8802_buf_queue +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x05f1fd94 cx88_vdev_init +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x0bfc206d cx88_risc_databuffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x13be46f4 cx88_shutdown +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x1e56ed93 cx88_sram_channel_setup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x2361685c cx88_ir_stop +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x2634baff cx88_core_irq +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x2dc55922 cx88_reset +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x3a5fc862 cx88_get_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x3e6f17b3 cx88_dsp_detect_stereo_sap +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x57048e1a cx88_wakeup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x5a166140 cx88_set_tvnorm 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 0x7c01a8da cx88_newstation +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x81ed71e9 cx88_set_tvaudio +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x870f97c0 cx88_core_get +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x8b182bd1 cx88_risc_buffer EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x8d88137a cx88_sram_channels -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x8fe9c187 cx88_sram_channel_dump +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x8e2569ec cx88_core_put +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x8f2c76c6 cx88_set_scale EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x904b8696 cx88_audio_thread -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x9ca22a77 cx88_core_put -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x9ffda621 cx88_set_tvaudio -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xa69c1f42 cx88_wakeup -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xb47220fc cx88_set_scale -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xbf812fb1 cx88_sram_channel_setup -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xc5aca6ef cx88_core_irq -EXPORT_SYMBOL drivers/media/pci/ddbridge/ddbridge-dummy-fe 0x9481e97b ddbridge_dummy_fe_qam_attach -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x04f73c5c ivtv_udma_unmap -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x0dde3bbc ivtv_release_stream +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xddd3080e cx88_ir_start +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xe1caae57 cx88_set_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xf135162a cx88_sram_channel_dump +EXPORT_SYMBOL drivers/media/pci/ddbridge/ddbridge-dummy-fe 0x3e115cf7 ddbridge_dummy_fe_qam_attach +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x0f0c22d9 ivtv_stop_v4l2_encode_stream EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x14f67530 ivtv_debug -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x1835c4c9 ivtv_start_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x5048fe06 ivtv_stop_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x55d61d3c ivtv_claim_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x566d2768 ivtv_udma_alloc -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x62aa23bb ivtv_ext_init -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x6e901419 ivtv_reset_ir_gpio -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x8252fb18 ivtv_firmware_check -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x8b344ff8 ivtv_vapi -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xa58e7c19 ivtv_init_on_first_open -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xa60ea508 ivtv_udma_prepare -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xb7d81d67 ivtv_api -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xcb3bfddb ivtv_clear_irq_mask -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xe45f8ecd ivtv_vapi_result -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xee1e5002 ivtv_set_irq_mask -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xffe86f5d ivtv_udma_setup +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x167a932a ivtv_udma_prepare +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x1899e7ec ivtv_udma_setup +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x45cb5ba2 ivtv_udma_unmap +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x4852b094 ivtv_clear_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x503f10b6 ivtv_api +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x541293be ivtv_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x7abfe993 ivtv_udma_alloc +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x7bb92b48 ivtv_vapi +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x7c0f637c ivtv_release_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x7e19f2dd ivtv_claim_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x8e969194 ivtv_ext_init +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x948df80c ivtv_set_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xa1a6378a ivtv_init_on_first_open +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xe186ac23 ivtv_firmware_check +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xebdee5fb ivtv_vapi_result +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xeeb67070 ivtv_reset_ir_gpio EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x04e83446 saa7134_tuner_callback EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x1211df5d saa7134_devlist -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x217330fa saa_dsp_writel -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x28aac29e saa7134_pgtable_alloc -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x2a99a62a saa7134_dmasound_init -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x6c210db8 saa7134_ts_register +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x1695f5e1 saa7134_pgtable_build +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x46c06f20 saa_dsp_writel +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x60e12b2b saa7134_dmasound_exit EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x730c4be3 saa7134_boards -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x74d7bc08 saa7134_pgtable_free +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x7901708a saa7134_set_gpio EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x7f68c76e saa7134_devlist_lock -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x989584e1 saa7134_dmasound_exit -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x9a681ae8 saa7134_tvaudio_setmute -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xa46939db saa7134_set_gpio -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xaede5608 saa7134_pgtable_build -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xced0d2e3 saa7134_set_dmabits -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xf8a5d2ed saa7134_ts_unregister +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x84692c04 saa7134_pgtable_alloc +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x90b57145 saa7134_pgtable_free +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xa15f9ddf saa7134_dmasound_init +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xc9dc3cfc saa7134_ts_register +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xd9087725 saa7134_set_dmabits +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xecc0669f saa7134_ts_unregister +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xf593484b saa7134_tvaudio_setmute EXPORT_SYMBOL drivers/media/platform/coda/imx-vdoa 0x6671c6ea vdoa_context_configure EXPORT_SYMBOL drivers/media/platform/coda/imx-vdoa 0x787fe8a8 vdoa_device_run EXPORT_SYMBOL drivers/media/platform/coda/imx-vdoa 0x7fe3d6f9 vdoa_context_create EXPORT_SYMBOL drivers/media/platform/coda/imx-vdoa 0xd96c63ec vdoa_wait_for_completion EXPORT_SYMBOL drivers/media/platform/coda/imx-vdoa 0xfc58eef7 vdoa_context_destroy -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-csc 0x41be89d0 csc_dump_regs -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-csc 0x4f93f686 csc_set_coeff -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-csc 0x68a7ecaf csc_set_coeff_bypass -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-csc 0x75862fbf csc_create -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-sc 0x39b8da3a sc_set_vs_coeffs -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-sc 0x6dfaea42 sc_config_scaler -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-sc 0x743e9942 sc_set_hs_coeffs -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-sc 0x8b8d8746 sc_dump_regs -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-sc 0xca2eb73e sc_create -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x12577ec4 vpdma_dump_regs +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-csc 0x025e2dc4 csc_set_coeff_bypass +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-csc 0x1fea802c csc_dump_regs +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-csc 0x53d93d4f csc_create +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-csc 0xbc93b9ed csc_set_coeff +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-sc 0x2380eccc sc_set_hs_coeffs +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-sc 0x36b5de07 sc_dump_regs +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-sc 0x44a6affb sc_set_vs_coeffs +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-sc 0xb45f0b71 sc_create +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-sc 0xc3347386 sc_config_scaler +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x1472774e vpdma_list_busy EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x163e1a86 vpdma_free_desc_buf EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x16f0b6e4 vpdma_add_cfd_adb EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x1d8a5dbd vpdma_add_abort_channel_ctd EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x1e26321d vpdma_misc_fmts -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x1e4911e1 vpdma_set_line_mode -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x237f358e vpdma_set_frame_start_event -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x2fb03ff3 vpdma_map_desc_buf -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x336ee59e vpdma_clear_list_stat +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x1ee6aada vpdma_set_line_mode +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x20b0ac3f vpdma_create +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x2f9a4745 vpdma_list_cleanup EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x3bb6047d vpdma_create_desc_list -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x422e608d vpdma_get_list_stat +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x46ab26f9 vpdma_map_desc_buf +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x484edc59 vpdma_dump_regs EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x49293b26 vpdma_yuv_fmts EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x50ec40af vpdma_rgb_fmts EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x5118bd7d vpdma_add_sync_on_channel_ctd -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x51d156ad vpdma_enable_list_complete_irq -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x605a4275 vpdma_list_busy +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x55810d8a vpdma_hwlist_get_priv EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x60708dc6 vpdma_raw_fmts EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x65d23377 vpdma_add_in_dtd +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x65d58461 vpdma_set_frame_start_event EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x664dd09f vpdma_alloc_desc_buf -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x6adf55e7 vpdma_update_dma_addr -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x769fd9a1 vpdma_get_list_mask -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x7731b24a vpdma_hwlist_alloc +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x6a91aaa2 vpdma_update_dma_addr +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x86e1bbc2 vpdma_hwlist_alloc EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x87c0415e vpdma_free_desc_list -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x8a25c614 vpdma_hwlist_release EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x97f311f0 vpdma_add_cfd_block -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0xa39d96c5 vpdma_set_max_size -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0xa7555c36 vpdma_create -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0xc23174a9 vpdma_set_bg_color -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0xd1c16bc1 vpdma_hwlist_get_priv -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0xd9bed0ba vpdma_list_cleanup +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x9d34034c vpdma_enable_list_complete_irq +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0xa1634ab1 vpdma_hwlist_release +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0xae3e0d42 vpdma_get_list_mask +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0xc05e633f vpdma_submit_descs +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0xc696f5f5 vpdma_unmap_desc_buf +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0xcb71032a vpdma_get_list_stat +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0xd5fa7245 vpdma_set_max_size +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0xdb2e41c7 vpdma_set_bg_color EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0xdd7f11d3 vpdma_add_out_dtd -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0xe5b09908 vpdma_unmap_desc_buf -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0xf325e7f8 vpdma_submit_descs +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0xe477376f vpdma_clear_list_stat EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0xf93ba9bf vpdma_reset_desc_list EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0xfefbda83 vpdma_rawchan_add_out_dtd -EXPORT_SYMBOL drivers/media/radio/tea575x 0x020345c0 snd_tea575x_g_tuner -EXPORT_SYMBOL drivers/media/radio/tea575x 0x0b1f363b snd_tea575x_hw_init -EXPORT_SYMBOL drivers/media/radio/tea575x 0x21bfcffa snd_tea575x_enum_freq_bands -EXPORT_SYMBOL drivers/media/radio/tea575x 0x6973e2a9 snd_tea575x_set_freq -EXPORT_SYMBOL drivers/media/radio/tea575x 0xc15d1f17 snd_tea575x_init -EXPORT_SYMBOL drivers/media/radio/tea575x 0xdde50670 snd_tea575x_s_hw_freq_seek -EXPORT_SYMBOL drivers/media/radio/tea575x 0xffd109e9 snd_tea575x_exit +EXPORT_SYMBOL drivers/media/radio/tea575x 0x3bc9f8a5 snd_tea575x_hw_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0x5d7ad774 snd_tea575x_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0x6262e285 snd_tea575x_set_freq +EXPORT_SYMBOL drivers/media/radio/tea575x 0x64715d95 snd_tea575x_exit +EXPORT_SYMBOL drivers/media/radio/tea575x 0x76111ede snd_tea575x_enum_freq_bands +EXPORT_SYMBOL drivers/media/radio/tea575x 0x7f8ba075 snd_tea575x_g_tuner +EXPORT_SYMBOL drivers/media/radio/tea575x 0xa2482c21 snd_tea575x_s_hw_freq_seek +EXPORT_SYMBOL drivers/media/rc/rc-core 0x000a49cf ir_raw_handler_unregister EXPORT_SYMBOL drivers/media/rc/rc-core 0x2ad91f6e ir_raw_gen_pl -EXPORT_SYMBOL drivers/media/rc/rc-core 0x701532b5 ir_raw_handler_register EXPORT_SYMBOL drivers/media/rc/rc-core 0x7cf52901 ir_raw_gen_manchester EXPORT_SYMBOL drivers/media/rc/rc-core 0x9e12e343 ir_raw_gen_pd EXPORT_SYMBOL drivers/media/rc/rc-core 0xb5516017 ir_raw_encode_carrier +EXPORT_SYMBOL drivers/media/rc/rc-core 0xd004a16c ir_raw_handler_register EXPORT_SYMBOL drivers/media/rc/rc-core 0xf446074f ir_raw_encode_scancode -EXPORT_SYMBOL drivers/media/rc/rc-core 0xf8931ec5 ir_raw_handler_unregister -EXPORT_SYMBOL drivers/media/tuners/fc0011 0x006b9905 fc0011_attach -EXPORT_SYMBOL drivers/media/tuners/fc0012 0xa58409e2 fc0012_attach -EXPORT_SYMBOL drivers/media/tuners/fc0013 0x66419b24 fc0013_rc_cal_add -EXPORT_SYMBOL drivers/media/tuners/fc0013 0x958f44b3 fc0013_attach -EXPORT_SYMBOL drivers/media/tuners/fc0013 0xb3a7d658 fc0013_rc_cal_reset -EXPORT_SYMBOL drivers/media/tuners/max2165 0x72ae4fe6 max2165_attach -EXPORT_SYMBOL drivers/media/tuners/mc44s803 0xcab0e5ca mc44s803_attach -EXPORT_SYMBOL drivers/media/tuners/mt2060 0xab7fce75 mt2060_attach -EXPORT_SYMBOL drivers/media/tuners/mt2131 0xb6e35c7d mt2131_attach -EXPORT_SYMBOL drivers/media/tuners/mt2266 0x73f8525b mt2266_attach -EXPORT_SYMBOL drivers/media/tuners/mxl5005s 0x1a393c4b mxl5005s_attach -EXPORT_SYMBOL drivers/media/tuners/qt1010 0xdeee015f qt1010_attach -EXPORT_SYMBOL drivers/media/tuners/tda18218 0x5d87cfbf tda18218_attach +EXPORT_SYMBOL drivers/media/tuners/fc0011 0xbf32db29 fc0011_attach +EXPORT_SYMBOL drivers/media/tuners/fc0012 0xaa96fcc3 fc0012_attach +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x12995a5f fc0013_rc_cal_reset +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x6da69cda fc0013_rc_cal_add +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x83d9d746 fc0013_attach +EXPORT_SYMBOL drivers/media/tuners/max2165 0x2002f605 max2165_attach +EXPORT_SYMBOL drivers/media/tuners/mc44s803 0x0d5e1c61 mc44s803_attach +EXPORT_SYMBOL drivers/media/tuners/mt2060 0x4efd915f mt2060_attach +EXPORT_SYMBOL drivers/media/tuners/mt2131 0x53610357 mt2131_attach +EXPORT_SYMBOL drivers/media/tuners/mt2266 0x45506be1 mt2266_attach +EXPORT_SYMBOL drivers/media/tuners/mxl5005s 0x680b5a60 mxl5005s_attach +EXPORT_SYMBOL drivers/media/tuners/qt1010 0xe84638e5 qt1010_attach +EXPORT_SYMBOL drivers/media/tuners/tda18218 0xe12708e9 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/tuner-xc2028 0x6e0ff7d0 xc2028_attach -EXPORT_SYMBOL drivers/media/tuners/xc4000 0xcd121b63 xc4000_attach -EXPORT_SYMBOL drivers/media/tuners/xc5000 0x9ffe88c5 xc5000_attach -EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x22fdb256 cx231xx_register_extension -EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x7ad50fea cx231xx_unregister_extension -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x1516a7f4 dvb_usbv2_generic_write_locked -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x51b81537 dvb_usbv2_suspend -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x523d580b dvb_usbv2_reset_resume -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x6a40dcd8 dvb_usbv2_probe -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x7ae4683d dvb_usbv2_generic_write -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xb9ab8bc2 dvb_usbv2_generic_rw -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xc717c853 dvb_usbv2_resume -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xe59f4137 dvb_usbv2_generic_rw_locked -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xeb519818 dvb_usbv2_disconnect -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x24d772d3 dvb_usb_nec_rc_key_to_event +EXPORT_SYMBOL drivers/media/tuners/tuner-xc2028 0x661f7dcf xc2028_attach +EXPORT_SYMBOL drivers/media/tuners/xc4000 0x1f7bc7be xc4000_attach +EXPORT_SYMBOL drivers/media/tuners/xc5000 0x4fab80be xc5000_attach +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0xd1846bae cx231xx_register_extension +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0xe9da8207 cx231xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x0e93f3d5 dvb_usbv2_disconnect +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x308060af dvb_usbv2_reset_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x6b1de5b8 dvb_usbv2_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x7fbebb49 dvb_usbv2_suspend +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x85017329 dvb_usbv2_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xb490df47 dvb_usbv2_probe +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xcd9632f7 dvb_usbv2_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xe3c16e8c dvb_usbv2_generic_rw_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xe69a43ac dvb_usbv2_generic_write_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x27133c8b usb_cypress_load_firmware +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x3ca2c93c dvb_usb_device_exit +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x56f634bd dvb_usb_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x641a9c61 dvb_usb_nec_rc_key_to_event EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x65d933e3 dvb_usb_get_hexline -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x6dd62c89 dvb_usb_generic_rw -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x745b1605 dvb_usb_device_init -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x7f5e3b3f dvb_usb_device_exit -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xcf0e04af usb_cypress_load_firmware -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xfb3d632b dvb_usb_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xa0e821a9 dvb_usb_device_init +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xdf78c7bf dvb_usb_generic_rw EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x341530cb rc_map_af9005_table -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x637f3307 af9005_rc_decode +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x7b335d19 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 0x104aebd0 dibusb2_0_streaming_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x605fe042 dibusb_rc_query -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x6c505df4 dibusb_i2c_algo +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x00b2030f dibusb_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x3bc7546f dibusb_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x3f741f57 dibusb2_0_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x5c686ba2 dibusb2_0_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x8338c741 dibusb_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 0x94f0a91a dibusb_pid_filter -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xa6142fe9 dibusb2_0_power_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xed846d9c dibusb_power_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xfaeaebfd dibusb_read_eeprom_byte -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xfec993a7 dibusb_pid_filter_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xfefb3ae7 dibusb_streaming_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0x281359db dibusb_dib3000mc_tuner_attach -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0x32901800 dibusb_dib3000mc_frontend_attach -EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x17e2529f em28xx_unregister_extension -EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0xeaad98da em28xx_register_extension -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x1ab2bdd0 go7007_read_addr -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x2217b0e3 go7007_snd_init -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x34463a3e go7007_register_encoder -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x36e4da3a go7007_update_board -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x3aa63bfc go7007_boot_encoder -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x9591e5d8 go7007_parse_video_stream -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xbd77a1ec go7007_read_interrupt -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xd87883cb go7007_snd_remove -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xdb7bff2c go7007_alloc -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x3f09bfce gspca_disconnect -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x40734978 gspca_frame_add -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x57630033 gspca_suspend -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x8451854c gspca_dev_probe2 +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x9a8f3228 dibusb_pid_filter +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xb53c5073 dibusb_read_eeprom_byte +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xc3ba6265 dibusb_rc_query +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xed0d4908 dibusb_i2c_algo +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0x63de7d78 dibusb_dib3000mc_tuner_attach +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0xc467944b dibusb_dib3000mc_frontend_attach +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x6f8fba24 em28xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0xec7bc2e5 em28xx_register_extension +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x0a7108e6 go7007_update_board +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x202ac23f go7007_read_addr +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x2878a048 go7007_read_interrupt +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x2fa2fce8 go7007_snd_remove +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x6362fece go7007_parse_video_stream +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x79b7f858 go7007_snd_init +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xaede474d go7007_alloc +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xc34e11af go7007_register_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xe70bee13 go7007_boot_encoder +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x06f12951 gspca_resume +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x1df7215a gspca_suspend +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x55151135 gspca_dev_probe +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x58935d45 gspca_dev_probe2 +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x7ea805d6 gspca_coarse_grained_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x8fd6b9a3 gspca_frame_add EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9670af2c gspca_debug -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x98316133 gspca_dev_probe -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xb3e8e012 gspca_expo_autogain -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xc4153a8d gspca_coarse_grained_expo_autogain -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xe04d6daf gspca_resume -EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x7661984a tm6000_register_extension -EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0xa8411f9c tm6000_init_digital_mode -EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0xf379b047 tm6000_unregister_extension -EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x5d4f985a ttusbdecfe_dvbs_attach -EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x76889990 ttusbdecfe_dvbt_attach -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x2a80ef57 v4l2_async_register_subdev -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x32086e59 v4l2_async_unregister_subdev -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x4110ba8b v4l2_async_notifier_register -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x6cd4b8d8 v4l2_async_notifier_init -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xe57e97c5 v4l2_async_subdev_notifier_register -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xeb4827cc v4l2_async_notifier_unregister +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xbb0c2af1 gspca_disconnect +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xc26b13c2 gspca_expo_autogain +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x1b721bc4 tm6000_init_digital_mode +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x65c72169 tm6000_register_extension +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0xa1ed33d0 tm6000_unregister_extension +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x534210c2 ttusbdecfe_dvbs_attach +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x78851108 ttusbdecfe_dvbt_attach +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x057656e4 v4l2_async_unregister_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x11325889 v4l2_async_notifier_init +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x159458ac v4l2_async_subdev_notifier_register +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x665685d7 v4l2_async_notifier_unregister +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xac4ccc80 v4l2_async_register_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xf9f8f3fd v4l2_async_notifier_register EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x459e133f v4l2_m2m_get_curr_priv EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x5352d022 v4l2_m2m_resume -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x5c038c62 v4l2_m2m_job_finish -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xbec590d6 v4l2_m2m_get_vq -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xbffb30f6 v4l2_m2m_mmap -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xc356df18 v4l2_m2m_buf_done_and_job_finish +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x8e7d6b9b v4l2_m2m_buf_done_and_job_finish +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x8ebdd06b v4l2_m2m_mmap +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xa0efb841 v4l2_m2m_get_vq EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xf626dd03 v4l2_m2m_suspend +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xfb3d8d32 v4l2_m2m_job_finish +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x012220b7 v4l2_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x04a9576f __v4l2_ctrl_s_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x050b1b07 v4l2_ctrl_subscribe_event EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0614dd5a v4l2_video_std_frame_period EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x082737e8 v4l2_ctrl_merge +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x08f05f50 __v4l2_ctrl_grab +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x10ee2387 v4l2_ctrl_activate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x11f05e7e v4l2_ctrl_g_ctrl EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x123959a1 v4l2_type_names +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1266b54b v4l2_ctrl_g_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x13eac5ca v4l2_ctrl_add_handler EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x16244fe5 v4l2_prio_check -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x184f77ce v4l2_ctrl_cluster -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x20467d9b v4l2_try_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1a5062fe v4l2_ctrl_handler_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1fea72aa v4l2_ctrl_subdev_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x20673ccb __v4l2_ctrl_modify_range EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2342f1ae v4l2_prio_open -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x23e4b0b2 v4l2_ctrl_handler_setup +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2665c52c v4l2_ctrl_find EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x28b12cc9 v4l2_format_info -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x28cccf76 v4l2_ctrl_notify -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2986bdcc v4l2_ctrl_new_std_menu_items -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x29cf002f v4l2_ctrl_new_custom -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x314b07c5 v4l2_ctrl_new_std_compound +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2d5484cf __video_register_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2e2b7f2a v4l2_ctrl_new_custom EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x315de2cf v4l2_ctrl_get_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x31eb2e57 v4l2_ctrl_new_std_menu EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x32d43420 v4l2_ctrl_get_name -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x39569017 __v4l2_ctrl_s_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x37245ac4 v4l2_s_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3a726907 video_unregister_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3a9d12bc video_ioctl2 EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3adbd595 v4l2_field_names -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3b51c2f1 v4l2_ctrl_g_ctrl EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3bdd0f94 v4l2_prio_change -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x42d8dce6 v4l2_g_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4986a702 video_ioctl2 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4aff5549 v4l2_ctrl_subscribe_event -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4ebd8e62 v4l2_s_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5364bacc v4l2_ctrl_sub_ev_ops -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5888f176 v4l2_ctrl_subdev_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5f10db20 v4l2_ctrl_subdev_subscribe_event -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5fef6aab v4l2_ctrl_poll -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x60fb6220 __v4l2_ctrl_grab -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x62c8d8b9 v4l2_ctrl_g_ctrl_int64 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6a50bf5e __v4l2_ctrl_s_ctrl_string -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6c6fb794 v4l2_ctrl_new_fwnode_properties -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7058918e video_devdata -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x75060a29 v4l2_ctrl_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7e1b0c4e v4l2_ctrl_handler_free -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7f65f736 v4l2_ctrl_handler_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x803e99ce v4l2_queryctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8055cf12 v4l2_ctrl_new_std_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x417b20be video_device_release +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x477ab817 v4l2_ctrl_auto_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4995adf2 v4l2_ctrl_new_std_compound +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x515cfbdc v4l2_ctrl_new_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5284ce24 v4l2_subdev_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x581fba49 v4l2_try_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6f34e4ed v4l2_ctrl_poll +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x75444208 v4l2_ctrl_subdev_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x79fa0c13 v4l2_ctrl_new_std_menu_items EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8106095a v4l2_prio_max -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x85456115 v4l2_ctrl_radio_filter +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x863dd793 v4l2_ctrl_radio_filter +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x88d93779 v4l2_ctrl_notify EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x89e3897d v4l2_ctrl_query_fill -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8fb667cc v4l2_subdev_call_wrappers -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9891c957 v4l2_ctrl_new_int_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9ebede1e video_device_alloc -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9f687dea v4l2_ctrl_activate -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9ff65377 v4l2_ctrl_add_handler -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa115fbde v4l2_s_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa4df866a v4l2_ctrl_request_complete -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa6c6c745 __v4l2_ctrl_s_ctrl_compound -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa87d11d5 v4l2_g_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa8a88270 __video_register_device -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb3b6afd4 video_unregister_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8a70cf0d v4l2_ctrl_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8ad0ce54 v4l2_querymenu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x910695e3 video_device_release_empty +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x918d9696 __v4l2_ctrl_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x990af622 v4l2_subdev_call_wrappers +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9b1a3420 v4l2_g_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9e039876 v4l2_ctrl_request_setup +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa3b993ca v4l2_ctrl_handler_setup +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa7f4603c v4l2_queryctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xad165a2e v4l2_ctrl_sub_ev_ops EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb77b0159 v4l2_prio_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb9559fd9 v4l2_query_ext_ctrl EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbc5671dc v4l_printk_ioctl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbcfb517a __v4l2_ctrl_s_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcc39e306 v4l2_subdev_init -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcc5066a6 v4l2_ctrl_request_setup +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc28da612 v4l2_ctrl_new_std +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc66b6927 __v4l2_ctrl_s_ctrl_compound EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcda04a5b v4l2_prio_close +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xce5147fe video_device_alloc +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcf737fea v4l2_ctrl_handler_init_class EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd16d9c01 v4l2_ctrl_get_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd1cff422 v4l2_ctrl_handler_free +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdb413676 v4l2_ctrl_request_complete EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdc7e0128 v4l2_ctrl_fill -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdf60b5ae v4l2_ctrl_new_std -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2aa32ae v4l2_query_ext_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdd211062 video_devdata +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe1e0f381 v4l2_ctrl_cluster EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2b92059 v4l2_video_std_construct -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe4b7e7b2 __v4l2_ctrl_modify_range -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe505f113 v4l2_ctrl_auto_cluster -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe7fbef0e v4l2_ctrl_handler_init_class -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xeebf693c video_device_release -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xefc180d2 v4l2_querymenu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xedfc2d7a v4l2_ctrl_new_fwnode_properties 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 0xf5bcb3f5 v4l2_ctrl_find -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf92f16a8 video_device_release_empty -EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0x2155e794 rpcif_prepare -EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0x3fd3763e rpcif_hw_init -EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0x9a5541e2 rpcif_manual_xfer -EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0xa2ce7d2f rpcif_sw_init -EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0xdaf184a8 rpcif_dirmap_read -EXPORT_SYMBOL drivers/memstick/core/memstick 0x03ddea8d memstick_add_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x04782222 memstick_suspend_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x2adedc64 memstick_new_req +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf9246125 __v4l2_ctrl_s_ctrl_string +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfcaae8b1 v4l2_g_ctrl +EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0x0eadb1cd rpcif_hw_init +EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0x317cd485 rpcif_sw_init +EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0x4fde7f10 rpcif_prepare +EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0x5ca052a7 rpcif_manual_xfer +EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0xef696b3f rpcif_dirmap_read +EXPORT_SYMBOL drivers/memstick/core/memstick 0x06ed6930 memstick_register_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0x2e5a823b memstick_next_req EXPORT_SYMBOL drivers/memstick/core/memstick 0x3ab058a6 memstick_init_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0x4b47afe0 memstick_set_rw_addr -EXPORT_SYMBOL drivers/memstick/core/memstick 0x5a863285 memstick_remove_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x3fa666f0 memstick_detect_change +EXPORT_SYMBOL drivers/memstick/core/memstick 0x46c6e40b memstick_free_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x6723380f memstick_alloc_host EXPORT_SYMBOL drivers/memstick/core/memstick 0x6c5bf3ea memstick_init_req_sg -EXPORT_SYMBOL drivers/memstick/core/memstick 0x74734882 memstick_next_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0xa24812e5 memstick_register_driver -EXPORT_SYMBOL drivers/memstick/core/memstick 0xaa4cfc89 memstick_free_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0xba17d13a memstick_unregister_driver -EXPORT_SYMBOL drivers/memstick/core/memstick 0xcb2220c7 memstick_alloc_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0xede9e87f memstick_detect_change -EXPORT_SYMBOL drivers/memstick/core/memstick 0xff88a0e8 memstick_resume_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x78d5cf97 memstick_remove_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x9d49cc5b memstick_new_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0xda0ee2b9 memstick_add_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xda76a99a memstick_unregister_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0xe9a13f42 memstick_set_rw_addr +EXPORT_SYMBOL drivers/memstick/core/memstick 0xeca2765d memstick_suspend_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xf9bec27f memstick_resume_host EXPORT_SYMBOL drivers/memstick/host/r592 0x52f1b23b memstick_debug_get_tpc_name -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x014abcd5 mpt_resume -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1bbb6833 mpt_set_taskmgmt_in_progress_flag -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x27fccf96 mpt_get_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2a77fee7 mpt_reset_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x34a269fe mpt_Soft_Hard_ResetHandler -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x3a0fdb75 mpt_clear_taskmgmt_in_progress_flag -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x3d8b30cc mpt_GetIocState +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x11d53560 mpt_halt_firmware +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x16511ab5 mpt_put_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x20ab9945 mpt_Soft_Hard_ResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2252cd5e mpt_raid_phys_disk_pg0 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2d9d5196 mpt_suspend +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2dfaceb7 mpt_config +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2ef08a8c mpt_verify_adapter +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x31096de7 mpt_free_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x3e2fbec1 mpt_event_register EXPORT_SYMBOL drivers/message/fusion/mptbase 0x502108d0 mpt_fwfault_debug -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x5b124c40 mpt_print_ioc_summary -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x5cc091e6 mptbase_sas_persist_operation +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x581544aa mptbase_sas_persist_operation EXPORT_SYMBOL drivers/message/fusion/mptbase 0x610b257e mpt_reset_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x69023e2b mpt_raid_phys_disk_get_num_paths -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x70c06b40 mpt_findImVolumes +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x6e8e9a98 mpt_alloc_fw_memory EXPORT_SYMBOL drivers/message/fusion/mptbase 0x74a0134a mpt_device_driver_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7d649e26 mpt_alloc_fw_memory -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7fe49d38 mpt_attach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x75145775 mpt_get_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x86f1c2b2 mpt_device_driver_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x8b352185 mpt_put_msg_frame_hi_pri +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x8cabebc0 mpt_set_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x979d9465 mpt_attach EXPORT_SYMBOL drivers/message/fusion/mptbase 0x981efe92 mpt_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x9bea7863 mpt_config -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa5a4984e mpt_put_msg_frame_hi_pri -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa97216d0 mpt_send_handshake_request -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xad13ab77 mpt_halt_firmware -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xada7c3de mpt_suspend -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb0c49b9e mpt_raid_phys_disk_pg0 -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc51ec1d6 mpt_HardResetHandler -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc7f9fc9e mpt_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa0541d28 mpt_clear_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc10d0c76 mpt_GetIocState +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc8809eb8 mpt_free_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xcc643182 mpt_raid_phys_disk_pg1 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xcfe49f2a mpt_detach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd8e6bd48 mpt_reset_register EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdd805159 ioc_list -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xde82983f mpt_free_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe151187e mpt_raid_phys_disk_pg1 -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe68aa9f4 mpt_put_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe364b3d5 mpt_HardResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe5a882d7 mpt_findImVolumes EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe6c1e126 mpt_event_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf109b879 mpt_event_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf1cd8fb6 mpt_free_fw_memory -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf554599a mpt_verify_adapter -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xfa7f88ed mpt_detach -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xfc35ce5d mpt_device_driver_register -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x0142cc1a mptscsih_host_attrs -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x08bb2fe6 mptscsih_taskmgmt_complete -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x13ed5e12 mptscsih_flush_running_cmds -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x2219c0c3 mptscsih_abort -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x301b4338 mptscsih_raid_id_to_num -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x36145075 mptscsih_bios_param -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x40bce25d mptscsih_show_info -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x430b0fd7 mptscsih_taskmgmt_response_code -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x66148658 mptscsih_shutdown -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x676e34b0 mptscsih_ioc_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x6f1f5784 mptscsih_change_queue_depth -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x765f39d5 mptscsih_info -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x846a61d7 mptscsih_qcmd -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x984cd90c mptscsih_io_done -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x9a314921 mptscsih_resume -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x9aeccefb mptscsih_scandv_complete -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x9d142268 mptscsih_IssueTaskMgmt -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xac64bcb9 mptscsih_bus_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xaf9bfb33 mptscsih_get_scsi_lookup -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb0278cc1 mptscsih_slave_destroy -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb17178a7 mptscsih_dev_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc5775b06 mptscsih_slave_configure -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc6c5b570 mptscsih_host_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd7a2f1ee mptscsih_suspend -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd89b28ad mptscsih_remove -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf3f89b8f mptscsih_is_phys_disk -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xfcd42427 mptscsih_event_process -EXPORT_SYMBOL drivers/mfd/axp20x 0x988ca740 axp20x_match_device -EXPORT_SYMBOL drivers/mfd/axp20x 0x9ba8c604 axp20x_device_remove -EXPORT_SYMBOL drivers/mfd/axp20x 0xa8112783 axp20x_device_probe -EXPORT_SYMBOL drivers/mfd/dln2 0x16aa61a0 dln2_register_event_cb -EXPORT_SYMBOL drivers/mfd/dln2 0x34758b00 dln2_unregister_event_cb -EXPORT_SYMBOL drivers/mfd/dln2 0xa299c8c5 dln2_transfer -EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x87dde6a2 pasic3_write_register -EXPORT_SYMBOL drivers/mfd/htc-pasic3 0xd09d8ac3 pasic3_read_register -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x0dbba583 mc13xxx_reg_read -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x0f6dbf77 mc13xxx_irq_free -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x1688ddd4 mc13xxx_irq_status -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x1a2ab762 mc13xxx_reg_write -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x4f6f1537 mc13xxx_lock -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x7e7a7679 mc13xxx_unlock -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xa682aa80 mc13xxx_get_flags -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xa87b9676 mc13xxx_reg_rmw -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xeb7568cd mc13xxx_irq_request -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xf37b1569 mc13xxx_irq_mask -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xfa598b67 mc13xxx_irq_unmask +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe7f6f650 mpt_raid_phys_disk_get_num_paths +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xec0092e0 mpt_print_ioc_summary +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf9d0790b mpt_send_handshake_request +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xfcbc4cc9 mpt_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xfcc44d5a mpt_resume +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x0431ca0d mptscsih_io_done +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x07f03cd3 mptscsih_flush_running_cmds +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x0aa9ec0d mptscsih_is_phys_disk +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x0f01d8b7 mptscsih_slave_destroy +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x25a673a9 mptscsih_taskmgmt_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x5a0088ec mptscsih_IssueTaskMgmt +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x678bb011 mptscsih_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x6aacdba7 mptscsih_dev_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x6fb6e7fa mptscsih_taskmgmt_response_code +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7018479a mptscsih_get_scsi_lookup +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7088b5a3 mptscsih_remove +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7ec0f177 mptscsih_show_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x813ad92a mptscsih_change_queue_depth +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x82ddefe7 mptscsih_event_process +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x877301f2 mptscsih_host_attrs +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x96ff5836 mptscsih_qcmd +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x9b3e64d8 mptscsih_shutdown +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa03a2712 mptscsih_host_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa8bcf452 mptscsih_suspend +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb26bfc45 mptscsih_abort +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc4508ade mptscsih_raid_id_to_num +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xcf3388da mptscsih_scandv_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd2f5c7cc mptscsih_bios_param +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd742a35b mptscsih_slave_configure +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd8a02a6d mptscsih_ioc_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xeb55502c mptscsih_resume +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xedf2122e mptscsih_bus_reset +EXPORT_SYMBOL drivers/mfd/axp20x 0x6fd1e17c axp20x_match_device +EXPORT_SYMBOL drivers/mfd/axp20x 0x78365ae9 axp20x_device_probe +EXPORT_SYMBOL drivers/mfd/axp20x 0xdba44154 axp20x_device_remove +EXPORT_SYMBOL drivers/mfd/dln2 0x32ca0576 dln2_transfer +EXPORT_SYMBOL drivers/mfd/dln2 0x4aa6da15 dln2_unregister_event_cb +EXPORT_SYMBOL drivers/mfd/dln2 0x91dec70c dln2_register_event_cb +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x9f7575e4 pasic3_read_register +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0xe7887166 pasic3_write_register +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x4243e1aa mc13xxx_lock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x44b17c9d mc13xxx_get_flags +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x4ec39291 mc13xxx_reg_read +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x6337a5d5 mc13xxx_irq_mask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x65fb5548 mc13xxx_irq_request +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x7005d2f7 mc13xxx_reg_rmw +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x930ff300 mc13xxx_unlock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x95a1058e mc13xxx_irq_unmask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xcf4302c6 mc13xxx_irq_status +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xdc5fe4f0 mc13xxx_reg_write +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xfdd2071c mc13xxx_irq_free EXPORT_SYMBOL drivers/mfd/qcom_rpm 0x832aed94 qcom_rpm_write EXPORT_SYMBOL drivers/mfd/tps65010 0x02d4ad0f tps65013_set_low_pwr EXPORT_SYMBOL drivers/mfd/tps65010 0x0c6ad2cf tps65010_config_vdcdc2 @@ -2481,475 +2481,476 @@ 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 0x35472b07 wm8994_irq_init -EXPORT_SYMBOL drivers/mfd/wm8994 0x5b56172b wm8958_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994 0x696cacb2 wm8994_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994 0xb42f7e67 wm8994_irq_exit -EXPORT_SYMBOL drivers/mfd/wm8994 0xc4341506 wm1811_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994 0xfe95bbe3 wm8994_base_regmap_config -EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x53b21f60 ad_dpot_probe -EXPORT_SYMBOL drivers/misc/ad525x_dpot 0xed8af23a ad_dpot_remove +EXPORT_SYMBOL drivers/mfd/wm8994 0x30978dc6 wm8994_irq_init +EXPORT_SYMBOL drivers/mfd/wm8994 0x634af08d wm8994_base_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0x6cfe26a2 wm1811_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0xc1a69f16 wm8994_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0xf39c248f wm8958_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0xffe7f4b7 wm8994_irq_exit +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x47d8e7de ad_dpot_remove +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x934af0a1 ad_dpot_probe EXPORT_SYMBOL drivers/misc/altera-stapl/altera-stapl 0x2fb85933 altera_init -EXPORT_SYMBOL drivers/misc/c2port/core 0x4c22d172 c2port_device_register -EXPORT_SYMBOL drivers/misc/c2port/core 0xf12c331a c2port_device_unregister -EXPORT_SYMBOL drivers/misc/tifm_core 0x24af1d6b tifm_add_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0x324725e8 tifm_unregister_driver -EXPORT_SYMBOL drivers/misc/tifm_core 0x3907fa6f tifm_has_ms_pif +EXPORT_SYMBOL drivers/misc/c2port/core 0x48405790 c2port_device_register +EXPORT_SYMBOL drivers/misc/c2port/core 0xba2d14ac c2port_device_unregister +EXPORT_SYMBOL drivers/misc/tifm_core 0x120c1638 tifm_map_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0x2a5509b5 tifm_free_device +EXPORT_SYMBOL drivers/misc/tifm_core 0x34092ff0 tifm_remove_adapter EXPORT_SYMBOL drivers/misc/tifm_core 0x39f86aa1 tifm_queue_work -EXPORT_SYMBOL drivers/misc/tifm_core 0x3f932a90 tifm_alloc_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0x67e84da5 tifm_remove_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0x8480cc66 tifm_alloc_device -EXPORT_SYMBOL drivers/misc/tifm_core 0x8abdac30 tifm_unmap_sg -EXPORT_SYMBOL drivers/misc/tifm_core 0x8e0e514c tifm_free_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0x9cc98312 tifm_register_driver -EXPORT_SYMBOL drivers/misc/tifm_core 0xa5fa5812 tifm_eject -EXPORT_SYMBOL drivers/misc/tifm_core 0xe0437fa4 tifm_map_sg -EXPORT_SYMBOL drivers/misc/tifm_core 0xf012a612 tifm_free_device -EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x48af72b2 dw_mci_runtime_resume -EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x80a3439c dw_mci_runtime_suspend -EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x90644e6c dw_mci_probe -EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0xc234e6ae dw_mci_remove -EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0x20ffee19 mmc_spi_put_pdata -EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0xf7fba859 mmc_spi_get_pdata -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x2b44d63a cfi_merge_status -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x48ff9e29 cfi_read_pri -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x66c8907f cfi_fixup -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x6fdf8956 cfi_build_cmd -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x808fd8ea cfi_varsize_frob -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xc69c4bd7 cfi_send_gen_cmd -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xd7a86a49 cfi_build_cmd_addr +EXPORT_SYMBOL drivers/misc/tifm_core 0x5c491486 tifm_register_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0x62e4e45e tifm_alloc_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x70562be5 tifm_eject +EXPORT_SYMBOL drivers/misc/tifm_core 0x9a2b011c tifm_unmap_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0x9de8b85b tifm_unregister_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0xb67b8cd6 tifm_alloc_device +EXPORT_SYMBOL drivers/misc/tifm_core 0xcde3d6e7 tifm_add_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xe5abf87c tifm_has_ms_pif +EXPORT_SYMBOL drivers/misc/tifm_core 0xf2b14530 tifm_free_adapter +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x2ab1235f dw_mci_runtime_suspend +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x5067a5fe dw_mci_probe +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0xba7d1d7b dw_mci_remove +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0xbdc5b728 dw_mci_runtime_resume +EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0x1ef56168 mmc_spi_put_pdata +EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0x86af3120 mmc_spi_get_pdata +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x5f5719c4 cfi_read_pri +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x819cd171 cfi_merge_status +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x9a82c22d cfi_build_cmd_addr +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x9f2eccf3 cfi_varsize_frob +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xa11c15e9 cfi_build_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xb40287e3 cfi_send_gen_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xd8519fe3 cfi_fixup EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xff9fa623 cfi_udelay -EXPORT_SYMBOL drivers/mtd/chips/gen_probe 0xa9474147 mtd_do_chip_probe -EXPORT_SYMBOL drivers/mtd/lpddr/lpddr_cmds 0xbf82b739 lpddr_cmdset -EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0x2aae894d onenand_addr -EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0x93621c87 flexonenand_region -EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x0a7e7658 denali_remove +EXPORT_SYMBOL drivers/mtd/chips/gen_probe 0x4db5d29c mtd_do_chip_probe +EXPORT_SYMBOL drivers/mtd/lpddr/lpddr_cmds 0x9a7f732d lpddr_cmdset +EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0x12d45ecb flexonenand_region +EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0x72017dfd onenand_addr EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x30db096f denali_calc_ecc_bytes -EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x73bb6d1b denali_init +EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x3a248204 denali_remove +EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0xcbf6e617 denali_init EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0x102603bc mtk_ecc_get_parity_bits EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0x24351100 mtk_ecc_enable -EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0x3c09ff4a of_mtk_ecc_get EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0x5437e775 mtk_ecc_disable EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0x5de55d81 mtk_ecc_get_stats EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0x6df58afb mtk_ecc_release EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0x76e53683 mtk_ecc_wait_done EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0x7eb47fa9 mtk_ecc_encode +EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0xc0225415 of_mtk_ecc_get EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0xda64ef4a mtk_ecc_adjust_strength -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x0d1064ba arcnet_open -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x1ea4ede9 arc_raw_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x2d30e295 free_arcdev -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x3a85fd99 alloc_arcdev -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x4a32a1a7 arc_proto_default -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x5b32e656 arc_proto_map +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x108d807b arc_proto_default +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x2148f617 arcnet_timeout +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x378de5c4 arc_raw_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x50e5bf3b arcnet_close +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x521f417f arcnet_open EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x7ad1d6f8 arcnet_close -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xbf8ae5db arcnet_unregister_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xc1533292 arcnet_timeout -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xd6c89cd1 arcnet_send_packet +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xa77f06c7 alloc_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xb4099847 arcnet_unregister_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xb40f4aa8 arcnet_send_packet +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xbc290b3d free_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xc170376e arc_bcast_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xe6dcc63d arc_proto_map EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecb730b0 arcnet_interrupt -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xef81cc9a arc_bcast_proto -EXPORT_SYMBOL drivers/net/arcnet/com20020 0x47a73dc0 com20020_check -EXPORT_SYMBOL drivers/net/arcnet/com20020 0xc14362c3 com20020_netdev_ops -EXPORT_SYMBOL drivers/net/arcnet/com20020 0xdb04f8ae com20020_found -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x05983efe b53_get_ethtool_stats -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x0afb9591 b53_enable_port -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x102e852b b53_br_leave -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x1233f0bf b53_switch_alloc -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x18cfdc02 b53_get_tag_protocol -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x1f45a7f4 b53_vlan_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x2d50ad69 b53_mirror_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x2f3e59a6 b53_br_fast_age -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x3aced9b9 b53_phylink_mac_link_up -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x3e977d0a b53_disable_port -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x41108481 b53_fdb_dump -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x4d5f4ea6 b53_phylink_validate -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x4dd0f8b8 b53_brcm_hdr_setup -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x51fa9408 b53_br_flags -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x52692c72 b53_port_event -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x5671415c b53_set_mac_eee -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x57c2feec b53_setup_devlink_resources -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x6033c7a3 b53_phylink_mac_link_state -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x6a402ec9 b53_mdb_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x6aab2f5f b53_br_set_stp_state -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x76f9f7c8 b53_eee_init -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x8a19a397 b53_mdb_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x8ab673ca b53_br_join -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x8d37173f b53_get_ethtool_phy_stats -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x93789f68 b53_get_mac_eee -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x94c87a62 b53_get_sset_count -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x9514f846 b53_vlan_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x9d053071 b53_fdb_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa02cea21 b53_mirror_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xaed4ef61 b53_eee_enable_set -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xafc4ea0f b53_fdb_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xbb60145c b53_imp_vlan_setup -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc1fa136e b53_phylink_mac_link_down -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc8f803e3 b53_phylink_mac_config -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xca17ca63 b53_br_flags_pre -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd836e711 b53_configure_vlan -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xdd6a1675 b53_switch_register -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xe2f154da b53_switch_detect -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xe6a8b3d6 b53_get_strings -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf2161bf3 b53_phylink_mac_an_restart -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf65b0fb7 b53_vlan_filtering -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x171a27b4 b53_serdes_link_state -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x4f46bdd9 b53_serdes_config -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xa9a07bc0 b53_serdes_init -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xca765543 b53_serdes_phylink_validate -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xeaf0e261 b53_serdes_an_restart -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xf13bd572 b53_serdes_link_set -EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x190e908f lan9303_remove -EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x1b283716 lan9303_shutdown -EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x963e5072 lan9303_probe +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x3c2be12c com20020_check +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x475ed4c9 com20020_netdev_ops +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x6f981c44 com20020_found +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x12d511ae b53_br_join +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x130e8ceb b53_mdb_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x281e3cbf b53_vlan_filtering +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x2b94aa3d b53_mirror_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x2d1cf745 b53_get_ethtool_phy_stats +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x32ca68c8 b53_get_tag_protocol +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x44fc1f84 b53_get_ethtool_stats +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x463dd0e4 b53_set_mac_eee +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x4aee4cae b53_enable_port +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x51ad24a6 b53_switch_detect +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x5340ef2e b53_disable_port +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x57b7bba5 b53_brcm_hdr_setup +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x581b2005 b53_phylink_mac_config +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x58443173 b53_get_sset_count +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x5af20a0a b53_get_mac_eee +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x622237f1 b53_br_fast_age +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x62a39c32 b53_configure_vlan +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x74dc0134 b53_phylink_validate +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x785c1202 b53_phylink_mac_an_restart +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x800edb8a b53_phylink_mac_link_down +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x8032cc66 b53_br_flags_pre +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x80b4a598 b53_imp_vlan_setup +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x8f02ebe9 b53_vlan_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x9dc11843 b53_get_strings +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x9f6183a9 b53_fdb_dump +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa7b053ba b53_eee_init +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa987f3bd b53_phylink_mac_link_up +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb680bc34 b53_port_event +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xbb9a03ae b53_setup_devlink_resources +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc1e28767 b53_switch_register +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc50f7ac9 b53_br_leave +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc76bb866 b53_vlan_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xca1f837e b53_phylink_mac_link_state +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xcf5e0d09 b53_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd4dae3a3 b53_eee_enable_set +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xe4ab7d2c b53_br_set_stp_state +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xe527c8ea b53_mdb_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf28eaf51 b53_br_flags +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf4f1eacf b53_fdb_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf611aefb b53_fdb_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf97d6dd4 b53_mirror_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x30bff42e b53_serdes_config +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x334e8ce3 b53_serdes_an_restart +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x594fb4ab b53_serdes_init +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xabd484ec b53_serdes_link_set +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xd742fdb7 b53_serdes_phylink_validate +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xdc0cefc1 b53_serdes_link_state +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x90ed748c lan9303_shutdown EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xada83f40 lan9303_register_set -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz8795 0x2e960fdb ksz8_switch_register -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz9477 0x55dc1463 ksz9477_switch_register -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0xb9848de3 ksz_switch_remove -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0xc36fdf2a ksz_switch_register -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0xc4765677 ksz_switch_alloc -EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x5ce45ca3 vsc73xx_probe -EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x72a53a52 vsc73xx_shutdown -EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x871fc549 vsc73xx_remove +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xc66d40fe lan9303_probe +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xf7762308 lan9303_remove +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz8795 0x56c83423 ksz8_switch_register +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz9477 0x90b39692 ksz9477_switch_register +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0x1d5f7070 ksz_switch_register +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0xa42225c3 ksz_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0xf5f6f965 ksz_switch_remove +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x0c838aeb vsc73xx_probe EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x99d242fe vsc73xx_is_addr_valid -EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x4099823a xrs700x_switch_shutdown -EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xa0156b20 xrs700x_switch_register -EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xaa6318e6 xrs700x_switch_remove +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0xb2f3ed21 vsc73xx_shutdown +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0xf96595c3 vsc73xx_remove +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x073f879a xrs700x_switch_shutdown +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x5c33a5d8 xrs700x_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x5f346564 xrs700x_switch_register 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 0xe51a1829 xrs700x_switch_alloc EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xe63c509a xrs7004e_info EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xecf95983 xrs7003e_info +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xf874b56a xrs700x_switch_remove +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x0ae09c7c ei_open +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x0b3e3106 ei_netdev_ops EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x119721ac ei_interrupt -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x1e539ae3 ei_start_xmit -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x66a711e7 ei_get_stats -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x71fb1c35 NS8390_init -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x7dc77579 __alloc_ei_netdev -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x7e5a1a72 ei_open -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x85e735a3 ei_close -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x9f3db00e ei_tx_timeout -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xa5448e79 ei_poll -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xe2fb6db5 ei_netdev_ops -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xe95a0020 ei_set_multicast_list -EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnxt/bnxt_en 0xf598fb26 bnxt_ulp_probe +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x5448265f ei_set_multicast_list +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x55c49254 ei_start_xmit +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x55cc55f3 ei_close +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x5af0920c ei_get_stats +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x6f5a5d23 ei_poll +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x9736cd06 __alloc_ei_netdev +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x9be2f68f ei_tx_timeout +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xf5e1478f NS8390_init +EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnxt/bnxt_en 0x5feb8551 bnxt_ulp_probe EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x636af174 cnic_unregister_driver -EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x969e70a1 cnic_register_driver -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x0e90e59f dev2t3cdev -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x1082269d cxgb3_free_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x39e843f1 cxgb3_alloc_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x6383c6d8 t3_l2t_send_event -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x70fb460c cxgb3_unregister_client -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x786d1671 t3_l2t_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x8b3fcebf cxgb3_queue_tid_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x9c6fd429 cxgb3_insert_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x9f3f7d87 cxgb3_ofld_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xa130381f t3_register_cpl_handler -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xa659c3fa cxgb3_alloc_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xa66abb7a cxgb3_free_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xb48dcf7b cxgb3_remove_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xb9f96820 t3_l2t_send_slow -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xf09ae688 t3_l2e_free -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xfee6bda7 cxgb3_register_client -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x015411e3 cxgb4_alloc_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x02203315 cxgb4_l2t_send +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0xea0473e5 cnic_register_driver +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x0dd299a4 cxgb3_register_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x177d2c9e cxgb3_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x1a890ae9 cxgb3_queue_tid_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x286d8b97 dev2t3cdev +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x2c0cf4d7 cxgb3_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x3681421a t3_l2t_send_event +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x44523f7d cxgb3_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x57eade71 cxgb3_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x732fff9e cxgb3_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x73eac124 cxgb3_insert_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x77695e64 t3_l2e_free +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x9bc178be cxgb3_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xa2a1405b t3_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xd19e2ed6 t3_l2t_send_slow +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xd20dda33 cxgb3_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xdb0afe28 t3_register_cpl_handler +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x01af0989 cxgb4_l2t_release EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0f1a5528 cxgb4_unregister_uld -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x14ecb04b cxgb4_register_uld -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x176aa4fa cxgb4_l2t_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2007fc5b cxgb4_ring_tx_db -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x27798576 cxgb4_clip_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2913d19d t4_cleanup_clip_tbl -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x29edfe6b cxgb4_map_skb -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x318d1979 cxgb4_get_tcp_stats -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x36b96aa9 cxgb4_free_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4cd98b2a cxgb4_alloc_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4fe3557a cxgb4_write_partial_sgl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0fcc7952 cxgb4_l2t_alloc_switching +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1b3ce515 cxgb4_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1f505359 cxgb4_check_l2t_valid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2501cd4e cxgb4_dbfifo_count +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2681e210 cxgb4_write_partial_sgl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x339703a4 cxgb4_immdata_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x404aa7e8 cxgb4_l2t_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x40526b19 cxgb4_create_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x45de3def cxgb4_select_ntuple +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4615fa36 cxgb4_port_chan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x48841b5c cxgb4_update_root_dev_clip +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4d3cad0e cxgb4_clip_get EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x50ee5c07 cxgb4_best_aligned_mtu -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5457adbd cxgb4_iscsi_init -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x62514fef cxgb4_inline_tx_skb -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x64615b29 cxgb4_update_root_dev_clip -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x74908dd7 cxgb4_alloc_sftid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x764d3aaa cxgb4_check_l2t_valid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x78548da8 cxgb4_read_sge_timestamp -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7c8f067a cxgb4_create_server6 -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x806902d2 cxgb4_port_viid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8d969c5f cxgb4_sync_txq_pidx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8e3967b7 cxgb4_dbfifo_count -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8f3c061c cxgb4_write_sgl -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9117a468 cxgb4_remove_server -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9a19379b cxgb4_remove_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9a3fc893 cxgb4_create_server_filter -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa1969457 cxgb4_read_tpte -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa23aa324 cxgb4_port_idx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xaa178980 cxgb4_ofld_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb0a22310 cxgb4_clip_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb324ace9 cxgb4_immdata_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb3730840 cxgb4_port_chan -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb70c0732 cxgb4_create_server -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb8b463b3 cxgb4_pktgl_to_skb -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc36139c5 cxgb4_free_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc68e1494 cxgb4_select_ntuple +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x520b6062 cxgb4_flush_eq_cache +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x595607c2 cxgb4_smt_alloc_switching +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x60bd7fac cxgb4_map_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x66c8338f cxgb4_port_viid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x70d97fa2 cxgb4_get_srq_entry +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x75e754d9 cxgb4_get_tcp_stats +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x780bfa97 cxgb4_crypto_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8290e366 cxgb4_pktgl_to_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x835a4c2a cxgb4_create_server6 +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9524b3f3 t4_cleanup_clip_tbl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x961c5619 cxgb4_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa407aa47 cxgb4_clip_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa920c02d cxgb4_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb14273f9 cxgb4_sync_txq_pidx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xbf3bc3df cxgb4_ring_tx_db +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc7924cd2 cxgb4_iscsi_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc7cf7e38 cxgb4_remove_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc7ec0daf cxgb4_inline_tx_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd641f612 cxgb4_free_atid EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd69a0294 cxgb4_best_mtu -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd9acb10b cxgb4_bar2_sge_qregs -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xdeba8472 cxgb4_reclaim_completed_tx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd7b35447 cxgb4_write_sgl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xdad0edc6 cxgb4_port_e2cchan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xdbd7ccaa cxgb4_remove_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xdd3eab25 cxgb4_bar2_sge_qregs +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xdea75195 cxgb4_read_sge_timestamp EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xded2869b cxgb4_smt_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe06da3b1 cxgb4_flush_eq_cache -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe9f9d874 cxgb4_l2t_alloc_switching -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xec48fbae cxgb4_get_srq_entry -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xee855b4f cxgb4_crypto_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xef3d62a9 cxgb4_remove_server_filter -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf13456eb cxgb4_port_e2cchan -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf3774903 cxgb4_smt_alloc_switching -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf621984e cxgb4_l2t_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x08fcdf91 cxgbi_ppm_make_ppod_hdr -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x14afd6a5 cxgbi_ppm_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x15bc0097 cxgbi_ppm_ppods_reserve +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe0bc3895 cxgb4_create_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe9bfffa0 cxgb4_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xec89b1d4 cxgb4_reclaim_completed_tx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xecbe3c22 cxgb4_register_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xecd2a222 cxgb4_read_tpte +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xede7ac56 cxgb4_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf32f0d72 cxgb4_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf6dd57e5 cxgb4_port_idx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf9fe4d27 cxgb4_alloc_sftid 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 0x2f617c95 cxgbi_ppm_ppod_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x8e82d23d cxgbi_ppm_init -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xc8860cbe cxgb_find_route6 -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xf9984444 cxgb_find_route -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x05933f32 enic_api_devcmd_proxy_by_index -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x0903d8f9 vnic_dev_get_pdev -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x2cb62036 vnic_dev_get_res -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x6192e612 vnic_dev_get_res_count -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xd7c905c1 vnic_dev_unregister -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xfbf531d2 vnic_dev_register +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x2c6e85c1 cxgbi_ppm_make_ppod_hdr +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x72006e5f cxgbi_ppm_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x8464b890 cxgb_find_route6 +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x97f4420e cxgbi_ppm_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xa7ae2117 cxgbi_ppm_ppods_reserve +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xba817e69 cxgb_find_route +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xf02dd914 cxgbi_ppm_ppod_release +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x00a3806b vnic_dev_get_res_count +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x4b999cd7 enic_api_devcmd_proxy_by_index +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x910b96cb vnic_dev_unregister +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x932dcea9 vnic_dev_get_res +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xe460e671 vnic_dev_register +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xffa52456 vnic_dev_get_pdev +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x1187dd78 be_roce_unregister_driver EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x4e2e10d2 be_roce_mcc_cmd -EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xa568c09f be_roce_unregister_driver -EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xf03e147e be_roce_register_driver -EXPORT_SYMBOL drivers/net/ethernet/freescale/enetc/fsl-enetc-ierb 0x443d1714 enetc_ierb_register_pf +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xda19967a be_roce_register_driver +EXPORT_SYMBOL drivers/net/ethernet/freescale/enetc/fsl-enetc-ierb 0xb99d048f enetc_ierb_register_pf EXPORT_SYMBOL drivers/net/ethernet/freescale/enetc/fsl-enetc-ptp 0x5431a304 enetc_phc_index -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x068768de hnae_reinit_handle -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x1a480460 hnae_put_handle -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x55dad95e hnae_ae_unregister -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x7079b87d hnae_ae_register +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x04389592 hnae_reinit_handle +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x1ef83482 hnae_ae_unregister +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x5abf985d hnae_get_handle +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x841d3273 hnae_ae_register EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xb1266858 hnae_register_notifier -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xce039d1d hnae_get_handle +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xb22ba8bb hnae_put_handle EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xdf24adef hnae_unregister_notifier -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hns_dsaf 0xa7ffe671 hns_dsaf_roce_reset -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x1dfdc0f2 hnae3_register_ae_algo -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x28b213a2 hnae3_set_client_init_flag -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x625d535e hnae3_unregister_ae_algo -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x808e4592 hnae3_unregister_ae_algo_prepare -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xaa287bd8 hnae3_register_client -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xb7d99b33 hnae3_unregister_client -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xe3342735 hnae3_unregister_ae_dev -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xfec5c7de hnae3_register_ae_dev -EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0x4733bb78 iavf_unregister_client -EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0xde4b185a iavf_register_client -EXPORT_SYMBOL drivers/net/ethernet/marvell/prestera/prestera 0x6559dc2a prestera_device_unregister -EXPORT_SYMBOL drivers/net/ethernet/marvell/prestera/prestera 0x8b429bad prestera_device_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x054dc404 mlx4_get_parav_qkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x093fbd08 mlx4_gen_port_state_change_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0acfc08e mlx4_get_module_info -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0af7fd4a mlx4_ALLOCATE_VPP_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x12b90546 mlx4_SET_PORT_user_mtu -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x18d1bb97 mlx4_SET_VPORT_QOS_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2157d47f mlx4_assign_eq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2afe8ad1 mlx4_SET_PORT_fcs_check -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4416c6bd mlx4_max_tc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x457b789a mlx4_SET_PORT_general -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4ce4d265 get_phv_bit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x54c4745e mlx4_query_diag_counters -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x551b3e17 mlx4_release_eq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5a63b5e6 mlx4_is_eq_vector_valid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7016f825 mlx4_get_cpu_rmap -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x72aa0ca5 mlx4_test_interrupt -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x78a96a10 mlx4_SET_PORT_PRIO2TC -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7bbac9ec mlx4_SET_VPORT_QOS_set +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hns_dsaf 0xde2d786c hns_dsaf_roce_reset +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x021b8660 hnae3_set_client_init_flag +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x8507f880 hnae3_unregister_ae_dev +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x9f95fc21 hnae3_unregister_ae_algo +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xa47c489e hnae3_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xc78583f5 hnae3_register_ae_algo +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xc7ebd029 hnae3_register_client +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xcd06854d hnae3_unregister_ae_algo_prepare +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xe6906037 hnae3_register_ae_dev +EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0x9140b215 iavf_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0xb385747a iavf_register_client +EXPORT_SYMBOL drivers/net/ethernet/marvell/prestera/prestera 0x43760950 prestera_device_register +EXPORT_SYMBOL drivers/net/ethernet/marvell/prestera/prestera 0x8d5d116b prestera_device_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0070f019 mlx4_get_is_vlan_offload_disabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0482a83f mlx4_SET_PORT_PRIO2TC +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x11884505 mlx4_SET_PORT_BEACON +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x15f0ad1e mlx4_is_eq_vector_valid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1b8dd54d mlx4_assign_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2496f9e7 mlx4_gen_slaves_port_mgt_ev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x29c6e7b4 mlx4_SET_PORT_user_mtu +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3890111a mlx4_query_diag_counters +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x44655c6a mlx4_tunnel_steer_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x571ad76c mlx4_get_slave_from_roce_gid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x57aa578f mlx4_get_cpu_rmap +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5a5074d5 mlx4_SET_PORT_general +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5b77b213 mlx4_get_roce_gid_from_slave +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x61b0a535 mlx4_is_eq_shared +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6f7b066d mlx4_eq_get_irq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x78b25e94 mlx4_SET_PORT_fcs_check EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fdde0b4 mlx4_handle_eth_header_mcast_prio -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8407a9f8 set_and_calc_slave_port_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x882ba716 mlx4_get_slave_pkey_gid_tbl_len -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8a830176 mlx4_get_slave_node_guid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8bf43f63 mlx4_sync_pkey_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9929c759 mlx4_put_slave_node_guid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9c4a16a0 mlx4_tunnel_steer_add -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa8a866bd mlx4_get_is_vlan_offload_disabled -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xab290805 mlx4_SET_PORT_BEACON -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xae279413 mlx4_eq_get_irq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbb58875d set_phv_bit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbfb61c24 mlx4_is_slave_active -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc0bbddfc mlx4_SET_PORT_SCHEDULER -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc11031f6 mlx4_SET_PORT_qpn_calc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc2a3dfeb mlx4_test_async -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc8e966b4 mlx4_SET_PORT_VXLAN -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xce0eb021 mlx4_get_slave_port_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcf0fa17b mlx4_SET_MCAST_FLTR -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd12c7966 mlx4_get_slave_from_roce_gid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd1e7f3ff mlx4_ALLOCATE_VPP_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xde4e6569 mlx4_SET_PORT_user_mac -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe21793e9 mlx4_get_roce_gid_from_slave -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe6e2dcd7 mlx4_get_eqs_per_port -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe8b062ae mlx4_is_eq_shared -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe8b3dcf3 mlx4_gen_guid_change_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xec4724c4 mlx4_gen_pkey_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xed05970b mlx4_gen_slaves_port_mgt_ev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x05c10be9 mlx5_lag_get_roce_netdev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x06327740 mlx5_fpga_mem_read -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x073f5e53 mlx5_cmd_free_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x07aa8b3e mlx5_lag_is_roce -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0b69cf85 mlx5_nic_vport_disable_roce -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0dd76e31 mlx5_lag_get_peer_mdev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0e279efc mlx5_lag_is_active -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0eabc69b __traceiter_mlx5_fs_del_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x820f2d8b set_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8b5e5270 mlx4_ALLOCATE_VPP_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8c59b425 mlx4_sync_pkey_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8d7efe3b mlx4_SET_PORT_SCHEDULER +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x954fa0be mlx4_get_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x961ba803 set_and_calc_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9b399830 mlx4_get_eqs_per_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9b6696ff mlx4_SET_PORT_qpn_calc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9f4a3bd3 mlx4_get_parav_qkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa2f1961b mlx4_SET_VPORT_QOS_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa41a5a37 get_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa5aa7627 mlx4_is_slave_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa95ca056 mlx4_put_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb1e93eb8 mlx4_test_interrupt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbe08715b mlx4_gen_pkey_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbf282d96 mlx4_test_async +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc3832192 mlx4_get_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc73d80b5 mlx4_get_slave_pkey_gid_tbl_len +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc75abf33 mlx4_SET_VPORT_QOS_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd0605f50 mlx4_max_tc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd8df61df mlx4_SET_MCAST_FLTR +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd998d5c2 mlx4_gen_guid_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe0e95038 mlx4_SET_PORT_user_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe285df1d mlx4_gen_port_state_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe5f69334 mlx4_SET_PORT_VXLAN +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf496e157 mlx4_ALLOCATE_VPP_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf7317af9 mlx4_get_module_info +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfa5f85ac mlx4_release_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x002405b1 mlx5_core_create_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x06d84b84 mlx5_free_bfreg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x07ce0b29 mlx5_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x091309e3 mlx5_core_detach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0955737e mlx5_core_destroy_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0ea34c81 mlx5_core_destroy_tis 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 0x14c552da mlx5_cmd_exec_cb -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x15116d51 mlx5_fpga_mem_write -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x16a566e3 mlx5_modify_header_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0f99391a mlx5_debug_qp_remove +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0fd02dcc __traceiter_mlx5_fs_set_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x10022608 mlx5_packet_reformat_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1151eade mlx5_qp_debugfs_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x124c5776 mlx5_cmd_exec_polling +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x12827762 mlx5_core_modify_cq_moderation +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x133367ee mlx5_eswitch_get_vport_metadata_for_match +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1483e54d mlx5_lag_query_cong_counters +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1603155a mlx5_fc_query 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 0x18f58438 mlx5_fpga_sbu_conn_create -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1bef88df mlx5_eq_get_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1e37a44b mlx5_qp_debugfs_init -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1fef73c5 mlx5_core_destroy_tir -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x208e0af0 mlx5_packet_reformat_dealloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x23283786 mlx5_eswitch_uplink_get_proto_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x26a82cde mlx5_core_modify_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x282d0a21 mlx5_debug_qp_add -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2db3f580 mlx5_cmd_destroy_vport_lag -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x308d552f mlx5_get_uars_page -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x32714166 mlx5_core_destroy_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x18d5efd0 mlx5_core_destroy_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1a818fe3 mlx5_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1b476d5f mlx5_rsc_dump_next +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1bc9077a mlx5_eq_destroy_generic +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1c56512a mlx5_vector2eqn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1d01d61a mlx5_core_create_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x234e3c9e mlx5_eswitch_add_send_to_vport_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x24fab9e6 mlx5_debug_qp_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x26e55373 mlx5_eq_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x271bfb6e mlx5_eq_get_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x27384a0c mlx5_core_dealloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2eb9b911 mlx5_get_flow_namespace +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2efeda51 mlx5_mpfs_del_mac +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 0x30d5d44a mlx5_core_destroy_psv 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 0x357a7118 mlx5_core_modify_tis EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3699fe83 __traceiter_mlx5_fs_del_ft -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x37a1c072 mlx5_eq_update_ci -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3a8fb153 mlx5_notifier_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3b6a3eaf mlx5_core_modify_sq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3c0af24a mlx5_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3b056338 mlx5_query_ib_port_oper +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3c02dd73 mlx5_rl_is_in_range EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3c3a78b7 __traceiter_mlx5_fs_add_ft -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x45a9085c mlx5_core_destroy_tis -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x463ceb83 mlx5_core_query_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x46d4c337 mlx5_fs_remove_rx_underlay_qpn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x48bc5a2a mlx5_core_destroy_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x499a2e8a mlx5_destroy_flow_group -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4b09fab6 __traceiter_mlx5_fs_add_fg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4c7a4bff mlx5_eq_create_generic +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3cd120e1 mlx5_lag_get_peer_mdev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3d825e33 __traceiter_mlx5_fs_del_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3ee23fe9 mlx5_fs_remove_rx_underlay_qpn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x40f5c93d mlx5_fpga_sbu_conn_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x447df8ae mlx5_fpga_mem_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x452b4e5e mlx5_eq_disable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x45de31e9 mlx5_eq_update_ci +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x462b1b62 mlx5_rsc_dump_cmd_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4782ce84 mlx5_eswitch_vport_match_metadata_enabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4847734e mlx5_core_destroy_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x48b47f2b mlx5_add_flow_rules +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4b12a203 mlx5_rl_remove_rate_raw EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4d5f5c07 __SCK__tp_func_mlx5_fs_del_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4fb57d89 mlx5_mpfs_add_mac -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5021d465 mlx5_vector2eqn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x50c9d962 mlx5_rl_add_rate -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x52c78797 mlx5_lag_get_slave_port -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x546aa551 __traceiter_mlx5_fs_del_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4e5b10c4 mlx5_rl_remove_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4edaad16 mlx5_lag_is_sriov +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x527676d2 mlx5_debugfs_root +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x53f060c7 mlx5_fpga_mem_read 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 0x55f67fe3 mlx5_core_create_tis -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x56c5576a mlx5_core_detach_mcg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x572b4736 __traceiter_mlx5_fs_del_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x58b60819 mlx5_get_flow_namespace -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5bd874ba mlx5_eq_enable -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5bfef9f2 mlx5_core_query_sq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5cebe3e9 mlx5_notifier_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5f9c24fa mlx5_eq_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x582f9c98 mlx5_mpfs_add_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5a63704e mlx5_core_create_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5a8d4fcf mlx5_fpga_get_sbu_caps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5ce5e8a8 mlx5_cmd_init_async_ctx +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5d48c82f mlx5_core_roce_gid_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5ed6d6bc mlx5_put_uars_page EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x61492bb7 mlx5_rl_are_equal -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x682f2d53 mlx5_core_query_vendor_id -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x68e1aa03 mlx5_core_dealloc_pd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6b0bdd07 mlx5_eswitch_get_core_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6bbfc6e3 mlx5_rl_add_rate_raw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6e5390e1 mlx5_cmd_alloc_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x725ace60 mlx5_rl_is_in_range +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x629ed97b mlx5_core_alloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x643ec50a mlx5_core_modify_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6490e1f0 mlx5_eswitch_get_encap_mode +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x661919f8 mlx5_eswitch_get_vport_metadata_for_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x66f37c37 mlx5_rl_add_rate_raw +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 0x6d14f0cd mlx5_comp_irq_get_affinity_mask +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6d1fc45e mlx5_core_query_vendor_id 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 0x726e4d6f mlx5_core_alloc_transport_domain -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x72e9fc5b mlx5_core_create_tir -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x74b98eb5 mlx5_get_fdb_sub_ns +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x731cf7fb mlx5_core_create_cq 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 0x76d82cdc mlx5_core_alloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x767113ba mlx5_eq_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x768f417a mlx5_core_attach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x76c22523 mlx5_buf_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7860a914 mlx5_modify_header_dealloc 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 0x7b359a09 __SCK__tp_func_mlx5_fw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7ba9abfd mlx5_eswitch_get_encap_mode -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7e5e4357 mlx5_core_query_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x80581f85 mlx5_eswitch_register_vport_reps -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x80f54ef9 mlx5_modify_header_dealloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x826cd78c mlx5_eswitch_add_send_to_vport_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8309a55a mlx5_alloc_bfreg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x882b41c8 mlx5_debug_qp_remove -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x88a5bb2e mlx5_core_roce_gid_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8af7cf20 mlx5_cmd_exec_polling -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8b9ec26f mlx5_core_destroy_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8d2d4b32 mlx5_buf_alloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x900340c3 mlx5_debugfs_root -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9248a05d mlx5_free_bfreg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9273a002 __traceiter_mlx5_fs_add_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x928f7589 mlx5_fpga_get_sbu_caps -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x92f8aa20 __traceiter_mlx5_fw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x952efe6c mlx5_qp_debugfs_cleanup -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9614a325 mlx5_core_create_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7bc4b9ac mlx5_create_flow_group +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7bd13b0b mlx5_fs_add_rx_underlay_qpn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7ed7abfc mlx5_eswitch_get_proto_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x820edd1d mlx5_eswitch_get_core_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x84886512 mlx5_core_modify_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8834fed8 mlx5_lag_is_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x89730224 mlx5_core_alloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x89be8a5a mlx5_lag_get_roce_netdev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x89f18ad7 mlx5_fpga_sbu_conn_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x91dc57ae mlx5_core_destroy_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x92452779 __traceiter_mlx5_fs_add_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x94767951 mlx5_alloc_bfreg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x94b55dbb mlx5_lag_is_shared_fdb 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 0x9881ffdf mlx5_put_uars_page -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x98e03c9d mlx5_core_query_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x98eac3cd mlx5_core_modify_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x993132b4 mlx5_del_flow_rules -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9a26e6fd mlx5_cmd_init_async_ctx +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x976ced03 mlx5_eswitch_reg_c1_loopback_enabled EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9a962fb2 mlx5_create_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9d0dafcb mlx5_rdma_rn_get_params +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9b8a9e06 mlx5_core_create_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 0x9ee56339 mlx5_lag_is_shared_fdb -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa27a51dd mlx5_eswitch_get_proto_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa4031bd7 mlx5_fc_query -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa4c2b450 mlx5_eswitch_vport_match_metadata_enabled -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaaa671bd mlx5_eq_disable -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xab6c5dde mlx5_rl_remove_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa39c3488 mlx5_core_modify_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xabaacd02 mlx5_fc_create 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 0xadc11f28 __traceiter_mlx5_fs_set_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaf6b4d95 mlx5_fc_create -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb1f16c4f mlx5_core_create_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb505bdd1 mlx5_rsc_dump_cmd_create -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb530ecf4 mlx5_eswitch_unregister_vport_reps -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb538d320 mlx5_rsc_dump_next +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xafd27c85 __traceiter_mlx5_fw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb502a8ef mlx5_lag_is_master EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb631ebfb __tracepoint_mlx5_fw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb8515b37 mlx5_eq_notifier_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb9b40dc4 mlx5_packet_reformat_alloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbdf99c3e mlx5_core_create_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb6e1d2b5 mlx5_core_modify_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb9d545c5 mlx5_core_query_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb9fdbed4 mlx5_eq_create_generic +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xba5710e6 mlx5_cmd_destroy_vport_lag 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 0xbecd5c7a mlx5_cmd_free_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbf779af5 mlx5_cmd_cleanup_async_ctx +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbffe2f33 mlx5_core_dealloc_pd EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc06a92a3 mlx5_create_lag_demux_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc4d871c2 mlx5_lag_is_master -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc85e49d2 mlx5_comp_vectors_count -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xca7cfdf7 mlx5_core_create_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc2bbce76 mlx5_core_create_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc3f7aff1 mlx5_core_create_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc552fe41 mlx5_eswitch_vport_rep +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc6a6b4a2 mlx5_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc8fa4098 __traceiter_mlx5_fs_del_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc9657842 mlx5_core_query_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcb2fb7cf mlx5_rdma_rn_get_params 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 0xcdb4d457 mlx5_eswitch_vport_rep -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcf6b1c0d mlx5_add_flow_rules -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd7f2966f mlx5_eswitch_get_vport_metadata_for_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xda08f787 mlx5_cmd_cleanup_async_ctx -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdd742184 mlx5_lag_is_sriov -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdef5fa23 mlx5_eq_destroy_generic +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcd1e8567 mlx5_cmd_exec_cb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd0f050c4 mlx5_eswitch_uplink_get_proto_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd3ebfe76 mlx5_eswitch_register_vport_reps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd616448a mlx5_get_uars_page +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd88dc179 mlx5_lag_get_slave_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd8b70bbc mlx5_core_destroy_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd8ebbcbe mlx5_comp_vectors_count +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdbd7f115 mlx5_qp_debugfs_cleanup +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdc189e7f mlx5_core_query_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdced47a1 mlx5_eq_enable 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 0xe0752782 mlx5_eswitch_reg_c1_loopback_enabled -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe29d50c8 mlx5_fpga_sbu_conn_sendmsg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe3bce7a0 mlx5_core_destroy_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe0f1f00b mlx5_modify_header_alloc EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe3d171fd mlx5_create_auto_grouped_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe59c694e mlx5_create_flow_group +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe444f878 mlx5_packet_reformat_dealloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe54db4e1 mlx5_cmd_alloc_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe601351e mlx5_nic_vport_disable_roce +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe663a3e9 mlx5_core_query_cq 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 0xee02361b mlx5_core_dealloc_transport_domain -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xefb538fd mlx5_fs_add_rx_underlay_qpn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf04ccc51 mlx5_comp_irq_get_affinity_mask -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf3466ef6 mlx5_core_destroy_rqt -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf42e69d2 mlx5_core_modify_cq_moderation -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf548566f mlx5_fc_destroy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf5c0f476 mlx5_core_create_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf65ec0e1 mlx5_lag_query_cong_counters -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf7ee2d29 mlx5_rl_remove_rate_raw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeda48098 mlx5_cmd_create_vport_lag +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xef3cacb2 mlx5_rl_add_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf0d38132 mlx5_fc_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf1b42da7 mlx5_fpga_sbu_conn_sendmsg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf3588613 mlx5_eswitch_unregister_vport_reps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf52ddfb1 mlx5_lag_is_roce +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf5854042 mlx5_del_flow_rules 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 0xf94cfda1 mlx5_destroy_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfb5dc693 mlx5_mpfs_del_mac -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfb91d79a mlx5_query_ib_port_oper -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfba90b45 mlx5_eswitch_get_vport_metadata_for_match +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfc71cabb mlx5_get_fdb_sub_ns 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 0xfd6e7c1a mlx5_core_attach_mcg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfda7fb64 mlx5_cmd_create_vport_lag -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xffb70da6 mlx5_fpga_sbu_conn_destroy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxfw/mlxfw 0xaa0137da mlxfw_firmware_flash +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxfw/mlxfw 0x4f0615b6 mlxfw_firmware_flash 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 0x0bbc11ad mlxsw_core_driver_unregister EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0ca34ccf mlxsw_core_max_ports EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0e81c09c mlxsw_afk_destroy EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x120a1738 mlxsw_core_port_init EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x15801382 mlxsw_afk_key_info_put EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x18b0ad00 mlxsw_afa_block_append_police -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x1953188a mlxsw_core_rx_listener_unregister EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x19fa5852 mlxsw_core_flush_owq EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x1c6605f6 mlxsw_afa_block_append_qos_switch_prio +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x1e25f33b mlxsw_core_skb_receive EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x202693f0 mlxsw_afa_block_cur_set EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x21daf3af mlxsw_afa_block_append_qos_dsfield EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x23eddc68 mlxsw_core_cpu_port_init -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x27ec6001 mlxsw_core_skb_transmit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2b41ceeb mlxsw_core_driver_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 0x30d72838 mlxsw_env_get_module_eeprom_by_page EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x35ba2254 mlxsw_afk_values_add_u32 @@ -2957,25 +2958,22 @@ EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x3f672008 mlxsw_reg_trans_write EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x406b4614 mlxsw_afa_block_append_counter EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x43a9b87e mlxsw_afa_block_terminate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x45df0ac6 mlxsw_core_trap_state_set EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x47041e4e mlxsw_afk_key_info_blocks_count_get EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4a6ed376 mlxsw_core_port_fini EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4b0bae55 mlxsw_core_kvd_sizes_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5084674f mlxsw_core_bus_device_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x53d26c5e mlxsw_core_port_eth_set EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x57e736af mlxsw_cmd_exec EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5a099407 mlxsw_afa_block_append_qos_dscp 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 EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x618a30ab mlxsw_afa_block_commit EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x61ea9293 mlxsw_core_event_listener_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x61f1d22c mlxsw_core_driver_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x61f44903 mlxsw_core_trap_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x63874d4c mlxsw_core_port_driver_priv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x643877f7 mlxsw_core_trap_state_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x65a379ba mlxsw_core_skb_transmit EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x65e16da4 mlxsw_afk_key_info_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x65e570b2 mlxsw_core_trap_unregister EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x692ac04e mlxsw_afk_create EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x71e1d813 mlxsw_core_port_clear -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x72ae81a1 mlxsw_core_ptp_transmitted EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x749556a2 mlxsw_afk_key_info_subset EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x74eb7c9e mlxsw_core_res_valid EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x77768221 mlxsw_core_module_max_width @@ -2983,18 +2981,18 @@ EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7f659d4c mlxsw_afa_block_append_vlan_modify 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 0x8552994c mlxsw_afa_create EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x858c30d0 mlxsw_afa_block_create EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x86a40342 mlxsw_core_res_get EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x87b88710 mlxsw_core_event_listener_unregister EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x8854d198 mlxsw_reg_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x8989f399 mlxsw_core_rx_listener_unregister EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x8ba5fa7e mlxsw_core_lag_mapping_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x8e53413f mlxsw_core_port_devlink_port_get EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x97035a9c mlxsw_afa_block_append_fid_set EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x97cf0ab9 mlxsw_core_port_is_xm 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 0xa0a30d99 mlxsw_core_rx_listener_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa7765e88 mlxsw_reg_query EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xaa600760 mlxsw_reg_trans_query EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb5e762fa mlxsw_afk_values_add_buf @@ -3004,13 +3002,14 @@ EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbbb7a867 mlxsw_afa_block_append_sampler EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbbd7a457 mlxsw_core_schedule_work EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbc222a8d mlxsw_afk_clear +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbc6c4d3e mlxsw_core_bus_device_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbe82d6cc mlxsw_env_get_module_info EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbfb7df3c mlxsw_core_driver_priv EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbfd01f33 mlxsw_core_port_ib_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc2e74597 mlxsw_core_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc03e6c7d mlxsw_core_trap_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc8b6570f mlxsw_core_rx_listener_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc9c2e4cc mlxsw_core_lag_mapping_clear EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xca257489 mlxsw_afa_block_append_fwd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xcaee52f8 mlxsw_env_get_module_eeprom 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 0xd1a82f0b mlxsw_core_lag_mapping_get EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd252e62d mlxsw_core_skb_transmit_busy @@ -3021,100 +3020,101 @@ EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdc415cf1 mlxsw_afa_block_continue EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xde4e211f mlxsw_afa_block_append_l4port 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 0xe0c5ff47 mlxsw_afa_block_append_mirror EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe16986dd mlxsw_afa_block_activity_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe8bbb3ef mlxsw_core_skb_receive -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xeab7eaa4 mlxsw_core_port_eth_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xeb8ac4a7 mlxsw_afa_create EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xeca0348c mlxsw_core_schedule_dw EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xecab212a mlxsw_afa_cookie_lookup +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf1b8a624 mlxsw_env_get_module_eeprom EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf2ca3bae mlxsw_core_res_query_enabled EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf4909bea mlxsw_core_port_type_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf96daefe mlxsw_afa_block_append_mirror +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xfce4e591 mlxsw_core_port_devlink_port_get EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xff007c25 mlxsw_core_cpu_port_fini -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0x2c9fabcb mlxsw_i2c_driver_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0x9711aa97 mlxsw_i2c_driver_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0x175e8594 mlxsw_pci_driver_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0x77dafbbc mlxsw_pci_driver_register -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x00c8c66f ocelot_get_txtstamp -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0e57d5c2 ocelot_port_lag_leave -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x113c36fe ocelot_ptp_verify -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x11683d16 ocelot_ptp_settime64 -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1171250a ocelot_vcap_filter_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x122f7247 ocelot_sb_occ_tc_port_bind_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1282256d ocelot_sb_tc_pool_bind_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1abea351 ocelot_mrp_del_ring_role -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1d9b23bf ocelot_port_inject_frame +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xff44c5c4 mlxsw_core_ptp_transmitted +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xff90eb04 mlxsw_core_trap_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0xb9b49845 mlxsw_i2c_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0xc2a85297 mlxsw_i2c_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0x448d3922 mlxsw_pci_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0xae43be43 mlxsw_pci_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x03f4a4fd ocelot_vlan_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x04371f08 ocelot_mrp_add_ring_role +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x06d4482c ocelot_fdb_dump +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0901cd77 ocelot_drain_cpu_queue +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0adb7ad8 ocelot_ptp_enable +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0ed74edd ocelot_ptp_gettime64 +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x112fc727 ocelot_hwstamp_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1e73866c ocelot_mact_forget +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x23d2cad9 ocelot_fdb_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x24565084 ocelot_vlan_prepare EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x274a0e05 ocelot_port_fdb_do_dump -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2a66a6d9 ocelot_vlan_prepare -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2b4d813f ocelot_sb_pool_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3872720c ocelot_port_lag_change -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3f63fbd5 ocelot_sb_occ_snapshot -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x45d68f31 ocelot_get_ts_info -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x488dff89 ocelot_mact_forget -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5d8804fa ocelot_mrp_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5e92a4f6 ocelot_port_vlan_filtering -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6452b4be ocelot_init_port -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x651017dd ocelot_sb_port_pool_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x65e137d3 ocelot_mact_learn -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x69bdaa07 ocelot_port_bridge_leave -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x75e6cc9e ocelot_ptp_adjtime -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x767dc645 ocelot_port_bridge_flags -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x782cf3e5 ocelot_vlan_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7b2896ed ocelot_apply_bridge_fwd_mask -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7fdaea9c ocelot_bridge_stp_state_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x86173d18 ocelot_deinit_port +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2f8b9b91 ocelot_can_inject +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x308d73f5 ocelot_vcap_filter_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x35cbdec8 ocelot_deinit +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x362e8e7e ocelot_port_policer_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3769afd8 ocelot_ptp_settime64 +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x39f1adf8 ocelot_port_lag_leave +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3a88764d ocelot_ptp_verify +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x40d47eed ocelot_set_ageing_time +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4863b8dd ocelot_init_port +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x48fb2b17 ocelot_port_set_maxlen +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4c12aa6e ocelot_deinit_port +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x509e3532 ocelot_init_timestamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x56d1ee28 ocelot_port_bridge_flags +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5761988e ocelot_port_mdb_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x59b2db8f ocelot_mrp_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5e27c4c0 ocelot_sb_pool_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x600407e7 ocelot_port_lag_join +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x66c728aa ocelot_port_txtstamp_request +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x69f58307 ocelot_apply_bridge_fwd_mask +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6b1e22ba ocelot_sb_occ_max_clear +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7032d1b4 ocelot_port_pre_bridge_flags +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x76e41d50 ocelot_mrp_del_ring_role +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x81055a03 ocelot_hwstamp_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x88eb8bde ocelot_ptp_adjtime EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8a85c6a8 ocelot_vcap_block_find_filter_by_id -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8cd4b0f4 ocelot_sb_pool_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8fd9b66c ocelot_ptp_gettime64 -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x93d059dd ocelot_vlan_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x980279b7 ocelot_devlink_sb_register -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x98beec69 ocelot_deinit -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x990aea74 ocelot_ptp_enable -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9acbed1d ocelot_sb_occ_max_clear -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9dc1f050 ocelot_init -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9e85b90a ocelot_vcap_filter_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9eae1b82 ocelot_mrp_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9f33aca0 ocelot_port_policer_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa381282f ocelot_get_ethtool_stats -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa3dea8f2 ocelot_hwstamp_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xacc7705e ocelot_sb_occ_port_pool_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xad118aae ocelot_fdb_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb562e6a6 ocelot_drain_cpu_queue -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb7347900 ocelot_get_strings -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb896e017 ocelot_get_sset_count -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbe28156a ocelot_ptp_adjfine -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc104e6a3 ocelot_fdb_dump -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc118e381 ocelot_fdb_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc9fc368d ocelot_port_lag_join -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd1443cd8 ocelot_devlink_sb_unregister -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd5eb0e5a ocelot_port_set_maxlen -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd63ce0f8 ocelot_hwstamp_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd7582395 ocelot_set_ageing_time -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xddeed695 ocelot_port_bridge_join -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe2ff948d ocelot_deinit_timestamp -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe5b334d5 ocelot_port_mdb_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xecbba55c ocelot_get_max_mtu -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf35d4cf8 ocelot_port_txtstamp_request -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf3bf8596 ocelot_xtr_poll_frame -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf728477a ocelot_init_timestamp -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf7d050d3 ocelot_sb_tc_pool_bind_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf87c66cd ocelot_port_mdb_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfafc3999 ocelot_can_inject -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfb0857cb ocelot_port_policer_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfb749325 ocelot_port_pre_bridge_flags -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xff107232 ocelot_mrp_add_ring_role -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xff4dd5a7 ocelot_sb_port_pool_set -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x40964ec7 qed_get_iscsi_ops +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8cb4c39f ocelot_fdb_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8dfe7b0b ocelot_port_lag_change +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8ebfcb84 ocelot_deinit_timestamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8ffebbae ocelot_sb_port_pool_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9126852e ocelot_devlink_sb_register +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x96cc2e58 ocelot_mrp_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x97ed6946 ocelot_mact_learn +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x990e9e7b ocelot_ptp_adjfine +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9e8ff44c ocelot_get_ethtool_stats +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa69d552e ocelot_init +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa7f4de73 ocelot_sb_pool_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xab5cba44 ocelot_get_strings +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xadf3db48 ocelot_devlink_sb_unregister +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb71b6f2a ocelot_bridge_stp_state_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb9f35faf ocelot_sb_tc_pool_bind_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc14febf7 ocelot_port_vlan_filtering +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc451b5cf ocelot_sb_tc_pool_bind_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xcda810df ocelot_get_max_mtu +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xcf015389 ocelot_port_mdb_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xdbb74b36 ocelot_vcap_filter_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xde2c2032 ocelot_sb_port_pool_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xdfb86083 ocelot_port_bridge_join +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe407f2d2 ocelot_get_ts_info +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe5251ea8 ocelot_port_inject_frame +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe64bd886 ocelot_port_policer_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe83f5b31 ocelot_get_sset_count +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe9efe077 ocelot_sb_occ_port_pool_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xeb3e1779 ocelot_vlan_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xecc38e04 ocelot_get_txtstamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf3c317a5 ocelot_sb_occ_tc_port_bind_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf4a87e59 ocelot_xtr_poll_frame +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf878fdef ocelot_sb_occ_snapshot +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfd2b79a0 ocelot_port_bridge_leave +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x2220b39d qed_get_eth_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x47e3e261 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 0x832fd0df qed_get_fcoe_ops EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x992e03d0 qed_put_fcoe_ops EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x9eeeef48 qed_put_eth_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xb01cfeca qed_get_eth_ops -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x0fcdabf0 hdlcdrv_unregister -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x37067f8c hdlcdrv_arbitrate -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x7854b387 hdlcdrv_transmitter -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xe2ba97fe hdlcdrv_receiver -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xfeffaf7d hdlcdrv_register +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xf297d33b qed_get_iscsi_ops +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x4482447a hdlcdrv_register +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x4adeccb8 hdlcdrv_transmitter +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x5c65fc61 hdlcdrv_receiver +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x5e91ec10 hdlcdrv_arbitrate +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xd188e5fe hdlcdrv_unregister EXPORT_SYMBOL drivers/net/mdio 0x3e17f466 mdio_set_flag EXPORT_SYMBOL drivers/net/mdio 0x424a69a2 mdio45_ethtool_ksettings_get_npage EXPORT_SYMBOL drivers/net/mdio 0x60443957 mdio45_probe @@ -3122,1411 +3122,1414 @@ 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 0x595214f0 free_mdio_bitbang -EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0xab457e93 mdiobb_write -EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0xd5c316b1 alloc_mdio_bitbang -EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0xd63c157c mdiobb_read -EXPORT_SYMBOL drivers/net/mii 0x04b03d75 mii_ethtool_sset -EXPORT_SYMBOL drivers/net/mii 0x2aeb8295 mii_check_link -EXPORT_SYMBOL drivers/net/mii 0x2b5926be mii_check_media -EXPORT_SYMBOL drivers/net/mii 0x755dfebd mii_nway_restart -EXPORT_SYMBOL drivers/net/mii 0x9df7c5f1 mii_ethtool_gset -EXPORT_SYMBOL drivers/net/mii 0xa8a27860 mii_ethtool_get_link_ksettings -EXPORT_SYMBOL drivers/net/mii 0xc228f6b8 generic_mii_ioctl -EXPORT_SYMBOL drivers/net/mii 0xcb9c2978 mii_link_ok -EXPORT_SYMBOL drivers/net/mii 0xce1889db mii_ethtool_set_link_ksettings -EXPORT_SYMBOL drivers/net/mii 0xef394779 mii_check_gmii_support -EXPORT_SYMBOL drivers/net/pcs/pcs-lynx 0x3c445859 lynx_pcs_create -EXPORT_SYMBOL drivers/net/pcs/pcs-lynx 0x9aea3824 lynx_pcs_destroy -EXPORT_SYMBOL drivers/net/phy/bcm-phy-lib 0x9644d920 bcm54xx_auxctl_write -EXPORT_SYMBOL drivers/net/ppp/pppox 0xacd439a1 pppox_ioctl -EXPORT_SYMBOL drivers/net/ppp/pppox 0xc6922aaf register_pppox_proto +EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0x0be0ddef alloc_mdio_bitbang +EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0x36f29e98 free_mdio_bitbang +EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0xdf5df1e2 mdiobb_write +EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0xff05a4fd mdiobb_read +EXPORT_SYMBOL drivers/net/mii 0x02431ff0 mii_ethtool_sset +EXPORT_SYMBOL drivers/net/mii 0x4d55b173 mii_ethtool_set_link_ksettings +EXPORT_SYMBOL drivers/net/mii 0x52aa2551 mii_check_link +EXPORT_SYMBOL drivers/net/mii 0x5cc544eb generic_mii_ioctl +EXPORT_SYMBOL drivers/net/mii 0x701a7ada mii_ethtool_gset +EXPORT_SYMBOL drivers/net/mii 0x7a48a942 mii_check_gmii_support +EXPORT_SYMBOL drivers/net/mii 0x85e56414 mii_ethtool_get_link_ksettings +EXPORT_SYMBOL drivers/net/mii 0xb4b47dd2 mii_nway_restart +EXPORT_SYMBOL drivers/net/mii 0xc124667f mii_link_ok +EXPORT_SYMBOL drivers/net/mii 0xd00dba34 mii_check_media +EXPORT_SYMBOL drivers/net/pcs/pcs-lynx 0x45a88c61 lynx_pcs_destroy +EXPORT_SYMBOL drivers/net/pcs/pcs-lynx 0x96361911 lynx_pcs_create +EXPORT_SYMBOL drivers/net/phy/bcm-phy-lib 0x7a24e06c bcm54xx_auxctl_write +EXPORT_SYMBOL drivers/net/ppp/pppox 0x907c11a6 pppox_ioctl +EXPORT_SYMBOL drivers/net/ppp/pppox 0xb7d23570 pppox_unbind_sock +EXPORT_SYMBOL drivers/net/ppp/pppox 0xbddf72f6 register_pppox_proto EXPORT_SYMBOL drivers/net/ppp/pppox 0xe0ff7a18 unregister_pppox_proto -EXPORT_SYMBOL drivers/net/ppp/pppox 0xf205714e pppox_unbind_sock -EXPORT_SYMBOL drivers/net/sungem_phy 0xaf24d654 sungem_phy_probe -EXPORT_SYMBOL drivers/net/team/team 0x1e7710c5 team_mode_unregister -EXPORT_SYMBOL drivers/net/team/team 0x7dd1b168 team_modeop_port_enter -EXPORT_SYMBOL drivers/net/team/team 0x829bc0d5 team_modeop_port_change_dev_addr -EXPORT_SYMBOL drivers/net/team/team 0x8f44b04c team_mode_register -EXPORT_SYMBOL drivers/net/team/team 0x9116e6c0 team_options_unregister -EXPORT_SYMBOL drivers/net/team/team 0x9b745064 team_options_register -EXPORT_SYMBOL drivers/net/team/team 0xea753921 team_option_inst_set_change -EXPORT_SYMBOL drivers/net/team/team 0xf7322d41 team_options_change_check -EXPORT_SYMBOL drivers/net/usb/usbnet 0x2586802f usbnet_link_change -EXPORT_SYMBOL drivers/net/usb/usbnet 0x642012a3 usbnet_manage_power -EXPORT_SYMBOL drivers/net/usb/usbnet 0xc8a09e79 usbnet_device_suggests_idle -EXPORT_SYMBOL drivers/net/wan/hdlc 0x0359e2df detach_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0x05d67d3a hdlc_ioctl -EXPORT_SYMBOL drivers/net/wan/hdlc 0x1eec1509 hdlc_start_xmit -EXPORT_SYMBOL drivers/net/wan/hdlc 0x2ec0569b hdlc_close -EXPORT_SYMBOL drivers/net/wan/hdlc 0x398c8130 register_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0x664d9892 hdlc_open -EXPORT_SYMBOL drivers/net/wan/hdlc 0x85cb946e attach_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0x8843f6af unregister_hdlc_device -EXPORT_SYMBOL drivers/net/wan/hdlc 0xacd041f2 unregister_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0xecd71ed9 alloc_hdlcdev -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x0adf2bd5 ath_printk +EXPORT_SYMBOL drivers/net/sungem_phy 0x66afe491 sungem_phy_probe +EXPORT_SYMBOL drivers/net/team/team 0x1137d844 team_modeop_port_enter +EXPORT_SYMBOL drivers/net/team/team 0x1363db91 team_options_register +EXPORT_SYMBOL drivers/net/team/team 0x42be8bc3 team_option_inst_set_change +EXPORT_SYMBOL drivers/net/team/team 0x7492ba88 team_options_change_check +EXPORT_SYMBOL drivers/net/team/team 0xbffcd905 team_options_unregister +EXPORT_SYMBOL drivers/net/team/team 0xcb8ad966 team_mode_unregister +EXPORT_SYMBOL drivers/net/team/team 0xda52064a team_mode_register +EXPORT_SYMBOL drivers/net/team/team 0xf86f8cef team_modeop_port_change_dev_addr +EXPORT_SYMBOL drivers/net/usb/usbnet 0x10d75b31 usbnet_device_suggests_idle +EXPORT_SYMBOL drivers/net/usb/usbnet 0x6628d0a4 usbnet_link_change +EXPORT_SYMBOL drivers/net/usb/usbnet 0xfd005076 usbnet_manage_power +EXPORT_SYMBOL drivers/net/wan/hdlc 0x1bd237cd hdlc_open +EXPORT_SYMBOL drivers/net/wan/hdlc 0x5fa48c81 hdlc_close +EXPORT_SYMBOL drivers/net/wan/hdlc 0x6dd7aa14 unregister_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x7a40e737 register_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x88f37322 detach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xa27941c0 alloc_hdlcdev +EXPORT_SYMBOL drivers/net/wan/hdlc 0xb582e311 attach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xbe42fb92 hdlc_ioctl +EXPORT_SYMBOL drivers/net/wan/hdlc 0xc147241d unregister_hdlc_device +EXPORT_SYMBOL drivers/net/wan/hdlc 0xfb457eb2 hdlc_start_xmit +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x0e1877dd ath_hw_setbssidmask EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x108b188f ath_is_49ghz_allowed -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x1cbe5da9 ath_hw_get_listen_time -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x29e4a6fa ath_is_mybeacon -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x30cb1fde ath_regd_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x14008faa ath_is_mybeacon +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x159e112c ath_hw_keysetmac +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x1d459a1d dfs_pattern_detector_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x255e9b1d ath_hw_cycle_counters_update +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x3752d9d5 ath_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x3e45028f ath_hw_keyreset EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x4571aea8 ath_is_world_regd -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x47e89ea8 ath_hw_keysetmac -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x4969db52 ath_key_delete -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x5a0c88cd ath_hw_setbssidmask -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x5d67b34a dfs_pattern_detector_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x5e15f4c9 ath_rxbuf_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x55fbb231 ath_key_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x5f5c06be ath_reg_notifier_apply +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x9803fb8e ath_regd_init EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xa18f224e ath_regd_find_country_by_name -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xabcae1dd ath_reg_notifier_apply -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xb2de2bed ath_hw_keyreset -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xb4506228 ath_hw_cycle_counters_update +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xb2ddb665 ath_rxbuf_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xb4ba6718 ath_hw_get_listen_time EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xb6588ba6 ath_bus_type_strings -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xca06ec94 ath_key_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xd961457b ath_key_delete EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xf98605d5 ath_regd_get_band_ctl -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0030613b ath10k_htc_tx_completion_handler EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x015e5db2 ath10k_debug_mask -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0331e78e __ath10k_ce_send_revert -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x057ad8a7 ath10k_ce_enable_interrupt -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0607e894 ath10k_ce_disable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x073f4d5d ath10k_ce_alloc_rri -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x081b91f6 ath10k_core_check_dt -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x083fbefb ath10k_htt_t2h_msg_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x08a6c138 ath10k_core_stop -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0e54c3ad ath10k_bmi_read_memory -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x13bbe2bf ath10k_htc_process_trailer -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x17c6c81d ath10k_ce_init_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1aa21a3a ath10k_ce_send_nolock -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1b56f221 ath10k_htc_rx_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1d4cbd35 ath10k_ce_completed_send_next_nolock -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1d83170e ath10k_core_unregister -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1efe7be3 ath10k_core_register -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1f3dc6d8 ath10k_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x224fe518 ath10k_ce_revoke_recv_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x27232810 ath10k_core_fetch_board_file -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x28f5bcd5 ath10k_ce_num_free_src_entries -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x30dfda43 ath10k_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x37a1b12a ath10k_coredump_new -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3f7d04b3 ath10k_mac_tx_push_pending -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4271124b ath10k_ce_per_engine_service_any -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x43e8162b ath10k_ce_rx_post_buf -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x47461abe ath10k_core_napi_sync_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x54449d02 ath10k_htt_txrx_compl_task -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5a9467af ath10k_ce_per_engine_service -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5d0103aa ath10k_core_napi_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5e01b49a ath10k_ce_disable_interrupt -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x65a60bdc ath10k_core_start_recovery -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6f830f0d ath10k_htc_notify_tx_completion -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x700bd1a2 ath10k_core_create -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x71cf8c8b ath10k_ce_free_rri -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x72927568 ath10k_ce_deinit_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x78807407 __ath10k_ce_rx_num_free_bufs -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8863bb07 ath10k_ce_cancel_send_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x90e5d0b2 ath10k_print_driver_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x983bf2b9 ath10k_ce_send -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa26afb7d ath10k_core_destroy -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xad40607b ath10k_ce_alloc_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xafa7cb83 ath10k_htt_rx_pktlog_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb83f990a ath10k_ce_dump_registers -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xbc18eef3 ath10k_coredump_get_mem_layout -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xbcce3283 ath10k_ce_free_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x02076bff ath10k_core_start_recovery +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0a8ce058 ath10k_ce_alloc_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x223d439d ath10k_core_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2593a114 ath10k_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x26925a6a ath10k_htt_rx_hl_indication +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x28b57219 ath10k_ce_deinit_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2a92cb91 ath10k_mac_tx_push_pending +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3169fe52 ath10k_ce_revoke_recv_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x337ae158 ath10k_bmi_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x36f76895 ath10k_htt_rx_pktlog_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x389acefb ath10k_ce_dump_registers +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x489f6fea ath10k_htc_tx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x48cf324d ath10k_core_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4bd59a71 ath10k_ce_send_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x555be486 ath10k_htc_process_trailer +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5bb692aa ath10k_core_register +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5d4eb6a0 ath10k_bmi_read_memory +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5f0622dc ath10k_core_napi_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x671f67e1 ath10k_ce_disable_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x682a5f98 ath10k_htt_t2h_msg_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6d3180c3 ath10k_coredump_new +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6dc5aa1d ath10k_core_fetch_board_file +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6e928396 ath10k_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6ffd5e67 ath10k_ce_rx_update_write_idx +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x78e8a894 ath10k_core_napi_sync_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x79ce9da8 ath10k_coredump_get_mem_layout +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8aa428e8 ath10k_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x916513ca ath10k_htc_notify_tx_completion +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x97543ae6 ath10k_ce_rx_post_buf +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9884e725 ath10k_ce_completed_send_next_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9d0d6e3d ath10k_ce_init_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9e30c57c ath10k_ce_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa5b52003 ath10k_ce_completed_recv_next_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xae1be8e5 ath10k_htt_txrx_compl_task +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xaed4ea6e __ath10k_ce_rx_num_free_bufs +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb46d92da ath10k_ce_completed_recv_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb4c744cb ath10k_ce_send +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb9680bc7 ath10k_ce_completed_send_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xbcede645 ath10k_ce_enable_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc03ec817 ath10k_htc_rx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc41a34eb ath10k_ce_alloc_rri +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc7385bcb ath10k_core_unregister EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc9912b66 __tracepoint_ath10k_log_dbg -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xccac2b00 ath10k_htt_rx_hl_indication -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xcd58c362 ath10k_htt_hif_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xcecf8472 ath10k_ce_completed_recv_next_nolock -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd11a6cb1 ath10k_ce_completed_recv_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd631e844 ath10k_bmi_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xddcd9ec6 ath10k_ce_completed_send_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe039665e ath10k_core_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe162317f ath10k_ce_enable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe5105fb9 ath10k_ce_rx_update_write_idx -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xed52bee4 ath10k_warn -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf35980fc ath10k_core_free_board_files -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x0a79fd18 ath11k_ce_rx_post_buf -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x0dcaddad ath11k_ce_free_pipes -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x204b7769 ath11k_hal_srng_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x37d4574c ath11k_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x39a5fd07 ath11k_core_suspend -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x43fd1c9d ath11k_core_resume -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x45b91ce7 ath11k_debugfs_soc_destroy -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x4a6a0b71 ath11k_warn -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x532c112e ath11k_hal_srng_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x5b0bf90c ath11k_core_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x5d8f01e0 ath11k_ce_cleanup_pipes -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x645c2d09 ath11k_core_pre_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x79ab6fd2 ath11k_qmi_deinit_service -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x7bcbfab1 ath11k_core_free -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x810c5d76 ath11k_core_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd9269c83 ath10k_ce_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd962e8dc ath10k_core_check_dt +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xdf2221c7 ath10k_ce_per_engine_service +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe2badde8 ath10k_core_free_board_files +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe5f6996b ath10k_ce_cancel_send_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe9c4f508 __ath10k_ce_send_revert +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xea2fa074 ath10k_ce_free_rri +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xeecb9646 ath10k_ce_per_engine_service_any +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf1c31125 ath10k_print_driver_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf437ed95 ath10k_ce_num_free_src_entries +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xfa714a4d ath10k_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xfac76259 ath10k_htt_hif_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xfde5e5cd ath10k_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xfe8c041e ath10k_ce_free_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x01ec971e ath11k_ce_free_pipes +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x205f7147 ath11k_ce_rx_post_buf +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x2bbbd448 ath11k_core_pre_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x34803f82 ath11k_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x35ac927c ath11k_ce_cleanup_pipes +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x54bf86c1 ath11k_ce_per_engine_service +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x57d3eadc ath11k_hal_srng_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x62a29234 ath11k_core_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x702b59a3 ath11k_core_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x7969d421 ath11k_debugfs_soc_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x7f782955 ath11k_qmi_deinit_service EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x9c51bcc4 ath11k_debug_mask -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x9eb26d50 ath11k_ce_get_attr_flags -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xa6a218e6 ath11k_dp_service_srng -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xbbe2e9d1 ath11k_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xd72e4be0 ath11k_core_alloc -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xd7f2f5da ath11k_ce_alloc_pipes -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xdb089684 ath11k_ce_get_shadow_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xe4b26437 ath11k_ce_per_engine_service +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x9eec18c4 ath11k_core_suspend +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xa5bdae36 ath11k_core_resume +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xa77b0237 ath11k_dp_service_srng +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xb93fe485 ath11k_core_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xbb463d18 ath11k_core_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xc8d6fd97 ath11k_ce_alloc_pipes +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xe8e89611 ath11k_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xee92314c ath11k_ce_get_attr_flags EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xf0197188 ath11k_cold_boot_cal -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x028ed18c ath6kl_read_tgt_stats +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xf8a6e366 ath11k_hal_srng_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xfab4f6fe ath11k_ce_get_shadow_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xfcd7b786 ath11k_warn EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x1354043d ath6kl_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x24c623f2 ath6kl_core_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x2bba29c7 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 0x39392547 ath6kl_core_create -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x753105a7 ath6kl_core_rx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x41155121 ath6kl_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x465dc36a ath6kl_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x90ec89d1 ath6kl_read_tgt_stats EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x91cfb84a ath6kl_hif_rw_comp_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x954e0e79 ath6kl_stop_txrx -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x958fbcdf ath6kl_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x960f7c74 ath6kl_core_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xb4d9666e 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 0xd289b420 ath6kl_core_cleanup -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xe0ab3d62 ath6kl_hif_intr_bh_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xe1bf3e94 ath6kl_core_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xf00e9c29 ath6kl_cfg80211_suspend -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xf54ad363 ath6kl_core_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xfd0af94e ath6kl_cfg80211_resume -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x09e6f023 ath9k_cmn_spectral_scan_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x186d8882 ath9k_cmn_beacon_config_ap -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2c0a1a97 ath9k_cmn_rx_skb_postprocess -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x40a394bb ath9k_cmn_update_txpow -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x4aa136ac ath_cmn_process_fft -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x4d5391a2 ath9k_cmn_debug_base_eeprom -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x5b46a211 ath9k_cmn_setup_ht_cap -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x73f19741 ath9k_cmn_spectral_deinit_debug -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x747a0667 ath9k_cmn_debug_recv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x775f2368 ath9k_cmn_init_channels_rates -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x7b4b954c ath9k_cmn_get_channel -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x91b84673 ath9k_cmn_debug_phy_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xa5de2d3d ath9k_cmn_debug_modal_eeprom -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xa8b98be5 ath9k_cmn_beacon_config_sta +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xbe8d76c9 ath6kl_cfg80211_resume +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xd1b8653d ath6kl_cfg80211_suspend +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xf5c7b813 ath6kl_core_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xf7f63c44 ath6kl_stop_txrx +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x0b3fd56d ath9k_cmn_spectral_deinit_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x1c8ff466 ath9k_cmn_get_hw_crypto_keytype +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x30957d60 ath_cmn_process_fft +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x3142f7fa ath9k_cmn_setup_ht_cap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x34cdc425 ath9k_cmn_process_rssi +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x44fe41a1 ath9k_cmn_debug_modal_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x45313971 ath9k_cmn_reload_chainmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x4a53c871 ath9k_cmn_rx_accept +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x4ac599f5 ath9k_cmn_debug_base_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x4cee8620 ath9k_cmn_debug_recv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x5f6277cf ath9k_cmn_init_crypto +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x68ac5e29 ath9k_cmn_beacon_config_adhoc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x7e0a44ab ath9k_cmn_spectral_scan_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x952f669b ath9k_cmn_beacon_config_ap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xa112a51d ath9k_cmn_spectral_scan_trigger +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xa2a836f8 ath9k_cmn_update_txpow +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xa801f985 ath9k_cmn_process_rate +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xac0d0d7b ath9k_cmn_rx_skb_postprocess EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb76fccc7 ath9k_cmn_debug_stat_rx -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb8624d4a ath9k_cmn_reload_chainmask -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xba932da8 ath9k_cmn_init_crypto -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xc1701088 ath9k_cmn_process_rate -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xc2fd24ab ath9k_cmn_process_rssi -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xc8e81738 ath9k_cmn_get_hw_crypto_keytype +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xc0f261e9 ath9k_cmn_init_channels_rates +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xc21685a5 ath9k_cmn_debug_phy_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xca0a78cf ath9k_cmn_beacon_config_sta +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xcbbc2531 ath9k_cmn_spectral_init_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd24f9045 ath9k_cmn_get_channel EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd2981357 ath9k_cmn_count_streams -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xe84ff74c ath9k_cmn_spectral_scan_trigger -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xe9c147ef ath9k_cmn_beacon_config_adhoc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xedcfa572 ath9k_cmn_rx_accept -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xee5e2267 ath9k_cmn_spectral_init_debug -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x012367b2 ar9003_is_paprd_enabled -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x03f3ff9a ath9k_hw_beaconq_setup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x077b235c ath9k_hw_reset_tsf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x080f6cbd ath9k_hw_setuprxdesc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0a537756 ath9k_hw_setrxfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0bc7bc02 ath9k_hw_set_txpowerlimit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0f768d95 ath9k_hw_get_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x05ff3ffb ar9003_mci_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x08c6964d ath9k_hw_btcoex_init_scheme +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0a0a4201 ath_gen_timer_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0badcfe8 ath9k_hw_btcoex_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0bb59450 ath9k_hw_setpower +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0eaf6ab6 ath9k_hw_txstart EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0f77dafc ath9k_hw_get_tsf_offset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0fdedab1 ath9k_hw_enable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x11b5fc00 ath9k_hw_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1201ce64 ath9k_hw_disable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x129c1424 ar9003_paprd_create_curve -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x144780eb ath9k_hw_setrxabort -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1532f19f ar9003_mci_send_wlan_channels -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x16993975 ath9k_hw_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x18f12b7d ath9k_hw_init_global_settings -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2476e880 ar9003_hw_bb_watchdog_dbg_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2b2b18c7 ath9k_hw_setup_statusring -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2dd73f05 ath9k_hw_check_nav -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2e1e29ff ar9003_paprd_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2f437002 ath9k_hw_init_btcoex_hw -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x328fec3c ath9k_hw_gettxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x34192323 ath9k_hw_btcoex_init_2wire -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3708bf7d ath9k_hw_setpower -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x37ad6a5c ar9003_mci_set_bt_version -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3911ca9d ath9k_hw_releasetxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3ac07963 ath9k_hw_gpio_get -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3af9c407 ath9k_hw_wow_apply_pattern -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3c782434 ath9k_hw_set_txq_props -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3cd8c7ad ath9k_hw_check_alive -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3f72280b ar9003_paprd_is_done -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x41015588 ath9k_hw_set_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x445fac46 ar9003_hw_disable_phy_restart -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x46062c25 ath9k_hw_getnf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x46b8dcce ar9003_mci_send_message -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x470de86e ath9k_hw_addrxbuf_edma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4956864e ath9k_hw_set_rx_bufsize -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4cae34b3 ath9k_hw_btcoex_init_3wire -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4ff8753d ath9k_hw_btcoex_bt_stomp -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x52e24870 ath9k_hw_abortpcurecv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5328ac25 ath9k_hw_bstuck_nfcal -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5422e60f ath9k_hw_btcoex_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x55c638b6 ar9003_mci_get_next_gpm_offset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x58de6668 ath9k_hw_computetxtime -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x590c2b3e ath9k_hw_btcoex_set_weight -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5eb9914c ath_gen_timer_free -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x62d095b1 ar9003_hw_bb_watchdog_check -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x64ffa31c ath9k_hw_puttxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x67fa8361 ar9003_mci_get_interrupt -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6944a738 ath9k_hw_getchan_noise -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6ac5aab4 ar9003_mci_state -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6b77f93c ath9k_hw_wow_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6d2c4cda ath9k_hw_rxprocdesc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x74483c4f ath9k_hw_setopmode -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x74aa78da ath9k_hw_gpio_request_out -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x74db567e ath9k_hw_btcoex_init_mci -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x76327778 ath9k_hw_disable_mib_counters -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x76a4fb63 ath9k_hw_loadnf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x770fc0bc ath9k_hw_set_sta_beacon_timers -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7c6f2378 ath9k_hw_txstart -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7f65647a ar9003_paprd_init_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8044e5b1 ar9003_get_pll_sqsum_dvc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x834dd0b0 ath9k_hw_gettsf32 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8464b82f ath9k_hw_intrpend -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x85db56df ath9k_hw_btcoex_set_concur_txprio -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x869585c3 ath9k_hw_set_tsfadjust -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8847b1d3 ath9k_hw_wow_wakeup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x89534493 ath9k_hw_startpcureceive -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8a91ed26 ath9k_hw_set_gpio -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8f8f6d65 ath9k_hw_stopdmarecv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x95d2d9fb ath9k_hw_btcoex_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9dac2952 ath9k_hw_reset_calvalid -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9fc2443b ath9k_hw_kill_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xad549b53 ath9k_hw_reset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb1297159 ath9k_hw_getrxfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb1bf831b ath9k_hw_gpio_request_in -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb437d814 ar9003_mci_cleanup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb4d8ce3d ath9k_hw_beaconinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb4f9c67c ath9k_hw_gpio_free -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb6e5f4ab ath9k_hw_gettsf64 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb92212ea ath9k_hw_numtxpending -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xba1a3393 ath9k_hw_abort_tx_dma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc0cf94a4 ath9k_hw_setmcastfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc0d757b8 ath9k_hw_setuptxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc78790cb ath9k_hw_setantenna -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcd296a46 ath9k_hw_write_associd -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcd7e9fe1 ath9k_hw_ani_monitor -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd135d009 ath9k_hw_phy_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd60d7216 ath_gen_timer_alloc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd6a35c4d ath9k_hw_updatetxtriglevel -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd7764bb3 ath9k_hw_process_rxdesc_edma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdb90f6fa ath9k_hw_wait -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe1bd01fd ar9003_paprd_populate_single_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe36ca27c ath9k_hw_gen_timer_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe390af58 ar9003_mci_setup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe59b3af5 ath9k_hw_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe76e7451 ath9k_hw_stop_dma_queue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xea98a0d8 ath9k_hw_resettxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xeaf68935 ath9k_hw_set_tx_filter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf034fcc0 ath9k_hw_settsf64 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf3c8607d ath9k_hw_btcoex_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf3dd950e ath9k_hw_btcoex_init_scheme -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf7d9c33a ath9k_hw_name -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf9a9d09a ath9k_hw_resume_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfa497708 ath9k_hw_putrxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfb419909 ath_gen_timer_isr -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfb54b8e2 ath9k_hw_gen_timer_stop -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfedf39fc ar9003_paprd_setup_gain_table -EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x29d4a270 atmel_open -EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x3c823c70 init_atmel_card -EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0xaec0e2eb stop_atmel_card -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x02400066 brcmu_pktq_flush -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x09af7b6e brcmu_pktq_pdeq_match +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x11147715 ath9k_hw_get_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x111f7188 ath9k_hw_bstuck_nfcal +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x13bab776 ath9k_hw_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x16929dd5 ath9k_hw_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1a89ea05 ar9003_paprd_setup_gain_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1aa4af52 ath9k_hw_btcoex_init_3wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1dfca6fd ar9003_mci_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1f587860 ar9003_mci_send_message +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2516d1ec ath9k_hw_beaconinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x269492db ath9k_hw_wow_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2c98d557 ar9003_mci_set_bt_version +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2e87008e ath9k_hw_setuptxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3714d675 ath9k_hw_btcoex_set_concur_txprio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x382ec368 ath9k_hw_abortpcurecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3d0c79c5 ath9k_hw_kill_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4439fe8c ath9k_hw_btcoex_set_weight +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x44cbdd13 ath9k_hw_settsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x45421457 ath9k_hw_gettxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x468d88a8 ath9k_hw_gen_timer_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4725d4aa ath9k_hw_updatetxtriglevel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4a83ad8f ar9003_hw_bb_watchdog_check +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4bd12a8b ar9003_is_paprd_enabled +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4c03447c ath9k_hw_btcoex_init_mci +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4f71ab20 ar9003_mci_get_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4f71c4ae ath9k_hw_btcoex_bt_stomp +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4fc7ecda ath9k_hw_set_tsfadjust +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x500b7a29 ath9k_hw_set_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5224a083 ath9k_hw_gpio_get +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x53adbd2d ar9003_get_pll_sqsum_dvc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5a4c0024 ath9k_hw_process_rxdesc_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5bed39e9 ath9k_hw_btcoex_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5da01490 ath9k_hw_setrxabort +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5de5ae92 ar9003_paprd_is_done +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5f500eaa ath9k_hw_init_global_settings +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x60492121 ath9k_hw_setuprxdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6165b3ec ath9k_hw_loadnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x65ea8977 ath9k_hw_numtxpending +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x65fe33a9 ath_gen_timer_isr +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x674b99f9 ath9k_hw_computetxtime +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6c311ba1 ath9k_hw_releasetxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x73582aad ath9k_hw_set_txpowerlimit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7576be99 ath9k_hw_abort_tx_dma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x78b1ae38 ath9k_hw_beaconq_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x799b6b2a ath9k_hw_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7a008cb3 ath9k_hw_write_associd +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7bad0d89 ath9k_hw_getchan_noise +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7cf339e3 ath9k_hw_gettsf32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x80b6954a ath9k_hw_stopdmarecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8225ca07 ath9k_hw_setmcastfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8497a9cc ath9k_hw_wow_wakeup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8a0927a8 ath9k_hw_check_alive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8d1e1c3c ath9k_hw_set_sta_beacon_timers +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8fa7ff41 ath9k_hw_setantenna +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9041919b ath9k_hw_intrpend +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9156a2d1 ath9k_hw_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9218ee22 ar9003_paprd_create_curve +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x982ae19b ar9003_paprd_populate_single_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9c2ec949 ath9k_hw_stop_dma_queue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9c4fa730 ath9k_hw_gpio_request_out +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9fb5a40f ar9003_paprd_init_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa5831846 ath9k_hw_setopmode +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa7ed83a5 ath9k_hw_gpio_request_in +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaa39ac26 ath9k_hw_putrxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xab0c408d ath9k_hw_btcoex_init_2wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xae3f0509 ath9k_hw_set_rx_bufsize +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xae44b598 ath9k_hw_wow_apply_pattern +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xae575d2a ath9k_hw_btcoex_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb00f6a0e ath9k_hw_set_tx_filter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb01e1468 ath9k_hw_name +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb1d21abc ath9k_hw_getnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb3ba3aa2 ath9k_hw_resettxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb428ec68 ath9k_hw_gen_timer_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb4d91c7e ar9003_hw_disable_phy_restart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb673cb3c ath9k_hw_set_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb76ef4c8 ar9003_mci_get_next_gpm_offset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbaa49631 ath9k_hw_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbcab8f78 ath9k_hw_puttxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbf584b4c ath9k_hw_check_nav +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc8b36db4 ath9k_hw_ani_monitor +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcaa0f7bc ath9k_hw_getrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcc881983 ath9k_hw_gettsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd0de2a62 ath9k_hw_startpcureceive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd1a2eae6 ath9k_hw_wait +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd2916d2e ath_gen_timer_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd519b115 ar9003_mci_state +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd716364e ath9k_hw_set_gpio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdfdc3082 ath9k_hw_resume_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe02b9e96 ar9003_hw_bb_watchdog_dbg_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe02f95d8 ath9k_hw_reset_calvalid +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe1dbe2fc ath9k_hw_disable_mib_counters +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe7d6874f ath9k_hw_rxprocdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe803b790 ath9k_hw_gpio_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe8b5ea39 ath9k_hw_setrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe8c0af6a ath9k_hw_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xeb8284b9 ar9003_paprd_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xebd6f922 ath9k_hw_init_btcoex_hw +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xec40a143 ath9k_hw_reset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xef0b1f52 ath9k_hw_phy_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf4f9feeb ath9k_hw_setup_statusring +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfc87dc82 ath9k_hw_addrxbuf_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfe4024d6 ar9003_mci_send_wlan_channels +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x2c448b27 stop_atmel_card +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x7d5b2179 atmel_open +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0xc9c33610 init_atmel_card +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x0a184f32 brcmu_pktq_pdeq_match EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x1906648e brcmu_boardrev_str -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x2dec579d brcmu_pktq_penq -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x672c3ec2 brcmu_pktq_mdeq -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x7cb41194 brcmu_pktq_pdeq_tail -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x803b5efb brcmu_pktq_init -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x839de049 brcmu_pkt_buf_get_skb -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x851e7db1 brcmu_pktq_mlen -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x97a16ff3 brcmu_pktq_pdeq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x238bcfb4 brcmu_pktq_pdeq_tail +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x2caa2a1f brcmu_pktq_init +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x32113bb7 brcmu_pktq_peek_tail +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x3b6500a4 brcmu_pkt_buf_free_skb +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x3e75b104 brcmu_pktq_penq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x40182b6d brcmu_pktq_pflush +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x6b884e88 brcmu_pktq_mdeq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x7658672a brcmu_pktq_flush +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x7e6ca83d brcmu_pktq_penq_head EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xa17c0ccf brcmu_dotrev_str -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xb2a1b6be brcmu_pktq_pflush -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xb7222cd1 brcmu_pkt_buf_free_skb -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xc2433155 brcmu_pktq_penq_head -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xc6febff9 brcmu_pktq_peek_tail +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xab7731ea brcmu_pktq_mlen EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xd6217d91 brcmu_d11_attach -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x07ee080b libipw_wx_set_encode -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x100d141b libipw_rx_mgt -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x24b4e11b libipw_channel_to_index -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x4f2cd1c3 free_libipw -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x5605abe9 libipw_wx_get_scan -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x63d5e82e libipw_channel_to_freq -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x71283d52 libipw_get_channel -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x7be2e537 libipw_rx -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xa463c82d libipw_get_channel_flags -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xb384090e libipw_txb_free -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xb3ebd787 libipw_xmit -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xb5b5f389 alloc_libipw -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xb772b7e6 libipw_wx_set_encodeext -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xc2748634 libipw_set_geo -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xc9dd5c50 libipw_wx_get_encodeext -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xd34f9297 libipw_get_geo -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xde98a106 libipw_freq_to_channel -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xed2e980c libipw_is_valid_channel -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xf7231441 libipw_wx_get_encode -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xfd1a10ba libipw_networks_age -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0101351b il_force_reset +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xe6e5b849 brcmu_pkt_buf_get_skb +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xe964d7c3 brcmu_pktq_pdeq +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x1013348e libipw_get_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x1ab6f389 libipw_channel_to_index +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x203f460e libipw_channel_to_freq +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x30cd259c free_libipw +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x36b8eba6 libipw_freq_to_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x5a805d9d libipw_txb_free +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x6b65cb49 libipw_rx_mgt +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x6d4c2278 libipw_get_channel_flags +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x76342b43 libipw_wx_set_encode +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x7f75238d libipw_wx_get_encode +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x807f1a23 libipw_wx_get_scan +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x8dba5268 libipw_networks_age +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xa4dbfa1e libipw_wx_set_encodeext +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xa6534682 alloc_libipw +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xc08cb279 libipw_set_geo +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xc7c74bea libipw_get_geo +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xcb27a05d libipw_xmit +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xd2b90c01 libipw_is_valid_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xe8ac1a45 libipw_rx +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xf6e8ba53 libipw_wx_get_encodeext +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x013d8168 il_setup_scan_deferred_work EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x021308cc il_queue_space -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0b94aebc il_set_rxon_hwcrypto -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0c912813 il_cmd_queue_unmap -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0d1de421 il_rx_queue_alloc -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0d9c4ed4 il_wr_prph -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0f53abba _il_poll_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x105b10e4 il_add_beacon_time -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x135e646c il_connection_init_rx_config -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x14f1f36a il_send_cmd -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x172b6333 il_cmd_queue_free -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x20a54fc5 il_write_targ_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x21073592 il_tx_queue_free -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2290b677 il_send_lq_cmd -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x235ab09b il_update_stats -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x257227e0 il_set_tx_power -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x275ece67 il_init_channel_map -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x29ee12c6 il_send_add_sta -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x316852f1 il_send_cmd_pdu_async -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x331a9063 il_mac_conf_tx -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x36e26cb8 il_fill_probe_req -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x38df9794 il_poll_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3eadd4da il_dbgfs_register +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x08596264 il_cancel_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0de1f94c il_cmd_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x11fbfbe4 il_irq_handle_error +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x12086eda il_add_station_common +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1578714d il_rx_queue_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x19ec158f il_mac_flush +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1a98f2ff il_hdl_error +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1eee5c15 il_force_reset +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2024cb3c il_scan_cancel_timeout +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2206b31a il_send_cmd_pdu +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x24b0bc78 il_init_scan_params +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2abfc2bd il_tx_queue_reset +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2fb8f8f9 il_hdl_csa +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x353091df il_dbgfs_register +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x39c48642 il_send_stats_request EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x416bd26a il_debug_level -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x41ad2fab il_hdl_csa -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x487fee69 il_set_decrypted_flag -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x525e9956 il_leds_exit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x552bfce6 il_eeprom_query16 -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x57417b94 il_power_initialize -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5ba76ff0 il_get_passive_dwell_time -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x60edcdac il_tx_queue_reset -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6246d719 il_eeprom_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x677a4c44 il_setup_watchdog -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6c4e98ae il_set_rxon_ht -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6ccf70ee il_leds_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6e4338c6 il_set_rxon_channel -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x71a690eb il_hdl_pm_debug_stats -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x725eaf05 il_free_txq_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x728aaeac il_send_stats_request -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x73ca6457 il_restore_stations -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x76adbf32 il_apm_stop -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7c501cb7 il_read_targ_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7eb3792d il_tx_queue_unmap -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x802a9bc9 il_send_bt_config -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8a172990 il_send_cmd_pdu -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8add9e37 il_txq_update_write_ptr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8d31bdc2 il_hdl_error -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x919b3fb1 il_mac_config -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x91d0b943 il_get_free_ucode_key_idx -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9474b37a il_clear_ucode_stations -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x959bc871 il_full_rxon_required -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9cb4fd15 il_mac_bss_info_changed +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x43b0eb8b il_get_single_channel_number +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x47c62466 il_eeprom_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x48bcf53e il_rx_queue_alloc +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x48d75505 il_send_add_sta +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4eb824c7 il_hdl_pm_sleep +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4f197f7a il_mac_hw_scan +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x51b0b8da il_free_geos +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x52d74a28 il_hdl_spectrum_measurement +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x58f5a800 il_tx_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5dab413f il_mac_sta_remove +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x648418fc il_get_free_ucode_key_idx +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x65ef2ff3 il_send_bt_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x679fc7a6 il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x68643291 il_update_stats +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x68cdcd7f il_tx_cmd_protection +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6caed2a7 il_eeprom_query16 +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x71e3b2f9 il_pm_ops +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x768800e6 il_mac_change_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x76db5c7e il_eeprom_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7cfbedaf il_set_rxon_hwcrypto +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7da29e2d il_send_rxon_timing +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x83419585 il_get_lowest_plcp +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x85d8db4a il_leds_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x86de432f il_write_targ_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8934a1ec il_txq_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8967a7ee il_free_channel_map +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x898bfbc8 il_power_initialize +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8beadda3 il_rd_prph +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x90b26d70 il_leds_exit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x913e5f9a il_alloc_txq_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x97da39b8 il_add_beacon_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9982293b il_send_cmd_pdu_async +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x99d8dc06 il_wr_prph +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9c4e9b4c il_get_passive_dwell_time EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9cc714af il_bg_watchdog -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9d8631b7 il_send_rxon_timing -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9ed04212 il_mac_change_interface -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa2b56826 il_mac_remove_interface -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa7ae1d5c il_irq_handle_error -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa7e630f9 il_init_scan_params -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa96eed79 il_set_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xaa427480 il_mac_add_interface -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xac5286d8 il_tx_cmd_protection -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xacb45fdc il_clear_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb38b0682 il_eeprom_query_addr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9e13bf5c il_send_cmd_sync +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa147b1cd il_init_channel_map +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa2bbfdd3 il_tx_queue_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa425859b il_cmd_queue_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa51fef6c il_hdl_pm_debug_stats +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa6470a28 il_clear_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa6acdaf3 il_fill_probe_req +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa78dcaae il_tx_queue_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xaf15cf7e il_set_rate +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb077bb8b il_mac_bss_info_changed +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb1641c4c il_setup_rx_scan_handlers +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb5c396e3 _il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb5c571c4 il_send_lq_cmd EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb65510a3 il_get_cmd_string +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb7bc5d8b il_mac_config EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb7bd33ff il_isr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbb32efa9 il_chswitch_done -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbf1ce1df il_hdl_pm_sleep -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc267bdef _il_apm_stop -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc2f3c85a il_tx_queue_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc5f740b1 il_setup_rx_scan_handlers -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc67416dc il_rx_queue_space -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc6f33537 il_pm_ops -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc819fa9f il_set_rate -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xca37b867 il_rd_prph -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xca7208b2 il_hdl_spectrum_measurement -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcbe85279 il_alloc_txq_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd20bf704 il_setup_scan_deferred_work -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd46c6f8e il_send_cmd_sync -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd475c9e3 il_is_ht40_tx_allowed -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd4ebbc40 il_usecs_to_beacons -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd5aaa1cd il_eeprom_free -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd696ca26 il_apm_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd8abb3a6 il_get_lowest_plcp -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xda8ca437 il_get_active_dwell_time -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdb99c0ea il_init_geos -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdcda64d4 il_mac_flush -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xde8517c0 il_scan_cancel -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe498c5bc il_get_single_channel_number -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe4b26b43 il_rx_queue_update_write_ptr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xea9a2f7b il_set_flags_for_band -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xeb4c8d04 il_mac_sta_remove -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xed030f1c il_power_update_mode -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xeda13e16 il_cancel_scan_deferred_work -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xefb50178 il_free_geos -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf06f36bc il_get_channel_info -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf32e69a0 il_check_rxon_cmd -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf4e2bb6f il_scan_cancel_timeout +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xba22b3ac il_is_ht40_tx_allowed +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbeb15b08 il_set_decrypted_flag +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc18cfc90 il_set_flags_for_band +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc29495e8 il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc3726a21 il_check_rxon_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc7193870 il_clear_ucode_stations +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc8dba98d il_tx_cmd_complete +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcc448fc0 il_setup_watchdog +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd0910d1b il_set_rxon_channel +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd24cca80 il_mac_conf_tx +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd2d308c3 il_set_tx_power +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd3e04f4c il_mac_remove_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd42d933f il_chswitch_done +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd75f2ce3 il_eeprom_query_addr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdf154e72 il_free_txq_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe0ba969a il_dbgfs_unregister +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe1f0245a il_mac_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe2fa5246 il_apm_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe598c5df il_restore_stations +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe8a176a1 il_get_active_dwell_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe92c4e9c il_init_geos +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xea4760bc il_connection_init_rx_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xec003d7c il_set_rxon_ht +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xece89ce9 il_set_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf3482a9b il_scan_cancel +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf38407b9 il_get_channel_info +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf6aad12b il_usecs_to_beacons EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf70a693b il_bcast_addr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf7e43aa2 il_add_station_common -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf9995e98 il_tx_cmd_complete -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfc871db6 il_mac_hw_scan -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfd46f9df il_mac_reset_tsf -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfe29900c il_dbgfs_unregister -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfec5c990 il_free_channel_map +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf7291093 _il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf743298f il_mac_add_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf84d5470 il_power_update_mode +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfa895980 il_full_rxon_required +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfab704e9 il_read_targ_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfc6d32c0 il_rx_queue_space +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfe24156a il_send_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1318d601 __traceiter_iwlwifi_dev_ucode_wrap_event 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 0x6682d513 __traceiter_iwlwifi_dev_ucode_cont_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x53316ed8 __traceiter_iwlwifi_dev_ucode_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x632c0ed4 __traceiter_iwlwifi_dev_ucode_cont_event EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x6ff0d5fc __tracepoint_iwlwifi_dev_ucode_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x82af5da4 __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 0xa37337d8 __traceiter_iwlwifi_dev_ucode_event EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd1e69877 __SCK__tp_func_iwlwifi_dev_ucode_cont_event +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x0798c9eb hostap_check_sta_fw_version +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x0a4a0516 hostap_info_process EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x0ad69602 hostap_set_multicast_list_queue -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x0f44e610 hostap_master_start_xmit -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x1052118f hostap_set_word +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x0df32cfb hostap_set_hostapd +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x0fba2ee9 hostap_get_porttype +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x118fb3d0 hostap_free_data +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x12cac4db hostap_80211_ops EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x13abdd5a hostap_dump_tx_header -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x1a7483d7 hostap_free_data -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x281a8ab0 hostap_add_interface -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x3101e74b hostap_info_init -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x38b08147 hostap_get_porttype -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x3beaa775 hostap_remove_interface -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x4125a7b5 hostap_set_string -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x498430de hostap_set_encryption -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x52f020ed hostap_init_ap_proc -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x5e7589df prism2_update_comms_qual -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x74ed2c91 hostap_init_proc -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x78c6e602 hostap_set_antsel +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x18527203 hostap_info_init +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x1f6b0e27 hostap_handle_sta_tx_exc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x2d498508 hostap_80211_rx +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x2f2ab1c7 hostap_setup_dev +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x47a582b0 hostap_set_hostapd_sta +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x598b7401 hostap_init_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x5c473dee hostap_remove_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x6b512e12 hostap_remove_interface +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x6dca29c8 hostap_init_ap_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x75f70a3d hostap_set_auth_algs +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7e5f30c8 hostap_set_word EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7fb75891 hostap_dump_rx_header -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x82475709 hostap_remove_proc -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x8e833ec8 hostap_80211_rx -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x92232253 hostap_setup_dev -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x9d4332b1 hostap_check_sta_fw_version -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x9ffd2886 hostap_init_data -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xa55a4882 hostap_info_process +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x884b0a48 hostap_set_antsel +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x8e019735 hostap_init_data +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x94ab7df6 hostap_add_interface +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb2d660a2 hostap_master_start_xmit EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb4b77c8b hostap_80211_get_hdrlen -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xbd1be3b6 hostap_set_roaming -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xdbc219cd hostap_set_auth_algs -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xebc9a780 hostap_handle_sta_tx_exc -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xf00ba1b1 hostap_set_hostapd_sta -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xf8a188e5 hostap_set_hostapd -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xf9079e09 hostap_80211_ops -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x1847d6fc orinoco_down -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x3d58f0bb orinoco_process_xmit_skb -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x432c4bfe orinoco_open -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x88849861 orinoco_tx_timeout -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x9f1352da orinoco_up -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xa0363384 orinoco_change_mtu -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xa2d90672 orinoco_set_multicast_list -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xb81bffcd __orinoco_ev_info -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xba010787 __orinoco_ev_rx -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xc34da083 orinoco_if_add -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xd80e9367 orinoco_init -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xe3652df4 orinoco_if_del +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xba9b27ba hostap_set_encryption +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xd80391ee prism2_update_comms_qual +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xe08ea387 hostap_set_string +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xfb5452c5 hostap_set_roaming +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x0e7b75fe __orinoco_ev_rx +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x20d5acd7 orinoco_tx_timeout +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x3657ac10 orinoco_up +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x4635879d orinoco_change_mtu +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x48338fe9 __orinoco_ev_info +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x4e1ecaea orinoco_set_multicast_list +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x571fb2df orinoco_down +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x69275d58 orinoco_open +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x700ce86c orinoco_if_add +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x897f41cc orinoco_process_xmit_skb +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x9eca6834 orinoco_init +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xb9b922be free_orinocodev +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xe8878ce1 alloc_orinocodev +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xe899f70e orinoco_stop EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xeb06cb81 hermes_struct_init -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xee4623ad alloc_orinocodev -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xf1668eb5 orinoco_stop -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xfb5bfa57 free_orinocodev +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xfbb17aaa orinoco_if_del EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xffe27bca orinoco_interrupt -EXPORT_SYMBOL drivers/net/wireless/mediatek/mt76/mt76 0x4a65729a mt76_wcid_key_setup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0xd8aba144 rtl_btc_get_ops_pointer -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x006d64c3 _rtl92c_phy_rf_serial_write -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x00fb57d2 _rtl92c_store_pwrindex_diffrate_offset -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0e90fb52 _rtl92c_phy_fw_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/mediatek/mt76/mt76 0xbf32b90a mt76_wcid_key_setup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0x68ab72f2 rtl_btc_get_ops_pointer +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x004223fd rtl92c_phy_set_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x073f1889 rtl92c_phy_set_io_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x136a1f5a rtl92c_phy_iq_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1bb38317 rtl92ce_phy_set_rf_on +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1d4769ca _rtl92c_phy_fw_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2299b2d9 rtl92c_set_fw_joinbss_report_cmd 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 0x257cc297 rtl92c_phy_set_bb_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x28b0023a rtl92c_dm_bt_coexist -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2f579f16 rtl92c_dm_init_edca_turbo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2fbfd4ef rtl92c_set_fw_joinbss_report_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x32cab115 rtl92c_phy_set_txpower_level -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x38ce91e6 _rtl92c_phy_fw_rf_serial_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3b5480d7 rtl92c_phy_set_bw_mode -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x46479d1f rtl92c_phy_sw_chnl_callback -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x47b80e75 rtl92c_dm_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4c3352b7 rtl92ce_phy_set_rf_on -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4f96e9ab rtl92c_set_fw_pwrmode_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x616c1aa2 rtl92c_phy_set_io_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x63f0ad3d rtl92c_phy_set_rfpath_switch -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6c84fb41 _rtl92c_phy_bb8192c_config_parafile -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7035a4d1 _rtl92c_phy_txpwr_idx_to_dbm -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x716f57ab rtl92c_fill_h2c_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x786f1240 rtl92c_phy_ap_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7a5692c2 rtl92c_dm_write_dig -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8f86c5e7 rtl92c_phy_set_io -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9582742f rtl92c_dm_rf_saving -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9fdc3376 rtl92c_phy_rf_config -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa8ac8e7f rtl92c_phy_lc_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xae2ac64c _rtl92c_phy_set_rf_sleep -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb305dd30 rtl92c_firmware_selfreset -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb70feb8f _rtl92c_phy_init_bb_rf_register_definition -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb7c0d052 rtl8192_phy_check_is_legal_rfpath -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xbd5dd385 rtl92c_dm_watchdog -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xbda5061d rtl92c_download_fw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd00a8085 rtl92c_dm_init_rate_adaptive_mask -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd1123ed3 rtl92c_phy_update_txpower_dbm -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe1d9fb43 rtl92c_phy_iq_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe44b9aed _rtl92c_phy_dbm_to_txpwr_idx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xed9cad45 rtl92c_set_fw_rsvdpagepkt -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xefaeb07f _rtl92c_phy_rf_serial_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf063c83d rtl92c_phy_sw_chnl -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf0bf018e rtl92c_dm_check_txpower_tracking -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf4684aef rtl92c_bt_rssi_state_change -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf4ddfdfb rtl92c_phy_query_bb_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x01709c4f rtl_pci_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x91113d8d rtl_pci_suspend -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xbe0fde23 rtl_pci_disconnect -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xe59dd642 rtl_pci_resume -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x05a9df26 rtl_usb_suspend -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x383849c9 rtl_usb_resume -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x4c237961 rtl_usb_disconnect -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xe1ceb909 rtl_usb_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x068f1aa8 rtl_cmd_send_packet +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x28ee7006 rtl92c_firmware_selfreset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x29e4f7a2 rtl8192_phy_check_is_legal_rfpath +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2e725018 rtl92c_dm_rf_saving +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x34c7fad7 _rtl92c_phy_init_bb_rf_register_definition +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3b944956 rtl92c_phy_set_bw_mode +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x527683c0 _rtl92c_store_pwrindex_diffrate_offset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x59916be2 rtl92c_bt_rssi_state_change +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5c609108 rtl92c_fill_h2c_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6d26c4a8 _rtl92c_phy_dbm_to_txpwr_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x71a18e10 rtl92c_phy_query_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7c8ca38e _rtl92c_phy_set_rf_sleep +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x862e6b71 _rtl92c_phy_bb8192c_config_parafile +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x87b83cca rtl92c_phy_ap_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x91d79a50 _rtl92c_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x94b06bfa rtl92c_dm_bt_coexist +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x978c0ee3 rtl92c_dm_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa1ba35a3 rtl92c_dm_write_dig +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa4b7035c rtl92c_phy_sw_chnl +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa5374e2f rtl92c_phy_lc_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xae9eb77c rtl92c_phy_set_txpower_level +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb8c21611 rtl92c_download_fw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb92974c8 _rtl92c_phy_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xba76354a rtl92c_dm_watchdog +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xbc030802 rtl92c_phy_set_io +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd3bf7d76 rtl92c_dm_check_txpower_tracking +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd743b988 rtl92c_dm_init_edca_turbo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe5b7ee10 rtl92c_phy_set_rfpath_switch +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe6132aeb rtl92c_set_fw_pwrmode_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf3161463 rtl92c_phy_update_txpower_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf4d3a511 _rtl92c_phy_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xfa3b6974 rtl92c_phy_sw_chnl_callback +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xfa8a9b2b rtl92c_set_fw_rsvdpagepkt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xfc3cfd46 _rtl92c_phy_fw_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xfe55883a rtl92c_phy_rf_config +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xffab5eb8 rtl92c_dm_init_rate_adaptive_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x0c93bd29 rtl_pci_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x29ed7f27 rtl_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x620d2f51 rtl_pci_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xd9edb4ee rtl_pci_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x1a3457dd rtl_usb_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x32820260 rtl_usb_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x5a8145d8 rtl_usb_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xa9422704 rtl_usb_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x01ab8ecb efuse_one_byte_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x069b0fb0 rtl_cam_empty_entry EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0b038e24 channel5g_80m -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0e1b9d53 rtl_phy_scan_operation_backup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1a40d61d rtl_process_phyinfo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1961acc3 rtl_collect_scan_list 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 0x24dba722 rtl_cam_get_free_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x25bb4a65 rtl_get_tcb_desc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2dba4af7 rtl_init_rfkill +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x27a801a1 rtl_mrate_idx_to_arfr_id EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x30a956d7 rtl_query_rxpwrpercentage -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x34b24a84 rtl_ps_disable_nic -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x37eb2d9c rtl_rfreg_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x349a87cb rtl_cam_get_free_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4852f258 rtlwifi_rate_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x49a7c6e4 rtl_signal_scale_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x53e3ebe3 rtl_init_rfkill EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x54824f58 channel5g -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x55706819 rtl_dm_diginit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x55da9f33 efuse_shadow_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5f580b58 efuse_read_1byte -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6344ef7b rtl_cam_del_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x63a39113 rtl_send_smps_action -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x797e86bf rtl_cam_delete_one_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x88e1ebca rtl_cam_reset_all_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9f06f9ee rtl_c2hcmd_enqueue -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa74e676d rtl_cam_empty_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa7546270 rtl_efuse_shadow_map_update -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa91e82de rtl_signal_scale_mapping -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xae6c581b rtl_rx_ampdu_apply -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbcceea00 efuse_power_switch -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc7527cfc rtl_cam_add_one_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc96347d4 rtl_collect_scan_list -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xcc566637 rtlwifi_rate_mapping -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xcf4d8455 rtl_mrate_idx_to_arfr_id +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5533c0d5 rtl_dm_diginit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x58c32b1f rtl_cam_mark_invalid +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5e8c614f rtl_cam_delete_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5fc6555b efuse_read_1byte +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6e859f8d rtl_cam_del_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7d35d089 rtl_cmd_send_packet +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x86c45881 efuse_power_switch +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x954a001d rtl_send_smps_action +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9c28e5ab rtl_hal_pwrseqcmdparsing +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa0658440 rtl_phy_scan_operation_backup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa2ea864b rtl_rfreg_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa6e3555a rtl_c2hcmd_enqueue +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xab347eca rtl_get_tcb_desc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbc700cf8 rtl_cam_add_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbd904f71 efuse_shadow_read EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd5873508 rtl_fw_cb -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd6a8a597 rtl_bb_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe2cf8bf5 rtl_hal_pwrseqcmdparsing -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe345400b efuse_one_byte_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe4b730e9 rtl_cam_mark_invalid +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xdeaf1650 rtl_efuse_shadow_map_update EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xed7c8cf2 rtl_evm_db_to_percentage -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf35ccca5 rtl_ps_enable_nic -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8723d 0xda9c842f rtw8723d_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8821c 0x475cf3a2 rtw8821c_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822b 0x317cfe9d rtw8822b_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822c 0xdebe95a3 rtw8822c_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x00e689dd rtw_tx_write_data_h2c_get -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x06d7771a rtw_phy_write_rf_reg_mix -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x07034f47 rtw_phy_cfg_bb -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x0a11896e rtw_unregister_hw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x168cb7ab rtw_tx_write_data_rsvd_page_get -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1a0a7276 rtw_phy_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x2002ba4c rtw_bf_enable_bfee_su -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x2dfda070 rtw_chip_info_setup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x2fa3579a rtw_bf_enable_bfee_mu +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf147a622 rtl_process_phyinfo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf35127ef rtl_ps_disable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf665fbe5 rtl_cam_reset_all_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf888bb9b rtl_rx_ampdu_apply +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xfa31c7aa rtl_ps_enable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xfa5c3cc4 rtl_bb_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8723d 0xfe596c1f rtw8723d_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8821c 0x63991b92 rtw8821c_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822b 0x15b916ad rtw8822b_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822c 0xfa7b7d93 rtw8822c_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x06684b55 rtw_tx_report_enqueue +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x0a5848e2 rtw_phy_parsing_cfo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x0cd98076 rtw_bf_enable_bfee_mu +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x0f9e1ae1 rtw_bf_cfg_csi_rate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x12b4a352 rtw_phy_write_rf_reg_sipi +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x151b58ef rtw_parse_tbl_bb_pg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x17809325 rtw_fw_c2h_cmd_isr +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1a38a1c2 rtw_register_hw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1b96af05 rtw_coex_read_indirect_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1b9f04ea rtw_phy_load_tables +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x2e91b96b rtw_read8_physical_efuse 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 0x3b4e3742 rtw_phy_write_rf_reg_sipi +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x38fe563e rtw_rx_fill_rx_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x3a5b9955 rtw_dump_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x3de140de rtw_dump_fw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x41be1494 rtw_phy_init EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x440b7589 rtw_phy_rf_power_2_rssi -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x48442c88 rtw_dump_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x4903ade3 rtw_phy_get_tx_power_index -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x4c3435fd rtw_phy_pwrtrack_thermal_changed -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x4eaa4d07 rtw_bf_cfg_csi_rate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x4645a933 check_hw_ready +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x47ee95a5 rtw_bf_enable_bfee_su +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x4daee3e3 rtw_phy_read_rf EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x519c8ba9 rtw_rate_size -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x525c687f rtw_read8_physical_efuse -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5592393f rtw_phy_load_tables +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x577c3263 rtw_phy_pwrtrack_avg EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x58210e60 rtw_rate_section -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5bd9a96e rtw_parse_tbl_txpwr_lmt -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5cab9aa2 rtw_core_deinit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5dd3af54 rtw_phy_cfg_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5f3c049f rtw_phy_cfg_agc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5f65c09e rtw_rx_fill_rx_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6040a5bf rtw_bf_set_gid_table -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x648ea4da rtw_tx_report_enqueue -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6a36ee82 rtw_coex_read_indirect_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6b9902fc rtw_fw_do_iqk -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x72253e04 rtw_set_channel_mac -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x73f12ed7 rtw_phy_read_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x827bfbe5 rtw_fw_c2h_cmd_rx_irqsafe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x850bb9a0 rtw_register_hw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x87313260 rtw_tx_fill_tx_desc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x87dd46f3 rtw_phy_pwrtrack_need_iqk -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x89294f18 rtw_core_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x956f80e0 rtw_phy_parsing_cfo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x99d14153 rtw_phy_pwrtrack_get_delta -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9bfe1695 __rtw_dbg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa05f5b7a rtw_phy_pwrtrack_avg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa4225f62 rtw_phy_pwrtrack_need_lck -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa787e327 rtw_phy_read_rf_sipi -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa8998007 rtw_parse_tbl_bb_pg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xaaeddc45 rtw_coex_write_indirect_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xaec40227 rtw_bf_remove_bfee_su -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb17715b4 rtw_restore_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc21b9350 rtw_phy_set_tx_power_level -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc24729c7 rtw_bf_phy_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc44948b0 rtw_power_mode_change -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd2d37ce9 rtw_parse_tbl_phy_cond -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd37fb936 rtw_phy_cfg_mac -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd50f5b7f rtw_fw_c2h_cmd_isr -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd7536147 rtw_coex_write_scbd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd8fcbad5 rtw_bf_remove_bfee_mu -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd8fcdf88 check_hw_ready -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe6c5785e rtw_phy_pwrtrack_get_pwridx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xeb34ed86 rtw_rx_stats -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf2fc874e rtw_fw_inform_rfk_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf8af7546 rtw_ops -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xfd9c2569 rtw_phy_config_swing_table -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xffe5784a rtw_dump_fw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x16d5d819 rtw_pci_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x800ca66f rtw_pci_shutdown -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x84f65f84 rtw_pm_ops -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0xc86db7c1 rtw_pci_remove -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x15d5f841 rtw89_core_napi_start -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x1d46d634 rtw89_mac_set_err_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x1db6c3cd rtw89_core_rx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x24d17b7a rtw8852a_chip_info -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x369b7bac rtw89_core_fill_txdesc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x4d788bcb rtw89_mac_get_err_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x553d4427 rtw89_core_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x56576268 rtw89_core_napi_stop -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x59cd6a5e rtw89_ops -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x653f26ab rtw89_core_napi_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x898066e0 rtw89_phy_write_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xae64e0c6 rtw89_core_register -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xb944303c rtw89_chip_info_setup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xc2584531 rtw89_core_query_rxdesc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xc2a2765e rtw89_phy_read_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xcdb6f62e rtw89_ser_notify -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xdf7f6f55 rtw89_core_napi_deinit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x61ed5138 rtw_phy_config_swing_table +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x64421f99 rtw_phy_cfg_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6a1c02d8 rtw_core_deinit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6a227097 rtw_tx_fill_tx_desc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6ad4ad21 rtw_set_channel_mac +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6bf6cb9a rtw_phy_cfg_bb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6ddcafd4 rtw_chip_info_setup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x78d7e1c3 rtw_phy_cfg_agc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7a560b8b rtw_coex_write_scbd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x8bd880aa rtw_power_mode_change +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x8dbb1d5d rtw_phy_set_tx_power_level +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9114e63c rtw_fw_inform_rfk_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9428d404 rtw_phy_pwrtrack_thermal_changed +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9d3baddc rtw_bf_remove_bfee_mu +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9debc121 rtw_restore_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa1f2f24a rtw_parse_tbl_txpwr_lmt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa5774c54 __rtw_dbg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa6f5da67 rtw_tx_write_data_h2c_get +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa79dc790 rtw_fw_c2h_cmd_rx_irqsafe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xafa1df88 rtw_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb023b23f rtw_tx_write_data_rsvd_page_get +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb0da92d6 rtw_phy_read_rf_sipi +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb84cae48 rtw_phy_cfg_mac +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xbd4c1c78 rtw_bf_set_gid_table +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc2062ec4 rtw_phy_pwrtrack_need_iqk +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc518bbb4 rtw_fw_do_iqk +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc8779864 rtw_bf_remove_bfee_su +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xcdc9a80d rtw_phy_write_rf_reg_mix +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xcdd4a4ce rtw_parse_tbl_phy_cond +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd6c9efcc rtw_unregister_hw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd6db19b3 rtw_phy_pwrtrack_get_pwridx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd7210324 rtw_phy_get_tx_power_index +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd9971da8 rtw_phy_pwrtrack_need_lck +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe4b6251a rtw_rx_stats +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe61cf869 rtw_coex_write_indirect_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe76d5b74 rtw_phy_pwrtrack_get_delta +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xea5f6a57 rtw_bf_phy_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf8d25ec0 rtw_core_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x4352d8b8 rtw_pci_shutdown +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x67e187b2 rtw_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0xb9113ff4 rtw_pci_remove +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0xf89da0b4 rtw_pm_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x03c034bb rtw89_core_query_rxdesc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x0eacafc5 rtw89_mac_get_err_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x13440b79 rtw89_phy_write_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x153b3f41 rtw89_mac_set_err_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x2cbf7508 rtw89_core_unregister +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x3ab78d66 rtw89_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x44308348 __rtw89_debug +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x44e0a7b2 rtw89_core_rx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x456a7ac4 rtw8852a_chip_info +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x5a0106ef rtw89_core_fill_txdesc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7468e911 rtw89_core_napi_stop +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xa0ea7a6b rtw89_ser_notify +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xa2f0dfd6 rtw89_core_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xac40a19b rtw89_core_register +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xb0ff290b rtw89_phy_read_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xd8259136 rtw89_core_napi_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xda1785d5 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 0xefe7b287 __rtw89_debug -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xf6be1045 rtw89_core_deinit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xfc8d5577 rtw89_core_unregister -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x1da3e5b7 rtw89_pm_ops -EXPORT_SYMBOL drivers/net/wireless/rsi/rsi_91x 0x053c4753 rsi_config_wowlan -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x485e896e wl12xx_is_dummy_packet -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x6aa9439c wlcore_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x7b0f3023 wlcore_calc_packet_alignment -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xee7fba81 wl1271_free_tx_id -EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x40e33c36 fdp_nci_probe -EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x57664117 fdp_nci_remove -EXPORT_SYMBOL drivers/nfc/microread/microread 0x87ca53da microread_probe -EXPORT_SYMBOL drivers/nfc/microread/microread 0xcd35be40 microread_remove -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x0ef11783 nxp_nci_fw_recv_frame -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x29944abe nxp_nci_probe -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x9e81f06d nxp_nci_remove -EXPORT_SYMBOL drivers/nfc/pn533/pn533 0xddebdbb2 pn533_recv_frame -EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x1007e202 pn544_hci_probe -EXPORT_SYMBOL drivers/nfc/pn544/pn544 0xf8606015 pn544_hci_remove -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x5ae90cd6 s3fwrn5_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe6850ac4 rtw89_core_napi_start +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xeeb7db5b rtw89_core_napi_deinit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xfcf1da26 rtw89_core_deinit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xefe740a2 rtw89_pm_ops +EXPORT_SYMBOL drivers/net/wireless/rsi/rsi_91x 0x20ac1d40 rsi_config_wowlan +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x0df60810 wl1271_free_tx_id +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x5aa12efb wl12xx_is_dummy_packet +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xef4be70d wlcore_calc_packet_alignment +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xf3e1a9b1 wlcore_tx_complete +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x93c26faa fdp_nci_remove +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0xe66e6585 fdp_nci_probe +EXPORT_SYMBOL drivers/nfc/microread/microread 0x0f3d95fe microread_remove +EXPORT_SYMBOL drivers/nfc/microread/microread 0x16f9fa3d microread_probe +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x80ab3849 nxp_nci_probe +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xe2562de0 nxp_nci_remove +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xf31486e6 nxp_nci_fw_recv_frame +EXPORT_SYMBOL drivers/nfc/pn533/pn533 0x047d4218 pn533_recv_frame +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x53d3b2fb pn544_hci_probe +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x8fccee1c pn544_hci_remove +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x0c1b1a5d s3fwrn5_probe +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x0edb782c s3fwrn5_recv_frame EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x774203fc s3fwrn5_phy_set_wake -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xa2c18e13 s3fwrn5_remove -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xcc0dfa9a s3fwrn5_phy_power_ctrl -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xd3d45647 s3fwrn5_recv_frame +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xe545ecbe s3fwrn5_phy_power_ctrl EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xedb12f10 s3fwrn5_phy_set_mode EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xf2ab60da s3fwrn5_phy_get_mode -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x09f77c10 st_nci_se_init -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x0da24b54 ndlc_probe -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x111ac151 st_nci_se_io -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x53f4e49c ndlc_remove -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x6e5e93d3 ndlc_open -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x7e3c5fe5 st_nci_vendor_cmds_init -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x847d00f9 ndlc_send -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x94e5efa4 st_nci_se_deinit -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xb2208d6f ndlc_recv -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xd0390dea ndlc_close -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x060144ab st21nfca_se_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x1897073e st21nfca_hci_probe -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x21b5ece6 st21nfca_tm_send_dep_res -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x22397700 st21nfca_hci_discover_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x3975a9af st21nfca_dep_deinit -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x3fcf27ff st21nfca_im_send_dep_req -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x48d36bb4 st21nfca_dep_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x5ffed4ba st21nfca_se_deinit -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x6384acbf st21nfca_dep_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x7c248b65 st21nfca_hci_loopback_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x7d0408d4 st21nfca_apdu_reader_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x91a36aab st21nfca_hci_disable_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xb11c62c8 st21nfca_vendor_cmds_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xc3f3bf24 st21nfca_im_send_atr_req -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xce2707d9 st21nfca_connectivity_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xd20e33ae st21nfca_hci_enable_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xe4563424 st21nfca_hci_remove -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xfd4ca0e2 st21nfca_hci_se_io -EXPORT_SYMBOL drivers/ntb/ntb 0x02e43f9c ntbm_msi_request_threaded_irq -EXPORT_SYMBOL drivers/ntb/ntb 0x0b24b5a6 ntb_default_peer_port_count -EXPORT_SYMBOL drivers/ntb/ntb 0x0f18a23b ntb_link_event -EXPORT_SYMBOL drivers/ntb/ntb 0x14a9e007 ntb_default_port_number -EXPORT_SYMBOL drivers/ntb/ntb 0x29dd75ca ntb_msi_clear_mws -EXPORT_SYMBOL drivers/ntb/ntb 0x2ce3db69 ntb_set_ctx -EXPORT_SYMBOL drivers/ntb/ntb 0x4e7944c6 ntb_unregister_device -EXPORT_SYMBOL drivers/ntb/ntb 0x57e9c2db ntb_default_peer_port_idx -EXPORT_SYMBOL drivers/ntb/ntb 0x5fdf436d ntb_msi_peer_addr -EXPORT_SYMBOL drivers/ntb/ntb 0x62fc6497 ntb_db_event -EXPORT_SYMBOL drivers/ntb/ntb 0x787ee761 ntb_msi_init -EXPORT_SYMBOL drivers/ntb/ntb 0x80dd4515 ntb_default_peer_port_number -EXPORT_SYMBOL drivers/ntb/ntb 0x8e622f91 ntb_unregister_client -EXPORT_SYMBOL drivers/ntb/ntb 0xa3d30bf4 ntb_register_device -EXPORT_SYMBOL drivers/ntb/ntb 0xb88f293b ntb_msi_peer_trigger -EXPORT_SYMBOL drivers/ntb/ntb 0xc113bd75 ntb_msi_setup_mws -EXPORT_SYMBOL drivers/ntb/ntb 0xd067ecec ntb_msg_event -EXPORT_SYMBOL drivers/ntb/ntb 0xdb1e9c63 ntbm_msi_free_irq -EXPORT_SYMBOL drivers/ntb/ntb 0xef59f7f0 ntb_clear_ctx -EXPORT_SYMBOL drivers/ntb/ntb 0xf1aa2696 __ntb_register_client -EXPORT_SYMBOL drivers/parport/parport 0x0229c8f7 parport_ieee1284_ecp_read_data -EXPORT_SYMBOL drivers/parport/parport 0x060c41ad parport_find_number -EXPORT_SYMBOL drivers/parport/parport 0x0954d4d9 __parport_register_driver -EXPORT_SYMBOL drivers/parport/parport 0x0a3b9e6f parport_wait_peripheral -EXPORT_SYMBOL drivers/parport/parport 0x1f1263ca parport_ieee1284_epp_read_data -EXPORT_SYMBOL drivers/parport/parport 0x23ce0c0a parport_unregister_device -EXPORT_SYMBOL drivers/parport/parport 0x33363554 parport_ieee1284_write_compat -EXPORT_SYMBOL drivers/parport/parport 0x34b4eedd parport_negotiate -EXPORT_SYMBOL drivers/parport/parport 0x38cede6c parport_ieee1284_epp_write_data -EXPORT_SYMBOL drivers/parport/parport 0x3b9dccce parport_ieee1284_ecp_write_addr -EXPORT_SYMBOL drivers/parport/parport 0x3db046da parport_register_port -EXPORT_SYMBOL drivers/parport/parport 0x4bed6264 parport_ieee1284_read_nibble +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xfe8a4fa7 s3fwrn5_remove +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x39c66a45 ndlc_open +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x54dab68b st_nci_se_deinit +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x76895925 st_nci_se_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x79dd7832 ndlc_recv +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x8cd5f0bf st_nci_se_io +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xaed4f657 ndlc_probe +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xce8fad3b st_nci_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xd914c5d1 ndlc_close +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xf269b968 ndlc_remove +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xf75e548e ndlc_send +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x0116fcd0 st21nfca_apdu_reader_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x27a4710f st21nfca_hci_probe +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x288b490e st21nfca_dep_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x2cce1c7d st21nfca_hci_enable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x3250a4bb st21nfca_hci_remove +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x3578023f st21nfca_im_send_atr_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x68dd5c36 st21nfca_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x69f15d71 st21nfca_dep_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x8c9a90ec st21nfca_se_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x93c66850 st21nfca_hci_loopback_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x94d04891 st21nfca_hci_se_io +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x956f1488 st21nfca_hci_disable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xbbf4046a st21nfca_connectivity_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xc6cecdcd st21nfca_im_send_dep_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xdc7aa79e st21nfca_hci_discover_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xe1b3d960 st21nfca_dep_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xf1c71e2b st21nfca_se_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xfa719baa st21nfca_tm_send_dep_res +EXPORT_SYMBOL drivers/ntb/ntb 0x0a4e64c8 ntb_msi_peer_addr +EXPORT_SYMBOL drivers/ntb/ntb 0x20af5ddf ntb_default_port_number +EXPORT_SYMBOL drivers/ntb/ntb 0x281a4efb ntb_clear_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0x537b98bf ntb_msi_setup_mws +EXPORT_SYMBOL drivers/ntb/ntb 0x5571c2e1 ntb_msg_event +EXPORT_SYMBOL drivers/ntb/ntb 0x5811bfd0 ntb_msi_init +EXPORT_SYMBOL drivers/ntb/ntb 0x73f7efad ntb_link_event +EXPORT_SYMBOL drivers/ntb/ntb 0x7d1084d1 ntbm_msi_request_threaded_irq +EXPORT_SYMBOL drivers/ntb/ntb 0x7f984081 ntb_default_peer_port_idx +EXPORT_SYMBOL drivers/ntb/ntb 0x9398cb94 ntb_db_event +EXPORT_SYMBOL drivers/ntb/ntb 0x970345b3 ntb_set_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0x9a7722e4 ntb_register_device +EXPORT_SYMBOL drivers/ntb/ntb 0x9ddbfb1f ntbm_msi_free_irq +EXPORT_SYMBOL drivers/ntb/ntb 0xac5b7227 ntb_msi_peer_trigger +EXPORT_SYMBOL drivers/ntb/ntb 0xacd03c1b ntb_default_peer_port_count +EXPORT_SYMBOL drivers/ntb/ntb 0xad54c8cf __ntb_register_client +EXPORT_SYMBOL drivers/ntb/ntb 0xb1df0125 ntb_default_peer_port_number +EXPORT_SYMBOL drivers/ntb/ntb 0xc06155ae ntb_unregister_client +EXPORT_SYMBOL drivers/ntb/ntb 0xe286938b ntb_msi_clear_mws +EXPORT_SYMBOL drivers/ntb/ntb 0xfc7a0acb ntb_unregister_device +EXPORT_SYMBOL drivers/parport/parport 0x02fa406c parport_ieee1284_ecp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0x0b39c2b7 parport_del_port +EXPORT_SYMBOL drivers/parport/parport 0x0da9bfab parport_ieee1284_epp_write_data +EXPORT_SYMBOL drivers/parport/parport 0x16503ce7 parport_ieee1284_write_compat +EXPORT_SYMBOL drivers/parport/parport 0x1ab308c3 parport_ieee1284_read_nibble +EXPORT_SYMBOL drivers/parport/parport 0x22453338 parport_put_port +EXPORT_SYMBOL drivers/parport/parport 0x2ea88603 parport_ieee1284_ecp_read_data +EXPORT_SYMBOL drivers/parport/parport 0x30ddea74 parport_announce_port +EXPORT_SYMBOL drivers/parport/parport 0x36be0dc6 parport_find_base +EXPORT_SYMBOL drivers/parport/parport 0x3e5ef5bf parport_read +EXPORT_SYMBOL drivers/parport/parport 0x44b8bb92 parport_negotiate +EXPORT_SYMBOL drivers/parport/parport 0x473d1093 parport_wait_event EXPORT_SYMBOL drivers/parport/parport 0x4d2a941b parport_ieee1284_interrupt -EXPORT_SYMBOL drivers/parport/parport 0x53a06406 parport_remove_port -EXPORT_SYMBOL drivers/parport/parport 0x54d5a089 parport_claim -EXPORT_SYMBOL drivers/parport/parport 0x5e182310 parport_claim_or_block +EXPORT_SYMBOL drivers/parport/parport 0x5a53820e parport_get_port EXPORT_SYMBOL drivers/parport/parport 0x5e3a3912 parport_irq_handler -EXPORT_SYMBOL drivers/parport/parport 0x67ae1bb1 parport_del_port -EXPORT_SYMBOL drivers/parport/parport 0x6b18da3b parport_find_base -EXPORT_SYMBOL drivers/parport/parport 0x6e1b906b parport_announce_port -EXPORT_SYMBOL drivers/parport/parport 0x793f101a parport_unregister_driver -EXPORT_SYMBOL drivers/parport/parport 0x7c951de5 parport_wait_event -EXPORT_SYMBOL drivers/parport/parport 0x87074e9c parport_ieee1284_read_byte -EXPORT_SYMBOL drivers/parport/parport 0x9f580320 parport_release -EXPORT_SYMBOL drivers/parport/parport 0xa33ce9a7 parport_put_port -EXPORT_SYMBOL drivers/parport/parport 0xb029e268 parport_write -EXPORT_SYMBOL drivers/parport/parport 0xc2deaa70 parport_set_timeout -EXPORT_SYMBOL drivers/parport/parport 0xc87ef047 parport_ieee1284_epp_read_addr -EXPORT_SYMBOL drivers/parport/parport 0xe3f6072f parport_get_port -EXPORT_SYMBOL drivers/parport/parport 0xee66adad parport_read -EXPORT_SYMBOL drivers/parport/parport 0xf4e2b0b2 parport_register_dev_model -EXPORT_SYMBOL drivers/parport/parport 0xf570efa4 parport_ieee1284_epp_write_addr -EXPORT_SYMBOL drivers/parport/parport 0xf623fd06 parport_ieee1284_ecp_write_data -EXPORT_SYMBOL drivers/parport/parport_pc 0xc7dbf3a0 parport_pc_probe_port -EXPORT_SYMBOL drivers/parport/parport_pc 0xf12c3fcc parport_pc_unregister_port -EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x426349a0 cros_ec_resume -EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x693882d8 cros_ec_unregister -EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x6b111a61 cros_ec_suspend -EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x74094f5d cros_ec_register +EXPORT_SYMBOL drivers/parport/parport 0x5f0b6164 parport_claim_or_block +EXPORT_SYMBOL drivers/parport/parport 0x5f5e0349 parport_set_timeout +EXPORT_SYMBOL drivers/parport/parport 0x5fb59660 parport_wait_peripheral +EXPORT_SYMBOL drivers/parport/parport 0x70f82f76 parport_ieee1284_ecp_write_data +EXPORT_SYMBOL drivers/parport/parport 0x7d182235 parport_ieee1284_epp_read_addr +EXPORT_SYMBOL drivers/parport/parport 0x7fabd0b1 parport_ieee1284_epp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0x85ad433c parport_claim +EXPORT_SYMBOL drivers/parport/parport 0x8d17c3ec parport_remove_port +EXPORT_SYMBOL drivers/parport/parport 0x9906ec3b parport_ieee1284_epp_read_data +EXPORT_SYMBOL drivers/parport/parport 0x9d7f44cf __parport_register_driver +EXPORT_SYMBOL drivers/parport/parport 0xa083661c parport_register_dev_model +EXPORT_SYMBOL drivers/parport/parport 0xacf8cfe4 parport_unregister_driver +EXPORT_SYMBOL drivers/parport/parport 0xba9f2f73 parport_write +EXPORT_SYMBOL drivers/parport/parport 0xbd0d21ed parport_unregister_device +EXPORT_SYMBOL drivers/parport/parport 0xbf91a4bc parport_find_number +EXPORT_SYMBOL drivers/parport/parport 0xc149888f parport_release +EXPORT_SYMBOL drivers/parport/parport 0xe58c02a1 parport_register_port +EXPORT_SYMBOL drivers/parport/parport 0xef76bf31 parport_ieee1284_read_byte +EXPORT_SYMBOL drivers/parport/parport_pc 0xa2423c8b parport_pc_unregister_port +EXPORT_SYMBOL drivers/parport/parport_pc 0xb03401db parport_pc_probe_port +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x2daf0842 cros_ec_resume +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x3da143f3 cros_ec_suspend +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x5e6bcd43 cros_ec_unregister EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0xf25aacf5 cros_ec_irq_thread -EXPORT_SYMBOL drivers/regulator/rohm-regulator 0x6430ea0e rohm_regulator_set_dvs_levels +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0xfda8ff3c cros_ec_register +EXPORT_SYMBOL drivers/regulator/rohm-regulator 0xae798a28 rohm_regulator_set_dvs_levels EXPORT_SYMBOL drivers/rpmsg/qcom_smd 0x3330a1c8 qcom_smd_unregister_edge -EXPORT_SYMBOL drivers/rpmsg/qcom_smd 0xe742e679 qcom_smd_register_edge -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x042b3d73 rpmsg_create_channel -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x094bf27b rpmsg_find_device -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x0c80e87d rpmsg_release_channel -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x19276800 rpmsg_trysend_offchannel -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x3f15cba2 rpmsg_destroy_ept -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x47a5b86f rpmsg_sendto -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x4bf76176 __register_rpmsg_driver -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x5b1f60fe rpmsg_unregister_device -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x83a4f5da rpmsg_send_offchannel -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x8d70fb3a rpmsg_poll -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x8e187f79 rpmsg_send -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xa92dd5e5 rpmsg_create_ept -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xb15bb320 rpmsg_trysendto -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xbb927d8c rpmsg_trysend -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xf6f35421 unregister_rpmsg_driver -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xfa6d9b7f rpmsg_register_device -EXPORT_SYMBOL drivers/rpmsg/rpmsg_ns 0x27d372ab rpmsg_ns_register_device -EXPORT_SYMBOL drivers/rtc/rtc-ds1685 0x6a235919 ds1685_rtc_poweroff +EXPORT_SYMBOL drivers/rpmsg/qcom_smd 0x40d43b66 qcom_smd_register_edge +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x3aa90292 rpmsg_trysendto +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x481cd3a0 rpmsg_register_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x4d33fd82 rpmsg_destroy_ept +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x548d221d rpmsg_send_offchannel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x60eb5eaf rpmsg_sendto +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x62473dfd rpmsg_trysend_offchannel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x6441e564 unregister_rpmsg_driver +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x74603c3a rpmsg_find_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x765ef41f rpmsg_create_channel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xa83b4caf rpmsg_poll +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xa972d265 __register_rpmsg_driver +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xb2322485 rpmsg_send +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xd6fa6880 rpmsg_trysend +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xf128a3d8 rpmsg_unregister_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xf66fff82 rpmsg_create_ept +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xf6b67e66 rpmsg_release_channel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_ns 0x8fa0aa72 rpmsg_ns_register_device +EXPORT_SYMBOL drivers/rtc/rtc-ds1685 0xd2c41958 ds1685_rtc_poweroff EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4a29ab38 scsi_esp_intr -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x5bd3463d scsi_esp_unregister -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x6f340888 scsi_esp_cmd -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x91747d30 scsi_esp_register -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x9a9b9147 scsi_esp_template -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x13b1399d fcoe_ctlr_els_send -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x43d3f45e fcoe_ctlr_init -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x56843489 fcoe_ctlr_destroy -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x58bdb15e fcoe_transport_detach -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x62ec97d8 fcoe_ctlr_recv -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x749febcd fcoe_ctlr_link_up -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x81c97ea4 fcoe_ctlr_recv_flogi -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x9c1c7cb4 fcoe_fcf_get_selected -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xac6cf0eb fcoe_ctlr_set_fip_mode -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xde4587af fcoe_transport_attach -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xe74c6ed3 fcoe_ctlr_link_down -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0201182d fc_exch_mgr_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x02898f2d fc_fabric_login -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x05c0f182 fc_disc_config -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x08d1d10d fc_rport_logoff -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0cd0bf8b libfc_vport_create -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0cd6e1a5 fc_get_host_port_state +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x552e6ba9 scsi_esp_unregister +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x7fb583f3 scsi_esp_register +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xd2cdc653 scsi_esp_template +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xf3ea8b95 scsi_esp_cmd +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x057b5051 fcoe_transport_detach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x1dadd3d1 fcoe_ctlr_link_up +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x2fd15b9a fcoe_ctlr_init +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x47c528e8 fcoe_fcf_get_selected +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x4fe8f65d fcoe_ctlr_link_down +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x7e4bdaf4 fcoe_ctlr_recv_flogi +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xa38a3986 fcoe_ctlr_recv +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xbe77c4ab fcoe_ctlr_els_send +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xc58f3c53 fcoe_transport_attach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xd1daa9f6 fcoe_ctlr_set_fip_mode +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xeca3d531 fcoe_ctlr_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x06c547ed fc_vport_setlink +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x084e11f1 fc_exch_mgr_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0c7d850e fc_linkup EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0ee52c69 fc_fill_hdr EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1175b7a4 fc_fill_reply_hdr -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x12eeb95a fc_lport_iterate -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x13df1273 fc_set_mfs -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1869d45c fc_disc_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1ba0e879 fc_lport_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1c86ee0a fc_exch_mgr_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1ce8a778 fc_lport_bsg_request EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22b90986 fc_exch_mgr_del -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2f6dcec0 fc_fcp_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x31265537 fc_lport_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x33d88496 fc_exch_mgr_add -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x34debffd fc_fc4_register_provider -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x36b5394d fc_elsct_send -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x428f9b0d fc_lport_destroy -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x46b24ab0 fc_set_rport_loss_tmo -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4ce670d8 fc_rport_create -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4debd787 fc_lport_bsg_request -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5a68fa57 fc_fabric_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2b589b68 fc_set_rport_loss_tmo +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x309e3b13 fc_eh_host_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x37ce9a0d fc_fc4_deregister_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3bb10c48 fc_lport_set_local_id +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4a4e0dd0 fc_rport_recv_req +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4d097174 fc_exch_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5220dc83 fc_lport_config EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5ab41f0c fc_lport_notifier_head -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5e335284 fc_linkup -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x624d0b3a fc_exch_mgr_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6998997b fc_eh_abort -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6e300c63 fc_exch_seq_send -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6ed08407 fc_eh_device_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6f6f5432 fc_exch_mgr_list_clone -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x704af6fb fc_vport_id_lookup -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x76e75e2d fc_get_host_stats -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x79b81e75 fc_exch_recv -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7d211e82 fc_eh_host_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6090db68 fc_lport_iterate +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x60d39323 fc_rport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x64ec19b3 fc_seq_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x667162ba fc_slave_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6928db42 fc_get_host_port_state +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x73a1ef27 fc_rport_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x77364671 fc_exch_update_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x774c08cc fc_fabric_login EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7f3407a7 fc_seq_start_next +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7f4e73ce fc_rport_terminate_io EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x811811e0 fc_exch_done +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x82154bfc fc_queuecommand EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x84c1845a _fc_frame_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x85e29d3f fc_vport_setlink -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x88ab1b84 fc_lport_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x94d4d376 fc_fc4_deregister_provider -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x95220ce5 fc_rport_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8b00ba71 fc_eh_abort +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x912f4378 fc_lport_init EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x954d6f50 fc_lport_logo_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x975f9999 fc_exch_mgr_add +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9d120bf3 fc_eh_device_reset EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9d50ed7e fc_rport_destroy EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa1bcd198 fc_cpu_mask -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa7e707c5 fc_exch_mgr_free +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa5298122 libfc_vport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xabcdb3bd fc_get_host_stats EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xacfa74cd fc_lport_flogi_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb07e44b4 fc_fc4_register_provider EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb0ddd5a1 fc_rport_flush_queue -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb4b43201 fc_rport_terminate_io -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb519d76f fc_exch_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb691957c fc_fcp_destroy -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb6ee27f1 fc_rport_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb3d70e38 fc_elsct_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb42541a9 fc_fcp_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb5a97101 fc_seq_assign +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb67fa2a3 fc_fabric_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb6a82f7e fc_exch_mgr_free EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb80157e7 fc_frame_crc_check -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbdeb2583 fc_seq_assign -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc1430a37 fc_elsct_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbd9b73a8 fc_elsct_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc57c250f fc_disc_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc7b56847 fc_disc_init EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc861d981 fc_frame_alloc_fill -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xca89ad66 fc_seq_send -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xce469d11 fc_rport_recv_req -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xce99840e fc_slave_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd05e3aee fc_linkdown -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe3ad8dde fc_exch_update_stats -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe77f2f68 fc_lport_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xce7cf53c fc_exch_seq_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd2e12727 fc_fcp_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd7391cd7 fc_lport_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd9b3c852 fc_vport_id_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe372aed3 fc_rport_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe644da2c fc_get_host_speed +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe86605b9 fc_exch_init EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe8a4e2ba fc_seq_set_resp -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xee1f7cc4 fc_lport_set_local_id -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf44905f1 fc_lport_recv -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf8affba8 fc_queuecommand +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf1257c45 fc_rport_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf33ed879 fc_lport_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf386e808 fc_set_mfs EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfa4667d1 fc_seq_release -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfac0cb47 fc_get_host_speed +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfe6e36d7 fc_exch_mgr_list_clone +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xff39b751 fc_linkdown +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x15dcfdd3 sas_prep_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x32474109 sas_suspend_ha EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x4a8e3d34 try_test_sas_gpio_gp_bit -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x5a64de1c sas_suspend_ha -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x71adeae1 sas_prep_resume_ha -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xd76f5055 sas_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x6333b3f0 sas_resume_ha +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x9383a0e9 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/megaraid/megaraid_mm 0xcf49358a mraid_mm_register_adp -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x01788625 qlt_free_mcmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x13221e93 qlt_abort_cmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x1af8443e qlt_lport_deregister -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x35ddd268 qlt_stop_phase1 -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x39cfa996 qlt_lport_register -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x6dc1d4a0 qlt_enable_vha -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x71e2a31a qlt_xmit_response -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x795025fa qlt_unreg_sess -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x8f7ccda2 qlt_rdy_to_xfer -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xc1b0249d qlt_stop_phase2 -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xcab021b1 qlt_free_cmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xcafd8bd3 qlt_xmit_tm_rsp -EXPORT_SYMBOL drivers/scsi/raid_class 0x66c65f46 raid_class_release -EXPORT_SYMBOL drivers/scsi/raid_class 0x9a90972b raid_component_add -EXPORT_SYMBOL drivers/scsi/raid_class 0xd383c110 raid_class_attach -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x0751894d fc_host_post_vendor_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x0d4706d1 fc_host_fpin_rcv -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x14771c50 fc_host_post_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x305bf867 fc_block_rport +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x11a13db8 qlt_xmit_tm_rsp +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x2060e93b qlt_lport_register +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x215caa40 qlt_xmit_response +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x25b06051 qlt_free_mcmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x3733ffb8 qlt_lport_deregister +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x45d69769 qlt_abort_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x5ff65e63 qlt_rdy_to_xfer +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x627b9417 qlt_unreg_sess +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x94d8ee7b qlt_enable_vha +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xab930c20 qlt_stop_phase1 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xc7715a4c qlt_free_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xcf7c3ff2 qlt_stop_phase2 +EXPORT_SYMBOL drivers/scsi/raid_class 0x075f2a11 raid_component_add +EXPORT_SYMBOL drivers/scsi/raid_class 0x33d95df5 raid_class_release +EXPORT_SYMBOL drivers/scsi/raid_class 0xc2687180 raid_class_attach +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x0e93c751 fc_remote_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x2c0b86ab fc_host_fpin_rcv EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x375f8bbd fc_get_event_number -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x3d157235 fc_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x518a72ab fc_remove_host -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x6e6d5745 fc_host_post_fc_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x712e4ac6 fc_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7d7d172c fc_vport_create -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x86aca0ac fc_eh_timed_out -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x9173478b fc_vport_terminate -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xbd90315a fc_remote_port_rolechg -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xce25571e fc_block_scsi_eh -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xe5a02a45 scsi_is_fc_rport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xecf4a7c2 fc_remote_port_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xf5f8fb81 fc_remote_port_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xfdff477b fc_find_rport_by_wwpn -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1a8219fe sas_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1aa77b73 sas_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x21a208f5 scsi_is_sas_rphy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x23157c90 sas_get_address -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2a0beb1f sas_remove_host -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x30861f31 sas_expander_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3866a405 sas_port_alloc_num -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4fd9173f sas_rphy_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x57c77532 sas_port_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5e1f0dee sas_port_add_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5fa176b6 sas_remove_children -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x692a67ca sas_phy_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6e40e006 sas_read_port_mode_page -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6fbde430 sas_port_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x810426f4 sas_port_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x83696280 sas_phy_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x9368ee36 sas_port_mark_backlink -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x9609515f sas_rphy_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xaa9d2ad4 scsi_is_sas_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xaf70fb5e sas_rphy_remove -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb00c0133 sas_port_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xbbaa6577 sas_phy_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xbcfd0ca5 sas_port_get_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc18d8407 sas_end_device_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd99f1a2d sas_phy_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe9d25d42 sas_port_delete_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf27afda3 sas_rphy_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf4f42c2f scsi_is_sas_port -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf6d76ff1 sas_rphy_unlink -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x1598c16c spi_display_xfer_agreement -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x27370fc2 spi_schedule_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x57af3de9 fc_host_post_fc_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x6bed73f2 fc_remote_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x79931222 fc_vport_terminate +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7ad5344f fc_remote_port_rolechg +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7ec63150 fc_vport_create +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xb0ba8019 fc_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xb9b14832 fc_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xc3763694 fc_host_post_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xc5b16373 fc_host_post_vendor_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xc9047524 fc_eh_timed_out +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xd96196f0 fc_find_rport_by_wwpn +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xdcaa9251 scsi_is_fc_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xe96f6740 fc_block_scsi_eh +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xf563f79f fc_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xf7be806e fc_block_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x06626763 sas_port_mark_backlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0abd461c sas_end_device_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1c5d860d sas_port_alloc_num +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2dc6615c sas_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x32dd8613 sas_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x37fd2f76 sas_rphy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3c128605 sas_port_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3d429aab sas_rphy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4273fc03 sas_rphy_unlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x45dddf4e sas_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4f5e2937 sas_phy_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x55ae34fd sas_port_delete_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x69347ace sas_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6dbeb86f sas_expander_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7c013fdb sas_rphy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8084b336 scsi_is_sas_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x96f6d662 sas_remove_children +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x9a8ae2cd sas_phy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa848ec4f sas_port_add_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xadb5eee4 sas_port_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xaec3ba6b sas_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc65a9b54 sas_read_port_mode_page +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe018c7d6 scsi_is_sas_rphy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe4ac9f10 sas_phy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xead3be24 sas_rphy_remove +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xefd13bc7 sas_phy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf4debb8f sas_get_address +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf7e7d1bd scsi_is_sas_port +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xfead6fac sas_port_get_phy EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x58124576 spi_dv_device -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x6bbe7453 spi_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xab3c7ac9 spi_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x285f97f4 srp_rport_put -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x33ba3770 srp_start_tl_fail_timers -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x36335004 srp_reconnect_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x46731fb0 spi_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x4bc7e28c spi_schedule_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x61e2b223 spi_display_xfer_agreement +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x783f84d7 spi_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xcd3932d4 spi_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x2a370c2a srp_rport_put EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x405b6e05 srp_parse_tmo -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x7691042b srp_rport_get -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x80b46e06 srp_timed_out -EXPORT_SYMBOL drivers/scsi/ufs/tc-dwc-g210 0x598149b8 tc_dwc_g210_config_20_bit -EXPORT_SYMBOL drivers/scsi/ufs/tc-dwc-g210 0x6d09fd1c tc_dwc_g210_config_40_bit -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x0d0e75f7 ufshcd_system_resume -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x3a1bd33e ufshcd_system_suspend -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x3ad1ed0d ufshcd_runtime_suspend -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x64f39d40 ufshcd_alloc_host -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0xbd42d565 ufshcd_get_local_unipro_ver -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0xc73046f7 ufshcd_runtime_resume -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0xd9041583 ufshcd_map_desc_id_to_length -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0xec8eb3d7 ufshcd_shutdown -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-dwc 0xbaf9b338 ufshcd_dwc_dme_set_attrs -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-dwc 0xcf7fb02c ufshcd_dwc_link_startup_notify +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x4a34359d srp_start_tl_fail_timers +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xb041da95 srp_timed_out +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xc8ea1996 srp_rport_get +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xdc03f9a1 srp_reconnect_rport +EXPORT_SYMBOL drivers/scsi/ufs/tc-dwc-g210 0x32e72625 tc_dwc_g210_config_40_bit +EXPORT_SYMBOL drivers/scsi/ufs/tc-dwc-g210 0x53215e3b tc_dwc_g210_config_20_bit +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x0528fa99 ufshcd_system_suspend +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x41837433 ufshcd_shutdown +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x4f0a8077 ufshcd_map_desc_id_to_length +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0xa51fa072 ufshcd_system_resume +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0xa8fd33e1 ufshcd_alloc_host +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0xafcb0a03 ufshcd_get_local_unipro_ver +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0xd8e7f835 ufshcd_runtime_resume +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0xededd6f2 ufshcd_runtime_suspend +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-dwc 0x49cb60dc ufshcd_dwc_link_startup_notify +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-dwc 0x8d90998d ufshcd_dwc_dme_set_attrs EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x0597f357 cmdq_pkt_write_mask EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x0d344c47 cmdq_pkt_finalize -EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x19b1030a cmdq_mbox_destroy EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x1adc7386 cmdq_pkt_write_s_mask EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x29537aaa cmdq_pkt_destroy EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x29cfe8c0 cmdq_pkt_write_s +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x2b1cc96b cmdq_dev_get_client_reg EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x31b45f26 cmdq_pkt_poll EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x3e261130 cmdq_pkt_flush_async EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x437bfc1a cmdq_pkt_assign EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x47ef9293 cmdq_pkt_poll_mask EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x60db9531 cmdq_pkt_wfe EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x64a280fd cmdq_pkt_read_s -EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x659e569b cmdq_dev_get_client_reg -EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x71431876 cmdq_mbox_create EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x7525fb04 cmdq_pkt_set_event -EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x82275bc0 cmdq_pkt_create +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x7a872eb6 cmdq_mbox_destroy EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x99c187ae cmdq_pkt_write +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0xafc1e449 cmdq_mbox_create EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0xc7540ddc cmdq_pkt_clear_event EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0xdc80e661 cmdq_pkt_write_s_value EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0xdd772c11 cmdq_pkt_jump EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0xeda81fb3 cmdq_pkt_write_s_mask_value -EXPORT_SYMBOL drivers/soc/qcom/ocmem 0x825848c6 of_get_ocmem +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0xfd2376d1 cmdq_pkt_create +EXPORT_SYMBOL drivers/soc/qcom/ocmem 0xb2953847 of_get_ocmem EXPORT_SYMBOL drivers/soc/qcom/ocmem 0xc53d76b1 ocmem_allocate EXPORT_SYMBOL drivers/soc/qcom/ocmem 0xf9b05967 ocmem_free EXPORT_SYMBOL drivers/soc/qcom/pdr_interface 0x1c76ea4d pdr_restart_pd EXPORT_SYMBOL drivers/soc/qcom/pdr_interface 0x432975e6 pdr_add_lookup EXPORT_SYMBOL drivers/soc/qcom/pdr_interface 0x47b2ed49 pdr_handle_alloc EXPORT_SYMBOL drivers/soc/qcom/pdr_interface 0xf618ca5b pdr_handle_release -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x2039c77b geni_se_tx_dma_unprep -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x24223a6e geni_icc_get -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x310c1bb7 geni_se_tx_dma_prep -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x3649dbd6 geni_se_select_mode -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x44027c41 geni_se_rx_dma_prep -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x45ff401b geni_icc_disable -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x5c9d893f geni_se_init -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x66440869 geni_se_rx_dma_unprep -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x695fd74e geni_se_resources_off -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x6e1682a4 geni_icc_set_tag -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x8b7f69da geni_icc_enable -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x9980de7c geni_se_clk_freq_match -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xbba43b46 geni_se_resources_on -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xd97f6f42 geni_se_config_packing -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xe0f29599 geni_icc_set_bw -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xeb207eb0 geni_se_get_qup_hw_version -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xfe460adc geni_se_clk_tbl_get -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x0a36646c qmi_send_request +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x09b281f2 geni_icc_set_bw +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x10b645e3 geni_se_rx_dma_unprep +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x249db2fc geni_se_select_mode +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x2b52c897 geni_icc_enable +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x34ebec40 geni_se_clk_tbl_get +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x406463a7 geni_icc_get +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x56ea5563 geni_se_config_packing +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x5dffde29 geni_se_get_qup_hw_version +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x63afc533 geni_se_clk_freq_match +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x76bacd00 geni_se_rx_dma_prep +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x8597e32b geni_se_resources_on +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x93f4f938 geni_se_resources_off +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x9f954aac geni_se_tx_dma_unprep +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xbf029676 geni_se_tx_dma_prep +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xd4ea9edf geni_icc_set_tag +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xeb269c54 geni_se_init +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xed107a04 geni_icc_disable +EXPORT_SYMBOL drivers/soc/qcom/qcom_aoss 0x2333aed6 qmp_put +EXPORT_SYMBOL drivers/soc/qcom/qcom_aoss 0xac9c98cb qmp_get +EXPORT_SYMBOL drivers/soc/qcom/qcom_aoss 0xae4b53c5 qmp_send EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x133168aa qmi_encode_message -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x14aa2b40 qmi_txn_cancel EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x21ce5888 qmi_response_type_v01_ei -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x2fa6dc0f qmi_add_lookup -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x3e06361d qmi_send_response -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x5a454037 qmi_txn_init -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x60eaaad7 qmi_send_indication +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x28bc3bd0 qmi_handle_init +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x5d95cd22 qmi_add_lookup +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x5f032f09 qmi_send_request +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x6c53a7d4 qmi_txn_cancel +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x88b2545c qmi_send_response +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x9159643a qmi_add_server EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xa2ff1ede qmi_decode_message -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xb122f1d3 qmi_handle_init -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xc68e9ee9 qmi_txn_wait -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xdecb4716 qmi_handle_release -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xe49b6881 qmi_add_server +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xa572885c qmi_txn_init +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xceaaf8f4 qmi_txn_wait +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xe98c0967 qmi_send_indication +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xe99e49f5 qmi_handle_release 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 EXPORT_SYMBOL drivers/soc/qcom/smem 0x694c56fb qcom_smem_virt_to_phys EXPORT_SYMBOL drivers/soc/qcom/smem 0x932eb0e3 qcom_smem_get -EXPORT_SYMBOL drivers/soc/qcom/wcnss_ctrl 0x09dfcdb4 qcom_wcnss_open_channel -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x003055b9 sdw_compare_devid -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x097cbede sdw_nread -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x16536a7d sdw_update_no_pm +EXPORT_SYMBOL drivers/soc/qcom/wcnss_ctrl 0x1046a4fb qcom_wcnss_open_channel EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x16d1706b sdw_prepare_stream EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x1deee061 sdw_find_row_index -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x22630666 sdw_clear_slave_status +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x1fa62341 sdw_stream_add_master +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x23994f5d sdw_write +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x241e7054 sdw_update_no_pm +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x37c19dc5 sdw_stream_add_slave EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x3b0a8582 sdw_startup_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x434fff34 sdw_update -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x46ab7681 sdw_read +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x47babaa3 sdw_read_no_pm +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x4c7f4370 sdw_nwrite EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x4cde88bf sdw_disable_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x4cefa266 sdw_master_read_prop -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x4de9defa sdw_bus_clk_stop -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x53cf5089 sdw_bus_master_delete -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x554613cd sdw_write_no_pm -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x59fc7321 sdw_nwrite +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x4fdf6842 sdw_compare_devid +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x545a67cc sdw_slave_read_prop EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x60e31fbb sdw_find_col_index EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x6f95b16b sdw_shutdown_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x701f8f9d sdw_master_read_prop EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x71891d59 sdw_deprepare_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x8c7e6d9c sdw_bus_master_add -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x8de5fb65 sdw_slave_add +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x76cb0d23 sdw_bwrite_no_pm_unlocked +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x77a928fd sdw_extract_slave_id +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x7babedec sdw_bus_clk_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x7bcb6db7 sdw_stream_remove_slave +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x8d20ddcf sdw_bread_no_pm_unlocked +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x961ac82c sdw_clear_slave_status +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x9d39a056 sdw_read EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x9e122d79 sdw_alloc_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x9f8279ea sdw_stream_add_master -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xa8d5efb4 sdw_slave_read_prop -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xb85c1782 sdw_bus_exit_clk_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xa344c9b0 sdw_nread +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xae14b139 sdw_bus_master_delete EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xba54b904 sdw_cols -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xbb4dbeb0 sdw_stream_remove_master -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xbb656529 sdw_stream_add_slave EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xbbec2c2e sdw_enable_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xbc1cf223 sdw_extract_slave_id -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xc3b84683 sdw_handle_slave_status -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xc8a99234 sdw_read_no_pm -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xd222d1b9 sdw_bwrite_no_pm_unlocked -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xd90fab7e sdw_stream_remove_slave +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xc68da707 sdw_slave_add +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xc95c471c sdw_update +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xd127e031 sdw_stream_remove_master +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xd8769b79 sdw_bus_prep_clk_stop EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xda5bce09 sdw_release_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xdc9b128c sdw_bread_no_pm_unlocked -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xed7b8146 sdw_write +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xde2b754c sdw_bus_master_add +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xdee2b7d6 sdw_bus_exit_clk_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xe291626e sdw_write_no_pm +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xefcffa06 sdw_handle_slave_status EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xf53ba0b8 sdw_rows -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xfb49a37b sdw_bus_prep_clk_stop -EXPORT_SYMBOL drivers/ssb/ssb 0x01477e01 ssb_chipco_gpio_control -EXPORT_SYMBOL drivers/ssb/ssb 0x090107ef ssb_device_disable -EXPORT_SYMBOL drivers/ssb/ssb 0x168744d1 __ssb_driver_register -EXPORT_SYMBOL drivers/ssb/ssb 0x2124c145 ssb_pcicore_dev_irqvecs_enable -EXPORT_SYMBOL drivers/ssb/ssb 0x274048a8 ssb_commit_settings -EXPORT_SYMBOL drivers/ssb/ssb 0x2927dbc1 ssb_bus_powerup -EXPORT_SYMBOL drivers/ssb/ssb 0x326710b5 ssb_bus_suspend -EXPORT_SYMBOL drivers/ssb/ssb 0x55fb9514 ssb_dma_translation -EXPORT_SYMBOL drivers/ssb/ssb 0x56fc786d ssb_driver_unregister -EXPORT_SYMBOL drivers/ssb/ssb 0x5f1efb81 ssb_device_enable -EXPORT_SYMBOL drivers/ssb/ssb 0x629d1ea0 ssb_bus_unregister -EXPORT_SYMBOL drivers/ssb/ssb 0x690cd96f ssb_bus_resume -EXPORT_SYMBOL drivers/ssb/ssb 0x6c127656 ssb_bus_sdiobus_register -EXPORT_SYMBOL drivers/ssb/ssb 0x8ef995fb ssb_bus_may_powerdown -EXPORT_SYMBOL drivers/ssb/ssb 0x9ec69f36 ssb_pmu_set_ldo_paref -EXPORT_SYMBOL drivers/ssb/ssb 0xb168f270 ssb_pmu_set_ldo_voltage -EXPORT_SYMBOL drivers/ssb/ssb 0xc449660f ssb_device_is_enabled -EXPORT_SYMBOL drivers/ssb/ssb 0xc63cb603 ssb_pcihost_register +EXPORT_SYMBOL drivers/ssb/ssb 0x0d9091f8 ssb_bus_resume +EXPORT_SYMBOL drivers/ssb/ssb 0x0ff917c2 ssb_pmu_set_ldo_paref +EXPORT_SYMBOL drivers/ssb/ssb 0x145316ac ssb_set_devtypedata +EXPORT_SYMBOL drivers/ssb/ssb 0x150ce26c ssb_clockspeed +EXPORT_SYMBOL drivers/ssb/ssb 0x1e0c3647 ssb_device_disable +EXPORT_SYMBOL drivers/ssb/ssb 0x23662be0 ssb_bus_suspend +EXPORT_SYMBOL drivers/ssb/ssb 0x34dca622 ssb_commit_settings +EXPORT_SYMBOL drivers/ssb/ssb 0x387570b7 ssb_bus_sdiobus_register +EXPORT_SYMBOL drivers/ssb/ssb 0x3b2eaa79 __ssb_driver_register +EXPORT_SYMBOL drivers/ssb/ssb 0x40db4b66 ssb_bus_may_powerdown +EXPORT_SYMBOL drivers/ssb/ssb 0x47b05523 ssb_pmu_set_ldo_voltage +EXPORT_SYMBOL drivers/ssb/ssb 0x785c7667 ssb_pcihost_register +EXPORT_SYMBOL drivers/ssb/ssb 0x7e9e8199 ssb_bus_powerup +EXPORT_SYMBOL drivers/ssb/ssb 0xaec211e8 ssb_device_is_enabled +EXPORT_SYMBOL drivers/ssb/ssb 0xbfbbf6d9 ssb_bus_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0xc04fdab6 ssb_pcicore_dev_irqvecs_enable +EXPORT_SYMBOL drivers/ssb/ssb 0xc380f987 ssb_chipco_gpio_control EXPORT_SYMBOL drivers/ssb/ssb 0xcb17f1cb ssb_admatch_base -EXPORT_SYMBOL drivers/ssb/ssb 0xd2fb110a ssb_set_devtypedata -EXPORT_SYMBOL drivers/ssb/ssb 0xd5916316 ssb_clockspeed +EXPORT_SYMBOL drivers/ssb/ssb 0xd34e1fb4 ssb_driver_unregister EXPORT_SYMBOL drivers/ssb/ssb 0xdfc7c6ef ssb_admatch_size -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x09641e51 fbtft_dbg_hex -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x0a1339d8 fbtft_write_gpio16_wr_latched -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x1ba320fc fbtft_register_backlight -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x22631e3b fbtft_unregister_framebuffer -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x2f4358f5 fbtft_register_framebuffer -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x303a081c fbtft_write_gpio8_wr -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x375b3418 fbtft_write_reg16_bus16 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x3dab92f0 fbtft_write_vmem16_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x59c89dd9 fbtft_write_vmem16_bus9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x5a8fc2cc fbtft_write_spi_emulate_9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x5fa8ad3c fbtft_write_spi -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x65940282 fbtft_write_reg8_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x6834d19a fbtft_write_reg8_bus9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x88463a77 fbtft_write_vmem8_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x8dbaf4a4 fbtft_framebuffer_release -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x9207a892 fbtft_write_reg16_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x9956fa3e fbtft_read_spi -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xa75d4fc0 fbtft_unregister_backlight -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xd609ecca fbtft_probe_common -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xdb88a6f5 fbtft_init_display -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xe0c4dcb4 fbtft_write_buf_dc -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xe708d473 fbtft_framebuffer_alloc -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xe939667d fbtft_write_vmem16_bus16 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf04c606f fbtft_remove_common -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xfd612d4a fbtft_write_gpio16_wr -EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x75a9d9e7 gbaudio_unregister_module -EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x7b172615 gbaudio_register_module -EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0xbe9040ca gbaudio_module_update -EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0x5baa286a adt7316_probe -EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0x88e82e65 ade7854_probe -EXPORT_SYMBOL drivers/staging/media/av7110/sp8870 0x208bcb7b sp8870_attach -EXPORT_SYMBOL drivers/staging/media/zoran/videocodec 0x0c9fa482 videocodec_detach -EXPORT_SYMBOL drivers/staging/media/zoran/videocodec 0x568268d7 videocodec_register -EXPORT_SYMBOL drivers/staging/media/zoran/videocodec 0xcdaee25f videocodec_attach -EXPORT_SYMBOL drivers/staging/media/zoran/videocodec 0xd6be5540 videocodec_unregister -EXPORT_SYMBOL drivers/staging/nvec/nvec 0x3e6265b8 nvec_write_async -EXPORT_SYMBOL drivers/staging/nvec/nvec 0xbd6db261 nvec_write_sync -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x05ab1dc0 rtllib_reset_queue -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x079c427e rtllib_legal_channel -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1915bb2f rtllib_wx_get_rts -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1b72ea23 rtllib_start_scan_syncro -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1c6aa57f rtllib_softmac_stop_protocol +EXPORT_SYMBOL drivers/ssb/ssb 0xe3da1be0 ssb_dma_translation +EXPORT_SYMBOL drivers/ssb/ssb 0xe5d5165d ssb_device_enable +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x1adb41f0 fbtft_write_gpio16_wr_latched +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x1d4ff14f fbtft_write_reg8_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x25d5dced fbtft_remove_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x278918ee fbtft_write_reg8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x27fc69ad fbtft_write_vmem16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x3503c1a6 fbtft_framebuffer_alloc +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x39c703bc fbtft_write_buf_dc +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x43ea7339 fbtft_write_reg16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x4586c811 fbtft_write_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x4c166352 fbtft_write_gpio8_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x4ed9ab3f fbtft_write_vmem8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x5a7fc86d fbtft_probe_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x65457ff8 fbtft_write_gpio16_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x7138e4e0 fbtft_register_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x7e07dc96 fbtft_dbg_hex +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x7e870f9d fbtft_framebuffer_release +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x7f026aa5 fbtft_write_vmem16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x7fdde138 fbtft_write_reg16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xaaa2dfd4 fbtft_write_vmem16_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xadf79ceb fbtft_write_spi_emulate_9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xb6951a64 fbtft_read_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc0b18269 fbtft_init_display +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xe8f4998e fbtft_unregister_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xed591b25 fbtft_unregister_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf8ed303b fbtft_register_backlight +EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x47b44568 gbaudio_register_module +EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x4a84bebd gbaudio_unregister_module +EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0xb434dc9a gbaudio_module_update +EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0x5e5f132d adt7316_probe +EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0xb423b5a7 ade7854_probe +EXPORT_SYMBOL drivers/staging/media/av7110/sp8870 0xc6d21284 sp8870_attach +EXPORT_SYMBOL drivers/staging/media/zoran/videocodec 0x1f09a115 videocodec_attach +EXPORT_SYMBOL drivers/staging/media/zoran/videocodec 0xb731390d videocodec_detach +EXPORT_SYMBOL drivers/staging/media/zoran/videocodec 0xcc2adcf3 videocodec_register +EXPORT_SYMBOL drivers/staging/media/zoran/videocodec 0xd32f1c6e videocodec_unregister +EXPORT_SYMBOL drivers/staging/nvec/nvec 0x07f75cbc nvec_write_sync +EXPORT_SYMBOL drivers/staging/nvec/nvec 0x533ebe6f nvec_write_async +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0251b430 rtllib_EnableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x03109d67 rtllib_start_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x03d6cc87 rtllib_rx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x03ee1ce1 rtllib_wx_set_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0bedbaf9 RemovePeerTS +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0dcc329a rtllib_wx_set_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0eef4fe0 rtllib_wx_set_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x11bb784d alloc_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x13ad1ae6 rtllib_wx_get_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x13ff9389 rtllib_wx_set_encode_ext +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1618f761 rtllib_wx_set_rawtx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1aa274e1 rtllib_wx_get_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x20d4fabd rtllib_stop_send_beacons EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x22166084 rt_global_debug_component -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x26adc9c9 rtllib_wx_get_wap -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x28b38391 rtllib_wx_get_encode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2cd0f055 rtllib_stop_scan_syncro -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x449b6d27 rtllib_sta_ps_send_null_frame -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x55b09328 HT_update_self_and_peer_setting -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x58fd551a rtllib_DisableIntelPromiscuousMode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x635eb7fd rtllib_EnableIntelPromiscuousMode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x63f9bff6 rtllib_wx_get_name -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7149cc0c rtllib_wx_set_encode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8733aa6b rtllib_softmac_start_protocol -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8d9b400f free_rtllib -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x99bb0e4a rtllib_wx_set_rawtx -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9a27f78d rtllib_wx_set_power -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9c89e231 RemovePeerTS -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa0803eec rtllib_MgntDisconnect -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa4e194fe rtllib_wx_set_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa9fc9de1 rtllib_wx_set_mlme -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xadfe5254 notify_wx_assoc_event -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbd70e8c9 rtllib_stop_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbdeb724e rtllib_wx_set_essid -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbf2ca518 rtllib_wx_get_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc3795ab8 dot11d_init -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xcc525ba3 rtllib_wx_set_freq -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xcd0f7595 alloc_rtllib -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xcd3411bc rtllib_start_send_beacons -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xce8a763b rtllib_wx_set_auth -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd3557df1 rtllib_wx_get_power -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd581267a rtllib_wx_set_rts -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd661c69f rtllib_wx_set_gen_ie -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd79f6a45 rtllib_wx_get_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x247ec3f6 dot11d_channel_map +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2a497d47 rtllib_wx_get_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2de03c95 rtllib_wx_get_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3435ecf9 rtllib_xmit +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x383f05fa rtllib_get_beacon +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3cbcf4eb rtllib_wx_set_gen_ie +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3da33a92 rtllib_wx_set_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x460d5c05 rtllib_wx_get_name +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5c23050b rtllib_reset_queue +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x64b92843 rtllib_sta_ps_send_null_frame +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x681f9270 rtllib_wx_get_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6aa91b48 rtllib_stop_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x785c9477 rtllib_wx_set_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7a102996 rtllib_wx_set_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x81cf0ee6 rtllib_wx_set_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x84d6a244 rtllib_wx_set_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8b4eac29 HT_update_self_and_peer_setting +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8e5fab6a rtllib_MgntDisconnect +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x918c08e1 rtllib_wx_get_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9793127a rtllib_wx_get_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x99e903e0 rtllib_ps_tx_ack +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa00b7bae rtllib_act_scanning +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xabee112b rtllib_wx_get_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb0b85830 rtllib_wx_set_mlme +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb315f088 rtllib_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb43dabe2 rtllib_wx_set_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb787ff6f rtllib_start_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbd509353 rtllib_wx_set_auth +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc7f533dd rtllib_softmac_stop_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc8cd2cae rtllib_DisableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd7c986ef rtllib_softmac_start_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdaca3915 free_rtllib EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdf78f620 rtllib_wlan_frequencies -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe20913eb dot11d_channel_map -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe8072c90 rtllib_ps_tx_ack -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe83432b0 rtllib_get_beacon -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xea39549c rtllib_wx_set_wap -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xea5ef8a8 rtllib_wx_set_mode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xed700bac rtllib_xmit -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xef83db36 rtllib_wx_set_rate -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf1488142 rtllib_rx -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf193c94e rtllib_wx_get_mode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf2160221 rtllib_wx_set_encode_ext -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf44eead0 rtllib_wx_get_rate -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf499f832 rtllib_wx_get_essid -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf49a14a9 rtllib_stop_send_beacons -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf8894c63 rtllib_act_scanning -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0325357d ieee80211_softmac_start_protocol_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x034cb190 ieee80211_start_send_beacons_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1402e2d3 ieee80211_wx_set_rawtx_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1e7d9dad to_legal_channel -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x23bb6ba8 dot11d_update_country_ie -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x24546558 ieee80211_wx_set_scan_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x285a7fa0 ieee80211_reset_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x293d012f ieee80211_start_scan_syncro_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2e6d0612 ieee80211_txb_free_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2fcedfc7 ieee80211_wake_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x32fadac4 ieee80211_wx_set_auth_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x35d6c24d ieee80211_get_beacon_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x368a5b08 ieee80211_stop_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x39064b18 ieee80211_wx_set_gen_ie_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3fb4fd65 ieee80211_wx_set_rate_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x402e0538 dot11d_get_max_tx_pwr_in_dbm -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x415871f9 ieee80211_wx_get_wap_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x41f9a2f6 ieee80211_wx_get_scan_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x473e9885 ieee80211_stop_send_beacons_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4c55ae09 rtl8192u_dot11d_init -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4e43e9af ieee80211_wx_set_rts_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x535d81f7 ieee80211_wx_get_rts_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5441afa2 ieee80211_wx_get_name_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5a193acb ieee80211_wx_get_rate_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5c4619a1 ieee80211_wx_set_wap_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6caf7618 ieee80211_softmac_xmit_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x71996569 ieee80211_wx_set_encode_ext_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x71edfc9a SendDisassociation_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7a88a153 ieee80211_softmac_scan_syncro_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8315c106 ieee80211_wx_set_mlme_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x87d85d77 ieee80211_stop_scan_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8816ab20 notify_wx_assoc_event_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x93127ea3 ieee80211_wx_get_mode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9ef3cf41 ieee80211_wx_get_power_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xab3b6232 dot11d_reset -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xaca94884 ieee80211_wx_set_freq_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xaff8ec69 ieee80211_wx_set_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe2bb5448 dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe36c740c rtllib_wx_get_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf1000990 rtllib_stop_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf1be2825 notify_wx_assoc_event +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0336199f dot11d_update_country_ie +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x04414de4 ieee80211_wx_set_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1c4aa7ac notify_wx_assoc_event_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1dd306f4 ieee80211_wx_get_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x22f36a56 dot11d_scan_complete +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x279068d2 dot11d_reset +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2ba82599 ieee80211_wake_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x32f48be4 SendDisassociation_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x340b8cd0 ieee80211_stop_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x35cb506a ieee80211_softmac_xmit_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3650c141 ieee80211_wx_get_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3bb21e54 ieee80211_wx_get_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3cd9b06c ieee80211_wx_set_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x41473d0f ieee80211_wx_get_name_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4294a8bb ieee80211_wx_get_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x43c35400 ieee80211_wx_set_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4744ac24 ieee80211_ps_tx_ack_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4822d280 ieee80211_rx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5b06e3ab ieee80211_wx_set_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5eca7f57 ieee80211_rx_mgt_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6450a04a ieee80211_wx_set_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x67f35e0e ieee80211_disassociate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6b6ae646 ieee80211_softmac_start_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6dd13d9b ieee80211_wx_get_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6ef49807 HTUpdateSelfAndPeerSetting +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6f6f0539 ieee80211_wx_get_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7085241e ieee80211_wx_set_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x74f4871a ieee80211_get_beacon_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7708f661 ieee80211_stop_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x791d94e0 ieee80211_wx_get_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7a0c5533 ieee80211_wx_get_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7b3667ea ieee80211_wx_set_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x80922c22 ieee80211_wx_set_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x80a4fe6a ieee80211_wx_get_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x815f3c0d ieee80211_wx_set_mlme_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x828f0d60 ieee80211_wx_set_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x83243efc to_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8a80b8db ieee80211_softmac_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8b8aaec3 ieee80211_start_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8eb076ff rtl8192u_dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9a1686ae ieee80211_wx_set_auth_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa2eac7a7 ieee80211_wx_set_rawtx_rsl EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb0b6cd25 ieee80211_is_54g_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb61f7593 ieee80211_rx_mgt_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb97ea48e ieee80211_softmac_stop_protocol_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbe02f8bf ieee80211_ps_tx_ack_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb2398716 is_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb9afbd06 ieee80211_softmac_stop_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbbcf0e91 ieee80211_stop_scan_rsl EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc370a43e ieee80211_wlan_frequencies_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc9048f2a ieee80211_wx_get_freq_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc95be210 ieee80211_wx_get_essid_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd7dc668d ieee80211_wx_get_encode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd9a31e97 ieee80211_rx_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xdc637c6a is_legal_channel -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe1ea6097 dot11d_scan_complete -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe258c554 ieee80211_wx_set_encode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe25d2bbb ieee80211_wpa_supplicant_ioctl_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd3342396 ieee80211_wx_set_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd745070d ieee80211_start_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd80b86e5 ieee80211_wx_get_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xdea0459e ieee80211_txb_free_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe1de9610 ieee80211_wpa_supplicant_ioctl_rsl EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe828423f ieee80211_is_shortslot_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf4b89b46 ieee80211_disassociate_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf6bfb90d ieee80211_wx_set_mode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf850c138 ieee80211_wx_set_essid_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf8a7e92f ieee80211_wx_get_encode_ext_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfa1f5dd8 HTUpdateSelfAndPeerSetting -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0115269f iscsit_find_cmd_from_itt_or_dump -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x058dbe36 iscsit_build_text_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x16d9ccef iscsit_logout_post_handler -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1949cd7f iscsit_immediate_queue -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x19890e10 iscsit_build_logout_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1e573d48 iscsit_check_dataout_payload -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x275bcf98 iscsit_aborted_task -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x28b004e3 iscsit_stop_dataout_timer -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x32c79d35 iscsit_handle_snack -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3a0bcf83 iscsit_handle_task_mgt_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3cf92dd8 iscsit_check_dataout_hdr -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4696b4e3 iscsit_add_cmd_to_immediate_queue -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x49a8074b iscsit_cause_connection_reinstatement -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x53e596e7 iscsit_process_scsi_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5cbbfc2f iscsit_add_reject -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6036df7d iscsit_allocate_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6ba96daf iscsit_setup_nop_out -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x710760cb iscsit_get_datain_values -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x80d0b599 iscsit_handle_logout_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x83b4eb70 iscsit_build_nopin_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x84e41f38 iscsit_sequence_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x94d12330 iscsit_find_cmd_from_itt -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x988f0ca1 iscsit_setup_scsi_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa6d9aa09 iscsit_tmr_post_handler -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xaada5e4d iscsit_setup_text_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb1b1056e iscsit_unregister_transport -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb84dc501 iscsit_increment_maxcmdsn -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbb786263 iscsit_build_datain_pdu -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbd15a5e7 iscsit_process_text_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbf15493c iscsit_register_transport -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbfaf8ad9 iscsit_queue_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc23b6b39 iscsit_build_reject -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc2b90b71 iscsit_process_nop_out -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc56fc85e iscsit_response_queue -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc6988692 iscsi_target_check_login_request -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xcf15a05d iscsit_release_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xcf9b5815 iscsit_build_rsp_pdu -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd2506593 iscsi_change_param_sprintf -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd402f5c3 iscsit_free_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd5adb9ba iscsit_build_task_mgt_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe527dab4 iscsit_reject_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe702f417 __iscsit_check_dataout_hdr -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf03b8033 iscsit_build_r2ts_for_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf177719d iscsit_set_unsolicited_dataout +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xef65389a ieee80211_reset_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf89ea67a dot11d_get_max_tx_pwr_in_dbm +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfa77b3f1 ieee80211_wx_set_gen_ie_rsl +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1130fac9 iscsit_handle_snack +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x14ce78a4 __iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x32e3456e iscsit_allocate_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x32fae0c7 iscsit_reject_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3704affd iscsit_logout_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x42b17ea8 iscsit_build_nopin_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x44842e43 iscsit_process_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x46c5021b iscsit_tmr_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x475b0c57 iscsit_build_task_mgt_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x48123207 iscsit_build_datain_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5b6ddf56 iscsit_free_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5b98aed4 iscsit_build_r2ts_for_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5c66f031 iscsit_stop_dataout_timer +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5e0ba746 iscsit_find_cmd_from_itt +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6d90ceee iscsit_check_dataout_payload +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x756b60d6 iscsit_register_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7a8af762 iscsi_change_param_sprintf +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x80cb960d iscsit_setup_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x86e63894 iscsit_find_cmd_from_itt_or_dump +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8b498682 iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x945817c4 iscsit_cause_connection_reinstatement +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x97c3cf09 iscsit_setup_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x97c8b8ea iscsit_set_unsolicited_dataout +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x99e9c827 iscsit_queue_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9b38e8b4 iscsit_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa1351abf iscsit_build_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa4c389e5 iscsit_response_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa8dc0108 iscsit_add_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xaa737807 iscsit_handle_logout_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xaf895d4e iscsit_process_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb3538f72 iscsit_unregister_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb5443d6d iscsit_build_rsp_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbae22c5b iscsit_build_logout_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc2d96f10 iscsit_build_text_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc2fa4b73 iscsit_sequence_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc8314635 iscsit_add_cmd_to_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd1de2771 iscsit_process_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd5dcc772 iscsit_setup_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd83d7d7d iscsi_target_check_login_request +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd92d5260 iscsit_get_datain_values +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe42db270 iscsit_release_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe6c24d2b iscsit_increment_maxcmdsn +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xee6d605c iscsit_aborted_task EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf34332f0 iscsi_find_param_from_key -EXPORT_SYMBOL drivers/target/target_core_mod 0x01bc62d1 target_submit_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x05045f1a transport_alloc_session_tags -EXPORT_SYMBOL drivers/target/target_core_mod 0x0547e359 transport_free_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x07b24acb transport_generic_handle_tmr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf8d1572d iscsit_handle_task_mgt_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x04b148b0 transport_kunmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x053dfd42 transport_generic_request_failure EXPORT_SYMBOL drivers/target/target_core_mod 0x0871ffd6 transport_set_vpd_ident -EXPORT_SYMBOL drivers/target/target_core_mod 0x095a5695 transport_init_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x0ad723e9 transport_send_check_condition_and_sense EXPORT_SYMBOL drivers/target/target_core_mod 0x0cc9e3ab target_alloc_sgl -EXPORT_SYMBOL drivers/target/target_core_mod 0x0eb5322b transport_kunmap_data_sg -EXPORT_SYMBOL drivers/target/target_core_mod 0x0f4e26fb target_put_sess_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x103d5e01 target_get_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x10057bd0 transport_alloc_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x1217ab22 transport_deregister_session_configfs EXPORT_SYMBOL drivers/target/target_core_mod 0x142072c0 transport_set_vpd_assoc -EXPORT_SYMBOL drivers/target/target_core_mod 0x1e4c164a core_tpg_set_initiator_node_tag -EXPORT_SYMBOL drivers/target/target_core_mod 0x1ea7e2ea target_lun_is_rdonly -EXPORT_SYMBOL drivers/target/target_core_mod 0x1ed1971c transport_kmap_data_sg -EXPORT_SYMBOL drivers/target/target_core_mod 0x240fd256 transport_send_check_condition_and_sense -EXPORT_SYMBOL drivers/target/target_core_mod 0x2c8b69c4 target_setup_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x2fdce88a sbc_dif_copy_prot -EXPORT_SYMBOL drivers/target/target_core_mod 0x326e1fb5 target_register_template -EXPORT_SYMBOL drivers/target/target_core_mod 0x33055693 transport_generic_new_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x3471c5be target_depend_item -EXPORT_SYMBOL drivers/target/target_core_mod 0x36150186 target_stop_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x389f3519 sbc_get_device_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x1ba373ec core_tpg_set_initiator_node_queue_depth +EXPORT_SYMBOL drivers/target/target_core_mod 0x1bc7d332 target_depend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0x1c2d7502 transport_lookup_cmd_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x256567c0 passthrough_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x2764e227 target_put_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x2aac2470 transport_generic_free_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x2bddaebd transport_copy_sense_to_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x2be3c36e transport_deregister_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x2d1f4a79 target_complete_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x303d2427 target_remove_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x395a96c1 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 0x3d440021 target_show_dynamic_sessions -EXPORT_SYMBOL drivers/target/target_core_mod 0x3e38c538 passthrough_pr_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0x408fd0ae transport_register_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x4d89a3ce target_cmd_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x4fb98579 __target_init_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x5117fd76 target_undepend_item -EXPORT_SYMBOL drivers/target/target_core_mod 0x53b23776 target_nacl_find_deve -EXPORT_SYMBOL drivers/target/target_core_mod 0x6046e1c0 target_complete_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x61230ddd target_show_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x637afb45 target_wait_for_sess_cmds -EXPORT_SYMBOL drivers/target/target_core_mod 0x6564fee8 spc_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x65bd3f18 transport_generic_free_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x6836af02 passthrough_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x68c44daf sbc_dif_verify -EXPORT_SYMBOL drivers/target/target_core_mod 0x69082956 target_to_linux_sector -EXPORT_SYMBOL drivers/target/target_core_mod 0x6a4f4613 sbc_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0x72f144c7 passthrough_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x3d5745eb target_execute_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x3f8b0d3e passthrough_pr_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x407b5186 target_submit_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x42a08d05 spc_emulate_report_luns +EXPORT_SYMBOL drivers/target/target_core_mod 0x4da578f2 transport_generic_new_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x54272a9c core_tpg_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x59cceae8 target_show_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x5efdd701 target_to_linux_sector +EXPORT_SYMBOL drivers/target/target_core_mod 0x617f210e transport_handle_cdb_direct +EXPORT_SYMBOL drivers/target/target_core_mod 0x6462db44 transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x65fee118 core_tpg_set_initiator_node_tag +EXPORT_SYMBOL drivers/target/target_core_mod 0x670070b3 __target_init_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x6cbdc00f target_setup_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x6ee4ac71 sbc_get_write_same_sectors +EXPORT_SYMBOL drivers/target/target_core_mod 0x6f6ea6fc transport_lookup_tmr_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x6f8dba9a __transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x6f90d6fc sbc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x755083cc spc_emulate_inquiry_std EXPORT_SYMBOL drivers/target/target_core_mod 0x77c50447 core_tmr_alloc_req -EXPORT_SYMBOL drivers/target/target_core_mod 0x7c9661a1 core_tpg_register -EXPORT_SYMBOL drivers/target/target_core_mod 0x7e6725b0 transport_deregister_session_configfs -EXPORT_SYMBOL drivers/target/target_core_mod 0x82aea7bd transport_alloc_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x861661f4 core_tpg_deregister -EXPORT_SYMBOL drivers/target/target_core_mod 0x8ce518c2 spc_emulate_inquiry_std -EXPORT_SYMBOL drivers/target/target_core_mod 0x8f9e7ee5 sbc_get_write_same_sectors -EXPORT_SYMBOL drivers/target/target_core_mod 0x911fbf0b transport_lookup_cmd_lun -EXPORT_SYMBOL drivers/target/target_core_mod 0x92df364d transport_backend_register -EXPORT_SYMBOL drivers/target/target_core_mod 0x9a9e5f15 target_put_nacl -EXPORT_SYMBOL drivers/target/target_core_mod 0x9af1402c core_tpg_get_initiator_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0x9b4ed18b transport_wait_for_tasks -EXPORT_SYMBOL drivers/target/target_core_mod 0x9f8e1b40 transport_copy_sense_to_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xa3a8f111 transport_lookup_tmr_lun -EXPORT_SYMBOL drivers/target/target_core_mod 0xa6ede08b target_remove_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x797041fb transport_init_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x81f60b84 transport_wait_for_tasks +EXPORT_SYMBOL drivers/target/target_core_mod 0x82413ddf target_send_busy +EXPORT_SYMBOL drivers/target/target_core_mod 0x824311c0 sbc_dif_verify +EXPORT_SYMBOL drivers/target/target_core_mod 0x89f52808 transport_free_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x8c9c1d04 target_cmd_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x8d234e49 target_wait_for_sess_cmds +EXPORT_SYMBOL drivers/target/target_core_mod 0x9225e928 target_unregister_template +EXPORT_SYMBOL drivers/target/target_core_mod 0x944c9da1 target_put_nacl +EXPORT_SYMBOL drivers/target/target_core_mod 0x95416c2f transport_generic_handle_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x9a3261f3 target_set_cmd_data_length +EXPORT_SYMBOL drivers/target/target_core_mod 0x9ce2acab target_complete_cmd_with_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0x9d3ce124 core_tpg_deregister +EXPORT_SYMBOL drivers/target/target_core_mod 0xa32eff41 target_get_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xa4507669 target_cmd_init_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xa6c07e50 target_lun_is_rdonly +EXPORT_SYMBOL drivers/target/target_core_mod 0xaae056de passthrough_attrib_attrs EXPORT_SYMBOL drivers/target/target_core_mod 0xaf9d837e target_free_sgl -EXPORT_SYMBOL drivers/target/target_core_mod 0xb212954d target_cmd_init_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0xb4725948 spc_emulate_report_luns -EXPORT_SYMBOL drivers/target/target_core_mod 0xb5f1dabc __transport_register_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xc074b182 target_complete_cmd_with_sense -EXPORT_SYMBOL drivers/target/target_core_mod 0xc3c4909f transport_generic_request_failure -EXPORT_SYMBOL drivers/target/target_core_mod 0xc4341af8 spc_emulate_evpd_83 -EXPORT_SYMBOL drivers/target/target_core_mod 0xcd06a212 target_set_cmd_data_length -EXPORT_SYMBOL drivers/target/target_core_mod 0xcd9aac2f target_configure_unmap_from_queue -EXPORT_SYMBOL drivers/target/target_core_mod 0xd06d4b52 core_tpg_check_initiator_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0xd4421213 target_unregister_template -EXPORT_SYMBOL drivers/target/target_core_mod 0xd5cb213b core_allocate_nexus_loss_ua -EXPORT_SYMBOL drivers/target/target_core_mod 0xd5dd4610 core_alua_check_nonop_delay -EXPORT_SYMBOL drivers/target/target_core_mod 0xd6bcc812 target_backend_unregister -EXPORT_SYMBOL drivers/target/target_core_mod 0xdb15b894 target_tpg_has_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0xe26eb396 target_execute_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xede9a91e target_submit_tmr -EXPORT_SYMBOL drivers/target/target_core_mod 0xefb4fe9f transport_handle_cdb_direct -EXPORT_SYMBOL drivers/target/target_core_mod 0xf26932f2 target_complete_cmd_with_length +EXPORT_SYMBOL drivers/target/target_core_mod 0xb4dbc8ac target_complete_cmd_with_length +EXPORT_SYMBOL drivers/target/target_core_mod 0xb4efcb92 core_tpg_check_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0xb61723f4 target_show_dynamic_sessions +EXPORT_SYMBOL drivers/target/target_core_mod 0xbd2d642e target_backend_unregister +EXPORT_SYMBOL drivers/target/target_core_mod 0xbfe26f56 target_register_template +EXPORT_SYMBOL drivers/target/target_core_mod 0xc0d6a512 target_stop_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xc44354be transport_kmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0xc531b389 sbc_get_device_type +EXPORT_SYMBOL drivers/target/target_core_mod 0xc7274651 transport_backend_register +EXPORT_SYMBOL drivers/target/target_core_mod 0xd0eb295a spc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xd1546c2a core_tpg_get_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0xd493ca9b target_configure_unmap_from_queue +EXPORT_SYMBOL drivers/target/target_core_mod 0xd8eeca9f spc_emulate_evpd_83 +EXPORT_SYMBOL drivers/target/target_core_mod 0xda76b805 target_undepend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0xe41d52a9 transport_alloc_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0xe4e20073 sbc_dif_copy_prot +EXPORT_SYMBOL drivers/target/target_core_mod 0xee3811b5 sbc_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0xf019cfb9 target_tpg_has_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0xf26bc607 target_submit_cmd EXPORT_SYMBOL drivers/target/target_core_mod 0xf3c2dfe0 transport_set_vpd_proto_id -EXPORT_SYMBOL drivers/target/target_core_mod 0xf3f92707 core_tpg_set_initiator_node_queue_depth -EXPORT_SYMBOL drivers/target/target_core_mod 0xf6a4c74e transport_deregister_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xf8674ce8 sbc_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0xfb06487d target_send_busy -EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0x36ed7b90 usb_cdc_wdm_register -EXPORT_SYMBOL drivers/usb/gadget/libcomposite 0xa4cedd00 usb_os_desc_prepare_interf_dir -EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0x8b871657 sl811h_driver -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x05883c72 usb_wwan_write_room -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x137cf2fa usb_wwan_resume -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x1d5d1389 usb_wwan_tiocmset -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x1f721792 usb_wwan_close -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x2ec9ba1a usb_wwan_chars_in_buffer -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x67fcc97a usb_wwan_port_remove -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x99548fe1 usb_wwan_write -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x9fe8259c usb_wwan_tiocmget -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xa5f3f275 usb_wwan_dtr_rts -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xfc805dcc usb_wwan_open -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xfe725813 usb_wwan_suspend -EXPORT_SYMBOL drivers/usb/serial/usbserial 0x0359bab1 usb_serial_resume -EXPORT_SYMBOL drivers/usb/serial/usbserial 0x079b2025 usb_serial_suspend -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x33e4c620 mdev_register_driver -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x3894b2a5 mdev_unregister_device -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x5617a505 mdev_register_device -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x56686df5 mdev_unregister_driver -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x6180fad7 mdev_parent_dev -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x765a0843 mdev_get_type_group_id -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x97a1bc75 mtype_get_parent_dev -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xea50c732 mtype_get_type_group_id +EXPORT_SYMBOL drivers/target/target_core_mod 0xfbc7c1c1 target_nacl_find_deve +EXPORT_SYMBOL drivers/target/target_core_mod 0xfbf2b5d2 core_alua_check_nonop_delay +EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0x9830a745 usb_cdc_wdm_register +EXPORT_SYMBOL drivers/usb/gadget/libcomposite 0xe4397028 usb_os_desc_prepare_interf_dir +EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0x7b7d9b68 sl811h_driver +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x19bc8901 usb_wwan_chars_in_buffer +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x1f9e9163 usb_wwan_tiocmset +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x3b5999e1 usb_wwan_write_room +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x4c95df54 usb_wwan_tiocmget +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x50bcbddd usb_wwan_resume +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x7c52082a usb_wwan_port_remove +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x94ab8c39 usb_wwan_open +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xb439db75 usb_wwan_close +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xc3b5b0d6 usb_wwan_dtr_rts +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xf073d76d usb_wwan_suspend +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xfdd27364 usb_wwan_write +EXPORT_SYMBOL drivers/usb/serial/usbserial 0x0514337e usb_serial_suspend +EXPORT_SYMBOL drivers/usb/serial/usbserial 0x6b7d0846 usb_serial_resume +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x066bf81f mtype_get_parent_dev +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x25d28806 mtype_get_type_group_id +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x2efe2fcd mdev_unregister_device +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x484473b7 mdev_unregister_driver +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x4ad1a3c1 mdev_get_type_group_id +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x4f5b7d4b mdev_parent_dev +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x5d659735 mdev_register_device +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xf68d62e1 mdev_register_driver +EXPORT_SYMBOL drivers/vfio/vfio 0x029df3b0 vfio_unpin_pages EXPORT_SYMBOL drivers/vfio/vfio 0x05b8cfda vfio_set_irqs_validate_and_prepare EXPORT_SYMBOL drivers/vfio/vfio 0x0beb34b2 vfio_dma_rw EXPORT_SYMBOL drivers/vfio/vfio 0x0f655355 vfio_info_add_capability +EXPORT_SYMBOL drivers/vfio/vfio 0x3bc7b559 vfio_pin_pages EXPORT_SYMBOL drivers/vfio/vfio 0x48a81d7e vfio_group_pin_pages EXPORT_SYMBOL drivers/vfio/vfio 0x51f16cdb vfio_info_cap_shift EXPORT_SYMBOL drivers/vfio/vfio 0x7834defd vfio_group_unpin_pages -EXPORT_SYMBOL drivers/vfio/vfio 0xd011bbf5 vfio_register_notifier -EXPORT_SYMBOL drivers/vfio/vfio 0xde9c0edd vfio_unpin_pages -EXPORT_SYMBOL drivers/vfio/vfio 0xe1ee2f33 vfio_unregister_notifier -EXPORT_SYMBOL drivers/vfio/vfio 0xefbea51b vfio_pin_pages -EXPORT_SYMBOL drivers/vhost/vhost 0x4401caea vhost_chr_write_iter -EXPORT_SYMBOL drivers/vhost/vhost 0x9181b793 vhost_chr_poll +EXPORT_SYMBOL drivers/vfio/vfio 0xc72a44f5 vfio_register_notifier +EXPORT_SYMBOL drivers/vfio/vfio 0xfc49e67f vfio_unregister_notifier +EXPORT_SYMBOL drivers/vhost/vhost 0x6a676952 vhost_chr_poll +EXPORT_SYMBOL drivers/vhost/vhost 0x96bef6ce vhost_chr_write_iter EXPORT_SYMBOL drivers/vhost/vringh 0x102c8234 vringh_iov_push_iotlb EXPORT_SYMBOL drivers/vhost/vringh 0x140ceb39 vringh_getdesc_kern EXPORT_SYMBOL drivers/vhost/vringh 0x221d4624 vringh_abandon_kern @@ -4557,200 +4560,200 @@ EXPORT_SYMBOL drivers/vhost/vringh 0xcef0e131 vringh_complete_user EXPORT_SYMBOL drivers/vhost/vringh 0xd8ac74e0 vringh_init_iotlb EXPORT_SYMBOL drivers/vhost/vringh 0xff44dbd9 vringh_need_notify_user -EXPORT_SYMBOL drivers/video/backlight/lcd 0x927b8a3a devm_lcd_device_unregister -EXPORT_SYMBOL drivers/video/backlight/lcd 0xb65db89e lcd_device_unregister -EXPORT_SYMBOL drivers/video/backlight/lcd 0xc8f8f22a devm_lcd_device_register -EXPORT_SYMBOL drivers/video/backlight/lcd 0xebc67705 lcd_device_register -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x0e8f2ae5 svga_tilecopy +EXPORT_SYMBOL drivers/video/backlight/lcd 0x06000062 lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0xb694458d lcd_device_unregister +EXPORT_SYMBOL drivers/video/backlight/lcd 0xcbaf3e85 devm_lcd_device_unregister +EXPORT_SYMBOL drivers/video/backlight/lcd 0xf55ad921 devm_lcd_device_register EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x17f3f471 svga_set_default_seq_regs EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x1be6dc30 svga_set_textmode_vga_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x380fd57a svga_settile EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x4ab38ef2 svga_set_default_crt_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x4b080d82 svga_tilecursor -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x4ba33a42 svga_tilefill +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x5c81a011 svga_get_caps +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x5d9411ca svga_tilecursor +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x7bd20c87 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 0x9c3b45a1 svga_get_tilemax EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xb0ab2b2e svga_check_timings +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd0ceff0c svga_tileblit EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd22ca511 svga_set_default_atc_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd2a4b155 svga_tileblit EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd6ec2c44 svga_compute_pll EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xdcc5a013 svga_wseq_multi -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xe13c8bac svga_get_caps +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xdeed293d svga_tilecopy EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xe28d2a49 svga_set_default_gfx_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xf8640205 svga_get_tilemax -EXPORT_SYMBOL drivers/video/fbdev/core/syscopyarea 0x990c6af6 sys_copyarea -EXPORT_SYMBOL drivers/video/fbdev/core/sysfillrect 0xac190144 sys_fillrect -EXPORT_SYMBOL drivers/video/fbdev/core/sysimgblt 0x68e08a23 sys_imageblit +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xf27ec33e svga_settile +EXPORT_SYMBOL drivers/video/fbdev/core/syscopyarea 0x03777664 sys_copyarea +EXPORT_SYMBOL drivers/video/fbdev/core/sysfillrect 0xe7f5d251 sys_fillrect +EXPORT_SYMBOL drivers/video/fbdev/core/sysimgblt 0xb0edecad sys_imageblit EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x0cc3ede5 cyber2000fb_detach +EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x3153cbc1 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 0xd18256ed cyber2000fb_attach EXPORT_SYMBOL drivers/video/fbdev/macmodes 0x233917d1 mac_vmode_to_var -EXPORT_SYMBOL drivers/video/fbdev/macmodes 0x37788435 mac_find_mode +EXPORT_SYMBOL drivers/video/fbdev/macmodes 0x9121b995 mac_find_mode EXPORT_SYMBOL drivers/video/fbdev/macmodes 0xe2304303 mac_map_monitor_sense -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x3b081fd4 g450_mnp2f -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x5195ed6c matroxfb_g450_setclk -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xd2ae4e03 matroxfb_g450_setpll_cond -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x3264a0ef DAC1064_global_restore -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x7be49eb6 DAC1064_global_init -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x989db353 matrox_mystique -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xc08bc3b4 matrox_G100 -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_Ti3026 0x90225a7d matrox_millennium -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_accel 0x50029127 matrox_cfbX_init -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x40152d05 matroxfb_wait_for_sync -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x40978f26 matroxfb_register_driver -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x99719692 matroxfb_unregister_driver -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x9ade204a matroxfb_enable_irq -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x47b2e209 matroxfb_g450_connect -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0xb7f0bc36 matroxfb_g450_shutdown -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x0b619b5f matroxfb_DAC_in +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x1abde938 g450_mnp2f +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x373e2ff4 matroxfb_g450_setclk +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xaaa8a21a matroxfb_g450_setpll_cond +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x2c3e383d DAC1064_global_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x6ebf95fd matrox_G100 +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x9cf48bfe matrox_mystique +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xfe4ed3ab DAC1064_global_restore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_Ti3026 0xa389242e matrox_millennium +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_accel 0x63f095ed matrox_cfbX_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x71b58dd1 matroxfb_register_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x79d49093 matroxfb_unregister_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xcdfc6cbe matroxfb_enable_irq +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xefdebb20 matroxfb_wait_for_sync +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x28887495 matroxfb_g450_connect +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x64026a2a matroxfb_g450_shutdown EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x25cf8049 matroxfb_PLL_calcclock -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x9ea42d27 matroxfb_vgaHWrestore -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xb41d87cb matroxfb_DAC_out -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xb9a516a4 matroxfb_read_pins +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x37db2fbf matroxfb_DAC_out +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x5bc0ea2c matroxfb_vgaHWinit +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x6eb4bc23 matroxfb_vgaHWrestore EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xcdc90c64 matroxfb_var2my -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xd927e00e matroxfb_vgaHWinit +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xd453066f matroxfb_DAC_in +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xe91b9787 matroxfb_read_pins EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x01ea132e dispc_runtime_put EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x03005606 omapdss_get_version -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x08e64ffa omapdss_default_get_recommended_bpp -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x15049ed5 omapdss_unregister_output -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x16bd39de dss_mgr_enable +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x0f220b03 dss_mgr_start_update +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x1c391231 omapdss_find_mgr_from_display +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x20a96eef omap_dss_get_next_device EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x2423d741 dispc_ovl_setup -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x259ed06f omap_dss_get_device -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x269d4d98 omapdss_register_output -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x2ca1e215 dss_mgr_start_update -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x30678abd dss_mgr_register_framedone_handler +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x29a31bd0 dss_install_mgr_ops EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x3082a0b3 dss_feat_get_supported_color_modes EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x3d36d54d dispc_mgr_set_lcd_config EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x42912b0c dispc_clear_irqstatus EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x45d74ef6 dispc_mgr_enable -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x463ded05 omap_dss_find_device EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x4bd67a8d dispc_write_irqenable EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x4c33081d omapdss_compat_uninit -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x4dd755d8 omapdss_find_mgr_from_display -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x53328ca4 dss_mgr_set_lcd_config EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x54f6830a omapdss_get_default_display_name -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x55ad8a77 omapdss_find_output_from_display +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x559d59a1 dss_mgr_disconnect EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x5689afe7 dispc_ovl_enable +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x56d4f963 dss_mgr_register_framedone_handler EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x636b3461 omap_dss_get_num_overlays EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x66cdd3c9 dispc_mgr_setup -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x69f486ae omapdss_output_set_device EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x6b1a3090 omap_dss_ntsc_timings -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x6d44f4b2 dss_mgr_unregister_framedone_handler +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x6c08fe3c omapdss_output_set_device +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x6d4ac547 omap_dss_get_output +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x6ed32237 omapdss_register_display EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x70e39dae dss_uninstall_mgr_ops -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x759e5917 omapdss_output_unset_device -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x780185b5 dss_mgr_disconnect +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x7eb028e8 omap_dss_put_device EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x827143a1 omap_dispc_unregister_isr EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x87fdb051 dispc_mgr_go +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x88388627 dss_mgr_connect +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x8d7454f0 omapdss_unregister_output EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x93963a85 dss_feat_get_num_mgrs -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x94c9c288 omapdss_default_get_timings EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x967cb4e8 dispc_ovl_set_channel_out -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x97510099 omap_dss_put_device -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x985374b2 dss_install_mgr_ops -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x9ffd0f35 omap_dss_get_output +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x9b6777b5 omap_dss_get_device +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x9fb460cc dss_mgr_unregister_framedone_handler EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xa13d27f5 dispc_read_irqenable EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xa4f6a175 dispc_mgr_get_sync_lost_irq -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xa7f54787 omap_dss_get_overlay_manager -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xaf2313da dss_mgr_disable +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xa8cd41c3 omapdss_find_output_from_display +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xa954492f omapdss_default_get_timings +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xaa845f86 omap_dss_get_overlay +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xaede2a8f omapdss_default_get_resolution +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xb0843f55 omap_dss_find_output_by_port_node +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xb2cd3b5b dss_mgr_enable +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xb335b286 dss_mgr_set_timings EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xb3ed5aa9 dispc_mgr_is_enabled +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xb53209ee omapdss_default_get_recommended_bpp EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xb7f94a15 dispc_mgr_set_timings EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xba8ddcea dispc_mgr_get_vsync_irq EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xbafeee36 dispc_runtime_get -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xbbaf0f80 omapdss_default_get_resolution EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xbe0d4752 omap_video_timings_to_videomode +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xbed38aea omapdss_unregister_display EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xc45105c3 dispc_mgr_go_busy -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xc4a25ac0 omapdss_unregister_display EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xcc197296 omap_dispc_register_isr -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xccfcfe3e omapdss_register_display EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xce466b8f dispc_ovl_check +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xcfb87cd3 omap_dss_find_device EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xd1067ba7 dispc_ovl_enabled EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xd70adbc1 videomode_to_omap_video_timings EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xd8ed186b omap_dss_pal_timings EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xdb93b838 dispc_free_irq -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xe81cf46c omap_dss_find_output_by_port_node -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xecd1c6b9 dss_mgr_set_timings +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xdc403b1b omap_dss_get_overlay_manager +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xe068094d omapdss_output_unset_device +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xe43efdee dss_mgr_disable +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xedca7e15 omapdss_register_output EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xee2bc2d0 omapdss_is_initialized EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xef3b2795 dispc_mgr_get_framedone_irq -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xf303e3c2 omap_dss_get_next_device EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xf4a7fc6d omapdss_compat_init EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xf4f63234 dispc_read_irqstatus -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xf54a20b9 omap_dss_get_overlay -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xf94149c5 dss_mgr_connect +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xf693ee39 omap_dss_find_output EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xf9427374 dispc_request_irq EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xfe40bf95 dss_feat_get_num_ovls -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xff5c59c2 omap_dss_find_output +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xfe9ac134 dss_mgr_set_lcd_config EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xffd2cf99 omap_dss_get_num_overlay_managers 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 0x0894b9fd virtio_dma_buf_attach -EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x440d0c5f virtio_dma_buf_get_uuid -EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0xb17c6de7 is_virtio_dma_buf -EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0xb2ccc5b0 virtio_dma_buf_export -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x63b34477 w1_ds2780_eeprom_cmd -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0xe5a6be7b w1_ds2780_io -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x15d7df16 w1_ds2781_io -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x8c457c52 w1_ds2781_eeprom_cmd -EXPORT_SYMBOL drivers/w1/wire 0x296f37b4 w1_remove_master_device -EXPORT_SYMBOL drivers/w1/wire 0x7795a434 w1_unregister_family -EXPORT_SYMBOL drivers/w1/wire 0x808af304 w1_register_family -EXPORT_SYMBOL drivers/w1/wire 0x82af26c9 w1_add_master_device -EXPORT_SYMBOL fs/fscache/fscache 0x009bf957 __fscache_disable_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x0203a867 fscache_enqueue_operation +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x3c4b77b3 is_virtio_dma_buf +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x6c9cb4f0 virtio_dma_buf_attach +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x85432464 virtio_dma_buf_export +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0xc244ed97 virtio_dma_buf_get_uuid +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x9cfdeb62 w1_ds2780_eeprom_cmd +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0xc4359818 w1_ds2780_io +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0xc3634051 w1_ds2781_eeprom_cmd +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0xce97828f w1_ds2781_io +EXPORT_SYMBOL drivers/w1/wire 0x446822aa w1_unregister_family +EXPORT_SYMBOL drivers/w1/wire 0x8d19a853 w1_add_master_device +EXPORT_SYMBOL drivers/w1/wire 0xd700ba45 w1_remove_master_device +EXPORT_SYMBOL drivers/w1/wire 0xe389963e w1_register_family +EXPORT_SYMBOL fs/fscache/fscache 0x002131c5 __fscache_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0x02186e67 fscache_mark_pages_cached EXPORT_SYMBOL fs/fscache/fscache 0x059a00d2 fscache_cache_cleared_wq -EXPORT_SYMBOL fs/fscache/fscache 0x25449a22 fscache_object_lookup_negative -EXPORT_SYMBOL fs/fscache/fscache 0x2a6aef63 __fscache_begin_read_operation -EXPORT_SYMBOL fs/fscache/fscache 0x2bee87fc __fscache_readpages_cancel -EXPORT_SYMBOL fs/fscache/fscache 0x2c87a7e8 __fscache_read_or_alloc_pages -EXPORT_SYMBOL fs/fscache/fscache 0x3aef15c9 fscache_mark_page_cached -EXPORT_SYMBOL fs/fscache/fscache 0x40597eaf __fscache_relinquish_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x41cd0de8 fscache_op_complete -EXPORT_SYMBOL fs/fscache/fscache 0x45859152 __fscache_register_netfs -EXPORT_SYMBOL fs/fscache/fscache 0x458cf7b7 fscache_withdraw_cache -EXPORT_SYMBOL fs/fscache/fscache 0x4f16e119 __fscache_maybe_release_page -EXPORT_SYMBOL fs/fscache/fscache 0x5092480b __fscache_acquire_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x53fbb1b2 __fscache_update_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x5f271890 __fscache_invalidate -EXPORT_SYMBOL fs/fscache/fscache 0x62bb6ddb __fscache_alloc_page -EXPORT_SYMBOL fs/fscache/fscache 0x664fcdbe __fscache_wait_on_invalidate -EXPORT_SYMBOL fs/fscache/fscache 0x7187471b fscache_mark_pages_cached +EXPORT_SYMBOL fs/fscache/fscache 0x07e4abe8 fscache_object_init +EXPORT_SYMBOL fs/fscache/fscache 0x0d9c1689 fscache_io_error +EXPORT_SYMBOL fs/fscache/fscache 0x0ec5a468 fscache_object_mark_killed +EXPORT_SYMBOL fs/fscache/fscache 0x14094168 __fscache_acquire_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x15598de7 fscache_mark_page_cached +EXPORT_SYMBOL fs/fscache/fscache 0x1f660377 __fscache_unregister_netfs +EXPORT_SYMBOL fs/fscache/fscache 0x21670099 __fscache_maybe_release_page +EXPORT_SYMBOL fs/fscache/fscache 0x21b5d582 fscache_op_complete +EXPORT_SYMBOL fs/fscache/fscache 0x28595bbe __fscache_write_page +EXPORT_SYMBOL fs/fscache/fscache 0x301c9539 __fscache_uncache_all_inode_pages +EXPORT_SYMBOL fs/fscache/fscache 0x33bc01cc fscache_withdraw_cache +EXPORT_SYMBOL fs/fscache/fscache 0x39a5e795 __fscache_attr_changed +EXPORT_SYMBOL fs/fscache/fscache 0x438fe742 __fscache_wait_on_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0x4c4d099c __fscache_read_or_alloc_pages +EXPORT_SYMBOL fs/fscache/fscache 0x571c155e __fscache_disable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x6260fc4c __fscache_wait_on_page_write +EXPORT_SYMBOL fs/fscache/fscache 0x642c7856 fscache_fsdef_index +EXPORT_SYMBOL fs/fscache/fscache 0x6970ef17 __fscache_begin_read_operation EXPORT_SYMBOL fs/fscache/fscache 0x74530ecd fscache_op_debug_id -EXPORT_SYMBOL fs/fscache/fscache 0x7eb255cb __fscache_wait_on_page_write -EXPORT_SYMBOL fs/fscache/fscache 0x7f11835e fscache_object_retrying_stale -EXPORT_SYMBOL fs/fscache/fscache 0x8224df05 __fscache_check_page_write -EXPORT_SYMBOL fs/fscache/fscache 0x830c725f fscache_io_error -EXPORT_SYMBOL fs/fscache/fscache 0x8d5319cf fscache_check_aux -EXPORT_SYMBOL fs/fscache/fscache 0x90f920d1 fscache_object_destroy -EXPORT_SYMBOL fs/fscache/fscache 0x9a8ce1f9 __fscache_write_page -EXPORT_SYMBOL fs/fscache/fscache 0xa176c99a __fscache_uncache_page -EXPORT_SYMBOL fs/fscache/fscache 0xa5b888e6 fscache_object_init -EXPORT_SYMBOL fs/fscache/fscache 0xa64c9bde fscache_add_cache -EXPORT_SYMBOL fs/fscache/fscache 0xab6613dd __fscache_read_or_alloc_page -EXPORT_SYMBOL fs/fscache/fscache 0xb5f7860d fscache_obtained_object -EXPORT_SYMBOL fs/fscache/fscache 0xb984a7a9 __fscache_enable_cookie -EXPORT_SYMBOL fs/fscache/fscache 0xb9afec60 fscache_operation_init -EXPORT_SYMBOL fs/fscache/fscache 0xbf704b4d __fscache_uncache_all_inode_pages -EXPORT_SYMBOL fs/fscache/fscache 0xcc73c297 __fscache_check_consistency -EXPORT_SYMBOL fs/fscache/fscache 0xdde863dd __fscache_unregister_netfs -EXPORT_SYMBOL fs/fscache/fscache 0xe00efcd4 fscache_init_cache -EXPORT_SYMBOL fs/fscache/fscache 0xe097e3d4 fscache_object_mark_killed -EXPORT_SYMBOL fs/fscache/fscache 0xe4fd8171 fscache_put_operation -EXPORT_SYMBOL fs/fscache/fscache 0xee57b73e __fscache_attr_changed -EXPORT_SYMBOL fs/fscache/fscache 0xef3c2b6f fscache_fsdef_index -EXPORT_SYMBOL fs/netfs/netfs 0x34006bdb netfs_stats_show -EXPORT_SYMBOL fs/netfs/netfs 0x899500e1 netfs_readpage -EXPORT_SYMBOL fs/netfs/netfs 0x8d126d0d netfs_readahead -EXPORT_SYMBOL fs/netfs/netfs 0xc810a59b netfs_subreq_terminated -EXPORT_SYMBOL fs/netfs/netfs 0xe6fee984 netfs_write_begin +EXPORT_SYMBOL fs/fscache/fscache 0x813a66da fscache_object_retrying_stale +EXPORT_SYMBOL fs/fscache/fscache 0x87b8f5b1 __fscache_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0x88a3bebe fscache_add_cache +EXPORT_SYMBOL fs/fscache/fscache 0x8bc7e817 __fscache_update_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xa17a4fdc __fscache_read_or_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0xaec6a097 __fscache_uncache_page +EXPORT_SYMBOL fs/fscache/fscache 0xb463019b fscache_obtained_object +EXPORT_SYMBOL fs/fscache/fscache 0xb573d12d __fscache_check_consistency +EXPORT_SYMBOL fs/fscache/fscache 0xb73a6f09 fscache_operation_init +EXPORT_SYMBOL fs/fscache/fscache 0xc2c5e97f fscache_check_aux +EXPORT_SYMBOL fs/fscache/fscache 0xc6c563b8 fscache_enqueue_operation +EXPORT_SYMBOL fs/fscache/fscache 0xc753b8cb fscache_init_cache +EXPORT_SYMBOL fs/fscache/fscache 0xda9b9db7 __fscache_enable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xe105a694 fscache_put_operation +EXPORT_SYMBOL fs/fscache/fscache 0xe1af1ead __fscache_readpages_cancel +EXPORT_SYMBOL fs/fscache/fscache 0xe5a32ef8 fscache_object_destroy +EXPORT_SYMBOL fs/fscache/fscache 0xeaab2975 __fscache_check_page_write +EXPORT_SYMBOL fs/fscache/fscache 0xf230ea72 __fscache_relinquish_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xf3d0ed10 __fscache_register_netfs +EXPORT_SYMBOL fs/fscache/fscache 0xf9524ae5 fscache_object_lookup_negative +EXPORT_SYMBOL fs/netfs/netfs 0x5e201178 netfs_subreq_terminated +EXPORT_SYMBOL fs/netfs/netfs 0x7416ea0d netfs_readpage +EXPORT_SYMBOL fs/netfs/netfs 0x7e7c35b4 netfs_readahead +EXPORT_SYMBOL fs/netfs/netfs 0xaf503230 netfs_stats_show +EXPORT_SYMBOL fs/netfs/netfs 0xba1afab3 netfs_write_begin EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active -EXPORT_SYMBOL fs/quota/quota_tree 0x095945a6 qtree_write_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0x92e553a2 qtree_release_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0x9b00fd29 qtree_delete_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0x9b0f7efe qtree_get_next_id -EXPORT_SYMBOL fs/quota/quota_tree 0xa53375d1 qtree_entry_unused -EXPORT_SYMBOL fs/quota/quota_tree 0xcb336529 qtree_read_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x1b688219 qtree_delete_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x840c11f5 qtree_entry_unused +EXPORT_SYMBOL fs/quota/quota_tree 0xaf1bfbd7 qtree_get_next_id +EXPORT_SYMBOL fs/quota/quota_tree 0xe06b5b66 qtree_write_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xf5c89b8d qtree_release_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xf90494dc qtree_read_dquot EXPORT_SYMBOL lib/crc-itu-t 0xa2048e95 crc_itu_t EXPORT_SYMBOL lib/crc-itu-t 0xd819a524 crc_itu_t_table EXPORT_SYMBOL lib/crc7 0x65aaf037 crc7_be_syndrome_table @@ -4777,18 +4780,18 @@ EXPORT_SYMBOL lib/libcrc32c 0x89a0cd52 crc32c_impl EXPORT_SYMBOL lib/libcrc32c 0xb15b4109 crc32c EXPORT_SYMBOL lib/lru_cache 0x03f599c7 lc_get_cumulative +EXPORT_SYMBOL lib/lru_cache 0x2be254e3 lc_seq_printf_stats +EXPORT_SYMBOL lib/lru_cache 0x46000b1c lc_seq_dump_details EXPORT_SYMBOL lib/lru_cache 0x4feade4b lc_create EXPORT_SYMBOL lib/lru_cache 0x56fc3ea0 lc_put EXPORT_SYMBOL lib/lru_cache 0x619ed575 lc_try_get EXPORT_SYMBOL lib/lru_cache 0x84e0214b lc_committed EXPORT_SYMBOL lib/lru_cache 0xbbe7c23c lc_element_by_index -EXPORT_SYMBOL lib/lru_cache 0xbf83a5e1 lc_seq_printf_stats EXPORT_SYMBOL lib/lru_cache 0xc48fa976 lc_set EXPORT_SYMBOL lib/lru_cache 0xc6e4cd46 lc_reset EXPORT_SYMBOL lib/lru_cache 0xcb990a55 lc_try_lock EXPORT_SYMBOL lib/lru_cache 0xcea6747e lc_destroy EXPORT_SYMBOL lib/lru_cache 0xd212c9f0 lc_get -EXPORT_SYMBOL lib/lru_cache 0xe6095749 lc_seq_dump_details EXPORT_SYMBOL lib/lru_cache 0xeb13128b lc_del EXPORT_SYMBOL lib/lru_cache 0xf460a486 lc_is_used EXPORT_SYMBOL lib/lru_cache 0xf5ea5f5c lc_index_of @@ -4860,812 +4863,813 @@ EXPORT_SYMBOL lib/zstd/zstd_compress 0xdac739f6 ZSTD_initCCtx EXPORT_SYMBOL lib/zstd/zstd_compress 0xf39e441c ZSTD_CStreamWorkspaceBound EXPORT_SYMBOL lib/zstd/zstd_compress 0xf4cbffc3 ZSTD_flushStream -EXPORT_SYMBOL net/6lowpan/6lowpan 0x1a951ca0 lowpan_register_netdev -EXPORT_SYMBOL net/6lowpan/6lowpan 0x3e2e8cfb lowpan_nhc_add -EXPORT_SYMBOL net/6lowpan/6lowpan 0x7f37918b lowpan_register_netdevice -EXPORT_SYMBOL net/6lowpan/6lowpan 0x95ed8556 lowpan_nhc_del -EXPORT_SYMBOL net/6lowpan/6lowpan 0xc9df596f lowpan_unregister_netdevice -EXPORT_SYMBOL net/6lowpan/6lowpan 0xec2ff1ee lowpan_unregister_netdev -EXPORT_SYMBOL net/802/p8022 0x284c381e register_8022_client -EXPORT_SYMBOL net/802/p8022 0xdb258385 unregister_8022_client -EXPORT_SYMBOL net/802/psnap 0x4c241288 unregister_snap_client -EXPORT_SYMBOL net/802/psnap 0xb9e83b17 register_snap_client -EXPORT_SYMBOL net/9p/9pnet 0x01943199 p9_client_rename -EXPORT_SYMBOL net/9p/9pnet 0x026e04d4 p9_client_mkdir_dotl -EXPORT_SYMBOL net/9p/9pnet 0x081ed036 p9_client_disconnect -EXPORT_SYMBOL net/9p/9pnet 0x1105fa52 p9_release_pages -EXPORT_SYMBOL net/9p/9pnet 0x12651e6b p9_client_destroy -EXPORT_SYMBOL net/9p/9pnet 0x229c9005 p9_client_read_once +EXPORT_SYMBOL net/6lowpan/6lowpan 0x4df3fcbd lowpan_register_netdev +EXPORT_SYMBOL net/6lowpan/6lowpan 0x9f5e77d1 lowpan_unregister_netdev +EXPORT_SYMBOL net/6lowpan/6lowpan 0xb43d0e05 lowpan_register_netdevice +EXPORT_SYMBOL net/6lowpan/6lowpan 0xca56a589 lowpan_unregister_netdevice +EXPORT_SYMBOL net/6lowpan/6lowpan 0xcab96107 lowpan_nhc_add +EXPORT_SYMBOL net/6lowpan/6lowpan 0xccea8051 lowpan_nhc_del +EXPORT_SYMBOL net/802/p8022 0x5b267993 unregister_8022_client +EXPORT_SYMBOL net/802/p8022 0x90ab4e49 register_8022_client +EXPORT_SYMBOL net/802/psnap 0x42454c36 register_snap_client +EXPORT_SYMBOL net/802/psnap 0x61f5a9ff unregister_snap_client +EXPORT_SYMBOL net/9p/9pnet 0x02b56095 p9_client_fsync +EXPORT_SYMBOL net/9p/9pnet 0x0bbe19fa v9fs_unregister_trans +EXPORT_SYMBOL net/9p/9pnet 0x1540a7a6 p9_client_begin_disconnect +EXPORT_SYMBOL net/9p/9pnet 0x1e8719d1 p9_client_create EXPORT_SYMBOL net/9p/9pnet 0x22a05bbe p9_fcall_fini -EXPORT_SYMBOL net/9p/9pnet 0x280de6f7 v9fs_get_default_trans -EXPORT_SYMBOL net/9p/9pnet 0x395ecb17 p9_client_begin_disconnect -EXPORT_SYMBOL net/9p/9pnet 0x3d20be49 p9_client_lock_dotl +EXPORT_SYMBOL net/9p/9pnet 0x23ecac8b p9_client_walk +EXPORT_SYMBOL net/9p/9pnet 0x26f2204b p9_client_readdir +EXPORT_SYMBOL net/9p/9pnet 0x28dc43c2 p9_release_pages +EXPORT_SYMBOL net/9p/9pnet 0x2b59abd4 p9_client_wstat +EXPORT_SYMBOL net/9p/9pnet 0x30090647 p9_client_lock_dotl +EXPORT_SYMBOL net/9p/9pnet 0x3470a327 v9fs_register_trans +EXPORT_SYMBOL net/9p/9pnet 0x3bac9df8 p9_client_open EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno EXPORT_SYMBOL net/9p/9pnet 0x3d986cf9 p9dirent_read -EXPORT_SYMBOL net/9p/9pnet 0x44c044e0 v9fs_get_trans_by_name -EXPORT_SYMBOL net/9p/9pnet 0x458027e6 v9fs_unregister_trans EXPORT_SYMBOL net/9p/9pnet 0x4c1c47a1 p9_req_put -EXPORT_SYMBOL net/9p/9pnet 0x5be43625 p9_tag_lookup -EXPORT_SYMBOL net/9p/9pnet 0x60313c11 p9_client_fcreate -EXPORT_SYMBOL net/9p/9pnet 0x629b29c3 p9_client_walk -EXPORT_SYMBOL net/9p/9pnet 0x6b25a58b p9_client_create -EXPORT_SYMBOL net/9p/9pnet 0x6cb6a13d p9_client_getlock_dotl -EXPORT_SYMBOL net/9p/9pnet 0x6e2d6b8d p9_client_create_dotl -EXPORT_SYMBOL net/9p/9pnet 0x7360ff1a p9_show_client_options -EXPORT_SYMBOL net/9p/9pnet 0x75b4bf8b p9_client_cb -EXPORT_SYMBOL net/9p/9pnet 0x7628ca6f v9fs_register_trans -EXPORT_SYMBOL net/9p/9pnet 0x7769973b p9_client_renameat -EXPORT_SYMBOL net/9p/9pnet 0x7c4fc65f p9_client_read -EXPORT_SYMBOL net/9p/9pnet 0x7ee7d8ba p9_client_open -EXPORT_SYMBOL net/9p/9pnet 0x7f399c25 p9_client_unlinkat +EXPORT_SYMBOL net/9p/9pnet 0x520374fc p9_client_destroy +EXPORT_SYMBOL net/9p/9pnet 0x6947705d p9_client_symlink +EXPORT_SYMBOL net/9p/9pnet 0x6c8b7bfe p9_client_readlink +EXPORT_SYMBOL net/9p/9pnet 0x6d8ef467 p9_client_cb +EXPORT_SYMBOL net/9p/9pnet 0x738d8e79 p9_client_read +EXPORT_SYMBOL net/9p/9pnet 0x73ba198b p9_client_renameat +EXPORT_SYMBOL net/9p/9pnet 0x7a099b59 p9_client_clunk +EXPORT_SYMBOL net/9p/9pnet 0x80238e9f v9fs_get_trans_by_name +EXPORT_SYMBOL net/9p/9pnet 0x8030e96d p9_client_stat EXPORT_SYMBOL net/9p/9pnet 0x80bbc6fd p9_parse_header -EXPORT_SYMBOL net/9p/9pnet 0x92b11f4c p9_is_proto_dotl -EXPORT_SYMBOL net/9p/9pnet 0x92eef4fe p9_client_symlink -EXPORT_SYMBOL net/9p/9pnet 0x9728231c p9_client_link -EXPORT_SYMBOL net/9p/9pnet 0x9909ea63 p9_client_clunk -EXPORT_SYMBOL net/9p/9pnet 0x9c1aaf19 p9_client_statfs -EXPORT_SYMBOL net/9p/9pnet 0xa5bedb96 p9_client_readdir -EXPORT_SYMBOL net/9p/9pnet 0xab00120d p9_client_wstat -EXPORT_SYMBOL net/9p/9pnet 0xac47dedc p9_client_fsync -EXPORT_SYMBOL net/9p/9pnet 0xacb0d940 p9_client_mknod_dotl -EXPORT_SYMBOL net/9p/9pnet 0xbfd58577 p9_client_attach -EXPORT_SYMBOL net/9p/9pnet 0xc830a2ea p9_client_remove -EXPORT_SYMBOL net/9p/9pnet 0xcc37e4c3 p9_client_stat -EXPORT_SYMBOL net/9p/9pnet 0xcdf0e89f p9_client_readlink +EXPORT_SYMBOL net/9p/9pnet 0x83888a14 p9_client_mknod_dotl +EXPORT_SYMBOL net/9p/9pnet 0x89967b54 p9_client_getlock_dotl +EXPORT_SYMBOL net/9p/9pnet 0x8a958e62 p9_show_client_options +EXPORT_SYMBOL net/9p/9pnet 0x8a968979 p9_client_rename +EXPORT_SYMBOL net/9p/9pnet 0x8eb4d087 p9_client_unlinkat +EXPORT_SYMBOL net/9p/9pnet 0xa03edea1 v9fs_get_default_trans +EXPORT_SYMBOL net/9p/9pnet 0xa4af01ec p9_tag_lookup +EXPORT_SYMBOL net/9p/9pnet 0xaa503aa8 p9_client_getattr_dotl +EXPORT_SYMBOL net/9p/9pnet 0xaedd1d32 p9_client_write +EXPORT_SYMBOL net/9p/9pnet 0xba6e26ab p9_client_statfs +EXPORT_SYMBOL net/9p/9pnet 0xc7933b50 p9_client_attach +EXPORT_SYMBOL net/9p/9pnet 0xc87eac14 p9_client_create_dotl +EXPORT_SYMBOL net/9p/9pnet 0xcd31e86f p9_is_proto_dotl +EXPORT_SYMBOL net/9p/9pnet 0xcd5e5404 p9_client_remove EXPORT_SYMBOL net/9p/9pnet 0xd384c683 p9stat_free -EXPORT_SYMBOL net/9p/9pnet 0xd5624f12 p9_is_proto_dotu +EXPORT_SYMBOL net/9p/9pnet 0xd5bc7867 p9_client_mkdir_dotl +EXPORT_SYMBOL net/9p/9pnet 0xd89de982 p9_client_read_once EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init EXPORT_SYMBOL net/9p/9pnet 0xe6b1e55e p9stat_read -EXPORT_SYMBOL net/9p/9pnet 0xef1b6166 p9_client_write -EXPORT_SYMBOL net/9p/9pnet 0xfaf3c6cc p9_client_setattr -EXPORT_SYMBOL net/9p/9pnet 0xffb3cef0 p9_client_getattr_dotl -EXPORT_SYMBOL net/appletalk/appletalk 0x16135d5e aarp_send_ddp -EXPORT_SYMBOL net/appletalk/appletalk 0x2d83d0c6 alloc_ltalkdev -EXPORT_SYMBOL net/appletalk/appletalk 0x3edc8a04 atalk_find_dev_addr -EXPORT_SYMBOL net/appletalk/appletalk 0x8a4ac243 atrtr_get_dev -EXPORT_SYMBOL net/atm/atm 0x0b13f2a2 vcc_release_async -EXPORT_SYMBOL net/atm/atm 0x115539bd atm_dev_release_vccs -EXPORT_SYMBOL net/atm/atm 0x2a2bfee6 atm_alloc_charge -EXPORT_SYMBOL net/atm/atm 0x2bf8a34b atm_dev_register +EXPORT_SYMBOL net/9p/9pnet 0xef619c37 p9_is_proto_dotu +EXPORT_SYMBOL net/9p/9pnet 0xf4e1b182 p9_client_setattr +EXPORT_SYMBOL net/9p/9pnet 0xfdae0219 p9_client_disconnect +EXPORT_SYMBOL net/9p/9pnet 0xfe2e6273 p9_client_fcreate +EXPORT_SYMBOL net/9p/9pnet 0xfe5bbabe p9_client_link +EXPORT_SYMBOL net/appletalk/appletalk 0x1c15e248 atrtr_get_dev +EXPORT_SYMBOL net/appletalk/appletalk 0x4f55d6da aarp_send_ddp +EXPORT_SYMBOL net/appletalk/appletalk 0xbdc3348f atalk_find_dev_addr +EXPORT_SYMBOL net/appletalk/appletalk 0xcc7564e3 alloc_ltalkdev +EXPORT_SYMBOL net/atm/atm 0x1d66ff12 atm_alloc_charge EXPORT_SYMBOL net/atm/atm 0x2cc2d52d vcc_hash +EXPORT_SYMBOL net/atm/atm 0x2f506663 atm_dev_deregister +EXPORT_SYMBOL net/atm/atm 0x37583008 register_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0x39c7a555 atm_dev_signal_change +EXPORT_SYMBOL net/atm/atm 0x3f19d8f9 deregister_atm_ioctl EXPORT_SYMBOL net/atm/atm 0x4443d399 atm_proc_root -EXPORT_SYMBOL net/atm/atm 0x4cbc505e deregister_atm_ioctl -EXPORT_SYMBOL net/atm/atm 0x4ee68171 atm_charge -EXPORT_SYMBOL net/atm/atm 0x6040a63d atm_dev_lookup +EXPORT_SYMBOL net/atm/atm 0x5121dbe0 vcc_process_recv_queue EXPORT_SYMBOL net/atm/atm 0x6b9a3871 vcc_sklist_lock -EXPORT_SYMBOL net/atm/atm 0x9b32b70d vcc_process_recv_queue +EXPORT_SYMBOL net/atm/atm 0x8b73a467 atm_init_aal5 EXPORT_SYMBOL net/atm/atm 0x9feaf287 sonet_subtract_stats -EXPORT_SYMBOL net/atm/atm 0xa0c6a373 atm_init_aal5 -EXPORT_SYMBOL net/atm/atm 0xa1876272 atm_dev_signal_change EXPORT_SYMBOL net/atm/atm 0xaa024146 sonet_copy_stats -EXPORT_SYMBOL net/atm/atm 0xb2a9b80b register_atm_ioctl -EXPORT_SYMBOL net/atm/atm 0xd1f69a29 atm_dev_deregister -EXPORT_SYMBOL net/atm/atm 0xd9fd2f53 vcc_insert_socket +EXPORT_SYMBOL net/atm/atm 0xaf25313e atm_charge +EXPORT_SYMBOL net/atm/atm 0xb93a1fd5 atm_dev_register +EXPORT_SYMBOL net/atm/atm 0xc362a3e5 atm_dev_release_vccs +EXPORT_SYMBOL net/atm/atm 0xc6e99a99 vcc_insert_socket +EXPORT_SYMBOL net/atm/atm 0xeb1f44a2 vcc_release_async EXPORT_SYMBOL net/atm/atm 0xf49bc67a atm_pcr_goal +EXPORT_SYMBOL net/atm/atm 0xf7d83206 atm_dev_lookup EXPORT_SYMBOL net/ax25/ax25 0x14cecd59 ax25_display_timer EXPORT_SYMBOL net/ax25/ax25 0x242852b9 ax25_uid_policy -EXPORT_SYMBOL net/ax25/ax25 0x254a151f ax25_ip_xmit -EXPORT_SYMBOL net/ax25/ax25 0x2f792d7e ax25_listen_register -EXPORT_SYMBOL net/ax25/ax25 0x3221fee8 ax25_send_frame +EXPORT_SYMBOL net/ax25/ax25 0x3c2a34e4 ax25_listen_release EXPORT_SYMBOL net/ax25/ax25 0x4502c65a asc2ax EXPORT_SYMBOL net/ax25/ax25 0x53dea1ff ax2asc -EXPORT_SYMBOL net/ax25/ax25 0x58d4b04f ax25_linkfail_register +EXPORT_SYMBOL net/ax25/ax25 0x7fbb21e1 ax25_linkfail_register +EXPORT_SYMBOL net/ax25/ax25 0x8ea72002 ax25_linkfail_release EXPORT_SYMBOL net/ax25/ax25 0x8ede9e26 ax25_protocol_release +EXPORT_SYMBOL net/ax25/ax25 0x94cf4288 ax25_send_frame +EXPORT_SYMBOL net/ax25/ax25 0xa95eb28d ax25_find_cb +EXPORT_SYMBOL net/ax25/ax25 0xad6d7d2e ax25_header_ops EXPORT_SYMBOL net/ax25/ax25 0xc1444946 ax25cmp -EXPORT_SYMBOL net/ax25/ax25 0xc1d05e90 ax25_find_cb EXPORT_SYMBOL net/ax25/ax25 0xd43ecbf1 null_ax25_address -EXPORT_SYMBOL net/ax25/ax25 0xdb54ef9e ax25_linkfail_release -EXPORT_SYMBOL net/ax25/ax25 0xe5c85066 ax25_header_ops -EXPORT_SYMBOL net/ax25/ax25 0xebcb1ec0 ax25_listen_release +EXPORT_SYMBOL net/ax25/ax25 0xd883cc76 ax25_listen_register +EXPORT_SYMBOL net/ax25/ax25 0xda48453c ax25_ip_xmit EXPORT_SYMBOL net/ax25/ax25 0xee02e420 ax25_findbyuid -EXPORT_SYMBOL net/bluetooth/bluetooth 0x00a2f630 hci_suspend_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x0233b480 hci_mgmt_chan_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0x05f4e648 hci_release_dev EXPORT_SYMBOL net/bluetooth/bluetooth 0x0718b8b7 bt_info -EXPORT_SYMBOL net/bluetooth/bluetooth 0x07cf58c2 hci_set_hw_info -EXPORT_SYMBOL net/bluetooth/bluetooth 0x1532186d bt_sock_ioctl -EXPORT_SYMBOL net/bluetooth/bluetooth 0x1541260a hci_recv_frame -EXPORT_SYMBOL net/bluetooth/bluetooth 0x1969230c bt_procfs_init +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0ce02677 hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0d0180c0 hci_free_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x1bb562cc hci_set_hw_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0x1d3304a3 bt_sock_reclassify_lock +EXPORT_SYMBOL net/bluetooth/bluetooth 0x1f0bf660 l2cap_register_user EXPORT_SYMBOL net/bluetooth/bluetooth 0x214e4265 bt_warn -EXPORT_SYMBOL net/bluetooth/bluetooth 0x26c1a63d bt_sock_reclassify_lock -EXPORT_SYMBOL net/bluetooth/bluetooth 0x286e299e bt_sock_poll -EXPORT_SYMBOL net/bluetooth/bluetooth 0x30b058fd hci_get_route -EXPORT_SYMBOL net/bluetooth/bluetooth 0x32606568 l2cap_conn_put -EXPORT_SYMBOL net/bluetooth/bluetooth 0x35a235bc hci_reset_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x40c50c1b l2cap_conn_get -EXPORT_SYMBOL net/bluetooth/bluetooth 0x41f07602 hci_cmd_sync -EXPORT_SYMBOL net/bluetooth/bluetooth 0x452f0ed6 hci_alloc_dev_priv -EXPORT_SYMBOL net/bluetooth/bluetooth 0x4b2797a3 hci_free_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x4bf7d6ee bt_sock_wait_state -EXPORT_SYMBOL net/bluetooth/bluetooth 0x4dc5a3bd hci_unregister_cb -EXPORT_SYMBOL net/bluetooth/bluetooth 0x53a3e7a1 bt_accept_dequeue -EXPORT_SYMBOL net/bluetooth/bluetooth 0x5ad5d51d hci_register_cb -EXPORT_SYMBOL net/bluetooth/bluetooth 0x63c15066 bt_sock_stream_recvmsg -EXPORT_SYMBOL net/bluetooth/bluetooth 0x6758101d bt_sock_wait_ready -EXPORT_SYMBOL net/bluetooth/bluetooth 0x71503fbe hci_recv_diag -EXPORT_SYMBOL net/bluetooth/bluetooth 0x74a3f49c bt_sock_unlink -EXPORT_SYMBOL net/bluetooth/bluetooth 0x7a616ed8 l2cap_chan_close +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2196ffa8 bt_sock_link +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2244f98e bt_procfs_cleanup +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2524117f hci_unregister_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2766b991 hci_get_route +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2a71dece __hci_cmd_send +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2ffd2693 hci_conn_switch_role +EXPORT_SYMBOL net/bluetooth/bluetooth 0x30814fe0 bt_sock_stream_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0x33930b51 hci_unregister_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3d046646 hci_reset_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3f41e44f l2cap_conn_put +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4a63f1c7 bt_accept_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4bfc8aae hci_suspend_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x504db8bf hci_alloc_dev_priv +EXPORT_SYMBOL net/bluetooth/bluetooth 0x62a6c79b bt_accept_enqueue +EXPORT_SYMBOL net/bluetooth/bluetooth 0x67eb2e65 bt_sock_wait_state +EXPORT_SYMBOL net/bluetooth/bluetooth 0x705d629e __hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0x708add18 bt_sock_ioctl +EXPORT_SYMBOL net/bluetooth/bluetooth 0x76328e9a bt_accept_dequeue +EXPORT_SYMBOL net/bluetooth/bluetooth 0x78ae1eaa hci_recv_diag EXPORT_SYMBOL net/bluetooth/bluetooth 0x7aad008b bt_to_errno EXPORT_SYMBOL net/bluetooth/bluetooth 0x7b5ce5c3 baswap -EXPORT_SYMBOL net/bluetooth/bluetooth 0x7b6a3d67 hci_register_dev EXPORT_SYMBOL net/bluetooth/bluetooth 0x7b8c32f1 bt_err -EXPORT_SYMBOL net/bluetooth/bluetooth 0x80c23797 l2cap_is_socket -EXPORT_SYMBOL net/bluetooth/bluetooth 0x83833511 bt_accept_unlink -EXPORT_SYMBOL net/bluetooth/bluetooth 0x871835cb __hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0x831ae4be bt_procfs_init +EXPORT_SYMBOL net/bluetooth/bluetooth 0x85c337a5 hci_register_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8a07fe4d hci_mgmt_chan_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8a68f525 l2cap_conn_get +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8aa514aa hci_recv_frame EXPORT_SYMBOL net/bluetooth/bluetooth 0x8fea24bd bt_sock_unregister -EXPORT_SYMBOL net/bluetooth/bluetooth 0xa6adcf13 hci_conn_security -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb1264008 hci_mgmt_chan_register -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb210de1b hci_set_fw_info -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb2412eb9 bt_procfs_cleanup -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb87779e2 hci_resume_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xbb3cb49c bt_sock_link -EXPORT_SYMBOL net/bluetooth/bluetooth 0xbcf54d4b hci_release_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xbf4e1570 bt_sock_recvmsg -EXPORT_SYMBOL net/bluetooth/bluetooth 0xbfa0487a __hci_cmd_sync_ev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xc10f96a4 bt_sock_register -EXPORT_SYMBOL net/bluetooth/bluetooth 0xc1eb5011 bt_accept_enqueue -EXPORT_SYMBOL net/bluetooth/bluetooth 0xd27a482f hci_conn_switch_role +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa33f283a bt_sock_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0xbd0d348e hci_conn_check_secure +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc5ca91c1 bt_sock_wait_ready EXPORT_SYMBOL net/bluetooth/bluetooth 0xd7613212 bt_err_ratelimited -EXPORT_SYMBOL net/bluetooth/bluetooth 0xdd761ca9 hci_unregister_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd8e48054 hci_set_fw_info EXPORT_SYMBOL net/bluetooth/bluetooth 0xddacccf6 bt_warn_ratelimited -EXPORT_SYMBOL net/bluetooth/bluetooth 0xdefa962d l2cap_unregister_user -EXPORT_SYMBOL net/bluetooth/bluetooth 0xe97fe79a hci_conn_check_secure -EXPORT_SYMBOL net/bluetooth/bluetooth 0xe9d4bc14 l2cap_register_user -EXPORT_SYMBOL net/bluetooth/bluetooth 0xeb9c37f1 __hci_cmd_send -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x2bf0ee37 ebt_register_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x69940962 ebt_unregister_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x8937efb0 ebt_unregister_table_pre_exit -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x967907d0 ebt_do_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xb0dd2f51 ebt_unregister_template -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xd6c70add ebt_register_template +EXPORT_SYMBOL net/bluetooth/bluetooth 0xde11fadd l2cap_chan_close +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe1957573 __hci_cmd_sync_ev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe3296c68 bt_sock_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe3d6e468 bt_sock_poll +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe53d8f07 bt_sock_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe68a0d94 hci_resume_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xeb32b317 hci_mgmt_chan_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0xeff4ec8d hci_conn_security +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf1104473 hci_register_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf34057e8 l2cap_unregister_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0xff83bad0 l2cap_is_socket +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x117560c6 ebt_unregister_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x3745cd5d ebt_register_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x5fc065bf ebt_unregister_template +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x8b6e834f ebt_unregister_table_pre_exit +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x994df9f1 ebt_register_template +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xd551960f ebt_do_table EXPORT_SYMBOL net/caif/caif 0x1446b60a caif_client_register_refcnt EXPORT_SYMBOL net/caif/caif 0x2a09f713 cfpkt_fromnative EXPORT_SYMBOL net/caif/caif 0x329dbd06 cfpkt_info EXPORT_SYMBOL net/caif/caif 0x38701a7c cfcnfg_del_phy_layer +EXPORT_SYMBOL net/caif/caif 0x3a4d7548 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 0x5de23524 caif_disconnect_client -EXPORT_SYMBOL net/caif/caif 0x6239dabb get_cfcnfg -EXPORT_SYMBOL net/caif/caif 0x7c4950bb cfcnfg_add_phy_layer -EXPORT_SYMBOL net/caif/caif 0x8077894f caif_enroll_dev +EXPORT_SYMBOL net/caif/caif 0x5d67a662 cfcnfg_add_phy_layer EXPORT_SYMBOL net/caif/caif 0x839ddb7b cfcnfg_set_phy_state -EXPORT_SYMBOL net/caif/caif 0x992ebdca caif_connect_client EXPORT_SYMBOL net/caif/caif 0x9e3e305d cfpkt_set_prio EXPORT_SYMBOL net/caif/caif 0xb7b6874e caif_free_client -EXPORT_SYMBOL net/can/can 0x273404c0 can_proto_register -EXPORT_SYMBOL net/can/can 0x4d4c1ed0 can_proto_unregister -EXPORT_SYMBOL net/can/can 0x535b91da can_sock_destruct -EXPORT_SYMBOL net/can/can 0xbc3605fa can_rx_unregister -EXPORT_SYMBOL net/can/can 0xd50fe7f4 can_rx_register -EXPORT_SYMBOL net/can/can 0xdf2e10db can_send -EXPORT_SYMBOL net/ceph/libceph 0x00b35338 osd_req_op_raw_data_in_pages -EXPORT_SYMBOL net/ceph/libceph 0x024fb4f2 ceph_osdc_list_watchers -EXPORT_SYMBOL net/ceph/libceph 0x04e45360 ceph_osdc_cancel_request -EXPORT_SYMBOL net/ceph/libceph 0x082bd8f7 ceph_reset_client_addr -EXPORT_SYMBOL net/ceph/libceph 0x0871389f ceph_con_close -EXPORT_SYMBOL net/ceph/libceph 0x088c28f6 ceph_open_session +EXPORT_SYMBOL net/caif/caif 0xc830a8c4 caif_disconnect_client +EXPORT_SYMBOL net/caif/caif 0xd1d0aaba caif_connect_client +EXPORT_SYMBOL net/caif/caif 0xf024c308 get_cfcnfg +EXPORT_SYMBOL net/can/can 0x56586580 can_proto_register +EXPORT_SYMBOL net/can/can 0x7f97fb0b can_proto_unregister +EXPORT_SYMBOL net/can/can 0x86ce7e42 can_rx_register +EXPORT_SYMBOL net/can/can 0xa9e3a112 can_sock_destruct +EXPORT_SYMBOL net/can/can 0xc7831d96 can_rx_unregister +EXPORT_SYMBOL net/can/can 0xfd5be1c5 can_send +EXPORT_SYMBOL net/ceph/libceph 0x01246df1 ceph_cls_assert_locked +EXPORT_SYMBOL net/ceph/libceph 0x046951ff ceph_msg_data_add_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x054f2b3d ceph_auth_verify_authorizer_reply +EXPORT_SYMBOL net/ceph/libceph 0x06b2cf91 ceph_msg_get EXPORT_SYMBOL net/ceph/libceph 0x0a3c60e0 ceph_pagelist_alloc -EXPORT_SYMBOL net/ceph/libceph 0x0af34c6e ceph_auth_add_authorizer_challenge -EXPORT_SYMBOL net/ceph/libceph 0x0bdce2d4 ceph_osdc_copy_from -EXPORT_SYMBOL net/ceph/libceph 0x0dc59a5e ceph_monc_get_version_async -EXPORT_SYMBOL net/ceph/libceph 0x127fac88 ceph_zero_page_vector_range -EXPORT_SYMBOL net/ceph/libceph 0x166a5c2c ceph_client_gid -EXPORT_SYMBOL net/ceph/libceph 0x17f5a5fb osd_req_op_extent_osd_data_pagelist -EXPORT_SYMBOL net/ceph/libceph 0x1c799059 ceph_monc_renew_subs -EXPORT_SYMBOL net/ceph/libceph 0x1caeb6cd ceph_osdc_start_request +EXPORT_SYMBOL net/ceph/libceph 0x0bd5cbbf ceph_alloc_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x17c4c17b ceph_osdc_clear_abort_err EXPORT_SYMBOL net/ceph/libceph 0x1cba3f20 ceph_pagelist_append +EXPORT_SYMBOL net/ceph/libceph 0x200270fe osd_req_op_extent_init EXPORT_SYMBOL net/ceph/libceph 0x2087719e ceph_oid_copy EXPORT_SYMBOL net/ceph/libceph 0x2101cbc9 ceph_oid_destroy -EXPORT_SYMBOL net/ceph/libceph 0x2108077a ceph_msg_new -EXPORT_SYMBOL net/ceph/libceph 0x213baaf9 ceph_create_client -EXPORT_SYMBOL net/ceph/libceph 0x217b9d81 ceph_auth_handle_bad_authorizer -EXPORT_SYMBOL net/ceph/libceph 0x21e8cb2c ceph_osdc_wait_request -EXPORT_SYMBOL net/ceph/libceph 0x2289b79a ceph_con_send -EXPORT_SYMBOL net/ceph/libceph 0x26afb936 ceph_auth_handle_svc_reply_more -EXPORT_SYMBOL net/ceph/libceph 0x2b584726 ceph_msg_data_add_pages -EXPORT_SYMBOL net/ceph/libceph 0x2bf0bf57 ceph_parse_param -EXPORT_SYMBOL net/ceph/libceph 0x30165169 osd_req_op_cls_request_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x2153b5ac ceph_osdc_abort_requests +EXPORT_SYMBOL net/ceph/libceph 0x21ab6d65 osd_req_op_init +EXPORT_SYMBOL net/ceph/libceph 0x25077acf ceph_osdc_alloc_request +EXPORT_SYMBOL net/ceph/libceph 0x25aadfe0 ceph_monc_want_map +EXPORT_SYMBOL net/ceph/libceph 0x278eacfc ceph_osdc_copy_from +EXPORT_SYMBOL net/ceph/libceph 0x2796bd9f ceph_osdc_alloc_messages EXPORT_SYMBOL net/ceph/libceph 0x317ac0ee ceph_oloc_copy -EXPORT_SYMBOL net/ceph/libceph 0x32dc08ac ceph_msg_data_add_bio -EXPORT_SYMBOL net/ceph/libceph 0x33214710 ceph_compare_options +EXPORT_SYMBOL net/ceph/libceph 0x32b742d8 osd_req_op_alloc_hint_init +EXPORT_SYMBOL net/ceph/libceph 0x331cbfba osd_req_op_extent_update +EXPORT_SYMBOL net/ceph/libceph 0x33e62679 ceph_osdc_put_request +EXPORT_SYMBOL net/ceph/libceph 0x34b7000d ceph_osdc_maybe_request_map EXPORT_SYMBOL net/ceph/libceph 0x3522979c ceph_buffer_new -EXPORT_SYMBOL net/ceph/libceph 0x376827ac ceph_msg_data_add_bvecs -EXPORT_SYMBOL net/ceph/libceph 0x37b146c2 ceph_monc_init +EXPORT_SYMBOL net/ceph/libceph 0x35a72283 ceph_monc_stop EXPORT_SYMBOL net/ceph/libceph 0x38f2d94e ceph_file_to_extents -EXPORT_SYMBOL net/ceph/libceph 0x39669aee ceph_copy_from_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x39cb03b1 ceph_wait_for_latest_osdmap -EXPORT_SYMBOL net/ceph/libceph 0x3bb07e52 ceph_cls_set_cookie EXPORT_SYMBOL net/ceph/libceph 0x3c8d7111 ceph_get_num_objects EXPORT_SYMBOL net/ceph/libceph 0x3d0f2a7c ceph_oloc_destroy -EXPORT_SYMBOL net/ceph/libceph 0x42be77b7 ceph_osdc_notify -EXPORT_SYMBOL net/ceph/libceph 0x4437ae8e ceph_cls_unlock +EXPORT_SYMBOL net/ceph/libceph 0x3ebb404f osd_req_op_cls_request_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x402be57f ceph_auth_add_authorizer_challenge +EXPORT_SYMBOL net/ceph/libceph 0x4322389f ceph_osdc_flush_notifies EXPORT_SYMBOL net/ceph/libceph 0x45044d94 ceph_find_or_create_string EXPORT_SYMBOL net/ceph/libceph 0x466b85b8 libceph_compatible -EXPORT_SYMBOL net/ceph/libceph 0x469a8017 ceph_cls_assert_locked -EXPORT_SYMBOL net/ceph/libceph 0x478164d0 ceph_osdc_clear_abort_err -EXPORT_SYMBOL net/ceph/libceph 0x47d0fefc ceph_auth_verify_authorizer_reply +EXPORT_SYMBOL net/ceph/libceph 0x4a65a716 ceph_auth_handle_svc_reply_more +EXPORT_SYMBOL net/ceph/libceph 0x4cf8c3cc ceph_release_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x4dd9c935 ceph_client_gid +EXPORT_SYMBOL net/ceph/libceph 0x4fd81d59 ceph_osdc_notify EXPORT_SYMBOL net/ceph/libceph 0x50603ce3 ceph_decode_entity_addrvec -EXPORT_SYMBOL net/ceph/libceph 0x50d0ae0a ceph_copy_to_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x50f96885 osd_req_op_extent_update -EXPORT_SYMBOL net/ceph/libceph 0x52b3738f ceph_osdc_unwatch -EXPORT_SYMBOL net/ceph/libceph 0x53038f9c __ceph_auth_get_authorizer -EXPORT_SYMBOL net/ceph/libceph 0x559b1838 ceph_print_client_options +EXPORT_SYMBOL net/ceph/libceph 0x538f1b1e ceph_osdc_watch EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash -EXPORT_SYMBOL net/ceph/libceph 0x59c6ee25 ceph_monc_stop +EXPORT_SYMBOL net/ceph/libceph 0x585e11b8 osd_req_op_cls_init +EXPORT_SYMBOL net/ceph/libceph 0x5a12d099 osd_req_op_raw_data_in_pages EXPORT_SYMBOL net/ceph/libceph 0x5aeeee62 ceph_oid_aprintf -EXPORT_SYMBOL net/ceph/libceph 0x61386f5f ceph_monc_wait_osdmap -EXPORT_SYMBOL net/ceph/libceph 0x6157e375 osd_req_op_extent_dup_last +EXPORT_SYMBOL net/ceph/libceph 0x5cdbc29a ceph_monc_init +EXPORT_SYMBOL net/ceph/libceph 0x614a2ba5 ceph_destroy_client 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 0x666f2da9 ceph_alloc_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x69b01d66 osd_req_op_cls_response_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x6518c82f ceph_monc_blocklist_add +EXPORT_SYMBOL net/ceph/libceph 0x68ea3be2 ceph_cls_break_lock +EXPORT_SYMBOL net/ceph/libceph 0x6a3f2da4 ceph_msg_new EXPORT_SYMBOL net/ceph/libceph 0x6a7a38a0 ceph_pr_addr -EXPORT_SYMBOL net/ceph/libceph 0x6b7480ee ceph_msg_get -EXPORT_SYMBOL net/ceph/libceph 0x6e3fc9dd ceph_auth_handle_svc_reply_done -EXPORT_SYMBOL net/ceph/libceph 0x6e4ab95a ceph_client_addr -EXPORT_SYMBOL net/ceph/libceph 0x6eab5b89 osd_req_op_cls_request_data_bvecs +EXPORT_SYMBOL net/ceph/libceph 0x6b4e6bce ceph_osdc_get_request +EXPORT_SYMBOL net/ceph/libceph 0x6c7fd206 ceph_msg_data_add_pages EXPORT_SYMBOL net/ceph/libceph 0x6edb8cb7 ceph_pagelist_reserve -EXPORT_SYMBOL net/ceph/libceph 0x6f89bd5b ceph_put_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x72512d36 ceph_cls_break_lock -EXPORT_SYMBOL net/ceph/libceph 0x72bbc98c ceph_monc_open_session -EXPORT_SYMBOL net/ceph/libceph 0x7489ecaf osd_req_op_extent_osd_data -EXPORT_SYMBOL net/ceph/libceph 0x796c330c ceph_osdc_abort_requests -EXPORT_SYMBOL net/ceph/libceph 0x7c1fd2e6 ceph_osdc_sync -EXPORT_SYMBOL net/ceph/libceph 0x869d0358 __ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x72835d74 ceph_osdc_list_watchers +EXPORT_SYMBOL net/ceph/libceph 0x74133344 ceph_print_client_options +EXPORT_SYMBOL net/ceph/libceph 0x74aeb7f7 ceph_cls_unlock +EXPORT_SYMBOL net/ceph/libceph 0x78ad0e86 ceph_osdc_cancel_request +EXPORT_SYMBOL net/ceph/libceph 0x7a1c40e9 osd_req_op_cls_response_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x7b19e4e8 ceph_auth_handle_svc_reply_done +EXPORT_SYMBOL net/ceph/libceph 0x7f1d45f0 ceph_copy_user_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x7f758664 ceph_auth_invalidate_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x7fd6b2e3 osd_req_op_cls_request_data_pages EXPORT_SYMBOL net/ceph/libceph 0x86fca7e4 ceph_put_snap_context -EXPORT_SYMBOL net/ceph/libceph 0x8833fc60 ceph_msg_dump +EXPORT_SYMBOL net/ceph/libceph 0x88f6bf59 ceph_copy_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x897d2ebd ceph_compare_options +EXPORT_SYMBOL net/ceph/libceph 0x8b29f259 ceph_cls_lock_info EXPORT_SYMBOL net/ceph/libceph 0x8bd5050e ceph_pagelist_free_reserve -EXPORT_SYMBOL net/ceph/libceph 0x8e46890d osd_req_op_init -EXPORT_SYMBOL net/ceph/libceph 0x8eaa4d17 ceph_destroy_client -EXPORT_SYMBOL net/ceph/libceph 0x8f7c774b osd_req_op_extent_osd_data_bvec_pos -EXPORT_SYMBOL net/ceph/libceph 0x97fac3ff ceph_osdc_maybe_request_map +EXPORT_SYMBOL net/ceph/libceph 0x8e835a85 ceph_con_keepalive +EXPORT_SYMBOL net/ceph/libceph 0x92195c7e ceph_client_addr +EXPORT_SYMBOL net/ceph/libceph 0x985e121d ceph_copy_from_page_vector EXPORT_SYMBOL net/ceph/libceph 0x987d3968 ceph_alloc_options -EXPORT_SYMBOL net/ceph/libceph 0x9a58349e ceph_con_keepalive -EXPORT_SYMBOL net/ceph/libceph 0x9b13d53a ceph_osdc_new_request -EXPORT_SYMBOL net/ceph/libceph 0x9b58964b ceph_msg_new2 -EXPORT_SYMBOL net/ceph/libceph 0x9c4ed1e3 ceph_osdc_get_request +EXPORT_SYMBOL net/ceph/libceph 0x995d4793 ceph_con_init +EXPORT_SYMBOL net/ceph/libceph 0x998773a9 ceph_msg_new2 EXPORT_SYMBOL net/ceph/libceph 0x9ca95932 ceph_create_snap_context -EXPORT_SYMBOL net/ceph/libceph 0x9d1893d8 ceph_msg_data_add_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x9fcc2067 ceph_put_page_vector EXPORT_SYMBOL net/ceph/libceph 0x9fefa3cb ceph_calc_file_object_mapping -EXPORT_SYMBOL net/ceph/libceph 0xa2539509 osd_req_op_alloc_hint_init -EXPORT_SYMBOL net/ceph/libceph 0xa697960c osd_req_op_cls_request_data_pages +EXPORT_SYMBOL net/ceph/libceph 0xa00dafa6 osd_req_op_extent_osd_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0xa170d2e5 ceph_parse_mon_ips +EXPORT_SYMBOL net/ceph/libceph 0xa1ccc516 osd_req_op_extent_osd_data_pages +EXPORT_SYMBOL net/ceph/libceph 0xa28892e6 ceph_zero_page_vector_range +EXPORT_SYMBOL net/ceph/libceph 0xa4ffa2f3 ceph_monc_get_version 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 0xaa4a21e5 ceph_monc_blocklist_add -EXPORT_SYMBOL net/ceph/libceph 0xab39ab86 ceph_check_fsid +EXPORT_SYMBOL net/ceph/libceph 0xa7fcb622 ceph_auth_handle_bad_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xac67e083 ceph_osdc_sync EXPORT_SYMBOL net/ceph/libceph 0xad703657 ceph_auth_destroy_authorizer -EXPORT_SYMBOL net/ceph/libceph 0xaf7ff9d9 ceph_cls_lock +EXPORT_SYMBOL net/ceph/libceph 0xae05aaa5 ceph_monc_wait_osdmap +EXPORT_SYMBOL net/ceph/libceph 0xae71d0fd ceph_open_session EXPORT_SYMBOL net/ceph/libceph 0xafb8a407 ceph_msgr_flush -EXPORT_SYMBOL net/ceph/libceph 0xb183cc17 ceph_monc_get_version +EXPORT_SYMBOL net/ceph/libceph 0xb02b1a5d ceph_con_send +EXPORT_SYMBOL net/ceph/libceph 0xb2bd2b85 ceph_auth_get_authorizer 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 0xb69cf45f ceph_con_open +EXPORT_SYMBOL net/ceph/libceph 0xb66a318d ceph_osdc_update_epoch_barrier EXPORT_SYMBOL net/ceph/libceph 0xb72c162e ceph_buffer_release -EXPORT_SYMBOL net/ceph/libceph 0xb82c7539 ceph_auth_invalidate_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xb7e6d2b7 ceph_auth_is_authenticated +EXPORT_SYMBOL net/ceph/libceph 0xb8061334 osd_req_op_extent_osd_data_bvecs +EXPORT_SYMBOL net/ceph/libceph 0xb8a7a513 ceph_osdc_notify_ack +EXPORT_SYMBOL net/ceph/libceph 0xb8bbc46a ceph_monc_got_map +EXPORT_SYMBOL net/ceph/libceph 0xb8c01a48 ceph_con_close +EXPORT_SYMBOL net/ceph/libceph 0xba2d9603 ceph_monc_renew_subs EXPORT_SYMBOL net/ceph/libceph 0xbae00da7 ceph_pg_pool_flags -EXPORT_SYMBOL net/ceph/libceph 0xbc006d82 ceph_auth_get_authorizer -EXPORT_SYMBOL net/ceph/libceph 0xbcf7f4b7 ceph_osdc_call -EXPORT_SYMBOL net/ceph/libceph 0xbdf1317e ceph_osdc_put_request +EXPORT_SYMBOL net/ceph/libceph 0xbe1509b2 ceph_osdc_call EXPORT_SYMBOL net/ceph/libceph 0xbe3879aa ceph_get_snap_context -EXPORT_SYMBOL net/ceph/libceph 0xbf41355b ceph_auth_is_authenticated -EXPORT_SYMBOL net/ceph/libceph 0xc05f6d97 ceph_msg_put +EXPORT_SYMBOL net/ceph/libceph 0xbea99899 ceph_wait_for_latest_osdmap +EXPORT_SYMBOL net/ceph/libceph 0xc040722c ceph_monc_get_version_async EXPORT_SYMBOL net/ceph/libceph 0xc20c8ca8 ceph_pagelist_set_cursor -EXPORT_SYMBOL net/ceph/libceph 0xc53a2f42 osd_req_op_extent_init +EXPORT_SYMBOL net/ceph/libceph 0xc650801c ceph_osdc_start_request +EXPORT_SYMBOL net/ceph/libceph 0xc7bfd7b9 ceph_monc_validate_auth +EXPORT_SYMBOL net/ceph/libceph 0xc864fe0e ceph_osdc_new_request EXPORT_SYMBOL net/ceph/libceph 0xca80437b ceph_extent_to_file -EXPORT_SYMBOL net/ceph/libceph 0xcab0441a ceph_osdc_notify_ack -EXPORT_SYMBOL net/ceph/libceph 0xcc29a5c1 ceph_con_init -EXPORT_SYMBOL net/ceph/libceph 0xcdb248cd ceph_osdc_flush_notifies -EXPORT_SYMBOL net/ceph/libceph 0xd0a1b2d7 ceph_osdc_watch -EXPORT_SYMBOL net/ceph/libceph 0xd27ed36d ceph_release_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xcb0eb507 ceph_cls_set_cookie +EXPORT_SYMBOL net/ceph/libceph 0xcc2e3996 osd_req_op_extent_osd_data +EXPORT_SYMBOL net/ceph/libceph 0xd081c038 ceph_cls_lock +EXPORT_SYMBOL net/ceph/libceph 0xd243a78f ceph_create_client EXPORT_SYMBOL net/ceph/libceph 0xd4d736db ceph_destroy_options EXPORT_SYMBOL net/ceph/libceph 0xd4eb7735 ceph_decode_entity_addr -EXPORT_SYMBOL net/ceph/libceph 0xd9efa04b osd_req_op_extent_osd_data_bvecs -EXPORT_SYMBOL net/ceph/libceph 0xda416d09 ceph_parse_mon_ips -EXPORT_SYMBOL net/ceph/libceph 0xdb159c05 ceph_osdc_alloc_messages +EXPORT_SYMBOL net/ceph/libceph 0xd57bbe97 ceph_check_fsid +EXPORT_SYMBOL net/ceph/libceph 0xd895ecee __ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0xdace9cf6 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 -EXPORT_SYMBOL net/ceph/libceph 0xe27a0c06 ceph_copy_user_to_page_vector -EXPORT_SYMBOL net/ceph/libceph 0xe38886b1 osd_req_op_extent_osd_data_bio -EXPORT_SYMBOL net/ceph/libceph 0xe48827cc osd_req_op_extent_osd_data_pages -EXPORT_SYMBOL net/ceph/libceph 0xe7c0cedb ceph_monc_got_map -EXPORT_SYMBOL net/ceph/libceph 0xed74bfc4 ceph_osdc_alloc_request -EXPORT_SYMBOL net/ceph/libceph 0xed9fb1f4 ceph_monc_validate_auth -EXPORT_SYMBOL net/ceph/libceph 0xede201dd ceph_monc_want_map +EXPORT_SYMBOL net/ceph/libceph 0xe1d46335 ceph_reset_client_addr +EXPORT_SYMBOL net/ceph/libceph 0xe32f87b6 osd_req_op_extent_dup_last +EXPORT_SYMBOL net/ceph/libceph 0xe591849f ceph_osdc_wait_request +EXPORT_SYMBOL net/ceph/libceph 0xe5d1011f osd_req_op_cls_request_data_bvecs +EXPORT_SYMBOL net/ceph/libceph 0xe6962e52 ceph_parse_param +EXPORT_SYMBOL net/ceph/libceph 0xe6deea57 ceph_msg_dump +EXPORT_SYMBOL net/ceph/libceph 0xe7e64e7e osd_req_op_extent_osd_data_bvec_pos +EXPORT_SYMBOL net/ceph/libceph 0xeb4a91c8 ceph_monc_open_session EXPORT_SYMBOL net/ceph/libceph 0xee120c03 ceph_release_string -EXPORT_SYMBOL net/ceph/libceph 0xeeba4e10 ceph_monc_do_statfs +EXPORT_SYMBOL net/ceph/libceph 0xee469e3b ceph_osdc_unwatch EXPORT_SYMBOL net/ceph/libceph 0xeef6cfa3 ceph_iterate_extents +EXPORT_SYMBOL net/ceph/libceph 0xf252003a ceph_msg_data_add_bio +EXPORT_SYMBOL net/ceph/libceph 0xf2c0b5b5 ceph_msg_data_add_bvecs EXPORT_SYMBOL net/ceph/libceph 0xf562aab7 ceph_pagelist_truncate -EXPORT_SYMBOL net/ceph/libceph 0xf99513f9 osd_req_op_xattr_init -EXPORT_SYMBOL net/ceph/libceph 0xfc037970 ceph_cls_lock_info -EXPORT_SYMBOL net/ceph/libceph 0xfc9e82d0 ceph_osdc_update_epoch_barrier -EXPORT_SYMBOL net/ceph/libceph 0xfd911336 osd_req_op_cls_init -EXPORT_SYMBOL net/dccp/dccp_ipv4 0x080c31ec dccp_syn_ack_timeout -EXPORT_SYMBOL net/dccp/dccp_ipv4 0xa6899bac dccp_req_err -EXPORT_SYMBOL net/hsr/hsr 0x127cd25b hsr_get_version -EXPORT_SYMBOL net/hsr/hsr 0xcbacd3f2 is_hsr_master -EXPORT_SYMBOL net/ieee802154/ieee802154 0x22578482 wpan_phy_for_each -EXPORT_SYMBOL net/ieee802154/ieee802154 0x7c06afb3 wpan_phy_new -EXPORT_SYMBOL net/ieee802154/ieee802154 0xd839afe8 wpan_phy_unregister -EXPORT_SYMBOL net/ieee802154/ieee802154 0xdd291282 wpan_phy_free -EXPORT_SYMBOL net/ieee802154/ieee802154 0xe244743c wpan_phy_register -EXPORT_SYMBOL net/ieee802154/ieee802154 0xfa3d760f wpan_phy_find -EXPORT_SYMBOL net/ipv4/fou 0x06e4b3f3 __gue_build_header +EXPORT_SYMBOL net/ceph/libceph 0xf5fdceec osd_req_op_xattr_init +EXPORT_SYMBOL net/ceph/libceph 0xf85c2ee5 ceph_con_open +EXPORT_SYMBOL net/ceph/libceph 0xf8ef017d osd_req_op_extent_osd_data_bio +EXPORT_SYMBOL net/ceph/libceph 0xfd658f8d ceph_monc_do_statfs +EXPORT_SYMBOL net/ceph/libceph 0xfe559238 __ceph_auth_get_authorizer +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x29f66ec4 dccp_syn_ack_timeout +EXPORT_SYMBOL net/dccp/dccp_ipv4 0xd69a117f dccp_req_err +EXPORT_SYMBOL net/hsr/hsr 0x41bb493e is_hsr_master +EXPORT_SYMBOL net/hsr/hsr 0xe1b7b0ea hsr_get_version +EXPORT_SYMBOL net/ieee802154/ieee802154 0x16c3e394 wpan_phy_new +EXPORT_SYMBOL net/ieee802154/ieee802154 0x2178981c wpan_phy_register +EXPORT_SYMBOL net/ieee802154/ieee802154 0x415ed717 wpan_phy_free +EXPORT_SYMBOL net/ieee802154/ieee802154 0x5ac1d524 wpan_phy_find +EXPORT_SYMBOL net/ieee802154/ieee802154 0x7e18824d wpan_phy_unregister +EXPORT_SYMBOL net/ieee802154/ieee802154 0x877d17db wpan_phy_for_each EXPORT_SYMBOL net/ipv4/fou 0x19741ae4 gue_encap_hlen -EXPORT_SYMBOL net/ipv4/fou 0x7efd7bbc __fou_build_header +EXPORT_SYMBOL net/ipv4/fou 0x70d99e41 __gue_build_header +EXPORT_SYMBOL net/ipv4/fou 0xc85a7c93 __fou_build_header EXPORT_SYMBOL net/ipv4/fou 0xff1adff3 fou_encap_hlen -EXPORT_SYMBOL net/ipv4/gre 0xb9036251 gre_parse_header -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x07eb98e9 ip_tunnel_get_iflink -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x261403d4 ip_tunnel_get_link_net -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x44ecbe9d ip_tunnel_encap_del_ops -EXPORT_SYMBOL net/ipv4/ip_tunnel 0xf8d76ae6 ip_tunnel_encap_add_ops -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x0bace267 arpt_register_table -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x7e2d4ed4 arpt_unregister_table_pre_exit -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xbec4d034 arpt_unregister_table -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xf6aaa521 arpt_do_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x452ba549 ipt_unregister_table_exit -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x578d1bda ipt_unregister_table_pre_exit -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x6a302ee2 ipt_register_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x78d4960e ipt_do_table -EXPORT_SYMBOL net/ipv4/tunnel4 0x6afc96da xfrm4_tunnel_deregister -EXPORT_SYMBOL net/ipv4/tunnel4 0x9a1e752f xfrm4_tunnel_register -EXPORT_SYMBOL net/ipv4/udp_tunnel 0x157e8540 udp_sock_create4 -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x0038423a ip6_tnl_get_cap -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x1cd17185 ip6_tnl_encap_add_ops -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x393585d3 ip6_tnl_xmit -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x70d952c9 ip6_tnl_change_mtu -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xb77a5021 ip6_tnl_parse_tlv_enc_lim -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xcb1da24c ip6_tnl_encap_del_ops -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xdc2d4eed ip6_tnl_rcv -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xdf3b4c7d ip6_tnl_get_iflink -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xe66fd7b1 ip6_tnl_get_link_net -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x5cbc17cd ip6t_register_table -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xb04af9ad ip6t_do_table -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xd00f0923 ip6t_unregister_table_exit -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xeff1e422 ip6t_unregister_table_pre_exit -EXPORT_SYMBOL net/ipv6/tunnel6 0x2b767c11 xfrm6_tunnel_deregister -EXPORT_SYMBOL net/ipv6/tunnel6 0x77f0bb2a xfrm6_tunnel_register -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x1957a0dc xfrm6_tunnel_alloc_spi -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x3325a1f0 xfrm6_tunnel_spi_lookup -EXPORT_SYMBOL net/lapb/lapb 0x6a3d61a1 lapb_data_received -EXPORT_SYMBOL net/lapb/lapb 0x8896d623 lapb_setparms -EXPORT_SYMBOL net/lapb/lapb 0x8ce5d891 lapb_connect_request -EXPORT_SYMBOL net/lapb/lapb 0xbedf898d lapb_disconnect_request -EXPORT_SYMBOL net/lapb/lapb 0xbf45df2a lapb_data_request -EXPORT_SYMBOL net/lapb/lapb 0xcac3a5e0 lapb_getparms -EXPORT_SYMBOL net/lapb/lapb 0xd6a9a5c8 lapb_register -EXPORT_SYMBOL net/lapb/lapb 0xfb2a7910 lapb_unregister -EXPORT_SYMBOL net/llc/llc 0x092329c6 llc_sap_find +EXPORT_SYMBOL net/ipv4/gre 0x8551f800 gre_parse_header +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x7f3100dd ip_tunnel_encap_add_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x908b7905 ip_tunnel_encap_del_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xd35ddab5 ip_tunnel_get_link_net +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xf67dfba7 ip_tunnel_get_iflink +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x3827c5c8 arpt_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x9c805ca9 arpt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xb55247cb arpt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xcfd217e2 arpt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x0f05d3ea ipt_unregister_table_exit +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x4db37598 ipt_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xc70cffe0 ipt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xdf9d8bf8 ipt_register_table +EXPORT_SYMBOL net/ipv4/tunnel4 0x456174db xfrm4_tunnel_register +EXPORT_SYMBOL net/ipv4/tunnel4 0x794979d7 xfrm4_tunnel_deregister +EXPORT_SYMBOL net/ipv4/udp_tunnel 0x7b35435a udp_sock_create4 +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x12a8e156 ip6_tnl_get_link_net +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x4530ab68 ip6_tnl_encap_add_ops +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x65198ce6 ip6_tnl_encap_del_ops +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x75f89f77 ip6_tnl_xmit +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x7a28344f ip6_tnl_get_cap +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x930c3b86 ip6_tnl_change_mtu +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xaf138a8f ip6_tnl_parse_tlv_enc_lim +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xc3511b89 ip6_tnl_rcv +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xf5e2bb62 ip6_tnl_get_iflink +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x08a5051d ip6t_do_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x0b87c9c5 ip6t_register_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xe36a207d ip6t_unregister_table_exit +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xfa8aece2 ip6t_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv6/tunnel6 0x9f713164 xfrm6_tunnel_deregister +EXPORT_SYMBOL net/ipv6/tunnel6 0xd5469104 xfrm6_tunnel_register +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x6c82acf4 xfrm6_tunnel_spi_lookup +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xdc1908e4 xfrm6_tunnel_alloc_spi +EXPORT_SYMBOL net/lapb/lapb 0x132a5fcb lapb_disconnect_request +EXPORT_SYMBOL net/lapb/lapb 0x2836e02c lapb_setparms +EXPORT_SYMBOL net/lapb/lapb 0x3fecb342 lapb_register +EXPORT_SYMBOL net/lapb/lapb 0x6ecf2739 lapb_data_received +EXPORT_SYMBOL net/lapb/lapb 0x9d63d940 lapb_data_request +EXPORT_SYMBOL net/lapb/lapb 0xaacd035d lapb_unregister +EXPORT_SYMBOL net/lapb/lapb 0xaf535249 lapb_getparms +EXPORT_SYMBOL net/lapb/lapb 0xe5441782 lapb_connect_request +EXPORT_SYMBOL net/llc/llc 0x0e523255 llc_sap_close EXPORT_SYMBOL net/llc/llc 0x38b92846 llc_remove_pack EXPORT_SYMBOL net/llc/llc 0x52d7b2fd llc_sap_list -EXPORT_SYMBOL net/llc/llc 0x69509552 llc_sap_open -EXPORT_SYMBOL net/llc/llc 0x7d30c405 llc_build_and_send_ui_pkt -EXPORT_SYMBOL net/llc/llc 0x8a4c2231 llc_add_pack -EXPORT_SYMBOL net/llc/llc 0x91028c38 llc_set_station_handler -EXPORT_SYMBOL net/llc/llc 0xed088889 llc_sap_close -EXPORT_SYMBOL net/llc/llc 0xee355d1f llc_mac_hdr_init -EXPORT_SYMBOL net/mac80211/mac80211 0x00ef44c3 ieee80211_tx_status_ext -EXPORT_SYMBOL net/mac80211/mac80211 0x04222358 ieee80211_schedule_txq -EXPORT_SYMBOL net/mac80211/mac80211 0x059b3bfa __ieee80211_get_rx_led_name +EXPORT_SYMBOL net/llc/llc 0x9ce8208c llc_set_station_handler +EXPORT_SYMBOL net/llc/llc 0xc045a5e0 llc_sap_open +EXPORT_SYMBOL net/llc/llc 0xc44882a4 llc_mac_hdr_init +EXPORT_SYMBOL net/llc/llc 0xcf38fc76 llc_sap_find +EXPORT_SYMBOL net/llc/llc 0xf0c6d1af llc_build_and_send_ui_pkt +EXPORT_SYMBOL net/llc/llc 0xf212d912 llc_add_pack +EXPORT_SYMBOL net/mac80211/mac80211 0x00eec4d2 ieee80211_stop_queue +EXPORT_SYMBOL net/mac80211/mac80211 0x028291a2 ieee80211_stop_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x0509dc87 ieee80211_beacon_loss +EXPORT_SYMBOL net/mac80211/mac80211 0x051aca56 ieee80211_nan_func_terminated EXPORT_SYMBOL net/mac80211/mac80211 0x063f5308 ieee80211_get_tkip_p1k_iv -EXPORT_SYMBOL net/mac80211/mac80211 0x0edd6dda ieee80211_get_tkip_p2k -EXPORT_SYMBOL net/mac80211/mac80211 0x125908bc ieee80211_rate_control_unregister -EXPORT_SYMBOL net/mac80211/mac80211 0x12a95a55 ieee80211_restart_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x146949ea ieee80211_sta_register_airtime +EXPORT_SYMBOL net/mac80211/mac80211 0x073ae228 __ieee80211_get_assoc_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x0a565531 ieee80211_tdls_oper_request +EXPORT_SYMBOL net/mac80211/mac80211 0x132a4e83 ieee80211_ctstoself_get +EXPORT_SYMBOL net/mac80211/mac80211 0x14033ef8 ieee80211_rate_control_unregister EXPORT_SYMBOL net/mac80211/mac80211 0x183dcd3b ieee80211_get_key_rx_seq +EXPORT_SYMBOL net/mac80211/mac80211 0x197277b6 ieee80211_generic_frame_duration EXPORT_SYMBOL net/mac80211/mac80211 0x19f37f0d ieee80211_update_p2p_noa EXPORT_SYMBOL net/mac80211/mac80211 0x1a66fc17 ieee80211_get_tkip_rx_p1k -EXPORT_SYMBOL net/mac80211/mac80211 0x1ad9944b ieee80211_free_txskb -EXPORT_SYMBOL net/mac80211/mac80211 0x1d8c5e67 ieee80211_beacon_update_cntdwn -EXPORT_SYMBOL net/mac80211/mac80211 0x1e4b5c98 ieee80211_sta_ps_transition -EXPORT_SYMBOL net/mac80211/mac80211 0x1eee94ee ieee80211_unregister_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x2a7b4fe8 ieee80211_ap_probereq_get -EXPORT_SYMBOL net/mac80211/mac80211 0x3480a304 ieee80211_probereq_get -EXPORT_SYMBOL net/mac80211/mac80211 0x36479c6d ieee80211_stop_queue -EXPORT_SYMBOL net/mac80211/mac80211 0x3bbd9f75 ieee80211_nullfunc_get -EXPORT_SYMBOL net/mac80211/mac80211 0x3c117b6f ieee80211_sta_pspoll -EXPORT_SYMBOL net/mac80211/mac80211 0x3e26fac0 ieee80211_stop_rx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0x3ede149d ieee80211_rx_ba_timer_expired -EXPORT_SYMBOL net/mac80211/mac80211 0x40f27264 ieee80211_get_unsol_bcast_probe_resp_tmpl -EXPORT_SYMBOL net/mac80211/mac80211 0x42999ae6 ieee80211_alloc_hw_nm -EXPORT_SYMBOL net/mac80211/mac80211 0x4479c276 ieee80211_txq_airtime_check -EXPORT_SYMBOL net/mac80211/mac80211 0x4ae15a66 ieee80211_cqm_beacon_loss_notify -EXPORT_SYMBOL net/mac80211/mac80211 0x4c2f96dc ieee80211_beacon_set_cntdwn -EXPORT_SYMBOL net/mac80211/mac80211 0x5157970a ieee80211_start_tx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0x533294d0 ieee80211_wake_queue -EXPORT_SYMBOL net/mac80211/mac80211 0x5aecdaa5 ieee80211_cqm_rssi_notify -EXPORT_SYMBOL net/mac80211/mac80211 0x5d6e7ddd ieee80211_return_txq -EXPORT_SYMBOL net/mac80211/mac80211 0x625cdc56 ieee80211_beacon_get_template -EXPORT_SYMBOL net/mac80211/mac80211 0x62b52811 ieee80211_pspoll_get -EXPORT_SYMBOL net/mac80211/mac80211 0x62bd6292 ieee80211_rx_list -EXPORT_SYMBOL net/mac80211/mac80211 0x640d0109 ieee80211_tx_status_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x6716e2dc ieee80211_tx_prepare_skb -EXPORT_SYMBOL net/mac80211/mac80211 0x68026618 ieee80211_rate_control_register -EXPORT_SYMBOL net/mac80211/mac80211 0x6b22c1a3 ieee80211_beacon_cntdwn_is_complete -EXPORT_SYMBOL net/mac80211/mac80211 0x6b6f32c1 ieee80211_get_fils_discovery_tmpl -EXPORT_SYMBOL net/mac80211/mac80211 0x6f2e590d ieee80211_unreserve_tid -EXPORT_SYMBOL net/mac80211/mac80211 0x71b75675 ieee80211_connection_loss -EXPORT_SYMBOL net/mac80211/mac80211 0x71ee6151 ieee80211_free_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x73239c4b ieee80211_tx_rate_update -EXPORT_SYMBOL net/mac80211/mac80211 0x75308667 ieee80211_wake_queues -EXPORT_SYMBOL net/mac80211/mac80211 0x76f547a6 ieee80211_iter_keys -EXPORT_SYMBOL net/mac80211/mac80211 0x808f34e7 ieee80211_queue_work -EXPORT_SYMBOL net/mac80211/mac80211 0x815aa118 ieee80211_stop_tx_ba_cb_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x87317b27 ieee80211_report_wowlan_wakeup -EXPORT_SYMBOL net/mac80211/mac80211 0x89251b3a ieee80211_beacon_get_tim -EXPORT_SYMBOL net/mac80211/mac80211 0x89b72d40 ieee80211_start_tx_ba_cb_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x8ad1daff ieee80211_nan_func_terminated -EXPORT_SYMBOL net/mac80211/mac80211 0x8ae87710 ieee80211_next_txq -EXPORT_SYMBOL net/mac80211/mac80211 0x8c70ad90 ieee80211_find_sta -EXPORT_SYMBOL net/mac80211/mac80211 0x92993a3b __ieee80211_get_tx_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x93c26a0b __ieee80211_create_tpt_led_trigger -EXPORT_SYMBOL net/mac80211/mac80211 0x93c27c12 ieee80211_queue_delayed_work -EXPORT_SYMBOL net/mac80211/mac80211 0x9454305f ieee80211_scan_completed -EXPORT_SYMBOL net/mac80211/mac80211 0x98003fdb ieee80211_iter_keys_rcu -EXPORT_SYMBOL net/mac80211/mac80211 0x98093a93 ieee80211_beacon_loss +EXPORT_SYMBOL net/mac80211/mac80211 0x1aae0f72 wiphy_to_ieee80211_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x1c68adf5 ieee80211_sta_block_awake +EXPORT_SYMBOL net/mac80211/mac80211 0x1cf0a0bb ieee80211_sched_scan_results +EXPORT_SYMBOL net/mac80211/mac80211 0x1fdd28ca ieee80211_rx_ba_timer_expired +EXPORT_SYMBOL net/mac80211/mac80211 0x21c0ca36 __ieee80211_get_radio_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x23be5c20 ieee80211_connection_loss +EXPORT_SYMBOL net/mac80211/mac80211 0x2785841b ieee80211_free_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x2a26cb9a ieee80211_tx_dequeue +EXPORT_SYMBOL net/mac80211/mac80211 0x2e74c24f ieee80211_beacon_update_cntdwn +EXPORT_SYMBOL net/mac80211/mac80211 0x3213dcb6 ieee80211_txq_schedule_start +EXPORT_SYMBOL net/mac80211/mac80211 0x33280410 ieee80211_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0x3514d4e7 ieee80211_wake_queue +EXPORT_SYMBOL net/mac80211/mac80211 0x360c35a6 ieee80211_beacon_get_template +EXPORT_SYMBOL net/mac80211/mac80211 0x386f954f ieee80211_beacon_cntdwn_is_complete +EXPORT_SYMBOL net/mac80211/mac80211 0x3aa686ba ieee80211_sta_uapsd_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0x419ce63a ieee80211_proberesp_get +EXPORT_SYMBOL net/mac80211/mac80211 0x439767f8 ieee80211_unregister_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x481cfc87 ieee80211_enable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0x4a18b6ab ieee80211_start_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x4c00bd36 __ieee80211_create_tpt_led_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0x4c8a10e6 ieee80211_alloc_hw_nm +EXPORT_SYMBOL net/mac80211/mac80211 0x4dcf6070 ieee80211_free_txskb +EXPORT_SYMBOL net/mac80211/mac80211 0x51b9966f ieee80211_wake_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x53133a47 ieee80211_chswitch_done +EXPORT_SYMBOL net/mac80211/mac80211 0x53a836f4 ieee80211_txq_get_depth +EXPORT_SYMBOL net/mac80211/mac80211 0x5833046d ieee80211_txq_may_transmit +EXPORT_SYMBOL net/mac80211/mac80211 0x5a639555 ieee80211_nullfunc_get +EXPORT_SYMBOL net/mac80211/mac80211 0x5f7f699d ieee80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/mac80211/mac80211 0x5fb5a295 ieee80211_report_low_ack +EXPORT_SYMBOL net/mac80211/mac80211 0x610d8866 rate_control_set_rates +EXPORT_SYMBOL net/mac80211/mac80211 0x61ed22d3 ieee80211_send_eosp_nullfunc +EXPORT_SYMBOL net/mac80211/mac80211 0x6205e501 ieee80211_mark_rx_ba_filtered_frames +EXPORT_SYMBOL net/mac80211/mac80211 0x6244c74a ieee80211_sta_eosp +EXPORT_SYMBOL net/mac80211/mac80211 0x64ca8b9e __ieee80211_get_tx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x66060022 ieee80211_txq_airtime_check +EXPORT_SYMBOL net/mac80211/mac80211 0x6696535d ieee80211_get_buffered_bc +EXPORT_SYMBOL net/mac80211/mac80211 0x6a7afb53 ieee80211_ctstoself_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x6cf6fac0 ieee80211_stop_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x6ddaa472 ieee80211_return_txq +EXPORT_SYMBOL net/mac80211/mac80211 0x71b3fcc9 ieee80211_stop_rx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x7454a2f5 ieee80211_iter_keys +EXPORT_SYMBOL net/mac80211/mac80211 0x7b184801 ieee80211_tx_status_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x7f8a90ac ieee80211_manage_rx_ba_offl +EXPORT_SYMBOL net/mac80211/mac80211 0x842cce2e ieee80211_beacon_set_cntdwn +EXPORT_SYMBOL net/mac80211/mac80211 0x84e5f02b ieee80211_rts_get +EXPORT_SYMBOL net/mac80211/mac80211 0x8d76ec10 __ieee80211_get_rx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x901e0503 ieee80211_sta_ps_transition +EXPORT_SYMBOL net/mac80211/mac80211 0x92e95019 ieee80211_send_bar +EXPORT_SYMBOL net/mac80211/mac80211 0x94b5dd21 ieee80211_sta_pspoll EXPORT_SYMBOL net/mac80211/mac80211 0x991a0ca0 ieee80211_parse_p2p_noa -EXPORT_SYMBOL net/mac80211/mac80211 0x996892d5 ieee80211_proberesp_get -EXPORT_SYMBOL net/mac80211/mac80211 0x9aa1905b ieee80211_csa_finish -EXPORT_SYMBOL net/mac80211/mac80211 0x9f9af535 ieee80211_chswitch_done -EXPORT_SYMBOL net/mac80211/mac80211 0xa3bd56d5 ieee80211_tx_dequeue -EXPORT_SYMBOL net/mac80211/mac80211 0xa4fb817f ieee80211_txq_schedule_start -EXPORT_SYMBOL net/mac80211/mac80211 0xa59aac11 ieee80211_rts_duration -EXPORT_SYMBOL net/mac80211/mac80211 0xa5cf26e7 ieee80211_generic_frame_duration -EXPORT_SYMBOL net/mac80211/mac80211 0xa700e036 ieee80211_stop_tx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0xac70ec56 ieee80211_send_bar -EXPORT_SYMBOL net/mac80211/mac80211 0xaee24b92 ieee80211_enable_rssi_reports -EXPORT_SYMBOL net/mac80211/mac80211 0xaf5551d5 ieee80211_manage_rx_ba_offl -EXPORT_SYMBOL net/mac80211/mac80211 0xb1ea9a7d ieee80211_sta_block_awake +EXPORT_SYMBOL net/mac80211/mac80211 0x9d145f56 ieee80211_tx_status +EXPORT_SYMBOL net/mac80211/mac80211 0xa0a68d62 ieee80211_report_wowlan_wakeup +EXPORT_SYMBOL net/mac80211/mac80211 0xa2b0771c ieee80211_rate_control_register +EXPORT_SYMBOL net/mac80211/mac80211 0xa31dc5d1 ieee80211_get_tkip_p2k +EXPORT_SYMBOL net/mac80211/mac80211 0xa4f5cd1a ieee80211_ap_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0xa5c99c62 ieee80211_rx_napi +EXPORT_SYMBOL net/mac80211/mac80211 0xb0acdb05 ieee80211_get_unsol_bcast_probe_resp_tmpl +EXPORT_SYMBOL net/mac80211/mac80211 0xb28f168d ieee80211_reserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0xb2f14815 ieee80211_rts_duration EXPORT_SYMBOL net/mac80211/mac80211 0xb36a08ca ieee80211_get_bssid -EXPORT_SYMBOL net/mac80211/mac80211 0xb615202d ieee80211_sched_scan_stopped -EXPORT_SYMBOL net/mac80211/mac80211 0xb89c8d1b ieee80211_sched_scan_results -EXPORT_SYMBOL net/mac80211/mac80211 0xbfd34f35 ieee80211_disconnect -EXPORT_SYMBOL net/mac80211/mac80211 0xc4b71f40 ieee80211_sta_uapsd_trigger -EXPORT_SYMBOL net/mac80211/mac80211 0xc88bd18f ieee80211_txq_may_transmit -EXPORT_SYMBOL net/mac80211/mac80211 0xcd4178cc ieee80211_send_eosp_nullfunc -EXPORT_SYMBOL net/mac80211/mac80211 0xd0d28c03 ieee80211_tx_status -EXPORT_SYMBOL net/mac80211/mac80211 0xd113369a wiphy_to_ieee80211_hw -EXPORT_SYMBOL net/mac80211/mac80211 0xd51030e5 ieee80211_stop_queues -EXPORT_SYMBOL net/mac80211/mac80211 0xdfbbd231 ieee80211_rx_napi -EXPORT_SYMBOL net/mac80211/mac80211 0xdfdf6484 ieee80211_sta_set_buffered -EXPORT_SYMBOL net/mac80211/mac80211 0xe36ca61c ieee80211_reserve_tid -EXPORT_SYMBOL net/mac80211/mac80211 0xe40d88e0 ieee80211_ctstoself_duration -EXPORT_SYMBOL net/mac80211/mac80211 0xe818d1af ieee80211_get_buffered_bc -EXPORT_SYMBOL net/mac80211/mac80211 0xe83bc45b ieee80211_rx_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0xe956e455 __ieee80211_get_radio_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0xe9d9991a ieee80211_mark_rx_ba_filtered_frames -EXPORT_SYMBOL net/mac80211/mac80211 0xeaed1209 ieee80211_radar_detected -EXPORT_SYMBOL net/mac80211/mac80211 0xeb84b275 ieee80211_register_hw -EXPORT_SYMBOL net/mac80211/mac80211 0xebce8d3c ieee80211_disable_rssi_reports -EXPORT_SYMBOL net/mac80211/mac80211 0xeeb3dcc8 ieee80211_report_low_ack -EXPORT_SYMBOL net/mac80211/mac80211 0xeebd5444 ieee80211_ctstoself_get -EXPORT_SYMBOL net/mac80211/mac80211 0xef1e1edf ieee80211_get_tx_rates -EXPORT_SYMBOL net/mac80211/mac80211 0xf26159fe ieee80211_nan_func_match -EXPORT_SYMBOL net/mac80211/mac80211 0xf26abbaf ieee80211_tx_status_8023 -EXPORT_SYMBOL net/mac80211/mac80211 0xf2b69a62 __ieee80211_get_assoc_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0xf2e2a8bd ieee80211_sta_eosp -EXPORT_SYMBOL net/mac80211/mac80211 0xf3f974aa ieee80211_rts_get -EXPORT_SYMBOL net/mac80211/mac80211 0xf58d2941 ieee80211_txq_get_depth -EXPORT_SYMBOL net/mac80211/mac80211 0xf6e76e5c ieee80211_queue_stopped -EXPORT_SYMBOL net/mac80211/mac80211 0xf8369f11 ieee80211_tdls_oper_request -EXPORT_SYMBOL net/mac80211/mac80211 0xfb563322 rate_control_set_rates -EXPORT_SYMBOL net/mac802154/mac802154 0x131b8ba5 ieee802154_register_hw -EXPORT_SYMBOL net/mac802154/mac802154 0x39f8a68e ieee802154_alloc_hw -EXPORT_SYMBOL net/mac802154/mac802154 0x92389c82 ieee802154_unregister_hw -EXPORT_SYMBOL net/mac802154/mac802154 0xb75db8d4 ieee802154_rx_irqsafe -EXPORT_SYMBOL net/mac802154/mac802154 0xd5306348 ieee802154_xmit_complete -EXPORT_SYMBOL net/mac802154/mac802154 0xdce46ae6 ieee802154_stop_queue -EXPORT_SYMBOL net/mac802154/mac802154 0xe8faf3b6 ieee802154_wake_queue -EXPORT_SYMBOL net/mac802154/mac802154 0xee5c3152 ieee802154_free_hw -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x08e5cce9 ip_vs_tcp_conn_listen -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x3e9a4864 unregister_ip_vs_app -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x4672e02b ip_vs_conn_put -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x4c15a6ef ip_vs_conn_out_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x4c3e7560 register_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x5f212e3b ip_vs_scheduler_err -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x8083f063 register_ip_vs_app_inc -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x8366b96f ip_vs_proto_data_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x95f0e02a ip_vs_conn_new -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xb5ffc854 ip_vs_conn_in_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xcf011932 unregister_ip_vs_scheduler +EXPORT_SYMBOL net/mac80211/mac80211 0xb38128be ieee80211_sta_register_airtime +EXPORT_SYMBOL net/mac80211/mac80211 0xb3d789a6 ieee80211_scan_completed +EXPORT_SYMBOL net/mac80211/mac80211 0xb9dca79c ieee80211_sta_set_buffered +EXPORT_SYMBOL net/mac80211/mac80211 0xbe5e8ba1 ieee80211_queue_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0xc13faf64 ieee80211_tx_status_ext +EXPORT_SYMBOL net/mac80211/mac80211 0xc4dea6bd ieee80211_register_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xc859a780 ieee80211_unreserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0xca3b6c57 ieee80211_csa_finish +EXPORT_SYMBOL net/mac80211/mac80211 0xcb21d2df ieee80211_nan_func_match +EXPORT_SYMBOL net/mac80211/mac80211 0xd3bc0eb5 ieee80211_schedule_txq +EXPORT_SYMBOL net/mac80211/mac80211 0xd44ec3c8 ieee80211_rx_list +EXPORT_SYMBOL net/mac80211/mac80211 0xd81f3eaa ieee80211_beacon_get_tim +EXPORT_SYMBOL net/mac80211/mac80211 0xdb0f4e4a ieee80211_stop_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xddd45e0a ieee80211_find_sta +EXPORT_SYMBOL net/mac80211/mac80211 0xde7d66fd ieee80211_cqm_rssi_notify +EXPORT_SYMBOL net/mac80211/mac80211 0xe021f108 ieee80211_tx_prepare_skb +EXPORT_SYMBOL net/mac80211/mac80211 0xe3c4a176 ieee80211_get_fils_discovery_tmpl +EXPORT_SYMBOL net/mac80211/mac80211 0xe62d46b7 ieee80211_tx_rate_update +EXPORT_SYMBOL net/mac80211/mac80211 0xe8844bee ieee80211_sched_scan_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0xe9bdb37d ieee80211_rx_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xeb2eb55e ieee80211_pspoll_get +EXPORT_SYMBOL net/mac80211/mac80211 0xedb79d5a ieee80211_iter_keys_rcu +EXPORT_SYMBOL net/mac80211/mac80211 0xf3a6a2e9 ieee80211_tx_status_8023 +EXPORT_SYMBOL net/mac80211/mac80211 0xf4fdcf10 ieee80211_radar_detected +EXPORT_SYMBOL net/mac80211/mac80211 0xf662b110 ieee80211_next_txq +EXPORT_SYMBOL net/mac80211/mac80211 0xf74e9ccf ieee80211_queue_work +EXPORT_SYMBOL net/mac80211/mac80211 0xfac462bc ieee80211_start_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xfda251e7 ieee80211_disconnect +EXPORT_SYMBOL net/mac80211/mac80211 0xfe13ba0f ieee80211_queue_delayed_work +EXPORT_SYMBOL net/mac80211/mac80211 0xfe90db28 ieee80211_disable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0xffb09cd2 ieee80211_restart_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xfffd3074 ieee80211_get_tx_rates +EXPORT_SYMBOL net/mac802154/mac802154 0x1bb6d51e ieee802154_unregister_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x61ab9214 ieee802154_alloc_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x6880979e ieee802154_wake_queue +EXPORT_SYMBOL net/mac802154/mac802154 0x69aac412 ieee802154_rx_irqsafe +EXPORT_SYMBOL net/mac802154/mac802154 0x6ab12096 ieee802154_register_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x6c5be2cf ieee802154_free_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xacae77c1 ieee802154_xmit_complete +EXPORT_SYMBOL net/mac802154/mac802154 0xeccd22e3 ieee802154_stop_queue +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x178bafac ip_vs_conn_put +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x5718339f ip_vs_nfct_expect_related +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x70f6055c ip_vs_scheduler_err +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x8a85c3df unregister_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x8eacaaa3 register_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x97425bb4 register_ip_vs_app_inc +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x9ad3f95a ip_vs_conn_out_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x9cc78b8f ip_vs_tcp_conn_listen +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xa50395f4 ip_vs_conn_in_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xb266deaa register_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xb6354352 ip_vs_conn_new +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xc24a59de ip_vs_new_conn_out EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xdc0ab177 ip_vs_nfct_expect_related -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xf7791a02 register_ip_vs_app -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xf96ea5b4 ip_vs_new_conn_out -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xfd808ae0 ip_vs_proto_get -EXPORT_SYMBOL net/netfilter/nf_conntrack 0x11cba2be nf_ct_ext_add +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd8b0a8a8 ip_vs_proto_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xf9f0bd01 unregister_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xfd3fe76a ip_vs_proto_data_get +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x3b08a8f0 nf_ct_destroy +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x67d23df0 nf_ct_ext_add EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0xf2a36612 pptp_msg_name -EXPORT_SYMBOL net/netfilter/nf_nat 0x1c188b4f nf_nat_setup_info -EXPORT_SYMBOL net/netfilter/nf_nat 0x502d4824 nf_nat_mangle_udp_packet -EXPORT_SYMBOL net/netfilter/nf_nat 0x67223a7b nf_nat_follow_master -EXPORT_SYMBOL net/netfilter/nf_nat 0xd39d7cff __nf_nat_mangle_tcp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0x2ceea64c __nf_nat_mangle_tcp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0xb7b43192 nf_nat_mangle_udp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0xd6b571e1 nf_nat_follow_master +EXPORT_SYMBOL net/netfilter/nf_nat 0xd876b3a9 nf_nat_setup_info EXPORT_SYMBOL net/netfilter/nft_fib 0xb3c36947 nft_fib_policy EXPORT_SYMBOL net/netfilter/x_tables 0x0d7f5fcd xt_alloc_entry_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0x21c5abf6 xt_unregister_targets -EXPORT_SYMBOL net/netfilter/x_tables 0x2ff15329 xt_register_matches +EXPORT_SYMBOL net/netfilter/x_tables 0x0e3e2138 xt_unregister_match +EXPORT_SYMBOL net/netfilter/x_tables 0x1e47f522 xt_unregister_target +EXPORT_SYMBOL net/netfilter/x_tables 0x3396d6cc xt_register_matches EXPORT_SYMBOL net/netfilter/x_tables 0x3bf9d084 xt_check_table_hooks +EXPORT_SYMBOL net/netfilter/x_tables 0x3e9ae0bd xt_register_match +EXPORT_SYMBOL net/netfilter/x_tables 0x46b794c5 xt_unregister_matches EXPORT_SYMBOL net/netfilter/x_tables 0x48012e28 xt_check_proc_name -EXPORT_SYMBOL net/netfilter/x_tables 0x64f58f45 xt_find_match -EXPORT_SYMBOL net/netfilter/x_tables 0x86d7abca xt_unregister_match -EXPORT_SYMBOL net/netfilter/x_tables 0x8eaa85f3 xt_find_table +EXPORT_SYMBOL net/netfilter/x_tables 0x7ad6f27c xt_find_match +EXPORT_SYMBOL net/netfilter/x_tables 0x83223013 xt_register_targets EXPORT_SYMBOL net/netfilter/x_tables 0x977fd4bf xt_alloc_table_info -EXPORT_SYMBOL net/netfilter/x_tables 0xa2e10d8e xt_register_target +EXPORT_SYMBOL net/netfilter/x_tables 0xb4d05bae xt_register_target EXPORT_SYMBOL net/netfilter/x_tables 0xcb3e91cc xt_counters_alloc -EXPORT_SYMBOL net/netfilter/x_tables 0xd1025475 xt_register_match -EXPORT_SYMBOL net/netfilter/x_tables 0xd623f21b xt_unregister_matches +EXPORT_SYMBOL net/netfilter/x_tables 0xd8637c56 xt_find_table 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 0xe9eb28d7 xt_register_targets -EXPORT_SYMBOL net/netfilter/x_tables 0xecbe07a1 xt_unregister_target +EXPORT_SYMBOL net/netfilter/x_tables 0xfa8ba9f5 xt_unregister_targets EXPORT_SYMBOL net/netfilter/x_tables 0xfef779fa xt_find_jump_offset -EXPORT_SYMBOL net/nfc/hci/hci 0x0e599e21 nfc_hci_set_clientdata -EXPORT_SYMBOL net/nfc/hci/hci 0x18a7505e nfc_hci_target_discovered -EXPORT_SYMBOL net/nfc/hci/hci 0x19fa5d6b nfc_hci_reset_pipes_per_host -EXPORT_SYMBOL net/nfc/hci/hci 0x1b13bd28 nfc_hci_register_device -EXPORT_SYMBOL net/nfc/hci/hci 0x210bcc6a nfc_hci_allocate_device -EXPORT_SYMBOL net/nfc/hci/hci 0x220a8e1c nfc_hci_send_cmd_async -EXPORT_SYMBOL net/nfc/hci/hci 0x46c91162 nfc_llc_start -EXPORT_SYMBOL net/nfc/hci/hci 0x5771fba1 nfc_hci_set_param -EXPORT_SYMBOL net/nfc/hci/hci 0x5afd4b41 nfc_hci_send_cmd -EXPORT_SYMBOL net/nfc/hci/hci 0x63bd87c9 nfc_hci_recv_frame -EXPORT_SYMBOL net/nfc/hci/hci 0x6ada0214 nfc_hci_reset_pipes -EXPORT_SYMBOL net/nfc/hci/hci 0x6d3d5391 nfc_hci_get_param -EXPORT_SYMBOL net/nfc/hci/hci 0x6f6966d1 nfc_hci_get_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0x050a6ed0 nfc_llc_start +EXPORT_SYMBOL net/nfc/hci/hci 0x1b907e9b nfc_hci_recv_frame +EXPORT_SYMBOL net/nfc/hci/hci 0x27abe3ad nfc_hci_send_event +EXPORT_SYMBOL net/nfc/hci/hci 0x31f36e3f nfc_hci_send_cmd_async +EXPORT_SYMBOL net/nfc/hci/hci 0x37fcd17b nfc_hci_get_param +EXPORT_SYMBOL net/nfc/hci/hci 0x442e61ab nfc_hci_disconnect_all_gates +EXPORT_SYMBOL net/nfc/hci/hci 0x4f02f684 nfc_llc_stop +EXPORT_SYMBOL net/nfc/hci/hci 0x61189381 nfc_hci_target_discovered EXPORT_SYMBOL net/nfc/hci/hci 0x74fe3670 nfc_hci_result_to_errno -EXPORT_SYMBOL net/nfc/hci/hci 0x8d8ea493 nfc_hci_disconnect_gate -EXPORT_SYMBOL net/nfc/hci/hci 0x9828d8fe nfc_hci_disconnect_all_gates -EXPORT_SYMBOL net/nfc/hci/hci 0xb44bd901 nfc_hci_free_device -EXPORT_SYMBOL net/nfc/hci/hci 0xbc0b38d6 nfc_hci_unregister_device -EXPORT_SYMBOL net/nfc/hci/hci 0xc41c9f89 nfc_hci_connect_gate -EXPORT_SYMBOL net/nfc/hci/hci 0xd41fb9e9 nfc_hci_driver_failure -EXPORT_SYMBOL net/nfc/hci/hci 0xd672ce4b nfc_llc_stop +EXPORT_SYMBOL net/nfc/hci/hci 0x7beb926a nfc_hci_set_param +EXPORT_SYMBOL net/nfc/hci/hci 0x93ef820a nfc_hci_free_device +EXPORT_SYMBOL net/nfc/hci/hci 0x94ba76d8 nfc_hci_reset_pipes_per_host +EXPORT_SYMBOL net/nfc/hci/hci 0x969ebf84 nfc_hci_allocate_device +EXPORT_SYMBOL net/nfc/hci/hci 0x9c0bb20b nfc_hci_register_device +EXPORT_SYMBOL net/nfc/hci/hci 0xba16cdff nfc_hci_driver_failure +EXPORT_SYMBOL net/nfc/hci/hci 0xbce4e854 nfc_hci_set_clientdata EXPORT_SYMBOL net/nfc/hci/hci 0xdd231c55 nfc_hci_sak_to_protocol -EXPORT_SYMBOL net/nfc/hci/hci 0xfd6afbf7 nfc_hci_send_event -EXPORT_SYMBOL net/nfc/nci/nci 0x0b0951c3 nci_hci_open_pipe -EXPORT_SYMBOL net/nfc/nci/nci 0x187a048b nci_set_config -EXPORT_SYMBOL net/nfc/nci/nci 0x1d4f323d nci_hci_get_param -EXPORT_SYMBOL net/nfc/nci/nci 0x1f338e87 nci_send_data -EXPORT_SYMBOL net/nfc/nci/nci 0x2dbd4c45 nci_nfcee_mode_set -EXPORT_SYMBOL net/nfc/nci/nci 0x2e5b090e nci_core_conn_close -EXPORT_SYMBOL net/nfc/nci/nci 0x360cfb64 nci_nfcee_discover -EXPORT_SYMBOL net/nfc/nci/nci 0x3657a9c3 nci_hci_send_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0x4018862e nci_prop_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0x422ab95f nci_register_device -EXPORT_SYMBOL net/nfc/nci/nci 0x44111987 nci_hci_dev_session_init -EXPORT_SYMBOL net/nfc/nci/nci 0x4d62f8b1 nci_send_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0x66290af0 nci_nfcc_loopback -EXPORT_SYMBOL net/nfc/nci/nci 0x67e82d6d nci_hci_connect_gate -EXPORT_SYMBOL net/nfc/nci/nci 0x69a9a6b8 nci_send_frame -EXPORT_SYMBOL net/nfc/nci/nci 0x6de74dc6 nci_recv_frame -EXPORT_SYMBOL net/nfc/nci/nci 0x70f49b38 nci_core_reset -EXPORT_SYMBOL net/nfc/nci/nci 0x7200892e nci_unregister_device -EXPORT_SYMBOL net/nfc/nci/nci 0x88e3c808 nci_allocate_device -EXPORT_SYMBOL net/nfc/nci/nci 0x8b0a1d72 nci_hci_clear_all_pipes -EXPORT_SYMBOL net/nfc/nci/nci 0x8bb4fd22 nci_hci_set_param -EXPORT_SYMBOL net/nfc/nci/nci 0xad163572 nci_get_conn_info_by_dest_type_params -EXPORT_SYMBOL net/nfc/nci/nci 0xaede4570 nci_hci_send_event -EXPORT_SYMBOL net/nfc/nci/nci 0xb9814c75 nci_core_cmd +EXPORT_SYMBOL net/nfc/hci/hci 0xe6aee80c nfc_hci_connect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0xf2cbf39d nfc_hci_reset_pipes +EXPORT_SYMBOL net/nfc/hci/hci 0xf5b0b941 nfc_hci_unregister_device +EXPORT_SYMBOL net/nfc/hci/hci 0xf63ab34c nfc_hci_get_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0xf65ae288 nfc_hci_disconnect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0xf6845a85 nfc_hci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x0c9f3831 nci_recv_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x10dbf038 nci_conn_max_data_pkt_payload_size +EXPORT_SYMBOL net/nfc/nci/nci 0x1137d8ec nci_free_device +EXPORT_SYMBOL net/nfc/nci/nci 0x1ac29482 nci_allocate_device +EXPORT_SYMBOL net/nfc/nci/nci 0x1fa3b6b8 nci_nfcee_discover +EXPORT_SYMBOL net/nfc/nci/nci 0x27cbb5d4 nci_core_reset +EXPORT_SYMBOL net/nfc/nci/nci 0x3624c7b2 nci_hci_get_param +EXPORT_SYMBOL net/nfc/nci/nci 0x3637946a nci_get_conn_info_by_dest_type_params +EXPORT_SYMBOL net/nfc/nci/nci 0x43ebde3b nci_core_init +EXPORT_SYMBOL net/nfc/nci/nci 0x46b81ec1 nci_register_device +EXPORT_SYMBOL net/nfc/nci/nci 0x49dc9764 nci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x4e43f6e0 nci_send_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x63b581f4 nci_hci_open_pipe +EXPORT_SYMBOL net/nfc/nci/nci 0x69d4f949 nci_send_data +EXPORT_SYMBOL net/nfc/nci/nci 0x6fd89590 nci_core_conn_create +EXPORT_SYMBOL net/nfc/nci/nci 0x88994dbb nci_req_complete +EXPORT_SYMBOL net/nfc/nci/nci 0x9497df92 nci_hci_dev_session_init +EXPORT_SYMBOL net/nfc/nci/nci 0x99dd6e5a nci_hci_send_event +EXPORT_SYMBOL net/nfc/nci/nci 0xaff81a9b nci_unregister_device +EXPORT_SYMBOL net/nfc/nci/nci 0xb0993019 nci_core_conn_close +EXPORT_SYMBOL net/nfc/nci/nci 0xb6ae79f3 nci_set_config EXPORT_SYMBOL net/nfc/nci/nci 0xba490602 nci_to_errno -EXPORT_SYMBOL net/nfc/nci/nci 0xbc197ac5 nci_free_device -EXPORT_SYMBOL net/nfc/nci/nci 0xbe30c588 nci_conn_max_data_pkt_payload_size -EXPORT_SYMBOL net/nfc/nci/nci 0xcd389a43 nci_core_init -EXPORT_SYMBOL net/nfc/nci/nci 0xcee20f70 nci_req_complete -EXPORT_SYMBOL net/nfc/nci/nci 0xe4719076 nci_core_conn_create -EXPORT_SYMBOL net/nfc/nfc 0x03db9d7d nfc_add_se -EXPORT_SYMBOL net/nfc/nfc 0x059c120d nfc_vendor_cmd_reply -EXPORT_SYMBOL net/nfc/nfc 0x065735a7 nfc_tm_deactivated -EXPORT_SYMBOL net/nfc/nfc 0x2afc8d81 nfc_class -EXPORT_SYMBOL net/nfc/nfc 0x341093ec nfc_alloc_recv_skb -EXPORT_SYMBOL net/nfc/nfc 0x44263a86 nfc_allocate_device -EXPORT_SYMBOL net/nfc/nfc 0x65fad19f nfc_targets_found -EXPORT_SYMBOL net/nfc/nfc 0x75a19b16 nfc_send_to_raw_sock -EXPORT_SYMBOL net/nfc/nfc 0x7cbec3aa nfc_get_local_general_bytes -EXPORT_SYMBOL net/nfc/nfc 0x87a7c45e __nfc_alloc_vendor_cmd_reply_skb -EXPORT_SYMBOL net/nfc/nfc 0x9177fed6 nfc_proto_register -EXPORT_SYMBOL net/nfc/nfc 0x93f53c94 nfc_remove_se -EXPORT_SYMBOL net/nfc/nfc 0x97cc15f5 nfc_target_lost -EXPORT_SYMBOL net/nfc/nfc 0x9a381284 nfc_se_transaction -EXPORT_SYMBOL net/nfc/nfc 0x9d3e99bb nfc_unregister_device -EXPORT_SYMBOL net/nfc/nfc 0xaa4d7436 nfc_register_device -EXPORT_SYMBOL net/nfc/nfc 0xb489143c nfc_tm_data_received -EXPORT_SYMBOL net/nfc/nfc 0xc7683d37 nfc_dep_link_is_up -EXPORT_SYMBOL net/nfc/nfc 0xc773fb76 nfc_find_se -EXPORT_SYMBOL net/nfc/nfc 0xd2b86091 nfc_se_connectivity -EXPORT_SYMBOL net/nfc/nfc 0xd5517cb7 nfc_proto_unregister -EXPORT_SYMBOL net/nfc/nfc 0xe1626e53 nfc_set_remote_general_bytes -EXPORT_SYMBOL net/nfc/nfc 0xf3183887 nfc_tm_activated -EXPORT_SYMBOL net/nfc/nfc 0xf5b589b7 nfc_fw_download_done -EXPORT_SYMBOL net/nfc/nfc 0xfe84e8ea nfc_driver_failure -EXPORT_SYMBOL net/nfc/nfc_digital 0x8de2a39a nfc_digital_unregister_device -EXPORT_SYMBOL net/nfc/nfc_digital 0x9a8d51ac nfc_digital_allocate_device -EXPORT_SYMBOL net/nfc/nfc_digital 0xb08fd2e3 nfc_digital_register_device -EXPORT_SYMBOL net/nfc/nfc_digital 0xf8116b34 nfc_digital_free_device -EXPORT_SYMBOL net/phonet/phonet 0x04603f16 pn_sock_get_port -EXPORT_SYMBOL net/phonet/phonet 0x06e36b47 phonet_stream_ops -EXPORT_SYMBOL net/phonet/phonet 0x3399b816 phonet_header_ops -EXPORT_SYMBOL net/phonet/phonet 0x4e728d5e phonet_proto_register -EXPORT_SYMBOL net/phonet/phonet 0x6224a875 pn_sock_hash -EXPORT_SYMBOL net/phonet/phonet 0x962049a9 phonet_proto_unregister -EXPORT_SYMBOL net/phonet/phonet 0xa1be0a90 pn_sock_unhash -EXPORT_SYMBOL net/phonet/phonet 0xee1bfcbd pn_skb_send -EXPORT_SYMBOL net/rxrpc/rxrpc 0x01a40f1f rxrpc_kernel_end_call -EXPORT_SYMBOL net/rxrpc/rxrpc 0x04c7e592 rxrpc_kernel_new_call_notification -EXPORT_SYMBOL net/rxrpc/rxrpc 0x065c1eb5 rxrpc_kernel_send_data -EXPORT_SYMBOL net/rxrpc/rxrpc 0x10638784 rxrpc_kernel_charge_accept -EXPORT_SYMBOL net/rxrpc/rxrpc 0x19768e49 rxrpc_kernel_get_reply_time -EXPORT_SYMBOL net/rxrpc/rxrpc 0x2616b4a4 rxrpc_kernel_get_peer -EXPORT_SYMBOL net/rxrpc/rxrpc 0x305b036e rxrpc_sock_set_min_security_level +EXPORT_SYMBOL net/nfc/nci/nci 0xbaa5b1a8 nci_hci_set_param +EXPORT_SYMBOL net/nfc/nci/nci 0xc2ec0608 nci_hci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xc8c7ab40 nci_core_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xc98e9470 nci_hci_clear_all_pipes +EXPORT_SYMBOL net/nfc/nci/nci 0xcd598a61 nci_nfcee_mode_set +EXPORT_SYMBOL net/nfc/nci/nci 0xe2a673a1 nci_hci_connect_gate +EXPORT_SYMBOL net/nfc/nci/nci 0xe318a93f nci_prop_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xf963b783 nci_nfcc_loopback +EXPORT_SYMBOL net/nfc/nfc 0x00a536f0 nfc_add_se +EXPORT_SYMBOL net/nfc/nfc 0x01dd9dbc nfc_remove_se +EXPORT_SYMBOL net/nfc/nfc 0x0b045481 nfc_driver_failure +EXPORT_SYMBOL net/nfc/nfc 0x2a857f82 nfc_tm_data_received +EXPORT_SYMBOL net/nfc/nfc 0x3bcb8271 nfc_tm_activated +EXPORT_SYMBOL net/nfc/nfc 0x442522ce nfc_set_remote_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0x469ffa2b nfc_se_connectivity +EXPORT_SYMBOL net/nfc/nfc 0x4c426ba1 nfc_allocate_device +EXPORT_SYMBOL net/nfc/nfc 0x56684e1d nfc_get_local_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0x5ee5d357 __nfc_alloc_vendor_cmd_reply_skb +EXPORT_SYMBOL net/nfc/nfc 0x60f4df6b nfc_register_device +EXPORT_SYMBOL net/nfc/nfc 0x75f3c114 nfc_targets_found +EXPORT_SYMBOL net/nfc/nfc 0x7aa0c5f2 nfc_tm_deactivated +EXPORT_SYMBOL net/nfc/nfc 0x80b34bd2 nfc_class +EXPORT_SYMBOL net/nfc/nfc 0x8838f2e9 nfc_dep_link_is_up +EXPORT_SYMBOL net/nfc/nfc 0xa463fd05 nfc_alloc_recv_skb +EXPORT_SYMBOL net/nfc/nfc 0xae0a0ee2 nfc_vendor_cmd_reply +EXPORT_SYMBOL net/nfc/nfc 0xb102c00c nfc_send_to_raw_sock +EXPORT_SYMBOL net/nfc/nfc 0xba7bc3be nfc_proto_register +EXPORT_SYMBOL net/nfc/nfc 0xbb5ab5af nfc_se_transaction +EXPORT_SYMBOL net/nfc/nfc 0xbb6b49d0 nfc_find_se +EXPORT_SYMBOL net/nfc/nfc 0xc66e2d87 nfc_unregister_device +EXPORT_SYMBOL net/nfc/nfc 0xcabbcc70 nfc_proto_unregister +EXPORT_SYMBOL net/nfc/nfc 0xf459108c nfc_target_lost +EXPORT_SYMBOL net/nfc/nfc 0xfd6073ae nfc_fw_download_done +EXPORT_SYMBOL net/nfc/nfc_digital 0x15d59042 nfc_digital_allocate_device +EXPORT_SYMBOL net/nfc/nfc_digital 0xbc6e3805 nfc_digital_free_device +EXPORT_SYMBOL net/nfc/nfc_digital 0xc534a67e nfc_digital_register_device +EXPORT_SYMBOL net/nfc/nfc_digital 0xe08a805f nfc_digital_unregister_device +EXPORT_SYMBOL net/phonet/phonet 0x3eb5de73 phonet_header_ops +EXPORT_SYMBOL net/phonet/phonet 0x3ffb97f3 pn_skb_send +EXPORT_SYMBOL net/phonet/phonet 0x4c26b8c4 phonet_proto_register +EXPORT_SYMBOL net/phonet/phonet 0x4ebc0a52 pn_sock_hash +EXPORT_SYMBOL net/phonet/phonet 0x93c60fc2 phonet_proto_unregister +EXPORT_SYMBOL net/phonet/phonet 0x9ae263bf pn_sock_get_port +EXPORT_SYMBOL net/phonet/phonet 0xbf8229d0 pn_sock_unhash +EXPORT_SYMBOL net/phonet/phonet 0xd6f73860 phonet_stream_ops +EXPORT_SYMBOL net/rxrpc/rxrpc 0x088d348b rxrpc_kernel_begin_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0x16062fdf rxrpc_kernel_set_tx_length +EXPORT_SYMBOL net/rxrpc/rxrpc 0x1fa821e6 rxrpc_kernel_check_life EXPORT_SYMBOL net/rxrpc/rxrpc 0x31bf3ca3 rxrpc_debug_id -EXPORT_SYMBOL net/rxrpc/rxrpc 0x3e7e5dd4 rxrpc_kernel_begin_call -EXPORT_SYMBOL net/rxrpc/rxrpc 0x44cf6fa6 key_type_rxrpc -EXPORT_SYMBOL net/rxrpc/rxrpc 0x74e7ebbf rxrpc_kernel_get_epoch -EXPORT_SYMBOL net/rxrpc/rxrpc 0x8363c76b rxrpc_kernel_check_life -EXPORT_SYMBOL net/rxrpc/rxrpc 0x8a45bb16 rxrpc_kernel_abort_call -EXPORT_SYMBOL net/rxrpc/rxrpc 0x8e9fde92 rxrpc_get_null_key -EXPORT_SYMBOL net/rxrpc/rxrpc 0x8fc91a74 rxrpc_kernel_recv_data -EXPORT_SYMBOL net/rxrpc/rxrpc 0x9ad962af rxrpc_kernel_set_max_life -EXPORT_SYMBOL net/rxrpc/rxrpc 0xa965679d rxrpc_kernel_get_srtt -EXPORT_SYMBOL net/rxrpc/rxrpc 0xc640c719 rxrpc_get_server_data_key -EXPORT_SYMBOL net/rxrpc/rxrpc 0xe1c580ef rxrpc_kernel_set_tx_length -EXPORT_SYMBOL net/sctp/sctp 0x2d2fbb4c sctp_do_peeloff -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x4c9739a3 gss_mech_put -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xf643c815 gss_pseudoflavor_to_service -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xf746b0e2 gss_mech_get -EXPORT_SYMBOL net/sunrpc/sunrpc 0x3e2e019b get_srcport -EXPORT_SYMBOL net/sunrpc/sunrpc 0x6532d4b0 svc_pool_stats_open -EXPORT_SYMBOL net/sunrpc/sunrpc 0x89d44f2d xdr_truncate_encode -EXPORT_SYMBOL net/sunrpc/sunrpc 0x8a12dd8d xdr_restrict_buflen -EXPORT_SYMBOL net/tipc/tipc 0x24501451 tipc_dump_done -EXPORT_SYMBOL net/tipc/tipc 0x4c8adfa4 tipc_sk_fill_sock_diag -EXPORT_SYMBOL net/tipc/tipc 0x90547139 tipc_nl_sk_walk -EXPORT_SYMBOL net/tipc/tipc 0xf2f808ba tipc_dump_start -EXPORT_SYMBOL net/tls/tls 0x257f752c tls_get_record -EXPORT_SYMBOL net/wireless/cfg80211 0x0245d5e5 __cfg80211_alloc_reply_skb -EXPORT_SYMBOL net/wireless/cfg80211 0x09f45390 cfg80211_rx_assoc_resp -EXPORT_SYMBOL net/wireless/cfg80211 0x10a85ed4 cfg80211_gtk_rekey_notify +EXPORT_SYMBOL net/rxrpc/rxrpc 0x31d809a0 key_type_rxrpc +EXPORT_SYMBOL net/rxrpc/rxrpc 0x420e428d rxrpc_kernel_new_call_notification +EXPORT_SYMBOL net/rxrpc/rxrpc 0x48b6e90c rxrpc_kernel_recv_data +EXPORT_SYMBOL net/rxrpc/rxrpc 0x4b7f2f1d rxrpc_sock_set_min_security_level +EXPORT_SYMBOL net/rxrpc/rxrpc 0x4f710559 rxrpc_kernel_get_epoch +EXPORT_SYMBOL net/rxrpc/rxrpc 0x6f9b3002 rxrpc_get_server_data_key +EXPORT_SYMBOL net/rxrpc/rxrpc 0x7b0218bc rxrpc_kernel_end_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0x7d83e013 rxrpc_kernel_abort_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0x7edb90b4 rxrpc_kernel_send_data +EXPORT_SYMBOL net/rxrpc/rxrpc 0x851dd68f rxrpc_kernel_set_max_life +EXPORT_SYMBOL net/rxrpc/rxrpc 0x88a2bfa9 rxrpc_kernel_get_srtt +EXPORT_SYMBOL net/rxrpc/rxrpc 0x8d065f20 rxrpc_kernel_get_reply_time +EXPORT_SYMBOL net/rxrpc/rxrpc 0xb99687a6 rxrpc_get_null_key +EXPORT_SYMBOL net/rxrpc/rxrpc 0xfa3e398b rxrpc_kernel_get_peer +EXPORT_SYMBOL net/rxrpc/rxrpc 0xfd3b3f13 rxrpc_kernel_charge_accept +EXPORT_SYMBOL net/sctp/sctp 0x9260871b sctp_do_peeloff +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x8d3deabf gss_mech_put +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x9d598b76 gss_pseudoflavor_to_service +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xfb1b96d5 gss_mech_get +EXPORT_SYMBOL net/sunrpc/sunrpc 0x1e966dd9 xdr_restrict_buflen +EXPORT_SYMBOL net/sunrpc/sunrpc 0xe6033970 xdr_truncate_encode +EXPORT_SYMBOL net/sunrpc/sunrpc 0xf79597d2 svc_pool_stats_open +EXPORT_SYMBOL net/sunrpc/sunrpc 0xfcaf1e08 get_srcport +EXPORT_SYMBOL net/tipc/tipc 0x1a7b49ee tipc_nl_sk_walk +EXPORT_SYMBOL net/tipc/tipc 0x266640bb tipc_sk_fill_sock_diag +EXPORT_SYMBOL net/tipc/tipc 0x4cf5f074 tipc_dump_done +EXPORT_SYMBOL net/tipc/tipc 0xceb4baf3 tipc_dump_start +EXPORT_SYMBOL net/tls/tls 0xbccb8c55 tls_get_record +EXPORT_SYMBOL net/wireless/cfg80211 0x03bee747 ieee80211_get_num_supported_channels +EXPORT_SYMBOL net/wireless/cfg80211 0x0425d0db cfg80211_external_auth_request +EXPORT_SYMBOL net/wireless/cfg80211 0x0803cc65 cfg80211_crit_proto_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0x0cb8e4be cfg80211_rx_unexpected_4addr_frame +EXPORT_SYMBOL net/wireless/cfg80211 0x0ff10071 cfg80211_put_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x102ed340 regulatory_set_wiphy_regd_sync +EXPORT_SYMBOL net/wireless/cfg80211 0x141a5801 cfg80211_send_layer2_update +EXPORT_SYMBOL net/wireless/cfg80211 0x143cee69 cfg80211_conn_failed EXPORT_SYMBOL net/wireless/cfg80211 0x15a37cf3 cfg80211_calculate_bitrate EXPORT_SYMBOL net/wireless/cfg80211 0x1879fcbd bridge_tunnel_header -EXPORT_SYMBOL net/wireless/cfg80211 0x18a329e2 cfg80211_auth_timeout -EXPORT_SYMBOL net/wireless/cfg80211 0x1c96802c regulatory_set_wiphy_regd_sync EXPORT_SYMBOL net/wireless/cfg80211 0x1ce2497f reg_query_regdb_wmm -EXPORT_SYMBOL net/wireless/cfg80211 0x20a39c06 cfg80211_tx_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0x20e070ed cfg80211_check_station_change -EXPORT_SYMBOL net/wireless/cfg80211 0x21a23ac2 __cfg80211_send_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x1ce66ad4 cfg80211_cqm_rssi_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x1d4d12b8 cfg80211_rx_unprot_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x1e1f55ad cfg80211_check_station_change +EXPORT_SYMBOL net/wireless/cfg80211 0x1e9bfa38 __cfg80211_alloc_reply_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x1ea3862a cfg80211_port_authorized EXPORT_SYMBOL net/wireless/cfg80211 0x2310adee ieee80211_bss_get_elem EXPORT_SYMBOL net/wireless/cfg80211 0x27efff25 ieee80211_s1g_channel_width -EXPORT_SYMBOL net/wireless/cfg80211 0x287b5101 cfg80211_send_layer2_update -EXPORT_SYMBOL net/wireless/cfg80211 0x28c832d2 regulatory_hint +EXPORT_SYMBOL net/wireless/cfg80211 0x28c8357a cfg80211_nan_func_terminated EXPORT_SYMBOL net/wireless/cfg80211 0x2a5d816f cfg80211_chandef_valid -EXPORT_SYMBOL net/wireless/cfg80211 0x2e8182b4 cfg80211_bss_iter -EXPORT_SYMBOL net/wireless/cfg80211 0x3083c9c6 cfg80211_cqm_beacon_loss_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x32f459ca cfg80211_inform_bss_frame_data -EXPORT_SYMBOL net/wireless/cfg80211 0x338c5f75 ieee80211_amsdu_to_8023s -EXPORT_SYMBOL net/wireless/cfg80211 0x373a3b27 cfg80211_cqm_txe_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x373a99f0 cfg80211_tx_mgmt_expired +EXPORT_SYMBOL net/wireless/cfg80211 0x32db46c1 cfg80211_ft_event +EXPORT_SYMBOL net/wireless/cfg80211 0x331507df cfg80211_ref_bss EXPORT_SYMBOL net/wireless/cfg80211 0x38cb594a ieee80211_ie_split_ric -EXPORT_SYMBOL net/wireless/cfg80211 0x39b4c778 cfg80211_report_wowlan_wakeup -EXPORT_SYMBOL net/wireless/cfg80211 0x3b73205b cfg80211_get_station -EXPORT_SYMBOL net/wireless/cfg80211 0x3c1eddfe cfg80211_chandef_usable -EXPORT_SYMBOL net/wireless/cfg80211 0x3ce40c30 cfg80211_ft_event +EXPORT_SYMBOL net/wireless/cfg80211 0x394b22ec cfg80211_disconnected +EXPORT_SYMBOL net/wireless/cfg80211 0x39f33d35 cfg80211_ready_on_channel EXPORT_SYMBOL net/wireless/cfg80211 0x3d8e5894 cfg80211_chandef_compatible -EXPORT_SYMBOL net/wireless/cfg80211 0x3fc9ad9d freq_reg_info -EXPORT_SYMBOL net/wireless/cfg80211 0x40df8e38 cfg80211_bss_flush +EXPORT_SYMBOL net/wireless/cfg80211 0x3ddb6985 cfg80211_ch_switch_started_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x3ed9b330 wiphy_apply_custom_regulatory +EXPORT_SYMBOL net/wireless/cfg80211 0x4103a63e cfg80211_bss_color_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x41ee8e10 cfg80211_cac_event EXPORT_SYMBOL net/wireless/cfg80211 0x43afadee ieee80211_radiotap_iterator_init -EXPORT_SYMBOL net/wireless/cfg80211 0x44a4962d cfg80211_connect_done -EXPORT_SYMBOL net/wireless/cfg80211 0x45d32b0e regulatory_set_wiphy_regd -EXPORT_SYMBOL net/wireless/cfg80211 0x47eb15ee wiphy_new_nm -EXPORT_SYMBOL net/wireless/cfg80211 0x48e836fb cfg80211_cac_event -EXPORT_SYMBOL net/wireless/cfg80211 0x4a76c73a cfg80211_ref_bss -EXPORT_SYMBOL net/wireless/cfg80211 0x532492e7 ieee80211_get_hdrlen_from_skb -EXPORT_SYMBOL net/wireless/cfg80211 0x5594245e cfg80211_external_auth_request -EXPORT_SYMBOL net/wireless/cfg80211 0x56fe0dab cfg80211_inform_bss_data -EXPORT_SYMBOL net/wireless/cfg80211 0x584c5896 ieee80211_get_num_supported_channels -EXPORT_SYMBOL net/wireless/cfg80211 0x585760c8 cfg80211_del_sta_sinfo -EXPORT_SYMBOL net/wireless/cfg80211 0x585c03b9 cfg80211_probe_status -EXPORT_SYMBOL net/wireless/cfg80211 0x59269691 cfg80211_sta_opmode_change_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x60597ffc cfg80211_conn_failed +EXPORT_SYMBOL net/wireless/cfg80211 0x477ed68e cfg80211_sta_opmode_change_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x47b4df05 cfg80211_reg_can_beacon_relax +EXPORT_SYMBOL net/wireless/cfg80211 0x488d97f4 ieee80211_data_to_8023_exthdr +EXPORT_SYMBOL net/wireless/cfg80211 0x4a4f6fef cfg80211_cqm_pktloss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x4b5e1ae9 cfg80211_get_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x57906379 cfg80211_rx_assoc_resp +EXPORT_SYMBOL net/wireless/cfg80211 0x58b433a3 cfg80211_tx_mgmt_expired +EXPORT_SYMBOL net/wireless/cfg80211 0x5acc1cc1 cfg80211_chandef_dfs_required +EXPORT_SYMBOL net/wireless/cfg80211 0x5c0a22e8 cfg80211_del_sta_sinfo +EXPORT_SYMBOL net/wireless/cfg80211 0x5d578fc3 wiphy_register +EXPORT_SYMBOL net/wireless/cfg80211 0x5d7890a8 cfg80211_iter_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0x5e64d78c cfg80211_report_obss_beacon_khz +EXPORT_SYMBOL net/wireless/cfg80211 0x5fa1274c __cfg80211_alloc_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x60e84241 cfg80211_sched_scan_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0x623d453a cfg80211_probe_status EXPORT_SYMBOL net/wireless/cfg80211 0x652aeedf ieee80211_mandatory_rates -EXPORT_SYMBOL net/wireless/cfg80211 0x69434a3a cfg80211_scan_done +EXPORT_SYMBOL net/wireless/cfg80211 0x667d180c cfg80211_update_owe_info_event +EXPORT_SYMBOL net/wireless/cfg80211 0x6923190c get_wiphy_regdom EXPORT_SYMBOL net/wireless/cfg80211 0x69b18f43 rfc1042_header -EXPORT_SYMBOL net/wireless/cfg80211 0x6a22f683 cfg80211_rx_control_port +EXPORT_SYMBOL net/wireless/cfg80211 0x69c5d210 cfg80211_mgmt_tx_status +EXPORT_SYMBOL net/wireless/cfg80211 0x6b3448c3 cfg80211_nan_match EXPORT_SYMBOL net/wireless/cfg80211 0x6bedf402 ieee80211_freq_khz_to_channel -EXPORT_SYMBOL net/wireless/cfg80211 0x6c924d2e __cfg80211_alloc_event_skb -EXPORT_SYMBOL net/wireless/cfg80211 0x6dd1d7c3 cfg80211_classify8021d -EXPORT_SYMBOL net/wireless/cfg80211 0x6e2df448 cfg80211_abandon_assoc -EXPORT_SYMBOL net/wireless/cfg80211 0x6f473c26 cfg80211_rx_unprot_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0x6fc56aa3 cfg80211_stop_iface -EXPORT_SYMBOL net/wireless/cfg80211 0x726ab4b6 cfg80211_remain_on_channel_expired -EXPORT_SYMBOL net/wireless/cfg80211 0x729894a1 cfg80211_sched_scan_stopped -EXPORT_SYMBOL net/wireless/cfg80211 0x75c9622d cfg80211_michael_mic_failure -EXPORT_SYMBOL net/wireless/cfg80211 0x770813e2 cfg80211_iftype_allowed -EXPORT_SYMBOL net/wireless/cfg80211 0x7862f8cd cfg80211_cqm_rssi_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x735e0c0f wiphy_rfkill_set_hw_state_reason +EXPORT_SYMBOL net/wireless/cfg80211 0x79153370 cfg80211_any_usable_channels EXPORT_SYMBOL net/wireless/cfg80211 0x79b82a71 cfg80211_find_vendor_elem -EXPORT_SYMBOL net/wireless/cfg80211 0x7a7203cf cfg80211_control_port_tx_status +EXPORT_SYMBOL net/wireless/cfg80211 0x7a311f3a cfg80211_control_port_tx_status EXPORT_SYMBOL net/wireless/cfg80211 0x7acb86ed ieee80211_radiotap_iterator_next -EXPORT_SYMBOL net/wireless/cfg80211 0x7b7d5cea cfg80211_sched_scan_results EXPORT_SYMBOL net/wireless/cfg80211 0x7c3ac925 ieee80211_get_vht_max_nss EXPORT_SYMBOL net/wireless/cfg80211 0x7ef39823 ieee80211_hdrlen -EXPORT_SYMBOL net/wireless/cfg80211 0x81018225 wiphy_read_of_freq_limits EXPORT_SYMBOL net/wireless/cfg80211 0x81874735 ieee80211_get_response_rate -EXPORT_SYMBOL net/wireless/cfg80211 0x8207e990 cfg80211_ibss_joined -EXPORT_SYMBOL net/wireless/cfg80211 0x8262b628 cfg80211_get_bss -EXPORT_SYMBOL net/wireless/cfg80211 0x84fc4ae7 wiphy_rfkill_start_polling +EXPORT_SYMBOL net/wireless/cfg80211 0x85ac45f0 cfg80211_tdls_oper_request EXPORT_SYMBOL net/wireless/cfg80211 0x8b24e88f cfg80211_merge_profile -EXPORT_SYMBOL net/wireless/cfg80211 0x8da394c3 cfg80211_ready_on_channel -EXPORT_SYMBOL net/wireless/cfg80211 0x8f095ea1 cfg80211_ch_switch_started_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x8bb5b896 cfg80211_sched_scan_results +EXPORT_SYMBOL net/wireless/cfg80211 0x8ceb6978 cfg80211_unregister_wdev +EXPORT_SYMBOL net/wireless/cfg80211 0x8f6f5656 cfg80211_iftype_allowed EXPORT_SYMBOL net/wireless/cfg80211 0x8fa02936 cfg80211_free_nan_func -EXPORT_SYMBOL net/wireless/cfg80211 0x91b3d106 cfg80211_iter_combinations -EXPORT_SYMBOL net/wireless/cfg80211 0x9337c192 cfg80211_rx_unexpected_4addr_frame -EXPORT_SYMBOL net/wireless/cfg80211 0x953bf83a cfg80211_bss_color_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x95935a44 cfg80211_disconnected -EXPORT_SYMBOL net/wireless/cfg80211 0x96619053 cfg80211_chandef_dfs_required -EXPORT_SYMBOL net/wireless/cfg80211 0x97da1b76 cfg80211_new_sta +EXPORT_SYMBOL net/wireless/cfg80211 0x905b6c37 cfg80211_check_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0x925369bd wiphy_new_nm +EXPORT_SYMBOL net/wireless/cfg80211 0x9374adf2 cfg80211_inform_bss_data +EXPORT_SYMBOL net/wireless/cfg80211 0x966e5c8a cfg80211_pmksa_candidate_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x9929c7d5 cfg80211_rx_control_port +EXPORT_SYMBOL net/wireless/cfg80211 0x9c69e1bc ieee80211_get_hdrlen_from_skb EXPORT_SYMBOL net/wireless/cfg80211 0x9d6cba30 cfg80211_find_elem_match -EXPORT_SYMBOL net/wireless/cfg80211 0xa02af858 cfg80211_nan_func_terminated -EXPORT_SYMBOL net/wireless/cfg80211 0xa0a4e80a cfg80211_roamed -EXPORT_SYMBOL net/wireless/cfg80211 0xa4e2c9b5 get_wiphy_regdom -EXPORT_SYMBOL net/wireless/cfg80211 0xa512c6cf ieee80211_get_channel_khz -EXPORT_SYMBOL net/wireless/cfg80211 0xa7549063 cfg80211_rx_spurious_frame -EXPORT_SYMBOL net/wireless/cfg80211 0xa9047c12 cfg80211_tdls_oper_request -EXPORT_SYMBOL net/wireless/cfg80211 0xab18dcf6 cfg80211_put_bss -EXPORT_SYMBOL net/wireless/cfg80211 0xac3636da cfg80211_notify_new_peer_candidate -EXPORT_SYMBOL net/wireless/cfg80211 0xac3aa4ea cfg80211_rx_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0xae8a29d0 cfg80211_register_netdevice -EXPORT_SYMBOL net/wireless/cfg80211 0xb04861c7 cfg80211_reg_can_beacon_relax -EXPORT_SYMBOL net/wireless/cfg80211 0xb5db1acf cfg80211_mgmt_tx_status -EXPORT_SYMBOL net/wireless/cfg80211 0xb6cd9240 cfg80211_rx_mgmt_khz -EXPORT_SYMBOL net/wireless/cfg80211 0xb6e71d64 wiphy_apply_custom_regulatory +EXPORT_SYMBOL net/wireless/cfg80211 0x9ece2c9e cfg80211_auth_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0x9f3a6a39 cfg80211_stop_iface +EXPORT_SYMBOL net/wireless/cfg80211 0x9f7af622 cfg80211_connect_done +EXPORT_SYMBOL net/wireless/cfg80211 0xa096a090 cfg80211_radar_event +EXPORT_SYMBOL net/wireless/cfg80211 0xa1285126 cfg80211_roamed +EXPORT_SYMBOL net/wireless/cfg80211 0xa2dd4d43 freq_reg_info +EXPORT_SYMBOL net/wireless/cfg80211 0xa8a77390 cfg80211_inform_bss_frame_data +EXPORT_SYMBOL net/wireless/cfg80211 0xaf13f77a cfg80211_tx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0xb0dde7de cfg80211_michael_mic_failure +EXPORT_SYMBOL net/wireless/cfg80211 0xb214adef regulatory_set_wiphy_regd +EXPORT_SYMBOL net/wireless/cfg80211 0xb5e8e5f9 cfg80211_chandef_usable +EXPORT_SYMBOL net/wireless/cfg80211 0xb61d9200 cfg80211_new_sta +EXPORT_SYMBOL net/wireless/cfg80211 0xb62c9ffd __cfg80211_send_event_skb EXPORT_SYMBOL net/wireless/cfg80211 0xb73aafb1 ieee80211_chandef_to_operating_class -EXPORT_SYMBOL net/wireless/cfg80211 0xbb4e9d92 ieee80211_data_to_8023_exthdr -EXPORT_SYMBOL net/wireless/cfg80211 0xc06dcdab wiphy_register -EXPORT_SYMBOL net/wireless/cfg80211 0xc1534163 cfg80211_ch_switch_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xba79cbf9 cfg80211_unlink_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xbc257e8a wiphy_rfkill_start_polling +EXPORT_SYMBOL net/wireless/cfg80211 0xbe2adefb cfg80211_classify8021d +EXPORT_SYMBOL net/wireless/cfg80211 0xc02d8bbb cfg80211_reg_can_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0xc0cf52bd cfg80211_assoc_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0xc19ba6cc wiphy_unregister EXPORT_SYMBOL net/wireless/cfg80211 0xc1b99792 ieee80211_channel_to_freq_khz -EXPORT_SYMBOL net/wireless/cfg80211 0xc2c676e4 cfg80211_nan_match -EXPORT_SYMBOL net/wireless/cfg80211 0xc5930a66 wiphy_rfkill_set_hw_state_reason EXPORT_SYMBOL net/wireless/cfg80211 0xc5dcacef ieee80211_operating_class_to_band -EXPORT_SYMBOL net/wireless/cfg80211 0xc858e4de cfg80211_cqm_pktloss_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xc9fc48d9 cfg80211_unregister_wdev -EXPORT_SYMBOL net/wireless/cfg80211 0xcb9a40eb cfg80211_report_obss_beacon_khz +EXPORT_SYMBOL net/wireless/cfg80211 0xc5f374d0 cfg80211_register_netdevice +EXPORT_SYMBOL net/wireless/cfg80211 0xc920f302 cfg80211_rx_mgmt_khz +EXPORT_SYMBOL net/wireless/cfg80211 0xcc08c09a cfg80211_scan_done EXPORT_SYMBOL net/wireless/cfg80211 0xcc1a7c48 cfg80211_is_element_inherited -EXPORT_SYMBOL net/wireless/cfg80211 0xd253cfb0 cfg80211_sched_scan_stopped_locked -EXPORT_SYMBOL net/wireless/cfg80211 0xd3458899 cfg80211_check_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0xd167f3b1 wiphy_read_of_freq_limits EXPORT_SYMBOL net/wireless/cfg80211 0xd56d55f3 ieee80211_get_mesh_hdrlen -EXPORT_SYMBOL net/wireless/cfg80211 0xda413076 cfg80211_pmksa_candidate_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xdb47cf7a cfg80211_unlink_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xd6033313 cfg80211_bss_flush +EXPORT_SYMBOL net/wireless/cfg80211 0xd8c470dc cfg80211_ibss_joined +EXPORT_SYMBOL net/wireless/cfg80211 0xd9b7fd4e cfg80211_rx_mlme_mgmt EXPORT_SYMBOL net/wireless/cfg80211 0xdba126c1 reg_initiator_name -EXPORT_SYMBOL net/wireless/cfg80211 0xdd6d1e37 cfg80211_assoc_timeout -EXPORT_SYMBOL net/wireless/cfg80211 0xe11069dc wiphy_unregister -EXPORT_SYMBOL net/wireless/cfg80211 0xe16eef4d regulatory_pre_cac_allowed -EXPORT_SYMBOL net/wireless/cfg80211 0xe371b38b wiphy_free -EXPORT_SYMBOL net/wireless/cfg80211 0xe72e6397 cfg80211_reg_can_beacon -EXPORT_SYMBOL net/wireless/cfg80211 0xea40f9d1 cfg80211_port_authorized -EXPORT_SYMBOL net/wireless/cfg80211 0xea776851 cfg80211_radar_event -EXPORT_SYMBOL net/wireless/cfg80211 0xeb33418b cfg80211_crit_proto_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0xe1430f73 ieee80211_amsdu_to_8023s +EXPORT_SYMBOL net/wireless/cfg80211 0xe2e01cf0 cfg80211_abandon_assoc +EXPORT_SYMBOL net/wireless/cfg80211 0xe3637a1a cfg80211_get_station +EXPORT_SYMBOL net/wireless/cfg80211 0xe5670536 cfg80211_rx_spurious_frame +EXPORT_SYMBOL net/wireless/cfg80211 0xe6705648 cfg80211_remain_on_channel_expired +EXPORT_SYMBOL net/wireless/cfg80211 0xe9cc1a70 cfg80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xea3728b1 cfg80211_gtk_rekey_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xee61be23 cfg80211_notify_new_peer_candidate EXPORT_SYMBOL net/wireless/cfg80211 0xef265f27 cfg80211_chandef_create +EXPORT_SYMBOL net/wireless/cfg80211 0xf250318d ieee80211_get_channel_khz +EXPORT_SYMBOL net/wireless/cfg80211 0xf2746562 regulatory_hint +EXPORT_SYMBOL net/wireless/cfg80211 0xf34c317b wiphy_free EXPORT_SYMBOL net/wireless/cfg80211 0xf558ad0f cfg80211_sinfo_alloc_tid_stats EXPORT_SYMBOL net/wireless/cfg80211 0xf5596d89 cfg80211_get_p2p_attr -EXPORT_SYMBOL net/wireless/cfg80211 0xf741f36f cfg80211_get_drvinfo -EXPORT_SYMBOL net/wireless/cfg80211 0xfd2d5756 cfg80211_update_owe_info_event -EXPORT_SYMBOL net/wireless/cfg80211 0xfec6b6d1 cfg80211_any_usable_channels -EXPORT_SYMBOL net/wireless/lib80211 0x032d5c39 lib80211_unregister_crypto_ops -EXPORT_SYMBOL net/wireless/lib80211 0x68db6ad0 lib80211_crypt_delayed_deinit -EXPORT_SYMBOL net/wireless/lib80211 0x970bc90e lib80211_crypt_info_init -EXPORT_SYMBOL net/wireless/lib80211 0x9f5c4bc5 lib80211_get_crypto_ops -EXPORT_SYMBOL net/wireless/lib80211 0x9faa89f5 lib80211_crypt_info_free -EXPORT_SYMBOL net/wireless/lib80211 0xabc8738b lib80211_register_crypto_ops -EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0x3ff4fbab snd_mixer_oss_ioctl_card -EXPORT_SYMBOL sound/core/seq/snd-seq 0x07c0875b snd_seq_create_kernel_client +EXPORT_SYMBOL net/wireless/cfg80211 0xf62064c1 cfg80211_cqm_txe_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xf71473cf cfg80211_sched_scan_stopped_locked +EXPORT_SYMBOL net/wireless/cfg80211 0xfa0bc3dc cfg80211_bss_iter +EXPORT_SYMBOL net/wireless/cfg80211 0xfb6ee5a6 regulatory_pre_cac_allowed +EXPORT_SYMBOL net/wireless/cfg80211 0xfd0b6cf6 cfg80211_get_drvinfo +EXPORT_SYMBOL net/wireless/cfg80211 0xfe04c1c9 cfg80211_ch_switch_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xffaf5c37 cfg80211_report_wowlan_wakeup +EXPORT_SYMBOL net/wireless/lib80211 0x0ff1ce88 lib80211_get_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x241ec49c lib80211_unregister_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x36b10f06 lib80211_crypt_info_init +EXPORT_SYMBOL net/wireless/lib80211 0x3d9b11df lib80211_crypt_delayed_deinit +EXPORT_SYMBOL net/wireless/lib80211 0x4a5e5a3c lib80211_register_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x94080c19 lib80211_crypt_info_free +EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0x77ae0905 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 0x2e3f6d05 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 0x33527f4a snd_seq_create_kernel_client +EXPORT_SYMBOL sound/core/seq/snd-seq 0x3af69a41 snd_seq_kernel_client_write_poll EXPORT_SYMBOL sound/core/seq/snd-seq 0x3fb4d161 snd_seq_kernel_client_dispatch +EXPORT_SYMBOL sound/core/seq/snd-seq 0x455d08e9 snd_seq_kernel_client_enqueue EXPORT_SYMBOL sound/core/seq/snd-seq 0x6bb71038 snd_seq_delete_kernel_client -EXPORT_SYMBOL sound/core/seq/snd-seq 0x6ebd793f snd_seq_kernel_client_enqueue 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 0x9471dd36 snd_seq_event_port_attach EXPORT_SYMBOL sound/core/seq/snd-seq 0xb8e448a0 snd_seq_set_queue_tempo -EXPORT_SYMBOL sound/core/seq/snd-seq 0xdac9fcb4 snd_seq_kernel_client_write_poll EXPORT_SYMBOL sound/core/seq/snd-seq 0xe934da1d snd_seq_dump_var_event EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x6ea09972 snd_midi_channel_alloc_set EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x833a3e07 snd_midi_channel_set_clear @@ -5678,5875 +5682,5879 @@ EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x4d5f7f98 snd_midi_event_free EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x56efbc6b snd_midi_event_reset_decode EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xdaf3383a snd_midi_event_new -EXPORT_SYMBOL sound/core/seq/snd-seq-virmidi 0xd8fb5fbf snd_virmidi_new -EXPORT_SYMBOL sound/core/snd-hwdep 0x642f3c55 snd_hwdep_new -EXPORT_SYMBOL sound/core/snd-rawmidi 0x0947076a snd_rawmidi_kernel_read -EXPORT_SYMBOL sound/core/snd-rawmidi 0x1be78a12 snd_rawmidi_receive -EXPORT_SYMBOL sound/core/snd-rawmidi 0x1d78144c snd_rawmidi_kernel_write -EXPORT_SYMBOL sound/core/snd-rawmidi 0x29716eb0 snd_rawmidi_drop_output -EXPORT_SYMBOL sound/core/snd-rawmidi 0x2d40f144 snd_rawmidi_info_select -EXPORT_SYMBOL sound/core/snd-rawmidi 0x33145d12 __snd_rawmidi_transmit_ack -EXPORT_SYMBOL sound/core/snd-rawmidi 0x53e50711 __snd_rawmidi_transmit_peek -EXPORT_SYMBOL sound/core/snd-rawmidi 0x5e0ffe3e snd_rawmidi_new -EXPORT_SYMBOL sound/core/snd-rawmidi 0x6c19d427 snd_rawmidi_kernel_release -EXPORT_SYMBOL sound/core/snd-rawmidi 0x6e9d80a0 snd_rawmidi_transmit_peek -EXPORT_SYMBOL sound/core/snd-rawmidi 0x6f0d38f2 snd_rawmidi_drain_output -EXPORT_SYMBOL sound/core/snd-rawmidi 0x7564f290 snd_rawmidi_output_params -EXPORT_SYMBOL sound/core/snd-rawmidi 0x78091ef0 snd_rawmidi_input_params -EXPORT_SYMBOL sound/core/snd-rawmidi 0xace58ccd snd_rawmidi_set_ops -EXPORT_SYMBOL sound/core/snd-rawmidi 0xbf49e75c snd_rawmidi_kernel_open -EXPORT_SYMBOL sound/core/snd-rawmidi 0xc5c77e92 snd_rawmidi_proceed -EXPORT_SYMBOL sound/core/snd-rawmidi 0xcabd2367 snd_rawmidi_transmit_ack -EXPORT_SYMBOL sound/core/snd-rawmidi 0xd1c60c7f snd_rawmidi_drain_input -EXPORT_SYMBOL sound/core/snd-rawmidi 0xd2ce2768 snd_rawmidi_transmit -EXPORT_SYMBOL sound/core/snd-rawmidi 0xfb173fb7 snd_rawmidi_transmit_empty +EXPORT_SYMBOL sound/core/seq/snd-seq-virmidi 0x88f7dbf3 snd_virmidi_new +EXPORT_SYMBOL sound/core/snd-hwdep 0x54955fe4 snd_hwdep_new +EXPORT_SYMBOL sound/core/snd-rawmidi 0x0c1d1ce6 snd_rawmidi_proceed +EXPORT_SYMBOL sound/core/snd-rawmidi 0x2a8738be __snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0x2d15f05e snd_rawmidi_set_ops +EXPORT_SYMBOL sound/core/snd-rawmidi 0x2e43aef7 snd_rawmidi_receive +EXPORT_SYMBOL sound/core/snd-rawmidi 0x35c20d96 snd_rawmidi_info_select +EXPORT_SYMBOL sound/core/snd-rawmidi 0x42975292 snd_rawmidi_kernel_release +EXPORT_SYMBOL sound/core/snd-rawmidi 0x551619a0 snd_rawmidi_drain_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0x5685cdc4 snd_rawmidi_kernel_open +EXPORT_SYMBOL sound/core/snd-rawmidi 0x595d7b2e snd_rawmidi_new +EXPORT_SYMBOL sound/core/snd-rawmidi 0x62ad77a3 snd_rawmidi_transmit_empty +EXPORT_SYMBOL sound/core/snd-rawmidi 0x62ae9422 __snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0x63783187 snd_rawmidi_transmit +EXPORT_SYMBOL sound/core/snd-rawmidi 0x683a0646 snd_rawmidi_kernel_read +EXPORT_SYMBOL sound/core/snd-rawmidi 0x726b2349 snd_rawmidi_input_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0x7eb3af94 snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0x8b9c557e snd_rawmidi_drain_input +EXPORT_SYMBOL sound/core/snd-rawmidi 0xb1a27a28 snd_rawmidi_output_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0xce3ab463 snd_rawmidi_drop_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0xcfd80879 snd_rawmidi_kernel_write +EXPORT_SYMBOL sound/core/snd-rawmidi 0xe6f70c77 snd_rawmidi_transmit_ack EXPORT_SYMBOL sound/core/snd-seq-device 0x091def1c snd_seq_autoload_exit -EXPORT_SYMBOL sound/core/snd-seq-device 0x2e7b8d76 snd_seq_device_new +EXPORT_SYMBOL sound/core/snd-seq-device 0x16f5bcb2 snd_seq_device_new EXPORT_SYMBOL sound/core/snd-seq-device 0x370a0736 snd_seq_autoload_init EXPORT_SYMBOL sound/core/snd-seq-device 0x6339b6d0 snd_seq_device_load_drivers -EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x01f6204c snd_mpu401_uart_new EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x6d629c59 snd_mpu401_uart_interrupt_tx EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0xc0fec227 snd_mpu401_uart_interrupt +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0xd3744ece snd_mpu401_uart_new EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x05060a19 snd_opl3_regmap -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x8e645021 snd_opl3_reset -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x92683fcf snd_opl3_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xa64528eb snd_opl3_create -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xab4b2e49 snd_opl3_find_patch -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xaef41fd4 snd_opl3_load_patch -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xb1e76d3d snd_opl3_hwdep_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xc8a331fb snd_opl3_timer_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xcd27b870 snd_opl3_init -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xec30172e snd_opl3_interrupt -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x07d5e5f1 snd_vx_create -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x0d0c3216 snd_vx_check_reg_bit +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x3c5a18a6 snd_opl3_reset +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x3c6e242c snd_opl3_interrupt +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x552387a0 snd_opl3_load_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x7516ba4f snd_opl3_timer_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x9d05041e snd_opl3_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xa98ee552 snd_opl3_hwdep_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xdd7d77a6 snd_opl3_init +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xf1b89a39 snd_opl3_create +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xf33845b5 snd_opl3_find_patch +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x034f4cb6 snd_vx_create EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x226138b0 snd_vx_threaded_irq_handler -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x34bb1e0c snd_vx_setup_firmware -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x38520e1d snd_vx_load_boot_image -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x4f353dfe snd_vx_dsp_boot -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x9d2177a3 snd_vx_free_firmware -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xc19b3d9f snd_vx_dsp_load -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xea6289a0 snd_vx_resume +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x40533a9d snd_vx_load_boot_image +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x8467c055 snd_vx_resume +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x9b5a7a55 snd_vx_dsp_load +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x9c3225b1 snd_vx_dsp_boot +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xa6d1da79 snd_vx_check_reg_bit +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xab3f596c snd_vx_setup_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xb502b70e snd_vx_suspend +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xd0ecd6f9 snd_vx_free_firmware EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf1f04d23 snd_vx_irq_handler -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf92ca9da snd_vx_suspend -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x170a2af5 fw_iso_resources_allocate -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x18690393 snd_fw_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x1187b7be avc_general_set_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x1b88aa81 fw_iso_resources_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x1bd9c693 cmp_connection_break EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x20254e45 amdtp_syt_intervals -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2c28c48d avc_general_get_sig_fmt -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2db8caaf fw_iso_resources_free -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x31f42320 cmp_connection_establish -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3d940fe9 cmp_connection_reserve -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x4f977d1f fcp_avc_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2e9a20d0 amdtp_stream_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x33f27edf cmp_connection_establish +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x347bcd56 amdtp_stream_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x4612c78e fw_iso_resources_free +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x4c43378c cmp_connection_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x4e060cc9 avc_general_get_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x4faa70d1 amdtp_stream_pcm_abort EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x53ca18e8 amdtp_rate_table -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x5d54ae7c cmp_connection_break -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x5d6a0d9b amdtp_stream_set_parameters -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x5f594f47 iso_packets_buffer_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x5fd1aafe cmp_connection_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x674155b8 amdtp_stream_update -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x6ab7cc44 cmp_connection_update -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7559a609 iso_packets_buffer_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7b223c10 amdtp_stream_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7bffad8c amdtp_stream_add_pcm_hw_constraints -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7f04079b fw_iso_resources_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x86ca026b fw_iso_resources_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x92df198f amdtp_stream_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x964a6518 cmp_connection_release -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa5078d85 cmp_connection_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xab37c9a8 cmp_connection_check_used -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xbe8b79de fcp_bus_reset -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xdc88427b amdtp_stream_get_max_payload -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xdee88a5c fw_iso_resources_update -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xebe84fff avc_general_set_sig_fmt -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xec40b3b2 amdtp_stream_pcm_abort -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xfb5ca633 avc_general_get_plug_info -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xff754e9b amdtp_stream_pcm_prepare -EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0xce82b68e snd_ak4113_resume -EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0xfa8ed22c snd_ak4113_suspend -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x0b6d6455 snd_ak4114_suspend -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x1da9786f snd_ak4114_create -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x4c76a8e2 snd_ak4114_check_rate_and_errors -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x6284d89c snd_ak4114_build -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x9e60ef29 snd_ak4114_reinit -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xa492ea51 snd_ak4114_external_rate -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xd71f4db4 snd_ak4114_resume -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xd9e054f4 snd_ak4114_reg_write -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x09badd95 snd_akm4xxx_init -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x5695f598 snd_akm4xxx_write -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xa0f81ece snd_akm4xxx_reset -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xa4624d8a snd_akm4xxx_build_controls -EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0xcd4d95a9 snd_pt2258_build_controls -EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0xfe61b9f6 snd_pt2258_reset -EXPORT_SYMBOL sound/i2c/snd-i2c 0x004af777 snd_i2c_sendbytes -EXPORT_SYMBOL sound/i2c/snd-i2c 0x32f9ba68 snd_i2c_device_free -EXPORT_SYMBOL sound/i2c/snd-i2c 0x38071ecf snd_i2c_readbytes -EXPORT_SYMBOL sound/i2c/snd-i2c 0x383ab9d8 snd_i2c_probeaddr -EXPORT_SYMBOL sound/i2c/snd-i2c 0x7f41dcd7 snd_i2c_bus_create -EXPORT_SYMBOL sound/i2c/snd-i2c 0x9d17236f snd_i2c_device_create -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x1e7ce002 snd_ac97_bus -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x2664a9b8 snd_ac97_write -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x32f4ca1d snd_ac97_pcm_double_rate_rules -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x3866a3f2 snd_ac97_pcm_open -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x4ec16e30 snd_ac97_mixer -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x75c56507 snd_ac97_tune_hardware -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x842b4ff3 snd_ac97_set_rate -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x90fb9f4f snd_ac97_write_cache -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x96415e6a snd_ac97_pcm_assign -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x9794a9fa snd_ac97_pcm_close -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x9eed029c snd_ac97_suspend -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xa00dd093 snd_ac97_update_bits -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xaee49a2d snd_ac97_get_short_name -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xd881d656 snd_ac97_read -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xdb4499b5 snd_ac97_update_power -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xde25979f snd_ac97_resume -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xe0937b3d snd_ac97_update -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x3c4f1be2 snd_ice1712_akm4xxx_build_controls -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x67872052 snd_ice1712_akm4xxx_free -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xe3f3f5c0 snd_ice1712_akm4xxx_init -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x01ac87d7 oxygen_write16 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x19c251f9 oxygen_write8 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x1be0b6f5 oxygen_pci_pm -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x2811b197 oxygen_read_ac97 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x32dee0d0 oxygen_write32 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x4b230669 oxygen_write_spi -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x4d429412 oxygen_pci_shutdown -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x63139fd2 oxygen_read8 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x64e76824 oxygen_write16_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x67ceaae2 oxygen_write_ac97_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x6ecbfa56 oxygen_pci_probe -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x80255859 oxygen_read16 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x8e502083 oxygen_write_uart -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x96735ef5 oxygen_update_dac_routing -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xa921104f oxygen_read32 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xb22da832 oxygen_write32_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xccc8a9ed oxygen_write_i2c -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xd1505e39 oxygen_write_ac97 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xdf1b3a6c oxygen_reset_uart -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xf3a4f523 oxygen_write8_masked +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x5aa98a7d fcp_avc_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x6fba5a0e amdtp_stream_get_max_payload +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x75f38611 cmp_connection_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7f11cbe2 iso_packets_buffer_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x8425b4f8 iso_packets_buffer_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x8a76efbf avc_general_get_plug_info +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x8ba50e41 snd_fw_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x8c73c511 amdtp_stream_set_parameters +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa94ee182 fw_iso_resources_allocate +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa9bb469f fw_iso_resources_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb004dd45 amdtp_stream_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb436c499 cmp_connection_check_used +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb9c7b24f cmp_connection_release +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xba1170d7 fcp_bus_reset +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc71148be cmp_connection_reserve +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe3bc2c36 amdtp_stream_pcm_prepare +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xed6e273b cmp_connection_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xef8e4530 amdtp_stream_add_pcm_hw_constraints +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xf3bbb547 fw_iso_resources_destroy +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x22ff5759 snd_ak4113_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0xdee78e92 snd_ak4113_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x1150279e snd_ak4114_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x3c817a69 snd_ak4114_check_rate_and_errors +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x44eeb703 snd_ak4114_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x63f99a56 snd_ak4114_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x97de81cf snd_ak4114_build +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xb93328f2 snd_ak4114_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xd382e450 snd_ak4114_reinit +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xdd8843e3 snd_ak4114_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xbcc12d89 snd_akm4xxx_build_controls +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xcef80716 snd_akm4xxx_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xeaa6fd75 snd_akm4xxx_reset +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xefe88398 snd_akm4xxx_init +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x19c147e4 snd_pt2258_reset +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x3a9a98ec snd_pt2258_build_controls +EXPORT_SYMBOL sound/i2c/snd-i2c 0x36041ab6 snd_i2c_sendbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0x3db56b19 snd_i2c_bus_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0x401761d3 snd_i2c_device_free +EXPORT_SYMBOL sound/i2c/snd-i2c 0x9c162f2b snd_i2c_readbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0xd608a163 snd_i2c_device_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0xde1664d2 snd_i2c_probeaddr +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x11fa80d0 snd_ac97_update +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x1dad162c snd_ac97_resume +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x3c782ceb snd_ac97_update_bits +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x41d77010 snd_ac97_pcm_double_rate_rules +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x69d86f29 snd_ac97_read +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x83dc85bd snd_ac97_pcm_assign +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x89496760 snd_ac97_get_short_name +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x9e852e6f snd_ac97_pcm_close +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xa8586e6a snd_ac97_bus +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xaa006f3d snd_ac97_tune_hardware +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xb4373079 snd_ac97_write +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xb68681c4 snd_ac97_pcm_open +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xcc9882a3 snd_ac97_write_cache +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xd481eca1 snd_ac97_set_rate +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xd575594f snd_ac97_suspend +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xe25e0680 snd_ac97_update_power +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xeb55d14e snd_ac97_mixer +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x72b23343 snd_ice1712_akm4xxx_init +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xa6c676c9 snd_ice1712_akm4xxx_build_controls +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xfbb99764 snd_ice1712_akm4xxx_free +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x011ff2d5 oxygen_write16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x06fd6431 oxygen_read_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x1aed889c oxygen_write_spi +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x1bd4953c oxygen_write_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x429a0403 oxygen_write32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x44dbc40b oxygen_read8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x461b6e3b oxygen_update_dac_routing +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x482be58f oxygen_reset_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x612f7012 oxygen_pci_shutdown +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x6a1dbb9d oxygen_write_i2c +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x9179ddb0 oxygen_write32_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x920eef41 oxygen_write16_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x9796a9fc oxygen_write8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xa137d918 oxygen_pci_probe +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xa405bcf7 oxygen_read16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xb8038b8d oxygen_write_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xd4e3ccd2 oxygen_write_ac97_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xd5f07fc5 oxygen_read32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xdbc51bc0 oxygen_write8_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xe2769e58 oxygen_pci_pm EXPORT_SYMBOL sound/soc/amd/acp_audio_dma 0xea74f232 bt_uart_enable -EXPORT_SYMBOL sound/soc/codecs/snd-soc-adau1372 0x7ba0cbbf adau1372_probe -EXPORT_SYMBOL sound/soc/codecs/snd-soc-lpass-wsa-macro 0x591a41b2 wsa_macro_set_spkr_mode -EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0x1e178883 pcm3060_probe -EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0x69b31ae8 pcm3060_regmap +EXPORT_SYMBOL sound/soc/codecs/snd-soc-adau1372 0xf9794e88 adau1372_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-lpass-wsa-macro 0xf03b4607 wsa_macro_set_spkr_mode +EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0x11dba0a5 pcm3060_regmap +EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0x8c007f44 pcm3060_probe EXPORT_SYMBOL sound/soc/codecs/snd-soc-rt715 0xed2acb24 hda_to_sdw -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0xbd2893a5 tlv320aic23_regmap -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0xe55ce8a7 tlv320aic23_probe -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x63e27526 aic32x4_probe -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0xeb899284 aic32x4_regmap_config -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0xf155d7a5 aic32x4_remove -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic3x 0x3153bba6 aic3x_remove -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic3x 0x5aa063de aic3x_probe -EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x2a744825 wcd_dt_parse_mbhc_data +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x882097ed tlv320aic23_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0xef657022 tlv320aic23_regmap +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x2f14eba1 aic32x4_regmap_config +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x9ee30855 aic32x4_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0xd10ee5c0 aic32x4_remove +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic3x 0x5b28001b aic3x_remove +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic3x 0x6a3608cb aic3x_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x1a140df3 wcd_mbhc_start +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x1b23e44d 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 0x789ebe56 wcd_mbhc_set_hph_type -EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x8cdbd830 wcd_mbhc_start EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0xa5758a49 wcd_mbhc_get_hph_type -EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0xad28d8cc wcd_mbhc_init +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0xad0f7db0 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/mediatek/mt8192/snd-soc-mt8192-afe 0x4e2e993f mt8192_afe_gpio_request -EXPORT_SYMBOL sound/soc/mediatek/mt8192/snd-soc-mt8192-afe 0x516ebb81 mt8192_afe_gpio_init -EXPORT_SYMBOL sound/soc/qcom/qdsp6/q6afe 0x2ead7b49 q6afe_unvote_lpass_core_hw -EXPORT_SYMBOL sound/soc/qcom/qdsp6/q6afe 0x7cca65e8 q6afe_vote_lpass_core_hw -EXPORT_SYMBOL sound/soc/qcom/snd-soc-qcom-common 0x5c4baf85 qcom_snd_parse_of -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x05c23196 sof_mailbox_read -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x08a65e55 sof_io_read64 -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x0ed50d3d snd_sof_dsp_panic -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x1011525a snd_sof_ipc_reply -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x180a8168 snd_sof_dsp_update_bits64_unlocked -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x24728b6d snd_sof_release_trace -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x2512bd05 snd_sof_load_firmware -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x2533defd sof_io_read -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x2711ae0e sof_mailbox_write -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x28cfd6f4 snd_sof_ipc_set_get_comp_data -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x2a0100cb snd_sof_run_firmware -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x2cbfac49 snd_sof_suspend -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x32e1b916 sof_io_write64 -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x440f1864 snd_sof_pci_update_bits -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x45b763d8 snd_sof_parse_module_memcpy -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x4c18044d sof_block_read -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x50cc72d6 snd_sof_resume -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x530d1cbe snd_sof_runtime_resume -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x6632c487 sof_block_write -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x689b03cc snd_sof_dsp_mailbox_init -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x6dabb52e snd_sof_device_shutdown -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x6de34518 snd_sof_fw_unload -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x6fd5844d snd_sof_runtime_suspend -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x733b1f2f sof_machine_check -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x776caaab snd_sof_device_remove -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x7faba236 sof_fw_ready -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x81f568c6 snd_sof_ipc_init -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x85b8799a snd_sof_dsp_only_d0i3_compatible_stream_active -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x866c8230 sof_dai_get_bclk -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x8c93cab5 snd_sof_load_firmware_memcpy -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x9498b932 snd_sof_ipc_stream_posn -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x973908a7 snd_sof_runtime_idle -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa380cc22 snd_sof_ipc_free -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa80c2d45 snd_sof_ipc_msgs_rx -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa98b169a sof_io_write +EXPORT_SYMBOL sound/soc/mediatek/mt8192/snd-soc-mt8192-afe 0x73700448 mt8192_afe_gpio_init +EXPORT_SYMBOL sound/soc/mediatek/mt8192/snd-soc-mt8192-afe 0x91ab0c80 mt8192_afe_gpio_request +EXPORT_SYMBOL sound/soc/qcom/qdsp6/q6afe 0x31585ef7 q6afe_unvote_lpass_core_hw +EXPORT_SYMBOL sound/soc/qcom/qdsp6/q6afe 0x8b1e60d4 q6afe_vote_lpass_core_hw +EXPORT_SYMBOL sound/soc/qcom/snd-soc-qcom-common 0x56992dd9 qcom_snd_parse_of +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x01ecfa12 snd_sof_load_firmware_memcpy +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x03e6ea66 snd_sof_get_status +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x048737f3 snd_sof_dsp_only_d0i3_compatible_stream_active +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x0677c5a8 snd_sof_ipc_init +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x0da3195a snd_sof_device_shutdown +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x17ff7ff8 snd_sof_device_probe_completed +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x1d71c7d8 sof_dai_get_mclk +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x206b236d snd_sof_suspend +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x22e7bffe sof_block_read +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x24f9f85f snd_sof_parse_module_memcpy +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x260b1a74 snd_sof_ipc_free +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x39d90859 snd_sof_load_topology +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x43faab82 snd_sof_ipc_valid +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x4488366c snd_sof_dsp_update_bits64 +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x454504c8 snd_sof_load_firmware +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x4732fdf1 snd_sof_device_remove +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x493b0216 snd_sof_ipc_stream_posn +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x4b7b7d65 snd_sof_dsp_panic +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x4c3acd92 snd_sof_pcm_period_elapsed +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x4e59cc04 sof_mailbox_read +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x5484f1a0 snd_sof_pci_update_bits +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x5b7e1b1f snd_sof_ipc_reply +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x612332a7 snd_sof_init_trace +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x639fe8b3 sof_machine_check +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x64c2b2c6 sof_block_write +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x6875f7f3 snd_sof_trace_notify_for_error +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x69e23011 snd_sof_load_firmware_raw +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x7709de12 sof_io_read64 +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x770fb6fc snd_sof_runtime_suspend +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x78965452 snd_sof_fw_parse_ext_data +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x78b2fc18 sof_pcm_dai_link_fixup +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x80a1de33 sof_machine_unregister +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x80b0290a snd_sof_create_page_table +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x8bfe0ea6 snd_sof_fw_unload +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x8de59511 snd_sof_complete +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x8de6e61e snd_sof_ipc_set_get_comp_data +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x9b2d9152 sof_io_write +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x9b3bcdc5 snd_sof_dsp_mailbox_init +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x9df1b963 sof_fw_ready +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa3acedd3 snd_sof_ipc_msgs_rx +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa88fc532 snd_sof_dsp_update_bits +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xab19c4f7 snd_sof_prepare EXPORT_SYMBOL sound/soc/sof/snd-sof 0xad055b2c sof_ipc_tx_message -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb4fa4e92 snd_sof_create_page_table -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc05e300b snd_sof_dsp_update_bits_unlocked -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc12ca92d sof_machine_register -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc1477a1f snd_sof_dsp_update_bits -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc1f445ef snd_sof_dsp_update_bits64 -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xcd369190 snd_sof_fw_parse_ext_data -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd3d6c1b4 snd_sof_pcm_period_elapsed -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd4745155 snd_sof_get_status -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd5ddd7f1 snd_sof_device_probe_completed -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd70f7348 snd_sof_trace_notify_for_error +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xad2fb35c snd_sof_free_trace +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb5d3ebd6 snd_sof_dsp_update_bits_unlocked +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xbbc544ea sof_machine_register +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xbc1061ab sof_mailbox_write +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc5ec1008 snd_sof_runtime_resume +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc730d03c snd_sof_runtime_idle +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc9cca47c snd_sof_resume +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd47f4b31 snd_sof_dsp_update_bits_forced +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd6680357 sof_io_write64 EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd927eca8 sof_ipc_tx_message_no_pm -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd9cb8be4 snd_sof_dsp_update_bits_forced -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xda90069e sof_dai_get_mclk -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xe126f495 sof_machine_unregister -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xe36d4037 snd_sof_load_firmware_raw -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xe505cc57 snd_sof_device_probe -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xe5395537 snd_sof_ipc_valid -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xe61fb949 snd_sof_free_trace -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xe712b248 snd_sof_load_topology -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf0a17b91 snd_sof_complete -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf1a8d94b snd_sof_prepare -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf1bb722d snd_sof_handle_fw_exception -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xfd62f615 sof_pcm_dai_link_fixup -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xffead857 snd_sof_init_trace +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd954e1f9 snd_sof_dsp_update_bits64_unlocked +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xdc789651 snd_sof_handle_fw_exception +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xe37a92da snd_sof_device_probe +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf16df92b snd_sof_run_firmware +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf70c6985 snd_sof_release_trace +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xfefdad24 sof_dai_get_bclk +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xffdcef19 sof_io_read EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x16756dc0 snd_usbmidi_input_start -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x48bb7365 __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 0x00082369 inet_sendpage +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xf9069950 __snd_usbmidi_create +EXPORT_SYMBOL vmlinux 0x0001293e mipi_dsi_host_register EXPORT_SYMBOL vmlinux 0x001ee95a imx_ssi_fiq_base -EXPORT_SYMBOL vmlinux 0x003cc222 is_subdir +EXPORT_SYMBOL vmlinux 0x001f7f5b neigh_seq_start +EXPORT_SYMBOL vmlinux 0x0021a45c dentry_path_raw +EXPORT_SYMBOL vmlinux 0x003140f8 snd_pcm_set_managed_buffer EXPORT_SYMBOL vmlinux 0x003d3eb6 security_binder_set_context_mgr -EXPORT_SYMBOL vmlinux 0x006cd6c1 __devm_mdiobus_register -EXPORT_SYMBOL vmlinux 0x006ea635 unregister_netdevice_notifier_net -EXPORT_SYMBOL vmlinux 0x0072d805 __set_page_dirty_no_writeback -EXPORT_SYMBOL vmlinux 0x008334b9 snd_ctl_add -EXPORT_SYMBOL vmlinux 0x00a30dc1 __ip4_datagram_connect -EXPORT_SYMBOL vmlinux 0x00ac1c93 dev_get_by_name +EXPORT_SYMBOL vmlinux 0x00516c37 pci_unmap_rom +EXPORT_SYMBOL vmlinux 0x0058095a __dquot_free_space +EXPORT_SYMBOL vmlinux 0x006f5cc4 tty_flip_buffer_push +EXPORT_SYMBOL vmlinux 0x00718f56 security_skb_classify_flow +EXPORT_SYMBOL vmlinux 0x00b040f4 xfrm_unregister_type EXPORT_SYMBOL vmlinux 0x00b4e615 posix_acl_equiv_mode -EXPORT_SYMBOL vmlinux 0x00c8e0c7 grab_cache_page_write_begin -EXPORT_SYMBOL vmlinux 0x00d15a2b md_update_sb +EXPORT_SYMBOL vmlinux 0x00bf18b0 netlink_broadcast +EXPORT_SYMBOL vmlinux 0x00d0c839 fscrypt_decrypt_block_inplace EXPORT_SYMBOL vmlinux 0x00d7e722 vme_lm_count -EXPORT_SYMBOL vmlinux 0x00e0504b dev_set_threaded -EXPORT_SYMBOL vmlinux 0x00e6cb69 drop_super_exclusive +EXPORT_SYMBOL vmlinux 0x00ea12d8 __traceiter_module_get EXPORT_SYMBOL vmlinux 0x01000e51 schedule -EXPORT_SYMBOL vmlinux 0x010666fc rawnand_sw_hamming_cleanup -EXPORT_SYMBOL vmlinux 0x010b1f92 snd_jack_add_new_kctl +EXPORT_SYMBOL vmlinux 0x0102c13c nobh_writepage EXPORT_SYMBOL vmlinux 0x01139ffc max_mapnr +EXPORT_SYMBOL vmlinux 0x011a112b call_netdevice_notifiers EXPORT_SYMBOL vmlinux 0x011a9e53 elf_hwcap2 -EXPORT_SYMBOL vmlinux 0x012436cb page_mapped +EXPORT_SYMBOL vmlinux 0x011c3497 tty_hangup +EXPORT_SYMBOL vmlinux 0x011d660e unregister_netdev +EXPORT_SYMBOL vmlinux 0x0126e49b set_page_dirty EXPORT_SYMBOL vmlinux 0x0129c4f8 par_io_data_set -EXPORT_SYMBOL vmlinux 0x013459e5 padata_set_cpumask -EXPORT_SYMBOL vmlinux 0x013c7646 pcie_capability_clear_and_set_word -EXPORT_SYMBOL vmlinux 0x013e8dc4 genphy_handle_interrupt_no_ack -EXPORT_SYMBOL vmlinux 0x01445447 alloc_anon_inode -EXPORT_SYMBOL vmlinux 0x014f5e3c fscrypt_free_bounce_page +EXPORT_SYMBOL vmlinux 0x0140f4af pin_user_pages_locked EXPORT_SYMBOL vmlinux 0x01505d85 imx_scu_call_rpc +EXPORT_SYMBOL vmlinux 0x0152d724 ipv6_dev_mc_inc EXPORT_SYMBOL vmlinux 0x015af7f4 system_state +EXPORT_SYMBOL vmlinux 0x016d63da amba_driver_unregister EXPORT_SYMBOL vmlinux 0x01757935 rdmacg_register_device -EXPORT_SYMBOL vmlinux 0x01762660 filemap_write_and_wait_range -EXPORT_SYMBOL vmlinux 0x017ddfdf splice_direct_to_actor EXPORT_SYMBOL vmlinux 0x017de3d5 nr_cpu_ids EXPORT_SYMBOL vmlinux 0x01830813 kblockd_mod_delayed_work_on +EXPORT_SYMBOL vmlinux 0x01832233 ipv6_getsockopt EXPORT_SYMBOL vmlinux 0x018574a1 mb_cache_entry_delete -EXPORT_SYMBOL vmlinux 0x01872a6d unregister_console +EXPORT_SYMBOL vmlinux 0x01909251 tty_chars_in_buffer +EXPORT_SYMBOL vmlinux 0x0194189e qdisc_watchdog_init_clockid EXPORT_SYMBOL vmlinux 0x0199c3bd ethtool_intersect_link_masks EXPORT_SYMBOL vmlinux 0x01a3d310 omap_set_dma_channel_mode +EXPORT_SYMBOL vmlinux 0x01a5f7c0 _copy_from_iter +EXPORT_SYMBOL vmlinux 0x01b4d9c9 dma_map_page_attrs EXPORT_SYMBOL vmlinux 0x01bf78b5 inetpeer_invalidate_tree -EXPORT_SYMBOL vmlinux 0x01d2873b __lock_buffer -EXPORT_SYMBOL vmlinux 0x01d2e451 rio_query_mport -EXPORT_SYMBOL vmlinux 0x01dc8d7b sock_diag_put_filterinfo -EXPORT_SYMBOL vmlinux 0x01e307eb tcf_qevent_dump +EXPORT_SYMBOL vmlinux 0x01c7aae5 pci_choose_state +EXPORT_SYMBOL vmlinux 0x01dfde3f ata_dev_printk EXPORT_SYMBOL vmlinux 0x01e769d6 __next_node_in -EXPORT_SYMBOL vmlinux 0x01f6d872 __scsi_print_sense +EXPORT_SYMBOL vmlinux 0x01f74494 dst_alloc +EXPORT_SYMBOL vmlinux 0x0205c655 f_setown EXPORT_SYMBOL vmlinux 0x020dbf27 bitmap_alloc EXPORT_SYMBOL vmlinux 0x02124474 ip_send_check -EXPORT_SYMBOL vmlinux 0x0218f260 set_posix_acl EXPORT_SYMBOL vmlinux 0x02196324 __aeabi_idiv -EXPORT_SYMBOL vmlinux 0x021a4264 configfs_register_subsystem -EXPORT_SYMBOL vmlinux 0x0224ac1b twl6040_reg_read -EXPORT_SYMBOL vmlinux 0x024c0b60 i2c_smbus_write_i2c_block_data -EXPORT_SYMBOL vmlinux 0x024dbfea fs_param_is_u64 -EXPORT_SYMBOL vmlinux 0x026705c2 netlink_rcv_skb +EXPORT_SYMBOL vmlinux 0x022ae1b6 is_bad_inode +EXPORT_SYMBOL vmlinux 0x02426c18 dmam_alloc_attrs +EXPORT_SYMBOL vmlinux 0x024d066a starget_for_each_device +EXPORT_SYMBOL vmlinux 0x025bc730 inet6_offloads +EXPORT_SYMBOL vmlinux 0x026307e1 param_set_charp +EXPORT_SYMBOL vmlinux 0x02708637 jbd2_journal_init_inode EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues -EXPORT_SYMBOL vmlinux 0x02781973 tcf_idrinfo_destroy +EXPORT_SYMBOL vmlinux 0x0278fb7a skb_flow_get_icmp_tci +EXPORT_SYMBOL vmlinux 0x027e0ebf page_address +EXPORT_SYMBOL vmlinux 0x027e61ad sock_no_getname EXPORT_SYMBOL vmlinux 0x0283dfe3 _snd_pcm_hw_params_any -EXPORT_SYMBOL vmlinux 0x0285bc91 fwnode_get_phy_id -EXPORT_SYMBOL vmlinux 0x0289aa5b security_socket_socketpair +EXPORT_SYMBOL vmlinux 0x02867b03 inet6_register_protosw +EXPORT_SYMBOL vmlinux 0x029247d0 remove_arg_zero +EXPORT_SYMBOL vmlinux 0x0293f2d7 scsi_register_interface EXPORT_SYMBOL vmlinux 0x0296695f refcount_warn_saturate -EXPORT_SYMBOL vmlinux 0x02a18c74 nf_conntrack_destroy -EXPORT_SYMBOL vmlinux 0x02b18056 inet6_protos -EXPORT_SYMBOL vmlinux 0x02b7b8db devm_iounmap -EXPORT_SYMBOL vmlinux 0x02bd7bec sock_rfree EXPORT_SYMBOL vmlinux 0x02c065f8 ucc_set_qe_mux_mii_mng -EXPORT_SYMBOL vmlinux 0x02cbd9e8 scsi_is_target_device -EXPORT_SYMBOL vmlinux 0x02d0eda2 __module_get -EXPORT_SYMBOL vmlinux 0x02d30b97 blk_queue_segment_boundary +EXPORT_SYMBOL vmlinux 0x02c68c88 configfs_remove_default_groups +EXPORT_SYMBOL vmlinux 0x02ccb413 genphy_config_eee_advert +EXPORT_SYMBOL vmlinux 0x02d41eee rproc_mem_entry_init +EXPORT_SYMBOL vmlinux 0x02da611b udp_prot EXPORT_SYMBOL vmlinux 0x02df50b0 jiffies EXPORT_SYMBOL vmlinux 0x02ee26c1 free_pages_exact -EXPORT_SYMBOL vmlinux 0x02ee6dd7 gro_cells_init -EXPORT_SYMBOL vmlinux 0x030562da filemap_invalidate_unlock_two -EXPORT_SYMBOL vmlinux 0x03116dc7 xfrm6_rcv_tnl -EXPORT_SYMBOL vmlinux 0x032791ab i2c_get_adapter +EXPORT_SYMBOL vmlinux 0x02fb682a of_device_get_match_data +EXPORT_SYMBOL vmlinux 0x02fcf4d1 page_pool_update_nid +EXPORT_SYMBOL vmlinux 0x0300f295 mipi_dsi_compression_mode +EXPORT_SYMBOL vmlinux 0x031c65a7 try_lookup_one_len +EXPORT_SYMBOL vmlinux 0x03222854 wireless_spy_update +EXPORT_SYMBOL vmlinux 0x0323e7bc drop_nlink +EXPORT_SYMBOL vmlinux 0x03311ba0 vfs_symlink +EXPORT_SYMBOL vmlinux 0x0331d813 snd_ctl_free_one +EXPORT_SYMBOL vmlinux 0x0332b800 ip_do_fragment EXPORT_SYMBOL vmlinux 0x0334795d icst307_s2div EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl -EXPORT_SYMBOL vmlinux 0x035ac8bf bdi_set_max_ratio +EXPORT_SYMBOL vmlinux 0x034bd75b rtnl_create_link +EXPORT_SYMBOL vmlinux 0x035ec2c3 jbd2_journal_errno +EXPORT_SYMBOL vmlinux 0x0360d67f make_flow_keys_digest EXPORT_SYMBOL vmlinux 0x0366307a console_suspend_enabled +EXPORT_SYMBOL vmlinux 0x03663f39 phy_ethtool_get_link_ksettings EXPORT_SYMBOL vmlinux 0x037a0cba kfree EXPORT_SYMBOL vmlinux 0x03815f35 ledtrig_disk_activity EXPORT_SYMBOL vmlinux 0x0397edd5 fb_edid_to_monspecs -EXPORT_SYMBOL vmlinux 0x03b65a12 handle_edge_irq -EXPORT_SYMBOL vmlinux 0x03ba2504 iov_iter_discard +EXPORT_SYMBOL vmlinux 0x0399ffe1 pci_stop_and_remove_bus_device +EXPORT_SYMBOL vmlinux 0x03a74da7 update_devfreq +EXPORT_SYMBOL vmlinux 0x03a95a1e dev_get_by_name +EXPORT_SYMBOL vmlinux 0x03aec4e6 put_ipc_ns +EXPORT_SYMBOL vmlinux 0x03b1e762 inet_protos EXPORT_SYMBOL vmlinux 0x03ba39b0 v7_flush_user_cache_all -EXPORT_SYMBOL vmlinux 0x03c3745b simple_getattr -EXPORT_SYMBOL vmlinux 0x03d09d89 ipv6_chk_custom_prefix -EXPORT_SYMBOL vmlinux 0x03f59b6d jbd2_fc_release_bufs -EXPORT_SYMBOL vmlinux 0x03f6fbf8 rproc_elf_sanity_check +EXPORT_SYMBOL vmlinux 0x03cce521 __quota_error +EXPORT_SYMBOL vmlinux 0x03d7dd36 __blk_mq_end_request +EXPORT_SYMBOL vmlinux 0x03dbc9a4 ipmr_rule_default +EXPORT_SYMBOL vmlinux 0x03e4c3e5 elv_rb_del +EXPORT_SYMBOL vmlinux 0x03e4ce5e jbd2_journal_try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x03e6cea5 iov_iter_pipe +EXPORT_SYMBOL vmlinux 0x03eb33c8 pci_setup_cardbus EXPORT_SYMBOL vmlinux 0x03fba701 wait_for_completion_killable_timeout EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram -EXPORT_SYMBOL vmlinux 0x04084b31 pci_write_config_byte +EXPORT_SYMBOL vmlinux 0x04085656 d_alloc_anon +EXPORT_SYMBOL vmlinux 0x040ca493 snd_pcm_hw_constraint_integer EXPORT_SYMBOL vmlinux 0x0412acb4 __tracepoint_kmalloc EXPORT_SYMBOL vmlinux 0x0419591e __sg_free_table -EXPORT_SYMBOL vmlinux 0x041980f8 phy_init_eee -EXPORT_SYMBOL vmlinux 0x04203129 udplite_prot EXPORT_SYMBOL vmlinux 0x042685d7 sg_nents_for_len +EXPORT_SYMBOL vmlinux 0x042b708b of_find_mipi_dsi_host_by_node +EXPORT_SYMBOL vmlinux 0x042f1bdd pci_bus_write_config_byte +EXPORT_SYMBOL vmlinux 0x042ff904 of_find_node_by_name +EXPORT_SYMBOL vmlinux 0x0437ed47 inet_sock_destruct +EXPORT_SYMBOL vmlinux 0x043f5162 security_inode_copy_up EXPORT_SYMBOL vmlinux 0x04426f14 mem_section EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator +EXPORT_SYMBOL vmlinux 0x0448e4db scsi_print_command EXPORT_SYMBOL vmlinux 0x044fb722 dev_base_lock -EXPORT_SYMBOL vmlinux 0x0456ef9a __ip_options_compile -EXPORT_SYMBOL vmlinux 0x0464a6d9 dev_mc_flush -EXPORT_SYMBOL vmlinux 0x04751319 __qdisc_calculate_pkt_len -EXPORT_SYMBOL vmlinux 0x049b91c6 md_check_no_bitmap -EXPORT_SYMBOL vmlinux 0x04a61b86 skb_ext_add -EXPORT_SYMBOL vmlinux 0x04ac2846 ipv6_dev_mc_dec +EXPORT_SYMBOL vmlinux 0x045ab848 __scsi_add_device +EXPORT_SYMBOL vmlinux 0x04658d0d sock_no_listen +EXPORT_SYMBOL vmlinux 0x04691fda may_umount +EXPORT_SYMBOL vmlinux 0x047366cf vfs_parse_fs_param_source +EXPORT_SYMBOL vmlinux 0x047457ca filemap_fdatawrite_range +EXPORT_SYMBOL vmlinux 0x047c866e seq_escape +EXPORT_SYMBOL vmlinux 0x0495c329 padata_alloc +EXPORT_SYMBOL vmlinux 0x049b43ac set_user_nice +EXPORT_SYMBOL vmlinux 0x049b6d83 page_pool_alloc_frag +EXPORT_SYMBOL vmlinux 0x04aa15b5 bio_integrity_trim +EXPORT_SYMBOL vmlinux 0x04ac8dfc netif_carrier_off EXPORT_SYMBOL vmlinux 0x04ae0988 sg_zero_buffer -EXPORT_SYMBOL vmlinux 0x04ae6195 ww_mutex_unlock -EXPORT_SYMBOL vmlinux 0x04bc7091 shmem_aops EXPORT_SYMBOL vmlinux 0x04c6b4c3 __crypto_memneq +EXPORT_SYMBOL vmlinux 0x04c7efb8 mmc_put_card EXPORT_SYMBOL vmlinux 0x04cda566 snd_interval_refine EXPORT_SYMBOL vmlinux 0x04d9bf4e blk_set_stacking_limits -EXPORT_SYMBOL vmlinux 0x04f9ed67 ip_sock_set_mtu_discover -EXPORT_SYMBOL vmlinux 0x04fd5684 dev_change_proto_down_generic +EXPORT_SYMBOL vmlinux 0x04dff036 __skb_ext_del +EXPORT_SYMBOL vmlinux 0x04e27d61 snd_pcm_lib_malloc_pages +EXPORT_SYMBOL vmlinux 0x04e823fa ptp_find_pin_unlocked +EXPORT_SYMBOL vmlinux 0x04ece7f5 seg6_hmac_validate_skb +EXPORT_SYMBOL vmlinux 0x04f93675 scsi_add_host_with_dma EXPORT_SYMBOL vmlinux 0x04fd85b4 set_security_override EXPORT_SYMBOL vmlinux 0x0508088e ucs2_strnlen EXPORT_SYMBOL vmlinux 0x050877b9 dmi_first_match -EXPORT_SYMBOL vmlinux 0x0516d002 vif_device_init -EXPORT_SYMBOL vmlinux 0x051f8bfb input_free_device +EXPORT_SYMBOL vmlinux 0x050b6cd8 rproc_vq_interrupt +EXPORT_SYMBOL vmlinux 0x0523aeee module_layout EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch EXPORT_SYMBOL vmlinux 0x054496b4 schedule_timeout_interruptible -EXPORT_SYMBOL vmlinux 0x0549f135 register_netdevice -EXPORT_SYMBOL vmlinux 0x055b9ff4 blk_integrity_unregister -EXPORT_SYMBOL vmlinux 0x056b7804 pci_find_next_bus -EXPORT_SYMBOL vmlinux 0x0573b32f submit_bio_noacct -EXPORT_SYMBOL vmlinux 0x057691db i2c_smbus_read_block_data -EXPORT_SYMBOL vmlinux 0x058312cb __cleancache_get_page -EXPORT_SYMBOL vmlinux 0x05a0eb87 dput -EXPORT_SYMBOL vmlinux 0x05a3ef4a dev_addr_flush -EXPORT_SYMBOL vmlinux 0x05aba5e3 inode_needs_sync +EXPORT_SYMBOL vmlinux 0x055d0b77 inet6_bind +EXPORT_SYMBOL vmlinux 0x0571b9e8 genphy_handle_interrupt_no_ack +EXPORT_SYMBOL vmlinux 0x058331f0 __nlmsg_put +EXPORT_SYMBOL vmlinux 0x058a083f scsi_report_device_reset +EXPORT_SYMBOL vmlinux 0x059d0de7 scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x059f6664 genphy_restart_aneg +EXPORT_SYMBOL vmlinux 0x05a7913b md_check_recovery +EXPORT_SYMBOL vmlinux 0x05ab5a5d __tcf_em_tree_match EXPORT_SYMBOL vmlinux 0x05b0caa0 hdmi_vendor_infoframe_pack -EXPORT_SYMBOL vmlinux 0x05c6236d xattr_supported_namespace -EXPORT_SYMBOL vmlinux 0x05d583c2 find_get_pages_range_tag +EXPORT_SYMBOL vmlinux 0x05c517f1 genphy_check_and_restart_aneg EXPORT_SYMBOL vmlinux 0x05e13eb9 ZSTD_initDDict -EXPORT_SYMBOL vmlinux 0x05e4bf81 mnt_drop_write_file -EXPORT_SYMBOL vmlinux 0x05ead9a4 __filemap_set_wb_err -EXPORT_SYMBOL vmlinux 0x05eda928 pci_bus_set_ops -EXPORT_SYMBOL vmlinux 0x05f65836 keyring_search -EXPORT_SYMBOL vmlinux 0x05fab22d napi_gro_flush -EXPORT_SYMBOL vmlinux 0x060ab08f sock_wmalloc -EXPORT_SYMBOL vmlinux 0x060d2337 devm_devfreq_register_notifier -EXPORT_SYMBOL vmlinux 0x060ff740 fwnode_irq_get +EXPORT_SYMBOL vmlinux 0x05f4560b max8925_reg_read EXPORT_SYMBOL vmlinux 0x061651be strcat -EXPORT_SYMBOL vmlinux 0x0624304a write_one_page -EXPORT_SYMBOL vmlinux 0x062841a6 sk_wait_data -EXPORT_SYMBOL vmlinux 0x0632d3bd nand_ecc_cleanup_ctx EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user -EXPORT_SYMBOL vmlinux 0x064cc3af sockfd_lookup +EXPORT_SYMBOL vmlinux 0x0644055a km_state_expired EXPORT_SYMBOL vmlinux 0x0668b595 _kstrtoul EXPORT_SYMBOL vmlinux 0x06724b38 ZSTD_getFrameParams -EXPORT_SYMBOL vmlinux 0x0673e5d8 tty_unregister_ldisc -EXPORT_SYMBOL vmlinux 0x067793c5 tcp_md5_hash_key -EXPORT_SYMBOL vmlinux 0x068b86e2 __sk_backlog_rcv -EXPORT_SYMBOL vmlinux 0x068cdf1c kthread_bind -EXPORT_SYMBOL vmlinux 0x069d014b __quota_error -EXPORT_SYMBOL vmlinux 0x06b5c6c9 nexthop_bucket_set_hw_flags +EXPORT_SYMBOL vmlinux 0x067c1d14 vfs_iocb_iter_write +EXPORT_SYMBOL vmlinux 0x06813e60 pci_msi_vec_count +EXPORT_SYMBOL vmlinux 0x0683155b jbd2_journal_revoke +EXPORT_SYMBOL vmlinux 0x068927ce __traceiter_mmap_lock_start_locking +EXPORT_SYMBOL vmlinux 0x0693f76a cdev_set_parent +EXPORT_SYMBOL vmlinux 0x06a7ebe9 file_fdatawait_range +EXPORT_SYMBOL vmlinux 0x06b2aa55 update_region EXPORT_SYMBOL vmlinux 0x06c8f2de slhc_compress -EXPORT_SYMBOL vmlinux 0x06ca75f1 i2c_clients_command -EXPORT_SYMBOL vmlinux 0x06ccb89f inet_shutdown -EXPORT_SYMBOL vmlinux 0x06ccf5ed tcp_splice_read -EXPORT_SYMBOL vmlinux 0x07171406 dcache_dir_close +EXPORT_SYMBOL vmlinux 0x06c91d21 _dev_err +EXPORT_SYMBOL vmlinux 0x06de460f of_get_mac_address +EXPORT_SYMBOL vmlinux 0x06deee62 import_iovec +EXPORT_SYMBOL vmlinux 0x06e62ab4 input_unregister_handler +EXPORT_SYMBOL vmlinux 0x070d2c6e nf_register_net_hooks +EXPORT_SYMBOL vmlinux 0x070f8671 nand_ecc_sw_bch_init_ctx +EXPORT_SYMBOL vmlinux 0x07110580 watchdog_unregister_governor +EXPORT_SYMBOL vmlinux 0x0712a0bc mr_mfc_find_any +EXPORT_SYMBOL vmlinux 0x0713d877 generic_remap_file_range_prep EXPORT_SYMBOL vmlinux 0x071809e5 __xa_alloc_cyclic -EXPORT_SYMBOL vmlinux 0x0724bc33 netif_set_real_num_rx_queues -EXPORT_SYMBOL vmlinux 0x07287bb5 __skb_warn_lro_forwarding EXPORT_SYMBOL vmlinux 0x072a8f8d __set_fiq_regs EXPORT_SYMBOL vmlinux 0x072f901c vme_master_rmw -EXPORT_SYMBOL vmlinux 0x07307238 bprm_change_interp -EXPORT_SYMBOL vmlinux 0x0733acb1 mmc_cqe_request_done -EXPORT_SYMBOL vmlinux 0x074a0122 migrate_page_move_mapping +EXPORT_SYMBOL vmlinux 0x073ece88 devm_request_threaded_irq +EXPORT_SYMBOL vmlinux 0x074c0760 netdev_has_upper_dev +EXPORT_SYMBOL vmlinux 0x074ce538 blk_queue_max_hw_sectors EXPORT_SYMBOL vmlinux 0x075a2c33 ZSTD_decompressBegin_usingDict -EXPORT_SYMBOL vmlinux 0x075b281e __skb_flow_dissect -EXPORT_SYMBOL vmlinux 0x075c2c80 mfd_remove_devices +EXPORT_SYMBOL vmlinux 0x07639ad5 con_is_visible EXPORT_SYMBOL vmlinux 0x077af67c init_opal_dev -EXPORT_SYMBOL vmlinux 0x077f5418 skb_dequeue -EXPORT_SYMBOL vmlinux 0x07860468 of_phy_deregister_fixed_link -EXPORT_SYMBOL vmlinux 0x078c22da sock_set_reuseaddr -EXPORT_SYMBOL vmlinux 0x079b03de d_alloc_anon -EXPORT_SYMBOL vmlinux 0x07a16c1d tso_build_data +EXPORT_SYMBOL vmlinux 0x078095f5 pci_scan_bridge +EXPORT_SYMBOL vmlinux 0x0787a195 page_pool_return_skb_page +EXPORT_SYMBOL vmlinux 0x079b1198 kmem_cache_create_usercopy +EXPORT_SYMBOL vmlinux 0x07a7c1f0 skb_copy_datagram_from_iter EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap -EXPORT_SYMBOL vmlinux 0x07b1c359 i2c_verify_client -EXPORT_SYMBOL vmlinux 0x07b80f35 snd_pcm_hw_constraint_ratdens -EXPORT_SYMBOL vmlinux 0x07cae4a4 skb_copy_expand +EXPORT_SYMBOL vmlinux 0x07a9499e twl6040_power +EXPORT_SYMBOL vmlinux 0x07c83848 dquot_set_dqinfo EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit -EXPORT_SYMBOL vmlinux 0x07cf0304 snd_ctl_rename_id EXPORT_SYMBOL vmlinux 0x07e2c085 radix_tree_tagged -EXPORT_SYMBOL vmlinux 0x07efa59a crypto_sha256_finup -EXPORT_SYMBOL vmlinux 0x07fb8865 snd_dma_alloc_pages_fallback +EXPORT_SYMBOL vmlinux 0x07eebdf2 pci_irq_vector EXPORT_SYMBOL vmlinux 0x0800473f __cond_resched -EXPORT_SYMBOL vmlinux 0x080117f0 brioctl_set EXPORT_SYMBOL vmlinux 0x0805f2c8 ecryptfs_get_auth_tok_key -EXPORT_SYMBOL vmlinux 0x080c925c reuseport_alloc -EXPORT_SYMBOL vmlinux 0x08157a56 pci_clear_mwi +EXPORT_SYMBOL vmlinux 0x08098026 mem_cgroup_from_task +EXPORT_SYMBOL vmlinux 0x08176cc4 nand_ecc_sw_bch_calculate EXPORT_SYMBOL vmlinux 0x08249512 iwe_stream_add_point EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses -EXPORT_SYMBOL vmlinux 0x0834a31e udp_push_pending_frames +EXPORT_SYMBOL vmlinux 0x083b568f tty_do_resize EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister +EXPORT_SYMBOL vmlinux 0x084830bd pcim_iounmap +EXPORT_SYMBOL vmlinux 0x085308b3 vfs_ioctl +EXPORT_SYMBOL vmlinux 0x085d5cdd uart_update_timeout EXPORT_SYMBOL vmlinux 0x086253a7 ioremap_cache -EXPORT_SYMBOL vmlinux 0x08734911 generic_remap_file_range_prep -EXPORT_SYMBOL vmlinux 0x087c7828 snd_pcm_hw_constraint_minmax +EXPORT_SYMBOL vmlinux 0x087033fc elv_rb_former_request EXPORT_SYMBOL vmlinux 0x0882a449 security_xfrm_policy_alloc -EXPORT_SYMBOL vmlinux 0x08990214 mmc_hw_reset -EXPORT_SYMBOL vmlinux 0x08b6a566 msi_desc_to_pci_dev -EXPORT_SYMBOL vmlinux 0x08b73ec3 kthread_stop -EXPORT_SYMBOL vmlinux 0x08bf0b3b register_mii_timestamper +EXPORT_SYMBOL vmlinux 0x088fdf11 pcie_port_service_unregister +EXPORT_SYMBOL vmlinux 0x089990ad devfreq_remove_device +EXPORT_SYMBOL vmlinux 0x08a411b0 devfreq_add_device +EXPORT_SYMBOL vmlinux 0x08bb5b69 make_kuid EXPORT_SYMBOL vmlinux 0x08c4fd32 omap_disable_dma_irq +EXPORT_SYMBOL vmlinux 0x08c8cb6f follow_down_one EXPORT_SYMBOL vmlinux 0x08d66d4b _raw_write_lock_irqsave +EXPORT_SYMBOL vmlinux 0x08dac064 kernel_write EXPORT_SYMBOL vmlinux 0x08e39398 cmd_db_read_addr -EXPORT_SYMBOL vmlinux 0x08f561e1 xp_dma_unmap -EXPORT_SYMBOL vmlinux 0x08f7f6f6 __skb_recv_udp -EXPORT_SYMBOL vmlinux 0x08f8737c ppp_register_compressor -EXPORT_SYMBOL vmlinux 0x08fc86ba copy_string_kernel -EXPORT_SYMBOL vmlinux 0x09033bc4 bdevname -EXPORT_SYMBOL vmlinux 0x0911d0b3 inet_reqsk_alloc -EXPORT_SYMBOL vmlinux 0x092bfa52 __lock_page -EXPORT_SYMBOL vmlinux 0x093923ab pci_setup_cardbus -EXPORT_SYMBOL vmlinux 0x095a11df bfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0x08f48664 ip6_output +EXPORT_SYMBOL vmlinux 0x090cc1c7 dev_open +EXPORT_SYMBOL vmlinux 0x09138bf7 tcp_gro_complete +EXPORT_SYMBOL vmlinux 0x091fbb7b kthread_stop +EXPORT_SYMBOL vmlinux 0x09277e27 mipi_dsi_driver_unregister +EXPORT_SYMBOL vmlinux 0x092e0b7e release_pages +EXPORT_SYMBOL vmlinux 0x0940a39f ppp_unregister_compressor +EXPORT_SYMBOL vmlinux 0x09487473 tcf_exts_validate +EXPORT_SYMBOL vmlinux 0x094ed1fe t10_pi_type3_crc +EXPORT_SYMBOL vmlinux 0x0956b7ae input_alloc_absinfo +EXPORT_SYMBOL vmlinux 0x0957d77b skb_checksum +EXPORT_SYMBOL vmlinux 0x09767ad2 amba_release_regions EXPORT_SYMBOL vmlinux 0x09769037 dmt_modes -EXPORT_SYMBOL vmlinux 0x0976ea59 udp_prot -EXPORT_SYMBOL vmlinux 0x098b1f35 phy_ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0x097c739b md_cluster_ops +EXPORT_SYMBOL vmlinux 0x0987c633 __check_sticky +EXPORT_SYMBOL vmlinux 0x0989b60f mpage_writepage EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap +EXPORT_SYMBOL vmlinux 0x09ad2ac7 truncate_setsize +EXPORT_SYMBOL vmlinux 0x09b01726 fwnode_mdiobus_register_phy EXPORT_SYMBOL vmlinux 0x09b152e2 call_usermodehelper_setup -EXPORT_SYMBOL vmlinux 0x09cecd44 __sock_queue_rcv_skb -EXPORT_SYMBOL vmlinux 0x09d247a9 end_page_writeback +EXPORT_SYMBOL vmlinux 0x09d2dfb4 unpin_user_page EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions -EXPORT_SYMBOL vmlinux 0x09f0ed4f dev_uc_init -EXPORT_SYMBOL vmlinux 0x09fa92c6 md_bitmap_end_sync -EXPORT_SYMBOL vmlinux 0x0a18cd73 jbd2_submit_inode_data -EXPORT_SYMBOL vmlinux 0x0a1a7eca lookup_one -EXPORT_SYMBOL vmlinux 0x0a1f9935 xfrm_lookup_with_ifid -EXPORT_SYMBOL vmlinux 0x0a204278 netdev_sk_get_lowest_dev +EXPORT_SYMBOL vmlinux 0x09d471de pci_rebar_get_possible_sizes +EXPORT_SYMBOL vmlinux 0x09db9042 blk_rq_map_user_iov +EXPORT_SYMBOL vmlinux 0x09e15e45 register_sound_dsp +EXPORT_SYMBOL vmlinux 0x0a0fcb09 __scsi_device_lookup EXPORT_SYMBOL vmlinux 0x0a20d621 ZSTD_decompressBegin -EXPORT_SYMBOL vmlinux 0x0a228063 mdiobus_get_phy +EXPORT_SYMBOL vmlinux 0x0a262b31 tcp_close +EXPORT_SYMBOL vmlinux 0x0a2dcac6 locks_lock_inode_wait EXPORT_SYMBOL vmlinux 0x0a3131f6 strnchr -EXPORT_SYMBOL vmlinux 0x0a394b02 tcp_read_sock -EXPORT_SYMBOL vmlinux 0x0a5beade ata_dev_printk -EXPORT_SYMBOL vmlinux 0x0a5e1681 mtd_concat_destroy -EXPORT_SYMBOL vmlinux 0x0a61fb60 dev_change_flags -EXPORT_SYMBOL vmlinux 0x0a7ed2d9 vme_master_request -EXPORT_SYMBOL vmlinux 0x0a7f4047 make_kprojid -EXPORT_SYMBOL vmlinux 0x0a7f850f uart_unregister_driver -EXPORT_SYMBOL vmlinux 0x0a90ac50 qdisc_put_unlocked +EXPORT_SYMBOL vmlinux 0x0a35129f nf_ip6_checksum +EXPORT_SYMBOL vmlinux 0x0a39131b blk_cleanup_disk +EXPORT_SYMBOL vmlinux 0x0a4505b7 sched_autogroup_create_attach +EXPORT_SYMBOL vmlinux 0x0a4e69dc input_free_device +EXPORT_SYMBOL vmlinux 0x0a6392a2 nand_write_page_raw +EXPORT_SYMBOL vmlinux 0x0a690d18 blk_queue_max_segments +EXPORT_SYMBOL vmlinux 0x0a72851a xfrm_policy_bysel_ctx +EXPORT_SYMBOL vmlinux 0x0a742d6b pci_get_slot +EXPORT_SYMBOL vmlinux 0x0a796b77 tcf_qevent_init +EXPORT_SYMBOL vmlinux 0x0a967139 inet_sk_rebuild_header EXPORT_SYMBOL vmlinux 0x0a96b96a kstrtouint_from_user EXPORT_SYMBOL vmlinux 0x0aa09d79 omap_vrfb_map_angle EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq +EXPORT_SYMBOL vmlinux 0x0abdf290 set_disk_ro EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all +EXPORT_SYMBOL vmlinux 0x0ad49683 vme_register_driver EXPORT_SYMBOL vmlinux 0x0ae547ed xxh64_update +EXPORT_SYMBOL vmlinux 0x0aea5a09 input_flush_device +EXPORT_SYMBOL vmlinux 0x0b06d701 dquot_get_dqblk +EXPORT_SYMBOL vmlinux 0x0b0ed89a ip_options_rcv_srr EXPORT_SYMBOL vmlinux 0x0b1b939e kmemdup EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user -EXPORT_SYMBOL vmlinux 0x0b293108 mtd_concat_create -EXPORT_SYMBOL vmlinux 0x0b2f5a9a inet_csk_reqsk_queue_drop_and_put -EXPORT_SYMBOL vmlinux 0x0b2fa033 kfree_skb_partial +EXPORT_SYMBOL vmlinux 0x0b2eefb2 skb_copy_expand +EXPORT_SYMBOL vmlinux 0x0b35a9b5 serial8250_do_pm +EXPORT_SYMBOL vmlinux 0x0b3b6d7e dst_release_immediate EXPORT_SYMBOL vmlinux 0x0b48677a __kfifo_init +EXPORT_SYMBOL vmlinux 0x0b51822a mipi_dsi_dcs_enter_sleep_mode +EXPORT_SYMBOL vmlinux 0x0b569c31 seq_hex_dump EXPORT_SYMBOL vmlinux 0x0b617520 dma_fence_default_wait -EXPORT_SYMBOL vmlinux 0x0b648c74 locks_lock_inode_wait -EXPORT_SYMBOL vmlinux 0x0b6f0fad __skb_get_hash EXPORT_SYMBOL vmlinux 0x0b709411 omap_vrfb_release_ctx EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol -EXPORT_SYMBOL vmlinux 0x0b74b6c8 tcp_get_cookie_sock -EXPORT_SYMBOL vmlinux 0x0b8a1313 bio_put -EXPORT_SYMBOL vmlinux 0x0b921842 scsi_mode_sense -EXPORT_SYMBOL vmlinux 0x0b9798b9 tty_unlock +EXPORT_SYMBOL vmlinux 0x0b781209 dcb_getapp +EXPORT_SYMBOL vmlinux 0x0b9bc12f mr_table_dump EXPORT_SYMBOL vmlinux 0x0ba0b938 vm_brk -EXPORT_SYMBOL vmlinux 0x0ba48fbc ndo_dflt_fdb_dump -EXPORT_SYMBOL vmlinux 0x0ba683f5 nobh_write_begin -EXPORT_SYMBOL vmlinux 0x0bb0344b cdev_init -EXPORT_SYMBOL vmlinux 0x0bc20da8 try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x0bb886da devm_extcon_unregister_notifier +EXPORT_SYMBOL vmlinux 0x0bbff942 d_drop +EXPORT_SYMBOL vmlinux 0x0bc44acc inet6_add_offload EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type -EXPORT_SYMBOL vmlinux 0x0bc7eb4c vfs_dedupe_file_range +EXPORT_SYMBOL vmlinux 0x0bd65fe1 PageMovable +EXPORT_SYMBOL vmlinux 0x0bd6f68c ptp_schedule_worker EXPORT_SYMBOL vmlinux 0x0bf0e4a2 __SCK__tp_func_spi_transfer_stop -EXPORT_SYMBOL vmlinux 0x0c051a9b mmc_sw_reset -EXPORT_SYMBOL vmlinux 0x0c1e877c nvmem_get_mac_address +EXPORT_SYMBOL vmlinux 0x0c04a533 mmc_retune_pause +EXPORT_SYMBOL vmlinux 0x0c1e585d twl6030_mmc_card_detect EXPORT_SYMBOL vmlinux 0x0c25ec48 secure_tcpv6_seq -EXPORT_SYMBOL vmlinux 0x0c480a71 __bio_clone_fast -EXPORT_SYMBOL vmlinux 0x0c48aafa pci_get_domain_bus_and_slot -EXPORT_SYMBOL vmlinux 0x0c52066e kill_pid -EXPORT_SYMBOL vmlinux 0x0c548d29 input_mt_get_slot_by_key -EXPORT_SYMBOL vmlinux 0x0c5c7e86 t10_pi_type3_ip -EXPORT_SYMBOL vmlinux 0x0c74ac65 of_clk_get -EXPORT_SYMBOL vmlinux 0x0c770e46 blk_queue_chunk_sectors -EXPORT_SYMBOL vmlinux 0x0c833303 pcie_capability_clear_and_set_dword -EXPORT_SYMBOL vmlinux 0x0c9648d4 secure_tcpv6_ts_off -EXPORT_SYMBOL vmlinux 0x0c9c84bd xsk_clear_rx_need_wakeup +EXPORT_SYMBOL vmlinux 0x0c378da1 get_cached_acl_rcu +EXPORT_SYMBOL vmlinux 0x0c480b0a rt6_lookup +EXPORT_SYMBOL vmlinux 0x0c528a12 vfs_getattr_nosec +EXPORT_SYMBOL vmlinux 0x0c66bad2 refresh_frequency_limits +EXPORT_SYMBOL vmlinux 0x0c8a8ff7 bdev_read_only EXPORT_SYMBOL vmlinux 0x0ca54fee _test_and_set_bit -EXPORT_SYMBOL vmlinux 0x0ca87527 of_find_all_nodes -EXPORT_SYMBOL vmlinux 0x0cadf92e devm_get_clk_from_child +EXPORT_SYMBOL vmlinux 0x0cafecf4 locks_copy_conflock EXPORT_SYMBOL vmlinux 0x0cb11bc7 __SCK__tp_func_dma_fence_enable_signal EXPORT_SYMBOL vmlinux 0x0cb5eae1 vme_free_consistent -EXPORT_SYMBOL vmlinux 0x0cbcb3e1 pcie_ptm_enabled -EXPORT_SYMBOL vmlinux 0x0cbeee7a __dynamic_dev_dbg -EXPORT_SYMBOL vmlinux 0x0cc5d729 forget_cached_acl +EXPORT_SYMBOL vmlinux 0x0ccb42e3 module_put +EXPORT_SYMBOL vmlinux 0x0cd82322 of_phy_get_and_connect +EXPORT_SYMBOL vmlinux 0x0cdb0d98 get_acl EXPORT_SYMBOL vmlinux 0x0cdce87c rfkill_set_hw_state_reason +EXPORT_SYMBOL vmlinux 0x0cdfa36e sock_set_reuseport EXPORT_SYMBOL vmlinux 0x0ce19729 mb_cache_entry_touch -EXPORT_SYMBOL vmlinux 0x0cf4c704 page_get_link +EXPORT_SYMBOL vmlinux 0x0ce9b0fb param_get_ulong +EXPORT_SYMBOL vmlinux 0x0cf010f4 genphy_c37_read_status EXPORT_SYMBOL vmlinux 0x0d07f543 get_anon_bdev -EXPORT_SYMBOL vmlinux 0x0d0b0a59 ip6_err_gen_icmpv6_unreach -EXPORT_SYMBOL vmlinux 0x0d12e6f7 d_obtain_alias +EXPORT_SYMBOL vmlinux 0x0d1306cd iget5_locked +EXPORT_SYMBOL vmlinux 0x0d159cdf jbd2_journal_force_commit EXPORT_SYMBOL vmlinux 0x0d1b54c1 _raw_write_unlock_irqrestore -EXPORT_SYMBOL vmlinux 0x0d1b6bb6 of_mdio_find_bus -EXPORT_SYMBOL vmlinux 0x0d1cefe9 __skb_gso_segment -EXPORT_SYMBOL vmlinux 0x0d20fd9e __mmap_lock_do_trace_start_locking -EXPORT_SYMBOL vmlinux 0x0d29ed37 of_count_phandle_with_args +EXPORT_SYMBOL vmlinux 0x0d1e4ba7 mfd_remove_devices EXPORT_SYMBOL vmlinux 0x0d2ca20f ucc_fast_get_qe_cr_subblock EXPORT_SYMBOL vmlinux 0x0d3d4413 textsearch_prepare EXPORT_SYMBOL vmlinux 0x0d3f57a2 _find_next_bit_le -EXPORT_SYMBOL vmlinux 0x0d46810a inet_getname +EXPORT_SYMBOL vmlinux 0x0d46897c tcf_block_get +EXPORT_SYMBOL vmlinux 0x0d4f18d8 security_inode_notifysecctx EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type +EXPORT_SYMBOL vmlinux 0x0d5e060c vlan_dev_vlan_id +EXPORT_SYMBOL vmlinux 0x0d61acef snd_jack_set_parent EXPORT_SYMBOL vmlinux 0x0d61eeee __bitmap_subset -EXPORT_SYMBOL vmlinux 0x0d70a047 sock_set_keepalive -EXPORT_SYMBOL vmlinux 0x0da70a3c udp_gro_complete -EXPORT_SYMBOL vmlinux 0x0daa1f03 twl6030_mmc_card_detect -EXPORT_SYMBOL vmlinux 0x0db0931d iterate_fd +EXPORT_SYMBOL vmlinux 0x0d657b82 icmp_ndo_send +EXPORT_SYMBOL vmlinux 0x0d6e3d36 dev_set_alias +EXPORT_SYMBOL vmlinux 0x0d746220 snd_pcm_hw_constraint_ratnums +EXPORT_SYMBOL vmlinux 0x0d797aab vfs_get_super +EXPORT_SYMBOL vmlinux 0x0d97b31b ps2_handle_ack +EXPORT_SYMBOL vmlinux 0x0da3e5f3 lookup_one +EXPORT_SYMBOL vmlinux 0x0db2a4b0 mmc_is_req_done EXPORT_SYMBOL vmlinux 0x0dba5e9a radix_tree_delete -EXPORT_SYMBOL vmlinux 0x0dc02f7e blk_rq_map_user_iov EXPORT_SYMBOL vmlinux 0x0dc1a78c bin2hex -EXPORT_SYMBOL vmlinux 0x0dca1bde param_ops_bool -EXPORT_SYMBOL vmlinux 0x0dccd84c cdrom_mode_select -EXPORT_SYMBOL vmlinux 0x0dd2a829 tcf_exts_destroy -EXPORT_SYMBOL vmlinux 0x0dd7e3d7 mroute6_is_socket -EXPORT_SYMBOL vmlinux 0x0ddb4c92 dm_kobject_release -EXPORT_SYMBOL vmlinux 0x0de3c971 scsi_report_bus_reset -EXPORT_SYMBOL vmlinux 0x0dfad353 vga_client_register -EXPORT_SYMBOL vmlinux 0x0e002d5a __napi_alloc_skb +EXPORT_SYMBOL vmlinux 0x0dd89ffb file_ns_capable +EXPORT_SYMBOL vmlinux 0x0dda80e4 skb_realloc_headroom +EXPORT_SYMBOL vmlinux 0x0deb5c3c __put_page +EXPORT_SYMBOL vmlinux 0x0ded1d58 get_mem_cgroup_from_mm +EXPORT_SYMBOL vmlinux 0x0dee5adb __ps2_command +EXPORT_SYMBOL vmlinux 0x0df493ec input_set_min_poll_interval +EXPORT_SYMBOL vmlinux 0x0e068cae configfs_unregister_group EXPORT_SYMBOL vmlinux 0x0e17678a siphash_4u64 -EXPORT_SYMBOL vmlinux 0x0e1c73fd i2c_smbus_read_i2c_block_data +EXPORT_SYMBOL vmlinux 0x0e1c632c ip6_xmit EXPORT_SYMBOL vmlinux 0x0e1c8804 dma_fence_chain_find_seqno -EXPORT_SYMBOL vmlinux 0x0e3bb8da sk_alloc -EXPORT_SYMBOL vmlinux 0x0e40eafb param_get_ushort -EXPORT_SYMBOL vmlinux 0x0e43cba6 mipi_dsi_dcs_enter_sleep_mode -EXPORT_SYMBOL vmlinux 0x0e53cb4c dec_node_page_state -EXPORT_SYMBOL vmlinux 0x0e698eb5 netif_tx_wake_queue -EXPORT_SYMBOL vmlinux 0x0e71506d rawnand_sw_bch_cleanup -EXPORT_SYMBOL vmlinux 0x0e868b2c netlink_net_capable +EXPORT_SYMBOL vmlinux 0x0e290fed pci_bus_read_dev_vendor_id +EXPORT_SYMBOL vmlinux 0x0e51165c netdev_alert +EXPORT_SYMBOL vmlinux 0x0e55ecf6 truncate_inode_pages_final +EXPORT_SYMBOL vmlinux 0x0e6ed7b7 tcf_block_put +EXPORT_SYMBOL vmlinux 0x0e7002dd omap_rtc_power_off_program +EXPORT_SYMBOL vmlinux 0x0e7531dd tty_port_close_start +EXPORT_SYMBOL vmlinux 0x0e8f7b93 tcp_simple_retransmit EXPORT_SYMBOL vmlinux 0x0ea3c74e tasklet_kill EXPORT_SYMBOL vmlinux 0x0ea593f6 hdmi_drm_infoframe_init -EXPORT_SYMBOL vmlinux 0x0eaedaf8 migrate_page -EXPORT_SYMBOL vmlinux 0x0eb1ccb3 flow_rule_match_enc_keyid +EXPORT_SYMBOL vmlinux 0x0ea8a2a6 i2c_smbus_read_i2c_block_data +EXPORT_SYMBOL vmlinux 0x0eb68ce0 rtnl_set_sk_err EXPORT_SYMBOL vmlinux 0x0eb6eb87 add_taint -EXPORT_SYMBOL vmlinux 0x0eb7d684 pin_user_pages_remote +EXPORT_SYMBOL vmlinux 0x0ec293d6 flow_block_cb_decref EXPORT_SYMBOL vmlinux 0x0ec5babe vme_dma_free -EXPORT_SYMBOL vmlinux 0x0ed0280e tcf_block_get_ext EXPORT_SYMBOL vmlinux 0x0eea0399 strscpy -EXPORT_SYMBOL vmlinux 0x0ef16cbd __dev_kfree_skb_irq -EXPORT_SYMBOL vmlinux 0x0eff4018 phy_ethtool_set_link_ksettings EXPORT_SYMBOL vmlinux 0x0f06957f allocate_resource -EXPORT_SYMBOL vmlinux 0x0f09a3c9 jbd2_journal_get_write_access EXPORT_SYMBOL vmlinux 0x0f09cc34 schedule_timeout_killable -EXPORT_SYMBOL vmlinux 0x0f10d183 tcp_initialize_rcv_mss -EXPORT_SYMBOL vmlinux 0x0f3d1968 qdisc_tree_reduce_backlog -EXPORT_SYMBOL vmlinux 0x0f4213dd __dynamic_netdev_dbg -EXPORT_SYMBOL vmlinux 0x0f4c0c4e __vfs_setxattr -EXPORT_SYMBOL vmlinux 0x0f63da79 page_pool_release_page -EXPORT_SYMBOL vmlinux 0x0f69108b vmf_insert_pfn_prot -EXPORT_SYMBOL vmlinux 0x0f6fb211 misc_register -EXPORT_SYMBOL vmlinux 0x0f7efeab bioset_integrity_create -EXPORT_SYMBOL vmlinux 0x0f85ff61 neigh_for_each +EXPORT_SYMBOL vmlinux 0x0f3aa6c7 vme_master_mmap +EXPORT_SYMBOL vmlinux 0x0f3f80e1 __lock_page +EXPORT_SYMBOL vmlinux 0x0f56318c rproc_of_parse_firmware +EXPORT_SYMBOL vmlinux 0x0f689cb6 pcix_get_max_mmrbc +EXPORT_SYMBOL vmlinux 0x0f6cd676 phy_device_free +EXPORT_SYMBOL vmlinux 0x0f6ed016 dma_find_channel +EXPORT_SYMBOL vmlinux 0x0f7134e7 proc_create_seq_private +EXPORT_SYMBOL vmlinux 0x0f78beb9 blk_mq_queue_stopped EXPORT_SYMBOL vmlinux 0x0f86f560 kthread_delayed_work_timer_fn -EXPORT_SYMBOL vmlinux 0x0f939e80 mmc_of_parse -EXPORT_SYMBOL vmlinux 0x0fad9b0c seg6_hmac_info_lookup +EXPORT_SYMBOL vmlinux 0x0f94bdf1 in_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x0f9af732 skb_copy_and_csum_datagram_msg +EXPORT_SYMBOL vmlinux 0x0f9e2650 vma_set_file +EXPORT_SYMBOL vmlinux 0x0fa2f542 bd_abort_claiming +EXPORT_SYMBOL vmlinux 0x0fb2b674 xfrm_unregister_type_offload EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 EXPORT_SYMBOL vmlinux 0x0fd0f592 mutex_trylock -EXPORT_SYMBOL vmlinux 0x0fd1a229 dev_get_by_index EXPORT_SYMBOL vmlinux 0x0fd902db mb_cache_entry_create -EXPORT_SYMBOL vmlinux 0x0ff0e1c5 of_root +EXPORT_SYMBOL vmlinux 0x0fdee495 md_register_thread EXPORT_SYMBOL vmlinux 0x0ff178f6 __aeabi_idivmod -EXPORT_SYMBOL vmlinux 0x0ff3405e pcim_iomap_table -EXPORT_SYMBOL vmlinux 0x0ff8b8fa snd_sgbuf_get_chunk_size -EXPORT_SYMBOL vmlinux 0x0ff990b5 jbd2_journal_begin_ordered_truncate +EXPORT_SYMBOL vmlinux 0x0ff24e08 backlight_device_get_by_name EXPORT_SYMBOL vmlinux 0x0fff5afc time64_to_tm EXPORT_SYMBOL vmlinux 0x10018cb0 __pv_offset -EXPORT_SYMBOL vmlinux 0x100a95fb __cgroup_bpf_run_filter_sock_addr -EXPORT_SYMBOL vmlinux 0x1015fb20 mod_zone_page_state -EXPORT_SYMBOL vmlinux 0x1017c078 bdi_put -EXPORT_SYMBOL vmlinux 0x101dd99e neigh_parms_alloc +EXPORT_SYMBOL vmlinux 0x1018d04d flow_rule_match_enc_ports EXPORT_SYMBOL vmlinux 0x1025009a cpm_muram_alloc_fixed -EXPORT_SYMBOL vmlinux 0x10275536 max8925_reg_write EXPORT_SYMBOL vmlinux 0x102936ec qe_clock_source -EXPORT_SYMBOL vmlinux 0x102bd54d pci_write_vpd -EXPORT_SYMBOL vmlinux 0x103778a6 rt_dst_clone -EXPORT_SYMBOL vmlinux 0x104cd5e2 netdev_has_upper_dev -EXPORT_SYMBOL vmlinux 0x105ca22d input_event +EXPORT_SYMBOL vmlinux 0x102bcdc9 tcp_md5_hash_skb_data +EXPORT_SYMBOL vmlinux 0x1034750e inet6_release EXPORT_SYMBOL vmlinux 0x1068004b gf128mul_bbe EXPORT_SYMBOL vmlinux 0x106f13ab crc_t10dif_generic EXPORT_SYMBOL vmlinux 0x10739f1e swake_up_locked -EXPORT_SYMBOL vmlinux 0x10766c34 generic_pipe_buf_release EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd -EXPORT_SYMBOL vmlinux 0x1081371e mmc_free_host -EXPORT_SYMBOL vmlinux 0x1081b20c param_get_short +EXPORT_SYMBOL vmlinux 0x1082eac2 imx_scu_enable_general_irq_channel +EXPORT_SYMBOL vmlinux 0x10b4f8e9 unregister_fib_notifier +EXPORT_SYMBOL vmlinux 0x10bb9647 skb_checksum_trimmed +EXPORT_SYMBOL vmlinux 0x10c3f176 get_unmapped_area EXPORT_SYMBOL vmlinux 0x10c3f57e __gnet_stats_copy_queue -EXPORT_SYMBOL vmlinux 0x10c505cc sk_error_report EXPORT_SYMBOL vmlinux 0x10c67b41 security_cred_getsecid -EXPORT_SYMBOL vmlinux 0x10c97515 put_watch_queue -EXPORT_SYMBOL vmlinux 0x10d51738 __of_get_address +EXPORT_SYMBOL vmlinux 0x10cd3a76 snd_ctl_find_id +EXPORT_SYMBOL vmlinux 0x10d8ba63 vfs_mkobj EXPORT_SYMBOL vmlinux 0x10d9f885 scsi_sense_desc_find -EXPORT_SYMBOL vmlinux 0x10e018ad input_flush_device EXPORT_SYMBOL vmlinux 0x10e6f74a free_contig_range -EXPORT_SYMBOL vmlinux 0x10ebe229 tegra_ivc_cleanup -EXPORT_SYMBOL vmlinux 0x10feb6d6 inet_select_addr EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype -EXPORT_SYMBOL vmlinux 0x110c8cd2 mark_buffer_async_write -EXPORT_SYMBOL vmlinux 0x1111c18d pcie_capability_read_word +EXPORT_SYMBOL vmlinux 0x110c8ac6 get_tree_bdev +EXPORT_SYMBOL vmlinux 0x112090cf mmc_can_secure_erase_trim +EXPORT_SYMBOL vmlinux 0x112866bd kthread_create_worker +EXPORT_SYMBOL vmlinux 0x112f09fe iget_locked EXPORT_SYMBOL vmlinux 0x113c50d2 textsearch_find_continuous -EXPORT_SYMBOL vmlinux 0x113d8e71 vme_unregister_bridge -EXPORT_SYMBOL vmlinux 0x11568d0b rtnl_set_sk_err -EXPORT_SYMBOL vmlinux 0x1161c345 inode_permission -EXPORT_SYMBOL vmlinux 0x1165b907 dev_addr_add +EXPORT_SYMBOL vmlinux 0x113de7c1 fb_get_mode +EXPORT_SYMBOL vmlinux 0x1140832d is_subdir +EXPORT_SYMBOL vmlinux 0x11412b1d ps2_sliced_command +EXPORT_SYMBOL vmlinux 0x11490906 rpmh_write_async +EXPORT_SYMBOL vmlinux 0x114eb32a mroute6_is_socket +EXPORT_SYMBOL vmlinux 0x1151dd6b nf_ip_checksum +EXPORT_SYMBOL vmlinux 0x11575996 request_firmware +EXPORT_SYMBOL vmlinux 0x116a6920 dst_release EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init EXPORT_SYMBOL vmlinux 0x119b50e7 elf_check_arch -EXPORT_SYMBOL vmlinux 0x11a0db3d fs_context_for_mount -EXPORT_SYMBOL vmlinux 0x11ad46de uart_remove_one_port -EXPORT_SYMBOL vmlinux 0x11b703e0 __sk_mem_reclaim -EXPORT_SYMBOL vmlinux 0x11b71806 jbd2_journal_extend -EXPORT_SYMBOL vmlinux 0x11d4a3a1 of_match_node -EXPORT_SYMBOL vmlinux 0x11db665b proc_remove +EXPORT_SYMBOL vmlinux 0x119bb8fd __destroy_inode +EXPORT_SYMBOL vmlinux 0x11a1c430 dquot_get_next_id +EXPORT_SYMBOL vmlinux 0x11b87c07 snd_timer_instance_free +EXPORT_SYMBOL vmlinux 0x11bc8baf md_error EXPORT_SYMBOL vmlinux 0x11e0ec41 dm_read_arg EXPORT_SYMBOL vmlinux 0x11e30762 chacha_block_generic -EXPORT_SYMBOL vmlinux 0x11ebbc7c of_device_is_big_endian -EXPORT_SYMBOL vmlinux 0x11f166a8 km_new_mapping EXPORT_SYMBOL vmlinux 0x11f47d8c utf8_strncmp -EXPORT_SYMBOL vmlinux 0x11f5328a security_inode_getsecctx -EXPORT_SYMBOL vmlinux 0x11f7ed4c hex_to_bin +EXPORT_SYMBOL vmlinux 0x11f50154 flow_block_cb_free +EXPORT_SYMBOL vmlinux 0x11f5bb56 max8998_write_reg EXPORT_SYMBOL vmlinux 0x11fa2a50 cpumask_any_distribute -EXPORT_SYMBOL vmlinux 0x12009815 skb_dequeue_tail +EXPORT_SYMBOL vmlinux 0x11fcfefc dev_mc_add_excl EXPORT_SYMBOL vmlinux 0x120b336a __rb_insert_augmented EXPORT_SYMBOL vmlinux 0x1210fb32 _raw_read_lock_irqsave -EXPORT_SYMBOL vmlinux 0x1216e93b netdev_upper_dev_unlink -EXPORT_SYMBOL vmlinux 0x121f6de3 _dev_printk EXPORT_SYMBOL vmlinux 0x1222af7f security_binder_transfer_binder -EXPORT_SYMBOL vmlinux 0x12394d06 scsi_dma_unmap -EXPORT_SYMBOL vmlinux 0x123fbae4 xfrm4_rcv_encap EXPORT_SYMBOL vmlinux 0x124bad4d kstrtobool -EXPORT_SYMBOL vmlinux 0x124f6cab mr_mfc_find_parent -EXPORT_SYMBOL vmlinux 0x125ba4b9 module_refcount -EXPORT_SYMBOL vmlinux 0x12767abf mmc_card_is_blockaddr -EXPORT_SYMBOL vmlinux 0x1276d577 discard_new_inode -EXPORT_SYMBOL vmlinux 0x12826184 configfs_unregister_subsystem -EXPORT_SYMBOL vmlinux 0x128a8ff7 cdev_alloc -EXPORT_SYMBOL vmlinux 0x12936c36 snd_pcm_set_sync +EXPORT_SYMBOL vmlinux 0x125ce5c2 mmc_remove_host +EXPORT_SYMBOL vmlinux 0x1278c7fd netpoll_poll_disable +EXPORT_SYMBOL vmlinux 0x128ac397 vlan_vid_del +EXPORT_SYMBOL vmlinux 0x12a5c2cf jbd2_journal_destroy +EXPORT_SYMBOL vmlinux 0x12a7b615 kthread_create_on_node +EXPORT_SYMBOL vmlinux 0x12ac373a input_mt_get_slot_by_key +EXPORT_SYMBOL vmlinux 0x12b70616 get_ipc_ns_exported +EXPORT_SYMBOL vmlinux 0x12b7bae1 security_sb_mnt_opts_compat +EXPORT_SYMBOL vmlinux 0x12b80041 pci_disable_link_state +EXPORT_SYMBOL vmlinux 0x12c4c8f5 add_random_ready_callback EXPORT_SYMBOL vmlinux 0x12cabc89 siphash_2u64 -EXPORT_SYMBOL vmlinux 0x12dee7b3 simple_fill_super -EXPORT_SYMBOL vmlinux 0x12e3707b genphy_read_abilities -EXPORT_SYMBOL vmlinux 0x12e67fa8 cros_ec_query_all +EXPORT_SYMBOL vmlinux 0x12d00ac6 tcf_idr_check_alloc EXPORT_SYMBOL vmlinux 0x12f19edf __genradix_ptr_alloc -EXPORT_SYMBOL vmlinux 0x12f66950 lookup_one_len +EXPORT_SYMBOL vmlinux 0x12f1b674 eth_get_headlen EXPORT_SYMBOL vmlinux 0x12f6f69c fb_videomode_to_var -EXPORT_SYMBOL vmlinux 0x1307c714 kern_unmount +EXPORT_SYMBOL vmlinux 0x13002214 mmc_alloc_host +EXPORT_SYMBOL vmlinux 0x1319f96a do_splice_direct EXPORT_SYMBOL vmlinux 0x13243d4b wl1251_get_platform_data -EXPORT_SYMBOL vmlinux 0x1326c248 cpu_user -EXPORT_SYMBOL vmlinux 0x13400317 ihold +EXPORT_SYMBOL vmlinux 0x132cc113 keyring_search +EXPORT_SYMBOL vmlinux 0x13358735 add_to_pipe +EXPORT_SYMBOL vmlinux 0x13398174 jbd2_journal_init_dev EXPORT_SYMBOL vmlinux 0x134cdd34 inet_frag_rbtree_purge -EXPORT_SYMBOL vmlinux 0x1357e345 serio_interrupt +EXPORT_SYMBOL vmlinux 0x13550d84 pci_ep_cfs_add_epc_group +EXPORT_SYMBOL vmlinux 0x13692fac block_invalidatepage +EXPORT_SYMBOL vmlinux 0x136de600 udp_ioctl +EXPORT_SYMBOL vmlinux 0x13757d6c mmc_free_host EXPORT_SYMBOL vmlinux 0x1378c6b7 __traceiter_kmalloc -EXPORT_SYMBOL vmlinux 0x13965d5e snd_ctl_boolean_stereo_info -EXPORT_SYMBOL vmlinux 0x139b26e7 param_set_charp -EXPORT_SYMBOL vmlinux 0x13b4fca2 vme_slave_request -EXPORT_SYMBOL vmlinux 0x13b51c62 padata_alloc_shell +EXPORT_SYMBOL vmlinux 0x13792da9 neigh_update +EXPORT_SYMBOL vmlinux 0x139c396d phy_aneg_done +EXPORT_SYMBOL vmlinux 0x13b788c5 param_ops_long +EXPORT_SYMBOL vmlinux 0x13bd6197 eth_header_cache +EXPORT_SYMBOL vmlinux 0x13be5fee xfrm_input_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x13c3bc26 generic_error_remove_page +EXPORT_SYMBOL vmlinux 0x13c6032f scsi_unblock_requests EXPORT_SYMBOL vmlinux 0x13cead77 __SCK__tp_func_kmem_cache_alloc_node EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out EXPORT_SYMBOL vmlinux 0x13d928f5 __SCK__tp_func_kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0x13e32161 neigh_connected_output +EXPORT_SYMBOL vmlinux 0x13dea726 mdiobus_get_phy +EXPORT_SYMBOL vmlinux 0x13f2814d __ip_mc_dec_group EXPORT_SYMBOL vmlinux 0x13f42152 system_entering_hibernation -EXPORT_SYMBOL vmlinux 0x13f74a50 amba_release_regions +EXPORT_SYMBOL vmlinux 0x1405fc72 phy_ethtool_nway_reset EXPORT_SYMBOL vmlinux 0x140cef8e cmxgcr_lock +EXPORT_SYMBOL vmlinux 0x140eba3d scsi_print_sense +EXPORT_SYMBOL vmlinux 0x14149031 xfrm_state_flush +EXPORT_SYMBOL vmlinux 0x141b50eb unix_get_socket +EXPORT_SYMBOL vmlinux 0x1420f2b4 unregister_binfmt EXPORT_SYMBOL vmlinux 0x1435c5ce __SCK__tp_func_kmalloc_node -EXPORT_SYMBOL vmlinux 0x143e555f pm_vt_switch_unregister -EXPORT_SYMBOL vmlinux 0x14440a6a kill_litter_super +EXPORT_SYMBOL vmlinux 0x14431efb ip_frag_init +EXPORT_SYMBOL vmlinux 0x144526ef dev_uc_unsync EXPORT_SYMBOL vmlinux 0x1451e8e5 vm_zone_stat -EXPORT_SYMBOL vmlinux 0x1455a882 bio_endio EXPORT_SYMBOL vmlinux 0x14605535 dma_fence_context_alloc EXPORT_SYMBOL vmlinux 0x146289b7 crc16_table -EXPORT_SYMBOL vmlinux 0x147541ba scsi_block_when_processing_errors -EXPORT_SYMBOL vmlinux 0x149da1c1 unregister_binfmt -EXPORT_SYMBOL vmlinux 0x14a72bd6 netdev_next_lower_dev_rcu -EXPORT_SYMBOL vmlinux 0x14b1ddf9 simple_write_begin -EXPORT_SYMBOL vmlinux 0x14c1dcdd free_inode_nonrcu +EXPORT_SYMBOL vmlinux 0x146c8adc tcf_em_register +EXPORT_SYMBOL vmlinux 0x147201f6 xfrm_state_free +EXPORT_SYMBOL vmlinux 0x1476c234 rtnl_link_get_net +EXPORT_SYMBOL vmlinux 0x147c7fd5 inet_sendmsg +EXPORT_SYMBOL vmlinux 0x14820ece pci_request_selected_regions_exclusive +EXPORT_SYMBOL vmlinux 0x14844b0b tcp_rcv_established +EXPORT_SYMBOL vmlinux 0x1495c147 __filemap_set_wb_err +EXPORT_SYMBOL vmlinux 0x149941d0 arp_xmit +EXPORT_SYMBOL vmlinux 0x14abcc26 jbd2_journal_inode_ranged_wait +EXPORT_SYMBOL vmlinux 0x14b2dc26 mmc_unregister_driver +EXPORT_SYMBOL vmlinux 0x14b4791f param_get_bool EXPORT_SYMBOL vmlinux 0x14d4a9c5 _change_bit -EXPORT_SYMBOL vmlinux 0x14dc62b1 ip_tunnel_header_ops -EXPORT_SYMBOL vmlinux 0x151e4c7a input_register_handle +EXPORT_SYMBOL vmlinux 0x14d5f9e9 cqhci_init +EXPORT_SYMBOL vmlinux 0x14e98b54 scsi_add_device +EXPORT_SYMBOL vmlinux 0x15016ba1 tcf_action_update_stats EXPORT_SYMBOL vmlinux 0x151f4898 schedule_timeout_uninterruptible +EXPORT_SYMBOL vmlinux 0x1525e66c mmc_gpio_set_cd_isr EXPORT_SYMBOL vmlinux 0x1526b301 unix_tot_inflight -EXPORT_SYMBOL vmlinux 0x152e7bfe end_buffer_read_sync -EXPORT_SYMBOL vmlinux 0x15339024 tcp_init_sock -EXPORT_SYMBOL vmlinux 0x15443f2e of_mdio_find_device +EXPORT_SYMBOL vmlinux 0x153613d0 configfs_unregister_subsystem +EXPORT_SYMBOL vmlinux 0x153711e9 unregister_shrinker +EXPORT_SYMBOL vmlinux 0x15385bcd kernel_sendpage_locked +EXPORT_SYMBOL vmlinux 0x154c13c9 pci_map_rom EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy -EXPORT_SYMBOL vmlinux 0x15621e97 phy_device_register -EXPORT_SYMBOL vmlinux 0x1567d4bf pci_ep_cfs_remove_epf_group -EXPORT_SYMBOL vmlinux 0x1587befd rtnl_kfree_skbs -EXPORT_SYMBOL vmlinux 0x1587c936 nexthop_set_hw_flags -EXPORT_SYMBOL vmlinux 0x15964d5b reuseport_detach_prog -EXPORT_SYMBOL vmlinux 0x15994ea3 devm_ioremap_resource +EXPORT_SYMBOL vmlinux 0x1587e30d __ip4_datagram_connect EXPORT_SYMBOL vmlinux 0x15bafe29 unregister_md_cluster_operations EXPORT_SYMBOL vmlinux 0x15bed7a5 LZ4_decompress_safe_partial -EXPORT_SYMBOL vmlinux 0x15d083aa seq_bprintf +EXPORT_SYMBOL vmlinux 0x15c8c826 pcim_iomap_regions +EXPORT_SYMBOL vmlinux 0x15cd0fbc mmc_of_parse_clk_phase EXPORT_SYMBOL vmlinux 0x15d433c0 ZSTD_decompressStream -EXPORT_SYMBOL vmlinux 0x15df8ab9 __xfrm_route_forward -EXPORT_SYMBOL vmlinux 0x15e2d987 page_pool_create -EXPORT_SYMBOL vmlinux 0x15f1660d tcf_unregister_action -EXPORT_SYMBOL vmlinux 0x15f5ab07 arm_coherent_dma_ops -EXPORT_SYMBOL vmlinux 0x160b6f34 devm_register_reboot_notifier -EXPORT_SYMBOL vmlinux 0x16193c82 snd_jack_set_key +EXPORT_SYMBOL vmlinux 0x15ef60fa uart_add_one_port +EXPORT_SYMBOL vmlinux 0x1623551e nand_monolithic_read_page_raw EXPORT_SYMBOL vmlinux 0x162893fd hashlen_string EXPORT_SYMBOL vmlinux 0x1632bc21 kvasprintf_const +EXPORT_SYMBOL vmlinux 0x163c0e13 pci_wake_from_d3 EXPORT_SYMBOL vmlinux 0x163d2417 tegra_io_rail_power_off -EXPORT_SYMBOL vmlinux 0x1642322a softnet_data -EXPORT_SYMBOL vmlinux 0x1651bafe param_set_copystring EXPORT_SYMBOL vmlinux 0x16525cc4 xa_find -EXPORT_SYMBOL vmlinux 0x165a175f register_tcf_proto_ops -EXPORT_SYMBOL vmlinux 0x16611403 blk_queue_max_segment_size -EXPORT_SYMBOL vmlinux 0x1662ae93 ww_mutex_lock_interruptible -EXPORT_SYMBOL vmlinux 0x166d7075 dev_set_mac_address_user -EXPORT_SYMBOL vmlinux 0x16764b17 bmap -EXPORT_SYMBOL vmlinux 0x1686bbc6 devm_backlight_device_unregister -EXPORT_SYMBOL vmlinux 0x169502da pcie_capability_write_dword -EXPORT_SYMBOL vmlinux 0x16a16fe9 inet6_register_protosw -EXPORT_SYMBOL vmlinux 0x16a96df2 find_inode_nowait -EXPORT_SYMBOL vmlinux 0x16a98b0d xfrm_policy_delete -EXPORT_SYMBOL vmlinux 0x16aad0d4 ip_sock_set_pktinfo +EXPORT_SYMBOL vmlinux 0x1659f2e6 inet_csk_prepare_forced_close +EXPORT_SYMBOL vmlinux 0x16822722 nand_ecc_sw_bch_get_engine EXPORT_SYMBOL vmlinux 0x16adbf67 down_killable -EXPORT_SYMBOL vmlinux 0x16da4d22 __hw_addr_unsync_dev +EXPORT_SYMBOL vmlinux 0x16af28b2 i2c_del_adapter +EXPORT_SYMBOL vmlinux 0x16af4c27 sock_no_linger +EXPORT_SYMBOL vmlinux 0x16b7e32f flow_rule_match_control +EXPORT_SYMBOL vmlinux 0x16b9bef4 max8998_update_reg EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait -EXPORT_SYMBOL vmlinux 0x16e5c10c security_dentry_init_security -EXPORT_SYMBOL vmlinux 0x16e7fae3 mmc_retune_unpause -EXPORT_SYMBOL vmlinux 0x16f9e7d6 of_graph_get_remote_node -EXPORT_SYMBOL vmlinux 0x170940a6 tcf_qevent_handle -EXPORT_SYMBOL vmlinux 0x170e926b mmc_can_erase -EXPORT_SYMBOL vmlinux 0x1713ca78 unregister_mii_tstamp_controller -EXPORT_SYMBOL vmlinux 0x171e3ce9 t10_pi_type1_crc -EXPORT_SYMBOL vmlinux 0x1720c8c6 ip6_dst_hoplimit +EXPORT_SYMBOL vmlinux 0x16f5b0d2 dev_vprintk_emit +EXPORT_SYMBOL vmlinux 0x170954c8 __netdev_notify_peers +EXPORT_SYMBOL vmlinux 0x17186626 scsi_get_host_dev +EXPORT_SYMBOL vmlinux 0x17194031 tcf_qevent_destroy EXPORT_SYMBOL vmlinux 0x172b5482 dma_fence_array_create -EXPORT_SYMBOL vmlinux 0x176a9c22 udp_ioctl -EXPORT_SYMBOL vmlinux 0x177179b9 dev_set_allmulti +EXPORT_SYMBOL vmlinux 0x1749e51a nand_ecc_get_sw_engine +EXPORT_SYMBOL vmlinux 0x175095fc address_space_init_once +EXPORT_SYMBOL vmlinux 0x17640fd5 fscrypt_free_bounce_page +EXPORT_SYMBOL vmlinux 0x176579e9 write_cache_pages +EXPORT_SYMBOL vmlinux 0x17663603 scsi_alloc_sgtables +EXPORT_SYMBOL vmlinux 0x176daf57 scsi_vpd_tpg_id +EXPORT_SYMBOL vmlinux 0x1772ea96 rproc_coredump_using_sections EXPORT_SYMBOL vmlinux 0x178c4894 qe_upload_firmware -EXPORT_SYMBOL vmlinux 0x179560fb seq_putc -EXPORT_SYMBOL vmlinux 0x17a2dab5 inet_proto_csum_replace4 -EXPORT_SYMBOL vmlinux 0x17a84322 devfreq_update_status -EXPORT_SYMBOL vmlinux 0x17b13e02 d_set_fallthru -EXPORT_SYMBOL vmlinux 0x17b5ae72 mmc_can_trim -EXPORT_SYMBOL vmlinux 0x17b63d58 mr_vif_seq_next -EXPORT_SYMBOL vmlinux 0x17ba0ee5 add_to_page_cache_locked -EXPORT_SYMBOL vmlinux 0x17bf1ffe of_parse_phandle -EXPORT_SYMBOL vmlinux 0x17c0f3ce wait_for_key_construction -EXPORT_SYMBOL vmlinux 0x17c6800b mdiobus_unregister -EXPORT_SYMBOL vmlinux 0x17ca8870 inet_frag_queue_insert -EXPORT_SYMBOL vmlinux 0x17edcaf7 filemap_page_mkwrite -EXPORT_SYMBOL vmlinux 0x17ee0223 mpage_writepage -EXPORT_SYMBOL vmlinux 0x17ffbaa4 tcp_sendmsg -EXPORT_SYMBOL vmlinux 0x18109213 rawnand_sw_hamming_init -EXPORT_SYMBOL vmlinux 0x1815c9c4 console_start -EXPORT_SYMBOL vmlinux 0x1819030b uart_write_wakeup -EXPORT_SYMBOL vmlinux 0x181c2391 __blk_mq_end_request -EXPORT_SYMBOL vmlinux 0x1821b6a2 ip_sock_set_freebind -EXPORT_SYMBOL vmlinux 0x182b6787 security_path_unlink +EXPORT_SYMBOL vmlinux 0x1795a804 mr_fill_mroute +EXPORT_SYMBOL vmlinux 0x17a30f1d netdev_printk +EXPORT_SYMBOL vmlinux 0x17b0785c generic_file_llseek +EXPORT_SYMBOL vmlinux 0x17c4effd inode_init_owner +EXPORT_SYMBOL vmlinux 0x17d4ed6a jbd2_journal_load +EXPORT_SYMBOL vmlinux 0x17d86103 __dev_set_mtu +EXPORT_SYMBOL vmlinux 0x17f82db4 ata_std_end_eh +EXPORT_SYMBOL vmlinux 0x1800fb82 seq_release_private +EXPORT_SYMBOL vmlinux 0x180c90cb blk_mq_start_hw_queues +EXPORT_SYMBOL vmlinux 0x181d58c9 unregister_console +EXPORT_SYMBOL vmlinux 0x1829508f tcf_em_tree_dump +EXPORT_SYMBOL vmlinux 0x182dd55a __skb_pad +EXPORT_SYMBOL vmlinux 0x182ebc0f qdisc_watchdog_cancel EXPORT_SYMBOL vmlinux 0x18345b8e __bitmap_replace +EXPORT_SYMBOL vmlinux 0x184203c9 scsi_print_sense_hdr +EXPORT_SYMBOL vmlinux 0x185ab1d2 nf_register_sockopt +EXPORT_SYMBOL vmlinux 0x185b20b9 skb_dump EXPORT_SYMBOL vmlinux 0x185c32cf sgl_free -EXPORT_SYMBOL vmlinux 0x1869fae3 should_remove_suid -EXPORT_SYMBOL vmlinux 0x186c3f33 map_destroy +EXPORT_SYMBOL vmlinux 0x185d89d6 filemap_invalidate_lock_two EXPORT_SYMBOL vmlinux 0x18723e23 simple_map_init -EXPORT_SYMBOL vmlinux 0x187686ae can_nice +EXPORT_SYMBOL vmlinux 0x1873af66 ip6_frag_init EXPORT_SYMBOL vmlinux 0x187884a8 cpm_muram_free -EXPORT_SYMBOL vmlinux 0x1884a9d7 vma_set_file EXPORT_SYMBOL vmlinux 0x188ea314 jiffies_to_timespec64 -EXPORT_SYMBOL vmlinux 0x18a14cff xfrm_policy_walk -EXPORT_SYMBOL vmlinux 0x18a48636 inet_csk_accept -EXPORT_SYMBOL vmlinux 0x18ba05bd __dev_direct_xmit -EXPORT_SYMBOL vmlinux 0x18dafadc tcf_em_unregister -EXPORT_SYMBOL vmlinux 0x18e22ad8 buffer_check_dirty_writeback -EXPORT_SYMBOL vmlinux 0x18e4f1cd pci_set_master +EXPORT_SYMBOL vmlinux 0x1895e655 xp_can_alloc +EXPORT_SYMBOL vmlinux 0x18a5522a of_chosen +EXPORT_SYMBOL vmlinux 0x18b5eaff vfs_get_link +EXPORT_SYMBOL vmlinux 0x18baa04e mdio_device_free EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start -EXPORT_SYMBOL vmlinux 0x18eb4ed4 rt_dst_alloc -EXPORT_SYMBOL vmlinux 0x18f06b5d dmam_free_coherent -EXPORT_SYMBOL vmlinux 0x18f2ba92 netdev_has_any_upper_dev -EXPORT_SYMBOL vmlinux 0x1907d7e8 rproc_add -EXPORT_SYMBOL vmlinux 0x19087b66 vfs_get_super -EXPORT_SYMBOL vmlinux 0x190b6177 dev_uc_add -EXPORT_SYMBOL vmlinux 0x192270b6 param_set_bool -EXPORT_SYMBOL vmlinux 0x19229d47 of_get_property -EXPORT_SYMBOL vmlinux 0x192a3b67 dma_pool_create -EXPORT_SYMBOL vmlinux 0x19347822 pcim_set_mwi +EXPORT_SYMBOL vmlinux 0x18ec159d generic_file_fsync +EXPORT_SYMBOL vmlinux 0x18f46475 max8998_read_reg +EXPORT_SYMBOL vmlinux 0x1953a545 sock_no_sendmsg +EXPORT_SYMBOL vmlinux 0x1959150f sk_send_sigurg EXPORT_SYMBOL vmlinux 0x195c8596 cpu_rmap_update -EXPORT_SYMBOL vmlinux 0x19641724 inet6_add_protocol -EXPORT_SYMBOL vmlinux 0x196aa437 kernel_recvmsg -EXPORT_SYMBOL vmlinux 0x19724d81 inet_sk_rebuild_header +EXPORT_SYMBOL vmlinux 0x19625a5f inet_frag_kill +EXPORT_SYMBOL vmlinux 0x1973c0e7 dquot_get_state +EXPORT_SYMBOL vmlinux 0x197960cf mdiobus_unregister EXPORT_SYMBOL vmlinux 0x197dc3b3 omap_set_dma_src_burst_mode +EXPORT_SYMBOL vmlinux 0x197e28c3 inet_stream_connect EXPORT_SYMBOL vmlinux 0x1984d421 out_of_line_wait_on_bit EXPORT_SYMBOL vmlinux 0x198620d7 security_add_mnt_opt EXPORT_SYMBOL vmlinux 0x198788b4 snd_lookup_oss_minor_data -EXPORT_SYMBOL vmlinux 0x198d3847 mdiobus_scan +EXPORT_SYMBOL vmlinux 0x198a655c seq_printf +EXPORT_SYMBOL vmlinux 0x1999c9d9 remap_pfn_range EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp -EXPORT_SYMBOL vmlinux 0x199f20eb md_unregister_thread -EXPORT_SYMBOL vmlinux 0x19b5a044 generic_error_remove_page +EXPORT_SYMBOL vmlinux 0x19a046d0 rproc_del +EXPORT_SYMBOL vmlinux 0x19b1b62e finish_no_open +EXPORT_SYMBOL vmlinux 0x19bb8c03 jbd2_journal_dirty_metadata +EXPORT_SYMBOL vmlinux 0x19bc39c3 dev_queue_xmit EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec -EXPORT_SYMBOL vmlinux 0x19c9233f of_phy_find_device -EXPORT_SYMBOL vmlinux 0x19deb986 __put_user_ns -EXPORT_SYMBOL vmlinux 0x19e17e33 wireless_spy_update -EXPORT_SYMBOL vmlinux 0x19ee810d tegra_ivc_read_advance -EXPORT_SYMBOL vmlinux 0x19f1b745 sb_set_blocksize -EXPORT_SYMBOL vmlinux 0x1a0aafb7 cpu_tlb -EXPORT_SYMBOL vmlinux 0x1a113d26 reuseport_detach_sock +EXPORT_SYMBOL vmlinux 0x19d19bb9 nand_scan_with_ids +EXPORT_SYMBOL vmlinux 0x19e62107 vfs_readlink +EXPORT_SYMBOL vmlinux 0x19f4be72 tcp_shutdown +EXPORT_SYMBOL vmlinux 0x19fd6985 bio_copy_data_iter +EXPORT_SYMBOL vmlinux 0x1a00beed key_move +EXPORT_SYMBOL vmlinux 0x1a04d84c blk_queue_max_segment_size +EXPORT_SYMBOL vmlinux 0x1a067a61 uart_suspend_port +EXPORT_SYMBOL vmlinux 0x1a079626 udp_flush_pending_frames EXPORT_SYMBOL vmlinux 0x1a20c540 omap_vrfb_supported EXPORT_SYMBOL vmlinux 0x1a21d691 __ksize -EXPORT_SYMBOL vmlinux 0x1a4be8a6 buffer_migrate_page -EXPORT_SYMBOL vmlinux 0x1a4e5097 scsi_eh_restore_cmnd +EXPORT_SYMBOL vmlinux 0x1a2eff9e napi_gro_receive +EXPORT_SYMBOL vmlinux 0x1a390d6a tcp_sendmsg +EXPORT_SYMBOL vmlinux 0x1a3a565c notify_change +EXPORT_SYMBOL vmlinux 0x1a441763 phy_reset_after_clk_enable EXPORT_SYMBOL vmlinux 0x1a51c881 sg_pcopy_from_buffer EXPORT_SYMBOL vmlinux 0x1a65f4ad __arm_ioremap_pfn +EXPORT_SYMBOL vmlinux 0x1a7b9119 dm_kcopyd_zero EXPORT_SYMBOL vmlinux 0x1a7bc9ef xxh32 -EXPORT_SYMBOL vmlinux 0x1a8e0bcd alloc_netdev_mqs -EXPORT_SYMBOL vmlinux 0x1a990a17 sk_free EXPORT_SYMBOL vmlinux 0x1a9a433c prandom_u32_state -EXPORT_SYMBOL vmlinux 0x1aa31597 free_buffer_head +EXPORT_SYMBOL vmlinux 0x1aa2fc6a md_write_inc EXPORT_SYMBOL vmlinux 0x1aa86d18 rdma_dim -EXPORT_SYMBOL vmlinux 0x1ab558c8 mmc_request_done -EXPORT_SYMBOL vmlinux 0x1ab62aca security_path_mkdir -EXPORT_SYMBOL vmlinux 0x1ab93b2b snd_pcm_hw_rule_noresample -EXPORT_SYMBOL vmlinux 0x1abc800e md_write_inc -EXPORT_SYMBOL vmlinux 0x1ac0bd03 tcp_sock_set_keepidle +EXPORT_SYMBOL vmlinux 0x1aa9874b security_sock_rcv_skb +EXPORT_SYMBOL vmlinux 0x1ac3ec80 security_sk_classify_flow +EXPORT_SYMBOL vmlinux 0x1ac42715 devfreq_register_notifier +EXPORT_SYMBOL vmlinux 0x1ad1de51 sync_filesystem EXPORT_SYMBOL vmlinux 0x1ad1f2e7 _memcpy_fromio -EXPORT_SYMBOL vmlinux 0x1ad37170 xsk_tx_completed EXPORT_SYMBOL vmlinux 0x1aded990 ZSTD_DCtxWorkspaceBound -EXPORT_SYMBOL vmlinux 0x1ae30478 _snd_pcm_lib_alloc_vmalloc_buffer +EXPORT_SYMBOL vmlinux 0x1aed7316 sock_set_priority +EXPORT_SYMBOL vmlinux 0x1af1c6a5 snd_jack_add_new_kctl +EXPORT_SYMBOL vmlinux 0x1af56597 key_validate +EXPORT_SYMBOL vmlinux 0x1af59992 vfs_iocb_iter_read EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist -EXPORT_SYMBOL vmlinux 0x1b14812d pci_bus_write_config_dword -EXPORT_SYMBOL vmlinux 0x1b1e651d tcf_exts_validate +EXPORT_SYMBOL vmlinux 0x1b1ff298 padata_free_shell EXPORT_SYMBOL vmlinux 0x1b25f187 __xa_store -EXPORT_SYMBOL vmlinux 0x1b268c3a bio_alloc_bioset -EXPORT_SYMBOL vmlinux 0x1b3f54fe __dev_remove_pack -EXPORT_SYMBOL vmlinux 0x1b491f4c configfs_register_group -EXPORT_SYMBOL vmlinux 0x1b4ed476 blk_rq_map_integrity_sg +EXPORT_SYMBOL vmlinux 0x1b2db275 vme_bus_num +EXPORT_SYMBOL vmlinux 0x1b37d86d dm_kobject_release +EXPORT_SYMBOL vmlinux 0x1b5c9ef5 qdisc_put_unlocked +EXPORT_SYMBOL vmlinux 0x1b5f42f4 jbd2_journal_submit_inode_data_buffers EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton -EXPORT_SYMBOL vmlinux 0x1b647cda lease_modify +EXPORT_SYMBOL vmlinux 0x1b6cce84 snd_pcm_hw_constraint_pow2 EXPORT_SYMBOL vmlinux 0x1b777357 rdmacg_unregister_device +EXPORT_SYMBOL vmlinux 0x1b8689ce i2c_smbus_write_i2c_block_data +EXPORT_SYMBOL vmlinux 0x1b871808 i2c_smbus_write_byte EXPORT_SYMBOL vmlinux 0x1b965a53 kunmap_local_indexed -EXPORT_SYMBOL vmlinux 0x1b986b25 __dynamic_ibdev_dbg -EXPORT_SYMBOL vmlinux 0x1b9b1772 security_path_rename -EXPORT_SYMBOL vmlinux 0x1bca488c tc_setup_cb_call -EXPORT_SYMBOL vmlinux 0x1bd43fd3 scsi_bios_ptable -EXPORT_SYMBOL vmlinux 0x1be011c8 register_mii_tstamp_controller -EXPORT_SYMBOL vmlinux 0x1be1a9e0 pci_find_capability -EXPORT_SYMBOL vmlinux 0x1bff5781 clk_get +EXPORT_SYMBOL vmlinux 0x1b9ccda8 fuse_dequeue_forget +EXPORT_SYMBOL vmlinux 0x1bad7830 readahead_expand +EXPORT_SYMBOL vmlinux 0x1bba51a1 tcp_make_synack +EXPORT_SYMBOL vmlinux 0x1bd3e514 edac_mc_find +EXPORT_SYMBOL vmlinux 0x1be1a346 pcie_print_link_status +EXPORT_SYMBOL vmlinux 0x1beacdf6 pci_write_config_dword +EXPORT_SYMBOL vmlinux 0x1bedaedd write_dirty_buffer +EXPORT_SYMBOL vmlinux 0x1bf0471f neigh_direct_output EXPORT_SYMBOL vmlinux 0x1c114a6a vm_event_states -EXPORT_SYMBOL vmlinux 0x1c1bd7a4 inc_zone_page_state -EXPORT_SYMBOL vmlinux 0x1c389423 inet_csk_reset_keepalive_timer -EXPORT_SYMBOL vmlinux 0x1c3a6de1 xsk_tx_peek_desc -EXPORT_SYMBOL vmlinux 0x1c4d24f7 md_bitmap_start_sync +EXPORT_SYMBOL vmlinux 0x1c14daee path_has_submounts +EXPORT_SYMBOL vmlinux 0x1c370613 pcibios_bus_to_resource EXPORT_SYMBOL vmlinux 0x1c5e3878 icst525_idx2s -EXPORT_SYMBOL vmlinux 0x1c6a7034 kernel_getsockname -EXPORT_SYMBOL vmlinux 0x1c718833 pcie_relaxed_ordering_enabled +EXPORT_SYMBOL vmlinux 0x1c5f4872 tcp_getsockopt +EXPORT_SYMBOL vmlinux 0x1c62fe71 of_count_phandle_with_args EXPORT_SYMBOL vmlinux 0x1c777c5c dma_fence_add_callback -EXPORT_SYMBOL vmlinux 0x1c783f64 iov_iter_npages -EXPORT_SYMBOL vmlinux 0x1c7d5d91 skb_seq_read -EXPORT_SYMBOL vmlinux 0x1c81d6a5 msm_pinctrl_dev_pm_ops -EXPORT_SYMBOL vmlinux 0x1c8bf5e0 ethtool_rx_flow_rule_destroy -EXPORT_SYMBOL vmlinux 0x1c8c73de dqput -EXPORT_SYMBOL vmlinux 0x1c9bd06e proc_set_user -EXPORT_SYMBOL vmlinux 0x1ca317c6 flush_dcache_page -EXPORT_SYMBOL vmlinux 0x1cade63e fscrypt_decrypt_pagecache_blocks -EXPORT_SYMBOL vmlinux 0x1cb5ebfc __sk_mem_raise_allocated -EXPORT_SYMBOL vmlinux 0x1cbc74a7 rproc_vq_interrupt +EXPORT_SYMBOL vmlinux 0x1ca61bf7 truncate_inode_pages_range +EXPORT_SYMBOL vmlinux 0x1caada41 of_translate_address +EXPORT_SYMBOL vmlinux 0x1cac8b63 phy_suspend EXPORT_SYMBOL vmlinux 0x1cc11154 __SCK__tp_func_mmap_lock_start_locking -EXPORT_SYMBOL vmlinux 0x1cc94112 devm_pci_remap_cfgspace +EXPORT_SYMBOL vmlinux 0x1ccf14c3 proc_create_data +EXPORT_SYMBOL vmlinux 0x1cd4978a page_readlink +EXPORT_SYMBOL vmlinux 0x1cd8b4ba cpufreq_generic_suspend EXPORT_SYMBOL vmlinux 0x1d027e4b snd_pcm_format_signed -EXPORT_SYMBOL vmlinux 0x1d2a2d7f inet_csk_complete_hashdance -EXPORT_SYMBOL vmlinux 0x1d2b3567 pid_task -EXPORT_SYMBOL vmlinux 0x1d2ced43 unregister_netdev +EXPORT_SYMBOL vmlinux 0x1d1e8558 netdev_features_change EXPORT_SYMBOL vmlinux 0x1d2d6d15 wait_iff_congested -EXPORT_SYMBOL vmlinux 0x1d5e7b6d scsi_ioctl -EXPORT_SYMBOL vmlinux 0x1d63e507 scsi_device_lookup_by_target -EXPORT_SYMBOL vmlinux 0x1d715df2 mount_bdev +EXPORT_SYMBOL vmlinux 0x1d5c2e07 __mdiobus_write +EXPORT_SYMBOL vmlinux 0x1d754cf6 kern_unmount +EXPORT_SYMBOL vmlinux 0x1d7643f3 d_add EXPORT_SYMBOL vmlinux 0x1d796395 hdmi_drm_infoframe_pack -EXPORT_SYMBOL vmlinux 0x1d7f9873 netdev_set_num_tc -EXPORT_SYMBOL vmlinux 0x1d808e7e generic_write_checks -EXPORT_SYMBOL vmlinux 0x1d92b368 devm_clk_get_optional -EXPORT_SYMBOL vmlinux 0x1da81b64 backlight_device_unregister -EXPORT_SYMBOL vmlinux 0x1dad7a16 jbd2_complete_transaction -EXPORT_SYMBOL vmlinux 0x1dc06b4f unregister_cdrom -EXPORT_SYMBOL vmlinux 0x1dc5e239 sock_i_uid +EXPORT_SYMBOL vmlinux 0x1d7b3111 ppp_register_channel +EXPORT_SYMBOL vmlinux 0x1da4cae7 pci_find_bus +EXPORT_SYMBOL vmlinux 0x1dabb797 netdev_master_upper_dev_get +EXPORT_SYMBOL vmlinux 0x1dbbac50 freezing_slow_path EXPORT_SYMBOL vmlinux 0x1dc6c93b lookup_user_key +EXPORT_SYMBOL vmlinux 0x1dcc9160 fs_param_is_enum EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap -EXPORT_SYMBOL vmlinux 0x1dd64f33 ip6tun_encaps -EXPORT_SYMBOL vmlinux 0x1ddd643c flow_hash_from_keys EXPORT_SYMBOL vmlinux 0x1ddd9f26 nla_put_64bit EXPORT_SYMBOL vmlinux 0x1de4ccb2 get_sg_io_hdr EXPORT_SYMBOL vmlinux 0x1de59c22 qcom_scm_ice_invalidate_key -EXPORT_SYMBOL vmlinux 0x1de8b392 ptp_find_pin_unlocked -EXPORT_SYMBOL vmlinux 0x1df10c1b dev_add_pack -EXPORT_SYMBOL vmlinux 0x1df26714 simple_nosetlease -EXPORT_SYMBOL vmlinux 0x1dfdab98 vlan_dev_vlan_id -EXPORT_SYMBOL vmlinux 0x1e031445 wait_on_page_private_2 +EXPORT_SYMBOL vmlinux 0x1decd82c dev_get_iflink EXPORT_SYMBOL vmlinux 0x1e0373fc imx_scu_irq_group_enable +EXPORT_SYMBOL vmlinux 0x1e0439ba snd_pcm_hw_constraint_step EXPORT_SYMBOL vmlinux 0x1e0a0c24 mod_timer_pending -EXPORT_SYMBOL vmlinux 0x1e17bf1b ipv6_sock_mc_drop +EXPORT_SYMBOL vmlinux 0x1e0c7189 d_instantiate EXPORT_SYMBOL vmlinux 0x1e1e140e ns_to_timespec64 -EXPORT_SYMBOL vmlinux 0x1e358bbf pci_find_bus -EXPORT_SYMBOL vmlinux 0x1e3f6a3e serial8250_set_isa_configurator -EXPORT_SYMBOL vmlinux 0x1e53254e posix_test_lock -EXPORT_SYMBOL vmlinux 0x1e578114 write_dirty_buffer +EXPORT_SYMBOL vmlinux 0x1e39c9ea of_graph_get_endpoint_by_regs +EXPORT_SYMBOL vmlinux 0x1e3bc279 iptun_encaps +EXPORT_SYMBOL vmlinux 0x1e431ee6 jbd2_transaction_committed +EXPORT_SYMBOL vmlinux 0x1e43ccad i2c_put_adapter +EXPORT_SYMBOL vmlinux 0x1e453a48 devm_clk_get +EXPORT_SYMBOL vmlinux 0x1e487d2f __find_get_block +EXPORT_SYMBOL vmlinux 0x1e631b87 inet_proto_csum_replace16 +EXPORT_SYMBOL vmlinux 0x1e659aab dcb_ieee_getapp_mask EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr -EXPORT_SYMBOL vmlinux 0x1e927d5f __skb_try_recv_datagram +EXPORT_SYMBOL vmlinux 0x1e7f01d9 ethtool_op_get_link EXPORT_SYMBOL vmlinux 0x1e96f43d __cpu_possible_mask -EXPORT_SYMBOL vmlinux 0x1e9a2c04 poll_freewait EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu -EXPORT_SYMBOL vmlinux 0x1eb5d721 dev_get_flags +EXPORT_SYMBOL vmlinux 0x1ea2da2b bio_integrity_add_page +EXPORT_SYMBOL vmlinux 0x1eacc8d6 filemap_fdatawrite EXPORT_SYMBOL vmlinux 0x1eb64646 div64_s64 +EXPORT_SYMBOL vmlinux 0x1ec4c870 generic_file_direct_write +EXPORT_SYMBOL vmlinux 0x1ed9d315 sk_dst_check EXPORT_SYMBOL vmlinux 0x1edb69d6 ktime_get_raw_ts64 EXPORT_SYMBOL vmlinux 0x1edb6dc0 __nla_put_64bit -EXPORT_SYMBOL vmlinux 0x1efeec77 cros_ec_get_host_event -EXPORT_SYMBOL vmlinux 0x1f04eb01 mipi_dsi_dcs_set_display_brightness -EXPORT_SYMBOL vmlinux 0x1f05dc6c inet_addr_type -EXPORT_SYMBOL vmlinux 0x1f0e479e tcf_qevent_validate_change -EXPORT_SYMBOL vmlinux 0x1f2afb7e genphy_config_eee_advert -EXPORT_SYMBOL vmlinux 0x1f4d1f7c phy_start +EXPORT_SYMBOL vmlinux 0x1ee557d8 netdev_lower_get_next +EXPORT_SYMBOL vmlinux 0x1ee68f3b _dev_alert +EXPORT_SYMBOL vmlinux 0x1f05f784 seq_dentry +EXPORT_SYMBOL vmlinux 0x1f2c3a88 tcp_sock_set_nodelay +EXPORT_SYMBOL vmlinux 0x1f38456c register_sound_special EXPORT_SYMBOL vmlinux 0x1f4d5778 kstrtoll_from_user -EXPORT_SYMBOL vmlinux 0x1f4e9789 blk_queue_physical_block_size -EXPORT_SYMBOL vmlinux 0x1f582fe1 serial8250_do_set_termios -EXPORT_SYMBOL vmlinux 0x1f67a74d sock_common_setsockopt -EXPORT_SYMBOL vmlinux 0x1f82cda5 __nlmsg_put -EXPORT_SYMBOL vmlinux 0x1f85f0e4 twl6040_get_pll -EXPORT_SYMBOL vmlinux 0x1f88e57c of_n_addr_cells -EXPORT_SYMBOL vmlinux 0x1f8ab104 snd_pcm_new_internal -EXPORT_SYMBOL vmlinux 0x1f9bb21f pci_enable_ptm +EXPORT_SYMBOL vmlinux 0x1f57dca6 gnet_stats_copy_basic_hw +EXPORT_SYMBOL vmlinux 0x1f7a1182 mntput +EXPORT_SYMBOL vmlinux 0x1f88670a devm_pci_remap_cfgspace +EXPORT_SYMBOL vmlinux 0x1f9aec6f dev_get_mac_address +EXPORT_SYMBOL vmlinux 0x1fa99833 fsync_bdev EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio +EXPORT_SYMBOL vmlinux 0x1fca37e0 scsi_block_requests +EXPORT_SYMBOL vmlinux 0x1fccee7a security_inode_getsecctx EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag +EXPORT_SYMBOL vmlinux 0x1fd3f251 dquot_quotactl_sysfile_ops +EXPORT_SYMBOL vmlinux 0x1fe1d5b2 __mmap_lock_do_trace_start_locking EXPORT_SYMBOL vmlinux 0x1fe4f0d8 get_mem_type -EXPORT_SYMBOL vmlinux 0x1ffa176f xfrm_lookup +EXPORT_SYMBOL vmlinux 0x1ff0267a skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x1ffa3df2 fs_param_is_bool +EXPORT_SYMBOL vmlinux 0x1ffd4e1f pldmfw_flash_image EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul EXPORT_SYMBOL vmlinux 0x200036a3 ip_tunnel_metadata_cnt -EXPORT_SYMBOL vmlinux 0x20011e66 __skb_checksum_complete EXPORT_SYMBOL vmlinux 0x20070ea2 _atomic_dec_and_lock_irqsave EXPORT_SYMBOL vmlinux 0x200b2041 in6addr_any -EXPORT_SYMBOL vmlinux 0x2027b3c7 d_path -EXPORT_SYMBOL vmlinux 0x203dc6fa dev_uc_sync_multiple -EXPORT_SYMBOL vmlinux 0x204a15ba fb_show_logo +EXPORT_SYMBOL vmlinux 0x200dbc9f mmc_can_discard +EXPORT_SYMBOL vmlinux 0x202872a5 skb_unlink +EXPORT_SYMBOL vmlinux 0x20362ca0 eth_mac_addr +EXPORT_SYMBOL vmlinux 0x20453f5e key_invalidate EXPORT_SYMBOL vmlinux 0x204af5b5 netlbl_audit_start EXPORT_SYMBOL vmlinux 0x204c19f5 tcp_alloc_md5sig_pool EXPORT_SYMBOL vmlinux 0x204c5067 scsi_dev_info_add_list -EXPORT_SYMBOL vmlinux 0x204eaea5 phy_error -EXPORT_SYMBOL vmlinux 0x205e152a neigh_seq_start -EXPORT_SYMBOL vmlinux 0x206ebd3c sync_filesystem +EXPORT_SYMBOL vmlinux 0x20536f49 bdi_alloc +EXPORT_SYMBOL vmlinux 0x2060bc40 cdrom_open +EXPORT_SYMBOL vmlinux 0x206f93c1 sock_set_reuseaddr EXPORT_SYMBOL vmlinux 0x2072b8b4 unregister_sysctl_table -EXPORT_SYMBOL vmlinux 0x2078fe12 netlink_kernel_release -EXPORT_SYMBOL vmlinux 0x208c8765 dev_mc_sync_multiple -EXPORT_SYMBOL vmlinux 0x208dfb4f block_commit_write -EXPORT_SYMBOL vmlinux 0x208f8642 of_iomap -EXPORT_SYMBOL vmlinux 0x20924800 mmc_start_request -EXPORT_SYMBOL vmlinux 0x2096ce81 tcp_mss_to_mtu -EXPORT_SYMBOL vmlinux 0x2098fe8f blk_rq_map_kern -EXPORT_SYMBOL vmlinux 0x20a2c557 elv_rb_find +EXPORT_SYMBOL vmlinux 0x20884fdb xfrm_state_check_expire +EXPORT_SYMBOL vmlinux 0x20906532 msi_desc_to_pci_dev +EXPORT_SYMBOL vmlinux 0x20908c36 kill_fasync EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data -EXPORT_SYMBOL vmlinux 0x20a9250f xfrm_lookup_route -EXPORT_SYMBOL vmlinux 0x20c9c720 unlock_page_memcg -EXPORT_SYMBOL vmlinux 0x20d31196 tegra_dfll_runtime_suspend +EXPORT_SYMBOL vmlinux 0x20bcbec0 tcf_exts_change +EXPORT_SYMBOL vmlinux 0x20c4c3d8 unregister_nexthop_notifier EXPORT_SYMBOL vmlinux 0x20d65e40 fb_find_nearest_mode -EXPORT_SYMBOL vmlinux 0x20d7fcc5 pci_enable_device -EXPORT_SYMBOL vmlinux 0x20de20ad user_path_create -EXPORT_SYMBOL vmlinux 0x20e10feb dquot_claim_space_nodirty -EXPORT_SYMBOL vmlinux 0x20f7b576 init_pseudo -EXPORT_SYMBOL vmlinux 0x20f7fbc8 page_address +EXPORT_SYMBOL vmlinux 0x20db21fd handle_edge_irq +EXPORT_SYMBOL vmlinux 0x20f46019 vmf_insert_mixed +EXPORT_SYMBOL vmlinux 0x20f62d4c skb_vlan_push +EXPORT_SYMBOL vmlinux 0x20fa6d2b security_inode_invalidate_secctx EXPORT_SYMBOL vmlinux 0x21059cd7 audit_log_task_context EXPORT_SYMBOL vmlinux 0x21110dbf mmioset EXPORT_SYMBOL vmlinux 0x211331fa __divsi3 +EXPORT_SYMBOL vmlinux 0x2114373a devm_rproc_add EXPORT_SYMBOL vmlinux 0x211ee9bc qcom_scm_assign_mem -EXPORT_SYMBOL vmlinux 0x212110c1 put_disk -EXPORT_SYMBOL vmlinux 0x2121fa9d ptp_clock_event -EXPORT_SYMBOL vmlinux 0x21334394 of_node_name_prefix -EXPORT_SYMBOL vmlinux 0x213650ae xfrm_replay_seqhi -EXPORT_SYMBOL vmlinux 0x21377fe4 ilookup5_nowait +EXPORT_SYMBOL vmlinux 0x213a4f4e __d_drop EXPORT_SYMBOL vmlinux 0x213e4965 ps2_is_keyboard_id -EXPORT_SYMBOL vmlinux 0x2145827e follow_up +EXPORT_SYMBOL vmlinux 0x2141f2c9 skb_flow_dissect_ct EXPORT_SYMBOL vmlinux 0x215a8ec8 slhc_init +EXPORT_SYMBOL vmlinux 0x2169ecbe km_policy_notify EXPORT_SYMBOL vmlinux 0x216d759a mmiocpy -EXPORT_SYMBOL vmlinux 0x21806ea4 skb_copy -EXPORT_SYMBOL vmlinux 0x21acfa02 nf_unregister_net_hooks +EXPORT_SYMBOL vmlinux 0x2174fb7f filemap_fdatawait_range +EXPORT_SYMBOL vmlinux 0x217afa7f mmc_set_blocklen +EXPORT_SYMBOL vmlinux 0x2192f6df mpage_readahead +EXPORT_SYMBOL vmlinux 0x2193583f __traceiter_spi_transfer_start +EXPORT_SYMBOL vmlinux 0x21a81f85 of_platform_bus_probe +EXPORT_SYMBOL vmlinux 0x21b58c49 kunmap_high EXPORT_SYMBOL vmlinux 0x21bdb523 errseq_check_and_advance EXPORT_SYMBOL vmlinux 0x21be37e1 hdmi_avi_infoframe_check -EXPORT_SYMBOL vmlinux 0x21cb41cc find_get_pages_contig -EXPORT_SYMBOL vmlinux 0x21d84429 tty_write_room -EXPORT_SYMBOL vmlinux 0x21db8ac1 phy_support_asym_pause -EXPORT_SYMBOL vmlinux 0x21dd9a49 tcf_idr_check_alloc +EXPORT_SYMBOL vmlinux 0x21c10482 jbd2_journal_init_jbd_inode EXPORT_SYMBOL vmlinux 0x21e13cb3 inet_peer_xrlim_allow -EXPORT_SYMBOL vmlinux 0x21f5dab4 vfs_statfs EXPORT_SYMBOL vmlinux 0x21f7eb8f claim_fiq -EXPORT_SYMBOL vmlinux 0x22076328 fscrypt_encrypt_block_inplace +EXPORT_SYMBOL vmlinux 0x21fa3368 skb_queue_head EXPORT_SYMBOL vmlinux 0x220c7021 tegra_io_pad_power_disable -EXPORT_SYMBOL vmlinux 0x220cdaa7 nand_ecc_get_sw_engine -EXPORT_SYMBOL vmlinux 0x2211d4d9 ip_fraglist_init EXPORT_SYMBOL vmlinux 0x2220bd48 hdmi_drm_infoframe_pack_only EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq -EXPORT_SYMBOL vmlinux 0x2273f0cf linkwatch_fire_event +EXPORT_SYMBOL vmlinux 0x2276a137 udp_lib_setsockopt EXPORT_SYMBOL vmlinux 0x2277d558 mx53_revision -EXPORT_SYMBOL vmlinux 0x2294371e of_translate_address -EXPORT_SYMBOL vmlinux 0x229b6b2c pci_unregister_driver -EXPORT_SYMBOL vmlinux 0x229b832d pci_rebar_get_possible_sizes -EXPORT_SYMBOL vmlinux 0x229e083e sock_no_sendmsg_locked -EXPORT_SYMBOL vmlinux 0x22a14440 rawnand_sw_hamming_calculate -EXPORT_SYMBOL vmlinux 0x22a19112 ethtool_notify -EXPORT_SYMBOL vmlinux 0x22a3dced passthru_features_check -EXPORT_SYMBOL vmlinux 0x22a6db23 rtc_add_group -EXPORT_SYMBOL vmlinux 0x22b142ec tcf_em_tree_validate +EXPORT_SYMBOL vmlinux 0x227ea21d vme_master_request +EXPORT_SYMBOL vmlinux 0x2290f3e4 max8925_bulk_read +EXPORT_SYMBOL vmlinux 0x22a3056d inode_newsize_ok +EXPORT_SYMBOL vmlinux 0x22a3da89 __cancel_dirty_page +EXPORT_SYMBOL vmlinux 0x22ac29f1 mipi_dsi_dcs_write +EXPORT_SYMBOL vmlinux 0x22b1c34d tcf_action_set_ctrlact EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound -EXPORT_SYMBOL vmlinux 0x22be15d1 udp_seq_start -EXPORT_SYMBOL vmlinux 0x22d23e5b clear_page_dirty_for_io -EXPORT_SYMBOL vmlinux 0x22dd3a23 md_error -EXPORT_SYMBOL vmlinux 0x22eed277 register_filesystem -EXPORT_SYMBOL vmlinux 0x22f340d4 netdev_refcnt_read -EXPORT_SYMBOL vmlinux 0x23213be5 irq_set_chip -EXPORT_SYMBOL vmlinux 0x2341d615 input_match_device_id +EXPORT_SYMBOL vmlinux 0x22b70f0b rt_dst_clone +EXPORT_SYMBOL vmlinux 0x22ed2081 __cleancache_invalidate_page +EXPORT_SYMBOL vmlinux 0x22ed317d cqhci_irq +EXPORT_SYMBOL vmlinux 0x22ee9512 tcp_sock_set_keepidle +EXPORT_SYMBOL vmlinux 0x22eefa3f nf_log_unset +EXPORT_SYMBOL vmlinux 0x22faf8aa snd_register_oss_device +EXPORT_SYMBOL vmlinux 0x230928bd unregister_framebuffer +EXPORT_SYMBOL vmlinux 0x2311c08e dev_alloc_name +EXPORT_SYMBOL vmlinux 0x231cc09e generic_block_bmap +EXPORT_SYMBOL vmlinux 0x232906c0 scsi_bios_ptable +EXPORT_SYMBOL vmlinux 0x232d314f kernel_recvmsg +EXPORT_SYMBOL vmlinux 0x23360b1a d_delete +EXPORT_SYMBOL vmlinux 0x235d1cf8 of_parse_phandle EXPORT_SYMBOL vmlinux 0x23619cff jiffies_64 EXPORT_SYMBOL vmlinux 0x2364c85a tasklet_init +EXPORT_SYMBOL vmlinux 0x2369df87 flow_indr_dev_unregister +EXPORT_SYMBOL vmlinux 0x23767875 genphy_read_mmd_unsupported +EXPORT_SYMBOL vmlinux 0x237d6729 serio_rescan +EXPORT_SYMBOL vmlinux 0x237e9b01 xfrm_state_walk EXPORT_SYMBOL vmlinux 0x238b099f mipi_dsi_packet_format_is_short -EXPORT_SYMBOL vmlinux 0x238eb2e2 jbd2_journal_force_commit -EXPORT_SYMBOL vmlinux 0x23b1ca41 neigh_table_clear +EXPORT_SYMBOL vmlinux 0x23a0660d request_firmware_into_buf +EXPORT_SYMBOL vmlinux 0x23aee2dd of_graph_get_remote_node +EXPORT_SYMBOL vmlinux 0x23b545eb mmc_retune_unpause +EXPORT_SYMBOL vmlinux 0x23b8c709 lookup_one_len_unlocked EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path -EXPORT_SYMBOL vmlinux 0x23d3f094 of_n_size_cells -EXPORT_SYMBOL vmlinux 0x23d93347 fscrypt_zeroout_range +EXPORT_SYMBOL vmlinux 0x23ca8198 devm_pci_remap_iospace EXPORT_SYMBOL vmlinux 0x23ee13fd mb_cache_entry_find_first -EXPORT_SYMBOL vmlinux 0x23f994c8 pci_bus_alloc_resource +EXPORT_SYMBOL vmlinux 0x23f83a6a dev_uc_del EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node -EXPORT_SYMBOL vmlinux 0x2416eb97 ip6_xmit -EXPORT_SYMBOL vmlinux 0x241f3bc6 page_pool_update_nid +EXPORT_SYMBOL vmlinux 0x23fe1ba6 udp_read_sock +EXPORT_SYMBOL vmlinux 0x240382d2 ipv6_select_ident +EXPORT_SYMBOL vmlinux 0x240afc82 hdmi_infoframe_log +EXPORT_SYMBOL vmlinux 0x24207e0f bio_devname EXPORT_SYMBOL vmlinux 0x24212d86 __frontswap_invalidate_page EXPORT_SYMBOL vmlinux 0x24428be5 strncpy_from_user -EXPORT_SYMBOL vmlinux 0x244330eb pci_iomap -EXPORT_SYMBOL vmlinux 0x244942dd md_done_sync -EXPORT_SYMBOL vmlinux 0x2449e0d9 end_buffer_write_sync +EXPORT_SYMBOL vmlinux 0x244d9114 scsi_target_quiesce EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline -EXPORT_SYMBOL vmlinux 0x246591d0 flow_rule_match_mpls -EXPORT_SYMBOL vmlinux 0x24670e02 register_framebuffer -EXPORT_SYMBOL vmlinux 0x24678a65 i2c_put_adapter +EXPORT_SYMBOL vmlinux 0x245f6125 iw_handler_set_thrspy EXPORT_SYMBOL vmlinux 0x246790df idr_for_each -EXPORT_SYMBOL vmlinux 0x247326f5 finish_swait -EXPORT_SYMBOL vmlinux 0x24881127 vga_set_legacy_decoding -EXPORT_SYMBOL vmlinux 0x248ea760 mmc_gpio_get_cd +EXPORT_SYMBOL vmlinux 0x2468a23a nand_ecc_is_strong_enough +EXPORT_SYMBOL vmlinux 0x2480d9d1 max8998_bulk_write +EXPORT_SYMBOL vmlinux 0x2482249e serio_close +EXPORT_SYMBOL vmlinux 0x24838487 __vlan_find_dev_deep_rcu EXPORT_SYMBOL vmlinux 0x24a94b26 snd_info_get_line -EXPORT_SYMBOL vmlinux 0x24bb6120 unix_destruct_scm -EXPORT_SYMBOL vmlinux 0x24c65a3d path_is_under +EXPORT_SYMBOL vmlinux 0x24c1f360 nand_ecc_sw_hamming_init_ctx +EXPORT_SYMBOL vmlinux 0x24c5029e pcie_ptm_enabled EXPORT_SYMBOL vmlinux 0x24d273d1 add_timer -EXPORT_SYMBOL vmlinux 0x24de0b5a uart_suspend_port -EXPORT_SYMBOL vmlinux 0x24f7c10c cqhci_init -EXPORT_SYMBOL vmlinux 0x24fcb58d nonseekable_open -EXPORT_SYMBOL vmlinux 0x24fdc939 input_unregister_handle +EXPORT_SYMBOL vmlinux 0x24eebfe1 sock_set_mark EXPORT_SYMBOL vmlinux 0x250113b4 memory_read_from_buffer +EXPORT_SYMBOL vmlinux 0x250af8f1 mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x251bf623 inode_init_always +EXPORT_SYMBOL vmlinux 0x25219996 register_mii_tstamp_controller EXPORT_SYMBOL vmlinux 0x252332f1 __SCK__tp_func_mmap_lock_released -EXPORT_SYMBOL vmlinux 0x252a0b21 xfrm4_rcv -EXPORT_SYMBOL vmlinux 0x253f4185 of_graph_parse_endpoint -EXPORT_SYMBOL vmlinux 0x253fffff pagecache_get_page -EXPORT_SYMBOL vmlinux 0x2553d04e hash_and_copy_to_iter -EXPORT_SYMBOL vmlinux 0x255b5ccf nf_ip_checksum -EXPORT_SYMBOL vmlinux 0x256f01dc seq_put_decimal_ull -EXPORT_SYMBOL vmlinux 0x25785e58 sock_alloc +EXPORT_SYMBOL vmlinux 0x25246154 memory_cgrp_subsys +EXPORT_SYMBOL vmlinux 0x25281e69 __sk_queue_drop_skb +EXPORT_SYMBOL vmlinux 0x25331616 tcp_get_cookie_sock +EXPORT_SYMBOL vmlinux 0x25341448 blk_set_runtime_active +EXPORT_SYMBOL vmlinux 0x25398417 dma_resv_reserve_shared +EXPORT_SYMBOL vmlinux 0x25558e81 xp_raw_get_dma +EXPORT_SYMBOL vmlinux 0x255cabcc inet_shutdown EXPORT_SYMBOL vmlinux 0x257ae45c dma_fence_free +EXPORT_SYMBOL vmlinux 0x2581e7af regset_get_alloc EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid EXPORT_SYMBOL vmlinux 0x258d2f76 net_dim_get_tx_moderation -EXPORT_SYMBOL vmlinux 0x25b02c5f tty_insert_flip_string_flags -EXPORT_SYMBOL vmlinux 0x25b0d198 blk_queue_update_dma_alignment -EXPORT_SYMBOL vmlinux 0x25b2f9a2 phy_driver_register -EXPORT_SYMBOL vmlinux 0x25bda583 i2c_smbus_write_byte -EXPORT_SYMBOL vmlinux 0x25c60d64 tty_chars_in_buffer +EXPORT_SYMBOL vmlinux 0x2595cb83 devfreq_resume_device +EXPORT_SYMBOL vmlinux 0x259c836c kthread_associate_blkcg +EXPORT_SYMBOL vmlinux 0x25ae3200 snd_card_file_remove EXPORT_SYMBOL vmlinux 0x25e58a09 hdmi_avi_infoframe_init EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free -EXPORT_SYMBOL vmlinux 0x2605da6d fib_default_rule_add -EXPORT_SYMBOL vmlinux 0x26128450 blk_queue_dma_alignment -EXPORT_SYMBOL vmlinux 0x2616a1f6 phy_set_asym_pause -EXPORT_SYMBOL vmlinux 0x26343bf5 omap_rtc_power_off_program +EXPORT_SYMBOL vmlinux 0x261676f2 bio_kmalloc +EXPORT_SYMBOL vmlinux 0x261e9f13 page_pool_destroy +EXPORT_SYMBOL vmlinux 0x26252c8d csum_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0x263220b9 napi_disable EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions -EXPORT_SYMBOL vmlinux 0x265394fa tty_wait_until_sent -EXPORT_SYMBOL vmlinux 0x2658b320 pm860x_reg_write -EXPORT_SYMBOL vmlinux 0x26599e3d __netdev_notify_peers -EXPORT_SYMBOL vmlinux 0x26692576 pcie_capability_write_word -EXPORT_SYMBOL vmlinux 0x266e68ac eth_type_trans -EXPORT_SYMBOL vmlinux 0x267bfe7f vfs_fsync_range +EXPORT_SYMBOL vmlinux 0x264b83e8 kthread_create_worker_on_cpu +EXPORT_SYMBOL vmlinux 0x264eed49 vme_bus_type +EXPORT_SYMBOL vmlinux 0x2650e6e4 lru_cache_add +EXPORT_SYMBOL vmlinux 0x2656dc36 stream_open +EXPORT_SYMBOL vmlinux 0x267568c2 sock_efree +EXPORT_SYMBOL vmlinux 0x267db356 pci_dev_driver EXPORT_SYMBOL vmlinux 0x2688ec10 bitmap_zalloc EXPORT_SYMBOL vmlinux 0x2690e6c1 _find_next_zero_bit_le -EXPORT_SYMBOL vmlinux 0x269d904c kernel_read +EXPORT_SYMBOL vmlinux 0x26a6154f vfs_rename +EXPORT_SYMBOL vmlinux 0x26b5e85d skb_seq_read EXPORT_SYMBOL vmlinux 0x26bb950b __kfifo_from_user_r -EXPORT_SYMBOL vmlinux 0x26f07f02 dquot_initialize_needed -EXPORT_SYMBOL vmlinux 0x2702e3fb register_netdev +EXPORT_SYMBOL vmlinux 0x26c6792c snd_ctl_register_ioctl +EXPORT_SYMBOL vmlinux 0x26dfda0f inet_proto_csum_replace4 EXPORT_SYMBOL vmlinux 0x270ac400 sg_pcopy_to_buffer EXPORT_SYMBOL vmlinux 0x270cf88f dump_stack_lvl -EXPORT_SYMBOL vmlinux 0x272e2a1b phy_get_eee_err -EXPORT_SYMBOL vmlinux 0x2731c9e0 inc_node_state +EXPORT_SYMBOL vmlinux 0x272ec107 phy_read_paged +EXPORT_SYMBOL vmlinux 0x272f336e devfreq_update_status EXPORT_SYMBOL vmlinux 0x2733eaf7 scsi_dev_info_list_add_keyed -EXPORT_SYMBOL vmlinux 0x2736414e snd_card_free -EXPORT_SYMBOL vmlinux 0x273c64aa security_skb_classify_flow -EXPORT_SYMBOL vmlinux 0x274744e3 key_alloc +EXPORT_SYMBOL vmlinux 0x2737dcc9 seq_puts +EXPORT_SYMBOL vmlinux 0x27470a48 udp_poll EXPORT_SYMBOL vmlinux 0x27479d14 param_free_charp EXPORT_SYMBOL vmlinux 0x275f3d49 hdmi_vendor_infoframe_check +EXPORT_SYMBOL vmlinux 0x2760f8f1 flow_block_cb_incref +EXPORT_SYMBOL vmlinux 0x27668b00 of_match_device EXPORT_SYMBOL vmlinux 0x276a3a44 irq_stat EXPORT_SYMBOL vmlinux 0x27756bc8 scsi_sanitize_inquiry_string +EXPORT_SYMBOL vmlinux 0x277935d4 tc_setup_flow_action EXPORT_SYMBOL vmlinux 0x2782b393 xfrm_state_walk_init +EXPORT_SYMBOL vmlinux 0x27835274 t10_pi_type3_ip EXPORT_SYMBOL vmlinux 0x27864d57 memparse -EXPORT_SYMBOL vmlinux 0x27a06e81 devm_devfreq_unregister_opp_notifier -EXPORT_SYMBOL vmlinux 0x27a4dda5 kernel_accept +EXPORT_SYMBOL vmlinux 0x2790cdbc bdi_set_max_ratio EXPORT_SYMBOL vmlinux 0x27ae5281 nla_put -EXPORT_SYMBOL vmlinux 0x27aed5a8 __serio_register_driver -EXPORT_SYMBOL vmlinux 0x27b4577c skb_vlan_push EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync -EXPORT_SYMBOL vmlinux 0x27c42ca1 snd_timer_close -EXPORT_SYMBOL vmlinux 0x27eddd7a pci_request_irq -EXPORT_SYMBOL vmlinux 0x27f7b69c proc_symlink +EXPORT_SYMBOL vmlinux 0x27c4cd94 phy_loopback +EXPORT_SYMBOL vmlinux 0x27c62716 tcp_sock_set_user_timeout +EXPORT_SYMBOL vmlinux 0x27d61753 vme_unregister_bridge +EXPORT_SYMBOL vmlinux 0x27df60d2 scsi_rescan_device +EXPORT_SYMBOL vmlinux 0x28038693 get_user_pages_locked +EXPORT_SYMBOL vmlinux 0x28050b17 sock_init_data +EXPORT_SYMBOL vmlinux 0x280c334f vme_dma_request EXPORT_SYMBOL vmlinux 0x28118cb6 __get_user_1 -EXPORT_SYMBOL vmlinux 0x281366a2 kthread_associate_blkcg EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek -EXPORT_SYMBOL vmlinux 0x28203741 dquot_file_open -EXPORT_SYMBOL vmlinux 0x282820f0 snd_pcm_period_elapsed_under_stream_lock -EXPORT_SYMBOL vmlinux 0x286faa93 of_parse_phandle_with_args +EXPORT_SYMBOL vmlinux 0x2824d5bd csum_and_copy_from_iter +EXPORT_SYMBOL vmlinux 0x2845804a backlight_device_unregister +EXPORT_SYMBOL vmlinux 0x285af7f6 sock_wfree +EXPORT_SYMBOL vmlinux 0x286100ff PDE_DATA +EXPORT_SYMBOL vmlinux 0x2863b9c6 vfs_rmdir EXPORT_SYMBOL vmlinux 0x2875a315 utf32_to_utf8 +EXPORT_SYMBOL vmlinux 0x2877411e netlink_capable EXPORT_SYMBOL vmlinux 0x2878e15a idr_destroy -EXPORT_SYMBOL vmlinux 0x287c0a79 ps2_sliced_command -EXPORT_SYMBOL vmlinux 0x287d070c sk_stream_wait_memory -EXPORT_SYMBOL vmlinux 0x28819484 mntput -EXPORT_SYMBOL vmlinux 0x28a73518 neigh_changeaddr -EXPORT_SYMBOL vmlinux 0x28e3d088 clocksource_unregister -EXPORT_SYMBOL vmlinux 0x28eb18d8 inet_del_protocol -EXPORT_SYMBOL vmlinux 0x28f8ad62 skb_eth_push +EXPORT_SYMBOL vmlinux 0x28980b1b ip_output +EXPORT_SYMBOL vmlinux 0x28a88f49 dm_table_run_md_queue_async +EXPORT_SYMBOL vmlinux 0x28b1e885 sock_no_accept +EXPORT_SYMBOL vmlinux 0x28bd13c2 clocksource_change_rating +EXPORT_SYMBOL vmlinux 0x28bf5a9c dev_get_by_napi_id +EXPORT_SYMBOL vmlinux 0x28ce23bb would_dump +EXPORT_SYMBOL vmlinux 0x28d9f75e i2c_smbus_read_byte_data +EXPORT_SYMBOL vmlinux 0x28e5ffbd netdev_set_sb_channel EXPORT_SYMBOL vmlinux 0x28f94604 __ubsan_handle_builtin_unreachable -EXPORT_SYMBOL vmlinux 0x293128bd jbd2_journal_grab_journal_head +EXPORT_SYMBOL vmlinux 0x29023265 genlmsg_put +EXPORT_SYMBOL vmlinux 0x293b2f5a dm_unregister_target +EXPORT_SYMBOL vmlinux 0x2945e156 iw_handler_set_spy +EXPORT_SYMBOL vmlinux 0x29460d52 iov_iter_npages EXPORT_SYMBOL vmlinux 0x2950e3e2 kobject_get +EXPORT_SYMBOL vmlinux 0x2955f9c3 tcp_mtu_to_mss +EXPORT_SYMBOL vmlinux 0x29603056 nand_ecc_sw_hamming_get_engine EXPORT_SYMBOL vmlinux 0x29604158 napi_busy_loop -EXPORT_SYMBOL vmlinux 0x296c34bc __pagevec_release +EXPORT_SYMBOL vmlinux 0x296b9cda page_cache_next_miss +EXPORT_SYMBOL vmlinux 0x298ea557 filemap_check_errors EXPORT_SYMBOL vmlinux 0x29a47fe9 dma_fence_wait_any_timeout -EXPORT_SYMBOL vmlinux 0x29aaf3e8 bio_add_pc_page -EXPORT_SYMBOL vmlinux 0x29b0092d input_mt_report_pointer_emulation -EXPORT_SYMBOL vmlinux 0x29d9bf6c md_cluster_ops +EXPORT_SYMBOL vmlinux 0x29c241e0 udp_sendmsg EXPORT_SYMBOL vmlinux 0x29d9f26e cancel_delayed_work_sync -EXPORT_SYMBOL vmlinux 0x29ec61a5 clk_bulk_get_all -EXPORT_SYMBOL vmlinux 0x29f9bb89 vme_master_mmap -EXPORT_SYMBOL vmlinux 0x2a18334f __dst_destroy_metrics_generic -EXPORT_SYMBOL vmlinux 0x2a1e42a0 dma_map_resource -EXPORT_SYMBOL vmlinux 0x2a2ae4dd pm860x_set_bits +EXPORT_SYMBOL vmlinux 0x29fa28ce __d_lookup_done +EXPORT_SYMBOL vmlinux 0x2a01adff ethtool_virtdev_set_link_ksettings EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature +EXPORT_SYMBOL vmlinux 0x2a3493ed md_write_end EXPORT_SYMBOL vmlinux 0x2a3aa678 _test_and_clear_bit -EXPORT_SYMBOL vmlinux 0x2a3d1cef dma_async_tx_descriptor_init -EXPORT_SYMBOL vmlinux 0x2a4784a4 get_mem_cgroup_from_mm -EXPORT_SYMBOL vmlinux 0x2a4c92e3 unregister_tcf_proto_ops -EXPORT_SYMBOL vmlinux 0x2a5d1724 __check_sticky -EXPORT_SYMBOL vmlinux 0x2a6bc11c submit_bh -EXPORT_SYMBOL vmlinux 0x2a6fc27d flow_block_cb_incref -EXPORT_SYMBOL vmlinux 0x2a8b87e2 devm_release_resource +EXPORT_SYMBOL vmlinux 0x2a42aa68 inet_twsk_deschedule_put +EXPORT_SYMBOL vmlinux 0x2a622c3c cfb_copyarea +EXPORT_SYMBOL vmlinux 0x2a6396d6 seq_read +EXPORT_SYMBOL vmlinux 0x2a97d96d default_qdisc_ops EXPORT_SYMBOL vmlinux 0x2a9a3905 vme_master_get EXPORT_SYMBOL vmlinux 0x2aa0e4fc strncasecmp -EXPORT_SYMBOL vmlinux 0x2abb22d0 unpin_user_pages -EXPORT_SYMBOL vmlinux 0x2ac40a99 vga_put -EXPORT_SYMBOL vmlinux 0x2ad20988 mipi_dsi_dcs_write_buffer -EXPORT_SYMBOL vmlinux 0x2ae477b2 of_pci_range_to_resource -EXPORT_SYMBOL vmlinux 0x2aef7116 dma_resv_reserve_shared -EXPORT_SYMBOL vmlinux 0x2afaee53 __sk_receive_skb -EXPORT_SYMBOL vmlinux 0x2b005bc0 skb_find_text -EXPORT_SYMBOL vmlinux 0x2b0554aa __f_setown -EXPORT_SYMBOL vmlinux 0x2b3ddbbd of_find_node_opts_by_path -EXPORT_SYMBOL vmlinux 0x2b5c0ce3 get_acl +EXPORT_SYMBOL vmlinux 0x2aa0e64b nf_hook_slow_list +EXPORT_SYMBOL vmlinux 0x2ac2471f of_find_all_nodes +EXPORT_SYMBOL vmlinux 0x2acf7a75 pci_irq_get_affinity +EXPORT_SYMBOL vmlinux 0x2aeeb8c1 devm_input_allocate_device +EXPORT_SYMBOL vmlinux 0x2b10d10d tc6393xb_lcd_mode +EXPORT_SYMBOL vmlinux 0x2b209178 dma_resv_init +EXPORT_SYMBOL vmlinux 0x2b4549d4 phy_do_ioctl +EXPORT_SYMBOL vmlinux 0x2b5b725d tcf_exts_dump_stats EXPORT_SYMBOL vmlinux 0x2b68bd2f del_timer -EXPORT_SYMBOL vmlinux 0x2b74bdf0 touchscreen_parse_properties -EXPORT_SYMBOL vmlinux 0x2b79d987 generic_perform_write -EXPORT_SYMBOL vmlinux 0x2b96f047 phy_request_interrupt +EXPORT_SYMBOL vmlinux 0x2b7040f0 skb_copy_and_csum_bits +EXPORT_SYMBOL vmlinux 0x2b730cf9 fd_install +EXPORT_SYMBOL vmlinux 0x2b7dc308 vm_mmap +EXPORT_SYMBOL vmlinux 0x2b9142b0 phy_attached_info_irq +EXPORT_SYMBOL vmlinux 0x2b977787 md_bitmap_unplug EXPORT_SYMBOL vmlinux 0x2b99722a __cpu_active_mask EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock -EXPORT_SYMBOL vmlinux 0x2bb26533 pps_register_source -EXPORT_SYMBOL vmlinux 0x2bdb7b99 unpin_user_pages_dirty_lock -EXPORT_SYMBOL vmlinux 0x2be9c1e9 scsi_target_resume -EXPORT_SYMBOL vmlinux 0x2becc816 ipv6_chk_addr +EXPORT_SYMBOL vmlinux 0x2bc14d86 i2c_smbus_read_block_data +EXPORT_SYMBOL vmlinux 0x2bdf9f6b page_pool_put_page +EXPORT_SYMBOL vmlinux 0x2bdfa7b0 skb_set_owner_w +EXPORT_SYMBOL vmlinux 0x2bfd1d74 pm_vt_switch_required EXPORT_SYMBOL vmlinux 0x2bff5887 xa_destroy -EXPORT_SYMBOL vmlinux 0x2c01d876 nf_log_trace -EXPORT_SYMBOL vmlinux 0x2c03f6e6 param_set_ulong -EXPORT_SYMBOL vmlinux 0x2c16d8b3 inet_csk_prepare_forced_close -EXPORT_SYMBOL vmlinux 0x2c25654e vfs_ioctl +EXPORT_SYMBOL vmlinux 0x2c010f33 ilookup +EXPORT_SYMBOL vmlinux 0x2c17ec32 dquot_alloc_inode EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar EXPORT_SYMBOL vmlinux 0x2c329e54 tegra_powergate_sequence_power_up +EXPORT_SYMBOL vmlinux 0x2c3df6c2 tcf_chain_put_by_act EXPORT_SYMBOL vmlinux 0x2c42a97b _raw_write_lock_irq -EXPORT_SYMBOL vmlinux 0x2c4835fa empty_zero_page -EXPORT_SYMBOL vmlinux 0x2c528507 get_tree_bdev -EXPORT_SYMBOL vmlinux 0x2c56d9e6 con_set_default_unimap +EXPORT_SYMBOL vmlinux 0x2c43a874 register_netdevice_notifier_dev_net EXPORT_SYMBOL vmlinux 0x2c6b6974 __wait_on_bit_lock -EXPORT_SYMBOL vmlinux 0x2c6cb954 xfrm_state_flush -EXPORT_SYMBOL vmlinux 0x2c6eee2e ps2_sendbyte -EXPORT_SYMBOL vmlinux 0x2c7188f9 of_cpu_node_to_id +EXPORT_SYMBOL vmlinux 0x2c6c407d snd_unregister_device +EXPORT_SYMBOL vmlinux 0x2c6ee258 finish_swait EXPORT_SYMBOL vmlinux 0x2c7c8e9a pcibios_min_mem EXPORT_SYMBOL vmlinux 0x2c81ec75 __irq_regs -EXPORT_SYMBOL vmlinux 0x2c83bded unlock_new_inode -EXPORT_SYMBOL vmlinux 0x2cb96c89 iunique -EXPORT_SYMBOL vmlinux 0x2ccbee91 dst_release -EXPORT_SYMBOL vmlinux 0x2cf61d23 ps2_drain -EXPORT_SYMBOL vmlinux 0x2cf878d1 jbd2_journal_get_create_access -EXPORT_SYMBOL vmlinux 0x2cfb22ed xsk_tx_release +EXPORT_SYMBOL vmlinux 0x2c9fd256 map_destroy +EXPORT_SYMBOL vmlinux 0x2cc1a91e backlight_device_set_brightness +EXPORT_SYMBOL vmlinux 0x2cc925a4 __kmap_to_page +EXPORT_SYMBOL vmlinux 0x2cdb20b8 amba_driver_register +EXPORT_SYMBOL vmlinux 0x2cddf174 misc_deregister +EXPORT_SYMBOL vmlinux 0x2cdf2e22 __breadahead_gfp +EXPORT_SYMBOL vmlinux 0x2cebce23 dev_graft_qdisc +EXPORT_SYMBOL vmlinux 0x2cf2ae44 neigh_table_clear +EXPORT_SYMBOL vmlinux 0x2cfd2783 security_socket_socketpair EXPORT_SYMBOL vmlinux 0x2cfde9a2 warn_slowpath_fmt +EXPORT_SYMBOL vmlinux 0x2d0eff33 xfrm_state_unregister_afinfo EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock -EXPORT_SYMBOL vmlinux 0x2d20493f mipi_dsi_dcs_set_tear_off -EXPORT_SYMBOL vmlinux 0x2d261eb4 napi_schedule_prep -EXPORT_SYMBOL vmlinux 0x2d2ff905 _copy_from_iter +EXPORT_SYMBOL vmlinux 0x2d173059 simple_link EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged EXPORT_SYMBOL vmlinux 0x2d3385d3 system_wq -EXPORT_SYMBOL vmlinux 0x2d3700b2 nf_log_bind_pf +EXPORT_SYMBOL vmlinux 0x2d390f87 input_unregister_handle EXPORT_SYMBOL vmlinux 0x2d39b0a7 kstrdup +EXPORT_SYMBOL vmlinux 0x2d40fc2a crypto_sha512_update +EXPORT_SYMBOL vmlinux 0x2d43a3b5 ucc_of_parse_tdm +EXPORT_SYMBOL vmlinux 0x2d47cf2f __skb_recv_datagram EXPORT_SYMBOL vmlinux 0x2d4c773a hdmi_spd_infoframe_init EXPORT_SYMBOL vmlinux 0x2d4daef5 find_font -EXPORT_SYMBOL vmlinux 0x2d6f2f20 nand_read_oob_std +EXPORT_SYMBOL vmlinux 0x2d59650a xp_dma_sync_for_cpu_slow EXPORT_SYMBOL vmlinux 0x2d6fcc06 __kmalloc -EXPORT_SYMBOL vmlinux 0x2d807b54 inet6_csk_route_req +EXPORT_SYMBOL vmlinux 0x2d771b42 generic_pipe_buf_release +EXPORT_SYMBOL vmlinux 0x2d7a1ce9 param_set_hexint EXPORT_SYMBOL vmlinux 0x2d912bca dmi_get_bios_year EXPORT_SYMBOL vmlinux 0x2d994605 security_inode_copy_up_xattr -EXPORT_SYMBOL vmlinux 0x2d994a16 xfrm_state_lookup_byaddr -EXPORT_SYMBOL vmlinux 0x2d9f76f2 inet_csk_delete_keepalive_timer -EXPORT_SYMBOL vmlinux 0x2da15e0f devm_rproc_alloc -EXPORT_SYMBOL vmlinux 0x2da37382 devm_memunmap -EXPORT_SYMBOL vmlinux 0x2db67e99 pps_unregister_source -EXPORT_SYMBOL vmlinux 0x2dba0ec9 arp_create -EXPORT_SYMBOL vmlinux 0x2dbd2d74 blk_mq_stop_hw_queues -EXPORT_SYMBOL vmlinux 0x2dc18ac1 ipv6_find_hdr -EXPORT_SYMBOL vmlinux 0x2dc6618a __dquot_free_space -EXPORT_SYMBOL vmlinux 0x2dce59bc wireless_send_event +EXPORT_SYMBOL vmlinux 0x2d99a7da cros_ec_get_host_event +EXPORT_SYMBOL vmlinux 0x2dae092a mmc_wait_for_req_done +EXPORT_SYMBOL vmlinux 0x2dba020c vm_insert_page +EXPORT_SYMBOL vmlinux 0x2dbbec4a tcp_openreq_init_rwin +EXPORT_SYMBOL vmlinux 0x2dd489d9 uart_register_driver EXPORT_SYMBOL vmlinux 0x2de125c0 page_frag_alloc_align -EXPORT_SYMBOL vmlinux 0x2e046a57 in_dev_finish_destroy -EXPORT_SYMBOL vmlinux 0x2e0c5bc3 blk_mq_unique_tag +EXPORT_SYMBOL vmlinux 0x2df3b270 of_get_i2c_adapter_by_node +EXPORT_SYMBOL vmlinux 0x2df901e9 seq_open +EXPORT_SYMBOL vmlinux 0x2e013016 iw_handler_get_spy +EXPORT_SYMBOL vmlinux 0x2e08d912 get_phy_device +EXPORT_SYMBOL vmlinux 0x2e10c9a8 ac97_bus_type +EXPORT_SYMBOL vmlinux 0x2e1312d1 request_key_tag EXPORT_SYMBOL vmlinux 0x2e1ca751 clk_put -EXPORT_SYMBOL vmlinux 0x2e1d27a4 build_skb -EXPORT_SYMBOL vmlinux 0x2e286fcc d_make_root -EXPORT_SYMBOL vmlinux 0x2e2c13b7 mfd_cell_disable +EXPORT_SYMBOL vmlinux 0x2e25ed84 pci_bus_set_ops +EXPORT_SYMBOL vmlinux 0x2e29e1be page_pool_create +EXPORT_SYMBOL vmlinux 0x2e2c18d4 snd_ctl_unregister_ioctl EXPORT_SYMBOL vmlinux 0x2e439142 drm_get_panel_orientation_quirk -EXPORT_SYMBOL vmlinux 0x2e5713a5 pcim_enable_device -EXPORT_SYMBOL vmlinux 0x2e5cfa0a vme_slot_num +EXPORT_SYMBOL vmlinux 0x2e506bc3 save_stack_trace_tsk +EXPORT_SYMBOL vmlinux 0x2e5532bc netdev_reset_tc EXPORT_SYMBOL vmlinux 0x2e5fe036 __skb_ext_put -EXPORT_SYMBOL vmlinux 0x2e6392b3 sock_pfree -EXPORT_SYMBOL vmlinux 0x2e64aa41 mdiobus_read_nested -EXPORT_SYMBOL vmlinux 0x2e753683 phy_ethtool_ksettings_get -EXPORT_SYMBOL vmlinux 0x2e81fdd9 qdisc_watchdog_cancel -EXPORT_SYMBOL vmlinux 0x2e8b51fc scsi_add_host_with_dma -EXPORT_SYMBOL vmlinux 0x2eac5357 unlock_page +EXPORT_SYMBOL vmlinux 0x2e7b7a38 mdiobus_setup_mdiodev_from_board_info +EXPORT_SYMBOL vmlinux 0x2ea0136f generic_set_encrypted_ci_d_ops +EXPORT_SYMBOL vmlinux 0x2ea0ee00 phy_start_cable_test +EXPORT_SYMBOL vmlinux 0x2ea77c63 pagevec_lookup_range +EXPORT_SYMBOL vmlinux 0x2eaecdd0 iov_iter_advance +EXPORT_SYMBOL vmlinux 0x2ebe199c generic_file_open EXPORT_SYMBOL vmlinux 0x2ec524ad __kfifo_in_r EXPORT_SYMBOL vmlinux 0x2ec6bba0 errseq_set +EXPORT_SYMBOL vmlinux 0x2ed67450 dma_resv_fini EXPORT_SYMBOL vmlinux 0x2edeb3d9 posix_acl_from_xattr -EXPORT_SYMBOL vmlinux 0x2ee7f36b security_task_getsecid_obj -EXPORT_SYMBOL vmlinux 0x2ef29ff2 unpin_user_page -EXPORT_SYMBOL vmlinux 0x2efcc7a8 udp_lib_getsockopt -EXPORT_SYMBOL vmlinux 0x2efd926b seq_write +EXPORT_SYMBOL vmlinux 0x2ee9c64d neigh_ifdown +EXPORT_SYMBOL vmlinux 0x2ef02a19 sock_recv_errqueue +EXPORT_SYMBOL vmlinux 0x2ef9750e devm_rproc_alloc +EXPORT_SYMBOL vmlinux 0x2efb2249 copy_string_kernel +EXPORT_SYMBOL vmlinux 0x2efbc5ce inet_csk_accept +EXPORT_SYMBOL vmlinux 0x2f031ff9 param_get_short EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc -EXPORT_SYMBOL vmlinux 0x2f1871c7 blk_sync_queue EXPORT_SYMBOL vmlinux 0x2f1b0d62 ZSTD_insertBlock -EXPORT_SYMBOL vmlinux 0x2f2d1ed0 ip_frag_init EXPORT_SYMBOL vmlinux 0x2f2e91b2 security_ib_alloc_security EXPORT_SYMBOL vmlinux 0x2f333aab imx_scu_get_handle +EXPORT_SYMBOL vmlinux 0x2f35552c xfrm_input_register_afinfo EXPORT_SYMBOL vmlinux 0x2f3fcc93 nla_put_nohdr -EXPORT_SYMBOL vmlinux 0x2f4580d9 genphy_read_status_fixed EXPORT_SYMBOL vmlinux 0x2f50cbf5 proc_doulongvec_minmax +EXPORT_SYMBOL vmlinux 0x2f59ecf6 ppp_input_error +EXPORT_SYMBOL vmlinux 0x2f5a0019 cfb_imageblit EXPORT_SYMBOL vmlinux 0x2f5b0fdb gen_pool_alloc_algo_owner -EXPORT_SYMBOL vmlinux 0x2f9d9fc0 i2c_del_adapter -EXPORT_SYMBOL vmlinux 0x2fa319da mem_cgroup_from_task -EXPORT_SYMBOL vmlinux 0x2fa626a1 dcb_getapp +EXPORT_SYMBOL vmlinux 0x2f8553e7 simple_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0x2f936f5f of_find_mipi_dsi_device_by_node EXPORT_SYMBOL vmlinux 0x2fb6de5d add_device_randomness -EXPORT_SYMBOL vmlinux 0x2fc0ecda mipi_dsi_device_unregister +EXPORT_SYMBOL vmlinux 0x2fc23938 secpath_set +EXPORT_SYMBOL vmlinux 0x2fc3a5ab snd_mixer_oss_notify_callback +EXPORT_SYMBOL vmlinux 0x2fc8c581 kmem_cache_destroy +EXPORT_SYMBOL vmlinux 0x2fdd2f8d tty_check_change EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier -EXPORT_SYMBOL vmlinux 0x30021393 mark_info_dirty -EXPORT_SYMBOL vmlinux 0x300458b6 simple_setattr -EXPORT_SYMBOL vmlinux 0x30067e4d blkdev_get_by_path -EXPORT_SYMBOL vmlinux 0x300c68bf mmc_set_blocklen -EXPORT_SYMBOL vmlinux 0x303c7a06 tegra_dfll_runtime_resume +EXPORT_SYMBOL vmlinux 0x2ff69f27 __sk_backlog_rcv +EXPORT_SYMBOL vmlinux 0x2fff8f03 seg6_hmac_net_init +EXPORT_SYMBOL vmlinux 0x3015cc70 contig_page_data +EXPORT_SYMBOL vmlinux 0x301a6a29 sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0x3020f8ce of_phy_register_fixed_link +EXPORT_SYMBOL vmlinux 0x30384f5a tcp_v4_syn_recv_sock EXPORT_SYMBOL vmlinux 0x3052fecd ptp_convert_timestamp -EXPORT_SYMBOL vmlinux 0x305c7092 snd_ctl_boolean_mono_info -EXPORT_SYMBOL vmlinux 0x306eeb17 tcp_shutdown +EXPORT_SYMBOL vmlinux 0x306cb005 jbd2__journal_restart EXPORT_SYMBOL vmlinux 0x30745185 wait_for_completion_interruptible +EXPORT_SYMBOL vmlinux 0x307cd0e7 __traceiter_mmap_lock_released EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep +EXPORT_SYMBOL vmlinux 0x309b865a inet6_del_offload +EXPORT_SYMBOL vmlinux 0x309fb2b2 vme_dma_list_add +EXPORT_SYMBOL vmlinux 0x30a55671 phy_disconnect EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user -EXPORT_SYMBOL vmlinux 0x30a9c5ed get_bitmap_from_slot EXPORT_SYMBOL vmlinux 0x30acfde9 hsiphash_2u32 -EXPORT_SYMBOL vmlinux 0x30c11568 tcp_connect -EXPORT_SYMBOL vmlinux 0x30d964f0 jbd2_journal_inode_ranged_write +EXPORT_SYMBOL vmlinux 0x30bc7834 dev_uc_add +EXPORT_SYMBOL vmlinux 0x30c0fcca devm_devfreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x30d35454 __inet_hash EXPORT_SYMBOL vmlinux 0x30d9a471 gen_pool_create EXPORT_SYMBOL vmlinux 0x30e11a72 release_and_free_resource EXPORT_SYMBOL vmlinux 0x30e74134 tty_termios_copy_hw -EXPORT_SYMBOL vmlinux 0x30f3c48e napi_complete_done +EXPORT_SYMBOL vmlinux 0x30e9732c vmf_insert_pfn +EXPORT_SYMBOL vmlinux 0x30e9914c of_parse_phandle_with_args EXPORT_SYMBOL vmlinux 0x3102d70b frontswap_curr_pages -EXPORT_SYMBOL vmlinux 0x3105db1f pci_scan_slot +EXPORT_SYMBOL vmlinux 0x310c661b netdev_set_num_tc +EXPORT_SYMBOL vmlinux 0x3111bf62 tcf_qevent_validate_change +EXPORT_SYMBOL vmlinux 0x31223d4d tcp_peek_len EXPORT_SYMBOL vmlinux 0x3126a9e8 siphash_1u64 -EXPORT_SYMBOL vmlinux 0x31411c0c inode_sub_bytes -EXPORT_SYMBOL vmlinux 0x3149c8cd xfrm6_protocol_deregister EXPORT_SYMBOL vmlinux 0x314b20c8 scnprintf -EXPORT_SYMBOL vmlinux 0x3169e394 dev_load -EXPORT_SYMBOL vmlinux 0x3176a251 mipi_dsi_generic_read -EXPORT_SYMBOL vmlinux 0x318389f1 mipi_dsi_set_maximum_return_packet_size -EXPORT_SYMBOL vmlinux 0x318887ed super_setup_bdi_name +EXPORT_SYMBOL vmlinux 0x314e9350 security_unix_may_send +EXPORT_SYMBOL vmlinux 0x314fdeb2 locks_remove_posix +EXPORT_SYMBOL vmlinux 0x3168186a pipe_unlock +EXPORT_SYMBOL vmlinux 0x3169cb79 neigh_destroy +EXPORT_SYMBOL vmlinux 0x317f3494 xsk_tx_release EXPORT_SYMBOL vmlinux 0x31891e4c utf8nagemin -EXPORT_SYMBOL vmlinux 0x318ffb3b sock_efree -EXPORT_SYMBOL vmlinux 0x3193c682 clear_nlink +EXPORT_SYMBOL vmlinux 0x3199277d ping_prot +EXPORT_SYMBOL vmlinux 0x319b343f sync_inode_metadata EXPORT_SYMBOL vmlinux 0x31a4767f qcom_scm_hdcp_available -EXPORT_SYMBOL vmlinux 0x31de88c8 mipi_dsi_detach -EXPORT_SYMBOL vmlinux 0x31e7837b amba_driver_register -EXPORT_SYMBOL vmlinux 0x31f0b1e2 pagecache_write_begin -EXPORT_SYMBOL vmlinux 0x32032835 snd_card_free_when_closed -EXPORT_SYMBOL vmlinux 0x320f02cc skb_page_frag_refill -EXPORT_SYMBOL vmlinux 0x3210edaf blk_queue_flag_set -EXPORT_SYMBOL vmlinux 0x321a6e1b notify_change -EXPORT_SYMBOL vmlinux 0x321b0e2b dma_resv_add_excl_fence -EXPORT_SYMBOL vmlinux 0x321b0ef3 cdev_device_add -EXPORT_SYMBOL vmlinux 0x32394ae8 unmap_mapping_range +EXPORT_SYMBOL vmlinux 0x31c96a24 mount_subtree +EXPORT_SYMBOL vmlinux 0x31cfce76 kernel_read +EXPORT_SYMBOL vmlinux 0x31e179a2 inet_frag_queue_insert +EXPORT_SYMBOL vmlinux 0x31ef678a snd_info_create_module_entry +EXPORT_SYMBOL vmlinux 0x32009e5f gro_find_complete_by_type +EXPORT_SYMBOL vmlinux 0x3208f0bc __napi_schedule_irqoff +EXPORT_SYMBOL vmlinux 0x320a8b6b neigh_seq_stop +EXPORT_SYMBOL vmlinux 0x321a8825 del_random_ready_callback EXPORT_SYMBOL vmlinux 0x32394d4b qe_issue_cmd +EXPORT_SYMBOL vmlinux 0x323bdfa5 input_enable_softrepeat EXPORT_SYMBOL vmlinux 0x32430023 _totalhigh_pages -EXPORT_SYMBOL vmlinux 0x324f3d42 km_report -EXPORT_SYMBOL vmlinux 0x3256ae6c flow_block_cb_lookup -EXPORT_SYMBOL vmlinux 0x32608a33 generic_ro_fops +EXPORT_SYMBOL vmlinux 0x3246c67a ilookup5_nowait +EXPORT_SYMBOL vmlinux 0x3251674d rdmacg_uncharge +EXPORT_SYMBOL vmlinux 0x3269b144 __inc_node_page_state EXPORT_SYMBOL vmlinux 0x327c84bf vme_lm_attach EXPORT_SYMBOL vmlinux 0x3283e6b0 prandom_seed_full_state EXPORT_SYMBOL vmlinux 0x328a05f1 strncpy -EXPORT_SYMBOL vmlinux 0x32939701 neigh_seq_stop -EXPORT_SYMBOL vmlinux 0x32a884e2 __dquot_transfer +EXPORT_SYMBOL vmlinux 0x328cb148 scsi_remove_host +EXPORT_SYMBOL vmlinux 0x328dfc6e flow_rule_match_enc_opts EXPORT_SYMBOL vmlinux 0x32ce3777 radix_tree_preload -EXPORT_SYMBOL vmlinux 0x32cf7194 redirty_page_for_writepage +EXPORT_SYMBOL vmlinux 0x32d2053d elv_rb_latter_request +EXPORT_SYMBOL vmlinux 0x32eb902f set_nlink EXPORT_SYMBOL vmlinux 0x32ee1630 cred_fscmp -EXPORT_SYMBOL vmlinux 0x32f841bd uart_register_driver -EXPORT_SYMBOL vmlinux 0x3320d66a skb_vlan_untag -EXPORT_SYMBOL vmlinux 0x3322c3f8 devm_alloc_etherdev_mqs -EXPORT_SYMBOL vmlinux 0x334b1e67 ram_aops -EXPORT_SYMBOL vmlinux 0x335e46be eth_header_parse -EXPORT_SYMBOL vmlinux 0x3372a000 default_qdisc_ops -EXPORT_SYMBOL vmlinux 0x337927c9 tso_build_hdr -EXPORT_SYMBOL vmlinux 0x33b8b2fd nand_ecc_sw_hamming_init_ctx -EXPORT_SYMBOL vmlinux 0x33c5b62d mipi_dsi_dcs_set_display_on -EXPORT_SYMBOL vmlinux 0x33cd771f set_disk_ro -EXPORT_SYMBOL vmlinux 0x33ce72de phy_get_c45_ids -EXPORT_SYMBOL vmlinux 0x33d6ac54 mipi_dsi_generic_write +EXPORT_SYMBOL vmlinux 0x32f469de pci_read_config_dword +EXPORT_SYMBOL vmlinux 0x32f92a41 unregister_mtd_chip_driver +EXPORT_SYMBOL vmlinux 0x33001ce2 jbd2__journal_start +EXPORT_SYMBOL vmlinux 0x330c392b eth_gro_complete +EXPORT_SYMBOL vmlinux 0x333310ea of_graph_get_endpoint_count +EXPORT_SYMBOL vmlinux 0x33353723 security_locked_down +EXPORT_SYMBOL vmlinux 0x334fcdbe pci_enable_msix_range +EXPORT_SYMBOL vmlinux 0x335200fe loop_register_transfer +EXPORT_SYMBOL vmlinux 0x337ae656 pci_clear_master +EXPORT_SYMBOL vmlinux 0x337c9ff2 zpool_unregister_driver +EXPORT_SYMBOL vmlinux 0x338c0cf8 dump_emit +EXPORT_SYMBOL vmlinux 0x339088be fb_firmware_edid +EXPORT_SYMBOL vmlinux 0x33a2946f dev_set_allmulti +EXPORT_SYMBOL vmlinux 0x33b2a620 __blockdev_direct_IO +EXPORT_SYMBOL vmlinux 0x33bb6aec put_disk +EXPORT_SYMBOL vmlinux 0x33d43e3f xsk_get_pool_from_qid +EXPORT_SYMBOL vmlinux 0x33dac776 xfrm_init_state EXPORT_SYMBOL vmlinux 0x33dbfd93 tcp_memory_allocated EXPORT_SYMBOL vmlinux 0x33f0768c cpufreq_quick_get_max -EXPORT_SYMBOL vmlinux 0x33f1b197 kernel_param_lock +EXPORT_SYMBOL vmlinux 0x33fac6ef kill_block_super EXPORT_SYMBOL vmlinux 0x33fc2a31 get_user_ifreq -EXPORT_SYMBOL vmlinux 0x341864f1 register_netdevice_notifier_dev_net EXPORT_SYMBOL vmlinux 0x341dbfa3 __per_cpu_offset -EXPORT_SYMBOL vmlinux 0x3424007b simple_statfs -EXPORT_SYMBOL vmlinux 0x342c14b1 take_dentry_name_snapshot -EXPORT_SYMBOL vmlinux 0x342e742d snd_device_free -EXPORT_SYMBOL vmlinux 0x3436f995 fscrypt_decrypt_block_inplace -EXPORT_SYMBOL vmlinux 0x343ac263 devm_of_clk_del_provider -EXPORT_SYMBOL vmlinux 0x34415b31 vfs_iocb_iter_read -EXPORT_SYMBOL vmlinux 0x3442fbef snd_jack_set_parent -EXPORT_SYMBOL vmlinux 0x3458a7dc kmap_high -EXPORT_SYMBOL vmlinux 0x3477e2af vlan_dev_real_dev +EXPORT_SYMBOL vmlinux 0x344c8733 tty_port_tty_get +EXPORT_SYMBOL vmlinux 0x344cbb98 dev_uc_add_excl +EXPORT_SYMBOL vmlinux 0x344d5549 vfs_statfs +EXPORT_SYMBOL vmlinux 0x344f7a92 security_sock_graft +EXPORT_SYMBOL vmlinux 0x34702ad7 module_refcount +EXPORT_SYMBOL vmlinux 0x3493b98e inet6_protos +EXPORT_SYMBOL vmlinux 0x34968d5c security_sctp_assoc_request EXPORT_SYMBOL vmlinux 0x349b4277 xa_clear_mark EXPORT_SYMBOL vmlinux 0x349cba85 strchr +EXPORT_SYMBOL vmlinux 0x349f85ad param_get_byte EXPORT_SYMBOL vmlinux 0x34a04d71 radix_tree_delete_item -EXPORT_SYMBOL vmlinux 0x34a24bad tcp_md5_do_del -EXPORT_SYMBOL vmlinux 0x34a58e76 phy_ethtool_set_wol -EXPORT_SYMBOL vmlinux 0x34b3b55a netdev_reset_tc -EXPORT_SYMBOL vmlinux 0x34b3eb92 pm860x_page_reg_write -EXPORT_SYMBOL vmlinux 0x34b7e2a5 __netdev_alloc_skb +EXPORT_SYMBOL vmlinux 0x34af45d0 datagram_poll +EXPORT_SYMBOL vmlinux 0x34be559f can_nice EXPORT_SYMBOL vmlinux 0x34c068dd ucc_slow_restart_tx EXPORT_SYMBOL vmlinux 0x34c7cdbc lookup_bdev EXPORT_SYMBOL vmlinux 0x34ca145c kstrtou8_from_user -EXPORT_SYMBOL vmlinux 0x34df7ebc regset_get_alloc +EXPORT_SYMBOL vmlinux 0x34cb947f __xfrm_dst_lookup +EXPORT_SYMBOL vmlinux 0x34ce99b6 phy_ethtool_get_wol +EXPORT_SYMBOL vmlinux 0x34d05992 kernel_accept +EXPORT_SYMBOL vmlinux 0x34e61f80 nand_ecc_init_ctx +EXPORT_SYMBOL vmlinux 0x34e93b69 sock_no_connect EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue -EXPORT_SYMBOL vmlinux 0x34fde395 __inc_zone_page_state +EXPORT_SYMBOL vmlinux 0x34fe428a jbd2_journal_finish_inode_data_buffers +EXPORT_SYMBOL vmlinux 0x350454ae console_start +EXPORT_SYMBOL vmlinux 0x350cde5f param_get_uint EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier -EXPORT_SYMBOL vmlinux 0x3525134b sock_no_shutdown +EXPORT_SYMBOL vmlinux 0x352599eb phy_ethtool_set_eee EXPORT_SYMBOL vmlinux 0x352c05d9 release_resource +EXPORT_SYMBOL vmlinux 0x3536f151 tcf_register_action EXPORT_SYMBOL vmlinux 0x353e3fa5 __get_user_4 -EXPORT_SYMBOL vmlinux 0x3542a49e __scm_send -EXPORT_SYMBOL vmlinux 0x354a4bfd block_write_end -EXPORT_SYMBOL vmlinux 0x3554d311 jbd2_fc_end_commit +EXPORT_SYMBOL vmlinux 0x35482f48 dquot_mark_dquot_dirty +EXPORT_SYMBOL vmlinux 0x3548840f __sock_cmsg_send +EXPORT_SYMBOL vmlinux 0x3549b3fb pskb_expand_head +EXPORT_SYMBOL vmlinux 0x354b189b phy_attached_print +EXPORT_SYMBOL vmlinux 0x35508634 register_framebuffer EXPORT_SYMBOL vmlinux 0x3560e651 kmemdup_nul EXPORT_SYMBOL vmlinux 0x356461c8 rtc_time64_to_tm -EXPORT_SYMBOL vmlinux 0x3568bed7 dm_table_event -EXPORT_SYMBOL vmlinux 0x3569de64 vfs_llseek -EXPORT_SYMBOL vmlinux 0x3573e466 filemap_map_pages -EXPORT_SYMBOL vmlinux 0x358984d0 sk_stop_timer_sync -EXPORT_SYMBOL vmlinux 0x359c954b tcp_sock_set_syncnt +EXPORT_SYMBOL vmlinux 0x356ab4ae free_task +EXPORT_SYMBOL vmlinux 0x358a5338 tcp_req_err +EXPORT_SYMBOL vmlinux 0x35a62814 simple_transaction_release EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 -EXPORT_SYMBOL vmlinux 0x35affa28 bio_integrity_add_page -EXPORT_SYMBOL vmlinux 0x35da0b95 fs_context_for_submount -EXPORT_SYMBOL vmlinux 0x35dabb2e dquot_destroy +EXPORT_SYMBOL vmlinux 0x35e5976d single_open_size EXPORT_SYMBOL vmlinux 0x35ea78f5 atomic_io_modify_relaxed -EXPORT_SYMBOL vmlinux 0x35f1027b tcp_v4_mtu_reduced +EXPORT_SYMBOL vmlinux 0x35eff98e vme_irq_handler +EXPORT_SYMBOL vmlinux 0x35f26a87 skb_copy EXPORT_SYMBOL vmlinux 0x360b1afe probe_irq_mask EXPORT_SYMBOL vmlinux 0x3612c10f tmio_core_mmc_enable -EXPORT_SYMBOL vmlinux 0x3647661c call_netdevice_notifiers -EXPORT_SYMBOL vmlinux 0x364f13fd fb_validate_mode +EXPORT_SYMBOL vmlinux 0x361ae0ba security_path_mkdir +EXPORT_SYMBOL vmlinux 0x361dd59d snd_sgbuf_get_page +EXPORT_SYMBOL vmlinux 0x36533eee dqget EXPORT_SYMBOL vmlinux 0x36588e6a tcp_hashinfo EXPORT_SYMBOL vmlinux 0x365acda7 set_normalized_timespec64 EXPORT_SYMBOL vmlinux 0x365e7911 kstrdup_const -EXPORT_SYMBOL vmlinux 0x3662a6fe phy_register_fixup_for_id -EXPORT_SYMBOL vmlinux 0x3666bb40 rawnand_dt_parse_gpio_cs -EXPORT_SYMBOL vmlinux 0x368a6730 may_umount_tree -EXPORT_SYMBOL vmlinux 0x3694fbe7 dquot_scan_active -EXPORT_SYMBOL vmlinux 0x3695c2da xfrm_state_unregister_afinfo -EXPORT_SYMBOL vmlinux 0x369a9cef generic_iommu_put_resv_regions +EXPORT_SYMBOL vmlinux 0x36674aff snd_seq_root +EXPORT_SYMBOL vmlinux 0x36717a80 crypto_sha1_finup +EXPORT_SYMBOL vmlinux 0x36856b27 xp_dma_unmap +EXPORT_SYMBOL vmlinux 0x36a26bf7 phy_write_mmd EXPORT_SYMBOL vmlinux 0x36af5e35 bpf_sk_lookup_enabled -EXPORT_SYMBOL vmlinux 0x36bcbf34 lock_rename -EXPORT_SYMBOL vmlinux 0x36cc8fb8 device_get_mac_address -EXPORT_SYMBOL vmlinux 0x36ce7594 deactivate_locked_super +EXPORT_SYMBOL vmlinux 0x36bd2ff1 mfd_remove_devices_late EXPORT_SYMBOL vmlinux 0x36d69557 ipv6_flowlabel_exclusive -EXPORT_SYMBOL vmlinux 0x36e77615 flow_indr_block_cb_alloc -EXPORT_SYMBOL vmlinux 0x37011f00 vfs_fileattr_set EXPORT_SYMBOL vmlinux 0x371ac1cd kset_register -EXPORT_SYMBOL vmlinux 0x37301a30 nand_ecc_sw_bch_correct -EXPORT_SYMBOL vmlinux 0x3734cfd1 hmm_range_fault -EXPORT_SYMBOL vmlinux 0x373765b7 netdev_lower_get_next_private_rcu +EXPORT_SYMBOL vmlinux 0x37312162 dev_addr_del +EXPORT_SYMBOL vmlinux 0x374061a4 cdrom_mode_select EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn EXPORT_SYMBOL vmlinux 0x374b47eb ZSTD_findDecompressedSize EXPORT_SYMBOL vmlinux 0x3755f990 gf128mul_init_64k_bbe -EXPORT_SYMBOL vmlinux 0x375923ff scsi_report_device_reset -EXPORT_SYMBOL vmlinux 0x375d00fe skb_store_bits -EXPORT_SYMBOL vmlinux 0x3769fa50 inet_csk_reqsk_queue_add -EXPORT_SYMBOL vmlinux 0x377e0bca blk_integrity_compare -EXPORT_SYMBOL vmlinux 0x37898ac8 _dev_crit -EXPORT_SYMBOL vmlinux 0x378c11e8 tcf_block_netif_keep_dst +EXPORT_SYMBOL vmlinux 0x375c232f put_cmsg_scm_timestamping64 +EXPORT_SYMBOL vmlinux 0x37720dfa phy_get_internal_delay +EXPORT_SYMBOL vmlinux 0x37748912 set_bh_page +EXPORT_SYMBOL vmlinux 0x3786bc95 dma_sync_wait EXPORT_SYMBOL vmlinux 0x3796bdcc snd_pcm_format_little_endian EXPORT_SYMBOL vmlinux 0x37b0aa04 config_item_put -EXPORT_SYMBOL vmlinux 0x37ba24ef pci_prepare_to_sleep EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs -EXPORT_SYMBOL vmlinux 0x37c10336 scmd_printk -EXPORT_SYMBOL vmlinux 0x37cd8790 pci_fixup_device +EXPORT_SYMBOL vmlinux 0x37c96b0a netdev_adjacent_change_prepare +EXPORT_SYMBOL vmlinux 0x37daf3ff cdrom_release EXPORT_SYMBOL vmlinux 0x37db8f19 dmi_get_date +EXPORT_SYMBOL vmlinux 0x37de31ec mipi_dsi_dcs_set_column_address +EXPORT_SYMBOL vmlinux 0x37e31183 sock_alloc_file +EXPORT_SYMBOL vmlinux 0x37e60454 flow_rule_match_enc_ipv6_addrs EXPORT_SYMBOL vmlinux 0x37f614b7 __kfifo_len_r -EXPORT_SYMBOL vmlinux 0x37fbf812 input_get_timestamp -EXPORT_SYMBOL vmlinux 0x3801f495 blkdev_issue_discard -EXPORT_SYMBOL vmlinux 0x3808e687 xsk_set_rx_need_wakeup -EXPORT_SYMBOL vmlinux 0x380ce0da dst_dev_put +EXPORT_SYMBOL vmlinux 0x37fcd0b8 rawnand_sw_bch_init EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus -EXPORT_SYMBOL vmlinux 0x381ff96b of_mdiobus_register -EXPORT_SYMBOL vmlinux 0x382a30df snd_info_register -EXPORT_SYMBOL vmlinux 0x382d0067 proc_mkdir_mode -EXPORT_SYMBOL vmlinux 0x38367392 xfrm6_input_addr -EXPORT_SYMBOL vmlinux 0x383c0d36 blk_mq_alloc_tag_set -EXPORT_SYMBOL vmlinux 0x3840088d mpage_writepages +EXPORT_SYMBOL vmlinux 0x3820ce04 genphy_read_lpa EXPORT_SYMBOL vmlinux 0x3842b3a6 unix_gc_lock +EXPORT_SYMBOL vmlinux 0x3842fde3 tc_setup_cb_add +EXPORT_SYMBOL vmlinux 0x384a9f3b alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0x384c9390 devm_clk_release_clkdev +EXPORT_SYMBOL vmlinux 0x385109a8 insert_inode_locked EXPORT_SYMBOL vmlinux 0x3854774b kstrtoll -EXPORT_SYMBOL vmlinux 0x385a49ce pci_get_device +EXPORT_SYMBOL vmlinux 0x38648b09 qdisc_watchdog_schedule_range_ns EXPORT_SYMBOL vmlinux 0x386d9ce9 radix_tree_lookup -EXPORT_SYMBOL vmlinux 0x3872e384 param_set_uint -EXPORT_SYMBOL vmlinux 0x38810142 seq_lseek +EXPORT_SYMBOL vmlinux 0x387b0c06 block_is_partially_uptodate EXPORT_SYMBOL vmlinux 0x38869d88 kstat EXPORT_SYMBOL vmlinux 0x3891ffc8 ecryptfs_fill_auth_tok -EXPORT_SYMBOL vmlinux 0x3895368a dma_unmap_resource -EXPORT_SYMBOL vmlinux 0x38957f18 pcie_get_mps EXPORT_SYMBOL vmlinux 0x389acf0c gpmc_configure EXPORT_SYMBOL vmlinux 0x389ecf9e __bswapdi2 EXPORT_SYMBOL vmlinux 0x38a71b7e pci_free_resource_list +EXPORT_SYMBOL vmlinux 0x38a9275a pci_bus_type EXPORT_SYMBOL vmlinux 0x38a9f7c5 in6addr_loopback -EXPORT_SYMBOL vmlinux 0x38b33d1c ip_defrag -EXPORT_SYMBOL vmlinux 0x38bca61d dquot_initialize +EXPORT_SYMBOL vmlinux 0x38ac20fa __bio_clone_fast +EXPORT_SYMBOL vmlinux 0x38b52c79 scsi_get_device_flags_keyed +EXPORT_SYMBOL vmlinux 0x38b74b2c phy_support_sym_pause EXPORT_SYMBOL vmlinux 0x38de402b call_usermodehelper_exec -EXPORT_SYMBOL vmlinux 0x38e99528 security_sock_graft -EXPORT_SYMBOL vmlinux 0x38ede804 contig_page_data EXPORT_SYMBOL vmlinux 0x38f48af7 put_user_ifreq -EXPORT_SYMBOL vmlinux 0x390055d8 dcache_dir_open -EXPORT_SYMBOL vmlinux 0x3913c549 tc_setup_flow_action -EXPORT_SYMBOL vmlinux 0x393978a5 __pskb_pull_tail +EXPORT_SYMBOL vmlinux 0x3901b6ce input_mt_report_slot_state +EXPORT_SYMBOL vmlinux 0x390cc785 snd_pcm_stop +EXPORT_SYMBOL vmlinux 0x3920ef17 user_path_at_empty +EXPORT_SYMBOL vmlinux 0x392d7a34 generic_copy_file_range EXPORT_SYMBOL vmlinux 0x3939f8f0 rfkill_pause_polling -EXPORT_SYMBOL vmlinux 0x3943cf4c udp_skb_destructor EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p EXPORT_SYMBOL vmlinux 0x394a1e11 phy_sfp_attach -EXPORT_SYMBOL vmlinux 0x394aea30 dst_destroy -EXPORT_SYMBOL vmlinux 0x3956e51a inet_release -EXPORT_SYMBOL vmlinux 0x3970ff48 key_unlink +EXPORT_SYMBOL vmlinux 0x394e96e6 dquot_operations +EXPORT_SYMBOL vmlinux 0x394f6ba0 generic_pipe_buf_get +EXPORT_SYMBOL vmlinux 0x39703367 sock_no_recvmsg EXPORT_SYMBOL vmlinux 0x3971b4df snd_ecards_limit -EXPORT_SYMBOL vmlinux 0x398eb0e9 __tty_insert_flip_char -EXPORT_SYMBOL vmlinux 0x3990d3b4 of_get_parent EXPORT_SYMBOL vmlinux 0x3992bc63 __xa_set_mark EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow +EXPORT_SYMBOL vmlinux 0x39ab90fd unregister_qdisc EXPORT_SYMBOL vmlinux 0x39b52d19 __bitmap_and +EXPORT_SYMBOL vmlinux 0x39be09ba mark_buffer_dirty_inode EXPORT_SYMBOL vmlinux 0x39bf9301 _snd_pcm_hw_param_setempty +EXPORT_SYMBOL vmlinux 0x39bfda9f generic_read_dir EXPORT_SYMBOL vmlinux 0x39c88fd5 flush_rcu_work -EXPORT_SYMBOL vmlinux 0x3a09caa3 inet_sk_set_state -EXPORT_SYMBOL vmlinux 0x3a116a2b generic_update_time -EXPORT_SYMBOL vmlinux 0x3a12e5d4 netdev_set_tc_queue -EXPORT_SYMBOL vmlinux 0x3a16305a __cgroup_bpf_run_filter_sock_ops -EXPORT_SYMBOL vmlinux 0x3a377243 genlmsg_multicast_allns -EXPORT_SYMBOL vmlinux 0x3a467b6f tty_port_tty_get +EXPORT_SYMBOL vmlinux 0x39e80519 of_device_alloc +EXPORT_SYMBOL vmlinux 0x3a055d99 vmf_insert_mixed_prot +EXPORT_SYMBOL vmlinux 0x3a1b5bc6 tty_lock +EXPORT_SYMBOL vmlinux 0x3a274ee0 pcibios_fixup_bus +EXPORT_SYMBOL vmlinux 0x3a2db3d5 send_sig_info +EXPORT_SYMBOL vmlinux 0x3a35ec2b i2c_smbus_read_i2c_block_data_or_emulated EXPORT_SYMBOL vmlinux 0x3a4f9d28 rng_is_initialized -EXPORT_SYMBOL vmlinux 0x3a62742c genphy_read_mmd_unsupported -EXPORT_SYMBOL vmlinux 0x3a6a6c55 eth_validate_addr -EXPORT_SYMBOL vmlinux 0x3a726530 tcp_rcv_established -EXPORT_SYMBOL vmlinux 0x3a75f94b vme_lm_request +EXPORT_SYMBOL vmlinux 0x3a5c4577 cont_write_begin +EXPORT_SYMBOL vmlinux 0x3a68e6b5 seg6_hmac_info_del +EXPORT_SYMBOL vmlinux 0x3a8505c8 block_page_mkwrite +EXPORT_SYMBOL vmlinux 0x3aa9ba06 sync_file_create EXPORT_SYMBOL vmlinux 0x3aab2fee nla_reserve_nohdr EXPORT_SYMBOL vmlinux 0x3ab7b1cc scsi_set_sense_field_pointer -EXPORT_SYMBOL vmlinux 0x3acfe189 param_ops_short -EXPORT_SYMBOL vmlinux 0x3ad35d5d dma_sync_sg_for_cpu +EXPORT_SYMBOL vmlinux 0x3ac020cc posix_test_lock +EXPORT_SYMBOL vmlinux 0x3ac36378 param_ops_uint EXPORT_SYMBOL vmlinux 0x3ad6fd8e krait_get_l2_indirect_reg -EXPORT_SYMBOL vmlinux 0x3ae12a88 md_bitmap_close_sync -EXPORT_SYMBOL vmlinux 0x3ae66fda locks_copy_lock -EXPORT_SYMBOL vmlinux 0x3af64d4b jbd2_journal_flush +EXPORT_SYMBOL vmlinux 0x3ad981d0 skb_find_text +EXPORT_SYMBOL vmlinux 0x3ae9566f debugfs_create_automount +EXPORT_SYMBOL vmlinux 0x3aff34ee sk_mc_loop +EXPORT_SYMBOL vmlinux 0x3b000250 mipi_dsi_host_unregister EXPORT_SYMBOL vmlinux 0x3b299067 percpu_counter_set -EXPORT_SYMBOL vmlinux 0x3b2d5759 get_tree_keyed -EXPORT_SYMBOL vmlinux 0x3b35707b udp_lib_setsockopt +EXPORT_SYMBOL vmlinux 0x3b29a554 dmam_pool_create +EXPORT_SYMBOL vmlinux 0x3b2f6c41 __ethtool_get_link_ksettings EXPORT_SYMBOL vmlinux 0x3b40879d check_zeroed_user -EXPORT_SYMBOL vmlinux 0x3b4a9ce8 sock_bindtoindex -EXPORT_SYMBOL vmlinux 0x3b58b96b skb_checksum_help +EXPORT_SYMBOL vmlinux 0x3b4e06ba serio_unregister_port +EXPORT_SYMBOL vmlinux 0x3b5bd815 disk_start_io_acct EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left EXPORT_SYMBOL vmlinux 0x3b6c41ea kstrtouint -EXPORT_SYMBOL vmlinux 0x3b7c367b __block_write_full_page -EXPORT_SYMBOL vmlinux 0x3b7cc97f netif_set_real_num_tx_queues -EXPORT_SYMBOL vmlinux 0x3b8d3e59 poll_initwait +EXPORT_SYMBOL vmlinux 0x3b71e917 ipv6_chk_addr +EXPORT_SYMBOL vmlinux 0x3b7b85a6 __mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x3ba1d16b devm_of_clk_del_provider EXPORT_SYMBOL vmlinux 0x3bbf46ea vga_base -EXPORT_SYMBOL vmlinux 0x3bcac64f ipv4_specific -EXPORT_SYMBOL vmlinux 0x3bdc9260 __mmc_claim_host +EXPORT_SYMBOL vmlinux 0x3bcf55cc rproc_report_crash EXPORT_SYMBOL vmlinux 0x3be7643e security_xfrm_policy_free -EXPORT_SYMBOL vmlinux 0x3c146797 fwnode_mdio_find_device +EXPORT_SYMBOL vmlinux 0x3bf4a422 __xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x3c10dd40 simple_lookup EXPORT_SYMBOL vmlinux 0x3c185c61 page_put_link -EXPORT_SYMBOL vmlinux 0x3c18d6aa kthread_create_worker -EXPORT_SYMBOL vmlinux 0x3c1f502c iterate_supers_type -EXPORT_SYMBOL vmlinux 0x3c20c148 __cgroup_bpf_run_filter_sk EXPORT_SYMBOL vmlinux 0x3c3215c4 qe_immr -EXPORT_SYMBOL vmlinux 0x3c35516b inet_sock_destruct +EXPORT_SYMBOL vmlinux 0x3c356107 lock_sock_nested +EXPORT_SYMBOL vmlinux 0x3c3dafd4 tegra_ivc_read_advance EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip EXPORT_SYMBOL vmlinux 0x3c3ff9fd sprintf -EXPORT_SYMBOL vmlinux 0x3c4cef58 dma_mmap_attrs -EXPORT_SYMBOL vmlinux 0x3c506e7a netdev_state_change -EXPORT_SYMBOL vmlinux 0x3c6b9b61 rtnl_notify -EXPORT_SYMBOL vmlinux 0x3c6f5b5f mmc_wait_for_req_done -EXPORT_SYMBOL vmlinux 0x3c74cd97 dst_init -EXPORT_SYMBOL vmlinux 0x3c7a204f tcp_prot -EXPORT_SYMBOL vmlinux 0x3c7eb656 xfrm_state_free -EXPORT_SYMBOL vmlinux 0x3c82b565 mmc_calc_max_discard -EXPORT_SYMBOL vmlinux 0x3c8d8262 unregister_quota_format +EXPORT_SYMBOL vmlinux 0x3c63772d sock_no_bind +EXPORT_SYMBOL vmlinux 0x3c8853c5 fb_set_var +EXPORT_SYMBOL vmlinux 0x3c8c2a7d mr_rtm_dumproute +EXPORT_SYMBOL vmlinux 0x3c8e6ef8 netif_set_real_num_queues EXPORT_SYMBOL vmlinux 0x3c8f6ef0 __xa_insert -EXPORT_SYMBOL vmlinux 0x3ca47105 dquot_quota_off -EXPORT_SYMBOL vmlinux 0x3cb0c546 of_find_mipi_dsi_host_by_node -EXPORT_SYMBOL vmlinux 0x3cc2f017 dquot_set_dqinfo -EXPORT_SYMBOL vmlinux 0x3cc3113e sched_autogroup_detach -EXPORT_SYMBOL vmlinux 0x3ccad468 jbd2_journal_release_jbd_inode -EXPORT_SYMBOL vmlinux 0x3cd68dc2 __breadahead_gfp -EXPORT_SYMBOL vmlinux 0x3ce0b7b4 jbd2_journal_init_inode +EXPORT_SYMBOL vmlinux 0x3c8fc234 blk_rq_unmap_user +EXPORT_SYMBOL vmlinux 0x3c988a39 __page_frag_cache_drain +EXPORT_SYMBOL vmlinux 0x3ca11fbc cros_ec_check_result +EXPORT_SYMBOL vmlinux 0x3cc69553 copy_page_to_iter +EXPORT_SYMBOL vmlinux 0x3cd5e735 nobh_write_begin EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq -EXPORT_SYMBOL vmlinux 0x3ce96b7d snd_ctl_new1 -EXPORT_SYMBOL vmlinux 0x3cef7190 cros_ec_get_next_event -EXPORT_SYMBOL vmlinux 0x3cf2d1cd input_allocate_device -EXPORT_SYMBOL vmlinux 0x3cfa3314 sock_no_recvmsg -EXPORT_SYMBOL vmlinux 0x3d05935b tcf_action_update_stats -EXPORT_SYMBOL vmlinux 0x3d0cb741 netdev_upper_dev_link +EXPORT_SYMBOL vmlinux 0x3cfd7179 put_cmsg_scm_timestamping +EXPORT_SYMBOL vmlinux 0x3d0bbb0a dev_get_phys_port_name +EXPORT_SYMBOL vmlinux 0x3d107df9 fscrypt_setup_filename +EXPORT_SYMBOL vmlinux 0x3d19850b iov_iter_get_pages EXPORT_SYMBOL vmlinux 0x3d3c540f elf_hwcap +EXPORT_SYMBOL vmlinux 0x3d441a70 sock_gettstamp +EXPORT_SYMBOL vmlinux 0x3d4d44ba mmc_calc_max_discard +EXPORT_SYMBOL vmlinux 0x3d4dd60a snd_info_free_entry +EXPORT_SYMBOL vmlinux 0x3d52b4c4 __phy_write_mmd EXPORT_SYMBOL vmlinux 0x3d56e7b3 utf8_unload -EXPORT_SYMBOL vmlinux 0x3d5c961e simple_transaction_get -EXPORT_SYMBOL vmlinux 0x3d6dd284 mount_single -EXPORT_SYMBOL vmlinux 0x3d8885a9 jbd2_journal_abort -EXPORT_SYMBOL vmlinux 0x3d8b4307 dmam_alloc_attrs -EXPORT_SYMBOL vmlinux 0x3da2c0a0 param_get_long -EXPORT_SYMBOL vmlinux 0x3dba95da __blkdev_issue_zeroout -EXPORT_SYMBOL vmlinux 0x3dcb1a3e pci_pme_capable +EXPORT_SYMBOL vmlinux 0x3d8e497c cdrom_mode_sense +EXPORT_SYMBOL vmlinux 0x3da19397 nf_log_set +EXPORT_SYMBOL vmlinux 0x3db19fcd scsi_eh_restore_cmnd +EXPORT_SYMBOL vmlinux 0x3dc5cb46 xsk_tx_completed EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data EXPORT_SYMBOL vmlinux 0x3dcf1ffa __wake_up -EXPORT_SYMBOL vmlinux 0x3dd31c14 bh_submit_read EXPORT_SYMBOL vmlinux 0x3dd878a0 hdmi_avi_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0x3dd98e5b __page_symlink EXPORT_SYMBOL vmlinux 0x3ddc6d7e vm_node_stat -EXPORT_SYMBOL vmlinux 0x3deef3ea __ps2_command +EXPORT_SYMBOL vmlinux 0x3ddde3e4 bio_integrity_prep +EXPORT_SYMBOL vmlinux 0x3ddf5de4 devm_free_irq +EXPORT_SYMBOL vmlinux 0x3de0cb24 tty_port_close_end +EXPORT_SYMBOL vmlinux 0x3deb4fbd __page_symlink +EXPORT_SYMBOL vmlinux 0x3deca8fc ptp_find_pin +EXPORT_SYMBOL vmlinux 0x3df66ce8 inet_unregister_protosw EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head -EXPORT_SYMBOL vmlinux 0x3e04659f netif_carrier_on -EXPORT_SYMBOL vmlinux 0x3e0c34b6 mipi_dsi_dcs_set_pixel_format -EXPORT_SYMBOL vmlinux 0x3e160e7b fsync_bdev -EXPORT_SYMBOL vmlinux 0x3e2ac75d of_phy_register_fixed_link +EXPORT_SYMBOL vmlinux 0x3e0e07e3 d_set_d_op +EXPORT_SYMBOL vmlinux 0x3e0e3f53 jbd2_journal_grab_journal_head +EXPORT_SYMBOL vmlinux 0x3e1bcff4 kernel_sendpage +EXPORT_SYMBOL vmlinux 0x3e22de95 build_skb_around +EXPORT_SYMBOL vmlinux 0x3e3961a7 tcf_idrinfo_destroy EXPORT_SYMBOL vmlinux 0x3e3bad0a __tasklet_hi_schedule -EXPORT_SYMBOL vmlinux 0x3e42b40c dquot_drop -EXPORT_SYMBOL vmlinux 0x3e7c6d2c scsi_device_resume -EXPORT_SYMBOL vmlinux 0x3e7df19b keyring_clear -EXPORT_SYMBOL vmlinux 0x3e9fa6a7 rproc_get_by_child +EXPORT_SYMBOL vmlinux 0x3e3fac1e skb_coalesce_rx_frag +EXPORT_SYMBOL vmlinux 0x3e3fadab regset_get +EXPORT_SYMBOL vmlinux 0x3e4abbf1 rproc_add_carveout +EXPORT_SYMBOL vmlinux 0x3e53b6ee rproc_alloc +EXPORT_SYMBOL vmlinux 0x3e56428a phy_get_c45_ids +EXPORT_SYMBOL vmlinux 0x3e57bc02 param_ops_short +EXPORT_SYMBOL vmlinux 0x3e646bf1 phy_ethtool_get_strings +EXPORT_SYMBOL vmlinux 0x3e745adb close_fd_get_file +EXPORT_SYMBOL vmlinux 0x3e9be20d snd_pcm_release_substream EXPORT_SYMBOL vmlinux 0x3ea1b6e4 __stack_chk_fail -EXPORT_SYMBOL vmlinux 0x3ea73df4 sync_file_create EXPORT_SYMBOL vmlinux 0x3ec80fa0 _raw_spin_unlock_bh -EXPORT_SYMBOL vmlinux 0x3ecbc530 param_ops_hexint -EXPORT_SYMBOL vmlinux 0x3ecbd8b0 try_lookup_one_len +EXPORT_SYMBOL vmlinux 0x3ecbe698 dma_mmap_attrs +EXPORT_SYMBOL vmlinux 0x3ecded5b request_partial_firmware_into_buf +EXPORT_SYMBOL vmlinux 0x3ecf8694 of_translate_dma_address EXPORT_SYMBOL vmlinux 0x3ed104a5 xa_set_mark EXPORT_SYMBOL vmlinux 0x3ede6c7e dma_fence_chain_init +EXPORT_SYMBOL vmlinux 0x3ee4199c devm_devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0x3eee2aa0 bprm_change_interp +EXPORT_SYMBOL vmlinux 0x3ef853bc __dynamic_netdev_dbg EXPORT_SYMBOL vmlinux 0x3efe1703 phy_unregister_fixup_for_id -EXPORT_SYMBOL vmlinux 0x3f0512bd key_put -EXPORT_SYMBOL vmlinux 0x3f0af993 fget -EXPORT_SYMBOL vmlinux 0x3f0dd634 invalidate_bdev -EXPORT_SYMBOL vmlinux 0x3f1f31fb __inode_sub_bytes -EXPORT_SYMBOL vmlinux 0x3f275b96 configfs_unregister_default_group -EXPORT_SYMBOL vmlinux 0x3f39103f csum_and_copy_to_iter -EXPORT_SYMBOL vmlinux 0x3f3fb613 rproc_mem_entry_init +EXPORT_SYMBOL vmlinux 0x3f12271e tty_port_tty_set +EXPORT_SYMBOL vmlinux 0x3f32409f jbd2_journal_ack_err +EXPORT_SYMBOL vmlinux 0x3f326d4c __frontswap_load +EXPORT_SYMBOL vmlinux 0x3f3b5ce3 max8925_bulk_write +EXPORT_SYMBOL vmlinux 0x3f3e78bd md_finish_reshape EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd EXPORT_SYMBOL vmlinux 0x3f4af46f gen_pool_first_fit_order_align -EXPORT_SYMBOL vmlinux 0x3f4f41fd vfs_fileattr_get +EXPORT_SYMBOL vmlinux 0x3f4be191 end_buffer_read_sync +EXPORT_SYMBOL vmlinux 0x3f518544 prepare_to_swait_event EXPORT_SYMBOL vmlinux 0x3f62d048 dma_fence_init +EXPORT_SYMBOL vmlinux 0x3f6dfb26 mdio_device_create +EXPORT_SYMBOL vmlinux 0x3f709dfb input_setup_polling EXPORT_SYMBOL vmlinux 0x3f89071b security_ib_pkey_access -EXPORT_SYMBOL vmlinux 0x3fa58728 i2c_verify_adapter -EXPORT_SYMBOL vmlinux 0x3facd9d2 __block_write_begin -EXPORT_SYMBOL vmlinux 0x3fb801dc lru_cache_add -EXPORT_SYMBOL vmlinux 0x3fbd9905 qdisc_offload_dump_helper +EXPORT_SYMBOL vmlinux 0x3f9758b6 vif_device_init +EXPORT_SYMBOL vmlinux 0x3fa5b227 show_init_ipc_ns +EXPORT_SYMBOL vmlinux 0x3fb0fa61 xfrm_stateonly_find +EXPORT_SYMBOL vmlinux 0x3fd5ad13 snd_jack_new EXPORT_SYMBOL vmlinux 0x3fd78f3b register_chrdev_region +EXPORT_SYMBOL vmlinux 0x3fdbbad3 __skb_try_recv_datagram EXPORT_SYMBOL vmlinux 0x3fea538c hdmi_avi_infoframe_pack -EXPORT_SYMBOL vmlinux 0x3ff8de56 set_page_dirty_lock -EXPORT_SYMBOL vmlinux 0x4032f201 request_key_with_auxdata -EXPORT_SYMBOL vmlinux 0x40343d94 of_find_compatible_node -EXPORT_SYMBOL vmlinux 0x4037fe8d dup_iter +EXPORT_SYMBOL vmlinux 0x4006bf73 inet_ioctl +EXPORT_SYMBOL vmlinux 0x4008c24e phy_free_interrupt +EXPORT_SYMBOL vmlinux 0x401bc1af truncate_inode_pages +EXPORT_SYMBOL vmlinux 0x402228b9 flow_rule_match_icmp +EXPORT_SYMBOL vmlinux 0x40224f54 skb_split +EXPORT_SYMBOL vmlinux 0x4035d87a phy_find_first EXPORT_SYMBOL vmlinux 0x403a93e7 radix_tree_gang_lookup_tag -EXPORT_SYMBOL vmlinux 0x404bd1a6 rproc_coredump_set_elf_info -EXPORT_SYMBOL vmlinux 0x404e3e09 jbd2_journal_init_dev +EXPORT_SYMBOL vmlinux 0x40419b3c qdisc_reset +EXPORT_SYMBOL vmlinux 0x40420cc6 __genphy_config_aneg EXPORT_SYMBOL vmlinux 0x4059792f print_hex_dump -EXPORT_SYMBOL vmlinux 0x405ebd71 filemap_fdatawrite_wbc -EXPORT_SYMBOL vmlinux 0x405ecf7f fb_class EXPORT_SYMBOL vmlinux 0x407136b1 __put_user_8 -EXPORT_SYMBOL vmlinux 0x4073d176 __zerocopy_sg_from_iter -EXPORT_SYMBOL vmlinux 0x407642d1 inet6_del_offload -EXPORT_SYMBOL vmlinux 0x4076c204 mmc_can_gpio_ro EXPORT_SYMBOL vmlinux 0x407a3275 omap_start_dma +EXPORT_SYMBOL vmlinux 0x407a3810 dns_query EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem EXPORT_SYMBOL vmlinux 0x409873e3 tty_termios_baud_rate -EXPORT_SYMBOL vmlinux 0x4099416d padata_do_serial EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc EXPORT_SYMBOL vmlinux 0x40b51c05 __sysfs_match_string +EXPORT_SYMBOL vmlinux 0x40ba72cb vga_set_legacy_decoding EXPORT_SYMBOL vmlinux 0x40c7247c si_meminfo +EXPORT_SYMBOL vmlinux 0x40cbd73d devfreq_monitor_resume EXPORT_SYMBOL vmlinux 0x40d04664 console_trylock -EXPORT_SYMBOL vmlinux 0x40d24b1f mr_mfc_find_any_parent EXPORT_SYMBOL vmlinux 0x40d402ad do_wait_intr EXPORT_SYMBOL vmlinux 0x40d59096 unregister_restart_handler -EXPORT_SYMBOL vmlinux 0x40e2e20e vme_irq_handler -EXPORT_SYMBOL vmlinux 0x40e90d59 pm860x_page_bulk_read EXPORT_SYMBOL vmlinux 0x40f07981 __ashldi3 -EXPORT_SYMBOL vmlinux 0x40f62da7 thaw_bdev -EXPORT_SYMBOL vmlinux 0x4113a1d8 vlan_filter_drop_vids -EXPORT_SYMBOL vmlinux 0x411908c2 bdev_read_only -EXPORT_SYMBOL vmlinux 0x41252f42 do_clone_file_range -EXPORT_SYMBOL vmlinux 0x412c828b snd_dma_alloc_pages +EXPORT_SYMBOL vmlinux 0x40f98e6d tcf_get_next_chain +EXPORT_SYMBOL vmlinux 0x41039d9c nand_read_page_raw +EXPORT_SYMBOL vmlinux 0x4103e607 remove_proc_subtree +EXPORT_SYMBOL vmlinux 0x41040736 register_qdisc +EXPORT_SYMBOL vmlinux 0x41125156 __mdiobus_read +EXPORT_SYMBOL vmlinux 0x4112d42c vfs_fsync EXPORT_SYMBOL vmlinux 0x412f893c page_offline_begin EXPORT_SYMBOL vmlinux 0x4131fe5e __nla_reserve_64bit -EXPORT_SYMBOL vmlinux 0x413c011d devfreq_remove_governor -EXPORT_SYMBOL vmlinux 0x414699af generic_file_fsync EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user EXPORT_SYMBOL vmlinux 0x414975dd __genradix_prealloc -EXPORT_SYMBOL vmlinux 0x414f9dbe flush_signals -EXPORT_SYMBOL vmlinux 0x414fe0bf sock_set_mark -EXPORT_SYMBOL vmlinux 0x41522c9d udp_seq_next -EXPORT_SYMBOL vmlinux 0x4157163e mipi_dsi_dcs_write -EXPORT_SYMBOL vmlinux 0x415d3551 unregister_fib_notifier -EXPORT_SYMBOL vmlinux 0x417d0357 phy_config_aneg +EXPORT_SYMBOL vmlinux 0x41852380 twl6040_get_sysclk EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time EXPORT_SYMBOL vmlinux 0x418a5367 __scsi_format_command -EXPORT_SYMBOL vmlinux 0x41953775 cookie_ecn_ok -EXPORT_SYMBOL vmlinux 0x41a92530 cad_pid +EXPORT_SYMBOL vmlinux 0x41a03cc5 fb_pan_display +EXPORT_SYMBOL vmlinux 0x41a57d89 neigh_app_ns EXPORT_SYMBOL vmlinux 0x41bb84fc dma_fence_remove_callback -EXPORT_SYMBOL vmlinux 0x41d46b9a gnet_stats_start_copy_compat -EXPORT_SYMBOL vmlinux 0x41d82e66 netpoll_poll_dev -EXPORT_SYMBOL vmlinux 0x41d99c67 tcp_sock_set_quickack -EXPORT_SYMBOL vmlinux 0x41fd447e d_splice_alias +EXPORT_SYMBOL vmlinux 0x41dced7d _dev_emerg +EXPORT_SYMBOL vmlinux 0x41e0822f tcp_check_req +EXPORT_SYMBOL vmlinux 0x41ee30e3 dev_getbyhwaddr_rcu +EXPORT_SYMBOL vmlinux 0x41f034f9 vfs_iter_read +EXPORT_SYMBOL vmlinux 0x4204cc3c nf_unregister_sockopt EXPORT_SYMBOL vmlinux 0x420964e3 __nla_parse -EXPORT_SYMBOL vmlinux 0x420c2134 mipi_dsi_dcs_get_display_brightness +EXPORT_SYMBOL vmlinux 0x4211e72d netif_tx_wake_queue EXPORT_SYMBOL vmlinux 0x42160169 flush_workqueue EXPORT_SYMBOL vmlinux 0x421d4dcf krealloc -EXPORT_SYMBOL vmlinux 0x42228de6 tty_hung_up_p -EXPORT_SYMBOL vmlinux 0x422e62aa sock_edemux -EXPORT_SYMBOL vmlinux 0x42421900 tcp_check_req +EXPORT_SYMBOL vmlinux 0x42223eb0 security_tun_dev_attach +EXPORT_SYMBOL vmlinux 0x42249863 touchscreen_report_pos +EXPORT_SYMBOL vmlinux 0x422ac7d1 dev_set_threaded EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running -EXPORT_SYMBOL vmlinux 0x424ac957 dev_remove_offload -EXPORT_SYMBOL vmlinux 0x424b29a9 configfs_depend_item_unlocked EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp -EXPORT_SYMBOL vmlinux 0x42520046 __destroy_inode EXPORT_SYMBOL vmlinux 0x4253aa7e down_write -EXPORT_SYMBOL vmlinux 0x425c3839 tcf_idr_create_from_flags +EXPORT_SYMBOL vmlinux 0x425785ab of_phy_deregister_fixed_link EXPORT_SYMBOL vmlinux 0x42604384 ucs2_strncmp -EXPORT_SYMBOL vmlinux 0x426f654d fscrypt_put_encryption_info +EXPORT_SYMBOL vmlinux 0x4264c2f6 netdev_port_same_parent_id +EXPORT_SYMBOL vmlinux 0x42675380 xfrm_policy_byid +EXPORT_SYMBOL vmlinux 0x4287555d dev_mc_flush EXPORT_SYMBOL vmlinux 0x4298b775 v7_flush_kern_cache_all -EXPORT_SYMBOL vmlinux 0x429af1a1 vm_mmap -EXPORT_SYMBOL vmlinux 0x429d87e8 devm_memremap -EXPORT_SYMBOL vmlinux 0x42b37cb0 ppp_register_net_channel -EXPORT_SYMBOL vmlinux 0x42bb701c remove_proc_entry -EXPORT_SYMBOL vmlinux 0x42c9e012 nand_monolithic_write_page_raw -EXPORT_SYMBOL vmlinux 0x42d02ede tty_port_close -EXPORT_SYMBOL vmlinux 0x42eb32cd snd_jack_report +EXPORT_SYMBOL vmlinux 0x429a43b8 ethtool_notify +EXPORT_SYMBOL vmlinux 0x429d38c0 should_remove_suid +EXPORT_SYMBOL vmlinux 0x42b1a533 kthread_destroy_worker +EXPORT_SYMBOL vmlinux 0x42c5e589 find_inode_by_ino_rcu +EXPORT_SYMBOL vmlinux 0x42c80718 netdev_adjacent_change_commit +EXPORT_SYMBOL vmlinux 0x42d47ded devm_request_resource EXPORT_SYMBOL vmlinux 0x42f1b900 fb_pad_unaligned_buffer -EXPORT_SYMBOL vmlinux 0x42fcf5bf iget_failed -EXPORT_SYMBOL vmlinux 0x42fecddc dump_emit -EXPORT_SYMBOL vmlinux 0x42fff334 neigh_ifdown +EXPORT_SYMBOL vmlinux 0x4301ecf6 rproc_get_by_child EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages -EXPORT_SYMBOL vmlinux 0x4314d439 pci_iounmap EXPORT_SYMBOL vmlinux 0x431ec3a9 __nla_validate EXPORT_SYMBOL vmlinux 0x4336fcca ucs2_as_utf8 -EXPORT_SYMBOL vmlinux 0x434523c2 file_modified -EXPORT_SYMBOL vmlinux 0x434caeb0 snd_pcm_hw_constraint_integer -EXPORT_SYMBOL vmlinux 0x434d7a68 of_find_node_by_phandle EXPORT_SYMBOL vmlinux 0x4350caee kobject_put EXPORT_SYMBOL vmlinux 0x4351577a fb_parse_edid -EXPORT_SYMBOL vmlinux 0x4359e368 ip_queue_xmit -EXPORT_SYMBOL vmlinux 0x4364aa23 locks_delete_block -EXPORT_SYMBOL vmlinux 0x437942f0 tcp_close +EXPORT_SYMBOL vmlinux 0x435d4951 mmc_start_request EXPORT_SYMBOL vmlinux 0x437a0d6d __sock_tx_timestamp -EXPORT_SYMBOL vmlinux 0x437fa791 __skb_free_datagram_locked +EXPORT_SYMBOL vmlinux 0x437b57d1 ndo_dflt_fdb_add +EXPORT_SYMBOL vmlinux 0x437cd96d pci_scan_single_device EXPORT_SYMBOL vmlinux 0x4384eb42 __release_region -EXPORT_SYMBOL vmlinux 0x4385c19b zpool_register_driver EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security -EXPORT_SYMBOL vmlinux 0x43a128bd pcim_iounmap -EXPORT_SYMBOL vmlinux 0x43ad0f46 __i2c_smbus_xfer -EXPORT_SYMBOL vmlinux 0x43b84528 ata_port_printk +EXPORT_SYMBOL vmlinux 0x439b07db skb_put +EXPORT_SYMBOL vmlinux 0x43a5f34f mdio_bus_type +EXPORT_SYMBOL vmlinux 0x43ccd900 jbd2_journal_set_features +EXPORT_SYMBOL vmlinux 0x43ce0d36 generic_parse_monolithic EXPORT_SYMBOL vmlinux 0x43d22fb9 groups_alloc EXPORT_SYMBOL vmlinux 0x43e57231 commit_creds -EXPORT_SYMBOL vmlinux 0x43e698b5 framebuffer_release -EXPORT_SYMBOL vmlinux 0x43f16deb try_to_release_page -EXPORT_SYMBOL vmlinux 0x43f8a5d3 __mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x43eee993 of_find_i2c_device_by_node +EXPORT_SYMBOL vmlinux 0x43fd3917 _dev_crit +EXPORT_SYMBOL vmlinux 0x43ff3d80 reuseport_detach_sock +EXPORT_SYMBOL vmlinux 0x440285b0 alloc_anon_inode EXPORT_SYMBOL vmlinux 0x4403bbd0 imx_sc_misc_set_control -EXPORT_SYMBOL vmlinux 0x4412c40a tty_devnum -EXPORT_SYMBOL vmlinux 0x441f8c45 tcf_exts_change +EXPORT_SYMBOL vmlinux 0x4406e98a put_cmsg +EXPORT_SYMBOL vmlinux 0x4422a52c simple_get_link EXPORT_SYMBOL vmlinux 0x442495c9 tmio_core_mmc_resume +EXPORT_SYMBOL vmlinux 0x442b5c2f ndisc_mc_map +EXPORT_SYMBOL vmlinux 0x442ebd55 tty_register_driver EXPORT_SYMBOL vmlinux 0x44366cfc simple_write_to_buffer -EXPORT_SYMBOL vmlinux 0x4444d1c3 blk_cleanup_disk EXPORT_SYMBOL vmlinux 0x44469a76 crc_ccitt_false_table EXPORT_SYMBOL vmlinux 0x444cc8ed tcp_md5_needed -EXPORT_SYMBOL vmlinux 0x4451c731 file_write_and_wait_range -EXPORT_SYMBOL vmlinux 0x4455d306 pcix_get_max_mmrbc 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 0x4469fda8 snd_pcm_hw_constraint_mask64 -EXPORT_SYMBOL vmlinux 0x4474212d jbd2_fc_wait_bufs -EXPORT_SYMBOL vmlinux 0x44921e1b dev_loopback_xmit +EXPORT_SYMBOL vmlinux 0x447ee940 fqdir_exit +EXPORT_SYMBOL vmlinux 0x448670f5 t10_pi_type1_crc +EXPORT_SYMBOL vmlinux 0x44a1feb6 dma_unmap_sg_attrs +EXPORT_SYMBOL vmlinux 0x44a507c5 param_ops_hexint +EXPORT_SYMBOL vmlinux 0x44a5c457 mount_bdev EXPORT_SYMBOL vmlinux 0x44a6e90a irq_cpu_rmap_add -EXPORT_SYMBOL vmlinux 0x44ad94d0 snd_info_create_card_entry -EXPORT_SYMBOL vmlinux 0x44c9c013 dev_vprintk_emit EXPORT_SYMBOL vmlinux 0x44c9dc6c percpu_counter_destroy -EXPORT_SYMBOL vmlinux 0x44cb760d filemap_fdatawait_range EXPORT_SYMBOL vmlinux 0x44da5d0f __csum_ipv6_magic EXPORT_SYMBOL vmlinux 0x44e66ed2 bitmap_print_bitmask_to_buf -EXPORT_SYMBOL vmlinux 0x44e73912 nf_getsockopt -EXPORT_SYMBOL vmlinux 0x44e7c663 of_find_i2c_adapter_by_node EXPORT_SYMBOL vmlinux 0x44e9a829 match_token -EXPORT_SYMBOL vmlinux 0x44fa8d62 device_add_disk -EXPORT_SYMBOL vmlinux 0x44fc2d1f save_stack_trace_tsk +EXPORT_SYMBOL vmlinux 0x44f87758 init_net EXPORT_SYMBOL vmlinux 0x45006cee default_red EXPORT_SYMBOL vmlinux 0x450d9a35 cmd_db_read_slave_id -EXPORT_SYMBOL vmlinux 0x45118558 tc_cleanup_flow_action -EXPORT_SYMBOL vmlinux 0x4520d970 mount_nodev -EXPORT_SYMBOL vmlinux 0x45263fbf ppp_output_wakeup +EXPORT_SYMBOL vmlinux 0x45154947 tty_devnum +EXPORT_SYMBOL vmlinux 0x4527096e netpoll_cleanup EXPORT_SYMBOL vmlinux 0x452ba683 ipv6_ext_hdr EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled -EXPORT_SYMBOL vmlinux 0x453d6e9a sk_stream_kill_queues -EXPORT_SYMBOL vmlinux 0x45684be5 __tcf_em_tree_match -EXPORT_SYMBOL vmlinux 0x45686a3f inet6_del_protocol -EXPORT_SYMBOL vmlinux 0x45711ee6 i2c_smbus_read_byte +EXPORT_SYMBOL vmlinux 0x454dd7fc xfrm_lookup_with_ifid +EXPORT_SYMBOL vmlinux 0x455f065b __ip_options_compile +EXPORT_SYMBOL vmlinux 0x45662d09 iov_iter_discard +EXPORT_SYMBOL vmlinux 0x456bdd1f pci_enable_device_mem EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user -EXPORT_SYMBOL vmlinux 0x45939fe9 iptun_encaps -EXPORT_SYMBOL vmlinux 0x4595a1de md_bitmap_startwrite -EXPORT_SYMBOL vmlinux 0x45a25fb1 param_set_bint +EXPORT_SYMBOL vmlinux 0x4583a245 snd_register_device +EXPORT_SYMBOL vmlinux 0x458798b8 pcie_port_service_register +EXPORT_SYMBOL vmlinux 0x458877fb sk_common_release +EXPORT_SYMBOL vmlinux 0x4589861a phy_attached_info +EXPORT_SYMBOL vmlinux 0x45a1f0f1 __skb_warn_lro_forwarding EXPORT_SYMBOL vmlinux 0x45bd19de nla_strscpy EXPORT_SYMBOL vmlinux 0x45bda0d5 system_serial_low -EXPORT_SYMBOL vmlinux 0x45f9bd40 reuseport_migrate_sock -EXPORT_SYMBOL vmlinux 0x45f9eb79 setattr_prepare +EXPORT_SYMBOL vmlinux 0x45d9e379 skb_copy_and_hash_datagram_iter +EXPORT_SYMBOL vmlinux 0x45e6ca10 snd_pcm_lib_preallocate_pages_for_all EXPORT_SYMBOL vmlinux 0x45fdee7f dma_fence_signal_timestamp -EXPORT_SYMBOL vmlinux 0x461b176e timestamp_truncate +EXPORT_SYMBOL vmlinux 0x460f4a34 flow_hash_from_keys +EXPORT_SYMBOL vmlinux 0x4620da3c tcp_mmap EXPORT_SYMBOL vmlinux 0x46244c03 ns_capable EXPORT_SYMBOL vmlinux 0x462a2e75 match_strlcpy -EXPORT_SYMBOL vmlinux 0x462f5463 kmem_cache_alloc_bulk -EXPORT_SYMBOL vmlinux 0x46379136 param_set_ullong -EXPORT_SYMBOL vmlinux 0x46431b4c show_init_ipc_ns +EXPORT_SYMBOL vmlinux 0x462ffc32 fbcon_update_vcs +EXPORT_SYMBOL vmlinux 0x463ab1d6 ip6_fraglist_prepare +EXPORT_SYMBOL vmlinux 0x4651b699 tc_setup_cb_reoffload +EXPORT_SYMBOL vmlinux 0x4651c3c7 unpin_user_pages +EXPORT_SYMBOL vmlinux 0x4655f9b1 d_add_ci +EXPORT_SYMBOL vmlinux 0x465c1ee8 sg_miter_skip EXPORT_SYMBOL vmlinux 0x465e24ff ucs2_utf8size +EXPORT_SYMBOL vmlinux 0x46689528 __dev_get_by_index +EXPORT_SYMBOL vmlinux 0x4668f610 nexthop_bucket_set_hw_flags +EXPORT_SYMBOL vmlinux 0x46739dda remove_proc_entry +EXPORT_SYMBOL vmlinux 0x46957963 generic_listxattr +EXPORT_SYMBOL vmlinux 0x4697cc03 nf_register_queue_handler +EXPORT_SYMBOL vmlinux 0x469a42d4 tcp_mtup_init EXPORT_SYMBOL vmlinux 0x469a6ec7 tcp_parse_md5sig_option -EXPORT_SYMBOL vmlinux 0x46c37076 udp_seq_stop +EXPORT_SYMBOL vmlinux 0x46b743b4 vfs_tmpfile EXPORT_SYMBOL vmlinux 0x46d3b28c __div0 -EXPORT_SYMBOL vmlinux 0x46e24f0a pci_bus_read_config_word -EXPORT_SYMBOL vmlinux 0x46f1cc2b sock_no_bind -EXPORT_SYMBOL vmlinux 0x46fc0f54 udp_pre_connect +EXPORT_SYMBOL vmlinux 0x46dab37f pagecache_write_end +EXPORT_SYMBOL vmlinux 0x46e208c1 mmc_set_data_timeout +EXPORT_SYMBOL vmlinux 0x46e5db2a ethtool_get_phc_vclocks EXPORT_SYMBOL vmlinux 0x47065c73 cpm_muram_offset -EXPORT_SYMBOL vmlinux 0x4715083d input_inject_event -EXPORT_SYMBOL vmlinux 0x4746d2e4 pci_map_rom -EXPORT_SYMBOL vmlinux 0x474fb789 __netlink_dump_start +EXPORT_SYMBOL vmlinux 0x470962b4 input_reset_device +EXPORT_SYMBOL vmlinux 0x470beb12 sg_alloc_append_table_from_pages +EXPORT_SYMBOL vmlinux 0x474864df flow_rule_match_ports +EXPORT_SYMBOL vmlinux 0x4751ef5a call_fib_notifiers EXPORT_SYMBOL vmlinux 0x4756260d ida_destroy EXPORT_SYMBOL vmlinux 0x475d84ef gen_pool_dma_alloc_algo -EXPORT_SYMBOL vmlinux 0x476deaf3 vfs_mknod +EXPORT_SYMBOL vmlinux 0x476a463b pcim_set_mwi EXPORT_SYMBOL vmlinux 0x47709e42 free_anon_bdev -EXPORT_SYMBOL vmlinux 0x4774d6fd param_set_invbool -EXPORT_SYMBOL vmlinux 0x4774f111 __hw_addr_sync_dev -EXPORT_SYMBOL vmlinux 0x47781d4a security_binder_transfer_file -EXPORT_SYMBOL vmlinux 0x478ab888 snd_ctl_find_id +EXPORT_SYMBOL vmlinux 0x477249c3 tty_port_free_xmit_buf +EXPORT_SYMBOL vmlinux 0x4789e6f7 __block_write_begin EXPORT_SYMBOL vmlinux 0x478d9b84 ZSTD_isFrame -EXPORT_SYMBOL vmlinux 0x4790c208 tcf_exts_dump +EXPORT_SYMBOL vmlinux 0x478f1efa ip_sock_set_mtu_discover EXPORT_SYMBOL vmlinux 0x479137ca imx_scu_irq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x4795029e md_wakeup_thread EXPORT_SYMBOL vmlinux 0x47a0cdcb mb_cache_entry_find_next -EXPORT_SYMBOL vmlinux 0x47ad5bf7 pci_write_config_dword -EXPORT_SYMBOL vmlinux 0x47b5f518 dev_mc_add_excl -EXPORT_SYMBOL vmlinux 0x47b7857d netif_tx_stop_all_queues -EXPORT_SYMBOL vmlinux 0x47ba63ac tcp_sock_set_cork +EXPORT_SYMBOL vmlinux 0x47b8d8ea try_module_get EXPORT_SYMBOL vmlinux 0x47c20f8a refcount_dec_not_one +EXPORT_SYMBOL vmlinux 0x47c641c5 blk_get_queue EXPORT_SYMBOL vmlinux 0x47c65bfc unregister_inet6addr_validator_notifier -EXPORT_SYMBOL vmlinux 0x47c9a383 done_path_create -EXPORT_SYMBOL vmlinux 0x47cac7d5 of_device_get_match_data -EXPORT_SYMBOL vmlinux 0x47d5ee02 ip_frag_next -EXPORT_SYMBOL vmlinux 0x47dbb583 dquot_quota_on +EXPORT_SYMBOL vmlinux 0x47cfd5ff input_set_timestamp +EXPORT_SYMBOL vmlinux 0x47d3f784 inc_node_page_state EXPORT_SYMBOL vmlinux 0x47e70229 v7_flush_user_cache_range EXPORT_SYMBOL vmlinux 0x47f757de elf_platform -EXPORT_SYMBOL vmlinux 0x480f461b mipi_dsi_dcs_set_tear_scanline -EXPORT_SYMBOL vmlinux 0x48109854 pci_free_irq_vectors -EXPORT_SYMBOL vmlinux 0x483f61b1 icmpv6_ndo_send +EXPORT_SYMBOL vmlinux 0x47f8d635 __get_hash_from_flowi6 +EXPORT_SYMBOL vmlinux 0x48156d6b security_inode_setsecctx +EXPORT_SYMBOL vmlinux 0x48281f1e of_mdiobus_phy_device_register +EXPORT_SYMBOL vmlinux 0x482ec216 register_shrinker +EXPORT_SYMBOL vmlinux 0x48384399 generic_fadvise +EXPORT_SYMBOL vmlinux 0x483e5d72 __dynamic_dev_dbg EXPORT_SYMBOL vmlinux 0x4848cfb1 phy_mipi_dphy_get_default_config EXPORT_SYMBOL vmlinux 0x484f6edf ktime_get_coarse_real_ts64 -EXPORT_SYMBOL vmlinux 0x4855c654 jbd2_journal_inode_ranged_wait +EXPORT_SYMBOL vmlinux 0x48512734 i2c_smbus_write_byte_data EXPORT_SYMBOL vmlinux 0x4859b8bb rtc_year_days -EXPORT_SYMBOL vmlinux 0x485c7e10 dev_disable_lro EXPORT_SYMBOL vmlinux 0x4871d75d clk_hw_register_clkdev -EXPORT_SYMBOL vmlinux 0x4872ed9a tty_port_close_start -EXPORT_SYMBOL vmlinux 0x48800519 input_setup_polling -EXPORT_SYMBOL vmlinux 0x489e8730 blk_mq_delay_run_hw_queues +EXPORT_SYMBOL vmlinux 0x4884dbdb pcie_relaxed_ordering_enabled +EXPORT_SYMBOL vmlinux 0x488b8b0b inc_zone_page_state +EXPORT_SYMBOL vmlinux 0x488bf587 dev_set_mac_address +EXPORT_SYMBOL vmlinux 0x48a4a6bc rawnand_dt_parse_gpio_cs EXPORT_SYMBOL vmlinux 0x48a5b067 __machine_arch_type EXPORT_SYMBOL vmlinux 0x48a91171 string_get_size -EXPORT_SYMBOL vmlinux 0x48ad3d4b inet_accept +EXPORT_SYMBOL vmlinux 0x48aa2e9e path_put +EXPORT_SYMBOL vmlinux 0x48ad8382 of_match_node EXPORT_SYMBOL vmlinux 0x48b99a13 vme_lm_free -EXPORT_SYMBOL vmlinux 0x48ba2b3a udp6_csum_init +EXPORT_SYMBOL vmlinux 0x48d40554 dev_mc_init EXPORT_SYMBOL vmlinux 0x48e1cbf5 nla_reserve_64bit -EXPORT_SYMBOL vmlinux 0x48f76855 netdev_master_upper_dev_get_rcu +EXPORT_SYMBOL vmlinux 0x48ea7470 dev_set_mac_address_user +EXPORT_SYMBOL vmlinux 0x48fbe585 jbd2_journal_unlock_updates EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert -EXPORT_SYMBOL vmlinux 0x49280439 __SetPageMovable -EXPORT_SYMBOL vmlinux 0x4938d072 filemap_flush -EXPORT_SYMBOL vmlinux 0x494cca17 of_graph_get_remote_port -EXPORT_SYMBOL vmlinux 0x49513bdb sock_sendmsg +EXPORT_SYMBOL vmlinux 0x492c228e param_set_bool +EXPORT_SYMBOL vmlinux 0x492c6d70 security_inode_listsecurity +EXPORT_SYMBOL vmlinux 0x4933a0c0 get_user_pages +EXPORT_SYMBOL vmlinux 0x493ae483 blk_pm_runtime_init EXPORT_SYMBOL vmlinux 0x495231ea mul_u64_u64_div_u64 +EXPORT_SYMBOL vmlinux 0x49542c08 tty_wait_until_sent +EXPORT_SYMBOL vmlinux 0x49586584 blk_mq_alloc_request +EXPORT_SYMBOL vmlinux 0x496f91a9 blkdev_issue_write_same EXPORT_SYMBOL vmlinux 0x49871971 _raw_write_unlock_bh +EXPORT_SYMBOL vmlinux 0x4995f6ee find_inode_nowait EXPORT_SYMBOL vmlinux 0x49970de8 finish_wait -EXPORT_SYMBOL vmlinux 0x49a1e489 file_path -EXPORT_SYMBOL vmlinux 0x49aa4a7c tcp_md5_hash_skb_data -EXPORT_SYMBOL vmlinux 0x49cc3807 register_nexthop_notifier -EXPORT_SYMBOL vmlinux 0x49d247b0 unix_detach_fds +EXPORT_SYMBOL vmlinux 0x49ab8287 ip_generic_getfrag +EXPORT_SYMBOL vmlinux 0x49b39cfc nf_ct_attach +EXPORT_SYMBOL vmlinux 0x49bc3742 kmem_cache_free_bulk +EXPORT_SYMBOL vmlinux 0x49bd6691 tegra_dfll_suspend +EXPORT_SYMBOL vmlinux 0x49bfc292 follow_up +EXPORT_SYMBOL vmlinux 0x49c7f017 setup_arg_pages EXPORT_SYMBOL vmlinux 0x49d61380 __traceiter_kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0x49d9a8be elv_rb_add -EXPORT_SYMBOL vmlinux 0x49da77d2 qdisc_hash_add -EXPORT_SYMBOL vmlinux 0x49e13ed5 __traceiter_mmap_lock_released +EXPORT_SYMBOL vmlinux 0x49d89a84 devm_mfd_add_devices +EXPORT_SYMBOL vmlinux 0x49eb71ae fb_show_logo EXPORT_SYMBOL vmlinux 0x49ebacbd _clear_bit EXPORT_SYMBOL vmlinux 0x49f26466 kstrndup -EXPORT_SYMBOL vmlinux 0x49f9fdc8 of_find_device_by_node -EXPORT_SYMBOL vmlinux 0x4a36576a simple_dir_operations +EXPORT_SYMBOL vmlinux 0x4a1affc2 __serio_register_port +EXPORT_SYMBOL vmlinux 0x4a361a09 make_kprojid EXPORT_SYMBOL vmlinux 0x4a39e5a1 omap_set_dma_src_params EXPORT_SYMBOL vmlinux 0x4a3ea5c0 snd_request_card -EXPORT_SYMBOL vmlinux 0x4a660d5d skb_copy_and_hash_datagram_iter -EXPORT_SYMBOL vmlinux 0x4a661a78 phy_connect_direct -EXPORT_SYMBOL vmlinux 0x4a6d6f97 blk_get_queue -EXPORT_SYMBOL vmlinux 0x4a72b6b4 seq_puts -EXPORT_SYMBOL vmlinux 0x4a75b23f md_set_array_sectors +EXPORT_SYMBOL vmlinux 0x4a5b0640 phy_remove_link_mode +EXPORT_SYMBOL vmlinux 0x4a6e0a41 get_bitmap_from_slot +EXPORT_SYMBOL vmlinux 0x4a7515ff __scsi_print_sense EXPORT_SYMBOL vmlinux 0x4a8a6949 get_random_bytes_arch +EXPORT_SYMBOL vmlinux 0x4a8da01c dev_set_mtu EXPORT_SYMBOL vmlinux 0x4a96a8eb xxh32_digest -EXPORT_SYMBOL vmlinux 0x4a9f3edb register_key_type -EXPORT_SYMBOL vmlinux 0x4aa2d07e flow_indr_dev_unregister -EXPORT_SYMBOL vmlinux 0x4abc49f6 d_move -EXPORT_SYMBOL vmlinux 0x4ad42a2a __break_lease +EXPORT_SYMBOL vmlinux 0x4aacf449 find_get_pages_contig +EXPORT_SYMBOL vmlinux 0x4acb55a9 set_capacity +EXPORT_SYMBOL vmlinux 0x4ad38ec9 dev_mc_del EXPORT_SYMBOL vmlinux 0x4ade86b5 hdmi_drm_infoframe_unpack_only EXPORT_SYMBOL vmlinux 0x4ae8ee66 __kfifo_dma_out_prepare_r +EXPORT_SYMBOL vmlinux 0x4ae91820 sk_stream_wait_close EXPORT_SYMBOL vmlinux 0x4af6ddf0 kstrtou16 -EXPORT_SYMBOL vmlinux 0x4b080c41 pci_scan_single_device -EXPORT_SYMBOL vmlinux 0x4b1e9832 simple_recursive_removal -EXPORT_SYMBOL vmlinux 0x4b1f4890 tty_insert_flip_string_fixed_flag -EXPORT_SYMBOL vmlinux 0x4b2c50a9 pci_find_resource -EXPORT_SYMBOL vmlinux 0x4b30faeb may_setattr -EXPORT_SYMBOL vmlinux 0x4b4c6df8 migrate_page_states +EXPORT_SYMBOL vmlinux 0x4af780f5 sget +EXPORT_SYMBOL vmlinux 0x4afc877a sk_filter_trim_cap +EXPORT_SYMBOL vmlinux 0x4b40e714 register_key_type EXPORT_SYMBOL vmlinux 0x4b4cdd32 config_item_set_name +EXPORT_SYMBOL vmlinux 0x4b4f4ef5 mmc_get_card +EXPORT_SYMBOL vmlinux 0x4b55f0eb dquot_commit +EXPORT_SYMBOL vmlinux 0x4b5f8d51 phy_detach EXPORT_SYMBOL vmlinux 0x4b5fd49e dm_kcopyd_do_callback -EXPORT_SYMBOL vmlinux 0x4b84ed03 dma_find_channel -EXPORT_SYMBOL vmlinux 0x4bba1ff7 pskb_expand_head -EXPORT_SYMBOL vmlinux 0x4bbc51a3 md_bitmap_free -EXPORT_SYMBOL vmlinux 0x4bca0f35 hdmi_infoframe_log +EXPORT_SYMBOL vmlinux 0x4b6f430d dma_sync_sg_for_device +EXPORT_SYMBOL vmlinux 0x4b83964b __dev_kfree_skb_irq +EXPORT_SYMBOL vmlinux 0x4b9c326f sock_create_lite +EXPORT_SYMBOL vmlinux 0x4bcea306 pci_alloc_host_bridge EXPORT_SYMBOL vmlinux 0x4be85a03 memweight -EXPORT_SYMBOL vmlinux 0x4beaa9d0 in6_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x4beedddf xfrm_policy_alloc EXPORT_SYMBOL vmlinux 0x4bef1c67 empty_name -EXPORT_SYMBOL vmlinux 0x4bf20259 eth_mac_addr -EXPORT_SYMBOL vmlinux 0x4bf8f348 address_space_init_once +EXPORT_SYMBOL vmlinux 0x4bf2d441 rproc_elf_load_rsc_table EXPORT_SYMBOL vmlinux 0x4bfdcefa __memset32 -EXPORT_SYMBOL vmlinux 0x4c177cd4 dquot_disable +EXPORT_SYMBOL vmlinux 0x4c11ec1e eth_commit_mac_addr_change EXPORT_SYMBOL vmlinux 0x4c1cca3b cpumask_next_wrap +EXPORT_SYMBOL vmlinux 0x4c23a5ea kernel_bind +EXPORT_SYMBOL vmlinux 0x4c25a46b dquot_free_inode EXPORT_SYMBOL vmlinux 0x4c2ae700 strnstr -EXPORT_SYMBOL vmlinux 0x4c33a82f fb_prepare_logo +EXPORT_SYMBOL vmlinux 0x4c2df698 flow_rule_match_basic EXPORT_SYMBOL vmlinux 0x4c38d4e0 utf8_strncasecmp_folded -EXPORT_SYMBOL vmlinux 0x4c3d84bb of_node_get EXPORT_SYMBOL vmlinux 0x4c416eb9 LZ4_decompress_fast -EXPORT_SYMBOL vmlinux 0x4c4768e2 fs_lookup_param -EXPORT_SYMBOL vmlinux 0x4c5c1676 xfrm_input_resume -EXPORT_SYMBOL vmlinux 0x4c81571f sk_stream_error -EXPORT_SYMBOL vmlinux 0x4c8b4004 sock_create +EXPORT_SYMBOL vmlinux 0x4c5b4ea0 dev_mc_sync +EXPORT_SYMBOL vmlinux 0x4c8a966f jbd2_journal_start_reserved +EXPORT_SYMBOL vmlinux 0x4c8bd3e8 ps2_handle_response +EXPORT_SYMBOL vmlinux 0x4c9c83bd xfrm_init_replay +EXPORT_SYMBOL vmlinux 0x4ca2612a may_umount_tree EXPORT_SYMBOL vmlinux 0x4cba441d iwe_stream_add_event EXPORT_SYMBOL vmlinux 0x4cc2854d tegra114_clock_assert_dfll_dvco_reset -EXPORT_SYMBOL vmlinux 0x4cd24218 vlan_ioctl_set -EXPORT_SYMBOL vmlinux 0x4cde371e neigh_sysctl_register -EXPORT_SYMBOL vmlinux 0x4cfb937b ethtool_op_get_ts_info +EXPORT_SYMBOL vmlinux 0x4ce3ece5 from_kprojid +EXPORT_SYMBOL vmlinux 0x4ce51694 vme_irq_generate +EXPORT_SYMBOL vmlinux 0x4ce70a04 __sync_dirty_buffer EXPORT_SYMBOL vmlinux 0x4d0d163d copy_page -EXPORT_SYMBOL vmlinux 0x4d2b74c9 dump_align -EXPORT_SYMBOL vmlinux 0x4d31b576 vm_map_pages -EXPORT_SYMBOL vmlinux 0x4d330536 tty_flip_buffer_push EXPORT_SYMBOL vmlinux 0x4d3c153f sigprocmask -EXPORT_SYMBOL vmlinux 0x4d3d8786 amba_request_regions EXPORT_SYMBOL vmlinux 0x4d45d89e udp_memory_allocated +EXPORT_SYMBOL vmlinux 0x4d473635 phy_get_pause +EXPORT_SYMBOL vmlinux 0x4d48cb59 sock_alloc_send_skb EXPORT_SYMBOL vmlinux 0x4d514485 xa_store +EXPORT_SYMBOL vmlinux 0x4d5323b0 netif_set_real_num_rx_queues +EXPORT_SYMBOL vmlinux 0x4d603188 pci_select_bars +EXPORT_SYMBOL vmlinux 0x4d61d8eb nand_read_oob_std +EXPORT_SYMBOL vmlinux 0x4d63d771 pci_ep_cfs_add_epf_group EXPORT_SYMBOL vmlinux 0x4d6ae35f rps_sock_flow_table -EXPORT_SYMBOL vmlinux 0x4d7b9e48 tcp_peek_len -EXPORT_SYMBOL vmlinux 0x4d7d153d sg_alloc_table_from_pages_segment +EXPORT_SYMBOL vmlinux 0x4d79ed9d inet_dev_addr_type +EXPORT_SYMBOL vmlinux 0x4d806653 sock_alloc +EXPORT_SYMBOL vmlinux 0x4d847057 elm_config EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase EXPORT_SYMBOL vmlinux 0x4d9b6d35 snd_pcm_format_size -EXPORT_SYMBOL vmlinux 0x4da08c9b nf_ip6_checksum -EXPORT_SYMBOL vmlinux 0x4da34f0a mmc_alloc_host +EXPORT_SYMBOL vmlinux 0x4da34698 __remove_inode_hash +EXPORT_SYMBOL vmlinux 0x4da7a171 pci_read_vpd +EXPORT_SYMBOL vmlinux 0x4da7d9b6 tcp_seq_stop +EXPORT_SYMBOL vmlinux 0x4dc8e247 logfc +EXPORT_SYMBOL vmlinux 0x4dce0848 ps2_drain EXPORT_SYMBOL vmlinux 0x4dce47d8 _raw_spin_trylock +EXPORT_SYMBOL vmlinux 0x4ddc1746 tty_hung_up_p EXPORT_SYMBOL vmlinux 0x4dec6038 memscan -EXPORT_SYMBOL vmlinux 0x4df173e6 scsi_vpd_lun_id +EXPORT_SYMBOL vmlinux 0x4ded80e1 __blk_rq_map_sg EXPORT_SYMBOL vmlinux 0x4df2ea84 gen_estimator_read -EXPORT_SYMBOL vmlinux 0x4df44d21 phy_read_paged -EXPORT_SYMBOL vmlinux 0x4df8ea96 xfrm_state_check_expire -EXPORT_SYMBOL vmlinux 0x4dfccbb8 iput +EXPORT_SYMBOL vmlinux 0x4df55f69 generic_fillattr EXPORT_SYMBOL vmlinux 0x4e05bdec mempool_init_node -EXPORT_SYMBOL vmlinux 0x4e101155 snd_timer_global_free -EXPORT_SYMBOL vmlinux 0x4e13f529 sk_send_sigurg +EXPORT_SYMBOL vmlinux 0x4e1d00f4 d_mark_dontcache EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int EXPORT_SYMBOL vmlinux 0x4e36cdc4 __ubsan_handle_divrem_overflow -EXPORT_SYMBOL vmlinux 0x4e399c9b devm_extcon_unregister_notifier -EXPORT_SYMBOL vmlinux 0x4e40b2dc inode_io_list_del -EXPORT_SYMBOL vmlinux 0x4e621572 phy_start_aneg -EXPORT_SYMBOL vmlinux 0x4e646619 pci_set_power_state +EXPORT_SYMBOL vmlinux 0x4e423c92 snd_pcm_new EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console +EXPORT_SYMBOL vmlinux 0x4e72c72a tcp_seq_next +EXPORT_SYMBOL vmlinux 0x4e7d280a xfrm_state_lookup +EXPORT_SYMBOL vmlinux 0x4e7e812a generic_file_mmap +EXPORT_SYMBOL vmlinux 0x4e80a603 tty_port_init EXPORT_SYMBOL vmlinux 0x4e80d27c ucc_fast_enable -EXPORT_SYMBOL vmlinux 0x4ea9deab key_type_keyring +EXPORT_SYMBOL vmlinux 0x4e827811 md_update_sb +EXPORT_SYMBOL vmlinux 0x4e986afa __mmc_claim_host +EXPORT_SYMBOL vmlinux 0x4e9f8d4f end_page_writeback +EXPORT_SYMBOL vmlinux 0x4ea421b1 validate_slab_cache EXPORT_SYMBOL vmlinux 0x4eada8f7 security_secid_to_secctx -EXPORT_SYMBOL vmlinux 0x4eaf23f6 xfrm_alloc_spi -EXPORT_SYMBOL vmlinux 0x4ec080e5 twl6040_set_bits -EXPORT_SYMBOL vmlinux 0x4ecb48e7 mipi_dsi_dcs_set_display_off -EXPORT_SYMBOL vmlinux 0x4ecc7548 sock_recv_errqueue +EXPORT_SYMBOL vmlinux 0x4eb16109 generic_file_llseek_size +EXPORT_SYMBOL vmlinux 0x4eb18558 param_ops_bool +EXPORT_SYMBOL vmlinux 0x4ec2a62f tcp_rcv_state_process +EXPORT_SYMBOL vmlinux 0x4ed3dfaa iov_iter_alignment EXPORT_SYMBOL vmlinux 0x4ee0e846 ZSTD_initDCtx -EXPORT_SYMBOL vmlinux 0x4ee49383 kiocb_set_cancel_fn EXPORT_SYMBOL vmlinux 0x4ee98ebd tcp_have_smc -EXPORT_SYMBOL vmlinux 0x4f0f2e62 dentry_open -EXPORT_SYMBOL vmlinux 0x4f0fc5e2 freeze_super -EXPORT_SYMBOL vmlinux 0x4f1119a2 mipi_dsi_host_register -EXPORT_SYMBOL vmlinux 0x4f1917cf tegra_ivc_init +EXPORT_SYMBOL vmlinux 0x4ef7600b of_root +EXPORT_SYMBOL vmlinux 0x4f0b8360 netdev_pick_tx +EXPORT_SYMBOL vmlinux 0x4f181d9d wait_for_key_construction +EXPORT_SYMBOL vmlinux 0x4f1820fe pci_find_capability EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create EXPORT_SYMBOL vmlinux 0x4f2250ba rtc_tm_to_time64 -EXPORT_SYMBOL vmlinux 0x4f3a55c7 cdrom_ioctl -EXPORT_SYMBOL vmlinux 0x4f4dd0db jbd2_journal_get_undo_access -EXPORT_SYMBOL vmlinux 0x4f517c2f input_grab_device +EXPORT_SYMBOL vmlinux 0x4f492f6b block_write_full_page +EXPORT_SYMBOL vmlinux 0x4f4e85a8 ip_setsockopt +EXPORT_SYMBOL vmlinux 0x4f75aa8b mod_node_page_state EXPORT_SYMBOL vmlinux 0x4f816e9b snd_pcm_format_big_endian -EXPORT_SYMBOL vmlinux 0x4f889e96 sync_blockdev EXPORT_SYMBOL vmlinux 0x4f89c9de gpmc_cs_free -EXPORT_SYMBOL vmlinux 0x4f8c6b6c netdev_set_sb_channel -EXPORT_SYMBOL vmlinux 0x4f99950f __bforget -EXPORT_SYMBOL vmlinux 0x4fb642a2 nand_ecc_sw_hamming_cleanup_ctx -EXPORT_SYMBOL vmlinux 0x4fb6c4a1 fqdir_init -EXPORT_SYMBOL vmlinux 0x4fc54041 jbd2_journal_start_reserved -EXPORT_SYMBOL vmlinux 0x4fd2ca58 phy_write_paged -EXPORT_SYMBOL vmlinux 0x4fe0ed77 phy_write_mmd +EXPORT_SYMBOL vmlinux 0x4f9a01d8 mipi_dsi_dcs_get_pixel_format +EXPORT_SYMBOL vmlinux 0x4f9dfc1c genphy_soft_reset +EXPORT_SYMBOL vmlinux 0x4fa66919 __blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0x4fad00f3 ipv6_chk_prefix +EXPORT_SYMBOL vmlinux 0x4fb7fa4e rproc_coredump_add_segment +EXPORT_SYMBOL vmlinux 0x4fc7ea64 __neigh_set_probe_once +EXPORT_SYMBOL vmlinux 0x4fdbaa79 netdev_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0x4fed1695 unlock_rename EXPORT_SYMBOL vmlinux 0x4fef3ef4 completion_done EXPORT_SYMBOL vmlinux 0x4ff694b0 kobject_set_name +EXPORT_SYMBOL vmlinux 0x4ff8e2ce snd_pcm_lib_free_vmalloc_buffer 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 0x5017b1f4 dcache_readdir -EXPORT_SYMBOL vmlinux 0x501e403d blk_pm_runtime_init +EXPORT_SYMBOL vmlinux 0x5027b705 xfrm4_protocol_deregister EXPORT_SYMBOL vmlinux 0x502b6647 mempool_create_node +EXPORT_SYMBOL vmlinux 0x503b477a of_phy_is_fixed_link EXPORT_SYMBOL vmlinux 0x503bd137 snd_interval_ranges -EXPORT_SYMBOL vmlinux 0x503ed379 finalize_exec -EXPORT_SYMBOL vmlinux 0x50555d37 __netif_schedule EXPORT_SYMBOL vmlinux 0x50624917 sha1_init EXPORT_SYMBOL vmlinux 0x506dff1a __genradix_free -EXPORT_SYMBOL vmlinux 0x507c7763 tty_port_tty_set -EXPORT_SYMBOL vmlinux 0x50891c8d find_vma -EXPORT_SYMBOL vmlinux 0x508a4444 iterate_dir -EXPORT_SYMBOL vmlinux 0x50a1fdb2 kill_fasync +EXPORT_SYMBOL vmlinux 0x5089cac5 blk_queue_update_dma_pad +EXPORT_SYMBOL vmlinux 0x509856d1 consume_skb EXPORT_SYMBOL vmlinux 0x50a4698c fb_videomode_to_modelist -EXPORT_SYMBOL vmlinux 0x50b70beb key_revoke +EXPORT_SYMBOL vmlinux 0x50a54560 iov_iter_revert +EXPORT_SYMBOL vmlinux 0x50b1dc2c mipi_dsi_dcs_set_display_off EXPORT_SYMBOL vmlinux 0x50b73ce2 rfkill_find_type +EXPORT_SYMBOL vmlinux 0x50ba148e nand_ecc_sw_hamming_correct EXPORT_SYMBOL vmlinux 0x50be748d security_ib_free_security -EXPORT_SYMBOL vmlinux 0x50c3a8e2 security_inet_conn_established -EXPORT_SYMBOL vmlinux 0x50ca7888 ipv6_dev_get_saddr -EXPORT_SYMBOL vmlinux 0x50cc1643 param_ops_long EXPORT_SYMBOL vmlinux 0x50d035c2 vsscanf +EXPORT_SYMBOL vmlinux 0x50d5f19d rdmacg_try_charge EXPORT_SYMBOL vmlinux 0x50d71bcf gen_pool_first_fit +EXPORT_SYMBOL vmlinux 0x50d7d51a bio_copy_data +EXPORT_SYMBOL vmlinux 0x50e47423 pci_enable_atomic_ops_to_root +EXPORT_SYMBOL vmlinux 0x50ebf689 register_fib_notifier EXPORT_SYMBOL vmlinux 0x50f85302 __arm_smccc_hvc EXPORT_SYMBOL vmlinux 0x50fd6103 dma_fence_signal -EXPORT_SYMBOL vmlinux 0x510d7e1d dev_get_by_index_rcu -EXPORT_SYMBOL vmlinux 0x5123d55e mdio_find_bus -EXPORT_SYMBOL vmlinux 0x512b0d96 jbd2_wait_inode_data -EXPORT_SYMBOL vmlinux 0x513989ab genl_notify +EXPORT_SYMBOL vmlinux 0x510bbdf7 jbd2_journal_wipe +EXPORT_SYMBOL vmlinux 0x5122a22a udp6_set_csum +EXPORT_SYMBOL vmlinux 0x5125d200 inet_register_protosw +EXPORT_SYMBOL vmlinux 0x512837f5 dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0x5128d112 input_set_capability EXPORT_SYMBOL vmlinux 0x51480110 __tracepoint_mmap_lock_released EXPORT_SYMBOL vmlinux 0x514a62ec dq_data_lock -EXPORT_SYMBOL vmlinux 0x51516d1a dm_table_get_mode -EXPORT_SYMBOL vmlinux 0x51523200 jbd2_journal_clear_err +EXPORT_SYMBOL vmlinux 0x514fbdf3 rproc_coredump_set_elf_info EXPORT_SYMBOL vmlinux 0x51641162 opal_unlock_from_suspend -EXPORT_SYMBOL vmlinux 0x5165bb11 pci_bus_write_config_word EXPORT_SYMBOL vmlinux 0x517018a2 sgl_alloc_order +EXPORT_SYMBOL vmlinux 0x51721277 pci_bus_read_config_dword +EXPORT_SYMBOL vmlinux 0x51764480 register_md_personality EXPORT_SYMBOL vmlinux 0x51a910c0 arm_copy_to_user -EXPORT_SYMBOL vmlinux 0x51b82d7a scsi_remove_host -EXPORT_SYMBOL vmlinux 0x51d3387d elm_config -EXPORT_SYMBOL vmlinux 0x51dc0bf7 qdisc_reset +EXPORT_SYMBOL vmlinux 0x51ab39af sget_fc +EXPORT_SYMBOL vmlinux 0x51ac40d9 mipi_dsi_dcs_set_display_on +EXPORT_SYMBOL vmlinux 0x51b458c8 dec_zone_page_state +EXPORT_SYMBOL vmlinux 0x51d6d4e8 __dev_kfree_skb_any +EXPORT_SYMBOL vmlinux 0x51e0d5be snd_pcm_hw_constraint_minmax EXPORT_SYMBOL vmlinux 0x51e77c97 pfn_valid -EXPORT_SYMBOL vmlinux 0x51f41c34 mipi_dsi_attach +EXPORT_SYMBOL vmlinux 0x51e8cabe of_mdio_find_device +EXPORT_SYMBOL vmlinux 0x51f0f952 skb_append EXPORT_SYMBOL vmlinux 0x51f86a1a blk_limits_io_opt +EXPORT_SYMBOL vmlinux 0x52031174 get_watch_queue EXPORT_SYMBOL vmlinux 0x5203d176 cmd_db_ready EXPORT_SYMBOL vmlinux 0x522fb0e4 __hsiphash_unaligned +EXPORT_SYMBOL vmlinux 0x523b8bf7 nf_hook_slow EXPORT_SYMBOL vmlinux 0x523e57aa ZSTD_getDictID_fromDict +EXPORT_SYMBOL vmlinux 0x525c9e74 ipv6_sock_mc_drop +EXPORT_SYMBOL vmlinux 0x526a8166 blk_queue_bounce_limit +EXPORT_SYMBOL vmlinux 0x52796971 page_mapped EXPORT_SYMBOL vmlinux 0x528c709d simple_read_from_buffer -EXPORT_SYMBOL vmlinux 0x52a4f4e2 __netlink_kernel_create +EXPORT_SYMBOL vmlinux 0x52a24bfb snd_timer_global_new +EXPORT_SYMBOL vmlinux 0x52b8114e netdev_notify_peers EXPORT_SYMBOL vmlinux 0x52ba6325 __cpuhp_setup_state +EXPORT_SYMBOL vmlinux 0x52bea907 invalidate_inode_buffers EXPORT_SYMBOL vmlinux 0x52d717da xz_dec_init -EXPORT_SYMBOL vmlinux 0x52dcda87 fs_param_is_u32 +EXPORT_SYMBOL vmlinux 0x52d879b2 flow_rule_match_cvlan +EXPORT_SYMBOL vmlinux 0x52e01c57 mmc_card_alternative_gpt_sector EXPORT_SYMBOL vmlinux 0x52e3e4a5 snd_pcm_hw_param_value -EXPORT_SYMBOL vmlinux 0x52ec5234 mdio_device_register -EXPORT_SYMBOL vmlinux 0x52f11761 security_sb_mnt_opts_compat EXPORT_SYMBOL vmlinux 0x52f2850a imx_sc_pm_cpu_start -EXPORT_SYMBOL vmlinux 0x52f6a176 elm_decode_bch_error_page +EXPORT_SYMBOL vmlinux 0x52fb0355 inet_csk_complete_hashdance EXPORT_SYMBOL vmlinux 0x530b1e98 pm_suspend -EXPORT_SYMBOL vmlinux 0x5327e5f2 alloc_skb_with_frags +EXPORT_SYMBOL vmlinux 0x5337d746 twl6040_set_bits EXPORT_SYMBOL vmlinux 0x5338184f ethtool_sprintf -EXPORT_SYMBOL vmlinux 0x53418a96 snd_timer_global_register -EXPORT_SYMBOL vmlinux 0x53509cca netdev_features_change -EXPORT_SYMBOL vmlinux 0x5352dac2 phy_drivers_unregister -EXPORT_SYMBOL vmlinux 0x535914c5 dm_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x5341f7c9 tegra_dfll_runtime_suspend EXPORT_SYMBOL vmlinux 0x536060af radix_tree_lookup_slot -EXPORT_SYMBOL vmlinux 0x53668185 qdisc_watchdog_init -EXPORT_SYMBOL vmlinux 0x5385be89 snd_ctl_free_one -EXPORT_SYMBOL vmlinux 0x538f576b setup_arg_pages -EXPORT_SYMBOL vmlinux 0x53a3e5ef d_find_alias +EXPORT_SYMBOL vmlinux 0x53622576 mipi_dsi_dcs_soft_reset +EXPORT_SYMBOL vmlinux 0x536279b5 bdi_register +EXPORT_SYMBOL vmlinux 0x536a89c5 devfreq_monitor_suspend +EXPORT_SYMBOL vmlinux 0x536a9685 kill_pgrp +EXPORT_SYMBOL vmlinux 0x537ae25b xfrm_input_resume +EXPORT_SYMBOL vmlinux 0x5387424b pci_scan_root_bus +EXPORT_SYMBOL vmlinux 0x53963f02 inet_frags_init EXPORT_SYMBOL vmlinux 0x53aeb013 hdmi_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0x53befc41 inet_frag_pull_head EXPORT_SYMBOL vmlinux 0x53c5f44d sg_copy_buffer -EXPORT_SYMBOL vmlinux 0x53d9d76d dquot_quota_sync -EXPORT_SYMBOL vmlinux 0x53fa929b snd_info_free_entry -EXPORT_SYMBOL vmlinux 0x54157782 dev_change_proto_down_reason -EXPORT_SYMBOL vmlinux 0x5416255d of_get_next_parent -EXPORT_SYMBOL vmlinux 0x5424cc71 inet_confirm_addr +EXPORT_SYMBOL vmlinux 0x53d152b7 jbd2_submit_inode_data +EXPORT_SYMBOL vmlinux 0x53dda2b6 mmc_run_bkops +EXPORT_SYMBOL vmlinux 0x53f726f0 kernel_getpeername +EXPORT_SYMBOL vmlinux 0x53fb796a fs_param_is_string +EXPORT_SYMBOL vmlinux 0x53fe0c57 dm_put_device +EXPORT_SYMBOL vmlinux 0x540351c4 cdc_parse_cdc_header +EXPORT_SYMBOL vmlinux 0x5405a9c6 dev_get_port_parent_id +EXPORT_SYMBOL vmlinux 0x54282c62 cdrom_get_last_written EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start -EXPORT_SYMBOL vmlinux 0x546a1a7a phy_validate_pause -EXPORT_SYMBOL vmlinux 0x5480dea5 generic_pipe_buf_try_steal -EXPORT_SYMBOL vmlinux 0x549d603e __mod_node_page_state -EXPORT_SYMBOL vmlinux 0x54acfe18 netdev_crit -EXPORT_SYMBOL vmlinux 0x54af0b68 ip6_fraglist_prepare +EXPORT_SYMBOL vmlinux 0x5444151e sock_bind_add +EXPORT_SYMBOL vmlinux 0x544e821b simple_dentry_operations +EXPORT_SYMBOL vmlinux 0x544fc7cd serio_unregister_child_port +EXPORT_SYMBOL vmlinux 0x5450f07d rtnl_kfree_skbs +EXPORT_SYMBOL vmlinux 0x5483dbec skb_csum_hwoffload_help +EXPORT_SYMBOL vmlinux 0x548e434f snd_info_create_card_entry +EXPORT_SYMBOL vmlinux 0x549a5324 reuseport_add_sock +EXPORT_SYMBOL vmlinux 0x54a091cd input_mt_destroy_slots +EXPORT_SYMBOL vmlinux 0x54a17e17 filemap_range_has_page +EXPORT_SYMBOL vmlinux 0x54a441e7 __traceiter_spi_transfer_stop +EXPORT_SYMBOL vmlinux 0x54a9edad filp_close +EXPORT_SYMBOL vmlinux 0x54abc003 mount_single +EXPORT_SYMBOL vmlinux 0x54ae7020 napi_consume_skb EXPORT_SYMBOL vmlinux 0x54b1fac6 __ubsan_handle_load_invalid_value -EXPORT_SYMBOL vmlinux 0x54b37709 skb_copy_bits -EXPORT_SYMBOL vmlinux 0x54c9e9d9 vmf_insert_mixed_mkwrite -EXPORT_SYMBOL vmlinux 0x54dcd588 param_get_charp +EXPORT_SYMBOL vmlinux 0x54b66265 page_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0x54c11e7b xfrm_state_add +EXPORT_SYMBOL vmlinux 0x54c1d83e ppp_output_wakeup EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp +EXPORT_SYMBOL vmlinux 0x54ea08a3 posix_acl_chmod +EXPORT_SYMBOL vmlinux 0x54f8c64f scsi_host_put +EXPORT_SYMBOL vmlinux 0x54fce5e3 devm_pci_remap_cfg_resource +EXPORT_SYMBOL vmlinux 0x54fd67e1 snd_compr_free_pages +EXPORT_SYMBOL vmlinux 0x550160b9 d_instantiate_anon EXPORT_SYMBOL vmlinux 0x5506b8f7 netlbl_bitmap_setbit -EXPORT_SYMBOL vmlinux 0x551b026a vlan_vid_add +EXPORT_SYMBOL vmlinux 0x55100127 mdiobus_read_nested +EXPORT_SYMBOL vmlinux 0x55169756 init_special_inode EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color -EXPORT_SYMBOL vmlinux 0x552d829a inet_dev_addr_type -EXPORT_SYMBOL vmlinux 0x55458a02 md_bitmap_endwrite +EXPORT_SYMBOL vmlinux 0x5531d80d netdev_adjacent_change_abort +EXPORT_SYMBOL vmlinux 0x5541885f d_find_alias EXPORT_SYMBOL vmlinux 0x5545a639 ns_capable_noaudit EXPORT_SYMBOL vmlinux 0x554ae3a4 irq_poll_sched -EXPORT_SYMBOL vmlinux 0x554d1b65 set_blocksize -EXPORT_SYMBOL vmlinux 0x5558666a ipmi_platform_add +EXPORT_SYMBOL vmlinux 0x55532ae5 __zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0x5562e186 sdev_prefix_printk EXPORT_SYMBOL vmlinux 0x5562e403 prepare_to_wait_exclusive -EXPORT_SYMBOL vmlinux 0x556b1243 flow_rule_match_ipv4_addrs -EXPORT_SYMBOL vmlinux 0x556bb25a security_sk_clone -EXPORT_SYMBOL vmlinux 0x557b2560 inet_frags_init -EXPORT_SYMBOL vmlinux 0x5583c2a7 netif_stacked_transfer_operstate +EXPORT_SYMBOL vmlinux 0x556a578c phy_driver_register +EXPORT_SYMBOL vmlinux 0x557d879d dev_mc_del_global EXPORT_SYMBOL vmlinux 0x558b281d aes_expandkey -EXPORT_SYMBOL vmlinux 0x559e3615 clean_bdev_aliases -EXPORT_SYMBOL vmlinux 0x55a161c3 set_capacity -EXPORT_SYMBOL vmlinux 0x55bd12f4 skb_clone -EXPORT_SYMBOL vmlinux 0x55c515a0 dcbnl_ieee_notify -EXPORT_SYMBOL vmlinux 0x55ca3d68 nand_ecc_sw_hamming_calculate -EXPORT_SYMBOL vmlinux 0x55cd65d5 jbd2__journal_start -EXPORT_SYMBOL vmlinux 0x55d5af07 disk_stack_limits -EXPORT_SYMBOL vmlinux 0x55d68595 dma_sync_wait -EXPORT_SYMBOL vmlinux 0x55de598b clear_bdi_congested +EXPORT_SYMBOL vmlinux 0x55a576ae inc_node_state +EXPORT_SYMBOL vmlinux 0x55b5ca4f skb_flow_dissect_meta +EXPORT_SYMBOL vmlinux 0x55d0617d cqhci_resume +EXPORT_SYMBOL vmlinux 0x55d0c5e6 snd_pcm_lib_ioctl +EXPORT_SYMBOL vmlinux 0x55e0386a inet_confirm_addr EXPORT_SYMBOL vmlinux 0x55e31703 ethtool_convert_link_mode_to_legacy_u32 EXPORT_SYMBOL vmlinux 0x55eb869a _raw_read_trylock -EXPORT_SYMBOL vmlinux 0x55ed0d8b seq_escape -EXPORT_SYMBOL vmlinux 0x55ee194c mark_buffer_dirty -EXPORT_SYMBOL vmlinux 0x55f518b4 blk_queue_alignment_offset EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user EXPORT_SYMBOL vmlinux 0x563952a3 kblockd_schedule_work -EXPORT_SYMBOL vmlinux 0x56453951 mmc_of_parse_clk_phase -EXPORT_SYMBOL vmlinux 0x56478c7d mpage_readahead EXPORT_SYMBOL vmlinux 0x56498087 paddr_vmcoreinfo_note -EXPORT_SYMBOL vmlinux 0x56603fb2 dev_lstats_read -EXPORT_SYMBOL vmlinux 0x567435ad genphy_setup_forced +EXPORT_SYMBOL vmlinux 0x5651636a submit_bio_wait +EXPORT_SYMBOL vmlinux 0x566b2cfe elv_bio_merge_ok EXPORT_SYMBOL vmlinux 0x56802ae8 rps_cpu_mask -EXPORT_SYMBOL vmlinux 0x5681b7ef mmc_add_host -EXPORT_SYMBOL vmlinux 0x568edb74 dquot_get_next_dqblk -EXPORT_SYMBOL vmlinux 0x568f3686 seq_vprintf -EXPORT_SYMBOL vmlinux 0x56b82d81 tcp_seq_stop -EXPORT_SYMBOL vmlinux 0x56bd1244 netif_skb_features +EXPORT_SYMBOL vmlinux 0x569a21e7 cqhci_pltfm_init +EXPORT_SYMBOL vmlinux 0x56a5943d netpoll_send_skb +EXPORT_SYMBOL vmlinux 0x56bdde8d __ip_dev_find +EXPORT_SYMBOL vmlinux 0x56c25594 jbd2_journal_begin_ordered_truncate EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg EXPORT_SYMBOL vmlinux 0x56de5ace __cpuhp_remove_state -EXPORT_SYMBOL vmlinux 0x5701b42a snd_pcm_hw_rule_add -EXPORT_SYMBOL vmlinux 0x570c0089 rproc_detach -EXPORT_SYMBOL vmlinux 0x5710618c __inet_stream_connect -EXPORT_SYMBOL vmlinux 0x5723ae40 crypto_sha512_update -EXPORT_SYMBOL vmlinux 0x572570fc netdev_pick_tx -EXPORT_SYMBOL vmlinux 0x574a3a4e seq_release +EXPORT_SYMBOL vmlinux 0x57150ce1 napi_enable +EXPORT_SYMBOL vmlinux 0x5726fcb2 ip_tunnel_header_ops +EXPORT_SYMBOL vmlinux 0x57285735 dquot_load_quota_inode +EXPORT_SYMBOL vmlinux 0x5734e380 read_cache_page +EXPORT_SYMBOL vmlinux 0x574a7068 ethtool_op_get_ts_info EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region -EXPORT_SYMBOL vmlinux 0x57542ef6 generic_file_llseek_size EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put +EXPORT_SYMBOL vmlinux 0x57639ca8 xfrm_state_lookup_byspi EXPORT_SYMBOL vmlinux 0x57674fd7 __sw_hweight16 -EXPORT_SYMBOL vmlinux 0x5769769c start_tty -EXPORT_SYMBOL vmlinux 0x5771173d devm_ioremap -EXPORT_SYMBOL vmlinux 0x578e07a7 scsi_vpd_tpg_id -EXPORT_SYMBOL vmlinux 0x579f03e8 tcp_rcv_state_process +EXPORT_SYMBOL vmlinux 0x578737df inet_csk_reset_keepalive_timer +EXPORT_SYMBOL vmlinux 0x57889b7c fscrypt_ioctl_set_policy +EXPORT_SYMBOL vmlinux 0x578f332d pci_wait_for_pending_transaction +EXPORT_SYMBOL vmlinux 0x5799a65a write_inode_now +EXPORT_SYMBOL vmlinux 0x579c679a forget_all_cached_acls +EXPORT_SYMBOL vmlinux 0x579f3751 dquot_load_quota_sb +EXPORT_SYMBOL vmlinux 0x57a35edb seq_write EXPORT_SYMBOL vmlinux 0x57a3fc06 is_firmware_framebuffer -EXPORT_SYMBOL vmlinux 0x57ab109b kmem_cache_free_bulk -EXPORT_SYMBOL vmlinux 0x57ad907b nf_ct_get_tuple_skb -EXPORT_SYMBOL vmlinux 0x57aea9d7 skb_put -EXPORT_SYMBOL vmlinux 0x57b9e21f pci_restore_state -EXPORT_SYMBOL vmlinux 0x57c0222a crypto_sha1_update +EXPORT_SYMBOL vmlinux 0x57b453a1 netdev_bonding_info_change +EXPORT_SYMBOL vmlinux 0x57b6856b skb_copy_and_csum_dev +EXPORT_SYMBOL vmlinux 0x57b797cd seq_release EXPORT_SYMBOL vmlinux 0x57ceedb1 lockref_put_not_zero -EXPORT_SYMBOL vmlinux 0x57dd8052 add_random_ready_callback EXPORT_SYMBOL vmlinux 0x57e5170c qcom_scm_iommu_secure_ptbl_size +EXPORT_SYMBOL vmlinux 0x57ea61ed seg6_push_hmac EXPORT_SYMBOL vmlinux 0x57f38cdc qe_get_firmware_info EXPORT_SYMBOL vmlinux 0x57ff23f0 ZSTD_getFrameContentSize -EXPORT_SYMBOL vmlinux 0x58087676 security_unix_may_send -EXPORT_SYMBOL vmlinux 0x5808d1cf of_get_next_available_child -EXPORT_SYMBOL vmlinux 0x5810c965 zerocopy_sg_from_iter EXPORT_SYMBOL vmlinux 0x5818fe3c posix_acl_from_mode EXPORT_SYMBOL vmlinux 0x581cde4e up EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate -EXPORT_SYMBOL vmlinux 0x58237fe3 skb_append EXPORT_SYMBOL vmlinux 0x582b6275 xfrm_if_unregister_cb EXPORT_SYMBOL vmlinux 0x5838f6c9 rtc_valid_tm -EXPORT_SYMBOL vmlinux 0x5843bcbd configfs_undepend_item +EXPORT_SYMBOL vmlinux 0x584356a4 end_buffer_async_write EXPORT_SYMBOL vmlinux 0x58516557 omap_set_dma_src_data_pack EXPORT_SYMBOL vmlinux 0x5855b740 __sg_page_iter_start -EXPORT_SYMBOL vmlinux 0x585a9e7a reuseport_attach_prog -EXPORT_SYMBOL vmlinux 0x585e9a6d xfrm_user_policy -EXPORT_SYMBOL vmlinux 0x5863d588 inet_csk_clear_xmit_timers -EXPORT_SYMBOL vmlinux 0x5871c709 blk_queue_max_hw_sectors +EXPORT_SYMBOL vmlinux 0x58565bab tcp_v4_md5_hash_skb +EXPORT_SYMBOL vmlinux 0x586ce2b4 simple_pin_fs EXPORT_SYMBOL vmlinux 0x587b0954 kvasprintf EXPORT_SYMBOL vmlinux 0x587b892e qe_get_num_of_risc -EXPORT_SYMBOL vmlinux 0x58a26655 genphy_read_lpa +EXPORT_SYMBOL vmlinux 0x587bb544 netpoll_poll_enable +EXPORT_SYMBOL vmlinux 0x588dff9c flow_rule_alloc +EXPORT_SYMBOL vmlinux 0x589f4b83 scsi_is_sdev_device EXPORT_SYMBOL vmlinux 0x58acf24b mdiobus_register_board_info +EXPORT_SYMBOL vmlinux 0x58ad24d1 sk_stream_kill_queues EXPORT_SYMBOL vmlinux 0x58b4645c dev_close_many EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard -EXPORT_SYMBOL vmlinux 0x58ced20c iov_iter_xarray +EXPORT_SYMBOL vmlinux 0x58ba850d of_node_name_eq EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io +EXPORT_SYMBOL vmlinux 0x58ee55b5 __netlink_ns_capable EXPORT_SYMBOL vmlinux 0x58fad869 __var_waitqueue -EXPORT_SYMBOL vmlinux 0x58fc5ec3 d_tmpfile -EXPORT_SYMBOL vmlinux 0x59169568 pcie_port_service_register -EXPORT_SYMBOL vmlinux 0x592ad94d validate_slab_cache +EXPORT_SYMBOL vmlinux 0x5906f685 blk_rq_map_kern +EXPORT_SYMBOL vmlinux 0x5908f38e block_write_begin +EXPORT_SYMBOL vmlinux 0x590e351a done_path_create +EXPORT_SYMBOL vmlinux 0x591f6258 of_find_device_by_node +EXPORT_SYMBOL vmlinux 0x592667fe vga_put EXPORT_SYMBOL vmlinux 0x592b5bd9 tcp_sockets_allocated -EXPORT_SYMBOL vmlinux 0x5948bed4 phy_free_interrupt +EXPORT_SYMBOL vmlinux 0x593b7c45 pci_find_next_bus +EXPORT_SYMBOL vmlinux 0x5946086a pci_assign_resource +EXPORT_SYMBOL vmlinux 0x594aab59 register_quota_format EXPORT_SYMBOL vmlinux 0x594bf15b ioport_map EXPORT_SYMBOL vmlinux 0x594e1317 __modsi3 -EXPORT_SYMBOL vmlinux 0x5957b9a1 n_tty_ioctl_helper -EXPORT_SYMBOL vmlinux 0x595af573 uart_resume_port -EXPORT_SYMBOL vmlinux 0x5963deed __dev_kfree_skb_any -EXPORT_SYMBOL vmlinux 0x5974e279 page_pool_put_page -EXPORT_SYMBOL vmlinux 0x597e91fd locks_copy_conflock -EXPORT_SYMBOL vmlinux 0x59997dc3 cleancache_register_ops +EXPORT_SYMBOL vmlinux 0x59909ad1 pci_request_regions +EXPORT_SYMBOL vmlinux 0x59937db9 alloc_fddidev +EXPORT_SYMBOL vmlinux 0x5997cc97 dev_mc_add EXPORT_SYMBOL vmlinux 0x599b4888 qe_setbrg +EXPORT_SYMBOL vmlinux 0x59a039f2 i2c_smbus_write_word_data EXPORT_SYMBOL vmlinux 0x59a17bfc tegra114_clock_tune_cpu_trimmers_high EXPORT_SYMBOL vmlinux 0x59b1d17c pci_add_resource -EXPORT_SYMBOL vmlinux 0x59b61bbe sock_no_sendpage_locked EXPORT_SYMBOL vmlinux 0x59b7cab6 mempool_resize -EXPORT_SYMBOL vmlinux 0x59bab0ac mini_qdisc_pair_init -EXPORT_SYMBOL vmlinux 0x59c41047 pcie_bandwidth_available -EXPORT_SYMBOL vmlinux 0x59cbdefc fs_param_is_blockdev -EXPORT_SYMBOL vmlinux 0x59cf9968 kmem_cache_size +EXPORT_SYMBOL vmlinux 0x59b83942 tcp_sync_mss +EXPORT_SYMBOL vmlinux 0x59bd7109 ptp_cancel_worker_sync +EXPORT_SYMBOL vmlinux 0x59ccd21d truncate_pagecache EXPORT_SYMBOL vmlinux 0x59d29dab v7_flush_kern_dcache_area -EXPORT_SYMBOL vmlinux 0x59d57a8a __scsi_execute +EXPORT_SYMBOL vmlinux 0x59d5072f scsi_register_driver +EXPORT_SYMBOL vmlinux 0x59d8360d sg_alloc_table_from_pages_segment +EXPORT_SYMBOL vmlinux 0x59ddaa0b scsi_device_quiesce EXPORT_SYMBOL vmlinux 0x59e5070d __do_div64 -EXPORT_SYMBOL vmlinux 0x5a03e7e9 tcf_generic_walker -EXPORT_SYMBOL vmlinux 0x5a063bbf simple_rename -EXPORT_SYMBOL vmlinux 0x5a09e519 zero_fill_bio +EXPORT_SYMBOL vmlinux 0x59e85eb2 wake_up_process +EXPORT_SYMBOL vmlinux 0x59f729b6 skb_orphan_partial +EXPORT_SYMBOL vmlinux 0x5a073f67 con_set_default_unimap +EXPORT_SYMBOL vmlinux 0x5a08adb4 pci_free_host_bridge +EXPORT_SYMBOL vmlinux 0x5a0b5331 skb_flow_dissect_hash EXPORT_SYMBOL vmlinux 0x5a0b73d0 zlib_deflateInit2 -EXPORT_SYMBOL vmlinux 0x5a1433ec mmc_cqe_post_req +EXPORT_SYMBOL vmlinux 0x5a14b7f9 inode_needs_sync EXPORT_SYMBOL vmlinux 0x5a14de15 radix_tree_insert -EXPORT_SYMBOL vmlinux 0x5a1a8f0d __starget_for_each_device -EXPORT_SYMBOL vmlinux 0x5a1bc8e4 blk_queue_max_write_zeroes_sectors -EXPORT_SYMBOL vmlinux 0x5a22c23f of_get_compatible_child -EXPORT_SYMBOL vmlinux 0x5a2f970b netlbl_calipso_ops_register -EXPORT_SYMBOL vmlinux 0x5a4b1c62 flow_block_cb_free +EXPORT_SYMBOL vmlinux 0x5a4bb058 nf_log_trace EXPORT_SYMBOL vmlinux 0x5a4d313e gf128mul_4k_lle -EXPORT_SYMBOL vmlinux 0x5a500a99 dev_addr_init -EXPORT_SYMBOL vmlinux 0x5a529f61 tcp_fastopen_defer_connect -EXPORT_SYMBOL vmlinux 0x5a8cbc72 __alloc_disk_node -EXPORT_SYMBOL vmlinux 0x5aa7b8f6 sock_create_kern -EXPORT_SYMBOL vmlinux 0x5ac832da pci_dev_put -EXPORT_SYMBOL vmlinux 0x5ad69de2 t10_pi_type3_crc +EXPORT_SYMBOL vmlinux 0x5a70d570 pci_release_selected_regions +EXPORT_SYMBOL vmlinux 0x5a81ae25 snd_dma_free_pages +EXPORT_SYMBOL vmlinux 0x5a879ea9 poll_initwait +EXPORT_SYMBOL vmlinux 0x5a96647b of_clk_get +EXPORT_SYMBOL vmlinux 0x5a99a0d7 flow_get_u32_dst +EXPORT_SYMBOL vmlinux 0x5a99efa4 register_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x5a9cb83a bio_alloc_bioset +EXPORT_SYMBOL vmlinux 0x5abdcdf6 __task_pid_nr_ns +EXPORT_SYMBOL vmlinux 0x5ad7cc90 snd_ctl_make_virtual_master EXPORT_SYMBOL vmlinux 0x5ae1154b __traceiter_kfree -EXPORT_SYMBOL vmlinux 0x5aeb9769 phy_trigger_machine -EXPORT_SYMBOL vmlinux 0x5af35b16 vme_dma_list_free +EXPORT_SYMBOL vmlinux 0x5aec3e93 __lock_sock_fast +EXPORT_SYMBOL vmlinux 0x5b00730d pin_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0x5b047ae9 xp_set_rxq_info EXPORT_SYMBOL vmlinux 0x5b04be5a disable_fiq EXPORT_SYMBOL vmlinux 0x5b062284 gen_pool_fixed_alloc -EXPORT_SYMBOL vmlinux 0x5b123dae scsi_get_device_flags_keyed EXPORT_SYMBOL vmlinux 0x5b36d5dd utf8agemax -EXPORT_SYMBOL vmlinux 0x5b5cea06 key_payload_reserve -EXPORT_SYMBOL vmlinux 0x5b6339f3 blkdev_issue_write_same -EXPORT_SYMBOL vmlinux 0x5b74f642 scsi_device_put -EXPORT_SYMBOL vmlinux 0x5baa1e5b mmc_detect_change -EXPORT_SYMBOL vmlinux 0x5bb5593f get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0x5b3a174f disk_stack_limits +EXPORT_SYMBOL vmlinux 0x5b6b7901 page_pool_release_page +EXPORT_SYMBOL vmlinux 0x5b750cd2 snd_timer_close +EXPORT_SYMBOL vmlinux 0x5b75a232 delete_from_page_cache +EXPORT_SYMBOL vmlinux 0x5b7fb44d give_up_console +EXPORT_SYMBOL vmlinux 0x5bb7d47e jbd2_fc_begin_commit EXPORT_SYMBOL vmlinux 0x5bbe49f4 __init_waitqueue_head +EXPORT_SYMBOL vmlinux 0x5bc71c07 cdrom_ioctl +EXPORT_SYMBOL vmlinux 0x5bccd26f iov_iter_gap_alignment EXPORT_SYMBOL vmlinux 0x5bd4ff88 flow_action_cookie_create +EXPORT_SYMBOL vmlinux 0x5bd513e7 inet_getname EXPORT_SYMBOL vmlinux 0x5bda4214 _raw_read_lock -EXPORT_SYMBOL vmlinux 0x5bdcb935 amba_device_register -EXPORT_SYMBOL vmlinux 0x5bdec097 devm_clk_hw_register_clkdev EXPORT_SYMBOL vmlinux 0x5be63c5b crc32c_csum_stub -EXPORT_SYMBOL vmlinux 0x5be7d6e9 of_node_name_eq -EXPORT_SYMBOL vmlinux 0x5c0f4623 skb_set_owner_w +EXPORT_SYMBOL vmlinux 0x5be6d88b msm_pinctrl_remove +EXPORT_SYMBOL vmlinux 0x5bf3ff09 dev_mc_unsync EXPORT_SYMBOL vmlinux 0x5c12dad4 vme_alloc_consistent -EXPORT_SYMBOL vmlinux 0x5c2a2d5a msm_pinctrl_remove +EXPORT_SYMBOL vmlinux 0x5c197cb8 pm860x_reg_read +EXPORT_SYMBOL vmlinux 0x5c22aeb2 pci_fixup_cardbus +EXPORT_SYMBOL vmlinux 0x5c2e4f0a pci_bus_read_config_word +EXPORT_SYMBOL vmlinux 0x5c386a99 kmalloc_caches EXPORT_SYMBOL vmlinux 0x5c3c7387 kstrtoull -EXPORT_SYMBOL vmlinux 0x5c471b8f del_random_ready_callback -EXPORT_SYMBOL vmlinux 0x5c4f95d6 dma_sync_single_for_cpu -EXPORT_SYMBOL vmlinux 0x5c616958 snd_pcm_set_managed_buffer_all -EXPORT_SYMBOL vmlinux 0x5c6a0fac snd_ctl_find_numid -EXPORT_SYMBOL vmlinux 0x5c6e877b dev_open +EXPORT_SYMBOL vmlinux 0x5c3fab38 mmc_gpio_get_ro +EXPORT_SYMBOL vmlinux 0x5c44bb09 dst_init +EXPORT_SYMBOL vmlinux 0x5c4c0b30 pagevec_lookup_range_tag EXPORT_SYMBOL vmlinux 0x5c716976 hdmi_audio_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x5c785ab0 register_cdrom EXPORT_SYMBOL vmlinux 0x5c7f1284 int_sqrt64 -EXPORT_SYMBOL vmlinux 0x5c8d949b rpmh_write +EXPORT_SYMBOL vmlinux 0x5c83132e mdiobus_free +EXPORT_SYMBOL vmlinux 0x5c912364 ip_mc_inc_group EXPORT_SYMBOL vmlinux 0x5c9284a0 processor_id -EXPORT_SYMBOL vmlinux 0x5c982330 max8998_read_reg -EXPORT_SYMBOL vmlinux 0x5c9d82be blk_cleanup_queue +EXPORT_SYMBOL vmlinux 0x5cafe44f ethtool_rx_flow_rule_destroy EXPORT_SYMBOL vmlinux 0x5cbd8e69 __crc32c_le -EXPORT_SYMBOL vmlinux 0x5cc50d7d rtnl_unicast -EXPORT_SYMBOL vmlinux 0x5cd4b140 dm_io -EXPORT_SYMBOL vmlinux 0x5cef8e09 pcim_iounmap_regions -EXPORT_SYMBOL vmlinux 0x5cf2e794 pcie_set_readrq +EXPORT_SYMBOL vmlinux 0x5cc064ab sock_sendmsg +EXPORT_SYMBOL vmlinux 0x5cc131fa ip6_frag_next +EXPORT_SYMBOL vmlinux 0x5cce869f ip6_route_me_harder +EXPORT_SYMBOL vmlinux 0x5cf09388 phy_init_hw EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor -EXPORT_SYMBOL vmlinux 0x5d112762 vme_dma_list_exec -EXPORT_SYMBOL vmlinux 0x5d203ee5 dcbnl_cee_notify -EXPORT_SYMBOL vmlinux 0x5d313185 rtnetlink_put_metrics +EXPORT_SYMBOL vmlinux 0x5d0be5e2 page_symlink +EXPORT_SYMBOL vmlinux 0x5d196187 pcix_get_mmrbc +EXPORT_SYMBOL vmlinux 0x5d367693 kernel_param_unlock EXPORT_SYMBOL vmlinux 0x5d37d658 dim_park_tired +EXPORT_SYMBOL vmlinux 0x5d430114 t10_pi_type1_ip +EXPORT_SYMBOL vmlinux 0x5d43a244 pldmfw_op_pci_match_record EXPORT_SYMBOL vmlinux 0x5d49aabc init_wait_var_entry -EXPORT_SYMBOL vmlinux 0x5d4a65aa key_move -EXPORT_SYMBOL vmlinux 0x5d6e6bdd xfrm_policy_alloc -EXPORT_SYMBOL vmlinux 0x5d71ab2f tty_do_resize -EXPORT_SYMBOL vmlinux 0x5d90364c neigh_carrier_down -EXPORT_SYMBOL vmlinux 0x5da1b155 scsi_dma_map -EXPORT_SYMBOL vmlinux 0x5da96897 __vfs_removexattr -EXPORT_SYMBOL vmlinux 0x5db431c0 inc_node_page_state +EXPORT_SYMBOL vmlinux 0x5d4f72a7 snd_timer_global_free +EXPORT_SYMBOL vmlinux 0x5d6fed7c proc_set_size +EXPORT_SYMBOL vmlinux 0x5d805f00 blk_get_request +EXPORT_SYMBOL vmlinux 0x5d9d599f mr_dump +EXPORT_SYMBOL vmlinux 0x5da21bbf jbd2_journal_stop +EXPORT_SYMBOL vmlinux 0x5dae1b21 snd_jack_report +EXPORT_SYMBOL vmlinux 0x5db7a712 cros_ec_query_all EXPORT_SYMBOL vmlinux 0x5dba71d7 sg_last -EXPORT_SYMBOL vmlinux 0x5dc1b728 jbd2_journal_destroy +EXPORT_SYMBOL vmlinux 0x5dcbebc0 pagecache_isize_extended EXPORT_SYMBOL vmlinux 0x5dcf6341 outer_cache EXPORT_SYMBOL vmlinux 0x5ddac875 abort_creds +EXPORT_SYMBOL vmlinux 0x5de360ad pcim_iomap EXPORT_SYMBOL vmlinux 0x5de5cca2 utf8_normalize -EXPORT_SYMBOL vmlinux 0x5df85cef pci_release_resource +EXPORT_SYMBOL vmlinux 0x5df612e1 pci_dev_put +EXPORT_SYMBOL vmlinux 0x5e0976c3 of_device_unregister EXPORT_SYMBOL vmlinux 0x5e0ccb9f sha1_transform -EXPORT_SYMBOL vmlinux 0x5e0e1cb2 page_zero_new_buffers -EXPORT_SYMBOL vmlinux 0x5e11db52 neigh_table_init -EXPORT_SYMBOL vmlinux 0x5e15dfe0 debugfs_create_automount -EXPORT_SYMBOL vmlinux 0x5e2bc1e7 backlight_device_get_by_type +EXPORT_SYMBOL vmlinux 0x5e1cad31 jbd2_fc_end_commit_fallback +EXPORT_SYMBOL vmlinux 0x5e1e4340 genl_notify EXPORT_SYMBOL vmlinux 0x5e373fb4 gf128mul_64k_bbe EXPORT_SYMBOL vmlinux 0x5e38c830 __kfifo_dma_out_prepare -EXPORT_SYMBOL vmlinux 0x5e3ba445 blk_rq_append_bio -EXPORT_SYMBOL vmlinux 0x5e61966b iov_iter_fault_in_readable -EXPORT_SYMBOL vmlinux 0x5e68bbdb dma_free_attrs -EXPORT_SYMBOL vmlinux 0x5e68e48f ip6mr_rule_default -EXPORT_SYMBOL vmlinux 0x5e6c32fd generic_parse_monolithic +EXPORT_SYMBOL vmlinux 0x5e3ead69 blk_integrity_compare +EXPORT_SYMBOL vmlinux 0x5e4a2a05 snd_timer_continue +EXPORT_SYMBOL vmlinux 0x5e4d9a93 mfd_cell_enable +EXPORT_SYMBOL vmlinux 0x5e5b60c5 pm860x_page_reg_write EXPORT_SYMBOL vmlinux 0x5e6f91f9 tegra_powergate_remove_clamping EXPORT_SYMBOL vmlinux 0x5e7f4920 snd_pcm_format_set_silence EXPORT_SYMBOL vmlinux 0x5e866d85 prandom_bytes -EXPORT_SYMBOL vmlinux 0x5e93f13e prepare_to_swait_event EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask -EXPORT_SYMBOL vmlinux 0x5ea07d86 mdiobus_alloc_size -EXPORT_SYMBOL vmlinux 0x5ea67253 f_setown +EXPORT_SYMBOL vmlinux 0x5e9e9ea3 blk_mq_start_request +EXPORT_SYMBOL vmlinux 0x5eaa61a7 tcf_idr_cleanup +EXPORT_SYMBOL vmlinux 0x5eaf0bb7 mmc_register_driver EXPORT_SYMBOL vmlinux 0x5eb24829 dm_shift_arg -EXPORT_SYMBOL vmlinux 0x5eb91a18 make_kuid EXPORT_SYMBOL vmlinux 0x5ec4aee6 put_sg_io_hdr -EXPORT_SYMBOL vmlinux 0x5ec6700a bio_clone_fast +EXPORT_SYMBOL vmlinux 0x5ec7b2b4 blk_cleanup_queue +EXPORT_SYMBOL vmlinux 0x5ecaedd2 snd_unregister_oss_device EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch EXPORT_SYMBOL vmlinux 0x5ed05bf6 hdmi_audio_infoframe_pack +EXPORT_SYMBOL vmlinux 0x5ed8dcf3 tcp_sock_set_keepcnt EXPORT_SYMBOL vmlinux 0x5ed90adc int_to_scsilun -EXPORT_SYMBOL vmlinux 0x5ee16721 flow_get_u32_src -EXPORT_SYMBOL vmlinux 0x5efd3d9f tc_setup_cb_reoffload +EXPORT_SYMBOL vmlinux 0x5ef1e0b6 d_lookup EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters -EXPORT_SYMBOL vmlinux 0x5f0b4b30 snd_unregister_device -EXPORT_SYMBOL vmlinux 0x5f12b8f6 scsi_eh_finish_cmd -EXPORT_SYMBOL vmlinux 0x5f492969 jbd2_journal_invalidatepage -EXPORT_SYMBOL vmlinux 0x5f4ec15f max8925_reg_read +EXPORT_SYMBOL vmlinux 0x5f11d828 pps_unregister_source +EXPORT_SYMBOL vmlinux 0x5f33462c tcf_qevent_dump +EXPORT_SYMBOL vmlinux 0x5f48abea tty_port_hangup +EXPORT_SYMBOL vmlinux 0x5f530ec8 bio_chain EXPORT_SYMBOL vmlinux 0x5f5441c8 __ubsan_handle_alignment_assumption -EXPORT_SYMBOL vmlinux 0x5f59c58f sock_create_lite -EXPORT_SYMBOL vmlinux 0x5f69d405 md_handle_request +EXPORT_SYMBOL vmlinux 0x5f59f696 fget EXPORT_SYMBOL vmlinux 0x5f754e5a memset -EXPORT_SYMBOL vmlinux 0x5f784534 ps2_begin_command -EXPORT_SYMBOL vmlinux 0x5f841ee6 put_cmsg_scm_timestamping -EXPORT_SYMBOL vmlinux 0x5f863666 scsi_eh_prep_cmnd -EXPORT_SYMBOL vmlinux 0x5f8e9ec1 __napi_schedule_irqoff -EXPORT_SYMBOL vmlinux 0x5f8f8006 param_get_string -EXPORT_SYMBOL vmlinux 0x5f9da652 disk_end_io_acct -EXPORT_SYMBOL vmlinux 0x5fabc95e skb_free_datagram +EXPORT_SYMBOL vmlinux 0x5f7f17f6 param_set_copystring +EXPORT_SYMBOL vmlinux 0x5f9d9616 vga_remove_vgacon EXPORT_SYMBOL vmlinux 0x5fb01358 alloc_pages_exact -EXPORT_SYMBOL vmlinux 0x5fb263a3 set_cached_acl -EXPORT_SYMBOL vmlinux 0x5fb6babb register_sound_mixer -EXPORT_SYMBOL vmlinux 0x5fd4aa59 netdev_get_xmit_slave +EXPORT_SYMBOL vmlinux 0x5fd63634 tty_port_alloc_xmit_buf +EXPORT_SYMBOL vmlinux 0x5fdf0f18 dump_align +EXPORT_SYMBOL vmlinux 0x5fef7f0c kmem_cache_alloc_bulk EXPORT_SYMBOL vmlinux 0x5ff11cc3 pcibios_min_io -EXPORT_SYMBOL vmlinux 0x60050342 __tty_alloc_driver +EXPORT_SYMBOL vmlinux 0x5ff132d6 genphy_read_abilities EXPORT_SYMBOL vmlinux 0x6005c351 zpool_has_pool EXPORT_SYMBOL vmlinux 0x600683d3 do_unblank_screen -EXPORT_SYMBOL vmlinux 0x600f8e8c blk_queue_max_discard_sectors -EXPORT_SYMBOL vmlinux 0x6017c193 filemap_fdatawait_range_keep_errors +EXPORT_SYMBOL vmlinux 0x60098d57 scsi_scan_target +EXPORT_SYMBOL vmlinux 0x60124a77 phy_ethtool_set_wol EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create +EXPORT_SYMBOL vmlinux 0x60238cc6 __vfs_getxattr +EXPORT_SYMBOL vmlinux 0x602baedd from_kuid EXPORT_SYMBOL vmlinux 0x602c96f0 copy_to_user_fromio +EXPORT_SYMBOL vmlinux 0x6030cb02 blk_mq_tagset_busy_iter EXPORT_SYMBOL vmlinux 0x603286b8 utf8_casefold EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier -EXPORT_SYMBOL vmlinux 0x60451896 scsi_device_get -EXPORT_SYMBOL vmlinux 0x604c0ca5 blk_mq_free_tag_set EXPORT_SYMBOL vmlinux 0x604d1a71 config_item_get_unless_zero -EXPORT_SYMBOL vmlinux 0x60554530 touchscreen_report_pos +EXPORT_SYMBOL vmlinux 0x60502e1c pci_request_region EXPORT_SYMBOL vmlinux 0x605790dc fiemap_fill_next_extent -EXPORT_SYMBOL vmlinux 0x60823390 iov_iter_single_seg_count +EXPORT_SYMBOL vmlinux 0x607de39f blkdev_get_by_dev EXPORT_SYMBOL vmlinux 0x6091b333 unregister_chrdev_region +EXPORT_SYMBOL vmlinux 0x60936052 prepare_kernel_cred +EXPORT_SYMBOL vmlinux 0x6097f43a nand_get_set_features_notsupp EXPORT_SYMBOL vmlinux 0x6098f7ed cgroup_bpf_enabled_key EXPORT_SYMBOL vmlinux 0x609bcd98 in6_pton EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net +EXPORT_SYMBOL vmlinux 0x60a0110c fb_set_cmap EXPORT_SYMBOL vmlinux 0x60a32ea9 pm_power_off -EXPORT_SYMBOL vmlinux 0x60a4a450 nobh_write_end -EXPORT_SYMBOL vmlinux 0x60af74f3 kthread_create_worker_on_cpu +EXPORT_SYMBOL vmlinux 0x60a36c23 tty_port_block_til_ready +EXPORT_SYMBOL vmlinux 0x60aeceb4 dcache_dir_close +EXPORT_SYMBOL vmlinux 0x60bd41ae prepare_to_swait_exclusive EXPORT_SYMBOL vmlinux 0x60bffe6d div64_u64 EXPORT_SYMBOL vmlinux 0x60d8ab30 vme_lm_get -EXPORT_SYMBOL vmlinux 0x60f98484 i2c_del_driver -EXPORT_SYMBOL vmlinux 0x6104a290 __bread_gfp -EXPORT_SYMBOL vmlinux 0x610e32fb dev_mc_del -EXPORT_SYMBOL vmlinux 0x6114ebb7 dquot_resume +EXPORT_SYMBOL vmlinux 0x60f1dcea pci_bus_add_devices +EXPORT_SYMBOL vmlinux 0x60f5a55a __scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x60f88760 sk_ns_capable EXPORT_SYMBOL vmlinux 0x6121bd54 dql_init EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit -EXPORT_SYMBOL vmlinux 0x612efc89 proc_create_data -EXPORT_SYMBOL vmlinux 0x612f4646 ata_print_version -EXPORT_SYMBOL vmlinux 0x613d5e05 of_find_matching_node_and_match +EXPORT_SYMBOL vmlinux 0x612d1333 dev_uc_sync +EXPORT_SYMBOL vmlinux 0x613227aa ww_mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0x613a3158 xfrm_sad_getinfo +EXPORT_SYMBOL vmlinux 0x6150b74b netdev_lower_get_next_private +EXPORT_SYMBOL vmlinux 0x6154268e ps2_init EXPORT_SYMBOL vmlinux 0x6156c7f4 net_dim +EXPORT_SYMBOL vmlinux 0x6158f409 skb_dequeue_tail EXPORT_SYMBOL vmlinux 0x615911d7 __bitmap_set -EXPORT_SYMBOL vmlinux 0x6159f8b4 cdrom_number_of_slots -EXPORT_SYMBOL vmlinux 0x615bd238 vlan_vid_del +EXPORT_SYMBOL vmlinux 0x61615f12 scsi_report_opcode EXPORT_SYMBOL vmlinux 0x6167e72c vmalloc_no_huge -EXPORT_SYMBOL vmlinux 0x616d1cc8 md_wakeup_thread -EXPORT_SYMBOL vmlinux 0x6170d887 arp_tbl -EXPORT_SYMBOL vmlinux 0x61735381 flow_rule_match_cvlan -EXPORT_SYMBOL vmlinux 0x61976187 get_tree_single -EXPORT_SYMBOL vmlinux 0x61a9b4b2 simple_pin_fs -EXPORT_SYMBOL vmlinux 0x61b17afd vfs_symlink +EXPORT_SYMBOL vmlinux 0x61b2e341 mr_mfc_seq_next EXPORT_SYMBOL vmlinux 0x61b76bb9 smp_call_function_many EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull EXPORT_SYMBOL vmlinux 0x61c76b3a proc_dointvec_jiffies -EXPORT_SYMBOL vmlinux 0x61c889e9 super_setup_bdi -EXPORT_SYMBOL vmlinux 0x61ccfd0f bio_copy_data -EXPORT_SYMBOL vmlinux 0x61cd5b3e mmc_cqe_recovery -EXPORT_SYMBOL vmlinux 0x61ce7259 inet_dgram_ops -EXPORT_SYMBOL vmlinux 0x61e25982 inet_stream_connect +EXPORT_SYMBOL vmlinux 0x61c9c90a unregister_md_personality +EXPORT_SYMBOL vmlinux 0x61d114f0 skb_eth_push +EXPORT_SYMBOL vmlinux 0x61d806f0 __cgroup_bpf_run_filter_skb +EXPORT_SYMBOL vmlinux 0x61dbdc37 xsk_tx_peek_release_desc_batch EXPORT_SYMBOL vmlinux 0x61e272c9 sha256_final -EXPORT_SYMBOL vmlinux 0x61e6d637 xfrm_init_replay EXPORT_SYMBOL vmlinux 0x61ea189b fb_pad_aligned_buffer -EXPORT_SYMBOL vmlinux 0x61f8e2fd security_unix_stream_connect -EXPORT_SYMBOL vmlinux 0x620e971c ether_setup +EXPORT_SYMBOL vmlinux 0x61f45df1 __set_page_dirty_buffers +EXPORT_SYMBOL vmlinux 0x620797e4 bio_endio +EXPORT_SYMBOL vmlinux 0x6209f97e pci_fixup_device +EXPORT_SYMBOL vmlinux 0x6211014b blk_rq_append_bio EXPORT_SYMBOL vmlinux 0x6214aef2 cpufreq_unregister_notifier -EXPORT_SYMBOL vmlinux 0x6219653c datagram_poll -EXPORT_SYMBOL vmlinux 0x6221bbb2 rawv6_mh_filter_register -EXPORT_SYMBOL vmlinux 0x6223417a snd_soc_alloc_ac97_component EXPORT_SYMBOL vmlinux 0x6228c21f smp_call_function_single -EXPORT_SYMBOL vmlinux 0x6233e589 from_kprojid -EXPORT_SYMBOL vmlinux 0x62675bda mmc_erase -EXPORT_SYMBOL vmlinux 0x626e1bb4 __sock_create +EXPORT_SYMBOL vmlinux 0x622b52ed of_node_name_prefix +EXPORT_SYMBOL vmlinux 0x622db8b3 filp_open +EXPORT_SYMBOL vmlinux 0x6257f939 vme_irq_request EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister +EXPORT_SYMBOL vmlinux 0x627fa67a md_reap_sync_thread EXPORT_SYMBOL vmlinux 0x62849ac7 dev_valid_name -EXPORT_SYMBOL vmlinux 0x629cc5dd register_md_personality -EXPORT_SYMBOL vmlinux 0x62a5b6c2 genphy_c37_config_aneg -EXPORT_SYMBOL vmlinux 0x62b61f02 udp_seq_ops +EXPORT_SYMBOL vmlinux 0x6286af53 snd_timer_global_register +EXPORT_SYMBOL vmlinux 0x628f00a1 devm_gen_pool_create +EXPORT_SYMBOL vmlinux 0x62ac5559 __insert_inode_hash EXPORT_SYMBOL vmlinux 0x62b9567c override_creds EXPORT_SYMBOL vmlinux 0x62bf6edf utf8agemin -EXPORT_SYMBOL vmlinux 0x62bfd83d dev_change_carrier -EXPORT_SYMBOL vmlinux 0x62cdcc1c inet_sendmsg -EXPORT_SYMBOL vmlinux 0x62eeecc9 ip_getsockopt +EXPORT_SYMBOL vmlinux 0x62f1d05b ip_check_defrag EXPORT_SYMBOL vmlinux 0x62f576d9 trace_seq_hex_dump -EXPORT_SYMBOL vmlinux 0x630bc0b4 kthread_create_on_node -EXPORT_SYMBOL vmlinux 0x630fb79c mr_dump +EXPORT_SYMBOL vmlinux 0x630891a5 tcp_recvmsg EXPORT_SYMBOL vmlinux 0x63187451 pcie_aspm_support_enabled EXPORT_SYMBOL vmlinux 0x631d06aa cpu_rmap_put EXPORT_SYMBOL vmlinux 0x63231d35 omap_get_dma_src_pos -EXPORT_SYMBOL vmlinux 0x63290dc1 inet_csk_reqsk_queue_drop +EXPORT_SYMBOL vmlinux 0x63297228 tcf_idr_release +EXPORT_SYMBOL vmlinux 0x632cb429 netif_skb_features +EXPORT_SYMBOL vmlinux 0x6334b819 pcie_capability_read_word EXPORT_SYMBOL vmlinux 0x6342f99f mipi_dsi_create_packet -EXPORT_SYMBOL vmlinux 0x634c15d7 page_readlink -EXPORT_SYMBOL vmlinux 0x634f3be3 vme_dma_request -EXPORT_SYMBOL vmlinux 0x6354d6d1 iw_handler_set_thrspy -EXPORT_SYMBOL vmlinux 0x637737f5 gnet_stats_copy_app -EXPORT_SYMBOL vmlinux 0x639b0baa xfrm_register_type_offload +EXPORT_SYMBOL vmlinux 0x6354ab8d ndo_dflt_fdb_del +EXPORT_SYMBOL vmlinux 0x6356f40c input_register_handle +EXPORT_SYMBOL vmlinux 0x635b6f8c inode_update_time +EXPORT_SYMBOL vmlinux 0x63951679 inode_set_flags +EXPORT_SYMBOL vmlinux 0x639f748b mmc_retune_release EXPORT_SYMBOL vmlinux 0x63a58370 flow_action_cookie_destroy EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region -EXPORT_SYMBOL vmlinux 0x63c4a638 fscrypt_decrypt_bio +EXPORT_SYMBOL vmlinux 0x63b0b411 netdev_name_node_alt_destroy +EXPORT_SYMBOL vmlinux 0x63b763b0 __scsi_iterate_devices +EXPORT_SYMBOL vmlinux 0x63b770ea proc_symlink +EXPORT_SYMBOL vmlinux 0x63c19975 blk_queue_io_opt EXPORT_SYMBOL vmlinux 0x63c4d61f __bitmap_weight -EXPORT_SYMBOL vmlinux 0x63c8e402 framebuffer_alloc +EXPORT_SYMBOL vmlinux 0x63cb8bce d_path +EXPORT_SYMBOL vmlinux 0x63cf63f2 simple_fill_super +EXPORT_SYMBOL vmlinux 0x63de8579 xfrm_user_policy +EXPORT_SYMBOL vmlinux 0x63e9ec5b netlink_net_capable EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink -EXPORT_SYMBOL vmlinux 0x63ef57a0 nobh_truncate_page +EXPORT_SYMBOL vmlinux 0x63ebfe9f bio_advance EXPORT_SYMBOL vmlinux 0x6405dcd3 slhc_toss -EXPORT_SYMBOL vmlinux 0x640729c8 snd_mixer_oss_notify_callback EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off -EXPORT_SYMBOL vmlinux 0x641541a5 mdiobus_read -EXPORT_SYMBOL vmlinux 0x6419968b max8998_write_reg -EXPORT_SYMBOL vmlinux 0x6435a1db has_capability -EXPORT_SYMBOL vmlinux 0x64510551 snd_pcm_hw_refine -EXPORT_SYMBOL vmlinux 0x6455c175 rproc_of_resm_mem_entry_init -EXPORT_SYMBOL vmlinux 0x646a2be7 inet_recvmsg -EXPORT_SYMBOL vmlinux 0x646a7854 inet_proto_csum_replace16 -EXPORT_SYMBOL vmlinux 0x646f41bb rpmh_write_batch -EXPORT_SYMBOL vmlinux 0x6472d65e peernet2id +EXPORT_SYMBOL vmlinux 0x641c6d86 sock_no_socketpair +EXPORT_SYMBOL vmlinux 0x641d8757 __icmp_send +EXPORT_SYMBOL vmlinux 0x641eb8e0 d_obtain_root +EXPORT_SYMBOL vmlinux 0x642350ca setattr_copy +EXPORT_SYMBOL vmlinux 0x642aa118 vlan_filter_drop_vids +EXPORT_SYMBOL vmlinux 0x642d2b56 inode_get_bytes +EXPORT_SYMBOL vmlinux 0x642ee133 tty_port_open +EXPORT_SYMBOL vmlinux 0x646c16a6 cdev_add EXPORT_SYMBOL vmlinux 0x647af474 prepare_to_wait_event -EXPORT_SYMBOL vmlinux 0x647da189 xfrm_input_register_afinfo EXPORT_SYMBOL vmlinux 0x6481ffe0 hsiphash_1u32 EXPORT_SYMBOL vmlinux 0x64833350 i2c_smbus_pec -EXPORT_SYMBOL vmlinux 0x64861560 pci_release_regions -EXPORT_SYMBOL vmlinux 0x648b6d7a ip_route_me_harder +EXPORT_SYMBOL vmlinux 0x6484d80f __mmap_lock_do_trace_released EXPORT_SYMBOL vmlinux 0x648eb59d gc_inflight_list -EXPORT_SYMBOL vmlinux 0x6494d5eb inode_owner_or_capable -EXPORT_SYMBOL vmlinux 0x6498f6b6 uart_update_timeout EXPORT_SYMBOL vmlinux 0x64999478 congestion_wait -EXPORT_SYMBOL vmlinux 0x649a31c6 blk_mq_start_hw_queue -EXPORT_SYMBOL vmlinux 0x64a30c9c sdev_enable_disk_events +EXPORT_SYMBOL vmlinux 0x64a3b6d4 param_get_ullong +EXPORT_SYMBOL vmlinux 0x64a80dd0 tcf_block_get_ext EXPORT_SYMBOL vmlinux 0x64a9c928 default_blu -EXPORT_SYMBOL vmlinux 0x64b5330c mipi_dsi_dcs_set_page_address -EXPORT_SYMBOL vmlinux 0x64b69dd9 bdi_register -EXPORT_SYMBOL vmlinux 0x64c392da pci_bus_read_config_byte -EXPORT_SYMBOL vmlinux 0x650f4944 skb_copy_header +EXPORT_SYMBOL vmlinux 0x64af1159 netlink_kernel_release +EXPORT_SYMBOL vmlinux 0x64d9cab1 proc_create +EXPORT_SYMBOL vmlinux 0x64eec8b0 phy_start_cable_test_tdr +EXPORT_SYMBOL vmlinux 0x64fbc22a tty_register_device +EXPORT_SYMBOL vmlinux 0x64fc656e mmc_gpiod_request_cd_irq EXPORT_SYMBOL vmlinux 0x650f8603 snd_pcm_format_silence_64 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 0x6532e956 rproc_free -EXPORT_SYMBOL vmlinux 0x6536edc9 sock_release -EXPORT_SYMBOL vmlinux 0x65404e11 generic_file_readonly_mmap +EXPORT_SYMBOL vmlinux 0x652940ec clear_inode +EXPORT_SYMBOL vmlinux 0x652f9579 arp_tbl +EXPORT_SYMBOL vmlinux 0x653a21c6 param_set_uint +EXPORT_SYMBOL vmlinux 0x653dbc91 iter_file_splice_write EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob EXPORT_SYMBOL vmlinux 0x65464c16 clkdev_drop -EXPORT_SYMBOL vmlinux 0x6549ddb7 nand_ecc_sw_bch_calculate -EXPORT_SYMBOL vmlinux 0x655cdc40 d_prune_aliases -EXPORT_SYMBOL vmlinux 0x656022a6 netdev_txq_to_tc +EXPORT_SYMBOL vmlinux 0x65665a90 pid_task EXPORT_SYMBOL vmlinux 0x6578533e prepare_to_wait -EXPORT_SYMBOL vmlinux 0x657aa307 I_BDEV EXPORT_SYMBOL vmlinux 0x658ce1a8 xxh64_reset +EXPORT_SYMBOL vmlinux 0x658f5365 blk_execute_rq +EXPORT_SYMBOL vmlinux 0x65951c80 skb_page_frag_refill EXPORT_SYMBOL vmlinux 0x659ded26 xfrm_flush_gc -EXPORT_SYMBOL vmlinux 0x659f0ec6 udp_poll -EXPORT_SYMBOL vmlinux 0x659f1565 d_drop -EXPORT_SYMBOL vmlinux 0x65a8d7ac pci_back_from_sleep -EXPORT_SYMBOL vmlinux 0x65c62677 mipi_dsi_driver_register_full -EXPORT_SYMBOL vmlinux 0x65d0733e __xfrm_dst_lookup +EXPORT_SYMBOL vmlinux 0x65c53824 xattr_full_name +EXPORT_SYMBOL vmlinux 0x65cf17d1 flow_indr_dev_setup_offload +EXPORT_SYMBOL vmlinux 0x65d2b21a pskb_extract EXPORT_SYMBOL vmlinux 0x65d411e9 idr_get_next EXPORT_SYMBOL vmlinux 0x65d9e877 cpufreq_register_notifier EXPORT_SYMBOL vmlinux 0x65dccf13 xz_dec_end -EXPORT_SYMBOL vmlinux 0x65edc6ae jbd2_journal_submit_inode_data_buffers -EXPORT_SYMBOL vmlinux 0x65ee5a5b simple_get_link -EXPORT_SYMBOL vmlinux 0x65f93589 jbd2_journal_try_to_free_buffers -EXPORT_SYMBOL vmlinux 0x66067c5f of_mdiobus_phy_device_register -EXPORT_SYMBOL vmlinux 0x661437a0 page_pool_alloc_frag -EXPORT_SYMBOL vmlinux 0x661cc5dc simple_empty -EXPORT_SYMBOL vmlinux 0x66319f18 vfs_iocb_iter_write -EXPORT_SYMBOL vmlinux 0x6631ff29 devm_kvasprintf -EXPORT_SYMBOL vmlinux 0x664325f9 tcp_set_rcvlowat +EXPORT_SYMBOL vmlinux 0x65e0f913 sdev_enable_disk_events +EXPORT_SYMBOL vmlinux 0x65e3077d rproc_of_resm_mem_entry_init +EXPORT_SYMBOL vmlinux 0x65eed06f netif_tx_stop_all_queues +EXPORT_SYMBOL vmlinux 0x65f4d5f4 devfreq_monitor_stop +EXPORT_SYMBOL vmlinux 0x66414609 jbd2_complete_transaction EXPORT_SYMBOL vmlinux 0x66474aa4 neigh_proc_dointvec -EXPORT_SYMBOL vmlinux 0x66532e05 tty_port_close_end +EXPORT_SYMBOL vmlinux 0x666160be discard_new_inode EXPORT_SYMBOL vmlinux 0x66657274 kmalloc_order -EXPORT_SYMBOL vmlinux 0x6666999a disk_start_io_acct -EXPORT_SYMBOL vmlinux 0x66669af6 blkdev_put EXPORT_SYMBOL vmlinux 0x666863dc par_io_config_pin -EXPORT_SYMBOL vmlinux 0x66710cf3 tcp_req_err +EXPORT_SYMBOL vmlinux 0x666876ca ip_cmsg_recv_offset EXPORT_SYMBOL vmlinux 0x6673f96d xxh32_reset EXPORT_SYMBOL vmlinux 0x6674bd14 omap_vrfb_request_ctx -EXPORT_SYMBOL vmlinux 0x66779ae0 i2c_smbus_write_block_data -EXPORT_SYMBOL vmlinux 0x668cb346 proto_unregister -EXPORT_SYMBOL vmlinux 0x66abe005 mr_table_dump +EXPORT_SYMBOL vmlinux 0x66814341 kmem_cache_shrink EXPORT_SYMBOL vmlinux 0x66aed8c5 csum_partial_copy_from_user -EXPORT_SYMBOL vmlinux 0x66afeb17 vm_insert_pages -EXPORT_SYMBOL vmlinux 0x66c820ae skb_flow_dissect_ct -EXPORT_SYMBOL vmlinux 0x66e8a6c2 dma_set_coherent_mask -EXPORT_SYMBOL vmlinux 0x6703aaa4 block_read_full_page +EXPORT_SYMBOL vmlinux 0x66c51188 dquot_file_open +EXPORT_SYMBOL vmlinux 0x66dc2100 phy_ethtool_get_eee +EXPORT_SYMBOL vmlinux 0x66e53d65 neigh_connected_output +EXPORT_SYMBOL vmlinux 0x66ed656a vmap EXPORT_SYMBOL vmlinux 0x67092819 resource_list_create_entry -EXPORT_SYMBOL vmlinux 0x670acd6e block_write_full_page -EXPORT_SYMBOL vmlinux 0x670cf901 mmc_can_secure_erase_trim -EXPORT_SYMBOL vmlinux 0x671c93d5 dev_remove_pack -EXPORT_SYMBOL vmlinux 0x6725b45f padata_alloc -EXPORT_SYMBOL vmlinux 0x67267214 phy_queue_state_machine -EXPORT_SYMBOL vmlinux 0x672b3b3f mmc_of_parse_voltage -EXPORT_SYMBOL vmlinux 0x6734b0e8 dev_uc_sync -EXPORT_SYMBOL vmlinux 0x673ab066 xfrm_state_update +EXPORT_SYMBOL vmlinux 0x672d9ff1 pci_ep_cfs_remove_epf_group +EXPORT_SYMBOL vmlinux 0x673da92d vfs_get_tree +EXPORT_SYMBOL vmlinux 0x6743e065 do_SAK EXPORT_SYMBOL vmlinux 0x6749d53f hdmi_vendor_infoframe_init -EXPORT_SYMBOL vmlinux 0x674dd6b8 pci_release_selected_regions -EXPORT_SYMBOL vmlinux 0x675c84ca dm_table_get_size -EXPORT_SYMBOL vmlinux 0x676b3f48 sync_inode_metadata +EXPORT_SYMBOL vmlinux 0x67573d8d genphy_write_mmd_unsupported +EXPORT_SYMBOL vmlinux 0x675f46d7 pci_pme_active +EXPORT_SYMBOL vmlinux 0x67647a1f seq_open_private +EXPORT_SYMBOL vmlinux 0x67653999 lease_get_mtime +EXPORT_SYMBOL vmlinux 0x67670de3 alloc_file_pseudo EXPORT_SYMBOL vmlinux 0x676bbc0f _set_bit +EXPORT_SYMBOL vmlinux 0x676e0f17 mdio_driver_register +EXPORT_SYMBOL vmlinux 0x676e767d snd_ctl_boolean_mono_info EXPORT_SYMBOL vmlinux 0x679856f5 sort_r -EXPORT_SYMBOL vmlinux 0x67a14468 vfs_link -EXPORT_SYMBOL vmlinux 0x67a24508 sk_stream_wait_close +EXPORT_SYMBOL vmlinux 0x67a8cda8 ps2_begin_command EXPORT_SYMBOL vmlinux 0x67b27ec1 tty_std_termios EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu -EXPORT_SYMBOL vmlinux 0x67be70b3 tty_register_ldisc +EXPORT_SYMBOL vmlinux 0x67cc0001 scmd_printk +EXPORT_SYMBOL vmlinux 0x67d10725 d_splice_alias EXPORT_SYMBOL vmlinux 0x67ea6e61 trace_print_hex_dump_seq -EXPORT_SYMBOL vmlinux 0x684e62e4 param_get_bool -EXPORT_SYMBOL vmlinux 0x6859ddf3 snd_ctl_notify_one +EXPORT_SYMBOL vmlinux 0x67ea9f7b __netlink_kernel_create +EXPORT_SYMBOL vmlinux 0x67eabec8 zpool_register_driver +EXPORT_SYMBOL vmlinux 0x67fafdc3 splice_direct_to_actor +EXPORT_SYMBOL vmlinux 0x67fb0816 dm_kcopyd_copy +EXPORT_SYMBOL vmlinux 0x68044697 pcie_capability_write_dword +EXPORT_SYMBOL vmlinux 0x68229ded tcp_init_sock +EXPORT_SYMBOL vmlinux 0x682566ea vfs_getattr +EXPORT_SYMBOL vmlinux 0x6834f945 udp_lib_unhash +EXPORT_SYMBOL vmlinux 0x68377478 xfrm_policy_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x684d1f50 tegra_dfll_register EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval +EXPORT_SYMBOL vmlinux 0x688ab7a9 file_path +EXPORT_SYMBOL vmlinux 0x688fc2c1 __netdev_alloc_skb EXPORT_SYMBOL vmlinux 0x68a24153 snd_pcm_format_physical_width -EXPORT_SYMBOL vmlinux 0x68a63f19 nf_log_packet -EXPORT_SYMBOL vmlinux 0x68dd0a22 pfifo_qdisc_ops -EXPORT_SYMBOL vmlinux 0x68de6a29 devm_pci_remap_iospace -EXPORT_SYMBOL vmlinux 0x68e2dd27 __mdiobus_register -EXPORT_SYMBOL vmlinux 0x68f615af netdev_lower_get_first_private_rcu +EXPORT_SYMBOL vmlinux 0x68b04ccd d_exact_alias +EXPORT_SYMBOL vmlinux 0x68d71641 phy_resume +EXPORT_SYMBOL vmlinux 0x68e0eeee bio_integrity_alloc EXPORT_SYMBOL vmlinux 0x68fb581a icst307_idx2s -EXPORT_SYMBOL vmlinux 0x6913d4fc arm_dma_ops EXPORT_SYMBOL vmlinux 0x6917a77e __traceiter_kmem_cache_free -EXPORT_SYMBOL vmlinux 0x695b509f seq_release_private +EXPORT_SYMBOL vmlinux 0x6918f876 tty_port_destroy +EXPORT_SYMBOL vmlinux 0x691df706 rawnand_sw_bch_cleanup +EXPORT_SYMBOL vmlinux 0x691e2c7b current_time +EXPORT_SYMBOL vmlinux 0x693e8e7e pci_ep_cfs_remove_epc_group +EXPORT_SYMBOL vmlinux 0x694ac846 xfrm_register_km +EXPORT_SYMBOL vmlinux 0x694ef08b sock_i_ino +EXPORT_SYMBOL vmlinux 0x69507967 seq_putc +EXPORT_SYMBOL vmlinux 0x6954ae7e sk_alloc +EXPORT_SYMBOL vmlinux 0x6957deb0 sock_no_mmap +EXPORT_SYMBOL vmlinux 0x695de259 param_ops_ulong EXPORT_SYMBOL vmlinux 0x69668826 netdev_increment_features EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days -EXPORT_SYMBOL vmlinux 0x698bb7a5 udp_set_csum +EXPORT_SYMBOL vmlinux 0x6977c142 dev_change_flags +EXPORT_SYMBOL vmlinux 0x697ed6c0 km_report +EXPORT_SYMBOL vmlinux 0x699184ba rproc_boot +EXPORT_SYMBOL vmlinux 0x6997e257 xfrm_policy_walk +EXPORT_SYMBOL vmlinux 0x699deb27 nvmem_get_mac_address +EXPORT_SYMBOL vmlinux 0x69afe5f8 __mdiobus_register +EXPORT_SYMBOL vmlinux 0x69b2114e __inc_zone_page_state EXPORT_SYMBOL vmlinux 0x69b6f8d9 omap_set_dma_transfer_params +EXPORT_SYMBOL vmlinux 0x69c26760 vfs_dedupe_file_range_one +EXPORT_SYMBOL vmlinux 0x69c845fc mdiobus_read +EXPORT_SYMBOL vmlinux 0x69d420d2 setattr_prepare +EXPORT_SYMBOL vmlinux 0x69dd3a18 icmpv6_ndo_send EXPORT_SYMBOL vmlinux 0x69de8757 vme_check_window -EXPORT_SYMBOL vmlinux 0x69de88df iget5_locked -EXPORT_SYMBOL vmlinux 0x69e0ba54 vme_irq_request +EXPORT_SYMBOL vmlinux 0x69e4e03a __sock_queue_rcv_skb EXPORT_SYMBOL vmlinux 0x69e51d08 __alloc_bucket_spinlocks -EXPORT_SYMBOL vmlinux 0x69f1f8a1 find_inode_by_ino_rcu -EXPORT_SYMBOL vmlinux 0x69f7545e of_find_node_by_type -EXPORT_SYMBOL vmlinux 0x69fee34e __dev_get_by_index +EXPORT_SYMBOL vmlinux 0x69f0ec90 sk_error_report EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree -EXPORT_SYMBOL vmlinux 0x6a07de19 twl6040_get_sysclk -EXPORT_SYMBOL vmlinux 0x6a0d4bad d_instantiate_new -EXPORT_SYMBOL vmlinux 0x6a1ad51f d_lookup -EXPORT_SYMBOL vmlinux 0x6a3caf6d file_fdatawait_range -EXPORT_SYMBOL vmlinux 0x6a4c9727 qdisc_watchdog_schedule_range_ns -EXPORT_SYMBOL vmlinux 0x6a4d2fbf snd_timer_stop +EXPORT_SYMBOL vmlinux 0x6a13cde8 pcie_capability_read_dword +EXPORT_SYMBOL vmlinux 0x6a25f7c2 snd_card_free +EXPORT_SYMBOL vmlinux 0x6a327c46 inet6_add_protocol +EXPORT_SYMBOL vmlinux 0x6a528f7f of_n_size_cells EXPORT_SYMBOL vmlinux 0x6a5cb5ee __get_free_pages EXPORT_SYMBOL vmlinux 0x6a5ecb18 unregister_module_notifier -EXPORT_SYMBOL vmlinux 0x6a614769 rtnl_create_link EXPORT_SYMBOL vmlinux 0x6a6e05bf kstrtou8 -EXPORT_SYMBOL vmlinux 0x6a712260 mmc_run_bkops -EXPORT_SYMBOL vmlinux 0x6a793cf6 xfrm6_protocol_register -EXPORT_SYMBOL vmlinux 0x6a8fc720 pipe_lock -EXPORT_SYMBOL vmlinux 0x6a9ab502 skb_get_hash_perturb -EXPORT_SYMBOL vmlinux 0x6ac2c161 __kfree_skb +EXPORT_SYMBOL vmlinux 0x6a6f6fe4 tcp_select_initial_window +EXPORT_SYMBOL vmlinux 0x6a7b7b33 blk_integrity_unregister +EXPORT_SYMBOL vmlinux 0x6a8c3cba nf_getsockopt +EXPORT_SYMBOL vmlinux 0x6aa4335d devm_extcon_register_notifier +EXPORT_SYMBOL vmlinux 0x6ab3599b tso_build_data +EXPORT_SYMBOL vmlinux 0x6abe6b41 phy_write_paged EXPORT_SYMBOL vmlinux 0x6ac80c29 __tracepoint_mmap_lock_acquire_returned -EXPORT_SYMBOL vmlinux 0x6aceda70 blk_set_runtime_active -EXPORT_SYMBOL vmlinux 0x6ad44167 devfreq_update_target +EXPORT_SYMBOL vmlinux 0x6acdf47a pci_clear_mwi +EXPORT_SYMBOL vmlinux 0x6ad13dbb xfrm6_rcv_encap +EXPORT_SYMBOL vmlinux 0x6ad2ea2c netif_set_real_num_tx_queues +EXPORT_SYMBOL vmlinux 0x6ad71698 blk_rq_init EXPORT_SYMBOL vmlinux 0x6ad7a335 prepare_creds EXPORT_SYMBOL vmlinux 0x6add5c9a dmi_find_device +EXPORT_SYMBOL vmlinux 0x6addd011 netif_stacked_transfer_operstate EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset EXPORT_SYMBOL vmlinux 0x6af7b21a packing -EXPORT_SYMBOL vmlinux 0x6b061096 jbd2_journal_ack_err -EXPORT_SYMBOL vmlinux 0x6b06a6d3 filp_open -EXPORT_SYMBOL vmlinux 0x6b298da8 prepare_to_swait_exclusive +EXPORT_SYMBOL vmlinux 0x6b05bcd9 generic_key_instantiate +EXPORT_SYMBOL vmlinux 0x6b06fe8a snd_timer_instance_new +EXPORT_SYMBOL vmlinux 0x6b12ca1a of_mdiobus_child_is_phy +EXPORT_SYMBOL vmlinux 0x6b16998c shrink_dcache_sb +EXPORT_SYMBOL vmlinux 0x6b1787db alloc_skb_with_frags EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack -EXPORT_SYMBOL vmlinux 0x6b315043 snd_pcm_set_ops +EXPORT_SYMBOL vmlinux 0x6b370fda pci_read_config_word +EXPORT_SYMBOL vmlinux 0x6b42e15c tcp_sendpage +EXPORT_SYMBOL vmlinux 0x6b47f1fc dev_set_promiscuity +EXPORT_SYMBOL vmlinux 0x6b490efc tc_setup_cb_call EXPORT_SYMBOL vmlinux 0x6b55acd0 rtnl_lock_killable -EXPORT_SYMBOL vmlinux 0x6b5df403 sock_dequeue_err_skb EXPORT_SYMBOL vmlinux 0x6b604710 lockref_get_not_zero -EXPORT_SYMBOL vmlinux 0x6b71504c netdev_rx_csum_fault -EXPORT_SYMBOL vmlinux 0x6b76fb1a __xfrm_policy_check -EXPORT_SYMBOL vmlinux 0x6b841b80 loop_register_transfer +EXPORT_SYMBOL vmlinux 0x6b70c738 single_open +EXPORT_SYMBOL vmlinux 0x6b74d86c sock_common_recvmsg +EXPORT_SYMBOL vmlinux 0x6b7a27ed configfs_unregister_default_group EXPORT_SYMBOL vmlinux 0x6b853d06 ns_to_kernel_old_timeval +EXPORT_SYMBOL vmlinux 0x6b8b6190 eth_header_parse EXPORT_SYMBOL vmlinux 0x6b8bf149 netif_receive_skb_list +EXPORT_SYMBOL vmlinux 0x6b9955dc register_console EXPORT_SYMBOL vmlinux 0x6b9d1c95 security_req_classify_flow -EXPORT_SYMBOL vmlinux 0x6ba83bf7 of_parse_phandle_with_fixed_args -EXPORT_SYMBOL vmlinux 0x6babdc5c rfkill_alloc EXPORT_SYMBOL vmlinux 0x6bac0f4d pci_remap_iospace -EXPORT_SYMBOL vmlinux 0x6bb6ce0b flow_block_cb_alloc -EXPORT_SYMBOL vmlinux 0x6bb9391d pm8606_osc_disable -EXPORT_SYMBOL vmlinux 0x6bbd7b42 mipi_dsi_dcs_get_pixel_format -EXPORT_SYMBOL vmlinux 0x6bc3d430 devfreq_suspend_device +EXPORT_SYMBOL vmlinux 0x6bacc87a fc_mount EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev -EXPORT_SYMBOL vmlinux 0x6bc53ed6 default_llseek -EXPORT_SYMBOL vmlinux 0x6bfecd9b genphy_update_link -EXPORT_SYMBOL vmlinux 0x6c02e08b may_umount -EXPORT_SYMBOL vmlinux 0x6c1a9409 fib_notifier_ops_register +EXPORT_SYMBOL vmlinux 0x6bc4db62 set_anon_super +EXPORT_SYMBOL vmlinux 0x6bfb64ed mark_buffer_dirty +EXPORT_SYMBOL vmlinux 0x6c0f03bc nand_ecc_sw_bch_cleanup_ctx +EXPORT_SYMBOL vmlinux 0x6c1000ed twl6040_get_pll +EXPORT_SYMBOL vmlinux 0x6c171030 pci_release_region EXPORT_SYMBOL vmlinux 0x6c1ce5ce strcspn +EXPORT_SYMBOL vmlinux 0x6c21a9ab bio_init EXPORT_SYMBOL vmlinux 0x6c257ac0 tty_termios_hw_change -EXPORT_SYMBOL vmlinux 0x6c32f05e build_skb_around -EXPORT_SYMBOL vmlinux 0x6c36c132 scsi_register_driver -EXPORT_SYMBOL vmlinux 0x6c4023f8 of_device_is_compatible -EXPORT_SYMBOL vmlinux 0x6c4ab8be snd_card_file_add +EXPORT_SYMBOL vmlinux 0x6c44fb65 capable_wrt_inode_uidgid EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb -EXPORT_SYMBOL vmlinux 0x6c72396e page_pool_put_page_bulk -EXPORT_SYMBOL vmlinux 0x6c72b258 configfs_register_default_group -EXPORT_SYMBOL vmlinux 0x6c793d9a phy_ethtool_get_sset_count -EXPORT_SYMBOL vmlinux 0x6c79f987 udp_flush_pending_frames -EXPORT_SYMBOL vmlinux 0x6c802522 key_validate +EXPORT_SYMBOL vmlinux 0x6c80d208 generic_write_checks EXPORT_SYMBOL vmlinux 0x6c810e42 __xa_clear_mark -EXPORT_SYMBOL vmlinux 0x6c9239fe inet_frags_fini -EXPORT_SYMBOL vmlinux 0x6c9c4d86 scsi_track_queue_full +EXPORT_SYMBOL vmlinux 0x6c872647 phy_advertise_supported +EXPORT_SYMBOL vmlinux 0x6c95a424 cpu_tlb +EXPORT_SYMBOL vmlinux 0x6c962a83 follow_pfn +EXPORT_SYMBOL vmlinux 0x6c9af5a4 __neigh_for_each_release +EXPORT_SYMBOL vmlinux 0x6ca39372 dev_load EXPORT_SYMBOL vmlinux 0x6cb46525 netlbl_catmap_walk -EXPORT_SYMBOL vmlinux 0x6cb645a3 register_sound_special -EXPORT_SYMBOL vmlinux 0x6ce06506 nf_register_queue_handler +EXPORT_SYMBOL vmlinux 0x6cb4c967 flow_block_cb_lookup +EXPORT_SYMBOL vmlinux 0x6cd90563 genphy_c37_config_aneg +EXPORT_SYMBOL vmlinux 0x6cebd616 unix_detach_fds +EXPORT_SYMBOL vmlinux 0x6ceee854 phys_mem_access_prot EXPORT_SYMBOL vmlinux 0x6cf0d67d qe_get_num_of_snums -EXPORT_SYMBOL vmlinux 0x6d0096f8 pci_request_selected_regions_exclusive -EXPORT_SYMBOL vmlinux 0x6d09c255 md_bitmap_unplug -EXPORT_SYMBOL vmlinux 0x6d0a5470 zpool_unregister_driver -EXPORT_SYMBOL vmlinux 0x6d118a25 mmc_retune_release +EXPORT_SYMBOL vmlinux 0x6cf6f889 snd_pcm_set_ops +EXPORT_SYMBOL vmlinux 0x6cfc9846 devm_get_clk_from_child +EXPORT_SYMBOL vmlinux 0x6d0a6c48 nf_log_packet +EXPORT_SYMBOL vmlinux 0x6d0c5864 arp_create +EXPORT_SYMBOL vmlinux 0x6d19127d xfrm_state_delete_tunnel +EXPORT_SYMBOL vmlinux 0x6d227868 fscrypt_has_permitted_context EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies EXPORT_SYMBOL vmlinux 0x6d340f64 tty_termios_input_baud_rate -EXPORT_SYMBOL vmlinux 0x6d428867 generic_set_encrypted_ci_d_ops -EXPORT_SYMBOL vmlinux 0x6d5d4679 seq_pad +EXPORT_SYMBOL vmlinux 0x6d3a7c1e bdev_dax_pgoff +EXPORT_SYMBOL vmlinux 0x6d3e9d20 inet_sendpage EXPORT_SYMBOL vmlinux 0x6d5f06e1 ucc_fast_transmit_on_demand -EXPORT_SYMBOL vmlinux 0x6d656da4 param_set_ushort EXPORT_SYMBOL vmlinux 0x6d662533 _find_first_bit_le -EXPORT_SYMBOL vmlinux 0x6d6a9c42 truncate_pagecache -EXPORT_SYMBOL vmlinux 0x6d6ac0d7 pci_write_config_word -EXPORT_SYMBOL vmlinux 0x6d705d96 cookie_timestamp_decode -EXPORT_SYMBOL vmlinux 0x6d76b968 blk_mq_rq_cpu -EXPORT_SYMBOL vmlinux 0x6d778d40 kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x6d68e9d2 ip_mc_leave_group +EXPORT_SYMBOL vmlinux 0x6d6e2863 __getblk_gfp EXPORT_SYMBOL vmlinux 0x6d7c7dcc bitmap_cut -EXPORT_SYMBOL vmlinux 0x6d7cc537 tty_schedule_flip -EXPORT_SYMBOL vmlinux 0x6d862695 neigh_resolve_output +EXPORT_SYMBOL vmlinux 0x6d87daf9 fb_blank EXPORT_SYMBOL vmlinux 0x6d89b199 proc_dointvec_minmax -EXPORT_SYMBOL vmlinux 0x6dc5bfd2 param_ops_ulong +EXPORT_SYMBOL vmlinux 0x6d8def25 simple_transaction_set +EXPORT_SYMBOL vmlinux 0x6d94ea7c reuseport_select_sock +EXPORT_SYMBOL vmlinux 0x6d95b9f9 serial8250_do_set_termios +EXPORT_SYMBOL vmlinux 0x6da5672e get_fs_type +EXPORT_SYMBOL vmlinux 0x6da7e0a1 mark_buffer_async_write +EXPORT_SYMBOL vmlinux 0x6dc1391e mipi_dsi_dcs_set_pixel_format +EXPORT_SYMBOL vmlinux 0x6dc1e6c3 netif_rx EXPORT_SYMBOL vmlinux 0x6dca4a26 adjust_resource EXPORT_SYMBOL vmlinux 0x6dcf857f uuid_null +EXPORT_SYMBOL vmlinux 0x6ddbfd63 blk_mq_delay_kick_requeue_list EXPORT_SYMBOL vmlinux 0x6ddcdbad revert_creds EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction -EXPORT_SYMBOL vmlinux 0x6e0631f7 __get_hash_from_flowi6 -EXPORT_SYMBOL vmlinux 0x6e1058e8 __skb_checksum_complete_head +EXPORT_SYMBOL vmlinux 0x6dfa3c39 __tcp_md5_do_lookup +EXPORT_SYMBOL vmlinux 0x6e0e2e64 fwnode_get_phy_id EXPORT_SYMBOL vmlinux 0x6e114637 config_group_init_type_name -EXPORT_SYMBOL vmlinux 0x6e1c0625 amba_driver_unregister -EXPORT_SYMBOL vmlinux 0x6e2da726 vfs_tmpfile -EXPORT_SYMBOL vmlinux 0x6e325c55 vfs_path_lookup -EXPORT_SYMBOL vmlinux 0x6e36b41e page_mapping -EXPORT_SYMBOL vmlinux 0x6e44242d devm_request_threaded_irq +EXPORT_SYMBOL vmlinux 0x6e2510ab ip6mr_rule_default +EXPORT_SYMBOL vmlinux 0x6e315723 devm_of_mdiobus_register +EXPORT_SYMBOL vmlinux 0x6e358b8f flow_indr_block_cb_alloc EXPORT_SYMBOL vmlinux 0x6e4e7714 dma_fence_chain_ops EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock +EXPORT_SYMBOL vmlinux 0x6e80bcc5 tc6393xb_lcd_set_power EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put -EXPORT_SYMBOL vmlinux 0x6e9fbe1f pcie_capability_read_dword +EXPORT_SYMBOL vmlinux 0x6ea4e6db padata_free +EXPORT_SYMBOL vmlinux 0x6ea5a886 __vfs_removexattr EXPORT_SYMBOL vmlinux 0x6ea9363b force_sig -EXPORT_SYMBOL vmlinux 0x6eac3e8a ip_mc_check_igmp -EXPORT_SYMBOL vmlinux 0x6eba18fe km_policy_expired +EXPORT_SYMBOL vmlinux 0x6eb18070 igrab EXPORT_SYMBOL vmlinux 0x6ecdb792 __percpu_counter_init -EXPORT_SYMBOL vmlinux 0x6ef8f4e7 sk_mc_loop +EXPORT_SYMBOL vmlinux 0x6ed23829 inet_rcv_saddr_equal +EXPORT_SYMBOL vmlinux 0x6ee79507 pci_scan_slot +EXPORT_SYMBOL vmlinux 0x6eeb7609 rawv6_mh_filter_register +EXPORT_SYMBOL vmlinux 0x6ef00772 dma_resv_add_shared_fence EXPORT_SYMBOL vmlinux 0x6ef8fcd8 snd_pcm_format_linear EXPORT_SYMBOL vmlinux 0x6f013ecd __init_rwsem -EXPORT_SYMBOL vmlinux 0x6f1b0396 netdev_class_remove_file_ns -EXPORT_SYMBOL vmlinux 0x6f1ba095 ilookup -EXPORT_SYMBOL vmlinux 0x6f2479cb scsi_remove_target -EXPORT_SYMBOL vmlinux 0x6f57fc82 blk_queue_virt_boundary -EXPORT_SYMBOL vmlinux 0x6f5c4137 eth_get_headlen -EXPORT_SYMBOL vmlinux 0x6f63a874 sdev_disable_disk_events +EXPORT_SYMBOL vmlinux 0x6f0c2836 input_mt_assign_slots +EXPORT_SYMBOL vmlinux 0x6f1bf988 register_mtd_chip_driver +EXPORT_SYMBOL vmlinux 0x6f2bffed of_graph_get_remote_port +EXPORT_SYMBOL vmlinux 0x6f2fac2b pci_pme_capable +EXPORT_SYMBOL vmlinux 0x6f3313e6 scm_detach_fds +EXPORT_SYMBOL vmlinux 0x6f3a6c6b d_find_any_alias +EXPORT_SYMBOL vmlinux 0x6f3daf59 devm_devfreq_remove_device +EXPORT_SYMBOL vmlinux 0x6f4063d9 tcp_seq_start EXPORT_SYMBOL vmlinux 0x6f83fba8 hex2bin EXPORT_SYMBOL vmlinux 0x6f8f674a bpf_dispatcher_xdp_func -EXPORT_SYMBOL vmlinux 0x6f96250f napi_enable +EXPORT_SYMBOL vmlinux 0x6f913328 __set_page_dirty_no_writeback +EXPORT_SYMBOL vmlinux 0x6f9fe2b5 blk_rq_map_integrity_sg EXPORT_SYMBOL vmlinux 0x6fa6597c set_security_override_from_ctx -EXPORT_SYMBOL vmlinux 0x6fb13165 ip_sock_set_tos +EXPORT_SYMBOL vmlinux 0x6fad0a8f path_get EXPORT_SYMBOL vmlinux 0x6fb374e6 down_write_killable -EXPORT_SYMBOL vmlinux 0x6fbca88f sk_common_release EXPORT_SYMBOL vmlinux 0x6fbe4717 idr_replace -EXPORT_SYMBOL vmlinux 0x6fc8caa3 dev_pm_opp_unregister_notifier +EXPORT_SYMBOL vmlinux 0x6fbfe13b blk_mq_init_queue +EXPORT_SYMBOL vmlinux 0x6fc53256 fib_notifier_ops_register EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog -EXPORT_SYMBOL vmlinux 0x6fd188dd __invalidate_device -EXPORT_SYMBOL vmlinux 0x6fd7bb45 audit_log_start +EXPORT_SYMBOL vmlinux 0x6fd14501 vme_new_dma_list +EXPORT_SYMBOL vmlinux 0x6fd21c33 inet_addr_type_table +EXPORT_SYMBOL vmlinux 0x6fd4e8e8 registered_fb EXPORT_SYMBOL vmlinux 0x6fd9c35a __clzdi2 -EXPORT_SYMBOL vmlinux 0x6ff226fb mdiobus_write_nested -EXPORT_SYMBOL vmlinux 0x6ffd0c6c get_unmapped_area +EXPORT_SYMBOL vmlinux 0x6ff35bc6 sock_i_uid +EXPORT_SYMBOL vmlinux 0x6ffb9f96 serio_open EXPORT_SYMBOL vmlinux 0x70002fe8 siphash_1u32 -EXPORT_SYMBOL vmlinux 0x7018aa94 drop_nlink -EXPORT_SYMBOL vmlinux 0x70280e23 param_set_byte +EXPORT_SYMBOL vmlinux 0x7001471e page_pool_put_page_bulk +EXPORT_SYMBOL vmlinux 0x700d7c2c reuseport_stop_listen_sock +EXPORT_SYMBOL vmlinux 0x70103028 no_seek_end_llseek_size +EXPORT_SYMBOL vmlinux 0x70122de9 pci_reenable_device +EXPORT_SYMBOL vmlinux 0x701861fe xfrm_find_acq_byseq EXPORT_SYMBOL vmlinux 0x702946da ucs2_strlen -EXPORT_SYMBOL vmlinux 0x702c1231 dquot_load_quota_sb -EXPORT_SYMBOL vmlinux 0x703290bc inet_listen -EXPORT_SYMBOL vmlinux 0x7042b084 snd_pcm_suspend_all +EXPORT_SYMBOL vmlinux 0x70411ae3 sdev_disable_disk_events +EXPORT_SYMBOL vmlinux 0x70470aed bio_reset +EXPORT_SYMBOL vmlinux 0x705129b1 pcie_capability_clear_and_set_word +EXPORT_SYMBOL vmlinux 0x7055c812 pci_bus_assign_resources +EXPORT_SYMBOL vmlinux 0x706520a9 genphy_suspend EXPORT_SYMBOL vmlinux 0x70703993 hdmi_spd_infoframe_pack -EXPORT_SYMBOL vmlinux 0x70730ba1 pcix_set_mmrbc -EXPORT_SYMBOL vmlinux 0x707a0ed9 inet6_release -EXPORT_SYMBOL vmlinux 0x70948c99 nand_ecc_get_on_die_hw_engine -EXPORT_SYMBOL vmlinux 0x7097eb64 get_user_pages_locked -EXPORT_SYMBOL vmlinux 0x70a7e836 __ClearPageMovable -EXPORT_SYMBOL vmlinux 0x70dd39b9 inet_csk_destroy_sock +EXPORT_SYMBOL vmlinux 0x707e11ee __dquot_alloc_space +EXPORT_SYMBOL vmlinux 0x708005b4 pci_remove_bus +EXPORT_SYMBOL vmlinux 0x708dc28d __dec_zone_page_state +EXPORT_SYMBOL vmlinux 0x709fa00e skb_flow_dissect_tunnel_info +EXPORT_SYMBOL vmlinux 0x70a3569b sk_stream_wait_memory +EXPORT_SYMBOL vmlinux 0x70a67c53 __pci_register_driver +EXPORT_SYMBOL vmlinux 0x70e4d3a1 i2c_del_driver EXPORT_SYMBOL vmlinux 0x70ed5531 unload_nls -EXPORT_SYMBOL vmlinux 0x70f214b2 of_translate_dma_address -EXPORT_SYMBOL vmlinux 0x70f86fa5 skb_udp_tunnel_segment -EXPORT_SYMBOL vmlinux 0x70fddfba cdrom_release -EXPORT_SYMBOL vmlinux 0x70ff8675 generic_key_instantiate -EXPORT_SYMBOL vmlinux 0x710cef49 dquot_get_dqblk +EXPORT_SYMBOL vmlinux 0x71112f79 dev_change_proto_down EXPORT_SYMBOL vmlinux 0x711b8a9b __crc32c_le_shift EXPORT_SYMBOL vmlinux 0x712110ab proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x71214d61 bdi_put EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc -EXPORT_SYMBOL vmlinux 0x71318089 writeback_inodes_sb -EXPORT_SYMBOL vmlinux 0x714f7480 pci_enable_device_io -EXPORT_SYMBOL vmlinux 0x7153e918 follow_down_one +EXPORT_SYMBOL vmlinux 0x714f47f3 from_kgid_munged EXPORT_SYMBOL vmlinux 0x715a5ed0 vprintk EXPORT_SYMBOL vmlinux 0x716b58cb ioport_resource -EXPORT_SYMBOL vmlinux 0x716be5f2 scm_detach_fds EXPORT_SYMBOL vmlinux 0x7171121c overflowgid -EXPORT_SYMBOL vmlinux 0x717f3cb2 cqhci_pltfm_init -EXPORT_SYMBOL vmlinux 0x71810d4d blk_mq_start_hw_queues -EXPORT_SYMBOL vmlinux 0x7187b859 napi_consume_skb -EXPORT_SYMBOL vmlinux 0x7191a20c input_mt_sync_frame -EXPORT_SYMBOL vmlinux 0x7198544d tcp_create_openreq_child -EXPORT_SYMBOL vmlinux 0x719bca43 qdisc_class_hash_grow -EXPORT_SYMBOL vmlinux 0x71a32ea8 nf_log_register +EXPORT_SYMBOL vmlinux 0x7185fd49 ip_getsockopt +EXPORT_SYMBOL vmlinux 0x7187366b __pagevec_release +EXPORT_SYMBOL vmlinux 0x71924bfb snd_ctl_find_numid EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy -EXPORT_SYMBOL vmlinux 0x71b84df2 mdio_device_reset +EXPORT_SYMBOL vmlinux 0x71af531a mmc_erase_group_aligned EXPORT_SYMBOL vmlinux 0x71c90087 memcmp -EXPORT_SYMBOL vmlinux 0x71d2e6e1 param_set_long -EXPORT_SYMBOL vmlinux 0x71e19622 of_find_backlight_by_node -EXPORT_SYMBOL vmlinux 0x71e9b9b6 thermal_cdev_update +EXPORT_SYMBOL vmlinux 0x71e84c82 xfrm_lookup +EXPORT_SYMBOL vmlinux 0x71f2d978 sb_set_blocksize EXPORT_SYMBOL vmlinux 0x71f7de4f proc_do_large_bitmap -EXPORT_SYMBOL vmlinux 0x71fccac8 mem_map +EXPORT_SYMBOL vmlinux 0x71f9597a path_is_mountpoint EXPORT_SYMBOL vmlinux 0x72005410 hdmi_infoframe_pack +EXPORT_SYMBOL vmlinux 0x7208a3c7 devm_backlight_device_register EXPORT_SYMBOL vmlinux 0x720a27a7 __register_blkdev -EXPORT_SYMBOL vmlinux 0x72183523 setattr_copy -EXPORT_SYMBOL vmlinux 0x72229fbb skb_flow_get_icmp_tci -EXPORT_SYMBOL vmlinux 0x72387b9b __blk_mq_alloc_disk +EXPORT_SYMBOL vmlinux 0x7216681d ipv6_sock_mc_join +EXPORT_SYMBOL vmlinux 0x722f1d27 inode_dio_wait EXPORT_SYMBOL vmlinux 0x724ddac7 utf8version_is_supported -EXPORT_SYMBOL vmlinux 0x72509f57 netlink_ack -EXPORT_SYMBOL vmlinux 0x72650385 nf_hook_slow -EXPORT_SYMBOL vmlinux 0x72826b82 pci_disable_link_state_locked -EXPORT_SYMBOL vmlinux 0x729a8240 jbd2_journal_restart +EXPORT_SYMBOL vmlinux 0x724fdb1d input_handler_for_each_handle +EXPORT_SYMBOL vmlinux 0x725bfa58 tcp_enter_cwr +EXPORT_SYMBOL vmlinux 0x726eaac1 tso_count_descs +EXPORT_SYMBOL vmlinux 0x72909594 blk_pre_runtime_suspend +EXPORT_SYMBOL vmlinux 0x7290ef97 napi_build_skb +EXPORT_SYMBOL vmlinux 0x72992f98 napi_complete_done +EXPORT_SYMBOL vmlinux 0x72aa8b02 blk_queue_logical_block_size EXPORT_SYMBOL vmlinux 0x72b9d287 default_grn +EXPORT_SYMBOL vmlinux 0x72bf5059 inet6_csk_route_req +EXPORT_SYMBOL vmlinux 0x72c2db89 tty_driver_kref_put +EXPORT_SYMBOL vmlinux 0x72cd9b58 nobh_write_end +EXPORT_SYMBOL vmlinux 0x72e2dcd4 thermal_zone_device_critical EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type -EXPORT_SYMBOL vmlinux 0x72f13f51 phy_do_ioctl +EXPORT_SYMBOL vmlinux 0x72eb256f __frontswap_test +EXPORT_SYMBOL vmlinux 0x72fb773c pps_register_source EXPORT_SYMBOL vmlinux 0x73076315 snd_pci_quirk_lookup_id -EXPORT_SYMBOL vmlinux 0x73080e31 snd_timer_interrupt -EXPORT_SYMBOL vmlinux 0x730ec6b6 sk_reset_timer +EXPORT_SYMBOL vmlinux 0x730b1f55 i2c_smbus_read_byte +EXPORT_SYMBOL vmlinux 0x730c1809 md_bitmap_cond_end_sync EXPORT_SYMBOL vmlinux 0x7315a4e9 twl6030_mmc_card_detect_config EXPORT_SYMBOL vmlinux 0x7317790e lockref_put_or_lock +EXPORT_SYMBOL vmlinux 0x731e1d6b fscrypt_encrypt_pagecache_blocks +EXPORT_SYMBOL vmlinux 0x73246518 generic_fill_statx_attr EXPORT_SYMBOL vmlinux 0x732dd326 groups_free -EXPORT_SYMBOL vmlinux 0x733d5675 mipi_dsi_device_register_full -EXPORT_SYMBOL vmlinux 0x73683b0a tty_driver_kref_put -EXPORT_SYMBOL vmlinux 0x73701cbd fs_param_is_string +EXPORT_SYMBOL vmlinux 0x7330f3a0 mpage_writepages +EXPORT_SYMBOL vmlinux 0x73358461 bio_split +EXPORT_SYMBOL vmlinux 0x73582314 eth_gro_receive +EXPORT_SYMBOL vmlinux 0x737eadbb pci_restore_state EXPORT_SYMBOL vmlinux 0x7380dffa argv_split -EXPORT_SYMBOL vmlinux 0x73866a3f alloc_etherdev_mqs -EXPORT_SYMBOL vmlinux 0x738826b3 skb_add_rx_frag -EXPORT_SYMBOL vmlinux 0x738a8c49 __neigh_event_send -EXPORT_SYMBOL vmlinux 0x738e458e nand_ecc_sw_hamming_get_engine EXPORT_SYMBOL vmlinux 0x73998efa cpm_muram_free_addr EXPORT_SYMBOL vmlinux 0x739fd00f __SCK__tp_func_module_get +EXPORT_SYMBOL vmlinux 0x73a796e1 cookie_ecn_ok EXPORT_SYMBOL vmlinux 0x73abb180 alloc_contig_range +EXPORT_SYMBOL vmlinux 0x73b76f39 noop_fsync +EXPORT_SYMBOL vmlinux 0x73be4baf dquot_drop +EXPORT_SYMBOL vmlinux 0x73c85e52 __skb_flow_get_ports EXPORT_SYMBOL vmlinux 0x73cffe2a unregister_nls +EXPORT_SYMBOL vmlinux 0x73e13ac6 phy_start EXPORT_SYMBOL vmlinux 0x73e20c1c strlcpy -EXPORT_SYMBOL vmlinux 0x73e7c62a unregister_framebuffer -EXPORT_SYMBOL vmlinux 0x73f4d3bc sk_page_frag_refill -EXPORT_SYMBOL vmlinux 0x74033104 i2c_register_driver EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace +EXPORT_SYMBOL vmlinux 0x741ed21b tcf_block_put_ext EXPORT_SYMBOL vmlinux 0x742578a5 wait_for_random_bytes EXPORT_SYMBOL vmlinux 0x7429e20c kstrtos8 -EXPORT_SYMBOL vmlinux 0x7440bb79 sock_no_mmap +EXPORT_SYMBOL vmlinux 0x742fc1e7 fault_in_safe_writeable +EXPORT_SYMBOL vmlinux 0x743260dc nobh_truncate_page +EXPORT_SYMBOL vmlinux 0x74333c9e pcim_iomap_regions_request_all +EXPORT_SYMBOL vmlinux 0x7437ea0f jbd2_fc_wait_bufs +EXPORT_SYMBOL vmlinux 0x745161d3 napi_get_frags EXPORT_SYMBOL vmlinux 0x7453d3e8 security_release_secctx -EXPORT_SYMBOL vmlinux 0x74600de8 vlan_vids_add_by_dev -EXPORT_SYMBOL vmlinux 0x7473cf5e simple_open -EXPORT_SYMBOL vmlinux 0x7481555b kmem_cache_free +EXPORT_SYMBOL vmlinux 0x7455f810 rawv6_mh_filter_unregister +EXPORT_SYMBOL vmlinux 0x745e250c of_node_get +EXPORT_SYMBOL vmlinux 0x7479e30e vfs_parse_fs_param +EXPORT_SYMBOL vmlinux 0x747e8f5f udp_seq_next +EXPORT_SYMBOL vmlinux 0x74839942 jbd2_wait_inode_data EXPORT_SYMBOL vmlinux 0x7483dc59 pci_dev_present -EXPORT_SYMBOL vmlinux 0x749cb034 xfrm_unregister_km -EXPORT_SYMBOL vmlinux 0x74a9a994 arp_xmit -EXPORT_SYMBOL vmlinux 0x74b22446 __generic_file_write_iter -EXPORT_SYMBOL vmlinux 0x74be2239 vme_bus_num +EXPORT_SYMBOL vmlinux 0x74854a59 gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0x749d0265 flow_rule_match_mpls +EXPORT_SYMBOL vmlinux 0x74b0e0ce filemap_fdatawait_keep_errors EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 -EXPORT_SYMBOL vmlinux 0x74c27d98 blk_queue_max_segments -EXPORT_SYMBOL vmlinux 0x74d6b632 pci_unmap_rom -EXPORT_SYMBOL vmlinux 0x74d85525 devfreq_monitor_start +EXPORT_SYMBOL vmlinux 0x74d9ab94 inode_init_once EXPORT_SYMBOL vmlinux 0x74e46dac imx_ssi_fiq_tx_buffer EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable -EXPORT_SYMBOL vmlinux 0x74f15645 inet_add_offload -EXPORT_SYMBOL vmlinux 0x74f9b109 unregister_filesystem -EXPORT_SYMBOL vmlinux 0x74fa8bca fget_raw -EXPORT_SYMBOL vmlinux 0x74fcf306 ip6_route_me_harder -EXPORT_SYMBOL vmlinux 0x74ff5aba release_sock -EXPORT_SYMBOL vmlinux 0x75028530 jbd2_journal_wipe +EXPORT_SYMBOL vmlinux 0x74e828fc bdev_check_media_change +EXPORT_SYMBOL vmlinux 0x74ed10d4 skb_vlan_pop +EXPORT_SYMBOL vmlinux 0x74f6eabe __sock_create +EXPORT_SYMBOL vmlinux 0x7504568b pin_user_pages_remote +EXPORT_SYMBOL vmlinux 0x750567ee input_mt_report_finger_count EXPORT_SYMBOL vmlinux 0x7505bdef memchr_inv -EXPORT_SYMBOL vmlinux 0x75253e66 input_mt_drop_unused -EXPORT_SYMBOL vmlinux 0x7548cc03 generic_writepages -EXPORT_SYMBOL vmlinux 0x754a75d1 netdev_printk +EXPORT_SYMBOL vmlinux 0x75085849 mdiobus_unregister_device +EXPORT_SYMBOL vmlinux 0x7516626e fault_in_iov_iter_writeable +EXPORT_SYMBOL vmlinux 0x751a890b remap_vmalloc_range +EXPORT_SYMBOL vmlinux 0x75392868 input_set_keycode +EXPORT_SYMBOL vmlinux 0x75527385 param_ops_invbool +EXPORT_SYMBOL vmlinux 0x7565df62 devm_register_netdev EXPORT_SYMBOL vmlinux 0x7567d381 __get_fiq_regs -EXPORT_SYMBOL vmlinux 0x75724533 vfs_parse_fs_param_source -EXPORT_SYMBOL vmlinux 0x75953101 sock_recvmsg -EXPORT_SYMBOL vmlinux 0x75a5c347 backlight_device_set_brightness -EXPORT_SYMBOL vmlinux 0x75b8abe5 cqhci_irq +EXPORT_SYMBOL vmlinux 0x75863d79 __phy_resume +EXPORT_SYMBOL vmlinux 0x75a7e026 input_register_device +EXPORT_SYMBOL vmlinux 0x75af80c8 xfrm_if_register_cb +EXPORT_SYMBOL vmlinux 0x75b0e282 pci_resize_resource EXPORT_SYMBOL vmlinux 0x75bda77a seq_hlist_next -EXPORT_SYMBOL vmlinux 0x75c684d1 get_phy_device -EXPORT_SYMBOL vmlinux 0x75cdb8fe __vlan_find_dev_deep_rcu +EXPORT_SYMBOL vmlinux 0x75c91c47 xfrm_input EXPORT_SYMBOL vmlinux 0x75d0deb9 nsecs_to_jiffies64 EXPORT_SYMBOL vmlinux 0x75d499dd vmcore_add_device_dump EXPORT_SYMBOL vmlinux 0x75da9df7 skb_flow_dissector_init -EXPORT_SYMBOL vmlinux 0x75e2facc devm_of_mdiobus_register -EXPORT_SYMBOL vmlinux 0x75e5ed90 __lock_sock_fast -EXPORT_SYMBOL vmlinux 0x75f889e5 jbd2_journal_errno +EXPORT_SYMBOL vmlinux 0x75ea3feb sock_bindtoindex EXPORT_SYMBOL vmlinux 0x760a0f4f yield EXPORT_SYMBOL vmlinux 0x7618af39 hdmi_infoframe_check +EXPORT_SYMBOL vmlinux 0x76383eea locks_copy_lock +EXPORT_SYMBOL vmlinux 0x76397cdc timestamp_truncate EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq -EXPORT_SYMBOL vmlinux 0x7649efb3 flow_rule_match_enc_opts -EXPORT_SYMBOL vmlinux 0x7652da40 elv_bio_merge_ok -EXPORT_SYMBOL vmlinux 0x765ecc1c copy_page_from_iter_atomic -EXPORT_SYMBOL vmlinux 0x7667f2d8 blk_integrity_register +EXPORT_SYMBOL vmlinux 0x76570ea9 xfrm_policy_walk_done +EXPORT_SYMBOL vmlinux 0x765c249a rproc_remove_subdev +EXPORT_SYMBOL vmlinux 0x765c87e7 ata_print_version +EXPORT_SYMBOL vmlinux 0x76639ca2 freeze_bdev EXPORT_SYMBOL vmlinux 0x766a0927 mempool_alloc_pages -EXPORT_SYMBOL vmlinux 0x7676dd36 xp_alloc -EXPORT_SYMBOL vmlinux 0x768dd0e1 flow_block_cb_priv -EXPORT_SYMBOL vmlinux 0x7695af58 pci_bus_write_config_byte -EXPORT_SYMBOL vmlinux 0x769c2de6 t10_pi_type1_ip EXPORT_SYMBOL vmlinux 0x769f6e64 errseq_check -EXPORT_SYMBOL vmlinux 0x76b14b78 inode_set_bytes -EXPORT_SYMBOL vmlinux 0x76bb151b __devm_release_region -EXPORT_SYMBOL vmlinux 0x76bc916d __ip_select_ident +EXPORT_SYMBOL vmlinux 0x76a8f244 in6_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x76accdfe dquot_reclaim_space_nodirty +EXPORT_SYMBOL vmlinux 0x76b635c3 vfs_parse_fs_string +EXPORT_SYMBOL vmlinux 0x76bd3ab9 inet_frags_fini +EXPORT_SYMBOL vmlinux 0x76c62f39 bio_integrity_clone +EXPORT_SYMBOL vmlinux 0x76cde8f0 __dev_direct_xmit EXPORT_SYMBOL vmlinux 0x76cf47f6 __aeabi_llsl EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode EXPORT_SYMBOL vmlinux 0x76dc56f1 __nla_put -EXPORT_SYMBOL vmlinux 0x76eb51a2 inet_register_protosw EXPORT_SYMBOL vmlinux 0x76eb5f54 posix_acl_to_xattr -EXPORT_SYMBOL vmlinux 0x7708a033 unix_get_socket -EXPORT_SYMBOL vmlinux 0x770f60ea ipv6_dev_find -EXPORT_SYMBOL vmlinux 0x771df8f0 sched_autogroup_create_attach -EXPORT_SYMBOL vmlinux 0x771f6341 rtnl_link_get_net -EXPORT_SYMBOL vmlinux 0x7720723d __cleancache_invalidate_page -EXPORT_SYMBOL vmlinux 0x77266d5d tcp_release_cb +EXPORT_SYMBOL vmlinux 0x76ef5f05 of_pci_range_to_resource +EXPORT_SYMBOL vmlinux 0x76f8c66f tcp_v4_send_check +EXPORT_SYMBOL vmlinux 0x771b5d22 mipi_dsi_generic_write EXPORT_SYMBOL vmlinux 0x7732159c free_irq_cpu_rmap -EXPORT_SYMBOL vmlinux 0x7732b9ba remove_proc_subtree -EXPORT_SYMBOL vmlinux 0x77677d13 inet_frag_reasm_finish -EXPORT_SYMBOL vmlinux 0x776ec547 ip_do_fragment -EXPORT_SYMBOL vmlinux 0x778808bd vfs_parse_fs_string +EXPORT_SYMBOL vmlinux 0x775d79dc iterate_supers_type +EXPORT_SYMBOL vmlinux 0x775e387a xfrm_trans_queue_net +EXPORT_SYMBOL vmlinux 0x775f1716 scsi_host_lookup +EXPORT_SYMBOL vmlinux 0x77603e85 ppp_channel_index +EXPORT_SYMBOL vmlinux 0x776e407c has_capability EXPORT_SYMBOL vmlinux 0x7791193f icst525_s2div -EXPORT_SYMBOL vmlinux 0x77987924 flow_rule_match_enc_control -EXPORT_SYMBOL vmlinux 0x779a8e88 block_truncate_page -EXPORT_SYMBOL vmlinux 0x77b6b5e5 inet_pton_with_scope -EXPORT_SYMBOL vmlinux 0x77b7855b fs_param_is_s32 +EXPORT_SYMBOL vmlinux 0x77994dda blk_queue_max_discard_sectors +EXPORT_SYMBOL vmlinux 0x77b5bbe7 devm_of_iomap +EXPORT_SYMBOL vmlinux 0x77bbb8b5 scsi_target_resume EXPORT_SYMBOL vmlinux 0x77bc13a0 strim -EXPORT_SYMBOL vmlinux 0x77c80a4b blkdev_get_by_dev -EXPORT_SYMBOL vmlinux 0x77e8c434 pci_release_region +EXPORT_SYMBOL vmlinux 0x77c4c892 kfree_skb_partial +EXPORT_SYMBOL vmlinux 0x77d0227c __kfree_skb +EXPORT_SYMBOL vmlinux 0x77dcc996 sg_miter_start EXPORT_SYMBOL vmlinux 0x77e9eb37 aes_encrypt -EXPORT_SYMBOL vmlinux 0x77f51ca2 jbd2_journal_check_used_features EXPORT_SYMBOL vmlinux 0x77f6f183 kmalloc_order_trace -EXPORT_SYMBOL vmlinux 0x77f9063e eth_header_cache -EXPORT_SYMBOL vmlinux 0x7803b97b dev_set_promiscuity EXPORT_SYMBOL vmlinux 0x7807f0f8 schedule_timeout_idle -EXPORT_SYMBOL vmlinux 0x780fd8c6 snd_pcm_lib_get_vmalloc_page -EXPORT_SYMBOL vmlinux 0x7814889a dev_add_offload -EXPORT_SYMBOL vmlinux 0x781715d6 of_graph_get_port_by_id -EXPORT_SYMBOL vmlinux 0x781e4370 dev_uc_flush -EXPORT_SYMBOL vmlinux 0x78312c92 ptp_clock_register -EXPORT_SYMBOL vmlinux 0x78397f38 ethtool_virtdev_set_link_ksettings -EXPORT_SYMBOL vmlinux 0x7869393a tso_start -EXPORT_SYMBOL vmlinux 0x786a4d68 put_ipc_ns +EXPORT_SYMBOL vmlinux 0x781a84ca dcbnl_cee_notify +EXPORT_SYMBOL vmlinux 0x782cf95c eth_header_parse_protocol +EXPORT_SYMBOL vmlinux 0x7833e7b4 rproc_detach +EXPORT_SYMBOL vmlinux 0x783d5cdf __breadahead +EXPORT_SYMBOL vmlinux 0x783e9f90 dev_add_offload +EXPORT_SYMBOL vmlinux 0x7855bbf4 scm_fp_dup +EXPORT_SYMBOL vmlinux 0x7860ca56 pci_bus_find_capability +EXPORT_SYMBOL vmlinux 0x78656f7f linkwatch_fire_event +EXPORT_SYMBOL vmlinux 0x78691c32 deactivate_locked_super EXPORT_SYMBOL vmlinux 0x78779c0b set_fiq_handler EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback -EXPORT_SYMBOL vmlinux 0x78896f2b _dev_err -EXPORT_SYMBOL vmlinux 0x7889d94f unregister_qdisc +EXPORT_SYMBOL vmlinux 0x788aab93 pci_get_class +EXPORT_SYMBOL vmlinux 0x78908fe6 __hw_addr_ref_sync_dev EXPORT_SYMBOL vmlinux 0x789affb1 frontswap_tmem_exclusive_gets -EXPORT_SYMBOL vmlinux 0x789f323f vme_bus_type +EXPORT_SYMBOL vmlinux 0x789e1c91 xsk_tx_peek_desc EXPORT_SYMBOL vmlinux 0x78a16f48 aes_decrypt -EXPORT_SYMBOL vmlinux 0x78acd3dc jbd2_fc_begin_commit +EXPORT_SYMBOL vmlinux 0x78af3fc9 devm_ioremap EXPORT_SYMBOL vmlinux 0x78b887ed vsprintf -EXPORT_SYMBOL vmlinux 0x78bce925 generic_file_open -EXPORT_SYMBOL vmlinux 0x78c84ae7 phy_attached_info -EXPORT_SYMBOL vmlinux 0x78d3e30d mipi_dsi_dcs_soft_reset -EXPORT_SYMBOL vmlinux 0x78d56d32 twl6040_set_pll +EXPORT_SYMBOL vmlinux 0x78be9a23 fs_bio_set +EXPORT_SYMBOL vmlinux 0x78cbdc7d ndo_dflt_fdb_dump +EXPORT_SYMBOL vmlinux 0x78d81fae mfd_add_devices EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices -EXPORT_SYMBOL vmlinux 0x78df7c6a snd_pcm_lib_malloc_pages -EXPORT_SYMBOL vmlinux 0x78f50bdf mmc_retune_timer_stop +EXPORT_SYMBOL vmlinux 0x790bae63 migrate_page_states EXPORT_SYMBOL vmlinux 0x790bafd4 blk_stack_limits -EXPORT_SYMBOL vmlinux 0x790bd0ff simple_lookup -EXPORT_SYMBOL vmlinux 0x79337417 skb_flow_dissect_hash -EXPORT_SYMBOL vmlinux 0x79353fb0 phys_mem_access_prot +EXPORT_SYMBOL vmlinux 0x79134a21 security_inet_conn_request +EXPORT_SYMBOL vmlinux 0x791bc63a mmc_retune_timer_stop EXPORT_SYMBOL vmlinux 0x793f500c kset_unregister EXPORT_SYMBOL vmlinux 0x794765d1 mempool_free -EXPORT_SYMBOL vmlinux 0x795c02e0 mmc_wait_for_cmd -EXPORT_SYMBOL vmlinux 0x7961a67b __vfs_getxattr -EXPORT_SYMBOL vmlinux 0x7975e149 param_get_byte -EXPORT_SYMBOL vmlinux 0x79883498 snd_unregister_oss_device -EXPORT_SYMBOL vmlinux 0x79921e2a pci_enable_device_mem -EXPORT_SYMBOL vmlinux 0x7999ce13 inode_get_bytes +EXPORT_SYMBOL vmlinux 0x794d5b1a pci_release_resource +EXPORT_SYMBOL vmlinux 0x795f0aaa unregister_quota_format +EXPORT_SYMBOL vmlinux 0x79627df2 snd_pcm_set_managed_buffer_all +EXPORT_SYMBOL vmlinux 0x7978b781 jbd2_journal_clear_features +EXPORT_SYMBOL vmlinux 0x7984bb46 jbd2_journal_inode_ranged_write +EXPORT_SYMBOL vmlinux 0x79a9be25 flow_rule_match_eth_addrs EXPORT_SYMBOL vmlinux 0x79aa04a2 get_random_bytes -EXPORT_SYMBOL vmlinux 0x79aff279 devm_request_resource -EXPORT_SYMBOL vmlinux 0x79b8fdfe param_ops_uint -EXPORT_SYMBOL vmlinux 0x79c28854 devfreq_recommended_opp -EXPORT_SYMBOL vmlinux 0x79d5d166 netdev_alert -EXPORT_SYMBOL vmlinux 0x79d8be9a jbd2_journal_unlock_updates -EXPORT_SYMBOL vmlinux 0x79e5e930 udp_lib_unhash +EXPORT_SYMBOL vmlinux 0x79be8fe9 neigh_sysctl_unregister EXPORT_SYMBOL vmlinux 0x79ec8f93 blk_start_plug -EXPORT_SYMBOL vmlinux 0x79f8ab29 snd_timer_continue EXPORT_SYMBOL vmlinux 0x79fa1deb imx_ssi_fiq_rx_buffer +EXPORT_SYMBOL vmlinux 0x79fae63b md_bitmap_close_sync EXPORT_SYMBOL vmlinux 0x79fc577f utf8nagemax -EXPORT_SYMBOL vmlinux 0x7a0584ae blk_execute_rq -EXPORT_SYMBOL vmlinux 0x7a08952a snd_pcm_hw_constraint_ratnums EXPORT_SYMBOL vmlinux 0x7a09a064 seg6_hmac_compute +EXPORT_SYMBOL vmlinux 0x7a1771b6 dm_register_target EXPORT_SYMBOL vmlinux 0x7a1bcd59 gf128mul_x8_ble -EXPORT_SYMBOL vmlinux 0x7a1f5edb genphy_check_and_restart_aneg -EXPORT_SYMBOL vmlinux 0x7a2b1fc3 flow_rule_match_vlan +EXPORT_SYMBOL vmlinux 0x7a1c502c of_lpddr3_get_ddr_timings +EXPORT_SYMBOL vmlinux 0x7a20672a nand_ecc_sw_hamming_cleanup_ctx EXPORT_SYMBOL vmlinux 0x7a3e8a42 radix_tree_next_chunk -EXPORT_SYMBOL vmlinux 0x7a41eba2 update_devfreq EXPORT_SYMBOL vmlinux 0x7a44c000 bitmap_print_list_to_buf -EXPORT_SYMBOL vmlinux 0x7a4e47ec inetdev_by_index +EXPORT_SYMBOL vmlinux 0x7a54f861 touch_atime +EXPORT_SYMBOL vmlinux 0x7a6b104a trace_event_printf EXPORT_SYMBOL vmlinux 0x7a79b9f3 __sg_page_iter_next -EXPORT_SYMBOL vmlinux 0x7a7df87d dev_printk_emit +EXPORT_SYMBOL vmlinux 0x7a8f6bb1 dma_resv_copy_fences EXPORT_SYMBOL vmlinux 0x7a95e5ae do_settimeofday64 -EXPORT_SYMBOL vmlinux 0x7a97f90d vmf_insert_pfn -EXPORT_SYMBOL vmlinux 0x7a9f490d tcp_sendpage -EXPORT_SYMBOL vmlinux 0x7aa0ef1c skb_tx_error EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree -EXPORT_SYMBOL vmlinux 0x7aa43382 dquot_set_dqblk -EXPORT_SYMBOL vmlinux 0x7ab822d5 tc_setup_cb_replace EXPORT_SYMBOL vmlinux 0x7ab88a45 system_freezing_cnt +EXPORT_SYMBOL vmlinux 0x7ac401db dev_pre_changeaddr_notify +EXPORT_SYMBOL vmlinux 0x7ac7bbfa fscrypt_decrypt_pagecache_blocks +EXPORT_SYMBOL vmlinux 0x7acfc227 vfs_link EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt -EXPORT_SYMBOL vmlinux 0x7ad93597 xfrm_policy_insert EXPORT_SYMBOL vmlinux 0x7adc0fbf rb_replace_node_rcu EXPORT_SYMBOL vmlinux 0x7ade9187 gen_pool_dma_alloc EXPORT_SYMBOL vmlinux 0x7aded2f7 down_write_trylock -EXPORT_SYMBOL vmlinux 0x7ae280e0 neigh_destroy +EXPORT_SYMBOL vmlinux 0x7adeef79 netdev_has_any_upper_dev EXPORT_SYMBOL vmlinux 0x7ae5d317 qe_get_snum -EXPORT_SYMBOL vmlinux 0x7af0e1aa finish_open +EXPORT_SYMBOL vmlinux 0x7aeb3ff3 input_mt_drop_unused +EXPORT_SYMBOL vmlinux 0x7af0c089 d_make_root +EXPORT_SYMBOL vmlinux 0x7af85fe0 elv_rb_find +EXPORT_SYMBOL vmlinux 0x7af9714e snd_ctl_remove EXPORT_SYMBOL vmlinux 0x7afc9d8a unregister_sound_mixer +EXPORT_SYMBOL vmlinux 0x7b0d0a44 mr_mfc_find_parent EXPORT_SYMBOL vmlinux 0x7b283ce3 prandom_bytes_state -EXPORT_SYMBOL vmlinux 0x7b2b8ccb phy_register_fixup_for_uid -EXPORT_SYMBOL vmlinux 0x7b2f66d5 pci_dev_get EXPORT_SYMBOL vmlinux 0x7b2fb85d __xa_cmpxchg -EXPORT_SYMBOL vmlinux 0x7b456f83 param_set_hexint -EXPORT_SYMBOL vmlinux 0x7b556cd8 dquot_operations +EXPORT_SYMBOL vmlinux 0x7b431f81 rproc_shutdown +EXPORT_SYMBOL vmlinux 0x7b476c1d inet_csk_destroy_sock +EXPORT_SYMBOL vmlinux 0x7b4d6e2e iov_iter_get_pages_alloc +EXPORT_SYMBOL vmlinux 0x7b596d02 md_reload_sb +EXPORT_SYMBOL vmlinux 0x7b5aa918 __mod_lruvec_page_state EXPORT_SYMBOL vmlinux 0x7b5b8f31 sha256_update EXPORT_SYMBOL vmlinux 0x7b5c8440 vm_munmap -EXPORT_SYMBOL vmlinux 0x7b63231d scsi_host_put -EXPORT_SYMBOL vmlinux 0x7b65d6ee of_lpddr3_get_ddr_timings -EXPORT_SYMBOL vmlinux 0x7b78b560 __module_put_and_exit -EXPORT_SYMBOL vmlinux 0x7b8c8298 pci_alloc_dev -EXPORT_SYMBOL vmlinux 0x7b93d435 __set_page_dirty_buffers -EXPORT_SYMBOL vmlinux 0x7b9909f9 path_is_mountpoint +EXPORT_SYMBOL vmlinux 0x7b634fe9 tegra_ivc_init +EXPORT_SYMBOL vmlinux 0x7b938aa8 scsi_device_get +EXPORT_SYMBOL vmlinux 0x7b9ef291 netif_set_xps_queue EXPORT_SYMBOL vmlinux 0x7ba5a3b4 tegra_powergate_power_off -EXPORT_SYMBOL vmlinux 0x7bbccea2 dev_get_by_name_rcu -EXPORT_SYMBOL vmlinux 0x7bc5a626 qdisc_put -EXPORT_SYMBOL vmlinux 0x7bc7734d vfs_get_fsid -EXPORT_SYMBOL vmlinux 0x7bd4d42e blk_queue_logical_block_size -EXPORT_SYMBOL vmlinux 0x7c0b0054 posix_acl_chmod -EXPORT_SYMBOL vmlinux 0x7c12a2ed generic_listxattr +EXPORT_SYMBOL vmlinux 0x7bc0d8bb ip_fraglist_prepare +EXPORT_SYMBOL vmlinux 0x7bdb66cd devfreq_add_governor +EXPORT_SYMBOL vmlinux 0x7bdeb948 netpoll_poll_dev +EXPORT_SYMBOL vmlinux 0x7be664c3 scsi_vpd_lun_id +EXPORT_SYMBOL vmlinux 0x7c07961f do_map_probe +EXPORT_SYMBOL vmlinux 0x7c0a3178 ip6_dst_alloc EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement +EXPORT_SYMBOL vmlinux 0x7c17ac16 inet_frag_reasm_prepare +EXPORT_SYMBOL vmlinux 0x7c2430e4 may_setattr EXPORT_SYMBOL vmlinux 0x7c26fd51 sgl_free_order -EXPORT_SYMBOL vmlinux 0x7c2cfb53 pci_bus_read_dev_vendor_id +EXPORT_SYMBOL vmlinux 0x7c299879 noop_llseek +EXPORT_SYMBOL vmlinux 0x7c32f7f1 of_get_next_parent EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get -EXPORT_SYMBOL vmlinux 0x7c748fc5 tcf_idr_release +EXPORT_SYMBOL vmlinux 0x7c5775bd xfrm4_rcv +EXPORT_SYMBOL vmlinux 0x7c5f8292 __mmap_lock_do_trace_acquire_returned EXPORT_SYMBOL vmlinux 0x7c8cea9e key_create_or_update -EXPORT_SYMBOL vmlinux 0x7c95e179 twl6040_reg_write -EXPORT_SYMBOL vmlinux 0x7c969a09 refresh_frequency_limits -EXPORT_SYMBOL vmlinux 0x7c98ba12 sk_dst_check +EXPORT_SYMBOL vmlinux 0x7ca775ab neigh_parms_alloc EXPORT_SYMBOL vmlinux 0x7cb1aea1 devlink_dpipe_header_ethernet -EXPORT_SYMBOL vmlinux 0x7cbcc0b1 security_inet_conn_request EXPORT_SYMBOL vmlinux 0x7cc035a7 __ucmpdi2 -EXPORT_SYMBOL vmlinux 0x7cd3f9f4 fb_find_mode +EXPORT_SYMBOL vmlinux 0x7cc26100 kern_unmount_array EXPORT_SYMBOL vmlinux 0x7cdeeb4d pgprot_user EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid -EXPORT_SYMBOL vmlinux 0x7ce32385 snd_timer_notify +EXPORT_SYMBOL vmlinux 0x7ce70f84 pci_back_from_sleep EXPORT_SYMBOL vmlinux 0x7cf35220 vme_master_free +EXPORT_SYMBOL vmlinux 0x7cf5afc8 skb_free_datagram +EXPORT_SYMBOL vmlinux 0x7cfda6c5 fb_get_buffer_offset EXPORT_SYMBOL vmlinux 0x7cfe368d net_dim_get_def_tx_moderation -EXPORT_SYMBOL vmlinux 0x7d072a60 blk_mq_delay_kick_requeue_list -EXPORT_SYMBOL vmlinux 0x7d08142f nand_ecc_init_ctx +EXPORT_SYMBOL vmlinux 0x7d06ab31 phy_register_fixup_for_uid EXPORT_SYMBOL vmlinux 0x7d09596b dma_pool_alloc EXPORT_SYMBOL vmlinux 0x7d0db45c jiffies_to_clock_t -EXPORT_SYMBOL vmlinux 0x7d13d6d9 iov_iter_alignment +EXPORT_SYMBOL vmlinux 0x7d0e8bb0 init_pseudo +EXPORT_SYMBOL vmlinux 0x7d173e2e phy_ethtool_ksettings_set EXPORT_SYMBOL vmlinux 0x7d1da946 par_io_of_config -EXPORT_SYMBOL vmlinux 0x7d2affef pci_dev_driver +EXPORT_SYMBOL vmlinux 0x7d24c08e xattr_supported_namespace +EXPORT_SYMBOL vmlinux 0x7d251f0c neigh_lookup +EXPORT_SYMBOL vmlinux 0x7d260a0c dquot_quota_on_mount +EXPORT_SYMBOL vmlinux 0x7d26b36f of_graph_get_next_endpoint EXPORT_SYMBOL vmlinux 0x7d2ef2b0 down_read_interruptible EXPORT_SYMBOL vmlinux 0x7d42643b kobject_add -EXPORT_SYMBOL vmlinux 0x7d42efdb reuseport_add_sock -EXPORT_SYMBOL vmlinux 0x7d4977a6 fb_pan_display +EXPORT_SYMBOL vmlinux 0x7d467f45 snd_ctl_rename_id EXPORT_SYMBOL vmlinux 0x7d4b176a netlbl_catmap_setbit -EXPORT_SYMBOL vmlinux 0x7d4d25e7 ppp_register_channel -EXPORT_SYMBOL vmlinux 0x7d53ef34 rproc_add_subdev -EXPORT_SYMBOL vmlinux 0x7d67c11e fs_param_is_blob +EXPORT_SYMBOL vmlinux 0x7d4b581a ___pskb_trim +EXPORT_SYMBOL vmlinux 0x7d4f2145 nf_register_net_hook +EXPORT_SYMBOL vmlinux 0x7d58faf8 d_genocide EXPORT_SYMBOL vmlinux 0x7d6c2636 gen_pool_add_owner EXPORT_SYMBOL vmlinux 0x7d6f1dc3 gen_new_estimator -EXPORT_SYMBOL vmlinux 0x7d8db419 jbd2_fc_get_buf -EXPORT_SYMBOL vmlinux 0x7d96063a of_io_request_and_map -EXPORT_SYMBOL vmlinux 0x7dabb453 put_cmsg_scm_timestamping64 +EXPORT_SYMBOL vmlinux 0x7d78e7b7 vme_dma_list_free +EXPORT_SYMBOL vmlinux 0x7d7c4662 mark_page_accessed +EXPORT_SYMBOL vmlinux 0x7d813e0b ip_queue_xmit +EXPORT_SYMBOL vmlinux 0x7d845432 mipi_dsi_generic_read +EXPORT_SYMBOL vmlinux 0x7d864ae9 sock_enable_timestamps +EXPORT_SYMBOL vmlinux 0x7d8d9e79 filemap_write_and_wait_range EXPORT_SYMBOL vmlinux 0x7daece67 quota_send_warning -EXPORT_SYMBOL vmlinux 0x7db948ec tty_port_lower_dtr_rts -EXPORT_SYMBOL vmlinux 0x7dc516e4 seg6_push_hmac -EXPORT_SYMBOL vmlinux 0x7dcbbb49 phy_ethtool_nway_reset -EXPORT_SYMBOL vmlinux 0x7de2d666 iw_handler_get_thrspy -EXPORT_SYMBOL vmlinux 0x7de9af27 edac_mc_find +EXPORT_SYMBOL vmlinux 0x7dafbd25 sock_create_kern +EXPORT_SYMBOL vmlinux 0x7db9848f security_sb_clone_mnt_opts +EXPORT_SYMBOL vmlinux 0x7dc68a5c mipi_dsi_driver_register_full +EXPORT_SYMBOL vmlinux 0x7dcef0e8 con_is_bound +EXPORT_SYMBOL vmlinux 0x7dd816f2 end_page_private_2 +EXPORT_SYMBOL vmlinux 0x7dde17ad pps_event +EXPORT_SYMBOL vmlinux 0x7de3190f twl6040_clear_bits +EXPORT_SYMBOL vmlinux 0x7de9aab7 xfrm_lookup_route EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args -EXPORT_SYMBOL vmlinux 0x7df786cb cqhci_deactivate -EXPORT_SYMBOL vmlinux 0x7df78cff ip_output -EXPORT_SYMBOL vmlinux 0x7dfb458b tcf_action_set_ctrlact +EXPORT_SYMBOL vmlinux 0x7dff7b5e md_bitmap_endwrite +EXPORT_SYMBOL vmlinux 0x7e0a2934 inet6_del_protocol EXPORT_SYMBOL vmlinux 0x7e0ce0c3 up_write -EXPORT_SYMBOL vmlinux 0x7e0f6637 fib_notifier_ops_unregister -EXPORT_SYMBOL vmlinux 0x7e1b9187 __brelse +EXPORT_SYMBOL vmlinux 0x7e1dfd03 of_n_addr_cells +EXPORT_SYMBOL vmlinux 0x7e2a8f95 phy_register_fixup +EXPORT_SYMBOL vmlinux 0x7e2bbc05 filemap_map_pages +EXPORT_SYMBOL vmlinux 0x7e2c5689 dquot_claim_space_nodirty +EXPORT_SYMBOL vmlinux 0x7e2d0f96 __cleancache_get_page +EXPORT_SYMBOL vmlinux 0x7e303c2d blk_mq_kick_requeue_list EXPORT_SYMBOL vmlinux 0x7e3191f6 try_to_del_timer_sync -EXPORT_SYMBOL vmlinux 0x7e337223 pci_bus_size_bridges -EXPORT_SYMBOL vmlinux 0x7e36c6d5 dev_change_proto_down -EXPORT_SYMBOL vmlinux 0x7e48822b pneigh_enqueue +EXPORT_SYMBOL vmlinux 0x7e47ce59 unregister_netdevice_queue +EXPORT_SYMBOL vmlinux 0x7e4d1712 udp_gro_receive +EXPORT_SYMBOL vmlinux 0x7e4dc8d9 make_bad_inode EXPORT_SYMBOL vmlinux 0x7e4dc8e3 __nla_put_nohdr -EXPORT_SYMBOL vmlinux 0x7e55e272 ac97_bus_type -EXPORT_SYMBOL vmlinux 0x7e80e5bf tcp_v4_md5_lookup +EXPORT_SYMBOL vmlinux 0x7e7edd03 kern_path_create +EXPORT_SYMBOL vmlinux 0x7e97eb2d msm_pinctrl_dev_pm_ops EXPORT_SYMBOL vmlinux 0x7e986abe try_wait_for_completion +EXPORT_SYMBOL vmlinux 0x7eafdac8 pci_disable_msix EXPORT_SYMBOL vmlinux 0x7eb78478 kobject_del -EXPORT_SYMBOL vmlinux 0x7ebaf51b xfrm_input_unregister_afinfo -EXPORT_SYMBOL vmlinux 0x7ed5a4c9 dcb_ieee_getapp_prio_dscp_mask_map -EXPORT_SYMBOL vmlinux 0x7edb249d tso_count_descs -EXPORT_SYMBOL vmlinux 0x7eec8470 dma_resv_init -EXPORT_SYMBOL vmlinux 0x7eef9ef9 devm_backlight_device_register -EXPORT_SYMBOL vmlinux 0x7ef259d3 key_instantiate_and_link +EXPORT_SYMBOL vmlinux 0x7ebdeb69 of_get_cpu_state_node +EXPORT_SYMBOL vmlinux 0x7ecc3664 proc_create_single_data +EXPORT_SYMBOL vmlinux 0x7edf7b82 configfs_register_subsystem +EXPORT_SYMBOL vmlinux 0x7eeb1e9a sk_capable +EXPORT_SYMBOL vmlinux 0x7eed65d3 d_hash_and_lookup +EXPORT_SYMBOL vmlinux 0x7ef119dc dma_alloc_attrs +EXPORT_SYMBOL vmlinux 0x7efdaf9c i2c_clients_command EXPORT_SYMBOL vmlinux 0x7f02188f __msecs_to_jiffies EXPORT_SYMBOL vmlinux 0x7f03b6a9 crc_ccitt_table -EXPORT_SYMBOL vmlinux 0x7f17db8f ip_route_input_noref -EXPORT_SYMBOL vmlinux 0x7f1c7c91 dump_page -EXPORT_SYMBOL vmlinux 0x7f1f4ff4 devm_nvmem_cell_put +EXPORT_SYMBOL vmlinux 0x7f070a8d security_task_getsecid_obj +EXPORT_SYMBOL vmlinux 0x7f1946de skb_add_rx_frag EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs -EXPORT_SYMBOL vmlinux 0x7f26cd55 ps2_end_command EXPORT_SYMBOL vmlinux 0x7f304b27 ZSTD_DStreamWorkspaceBound -EXPORT_SYMBOL vmlinux 0x7f30b054 seq_escape_mem -EXPORT_SYMBOL vmlinux 0x7f490560 blk_mq_init_queue -EXPORT_SYMBOL vmlinux 0x7f4e4f06 inet_dgram_connect +EXPORT_SYMBOL vmlinux 0x7f43d90d page_zero_new_buffers +EXPORT_SYMBOL vmlinux 0x7f4aedbf nand_monolithic_write_page_raw +EXPORT_SYMBOL vmlinux 0x7f5dcc41 ether_setup EXPORT_SYMBOL vmlinux 0x7f63b31e _memcpy_toio -EXPORT_SYMBOL vmlinux 0x7f6cba03 phy_sfp_probe +EXPORT_SYMBOL vmlinux 0x7f6c80d7 of_graph_get_port_parent +EXPORT_SYMBOL vmlinux 0x7f775a8d generic_pipe_buf_try_steal +EXPORT_SYMBOL vmlinux 0x7f7f2d28 pci_get_subsys EXPORT_SYMBOL vmlinux 0x7f7f7bb4 irq_poll_disable -EXPORT_SYMBOL vmlinux 0x7fae04a0 snd_ctl_register_ioctl -EXPORT_SYMBOL vmlinux 0x7fb1793a fs_param_is_path +EXPORT_SYMBOL vmlinux 0x7f8daa2f flow_block_cb_alloc +EXPORT_SYMBOL vmlinux 0x7f954f1a reuseport_attach_prog +EXPORT_SYMBOL vmlinux 0x7fa33bcb cookie_timestamp_decode +EXPORT_SYMBOL vmlinux 0x7fc579b8 passthru_features_check EXPORT_SYMBOL vmlinux 0x7fce778e tegra_ivc_total_queue_size -EXPORT_SYMBOL vmlinux 0x7fd09be1 eth_gro_receive EXPORT_SYMBOL vmlinux 0x7fde2edb vme_master_read EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node -EXPORT_SYMBOL vmlinux 0x7ff20b09 simple_symlink_inode_operations -EXPORT_SYMBOL vmlinux 0x7ff3e921 cpufreq_get_policy -EXPORT_SYMBOL vmlinux 0x7ff65cea block_is_partially_uptodate +EXPORT_SYMBOL vmlinux 0x7fe6ddd4 scsi_block_when_processing_errors +EXPORT_SYMBOL vmlinux 0x7fe6f57e blk_mq_complete_request +EXPORT_SYMBOL vmlinux 0x7ffa96ab security_path_mknod +EXPORT_SYMBOL vmlinux 0x800623e5 pcie_get_mps EXPORT_SYMBOL vmlinux 0x800e4ffa __muldi3 +EXPORT_SYMBOL vmlinux 0x80238dcb flow_block_cb_setup_simple +EXPORT_SYMBOL vmlinux 0x802ec8a7 i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0x8033f805 unix_attach_fds EXPORT_SYMBOL vmlinux 0x8039b3fd _totalram_pages -EXPORT_SYMBOL vmlinux 0x803d8e6d inet_stream_ops EXPORT_SYMBOL vmlinux 0x803ddbb6 __posix_acl_create -EXPORT_SYMBOL vmlinux 0x8041d6c3 __scsi_device_lookup_by_target -EXPORT_SYMBOL vmlinux 0x80613500 blk_rq_map_user -EXPORT_SYMBOL vmlinux 0x8090871c snd_pci_quirk_lookup -EXPORT_SYMBOL vmlinux 0x8096b84c filemap_fdatawrite_range -EXPORT_SYMBOL vmlinux 0x80997360 request_firmware -EXPORT_SYMBOL vmlinux 0x80a78879 __traceiter_mmap_lock_acquire_returned +EXPORT_SYMBOL vmlinux 0x8054fe73 __dec_node_page_state +EXPORT_SYMBOL vmlinux 0x80692445 d_prune_aliases +EXPORT_SYMBOL vmlinux 0x8073cd3f mipi_dsi_dcs_set_display_brightness +EXPORT_SYMBOL vmlinux 0x807d0971 phy_print_status +EXPORT_SYMBOL vmlinux 0x80b6dfbc __skb_checksum +EXPORT_SYMBOL vmlinux 0x80bf5671 blk_mq_start_hw_queue +EXPORT_SYMBOL vmlinux 0x80c11872 __xfrm_decode_session EXPORT_SYMBOL vmlinux 0x80c4c319 crc32_le EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd +EXPORT_SYMBOL vmlinux 0x80ccc3a6 start_tty EXPORT_SYMBOL vmlinux 0x80d38ff8 _raw_spin_trylock_bh +EXPORT_SYMBOL vmlinux 0x80d3de5d devfreq_update_target EXPORT_SYMBOL vmlinux 0x80d68d3e fb_register_client EXPORT_SYMBOL vmlinux 0x80e5f86f fscrypt_fname_alloc_buffer -EXPORT_SYMBOL vmlinux 0x80faacd1 security_sctp_sk_clone -EXPORT_SYMBOL vmlinux 0x80fbcc1a scsi_set_medium_removal -EXPORT_SYMBOL vmlinux 0x80fe68ff skb_queue_head +EXPORT_SYMBOL vmlinux 0x80eeeda8 vfs_path_lookup +EXPORT_SYMBOL vmlinux 0x80efa32b sk_stream_error EXPORT_SYMBOL vmlinux 0x8108ac7a down_read_trylock -EXPORT_SYMBOL vmlinux 0x8110c56b tcp_v4_destroy_sock EXPORT_SYMBOL vmlinux 0x8112b3d2 scsi_build_sense_buffer -EXPORT_SYMBOL vmlinux 0x8114b0c8 netdev_name_node_alt_destroy -EXPORT_SYMBOL vmlinux 0x8126833c udp_sendmsg -EXPORT_SYMBOL vmlinux 0x8128d633 dev_get_iflink -EXPORT_SYMBOL vmlinux 0x812cf3ff of_lpddr3_get_min_tck -EXPORT_SYMBOL vmlinux 0x813e6bae genphy_soft_reset -EXPORT_SYMBOL vmlinux 0x81462f93 skb_flow_dissect_meta +EXPORT_SYMBOL vmlinux 0x81224192 inet_csk_delete_keepalive_timer +EXPORT_SYMBOL vmlinux 0x8123244b dev_change_proto_down_reason +EXPORT_SYMBOL vmlinux 0x813f551f try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x81520d4b of_get_property EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal -EXPORT_SYMBOL vmlinux 0x816aaa07 noop_qdisc -EXPORT_SYMBOL vmlinux 0x8179e67e param_set_int -EXPORT_SYMBOL vmlinux 0x8180ad68 skb_copy_datagram_from_iter -EXPORT_SYMBOL vmlinux 0x818136d7 mnt_set_expiry +EXPORT_SYMBOL vmlinux 0x816279cc redraw_screen +EXPORT_SYMBOL vmlinux 0x8163dd70 rtc_add_group +EXPORT_SYMBOL vmlinux 0x8163df74 __hw_addr_unsync_dev +EXPORT_SYMBOL vmlinux 0x817bb3da __mod_node_page_state +EXPORT_SYMBOL vmlinux 0x817f1c01 dm_io EXPORT_SYMBOL vmlinux 0x818416e1 scsi_set_sense_information +EXPORT_SYMBOL vmlinux 0x818b6a0b jbd2_journal_free_reserved EXPORT_SYMBOL vmlinux 0x818edf97 cpm_muram_alloc +EXPORT_SYMBOL vmlinux 0x81ab50bf skb_mac_gso_segment EXPORT_SYMBOL vmlinux 0x81adef99 refcount_dec_and_mutex_lock -EXPORT_SYMBOL vmlinux 0x81b37bc2 mmc_remove_host -EXPORT_SYMBOL vmlinux 0x81bd995f dst_discard_out +EXPORT_SYMBOL vmlinux 0x81b2ffeb blkdev_issue_zeroout EXPORT_SYMBOL vmlinux 0x81c5544e wait_for_completion_killable -EXPORT_SYMBOL vmlinux 0x81c67333 dst_release_immediate -EXPORT_SYMBOL vmlinux 0x81c6ffd5 set_bh_page +EXPORT_SYMBOL vmlinux 0x81d95033 mdio_find_bus EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset EXPORT_SYMBOL vmlinux 0x81e6b37f dmi_get_system_info -EXPORT_SYMBOL vmlinux 0x820668b3 cdrom_check_events -EXPORT_SYMBOL vmlinux 0x821ec58e snd_pcm_hw_constraint_list +EXPORT_SYMBOL vmlinux 0x8209a285 nlmsg_notify +EXPORT_SYMBOL vmlinux 0x82157c18 thaw_bdev EXPORT_SYMBOL vmlinux 0x822137e2 arm_heavy_mb -EXPORT_SYMBOL vmlinux 0x8222b742 of_phy_connect -EXPORT_SYMBOL vmlinux 0x8238da48 rc5t583_ext_power_req_config +EXPORT_SYMBOL vmlinux 0x8222134a sock_alloc_send_pskb +EXPORT_SYMBOL vmlinux 0x82297383 inet6_unregister_protosw +EXPORT_SYMBOL vmlinux 0x822e713f __skb_recv_udp +EXPORT_SYMBOL vmlinux 0x82314335 scsi_host_alloc +EXPORT_SYMBOL vmlinux 0x824642b3 pfifo_qdisc_ops EXPORT_SYMBOL vmlinux 0x824a4367 tmio_core_mmc_pwr -EXPORT_SYMBOL vmlinux 0x824d2cea seq_open_private -EXPORT_SYMBOL vmlinux 0x825930f1 ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0x826ef8a9 __sk_receive_skb EXPORT_SYMBOL vmlinux 0x828062b1 __frontswap_init -EXPORT_SYMBOL vmlinux 0x8283075c dev_pick_tx_zero EXPORT_SYMBOL vmlinux 0x828ce6bb mutex_lock -EXPORT_SYMBOL vmlinux 0x82925f89 generic_file_write_iter -EXPORT_SYMBOL vmlinux 0x82af1ab4 tcp_rtx_synack -EXPORT_SYMBOL vmlinux 0x82d43072 dcb_setapp -EXPORT_SYMBOL vmlinux 0x82d55df2 pci_try_set_mwi -EXPORT_SYMBOL vmlinux 0x82eb88ee input_set_min_poll_interval -EXPORT_SYMBOL vmlinux 0x82ebb25f flow_block_cb_setup_simple +EXPORT_SYMBOL vmlinux 0x8299f2f1 mmc_cqe_post_req +EXPORT_SYMBOL vmlinux 0x82a4b727 empty_aops +EXPORT_SYMBOL vmlinux 0x82b11c53 snd_ctl_notify_one +EXPORT_SYMBOL vmlinux 0x82c8b938 twl6040_get_vibralr_status EXPORT_SYMBOL vmlinux 0x82f886a1 ZSTD_findFrameCompressedSize -EXPORT_SYMBOL vmlinux 0x82f92df4 phy_attach -EXPORT_SYMBOL vmlinux 0x82ffc62f serio_open +EXPORT_SYMBOL vmlinux 0x82f98e20 xfrm_dst_ifdown +EXPORT_SYMBOL vmlinux 0x82fb7cd2 fb_prepare_logo +EXPORT_SYMBOL vmlinux 0x8317499b xsk_clear_rx_need_wakeup EXPORT_SYMBOL vmlinux 0x8320bea8 __umodsi3 -EXPORT_SYMBOL vmlinux 0x833f6b48 tcp_get_md5sig_pool -EXPORT_SYMBOL vmlinux 0x8340a302 ip4_datagram_connect -EXPORT_SYMBOL vmlinux 0x8345dbd6 pci_wait_for_pending_transaction EXPORT_SYMBOL vmlinux 0x8351f2dc seqno_fence_ops -EXPORT_SYMBOL vmlinux 0x83553c44 request_partial_firmware_into_buf EXPORT_SYMBOL vmlinux 0x83581089 gf128mul_init_4k_lle -EXPORT_SYMBOL vmlinux 0x8359ff47 ipv6_skip_exthdr -EXPORT_SYMBOL vmlinux 0x83707ee5 dmam_pool_create -EXPORT_SYMBOL vmlinux 0x837e3306 devfreq_resume_device -EXPORT_SYMBOL vmlinux 0x838aa208 input_register_device -EXPORT_SYMBOL vmlinux 0x838d1760 tcp_sock_set_keepintvl +EXPORT_SYMBOL vmlinux 0x83823edc inode_set_bytes +EXPORT_SYMBOL vmlinux 0x83877131 clk_bulk_get +EXPORT_SYMBOL vmlinux 0x8387b5a3 inet_add_protocol EXPORT_SYMBOL vmlinux 0x838d2bc8 siphash_3u32 -EXPORT_SYMBOL vmlinux 0x839d3699 scsi_block_requests -EXPORT_SYMBOL vmlinux 0x83b259c4 netdev_warn -EXPORT_SYMBOL vmlinux 0x83b44b29 gnet_stats_copy_basic_hw -EXPORT_SYMBOL vmlinux 0x83b6d0f8 devm_pci_remap_cfg_resource -EXPORT_SYMBOL vmlinux 0x83c45053 ptp_clock_unregister -EXPORT_SYMBOL vmlinux 0x83c5057f genl_register_family +EXPORT_SYMBOL vmlinux 0x83bd96c6 devfreq_monitor_start +EXPORT_SYMBOL vmlinux 0x83be7f88 ppp_dev_name EXPORT_SYMBOL vmlinux 0x83c52fba xfrm4_protocol_init EXPORT_SYMBOL vmlinux 0x83cd0e6f atomic_io_modify -EXPORT_SYMBOL vmlinux 0x83e0d01b kernel_sendpage EXPORT_SYMBOL vmlinux 0x83ed8026 rproc_va_to_pa -EXPORT_SYMBOL vmlinux 0x83fd8e8f jbd2__journal_restart -EXPORT_SYMBOL vmlinux 0x84089ee4 mdio_driver_unregister -EXPORT_SYMBOL vmlinux 0x8410779b get_vm_area -EXPORT_SYMBOL vmlinux 0x841e8d33 __task_pid_nr_ns -EXPORT_SYMBOL vmlinux 0x843aa6bf inet_addr_type_table +EXPORT_SYMBOL vmlinux 0x8430b65d __ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0x843a51de fwnode_mdio_find_device +EXPORT_SYMBOL vmlinux 0x843f4c98 _dev_info EXPORT_SYMBOL vmlinux 0x8441c8cb sg_free_table -EXPORT_SYMBOL vmlinux 0x844eb019 __cleancache_init_shared_fs EXPORT_SYMBOL vmlinux 0x8451fdfe sg_init_table EXPORT_SYMBOL vmlinux 0x8456e9a7 xa_erase -EXPORT_SYMBOL vmlinux 0x845aa22b nf_register_sockopt +EXPORT_SYMBOL vmlinux 0x845e5d5d blk_set_queue_depth EXPORT_SYMBOL vmlinux 0x846c7bbb scsi_kmap_atomic_sg -EXPORT_SYMBOL vmlinux 0x84796363 flow_rule_match_enc_ports +EXPORT_SYMBOL vmlinux 0x846e4fa6 console_stop +EXPORT_SYMBOL vmlinux 0x8474dfe4 devm_memremap +EXPORT_SYMBOL vmlinux 0x8475f8dd file_write_and_wait_range EXPORT_SYMBOL vmlinux 0x84818f57 tegra_powergate_power_on -EXPORT_SYMBOL vmlinux 0x84acbbe4 devm_register_netdev -EXPORT_SYMBOL vmlinux 0x84b0af23 netdev_lower_state_changed +EXPORT_SYMBOL vmlinux 0x8490fca3 pcie_set_mps +EXPORT_SYMBOL vmlinux 0x849efcdc of_get_min_tck EXPORT_SYMBOL vmlinux 0x84b183ae strncmp EXPORT_SYMBOL vmlinux 0x84c03e9a rtnl_nla_parse_ifla -EXPORT_SYMBOL vmlinux 0x84d4e7f8 close_fd_get_file -EXPORT_SYMBOL vmlinux 0x84e99f0a dec_zone_page_state -EXPORT_SYMBOL vmlinux 0x84ec910f rdmacg_try_charge -EXPORT_SYMBOL vmlinux 0x85113c0a __hw_addr_ref_sync_dev -EXPORT_SYMBOL vmlinux 0x851dc4f9 invalidate_mapping_pages -EXPORT_SYMBOL vmlinux 0x85399dec devm_of_find_backlight +EXPORT_SYMBOL vmlinux 0x84fdd6a3 dev_change_proto_down_generic +EXPORT_SYMBOL vmlinux 0x85001728 iterate_dir +EXPORT_SYMBOL vmlinux 0x8509d0f3 seq_put_decimal_ull +EXPORT_SYMBOL vmlinux 0x850bb1cd flow_rule_match_ipv4_addrs +EXPORT_SYMBOL vmlinux 0x851595b1 udp_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0x85296a0c unregister_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x853ab965 pci_alloc_irq_vectors_affinity +EXPORT_SYMBOL vmlinux 0x8542d2fc pci_enable_ptm EXPORT_SYMBOL vmlinux 0x854fec83 tegra_sku_info +EXPORT_SYMBOL vmlinux 0x855d4a14 tegra_ivc_write_get_next_frame EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked -EXPORT_SYMBOL vmlinux 0x857606f2 component_match_add_release -EXPORT_SYMBOL vmlinux 0x85787114 tcp_openreq_init_rwin EXPORT_SYMBOL vmlinux 0x8582ebff cpu_all_bits -EXPORT_SYMBOL vmlinux 0x858c5a27 blk_put_queue EXPORT_SYMBOL vmlinux 0x8591d7d5 ledtrig_mtd_activity -EXPORT_SYMBOL vmlinux 0x85a0188b snd_pcm_stop -EXPORT_SYMBOL vmlinux 0x85a95322 remove_watch_from_object -EXPORT_SYMBOL vmlinux 0x85b2ad0e pci_add_new_bus EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states -EXPORT_SYMBOL vmlinux 0x85bae245 snd_info_create_module_entry -EXPORT_SYMBOL vmlinux 0x85d5cfa6 tcp_v4_md5_hash_skb +EXPORT_SYMBOL vmlinux 0x85cc25f4 dev_queue_xmit_accel +EXPORT_SYMBOL vmlinux 0x85dab21e pci_get_device EXPORT_SYMBOL vmlinux 0x85df9b6c strsep EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn -EXPORT_SYMBOL vmlinux 0x85f967a3 input_release_device +EXPORT_SYMBOL vmlinux 0x85f0a0e3 mount_nodev EXPORT_SYMBOL vmlinux 0x85fbc931 slhc_uncompress -EXPORT_SYMBOL vmlinux 0x86178c0e del_gendisk -EXPORT_SYMBOL vmlinux 0x8619ccd6 remove_arg_zero -EXPORT_SYMBOL vmlinux 0x862af7d6 devm_nvmem_unregister +EXPORT_SYMBOL vmlinux 0x8601417c submit_bh +EXPORT_SYMBOL vmlinux 0x8608b175 kthread_bind +EXPORT_SYMBOL vmlinux 0x860e736a dst_cow_metrics_generic +EXPORT_SYMBOL vmlinux 0x8618cec7 lookup_positive_unlocked +EXPORT_SYMBOL vmlinux 0x861d3cc1 rawnand_sw_hamming_cleanup EXPORT_SYMBOL vmlinux 0x862bc663 memset16 -EXPORT_SYMBOL vmlinux 0x862c216b __blkdev_issue_discard -EXPORT_SYMBOL vmlinux 0x862d05f6 pagecache_write_end -EXPORT_SYMBOL vmlinux 0x863834e2 shrink_dcache_parent EXPORT_SYMBOL vmlinux 0x863a276a color_table -EXPORT_SYMBOL vmlinux 0x86503135 da903x_query_status -EXPORT_SYMBOL vmlinux 0x865b9347 netif_device_detach +EXPORT_SYMBOL vmlinux 0x8646eaaa try_to_release_page EXPORT_SYMBOL vmlinux 0x8666995b sgl_alloc -EXPORT_SYMBOL vmlinux 0x868aa4b4 ip_local_deliver +EXPORT_SYMBOL vmlinux 0x8682690e pm860x_bulk_write +EXPORT_SYMBOL vmlinux 0x8686ab6c mipi_dsi_dcs_get_power_mode EXPORT_SYMBOL vmlinux 0x868acba5 get_options -EXPORT_SYMBOL vmlinux 0x86a662ba icmp6_send -EXPORT_SYMBOL vmlinux 0x86a6835d devm_mdiobus_alloc_size -EXPORT_SYMBOL vmlinux 0x86b1fffd ip_check_defrag -EXPORT_SYMBOL vmlinux 0x86cb2db1 ip_ct_attach -EXPORT_SYMBOL vmlinux 0x86cd2bda seg6_hmac_net_init -EXPORT_SYMBOL vmlinux 0x86d40eef tegra_ivc_read_get_next_frame +EXPORT_SYMBOL vmlinux 0x869af6f8 km_new_mapping EXPORT_SYMBOL vmlinux 0x86d52ba5 lookup_constant -EXPORT_SYMBOL vmlinux 0x86eb0a39 netlink_unicast +EXPORT_SYMBOL vmlinux 0x86df1c1b xfrm_state_delete EXPORT_SYMBOL vmlinux 0x86eb0c08 proc_dointvec -EXPORT_SYMBOL vmlinux 0x86f9ec8e dm_unregister_target +EXPORT_SYMBOL vmlinux 0x86eea5d8 invalidate_bdev +EXPORT_SYMBOL vmlinux 0x86eeb1df xfrm_policy_register_afinfo +EXPORT_SYMBOL vmlinux 0x86fb487a insert_inode_locked4 EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user +EXPORT_SYMBOL vmlinux 0x8708f469 netif_carrier_on EXPORT_SYMBOL vmlinux 0x870d5a1c __init_swait_queue_head -EXPORT_SYMBOL vmlinux 0x8711d0d5 flow_rule_alloc -EXPORT_SYMBOL vmlinux 0x87163643 __d_drop -EXPORT_SYMBOL vmlinux 0x871edfb2 snd_dma_buffer_mmap -EXPORT_SYMBOL vmlinux 0x87267287 pps_lookup_dev -EXPORT_SYMBOL vmlinux 0x87272bef mmc_gpio_set_cd_wake -EXPORT_SYMBOL vmlinux 0x873da1eb rpmh_write_async -EXPORT_SYMBOL vmlinux 0x87478931 init_special_inode -EXPORT_SYMBOL vmlinux 0x874e608c md_write_end -EXPORT_SYMBOL vmlinux 0x87620727 __put_page -EXPORT_SYMBOL vmlinux 0x87678703 mmc_can_gpio_cd -EXPORT_SYMBOL vmlinux 0x879f49dd skb_copy_datagram_iter +EXPORT_SYMBOL vmlinux 0x8712ef20 mmc_hw_reset +EXPORT_SYMBOL vmlinux 0x872c560f generic_permission +EXPORT_SYMBOL vmlinux 0x8740f8fd of_find_node_by_type +EXPORT_SYMBOL vmlinux 0x874c4868 dma_sync_sg_for_cpu +EXPORT_SYMBOL vmlinux 0x87558438 udp_set_csum +EXPORT_SYMBOL vmlinux 0x875587b8 sync_inodes_sb +EXPORT_SYMBOL vmlinux 0x876e61f7 udp_lib_rehash +EXPORT_SYMBOL vmlinux 0x87715d5e mini_qdisc_pair_block_init +EXPORT_SYMBOL vmlinux 0x87823eae inet_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0x8799bdee dev_loopback_xmit +EXPORT_SYMBOL vmlinux 0x87a1d259 shmem_aops EXPORT_SYMBOL vmlinux 0x87a21cb3 __ubsan_handle_out_of_bounds +EXPORT_SYMBOL vmlinux 0x87a704e6 sock_register +EXPORT_SYMBOL vmlinux 0x87b280b9 dev_uc_flush +EXPORT_SYMBOL vmlinux 0x87d80d22 poll_freewait +EXPORT_SYMBOL vmlinux 0x87db9a95 xfrm6_protocol_register EXPORT_SYMBOL vmlinux 0x881bad5e phy_mipi_dphy_config_validate -EXPORT_SYMBOL vmlinux 0x8831b68d dev_pre_changeaddr_notify -EXPORT_SYMBOL vmlinux 0x88635600 skb_realloc_headroom -EXPORT_SYMBOL vmlinux 0x88677dd1 ptp_find_pin +EXPORT_SYMBOL vmlinux 0x88312f6b of_get_next_child +EXPORT_SYMBOL vmlinux 0x883bb0ec __skb_checksum_complete +EXPORT_SYMBOL vmlinux 0x883fb7d6 eth_prepare_mac_addr_change +EXPORT_SYMBOL vmlinux 0x88453da4 dcbnl_ieee_notify +EXPORT_SYMBOL vmlinux 0x8863202d of_mdiobus_register +EXPORT_SYMBOL vmlinux 0x8867494a amba_request_regions +EXPORT_SYMBOL vmlinux 0x886fdc3d blk_integrity_register +EXPORT_SYMBOL vmlinux 0x8870cc1c __generic_file_fsync +EXPORT_SYMBOL vmlinux 0x8875be33 iov_iter_bvec +EXPORT_SYMBOL vmlinux 0x8876c116 phy_device_remove EXPORT_SYMBOL vmlinux 0x88822d38 unregister_blocking_lsm_notifier -EXPORT_SYMBOL vmlinux 0x888a80f7 tcf_idr_cleanup -EXPORT_SYMBOL vmlinux 0x88a4513e netlink_capable +EXPORT_SYMBOL vmlinux 0x8889096a pagecache_write_begin +EXPORT_SYMBOL vmlinux 0x88a0f7a9 pm860x_page_bulk_read EXPORT_SYMBOL vmlinux 0x88a87a2d cpumask_next -EXPORT_SYMBOL vmlinux 0x88ae0793 mmc_cqe_start_req EXPORT_SYMBOL vmlinux 0x88b19f45 system_serial -EXPORT_SYMBOL vmlinux 0x88cb0d81 mmc_wait_for_req +EXPORT_SYMBOL vmlinux 0x88b4eeb0 snd_pcm_open_substream +EXPORT_SYMBOL vmlinux 0x88babb5c inet_listen +EXPORT_SYMBOL vmlinux 0x88cc72ba of_get_ddr_timings +EXPORT_SYMBOL vmlinux 0x88d8b54e fscrypt_fname_disk_to_usr EXPORT_SYMBOL vmlinux 0x88db665b kstrtoul_from_user EXPORT_SYMBOL vmlinux 0x88db9f48 __check_object_size +EXPORT_SYMBOL vmlinux 0x88e02783 i2c_transfer_buffer_flags EXPORT_SYMBOL vmlinux 0x88e1d0f0 page_frag_free -EXPORT_SYMBOL vmlinux 0x88ef9e9c dev_pm_opp_register_notifier -EXPORT_SYMBOL vmlinux 0x88f49dff dma_get_sgtable_attrs -EXPORT_SYMBOL vmlinux 0x890895b5 blackhole_netdev +EXPORT_SYMBOL vmlinux 0x88f91421 netpoll_print_options +EXPORT_SYMBOL vmlinux 0x88fcdf5a flow_indr_dev_register +EXPORT_SYMBOL vmlinux 0x8902d14d __frontswap_store EXPORT_SYMBOL vmlinux 0x890de126 omap_vrfb_setup -EXPORT_SYMBOL vmlinux 0x8915f58f inode_insert5 -EXPORT_SYMBOL vmlinux 0x892d5f27 __frontswap_store -EXPORT_SYMBOL vmlinux 0x8948c95c write_cache_pages -EXPORT_SYMBOL vmlinux 0x895b7782 nobh_writepage -EXPORT_SYMBOL vmlinux 0x896057c8 dev_alloc_name -EXPORT_SYMBOL vmlinux 0x8981b1a0 __netlink_ns_capable -EXPORT_SYMBOL vmlinux 0x898a7c87 memory_cgrp_subsys -EXPORT_SYMBOL vmlinux 0x898c5a97 mdiobus_free -EXPORT_SYMBOL vmlinux 0x89906aa3 dquot_get_state -EXPORT_SYMBOL vmlinux 0x89914e07 jbd2_trans_will_send_data_barrier -EXPORT_SYMBOL vmlinux 0x899e1474 bd_abort_claiming -EXPORT_SYMBOL vmlinux 0x89a822a9 iov_iter_get_pages_alloc -EXPORT_SYMBOL vmlinux 0x89e5534b xfrm_state_lookup_byspi +EXPORT_SYMBOL vmlinux 0x891573e7 padata_set_cpumask +EXPORT_SYMBOL vmlinux 0x893034ab blk_rq_count_integrity_sg +EXPORT_SYMBOL vmlinux 0x894430c7 phy_mac_interrupt +EXPORT_SYMBOL vmlinux 0x89462071 pci_set_master +EXPORT_SYMBOL vmlinux 0x89518cc8 md_bitmap_startwrite +EXPORT_SYMBOL vmlinux 0x8969430f vlan_ioctl_set +EXPORT_SYMBOL vmlinux 0x896d87a9 devm_clk_get_optional +EXPORT_SYMBOL vmlinux 0x897486ff snd_pcm_suspend_all +EXPORT_SYMBOL vmlinux 0x897a265a i2c_add_adapter +EXPORT_SYMBOL vmlinux 0x89834cfb sk_reset_timer +EXPORT_SYMBOL vmlinux 0x89b2e801 devm_devfreq_register_notifier +EXPORT_SYMBOL vmlinux 0x89bb6bbe __snd_pcm_lib_xfer +EXPORT_SYMBOL vmlinux 0x89c84b03 sock_no_shutdown EXPORT_SYMBOL vmlinux 0x89e8c1f4 textsearch_register -EXPORT_SYMBOL vmlinux 0x8a24c2f1 tcp_md5_do_add -EXPORT_SYMBOL vmlinux 0x8a2f6036 rawv6_mh_filter_unregister -EXPORT_SYMBOL vmlinux 0x8a301fa9 sock_no_sendpage -EXPORT_SYMBOL vmlinux 0x8a3a745d tcp_mtup_init +EXPORT_SYMBOL vmlinux 0x89f94cc9 udp_push_pending_frames +EXPORT_SYMBOL vmlinux 0x89fa2bf3 vga_client_register +EXPORT_SYMBOL vmlinux 0x8a29187b of_clk_get_by_name EXPORT_SYMBOL vmlinux 0x8a3b1285 __xa_erase EXPORT_SYMBOL vmlinux 0x8a490c90 rfkill_set_sw_state -EXPORT_SYMBOL vmlinux 0x8a4acedd skb_expand_head -EXPORT_SYMBOL vmlinux 0x8a4d5fc9 __skb_flow_get_ports +EXPORT_SYMBOL vmlinux 0x8a49c823 snd_pcm_mmap_data EXPORT_SYMBOL vmlinux 0x8a4fa83b __aeabi_llsr -EXPORT_SYMBOL vmlinux 0x8a555b27 pin_user_pages -EXPORT_SYMBOL vmlinux 0x8a5d2945 pci_disable_device -EXPORT_SYMBOL vmlinux 0x8a5f571d tty_port_hangup +EXPORT_SYMBOL vmlinux 0x8a5b4b01 phy_connect_direct EXPORT_SYMBOL vmlinux 0x8a7094ba vm_brk_flags +EXPORT_SYMBOL vmlinux 0x8a7b11da vme_init_bridge EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory -EXPORT_SYMBOL vmlinux 0x8a809004 netlink_set_err +EXPORT_SYMBOL vmlinux 0x8a7f1ede flow_rule_match_ip +EXPORT_SYMBOL vmlinux 0x8a80c89e skb_kill_datagram +EXPORT_SYMBOL vmlinux 0x8a98c914 mmc_add_host EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab EXPORT_SYMBOL vmlinux 0x8aa0402b _raw_read_unlock_irqrestore -EXPORT_SYMBOL vmlinux 0x8aa0e118 dquot_quotactl_sysfile_ops EXPORT_SYMBOL vmlinux 0x8aa30959 ZSTD_decompressDCtx EXPORT_SYMBOL vmlinux 0x8ac136ae imx_sc_misc_get_control EXPORT_SYMBOL vmlinux 0x8ac3334b net_dim_get_def_rx_moderation +EXPORT_SYMBOL vmlinux 0x8ad31901 remove_conflicting_pci_framebuffers +EXPORT_SYMBOL vmlinux 0x8ae1e7b3 scsi_partsize +EXPORT_SYMBOL vmlinux 0x8aec4c59 do_clone_file_range +EXPORT_SYMBOL vmlinux 0x8af93605 vfs_llseek +EXPORT_SYMBOL vmlinux 0x8afbf023 tcf_idr_create +EXPORT_SYMBOL vmlinux 0x8afc6c40 tcp_filter EXPORT_SYMBOL vmlinux 0x8b0088d1 LZ4_decompress_safe_usingDict EXPORT_SYMBOL vmlinux 0x8b07b51d flow_block_cb_is_busy -EXPORT_SYMBOL vmlinux 0x8b1e9b11 vlan_vids_del_by_dev -EXPORT_SYMBOL vmlinux 0x8b24a81b tcp_enter_cwr -EXPORT_SYMBOL vmlinux 0x8b444d32 cfb_imageblit +EXPORT_SYMBOL vmlinux 0x8b44e846 qdisc_put +EXPORT_SYMBOL vmlinux 0x8b49f6c8 pci_iounmap EXPORT_SYMBOL vmlinux 0x8b5927a0 down_timeout EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid -EXPORT_SYMBOL vmlinux 0x8b6575cd single_open_size -EXPORT_SYMBOL vmlinux 0x8b750dcc gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0x8b6f5fcf fscrypt_decrypt_bio EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p -EXPORT_SYMBOL vmlinux 0x8b85f2a0 nand_get_set_features_notsupp EXPORT_SYMBOL vmlinux 0x8b910be2 errseq_sample -EXPORT_SYMBOL vmlinux 0x8b9a4203 __devm_request_region EXPORT_SYMBOL vmlinux 0x8b9ea582 ZSTD_copyDCtx -EXPORT_SYMBOL vmlinux 0x8ba01dfd dev_get_port_parent_id -EXPORT_SYMBOL vmlinux 0x8ba6ccb6 tty_register_device -EXPORT_SYMBOL vmlinux 0x8bbf591f pci_assign_resource -EXPORT_SYMBOL vmlinux 0x8bc99a4e register_netdevice_notifier_net +EXPORT_SYMBOL vmlinux 0x8baa66c6 rproc_free +EXPORT_SYMBOL vmlinux 0x8bb25174 tegra_ahb_enable_smmu +EXPORT_SYMBOL vmlinux 0x8bd8b8e8 dev_mc_add_global EXPORT_SYMBOL vmlinux 0x8bee75d7 proc_dostring -EXPORT_SYMBOL vmlinux 0x8c101bb5 tcf_register_action -EXPORT_SYMBOL vmlinux 0x8c1e075a tcf_action_exec +EXPORT_SYMBOL vmlinux 0x8bf45017 i2c_get_adapter +EXPORT_SYMBOL vmlinux 0x8bf94b33 fuse_mount_destroy +EXPORT_SYMBOL vmlinux 0x8bfac3dc pipe_lock +EXPORT_SYMBOL vmlinux 0x8c03b84a param_get_long +EXPORT_SYMBOL vmlinux 0x8c0eef39 tcp_timewait_state_process +EXPORT_SYMBOL vmlinux 0x8c0faff5 skb_clone_sk +EXPORT_SYMBOL vmlinux 0x8c17fe0d gro_cells_init EXPORT_SYMBOL vmlinux 0x8c1f00d5 __tracepoint_kmalloc_node -EXPORT_SYMBOL vmlinux 0x8c51d5fc crypto_sha256_update +EXPORT_SYMBOL vmlinux 0x8c347238 __hw_addr_ref_unsync_dev +EXPORT_SYMBOL vmlinux 0x8c3476d2 i2c_register_driver +EXPORT_SYMBOL vmlinux 0x8c3a3b6b put_fs_context +EXPORT_SYMBOL vmlinux 0x8c3ef0aa mipi_dsi_set_maximum_return_packet_size EXPORT_SYMBOL vmlinux 0x8c5d254a dma_fence_array_ops -EXPORT_SYMBOL vmlinux 0x8c6c6745 sock_no_socketpair -EXPORT_SYMBOL vmlinux 0x8c7bd808 md_wait_for_blocked_rdev +EXPORT_SYMBOL vmlinux 0x8c63c22b generic_splice_sendpage +EXPORT_SYMBOL vmlinux 0x8c6b2e19 crypto_sha1_update EXPORT_SYMBOL vmlinux 0x8c8569cb kstrtoint -EXPORT_SYMBOL vmlinux 0x8c9cf621 of_get_ddr_timings +EXPORT_SYMBOL vmlinux 0x8c8d3e34 vmalloc_to_page +EXPORT_SYMBOL vmlinux 0x8c998993 pci_iomap_range EXPORT_SYMBOL vmlinux 0x8ca10772 gen_pool_dma_zalloc +EXPORT_SYMBOL vmlinux 0x8caa0c5f tcp_enter_quickack_mode EXPORT_SYMBOL vmlinux 0x8caf9305 uuid_is_valid -EXPORT_SYMBOL vmlinux 0x8cbb0096 skb_try_coalesce EXPORT_SYMBOL vmlinux 0x8cc53d20 __par_io_config_pin -EXPORT_SYMBOL vmlinux 0x8cd4230f scsi_partsize -EXPORT_SYMBOL vmlinux 0x8cd4c1b1 mipi_dsi_dcs_set_column_address +EXPORT_SYMBOL vmlinux 0x8ccea939 simple_getattr +EXPORT_SYMBOL vmlinux 0x8cd7beda brioctl_set EXPORT_SYMBOL vmlinux 0x8cd8c339 omap_free_dma -EXPORT_SYMBOL vmlinux 0x8cddd037 sock_no_connect +EXPORT_SYMBOL vmlinux 0x8cda2960 nf_setsockopt EXPORT_SYMBOL vmlinux 0x8ce13cc5 udplite_table -EXPORT_SYMBOL vmlinux 0x8cef87e1 kernel_sendmsg -EXPORT_SYMBOL vmlinux 0x8cf2b287 __test_set_page_writeback -EXPORT_SYMBOL vmlinux 0x8d0b8dc4 dquot_commit_info -EXPORT_SYMBOL vmlinux 0x8d20386b xfrm_dst_ifdown -EXPORT_SYMBOL vmlinux 0x8d216f06 __sk_queue_drop_skb +EXPORT_SYMBOL vmlinux 0x8ce1a880 zero_fill_bio +EXPORT_SYMBOL vmlinux 0x8d07ffd8 of_find_matching_node_and_match +EXPORT_SYMBOL vmlinux 0x8d16d399 always_delete_dentry +EXPORT_SYMBOL vmlinux 0x8d2b6eaa pci_enable_device +EXPORT_SYMBOL vmlinux 0x8d30d18b tc_setup_cb_replace EXPORT_SYMBOL vmlinux 0x8d4112df qcom_scm_mem_protect_video_var -EXPORT_SYMBOL vmlinux 0x8d4149ac pci_iomap_range -EXPORT_SYMBOL vmlinux 0x8d4370a4 ipv6_push_frag_opts EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq EXPORT_SYMBOL vmlinux 0x8d73278e hex_asc_upper -EXPORT_SYMBOL vmlinux 0x8d738995 inet6_add_offload -EXPORT_SYMBOL vmlinux 0x8d7718b4 devm_ioremap_wc +EXPORT_SYMBOL vmlinux 0x8d8847f2 tcp_md5_hash_key EXPORT_SYMBOL vmlinux 0x8d8887b1 kobject_init -EXPORT_SYMBOL vmlinux 0x8d8d67ff key_task_permission -EXPORT_SYMBOL vmlinux 0x8db92b54 generic_delete_inode -EXPORT_SYMBOL vmlinux 0x8dbd31f5 devfreq_remove_device -EXPORT_SYMBOL vmlinux 0x8dbfd301 generic_read_dir -EXPORT_SYMBOL vmlinux 0x8dc2c11e mmc_retune_pause -EXPORT_SYMBOL vmlinux 0x8dd634e3 key_reject_and_link +EXPORT_SYMBOL vmlinux 0x8d8ac12f __napi_schedule +EXPORT_SYMBOL vmlinux 0x8d9f3546 filemap_page_mkwrite +EXPORT_SYMBOL vmlinux 0x8da81109 fddi_type_trans +EXPORT_SYMBOL vmlinux 0x8db4d50f ppp_input +EXPORT_SYMBOL vmlinux 0x8dbc211e snd_sgbuf_get_chunk_size +EXPORT_SYMBOL vmlinux 0x8dc6aaad ip6_err_gen_icmpv6_unreach +EXPORT_SYMBOL vmlinux 0x8dce8170 sg_miter_stop EXPORT_SYMBOL vmlinux 0x8ddd8aad schedule_timeout -EXPORT_SYMBOL vmlinux 0x8de4f292 pci_get_subsys -EXPORT_SYMBOL vmlinux 0x8df350a9 sget_fc EXPORT_SYMBOL vmlinux 0x8df3789f snd_oss_info_register EXPORT_SYMBOL vmlinux 0x8df4afd9 qe_put_snum EXPORT_SYMBOL vmlinux 0x8df9dd10 guid_null EXPORT_SYMBOL vmlinux 0x8dfefc0d kvmalloc_node -EXPORT_SYMBOL vmlinux 0x8e1272d4 d_invalidate -EXPORT_SYMBOL vmlinux 0x8e15c961 unlock_rename -EXPORT_SYMBOL vmlinux 0x8e160df3 seq_hex_dump -EXPORT_SYMBOL vmlinux 0x8e187ff8 devm_clk_put +EXPORT_SYMBOL vmlinux 0x8e246c77 ip_sock_set_recverr EXPORT_SYMBOL vmlinux 0x8e3665e6 sg_free_append_table +EXPORT_SYMBOL vmlinux 0x8e375f8b blk_mq_free_tag_set EXPORT_SYMBOL vmlinux 0x8e47d019 config_item_init_type_name EXPORT_SYMBOL vmlinux 0x8e4872d3 cpm_muram_dma -EXPORT_SYMBOL vmlinux 0x8e57da94 dev_get_mac_address +EXPORT_SYMBOL vmlinux 0x8e5663f3 generic_file_splice_read +EXPORT_SYMBOL vmlinux 0x8e62b73b pci_find_resource +EXPORT_SYMBOL vmlinux 0x8e638193 scsi_test_unit_ready +EXPORT_SYMBOL vmlinux 0x8e6e0861 devm_register_reboot_notifier +EXPORT_SYMBOL vmlinux 0x8e855236 mr_vif_seq_next EXPORT_SYMBOL vmlinux 0x8e865d3c arm_delay_ops EXPORT_SYMBOL vmlinux 0x8e876807 rps_needed -EXPORT_SYMBOL vmlinux 0x8e8a13db md_finish_reshape EXPORT_SYMBOL vmlinux 0x8e93bd24 security_secctx_to_secid -EXPORT_SYMBOL vmlinux 0x8ea6832a init_net +EXPORT_SYMBOL vmlinux 0x8e9a2230 dst_dev_put +EXPORT_SYMBOL vmlinux 0x8e9ce64c snd_pcm_new_stream +EXPORT_SYMBOL vmlinux 0x8ea879a9 xp_dma_map +EXPORT_SYMBOL vmlinux 0x8eb3bd2c scsi_dma_map +EXPORT_SYMBOL vmlinux 0x8ec98c6e param_get_invbool EXPORT_SYMBOL vmlinux 0x8ecbb3b8 nand_check_erased_ecc_chunk -EXPORT_SYMBOL vmlinux 0x8ed4098d ptp_schedule_worker EXPORT_SYMBOL vmlinux 0x8edbfffb hdmi_spd_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0x8ee92f71 dev_get_phys_port_name -EXPORT_SYMBOL vmlinux 0x8efa4289 skb_eth_pop -EXPORT_SYMBOL vmlinux 0x8efd48fb unregister_key_type +EXPORT_SYMBOL vmlinux 0x8efcabae generic_write_end +EXPORT_SYMBOL vmlinux 0x8efdaf4b da903x_query_status EXPORT_SYMBOL vmlinux 0x8f01afd6 twl6030_interrupt_mask -EXPORT_SYMBOL vmlinux 0x8f1ac8ed simple_dir_inode_operations +EXPORT_SYMBOL vmlinux 0x8f0916ae blk_queue_dma_alignment +EXPORT_SYMBOL vmlinux 0x8f10207a scsi_device_put +EXPORT_SYMBOL vmlinux 0x8f1d91a0 input_mt_sync_frame EXPORT_SYMBOL vmlinux 0x8f22a027 __traceiter_dma_fence_emit -EXPORT_SYMBOL vmlinux 0x8f25e9e9 dev_get_stats -EXPORT_SYMBOL vmlinux 0x8f33ffc9 netdev_bind_sb_channel_queue -EXPORT_SYMBOL vmlinux 0x8f473ba9 touch_buffer +EXPORT_SYMBOL vmlinux 0x8f2f0a2b devm_extcon_register_notifier_all +EXPORT_SYMBOL vmlinux 0x8f50e180 blk_queue_max_write_same_sectors +EXPORT_SYMBOL vmlinux 0x8f53f775 neigh_xmit +EXPORT_SYMBOL vmlinux 0x8f55728a dquot_quota_on EXPORT_SYMBOL vmlinux 0x8f595b11 snd_major +EXPORT_SYMBOL vmlinux 0x8f6371c3 of_find_property EXPORT_SYMBOL vmlinux 0x8f678b07 __stack_chk_guard -EXPORT_SYMBOL vmlinux 0x8f684911 dm_table_run_md_queue_async -EXPORT_SYMBOL vmlinux 0x8f7128ad free_cgroup_ns +EXPORT_SYMBOL vmlinux 0x8f709c1e tcp_mss_to_mtu +EXPORT_SYMBOL vmlinux 0x8f7f2edd key_unlink EXPORT_SYMBOL vmlinux 0x8f8f657f bsearch EXPORT_SYMBOL vmlinux 0x8f996a30 ethtool_convert_legacy_u32_to_link_mode -EXPORT_SYMBOL vmlinux 0x8f9da0da mdio_bus_type -EXPORT_SYMBOL vmlinux 0x8fce3efa file_open_root -EXPORT_SYMBOL vmlinux 0x8fce877e tty_port_put +EXPORT_SYMBOL vmlinux 0x8fb33114 cleancache_register_ops +EXPORT_SYMBOL vmlinux 0x8fbc0e4c elevator_alloc +EXPORT_SYMBOL vmlinux 0x8fcf69bc md_done_sync EXPORT_SYMBOL vmlinux 0x8fd180e7 kernel_neon_begin +EXPORT_SYMBOL vmlinux 0x8fd320a9 file_modified +EXPORT_SYMBOL vmlinux 0x8fdd5d5c mipi_dsi_dcs_get_display_brightness EXPORT_SYMBOL vmlinux 0x8fe35457 xxh32_update +EXPORT_SYMBOL vmlinux 0x8ff3d466 padata_alloc_shell +EXPORT_SYMBOL vmlinux 0x8ff896eb fib6_info_hw_flags_set EXPORT_SYMBOL vmlinux 0x8ff89ed0 seg6_hmac_exit -EXPORT_SYMBOL vmlinux 0x8ffd4117 netdev_adjacent_change_prepare EXPORT_SYMBOL vmlinux 0x90006be6 dm_kcopyd_client_flush -EXPORT_SYMBOL vmlinux 0x9009a846 jbd2_journal_blocks_per_page -EXPORT_SYMBOL vmlinux 0x900f6f7d phy_init_hw -EXPORT_SYMBOL vmlinux 0x90215305 vm_iomap_memory -EXPORT_SYMBOL vmlinux 0x903247e9 pci_pme_active -EXPORT_SYMBOL vmlinux 0x903ca95a generic_file_mmap +EXPORT_SYMBOL vmlinux 0x901b2ecc netdev_sk_get_lowest_dev +EXPORT_SYMBOL vmlinux 0x9029afc7 snd_pcm_period_elapsed +EXPORT_SYMBOL vmlinux 0x90379f6e dev_addr_flush +EXPORT_SYMBOL vmlinux 0x90528ab8 md_handle_request EXPORT_SYMBOL vmlinux 0x90609db6 gen_pool_virt_to_phys -EXPORT_SYMBOL vmlinux 0x9068cb95 scsi_print_result EXPORT_SYMBOL vmlinux 0x906f5252 dma_fence_enable_sw_signaling -EXPORT_SYMBOL vmlinux 0x907185ab dquot_alloc +EXPORT_SYMBOL vmlinux 0x908aba01 kernel_connect +EXPORT_SYMBOL vmlinux 0x908e2910 user_revoke EXPORT_SYMBOL vmlinux 0x909332ca register_sysctl -EXPORT_SYMBOL vmlinux 0x90b33daf read_cache_pages -EXPORT_SYMBOL vmlinux 0x90b5f03e tty_lock -EXPORT_SYMBOL vmlinux 0x90cdab99 __sk_dst_check -EXPORT_SYMBOL vmlinux 0x90d87204 netdev_err -EXPORT_SYMBOL vmlinux 0x90f6d94b uart_get_divisor -EXPORT_SYMBOL vmlinux 0x911cf296 __sk_mem_reduce_allocated -EXPORT_SYMBOL vmlinux 0x91227c9a alloc_fcdev +EXPORT_SYMBOL vmlinux 0x90a401c5 register_sound_special_device +EXPORT_SYMBOL vmlinux 0x90a7adde d_alloc_name +EXPORT_SYMBOL vmlinux 0x90a9e70b vlan_vid_add +EXPORT_SYMBOL vmlinux 0x90c45461 unregister_key_type +EXPORT_SYMBOL vmlinux 0x90ef2aa7 security_sb_remount +EXPORT_SYMBOL vmlinux 0x90f62711 unlock_two_nondirectories +EXPORT_SYMBOL vmlinux 0x911a07b6 fs_param_is_path +EXPORT_SYMBOL vmlinux 0x9132e4c6 of_get_next_available_child EXPORT_SYMBOL vmlinux 0x9135dba6 wait_for_completion_interruptible_timeout -EXPORT_SYMBOL vmlinux 0x913fb1e8 of_graph_is_present -EXPORT_SYMBOL vmlinux 0x91453ee5 pin_user_pages_locked -EXPORT_SYMBOL vmlinux 0x9162cddb __inc_node_page_state -EXPORT_SYMBOL vmlinux 0x9180bd83 vlan_dev_vlan_proto +EXPORT_SYMBOL vmlinux 0x91371f2d security_task_getsecid_subj +EXPORT_SYMBOL vmlinux 0x913c2855 of_lpddr3_get_min_tck +EXPORT_SYMBOL vmlinux 0x9158a247 tty_unlock +EXPORT_SYMBOL vmlinux 0x91854f76 phy_device_create EXPORT_SYMBOL vmlinux 0x91872199 _page_poisoning_enabled -EXPORT_SYMBOL vmlinux 0x91874a6a page_pool_destroy EXPORT_SYMBOL vmlinux 0x919029aa __readwrite_bug EXPORT_SYMBOL vmlinux 0x919c58f3 __clzsi2 EXPORT_SYMBOL vmlinux 0x91a488ac __netdev_alloc_frag_align -EXPORT_SYMBOL vmlinux 0x91a49b72 rproc_remove_subdev EXPORT_SYMBOL vmlinux 0x91a7b1da qdisc_class_hash_remove +EXPORT_SYMBOL vmlinux 0x91a8b02b __inode_add_bytes EXPORT_SYMBOL vmlinux 0x91a9c232 __siphash_unaligned -EXPORT_SYMBOL vmlinux 0x91b1265f netpoll_poll_disable -EXPORT_SYMBOL vmlinux 0x91b873af fixed_size_llseek EXPORT_SYMBOL vmlinux 0x91c0980e icst_hz -EXPORT_SYMBOL vmlinux 0x91d0d115 ipv6_mc_check_mld -EXPORT_SYMBOL vmlinux 0x91e1bb72 dma_async_device_register -EXPORT_SYMBOL vmlinux 0x91e93989 qdisc_warn_nonwc +EXPORT_SYMBOL vmlinux 0x91d55301 proto_unregister +EXPORT_SYMBOL vmlinux 0x91efa044 udp_seq_stop EXPORT_SYMBOL vmlinux 0x91f68ea1 __hw_addr_sync -EXPORT_SYMBOL vmlinux 0x91ff5fa4 fb_get_buffer_offset +EXPORT_SYMBOL vmlinux 0x92048f81 inet_pton_with_scope EXPORT_SYMBOL vmlinux 0x921a7b9e __tracepoint_kmem_cache_alloc EXPORT_SYMBOL vmlinux 0x921b07b1 __cpu_online_mask -EXPORT_SYMBOL vmlinux 0x922c2b96 inet6_bind +EXPORT_SYMBOL vmlinux 0x9223af65 scsi_is_host_device EXPORT_SYMBOL vmlinux 0x922f45a6 __bitmap_clear -EXPORT_SYMBOL vmlinux 0x9233a348 ip_generic_getfrag +EXPORT_SYMBOL vmlinux 0x922f4e5f put_watch_queue EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get -EXPORT_SYMBOL vmlinux 0x9246462a mmc_release_host -EXPORT_SYMBOL vmlinux 0x92670a76 audit_log -EXPORT_SYMBOL vmlinux 0x92866c14 __ip_queue_xmit -EXPORT_SYMBOL vmlinux 0x92983bf5 tcf_exts_dump_stats +EXPORT_SYMBOL vmlinux 0x924fb358 udp_seq_ops +EXPORT_SYMBOL vmlinux 0x926857bf dev_activate +EXPORT_SYMBOL vmlinux 0x926bc70e ethtool_rx_flow_rule_create +EXPORT_SYMBOL vmlinux 0x92806f82 key_payload_reserve +EXPORT_SYMBOL vmlinux 0x928baaed seq_read_iter +EXPORT_SYMBOL vmlinux 0x928cea0a read_code EXPORT_SYMBOL vmlinux 0x92997ed8 _printk -EXPORT_SYMBOL vmlinux 0x92a0566a filemap_range_has_page -EXPORT_SYMBOL vmlinux 0x92aa4781 twl6040_clear_bits +EXPORT_SYMBOL vmlinux 0x92a6cd2f pci_scan_bus +EXPORT_SYMBOL vmlinux 0x92a8788f dm_table_event EXPORT_SYMBOL vmlinux 0x92b9b180 slash_name -EXPORT_SYMBOL vmlinux 0x92bb6b05 devfreq_monitor_suspend -EXPORT_SYMBOL vmlinux 0x92c83cc4 vm_insert_page +EXPORT_SYMBOL vmlinux 0x92bb2f35 __skb_gro_checksum_complete EXPORT_SYMBOL vmlinux 0x92d465aa hdmi_infoframe_unpack EXPORT_SYMBOL vmlinux 0x92d5838e request_threaded_irq EXPORT_SYMBOL vmlinux 0x92dc3f16 radix_tree_iter_resume -EXPORT_SYMBOL vmlinux 0x92e597d6 skb_clone_sk -EXPORT_SYMBOL vmlinux 0x92e9300e skb_kill_datagram +EXPORT_SYMBOL vmlinux 0x92e578f7 mfd_cell_disable EXPORT_SYMBOL vmlinux 0x92ec510d jiffies64_to_msecs -EXPORT_SYMBOL vmlinux 0x92ec962f devm_extcon_register_notifier_all -EXPORT_SYMBOL vmlinux 0x92f18dfc netdev_master_upper_dev_get -EXPORT_SYMBOL vmlinux 0x92fa0c80 mdiobus_register_device +EXPORT_SYMBOL vmlinux 0x92f054bf of_find_node_opts_by_path EXPORT_SYMBOL vmlinux 0x92fa5abb vme_lm_detach -EXPORT_SYMBOL vmlinux 0x92fa8861 scsi_register_interface EXPORT_SYMBOL vmlinux 0x9305f8e6 cpufreq_get -EXPORT_SYMBOL vmlinux 0x930b90a5 vfs_mkobj -EXPORT_SYMBOL vmlinux 0x930f3d3c skb_csum_hwoffload_help +EXPORT_SYMBOL vmlinux 0x930c2e1f blk_post_runtime_resume EXPORT_SYMBOL vmlinux 0x93215e1d __kfifo_skip_r -EXPORT_SYMBOL vmlinux 0x93314527 scsi_is_sdev_device -EXPORT_SYMBOL vmlinux 0x934c9132 adjust_managed_page_count -EXPORT_SYMBOL vmlinux 0x93572fba snd_pcm_period_elapsed -EXPORT_SYMBOL vmlinux 0x93698985 xfrm_unregister_type_offload +EXPORT_SYMBOL vmlinux 0x9324af20 rfkill_alloc +EXPORT_SYMBOL vmlinux 0x9343b617 xfrm_trans_queue +EXPORT_SYMBOL vmlinux 0x935d4c17 skb_tunnel_check_pmtu +EXPORT_SYMBOL vmlinux 0x9362ad76 netlink_set_err +EXPORT_SYMBOL vmlinux 0x936a628b request_firmware_nowait EXPORT_SYMBOL vmlinux 0x93713086 sg_split EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid -EXPORT_SYMBOL vmlinux 0x937c9476 generic_copy_file_range -EXPORT_SYMBOL vmlinux 0x937cfc9c truncate_inode_pages -EXPORT_SYMBOL vmlinux 0x93954b56 empty_aops +EXPORT_SYMBOL vmlinux 0x937c2cfa vfs_clone_file_range +EXPORT_SYMBOL vmlinux 0x93a408e6 snd_ctl_boolean_stereo_info +EXPORT_SYMBOL vmlinux 0x93a4a3cb scsi_change_queue_depth EXPORT_SYMBOL vmlinux 0x93a6e0b2 io_schedule -EXPORT_SYMBOL vmlinux 0x93a77433 tcp_v4_send_check -EXPORT_SYMBOL vmlinux 0x93a9c1cb try_module_get +EXPORT_SYMBOL vmlinux 0x93adbf98 ip_route_me_harder +EXPORT_SYMBOL vmlinux 0x93b24dd4 of_mdio_find_bus EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier EXPORT_SYMBOL vmlinux 0x93bdaa1f dma_pool_free -EXPORT_SYMBOL vmlinux 0x93caf64e of_mdiobus_child_is_phy +EXPORT_SYMBOL vmlinux 0x93ccbf92 fs_param_is_blob +EXPORT_SYMBOL vmlinux 0x93d4324f inet_rtx_syn_ack EXPORT_SYMBOL vmlinux 0x93d95b3a vme_slave_set -EXPORT_SYMBOL vmlinux 0x93f00690 pps_event -EXPORT_SYMBOL vmlinux 0x94076714 ll_rw_block +EXPORT_SYMBOL vmlinux 0x93ddbc67 phy_get_eee_err +EXPORT_SYMBOL vmlinux 0x93e363c6 __bread_gfp +EXPORT_SYMBOL vmlinux 0x93e576eb param_get_ushort +EXPORT_SYMBOL vmlinux 0x93fcc82b nand_ecc_get_on_die_hw_engine +EXPORT_SYMBOL vmlinux 0x93fe1589 inet_del_offload +EXPORT_SYMBOL vmlinux 0x93ffda78 input_event +EXPORT_SYMBOL vmlinux 0x94031258 register_sound_mixer +EXPORT_SYMBOL vmlinux 0x9405216d _copy_from_iter_nocache EXPORT_SYMBOL vmlinux 0x94098ff8 snd_interval_list -EXPORT_SYMBOL vmlinux 0x941cb937 scsi_scan_target -EXPORT_SYMBOL vmlinux 0x9430d814 __skb_gro_checksum_complete -EXPORT_SYMBOL vmlinux 0x9433bf05 tcp_syn_ack_timeout +EXPORT_SYMBOL vmlinux 0x94124b43 blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0x9413ea89 mmc_wait_for_req +EXPORT_SYMBOL vmlinux 0x941433b3 request_key_rcu +EXPORT_SYMBOL vmlinux 0x941c1a66 netif_rx_ni +EXPORT_SYMBOL vmlinux 0x942080cd devm_ioremap_resource +EXPORT_SYMBOL vmlinux 0x9420dff4 key_type_keyring EXPORT_SYMBOL vmlinux 0x943dc8aa crc32_be -EXPORT_SYMBOL vmlinux 0x9446897f xsk_set_tx_need_wakeup EXPORT_SYMBOL vmlinux 0x944a564d is_console_locked -EXPORT_SYMBOL vmlinux 0x94556514 balance_dirty_pages_ratelimited -EXPORT_SYMBOL vmlinux 0x9460a8c2 ps2_cmd_aborted -EXPORT_SYMBOL vmlinux 0x9481225a __frontswap_load +EXPORT_SYMBOL vmlinux 0x945c530a fget_raw +EXPORT_SYMBOL vmlinux 0x946084cc ata_scsi_cmd_error_handler +EXPORT_SYMBOL vmlinux 0x946d2af9 ip6_dst_hoplimit EXPORT_SYMBOL vmlinux 0x9489ff36 dma_fence_signal_timestamp_locked EXPORT_SYMBOL vmlinux 0x94961283 vunmap -EXPORT_SYMBOL vmlinux 0x94a369a2 bio_reset -EXPORT_SYMBOL vmlinux 0x94af8665 pci_bus_add_devices +EXPORT_SYMBOL vmlinux 0x94a008f2 inet_dgram_connect +EXPORT_SYMBOL vmlinux 0x94b834fd elv_rb_add EXPORT_SYMBOL vmlinux 0x94bf03ca utf8_to_utf32 -EXPORT_SYMBOL vmlinux 0x94d7cc8f sock_gettstamp -EXPORT_SYMBOL vmlinux 0x94e1d2e0 snd_pcm_mmap_data -EXPORT_SYMBOL vmlinux 0x94e49460 file_ns_capable +EXPORT_SYMBOL vmlinux 0x94c9bb49 vfs_fileattr_get +EXPORT_SYMBOL vmlinux 0x94d90367 keyring_clear EXPORT_SYMBOL vmlinux 0x94e50ad4 call_fib_notifier -EXPORT_SYMBOL vmlinux 0x94e53873 reuseport_select_sock -EXPORT_SYMBOL vmlinux 0x94fa3245 neigh_lookup_nodev -EXPORT_SYMBOL vmlinux 0x95054f04 gnet_stats_start_copy -EXPORT_SYMBOL vmlinux 0x9506e88b pm860x_bulk_write +EXPORT_SYMBOL vmlinux 0x94ed876f irq_set_chip +EXPORT_SYMBOL vmlinux 0x94fdd95d rt_mutex_base_init +EXPORT_SYMBOL vmlinux 0x95019970 lookup_one_len +EXPORT_SYMBOL vmlinux 0x9507bc55 inet_addr_type_dev_table EXPORT_SYMBOL vmlinux 0x9507c90f copy_fsxattr_to_user -EXPORT_SYMBOL vmlinux 0x9509e093 devm_gen_pool_create -EXPORT_SYMBOL vmlinux 0x952af891 km_state_expired +EXPORT_SYMBOL vmlinux 0x950d646a dquot_transfer +EXPORT_SYMBOL vmlinux 0x95265b33 __traceiter_mmap_lock_acquire_returned +EXPORT_SYMBOL vmlinux 0x9527c6c8 max8998_bulk_read +EXPORT_SYMBOL vmlinux 0x952a7cfd vga_get +EXPORT_SYMBOL vmlinux 0x95359d69 dev_pm_opp_register_notifier EXPORT_SYMBOL vmlinux 0x95368d33 memcg_kmem_enabled_key -EXPORT_SYMBOL vmlinux 0x95383a4b input_alloc_absinfo EXPORT_SYMBOL vmlinux 0x954f099c idr_preload -EXPORT_SYMBOL vmlinux 0x95604dc7 is_bad_inode -EXPORT_SYMBOL vmlinux 0x957b4817 tegra_ivc_reset -EXPORT_SYMBOL vmlinux 0x959a53bf simple_rmdir -EXPORT_SYMBOL vmlinux 0x95a3a3fd tcp_poll -EXPORT_SYMBOL vmlinux 0x95b63f15 snd_pcm_release_substream -EXPORT_SYMBOL vmlinux 0x95c15edf mdio_device_free -EXPORT_SYMBOL vmlinux 0x95ca6445 backlight_device_register +EXPORT_SYMBOL vmlinux 0x956009a8 pcie_capability_write_word +EXPORT_SYMBOL vmlinux 0x95609a3b xfrm_state_register_afinfo +EXPORT_SYMBOL vmlinux 0x958573f6 snd_card_free_when_closed +EXPORT_SYMBOL vmlinux 0x958df951 phy_support_asym_pause +EXPORT_SYMBOL vmlinux 0x95958d59 elm_decode_bch_error_page +EXPORT_SYMBOL vmlinux 0x95a90ead snd_timer_open +EXPORT_SYMBOL vmlinux 0x95ad27c1 d_instantiate_new +EXPORT_SYMBOL vmlinux 0x95b4404e register_filesystem +EXPORT_SYMBOL vmlinux 0x95b4fdd4 snd_timer_pause +EXPORT_SYMBOL vmlinux 0x95c98d99 dump_skip_to EXPORT_SYMBOL vmlinux 0x95dbe078 __get_user_2 -EXPORT_SYMBOL vmlinux 0x95e2fc56 skb_flow_dissect_tunnel_info EXPORT_SYMBOL vmlinux 0x95e5ca74 __tracepoint_kmem_cache_alloc_node -EXPORT_SYMBOL vmlinux 0x95f5f24a of_graph_get_endpoint_by_regs -EXPORT_SYMBOL vmlinux 0x95f99867 ip6_frag_init -EXPORT_SYMBOL vmlinux 0x96027cb1 scsi_target_quiesce +EXPORT_SYMBOL vmlinux 0x9617339f seq_put_decimal_ll EXPORT_SYMBOL vmlinux 0x9618ede0 mutex_unlock +EXPORT_SYMBOL vmlinux 0x961d7f2e netif_schedule_queue +EXPORT_SYMBOL vmlinux 0x9621336c nf_ct_get_tuple_skb +EXPORT_SYMBOL vmlinux 0x962bb023 xfrm_state_insert EXPORT_SYMBOL vmlinux 0x962c4977 clkdev_add EXPORT_SYMBOL vmlinux 0x96573b80 __kfifo_dma_in_finish_r -EXPORT_SYMBOL vmlinux 0x965be0ad xfrm_policy_flush -EXPORT_SYMBOL vmlinux 0x966d274f pipe_unlock -EXPORT_SYMBOL vmlinux 0x966ef453 vfs_copy_file_range -EXPORT_SYMBOL vmlinux 0x96829619 dquot_mark_dquot_dirty +EXPORT_SYMBOL vmlinux 0x965dd2a5 skb_copy_datagram_iter +EXPORT_SYMBOL vmlinux 0x966b6ed1 pm860x_reg_write +EXPORT_SYMBOL vmlinux 0x966dd81f pm860x_set_bits +EXPORT_SYMBOL vmlinux 0x966e51c9 sock_release +EXPORT_SYMBOL vmlinux 0x9677fdc7 skb_clone EXPORT_SYMBOL vmlinux 0x96898769 sysfs_format_mac -EXPORT_SYMBOL vmlinux 0x968da459 fb_set_cmap -EXPORT_SYMBOL vmlinux 0x96958364 pci_scan_bus -EXPORT_SYMBOL vmlinux 0x96aaace6 inode_set_flags -EXPORT_SYMBOL vmlinux 0x96c0e22b __xfrm_state_destroy +EXPORT_SYMBOL vmlinux 0x96ab7671 mipi_dsi_turn_on_peripheral +EXPORT_SYMBOL vmlinux 0x96b71e92 __devm_request_region +EXPORT_SYMBOL vmlinux 0x96c08a66 ip_fraglist_init EXPORT_SYMBOL vmlinux 0x96c17136 fb_var_to_videomode -EXPORT_SYMBOL vmlinux 0x96c8f007 mmc_gpio_set_cd_isr EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string -EXPORT_SYMBOL vmlinux 0x96ce70f3 path_has_submounts -EXPORT_SYMBOL vmlinux 0x96e30496 of_find_node_with_property -EXPORT_SYMBOL vmlinux 0x96ed6878 noop_llseek +EXPORT_SYMBOL vmlinux 0x96d6b859 mmc_detect_change +EXPORT_SYMBOL vmlinux 0x96d8f8e0 super_setup_bdi +EXPORT_SYMBOL vmlinux 0x96eb2ee2 mmc_detect_card_removed +EXPORT_SYMBOL vmlinux 0x96ef412e vme_slave_request +EXPORT_SYMBOL vmlinux 0x96fd9d24 inet_bind +EXPORT_SYMBOL vmlinux 0x9705485d vme_slot_num +EXPORT_SYMBOL vmlinux 0x9707022b tcp_sock_set_keepintvl EXPORT_SYMBOL vmlinux 0x9709dbc5 current_work -EXPORT_SYMBOL vmlinux 0x970b720f key_invalidate +EXPORT_SYMBOL vmlinux 0x970e0554 iunique EXPORT_SYMBOL vmlinux 0x97106714 memdup_user_nul +EXPORT_SYMBOL vmlinux 0x97202a5e ll_rw_block EXPORT_SYMBOL vmlinux 0x97255bdf strlen -EXPORT_SYMBOL vmlinux 0x972700a2 posix_lock_file +EXPORT_SYMBOL vmlinux 0x97333911 blk_mq_requeue_request +EXPORT_SYMBOL vmlinux 0x974c1f54 udp_skb_destructor +EXPORT_SYMBOL vmlinux 0x975cbf79 nand_ecc_cleanup_ctx EXPORT_SYMBOL vmlinux 0x975f1f56 dma_fence_allocate_private_stub -EXPORT_SYMBOL vmlinux 0x976e3bff iov_iter_advance -EXPORT_SYMBOL vmlinux 0x97921609 __d_lookup_done EXPORT_SYMBOL vmlinux 0x97934ecf del_timer_sync +EXPORT_SYMBOL vmlinux 0x979531cf mr_mfc_seq_idx EXPORT_SYMBOL vmlinux 0x97adb487 utf8s_to_utf16s -EXPORT_SYMBOL vmlinux 0x97afdc8d rproc_add_carveout -EXPORT_SYMBOL vmlinux 0x97b34899 input_get_keycode -EXPORT_SYMBOL vmlinux 0x97b6d6ea tcf_action_check_ctrlact +EXPORT_SYMBOL vmlinux 0x97b4c419 dev_deactivate +EXPORT_SYMBOL vmlinux 0x97bc0e3b msm_pinctrl_probe EXPORT_SYMBOL vmlinux 0x97bdfa60 scsi_dev_info_remove_list -EXPORT_SYMBOL vmlinux 0x97bf2869 __ip_mc_inc_group -EXPORT_SYMBOL vmlinux 0x97c67a9f put_cmsg -EXPORT_SYMBOL vmlinux 0x97d70ff6 skb_copy_and_csum_dev -EXPORT_SYMBOL vmlinux 0x97e7c27f mntget -EXPORT_SYMBOL vmlinux 0x97f2c391 new_inode -EXPORT_SYMBOL vmlinux 0x9802494e rawnand_sw_hamming_correct -EXPORT_SYMBOL vmlinux 0x98031464 mdiobus_setup_mdiodev_from_board_info -EXPORT_SYMBOL vmlinux 0x980500d5 stop_tty -EXPORT_SYMBOL vmlinux 0x980cb22f __pskb_copy_fclone +EXPORT_SYMBOL vmlinux 0x97bf0e61 ppp_unit_number +EXPORT_SYMBOL vmlinux 0x97ce74be pci_set_power_state +EXPORT_SYMBOL vmlinux 0x97e88cb5 devm_release_resource +EXPORT_SYMBOL vmlinux 0x97eb163f ipv6_push_frag_opts +EXPORT_SYMBOL vmlinux 0x97f336e3 snd_card_file_add +EXPORT_SYMBOL vmlinux 0x97f5f8ba rproc_elf_sanity_check +EXPORT_SYMBOL vmlinux 0x980df5a1 snd_dma_buffer_mmap EXPORT_SYMBOL vmlinux 0x983171d6 kobject_get_unless_zero EXPORT_SYMBOL vmlinux 0x983ac031 remove_wait_queue -EXPORT_SYMBOL vmlinux 0x983c8555 elv_rb_former_request -EXPORT_SYMBOL vmlinux 0x9851974f dev_close +EXPORT_SYMBOL vmlinux 0x984e612a __skb_flow_dissect +EXPORT_SYMBOL vmlinux 0x9851b87a blk_mq_tagset_wait_completed_request EXPORT_SYMBOL vmlinux 0x9858f589 __tracepoint_spi_transfer_start -EXPORT_SYMBOL vmlinux 0x9864df71 mipi_dsi_turn_on_peripheral -EXPORT_SYMBOL vmlinux 0x986f593b of_match_device -EXPORT_SYMBOL vmlinux 0x98709f92 tty_name +EXPORT_SYMBOL vmlinux 0x9861ae74 devm_clk_put +EXPORT_SYMBOL vmlinux 0x9863541e blk_mq_run_hw_queues +EXPORT_SYMBOL vmlinux 0x9866cbda blk_mq_delay_run_hw_queue EXPORT_SYMBOL vmlinux 0x987c11c7 __pv_phys_pfn_offset -EXPORT_SYMBOL vmlinux 0x9881c3cc misc_deregister +EXPORT_SYMBOL vmlinux 0x987f8ab5 tcp_get_md5sig_pool EXPORT_SYMBOL vmlinux 0x98832da8 utf8ncursor -EXPORT_SYMBOL vmlinux 0x9886337f __xfrm_state_delete -EXPORT_SYMBOL vmlinux 0x98883196 input_mt_destroy_slots +EXPORT_SYMBOL vmlinux 0x988728cb devm_request_any_context_irq EXPORT_SYMBOL vmlinux 0x9891d82e ucc_slow_stop_tx -EXPORT_SYMBOL vmlinux 0x989d2dd7 sock_cmsg_send EXPORT_SYMBOL vmlinux 0x98a21b5a neigh_proc_dointvec_ms_jiffies -EXPORT_SYMBOL vmlinux 0x98a3fdd2 netif_napi_add -EXPORT_SYMBOL vmlinux 0x98ac77ce jbd2_journal_clear_features -EXPORT_SYMBOL vmlinux 0x98af222e vfs_rename -EXPORT_SYMBOL vmlinux 0x98b26f53 generic_file_direct_write -EXPORT_SYMBOL vmlinux 0x98c130e3 sound_class +EXPORT_SYMBOL vmlinux 0x98c7cc7a tcp_set_rcvlowat EXPORT_SYMBOL vmlinux 0x98c89ade security_xfrm_state_alloc -EXPORT_SYMBOL vmlinux 0x98cf99e9 devm_extcon_register_notifier -EXPORT_SYMBOL vmlinux 0x98d9e08c mmc_gpiod_request_ro -EXPORT_SYMBOL vmlinux 0x98e2708a __xfrm_decode_session EXPORT_SYMBOL vmlinux 0x98e508ef ignore_console_lock_warning -EXPORT_SYMBOL vmlinux 0x98ea3c6b iov_iter_revert -EXPORT_SYMBOL vmlinux 0x98ec8907 __skb_vlan_pop -EXPORT_SYMBOL vmlinux 0x98f25394 skb_ensure_writable -EXPORT_SYMBOL vmlinux 0x9908ab8b xfrm6_rcv_encap +EXPORT_SYMBOL vmlinux 0x98fe1308 phy_stop +EXPORT_SYMBOL vmlinux 0x990244c9 set_create_files_as EXPORT_SYMBOL vmlinux 0x99094fb2 qcom_scm_is_available -EXPORT_SYMBOL vmlinux 0x99119b84 tty_unregister_driver -EXPORT_SYMBOL vmlinux 0x99137242 inet_frag_find -EXPORT_SYMBOL vmlinux 0x9922a59a rt_mutex_base_init -EXPORT_SYMBOL vmlinux 0x9930d770 remap_pfn_range +EXPORT_SYMBOL vmlinux 0x990b9a3d setup_new_exec +EXPORT_SYMBOL vmlinux 0x9923636b dev_get_stats EXPORT_SYMBOL vmlinux 0x9931f8c9 qcom_scm_lmh_dcvsh_available -EXPORT_SYMBOL vmlinux 0x993750f1 rawnand_sw_bch_init -EXPORT_SYMBOL vmlinux 0x9938b6a1 mipi_dsi_dcs_set_tear_on -EXPORT_SYMBOL vmlinux 0x99399711 tcp_setsockopt +EXPORT_SYMBOL vmlinux 0x99376f95 phy_error EXPORT_SYMBOL vmlinux 0x9939eba0 backlight_unregister_notifier EXPORT_SYMBOL vmlinux 0x993b03df percpu_counter_add_batch EXPORT_SYMBOL vmlinux 0x9948a138 ucc_slow_disable -EXPORT_SYMBOL vmlinux 0x994bef8c register_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x99497118 inet_frag_pull_head EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable -EXPORT_SYMBOL vmlinux 0x9960554d netif_set_real_num_queues -EXPORT_SYMBOL vmlinux 0x9965c5ea sk_filter_trim_cap -EXPORT_SYMBOL vmlinux 0x9966fb8f skb_tunnel_check_pmtu +EXPORT_SYMBOL vmlinux 0x995a9f4a ww_mutex_lock +EXPORT_SYMBOL vmlinux 0x99617e9c xsk_set_tx_need_wakeup EXPORT_SYMBOL vmlinux 0x996829ea swake_up_all -EXPORT_SYMBOL vmlinux 0x996c4c2f kernel_sock_ip_overhead -EXPORT_SYMBOL vmlinux 0x9973895e netdev_notice -EXPORT_SYMBOL vmlinux 0x99907b84 rproc_report_crash -EXPORT_SYMBOL vmlinux 0x9991d002 scsicam_bios_param +EXPORT_SYMBOL vmlinux 0x9978ddf9 xfrm_register_type_offload +EXPORT_SYMBOL vmlinux 0x997dee08 dma_map_resource +EXPORT_SYMBOL vmlinux 0x999d7878 xfrm_state_update EXPORT_SYMBOL vmlinux 0x999e8297 vfree -EXPORT_SYMBOL vmlinux 0x99a4c21c inc_nlink -EXPORT_SYMBOL vmlinux 0x99a8f455 dcb_ieee_delapp -EXPORT_SYMBOL vmlinux 0x99b4c51e pci_bus_read_config_dword -EXPORT_SYMBOL vmlinux 0x99b5f3f6 elevator_alloc +EXPORT_SYMBOL vmlinux 0x99a91d97 vme_bus_error_handler EXPORT_SYMBOL vmlinux 0x99bb8806 memmove -EXPORT_SYMBOL vmlinux 0x99bd4394 snd_pcm_lib_ioctl EXPORT_SYMBOL vmlinux 0x99c95fa5 unregister_sound_special EXPORT_SYMBOL vmlinux 0x99d472b1 net_dim_get_rx_moderation -EXPORT_SYMBOL vmlinux 0x99d64db7 __traceiter_module_get +EXPORT_SYMBOL vmlinux 0x99e7c9c4 drop_super_exclusive +EXPORT_SYMBOL vmlinux 0x99ea2d68 skb_copy_header +EXPORT_SYMBOL vmlinux 0x99ebe101 get_tree_single EXPORT_SYMBOL vmlinux 0x99f9638f __napi_alloc_frag_align +EXPORT_SYMBOL vmlinux 0x99fedcf5 set_cached_acl EXPORT_SYMBOL vmlinux 0x9a0c3a18 vme_unregister_error_handler -EXPORT_SYMBOL vmlinux 0x9a0f6b24 task_work_add +EXPORT_SYMBOL vmlinux 0x9a11aa1f dcb_ieee_getapp_dscp_prio_mask_map EXPORT_SYMBOL vmlinux 0x9a12d07b sg_copy_from_buffer -EXPORT_SYMBOL vmlinux 0x9a139da6 of_get_min_tck -EXPORT_SYMBOL vmlinux 0x9a19ec50 make_flow_keys_digest +EXPORT_SYMBOL vmlinux 0x9a1b5738 kernel_getsockname EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk -EXPORT_SYMBOL vmlinux 0x9a1f3402 freeze_bdev -EXPORT_SYMBOL vmlinux 0x9a211ab6 pm860x_reg_read -EXPORT_SYMBOL vmlinux 0x9a283303 generic_permission -EXPORT_SYMBOL vmlinux 0x9a353391 single_open -EXPORT_SYMBOL vmlinux 0x9a38b7a8 vfs_create -EXPORT_SYMBOL vmlinux 0x9a414ce9 phy_disconnect -EXPORT_SYMBOL vmlinux 0x9a4a0b0d unregister_shrinker +EXPORT_SYMBOL vmlinux 0x9a35eb45 stop_tty +EXPORT_SYMBOL vmlinux 0x9a38eba1 flow_rule_match_tcp +EXPORT_SYMBOL vmlinux 0x9a4307e3 neigh_changeaddr +EXPORT_SYMBOL vmlinux 0x9a4c702e ip_route_input_noref EXPORT_SYMBOL vmlinux 0x9a583306 netlbl_bitmap_walk -EXPORT_SYMBOL vmlinux 0x9a5ffd51 security_sock_rcv_skb -EXPORT_SYMBOL vmlinux 0x9a738f9e scsi_alloc_sgtables -EXPORT_SYMBOL vmlinux 0x9a77fbd2 snd_card_new +EXPORT_SYMBOL vmlinux 0x9a6a0297 rc5t583_ext_power_req_config +EXPORT_SYMBOL vmlinux 0x9a6acfd3 vfs_create EXPORT_SYMBOL vmlinux 0x9a8318ef v7_coherent_kern_range EXPORT_SYMBOL vmlinux 0x9a89a7a3 proc_douintvec -EXPORT_SYMBOL vmlinux 0x9aa68e63 tcf_em_tree_destroy +EXPORT_SYMBOL vmlinux 0x9a904d8c bdevname +EXPORT_SYMBOL vmlinux 0x9a948859 skb_ensure_writable EXPORT_SYMBOL vmlinux 0x9aa9cea4 trace_print_flags_seq_u64 EXPORT_SYMBOL vmlinux 0x9aaeefce sysctl_nf_log_all_netns -EXPORT_SYMBOL vmlinux 0x9ab8a921 blk_mq_run_hw_queue -EXPORT_SYMBOL vmlinux 0x9ad0136a sock_common_recvmsg -EXPORT_SYMBOL vmlinux 0x9ad42324 regset_get -EXPORT_SYMBOL vmlinux 0x9ad92d65 skb_push EXPORT_SYMBOL vmlinux 0x9ae47436 _find_last_bit -EXPORT_SYMBOL vmlinux 0x9b061ded neigh_lookup -EXPORT_SYMBOL vmlinux 0x9b08922e put_fs_context -EXPORT_SYMBOL vmlinux 0x9b0d3a66 send_sig +EXPORT_SYMBOL vmlinux 0x9aeaafb9 ps2_command +EXPORT_SYMBOL vmlinux 0x9af95e17 ipv6_mc_check_mld EXPORT_SYMBOL vmlinux 0x9b128a66 qcom_scm_set_remote_state EXPORT_SYMBOL vmlinux 0x9b1b7306 xxh64 +EXPORT_SYMBOL vmlinux 0x9b1b9dcb blk_rq_map_user EXPORT_SYMBOL vmlinux 0x9b2560b9 gf128mul_init_4k_bbe EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier EXPORT_SYMBOL vmlinux 0x9b420478 utf8_strncasecmp -EXPORT_SYMBOL vmlinux 0x9b463cde __serio_register_port EXPORT_SYMBOL vmlinux 0x9b496b21 posix_acl_alloc -EXPORT_SYMBOL vmlinux 0x9b5ae3ca __sync_dirty_buffer -EXPORT_SYMBOL vmlinux 0x9b67daab nf_register_net_hook +EXPORT_SYMBOL vmlinux 0x9b584a57 scsi_eh_prep_cmnd +EXPORT_SYMBOL vmlinux 0x9b6819ca dquot_writeback_dquots EXPORT_SYMBOL vmlinux 0x9b6eb137 ksize -EXPORT_SYMBOL vmlinux 0x9b740a57 fscrypt_ioctl_set_policy -EXPORT_SYMBOL vmlinux 0x9b78a86f simple_transaction_set -EXPORT_SYMBOL vmlinux 0x9b7da7d7 __snd_pcm_lib_xfer -EXPORT_SYMBOL vmlinux 0x9b93090f snd_pcm_new -EXPORT_SYMBOL vmlinux 0x9b96024f dquot_commit -EXPORT_SYMBOL vmlinux 0x9ba5f1a5 ping_prot -EXPORT_SYMBOL vmlinux 0x9bb071f6 phy_start_cable_test_tdr +EXPORT_SYMBOL vmlinux 0x9ba45743 snd_ctl_notify +EXPORT_SYMBOL vmlinux 0x9bb40c3e udp_disconnect EXPORT_SYMBOL vmlinux 0x9bc6885d security_binder_transaction -EXPORT_SYMBOL vmlinux 0x9bcd25cd ipv6_getsockopt -EXPORT_SYMBOL vmlinux 0x9be4ee3c ptp_cancel_worker_sync -EXPORT_SYMBOL vmlinux 0x9beaec1d follow_down -EXPORT_SYMBOL vmlinux 0x9c0cfcdf scsi_scan_host -EXPORT_SYMBOL vmlinux 0x9c159b3f __ip_dev_find -EXPORT_SYMBOL vmlinux 0x9c181c3a skb_split -EXPORT_SYMBOL vmlinux 0x9c19f8f6 genphy_read_status -EXPORT_SYMBOL vmlinux 0x9c1a209d pfifo_fast_ops -EXPORT_SYMBOL vmlinux 0x9c299926 path_put -EXPORT_SYMBOL vmlinux 0x9c378a76 insert_inode_locked +EXPORT_SYMBOL vmlinux 0x9bcee866 dquot_disable +EXPORT_SYMBOL vmlinux 0x9bdc883d snd_pcm_create_iec958_consumer +EXPORT_SYMBOL vmlinux 0x9be89520 vme_register_bridge +EXPORT_SYMBOL vmlinux 0x9c070316 unlock_page_memcg +EXPORT_SYMBOL vmlinux 0x9c15f72e rproc_elf_load_segments +EXPORT_SYMBOL vmlinux 0x9c263b3f mpage_readpage +EXPORT_SYMBOL vmlinux 0x9c3506d0 jbd2_journal_blocks_per_page +EXPORT_SYMBOL vmlinux 0x9c37767d ipv6_dev_find EXPORT_SYMBOL vmlinux 0x9c65b78a csum_partial_copy_nocheck -EXPORT_SYMBOL vmlinux 0x9c7113b2 _dev_alert EXPORT_SYMBOL vmlinux 0x9c7419dc ZSTD_initDStream_usingDDict -EXPORT_SYMBOL vmlinux 0x9c8605c4 page_symlink +EXPORT_SYMBOL vmlinux 0x9c78b0bf sock_pfree +EXPORT_SYMBOL vmlinux 0x9c7be1ff gnet_stats_copy_rate_est +EXPORT_SYMBOL vmlinux 0x9c7fe54d block_read_full_page EXPORT_SYMBOL vmlinux 0x9c86b9ab fileattr_fill_flags +EXPORT_SYMBOL vmlinux 0x9c9cc03c jbd2_journal_update_sb_errno +EXPORT_SYMBOL vmlinux 0x9ca03e7a __vfs_setxattr +EXPORT_SYMBOL vmlinux 0x9ca3c734 tcp_v4_mtu_reduced +EXPORT_SYMBOL vmlinux 0x9caae5c3 sock_recvmsg EXPORT_SYMBOL vmlinux 0x9cab34a6 rfkill_set_led_trigger_name -EXPORT_SYMBOL vmlinux 0x9cad0239 unpin_user_page_range_dirty_lock -EXPORT_SYMBOL vmlinux 0x9cba2f1e flow_indr_dev_setup_offload -EXPORT_SYMBOL vmlinux 0x9cc588c3 current_in_userns -EXPORT_SYMBOL vmlinux 0x9cd968ab filemap_fault +EXPORT_SYMBOL vmlinux 0x9cb9568f inode_sub_bytes +EXPORT_SYMBOL vmlinux 0x9cbb441e __netif_napi_del +EXPORT_SYMBOL vmlinux 0x9ccd3afe seq_lseek EXPORT_SYMBOL vmlinux 0x9cdfb3f7 sysctl_fb_tunnels_only_for_init_net -EXPORT_SYMBOL vmlinux 0x9ce6dacf phy_ethtool_get_wol -EXPORT_SYMBOL vmlinux 0x9cfc6733 filemap_fdatawait_keep_errors +EXPORT_SYMBOL vmlinux 0x9cf415cf set_bdi_congested EXPORT_SYMBOL vmlinux 0x9d06ac33 free_bucket_spinlocks EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier -EXPORT_SYMBOL vmlinux 0x9d1a2af2 eth_header_parse_protocol -EXPORT_SYMBOL vmlinux 0x9d264d59 inode_nohighmem +EXPORT_SYMBOL vmlinux 0x9d15f355 set_posix_acl +EXPORT_SYMBOL vmlinux 0x9d20c5ff tcf_em_tree_validate +EXPORT_SYMBOL vmlinux 0x9d25b178 dquot_destroy EXPORT_SYMBOL vmlinux 0x9d2ab8ac __tasklet_schedule EXPORT_SYMBOL vmlinux 0x9d2e7707 unregister_sysrq_key -EXPORT_SYMBOL vmlinux 0x9d4a503f __fs_parse +EXPORT_SYMBOL vmlinux 0x9d35bbf8 migrate_page +EXPORT_SYMBOL vmlinux 0x9d3c2ee4 pci_disable_device +EXPORT_SYMBOL vmlinux 0x9d544c57 set_binfmt EXPORT_SYMBOL vmlinux 0x9d5cd559 reservation_ww_class -EXPORT_SYMBOL vmlinux 0x9d621bec tty_unregister_device +EXPORT_SYMBOL vmlinux 0x9d5edc2c filemap_flush +EXPORT_SYMBOL vmlinux 0x9d62d009 blk_queue_chunk_sectors EXPORT_SYMBOL vmlinux 0x9d669763 memcpy -EXPORT_SYMBOL vmlinux 0x9d7234ee get_tree_single_reconf +EXPORT_SYMBOL vmlinux 0x9d8a15ea bh_uptodate_or_lock EXPORT_SYMBOL vmlinux 0x9d97ab2c audit_log_object_context -EXPORT_SYMBOL vmlinux 0x9d9cfc07 phy_attach_direct -EXPORT_SYMBOL vmlinux 0x9da50e3c unregister_nexthop_notifier +EXPORT_SYMBOL vmlinux 0x9daf9522 netdev_rx_csum_fault +EXPORT_SYMBOL vmlinux 0x9dbe5765 netdev_lower_dev_get_private EXPORT_SYMBOL vmlinux 0x9dc08a71 pgprot_kernel -EXPORT_SYMBOL vmlinux 0x9dc3bbfd d_exact_alias -EXPORT_SYMBOL vmlinux 0x9dc8f139 single_release -EXPORT_SYMBOL vmlinux 0x9ddecf78 vme_irq_generate -EXPORT_SYMBOL vmlinux 0x9de4b618 pcie_get_readrq -EXPORT_SYMBOL vmlinux 0x9defdaee pci_request_region -EXPORT_SYMBOL vmlinux 0x9df1eead bdev_check_media_change -EXPORT_SYMBOL vmlinux 0x9e0939a7 vm_map_pages_zero +EXPORT_SYMBOL vmlinux 0x9dc63bdd seg6_hmac_info_add +EXPORT_SYMBOL vmlinux 0x9dcca677 pci_write_vpd +EXPORT_SYMBOL vmlinux 0x9de0d02b __alloc_pages +EXPORT_SYMBOL vmlinux 0x9de501e8 ipv6_chk_addr_and_flags +EXPORT_SYMBOL vmlinux 0x9dee23a5 jbd2_journal_flush +EXPORT_SYMBOL vmlinux 0x9df65eff simple_open EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node EXPORT_SYMBOL vmlinux 0x9e0fa5ae hsiphash_3u32 EXPORT_SYMBOL vmlinux 0x9e13f6f6 gf128mul_lle -EXPORT_SYMBOL vmlinux 0x9e1d264e dquot_reclaim_space_nodirty -EXPORT_SYMBOL vmlinux 0x9e43f48c netpoll_parse_options -EXPORT_SYMBOL vmlinux 0x9e45b5ee security_inode_listsecurity -EXPORT_SYMBOL vmlinux 0x9e461cee bio_add_page +EXPORT_SYMBOL vmlinux 0x9e153f92 blk_mq_end_request +EXPORT_SYMBOL vmlinux 0x9e239f9c dma_set_mask +EXPORT_SYMBOL vmlinux 0x9e27e38c kernel_sock_ip_overhead +EXPORT_SYMBOL vmlinux 0x9e3f9fbf configfs_register_group +EXPORT_SYMBOL vmlinux 0x9e47e152 mmc_cqe_request_done EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy -EXPORT_SYMBOL vmlinux 0x9e56dca0 update_region +EXPORT_SYMBOL vmlinux 0x9e55a58e netlbl_calipso_ops_register +EXPORT_SYMBOL vmlinux 0x9e5716b7 sk_free EXPORT_SYMBOL vmlinux 0x9e61bb05 set_freezable EXPORT_SYMBOL vmlinux 0x9e6d79f8 snd_info_get_str -EXPORT_SYMBOL vmlinux 0x9e890100 skb_unlink -EXPORT_SYMBOL vmlinux 0x9e92a229 fscrypt_free_inode -EXPORT_SYMBOL vmlinux 0x9e96bbf9 md_integrity_add_rdev +EXPORT_SYMBOL vmlinux 0x9e702d4a file_update_time EXPORT_SYMBOL vmlinux 0x9e9a9cb4 trace_print_hex_seq EXPORT_SYMBOL vmlinux 0x9e9eab95 devcgroup_check_permission +EXPORT_SYMBOL vmlinux 0x9e9f38b4 __dynamic_ibdev_dbg EXPORT_SYMBOL vmlinux 0x9e9fdd9d memunmap -EXPORT_SYMBOL vmlinux 0x9ea0e0d9 genphy_restart_aneg -EXPORT_SYMBOL vmlinux 0x9ea9bd12 __traceiter_spi_transfer_start -EXPORT_SYMBOL vmlinux 0x9eb4caf5 skb_checksum_setup +EXPORT_SYMBOL vmlinux 0x9eaeadd0 reuseport_detach_prog EXPORT_SYMBOL vmlinux 0x9ec0e639 twl6030_interrupt_unmask -EXPORT_SYMBOL vmlinux 0x9ec4bb7a blk_queue_io_min EXPORT_SYMBOL vmlinux 0x9ec6ca96 ktime_get_real_ts64 EXPORT_SYMBOL vmlinux 0x9ed978de vme_lm_set -EXPORT_SYMBOL vmlinux 0x9edc45b9 jbd2_journal_set_features -EXPORT_SYMBOL vmlinux 0x9ef469f6 phy_ethtool_get_strings -EXPORT_SYMBOL vmlinux 0x9f1423d1 mmc_detect_card_removed -EXPORT_SYMBOL vmlinux 0x9f34804f vmap -EXPORT_SYMBOL vmlinux 0x9f45e48b pskb_trim_rcsum_slow +EXPORT_SYMBOL vmlinux 0x9ee4be24 udp_lib_getsockopt +EXPORT_SYMBOL vmlinux 0x9f1930e2 skb_queue_tail EXPORT_SYMBOL vmlinux 0x9f46ced8 __sw_hweight64 -EXPORT_SYMBOL vmlinux 0x9f5067f4 skb_checksum_trimmed +EXPORT_SYMBOL vmlinux 0x9f4b2bff input_set_poll_interval EXPORT_SYMBOL vmlinux 0x9f50b770 keyring_restrict +EXPORT_SYMBOL vmlinux 0x9f52414d __xfrm_route_forward EXPORT_SYMBOL vmlinux 0x9f54ead7 gro_cells_destroy -EXPORT_SYMBOL vmlinux 0x9f588459 security_sb_remount +EXPORT_SYMBOL vmlinux 0x9f55252d rpmh_write_batch EXPORT_SYMBOL vmlinux 0x9f5ba6ad ucc_slow_graceful_stop_tx -EXPORT_SYMBOL vmlinux 0x9f709e36 ndisc_mc_map -EXPORT_SYMBOL vmlinux 0x9f790d95 devm_devfreq_remove_device +EXPORT_SYMBOL vmlinux 0x9f5dd8eb tcp_child_process +EXPORT_SYMBOL vmlinux 0x9f64d5df eth_header +EXPORT_SYMBOL vmlinux 0x9f659ec8 of_find_node_with_property EXPORT_SYMBOL vmlinux 0x9f7ae060 node_states +EXPORT_SYMBOL vmlinux 0x9f8ebe3e blk_queue_io_min +EXPORT_SYMBOL vmlinux 0x9f95d8fb freeze_super EXPORT_SYMBOL vmlinux 0x9f984513 strrchr -EXPORT_SYMBOL vmlinux 0x9fac287c devm_devfreq_register_opp_notifier -EXPORT_SYMBOL vmlinux 0x9fdace49 snd_pcm_hw_param_last +EXPORT_SYMBOL vmlinux 0x9fcf76b3 fixed_size_llseek EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many +EXPORT_SYMBOL vmlinux 0x9fdf4b7f simple_setattr EXPORT_SYMBOL vmlinux 0x9feed7ce timer_reduce -EXPORT_SYMBOL vmlinux 0x9ff914b8 snd_pcm_create_iec958_consumer +EXPORT_SYMBOL vmlinux 0x9ff0111d gro_cells_receive +EXPORT_SYMBOL vmlinux 0x9ff2c39a jbd2_journal_release_jbd_inode +EXPORT_SYMBOL vmlinux 0x9ff66a73 tcf_idr_create_from_flags EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog -EXPORT_SYMBOL vmlinux 0x9fff908b jbd2_journal_put_journal_head EXPORT_SYMBOL vmlinux 0xa0133f9a cpumask_any_and_distribute -EXPORT_SYMBOL vmlinux 0xa0146d2c bio_advance EXPORT_SYMBOL vmlinux 0xa01d3df6 font_vga_8x16 +EXPORT_SYMBOL vmlinux 0xa025b81c sg_miter_next EXPORT_SYMBOL vmlinux 0xa033d747 next_arg -EXPORT_SYMBOL vmlinux 0xa042247b of_get_nand_ecc_user_config +EXPORT_SYMBOL vmlinux 0xa036d8b4 vlan_for_each +EXPORT_SYMBOL vmlinux 0xa0399a2a bio_add_page +EXPORT_SYMBOL vmlinux 0xa0404bad d_alloc EXPORT_SYMBOL vmlinux 0xa0436e98 in6addr_linklocal_allnodes +EXPORT_SYMBOL vmlinux 0xa04900ff tcf_idr_search EXPORT_SYMBOL vmlinux 0xa04e33da qcom_scm_lmh_dcvsh -EXPORT_SYMBOL vmlinux 0xa055a5d0 vfs_dedupe_file_range_one EXPORT_SYMBOL vmlinux 0xa057df8f twl_set_regcache_bypass EXPORT_SYMBOL vmlinux 0xa05b6be2 psched_ppscfg_precompute -EXPORT_SYMBOL vmlinux 0xa05c80d2 genlmsg_put -EXPORT_SYMBOL vmlinux 0xa05e9f98 snd_pcm_lib_preallocate_pages_for_all -EXPORT_SYMBOL vmlinux 0xa06af47a add_to_pipe -EXPORT_SYMBOL vmlinux 0xa06b6f5f flow_rule_match_control +EXPORT_SYMBOL vmlinux 0xa065104b skb_abort_seq_read EXPORT_SYMBOL vmlinux 0xa06df9e1 __kfifo_dma_out_finish_r -EXPORT_SYMBOL vmlinux 0xa0720622 serial8250_register_8250_port -EXPORT_SYMBOL vmlinux 0xa076a94e rproc_coredump_using_sections EXPORT_SYMBOL vmlinux 0xa07d1b3c tasklet_setup EXPORT_SYMBOL vmlinux 0xa084749a __bitmap_or -EXPORT_SYMBOL vmlinux 0xa084ef78 scsi_device_quiesce +EXPORT_SYMBOL vmlinux 0xa0863250 mini_qdisc_pair_init EXPORT_SYMBOL vmlinux 0xa095e02e generic_check_addressable -EXPORT_SYMBOL vmlinux 0xa096dc43 snd_pcm_lib_preallocate_free_for_all -EXPORT_SYMBOL vmlinux 0xa0971609 mr_rtm_dumproute -EXPORT_SYMBOL vmlinux 0xa09a55e1 input_mt_assign_slots 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 0xa0d2eb45 xsk_clear_tx_need_wakeup -EXPORT_SYMBOL vmlinux 0xa0d75edd sock_wfree +EXPORT_SYMBOL vmlinux 0xa0ce1340 netdev_upper_dev_unlink EXPORT_SYMBOL vmlinux 0xa0d87339 qdisc_get_rtab EXPORT_SYMBOL vmlinux 0xa0dad88e netdev_adjacent_get_private -EXPORT_SYMBOL vmlinux 0xa0e2d299 dst_cow_metrics_generic 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 0xa0f14702 napi_disable EXPORT_SYMBOL vmlinux 0xa0fbac79 wake_up_bit EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max -EXPORT_SYMBOL vmlinux 0xa131d6b0 register_sound_special_device +EXPORT_SYMBOL vmlinux 0xa1186f73 mr_mfc_find_any_parent +EXPORT_SYMBOL vmlinux 0xa11934f2 netif_receive_skb +EXPORT_SYMBOL vmlinux 0xa1228e3d input_mt_init_slots +EXPORT_SYMBOL vmlinux 0xa14fb849 inode_add_bytes +EXPORT_SYMBOL vmlinux 0xa150b25a end_buffer_write_sync +EXPORT_SYMBOL vmlinux 0xa154e0c7 generic_update_time +EXPORT_SYMBOL vmlinux 0xa15b7ba6 proc_mkdir +EXPORT_SYMBOL vmlinux 0xa15c5de2 dst_discard_out EXPORT_SYMBOL vmlinux 0xa15d0131 cancel_delayed_work +EXPORT_SYMBOL vmlinux 0xa1646b7f dmaengine_get_unmap_data +EXPORT_SYMBOL vmlinux 0xa16853dc dentry_open EXPORT_SYMBOL vmlinux 0xa16b21fb wait_for_completion_timeout +EXPORT_SYMBOL vmlinux 0xa16eb5e1 __devm_mdiobus_register +EXPORT_SYMBOL vmlinux 0xa16f58ae serio_interrupt +EXPORT_SYMBOL vmlinux 0xa17682c4 __invalidate_device +EXPORT_SYMBOL vmlinux 0xa1795773 find_get_pages_range_tag EXPORT_SYMBOL vmlinux 0xa17bd3fc add_wait_queue -EXPORT_SYMBOL vmlinux 0xa19415f6 generic_fadvise -EXPORT_SYMBOL vmlinux 0xa1a69fd8 lock_page_memcg -EXPORT_SYMBOL vmlinux 0xa1a7870c register_mtd_chip_driver +EXPORT_SYMBOL vmlinux 0xa1975854 unlock_buffer +EXPORT_SYMBOL vmlinux 0xa1a7cc37 phy_queue_state_machine EXPORT_SYMBOL vmlinux 0xa1bacd91 qcom_scm_set_cold_boot_addr -EXPORT_SYMBOL vmlinux 0xa1c731d7 __mmap_lock_do_trace_released -EXPORT_SYMBOL vmlinux 0xa1c7e5d1 netlink_broadcast_filtered +EXPORT_SYMBOL vmlinux 0xa1c28dba rpmh_invalidate +EXPORT_SYMBOL vmlinux 0xa1d070c9 pci_write_config_byte EXPORT_SYMBOL vmlinux 0xa1d131ed vmemdup_user -EXPORT_SYMBOL vmlinux 0xa1e74fb9 mini_qdisc_pair_swap -EXPORT_SYMBOL vmlinux 0xa1fa2e72 snd_pcm_hw_constraint_ranges -EXPORT_SYMBOL vmlinux 0xa1fc7822 kmem_cache_alloc_trace +EXPORT_SYMBOL vmlinux 0xa1dce37d kmap_high +EXPORT_SYMBOL vmlinux 0xa2057b89 dcb_setapp EXPORT_SYMBOL vmlinux 0xa2060911 inet_current_timestamp -EXPORT_SYMBOL vmlinux 0xa20f9baa page_symlink_inode_operations -EXPORT_SYMBOL vmlinux 0xa213c777 sg_miter_stop -EXPORT_SYMBOL vmlinux 0xa21574ff tcf_classify -EXPORT_SYMBOL vmlinux 0xa21f5c2e pci_disable_link_state +EXPORT_SYMBOL vmlinux 0xa21b2906 __netlink_dump_start EXPORT_SYMBOL vmlinux 0xa23ffc04 groups_sort -EXPORT_SYMBOL vmlinux 0xa2413d64 rproc_alloc EXPORT_SYMBOL vmlinux 0xa24491bf ida_free EXPORT_SYMBOL vmlinux 0xa24f23d8 __request_module EXPORT_SYMBOL vmlinux 0xa25b90ab utf8byte +EXPORT_SYMBOL vmlinux 0xa26016b2 _copy_to_iter EXPORT_SYMBOL vmlinux 0xa263892b fscrypt_fname_free_buffer -EXPORT_SYMBOL vmlinux 0xa27e7dcf __neigh_set_probe_once -EXPORT_SYMBOL vmlinux 0xa2856bae insert_inode_locked4 +EXPORT_SYMBOL vmlinux 0xa2720f15 __dquot_transfer +EXPORT_SYMBOL vmlinux 0xa2805a78 pci_request_selected_regions +EXPORT_SYMBOL vmlinux 0xa2877de4 key_instantiate_and_link EXPORT_SYMBOL vmlinux 0xa28cfcc0 gen_estimator_active -EXPORT_SYMBOL vmlinux 0xa28f2c7a blk_mq_end_request -EXPORT_SYMBOL vmlinux 0xa29eb394 elv_rb_latter_request -EXPORT_SYMBOL vmlinux 0xa2a354f0 pm860x_bulk_read -EXPORT_SYMBOL vmlinux 0xa2c5110d __neigh_for_each_release +EXPORT_SYMBOL vmlinux 0xa29fc342 cdrom_number_of_slots +EXPORT_SYMBOL vmlinux 0xa2d7c308 vfs_unlink EXPORT_SYMBOL vmlinux 0xa2d7ec8d __SCK__tp_func_kmem_cache_free -EXPORT_SYMBOL vmlinux 0xa2f811b7 bio_init -EXPORT_SYMBOL vmlinux 0xa2fc8a04 mmc_is_req_done -EXPORT_SYMBOL vmlinux 0xa2fe3cb9 mdio_device_create -EXPORT_SYMBOL vmlinux 0xa302883e dma_unmap_sg_attrs -EXPORT_SYMBOL vmlinux 0xa30adcff sock_kzfree_s -EXPORT_SYMBOL vmlinux 0xa32a0e6b mipi_dsi_dcs_get_power_mode -EXPORT_SYMBOL vmlinux 0xa32df3a5 mmc_get_card -EXPORT_SYMBOL vmlinux 0xa332fe4c ps2_handle_ack -EXPORT_SYMBOL vmlinux 0xa3425320 dquot_alloc_inode -EXPORT_SYMBOL vmlinux 0xa3451883 flow_rule_match_basic -EXPORT_SYMBOL vmlinux 0xa345e2c8 nand_monolithic_read_page_raw -EXPORT_SYMBOL vmlinux 0xa3561b52 snd_timer_open -EXPORT_SYMBOL vmlinux 0xa3572587 tcp_mmap -EXPORT_SYMBOL vmlinux 0xa35d17b5 phy_set_sym_pause -EXPORT_SYMBOL vmlinux 0xa3716647 fs_param_is_fd -EXPORT_SYMBOL vmlinux 0xa376d560 __cgroup_bpf_run_filter_skb -EXPORT_SYMBOL vmlinux 0xa3799a68 xfrm_policy_byid +EXPORT_SYMBOL vmlinux 0xa2dda922 iov_iter_kvec +EXPORT_SYMBOL vmlinux 0xa2ee5d6c xfrm_policy_insert +EXPORT_SYMBOL vmlinux 0xa2fae0a3 dput +EXPORT_SYMBOL vmlinux 0xa30c175c ip_options_compile +EXPORT_SYMBOL vmlinux 0xa317241e ppp_register_compressor +EXPORT_SYMBOL vmlinux 0xa33e25fc rproc_add +EXPORT_SYMBOL vmlinux 0xa34112e4 scsi_eh_finish_cmd +EXPORT_SYMBOL vmlinux 0xa3468034 pci_enable_wake +EXPORT_SYMBOL vmlinux 0xa354b378 component_match_add_typed +EXPORT_SYMBOL vmlinux 0xa36e127f arm_dma_ops +EXPORT_SYMBOL vmlinux 0xa37aa923 mipi_dsi_dcs_set_tear_on EXPORT_SYMBOL vmlinux 0xa38878f8 pci_unmap_iospace -EXPORT_SYMBOL vmlinux 0xa394d2c6 kmem_cache_shrink -EXPORT_SYMBOL vmlinux 0xa39f3b3b io_uring_get_socket +EXPORT_SYMBOL vmlinux 0xa3918ebf pm8606_osc_disable +EXPORT_SYMBOL vmlinux 0xa39756a2 snd_sgbuf_get_addr +EXPORT_SYMBOL vmlinux 0xa3a3afbf dma_async_device_register EXPORT_SYMBOL vmlinux 0xa3a54979 init_on_free -EXPORT_SYMBOL vmlinux 0xa3a6f60b dst_alloc EXPORT_SYMBOL vmlinux 0xa3ac158f sg_alloc_table -EXPORT_SYMBOL vmlinux 0xa3ad0742 phy_print_status -EXPORT_SYMBOL vmlinux 0xa3ae4c1b ps2_init EXPORT_SYMBOL vmlinux 0xa3b6e1b7 omap_vrfb_max_height -EXPORT_SYMBOL vmlinux 0xa3ba5663 sock_set_rcvbuf EXPORT_SYMBOL vmlinux 0xa3be8342 __ubsan_handle_type_mismatch EXPORT_SYMBOL vmlinux 0xa3c00c06 memcg_sockets_enabled_key -EXPORT_SYMBOL vmlinux 0xa3c02e0b sock_alloc_send_pskb -EXPORT_SYMBOL vmlinux 0xa3c1b6c3 security_dentry_create_files_as -EXPORT_SYMBOL vmlinux 0xa3fad42c __inet_hash EXPORT_SYMBOL vmlinux 0xa3fb735a blk_set_default_limits EXPORT_SYMBOL vmlinux 0xa3fea172 sha224_final -EXPORT_SYMBOL vmlinux 0xa40cb091 security_sb_clone_mnt_opts -EXPORT_SYMBOL vmlinux 0xa40e0a37 tcp_sync_mss -EXPORT_SYMBOL vmlinux 0xa40f158c crypto_sha512_finup -EXPORT_SYMBOL vmlinux 0xa418971c simple_dentry_operations -EXPORT_SYMBOL vmlinux 0xa432a4c9 tcf_get_next_proto +EXPORT_SYMBOL vmlinux 0xa403f6cf jbd2_journal_start +EXPORT_SYMBOL vmlinux 0xa420e9ec d_invalidate +EXPORT_SYMBOL vmlinux 0xa422f074 devfreq_recommended_opp +EXPORT_SYMBOL vmlinux 0xa426d9bb tcp_md5_do_del +EXPORT_SYMBOL vmlinux 0xa432859f cros_ec_prepare_tx EXPORT_SYMBOL vmlinux 0xa43799a8 rfs_needed +EXPORT_SYMBOL vmlinux 0xa438ddbb generic_file_write_iter EXPORT_SYMBOL vmlinux 0xa448c653 qcom_scm_ice_set_key EXPORT_SYMBOL vmlinux 0xa4552208 init_on_alloc +EXPORT_SYMBOL vmlinux 0xa45cc7c9 misc_register EXPORT_SYMBOL vmlinux 0xa4610bc6 omap_rev -EXPORT_SYMBOL vmlinux 0xa482bf28 __napi_schedule -EXPORT_SYMBOL vmlinux 0xa4911954 migrate_page_copy +EXPORT_SYMBOL vmlinux 0xa496cb17 xfrm_policy_hash_rebuild +EXPORT_SYMBOL vmlinux 0xa49f2837 mipi_dsi_device_register_full +EXPORT_SYMBOL vmlinux 0xa4a3778e scsi_set_medium_removal +EXPORT_SYMBOL vmlinux 0xa4a3fd51 release_sock EXPORT_SYMBOL vmlinux 0xa4b42c55 omap_set_dma_priority EXPORT_SYMBOL vmlinux 0xa4b7f2cc sync_file_get_fence -EXPORT_SYMBOL vmlinux 0xa4bbe375 blk_mq_start_request -EXPORT_SYMBOL vmlinux 0xa4cae21e touch_atime -EXPORT_SYMBOL vmlinux 0xa4d8159b tty_port_block_til_ready -EXPORT_SYMBOL vmlinux 0xa4e29930 devm_input_allocate_device +EXPORT_SYMBOL vmlinux 0xa4bc23d5 key_link +EXPORT_SYMBOL vmlinux 0xa4e1df58 amba_device_unregister +EXPORT_SYMBOL vmlinux 0xa4e372eb rproc_set_firmware +EXPORT_SYMBOL vmlinux 0xa4efc968 cdev_device_add +EXPORT_SYMBOL vmlinux 0xa4f6c153 snd_card_set_id +EXPORT_SYMBOL vmlinux 0xa4f827bc xfrm4_rcv_encap EXPORT_SYMBOL vmlinux 0xa4fca045 qcom_scm_ocmem_lock +EXPORT_SYMBOL vmlinux 0xa506ce86 d_set_fallthru EXPORT_SYMBOL vmlinux 0xa50a3da7 _find_next_bit -EXPORT_SYMBOL vmlinux 0xa513b75b of_get_cpu_node -EXPORT_SYMBOL vmlinux 0xa52aca84 devfreq_add_device -EXPORT_SYMBOL vmlinux 0xa52b25d5 dm_put_device -EXPORT_SYMBOL vmlinux 0xa52d1280 xattr_full_name -EXPORT_SYMBOL vmlinux 0xa5435a6d _dev_emerg -EXPORT_SYMBOL vmlinux 0xa54e868b fbcon_update_vcs +EXPORT_SYMBOL vmlinux 0xa5116504 __wait_on_buffer +EXPORT_SYMBOL vmlinux 0xa51e637c dev_driver_string +EXPORT_SYMBOL vmlinux 0xa5350406 __cgroup_bpf_run_filter_sk EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color -EXPORT_SYMBOL vmlinux 0xa5578951 nf_reinject -EXPORT_SYMBOL vmlinux 0xa5608139 dma_resv_copy_fences -EXPORT_SYMBOL vmlinux 0xa56251ab sk_ns_capable +EXPORT_SYMBOL vmlinux 0xa559fead pps_lookup_dev +EXPORT_SYMBOL vmlinux 0xa55fc9e5 phy_attach +EXPORT_SYMBOL vmlinux 0xa5670251 blackhole_netdev EXPORT_SYMBOL vmlinux 0xa5684076 ida_alloc_range EXPORT_SYMBOL vmlinux 0xa56fde1c __genradix_iter_peek -EXPORT_SYMBOL vmlinux 0xa579e71e ps2_command -EXPORT_SYMBOL vmlinux 0xa5926682 flow_rule_match_eth_addrs -EXPORT_SYMBOL vmlinux 0xa5928257 tcf_block_put_ext -EXPORT_SYMBOL vmlinux 0xa594f075 vfs_iter_read -EXPORT_SYMBOL vmlinux 0xa595c9bf unregister_netdevice_notifier_dev_net -EXPORT_SYMBOL vmlinux 0xa59f2815 cont_write_begin +EXPORT_SYMBOL vmlinux 0xa5709eac ata_link_printk +EXPORT_SYMBOL vmlinux 0xa587f658 sock_edemux +EXPORT_SYMBOL vmlinux 0xa58b077f skb_vlan_untag +EXPORT_SYMBOL vmlinux 0xa5922fa1 sock_set_sndtimeo +EXPORT_SYMBOL vmlinux 0xa5994431 ps2_sendbyte EXPORT_SYMBOL vmlinux 0xa5a91711 _raw_write_lock_bh EXPORT_SYMBOL vmlinux 0xa5aafa78 load_nls_default -EXPORT_SYMBOL vmlinux 0xa5d4d91e sock_no_listen -EXPORT_SYMBOL vmlinux 0xa5dd9431 vmf_insert_mixed_prot -EXPORT_SYMBOL vmlinux 0xa5f50498 kmem_cache_create -EXPORT_SYMBOL vmlinux 0xa5fbbff2 dquot_release -EXPORT_SYMBOL vmlinux 0xa5fed186 sk_stream_wait_connect +EXPORT_SYMBOL vmlinux 0xa5bcb71b phy_ethtool_set_link_ksettings +EXPORT_SYMBOL vmlinux 0xa5d19240 skb_prepare_seq_read +EXPORT_SYMBOL vmlinux 0xa5f2924a netdev_err +EXPORT_SYMBOL vmlinux 0xa5f919c6 __register_chrdev +EXPORT_SYMBOL vmlinux 0xa6016d52 tcp_sock_set_syncnt +EXPORT_SYMBOL vmlinux 0xa6187a87 jbd2_journal_invalidatepage EXPORT_SYMBOL vmlinux 0xa61aa028 snd_pcm_format_unsigned EXPORT_SYMBOL vmlinux 0xa61ced89 qdisc_put_rtab -EXPORT_SYMBOL vmlinux 0xa6213ec7 pci_enable_msi -EXPORT_SYMBOL vmlinux 0xa62f8b5a dquot_acquire -EXPORT_SYMBOL vmlinux 0xa6327128 inet_frag_reasm_prepare -EXPORT_SYMBOL vmlinux 0xa6421937 tegra_ivc_write_get_next_frame -EXPORT_SYMBOL vmlinux 0xa646ad07 napi_get_frags +EXPORT_SYMBOL vmlinux 0xa6369be5 rawnand_sw_hamming_init EXPORT_SYMBOL vmlinux 0xa648e561 __ubsan_handle_shift_out_of_bounds -EXPORT_SYMBOL vmlinux 0xa68037d0 netdev_lower_dev_get_private +EXPORT_SYMBOL vmlinux 0xa64c4c5c kern_path +EXPORT_SYMBOL vmlinux 0xa6509a5e device_get_mac_address +EXPORT_SYMBOL vmlinux 0xa651ca9b dev_remove_offload EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid EXPORT_SYMBOL vmlinux 0xa68613dd get_jiffies_64 -EXPORT_SYMBOL vmlinux 0xa694c62f __page_frag_cache_drain -EXPORT_SYMBOL vmlinux 0xa695d6bf snd_compr_malloc_pages EXPORT_SYMBOL vmlinux 0xa6970398 __kfifo_to_user_r -EXPORT_SYMBOL vmlinux 0xa69b941f sock_set_reuseport EXPORT_SYMBOL vmlinux 0xa69d151c _raw_write_lock EXPORT_SYMBOL vmlinux 0xa6a1122f __kfifo_dma_in_prepare EXPORT_SYMBOL vmlinux 0xa6a393be posix_acl_valid -EXPORT_SYMBOL vmlinux 0xa6a67595 free_netdev EXPORT_SYMBOL vmlinux 0xa6a7a2ad div_s64_rem -EXPORT_SYMBOL vmlinux 0xa6d37c9d xfrm_unregister_type -EXPORT_SYMBOL vmlinux 0xa6ddf25b tcp_enter_quickack_mode -EXPORT_SYMBOL vmlinux 0xa6e44547 tcp_sock_set_user_timeout -EXPORT_SYMBOL vmlinux 0xa6e83129 clear_inode +EXPORT_SYMBOL vmlinux 0xa6ae410b phy_modify_paged +EXPORT_SYMBOL vmlinux 0xa6af0030 jbd2_journal_get_create_access +EXPORT_SYMBOL vmlinux 0xa6f321a1 tty_port_carrier_raised +EXPORT_SYMBOL vmlinux 0xa6f5c2b0 get_user_pages_remote +EXPORT_SYMBOL vmlinux 0xa6f993d5 vme_unregister_driver +EXPORT_SYMBOL vmlinux 0xa7021cd5 framebuffer_alloc EXPORT_SYMBOL vmlinux 0xa70bc96d qcom_scm_restore_sec_cfg_available EXPORT_SYMBOL vmlinux 0xa70fb761 flow_keys_basic_dissector +EXPORT_SYMBOL vmlinux 0xa7114b4b seq_escape_mem EXPORT_SYMBOL vmlinux 0xa72957cc __dynamic_pr_debug EXPORT_SYMBOL vmlinux 0xa72c5b95 gen_pool_dma_zalloc_algo +EXPORT_SYMBOL vmlinux 0xa72d34e5 neigh_table_init EXPORT_SYMBOL vmlinux 0xa73ee62b _atomic_dec_and_lock EXPORT_SYMBOL vmlinux 0xa74c9877 refcount_dec_and_rtnl_lock -EXPORT_SYMBOL vmlinux 0xa763803d user_path_at_empty -EXPORT_SYMBOL vmlinux 0xa769c0dc __scsi_iterate_devices +EXPORT_SYMBOL vmlinux 0xa7521fe8 fs_param_is_u64 +EXPORT_SYMBOL vmlinux 0xa76bd5d2 reuseport_alloc EXPORT_SYMBOL vmlinux 0xa77702e3 config_group_init EXPORT_SYMBOL vmlinux 0xa77bfd29 register_inet6addr_validator_notifier -EXPORT_SYMBOL vmlinux 0xa784e5d2 generic_file_read_iter -EXPORT_SYMBOL vmlinux 0xa789e7d1 nand_ecc_sw_bch_get_engine -EXPORT_SYMBOL vmlinux 0xa78a8df6 register_fib_notifier -EXPORT_SYMBOL vmlinux 0xa79757be inet_rcv_saddr_equal -EXPORT_SYMBOL vmlinux 0xa79e54aa mr_mfc_seq_next +EXPORT_SYMBOL vmlinux 0xa786c410 dcache_dir_open +EXPORT_SYMBOL vmlinux 0xa79485c6 bio_add_pc_page +EXPORT_SYMBOL vmlinux 0xa79ab6f4 input_inject_event +EXPORT_SYMBOL vmlinux 0xa79e7e2d phy_ethtool_get_sset_count +EXPORT_SYMBOL vmlinux 0xa79ffd43 register_netdevice_notifier_net EXPORT_SYMBOL vmlinux 0xa7b3181c up_read -EXPORT_SYMBOL vmlinux 0xa7cee8b7 xfrm_spd_getinfo -EXPORT_SYMBOL vmlinux 0xa7d2844a snd_pcm_lib_free_vmalloc_buffer +EXPORT_SYMBOL vmlinux 0xa7bd2a04 kill_anon_super +EXPORT_SYMBOL vmlinux 0xa7c3a291 flow_rule_match_meta +EXPORT_SYMBOL vmlinux 0xa7d76325 of_node_put +EXPORT_SYMBOL vmlinux 0xa7e93115 genphy_resume EXPORT_SYMBOL vmlinux 0xa7eedcc4 call_usermodehelper -EXPORT_SYMBOL vmlinux 0xa8037110 rproc_set_firmware -EXPORT_SYMBOL vmlinux 0xa80a3194 sk_stop_timer +EXPORT_SYMBOL vmlinux 0xa7f80820 sock_no_sendmsg_locked +EXPORT_SYMBOL vmlinux 0xa80927cc qdisc_hash_add EXPORT_SYMBOL vmlinux 0xa80acb56 lockref_mark_dead -EXPORT_SYMBOL vmlinux 0xa80db830 security_inode_notifysecctx -EXPORT_SYMBOL vmlinux 0xa811f7d8 ip_cmsg_recv_offset -EXPORT_SYMBOL vmlinux 0xa81c068d locks_remove_posix -EXPORT_SYMBOL vmlinux 0xa821a179 generic_pipe_buf_get -EXPORT_SYMBOL vmlinux 0xa8232553 neigh_sysctl_unregister +EXPORT_SYMBOL vmlinux 0xa80d4058 pci_bus_read_config_byte +EXPORT_SYMBOL vmlinux 0xa81e0caf tegra_ivc_write_advance +EXPORT_SYMBOL vmlinux 0xa832f53b rtnl_configure_link EXPORT_SYMBOL vmlinux 0xa843805a get_unused_fd_flags -EXPORT_SYMBOL vmlinux 0xa849f0cc pci_bus_type +EXPORT_SYMBOL vmlinux 0xa844b9a0 snd_ctl_new1 EXPORT_SYMBOL vmlinux 0xa84ce9e0 crypto_aes_inv_sbox -EXPORT_SYMBOL vmlinux 0xa85882d2 __pci_register_driver -EXPORT_SYMBOL vmlinux 0xa860f195 rproc_coredump_add_custom_segment -EXPORT_SYMBOL vmlinux 0xa8613ce1 __seq_open_private -EXPORT_SYMBOL vmlinux 0xa8756632 kunmap_high -EXPORT_SYMBOL vmlinux 0xa87ecdc1 ipv6_chk_addr_and_flags -EXPORT_SYMBOL vmlinux 0xa8828b54 mfd_remove_devices_late -EXPORT_SYMBOL vmlinux 0xa884bb9b param_ops_int +EXPORT_SYMBOL vmlinux 0xa84fb67f file_check_and_advance_wb_err +EXPORT_SYMBOL vmlinux 0xa8535e8a gnet_stats_start_copy_compat +EXPORT_SYMBOL vmlinux 0xa85bb01b serial8250_set_isa_configurator +EXPORT_SYMBOL vmlinux 0xa867a7c8 snd_dma_alloc_pages_fallback +EXPORT_SYMBOL vmlinux 0xa874aa9a md_bitmap_free +EXPORT_SYMBOL vmlinux 0xa8776e58 locks_delete_block +EXPORT_SYMBOL vmlinux 0xa87c3d21 pci_enable_msi +EXPORT_SYMBOL vmlinux 0xa87df920 grab_cache_page_write_begin +EXPORT_SYMBOL vmlinux 0xa8836074 simple_write_begin +EXPORT_SYMBOL vmlinux 0xa883aa42 pm8606_osc_enable +EXPORT_SYMBOL vmlinux 0xa8971b30 sock_dequeue_err_skb EXPORT_SYMBOL vmlinux 0xa89a1cf1 ipmi_dmi_get_slave_addr EXPORT_SYMBOL vmlinux 0xa8a08caf trace_print_array_seq +EXPORT_SYMBOL vmlinux 0xa8a1d91f inet_add_offload +EXPORT_SYMBOL vmlinux 0xa8a2d46b mipi_dsi_detach EXPORT_SYMBOL vmlinux 0xa8a8110c kernel_neon_end -EXPORT_SYMBOL vmlinux 0xa8b36389 generic_setlease -EXPORT_SYMBOL vmlinux 0xa8b5a93f xp_can_alloc +EXPORT_SYMBOL vmlinux 0xa8ada4d1 mem_map +EXPORT_SYMBOL vmlinux 0xa8b5c9af sock_no_sendpage_locked +EXPORT_SYMBOL vmlinux 0xa8c34bbc __mark_inode_dirty EXPORT_SYMBOL vmlinux 0xa8caa845 clk_bulk_put_all -EXPORT_SYMBOL vmlinux 0xa8d03c2c dqget +EXPORT_SYMBOL vmlinux 0xa8d9e567 writeback_inodes_sb EXPORT_SYMBOL vmlinux 0xa8ec7d34 crc_ccitt EXPORT_SYMBOL vmlinux 0xa8ee65c1 omap_vrfb_adjust_size -EXPORT_SYMBOL vmlinux 0xa8f0cabe tcp_seq_next EXPORT_SYMBOL vmlinux 0xa8f6c843 ip_frag_ecn_table EXPORT_SYMBOL vmlinux 0xa8f7f280 idr_get_next_ul -EXPORT_SYMBOL vmlinux 0xa901c504 generic_write_end -EXPORT_SYMBOL vmlinux 0xa904fb39 dma_async_device_unregister -EXPORT_SYMBOL vmlinux 0xa9117481 __generic_file_fsync -EXPORT_SYMBOL vmlinux 0xa915a1c0 xfrm4_protocol_register -EXPORT_SYMBOL vmlinux 0xa921a5c6 xfrm_policy_unregister_afinfo -EXPORT_SYMBOL vmlinux 0xa927d2cd pcibios_fixup_bus -EXPORT_SYMBOL vmlinux 0xa9339b6a rproc_elf_find_loaded_rsc_table -EXPORT_SYMBOL vmlinux 0xa934bc4b flow_get_u32_dst -EXPORT_SYMBOL vmlinux 0xa93f9f9f flow_rule_match_ipv6_addrs -EXPORT_SYMBOL vmlinux 0xa940b4c3 xfrm_trans_queue_net -EXPORT_SYMBOL vmlinux 0xa958521f truncate_setsize -EXPORT_SYMBOL vmlinux 0xa95e6967 pcie_get_width_cap -EXPORT_SYMBOL vmlinux 0xa95fabbc fb_set_var +EXPORT_SYMBOL vmlinux 0xa901309e md_bitmap_sync_with_cluster +EXPORT_SYMBOL vmlinux 0xa93daea1 phy_register_fixup_for_id +EXPORT_SYMBOL vmlinux 0xa947dc76 security_path_rename +EXPORT_SYMBOL vmlinux 0xa9559172 mntget EXPORT_SYMBOL vmlinux 0xa964dd13 gpmc_cs_request EXPORT_SYMBOL vmlinux 0xa965ca81 reciprocal_value EXPORT_SYMBOL vmlinux 0xa976957d bitmap_remap -EXPORT_SYMBOL vmlinux 0xa981c681 pcix_get_mmrbc -EXPORT_SYMBOL vmlinux 0xa996a8cf scsi_device_lookup -EXPORT_SYMBOL vmlinux 0xa99a459b thaw_super -EXPORT_SYMBOL vmlinux 0xa9a26f34 pcie_port_service_unregister +EXPORT_SYMBOL vmlinux 0xa9814f57 free_netdev +EXPORT_SYMBOL vmlinux 0xa99b4de0 nand_ecc_sw_bch_correct +EXPORT_SYMBOL vmlinux 0xa99d1959 scsi_remove_device EXPORT_SYMBOL vmlinux 0xa9a7432f qcom_scm_pas_mem_setup -EXPORT_SYMBOL vmlinux 0xa9ba9f21 netpoll_print_options -EXPORT_SYMBOL vmlinux 0xa9cc70b7 do_SAK -EXPORT_SYMBOL vmlinux 0xa9dc5ebe bio_copy_data_iter -EXPORT_SYMBOL vmlinux 0xa9e0a367 con_is_bound -EXPORT_SYMBOL vmlinux 0xa9e1ac67 skb_copy_and_csum_datagram_msg -EXPORT_SYMBOL vmlinux 0xa9e71527 inet_offloads +EXPORT_SYMBOL vmlinux 0xa9ac7f94 jbd2_journal_restart +EXPORT_SYMBOL vmlinux 0xa9b0b5e8 __cleancache_put_page +EXPORT_SYMBOL vmlinux 0xa9b6b9e6 ip_sock_set_pktinfo +EXPORT_SYMBOL vmlinux 0xa9bc0964 bmap +EXPORT_SYMBOL vmlinux 0xa9c814ac devfreq_update_interval +EXPORT_SYMBOL vmlinux 0xa9c88577 xp_raw_get_data +EXPORT_SYMBOL vmlinux 0xa9c924d3 dev_get_flags +EXPORT_SYMBOL vmlinux 0xa9e36e4e vlan_vids_add_by_dev +EXPORT_SYMBOL vmlinux 0xa9ec26c8 jbd2_journal_check_used_features EXPORT_SYMBOL vmlinux 0xa9ed62d2 tegra_fuse_readl -EXPORT_SYMBOL vmlinux 0xa9ef7038 tcf_em_tree_dump -EXPORT_SYMBOL vmlinux 0xaa0b2ca3 pci_remove_bus -EXPORT_SYMBOL vmlinux 0xaa19658b nand_ecc_prepare_io_req EXPORT_SYMBOL vmlinux 0xaa19e4aa _kstrtol EXPORT_SYMBOL vmlinux 0xaa42e16a gen_pool_has_addr -EXPORT_SYMBOL vmlinux 0xaa46a754 snd_device_register -EXPORT_SYMBOL vmlinux 0xaa54a28d block_write_begin -EXPORT_SYMBOL vmlinux 0xaa585a90 __phy_write_mmd -EXPORT_SYMBOL vmlinux 0xaa63a744 con_copy_unimap -EXPORT_SYMBOL vmlinux 0xaa6592f0 mipi_dsi_host_unregister +EXPORT_SYMBOL vmlinux 0xaa478aa4 vlan_dev_vlan_proto +EXPORT_SYMBOL vmlinux 0xaa5a18e0 clear_page_dirty_for_io +EXPORT_SYMBOL vmlinux 0xaa686240 register_nexthop_notifier EXPORT_SYMBOL vmlinux 0xaa6901ac __kfifo_out_r +EXPORT_SYMBOL vmlinux 0xaa6a3878 fs_param_is_blockdev EXPORT_SYMBOL vmlinux 0xaa6f23ad rfkill_get_led_trigger_name -EXPORT_SYMBOL vmlinux 0xaa72bdff dev_pick_tx_cpu_id -EXPORT_SYMBOL vmlinux 0xaa79872e unlock_two_nondirectories +EXPORT_SYMBOL vmlinux 0xaa73623f fwnode_get_mac_address EXPORT_SYMBOL vmlinux 0xaa8106bc crc8_populate_msb -EXPORT_SYMBOL vmlinux 0xaa9595ef of_device_is_available -EXPORT_SYMBOL vmlinux 0xaa9a9407 dma_map_sg_attrs +EXPORT_SYMBOL vmlinux 0xaa9b9037 phy_read_mmd EXPORT_SYMBOL vmlinux 0xaaa4b9bc hchacha_block_generic EXPORT_SYMBOL vmlinux 0xaaa50fb2 qcom_scm_lmh_profile_change -EXPORT_SYMBOL vmlinux 0xaaa8fcb3 from_kuid_munged -EXPORT_SYMBOL vmlinux 0xaab61155 mr_mfc_seq_idx -EXPORT_SYMBOL vmlinux 0xaac9d2aa tcp_ld_RTO_revert +EXPORT_SYMBOL vmlinux 0xaab4dda4 ip_tunnel_parse_protocol EXPORT_SYMBOL vmlinux 0xaacc9e27 sort EXPORT_SYMBOL vmlinux 0xaad0ae78 __bitmap_shift_right -EXPORT_SYMBOL vmlinux 0xaad3abe7 tty_driver_flush_buffer EXPORT_SYMBOL vmlinux 0xaad6d92f rfkill_init_sw_state EXPORT_SYMBOL vmlinux 0xaad8c7d6 default_wake_function -EXPORT_SYMBOL vmlinux 0xaad99ecf snd_pcm_kernel_ioctl -EXPORT_SYMBOL vmlinux 0xaadb77bb flow_rule_match_ports -EXPORT_SYMBOL vmlinux 0xaaf6161f snd_sgbuf_get_page +EXPORT_SYMBOL vmlinux 0xaaf46650 security_dentry_create_files_as EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp +EXPORT_SYMBOL vmlinux 0xab1245c2 mipi_dsi_dcs_nop EXPORT_SYMBOL vmlinux 0xab1d21ec kstrtoull_from_user -EXPORT_SYMBOL vmlinux 0xab2d4904 mipi_dsi_driver_unregister EXPORT_SYMBOL vmlinux 0xab3697e4 irq_poll_init EXPORT_SYMBOL vmlinux 0xab3b75ea vme_dma_pattern_attribute -EXPORT_SYMBOL vmlinux 0xab5465d2 dma_sync_sg_for_device EXPORT_SYMBOL vmlinux 0xab600421 probe_irq_off EXPORT_SYMBOL vmlinux 0xab63baa5 unregister_inetaddr_validator_notifier +EXPORT_SYMBOL vmlinux 0xab6d5b3b hex_to_bin +EXPORT_SYMBOL vmlinux 0xab714826 snd_timer_resolution EXPORT_SYMBOL vmlinux 0xab7603e7 imx_ssi_fiq_start -EXPORT_SYMBOL vmlinux 0xab76f37f complete_request_key EXPORT_SYMBOL vmlinux 0xab781570 fb_get_options -EXPORT_SYMBOL vmlinux 0xab78b66c param_ops_bint -EXPORT_SYMBOL vmlinux 0xab918e77 truncate_pagecache_range -EXPORT_SYMBOL vmlinux 0xab9dd31b flow_rule_match_tcp -EXPORT_SYMBOL vmlinux 0xabdba057 lock_sock_nested -EXPORT_SYMBOL vmlinux 0xabe3b063 vme_unregister_driver -EXPORT_SYMBOL vmlinux 0xabe3dd09 skb_abort_seq_read -EXPORT_SYMBOL vmlinux 0xabe52975 nand_ecc_sw_bch_cleanup_ctx -EXPORT_SYMBOL vmlinux 0xabf1eefb input_set_abs_params +EXPORT_SYMBOL vmlinux 0xab7c63be rtnl_unicast +EXPORT_SYMBOL vmlinux 0xab821087 input_get_keycode +EXPORT_SYMBOL vmlinux 0xaba5fd82 __scm_destroy +EXPORT_SYMBOL vmlinux 0xabc15a91 file_open_root +EXPORT_SYMBOL vmlinux 0xabe99859 snd_card_disconnect EXPORT_SYMBOL vmlinux 0xabf32f29 utf16s_to_utf8s -EXPORT_SYMBOL vmlinux 0xabf86d33 netdev_adjacent_change_abort -EXPORT_SYMBOL vmlinux 0xac03bbea input_open_device -EXPORT_SYMBOL vmlinux 0xac0fab3b __dec_zone_page_state -EXPORT_SYMBOL vmlinux 0xac120d43 max8925_bulk_read +EXPORT_SYMBOL vmlinux 0xabf33f08 locks_init_lock EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier -EXPORT_SYMBOL vmlinux 0xac2246d7 generic_file_splice_read -EXPORT_SYMBOL vmlinux 0xac277178 read_cache_page -EXPORT_SYMBOL vmlinux 0xac27d91a cqhci_resume -EXPORT_SYMBOL vmlinux 0xac28d922 pci_free_host_bridge +EXPORT_SYMBOL vmlinux 0xac267940 dev_change_carrier +EXPORT_SYMBOL vmlinux 0xac2cb3ac simple_dir_inode_operations EXPORT_SYMBOL vmlinux 0xac3201b0 udp_flow_hashrnd -EXPORT_SYMBOL vmlinux 0xac32652e register_qdisc EXPORT_SYMBOL vmlinux 0xac331b07 ucc_slow_free -EXPORT_SYMBOL vmlinux 0xac3af613 snd_timer_resolution EXPORT_SYMBOL vmlinux 0xac437f7b snd_interval_ratnum +EXPORT_SYMBOL vmlinux 0xac50732f netdev_master_upper_dev_link +EXPORT_SYMBOL vmlinux 0xac5e5eed __inode_sub_bytes EXPORT_SYMBOL vmlinux 0xac5fcec0 in4_pton -EXPORT_SYMBOL vmlinux 0xac747330 ioc_lookup_icq -EXPORT_SYMBOL vmlinux 0xac7bc843 dev_mc_add -EXPORT_SYMBOL vmlinux 0xac7e55d1 snd_card_set_id -EXPORT_SYMBOL vmlinux 0xac80d953 i2c_smbus_read_byte_data +EXPORT_SYMBOL vmlinux 0xac62415e fb_class +EXPORT_SYMBOL vmlinux 0xac677baf pagecache_get_page +EXPORT_SYMBOL vmlinux 0xac70346a blk_put_request +EXPORT_SYMBOL vmlinux 0xac77ef35 deactivate_super EXPORT_SYMBOL vmlinux 0xac8597d5 mb_cache_entry_get -EXPORT_SYMBOL vmlinux 0xac871474 gnet_stats_finish_copy -EXPORT_SYMBOL vmlinux 0xac93fcc6 mipi_dsi_dcs_nop EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu -EXPORT_SYMBOL vmlinux 0xacc9906d vmalloc_to_page +EXPORT_SYMBOL vmlinux 0xacbcef20 xfrm_alloc_spi +EXPORT_SYMBOL vmlinux 0xacd5b6c7 get_thermal_instance EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache EXPORT_SYMBOL vmlinux 0xacddd806 ptp_get_vclocks_index -EXPORT_SYMBOL vmlinux 0xace6b4b2 inode_update_time -EXPORT_SYMBOL vmlinux 0xace77878 tcp_disconnect -EXPORT_SYMBOL vmlinux 0xacec31d4 pcibios_bus_to_resource +EXPORT_SYMBOL vmlinux 0xacdef22f fs_context_for_submount +EXPORT_SYMBOL vmlinux 0xace8f755 thaw_super EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup EXPORT_SYMBOL vmlinux 0xacf649bf audit_log_task_info -EXPORT_SYMBOL vmlinux 0xacf7efb4 inet_protos -EXPORT_SYMBOL vmlinux 0xacf839bc end_page_private_2 +EXPORT_SYMBOL vmlinux 0xacf7714f xfrm_policy_flush EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex +EXPORT_SYMBOL vmlinux 0xad080497 vfs_fileattr_set +EXPORT_SYMBOL vmlinux 0xad0b0321 __generic_file_write_iter EXPORT_SYMBOL vmlinux 0xad0e6bd4 ioremap_wc -EXPORT_SYMBOL vmlinux 0xad0f1c76 security_inode_invalidate_secctx -EXPORT_SYMBOL vmlinux 0xad267076 netlink_ns_capable -EXPORT_SYMBOL vmlinux 0xad2b6761 vfs_mkdir -EXPORT_SYMBOL vmlinux 0xad557d72 netdev_upper_get_next_dev_rcu -EXPORT_SYMBOL vmlinux 0xad5bdc67 mmc_gpiod_request_cd_irq -EXPORT_SYMBOL vmlinux 0xad6aa45b __mdiobus_read +EXPORT_SYMBOL vmlinux 0xad31d932 nf_unregister_net_hooks +EXPORT_SYMBOL vmlinux 0xad32e207 sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0xad3766c2 rtnl_notify +EXPORT_SYMBOL vmlinux 0xad41aaf9 tcf_chain_get_by_act +EXPORT_SYMBOL vmlinux 0xad6860de phy_config_aneg +EXPORT_SYMBOL vmlinux 0xad6f4cf1 security_d_instantiate EXPORT_SYMBOL vmlinux 0xad73041f autoremove_wake_function -EXPORT_SYMBOL vmlinux 0xad7a2af4 iov_iter_zero -EXPORT_SYMBOL vmlinux 0xad80b467 input_set_max_poll_interval EXPORT_SYMBOL vmlinux 0xad995dac netdev_stats_to_stats64 -EXPORT_SYMBOL vmlinux 0xadafceae dm_table_get_md -EXPORT_SYMBOL vmlinux 0xadb6e14e snd_card_file_remove -EXPORT_SYMBOL vmlinux 0xadbe6373 pcim_iomap_regions_request_all +EXPORT_SYMBOL vmlinux 0xad9d68ea frontswap_register_ops +EXPORT_SYMBOL vmlinux 0xada63c0c input_open_device +EXPORT_SYMBOL vmlinux 0xada81445 netpoll_send_udp +EXPORT_SYMBOL vmlinux 0xadbb4a6e blk_mq_unique_tag 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 0xade0f881 simple_link EXPORT_SYMBOL vmlinux 0xadfdfcef __bitmap_andnot +EXPORT_SYMBOL vmlinux 0xadff5b7f kernel_sock_shutdown EXPORT_SYMBOL vmlinux 0xae04012c __vmalloc -EXPORT_SYMBOL vmlinux 0xae13ac3c vfs_setpos +EXPORT_SYMBOL vmlinux 0xae15a0e2 skb_store_bits EXPORT_SYMBOL vmlinux 0xae316c11 icmpv6_err_convert EXPORT_SYMBOL vmlinux 0xae353d77 arm_copy_from_user -EXPORT_SYMBOL vmlinux 0xae43a1eb __skb_recv_datagram +EXPORT_SYMBOL vmlinux 0xae45bafe seq_bprintf +EXPORT_SYMBOL vmlinux 0xae5751d3 kernel_listen EXPORT_SYMBOL vmlinux 0xae577d60 _raw_spin_lock -EXPORT_SYMBOL vmlinux 0xae75d234 phy_driver_unregister -EXPORT_SYMBOL vmlinux 0xae795161 seg6_hmac_info_add -EXPORT_SYMBOL vmlinux 0xae85551c serio_bus -EXPORT_SYMBOL vmlinux 0xae8af833 __sk_mem_schedule -EXPORT_SYMBOL vmlinux 0xae91e7be netif_rx_any_context +EXPORT_SYMBOL vmlinux 0xae6a42c6 ww_mutex_unlock +EXPORT_SYMBOL vmlinux 0xae745910 get_cached_acl +EXPORT_SYMBOL vmlinux 0xae8ece24 phy_set_sym_pause EXPORT_SYMBOL vmlinux 0xae9849dd __request_region -EXPORT_SYMBOL vmlinux 0xae98ccca generic_fillattr -EXPORT_SYMBOL vmlinux 0xaea6b20f wait_on_page_private_2_killable EXPORT_SYMBOL vmlinux 0xaeac049a generate_random_guid -EXPORT_SYMBOL vmlinux 0xaeb642de pci_set_mwi -EXPORT_SYMBOL vmlinux 0xaecaa908 security_lock_kernel_down -EXPORT_SYMBOL vmlinux 0xaeda7756 devm_ioremap_np -EXPORT_SYMBOL vmlinux 0xaee168b3 nf_unregister_net_hook -EXPORT_SYMBOL vmlinux 0xaee88464 snd_pcm_new_stream +EXPORT_SYMBOL vmlinux 0xaeb2765b __splice_from_pipe +EXPORT_SYMBOL vmlinux 0xaec02fd3 vfs_fadvise +EXPORT_SYMBOL vmlinux 0xaec7105e generic_setlease +EXPORT_SYMBOL vmlinux 0xaedfb549 rpmh_write EXPORT_SYMBOL vmlinux 0xaee95991 ZSTD_getDictID_fromFrame -EXPORT_SYMBOL vmlinux 0xaeeb69f0 try_to_writeback_inodes_sb -EXPORT_SYMBOL vmlinux 0xaef8789f tegra_ivc_notified -EXPORT_SYMBOL vmlinux 0xaf0a1d6e lease_get_mtime +EXPORT_SYMBOL vmlinux 0xaf0bbaa7 scsi_report_bus_reset EXPORT_SYMBOL vmlinux 0xaf16f615 ZSTD_DStreamOutSize -EXPORT_SYMBOL vmlinux 0xaf1e0767 fscrypt_setup_filename -EXPORT_SYMBOL vmlinux 0xaf3249d0 prepare_kernel_cred +EXPORT_SYMBOL vmlinux 0xaf32713f cdev_init +EXPORT_SYMBOL vmlinux 0xaf39a9f1 ip6_find_1stfragopt EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level -EXPORT_SYMBOL vmlinux 0xaf45ae19 d_mark_dontcache EXPORT_SYMBOL vmlinux 0xaf50e76d elf_set_personality -EXPORT_SYMBOL vmlinux 0xaf596b68 dev_trans_start -EXPORT_SYMBOL vmlinux 0xaf5b3489 phy_device_remove -EXPORT_SYMBOL vmlinux 0xaf651092 of_get_next_cpu_node -EXPORT_SYMBOL vmlinux 0xaf71fcdf netdev_emerg -EXPORT_SYMBOL vmlinux 0xaf79e901 d_obtain_root +EXPORT_SYMBOL vmlinux 0xaf675e0f component_match_add_release +EXPORT_SYMBOL vmlinux 0xaf801dbb __free_pages +EXPORT_SYMBOL vmlinux 0xaf82f16a disk_end_io_acct EXPORT_SYMBOL vmlinux 0xaf84865e __get_user_8 -EXPORT_SYMBOL vmlinux 0xaf88692e snd_pcm_set_managed_buffer EXPORT_SYMBOL vmlinux 0xaf8aa518 system_rev EXPORT_SYMBOL vmlinux 0xaf9a0a2a radix_tree_tag_clear -EXPORT_SYMBOL vmlinux 0xafa9ff2c kthread_destroy_worker -EXPORT_SYMBOL vmlinux 0xafad3b6e dentry_path_raw +EXPORT_SYMBOL vmlinux 0xafa6fd86 sk_stop_timer +EXPORT_SYMBOL vmlinux 0xafb8fc8c pci_bus_size_bridges +EXPORT_SYMBOL vmlinux 0xafba6b69 phy_trigger_machine EXPORT_SYMBOL vmlinux 0xafc08054 dotdot_name -EXPORT_SYMBOL vmlinux 0xafc33e3c keyring_alloc -EXPORT_SYMBOL vmlinux 0xafcfaf0a sock_no_linger -EXPORT_SYMBOL vmlinux 0xaffaf381 dev_mc_init -EXPORT_SYMBOL vmlinux 0xaffbbbb0 pci_disable_msi -EXPORT_SYMBOL vmlinux 0xaffe6a86 sync_inodes_sb -EXPORT_SYMBOL vmlinux 0xb00ffcbe devm_clk_release_clkdev +EXPORT_SYMBOL vmlinux 0xafdaed30 tty_kref_put EXPORT_SYMBOL vmlinux 0xb011eae1 kstrtos16_from_user -EXPORT_SYMBOL vmlinux 0xb019feb4 pagevec_lookup_range -EXPORT_SYMBOL vmlinux 0xb01a9855 jbd2_journal_force_commit_nested EXPORT_SYMBOL vmlinux 0xb01bebf9 xfrm_get_acqseq -EXPORT_SYMBOL vmlinux 0xb03114de iov_iter_pipe -EXPORT_SYMBOL vmlinux 0xb03b3e3d of_get_mac_address -EXPORT_SYMBOL vmlinux 0xb03d9c9a __mark_inode_dirty +EXPORT_SYMBOL vmlinux 0xb0318390 _dev_notice +EXPORT_SYMBOL vmlinux 0xb039b418 dquot_scan_active EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max -EXPORT_SYMBOL vmlinux 0xb074044a xfrm_policy_bysel_ctx +EXPORT_SYMBOL vmlinux 0xb07e7bbf nexthop_res_grp_activity_update +EXPORT_SYMBOL vmlinux 0xb07f537e netdev_master_upper_dev_get_rcu +EXPORT_SYMBOL vmlinux 0xb096e8a0 nf_log_bind_pf +EXPORT_SYMBOL vmlinux 0xb098266e configfs_undepend_item +EXPORT_SYMBOL vmlinux 0xb0a0ab27 __skb_vlan_pop EXPORT_SYMBOL vmlinux 0xb0a0da0c rational_best_approximation EXPORT_SYMBOL vmlinux 0xb0a3c5d2 trace_print_symbols_seq -EXPORT_SYMBOL vmlinux 0xb0afe609 watchdog_register_governor -EXPORT_SYMBOL vmlinux 0xb0bdbb29 devm_mfd_add_devices +EXPORT_SYMBOL vmlinux 0xb0b7e6ea mipi_dsi_dcs_set_tear_off +EXPORT_SYMBOL vmlinux 0xb0db5c8f jbd2_fc_release_bufs EXPORT_SYMBOL vmlinux 0xb0e10781 get_option -EXPORT_SYMBOL vmlinux 0xb0e1ba9e ip6_find_1stfragopt -EXPORT_SYMBOL vmlinux 0xb0eb5d73 dev_get_phys_port_id +EXPORT_SYMBOL vmlinux 0xb0e7286e inetdev_by_index +EXPORT_SYMBOL vmlinux 0xb0e90767 nand_ecc_finish_io_req EXPORT_SYMBOL vmlinux 0xb0f8a1fb vm_get_page_prot +EXPORT_SYMBOL vmlinux 0xb11b4628 filemap_fault EXPORT_SYMBOL vmlinux 0xb121390a probe_irq_on -EXPORT_SYMBOL vmlinux 0xb1253dfa user_revoke EXPORT_SYMBOL vmlinux 0xb12cbacb fb_unregister_client +EXPORT_SYMBOL vmlinux 0xb12da1dc devm_devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0xb12efe81 invalidate_mapping_pages EXPORT_SYMBOL vmlinux 0xb13b465a __kfifo_dma_in_prepare_r -EXPORT_SYMBOL vmlinux 0xb13c7ba8 snd_sgbuf_get_addr -EXPORT_SYMBOL vmlinux 0xb13d5149 phy_ethtool_get_stats -EXPORT_SYMBOL vmlinux 0xb1435a16 i2c_smbus_write_word_data EXPORT_SYMBOL vmlinux 0xb147a855 dql_reset EXPORT_SYMBOL vmlinux 0xb14ab1ef hdmi_audio_infoframe_init -EXPORT_SYMBOL vmlinux 0xb14f8fa5 inet6_unregister_protosw +EXPORT_SYMBOL vmlinux 0xb14cfc95 tcp_v4_conn_request EXPORT_SYMBOL vmlinux 0xb14fc46a find_next_clump8 -EXPORT_SYMBOL vmlinux 0xb16a34de tcp_mtu_to_mss -EXPORT_SYMBOL vmlinux 0xb16c93eb con_is_visible -EXPORT_SYMBOL vmlinux 0xb1aad4d9 pci_alloc_irq_vectors_affinity +EXPORT_SYMBOL vmlinux 0xb15a4aa4 blk_post_runtime_suspend +EXPORT_SYMBOL vmlinux 0xb1738d2d udp_seq_start +EXPORT_SYMBOL vmlinux 0xb17d0195 generic_ro_fops +EXPORT_SYMBOL vmlinux 0xb183037a generic_writepages EXPORT_SYMBOL vmlinux 0xb1ad28e0 __gnu_mcount_nc -EXPORT_SYMBOL vmlinux 0xb1c1b509 ip_sock_set_recverr EXPORT_SYMBOL vmlinux 0xb1c3a01a oops_in_progress +EXPORT_SYMBOL vmlinux 0xb1c8512a pci_get_domain_bus_and_slot +EXPORT_SYMBOL vmlinux 0xb1c9aa72 __f_setown +EXPORT_SYMBOL vmlinux 0xb1cbfa2e tcp_conn_request +EXPORT_SYMBOL vmlinux 0xb1ce38da seq_file_path EXPORT_SYMBOL vmlinux 0xb1d3a15c blk_finish_plug -EXPORT_SYMBOL vmlinux 0xb1d54a32 block_page_mkwrite EXPORT_SYMBOL vmlinux 0xb1ddf995 jiffies_64_to_clock_t -EXPORT_SYMBOL vmlinux 0xb1ff9769 tty_port_alloc_xmit_buf -EXPORT_SYMBOL vmlinux 0xb214deb2 lock_two_nondirectories +EXPORT_SYMBOL vmlinux 0xb1e6764b set_blocksize +EXPORT_SYMBOL vmlinux 0xb1e9fd34 import_single_range +EXPORT_SYMBOL vmlinux 0xb1eb0358 snd_pcm_new_internal +EXPORT_SYMBOL vmlinux 0xb1fc231d kernel_param_lock EXPORT_SYMBOL vmlinux 0xb216d331 sgl_free_n_order -EXPORT_SYMBOL vmlinux 0xb2179a8b sg_miter_start -EXPORT_SYMBOL vmlinux 0xb22963c7 snd_timer_pause +EXPORT_SYMBOL vmlinux 0xb21b1fce scsi_track_queue_full +EXPORT_SYMBOL vmlinux 0xb221518f snd_pci_quirk_lookup +EXPORT_SYMBOL vmlinux 0xb22715c8 __alloc_disk_node +EXPORT_SYMBOL vmlinux 0xb22b3e70 __neigh_create EXPORT_SYMBOL vmlinux 0xb22e16d5 radix_tree_maybe_preload +EXPORT_SYMBOL vmlinux 0xb243803b pskb_trim_rcsum_slow EXPORT_SYMBOL vmlinux 0xb249a391 omap_request_dma -EXPORT_SYMBOL vmlinux 0xb24ca0db devm_rproc_add -EXPORT_SYMBOL vmlinux 0xb25dc6c1 cdev_device_del -EXPORT_SYMBOL vmlinux 0xb26d4216 mipi_dsi_dcs_exit_sleep_mode -EXPORT_SYMBOL vmlinux 0xb278a792 mfd_cell_enable +EXPORT_SYMBOL vmlinux 0xb27fe937 security_binder_transfer_file EXPORT_SYMBOL vmlinux 0xb286c477 qcom_scm_set_warm_boot_addr +EXPORT_SYMBOL vmlinux 0xb289b4e5 simple_unlink EXPORT_SYMBOL vmlinux 0xb28d325d ucc_slow_init -EXPORT_SYMBOL vmlinux 0xb290bcde __set_page_dirty_nobuffers -EXPORT_SYMBOL vmlinux 0xb2b9c097 serial8250_do_pm -EXPORT_SYMBOL vmlinux 0xb2c91e65 input_close_device -EXPORT_SYMBOL vmlinux 0xb2cec58a netif_schedule_queue +EXPORT_SYMBOL vmlinux 0xb2b59b30 user_path_create +EXPORT_SYMBOL vmlinux 0xb2b6be29 unlock_new_inode +EXPORT_SYMBOL vmlinux 0xb2bf792f kill_litter_super +EXPORT_SYMBOL vmlinux 0xb2bfe5ca param_set_long +EXPORT_SYMBOL vmlinux 0xb2c27ad8 blk_mq_start_stopped_hw_queues EXPORT_SYMBOL vmlinux 0xb2d48a2e queue_work_on -EXPORT_SYMBOL vmlinux 0xb2d973e0 __netif_napi_del -EXPORT_SYMBOL vmlinux 0xb2e19fb4 kernel_getpeername +EXPORT_SYMBOL vmlinux 0xb2d7cb57 ip_ct_attach +EXPORT_SYMBOL vmlinux 0xb2d81c26 balance_dirty_pages_ratelimited +EXPORT_SYMBOL vmlinux 0xb2d8cd76 tty_schedule_flip +EXPORT_SYMBOL vmlinux 0xb2e1b4ea dev_uc_sync_multiple EXPORT_SYMBOL vmlinux 0xb2e5ae4a snd_lookup_minor_data -EXPORT_SYMBOL vmlinux 0xb2f05a77 sock_wake_async EXPORT_SYMBOL vmlinux 0xb2f579c7 __cpuhp_remove_state_cpuslocked -EXPORT_SYMBOL vmlinux 0xb2faa373 ip_mc_leave_group +EXPORT_SYMBOL vmlinux 0xb30771e6 lease_modify EXPORT_SYMBOL vmlinux 0xb308c97d wait_woken -EXPORT_SYMBOL vmlinux 0xb309c253 pci_request_regions EXPORT_SYMBOL vmlinux 0xb30b9822 vme_master_set -EXPORT_SYMBOL vmlinux 0xb310a5bc phy_do_ioctl_running -EXPORT_SYMBOL vmlinux 0xb31e3d2c follow_pfn +EXPORT_SYMBOL vmlinux 0xb316526e qdisc_class_hash_grow +EXPORT_SYMBOL vmlinux 0xb320e588 inode_io_list_del +EXPORT_SYMBOL vmlinux 0xb3252972 phy_set_asym_pause EXPORT_SYMBOL vmlinux 0xb3258f79 __ubsan_handle_type_mismatch_v1 EXPORT_SYMBOL vmlinux 0xb32728bb qcom_scm_iommu_secure_ptbl_init -EXPORT_SYMBOL vmlinux 0xb3341437 vfs_fadvise -EXPORT_SYMBOL vmlinux 0xb33e97fe input_unregister_handler -EXPORT_SYMBOL vmlinux 0xb35be298 skb_checksum -EXPORT_SYMBOL vmlinux 0xb3665bf9 backlight_device_get_by_name +EXPORT_SYMBOL vmlinux 0xb3358fee write_one_page +EXPORT_SYMBOL vmlinux 0xb33f6749 tcf_action_exec +EXPORT_SYMBOL vmlinux 0xb345c441 io_uring_get_socket +EXPORT_SYMBOL vmlinux 0xb3496406 xsk_uses_need_wakeup +EXPORT_SYMBOL vmlinux 0xb34f6769 locks_free_lock +EXPORT_SYMBOL vmlinux 0xb356eb23 iov_iter_single_seg_count EXPORT_SYMBOL vmlinux 0xb3667805 dqstats EXPORT_SYMBOL vmlinux 0xb367c984 mxc_set_irq_fiq EXPORT_SYMBOL vmlinux 0xb3687850 out_of_line_wait_on_bit_lock -EXPORT_SYMBOL vmlinux 0xb36dd650 bio_chain -EXPORT_SYMBOL vmlinux 0xb38d692b vme_dma_list_add +EXPORT_SYMBOL vmlinux 0xb3758509 of_get_compatible_child +EXPORT_SYMBOL vmlinux 0xb385410a param_set_bint +EXPORT_SYMBOL vmlinux 0xb3b83216 devfreq_unregister_opp_notifier EXPORT_SYMBOL vmlinux 0xb3bd68cc security_secmark_relabel_packet -EXPORT_SYMBOL vmlinux 0xb3c6e474 from_kgid -EXPORT_SYMBOL vmlinux 0xb3ca878d security_inode_setsecctx -EXPORT_SYMBOL vmlinux 0xb3cc1ca8 nf_setsockopt +EXPORT_SYMBOL vmlinux 0xb3cacc9d rtnetlink_put_metrics EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string -EXPORT_SYMBOL vmlinux 0xb3db214f md_flush_request +EXPORT_SYMBOL vmlinux 0xb3da11a3 bio_clone_fast +EXPORT_SYMBOL vmlinux 0xb3db3faf lock_page_memcg +EXPORT_SYMBOL vmlinux 0xb3e2542c snd_power_wait EXPORT_SYMBOL vmlinux 0xb3f7646e kthread_should_stop -EXPORT_SYMBOL vmlinux 0xb3f9e0ab security_locked_down +EXPORT_SYMBOL vmlinux 0xb41185fa simple_release_fs EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked -EXPORT_SYMBOL vmlinux 0xb4342e59 nlmsg_notify +EXPORT_SYMBOL vmlinux 0xb4409aae netlink_broadcast_filtered EXPORT_SYMBOL vmlinux 0xb4471bfe down_trylock -EXPORT_SYMBOL vmlinux 0xb449719f tegra_ivc_write_advance -EXPORT_SYMBOL vmlinux 0xb44aa6ba input_reset_device +EXPORT_SYMBOL vmlinux 0xb447840f param_ops_ullong +EXPORT_SYMBOL vmlinux 0xb44e8901 sk_stop_timer_sync EXPORT_SYMBOL vmlinux 0xb4519a8f string_escape_mem -EXPORT_SYMBOL vmlinux 0xb453f111 input_enable_softrepeat -EXPORT_SYMBOL vmlinux 0xb45f6e3e do_map_probe -EXPORT_SYMBOL vmlinux 0xb46007f4 udp_gro_receive +EXPORT_SYMBOL vmlinux 0xb46d9265 nf_log_unbind_pf EXPORT_SYMBOL vmlinux 0xb476c8f4 ZSTD_decompress_usingDict -EXPORT_SYMBOL vmlinux 0xb48a549f dma_supported +EXPORT_SYMBOL vmlinux 0xb4776f01 vfs_dedupe_file_range +EXPORT_SYMBOL vmlinux 0xb477f71c xfrm_state_alloc EXPORT_SYMBOL vmlinux 0xb48d4d22 security_sb_eat_lsm_opts -EXPORT_SYMBOL vmlinux 0xb48f93dc sock_no_accept +EXPORT_SYMBOL vmlinux 0xb4ae8871 kill_pid EXPORT_SYMBOL vmlinux 0xb4b1e6d1 __xa_alloc -EXPORT_SYMBOL vmlinux 0xb4c4263d phy_attached_info_irq -EXPORT_SYMBOL vmlinux 0xb4c53556 snd_pcm_hw_param_first -EXPORT_SYMBOL vmlinux 0xb4d0e198 __skb_ext_del -EXPORT_SYMBOL vmlinux 0xb4db2500 sock_no_ioctl -EXPORT_SYMBOL vmlinux 0xb4df3de5 devfreq_update_interval -EXPORT_SYMBOL vmlinux 0xb4df9282 dev_get_by_napi_id -EXPORT_SYMBOL vmlinux 0xb4e056c2 imx_scu_enable_general_irq_channel +EXPORT_SYMBOL vmlinux 0xb4e7ccaa get_vm_area +EXPORT_SYMBOL vmlinux 0xb4f01b6c tcf_generic_walker EXPORT_SYMBOL vmlinux 0xb4f13d2a abort -EXPORT_SYMBOL vmlinux 0xb511a57e fscrypt_has_permitted_context -EXPORT_SYMBOL vmlinux 0xb54ddd65 of_phy_get_and_connect -EXPORT_SYMBOL vmlinux 0xb556fe96 fifo_set_limit +EXPORT_SYMBOL vmlinux 0xb4fc258a iput +EXPORT_SYMBOL vmlinux 0xb503b7b9 padata_do_parallel +EXPORT_SYMBOL vmlinux 0xb504fbd0 devm_kvasprintf +EXPORT_SYMBOL vmlinux 0xb522bea4 mdiobus_register_device +EXPORT_SYMBOL vmlinux 0xb5353a0c secure_tcpv6_ts_off +EXPORT_SYMBOL vmlinux 0xb53f3cef mr_table_alloc +EXPORT_SYMBOL vmlinux 0xb54bf260 vm_map_pages +EXPORT_SYMBOL vmlinux 0xb54c3d5e register_mii_timestamper +EXPORT_SYMBOL vmlinux 0xb554da73 tty_insert_flip_string_flags +EXPORT_SYMBOL vmlinux 0xb558df2c dm_table_get_md +EXPORT_SYMBOL vmlinux 0xb55936e5 xfrm_replay_seqhi +EXPORT_SYMBOL vmlinux 0xb56475a3 __tty_insert_flip_char +EXPORT_SYMBOL vmlinux 0xb56e91a2 dquot_set_dqblk +EXPORT_SYMBOL vmlinux 0xb5730821 ip6tun_encaps EXPORT_SYMBOL vmlinux 0xb57343c2 frontswap_shrink -EXPORT_SYMBOL vmlinux 0xb5809ddb snd_ctl_notify +EXPORT_SYMBOL vmlinux 0xb5749a5a block_commit_write +EXPORT_SYMBOL vmlinux 0xb5776025 seg6_hmac_net_exit +EXPORT_SYMBOL vmlinux 0xb580524d copy_page_from_iter EXPORT_SYMBOL vmlinux 0xb58aeaab kernel_cpustat -EXPORT_SYMBOL vmlinux 0xb58af337 rproc_coredump_add_segment -EXPORT_SYMBOL vmlinux 0xb5991571 xfrm_state_alloc -EXPORT_SYMBOL vmlinux 0xb59e7421 snd_pcm_lib_free_pages -EXPORT_SYMBOL vmlinux 0xb5a37ce3 pci_get_class +EXPORT_SYMBOL vmlinux 0xb5906790 tcp_stream_memory_free EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy -EXPORT_SYMBOL vmlinux 0xb5b49122 rproc_shutdown EXPORT_SYMBOL vmlinux 0xb5b63711 fileattr_fill_xflags -EXPORT_SYMBOL vmlinux 0xb5b6aeaa scsi_host_alloc -EXPORT_SYMBOL vmlinux 0xb5c3302e nf_log_set -EXPORT_SYMBOL vmlinux 0xb5cb68fa scsi_print_sense -EXPORT_SYMBOL vmlinux 0xb5defc25 ip_tunnel_parse_protocol -EXPORT_SYMBOL vmlinux 0xb5e55dd8 kernel_param_unlock +EXPORT_SYMBOL vmlinux 0xb5c8b0b4 __qdisc_calculate_pkt_len +EXPORT_SYMBOL vmlinux 0xb5c94e06 blk_queue_segment_boundary +EXPORT_SYMBOL vmlinux 0xb5e9f49c of_phy_connect EXPORT_SYMBOL vmlinux 0xb5fdc18f mutex_is_locked -EXPORT_SYMBOL vmlinux 0xb6070353 dma_sync_single_for_device -EXPORT_SYMBOL vmlinux 0xb61cbc15 snd_power_wait -EXPORT_SYMBOL vmlinux 0xb6328ab3 scsi_print_command +EXPORT_SYMBOL vmlinux 0xb6145b25 phy_modify_paged_changed +EXPORT_SYMBOL vmlinux 0xb61b05ea km_policy_expired +EXPORT_SYMBOL vmlinux 0xb627018c fifo_set_limit EXPORT_SYMBOL vmlinux 0xb633f115 irq_poll_enable -EXPORT_SYMBOL vmlinux 0xb6392505 dev_set_alias -EXPORT_SYMBOL vmlinux 0xb64eb684 napi_build_skb +EXPORT_SYMBOL vmlinux 0xb63bec7c blk_mq_tag_to_rq +EXPORT_SYMBOL vmlinux 0xb63db65b sock_no_sendpage +EXPORT_SYMBOL vmlinux 0xb64ae6e2 sock_set_rcvbuf EXPORT_SYMBOL vmlinux 0xb6564f70 remove_conflicting_framebuffers +EXPORT_SYMBOL vmlinux 0xb6573212 snd_pcm_lib_free_pages +EXPORT_SYMBOL vmlinux 0xb6640f60 fs_param_is_fd EXPORT_SYMBOL vmlinux 0xb664a4e8 kvrealloc +EXPORT_SYMBOL vmlinux 0xb677a7a0 dev_set_group EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt EXPORT_SYMBOL vmlinux 0xb67c9280 utf8cursor EXPORT_SYMBOL vmlinux 0xb67fec0e uuid_parse EXPORT_SYMBOL vmlinux 0xb6896671 crc_t10dif EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin -EXPORT_SYMBOL vmlinux 0xb6964f47 sock_queue_rcv_skb -EXPORT_SYMBOL vmlinux 0xb69e789d pm8606_osc_enable +EXPORT_SYMBOL vmlinux 0xb6952a72 ip_sock_set_tos EXPORT_SYMBOL vmlinux 0xb6acaa13 phy_sfp_detach -EXPORT_SYMBOL vmlinux 0xb6b56b60 fuse_dequeue_forget EXPORT_SYMBOL vmlinux 0xb6b6284e xz_dec_run -EXPORT_SYMBOL vmlinux 0xb6ba47c3 skb_queue_tail -EXPORT_SYMBOL vmlinux 0xb6bbd17e sock_bind_add -EXPORT_SYMBOL vmlinux 0xb6c03669 invalidate_inode_buffers -EXPORT_SYMBOL vmlinux 0xb6c738aa copy_page_to_iter -EXPORT_SYMBOL vmlinux 0xb6da524a ipv6_sock_mc_join +EXPORT_SYMBOL vmlinux 0xb6c0638e __skb_get_hash +EXPORT_SYMBOL vmlinux 0xb6d23061 pci_bus_write_config_word EXPORT_SYMBOL vmlinux 0xb6e36ce2 psched_ratecfg_precompute -EXPORT_SYMBOL vmlinux 0xb6e9b21d mdiobus_unregister_device -EXPORT_SYMBOL vmlinux 0xb6f7469f tcf_chain_get_by_act +EXPORT_SYMBOL vmlinux 0xb6ee6d0d napi_gro_frags +EXPORT_SYMBOL vmlinux 0xb6eec237 gnet_stats_copy_app +EXPORT_SYMBOL vmlinux 0xb6f0d32b d_tmpfile EXPORT_SYMBOL vmlinux 0xb6f859f4 _raw_read_lock_bh +EXPORT_SYMBOL vmlinux 0xb6f8c74d ptp_clock_event +EXPORT_SYMBOL vmlinux 0xb6fa8ad6 cdrom_check_events EXPORT_SYMBOL vmlinux 0xb6fde909 close_fd -EXPORT_SYMBOL vmlinux 0xb71209d9 proc_create_mount_point EXPORT_SYMBOL vmlinux 0xb71589f0 skip_spaces +EXPORT_SYMBOL vmlinux 0xb7173137 writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0xb71acc10 tc_cleanup_flow_action +EXPORT_SYMBOL vmlinux 0xb71d23be udp_lib_get_port EXPORT_SYMBOL vmlinux 0xb71d986d snd_pcm_hw_limit_rates EXPORT_SYMBOL vmlinux 0xb71ed69f __hw_addr_unsync +EXPORT_SYMBOL vmlinux 0xb71f3c99 i2c_smbus_read_word_data +EXPORT_SYMBOL vmlinux 0xb7260156 snd_pcm_hw_constraint_ranges +EXPORT_SYMBOL vmlinux 0xb726bdc6 nand_ecc_prepare_io_req EXPORT_SYMBOL vmlinux 0xb7362c90 do_wait_intr_irq -EXPORT_SYMBOL vmlinux 0xb73bef68 kernel_sendpage_locked -EXPORT_SYMBOL vmlinux 0xb73d37d5 noop_fsync -EXPORT_SYMBOL vmlinux 0xb744ed5d tcf_exts_terse_dump +EXPORT_SYMBOL vmlinux 0xb7428100 inc_nlink +EXPORT_SYMBOL vmlinux 0xb750b6bb cqhci_deactivate EXPORT_SYMBOL vmlinux 0xb7566933 kstrtos8_from_user -EXPORT_SYMBOL vmlinux 0xb76c4ed9 d_find_any_alias -EXPORT_SYMBOL vmlinux 0xb7719a9a serio_reconnect +EXPORT_SYMBOL vmlinux 0xb758a9b1 zap_page_range +EXPORT_SYMBOL vmlinux 0xb75d72d3 tcp_time_wait +EXPORT_SYMBOL vmlinux 0xb769fd21 genphy_setup_forced +EXPORT_SYMBOL vmlinux 0xb776fbe7 dquot_quota_off +EXPORT_SYMBOL vmlinux 0xb77bf99b __serio_register_driver +EXPORT_SYMBOL vmlinux 0xb77cd81b tegra_dfll_unregister +EXPORT_SYMBOL vmlinux 0xb77e0e21 mmc_gpiod_request_ro EXPORT_SYMBOL vmlinux 0xb784154f utf8_casefold_hash EXPORT_SYMBOL vmlinux 0xb78debe3 LZ4_decompress_fast_usingDict EXPORT_SYMBOL vmlinux 0xb78e2050 qcom_scm_pas_init_image -EXPORT_SYMBOL vmlinux 0xb7aa4f52 ip6_frag_next -EXPORT_SYMBOL vmlinux 0xb7bb50ca max8998_update_reg +EXPORT_SYMBOL vmlinux 0xb79f9862 snd_ctl_replace +EXPORT_SYMBOL vmlinux 0xb7a26c2e udplite_prot +EXPORT_SYMBOL vmlinux 0xb7a70787 of_device_is_available +EXPORT_SYMBOL vmlinux 0xb7b546e2 netdev_set_tc_queue EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags -EXPORT_SYMBOL vmlinux 0xb7c97700 of_graph_get_endpoint_count EXPORT_SYMBOL vmlinux 0xb7df0e97 ZSTD_DDictWorkspaceBound EXPORT_SYMBOL vmlinux 0xb7ff182f down_read_killable -EXPORT_SYMBOL vmlinux 0xb8065b1d processor -EXPORT_SYMBOL vmlinux 0xb809f76a request_key_tag -EXPORT_SYMBOL vmlinux 0xb81c5317 km_query -EXPORT_SYMBOL vmlinux 0xb838a46d sock_alloc_file +EXPORT_SYMBOL vmlinux 0xb80f14ad cdev_alloc +EXPORT_SYMBOL vmlinux 0xb8118e9b __scm_send +EXPORT_SYMBOL vmlinux 0xb81814ef snd_pcm_lib_preallocate_free_for_all +EXPORT_SYMBOL vmlinux 0xb8318357 fput +EXPORT_SYMBOL vmlinux 0xb8388b48 ps2_cmd_aborted EXPORT_SYMBOL vmlinux 0xb842716c qcom_scm_ocmem_lock_available -EXPORT_SYMBOL vmlinux 0xb84d26a2 skb_orphan_partial +EXPORT_SYMBOL vmlinux 0xb84dbd5c devm_backlight_device_unregister EXPORT_SYMBOL vmlinux 0xb864b84b ZSTD_decompressBlock -EXPORT_SYMBOL vmlinux 0xb867dfce md_register_thread EXPORT_SYMBOL vmlinux 0xb868ac5c register_sysrq_key -EXPORT_SYMBOL vmlinux 0xb87a41d6 mmc_gpiod_request_cd -EXPORT_SYMBOL vmlinux 0xb89a0699 blk_pre_runtime_suspend +EXPORT_SYMBOL vmlinux 0xb88a2831 snd_ctl_remove_id EXPORT_SYMBOL vmlinux 0xb89b6e6b guid_parse +EXPORT_SYMBOL vmlinux 0xb89c1d37 mipi_dsi_picture_parameter_set +EXPORT_SYMBOL vmlinux 0xb89cbc4e vmf_insert_pfn_prot +EXPORT_SYMBOL vmlinux 0xb8ab6a74 tcf_block_netif_keep_dst +EXPORT_SYMBOL vmlinux 0xb8af16f8 mipi_dsi_dcs_set_tear_scanline EXPORT_SYMBOL vmlinux 0xb8b043f2 kfree_link -EXPORT_SYMBOL vmlinux 0xb8b59a67 _dev_notice +EXPORT_SYMBOL vmlinux 0xb8b6f6b1 build_skb EXPORT_SYMBOL vmlinux 0xb8c66c45 dma_fence_get_status -EXPORT_SYMBOL vmlinux 0xb8c78509 param_ops_string -EXPORT_SYMBOL vmlinux 0xb8d8c8b5 mmc_card_alternative_gpt_sector +EXPORT_SYMBOL vmlinux 0xb8d53804 clk_bulk_get_all +EXPORT_SYMBOL vmlinux 0xb8da2f1a rt_dst_alloc EXPORT_SYMBOL vmlinux 0xb8e39d53 percpu_counter_sync -EXPORT_SYMBOL vmlinux 0xb8ff1bd4 param_ops_invbool -EXPORT_SYMBOL vmlinux 0xb909e445 param_ops_byte +EXPORT_SYMBOL vmlinux 0xb8f05585 genphy_read_status EXPORT_SYMBOL vmlinux 0xb911bb58 minmax_running_max -EXPORT_SYMBOL vmlinux 0xb92fea91 fuse_mount_destroy +EXPORT_SYMBOL vmlinux 0xb914edab __cgroup_bpf_run_filter_sock_addr +EXPORT_SYMBOL vmlinux 0xb9320cae param_ops_charp +EXPORT_SYMBOL vmlinux 0xb9343f40 vfs_setpos EXPORT_SYMBOL vmlinux 0xb94339c4 qdisc_put_stab -EXPORT_SYMBOL vmlinux 0xb94602ee xfrm_find_acq -EXPORT_SYMBOL vmlinux 0xb94c5915 devm_devfreq_unregister_notifier -EXPORT_SYMBOL vmlinux 0xb95d6808 get_thermal_instance +EXPORT_SYMBOL vmlinux 0xb9447295 vfs_copy_file_range +EXPORT_SYMBOL vmlinux 0xb9476713 twl6040_reg_read +EXPORT_SYMBOL vmlinux 0xb95689f1 genl_unregister_family EXPORT_SYMBOL vmlinux 0xb95f98d6 _memset_io EXPORT_SYMBOL vmlinux 0xb9638db4 snd_pcm_rate_to_rate_bit -EXPORT_SYMBOL vmlinux 0xb96c4dad rtnl_configure_link EXPORT_SYMBOL vmlinux 0xb97220ff bitmap_parse EXPORT_SYMBOL vmlinux 0xb9975d25 __traceiter_kmem_cache_alloc_node -EXPORT_SYMBOL vmlinux 0xb9986cb0 skb_headers_offset_update -EXPORT_SYMBOL vmlinux 0xb9a4315d dev_set_mac_address +EXPORT_SYMBOL vmlinux 0xb997b048 vc_cons +EXPORT_SYMBOL vmlinux 0xb9999de2 scsi_device_set_state +EXPORT_SYMBOL vmlinux 0xb9a5a754 forget_cached_acl EXPORT_SYMBOL vmlinux 0xb9a613c6 __kmalloc_track_caller EXPORT_SYMBOL vmlinux 0xb9a8f03b omap_stop_dma EXPORT_SYMBOL vmlinux 0xb9acd3d9 __put_user_2 -EXPORT_SYMBOL vmlinux 0xb9b53c6e phy_register_fixup -EXPORT_SYMBOL vmlinux 0xb9bc9deb ipmr_rule_default -EXPORT_SYMBOL vmlinux 0xb9ccd180 sg_alloc_append_table_from_pages -EXPORT_SYMBOL vmlinux 0xb9d31349 ppp_dev_name -EXPORT_SYMBOL vmlinux 0xb9d5680a ip6_dst_alloc +EXPORT_SYMBOL vmlinux 0xb9b8fd00 snd_pcm_hw_rule_noresample +EXPORT_SYMBOL vmlinux 0xb9cae506 softnet_data +EXPORT_SYMBOL vmlinux 0xb9e494ab netif_rx_any_context EXPORT_SYMBOL vmlinux 0xb9e8e2cc in6addr_sitelocal_allrouters -EXPORT_SYMBOL vmlinux 0xb9f49d01 inet_del_offload EXPORT_SYMBOL vmlinux 0xb9fc381a qcom_scm_hdcp_req -EXPORT_SYMBOL vmlinux 0xba15a525 dm_kcopyd_zero -EXPORT_SYMBOL vmlinux 0xba1b9f4e netdev_adjacent_change_commit -EXPORT_SYMBOL vmlinux 0xba231927 rpmh_invalidate -EXPORT_SYMBOL vmlinux 0xba3005a7 configfs_remove_default_groups -EXPORT_SYMBOL vmlinux 0xba43715c jbd2_journal_start +EXPORT_SYMBOL vmlinux 0xba1e9640 bpf_prog_get_type_path +EXPORT_SYMBOL vmlinux 0xba252244 rproc_resource_cleanup +EXPORT_SYMBOL vmlinux 0xba3fedac __blk_alloc_disk EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy EXPORT_SYMBOL vmlinux 0xba4ae097 enable_fiq -EXPORT_SYMBOL vmlinux 0xba4efc9a dns_query -EXPORT_SYMBOL vmlinux 0xba4f9106 dcb_ieee_getapp_mask -EXPORT_SYMBOL vmlinux 0xba505ffc snd_timer_instance_new EXPORT_SYMBOL vmlinux 0xba53adab nla_policy_len -EXPORT_SYMBOL vmlinux 0xba68f58c nosteal_pipe_buf_ops +EXPORT_SYMBOL vmlinux 0xba55c122 inet_stream_ops +EXPORT_SYMBOL vmlinux 0xba600eb5 xfrm6_rcv_spi +EXPORT_SYMBOL vmlinux 0xba63345b crypto_sha256_finup +EXPORT_SYMBOL vmlinux 0xba63a4ca param_get_int +EXPORT_SYMBOL vmlinux 0xba65ab88 unpin_user_pages_dirty_lock EXPORT_SYMBOL vmlinux 0xba707a78 qe_get_brg_clk -EXPORT_SYMBOL vmlinux 0xbab060d3 input_set_poll_interval -EXPORT_SYMBOL vmlinux 0xbac38a63 ppp_input_error -EXPORT_SYMBOL vmlinux 0xbacb81f9 flow_rule_match_enc_ipv6_addrs -EXPORT_SYMBOL vmlinux 0xbad14514 sock_i_ino -EXPORT_SYMBOL vmlinux 0xbad170f7 dquot_transfer -EXPORT_SYMBOL vmlinux 0xbad3591a dquot_free_inode -EXPORT_SYMBOL vmlinux 0xbaddb0ec ppp_unregister_channel -EXPORT_SYMBOL vmlinux 0xbaf15baf input_register_handler -EXPORT_SYMBOL vmlinux 0xbb04bf6f cdrom_mode_sense +EXPORT_SYMBOL vmlinux 0xba739ffa devm_of_find_backlight +EXPORT_SYMBOL vmlinux 0xbab93ce0 remove_watch_from_object +EXPORT_SYMBOL vmlinux 0xbabbd842 fb_validate_mode +EXPORT_SYMBOL vmlinux 0xbac1f45d tcf_get_next_proto +EXPORT_SYMBOL vmlinux 0xbac30993 bio_put +EXPORT_SYMBOL vmlinux 0xbadf7939 tegra_ivc_read_get_next_frame +EXPORT_SYMBOL vmlinux 0xbaf357f3 param_ops_int EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset -EXPORT_SYMBOL vmlinux 0xbb0bcf29 tty_hangup -EXPORT_SYMBOL vmlinux 0xbb13ddcc tcp_v4_do_rcv EXPORT_SYMBOL vmlinux 0xbb14eb31 bcmp -EXPORT_SYMBOL vmlinux 0xbb248c40 blk_get_request EXPORT_SYMBOL vmlinux 0xbb24f607 init_cdrom_command -EXPORT_SYMBOL vmlinux 0xbb29daf9 blk_rq_count_integrity_sg EXPORT_SYMBOL vmlinux 0xbb2df1ec __cond_resched_rwlock_write +EXPORT_SYMBOL vmlinux 0xbb33d13b mark_buffer_write_io_error EXPORT_SYMBOL vmlinux 0xbb35675b __bitmap_intersects -EXPORT_SYMBOL vmlinux 0xbb3adee1 dev_driver_string EXPORT_SYMBOL vmlinux 0xbb43cbe2 vme_dma_pci_attribute +EXPORT_SYMBOL vmlinux 0xbb4c9f30 I_BDEV +EXPORT_SYMBOL vmlinux 0xbb4ea5dd phy_attach_direct +EXPORT_SYMBOL vmlinux 0xbb50dfff dev_mc_sync_multiple +EXPORT_SYMBOL vmlinux 0xbb66dd49 netdev_info EXPORT_SYMBOL vmlinux 0xbb6df778 sg_nents EXPORT_SYMBOL vmlinux 0xbb72d4fe __put_user_1 -EXPORT_SYMBOL vmlinux 0xbb82c602 __cleancache_init_fs -EXPORT_SYMBOL vmlinux 0xbb968b51 seq_read -EXPORT_SYMBOL vmlinux 0xbb9f36a4 sg_miter_skip -EXPORT_SYMBOL vmlinux 0xbbbd7528 dev_getfirstbyhwtype -EXPORT_SYMBOL vmlinux 0xbbe38886 inet_twsk_deschedule_put -EXPORT_SYMBOL vmlinux 0xbbe4a98b snd_card_register -EXPORT_SYMBOL vmlinux 0xbc0119e0 get_watch_queue -EXPORT_SYMBOL vmlinux 0xbc0c0371 vme_register_error_handler +EXPORT_SYMBOL vmlinux 0xbb76d9fe skb_trim +EXPORT_SYMBOL vmlinux 0xbb9958d9 cdev_device_del +EXPORT_SYMBOL vmlinux 0xbba9612b free_buffer_head +EXPORT_SYMBOL vmlinux 0xbbb4ae0f of_device_is_compatible +EXPORT_SYMBOL vmlinux 0xbbc71ad8 mdiobus_write_nested +EXPORT_SYMBOL vmlinux 0xbbc8c6f6 of_graph_parse_endpoint +EXPORT_SYMBOL vmlinux 0xbc032a46 serio_bus EXPORT_SYMBOL vmlinux 0xbc10dd97 __put_user_4 -EXPORT_SYMBOL vmlinux 0xbc259b33 _copy_to_iter -EXPORT_SYMBOL vmlinux 0xbc30d833 i2c_transfer -EXPORT_SYMBOL vmlinux 0xbc3291a2 tcp_make_synack -EXPORT_SYMBOL vmlinux 0xbc524aee scsi_test_unit_ready -EXPORT_SYMBOL vmlinux 0xbc8ffb62 xfrm_state_walk -EXPORT_SYMBOL vmlinux 0xbc911a81 pci_resize_resource -EXPORT_SYMBOL vmlinux 0xbca5d27c get_user_pages +EXPORT_SYMBOL vmlinux 0xbc1b1350 backlight_device_get_by_type +EXPORT_SYMBOL vmlinux 0xbc2534ad jbd2_journal_get_undo_access +EXPORT_SYMBOL vmlinux 0xbc2d89b0 sk_page_frag_refill +EXPORT_SYMBOL vmlinux 0xbc340c4d xp_alloc +EXPORT_SYMBOL vmlinux 0xbc351cb3 rproc_elf_get_boot_addr +EXPORT_SYMBOL vmlinux 0xbc359ac7 md_bitmap_update_sb +EXPORT_SYMBOL vmlinux 0xbc3a5115 blk_put_queue +EXPORT_SYMBOL vmlinux 0xbc632e12 dev_pick_tx_zero +EXPORT_SYMBOL vmlinux 0xbc64ba3f md_write_start +EXPORT_SYMBOL vmlinux 0xbc70eb61 pcix_set_mmrbc +EXPORT_SYMBOL vmlinux 0xbcaa2a2c send_sig EXPORT_SYMBOL vmlinux 0xbcab6ee6 sscanf -EXPORT_SYMBOL vmlinux 0xbcb63ac8 snd_ctl_remove -EXPORT_SYMBOL vmlinux 0xbcd361d6 sock_register -EXPORT_SYMBOL vmlinux 0xbcef302c iov_iter_gap_alignment -EXPORT_SYMBOL vmlinux 0xbd0c8d3e iw_handler_get_spy -EXPORT_SYMBOL vmlinux 0xbd17a1cb sock_kfree_s +EXPORT_SYMBOL vmlinux 0xbcae2c3b blkdev_get_by_path +EXPORT_SYMBOL vmlinux 0xbcb2ccad __cgroup_bpf_run_filter_sock_ops +EXPORT_SYMBOL vmlinux 0xbcb7d147 __ip_queue_xmit +EXPORT_SYMBOL vmlinux 0xbcd0f338 inet_dgram_ops +EXPORT_SYMBOL vmlinux 0xbcd2f82d uart_get_baud_rate +EXPORT_SYMBOL vmlinux 0xbcdba015 param_get_string +EXPORT_SYMBOL vmlinux 0xbce2a73a tcp_v4_connect +EXPORT_SYMBOL vmlinux 0xbceb07fa d_rehash +EXPORT_SYMBOL vmlinux 0xbceff1b5 dev_get_by_index +EXPORT_SYMBOL vmlinux 0xbcf355bf take_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0xbcfde497 scsi_print_result EXPORT_SYMBOL vmlinux 0xbd1b4950 __cpu_dying_mask -EXPORT_SYMBOL vmlinux 0xbd2e3a22 vme_new_dma_list -EXPORT_SYMBOL vmlinux 0xbd3440ca km_state_notify -EXPORT_SYMBOL vmlinux 0xbd422002 md_bitmap_update_sb -EXPORT_SYMBOL vmlinux 0xbd4472c3 freezing_slow_path -EXPORT_SYMBOL vmlinux 0xbd4ef730 sget -EXPORT_SYMBOL vmlinux 0xbd4fe2d3 fib6_info_hw_flags_set +EXPORT_SYMBOL vmlinux 0xbd28b328 mmput_async +EXPORT_SYMBOL vmlinux 0xbd3c0eed pcie_get_readrq +EXPORT_SYMBOL vmlinux 0xbd4efc4e snd_device_new +EXPORT_SYMBOL vmlinux 0xbd579d35 iw_handler_get_thrspy EXPORT_SYMBOL vmlinux 0xbd5e1d9c __cond_resched_rwlock_read -EXPORT_SYMBOL vmlinux 0xbd636508 ip_mc_join_group -EXPORT_SYMBOL vmlinux 0xbd69e687 mipi_dsi_picture_parameter_set -EXPORT_SYMBOL vmlinux 0xbd779ca4 gro_cells_receive -EXPORT_SYMBOL vmlinux 0xbd7bf3f1 simple_transaction_read -EXPORT_SYMBOL vmlinux 0xbd7ca855 of_platform_bus_probe +EXPORT_SYMBOL vmlinux 0xbd6f6eff configfs_register_default_group +EXPORT_SYMBOL vmlinux 0xbd79c610 proc_set_user EXPORT_SYMBOL vmlinux 0xbd820297 rtc_lock -EXPORT_SYMBOL vmlinux 0xbd96d358 ppp_channel_index -EXPORT_SYMBOL vmlinux 0xbdaa5125 param_ops_charp -EXPORT_SYMBOL vmlinux 0xbdb8d896 pci_ep_cfs_add_epc_group -EXPORT_SYMBOL vmlinux 0xbdbc8af5 crypto_sha1_finup -EXPORT_SYMBOL vmlinux 0xbdd5b260 snd_card_disconnect -EXPORT_SYMBOL vmlinux 0xbdfa4bf2 param_ops_ushort -EXPORT_SYMBOL vmlinux 0xbdfffcac irq_domain_set_info -EXPORT_SYMBOL vmlinux 0xbe0d707d jbd2_journal_finish_inode_data_buffers +EXPORT_SYMBOL vmlinux 0xbdb3b2ee of_find_i2c_adapter_by_node +EXPORT_SYMBOL vmlinux 0xbdb9dbf3 seq_vprintf +EXPORT_SYMBOL vmlinux 0xbdbbd2ce inode_nohighmem +EXPORT_SYMBOL vmlinux 0xbde07167 padata_do_serial +EXPORT_SYMBOL vmlinux 0xbdface57 wait_on_page_private_2_killable EXPORT_SYMBOL vmlinux 0xbe0e3cba tcf_queue_work EXPORT_SYMBOL vmlinux 0xbe0e5118 nla_memcmp +EXPORT_SYMBOL vmlinux 0xbe110592 devm_devfreq_add_device EXPORT_SYMBOL vmlinux 0xbe1427af __printk_cpu_unlock -EXPORT_SYMBOL vmlinux 0xbe285b75 phy_find_first -EXPORT_SYMBOL vmlinux 0xbe2af1e5 xfrm_trans_queue -EXPORT_SYMBOL vmlinux 0xbe308ef8 inet_csk_init_xmit_timers +EXPORT_SYMBOL vmlinux 0xbe1d4d8c bioset_init +EXPORT_SYMBOL vmlinux 0xbe2a0f45 _snd_ctl_add_follower EXPORT_SYMBOL vmlinux 0xbe4eb6ed secure_dccpv6_sequence_number +EXPORT_SYMBOL vmlinux 0xbe58434b rio_query_mport EXPORT_SYMBOL vmlinux 0xbe5a24e9 xxh32_copy_state -EXPORT_SYMBOL vmlinux 0xbe5b4e08 dev_getbyhwaddr_rcu -EXPORT_SYMBOL vmlinux 0xbe79c380 jbd2_journal_free_reserved -EXPORT_SYMBOL vmlinux 0xbe922dfb current_time -EXPORT_SYMBOL vmlinux 0xbeb8b3b2 tcp_ioctl -EXPORT_SYMBOL vmlinux 0xbeb9082f __splice_from_pipe -EXPORT_SYMBOL vmlinux 0xbec8f9b5 filp_close -EXPORT_SYMBOL vmlinux 0xbecf67b1 snd_timer_new -EXPORT_SYMBOL vmlinux 0xbedadedd vfs_parse_fs_param -EXPORT_SYMBOL vmlinux 0xbee0358a xfrm_dev_state_flush +EXPORT_SYMBOL vmlinux 0xbe60477c fscrypt_put_encryption_info +EXPORT_SYMBOL vmlinux 0xbe68f090 dquot_get_next_dqblk +EXPORT_SYMBOL vmlinux 0xbe7bd5ee phy_connect +EXPORT_SYMBOL vmlinux 0xbe9551cf trace_raw_output_prep +EXPORT_SYMBOL vmlinux 0xbe9da5d6 inet_proto_csum_replace_by_diff +EXPORT_SYMBOL vmlinux 0xbeae0411 ip_frag_next +EXPORT_SYMBOL vmlinux 0xbeaeff41 blk_queue_update_dma_alignment +EXPORT_SYMBOL vmlinux 0xbec76a8f pci_add_new_bus EXPORT_SYMBOL vmlinux 0xbee90f2f __kfifo_out_peek_r EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule -EXPORT_SYMBOL vmlinux 0xbf1e30b4 eth_commit_mac_addr_change -EXPORT_SYMBOL vmlinux 0xbf22051b backlight_force_update -EXPORT_SYMBOL vmlinux 0xbf2bde47 __alloc_skb +EXPORT_SYMBOL vmlinux 0xbef98b19 mmc_sw_reset +EXPORT_SYMBOL vmlinux 0xbf0d4037 key_reject_and_link +EXPORT_SYMBOL vmlinux 0xbf2da68d vm_insert_pages +EXPORT_SYMBOL vmlinux 0xbf3d85a5 dquot_alloc +EXPORT_SYMBOL vmlinux 0xbf443b9a of_find_net_device_by_node EXPORT_SYMBOL vmlinux 0xbf4d4539 udp_table EXPORT_SYMBOL vmlinux 0xbf59c419 posix_acl_init EXPORT_SYMBOL vmlinux 0xbf7347b2 proc_doulongvec_ms_jiffies_minmax EXPORT_SYMBOL vmlinux 0xbf75ea6c tegra114_clock_tune_cpu_trimmers_low -EXPORT_SYMBOL vmlinux 0xbf96835d __cleancache_invalidate_fs EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set -EXPORT_SYMBOL vmlinux 0xbf9bd72f inet_put_port -EXPORT_SYMBOL vmlinux 0xbf9deb05 mount_subtree -EXPORT_SYMBOL vmlinux 0xbfb31744 scsi_change_queue_depth -EXPORT_SYMBOL vmlinux 0xbfba4220 __tcp_md5_do_lookup +EXPORT_SYMBOL vmlinux 0xbfc24587 phy_mii_ioctl EXPORT_SYMBOL vmlinux 0xbfcbc0d2 stmp_reset_block -EXPORT_SYMBOL vmlinux 0xbfd5b5f1 max8998_bulk_write +EXPORT_SYMBOL vmlinux 0xbfde8fad netdev_warn EXPORT_SYMBOL vmlinux 0xbfdf7bc3 mempool_create -EXPORT_SYMBOL vmlinux 0xbfe20c10 ethtool_get_phc_vclocks EXPORT_SYMBOL vmlinux 0xbfee3ad5 loop_unregister_transfer -EXPORT_SYMBOL vmlinux 0xc001342f pci_read_vpd -EXPORT_SYMBOL vmlinux 0xc00f05de scsi_add_device -EXPORT_SYMBOL vmlinux 0xc022395c flow_rule_match_ip -EXPORT_SYMBOL vmlinux 0xc035f617 alloc_fddidev -EXPORT_SYMBOL vmlinux 0xc0396d01 mdiobus_write -EXPORT_SYMBOL vmlinux 0xc03e0e42 release_pages -EXPORT_SYMBOL vmlinux 0xc04b849d xfrm_input -EXPORT_SYMBOL vmlinux 0xc05850ec of_get_i2c_adapter_by_node -EXPORT_SYMBOL vmlinux 0xc0592274 param_array_ops -EXPORT_SYMBOL vmlinux 0xc07330f3 posix_acl_update_mode +EXPORT_SYMBOL vmlinux 0xbff5bc79 scsi_device_resume +EXPORT_SYMBOL vmlinux 0xbff917f3 xfrm4_protocol_register +EXPORT_SYMBOL vmlinux 0xc0030283 mdiobus_write +EXPORT_SYMBOL vmlinux 0xc00e14d7 ptp_clock_unregister +EXPORT_SYMBOL vmlinux 0xc01ee3b5 irq_domain_set_info +EXPORT_SYMBOL vmlinux 0xc02d8552 blkdev_issue_flush EXPORT_SYMBOL vmlinux 0xc0763484 rfkill_blocked -EXPORT_SYMBOL vmlinux 0xc07775e2 ip6_output EXPORT_SYMBOL vmlinux 0xc07b0863 fb_destroy_modedb -EXPORT_SYMBOL vmlinux 0xc08cab04 scsi_remove_device -EXPORT_SYMBOL vmlinux 0xc093e87d drop_super -EXPORT_SYMBOL vmlinux 0xc097d3d3 read_cache_page_gfp -EXPORT_SYMBOL vmlinux 0xc099f969 ip_setsockopt +EXPORT_SYMBOL vmlinux 0xc0908729 __sk_mem_reclaim +EXPORT_SYMBOL vmlinux 0xc09c4292 dm_table_get_size EXPORT_SYMBOL vmlinux 0xc0a6a8c5 omap_set_dma_dest_burst_mode EXPORT_SYMBOL vmlinux 0xc0a98385 profile_pc +EXPORT_SYMBOL vmlinux 0xc0afee19 xfrm_find_acq EXPORT_SYMBOL vmlinux 0xc0b2664d devlink_dpipe_header_ipv4 -EXPORT_SYMBOL vmlinux 0xc0c1afd4 __fib6_flush_trees -EXPORT_SYMBOL vmlinux 0xc0d5ce51 blk_mq_tagset_busy_iter -EXPORT_SYMBOL vmlinux 0xc0d94548 __ip_mc_dec_group +EXPORT_SYMBOL vmlinux 0xc0b35c72 inet_frag_destroy +EXPORT_SYMBOL vmlinux 0xc0cf79ef snd_pcm_hw_param_last +EXPORT_SYMBOL vmlinux 0xc0d6c964 pneigh_lookup EXPORT_SYMBOL vmlinux 0xc0da0e99 dim_on_top +EXPORT_SYMBOL vmlinux 0xc0e4cee5 keyring_alloc +EXPORT_SYMBOL vmlinux 0xc0ea0c16 snd_device_register +EXPORT_SYMBOL vmlinux 0xc0ec0535 seg6_hmac_info_lookup EXPORT_SYMBOL vmlinux 0xc0fb357a dma_fence_chain_walk EXPORT_SYMBOL vmlinux 0xc0ff12fb nla_strdup EXPORT_SYMBOL vmlinux 0xc0ff21c1 input_get_new_minor -EXPORT_SYMBOL vmlinux 0xc129fae8 tcp_seq_start -EXPORT_SYMBOL vmlinux 0xc13793c5 security_sb_set_mnt_opts -EXPORT_SYMBOL vmlinux 0xc13943b2 pcim_pin_device +EXPORT_SYMBOL vmlinux 0xc0ff7cd5 fib_default_rule_add +EXPORT_SYMBOL vmlinux 0xc1059dad send_sig_mceerr +EXPORT_SYMBOL vmlinux 0xc114ed0f tcp_read_sock +EXPORT_SYMBOL vmlinux 0xc11ec6e5 skb_dequeue +EXPORT_SYMBOL vmlinux 0xc125a380 jbd2_journal_clear_err +EXPORT_SYMBOL vmlinux 0xc1305c9c simple_rmdir +EXPORT_SYMBOL vmlinux 0xc131f6dd sock_from_file +EXPORT_SYMBOL vmlinux 0xc148d8a2 pci_release_regions EXPORT_SYMBOL vmlinux 0xc1514a3b free_irq EXPORT_SYMBOL vmlinux 0xc15f4ed8 utf8nlen +EXPORT_SYMBOL vmlinux 0xc1620d7f neigh_carrier_down EXPORT_SYMBOL vmlinux 0xc16410b9 ZSTD_getDictID_fromDDict EXPORT_SYMBOL vmlinux 0xc16be39d iter_div_u64_rem -EXPORT_SYMBOL vmlinux 0xc16c0a58 vfs_unlink -EXPORT_SYMBOL vmlinux 0xc1775005 key_link -EXPORT_SYMBOL vmlinux 0xc195fa7a neigh_update -EXPORT_SYMBOL vmlinux 0xc1be067a tcp_timewait_state_process -EXPORT_SYMBOL vmlinux 0xc1c6da4a frontswap_register_ops -EXPORT_SYMBOL vmlinux 0xc1c9ad40 pci_clear_master -EXPORT_SYMBOL vmlinux 0xc1d02d7d ndo_dflt_fdb_add +EXPORT_SYMBOL vmlinux 0xc16d919a snd_pcm_kernel_ioctl +EXPORT_SYMBOL vmlinux 0xc18b7e27 inet_csk_init_xmit_timers +EXPORT_SYMBOL vmlinux 0xc18ed641 of_device_is_big_endian +EXPORT_SYMBOL vmlinux 0xc1a478b3 netlink_ack +EXPORT_SYMBOL vmlinux 0xc1a75286 netdev_class_create_file_ns +EXPORT_SYMBOL vmlinux 0xc1b0aa3a bh_submit_read +EXPORT_SYMBOL vmlinux 0xc1b7fa18 lock_rename +EXPORT_SYMBOL vmlinux 0xc1c3a174 pci_request_irq +EXPORT_SYMBOL vmlinux 0xc1c40b58 param_set_ushort EXPORT_SYMBOL vmlinux 0xc1d5d504 scsi_cmd_allowed EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget -EXPORT_SYMBOL vmlinux 0xc1de19d1 input_set_keycode EXPORT_SYMBOL vmlinux 0xc1e2c742 tegra_io_rail_power_on -EXPORT_SYMBOL vmlinux 0xc1fc96e1 _dev_warn -EXPORT_SYMBOL vmlinux 0xc2011ca0 vga_remove_vgacon +EXPORT_SYMBOL vmlinux 0xc1e4c33b add_watch_to_object +EXPORT_SYMBOL vmlinux 0xc1e94d8c dcb_ieee_getapp_default_prio_mask +EXPORT_SYMBOL vmlinux 0xc1fda9a3 of_get_cpu_node +EXPORT_SYMBOL vmlinux 0xc2058093 cdrom_dummy_generic_packet EXPORT_SYMBOL vmlinux 0xc2059c64 fscrypt_enqueue_decrypt_work EXPORT_SYMBOL vmlinux 0xc207ee07 complete_and_exit -EXPORT_SYMBOL vmlinux 0xc20d17b5 ip_options_rcv_srr -EXPORT_SYMBOL vmlinux 0xc223bcb3 shrink_dcache_sb +EXPORT_SYMBOL vmlinux 0xc20ac229 fb_find_mode +EXPORT_SYMBOL vmlinux 0xc213ff79 pci_prepare_to_sleep +EXPORT_SYMBOL vmlinux 0xc21f16fc open_with_fake_path +EXPORT_SYMBOL vmlinux 0xc22d928c skb_eth_pop EXPORT_SYMBOL vmlinux 0xc230c9a8 wait_for_completion_io_timeout -EXPORT_SYMBOL vmlinux 0xc2367026 __mdiobus_write -EXPORT_SYMBOL vmlinux 0xc2482418 from_kprojid_munged -EXPORT_SYMBOL vmlinux 0xc2622785 xp_dma_sync_for_device_slow -EXPORT_SYMBOL vmlinux 0xc265fc3b vlan_for_each +EXPORT_SYMBOL vmlinux 0xc2616d3b ip6_fraglist_init +EXPORT_SYMBOL vmlinux 0xc263ab64 mmc_of_parse EXPORT_SYMBOL vmlinux 0xc267960e utf8_validate +EXPORT_SYMBOL vmlinux 0xc267e7ec tc_setup_cb_destroy +EXPORT_SYMBOL vmlinux 0xc2682492 nosteal_pipe_buf_ops EXPORT_SYMBOL vmlinux 0xc279969a omap_get_dma_dst_pos -EXPORT_SYMBOL vmlinux 0xc2853757 __dec_node_page_state -EXPORT_SYMBOL vmlinux 0xc299bd6c dma_alloc_attrs +EXPORT_SYMBOL vmlinux 0xc2912045 rawnand_sw_hamming_correct +EXPORT_SYMBOL vmlinux 0xc29c2fde mmc_gpio_get_cd EXPORT_SYMBOL vmlinux 0xc29d672d nla_reserve +EXPORT_SYMBOL vmlinux 0xc2a1592f blk_dump_rq_flags +EXPORT_SYMBOL vmlinux 0xc2a82ef8 generic_iommu_put_resv_regions +EXPORT_SYMBOL vmlinux 0xc2a947fc param_ops_string +EXPORT_SYMBOL vmlinux 0xc2abbb6e cpufreq_get_policy EXPORT_SYMBOL vmlinux 0xc2acc033 hex_dump_to_buffer EXPORT_SYMBOL vmlinux 0xc2b1d4e1 lockref_put_return +EXPORT_SYMBOL vmlinux 0xc2bc09b5 fiemap_prep EXPORT_SYMBOL vmlinux 0xc2cae53e refcount_dec_and_lock +EXPORT_SYMBOL vmlinux 0xc2ce4873 phy_drivers_unregister EXPORT_SYMBOL vmlinux 0xc2cf2dde ZSTD_decompress_usingDDict -EXPORT_SYMBOL vmlinux 0xc2d20cb2 tcp_select_initial_window -EXPORT_SYMBOL vmlinux 0xc2d361dd uart_match_port -EXPORT_SYMBOL vmlinux 0xc2da03fc mr_vif_seq_idx +EXPORT_SYMBOL vmlinux 0xc2d342de scsi_command_normalize_sense +EXPORT_SYMBOL vmlinux 0xc2d5a262 drop_super EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices -EXPORT_SYMBOL vmlinux 0xc2e74e56 blk_set_queue_depth -EXPORT_SYMBOL vmlinux 0xc2eb881c file_remove_privs EXPORT_SYMBOL vmlinux 0xc2ede9c5 gen_pool_destroy -EXPORT_SYMBOL vmlinux 0xc2f5b543 param_get_uint EXPORT_SYMBOL vmlinux 0xc3055d20 usleep_range_state EXPORT_SYMBOL vmlinux 0xc31db0ce is_vmalloc_addr -EXPORT_SYMBOL vmlinux 0xc31e86d7 generic_block_bmap +EXPORT_SYMBOL vmlinux 0xc320352f mtd_concat_destroy EXPORT_SYMBOL vmlinux 0xc32c71af register_inetaddr_validator_notifier -EXPORT_SYMBOL vmlinux 0xc33788c8 netpoll_send_udp -EXPORT_SYMBOL vmlinux 0xc34e2a79 of_find_mipi_dsi_device_by_node -EXPORT_SYMBOL vmlinux 0xc3558c19 sock_kmalloc +EXPORT_SYMBOL vmlinux 0xc3472808 genphy_aneg_done EXPORT_SYMBOL vmlinux 0xc358aaf8 snprintf -EXPORT_SYMBOL vmlinux 0xc361d184 ppp_unit_number +EXPORT_SYMBOL vmlinux 0xc36db4a0 netdev_name_node_alt_create EXPORT_SYMBOL vmlinux 0xc37335b0 complete -EXPORT_SYMBOL vmlinux 0xc3796428 phy_loopback EXPORT_SYMBOL vmlinux 0xc37f9c6e cpufreq_update_policy -EXPORT_SYMBOL vmlinux 0xc387070d cdrom_get_last_written -EXPORT_SYMBOL vmlinux 0xc38c37a8 genphy_suspend EXPORT_SYMBOL vmlinux 0xc38c83b8 mod_timer -EXPORT_SYMBOL vmlinux 0xc393e774 max8998_bulk_read -EXPORT_SYMBOL vmlinux 0xc3b342c9 tc6393xb_lcd_set_power -EXPORT_SYMBOL vmlinux 0xc3b89140 netif_rx_ni -EXPORT_SYMBOL vmlinux 0xc3c5012e flow_rule_match_enc_ipv4_addrs +EXPORT_SYMBOL vmlinux 0xc392813b get_tree_nodev +EXPORT_SYMBOL vmlinux 0xc39edac9 tcf_exts_num_actions +EXPORT_SYMBOL vmlinux 0xc3a52502 tcp_md5_do_add +EXPORT_SYMBOL vmlinux 0xc3cccb24 sock_set_keepalive EXPORT_SYMBOL vmlinux 0xc3cd034d crc8_populate_lsb -EXPORT_SYMBOL vmlinux 0xc3cdab07 kill_block_super -EXPORT_SYMBOL vmlinux 0xc3d85665 netdev_update_features +EXPORT_SYMBOL vmlinux 0xc3d0453b blk_queue_flag_set +EXPORT_SYMBOL vmlinux 0xc3d1f41f phy_start_aneg +EXPORT_SYMBOL vmlinux 0xc3d30f36 input_close_device +EXPORT_SYMBOL vmlinux 0xc3e7c2b8 unmap_mapping_range EXPORT_SYMBOL vmlinux 0xc3ec7dc1 __gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0xc3f319ea mmc_of_parse_voltage +EXPORT_SYMBOL vmlinux 0xc3fde084 genphy_read_status_fixed +EXPORT_SYMBOL vmlinux 0xc40fba29 tty_port_raise_dtr_rts EXPORT_SYMBOL vmlinux 0xc41bc980 iwe_stream_add_value EXPORT_SYMBOL vmlinux 0xc4212ab9 qdisc_class_hash_insert +EXPORT_SYMBOL vmlinux 0xc424de7d con_copy_unimap EXPORT_SYMBOL vmlinux 0xc427e066 omap_vrfb_min_phys_size -EXPORT_SYMBOL vmlinux 0xc435ff62 udp_read_sock -EXPORT_SYMBOL vmlinux 0xc43c39b8 netdev_has_upper_dev_all_rcu +EXPORT_SYMBOL vmlinux 0xc433e763 mdiobus_alloc_size EXPORT_SYMBOL vmlinux 0xc44c3689 ucc_tdm_init -EXPORT_SYMBOL vmlinux 0xc44e5301 udp_lib_get_port -EXPORT_SYMBOL vmlinux 0xc4592bb7 mr_table_alloc -EXPORT_SYMBOL vmlinux 0xc4596fb0 __udp_disconnect -EXPORT_SYMBOL vmlinux 0xc45a986c netpoll_cleanup +EXPORT_SYMBOL vmlinux 0xc453fb69 get_tree_keyed +EXPORT_SYMBOL vmlinux 0xc455d4aa flow_rule_match_enc_control EXPORT_SYMBOL vmlinux 0xc4657dc8 mempool_init -EXPORT_SYMBOL vmlinux 0xc4684cc8 ip6_fraglist_init EXPORT_SYMBOL vmlinux 0xc4708199 cpm_muram_addr +EXPORT_SYMBOL vmlinux 0xc4739c9e inet_sk_set_state EXPORT_SYMBOL vmlinux 0xc4777aa9 __ctzsi2 -EXPORT_SYMBOL vmlinux 0xc481b811 udp_sk_rx_dst_set -EXPORT_SYMBOL vmlinux 0xc4c1995a tcf_qevent_destroy -EXPORT_SYMBOL vmlinux 0xc4c49755 register_sound_dsp -EXPORT_SYMBOL vmlinux 0xc4d6cbcb tcp_sock_set_nodelay -EXPORT_SYMBOL vmlinux 0xc4d7ed57 mark_buffer_dirty_inode -EXPORT_SYMBOL vmlinux 0xc4e2210a tcp_recvmsg -EXPORT_SYMBOL vmlinux 0xc5021c7c fb_get_mode -EXPORT_SYMBOL vmlinux 0xc5051a10 vfs_clone_file_range -EXPORT_SYMBOL vmlinux 0xc50e26b0 of_node_put -EXPORT_SYMBOL vmlinux 0xc51069d8 inet_ioctl -EXPORT_SYMBOL vmlinux 0xc52b3e6d no_llseek -EXPORT_SYMBOL vmlinux 0xc52c3813 proc_create_single_data +EXPORT_SYMBOL vmlinux 0xc47c01cf uart_resume_port +EXPORT_SYMBOL vmlinux 0xc48d5ba4 cdrom_get_media_event +EXPORT_SYMBOL vmlinux 0xc4afa26e netpoll_setup +EXPORT_SYMBOL vmlinux 0xc4c17fff param_array_ops +EXPORT_SYMBOL vmlinux 0xc4f1d0c2 register_netdev +EXPORT_SYMBOL vmlinux 0xc50a78ab of_get_next_cpu_node +EXPORT_SYMBOL vmlinux 0xc517648c unregister_mii_tstamp_controller +EXPORT_SYMBOL vmlinux 0xc5209b89 dma_get_sgtable_attrs EXPORT_SYMBOL vmlinux 0xc52da066 omap_set_dma_dest_params -EXPORT_SYMBOL vmlinux 0xc53840d3 would_dump -EXPORT_SYMBOL vmlinux 0xc5473d79 ipv6_dev_mc_inc -EXPORT_SYMBOL vmlinux 0xc54be521 gnet_stats_copy_rate_est -EXPORT_SYMBOL vmlinux 0xc55a6584 phy_drivers_register -EXPORT_SYMBOL vmlinux 0xc55f343c logfc -EXPORT_SYMBOL vmlinux 0xc56e5e83 filemap_invalidate_lock_two -EXPORT_SYMBOL vmlinux 0xc5736c53 tcp_gro_complete +EXPORT_SYMBOL vmlinux 0xc5300146 unlock_page +EXPORT_SYMBOL vmlinux 0xc539a084 dma_map_sg_attrs +EXPORT_SYMBOL vmlinux 0xc55325e7 netif_device_attach +EXPORT_SYMBOL vmlinux 0xc5679c7a km_query +EXPORT_SYMBOL vmlinux 0xc57a4c5c dma_supported +EXPORT_SYMBOL vmlinux 0xc57c46ab processor EXPORT_SYMBOL vmlinux 0xc581500f ZSTD_resetDStream -EXPORT_SYMBOL vmlinux 0xc5878f46 bdi_alloc +EXPORT_SYMBOL vmlinux 0xc5830633 of_get_child_by_name EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete -EXPORT_SYMBOL vmlinux 0xc59f0150 netif_carrier_off -EXPORT_SYMBOL vmlinux 0xc5a3842d ipv6_select_ident -EXPORT_SYMBOL vmlinux 0xc5b9cb6a dquot_writeback_dquots -EXPORT_SYMBOL vmlinux 0xc5b9f7f0 snd_timer_instance_free +EXPORT_SYMBOL vmlinux 0xc59def23 skb_get_hash_perturb +EXPORT_SYMBOL vmlinux 0xc5c286c4 pci_alloc_dev +EXPORT_SYMBOL vmlinux 0xc5c2c6af __blk_mq_alloc_disk +EXPORT_SYMBOL vmlinux 0xc5c40a8a netdev_state_change EXPORT_SYMBOL vmlinux 0xc5cbdc54 kstrtoint_from_user -EXPORT_SYMBOL vmlinux 0xc5edcb29 sock_from_file +EXPORT_SYMBOL vmlinux 0xc5ec098b __pskb_pull_tail +EXPORT_SYMBOL vmlinux 0xc5ee2531 blk_queue_max_write_zeroes_sectors EXPORT_SYMBOL vmlinux 0xc5ee6c48 kvfree_sensitive -EXPORT_SYMBOL vmlinux 0xc5fadd7b jbd2_log_start_commit -EXPORT_SYMBOL vmlinux 0xc5ffb76b input_handler_for_each_handle -EXPORT_SYMBOL vmlinux 0xc6032f86 cdev_set_parent +EXPORT_SYMBOL vmlinux 0xc5f987be inet6_ioctl +EXPORT_SYMBOL vmlinux 0xc5fae74b neigh_parms_release EXPORT_SYMBOL vmlinux 0xc60d0620 __num_online_cpus -EXPORT_SYMBOL vmlinux 0xc613305a nand_read_page_raw -EXPORT_SYMBOL vmlinux 0xc61b06e1 elv_rb_del +EXPORT_SYMBOL vmlinux 0xc61243e6 of_graph_get_port_by_id EXPORT_SYMBOL vmlinux 0xc631580a console_unlock EXPORT_SYMBOL vmlinux 0xc633d82d phy_unregister_fixup -EXPORT_SYMBOL vmlinux 0xc637a420 eth_platform_get_mac_address -EXPORT_SYMBOL vmlinux 0xc6511e7a ipv6_setsockopt -EXPORT_SYMBOL vmlinux 0xc657bb03 xfrm_state_lookup +EXPORT_SYMBOL vmlinux 0xc6493f39 pcim_iounmap_regions +EXPORT_SYMBOL vmlinux 0xc64a035c snd_pcm_lib_get_vmalloc_page EXPORT_SYMBOL vmlinux 0xc65e4e97 secure_dccp_sequence_number -EXPORT_SYMBOL vmlinux 0xc6635df1 sock_setsockopt EXPORT_SYMBOL vmlinux 0xc66a8304 cpu_rmap_add -EXPORT_SYMBOL vmlinux 0xc66ccd64 nf_log_unregister -EXPORT_SYMBOL vmlinux 0xc6712946 inode_newsize_ok -EXPORT_SYMBOL vmlinux 0xc6887d93 flow_block_cb_decref -EXPORT_SYMBOL vmlinux 0xc68acbcd ata_link_printk -EXPORT_SYMBOL vmlinux 0xc696cd54 block_invalidatepage +EXPORT_SYMBOL vmlinux 0xc67ac729 sock_kzfree_s +EXPORT_SYMBOL vmlinux 0xc68ac32e __neigh_event_send EXPORT_SYMBOL vmlinux 0xc69fce52 qcom_scm_qsmmu500_wait_safe_toggle -EXPORT_SYMBOL vmlinux 0xc6b03350 tcp_parse_options -EXPORT_SYMBOL vmlinux 0xc6bcaea0 component_match_add_typed +EXPORT_SYMBOL vmlinux 0xc6bd03f4 sock_kmalloc +EXPORT_SYMBOL vmlinux 0xc6c3d190 kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0xc6cb885b gnet_stats_start_copy EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable -EXPORT_SYMBOL vmlinux 0xc6da6fc7 ata_scsi_cmd_error_handler -EXPORT_SYMBOL vmlinux 0xc6e3b337 sdev_prefix_printk +EXPORT_SYMBOL vmlinux 0xc6d6e935 mdio_device_reset EXPORT_SYMBOL vmlinux 0xc6efd2a6 refcount_dec_and_lock_irqsave -EXPORT_SYMBOL vmlinux 0xc6f00a76 blk_queue_flag_clear EXPORT_SYMBOL vmlinux 0xc6f3b3fc refcount_dec_if_one EXPORT_SYMBOL vmlinux 0xc6f46339 init_timer_key -EXPORT_SYMBOL vmlinux 0xc702364a filemap_check_errors -EXPORT_SYMBOL vmlinux 0xc707b2ea rproc_boot +EXPORT_SYMBOL vmlinux 0xc714964a _dev_printk EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port -EXPORT_SYMBOL vmlinux 0xc730d429 netpoll_poll_enable -EXPORT_SYMBOL vmlinux 0xc7482867 pci_save_state -EXPORT_SYMBOL vmlinux 0xc74b4201 of_graph_get_remote_endpoint -EXPORT_SYMBOL vmlinux 0xc752b555 dev_mc_sync -EXPORT_SYMBOL vmlinux 0xc760bbe4 max8925_bulk_write -EXPORT_SYMBOL vmlinux 0xc777d049 tcp_v4_syn_recv_sock -EXPORT_SYMBOL vmlinux 0xc779f696 sock_queue_err_skb +EXPORT_SYMBOL vmlinux 0xc72e3855 dcache_dir_lseek +EXPORT_SYMBOL vmlinux 0xc73a5fec dev_uc_init +EXPORT_SYMBOL vmlinux 0xc753fb8f neigh_event_ns +EXPORT_SYMBOL vmlinux 0xc75d08cc tcp_parse_options +EXPORT_SYMBOL vmlinux 0xc766ef90 __i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0xc7701060 find_vma EXPORT_SYMBOL vmlinux 0xc781bd9f rfkill_resume_polling +EXPORT_SYMBOL vmlinux 0xc78511ff super_setup_bdi_name EXPORT_SYMBOL vmlinux 0xc7856a3d inet6addr_notifier_call_chain -EXPORT_SYMBOL vmlinux 0xc797e3f9 vlan_filter_push_vids -EXPORT_SYMBOL vmlinux 0xc7a0ccf8 twl6040_get_vibralr_status +EXPORT_SYMBOL vmlinux 0xc7948907 param_ops_ushort EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock -EXPORT_SYMBOL vmlinux 0xc7ad441a alloc_buffer_head +EXPORT_SYMBOL vmlinux 0xc7a8a5e2 dmaenginem_async_device_register EXPORT_SYMBOL vmlinux 0xc7c1107a LZ4_decompress_safe +EXPORT_SYMBOL vmlinux 0xc7c7dd81 tegra_dfll_runtime_resume EXPORT_SYMBOL vmlinux 0xc7d094b5 dm_read_arg_group +EXPORT_SYMBOL vmlinux 0xc7d75961 inet_recvmsg EXPORT_SYMBOL vmlinux 0xc7ec6c27 strspn -EXPORT_SYMBOL vmlinux 0xc7f43f5b kernel_connect -EXPORT_SYMBOL vmlinux 0xc7fafb59 set_user_nice -EXPORT_SYMBOL vmlinux 0xc80cee64 param_get_invbool -EXPORT_SYMBOL vmlinux 0xc832d45d blk_dump_rq_flags +EXPORT_SYMBOL vmlinux 0xc8044d1c __skb_gso_segment +EXPORT_SYMBOL vmlinux 0xc8111359 netdev_crit +EXPORT_SYMBOL vmlinux 0xc8123a50 __module_put_and_exit +EXPORT_SYMBOL vmlinux 0xc825d194 wireless_send_event EXPORT_SYMBOL vmlinux 0xc8339e24 string_unescape -EXPORT_SYMBOL vmlinux 0xc8443edf kmem_cache_create_usercopy +EXPORT_SYMBOL vmlinux 0xc839d5ed nand_write_oob_std EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu -EXPORT_SYMBOL vmlinux 0xc84c1501 fddi_type_trans -EXPORT_SYMBOL vmlinux 0xc8615cf3 iov_iter_bvec -EXPORT_SYMBOL vmlinux 0xc862eafd d_delete -EXPORT_SYMBOL vmlinux 0xc871bf6f skb_copy_and_csum_bits +EXPORT_SYMBOL vmlinux 0xc8676c33 udp6_csum_init +EXPORT_SYMBOL vmlinux 0xc86d7d43 skb_checksum_help EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes -EXPORT_SYMBOL vmlinux 0xc877d74a d_hash_and_lookup EXPORT_SYMBOL vmlinux 0xc8827b75 sysctl_vals -EXPORT_SYMBOL vmlinux 0xc8862580 setup_new_exec -EXPORT_SYMBOL vmlinux 0xc8897af0 skb_dump +EXPORT_SYMBOL vmlinux 0xc88e6af3 vfs_iter_write EXPORT_SYMBOL vmlinux 0xc890c008 zlib_deflateEnd -EXPORT_SYMBOL vmlinux 0xc899a9ef bio_uninit -EXPORT_SYMBOL vmlinux 0xc89ab272 snd_dma_free_pages -EXPORT_SYMBOL vmlinux 0xc89ade21 configfs_unregister_group EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread -EXPORT_SYMBOL vmlinux 0xc8a96bac rproc_elf_load_rsc_table -EXPORT_SYMBOL vmlinux 0xc8aa3b57 xp_dma_sync_for_cpu_slow +EXPORT_SYMBOL vmlinux 0xc8ac5c52 dev_trans_start +EXPORT_SYMBOL vmlinux 0xc8aca72f fscrypt_zeroout_range EXPORT_SYMBOL vmlinux 0xc8b58a25 __memset64 +EXPORT_SYMBOL vmlinux 0xc8c18b12 blk_mq_rq_cpu +EXPORT_SYMBOL vmlinux 0xc8c39566 __inet_stream_connect +EXPORT_SYMBOL vmlinux 0xc8c5fa94 dquot_resume EXPORT_SYMBOL vmlinux 0xc8ce25f5 ucc_fast_dump_regs -EXPORT_SYMBOL vmlinux 0xc8ee86c6 km_policy_notify -EXPORT_SYMBOL vmlinux 0xc90495bd watchdog_unregister_governor -EXPORT_SYMBOL vmlinux 0xc9162cb1 mark_page_accessed +EXPORT_SYMBOL vmlinux 0xc8e735b3 dquot_quota_sync +EXPORT_SYMBOL vmlinux 0xc8ea4901 __skb_checksum_complete_head +EXPORT_SYMBOL vmlinux 0xc8fa76a2 __lock_buffer EXPORT_SYMBOL vmlinux 0xc916dd46 __SCK__tp_func_kmalloc -EXPORT_SYMBOL vmlinux 0xc91d184b md_bitmap_cond_end_sync -EXPORT_SYMBOL vmlinux 0xc92275b8 delete_from_page_cache -EXPORT_SYMBOL vmlinux 0xc924248d dev_activate -EXPORT_SYMBOL vmlinux 0xc935984a input_get_poll_interval -EXPORT_SYMBOL vmlinux 0xc93b10d6 wait_on_page_bit_killable -EXPORT_SYMBOL vmlinux 0xc94243ca phy_set_max_speed -EXPORT_SYMBOL vmlinux 0xc94411eb add_watch_to_object +EXPORT_SYMBOL vmlinux 0xc926cd49 pci_find_parent_resource +EXPORT_SYMBOL vmlinux 0xc92ade81 security_lock_kernel_down +EXPORT_SYMBOL vmlinux 0xc933a136 mdio_device_register EXPORT_SYMBOL vmlinux 0xc94d8e3b iomem_resource -EXPORT_SYMBOL vmlinux 0xc9535b17 mdio_device_remove -EXPORT_SYMBOL vmlinux 0xc9596f94 inet6_ioctl +EXPORT_SYMBOL vmlinux 0xc95930b0 begin_new_exec +EXPORT_SYMBOL vmlinux 0xc959a517 clocksource_unregister EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters +EXPORT_SYMBOL vmlinux 0xc968d568 devm_memunmap EXPORT_SYMBOL vmlinux 0xc972449f mempool_alloc_slab -EXPORT_SYMBOL vmlinux 0xc97266ee nand_ecc_is_strong_enough EXPORT_SYMBOL vmlinux 0xc9822234 clk_register_clkdev EXPORT_SYMBOL vmlinux 0xc9831ad7 flow_keys_dissector -EXPORT_SYMBOL vmlinux 0xc98e16a8 neigh_xmit +EXPORT_SYMBOL vmlinux 0xc9895e95 inet_frag_reasm_finish EXPORT_SYMBOL vmlinux 0xc99e2a55 twl_rev -EXPORT_SYMBOL vmlinux 0xc9a40b76 pci_match_id -EXPORT_SYMBOL vmlinux 0xc9b0f951 inet_rtx_syn_ack -EXPORT_SYMBOL vmlinux 0xc9c4398f filemap_fdatawrite +EXPORT_SYMBOL vmlinux 0xc9a0106b sock_diag_put_filterinfo +EXPORT_SYMBOL vmlinux 0xc9c56f9d gnet_stats_finish_copy EXPORT_SYMBOL vmlinux 0xc9ca3698 register_sysctl_table -EXPORT_SYMBOL vmlinux 0xc9d13377 pagecache_isize_extended +EXPORT_SYMBOL vmlinux 0xc9cb901c xsk_clear_tx_need_wakeup EXPORT_SYMBOL vmlinux 0xc9df055a xfrm_policy_walk_init +EXPORT_SYMBOL vmlinux 0xc9e4ff54 __dev_get_by_name +EXPORT_SYMBOL vmlinux 0xc9e5fe67 xfrm_state_lookup_byaddr EXPORT_SYMBOL vmlinux 0xc9ed0401 imx_sc_rm_is_resource_owned +EXPORT_SYMBOL vmlinux 0xca006ef5 of_find_node_by_phandle +EXPORT_SYMBOL vmlinux 0xca0c8d84 of_device_register EXPORT_SYMBOL vmlinux 0xca21ebd3 bitmap_free -EXPORT_SYMBOL vmlinux 0xca2625dd tegra_ahb_enable_smmu -EXPORT_SYMBOL vmlinux 0xca26b7f4 xsk_uses_need_wakeup -EXPORT_SYMBOL vmlinux 0xca27020a snd_device_new +EXPORT_SYMBOL vmlinux 0xca308661 skb_headers_offset_update +EXPORT_SYMBOL vmlinux 0xca3e9e44 register_tcf_proto_ops EXPORT_SYMBOL vmlinux 0xca431c05 wake_bit_function -EXPORT_SYMBOL vmlinux 0xca47acaf rdmacg_uncharge -EXPORT_SYMBOL vmlinux 0xca5894cf page_cache_next_miss EXPORT_SYMBOL vmlinux 0xca5a7528 down_interruptible -EXPORT_SYMBOL vmlinux 0xca5cfa6f blk_mq_start_stopped_hw_queues +EXPORT_SYMBOL vmlinux 0xca7c88ce mmc_card_is_blockaddr +EXPORT_SYMBOL vmlinux 0xca7ee9b2 fault_in_writeable EXPORT_SYMBOL vmlinux 0xca813ce6 LZ4_decompress_safe_continue -EXPORT_SYMBOL vmlinux 0xca8be05d give_up_console +EXPORT_SYMBOL vmlinux 0xca935fc4 of_graph_is_present EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next -EXPORT_SYMBOL vmlinux 0xcab6588b ethtool_op_get_link -EXPORT_SYMBOL vmlinux 0xcac9326e flow_rule_match_icmp -EXPORT_SYMBOL vmlinux 0xcae3ad94 pci_select_bars +EXPORT_SYMBOL vmlinux 0xcaa2f50b sync_blockdev +EXPORT_SYMBOL vmlinux 0xcaa9e969 tcp_poll +EXPORT_SYMBOL vmlinux 0xcace66b5 input_allocate_device +EXPORT_SYMBOL vmlinux 0xcad13654 __fib6_flush_trees EXPORT_SYMBOL vmlinux 0xcaf2c603 scsi_sd_pm_domain EXPORT_SYMBOL vmlinux 0xcafe072b qcom_scm_io_writel -EXPORT_SYMBOL vmlinux 0xcafeff56 pcie_print_link_status -EXPORT_SYMBOL vmlinux 0xcb000b58 tcf_get_next_chain EXPORT_SYMBOL vmlinux 0xcb0288ea ledtrig_cpu EXPORT_SYMBOL vmlinux 0xcb071053 nla_append -EXPORT_SYMBOL vmlinux 0xcb0d111c blk_mq_alloc_request -EXPORT_SYMBOL vmlinux 0xcb17fd1c truncate_inode_pages_range -EXPORT_SYMBOL vmlinux 0xcb1d7391 mmc_erase_group_aligned -EXPORT_SYMBOL vmlinux 0xcb2053a6 inode_init_always -EXPORT_SYMBOL vmlinux 0xcb382276 mdiobus_is_registered_device +EXPORT_SYMBOL vmlinux 0xcb285504 arm_coherent_dma_ops EXPORT_SYMBOL vmlinux 0xcb3ae215 call_blocking_lsm_notifier -EXPORT_SYMBOL vmlinux 0xcb4770fd security_d_instantiate +EXPORT_SYMBOL vmlinux 0xcb408f31 md_bitmap_end_sync +EXPORT_SYMBOL vmlinux 0xcb40d998 amba_device_register +EXPORT_SYMBOL vmlinux 0xcb452542 netdev_upper_dev_link EXPORT_SYMBOL vmlinux 0xcb510bc2 complete_all -EXPORT_SYMBOL vmlinux 0xcb5a65ce vc_cons +EXPORT_SYMBOL vmlinux 0xcb564161 netdev_has_upper_dev_all_rcu +EXPORT_SYMBOL vmlinux 0xcb5bce1a inet_select_addr EXPORT_SYMBOL vmlinux 0xcb606eb9 xa_load -EXPORT_SYMBOL vmlinux 0xcb664c32 jbd2_journal_check_available_features -EXPORT_SYMBOL vmlinux 0xcb6e9130 __cleancache_invalidate_inode -EXPORT_SYMBOL vmlinux 0xcb76df7f blk_put_request +EXPORT_SYMBOL vmlinux 0xcb71c15e dma_unmap_page_attrs EXPORT_SYMBOL vmlinux 0xcb8c753b mempool_exit +EXPORT_SYMBOL vmlinux 0xcb99b5b1 uart_write_wakeup +EXPORT_SYMBOL vmlinux 0xcbb6751d fscrypt_free_inode +EXPORT_SYMBOL vmlinux 0xcbc0d561 devm_mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0xcbcac993 twl6040_reg_write +EXPORT_SYMBOL vmlinux 0xcbd23dfa flow_block_cb_priv +EXPORT_SYMBOL vmlinux 0xcbd2d4d1 free_inode_nonrcu EXPORT_SYMBOL vmlinux 0xcbd4898c fortify_panic -EXPORT_SYMBOL vmlinux 0xcbdbfa25 scsi_host_busy EXPORT_SYMBOL vmlinux 0xcbf1dbd0 utf8len -EXPORT_SYMBOL vmlinux 0xcbffaac0 __frontswap_test -EXPORT_SYMBOL vmlinux 0xcc059c6d of_get_child_by_name -EXPORT_SYMBOL vmlinux 0xcc1fc229 ppp_input +EXPORT_SYMBOL vmlinux 0xcbfdd23b __ClearPageMovable +EXPORT_SYMBOL vmlinux 0xcc098287 flow_rule_match_enc_ipv4_addrs +EXPORT_SYMBOL vmlinux 0xcc0fb983 mmc_cqe_start_req EXPORT_SYMBOL vmlinux 0xcc248d26 serial8250_suspend_port +EXPORT_SYMBOL vmlinux 0xcc2792bb rproc_coredump_add_custom_segment EXPORT_SYMBOL vmlinux 0xcc30f0f1 tcp_tx_delay_enabled +EXPORT_SYMBOL vmlinux 0xcc39609b mdio_device_remove EXPORT_SYMBOL vmlinux 0xcc3b2cc9 __sg_page_iter_dma_next -EXPORT_SYMBOL vmlinux 0xcc423bb2 pci_free_irq +EXPORT_SYMBOL vmlinux 0xcc3b8af7 dump_page +EXPORT_SYMBOL vmlinux 0xcc440e14 fb_set_suspend +EXPORT_SYMBOL vmlinux 0xcc47d1f0 tty_port_close EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible +EXPORT_SYMBOL vmlinux 0xcc564d47 mipi_dsi_attach EXPORT_SYMBOL vmlinux 0xcc5d22d9 can_do_mlock -EXPORT_SYMBOL vmlinux 0xcc68f83b pci_enable_atomic_ops_to_root EXPORT_SYMBOL vmlinux 0xcc6a729f snd_ctl_enum_info -EXPORT_SYMBOL vmlinux 0xcc865ebd security_tun_dev_attach -EXPORT_SYMBOL vmlinux 0xcc8921ac param_get_hexint -EXPORT_SYMBOL vmlinux 0xcc988227 eth_prepare_mac_addr_change -EXPORT_SYMBOL vmlinux 0xcca538e4 clk_hw_get_clk -EXPORT_SYMBOL vmlinux 0xccb5cb01 xfrm_if_register_cb -EXPORT_SYMBOL vmlinux 0xccb727ef pcibios_resource_to_bus -EXPORT_SYMBOL vmlinux 0xccbc2371 sync_mapping_buffers -EXPORT_SYMBOL vmlinux 0xccd95308 rproc_put +EXPORT_SYMBOL vmlinux 0xcc9336c7 inode_insert5 EXPORT_SYMBOL vmlinux 0xcce8bc18 efi -EXPORT_SYMBOL vmlinux 0xccf5b909 xp_dma_map EXPORT_SYMBOL vmlinux 0xccfb9e07 dst_default_metrics EXPORT_SYMBOL vmlinux 0xccfd2ebc scsi_dev_info_list_del_keyed EXPORT_SYMBOL vmlinux 0xcd00abbc add_wait_queue_exclusive -EXPORT_SYMBOL vmlinux 0xcd027f04 phy_reset_after_clk_enable -EXPORT_SYMBOL vmlinux 0xcd031bf0 from_kuid +EXPORT_SYMBOL vmlinux 0xcd063e2b ipv6_setsockopt EXPORT_SYMBOL vmlinux 0xcd083b10 unregister_sound_dsp -EXPORT_SYMBOL vmlinux 0xcd08b9c4 vfs_create_mount -EXPORT_SYMBOL vmlinux 0xcd265ef5 inode_init_once +EXPORT_SYMBOL vmlinux 0xcd175f57 tcf_em_tree_destroy EXPORT_SYMBOL vmlinux 0xcd279169 nla_find -EXPORT_SYMBOL vmlinux 0xcd2fab13 cdc_parse_cdc_header EXPORT_SYMBOL vmlinux 0xcd30b95a tmio_core_mmc_clk_div -EXPORT_SYMBOL vmlinux 0xcd4e47af pci_irq_vector -EXPORT_SYMBOL vmlinux 0xcd4e5c95 blk_mq_init_allocated_queue -EXPORT_SYMBOL vmlinux 0xcd554ac7 snd_pcm_hw_constraint_pow2 -EXPORT_SYMBOL vmlinux 0xcd57499d d_alloc_name +EXPORT_SYMBOL vmlinux 0xcd32162d get_tz_trend +EXPORT_SYMBOL vmlinux 0xcd36c2fb pci_request_regions_exclusive +EXPORT_SYMBOL vmlinux 0xcd3837a0 __post_watch_notification +EXPORT_SYMBOL vmlinux 0xcd3e04a9 file_remove_privs +EXPORT_SYMBOL vmlinux 0xcd4e71b9 simple_rename EXPORT_SYMBOL vmlinux 0xcd63c845 __aeabi_lasr -EXPORT_SYMBOL vmlinux 0xcd6c5877 devm_clk_get -EXPORT_SYMBOL vmlinux 0xcd707963 jbd2_journal_dirty_metadata -EXPORT_SYMBOL vmlinux 0xcd874006 vme_register_bridge -EXPORT_SYMBOL vmlinux 0xcdb01bbe __dev_get_by_flags +EXPORT_SYMBOL vmlinux 0xcd69762f bioset_init_from_src +EXPORT_SYMBOL vmlinux 0xcd797d90 mipi_dsi_device_unregister +EXPORT_SYMBOL vmlinux 0xcd7a175a tcp_setsockopt +EXPORT_SYMBOL vmlinux 0xcd807077 snd_pcm_hw_constraint_list +EXPORT_SYMBOL vmlinux 0xcdb614a3 xfrm6_input_addr +EXPORT_SYMBOL vmlinux 0xcdc2810d inet_frag_find EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel -EXPORT_SYMBOL vmlinux 0xcdd58830 phy_ethtool_set_eee -EXPORT_SYMBOL vmlinux 0xcdd99468 sock_set_priority -EXPORT_SYMBOL vmlinux 0xcde350fc tcf_idr_search +EXPORT_SYMBOL vmlinux 0xcdc7a6d5 napi_schedule_prep +EXPORT_SYMBOL vmlinux 0xcdcf405b unregister_cdrom +EXPORT_SYMBOL vmlinux 0xcdcf9ba1 phy_init_eee +EXPORT_SYMBOL vmlinux 0xcdd5e473 iget_failed +EXPORT_SYMBOL vmlinux 0xcdd7a403 devm_nvmem_unregister +EXPORT_SYMBOL vmlinux 0xcddb3797 rproc_elf_find_loaded_rsc_table +EXPORT_SYMBOL vmlinux 0xcde5d71b of_iomap EXPORT_SYMBOL vmlinux 0xcde77bcc free_opal_dev -EXPORT_SYMBOL vmlinux 0xcdf281cb amba_device_unregister -EXPORT_SYMBOL vmlinux 0xce008a8e __mmap_lock_do_trace_acquire_returned -EXPORT_SYMBOL vmlinux 0xce05b824 vga_get -EXPORT_SYMBOL vmlinux 0xce17dbf4 __icmp_send -EXPORT_SYMBOL vmlinux 0xce1afb6f mdio_driver_register -EXPORT_SYMBOL vmlinux 0xce1cb129 blk_mq_delay_run_hw_queue +EXPORT_SYMBOL vmlinux 0xcdf35221 pci_unregister_driver +EXPORT_SYMBOL vmlinux 0xcdf76744 phy_drivers_register EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake -EXPORT_SYMBOL vmlinux 0xce2946fa param_ops_ullong -EXPORT_SYMBOL vmlinux 0xce367241 genphy_resume EXPORT_SYMBOL vmlinux 0xce3ca308 copy_from_user_toio -EXPORT_SYMBOL vmlinux 0xce442f44 dcb_ieee_getapp_default_prio_mask -EXPORT_SYMBOL vmlinux 0xce4973c7 __cleancache_put_page +EXPORT_SYMBOL vmlinux 0xce3fa3b3 phy_set_max_speed EXPORT_SYMBOL vmlinux 0xce4cdb8e fb_find_best_mode -EXPORT_SYMBOL vmlinux 0xce52d75f dump_skip EXPORT_SYMBOL vmlinux 0xce5ac24f zlib_inflate_workspacesize -EXPORT_SYMBOL vmlinux 0xce5d2752 dmaenginem_async_device_register -EXPORT_SYMBOL vmlinux 0xce61a81b neigh_direct_output -EXPORT_SYMBOL vmlinux 0xce682283 xp_free -EXPORT_SYMBOL vmlinux 0xce691e4e device_match_acpi_dev +EXPORT_SYMBOL vmlinux 0xce5ed13c tty_name +EXPORT_SYMBOL vmlinux 0xce65fbab eth_platform_get_mac_address EXPORT_SYMBOL vmlinux 0xce731b34 ucc_slow_get_qe_cr_subblock -EXPORT_SYMBOL vmlinux 0xce77baf7 tcp_conn_request -EXPORT_SYMBOL vmlinux 0xce7f6c3a tty_port_carrier_raised -EXPORT_SYMBOL vmlinux 0xce90d72d PDE_DATA +EXPORT_SYMBOL vmlinux 0xce97cc31 genl_register_family EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul EXPORT_SYMBOL vmlinux 0xceabee8a __put_cred -EXPORT_SYMBOL vmlinux 0xcebccf75 fd_install -EXPORT_SYMBOL vmlinux 0xcec80316 tcf_action_dump_1 +EXPORT_SYMBOL vmlinux 0xceaf08c9 flow_rule_match_ipv6_addrs +EXPORT_SYMBOL vmlinux 0xcebd0ba7 hmm_range_fault +EXPORT_SYMBOL vmlinux 0xced86d14 inet_csk_reqsk_queue_drop_and_put EXPORT_SYMBOL vmlinux 0xcedc99af mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0xcede46cd simple_transaction_read +EXPORT_SYMBOL vmlinux 0xcee08809 cfb_fillrect +EXPORT_SYMBOL vmlinux 0xcee6d339 __skb_free_datagram_locked +EXPORT_SYMBOL vmlinux 0xcee7aa9b __seq_open_private EXPORT_SYMBOL vmlinux 0xceec8abd __mb_cache_entry_free -EXPORT_SYMBOL vmlinux 0xcef3cb39 bio_integrity_trim -EXPORT_SYMBOL vmlinux 0xcef48273 pci_msix_vec_count EXPORT_SYMBOL vmlinux 0xcefcd99a serial8250_unregister_port -EXPORT_SYMBOL vmlinux 0xcefe414b gnet_stats_copy_queue +EXPORT_SYMBOL vmlinux 0xcefe2545 tcp_syn_ack_timeout EXPORT_SYMBOL vmlinux 0xcf01f610 panic_notifier_list -EXPORT_SYMBOL vmlinux 0xcf0b0c79 devm_extcon_unregister_notifier_all -EXPORT_SYMBOL vmlinux 0xcf0fee3d md_bitmap_sync_with_cluster -EXPORT_SYMBOL vmlinux 0xcf48960d pci_read_config_byte -EXPORT_SYMBOL vmlinux 0xcf4d7a81 phy_get_pause -EXPORT_SYMBOL vmlinux 0xcf5f0792 bio_devname -EXPORT_SYMBOL vmlinux 0xcf65d59f md_integrity_register -EXPORT_SYMBOL vmlinux 0xcf6eb540 netdev_lower_get_next -EXPORT_SYMBOL vmlinux 0xcf79a40c cros_ec_prepare_tx -EXPORT_SYMBOL vmlinux 0xcf7d33b1 skb_coalesce_rx_frag +EXPORT_SYMBOL vmlinux 0xcf0b414b zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0xcf128085 md_unregister_thread +EXPORT_SYMBOL vmlinux 0xcf26ba15 netdev_refcnt_read +EXPORT_SYMBOL vmlinux 0xcf566bbe tcp_sock_set_cork +EXPORT_SYMBOL vmlinux 0xcf5e146b param_set_short EXPORT_SYMBOL vmlinux 0xcf7e1d1d hdmi_vendor_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0xcf85a2f6 pcie_get_width_cap EXPORT_SYMBOL vmlinux 0xcf86cdac queue_delayed_work_on -EXPORT_SYMBOL vmlinux 0xcf93cb22 blk_queue_bounce_limit EXPORT_SYMBOL vmlinux 0xcf9b558d touchscreen_set_mt_pos -EXPORT_SYMBOL vmlinux 0xcf9f9a60 tty_register_driver EXPORT_SYMBOL vmlinux 0xcfa69a7e atomic_dec_and_mutex_lock -EXPORT_SYMBOL vmlinux 0xcfad4dda seq_read_iter -EXPORT_SYMBOL vmlinux 0xcfad76ff proc_set_size +EXPORT_SYMBOL vmlinux 0xcfa8969d udp_pre_connect +EXPORT_SYMBOL vmlinux 0xcfaff9d5 seq_path +EXPORT_SYMBOL vmlinux 0xcfb23085 inet_del_protocol +EXPORT_SYMBOL vmlinux 0xcfb2d810 get_tree_single_reconf EXPORT_SYMBOL vmlinux 0xcfb9e0e3 ioremap_page -EXPORT_SYMBOL vmlinux 0xcfd5fd51 cfb_copyarea -EXPORT_SYMBOL vmlinux 0xd00062d1 xfrm_state_delete_tunnel -EXPORT_SYMBOL vmlinux 0xd008502b of_find_net_device_by_node -EXPORT_SYMBOL vmlinux 0xd00d1c09 zap_page_range -EXPORT_SYMBOL vmlinux 0xd02db14f bio_free_pages +EXPORT_SYMBOL vmlinux 0xcfc28fd8 generic_perform_write +EXPORT_SYMBOL vmlinux 0xcfd211a1 ppp_register_net_channel +EXPORT_SYMBOL vmlinux 0xcfe02582 pcim_iomap_table +EXPORT_SYMBOL vmlinux 0xcff377af __alloc_skb +EXPORT_SYMBOL vmlinux 0xcffa04c0 dm_get_device +EXPORT_SYMBOL vmlinux 0xcfffec83 ipv4_specific +EXPORT_SYMBOL vmlinux 0xd01e1f76 input_unregister_device +EXPORT_SYMBOL vmlinux 0xd03018c3 __fs_parse +EXPORT_SYMBOL vmlinux 0xd0303b7e flow_rule_match_enc_ip +EXPORT_SYMBOL vmlinux 0xd03ae965 snd_compr_malloc_pages EXPORT_SYMBOL vmlinux 0xd04c1a64 sysctl_devconf_inherit_init_net -EXPORT_SYMBOL vmlinux 0xd04f5b8f pcim_iomap_regions EXPORT_SYMBOL vmlinux 0xd04febe9 arm_elf_read_implies_exec EXPORT_SYMBOL vmlinux 0xd0654aba woken_wake_function -EXPORT_SYMBOL vmlinux 0xd06aedf4 get_cached_acl_rcu -EXPORT_SYMBOL vmlinux 0xd074e61d phy_read_mmd EXPORT_SYMBOL vmlinux 0xd0760fc0 kfree_sensitive -EXPORT_SYMBOL vmlinux 0xd07c870a stream_open -EXPORT_SYMBOL vmlinux 0xd08efc4c devfreq_monitor_resume +EXPORT_SYMBOL vmlinux 0xd07f7789 blkdev_put +EXPORT_SYMBOL vmlinux 0xd0ab162c netdev_notice EXPORT_SYMBOL vmlinux 0xd0ae5f55 __printk_cpu_trylock -EXPORT_SYMBOL vmlinux 0xd0d962f6 qdisc_watchdog_init_clockid -EXPORT_SYMBOL vmlinux 0xd0db24bb md_reap_sync_thread -EXPORT_SYMBOL vmlinux 0xd0dd6c72 fscrypt_ioctl_get_policy +EXPORT_SYMBOL vmlinux 0xd0bdd4c2 genlmsg_multicast_allns EXPORT_SYMBOL vmlinux 0xd0e9fb09 release_firmware -EXPORT_SYMBOL vmlinux 0xd0ed35d0 d_instantiate_anon -EXPORT_SYMBOL vmlinux 0xd10310aa remove_conflicting_pci_framebuffers -EXPORT_SYMBOL vmlinux 0xd106ec80 rproc_elf_get_boot_addr +EXPORT_SYMBOL vmlinux 0xd0fc79e2 vlan_dev_real_dev +EXPORT_SYMBOL vmlinux 0xd105ad4d snd_dma_alloc_pages +EXPORT_SYMBOL vmlinux 0xd110400b inet_csk_reqsk_queue_add EXPORT_SYMBOL vmlinux 0xd1119f21 __tracepoint_spi_transfer_stop -EXPORT_SYMBOL vmlinux 0xd118e7e0 __sock_cmsg_send -EXPORT_SYMBOL vmlinux 0xd1278ddc blk_rq_unmap_user +EXPORT_SYMBOL vmlinux 0xd114a3f9 eth_type_trans +EXPORT_SYMBOL vmlinux 0xd118b9fa of_find_backlight_by_node +EXPORT_SYMBOL vmlinux 0xd1206a80 tty_unregister_ldisc +EXPORT_SYMBOL vmlinux 0xd12ca7ce fs_context_for_mount EXPORT_SYMBOL vmlinux 0xd1363cc1 ucs2_strsize -EXPORT_SYMBOL vmlinux 0xd13ede6a bioset_init_from_src -EXPORT_SYMBOL vmlinux 0xd13f56ff write_inode_now -EXPORT_SYMBOL vmlinux 0xd16dd4da qdisc_offload_graft_helper +EXPORT_SYMBOL vmlinux 0xd164f2ab inode_owner_or_capable EXPORT_SYMBOL vmlinux 0xd1816f32 frontswap_writethrough -EXPORT_SYMBOL vmlinux 0xd18df2e4 vm_map_ram -EXPORT_SYMBOL vmlinux 0xd19c033c inode_add_bytes -EXPORT_SYMBOL vmlinux 0xd1a07784 blk_mq_queue_stopped +EXPORT_SYMBOL vmlinux 0xd183552b dup_iter +EXPORT_SYMBOL vmlinux 0xd191a1ac phy_device_register EXPORT_SYMBOL vmlinux 0xd1abe064 sg_copy_to_buffer -EXPORT_SYMBOL vmlinux 0xd1ca2b63 i2c_smbus_xfer -EXPORT_SYMBOL vmlinux 0xd1cf7041 import_single_range +EXPORT_SYMBOL vmlinux 0xd1b371cb ilookup5 +EXPORT_SYMBOL vmlinux 0xd1c3f371 finalize_exec EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string -EXPORT_SYMBOL vmlinux 0xd1dda3e4 alloc_file_pseudo -EXPORT_SYMBOL vmlinux 0xd1ed4fab phy_modify_paged_changed +EXPORT_SYMBOL vmlinux 0xd1dadaf8 ps2_end_command +EXPORT_SYMBOL vmlinux 0xd1db5b83 buffer_migrate_page EXPORT_SYMBOL vmlinux 0xd2051916 qcom_scm_cpu_power_down -EXPORT_SYMBOL vmlinux 0xd2068a3c param_get_int -EXPORT_SYMBOL vmlinux 0xd21b8fea eth_header -EXPORT_SYMBOL vmlinux 0xd22c1512 pci_fixup_cardbus -EXPORT_SYMBOL vmlinux 0xd2308cf2 __scm_destroy -EXPORT_SYMBOL vmlinux 0xd233c537 __dev_set_mtu +EXPORT_SYMBOL vmlinux 0xd20ce298 default_llseek +EXPORT_SYMBOL vmlinux 0xd212a716 mmc_request_done +EXPORT_SYMBOL vmlinux 0xd216d156 netdev_unbind_sb_channel +EXPORT_SYMBOL vmlinux 0xd21f02cc nonseekable_open +EXPORT_SYMBOL vmlinux 0xd2266ca0 input_set_abs_params +EXPORT_SYMBOL vmlinux 0xd232ae98 uart_unregister_driver +EXPORT_SYMBOL vmlinux 0xd233698d pci_save_state +EXPORT_SYMBOL vmlinux 0xd2471c93 dma_sync_single_for_device EXPORT_SYMBOL vmlinux 0xd2582f8f __SCK__tp_func_mmap_lock_acquire_returned EXPORT_SYMBOL vmlinux 0xd25d4f74 console_blank_hook -EXPORT_SYMBOL vmlinux 0xd2726ee3 i2c_transfer_buffer_flags EXPORT_SYMBOL vmlinux 0xd2779731 blk_limits_io_min -EXPORT_SYMBOL vmlinux 0xd27a4cdc mmput_async EXPORT_SYMBOL vmlinux 0xd27b25dd blk_check_plugged -EXPORT_SYMBOL vmlinux 0xd2802c52 vme_register_driver -EXPORT_SYMBOL vmlinux 0xd281ad14 blk_pre_runtime_resume -EXPORT_SYMBOL vmlinux 0xd284fc5a i2c_smbus_read_i2c_block_data_or_emulated -EXPORT_SYMBOL vmlinux 0xd2a57f09 vfs_get_link -EXPORT_SYMBOL vmlinux 0xd2b8b95d seg6_hmac_net_exit -EXPORT_SYMBOL vmlinux 0xd2d31802 xfrm_state_register_afinfo -EXPORT_SYMBOL vmlinux 0xd2d3c004 pldmfw_op_pci_match_record +EXPORT_SYMBOL vmlinux 0xd2800691 nf_conntrack_destroy +EXPORT_SYMBOL vmlinux 0xd29ec251 md_check_no_bitmap +EXPORT_SYMBOL vmlinux 0xd2a82559 fs_param_is_s32 +EXPORT_SYMBOL vmlinux 0xd2cf3c32 __dev_remove_pack EXPORT_SYMBOL vmlinux 0xd2da1048 register_netdevice_notifier -EXPORT_SYMBOL vmlinux 0xd2e5e70f mark_buffer_write_io_error EXPORT_SYMBOL vmlinux 0xd2eb32b9 tcp_rx_skb_cache_key -EXPORT_SYMBOL vmlinux 0xd2efe53b dquot_quota_on_mount -EXPORT_SYMBOL vmlinux 0xd30c82d0 __phy_read_mmd +EXPORT_SYMBOL vmlinux 0xd2f84c5f sk_net_capable +EXPORT_SYMBOL vmlinux 0xd2f85050 inet_put_port +EXPORT_SYMBOL vmlinux 0xd3030d05 tcf_unregister_action +EXPORT_SYMBOL vmlinux 0xd309344f param_set_ullong EXPORT_SYMBOL vmlinux 0xd31ccb06 of_machine_is_compatible EXPORT_SYMBOL vmlinux 0xd32d6c08 lockref_get -EXPORT_SYMBOL vmlinux 0xd332aa0a __free_pages +EXPORT_SYMBOL vmlinux 0xd3401acd skb_checksum_setup EXPORT_SYMBOL vmlinux 0xd35a6d31 mempool_kmalloc EXPORT_SYMBOL vmlinux 0xd35f75a1 match_string -EXPORT_SYMBOL vmlinux 0xd36112f1 seg6_hmac_info_del +EXPORT_SYMBOL vmlinux 0xd3610f74 input_grab_device EXPORT_SYMBOL vmlinux 0xd361cba4 gen_pool_dma_zalloc_align EXPORT_SYMBOL vmlinux 0xd36dc10c get_random_u32 -EXPORT_SYMBOL vmlinux 0xd37de21c netif_rx +EXPORT_SYMBOL vmlinux 0xd3818971 cad_pid +EXPORT_SYMBOL vmlinux 0xd387cdcc snd_pcm_period_elapsed_under_stream_lock +EXPORT_SYMBOL vmlinux 0xd391abd2 crypto_sha256_update +EXPORT_SYMBOL vmlinux 0xd39e751f audit_log EXPORT_SYMBOL vmlinux 0xd39fa6ab __kfifo_alloc -EXPORT_SYMBOL vmlinux 0xd39fb509 netif_receive_skb -EXPORT_SYMBOL vmlinux 0xd3b70bc3 tegra_dfll_suspend -EXPORT_SYMBOL vmlinux 0xd3bd8307 netdev_info -EXPORT_SYMBOL vmlinux 0xd3bf6715 kernel_write -EXPORT_SYMBOL vmlinux 0xd3d1c04f of_graph_get_remote_port_parent -EXPORT_SYMBOL vmlinux 0xd3d8c19a skb_queue_purge -EXPORT_SYMBOL vmlinux 0xd3dd36e5 pci_irq_get_affinity -EXPORT_SYMBOL vmlinux 0xd3e69207 inet_addr_type_dev_table +EXPORT_SYMBOL vmlinux 0xd3bda71b xsk_set_rx_need_wakeup EXPORT_SYMBOL vmlinux 0xd3eaf1ed devlink_dpipe_entry_clear -EXPORT_SYMBOL vmlinux 0xd3ee383a scsi_free_host_dev -EXPORT_SYMBOL vmlinux 0xd403f532 d_rehash +EXPORT_SYMBOL vmlinux 0xd3eecba3 tcp_release_cb +EXPORT_SYMBOL vmlinux 0xd3f21046 tso_build_hdr +EXPORT_SYMBOL vmlinux 0xd3f4ef0c scsi_is_target_device EXPORT_SYMBOL vmlinux 0xd406d266 fb_mode_is_equal -EXPORT_SYMBOL vmlinux 0xd40f469c skb_pull -EXPORT_SYMBOL vmlinux 0xd4296c34 ethtool_rx_flow_rule_create -EXPORT_SYMBOL vmlinux 0xd4329b14 simple_unlink -EXPORT_SYMBOL vmlinux 0xd440d0b4 dev_addr_del -EXPORT_SYMBOL vmlinux 0xd45cc72f iov_iter_kvec +EXPORT_SYMBOL vmlinux 0xd4227b53 mnt_set_expiry +EXPORT_SYMBOL vmlinux 0xd4238afa generic_shutdown_super +EXPORT_SYMBOL vmlinux 0xd42553dd cpu_user +EXPORT_SYMBOL vmlinux 0xd427ba68 jbd2_journal_force_commit_nested EXPORT_SYMBOL vmlinux 0xd45ddb66 kstrtobool_from_user -EXPORT_SYMBOL vmlinux 0xd468dec0 registered_fb EXPORT_SYMBOL vmlinux 0xd46b54dd flush_delayed_work -EXPORT_SYMBOL vmlinux 0xd4705d68 xp_raw_get_dma -EXPORT_SYMBOL vmlinux 0xd473c86c xp_set_rxq_info -EXPORT_SYMBOL vmlinux 0xd47e9bcf dev_uc_del -EXPORT_SYMBOL vmlinux 0xd481a143 scsi_host_lookup +EXPORT_SYMBOL vmlinux 0xd4751b29 mark_info_dirty EXPORT_SYMBOL vmlinux 0xd4835ef8 dmi_check_system EXPORT_SYMBOL vmlinux 0xd48fdeef dql_completed -EXPORT_SYMBOL vmlinux 0xd4903762 pagevec_lookup_range_tag -EXPORT_SYMBOL vmlinux 0xd49309f8 import_iovec -EXPORT_SYMBOL vmlinux 0xd493c23d trace_event_printf -EXPORT_SYMBOL vmlinux 0xd4a911a5 dev_uc_unsync +EXPORT_SYMBOL vmlinux 0xd4a4d20a neigh_lookup_nodev +EXPORT_SYMBOL vmlinux 0xd4a95ea7 task_work_add EXPORT_SYMBOL vmlinux 0xd4b1724a __nla_reserve +EXPORT_SYMBOL vmlinux 0xd4b467f9 vlan_uses_dev +EXPORT_SYMBOL vmlinux 0xd4b7db0b tcf_classify EXPORT_SYMBOL vmlinux 0xd4bb4a82 inet6addr_validator_notifier_call_chain -EXPORT_SYMBOL vmlinux 0xd4c34766 unregister_netdevice_queue +EXPORT_SYMBOL vmlinux 0xd4bce6b3 of_parse_phandle_with_args_map EXPORT_SYMBOL vmlinux 0xd4c369df __nla_reserve_nohdr -EXPORT_SYMBOL vmlinux 0xd4d64252 input_mt_init_slots +EXPORT_SYMBOL vmlinux 0xd4e2ac6a pci_msix_vec_count EXPORT_SYMBOL vmlinux 0xd4e2f0e4 gen_pool_set_algo -EXPORT_SYMBOL vmlinux 0xd4f533e4 __cancel_dirty_page -EXPORT_SYMBOL vmlinux 0xd4fbfaa1 rproc_elf_load_segments +EXPORT_SYMBOL vmlinux 0xd50d8343 page_pool_alloc_pages +EXPORT_SYMBOL vmlinux 0xd51825d5 pm_vt_switch_unregister +EXPORT_SYMBOL vmlinux 0xd51b17df add_to_page_cache_locked EXPORT_SYMBOL vmlinux 0xd5263820 mb_cache_destroy -EXPORT_SYMBOL vmlinux 0xd55a8bab xsk_get_pool_from_qid -EXPORT_SYMBOL vmlinux 0xd588c2f3 vfs_readlink -EXPORT_SYMBOL vmlinux 0xd5892019 nand_write_oob_std +EXPORT_SYMBOL vmlinux 0xd54d5acf jbd2_log_start_commit +EXPORT_SYMBOL vmlinux 0xd554e175 i2c_verify_adapter EXPORT_SYMBOL vmlinux 0xd58e70dd net_rand_noise -EXPORT_SYMBOL vmlinux 0xd5a06dd0 snd_pcm_hw_constraint_msbits -EXPORT_SYMBOL vmlinux 0xd5b23dc3 tc_setup_cb_add +EXPORT_SYMBOL vmlinux 0xd5933ba8 xp_free EXPORT_SYMBOL vmlinux 0xd5b3d0d5 xxh64_copy_state -EXPORT_SYMBOL vmlinux 0xd5cb9e6e pm_vt_switch_required -EXPORT_SYMBOL vmlinux 0xd5d5b262 dm_register_target -EXPORT_SYMBOL vmlinux 0xd5f09113 skb_mac_gso_segment +EXPORT_SYMBOL vmlinux 0xd5b8d529 tcp_ioctl +EXPORT_SYMBOL vmlinux 0xd5cacf3d from_kprojid_munged +EXPORT_SYMBOL vmlinux 0xd5cd57fa __sk_mem_reduce_allocated +EXPORT_SYMBOL vmlinux 0xd5f2f1c8 block_truncate_page EXPORT_SYMBOL vmlinux 0xd5f52d4f netdev_rss_key_fill EXPORT_SYMBOL vmlinux 0xd60736ec gf128mul_free_64k -EXPORT_SYMBOL vmlinux 0xd60b8221 get_user_pages_remote EXPORT_SYMBOL vmlinux 0xd627480b strncat -EXPORT_SYMBOL vmlinux 0xd62843bb nf_log_unbind_pf -EXPORT_SYMBOL vmlinux 0xd639bb46 page_cache_prev_miss +EXPORT_SYMBOL vmlinux 0xd637b512 netdev_lower_get_next_private_rcu +EXPORT_SYMBOL vmlinux 0xd63a815c dcb_ieee_setapp +EXPORT_SYMBOL vmlinux 0xd63b54fb mipi_dsi_dcs_set_page_address EXPORT_SYMBOL vmlinux 0xd63fafc2 div64_u64_rem +EXPORT_SYMBOL vmlinux 0xd63fe947 sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0xd64aabaf n_tty_ioctl_helper +EXPORT_SYMBOL vmlinux 0xd655e52b __SetPageMovable EXPORT_SYMBOL vmlinux 0xd6582ab0 xa_extract -EXPORT_SYMBOL vmlinux 0xd66b1a18 __kmap_local_page_prot -EXPORT_SYMBOL vmlinux 0xd6706a1e snd_timer_global_new -EXPORT_SYMBOL vmlinux 0xd674766e unregister_mtd_chip_driver -EXPORT_SYMBOL vmlinux 0xd682bd62 pci_find_parent_resource +EXPORT_SYMBOL vmlinux 0xd65d34ee qdisc_warn_nonwc +EXPORT_SYMBOL vmlinux 0xd666595b posix_lock_file +EXPORT_SYMBOL vmlinux 0xd67af1be skb_copy_bits +EXPORT_SYMBOL vmlinux 0xd6850a64 xfrm_state_walk_done EXPORT_SYMBOL vmlinux 0xd688716b dm_kcopyd_client_create -EXPORT_SYMBOL vmlinux 0xd688746e padata_do_parallel -EXPORT_SYMBOL vmlinux 0xd6965cb6 ppp_unregister_compressor +EXPORT_SYMBOL vmlinux 0xd68cbcdd sock_wake_async EXPORT_SYMBOL vmlinux 0xd6a91f54 twl_i2c_read EXPORT_SYMBOL vmlinux 0xd6bc04ff cmd_db_read_aux_data -EXPORT_SYMBOL vmlinux 0xd6bd934e read_code -EXPORT_SYMBOL vmlinux 0xd6c45164 mmc_put_card -EXPORT_SYMBOL vmlinux 0xd6cb6874 nand_ecc_sw_hamming_correct -EXPORT_SYMBOL vmlinux 0xd6d28c57 send_sig_info +EXPORT_SYMBOL vmlinux 0xd6d5399a dev_get_phys_port_id +EXPORT_SYMBOL vmlinux 0xd6e8da55 tcp_v4_do_rcv EXPORT_SYMBOL vmlinux 0xd6eaaea1 full_name_hash +EXPORT_SYMBOL vmlinux 0xd6ecbb3b scsi_free_host_dev EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc -EXPORT_SYMBOL vmlinux 0xd6f2461f fwnode_mdiobus_phy_device_register +EXPORT_SYMBOL vmlinux 0xd6f005f9 netlink_rcv_skb EXPORT_SYMBOL vmlinux 0xd6fde043 is_module_sig_enforced +EXPORT_SYMBOL vmlinux 0xd7051f0b proc_mkdir_mode EXPORT_SYMBOL vmlinux 0xd70d35a1 gf128mul_4k_bbe -EXPORT_SYMBOL vmlinux 0xd7184b5c udp6_seq_ops +EXPORT_SYMBOL vmlinux 0xd716f363 md_wait_for_blocked_rdev +EXPORT_SYMBOL vmlinux 0xd730decd ram_aops EXPORT_SYMBOL vmlinux 0xd738ca1b phy_unregister_fixup_for_uid -EXPORT_SYMBOL vmlinux 0xd75bdf07 d_alloc_parallel -EXPORT_SYMBOL vmlinux 0xd7635a5b of_chosen +EXPORT_SYMBOL vmlinux 0xd741782f tcp_fastopen_defer_connect +EXPORT_SYMBOL vmlinux 0xd7505b50 of_platform_device_create +EXPORT_SYMBOL vmlinux 0xd76a8aac no_seek_end_llseek EXPORT_SYMBOL vmlinux 0xd76f6099 vscnprintf -EXPORT_SYMBOL vmlinux 0xd78152ae xfrm6_rcv_spi -EXPORT_SYMBOL vmlinux 0xd78f862e jbd2_journal_update_sb_errno -EXPORT_SYMBOL vmlinux 0xd796c227 bioset_exit EXPORT_SYMBOL vmlinux 0xd797b9a5 vme_master_write -EXPORT_SYMBOL vmlinux 0xd798a810 mipi_dsi_compression_mode -EXPORT_SYMBOL vmlinux 0xd7ae658f input_unregister_device +EXPORT_SYMBOL vmlinux 0xd7b4e341 xfrm6_rcv +EXPORT_SYMBOL vmlinux 0xd7c71a4b sock_no_ioctl EXPORT_SYMBOL vmlinux 0xd7d280ad irq_poll_complete -EXPORT_SYMBOL vmlinux 0xd7d6b88b of_parse_phandle_with_args_map -EXPORT_SYMBOL vmlinux 0xd7dffc0f kmalloc_caches -EXPORT_SYMBOL vmlinux 0xd7e10669 rproc_get_by_phandle +EXPORT_SYMBOL vmlinux 0xd7e525ff __cleancache_init_fs EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll +EXPORT_SYMBOL vmlinux 0xd7e7a577 of_io_request_and_map EXPORT_SYMBOL vmlinux 0xd7ea7094 nf_unregister_queue_handler -EXPORT_SYMBOL vmlinux 0xd8037b6b bio_integrity_alloc -EXPORT_SYMBOL vmlinux 0xd80468ac phy_attached_print -EXPORT_SYMBOL vmlinux 0xd804fc65 unlock_buffer -EXPORT_SYMBOL vmlinux 0xd818982a __dquot_alloc_space -EXPORT_SYMBOL vmlinux 0xd819bbb2 pci_claim_resource -EXPORT_SYMBOL vmlinux 0xd821472d xfrm_state_insert -EXPORT_SYMBOL vmlinux 0xd8242dcc mr_mfc_find_any -EXPORT_SYMBOL vmlinux 0xd8250e77 fput +EXPORT_SYMBOL vmlinux 0xd7fd147f ip_defrag +EXPORT_SYMBOL vmlinux 0xd805029e read_cache_pages +EXPORT_SYMBOL vmlinux 0xd8110ef0 ipv6_dev_mc_dec +EXPORT_SYMBOL vmlinux 0xd81539c5 of_get_nand_ecc_user_config +EXPORT_SYMBOL vmlinux 0xd8255097 dev_remove_pack +EXPORT_SYMBOL vmlinux 0xd834acc9 inet_reqsk_alloc +EXPORT_SYMBOL vmlinux 0xd83b1873 simple_nosetlease EXPORT_SYMBOL vmlinux 0xd8410611 mempool_alloc -EXPORT_SYMBOL vmlinux 0xd842f84a call_fib_notifiers +EXPORT_SYMBOL vmlinux 0xd8692cd0 posix_acl_update_mode EXPORT_SYMBOL vmlinux 0xd86b61c4 _raw_spin_lock_irq +EXPORT_SYMBOL vmlinux 0xd8723cdc __cleancache_invalidate_fs EXPORT_SYMBOL vmlinux 0xd875584a __genradix_ptr -EXPORT_SYMBOL vmlinux 0xd8758424 fwnode_phy_find_device -EXPORT_SYMBOL vmlinux 0xd876fef2 __dev_get_by_name +EXPORT_SYMBOL vmlinux 0xd8839c1b phy_driver_unregister EXPORT_SYMBOL vmlinux 0xd89da37f movable_zone EXPORT_SYMBOL vmlinux 0xd89ee11f krait_set_l2_indirect_reg +EXPORT_SYMBOL vmlinux 0xd8a41428 vfs_dup_fs_context EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format -EXPORT_SYMBOL vmlinux 0xd8ae584f set_page_dirty -EXPORT_SYMBOL vmlinux 0xd8ae735d pci_alloc_host_bridge -EXPORT_SYMBOL vmlinux 0xd8b425f6 kernel_listen EXPORT_SYMBOL vmlinux 0xd8b61304 get_default_font -EXPORT_SYMBOL vmlinux 0xd8bb2829 module_layout -EXPORT_SYMBOL vmlinux 0xd8c1ef3d xfrm_parse_spi -EXPORT_SYMBOL vmlinux 0xd8f1200c generic_splice_sendpage -EXPORT_SYMBOL vmlinux 0xd8f20cbe phy_resume -EXPORT_SYMBOL vmlinux 0xd8f2f21a devm_free_irq -EXPORT_SYMBOL vmlinux 0xd91e61eb netif_set_xps_queue +EXPORT_SYMBOL vmlinux 0xd8bc2348 kthread_blkcg +EXPORT_SYMBOL vmlinux 0xd8c54c5b qdisc_create_dflt +EXPORT_SYMBOL vmlinux 0xd8c666a4 blk_mq_stop_hw_queue +EXPORT_SYMBOL vmlinux 0xd8d25284 jbd2_journal_extend +EXPORT_SYMBOL vmlinux 0xd8d27bac kfree_skb_list +EXPORT_SYMBOL vmlinux 0xd8ffb838 skb_queue_purge +EXPORT_SYMBOL vmlinux 0xd91b4c2f ihold EXPORT_SYMBOL vmlinux 0xd91f6ab6 strnlen_user -EXPORT_SYMBOL vmlinux 0xd93c2e26 snd_register_device +EXPORT_SYMBOL vmlinux 0xd9301439 pci_disable_msi +EXPORT_SYMBOL vmlinux 0xd93fc7fd blk_pre_runtime_resume EXPORT_SYMBOL vmlinux 0xd955d2b7 omap_set_dma_dest_data_pack -EXPORT_SYMBOL vmlinux 0xd95e1148 xfrm_policy_hash_rebuild -EXPORT_SYMBOL vmlinux 0xd977ef0b amba_find_device -EXPORT_SYMBOL vmlinux 0xd97d897f ww_mutex_lock -EXPORT_SYMBOL vmlinux 0xd97f972b pcie_set_mps +EXPORT_SYMBOL vmlinux 0xd96721cf dquot_initialize +EXPORT_SYMBOL vmlinux 0xd97a86c8 key_alloc EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages -EXPORT_SYMBOL vmlinux 0xd98f4e55 security_sctp_bind_connect -EXPORT_SYMBOL vmlinux 0xd99dfcec ilookup5 +EXPORT_SYMBOL vmlinux 0xd9a8dd96 ip_local_deliver +EXPORT_SYMBOL vmlinux 0xd9b35e4a of_parse_phandle_with_fixed_args EXPORT_SYMBOL vmlinux 0xd9b8eaea __SCK__tp_func_dma_fence_signaled +EXPORT_SYMBOL vmlinux 0xd9bcb8c4 dma_unmap_resource +EXPORT_SYMBOL vmlinux 0xd9cdb1ad devfreq_unregister_notifier EXPORT_SYMBOL vmlinux 0xd9ce8f0c strnlen +EXPORT_SYMBOL vmlinux 0xd9cfe471 rawnand_sw_bch_correct +EXPORT_SYMBOL vmlinux 0xd9d38622 ipv6_skip_exthdr EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler EXPORT_SYMBOL vmlinux 0xd9d952d1 crypto_aes_sbox -EXPORT_SYMBOL vmlinux 0xd9ece692 fb_blank +EXPORT_SYMBOL vmlinux 0xd9dc060a devm_extcon_unregister_notifier_all +EXPORT_SYMBOL vmlinux 0xd9e59152 snd_timer_start +EXPORT_SYMBOL vmlinux 0xd9f33289 phy_do_ioctl_running EXPORT_SYMBOL vmlinux 0xd9f69e4a ns_capable_setid -EXPORT_SYMBOL vmlinux 0xd9f87b55 __blockdev_direct_IO +EXPORT_SYMBOL vmlinux 0xd9fc7723 tegra_ivc_notified +EXPORT_SYMBOL vmlinux 0xda024dc5 make_kgid +EXPORT_SYMBOL vmlinux 0xda092245 jbd2_journal_set_triggers EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open -EXPORT_SYMBOL vmlinux 0xda6ad182 fscrypt_fname_disk_to_usr +EXPORT_SYMBOL vmlinux 0xda43d973 fwnode_phy_find_device +EXPORT_SYMBOL vmlinux 0xda47c321 serio_reconnect +EXPORT_SYMBOL vmlinux 0xda4acb8f tcp_create_openreq_child +EXPORT_SYMBOL vmlinux 0xda6bfa9b scsicam_bios_param EXPORT_SYMBOL vmlinux 0xda6fc0b3 __percpu_counter_compare EXPORT_SYMBOL vmlinux 0xda72a7ec ZSTD_nextInputType -EXPORT_SYMBOL vmlinux 0xda7cb1a4 padata_free +EXPORT_SYMBOL vmlinux 0xda7612f3 skb_expand_head +EXPORT_SYMBOL vmlinux 0xda7911af unregister_netdevice_notifier_dev_net EXPORT_SYMBOL vmlinux 0xda89ea3b ip_idents_reserve -EXPORT_SYMBOL vmlinux 0xda997b9e sock_enable_timestamps -EXPORT_SYMBOL vmlinux 0xdab4f3b3 flow_indr_dev_register -EXPORT_SYMBOL vmlinux 0xdabb1fad neigh_seq_next -EXPORT_SYMBOL vmlinux 0xdac1773c seg6_hmac_validate_skb +EXPORT_SYMBOL vmlinux 0xdabc64cd __blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0xdac05455 pci_bus_write_config_dword EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region -EXPORT_SYMBOL vmlinux 0xdacc908d netdev_master_upper_dev_link -EXPORT_SYMBOL vmlinux 0xdad26809 dma_resv_fini +EXPORT_SYMBOL vmlinux 0xdacabbe5 inet_release +EXPORT_SYMBOL vmlinux 0xdad45348 d_obtain_alias +EXPORT_SYMBOL vmlinux 0xdad7823e __kmap_local_page_prot EXPORT_SYMBOL vmlinux 0xdad97f94 __raw_writesw -EXPORT_SYMBOL vmlinux 0xdae2638b dm_kcopyd_copy -EXPORT_SYMBOL vmlinux 0xdae2c1e6 wait_on_page_bit -EXPORT_SYMBOL vmlinux 0xdaf5c325 register_shrinker -EXPORT_SYMBOL vmlinux 0xdaf5fa47 rproc_da_to_va +EXPORT_SYMBOL vmlinux 0xdadcc40c flush_dcache_page +EXPORT_SYMBOL vmlinux 0xdae67bb6 key_put +EXPORT_SYMBOL vmlinux 0xdaeeaa2e snd_soc_alloc_ac97_component EXPORT_SYMBOL vmlinux 0xdaf65445 vsnprintf -EXPORT_SYMBOL vmlinux 0xdb22906d begin_new_exec -EXPORT_SYMBOL vmlinux 0xdb40aef5 mipi_dsi_dcs_read -EXPORT_SYMBOL vmlinux 0xdb4c265c ipv6_chk_prefix -EXPORT_SYMBOL vmlinux 0xdb62345f gro_find_complete_by_type +EXPORT_SYMBOL vmlinux 0xdafb02d7 sock_create +EXPORT_SYMBOL vmlinux 0xdafc0ff3 tcf_action_check_ctrlact +EXPORT_SYMBOL vmlinux 0xdb1b51b9 pci_claim_resource +EXPORT_SYMBOL vmlinux 0xdb3c50e1 devfreq_remove_governor +EXPORT_SYMBOL vmlinux 0xdb408302 rps_may_expire_flow +EXPORT_SYMBOL vmlinux 0xdb42a207 mdio_driver_unregister +EXPORT_SYMBOL vmlinux 0xdb486130 neigh_sysctl_register EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy +EXPORT_SYMBOL vmlinux 0xdb760393 new_inode EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free EXPORT_SYMBOL vmlinux 0xdb81e2fc __wait_on_bit -EXPORT_SYMBOL vmlinux 0xdb8e7276 tegra_dfll_unregister -EXPORT_SYMBOL vmlinux 0xdb9084be tcf_block_put -EXPORT_SYMBOL vmlinux 0xdb91dbfd jbd2_journal_stop -EXPORT_SYMBOL vmlinux 0xdb94a6af clocksource_change_rating -EXPORT_SYMBOL vmlinux 0xdbcc4e10 xfrm_stateonly_find -EXPORT_SYMBOL vmlinux 0xdbce4224 blk_queue_split -EXPORT_SYMBOL vmlinux 0xdbddc5c8 set_anon_super -EXPORT_SYMBOL vmlinux 0xdbe23266 request_key_rcu -EXPORT_SYMBOL vmlinux 0xdc1334a6 no_seek_end_llseek +EXPORT_SYMBOL vmlinux 0xdb833d6f arp_send +EXPORT_SYMBOL vmlinux 0xdb89fc72 snd_timer_notify +EXPORT_SYMBOL vmlinux 0xdb924e87 nand_create_bbt +EXPORT_SYMBOL vmlinux 0xdb9ab9b7 open_exec +EXPORT_SYMBOL vmlinux 0xdba517b2 dma_async_device_unregister +EXPORT_SYMBOL vmlinux 0xdbb90310 reuseport_migrate_sock +EXPORT_SYMBOL vmlinux 0xdbcc49a3 dev_get_by_index_rcu +EXPORT_SYMBOL vmlinux 0xdbd2db4b tty_insert_flip_string_fixed_flag +EXPORT_SYMBOL vmlinux 0xdbd9976f alloc_fcdev +EXPORT_SYMBOL vmlinux 0xdbfa2023 xp_dma_sync_for_device_slow +EXPORT_SYMBOL vmlinux 0xdc10b7a9 cros_ec_get_next_event EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems -EXPORT_SYMBOL vmlinux 0xdc210333 kill_pgrp +EXPORT_SYMBOL vmlinux 0xdc19d4e2 complete_request_key EXPORT_SYMBOL vmlinux 0xdc258d02 cpumask_next_and -EXPORT_SYMBOL vmlinux 0xdc394946 snd_seq_root +EXPORT_SYMBOL vmlinux 0xdc2fea45 mipi_dsi_dcs_write_buffer EXPORT_SYMBOL vmlinux 0xdc3fcbc9 __sw_hweight8 EXPORT_SYMBOL vmlinux 0xdc430db2 gen_pool_dma_alloc_align -EXPORT_SYMBOL vmlinux 0xdc431332 nexthop_res_grp_activity_update -EXPORT_SYMBOL vmlinux 0xdc43a556 tag_pages_for_writeback EXPORT_SYMBOL vmlinux 0xdc49c198 reciprocal_value_adv -EXPORT_SYMBOL vmlinux 0xdc4ee5b8 qdisc_create_dflt EXPORT_SYMBOL vmlinux 0xdc512134 backlight_register_notifier EXPORT_SYMBOL vmlinux 0xdc5c7961 gen_pool_best_fit -EXPORT_SYMBOL vmlinux 0xdc5d4a71 pcie_get_speed_cap -EXPORT_SYMBOL vmlinux 0xdc732cfa d_alloc -EXPORT_SYMBOL vmlinux 0xdc7883dc pci_reenable_device +EXPORT_SYMBOL vmlinux 0xdc63eb58 pci_disable_link_state_locked +EXPORT_SYMBOL vmlinux 0xdc66c687 ptp_clock_index EXPORT_SYMBOL vmlinux 0xdc81901a wait_for_completion_io -EXPORT_SYMBOL vmlinux 0xdc923341 blk_post_runtime_suspend -EXPORT_SYMBOL vmlinux 0xdc971e06 genphy_aneg_done -EXPORT_SYMBOL vmlinux 0xdc99e618 genphy_c37_read_status -EXPORT_SYMBOL vmlinux 0xdca7b50c phy_aneg_done -EXPORT_SYMBOL vmlinux 0xdca7b603 tcf_qevent_init -EXPORT_SYMBOL vmlinux 0xdcd2834c bio_split -EXPORT_SYMBOL vmlinux 0xdcd3236c sock_init_data -EXPORT_SYMBOL vmlinux 0xdcde3f33 security_socket_getpeersec_dgram +EXPORT_SYMBOL vmlinux 0xdc944373 param_set_byte +EXPORT_SYMBOL vmlinux 0xdc9733b5 fwnode_irq_get +EXPORT_SYMBOL vmlinux 0xdcb33f52 blk_mq_init_allocated_queue +EXPORT_SYMBOL vmlinux 0xdcb6df50 skb_try_coalesce +EXPORT_SYMBOL vmlinux 0xdcc08b42 simple_recursive_removal +EXPORT_SYMBOL vmlinux 0xdccb0b75 nf_log_unregister +EXPORT_SYMBOL vmlinux 0xdccb714d dma_free_attrs +EXPORT_SYMBOL vmlinux 0xdccda016 try_to_writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0xdcd7c02f tcp_splice_read EXPORT_SYMBOL vmlinux 0xdcde7315 ucc_fast_free +EXPORT_SYMBOL vmlinux 0xdce967e2 max8925_reg_write EXPORT_SYMBOL vmlinux 0xdcf6d045 radix_tree_gang_lookup_tag_slot +EXPORT_SYMBOL vmlinux 0xdd029243 buffer_check_dirty_writeback EXPORT_SYMBOL vmlinux 0xdd0a2ba2 strlcat -EXPORT_SYMBOL vmlinux 0xdd0e53cb dma_unmap_page_attrs -EXPORT_SYMBOL vmlinux 0xdd13fa07 of_graph_get_next_endpoint +EXPORT_SYMBOL vmlinux 0xdd1f78ff sched_autogroup_detach EXPORT_SYMBOL vmlinux 0xdd226fa9 __raw_readsw -EXPORT_SYMBOL vmlinux 0xdd26ada7 tty_port_open EXPORT_SYMBOL vmlinux 0xdd27fa87 memchr EXPORT_SYMBOL vmlinux 0xdd2c169b mb_cache_create -EXPORT_SYMBOL vmlinux 0xdd4ebe48 max8925_set_bits -EXPORT_SYMBOL vmlinux 0xdd68a140 __wait_on_buffer -EXPORT_SYMBOL vmlinux 0xdd74d6fb inet6_offloads +EXPORT_SYMBOL vmlinux 0xdd2f1454 _snd_pcm_lib_alloc_vmalloc_buffer +EXPORT_SYMBOL vmlinux 0xdd5488a3 netdev_update_features +EXPORT_SYMBOL vmlinux 0xdd6519ee xfrm_spd_getinfo EXPORT_SYMBOL vmlinux 0xdd7e3192 qcom_scm_pas_auth_and_reset +EXPORT_SYMBOL vmlinux 0xdd7ead0a md_bitmap_start_sync EXPORT_SYMBOL vmlinux 0xdd81421f trace_print_symbols_seq_u64 EXPORT_SYMBOL vmlinux 0xdd849d51 scsi_get_sense_info_fld -EXPORT_SYMBOL vmlinux 0xdd89a00c devm_request_any_context_irq -EXPORT_SYMBOL vmlinux 0xdd8d7e86 ip_options_compile -EXPORT_SYMBOL vmlinux 0xddc4ecdc of_clk_get_by_name -EXPORT_SYMBOL vmlinux 0xddca870d rproc_of_parse_firmware -EXPORT_SYMBOL vmlinux 0xddf9fd8c param_get_ullong -EXPORT_SYMBOL vmlinux 0xde087425 _dev_info -EXPORT_SYMBOL vmlinux 0xde215e6f vfs_get_tree -EXPORT_SYMBOL vmlinux 0xde31b1df genphy_loopback +EXPORT_SYMBOL vmlinux 0xdd8c4735 kmem_cache_size +EXPORT_SYMBOL vmlinux 0xdd92ab70 ip_mc_check_igmp +EXPORT_SYMBOL vmlinux 0xdd93e3b9 vme_lm_request +EXPORT_SYMBOL vmlinux 0xdd980486 qdisc_tree_reduce_backlog +EXPORT_SYMBOL vmlinux 0xdd9ffb8a tcp_connect +EXPORT_SYMBOL vmlinux 0xddabf04d pci_set_mwi +EXPORT_SYMBOL vmlinux 0xddb27118 bioset_integrity_create +EXPORT_SYMBOL vmlinux 0xddc12313 tcp_ld_RTO_revert +EXPORT_SYMBOL vmlinux 0xddda9ea6 tcf_em_unregister +EXPORT_SYMBOL vmlinux 0xddebde87 unix_destruct_scm +EXPORT_SYMBOL vmlinux 0xddf54eb6 snd_device_free +EXPORT_SYMBOL vmlinux 0xddfa2ada fwnode_graph_parse_endpoint +EXPORT_SYMBOL vmlinux 0xde0b434b vfs_create_mount +EXPORT_SYMBOL vmlinux 0xde0b63a4 __module_get +EXPORT_SYMBOL vmlinux 0xde42eeb3 sk_stream_wait_connect EXPORT_SYMBOL vmlinux 0xde4bf88b __mutex_init EXPORT_SYMBOL vmlinux 0xde4d4ace dim_calc_stats +EXPORT_SYMBOL vmlinux 0xde543639 simple_statfs EXPORT_SYMBOL vmlinux 0xde55e795 _raw_spin_lock_irqsave -EXPORT_SYMBOL vmlinux 0xde56c9ee snd_component_add EXPORT_SYMBOL vmlinux 0xde59092a lockref_get_or_lock EXPORT_SYMBOL vmlinux 0xde5ae857 vme_slave_get -EXPORT_SYMBOL vmlinux 0xde6f7ddc file_update_time -EXPORT_SYMBOL vmlinux 0xdeb943ff register_cdrom -EXPORT_SYMBOL vmlinux 0xdec30779 nand_write_page_raw -EXPORT_SYMBOL vmlinux 0xdec73db1 sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0xde74a1ef snd_pcm_hw_rule_add +EXPORT_SYMBOL vmlinux 0xdeb24884 rproc_add_subdev +EXPORT_SYMBOL vmlinux 0xdec39c42 clear_nlink +EXPORT_SYMBOL vmlinux 0xdec854bb gnet_stats_copy_queue +EXPORT_SYMBOL vmlinux 0xded0c499 configfs_depend_item EXPORT_SYMBOL vmlinux 0xded39a6b gen_kill_estimator -EXPORT_SYMBOL vmlinux 0xdedf8cfb security_inode_init_security -EXPORT_SYMBOL vmlinux 0xdee5556c bioset_init -EXPORT_SYMBOL vmlinux 0xdee5c78a igrab +EXPORT_SYMBOL vmlinux 0xded4124b sock_wmalloc +EXPORT_SYMBOL vmlinux 0xdeddce52 pcibios_resource_to_bus +EXPORT_SYMBOL vmlinux 0xdee84723 tcf_qevent_handle EXPORT_SYMBOL vmlinux 0xdef7c893 fb_match_mode -EXPORT_SYMBOL vmlinux 0xdf091f34 dcb_ieee_getapp_dscp_prio_mask_map -EXPORT_SYMBOL vmlinux 0xdf10c6e4 end_buffer_async_write +EXPORT_SYMBOL vmlinux 0xdf0334a7 devm_clk_hw_register_clkdev +EXPORT_SYMBOL vmlinux 0xdf0ecdf6 submit_bio EXPORT_SYMBOL vmlinux 0xdf1897d2 mutex_lock_killable +EXPORT_SYMBOL vmlinux 0xdf263402 netif_napi_add +EXPORT_SYMBOL vmlinux 0xdf2b8bea pci_bus_claim_resources EXPORT_SYMBOL vmlinux 0xdf2c2742 rb_last -EXPORT_SYMBOL vmlinux 0xdf2ecd0a netdev_bonding_info_change EXPORT_SYMBOL vmlinux 0xdf3a693d crc_t10dif_update -EXPORT_SYMBOL vmlinux 0xdf48bc7b __traceiter_mmap_lock_start_locking -EXPORT_SYMBOL vmlinux 0xdf509700 pci_read_config_dword +EXPORT_SYMBOL vmlinux 0xdf4cb41d configfs_depend_item_unlocked EXPORT_SYMBOL vmlinux 0xdf52def1 ZSTD_DStreamInSize +EXPORT_SYMBOL vmlinux 0xdf531730 ipmi_platform_add EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier -EXPORT_SYMBOL vmlinux 0xdf6e91d5 mpage_readpage +EXPORT_SYMBOL vmlinux 0xdf652142 tegra_ivc_reset EXPORT_SYMBOL vmlinux 0xdf924a59 __tracepoint_kmem_cache_free EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid EXPORT_SYMBOL vmlinux 0xdf93b9d8 timespec64_to_jiffies -EXPORT_SYMBOL vmlinux 0xdf962098 mini_qdisc_pair_block_init -EXPORT_SYMBOL vmlinux 0xdfa4fe4f netdev_lower_get_next_private -EXPORT_SYMBOL vmlinux 0xdfb03885 kfree_skb_list -EXPORT_SYMBOL vmlinux 0xdfbf3fb1 dma_resv_add_shared_fence -EXPORT_SYMBOL vmlinux 0xdfc22ecb __inode_add_bytes -EXPORT_SYMBOL vmlinux 0xdfc335a7 __hw_addr_ref_unsync_dev +EXPORT_SYMBOL vmlinux 0xdfa8f772 page_get_link EXPORT_SYMBOL vmlinux 0xdfd91ce9 omap_type +EXPORT_SYMBOL vmlinux 0xdfdd6fbb xfrm6_rcv_tnl EXPORT_SYMBOL vmlinux 0xdfdfa9e7 utf8nfdi -EXPORT_SYMBOL vmlinux 0xdfe04530 fwnode_mdiobus_register_phy -EXPORT_SYMBOL vmlinux 0xdfecfdf4 dmaengine_get_unmap_data +EXPORT_SYMBOL vmlinux 0xdff7fbbb __break_lease EXPORT_SYMBOL vmlinux 0xdff905e5 vme_slave_free EXPORT_SYMBOL vmlinux 0xdffc80fc vesa_modes -EXPORT_SYMBOL vmlinux 0xe007742e vme_irq_free -EXPORT_SYMBOL vmlinux 0xe0220af3 page_pool_alloc_pages +EXPORT_SYMBOL vmlinux 0xe0237c79 kiocb_set_cancel_fn +EXPORT_SYMBOL vmlinux 0xe029ab1e mmc_cqe_recovery +EXPORT_SYMBOL vmlinux 0xe02ea712 generic_delete_inode +EXPORT_SYMBOL vmlinux 0xe031b78b audit_log_start +EXPORT_SYMBOL vmlinux 0xe037be56 tcp_disconnect EXPORT_SYMBOL vmlinux 0xe0419ac4 kstrtos16 -EXPORT_SYMBOL vmlinux 0xe063bdf9 free_task -EXPORT_SYMBOL vmlinux 0xe063daa9 dget_parent +EXPORT_SYMBOL vmlinux 0xe041caa9 mmc_gpio_set_cd_wake +EXPORT_SYMBOL vmlinux 0xe04e3e86 netif_receive_skb_core +EXPORT_SYMBOL vmlinux 0xe062478d __sk_mem_schedule +EXPORT_SYMBOL vmlinux 0xe062ac5b netdev_emerg +EXPORT_SYMBOL vmlinux 0xe063bc8b pin_user_pages EXPORT_SYMBOL vmlinux 0xe06699b2 sg_next EXPORT_SYMBOL vmlinux 0xe080e8f0 set_current_groups -EXPORT_SYMBOL vmlinux 0xe08f58ed __ethtool_get_link_ksettings -EXPORT_SYMBOL vmlinux 0xe09055de iter_file_splice_write +EXPORT_SYMBOL vmlinux 0xe089b7ce kernel_sendmsg_locked EXPORT_SYMBOL vmlinux 0xe091c977 list_sort EXPORT_SYMBOL vmlinux 0xe0a6b585 request_resource -EXPORT_SYMBOL vmlinux 0xe0aae9da wake_up_process -EXPORT_SYMBOL vmlinux 0xe0ae51df fc_mount +EXPORT_SYMBOL vmlinux 0xe0ad1e77 inet_csk_reqsk_queue_drop EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free -EXPORT_SYMBOL vmlinux 0xe0b97c2c dev_graft_qdisc +EXPORT_SYMBOL vmlinux 0xe0bd1890 md_integrity_add_rdev EXPORT_SYMBOL vmlinux 0xe0bef318 icst_hz_to_vco -EXPORT_SYMBOL vmlinux 0xe0cbfabd mmc_can_discard -EXPORT_SYMBOL vmlinux 0xe1015d35 cdev_del +EXPORT_SYMBOL vmlinux 0xe0c04f9c __pskb_copy_fclone +EXPORT_SYMBOL vmlinux 0xe0eb2ba1 kmem_cache_free +EXPORT_SYMBOL vmlinux 0xe0ed1b2d clear_bdi_congested +EXPORT_SYMBOL vmlinux 0xe0ef4747 tag_pages_for_writeback +EXPORT_SYMBOL vmlinux 0xe0f973d1 nexthop_set_hw_flags +EXPORT_SYMBOL vmlinux 0xe1060b47 snd_card_new +EXPORT_SYMBOL vmlinux 0xe10eee9d migrate_page_move_mapping EXPORT_SYMBOL vmlinux 0xe113bbbc csum_partial -EXPORT_SYMBOL vmlinux 0xe119684e input_set_capability EXPORT_SYMBOL vmlinux 0xe123f3d9 dma_fence_release +EXPORT_SYMBOL vmlinux 0xe1249e90 i2c_smbus_write_block_data +EXPORT_SYMBOL vmlinux 0xe12b104d icmp6_send EXPORT_SYMBOL vmlinux 0xe12bda79 vme_dma_free_attribute +EXPORT_SYMBOL vmlinux 0xe1314726 migrate_page_copy EXPORT_SYMBOL vmlinux 0xe13cd8a7 dmi_name_in_vendors -EXPORT_SYMBOL vmlinux 0xe13fbb1a udp6_set_csum -EXPORT_SYMBOL vmlinux 0xe14819c9 vmf_insert_mixed +EXPORT_SYMBOL vmlinux 0xe1501ae9 mini_qdisc_pair_swap EXPORT_SYMBOL vmlinux 0xe153f436 __cpu_present_mask -EXPORT_SYMBOL vmlinux 0xe155d8d1 unix_attach_fds -EXPORT_SYMBOL vmlinux 0xe157a19d iw_handler_set_spy EXPORT_SYMBOL vmlinux 0xe157e2f2 config_group_find_item +EXPORT_SYMBOL vmlinux 0xe168dcfc security_inode_init_security +EXPORT_SYMBOL vmlinux 0xe182f895 tegra_dfll_resume +EXPORT_SYMBOL vmlinux 0xe18d4414 __ip_select_ident EXPORT_SYMBOL vmlinux 0xe1a4f16a secure_ipv6_port_ephemeral +EXPORT_SYMBOL vmlinux 0xe1a800b8 thermal_cdev_update +EXPORT_SYMBOL vmlinux 0xe1a8d082 genphy_update_link EXPORT_SYMBOL vmlinux 0xe1a9b2ff dma_fence_match_context -EXPORT_SYMBOL vmlinux 0xe1b075f5 pskb_extract -EXPORT_SYMBOL vmlinux 0xe1b0a6b7 jbd2_log_wait_commit -EXPORT_SYMBOL vmlinux 0xe1d7f97b __insert_inode_hash +EXPORT_SYMBOL vmlinux 0xe1ade38b device_match_acpi_dev +EXPORT_SYMBOL vmlinux 0xe1b06696 tcp_v4_destroy_sock +EXPORT_SYMBOL vmlinux 0xe1c70f24 __phy_read_mmd +EXPORT_SYMBOL vmlinux 0xe1c89dc9 vfs_mkdir EXPORT_SYMBOL vmlinux 0xe1dcf64a audit_log_format -EXPORT_SYMBOL vmlinux 0xe1ddff78 set_anon_super_fc -EXPORT_SYMBOL vmlinux 0xe1e85ec7 kfree_skb -EXPORT_SYMBOL vmlinux 0xe1f93c86 vfs_dup_fs_context -EXPORT_SYMBOL vmlinux 0xe2003631 rproc_del -EXPORT_SYMBOL vmlinux 0xe20ac073 d_add_ci +EXPORT_SYMBOL vmlinux 0xe1e07daf mdiobus_scan +EXPORT_SYMBOL vmlinux 0xe1e10f5c rproc_put +EXPORT_SYMBOL vmlinux 0xe1efae47 vfs_fsync_range +EXPORT_SYMBOL vmlinux 0xe20048c1 vme_irq_free +EXPORT_SYMBOL vmlinux 0xe2008e18 blk_mq_delay_run_hw_queues +EXPORT_SYMBOL vmlinux 0xe203ecc6 udp6_seq_ops EXPORT_SYMBOL vmlinux 0xe212ff65 cpumask_any_but -EXPORT_SYMBOL vmlinux 0xe21dc9b1 __mod_lruvec_page_state +EXPORT_SYMBOL vmlinux 0xe2162239 sound_class +EXPORT_SYMBOL vmlinux 0xe21cea64 fault_in_readable EXPORT_SYMBOL vmlinux 0xe2274a1c __percpu_counter_sum -EXPORT_SYMBOL vmlinux 0xe22e3e37 skb_vlan_pop -EXPORT_SYMBOL vmlinux 0xe23c3342 cdrom_open -EXPORT_SYMBOL vmlinux 0xe2450b39 uart_add_one_port -EXPORT_SYMBOL vmlinux 0xe25774b9 __blk_rq_map_sg -EXPORT_SYMBOL vmlinux 0xe258103a from_kgid_munged -EXPORT_SYMBOL vmlinux 0xe2628cd5 flow_rule_match_ct +EXPORT_SYMBOL vmlinux 0xe22c4017 __xfrm_init_state +EXPORT_SYMBOL vmlinux 0xe231ba81 key_task_permission +EXPORT_SYMBOL vmlinux 0xe2420c40 rawnand_sw_hamming_calculate +EXPORT_SYMBOL vmlinux 0xe242b79d fscrypt_ioctl_get_policy +EXPORT_SYMBOL vmlinux 0xe248bf6c rproc_get_by_phandle +EXPORT_SYMBOL vmlinux 0xe2492fb4 mipi_dsi_dcs_read EXPORT_SYMBOL vmlinux 0xe266f098 xa_get_mark +EXPORT_SYMBOL vmlinux 0xe272aa69 md_set_array_sectors EXPORT_SYMBOL vmlinux 0xe273d75d alloc_cpu_rmap -EXPORT_SYMBOL vmlinux 0xe2af001d tty_port_destroy +EXPORT_SYMBOL vmlinux 0xe27b5b86 __xfrm_state_destroy +EXPORT_SYMBOL vmlinux 0xe28c6783 mmc_gpiod_request_cd EXPORT_SYMBOL vmlinux 0xe2b24a75 textsearch_unregister -EXPORT_SYMBOL vmlinux 0xe2c37a79 inet_get_local_port_range +EXPORT_SYMBOL vmlinux 0xe2bc1ea9 netdev_bind_sb_channel_queue +EXPORT_SYMBOL vmlinux 0xe2be84c7 unregister_filesystem +EXPORT_SYMBOL vmlinux 0xe2c8238d fs_lookup_param EXPORT_SYMBOL vmlinux 0xe2d467c4 gic_pmr_sync EXPORT_SYMBOL vmlinux 0xe2d47398 crc_ccitt_false EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp -EXPORT_SYMBOL vmlinux 0xe2def472 napi_gro_frags -EXPORT_SYMBOL vmlinux 0xe2e7cc96 pci_wake_from_d3 +EXPORT_SYMBOL vmlinux 0xe2d56b2b scsi_remove_target +EXPORT_SYMBOL vmlinux 0xe2d9e271 scsi_scan_host EXPORT_SYMBOL vmlinux 0xe2e8065e memdup_user EXPORT_SYMBOL vmlinux 0xe2f3d99f rename_lock -EXPORT_SYMBOL vmlinux 0xe2f87646 __register_chrdev -EXPORT_SYMBOL vmlinux 0xe2ff1a97 blk_mq_requeue_request -EXPORT_SYMBOL vmlinux 0xe303154c neigh_parms_release -EXPORT_SYMBOL vmlinux 0xe3073556 tcp_filter -EXPORT_SYMBOL vmlinux 0xe30b773b __neigh_create +EXPORT_SYMBOL vmlinux 0xe2fcad4c dev_pm_opp_unregister_notifier +EXPORT_SYMBOL vmlinux 0xe3223354 blk_mq_alloc_tag_set EXPORT_SYMBOL vmlinux 0xe32ab4d8 xxh64_digest +EXPORT_SYMBOL vmlinux 0xe32bc4cf genphy_loopback +EXPORT_SYMBOL vmlinux 0xe33cfc30 xfrm_policy_delete +EXPORT_SYMBOL vmlinux 0xe33fce9c __i2c_transfer EXPORT_SYMBOL vmlinux 0xe3482046 radix_tree_iter_delete -EXPORT_SYMBOL vmlinux 0xe361c2d7 d_set_d_op -EXPORT_SYMBOL vmlinux 0xe38e0263 pci_ep_cfs_add_epf_group -EXPORT_SYMBOL vmlinux 0xe38ec8c2 make_kgid -EXPORT_SYMBOL vmlinux 0xe395e81d mmc_set_data_timeout +EXPORT_SYMBOL vmlinux 0xe3482313 pcie_capability_clear_and_set_dword +EXPORT_SYMBOL vmlinux 0xe3627274 dma_sync_single_for_cpu +EXPORT_SYMBOL vmlinux 0xe3730d4b param_set_invbool +EXPORT_SYMBOL vmlinux 0xe396ad45 neigh_seq_next +EXPORT_SYMBOL vmlinux 0xe39ade08 pci_dev_get EXPORT_SYMBOL vmlinux 0xe39b2ea5 sha256 -EXPORT_SYMBOL vmlinux 0xe3a5643d serio_unregister_child_port +EXPORT_SYMBOL vmlinux 0xe3a172a4 mmc_command_done EXPORT_SYMBOL vmlinux 0xe3a90dfa radix_tree_tag_set -EXPORT_SYMBOL vmlinux 0xe3ac51fd sock_no_getname -EXPORT_SYMBOL vmlinux 0xe3daa2bd pci_msi_vec_count -EXPORT_SYMBOL vmlinux 0xe3e296c2 thread_group_exited -EXPORT_SYMBOL vmlinux 0xe3e53afd kernel_bind +EXPORT_SYMBOL vmlinux 0xe3b3bd63 qdisc_offload_graft_helper +EXPORT_SYMBOL vmlinux 0xe3c1594e bfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0xe3e0b44a jbd2_fc_end_commit +EXPORT_SYMBOL vmlinux 0xe3e41228 netlink_ns_capable EXPORT_SYMBOL vmlinux 0xe3ec2f2b alloc_chrdev_region -EXPORT_SYMBOL vmlinux 0xe3f2a88b phy_stop +EXPORT_SYMBOL vmlinux 0xe3f1fb68 snd_component_add EXPORT_SYMBOL vmlinux 0xe3fbd30a _raw_write_trylock -EXPORT_SYMBOL vmlinux 0xe3fd3f92 mmc_unregister_driver EXPORT_SYMBOL vmlinux 0xe3feba56 tasklet_unlock_spin_wait EXPORT_SYMBOL vmlinux 0xe3ff2c41 get_random_u64 -EXPORT_SYMBOL vmlinux 0xe41508d4 vlan_uses_dev -EXPORT_SYMBOL vmlinux 0xe41ab6ba sock_set_sndtimeo +EXPORT_SYMBOL vmlinux 0xe40e4114 devm_iounmap +EXPORT_SYMBOL vmlinux 0xe41a295a mnt_drop_write_file +EXPORT_SYMBOL vmlinux 0xe423db07 hash_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0xe424fe9e tcp_prot EXPORT_SYMBOL vmlinux 0xe428464e dma_fence_wait_timeout -EXPORT_SYMBOL vmlinux 0xe430c2c0 tcp_v4_conn_request EXPORT_SYMBOL vmlinux 0xe4329092 __ctzdi2 -EXPORT_SYMBOL vmlinux 0xe43a1fc7 devm_pci_alloc_host_bridge EXPORT_SYMBOL vmlinux 0xe43a3047 __tracepoint_mmap_lock_start_locking -EXPORT_SYMBOL vmlinux 0xe450a76e blk_queue_update_dma_pad -EXPORT_SYMBOL vmlinux 0xe4533293 create_empty_buffers +EXPORT_SYMBOL vmlinux 0xe43c707d i2c_verify_client +EXPORT_SYMBOL vmlinux 0xe44b4b9f mr_vif_seq_idx +EXPORT_SYMBOL vmlinux 0xe44bd693 kernel_sendmsg +EXPORT_SYMBOL vmlinux 0xe460305d inode_permission +EXPORT_SYMBOL vmlinux 0xe4625f39 sock_rfree +EXPORT_SYMBOL vmlinux 0xe468bc01 create_empty_buffers EXPORT_SYMBOL vmlinux 0xe4702b3a __sg_alloc_table EXPORT_SYMBOL vmlinux 0xe477fc9b memremap -EXPORT_SYMBOL vmlinux 0xe47d35b0 dev_mc_del_global -EXPORT_SYMBOL vmlinux 0xe47f352e tcp_sock_set_keepcnt -EXPORT_SYMBOL vmlinux 0xe4c453d2 scsi_unblock_requests -EXPORT_SYMBOL vmlinux 0xe4c465d7 xfrm_init_state -EXPORT_SYMBOL vmlinux 0xe4c5a24e __skb_checksum +EXPORT_SYMBOL vmlinux 0xe47f74bb current_in_userns +EXPORT_SYMBOL vmlinux 0xe480cf31 rproc_da_to_va +EXPORT_SYMBOL vmlinux 0xe49e0ed2 vfs_get_fsid +EXPORT_SYMBOL vmlinux 0xe4b2234a snd_pcm_set_sync +EXPORT_SYMBOL vmlinux 0xe4bd1f50 __netif_schedule EXPORT_SYMBOL vmlinux 0xe4c80097 cacheid -EXPORT_SYMBOL vmlinux 0xe4cb715e iov_iter_init -EXPORT_SYMBOL vmlinux 0xe4d0aa9c phy_modify_paged +EXPORT_SYMBOL vmlinux 0xe4d0eee3 wait_on_page_bit_killable EXPORT_SYMBOL vmlinux 0xe4effcd5 sg_init_one -EXPORT_SYMBOL vmlinux 0xe4f1aad7 fb_firmware_edid -EXPORT_SYMBOL vmlinux 0xe501a96c mod_node_page_state -EXPORT_SYMBOL vmlinux 0xe522a947 input_set_timestamp +EXPORT_SYMBOL vmlinux 0xe50075a4 device_add_disk +EXPORT_SYMBOL vmlinux 0xe5019c8d of_phy_find_device +EXPORT_SYMBOL vmlinux 0xe50461c7 finish_open EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq -EXPORT_SYMBOL vmlinux 0xe52be172 dev_set_group -EXPORT_SYMBOL vmlinux 0xe545c64c bio_kmalloc -EXPORT_SYMBOL vmlinux 0xe5602fd4 skb_prepare_seq_read +EXPORT_SYMBOL vmlinux 0xe5472916 lock_two_nondirectories 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 0xe5877410 snd_ctl_replace EXPORT_SYMBOL vmlinux 0xe590dea3 sk_busy_loop_end +EXPORT_SYMBOL vmlinux 0xe5aaf602 of_cpu_node_to_id +EXPORT_SYMBOL vmlinux 0xe5bb7f77 ip_sock_set_freebind EXPORT_SYMBOL vmlinux 0xe5bc9a53 slhc_free -EXPORT_SYMBOL vmlinux 0xe5c50d50 serio_unregister_driver EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen -EXPORT_SYMBOL vmlinux 0xe5ca696e scm_fp_dup -EXPORT_SYMBOL vmlinux 0xe5ee6ca3 xfrm_register_km +EXPORT_SYMBOL vmlinux 0xe5e129f5 snd_pcm_lib_preallocate_pages +EXPORT_SYMBOL vmlinux 0xe5e155df tty_unregister_device +EXPORT_SYMBOL vmlinux 0xe5eb359a netpoll_parse_options +EXPORT_SYMBOL vmlinux 0xe5f45658 shrink_dcache_parent EXPORT_SYMBOL vmlinux 0xe5ff5d51 __do_once_done +EXPORT_SYMBOL vmlinux 0xe604b869 tty_vhangup +EXPORT_SYMBOL vmlinux 0xe60879a5 __set_page_dirty_nobuffers +EXPORT_SYMBOL vmlinux 0xe60b3072 md_flush_request EXPORT_SYMBOL vmlinux 0xe613a798 inet_addr_is_any -EXPORT_SYMBOL vmlinux 0xe62364d2 cdev_add +EXPORT_SYMBOL vmlinux 0xe6191d8b inet_offloads +EXPORT_SYMBOL vmlinux 0xe6221b14 tty_driver_flush_buffer EXPORT_SYMBOL vmlinux 0xe62cdb0e memcpy_and_pad -EXPORT_SYMBOL vmlinux 0xe63762a1 phy_mac_interrupt +EXPORT_SYMBOL vmlinux 0xe6328e93 tty_register_ldisc +EXPORT_SYMBOL vmlinux 0xe641c00b alloc_buffer_head +EXPORT_SYMBOL vmlinux 0xe65bd9fe netdev_lower_state_changed +EXPORT_SYMBOL vmlinux 0xe660cd67 amba_find_device +EXPORT_SYMBOL vmlinux 0xe66afc2c ipv6_chk_custom_prefix +EXPORT_SYMBOL vmlinux 0xe670eafc jbd2_trans_will_send_data_barrier +EXPORT_SYMBOL vmlinux 0xe681b719 dget_parent EXPORT_SYMBOL vmlinux 0xe693a6ce vme_get_size -EXPORT_SYMBOL vmlinux 0xe6bb3a55 snd_pcm_lib_preallocate_pages -EXPORT_SYMBOL vmlinux 0xe6c2cf30 cpufreq_generic_suspend +EXPORT_SYMBOL vmlinux 0xe6a38973 _dev_warn +EXPORT_SYMBOL vmlinux 0xe6b72201 input_match_device_id EXPORT_SYMBOL vmlinux 0xe6d2458e do_trace_netlink_extack +EXPORT_SYMBOL vmlinux 0xe6d818a5 of_get_parent EXPORT_SYMBOL vmlinux 0xe6db989b ecc_sw_hamming_correct -EXPORT_SYMBOL vmlinux 0xe7074249 __find_get_block +EXPORT_SYMBOL vmlinux 0xe70590d7 eth_validate_addr EXPORT_SYMBOL vmlinux 0xe707d823 __aeabi_uidiv -EXPORT_SYMBOL vmlinux 0xe70c1750 no_seek_end_llseek_size +EXPORT_SYMBOL vmlinux 0xe71723a6 nf_log_register EXPORT_SYMBOL vmlinux 0xe7324b9a utf8nfdicf -EXPORT_SYMBOL vmlinux 0xe77299e0 eth_header_cache_update -EXPORT_SYMBOL vmlinux 0xe7acc7a2 lookup_positive_unlocked -EXPORT_SYMBOL vmlinux 0xe7c87d1b set_bdi_congested -EXPORT_SYMBOL vmlinux 0xe7c972d1 secpath_set -EXPORT_SYMBOL vmlinux 0xe7cae1ee PageMovable +EXPORT_SYMBOL vmlinux 0xe7340bed noop_qdisc +EXPORT_SYMBOL vmlinux 0xe73da019 dquot_initialize_needed +EXPORT_SYMBOL vmlinux 0xe73da39b flow_rule_match_vlan +EXPORT_SYMBOL vmlinux 0xe7897801 dma_pool_create +EXPORT_SYMBOL vmlinux 0xe798738f truncate_pagecache_range +EXPORT_SYMBOL vmlinux 0xe79bb865 bio_free_pages EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next -EXPORT_SYMBOL vmlinux 0xe7e2d16b __xfrm_init_state EXPORT_SYMBOL vmlinux 0xe7e4d52a _raw_spin_lock_bh -EXPORT_SYMBOL vmlinux 0xe7e9263b blk_queue_io_opt +EXPORT_SYMBOL vmlinux 0xe7ead06d filemap_fdatawait_range_keep_errors +EXPORT_SYMBOL vmlinux 0xe7eb18a1 scsi_mode_sense EXPORT_SYMBOL vmlinux 0xe7f2e3a2 register_sysctl_paths -EXPORT_SYMBOL vmlinux 0xe7f4e2b4 __alloc_pages -EXPORT_SYMBOL vmlinux 0xe7f683d4 tcf_exts_num_actions -EXPORT_SYMBOL vmlinux 0xe80d057d netlink_broadcast -EXPORT_SYMBOL vmlinux 0xe8187124 of_get_cpu_state_node -EXPORT_SYMBOL vmlinux 0xe81aebf7 file_check_and_advance_wb_err -EXPORT_SYMBOL vmlinux 0xe824cc83 xfrm_policy_walk_done +EXPORT_SYMBOL vmlinux 0xe80328ea param_ops_bint +EXPORT_SYMBOL vmlinux 0xe82168f7 dcb_ieee_delapp +EXPORT_SYMBOL vmlinux 0xe8233cd2 crypto_sha512_finup +EXPORT_SYMBOL vmlinux 0xe8236010 cdev_del +EXPORT_SYMBOL vmlinux 0xe828f327 dqput +EXPORT_SYMBOL vmlinux 0xe841bab0 input_set_max_poll_interval EXPORT_SYMBOL vmlinux 0xe842dc8c dma_fence_get_stub -EXPORT_SYMBOL vmlinux 0xe85b1e2a nand_ecc_finish_io_req -EXPORT_SYMBOL vmlinux 0xe86d66e4 dev_queue_xmit_accel -EXPORT_SYMBOL vmlinux 0xe8762411 register_quota_format -EXPORT_SYMBOL vmlinux 0xe8a48d8d netdev_port_same_parent_id -EXPORT_SYMBOL vmlinux 0xe8a8781b __genphy_config_aneg +EXPORT_SYMBOL vmlinux 0xe85ff860 redirty_page_for_writepage +EXPORT_SYMBOL vmlinux 0xe87574fa tegra_ivc_cleanup +EXPORT_SYMBOL vmlinux 0xe87d0687 follow_down +EXPORT_SYMBOL vmlinux 0xe881b3e1 iov_iter_zero +EXPORT_SYMBOL vmlinux 0xe889a3cc __devm_release_region +EXPORT_SYMBOL vmlinux 0xe8a82b41 tty_write_room EXPORT_SYMBOL vmlinux 0xe8b9a3d4 mx51_revision -EXPORT_SYMBOL vmlinux 0xe8b9dd69 kmem_cache_destroy -EXPORT_SYMBOL vmlinux 0xe8bf177a bio_integrity_clone EXPORT_SYMBOL vmlinux 0xe8cd0a2c crc32_le_shift EXPORT_SYMBOL vmlinux 0xe8cfce09 tegra114_clock_deassert_dfll_dvco_reset -EXPORT_SYMBOL vmlinux 0xe8dcdbda nf_unregister_sockopt -EXPORT_SYMBOL vmlinux 0xe8f056c2 devfreq_register_opp_notifier -EXPORT_SYMBOL vmlinux 0xe8f860d6 tcf_chain_put_by_act -EXPORT_SYMBOL vmlinux 0xe912b801 pci_ep_cfs_remove_epc_group +EXPORT_SYMBOL vmlinux 0xe8f33603 snd_timer_stop +EXPORT_SYMBOL vmlinux 0xe90025c0 bio_uninit +EXPORT_SYMBOL vmlinux 0xe9139c28 scsi_ioctl EXPORT_SYMBOL vmlinux 0xe914e41e strcpy +EXPORT_SYMBOL vmlinux 0xe921c2fc tcf_action_dump_1 +EXPORT_SYMBOL vmlinux 0xe9236879 of_graph_get_remote_port_parent +EXPORT_SYMBOL vmlinux 0xe9293eb6 napi_gro_flush +EXPORT_SYMBOL vmlinux 0xe92f6453 sock_setsockopt EXPORT_SYMBOL vmlinux 0xe9325f03 downgrade_write +EXPORT_SYMBOL vmlinux 0xe93655c6 __of_get_address +EXPORT_SYMBOL vmlinux 0xe93e6089 blk_queue_alignment_offset EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino -EXPORT_SYMBOL vmlinux 0xe96113f9 jbd2_journal_revoke -EXPORT_SYMBOL vmlinux 0xe96ee929 scsi_print_sense_hdr -EXPORT_SYMBOL vmlinux 0xe96fb5a1 d_genocide -EXPORT_SYMBOL vmlinux 0xe9726528 tcp_time_wait +EXPORT_SYMBOL vmlinux 0xe963b650 netdev_change_features +EXPORT_SYMBOL vmlinux 0xe9653fc5 uart_remove_one_port +EXPORT_SYMBOL vmlinux 0xe96f83b4 alloc_netdev_mqs EXPORT_SYMBOL vmlinux 0xe97c4103 ioremap +EXPORT_SYMBOL vmlinux 0xe97db954 vlan_vids_del_by_dev +EXPORT_SYMBOL vmlinux 0xe97ed24b of_find_compatible_node EXPORT_SYMBOL vmlinux 0xe97ef1c7 __traceiter_kmalloc_node -EXPORT_SYMBOL vmlinux 0xe98e1849 csum_and_copy_from_iter -EXPORT_SYMBOL vmlinux 0xe995837a of_get_next_child -EXPORT_SYMBOL vmlinux 0xe99949af pci_request_regions_exclusive +EXPORT_SYMBOL vmlinux 0xe987323c devm_ioremap_wc EXPORT_SYMBOL vmlinux 0xe99b7111 LZ4_decompress_fast_continue -EXPORT_SYMBOL vmlinux 0xe9c253fa clk_bulk_get -EXPORT_SYMBOL vmlinux 0xe9cb70ad redraw_screen +EXPORT_SYMBOL vmlinux 0xe9ae5e64 dma_set_coherent_mask +EXPORT_SYMBOL vmlinux 0xe9bf5336 flow_rule_match_enc_keyid EXPORT_SYMBOL vmlinux 0xe9cbf734 radix_tree_gang_lookup -EXPORT_SYMBOL vmlinux 0xe9ceea19 tcf_em_register -EXPORT_SYMBOL vmlinux 0xe9d460d4 readahead_expand -EXPORT_SYMBOL vmlinux 0xe9d4c0bc of_find_i2c_device_by_node EXPORT_SYMBOL vmlinux 0xe9e8faeb efi_tpm_final_log_size +EXPORT_SYMBOL vmlinux 0xe9eb158d adjust_managed_page_count +EXPORT_SYMBOL vmlinux 0xe9ef3541 __scsi_execute +EXPORT_SYMBOL vmlinux 0xe9effc48 clean_bdev_aliases EXPORT_SYMBOL vmlinux 0xe9f7149c zlib_deflate_workspacesize -EXPORT_SYMBOL vmlinux 0xe9f7a229 _snd_ctl_add_follower -EXPORT_SYMBOL vmlinux 0xe9fab031 seq_dentry +EXPORT_SYMBOL vmlinux 0xe9fe0712 param_get_charp +EXPORT_SYMBOL vmlinux 0xea30ae21 security_sk_clone EXPORT_SYMBOL vmlinux 0xea3c8e4e scsilun_to_int -EXPORT_SYMBOL vmlinux 0xea3db89e nand_create_bbt -EXPORT_SYMBOL vmlinux 0xea43b87e fiemap_prep -EXPORT_SYMBOL vmlinux 0xea5a092d of_graph_get_port_parent +EXPORT_SYMBOL vmlinux 0xea4741ec __napi_alloc_skb +EXPORT_SYMBOL vmlinux 0xea5738c3 __starget_for_each_device EXPORT_SYMBOL vmlinux 0xea6f9a36 zlib_deflate_dfltcc_enabled -EXPORT_SYMBOL vmlinux 0xea756c13 _copy_from_iter_nocache EXPORT_SYMBOL vmlinux 0xea7987f1 key_update -EXPORT_SYMBOL vmlinux 0xea8b0c95 open_with_fake_path -EXPORT_SYMBOL vmlinux 0xea9855a7 of_find_node_by_name -EXPORT_SYMBOL vmlinux 0xeaa3cf38 locks_init_lock EXPORT_SYMBOL vmlinux 0xeac05a69 ucc_slow_enable -EXPORT_SYMBOL vmlinux 0xeacc627c netdev_change_features -EXPORT_SYMBOL vmlinux 0xeacf45be nf_log_unset -EXPORT_SYMBOL vmlinux 0xeaf474bf tty_kref_put -EXPORT_SYMBOL vmlinux 0xeafa702c ndo_dflt_fdb_del +EXPORT_SYMBOL vmlinux 0xead70db1 pfifo_fast_ops +EXPORT_SYMBOL vmlinux 0xeae1751c tty_port_lower_dtr_rts EXPORT_SYMBOL vmlinux 0xeafc141f __posix_acl_chmod +EXPORT_SYMBOL vmlinux 0xeafe0c7d i2c_transfer EXPORT_SYMBOL vmlinux 0xeb03b389 __raw_readsl -EXPORT_SYMBOL vmlinux 0xeb1a52ad serio_rescan +EXPORT_SYMBOL vmlinux 0xeb0a6e6f security_socket_getpeersec_dgram +EXPORT_SYMBOL vmlinux 0xeb3005bd snd_timer_interrupt EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end -EXPORT_SYMBOL vmlinux 0xeb3b22dc of_device_unregister -EXPORT_SYMBOL vmlinux 0xeb3f4f97 phy_mii_ioctl -EXPORT_SYMBOL vmlinux 0xeb52f306 snd_ctl_make_virtual_master EXPORT_SYMBOL vmlinux 0xeb53178a crc8 EXPORT_SYMBOL vmlinux 0xeb55a931 __kfifo_max_r -EXPORT_SYMBOL vmlinux 0xeb671a1b iov_iter_get_pages -EXPORT_SYMBOL vmlinux 0xeb6a45b6 d_add -EXPORT_SYMBOL vmlinux 0xeb6b0a27 seq_path -EXPORT_SYMBOL vmlinux 0xeb7ea00f devm_of_iomap -EXPORT_SYMBOL vmlinux 0xeb81bc06 of_phy_is_fixed_link -EXPORT_SYMBOL vmlinux 0xeb8b9e71 snd_jack_new -EXPORT_SYMBOL vmlinux 0xeb8c6621 scsi_host_get -EXPORT_SYMBOL vmlinux 0xeb9ea52d fscrypt_encrypt_pagecache_blocks +EXPORT_SYMBOL vmlinux 0xeb5b973b md_integrity_register +EXPORT_SYMBOL vmlinux 0xeb8176af free_cgroup_ns +EXPORT_SYMBOL vmlinux 0xeb8340a4 read_cache_page_gfp +EXPORT_SYMBOL vmlinux 0xeb8970c1 from_kuid_munged EXPORT_SYMBOL vmlinux 0xeb9eef52 match_uint -EXPORT_SYMBOL vmlinux 0xebb924d7 pci_enable_msix_range -EXPORT_SYMBOL vmlinux 0xebc4c944 ip_fraglist_prepare -EXPORT_SYMBOL vmlinux 0xebccc8bc md_check_recovery -EXPORT_SYMBOL vmlinux 0xebd00c7d blk_mq_stop_hw_queue -EXPORT_SYMBOL vmlinux 0xebdb5e18 tcp_stream_memory_free -EXPORT_SYMBOL vmlinux 0xebdfba3e consume_skb -EXPORT_SYMBOL vmlinux 0xebe7d162 devm_devfreq_add_device +EXPORT_SYMBOL vmlinux 0xeb9f644b blk_queue_physical_block_size +EXPORT_SYMBOL vmlinux 0xeba8b532 mdiobus_is_registered_device +EXPORT_SYMBOL vmlinux 0xebbab486 kmem_cache_create +EXPORT_SYMBOL vmlinux 0xebe286e3 __sk_dst_check +EXPORT_SYMBOL vmlinux 0xebe6e106 copy_page_from_iter_atomic +EXPORT_SYMBOL vmlinux 0xebf5f1f2 security_unix_stream_connect EXPORT_SYMBOL vmlinux 0xebfdcbdf system_serial_high -EXPORT_SYMBOL vmlinux 0xec00171e netdev_notify_peers -EXPORT_SYMBOL vmlinux 0xec03ba1c phy_remove_link_mode -EXPORT_SYMBOL vmlinux 0xec0ce244 rps_may_expire_flow -EXPORT_SYMBOL vmlinux 0xec15669e kern_path_create +EXPORT_SYMBOL vmlinux 0xec0b05b1 watchdog_register_governor +EXPORT_SYMBOL vmlinux 0xec1b3cd9 scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0xec2fd5ef snd_pcm_hw_refine +EXPORT_SYMBOL vmlinux 0xec30725a tcp_initialize_rcv_mss EXPORT_SYMBOL vmlinux 0xec33c668 __SCK__tp_func_spi_transfer_start -EXPORT_SYMBOL vmlinux 0xec349333 netpoll_send_skb EXPORT_SYMBOL vmlinux 0xec37a2e8 lockref_get_not_dead -EXPORT_SYMBOL vmlinux 0xec3e3925 xfrm_state_delete -EXPORT_SYMBOL vmlinux 0xec4646cc register_console -EXPORT_SYMBOL vmlinux 0xec4a6b9e bdev_dax_pgoff +EXPORT_SYMBOL vmlinux 0xec45b150 touchscreen_parse_properties EXPORT_SYMBOL vmlinux 0xec4d9e3a clk_get_sys -EXPORT_SYMBOL vmlinux 0xec5a901a devfreq_register_notifier -EXPORT_SYMBOL vmlinux 0xec6b60c2 blkdev_issue_flush -EXPORT_SYMBOL vmlinux 0xec821d80 __remove_inode_hash -EXPORT_SYMBOL vmlinux 0xecaf7d46 tty_unthrottle -EXPORT_SYMBOL vmlinux 0xecb632d1 dquot_get_next_id -EXPORT_SYMBOL vmlinux 0xeccb7795 sk_net_capable -EXPORT_SYMBOL vmlinux 0xecd22f08 scsi_is_host_device -EXPORT_SYMBOL vmlinux 0xecd37de0 console_stop -EXPORT_SYMBOL vmlinux 0xecdae913 of_platform_device_create +EXPORT_SYMBOL vmlinux 0xec4f67bf dev_addr_add +EXPORT_SYMBOL vmlinux 0xec5d3190 simple_dir_operations +EXPORT_SYMBOL vmlinux 0xec760419 d_alloc_parallel +EXPORT_SYMBOL vmlinux 0xec81d539 scsi_dma_unmap +EXPORT_SYMBOL vmlinux 0xec8cdcee security_sb_set_mnt_opts +EXPORT_SYMBOL vmlinux 0xecc2f7d8 kmem_cache_alloc_trace +EXPORT_SYMBOL vmlinux 0xecc53c00 flow_rule_match_ct +EXPORT_SYMBOL vmlinux 0xecc68102 ata_port_printk +EXPORT_SYMBOL vmlinux 0xecc9cca8 udp_gro_complete +EXPORT_SYMBOL vmlinux 0xecd97389 dquot_commit_info +EXPORT_SYMBOL vmlinux 0xecdec74f single_release +EXPORT_SYMBOL vmlinux 0xece00e6b skb_ext_add +EXPORT_SYMBOL vmlinux 0xece69f27 jbd2_journal_forget EXPORT_SYMBOL vmlinux 0xece784c2 rb_first EXPORT_SYMBOL vmlinux 0xecf8a3b4 __raw_writesl -EXPORT_SYMBOL vmlinux 0xecffb9ca tcp_getsockopt -EXPORT_SYMBOL vmlinux 0xed045bf7 snd_ctl_unregister_ioctl -EXPORT_SYMBOL vmlinux 0xed06ae08 mipi_dsi_shutdown_peripheral -EXPORT_SYMBOL vmlinux 0xed07776c page_pool_return_skb_page -EXPORT_SYMBOL vmlinux 0xed09b75f neigh_app_ns -EXPORT_SYMBOL vmlinux 0xed139009 security_old_inode_init_security -EXPORT_SYMBOL vmlinux 0xed17c511 kernel_sendmsg_locked -EXPORT_SYMBOL vmlinux 0xed4cda4a ptp_clock_index -EXPORT_SYMBOL vmlinux 0xed536d64 get_fs_type EXPORT_SYMBOL vmlinux 0xed5376c5 __printk_wait_on_cpu_lock -EXPORT_SYMBOL vmlinux 0xed576714 tegra_dfll_resume -EXPORT_SYMBOL vmlinux 0xed5c9f13 inet_frag_kill EXPORT_SYMBOL vmlinux 0xed656e30 udp_encap_disable -EXPORT_SYMBOL vmlinux 0xed7eabef ___pskb_trim -EXPORT_SYMBOL vmlinux 0xed9eaedb proc_mkdir +EXPORT_SYMBOL vmlinux 0xed85879e jbd2_journal_put_journal_head +EXPORT_SYMBOL vmlinux 0xed9ddf2f dev_addr_init EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp -EXPORT_SYMBOL vmlinux 0xedbe550b blk_rq_init -EXPORT_SYMBOL vmlinux 0xedbfe36a snd_timer_start +EXPORT_SYMBOL vmlinux 0xedbe5951 key_revoke EXPORT_SYMBOL vmlinux 0xedc03953 iounmap -EXPORT_SYMBOL vmlinux 0xedcabb37 __traceiter_spi_transfer_stop -EXPORT_SYMBOL vmlinux 0xedd6ffe0 security_inode_copy_up -EXPORT_SYMBOL vmlinux 0xedd70359 __inet6_lookup_established -EXPORT_SYMBOL vmlinux 0xedd83a9d rproc_resource_cleanup -EXPORT_SYMBOL vmlinux 0xedd89ee2 find_inode_rcu EXPORT_SYMBOL vmlinux 0xedd9106d __ashrdi3 -EXPORT_SYMBOL vmlinux 0xedde570b snd_pcm_hw_constraint_step +EXPORT_SYMBOL vmlinux 0xede3529c snd_pcm_hw_constraint_ratdens +EXPORT_SYMBOL vmlinux 0xedefc8e5 phy_request_interrupt +EXPORT_SYMBOL vmlinux 0xee001402 dump_skip EXPORT_SYMBOL vmlinux 0xee02a44f gen_replace_estimator -EXPORT_SYMBOL vmlinux 0xee0b03ea dcache_dir_lseek -EXPORT_SYMBOL vmlinux 0xee0e8765 genphy_write_mmd_unsupported -EXPORT_SYMBOL vmlinux 0xee18bd29 seq_file_path +EXPORT_SYMBOL vmlinux 0xee065fc3 vm_map_ram EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable -EXPORT_SYMBOL vmlinux 0xee348f7c dev_uc_add_excl -EXPORT_SYMBOL vmlinux 0xee34c463 netif_receive_skb_core -EXPORT_SYMBOL vmlinux 0xee351ee6 xfrm6_rcv -EXPORT_SYMBOL vmlinux 0xee3be775 xp_raw_get_data -EXPORT_SYMBOL vmlinux 0xee3d467b d_instantiate +EXPORT_SYMBOL vmlinux 0xee2e5b41 dcache_readdir EXPORT_SYMBOL vmlinux 0xee43fd9b ___ratelimit -EXPORT_SYMBOL vmlinux 0xee46f4ca deactivate_super +EXPORT_SYMBOL vmlinux 0xee4c6082 snd_timer_new EXPORT_SYMBOL vmlinux 0xee58e970 fb_add_videomode -EXPORT_SYMBOL vmlinux 0xee5a0768 of_device_register -EXPORT_SYMBOL vmlinux 0xee5db2af bpf_prog_get_type_path -EXPORT_SYMBOL vmlinux 0xee6472b4 __phy_resume -EXPORT_SYMBOL vmlinux 0xee66ae2a snd_register_oss_device EXPORT_SYMBOL vmlinux 0xee6e57d8 __tracepoint_kfree +EXPORT_SYMBOL vmlinux 0xee6ecb80 tcp_sock_set_quickack +EXPORT_SYMBOL vmlinux 0xee8737b3 pci_free_irq EXPORT_SYMBOL vmlinux 0xee8c02e9 vprintk_emit EXPORT_SYMBOL vmlinux 0xee8d74d6 jiffies64_to_nsecs -EXPORT_SYMBOL vmlinux 0xee8e5489 ps2_handle_response EXPORT_SYMBOL vmlinux 0xee91879b rb_first_postorder -EXPORT_SYMBOL vmlinux 0xee981c5b phy_suspend -EXPORT_SYMBOL vmlinux 0xee9ebb52 i2c_smbus_read_word_data +EXPORT_SYMBOL vmlinux 0xee97ec9b blk_mq_run_hw_queue EXPORT_SYMBOL vmlinux 0xeea9dbaf bitmap_bitremap -EXPORT_SYMBOL vmlinux 0xeeab7529 flow_rule_match_meta -EXPORT_SYMBOL vmlinux 0xeec4effe send_sig_mceerr -EXPORT_SYMBOL vmlinux 0xeed26f79 blk_mq_run_hw_queues -EXPORT_SYMBOL vmlinux 0xeed8a71c mmc_register_driver -EXPORT_SYMBOL vmlinux 0xeee25e3d pneigh_lookup -EXPORT_SYMBOL vmlinux 0xeefe69ea icmp_ndo_send -EXPORT_SYMBOL vmlinux 0xef0b9a75 sock_no_sendmsg -EXPORT_SYMBOL vmlinux 0xef324de1 xfrm_find_acq_byseq -EXPORT_SYMBOL vmlinux 0xef384305 udp_disconnect -EXPORT_SYMBOL vmlinux 0xef3e45fc phy_ethtool_get_eee -EXPORT_SYMBOL vmlinux 0xef431cb4 dev_queue_xmit +EXPORT_SYMBOL vmlinux 0xeebafb63 fault_in_iov_iter_readable +EXPORT_SYMBOL vmlinux 0xeebca947 xfrm_dev_state_flush +EXPORT_SYMBOL vmlinux 0xeedf4eb4 xfrm_unregister_km +EXPORT_SYMBOL vmlinux 0xeee36d8b proc_remove +EXPORT_SYMBOL vmlinux 0xeeedcfa0 blk_mq_stop_hw_queues +EXPORT_SYMBOL vmlinux 0xef01dff6 __brelse +EXPORT_SYMBOL vmlinux 0xef10a6d8 snd_card_register +EXPORT_SYMBOL vmlinux 0xef13a1b0 ipv6_dev_get_saddr +EXPORT_SYMBOL vmlinux 0xef1faa14 unregister_netdevice_notifier_net +EXPORT_SYMBOL vmlinux 0xef237813 mmc_can_gpio_ro +EXPORT_SYMBOL vmlinux 0xef2c2967 vm_map_pages_zero +EXPORT_SYMBOL vmlinux 0xef332b84 inet_get_local_port_range +EXPORT_SYMBOL vmlinux 0xef458a1a ip_mc_join_group EXPORT_SYMBOL vmlinux 0xef4cad92 trace_print_flags_seq -EXPORT_SYMBOL vmlinux 0xef51e12e pci_scan_root_bus +EXPORT_SYMBOL vmlinux 0xef63ed9d fib_notifier_ops_unregister EXPORT_SYMBOL vmlinux 0xef64769e __traceiter_dma_fence_enable_signal -EXPORT_SYMBOL vmlinux 0xef703cf1 seq_put_decimal_ll -EXPORT_SYMBOL vmlinux 0xef7aafd4 generic_cont_expand_simple -EXPORT_SYMBOL vmlinux 0xef7cc52b inet_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0xef7e61d3 fifo_create_dflt EXPORT_SYMBOL vmlinux 0xef8ac53d qcom_scm_restore_sec_cfg -EXPORT_SYMBOL vmlinux 0xef943b63 __getblk_gfp -EXPORT_SYMBOL vmlinux 0xefb48efd truncate_inode_pages_final -EXPORT_SYMBOL vmlinux 0xefc5197d phy_device_free -EXPORT_SYMBOL vmlinux 0xefde8ee7 jbd2_journal_lock_updates -EXPORT_SYMBOL vmlinux 0xefe7ae99 __breadahead +EXPORT_SYMBOL vmlinux 0xef8df078 tso_start +EXPORT_SYMBOL vmlinux 0xefa61c88 submit_bio_noacct +EXPORT_SYMBOL vmlinux 0xefca9242 netlink_unicast +EXPORT_SYMBOL vmlinux 0xefdb36e4 touch_buffer +EXPORT_SYMBOL vmlinux 0xefdedeb7 pcie_bandwidth_available EXPORT_SYMBOL vmlinux 0xefec312f omap_get_dma_active_status EXPORT_SYMBOL vmlinux 0xefeefc09 __SCK__tp_func_dma_fence_emit -EXPORT_SYMBOL vmlinux 0xeffc0a4e bh_uptodate_or_lock +EXPORT_SYMBOL vmlinux 0xeffec514 pci_read_config_byte EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list EXPORT_SYMBOL vmlinux 0xf008a885 seg6_hmac_init +EXPORT_SYMBOL vmlinux 0xf00937b9 jbd2_journal_lock_updates EXPORT_SYMBOL vmlinux 0xf01528a4 dim_turn -EXPORT_SYMBOL vmlinux 0xf01dc07b mr_fill_mroute -EXPORT_SYMBOL vmlinux 0xf01f393c open_exec +EXPORT_SYMBOL vmlinux 0xf01c39b5 account_page_redirty EXPORT_SYMBOL vmlinux 0xf02a6977 queue_rcu_work -EXPORT_SYMBOL vmlinux 0xf0319999 gro_find_receive_by_type -EXPORT_SYMBOL vmlinux 0xf047a0f8 devfreq_unregister_opp_notifier -EXPORT_SYMBOL vmlinux 0xf04808d0 netpoll_setup -EXPORT_SYMBOL vmlinux 0xf048f8e4 napi_gro_receive -EXPORT_SYMBOL vmlinux 0xf05b5851 netif_device_attach -EXPORT_SYMBOL vmlinux 0xf0693013 scsi_get_host_dev +EXPORT_SYMBOL vmlinux 0xf02cb864 __put_user_ns +EXPORT_SYMBOL vmlinux 0xf02e1dec scsi_host_get +EXPORT_SYMBOL vmlinux 0xf047d76c netdev_class_remove_file_ns +EXPORT_SYMBOL vmlinux 0xf058fb88 __inet6_lookup_established EXPORT_SYMBOL vmlinux 0xf06cee2c radix_tree_replace_slot -EXPORT_SYMBOL vmlinux 0xf07053ee pci_enable_wake -EXPORT_SYMBOL vmlinux 0xf0783f81 devfreq_monitor_stop -EXPORT_SYMBOL vmlinux 0xf081bca7 skb_trim +EXPORT_SYMBOL vmlinux 0xf07192fb xfrm6_protocol_deregister +EXPORT_SYMBOL vmlinux 0xf074fd0c mipi_dsi_dcs_exit_sleep_mode +EXPORT_SYMBOL vmlinux 0xf08e5b9a pcie_get_speed_cap +EXPORT_SYMBOL vmlinux 0xf09798cf simple_empty EXPORT_SYMBOL vmlinux 0xf09b5d9a get_zeroed_page EXPORT_SYMBOL vmlinux 0xf0a343ed release_dentry_name_snapshot -EXPORT_SYMBOL vmlinux 0xf0b377d4 tc6393xb_lcd_mode -EXPORT_SYMBOL vmlinux 0xf0dbf9de simple_transaction_release +EXPORT_SYMBOL vmlinux 0xf0a3570f seq_pad +EXPORT_SYMBOL vmlinux 0xf0a4ec72 __cleancache_invalidate_inode +EXPORT_SYMBOL vmlinux 0xf0a6220e skb_tx_error +EXPORT_SYMBOL vmlinux 0xf0b81193 vm_iomap_memory +EXPORT_SYMBOL vmlinux 0xf0bc9a95 dev_lstats_read +EXPORT_SYMBOL vmlinux 0xf0d257a7 __register_binfmt +EXPORT_SYMBOL vmlinux 0xf0d4869c netdev_get_xmit_slave EXPORT_SYMBOL vmlinux 0xf0ed2ef4 __raw_writesb EXPORT_SYMBOL vmlinux 0xf0ef52e8 down -EXPORT_SYMBOL vmlinux 0xf0fdbb1d input_mt_report_finger_count +EXPORT_SYMBOL vmlinux 0xf0f7eb60 mipi_dsi_shutdown_peripheral +EXPORT_SYMBOL vmlinux 0xf0f956fa find_inode_rcu EXPORT_SYMBOL vmlinux 0xf102033e slhc_remember EXPORT_SYMBOL vmlinux 0xf102732a crc16 EXPORT_SYMBOL vmlinux 0xf108715e dma_fence_signal_locked -EXPORT_SYMBOL vmlinux 0xf11328fa inet_bind -EXPORT_SYMBOL vmlinux 0xf11c2fa8 rawnand_sw_bch_correct +EXPORT_SYMBOL vmlinux 0xf1180c7e km_state_notify EXPORT_SYMBOL vmlinux 0xf11dd46e _page_poisoning_enabled_early -EXPORT_SYMBOL vmlinux 0xf125321a tcp_v4_connect -EXPORT_SYMBOL vmlinux 0xf12ed616 fs_context_for_reconfigure EXPORT_SYMBOL vmlinux 0xf13392df load_nls -EXPORT_SYMBOL vmlinux 0xf13e016c proc_create -EXPORT_SYMBOL vmlinux 0xf13f4232 mfd_add_devices -EXPORT_SYMBOL vmlinux 0xf151437e fs_param_is_bool -EXPORT_SYMBOL vmlinux 0xf15e44a4 jbd2_journal_start_commit -EXPORT_SYMBOL vmlinux 0xf1650aa2 phy_advertise_supported -EXPORT_SYMBOL vmlinux 0xf168641b blk_post_runtime_resume -EXPORT_SYMBOL vmlinux 0xf16d5bc5 udp_lib_rehash -EXPORT_SYMBOL vmlinux 0xf17c4b29 sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0xf1377c67 input_get_poll_interval +EXPORT_SYMBOL vmlinux 0xf13eac9f gro_find_receive_by_type +EXPORT_SYMBOL vmlinux 0xf13fe4f2 phy_validate_pause +EXPORT_SYMBOL vmlinux 0xf144a4d5 vmf_insert_mixed_mkwrite +EXPORT_SYMBOL vmlinux 0xf1529a0f empty_zero_page +EXPORT_SYMBOL vmlinux 0xf1676a8e from_kgid +EXPORT_SYMBOL vmlinux 0xf179a2b6 __test_set_page_writeback EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps EXPORT_SYMBOL vmlinux 0xf1969a8e __usecs_to_jiffies -EXPORT_SYMBOL vmlinux 0xf1aa1007 module_put +EXPORT_SYMBOL vmlinux 0xf1a1e638 snd_info_register +EXPORT_SYMBOL vmlinux 0xf1a2c987 pcim_enable_device EXPORT_SYMBOL vmlinux 0xf1ad9c4b tegra_ivc_align -EXPORT_SYMBOL vmlinux 0xf1c5e345 vc_resize -EXPORT_SYMBOL vmlinux 0xf1ca1820 proc_create_seq_private -EXPORT_SYMBOL vmlinux 0xf1d581a7 scsi_device_set_state -EXPORT_SYMBOL vmlinux 0xf1d75e1f of_find_property EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy EXPORT_SYMBOL vmlinux 0xf1e046cc panic -EXPORT_SYMBOL vmlinux 0xf1e50ffd pci_scan_bridge +EXPORT_SYMBOL vmlinux 0xf1e94a4c __dst_destroy_metrics_generic EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun EXPORT_SYMBOL vmlinux 0xf1ea6f1c __bswapsi2 -EXPORT_SYMBOL vmlinux 0xf1ee9ecf __scsi_device_lookup -EXPORT_SYMBOL vmlinux 0xf210aea0 fwnode_get_mac_address -EXPORT_SYMBOL vmlinux 0xf226287c thermal_zone_device_critical -EXPORT_SYMBOL vmlinux 0xf2304652 fs_bio_set -EXPORT_SYMBOL vmlinux 0xf233f7c7 __skb_wait_for_more_packets +EXPORT_SYMBOL vmlinux 0xf1ec2419 filemap_invalidate_unlock_two +EXPORT_SYMBOL vmlinux 0xf20201a4 sb_min_blocksize +EXPORT_SYMBOL vmlinux 0xf214cc80 init_task +EXPORT_SYMBOL vmlinux 0xf21bfcb8 neigh_resolve_output +EXPORT_SYMBOL vmlinux 0xf22a17fd bioset_exit EXPORT_SYMBOL vmlinux 0xf236c75e swake_up_one -EXPORT_SYMBOL vmlinux 0xf23c79d1 mmc_command_done +EXPORT_SYMBOL vmlinux 0xf23a20fe snd_jack_set_key EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in -EXPORT_SYMBOL vmlinux 0xf24c12c4 snd_compr_free_pages -EXPORT_SYMBOL vmlinux 0xf258c21e tc_setup_cb_destroy -EXPORT_SYMBOL vmlinux 0xf2602c7a locks_free_lock +EXPORT_SYMBOL vmlinux 0xf2593a27 input_get_timestamp +EXPORT_SYMBOL vmlinux 0xf259ddb9 mmc_release_host +EXPORT_SYMBOL vmlinux 0xf25a113b tcf_exts_terse_dump EXPORT_SYMBOL vmlinux 0xf2669a2c imx_scu_irq_register_notifier +EXPORT_SYMBOL vmlinux 0xf26c0e33 twl6040_set_pll +EXPORT_SYMBOL vmlinux 0xf2760ba3 eth_header_cache_update +EXPORT_SYMBOL vmlinux 0xf281e599 flush_signals EXPORT_SYMBOL vmlinux 0xf28404cf devlink_dpipe_header_ipv6 -EXPORT_SYMBOL vmlinux 0xf2861202 input_mt_report_slot_state EXPORT_SYMBOL vmlinux 0xf28cf0ae __hw_addr_init -EXPORT_SYMBOL vmlinux 0xf2a080bb bio_integrity_prep +EXPORT_SYMBOL vmlinux 0xf2a2f7e6 tcp_add_backlog EXPORT_SYMBOL vmlinux 0xf2ad80d9 snd_pcm_create_iec958_consumer_hw_params -EXPORT_SYMBOL vmlinux 0xf2b6c16c __kmap_to_page -EXPORT_SYMBOL vmlinux 0xf2bd5d44 phy_start_cable_test +EXPORT_SYMBOL vmlinux 0xf2ade13b dst_destroy EXPORT_SYMBOL vmlinux 0xf2c43f3f zlib_deflate -EXPORT_SYMBOL vmlinux 0xf2dc645d i2c_smbus_write_byte_data +EXPORT_SYMBOL vmlinux 0xf2c9da07 vme_dma_list_exec +EXPORT_SYMBOL vmlinux 0xf2d94c7e no_llseek EXPORT_SYMBOL vmlinux 0xf2e5bd87 security_free_mnt_opts -EXPORT_SYMBOL vmlinux 0xf2e5ca1d of_device_alloc +EXPORT_SYMBOL vmlinux 0xf2e71549 jbd2_journal_get_write_access +EXPORT_SYMBOL vmlinux 0xf2f231cc devm_alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0xf2f98b59 unregister_mii_timestamper +EXPORT_SYMBOL vmlinux 0xf30666fa set_anon_super_fc EXPORT_SYMBOL vmlinux 0xf3107926 sha224_update -EXPORT_SYMBOL vmlinux 0xf337ea42 fb_set_suspend -EXPORT_SYMBOL vmlinux 0xf3411417 fasync_helper +EXPORT_SYMBOL vmlinux 0xf328e4c2 param_set_ulong +EXPORT_SYMBOL vmlinux 0xf334a9a6 xfrm_parse_spi EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head EXPORT_SYMBOL vmlinux 0xf348ff41 bpf_stats_enabled_key +EXPORT_SYMBOL vmlinux 0xf34f0260 dquot_release EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier -EXPORT_SYMBOL vmlinux 0xf35c2917 param_set_short +EXPORT_SYMBOL vmlinux 0xf3582896 snd_pcm_hw_param_first +EXPORT_SYMBOL vmlinux 0xf35f17a4 skb_udp_tunnel_segment EXPORT_SYMBOL vmlinux 0xf362dc7f arm_clear_user -EXPORT_SYMBOL vmlinux 0xf367efec fs_param_is_enum -EXPORT_SYMBOL vmlinux 0xf37ae4af uart_get_baud_rate -EXPORT_SYMBOL vmlinux 0xf387df65 trace_raw_output_prep +EXPORT_SYMBOL vmlinux 0xf36c26d4 security_inet_conn_established +EXPORT_SYMBOL vmlinux 0xf37bee2a __cleancache_init_shared_fs EXPORT_SYMBOL vmlinux 0xf3916987 global_cursor_default +EXPORT_SYMBOL vmlinux 0xf39ba0df jbd2_journal_start_commit +EXPORT_SYMBOL vmlinux 0xf39ceb08 peernet2id EXPORT_SYMBOL vmlinux 0xf3a11c35 xa_find_after -EXPORT_SYMBOL vmlinux 0xf3ab72b7 phy_connect -EXPORT_SYMBOL vmlinux 0xf3ae9f40 rtc_add_groups EXPORT_SYMBOL vmlinux 0xf3b30a06 utf8version_latest -EXPORT_SYMBOL vmlinux 0xf3c07f26 pin_user_pages_unlocked EXPORT_SYMBOL vmlinux 0xf3cac714 ucc_fast_init +EXPORT_SYMBOL vmlinux 0xf3cf54b9 uart_match_port EXPORT_SYMBOL vmlinux 0xf3d0b495 _raw_spin_unlock_irqrestore -EXPORT_SYMBOL vmlinux 0xf3d1cd95 simple_release_fs +EXPORT_SYMBOL vmlinux 0xf3d97c1d iov_iter_init EXPORT_SYMBOL vmlinux 0xf3e6402e __bitmap_equal EXPORT_SYMBOL vmlinux 0xf3eb1323 kstrtou16_from_user +EXPORT_SYMBOL vmlinux 0xf3f06910 clk_add_alias +EXPORT_SYMBOL vmlinux 0xf3fba79a netdev_txq_to_tc EXPORT_SYMBOL vmlinux 0xf40019c0 tegra114_clock_tune_cpu_trimmers_init -EXPORT_SYMBOL vmlinux 0xf41eceb4 dma_set_mask -EXPORT_SYMBOL vmlinux 0xf427700c __register_binfmt -EXPORT_SYMBOL vmlinux 0xf42b335c do_splice_direct -EXPORT_SYMBOL vmlinux 0xf42dbb70 skb_recv_datagram +EXPORT_SYMBOL vmlinux 0xf441b0d0 security_old_inode_init_security EXPORT_SYMBOL vmlinux 0xf44a3ad4 __tracepoint_dma_fence_enable_signal EXPORT_SYMBOL vmlinux 0xf44a904a net_ns_barrier -EXPORT_SYMBOL vmlinux 0xf46b185e tcp_simple_retransmit +EXPORT_SYMBOL vmlinux 0xf462d152 blk_queue_split EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const -EXPORT_SYMBOL vmlinux 0xf493c63f phy_support_sym_pause +EXPORT_SYMBOL vmlinux 0xf481eb24 of_graph_get_remote_endpoint EXPORT_SYMBOL vmlinux 0xf496fbd2 __tracepoint_module_get -EXPORT_SYMBOL vmlinux 0xf49ebbfe tty_port_init EXPORT_SYMBOL vmlinux 0xf4a04498 nmi_panic -EXPORT_SYMBOL vmlinux 0xf4a5ce9e pci_get_slot +EXPORT_SYMBOL vmlinux 0xf4a58d5d dev_disable_lro EXPORT_SYMBOL vmlinux 0xf4aa8459 textsearch_destroy EXPORT_SYMBOL vmlinux 0xf4ba246e ZSTD_nextSrcSizeToDecompress EXPORT_SYMBOL vmlinux 0xf4baa334 proc_dointvec_userhz_jiffies EXPORT_SYMBOL vmlinux 0xf4bdbeb9 __frontswap_invalidate_area -EXPORT_SYMBOL vmlinux 0xf4bf8aab pci_disable_msix -EXPORT_SYMBOL vmlinux 0xf4d08805 netdev_class_create_file_ns -EXPORT_SYMBOL vmlinux 0xf4d5e2fd xsk_tx_peek_release_desc_batch +EXPORT_SYMBOL vmlinux 0xf4c10027 phy_ethtool_ksettings_get +EXPORT_SYMBOL vmlinux 0xf4d139b9 devfreq_register_opp_notifier EXPORT_SYMBOL vmlinux 0xf4db35bc stpcpy -EXPORT_SYMBOL vmlinux 0xf4ea8aa4 sb_min_blocksize -EXPORT_SYMBOL vmlinux 0xf4eb906a sock_alloc_send_skb -EXPORT_SYMBOL vmlinux 0xf4efa200 fqdir_exit -EXPORT_SYMBOL vmlinux 0xf4efb789 dquot_load_quota_inode +EXPORT_SYMBOL vmlinux 0xf4dbb946 phy_sfp_probe +EXPORT_SYMBOL vmlinux 0xf4de7887 d_move +EXPORT_SYMBOL vmlinux 0xf4e6f4c9 dev_get_by_name_rcu +EXPORT_SYMBOL vmlinux 0xf4eae86a blk_queue_virt_boundary EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock -EXPORT_SYMBOL vmlinux 0xf4f3bf8b iget_locked -EXPORT_SYMBOL vmlinux 0xf50da582 arp_send -EXPORT_SYMBOL vmlinux 0xf519ac95 snd_ctl_remove_id -EXPORT_SYMBOL vmlinux 0xf539dd70 xfrm_state_add +EXPORT_SYMBOL vmlinux 0xf4fd721b iterate_fd +EXPORT_SYMBOL vmlinux 0xf5003883 path_is_under +EXPORT_SYMBOL vmlinux 0xf516e786 generic_file_readonly_mmap +EXPORT_SYMBOL vmlinux 0xf51ca227 cros_ec_cmd_xfer_status +EXPORT_SYMBOL vmlinux 0xf51d7199 pci_try_set_mwi EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy -EXPORT_SYMBOL vmlinux 0xf54788e7 tegra_dfll_register -EXPORT_SYMBOL vmlinux 0xf547e7e3 sg_miter_next +EXPORT_SYMBOL vmlinux 0xf563193f xfrm_policy_destroy +EXPORT_SYMBOL vmlinux 0xf5636e28 snd_pcm_hw_constraint_mask64 EXPORT_SYMBOL vmlinux 0xf564412a __aeabi_ulcmp -EXPORT_SYMBOL vmlinux 0xf56c0a54 forget_all_cached_acls -EXPORT_SYMBOL vmlinux 0xf580fa87 pci_bus_find_capability -EXPORT_SYMBOL vmlinux 0xf5895191 tcp_add_backlog -EXPORT_SYMBOL vmlinux 0xf58c8ecc cdrom_dummy_generic_packet +EXPORT_SYMBOL vmlinux 0xf566b80f fqdir_init +EXPORT_SYMBOL vmlinux 0xf568adef jbd2_fc_get_buf +EXPORT_SYMBOL vmlinux 0xf5715cf3 dmam_free_coherent +EXPORT_SYMBOL vmlinux 0xf589e123 get_task_cred +EXPORT_SYMBOL vmlinux 0xf59d847f mmc_erase EXPORT_SYMBOL vmlinux 0xf5a0e0d2 gen_pool_for_each_chunk -EXPORT_SYMBOL vmlinux 0xf5a895b9 dev_mc_unsync +EXPORT_SYMBOL vmlinux 0xf5abd8d9 netdev_lower_get_first_private_rcu EXPORT_SYMBOL vmlinux 0xf5b666ef __cond_resched_lock +EXPORT_SYMBOL vmlinux 0xf5db379f pci_bus_alloc_resource +EXPORT_SYMBOL vmlinux 0xf5dfe2b8 sk_wait_data EXPORT_SYMBOL vmlinux 0xf5e7ea40 ktime_get_coarse_ts64 -EXPORT_SYMBOL vmlinux 0xf5f30603 starget_for_each_device -EXPORT_SYMBOL vmlinux 0xf60deb47 security_path_mknod -EXPORT_SYMBOL vmlinux 0xf6203980 xfrm_state_walk_done +EXPORT_SYMBOL vmlinux 0xf5eeb8b3 dec_node_page_state +EXPORT_SYMBOL vmlinux 0xf5f348a7 get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0xf60dc03e inet_addr_type EXPORT_SYMBOL vmlinux 0xf62654f8 ucc_fast_disable +EXPORT_SYMBOL vmlinux 0xf641496d param_set_int EXPORT_SYMBOL vmlinux 0xf643d104 hsiphash_4u32 EXPORT_SYMBOL vmlinux 0xf64bf255 wait_for_completion +EXPORT_SYMBOL vmlinux 0xf64cb7f0 thread_group_exited +EXPORT_SYMBOL vmlinux 0xf6529f3f security_dentry_init_security EXPORT_SYMBOL vmlinux 0xf652d359 __wake_up_bit -EXPORT_SYMBOL vmlinux 0xf65b8bbb generic_fill_statx_attr +EXPORT_SYMBOL vmlinux 0xf657de2b fscrypt_encrypt_block_inplace EXPORT_SYMBOL vmlinux 0xf665f74f sock_load_diag_module -EXPORT_SYMBOL vmlinux 0xf668aed4 pci_scan_root_bus_bridge -EXPORT_SYMBOL vmlinux 0xf66ff750 flow_rule_match_enc_ip EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier -EXPORT_SYMBOL vmlinux 0xf690c0bf reuseport_stop_listen_sock +EXPORT_SYMBOL vmlinux 0xf68b0a04 __sk_mem_raise_allocated +EXPORT_SYMBOL vmlinux 0xf691ab42 dm_table_get_mode +EXPORT_SYMBOL vmlinux 0xf6a271f0 sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0xf6a4c360 pcie_set_readrq EXPORT_SYMBOL vmlinux 0xf6a5ee2e qcom_scm_io_readl -EXPORT_SYMBOL vmlinux 0xf6abe168 unregister_mii_timestamper -EXPORT_SYMBOL vmlinux 0xf6cddfa3 get_task_cred -EXPORT_SYMBOL vmlinux 0xf6dadb49 rt6_lookup +EXPORT_SYMBOL vmlinux 0xf6c09301 tcp_v4_md5_lookup +EXPORT_SYMBOL vmlinux 0xf6d3c8f9 serio_unregister_driver +EXPORT_SYMBOL vmlinux 0xf6df14c8 sock_queue_err_skb +EXPORT_SYMBOL vmlinux 0xf6e40b88 nand_ecc_sw_hamming_calculate EXPORT_SYMBOL vmlinux 0xf6e4df71 on_each_cpu_cond_mask EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit -EXPORT_SYMBOL vmlinux 0xf6fb576c dev_mc_add_global +EXPORT_SYMBOL vmlinux 0xf6f428e5 pci_enable_device_io EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor -EXPORT_SYMBOL vmlinux 0xf704ac39 scsi_command_normalize_sense EXPORT_SYMBOL vmlinux 0xf705fa49 gen_pool_free_owner -EXPORT_SYMBOL vmlinux 0xf70f68f5 blkdev_issue_zeroout EXPORT_SYMBOL vmlinux 0xf7163ec9 __raw_readsb -EXPORT_SYMBOL vmlinux 0xf7234ec6 pci_read_config_word -EXPORT_SYMBOL vmlinux 0xf727f33a vme_bus_error_handler -EXPORT_SYMBOL vmlinux 0xf736e050 cros_ec_check_result EXPORT_SYMBOL vmlinux 0xf738d1be register_blocking_lsm_notifier -EXPORT_SYMBOL vmlinux 0xf759f8da blk_queue_max_write_same_sectors +EXPORT_SYMBOL vmlinux 0xf74e9eaa unpin_user_page_range_dirty_lock EXPORT_SYMBOL vmlinux 0xf76843b5 qcom_scm_pas_supported +EXPORT_SYMBOL vmlinux 0xf76d87a0 vfs_mknod EXPORT_SYMBOL vmlinux 0xf77337a1 hdmi_audio_infoframe_check EXPORT_SYMBOL vmlinux 0xf7802486 __aeabi_uidivmod -EXPORT_SYMBOL vmlinux 0xf7803bdd xfrm_register_type -EXPORT_SYMBOL vmlinux 0xf78e9017 jbd2_journal_set_triggers -EXPORT_SYMBOL vmlinux 0xf7c98233 blk_mq_complete_request -EXPORT_SYMBOL vmlinux 0xf7f9588a fwnode_graph_parse_endpoint +EXPORT_SYMBOL vmlinux 0xf78409b6 ipv6_find_hdr +EXPORT_SYMBOL vmlinux 0xf7943acf dquot_acquire +EXPORT_SYMBOL vmlinux 0xf7958121 clk_hw_get_clk +EXPORT_SYMBOL vmlinux 0xf7bb19d5 tty_unthrottle +EXPORT_SYMBOL vmlinux 0xf7bcd437 xfrm_register_type +EXPORT_SYMBOL vmlinux 0xf7bd0601 fs_context_for_reconfigure +EXPORT_SYMBOL vmlinux 0xf7c37a85 fs_param_is_u32 +EXPORT_SYMBOL vmlinux 0xf7da68a7 pci_write_config_word EXPORT_SYMBOL vmlinux 0xf8029f33 config_item_get -EXPORT_SYMBOL vmlinux 0xf8116df8 jbd2_journal_load +EXPORT_SYMBOL vmlinux 0xf80856ed register_netdevice EXPORT_SYMBOL vmlinux 0xf811e69d scsi_eh_flush_done_q -EXPORT_SYMBOL vmlinux 0xf819fbe4 i2c_add_adapter +EXPORT_SYMBOL vmlinux 0xf819bd47 nf_unregister_net_hook EXPORT_SYMBOL vmlinux 0xf82abc1d isa_dma_bridge_buggy EXPORT_SYMBOL vmlinux 0xf82ec573 rb_prev EXPORT_SYMBOL vmlinux 0xf838fd97 dim_park_on_top -EXPORT_SYMBOL vmlinux 0xf841616b submit_bio_wait +EXPORT_SYMBOL vmlinux 0xf841d187 jbd2_journal_abort EXPORT_SYMBOL vmlinux 0xf84c3647 pci_add_resource_offset -EXPORT_SYMBOL vmlinux 0xf84c95a3 unregister_md_personality EXPORT_SYMBOL vmlinux 0xf866b00c tegra_io_pad_power_enable -EXPORT_SYMBOL vmlinux 0xf867cc1d cros_ec_cmd_xfer_status EXPORT_SYMBOL vmlinux 0xf86f27cd idr_alloc_cyclic -EXPORT_SYMBOL vmlinux 0xf8728578 capable_wrt_inode_uidgid -EXPORT_SYMBOL vmlinux 0xf89e9644 pci_bus_assign_resources -EXPORT_SYMBOL vmlinux 0xf8c7ece6 jbd2_transaction_committed -EXPORT_SYMBOL vmlinux 0xf8dcaae7 md_write_start +EXPORT_SYMBOL vmlinux 0xf87a6d96 pcim_pin_device +EXPORT_SYMBOL vmlinux 0xf87c3697 proc_create_mount_point +EXPORT_SYMBOL vmlinux 0xf87c5a16 mmc_can_gpio_cd +EXPORT_SYMBOL vmlinux 0xf8b95c1b jbd2_log_wait_commit +EXPORT_SYMBOL vmlinux 0xf8cce9b2 vlan_filter_push_vids +EXPORT_SYMBOL vmlinux 0xf8e2df24 neigh_for_each +EXPORT_SYMBOL vmlinux 0xf8e78f21 dev_pick_tx_cpu_id +EXPORT_SYMBOL vmlinux 0xf8ed9f5a dev_close EXPORT_SYMBOL vmlinux 0xf8f61ebc wake_up_var -EXPORT_SYMBOL vmlinux 0xf902576d ata_std_end_eh -EXPORT_SYMBOL vmlinux 0xf916dfa1 pci_request_selected_regions -EXPORT_SYMBOL vmlinux 0xf9183507 serio_close -EXPORT_SYMBOL vmlinux 0xf92035f3 set_nlink -EXPORT_SYMBOL vmlinux 0xf92fd92c ucc_of_parse_tdm -EXPORT_SYMBOL vmlinux 0xf93736ca inet_proto_csum_replace_by_diff +EXPORT_SYMBOL vmlinux 0xf9063305 security_sctp_sk_clone +EXPORT_SYMBOL vmlinux 0xf90f6ebd input_register_handler +EXPORT_SYMBOL vmlinux 0xf9103675 dm_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0xf9214f65 blk_sync_queue EXPORT_SYMBOL vmlinux 0xf93aae46 __arm_smccc_smc EXPORT_SYMBOL vmlinux 0xf93fd09c fb_find_mode_cvt -EXPORT_SYMBOL vmlinux 0xf94a71a0 nf_ct_attach -EXPORT_SYMBOL vmlinux 0xf95e0551 xfrm_policy_destroy -EXPORT_SYMBOL vmlinux 0xf96f7b1e pcim_iomap EXPORT_SYMBOL vmlinux 0xf9722676 twl_i2c_write EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep -EXPORT_SYMBOL vmlinux 0xf9d981d2 dcb_ieee_setapp -EXPORT_SYMBOL vmlinux 0xf9dc3514 vfs_getattr +EXPORT_SYMBOL vmlinux 0xf9c74fde ppp_unregister_channel +EXPORT_SYMBOL vmlinux 0xf9d34594 __block_write_full_page +EXPORT_SYMBOL vmlinux 0xf9d39d8e tcf_exts_dump +EXPORT_SYMBOL vmlinux 0xf9d51bf2 input_mt_report_pointer_emulation EXPORT_SYMBOL vmlinux 0xf9dc9d13 proc_dobool +EXPORT_SYMBOL vmlinux 0xf9e99dca jbd2_journal_check_available_features EXPORT_SYMBOL vmlinux 0xf9f0c951 kstrtol_from_user EXPORT_SYMBOL vmlinux 0xf9f3696e __cpuhp_setup_state_cpuslocked -EXPORT_SYMBOL vmlinux 0xf9f451e4 xfrm_sad_getinfo -EXPORT_SYMBOL vmlinux 0xf9f67ef0 nand_ecc_sw_bch_init_ctx -EXPORT_SYMBOL vmlinux 0xf9fe9bc2 get_tree_nodev +EXPORT_SYMBOL vmlinux 0xf9fb1ba7 param_get_hexint EXPORT_SYMBOL vmlinux 0xfa021f90 ZSTD_decompressContinue +EXPORT_SYMBOL vmlinux 0xfa06c957 serial8250_register_8250_port EXPORT_SYMBOL vmlinux 0xfa08c34a page_offline_end -EXPORT_SYMBOL vmlinux 0xfa09aa08 init_task -EXPORT_SYMBOL vmlinux 0xfa09ffb9 set_binfmt -EXPORT_SYMBOL vmlinux 0xfa0ada28 clk_add_alias -EXPORT_SYMBOL vmlinux 0xfa19f97b make_bad_inode -EXPORT_SYMBOL vmlinux 0xfa1b3613 security_task_getsecid_subj -EXPORT_SYMBOL vmlinux 0xfa4fc053 request_firmware_nowait +EXPORT_SYMBOL vmlinux 0xfa1758b2 kfree_skb +EXPORT_SYMBOL vmlinux 0xfa26b508 qdisc_hash_del +EXPORT_SYMBOL vmlinux 0xfa2f560c fwnode_mdiobus_phy_device_register +EXPORT_SYMBOL vmlinux 0xfa36c81e dma_async_tx_descriptor_init EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier -EXPORT_SYMBOL vmlinux 0xfa5a46e9 vfs_rmdir -EXPORT_SYMBOL vmlinux 0xfa6263e7 padata_free_shell EXPORT_SYMBOL vmlinux 0xfa6f3544 __register_nls -EXPORT_SYMBOL vmlinux 0xfa75c277 tcp_child_process -EXPORT_SYMBOL vmlinux 0xfa829845 writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0xfa727ac3 param_ops_byte +EXPORT_SYMBOL vmlinux 0xfa730632 snd_pcm_hw_constraint_msbits EXPORT_SYMBOL vmlinux 0xfa873ad0 prandom_seed -EXPORT_SYMBOL vmlinux 0xfa8f5b35 blk_mq_tag_to_rq -EXPORT_SYMBOL vmlinux 0xfa98e8d5 dma_map_page_attrs -EXPORT_SYMBOL vmlinux 0xfa9eb61c kernel_sock_shutdown -EXPORT_SYMBOL vmlinux 0xfac096e3 cfb_fillrect +EXPORT_SYMBOL vmlinux 0xfa8bc629 mtd_concat_create +EXPORT_SYMBOL vmlinux 0xfa979530 __dev_get_by_flags +EXPORT_SYMBOL vmlinux 0xfaa4cf8a blk_queue_flag_clear +EXPORT_SYMBOL vmlinux 0xfaa7dcd7 sync_mapping_buffers +EXPORT_SYMBOL vmlinux 0xfaadcf8e phy_ethtool_get_stats +EXPORT_SYMBOL vmlinux 0xfab10534 mmc_can_trim +EXPORT_SYMBOL vmlinux 0xfab16259 devm_nvmem_cell_put +EXPORT_SYMBOL vmlinux 0xfac8783b dev_add_pack EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max -EXPORT_SYMBOL vmlinux 0xfaea725d tty_check_change -EXPORT_SYMBOL vmlinux 0xfaf10ea3 eth_gro_complete -EXPORT_SYMBOL vmlinux 0xfb0b9ff1 set_create_files_as +EXPORT_SYMBOL vmlinux 0xfb02dfea __bforget +EXPORT_SYMBOL vmlinux 0xfb1771d8 __hw_addr_sync_dev EXPORT_SYMBOL vmlinux 0xfb1d7438 down_read -EXPORT_SYMBOL vmlinux 0xfb1d78bb seq_open -EXPORT_SYMBOL vmlinux 0xfb1fa0e3 inode_init_owner -EXPORT_SYMBOL vmlinux 0xfb27aaff phy_get_internal_delay -EXPORT_SYMBOL vmlinux 0xfb2eb5c9 devfreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0xfb328e1f qdisc_offload_dump_helper EXPORT_SYMBOL vmlinux 0xfb336634 mempool_destroy -EXPORT_SYMBOL vmlinux 0xfb36047b jbd2_fc_end_commit_fallback EXPORT_SYMBOL vmlinux 0xfb384d37 kasprintf -EXPORT_SYMBOL vmlinux 0xfb3d096d genl_unregister_family -EXPORT_SYMBOL vmlinux 0xfb41baa9 kern_unmount_array -EXPORT_SYMBOL vmlinux 0xfb4656b6 inet_frag_destroy -EXPORT_SYMBOL vmlinux 0xfb47ea8b generic_shutdown_super -EXPORT_SYMBOL vmlinux 0xfb485bf8 kern_path -EXPORT_SYMBOL vmlinux 0xfb4ddd1b netdev_name_node_alt_create -EXPORT_SYMBOL vmlinux 0xfb5256ca vfs_fsync -EXPORT_SYMBOL vmlinux 0xfb5a01c9 dev_deactivate +EXPORT_SYMBOL vmlinux 0xfb3ad4a4 security_sctp_bind_connect +EXPORT_SYMBOL vmlinux 0xfb412d84 clk_get +EXPORT_SYMBOL vmlinux 0xfb588b27 security_path_unlink +EXPORT_SYMBOL vmlinux 0xfb6a5732 tcp_rtx_synack EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending -EXPORT_SYMBOL vmlinux 0xfb6f5ecc serio_unregister_port -EXPORT_SYMBOL vmlinux 0xfb74a320 generic_file_llseek +EXPORT_SYMBOL vmlinux 0xfb6fa2e9 inet_accept +EXPORT_SYMBOL vmlinux 0xfb764a1e page_mapping +EXPORT_SYMBOL vmlinux 0xfb7acc2c ip4_datagram_connect EXPORT_SYMBOL vmlinux 0xfb7d9c45 __udivsi3 -EXPORT_SYMBOL vmlinux 0xfb7f5cbc sk_capable EXPORT_SYMBOL vmlinux 0xfba7ddd2 match_u64 EXPORT_SYMBOL vmlinux 0xfbaaf01e console_lock EXPORT_SYMBOL vmlinux 0xfbad3cf0 scsi_normalize_sense +EXPORT_SYMBOL vmlinux 0xfbc04103 page_cache_prev_miss EXPORT_SYMBOL vmlinux 0xfbc4f89e io_schedule_timeout -EXPORT_SYMBOL vmlinux 0xfbc63af7 jbd2_journal_forget -EXPORT_SYMBOL vmlinux 0xfbcb12f9 vfs_getattr_nosec -EXPORT_SYMBOL vmlinux 0xfbe2d9c4 kill_anon_super -EXPORT_SYMBOL vmlinux 0xfbe9dda3 get_ipc_ns_exported EXPORT_SYMBOL vmlinux 0xfbea611e _raw_read_unlock_bh -EXPORT_SYMBOL vmlinux 0xfbeb0752 request_firmware_into_buf -EXPORT_SYMBOL vmlinux 0xfbf6d2aa dm_get_device +EXPORT_SYMBOL vmlinux 0xfbf56463 pci_match_id +EXPORT_SYMBOL vmlinux 0xfbf5e0f0 skb_push EXPORT_SYMBOL vmlinux 0xfbfd7e4c set_groups -EXPORT_SYMBOL vmlinux 0xfc056720 kthread_blkcg -EXPORT_SYMBOL vmlinux 0xfc133528 submit_bio -EXPORT_SYMBOL vmlinux 0xfc1e5100 copy_page_from_iter +EXPORT_SYMBOL vmlinux 0xfc0959e2 tty_port_put +EXPORT_SYMBOL vmlinux 0xfc0b95d0 proto_register +EXPORT_SYMBOL vmlinux 0xfc136e49 dma_resv_add_excl_fence +EXPORT_SYMBOL vmlinux 0xfc1a3d25 fasync_helper EXPORT_SYMBOL vmlinux 0xfc31eec2 _raw_read_lock_irq -EXPORT_SYMBOL vmlinux 0xfc398f56 inode_dio_wait EXPORT_SYMBOL vmlinux 0xfc399557 utf8_load EXPORT_SYMBOL vmlinux 0xfc39e32f ioport_unmap -EXPORT_SYMBOL vmlinux 0xfc3c2335 __scsi_add_device EXPORT_SYMBOL vmlinux 0xfc3f3589 strscpy_pad -EXPORT_SYMBOL vmlinux 0xfc4273bb nf_hook_slow_list -EXPORT_SYMBOL vmlinux 0xfc4bdfba __post_watch_notification -EXPORT_SYMBOL vmlinux 0xfc4e71d7 lookup_one_len_unlocked EXPORT_SYMBOL vmlinux 0xfc52abc7 qcom_scm_pas_shutdown -EXPORT_SYMBOL vmlinux 0xfc65a217 seq_printf -EXPORT_SYMBOL vmlinux 0xfc6643dd tty_port_free_xmit_buf -EXPORT_SYMBOL vmlinux 0xfc7821e0 path_get -EXPORT_SYMBOL vmlinux 0xfc7f5c81 qdisc_hash_del -EXPORT_SYMBOL vmlinux 0xfc8879ac blk_mq_kick_requeue_list -EXPORT_SYMBOL vmlinux 0xfc91b2a7 netdev_unbind_sb_channel -EXPORT_SYMBOL vmlinux 0xfc92b221 inet_add_protocol -EXPORT_SYMBOL vmlinux 0xfc9e0d34 dev_set_mtu +EXPORT_SYMBOL vmlinux 0xfc5fdee5 input_release_device +EXPORT_SYMBOL vmlinux 0xfc673d08 __xfrm_policy_check EXPORT_SYMBOL vmlinux 0xfc9ed8c3 qcom_scm_ice_available -EXPORT_SYMBOL vmlinux 0xfcc5447f vfs_iter_write -EXPORT_SYMBOL vmlinux 0xfcc9f1b0 __blk_alloc_disk +EXPORT_SYMBOL vmlinux 0xfc9f698a uart_get_divisor +EXPORT_SYMBOL vmlinux 0xfca4761c del_gendisk +EXPORT_SYMBOL vmlinux 0xfcb8dcfd set_page_dirty_lock +EXPORT_SYMBOL vmlinux 0xfcc97a09 inet_csk_clear_xmit_timers EXPORT_SYMBOL vmlinux 0xfcd1819a hdmi_spd_infoframe_check -EXPORT_SYMBOL vmlinux 0xfcd378fb security_sctp_assoc_request +EXPORT_SYMBOL vmlinux 0xfcdb650a rtc_add_groups EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq -EXPORT_SYMBOL vmlinux 0xfcfdbda4 configfs_depend_item -EXPORT_SYMBOL vmlinux 0xfd07a97e proto_register -EXPORT_SYMBOL vmlinux 0xfd082042 pci_bus_claim_resources -EXPORT_SYMBOL vmlinux 0xfd085f32 param_get_ulong -EXPORT_SYMBOL vmlinux 0xfd16c3c9 dump_skip_to +EXPORT_SYMBOL vmlinux 0xfd11559b tcf_exts_destroy EXPORT_SYMBOL vmlinux 0xfd1bc346 __traceiter_dma_fence_signaled EXPORT_SYMBOL vmlinux 0xfd305341 walk_stackframe -EXPORT_SYMBOL vmlinux 0xfd3856fa scsi_report_opcode -EXPORT_SYMBOL vmlinux 0xfd6f644a get_tz_trend -EXPORT_SYMBOL vmlinux 0xfd722ecb md_reload_sb -EXPORT_SYMBOL vmlinux 0xfd81f82c twl6040_power +EXPORT_SYMBOL vmlinux 0xfd3d1c03 devm_pci_alloc_host_bridge +EXPORT_SYMBOL vmlinux 0xfd440804 devfreq_suspend_device +EXPORT_SYMBOL vmlinux 0xfd455679 filemap_fdatawrite_wbc +EXPORT_SYMBOL vmlinux 0xfd4c0b2b inet6_getname +EXPORT_SYMBOL vmlinux 0xfd711792 pm860x_bulk_read +EXPORT_SYMBOL vmlinux 0xfd74b5c9 vc_resize +EXPORT_SYMBOL vmlinux 0xfd768b66 wait_on_page_bit +EXPORT_SYMBOL vmlinux 0xfd785eab iov_iter_xarray +EXPORT_SYMBOL vmlinux 0xfd82f7e6 backlight_force_update +EXPORT_SYMBOL vmlinux 0xfd8487ff framebuffer_release EXPORT_SYMBOL vmlinux 0xfd8c5afc release_fiq -EXPORT_SYMBOL vmlinux 0xfda595a1 msm_pinctrl_probe +EXPORT_SYMBOL vmlinux 0xfd90b538 nf_reinject +EXPORT_SYMBOL vmlinux 0xfd9f1495 netif_device_detach EXPORT_SYMBOL vmlinux 0xfda9581f prandom_u32 -EXPORT_SYMBOL vmlinux 0xfdb92476 finish_no_open -EXPORT_SYMBOL vmlinux 0xfdb98c05 always_delete_dentry -EXPORT_SYMBOL vmlinux 0xfdbcc02f pldmfw_flash_image +EXPORT_SYMBOL vmlinux 0xfdb759e5 scsi_host_busy EXPORT_SYMBOL vmlinux 0xfdcc8a0e fb_find_best_display -EXPORT_SYMBOL vmlinux 0xfdde14bd pci_stop_and_remove_bus_device -EXPORT_SYMBOL vmlinux 0xfde168ac tcf_block_get -EXPORT_SYMBOL vmlinux 0xfde7cc55 snd_pcm_open_substream -EXPORT_SYMBOL vmlinux 0xfde913a6 cdrom_get_media_event +EXPORT_SYMBOL vmlinux 0xfdd6133c skb_pull +EXPORT_SYMBOL vmlinux 0xfdd918f4 generic_file_read_iter +EXPORT_SYMBOL vmlinux 0xfde30c2d pci_scan_root_bus_bridge +EXPORT_SYMBOL vmlinux 0xfdf1da1a mmc_can_erase EXPORT_SYMBOL vmlinux 0xfdf4cff0 neigh_proc_dointvec_jiffies -EXPORT_SYMBOL vmlinux 0xfdf6194f xfrm4_protocol_deregister -EXPORT_SYMBOL vmlinux 0xfdfa7a03 tcf_idr_create EXPORT_SYMBOL vmlinux 0xfdff94e0 ZSTD_initDStream EXPORT_SYMBOL vmlinux 0xfe029963 unregister_inetaddr_notifier -EXPORT_SYMBOL vmlinux 0xfe2e14c8 fifo_create_dflt -EXPORT_SYMBOL vmlinux 0xfe2ed044 inet6_getname -EXPORT_SYMBOL vmlinux 0xfe2fef5e inet_unregister_protosw -EXPORT_SYMBOL vmlinux 0xfe3205c5 devfreq_add_governor +EXPORT_SYMBOL vmlinux 0xfe0c37c1 qdisc_watchdog_init +EXPORT_SYMBOL vmlinux 0xfe24a6d6 ptp_clock_register +EXPORT_SYMBOL vmlinux 0xfe41dff4 backlight_device_register EXPORT_SYMBOL vmlinux 0xfe487975 init_wait_entry +EXPORT_SYMBOL vmlinux 0xfe5a8d89 vme_register_error_handler EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz -EXPORT_SYMBOL vmlinux 0xfe669575 account_page_redirty +EXPORT_SYMBOL vmlinux 0xfe83b5bf dcb_ieee_getapp_prio_dscp_mask_map +EXPORT_SYMBOL vmlinux 0xfe8cded6 mmc_wait_for_cmd EXPORT_SYMBOL vmlinux 0xfe90c4a6 _find_first_zero_bit_le -EXPORT_SYMBOL vmlinux 0xfe91f57d blk_mq_tagset_wait_completed_request -EXPORT_SYMBOL vmlinux 0xfea4c116 nand_scan_with_ids +EXPORT_SYMBOL vmlinux 0xfeaa2033 pci_free_irq_vectors EXPORT_SYMBOL vmlinux 0xfeb5d0aa verify_spi_info -EXPORT_SYMBOL vmlinux 0xfeba3651 phy_ethtool_ksettings_set -EXPORT_SYMBOL vmlinux 0xfeceb778 mmc_gpio_get_ro EXPORT_SYMBOL vmlinux 0xfedcdb60 seq_hlist_next_percpu -EXPORT_SYMBOL vmlinux 0xfeea99d6 remap_vmalloc_range -EXPORT_SYMBOL vmlinux 0xfef99e4a vme_init_bridge EXPORT_SYMBOL vmlinux 0xfefcb98e vme_dma_vme_attribute -EXPORT_SYMBOL vmlinux 0xff09de1e __skb_pad +EXPORT_SYMBOL vmlinux 0xff061dc5 netdev_next_lower_dev_rcu +EXPORT_SYMBOL vmlinux 0xff0b102e sock_cmsg_send +EXPORT_SYMBOL vmlinux 0xff0e345e block_write_end +EXPORT_SYMBOL vmlinux 0xff131e22 __udp_disconnect EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start -EXPORT_SYMBOL vmlinux 0xff22520e neigh_event_ns EXPORT_SYMBOL vmlinux 0xff282521 rfkill_register -EXPORT_SYMBOL vmlinux 0xff33b0f7 get_cached_acl -EXPORT_SYMBOL vmlinux 0xff3a06d2 tty_port_raise_dtr_rts -EXPORT_SYMBOL vmlinux 0xff421b66 jbd2_journal_init_jbd_inode +EXPORT_SYMBOL vmlinux 0xff347434 snd_ctl_add +EXPORT_SYMBOL vmlinux 0xff43003f generic_cont_expand_simple EXPORT_SYMBOL vmlinux 0xff4351b0 ecc_sw_hamming_calculate +EXPORT_SYMBOL vmlinux 0xff59c183 request_key_with_auxdata EXPORT_SYMBOL vmlinux 0xff6104d0 snd_pcm_rate_bit_to_rate EXPORT_SYMBOL vmlinux 0xff67b37f __lshrdi3 EXPORT_SYMBOL vmlinux 0xff6878cf fb_default_cmap -EXPORT_SYMBOL vmlinux 0xff8413df scsi_rescan_device -EXPORT_SYMBOL vmlinux 0xff85c679 xfrm_policy_register_afinfo -EXPORT_SYMBOL vmlinux 0xff8a3d12 phy_detach +EXPORT_SYMBOL vmlinux 0xff7b48df devm_ioremap_np +EXPORT_SYMBOL vmlinux 0xff7fe775 pneigh_enqueue +EXPORT_SYMBOL vmlinux 0xff83233a max8925_set_bits EXPORT_SYMBOL vmlinux 0xff8c2e5a radix_tree_tag_get -EXPORT_SYMBOL vmlinux 0xff937e68 pci_choose_state -EXPORT_SYMBOL vmlinux 0xffb13c1e phy_device_create -EXPORT_SYMBOL vmlinux 0xffb58bed tty_vhangup +EXPORT_SYMBOL vmlinux 0xff9257ef sockfd_lookup +EXPORT_SYMBOL vmlinux 0xff956cfa pci_iomap +EXPORT_SYMBOL vmlinux 0xff993f54 simple_transaction_get +EXPORT_SYMBOL vmlinux 0xffacad79 __tty_alloc_driver EXPORT_SYMBOL vmlinux 0xffb94ef0 _test_and_change_bit -EXPORT_SYMBOL vmlinux 0xffc5e256 __i2c_transfer +EXPORT_SYMBOL vmlinux 0xffbc258e wait_on_page_private_2 +EXPORT_SYMBOL vmlinux 0xffbee112 tty_unregister_driver +EXPORT_SYMBOL vmlinux 0xffc78d97 __skb_wait_for_more_packets EXPORT_SYMBOL vmlinux 0xffcc4ec7 tcp_bpf_bypass_getsockopt -EXPORT_SYMBOL vmlinux 0xffd3851b security_sk_classify_flow -EXPORT_SYMBOL vmlinux 0xffd94140 nf_register_net_hooks +EXPORT_SYMBOL vmlinux 0xffcca9b7 ioc_lookup_icq +EXPORT_SYMBOL vmlinux 0xffe26ba9 dev_printk_emit EXPORT_SYMBOL vmlinux 0xffeedf6a delayed_work_timer_fn +EXPORT_SYMBOL vmlinux 0xfffdfb2a sock_kfree_s EXPORT_SYMBOL_GPL arch/arm/crypto/sha1-arm 0x4596d61c sha1_finup_arm EXPORT_SYMBOL_GPL arch/arm/crypto/sha1-arm 0xb585f613 sha1_update_arm -EXPORT_SYMBOL_GPL crypto/af_alg 0x0eb6611e af_alg_wait_for_data -EXPORT_SYMBOL_GPL crypto/af_alg 0x1388c8c7 af_alg_unregister_type -EXPORT_SYMBOL_GPL crypto/af_alg 0x21ba9b46 af_alg_accept -EXPORT_SYMBOL_GPL crypto/af_alg 0x29cab9e5 af_alg_free_sg -EXPORT_SYMBOL_GPL crypto/af_alg 0x2b85217e af_alg_release -EXPORT_SYMBOL_GPL crypto/af_alg 0x310c7036 af_alg_alloc_areq -EXPORT_SYMBOL_GPL crypto/af_alg 0x4d586500 af_alg_sendmsg -EXPORT_SYMBOL_GPL crypto/af_alg 0x5c08ba59 af_alg_register_type -EXPORT_SYMBOL_GPL crypto/af_alg 0x61588be7 af_alg_poll -EXPORT_SYMBOL_GPL crypto/af_alg 0x6bca6b9f af_alg_get_rsgl -EXPORT_SYMBOL_GPL crypto/af_alg 0x7c891416 af_alg_pull_tsgl -EXPORT_SYMBOL_GPL crypto/af_alg 0x8f09d03c af_alg_free_resources -EXPORT_SYMBOL_GPL crypto/af_alg 0xa8a81f0a af_alg_make_sg -EXPORT_SYMBOL_GPL crypto/af_alg 0xb844bdf6 af_alg_sendpage -EXPORT_SYMBOL_GPL crypto/af_alg 0xcc7f3db0 af_alg_wmem_wakeup -EXPORT_SYMBOL_GPL crypto/af_alg 0xdae1c858 af_alg_count_tsgl -EXPORT_SYMBOL_GPL crypto/af_alg 0xe0fe8e62 af_alg_async_cb -EXPORT_SYMBOL_GPL crypto/af_alg 0xfa2cbba8 af_alg_release_parent -EXPORT_SYMBOL_GPL crypto/asymmetric_keys/asym_tpm 0x2849a837 asym_tpm_subtype +EXPORT_SYMBOL_GPL crypto/af_alg 0x0b622ae8 af_alg_sendpage +EXPORT_SYMBOL_GPL crypto/af_alg 0x186b80c4 af_alg_free_resources +EXPORT_SYMBOL_GPL crypto/af_alg 0x3d54ae1d af_alg_async_cb +EXPORT_SYMBOL_GPL crypto/af_alg 0x4dc1c926 af_alg_make_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x518814ba af_alg_unregister_type +EXPORT_SYMBOL_GPL crypto/af_alg 0x62fbb3ca af_alg_release +EXPORT_SYMBOL_GPL crypto/af_alg 0x6a622411 af_alg_release_parent +EXPORT_SYMBOL_GPL crypto/af_alg 0x713d37b0 af_alg_pull_tsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0x7de6d9e2 af_alg_wait_for_data +EXPORT_SYMBOL_GPL crypto/af_alg 0x91fe99c2 af_alg_sendmsg +EXPORT_SYMBOL_GPL crypto/af_alg 0x9c254f3d af_alg_accept +EXPORT_SYMBOL_GPL crypto/af_alg 0xa4d74e2f af_alg_free_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0xafb2b5dd af_alg_get_rsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0xafccae03 af_alg_register_type +EXPORT_SYMBOL_GPL crypto/af_alg 0xb768ae45 af_alg_poll +EXPORT_SYMBOL_GPL crypto/af_alg 0xbd834b3a af_alg_count_tsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0xd7e557e7 af_alg_wmem_wakeup +EXPORT_SYMBOL_GPL crypto/af_alg 0xe17b2baf af_alg_alloc_areq +EXPORT_SYMBOL_GPL crypto/asymmetric_keys/asym_tpm 0x393f7151 asym_tpm_subtype EXPORT_SYMBOL_GPL crypto/asymmetric_keys/asym_tpm 0x7430f97c tpm_key_create -EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0x2e695456 async_memcpy -EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x9041b28d async_gen_syndrome -EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0xb487bbf5 async_syndrome_val -EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x5586af74 async_raid6_2data_recov -EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x726380aa async_raid6_datap_recov -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x0113ee0a async_tx_submit -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x18c03ed7 async_tx_quiesce -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x1943d668 __async_tx_find_channel -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xf474a88e async_trigger_callback -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x04d500fb async_xor_val_offs -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x65dfee85 async_xor_val -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xbdc2bafa async_xor -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xee0e6add async_xor_offs +EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0xa00ea763 async_memcpy +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0xb081e338 async_syndrome_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0xbd6d04c5 async_gen_syndrome +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x9bb6854e async_raid6_datap_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0xa70adb14 async_raid6_2data_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x09425996 async_tx_submit +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x70f6357a __async_tx_find_channel +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x900ba7ae async_trigger_callback +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xa7e14972 async_tx_quiesce +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x4c0385ac async_xor_val_offs +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xc11da5fe async_xor +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xcc1eb190 async_xor_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xef09ee70 async_xor_offs EXPORT_SYMBOL_GPL crypto/authenc 0x2479193e crypto_authenc_extractkeys -EXPORT_SYMBOL_GPL crypto/blowfish_common 0x289d607e blowfish_setkey +EXPORT_SYMBOL_GPL crypto/blowfish_common 0xe52b728c blowfish_setkey EXPORT_SYMBOL_GPL crypto/cast5_generic 0x188d9d26 __cast5_decrypt EXPORT_SYMBOL_GPL crypto/cast5_generic 0x9fd748ac cast5_setkey EXPORT_SYMBOL_GPL crypto/cast5_generic 0xef81a4af __cast5_encrypt @@ -11558,41 +11566,41 @@ 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 0x2d80368d cryptd_skcipher_queued -EXPORT_SYMBOL_GPL crypto/cryptd 0x2e96d508 cryptd_shash_desc -EXPORT_SYMBOL_GPL crypto/cryptd 0x390e1470 cryptd_aead_child -EXPORT_SYMBOL_GPL crypto/cryptd 0x480672e6 cryptd_alloc_skcipher -EXPORT_SYMBOL_GPL crypto/cryptd 0x61cd28cd cryptd_aead_queued -EXPORT_SYMBOL_GPL crypto/cryptd 0x7d092e93 cryptd_free_skcipher -EXPORT_SYMBOL_GPL crypto/cryptd 0x7f6bb325 cryptd_free_ahash -EXPORT_SYMBOL_GPL crypto/cryptd 0xa767b932 cryptd_ahash_queued -EXPORT_SYMBOL_GPL crypto/cryptd 0xb11f2c77 cryptd_alloc_aead -EXPORT_SYMBOL_GPL crypto/cryptd 0xb85b67cc cryptd_ahash_child -EXPORT_SYMBOL_GPL crypto/cryptd 0xd034649f cryptd_alloc_ahash -EXPORT_SYMBOL_GPL crypto/cryptd 0xd433c597 cryptd_skcipher_child -EXPORT_SYMBOL_GPL crypto/cryptd 0xed6b4c32 cryptd_free_aead -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x1cd72e1f crypto_transfer_aead_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x20083fe5 crypto_finalize_aead_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x2ac13ae0 crypto_engine_start -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x3b70648e crypto_finalize_hash_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x41cab028 crypto_finalize_akcipher_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x45b5b996 crypto_engine_alloc_init_and_set -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x527515bd crypto_transfer_hash_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x62c29507 crypto_engine_alloc_init -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x6759bb0d crypto_transfer_akcipher_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xa3a0b671 crypto_finalize_skcipher_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xa4664c39 crypto_engine_stop -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xdb034e50 crypto_transfer_skcipher_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xec05d62c crypto_engine_exit +EXPORT_SYMBOL_GPL crypto/cryptd 0x05ca85b6 cryptd_aead_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x05d1fef4 cryptd_skcipher_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0x23bdd936 cryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x2aeb975c cryptd_alloc_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0x6262e750 cryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/cryptd 0x8cdea2d4 cryptd_free_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0x94b3563b cryptd_free_skcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0x9bd0adb8 cryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0xa6806169 cryptd_alloc_skcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0xafdf7c0d cryptd_skcipher_child +EXPORT_SYMBOL_GPL crypto/cryptd 0xc6557c67 cryptd_ahash_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0xd4add04d cryptd_aead_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0xfbcbb9cc cryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x09a27c23 crypto_engine_alloc_init +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x2750b38a crypto_finalize_hash_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x2a9af8b8 crypto_finalize_aead_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x41cb43cf crypto_engine_stop +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x45e3c28c crypto_engine_alloc_init_and_set +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x74b158bf crypto_transfer_aead_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x7ad3639a crypto_transfer_hash_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x9d780174 crypto_transfer_akcipher_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xab3db622 crypto_finalize_skcipher_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xad69a2d8 crypto_engine_exit +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xb2bf4673 crypto_finalize_akcipher_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xd74cdcb2 crypto_engine_start +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xe7e8016d crypto_transfer_skcipher_request_to_engine EXPORT_SYMBOL_GPL crypto/crypto_simd 0x504cb053 simd_aead_create_compat EXPORT_SYMBOL_GPL crypto/crypto_simd 0x66983e96 simd_skcipher_create -EXPORT_SYMBOL_GPL crypto/crypto_simd 0x78d414b3 simd_register_aeads_compat +EXPORT_SYMBOL_GPL crypto/crypto_simd 0x77a1c961 simd_unregister_skciphers 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 0x88dc5c9c simd_unregister_aeads -EXPORT_SYMBOL_GPL crypto/crypto_simd 0xa885c5c6 simd_register_skciphers_compat +EXPORT_SYMBOL_GPL crypto/crypto_simd 0xa66a4d0d simd_register_skciphers_compat EXPORT_SYMBOL_GPL crypto/crypto_simd 0xbfd26f15 simd_aead_free -EXPORT_SYMBOL_GPL crypto/crypto_simd 0xddb074de simd_unregister_skciphers +EXPORT_SYMBOL_GPL crypto/crypto_simd 0xc48e2517 simd_unregister_aeads +EXPORT_SYMBOL_GPL crypto/crypto_simd 0xd79b24ed simd_register_aeads_compat EXPORT_SYMBOL_GPL crypto/crypto_simd 0xefe73979 simd_skcipher_free EXPORT_SYMBOL_GPL crypto/ecdh_generic 0x33b866ce crypto_ecdh_decode_key EXPORT_SYMBOL_GPL crypto/ecdh_generic 0x7475be8e crypto_ecdh_key_len @@ -11604,8 +11612,39 @@ EXPORT_SYMBOL_GPL crypto/sm3_generic 0x0bddca87 sm3_zero_message_hash EXPORT_SYMBOL_GPL crypto/twofish_common 0x2a28ddd4 twofish_setkey EXPORT_SYMBOL_GPL crypto/twofish_common 0xe22b7787 __twofish_setkey -EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0x32090abf __pata_platform_probe -EXPORT_SYMBOL_GPL drivers/ata/pata_sis 0x85df69e3 sis_info133_for_sata +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x0614eb2e spk_do_catch_up_unicode +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x09187cef spk_ttyio_synth_probe +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x1d03103f spk_do_catch_up +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x1dc65242 spk_var_store +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x1e39eb14 synth_putws +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x247bfea3 spk_synth_get_index +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x2e7e21d7 speakup_event +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x41a160e5 synth_buffer_empty +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x43a19fc3 spk_ttyio_ops +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x4449e1dd synth_buffer_clear +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x466f5eb7 synth_putwc +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x738a7d6f spk_ttyio_release +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x76d40046 synth_buffer_skip_nonlatin1 +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x8181ceec speakup_info +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x84dad068 synth_buffer_getc +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x8c82dfca synth_request_region +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x8d0e5295 synth_remove +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x8fe0db01 synth_putwc_s +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xaadb0612 synth_buffer_peek +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xbbd15a51 speakup_start_ttys +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xbc0d6350 synth_add +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xc319c604 synth_putws_s +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xc6a06d16 spk_get_var +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xcc621c2e spk_ttyio_synth_immediate +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xd8fd86cf synth_release_region +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xe194d0ef synth_printf +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xe5a85155 spk_var_show +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xee2f7f60 spk_synth_flush +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xf0870690 spk_synth_is_alive_nop +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xfb49ed33 synth_current +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xfdd5c1b0 spk_synth_is_alive_restart +EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0x717ec21a __pata_platform_probe +EXPORT_SYMBOL_GPL drivers/ata/pata_sis 0x3b9ce4f6 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 @@ -11633,165 +11672,163 @@ EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xbf4774db ks0108_writecontrol EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xedde6df2 ks0108_page EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xfee8ef7b ks0108_address -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-ac97 0x777a39fb __devm_regmap_init_ac97 -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-ac97 0xb7fd5de7 regmap_ac97_default_volatile -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-ac97 0xee375352 __regmap_init_ac97 -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-i3c 0x13503e89 __devm_regmap_init_i3c -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0x72c15843 __regmap_init_sccb -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0xe9745de9 __devm_regmap_init_sccb -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw 0x56a5b6ea __regmap_init_sdw -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw 0x9c4b122d __devm_regmap_init_sdw -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw-mbq 0x2090f289 __regmap_init_sdw_mbq -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw-mbq 0xae372446 __devm_regmap_init_sdw_mbq -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0xc40739a4 __regmap_init_slimbus -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0xe08ffb00 __devm_regmap_init_slimbus -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spi-avmm 0x21ac316a __devm_regmap_init_spi_avmm -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spi-avmm 0xffcd9d43 __regmap_init_spi_avmm -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x1af2aaee __devm_regmap_init_spmi_base -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x3037867d __devm_regmap_init_spmi_ext -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x5dc8c87c __regmap_init_spmi_ext -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x6d986536 __regmap_init_spmi_base -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0x2d75cf96 __regmap_init_w1 -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0x601cb15a __devm_regmap_init_w1 -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x000664b9 bcma_find_core_unit -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x29537b3e bcma_driver_unregister -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x2ecd4ead bcma_chipco_gpio_outen -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x3d93048e bcma_core_pll_ctl -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x4f04665f bcma_chipco_gpio_control -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x54bb257f bcma_chipco_pll_write -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x5d6b7aa8 bcma_host_pci_irq_ctl -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x60f95dd1 bcma_host_pci_down -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x640932e2 bcma_pmu_spuravoid_pllupdate -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x6720b905 bcma_chipco_pll_read -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7bb59daa bcma_chipco_get_alp_clock -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7c1885e7 bcma_chipco_regctl_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x81925685 bcma_core_is_enabled -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xb3b4887e bcma_host_pci_up -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xb7ac45cf bcma_chipco_pll_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xbc39c659 bcma_chipco_b_mii_write -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc02e5ef6 bcma_core_set_clockmode -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc87d6c36 bcma_chipco_gpio_out -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xcba1364b bcma_pmu_get_bus_clock -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xec413ac1 bcma_core_pci_power_save -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf20d8a65 bcma_core_disable -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xfc305991 bcma_chipco_chipctl_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xfcee9303 __bcma_driver_register -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xfeb2c069 bcma_core_enable -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x2bc7b33e btbcm_write_pcm_int_params -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x5cb3999c btbcm_finalize -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x67dc5fe2 btbcm_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x7ce0b6f6 btbcm_check_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xc07ff919 btbcm_initialize -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xdf5f283a btbcm_setup_apple -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xfa2740cf btbcm_setup_patchram -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xfd87dc95 btbcm_read_pcm_int_params -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x003ade52 btintel_version_info -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x14211a53 btintel_bootup -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x16e4bd16 btintel_download_firmware -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x24f6f226 btintel_check_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x2ba6949e btintel_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x5bbbe055 btintel_configure_setup -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x5c09b776 btintel_read_boot_params -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x6fa336c4 btintel_read_version -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x9cd9efd6 btintel_send_intel_reset -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xcae0be7c btintel_secure_send_result -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xcec621db btintel_exit_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xd1097ff0 btintel_regmap_init -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xe730f309 btintel_load_ddc_config -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xe818cf02 btintel_enter_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xedfb05da btintel_set_event_mask_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xee99593f btintel_set_diag -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x0df31d5b btmrvl_send_module_cfg_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x1822d50e btmrvl_interrupt -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x39a83240 btmrvl_enable_hs -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x488b2af7 btmrvl_add_card -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x4bf9c232 btmrvl_register_hdev -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x67c08768 btmrvl_remove_card -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x6fd22eef btmrvl_pscan_window_reporting -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xb834be14 btmrvl_check_evtpkt -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xd1246d4a btmrvl_enable_ps -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xd214e46d btmrvl_send_hscfg_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xf7401d3c btmrvl_process_event -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x2fb8c720 qca_read_soc_version -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x4821ab28 qca_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x60bbdbd1 qca_uart_setup -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xd57fedce qca_send_pre_shutdown_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xfa6372e7 qca_set_bdaddr_rome -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x0e4bd6ed btrtl_download_firmware -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x16d3a424 btrtl_set_quirks -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x3a8c1b87 btrtl_initialize -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x87f57c79 btrtl_setup_realtek -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x8f7ccf66 btrtl_get_uart_settings +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-ac97 0x1430053d __regmap_init_ac97 +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-ac97 0x3a28a4b6 regmap_ac97_default_volatile +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-ac97 0xd57c4fed __devm_regmap_init_ac97 +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-i3c 0x3f85ea17 __devm_regmap_init_i3c +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0x0da665ad __regmap_init_sccb +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0x99eebcb7 __devm_regmap_init_sccb +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw 0xc7c58eb4 __devm_regmap_init_sdw +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw 0xe9f54c1e __regmap_init_sdw +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw-mbq 0x70a27636 __regmap_init_sdw_mbq +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw-mbq 0xc3cff645 __devm_regmap_init_sdw_mbq +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0x06967b7f __regmap_init_slimbus +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0x2aaa42f5 __devm_regmap_init_slimbus +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spi-avmm 0xc68b4fa0 __devm_regmap_init_spi_avmm +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spi-avmm 0xf2bc2c06 __regmap_init_spi_avmm +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x1e0899d0 __devm_regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x1e9f82ee __devm_regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x7f5cf5cc __regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xcb091b43 __regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0xdc2d5635 __regmap_init_w1 +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0xf8db55c6 __devm_regmap_init_w1 +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x004dcbe1 bcma_chipco_chipctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x00bd4050 bcma_chipco_pll_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x0a6514af bcma_chipco_b_mii_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x0c778a89 bcma_core_pll_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x196b80cb bcma_host_pci_up +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x22150348 bcma_chipco_gpio_out +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x334620b1 bcma_core_pci_power_save +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x396f13c0 bcma_core_disable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x3e11fbbe bcma_chipco_regctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x3e42613a bcma_core_is_enabled +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x6b576020 bcma_chipco_pll_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7ed2a0d9 bcma_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x809bc64d bcma_host_pci_irq_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x922a34ac __bcma_driver_register +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xab4bdf20 bcma_chipco_get_alp_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xab82d099 bcma_find_core_unit +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xafad87f4 bcma_core_set_clockmode +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc28995f2 bcma_pmu_get_bus_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc471cb77 bcma_driver_unregister +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xcab2555e bcma_chipco_gpio_outen +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe4c7387e bcma_core_enable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe6b2217c bcma_host_pci_down +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe8c81d50 bcma_chipco_gpio_control +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xeb2d5c59 bcma_chipco_pll_read +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x2e301ea0 btbcm_setup_apple +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x58d7c0d7 btbcm_write_pcm_int_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x7b059f36 btbcm_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x9938ec6c btbcm_setup_patchram +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xa409d312 btbcm_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xda263c9f btbcm_read_pcm_int_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xed23673f btbcm_finalize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xf210d8d9 btbcm_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x22e35ea7 btintel_enter_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x2fdc878d btintel_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x3842287f btintel_version_info +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x40e8176e btintel_load_ddc_config +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x4d87a070 btintel_bootup +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x571292d4 btintel_set_diag +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x59ca36d5 btintel_exit_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x5adfc2d6 btintel_set_event_mask_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x5fa97435 btintel_download_firmware +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x6e148dd2 btintel_configure_setup +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x8f58f4f7 btintel_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x9c2805b9 btintel_read_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xb1b201f4 btintel_read_boot_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xcd2c0728 btintel_send_intel_reset +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xcf904a7b btintel_regmap_init +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xe2119580 btintel_secure_send_result +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x048e98a9 btmrvl_send_hscfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x371770d4 btmrvl_check_evtpkt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x3a6f583a btmrvl_register_hdev +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x62830bc1 btmrvl_pscan_window_reporting +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x85f44046 btmrvl_remove_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x8e736413 btmrvl_interrupt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x99048db3 btmrvl_add_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x9f65ec9f btmrvl_send_module_cfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xbae586e4 btmrvl_process_event +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xefcf710b btmrvl_enable_hs +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xfcb03d57 btmrvl_enable_ps +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x023d7043 qca_uart_setup +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x0dc25431 qca_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x2e9ad7d9 qca_read_soc_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x8f4d0545 qca_send_pre_shutdown_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x92b10581 qca_set_bdaddr_rome +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x268c507d btrtl_get_uart_settings +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x268dfe4f btrtl_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x9f189b9a btrtl_set_quirks EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xaf78f260 btrtl_free -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xf702499e btrtl_shutdown_realtek -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x13f82d5b hci_uart_register_device -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x68b6ce44 h4_recv_buf -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x847948d9 hci_uart_tx_wakeup -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0xb169d1ee hci_uart_unregister_device -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x0d06ac25 mhi_queue_is_full -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x112f6ce6 mhi_driver_unregister -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x172addb7 mhi_register_controller -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x1849e6b8 mhi_device_get -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x2f1b6d64 mhi_pm_suspend -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x38d9606e mhi_soc_reset -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x3a69fb5f mhi_unregister_controller -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x3e359892 mhi_power_down -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x467e436b mhi_unprepare_after_power_down -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x4d1d06eb mhi_device_put -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x5ffdf17d mhi_pm_resume -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x62507461 mhi_get_exec_env -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x67609ed8 mhi_notify -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x8034f66b __mhi_driver_register -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x80fedc75 mhi_download_rddm_image -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x8af26225 mhi_prepare_for_power_up -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x95ed64ca mhi_device_get_sync -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xa162e91b mhi_poll -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xa72ad497 mhi_unprepare_from_transfer -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xabb9ce85 mhi_alloc_controller -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xaf62b149 mhi_async_power_up -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xba0d82b1 mhi_pm_resume_force -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xbb057186 mhi_get_free_desc_count -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xce992d72 mhi_queue_buf -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xd509eab6 mhi_queue_skb -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xd8c3edff mhi_force_rddm_mode -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xea268e0d mhi_prepare_for_transfer -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xeec4c9e5 mhi_get_mhi_state -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xf5c99da2 mhi_free_controller -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xfd862156 mhi_queue_dma -EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x1c7213d4 __moxtet_register_driver -EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x6373e146 moxtet_device_read -EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x9da27707 moxtet_device_written -EXPORT_SYMBOL_GPL drivers/bus/moxtet 0xb9e7c520 moxtet_device_write +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xd8f6cbe9 btrtl_download_firmware +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xd9b3c61b btrtl_setup_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xfa53b1ed btrtl_shutdown_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x1513308b hci_uart_register_device +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0xc964720e hci_uart_unregister_device +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0xcb4c9a97 hci_uart_tx_wakeup +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0xee2fba89 h4_recv_buf +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x01ff197a mhi_poll +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x132c0318 mhi_force_rddm_mode +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x2fa3755e mhi_unregister_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x375e5ec6 mhi_alloc_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x478a2728 mhi_device_get +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x48ccff9d mhi_register_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x508134c2 mhi_unprepare_after_power_down +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x557f512b mhi_pm_resume_force +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x6402de63 mhi_prepare_for_transfer +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x64c680ff mhi_pm_resume +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x871c7fa6 mhi_get_mhi_state +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x875f5822 __mhi_driver_register +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x88347985 mhi_queue_skb +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x9a5d3855 mhi_device_get_sync +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x9f1b3752 mhi_notify +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xa8bab133 mhi_power_down +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xb0c03f4b mhi_unprepare_from_transfer +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xb2aab686 mhi_driver_unregister +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xb70f19eb mhi_queue_buf +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xbbee70e6 mhi_pm_suspend +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xc1b5c1c6 mhi_download_rddm_image +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xc397fee9 mhi_get_free_desc_count +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xcd9e3e95 mhi_soc_reset +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xcebd5969 mhi_free_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xcf7688db mhi_prepare_for_power_up +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xe2d38c25 mhi_queue_dma +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xeb22c192 mhi_async_power_up +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xef9892c5 mhi_device_put +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xf141778f mhi_get_exec_env +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xff0ae798 mhi_queue_is_full +EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x02bfd1fc __moxtet_register_driver +EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x58d0b115 moxtet_device_read +EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x695d1684 moxtet_device_written +EXPORT_SYMBOL_GPL drivers/bus/moxtet 0xbfb1e673 moxtet_device_write EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x0000139e clk_alpha_pll_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x08f0cc30 clk_is_enabled_regmap EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x0d10c3c4 clk_enable_regmap EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x0d678ab9 qcom_reset_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x0e5f8a53 clk_pll_sr2_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x0e98da3d clk_pll_vote_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x133eaf9b qcom_cc_register_board_clk EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x17d44071 clk_alpha_pll_hwfsm_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x183be5e6 clk_alpha_pll_agera_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x18d17239 qcom_cc_map EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x1a142e7c clk_alpha_pll_fixed_trion_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x20236580 qcom_cc_probe EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x272f3204 clk_alpha_pll_fixed_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x2a9c7452 clk_rcg_lcc_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x2b0d957d clk_pixel_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x2cae96b3 clk_regmap_div_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x2f997767 qcom_cc_really_probe EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x30bbf987 clk_rcg2_shared_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x310b6341 clk_regmap_mux_closest_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x3747af55 clk_rcg_bypass2_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x395868a1 qcom_find_freq_floor EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x3b15a709 clk_alpha_pll_configure EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x3dfc2dc5 clk_branch_simple_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x3f8734de qcom_cc_probe EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x405d394a clk_alpha_pll_postdiv_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x418e9cfd clk_pll_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x4b0ed6da clk_ops_hfpll -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x5087a5d7 gdsc_gx_do_nothing_enable EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x5111f2ad clk_rcg2_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x520df3b7 clk_rcg_esc_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x57172323 clk_byte_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x5cfefbe4 devm_clk_register_regmap +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x5a8c33ee qcom_cc_really_probe EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x5e6abb22 mux_div_set_src_div EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x615dbb77 clk_branch2_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x631939a9 clk_branch2_aon_ops @@ -11799,25 +11836,26 @@ EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x66922845 clk_branch_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x68199825 clk_disable_regmap EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x6af41b8b qcom_pll_set_fsm_mode -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x6bd38a72 qcom_cc_register_sleep_clk EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x6c069db2 qcom_find_src_index +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x6ec857f3 qcom_cc_register_board_clk EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7019378d clk_pll_configure_sr_hpm_lp EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x766e9f87 clk_regmap_div_ro_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x787e8234 qcom_find_freq EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x78b81ea0 clk_rcg2_floor_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7e66fd9e clk_regmap_mux_div_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x8515663c clk_alpha_pll_regs +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x86a54fa3 qcom_cc_register_sleep_clk EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x8b55eac4 clk_dyn_rcg_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x8f34135b qcom_cc_map EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x91c41c9f clk_edp_pixel_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x97488818 clk_rcg_pixel_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x9c8854a1 clk_alpha_pll_lucid_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x9d6a6c20 qcom_cc_probe_by_index +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x9d291761 devm_clk_register_regmap EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x9d909edd clk_gfx3d_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x9dc41abb krait_div2_clk_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x9e6c0ae7 clk_trion_pll_configure EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x9f1bf2e0 clk_alpha_pll_trion_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x9f241baa clk_rcg_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xa4bd49b6 gdsc_gx_do_nothing_enable EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xa6bad98b clk_agera_pll_configure EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xaa403ee8 clk_alpha_pll_huayra_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xadc2751b clk_alpha_pll_postdiv_fabia_ops @@ -11834,106 +11872,107 @@ EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xd7ab6782 clk_alpha_pll_postdiv_lucid_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xe6e14638 clk_alpha_pll_fabia_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xe816a036 clk_pll_configure_sr -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x04300a03 comedi_nsamples_left +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xec332a05 qcom_cc_probe_by_index +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x0c084e1a comedi_readback_insn_read EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x0cd330f4 range_unknown -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x0f2e6b07 comedi_set_spriv_auto_free -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x14bb7afe comedi_nscans_left -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x17c983d2 comedi_event +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x0e13b250 comedi_bytes_per_scan_cmd +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x1de64af7 comedi_buf_write_samples EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x21102f87 range_0_32mA -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x2640a8d3 comedi_buf_write_free -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x27378e7d comedi_is_subdevice_running -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x27aca742 comedi_buf_read_n_available -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x293a3af7 comedi_inc_scan_progress -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x2b1b849a comedi_set_hw_dev -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x2c39839b comedi_alloc_spriv +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x2bdb2f98 comedi_auto_config EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x2f0ad9d3 range_bipolar5 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x347c396a comedi_dio_insn_config -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x365b55f3 __comedi_request_region -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x37593282 comedi_readback_insn_read +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x2fbfd62a comedi_set_hw_dev +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x33b1290f comedi_dio_update_state +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x3675becd comedi_buf_read_samples EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4236eaaf range_4_20mA -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x47dfba41 comedi_alloc_subdev_readback +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x431708bb comedi_inc_scan_progress +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x441db2c7 comedi_event +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x452b5ccb comedi_buf_read_free +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x465b66d7 comedi_set_spriv_auto_free +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x48e3bdd2 comedi_auto_unconfig EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4fe634f3 range_bipolar2_5 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x5264222c comedi_buf_read_free -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x5db50bdb comedi_load_firmware -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x6ae3e351 comedi_auto_unconfig -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x6be23b7a comedi_handle_events -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x6e07a8ed comedi_dev_put +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x53cc6286 comedi_alloc_subdevices +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x5a97ba9f comedi_is_subdevice_running +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x64ab9a0c comedi_buf_write_free +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x72514263 comedi_bytes_per_scan +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x79b793f4 comedi_dev_put +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x7a6b5708 comedi_handle_events EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x8113872c range_unipolar10 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x8a261190 comedi_dev_get_from_minor -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x94e6bf18 comedi_alloc_subdevices -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xa23b06c5 comedi_bytes_per_scan_cmd +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x81293cae __comedi_request_region +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x872c1327 comedi_timeout +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x93652127 comedi_buf_read_n_available +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x97d34ae1 comedi_legacy_detach +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xa2b42ede comedi_buf_write_alloc +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xa795f90b comedi_buf_read_alloc +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xa7d55f67 comedi_alloc_devpriv +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xae8288ac comedi_load_firmware EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xb679cebc range_0_20mA +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xb96cc079 comedi_dio_insn_config EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xbb52fc7f range_bipolar10 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xbc5d6316 comedi_driver_unregister -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xbc7dd4d9 comedi_alloc_devpriv EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xbdbe75c6 range_unipolar2_5 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xc95bb13c comedi_timeout -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xcbedf8dc comedi_check_chanlist -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xce364bf3 comedi_auto_config -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xce7b4726 comedi_buf_write_alloc -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xd3330678 comedi_bytes_per_scan -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xd67a77bb comedi_legacy_detach +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xd4e74821 comedi_alloc_spriv +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xd63e99a1 comedi_check_chanlist +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xd76085da comedi_alloc_subdev_readback +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xd8e125e5 comedi_driver_unregister EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xdb2044b2 range_unipolar5 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xe267bb3e comedi_buf_write_samples -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xe30d8c21 comedi_buf_read_alloc -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xe3a38015 comedi_request_region -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xe3e7757d comedi_dio_update_state -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xe84adb5f comedi_driver_register -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xf70a1173 comedi_buf_read_samples -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x1d977cb0 comedi_to_pci_dev -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x3031838e comedi_pci_auto_config -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x5a3a45d5 comedi_pci_enable -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x631004f0 comedi_pci_driver_unregister -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x76e46538 comedi_pci_auto_unconfig -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xc7f6744a comedi_pci_driver_register -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xcf876cc5 comedi_pci_disable -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xe7df4f3c comedi_pci_detach -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x142cbdbe comedi_usb_auto_config -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x3c52c769 comedi_to_usb_dev -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x40dc6cbf comedi_to_usb_interface -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x78a4cd0c comedi_usb_auto_unconfig -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0xc88c0ea2 comedi_usb_driver_register -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0xe68e97a1 comedi_usb_driver_unregister -EXPORT_SYMBOL_GPL drivers/comedi/drivers/addi_watchdog 0x3f7cc76d addi_watchdog_init +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xdd6661b5 comedi_dev_get_from_minor +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xde52052a comedi_request_region +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xe42cbe6b comedi_nscans_left +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xf39d272a comedi_driver_register +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xf94216d2 comedi_nsamples_left +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x150d688b comedi_pci_auto_unconfig +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x2d48fe8a comedi_pci_driver_register +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x360c2a8f comedi_pci_detach +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x3a7f6932 comedi_pci_disable +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x7836d3e9 comedi_pci_auto_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x83d7bb53 comedi_pci_driver_unregister +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x97b43e9d comedi_pci_enable +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xe6629fc5 comedi_to_pci_dev +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x5ff1d5ee comedi_usb_auto_unconfig +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x609a60f4 comedi_usb_driver_unregister +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x870c20d1 comedi_to_usb_interface +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0xe3bd2203 comedi_usb_driver_register +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0xf3ff4c40 comedi_to_usb_dev +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0xfa3bfe91 comedi_usb_auto_config +EXPORT_SYMBOL_GPL drivers/comedi/drivers/addi_watchdog 0x5f37f669 addi_watchdog_init EXPORT_SYMBOL_GPL drivers/comedi/drivers/addi_watchdog 0x79f4a6cf addi_watchdog_reset -EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_dio200_common 0x787daf77 amplc_dio200_common_attach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_dio200_common 0xbe0707b2 amplc_dio200_set_enhance -EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_pc236_common 0x910ca254 amplc_pc236_common_attach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x27c9e6d4 comedi_8254_init -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x3910501a comedi_8254_cascade_ns_to_timer -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x4c2c917d comedi_8254_read -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x70a85e29 comedi_8254_set_mode -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x73c6db0e comedi_8254_set_busy -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x92f9fe0b comedi_8254_status -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xad0420ae comedi_8254_update_divisors -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xaefabef4 comedi_8254_mm_init -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xdd289d67 comedi_8254_ns_to_timer -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xe4961198 comedi_8254_load -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xe5043555 comedi_8254_subdevice_init -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xea3f5d55 comedi_8254_write -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xf76fde7c comedi_8254_pacer_enable -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0x539f5896 subdev_8255_init -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0xea97dd03 subdev_8255_regbase -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0xedea92dd subdev_8255_mm_init -EXPORT_SYMBOL_GPL drivers/comedi/drivers/das08 0xd2e31f90 das08_common_attach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x256ba37b mite_alloc_ring -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x27306292 mite_sync_dma -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x405ef056 mite_release_channel -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x41a37d7e mite_request_channel_in_range -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x5f8d913d mite_dma_disarm -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x611a1f33 mite_buf_change -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x6aca7d00 mite_attach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x766661d9 mite_ack_linkc -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x82aa6301 mite_detach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x9deda364 mite_bytes_in_transit -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x9f0f786b mite_free_ring -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xa6278425 mite_dma_arm -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xb0c73bee mite_done -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xb0cd4d1d mite_init_ring_descriptors -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xd9a9d1e0 mite_prep_dma -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xdd6168cf mite_request_channel -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_common 0x40096276 labpc_common_attach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_common 0x6d088b39 labpc_common_detach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_dio200_common 0x1ee2f62d amplc_dio200_set_enhance +EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_dio200_common 0xec0d4e73 amplc_dio200_common_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_pc236_common 0x44e26fde amplc_pc236_common_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x0243c67e comedi_8254_write +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x1316410a comedi_8254_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x1d2e1753 comedi_8254_cascade_ns_to_timer +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x29d088d1 comedi_8254_set_mode +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x4d674293 comedi_8254_update_divisors +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x6877414a comedi_8254_pacer_enable +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x7ba9dc8e comedi_8254_set_busy +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x8969fe4f comedi_8254_status +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x91ce0255 comedi_8254_mm_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x9529607b comedi_8254_read +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xa7bbf1bc comedi_8254_subdevice_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xaba6c7b4 comedi_8254_load +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xe8e030da comedi_8254_ns_to_timer +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0x6d268626 subdev_8255_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0x8707665f subdev_8255_mm_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0xfa0dd0a1 subdev_8255_regbase +EXPORT_SYMBOL_GPL drivers/comedi/drivers/das08 0xf2bfb76f das08_common_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x03e05504 mite_ack_linkc +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x07236511 mite_sync_dma +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x0a9aefc4 mite_dma_arm +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x1919b117 mite_dma_disarm +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x1a398784 mite_buf_change +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x206f25e6 mite_detach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x26849d08 mite_init_ring_descriptors +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x3ea74c41 mite_release_channel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x5437c67c mite_done +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x85d218fc mite_alloc_ring +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xae4f0ed5 mite_prep_dma +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xb337bcfa mite_request_channel_in_range +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xb7c0163e mite_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xd3cdfec7 mite_request_channel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xdab691c3 mite_bytes_in_transit +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xfc905733 mite_free_ring +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_common 0x7e2bb810 labpc_common_detach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_common 0xdcab1c6d 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 @@ -11944,393 +11983,397 @@ 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 0x00839a75 ni_tio_insn_read -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x15f2ae70 ni_tio_arm -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x3f6b68a5 ni_tio_set_gate_src_raw -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x43d493f3 ni_tio_get_routing -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x6e06d09e ni_tio_get_soft_copy -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x7247b623 ni_gpct_device_construct -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x7acfc555 ni_tio_read -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x8424e200 ni_tio_write -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xa18351e8 ni_tio_insn_write -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xa66bc89d ni_tio_insn_config -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xa745367a ni_gpct_device_destroy -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xba19b873 ni_tio_unset_routing -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xbc53d245 ni_tio_init_counter -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xc7e23d5d ni_tio_set_routing -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xc920023f ni_tio_set_bits -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xed95bb59 ni_tio_set_gate_src -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x02269a07 ni_tio_set_mite_channel -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x98727196 ni_tio_acknowledge -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xa79087ba ni_tio_cmd -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xa8427f30 ni_tio_cmdtest -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xd1d2886c ni_tio_handle_interrupt -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xd94b47c8 ni_tio_cancel -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x250d7159 comedi_find_subdevice_by_type -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x75a714fa comedi_close -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xa5d31319 comedi_dio_config -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xaee558fa comedi_dio_get_config -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xd3954531 comedi_dio_bitfield2 -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xd4588fc3 comedi_get_n_channels -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xf3a786a8 comedi_open +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x02b565ad ni_tio_insn_write +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x11f91010 ni_tio_write +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x2582922f ni_gpct_device_construct +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x2ee423bc ni_gpct_device_destroy +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x40c0a2ba ni_tio_init_counter +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x5f829dad ni_tio_get_routing +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x839292cf ni_tio_set_bits +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x8b0d15f6 ni_tio_read +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xa1b886f6 ni_tio_set_gate_src_raw +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xb11652da ni_tio_get_soft_copy +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xd308f99b ni_tio_arm +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xd72d3000 ni_tio_set_routing +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xddacc376 ni_tio_unset_routing +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xdff6bc0d ni_tio_set_gate_src +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xecda7dbc ni_tio_insn_read +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xf3538790 ni_tio_insn_config +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x17fc0a47 ni_tio_acknowledge +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x38e817a6 ni_tio_cmdtest +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x480248ea ni_tio_cancel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x6bccd7c4 ni_tio_set_mite_channel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xa49632b6 ni_tio_cmd +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xc0b1db51 ni_tio_handle_interrupt +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x0552efbc comedi_dio_bitfield2 +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x09398938 comedi_dio_get_config +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x0dfc3d2b comedi_open +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x340acf2a comedi_dio_config +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x3f33db25 comedi_get_n_channels +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x8b416dd7 comedi_find_subdevice_by_type +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xfeedd6e9 comedi_close EXPORT_SYMBOL_GPL drivers/counter/counter 0x01aab51b counter_count_direction_str -EXPORT_SYMBOL_GPL drivers/counter/counter 0x432834d5 counter_device_enum_available_read -EXPORT_SYMBOL_GPL drivers/counter/counter 0x4bc5be24 devm_counter_unregister -EXPORT_SYMBOL_GPL drivers/counter/counter 0x5f429a80 counter_signal_enum_read -EXPORT_SYMBOL_GPL drivers/counter/counter 0x64465c6b counter_count_enum_write -EXPORT_SYMBOL_GPL drivers/counter/counter 0x7c1f13a0 devm_counter_register -EXPORT_SYMBOL_GPL drivers/counter/counter 0x7e2151bc counter_register -EXPORT_SYMBOL_GPL drivers/counter/counter 0x90b6ed0e counter_count_enum_read -EXPORT_SYMBOL_GPL drivers/counter/counter 0xa575ae47 counter_device_enum_read -EXPORT_SYMBOL_GPL drivers/counter/counter 0xb24d3007 counter_unregister -EXPORT_SYMBOL_GPL drivers/counter/counter 0xc10c88e6 counter_count_enum_available_read -EXPORT_SYMBOL_GPL drivers/counter/counter 0xc6afc5c7 counter_signal_enum_available_read -EXPORT_SYMBOL_GPL drivers/counter/counter 0xda14c4b7 counter_device_enum_write -EXPORT_SYMBOL_GPL drivers/counter/counter 0xe1d15499 counter_signal_enum_write +EXPORT_SYMBOL_GPL drivers/counter/counter 0x15ab399e counter_device_enum_available_read +EXPORT_SYMBOL_GPL drivers/counter/counter 0x1be91f68 counter_signal_enum_read +EXPORT_SYMBOL_GPL drivers/counter/counter 0x30a685c3 devm_counter_register +EXPORT_SYMBOL_GPL drivers/counter/counter 0x3aafce3e counter_count_enum_read +EXPORT_SYMBOL_GPL drivers/counter/counter 0x4901f348 counter_register +EXPORT_SYMBOL_GPL drivers/counter/counter 0x5f9cee49 devm_counter_unregister +EXPORT_SYMBOL_GPL drivers/counter/counter 0x664f9813 counter_count_enum_available_read +EXPORT_SYMBOL_GPL drivers/counter/counter 0x99c74936 counter_unregister +EXPORT_SYMBOL_GPL drivers/counter/counter 0x9c945454 counter_signal_enum_write +EXPORT_SYMBOL_GPL drivers/counter/counter 0xac8f5f96 counter_count_enum_write +EXPORT_SYMBOL_GPL drivers/counter/counter 0xaf37b7c4 counter_device_enum_read +EXPORT_SYMBOL_GPL drivers/counter/counter 0xc0a7c163 counter_device_enum_write EXPORT_SYMBOL_GPL drivers/counter/counter 0xee526d0f counter_count_mode_str +EXPORT_SYMBOL_GPL drivers/counter/counter 0xf3a5ded0 counter_signal_enum_available_read 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/dma/dw-edma/dw-edma 0x990648d1 dw_edma_probe -EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0xb6a7bebf dw_edma_remove -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x19a293f1 idma32_dma_probe -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x29fc8daa do_dw_dma_disable -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x32aea437 idma32_dma_remove -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x39000ec1 dw_dma_remove -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x85c2d3f4 do_dw_dma_enable -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xd4f6bad6 dw_dma_filter -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xe3820139 dw_dma_probe -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x02645bc0 fsl_edma_disable_request -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x06e47689 fsl_edma_free_chan_resources -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x07e4cabc fsl_edma_prep_slave_sg -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x0a8b4b9e fsl_edma_terminate_all -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x1a954220 fsl_edma_chan_mux -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x292b2c0d fsl_edma_free_desc -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x3a582597 fsl_edma_tx_status -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x3cd7c0d5 fsl_edma_setup_regs -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x43bbb390 fsl_edma_prep_dma_cyclic -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x543e738b fsl_edma_issue_pending -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x5ac759ad fsl_edma_alloc_chan_resources -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x8c75ead6 fsl_edma_resume -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xa1360e84 fsl_edma_cleanup_vchan -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xc4cde6d9 fsl_edma_slave_config -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xe8012001 fsl_edma_pause -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xf685dc49 fsl_edma_xfer_desc -EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0xc651c054 hidma_mgmt_init_sys -EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0xfbaa9a5f hidma_mgmt_setup +EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0x1f30a273 dw_edma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0xe49d7a80 dw_edma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x0f089ef1 do_dw_dma_enable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x1d578a0b dw_dma_filter +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x6da3fa0d do_dw_dma_disable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x6f7dbe8a idma32_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x7082a7b7 dw_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x729b8203 idma32_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xbb1e2ea3 dw_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x052dfe51 fsl_edma_chan_mux +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x0c944c85 fsl_edma_xfer_desc +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x3fc8b406 fsl_edma_setup_regs +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x419f02f9 fsl_edma_issue_pending +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x5ce9d848 fsl_edma_tx_status +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x61dcd5e0 fsl_edma_prep_slave_sg +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x69d7f756 fsl_edma_resume +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x73d30b5b fsl_edma_terminate_all +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x86dd919a fsl_edma_pause +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xa26735f3 fsl_edma_slave_config +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xab355373 fsl_edma_alloc_chan_resources +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xadd4f71d fsl_edma_prep_dma_cyclic +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xb1624a78 fsl_edma_free_desc +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xbfe67fd1 fsl_edma_cleanup_vchan +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xc5ebfb45 fsl_edma_disable_request +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xfdac605f fsl_edma_free_chan_resources +EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0x266cb884 hidma_mgmt_init_sys +EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0x69b7f981 hidma_mgmt_setup EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0xe86fb5c7 fw_card_release -EXPORT_SYMBOL_GPL drivers/firmware/arm_scpi 0x872bded1 get_scpi_ops -EXPORT_SYMBOL_GPL drivers/fpga/altera-pr-ip-core 0x58a639fc alt_pr_register -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x037a57d6 dfl_fpga_enum_info_free -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x0926ebe3 dfl_fpga_cdev_assign_port -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x16452599 dfl_fpga_set_irq_triggers -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x1b6bca60 dfl_feature_ioctl_set_irq -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x4844cf85 dfl_fpga_cdev_config_ports_vf -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x4dfc64ee dfl_fpga_enum_info_add_dfl -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x52b5cc54 dfl_fpga_feature_devs_remove -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x54706dcf dfl_fpga_cdev_config_ports_pf -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x5f80fae3 dfl_fpga_dev_ops_register -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x70dd3c6d dfl_fpga_port_ops_get -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x7313ffd1 dfl_fpga_port_ops_add -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x773f1c4a __dfl_fpga_cdev_find_port -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x9ab1d46a dfl_fpga_check_port_id -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x9f65ca41 dfl_fpga_dev_feature_uinit -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xab930955 dfl_feature_ioctl_get_num_irqs -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xaf69678f dfl_fpga_cdev_release_port -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xbeb00288 dfl_fpga_enum_info_alloc -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xc6abbfcb dfl_fpga_enum_info_add_irq -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xc71923dc dfl_fpga_dev_ops_unregister -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xd14040a8 dfl_fpga_feature_devs_enumerate -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xd33444fa dfl_fpga_dev_feature_init -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xe639b098 dfl_fpga_port_ops_put -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xfa38ce69 dfl_fpga_port_ops_del +EXPORT_SYMBOL_GPL drivers/firmware/arm_scpi 0x4786d182 get_scpi_ops +EXPORT_SYMBOL_GPL drivers/fpga/altera-pr-ip-core 0xfe2ba4c7 alt_pr_register +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x0478035d dfl_fpga_enum_info_free +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x22e4a519 dfl_fpga_enum_info_add_dfl +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x26e50c33 dfl_fpga_set_irq_triggers +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x291c99bb dfl_fpga_port_ops_del +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x35022965 dfl_fpga_feature_devs_remove +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x4b5bc5cd dfl_fpga_feature_devs_enumerate +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x60c99729 dfl_fpga_cdev_assign_port +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x8878762a dfl_fpga_port_ops_add +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x8d174822 dfl_fpga_port_ops_get +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xaf4a9c19 __dfl_fpga_cdev_find_port +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xb255b24c dfl_feature_ioctl_get_num_irqs +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xb969486b dfl_feature_ioctl_set_irq +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xbc6f2f1c dfl_fpga_enum_info_alloc +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xbf5a862c dfl_fpga_dev_ops_unregister +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xc4d6cc94 dfl_fpga_dev_feature_init +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xcb5b833d dfl_fpga_dev_ops_register +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xd065602f dfl_fpga_cdev_config_ports_pf +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xd1b6bb9c dfl_fpga_port_ops_put +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xd495e332 dfl_fpga_check_port_id +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xda65521e dfl_fpga_cdev_config_ports_vf +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xe9f4bf1b dfl_fpga_dev_feature_uinit +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xf1a6a14b dfl_fpga_enum_info_add_irq +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xf91a1687 dfl_fpga_cdev_release_port 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 0x0b8d7598 fpga_bridge_disable -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x19059b8d fpga_bridge_enable +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x15e560eb fpga_bridge_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x29d02f5c fpga_bridge_get_to_list EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x2c8167cf fpga_bridges_disable -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x8b36b829 fpga_bridge_register -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x951f08b1 devm_fpga_bridge_create -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x9ae3185e of_fpga_bridge_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x9d97ed51 fpga_bridge_create -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xb5daec3f fpga_bridge_free -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xbb31574d fpga_bridge_unregister -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xc2936902 of_fpga_bridge_get_to_list -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xcef34874 fpga_bridge_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xe033ac36 fpga_bridge_get_to_list -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xe6759905 fpga_bridge_put -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x222fff54 fpga_mgr_create -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x29d84a61 fpga_mgr_put -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x2a9195f4 fpga_mgr_unregister -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x30f287dc fpga_mgr_register -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x67b73837 devm_fpga_mgr_register -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x77587900 fpga_image_info_free -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x8eca408c devm_fpga_mgr_create -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x8f9c0088 fpga_image_info_alloc -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xaa13068e fpga_mgr_unlock -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xbd601ecc fpga_mgr_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xcd1ead36 fpga_mgr_load -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xd66472e3 of_fpga_mgr_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xeba50cd4 fpga_mgr_lock -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xeccc8d77 fpga_mgr_free -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x01c5077e fpga_region_create -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x3e0341a2 fpga_region_register -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0xc33f0797 fpga_region_program_fpga -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0xc37e843f fpga_region_free -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0xc5c58255 devm_fpga_region_create -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0xcb93bf9e fpga_region_class_find -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0xf0c37ba5 fpga_region_unregister -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x24422299 fsi_cdev_type -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x31642916 fsi_master_rescan -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x34617ed1 fsi_device_write +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x556b17dd fpga_bridge_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x578b0a72 fpga_bridge_enable +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x70d1e7bc fpga_bridge_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xaaadf88d fpga_bridge_free +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xb43ec56b fpga_bridge_disable +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xbbbb6636 of_fpga_bridge_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xd3107d7d fpga_bridge_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xe4789486 fpga_bridge_create +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xe4be11cc devm_fpga_bridge_create +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xed9cda8f of_fpga_bridge_get_to_list +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x1ac0501f fpga_mgr_unlock +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x25135cb3 fpga_mgr_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x35822435 fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x5049f4df devm_fpga_mgr_create +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x6def73f9 fpga_mgr_load +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x793f76b0 fpga_image_info_free +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x79ea056d fpga_mgr_lock +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xb0e6a1b3 fpga_mgr_free +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xc9dbecf7 fpga_image_info_alloc +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xcdaed5d8 fpga_mgr_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xcf136a7f of_fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xd27a6aee devm_fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xeba1c1af fpga_mgr_create +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xf6225e55 fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x49e04e39 fpga_region_create +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x536bd419 fpga_region_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x88d948ea fpga_region_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x941961c3 fpga_region_program_fpga +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0xc17a6d76 fpga_region_class_find +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0xcf2c50bd devm_fpga_region_create +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0xf60e69f7 fpga_region_free +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x04a57f12 fsi_master_register EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x3a93847e fsi_slave_claim_range -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x5975e9ea fsi_device_read +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x48e6e3c9 fsi_device_read +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x4bf633dc fsi_driver_unregister +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x4ff9874d fsi_cdev_type EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x5a57d574 fsi_free_minor EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x60a97912 fsi_slave_write -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x7c494683 fsi_driver_unregister -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xab64f61f fsi_master_unregister -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xb2e17524 fsi_driver_register -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xbc436015 fsi_master_register -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xbce779bb fsi_bus_type -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xc5a03596 fsi_get_new_minor +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x7b4b98a6 fsi_get_new_minor +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x8e60cfb2 fsi_device_write +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x9011bf48 fsi_master_unregister +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x9fc8e8cb fsi_master_rescan +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xa977fdd7 fsi_driver_register EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xce22aee2 fsi_slave_release_range EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xe4ac7aa2 fsi_slave_read -EXPORT_SYMBOL_GPL drivers/fsi/fsi-occ 0xbeec08ca fsi_occ_submit -EXPORT_SYMBOL_GPL drivers/fsi/fsi-sbefifo 0x51f11b2b sbefifo_submit -EXPORT_SYMBOL_GPL drivers/fsi/fsi-sbefifo 0xc9512b09 sbefifo_parse_status -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x3637c406 gnss_allocate_device -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x4203dd32 gnss_deregister_device -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x6525bc7d gnss_insert_raw -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x9c8b3538 gnss_register_device -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0xcc398057 gnss_put_device -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x3990c079 gnss_serial_allocate -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x72d2abb7 gnss_serial_deregister -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0xa115ae50 gnss_serial_free -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0xce9782e8 gnss_serial_register -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0xf51a69d7 gnss_serial_pm_ops -EXPORT_SYMBOL_GPL drivers/gpio/gpio-aspeed 0x3cbe95ad aspeed_gpio_copro_release_gpio +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xeb0dc2d3 fsi_bus_type +EXPORT_SYMBOL_GPL drivers/fsi/fsi-occ 0x4206c258 fsi_occ_submit +EXPORT_SYMBOL_GPL drivers/fsi/fsi-sbefifo 0x1cc50379 sbefifo_submit +EXPORT_SYMBOL_GPL drivers/fsi/fsi-sbefifo 0x31557af4 sbefifo_parse_status +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x32a6dd87 gnss_insert_raw +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x49ad2cdd gnss_register_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x6d3eca58 gnss_allocate_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x762124f5 gnss_deregister_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0xfab98c3f gnss_put_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x55501206 gnss_serial_pm_ops +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x600c6d51 gnss_serial_free +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0xc3b461c4 gnss_serial_register +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0xd735ce37 gnss_serial_deregister +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0xd8279e4a gnss_serial_allocate EXPORT_SYMBOL_GPL drivers/gpio/gpio-aspeed 0x5dcbe46c aspeed_gpio_copro_set_ops -EXPORT_SYMBOL_GPL drivers/gpio/gpio-aspeed 0x656276b8 aspeed_gpio_copro_grab_gpio -EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x3c65393c __max730x_remove -EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0xf745c93b __max730x_probe -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x42b0deca analogix_dp_remove -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x454bd91b analogix_dp_probe -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x62e0717f analogix_dp_unbind -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x69b5ee63 analogix_dp_bind -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xa34a3f06 analogix_dp_suspend -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xc86bf79b analogix_dp_resume -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xcf0a84e3 analogix_dp_start_crc +EXPORT_SYMBOL_GPL drivers/gpio/gpio-aspeed 0x949ab50a aspeed_gpio_copro_grab_gpio +EXPORT_SYMBOL_GPL drivers/gpio/gpio-aspeed 0xacbe8395 aspeed_gpio_copro_release_gpio +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x3edf9e79 __max730x_probe +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x5accac34 __max730x_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x161004bc analogix_dp_start_crc +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x2647c04d analogix_dp_bind +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x4b05fba8 analogix_dp_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x56a2781c analogix_dp_stop_crc +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xa02ebc72 analogix_dp_suspend +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xc20c8a78 analogix_dp_resume +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xc6401921 analogix_dp_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xd807bf7c analogix_dp_unbind EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xe4978c9d anx_dp_aux_transfer -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xe77e68b2 analogix_dp_stop_crc EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x09340e05 dw_hdmi_set_channel_count EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x094f6fc5 dw_hdmi_phy_i2c_set_addr EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x1461e227 dw_hdmi_set_channel_status EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x157e02b6 dw_hdmi_phy_reset +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x1893c4ef dw_hdmi_bind 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 0x42926f4a dw_hdmi_resume +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x4423fd92 dw_hdmi_set_high_tmds_clock_ratio EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x4a9b174f dw_hdmi_remove 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 0x723376b5 dw_hdmi_bind +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x6bfdc0a4 dw_hdmi_set_plugged_cb 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 0x9477a08b 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 0x9bf13e6f 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 0xd4734d92 dw_hdmi_probe EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xd6968220 dw_hdmi_phy_setup_hpd EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xd8fe547b dw_hdmi_audio_enable EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xdafa1790 dw_hdmi_phy_read_hpd EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xf5922009 dw_hdmi_phy_update_hpd +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xf8600647 dw_hdmi_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-mipi-dsi 0x080fa220 dw_mipi_dsi_probe 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 0x310b9b50 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 0x9d412fb3 dw_mipi_dsi_bind -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x02b8ad9b drm_gem_cma_dumb_create_internal -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x19cf9c6d drm_gem_cma_get_sg_table -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x1d490b73 drm_of_find_panel_or_bridge -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x205fba6d drm_of_lvds_get_dual_link_pixel_order -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x20694b71 drm_gem_shmem_get_pages_sgt -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x22cd3b5f drm_gem_shmem_prime_import_sg_table -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x27ea2d58 drm_bridge_get_modes -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x27f25cec drm_gem_cma_mmap -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x30ce5c77 drm_bridge_hpd_disable -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x5384f655 drm_gem_shmem_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x5d478e8a drm_class_device_register +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-mipi-dsi 0x6ecb6878 dw_mipi_dsi_bind +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x026344ac drm_gem_shmem_get_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x0642dcda drm_bridge_hpd_notify +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x214a393f drm_gem_shmem_prime_import_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x262d321d drmm_kstrdup +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x313f2f5d of_get_drm_display_mode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x3ce9f06c drm_gem_cma_vmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x3fd05eef drm_class_device_register +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x42013405 drm_gem_dumb_map_offset +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x4dea5837 drm_gem_cma_mmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x50a1eec7 drm_gem_shmem_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x5ac9b606 drm_gem_cma_prime_import_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x635c6eb2 drm_gem_cma_free_object EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x66cf2f64 drm_display_mode_from_videomode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x6de092ee drm_gem_cma_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x75b17d38 drm_bridge_hpd_enable -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x768c62d8 drm_gem_cma_dumb_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x79e9c9ee drm_gem_cma_vm_ops -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x7d4bcafe drm_gem_shmem_get_sg_table -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x818802fd drm_gem_shmem_dumb_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x852fd2de drm_gem_cma_vmap -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x8ee26cf9 drm_gem_cma_prime_import_sg_table -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x93ba8bff drm_class_device_unregister -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x93bf695a drm_bridge_get_edid -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x954c6243 drm_of_component_match_add -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x9b15b72c drm_gem_shmem_free_object +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x6f3542db drm_of_encoder_active_endpoint +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x71431685 drm_bridge_detect +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x78fd0c43 drm_bridge_hpd_enable +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x822d67bb drm_gem_shmem_get_pages_sgt +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x8a5c6aab drm_hdcp_check_ksvs_revoked +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x8ab8909d drm_of_lvds_get_dual_link_pixel_order +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x8df94be1 drm_gem_shmem_mmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x96b3bbf9 drm_bridge_get_modes +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x99eba4be drm_bridge_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xaca1c391 drm_gem_cma_create EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xad885165 drm_bus_flags_from_videomode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xaff02973 drm_of_encoder_active_endpoint -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xb0b8637f drm_bridge_detect -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xb14109e8 drm_bridge_hpd_notify -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xbc46ab6c drm_hdcp_check_ksvs_revoked -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xbfcd08c8 drm_gem_cma_free_object -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xce90bd8f drm_gem_dumb_map_offset -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xcec45436 drm_crtc_add_crc_entry -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xdb259fbc drm_get_unmapped_area -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xde04e3da drm_do_get_edid -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xe1796aee drmm_kstrdup -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xe7e52bd9 of_get_drm_display_mode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xeb17fc5f drm_gem_shmem_mmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xb0461390 drm_of_find_panel_or_bridge +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xb8fb986d drm_gem_cma_vm_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xba8f4a81 drm_of_component_match_add +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xc18b69b5 drm_gem_cma_dumb_create_internal +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xc38ccf85 drm_gem_cma_get_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xc405f5d4 drm_gem_shmem_free_object +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xd426ad7b drm_bridge_hpd_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xded470e0 drm_class_device_unregister +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xe3fd4964 drm_crtc_add_crc_entry +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xe5dfec1d drm_do_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xec394667 drm_gem_shmem_dumb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xf9e97b18 drm_get_unmapped_area +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xfc9c9798 drm_gem_cma_dumb_create EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xfe9f72f3 drm_display_mode_to_videomode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dp_aux_bus 0x2d737f7c of_dp_aux_depopulate_ep_devices -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dp_aux_bus 0x403ae8c2 dp_aux_dp_driver_unregister -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dp_aux_bus 0x54d5e6f9 __dp_aux_dp_driver_register -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dp_aux_bus 0x6458e53d devm_of_dp_aux_populate_ep_devices -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x16caed18 drm_bridge_connector_init -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x1878c8c4 drm_gem_fb_init_with_funcs -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x3a7d3f89 drm_fb_cma_get_gem_addr -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x53891912 drm_fb_cma_get_gem_obj -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x6b81bb51 drm_bridge_connector_enable_hpd -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x6fd050bf drm_fb_cma_sync_non_coherent -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x7a8116db drm_gem_fb_create_with_dirty -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x970d59a5 drm_gem_fb_create_with_funcs -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x993994dd drm_gem_fb_afbc_init -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x9b974855 drm_gem_fb_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xa3263d4d drm_gem_fb_get_obj -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xf873a414 drm_bridge_connector_disable_hpd -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xfef307ed drm_gem_plane_helper_prepare_fb -EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0x774e0b76 imx_drm_connector_destroy -EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0xc69ab59e imx_drm_encoder_parse_of -EXPORT_SYMBOL_GPL drivers/gpu/drm/mcde/mcde_drm 0x14075575 mcde_display_init -EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x1bdb1b1a meson_vclk_dmt_supported_freq +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dp_aux_bus 0x0ba936f9 of_dp_aux_depopulate_ep_devices +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dp_aux_bus 0x4644f629 __dp_aux_dp_driver_register +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dp_aux_bus 0x869c401a dp_aux_dp_driver_unregister +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dp_aux_bus 0xad7603bf devm_of_dp_aux_populate_ep_devices +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x014ce95b drm_gem_fb_create_with_funcs +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x06ee5f9e drm_bridge_connector_enable_hpd +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x08c1062c drm_gem_fb_get_obj +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x1cdbb9c6 drm_bridge_connector_disable_hpd +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x1f80fe60 drm_fb_cma_sync_non_coherent +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x716f4a9b drm_gem_fb_init_with_funcs +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x7a9b3610 drm_gem_fb_create_with_dirty +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x9e7ff5e4 drm_fb_cma_get_gem_addr +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xb1f5a7a7 drm_gem_plane_helper_prepare_fb +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xe223d632 drm_gem_fb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xe73dac7f drm_bridge_connector_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xe7af84fd drm_gem_fb_afbc_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xfdd5f9e6 drm_fb_cma_get_gem_obj +EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0x03f2fe27 imx_drm_connector_destroy +EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0xf19b5992 imx_drm_encoder_parse_of +EXPORT_SYMBOL_GPL drivers/gpu/drm/mcde/mcde_drm 0xc5775eb9 mcde_display_init EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x2c73cfcf meson_venc_hdmi_venc_repeat -EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x4e2965d1 meson_vclk_vic_supported_freq -EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x91661e12 meson_vclk_setup +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x5eff017c meson_vclk_vic_supported_freq +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x747b0dce meson_vclk_setup +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x9348525d 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 0xa6e847b2 meson_venc_hdmi_mode_set +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x9e7af657 meson_venc_hdmi_mode_set EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0xab5bee2f meson_venc_hdmi_supported_vic -EXPORT_SYMBOL_GPL drivers/gpu/drm/panel/panel-samsung-s6e63m0 0x2cf8c524 s6e63m0_remove -EXPORT_SYMBOL_GPL drivers/gpu/drm/panel/panel-samsung-s6e63m0 0x6ea98899 s6e63m0_probe -EXPORT_SYMBOL_GPL drivers/gpu/drm/pl111/pl111_drm 0x5ac5c760 pl111_versatile_init -EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0x13835f64 rcar_cmm_enable -EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0x305c1bd1 rcar_cmm_setup -EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0x8c652106 rcar_cmm_disable -EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0xf65f52c6 rcar_cmm_init -EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0x3aa050e0 rcar_lvds_clk_enable -EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0xea7561f7 rcar_lvds_dual_link -EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0xf18df6f4 rcar_lvds_is_connected -EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0xfa7ceb24 rcar_lvds_clk_disable -EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0x295128cb vop_component_ops -EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0xd7154547 rockchip_rgb_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/panel/panel-samsung-s6e63m0 0x770389b8 s6e63m0_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/panel/panel-samsung-s6e63m0 0x9f6c6224 s6e63m0_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/pl111/pl111_drm 0xfdeb3576 pl111_versatile_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0x9b109c09 rcar_cmm_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0xabf1ee4b rcar_cmm_enable +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0xed3963ce rcar_cmm_setup +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0xf4256f11 rcar_cmm_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0x722f793b rcar_lvds_is_connected +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0xa39d51b7 rcar_lvds_clk_enable +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0xbdbe62ed rcar_lvds_dual_link +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0xcd9249da rcar_lvds_clk_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0xd359544c rockchip_rgb_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0xd5461da8 vop_component_ops EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0xfead7585 rockchip_rgb_fini +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x010d2541 ipu_dump EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x01f4ee1f ipu_image_convert_adjust +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x0231ca3b ipu_module_enable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x02ccda42 ipu_prg_enable EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x050f0d7b ipu_di_adjust_videomode -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x061156d6 ipu_idmac_disable_channel +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x05378056 ipu_cpmem_get_burstsize EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x07036df2 ipu_ic_calc_csc EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x0728116a ipu_csi_disable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x0a058aee ipu_idmac_get_current_buffer +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x08edcefc ipu_prg_channel_configure +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x0bbbf54a ipu_map_irq EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x0e42bd95 ipu_csi_set_dest -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x0f6c52d0 ipu_image_convert_prepare -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x0fe17243 ipu_cpmem_set_high_priority EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x118160e1 ipu_ic_enable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x11b9a757 ipu_cpmem_dump EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x13952dfe ipu_dmfc_enable_channel EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x15ec2ba5 ipu_di_put EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x18730251 ipu_rot_mode_to_degrees EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x18aa0dcd ipu_image_convert_abort -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x1ab25c17 ipu_set_ic_src_mux -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x1cba62ab ipu_idmac_channel_busy +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x1aa3119b ipu_fsu_link +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x1aba9cb0 ipu_image_convert EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x1e913d9f ipu_csi_get_window -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x1f2fdd4d ipu_prg_channel_configure_pending +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x1ea7ed3c ipu_image_convert_prepare +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x202f6bb9 ipu_prg_channel_disable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x20705118 ipu_cpmem_set_uv_offset +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x225b5606 ipu_idmac_wait_busy +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x227220f8 ipu_csi_get +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x2392f7bf ipu_cpmem_set_yuv_planar_full EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x2424c9a6 ipu_csi_is_interlaced EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x258a4439 ipu_image_convert_queue -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x268319e9 ipu_srm_dp_update -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x29e4c613 ipu_cpmem_set_block_mode +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x25ffb45f ipu_cpmem_set_axi_id +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x2709ca78 ipu_set_csi_src_mux +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x2cb11264 ipu_cpmem_zero EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x2cf7ed72 ipu_dc_init_sync +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x2e53cc58 ipu_prg_disable EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x2e825a67 ipu_smfc_set_watermark +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x2eaa76fd ipu_dc_get EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x2f92d651 ipu_ic_task_enable EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x3020d65c ipu_prg_max_active_channels -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x31137df5 ipu_cpmem_zero +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x305b8190 ipu_idmac_channel_irq EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x3166aec7 ipu_dmfc_disable_channel -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x370df0ff ipu_cpmem_set_resolution -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x387c8964 ipu_dump -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x3951dfa2 ipu_set_csi_src_mux +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x3a947bab ipu_cpmem_skip_odd_chroma_rows +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x3ba516d6 ipu_cpmem_set_block_mode EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x3d8f18f6 __ipu_ic_calc_csc EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x3e86ea72 ipu_di_get_num -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x3ebc7213 ipu_vdi_get -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x3eccf954 ipu_cpmem_set_format_passthrough -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x413db0f3 ipu_cpmem_set_stride EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x418a282f ipu_drm_fourcc_to_colorspace EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x42d3d500 ipu_image_convert_unprepare -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x44702c7f ipu_cpmem_set_rotation -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x4578e65a ipu_dp_enable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x487ca0bf ipu_cpmem_interlaced_scan EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x4917f47a ipu_ic_dump EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x492a422d ipu_csi_set_mipi_datatype EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x498b4c7b ipu_image_convert_enum_format -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x4b9131e5 ipu_fsu_unlink -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x4bbe4214 ipu_dp_disable EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x4c179b49 ipu_dp_put -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x4d1cfa50 ipu_prg_format_supported +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x4fe164b4 ipu_cpmem_interlaced_scan EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x51475e87 ipu_dmfc_put EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x527f3b94 ipu_smfc_set_burstsize EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x53de277c ipu_di_enable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x53ea325b ipu_smfc_get EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x55767280 ipu_vdi_set_motion EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x580d2f81 ipu_vdi_put -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x5820c403 ipu_dc_disable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x5a9fb390 ipu_idmac_select_buffer EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x5b15aea8 ipu_dp_disable_channel EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x5cae270a ipu_vdi_unsetup -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x5d563a27 ipu_idmac_clear_buffer EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x60bdf2ec ipu_csi_put -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x62153dd2 ipu_cpmem_set_uv_offset +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x6111cde6 ipu_idmac_channel_busy EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x623722e2 ipu_ic_task_disable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x68c21b34 ipu_cpmem_set_yuv_interleaved -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x6b8cd393 ipu_cpmem_set_burstsize -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x6d89d7fb ipu_prg_present +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x6338950b ipu_image_convert_sync +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x639f1bf9 ipu_cpmem_set_high_priority +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x6538e9b3 ipu_idmac_unlink +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x6607ba74 ipu_di_get +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x6668da07 ipu_cpmem_set_resolution +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x6723febd ipu_get_num EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7068e939 ipu_dc_put -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x70926576 ipu_di_get -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x71356e1f ipu_prg_channel_configure -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7340af12 ipu_cpmem_set_yuv_planar_full EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x747eaf4e ipu_image_convert_verify -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x78babf88 ipu_idmac_wait_busy -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7d2e5d0a ipu_module_disable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x8321d9af ipu_idmac_link +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x756149cd ipu_set_ic_src_mux +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x762b8f94 ipu_idmac_enable_channel +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x776b156a ipu_dp_enable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7f431e9b ipu_idmac_buffer_is_ready +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7f9cd7c9 ipu_idmac_get +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x816363a4 ipu_prg_channel_configure_pending +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x821be123 ipu_cpmem_set_yuv_interleaved EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x8497c7d4 ipu_degrees_to_rot_mode -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x857a2105 ipu_fsu_link -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x86372fd3 ipu_map_irq -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x86594ab8 ipu_cpmem_get_burstsize +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x86460f29 ipu_cpmem_set_fmt EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x886c35aa ipu_smfc_map_channel -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x88ce0e82 ipu_csi_get -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x88d6fd18 ipu_cpmem_set_image -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x89b8732d ipu_idmac_put -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x8ae19da5 ipu_cpmem_set_format_rgb +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x8d06fb4b ipu_dp_disable EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x8eb22643 ipu_dp_set_global_alpha EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x9058e289 ipu_smfc_put EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x91ce1a04 ipu_dp_set_window_pos +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x9465ffbb ipu_cpmem_set_rotation EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x951a09d5 ipu_csi_enable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x961b8214 ipu_dc_disable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x96bec2fc ipu_cpmem_dump EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x97f08d2f ipu_ic_task_init -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x9a2a9d8c ipu_idmac_lock_enable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x9a4c9941 ipu_module_enable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x9a760738 ipu_cpmem_set_axi_id +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x9c52f4ee ipu_ic_task_idma_init +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x9e729c16 ipu_idmac_link +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x9f2b621d ipu_idmac_enable_watermark EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x9f38e177 ipu_dp_enable_channel +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xa2ebe388 ipu_dc_enable EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xa4b0cabd ipu_dc_disable_channel EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xa60b144b ipu_csi_set_window EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xa8adc101 ipu_pixelformat_to_colorspace EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xa96882d8 ipu_ic_disable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xb32c3b01 ipu_idmac_get +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xa96d6d9c ipu_idmac_lock_enable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xae37da46 ipu_cpmem_set_image +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xaf3678e1 ipu_cpmem_set_format_passthrough +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xb43035b9 ipu_smfc_get +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xb6265f98 ipu_module_disable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xb7b609b6 ipu_dmfc_get EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xb9ea6823 ipu_dp_setup_channel +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xba089584 ipu_prg_format_supported EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xba458b8f ipu_csi_set_test_generator -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xbbb2b057 ipu_idmac_unlink -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xbd44a0ad ipu_prg_disable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xbc9dac78 ipu_ic_get +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xbd21c247 ipu_srm_dp_update EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xbf983ba6 ipu_vdi_set_field_order -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xbff37cdb ipu_image_convert -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc3b495b6 ipu_dc_get +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc06e82cf ipu_idmac_select_buffer EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc3c2cdb0 ipu_smfc_disable EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc4af2e81 ipu_dmfc_config_wait4eot EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc4b15642 ipu_csi_set_skip_smfc @@ -12339,476 +12382,472 @@ EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc97e7a0f ipu_di_disable EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xcbea3eec ipu_di_init_sync_panel EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xcd7fbaa4 ipu_ic_task_graphics_init -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xcdc6376d ipu_cpmem_set_fmt EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xce3e0027 ipu_csi_init_interface -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xcf4081de ipu_cpmem_skip_odd_chroma_rows -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xd1ae0371 ipu_dc_enable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xd46905bb ipu_image_convert_sync -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xd5c23afc ipu_dmfc_get +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xcf78d896 ipu_idmac_set_double_buffer +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xd8912a26 ipu_idmac_clear_buffer EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xd8f285f0 ipu_vdi_setup -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xd999b8d1 ipu_dp_get -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xddadfdee ipu_cpmem_set_buffer -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xdea6c7ad ipu_idmac_set_double_buffer -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xdfa312b7 ipu_prg_channel_disable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xdfc2090e ipu_prg_enable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xd975a67a ipu_vdi_get EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xe6243c52 ipu_dc_enable_channel -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xe9487e53 ipu_ic_task_idma_init -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xea381106 ipu_ic_get -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xeadf2833 ipu_idmac_buffer_is_ready -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xecc91ad9 ipu_idmac_enable_watermark +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xe6bc255a ipu_cpmem_set_format_rgb +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xeac6ea5a ipu_cpmem_set_burstsize +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xee8bb94e ipu_cpmem_set_buffer EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xeea12b31 ipu_vdi_enable EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xf1440dc1 ipu_ic_put EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xf1abac7e ipu_csi_set_downsize -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xf35ebdbd ipu_idmac_channel_irq +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xf396b853 ipu_prg_present EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xf541df2d ipu_vdi_disable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xfc4f5a10 ipu_idmac_enable_channel -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xfdf0c97b ipu_get_num -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x0059bd19 gb_operation_response_alloc -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x02964445 gb_svc_intf_set_power_mode -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x054f21c6 gb_operation_unidirectional_timeout -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x0f46d04d gb_operation_request_send_sync_timeout -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x11b02bda gb_hd_create +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xf65a1e99 ipu_idmac_get_current_buffer +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xf6ac791d ipu_idmac_disable_channel +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xfdbd77d0 ipu_idmac_put +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xfde6a145 ipu_cpmem_set_stride +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xfe166797 ipu_dp_get +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xfe3e0615 ipu_fsu_unlink +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x075c8b97 gb_hd_add +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x095bed61 __traceiter_gb_message_submit +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x0b836c4a __traceiter_gb_hd_add +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x0f2afeac __traceiter_gb_hd_in +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x12a7cafc gb_operation_get_payload_size_max EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x14028e17 __SCK__tp_func_gb_hd_add EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x158a8186 __tracepoint_gb_hd_add EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x15d1942f greybus_disabled -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x170571cb gb_hd_cport_release_reserved +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x1813dba0 gb_operation_cancel EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x19c8e4e0 __tracepoint_gb_hd_create -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x21d7dcaf __traceiter_gb_hd_release -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x225981ab gb_operation_get -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x2dd6b128 gb_operation_request_send -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x3e05213f gb_hd_cport_reserve -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x3ec3c0e2 greybus_deregister_driver -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x46264332 greybus_data_rcvd -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x4b702ce1 gb_connection_enable -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x4e7ddebd gb_connection_create -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x4ec2cbdf gb_hd_add -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x53084b41 gb_connection_create_offloaded -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x58c950a1 gb_operation_create_flags -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x5ddf5524 gb_debugfs_get -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x605f1fe1 __traceiter_gb_message_submit -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x666eab25 gb_operation_cancel -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x68d29395 gb_operation_sync_timeout +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x1c51798d gb_connection_latency_tag_disable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x2b95bb0d gb_connection_destroy +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x35269cbc gb_hd_output +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x3bf21a40 gb_hd_shutdown +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x3c28840d gb_connection_enable_tx +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x3c4de6a5 greybus_message_sent +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x3f50f465 greybus_register_driver +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x4a3f54f8 gb_connection_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x4d1c7ad7 gb_operation_sync_timeout +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x502bdf91 gb_operation_create_flags +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x53c2c58b greybus_deregister_driver +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x577f9c2f gb_interface_request_mode_switch +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x5d44903e __traceiter_gb_hd_release +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x5f719337 greybus_data_rcvd +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x64c15fd4 gb_hd_put +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x67d7e3d5 gb_operation_unidirectional_timeout EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6d3bb9ec __SCK__tp_func_gb_message_submit -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6f1482d6 gb_connection_disable_forced -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x72677d50 gb_hd_output -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x72f40a7b gb_connection_disable -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x74c9a623 greybus_register_driver EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7bfa420b __tracepoint_gb_hd_release -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7c1a5d2a gb_hd_put -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7e0aa7f7 gb_connection_destroy -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7ef5391d __traceiter_gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7ce75413 gb_connection_create_offloaded +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x803b61b4 gb_connection_enable EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x81e221fb __SCK__tp_func_gb_hd_create -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x89d35589 gb_operation_result EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x89f514a1 __SCK__tp_func_gb_hd_in -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x9a18665c gb_operation_get_payload_size_max -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x9d46b0ae greybus_message_sent -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xa112fa44 gb_operation_put -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xaccc42b8 gb_connection_disable_rx +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x8b40b1c4 gb_debugfs_get +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x96f0f091 gb_operation_request_send +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x98ec9413 gb_hd_cport_reserve +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x9dc5c1fa gb_operation_get +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xaff1a479 gb_svc_intf_set_power_mode +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xb1acaa9b gb_operation_result +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xb3781d9b gb_operation_put +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xb3ec5675 gb_connection_create_flags +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xb72a4408 gb_connection_disable_forced EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xb7dac26f __tracepoint_gb_message_submit -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xc0b3f8a6 gb_hd_shutdown -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xcb93e67e gb_connection_latency_tag_enable -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd128b262 __traceiter_gb_hd_in -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd7f0cca2 gb_connection_create_flags +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xbd5f1d2d gb_operation_response_alloc +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xc58f1c77 gb_connection_latency_tag_enable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd0544722 gb_hd_del EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xda8b83e0 __tracepoint_gb_hd_in -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xdc69a296 __traceiter_gb_hd_add -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xdf9b486b gb_connection_latency_tag_disable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xde0cec1b __traceiter_gb_hd_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xde7537ed gb_operation_request_send_sync_timeout +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe3c77120 gb_hd_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe7134d18 gb_connection_disable_rx +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe808eae7 __traceiter_gb_hd_del EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xeac79e1a __SCK__tp_func_gb_hd_del EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xeb4f918b __tracepoint_gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xeb7e3bee gb_hd_cport_release_reserved EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf107a122 __SCK__tp_func_gb_hd_release -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf48124c7 gb_hd_del -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf5652ff9 gb_connection_enable_tx -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xfac3503c __traceiter_gb_hd_create -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xfb5b39c7 gb_interface_request_mode_switch -EXPORT_SYMBOL_GPL drivers/hid/hid 0x03f4b005 hid_dump_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x04b321f4 hid_open_report +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xfa54b833 gb_connection_disable +EXPORT_SYMBOL_GPL drivers/hid/hid 0x03018e5a hid_open_report EXPORT_SYMBOL_GPL drivers/hid/hid 0x05495392 hid_debug -EXPORT_SYMBOL_GPL drivers/hid/hid 0x05a9322c hid_add_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0x0d2b13a8 hid_hw_stop -EXPORT_SYMBOL_GPL drivers/hid/hid 0x0ecd4e2f hid_allocate_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0x15209600 __hid_request -EXPORT_SYMBOL_GPL drivers/hid/hid 0x16961b16 hid_ignore +EXPORT_SYMBOL_GPL drivers/hid/hid 0x10e5e360 hid_debug_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x1367115e hid_check_keys_pressed EXPORT_SYMBOL_GPL drivers/hid/hid 0x19d52f1f hid_quirks_exit -EXPORT_SYMBOL_GPL drivers/hid/hid 0x1b3667a6 hid_validate_values -EXPORT_SYMBOL_GPL drivers/hid/hid 0x1c0704eb hid_dump_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0x26cb57c0 hid_hw_start -EXPORT_SYMBOL_GPL drivers/hid/hid 0x26f23e53 hid_setup_resolution_multiplier -EXPORT_SYMBOL_GPL drivers/hid/hid 0x30dc423c hidinput_find_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0x30e4d8af hidinput_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0x4cf899e5 hid_match_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0x4da23c1c hid_register_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x4f5c9bbf hid_set_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0x5a4020a3 hidraw_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0x6842cce3 hid_destroy_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0x726f6204 hidinput_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x76396362 hid_output_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x7dd776a6 hid_input_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x8258fcc5 hid_hw_close -EXPORT_SYMBOL_GPL drivers/hid/hid 0x836cb7a6 hid_lookup_quirk -EXPORT_SYMBOL_GPL drivers/hid/hid 0x84111b19 hid_report_raw_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0x874ef936 hid_field_extract +EXPORT_SYMBOL_GPL drivers/hid/hid 0x1c6c75c0 hid_hw_stop +EXPORT_SYMBOL_GPL drivers/hid/hid 0x243eae8f hid_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x2658df34 hid_compare_device_paths +EXPORT_SYMBOL_GPL drivers/hid/hid 0x27814b82 hid_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x2cb3a6cf hidinput_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x319d22fc hid_resolv_usage +EXPORT_SYMBOL_GPL drivers/hid/hid 0x40799292 hid_register_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x49104b1b hid_allocate_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x503d5750 hid_hw_start +EXPORT_SYMBOL_GPL drivers/hid/hid 0x5388d8b8 hidinput_count_leds +EXPORT_SYMBOL_GPL drivers/hid/hid 0x58a94195 hidraw_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x5b1d28ec hid_match_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x5dd6442b hid_setup_resolution_multiplier +EXPORT_SYMBOL_GPL drivers/hid/hid 0x6294e72c hid_destroy_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x6f89fd6d hid_add_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x75831e33 hidinput_find_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7794dcf4 hid_dump_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7b154ca9 hid_hw_close +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7ccdf4a0 hid_set_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7d6204cd hid_output_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7f19d478 hid_dump_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x81eb7819 hid_parse_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x86775730 hid_alloc_report_buf +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8913656d hidinput_disconnect EXPORT_SYMBOL_GPL drivers/hid/hid 0x8b13a8b8 hid_snto32 -EXPORT_SYMBOL_GPL drivers/hid/hid 0x8c155e37 hid_compare_device_paths -EXPORT_SYMBOL_GPL drivers/hid/hid 0x961e7e3b hid_hw_open -EXPORT_SYMBOL_GPL drivers/hid/hid 0x971b6423 hid_parse_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x9b70c09b hid_dump_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0x9f237d88 hid_debug_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0xa08890eb hid_resolv_usage -EXPORT_SYMBOL_GPL drivers/hid/hid 0xabd259bc __hid_register_driver -EXPORT_SYMBOL_GPL drivers/hid/hid 0xae666d59 hidraw_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0xc5a31392 hidinput_count_leds -EXPORT_SYMBOL_GPL drivers/hid/hid 0xc5f56900 hid_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0xc60f3478 hidraw_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0xc61491af hid_unregister_driver -EXPORT_SYMBOL_GPL drivers/hid/hid 0xcef7cfd8 hidinput_calc_abs_res -EXPORT_SYMBOL_GPL drivers/hid/hid 0xd9a989f3 hidinput_get_led_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0xe172353f hid_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0xe2d81de6 hidinput_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0xee095502 hid_dump_input +EXPORT_SYMBOL_GPL drivers/hid/hid 0x9d5f029f __hid_register_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0x9dcf8bd0 hid_field_extract +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa8217628 hid_input_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa83ce907 hid_unregister_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa851be85 hid_report_raw_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xaae888e8 hid_lookup_quirk +EXPORT_SYMBOL_GPL drivers/hid/hid 0xadacc53c hid_hw_open +EXPORT_SYMBOL_GPL drivers/hid/hid 0xaf54aa49 __hid_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb70969a0 hidinput_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xbd706543 hid_ignore +EXPORT_SYMBOL_GPL drivers/hid/hid 0xbe0ee03d hid_dump_input +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd592358f hidraw_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd9de5634 hidinput_calc_abs_res +EXPORT_SYMBOL_GPL drivers/hid/hid 0xe2f1a932 hidraw_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xeaf10b3d hid_dump_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xedc8e1f9 hid_validate_values +EXPORT_SYMBOL_GPL drivers/hid/hid 0xef9b8e6d hidinput_get_led_field EXPORT_SYMBOL_GPL drivers/hid/hid 0xfa355613 hid_quirks_init -EXPORT_SYMBOL_GPL drivers/hid/hid 0xfeb793ff hid_check_keys_pressed -EXPORT_SYMBOL_GPL drivers/hid/hid 0xfecda4d9 hid_alloc_report_buf 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 0xd397e0fc roccat_connect -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x201354e9 roccat_common2_sysfs_write -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x6d3c3e3f roccat_common2_send -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x8d45d29e roccat_common2_send_with_status -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xbba01364 roccat_common2_receive -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xd5d7e32d roccat_common2_device_init_struct -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xeb906079 roccat_common2_sysfs_read -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x20ccf747 sensor_hub_device_close -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x3e8ee632 sensor_hub_register_callback -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x42b55905 sensor_hub_input_get_attribute_info -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x4aebce88 hid_sensor_get_usage_index -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x516fbbe3 sensor_hub_remove_callback -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x7115573b sensor_hub_get_feature -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x8a1af9c2 sensor_hub_input_attr_get_raw_value -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xb09d6e0b sensor_hub_set_feature -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xfe8b3453 sensor_hub_device_open -EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x288c66a6 i2c_hid_core_probe -EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x3e710968 i2c_hid_core_pm -EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x7e11d328 i2c_hid_core_shutdown -EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0xe473cf81 i2c_hid_ll_driver -EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0xfdc0bcfb i2c_hid_core_remove -EXPORT_SYMBOL_GPL drivers/hid/uhid 0x4a977bbc uhid_hid_driver -EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x0526b170 usb_hid_driver -EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x1907eda5 hiddev_hid_event -EXPORT_SYMBOL_GPL drivers/hsi/clients/ssi_protocol 0x18bd02de ssip_slave_stop_tx -EXPORT_SYMBOL_GPL drivers/hsi/clients/ssi_protocol 0x632fdc56 ssip_slave_running -EXPORT_SYMBOL_GPL drivers/hsi/clients/ssi_protocol 0x8fb4bbd4 ssip_slave_start_tx -EXPORT_SYMBOL_GPL drivers/hsi/clients/ssi_protocol 0xd46c7685 ssip_slave_get_master -EXPORT_SYMBOL_GPL drivers/hsi/clients/ssi_protocol 0xd8b32677 ssip_reset_event -EXPORT_SYMBOL_GPL drivers/hsi/controllers/omap_ssi 0xdc5a2bed ssi_waketest -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x00332589 hsi_port_unregister_clients -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x02929419 hsi_register_port_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x109c60be hsi_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x1ccf38e3 hsi_alloc_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x1d54de95 hsi_remove_client -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x3bc725ff hsi_register_client_driver -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x46667b69 hsi_new_client -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x46d6f41f hsi_get_channel_id_by_name +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x79995420 roccat_connect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x0d6f45ea roccat_common2_receive +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x4b5351bf roccat_common2_send_with_status +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x5fb3754d roccat_common2_sysfs_write +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x6df8e834 roccat_common2_device_init_struct +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x90bb6eb0 roccat_common2_send +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xc0a46ed9 roccat_common2_sysfs_read +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x16a75717 sensor_hub_register_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x215da43d sensor_hub_input_attr_get_raw_value +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x6d9ca988 sensor_hub_device_close +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x70e72550 sensor_hub_set_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x81db780f sensor_hub_input_get_attribute_info +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x97d4116e hid_sensor_get_usage_index +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xce2efa16 sensor_hub_remove_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xce4d31bb sensor_hub_device_open +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xcfe7d215 sensor_hub_get_feature +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x1b017183 i2c_hid_core_shutdown +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x7d6b8195 i2c_hid_ll_driver +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0xa7be5bec i2c_hid_core_remove +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0xb7a467dc i2c_hid_core_probe +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0xe109be27 i2c_hid_core_pm +EXPORT_SYMBOL_GPL drivers/hid/uhid 0x3fdfa282 uhid_hid_driver +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x26ae15e8 hiddev_hid_event +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0xc011d00f usb_hid_driver +EXPORT_SYMBOL_GPL drivers/hsi/clients/ssi_protocol 0x1a4fdfbb ssip_slave_start_tx +EXPORT_SYMBOL_GPL drivers/hsi/clients/ssi_protocol 0x2b6b49a1 ssip_slave_running +EXPORT_SYMBOL_GPL drivers/hsi/clients/ssi_protocol 0x3fd9f3e8 ssip_slave_get_master +EXPORT_SYMBOL_GPL drivers/hsi/clients/ssi_protocol 0x44f217b7 ssip_slave_stop_tx +EXPORT_SYMBOL_GPL drivers/hsi/clients/ssi_protocol 0x96d804f7 ssip_reset_event +EXPORT_SYMBOL_GPL drivers/hsi/controllers/omap_ssi 0x37a1299e ssi_waketest +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x059b8ea3 hsi_put_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x0d0e01de hsi_unregister_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x2e5a0954 hsi_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x4d1eaebf hsi_alloc_msg EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5210a5bf hsi_board_list -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5a84f0ee hsi_async -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x65d05dd9 hsi_unregister_port_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x6d1b26a9 hsi_free_msg -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x7026b405 hsi_register_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x7533292a hsi_put_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x795cb120 hsi_claim_port -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xa3ebc67f hsi_alloc_msg -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xa532f12a hsi_release_port -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xa8150d7d hsi_unregister_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xfb1e54f6 hsi_add_clients_from_dt -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x5893b23a adt7x10_dev_pm_ops -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0xa59b43c7 adt7x10_probe -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0xe462f486 adt7x10_remove +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x678a8998 hsi_free_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x6bdcc45b hsi_register_client_driver +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x83e45c4b hsi_release_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x94bbafad hsi_register_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x9b3873b2 hsi_remove_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xa4ef9ef0 hsi_unregister_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xb11b3977 hsi_async +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xc37b0cc4 hsi_claim_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xc61c0d44 hsi_port_unregister_clients +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xc791d114 hsi_get_channel_id_by_name +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xe3d937ad hsi_alloc_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xe41101f7 hsi_register_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xeb5231b9 hsi_add_clients_from_dt +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xfee2fc06 hsi_new_client +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x34c4aea8 adt7x10_probe +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0xbd128400 adt7x10_remove +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0xe36e3e45 adt7x10_dev_pm_ops EXPORT_SYMBOL_GPL drivers/hwmon/ltc2947-core 0x5cbb5274 ltc2947_core_probe -EXPORT_SYMBOL_GPL drivers/hwmon/ltc2947-core 0x84de197a ltc2947_pm_ops +EXPORT_SYMBOL_GPL drivers/hwmon/ltc2947-core 0xa5566cdb ltc2947_pm_ops EXPORT_SYMBOL_GPL drivers/hwmon/ltc2947-core 0xbc54f93e ltc2947_of_match -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x479aa3f9 intel_th_trace_switch -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x55e93a38 intel_th_alloc -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x6bb70ed9 intel_th_output_enable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xacc63691 intel_th_trace_enable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xaec30028 intel_th_set_output -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xce3a72fe intel_th_driver_unregister -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xd35707f0 intel_th_driver_register -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xdc56f1f2 intel_th_free -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xf39c697e intel_th_trace_disable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x24dc5cfa intel_th_msc_window_unlock -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0xa4c91790 intel_th_msu_buffer_unregister -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0xa8517a1e intel_th_msu_buffer_register -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x601afe02 stm_source_register_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x8d21531f stm_unregister_protocol -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x9fd17ba9 to_pdrv_policy_node -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xa93ffede stm_unregister_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xb0e1ad43 stm_source_unregister_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xb4042512 stm_register_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xc913e980 stm_source_write -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xc99dc4e4 stm_register_protocol -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xe5e283ad stm_data_write -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x193b5986 i2c_root_adapter -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x2abdf42c i2c_mux_del_adapters -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x6bbc62a5 i2c_mux_add_adapter -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xead3cc88 i2c_mux_alloc -EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x3146fa8e i2c_register_spd -EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x5413e059 i2c_new_slave_host_notify_device -EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x651e0db0 i2c_handle_smbus_alert -EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xe652b71f i2c_free_slave_host_notify_device -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x091b1b46 i3c_driver_unregister -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x1ef4585e i3c_generic_ibi_get_free_slot -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x24535eba i3c_driver_register_with_owner -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x377f6036 i3cdev_to_dev -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x5420960f i3c_master_set_info -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x5b9ccf5e i3c_device_do_priv_xfers -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x691ce9f2 i3c_master_add_i3c_dev_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x72f6e863 i3c_master_do_daa -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x7328a152 i3c_device_free_ibi +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x023cb90a intel_th_output_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x1f33f1d9 intel_th_set_output +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x25f6cad8 intel_th_trace_disable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x2dd28995 intel_th_driver_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x947a3296 intel_th_trace_switch +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x9e9b4a81 intel_th_alloc +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xb38bb1f6 intel_th_free +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xdf252fbd intel_th_trace_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xe694c3fe intel_th_driver_register +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x44c18cf6 intel_th_msu_buffer_register +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x48a0d85f intel_th_msc_window_unlock +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x4d3b1c27 intel_th_msu_buffer_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x3a93fb9b stm_unregister_protocol +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x8bc74223 stm_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xa8473f1e stm_source_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xb859399c to_pdrv_policy_node +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xc350884e stm_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xc3fffedf stm_source_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xcb9ada48 stm_source_write +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xd36e7b39 stm_data_write +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xe0cf1096 stm_register_protocol +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x070b346d i2c_mux_add_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x0b5e2821 i2c_mux_alloc +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x60e46e76 i2c_mux_del_adapters +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xd44ca09c i2c_root_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x1095b540 i2c_handle_smbus_alert +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x2541dabc i2c_new_slave_host_notify_device +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x9efad5f2 i2c_register_spd +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x9fdf58f7 i2c_free_slave_host_notify_device +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x0c075835 i3c_master_enec_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x0c16c2af i3c_generic_ibi_alloc_pool +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x0d265f16 i3c_master_queue_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x1bf1a5f6 i3c_driver_register_with_owner +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x2445a353 i3cdev_to_dev +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x2833347d i3c_device_free_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x45ff914f i3c_device_do_priv_xfers +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x4d4f51fa i3c_device_get_info +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x52c6ff4a i3c_master_register +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x5a27a28b i3c_master_get_free_addr +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x5e0cff0a i3c_device_enable_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x697dcd55 i3c_driver_unregister +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x7506ab1b i3c_device_match_id EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x76fe3e05 i3c_generic_ibi_free_pool -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x773c1bc4 i3c_master_entdaa_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x79142e8d i3c_master_get_free_addr -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x862221fa i3c_device_disable_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x958aecec i3c_device_request_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x9d4f7f99 i3c_generic_ibi_recycle_slot -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xa170394f i3c_generic_ibi_alloc_pool -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xa2f9b2a0 i3c_master_register -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xa7376779 i3c_master_disec_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xa9ca26a8 i3c_device_get_info -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xb3aa45ab i3c_master_enec_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xbdcdca69 i3c_master_queue_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xbeb5f1fc i3c_device_enable_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xce41f5a6 dev_to_i3cdev -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xd41e1fff i3c_master_defslvs_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xecd90b9d i3c_master_unregister -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xefa58bb2 i3c_device_match_id -EXPORT_SYMBOL_GPL drivers/iio/accel/adxl372 0x4b415b13 adxl372_readable_noinc_reg -EXPORT_SYMBOL_GPL drivers/iio/accel/adxl372 0x7a92e92d adxl372_probe -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x19b4fa00 bmc150_accel_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x8c06316c bmc150_accel_core_probe -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xd1aac2be bmc150_accel_core_remove -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xea5cf57c bmc150_regmap_conf -EXPORT_SYMBOL_GPL drivers/iio/accel/bmi088-accel-core 0x10612589 bmi088_regmap_conf -EXPORT_SYMBOL_GPL drivers/iio/accel/bmi088-accel-core 0x44303617 bmi088_accel_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/accel/bmi088-accel-core 0xa1a26197 bmi088_accel_core_probe -EXPORT_SYMBOL_GPL drivers/iio/accel/bmi088-accel-core 0xbd8bfe94 bmi088_accel_core_remove -EXPORT_SYMBOL_GPL drivers/iio/accel/fxls8962af-core 0x1ec4922f fxls8962af_i2c_regmap_conf -EXPORT_SYMBOL_GPL drivers/iio/accel/fxls8962af-core 0x2087616b fxls8962af_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/accel/fxls8962af-core 0x8fd0db93 fxls8962af_core_probe -EXPORT_SYMBOL_GPL drivers/iio/accel/fxls8962af-core 0xbc1a06ea fxls8962af_spi_regmap_conf -EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0x2d18e4b9 mma7455_core_probe -EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0xcb8627f6 mma7455_core_remove -EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0xdc3343f6 mma7455_core_regmap -EXPORT_SYMBOL_GPL drivers/iio/adc/ad7091r-base 0x6651fa8b ad7091r_probe -EXPORT_SYMBOL_GPL drivers/iio/adc/ad7091r-base 0x7bc7a345 ad7091r_regmap_config -EXPORT_SYMBOL_GPL drivers/iio/adc/ad7606 0xf50b0913 ad7606_probe -EXPORT_SYMBOL_GPL drivers/iio/adc/ad7606 0xf7fe421b ad7606_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x091ef742 ad_sigma_delta_single_conversion -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x14889d73 ad_sd_calibrate_all -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x440b313b devm_ad_sd_setup_buffer_and_trigger -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x686669a7 ad_sd_set_comm -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x6f8fe393 ad_sd_write_reg -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x75a450e3 ad_sd_init -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x7f603978 ad_sd_calibrate -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x8074b924 ad_sd_reset -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xa8fcca81 ad_sd_read_reg -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xb5c332ed ad_sd_validate_trigger -EXPORT_SYMBOL_GPL drivers/iio/adc/adi-axi-adc 0xb695ebda devm_adi_axi_adc_conv_register -EXPORT_SYMBOL_GPL drivers/iio/adc/adi-axi-adc 0xbfe19cfe adi_axi_adc_conv_priv -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x2598eaf7 iio_channel_get_all_cb +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x898c8a14 i3c_master_unregister +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x9c6939ab i3c_device_request_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xa0055783 i3c_master_add_i3c_dev_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xa757c814 i3c_master_do_daa +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xa77ac8ac i3c_master_entdaa_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xaee7c4ee i3c_generic_ibi_recycle_slot +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xbe03ff18 dev_to_i3cdev +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xd051ec06 i3c_master_set_info +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xd6c7d66a i3c_generic_ibi_get_free_slot +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xe2f3d0b2 i3c_device_disable_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xe4f3527a i3c_master_defslvs_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xf0c9909a i3c_master_disec_locked +EXPORT_SYMBOL_GPL drivers/iio/accel/adxl372 0x0438c997 adxl372_probe +EXPORT_SYMBOL_GPL drivers/iio/accel/adxl372 0xdb0e0f0b adxl372_readable_noinc_reg +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xb5d153d4 bmc150_accel_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xd7829f60 bmc150_accel_core_probe +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xf8148653 bmc150_accel_core_remove +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xf9370998 bmc150_regmap_conf +EXPORT_SYMBOL_GPL drivers/iio/accel/bmi088-accel-core 0x04b4faed bmi088_accel_core_probe +EXPORT_SYMBOL_GPL drivers/iio/accel/bmi088-accel-core 0x362f8f44 bmi088_accel_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/accel/bmi088-accel-core 0xad3ae74f bmi088_regmap_conf +EXPORT_SYMBOL_GPL drivers/iio/accel/bmi088-accel-core 0xafb28637 bmi088_accel_core_remove +EXPORT_SYMBOL_GPL drivers/iio/accel/fxls8962af-core 0x5d2d6f17 fxls8962af_spi_regmap_conf +EXPORT_SYMBOL_GPL drivers/iio/accel/fxls8962af-core 0xa6499682 fxls8962af_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/accel/fxls8962af-core 0xe4f700a5 fxls8962af_core_probe +EXPORT_SYMBOL_GPL drivers/iio/accel/fxls8962af-core 0xfff3fbd2 fxls8962af_i2c_regmap_conf +EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0x27766660 mma7455_core_probe +EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0xa878d44c mma7455_core_remove +EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0xae897fb1 mma7455_core_regmap +EXPORT_SYMBOL_GPL drivers/iio/adc/ad7091r-base 0x1803bbfd ad7091r_probe +EXPORT_SYMBOL_GPL drivers/iio/adc/ad7091r-base 0x52565106 ad7091r_regmap_config +EXPORT_SYMBOL_GPL drivers/iio/adc/ad7606 0x71037ef9 ad7606_probe +EXPORT_SYMBOL_GPL drivers/iio/adc/ad7606 0xe0128dae ad7606_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x00609b73 ad_sd_write_reg +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x2d95eb3e ad_sd_calibrate_all +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x36bc151c ad_sd_reset +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x440a9493 devm_ad_sd_setup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x4619885a ad_sd_set_comm +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x4778a8db ad_sd_validate_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x73af4abb ad_sigma_delta_single_conversion +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x9f4b8184 ad_sd_init +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xeeb9bbb3 ad_sd_calibrate +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xf682bf3c ad_sd_read_reg +EXPORT_SYMBOL_GPL drivers/iio/adc/adi-axi-adc 0x016d6d57 devm_adi_axi_adc_conv_register +EXPORT_SYMBOL_GPL drivers/iio/adc/adi-axi-adc 0xd33a6520 adi_axi_adc_conv_priv 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 0x745b6a6d 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 0x84d28d2d iio_channel_cb_get_channels -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x954eac57 iio_channel_cb_get_iio_dev +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0xae7956ac iio_channel_get_all_cb +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0xea3af55a iio_channel_cb_get_iio_dev EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0xfff2647d iio_channel_cb_set_buffer_watermark -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x047b0503 iio_dma_buffer_init -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x0989f47d iio_dma_buffer_read -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x0d2ebc37 iio_dma_buffer_block_list_abort -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x159c3bdb iio_dma_buffer_disable -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x266e727f iio_dma_buffer_exit -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x526420c9 iio_dma_buffer_data_available -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x71653d63 iio_dma_buffer_block_done -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x73420cfa iio_dma_buffer_release -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x8b03a185 iio_dma_buffer_enable -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xa266b303 iio_dma_buffer_set_length -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xb0ae9395 iio_dma_buffer_request_update -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xf5103e06 iio_dma_buffer_set_bytes_per_datum -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dmaengine 0x65483c78 devm_iio_dmaengine_buffer_setup -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x08c09082 devm_iio_hw_consumer_alloc -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x0b7d1501 iio_hw_consumer_alloc +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x00b42e2a iio_dma_buffer_block_done +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x08f50d1a iio_dma_buffer_release +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x0c1fbce0 iio_dma_buffer_block_list_abort +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x5dc40aa1 iio_dma_buffer_exit +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x6f96e152 iio_dma_buffer_enable +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x776aac47 iio_dma_buffer_read +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x8d0e7340 iio_dma_buffer_disable +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x8d33883f iio_dma_buffer_request_update +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xac214bab iio_dma_buffer_data_available +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xb4ffae6e iio_dma_buffer_set_length +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xe50999ff iio_dma_buffer_set_bytes_per_datum +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xee480723 iio_dma_buffer_init +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dmaengine 0x5ba02780 devm_iio_dmaengine_buffer_setup EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x3391543d iio_hw_consumer_disable +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x43c72f79 iio_hw_consumer_alloc +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x824d4bfc 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 0x23778aa8 devm_iio_triggered_buffer_setup_ext -EXPORT_SYMBOL_GPL drivers/iio/buffer/kfifo_buf 0x4220ae69 devm_iio_kfifo_buffer_setup_ext -EXPORT_SYMBOL_GPL drivers/iio/chemical/bme680_core 0x87ba408f bme680_core_probe -EXPORT_SYMBOL_GPL drivers/iio/chemical/sps30 0x1269b7b8 sps30_probe -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x0d2a1354 cros_ec_sensors_read_cmd -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x1535a556 cros_ec_sensors_ext_info -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x1fb5117b cros_ec_sensors_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x2a7c6c15 cros_ec_sensors_core_read_avail -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x41e7ecf2 cros_ec_sensors_read_lpc -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x48dde58a cros_ec_sensors_core_init -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x676c92e7 cros_ec_sensors_core_write -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x83b2b846 cros_ec_sensors_push_data -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x85a0077a cros_ec_motion_send_host_cmd +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-triggered-buffer 0xb57513b8 devm_iio_triggered_buffer_setup_ext +EXPORT_SYMBOL_GPL drivers/iio/buffer/kfifo_buf 0x69004834 devm_iio_kfifo_buffer_setup_ext +EXPORT_SYMBOL_GPL drivers/iio/chemical/bme680_core 0x74889acf bme680_core_probe +EXPORT_SYMBOL_GPL drivers/iio/chemical/sps30 0x6bb67970 sps30_probe +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x3cd2ddd2 cros_ec_sensors_ext_info +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x61c5a7fc cros_ec_sensors_read_cmd +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x8264d9bf cros_ec_sensors_push_data 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 0xde56b14d cros_ec_sensors_core_read -EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0xa28669f7 ad5592r_remove -EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0xc4fbe8f4 ad5592r_probe -EXPORT_SYMBOL_GPL drivers/iio/dac/ad5686 0x8034a367 ad5686_probe -EXPORT_SYMBOL_GPL drivers/iio/dac/ad5686 0xc8d4474a ad5686_remove -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x6fc3a144 bmg160_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x9b68be4a bmg160_core_probe -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xe270071d bmg160_core_remove -EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0x0e1c4ee1 fxas21002c_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0x3bdfb2c7 fxas21002c_core_remove -EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0xec7ec2cd fxas21002c_core_probe -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x02e73e2f __adis_check_status -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x413e4ec5 __adis_update_bits_base -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x6ced6806 devm_adis_setup_buffer_and_trigger -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x7407076e adis_init -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x880f6596 __adis_write_reg -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x9f1a5dd3 __adis_reset -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xa204c0b2 __adis_read_reg -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xaf88b389 __adis_initial_startup -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xc6b46fca devm_adis_probe_trigger -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xf3ad30ba adis_update_scan_mode -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xf92ce19c adis_single_conversion -EXPORT_SYMBOL_GPL drivers/iio/imu/bmi160/bmi160_core 0xf5adb5a2 bmi160_core_probe -EXPORT_SYMBOL_GPL drivers/iio/imu/fxos8700_core 0xdb51d87b fxos8700_core_probe -EXPORT_SYMBOL_GPL drivers/iio/imu/inv_icm42600/inv-icm42600 0x1b994fcd inv_icm42600_core_probe -EXPORT_SYMBOL_GPL drivers/iio/imu/inv_icm42600/inv-icm42600 0x6c368f6a inv_icm42600_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/imu/inv_icm42600/inv-icm42600 0x922342e3 inv_icm42600_regmap_config -EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0x264098c6 inv_mpu_core_probe -EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0xa2a2593a inv_mpu_pmops -EXPORT_SYMBOL_GPL drivers/iio/imu/st_lsm9ds0/st_lsm9ds0 0xdc5023bb st_lsm9ds0_probe -EXPORT_SYMBOL_GPL drivers/iio/imu/st_lsm9ds0/st_lsm9ds0 0xe2855ef6 st_lsm9ds0_remove -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x02addb16 iio_read_channel_offset -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x09cc3be5 iio_channel_release_all -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x103393cd iio_device_claim_direct_mode -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1244ffd1 iio_device_attach_buffer -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1ad982c2 iio_buffer_put -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1adb06e4 iio_update_buffers -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x20bc7a5b devm_iio_channel_get_all -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x20cbfae7 iio_device_id +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xa25cb979 cros_ec_sensors_core_init +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xb0f0292e cros_ec_sensors_read_lpc +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xb0f3b534 cros_ec_motion_send_host_cmd +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xb8c7320b cros_ec_sensors_core_read_avail +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xc94099e4 cros_ec_sensors_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xeec2043b cros_ec_sensors_core_write +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xf383983d cros_ec_sensors_core_read +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0x6ffa243f ad5592r_remove +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0x834d1417 ad5592r_probe +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5686 0x67aa6c8b ad5686_probe +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5686 0x9f10f27e ad5686_remove +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x33502b45 bmg160_core_remove +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x5a221d9d bmg160_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xe1b6c15b bmg160_core_probe +EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0x5bec04fa fxas21002c_core_remove +EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0x88d2b908 fxas21002c_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0xdd968f26 fxas21002c_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x29fcb64a __adis_update_bits_base +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x2e2fd254 adis_init +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x375f1ce0 __adis_read_reg +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x45c29f89 __adis_reset +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x4c3625a4 __adis_write_reg +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x68935fa9 adis_single_conversion +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x77d8469c __adis_initial_startup +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x7e990037 devm_adis_setup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xab9083f9 adis_update_scan_mode +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xb49c2229 __adis_check_status +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xc2e16ddf devm_adis_probe_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/bmi160/bmi160_core 0xfd7b0443 bmi160_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/fxos8700_core 0xe6582af7 fxos8700_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_icm42600/inv-icm42600 0x1988f37a inv_icm42600_regmap_config +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_icm42600/inv-icm42600 0xc8b439d3 inv_icm42600_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_icm42600/inv-icm42600 0xeefc493c inv_icm42600_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0x9743e5e3 inv_mpu_pmops +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0xe7fb4f31 inv_mpu_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/st_lsm9ds0/st_lsm9ds0 0x4b7062da st_lsm9ds0_remove +EXPORT_SYMBOL_GPL drivers/iio/imu/st_lsm9ds0/st_lsm9ds0 0x9ea0b550 st_lsm9ds0_probe +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x03fc2f0f iio_enum_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x06d3123c iio_channel_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x144bd044 devm_iio_channel_get_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1b03523c iio_channel_get_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1ca8cb05 devm_iio_channel_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1d9560e0 iio_channel_release EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x20ce344a iio_format_value -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2513242f iio_channel_get_all EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x26f6b499 iio_str_to_fixpoint -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x28d8881b iio_device_release_direct_mode -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x311f6713 iio_read_channel_scale -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x393b3940 iio_get_channel_type -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x420973b7 __devm_iio_device_register -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4627468f iio_read_channel_processed_scale -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4d3dcbe6 iio_enum_read -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x52cdff99 devm_iio_device_alloc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5d333092 iio_write_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x61a0d764 of_iio_channel_get_by_name -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6951f2e0 iio_read_max_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6ccc92c4 devm_iio_channel_get -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6db5a210 iio_read_avail_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7f89ee0c iio_read_channel_processed -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8609f098 __devm_iio_trigger_register -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8e27db3e iio_get_debugfs_dentry -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x93d65529 iio_convert_raw_to_processed -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9a460ff9 iio_map_array_unregister -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9afc6136 devm_of_iio_channel_get_by_name -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9bdcc802 iio_read_channel_attribute -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9c01ec71 iio_channel_release -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9d4ecf0b iio_map_array_register -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa7b48ac2 iio_read_avail_channel_attribute -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xaaf46b60 iio_read_channel_average_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb12f0401 iio_push_to_buffers -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb7a594d9 iio_show_mount_matrix -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc43149f1 iio_enum_write -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc984d847 iio_write_channel_ext_info -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xca018aa8 iio_read_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xcfbf49a6 iio_buffer_get -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd821ddb6 iio_read_channel_ext_info -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xdc1aee91 iio_validate_scan_mask_onehot -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xdca79a45 iio_get_channel_ext_info_count -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf0c8a7ff iio_write_channel_attribute -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf2f5fa65 iio_enum_available_read -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf6174617 iio_channel_get -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf9fbd468 devm_iio_trigger_alloc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xfdf1bd8f iio_alloc_pollfunc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xfe0f2f51 iio_dealloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2a307256 iio_buffer_put +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3b656959 iio_read_channel_attribute +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4467a1dc iio_write_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x54c258e8 devm_of_iio_channel_get_by_name +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x59bdf67d iio_read_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5e2a2a34 iio_enum_available_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x63315cd1 iio_read_max_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6ddcf65f iio_read_avail_channel_attribute +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6ea224d0 iio_map_array_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x707ab45f iio_get_channel_type +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x733d31f0 iio_read_channel_average_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x75c2479e iio_write_channel_ext_info +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7d6cc5e1 iio_show_mount_matrix +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8084b900 iio_read_avail_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8223c68b iio_channel_release_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8af6674a iio_device_release_direct_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8d6471b2 iio_read_channel_scale +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8d8b18e9 iio_convert_raw_to_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9b80ef8e iio_buffer_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9f4b0f5d __devm_iio_trigger_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa507e354 devm_iio_trigger_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa85f94c7 iio_get_channel_ext_info_count +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xaa6e3a3f __devm_iio_device_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb4e19dd2 iio_alloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xbe19e492 iio_push_to_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc0386a32 iio_device_attach_buffer +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc16d09fc iio_validate_scan_mask_onehot +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc483d432 iio_write_channel_attribute +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc50959c9 iio_read_channel_ext_info +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xca957ee2 iio_read_channel_processed_scale +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd11c7567 devm_iio_device_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd2d659ae iio_dealloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xda7ce184 iio_map_array_unregister +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe5da60d0 iio_update_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe959c86e of_iio_channel_get_by_name +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xed34e14b iio_read_channel_offset +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xef47c40b iio_device_claim_direct_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf00b40ab iio_read_channel_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf51bfe9e iio_enum_write +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xfb9796ce iio_get_debugfs_dentry +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xfc9b926d iio_device_id +EXPORT_SYMBOL_GPL drivers/iio/magnetometer/rm3100-core 0x03cc3de7 rm3100_common_probe EXPORT_SYMBOL_GPL drivers/iio/magnetometer/rm3100-core 0x0a1424e0 rm3100_volatile_table -EXPORT_SYMBOL_GPL drivers/iio/magnetometer/rm3100-core 0x13c022ca rm3100_common_probe EXPORT_SYMBOL_GPL drivers/iio/magnetometer/rm3100-core 0xaa911f08 rm3100_readable_table EXPORT_SYMBOL_GPL drivers/iio/magnetometer/rm3100-core 0xcc7209be rm3100_writable_table -EXPORT_SYMBOL_GPL drivers/iio/pressure/mpl115 0x7db6c958 mpl115_probe -EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0x19b034a9 zpa2326_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0x3f8e648d zpa2326_isreg_readable -EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0x538e82eb zpa2326_probe -EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0x53fcaeba zpa2326_remove -EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0x74b78d88 zpa2326_isreg_writeable -EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0xc0b2a1ce zpa2326_isreg_precious +EXPORT_SYMBOL_GPL drivers/iio/pressure/mpl115 0xfeb40e77 mpl115_probe +EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0x4bd64eec zpa2326_isreg_precious +EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0x7132c8b3 zpa2326_probe +EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0xa2ac9f65 zpa2326_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0xb6c93494 zpa2326_remove +EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0xc7ac53e4 zpa2326_isreg_writeable +EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0xda8dc2de zpa2326_isreg_readable EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x0710bd01 rtrs_post_recv_empty -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x08ba797a rtrs_cq_qp_create -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x09821f6c rtrs_start_hb -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x21d8b77b rtrs_iu_alloc -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x36fe44e4 rtrs_iu_post_send -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x62c5ff28 rtrs_stop_hb -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x787394e8 rtrs_iu_free -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x9e06291b rtrs_iu_post_rdma_write_imm -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xa44e52ea rtrs_cq_qp_destroy -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xcbf4c365 rtrs_iu_post_recv -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xce48a564 rtrs_send_hb_ack -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xeb53e8f8 rtrs_init_hb -EXPORT_SYMBOL_GPL drivers/input/ff-memless 0xaacd9f71 input_ff_create_memless -EXPORT_SYMBOL_GPL drivers/input/matrix-keymap 0x588477b0 matrix_keypad_parse_properties +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x2e6cf966 rtrs_cq_qp_destroy +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x99488420 rtrs_start_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xa483155b rtrs_post_recv_empty +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xb7c4167a rtrs_iu_alloc +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xc0677761 rtrs_iu_post_rdma_write_imm +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xc5c90728 rtrs_send_hb_ack +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xc9cfc7e8 rtrs_iu_free +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xd8af3669 rtrs_cq_qp_create +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xdf0bea41 rtrs_iu_post_recv +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xf31af26a rtrs_iu_post_send +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xf5960da1 rtrs_init_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xfea2aa95 rtrs_stop_hb +EXPORT_SYMBOL_GPL drivers/input/ff-memless 0x352b144a input_ff_create_memless +EXPORT_SYMBOL_GPL drivers/input/matrix-keymap 0x2ce3209c matrix_keypad_parse_properties EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x49a4fcbd adxl34x_remove EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x66535a18 adxl34x_suspend -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xcbed36f2 adxl34x_probe +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xddb19534 adxl34x_probe EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xe4586827 adxl34x_resume -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x048216de rmi_dbg -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x093f450b rmi_set_attn_data -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x0be5543e rmi_2d_sensor_configure_input -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x0f01c548 rmi_of_property_read_u32 -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x13b0240d rmi_2d_sensor_of_probe -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x23109e63 __rmi_register_function_handler -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x3d77bfdb rmi_driver_resume -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x3e777468 rmi_unregister_function_handler -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x71bcc305 rmi_driver_suspend -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x94183f36 rmi_2d_sensor_abs_process -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xaa20a26d rmi_2d_sensor_rel_report -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xe870ce57 rmi_2d_sensor_abs_report -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xf3778c6e rmi_register_transport_device -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x2ba1ca47 cyttsp4_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xac0972c7 cyttsp4_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xe49d8e97 cyttsp4_remove -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x961bf42a cyttsp_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0xdbb09365 cyttsp_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x4b3b404f cyttsp_i2c_write_block_data -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0xae0fc5e4 cyttsp_i2c_read_block_data -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x05dfbeaa tsc200x_remove -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x28783f8f tsc200x_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x8a0f2c2a tsc200x_regmap_config -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x949626c9 tsc200x_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x2c94a704 wm97xx_set_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x3a0f2d4c wm97xx_read_aux_adc -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x428f5947 wm97xx_register_mach_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x470a501b wm97xx_get_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x68347fb7 wm97xx_config_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x6b54b329 wm97xx_reg_write -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x6eb76ff8 wm9713_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x76502e18 wm97xx_unregister_mach_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xa21d6f66 wm9712_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xbfa3723c wm9705_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xce6b104c wm97xx_set_suspend_mode -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xf55a504c wm97xx_reg_read -EXPORT_SYMBOL_GPL drivers/interconnect/imx/imx-interconnect 0x8effc527 imx_icc_register -EXPORT_SYMBOL_GPL drivers/interconnect/imx/imx-interconnect 0xf32cb6ca imx_icc_unregister +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x0c561766 rmi_2d_sensor_configure_input +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x0fa835b4 rmi_register_transport_device +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x1c69485d rmi_2d_sensor_abs_report +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x2651eb49 rmi_set_attn_data +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x2db21efe rmi_2d_sensor_rel_report +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x44629f23 __rmi_register_function_handler +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x4fb3c672 rmi_driver_suspend +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x5a328143 rmi_of_property_read_u32 +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x6abb8fbe rmi_2d_sensor_abs_process +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xacfe5fbb rmi_dbg +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xe3e3fa6d rmi_unregister_function_handler +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xfd4e1daa rmi_driver_resume +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xfd61d7bb rmi_2d_sensor_of_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x300b318e cyttsp4_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xc257c178 cyttsp4_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xd5de522b cyttsp4_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x4c42af04 cyttsp_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0xa079736c cyttsp_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x6ac59322 cyttsp_i2c_write_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x85d9d017 cyttsp_i2c_read_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x052524db tsc200x_regmap_config +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x3594ad6e tsc200x_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xa713a850 tsc200x_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xcaf89d3e tsc200x_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x04d8d2e1 wm97xx_set_suspend_mode +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x0a572f5b wm9705_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x17e93201 wm9712_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x3d9cb96c wm97xx_reg_write +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x4f1241df wm97xx_read_aux_adc +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x61edd196 wm97xx_unregister_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x6d85cca5 wm97xx_set_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x953e78fc wm97xx_reg_read +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xb527a0c3 wm97xx_get_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xcc09a78d wm97xx_register_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xce235a14 wm97xx_config_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xdb43329f wm9713_codec +EXPORT_SYMBOL_GPL drivers/interconnect/imx/imx-interconnect 0x054fd952 imx_icc_register +EXPORT_SYMBOL_GPL drivers/interconnect/imx/imx-interconnect 0xa0f2294f imx_icc_unregister EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-bcm-voter 0x0b39b783 qcom_icc_bcm_voter_commit EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-bcm-voter 0x2f573302 qcom_icc_bcm_voter_add -EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-bcm-voter 0x86dbc316 of_bcm_voter_get -EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x2a184ddc qcom_icc_set -EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x319ea53f qcom_icc_aggregate -EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x899eca73 qcom_icc_rpmh_probe -EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0xa11250a3 qcom_icc_rpmh_remove -EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0xab622753 qcom_icc_bcm_init -EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0xdeb0e584 qcom_icc_pre_aggregate -EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0xe6361e1f qcom_icc_xlate_extended +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-bcm-voter 0x9fd7af22 of_bcm_voter_get +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x319a3328 qcom_icc_xlate_extended +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x3c0d9c77 qcom_icc_bcm_init +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0xaa6a2f5a qcom_icc_rpmh_remove +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0xae47ac62 qcom_icc_set +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0xd0a605b3 qcom_icc_rpmh_probe +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0xe39378d5 qcom_icc_pre_aggregate +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0xee759892 qcom_icc_aggregate EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-smd-rpm 0x81e513ad qcom_icc_rpm_smd_available EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-smd-rpm 0xe8dbdc6c qcom_icc_rpm_smd_send EXPORT_SYMBOL_GPL drivers/iommu/iova 0x0a8beabb put_iova_domain @@ -12822,45 +12861,47 @@ EXPORT_SYMBOL_GPL drivers/iommu/iova 0xcb8c4eb0 alloc_iova EXPORT_SYMBOL_GPL drivers/iommu/iova 0xe2908238 find_iova EXPORT_SYMBOL_GPL drivers/iommu/iova 0xfb845e71 alloc_iova_fast -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x42c3b89c ipack_bus_unregister -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x456ea04f ipack_driver_register -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x55018d4a ipack_device_init -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x55dfa005 ipack_device_add -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x63c7300a ipack_get_device -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xd4043d75 ipack_driver_unregister -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xd9f28dd6 ipack_put_device -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xead237d5 ipack_device_del -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xfa92e6cb ipack_bus_register -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x00c4fc01 led_classdev_flash_register_ext -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x29061f47 devm_led_classdev_flash_register_ext -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x33b3b00d led_get_flash_fault -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x4b394fd1 led_classdev_flash_unregister -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x57403f38 led_update_flash_brightness -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x80f2fe4c led_set_flash_brightness -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x9dd1315d devm_led_classdev_flash_unregister -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xb802d0ce led_set_flash_timeout -EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x032d5fcc led_mc_calc_color_components -EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0xa0d632b7 led_classdev_multicolor_unregister -EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0xb2180dc0 devm_led_classdev_multicolor_unregister -EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0xd9bbdcfd led_classdev_multicolor_register_ext -EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0xe69124d6 devm_led_classdev_multicolor_register_ext -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x05e36e5c lp55xx_is_extclk_used -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x1ee164e2 lp55xx_register_leds -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x2551da1e lp55xx_unregister_sysfs -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x41d8c8d2 lp55xx_write -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x8d06759d lp55xx_register_sysfs -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xb2803dfd lp55xx_of_populate_pdata -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xd022cf4d lp55xx_init_device -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xe5a4084f lp55xx_deinit_device -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xe6a8d09f lp55xx_update_bits -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xffa57e3b lp55xx_read +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x1a7c4405 ipack_bus_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x40e18166 ipack_put_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x8debb59c ipack_device_del +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xcc9b4df9 ipack_device_init +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xcde41523 ipack_bus_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xe09977f6 ipack_driver_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xe507cf64 ipack_get_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xed72d03e ipack_device_add +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xfb780294 ipack_driver_register +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x0d941069 devm_led_classdev_flash_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x47d7fb89 led_set_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x62bf7908 led_classdev_flash_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x6907f06b led_set_flash_timeout +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x6f01add2 led_get_flash_fault +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x9295b013 devm_led_classdev_flash_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xb98270d4 led_update_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xd18a4b69 led_classdev_flash_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x05329433 led_classdev_multicolor_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x122bf978 devm_led_classdev_multicolor_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x4ffc15c7 devm_led_classdev_multicolor_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x5e09b6c1 led_classdev_multicolor_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x986c88c8 led_mc_calc_color_components +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x0576efb8 lp55xx_register_leds +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x06dbfdf3 lp55xx_unregister_sysfs +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x15073c61 lp55xx_write +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x36f96171 lp55xx_deinit_device +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x641528a3 lp55xx_read +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x8d76c262 lp55xx_is_extclk_used +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x9b24f0ae lp55xx_of_populate_pdata +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xa41067c3 lp55xx_init_device +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xf3012e21 lp55xx_update_bits +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xf4758c86 lp55xx_register_sysfs EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-audio 0x3bd45b0d ledtrig_audio_set EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-audio 0xce593c22 ledtrig_audio_get EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-camera 0x749e05f2 ledtrig_flash_ctrl EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-camera 0x7903e46e ledtrig_torch_ctrl EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x05907c93 __tracepoint_bcache_btree_insert_key EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x06bceaa1 __SCK__tp_func_bcache_btree_gc_coalesce +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0895286d __traceiter_bcache_btree_read EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0a62aea7 __tracepoint_bcache_btree_cache_cannibalize +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0ac6d4b3 __traceiter_bcache_request_end EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0bc0be45 __SCK__tp_func_bcache_bypass_sequential EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x15f3de09 __SCK__tp_func_bcache_read_retry EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x17a83e40 __traceiter_bcache_writeback @@ -12869,23 +12910,24 @@ EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1c599ebe __traceiter_bcache_btree_gc_coalesce EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1c83d5b7 __SCK__tp_func_bcache_journal_entry_full EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x22ae6324 __SCK__tp_func_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2326cf67 __traceiter_bcache_read_retry +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2387141a __traceiter_bcache_journal_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x248290a7 __traceiter_bcache_journal_entry_full EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x25bbd6d5 __tracepoint_bcache_btree_write EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2766fb04 __traceiter_bcache_journal_replay_key -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x29e81500 __traceiter_bcache_bypass_congested +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x296b8470 __traceiter_bcache_btree_node_compact EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2af60833 __SCK__tp_func_bcache_writeback_collision EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x30556300 __tracepoint_bcache_btree_node_alloc EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3079df16 __tracepoint_bcache_gc_end EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x31057c80 __tracepoint_bcache_journal_entry_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x323b5866 __traceiter_bcache_btree_read -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3f268c8b __traceiter_bcache_btree_node_compact 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 0x4cfcdb6d __traceiter_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4acf8af5 __traceiter_bcache_gc_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x51530b4e __traceiter_bcache_invalidate EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x51d0e534 __SCK__tp_func_bcache_btree_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x55464983 __traceiter_bcache_btree_node_alloc -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x57f47901 __traceiter_bcache_request_start -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x58357097 __traceiter_bcache_bypass_sequential +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x55b90c32 __traceiter_bcache_alloc_fail EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5a227cbf __tracepoint_bcache_gc_copy +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5c6e06e8 __traceiter_bcache_bypass_sequential EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5d9c8fc8 __SCK__tp_func_bcache_cache_insert EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5fd7c423 __SCK__tp_func_bcache_write EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6026e276 __SCK__tp_func_bcache_bypass_congested @@ -12893,97 +12935,94 @@ EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6457cb54 __tracepoint_bcache_journal_write 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 0x670ca5e1 __traceiter_bcache_btree_cache_cannibalize EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x67abbb76 __tracepoint_bcache_btree_node_compact EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6e74dca7 __SCK__tp_func_bcache_btree_node_free -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6ea70d11 __traceiter_bcache_gc_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6eba401b __traceiter_bcache_btree_node_free EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x71388d39 __tracepoint_bcache_journal_full EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7267dab1 __tracepoint_bcache_request_start EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x72a3de4b __tracepoint_bcache_invalidate -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x79eb448b __traceiter_bcache_read_retry +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x730df3a7 __traceiter_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x749acc4b __traceiter_bcache_bypass_congested EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x79eeb380 __SCK__tp_func_bcache_gc_copy_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7b1f674b __traceiter_bcache_btree_set_root EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7b6679bd __tracepoint_bcache_alloc_fail EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x803c2c0b __tracepoint_bcache_btree_node_alloc_fail EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x80e3881d __SCK__tp_func_bcache_request_end EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x82fa505e __tracepoint_bcache_btree_gc_coalesce -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x84a91ade __traceiter_bcache_write EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8ad20d61 __SCK__tp_func_bcache_request_start EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8ae53615 __tracepoint_bcache_cache_insert EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8f8604ba __tracepoint_bcache_bypass_sequential EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x92662b95 __tracepoint_bcache_writeback_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x93eccd52 __traceiter_bcache_btree_cache_cannibalize EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x98ddc365 __tracepoint_bcache_bypass_congested +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x98e89bfe __traceiter_bcache_write EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9a6f4d9f __SCK__tp_func_bcache_read EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9c271314 __tracepoint_bcache_btree_read EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9c29a067 __tracepoint_bcache_gc_start EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9ce21c84 __SCK__tp_func_bcache_journal_write EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9d23546a __tracepoint_bcache_btree_set_root -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9d2fb767 __traceiter_bcache_read -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa13d7686 __traceiter_bcache_btree_insert_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9d622459 __traceiter_bcache_gc_start EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa187023e __SCK__tp_func_bcache_alloc_fail EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa64134e4 __SCK__tp_func_bcache_journal_full EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa842a5c8 __SCK__tp_func_bcache_invalidate -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xab375774 __traceiter_bcache_request_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xace139fd __traceiter_bcache_journal_entry_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa849fa45 __traceiter_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xab278865 __traceiter_bcache_btree_node_alloc EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xad6440b4 __traceiter_bcache_gc_copy -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xaed9adfb __traceiter_bcache_journal_write EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb5a62a8c __traceiter_bcache_cache_insert EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xba843c3f __SCK__tp_func_bcache_gc_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xbc94721f __traceiter_bcache_journal_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc7dc1b20 __traceiter_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc7d115df __traceiter_bcache_journal_write EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc7fd0138 __tracepoint_bcache_write EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc8ae4213 __SCK__tp_func_bcache_btree_node_alloc -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xca8d6fd4 __traceiter_bcache_btree_node_split EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xcf12a58a __tracepoint_bcache_read_retry -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xcfe9eeef __traceiter_bcache_btree_node_free +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd8c7fb46 __traceiter_bcache_btree_node_split EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xda06fe86 __SCK__tp_func_bcache_btree_node_alloc_fail EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xda554237 __tracepoint_bcache_btree_node_split EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xdba23768 __tracepoint_bcache_journal_replay_key EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe16c06b3 __SCK__tp_func_bcache_gc_start EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe754d114 __tracepoint_bcache_writeback -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xeb67b74f __traceiter_bcache_btree_set_root -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xec1acfb6 __traceiter_bcache_alloc_fail EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xec29e22a __traceiter_bcache_gc_copy_collision EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xec92a163 __SCK__tp_func_bcache_btree_cache_cannibalize -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf1eade71 __traceiter_bcache_gc_end EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf488bbfc __tracepoint_bcache_request_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf56fad0d __traceiter_bcache_btree_insert_key EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf6249e5f __SCK__tp_func_bcache_journal_replay_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf673ac39 __traceiter_bcache_read EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf7fba67a __tracepoint_bcache_btree_node_free -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf8247c87 __traceiter_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf9535ce7 __traceiter_bcache_request_start EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfd6b5d80 __SCK__tp_func_bcache_btree_insert_key EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfda8097f __tracepoint_bcache_gc_copy_collision EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x17dd39d6 dm_deferred_set_create -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x1db93405 dm_cell_quiesce_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x25aaac9f dm_cell_promote_or_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x19302d4c dm_bio_prison_free_cell_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2576ed7b dm_bio_prison_alloc_cell EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2eb01e04 dm_deferred_set_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x3d1f5ba2 dm_cell_unlock_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x3e92679f dm_bio_detain -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x59e6c040 dm_cell_release_no_holder -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x5f9c98a9 dm_cell_lock_promote_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x65e32608 dm_bio_prison_alloc_cell_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x3d9d0883 dm_cell_lock_promote_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x43dab8bb dm_bio_prison_free_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x4d3f3816 dm_bio_detain +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x4f03a2b9 dm_cell_put_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x5a394b92 dm_cell_lock_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x5dec340b dm_cell_visit_release EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x6791a44e dm_deferred_entry_dec EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x753e20b2 dm_bio_prison_create -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x8d51d89c dm_bio_prison_free_cell_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x84ce6fef dm_cell_promote_or_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x8a4c355c dm_cell_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x8c07841c dm_cell_unlock_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xab85db97 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 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 0xc4cec504 dm_cell_error -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xc55d6ddd dm_cell_lock_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xca14bbac dm_cell_quiesce_v2 EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xca2e3a88 dm_deferred_entry_inc -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xcdddafb8 dm_cell_get_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xd3742519 dm_get_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xd1aa1532 dm_get_cell EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xd99e003d dm_bio_prison_create_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xda11f010 dm_cell_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xebb9de40 dm_cell_put_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xf634629e dm_bio_prison_free_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xfa3c485a dm_bio_prison_alloc_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xfe8d9bde dm_cell_visit_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xe4585db2 dm_cell_error +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xe71b0916 dm_cell_release_no_holder +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xfd050745 dm_bio_prison_alloc_cell_v2 EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x0ad0dc4f dm_bufio_mark_buffer_dirty EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x111ab12a dm_bufio_mark_partial_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 0x4bb66a08 dm_bufio_client_create EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6aebce95 dm_bufio_issue_discard EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6d3f57bd dm_bufio_get_client -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x72b60871 dm_bufio_client_create EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x72f07bf4 dm_bufio_set_minimum_buffers EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x74dcd98c dm_bufio_get_aux_data EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x7c381a76 dm_bufio_get_block_size @@ -13002,45 +13041,46 @@ 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 0x02ede741 dm_cache_policy_unregister EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x03bb93e0 dm_cache_policy_get_name EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x0efbca4c btracker_promotion_already_present EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x5730f8ae dm_cache_policy_create EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x5adc2807 btracker_destroy EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x5b3dc349 dm_cache_policy_get_version +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x5d802a39 dm_cache_policy_register EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x5de611a9 btracker_nr_writebacks_queued EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x87bee547 btracker_queue EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x8f647e48 dm_cache_policy_get_hint_size EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x90136207 dm_cache_policy_destroy 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 0xb7fe177f dm_cache_policy_unregister EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xbf1a2968 btracker_create -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xbf25cb75 dm_cache_policy_register EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xccfe6409 btracker_nr_demotions_queued -EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x68d22602 dm_unregister_path_selector -EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0xf020d936 dm_register_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x3631c6be dm_unregister_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0xe152432e 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 0x2b5d32b2 dm_rh_delay EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x38972f23 dm_rh_region_to_sector EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x38efaf5a dm_region_hash_destroy EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x3a18389a dm_rh_update_states -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x487f9379 dm_rh_bio_to_region +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x425cd956 dm_rh_inc_pending +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x47e6a3a3 dm_region_hash_create EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x57e16c3e dm_rh_get_state EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x5f4a6e61 dm_rh_dec -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x6df8d073 dm_region_hash_create EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7774620f dm_rh_stop_recovery EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7d053fc5 dm_rh_start_recovery EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7d5e1815 dm_rh_get_region_key -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x8d73d429 dm_rh_delay -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa1e252cd dm_rh_dirty_log +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x8c68d7f6 dm_rh_bio_to_region EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa53387c7 dm_rh_flush EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa83588eb dm_rh_recovery_end -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xb268bf84 dm_rh_mark_nosync EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xbe38a431 dm_rh_recovery_prepare -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xbf5b1b60 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 0xd8dc1171 dm_rh_mark_nosync +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xd95024a3 dm_rh_dirty_log EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xf92b8a3d dm_rh_get_region_size EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfd93482e dm_rh_recovery_in_flight EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0054f69d dm_tm_pre_commit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x056a458d dm_block_manager_create EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x11fbbe02 dm_bitset_set_bit EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x15085586 dm_btree_cursor_begin EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x1816383d dm_btree_find_highest_key @@ -13100,7 +13140,6 @@ EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xb3d7482b dm_bitset_new EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xb6879c01 dm_btree_lookup_next EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xb720ee73 dm_array_cursor_begin -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbe490c13 dm_block_manager_create EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xc0d7c2d1 dm_array_resize EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xc0fadb13 dm_bitset_del EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xc36559ad dm_btree_cursor_next @@ -13114,75 +13153,75 @@ EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf3e25192 dm_bm_checksum EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf82dba90 dm_btree_empty EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xfce51d79 dm_array_empty -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x0db533bd cec_received_msg_ts -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x32fc2a0f cec_unregister_adapter -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x39715ef7 cec_allocate_adapter -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x419a8d30 cec_transmit_done_ts -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x43fe250a cec_register_adapter -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x5603ec17 cec_s_phys_addr +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x1a9a6aa4 cec_s_phys_addr +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x28d2f8b7 cec_notifier_parse_hdmi_phandle +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x2b7da60d cec_received_msg_ts +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x42220e52 cec_notifier_conn_register +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x5f9b1b0d cec_transmit_attempt_done_ts +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x64243441 cec_queue_pin_5v_event +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x64d25d7d cec_allocate_adapter EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x67e1dfdc cec_notifier_set_phys_addr_from_edid -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x832002dc cec_queue_pin_5v_event -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x857ac335 cec_queue_pin_cec_event -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x9b97b451 cec_notifier_conn_register +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x69941ae9 cec_queue_pin_hpd_event +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x744b8e35 cec_transmit_msg +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x8d22a08a cec_transmit_done_ts +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x961f1e06 cec_s_phys_addr_from_edid +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x9a0edfa5 cec_s_conn_info +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x9bc06f5f cec_fill_conn_info_from_drm EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xa01fbb6b cec_notifier_set_phys_addr -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xa583707f cec_queue_pin_hpd_event +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xa332da44 cec_register_adapter EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xaee236c6 cec_notifier_conn_unregister +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xb07c896d cec_queue_pin_cec_event +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xb0c41715 cec_unregister_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xb11bcbc6 cec_notifier_cec_adap_register +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xb4b2656d cec_delete_adapter EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xbe4de675 cec_get_edid_phys_addr -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xc7d48c1f cec_delete_adapter -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xca28b14c cec_s_log_addrs -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xcf2137de cec_s_phys_addr_from_edid -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xcf5c62c4 cec_transmit_msg -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xd0fab102 cec_fill_conn_info_from_drm -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xdfc4d6ce cec_notifier_parse_hdmi_phandle -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xed0073b6 cec_s_conn_info -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xef4d2025 cec_notifier_cec_adap_unregister -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xf70305c4 cec_notifier_cec_adap_register -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xfe70c2c4 cec_transmit_attempt_done_ts +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xc7a7d03c cec_notifier_cec_adap_unregister +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xf3fda878 cec_s_log_addrs EXPORT_SYMBOL_GPL drivers/media/common/b2c2/b2c2-flexcop 0x66c0289a b2c2_flexcop_debug -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x0cfec420 saa7146_pgtable_build_single -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x1fa3f41a saa7146_pgtable_alloc -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x21931702 saa7146_unregister_extension -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x42846a03 saa7146_setgpio -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x4d965f33 saa7146_vfree_destroy_pgtable -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x887eefac saa7146_wait_for_debi_done -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x99b8fd06 saa7146_pgtable_free -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xa16790c9 saa7146_vmalloc_build_pgtable -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xa30184c5 saa7146_i2c_adapter_prepare -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xbc4093ff saa7146_register_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x0faf9b06 saa7146_wait_for_debi_done +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x4ad68b16 saa7146_vfree_destroy_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x6ade855e saa7146_vmalloc_build_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x7c590ebe saa7146_i2c_adapter_prepare +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x920e1173 saa7146_pgtable_build_single +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x92a95fa2 saa7146_setgpio +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xa99193a0 saa7146_pgtable_alloc +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xa9b55ff7 saa7146_pgtable_free +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xc682afa6 saa7146_unregister_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xcc540ca4 saa7146_register_extension EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe3cd9b5c saa7146_debug -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x22570236 saa7146_register_device -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x34c88eea saa7146_vv_init -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x445c0fee saa7146_set_hps_source_and_sync -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x4a5cc36a saa7146_vv_release -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x59680a5d saa7146_start_preview -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x61e18bbc saa7146_unregister_device -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xe5501aea saa7146_stop_preview -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x02d1264e sms_board_lna_control -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x1f1caed9 smscore_putbuffer +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x044d8a11 saa7146_set_hps_source_and_sync +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x41725c07 saa7146_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x6796aa61 saa7146_start_preview +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x7571dc78 saa7146_register_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xb50d5af2 saa7146_vv_init +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xd366c352 saa7146_vv_release +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xf9ba1fbd saa7146_stop_preview +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x05af76f1 smscore_start_device EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x21e36bf2 smscore_registry_getmode 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 0x3c90ef06 smscore_register_hotplug -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x40b0d7d1 smscore_onresponse +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x38580f53 sms_board_power EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x45284ae9 smsendian_handle_rx_message -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x4c510f2b sms_board_power -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x50c161b8 smscore_set_board_id -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x51b06db7 smscore_register_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x455f4b6f smscore_set_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x56a4fbe0 smscore_get_device_mode EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x63222b29 smsclient_sendrequest +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x66b86621 smscore_onresponse +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7329b0d2 smscore_putbuffer EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x74ee9098 sms_board_load_modules -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x78b6390c sms_board_led_feedback +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7b39633a smscore_getbuffer EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7c576277 smsendian_handle_message_header +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x810493f4 smscore_register_client EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x844539ae sms_get_board -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x8c7b3322 smscore_get_device_mode -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x8e859d40 smscore_getbuffer -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x952947db smscore_unregister_hotplug -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xa95d2cc6 sms_board_event -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xadf85452 smscore_get_board_id -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xb3e6d7e9 smscore_unregister_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xb3f1da77 smscore_register_client -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xb441238a smscore_start_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x84d08bfc sms_board_setup +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xb342bcd5 sms_board_lna_control +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xb9c5311f smscore_unregister_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xb9e637d4 smscore_get_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xba57fee0 smscore_unregister_device EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbbdb5c42 smscore_unregister_client -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xc9dd19c9 sms_board_setup +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xc5a493fa sms_board_event +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xdd355761 smscore_register_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xefd3b063 sms_board_led_feedback +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xf2636440 smscore_register_device EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x03005a48 tpg_alloc EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x040dc7cd tpg_aspect_strings EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x4d1d285c tpg_init @@ -13201,214 +13240,214 @@ EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xf4aef3a4 tpg_gen_text EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xf65c5e46 tpg_fillbuffer 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 0x094eeaef __traceiter_vb2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x1af1ddc2 vb2_core_querybuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x20f4d00b vb2_plane_vaddr -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x269abf93 vb2_wait_for_all_buffers -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x2a9ed89c vb2_core_expbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x375ab2ea vb2_core_queue_release -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x39f037f5 __traceiter_vb2_buf_done -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x3adf5153 vb2_discard_done -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x3cd98b4a vb2_core_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x411420c5 vb2_request_object_is_buffer -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x4e3ac1fc vb2_core_streamon -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x5ca0510d vb2_core_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x14fab99f vb2_queue_error +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x1b36e46c __traceiter_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x2e19f7e2 vb2_buffer_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x35924742 __traceiter_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x489d0401 vb2_core_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x48bbf455 __traceiter_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x4ed90444 vb2_discard_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x53075abd vb2_write +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x5c7b695e vb2_thread_stop +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x5d65d08e vb2_core_streamon EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x5f9e9fbf __tracepoint_vb2_buf_done -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x6a72f909 __traceiter_vb2_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x792b83f8 vb2_request_buffer_cnt -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x8132b918 vb2_core_queue_init +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x6d6ee5b4 vb2_core_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x730ecd1a vb2_core_queue_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x81065b5b vb2_plane_vaddr +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x8b0832dd vb2_core_poll EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x8d8f7cfd __tracepoint_vb2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x8ebfa0f6 vb2_core_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x92de7d91 vb2_thread_start -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x93787942 vb2_mmap +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x8f5aedee vb2_read +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x9079536c __traceiter_vb2_buf_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x980a49b3 vb2_request_buffer_cnt +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xa25690ac vb2_core_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xa3981588 vb2_core_queue_init +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xb03ac9a2 vb2_core_expbuf EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xb6f4b031 __SCK__tp_func_vb2_qbuf EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xb85ad0a8 __tracepoint_vb2_dqbuf EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xb9d2df39 __SCK__tp_func_vb2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xbcf99a30 vb2_queue_error -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xc45c230e vb2_read -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xc5efc8a8 __traceiter_vb2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xc6adffd5 vb2_core_poll -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xc7836d94 vb2_core_create_bufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xc72b0762 vb2_core_querybuf EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xc7b45aa4 __SCK__tp_func_vb2_buf_done -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xcc343a56 vb2_core_streamoff -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xd4e5fc70 vb2_buffer_done -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xd55b0ac5 vb2_plane_cookie -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xd841e95f vb2_write +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xc92bcc55 vb2_request_object_is_buffer +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xcabb9f62 vb2_core_create_bufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xd08227bf vb2_core_streamoff +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xe1152a46 vb2_core_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xe2d11eab vb2_mmap EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xe58a2770 __tracepoint_vb2_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xf41e0099 vb2_core_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xfeaa7f49 vb2_thread_stop -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0xf22e89e6 vb2_dma_contig_memops -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0xf980294b vb2_dma_contig_set_max_seg_size -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-sg 0x9e74aa4b vb2_dma_sg_memops -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-memops 0x58aef6f3 vb2_common_vm_ops -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x0d4afb18 vb2_ioctl_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x13c312f8 vb2_find_timestamp -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x1658d5b5 vb2_request_validate -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x16a9d137 vb2_ioctl_querybuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x3485748b vb2_video_unregister_device -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x4025d3eb vb2_queue_change_type -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x4903e196 vb2_fop_write -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x4a7b03f8 vb2_ops_wait_finish -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x4f5d2f81 vb2_ioctl_streamon -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x5d814b7b vb2_ioctl_create_bufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x64e4497a vb2_ioctl_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x6f1d1d07 vb2_fop_release -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x70a7500d _vb2_fop_release -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x771795ee vb2_expbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x79fbeb8c vb2_reqbufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x7a921586 vb2_fop_mmap -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x8271de67 vb2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x89cb1d89 vb2_fop_poll -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x8d1bacf9 vb2_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x9109adc5 vb2_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xa48959db vb2_ioctl_reqbufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xbb0aae87 vb2_streamon -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xbc35ef34 vb2_create_bufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xc14c6aec vb2_queue_release -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xc928729a vb2_poll -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xd897f291 vb2_ops_wait_prepare -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xdb27ca76 vb2_queue_init_name -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xdf31a9df vb2_ioctl_expbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xe03c90a6 vb2_fop_read -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xe52eaf2e vb2_ioctl_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xe77b1680 vb2_request_queue -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xe7e81dcf vb2_streamoff -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xe924a4d5 vb2_queue_init -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xfd41773e vb2_ioctl_streamoff -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-vmalloc 0x984d968f vb2_vmalloc_memops -EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0x36b8169b dvb_create_media_graph -EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0x8c976a00 dvb_module_probe -EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0xc3aef2dc dvb_module_release -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/as102_fe 0x06f2f81e as102_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24117 0xeadb1f08 cx24117_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/gp8psk-fe 0x47260013 gp8psk_fe_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mxl5xx 0xbc866b31 mxl5xx_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0910 0xc4ae0c95 stv0910_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv6111 0x6278de4b stv6111_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0xe322b397 tda18271c2dd_attach -EXPORT_SYMBOL_GPL drivers/media/i2c/aptina-pll 0x63458a6c aptina_pll_calculate -EXPORT_SYMBOL_GPL drivers/media/i2c/ccs-pll 0x923eab0f ccs_pll_calculate -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x0c2cd45c max9271_set_deserializer_address -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x1a82415c max9271_wake_up -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x1a99d55d max9271_enable_gpios -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x2d2c3ccc max9271_set_address -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x4842484d max9271_clear_gpios -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x5b9c2f3b max9271_set_serial_link -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x69ecd81e max9271_disable_gpios -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x7ed32e87 max9271_set_high_threshold -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x8dc838a5 max9271_configure_gmsl_link -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xbe2469eb max9271_set_translation -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xe2f745f6 max9271_configure_i2c -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xea7a6e17 max9271_verify_id -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xed9ea037 max9271_set_gpios -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x07f508cb __media_device_usb_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x12ef1c82 media_request_object_bind -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x210a1145 __media_remove_intf_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x2d9c3194 media_remove_intf_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x2fc4fd14 media_devnode_create -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x31e9df9d media_device_unregister_entity -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x3a352626 media_device_register_entity_notify -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x589ce104 media_entity_pads_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x5d16425e media_device_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x5e7a4416 media_device_delete -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x64ce7340 media_device_pci_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x724b39c1 media_graph_walk_next -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x79b63cad media_create_pad_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7fa95757 __media_remove_intf_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x83b67b35 media_graph_walk_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x893ccbf1 __media_entity_remove_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x94ce5ab7 media_device_cleanup -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x99bc7765 media_device_register_entity -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x9a59f09d media_pipeline_stop -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xa5082640 media_devnode_remove -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xa8e91b57 media_device_usb_allocate -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xab6c2d8d media_request_object_unbind -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xacde0cde media_graph_walk_cleanup -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xaea794dd media_request_get_by_fd -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xb1c176e3 media_request_object_put -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xb1c4ef0a media_entity_remote_pad -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xba621956 __media_pipeline_stop -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xbefb809f media_device_unregister_entity_notify -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc2738713 media_pipeline_start -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc8b0b968 media_entity_remove_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd791be88 media_entity_get_fwnode_pad -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd837d5f7 media_graph_walk_start -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe38049fa media_request_object_complete -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe538403d media_get_pad_index +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xef965236 vb2_plane_cookie +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xf9e3994d vb2_wait_for_all_buffers +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xfe05a8b1 vb2_thread_start +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0x39691332 vb2_dma_contig_set_max_seg_size +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0x3e949d59 vb2_dma_contig_memops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-sg 0x2d9c744f vb2_dma_sg_memops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-memops 0x85928af5 vb2_common_vm_ops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x0150cad4 vb2_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x0782028d vb2_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x080a14bd vb2_request_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x110a0aa1 vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x22ab45e5 vb2_create_bufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x288e62ab vb2_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x2ab3a156 vb2_queue_init_name +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x2d2e28b5 vb2_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x361bc6b5 vb2_queue_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x43240252 vb2_expbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x4cc9953a vb2_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x4da3dacc vb2_find_timestamp +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x6898ce58 vb2_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x6f29cb78 vb2_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x766af508 vb2_streamoff +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x86a6d3d5 vb2_ops_wait_finish +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x8a045ce8 vb2_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x8def7842 vb2_queue_init +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x8e24afe2 vb2_video_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x8fadf500 vb2_fop_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x8fe20736 vb2_fop_write +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x90db1518 vb2_request_validate +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x96b089a8 vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x98d35715 vb2_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xa768a15c vb2_queue_change_type +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xc035e724 vb2_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xc4fef3da vb2_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xd5d21077 vb2_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xd943e759 vb2_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xda372d90 vb2_fop_read +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xdf754674 _vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xe073653b vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xeb57fd68 vb2_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xf45d5ba9 vb2_ops_wait_prepare +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-vmalloc 0x9f93ba48 vb2_vmalloc_memops +EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0x1495d907 dvb_module_probe +EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0x67ac1937 dvb_module_release +EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0xa3d07b18 dvb_create_media_graph +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/as102_fe 0x36d7a345 as102_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24117 0x632423fe cx24117_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/gp8psk-fe 0xf6f0d906 gp8psk_fe_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mxl5xx 0x4bd83184 mxl5xx_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0910 0xfd26ae50 stv0910_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv6111 0xccfaacea stv6111_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0xbd66332f tda18271c2dd_attach +EXPORT_SYMBOL_GPL drivers/media/i2c/aptina-pll 0x1efe08c7 aptina_pll_calculate +EXPORT_SYMBOL_GPL drivers/media/i2c/ccs-pll 0xb96755a0 ccs_pll_calculate +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x1b015382 max9271_set_serial_link +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x1ddd14a1 max9271_set_high_threshold +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x331196dd max9271_clear_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x521c997a max9271_set_address +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x5280c9e2 max9271_verify_id +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x5711bac4 max9271_wake_up +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x9aae1391 max9271_enable_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xad5f1197 max9271_set_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xaf44660d max9271_configure_gmsl_link +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xb2bf05a7 max9271_set_deserializer_address +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xbe34de70 max9271_set_translation +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xca1affcc max9271_configure_i2c +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xdc2cd173 max9271_disable_gpios +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x05381f8e media_request_object_unbind +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x08b32035 media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x08dffd11 media_entity_get_fwnode_pad +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x0b20ff6d __media_device_usb_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x17da030c media_remove_intf_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x1f70119d media_entity_find_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x227fa5bd media_device_usb_allocate +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x229e60f7 __media_device_register +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x23772195 media_request_object_put +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x2381d56f media_device_unregister_entity_notify +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x238f2c18 media_remove_intf_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x28461d1c media_request_object_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x36e418ed media_request_object_find +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x3904ad02 media_device_unregister_entity +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x3a6f13e3 __media_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x3e9dd5c1 __media_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x3f6ff97c media_request_put +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x427bbb9b media_graph_walk_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x4bff9b09 media_request_object_bind +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x694887e7 __media_remove_intf_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x694ddba4 __media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x6e311f09 media_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x714365c0 media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7369a1ad __media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x77680526 media_device_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7adae398 media_graph_walk_cleanup +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7c9fc02b media_entity_pads_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7f3f1601 media_request_object_complete +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x879e7439 media_create_intf_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x8c57c53b media_graph_walk_next +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x8cd9a551 media_device_cleanup +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x8ffe1a0e media_device_unregister +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x949b83ff media_devnode_remove +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x951291ae media_graph_walk_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x98fd177d media_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x999b91e6 media_device_pci_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x9c49889e media_device_register_entity +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xab4a9ea4 media_create_pad_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xbdc864aa media_get_pad_index +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xbfdd0455 media_entity_remote_pad +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc89eb12f media_create_pad_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc8eea71d media_devnode_create +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xce15dc79 media_device_delete +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd5ab9c69 __media_remove_intf_link EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe5ceecd6 media_entity_enum_cleanup -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xeae9b610 media_create_pad_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xeb4003bb media_create_intf_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xeeb21e9e media_request_put -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf146b666 media_entity_setup_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf157797f media_request_object_find -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf2b27854 __media_pipeline_start -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf63bf0c5 media_remove_intf_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf650c9b4 media_entity_find_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf8de5f31 media_device_unregister -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xfb2e0fd4 __media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe6ab292e media_request_get_by_fd +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf11749a3 media_device_register_entity_notify EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xfc781c47 __media_entity_enum_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xfd07c51c media_request_object_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xfda49536 __media_device_register -EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0x076f87d1 cx88_setup_xc3028 -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x04cc8814 mantis_gpio_set_bits -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x15b03a2d mantis_ca_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x15e32a17 mantis_dma_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x343a6c98 mantis_uart_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x7f417d8d mantis_dma_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x93e55f1d mantis_i2c_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xb16b7362 mantis_frontend_power -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xb178bae9 mantis_input_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xb4264b40 mantis_input_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xb684df18 mantis_dvb_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xb8afe0e9 mantis_uart_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xb9563301 mantis_frontend_soft_reset -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xc4b65415 mantis_get_mac -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xdc268882 mantis_dvb_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xde2b945d mantis_pci_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xe00e2988 mantis_pci_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xe36d6f1b mantis_ca_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xeb1db22d mantis_stream_control -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xf9470887 mantis_i2c_init -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x0d97c4ef saa7134_ts_stop_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x146aaf1e saa7134_ts_buffer_prepare -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x36514319 saa7134_ts_buffer_init -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x457bd9ca saa7134_s_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x4ccb83af saa7134_querystd -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x809bfdb8 saa7134_s_frequency -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x89b23b10 saa7134_enum_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x8fabebb7 saa7134_ts_qops -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xa657e1aa saa7134_stop_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xbf15b37e saa7134_s_tuner -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xc0645aab saa7134_vb2_buffer_queue -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xd7d0569a saa7134_g_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xd8cd9bc7 saa7134_ts_queue_setup -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xda15d117 saa7134_querycap -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xdb73ae4f saa7134_s_std -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xdd4893b6 saa7134_ts_start_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xdf02ed80 saa7134_g_frequency -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xe2347baf saa7134_g_tuner -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xe7cfa6c1 saa7134_g_std -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x3531a251 ttpci_budget_debiwrite -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x44e06ebc ttpci_budget_init +EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0x407e7803 cx88_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x10aa0559 mantis_uart_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x1b996df9 mantis_pci_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x1f159c7c mantis_dvb_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x1f4361a6 mantis_stream_control +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x3f3c0df3 mantis_dma_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x47175b87 mantis_frontend_power +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x541ad7b6 mantis_ca_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x7897dd4a mantis_i2c_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xa2aee0bd mantis_get_mac +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xa75665b0 mantis_uart_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xa8c59378 mantis_i2c_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xb8af3450 mantis_pci_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xc7a00764 mantis_ca_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xcf47d24e mantis_dvb_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xda09e0c4 mantis_frontend_soft_reset +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xde5e3911 mantis_gpio_set_bits +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xe8913d92 mantis_input_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xed3d98ca mantis_input_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xef6e43c1 mantis_dma_exit +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x05824f34 saa7134_g_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x0f762e17 saa7134_s_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x2586f906 saa7134_g_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x37bdc933 saa7134_ts_qops +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x4c0ca9b4 saa7134_s_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x52618dea saa7134_querystd +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x53171c1a saa7134_ts_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x762e058d saa7134_enum_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x76c5dd5d saa7134_s_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x8792aa2a saa7134_ts_buffer_prepare +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x92c7e017 saa7134_ts_start_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x978bb3ef saa7134_vb2_buffer_queue +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xaf6f1d4f saa7134_ts_queue_setup +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xb6fd0829 saa7134_querycap +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xd0ecd6c7 saa7134_ts_buffer_init +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xe73278eb saa7134_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xf7ac1ae8 saa7134_s_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xfc18d711 saa7134_g_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xfd762025 saa7134_g_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x24af9fad ttpci_budget_init +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x50ea5a3a ttpci_budget_irq10_handler +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x628e0c27 ttpci_budget_debiread EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x7948c222 budget_debug -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x79e221ff ttpci_budget_debiread -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x84595d2e ttpci_budget_deinit -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xafbb4b5e ttpci_budget_irq10_handler -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xb137ecc6 ttpci_budget_set_video_port -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xe22719d0 ttpci_budget_init_hooks -EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0x2c8e30f2 mccic_shutdown -EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0x2fc3e543 mccic_register -EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0x3eccf43c mccic_resume -EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0x5e7a1e58 mccic_irq -EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0x826d93f4 mccic_suspend -EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x14a0e7e3 vpu_load_firmware -EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x283f741c vpu_get_plat_device -EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x498e7d27 vpu_ipi_send -EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x76669f0b vpu_ipi_register -EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x9e447aa6 vpu_mapping_dm_addr -EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0xadbece0e vpu_wdt_reg_handler -EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0xc6f8e746 vpu_get_venc_hw_capa -EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0xcd0a123a vpu_get_vdec_hw_capa +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x894573f3 ttpci_budget_debiwrite +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xa30b14d6 ttpci_budget_init_hooks +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xa7226271 ttpci_budget_deinit +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xc96d4830 ttpci_budget_set_video_port +EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0x17fa94ad mccic_resume +EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0x26d953fe mccic_irq +EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0x5317cf76 mccic_shutdown +EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0x7a609036 mccic_register +EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0xa4b61518 mccic_suspend +EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x51ad3c69 vpu_load_firmware +EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x5c66711d vpu_ipi_send +EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x643ca682 vpu_ipi_register +EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x8996a503 vpu_get_vdec_hw_capa +EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0xa22540d1 vpu_wdt_reg_handler +EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0xb0445a41 vpu_mapping_dm_addr +EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0xd455c195 vpu_get_plat_device +EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0xf3bbdd56 vpu_get_venc_hw_capa EXPORT_SYMBOL_GPL drivers/media/platform/omap/omap-vout 0x085d8e48 omap_vout_try_window EXPORT_SYMBOL_GPL drivers/media/platform/omap/omap-vout 0x0a59c11d omap_vout_new_format EXPORT_SYMBOL_GPL drivers/media/platform/omap/omap-vout 0x0d615dfe omap_vout_default_crop @@ -13416,128 +13455,128 @@ EXPORT_SYMBOL_GPL drivers/media/platform/omap/omap-vout 0x6e8a3074 omap_vout_new_crop EXPORT_SYMBOL_GPL drivers/media/platform/rcar-fcp 0x3d858696 rcar_fcp_put EXPORT_SYMBOL_GPL drivers/media/platform/rcar-fcp 0x4ad5d888 rcar_fcp_enable +EXPORT_SYMBOL_GPL drivers/media/platform/rcar-fcp 0x5b74fd5f rcar_fcp_get_device EXPORT_SYMBOL_GPL drivers/media/platform/rcar-fcp 0x5fe6f6e8 rcar_fcp_disable EXPORT_SYMBOL_GPL drivers/media/platform/rcar-fcp 0x9877c29f rcar_fcp_get -EXPORT_SYMBOL_GPL drivers/media/platform/rcar-fcp 0x988dbc97 rcar_fcp_get_device -EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0x57a8f13c vsp1_du_atomic_begin -EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0x8620134d vsp1_du_setup_lif -EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0x97ff36c3 vsp1_du_init -EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0x984931b4 vsp1_du_atomic_update -EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0xab333726 vsp1_du_map_sg -EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0xb8159fd5 vsp1_du_atomic_flush -EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0xc0bf76b4 vsp1_du_unmap_sg -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x164408e4 xvip_of_get_format +EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0x1949ed7d vsp1_du_atomic_update +EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0x53e2442f vsp1_du_atomic_flush +EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0x70dbb18f vsp1_du_unmap_sg +EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0x7f519184 vsp1_du_setup_lif +EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0xb7eec90b vsp1_du_map_sg +EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0xf4678810 vsp1_du_init +EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0xf6c3367f vsp1_du_atomic_begin +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x00c6cf8f xvip_init_resources +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x15ef006c xvip_cleanup_resources +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x1a67fd19 xvip_clr_and_set EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x43738fab xvip_set_format_size -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x46a5510b xvip_cleanup_resources -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x77711ed7 xvip_enum_mbus_code +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xa05adaf2 xvip_enum_frame_size EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xb67940fb xvip_get_format_by_fourcc -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xc6c00804 xvip_clr_and_set -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xd2747ff4 xvip_clr_or_set +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xc9bcdb2b xvip_of_get_format +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xd644adb8 xvip_enum_mbus_code EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xe08e6063 xvip_get_format_by_code -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xf30536d5 xvip_init_resources -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xf4782486 xvip_enum_frame_size -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0x0d76ee3c xvtc_of_get +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xeab7754d xvip_clr_or_set EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0x3c16a6b1 xvtc_generator_stop EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0x47d7900b xvtc_generator_start +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0x5bfb3747 xvtc_of_get EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0xa8a0f912 xvtc_put -EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x0e36ce16 radio_tea5777_init -EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x8c09298d radio_tea5777_exit -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x1b12e822 si470x_viddev_template -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x2a65f828 si470x_set_freq -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x435a42ac si470x_stop -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x8be5b1ac si470x_start -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xd5014e84 si470x_ctrl_ops -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x03ffb1c3 ir_raw_event_handle -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x0654346c rc_register_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x167d3ac8 rc_keydown_notimeout -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x177f9c54 rc_allocate_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x1b0175a0 devm_rc_register_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x1c43e927 rc_keyup -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x23eef3fc rc_g_keycode_from_table +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x91d9ac81 radio_tea5777_init +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0xdb46a653 radio_tea5777_exit +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x5a310c4c si470x_ctrl_ops +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x831f93a6 si470x_set_freq +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x8b5daeed si470x_viddev_template +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xb2383902 si470x_start +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xdc64575a si470x_stop +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x0a87efa1 rc_g_keycode_from_table +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x150877a5 rc_repeat +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x17f86c32 devm_rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x264c74bf ir_raw_event_store_with_timeout EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x28af3c3f rc_map_unregister -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x42b0e922 lirc_scancode_event -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x4cd9a9a0 ir_raw_event_store -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x4d7337ac rc_unregister_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x71281fce ir_raw_event_store_with_timeout -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x7cbae79b ir_raw_event_set_idle -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x9c0f37c2 rc_free_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xa2f6f701 rc_repeat -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xacd9f1c2 rc_keydown -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xc02afdcb devm_rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x4242d21b ir_raw_event_set_idle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x49f1e2fa rc_keydown +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x4a8121a3 rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x5dbda80d rc_keyup +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x654f70ff ir_raw_event_store_edge +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x79a82aaf rc_free_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x90ac4950 rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x99019de3 rc_keydown_notimeout +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xa92be444 ir_raw_event_store_with_filter +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb5a62af6 rc_unregister_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xbc09c60b ir_raw_event_handle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xdbb62533 devm_rc_allocate_device EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xe1bc9681 rc_map_get -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xe24ae64d ir_raw_event_store_edge EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xe7648541 rc_map_register -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xf8c74297 ir_raw_event_store_with_filter -EXPORT_SYMBOL_GPL drivers/media/tuners/mt2063 0x947e33fb mt2063_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/mt20xx 0x74e1b5ee microtune_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5007t 0x94e84b55 mxl5007t_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/r820t 0xe705e506 r820t_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda18271 0xbcbdda97 tda18271_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda827x 0x43674e9b tda827x_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x562401aa tda829x_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0xc3b1643e tda829x_probe -EXPORT_SYMBOL_GPL drivers/media/tuners/tda9887 0xd93e3194 tda9887_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x70632109 tea5761_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x7d41fef8 tea5761_autodetection -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x1178b8d1 tea5767_autodetection -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0xa02c6b9b tea5767_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tuner-simple 0xab613d3e simple_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xf9b7a696 ir_raw_event_store +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xfc4cccac lirc_scancode_event +EXPORT_SYMBOL_GPL drivers/media/tuners/mt2063 0x5390ca50 mt2063_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mt20xx 0x7df686d4 microtune_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5007t 0xb4e2f0f5 mxl5007t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/r820t 0xbf23c04e r820t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda18271 0xfb6d7096 tda18271_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda827x 0x9980ae8d tda827x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x13266513 tda829x_probe +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x7dd7bff8 tda829x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda9887 0x069d0282 tda9887_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0xafc0121f tea5761_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0xfd2366fb tea5761_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x01deeb6e tea5767_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x0eae193a tea5767_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tuner-simple 0x76a6471e simple_tuner_attach EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x017ea7c7 cx231xx_tuner_callback -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x06cd6c04 cx231xx_init_bulk -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x0df63b61 is_fw_load -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x3495ee2e cx231xx_set_mode -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x3aaf527e cx231xx_init_vbi_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x4201dcf1 cx231xx_uninit_bulk -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x46c324b1 cx231xx_demod_reset -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x48680753 cx231xx_dev_init -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x4c5ee58c cx231xx_get_i2c_adap -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x55e10be6 cx231xx_enable_i2c_port_3 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x596efb22 cx231xx_send_gpio_cmd -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x5d7c51b6 cx231xx_enable656 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x60703870 cx231xx_dev_uninit -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x8118039d cx231xx_uninit_vbi_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x998bd94f cx231xx_send_usb_command -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xa790a508 cx231xx_unmute_audio -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xbe5ad3a4 cx231xx_disable656 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xd42a7477 cx231xx_uninit_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xe820fb32 cx231xx_capture_start -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xf9818dd8 cx231xx_set_alt_setting -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xff63ed6f cx231xx_init_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0x5305fbd4 mxl111sf_demod_attach -EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0xf200aca9 mxl111sf_tuner_attach -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x03aae36d em28xx_write_reg -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x086be9d9 em28xx_read_reg -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x205920ce em28xx_read_ac97 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x261c30e5 em28xx_stop_urbs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x3598fbfe em28xx_init_camera -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x4471fd01 em28xx_find_led -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x5c4ca43a em28xx_toggle_reg_bits -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x691ad5d3 em28xx_audio_setup -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x6e03715a em28xx_audio_analog_set +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x0226bd71 cx231xx_disable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x1b2cd86a cx231xx_send_usb_command +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x21592f01 cx231xx_init_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x4e8bdb3d cx231xx_uninit_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x4fb76f9c cx231xx_dev_uninit +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x63933da3 cx231xx_capture_start +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x6f037fde cx231xx_uninit_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x703f200b is_fw_load +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x714383fb cx231xx_enable_i2c_port_3 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x82b86c7f cx231xx_enable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x984397ec cx231xx_demod_reset +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x9d97c840 cx231xx_init_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xa1ffc727 cx231xx_uninit_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xa25bb48c cx231xx_set_alt_setting +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xaa6ad2ef cx231xx_get_i2c_adap +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xbb26663c cx231xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xca66c086 cx231xx_unmute_audio +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xd8bd55a8 cx231xx_init_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xd8dc94c1 cx231xx_dev_init +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xe88be55a cx231xx_send_gpio_cmd +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0x21e2deca mxl111sf_demod_attach +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0x49be7bf5 mxl111sf_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x2412aba8 em28xx_gpio_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x28c92ac5 em28xx_init_camera +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x4a9b0f29 em28xx_write_regs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x4d4461c3 em28xx_toggle_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x51dd2493 em28xx_uninit_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x652777a9 em28xx_write_ac97 EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x721f7cc7 em28xx_free_device -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x752bafc0 em28xx_set_mode -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7f4c8477 em28xx_write_regs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x74e35ed4 em28xx_alloc_urbs EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7fc8652c em28xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x81c468ad em28xx_audio_setup +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x8a54948c em28xx_setup_xc3028 EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x921d7c65 em28xx_boards -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x98fcd4ff em28xx_setup_xc3028 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xa524538a em28xx_alloc_urbs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xab96bca0 em28xx_init_usb_xfer -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xccb22bce em28xx_gpio_set -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xdec49006 em28xx_write_reg_bits -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xe62c92c9 em28xx_uninit_usb_xfer -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xeab70d4c em28xx_write_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x9c8f2539 em28xx_write_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xc890400f em28xx_write_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xd0919733 em28xx_find_led +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xd68903fd em28xx_read_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xd8bcca88 em28xx_stop_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xd97b7c7a em28xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xdaba6877 em28xx_read_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xeffcf617 em28xx_audio_analog_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xfa488806 em28xx_init_usb_xfer EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x2309a6d6 tm6000_xc5000_callback -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x37652d8f tm6000_set_reg_mask EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x89b611dd tm6000_debug -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x99805905 tm6000_get_reg -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xc7116ce7 tm6000_set_audio_bitrate -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xd587c469 tm6000_set_reg +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x972fdefe tm6000_get_reg +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xa7d01fd7 tm6000_set_reg_mask +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xb6790068 tm6000_set_audio_bitrate +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xc07b2d79 tm6000_set_reg EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xdff8e89d tm6000_tuner_callback -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x06d2d11c __v4l2_async_notifier_add_fwnode_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x13b650ac v4l2_async_notifier_cleanup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x4d1988f9 __v4l2_async_notifier_add_fwnode_remote_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x87b9546e __v4l2_async_notifier_add_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0xe97d5676 __v4l2_async_notifier_add_i2c_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x18cad41c __v4l2_async_notifier_add_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x2ac205a4 v4l2_async_notifier_cleanup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x552e38a3 __v4l2_async_notifier_add_fwnode_remote_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0xc4fb5653 __v4l2_async_notifier_add_i2c_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0xca614cb5 __v4l2_async_notifier_add_fwnode_subdev EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x01612c0b v4l2_detect_gtf EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x08402862 v4l2_print_dv_timings EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x0958448b v4l2_set_edid_phys_addr @@ -13555,20 +13594,20 @@ EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xef15cc44 v4l2_hdmi_rx_colorimetry 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 0x6878a37e v4l2_flash_indicator_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0xb3d1cd44 v4l2_flash_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0xcb60afcc v4l2_flash_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x2914e1c5 v4l2_fwnode_endpoint_alloc_parse -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x59f5e101 v4l2_fwnode_endpoint_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x57fdcd2d v4l2_flash_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x85fb7584 v4l2_flash_indicator_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x8d4ae1e1 v4l2_flash_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x07c1bf03 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 0x618b9cff v4l2_fwnode_put_link -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x62a60cad v4l2_fwnode_endpoint_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x6e52bdbf v4l2_fwnode_connector_parse -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x9a1ad635 v4l2_fwnode_device_parse -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xa9cd3d11 v4l2_fwnode_parse_link -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xb2ec3a32 v4l2_async_notifier_parse_fwnode_endpoints -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xb7c37e0c v4l2_fwnode_connector_add_link -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xf7f9720c v4l2_async_register_subdev_sensor +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x79d9a9bb v4l2_fwnode_connector_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x7dd62189 v4l2_fwnode_endpoint_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x82b2913a v4l2_fwnode_put_link +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x993c24f7 v4l2_async_notifier_parse_fwnode_endpoints +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xaff5724d v4l2_fwnode_device_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xc7833404 v4l2_fwnode_parse_link +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xd9c75e17 v4l2_async_register_subdev_sensor +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xe9f225df v4l2_fwnode_endpoint_alloc_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xf54721b9 v4l2_fwnode_connector_add_link EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-h264 0x2c620a2d v4l2_h264_build_p_ref_list EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-h264 0x4b224860 v4l2_h264_init_reflist_builder EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-h264 0x5150f937 v4l2_h264_build_b_ref_lists @@ -13577,376 +13616,376 @@ EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-jpeg 0xa24bdf6d v4l2_jpeg_parse_header EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-jpeg 0xd8c706cb v4l2_jpeg_parse_frame_header EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-jpeg 0xdc58b7d5 v4l2_jpeg_parse_quantization_tables -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x21909bb0 v4l2_m2m_ioctl_try_decoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x251eb071 v4l2_m2m_ioctl_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x2a9e2908 v4l2_m2m_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3be63ab9 v4l2_m2m_ioctl_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3f7317a4 v4l2_m2m_ioctl_stateless_try_decoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x451db916 v4l2_m2m_buf_remove_by_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4527420e v4l2_m2m_last_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x477bba30 v4l2_m2m_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4802c80f v4l2_m2m_try_schedule -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4964abe2 v4l2_m2m_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x49c3ec86 v4l2_m2m_fop_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x55f20547 v4l2_m2m_buf_remove_by_idx -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5674ea59 v4l2_m2m_ioctl_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x57edd9fd v4l2_m2m_last_buffer_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5b21cf6b v4l2_m2m_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5cbe699f v4l2_m2m_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6560776d v4l2_m2m_fop_mmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x66b48788 v4l2_m2m_buf_copy_metadata -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6d796416 v4l2_m2m_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x03f689b6 v4l2_m2m_try_schedule +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x137dec7f v4l2_m2m_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x15141143 v4l2_m2m_last_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x160201b9 v4l2_m2m_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x260e33af v4l2_m2m_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x2b500203 v4l2_m2m_buf_remove +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x2f9226bb v4l2_m2m_buf_remove_by_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3c23841a v4l2_m2m_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4226ff00 v4l2_m2m_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4384d163 v4l2_m2m_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x598b2ef0 v4l2_m2m_last_buffer_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5fb34313 v4l2_m2m_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x61aca52b v4l2_m2m_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x681d7d6f v4l2_m2m_encoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x68c4161b v4l2_m2m_register_media_controller +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7271a1ba v4l2_m2m_request_queue EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x730f2eae v4l2_m2m_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x774d782e v4l2_m2m_update_start_streaming_state -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7fa65ee5 v4l2_m2m_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8257f219 v4l2_m2m_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8bd35c23 v4l2_m2m_ioctl_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x971f8880 v4l2_m2m_ioctl_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x99127a9c v4l2_m2m_ioctl_encoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x99a9dd53 v4l2_m2m_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x9ce56336 v4l2_m2m_buf_remove -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x9ce5e626 v4l2_m2m_ioctl_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa2e20028 v4l2_m2m_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa6f77d65 v4l2_m2m_request_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa774e0bd v4l2_m2m_update_stop_streaming_state -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa79e1d3c v4l2_m2m_ioctl_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xac3b2d66 v4l2_m2m_ioctl_stateless_decoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xac456f5e v4l2_m2m_decoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb0f89631 v4l2_m2m_encoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb520f9bc v4l2_m2m_ioctl_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xbe197b2f v4l2_m2m_register_media_controller -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc52abce0 v4l2_m2m_ctx_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7bf47368 v4l2_m2m_update_stop_streaming_state +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7c316c5d v4l2_m2m_ctx_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7dd8a542 v4l2_m2m_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8610d0da v4l2_m2m_ioctl_try_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x86579977 v4l2_m2m_buf_copy_metadata +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8e091f5e v4l2_m2m_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x9095523b v4l2_m2m_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x9b05a3b1 v4l2_m2m_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x9c48b4aa v4l2_m2m_buf_remove_by_idx +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xaaa93aa7 v4l2_m2m_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xaea0f1df v4l2_m2m_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb0bbd6a5 v4l2_m2m_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb571db56 v4l2_m2m_ioctl_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb8785bbe v4l2_m2m_update_start_streaming_state +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb8f6188c v4l2_m2m_ctx_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb9235800 v4l2_m2m_next_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xbccdf551 v4l2_m2m_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xbeceb7db v4l2_m2m_ioctl_encoder_cmd EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc6fca5ad v4l2_m2m_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe218ed65 v4l2_m2m_ctx_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe67289f8 v4l2_m2m_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe9100b4d v4l2_m2m_next_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe9b374c0 v4l2_m2m_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xca2b65d5 v4l2_m2m_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xccd8b9b2 v4l2_m2m_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd69e5c04 v4l2_m2m_fop_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd9a22a2b v4l2_m2m_ioctl_stateless_try_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xeadf89b9 v4l2_m2m_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xefba426b v4l2_m2m_ioctl_reqbufs EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf13ff84d v4l2_m2m_unregister_media_controller -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf3ee30e8 v4l2_m2m_ioctl_decoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf5b69317 v4l2_m2m_ioctl_try_encoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x0d1b9be0 videobuf_queue_cancel -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x1637a9c1 videobuf_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x2735b06c videobuf_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x2906c3bb videobuf_read_start -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x2fcee6e1 videobuf_queue_is_busy -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x305d1e21 videobuf_read_stream -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x3e2d5f80 videobuf_iolock -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x47345536 videobuf_next_field -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x4880290a videobuf_alloc_vb -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x579c5d76 videobuf_read_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x5a7fc57a videobuf_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x71481904 videobuf_read_one -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x7318b3ee videobuf_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x79f9abe9 videobuf_waiton -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x85dd3865 videobuf_mmap_setup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x934cb5ca videobuf_queue_to_vaddr -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x9dd9b691 videobuf_poll_stream -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xa2ee155c videobuf_mmap_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xb1f13796 videobuf_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xb829e373 __videobuf_mmap_setup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xda8d2949 videobuf_mmap_mapper -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xdbc55903 videobuf_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xe546d3fc videobuf_queue_core_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xff12d434 videobuf_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x2a3832b3 videobuf_to_dma -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x57da98ac videobuf_dma_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf49b3dd9 v4l2_m2m_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf6b40952 v4l2_m2m_ioctl_try_encoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf8158385 v4l2_m2m_ioctl_stateless_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xfe8176fa v4l2_m2m_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x05157dd9 videobuf_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x05ebcc7f videobuf_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x1139654d videobuf_queue_to_vaddr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x21708d0e videobuf_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x288e011f videobuf_read_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x4bfbe253 videobuf_poll_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x542a5cf0 videobuf_read_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x60a79a07 __videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x78947abe videobuf_read_one +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x8b63cd79 videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x8e4dcf72 videobuf_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x8ff136ef videobuf_mmap_mapper +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x94b7e0b6 videobuf_next_field +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x9d8715e3 videobuf_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x9eb38720 videobuf_waiton +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xa4e81387 videobuf_queue_is_busy +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xac595b96 videobuf_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd22ade15 videobuf_queue_core_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd5fcf6a9 videobuf_mmap_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xdc045314 videobuf_read_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xdd06c6b4 videobuf_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xe1e4a1be videobuf_alloc_vb +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xee34c16d videobuf_queue_cancel +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xf7e7b33c videobuf_iolock +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x3297d1f7 videobuf_to_dma +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x6b78bb8f videobuf_dma_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x7f8bf170 videobuf_dma_unmap EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xa825c75b videobuf_sg_alloc -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xbccdc77a videobuf_queue_sg_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xc4f19047 videobuf_dma_unmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x588d62dd videobuf_queue_vmalloc_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0xaaa253da videobuf_vmalloc_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0xc3a040e3 videobuf_to_vmalloc -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x021bcd93 v4l2_event_subdev_unsubscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x02243931 v4l2_pipeline_link_notify -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x03e16a8a v4l2_subdev_notify_event -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x09cc9c27 v4l2_ctrl_request_hdl_find -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0ad2186a v4l2_i2c_subdev_set_name -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0aef61f6 v4l2_create_fwnode_links_to_pad -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0b88f13d v4l2_src_change_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xe7321aa0 videobuf_queue_sg_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x9e83bf3d videobuf_to_vmalloc +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0xa4b5d7e5 videobuf_queue_vmalloc_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0xd60a006a videobuf_vmalloc_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x074e776e v4l2_ctrl_request_hdl_ctrl_find +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0a4c2aa8 v4l2_get_link_freq +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0d19f3ed v4l2_pipeline_pm_get +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x10fe63cd v4l2_event_dequeue EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x11f3044c __SCK__tp_func_vb2_v4l2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x12c06c84 v4l2_get_link_freq -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x19a513bd __traceiter_vb2_v4l2_buf_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1c28a5f6 __traceiter_vb2_v4l2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x25102eb0 v4l2_subdev_alloc_state -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x25140b5c v4l2_pipeline_pm_put +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x129f3e6f v4l2_i2c_subdev_addr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x161a3509 v4l2_event_queue_fh +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1b3d7711 v4l2_subdev_link_validate_default +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1db2a6bb v4l2_subdev_notify_event +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1f7a0a4b v4l2_create_fwnode_links EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2ae0877b __SCK__tp_func_vb2_v4l2_buf_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2cbedba2 v4l2_fh_exit +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2b3c39a3 v4l2_create_fwnode_links_to_pad +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2d4a3ff7 v4l2_event_unsubscribe_all +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2e3908a6 v4l2_mc_create_media_graph EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2ed9acd3 __tracepoint_vb2_v4l2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3f475bd2 v4l2_s_parm_cap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x40e9fa22 v4l2_spi_subdev_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x42070e7b v4l2_event_unsubscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x49234e89 v4l2_event_queue_fh -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4a731e79 v4l_vb2q_enable_media_source -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4c4fda1d v4l2_device_set_name -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4efcba4a v4l2_device_register -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x53d33ce5 v4l2_event_dequeue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x53fd1f4e v4l2_pipeline_pm_get -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5d99dd81 v4l2_create_fwnode_links -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x62a8c945 v4l2_device_unregister -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6413bce2 v4l2_fh_del +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2f8a4f7c v4l2_event_subdev_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3432c81d v4l2_fh_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3f2642fe v4l2_i2c_subdev_set_name +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4abea361 v4l2_i2c_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5923524a v4l_disable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5e2f277a __traceiter_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6258bd81 v4l2_src_change_event_subdev_subscribe EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x659837ad __tracepoint_vb2_v4l2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x682d23fb v4l2_i2c_subdev_addr -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x687f0c07 v4l2_fh_add -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6a1f483d v4l2_fh_open +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x664c4f06 v4l2_ctrl_request_hdl_find 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 0x6f5ed23a __tracepoint_vb2_v4l2_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x71b0ca29 v4l2_src_change_event_subdev_subscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x78f2c5d2 v4l2_device_put -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x79127f25 v4l2_subdev_link_validate -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x83c06311 v4l2_device_register_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x96e33dba v4l2_spi_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x71962630 v4l2_fh_open +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x741e71c9 __v4l2_device_register_subdev_nodes +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x75cbd33a v4l2_device_unregister_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x767bde1d v4l2_event_pending +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x77cef549 __v4l2_ctrl_handler_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x814fb897 v4l2_pipeline_link_notify +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8313fb5a v4l_enable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x88f21cbb v4l2_fh_add +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8b96a13b v4l2_fh_is_singular +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x972cb66a v4l2_fh_del +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9cba9c0b v4l2_device_register EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9fef35ac v4l2_apply_frmsize_constraints -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa45543b7 v4l2_subdev_get_fwnode_pad_1_to_1 -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xac27cc62 v4l2_i2c_subdev_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xae96350e v4l2_event_unsubscribe_all +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa9563e50 v4l2_spi_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xaed22a7c v4l2_s_parm_cap EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb13d41a0 v4l2_subdev_free_state -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb3bdd39a v4l2_mc_create_media_graph -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb4afacc8 __traceiter_vb2_v4l2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb6eee637 v4l_disable_media_source -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc01ee85b v4l2_device_unregister_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc754e237 v4l2_g_parm_cap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc7eb6271 v4l2_fh_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb9839ef2 v4l2_fh_exit +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb9ca50cd v4l2_subdev_alloc_state +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbbe8cd22 __traceiter_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbe077365 __traceiter_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc03990aa v4l_vb2q_enable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc272d4ab v4l2_device_set_name +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc30b3e5d v4l2_device_put +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc7a9ba50 v4l2_src_change_event_subscribe EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcc501597 v4l2_fill_pixfmt -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcc668203 v4l2_event_wake_all -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd5e4a97e __v4l2_ctrl_handler_setup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xdb8e6c9f v4l2_i2c_new_subdev_board -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe00602fd v4l2_subdev_link_validate_default -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe11da083 v4l2_fh_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcd53a6d2 v4l2_i2c_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd3742494 v4l2_device_register_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd6a62bad v4l2_i2c_new_subdev_board +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xdc29f6a3 __traceiter_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe1352a91 v4l2_g_parm_cap EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe5a33113 __SCK__tp_func_vb2_v4l2_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe883a50c v4l_enable_media_source -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xeb3602ad v4l2_ctrl_request_hdl_ctrl_find -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xeb964e9f v4l2_event_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xebc5985e v4l2_fh_is_singular -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xece5a11d v4l2_i2c_new_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xed8eccc2 __traceiter_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe600efc1 v4l2_event_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xeb9aa71f v4l2_device_disconnect EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf001fcf8 __tracepoint_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf0295f6e v4l2_pipeline_pm_put +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf1447ab0 v4l2_subdev_get_fwnode_pad_1_to_1 EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf2a353ac v4l2_i2c_tuner_addrs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf4000457 v4l2_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf31c2ab8 v4l2_subdev_link_validate +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf36be0d0 v4l2_spi_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf4d84cd0 v4l2_device_unregister EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf5ef842e v4l_bound_align_image -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf7da2f04 v4l2_event_pending -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfd79198c v4l2_device_disconnect -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xff0ff2e9 __v4l2_device_register_subdev_nodes +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf7428ea2 v4l2_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf9c54a68 v4l2_fh_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfb76b452 v4l2_event_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfc802ff4 v4l2_event_wake_all EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xff76573f __v4l2_find_nearest_size -EXPORT_SYMBOL_GPL drivers/memory/mtk-smi 0x5d853f1e mtk_smi_larb_get -EXPORT_SYMBOL_GPL drivers/memory/mtk-smi 0x89bb0494 mtk_smi_larb_put +EXPORT_SYMBOL_GPL drivers/memory/mtk-smi 0x0d95725a mtk_smi_larb_put +EXPORT_SYMBOL_GPL drivers/memory/mtk-smi 0xa97789a6 mtk_smi_larb_get EXPORT_SYMBOL_GPL drivers/memory/ti-emif-sram 0x49a8a623 ti_emif_get_mem_type EXPORT_SYMBOL_GPL drivers/memory/ti-emif-sram 0xbcf322c5 ti_emif_copy_pm_function_table -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x358438d9 pm80x_pm_ops -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x50b17036 pm80x_init -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xbba62dec pm80x_regmap_config +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x2b4fc59a pm80x_pm_ops EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xd99fd720 pm80x_deinit -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x088a20e1 wm8997_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x095903a1 arizona_clk32k_disable -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x196436fc arizona_dev_exit -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x2ffaf5d4 wm8998_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x3c670db0 arizona_free_irq +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xe2e90cf4 pm80x_regmap_config +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xf4932887 pm80x_init +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x0b9486a4 wm5102_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x188becb0 cs47l24_patch +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x39f9a2c9 arizona_free_irq EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x3dc526a9 arizona_of_match -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x3e082320 wm5102_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x3e393bf3 cs47l24_patch EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x4048fbbc wm8997_aod -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x40c38f4a arizona_dev_init +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x48ac47e8 wm5102_spi_regmap EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x4c087981 wm5110_aod -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x7d30e26c wm5102_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x8063b651 wm5110_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x825a3326 arizona_pm_ops -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x9443cfa3 wm5110_patch -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x96a35ea3 arizona_clk32k_enable +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x54825f79 cs47l24_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x56553e23 arizona_clk32k_disable +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x595e911c wm8998_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x60da9197 arizona_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x61ac48f9 wm8997_patch +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x6b4c78c4 arizona_clk32k_enable +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x76f7933b arizona_set_irq_wake +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x7e2e4429 wm8997_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x8fd56f53 wm5110_patch +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xa2311baa arizona_dev_init +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xa4e7caed arizona_dev_exit EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xa6b70564 wm8997_irq EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xa727bd3b cs47l24_irq EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xaaf78759 wm5110_irq -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xc14bb19f cs47l24_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xc35b771d wm5110_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xc386d2c9 arizona_request_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xb5ff13d5 wm5110_spi_regmap EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xc81b43ab wm5110_revd_irq -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xcae537bb wm8997_patch -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xe0faccb3 arizona_set_irq_wake -EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0x1e865268 atc260x_device_probe -EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0x72735fda atc260x_match_device -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x3f8666eb da9150_write_qif -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x4f12dc63 da9150_set_bits -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x75ce0302 da9150_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x76efab56 da9150_bulk_read -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x803224f8 da9150_bulk_write -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xb420dadb da9150_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xf43dbc50 da9150_read_qif +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xcfe73c1c arizona_request_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xf6c7d299 wm5110_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0x531d044d atc260x_match_device +EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0x7b9eabad atc260x_device_probe +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x0b3099a0 da9150_bulk_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x0d3a5b58 da9150_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x379bd859 da9150_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x7bc005f4 da9150_write_qif +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x96e03fed da9150_read_qif +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xdab3d1f3 da9150_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xf916ae1e da9150_bulk_read EXPORT_SYMBOL_GPL drivers/mfd/gateworks-gsc 0xa142a524 gsc_read EXPORT_SYMBOL_GPL drivers/mfd/gateworks-gsc 0xb7abd1c4 gsc_write EXPORT_SYMBOL_GPL drivers/mfd/iqs62x 0xa436f4de iqs62x_events -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x1720c27b kempld_read32 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x293fa0ab kempld_release_mutex -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x7173c8f6 kempld_read16 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x79fb7cd4 kempld_read8 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x8e78a092 kempld_get_mutex -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xe7150e39 kempld_write16 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xee0fca1f kempld_write8 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xf3c52605 kempld_write32 -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x518632ef lm3533_write -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xc7013aa5 lm3533_read -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xe7700546 lm3533_update -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x00266edd lm3533_ctrlbank_set_max_current -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x4cfabb50 lm3533_ctrlbank_enable -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x68ba20e9 lm3533_ctrlbank_set_brightness -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x6c0823da lm3533_ctrlbank_get_brightness -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x7204ce6a lm3533_ctrlbank_get_pwm -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xa826d40e lm3533_ctrlbank_disable -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xe279768f lm3533_ctrlbank_set_pwm -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x7f28643c lp3943_write_byte -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xf513b4de lp3943_update_bits -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xfdb8ee5c lp3943_read_byte -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x04e979ed cs47l35_patch +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x23f98ba8 kempld_read8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x374a8e91 kempld_read16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x6326e41b kempld_write8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x9191b583 kempld_read32 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xc9b30fc6 kempld_write16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xe50513fa kempld_get_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xf48c205f kempld_release_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xfa9dfadd kempld_write32 +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x1cf3692e lm3533_write +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x34960713 lm3533_update +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xc7fedd43 lm3533_read +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x192db044 lm3533_ctrlbank_set_max_current +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x1ac686bb lm3533_ctrlbank_disable +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x2b94a855 lm3533_ctrlbank_get_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x484a918a lm3533_ctrlbank_set_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xa08ab76a lm3533_ctrlbank_get_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xdc2551d4 lm3533_ctrlbank_set_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xe1420491 lm3533_ctrlbank_enable +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x0138642e lp3943_update_bits +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x41548e2e lp3943_write_byte +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x9ec740df lp3943_read_byte +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x012c9972 cs47l15_patch EXPORT_SYMBOL_GPL drivers/mfd/madera 0x0f379262 madera_of_match -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x0fc14cbb cs47l85_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x0fcc90fb cs47l85_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x160ccc11 cs47l90_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x17143b0b cs47l90_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x1719e74b cs47l90_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x209520f6 cs47l92_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x2098fcb6 cs47l92_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x3db3d7c3 cs47l35_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x3dbe0b83 cs47l35_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x4cf451b7 cs47l85_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x4cf98df7 cs47l85_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x54212607 cs47l90_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x542cfa47 cs47l90_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x63a03dfa cs47l92_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x63ade1ba cs47l92_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x6f6e7372 cs47l92_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x7e86cacf cs47l35_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x7e8b168f cs47l35_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x849d1fe6 madera_pm_ops -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x99beabd8 madera_dev_exit -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xb219c448 cs47l85_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xb4456003 cs47l15_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xb448bc43 cs47l15_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xc7830a96 madera_dev_init -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xd02b2bb0 cs47l15_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x13213ab5 cs47l15_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x132ce6f5 cs47l15_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x4fbc38a2 cs47l35_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x501427b9 cs47l15_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x5019fbf9 cs47l15_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x593a5587 cs47l90_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x804737d9 madera_dev_exit +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x87f17a40 cs47l92_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x87fca600 cs47l92_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x8c391929 madera_dev_init +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x9ad78d75 cs47l35_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x9ada5135 cs47l35_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xa8a5160d cs47l85_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xa8a8ca4d cs47l85_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xb07061bd cs47l90_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xb07dbdfd cs47l90_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xb2ff98a0 madera_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xc4c4674c cs47l92_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xc4c9bb0c cs47l92_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xc757489b cs47l85_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xcd18d165 cs47l92_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xd9e29079 cs47l35_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xd9ef4c39 cs47l35_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xeb900b01 cs47l85_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xeb9dd741 cs47l85_32bit_i2c_regmap EXPORT_SYMBOL_GPL drivers/mfd/madera 0xebe384cb madera_name_from_type -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xf7707d0f cs47l15_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xf77da14f cs47l15_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x631fc382 mc13xxx_adc_do_conversion -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x8c8c8dad mc13xxx_variant_mc13783 -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x9e8378c5 mc13xxx_variant_mc34708 -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xcc36c68d mc13xxx_variant_mc13892 -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xd0f53c53 mc13xxx_common_exit -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xdc49c83c mc13xxx_common_init +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xf3457cb1 cs47l90_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xf348a0f1 cs47l90_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x2c249821 mc13xxx_common_init +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x35384fea mc13xxx_common_exit +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x4e77626a mc13xxx_adc_do_conversion +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xa963c0c5 mc13xxx_variant_mc13892 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xe9d98be5 mc13xxx_variant_mc13783 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xfbd67e8d mc13xxx_variant_mc34708 EXPORT_SYMBOL_GPL drivers/mfd/motorola-cpcap 0xa226dbe8 cpcap_sense_virq -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x273a7330 pcf50633_irq_mask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x5ec6b141 pcf50633_free_irq -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x66712162 pcf50633_reg_set_bit_mask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x731bcafd pcf50633_register_irq -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x73a3c652 pcf50633_read_block -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x994b3414 pcf50633_irq_unmask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x9d6c1889 pcf50633_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xb52466b0 pcf50633_irq_mask_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xcdeeceea pcf50633_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xee890b85 pcf50633_reg_clear_bits -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xff57c1fa pcf50633_write_block -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x02562287 pcf50633_adc_sync_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x9065d023 pcf50633_adc_async_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x1a2e2588 pcf50633_gpio_invert_set -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x37384b30 pcf50633_gpio_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x67026f8c pcf50633_gpio_invert_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x8a37ccb8 pcf50633_gpio_set -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xaf33e6bb pcf50633_gpio_power_supply_set -EXPORT_SYMBOL_GPL drivers/mfd/rave-sp 0xbdf031f6 devm_rave_sp_register_event_notifier +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x4e5f7948 pcf50633_register_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x600b447b pcf50633_irq_unmask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x64bd4a55 pcf50633_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x6bb827eb pcf50633_free_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x7a3b8a6e pcf50633_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x85d2548e pcf50633_read_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x8e52e58a pcf50633_reg_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xb18f5fc5 pcf50633_write_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xb8aed044 pcf50633_irq_mask_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xc8f5f324 pcf50633_irq_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xe28fce6a pcf50633_reg_set_bit_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x75e529e8 pcf50633_adc_sync_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0xd9b00a9b pcf50633_adc_async_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x1c729d2f pcf50633_gpio_invert_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x33675e64 pcf50633_gpio_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x803173c8 pcf50633_gpio_power_supply_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xae180a65 pcf50633_gpio_invert_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xf3c07347 pcf50633_gpio_set EXPORT_SYMBOL_GPL drivers/mfd/rave-sp 0xeecaf484 rave_sp_exec +EXPORT_SYMBOL_GPL drivers/mfd/rave-sp 0xf49c03aa 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 0x0ccb7ec0 si476x_core_has_diversity -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0ec92f6f si476x_core_cmd_agc_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x1335f4f3 si476x_core_cmd_fm_seek_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x1d0985ac si476x_core_cmd_dig_audio_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x1fd8ab31 si476x_core_cmd_ic_link_gpo_ctl_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x34349e67 si476x_core_i2c_xfer -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x380f8672 si476x_core_set_power_state -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4285af4c si476x_core_cmd_intb_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4480f503 si476x_core_cmd_func_info -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x49c5dd2c si476x_core_is_in_am_receiver_mode -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4cc70abb si476x_core_cmd_zif_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4ea25d54 si476x_core_cmd_fm_phase_diversity -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x50a075c0 si476x_core_cmd_am_tune_freq -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x585fa3da devm_regmap_init_si476x -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5b2bb898 si476x_core_cmd_fm_phase_div_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5cf7b76f si476x_core_cmd_fm_rds_blockcount -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x60b6e5f1 si476x_core_cmd_am_rsq_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6c13f538 si476x_core_is_powered_up -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x780a6b36 si476x_core_stop -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x82a0e3cd si476x_core_is_a_secondary_tuner -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x83fcfb6b si476x_core_cmd_fm_rds_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x85b2e409 si476x_core_cmd_am_seek_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x895d0ee6 si476x_core_cmd_get_property -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8d07f504 si476x_core_cmd_set_property -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9279f5e5 si476x_core_cmd_power_down -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9abda827 si476x_core_is_a_primary_tuner -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa74b994c si476x_core_cmd_fm_rsq_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb64f5062 si476x_core_cmd_fm_tune_freq -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xbddd83a9 si476x_core_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc568154d si476x_core_has_am -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd0c879a7 si476x_core_cmd_fm_acf_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd25ac59f si476x_core_cmd_ana_audio_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd61561ac si476x_core_cmd_power_up -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe330bb72 si476x_core_cmd_am_acf_status -EXPORT_SYMBOL_GPL drivers/mfd/ssbi 0x0122253c ssbi_read -EXPORT_SYMBOL_GPL drivers/mfd/ssbi 0xef299b85 ssbi_write -EXPORT_SYMBOL_GPL drivers/mfd/stmfx 0x2fd8ad02 stmfx_function_disable -EXPORT_SYMBOL_GPL drivers/mfd/stmfx 0x7a0d0fcb stmfx_function_enable -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x142a99b2 am335x_tsc_se_clr -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x8d419f9c am335x_tsc_se_set_once -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xbe26735a am335x_tsc_se_set_cache -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xc3e54a33 am335x_tsc_se_adc_done -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x472b5743 tps65218_clear_bits -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xca2a74a3 tps65218_set_bits -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xf30a23c7 tps65218_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/ucb1400_core 0xa4653533 ucb1400_adc_read -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x0fc3cd08 alcor_write32be -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x11e92623 alcor_read32 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x40bb1ce8 alcor_read8 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x84db7797 alcor_write32 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xa21ebcd3 alcor_write8 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xc596726c alcor_read32be -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xf281d84d alcor_write16 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x110548c0 rtsx_pci_stop_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x1a7c138c rtsx_pci_dma_unmap_sg -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x1ca6af0e rtsx_pci_card_exist -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x2b40fd54 rtsx_pci_start_run -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x45a11a74 rtsx_pci_complete_unfinished_transfer -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x49c6707b rtsx_pci_switch_output_voltage -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x49c93046 rtsx_pci_card_exclusive_check -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x547124de rtsx_pci_card_pull_ctl_disable -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x550bab7a rtsx_pci_switch_clock -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x64d3e4b9 rtsx_pci_read_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x6ba7a49f rtsx_pci_transfer_data -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x7d1d8111 rtsx_pci_send_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x852105ce rtsx_pci_dma_map_sg -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x9446c4d1 rtsx_pci_read_ppbuf -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x97147a0e rtsx_pci_add_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x99820dc0 rtsx_pci_card_power_on -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x9a893f32 rtsx_pci_write_phy_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x9d2dd3d0 rtsx_pci_read_phy_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xa9b1b627 rtsx_pci_dma_transfer -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xc5c0481a rtsx_pci_write_ppbuf -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xc6013b1c rtsx_pci_card_pull_ctl_enable -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xd775feab rtsx_pci_send_cmd_no_wait -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xf3e49f68 rtsx_pci_card_power_off -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xf68826a8 rtsx_pci_write_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x0644371f rtsx_usb_read_ppbuf -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x081607a1 rtsx_usb_write_ppbuf -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x1a233bf5 rtsx_usb_add_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x1d259979 rtsx_usb_get_card_status -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x25e088ba rtsx_usb_transfer_data -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x2fc832a9 rtsx_usb_write_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x388f8cca rtsx_usb_read_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x413405ee rtsx_usb_ep0_read_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x4c8aa103 rtsx_usb_card_exclusive_check -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x70fe8df5 rtsx_usb_send_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xc0949424 rtsx_usb_ep0_write_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xc4d4b07a rtsx_usb_switch_clock -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xe5f587ee rtsx_usb_get_rsp -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x1aee0a68 cb710_pci_update_config_reg -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x2495110b cb710_sg_dwiter_write_next_block -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xc7bfefaa cb710_sg_dwiter_read_next_block -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xd6d931d9 cb710_set_irq_handler +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0017cce2 si476x_core_cmd_intb_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0d2acc8d devm_regmap_init_si476x +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x11eddcd2 si476x_core_cmd_ic_link_gpo_ctl_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x26473dfd si476x_core_is_a_primary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x430ad0b4 si476x_core_stop +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x602d29fd si476x_core_cmd_fm_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6855c7ed si476x_core_cmd_set_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6f29a838 si476x_core_i2c_xfer +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6f7bb853 si476x_core_cmd_fm_rds_blockcount +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x75d53a53 si476x_core_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x769b5908 si476x_core_cmd_fm_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x79371022 si476x_core_cmd_fm_phase_div_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x814e5a5b si476x_core_set_power_state +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x816f9d73 si476x_core_is_powered_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x83653d2d si476x_core_cmd_power_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x844395a4 si476x_core_cmd_fm_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x85bec01c si476x_core_has_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x895211ed si476x_core_is_in_am_receiver_mode +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8a5ba79d si476x_core_is_a_secondary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x97c29015 si476x_core_has_am +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x97e8dd9e si476x_core_cmd_zif_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xbcc428c6 si476x_core_cmd_am_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc9e843a7 si476x_core_cmd_ana_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xdeee55a8 si476x_core_cmd_am_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe0c84307 si476x_core_cmd_fm_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe26a65e7 si476x_core_cmd_dig_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe30eff05 si476x_core_cmd_am_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe3c6b38e si476x_core_cmd_agc_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe5f50ab4 si476x_core_cmd_fm_rds_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf20751e4 si476x_core_cmd_power_down +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf5221615 si476x_core_cmd_func_info +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf53a787d si476x_core_cmd_get_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf598f45b si476x_core_cmd_fm_phase_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xfdb58cb6 si476x_core_cmd_am_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/ssbi 0xcd9fd444 ssbi_read +EXPORT_SYMBOL_GPL drivers/mfd/ssbi 0xdf35cd48 ssbi_write +EXPORT_SYMBOL_GPL drivers/mfd/stmfx 0x14179722 stmfx_function_disable +EXPORT_SYMBOL_GPL drivers/mfd/stmfx 0x6e1296dd stmfx_function_enable +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x415722a8 am335x_tsc_se_set_once +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x4be34372 am335x_tsc_se_set_cache +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x8e4d0502 am335x_tsc_se_adc_done +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x9f855a80 am335x_tsc_se_clr +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x1ff98327 tps65218_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x3d380cee tps65218_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xe8bc1e3a tps65218_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/ucb1400_core 0xbee06c7c ucb1400_adc_read +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x1d1fb205 alcor_write16 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x56b800fc alcor_write32be +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xa3b8cd78 alcor_write8 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xaa9fb53d alcor_read32be +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xadb121de alcor_write32 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xcf348be9 alcor_read32 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xf2021cb8 alcor_read8 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x0dbc3671 rtsx_pci_start_run +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x4b5f48fa rtsx_pci_read_phy_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x57f9b459 rtsx_pci_read_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x68a2c985 rtsx_pci_stop_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x860d75a7 rtsx_pci_write_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x88066bf5 rtsx_pci_switch_clock +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x89516b7a rtsx_pci_card_power_on +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x9325cad1 rtsx_pci_add_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xa512a753 rtsx_pci_write_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xa93de363 rtsx_pci_write_phy_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xa94bf4e3 rtsx_pci_transfer_data +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xab052ff1 rtsx_pci_read_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xad73e5bb rtsx_pci_card_exist +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xb75f35ec rtsx_pci_dma_unmap_sg +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xb99c4b3d rtsx_pci_card_power_off +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xbfe3fce7 rtsx_pci_switch_output_voltage +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xcd03f443 rtsx_pci_dma_map_sg +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xceba9580 rtsx_pci_send_cmd_no_wait +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xe70fdc3e rtsx_pci_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xee269e0b rtsx_pci_dma_transfer +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xf06fe49e rtsx_pci_card_pull_ctl_enable +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xf29c6d0b rtsx_pci_send_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xf3c3c73a rtsx_pci_complete_unfinished_transfer +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xff1bd980 rtsx_pci_card_pull_ctl_disable +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x2971d2ff rtsx_usb_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x3df471a9 rtsx_usb_read_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x455e59f2 rtsx_usb_send_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x49e08a61 rtsx_usb_add_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x4d2e1df8 rtsx_usb_ep0_read_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x6047aabc rtsx_usb_get_card_status +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x7e2ef276 rtsx_usb_write_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x8f3284bb rtsx_usb_transfer_data +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xb4900019 rtsx_usb_read_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xba342d86 rtsx_usb_ep0_write_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xc6feeb02 rtsx_usb_get_rsp +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xed9cd869 rtsx_usb_switch_clock +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xfb61686b rtsx_usb_write_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x514894e9 cb710_sg_dwiter_write_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x81c9b0cb cb710_pci_update_config_reg +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x87cc4f5c cb710_set_irq_handler +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xd618d3ab cb710_sg_dwiter_read_next_block EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x0b008db0 oslec_hpf_tx EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x296a8983 oslec_update EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x3115970d oslec_create @@ -13960,1587 +13999,1587 @@ 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 0x127055d0 enclosure_component_alloc -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x47d9f111 enclosure_for_each_device -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x496e2d43 enclosure_register -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x4c3261b1 enclosure_remove_device -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x77128d3b enclosure_unregister -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xb9f30324 enclosure_find -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xbb36b5f5 enclosure_component_register -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xf49768f5 enclosure_add_device -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x07e67a47 lis3lv02d_init_device -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x1df5837e lis3lv02d_joystick_enable -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x4b6699fa lis3lv02d_poweroff -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x4ee37d28 lis3_dev -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x68fccc3e lis3lv02d_remove_fs -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x76988179 lis3lv02d_joystick_disable -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x82943cb7 lis3lv02d_init_dt -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xaaf1a882 lis3lv02d_poweron -EXPORT_SYMBOL_GPL drivers/misc/pvpanic/pvpanic 0xd5f3ef1f devm_pvpanic_probe +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x3d66eee9 enclosure_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x3fc14b86 enclosure_unregister +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x5c3385a5 enclosure_remove_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x7c9e5bce enclosure_component_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x9dda3bc4 enclosure_for_each_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xb40bd8d8 enclosure_add_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xe1d1cab7 enclosure_find +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xf08d1307 enclosure_component_alloc +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x04108623 lis3lv02d_remove_fs +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x382a9c1f lis3lv02d_poweron +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x4da21fbf lis3lv02d_init_dt +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x624b6eee lis3lv02d_poweroff +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x8f2b18da lis3lv02d_joystick_disable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x9cc97da9 lis3_dev +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xae00af3f lis3lv02d_init_device +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xbfe2e763 lis3lv02d_joystick_enable +EXPORT_SYMBOL_GPL drivers/misc/pvpanic/pvpanic 0xc10ceb21 devm_pvpanic_probe EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0x3d0d25a9 st_unregister EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0xa231f8d3 st_register -EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0x8d1a637b uacce_alloc -EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0x98527bae uacce_remove -EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0xad8cd361 uacce_register -EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0x219d126a dw_mci_pltfm_register -EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0x54bcb5e7 dw_mci_pltfm_remove -EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0x78b05906 dw_mci_pltfm_pmops -EXPORT_SYMBOL_GPL drivers/mmc/host/renesas_sdhi_core 0x789a0ca5 renesas_sdhi_remove -EXPORT_SYMBOL_GPL drivers/mmc/host/renesas_sdhi_core 0xf347bacc renesas_sdhi_probe -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x057dcf61 tmio_mmc_host_probe +EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0x0ab4fe24 uacce_remove +EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0x60a1d75e uacce_alloc +EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0xecb98037 uacce_register +EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0x10aa8ded dw_mci_pltfm_remove +EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0x4bbefc46 dw_mci_pltfm_register +EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0x748af119 dw_mci_pltfm_pmops +EXPORT_SYMBOL_GPL drivers/mmc/host/renesas_sdhi_core 0x6a5881b6 renesas_sdhi_probe +EXPORT_SYMBOL_GPL drivers/mmc/host/renesas_sdhi_core 0xa2091d17 renesas_sdhi_remove +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x1a7e4263 tmio_mmc_host_free +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x23f2172c tmio_mmc_do_data_irq EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x378f2335 tmio_mmc_irq -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x40e540d6 tmio_mmc_host_alloc -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x52b26c5f tmio_mmc_do_data_irq -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x691ddfb0 tmio_mmc_host_runtime_suspend -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x72686d6e tmio_mmc_host_free -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x7e47c1d9 tmio_mmc_enable_mmc_irqs -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x89887d3e tmio_mmc_host_remove -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xafad0232 tmio_mmc_disable_mmc_irqs -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xc24e338b tmio_mmc_host_runtime_resume -EXPORT_SYMBOL_GPL drivers/most/most_core 0x3a55d44a most_register_configfs_subsys -EXPORT_SYMBOL_GPL drivers/most/most_core 0x4e5753e2 most_get_mbo -EXPORT_SYMBOL_GPL drivers/most/most_core 0x56de911f most_deregister_interface -EXPORT_SYMBOL_GPL drivers/most/most_core 0x5e3218f3 most_register_component -EXPORT_SYMBOL_GPL drivers/most/most_core 0x6a5ae4d5 most_stop_channel -EXPORT_SYMBOL_GPL drivers/most/most_core 0x81046a82 channel_has_mbo -EXPORT_SYMBOL_GPL drivers/most/most_core 0x858b3f3a most_register_interface -EXPORT_SYMBOL_GPL drivers/most/most_core 0x99739610 most_submit_mbo -EXPORT_SYMBOL_GPL drivers/most/most_core 0x9c01d27f most_deregister_configfs_subsys -EXPORT_SYMBOL_GPL drivers/most/most_core 0xa83fc632 most_stop_enqueue -EXPORT_SYMBOL_GPL drivers/most/most_core 0xacc28794 most_put_mbo -EXPORT_SYMBOL_GPL drivers/most/most_core 0xc0ddb1bd most_deregister_component -EXPORT_SYMBOL_GPL drivers/most/most_core 0xc66a4a1b most_resume_enqueue -EXPORT_SYMBOL_GPL drivers/most/most_core 0xf56f1aac most_start_channel -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x0637e6ba cfi_cmdset_0200 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xc400e6c4 cfi_cmdset_0001 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xfb29c32c cfi_cmdset_0003 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x17449e5e cfi_cmdset_0701 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x9aef1a08 cfi_cmdset_0006 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xe4bd51d8 cfi_cmdset_0002 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0x757a375f cfi_cmdset_0020 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x573061d3 cfi_qry_mode_off -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x60b7a739 cfi_qry_present -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xd030f966 cfi_qry_mode_on -EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0x1fb7b3e4 hyperbus_register_device -EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0xc46cacc4 hyperbus_unregister_device -EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0x34566d45 onenand_scan -EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0x4ba6984d onenand_release -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0x1aef6d8c brcmnand_probe -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0x5ff979f6 brcmnand_pm_ops -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0x61cfed14 brcmnand_remove -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/denali 0x00d1e80d denali_chip_init -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/sm_common 0x72917a0f sm_register_device -EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0xd0e3315e spi_nor_restore -EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0xead514b6 spi_nor_scan -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x10f6ae15 ubi_do_get_device_info -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x2c967de4 ubi_open_volume_path -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x31d1c6c2 ubi_open_volume +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x48fc26d4 tmio_mmc_host_alloc +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x5c9cccf7 tmio_mmc_disable_mmc_irqs +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x5ddc86bd tmio_mmc_host_probe +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x84393ab9 tmio_mmc_host_remove +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xbd813b8c tmio_mmc_host_runtime_suspend +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xecb1d985 tmio_mmc_host_runtime_resume +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xf0226f6b tmio_mmc_enable_mmc_irqs +EXPORT_SYMBOL_GPL drivers/most/most_core 0x26dc6468 most_deregister_interface +EXPORT_SYMBOL_GPL drivers/most/most_core 0x34c2e28c most_deregister_component +EXPORT_SYMBOL_GPL drivers/most/most_core 0x35537fe6 most_deregister_configfs_subsys +EXPORT_SYMBOL_GPL drivers/most/most_core 0x3f037aa1 most_resume_enqueue +EXPORT_SYMBOL_GPL drivers/most/most_core 0x495679a3 most_submit_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0x4d0f29d4 most_stop_channel +EXPORT_SYMBOL_GPL drivers/most/most_core 0x55b053ac most_register_interface +EXPORT_SYMBOL_GPL drivers/most/most_core 0x694159df most_put_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0x789de014 most_register_component +EXPORT_SYMBOL_GPL drivers/most/most_core 0x8cbc8912 most_register_configfs_subsys +EXPORT_SYMBOL_GPL drivers/most/most_core 0xafef87ae most_get_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0xbecf8770 channel_has_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0xccce0e4d most_stop_enqueue +EXPORT_SYMBOL_GPL drivers/most/most_core 0xd669445e most_start_channel +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x5b3f7396 cfi_cmdset_0200 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x990873e8 cfi_cmdset_0001 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xa6215600 cfi_cmdset_0003 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x4a4c0b72 cfi_cmdset_0701 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xb9b5c4f4 cfi_cmdset_0002 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xc7e78f24 cfi_cmdset_0006 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0x2872a273 cfi_cmdset_0020 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x31c96001 cfi_qry_mode_off +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xe636b4dc cfi_qry_present +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xe940209d cfi_qry_mode_on +EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0x2236312f hyperbus_register_device +EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0xf00d4b56 hyperbus_unregister_device +EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0x4dec6fc7 onenand_scan +EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0x79624c03 onenand_release +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0x4c3e59d0 brcmnand_pm_ops +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0x61879ab3 brcmnand_remove +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0xd8925391 brcmnand_probe +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/denali 0x94ec0667 denali_chip_init +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/sm_common 0x95f5df97 sm_register_device +EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0x52be1b0e spi_nor_scan +EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0x5d671fd5 spi_nor_restore +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x01cc8a89 ubi_open_volume_path +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x1df62772 ubi_leb_read_sg +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x3336a448 ubi_leb_unmap EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x38e10c1d ubi_flush +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x3e756238 ubi_leb_erase EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x42801d20 ubi_sync -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x6270837a ubi_leb_write +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x42c94268 ubi_leb_change EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x66011ab6 ubi_get_device_info EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x85a8ee76 ubi_unregister_volume_notifier -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x887820b3 ubi_leb_change -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x947f2f79 ubi_leb_read_sg -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x9f1c707a ubi_get_volume_info -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xacc700a0 ubi_leb_map -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xbeb33946 ubi_close_volume -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xd34280e5 ubi_leb_erase -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xdaebdeec ubi_leb_unmap -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xdfc734d1 ubi_leb_read -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xe59f4e73 ubi_open_volume_nm -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf010c839 ubi_is_mapped +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x8ce999c1 ubi_close_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x94b61a8b ubi_do_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x99d3ed53 ubi_open_volume_nm +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x9b67404b ubi_get_volume_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xb163481c ubi_open_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xbca7f23f ubi_leb_map +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xc7d7e17a ubi_leb_read +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xcec7f3be ubi_leb_write +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xe7b4cdf5 ubi_is_mapped EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf5ee9ba8 ubi_register_volume_notifier -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x12d89d0a mux_control_states -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x33b02bb8 devm_mux_chip_alloc -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x5e3c5cf8 mux_chip_free -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x7587abe1 mux_control_select -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x7720e2bd mux_chip_register -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x9b30c4af devm_mux_control_get -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xa9331c50 mux_control_get -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xc74bcc10 mux_control_deselect -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xc7631f23 mux_chip_unregister -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xd4821b1a mux_control_try_select -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xe0399de0 mux_control_put -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xf0e4b93f mux_chip_alloc -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xf1a3778a devm_mux_chip_register -EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x729b09fc devm_arcnet_led_init -EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0xe35a8503 arcnet_led_event -EXPORT_SYMBOL_GPL drivers/net/bareudp 0x137af18d bareudp_dev_create -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x0e6ebf93 c_can_power_up -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x0f4dd98e free_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x82af38e8 register_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xaa41993c alloc_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xc7edae14 c_can_power_down -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xf251a30e unregister_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x08747245 unregister_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x238e531a free_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x41dc9612 register_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xe79eb0c6 alloc_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x00acf0bf alloc_can_err_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x0f426b24 alloc_canfd_skb +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x0fa5c6a5 mux_control_states +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x2501c0f8 mux_chip_alloc +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x2dd4d374 devm_mux_chip_alloc +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x36afe4bf mux_chip_unregister +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x636067b3 mux_control_deselect +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x8be12e40 mux_control_select +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xae6f83b3 mux_control_try_select +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xb0940c85 devm_mux_control_get +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xc3ef1fe7 mux_chip_register +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xd877dc9a mux_chip_free +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xe33c2798 mux_control_put +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xea9803e1 mux_control_get +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xf4672f63 devm_mux_chip_register +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x11cc6edc devm_arcnet_led_init +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x29401822 arcnet_led_event +EXPORT_SYMBOL_GPL drivers/net/bareudp 0xf0958dd0 bareudp_dev_create +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x3026559d c_can_power_up +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x55cae153 register_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x5b5872ee unregister_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x877ad9e1 free_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xae114548 c_can_power_down +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xe0afcb55 alloc_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x20d70951 free_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x36ab99c5 register_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x5d5521a0 unregister_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x73a0b695 alloc_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x067fa8ed can_rx_offload_add_timestamp +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x0c159a13 can_rx_offload_add_fifo EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x10d892eb can_get_state_str -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x163d6baa of_can_transceiver -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x1ecc3e6e can_rx_offload_queue_sorted -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x30373057 open_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x3439281c can_rx_offload_queue_tail -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x3ffb0a76 can_change_state -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x465d1d1f can_rx_offload_add_manual -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x51019007 can_change_mtu +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x1c3ba1e9 register_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x1f66bcf2 can_rx_offload_queue_tail +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x36b941de can_change_state +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x3a687191 can_rx_offload_irq_finish +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x4f9a8ae6 can_put_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x57ff920e can_rx_offload_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x5bbd1927 can_change_mtu +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x5c80c185 unregister_candev EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6047ede6 can_fd_len2dlc -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x62ef68b8 free_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x7d58496c can_rx_offload_get_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x82452461 can_rx_offload_threaded_irq_finish -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x850c407b can_bus_off -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x97d58474 can_skb_get_frame_len -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x9f0e6a3d can_rx_offload_del -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xab08d96a can_put_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xb5c5d6aa safe_candev_priv -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xb8a5baa8 can_rx_offload_enable -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xba16781d can_free_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xbdf44cee alloc_can_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xc2174b96 can_rx_offload_add_fifo -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xc3d04803 close_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xc71d6164 register_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xcb5047fc can_get_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xd4c05800 alloc_candev_mqs -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xe69f16f3 can_rx_offload_irq_finish -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xed41f54f unregister_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x65729380 alloc_candev_mqs +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x7cc3a7c7 can_free_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x810cfec4 open_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x8828eea5 can_rx_offload_queue_sorted +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x96831d10 can_rx_offload_enable +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x96ea1775 of_can_transceiver +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x99195e59 can_skb_get_frame_len +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x9967d5b0 free_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x9a317d04 safe_candev_priv +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x9f70aebf can_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xb2409538 can_rx_offload_threaded_irq_finish +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xc5ddba9c can_rx_offload_irq_offload_fifo +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xc8175c23 can_rx_offload_add_manual +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xcedd213a close_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xd3d4f038 alloc_can_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xea3fbe42 can_rx_offload_irq_offload_timestamp +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xef0f747a can_bus_off +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf0597973 alloc_can_err_skb EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf12d9387 can_fd_dlc2len -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf1bb13b7 can_rx_offload_irq_offload_timestamp -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf905b7fe can_rx_offload_add_timestamp -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf987a5d7 can_rx_offload_irq_offload_fifo -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x0440fd3e m_can_init_ram -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x0f366a7b m_can_class_free_dev -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x14c839b9 m_can_class_resume -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x1840827b m_can_class_allocate_dev -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x4b8b2863 m_can_class_get_clocks -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x6a795c49 m_can_class_unregister -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xb7e4cce1 m_can_class_register -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xe266658d m_can_class_suspend +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf9359541 can_rx_offload_del +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xfaf3e391 alloc_canfd_skb +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x179d645d m_can_class_unregister +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x31c65cda m_can_class_free_dev +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x4d71da95 m_can_class_resume +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x5b5ea362 m_can_class_suspend +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xc95998e7 m_can_class_get_clocks +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xca1b926e m_can_class_allocate_dev +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xcafaaab6 m_can_class_register +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xdef7df8d m_can_init_ram +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x1f3aeb8c alloc_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49db470b register_sja1000dev EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x67cfd410 alloc_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xb35bad85 unregister_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xc211d7ba free_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xe1c609df register_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/dsa/lan9303-core 0xe96acb37 lan9303_indirect_phy_ops -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x014f1624 ksz_phy_write16 -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x0ef7554b ksz_port_mdb_add -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x25ccffde ksz_port_fast_age -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x27b543e6 ksz_update_port_member -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x72900727 ksz_sset_count -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x81ad4382 ksz_init_mib_timer -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x8536ddf2 ksz_mac_link_down -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x9a7ad632 ksz_get_ethtool_stats -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xa23bbbbb ksz_enable_port -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xb9e998eb ksz_port_mdb_del -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xbbf0b218 ksz_port_bridge_join -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xc6a28afc ksz_phy_read16 -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xdaead9e4 ksz_port_bridge_leave -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xe631fab1 ksz_port_fdb_dump -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x0728b923 rtl8366_set_vlan -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x0e58b948 rtl8366_set_pvid -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x20b293b0 rtl8366_get_sset_count -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x35b443ea rtl8366_get_strings -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x4571923a rtl8366_vlan_add -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x4d41f133 rtl8366_enable_vlan -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x77866b92 rtl8366_init_vlan -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x80d99557 rtl8366_vlan_filtering -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x89ae3f37 rtl8366_mc_is_used -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xa06dd1c1 realtek_smi_write_reg_noack -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xc536307b rtl8366_enable_vlan4k -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xce120417 rtl8366_get_ethtool_stats -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xce4faabc rtl8366_vlan_del -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xe1ffd7bb rtl8366rb_variant -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xf8641b85 rtl8366_reset_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/8390/ax88796 0x609e6719 ax_NS8390_reinit -EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0x54095361 arc_emac_probe -EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0xb21f3e50 arc_emac_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0x3e6bb1af enetc_mdio_read -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0x741cbb21 enetc_hw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0xf09a7df5 enetc_mdio_write +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x94eb88a9 unregister_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xacf98d2d free_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/dsa/lan9303-core 0xfe367f96 lan9303_indirect_phy_ops +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x086372d1 ksz_phy_read16 +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x4b742e4d ksz_port_bridge_join +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x519db2d5 ksz_phy_write16 +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x67e6ec10 ksz_get_ethtool_stats +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x757d711c ksz_update_port_member +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x868bc82d ksz_port_mdb_del +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x8fc52dff ksz_sset_count +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x9381a5fc ksz_mac_link_down +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x995333a1 ksz_port_mdb_add +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xc5cdd150 ksz_enable_port +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xd87482c5 ksz_port_fast_age +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xe2d73517 ksz_init_mib_timer +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xe4553461 ksz_port_fdb_dump +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xec30621b ksz_port_bridge_leave +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x107c6809 rtl8366_reset_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x17bde54a rtl8366_init_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x1e64c143 rtl8366_get_sset_count +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x28c3ca25 rtl8366_set_pvid +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x4ac8c2f5 rtl8366_enable_vlan4k +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x4e929cc1 rtl8366_enable_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x4ee3ea6b rtl8366_vlan_filtering +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x55a73527 rtl8366rb_variant +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x59287f41 rtl8366_vlan_del +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x8986f307 rtl8366_get_strings +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x9aa6e3c4 rtl8366_vlan_add +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xb190375c rtl8366_mc_is_used +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xb623333c realtek_smi_write_reg_noack +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xc07918d7 rtl8366_get_ethtool_stats +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xd6d08be8 rtl8366_set_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/8390/ax88796 0x568f9e3b ax_NS8390_reinit +EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0x62866427 arc_emac_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0xa021d2af arc_emac_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0x4c6a22f2 enetc_mdio_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0x5c471520 enetc_mdio_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0xbb519794 enetc_hw_alloc EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0xf68ac32d enetc_mdio_lock -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0x068bc7cd i40e_client_device_register -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0x6d615bd3 i40e_client_device_unregister -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x197e9b94 ice_rdma_update_vsi_filter -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x53357bcc ice_add_rdma_qset -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x6f183c00 ice_rdma_request_reset -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xc9ba141b ice_get_qos_params -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xf60fb928 ice_del_rdma_qset -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x04ff2bee mlx4_unicast_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x066d4be9 mlx4_config_vxlan_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x08b45a77 mlx4_wol_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0a73f013 __mlx4_register_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0a835548 mlx4_cq_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0b52bd11 mlx4_counter_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0f8c1135 mlx4_qp_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x10a15911 mlx4_get_slave_default_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x156451a9 mlx4_replace_zero_macs -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x17dafcc6 mlx4_map_sw_to_hw_steering_id -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x18f217d0 mlx4_get_protocol_dev -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x19e40b8e mlx4_qp_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1d39393b mlx4_mr_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1d3e45f1 mlx4_config_roce_v2_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1dc35e86 mlx4_update_qp -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x21cbbf6a mlx4_mr_hw_change_pd -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x228dc028 mlx4_map_sw_to_hw_steering_mode -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x25d54579 mlx4_unicast_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x25d74039 mlx4_uar_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x26844617 mlx4_register_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2709e68f mlx4_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x280fdba7 mlx4_flow_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2c01e620 mlx4_srq_arm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2c24437e mlx4_multicast_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2ea27f5a mlx4_set_admin_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2eaf80e3 mlx4_port_map_set -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2fff2801 mlx4_multicast_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x34a25ddd mlx4_cq_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x35683395 mlx4_phys_to_slave_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x36e6f8d9 mlx4_mr_rereg_mem_cleanup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x38fc5c03 mlx4_counter_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3d4a9936 mlx4_set_vf_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3e9b7533 mlx4_mr_hw_put_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3ecba824 mlx4_srq_lookup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x465d753b mlx4_ACCESS_PTYS_REG -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4ceeaa91 mlx4_db_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4e30c04a mlx4_phys_to_slaves_pport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4e699a93 mlx4_hw_rule_sz -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5140c42d mlx4_free_cmd_mailbox -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5212451e mlx4_mr_hw_get_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x52aeff7f mlx4_mtt_addr -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x52c4e363 mlx4_bf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x550d8c78 mlx4_write_mtt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x58abb6a3 mlx4_cq_resize -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5a30a745 __mlx4_unregister_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5c2bead7 mlx4_get_active_ports -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5d00efa4 mlx4_vf_smi_enabled -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x62898ecd mlx4_bond -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x63fcd206 mlx4_vf_get_enable_smi_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x65fb869c mlx4_register_interface -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x67789d8d mlx4_config_dev_retrieval -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6acf4f5a mlx4_unregister_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x705c7816 mlx4_vf_set_enable_smi_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7cf3ac3b mlx4_get_vf_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7eb46242 mlx4_qp_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fa42172 mlx4_get_base_qpn -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x80712b75 mlx4_qp_reserve_range -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x80727615 mlx4_flow_steer_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x81526ed5 mlx4_get_devlink_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x81b76010 mlx4_unregister_interface -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x850aee27 mlx4_free_hwq_res -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8864d862 mlx4_wol_read -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x88d8e8f5 mlx4_mtt_cleanup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8ad685f6 mlx4_set_vf_spoofchk -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8b306860 mlx4_srq_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8bba9194 mlx4_mtt_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8e9e87af mlx4_unicast_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x925b6c4b mlx4_mr_hw_write_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x92830419 mlx4_register_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9430e4f9 mlx4_unregister_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9a45f569 mlx4_qp_release_range -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9b60aa07 mlx4_phys_to_slaves_pport_actv -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9bac6ba3 mlx4_srq_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9dfbf482 mlx4_read_clock -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa72695e9 mlx4_qp_to_ready -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa7641c62 mlx4_get_internal_clock_params -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa9965c51 mlx4_get_admin_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xac0f6d4c mlx4_buf_write_mtt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaf45d748 mlx4_alloc_cmd_mailbox -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb2d413ac mlx4_get_default_counter_index -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb51b0004 mlx4_mw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbb077247 mlx4_multicast_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbc33c037 mlx4_buf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc0e40b24 mlx4_mr_rereg_mem_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc146ccad mlx4_mr_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc4eb6a9a mlx4_xrcd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc6de6a73 mlx4_pd_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc95dba1f mlx4_qp_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcbe8cbf4 mlx4_multicast_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd024dee8 mlx4_srq_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd55df791 mlx4_db_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd5bb4103 mlx4_mr_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd5f72b4b mlx4_cq_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd8f2b361 mlx4_flow_steer_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdae7b44f mlx4_set_vf_rate -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdd1311cf mlx4_CLOSE_PORT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdebc0cc8 mlx4_FLOW_STEERING_IB_UC_QP_RANGE -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe153b717 mlx4_mw_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe2c8fae0 mlx4_flow_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe320876c mlx4_mr_hw_change_access -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe35fdd0c mlx4_get_vf_config -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe47bb66f mlx4_bf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe7343ebb mlx4_uar_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe8c726b3 mlx4_slave_convert_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe90e67cd __mlx4_replace_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xea0d9799 mlx4_unicast_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeacc8b16 mlx4_set_vf_link_state -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xebf31952 mlx4_get_base_gid_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xedbd0b70 mlx4_INIT_PORT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeed592fb mlx4_alloc_hwq_res -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xef9930fb mlx4_unbond -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf166ee90 mlx4_mw_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf1dcc0ed mlx4_set_vf_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf2164c8a mlx4_find_cached_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf255940a mlx4_qp_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf25929fa __mlx4_cmd -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf38b3110 mlx4_get_counter_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf3ce563c mlx4_find_cached_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfaf36e8c mlx4_SYNC_TPT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfb83e7d9 mlx4_xrcd_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfb895524 mlx4_pd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x006297aa mlx5_query_port_prio_tc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1224ad53 mlx5_set_port_pause -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1462f8ba mlx5_nic_vport_unaffiliate_multiport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x18cdc0c7 mlx5_db_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1b2db4af mlx5_query_nic_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0x5a384e62 i40e_client_device_register +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0x8a96617b i40e_client_device_unregister +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x1459cfd7 ice_rdma_request_reset +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x444ebbd7 ice_get_qos_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x7b7b93d3 ice_del_rdma_qset +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x82b71076 ice_rdma_update_vsi_filter +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xb4aea3fc ice_add_rdma_qset +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0320285f mlx4_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x03240869 mlx4_qp_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x06273d46 mlx4_SYNC_TPT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x07b5252b mlx4_cq_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x085cd11d mlx4_flow_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x09d781a3 mlx4_unregister_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0a163f3f mlx4_get_default_counter_index +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0a877a6d mlx4_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0dabc827 mlx4_mr_rereg_mem_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1156a343 mlx4_mr_hw_get_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x13d33e46 mlx4_mr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1670623e mlx4_replace_zero_macs +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1a031628 mlx4_alloc_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1c730aba mlx4_read_clock +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1fb41759 mlx4_phys_to_slaves_pport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x20b4f18d mlx4_CLOSE_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x220f7135 mlx4_free_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2244e867 mlx4_wol_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x24d076bd mlx4_slave_convert_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2532dc78 mlx4_vf_get_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x25e3463b mlx4_multicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x30b0464a mlx4_multicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x321d18ff __mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x34b01a8e mlx4_qp_reserve_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x37362837 mlx4_pd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3a0691c8 mlx4_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3a6fdd4f mlx4_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3ad20306 mlx4_unregister_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3cf69ba8 mlx4_mtt_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3d6f9265 mlx4_bond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3ef726c1 mlx4_multicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x408b6192 mlx4_config_roce_v2_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4754e713 mlx4_set_vf_spoofchk +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4809b92c __mlx4_replace_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4828221d mlx4_find_cached_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4b871dd5 mlx4_xrcd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4e428383 mlx4_mr_rereg_mem_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4ef62fff mlx4_srq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x53b56035 mlx4_config_dev_retrieval +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x542b1600 mlx4_get_slave_default_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5603605e mlx4_free_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x58f17112 mlx4_bf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x58fcfe62 mlx4_cq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5f7bca44 mlx4_set_vf_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x62b8cb72 mlx4_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6502087c mlx4_alloc_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x658769c4 mlx4_counter_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x65ce6c21 mlx4_srq_arm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x662c33fe mlx4_cq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x670c1f27 mlx4_get_active_ports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x675a7de7 mlx4_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x68b80e4a mlx4_uar_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6fa27cdf mlx4_get_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6ff69300 mlx4_unicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x71b11f4a mlx4_unbond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x74908fa2 mlx4_find_cached_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x77cb96d6 mlx4_srq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x78ae2f1f mlx4_qp_release_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7a51b380 mlx4_mtt_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7b8295a9 mlx4_get_internal_clock_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7d0001b3 mlx4_wol_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7f62939e mlx4_buf_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7f8940a3 mlx4_vf_smi_enabled +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x83fe4c6c mlx4_port_map_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8986e642 mlx4_map_sw_to_hw_steering_id +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x89f3b46a mlx4_get_vf_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8bfd290d mlx4_mw_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8e0c13fd mlx4_get_base_qpn +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x91bac168 mlx4_unicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x93d968eb mlx4_mw_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9609175a mlx4_get_vf_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9af037ab mlx4_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9b8efd08 mlx4_hw_rule_sz +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9d7de254 mlx4_register_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa03286b4 mlx4_mr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa0d523ef mlx4_qp_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa3a94065 mlx4_srq_lookup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa431c6f5 mlx4_flow_steer_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaa64a370 mlx4_get_base_gid_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xab496c76 mlx4_phys_to_slave_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xac676f9c mlx4_srq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaf331406 mlx4_ACCESS_PTYS_REG +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xafdbd328 mlx4_set_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb14e6e00 mlx4_mr_hw_put_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb360ab11 mlx4_mr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbd6aaa29 mlx4_pd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbf3657ba __mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc0e8d4e8 mlx4_register_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc3d5d9b8 mlx4_map_sw_to_hw_steering_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc477399b mlx4_flow_steer_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc80f162d mlx4_phys_to_slaves_pport_actv +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc9a4ab3f mlx4_unicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xca34e37c mlx4_bf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcc525aa0 mlx4_mw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcce5a3fd __mlx4_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcdf2063b mlx4_FLOW_STEERING_IB_UC_QP_RANGE +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd2494b75 mlx4_config_vxlan_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd4bbf014 mlx4_get_protocol_dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd5d056bc mlx4_get_devlink_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd7597689 mlx4_multicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd92584db mlx4_flow_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd9410517 mlx4_set_vf_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdc7ede16 mlx4_unicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xddfb3745 mlx4_cq_resize +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdeacd0a5 mlx4_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe1a928be mlx4_mtt_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe1ae18f5 mlx4_mr_hw_change_access +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe64fe5df mlx4_counter_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe74f2bb7 mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe7c4bab8 mlx4_qp_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeb0206a6 mlx4_get_counter_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xee797141 mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeedac500 mlx4_set_vf_link_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xef34ce5b mlx4_vf_set_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeff777d1 mlx4_uar_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf0c58c94 mlx4_set_vf_rate +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf11002c6 mlx4_qp_to_ready +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf2078df5 mlx4_mr_hw_write_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf2d878ac mlx4_update_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf557104c mlx4_INIT_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfcf09a72 mlx4_mr_hw_change_pd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x00ab88a2 mlx5_eswitch_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x03645bcc mlx5_set_port_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x03df4cdf mlx5_query_hca_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0805e4b7 mlx5_modify_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x093f5360 mlx5_accel_esp_create_xfrm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x168eab2e mlx5_query_hca_vport_pkey +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1ccab6af mlx5_core_query_sq_state EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1e557031 mlx5_fill_page_array -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x20e58269 mlx5_set_port_caps -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2244ee26 mlx5_query_nic_vport_promisc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2aa9d174 mlx5_core_query_vport_counter -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2d1783e2 mlx5_modify_nic_vport_vlans -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3127cd72 mlx5_query_nic_vport_min_inline -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3679af11 mlx5_query_port_admin_status -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x38025742 mlx5_nic_vport_query_local_lb -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x38a38155 mlx5_set_port_wol -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3bbcbbfe mlx5_core_query_sq_state -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3bbe19f8 mlx5_accel_ipsec_device_caps -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3e1e5d02 mlx5_accel_esp_modify_xfrm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3f5b6eca mlx5_set_port_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3f93abcf mlx5_query_port_tc_group -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4580749a mlx5_core_access_reg -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x464c843f mlx5_query_port_pfc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4a4f2d72 mlx5_query_nic_vport_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x535644c9 mlx5_query_nic_vport_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x57f805f7 mlx5_eswitch_get_total_vports -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5a029b01 mlx5_query_hca_vport_pkey -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6ca70948 mlx5_query_hca_vport_node_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6f7d91e8 mlx5_query_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1f8b7be2 mlx5_query_port_tc_bw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x21d47b96 mlx5_frag_buf_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x22074cff mlx5_query_port_max_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x270d97fe mlx5_set_port_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2db54fce mlx5_nic_vport_enable_roce +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2ee6de21 mlx5_query_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2f64d87a mlx5_dm_sw_icm_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3079db10 mlx5_set_port_tc_bw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x33fe000e mlx5_query_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3453d6c8 mlx5_query_nic_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x36d62664 mlx5_query_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3972447e mlx5_core_query_ib_ppcnt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3e8c454e mlx5_query_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x45b5ac4e mlx5_set_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4b84a5de mlx5_dm_sw_icm_dealloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4c977b5c mlx5_query_port_ptys +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x538b8bc4 mlx5_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5ad0edd6 mlx5_accel_esp_destroy_xfrm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6335634a mlx5_query_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x69a2c07b mlx5_modify_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6d2cc491 mlx5_modify_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6d6399ee mlx5_query_module_eeprom +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6e0afe06 mlx5_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x707df05e mlx5_query_nic_vport_promisc 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 0x7af6b2c0 mlx5_query_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fd21c3f mlx5_query_nic_vport_qkey_viol_cntr -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x815cdc05 mlx5_modify_nic_vport_mac_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x86935e9a mlx5_set_port_prio_tc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8f3c219c mlx5_query_nic_vport_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8fc46872 mlx5_query_nic_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9701409c mlx5_accel_esp_create_xfrm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9826b3f1 mlx5_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9c458abf mlx5_query_min_inline -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9c7e3242 mlx5_set_port_admin_status -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa5302000 mlx5_core_reserved_gids_count -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa56b9a70 mlx5_query_hca_vport_context -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa589bd0f mlx5_modify_nic_vport_promisc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa69af0b6 mlx5_query_module_eeprom -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa8945718 mlx5_query_port_max_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa8e6ce99 mlx5_query_port_tc_bw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xae38556a mlx5_nic_vport_update_local_lb -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb22c1e7d mlx5_db_alloc_node -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb35228e5 mlx5_query_hca_vport_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb39d154d mlx5_nic_vport_affiliate_multiport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb624586d mlx5_query_port_wol -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xba8231ea mlx5_frag_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbd293693 mlx5_query_port_vl_hw_cap -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbf7dc698 mlx5_modify_nic_vport_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbfc5401b mlx5_query_module_eeprom_by_page -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc1875e29 mlx5_frag_buf_alloc_node -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc57214f4 mlx5_db_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc7025263 mlx5_query_port_ets_rate_limit -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcab0402c mlx5_dm_sw_icm_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7a23f914 mlx5_query_nic_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7be831fb mlx5_query_hca_vport_gid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7c80a8d0 mlx5_query_nic_vport_min_inline +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7cc318e6 mlx5_modify_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7d20688a mlx5_query_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x83033340 mlx5_core_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x83dd5425 mlx5_nic_vport_unaffiliate_multiport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x87dcecb5 mlx5_nic_vport_affiliate_multiport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x87eaf742 mlx5_query_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8847cf9d mlx5_query_module_eeprom_by_page +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8d5994c2 mlx5_frag_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8e2af495 mlx5_core_query_vport_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x93bc16fd mlx5_modify_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x93d8cef2 mlx5_query_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x99865892 mlx5_db_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9d9a7ec5 mlx5_accel_ipsec_device_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaae88bae mlx5_toggle_port_link +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb4765157 mlx5_query_min_inline +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb64f004b mlx5_query_port_prio_tc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb819451e mlx5_set_port_prio_tc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbd844680 mlx5_eswitch_get_total_vports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc7bcf92b mlx5_set_port_tc_group +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcb4796ba mlx5_core_reserved_gids_count 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 0xce003f14 mlx5_dm_sw_icm_dealloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd0fc6112 mlx5_query_port_oper_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd750248b mlx5_query_port_ptys -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd7a1ca1e mlx5_query_hca_vport_gid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd7abf7bb mlx5_nic_vport_enable_roce -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdbc6f1ab mlx5_query_port_pause -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xddad3a82 mlx5_modify_port_ets_rate_limit -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe436a647 mlx5_core_query_ib_ppcnt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe7df9115 mlx5_accel_esp_destroy_xfrm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xea566c6e mlx5_toggle_port_link -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xea5ecfdc mlx5_core_modify_hca_vport_context -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeb6fe1c3 mlx5_set_port_tc_bw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf8c21c19 mlx5_set_port_tc_group -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf8e95969 mlx5_eswitch_mode -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf96051f4 mlx5_set_port_pfc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf96260e1 mlx5_modify_nic_vport_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x571cfc3d ks8851_resume -EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0xc18b9485 ks8851_suspend -EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0xd231ec07 ks8851_probe_common -EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0xf57b7a01 ks8851_remove_common +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd112a137 mlx5_query_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd7026a96 mlx5_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd8130395 mlx5_modify_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd926c85f mlx5_core_modify_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd97d11ad mlx5_nic_vport_update_local_lb +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdac64376 mlx5_query_nic_vport_qkey_viol_cntr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe03f411e mlx5_nic_vport_query_local_lb +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe427de20 mlx5_query_port_vl_hw_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe798869d mlx5_query_hca_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe9c24928 mlx5_set_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xea3198f0 mlx5_accel_esp_modify_xfrm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xead90fa4 mlx5_query_port_tc_group +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xec5952a8 mlx5_query_port_oper_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf76572e1 mlx5_set_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf94ef592 mlx5_query_nic_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfb4a4d27 mlx5_set_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfcef7723 mlx5_query_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x246db68f ks8851_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x2b862a84 ks8851_suspend +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x5a92a205 ks8851_probe_common +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0xafddfe99 ks8851_remove_common EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x2695f52f regmap_encx24j600_spi_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x3d1231b3 devm_regmap_init_encx24j600 +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x43b43724 devm_regmap_init_encx24j600 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 0x10b69401 ocelot_cls_flower_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x12a22adc __ocelot_read_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1ad4ec94 ocelot_regmap_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5bedd761 ocelot_cls_flower_destroy -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7de008b1 ocelot_regfields_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x825b60ff ocelot_port_readl -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x88dc8c55 ocelot_port_writel -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x95498dfd ocelot_cls_flower_replace -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb9408c53 ocelot_port_rmwl -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xba73eb92 ocelot_phylink_mac_link_up -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc15cc3d4 __ocelot_write_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xdebe41aa __ocelot_rmw_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf8b591c7 ocelot_phylink_mac_link_down +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0375d555 ocelot_port_readl +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2d17bf76 __ocelot_write_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x440d8d55 ocelot_phylink_mac_link_down +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x79539d3e __ocelot_read_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9b291253 ocelot_cls_flower_replace +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xac304780 __ocelot_rmw_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb8235072 ocelot_regmap_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc32c829e ocelot_phylink_mac_link_up +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe316cd50 ocelot_cls_flower_destroy +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xeb41e2bb ocelot_port_rmwl +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xec0c5858 ocelot_cls_flower_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xed85e9c0 ocelot_regfields_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfb7a873c ocelot_port_writel 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 0x2e64962a stmmac_dvr_probe -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x30f0418d stmmac_bus_clks_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x6545f65f stmmac_dvr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x6de7244e 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 0xc7a4f5c5 stmmac_init_tstamp_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xafdddfcb stmmac_bus_clks_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xc00a3c0f stmmac_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xcb31ff20 stmmac_suspend EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xd1cc24db stmmac_set_mac_addr -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xdbc2052e stmmac_dvr_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xe6beae91 stmmac_suspend -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xee13c05a stmmac_resume -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x4d997794 stmmac_pltfr_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x5209c28f stmmac_remove_config_dt -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x5ec604b3 stmmac_pltfr_pm_ops -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xdabd3edc stmmac_get_platform_resources -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xe89d163a stmmac_probe_config_dt -EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x4400edb2 w5100_pm_ops -EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x535b257c w5100_probe -EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xae08ea3f w5100_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xe2cd8a36 w5100_ops_priv -EXPORT_SYMBOL_GPL drivers/net/geneve 0x948cf1e1 geneve_dev_create_fb -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x0a38e799 ipvlan_link_register -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x665690a6 ipvlan_link_new -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xace716b3 ipvlan_link_setup -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xd136d78b ipvlan_link_delete -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xd822f2bf ipvlan_count_rx -EXPORT_SYMBOL_GPL drivers/net/macsec 0x6fbff52e macsec_pn_wrapped -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x16313a32 macvlan_link_register -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x353ca080 macvlan_common_newlink -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x3a9045ad macvlan_common_setup -EXPORT_SYMBOL_GPL drivers/net/macvlan 0xff3ba851 macvlan_dellink -EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-i2c 0xc0487426 mdio_i2c_alloc -EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-mux 0x3c0de595 mdio_mux_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xeac8b2e1 stmmac_dvr_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x1b2f62d3 stmmac_pltfr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x43865f7d stmmac_pltfr_pm_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x56d68865 stmmac_remove_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xaeec1334 stmmac_get_platform_resources +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xdfef132c stmmac_probe_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x1e38f7f7 w5100_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x404b8bf5 w5100_ops_priv +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x579411d3 w5100_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x88cbe1ec w5100_pm_ops +EXPORT_SYMBOL_GPL drivers/net/geneve 0x67f951b0 geneve_dev_create_fb +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x15144249 ipvlan_link_delete +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x4cf4c24c ipvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x90d68a46 ipvlan_link_setup +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xe1ca9a9e ipvlan_link_new +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xea1a92b2 ipvlan_count_rx +EXPORT_SYMBOL_GPL drivers/net/macsec 0x3affa876 macsec_pn_wrapped +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x50e28880 macvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x5fe38428 macvlan_common_newlink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x98ff3dcb macvlan_dellink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xbc65f370 macvlan_common_setup +EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-i2c 0x92f6e579 mdio_i2c_alloc EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-mux 0x6318757f mdio_mux_uninit -EXPORT_SYMBOL_GPL drivers/net/net_failover 0x5d034138 net_failover_create -EXPORT_SYMBOL_GPL drivers/net/net_failover 0x89f7f357 net_failover_destroy -EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x3ef139b2 xpcs_destroy -EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x5777300b xpcs_validate -EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x59b42f95 xpcs_get_an_mode -EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x9802e3b2 xpcs_do_config +EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-mux 0x77c5fa64 mdio_mux_init +EXPORT_SYMBOL_GPL drivers/net/net_failover 0x22ad34b7 net_failover_create +EXPORT_SYMBOL_GPL drivers/net/net_failover 0xcf1c509c net_failover_destroy +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x230b1ac5 xpcs_get_an_mode +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x3d8819c7 xpcs_validate +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x6840d43a xpcs_create +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x9bd9e11c xpcs_do_config +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x9beb8301 xpcs_config_eee +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xd5a2455b xpcs_destroy EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xe05362b0 xpcs_link_up -EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xf1c86652 xpcs_config_eee -EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xf7432da2 xpcs_create -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x08c1a438 __bcm_phy_modify_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x0ce21901 bcm_phy_read_shadow -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x10e67c04 bcm_phy_handle_interrupt -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x24662ea8 bcm_phy_cable_test_start_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x3b45ccf7 bcm_phy_set_eee -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x41dace6b bcm_phy_write_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x4b81200d bcm_phy_downshift_set -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x4f400fe6 bcm_phy_get_stats -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x53258b2b bcm_phy_cable_test_get_status -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x58896e31 bcm_phy_read_misc -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x58db2b95 bcm_phy_read_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x5b45e22e bcm_phy_write_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x5e2328f0 bcm_phy_write_shadow -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x6374ddcd bcm_phy_read_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x6b90b5fd bcm_phy_modify_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7ccaf1dc bcm_phy_enable_apd -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x8e58382a bcm_phy_28nm_a0b0_afe_config_init -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x904d94db bcm_phy_cable_test_start -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa1162b3b bcm_phy_get_strings -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa214ef75 __bcm_phy_write_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa7f72ab6 __bcm_phy_modify_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb88bc330 __bcm_phy_write_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc2fff81a bcm_phy_write_misc -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc4a63b73 bcm_phy_modify_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xcff02084 bcm_phy_enable_jumbo -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xd6655a1d bcm_phy_config_intr -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xd9b986e5 __bcm_phy_read_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xdb53e297 bcm_phy_r_rc_cal_reset -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe058c98a bcm54xx_auxctl_read -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe21670bd __bcm_phy_read_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe62ea8d5 bcm_phy_get_sset_count -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe689325d bcm_phy_ack_intr -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xea5a5f99 bcm_phy_downshift_get -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf8cce074 bcm_phy_cable_test_get_status_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x06d422a3 bcm_phy_28nm_a0b0_afe_config_init +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x10f42c82 bcm_phy_read_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x1b64387e bcm_phy_get_sset_count +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x1d1d1b35 bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x1e3211a5 __bcm_phy_read_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x1e562a69 bcm_phy_write_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x1eb74bdf bcm_phy_ack_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x1f9d59ed bcm_phy_get_stats +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x2008527d __bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x253ed06e bcm_phy_modify_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x3d72e54e __bcm_phy_modify_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x40169af7 bcm_phy_cable_test_start +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x472ff1d2 __bcm_phy_write_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x499cfccc bcm_phy_cable_test_get_status +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x4d4ff7d1 bcm_phy_cable_test_start_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x55c61175 bcm_phy_write_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x591c4a00 bcm_phy_downshift_get +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x6c5aea32 bcm_phy_config_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7125a671 bcm_phy_write_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x719b363c bcm_phy_get_strings +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x797189c6 bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7d479083 bcm_phy_handle_interrupt +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x83722eb8 bcm_phy_set_eee +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x8a70bcdd bcm_phy_downshift_set +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x8a8edc31 bcm_phy_modify_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x92c2e911 __bcm_phy_modify_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa5c5cd74 bcm_phy_enable_apd +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xab7766d4 bcm_phy_read_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc804faca bcm54xx_auxctl_read +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xd90bf600 bcm_phy_read_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xda24fc90 __bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xdb88099a bcm_phy_enable_jumbo +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xde48c5f6 bcm_phy_cable_test_get_status_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe384da34 bcm_phy_r_rc_cal_reset +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x009d76f2 phylink_mii_c22_pcs_an_restart EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x08213956 phylink_ethtool_get_wol EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x12135396 phylink_mac_change EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x131e8b94 phylink_helper_basex_speed 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 0x2c8e28ee phylink_ethtool_get_eee -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x31a21240 phylink_fwnode_phy_connect -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x42efc069 phylink_mii_c45_pcs_get_state -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x4d86a571 phylink_create -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x52d0f3de phylink_mii_c22_pcs_config +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x3e538389 phylink_mii_c22_pcs_set_advertisement 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 0x5aac7656 phylink_mii_c45_pcs_get_state +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x5c5f37bc phylink_mii_c22_pcs_get_state EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x5d0c4dcc phylink_speed_up +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x5fa3382b phylink_connect_phy EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x62104126 phylink_ethtool_set_wol -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x681360c1 phylink_mii_c22_pcs_an_restart EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x6831eccf phylink_ethtool_ksettings_get -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x69c631c1 phylink_connect_phy EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x6fa426d2 phylink_ethtool_nway_reset +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x715d3150 phylink_mii_c22_pcs_config +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x7476e208 phylink_fwnode_phy_connect EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x825c7340 phylink_get_eee_err EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x911fcd6c phylink_start EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x983276da phylink_disconnect_phy EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x9ad6f36d phylink_decode_usxgmii_word -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x9f4f5f3b phylink_of_phy_connect -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xab3aa4d7 phylink_mii_c22_pcs_get_state -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xb1d4f17b phylink_mii_c22_pcs_set_advertisement 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 0xc3906c58 phylink_ethtool_ksettings_set +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xc4fb4fb1 phylink_create +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xca691ac2 phylink_of_phy_connect EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xdcb0a2c0 phylink_stop EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xde66f4a7 phylink_mii_ioctl EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xe8c137ed phylink_set_pcs EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xec02ebe0 phylink_init_eee EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xf3083a1d phylink_destroy EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xf8fe5642 phylink_ethtool_get_pauseparam -EXPORT_SYMBOL_GPL drivers/net/tap 0x1f27aa58 tap_free_minor -EXPORT_SYMBOL_GPL drivers/net/tap 0x35964553 tap_handle_frame -EXPORT_SYMBOL_GPL drivers/net/tap 0x44d40307 tap_destroy_cdev -EXPORT_SYMBOL_GPL drivers/net/tap 0x509c6065 tap_queue_resize -EXPORT_SYMBOL_GPL drivers/net/tap 0x648a505f tap_del_queues -EXPORT_SYMBOL_GPL drivers/net/tap 0xad091731 tap_get_socket -EXPORT_SYMBOL_GPL drivers/net/tap 0xb5674d10 tap_get_minor -EXPORT_SYMBOL_GPL drivers/net/tap 0xc8528666 tap_get_ptr_ring -EXPORT_SYMBOL_GPL drivers/net/tap 0xd186fe2b tap_create_cdev -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x02aa3a7e usbnet_cdc_update_filter -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x2e7bca4f usbnet_cdc_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xa13b9ad5 usbnet_cdc_status -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xb4294117 usbnet_cdc_bind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xbd5066dc usbnet_ether_cdc_bind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xf848f3fe usbnet_generic_cdc_bind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x03c73dcc cdc_ncm_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x0704409b cdc_ncm_fill_tx_frame -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x0e761afa cdc_ncm_rx_verify_nth32 -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x136481c2 cdc_ncm_bind_common -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x22448609 cdc_ncm_rx_verify_ndp32 -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x5b460e4f cdc_ncm_select_altsetting -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x7d6c8710 cdc_ncm_rx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x807a8ecd cdc_ncm_change_mtu -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x8c6f1b68 cdc_ncm_rx_verify_nth16 -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xbe770fe1 cdc_ncm_rx_verify_ndp16 -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xcb697f70 cdc_ncm_tx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/r8152 0x6ec9ebc5 rtl8152_get_version -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x0329f925 rndis_tx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x8b904c82 rndis_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x9b4d45f5 rndis_command -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xb1cdaa00 generic_rndis_bind -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xbd40541c rndis_status -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xdc99298a rndis_rx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x00e89945 usbnet_start_xmit -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x0317cc50 usbnet_status_stop -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x14e25602 usbnet_read_cmd_nopm -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x15a0dee6 usbnet_set_rx_mode -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x27f313ad usbnet_nway_reset -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2c2aa2e8 usbnet_get_endpoints -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2def4739 usbnet_get_link_ksettings_mii -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x37624eb3 usbnet_update_max_qlen -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3a2cc5b0 usbnet_set_msglevel -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4cbcda97 usbnet_defer_kevent -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4ecf874a usbnet_get_link -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4ff499ca usbnet_get_ethernet_addr -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x542231f6 usbnet_open -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x54a1a625 usbnet_disconnect -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5a3d1819 usbnet_read_cmd -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5afc66ee usbnet_probe -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x667d8710 usbnet_skb_return -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7c64276b usbnet_resume_rx -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9205a735 usbnet_tx_timeout -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x92e9fe15 usbnet_write_cmd_nopm -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x963b7de7 usbnet_write_cmd_async -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa7aa08d7 usbnet_resume -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xaf93c81a usbnet_stop -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb1935e6d usbnet_get_link_ksettings_internal -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc03a88ef usbnet_status_start -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc28cf286 usbnet_write_cmd -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc5ca62be usbnet_get_drvinfo -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc86f7acc usbnet_unlink_rx_urbs -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd546113f usbnet_purge_paused_rxq -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xdff12652 usbnet_change_mtu -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xefa4a912 usbnet_pause_rx -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf299abf3 usbnet_set_link_ksettings_mii -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf48be86a usbnet_suspend -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xfa4760e0 usbnet_get_msglevel -EXPORT_SYMBOL_GPL drivers/net/vxlan 0x09221033 vxlan_fdb_clear_offload -EXPORT_SYMBOL_GPL drivers/net/vxlan 0x5fda6123 vxlan_fdb_replay -EXPORT_SYMBOL_GPL drivers/net/vxlan 0x81206154 vxlan_dev_create -EXPORT_SYMBOL_GPL drivers/net/vxlan 0xd41a06d3 vxlan_fdb_find_uc -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/ipw2x00/libipw 0x31ef0e4d libipw_rx_any -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x04884f7d il_mac_tx_last_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1474acd9 il_prep_station -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x42573e27 _il_grab_nic_access -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb369db11 il_remove_station -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc570cedc il_dealloc_bcast_stations -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x025863f9 iwl_set_bits_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x03763ee0 iwl_get_cmd_string -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x045accbc iwl_opmode_register -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x0634509e iwl_init_paging -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x09c5e09d iwl_read_prph_no_grab -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x0ee1faa4 iwl_get_nvm -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x0f27307f iwl_pnvm_load -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x13bbdd9e iwl_set_bits_mask_prph +EXPORT_SYMBOL_GPL drivers/net/tap 0x18fb7b03 tap_get_socket +EXPORT_SYMBOL_GPL drivers/net/tap 0x2ea19f9c tap_free_minor +EXPORT_SYMBOL_GPL drivers/net/tap 0x45229f59 tap_get_ptr_ring +EXPORT_SYMBOL_GPL drivers/net/tap 0x4f0c045e tap_create_cdev +EXPORT_SYMBOL_GPL drivers/net/tap 0x62fc5261 tap_destroy_cdev +EXPORT_SYMBOL_GPL drivers/net/tap 0x96b776bb tap_handle_frame +EXPORT_SYMBOL_GPL drivers/net/tap 0xba961895 tap_del_queues +EXPORT_SYMBOL_GPL drivers/net/tap 0xc59266c8 tap_get_minor +EXPORT_SYMBOL_GPL drivers/net/tap 0xce85edeb tap_queue_resize +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x2c1bae7c usbnet_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x3fc8195f usbnet_cdc_status +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x5b41144c usbnet_generic_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x5fe75d97 usbnet_cdc_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xe1c16263 usbnet_cdc_update_filter +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xef8c57e5 usbnet_ether_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x0e7369db cdc_ncm_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x1ce8458c cdc_ncm_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x1e729f45 cdc_ncm_select_altsetting +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x2f309d9d cdc_ncm_rx_verify_ndp32 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x53e6cb35 cdc_ncm_fill_tx_frame +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x543b8f0a cdc_ncm_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x6972447d cdc_ncm_rx_verify_nth32 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x84a602d8 cdc_ncm_bind_common +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xb3b0aef4 cdc_ncm_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xd9a8736a cdc_ncm_rx_verify_ndp16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xda0a6d65 cdc_ncm_rx_verify_nth16 +EXPORT_SYMBOL_GPL drivers/net/usb/r8152 0xba698957 rtl8152_get_version +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x3847eb7b rndis_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x45a775ad rndis_command +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x5be9a203 rndis_status +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x66c3d9c4 rndis_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x70f02e55 generic_rndis_bind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x7cdb6f2f rndis_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x02bcbd52 usbnet_skb_return +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x0e3417b7 usbnet_defer_kevent +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x12d228a4 usbnet_write_cmd_async +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1ae324c2 usbnet_set_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x28378ed3 usbnet_resume_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2bf20937 usbnet_read_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x34d69d0c usbnet_status_start +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4047d657 usbnet_get_link +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x41a1fbc6 usbnet_get_endpoints +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x66ca014c usbnet_set_rx_mode +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6d46bd10 usbnet_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6dff7f44 usbnet_get_drvinfo +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6e72ebe5 usbnet_disconnect +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x714150a0 usbnet_set_link_ksettings_mii +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x71f0f4d2 usbnet_write_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8118dee3 usbnet_start_xmit +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8683690a usbnet_status_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8b9b72a1 usbnet_get_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x905de8f5 usbnet_read_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x95036959 usbnet_get_ethernet_addr +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9e9cde4f usbnet_tx_timeout +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa12ba6d8 usbnet_get_link_ksettings_internal +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa21dd2b1 usbnet_unlink_rx_urbs +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa69f1f88 usbnet_get_link_ksettings_mii +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xac6838ba usbnet_resume +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xae8fec41 usbnet_purge_paused_rxq +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc9ac1136 usbnet_open +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xcebb8dfa usbnet_update_max_qlen +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd6c83a44 usbnet_probe +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe139b992 usbnet_suspend +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe32e7257 usbnet_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf07ea577 usbnet_pause_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf75dc559 usbnet_write_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf9b4b1a2 usbnet_nway_reset +EXPORT_SYMBOL_GPL drivers/net/vxlan 0x08f2f8b8 vxlan_fdb_clear_offload +EXPORT_SYMBOL_GPL drivers/net/vxlan 0x33e1bf98 vxlan_fdb_replay +EXPORT_SYMBOL_GPL drivers/net/vxlan 0xa16d8ac0 vxlan_fdb_find_uc +EXPORT_SYMBOL_GPL drivers/net/vxlan 0xe030b7cb vxlan_dev_create +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/ipw2x00/libipw 0xc69d89ac libipw_rx_any +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x102fc9ac il_remove_station +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x69135f81 il_prep_station +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x842b0702 il_mac_tx_last_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa28c3f5c il_dealloc_bcast_stations +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc0172c57 _il_grab_nic_access +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x027d99b8 iwl_read_prph_no_grab +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x05c501fc iwl_read_external_nvm +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x0feb3c30 iwl_fw_runtime_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x133ce0b0 iwl_write64 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1a6e6812 iwl_read_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1c27cdfb iwl_set_bits_mask_prph EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1c48129a iwl_dump_desc_assert -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2211f385 iwl_fw_runtime_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x250a0660 iwl_parse_nvm_mcc_info -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x285b26db iwl_dbg_tlv_del_timers +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x24c7da19 iwl_get_shared_mem_conf +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x255f9d30 iwl_force_nmi +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2631d1a8 iwl_fw_dbg_collect_desc EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2c0f571f iwl_init_notification_wait -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x310a2b6d __iwl_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2d003a31 iwl_write_prph_delay EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x35033c81 iwl_phy_db_free -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x36caba35 iwl_trans_send_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x37506e83 iwl_poll_bit -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x3aaadf9b iwl_finish_nic_init -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x3f5ce02b iwl_read_direct32 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x40a6ec01 iwl_write_prph64_no_grab +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x3d785b0c iwl_get_nvm +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x3ddb1b68 iwl_opmode_register EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x47e3dc83 iwl_fw_lookup_notif_ver +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x480291f2 iwl_pnvm_load +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x51949d30 __iwl_crit +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x523a9b2a iwl_trans_send_cmd EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5987fe45 iwl_fw_lookup_assert_desc +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5a67dc41 iwl_init_paging +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5bf4f7a5 __iwl_info EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5c52e109 iwl_opmode_deregister +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5d861f86 iwl_fw_dbg_collect_trig +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5eb9e8ff iwl_write8 EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5ef4a44d iwl_notification_wait -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x60127ce9 iwl_cmd_groups_verify_sorted -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x60f4b38a iwl_fw_runtime_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x6fcb302a iwl_parse_eeprom_data +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x636d0050 iwl_fw_dbg_stop_restart_recording +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x6c0674a1 iwl_write_prph_no_grab +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x7153b68d iwl_write32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x73194663 iwl_clear_bits_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x7657b8b6 iwl_set_soc_latency EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x776221bf iwl_send_phy_db_data -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x7a252c45 iwl_read_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8c17fa5e __iwl_info -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8e45a948 iwl_poll_direct_bit +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x7b71a5d4 iwl_write_prph64_no_grab +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8074d6f3 iwl_set_bits_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x82de8d54 iwl_parse_eeprom_data +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x883d29a1 iwl_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x9029a12c iwl_cmd_groups_verify_sorted EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x93160e9e iwl_abort_notification_waits -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x969fd936 iwl_write_direct32 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x9c3c18b0 iwl_fw_dbg_error_collect -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa47c2fb9 iwl_configure_rxq -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa5764c34 iwl_write32 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa623aa21 iwl_parse_nvm_data -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa8fc853f iwl_clear_bits_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x9ba70b97 iwl_write_direct32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa543a10c __iwl_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa641a0c6 iwl_finish_nic_init +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa8ae2689 iwl_parse_nvm_mcc_info +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa9ca8fb6 iwl_configure_rxq EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa9f05394 iwlwifi_mod_params -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xaa410931 iwl_fw_dbg_stop_sync -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xac4c1fa3 _iwl_dbg_tlv_time_point -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xac5df721 iwl_fw_dbg_collect -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb16c473a iwl_fw_runtime_init EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb1e39cb3 iwl_remove_notification -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb65d938d __iwl_err -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xbf2d2607 iwl_fw_dbg_stop_restart_recording +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb20ee88d iwl_read32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xbbbb0748 iwl_phy_db_init +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xbc3678ca _iwl_dbg_tlv_time_point +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xbcb4d329 iwl_fw_dbg_collect +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xbdab12bb iwl_fw_runtime_init +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xbec63646 iwl_fw_runtime_suspend EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc05e5efd iwl_fw_lookup_cmd_ver -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc38fa970 __iwl_warn -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc4d5478c __iwl_crit -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xca4079f5 iwl_fw_dbg_collect_desc +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc24afc55 iwl_get_cmd_string +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc28eb384 iwl_free_fw_paging +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xcabbc400 iwl_read_direct32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xcddcaf9e iwl_fw_dbg_read_d3_debug_data +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xcde6a79a iwl_fw_dbg_error_collect EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xce0c6460 iwl_phy_db_set_section -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd0b91501 iwl_read_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd0cb3790 iwl_dbg_tlv_del_timers +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd2c64bee iwl_fw_start_dbg_conf EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd2de3cc1 iwl_wait_notification -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd4029a4e iwl_set_soc_latency -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd90c294b iwl_write64 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xda3b3110 iwl_fw_start_dbg_conf -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xdadf5d34 iwl_phy_db_init -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xdaee724c iwl_fw_dbg_collect_trig +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd605af37 iwl_fwrt_dump_error_logs +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xdc04de57 __iwl_err EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xdec9e66d iwl_notification_wait_init -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe3452eca iwl_force_nmi -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe39065ac iwl_write8 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe98223ce iwl_free_fw_paging +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe55635cf iwl_parse_nvm_data EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xea1b26fc iwl_nvm_fixups -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xeae5bc49 iwl_write_direct64 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xed390827 iwl_fwrt_dump_error_logs -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xee4b9f5a iwl_write_prph_delay -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf3e8d5c9 iwl_fw_dbg_read_d3_debug_data -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf7eaa875 iwl_read32 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf8150288 iwl_write_prph_no_grab -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xfbe5814c iwl_read_external_nvm -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xfef48498 iwl_get_shared_mem_conf -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x27ad11fa p54_free_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x53b57d42 p54_unregister_common -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x548f1d50 p54_register_common -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x768a5a8a p54_parse_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xb431badc p54_read_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xd358bf0f p54_parse_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xdf3680e7 p54_init_common -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xf763d602 p54_free_common -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xf9f69683 p54_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x01615241 lbs_start_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x2815ba0b lbs_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x2ad79dc8 lbs_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x3b741ce3 lbs_host_to_card_done -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x4b47ba3c lbs_host_sleep_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x4df0d36f lbs_get_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf1020259 iwl_poll_bit +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf912d3af __iwl_warn +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf9c85daa iwl_write_direct64 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xfc3abea7 iwl_poll_direct_bit +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xfdb5b807 iwl_fw_dbg_stop_sync +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x21d67a70 p54_unregister_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x39a859a5 p54_free_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x6b40ce2e p54_parse_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x82c8152f p54_free_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x99427b75 p54_register_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xc481e3bd p54_parse_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xc49fcfd5 p54_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xeeebcda3 p54_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xf9c57cea p54_init_common +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x02eba3b4 lbs_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x183afa54 lbs_host_sleep_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x30aacf5e lbs_get_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x3421b6b1 lbs_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x53fcccb8 lbs_get_firmware_async EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x5fdf38b8 lbs_disablemesh -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x6104953d lbs_send_tx_feedback -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x88a0f012 lbs_process_rxed_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x90d13efe lbs_queue_event -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xc2fd0344 __lbs_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xc45b506a lbs_get_firmware_async -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xcdc34a02 lbs_notify_command_response -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xd9e66212 lbs_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xe11caf9f lbs_stop_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xe865d54d lbs_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xf57519aa lbs_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x627d3e08 __lbs_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x70efef1b lbs_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x7b2bec9d lbs_host_to_card_done +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x8083d8f3 lbs_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x865aca94 lbs_notify_command_response +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x9f39da9d lbs_stop_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xbd0c6b26 lbs_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xd544613c lbs_process_rxed_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xec4eb185 lbs_queue_event +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xf338e3e1 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 0x03265197 lbtf_cmd_copyback -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x1ddab239 lbtf_cmd_response_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x6d4dd059 lbtf_send_tx_feedback -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x7446f066 lbtf_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x8cef28ad lbtf_bcn_sent -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xb35d6646 lbtf_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xff4d4b21 lbs_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x3a585be9 lbtf_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x67ed90ad lbtf_bcn_sent +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x7392f397 lbtf_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x8545d3e3 lbtf_cmd_response_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x8ebb15c0 lbtf_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xacf9d4d5 lbtf_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xc13618d8 __lbtf_cmd EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xc85e6899 lbtf_debug -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xdf35837a lbtf_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xfc19aa8c __lbtf_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x189df88e mwifiex_init_shutdown_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x1d7de208 mwifiex_fw_dump_event -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x2b2b868f mwifiex_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x2ba211c2 mwifiex_prepare_fw_dump_info -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x3c18c2cf _mwifiex_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x6a1bfb99 mwifiex_write_data_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x6b6fc445 mwifiex_process_sleep_confirm_resp -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x6e2fa24a mwifiex_upload_device_dump -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x7d97b3f0 mwifiex_queue_main_work -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x84bdaf36 mwifiex_disable_auto_ds -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x8dec5395 mwifiex_drv_info_dump -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x8f7651e5 mwifiex_multi_chan_resync -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x9fec0939 mwifiex_main_process -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xaca8c625 mwifiex_reinit_sw -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xb695aae2 mwifiex_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xbb06dc78 mwifiex_enable_hs -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xcf66f284 mwifiex_deauthenticate_all +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xd54ef0de lbtf_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x0cb5a479 mwifiex_cancel_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x12df9a8f mwifiex_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x14882625 mwifiex_upload_device_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x1ea75d45 mwifiex_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x2caecab1 mwifiex_write_data_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x37cf57b3 mwifiex_prepare_fw_dump_info +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x40ad927c _mwifiex_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x5f8da44d mwifiex_process_hs_config +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x76621f4d mwifiex_reinit_sw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x781fd10e mwifiex_drv_info_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x880cc9c8 mwifiex_process_sleep_confirm_resp +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xa27666a6 mwifiex_del_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xa5569486 mwifiex_shutdown_sw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xa6001f28 mwifiex_disable_auto_ds +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xb2ab0a38 mwifiex_init_shutdown_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xb5600ff9 mwifiex_main_process +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xb5e2baac mwifiex_multi_chan_resync +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xba383fc5 mwifiex_enable_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xbafeea17 mwifiex_handle_rx_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xbe298db0 mwifiex_add_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xc4240582 mwifiex_dnld_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xcb274240 mwifiex_queue_main_work EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xd4dad9f3 mwifiex_alloc_dma_align_buf -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xd85a5899 mwifiex_shutdown_sw -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xdd031ca0 mwifiex_handle_rx_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xdf204803 mwifiex_add_virtual_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xdf780e6a mwifiex_dnld_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xe30d8dde mwifiex_cancel_hs -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xee89b1a7 mwifiex_process_hs_config -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xf24bb0ad mwifiex_del_virtual_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0332e375 mt76_csa_check -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x03367770 mt76_mcu_send_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x03c5d3cd mt76_insert_ccmp_hdr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x05e07642 mt76_sta_pre_rcu_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0810d0a7 __traceiter_dev_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x10e314d1 mt76_set_tim -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x125c8181 mt76_set_irq_mask -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x172e75a7 mt76_unregister_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x17ab7ae1 mt76_txq_schedule_all +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xda2f6252 mwifiex_deauthenticate_all +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xe073c1e8 mwifiex_fw_dump_event +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x04f0db04 mt76_tx_status_skb_get +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x05dccf58 mt76_wake_tx_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x06043840 mt76_csa_finish +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x093e25f8 mt76_dma_rx_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0b04cb0e mt76_tx_status_unlock +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0ca5e07a mt76_update_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0e11ac57 mt76_get_rate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x137eabc3 mt76_rx_poll_complete EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x17f568e9 mt76_rates -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1cbe7c5f mt76_token_release +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1880441c mt76_alloc_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x191b6a52 mt76_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x194b9659 mt76_register_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x19d29c0b mt76_unregister_phy EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1ec57b4f __mt76_worker_fn -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1f8188e7 mt76_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x25a871c7 mt76_pci_disable_aspm -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2b4b5a00 mt76_get_rate_power_limits -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2dc7641f mt76_update_survey_active_time -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x31adef69 mt76_tx_status_unlock -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x34733522 mt76_tx_check_agg_ssn -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x37d2d45a mt76_get_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x37eae6ae mt76_init_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2598d49c mt76_mcu_msg_alloc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2c0c6ba8 mt76_mcu_get_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x30f1094b mt76_tx_status_skb_done +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x32204bc0 mt76_seq_puts_array +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3b2452a7 mt76_insert_ccmp_hdr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3c3a1a0c mt76_update_survey_active_time +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3e2ae90a mt76_sw_scan_complete EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x41387653 __tracepoint_mac_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x424ed294 mt76_rx_poll_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4893b81a mt76_tx_status_skb_done -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4ab07f04 mt76_seq_puts_array +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4202f60c mt76_token_release +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x493801ef mt76_tx_status_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4bf48486 mt76_unregister_device EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4d5bb0c8 __tracepoint_dev_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4db0deb8 mt76_unregister_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x515eb2cd mt76_eeprom_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x53485ced mt76_get_of_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x54c923b4 mt76_get_rate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x54d5ba8c mt76_txq_schedule -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x585358aa mt76_release_buffered_frames -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5b8e36a9 mt76_mcu_skb_send_and_get_msg -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5c5710fd mt76_tx_status_lock -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5eaba764 mt76_queues_read -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5ed8596b mt76_dma_attach -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x612358b6 mt76_set_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6e0aacf5 mt76_sw_scan -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6e947175 mt76_free_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6fd20519 __mt76_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6fe065e8 mt76_rx_aggr_start -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x712ead53 __mt76_poll_msec -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x77e4d6d7 __mt76_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7db26b58 mt76_eeprom_override +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x50194370 mt76_token_consume +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x555acff7 mt76_tx_worker_run +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x58fe0b8f mt76_free_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x59b9b180 __mt76_poll_msec +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5dc399b8 mt76_stop_tx_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x662ad063 mt76_queues_read +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x662e0a5b mt76_eeprom_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6da74dd5 mt76_txq_schedule_all +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x71670aa2 mt76_csa_check +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x72ff105e mt76_mcu_rx_event +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x73c8649c mt76_skb_adjust_pad +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7520d2e8 mt76_set_stream_caps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x756bf8a9 mt76_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7a4d80ce mt76_sw_scan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7ea81f04 mt76_register_device EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x805fc13a __SCK__tp_func_dev_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8335aa26 mt76_skb_adjust_pad -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x84407f44 mt76_tx_status_skb_get -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8aeadf52 mt76_tx_worker_run -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8d847f81 __mt76_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8d86f345 mt76_mmio_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8ddbf013 mt76_dma_rx_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9058abb6 mt76_csa_finish -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9a8a1b6a mt76_sta_state -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9f15c03b mt76_mcu_send_and_get_msg -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9f49356c mt76_mcu_rx_event -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa3671870 mt76_put_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa481b0a3 mt76_register_debugfs_fops -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa90b5c58 mt76_get_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb0749020 mt76_queue_tx_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb44959e8 mt76_get_survey -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb753e633 mt76_register_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb8cca1d2 __traceiter_mac_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb8cf67cb mt76_stop_tx_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbb703df2 mt76_mcu_get_response -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc0295a2e mt76_register_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc239072c mt76_set_stream_caps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc3b99715 mt76_tx_status_check +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8b1a3790 mt76_tx_status_skb_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9441566d mt76_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x99cf57cf mt76_mcu_skb_send_and_get_msg +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x99f76d93 mt76_register_debugfs_fops +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9dbc8146 __mt76_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa200e93b mt76_set_irq_mask +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa85af313 mt76_mcu_send_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa9c4d478 mt76_get_of_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xacb6ea5d mt76_release_buffered_frames +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xba9375fe mt76_has_tx_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbc42bf03 __traceiter_mac_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbc43e08d mt76_set_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbf2b0a90 mt76_rx_aggr_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc19ebb50 mt76_get_min_avg_rssi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc363d68a mt76_queue_tx_complete 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 0xca5eddc2 mt76_rx_aggr_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xcb747dfe mt76_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xcdff3d9f mt76_alloc_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd04189f6 mt76_get_min_avg_rssi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd40a9738 mt76_has_tx_pending -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd4937de5 mt76_update_survey -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd9229798 mt76_token_consume -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xddc55729 mt76_wake_tx_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe16fd59b mt76_dma_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc8b33f46 mt76_tx_status_check +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xca4f4d9f __mt76_set_tx_blocked +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xcbd923af mt76_pci_disable_aspm +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd1981e68 __traceiter_dev_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd31b2e94 mt76_txq_schedule +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd7ab3281 __mt76_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd8897d9b mt76_tx_check_agg_ssn +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd8c68cf1 mt76_mcu_send_and_get_msg +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd930d042 mt76_get_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xdb3a8a9c mt76_dma_attach +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xdd7620a2 mt76_dma_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xde7f752b mt76_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xdf9bf283 mt76_init_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe0fb51e6 mt76_alloc_device EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe40b66ef mt76_wcid_alloc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe4b4f546 mt76_sw_scan_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe5dcbc40 mt76_tx_status_skb_add -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe7c402ff mt76_mcu_msg_alloc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf0352769 mt76_alloc_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xfea4f391 __mt76_set_tx_blocked -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x01fb272a mt76_connac_mcu_sched_scan_req -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x075892ed mt76_connac_mcu_set_deep_sleep -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x0e70e4a1 mt76_connac_mcu_wtbl_generic_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x114c03c6 mt76_connac_mcu_sta_ba_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x16ed8cd9 mt76_connac_mcu_wtbl_ht_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x25630b96 mt76_connac_mcu_set_hif_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x402138dd mt76_connac_mcu_chip_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x42e279a2 mt76_connac_mcu_sta_ba -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x45836430 mt76_connac_mcu_uni_add_bss -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x46ea0693 mt76_connac_mcu_sta_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x49896d80 mt76_connac_mcu_cancel_hw_scan -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4bb1cb13 mt76_connac_free_pending_tx_skbs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4c35c129 mt76_connac_pm_queue_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x522b02a0 mt76_connac_mcu_hw_scan -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x54b02b5f mt76_connac_mcu_init_download -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x56c37284 mt76_connac_mcu_set_rts_thresh -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x578982c0 mt76_connac_mcu_set_vif_ps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x5ccac100 mt76_connac_mcu_beacon_loss_iter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x5dab1a9f mt76_connac_mcu_get_nic_capability -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x6116a2bb mt76_connac_sta_state_dp -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x65640ee4 mt76_connac_mcu_start_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x670380bb mt76_connac_mcu_coredump_event -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x675acd77 mt76_connac_mcu_set_mac_enable -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x6eef6265 mt76_connac_mcu_wtbl_hdr_trans_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x8a5db59a mt76_connac_pm_dequeue_skbs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x8d0cfeab mt76_connac_mcu_wtbl_ba_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x8da75c83 mt76_connac_mcu_set_channel_domain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x9009540e mt76_connac_mcu_uni_add_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe5ceb891 __mt76_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe677f65b mt76_eeprom_override +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe801697c mt76_get_rate_power_limits +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xea1a598f mt76_put_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xeaa316dd mt76_sta_pre_rcu_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf7404429 mt76_mmio_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf96892ae mt76_sta_state +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xfcc9a1bb mt76_rx_aggr_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xfe8d7806 mt76_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x03a3f76a mt76_connac_mcu_cancel_hw_scan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x045d5a58 mt76_connac_power_save_sched +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x093627c8 mt76_connac_mcu_set_mac_enable +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x0956d23e mt76_connac_mcu_hw_scan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x09d0fa19 mt76_connac_pm_queue_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x0dd90897 mt76_connac_mcu_set_channel_domain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x0e1117f9 mt76_connac_mcu_set_rts_thresh +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x11128dd4 mt76_connac_mcu_sched_scan_enable +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x157ec675 mt76_connac_mcu_set_deep_sleep +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x159b9a07 mt76_connac_mcu_start_patch +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x1806a8d8 mt76_connac_mcu_wtbl_hdr_trans_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x1bc5d2c7 mt76_connac_mcu_sta_ba_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x27310e8a mt76_connac_mcu_set_hif_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x27b9d58e mt76_connac_mcu_sta_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x347bb99e mt76_connac_mcu_set_rate_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x40402c62 mt76_connac_mcu_coredump_event +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4373bc17 mt76_connac_mcu_sta_basic_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4c6fecf4 mt76_connac_mcu_start_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4f156bc5 mt76_connac_mcu_sta_ba +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4ff58dd7 mt76_connac_mcu_update_arp_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x50d2bc36 mt76_connac_mcu_get_nic_capability +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x5733f6e3 mt76_connac_mcu_update_gtk_rekey +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x5b831220 mt76_connac_mcu_sta_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x676a8de1 mt76_connac_mcu_sched_scan_req +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x6c155bcd mt76_connac_mcu_wtbl_ht_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x73638ddd mt76_connac_free_pending_tx_skbs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x809dd9e0 mt76_connac_mcu_uni_add_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x83b1c783 mt76_connac_mcu_sta_update_hdr_trans +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x852da54e mt76_connac_mcu_alloc_sta_req +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x85b6254a mt76_connac_sta_state_dp 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 0x98ef6d6e mt76_connac_mcu_update_gtk_rekey -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa3ee8cc8 mt76_connac_mcu_set_rate_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa49f7a1d mt76_connac_power_save_sched -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa7c89c0b mt76_connac_mcu_start_patch -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb4664f4f mt76_connac_mcu_sta_update_hdr_trans -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xbbc9963b mt76_connac_mcu_sta_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xbbd73ba4 mt76_connac_mcu_set_suspend_iter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc0c48426 mt76_connac_pm_wake -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe533d1a6 mt76_connac_mcu_sched_scan_enable -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe6239677 mt76_connac_mcu_sta_basic_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe76f4fb2 mt76_connac_mcu_update_arp_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf0782bc2 mt76_connac_mcu_alloc_sta_req -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf13bbff5 mt76_connac_mcu_alloc_wtbl_req -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf677acfc mt76_connac_mcu_add_nested_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xfb8b9c10 mt76_connac_mcu_patch_sem_ctrl -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x9719b97b mt76s_alloc_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xa05a59c2 mt76s_deinit -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xc67233d7 mt76s_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x167efc5c mt76u_queues_deinit -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x3f2eefe5 mt76u_resume_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x5f3cffe2 mt76u_vendor_request -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x648537e8 mt76u_alloc_mcu_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x76a9ac49 mt76u_stop_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xa110bd50 mt76u_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xca678d25 mt76u_single_wr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xddf70215 mt76u_alloc_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xf3d0d083 mt76u_stop_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x022bc7d1 mt7615_queue_rx_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x06498b84 mt7615_txp_skb_unmap -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x12ca332e mt7615_sta_ps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x19ffd998 mt7615_mac_write_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x1ccba8ef mt7615_mcu_reg_wr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x357ffea0 mt7615_init_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x45176fb0 mt7615_wait_for_mcu_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x4c36e3aa mt7615_mac_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x51786fa3 mt7615_mac_sta_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x62050cb0 mt7615_init_debugfs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x63683ef3 mt7615_mcu_restart -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x66d0600f mt7622_trigger_hif_int -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x74b1acc9 mt7615_init_work -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x7d775b9c mt7615_mcu_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x80396df2 mt7615_thermal_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x85201086 mt7615_mcu_parse_response -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x876d03e1 mt7615_tx_token_put -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x8fb9431c mt7615_mcu_reg_rr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x993e9d11 mt7615_update_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xae1217f0 mt7615_mac_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xb23c0013 mt7615_init_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xb5cb25d2 __mt7663_load_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xb5dfd3a5 mt7615_register_ext_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xc2794277 mt7615_mac_set_rates -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xc656d0cb mt7615_mcu_fill_msg -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xc89bc40c mt7615_eeprom_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xe7e5aa91 mt7615_unregister_ext_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xe8dfd0a1 mt7615_mcu_exit -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xf30f22ef mt7615_ops -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615e 0x551ba13e mt7615_dma_reset -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x0d41e895 mt7663_usb_sdio_tx_status_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x95997d68 mt76_connac_pm_wake +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa1cf0ee4 mt76_connac_mcu_uni_add_bss +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xaf39af37 mt76_connac_pm_dequeue_skbs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb8b85b92 mt76_connac_mcu_alloc_wtbl_req +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc1cc8a4e mt76_connac_mcu_wtbl_ba_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc27b3dbe mt76_connac_mcu_chip_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc49267e9 mt76_connac_mcu_add_nested_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc8008999 mt76_connac_mcu_wtbl_generic_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xcc23a6c6 mt76_connac_mcu_beacon_loss_iter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd7e63030 mt76_connac_mcu_set_vif_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xdfc31244 mt76_connac_mcu_init_download +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe8095b0f mt76_connac_mcu_patch_sem_ctrl +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf9528850 mt76_connac_mcu_set_suspend_iter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x62c1a1e8 mt76s_alloc_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x963c2c7b mt76s_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xe2013935 mt76s_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x465bd355 mt76u_queues_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x76fee0f6 mt76u_single_wr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x88818eb8 mt76u_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x9ba7f612 mt76u_stop_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xcb506ecb mt76u_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xd1b9d94d mt76u_alloc_mcu_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xf8b404ac mt76u_alloc_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xf8f39cd5 mt76u_resume_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xfd2fdc25 mt76u_stop_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x00ff998a mt7615_mac_sta_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x0879e8ea mt7615_mac_write_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x0d8eeb8b __mt7663_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x17cb12d2 mt7615_mcu_fill_msg +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x352aad1d mt7615_eeprom_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x35b2a55b mt7615_mac_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x38cee87e mt7615_mcu_restart +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x39330f3c mt7615_queue_rx_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x39696a30 mt7615_mac_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x3ab822bc mt7615_mcu_reg_wr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x3ecf1382 mt7615_txp_skb_unmap +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x6ff48e5b mt7615_update_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x7126dc47 mt7615_mac_set_rates +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x74d8af71 mt7615_mcu_exit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x798c100a mt7615_unregister_ext_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x893a02d4 mt7615_init_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x89b105c7 mt7615_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xb2a9fb38 mt7615_init_debugfs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xb5b42f0d mt7615_init_work +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xb649ad14 mt7615_thermal_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xb7efeaa3 mt7615_tx_token_put +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xbc66c4ff mt7615_wait_for_mcu_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xce3977de mt7615_mcu_reg_rr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xd42e1194 mt7615_init_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xd5c73205 mt7615_sta_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xd6826aa0 mt7622_trigger_hif_int +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xe7dc2b55 mt7615_mcu_parse_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xf043ee2b mt7615_register_ext_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xf990b3ba mt7615_mcu_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615e 0x935cd47d 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 0x2f89071f mt7663_usb_sdio_register_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x4f74e551 mt7663_usb_sdio_tx_prepare_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0xbf5db821 mt7663_usb_sdio_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x15c06edc mt76x0_phy_calibrate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x23e6348c mt76x0_chip_onoff -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x7d9c5c9c mt76x0_register_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xac9235e7 mt76x0_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xc1bafc9b mt76x0_mac_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xcf15a71e mt76x0_init_hardware -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x01d16780 mt76x02_edcca_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x02a707f0 mt76x02_dma_disable +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x1627d441 mt7663_usb_sdio_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x1668caaf mt7663_usb_sdio_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x4ffb5c69 mt7663_usb_sdio_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x7ba2bd45 mt7663_usb_sdio_tx_status_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x01b3be8c mt76x0_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x0f026fc4 mt76x0_chip_onoff +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x612e3a67 mt76x0_init_hardware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xab00c059 mt76x0_phy_calibrate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xac18d49a mt76x0_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xc3900290 mt76x0_mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0163f11e mt76x02_queue_rx_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0259d318 mt76x02_set_tx_ackto +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0440cf6d mt76x02_init_device EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0462ce68 mt76x02_add_rate_power_offset -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x05e1b032 mt76x02_mac_start -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x093a8d8c mt76x02_init_debugfs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x09d9f6e7 mt76x02_ampdu_action -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0cc99517 mt76x02_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x05f32900 mt76x02_tx_set_txpwr_auto +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x084bbe3e mt76x02_get_efuse_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0c1c7d8c mt76x02_init_beacon_config EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0d4023ec mt76x02_get_max_rate_power -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x101a36fd mt76x02_ext_pa_enabled -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x105811f2 mt76x02_sta_ps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x16c30012 mt76x02_reconfig_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x17c7c3cc mt76x02_get_rx_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1fe5cfcd mt76x02_add_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2471a2ca mt76x02_eeprom_parse_hw_cap -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2590c5d9 mt76x02_phy_dfs_adjust_agc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x26455655 mt76x02_mcu_parse_response -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2a83649f mt76x02_mac_reset_counters -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2a965581 mt76x02_mac_write_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2c8e3bcf mt76x02_phy_adjust_vga_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3099ddb6 mt76x02_mcu_cleanup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x30cf3f60 mt76x02_resync_beacon_timer -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x319f746a mt76x02_remove_hdr_pad -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x31cfbff1 mt76x02_mcu_function_select -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3481fc7f mt76x02_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1668e91c mt76x02_mac_reset_counters +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1753bde0 mt76x02_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x240040cc mt76x02_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x294043f2 mt76x02_eeprom_copy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2b9b9d4e mt76x02_update_beacon_iter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2d3588c1 mt76x02_ext_pa_enabled +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2f855354 mt76x02_rx_poll_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3001fddf mt76x02_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3045cfeb mt76x02_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x30b42a95 mt76x02_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x355d1c98 mt76x02_edcca_init EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x35d2834d mt76x02_limit_rate_power -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3841e501 mt76x02_update_beacon_iter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3ba6e860 mt76x02_init_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3c9b7c1e mt76x02_get_lna_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x42b48a4a mt76x02_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4522e62c mt76x02_phy_set_band -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x477b4eee mt76x02_phy_set_txdac -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x53dcc980 mt76x02_tx_set_txpwr_auto +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x36558b6c mt76x02_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x37fec32b mt76x02_get_rx_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3ff48c26 mt76x02_tx_status_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x41247290 mt76x02_mcu_parse_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4b72c7e2 mt76x02_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4cc29e64 mt76x02_update_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x542f54b4 mt76x02_enqueue_buffered_bc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x56d700a6 mt76x02_mac_cc_reset EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5bd84fd5 mt76x02_rates -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5e51e068 mt76x02_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6547e43d mt76x02_mac_set_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7767f444 mt76x02_enqueue_buffered_bc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7abbce8c mt76x02_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7d1185b9 mt76x02_tx_status_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7e0f499a mt76x02_set_ethtool_fwver -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8016aa99 mt76x02_tx_prepare_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x802fe4db mt76x02_set_coverage_class -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8664d6bd mt76x02_eeprom_copy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x87bf0b75 mt76x02_sw_scan_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8ac0a88b mt76x02_sta_rate_tbl_update -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8e879c95 mt76x02_phy_set_rxpath -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8f8de6f5 mt76x02_queue_rx_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x63812e77 mt76x02_remove_hdr_pad +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x64a33f9e mt76x02_mac_wcid_setup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x67c3b064 mt76x02_mac_setaddr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6bea8d45 mt76x02_get_lna_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x710517a6 mt76x02_mac_shared_key_setup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x75695538 mt76x02_dma_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x763da1bc mt76x02_phy_set_band +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x777a079a mt76x02_mcu_set_radio_state +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7c5b8eeb mt76x02_phy_set_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x81766931 mt76x02_eeprom_parse_hw_cap +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8a98030d mt76x02_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8bd1a28b mt76x02_phy_adjust_vga_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8de148a4 mt76x02_resync_beacon_timer EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x91d5b9ee mt76x02_irq_handler -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9813b158 mt76x02e_init_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9b043ac9 mt76x02_mcu_calibrate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9e0ee995 mt76x02_set_tx_ackto -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9fed4dfe mt76x02_update_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa7d0ccd4 mt76x02_bss_info_changed -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb59b4e33 mt76x02_phy_set_bw -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb94fa789 mt76x02_remove_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xbeab369b mt76x02_config_mac_addr_list -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc3d99ea1 mt76x02_rx_poll_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc48a24f1 mt76x02_get_efuse_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc4bcfae7 mt76x02_mac_wcid_setup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc52259fb mt76x02_init_agc_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc561cb13 mt76x02_init_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc5b626cb mt76x02_mcu_msg_send -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc8080d8f mt76x02_mcu_set_radio_state -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc82b3d99 mt76x02_mac_setaddr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xce8783a1 mt76x02_mac_shared_key_setup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd6796df9 mt76x02_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe21bd79d mt76x02_phy_set_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe38582b0 mt76x02_dma_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xeb7c36d1 mt76x02_mac_cc_reset -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xef9a8d00 mt76x02_configure_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf4321c36 mt76x02_set_rts_threshold -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xfa654735 mt76x02_dfs_init_params -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x0e795721 mt76x02u_mcu_fw_send_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x496c40d9 mt76x02u_mac_start -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x6c70af27 mt76x02u_exit_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x6f307eb6 mt76x02u_tx_prepare_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x7ef78865 mt76x02u_mcu_fw_reset -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x84abb4ad mt76x02u_init_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xeafd54ec mt76x02u_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xf12b3602 mt76x02u_init_mcu -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x00e5265b mt76x2_phy_tssi_compensate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x09e847cf mt76x2_mcu_tssi_comp -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x0e40f754 mt76x2_eeprom_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x1aa85ac7 mt76x2_phy_set_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x35de0b13 mt76x2_mcu_load_cr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x4a197b2f mt76x2_mcu_set_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x53e86436 mt76x2_init_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x5ee9339d mt76x2_configure_tx_delay -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x60f1574f mt76x2_phy_update_channel_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x615bede1 mt76x2_mcu_init_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x657ac451 mt76x2_read_rx_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x6d727215 mt76x2_phy_set_txpower_regs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x86da9606 mt76x2_mac_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x92263450 mt76x2_reset_wlan -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xa598f9fd mt76x2_get_rate_power -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xe4db1bb6 mt76_write_mac_initvals -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xeb7ce04e mt76x2_apply_gain_adj -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xf4ab3dfd mt76x2_get_power_info -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xfa693949 mt76x2_get_temp_comp -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x03873d0a wilc_netdev_cleanup -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x0eda1af5 host_sleep_notify -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x2060ed9d chip_allow_sleep -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x4fea89c6 wilc_cfg80211_init -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x550719a9 host_wakeup_notify -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x5c89c6f0 chip_wakeup -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xbbf49788 wilc_handle_isr -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x01e04bbc qtnf_trans_handle_rx_ctl_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x28658701 qtnf_core_attach +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9281115a mt76x02_mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x930fb3ba mt76x02_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9554b08e mt76x02_reconfig_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9be9f423 mt76x02_phy_set_bw +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa54dfbc7 mt76x02_mcu_function_select +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa8e3e181 mt76x02_mcu_msg_send +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa9c04d8d mt76x02_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xab065214 mt76x02_set_coverage_class +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xac89cd36 mt76x02_phy_set_txdac +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xace738c2 mt76x02e_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xae69a8ee mt76x02_dfs_init_params +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xbf95906e mt76x02_phy_set_rxpath +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc5daa949 mt76x02_config_mac_addr_list +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc69f09c4 mt76x02_dma_disable +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc7967eb6 mt76x02_sta_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xcb66847e mt76x02_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xcf0e99ef mt76x02_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xcf4263cf mt76x02_mcu_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xdebcb67e mt76x02_mcu_calibrate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe3360198 mt76x02_init_agc_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe526120a mt76x02_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe6f40456 mt76x02_phy_dfs_adjust_agc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe837a507 mt76x02_set_ethtool_fwver +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe8e2825f mt76x02_sta_rate_tbl_update +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xed109947 mt76x02_mac_set_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf93c5761 mt76x02_mac_write_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xfa4c0be6 mt76x02_init_debugfs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xfe468b65 mt76x02_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x2e953866 mt76x02u_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x6cc4ec2c mt76x02u_mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xb34a9897 mt76x02u_mcu_fw_send_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xbfbd558d mt76x02u_init_mcu +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xc2b880ce mt76x02u_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xef2888a0 mt76x02u_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xf2d81487 mt76x02u_mcu_fw_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xf413227a mt76x02u_exit_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x06c76f34 mt76x2_get_rate_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x244d58cc mt76_write_mac_initvals +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x36fb6482 mt76x2_mcu_tssi_comp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x3b21ce4a mt76x2_apply_gain_adj +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x53257361 mt76x2_reset_wlan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x67194d1e mt76x2_get_temp_comp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x90ee66ea mt76x2_phy_set_txpower_regs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xa61a8239 mt76x2_phy_tssi_compensate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xa64a9ebf mt76x2_mcu_set_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xc3dfa186 mt76x2_eeprom_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xc649e476 mt76x2_mcu_init_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xd277c0fc mt76x2_get_power_info +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xd9a1272c mt76x2_read_rx_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xda8047da mt76x2_init_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xdca0b974 mt76x2_phy_set_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xde9c6cbb mt76x2_configure_tx_delay +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xdf97ca60 mt76x2_phy_update_channel_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xe0b380a2 mt76x2_mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xf4f775d8 mt76x2_mcu_load_cr +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x42f0f8ba wilc_cfg80211_init +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x81f77dec chip_wakeup +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x9cef44e0 wilc_netdev_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x9db741f3 chip_allow_sleep +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xdde1009e host_sleep_notify +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xefa5820b host_wakeup_notify +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xf95c11f1 wilc_handle_isr +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x10f58b26 qtnf_wake_all_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x2cf9a2ec qtnf_classify_skb EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x31fab83c qtnf_chipid_to_string -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x3e6d49a5 qtnf_classify_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x557361f7 qtnf_core_detach -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x6927f327 qtnf_wake_all_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x9f6bee2d qtnf_get_debugfs_dir -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x0db4fdcf rt2800_get_txwi_rxwi_size -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x12f7d5c3 rt2800_get_tsf -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x1a62797f rt2800_config_pairwise_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x1d995244 rt2800_txstatus_timeout -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x1e15a294 rt2800_clear_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x1f7773e7 rt2800_probe_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x283e56d7 rt2800_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x2c6d8cd5 rt2800_wait_csr_ready -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x2d7ce0ae rt2800_process_rxwi -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x2dfe7665 rt2800_read_eeprom_efuse -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x2ef2a5c1 rt2800_watchdog -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x3180805b rt2800_efuse_detect -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x3cf53201 rt2800_link_tuner -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x4137cb8e rt2800_config_ant -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x42c54cf7 rt2800_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x45abedbf rt2800_txdone_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x4c17ac1b rt2800_link_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x4ec2030c rt2800_wait_wpdma_ready -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x50f116c6 rt2800_write_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x512b22bf rt2800_config_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x5bf24e95 rt2800_config_shared_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x630d80a4 rt2800_txdone_nostatus -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x66624d41 rt2800_enable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x683656bf rt2800_config_erp -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7d0f811e rt2800_get_key_seq -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x836ab331 rt2800_gain_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x844bf84c rt2800_vco_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x8768806c rt2800_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x8f71ab65 rt2800_reset_tuner -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x97d43c39 rt2800_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xac55ca98 rt2800_mcu_request -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xbf6dab42 rt2800_load_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc0a3b3f6 rt2800_write_tx_data -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc13539b5 rt2800_set_rts_threshold -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xcacf49f5 rt2800_pre_reset_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd170702a rt2800_check_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd3a86564 rt2800_rfkill_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd798b1a9 rt2800_get_survey -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xda77b192 rt2800_disable_wpdma -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xda8f0502 rt2800_ampdu_action -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xef27c17b rt2800_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf255c14c rt2800_config_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf2aff78e rt2800_disable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf36be144 rt2800_txstatus_pending -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x03305a06 rt2800mmio_start_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x0dcae061 rt2800mmio_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x42c6507b qtnf_trans_handle_rx_ctl_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xcc153cb2 qtnf_core_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xd0f129bb qtnf_get_debugfs_dir +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xfde8d2f5 qtnf_core_attach +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x005d5b6b rt2800_process_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x08c05132 rt2800_disable_wpdma +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x11ec48cc rt2800_get_tsf +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x18cc6b5e rt2800_read_eeprom_efuse +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x29ec71e1 rt2800_write_tx_data +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x2b2a051e rt2800_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x2fb24564 rt2800_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x309ea816 rt2800_mcu_request +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x3334157c rt2800_reset_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x363d8fd6 rt2800_get_key_seq +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x3bf31bbe rt2800_write_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x46648d88 rt2800_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x4a25c317 rt2800_config_shared_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x4b4b3ba2 rt2800_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x50233ebc rt2800_get_txwi_rxwi_size +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x580f1f16 rt2800_check_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x59095d16 rt2800_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x5f6338eb rt2800_efuse_detect +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x688421f2 rt2800_txdone_nostatus +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x69bbac25 rt2800_vco_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6ae9d447 rt2800_wait_csr_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7a268b5e rt2800_link_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7b2e9c64 rt2800_clear_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x8bf76c5f rt2800_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x904776ff rt2800_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x908813e5 rt2800_txstatus_timeout +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x94e687e6 rt2800_wait_wpdma_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x9e4ad675 rt2800_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xaa6dafa0 rt2800_txstatus_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xac30b8cf rt2800_probe_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xac5b54d6 rt2800_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xaf636dca rt2800_pre_reset_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb0198051 rt2800_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb66f8aff rt2800_config_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc585a124 rt2800_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc64852e8 rt2800_config_pairwise_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc870ad67 rt2800_txdone_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xca557f75 rt2800_gain_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd13aa297 rt2800_config_ant +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd44caae7 rt2800_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf064fd11 rt2800_config_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf3843c17 rt2800_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf89367f9 rt2800_link_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xfb1b2f7f rt2800_config_erp EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x32ac3645 rt2800mmio_rxdone_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x3508418b rt2800mmio_enable_radio EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x3d741c87 rt2800mmio_pretbtt_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x404aec8b rt2800mmio_toggle_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x444b16f1 rt2800mmio_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x4d9ab58e rt2800mmio_fill_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x43f3f5ae rt2800mmio_toggle_irq EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5028bbb2 rt2800mmio_tbtt_tasklet EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5fa4db64 rt2800mmio_interrupt -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x63a8fddf rt2800mmio_probe_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x7610c800 rt2800mmio_kick_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x7ff09aec rt2800mmio_init_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x8aa225db rt2800mmio_get_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x9296fc1f rt2800mmio_write_tx_desc -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x9315b491 rt2800mmio_init_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x661bdc6f rt2800mmio_init_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x665f2815 rt2800mmio_get_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x790a487f rt2800mmio_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x839f0c25 rt2800mmio_get_entry_state EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x97e3c029 rt2800mmio_autowake_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x9de03777 rt2800mmio_get_dma_done +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x9dfaee96 rt2800mmio_probe_hw EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x9f3c8921 rt2800mmio_txstatus_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xaafe5b0f rt2800mmio_get_entry_state -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xd8fcca41 rt2800mmio_stop_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xe7454f42 rt2800mmio_enable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xfdd3afe5 rt2800mmio_queue_init -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x068d4028 rt2x00lib_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x070f4914 rt2x00lib_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x09068c1d rt2x00queue_map_txskb -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x094a1680 rt2x00mac_start -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x0aec31ec rt2x00lib_remove_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x150058ce rt2x00mac_flush -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x183449e3 rt2x00lib_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1bbb01d4 rt2x00lib_set_mac_address -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1d60549c rt2x00mac_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x22ea29f6 rt2x00lib_dmastart -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x2b74446f rt2x00mac_configure_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3255d926 rt2x00mac_set_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x38b075f2 rt2x00mac_bss_info_changed -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x41bb8952 rt2x00queue_for_each_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x551da50d rt2x00mac_set_tim -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x567a5f7a rt2x00mac_sw_scan_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x5ab28b9a rt2x00queue_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x5c5dac1d rt2x00lib_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x5fb39044 rt2x00mac_tx_frames_pending -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x600246c6 rt2x00lib_txdone_nomatch -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x67d94bec rt2x00mac_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x688af386 rt2x00mac_remove_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x74845d9b rt2x00mac_sw_scan_start -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x789ab87d rt2x00queue_unpause_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7ae8b07e rt2x00queue_pause_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7b513bfb rt2x00mac_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7dab5e40 rt2x00mac_get_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x81332ee9 rt2x00lib_pretbtt -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x82cafaae rt2x00mac_rfkill_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x8d2bcac3 rt2x00queue_get_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x94bdd1f7 rt2x00lib_dmadone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x97e02f90 rt2x00lib_probe_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x9d4279d7 rt2x00queue_unmap_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa2da2c1e rt2x00queue_start_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa90c283a rt2x00lib_txdone_noinfo -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb014f926 rt2x00lib_beacondone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xbbf3cf7c rt2x00queue_start_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xbd283bf9 rt2x00lib_get_bssidx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc08b247b rt2x00queue_flush_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc14693ec rt2x00mac_add_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc84a385c rt2x00mac_get_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc96edae6 rt2x00mac_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd08bc963 rt2x00mac_reconfig_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd6d6a3e1 rt2x00mac_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe1b7d3e7 rt2x00queue_stop_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe319ace0 rt2x00queue_stop_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xedbdd860 rt2x00mac_get_ringparam -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x4bda39b9 rt2x00mmio_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x613634b3 rt2x00mmio_uninitialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x7f0031d5 rt2x00mmio_regbusy_read -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xd71911bc rt2x00mmio_initialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xf873274c rt2x00mmio_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x01cbb88a rt2x00pci_pm_ops -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x379744d0 rt2x00pci_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x5aaa1ae0 rt2x00pci_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x03060714 rt2x00usb_regbusy_read -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x3a0736bf rt2x00usb_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x5b642dfb rt2x00usb_disconnect -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x6f40e7ec rt2x00usb_uninitialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x813b232f rt2x00usb_initialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x896e7936 rt2x00usb_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x8e6263fe rt2x00usb_vendor_request -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x8f344aad rt2x00usb_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x93156874 rt2x00usb_vendor_request_buff -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xb5bcee6e rt2x00usb_clear_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xb6b344ca rt2x00usb_register_read_async -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xbca373b0 rt2x00usb_kick_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xc4d169dd rt2x00usb_watchdog -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xdd551be0 rt2x00usb_vendor_req_buff_lock -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xeb0b712a rt2x00usb_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xf5be3f6c rt2x00usb_disable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb98982cd dm_writepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xbaa7df82 rtl92c_set_p2p_ps_offload_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd0a637a7 dm_restorepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe177cf3a dm_savepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x11d77371 rtl8723_phy_save_mac_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x11f6c7d8 rtl8723_cmd_send_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x171f1ebd rtl8723_phy_path_a_fill_iqk_matrix -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x17cf3778 rtl8723_phy_set_bb_reg -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x1f4a1f16 rtl8723_write_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x20cc2ddb rtl8723_download_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xba7e5824 rt2800mmio_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xbcc9e2b2 rt2800mmio_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xc6b31722 rt2800mmio_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xcb055b30 rt2800mmio_init_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xd7fc7d3b rt2800mmio_get_dma_done +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xdf2b600e rt2800mmio_write_tx_desc +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xe39d89d3 rt2800mmio_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xe7daec32 rt2800mmio_fill_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xf36ff9da rt2800mmio_queue_init +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x095c3558 rt2x00mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x14faf079 rt2x00mac_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x19508eb8 rt2x00queue_unpause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x19c9b92d rt2x00lib_probe_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1bac450b rt2x00mac_reconfig_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1e7a06c0 rt2x00mac_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x26df54bd rt2x00mac_get_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x2c068e3d rt2x00queue_get_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x33e55568 rt2x00mac_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3761adaf rt2x00mac_tx_frames_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3b2ed4ed rt2x00mac_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x458be919 rt2x00queue_map_txskb +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4e7d2825 rt2x00queue_stop_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4f73cc63 rt2x00lib_pretbtt +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x5390a087 rt2x00lib_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x5762424c rt2x00mac_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x57df4f3e rt2x00queue_pause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x5852622e rt2x00queue_for_each_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x5fa9bb95 rt2x00queue_unmap_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x601688fe rt2x00mac_get_ringparam +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x638531a8 rt2x00mac_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x65bd8fc7 rt2x00mac_set_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x6893dcf1 rt2x00mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x69671e05 rt2x00lib_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x6b48ed28 rt2x00queue_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x6e4f7477 rt2x00queue_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x715e24cd rt2x00mac_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7afca627 rt2x00lib_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7c92f002 rt2x00mac_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x81daf666 rt2x00mac_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x8c8286e8 rt2x00lib_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x9b5c6c3d rt2x00lib_set_mac_address +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x9e4e4f27 rt2x00mac_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa975f5b6 rt2x00mac_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb554dee7 rt2x00mac_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb5ac63d9 rt2x00queue_start_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb89f2199 rt2x00lib_get_bssidx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xbbf853a7 rt2x00lib_txdone_noinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xbe93e3ef rt2x00lib_beacondone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xdd668823 rt2x00mac_sw_scan_start +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe28f2654 rt2x00lib_dmastart +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe3588351 rt2x00mac_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf4646b4b rt2x00lib_txdone_nomatch +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xfa4b281a rt2x00queue_flush_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xfb60dddc rt2x00lib_dmadone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xfb6541b7 rt2x00lib_remove_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xfb9d6c4a rt2x00queue_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x00c826ce rt2x00mmio_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x46548b6b rt2x00mmio_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x90d1995f rt2x00mmio_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xb831f1d3 rt2x00mmio_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xed6b62dd rt2x00mmio_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x7aea1feb rt2x00pci_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x7e19999d rt2x00pci_pm_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0xaa3812e1 rt2x00pci_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x17cc0b5a rt2x00usb_disconnect +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x2ebe07bc rt2x00usb_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x30cdbf04 rt2x00usb_vendor_req_buff_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x36629a6f rt2x00usb_vendor_request_buff +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x48e0dccd rt2x00usb_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x61ca074c rt2x00usb_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x8ea83b81 rt2x00usb_register_read_async +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x960ea6d7 rt2x00usb_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xa3473d12 rt2x00usb_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xb9e9f085 rt2x00usb_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xc161245d rt2x00usb_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xd8f39771 rt2x00usb_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xdfd0aa95 rt2x00usb_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xf557ec7e rt2x00usb_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xf77ff6f9 rt2x00usb_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xfbf48b81 rt2x00usb_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0f5d1874 dm_writepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x479002b7 rtl92c_set_p2p_ps_offload_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x737ac420 dm_savepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa2aabc2c dm_restorepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0fe7f533 rtl8723_phy_reload_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x20606e77 rtl8723_dm_init_dynamic_bb_powersaving +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x27dc7ee9 rtl8723_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x302f0392 rtl8723_phy_save_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x32640e31 rtl8723_fw_free_to_go +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x3eb63caf rtl8723be_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 0x3f5ddcd6 rtl8723_fw_free_to_go -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x477d9391 rtl8723_save_adda_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x51bc834f rtl8723_dm_init_edca_turbo -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x532c6e93 rtl8723be_firmware_selfreset -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x784799dd rtl8723_phy_pi_mode_switch -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8127682f rtl8723_phy_reload_adda_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x824fb714 rtl8723_phy_query_bb_reg -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x82db86d0 rtl8723_phy_path_adda_on -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8415ac58 rtl8723_enable_fw_download +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x44961f18 rtl8723_phy_path_a_standby +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x457e9659 rtl8723_dm_init_edca_turbo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x4ce573dd rtl8723_save_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x569e7df4 rtl8723_phy_pi_mode_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x57555cff rtl8723_phy_mac_setting_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x5b4f936a rtl8723_download_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x704a1972 rtl8723_phy_rf_serial_read +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x843e9788 rtl8723_phy_reload_adda_registers EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8baf8913 rtl8723_phy_set_sw_chnl_cmdarray -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x96c07681 rtl8723ae_firmware_selfreset -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x9e863dd6 rtl8723_phy_rf_serial_read -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa30b308b rtl8723_phy_txpwr_idx_to_dbm -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa5c0966c rtl8723_dm_init_dynamic_bb_powersaving -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xcb8d33c5 rtl8723_phy_mac_setting_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd7767042 rtl8723_phy_init_bb_rf_reg_def -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xded36920 rtl8723_phy_reload_mac_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe29d0317 rtl8723_phy_rf_serial_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe6d73b32 rtl8723_dm_init_dynamic_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xfc7ad4ac rtl8723_phy_path_a_standby -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x03d0fd86 rtl_p2p_info -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x175ebc42 rtl_tx_report_handler -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1cab0630 rtl_fw_page_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1d44cd11 rtl_fw_block_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1e249ae0 rtl_get_hal_edca_param +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa6c6074b rtl8723_phy_set_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xc0c07264 rtl8723_phy_path_adda_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xc9414d25 rtl8723_cmd_send_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xc9d79858 rtl8723_phy_rf_serial_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xcb073e87 rtl8723ae_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd58de976 rtl8723_phy_path_a_fill_iqk_matrix +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe8118df5 rtl8723_dm_init_dynamic_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xeca80ad6 rtl8723_phy_query_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf2564852 rtl8723_write_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf9fe18e9 rtl8723_phy_init_bb_rf_reg_def +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xfb76ef17 rtl8723_enable_fw_download +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0648fdeb rtl_action_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x06d634d8 rtl_beacon_statistic +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x07f1fc39 rtl_efuse_ops_init +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x08a58505 rtl_fw_block_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0ae77086 rtl_ops 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 0x2e5382f9 rtl_fill_dummy +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3028b833 rtl_lps_enter +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3055e47b rtl_lps_leave +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x312b0d48 rtl_init_rx_config EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x37b993b4 rtl_global_var -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x428d7f2c rtl_set_tx_report -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x42be0778 rtl_deinit_deferred_work -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5d7a7c68 rtl_get_hwinfo -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x606da087 rtl_tx_mgmt_proc -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6cf95242 rtl_action_proc -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6de3327c rtl_init_rx_config -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x716a88ab rtl_init_core -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7a0fa485 rtl_deinit_core -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7b24b997 rtl_is_special_data -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8c2043ff rtl_beacon_statistic -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9140bc50 rtl_deinit_rfkill -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x951e2742 rtl_efuse_ops_init +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x425e287e rtl_deinit_rfkill +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x446201d9 rtl_is_special_data +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4f1ac15e rtl_deinit_deferred_work +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x64b05d63 rtl_p2p_info +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x75304a39 rtl_init_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7675d5a4 rtl_tx_report_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x77c3d59b rtl_deinit_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7fc3bebc rtl_tx_ackqueue +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x87ba653e rtl_get_hal_edca_param +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8d77ca8e rtl_set_tx_report EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x97e05663 rtl_tid_to_ac -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb657a1bc rtl_ops -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbf7f879d rtl_lps_enter -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc67c52bc rtl_swlps_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xddef0997 read_efuse_byte -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xedef8cc0 rtl_tx_ackqueue -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf506445a rtl_ips_nic_on -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf6b74e0b rtl_lps_leave -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf76c3587 rtl_recognize_peer +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xacb5f28b read_efuse_byte +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb863553c rtl_ips_nic_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd8d31351 rtl_fw_page_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe30a51ec rtl_recognize_peer +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xecb37aa3 rtl_tx_mgmt_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf6936970 rtl_swlps_beacon EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf8ff6add rtl_lps_change_work_callback +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xfacb2379 rtl_get_hwinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x04d6066e rsi_91x_init EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x0f5c3ce9 rsi_zone_enabled -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x1ac7c71f rsi_hal_device_init -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x36e3caa8 rsi_91x_deinit -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x60b5a720 rsi_91x_init -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x9bc67ce7 rsi_read_pkt +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x4763813c rsi_hal_device_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x507ef1c5 rsi_read_pkt +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x70e9f54f rsi_91x_deinit EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xcd173710 rsi_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xf221dce0 rsi_mac80211_detach -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x0df57710 cw1200_core_release -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x9af1c449 cw1200_core_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xe4e12e3c cw1200_can_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xeca5f7ff cw1200_irq_handler -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x00e67c53 wl1251_free_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x0c8e44b9 wl1251_init_ieee80211 -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xb72e579c wl1251_alloc_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0365ffe1 wlcore_synchronize_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xcf452fff rsi_mac80211_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x1ad15954 cw1200_core_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x80f698d6 cw1200_irq_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x898a9b02 cw1200_core_release +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xaa38873f cw1200_can_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x035e90d6 wl1251_init_ieee80211 +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x14a4f367 wl1251_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x753ddbc0 wl1251_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x03c6440a wlcore_free_hw EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x06d3b27e wl12xx_debug_level -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x087719ef wl1271_acx_set_ht_capabilities -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0f2e177b wl1271_cmd_send -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x11b3365e wlcore_event_inactive_sta -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x18326971 wlcore_disable_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1c8d7a37 wlcore_boot_upload_nvs +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x08d6d5b7 wl1271_tx_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x14a27144 wlcore_event_inactive_sta +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x156ea79d wl1271_acx_init_mem_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1a713ad7 wlcore_event_dummy_packet EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x20351125 wlcore_get_native_channel_type -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2c284696 wlcore_event_soft_gemini_sense -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3d358212 wlcore_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x40e2f101 wlcore_set_partition -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x45af4850 wlcore_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4822d6b8 wlcore_translate_addr -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x560a0776 wl1271_acx_pm_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x65b35d46 wlcore_cmd_generic_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x68cee041 wl1271_acx_init_mem_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x72952367 wl1271_debugfs_update_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x790ea815 wlcore_disable_interrupts_nosync -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8c2ce441 wlcore_alloc_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x95bdf568 wlcore_event_fw_logger -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9aa9c2cf wlcore_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9b26b02c wlcore_event_beacon_loss -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xaddcd7a5 wl12xx_acx_mem_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb1856a5e wl1271_acx_sleep_auth -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb998a6e5 wlcore_boot_upload_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xbc1d0936 wlcore_event_dummy_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc04d3657 wlcore_set_scan_chan_params -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc0cca0f4 wlcore_event_rssi_trigger -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc1974a7e wlcore_scan_sched_scan_ssid_list +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x22ceabd3 wlcore_boot_upload_nvs +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x241bde68 wlcore_translate_addr +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x278177d3 wl1271_debugfs_update_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3985b2ce wlcore_event_fw_logger +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3f941dbb wlcore_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4068694c wlcore_set_partition +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4484d138 wlcore_synchronize_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x46bc93f5 wlcore_cmd_generic_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x488a0182 wl1271_cmd_configure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x49822dd8 wlcore_boot_run_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4a1cd71d wlcore_event_sched_scan_completed +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5642e30b wlcore_disable_interrupts_nosync +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x66dcaf26 wlcore_event_roc_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6d790af7 wl1271_cmd_test +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6dce98a4 wlcore_event_beacon_loss +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x74efa1e8 wl1271_cmd_send +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x79439989 wlcore_boot_upload_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x80c95bcb wl12xx_cmd_build_probe_req +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x81c99b40 wlcore_enable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x86112861 wlcore_event_max_tx_failure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x894ab9bd wl12xx_acx_mem_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8cf914ea wlcore_event_rssi_trigger +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9bcadcb7 wlcore_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa4e07244 wlcore_scan_sched_scan_results +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa8370b0c wl1271_acx_set_ht_capabilities +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xad0e0018 wlcore_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xba630a8a wlcore_event_channel_switch EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc1db71fa wl1271_format_buffer -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc3bca5d5 wlcore_enable_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc540931d wl1271_cmd_test -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc9666e2b wl12xx_cmd_build_probe_req -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xce80c9a3 wlcore_scan_sched_scan_results -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd05ac664 wlcore_boot_run_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd3a87a4b wlcore_event_ba_rx_constraint -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd4e978a1 wlcore_free_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xdbb5e777 wl1271_cmd_configure -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xdd0daf5b wlcore_event_max_tx_failure -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe35409dd wlcore_event_roc_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe8e94489 wlcore_event_sched_scan_completed -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe96f1911 wlcore_event_channel_switch -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xeaf49b5f wlcore_cmd_wait_for_event_or_timeout -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf889dfc7 wl1271_tx_flush -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xfed0ea9b wl1271_cmd_data_path -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xfee6f7f1 wl1271_tx_min_rate_get -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xabde7850 nfcmrvl_parse_dt -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xb46d8c29 nfcmrvl_nci_recv_frame -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xce5a00e1 nfcmrvl_nci_unregister_dev -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xd2a8e700 nfcmrvl_nci_register_dev -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x0fa2dc80 pn53x_common_init -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x3b39ce5e pn53x_common_clean -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x4da0c0e1 pn53x_register_nfc -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x7a5a1821 pn53x_unregister_nfc -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x8c4c28f0 pn532_i2c_nfc_alloc -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xa515733b pn533_finalize_setup -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xbc61047a pn533_rx_frame_is_cmd_response +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc645909f wlcore_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd3c85798 wlcore_scan_sched_scan_ssid_list +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd93508ab wlcore_event_ba_rx_constraint +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xddca54b2 wl1271_acx_sleep_auth +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xed0d7b6b wl1271_tx_min_rate_get +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xedd37d8f wlcore_disable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf50ff1d8 wl1271_cmd_data_path +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf67093d0 wlcore_event_soft_gemini_sense +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf913ee58 wlcore_cmd_wait_for_event_or_timeout +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xfc34f8a9 wl1271_acx_pm_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xfc4ca60d wlcore_set_scan_chan_params +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x0c003c01 nfcmrvl_nci_unregister_dev +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x1db61963 nfcmrvl_parse_dt +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xb7cddaaa nfcmrvl_nci_recv_frame +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xc83b55c5 nfcmrvl_nci_register_dev +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x3d3f3bb2 pn53x_register_nfc +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x6d402477 pn53x_common_init +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x6e1e91b0 pn53x_common_clean +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x814c573e pn53x_unregister_nfc +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xb011234b pn533_finalize_setup +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xcdc94ddc pn532_i2c_nfc_alloc +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xd37bfcf0 pn533_rx_frame_is_cmd_response EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xdecfd339 pn533_rx_frame_is_ack -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x0e9daf2a st_nci_hci_cmd_received -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x17fe1c23 st_nci_hci_event_received -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x5f4069ea st_nci_enable_se -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x890ae90b st_nci_probe -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x9ac5a674 st_nci_disable_se -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xcea1b53e st_nci_discover_se -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xeb4cad73 st_nci_remove -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xf2148b10 st_nci_hci_load_session -EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x695c5693 st95hf_spi_recv_echo_res -EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x79c816a4 st95hf_spi_send -EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0xe70b3807 st95hf_spi_recv_response +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x367b2650 st_nci_enable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x4f0d50c0 st_nci_probe +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x5ef88563 st_nci_hci_cmd_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x62d16a0f st_nci_remove +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xafab2917 st_nci_hci_event_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xb4eb6c6d st_nci_hci_load_session +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xd69f5226 st_nci_discover_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xe01fca19 st_nci_disable_se +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x90d610c0 st95hf_spi_recv_response +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0xdaff6541 st95hf_spi_recv_echo_res +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0xdf87d14d st95hf_spi_send EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x0862001f ntb_transport_tx_free_entry -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x1006b632 ntb_transport_create_queue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x20b38471 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 0x3cea64e3 ntb_transport_register_client EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x3d54dbfc ntb_transport_tx_enqueue EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x436098aa ntb_transport_link_down -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x4946aa18 ntb_transport_unregister_client EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x82e6c13d ntb_transport_qp_num EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x9c992c8f ntb_transport_link_up EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc270dc24 ntb_transport_free_queue EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc37d9036 ntb_transport_rx_remove -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc3e83f5d ntb_transport_register_client EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xd40e7a02 ntb_transport_rx_enqueue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xd8b2d890 ntb_transport_unregister_client EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf55d6313 ntb_transport_register_client_dev EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf9eb813f ntb_transport_unregister_client_dev -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0564f612 nvme_init_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x059cc24d nvme_stop_keep_alive -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x094b7fb2 nvme_get_features -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0a7c986e nvme_start_freeze -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0c1123bf nvme_wait_freeze_timeout -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0cd39ad7 __nvme_check_ready -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0e2efaf4 nvme_unfreeze -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0fe92031 nvme_sync_io_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x006f2f31 nvme_setup_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x013f1a0f nvme_alloc_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x09587581 nvme_start_ctrl EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x11abc494 __SCK__tp_func_nvme_sq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x13871cb7 nvme_fail_nonready_command -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x188c675a nvme_setup_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2349b731 nvme_cancel_tagset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x23803584 nvme_start_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2626f0cc nvme_stop_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3df0675a nvme_cleanup_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x491016f0 nvme_wait_reset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3822df32 __traceiter_nvme_sq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3d6804d3 __nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x43aeb7f8 nvme_set_queue_count +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x46535e8a nvme_set_features +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x47ea9a81 nvme_try_sched_reset EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x49224181 nvme_reset_wq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x4b584809 nvme_cancel_request -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x4d87d60f nvme_shutdown_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x4df48cb3 nvme_uninit_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x52fc6bb6 nvme_cancel_admin_tagset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x50021e7e nvme_remove_namespaces +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x527b467b nvme_delete_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x53700774 nvme_start_freeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x5692b48a nvme_init_ctrl_finish +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x5882b5a5 nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x5f0be6fa nvme_enable_ctrl EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x64b62862 nvme_wq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x6661080f nvme_kill_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x69198eb8 nvme_remove_namespaces -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x6ace671a nvme_start_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x6c6ed685 nvme_complete_async_event -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x6f526b16 nvme_reset_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x751637b8 nvme_complete_rq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x6bdf8acc nvme_complete_rq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x6cf7b68c nvme_complete_async_event +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7d27b09a nvme_kill_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7e0b21e4 nvme_stop_ctrl EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x813cf212 nvme_io_timeout -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x87e18767 nvme_host_path_error +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x838fe4f8 nvme_stop_keep_alive +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x85af91ca __nvme_check_ready EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8ab19397 nvme_sec_submit -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8b85ceb4 nvme_wait_freeze -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x91b5c6d1 __nvme_submit_sync_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x9d8efc09 nvme_try_sched_reset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa2abb016 nvme_change_ctrl_state -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa488158a nvme_enable_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa5ebbcce nvme_set_queue_count -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb960918e nvme_stop_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xbd747594 nvme_init_ctrl_finish -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xbe972c57 nvme_delete_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xcd85fb11 __traceiter_nvme_sq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd1f1e963 nvme_set_features +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8db027d9 nvme_uninit_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x914ca023 nvme_wait_freeze_timeout +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x99810cd9 nvme_fail_nonready_command +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa6693148 nvme_sync_io_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa7566b4a nvme_get_features +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xad9ddbb1 nvme_start_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb4ecca2a nvme_change_ctrl_state +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xbd0f2f71 nvme_cancel_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc0a74815 nvme_host_path_error +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc28dcfa9 nvme_disable_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xcad843f1 nvme_sync_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd3c11350 nvme_wait_reset 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 0xda2d0be7 nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd5f5f496 nvme_shutdown_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd911a6ed nvme_stop_queues EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xdcafb566 __tracepoint_nvme_sq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe0e41600 nvme_sync_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe3044eae nvme_alloc_request -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf9c2cc7c nvme_disable_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xdd629756 nvme_init_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xdfaf9431 nvme_cancel_admin_tagset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe0df2b70 nvme_unfreeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe2c126c9 nvme_reset_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe2da98db nvme_cleanup_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe734ead6 nvme_cancel_tagset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf520bc13 nvme_wait_freeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x044d6b41 nvmf_get_address EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x0e1f31fe nvmf_free_options -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x214ef2dd nvmf_get_address -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x2bb3dea0 nvmf_reg_read32 -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x5706de9d nvmf_reg_write32 -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x587b443b nvmf_reg_read64 -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x8133f270 nvmf_ip_options_match -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x995a1f9c nvmf_should_reconnect -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xa522b149 nvmf_register_transport -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xcf01ff35 nvmf_unregister_transport -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xd685d3d4 nvmf_connect_io_queue -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xeafed76b nvmf_connect_admin_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x174f63de nvmf_unregister_transport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x4f7d5ecd nvmf_reg_write32 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x6a44e6a2 nvmf_reg_read32 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x9b09b7cf nvmf_reg_read64 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x9f6e5cec nvmf_connect_io_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xa0bcc308 nvmf_should_reconnect +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xae0c2770 nvmf_ip_options_match +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xb6a92aa2 nvmf_connect_admin_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xde4b2469 nvmf_register_transport EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x0d12e564 nvme_fc_register_remoteport EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x3884f8b8 nvme_fc_unregister_localport EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x3e33ac54 nvme_fc_rescan_remoteport EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x8a9cf5a7 nvme_fc_set_remoteport_devloss +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0xac9261cc nvme_fc_register_localport EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0xbeaa0ea6 nvme_fc_rcv_ls_req -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0xd48da3a0 nvme_fc_register_localport EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0xfca9dc99 nvme_fc_unregister_remoteport -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x5159b3cc nvmet_sq_destroy -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x54477368 nvmet_req_complete -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x661079c2 nvmet_sq_init -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x7d9dccc3 nvmet_unregister_transport -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x96be71c3 nvmet_register_transport -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xb2681dda nvmet_req_alloc_sgls -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xbf0e12ca nvmet_check_transfer_len -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xcb08b97d nvmet_ctrl_fatal_error -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xda14726d nvmet_req_free_sgls -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xdef43742 nvmet_req_uninit -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xf43a63a0 nvmet_req_init +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x2d753214 nvmet_req_init +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x369a3c07 nvmet_req_uninit +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x3a3cdfd4 nvmet_unregister_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x4746c080 nvmet_register_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x5c2f2135 nvmet_ctrl_fatal_error +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x7f8a423b nvmet_check_transfer_len +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x92bc963d nvmet_sq_init +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xa7bf2994 nvmet_req_alloc_sgls +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xc50a074e nvmet_req_complete +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xdb8bac37 nvmet_req_free_sgls +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xfad4a31e nvmet_sq_destroy EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x0e3c043d nvmet_fc_rcv_ls_req -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x1e682fdc 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 0x6cc0c8d9 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 0xddb93c97 nvmet_fc_rcv_fcp_abort EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0xfee33ec7 nvmet_fc_rcv_fcp_req -EXPORT_SYMBOL_GPL drivers/pci/switch/switchtec 0x40c83c6c switchtec_class -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x00a50b9a tegra_xusb_padctl_put -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x142be58a tegra_xusb_padctl_usb3_save_context -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x190634e2 tegra_xusb_padctl_get_usb3_companion -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x2514698f tegra_xusb_padctl_set_vbus_override -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x442b4b58 tegra_phy_xusb_utmi_port_reset -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x4450ca34 tegra_xusb_padctl_disable_phy_wake -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x4599c294 tegra_xusb_padctl_hsic_set_idle -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x56e56aae tegra_xusb_padctl_enable_phy_wake -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x6d462d3b tegra_xusb_padctl_get -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x7023fb17 tegra_xusb_padctl_disable_phy_sleepwalk -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x9e1ecea8 tegra124_xusb_padctl_soc -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xc5e4b3ff tegra_xusb_padctl_usb3_set_lfps_detect -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xc6641b2f tegra_xusb_padctl_enable_phy_sleepwalk -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xd87bcb89 tegra_xusb_padctl_remote_wake_detected -EXPORT_SYMBOL_GPL drivers/phy/ti/phy-omap-control 0x2acc27d9 omap_control_usb_set_mode -EXPORT_SYMBOL_GPL drivers/phy/ti/phy-omap-control 0x48eaeab2 omap_control_phy_power -EXPORT_SYMBOL_GPL drivers/phy/ti/phy-omap-control 0x51a0faf8 omap_control_pcie_pcs +EXPORT_SYMBOL_GPL drivers/pci/switch/switchtec 0x2362a8b6 switchtec_class +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x1e4823a3 tegra124_xusb_padctl_soc +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x21223bad tegra_xusb_padctl_remote_wake_detected +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x614f6839 tegra_xusb_padctl_disable_phy_wake +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x657d91ac tegra_xusb_padctl_get +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x67b75e15 tegra_phy_xusb_utmi_port_reset +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x6e9e932f tegra_xusb_padctl_hsic_set_idle +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x6ffd4d46 tegra_xusb_padctl_usb3_set_lfps_detect +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x995c2d0f tegra_xusb_padctl_enable_phy_wake +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x9c1688df tegra_xusb_padctl_usb3_save_context +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xa6317afc tegra_xusb_padctl_get_usb3_companion +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xaa7c7e82 tegra_xusb_padctl_set_vbus_override +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xaff4c61c tegra_xusb_padctl_put +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xc4e112b5 tegra_xusb_padctl_enable_phy_sleepwalk +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xdfac4a40 tegra_xusb_padctl_disable_phy_sleepwalk +EXPORT_SYMBOL_GPL drivers/phy/ti/phy-omap-control 0x4b358ba2 omap_control_usb_set_mode +EXPORT_SYMBOL_GPL drivers/phy/ti/phy-omap-control 0xbe0de876 omap_control_pcie_pcs +EXPORT_SYMBOL_GPL drivers/phy/ti/phy-omap-control 0xf7228b35 omap_control_phy_power EXPORT_SYMBOL_GPL drivers/phy/ti/phy-omap-usb2 0x00d48f33 omap_usb2_set_comparator -EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0xc513eb44 mcp23x08_regmap -EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0xd872ccbb mcp23s08_probe_one -EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0xf5684fab mcp23x17_regmap -EXPORT_SYMBOL_GPL drivers/platform/chrome/cros-ec-sensorhub 0x32d071dc cros_ec_sensorhub_unregister_push_data -EXPORT_SYMBOL_GPL drivers/platform/chrome/cros-ec-sensorhub 0xadffe5f6 cros_ec_sensorhub_register_push_data +EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0x0aedf297 mcp23x08_regmap +EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0x3a965678 mcp23x17_regmap +EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0x636be85c mcp23s08_probe_one +EXPORT_SYMBOL_GPL drivers/platform/chrome/cros-ec-sensorhub 0x8dcc6f94 cros_ec_sensorhub_unregister_push_data +EXPORT_SYMBOL_GPL drivers/platform/chrome/cros-ec-sensorhub 0xc26220fa cros_ec_sensorhub_register_push_data EXPORT_SYMBOL_GPL drivers/platform/chrome/cros_usbpd_notify 0x6b1be500 cros_usbpd_unregister_notify EXPORT_SYMBOL_GPL drivers/platform/chrome/cros_usbpd_notify 0x8bda2df3 cros_usbpd_register_notify -EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0x1846a02c devm_reboot_mode_register -EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0x5279b7b8 reboot_mode_register -EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0xe3dd6cf4 reboot_mode_unregister -EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0xf488728c devm_reboot_mode_unregister -EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0x8ef3a9e5 bq27xxx_battery_teardown -EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0xa912fd78 bq27xxx_battery_setup -EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0xf682009a bq27xxx_battery_update -EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x1167356b pcf50633_mbc_get_usb_online_status -EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x16cc005b pcf50633_mbc_get_status -EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0xd1f7c40e pcf50633_mbc_usb_curlim_set -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x03c4434c ptp_qoriq_gettime +EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0x915bb071 reboot_mode_register +EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0x9952f35f reboot_mode_unregister +EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0xa1840c55 devm_reboot_mode_register +EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0xa4bf457b devm_reboot_mode_unregister +EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0x10b3a367 bq27xxx_battery_setup +EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0x2fb6ed4a bq27xxx_battery_teardown +EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0xe03578e1 bq27xxx_battery_update +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x2417f4f3 pcf50633_mbc_get_usb_online_status +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x2a839a88 pcf50633_mbc_get_status +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x85fc35c2 pcf50633_mbc_usb_curlim_set +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x07e947ae extts_clean_up +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x0c246d48 ptp_qoriq_init +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x0f9f9c8b ptp_qoriq_adjtime EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x2eae82b0 ptp_qoriq_isr -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x35d818ed extts_clean_up -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x89d7f869 ptp_qoriq_settime -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x961e32b9 ptp_qoriq_init -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xaed8af4e ptp_qoriq_free -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xd2b0ce88 ptp_qoriq_adjtime -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xd5a896a3 ptp_qoriq_adjfine -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xe6d8ccfc ptp_qoriq_enable -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x1779a79b mc13xxx_get_num_regulators_dt -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x2a402ad7 mc13xxx_regulator_ops -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x6690c6d8 mc13xxx_fixed_regulator_ops -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xb1d4cd97 mc13xxx_parse_regulators_dt -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xd6dee63c mc13xxx_fixed_regulator_set_voltage -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x2bd0622b wm8350_register_regulator -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x85b399bb wm8350_register_led -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x8b45984a wm8350_dcdc_set_slot -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xcb47139e wm8350_dcdc25_set_mode -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xcbf43c14 wm8350_isink_set_flash -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xfc70739d wm8350_ldo_set_slot -EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0xac950047 wm8400_register_regulator -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x03085e57 scp_get_venc_hw_capa -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x1ad3a67e scp_put -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x35418bb9 scp_get_rproc -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x714f8a73 scp_get -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x945447b4 scp_get_vdec_hw_capa -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0xa1b5aedb scp_mapping_dm_addr -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0xb39dbd8c scp_get_device +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x3bd03fd9 ptp_qoriq_enable +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x578c3462 ptp_qoriq_adjfine +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x603d785f ptp_qoriq_settime +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xd3f761d4 ptp_qoriq_gettime +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xd734aadc ptp_qoriq_free +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x0a67db52 mc13xxx_parse_regulators_dt +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x6cc94ea7 mc13xxx_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x90fe3ab2 mc13xxx_get_num_regulators_dt +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xbd986434 mc13xxx_fixed_regulator_set_voltage +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xe5461257 mc13xxx_fixed_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x0a519193 wm8350_dcdc_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x3a868de6 wm8350_register_led +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x586fe2d3 wm8350_register_regulator +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x866d7c2d wm8350_dcdc25_set_mode +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xba2b0d5b wm8350_isink_set_flash +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xe4756a8d wm8350_ldo_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0xa9cb52c4 wm8400_register_regulator +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x15c256c8 scp_get_vdec_hw_capa +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x2e4d2ee0 scp_get_venc_hw_capa +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x38e36a3c scp_get_device +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x6ca71fe5 scp_get +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0xab89c07c scp_mapping_dm_addr +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0xc1160a61 scp_get_rproc +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0xdc2ed365 scp_put EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x09313652 scp_memcpy_aligned -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x230f0fd0 scp_ipi_lock -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x42181834 scp_ipi_unlock -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x4ee99732 scp_ipi_register -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0xcd4de51d scp_ipi_send -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0xfe719c42 scp_ipi_unregister +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x38f9202d scp_ipi_lock +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x6376a56a scp_ipi_unregister +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x7221a316 scp_ipi_unlock +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x8d88c986 scp_ipi_send +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0xf91b05c7 scp_ipi_register +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x0ae73622 qcom_add_ssr_subdev EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x0fa538df qcom_register_ssr_notifier -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x51cdc98b qcom_register_dump_segments -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x52b32dd9 qcom_minidump -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x52fabf9e qcom_remove_smd_subdev -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x8b51ce0d qcom_remove_glink_subdev -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xc4ea02b3 qcom_add_glink_subdev -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xcbac7594 qcom_add_smd_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x4f6353c7 qcom_register_dump_segments +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x53679b16 qcom_minidump +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x83289e98 qcom_remove_ssr_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x96aff0a0 qcom_add_glink_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xa3c77222 qcom_add_smd_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xbba824a7 qcom_remove_smd_subdev EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xd6cc0cc0 qcom_unregister_ssr_notifier -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xf0a74e97 qcom_add_ssr_subdev -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xf54c456c qcom_remove_ssr_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xd9223410 qcom_remove_glink_subdev EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_pil_info 0xd9cfbf16 qcom_pil_info_store -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x0305bf58 qcom_q6v5_request_stop -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x288351a4 qcom_q6v5_init -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x63e0c62c qcom_q6v5_wait_for_start -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x7fc78ac1 qcom_q6v5_panic -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x8a8342f8 qcom_q6v5_unprepare -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0xea928e7e qcom_q6v5_prepare +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x10537c6e qcom_q6v5_init +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x3322f2df qcom_q6v5_request_stop +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x3628eaf1 qcom_q6v5_prepare +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x66313165 qcom_q6v5_panic +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x8b5a0b56 qcom_q6v5_unprepare +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0xd2b939a7 qcom_q6v5_wait_for_start EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_sysmon 0x1482d168 qcom_sysmon_shutdown_acked -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_sysmon 0x8ef1c6f2 qcom_add_sysmon_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_sysmon 0x5d848099 qcom_add_sysmon_subdev EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_sysmon 0xa881c6fc qcom_remove_sysmon_subdev +EXPORT_SYMBOL_GPL drivers/rpmsg/mtk_rpmsg 0x07e63629 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 0xb1445010 mtk_rpmsg_create_rproc_subdev +EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0x1459c619 qcom_glink_native_probe EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0x149236da qcom_glink_native_remove -EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0x7bd69d7a qcom_glink_native_probe EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0xf14f5684 qcom_glink_ssr_notify EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0xfd2d5a1d qcom_glink_native_unregister EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink_smem 0x72dd75d9 qcom_glink_smem_unregister -EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink_smem 0xfd1003ab qcom_glink_smem_register -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x078e192f cxgbi_get_conn_stats -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0efd5b03 cxgbi_set_conn_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x11d768f1 cxgbi_sock_rcv_close_conn_rpl -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x27441668 cxgbi_device_find_by_lldev -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2c3efd20 cxgbi_conn_alloc_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x315bf895 cxgbi_destroy_session -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3221030f cxgbi_sock_rcv_wr_ack -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x34c3930a cxgbi_sock_rcv_peer_close -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3586bfe2 cxgbi_iscsi_cleanup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3597661a cxgbi_sock_fail_act_open -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3e8256f5 cxgbi_ep_disconnect -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x50038a62 cxgbi_create_conn -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x53709ced cxgbi_sock_free_cpl_skbs -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x56bc43ac cxgbi_sock_rcv_abort_rpl -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x58aca0d7 cxgbi_sock_select_mss -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5c1f0fe1 cxgbi_set_host_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5cde4146 cxgbi_parse_pdu_itt -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x635b2e7a cxgbi_ep_poll -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x66549858 cxgbi_bind_conn -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x67d9b373 cxgbi_sock_skb_entail -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6acc9283 cxgbi_device_find_by_netdev -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6bfea494 cxgbi_sock_check_wr_invariants -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6d2d6122 cxgbi_hbas_add -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7014a490 cxgbi_sock_closed +EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink_smem 0xcafe6e8c qcom_glink_smem_register +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0e9f8ad4 cxgbi_device_unregister +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0fe31a5d cxgbi_hbas_remove +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x112ffebd cxgbi_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1a63b267 cxgbi_ep_poll +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1f13afa0 cxgbi_device_portmap_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2851cf1b cxgbi_conn_xmit_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2a0eaaa2 cxgbi_sock_free_cpl_skbs +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x30ea0bb0 cxgbi_ep_connect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3198af74 cxgbi_sock_select_mss +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x32916a5b cxgbi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3b899f74 cxgbi_conn_pdu_ready +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3c022205 cxgbi_sock_purge_wr_queue +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3f126f1e cxgbi_sock_closed +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x46084467 cxgbi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5097cd47 cxgbi_bind_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x52b7aff4 cxgbi_sock_established +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x597250b4 cxgbi_sock_rcv_close_conn_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5fee1c54 cxgbi_set_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x606e23f1 cxgbi_device_find_by_netdev_rcu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x64e57dcf cxgbi_iscsi_init +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6953e273 cxgbi_get_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x799c1647 cxgbi_sock_fail_act_open EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fdb6004 cxgbi_device_unregister_all -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x80278cd3 cxgbi_sock_act_open_req_arp_failure -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x80d35985 cxgbi_create_session -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x81a3b8a9 cxgbi_conn_xmit_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9b03a20d cxgbi_device_unregister -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9b0f2112 cxgbi_ddp_ppm_setup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa37d6daa cxgbi_sock_purge_wr_queue -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa6f0aac2 cxgbi_device_register -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa9a27dcb cxgbi_ep_connect -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb7250b4e cxgbi_conn_init_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc49769e7 cxgbi_iscsi_init -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xda1608b8 cxgbi_conn_pdu_ready -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdb9bf103 cxgbi_device_portmap_cleanup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdfd8ad35 cxgbi_get_ep_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe533747a cxgbi_conn_tx_open -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe571068d cxgbi_hbas_remove -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe6df0d13 cxgbi_cleanup_task -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xeba19dc6 cxgbi_get_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x882881f9 cxgbi_sock_act_open_req_arp_failure +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x893f9bc9 cxgbi_sock_skb_entail +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8db1c27a cxgbi_conn_init_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x94785211 cxgbi_get_conn_stats +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xacd60187 cxgbi_device_find_by_lldev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xaec3ed2c cxgbi_conn_alloc_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb68bb3a6 cxgbi_ddp_ppm_setup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbb486e97 cxgbi_hbas_add +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc161e3ef cxgbi_conn_tx_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xcc8808df cxgbi_device_portmap_create +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd111eb33 cxgbi_sock_rcv_abort_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd1c9b049 cxgbi_device_register +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd46bd223 cxgbi_ep_disconnect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd5819b99 cxgbi_sock_check_wr_invariants +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdc42d95b cxgbi_get_ep_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xde1eb86e cxgbi_sock_rcv_wr_ack +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe11f95f6 cxgbi_iscsi_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe2a62f5a cxgbi_parse_pdu_itt +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe8763045 cxgbi_device_find_by_netdev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xebd1a9bf cxgbi_destroy_session EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xef346615 cxgbi_attr_is_visible -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf0a64bdb cxgbi_device_portmap_create -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf428bf1b cxgbi_device_find_by_netdev_rcu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf650479c cxgbi_sock_rcv_peer_close +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf68e34d1 cxgbi_set_conn_param EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf76db0d0 cxgbi_ddp_set_one_ppod -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xfb75eaf1 cxgbi_sock_established -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x079d0faf fcoe_clean_pending_queue -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x1e7303fa fcoe_link_speed_update -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x440ac0e9 fcoe_ctlr_device_delete -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x66f9c4ac fcoe_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x6c9931a7 fcoe_libfc_config -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x78778718 fcoe_fcf_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0fc07c81 fcoe_fcf_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x17658bdd fcoe_clean_pending_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x2c6f7e87 fcoe_validate_vport_create +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x38dfbf5a __fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x69bce376 fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x7074f905 fcoe_ctlr_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x78ce83ab fcoe_fcf_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x790faeb7 fcoe_ctlr_device_add EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x7e92994b fcoe_wwn_from_mac -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xa07c4c08 __fcoe_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xa0bb0631 fcoe_ctlr_device_add -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xa265183f fcoe_get_wwn -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xb1aa0d50 fcoe_get_paged_crc_eof +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x9059495c fcoe_libfc_config +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xb61a8847 fcoe_ctlr_device_delete EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xbac58840 fcoe_queue_timer -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xc6055b2f fcoe_start_io -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xd6cd51bb fcoe_fc_crc -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xdc79feab fcoe_fcf_device_delete -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xece9335f fcoe_validate_vport_create +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xbb85247e fcoe_link_speed_update +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xbc316a4a fcoe_start_io +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xc6d6fef8 fcoe_fc_crc +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xc94e6734 fcoe_get_paged_crc_eof +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xd20fe266 fcoe_check_wait_queue EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf167cb7a fcoe_wwn_to_str -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf374f392 fcoe_ctlr_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf7e34916 fcoe_check_wait_queue -EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0x01c4eedd fdomain_create -EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0xf006b69e fdomain_destroy +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf24184b3 fcoe_get_wwn +EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0x079e7b12 fdomain_create +EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0x2580a9d1 fdomain_destroy EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x0d1b14d6 iscsi_boot_create_acpitbl EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x62b176b8 iscsi_boot_create_ethernet EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x70236ec0 iscsi_boot_create_initiator @@ -15549,335 +15588,335 @@ EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xe19a83c4 iscsi_boot_create_target EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xe7bb28bd iscsi_boot_create_host_kset EXPORT_SYMBOL_GPL drivers/scsi/libfc/libfc 0xe540147a fc_seq_els_rsp_send -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x01ec35c9 iscsi_conn_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x031c84b9 iscsi_update_cmdsn -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x03badf93 iscsi_conn_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x06c0babb iscsi_suspend_tx -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x091b976c iscsi_suspend_queue -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x09cd5231 iscsi_session_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0cecf618 iscsi_itt_to_ctask -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0d5949fb iscsi_host_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1054bd69 iscsi_conn_queue_work +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x03c16708 iscsi_host_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x07b2b99b iscsi_conn_start +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0ccc41eb iscsi_host_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0d467218 iscsi_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0e5b24e2 iscsi_session_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0eb66a51 iscsi_conn_unbind EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1c25aa6e iscsi_host_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x239a91d8 __iscsi_put_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x343e8a90 iscsi_conn_failure -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3559e6fe iscsi_requeue_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x39f20f66 iscsi_host_get_max_scsi_cmds +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x15ff87de iscsi_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1c80f125 iscsi_conn_bind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1f614c8f iscsi_itt_to_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x21685d4d iscsi_session_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x241f7c5b iscsi_conn_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3137c44b iscsi_host_add +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x375537e2 iscsi_complete_scsi_task EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3c06beb0 iscsi_session_recovery_timedout -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x49d5f788 iscsi_conn_stop -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x54751c21 iscsi_conn_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x553ee420 iscsi_eh_cmd_timed_out -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x57004a94 iscsi_complete_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5d980313 iscsi_session_failure -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5f623ad3 iscsi_host_add -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x65751d35 iscsi_target_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x78cacbee __iscsi_get_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7bc8da2f iscsi_conn_unbind -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7ed8bb25 iscsi_eh_abort -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7fc6a807 iscsi_host_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3c3ae8b5 iscsi_suspend_tx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4d32b343 iscsi_session_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x51667a38 iscsi_itt_to_ctask +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x532a2e89 iscsi_session_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5b4a4db3 iscsi_update_cmdsn +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5d21679a iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x689e56bc iscsi_conn_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6ddb3959 iscsi_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x716512e6 iscsi_session_recovery_timedout +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x841c5c00 iscsi_host_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x85ed5b35 iscsi_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x87fd051d iscsi_suspend_queue EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8e81f91c iscsi_eh_recover_target -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x94f92161 iscsi_conn_start -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9a9a4cfe iscsi_host_remove -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9b5d373c __iscsi_complete_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9bbaf2e7 iscsi_session_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcc91204b iscsi_session_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcdf867fd iscsi_eh_session_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd243b27e iscsi_complete_scsi_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xde672631 iscsi_conn_send_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe2e39f36 iscsi_host_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe326eb4f iscsi_put_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe384ad7e iscsi_eh_device_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe7be2e1a iscsi_verify_itt +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8e20f81b iscsi_eh_recover_target +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x915dcd32 iscsi_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x99494ce8 iscsi_host_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9e3a2779 iscsi_verify_itt +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9e8b6ead iscsi_eh_device_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9f001113 iscsi_conn_send_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb334e168 iscsi_host_get_max_scsi_cmds +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb801e8ed __iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc35004f5 iscsi_eh_cmd_timed_out +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc61ef5d6 iscsi_eh_session_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc73b9594 iscsi_host_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc8a6df38 iscsi_eh_abort +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcbcffb39 iscsi_prep_data_out_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcc1a6950 iscsi_conn_stop +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd678eb18 iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd9e4a7ce __iscsi_get_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdeca5f85 iscsi_requeue_task EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeab9cbd5 iscsi_conn_get_addr_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeb1644a7 iscsi_queuecommand -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xefe4b1e4 iscsi_prep_data_out_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf7db1e04 iscsi_set_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf9123686 iscsi_conn_bind -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfdf66e75 iscsi_itt_to_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x00d93ab4 iscsi_tcp_hdr_recv_prep -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x0372ea17 iscsi_tcp_conn_get_stats -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x2b219af2 iscsi_tcp_cleanup_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x36b7474c iscsi_segment_init_linear -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x3c7e16d5 iscsi_segment_seek_sg -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x457c2989 iscsi_tcp_segment_done -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x63a111b1 iscsi_tcp_recv_segment_is_hdr -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x67289e58 iscsi_tcp_r2tpool_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x7da80569 iscsi_tcp_segment_unmap -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x86e2cb58 iscsi_tcp_set_max_r2t -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x955699bf iscsi_tcp_conn_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x9702fc6a iscsi_tcp_r2tpool_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xaf6014c8 iscsi_tcp_recv_skb -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xc8279807 iscsi_tcp_conn_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xd300e2c9 iscsi_tcp_task_init -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xdf6ab319 iscsi_tcp_task_xmit -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xf27d7b0a iscsi_tcp_dgst_header -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x02d7534c sas_eh_device_reset_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x155de219 sas_ioctl -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x20b1af13 sas_bios_param -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x22f0cf70 sas_change_queue_depth -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x33d7fdc7 sas_task_abort -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x36ffcd2e dev_attr_phy_event_threshold -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4dda0aa1 sas_get_local_phy -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x58fcb327 sas_domain_attach_transport -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5be2fa86 sas_queuecommand -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x634c7c19 sas_slave_configure -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x66083e2d sas_free_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6660b72b sas_notify_phy_event -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7092c1b6 sas_drain_work -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7df7e378 sas_target_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x87da5c59 sas_eh_target_reset_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9d39a0a4 sas_target_destroy -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9ea377c9 sas_slave_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa2cc3f64 sas_register_ha -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xada12928 sas_eh_abort_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xbb7f15fc sas_phy_reset -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc09a6a30 sas_alloc_slow_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xcb061b4d sas_alloc_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xce98179a sas_unregister_ha -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd3e01009 sas_ssp_task_response -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xdd850f52 sas_notify_port_event -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe2bf6b96 sas_ata_schedule_reset -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xfcb45b70 sas_request_addr -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_fc 0xc05a1a9b fc_eh_should_retry_cmd -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0039b087 iscsi_block_scsi_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x003a92b2 iscsi_is_session_online +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf2c264c2 __iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfbc03395 iscsi_conn_queue_work +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x084544c5 iscsi_segment_init_linear +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x11fa3079 iscsi_tcp_conn_get_stats +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x1556ff9a iscsi_tcp_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x1af15653 iscsi_tcp_segment_done +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x2e1bf9b3 iscsi_tcp_r2tpool_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x3741dc90 iscsi_tcp_task_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x5625e676 iscsi_tcp_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x6b2e5047 iscsi_tcp_recv_skb +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x706b3128 iscsi_tcp_segment_unmap +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x8459db8a iscsi_tcp_dgst_header +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x97d91cdf iscsi_tcp_set_max_r2t +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xb274d0c1 iscsi_tcp_recv_segment_is_hdr +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xc1ff2a18 iscsi_segment_seek_sg +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xdd7aec41 iscsi_tcp_hdr_recv_prep +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xe11ba5e6 iscsi_tcp_r2tpool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xe5569ccc iscsi_tcp_task_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xfbd8bb92 iscsi_tcp_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x069eb31f sas_drain_work +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0eb83882 sas_change_queue_depth +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1d32c3be sas_register_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2927af08 sas_task_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2caf2098 sas_ata_schedule_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x309e82f9 dev_attr_phy_event_threshold +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x31cb6e19 sas_slave_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x368e9177 sas_bios_param +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3c894445 sas_target_destroy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3f4c5518 sas_eh_abort_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x403afb42 sas_domain_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4a51913b sas_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5a21e28c sas_ioctl +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x80862c52 sas_get_local_phy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8ab6efe0 sas_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x96cbcb9b sas_ssp_task_response +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x99f4608f sas_notify_phy_event +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9b8a8c21 sas_eh_device_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa18e3c07 sas_free_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa57e2fc1 sas_alloc_slow_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb00cb67e sas_unregister_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb4c959a4 sas_request_addr +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc98fa48d sas_phy_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd4304eb3 sas_notify_port_event +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xda1d36c1 sas_alloc_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe187efa8 sas_slave_configure +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe31b8e62 sas_eh_target_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_fc 0x50f9ea96 fc_eh_should_retry_cmd EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x028b6f61 __tracepoint_iscsi_dbg_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x02fb93a3 iscsi_get_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x16edcada iscsi_host_for_each_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1ae90a59 iscsi_remove_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1c2803e2 iscsi_create_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0415f15e iscsi_session_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x04a7d850 iscsi_offload_mesg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x04c5c539 iscsi_create_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0a30a5fc iscsi_alloc_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0e5fd706 iscsi_find_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x15083bf9 iscsi_host_for_each_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1a55b69e __traceiter_iscsi_dbg_sw_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1e058f10 iscsi_conn_login_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2202b3e8 iscsi_get_port_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x238d19a5 iscsi_create_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x28e56160 iscsi_register_transport EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2a8527a3 __tracepoint_iscsi_dbg_sw_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2b429fe0 iscsi_recv_pdu +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2e4b7940 iscsi_destroy_all_flashnode +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2fd08076 iscsi_unregister_transport EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x338f0d3f __tracepoint_iscsi_dbg_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x501fd067 iscsi_lookup_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x56c7466c iscsi_post_host_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3bf326fe iscsi_get_port_speed_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4d7d3629 iscsi_flashnode_bus_match +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x55239d3f iscsi_free_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5718aad0 iscsi_add_session EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x584a31ab __SCK__tp_func_iscsi_dbg_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5e430270 iscsi_put_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5f468c0e iscsi_create_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x65751e13 iscsi_recv_pdu +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5aa0429a iscsi_post_host_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5cd2612b iscsi_put_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5dfaf962 iscsi_scan_finished EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x699fe53e iscsi_get_discovery_parent_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6a0de746 iscsi_find_flashnode_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6d57096a iscsi_free_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6e151fb4 iscsi_create_flashnode_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6e479c42 iscsi_is_session_dev -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6f5babd9 __traceiter_iscsi_dbg_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x70cd9f01 iscsi_destroy_all_flashnode +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6cf73791 iscsi_put_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6f077589 iscsi_is_session_online +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6f126c80 iscsi_block_session EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x71b768b0 __SCK__tp_func_iscsi_dbg_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x79e7eff4 iscsi_register_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7a829336 __traceiter_iscsi_dbg_sw_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x746d9fd6 iscsi_create_endpoint EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7ced5abd __tracepoint_iscsi_dbg_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7f18637f iscsi_put_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x822336ae iscsi_block_scsi_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 0x8573bf1e iscsi_destroy_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x863aeff6 iscsi_remove_session EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x88768c48 __SCK__tp_func_iscsi_dbg_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x888ffd54 iscsi_destroy_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8c5fca2e iscsi_unregister_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8dbd6de5 iscsi_flashnode_bus_match -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8eff9392 iscsi_dbg_trace -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x95219183 iscsi_conn_login_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x96f5d76e iscsi_add_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa31c9247 iscsi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x897bece0 iscsi_destroy_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8f8f42cb __traceiter_iscsi_dbg_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x92afa38d __traceiter_iscsi_dbg_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x940c5a0a iscsi_find_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x96afdb0b iscsi_ping_comp_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9c193f9b __traceiter_iscsi_dbg_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9ca99ead iscsi_create_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa33ddce5 iscsi_unblock_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa4e79c45 iscsi_session_chkready EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xab4674c8 __SCK__tp_func_iscsi_dbg_sw_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xaf6c51cf iscsi_session_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb64c813a iscsi_conn_error_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb6db74c7 iscsi_session_chkready +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xab8c9b51 iscsi_get_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xae176e7b iscsi_is_session_dev EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc071179 iscsi_get_ipaddress_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbdbc844e __traceiter_iscsi_dbg_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbf0d1d4d iscsi_destroy_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbfa7ba5c iscsi_find_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc36b911d iscsi_unblock_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc4742525 __traceiter_iscsi_dbg_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc7ffc9c1 iscsi_create_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc8040399 iscsi_scan_finished -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xcd312a8e iscsi_destroy_iface -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd0072129 iscsi_create_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd50b6583 iscsi_get_port_speed_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd6a5f839 iscsi_block_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc235291e iscsi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd2bdd4c5 __traceiter_iscsi_dbg_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd95a9e6c iscsi_dbg_trace EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe4c79fa6 __SCK__tp_func_iscsi_dbg_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xebf21520 iscsi_offload_mesg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf6a4860f iscsi_alloc_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf70f01be iscsi_get_port_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfc981dc4 iscsi_ping_comp_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfcb38f98 __traceiter_iscsi_dbg_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfd033d00 iscsi_destroy_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x0054b137 sas_tlr_supported -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x0aec3ddb sas_is_tlr_enabled -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x0f5d7f38 sas_enable_tlr -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xaa664df3 sas_disable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xecbe9042 iscsi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf4756e98 iscsi_lookup_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf8259c5d iscsi_destroy_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfa29fe82 iscsi_destroy_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfe4b191c iscsi_conn_error_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x0a07d1d8 sas_tlr_supported +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x899c2e46 sas_disable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xc9336ff4 sas_is_tlr_enabled +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xd365ee79 sas_enable_tlr EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x0ef06974 spi_populate_ppr_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x428286ba 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 0xe90591d1 spi_populate_tag_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x10e8a513 srp_remove_host EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x1902178a srp_tmo_valid -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x1b6a73c9 srp_rport_del -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x87600c41 srp_remove_host -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xacae82a2 srp_attach_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xdf7d5697 srp_rport_add -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xf16a71b3 srp_release_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xf7455d91 srp_stop_rport_timers -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x0b07732d ufshcd_make_hba_operational -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x16b616c8 ufshcd_hba_enable -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x1a149d46 ufshcd_init -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x2db7795e ufshcd_resume_complete -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x33fb8d93 ufshcd_remove -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x46fb9976 ufshcd_dme_set_attr -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x4e7564fb ufshcd_dump_regs -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x5d8ff189 ufshcd_config_pwr_mode -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x5fe6149c ufshcd_hold +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x3e458e3a srp_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x4581e602 srp_rport_add +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x630da47a srp_stop_rport_timers +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x7105314f srp_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xbc4ff024 srp_rport_del +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x0acba58e ufshcd_uic_hibern8_exit +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x197203f3 ufshcd_dealloc_host +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x3374b190 ufshcd_link_recovery +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x3963bbf2 ufshcd_init +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x54011470 ufshcd_hba_enable +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x57575075 ufshcd_release +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x6915fe5c ufshcd_hold +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x7060c5e9 ufshcd_hba_stop EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x723b1abf ufshcd_delay_us -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x7a6d0c69 ufshcd_dme_configure_adapt -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x8d1ffeae ufshcd_dme_get_attr -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x8fb0da0c ufshcd_auto_hibern8_update -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xb2006be2 ufshcd_suspend_prepare -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xd1fb8796 ufshcd_fixup_dev_quirks -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xd741c7d6 ufshcd_release -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xd9e6c6e1 ufshcd_dealloc_host -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xdf23e57a ufshcd_link_recovery -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xdf717f1c ufshcd_uic_hibern8_exit -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xe5cd20ca ufshcd_update_evt_hist -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xf7b9f6d1 ufshcd_hba_stop +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x73e4b462 ufshcd_dme_configure_adapt +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xa6cd6b46 ufshcd_dme_get_attr +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xa9585dcd ufshcd_suspend_prepare +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xab622ec9 ufshcd_dump_regs +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xb9d9395f ufshcd_remove +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xbfc8c716 ufshcd_update_evt_hist +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xc0bd9330 ufshcd_resume_complete +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xc5f13401 ufshcd_make_hba_operational +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xe6ce0545 ufshcd_auto_hibern8_update +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xebd8ea30 ufshcd_dme_set_attr +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xfc092288 ufshcd_fixup_dev_quirks +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xfec9f94c ufshcd_config_pwr_mode EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x54c946de ufshcd_init_pwr_dev_param -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x8ce945a7 ufshcd_pltfrm_shutdown -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x9f299aaa ufshcd_pltfrm_init +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x58e5b59e ufshcd_pltfrm_shutdown +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x84c7e9c3 ufshcd_pltfrm_init EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xff85cd6b ufshcd_get_pwr_dev_param -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x730c3316 siox_master_unregister -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x77d68a2d siox_master_register -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x84626efb siox_device_connected -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x996a45a1 __siox_driver_register -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x9bba75dd siox_device_synced -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xf80bad68 siox_master_alloc -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x26dff1af slim_get_logical_addr -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x2b5ffc2d slim_free_txn_tid -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x2f657c75 slim_driver_unregister -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x30dc7ce2 slim_xfer_msg -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x3568a879 slim_report_absent -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x37a37b51 of_slim_get_device -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x4e1264ad slim_stream_free -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x512993d1 slim_do_transfer -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x54ba5a4a slim_stream_allocate -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x589c66c2 slim_device_report_present -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x6705028b slim_readb -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x77733373 slim_ctrl_clk_pause -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x88d9c0e4 slim_stream_enable -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x896867bb slim_write -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x95215f9b slim_stream_prepare -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x9e4d08e5 slim_register_controller -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x9f155013 slimbus_bus -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xaaba066d slim_stream_disable -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xb6d98588 slim_stream_unprepare -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xc00eeea6 slim_writeb -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xc0416a17 slim_unregister_controller -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xc363a779 slim_get_device -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xeb6cf262 slim_read -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xf2f245e0 slim_msg_response -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xf30320a0 slim_alloc_txn_tid -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xf5ef7447 __slim_driver_register +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x1f6b6857 siox_device_synced +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x3a0e8cae siox_device_connected +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x57a0024c __siox_driver_register +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xbc2a48c9 siox_master_unregister +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xc4285b47 siox_master_alloc +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xc55ac344 siox_master_register +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x1142ddc5 slim_stream_allocate +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x21527cdd slim_ctrl_clk_pause +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x2d4ceac4 slim_stream_unprepare +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x32df9ac7 slim_write +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x3f323608 slim_stream_enable +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x3f87b98b slim_unregister_controller +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x45b7ccb6 slim_free_txn_tid +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x566d91cf slim_stream_disable +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x6110e5ce slim_stream_prepare +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x6edc89b0 __slim_driver_register +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x7c25756c slimbus_bus +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x7e623df0 slim_alloc_txn_tid +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x8636f7ad slim_readb +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x8d1c103e slim_writeb +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xa0558061 slim_device_report_present +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xae7a6859 slim_do_transfer +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xbe23adf2 slim_get_device +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xbf0062a2 slim_get_logical_addr +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xc741777f slim_driver_unregister +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xcacaa5ec slim_register_controller +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xd17acc3a slim_xfer_msg +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xdb0aa4b9 slim_stream_free +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xdb734eb1 slim_msg_response +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xdea18d39 of_slim_get_device +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xe4c9a1d1 slim_report_absent +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xe9d2eb24 slim_read +EXPORT_SYMBOL_GPL drivers/soc/amlogic/meson-canvas 0x2b48c198 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 0x8d767cea meson_canvas_get EXPORT_SYMBOL_GPL drivers/soc/amlogic/meson-canvas 0xfbd79150 meson_canvas_free -EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x0d277816 __apr_driver_register -EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x0f4582d5 apr_send_pkt -EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x35bcf9ed aprbus -EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x6acce645 apr_driver_unregister +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x5ef7d6b9 __apr_driver_register +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x9a4f1379 apr_driver_unregister +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0xf13b2638 apr_send_pkt +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0xfc5fda34 aprbus EXPORT_SYMBOL_GPL drivers/soc/qcom/llcc-qcom 0x06285798 llcc_slice_deactivate EXPORT_SYMBOL_GPL drivers/soc/qcom/llcc-qcom 0x09afc16e llcc_slice_activate EXPORT_SYMBOL_GPL drivers/soc/qcom/llcc-qcom 0x14f99b76 llcc_get_slice_id EXPORT_SYMBOL_GPL drivers/soc/qcom/llcc-qcom 0x2027e82d llcc_slice_getd EXPORT_SYMBOL_GPL drivers/soc/qcom/llcc-qcom 0x62ff6e92 llcc_slice_putd EXPORT_SYMBOL_GPL drivers/soc/qcom/llcc-qcom 0xdffee709 llcc_get_slice_size -EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0x155d74be qcom_mdt_load_no_init EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0x42f47788 qcom_mdt_read_metadata EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0x45e1cd7c qcom_mdt_get_size -EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0x98ef2b4a qcom_mdt_load -EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x09275b50 __sdw_register_driver -EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x18b7186d sdw_unregister_driver -EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x3254d8a9 sdw_bus_type -EXPORT_SYMBOL_GPL drivers/spi/spi-altera-core 0x55db36a6 altera_spi_init_master +EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0x903c2877 qcom_mdt_load_no_init +EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0xa7a6eac1 qcom_mdt_load +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x086c91c5 sdw_bus_type +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x80281fcf __sdw_register_driver +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0xfa00e302 sdw_unregister_driver +EXPORT_SYMBOL_GPL drivers/spi/spi-altera-core 0xae391db5 altera_spi_init_master EXPORT_SYMBOL_GPL drivers/spi/spi-altera-core 0xb9edd149 altera_spi_irq -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x35773c5b spi_bitbang_init -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x3617da6a spi_bitbang_setup_transfer -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x701dbc90 spi_bitbang_cleanup -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x76658b0e spi_bitbang_setup -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xa42d961c spi_bitbang_stop -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xcb5b148e spi_bitbang_start -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x0aadb55d dw_spi_set_cs -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x22444481 dw_spi_dma_setup_generic -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x4557303e dw_spi_suspend_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x4c633fc4 dw_spi_dma_setup_mfld -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x7990efe8 dw_spi_update_config -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xb2dd7f3a dw_spi_add_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xb51abc44 dw_spi_resume_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xd290a76e dw_spi_check_status -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xd2dd8635 dw_spi_remove_host -EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x8b0ec92c spi_test_run_tests -EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0xce431de5 spi_test_run_test -EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0xee97745c spi_test_execute_msg -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x10e66c0a spmi_command_sleep -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x27845f15 spmi_ext_register_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x2b5b2609 spmi_device_add -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x382c5d19 spmi_command_shutdown -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x3da2a735 spmi_register_read -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x46f83e38 spmi_controller_add -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x4bc6c72c spmi_ext_register_read -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x653e7118 spmi_register_zero_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x946c7767 spmi_device_alloc -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xb0e5a7e6 spmi_ext_register_readl -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xb47aa4f2 spmi_command_wakeup -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xb7b8d4ac spmi_device_remove -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xba5723a6 spmi_controller_alloc -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xbb4796ef spmi_ext_register_writel -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xc4167926 spmi_controller_remove -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xe337ae28 __spmi_driver_register -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xea0264ea spmi_command_reset -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xf51b9f89 spmi_register_write -EXPORT_SYMBOL_GPL drivers/ssb/ssb 0x4c038a43 ssb_pmu_spuravoid_pllupdate -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x1d3de4b8 anybuss_client_driver_unregister -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x9ba12ac2 anybuss_recv_msg -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x9db603b9 anybuss_send_ext -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xa8751d57 anybuss_write_input -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xad63b27d anybuss_client_driver_register -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xcd13a307 anybuss_host_common_probe -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xdde12270 anybuss_finish_init -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xef2c9f11 anybuss_send_msg -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xf5389541 anybuss_set_power -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xf7ab8ebe devm_anybuss_host_common_probe -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xfca2dd7b anybuss_start_init +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x0d3bbb1f spi_bitbang_init +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x4987a9cc spi_bitbang_setup_transfer +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x665f7cb2 spi_bitbang_setup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x892d13b5 spi_bitbang_cleanup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xa1744480 spi_bitbang_stop +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xf106124f spi_bitbang_start +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x57f65ae1 dw_spi_remove_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x5989d329 dw_spi_add_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x7e5972a7 dw_spi_resume_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xba84765a dw_spi_dma_setup_mfld +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xcefe3223 dw_spi_update_config +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xcf34ac6d dw_spi_suspend_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xd51a69f0 dw_spi_dma_setup_generic +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xf4760bd0 dw_spi_set_cs +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xfa4c6abf dw_spi_check_status +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x164d8b43 spi_test_run_test +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0xbd4c88f9 spi_test_execute_msg +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0xe32e8129 spi_test_run_tests +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x23be299f spmi_ext_register_readl +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x2beec0bf spmi_controller_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x2ebcd2db spmi_register_zero_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x350e8002 __spmi_driver_register +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x3b67b3c7 spmi_command_reset +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x4a2380df spmi_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x506ffce4 spmi_device_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x62d83438 spmi_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x65bd6d84 spmi_ext_register_writel +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x67f005ab spmi_controller_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x7c0c7bd8 spmi_ext_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x8a59ed91 spmi_command_wakeup +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x92e7378d spmi_controller_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xc25fbd32 spmi_device_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xcd028e64 spmi_command_shutdown +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xe3819751 spmi_device_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xe8650e2e spmi_ext_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xfba1c50d spmi_command_sleep +EXPORT_SYMBOL_GPL drivers/ssb/ssb 0x52fd5724 ssb_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x2c8c5bc3 devm_anybuss_host_common_probe +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x4d8f745f anybuss_host_common_probe +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x514f3d98 anybuss_client_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x586f829d anybuss_set_power +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x5ac37d71 anybuss_read_output +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x5b6004e8 anybuss_client_driver_register +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x765191e0 anybuss_recv_msg +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x7d163b86 anybuss_read_fbctrl +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x90a31b0c anybuss_send_ext +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xa0ba07da anybuss_start_init +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xde369e39 anybuss_send_msg +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xe3d31b36 anybuss_write_input +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xeef7df47 anybuss_finish_init EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xfce879ad anybuss_host_common_remove -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xfd148155 anybuss_read_output -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xfd671f44 anybuss_read_fbctrl -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x0b50cb35 fieldbus_dev_register -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x46efacda fieldbus_dev_online_changed -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x89f65c04 fieldbus_dev_area_updated -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0xc6a40aae fieldbus_dev_unregister -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x1c544a17 gb_audio_apbridgea_stop_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x251124c8 gb_audio_apbridgea_set_config -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x282418f6 gb_audio_apbridgea_unregister_cport -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x3d2b6f44 gb_audio_apbridgea_shutdown_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x4e8f6b74 gb_audio_apbridgea_set_rx_data_size -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x68b208e2 gb_audio_apbridgea_register_cport -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x6cde33d6 gb_audio_apbridgea_prepare_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x8a63de4d gb_audio_apbridgea_start_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x94ff3daa gb_audio_apbridgea_prepare_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xb4146316 gb_audio_apbridgea_start_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xc50a6138 gb_audio_apbridgea_shutdown_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xe43f72dc gb_audio_apbridgea_set_tx_data_size -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xe475446b gb_audio_apbridgea_stop_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x048858ab gb_audio_gb_enable_widget -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x0d0f4534 gb_audio_gb_set_control -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x2cbecf43 gb_audio_gb_activate_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x69312ca0 gb_audio_gb_deactivate_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x6f1621e2 gb_audio_gb_get_topology -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x7ffc0c9b gb_audio_gb_set_rx_data_size -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xa0cd9bc8 gb_audio_gb_deactivate_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xa3c1b66f gb_audio_gb_get_pcm -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xc0d0d723 gb_audio_gb_get_control -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xe542782b gb_audio_gb_activate_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xe9cb5f28 gb_audio_gb_disable_widget -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xf51433fd gb_audio_gb_set_tx_data_size -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xf5c88c22 gb_audio_gb_set_pcm +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x10ddc725 fieldbus_dev_online_changed +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x33a40e84 fieldbus_dev_area_updated +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x77eba352 fieldbus_dev_unregister +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0xf424e7bb fieldbus_dev_register +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x05a79f73 gb_audio_apbridgea_start_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x1196f1bd gb_audio_apbridgea_prepare_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x14935dd9 gb_audio_apbridgea_set_config +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x26e56873 gb_audio_apbridgea_start_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x2a19d721 gb_audio_apbridgea_set_rx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x5df11866 gb_audio_apbridgea_stop_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x7153bdbd gb_audio_apbridgea_shutdown_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x7a469cfe gb_audio_apbridgea_unregister_cport +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x7a7853c4 gb_audio_apbridgea_register_cport +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x972bcaa3 gb_audio_apbridgea_shutdown_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xbb896f78 gb_audio_apbridgea_stop_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xdb876674 gb_audio_apbridgea_set_tx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xf7ee86a3 gb_audio_apbridgea_prepare_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x03c455c6 gb_audio_gb_activate_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x0f2551ce gb_audio_gb_deactivate_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x20ddd65f gb_audio_gb_set_rx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x259f659b gb_audio_gb_deactivate_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x297e6193 gb_audio_gb_activate_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x3649c603 gb_audio_gb_get_pcm +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x91615869 gb_audio_gb_disable_widget +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xa7b55b81 gb_audio_gb_set_tx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xaf7e874e gb_audio_gb_get_topology +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xb6d95895 gb_audio_gb_set_pcm +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xf4e0397b gb_audio_gb_get_control +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xfd36585a gb_audio_gb_set_control +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xfd8308f9 gb_audio_gb_enable_widget EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x19e9e6b1 gb_audio_manager_remove_all EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x32e6391e gb_audio_manager_remove EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x34e1eda0 gb_audio_manager_put_module @@ -15885,356 +15924,356 @@ 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 0xaebe87ae gb_audio_manager_get_module -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0x172a2f79 gb_gbphy_register_driver -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0xcd7c3f97 gb_gbphy_deregister_driver -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0x70ea2dc0 gb_spilib_master_init -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0x7f742ad4 gb_spilib_master_exit -EXPORT_SYMBOL_GPL drivers/staging/iio/addac/adt7316 0x28ba78b1 adt7316_pm_ops -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x03bf0003 imx_media_capture_device_init -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x044f5ce7 imx_media_probe_complete -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x13fc238f imx_media_find_subdev_by_devname -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x2b37160a imx_media_get_pad_fwnode -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x2b44958c imx_media_capture_device_remove +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0x72cc6bcc gb_gbphy_register_driver +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0xa2e56e37 gb_gbphy_deregister_driver +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0xba144bf4 gb_spilib_master_exit +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0xe61a01d0 gb_spilib_master_init +EXPORT_SYMBOL_GPL drivers/staging/iio/addac/adt7316 0x88e9c598 adt7316_pm_ops +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x01156bb7 imx_media_capture_device_remove +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x0292f6c2 imx_media_capture_device_register +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x09844634 imx_media_alloc_dma_buf +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x11c42433 imx_media_pipeline_pad +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x20590277 imx_media_probe_complete +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x2460fb3e imx_media_pipeline_video_device +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x2673ee15 imx_media_pipeline_set_stream +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x2bd81dcc imx_media_free_dma_buf +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x36367556 imx_media_dev_init +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x366fe25c imx_media_of_add_csi +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x389338cd imx_media_add_of_subdevs EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x3afc4948 imx_media_find_pixel_format -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x4d8d595a imx_media_capture_device_next_buf 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 0x65007a37 imx_media_pipeline_set_stream -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x70b3a975 imx_media_dev_init -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x8339c982 imx_media_of_add_csi -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x8c31c7a8 imx_media_free_dma_buf -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x8fc7ba4f imx_media_alloc_dma_buf -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x9013945b imx_media_add_of_subdevs -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x9031a33c imx_media_capture_device_register -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x9c0205fc imx_media_find_subdev_by_fwnode +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x6aa0a62a imx_media_pipeline_csi2_channel +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x976e3994 imx_media_find_subdev_by_fwnode +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x9e9508cf imx_media_capture_device_next_buf +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x9f9fe26a imx_media_init_cfg +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xa20b44eb imx_media_capture_device_error 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 0xad2d6584 imx_media_capture_device_error +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xade01db7 imx_media_dev_notifier_register EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xb1aa36eb imx_media_ipu_image_to_mbus_fmt -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xb857c28d imx_media_pipeline_subdev +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xb512cdf2 imx_media_find_subdev_by_devname 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 0xc0231b3a imx_media_init_cfg 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 0xc594802b imx_media_get_pad_fwnode +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xcb045e20 imx_media_capture_device_init 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 0xd6f530c6 imx_media_pipeline_video_device -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xe0348566 imx_media_pipeline_pad +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xd7d3fd22 imx_media_pipeline_subdev +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xdc7dad19 imx_media_add_video_device EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xe2342f7b imx_media_mbus_fmt_to_ipu_image -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xe4f7b43a imx_media_add_video_device -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xe6095c97 imx_media_dev_notifier_register -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xe761735c imx_media_capture_device_unregister 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 0xf0c7ac7e imx_media_pipeline_csi2_channel -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x001af0e0 amvdec_read_parser -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x001d00e5 amvdec_dst_buf_done_idx -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x0821db1e amvdec_clear_dos_bits -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x0e5ff0e6 codec_hevc_free_mmu_headers +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xe9f5ef04 imx_media_capture_device_unregister +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x0c788d6b codec_hevc_setup_buffers EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x115655e9 amvdec_am21c_body_size -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x16286df8 codec_hevc_fill_mmu_map -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x172cdf7c amvdec_read_dos +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x1a1473a4 codec_hevc_setup_decode_head EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x1cb1e6d9 amvdec_am21c_size -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x242fa9d2 amvdec_get_output_size -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x47ecf36e amvdec_add_ts -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x4b576fa1 amvdec_src_change -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x4c5be4fa amvdec_write_dos_bits +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x1e3444b6 amvdec_set_canvases +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x1f407e5b codec_hevc_free_fbc_buffers +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x27c26692 amvdec_read_dos +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x334d8ad5 amvdec_clear_dos_bits +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x3e2aa7fa codec_hevc_free_mmu_headers +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x43665781 amvdec_abort +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x4d27ad90 amvdec_write_parser EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x5ff35ee8 amvdec_am21c_head_size -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x60265b3f amvdec_set_canvases -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x6108e916 amvdec_write_parser -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x639d8f33 amvdec_dst_buf_done -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x70bd6ce9 codec_hevc_free_fbc_buffers -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x8276f8ff amvdec_write_dos -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x93ec6f1d codec_hevc_setup_buffers -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xac01c237 amvdec_abort -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xbfac9272 amvdec_set_par_from_dar -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xc4ed5ad9 amvdec_dst_buf_done_offset -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xd4167309 codec_hevc_setup_decode_head -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xebdcf581 amvdec_remove_ts -EXPORT_SYMBOL_GPL drivers/staging/nvec/nvec 0x0c50cc19 nvec_unregister_notifier -EXPORT_SYMBOL_GPL drivers/staging/nvec/nvec 0x15d1c20a nvec_register_notifier -EXPORT_SYMBOL_GPL drivers/staging/nvec/nvec 0x6bf17598 nvec_msg_free -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x4fa3a512 target_submit -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x5f9a2251 target_queue_submission -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x6e272dea target_init_cmd -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xe275ab4d target_submit_prep -EXPORT_SYMBOL_GPL drivers/tee/tee 0x03b86860 tee_shm_alloc -EXPORT_SYMBOL_GPL drivers/tee/tee 0x04213fc4 tee_shm_pa2va -EXPORT_SYMBOL_GPL drivers/tee/tee 0x108cf970 tee_client_open_context -EXPORT_SYMBOL_GPL drivers/tee/tee 0x14bcd73a tee_shm_free -EXPORT_SYMBOL_GPL drivers/tee/tee 0x1d047b8b teedev_open -EXPORT_SYMBOL_GPL drivers/tee/tee 0x2bbc696a tee_client_close_session -EXPORT_SYMBOL_GPL drivers/tee/tee 0x33542282 tee_shm_pool_mgr_alloc_res_mem -EXPORT_SYMBOL_GPL drivers/tee/tee 0x35003ad1 tee_shm_alloc_kernel_buf -EXPORT_SYMBOL_GPL drivers/tee/tee 0x372f8ad5 tee_shm_pool_alloc -EXPORT_SYMBOL_GPL drivers/tee/tee 0x4cab1707 tee_shm_put -EXPORT_SYMBOL_GPL drivers/tee/tee 0x56b8f980 tee_client_close_context -EXPORT_SYMBOL_GPL drivers/tee/tee 0x59f1d045 tee_client_invoke_func -EXPORT_SYMBOL_GPL drivers/tee/tee 0x6be0e1af tee_shm_get_pa -EXPORT_SYMBOL_GPL drivers/tee/tee 0x70cdd094 tee_shm_get_va -EXPORT_SYMBOL_GPL drivers/tee/tee 0x720de63e tee_shm_va2pa -EXPORT_SYMBOL_GPL drivers/tee/tee 0x7a61b454 tee_shm_pool_free -EXPORT_SYMBOL_GPL drivers/tee/tee 0x7d39db50 tee_shm_register +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x650e7ea1 amvdec_get_output_size +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x7992ec8d codec_hevc_fill_mmu_map +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x7dca271b amvdec_remove_ts +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x7ed0d294 amvdec_dst_buf_done +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x8cbea39f amvdec_write_dos_bits +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x9fbc2e9e amvdec_set_par_from_dar +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xa7852d2c amvdec_write_dos +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xb8c9b351 amvdec_read_parser +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xbc67d209 amvdec_src_change +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xd2181a41 amvdec_dst_buf_done_offset +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xdcaa6eb3 amvdec_dst_buf_done_idx +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xf99cd2df amvdec_add_ts +EXPORT_SYMBOL_GPL drivers/staging/nvec/nvec 0x1d60e719 nvec_msg_free +EXPORT_SYMBOL_GPL drivers/staging/nvec/nvec 0x52a12f49 nvec_register_notifier +EXPORT_SYMBOL_GPL drivers/staging/nvec/nvec 0xe4bcf03b nvec_unregister_notifier +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x51f3ef6f target_queue_submission +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x5acc825f target_submit_prep +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x87cebdc9 target_init_cmd +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xd8af4d37 target_submit +EXPORT_SYMBOL_GPL drivers/tee/tee 0x03cc0ad5 tee_bus_type +EXPORT_SYMBOL_GPL drivers/tee/tee 0x191db9e8 tee_client_open_context +EXPORT_SYMBOL_GPL drivers/tee/tee 0x1b3b954a tee_client_open_session +EXPORT_SYMBOL_GPL drivers/tee/tee 0x1e84a11f teedev_close_context +EXPORT_SYMBOL_GPL drivers/tee/tee 0x398ff1bd tee_client_close_context +EXPORT_SYMBOL_GPL drivers/tee/tee 0x42a365d2 tee_shm_alloc +EXPORT_SYMBOL_GPL drivers/tee/tee 0x547c8bad tee_shm_alloc_kernel_buf +EXPORT_SYMBOL_GPL drivers/tee/tee 0x5f26925e tee_shm_va2pa +EXPORT_SYMBOL_GPL drivers/tee/tee 0x6244ec2c tee_shm_pa2va +EXPORT_SYMBOL_GPL drivers/tee/tee 0x62740ccf tee_shm_free +EXPORT_SYMBOL_GPL drivers/tee/tee 0x6a5646ff tee_device_unregister +EXPORT_SYMBOL_GPL drivers/tee/tee 0x7421bbbf tee_get_drvdata +EXPORT_SYMBOL_GPL drivers/tee/tee 0x763eaf1a tee_shm_pool_alloc_res_mem +EXPORT_SYMBOL_GPL drivers/tee/tee 0x773c6d08 tee_shm_register +EXPORT_SYMBOL_GPL drivers/tee/tee 0x7de00447 tee_device_register EXPORT_SYMBOL_GPL drivers/tee/tee 0x85fd9922 tee_session_calc_client_uuid -EXPORT_SYMBOL_GPL drivers/tee/tee 0x887fe6b5 tee_device_register -EXPORT_SYMBOL_GPL drivers/tee/tee 0x8bcf827f tee_get_drvdata -EXPORT_SYMBOL_GPL drivers/tee/tee 0x9c455cea teedev_close_context -EXPORT_SYMBOL_GPL drivers/tee/tee 0x9d84487c tee_shm_get_from_id -EXPORT_SYMBOL_GPL drivers/tee/tee 0xa7bdb602 tee_bus_type -EXPORT_SYMBOL_GPL drivers/tee/tee 0xaa9a378c tee_shm_pool_alloc_res_mem -EXPORT_SYMBOL_GPL drivers/tee/tee 0xab036355 tee_client_get_version -EXPORT_SYMBOL_GPL drivers/tee/tee 0xb77f069c tee_device_alloc -EXPORT_SYMBOL_GPL drivers/tee/tee 0xc91b66d7 tee_client_open_session -EXPORT_SYMBOL_GPL drivers/tee/tee 0xd3ae4a83 tee_device_unregister +EXPORT_SYMBOL_GPL drivers/tee/tee 0x909d7226 tee_shm_get_va +EXPORT_SYMBOL_GPL drivers/tee/tee 0xa4a30878 tee_client_invoke_func +EXPORT_SYMBOL_GPL drivers/tee/tee 0xabc9dd16 tee_shm_get_from_id +EXPORT_SYMBOL_GPL drivers/tee/tee 0xb1206e72 tee_shm_put +EXPORT_SYMBOL_GPL drivers/tee/tee 0xb3383c5c tee_shm_pool_alloc +EXPORT_SYMBOL_GPL drivers/tee/tee 0xb9eba62a tee_shm_get_pa +EXPORT_SYMBOL_GPL drivers/tee/tee 0xc19cc842 tee_client_close_session +EXPORT_SYMBOL_GPL drivers/tee/tee 0xd0bd42e8 teedev_open +EXPORT_SYMBOL_GPL drivers/tee/tee 0xd9b49b3a tee_shm_pool_mgr_alloc_res_mem +EXPORT_SYMBOL_GPL drivers/tee/tee 0xe746885b tee_client_get_version +EXPORT_SYMBOL_GPL drivers/tee/tee 0xed5d02ad tee_shm_pool_free +EXPORT_SYMBOL_GPL drivers/tee/tee 0xf49739f9 tee_device_alloc EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x01d23ee1 tb_property_create_dir -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x09b26ea1 tb_ring_poll -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x1a049b3b tb_ring_alloc_rx -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x1bb4e09b tb_xdomain_lane_bonding_disable +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x070c9716 tb_ring_stop +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x077e41b6 tb_service_type +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x1bcfa414 tb_ring_poll +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x1fe2921a tb_xdomain_lane_bonding_enable EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x21a31526 tb_unregister_protocol_handler -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x30169355 tb_xdomain_enable_paths -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x30b7f839 tb_service_type -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x3124fc11 tb_xdomain_request +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x31deb2b8 tb_xdomain_alloc_out_hopid EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x36521060 tb_register_protocol_handler +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x3796ed50 __tb_ring_enqueue EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x393b4f2f tb_property_free_dir -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x493956f1 tb_xdomain_release_in_hopid -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x561cdd9e tb_ring_free +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x43794b91 tb_xdomain_release_out_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x4d6ef00b tb_xdomain_find_by_uuid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x55efdfb7 tb_xdomain_release_in_hopid EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x603249ed tb_unregister_property_dir -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x62709174 tb_xdomain_find_by_route EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x658e3d97 tb_property_add_immediate +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x6c5135f3 tb_xdomain_enable_paths EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x6ceee74b tb_property_remove +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x79c6694c tb_xdomain_response +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x824b1a65 tb_ring_start +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x85d6f0a0 tb_ring_alloc_tx EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x86166e8c tb_property_get_next -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x8a6c0cfa tb_unregister_service_driver +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x864151fb tb_ring_poll_complete EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x8b62f95e tb_property_add_dir -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x9bfa76ce tb_register_service_driver -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x9ce69094 tb_ring_start -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xa3764b0a tb_xdomain_alloc_in_hopid -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xa632dc34 tb_ring_poll_complete -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xadaa5f84 __tb_ring_enqueue -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xb2b532ea tb_xdomain_lane_bonding_enable -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xb6a8a0c3 tb_ring_alloc_tx +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x8ed807df tb_xdomain_lane_bonding_disable +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x9763b533 tb_ring_free +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xabbaa4d4 tb_register_service_driver +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xb53a1bf0 tb_unregister_service_driver +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xb640cb2e tb_xdomain_find_by_route EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xb7c7cdce tb_property_add_text +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xc00779a9 tb_xdomain_request EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xc64da6ae tb_property_find -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xc9d26107 tb_xdomain_release_out_hopid -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xde655949 tb_xdomain_find_by_uuid -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xdee8120c tb_xdomain_type -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xe1b6ad9f tb_xdomain_response +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xcc4f1a59 tb_ring_alloc_rx EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xe2697cd4 tb_property_add_data -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xe357058e tb_xdomain_alloc_out_hopid -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xf16c30a7 tb_ring_stop +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xe921ab83 tb_xdomain_type EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xf1cfd1ff tb_register_property_dir -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xf598f2d3 tb_xdomain_disable_paths -EXPORT_SYMBOL_GPL drivers/uio/uio 0x2012672c uio_event_notify -EXPORT_SYMBOL_GPL drivers/uio/uio 0x4939bb26 __uio_register_device -EXPORT_SYMBOL_GPL drivers/uio/uio 0x55f2e6f4 uio_unregister_device -EXPORT_SYMBOL_GPL drivers/uio/uio 0x9a8f5f23 __devm_uio_register_device -EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x1b25db5b usbatm_usb_probe -EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x8070a438 usbatm_usb_disconnect -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x00c718a7 cdns_resume -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x2ec18efa cdns_suspend -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x2fdeca78 cdns_remove -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x36b11de3 cdns_drd_gadget_on -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x3c856e15 cdns_power_is_lost -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x74e9e2a2 cdns_clear_vbus -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xa009bca9 cdns_init -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xb3d237e5 cdns_set_vbus -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xf33c46ea cdns_drd_gadget_off -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x1c53488f ci_hdrc_remove_device -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x9b80cae3 ci_hdrc_query_available_role -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xb965e490 ci_hdrc_add_device -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xef1f03d3 hw_phymode_configure -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x3c8f9f01 imx_usbmisc_init -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x60ff05d8 imx_usbmisc_set_wakeup -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x6d3160a8 imx_usbmisc_hsic_set_clk -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x6db135f3 imx_usbmisc_hsic_set_connect -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x6f3b9f0e imx_usbmisc_init_post -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xb251340f imx_usbmisc_charger_detection -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x4a617419 ulpi_register_interface -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x5f69be68 ulpi_unregister_driver -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xab2f928a __ulpi_register_driver -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xca1967df ulpi_unregister_interface -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xf4a0f49e ulpi_write -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xf8c5ad9a ulpi_read -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x05134065 g_audio_setup -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x504d434b u_audio_set_mute -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x5f3d1de7 u_audio_stop_capture -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x76fa3d81 u_audio_set_volume -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xa9326145 u_audio_get_mute -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xaffd9101 g_audio_cleanup -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xd88d2aec u_audio_stop_playback -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xdf474848 u_audio_start_playback -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xf204476f u_audio_get_volume -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xf89ba0e3 u_audio_start_capture -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x11a4bdb0 gether_get_host_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x1cb8d8b4 gether_set_gadget -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x2fee788c gether_setup_name_default -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x3aa66909 gether_get_host_addr_u8 -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x5182c051 gether_setup_name -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x58bbd98d gether_get_ifname +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xf5717371 tb_xdomain_alloc_in_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xff0fa6c5 tb_xdomain_disable_paths +EXPORT_SYMBOL_GPL drivers/uio/uio 0x0365302f uio_unregister_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0x31e25e01 __uio_register_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0x3b550e21 uio_event_notify +EXPORT_SYMBOL_GPL drivers/uio/uio 0xff32a3d0 __devm_uio_register_device +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x28111309 usbatm_usb_probe +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0xcc38b491 usbatm_usb_disconnect +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x023258a5 cdns_clear_vbus +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x2ff6fa04 cdns_remove +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x4604b892 cdns_power_is_lost +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x54d2779b cdns_drd_gadget_on +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x566a3c0c cdns_drd_gadget_off +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x60b5b6a8 cdns_init +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x63726b1d cdns_set_vbus +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x80554c26 cdns_resume +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xe1d2e30f cdns_suspend +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x2664f5c0 ci_hdrc_remove_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x79e61fc6 ci_hdrc_query_available_role +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x8a6d576d hw_phymode_configure +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xf828e1f3 ci_hdrc_add_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x1373fad9 imx_usbmisc_hsic_set_clk +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x1548e4a9 imx_usbmisc_init +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x21d69146 imx_usbmisc_charger_detection +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x2f03921e imx_usbmisc_set_wakeup +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xb2057a19 imx_usbmisc_init_post +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xb794ed21 imx_usbmisc_hsic_set_connect +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x29c77c58 ulpi_register_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x693c6aa6 ulpi_write +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x72136d32 ulpi_unregister_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x75afe133 ulpi_read +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x9ab16f5c __ulpi_register_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xc2c6aec8 ulpi_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x202e2b65 u_audio_start_capture +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x29df7ca8 g_audio_setup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x2eda0fb3 u_audio_set_volume +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x402c3315 u_audio_get_volume +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x5e60060e u_audio_set_mute +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x656ec176 u_audio_stop_capture +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x67410e0c g_audio_cleanup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x77a646e7 u_audio_stop_playback +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xbab268cd u_audio_get_mute +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xf35d47d3 u_audio_start_playback +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x193eee59 gether_get_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x3527c74e gether_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x3d3c0de6 gether_setup_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x46676fc6 gether_setup_name_default +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x5750f537 gether_set_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x635be4fe gether_set_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x799d1adf gether_get_host_addr_u8 +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x7a0a5766 gether_set_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8047c9b7 gether_set_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x84013e89 gether_register_netdev EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8878cfa6 gether_cleanup -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x91a0277d gether_set_dev_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xa1153183 gether_register_netdev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xa43c4a73 gether_set_host_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xa47311bf gether_get_qmult -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xa53f1e1a gether_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xcc0e9ec3 gether_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xd6a9d9d0 gether_get_host_addr_cdc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xd8b07c7d gether_set_qmult -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xe0421403 gether_get_dev_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xf4f70ac9 gether_set_ifname +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xa404bc95 gether_get_ifname +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xcc0970b4 gether_get_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xe1913601 gether_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xe6ed0c61 gether_get_host_addr_cdc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xea7830a3 gether_get_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xed989ed5 gether_set_ifname EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x33bfdca2 gserial_alloc_line -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x6201fe45 gserial_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x4f1b6531 gserial_resume EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x77dbf841 gserial_get_console -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x85433852 gserial_suspend +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x7f82861e gserial_disconnect EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xa18ee0bd gserial_set_console EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xb6652875 gserial_free_line -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xcc6ab7af gserial_resume +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xe4343a7c 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 0xf44251d4 gserial_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xf138b2d4 gserial_suspend EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xf53717eb gs_alloc_req EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xfe9468f2 gs_free_req -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x09dfaf4d ffs_name_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x09af4d24 ffs_name_dev EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x12772b85 ffs_lock -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x4ea55fc9 ffs_single_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x022cd462 fsg_show_inquiry_string -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x11f4a83e fsg_store_ro +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x5417ba86 ffs_single_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x0d34ea80 fsg_store_file +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x12952ef6 fsg_store_removable EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x141fce2a fsg_common_remove_luns -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1668bc7b fsg_lun_close 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 0x179d8747 fsg_show_file -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1af97f4a fsg_show_cdrom -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1c20f4d1 fsg_show_removable EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1ccb58f7 fsg_common_set_num_buffers -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1d8064dc fsg_lun_open +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2395daee fsg_store_ro EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2933ee1d fsg_ss_bulk_in_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x32f5b3db fsg_lun_open 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 0x3fa62ef2 fsg_show_nofua EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x423845e4 fsg_ss_bulk_in_comp_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x51cfb224 fsg_lun_fsync_sub EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x56344daf fsg_hs_bulk_out_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x56e0f64e fsg_common_set_cdev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x5ddb83c9 fsg_store_inquiry_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x6471ff63 fsg_lun_close +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x6730d588 fsg_lun_fsync_sub EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x6acb4179 fsg_common_set_inquiry_string EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7e26d4a5 fsg_common_set_sysfs EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x857b6dc2 fsg_hs_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x90af1e3f fsg_store_file +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x8d2e69ad fsg_show_nofua EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x95cffb3e fsg_hs_bulk_in_desc EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x9a0221c7 fsg_common_free_buffers -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa37fe48c fsg_show_ro +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa005fd30 fsg_show_removable 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 0xa7afbafc fsg_common_set_cdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa9ae9595 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 0xb3ba1cff fsg_store_nofua EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb52ba28a fsg_intf_desc EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb54d0d95 fsg_fs_bulk_in_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xca8fb2f0 fsg_store_nofua -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xcb452fc1 fsg_common_remove_lun +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xbc4667eb fsg_common_remove_lun +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xc72f3500 fsg_show_cdrom +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xcf7ad6be fsg_store_inquiry_string 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 0xe6f60a7d fsg_store_removable -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf4521608 fsg_store_cdrom +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xd9334543 fsg_show_ro +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf3c3d44a fsg_show_inquiry_string 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 0x060a2f5c rndis_rm_hdr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x10ee2853 rndis_msg_parser -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x22c829b7 rndis_free_response -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x33c3310d rndis_deregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x4c645867 rndis_add_hdr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x6055d5e4 rndis_set_host_mac -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x7f0c00ed rndis_signal_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x9d71e8df rndis_get_next_response -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xb3729443 rndis_set_param_vendor -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xce98d220 rndis_uninit -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xd0a67505 rndis_borrow_net -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xe778abd8 rndis_register -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xe8258451 rndis_signal_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xef4c4ff6 rndis_set_param_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xf1bf2efc rndis_set_param_medium -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x051d9b5a usb_gstrings_attach -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x05a0c4f1 usb_composite_probe +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xfc27cb34 fsg_show_file +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x0c41194d rndis_signal_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x29d79a2f rndis_set_param_vendor +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x2e0ecb12 rndis_free_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x40a41a8c rndis_deregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x41471ee5 rndis_uninit +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x414d3af5 rndis_rm_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x447c8237 rndis_set_param_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x6ace6bff rndis_signal_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x722d3b2c rndis_borrow_net +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x8cb29a0b rndis_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xa98c5ca8 rndis_set_host_mac +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xc46fb704 rndis_add_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xc6f66055 rndis_msg_parser +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xd3ece671 rndis_get_next_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xf0276273 rndis_set_param_medium +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0091a2cf usb_function_unregister EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0c589aba usb_validate_langid -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0fef57fa usb_function_register -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x10a07f5c usb_composite_unregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x171786a9 usb_remove_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x24ee57e6 usb_free_all_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2b0d945a usb_function_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x1bf5794b usb_composite_probe +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x29b4154f config_ep_by_speed_and_alt EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2e09263f usb_copy_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2eba0acd usb_interface_id -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x30591663 usb_assign_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4112feff usb_get_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x42fa2de6 usb_add_config +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2fdc81f0 usb_interface_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3e9c2c92 usb_assign_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x43efd766 usb_ep_autoconfig_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x44e507ab usb_gstrings_attach EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4beb505d usb_gadget_get_string -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x59ebb5b0 usb_ep_autoconfig_ss -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6dab9b9c usb_ep_autoconfig -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7257ec13 config_ep_by_speed -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8096a4a7 usb_add_config_only -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x89e15388 usb_composite_setup_continue +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4f4496e9 usb_otg_descriptor_alloc +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x56a29c90 usb_otg_descriptor_init +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5749da19 usb_put_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5b053fa5 usb_ep_autoconfig_ss +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5f4f6ea4 usb_function_activate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x68650534 usb_add_config_only +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x69456bc8 usb_composite_setup_continue +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7790017f usb_ep_autoconfig +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7ab49436 usb_string_ids_n +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8bd09205 usb_add_function EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x910e55f7 alloc_ep_req EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x914d5fba usb_ep_autoconfig_release -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x917bf128 usb_ep_autoconfig_reset -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x9fde5e13 usb_composite_overwrite_options -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa1208bfb usb_otg_descriptor_init -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb4d06395 usb_function_deactivate -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc25ac2fb usb_get_function_instance -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc398ae27 usb_put_function_instance -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc7b261eb unregister_gadget_item +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xad3d27f5 usb_function_deactivate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xadee9f81 usb_get_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb00560de usb_composite_overwrite_options +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb1d106b6 config_ep_by_speed +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xbe7319cb usb_remove_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd0b678bf usb_function_register EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd2ea2134 usb_descriptor_fillbuf -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd344f068 usb_string_id -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd47b5481 usb_function_activate -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd633aec9 usb_add_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe09c6c61 usb_otg_descriptor_alloc -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe7e44c07 usb_put_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xeb7f8560 config_ep_by_speed_and_alt +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd908c451 usb_add_config +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe30d0270 usb_get_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe535f96e usb_composite_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe61bef8d usb_string_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe8cc896a usb_put_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf2f006d0 usb_string_ids_tab EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf474a207 usb_gadget_config_buf -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf8c66a1b usb_string_ids_tab -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xfa6345df usb_string_ids_n -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x00df35ad gadget_release -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x0f9abb82 empty_req_queue -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x3d0a3a3c free_dma_pools -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x5185db06 udc_enable_dev_setup_interrupts +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf6f23e19 unregister_gadget_item +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf953d20c usb_free_all_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x01f5c662 gadget_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x13e34a24 udc_basic_init +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x2fd1a956 udc_remove +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x490eb0f2 udc_mask_unused_interrupts +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x4b44efcb empty_req_queue +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x5584dcac init_dma_pools EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x5d01d078 udc_irq -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x627e65cd init_dma_pools -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x6928cd5a udc_mask_unused_interrupts -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x899b754c udc_remove -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xa29225df udc_basic_init -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xd0c72880 udc_probe -EXPORT_SYMBOL_GPL drivers/usb/host/xhci-pci-renesas 0x1057303d renesas_xhci_check_request_fw -EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x65a34975 ezusb_fx1_ihex_firmware_download -EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x7c928f9c ezusb_fx1_set_reset -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x4cc9eede usb_ftdi_elan_edset_empty -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x693f46b2 ftdi_elan_gone_away -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x818f26fc usb_ftdi_elan_edset_single -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x8d365c55 usb_ftdi_elan_write_pcimem -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xa1df897c usb_ftdi_elan_edset_output -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xb6f7bc24 usb_ftdi_elan_edset_flush -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xdbf60fec usb_ftdi_elan_edset_input -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xe9da7733 usb_ftdi_elan_read_pcimem -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xf8fb61fe usb_ftdi_elan_edset_setup -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-am335x-control 0xde250d9c am335x_get_phy_control -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-isp1301 0x0178b1e0 isp1301_get_client -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0x47744763 tegra_usb_phy_postresume -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0x8f2db6dc tegra_ehci_phy_restore_end -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0xb688d434 tegra_ehci_phy_restore_start -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0xc8c3eb24 tegra_usb_phy_preresume -EXPORT_SYMBOL_GPL drivers/usb/serial/usb_wwan 0xc62e9dde usb_wwan_port_probe -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x385c02d8 usb_serial_generic_tiocmiwait -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x3ef7a645 usb_serial_generic_unthrottle -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x40d7170c usb_serial_generic_write_bulk_callback -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x55e9f067 usb_serial_port_softint -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x5e1ae471 usb_serial_generic_read_bulk_callback -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x67abe94b usb_serial_generic_chars_in_buffer -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x68e3814d usb_serial_register_drivers -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x6b8cf5cb usb_serial_generic_submit_read_urbs -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x7718a554 usb_serial_generic_process_read_urb -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x8c99a360 usb_serial_generic_resume -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xa743b7e9 usb_serial_claim_interface -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xb5e8fb55 usb_serial_generic_wait_until_sent -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xb6f626e9 usb_serial_generic_get_icount -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xc0566115 usb_serial_generic_open -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xce8e2ece usb_serial_generic_close -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xd3fb3831 usb_serial_deregister_drivers -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xdd20a75b usb_serial_generic_throttle -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xedf943c0 usb_serial_generic_write -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xee2f2a84 usb_serial_handle_dcd_change -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xfafbf0f9 usb_serial_generic_write_start -EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0x0c5c3875 dp_altmode_probe -EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0x6351d77b dp_altmode_remove +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x8bc931aa free_dma_pools +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x98570d9c udc_enable_dev_setup_interrupts +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xdaacf8ed udc_probe +EXPORT_SYMBOL_GPL drivers/usb/host/xhci-pci-renesas 0x073328fd renesas_xhci_check_request_fw +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x19a49734 ezusb_fx1_set_reset +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0xc0fdfa17 ezusb_fx1_ihex_firmware_download +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x2a6f46c3 usb_ftdi_elan_edset_flush +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x2b5ae221 usb_ftdi_elan_edset_empty +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x319d62fa usb_ftdi_elan_edset_input +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x328ebc1e usb_ftdi_elan_write_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x34c86c78 usb_ftdi_elan_edset_single +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x65967d17 usb_ftdi_elan_edset_output +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x9e265e82 usb_ftdi_elan_edset_setup +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xa4d5f212 ftdi_elan_gone_away +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xd4f78dbe usb_ftdi_elan_read_pcimem +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-am335x-control 0xf3deae05 am335x_get_phy_control +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-isp1301 0x0d5e10b7 isp1301_get_client +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0x264d8efc tegra_usb_phy_postresume +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0x296d5fe2 tegra_usb_phy_preresume +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0x4856d76f tegra_ehci_phy_restore_start +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0xce25d7aa tegra_ehci_phy_restore_end +EXPORT_SYMBOL_GPL drivers/usb/serial/usb_wwan 0x8157e5fb usb_wwan_port_probe +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x19645151 usb_serial_register_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x1a50f734 usb_serial_deregister_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x1f44c349 usb_serial_generic_tiocmiwait +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x2de9c417 usb_serial_handle_dcd_change +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x3f6021a2 usb_serial_generic_wait_until_sent +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x58065f54 usb_serial_generic_submit_read_urbs +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x63c973f9 usb_serial_generic_write +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x6c422322 usb_serial_port_softint +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x71ed0818 usb_serial_generic_chars_in_buffer +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x872f6584 usb_serial_generic_close +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xa46e5043 usb_serial_generic_open +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xb41cb98b usb_serial_generic_read_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xbc5d078b usb_serial_generic_resume +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xbc9a80d1 usb_serial_generic_throttle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xc3ba6fac usb_serial_generic_write_start +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xc4a3eb53 usb_serial_generic_process_read_urb +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xd37cd06f usb_serial_generic_get_icount +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xf328a58a usb_serial_claim_interface +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xf45d4b6c usb_serial_generic_write_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xff50beec usb_serial_generic_unthrottle +EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0x214e1d46 dp_altmode_probe +EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0x8205b5d0 dp_altmode_remove EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0x6f497a3c tcpci_irq -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0x82dd6f30 tcpci_register_port +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0x9a84c3a8 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 @@ -16244,196 +16283,196 @@ 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 0xe2262c23 tcpm_register_port +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xe0baf8d0 tcpm_register_port EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xea220941 tcpm_tcpc_reset EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xeb779665 tcpm_sourcing_vbus -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x006c0e3d typec_register_partner -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x088cac1b typec_unregister_cable -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x0a2c6d83 typec_mux_register -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x0a9d724f typec_partner_set_svdm_version -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x0bd5c9bf typec_altmode_update_active -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x0d77d24a typec_altmode_enter -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x0fb8bb05 typec_switch_put -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x1285d823 typec_cable_get -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x13c876fd typec_switch_unregister -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x1511965e fwnode_typec_switch_get -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x1b0cfb44 typec_get_orientation -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x1b17c317 typec_altmode_get_partner -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x1efeae13 typec_mux_set -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x20d19fde typec_set_pwr_opmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2129b580 fwnode_typec_mux_get -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x299b0887 typec_unregister_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x041c88e7 typec_unlink_port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x044b34ab typec_register_cable +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x055a5edd typec_mux_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x05660d85 typec_port_register_altmodes +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x0604a8ed typec_unregister_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x084b8747 typec_register_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x0c1512c3 typec_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x0c2dffad typec_plug_set_num_altmodes +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x107c6e07 typec_altmode_get_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x142024e4 typec_switch_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2509c91b typec_mux_put +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2a2ed8d2 typec_altmode2port EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2d1e301d typec_find_power_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2d59c639 typec_switch_set_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x352049bc typec_altmode_exit -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x36aa21b7 typec_set_orientation -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x3b4ece2a typec_plug_set_num_altmodes -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x43ca55d9 typec_partner_set_pd_revision -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x46801a67 typec_set_data_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x483dc0da typec_mux_get_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x48ee1a51 typec_set_vconn_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x50c11c6e typec_get_negotiated_svdm_version -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5357604d typec_switch_set -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x539c9885 typec_altmode_put_plug -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x57cf6678 typec_unregister_altmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5e087979 typec_link_port -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6279fcf6 typec_unlink_port -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6c29c05d typec_altmode_unregister_driver -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x74c7e235 typec_port_register_altmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7661a57d typec_switch_register -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x8b13523f typec_register_cable +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2d8a75c8 typec_altmode_update_active +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x34c1faa1 typec_cable_set_identity +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x4232b928 typec_get_orientation +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x4de521df typec_switch_put +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x4f2f705e typec_set_pwr_opmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x4f96fab3 typec_altmode_notify +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x576bbd3a typec_switch_set +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x593ba160 typec_unregister_port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5ef27dd3 fwnode_typec_mux_get +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5f39ac23 typec_partner_register_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x61b99471 typec_altmode_exit +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x654ed142 typec_altmode_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6d5493dc typec_unregister_partner +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6dfde74c typec_mux_set_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x77dacc7f typec_switch_register +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7af7ef43 typec_match_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x80b4ea75 typec_cable_get +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x82914cac typec_register_port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x871aca38 typec_set_vconn_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x87ef0f80 typec_altmode_vdm +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x8827ac05 typec_partner_set_num_altmodes +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x89f28d0f typec_mux_register EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9049491e typec_find_port_data_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9063852c typec_unregister_port -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x952be7b9 typec_partner_set_num_altmodes -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9c07695e typec_cable_put -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9c6b314c typec_register_plug -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9edd13eb typec_set_pwr_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9eeb2ad7 typec_plug_register_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x94f151d8 typec_register_partner +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9eff81a9 typec_unregister_cable +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9f6c3444 typec_link_port EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa254de98 typec_find_orientation -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xabc49173 __typec_altmode_register_driver -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xbb5200b6 typec_switch_get_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xbb926f39 typec_altmode_attention -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc0d63802 typec_altmode_get_plug -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc43439c7 typec_altmode_vdm -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc4662593 typec_mux_put -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc711959e typec_port_register_altmodes -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xca06d6a8 typec_altmode_notify -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd027e6ad typec_set_mode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd22282b2 typec_partner_set_identity -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd9aca022 typec_cable_is_active -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xda123811 typec_cable_set_identity -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe9ed09a2 typec_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa2c52371 typec_partner_set_pd_revision +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa622e17b typec_cable_is_active +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa7431917 typec_cable_put +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa7436b44 typec_set_data_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa9cf56ff typec_set_pwr_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb0a74e9b typec_plug_register_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb50da7c0 typec_altmode_attention +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb5ba9b72 typec_switch_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb9eeb15c typec_mux_set +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xbb72278e typec_switch_set_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xbcb4a9af typec_unregister_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xbeb91114 typec_mux_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc3fda661 typec_partner_set_svdm_version +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xce410a70 typec_altmode_get_partner +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd19f70af typec_port_register_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd2a0dbce fwnode_typec_switch_get +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd4bde47a __typec_altmode_register_driver +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xda38b66e typec_altmode_enter +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xde7cef90 typec_partner_set_identity EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xeafc1eb8 typec_find_port_power_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xebf8e38e typec_register_port -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf0ce161f typec_altmode2port EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf1234a8b typec_find_pwr_opmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf14441e8 typec_partner_register_altmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf219d3e7 typec_mux_set_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf63aa87e typec_mux_unregister -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xfcd34593 typec_match_altmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xfdda4114 typec_unregister_partner -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x0f5397d1 ucsi_create -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x11c28b65 ucsi_send_command -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x70b370ed ucsi_destroy -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x729cdf32 ucsi_register -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xa7d68c39 ucsi_resume -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xc0e69a93 ucsi_set_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xc2d087f2 ucsi_get_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xdfdbfc06 ucsi_connector_change -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xea07095d ucsi_unregister -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x07ab843d usbip_pack_pdu -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x41afc5c1 usbip_pad_iso -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x461e9a61 usbip_stop_eh -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x48ff2fd8 usbip_alloc_iso_desc_pdu -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x5a6cb0bc usbip_dump_urb -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x74f942d2 usbip_event_happened +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf27d1c96 typec_set_mode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf91bc905 typec_altmode_put_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xfa26e249 typec_set_orientation +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xfe472da5 typec_get_negotiated_svdm_version +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x026fdc23 ucsi_register +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x0b271e6a ucsi_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x40490def ucsi_connector_change +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x63d7efc8 ucsi_set_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x6ab6590a ucsi_destroy +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xe15e1528 ucsi_send_command +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xe8421986 ucsi_resume +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xec82e19d ucsi_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xf7f14cc1 ucsi_create +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x07515571 usbip_recv_xbuff +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x1a617846 usbip_pad_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x36248ab0 usbip_event_happened +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x4c84c933 usbip_in_eh EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x78b72f44 usbip_debug_flag -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x92eb9721 usbip_recv_iso -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xb86b03c7 dev_attr_usbip_debug -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xbbc0a1b5 usbip_recv_xbuff -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xc1bb2ed4 usbip_in_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x923dd7ee usbip_alloc_iso_desc_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x95a46a4f usbip_pack_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x9698ad97 usbip_dump_urb +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xa4e8192d usbip_recv +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xb0d5f680 usbip_event_add +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xb1e4e400 dev_attr_usbip_debug +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xc59f9d21 usbip_stop_eh EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd02753dc usbip_header_correct_endian -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd0f2d9d1 usbip_start_eh -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd1732d87 usbip_event_add EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe1ea0586 usbip_dump_header -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xf5fb52b1 usbip_recv -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x14c693db vdpa_mgmtdev_register -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x1f51e6fa vdpa_unregister_device -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x20a810f5 __vdpa_alloc_device -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x4dba4eb0 __vdpa_register_driver -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x515e36fd vdpa_register_device -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x5697cffd _vdpa_register_device -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x723cdf15 vdpa_unregister_driver -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x93c04c3b _vdpa_unregister_device -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xcb8cb222 vdpa_mgmtdev_unregister -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa_sim/vdpa_sim 0x98e62b49 vdpasim_create -EXPORT_SYMBOL_GPL drivers/vfio/mdev/mdev 0xda56d997 mdev_bus_type -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x1073f644 vfio_pci_core_register_device -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x184a4162 vfio_pci_core_request -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x2d5acb17 vfio_pci_core_uninit_device -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x33c50a91 vfio_pci_core_err_handlers -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x444b2d51 vfio_pci_core_write +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xedc2d192 usbip_recv_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xfdd8bf99 usbip_start_eh +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x3d761cf5 vdpa_unregister_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x6724025d __vdpa_register_driver +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x6d9c6597 __vdpa_alloc_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x73c0ab7f vdpa_mgmtdev_unregister +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x7e383685 vdpa_unregister_driver +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x8b4500fc vdpa_mgmtdev_register +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x9a73eee4 _vdpa_unregister_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xa3038017 vdpa_register_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xfee5b91b _vdpa_register_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa_sim/vdpa_sim 0x7c734f1f vdpasim_create +EXPORT_SYMBOL_GPL drivers/vfio/mdev/mdev 0xdc20349a mdev_bus_type +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x0bea4d1c vfio_pci_core_mmap +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x22102a5e vfio_pci_core_uninit_device +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x2d160f18 vfio_pci_core_request +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x2e215bf1 vfio_pci_core_err_handlers +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x3c9ec62d vfio_pci_core_register_device +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x3e84c2d3 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 0x7c381c0e vfio_pci_core_finish_enable -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x99d4ac34 vfio_pci_core_match -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xa26ef6f3 vfio_pci_core_read -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xacb3ba21 vfio_pci_core_disable -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xb0e5679f vfio_pci_core_init_device -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xb3465205 vfio_pci_core_unregister_device -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xc2b4d116 vfio_pci_core_sriov_configure -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xd37cc8f2 vfio_pci_core_enable -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xddbf1743 vfio_pci_core_close_device -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xe15b76b0 vfio_pci_core_mmap -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xe17000d6 vfio_pci_core_ioctl -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xfb8e1967 vfio_pci_register_dev_region -EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x036d7bef vfio_platform_remove_common -EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x0c5c4ca0 vfio_platform_probe_common -EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x7520d4cc vfio_platform_unregister_reset -EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xcfed2ae0 __vfio_platform_register_reset -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x0c4b15e7 vfio_register_group_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x11bd227c vfio_group_iommu_domain +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x4f61aec9 vfio_pci_core_write +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x5989a871 vfio_pci_core_match +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x834f040c vfio_pci_core_init_device +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x94e48a14 vfio_pci_core_ioctl +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x9bb4d74b vfio_pci_core_sriov_configure +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xbb0fff55 vfio_pci_register_dev_region +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xc872d042 vfio_pci_core_read +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xcf120345 vfio_pci_core_unregister_device +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xe3360745 vfio_pci_core_disable +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xea6f0f6c vfio_pci_core_finish_enable +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xed6f0032 vfio_pci_core_close_device +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x82629219 __vfio_platform_register_reset +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xb1562a47 vfio_platform_probe_common +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xb57f852c vfio_platform_remove_common +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xf8b87639 vfio_platform_unregister_reset +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x02cbfe65 vfio_external_group_match_file +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x0839c1e1 vfio_register_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x0d47e898 vfio_uninit_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x166f3c5d vfio_unregister_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x1ca6c9b6 vfio_group_iommu_domain +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x2ef66d25 vfio_register_iommu_driver EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x3567743b vfio_external_user_iommu_id -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x42ac2de2 vfio_unregister_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x399840ec vfio_device_get_from_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x4004774c vfio_device_put EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x44b83e00 vfio_info_cap_add -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x4bc0549e vfio_register_iommu_driver -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x4d309e87 vfio_device_get_from_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x58ac33c8 vfio_iommu_group_put EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x5b35c4f9 vfio_group_set_kvm -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x6575691b vfio_iommu_group_get -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x6f1639ec vfio_init_group_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xa8a000f1 vfio_external_group_match_file -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xad33a630 vfio_device_put -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xbe917333 vfio_unregister_iommu_driver +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x7c95fffa vfio_group_get_external_user +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x8b3c2f5c vfio_assign_device_set +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x94adfdee vfio_init_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xad61211f vfio_unregister_iommu_driver EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc1d989c5 vfio_external_check_extension -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc250596f vfio_group_get_external_user EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc4913442 vfio_group_put_external_user -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc6d9cd48 vfio_assign_device_set -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xfbed74f4 vfio_group_get_external_user_from_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xfecf3053 vfio_uninit_group_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0x92cf202b vfio_virqfd_enable -EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0xa1879995 vfio_virqfd_disable -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x028ae55d vhost_init_device_iotlb -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x11449d89 vhost_dev_stop -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1bfdeff6 vhost_signal -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1f8f33aa vhost_poll_queue -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2204634d vhost_add_used_n -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x274f0759 vhost_vring_ioctl -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2f5ef439 vhost_exceeds_weight -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3237b5de vhost_new_msg -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3ea8c6e6 vhost_dev_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x43da79ff vhost_work_dev_flush -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4d2bcc69 vhost_dev_reset_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4f8860a9 vhost_discard_vq_desc -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x57983cd7 vhost_poll_start -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x623c23e1 vhost_poll_stop -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x68f164c4 vhost_vq_avail_empty -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x71dd158a vhost_poll_flush -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x74ca05aa vhost_dequeue_msg -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7ba56b4c vhost_has_work -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7bc869ce vhost_enqueue_msg -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7f93eb6d vhost_vq_init_access -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x84fca804 vhost_vq_access_ok -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8a289c8b vhost_log_write -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x966476c1 vhost_add_used_and_signal -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9a9ef88c vhost_add_used_and_signal_n +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xdfee2fe4 vfio_iommu_group_put +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xe4dc893e vfio_group_get_external_user_from_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xe4fa0347 vfio_iommu_group_get +EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0x4a9f0e28 vfio_virqfd_enable +EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0x765c75a6 vfio_virqfd_disable +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x05ad9388 vhost_dev_reset_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x09ec28c8 vhost_new_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x13f29ca0 vhost_dev_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x18e92817 vhost_vq_init_access +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x24a59da6 vhost_work_dev_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2e35e96f vhost_dequeue_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2f9d2ae1 vq_meta_prefetch +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x33108bd9 vhost_chr_read_iter +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x43c45974 vhost_has_work +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x46b2e721 vhost_exceeds_weight +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x484f5997 vhost_dev_set_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4bd1864f vhost_init_device_iotlb +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x53103623 vhost_dev_cleanup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x54d17c78 vhost_enqueue_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x56e4164d vhost_poll_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5986046e vhost_work_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x61ba395d vhost_vq_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6203c98d vhost_vring_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x68ff992b vhost_log_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x692e57c3 vhost_poll_start +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x695cd19f vhost_get_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x74a563cc vhost_add_used_and_signal_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x88f06749 vhost_add_used_and_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8a189955 vhost_enable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9221a921 vhost_discard_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x93d3e751 vhost_poll_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9ba18be4 vhost_dev_has_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa65d3cf3 vhost_poll_init EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa909cfc5 vhost_work_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb20ab635 vhost_dev_has_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb33b3825 vhost_work_queue -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb8181b74 vhost_disable_notify -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb90d6567 vhost_log_access_ok -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xbaebd9cb vhost_add_used -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xbb888acb vhost_chr_read_iter -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xbc08b967 vhost_dev_check_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc26d1195 vhost_set_backend_features -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc4d6b1e7 vhost_dev_set_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xcdb2b3cd vhost_dev_cleanup -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd916b156 vhost_vq_is_setup -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe34b875c vhost_enable_notify -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe8d973fc vhost_dev_ioctl -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xed074b8c vq_meta_prefetch -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf9ba79a4 vhost_get_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xadd18f93 vhost_poll_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xaea28c89 vhost_add_used +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xafb94b6c vhost_dev_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb363d6ce vhost_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb61ed96a vhost_log_write +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xbbb1fa8d vhost_set_backend_features +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc3d17fa2 vhost_dev_check_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd8d0ae87 vhost_add_used_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xda0da712 vhost_disable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xde659935 vhost_vq_avail_empty +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe2205a37 vhost_vq_is_setup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf65b2565 vhost_dev_stop EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfd2b3e45 vhost_dev_reset_owner_prepare -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfdafb772 vhost_poll_init 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 @@ -16443,390 +16482,389 @@ 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 0x284e5cc5 ili9320_write_regs -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x396947c0 ili9320_probe_spi -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x4722f639 ili9320_suspend -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x687fc355 ili9320_shutdown -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x6f809aff ili9320_resume -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x9634f778 ili9320_write -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x9af1d0ba ili9320_remove -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0xc2337e72 fb_ddc_read -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x96e30e73 fb_sys_write -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0xd93889d5 fb_sys_read -EXPORT_SYMBOL_GPL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x4f5d775b omapdss_of_get_first_endpoint -EXPORT_SYMBOL_GPL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x7f0e6770 omapdss_of_find_source_for_first_ep -EXPORT_SYMBOL_GPL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xab764cd6 omapdss_of_get_next_port -EXPORT_SYMBOL_GPL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xe8cd8773 omapdss_of_get_next_endpoint -EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0xcdb0ac1a sis_free_new -EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0xe8926103 sis_malloc_new -EXPORT_SYMBOL_GPL drivers/w1/wire 0x4bea3535 w1_next_pullup -EXPORT_SYMBOL_GPL drivers/w1/wire 0x5f808c4c w1_write_8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0x60148bba w1_read_block +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x1fee41e0 ili9320_write +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x27381b10 ili9320_suspend +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x438d629a ili9320_probe_spi +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x5da22cbb ili9320_write_regs +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x6a4cd786 ili9320_resume +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xc07bfefa ili9320_shutdown +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xc1f68151 ili9320_remove +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0x7f1ccebe fb_ddc_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0xb2843c43 fb_sys_write +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0xd359adcf fb_sys_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x1b22168e omapdss_of_get_next_port +EXPORT_SYMBOL_GPL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x89603113 omapdss_of_find_source_for_first_ep +EXPORT_SYMBOL_GPL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x8a78871d omapdss_of_get_first_endpoint +EXPORT_SYMBOL_GPL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x92e92084 omapdss_of_get_next_endpoint +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x564ebf3e sis_malloc_new +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0xcd9d8e58 sis_free_new +EXPORT_SYMBOL_GPL drivers/w1/wire 0x07b39e00 w1_reset_bus +EXPORT_SYMBOL_GPL drivers/w1/wire 0x181c960f w1_triplet +EXPORT_SYMBOL_GPL drivers/w1/wire 0x2fbc6ac6 w1_touch_bit +EXPORT_SYMBOL_GPL drivers/w1/wire 0x461ea7bd w1_write_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x473b5506 w1_read_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x50a72b41 w1_write_block EXPORT_SYMBOL_GPL drivers/w1/wire 0x63757e92 w1_calc_crc8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0x797f9592 w1_read_8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0x84c1e0f9 w1_reset_select_slave -EXPORT_SYMBOL_GPL drivers/w1/wire 0x9c78d38c w1_reset_resume_command -EXPORT_SYMBOL_GPL drivers/w1/wire 0xa2e1285f w1_write_block -EXPORT_SYMBOL_GPL drivers/w1/wire 0xa4814a47 w1_touch_block -EXPORT_SYMBOL_GPL drivers/w1/wire 0xaec20663 w1_reset_bus -EXPORT_SYMBOL_GPL drivers/w1/wire 0xc07a1eee w1_triplet -EXPORT_SYMBOL_GPL drivers/w1/wire 0xfd539439 w1_touch_bit -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x418c1983 dlm_posix_unlock +EXPORT_SYMBOL_GPL drivers/w1/wire 0x865a5de5 w1_next_pullup +EXPORT_SYMBOL_GPL drivers/w1/wire 0xa88ecc6d w1_reset_resume_command +EXPORT_SYMBOL_GPL drivers/w1/wire 0xaa2027e7 w1_touch_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0xd4b92ab4 w1_read_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0xeca33452 w1_reset_select_slave +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x13a9fd27 dlm_posix_unlock EXPORT_SYMBOL_GPL fs/dlm/dlm 0x4b62826c dlm_unlock EXPORT_SYMBOL_GPL fs/dlm/dlm 0x647d6170 dlm_lock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x73ce4313 dlm_posix_get -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x7af3d352 dlm_posix_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x77c3e377 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 0xf1da24b8 dlm_posix_get EXPORT_SYMBOL_GPL fs/fscache/fscache 0x092cf98e fscache_object_sleep_till_congested -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x4dc0a847 nlmsvc_unlock_all_by_sb -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x5decc420 lockd_up -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x62d92941 nlmclnt_done +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x21dab4bf lockd_down +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x2ffce9d4 lockd_up +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x44473fc2 nlmsvc_unlock_all_by_sb EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77e35ccc nlmsvc_unlock_all_by_ip -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x81c3d758 lockd_down -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xcd02e074 nlmclnt_init -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xdd196915 nlmsvc_ops -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xfa920237 nlmclnt_proc +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x8c51aa99 nlmclnt_init +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x8fa5123e nlmsvc_ops +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xb6bc4ab5 nlmclnt_proc +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xda4cdc5b nlmclnt_done EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0294c6a2 nfs_callback_nr_threads -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0516486e nfs_submount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x05df100e nfs_lock -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0701fe00 nfs_file_llseek -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0848c276 nfs_init_cinfo -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0872355e nfs_create_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0a1717d1 nfs_initiate_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x04fa5814 nfs_post_op_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0a105155 nfs_file_set_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0a41cd00 nfs_initiate_pgio EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0c8f05a3 __tracepoint_nfs_xdr_bad_filehandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0d8b0d30 nfs_fs_type -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0fcdb347 nfs_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0d49dfa3 nfs_mkdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0e3313c3 nfs_revalidate_inode EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10962bc2 nfs_auth_info_match -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10e94361 nfs_release_request -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1183b669 nfs_do_submount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x11a2768d nfs_add_or_obtain -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x13153de8 nfs_access_get_cached -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1348cadd nfs_inode_attach_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x17e6596c nfs_client_init_is_complete -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x187c1883 nfs_check_cache_invalid -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1887f89e nfs_filemap_write_and_wait_range -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x18d358fe nfs_show_path -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x19708603 nfs_client_init_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x19a0f906 nfs_setattr_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1b3696f5 nfs_clear_verifier_delegated -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1d42253b nfs_force_lookup_revalidate -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1e92d964 nfs4_label_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1fd9e9f3 nfs_alloc_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x21118775 nfs_pgio_header_free -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x22826654 nfs_wait_client_init_complete -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x22cfa26f nfs_set_verifier +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x12005c99 nfs_permission +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1263e76d nfs_request_add_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x142a7e09 nfs_writeback_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x152b1c62 nfs_free_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x16f450c1 nfs_refresh_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x18dfe2b3 nfs_wb_all +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1a94751f nfs_alloc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1c0d8c2b __traceiter_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x202e78d8 nfs_create +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x21d95133 nfs_file_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2297ef1c nfs_access_get_cached EXPORT_SYMBOL_GPL fs/nfs/nfs 0x22d795a8 _nfs_display_fhandle_hash -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2437527c nfs_access_zap_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2513e8b3 nfs_write_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x23e126ea nfs_symlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x242e64b1 nfs_pageio_resend EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x277b3558 nfs4_fs_type -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x27de1ef9 nfs_clone_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2c17176e nfs_probe_fsinfo EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2cb995bd __tracepoint_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2d4dee45 nfs_server_remove_lists -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2e71ca67 nfs_post_op_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2ed72355 nfs_set_cache_invalid -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2f3e7c30 nfs_commit_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x30edd55b nfs_getattr EXPORT_SYMBOL_GPL fs/nfs/nfs 0x31e7914f __tracepoint_nfs_xdr_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x326bfa37 nfs_close_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x337e41ce nfs_file_mmap -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x343ad0e0 nfs_rmdir -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3702ef50 nfs_wb_all -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x375ac319 nfs_post_op_update_inode_force_wcc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x37ec84a6 nfs_symlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x325a7745 nfs_post_op_update_inode_force_wcc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x34f2feec nfs_get_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3518e677 nfs_request_add_commit_list_locked +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39b2903e nfs_set_cache_invalid EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3a1db86f nfs_sb_active -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3b31f310 nfs_client_for_each_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3e67f0e7 nfs_free_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3bbeec19 nfs_umount_begin EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f2690f2 nfs_check_flags -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4003059c put_nfs_open_context EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40739385 nfs_wait_bit_killable -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x423f37a4 nfs_free_inode EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f2c81f nfs4_client_id_uniquifier -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x48374be3 alloc_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4aadc28b nfs_invalidate_atime +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x431e5bbc nfs_file_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x47501dda nfs_init_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4776cb82 nfs_sb_active +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4aaea883 nfs_set_verifier EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4ed44669 nfs_async_iocounter_wait +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cc3761a nfs_clone_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x50e02041 nfs_add_or_obtain EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x535257b3 nfs_pageio_reset_read_mds -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x540bae9e nfs_request_remove_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x52e5c961 nfs_zap_acl_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x52fd1a06 __traceiter_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x53a3eed5 nfs_commit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x54938dad nfs_free_inode EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584b8482 nfs_inc_attr_generation_counter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x58bce1b2 nfs_commitdata_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5a4488ce nfs_generic_pgio -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5c5853b0 get_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5c6d1ea1 nfs_pageio_reset_write_mds -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5f866d64 nfs4_dentry_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x60df7d4d nfs_open -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6197223c nfs_drop_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x62a13217 nfs_path -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6785d5c7 nfs_setattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6b2fc270 nfs_request_add_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x594216d3 nfs_flock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x59d24c63 nfs_probe_fsinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5b52de6a nfs_drop_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5b7794cf nfs_reconfigure +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5bb81d7f nfs_link +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5d826264 nfs_invalidate_atime +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5da2d044 nfs_setattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5e6746b9 nfs_wait_client_init_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x61ba6390 register_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x61df51ee nfs_may_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x62fb5ce0 nfs_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x633d5028 nfs_do_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x68f4a035 nfs_pgheader_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x693f5577 nfs_close_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6a987cbc nfs_fhget EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6e81f032 __SCK__tp_func_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x73aac513 nfs_flock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6e85be35 nfs_pageio_reset_read_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7070308a nfs_getattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x70ac73e7 nfs_check_cache_invalid EXPORT_SYMBOL_GPL fs/nfs/nfs 0x73dff4c0 __SCK__tp_func_nfs_xdr_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x767dc4b9 nfs_alloc_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7743b2b3 nfs_mkdir -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7889cba3 nfs_writeback_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7d030f03 nfs_server_insert_lists -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7d4d9786 nfs_clear_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7e3e5f99 nfs_refresh_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7f61f81e nfs_request_add_commit_list_locked -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x80b351cf nfs_file_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x811ec8b3 nfs_commit_free -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x827ef865 nfs_scan_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x741bff19 nfs_free_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x753cc0c8 __traceiter_nfs_xdr_bad_filehandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x75c68c7e nfs_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x77b16636 nfs_kill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x78780631 nfs_filemap_write_and_wait_range +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x78986e6f nfs_release_request +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x79d4aefc nfs_write_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x79eb03e1 nfs_client_init_is_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7a8cee3f nfs_sync_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7c1035d3 nfs_inode_attach_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7d5ba005 nfs_create_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8197b6ab nfs_alloc_server EXPORT_SYMBOL_GPL fs/nfs/nfs 0x832e8f0b nfs_alloc_fattr EXPORT_SYMBOL_GPL fs/nfs/nfs 0x842aa210 __tracepoint_nfs_fsync_enter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8450d25b nfs_fscache_open_file -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8560a40f nfs_mark_client_ready -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x89d92f22 nfs_free_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8a2de8ec nfs_file_set_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8cfc4bd4 __traceiter_nfs_xdr_bad_filehandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8f28d16c nfs_mknod +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x844970ec __traceiter_nfs_xdr_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8469daab nfs_file_mmap +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x84d54995 nfs_pageio_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x88737042 nfs_put_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8c5c5e5b nfs_pageio_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8e529094 nfs_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8f77d260 nfs_pgio_header_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8f7cdc62 nfs_file_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9088824f unregister_nfs_version EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90a5530f nfsiod_workqueue -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90fccd9b nfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9117db4d nfs_fscache_open_file +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9132b073 alloc_nfs_open_context EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91d1fe52 max_session_slots EXPORT_SYMBOL_GPL fs/nfs/nfs 0x95007f7e __SCK__tp_func_nfs_xdr_bad_filehandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x96001779 __traceiter_nfs_fsync_enter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x96d10f00 nfs_zap_acl_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x96d2c1bd nfs_retry_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x98495a27 nfs_try_get_tree -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x989d413a nfs_access_add_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x97597159 nfs_rename EXPORT_SYMBOL_GPL fs/nfs/nfs 0x98b0ece8 nfs_init_timeout_values -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9ce58eb5 nfs_sync_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9d777d31 nfs_server_copy_userdata -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9e4e3236 nfs_create_rpc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9a788237 nfs4_label_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9b4d18a5 put_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9de6e7d3 nfs_client_init_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9f2075fd nfs_file_fsync EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa05ca625 nfs_fattr_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa1e3a50d nfs_rename -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa2e19f9f nfs_setsecurity -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa3d652ab nfs_lookup -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa43f067c nfs_pgheader_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa488ddbf nfs_unlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa0b93a79 nfs_clear_verifier_delegated +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa0edf9e9 nfs_sb_deactive +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa18e34a8 nfs_request_remove_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa1f44b2f nfs_atomic_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa3f24c90 nfs_access_add_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa58c61b1 nfs_pgio_header_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa6033874 nfs_retry_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa75e8915 nfs_lock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa7850f7e get_nfs_open_context EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e9e1ae send_implementation_id -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa9951802 __traceiter_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaa062ab4 nfs_put_lock_context EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaaa14361 nfs_dreq_bytes_left +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaabaade0 nfs_try_get_tree EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaafd4acc max_session_cb_slots -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xadb0d029 nfs_reconfigure -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb0105d8b nfs_show_devname -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb0efd6c9 nfs_put_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb238d79f nfs_statfs -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb26aa714 nfs_umount_begin -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb2ab1d57 nfs_show_stats -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb512e4b7 nfs_alloc_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbbf0bf59 nfs_commitdata_release -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbd481cf1 nfs_file_release -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbd930161 nfs_pageio_resend -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbe6d80c8 nfs_get_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbec58c5d nfs_init_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbeff08f7 nfs_get_lock_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc029c7c5 nfs_link -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc39bce34 nfs_create +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xabf81332 nfs_show_options +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xacfae600 nfs_pgio_current_mirror +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb0c3a09a nfs_file_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb57bb8eb nfs_init_cinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb6348232 nfs_async_iocounter_wait +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb667144e nfs4_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb6f8b405 nfs_instantiate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb74736e4 nfs_create_rpc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb766c872 nfs_commitdata_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbe1c36d5 nfs_unlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbec27678 nfs_show_devname EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3a2be67 nfs_net_id -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc7073117 nfs_kill_super -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xce7c625e __traceiter_nfs_xdr_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcf451a3b nfs_sops -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd0718861 nfs_may_open -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd353bdcb nfs_file_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3db9760 nfs_file_llseek +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3dc2796 nfs_commit_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc623586d nfs_alloc_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc7f31fa8 nfs_get_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcc4ebf45 nfs_setattr_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcde86491 nfs_server_copy_userdata +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xce5482a2 nfs_rmdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcf521ee6 nfs_init_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd1f82d10 nfs_setsecurity +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd2588fb9 nfs_scan_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd4b3e9a6 nfs_server_remove_lists EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd6752e2e nfs_access_set_mask -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd98e8c69 nfs_file_fsync -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xda16be8c unregister_nfs_version EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdcae46b3 nfs_pageio_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdd1779fa nfs_wait_on_request -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe3d43678 nfs_revalidate_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe7192e8f nfs_init_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe84d9e40 nfs_file_write -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe91d57b1 nfs_sb_deactive -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeb0389d0 nfs_show_options -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xedda0258 nfs_atomic_open -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeedb7e95 nfs_init_server_rpcclient -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xef12d24f nfs_pageio_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf016ca19 nfs_pgio_current_mirror -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf2e90d45 nfs_pgio_header_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf48f370d nfs_permission -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf4c4c6c0 register_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdb1c62a3 nfs_client_for_each_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdb9d0fee nfs_statfs +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdc519a8b nfs_show_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xde0e40ec nfs_mknod +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdf063e9a nfs_commitdata_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe0ba2a9c nfs_mark_client_ready +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe0f570ae nfs_server_insert_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe2b563ed nfs_wait_on_request +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe36f1f0f nfs_show_stats +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe404db34 nfs_initiate_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe56270a9 nfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe6016e63 nfs_put_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe66c5ac8 nfs_init_server_rpcclient +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe77e17c1 nfs_generic_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe8fbb4ab nfs_lookup +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe9107ddc nfs4_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeb1d7e73 nfs_pageio_reset_write_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf27c6814 nfs_access_zap_cache EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf96f04c4 __SCK__tp_func_nfs_fsync_enter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf9a0c6cc nfs_initiate_pgio -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfa919400 nfs_fhget +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf9ac52c3 nfs_clear_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfacef888 nfs_sops EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc619abd _nfs_display_fhandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfcafce60 nfs_instantiate -EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0x1b874070 nfs3_set_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x017052d2 __traceiter_pnfs_mds_fallback_read_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0268feeb pnfs_generic_pg_writepages -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x03b75900 __traceiter_pnfs_mds_fallback_write_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc7f6185 nfs_force_lookup_revalidate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfff03678 nfs_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0x28ae11d9 nfs3_set_ds_client EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x057a2050 pnfs_register_layoutdriver -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x08a98da1 __traceiter_pnfs_mds_fallback_pg_get_mirror_count EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x08b2c467 __SCK__tp_func_ff_layout_commit_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0d56a7e1 pnfs_generic_pg_check_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0a8f0181 nfs4_set_rw_stateid EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0ef4545c __tracepoint_pnfs_mds_fallback_pg_get_mirror_count -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0f1a0344 __traceiter_nfs4_pnfs_commit_ds EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0ff289f3 __SCK__tp_func_pnfs_mds_fallback_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x10000499 nfs4_setup_sequence -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x196b23a7 nfs41_sequence_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1e697804 pnfs_read_resend_pnfs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1e8fd23c pnfs_alloc_commit_array -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x212c649b nfs42_proc_layouterror -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x23993cdb __traceiter_ff_layout_commit_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x273840e6 nfs4_init_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x159e3044 pnfs_free_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x19910069 pnfs_nfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1a2a6b86 __traceiter_pnfs_mds_fallback_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1d7a2f4f __traceiter_pnfs_mds_fallback_write_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x216958c9 pnfs_generic_search_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x21969ce8 nfs4_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x24282c04 pnfs_generic_pg_cleanup EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x27ad47ea __SCK__tp_func_pnfs_mds_fallback_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x27c2f943 nfs4_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x27bacedc __traceiter_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2a6e4874 nfs4_delete_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2abab418 pnfs_generic_pg_check_layout EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2e79bf5b __tracepoint_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2fc3dd51 pnfs_add_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x30826e0b pnfs_generic_sync EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x30a44ac3 __SCK__tp_func_ff_layout_write_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x343ace5c nfs4_proc_getdeviceinfo -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3c1a80b0 __traceiter_nfs4_pnfs_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3d689b7d pnfs_generic_recover_commit_reqs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x411a88fe nfs4_schedule_lease_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x41de11df pnfs_nfs_generic_sync -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x43606a18 nfs4_set_rw_stateid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x313eebbd __traceiter_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3184d720 pnfs_set_lo_fail +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x365e0153 nfs4_schedule_migration_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x37f8496c pnfs_generic_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3be579c2 nfs_remove_bad_delegation +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3e2a68e6 pnfs_generic_pg_readpages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3eb739b8 nfs4_pnfs_ds_put EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4543e9b0 __tracepoint_pnfs_mds_fallback_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x47e39de2 pnfs_generic_pg_cleanup -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4fdfbea7 __traceiter_pnfs_mds_fallback_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x516a47f9 nfs4_pnfs_ds_connect +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4a3dde83 nfs4_schedule_session_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5326f2bd nfs4_pnfs_ds_connect EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x533c198f __SCK__tp_func_nfs4_pnfs_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x575bf3ae nfs4_test_session_trunk +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x571eeef7 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 0x59ac7916 nfs4_put_deviceid_node EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5a4314e9 __SCK__tp_func_nfs4_pnfs_commit_ds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5b255262 nfs4_find_or_create_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5b4b3ae7 nfs41_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5c012d94 __traceiter_nfs4_pnfs_read EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5ca3ae2b __tracepoint_pnfs_mds_fallback_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x659d932e pnfs_generic_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x67da0348 nfs4_proc_getdeviceinfo EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6c9adf7b nfs4_delete_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6db76686 nfs4_init_ds_session -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6f2baf90 pnfs_read_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6a267031 nfs4_schedule_stateid_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6dec2663 pnfs_generic_pg_writepages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x704288d8 nfs4_schedule_lease_recovery EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x785c06ab __SCK__tp_func_ff_layout_read_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x78682176 __traceiter_pnfs_mds_fallback_pg_init_write EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7a4e7f4e __SCK__tp_func_pnfs_mds_fallback_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7b76bcfb pnfs_ld_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7bebe9ad pnfs_generic_pg_readpages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7b43cb85 pnfs_generic_layout_insert_lseg EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7cd013a8 __SCK__tp_func_pnfs_mds_fallback_pg_get_mirror_count -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7d23a801 pnfs_generic_ds_cinfo_destroy EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7d979567 __tracepoint_pnfs_mds_fallback_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7daf7cc9 pnfs_generic_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7ee5533e nfs4_schedule_stateid_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7e5388e1 pnfs_generic_pg_test EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x80e9d17b __tracepoint_ff_layout_read_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8353524d __traceiter_pnfs_mds_fallback_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x83a6fcc5 nfs4_init_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8554baa4 pnfs_generic_scan_commit_lists EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8591bcdb __tracepoint_nfs4_pnfs_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x873cb798 pnfs_update_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x87c0f717 nfs4_decode_mp_ds_addr -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8c4676f4 pnfs_set_lo_fail -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8cfd7e52 pnfs_generic_ds_cinfo_release_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x86966b08 pnfs_destroy_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8a187793 pnfs_register_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8cde3df3 pnfs_update_layout EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8d3aad34 __tracepoint_nfs4_pnfs_commit_ds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x908bc355 __traceiter_pnfs_mds_fallback_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x90b06b3e pnfs_ld_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8de73dbb nfs4_decode_mp_ds_addr +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8fa16d50 __traceiter_ff_layout_write_error EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x913dbeba __tracepoint_ff_layout_commit_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9253a3ce pnfs_layoutcommit_inode EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x931d7f55 __tracepoint_pnfs_mds_fallback_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x935fd60d nfs4_mark_deviceid_unavailable -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x93704479 pnfs_generic_layout_insert_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x963ec8ff pnfs_write_done_resend_to_mds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x973eba62 pnfs_free_commit_array -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9949ac6c pnfs_add_commit_array -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9ac29d1c pnfs_generic_prepare_to_resend_writes +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9d8f9148 pnfs_alloc_commit_array EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa02df320 nfs_map_string_to_numeric -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa3e1f579 pnfs_generic_clear_request_commit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xafe02de9 pnfs_layoutcommit_inode -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb03cde82 nfs4_mark_deviceid_available -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb186fa23 pnfs_generic_sync -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb3f00470 __traceiter_ff_layout_read_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb4e5dfeb nfs_remove_bad_delegation -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb683ae62 nfs4_schedule_migration_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa40a75e4 pnfs_read_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa4e56614 nfs4_test_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa8303c94 pnfs_generic_write_commit_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa89ecef6 pnfs_generic_prepare_to_resend_writes +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xadc8b346 nfs4_find_or_create_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb03a93df pnfs_report_layoutstat +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb288c74e __traceiter_pnfs_mds_fallback_read_pagelist EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb68f2dc0 __tracepoint_ff_layout_write_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb6b13b51 pnfs_destroy_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb7cf4b82 __traceiter_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb81082e4 pnfs_generic_ds_cinfo_destroy +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb8ec4a9e pnfs_layout_mark_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb92dbaf5 nfs4_test_session_trunk EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xba53a1ef __SCK__tp_func_pnfs_mds_fallback_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbb9556d5 pnfs_layout_mark_request_commit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc627a65d pnfs_set_layoutcommit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbb7331f7 pnfs_generic_pg_check_range +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc0bee29e nfs4_pnfs_ds_add +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc4d71b39 __traceiter_ff_layout_read_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc52c9af8 __traceiter_pnfs_mds_fallback_pg_init_read EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc7a9d954 __SCK__tp_func_nfs4_pnfs_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc94b2e5a pnfs_unregister_layoutdriver EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcb7ed01e __tracepoint_pnfs_mds_fallback_read_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcdb27e79 pnfs_error_mark_layout_for_return -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcfd7b69a nfs4_schedule_session_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd0a28f51 nfs4_schedule_lease_moved_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd2764eaa pnfs_generic_pg_test -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd4ac46be pnfs_generic_search_commit_reqs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd7ea7262 __traceiter_nfs4_pnfs_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd9a4bc91 nfs4_test_deviceid_unavailable -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdc827638 pnfs_put_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcd6bf51e nfs4_init_ds_session +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcf28bd31 nfs4_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcff8c490 pnfs_ld_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd1fde135 pnfs_read_resend_pnfs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd45bb8f5 nfs4_schedule_lease_moved_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd881687d pnfs_error_mark_layout_for_return +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xda4f1738 pnfs_generic_recover_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdd5ddd34 pnfs_generic_clear_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xde390a5e pnfs_put_lseg EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdf6991a4 __SCK__tp_func_pnfs_mds_fallback_write_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdfd2fdc5 pnfs_set_layoutcommit EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe040788f __tracepoint_pnfs_mds_fallback_write_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe1c005f3 __traceiter_ff_layout_write_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe4c57947 nfs4_sequence_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe527f16f pnfs_generic_pg_check_range -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xeadce45c nfs4_put_deviceid_node -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xeb6c3a1c nfs4_find_get_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xebc076fa __traceiter_pnfs_mds_fallback_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe238057a pnfs_unregister_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe3e085ea __traceiter_pnfs_mds_fallback_pg_get_mirror_count +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe4033de1 nfs4_mark_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe5bd6446 pnfs_ld_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe763199f __traceiter_ff_layout_commit_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe949ffb0 nfs4_find_get_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xece6f5fc pnfs_generic_commit_pagelist EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed15fb41 nfs4_print_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed29d7e9 nfs4_pnfs_ds_put -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf3c46151 pnfs_generic_write_commit_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf3e44073 nfs4_pnfs_ds_add +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf34b71ef nfs4_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf7603a88 pnfs_generic_pg_init_read EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf7801360 nfs41_maxgetdevinfo_overhead +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf7d5b90d pnfs_generic_ds_cinfo_release_lseg EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf999267e pnfs_generic_commit_release -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfa04d924 pnfs_generic_commit_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfaf3c0fb pnfs_generic_scan_commit_lists -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfbfa4488 pnfs_report_layoutstat +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfa6aba3c pnfs_write_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfd9610b0 nfs42_proc_layouterror EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fe1e1ad locks_end_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x8857ed3f locks_start_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x994cbb41 opens_in_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xb7f533c6 locks_in_grace -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x14e0456f nfs_stream_decode_acl -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x663f95cc nfsacl_encode -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x6aa6df36 nfs_stream_encode_acl -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xbc64459f nfsacl_decode -EXPORT_SYMBOL_GPL fs/nfsd/nfsd 0x80f977f1 nfsd4_ssc_init_umount_work +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x55a7eefa opens_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x77348236 locks_start_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x792e4b99 locks_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x4dd0b11c nfs_stream_decode_acl +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x586a9749 nfsacl_decode +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x5bb72c56 nfsacl_encode +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x93dcdeca nfs_stream_encode_acl +EXPORT_SYMBOL_GPL fs/nfsd/nfsd 0xee8b1496 nfsd4_ssc_init_umount_work +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x0d24d7bf o2nm_node_put +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x186fd610 o2hb_setup_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x19220c4c o2hb_unregister_callback EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1b89c6ee o2hb_fill_node_map EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1cb231d0 mlog_not_bits -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x2c131b37 o2nm_node_get +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x24ed5e62 o2nm_get_node_by_num EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x364f639b o2net_send_message_vec -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x4185adc3 o2hb_setup_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x39129053 o2nm_get_node_by_ip EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x4900035b o2hb_stop_all_regions EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x58c88ff2 o2hb_get_all_regions EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x687f6251 mlog_and_bits EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x6a0c3847 __mlog_printk -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x6c8ad73b o2nm_node_put -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x951902f6 o2hb_register_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa4e029b0 o2hb_unregister_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x6b1fd8ed o2hb_register_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x7a0dc8d1 o2nm_node_get EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa87bc9e7 o2nm_configured_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 0xd859ac8c o2net_fill_node_map -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf19f0237 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 0xf982e6db o2net_send_message -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xfb607e95 o2nm_get_node_by_ip EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xfe1298f3 o2net_register_handler -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x179fa6e4 dlm_register_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x5eb298b8 dlm_register_domain -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x64cc2103 dlm_unregister_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x010d2fa8 dlm_unregister_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x16c3389f dlm_register_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x30de73ef dlm_register_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x3dc12b1a dlmlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x3f2192e8 dlm_print_one_lock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x6cdbb30b dlmunlock EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7a1211f8 dlm_setup_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xac27821b dlmlock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xc9652817 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 0xf5b29d1b dlmunlock EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xfb86b96f dlm_errname +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x098911e9 ocfs2_plock 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 0x17ec3d5a ocfs2_kset -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x18a067ee ocfs2_stack_glue_register +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x1fee55d5 ocfs2_stack_glue_unregister EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4d3af7fa ocfs2_cluster_hangup +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x56560706 ocfs2_kset +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x6c4b4cb7 ocfs2_stack_glue_register EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x76f40744 ocfs2_dlm_lvb -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x93ff9cfd ocfs2_plock EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x9507547f ocfs2_cluster_disconnect EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xaf969565 ocfs2_dlm_lock EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbbc4ef97 ocfs2_stack_supports_plocks -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xc411134d ocfs2_stack_glue_unregister EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xc5196999 ocfs2_dlm_unlock EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xc9fae756 ocfs2_cluster_connect EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xcafdd707 ocfs2_dlm_lock_status EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xd344e4ee ocfs2_stack_glue_set_max_proto_version EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xd806a273 ocfs2_dlm_dump_lksb +EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0x3be27fcf register_pstore_device EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0x43cc3d4b pstore_blk_get_config -EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0xf92c5335 register_pstore_device -EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0xfa32d0fb unregister_pstore_device -EXPORT_SYMBOL_GPL fs/pstore/pstore_zone 0x0d15379c register_pstore_zone -EXPORT_SYMBOL_GPL fs/pstore/pstore_zone 0xdbcf6065 unregister_pstore_zone +EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0xe6efb0f2 unregister_pstore_device +EXPORT_SYMBOL_GPL fs/pstore/pstore_zone 0x736888f1 unregister_pstore_zone +EXPORT_SYMBOL_GPL fs/pstore/pstore_zone 0x96de6fb9 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 @@ -16847,1056 +16885,1057 @@ EXPORT_SYMBOL_GPL lib/crypto/libpoly1305 0x8c874435 poly1305_init_generic EXPORT_SYMBOL_GPL lib/crypto/libsm4 0x24e254e8 sm4_expandkey EXPORT_SYMBOL_GPL lib/crypto/libsm4 0xfa81970e sm4_crypt_block -EXPORT_SYMBOL_GPL lib/notifier-error-inject 0xb3c0d339 notifier_err_inject_dir -EXPORT_SYMBOL_GPL lib/notifier-error-inject 0xbb3b1853 notifier_err_inject_init +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x3e7d5f84 notifier_err_inject_init +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x998f8b89 notifier_err_inject_dir EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x021957e1 raid6_datap_recov EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x0f8a2742 raid6_2data_recov EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0xd4cb6873 raid6_call -EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x24ef0117 lowpan_header_decompress -EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x5418b51b lowpan_header_compress -EXPORT_SYMBOL_GPL net/802/garp 0x0203e70b garp_register_application -EXPORT_SYMBOL_GPL net/802/garp 0x24d23a6c garp_init_applicant -EXPORT_SYMBOL_GPL net/802/garp 0x3e898458 garp_request_leave -EXPORT_SYMBOL_GPL net/802/garp 0x471d3988 garp_request_join -EXPORT_SYMBOL_GPL net/802/garp 0x887a6f89 garp_uninit_applicant -EXPORT_SYMBOL_GPL net/802/garp 0xc88bef01 garp_unregister_application -EXPORT_SYMBOL_GPL net/802/mrp 0x25dffe7a mrp_uninit_applicant -EXPORT_SYMBOL_GPL net/802/mrp 0x2f00c533 mrp_init_applicant -EXPORT_SYMBOL_GPL net/802/mrp 0xa9b5994f mrp_request_join -EXPORT_SYMBOL_GPL net/802/mrp 0xbb55fc09 mrp_unregister_application -EXPORT_SYMBOL_GPL net/802/mrp 0xea53dd29 mrp_register_application -EXPORT_SYMBOL_GPL net/802/mrp 0xfe700ead mrp_request_leave -EXPORT_SYMBOL_GPL net/802/stp 0x3f731e13 stp_proto_register -EXPORT_SYMBOL_GPL net/802/stp 0xcc0ada93 stp_proto_unregister -EXPORT_SYMBOL_GPL net/9p/9pnet 0x9f04521b p9_client_xattrcreate -EXPORT_SYMBOL_GPL net/9p/9pnet 0xc5a975f7 p9_client_xattrwalk +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0xba52ee2f lowpan_header_decompress +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0xeefb92c5 lowpan_header_compress +EXPORT_SYMBOL_GPL net/802/garp 0x13ccba6d garp_request_join +EXPORT_SYMBOL_GPL net/802/garp 0x520d269f garp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/garp 0x6c9abf52 garp_unregister_application +EXPORT_SYMBOL_GPL net/802/garp 0x70335164 garp_register_application +EXPORT_SYMBOL_GPL net/802/garp 0xdfb2d0ee garp_init_applicant +EXPORT_SYMBOL_GPL net/802/garp 0xe0f6f56a garp_request_leave +EXPORT_SYMBOL_GPL net/802/mrp 0x25f1b619 mrp_request_join +EXPORT_SYMBOL_GPL net/802/mrp 0x7a7507de mrp_init_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0xa4937126 mrp_request_leave +EXPORT_SYMBOL_GPL net/802/mrp 0xa698ffbf mrp_register_application +EXPORT_SYMBOL_GPL net/802/mrp 0xb636592e mrp_unregister_application +EXPORT_SYMBOL_GPL net/802/mrp 0xbbf43b92 mrp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/stp 0x39403084 stp_proto_unregister +EXPORT_SYMBOL_GPL net/802/stp 0x6db193d2 stp_proto_register +EXPORT_SYMBOL_GPL net/9p/9pnet 0x1ae017b9 p9_client_xattrcreate +EXPORT_SYMBOL_GPL net/9p/9pnet 0x3965563c 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 0x5268318f 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 0xe272c75d ax25_register_pid -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x43daa501 bt_debugfs -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x5aacc6a3 l2cap_chan_send -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x64b6dd92 l2cap_chan_put -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x68e30e8e l2cap_chan_del -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x74d96ad6 l2cap_chan_list -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x7fd12673 l2cap_add_psm -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xe72b5fc4 l2cap_chan_connect -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xfaa45944 l2cap_chan_set_defaults -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xfdeb5d5a l2cap_chan_create -EXPORT_SYMBOL_GPL net/bluetooth/hidp/hidp 0xc9874b82 hidp_hid_driver -EXPORT_SYMBOL_GPL net/bridge/bridge 0x15abea53 br_forward -EXPORT_SYMBOL_GPL net/bridge/bridge 0x1ead7047 br_multicast_has_router_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0x2d9c04dc br_forward_finish -EXPORT_SYMBOL_GPL net/bridge/bridge 0x30a25d3a br_get_ageing_time -EXPORT_SYMBOL_GPL net/bridge/bridge 0x4fbea468 br_multicast_list_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0x52b40f97 br_dev_queue_push_xmit -EXPORT_SYMBOL_GPL net/bridge/bridge 0x540189de br_multicast_enabled -EXPORT_SYMBOL_GPL net/bridge/bridge 0x5f0ee1d9 br_fdb_find_port -EXPORT_SYMBOL_GPL net/bridge/bridge 0x66d81704 br_handle_frame_finish -EXPORT_SYMBOL_GPL net/bridge/bridge 0x9368cc22 br_port_get_stp_state -EXPORT_SYMBOL_GPL net/bridge/bridge 0xa53f5cc5 br_fdb_clear_offload -EXPORT_SYMBOL_GPL net/bridge/bridge 0xa9b6c917 br_port_flag_is_set -EXPORT_SYMBOL_GPL net/bridge/bridge 0xb0c1420c nf_br_ops -EXPORT_SYMBOL_GPL net/bridge/bridge 0xb66acfc1 br_vlan_get_proto -EXPORT_SYMBOL_GPL net/bridge/bridge 0xc6fb3b8a br_vlan_get_pvid_rcu -EXPORT_SYMBOL_GPL net/bridge/bridge 0xcb6b9c5b br_vlan_get_info_rcu -EXPORT_SYMBOL_GPL net/bridge/bridge 0xd71a4bde br_multicast_has_querier_anywhere -EXPORT_SYMBOL_GPL net/bridge/bridge 0xeb2384d6 br_vlan_get_info -EXPORT_SYMBOL_GPL net/bridge/bridge 0xef33b4c9 br_vlan_enabled -EXPORT_SYMBOL_GPL net/bridge/bridge 0xf3156035 br_multicast_router -EXPORT_SYMBOL_GPL net/bridge/bridge 0xfd741b52 br_multicast_has_querier_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0xfe969999 br_vlan_get_pvid -EXPORT_SYMBOL_GPL net/core/failover 0x79ac7473 failover_register -EXPORT_SYMBOL_GPL net/core/failover 0xb18f5636 failover_unregister -EXPORT_SYMBOL_GPL net/core/failover 0xcb8c6939 failover_slave_unregister -EXPORT_SYMBOL_GPL net/dccp/dccp 0x04a1babe dccp_close -EXPORT_SYMBOL_GPL net/dccp/dccp 0x11be4a87 dccp_parse_options +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x033611ee l2cap_chan_list +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x3701a0ba l2cap_chan_set_defaults +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x40fcf072 l2cap_chan_send +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x51c10950 bt_debugfs +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x62e7b73f l2cap_chan_put +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x92d46be3 l2cap_add_psm +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xc61a5e84 l2cap_chan_create +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xe5e6784c l2cap_chan_connect +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xfb7f38ec l2cap_chan_del +EXPORT_SYMBOL_GPL net/bluetooth/hidp/hidp 0xc7f1fbdf hidp_hid_driver +EXPORT_SYMBOL_GPL net/bridge/bridge 0x022c7c3a br_vlan_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0x06cf9417 nf_br_ops +EXPORT_SYMBOL_GPL net/bridge/bridge 0x1845f6b5 br_vlan_get_proto +EXPORT_SYMBOL_GPL net/bridge/bridge 0x24c51768 br_fdb_find_port +EXPORT_SYMBOL_GPL net/bridge/bridge 0x3bf6483b br_multicast_has_querier_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x48f8a7fd br_get_ageing_time +EXPORT_SYMBOL_GPL net/bridge/bridge 0x4d536115 br_vlan_get_pvid +EXPORT_SYMBOL_GPL net/bridge/bridge 0x67965700 br_port_get_stp_state +EXPORT_SYMBOL_GPL net/bridge/bridge 0x9703afbc br_multicast_has_querier_anywhere +EXPORT_SYMBOL_GPL net/bridge/bridge 0xbdccedd8 br_handle_frame_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0xc9c8e781 br_fdb_clear_offload +EXPORT_SYMBOL_GPL net/bridge/bridge 0xccef4d78 br_multicast_list_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0xce813a55 br_multicast_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0xd2382568 br_vlan_get_info +EXPORT_SYMBOL_GPL net/bridge/bridge 0xd389be96 br_dev_queue_push_xmit +EXPORT_SYMBOL_GPL net/bridge/bridge 0xdafaf3fd br_forward_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0xdccb85a0 br_vlan_get_pvid_rcu +EXPORT_SYMBOL_GPL net/bridge/bridge 0xdefc3c3f br_forward +EXPORT_SYMBOL_GPL net/bridge/bridge 0xf03de78f br_port_flag_is_set +EXPORT_SYMBOL_GPL net/bridge/bridge 0xf44c5420 br_multicast_router +EXPORT_SYMBOL_GPL net/bridge/bridge 0xfc6e2066 br_multicast_has_router_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0xfe402082 br_vlan_get_info_rcu +EXPORT_SYMBOL_GPL net/core/failover 0x2892b583 failover_unregister +EXPORT_SYMBOL_GPL net/core/failover 0x68c30f73 failover_register +EXPORT_SYMBOL_GPL net/core/failover 0xc012ff37 failover_slave_unregister +EXPORT_SYMBOL_GPL net/dccp/dccp 0x0962dfe0 dccp_recvmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1008bfcd inet_dccp_listen EXPORT_SYMBOL_GPL net/dccp/dccp 0x182ec2bf dccp_ackvec_parsed_add -EXPORT_SYMBOL_GPL net/dccp/dccp 0x1b9dcef6 dccp_child_process -EXPORT_SYMBOL_GPL net/dccp/dccp 0x1ba500af dccp_insert_option -EXPORT_SYMBOL_GPL net/dccp/dccp 0x21de90dc dccp_getsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0x2766ea79 dccp_send_sync -EXPORT_SYMBOL_GPL net/dccp/dccp 0x29281c8e dccp_send_ack -EXPORT_SYMBOL_GPL net/dccp/dccp 0x30618d46 dccp_reqsk_send_ack -EXPORT_SYMBOL_GPL net/dccp/dccp 0x352d238d dccp_poll -EXPORT_SYMBOL_GPL net/dccp/dccp 0x3760f064 dccp_sync_mss -EXPORT_SYMBOL_GPL net/dccp/dccp 0x37942272 dccp_rcv_established -EXPORT_SYMBOL_GPL net/dccp/dccp 0x3c03b102 dccp_check_req -EXPORT_SYMBOL_GPL net/dccp/dccp 0x3d47bb4b dccp_shutdown -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4791129d dccp_reqsk_init +EXPORT_SYMBOL_GPL net/dccp/dccp 0x2d8f8cb0 dccp_shutdown +EXPORT_SYMBOL_GPL net/dccp/dccp 0x3331eefa dccp_disconnect +EXPORT_SYMBOL_GPL net/dccp/dccp 0x34e44192 dccp_reqsk_init +EXPORT_SYMBOL_GPL net/dccp/dccp 0x38e7f59e dccp_poll +EXPORT_SYMBOL_GPL net/dccp/dccp 0x3da0f835 dccp_set_state +EXPORT_SYMBOL_GPL net/dccp/dccp 0x42c4e08e dccp_sync_mss EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4fcac660 dccp_ctl_make_reset -EXPORT_SYMBOL_GPL net/dccp/dccp 0x5577e3fb dccp_make_response +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4fa38936 dccp_child_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0x50f715f9 dccp_destroy_sock EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics -EXPORT_SYMBOL_GPL net/dccp/dccp 0x6315a21e dccp_feat_signal_nn_change -EXPORT_SYMBOL_GPL net/dccp/dccp 0x6c6e24bc dccp_disconnect -EXPORT_SYMBOL_GPL net/dccp/dccp 0x6ce412c8 inet_dccp_listen -EXPORT_SYMBOL_GPL net/dccp/dccp 0x76da3e6c dccp_feat_nn_get +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5a9f3ddf dccp_rcv_established +EXPORT_SYMBOL_GPL net/dccp/dccp 0x60c5d459 dccp_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x66382a54 dccp_ctl_make_reset +EXPORT_SYMBOL_GPL net/dccp/dccp 0x6c571a22 dccp_parse_options +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7c05563e dccp_init_sock EXPORT_SYMBOL_GPL net/dccp/dccp 0x80993155 dccp_timestamp EXPORT_SYMBOL_GPL net/dccp/dccp 0x86be7924 dccp_packet_name -EXPORT_SYMBOL_GPL net/dccp/dccp 0x8859339d dccp_setsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0x899b3470 dccp_connect +EXPORT_SYMBOL_GPL net/dccp/dccp 0x86f88f45 dccp_connect EXPORT_SYMBOL_GPL net/dccp/dccp 0x8afb3cd3 dccp_death_row -EXPORT_SYMBOL_GPL net/dccp/dccp 0x90c57a15 dccp_recvmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9060038d dccp_send_sync +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9250308e dccp_insert_option EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup -EXPORT_SYMBOL_GPL net/dccp/dccp 0x9d5e1749 dccp_init_sock -EXPORT_SYMBOL_GPL net/dccp/dccp 0xb5623232 dccp_sendmsg -EXPORT_SYMBOL_GPL net/dccp/dccp 0xbcd239ee dccp_rcv_state_process -EXPORT_SYMBOL_GPL net/dccp/dccp 0xbde5e8c3 dccp_done -EXPORT_SYMBOL_GPL net/dccp/dccp 0xc4f2deac dccp_ioctl -EXPORT_SYMBOL_GPL net/dccp/dccp 0xc85dce16 dccp_create_openreq_child +EXPORT_SYMBOL_GPL net/dccp/dccp 0x99574dcc dccp_close +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9b467262 dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa3143e13 dccp_sendmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0xad2672d0 dccp_create_openreq_child +EXPORT_SYMBOL_GPL net/dccp/dccp 0xb124f71a dccp_make_response +EXPORT_SYMBOL_GPL net/dccp/dccp 0xb1d1e6a1 dccp_feat_nn_get +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc127cf3f dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc4f0c089 dccp_reqsk_send_ack EXPORT_SYMBOL_GPL net/dccp/dccp 0xd75b7072 dccp_orphan_count -EXPORT_SYMBOL_GPL net/dccp/dccp 0xe6eecabf dccp_destroy_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0xdd6cfbdf dccp_done +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe59abaab dccp_ioctl +EXPORT_SYMBOL_GPL net/dccp/dccp 0xecfa74c2 dccp_check_req +EXPORT_SYMBOL_GPL net/dccp/dccp 0xee83de2a dccp_feat_signal_nn_change +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf25345fe dccp_rcv_state_process EXPORT_SYMBOL_GPL net/dccp/dccp 0xf55ef99b dccp_hashinfo -EXPORT_SYMBOL_GPL net/dccp/dccp 0xf5912b5d dccp_set_state -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x1c4eea4d dccp_v4_conn_request -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x23c2d288 dccp_v4_do_rcv -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x5e17b699 dccp_v4_send_check -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x6ea8e8b9 dccp_v4_request_recv_sock -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x6f89ecd3 dccp_v4_connect -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xec5f1950 dccp_invalid_packet -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x0b192219 dsa_devlink_resource_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x1607af4f dsa_8021q_xmit -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x2cdef87f dsa_port_get_ethtool_phy_stats -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x39877c1c dsa_tag_8021q_bridge_tx_fwd_offload +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x02a447d9 dccp_v4_send_check +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x1c0f4339 dccp_v4_do_rcv +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x2e5cb800 dccp_invalid_packet +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x5a2cc81a dccp_v4_connect +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x86ac9af0 dccp_v4_request_recv_sock +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xf53846fc dccp_v4_conn_request +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x0f555b18 dsa_register_switch +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x153a095e dsa_tag_8021q_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x198f968c dsa_devlink_resources_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x1a8db20a dsa_8021q_rcv +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x21f19b65 dsa_devlink_region_create +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x23fd78cb dsa_devlink_params_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x27e6337d dsa_unregister_switch +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x28d5bf29 dsa_switch_resume +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x2aaff4b7 dsa_tag_8021q_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x2e6cf335 dsa_devlink_param_get +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x3ea0786c dsa_devlink_resource_occ_get_unregister EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x417d1fed dsa_8021q_rx_switch_id -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x48757d6f dsa_8021q_rx_vid -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x557290c5 dsa_switch_shutdown +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x4a19a4f5 dsa_devlink_resource_occ_get_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x5465e23d dsa_port_from_netdev +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x55a26dcb dsa_switch_shutdown EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x5928bba7 vid_is_dsa_8021q_rxvlan -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x6186909b dsa_tag_drivers_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x675bf822 dsa_tag_drivers_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x6a374ca1 dsa_devlink_resources_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x72fa6b4b dsa_tag_8021q_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x7bf44b7f dsa_dev_to_net_device -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x86e72c24 dsa_8021q_rcv -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x9192207c dsa_devlink_region_create +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x5cc7108f dsa_tag_drivers_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x611bb724 dsa_8021q_xmit +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x6574acfb dsa_port_get_phy_strings +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x766bd264 dsa_8021q_tx_vid +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x7dd55442 dsa_switch_suspend +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x8a36b9db dsa_switch_find +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x8d006fb9 dsa_tag_8021q_bridge_tx_fwd_offload +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x8e992868 dsa_tag_drivers_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x9398fb89 dsa_dev_to_net_device EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x9e59271d dsa_8021q_rx_source_port -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xa4070283 dsa_devlink_param_set -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xaa2a4325 dsa_port_phylink_mac_change -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xad00db83 dsa_switch_resume -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xaf120cde dsa_devlink_params_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xb6944d80 dsa_switch_suspend -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xb7c8eff1 dsa_tag_8021q_bridge_tx_fwd_unoffload -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xbd08eba7 dsa_port_get_phy_strings +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xa8790336 dsa_slave_dev_check +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xa989250c dsa_devlink_resource_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xae2c8392 dsa_enqueue_skb +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xb98f852e dsa_devlink_params_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xbd6b91ea dsa_devlink_port_region_create EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xbe3856fc dsa_8021q_bridge_tx_fwd_offload_vid EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc23e8d5f dsa_devlink_region_destroy -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc2fa610d dsa_slave_dev_check -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xcc8d9069 dsa_8021q_tx_vid -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xce4c7ee0 dsa_register_switch -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xd1117bbe dsa_devlink_port_region_create -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xdbfba412 dsa_enqueue_skb -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xddf3343c dsa_tag_8021q_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xde6325c5 dsa_switch_find -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xe120c7b3 dsa_devlink_resource_occ_get_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xe2db7853 dsa_port_get_phy_sset_count -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xeb1b0ba6 dsa_unregister_switch +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xd4b4dfc1 dsa_tag_8021q_bridge_tx_fwd_unoffload +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xdbaaafc4 dsa_8021q_rx_vid +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xe51f55f1 dsa_devlink_param_set EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf13e1803 vid_is_dsa_8021q -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf1a1c9c1 dsa_port_from_netdev -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf2018137 dsa_devlink_resource_occ_get_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf2c742ad dsa_port_get_phy_sset_count +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf53ba2a6 dsa_port_get_ethtool_phy_stats +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf5f1b039 dsa_port_phylink_mac_change EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf6f3b5c8 vid_is_dsa_8021q_txvlan -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xfd0ba03c dsa_devlink_param_get -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xfe6263f8 dsa_devlink_params_unregister +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x3ecc3916 ieee802154_hdr_peek EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x87e2553b ieee802154_max_payload -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x97e563f7 ieee802154_hdr_peek -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xc787d93c ieee802154_hdr_pull -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xd04ce968 ieee802154_hdr_push -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xf232349a ieee802154_hdr_peek_addrs -EXPORT_SYMBOL_GPL net/ife/ife 0x07510673 ife_decode -EXPORT_SYMBOL_GPL net/ife/ife 0x1a226297 ife_encode +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x935fa590 ieee802154_hdr_push +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x9afd98db ieee802154_hdr_peek_addrs +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xebeab2d0 ieee802154_hdr_pull +EXPORT_SYMBOL_GPL net/ife/ife 0x283f4d38 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 0xae901424 ife_decode EXPORT_SYMBOL_GPL net/ife/ife 0xe7888e98 ife_tlv_meta_encode -EXPORT_SYMBOL_GPL net/ipv4/esp4 0x0a8a423b esp_input_done2 -EXPORT_SYMBOL_GPL net/ipv4/esp4 0x150bcd6f esp_output_tail -EXPORT_SYMBOL_GPL net/ipv4/esp4 0x4ce2477f esp_output_head -EXPORT_SYMBOL_GPL net/ipv4/gre 0x0c980e7f gre_del_protocol -EXPORT_SYMBOL_GPL net/ipv4/gre 0xe99bc2d1 gre_add_protocol -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x0ee1c613 inet_diag_register -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x0f90c07e inet_diag_dump_one_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x4abfc508 inet_diag_msg_attrs_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x509d4968 inet_diag_dump_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x522c82a6 inet_diag_unregister -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x6034e063 inet_diag_find_one_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x72128514 inet_diag_bc_sk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x8021eaf6 inet_diag_msg_common_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x963eadb3 inet_sk_diag_fill -EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0x5530a3da gretap_fb_dev_create -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x0edb67b8 ip_tunnel_dellink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x3a64567b ip_tunnel_encap_setup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x54455007 ip_tunnel_setup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x5b9a6106 ip_tunnel_changelink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x635bc8e2 ip_tunnel_siocdevprivate -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x6ad8947e ip_md_tunnel_xmit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x6d647238 ip_tunnel_ctl -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x6f4f62a0 ip_tunnel_xmit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x77ec4d30 ip_tunnel_delete_nets -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x945545ac __ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xabc1f04d ip_tunnel_rcv -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xb0522774 ip_tunnel_uninit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xbed13d01 ip_tunnel_init -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xda59be18 ip_tunnel_newlink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xe611a4bf ip_tunnel_lookup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xe731192d ip_tunnel_init_net -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xfde1d7f1 ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0x6d029e3b arpt_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0x68d04ff6 ipt_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x4fddb2e2 nf_defrag_ipv4_disable -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x8b1010bd nf_defrag_ipv4_enable -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0x81c8d18f nf_dup_ipv4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x13d57eca nf_reject_skb_v4_unreach -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x2f89e04c nf_reject_ip_tcphdr_get -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x3015228e nf_reject_iphdr_put -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x381594d1 nf_send_unreach -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x5defbcbd nf_reject_skb_v4_tcp_reset -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xbf073870 nf_send_reset -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xde26eca3 nf_reject_ip_tcphdr_put -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_socket_ipv4 0xe5fa0467 nf_sk_lookup_slow_v4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x073116ab nf_tproxy_laddr4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x344e8df8 nf_tproxy_handle_time_wait4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x99f56961 nf_tproxy_get_sock_v4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0x8fe494be nft_fib4_eval -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0xbbc1fd83 nft_fib4_eval_type -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x2dc4645e tcp_vegas_init -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x2f2b1afc tcp_vegas_get_info -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x53de7b2a tcp_vegas_pkts_acked -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xa214f006 tcp_vegas_cwnd_event -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xfa2622ee tcp_vegas_state -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x293f6475 udp_tunnel_drop_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x408bceec udp_tunnel_notify_del_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x6f36319e udp_tunnel_notify_add_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x778424f3 udp_tunnel_sock_release -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x7b9418ff udp_tunnel_push_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xb1ec1bbe udp_tunnel_xmit_skb -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xb402f7ac setup_udp_tunnel_sock -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xe21154ee udp_tun_rx_dst -EXPORT_SYMBOL_GPL net/ipv6/esp6 0x66eec982 esp6_output_head -EXPORT_SYMBOL_GPL net/ipv6/esp6 0x79ec67bf esp6_output_tail -EXPORT_SYMBOL_GPL net/ipv6/esp6 0xcdb15ca9 esp6_input_done2 -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x7d2c9d67 ip6_tnl_xmit_ctl -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x8c4ba267 ip6_tnl_rcv_ctl -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x93ec8a2c ip6_tnl_encap_setup -EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x45e82afb udp_tunnel6_xmit_skb -EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x59658044 udp_sock_create6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0x4f1893d9 ip6t_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x2863b27e nf_ct_frag6_gather -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x8d6b1d0a nf_defrag_ipv6_disable -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xbfbf0656 nf_defrag_ipv6_enable -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0xa2e10686 nf_dup_ipv6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x1584e7fb nf_reject_ip6_tcphdr_put -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x22a156e6 nf_send_reset6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x2a6ce3d8 nf_reject_ip6_tcphdr_get -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x7e77a730 nf_reject_ip6hdr_put -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xc83b4791 nf_reject_skb_v6_unreach -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xf203a426 nf_send_unreach6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xf92e5cea nf_reject_skb_v6_tcp_reset -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_socket_ipv6 0x629da50e nf_sk_lookup_slow_v6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x13fe7cfb nf_tproxy_handle_time_wait6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x28e46805 nf_tproxy_laddr6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0xac977cb4 nf_tproxy_get_sock_v6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0x2a002e7a nft_fib6_eval_type -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0xaed281d7 nft_fib6_eval -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x07c392b2 l2tp_session_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x0bd1af5c l2tp_session_register -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x1782669a l2tp_tunnel_get_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x1deea4ab l2tp_session_get_by_ifname -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x207cb2fe l2tp_tunnel_register -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x254a4f32 l2tp_session_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x37259dca l2tp_tunnel_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x4371c516 l2tp_tunnel_get_session -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x61d4ce75 l2tp_sk_to_tunnel -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x62daa2bc l2tp_session_get_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x6327e9f1 l2tp_tunnel_inc_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x69e004d3 l2tp_session_dec_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x8580d60c l2tp_tunnel_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x8e17c59d l2tp_recv_common -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x9c135a37 l2tp_xmit_skb -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb3a6f7f9 l2tp_tunnel_get -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xc02487d4 l2tp_tunnel_dec_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xc624b6cd l2tp_session_get -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd1f8e9c5 l2tp_udp_encap_recv -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd698be42 l2tp_session_inc_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xe3c57ab7 l2tp_session_set_header_len -EXPORT_SYMBOL_GPL net/l2tp/l2tp_ip 0x598ba065 l2tp_ioctl +EXPORT_SYMBOL_GPL net/ipv4/esp4 0xa4660879 esp_output_head +EXPORT_SYMBOL_GPL net/ipv4/esp4 0xd087881a esp_output_tail +EXPORT_SYMBOL_GPL net/ipv4/esp4 0xd0f884dd esp_input_done2 +EXPORT_SYMBOL_GPL net/ipv4/gre 0x04c62650 gre_del_protocol +EXPORT_SYMBOL_GPL net/ipv4/gre 0x4895b10d gre_add_protocol +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x03e5fb98 inet_diag_unregister +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x15c9ea7b inet_diag_msg_attrs_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x25da1e2c inet_diag_find_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x4b8c5476 inet_diag_bc_sk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x4ee85804 inet_diag_msg_common_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x69934c0f inet_diag_dump_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x7b2e6854 inet_diag_register +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x8aff8137 inet_sk_diag_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x8eb6b460 inet_diag_dump_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0xc85cf9ad gretap_fb_dev_create +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x0ff18a41 ip_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x24fb9167 __ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x2d191c69 ip_tunnel_init +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x3a012680 ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x48fd5f51 ip_tunnel_dellink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x5229cb34 ip_md_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x58f6ddf3 ip_tunnel_uninit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x6bbb9467 ip_tunnel_changelink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x79746306 ip_tunnel_ctl +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x7ede29b2 ip_tunnel_siocdevprivate +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x9a1b8c9b ip_tunnel_newlink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xae707e0d ip_tunnel_encap_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xb48630b9 ip_tunnel_delete_nets +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xc1c4ae23 ip_tunnel_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xc78eabee ip_tunnel_lookup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xca3476d7 ip_tunnel_rcv +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xdde38bfe ip_tunnel_init_net +EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0x2f5c3e0b arpt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0xa7ee2df1 ipt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0xc7674ef1 nf_defrag_ipv4_disable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0xfcd16350 nf_defrag_ipv4_enable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0xd7fe85a8 nf_dup_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x3467fe2d nf_send_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x3f077454 nf_reject_iphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x5988cfdb nf_reject_ip_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x6f9bf1fd nf_reject_ip_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x9ac25b12 nf_reject_skb_v4_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x9fb9a46b nf_reject_skb_v4_tcp_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xd5cd23da nf_send_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_socket_ipv4 0x8112dc32 nf_sk_lookup_slow_v4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x21b4f708 nf_tproxy_get_sock_v4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x32df8b71 nf_tproxy_handle_time_wait4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0xf9eb7e42 nf_tproxy_laddr4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0x940dbea2 nft_fib4_eval +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0xadce5a90 nft_fib4_eval_type +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x04a57f76 tcp_vegas_state +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x6209fb65 tcp_vegas_get_info +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xab12ed78 tcp_vegas_init +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xcb327f3e tcp_vegas_cwnd_event +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xd6c722a5 tcp_vegas_pkts_acked +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x39ce5211 udp_tunnel_notify_del_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x69d385a5 udp_tunnel_notify_add_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x981384f9 udp_tunnel_xmit_skb +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x993eab0e udp_tunnel_sock_release +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x9ba14eab udp_tunnel_push_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xc04e0e21 udp_tunnel_drop_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xd47b95b7 setup_udp_tunnel_sock +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xda3ad478 udp_tun_rx_dst +EXPORT_SYMBOL_GPL net/ipv6/esp6 0xa9ea8a02 esp6_output_head +EXPORT_SYMBOL_GPL net/ipv6/esp6 0xeb40664e esp6_output_tail +EXPORT_SYMBOL_GPL net/ipv6/esp6 0xfe94f452 esp6_input_done2 +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x667ea21c ip6_tnl_encap_setup +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xc47f14ea ip6_tnl_rcv_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xdeec223d ip6_tnl_xmit_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x2af28229 udp_tunnel6_xmit_skb +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0xcb471e29 udp_sock_create6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0xe6819466 ip6t_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x15c60d00 nf_defrag_ipv6_disable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x4b1ca232 nf_ct_frag6_gather +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xd04b382b nf_defrag_ipv6_enable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0x3ebcb88b nf_dup_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x1fadb102 nf_reject_skb_v6_unreach +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x22861355 nf_reject_ip6hdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x4524ccde nf_send_unreach6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x46eb6c3d nf_send_reset6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x9974fa00 nf_reject_skb_v6_tcp_reset +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xac57766b nf_reject_ip6_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xaf12058d nf_reject_ip6_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_socket_ipv6 0x06757d5b nf_sk_lookup_slow_v6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x6913f27b nf_tproxy_get_sock_v6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0xad115cbc nf_tproxy_handle_time_wait6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0xba64025f nf_tproxy_laddr6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0x134450cc nft_fib6_eval_type +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0xea49b956 nft_fib6_eval +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x0a99357e l2tp_tunnel_get +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x0e86663a l2tp_tunnel_register +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x1f448b22 l2tp_tunnel_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x34d2e2d9 l2tp_tunnel_inc_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x4fb133de l2tp_tunnel_dec_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x573b2d3e l2tp_recv_common +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x632283da l2tp_session_get_by_ifname +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x66823b05 l2tp_tunnel_get_session +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x7f28541f l2tp_session_set_header_len +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x844099db l2tp_tunnel_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x8bfacda6 l2tp_session_dec_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x8e0a038e l2tp_session_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xa34988b9 l2tp_session_inc_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xa8e400a3 l2tp_session_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb237cd82 l2tp_session_register +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb4235b9e l2tp_xmit_skb +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb813c60e l2tp_session_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xc8236d17 l2tp_session_get +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xe5e04240 l2tp_sk_to_tunnel +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf2e4f0e4 l2tp_udp_encap_recv +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xfe5dc2f1 l2tp_tunnel_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_ip 0x35d75ac1 l2tp_ioctl EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops -EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0xe86eea10 l2tp_nl_register_ops -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x0069412b ieee80211_find_sta_by_ifaddr -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x178be34d ieeee80211_obss_color_collision_notify -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x1c16d09e ieee80211_gtk_rekey_add -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x48c9980d ieee80211_calc_rx_airtime -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x4a4532d2 ieee80211_ready_on_channel -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x51258991 ieee80211_resume_disconnect +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x40eed5e6 l2tp_nl_register_ops +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x0a03754d ieee80211_vif_to_wdev +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x17abd0e6 ieee80211_remain_on_channel_expired +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x4d1d0d3c ieee80211_resume_disconnect EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x5250cf98 ieee80211_tkip_add_iv -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x525fe230 wdev_to_ieee80211_vif -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x548bc9d0 ieee80211_request_smps EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x59c13bed ieee80211_key_mic_failure -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x6061854c ieee80211_iterate_interfaces -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x608bfdc0 ieee80211_vif_to_wdev -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x73363b81 ieee80211_iter_chan_contexts_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x8a5ac5c4 ieee80211_gtk_rekey_notify -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x8fbf619a ieee80211_color_change_finish -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x9d34952c ieee80211_calc_tx_airtime +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x5cc3ca35 ieee80211_ready_on_channel +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x5ce445d5 ieee80211_ave_rssi +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x5d8c9774 ieee80211_calc_tx_airtime +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7491179b ieee80211_iterate_active_interfaces_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x833f0438 ieeee80211_obss_color_collision_notify +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x97b26a54 ieee80211_update_mu_groups EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xa1247034 ieee80211_remove_key +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xa3b6e0b8 wdev_to_ieee80211_vif EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xa4b2b77e ieee80211_key_replay -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xc54d7276 ieee80211_iterate_stations_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xcb14d486 ieee80211_iterate_active_interfaces_mtx -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd328ac67 ieee80211_remain_on_channel_expired +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xa67b2bf9 ieee80211_iterate_stations_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xa7df5a81 ieee80211_calc_rx_airtime +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xa8c0a555 ieee80211_gtk_rekey_add +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xbac2f3cf ieee80211_color_change_finish +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xc73204ce ieee80211_iter_chan_contexts_atomic EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd8e09da4 ieee80211_set_key_rx_seq -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xda1ba8f6 ieee80211_iterate_active_interfaces_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xde474338 ieee80211_ave_rssi -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf0a583dc ieee80211_update_mu_groups -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x0126f2c6 mpls_dev_mtu -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x36de95f9 nla_put_labels +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xdba00dc2 ieee80211_find_sta_by_ifaddr +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xdc024697 ieee80211_iterate_active_interfaces_mtx +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xe5fb0456 ieee80211_gtk_rekey_notify +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf5a9e847 ieee80211_request_smps +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xfa513e97 ieee80211_iterate_interfaces +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x1a550fd4 nla_put_labels +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x45ea60f7 mpls_dev_mtu EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x7670b536 nla_get_labels -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xafd17194 mpls_pkt_too_big -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xcb587c48 mpls_output_possible -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xed9f312e mpls_stats_inc_outucastpkts +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x9ae434bf mpls_pkt_too_big +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xbeb1b963 mpls_output_possible +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xe3a3ef8c mpls_stats_inc_outucastpkts EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x22d966c6 ip_set_range_to_cidr -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x23e8384e ip_set_elem_len -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x32f5d0b9 ip_set_test +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x293a342c ip_set_put_flags EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x3bae41f7 ip_set_put_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x50123aea ip_set_get_ip6_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x5c457f2a ip_set_type_unregister EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6344eaf6 ip_set_alloc -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6aaf37ba ip_set_del -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x74a3362b ip_set_nfnl_put +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x68bda6a1 ip_set_get_byname +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6960ecb3 ip_set_init_comment +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6d34769f ip_set_nfnl_get_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6d81afb5 ip_set_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x75e76852 ip_set_type_register EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7924b6de ip_set_hostmask_map EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x81fff2d1 ip_set_netmask_map -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9e4d5634 ip_set_match_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x8a8ff758 ip_set_put_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x8d622965 ip_set_name_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x8e2191c5 ip_set_test +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x8fbe5163 ip_set_put_extensions EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9e98722b ip_set_get_ipaddr6 -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9fbc858b ip_set_extensions EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa293f8a6 ip_set_get_ipaddr4 -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa619e3cc ip_set_get_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xaec6caf7 ip_set_init_comment -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xaf3a8f9e ip_set_nfnl_get_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xb06fc173 ip_set_put_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xc2873744 ip_set_add -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xd52b785e ip_set_type_unregister -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xd555ee6c ip_set_name_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xd999d23e ip_set_type_register -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xe84f387b ip_set_put_flags -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf5f673ec ip_set_get_ip4_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xff4c9e2d ip_set_get_byname -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x3d036323 ip_vs_conn_in_get_proto -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x68ce75cd ip_vs_conn_out_get_proto -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xc75dea48 register_ip_vs_pe -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xd452a05b unregister_ip_vs_pe -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x0c271ced nf_conncount_gc_list +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xabfec219 ip_set_elem_len +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xaf6c5609 ip_set_get_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xb65be76f ip_set_del +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xb6e9bf04 ip_set_add +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xc2516d43 ip_set_match_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xd903a533 ip_set_nfnl_put +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xde6f4399 ip_set_get_ip6_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf3a2a519 ip_set_get_ip4_port +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x22ec75c2 ip_vs_conn_out_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xc0a62d47 ip_vs_conn_in_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xc9c315f2 register_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xdd154db3 unregister_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x1d3d5e6b nf_conncount_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x1e3ba046 nf_conncount_count EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x268a4802 nf_conncount_cache_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x33ca5e71 nf_conncount_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x566373fc nf_conncount_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x75d73e5e nf_conncount_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x86499775 nf_conncount_count +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x810610d5 nf_conncount_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x9113e5dc nf_conncount_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xb6fbd3bd nf_conncount_gc_list EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xbe03a217 nf_conncount_list_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0311824a nf_ct_unlink_expect_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x034065a3 nf_ct_bridge_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0496174f nf_ct_seq_offset +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0901c539 nf_connlabels_put EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0bc00f80 nf_nat_helper_try_module_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0e6c1cfd nf_ct_helper_expectfn_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x11a921b4 nf_ct_seqadj_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x129b3242 nf_ct_netns_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1a33b991 nf_ct_helper_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1e25648f nf_conntrack_count -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x20ca7956 nf_ct_helper_log -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x21b8c132 nf_ct_set_timeout -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x224083e2 nf_ct_kill_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x271a8d44 __nf_ct_expect_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x166bd929 nf_ct_expect_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x16fbecc2 nf_conntrack_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x170d30d1 nf_ct_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x17d6fea8 nf_connlabels_replace +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x19e7da23 nf_ct_expect_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1a634f03 nf_ct_deliver_cached_events +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x225d18ea nf_ct_helper_expectfn_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2351fd49 nf_ct_expect_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 0x28f68db2 nf_confirm -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x29cf488f nf_conntrack_hash_check_insert -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2f830de8 nf_connlabels_replace -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x31b848a8 nf_conntrack_register_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x363fb16c nf_ct_get_tuplepr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3656b0e1 nf_ct_get_id -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x399f6b5d nf_ct_helper_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3cbb8853 nf_conntrack_eventmask_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3e84869d nf_ct_iterate_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x47097f80 nf_conntrack_helpers_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2b0b5360 nf_conntrack_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2c7355ad nf_ct_set_auto_assign_helper_warned +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2d64aee0 nf_conntrack_hash_check_insert +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x30fc4cc5 nf_conntrack_alter_reply +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3120f7a4 nf_conntrack_helper_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x33e8ee02 nf_ct_delete +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x36187542 nf_ct_acct_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3a4644cd nf_ct_kill_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3c0a9b7f nf_nat_helper_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3cbe026f nf_ct_helper_log +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3ec5f959 nf_connlabels_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4704a7d9 nf_ct_port_tuple_to_nlattr EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x473e385d nf_conntrack_lock -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x485bc1ac nf_conntrack_helper_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x49487a59 nf_conntrack_find_get EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4ea258d2 nf_conntrack_expect_lock -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4fd6b686 nf_ct_extend_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x526f3854 nf_ct_untimeout -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5390ad0a nf_ct_timeout_put_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x57f1b6f4 nf_ct_expect_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5861c54e __nf_ct_refresh_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5bcf3405 nf_conntrack_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6027deaf nf_ct_l4proto_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x64a4abea nf_ct_bridge_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x686e4a35 nf_ct_helper_expectfn_find_by_symbol +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5bfc9f5b nf_ct_helper_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5cee8685 nf_ct_seqadj_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x61938ef1 __nf_conntrack_helper_find EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x693c3961 nf_ct_helper_hash -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x696dd8ec nf_ct_tmpl_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6f5e1d03 nf_ct_l4proto_log_invalid -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7b1b7dd0 nf_ct_helper_expectfn_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7f829e67 nf_ct_seq_offset -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x83b613c6 nf_conntrack_helper_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8419d002 nf_conntrack_unregister_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8799b91e nf_ct_unexpect_related -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8a3ac10b nf_ct_delete +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6d5fa697 nf_conntrack_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6f186763 __nf_ct_try_assign_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6f743659 nf_l4proto_log_invalid +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x72586f04 nf_conntrack_helper_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x75403fc8 nf_ct_tcp_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x777933dd nf_nat_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7aaaaf92 nf_conntrack_in +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7fc90d07 nf_ct_tmpl_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x812e8ca2 nf_conntrack_count +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x815dbd41 nf_conntrack_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x85cbf66f nf_ct_get_id +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8940fd0e nf_conntrack_helpers_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8a2c1a9e nf_conntrack_tuple_taken +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8afc65eb __nf_ct_refresh_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8c6be2a5 nf_conntrack_helpers_register EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8c6e11f4 nf_conntrack_locks -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8f492f85 nf_ct_expect_related_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8fac5a38 nf_ct_tmpl_alloc EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ffe7e89 nf_conntrack_htable_size -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9482989d nf_ct_seqadj_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9567529a nf_ct_iterate_cleanup_net -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x97bb03e1 nf_ct_unconfirmed_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x991240d4 nf_ct_expect_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x99602c85 nf_ct_gre_keymap_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9ac4524d nf_ct_expect_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9e76df4e nf_ct_helper_expectfn_find_by_name -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa201c202 nf_ct_bridge_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa2d61f86 nf_ct_port_tuple_to_nlattr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa3486973 nf_ct_netns_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa7c628ce nf_conntrack_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x95223e4a nf_ct_gre_keymap_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x96077510 nf_nat_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x96e95a55 nf_ct_l4proto_log_invalid +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x97ac15d6 nf_ct_unexpect_related +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa20412d0 nf_ct_timeout_find_get_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa7c873b3 nf_ct_get_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xaf6fd8fc nf_ct_expect_related_report EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xafbd6cf5 nf_ct_port_nlattr_to_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb1508cb9 nf_ct_extend_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb18ac229 nf_ct_expect_iterate_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb33ffefb __nf_conntrack_helper_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb433e1f6 nf_conntrack_tuple_taken -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb4b523c1 nf_ct_tcp_seqadj_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb5cf073a nf_conntrack_alter_reply -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb5e95863 __nf_ct_try_assign_helper -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbc2ae034 nf_connlabels_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbecda94d nf_ct_remove_expect +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb219e5a9 nf_ct_iterate_cleanup_net +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb360f71a nf_ct_expect_iterate_net +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb57a8c4a nf_conntrack_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbd26240a nf_ct_set_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbd32d937 nf_ct_gre_keymap_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbd8e0f28 nf_ct_expect_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbd949810 nf_ct_bridge_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc090430b nf_conntrack_eventmask_report EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc18ac88d nf_ct_expect_hsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc39045f2 nf_ct_destroy_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc398b781 nf_ct_remove_expectations EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc40f284c nf_ct_helper_hsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc45c3deb nf_ct_tmpl_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc61ec2ab nf_nat_helper_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xca837097 nf_ct_expect_iterate_net -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcb0a0802 nf_connlabels_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcc85d49e nf_ct_destroy_timeout -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xccc958d9 nf_conntrack_in -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd061ed03 nf_ct_gre_keymap_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd163c6eb nf_conntrack_helper_try_module_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd2c25fa9 nf_ct_unlink_expect_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc7a9f74e nf_ct_extend_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc9912288 nf_ct_helper_expectfn_find_by_symbol +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd179fb6e nf_ct_expect_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd19bfe19 nf_ct_helper_expectfn_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd1b8ff33 nf_ct_helper_expectfn_find_by_name +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd1e1a971 nf_ct_netns_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd3b3562a __nf_ct_expect_find EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd505c3e0 nf_ct_port_nlattr_tuple_size -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd61d6a3d nf_ct_deliver_cached_events -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd8583b75 nf_nat_helper_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdaf56bb5 nf_ct_timeout_find_get_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdbdc3f48 nf_ct_seq_adjust -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdcd98a34 nf_conntrack_helper_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdd9c558c nf_ct_expect_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xde2ef24d __nf_conntrack_confirm -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xde63b3f5 nf_conntrack_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd7158844 nf_ct_timeout_put_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd7490abe __nf_conntrack_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdc7b6692 nf_ct_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdeb567f3 nf_ct_extend_unregister EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdf0aed48 nf_ct_port_nla_policy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe13b38ad nf_nat_helper_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe28a3ea7 nf_l4proto_log_invalid -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe2c85f63 nf_ct_remove_expectations -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe7f47ca1 nf_conntrack_helpers_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xea69e476 nf_ct_acct_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdfa24e44 nf_ct_iterate_destroy EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xec8beba6 nf_ct_expect_hash +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf0cc18e3 nf_conntrack_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf221cd96 nf_ct_untimeout EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf4de303e nf_ct_unconfirmed_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf50815a8 nf_ct_seq_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf5278148 nf_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf726b47f nf_ct_helper_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf892d39d nf_ct_netns_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf98b1b2c nf_ct_remove_expect EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfe731af8 nf_ct_invert_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0xa7f8eacd nf_nat_amanda_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0x6fe5e8b6 nf_conntrack_broadcast_help -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0xcd658b1a nf_nat_ftp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x0c84119f nat_rtp_rtcp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x1bf346a0 set_sig_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x2d14871c set_h225_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x581fe2fe nat_q931_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x8497d15e set_h245_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xc9a035ed nat_callforwarding_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xd38ec023 get_h225_addr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xd6e253e4 nat_h245_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xda7a83c3 set_ras_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xdc57dc81 nat_t120_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0xcbe9837f nf_nat_irc_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x215a8ee8 nf_nat_pptp_hook_exp_gre -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x3acc9b9a nf_nat_pptp_hook_expectfn -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x95eefdd2 nf_nat_pptp_hook_outbound -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xc403ac7d nf_nat_pptp_hook_inbound -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x14659d79 ct_sip_get_sdp_header -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x223fac94 ct_sip_get_header -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x88589338 ct_sip_parse_address_param -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x8f140d65 ct_sip_parse_numerical_param -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xa912d761 nf_nat_sip_hooks -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xd5e6c144 ct_sip_parse_header_uri -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xffecb9fc ct_sip_parse_request -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0x13ae05ae nf_nat_snmp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0x6672379e nf_nat_tftp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x2e6b5b54 nf_fwd_netdev_egress -EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0xb74ec835 nf_dup_netdev_egress -EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0xf7f65345 nft_fwd_dup_netdev_offload -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x1aa0d38f nf_flow_table_free -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x2a936b9d nf_flow_table_init -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x2b7b5835 flow_offload_teardown -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x426d8a65 flow_offload_add -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x53fc4dc3 nf_flow_dnat_port -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x66107cee flow_offload_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x73cc76a7 nf_flow_snat_port -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x808e3c69 nf_flow_rule_route_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x8ab19ff9 flow_offload_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x8fe43de9 nf_flow_rule_route_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x95db6d4b nf_flow_table_offload_setup -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x9b768ad7 nf_flow_offload_ipv6_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x9decd139 flow_offload_refresh -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xa76e1ed7 flow_offload_free -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xaef57071 flow_offload_route_init -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xb37bdd02 nf_flow_table_cleanup -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xe0c30164 nf_flow_offload_ip_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x0180b65f nf_nat_inet_unregister_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x08ccebb5 nf_nat_ipv6_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0x43878e20 nf_nat_amanda_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0x045b4c23 nf_conntrack_broadcast_help +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0x39370f22 nf_nat_ftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x0066d64b set_ras_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x0503b4d6 nat_h245_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x8a153360 set_h245_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xa1d3860b nat_callforwarding_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xb1ddf2c9 nat_t120_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xb23f99cf nat_rtp_rtcp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xcbde274a set_h225_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xcdee32a2 set_sig_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xd15c169a nat_q931_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xefd7a423 get_h225_addr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0x9e61ef38 nf_nat_irc_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x8b0b0d43 nf_nat_pptp_hook_expectfn +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x973f35cb nf_nat_pptp_hook_outbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xa905ca83 nf_nat_pptp_hook_exp_gre +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xfdc2aebf nf_nat_pptp_hook_inbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x0cc45c6d ct_sip_parse_request +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x1f0c56e1 ct_sip_parse_numerical_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x25fea850 nf_nat_sip_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x462f26ad ct_sip_parse_header_uri +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xa5acc33e ct_sip_parse_address_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xd4d7fd06 ct_sip_get_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xf5d4934d ct_sip_get_sdp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0xee5a27a1 nf_nat_snmp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0x7a6f268f nf_nat_tftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x28ea18ce nf_dup_netdev_egress +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0xa2eba7b1 nft_fwd_dup_netdev_offload +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0xf90f8d6e nf_fwd_netdev_egress +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x0be90054 flow_offload_refresh +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x1275edd3 nf_flow_snat_port +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x2212993c nf_flow_rule_route_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x2347e934 nf_flow_table_cleanup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x2f4e0cee flow_offload_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x3ac0940a nf_flow_offload_ipv6_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x6b181519 nf_flow_offload_ip_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x72861f5f flow_offload_add +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x82c0d76c flow_offload_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x93692876 flow_offload_teardown +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x96e5d6d8 nf_flow_dnat_port +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xaba9299f nf_flow_table_offload_setup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xb3959823 flow_offload_free +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xcf79fbf0 nf_flow_table_free +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xd0489aa0 nf_flow_table_init +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xd1c3c797 nf_flow_rule_route_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xeca153db flow_offload_route_init +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x1d0d5dd3 nf_nat_ipv6_register_fn EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3bc17c49 nf_nat_masquerade_inet_register_notifiers -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3e23d530 nf_nat_masquerade_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3fc91a2b nf_nat_alloc_null_binding -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x5e3a8ded nf_nat_ipv6_unregister_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x6b17c486 nf_nat_inet_register_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x969d0d0d nf_nat_redirect_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xa5dbf33a nf_ct_nat_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xb173f004 nf_nat_redirect_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xb4b0da5a nf_nat_ipv4_register_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xb4b281e0 nf_nat_icmpv6_reply_translation -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xb8da3f9a nf_nat_masquerade_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xbbb90d70 nf_nat_inet_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd02b3635 nf_nat_icmp_reply_translation -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd4d030ee nf_nat_packet -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd602de88 nf_nat_ipv4_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x47044c7e nf_nat_masquerade_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x543dae68 nf_nat_ipv6_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x57e606de nf_nat_icmpv6_reply_translation +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x7499f2fd nf_ct_nat_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x90849a14 nf_nat_redirect_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x92553c2a nf_nat_packet +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xb8031984 nf_nat_inet_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xbb1f188f nf_nat_ipv4_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd076457c nf_nat_inet_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd4c6f500 nf_nat_alloc_null_binding +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd9974347 nf_nat_ipv4_register_fn EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd9c25654 nf_nat_masquerade_inet_unregister_notifiers -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x04d7c32b synproxy_recv_client_ack_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x0a752683 nf_synproxy_ipv6_init -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x0ff2713a synproxy_send_client_synack +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xe27cf704 nf_nat_icmp_reply_translation +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xe73a1856 nf_nat_masquerade_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xed686de0 nf_nat_redirect_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xefb55ef7 nf_nat_inet_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x08823005 ipv4_synproxy_hook EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x1f099794 synproxy_init_timestamp_cookie -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x4fb693d0 ipv6_synproxy_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x550e01b0 nf_synproxy_ipv4_fini -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x61b9527f synproxy_parse_options -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x8fa80aab nf_synproxy_ipv4_init -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x9b7d711b synproxy_recv_client_ack -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xc76d30a4 ipv4_synproxy_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x360cf92c synproxy_recv_client_ack +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x41f9ffa3 synproxy_parse_options +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x6c7788bc nf_synproxy_ipv4_fini +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x6f517f79 synproxy_send_client_synack_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x7ea088f3 nf_synproxy_ipv6_fini +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x8759ca28 nf_synproxy_ipv4_init +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x958eca67 nf_synproxy_ipv6_init +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xb280d22d synproxy_recv_client_ack_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xc3fa3135 ipv6_synproxy_hook EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xca9fc082 synproxy_net_id -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xd0d32d98 nf_synproxy_ipv6_fini -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xd21953e8 synproxy_send_client_synack_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xd6dd1ad8 synproxy_send_client_synack EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x00fcb68c nft_chain_validate_hooks -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0276972e nft_meta_set_eval -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x043f60ec nft_set_catchall_gc -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0527c6fb nft_obj_notify +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0188abc6 nft_request_module EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x06c6ca47 nft_meta_policy -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0a273f92 nft_obj_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0ea4015b nft_request_module -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1337afa8 nft_register_flowtable_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x19822751 nft_unregister_flowtable_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1a8dffcd nft_meta_get_dump -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1bdb6abb nft_data_dump -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1d896047 nft_meta_get_init -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2c3c1195 nf_tables_bind_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0add53c5 nft_register_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x24246df5 nf_tables_deactivate_flowtable EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3251d762 nf_tables_trans_destroy_flush_work -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x386f8740 nf_tables_deactivate_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x44a30777 nft_unregister_obj -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x48b2ba75 nft_unregister_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3bdbad00 nft_set_elem_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3c33f2fa nft_dump_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3cbfc8b5 nft_unregister_flowtable_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x46a8bf43 nft_data_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x495db9cc nft_meta_set_validate +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4a8062c2 nft_meta_get_eval EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4aea0694 nft_chain_validate_dependency -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4cf6885f nft_chain_validate -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x558d8597 nft_flowtable_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x61e5b7b8 nft_do_chain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x64a71f7b nft_set_lookup_global -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6e0e34d0 nft_meta_set_dump -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x76fda7c9 nft_meta_set_validate -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x77411964 nft_meta_set_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9f78d784 __nft_release_basechain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa48dbc47 nft_parse_register_store -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa785842f nft_dump_register -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa853eab6 nft_register_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4fc28eea nft_register_flowtable_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x54b6d56f nft_obj_notify +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5914ab85 nft_register_obj +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5ebc1ec9 nft_set_lookup_global +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5f906d53 nft_flowtable_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x77eb2e00 nft_set_catchall_gc +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7a4d61cb nft_obj_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x844235c7 nf_tables_bind_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x91765e60 nf_tables_deactivate_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9cd801e3 nft_meta_set_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa3b785eb __nft_release_basechain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa8043667 nft_unregister_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa9371778 nft_meta_get_dump EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa9ffc821 nft_trace_enabled -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xac080957 nft_register_expr -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc5d5dae4 nft_data_init -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc6904baf nft_set_catchall_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd539f502 nft_meta_set_init -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xdc1db262 nft_set_elem_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xaeb78278 nft_parse_register_store +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb3fbd70a nft_meta_set_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc4da8575 nft_do_chain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc7777464 nft_set_catchall_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc84e44db nft_data_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcd5437cd nft_unregister_obj +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd9c3261a nf_tables_destroy_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xde35e1fb nft_register_expr EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xde57b5f5 nft_parse_u32_check -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe0df669e nf_tables_deactivate_flowtable EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe2b8cc13 nft_parse_register_load -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xed894ddf nft_register_obj -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xee5783ba nft_meta_get_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe8989049 nft_unregister_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe8ca9760 nft_meta_set_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf0614c89 nft_chain_validate +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf59f38a8 nft_meta_get_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf60a623e nft_meta_set_destroy EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf7738411 nft_data_release -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xfa38fbac nf_tables_destroy_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xfc02bdf1 nft_unregister_expr -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x0e63196f nfnetlink_subsys_register -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x438173ce nfnetlink_subsys_unregister +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x493f5b2b nfnetlink_send +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5933db74 nfnetlink_subsys_register EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x746ee0d7 nfnetlink_send -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x829e56e8 nfnetlink_has_listeners -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x98bec536 nfnetlink_broadcast -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xc43b552c nfnetlink_unicast -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xd699081a nfnetlink_set_err +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x73f44015 nfnetlink_unicast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xa69ff0f3 nfnetlink_broadcast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xb8b7c977 nfnetlink_set_err +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xd097f40b nfnetlink_has_listeners EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x2477c071 nfnl_acct_overquota -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x5c024e4d nfnl_acct_find_get -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x96251a2d nfnl_acct_update +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xec3bb4c6 nfnetlink_subsys_unregister +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x07a4d7d3 nfnl_acct_overquota +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x1e1f0a12 nfnl_acct_update +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbcaaad93 nfnl_acct_find_get 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 0xa213b80d nf_osf_match -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0xb79ccaa6 nf_osf_find -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x0a9f5c82 nft_fib_validate -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x4a6df58b nft_fib_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x8bd9a6a9 nft_fib_store_result -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xa99db571 nft_fib_init +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0xefe337be nf_osf_match +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0xf5a3af1e nf_osf_find +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x8beed541 nft_fib_init +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x955095ef nft_fib_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xd1fd7698 nft_fib_store_result +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xf30965d7 nft_fib_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x0d2bce93 nft_reject_init EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x1de558c1 nft_reject_icmpv6_code -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x2f2daa25 nft_reject_validate EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x6081751d nft_reject_policy -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x7e110180 nft_reject_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xa196b145 nft_reject_init +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x6ceef3e7 nft_reject_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xa0d1a79a nft_reject_validate EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xe2c84666 nft_reject_icmp_code -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x0c603eb7 xt_request_find_target -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x15dcdd47 xt_target_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x180767ac xt_register_template -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3b291ee0 xt_check_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x2fcb2230 xt_unregister_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x31bd74ab xt_request_find_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x38acbc17 xt_proto_fini EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3f1ef70a xt_tee_enabled -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x4364bcf4 xt_table_unlock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x460d016f xt_find_table_lock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x463ec5f8 xt_replace_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x522ab654 xt_register_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x529fa4ea xt_match_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7304f824 xt_check_match -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7868d36d xt_request_find_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x63b2885d xt_replace_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7b0df110 xt_unregister_template 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 0x90918181 xt_unregister_template +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x80d00804 xt_register_template +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x84c3abbd xt_request_find_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x8e53788e xt_table_unlock EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9c995c69 xt_percpu_counter_alloc -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa9b3cded xt_request_find_table_lock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xae78c813 xt_hook_ops_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9f009e7a xt_hook_ops_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa54662a4 xt_match_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa9180f76 xt_request_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xad53ff64 xt_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbd63230d xt_register_table EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbfacb837 xt_percpu_counter_free -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd97d1485 xt_proto_init +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc73b3d0e xt_proto_init +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xcd19598a xt_check_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xceb6da19 xt_check_target EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd9bb821b xt_copy_counters EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xddf68fc6 xt_find_revision -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xfa692be4 xt_unregister_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xfc818a11 xt_proto_fini -EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0xdb0a0d01 xt_rateest_put -EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0xe10e59f3 xt_rateest_lookup -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x6be76727 nci_spi_send -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xb78b8ef0 nci_spi_read -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xeab83a1d nci_spi_allocate_spi -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x09217ee9 nci_uart_register -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x3d4a1dc6 nci_uart_set_config -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xfa4c4bbe nci_uart_unregister -EXPORT_SYMBOL_GPL net/nsh/nsh 0x8552a053 nsh_pop -EXPORT_SYMBOL_GPL net/nsh/nsh 0xc079a67c nsh_push -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x231395f7 ovs_vport_free -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x23c2d18a ovs_vport_ops_unregister -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x30a7d047 ovs_netdev_tunnel_destroy -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x3fbb64a0 __ovs_vport_ops_register -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x617a3171 ovs_vport_alloc -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x6b0652c8 ovs_netdev_link -EXPORT_SYMBOL_GPL net/psample/psample 0x0a4aff3a psample_group_get -EXPORT_SYMBOL_GPL net/psample/psample 0x6e62bac5 psample_group_take -EXPORT_SYMBOL_GPL net/psample/psample 0x79499610 psample_sample_packet -EXPORT_SYMBOL_GPL net/psample/psample 0xc9287267 psample_group_put +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe435e2e5 xt_target_to_user +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0xd349e39a xt_rateest_lookup +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0xda972433 xt_rateest_put +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x25b601de nci_spi_allocate_spi +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x6b7ee216 nci_spi_read +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x82292bd2 nci_spi_send +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x3df9ffb5 nci_uart_unregister +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xaabf3b30 nci_uart_register +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xefbce7eb nci_uart_set_config +EXPORT_SYMBOL_GPL net/nsh/nsh 0x978a2c06 nsh_push +EXPORT_SYMBOL_GPL net/nsh/nsh 0xc19f7042 nsh_pop +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x48ab787b ovs_netdev_tunnel_destroy +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x8adb5833 __ovs_vport_ops_register +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x91d21ba8 ovs_vport_free +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xa70db8e4 ovs_netdev_link +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xeee051c1 ovs_vport_ops_unregister +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xfc905af2 ovs_vport_alloc +EXPORT_SYMBOL_GPL net/psample/psample 0x694654a2 psample_group_take +EXPORT_SYMBOL_GPL net/psample/psample 0xc1c5d4c6 psample_group_get +EXPORT_SYMBOL_GPL net/psample/psample 0xc81dfc12 psample_group_put +EXPORT_SYMBOL_GPL net/psample/psample 0xdcdf6a66 psample_sample_packet EXPORT_SYMBOL_GPL net/qrtr/ns 0x8d25501f qrtr_ns_remove EXPORT_SYMBOL_GPL net/qrtr/ns 0xa47e91ba qrtr_ns_init -EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x2e3f6e9f qrtr_endpoint_post -EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x37602ed1 qrtr_endpoint_register -EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x44f26732 qrtr_endpoint_unregister +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x5ea08556 qrtr_endpoint_unregister +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x858772c0 qrtr_endpoint_register +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x8930808c qrtr_endpoint_post EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq -EXPORT_SYMBOL_GPL net/rds/rds 0x060657d2 rds_inc_init -EXPORT_SYMBOL_GPL net/rds/rds 0x091e11f4 rds_inc_path_init -EXPORT_SYMBOL_GPL net/rds/rds 0x15b1eebc rds_send_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0x0417cf72 rds_trans_register EXPORT_SYMBOL_GPL net/rds/rds 0x1d3ecf6a rds_cong_map_updated -EXPORT_SYMBOL_GPL net/rds/rds 0x210699b7 rds_connect_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x1dce74cd rds_inc_path_init +EXPORT_SYMBOL_GPL net/rds/rds 0x21b7e715 rds_for_each_conn_info +EXPORT_SYMBOL_GPL net/rds/rds 0x23a25b8c rds_conn_path_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0x265726b0 rds_conn_drop +EXPORT_SYMBOL_GPL net/rds/rds 0x26b4921e rds_message_addref EXPORT_SYMBOL_GPL net/rds/rds 0x2b0d543c rds_message_add_extension -EXPORT_SYMBOL_GPL net/rds/rds 0x2fb45c1a rds_message_put +EXPORT_SYMBOL_GPL net/rds/rds 0x2bbcf89b rds_send_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0x30a705da rds_send_xmit +EXPORT_SYMBOL_GPL net/rds/rds 0x33ed0bad rds_connect_complete EXPORT_SYMBOL_GPL net/rds/rds 0x36087aa4 rds_stats -EXPORT_SYMBOL_GPL net/rds/rds 0x3d5fc624 rds_send_path_reset -EXPORT_SYMBOL_GPL net/rds/rds 0x4079d91f rds_message_unmapped EXPORT_SYMBOL_GPL net/rds/rds 0x45a4781e rds_addr_cmp -EXPORT_SYMBOL_GPL net/rds/rds 0x490714d5 rds_conn_destroy -EXPORT_SYMBOL_GPL net/rds/rds 0x4a79c514 rds_info_deregister_func +EXPORT_SYMBOL_GPL net/rds/rds 0x4692726b rds_send_path_reset +EXPORT_SYMBOL_GPL net/rds/rds 0x53f7653c rds_send_path_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0x54f4f30f rds_trans_unregister EXPORT_SYMBOL_GPL net/rds/rds 0x582fe5cf rds_message_add_rdma_dest_extension EXPORT_SYMBOL_GPL net/rds/rds 0x585f567b rds_message_populate_header -EXPORT_SYMBOL_GPL net/rds/rds 0x5abbaa9f rds_for_each_conn_info -EXPORT_SYMBOL_GPL net/rds/rds 0x62579649 rds_send_ping -EXPORT_SYMBOL_GPL net/rds/rds 0x64774a9f rds_send_xmit -EXPORT_SYMBOL_GPL net/rds/rds 0x6a412f50 rds_conn_drop -EXPORT_SYMBOL_GPL net/rds/rds 0x860aed61 rds_atomic_send_complete -EXPORT_SYMBOL_GPL net/rds/rds 0x89f31164 rds_conn_connect_if_down -EXPORT_SYMBOL_GPL net/rds/rds 0x8c853d7c rds_info_register_func -EXPORT_SYMBOL_GPL net/rds/rds 0x8e9809a9 rds_trans_unregister -EXPORT_SYMBOL_GPL net/rds/rds 0x8ee19d0d rds_trans_register -EXPORT_SYMBOL_GPL net/rds/rds 0xa45d5462 rds_conn_path_drop -EXPORT_SYMBOL_GPL net/rds/rds 0xa8872f1e rds_conn_path_connect_if_down -EXPORT_SYMBOL_GPL net/rds/rds 0xa8ae7252 rds_recv_incoming -EXPORT_SYMBOL_GPL net/rds/rds 0xa8ddb63e rds_conn_create -EXPORT_SYMBOL_GPL net/rds/rds 0xb8cebdf8 rds_message_addref -EXPORT_SYMBOL_GPL net/rds/rds 0xbdaf01e7 rds_send_path_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0x5eddc993 rds_send_ping +EXPORT_SYMBOL_GPL net/rds/rds 0x614d6e53 rds_conn_path_drop +EXPORT_SYMBOL_GPL net/rds/rds 0x659caec1 rds_conn_destroy +EXPORT_SYMBOL_GPL net/rds/rds 0x69ee00b4 rds_conn_create +EXPORT_SYMBOL_GPL net/rds/rds 0x70497b1f rds_connect_path_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x731f6cdc rds_conn_create_outgoing +EXPORT_SYMBOL_GPL net/rds/rds 0x7ed6ecea rds_message_put +EXPORT_SYMBOL_GPL net/rds/rds 0x8ba930cd rds_inc_init +EXPORT_SYMBOL_GPL net/rds/rds 0x90ae9b67 rds_message_unmapped +EXPORT_SYMBOL_GPL net/rds/rds 0xa847eb9c rds_info_register_func +EXPORT_SYMBOL_GPL net/rds/rds 0xa8746d63 rds_conn_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0xaa26982f rds_atomic_send_complete EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy -EXPORT_SYMBOL_GPL net/rds/rds 0xc8e85576 rds_inc_put EXPORT_SYMBOL_GPL net/rds/rds 0xca222854 rds_page_remainder_alloc -EXPORT_SYMBOL_GPL net/rds/rds 0xd3c24bf3 rds_conn_create_outgoing -EXPORT_SYMBOL_GPL net/rds/rds 0xe89de278 rds_connect_path_complete -EXPORT_SYMBOL_GPL net/rds/rds 0xf2937ac2 rds_rdma_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xde932b22 rds_inc_put +EXPORT_SYMBOL_GPL net/rds/rds 0xf17cc303 rds_info_deregister_func EXPORT_SYMBOL_GPL net/rds/rds 0xf4c257e8 rds_stats_info_copy -EXPORT_SYMBOL_GPL net/sched/sch_pie 0x19c15a4c pie_process_dequeue -EXPORT_SYMBOL_GPL net/sched/sch_pie 0x3fd804b0 pie_drop_early +EXPORT_SYMBOL_GPL net/rds/rds 0xf8e73a8f rds_recv_incoming +EXPORT_SYMBOL_GPL net/rds/rds 0xf943f5e2 rds_rdma_send_complete +EXPORT_SYMBOL_GPL net/sched/sch_pie 0x08d15358 pie_process_dequeue EXPORT_SYMBOL_GPL net/sched/sch_pie 0x6ce9b467 pie_calculate_probability +EXPORT_SYMBOL_GPL net/sched/sch_pie 0x8a964f19 pie_drop_early EXPORT_SYMBOL_GPL net/sched/sch_taprio 0x7db7d103 taprio_offload_free EXPORT_SYMBOL_GPL net/sched/sch_taprio 0xd765a904 taprio_offload_get -EXPORT_SYMBOL_GPL net/sctp/sctp 0x3405ed5e sctp_transport_lookup_process -EXPORT_SYMBOL_GPL net/sctp/sctp 0x469ef829 sctp_get_sctp_info -EXPORT_SYMBOL_GPL net/sctp/sctp 0x4c2bf14b sctp_for_each_endpoint -EXPORT_SYMBOL_GPL net/sctp/sctp 0xa7ad5245 sctp_transport_traverse_process -EXPORT_SYMBOL_GPL net/smc/smc 0x5d5831dd smc_hash_sk -EXPORT_SYMBOL_GPL net/smc/smc 0x645af4ce smcd_handle_irq -EXPORT_SYMBOL_GPL net/smc/smc 0x725c6930 smc_proto -EXPORT_SYMBOL_GPL net/smc/smc 0x79ccbef9 smc_unhash_sk -EXPORT_SYMBOL_GPL net/smc/smc 0x9298bfc1 smcd_handle_event -EXPORT_SYMBOL_GPL net/smc/smc 0x9bce894e smcd_register_dev -EXPORT_SYMBOL_GPL net/smc/smc 0xae50ad88 smcd_unregister_dev -EXPORT_SYMBOL_GPL net/smc/smc 0xd35f1657 smc_proto6 -EXPORT_SYMBOL_GPL net/smc/smc 0xed200b4d smcd_free_dev -EXPORT_SYMBOL_GPL net/smc/smc 0xf6af94e0 smcd_alloc_dev -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x257d1798 svcauth_gss_flavor +EXPORT_SYMBOL_GPL net/sctp/sctp 0x02cc619d sctp_transport_lookup_process +EXPORT_SYMBOL_GPL net/sctp/sctp 0x55d3037b sctp_get_sctp_info +EXPORT_SYMBOL_GPL net/sctp/sctp 0x5ebac2e9 sctp_transport_traverse_process +EXPORT_SYMBOL_GPL net/sctp/sctp 0xc882de34 sctp_for_each_endpoint +EXPORT_SYMBOL_GPL net/smc/smc 0x096899cf smc_proto6 +EXPORT_SYMBOL_GPL net/smc/smc 0x256b215b smc_proto +EXPORT_SYMBOL_GPL net/smc/smc 0x2baa43b5 smcd_handle_irq +EXPORT_SYMBOL_GPL net/smc/smc 0x30ab7a90 smcd_unregister_dev +EXPORT_SYMBOL_GPL net/smc/smc 0x7169e38a smc_unhash_sk +EXPORT_SYMBOL_GPL net/smc/smc 0x8fb46a5d smc_hash_sk +EXPORT_SYMBOL_GPL net/smc/smc 0xcfdb9281 smcd_free_dev +EXPORT_SYMBOL_GPL net/smc/smc 0xde1bd073 smcd_handle_event +EXPORT_SYMBOL_GPL net/smc/smc 0xf2c38957 smcd_alloc_dev +EXPORT_SYMBOL_GPL net/smc/smc 0xfdbd186d smcd_register_dev +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x0f4fdd1f svcauth_gss_register_pseudoflavor EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x38d3dce5 g_make_token_header EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x482ac5a4 g_token_size -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xaad4e767 svcauth_gss_register_pseudoflavor -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xc3484cd2 gss_mech_unregister -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xd2239684 gss_mech_register +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x5c89189f svcauth_gss_flavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xbc003096 gss_mech_register +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xd5e384cf gss_mech_unregister EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xd7673035 g_verify_token_header -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x016b3ce3 svc_destroy -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x02287456 svc_xprt_init -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x027a5d92 xdr_shift_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x044d6519 rpc_count_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x057ad9b1 rpc_force_rebind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x01de0b9e rpc_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0230cc7d xprt_free_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x03db32c5 xdr_enter_page EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05e807a9 xdr_encode_string EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x065994f1 xdr_encode_opaque_fixed -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x06a909f0 xdr_reserve_space_vec -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0706bb61 rpc_call_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0765be46 svc_seq_show -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x07a8dcaa svc_xprt_enqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x08576c97 sunrpc_cache_lookup_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x08630059 svc_unreg_xprt_class -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x092b2910 xprt_alloc_slot -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x09617387 svc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x09ab4fdf svc_recv -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x09b7933d xdr_commit_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x09c8a2b4 cache_seq_start_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x080cef53 cache_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x09b0f5ff xdr_decode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0a382b67 xprt_release_rqst_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0aa2682d sunrpc_cache_register_pipefs EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0b84fea0 rpc_wake_up_status +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0b8ff511 svc_reg_xprt_class EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0c28008b rpc_init_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0c4c628b rpc_restart_call_prepare -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0d24b087 xdr_init_decode_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0dcbce2d svc_fill_write_vector -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0dd4065f xdr_buf_subsegment -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0e006ce4 xdr_init_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0e8aaa77 sunrpc_cache_pipe_upcall_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x10ac8b34 svc_proc_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x113ace06 rpcauth_stringify_acceptor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x118aa53c svc_wake_up -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x11cc9252 xprt_update_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1200c16d sunrpc_cache_pipe_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x13082cd0 svc_rqst_replace_page -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x13374350 cache_unregister_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x134ff49c rpcauth_lookupcred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x16d98fcc xprt_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x177e9bb1 rpc_proc_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x17a12ca9 rpc_init_pipe_dir_head +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0c4c293f xprt_reserve_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0e1bb9eb xdr_stream_decode_string_dup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f33d97c xprt_wait_for_reply_request_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x10618b7e rpc_clnt_xprt_switch_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x11487396 svcauth_unix_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x114abee3 sunrpc_init_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x11ff0b2c __rpc_wait_for_completion_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x131beac0 rpc_sleep_on +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x14206ee7 xprt_unlock_connect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x14b98096 xdr_stream_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x15246ef1 rpc_call_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1633aed0 rpc_put_task_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x17677be5 svc_create EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1807e7d1 rpc_init_priority_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1849369a rpc_delay -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x188a4aad rpc_count_iostats_metrics -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1d723a01 xprt_release_xprt_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1db815cf rpc_pipe_generic_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1ddaf4da xdr_align_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1dff8ded sunrpc_cache_register_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1a0ce730 rpc_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1a972190 rpc_sleep_on_priority +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1b817040 svc_xprt_copy_addrs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1bc43c25 sunrpc_cache_pipe_upcall EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e119a79 rpcauth_get_pseudoflavor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f4b16c8 gssd_running -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x22780fd8 rpcb_getport_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x248f5db1 xdr_buf_trim -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2493fa45 rpc_put_task_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x24c51e4a xdr_encode_array2 -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x24f56639 rpcauth_destroy_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x256a26f5 rpcauth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f159909 rpcb_getport_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1fbcf8af xprt_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1fe2583f rpc_clone_client_set_auth +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x20af36a4 rpc_call_null +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x22da77e3 xdr_decode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x234d759e svc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x24b8886e rpc_unlink +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x26155b78 rpc_queue_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x26e44553 xdr_reserve_space_vec EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2970aa81 rpc_put_sb_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2a26269d rpc_clnt_xprt_switch_has_addr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2b03d8de svc_prepare_thread -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2bc42934 xprt_wait_for_buffer_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2bfe5825 rpc_sleep_on_priority_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2cfd90d0 rpc_clone_client_set_auth +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x296289b3 svc_xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2ac220ae svc_rpcbind_set_version +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2bff94e7 auth_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2ebe8bee svcauth_unix_purge EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f8ebbe0 rpc_ntop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3050ea0b __rpc_wait_for_completion_task EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x349f1cf4 svc_close_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x36dee05f rpc_put_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31bb8cde rpc_switch_client_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3501c7aa csum_partial_copy_to_xdr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x35c0a248 xprt_wait_for_reply_request_def +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x363004c3 xdr_inline_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3821ff55 rpc_max_payload EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x38e1b25f rpc_setbufsize -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3be962b6 rpc_wake_up_next -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f262aad svcauth_unix_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3a6103a2 rpc_restart_call +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3aa6cb3c svc_drop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3bfa5650 rpc_set_connect_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3cbcafde svc_generic_init_request +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3d626f70 xdr_stream_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3d70e028 rpc_max_bc_payload EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f9a2b0b rpcauth_get_gssinfo -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3fa38c75 svc_age_temp_xprts_now -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3fbb53d0 svc_create_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3fecca75 rpc_pton -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x40063cc5 xprt_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x41f66170 svc_print_addr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x44d44956 rpc_init_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x453be5d1 cache_seq_stop_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3fa54f26 rpc_mkpipe_dentry +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x40550249 xprt_wake_up_backlog +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x40d8bef2 xprt_release_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x423ea57f xprt_unregister_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x42551a2e xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x44b62764 xprt_disconnect_done EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x453efa54 svc_pool_map -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x456c2665 xprt_wait_for_reply_request_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x47da1a9a xdr_decode_array2 -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x488a9e89 sunrpc_cache_unregister_pipefs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x48f32a81 svc_reg_xprt_class -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x49432884 svc_xprt_received -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4a3b0f13 xdr_terminate_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x465c0910 gssd_running +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4683ad90 rpc_exit EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4afedab1 xprtiod_workqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4b9122d2 rpc_clnt_xprt_switch_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4c480e58 unix_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4d7b08c2 rpc_clnt_add_xprt EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4dac77f0 xdr_encode_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4de69eb3 svc_generic_rpcbind_set +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e1521b2 svc_xprt_received EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e8f6ca7 sunrpc_net_id -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4ee956c2 xprt_adjust_cwnd -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4f0926d1 svc_set_num_threads_sync -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4f1620c8 xprt_release_rqst_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4f41d8f6 read_bytes_from_xdr_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4f52c660 rpc_task_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x50619930 xprt_add_backlog -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x51c0d78b xprt_destroy_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x519dea58 xdr_page_pos EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x55256b45 svc_xprt_copy_addrs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5541ef08 rpcauth_init_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x55fdcbdb xdr_stream_decode_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x57ab3b8e svc_reserve -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x57b88b8a rpc_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5843cfb8 xprt_alloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x59c76ecc rpc_alloc_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53606154 svc_destroy +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53758981 unix_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x554d51b8 rpc_put_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x57136949 sunrpc_cache_update +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x575ad520 rpcauth_wrap_req_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x57e9342a cache_seq_stop_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x58b57ca3 xprt_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x596e0b21 xdr_init_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x59b3ee24 auth_domain_put EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a45ba31 svc_auth_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a841707 rpc_task_release_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5d2aa636 rpc_queue_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x60155962 auth_domain_find -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6248b6ff rpc_uaddr2sockaddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x63ca53f7 xdr_page_pos -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x65b9a45a xprt_reserve_xprt_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x68b2b0fd xprt_unlock_connect -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x698d0509 cache_destroy_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6996828b xprt_free_slot -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6a3abc70 rpc_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6a4e8136 xprt_unregister_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6bb213a8 rpc_unlink -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6cda6802 rpc_peeraddr2str -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6f244d40 xdr_stream_subsegment -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6fada382 cache_register_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x70672b41 cache_create_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x70706206 svc_generic_init_request -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x70ccad23 svc_rpcb_cleanup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x70ef1b16 rpc_mkpipe_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x712e9f26 xprt_wake_up_backlog -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x715006d3 xprt_wake_pending_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5acf512f svc_generic_rpcbind_set +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5ae2633e cache_create_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5b8a571a svc_addsock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5bf08466 rpcauth_init_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5e41423a svc_xprt_do_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x60124a4e xprt_wait_for_buffer_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6172b4a3 xprt_release_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x618af73d xdr_reserve_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x61ab77c1 rpc_prepare_reply_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6329c53b rpc_restart_call_prepare +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x666d4a57 sunrpc_cache_unhash +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x67081c6b xprt_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x67632bea rpc_pipe_generic_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6938dec9 rpcauth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x69ae5dfe xdr_write_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x69bd106c svc_exit_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6a48bfd5 svc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6b014763 svc_rqst_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6bba2efe rpc_num_bc_slots +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6bdfabe6 cache_unregister_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6f58c6b4 rpc_wake_up_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x70214efd svc_close_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x717fc7fe svc_create_xprt EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fa908a cache_flush -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x737a261b xdr_stream_pos -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7587f4c6 rpc_add_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x776ce41e rpc_wake_up_queued_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x777dbf3c rpcauth_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x78e2a047 xdr_inline_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x79a5f7c4 rpc_peeraddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x79e92406 rpc_net_ns -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7a06c44c svc_process -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7a8a87d9 rpc_get_sb_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7af83d4f rpc_sleep_on -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7bc83f10 rpc_bind_new_program -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7c4eaaa8 rpc_call_null -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7d10cbbf rpc_destroy_pipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x72608ac1 rpc_sleep_on_priority_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7488f094 rpc_find_or_alloc_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x75272678 sunrpc_cache_pipe_upcall_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x77e882c0 svc_xprt_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7801bdcd cache_seq_next_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x78496b9e bc_svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x784b7fa3 rpc_d_lookup_sb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7aba171e write_bytes_to_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7c24c028 svc_xprt_deferred_close EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8052485d auth_domain_lookup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8082c8f4 rpc_clnt_test_and_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8154b800 xdr_expand_hole -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x81f1e1d9 rpc_clnt_show_stats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x83ed5333 xprt_pin_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x84f6d1e1 sunrpc_cache_unhash -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x851aa73f xprt_lookup_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x85208411 rpc_sleep_on_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x86b93bd1 rpc_prepare_reply_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x86d19398 svc_rpcb_setup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x86d8ab23 rpc_sleep_on_priority -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x86e3e3dd rpc_restart_call -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x87c01f98 cache_seq_next_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x89557fb0 xprt_force_disconnect -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8a30997c rpc_mkpipe_dentry -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8ac25dcc svc_bind -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8b7e9d01 svc_drop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8e373550 rpc_remove_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9117b5ab rpc_call_sync -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9214629a xdr_inline_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fac33d1 rpcauth_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x81611917 svc_prepare_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x81834d58 rpc_net_ns +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x831066a2 svc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x838d3f0a rpc_uaddr2sockaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x865b3fbd svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x86b82787 svc_xprt_names +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x886f82a1 xprt_update_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x89e47482 auth_domain_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8a33f9b8 rpc_release_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8ada5a24 rpc_task_release_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8bbff673 xdr_stream_decode_opaque_dup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8bf596a5 rpc_localaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8d2a347c rpc_clnt_xprt_switch_has_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8d59de1c svc_set_num_threads +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8e2ce4d6 xprt_lock_connect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8ed97cb3 xdr_process_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8f495638 svc_fill_symlink_pathname +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9003e2c5 rpcauth_lookupcred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x90e80d23 rpc_remove_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x91af2108 rpcauth_unregister EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9224516d rpc_wake_up -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x92708a73 xprt_unpin_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x93db8133 xdr_reserve_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x95887a45 rpc_switch_client_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x96ba3621 xdr_process_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x975f6856 svc_fill_symlink_pathname -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98118a45 xprt_reconnect_delay -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x99a5bda9 svc_xprt_names -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x99a8ee80 csum_partial_copy_to_xdr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x99ccfbee rpc_clnt_setup_test_and_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9a36f942 xdr_stream_decode_opaque_dup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9c8a8513 rpc_clnt_xprt_switch_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9e07053f rpc_num_bc_slots -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa012499a xprt_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa0863c2b rpc_clnt_swap_deactivate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x94822492 xprt_reconnect_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x94c30625 svc_xprt_init +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x950203ae xprt_write_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9642cef0 svc_find_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9654f920 xprt_reconnect_backoff +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9658f3e8 rpc_run_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9b697728 xprt_complete_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9cdde538 rpc_clnt_swap_deactivate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9ce67389 rpc_force_rebind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9d5e0dab svc_bind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9d77ec84 rpc_init_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9d8597ef sunrpc_cache_lookup_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9e55b4cb rpc_malloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9e6d4102 rpc_init_pipe_dir_head +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9e7fc201 rpc_clone_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9f4f5192 rpc_add_pipe_dir_object EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa13acdb8 svc_pool_map_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa3061d79 rpc_malloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa54d1f25 rpcauth_init_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa93fafe6 svc_sock_update_bufs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaa1ad163 svc_xprt_do_enqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xac775532 rpc_clnt_iterate_for_each_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xacb7346d xprt_lock_connect -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xacd2840c xprt_request_get_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xad6f77a0 xdr_init_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xad8c2f03 rpc_wake_up_first -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaeb5d1be rpc_find_or_alloc_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa2017d8b xprt_reserve_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa71ff4d8 rpc_peeraddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa751a653 rpc_clnt_swap_activate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa817f1e6 cache_seq_start_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa96fea1e svc_rqst_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaa0940e5 cache_destroy_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaae8e8ea svc_alien_sock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xac8f477a svc_recv +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xade361bb put_rpccred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xadfc9814 rpc_clnt_xprt_switch_put EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaffa4e82 svc_set_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb1b5fe41 xdr_encode_word -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb1c72da2 rpc_clnt_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb1c8c919 rpc_d_lookup_sb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb07c812d xprt_setup_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb0cd9ba2 xdr_init_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb0f47f65 rpcauth_unwrap_resp_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb29acc77 rpcauth_destroy_credcache EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb312d0c4 svc_pool_map_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb37ea606 xprt_complete_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb4425e29 cache_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb3213a5d rpc_call_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb349c7a6 rpc_clnt_setup_test_and_add_xprt EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb6e828e7 svc_encode_result_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xba6bd1c0 xprt_write_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbaca615b bc_svc_process -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbb127346 rpc_localaddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbc281ad3 xprt_disconnect_done -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbdaf6f27 svc_find_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb636fba9 rpc_mkpipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb6630561 xprt_request_get_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb8c2cc87 rpc_wake_up_queued_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb99970a6 xprt_adjust_cwnd +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbabb3c40 rpc_clnt_show_stats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbbd81121 rpc_count_iostats EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc00da73d write_bytes_to_xdr_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc03387cb svc_xprt_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc0625e43 xprt_register_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc10fce9a xdr_decode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc05542c1 rpc_clnt_test_and_add_xprt EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12435e3 rpc_calc_rto +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc168714f rpcauth_lookup_credcache EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc169d947 rpc_destroy_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc38097b6 svc_authenticate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc40ddcca rpc_clone_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc4f1400b xprt_reconnect_backoff -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc7c2edb5 rpcauth_wrap_req_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc7fd8b1b auth_domain_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc283fbeb xdr_stream_decode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3491e1a rpc_task_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3d7f2b0 svc_auth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc51b6bc9 rpc_killall_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc710aa5e xprt_force_disconnect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc89fdade sunrpc_destroy_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8b6ab76 rpc_alloc_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8cd3c4d read_bytes_from_xdr_buf EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc9c3421a rpc_max_bc_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcaacaa98 rpc_set_connect_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcc78a4d0 xdr_write_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcc97d23b rpcauth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc97a83c8 xprt_pin_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xca4c478d rpc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcb3638ec xprt_register_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcbd5372c xdr_encode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcc0ed659 rpc_put_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce0b9893 xdr_expand_hole EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce678a59 xdr_decode_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcfe26c46 rpc_shutdown_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd09aa408 svc_rpcbind_set_version -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd0efc2bd sunrpc_destroy_cache_detail -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd249f170 svcauth_unix_set_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd45fd41b rpcauth_lookup_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd46e985e svc_shutdown_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd601c170 rpc_killall_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd86cafae xdr_read_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd8a76a90 rpc_call_start -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd9071b87 xdr_stream_decode_opaque -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd93fa35b svc_create_pooled -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdabd7807 rpc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdbc02d4c xprt_setup_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce9eef07 svc_print_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcec7f621 svc_encode_result_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xced87976 xprt_add_backlog +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcfbcd8e7 rpc_wake_up_first +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd06bed7d svc_fill_write_vector +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd0b56cb6 svc_unreg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd2619c9e sunrpc_cache_unregister_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd4228922 svc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd42e3c88 cache_register_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd462d2b2 xdr_align_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd4f726e8 svc_reserve +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd532974f rpc_setbufsize +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd572cee2 svc_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd8152dd9 rpcauth_init_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd85bfbb8 xdr_init_decode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd903d9ac rpc_call_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd95986fb rpc_count_iostats_metrics +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd95e0cab cache_check +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xda4660ee xdr_terminate_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdb4305cc rpcauth_stringify_acceptor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdb7aaacd xprt_destroy_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdb84173d rpc_get_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdbc89adf svc_authenticate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdc56ff1a rpc_bind_new_program +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd2bc8dc xdr_buf_subsegment EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd691402 xprt_find_transport_ident -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdf054031 xdr_stream_decode_string_dup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe082b3a9 svc_exit_thread -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe2a3c1d7 xprt_release_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe36a8416 svc_rqst_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xde3cb435 rpc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xde4dd5e8 xdr_buf_from_iov +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xde8a1d4d rpc_destroy_pipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xde95c185 xdr_buf_trim +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe0886237 rpc_create EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe6612197 xprt_reserve_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe6731586 svc_proc_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe86d4f17 rpc_clnt_swap_activate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe6b677b4 svc_shutdown_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe732a111 xdr_shift_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe8538773 svc_rpcb_cleanup 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 0xeb9e9210 svc_xprt_deferred_close +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe9d33573 svc_rqst_replace_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xea4f52d9 xdr_stream_decode_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xebf68c6c xprt_wake_pending_tasks EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xec203a0d rpc_machine_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xec67e6ef xprt_wait_for_reply_request_def -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedcbe4bc _copy_from_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xec4f5ac1 svc_sock_update_bufs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xecab3e20 svc_set_num_threads_sync EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedcf6be4 qword_add -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xee7f0346 rpc_exit +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xee0bc02b xdr_read_pages EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeeacab69 rpc_update_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeffa76e5 xdr_enter_page -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf0845ece sunrpc_init_cache_detail -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf132e6d6 svc_addsock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf25f8e17 rpcauth_unwrap_resp_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf2fde586 sunrpc_cache_update -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf32a9ccd rpc_release_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf4c1c352 svc_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf5390596 svc_auth_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf6dc4f62 svc_rqst_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf8443304 svc_set_num_threads -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf854f4c1 cache_check -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfa3c3310 rpc_run_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfac8c45b xdr_buf_from_iov -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfe54046d rpc_proc_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfe72628f put_rpccred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xff05b32b svc_alien_sock -EXPORT_SYMBOL_GPL net/tls/tls 0x27c7e639 tls_offload_tx_resync_request -EXPORT_SYMBOL_GPL net/tls/tls 0x38f7c599 tls_validate_xmit_skb -EXPORT_SYMBOL_GPL net/tls/tls 0x3df42e58 tls_encrypt_skb -EXPORT_SYMBOL_GPL net/tls/tls 0xfa888e62 tls_device_sk_destruct -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x007883db virtio_transport_notify_recv_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x034b53fc virtio_transport_inc_tx_pkt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeeec2fc0 rpc_pton +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf1d9c78d svc_create_pooled +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf1f07aab xdr_inline_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf3bf04fa rpc_sleep_on_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf44b85be rpc_shutdown_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf4a06bc0 rpc_peeraddr2str +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf5cf7e67 _copy_from_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf63b78e8 xprt_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf91484c3 xprt_unpin_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf98c3467 xdr_commit_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfbeca8a2 rpc_clnt_iterate_for_each_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfc770fbe svc_rpcb_setup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfd545738 svc_age_temp_xprts_now +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfd89ce6d xprt_lookup_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfed48dce xdr_encode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xffba4969 svc_seq_show +EXPORT_SYMBOL_GPL net/tls/tls 0x80563007 tls_validate_xmit_skb +EXPORT_SYMBOL_GPL net/tls/tls 0x85c59828 tls_device_sk_destruct +EXPORT_SYMBOL_GPL net/tls/tls 0x89980b85 tls_offload_tx_resync_request +EXPORT_SYMBOL_GPL net/tls/tls 0xf8d760c0 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 0x058ea013 virtio_transport_notify_recv_pre_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x10b19f48 virtio_transport_deliver_tap_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x1533a6d3 virtio_transport_recv_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x195b7a55 virtio_transport_notify_send_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x1d1153a9 virtio_transport_destruct -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2116dd85 virtio_transport_notify_send_pre_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x23916f01 virtio_transport_shutdown -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x3332b4df virtio_transport_put_credit -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x37ef4d31 virtio_transport_dgram_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x3b537b58 virtio_transport_notify_poll_out -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x3d84997d virtio_transport_dgram_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x3eb6a2a4 virtio_transport_notify_send_post_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x3eef8019 virtio_transport_free_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x4273b6be virtio_transport_notify_send_pre_block -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x46bcaee8 virtio_transport_seqpacket_has_data -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x4c6da327 virtio_transport_seqpacket_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x51086332 virtio_transport_notify_buffer_size -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x766742a2 virtio_transport_seqpacket_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x8e1b59ef virtio_transport_stream_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x950ec949 virtio_transport_connect -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x9ed69bbe virtio_transport_notify_recv_pre_block -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb34ae430 virtio_transport_stream_rcvhiwat -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb8a41622 virtio_transport_release -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb92c0d38 virtio_transport_get_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x070b8f1e virtio_transport_do_socket_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x13169ed4 virtio_transport_seqpacket_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x1a693a84 virtio_transport_free_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x25bea865 virtio_transport_stream_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2865dc6b virtio_transport_stream_rcvhiwat +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x3028fb2a virtio_transport_notify_send_post_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x353f6c06 virtio_transport_dgram_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x387b94c7 virtio_transport_connect +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x3ab84d0d virtio_transport_shutdown +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x3df9a86e virtio_transport_seqpacket_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x4255d127 virtio_transport_get_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x44367301 virtio_transport_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x4560edec virtio_transport_dgram_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x56d5d0c8 virtio_transport_destruct +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x5afc193b virtio_transport_notify_recv_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x60a80f93 virtio_transport_notify_recv_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x66e2f82d virtio_transport_notify_poll_in +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x6b8e154e virtio_transport_recv_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x6d3bb91c virtio_transport_inc_tx_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x777c569b virtio_transport_seqpacket_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x80884b47 virtio_transport_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x8ccb2ce7 virtio_transport_notify_recv_pre_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x922a954c virtio_transport_notify_send_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x980ef046 virtio_transport_dgram_bind +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa136bc4f virtio_transport_deliver_tap_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa4083fe3 virtio_transport_stream_is_active +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xaa4a2a06 virtio_transport_notify_recv_post_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb15b9057 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 0xc77791ef virtio_transport_notify_recv_post_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xcf0e2338 virtio_transport_notify_poll_in -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd6dc093c virtio_transport_do_socket_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe1654cf5 virtio_transport_stream_has_space -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe2b1e4f1 virtio_transport_stream_has_data -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xeb1ebaf1 virtio_transport_stream_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xee0b2fd2 virtio_transport_stream_is_active -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xffc508b2 virtio_transport_dgram_bind +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xc80103c9 virtio_transport_release +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xc9caedc2 virtio_transport_put_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd1dc3591 virtio_transport_notify_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe6c5e4d5 virtio_transport_notify_send_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xeec50326 virtio_transport_notify_send_pre_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xfd684e45 virtio_transport_notify_poll_out +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0bac4b44 vsock_remove_bound EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0e9bc9b6 vsock_addr_unbind -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0edaa123 vsock_remove_connected -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0fe1ea1e vsock_find_bound_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x205f6d00 vsock_remove_sock +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2169d653 vsock_stream_has_space EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x284e07d8 vsock_bind_table -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2bff0f8a vsock_remove_pending -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x3166c7a1 vsock_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2e6404ad vsock_remove_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x3345de87 vsock_create_connected EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x3d4b0fca vsock_addr_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4101dead vsock_core_register -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x415426bd vsock_enqueue_accept +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x3f37a026 vsock_remove_sock EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x44420515 vsock_table_lock +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4869d313 vsock_remove_pending EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4b99648c vsock_addr_bound -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4c9b0019 vsock_add_pending -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x502f1214 vsock_for_each_connected_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x697bcf07 vsock_insert_connected -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x80400247 vsock_remove_tap -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x89ab693d vsock_core_unregister +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4d45639a vsock_add_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x6081614e vsock_find_bound_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x8e4e6f52 vsock_insert_connected EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x90aa8549 vsock_find_cid -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x90c4fe1b vsock_find_connected_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x96106a41 vsock_remove_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x916edc7b vsock_enqueue_accept EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9bb6fd09 vsock_connected_table -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9cf053bf vsock_assign_transport +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xa9b42c3b vsock_find_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xabfd4229 vsock_core_register EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xaf2674b5 vsock_addr_equals_addr -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xb0283f03 vsock_create_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xb00c53e5 vsock_add_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xb20cc45e vsock_core_get_transport +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc5826fee vsock_remove_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xcc2eca4f vsock_deliver_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd1dc4bf4 vsock_core_unregister EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd348b1f4 vsock_addr_cast -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd93dafa7 vsock_deliver_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xe1e87021 vsock_for_each_connected_socket EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xec96eadf vsock_addr_validate -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xee35aeca vsock_core_get_transport -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf1d33615 vsock_add_tap -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf7f2a892 vsock_stream_has_data -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x07553f62 cfg80211_wext_siwscan -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x14ddeb96 cfg80211_wext_siwmode -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x23f7f17f cfg80211_wext_giwrange -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x3f08ede6 cfg80211_wext_giwscan -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x47886590 cfg80211_shutdown_all_interfaces -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x49acdc53 cfg80211_vendor_cmd_get_sender -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x575ff45b cfg80211_wext_giwfrag -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x5c104ae3 cfg80211_pmsr_report -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x607a960d cfg80211_wext_giwrts -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x66148498 cfg80211_pmsr_complete -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x90302d6d cfg80211_wext_giwmode -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xa19a6934 cfg80211_vendor_cmd_reply -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xa331e55f cfg80211_wext_siwrts -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xc0706c9a cfg80211_wext_giwretry -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xc553e66e cfg80211_wext_giwname -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xd2f98ff0 cfg80211_wext_siwfrag +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xedd3d6d4 vsock_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf1ea5a07 vsock_assign_transport +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x134b1dbe cfg80211_wext_siwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x14e3740e cfg80211_vendor_cmd_reply +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x166f9d1b cfg80211_vendor_cmd_get_sender +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x19313e51 cfg80211_wext_giwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x1d3ddc7f cfg80211_wext_giwname +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x414d70e9 cfg80211_pmsr_complete +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x4dac6401 cfg80211_wext_giwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x500ff6e5 cfg80211_wext_giwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x5b3c5cbf cfg80211_pmsr_report +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x5c8b67b4 cfg80211_wext_giwrange +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x5d828c57 cfg80211_wext_siwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x62a78627 cfg80211_wext_siwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x64aa2f88 cfg80211_wext_giwretry +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x8a48838a cfg80211_shutdown_all_interfaces +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xc4588882 cfg80211_wext_siwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xfa6c0b39 cfg80211_wext_giwfrag 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 @@ -17909,602 +17948,617 @@ 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 0x327f5763 ipcomp_input -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x79106116 ipcomp_destroy -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xd87232de ipcomp_output -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xe77ae9b3 ipcomp_init_state +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x07c923d8 ipcomp_output +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x6d5b8bc4 ipcomp_destroy +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x7339ba8e ipcomp_input +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x81965de1 ipcomp_init_state EXPORT_SYMBOL_GPL net/xfrm/xfrm_user 0x4a0c7516 xfrm_msg_min EXPORT_SYMBOL_GPL net/xfrm/xfrm_user 0xe2521b1c xfrma_policy 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-seq-device 0x5875ac48 snd_seq_driver_unregister -EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0xa7f48a28 __snd_seq_driver_register -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x1f837cf5 amdtp_am824_init -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x393ebeab amdtp_domain_add_stream -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x3b81c15f amdtp_domain_start -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x4dd5c905 amdtp_domain_stream_pcm_ack -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x6b963759 amdtp_am824_set_pcm_position -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x767a3e13 amdtp_am824_midi_trigger -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x78fd071a amdtp_domain_stream_pcm_pointer -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x79a40a7c amdtp_am824_add_pcm_hw_constraints -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xb1f0c052 amdtp_domain_stop -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xc3c882de amdtp_am824_set_midi_position -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xc60f7aca amdtp_domain_destroy -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xd10aa8c3 amdtp_am824_set_parameters -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xfd10485d amdtp_domain_init +EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0x6a274f1d __snd_seq_driver_register +EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0xc7f8b2bd snd_seq_driver_unregister +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x061bd1ba amdtp_am824_set_parameters +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x1645f260 amdtp_domain_stream_pcm_ack +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x17d8054a amdtp_am824_set_pcm_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x2926cb6f amdtp_domain_add_stream +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x2a016672 amdtp_domain_stream_pcm_pointer +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x2e978676 amdtp_domain_start +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x31062697 amdtp_am824_init +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x4dd66160 amdtp_am824_add_pcm_hw_constraints +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x559c5dc7 amdtp_am824_midi_trigger +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x8c5ce708 amdtp_domain_init +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x9c394f40 amdtp_am824_set_midi_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xa016c1c2 amdtp_domain_destroy +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xac1f2772 amdtp_domain_stop +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0107ff5b snd_hdac_bus_alloc_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x01210600 snd_hdac_codec_link_up +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x052a3198 snd_hdac_bus_exec_verb_unlocked EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x05636f93 snd_hdac_aligned_read -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x062bbcfd snd_hdac_bus_reset_link -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x09b34983 snd_hdac_regmap_update_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0a3ef732 snd_hdac_stream_assign -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0ca4ea4b hdac_get_device_id +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0c4f26c0 snd_hdac_bus_get_response +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0f2e294a snd_hdac_bus_stop_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0f70e029 snd_hdac_acomp_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0f7dab40 snd_hdac_acomp_register_notifier +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x142301b1 snd_hdac_dsp_prepare EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1488641f snd_hdac_aligned_write -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x14a54746 snd_hdac_stream_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x183a9288 snd_hdac_device_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x18d966e3 snd_hdac_read -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1a2e4861 snd_hdac_get_stream -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1c2e76b7 snd_hdac_bus_alloc_stream_pages -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x228ff1fe snd_hdac_bus_parse_capabilities -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x26a9ae75 snd_hdac_bus_link_power -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2fb7416a snd_hdac_codec_modalias -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3b7fcba3 snd_hdac_bus_free_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x15168f64 snd_hdac_refresh_widgets +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x18d5a038 snd_hdac_power_up_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1915cae8 snd_hdac_stream_clear +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1f19f1e3 snd_hdac_power_down +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2317f9b5 snd_hdac_bus_enter_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2b090eb1 snd_hdac_stream_start +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2c2cc2f6 hdac_get_device_id +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2cbee3a4 snd_hdac_display_power +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x313beb89 snd_hdac_device_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x33118c0c snd_hdac_stream_assign +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x33564731 snd_hdac_dsp_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x346205ea snd_hdac_bus_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x36df9059 snd_hdac_device_register +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x376135e4 snd_hdac_stream_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3a1e2f3a snd_hdac_acomp_exit EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3bd544c2 snd_hdac_get_active_channels -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x414954ce snd_hdac_regmap_sync -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x42f5849f snd_hdac_check_power_state -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x440ff2c9 snd_hdac_channel_allocation -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x457a1ea4 snd_hdac_stream_start -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x462b1a53 snd_hdac_stream_stop -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x46897842 snd_hdac_dsp_prepare -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x490dfe32 snd_hdac_sync_power_state -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x49894ce8 snd_hdac_bus_exit_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x40221439 snd_hdac_regmap_add_vendor_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x42804d7c snd_hdac_regmap_write_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x45911b6f snd_hdac_get_sub_nodes +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4726ec18 snd_hdac_get_connections +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4a890876 snd_hdac_device_unregister +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4c62543a snd_hda_bus_type EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4c7ec4b6 snd_hdac_get_ch_alloc_from_ca -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4cee04c7 snd_hdac_setup_channel_mapping -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4d554e2a snd_hdac_sync_audio_rate -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x57c53084 snd_hdac_stream_release -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x58c98027 snd_hdac_bus_init_cmd_io -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x59e1f840 snd_hdac_bus_get_response -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5bd642f4 snd_hdac_bus_handle_stream_irq +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x50fff9ec snd_hdac_read_parm_uncached +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x55e16508 snd_hdac_regmap_read_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5b517842 snd_hdac_bus_exit_link_reset EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5c07cb49 snd_hdac_calc_stream_format -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5eaae118 snd_hdac_get_stream_stripe_ctl -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x61b165f4 snd_hdac_power_down -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x655a3ffc snd_hdac_acomp_get_eld -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x670080e5 snd_hdac_is_supported_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5d04b0a7 snd_hdac_channel_allocation +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5e2baf24 snd_hdac_bus_init_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5e91e88c snd_hdac_add_chmap_ctls +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5f8320a6 snd_hdac_bus_parse_capabilities +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x616f5062 snd_hdac_stream_setup_periods EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x67bfe791 snd_hdac_spk_to_chmap -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x687d99d5 snd_hdac_regmap_write_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x68a8241d snd_hdac_regmap_update_raw_once -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6a870236 snd_hdac_power_down_pm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6b58506c snd_hdac_stream_timecounter_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6ddc8e3b snd_hdac_bus_update_rirb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6fe67ec5 snd_hdac_stream_setup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6ff20075 snd_hdac_register_chmap_ops -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7083f935 snd_hdac_stream_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x70db4b62 snd_hdac_get_sub_nodes -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x752f619a snd_hdac_regmap_read_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x76c0b9cb snd_hdac_acomp_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x77b761c4 snd_hdac_power_up_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6c534fac snd_hdac_power_up +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6fb91561 snd_hdac_query_supported_pcm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x70b18026 snd_hdac_bus_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x734cc1d6 snd_hdac_stream_sync_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x76d731b7 snd_hdac_stream_timecounter_init EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x77c754a8 snd_hdac_chmap_to_spk_mask -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x78c252d8 snd_hdac_device_register -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7a71f0a4 snd_hdac_acomp_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7b40346b snd_hdac_stream_sync_trigger -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7d191e9b snd_hdac_get_connections -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7efc64a7 snd_hdac_codec_link_down -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x807f54a0 snd_hdac_bus_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x81e556be snd_hdac_codec_link_up -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8f8493c3 _snd_hdac_read_parm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x90ef0d9a snd_hdac_device_unregister -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x92d692f0 snd_hdac_read_parm_uncached -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x92e2267b snd_hdac_stream_clear -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x94b3f7e4 snd_hdac_codec_write -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x99cf1df5 snd_hdac_bus_init_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x77d82759 snd_hdac_stream_release +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7a263a74 snd_hdac_is_supported_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7c99cf07 snd_hdac_regmap_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7db76319 snd_hdac_bus_stop_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7ddf83e7 snd_hdac_stream_set_params +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7eda1a10 snd_hdac_stream_setup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x80d33522 snd_hdac_bus_update_rirb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x82b95051 snd_hdac_register_chmap_ops +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8ec46aa1 snd_hdac_device_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8f5c410e snd_hdac_power_down_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x935a31f4 snd_hdac_sync_audio_rate +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9480f5f9 snd_hdac_regmap_update_raw_once +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x949218e7 snd_hdac_stream_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x95ef5a81 snd_hdac_bus_handle_stream_irq +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x975432db snd_hdac_setup_channel_mapping +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x97cb3654 snd_hdac_read EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9a8e1877 snd_array_free -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9e7365a3 snd_hdac_stream_setup_periods -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa24d931d snd_hdac_bus_stop_chip -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa340944f snd_hdac_bus_enter_link_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xaf322e6e snd_hdac_device_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb02426f0 snd_hdac_refresh_widgets -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb1732cc8 snd_hdac_override_parm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb2311cb1 snd_hdac_display_power -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb8e0a4a4 snd_hdac_regmap_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbb84b50d snd_hdac_acomp_register_notifier -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbd93c23e snd_hdac_stream_sync +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9fbaad3c snd_hdac_bus_reset_link +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa782eab9 _snd_hdac_read_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xaf11307d snd_hdac_override_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb08de1e8 snd_hdac_bus_free_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb278d794 snd_hdac_codec_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb3d24265 snd_hdac_regmap_update_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbb540fd0 snd_hdac_dsp_cleanup EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe7dd7dc snd_array_new -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc82ae4da snd_hdac_regmap_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc8555fc3 snd_hdac_codec_read -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd2d4a071 snd_hdac_set_codec_wakeup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd3d34213 snd_hda_bus_type -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd77594f1 snd_hdac_dsp_trigger -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdc675ee5 snd_hdac_bus_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdeb30016 snd_hdac_query_supported_pcm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe25b85f5 snd_hdac_bus_stop_cmd_io -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe2ebce77 snd_hdac_stream_set_params -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe434217c snd_hdac_bus_exec_verb_unlocked +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe92bac6 snd_hdac_stream_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc4d35091 snd_hdac_regmap_sync +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcb31f878 snd_hdac_stream_sync +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcbdf62b7 snd_hdac_codec_link_down +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcd8d427c snd_hdac_device_set_chip_name +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xce909fdd snd_hdac_acomp_get_eld +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdc045f9e snd_hdac_regmap_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe2d3e48f snd_hdac_sync_power_state EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe4e07754 snd_hdac_print_channel_allocation -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe5585a3e snd_hdac_power_up -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe7832635 snd_hdac_bus_send_cmd -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xeab11258 snd_hdac_regmap_add_vendor_verb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xeb98924e snd_hdac_dsp_cleanup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf9d6b803 snd_hdac_device_set_chip_name -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfbfbd4bb snd_hdac_stream_cleanup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfd2f0d23 snd_hdac_add_chmap_ctls -EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0xb784876f snd_intel_dsp_driver_probe -EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0xc812fb71 snd_intel_acpi_dsp_driver_probe -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x0f624c24 snd_ak4113_reinit -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xa2053854 snd_ak4113_check_rate_and_errors -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xac7e8303 snd_ak4113_build -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xc9554e95 snd_ak4113_reg_write -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xcdba74ce snd_ak4113_external_rate -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xe6104759 snd_ak4113_create -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x00fcccfe snd_hda_mixer_amp_switch_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x00ff09a8 snd_hda_correct_pin_ctl +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe83d8e9f snd_hdac_get_stream +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe86fcad3 snd_hdac_check_power_state +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe89f43de snd_hdac_codec_write +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xea3b2100 snd_hdac_set_codec_wakeup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xefee91a2 snd_hdac_bus_init_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf2dd2240 snd_hdac_stream_stop +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf30e025d snd_hdac_bus_send_cmd +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf4affb54 snd_hdac_bus_link_power +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfdc264db snd_hdac_get_stream_stripe_ctl +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfee439b5 snd_hdac_codec_modalias +EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x1bf6cbc8 snd_intel_acpi_dsp_driver_probe +EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0xca096360 snd_intel_dsp_driver_probe +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x2e05b849 snd_ak4113_build +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x59f418a8 snd_ak4113_create +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x9e0d74a3 snd_ak4113_reg_write +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xabaeabf3 snd_ak4113_reinit +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xeb4eadc3 snd_ak4113_external_rate +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xffc6dfff snd_ak4113_check_rate_and_errors +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x02e9c055 snd_hda_sync_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x035095b0 snd_hda_spdif_ctls_assign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x044848a2 snd_hda_jack_set_dirty_all EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0676f5ac snd_hda_get_input_pin_attr -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x09462ec3 snd_hda_apply_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0b76af79 snd_hda_codec_cleanup_for_unbind -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0bc8ac60 snd_hda_jack_set_button_state -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0bd89394 snd_hda_codec_update_widgets -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0cb4f4bc snd_hda_get_default_vref -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0ddf3aa3 snd_hda_codec_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0f8592d8 snd_hda_mixer_amp_switch_get_beep -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x11a5239b azx_probe_codecs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x11c83fe1 snd_hda_add_nid -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x11f2182c snd_hda_input_mux_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x17a019cf snd_hda_sequence_write -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x17ee7ab2 snd_hda_codec_parse_pcms -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1d3af66a snd_hda_detach_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x239ee796 snd_hda_mixer_amp_volume_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x243e470b snd_hda_shutup_pins -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x283fc450 snd_hda_create_dig_out_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x287e3036 snd_hda_jack_pin_sense -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x28934d8e snd_hda_mixer_amp_switch_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2ad34b39 snd_hda_unlock_devices -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2d20eb95 snd_hda_jack_detect_enable -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2d636112 snd_hda_create_spdif_in_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2dbca7f2 query_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x31773f3b snd_hda_multi_out_analog_open -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x32be9ff8 snd_hda_jack_tbl_get_mst -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3302ec92 hda_get_autocfg_input_label -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x33163e08 snd_hda_pick_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x338b6e14 snd_hda_codec_amp_update -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x35e1d95a snd_hda_codec_amp_stereo -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x37256bd1 snd_hda_create_spdif_share_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0a8552b8 snd_hda_enum_helper_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0c953437 snd_hda_get_num_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0cfa9496 snd_hda_codec_update_widgets +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0f9c0228 snd_hda_codec_pcm_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x10e73a88 snd_hda_codec_pcm_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x121e0371 snd_hda_attach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x12c257ff snd_hda_correct_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x133e9b87 snd_hda_codec_amp_init_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x13fde0ff is_jack_detectable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x169cffcd snd_hda_enable_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x18bdcf3d snd_hda_mixer_amp_switch_get_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1dd219cc snd_hda_jack_add_kctl_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1e55715d snd_hda_codec_get_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1f000b0d snd_hda_codec_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x205ce2b2 snd_hda_mixer_amp_switch_put_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x21cadd80 snd_hda_codec_get_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x22428915 snd_hda_jack_tbl_get_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x238bc005 snd_hda_jack_detect_enable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x246dec89 snd_hda_jack_set_button_state +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x25119479 snd_hda_jack_pin_sense +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2567790f azx_stop_all_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2814b38e snd_hda_get_conn_index +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x29211893 snd_hda_mixer_amp_switch_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2956a88d snd_hda_pick_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2cc61427 snd_hda_apply_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x30288c58 snd_hda_get_connections +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x31d19036 snd_hda_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3283d1df snd_hda_codec_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3454f0aa snd_hda_codec_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x35bcbc04 snd_hda_codec_set_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x36ea96dd snd_hda_load_patch EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x38ce402b azx_interrupt -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x399e8d43 snd_hda_get_num_devices -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3a3ca3c6 snd_hda_sync_vmaster_hook -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3cce3a28 azx_stop_all_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3d16859e snd_hda_ctl_add -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3db6e574 azx_get_position -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4038523c azx_init_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x40810ebb snd_hda_find_mixer_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x45ebf1d2 snd_hda_lock_devices -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x471d23f3 is_jack_detectable -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x486a1ecd snd_hda_codec_pcm_new -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4883e0e7 snd_hda_attach_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4a8e34a8 hda_codec_driver_unregister -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4b2553f9 snd_hda_multi_out_dig_open -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4df0a7f2 __snd_hda_add_vmaster -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4e9b81fe snd_hda_mixer_amp_tlv -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4ec54e3b azx_init_chip -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x54f49f76 snd_hda_check_amp_list_power -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x560a9d75 snd_hda_multi_out_dig_close -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x573a2734 snd_hda_jack_bind_keymap -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x59098133 snd_hda_codec_setup_stream -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5b107d97 snd_hda_jack_set_gating_jack -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5b897ee0 azx_codec_configure -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x60d68de5 snd_hda_jack_tbl_get_from_tag -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x634350e6 snd_hda_codec_new -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x642c7ea6 __snd_hda_codec_cleanup_stream -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x658e3c12 snd_hda_jack_unsol_event -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x67dddef2 snd_hda_add_verbs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x68530a3f snd_hda_set_vmaster_tlv -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x692a7fac snd_hda_codec_load_dsp_trigger -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6e6f4e2a snd_hda_codec_device_new -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x705caa72 snd_hda_jack_poll_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7296d325 snd_hda_codec_set_name -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x72e09c7e snd_hda_add_new_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x72f273a1 snd_hda_load_patch -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x73d6472c snd_hda_pick_pin_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x74cbb763 snd_hda_get_pin_label -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x751c7256 snd_hda_enable_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x78bb008a snd_hda_get_conn_list -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7c894cf6 snd_hda_codec_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fd3f5ed snd_hda_add_vmaster_hook -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x81cc7e93 snd_hda_jack_add_kctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x83ea6ef3 snd_hda_mixer_amp_switch_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x88e7c4eb snd_hda_mixer_amp_volume_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x89d2748a snd_hda_codec_eapd_power_filter -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8a1cf36c azx_get_pos_lpib -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8b4ba873 snd_hda_enum_helper_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8c20ef58 snd_hda_get_conn_index -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8e6be2f5 snd_hda_jack_detect_enable_callback_mst -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9151c5d9 snd_hda_codec_set_pincfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x915a301e snd_hda_check_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9612a30a snd_hda_codec_build_controls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x967597b5 snd_hda_codec_load_dsp_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x979eb4c0 snd_hda_mixer_amp_switch_put_beep -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x98184de5 snd_hda_spdif_out_of_nid -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9ac7cede snd_hda_multi_out_analog_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9ca1349f snd_hda_get_int_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9ccd24b4 _snd_hda_set_pin_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9f9a0e77 snd_hda_codec_get_pincfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9f9ec1c5 snd_hda_get_bool_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa088459b snd_hda_mixer_amp_volume_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa429fe44 snd_hda_spdif_ctls_unassign -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa5ab55bd snd_hda_spdif_ctls_assign -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa60f1537 snd_hda_add_imux_item -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaab0bf01 azx_bus_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xacbf9d62 azx_stop_chip -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaceb5989 azx_get_pos_posbuf -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb0328ed6 snd_hda_multi_out_dig_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb245e9c4 snd_hda_override_conn_list -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb8c7547b snd_hda_codec_amp_init_stereo -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xba56d8fa snd_hda_jack_add_kctl_mst -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbd33a405 snd_hda_codec_amp_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbd6d3247 snd_hda_get_dev_select -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc59b92e9 snd_hda_jack_detect_state_mst -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc78a8fa0 snd_hda_codec_get_pin_target -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xca61ab36 snd_hda_get_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcba98972 snd_hda_codec_set_pin_target -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcc6de3e4 snd_hda_apply_pincfgs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd15d95c1 azx_free_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd251efda snd_hda_get_connections -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd40f98ae snd_hda_apply_verbs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd44a0d8a snd_hda_codec_configure -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd76b14fe snd_hda_parse_pin_defcfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd837de2b snd_hda_codec_set_power_to_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xda15370b snd_hda_multi_out_analog_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdb1079c5 snd_hda_override_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdeab175b snd_hda_codec_load_dsp_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3a281ed5 snd_hda_mixer_amp_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3f69c7e3 snd_hda_mixer_amp_switch_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x40b5ca93 azx_get_pos_posbuf +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4365e95b snd_hda_codec_parse_pcms +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x441f4304 azx_free_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x45ab507a azx_stop_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4b0252e2 azx_get_pos_lpib +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x52a6e22a azx_init_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x571680bf snd_hda_ctl_add +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x589bc4c7 snd_hda_codec_device_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5b18dfca snd_hda_apply_pincfgs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5e45c400 snd_hda_add_imux_item +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5f0e8eb6 snd_hda_sequence_write +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5f4a13b9 snd_hda_codec_amp_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x604e47fa snd_hda_codec_cleanup_for_unbind +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x630be658 snd_hda_multi_out_dig_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x671cd045 snd_hda_multi_out_analog_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x673b4b5c snd_hda_jack_report_sync +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6748cd80 snd_hda_jack_bind_keymap +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x67833a58 snd_hda_get_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x688ff84d azx_bus_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6c2c2877 query_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6ec3b689 snd_hda_mixer_amp_volume_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6fcff93b snd_hda_create_spdif_share_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x702eb44d snd_hda_get_dev_select +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7350d407 snd_hda_multi_out_analog_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x736810ca snd_hda_input_mux_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x786f7dd5 snd_hda_multi_out_dig_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x788b69f9 snd_hda_mixer_amp_volume_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x797b9cf3 snd_hda_jack_poll_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7ad288bf __hda_codec_driver_register +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7b8cb898 snd_hda_codec_load_dsp_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7cc19dde snd_hda_create_spdif_in_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7eeec7c1 snd_hda_unlock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x80d7288b snd_hda_jack_add_kctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x81c567c9 snd_hda_override_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x84f2673c snd_hda_codec_set_name +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x85e1adff azx_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9148c124 snd_hda_jack_detect_state_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x935c512d snd_hda_codec_eapd_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x97625be5 snd_hda_shutup_pins +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9805dd46 snd_hda_parse_pin_defcfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9b39cb02 snd_hda_mixer_amp_switch_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9b99f0be snd_hda_add_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9c7c0f1a snd_hda_add_new_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9fbe973e snd_hda_codec_set_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa1bfcb8f snd_hda_add_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa20aa51c snd_hda_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa22f98b0 snd_hda_find_mixer_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa2600a73 snd_hda_pick_pin_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa2b1be86 snd_hda_codec_amp_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa7489c7b snd_hda_set_power_save +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa9ef2784 azx_get_position +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xac657bd5 snd_hda_set_dev_select +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xad868db2 snd_hda_create_dig_out_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb17381c3 snd_hda_jack_tbl_get_from_tag +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc0f4aae0 snd_hda_check_amp_list_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc7301e1f snd_hda_codec_load_dsp_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc860faa1 snd_hda_codec_load_dsp_trigger +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xca93ba68 snd_hda_mixer_amp_volume_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcccdbd69 snd_hda_jack_unsol_event +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcd2cc69f snd_hda_codec_build_controls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcf139508 snd_hda_check_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd14232a5 snd_hda_get_int_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd1666b15 snd_hda_get_bool_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd26fe28a snd_hda_detach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd907d8fc snd_hda_codec_set_power_to_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdbcf185f azx_probe_codecs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdce79dce snd_hda_jack_set_gating_jack +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xddd5807a snd_hda_codec_amp_update +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xde3af36d snd_hda_lock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdf9613ba snd_hda_apply_fixup EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe118de5d snd_pcm_2_1_chmaps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe497eb71 __hda_codec_driver_register -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xece9ca28 snd_hda_multi_out_dig_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xed3c1b29 snd_hda_set_dev_select +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe1ee5084 hda_codec_driver_unregister +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe285fd5b snd_hda_multi_out_dig_close +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe36adbab snd_hda_spdif_out_of_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe5904471 snd_hda_codec_setup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe74789df snd_hda_get_pin_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe879d83c __snd_hda_codec_cleanup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xea0f248a snd_hda_set_vmaster_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeb6fcb6a _snd_hda_set_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xecc3c5c5 azx_init_streams EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeda3a721 snd_print_pcm_bits -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf1eb6036 snd_hda_codec_pcm_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf29047a9 snd_hda_jack_set_dirty_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeea14f43 snd_hda_multi_out_analog_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeef12fb6 __snd_hda_add_vmaster +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf0b27ad8 snd_hda_jack_detect_enable_callback_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf0bb8717 snd_hda_get_default_vref +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf3b35bc4 snd_hda_get_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf732d2e6 hda_get_autocfg_input_label EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf8dc35ac snd_hda_input_mux_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfbd083b4 snd_hda_set_power_save -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfe923518 snd_hda_jack_report_sync -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x09f3cc04 snd_hda_gen_path_power_filter -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x0a8e3406 snd_hda_activate_path -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x13175061 snd_hda_gen_build_controls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x18bae175 snd_hda_gen_stream_pm -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x1d5c0a9f snd_hda_gen_add_kctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x243d46ec snd_hda_get_path_from_idx -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x285762a1 snd_hda_gen_update_outputs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x324ab740 snd_hda_gen_free -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x33d5d0fa snd_hda_gen_mic_autoswitch -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x390ecee1 snd_hda_gen_hp_automute -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x49b19ab9 snd_hda_gen_fix_pin_power -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x4e9a7b95 snd_hda_gen_build_pcms -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x5e4e1791 snd_hda_gen_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfacdfbfc snd_hda_override_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfd3005a1 snd_hda_spdif_ctls_unassign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xffe111d5 snd_hda_multi_out_dig_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x34900fe2 snd_hda_activate_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x431f9901 snd_hda_gen_line_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x4b175f8c snd_hda_gen_parse_auto_config +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x63acc0a2 snd_hda_gen_add_kctl EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x76dc6871 hda_main_out_badness -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x817b917e snd_hda_get_path_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x7aee9569 snd_hda_gen_build_pcms +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x7ee6aca5 snd_hda_gen_hp_automute EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x871a6e44 hda_extra_out_badness -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x9e517ca1 snd_hda_gen_add_mute_led_cdev -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xa5145f1c snd_hda_gen_parse_auto_config -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xa5607578 snd_hda_gen_line_automute -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xa8166cdd snd_hda_add_new_path -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xaf32562f snd_hda_gen_check_power_status -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xe0eecd1c snd_hda_gen_spec_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xe87212fa snd_hda_gen_add_micmute_led_cdev -EXPORT_SYMBOL_GPL sound/soc/codecs/mt6359-accdet 0x6d680888 mt6359_accdet_enable_jack_detect +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xa2198105 snd_hda_gen_update_outputs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xa5246978 snd_hda_get_path_from_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xa9102edf snd_hda_gen_build_controls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xa9f35516 snd_hda_gen_fix_pin_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xb016c677 snd_hda_gen_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xb987d580 snd_hda_get_path_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xc1af7a99 snd_hda_add_new_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xc6be94c7 snd_hda_gen_add_mute_led_cdev +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xcc5d5fee snd_hda_gen_mic_autoswitch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xd257bf00 snd_hda_gen_add_micmute_led_cdev +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xd9a621ea snd_hda_gen_free +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xde3c4f16 snd_hda_gen_path_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xf539153f snd_hda_gen_spec_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xf613448d snd_hda_gen_check_power_status +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xf640e177 snd_hda_gen_stream_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/mt6359-accdet 0x1a3174ad 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 0x48d69e3c adau1372_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0xca44e255 adau1761_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0xee2f78bd adau1761_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x0234eafb adau17x1_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x4bc750ba adau17x1_add_widgets -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x6f15dfd3 adau17x1_precious_register -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x75183c3f adau17x1_add_routes -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x85fb1757 adau17x1_set_micbias_voltage -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x86503eca adau17x1_dai_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x99cc5e64 adau17x1_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xbf3b3a4a adau17x1_resume -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xc4222a58 adau17x1_volatile_register -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xfab839eb adau17x1_readable_register -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau7118 0xab92c85c adau7118_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x005d08b2 arizona_dvfs_sysclk_ev -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x00b525ee arizona_set_fll -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x20a1a3f4 arizona_dvfs_down -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x2417b64c arizona_anc_input_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x269be04c arizona_dai_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x27ee89dc arizona_init_fll -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x28673001 arizona_init_dvfs -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x2f9090a5 arizona_init_spk -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x34d7de8b arizona_init_vol_limit -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x3a12698b arizona_voice_trigger_switch -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x40baae87 arizona_dvfs_up +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1372 0x534e7fd7 adau1372_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0x9cdc59c8 adau1761_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0xbaa20c62 adau1761_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x05defbd8 adau17x1_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x281e3b5f adau17x1_resume +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x36d8e49c adau17x1_set_micbias_voltage +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x38dcd390 adau17x1_add_routes +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x41753fc5 adau17x1_readable_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xbd06613b adau17x1_precious_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xe2b44798 adau17x1_add_widgets +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xea201217 adau17x1_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xf4fc84f0 adau17x1_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xf614379e adau17x1_volatile_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau7118 0xb864b58a adau7118_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x11ec6cb6 arizona_init_spk_irqs +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x1326632a arizona_jack_codec_dev_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x14877930 arizona_init_mono +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x199de2e4 arizona_eq_coeff_put +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x27d7a8cb arizona_jack_set_jack +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x2ab3dd5b arizona_init_spk +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x2f63ef7d arizona_in_dmic_osr +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x30b46452 arizona_ng_hold +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x3113e06f arizona_init_dvfs +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x4212855b arizona_lhpf_coeff_put +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x45cf3442 arizona_init_gpio EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x46277216 arizona_rate_val -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x4cecc842 arizona_simple_dai_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x4d6ebb15 arizona_lhpf3_mode -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x51a63853 arizona_init_dai -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x557b556e arizona_asrc_rate1 -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x6764b83d arizona_jack_codec_dev_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x47595ab3 arizona_clk_ev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x4e399df1 arizona_out_ev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x563f318d arizona_init_fll +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x5b4f3538 arizona_in_ev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x5c38d842 arizona_dvfs_up +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x5ec8d4fa arizona_isrc_fsl +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x5f4eaef4 arizona_output_anc_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x6092a9b1 arizona_asrc_rate1 EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x69102a20 arizona_sample_rate_text +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x6d6c2644 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 0x77f2c4e2 arizona_isrc_fsh -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x7b1482a2 arizona_init_spk_irqs -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x7b27e755 arizona_output_anc_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x788747ca arizona_lhpf3_mode EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x7f26f273 arizona_mixer_texts +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x7f651fa5 arizona_in_hpf_cut_enum 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 0x84d4fcb0 arizona_out_vd_ramp -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x88c9859b arizona_lhpf4_mode -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x994b7830 arizona_free_spk_irqs -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xa6853977 arizona_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x810ac184 arizona_anc_ev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x86452763 arizona_input_analog +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x928dda09 arizona_out_vd_ramp +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x9893fb94 arizona_in_vi_ramp +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x9a4d30c4 arizona_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x9cf06c8d arizona_init_dai +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x9d23c323 arizona_of_get_audio_pdata +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x9ee8d83d arizona_dvfs_down +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xa20c4322 arizona_adsp2_rate_controls +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xa34213c5 arizona_hp_ev EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xab4d845c arizona_rate_text -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xad7a074b arizona_in_vi_ramp -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xb0b145bd arizona_in_ev -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xb26fffa9 arizona_lhpf_coeff_put -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xb432c6a8 arizona_init_common -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xb91fda1a arizona_jack_codec_dev_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xbbf09742 arizona_jack_set_jack -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xbc7277ab arizona_in_hpf_cut_enum -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xc619d3f8 arizona_set_fll_refclk -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xc7b5d85c arizona_ng_hold +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xb43a0b23 arizona_simple_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xb53078d8 arizona_voice_trigger_switch +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xb6ce8fe8 arizona_init_vol_limit +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xba5ae63f arizona_set_output_mode +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xbb9871de arizona_set_fll +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xbd207944 arizona_lhpf4_mode +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xc2f3db10 arizona_init_common +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xc55996ec arizona_isrc_fsh EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xc9c29637 arizona_mixer_tlv -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xcc808038 arizona_of_get_audio_pdata -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xccad668b arizona_in_vd_ramp -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xcd5a8cbf arizona_hp_ev -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xd42a3f19 arizona_out_ev -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xdaf1aa3c arizona_lhpf1_mode -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xdc0c03a3 arizona_anc_ng_enum +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xca55251a arizona_anc_ng_enum +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xd4c87f3a arizona_jack_codec_dev_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xddc09f42 arizona_dvfs_sysclk_ev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xdef04c7e arizona_lhpf2_mode EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xdfe804b8 arizona_sample_rate_val -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xe43db65c arizona_clk_ev -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xe4ef749d arizona_set_output_mode -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xe5039d70 arizona_out_vi_ramp -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xe583effe arizona_adsp2_rate_controls -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xe7c5d71f arizona_init_gpio -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xeb19b0a1 arizona_lhpf2_mode -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xec6386f4 arizona_isrc_fsl -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xec748773 arizona_in_dmic_osr -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xf06e5282 arizona_anc_ev -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xf14651e2 arizona_input_analog -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xf6a3fb28 arizona_eq_coeff_put -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xf6c449b6 arizona_init_mono -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x17c99f18 cs4271_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x38816b6e cs4271_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xef1856e3 arizona_lhpf1_mode +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xf35abbc9 arizona_out_vi_ramp +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xf6d38e4e arizona_set_fll_refclk +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xf9449a54 arizona_in_vd_ramp +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xf9fdb1bf arizona_anc_input_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xfbf6bc7e arizona_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0x5741f5f6 cs35l41_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0xc5d4bebf cs35l41_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0xd95dd193 cs35l41_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x15b5dbc8 cs35l41_register_errata_patch +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x1841976b cs35l41_boost_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x665fac59 cs35l41_regmap_i2c +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x767a7b98 cs35l41_set_channels +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xc4e4257e cs35l41_test_key_unlock +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xd00aaa86 cs35l41_regmap_spi +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xd5d782dc cs35l41_otp_unpack +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xfff80bc6 cs35l41_test_key_lock EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x7d05786f cs4271_dt_ids -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x353a862e cs42l51_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x9c4adca7 cs4271_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0xaf7f8547 cs4271_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x16015f74 cs42l51_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x26c66e13 cs42l51_remove EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x375ad98c cs42l51_of_match -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x48bb23fe cs42l51_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x7526452f cs42l51_resume -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xb66416fc cs42l51_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xc6b23fe6 cs42l51_suspend +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x8dd26098 cs42l51_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x980f5936 cs42l51_resume +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xf6ca8b65 cs42l51_suspend EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x0245c4f2 cs42xx8_of_match -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x24996226 cs42xx8_pm -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x5009c987 cs42xx8_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x1c97261d cs42xx8_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x7928b58b cs42xx8_probe EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x7cac7292 cs42888_data -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xae61de9e cs42xx8_probe EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xcd3794c9 cs42448_data -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0x3f044ad8 da7219_aad_jack_det -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0x4185448e da7219_aad_exit -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0x811704ef da7219_aad_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0x90aef871 da7219_aad_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x8c334290 es8328_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0xc3427646 es8328_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98090 0xf053315e max98090_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98095 0x829224f5 max98095_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x12853152 soc_codec_dev_max98373_sdw -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x42e6a0ca max98373_reset -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x5c3ee5d4 soc_codec_dev_max98373 -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x6a830da6 max98373_slot_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0x16af3e8a mt6359_set_mtkaif_protocol -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0x627b911b mt6359_mtkaif_calibration_enable -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0xf7f07906 mt6359_mtkaif_calibration_disable -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0xf8de8625 mt6359_set_mtkaif_calibration_phase -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8824 0x12a284df nau8824_enable_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x4ff5025c pcm1789_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x67af1aca pcm1789_common_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x765681ca pcm1789_common_exit -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0x4845ae74 pcm179x_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0x9446310a pcm179x_common_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0x2d299036 pcm186x_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0x9f493461 pcm186x_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x2aed4f16 pcm3168a_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x6848bd1f pcm3168a_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x9afc0bf8 pcm3168a_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0xcfa96430 pcm3168a_pm_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x33a1b99c pcm512x_pm_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x5c8935b6 pcm512x_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x9070c62f pcm512x_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xac3bb0a9 pcm512x_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xdf1ed78e cs42xx8_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0x0d9d0dec da7219_aad_exit +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0x373e7579 da7219_aad_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0x59012d7d da7219_aad_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0xacc73a76 da7219_aad_jack_det +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x4ac6795f es8328_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0xb1c2809a es8328_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98090 0xecd3e0c8 max98090_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98095 0x638b9600 max98095_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x089579bf max98373_slot_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x275cc767 soc_codec_dev_max98373 +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x6b401f03 max98373_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0xb697e339 soc_codec_dev_max98373_sdw +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x94427b6c mt6358_set_mtkaif_protocol +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0xa21e6f43 mt6358_mtkaif_calibration_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0xa4f0f6d7 mt6358_mtkaif_calibration_disable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0xc04d0f2d mt6358_set_mtkaif_calibration_phase +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0x030be87f mt6359_set_mtkaif_calibration_phase +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0x9490c24b mt6359_mtkaif_calibration_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0xa2ccd664 mt6359_set_mtkaif_protocol +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0xaa1df048 mt6359_mtkaif_calibration_disable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8824 0x61aaeb86 nau8824_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x25db5490 pcm1789_common_exit +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0xcbe4520e pcm1789_common_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0xd6b19209 pcm1789_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0x5da12678 pcm179x_common_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0xd1013e21 pcm179x_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0x8d4cd9be pcm186x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0xbdda9662 pcm186x_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x3a67e16c pcm3168a_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x7d26bc5e pcm3168a_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0xbab9fc29 pcm3168a_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0xef4a75a8 pcm3168a_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x25dc9987 pcm512x_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xd5997630 pcm512x_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xe655541a pcm512x_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xfcec7c3e 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 0x554467a3 rt5514_spi_burst_read EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5514-spi 0xbb4583f6 rt5514_spi_burst_write -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x03fc0b87 rt5640_dmic_enable -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x04188773 rt5640_disable_micbias1_for_ovcd -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x092d00fc rt5640_set_ovcd_params -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x0e5a3333 rt5640_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x3785b977 rt5640_enable_micbias1_for_ovcd -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x4512f67c rt5640_detect_headset -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0x7f7c1ed7 rt5645_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0xe2607d95 rt5645_set_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5659 0xdf27a30e rt5659_set_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5663 0x77664390 rt5663_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677 0xc0ff2e34 rt5677_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x03140035 rt5640_detect_headset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x28a40f7c rt5640_disable_micbias1_for_ovcd +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x3c13157b rt5640_set_ovcd_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x9aeae62e rt5640_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xb1f60246 rt5640_enable_micbias1_for_ovcd +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xb6d353e7 rt5640_dmic_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0x65148937 rt5645_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0x759cae7e rt5645_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5659 0x4fb6e302 rt5659_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5663 0x2982a543 rt5663_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677 0x8bcc3d45 rt5677_sel_asrc_clk_src EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677-spi 0x425a794d rt5677_spi_write EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677-spi 0xa8c77592 rt5677_spi_read EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677-spi 0xc6695825 rt5677_spi_hotword_detected EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677-spi 0xf17750f8 rt5677_spi_write_firmware -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x06ba261f rt5682_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x07809307 rt5682_readable_register -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x088c61aa rt5682_apply_patch_list -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x26940f3c rt5682_headset_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x26bf5fed rt5682_aif2_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x22ac1c44 rt5682_apply_patch_list EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x28730696 rt5682_supply_names -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x290756b1 rt5682_parse_dt -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x5384bcb4 rt5682_volatile_register -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x7ac45c36 rt5682_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x5aa6ebed rt5682_soc_component_dev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x5b91cfc7 rt5682_aif1_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x706cb6c4 rt5682_calibrate +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x8f8b1f50 rt5682_volatile_register EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x91079df2 rt5682_jack_detect_handler -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x957ed5f2 rt5682_calibrate +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xae2a7942 rt5682_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xb0a674c4 rt5682_aif2_dai_ops EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xb897de56 rt5682_reg -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xcd88e4ee rt5682_aif1_dai_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xf97b682f rt5682_soc_component_dev -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x2f52429f devm_sigmadsp_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x3a69062f sigmadsp_restrict_params -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x43ce7998 sigmadsp_reset -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xad906345 sigmadsp_setup -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xfa3ce57e sigmadsp_attach -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-i2c 0xc51b854d devm_sigmadsp_init_i2c -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-regmap 0xd004eb95 devm_sigmadsp_init_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0xbb238429 ssm2602_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0xcda6e99b ssm2602_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic32x4 0x855d10d7 aic32x4_register_clocks -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic3x 0xa83d6d77 aic3x_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0x69865377 ts3a227e_enable_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-twl6040 0x09ef2e0c twl6040_get_hs_step_size -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-twl6040 0x0a98f86b twl6040_hs_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-twl6040 0x1817e492 twl6040_get_clk_id -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-twl6040 0x41459ea8 twl6040_get_trim_value -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-twl6040 0x73f1686c twl6040_get_dl1_gain +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xca520ec5 rt5682_headset_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xda90ec1b rt5682_readable_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xdaa9be61 rt5682_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xffb112a1 rt5682_parse_dt +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x19083fb9 sigmadsp_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x1fb5c85f sigmadsp_attach +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xceb368f2 sigmadsp_restrict_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xcef1ff16 sigmadsp_setup +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xff05b2de devm_sigmadsp_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-i2c 0x6a240c61 devm_sigmadsp_init_i2c +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-regmap 0xb0247eeb devm_sigmadsp_init_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x54e279ce ssm2602_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x610417ca ssm2602_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic32x4 0x1c29e503 aic32x4_register_clocks +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic3x 0x42fcecd3 aic3x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0xc25bd0c2 ts3a227e_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-twl6040 0x1dfc605a twl6040_get_hs_step_size +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-twl6040 0x4253b930 twl6040_get_trim_value +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-twl6040 0x7faa5dd3 twl6040_get_clk_id +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-twl6040 0x7fd97913 twl6040_get_dl1_gain +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-twl6040 0xaf226d60 twl6040_hs_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 0x16bba1d6 wcd938x_sdw_free -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x1ab2662d wcd938x_sdw_set_sdw_stream -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x1b85ef00 wcd938x_swr_get_current_bank -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x269a382b wcd938x_sdw_device_get -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0xd98c1919 wcd938x_sdw_hw_params -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x00c313c8 wm_adsp2_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x086dff14 wm_adsp_compr_handle_irq -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x2d3d17c7 wm_adsp2_component_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x41c3fc32 wm_adsp1_event -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x47b39362 wm_adsp_compr_copy -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x488de691 wm_adsp_compr_trigger -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x520c372a wm_adsp2_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x4d61fe30 wcd938x_sdw_set_sdw_stream +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x668bf753 wcd938x_sdw_hw_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0xcda2ff8e wcd938x_sdw_device_get +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0xdefd7e87 wcd938x_sdw_free +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0xe69f9db1 wcd938x_swr_get_current_bank +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x00ed3884 wm_adsp_read_ctl +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x0420b9a9 wm_adsp2_preloader_get +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x1ac4c9f4 wm_adsp_early_event +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x2499179d wm_adsp2_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x28024ad1 wm_adsp_event +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x4024d735 wm_adsp_compr_trigger 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 0x53d5a8c5 wm_adsp_compr_pointer -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x5e2e5b8a wm_adsp_write_ctl -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x78b7fc14 wm_adsp_compr_get_caps -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x795a8f0c wm_adsp_compr_open -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x8ce185ed wm_adsp_fw_get -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x91309109 wm_adsp1_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x94c6f5ad wm_adsp2_preloader_put -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xa6c82d49 wm_adsp2_preloader_get -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xba27f750 wm_adsp_read_ctl -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xbeef5d09 wm_adsp_fw_put -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xc0b9a432 wm_adsp_fw_enum -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xc92d8bbd wm_adsp_early_event -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xdbc10950 wm_adsp_compr_free +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x58cc068a wm_halo_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x6285a704 wm_adsp_compr_open +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x68eeabec wm_adsp_compr_pointer +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x6be48cff wm_adsp2_component_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x72eeaa97 wm_adsp_fw_get +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xb0345c9f wm_adsp2_component_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xb1255b3e wm_adsp_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xb2b0a737 wm_adsp_write_ctl +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xb4451df8 wm_adsp_compr_copy +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xb96ee743 wm_adsp2_preloader_put +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xc052b86b wm_adsp_fw_enum +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xc3ab5c24 wm_adsp1_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xc83e8855 wm_adsp_compr_get_caps +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xcbe21480 wm_adsp_compr_handle_irq +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xcfa0f47d wm_adsp_fw_put +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xdb7bf2f5 wm_adsp1_event EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xdd3c79ef wm_adsp2_bus_error -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xe580ad12 wm_adsp2_component_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xe6a9c9d4 wm_adsp_compr_set_params -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xe8e03bee wm_adsp_event +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xde40685e wm_adsp2_set_dspclk 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 0xfa0dd557 wm_halo_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xfa82f75a wm_adsp2_set_dspclk -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x28d60c68 wm_hubs_vmid_ena +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xeedb55c4 wm_adsp2_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xf40acb1e wm_adsp_compr_free +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x05fefbb3 wm_hubs_handle_analogue_pdata +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x1ce49b30 wm_hubs_set_bias_level +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x1d895ea8 wm_hubs_update_class_w +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x5bda4445 wm_hubs_vmid_ena EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x5cd7eb9b wm_hubs_dcs_done EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x757206d5 wm_hubs_spkmix_tlv -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x8a0da92b wm_hubs_hpl_mux -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x924bcdf4 wm_hubs_handle_analogue_pdata -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xa32b3a4f wm_hubs_add_analogue_routes -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xb3d1cac0 wm_hubs_hpr_mux -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xdd747e10 wm_hubs_set_bias_level -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xf6e03010 wm_hubs_update_class_w -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xfa395b40 wm_hubs_add_analogue_controls -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x1b95b5f4 wm8804_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x77c49a0c wm8804_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x87daa09a wm8804_pm -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xe46d8481 wm8804_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0x1bf2313a wm8903_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0xe6959e8f wm8962_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8994 0x10bbd860 wm8994_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8994 0x45e55776 wm8958_mic_detect -EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0xbc87497b fsl_asrc_component -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-audio-graph-card 0x4778828b audio_graph_parse_of -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x0debea71 asoc_simple_init_priv -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x23b68139 asoc_simple_remove -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x2cb5637b asoc_simple_parse_card_name -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x4135a17a asoc_simple_init_jack -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x504e4c3e asoc_simple_parse_routing -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x5d2249db asoc_simple_be_hw_params_fixup -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x66e2c127 asoc_graph_card_probe -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x838876f0 asoc_simple_clean_reference -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x8d3d09d8 asoc_simple_parse_convert -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x98684aec asoc_simple_parse_clk -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xb2d5f17f asoc_simple_startup -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xb6ab5d96 asoc_simple_dai_init -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xbe0876bd asoc_simple_canonicalize_platform -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xc5df7f65 asoc_simple_hw_params -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xd11af486 asoc_simple_canonicalize_cpu -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xe003aa3c asoc_simple_set_dailink_name -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xe620c290 asoc_simple_shutdown -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xee9ae5e1 asoc_simple_parse_pin_switches -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xefcca571 asoc_simple_parse_widgets +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x98437847 wm_hubs_hpl_mux +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xa19f1bac wm_hubs_hpr_mux +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xc0825832 wm_hubs_add_analogue_routes +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xf9ad016a wm_hubs_add_analogue_controls +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x515c5f38 wm8804_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x69154328 wm8804_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x6ed2f8f9 wm8804_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xe9f80839 wm8804_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0x4da4b7c6 wm8903_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0xfb053e8e wm8962_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8994 0x824efbd3 wm8994_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8994 0xf090e599 wm8958_mic_detect +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0x88a13b86 fsl_asrc_component +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-audio-graph-card 0x06f7e800 audio_graph_parse_of +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x0041aa59 asoc_simple_be_hw_params_fixup +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x03034c30 asoc_simple_shutdown +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x04af9c1e asoc_simple_init_priv +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x25d74b9f asoc_simple_parse_daifmt +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x2b8f5cd5 asoc_simple_remove +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x2eafa87f asoc_simple_parse_widgets +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x33351629 asoc_simple_init_jack +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x40257a4a asoc_simple_hw_params +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x6bfa469a asoc_simple_dai_init +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x78879d9f asoc_simple_clean_reference +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x86c320ed asoc_simple_parse_routing +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x8d5d12ec asoc_graph_card_probe +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x95060604 asoc_simple_parse_convert +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xa4e54953 asoc_simple_canonicalize_cpu +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xb9702dde asoc_simple_parse_pin_switches +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xbc046f1f asoc_simple_startup +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xc846a8a3 asoc_simple_parse_clk +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xd02407cc asoc_simple_parse_card_name +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xe56d8505 asoc_simple_set_dailink_name EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xf3bafb75 asoc_simple_convert_fixup -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xfc99dcb9 asoc_simple_parse_daifmt -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x08c5b570 mtk_afe_fe_shutdown -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x2135f97a mtk_memif_set_addr -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x22d7a590 mtk_afe_pcm_pointer -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x2b0fbeec mtk_afe_fe_prepare -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x365a1b0b mtk_dynamic_irq_acquire -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x3d7217fc mtk_memif_set_channel -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x402e7cd4 mtk_afe_fe_trigger -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x43b0d90a mtk_dynamic_irq_release -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x4adcef1c mtk_memif_set_rate -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x52f8dd5d mtk_afe_fe_hw_free -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x72ab9864 mtk_memif_set_rate_substream -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x797ea800 mtk_memif_set_enable -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x7ce3d820 mtk_afe_suspend -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x9a8f9779 mtk_memif_set_pbuf_size -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x9acbb465 mtk_afe_fe_hw_params -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x9b44811e mtk_afe_pcm_new -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x9ee0c7e2 mtk_afe_combine_sub_dai -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xba89b75f mtk_afe_fe_ops -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xc6a81460 mtk_afe_fe_startup -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xce41d836 mtk_afe_resume -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xce54fcfa mtk_afe_pcm_platform -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xd77dbd2b mtk_afe_add_sub_dai_control -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xf7854056 mtk_memif_set_disable -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xff169502 mtk_memif_set_format -EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8195/snd-soc-mt8195-afe 0x1efd1dc7 mt8195_afe_enable_clk -EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8195/snd-soc-mt8195-afe 0x479d2eb0 mt8195_afe_disable_clk -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x10c62db6 axg_fifo_pcm_close -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x197934cc axg_fifo_pcm_trigger -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x2c138713 g12a_fifo_pcm_hw_params -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x4365650e axg_fifo_pcm_open -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x4a5818f9 axg_fifo_probe -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x6c625ce8 axg_fifo_pcm_hw_free -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xb3ce3221 axg_fifo_pcm_pointer -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xf18142a8 axg_fifo_pcm_hw_params -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xfa7cb120 axg_fifo_pcm_new -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x0be7182c axg_tdm_formatter_event +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xf509b73c asoc_simple_canonicalize_platform +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x042179fb mtk_afe_suspend +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x07edebe0 mtk_afe_resume +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x1521f7ef mtk_memif_set_disable +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x180b80b3 mtk_afe_pcm_new +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x1878b7b6 mtk_afe_pcm_platform +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x3c961e10 mtk_afe_combine_sub_dai +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x4d9ea5e7 mtk_memif_set_rate_substream +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x5295826c mtk_dynamic_irq_release +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x5db6cde2 mtk_memif_set_channel +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x6428b1dd mtk_afe_fe_shutdown +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x65035d5f mtk_afe_fe_hw_params +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x66e22788 mtk_afe_fe_hw_free +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x719785ad mtk_memif_set_format +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x7669e5fa mtk_afe_fe_trigger +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x76be25a4 mtk_dynamic_irq_acquire +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x7a5ff2e0 mtk_afe_fe_ops +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x7c252e73 mtk_memif_set_addr +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x8c35dc2e mtk_afe_pcm_pointer +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x8c552276 mtk_afe_add_sub_dai_control +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x8c583820 mtk_afe_fe_prepare +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x998100a7 mtk_memif_set_pbuf_size +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xb15ce2b1 mtk_afe_fe_startup +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xda5f5e64 mtk_memif_set_enable +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xeaa1f1d1 mtk_memif_set_rate +EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8195/snd-soc-mt8195-afe 0x517e05bb mt8195_afe_enable_clk +EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8195/snd-soc-mt8195-afe 0x65547b58 mt8195_afe_disable_clk +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x0c58faba axg_fifo_pcm_hw_free +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x0f1c8075 axg_fifo_probe +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x16652306 axg_fifo_pcm_trigger +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x2fff0248 axg_fifo_pcm_close +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x4cfff445 axg_fifo_pcm_open +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x777862c9 axg_fifo_pcm_pointer +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xc41f1c1b g12a_fifo_pcm_hw_params +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xd54e11fb axg_fifo_pcm_new +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xded89828 axg_fifo_pcm_hw_params EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x14468237 axg_tdm_formatter_set_channel_masks EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x314f9f02 axg_tdm_stream_alloc -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x33748507 axg_tdm_formatter_probe EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x443d22ba axg_tdm_stream_free EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x506c837c axg_tdm_stream_stop +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x5172ba3d axg_tdm_formatter_probe EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x970060bd axg_tdm_stream_start -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-interface 0xd2683762 axg_tdm_set_tdm_slots -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x0261a083 meson_card_probe -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x0f7a7639 meson_card_reallocate_links -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x4f060413 meson_card_remove -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x549a39ce meson_card_set_fe_link -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0xae404a39 meson_card_i2s_set_sysclk -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0xb8bd9614 meson_card_set_be_link -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0xca69fb4a meson_card_parse_daifmt -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0xfade9ce7 meson_card_parse_dai -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x49fecaf9 meson_codec_glue_input_get_data -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x4dd628df meson_codec_glue_input_set_fmt -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x56db6923 meson_codec_glue_output_startup -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x628395c1 meson_codec_glue_input_dai_probe -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0xc337a1bd meson_codec_glue_input_hw_params -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0xc8021fe9 meson_codec_glue_input_dai_remove -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0x095d913e q6adm_close -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0x1e1f4b9c q6adm_open +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0xdb0d883f axg_tdm_formatter_event +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-interface 0x61c0c854 axg_tdm_set_tdm_slots +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x3206728e meson_card_set_be_link +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x7544e9f0 meson_card_parse_daifmt +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x90c1fa9a meson_card_remove +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x95ce4962 meson_card_set_fe_link +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0xb231b6af meson_card_i2s_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0xd9a1f35d meson_card_parse_dai +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0xdd37489d meson_card_reallocate_links +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0xf2c6bf41 meson_card_probe +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x0008518d meson_codec_glue_input_set_fmt +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x11ea262d meson_codec_glue_input_get_data +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x33543657 meson_codec_glue_input_hw_params +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x35e30c24 meson_codec_glue_input_dai_probe +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x9bee531a meson_codec_glue_input_dai_remove +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0xb5bb257d meson_codec_glue_output_startup +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0x1bd7fff2 q6adm_matrix_map EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0x28421460 q6adm_get_copp_id -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0x798db627 q6adm_matrix_map +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0x388f3f40 q6adm_close +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0xf228968d q6adm_open EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x07a54780 q6afe_cdc_dma_port_prepare -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x0c5dbc63 q6afe_set_lpass_clock EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x369b6eeb q6afe_port_put EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x3b16d6e7 q6afe_port_stop EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x498d993b q6afe_get_port_id EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x5332304f q6afe_slim_port_prepare EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x7df60063 q6afe_port_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x96692d45 q6afe_set_lpass_clock EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0xae809786 q6afe_hdmi_port_prepare EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0xd4523c59 q6afe_i2s_port_prepare +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0xd955d492 q6afe_port_get_from_id EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0xe45246a8 q6afe_port_start -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0xf0763880 q6afe_port_get_from_id EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0xfaf22370 q6afe_tdm_port_prepare EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x13b7efd9 q6asm_cmd EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x1b6c77fc q6asm_stream_media_format_block_alac @@ -18525,40 +18579,40 @@ EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xcbee5e42 q6asm_stream_remove_initial_silence EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xcc4952e4 q6asm_audio_client_free EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xd2cf1a0f q6asm_run -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xd2ef9e32 q6asm_audio_client_alloc EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xd38aa312 q6asm_cmd_nowait EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xf47f4b35 q6asm_stream_media_format_block_ape +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xf8dcec38 q6asm_audio_client_alloc 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/q6dsp-common 0x17142e58 q6dsp_map_channels 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/snd-soc-lpass-cpu 0x016f0510 asoc_qcom_lpass_cpu_platform_probe -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x0f020337 asoc_qcom_lpass_cpu_platform_shutdown -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x2603c848 asoc_qcom_lpass_cpu_platform_remove -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0xb5165f6f asoc_qcom_lpass_cpu_dai_ops -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0xf4b703c5 asoc_qcom_lpass_cpu_dai_probe -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0xf9f1b15a lpass_cpu_pcm_new -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-hdmi 0x9218ae3f asoc_qcom_lpass_hdmi_dai_ops -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-platform 0x12f03d0a asoc_qcom_lpass_platform_register -EXPORT_SYMBOL_GPL sound/soc/rockchip/snd-soc-rockchip-pcm 0x14390a1d rockchip_pcm_platform_register +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x02e0aedb asoc_qcom_lpass_cpu_dai_ops +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x4fe3ca57 asoc_qcom_lpass_cpu_platform_remove +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x6743ecfd lpass_cpu_pcm_new +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0xa341f51c asoc_qcom_lpass_cpu_platform_shutdown +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0xb019b1ed asoc_qcom_lpass_cpu_platform_probe +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0xdeda59c5 asoc_qcom_lpass_cpu_dai_probe +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-hdmi 0x5ea32f5b asoc_qcom_lpass_hdmi_dai_ops +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-platform 0xbc6eaded asoc_qcom_lpass_platform_register +EXPORT_SYMBOL_GPL sound/soc/rockchip/snd-soc-rockchip-pcm 0x9b10ac78 rockchip_pcm_platform_register EXPORT_SYMBOL_GPL sound/soc/samsung/snd-soc-idma 0x0340de96 idma_reg_addr_init -EXPORT_SYMBOL_GPL sound/soc/samsung/snd-soc-s3c-dma 0x6d2c3c5e samsung_asoc_dma_platform_register -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x21c54b02 snd_sof_dbg_init -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x22541e69 snd_sof_debugfs_io_item -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x430bf75d snd_sof_dbg_memory_info_init -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x649b8750 snd_sof_free_debug -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0xe69b5bec snd_sof_debugfs_buf_item -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-machine 0x348ae377 tegra_asoc_machine_probe -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-machine 0x404981cc tegra_asoc_machine_init -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x0ed4afc0 tegra_pcm_open -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x37c0747a tegra_pcm_construct -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x6bba99fd tegra_pcm_platform_register_with_chan_names -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x705c0633 tegra_pcm_pointer -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0xa1af43cb tegra_pcm_platform_register -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0xaceac953 tegra_pcm_close -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0xf422e6ab tegra_pcm_hw_params -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0xff7b8fe9 tegra_pcm_platform_unregister +EXPORT_SYMBOL_GPL sound/soc/samsung/snd-soc-s3c-dma 0x1961c475 samsung_asoc_dma_platform_register +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x21143d3d snd_sof_debugfs_buf_item +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x442a9444 snd_sof_debugfs_io_item +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x633148fc snd_sof_free_debug +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x6848efbd snd_sof_dbg_init +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0xaf2bde9c snd_sof_dbg_memory_info_init +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-machine 0x1b216d0c tegra_asoc_machine_probe +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-machine 0x803c947e tegra_asoc_machine_init +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x23f3793c tegra_pcm_pointer +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x2d5d7c11 tegra_pcm_platform_register_with_chan_names +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x4c1b7a00 tegra_pcm_hw_params +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x561a6e2a tegra_pcm_construct +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x74b6afe9 tegra_pcm_open +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x8685dd64 tegra_pcm_platform_unregister +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0xc13b47f7 tegra_pcm_platform_register +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0xfff7f580 tegra_pcm_close EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra20-das 0x0d54c9b9 tegra20_das_connect_dap_to_dac EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra20-das 0xb52cfca4 tegra20_das_connect_dac_to_dap EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra20-das 0xbced7431 tegra20_das_connect_dap_to_dap @@ -18577,6618 +18631,6626 @@ -EXPORT_SYMBOL_GPL sound/soc/ti/snd-soc-omap-mcbsp 0x5c593e79 omap_mcbsp_st_add_controls -EXPORT_SYMBOL_GPL sound/soc/ti/snd-soc-omap-mcpdm 0xf48315a1 omap_mcpdm_configure_dn_offsets -EXPORT_SYMBOL_GPL sound/soc/ti/snd-soc-ti-edma 0xbc96b361 edma_pcm_platform_register -EXPORT_SYMBOL_GPL sound/soc/ti/snd-soc-ti-sdma 0xca070901 sdma_pcm_platform_register -EXPORT_SYMBOL_GPL sound/soc/ti/snd-soc-ti-udma 0x7e3715ab udma_pcm_platform_register -EXPORT_SYMBOL_GPL sound/soc/uniphier/snd-soc-uniphier-aio-cpu 0x1229a9b5 uniphier_aio_dai_remove -EXPORT_SYMBOL_GPL sound/soc/uniphier/snd-soc-uniphier-aio-cpu 0x1995bea2 uniphier_aio_i2s_ops -EXPORT_SYMBOL_GPL sound/soc/uniphier/snd-soc-uniphier-aio-cpu 0x298d19aa uniphier_aio_dai_probe -EXPORT_SYMBOL_GPL sound/soc/uniphier/snd-soc-uniphier-aio-cpu 0x758889b4 uniphier_aio_probe -EXPORT_SYMBOL_GPL sound/soc/uniphier/snd-soc-uniphier-aio-cpu 0x967d8c3b uniphier_aiodma_soc_register_platform -EXPORT_SYMBOL_GPL sound/soc/uniphier/snd-soc-uniphier-aio-cpu 0xa185fc07 uniphier_aio_spdif_ops -EXPORT_SYMBOL_GPL sound/soc/uniphier/snd-soc-uniphier-aio-cpu 0xf7cc4835 uniphier_aio_remove -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x063d864b line6_read_data -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x0f7d8766 line6_send_raw_message_async -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x1989399e line6_pcm_acquire +EXPORT_SYMBOL_GPL sound/soc/ti/snd-soc-omap-mcbsp 0xccef7114 omap_mcbsp_st_add_controls +EXPORT_SYMBOL_GPL sound/soc/ti/snd-soc-omap-mcpdm 0x424bb6e8 omap_mcpdm_configure_dn_offsets +EXPORT_SYMBOL_GPL sound/soc/ti/snd-soc-ti-edma 0x1f236a93 edma_pcm_platform_register +EXPORT_SYMBOL_GPL sound/soc/ti/snd-soc-ti-sdma 0xfe3262c1 sdma_pcm_platform_register +EXPORT_SYMBOL_GPL sound/soc/ti/snd-soc-ti-udma 0xe1ac52da udma_pcm_platform_register +EXPORT_SYMBOL_GPL sound/soc/uniphier/snd-soc-uniphier-aio-cpu 0x08793840 uniphier_aio_remove +EXPORT_SYMBOL_GPL sound/soc/uniphier/snd-soc-uniphier-aio-cpu 0x1debc5b2 uniphier_aiodma_soc_register_platform +EXPORT_SYMBOL_GPL sound/soc/uniphier/snd-soc-uniphier-aio-cpu 0x949ba4bf uniphier_aio_dai_probe +EXPORT_SYMBOL_GPL sound/soc/uniphier/snd-soc-uniphier-aio-cpu 0x9512753b uniphier_aio_spdif_ops +EXPORT_SYMBOL_GPL sound/soc/uniphier/snd-soc-uniphier-aio-cpu 0x9824d903 uniphier_aio_probe +EXPORT_SYMBOL_GPL sound/soc/uniphier/snd-soc-uniphier-aio-cpu 0xf08ab83e uniphier_aio_i2s_ops +EXPORT_SYMBOL_GPL sound/soc/uniphier/snd-soc-uniphier-aio-cpu 0xfc92617e uniphier_aio_dai_remove +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x077b0086 line6_init_midi +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x0ae82712 line6_init_pcm EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x202a1b1b line6_midi_id -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x2cf51e64 line6_send_sysex_message -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x46a9148f line6_send_raw_message -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x57bfb707 line6_probe -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x6478f759 line6_read_serial_number -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x6d6b57ea line6_write_data -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xbc995c54 line6_version_request_async -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xbe6d148f line6_resume -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xd73a934f line6_disconnect -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xd8d6db06 line6_suspend -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xea4da75b line6_pcm_release -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xef93500d line6_init_pcm -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xfa3c7f05 line6_init_midi -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xfbc66ae7 line6_alloc_sysex_buffer +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x264a6199 line6_write_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x6d28fb51 line6_send_raw_message_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x77a004ac line6_read_serial_number +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x80202aaa line6_send_sysex_message +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x815b830a line6_alloc_sysex_buffer +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x817bbf13 line6_disconnect +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x82375ed4 line6_probe +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x8460ebe5 line6_read_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xb7aea8fb line6_send_raw_message +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xbddce8b7 line6_pcm_acquire +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xc005fdf0 line6_resume +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xc0be793f line6_pcm_release +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xe342c614 line6_suspend +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xf7099e7d line6_version_request_async EXPORT_SYMBOL_GPL virt/lib/irqbypass 0x3fe35aea irq_bypass_unregister_consumer EXPORT_SYMBOL_GPL virt/lib/irqbypass 0x418873cc irq_bypass_register_producer EXPORT_SYMBOL_GPL virt/lib/irqbypass 0x888c5be5 irq_bypass_register_consumer EXPORT_SYMBOL_GPL virt/lib/irqbypass 0xf6e772c3 irq_bypass_unregister_producer -EXPORT_SYMBOL_GPL vmlinux 0x001abc5b __get_mtd_device -EXPORT_SYMBOL_GPL vmlinux 0x001db587 mbox_request_channel_byname -EXPORT_SYMBOL_GPL vmlinux 0x00274ddc pinctrl_get_group_pins -EXPORT_SYMBOL_GPL vmlinux 0x002e379e cpufreq_dbs_governor_exit -EXPORT_SYMBOL_GPL vmlinux 0x0035cfcb driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0x00428b51 unregister_virtio_driver -EXPORT_SYMBOL_GPL vmlinux 0x0043a6a6 tc3589x_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x004e6dd2 is_current_mnt_ns +EXPORT_SYMBOL_GPL vmlinux 0x000753a3 irq_create_fwspec_mapping +EXPORT_SYMBOL_GPL vmlinux 0x001e8717 gadget_find_ep_by_name +EXPORT_SYMBOL_GPL vmlinux 0x00471de6 mtk_pinconf_bias_get_combo EXPORT_SYMBOL_GPL vmlinux 0x00513f58 get_timespec64 +EXPORT_SYMBOL_GPL vmlinux 0x0052a057 nfnl_ct_hook EXPORT_SYMBOL_GPL vmlinux 0x0053e821 tracepoint_probe_register_prio_may_exist -EXPORT_SYMBOL_GPL vmlinux 0x0056f9bc blk_req_needs_zone_write_lock -EXPORT_SYMBOL_GPL vmlinux 0x005fe6fc cpufreq_cooling_unregister EXPORT_SYMBOL_GPL vmlinux 0x00632780 work_busy -EXPORT_SYMBOL_GPL vmlinux 0x0064bd2c tpm_chip_unregister -EXPORT_SYMBOL_GPL vmlinux 0x006f1a7e wm831x_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0x00741125 mmu_interval_notifier_insert -EXPORT_SYMBOL_GPL vmlinux 0x0080a23c usb_pipe_type_check -EXPORT_SYMBOL_GPL vmlinux 0x00a7039e pci_epc_get -EXPORT_SYMBOL_GPL vmlinux 0x00b6a3e0 xdp_build_skb_from_frame -EXPORT_SYMBOL_GPL vmlinux 0x00b989be fuse_dev_alloc -EXPORT_SYMBOL_GPL vmlinux 0x00c0165b fl6_merge_options -EXPORT_SYMBOL_GPL vmlinux 0x00c09a18 usb_submit_urb -EXPORT_SYMBOL_GPL vmlinux 0x00cc24bb serdev_device_set_baudrate +EXPORT_SYMBOL_GPL vmlinux 0x006e3ab4 bus_set_iommu +EXPORT_SYMBOL_GPL vmlinux 0x00723d6d snd_soc_of_put_dai_link_codecs +EXPORT_SYMBOL_GPL vmlinux 0x007b44fb snd_soc_component_init_regmap +EXPORT_SYMBOL_GPL vmlinux 0x00881ace ata_sff_tf_read +EXPORT_SYMBOL_GPL vmlinux 0x00916dd0 blkcg_root_css +EXPORT_SYMBOL_GPL vmlinux 0x009bcf49 pci_user_write_config_word +EXPORT_SYMBOL_GPL vmlinux 0x00b1cd8c hisi_clk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x00cd1469 vring_create_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x00d3ccf1 iommu_group_remove_device EXPORT_SYMBOL_GPL vmlinux 0x00d4c500 usb_decode_interval -EXPORT_SYMBOL_GPL vmlinux 0x00f1df39 mmu_notifier_put -EXPORT_SYMBOL_GPL vmlinux 0x0118e493 __phy_modify_mmd -EXPORT_SYMBOL_GPL vmlinux 0x01233fcc ata_scsi_port_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x0127eaff extcon_get_edev_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x013ac4aa pci_find_ext_capability -EXPORT_SYMBOL_GPL vmlinux 0x013c7b8f vfs_submount -EXPORT_SYMBOL_GPL vmlinux 0x0147911c tegra_bpmp_get -EXPORT_SYMBOL_GPL vmlinux 0x014c1a8a devm_fwnode_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x00dca698 irq_chip_set_type_parent +EXPORT_SYMBOL_GPL vmlinux 0x00e3a46d fscrypt_set_test_dummy_encryption +EXPORT_SYMBOL_GPL vmlinux 0x00e7a8d9 usb_gadget_connect +EXPORT_SYMBOL_GPL vmlinux 0x00f9cd18 dev_pm_opp_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0x00fe2174 crypto_alloc_kpp +EXPORT_SYMBOL_GPL vmlinux 0x01177572 of_modalias_node +EXPORT_SYMBOL_GPL vmlinux 0x0123eb72 of_dma_configure_id +EXPORT_SYMBOL_GPL vmlinux 0x0137c2bd rio_route_get_entry +EXPORT_SYMBOL_GPL vmlinux 0x0137f3a9 path_noexec +EXPORT_SYMBOL_GPL vmlinux 0x014492e8 udp_destruct_sock +EXPORT_SYMBOL_GPL vmlinux 0x0145ead3 usb_of_has_combined_node EXPORT_SYMBOL_GPL vmlinux 0x014e8186 cpu_scale -EXPORT_SYMBOL_GPL vmlinux 0x0151f39e regulator_set_suspend_voltage -EXPORT_SYMBOL_GPL vmlinux 0x015863ea unregister_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x015ee324 qcom_smem_state_get -EXPORT_SYMBOL_GPL vmlinux 0x01661c4a strp_unpause -EXPORT_SYMBOL_GPL vmlinux 0x01768755 __phy_modify_mmd_changed -EXPORT_SYMBOL_GPL vmlinux 0x017e10cd wm8350_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x01595dad __mmdrop +EXPORT_SYMBOL_GPL vmlinux 0x016a0781 eventfd_ctx_fileget +EXPORT_SYMBOL_GPL vmlinux 0x01732424 of_property_read_u64 EXPORT_SYMBOL_GPL vmlinux 0x01866a57 ezx_pcap_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x01a10f6b of_find_spi_device_by_node -EXPORT_SYMBOL_GPL vmlinux 0x01a72840 devm_spi_register_controller -EXPORT_SYMBOL_GPL vmlinux 0x01b64d01 fixed_phy_unregister -EXPORT_SYMBOL_GPL vmlinux 0x01c6ad18 phy_modify_mmd +EXPORT_SYMBOL_GPL vmlinux 0x019f5d55 nvmem_cell_read_u32 +EXPORT_SYMBOL_GPL vmlinux 0x01c4d75a tpm_get_timeouts EXPORT_SYMBOL_GPL vmlinux 0x01c6cb0c cpu_cluster_pm_enter -EXPORT_SYMBOL_GPL vmlinux 0x01ddd854 of_clk_del_provider -EXPORT_SYMBOL_GPL vmlinux 0x01e121bb regmap_get_val_bytes +EXPORT_SYMBOL_GPL vmlinux 0x01ced973 crypto_inst_setname +EXPORT_SYMBOL_GPL vmlinux 0x01db7c79 sdio_retune_hold_now +EXPORT_SYMBOL_GPL vmlinux 0x01dea4fb blkg_rwstat_recursive_sum EXPORT_SYMBOL_GPL vmlinux 0x01e1a8de kgdb_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x01f303f9 relay_open +EXPORT_SYMBOL_GPL vmlinux 0x01ebac7f ping_common_sendmsg +EXPORT_SYMBOL_GPL vmlinux 0x01eca16e irq_domain_update_bus_token +EXPORT_SYMBOL_GPL vmlinux 0x01ff7cce proc_create_net_single_write +EXPORT_SYMBOL_GPL vmlinux 0x0203d8f6 user_read +EXPORT_SYMBOL_GPL vmlinux 0x02064949 md_account_bio EXPORT_SYMBOL_GPL vmlinux 0x0207a6c6 reset_control_bulk_acquire -EXPORT_SYMBOL_GPL vmlinux 0x020a7bfd devfreq_cooling_em_register -EXPORT_SYMBOL_GPL vmlinux 0x021b9da7 device_wakeup_enable -EXPORT_SYMBOL_GPL vmlinux 0x021c1576 dev_pm_domain_set -EXPORT_SYMBOL_GPL vmlinux 0x02280823 led_set_brightness_nopm -EXPORT_SYMBOL_GPL vmlinux 0x0228cd74 sec_irq_init -EXPORT_SYMBOL_GPL vmlinux 0x022d2016 pci_epc_get_msi -EXPORT_SYMBOL_GPL vmlinux 0x02388ec1 bpf_map_inc_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x0209196a of_clk_get_parent_name +EXPORT_SYMBOL_GPL vmlinux 0x023339d2 hwmon_device_register EXPORT_SYMBOL_GPL vmlinux 0x02394899 play_idle_precise -EXPORT_SYMBOL_GPL vmlinux 0x0239d075 scsi_ioctl_block_when_processing_errors -EXPORT_SYMBOL_GPL vmlinux 0x024e3f89 tcpv6_prot +EXPORT_SYMBOL_GPL vmlinux 0x023b456c devm_spi_register_controller +EXPORT_SYMBOL_GPL vmlinux 0x024265bd usb_sg_init +EXPORT_SYMBOL_GPL vmlinux 0x025452e3 mmu_interval_notifier_insert +EXPORT_SYMBOL_GPL vmlinux 0x02692c83 snd_soc_dai_compr_trigger EXPORT_SYMBOL_GPL vmlinux 0x026f3380 btree_lookup -EXPORT_SYMBOL_GPL vmlinux 0x02820f62 platform_unregister_drivers -EXPORT_SYMBOL_GPL vmlinux 0x02842df6 wm8350_block_write -EXPORT_SYMBOL_GPL vmlinux 0x0286a553 __trace_note_message -EXPORT_SYMBOL_GPL vmlinux 0x028ea86a sdio_claim_host -EXPORT_SYMBOL_GPL vmlinux 0x028ffec6 sched_set_normal -EXPORT_SYMBOL_GPL vmlinux 0x02a6cdbf dm_set_target_max_io_len -EXPORT_SYMBOL_GPL vmlinux 0x02b0d373 __netif_set_xps_queue -EXPORT_SYMBOL_GPL vmlinux 0x02b3bfca paste_selection -EXPORT_SYMBOL_GPL vmlinux 0x02b9492b gpiochip_irq_domain_activate -EXPORT_SYMBOL_GPL vmlinux 0x02bad69c device_property_read_u32_array -EXPORT_SYMBOL_GPL vmlinux 0x02c1c608 gpiochip_add_data_with_key +EXPORT_SYMBOL_GPL vmlinux 0x0280499e devm_free_percpu +EXPORT_SYMBOL_GPL vmlinux 0x0287fdf3 tpm_pcr_read +EXPORT_SYMBOL_GPL vmlinux 0x028c6001 devm_clk_unregister +EXPORT_SYMBOL_GPL vmlinux 0x028fded5 nvmem_cell_read_variable_le_u32 +EXPORT_SYMBOL_GPL vmlinux 0x02a15f47 rio_mport_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x02baac81 pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0x02c1c02f phy_validate EXPORT_SYMBOL_GPL vmlinux 0x02c4c456 rhashtable_walk_exit +EXPORT_SYMBOL_GPL vmlinux 0x02e1e2ec snd_soc_runtime_action +EXPORT_SYMBOL_GPL vmlinux 0x02e2cdc5 pm_runtime_get_if_active EXPORT_SYMBOL_GPL vmlinux 0x02ea61a6 dax_flush -EXPORT_SYMBOL_GPL vmlinux 0x02f9fad3 __platform_driver_probe +EXPORT_SYMBOL_GPL vmlinux 0x02eca2bd xhci_run +EXPORT_SYMBOL_GPL vmlinux 0x0300a9ab fwnode_usb_role_switch_get +EXPORT_SYMBOL_GPL vmlinux 0x0305e3c5 regulator_list_voltage_linear EXPORT_SYMBOL_GPL vmlinux 0x0312b3b0 reset_controller_add_lookup +EXPORT_SYMBOL_GPL vmlinux 0x0317ded4 blk_rq_unprep_clone +EXPORT_SYMBOL_GPL vmlinux 0x031838fb edac_pci_alloc_ctl_info EXPORT_SYMBOL_GPL vmlinux 0x031cb2ab sched_trace_rd_span EXPORT_SYMBOL_GPL vmlinux 0x0321cdbf of_alias_get_highest_id -EXPORT_SYMBOL_GPL vmlinux 0x03294d9d device_create_file +EXPORT_SYMBOL_GPL vmlinux 0x03261144 pci_get_dsn +EXPORT_SYMBOL_GPL vmlinux 0x0328695c scsi_get_vpd_page EXPORT_SYMBOL_GPL vmlinux 0x03315f0c btree_destroy EXPORT_SYMBOL_GPL vmlinux 0x033832c7 usb_amd_hang_symptom_quirk +EXPORT_SYMBOL_GPL vmlinux 0x033a4222 rio_unregister_driver EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list -EXPORT_SYMBOL_GPL vmlinux 0x034c1bbf virtqueue_poll -EXPORT_SYMBOL_GPL vmlinux 0x036cac72 ata_scsi_unlock_native_capacity +EXPORT_SYMBOL_GPL vmlinux 0x03509b3f pm_generic_runtime_resume EXPORT_SYMBOL_GPL vmlinux 0x036d8e9b klist_add_tail -EXPORT_SYMBOL_GPL vmlinux 0x0375ad99 ping_unhash -EXPORT_SYMBOL_GPL vmlinux 0x037d26c1 mtk_eint_do_resume -EXPORT_SYMBOL_GPL vmlinux 0x03926761 debugfs_write_file_bool +EXPORT_SYMBOL_GPL vmlinux 0x037149f0 fib_info_nh_uses_dev +EXPORT_SYMBOL_GPL vmlinux 0x03728f13 dev_xdp_prog_count +EXPORT_SYMBOL_GPL vmlinux 0x0384ab0d ip_route_output_tunnel EXPORT_SYMBOL_GPL vmlinux 0x03952887 ktime_add_safe +EXPORT_SYMBOL_GPL vmlinux 0x039531d1 __traceiter_devlink_hwmsg +EXPORT_SYMBOL_GPL vmlinux 0x0399b65e iommu_attach_device EXPORT_SYMBOL_GPL vmlinux 0x03b2623e __tracepoint_devlink_trap_report -EXPORT_SYMBOL_GPL vmlinux 0x03b6280e __traceiter_pelt_cfs_tp -EXPORT_SYMBOL_GPL vmlinux 0x03bbf4de dst_blackhole_redirect -EXPORT_SYMBOL_GPL vmlinux 0x03d0107e usb_get_dr_mode -EXPORT_SYMBOL_GPL vmlinux 0x03d7a6dc sdhci_setup_host -EXPORT_SYMBOL_GPL vmlinux 0x03dfff59 edac_pci_free_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0x03b5a62b serdev_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0x03b60867 __fscrypt_prepare_readdir +EXPORT_SYMBOL_GPL vmlinux 0x03d1b49c gpiod_is_active_low +EXPORT_SYMBOL_GPL vmlinux 0x03d497b0 mmu_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x03dbcff9 clone_private_mount EXPORT_SYMBOL_GPL vmlinux 0x03e28260 sbitmap_queue_wake_up -EXPORT_SYMBOL_GPL vmlinux 0x03ea013a snd_soc_dapm_ignore_suspend -EXPORT_SYMBOL_GPL vmlinux 0x03eb230e crypto_register_alg -EXPORT_SYMBOL_GPL vmlinux 0x03ec8e65 of_phy_simple_xlate -EXPORT_SYMBOL_GPL vmlinux 0x03fe6d81 set_selection_kernel -EXPORT_SYMBOL_GPL vmlinux 0x04076ad6 mtk_pinconf_bias_get_rev1 -EXPORT_SYMBOL_GPL vmlinux 0x040a2453 of_devfreq_cooling_register_power -EXPORT_SYMBOL_GPL vmlinux 0x041284be icc_get EXPORT_SYMBOL_GPL vmlinux 0x042c9a04 em_cpu_get -EXPORT_SYMBOL_GPL vmlinux 0x043e3b9f mtk_pinconf_bias_disable_set -EXPORT_SYMBOL_GPL vmlinux 0x043f902b led_set_brightness_sync -EXPORT_SYMBOL_GPL vmlinux 0x0441d791 devfreq_get_devfreq_by_node -EXPORT_SYMBOL_GPL vmlinux 0x0457c050 scsi_dh_attach +EXPORT_SYMBOL_GPL vmlinux 0x04372294 iommu_unregister_device_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0x044748b8 led_set_brightness_nosleep +EXPORT_SYMBOL_GPL vmlinux 0x044b6427 platform_get_irq_byname +EXPORT_SYMBOL_GPL vmlinux 0x045a23d2 tcp_register_congestion_control EXPORT_SYMBOL_GPL vmlinux 0x0465a073 regmap_reg_in_ranges +EXPORT_SYMBOL_GPL vmlinux 0x046e5a27 iommu_unmap EXPORT_SYMBOL_GPL vmlinux 0x046f359e of_overlay_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x04789c41 proc_create_net_data -EXPORT_SYMBOL_GPL vmlinux 0x0484fb02 pci_enable_pcie_error_reporting -EXPORT_SYMBOL_GPL vmlinux 0x048677c6 task_active_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0x04895457 nand_ecc_init_req_tweaking EXPORT_SYMBOL_GPL vmlinux 0x048b5f8d twl4030_audio_get_mclk -EXPORT_SYMBOL_GPL vmlinux 0x048c100a blk_abort_request -EXPORT_SYMBOL_GPL vmlinux 0x048d5188 usb_role_switch_register -EXPORT_SYMBOL_GPL vmlinux 0x0495c5ec class_interface_register -EXPORT_SYMBOL_GPL vmlinux 0x049d0cd0 iommu_unmap +EXPORT_SYMBOL_GPL vmlinux 0x04a9bf95 ethnl_cable_test_amplitude EXPORT_SYMBOL_GPL vmlinux 0x04ae4635 trace_handle_return -EXPORT_SYMBOL_GPL vmlinux 0x04b2c633 amba_device_add -EXPORT_SYMBOL_GPL vmlinux 0x04be4f44 uart_console_device +EXPORT_SYMBOL_GPL vmlinux 0x04ba8427 pm_generic_poweroff EXPORT_SYMBOL_GPL vmlinux 0x04c4f603 mpi_get_buffer EXPORT_SYMBOL_GPL vmlinux 0x04c8aebf console_verbose -EXPORT_SYMBOL_GPL vmlinux 0x04d2e0cb serial8250_rpm_get -EXPORT_SYMBOL_GPL vmlinux 0x04d94caf of_device_modalias +EXPORT_SYMBOL_GPL vmlinux 0x04cae40b devm_regulator_put EXPORT_SYMBOL_GPL vmlinux 0x04dcce4e remove_resource EXPORT_SYMBOL_GPL vmlinux 0x04e1b99f snd_pcm_std_chmaps -EXPORT_SYMBOL_GPL vmlinux 0x04eaeb69 uart_console_write -EXPORT_SYMBOL_GPL vmlinux 0x04f2a57d fwnode_graph_get_remote_port -EXPORT_SYMBOL_GPL vmlinux 0x04fd9771 fb_deferred_io_init -EXPORT_SYMBOL_GPL vmlinux 0x05250fc6 usb_lock_device_for_reset -EXPORT_SYMBOL_GPL vmlinux 0x0527f708 dma_free_pages -EXPORT_SYMBOL_GPL vmlinux 0x0527fdc6 snd_soc_dapm_new_widgets +EXPORT_SYMBOL_GPL vmlinux 0x04e39f37 spi_new_device +EXPORT_SYMBOL_GPL vmlinux 0x051f7101 gpiod_get_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x05212bfc devlink_trap_policers_unregister EXPORT_SYMBOL_GPL vmlinux 0x052c9aed ktime_get_real_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x052cea77 device_set_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0x052d8650 dev_pm_opp_remove +EXPORT_SYMBOL_GPL vmlinux 0x053c6c2c __percpu_init_rwsem EXPORT_SYMBOL_GPL vmlinux 0x053d738a __SCK__tp_func_br_fdb_update -EXPORT_SYMBOL_GPL vmlinux 0x0548cfe8 relay_flush +EXPORT_SYMBOL_GPL vmlinux 0x053f25a9 usb_register_device_driver +EXPORT_SYMBOL_GPL vmlinux 0x0542ef36 mtk_pinconf_bias_get +EXPORT_SYMBOL_GPL vmlinux 0x05482f59 skb_append_pagefrags EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt -EXPORT_SYMBOL_GPL vmlinux 0x054fc6de alloc_page_buffers -EXPORT_SYMBOL_GPL vmlinux 0x055c6381 sysfs_remove_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x055d8e68 vp_modern_get_num_queues -EXPORT_SYMBOL_GPL vmlinux 0x055e4652 devm_platform_get_and_ioremap_resource EXPORT_SYMBOL_GPL vmlinux 0x05610897 of_changeset_destroy -EXPORT_SYMBOL_GPL vmlinux 0x0561bcf5 devres_get +EXPORT_SYMBOL_GPL vmlinux 0x0562178e mptcp_subflow_request_sock_ops EXPORT_SYMBOL_GPL vmlinux 0x05641313 imx_clk_hw_sscg_pll -EXPORT_SYMBOL_GPL vmlinux 0x056432a7 anon_inode_getfile +EXPORT_SYMBOL_GPL vmlinux 0x057649e4 tty_buffer_set_limit +EXPORT_SYMBOL_GPL vmlinux 0x057b2c44 gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x057d4ecb dax_region_put +EXPORT_SYMBOL_GPL vmlinux 0x057f1844 fwnode_handle_put +EXPORT_SYMBOL_GPL vmlinux 0x0584f214 pcie_reset_flr +EXPORT_SYMBOL_GPL vmlinux 0x0584f4db access_process_vm EXPORT_SYMBOL_GPL vmlinux 0x05883efb __traceiter_suspend_resume -EXPORT_SYMBOL_GPL vmlinux 0x0595610d dm_post_suspending -EXPORT_SYMBOL_GPL vmlinux 0x059b38eb regulator_set_voltage_time_sel +EXPORT_SYMBOL_GPL vmlinux 0x05914302 bpf_map_inc +EXPORT_SYMBOL_GPL vmlinux 0x05917386 devlink_port_type_ib_set +EXPORT_SYMBOL_GPL vmlinux 0x0599def6 device_wakeup_disable +EXPORT_SYMBOL_GPL vmlinux 0x059d9173 pingv6_ops EXPORT_SYMBOL_GPL vmlinux 0x05a12e98 __tracepoint_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0x05b3c136 snd_soc_dapm_info_pin_switch EXPORT_SYMBOL_GPL vmlinux 0x05c93cab __tracepoint_non_standard_event -EXPORT_SYMBOL_GPL vmlinux 0x05d9705a mnt_want_write_file -EXPORT_SYMBOL_GPL vmlinux 0x05dd5795 sdhci_pltfm_clk_get_max_clock -EXPORT_SYMBOL_GPL vmlinux 0x05fadabc snd_soc_dapm_disable_pin -EXPORT_SYMBOL_GPL vmlinux 0x060af2f0 fixed_phy_set_link_update +EXPORT_SYMBOL_GPL vmlinux 0x05d38e54 __dma_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x05e00353 wbt_disable_default +EXPORT_SYMBOL_GPL vmlinux 0x060b770b xdp_rxq_info_is_reg EXPORT_SYMBOL_GPL vmlinux 0x06122337 atomic_notifier_chain_unregister EXPORT_SYMBOL_GPL vmlinux 0x06209f49 phy_lookup_setting +EXPORT_SYMBOL_GPL vmlinux 0x0624b32b dev_pm_qos_update_request EXPORT_SYMBOL_GPL vmlinux 0x0626da5f od_unregister_powersave_bias_handler -EXPORT_SYMBOL_GPL vmlinux 0x062c0d8f spi_replace_transfers -EXPORT_SYMBOL_GPL vmlinux 0x0636e71b device_show_bool -EXPORT_SYMBOL_GPL vmlinux 0x06391106 skb_mpls_dec_ttl -EXPORT_SYMBOL_GPL vmlinux 0x06495e41 serdev_device_write_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x06349258 tps65912_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x06396431 snd_soc_put_volsw_range +EXPORT_SYMBOL_GPL vmlinux 0x064c8116 nand_readid_op EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry -EXPORT_SYMBOL_GPL vmlinux 0x06508cd8 crypto_alg_mod_lookup -EXPORT_SYMBOL_GPL vmlinux 0x065b3a0f crypto_shash_update -EXPORT_SYMBOL_GPL vmlinux 0x06665045 sk_msg_recvmsg -EXPORT_SYMBOL_GPL vmlinux 0x066f2676 of_alias_get_id -EXPORT_SYMBOL_GPL vmlinux 0x066f563e mtd_get_device_size -EXPORT_SYMBOL_GPL vmlinux 0x0682bdaa skb_zerocopy -EXPORT_SYMBOL_GPL vmlinux 0x068ba474 devm_regmap_init_vexpress_config -EXPORT_SYMBOL_GPL vmlinux 0x0694aa4c ehci_init_driver -EXPORT_SYMBOL_GPL vmlinux 0x06a6ef71 lwtunnel_cmp_encap -EXPORT_SYMBOL_GPL vmlinux 0x06a707d5 sdhci_start_signal_voltage_switch +EXPORT_SYMBOL_GPL vmlinux 0x066539a4 mpc8xxx_spi_tx_buf_u32 +EXPORT_SYMBOL_GPL vmlinux 0x06684045 tpm_chip_start +EXPORT_SYMBOL_GPL vmlinux 0x0673d957 __get_task_comm +EXPORT_SYMBOL_GPL vmlinux 0x067cc5d6 fib_nl_newrule +EXPORT_SYMBOL_GPL vmlinux 0x06871a31 dm_table_set_type +EXPORT_SYMBOL_GPL vmlinux 0x068fe303 spi_mem_driver_register_with_owner +EXPORT_SYMBOL_GPL vmlinux 0x06ab0c36 mtd_lock_user_prot_reg +EXPORT_SYMBOL_GPL vmlinux 0x06b1a6aa iommu_detach_device EXPORT_SYMBOL_GPL vmlinux 0x06b53bd2 memalloc_socks_key -EXPORT_SYMBOL_GPL vmlinux 0x06bf67eb ipv6_bpf_stub -EXPORT_SYMBOL_GPL vmlinux 0x06bfc112 crypto_alloc_base EXPORT_SYMBOL_GPL vmlinux 0x06cca30b ring_buffer_record_off -EXPORT_SYMBOL_GPL vmlinux 0x06d25187 sysfs_change_owner EXPORT_SYMBOL_GPL vmlinux 0x06d2b195 btree_init -EXPORT_SYMBOL_GPL vmlinux 0x06deaeaf dw_pcie_host_init EXPORT_SYMBOL_GPL vmlinux 0x06e92aea nl_table_lock -EXPORT_SYMBOL_GPL vmlinux 0x06eb2e0a netdev_rx_handler_unregister -EXPORT_SYMBOL_GPL vmlinux 0x06eb5124 regmap_attach_dev -EXPORT_SYMBOL_GPL vmlinux 0x06f1d2c7 pci_epf_alloc_space -EXPORT_SYMBOL_GPL vmlinux 0x06f44c02 inet_csk_listen_stop -EXPORT_SYMBOL_GPL vmlinux 0x06f54609 tty_standard_install -EXPORT_SYMBOL_GPL vmlinux 0x06fb3a79 snd_soc_component_set_sysclk -EXPORT_SYMBOL_GPL vmlinux 0x07159099 da903x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x06f066e4 usb_gadget_udc_reset EXPORT_SYMBOL_GPL vmlinux 0x07242d92 put_dax +EXPORT_SYMBOL_GPL vmlinux 0x072ccd96 misc_cg_try_charge +EXPORT_SYMBOL_GPL vmlinux 0x072cd766 fscrypt_ioctl_add_key EXPORT_SYMBOL_GPL vmlinux 0x0732ce1a sbitmap_queue_wake_all +EXPORT_SYMBOL_GPL vmlinux 0x07400d5b pci_host_probe EXPORT_SYMBOL_GPL vmlinux 0x07483e13 cn_del_callback -EXPORT_SYMBOL_GPL vmlinux 0x07526d7c snd_soc_rtdcom_lookup -EXPORT_SYMBOL_GPL vmlinux 0x075d6530 mtk_mmsys_ddp_disconnect -EXPORT_SYMBOL_GPL vmlinux 0x075e6fdb dm_bio_from_per_bio_data +EXPORT_SYMBOL_GPL vmlinux 0x0752b2cc pci_ecam_free +EXPORT_SYMBOL_GPL vmlinux 0x075d6d37 pinctrl_find_gpio_range_from_pin +EXPORT_SYMBOL_GPL vmlinux 0x075f0179 input_ff_create +EXPORT_SYMBOL_GPL vmlinux 0x075fd189 screen_glyph_unicode EXPORT_SYMBOL_GPL vmlinux 0x076356e7 sfp_may_have_phy EXPORT_SYMBOL_GPL vmlinux 0x07646cee ata_tf_to_fis -EXPORT_SYMBOL_GPL vmlinux 0x0779fddf sysfs_update_groups -EXPORT_SYMBOL_GPL vmlinux 0x0791723c rio_mport_get_efb -EXPORT_SYMBOL_GPL vmlinux 0x07938ed8 vfs_removexattr -EXPORT_SYMBOL_GPL vmlinux 0x07982b60 snd_soc_dapm_get_volsw -EXPORT_SYMBOL_GPL vmlinux 0x0799277f mtd_block_isbad -EXPORT_SYMBOL_GPL vmlinux 0x07afc185 extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x0767b966 kthread_flush_worker +EXPORT_SYMBOL_GPL vmlinux 0x077e91c0 led_trigger_read +EXPORT_SYMBOL_GPL vmlinux 0x078cdfff syscon_regmap_lookup_by_phandle_args +EXPORT_SYMBOL_GPL vmlinux 0x07972cb8 sdhci_execute_tuning +EXPORT_SYMBOL_GPL vmlinux 0x079fdcb4 kthread_queue_work EXPORT_SYMBOL_GPL vmlinux 0x07b21f85 kdb_get_kbd_char -EXPORT_SYMBOL_GPL vmlinux 0x07b44344 phy_save_page +EXPORT_SYMBOL_GPL vmlinux 0x07b4aa4c mmc_pwrseq_unregister EXPORT_SYMBOL_GPL vmlinux 0x07b52e38 rtnl_unregister -EXPORT_SYMBOL_GPL vmlinux 0x07b8d397 snd_soc_dai_compr_startup +EXPORT_SYMBOL_GPL vmlinux 0x07bcbd5d skb_mpls_push EXPORT_SYMBOL_GPL vmlinux 0x07be6905 net_inc_egress_queue -EXPORT_SYMBOL_GPL vmlinux 0x07c1fdc5 mtk_pinconf_drive_get -EXPORT_SYMBOL_GPL vmlinux 0x07cb9071 nvmem_device_find -EXPORT_SYMBOL_GPL vmlinux 0x07e9210a devm_blk_ksm_init -EXPORT_SYMBOL_GPL vmlinux 0x07ee78bd debugfs_rename +EXPORT_SYMBOL_GPL vmlinux 0x07c0026f of_thermal_get_trip_points +EXPORT_SYMBOL_GPL vmlinux 0x07d0bd6c of_dma_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0x07d0f634 __traceiter_tcp_bad_csum +EXPORT_SYMBOL_GPL vmlinux 0x07e050bd mtk_eint_do_resume +EXPORT_SYMBOL_GPL vmlinux 0x07e5298b snd_soc_of_parse_tdm_slot +EXPORT_SYMBOL_GPL vmlinux 0x07eb2e2a device_set_wakeup_capable +EXPORT_SYMBOL_GPL vmlinux 0x07ef8929 rtc_class_open EXPORT_SYMBOL_GPL vmlinux 0x07f5bfed __tracepoint_neigh_cleanup_and_release -EXPORT_SYMBOL_GPL vmlinux 0x080d496b wait_for_stable_page +EXPORT_SYMBOL_GPL vmlinux 0x080314b7 fsverity_file_open +EXPORT_SYMBOL_GPL vmlinux 0x08039ff7 ncsi_vlan_rx_add_vid EXPORT_SYMBOL_GPL vmlinux 0x08135613 dax_write_cache -EXPORT_SYMBOL_GPL vmlinux 0x081358c3 task_cputime_adjusted -EXPORT_SYMBOL_GPL vmlinux 0x08199858 of_property_read_string_helper -EXPORT_SYMBOL_GPL vmlinux 0x0828d609 mc146818_get_time -EXPORT_SYMBOL_GPL vmlinux 0x0830fb97 clk_hw_is_prepared -EXPORT_SYMBOL_GPL vmlinux 0x084e3392 sdio_set_block_size -EXPORT_SYMBOL_GPL vmlinux 0x086c3d33 tty_ldisc_deref -EXPORT_SYMBOL_GPL vmlinux 0x08702f20 bpf_trace_run4 -EXPORT_SYMBOL_GPL vmlinux 0x08799a7c pm_runtime_barrier +EXPORT_SYMBOL_GPL vmlinux 0x0831fde7 vp_modern_get_queue_size +EXPORT_SYMBOL_GPL vmlinux 0x08370dab pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0x08383a41 __devm_regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0x084a17a1 __devm_irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0x0871fde4 spi_finalize_current_transfer +EXPORT_SYMBOL_GPL vmlinux 0x087a8423 rio_mport_get_feature EXPORT_SYMBOL_GPL vmlinux 0x087f5dc5 wm831x_of_match -EXPORT_SYMBOL_GPL vmlinux 0x08a3c7c9 ip6_local_out -EXPORT_SYMBOL_GPL vmlinux 0x08bc0a47 perf_pmu_migrate_context -EXPORT_SYMBOL_GPL vmlinux 0x08c4448c pm_clk_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0x08cc9046 clk_hw_get_name -EXPORT_SYMBOL_GPL vmlinux 0x08d64ce9 ahci_platform_resume_host -EXPORT_SYMBOL_GPL vmlinux 0x08da023f xdp_attachment_setup -EXPORT_SYMBOL_GPL vmlinux 0x08efa5e3 __crypto_alloc_tfm -EXPORT_SYMBOL_GPL vmlinux 0x09032365 rio_get_comptag -EXPORT_SYMBOL_GPL vmlinux 0x09133064 get_net_ns_by_pid -EXPORT_SYMBOL_GPL vmlinux 0x0913e187 pwm_adjust_config -EXPORT_SYMBOL_GPL vmlinux 0x091c4b16 init_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x088bc58d usb_match_id +EXPORT_SYMBOL_GPL vmlinux 0x08b0adb8 bpf_prog_create +EXPORT_SYMBOL_GPL vmlinux 0x08b2b299 usb_phy_set_charger_state +EXPORT_SYMBOL_GPL vmlinux 0x08d84511 iommu_domain_free +EXPORT_SYMBOL_GPL vmlinux 0x08fce033 of_usb_host_tpl_support +EXPORT_SYMBOL_GPL vmlinux 0x08ff35ac usb_gadget_probe_driver +EXPORT_SYMBOL_GPL vmlinux 0x091221b0 gpiod_export_link +EXPORT_SYMBOL_GPL vmlinux 0x091c9445 platform_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x091e93d1 crypto_lookup_template EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies -EXPORT_SYMBOL_GPL vmlinux 0x092bd352 metadata_dst_free -EXPORT_SYMBOL_GPL vmlinux 0x092d21d5 mmput -EXPORT_SYMBOL_GPL vmlinux 0x093de9ec input_ff_event +EXPORT_SYMBOL_GPL vmlinux 0x09264ce6 snd_pcm_hw_constraint_eld +EXPORT_SYMBOL_GPL vmlinux 0x0928e43f pci_cfg_access_lock +EXPORT_SYMBOL_GPL vmlinux 0x092fb0c9 dev_queue_xmit_nit +EXPORT_SYMBOL_GPL vmlinux 0x09393b31 snd_soc_dapm_new_controls +EXPORT_SYMBOL_GPL vmlinux 0x093e3ba0 crypto_skcipher_decrypt EXPORT_SYMBOL_GPL vmlinux 0x09492220 musb_mailbox -EXPORT_SYMBOL_GPL vmlinux 0x094b0fba sbitmap_bitmap_show -EXPORT_SYMBOL_GPL vmlinux 0x0952c074 devm_request_pci_bus_resources -EXPORT_SYMBOL_GPL vmlinux 0x09556fd5 of_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0x0961ccd4 snd_soc_get_dai_id -EXPORT_SYMBOL_GPL vmlinux 0x096b558c skb_splice_bits -EXPORT_SYMBOL_GPL vmlinux 0x0974392f sysfs_remove_file_ns -EXPORT_SYMBOL_GPL vmlinux 0x0976cd47 usb_sg_cancel -EXPORT_SYMBOL_GPL vmlinux 0x0979deed debugfs_create_file_size -EXPORT_SYMBOL_GPL vmlinux 0x09973e23 of_usb_host_tpl_support +EXPORT_SYMBOL_GPL vmlinux 0x0960f9db bpf_offload_dev_netdev_register +EXPORT_SYMBOL_GPL vmlinux 0x0961f3a0 nd_tbl +EXPORT_SYMBOL_GPL vmlinux 0x097f7d6b validate_xmit_xfrm +EXPORT_SYMBOL_GPL vmlinux 0x0991c761 snd_soc_register_component EXPORT_SYMBOL_GPL vmlinux 0x09a13d16 usb_ep_enable -EXPORT_SYMBOL_GPL vmlinux 0x09b08910 crypto_unregister_templates +EXPORT_SYMBOL_GPL vmlinux 0x09a157c9 phy_put +EXPORT_SYMBOL_GPL vmlinux 0x09a97db9 ata_port_wait_eh +EXPORT_SYMBOL_GPL vmlinux 0x09b3343e virtqueue_get_buf_ctx EXPORT_SYMBOL_GPL vmlinux 0x09b53e14 interval_tree_remove -EXPORT_SYMBOL_GPL vmlinux 0x09cc4873 seg6_do_srh_encap -EXPORT_SYMBOL_GPL vmlinux 0x09d13732 snd_soc_component_initialize -EXPORT_SYMBOL_GPL vmlinux 0x09d875c9 mtd_blktrans_cease_background -EXPORT_SYMBOL_GPL vmlinux 0x09d99490 ip_build_and_send_pkt +EXPORT_SYMBOL_GPL vmlinux 0x09b851cb iomap_releasepage +EXPORT_SYMBOL_GPL vmlinux 0x09cb5d62 vfs_cancel_lock +EXPORT_SYMBOL_GPL vmlinux 0x09e1f1c4 crypto_unregister_shash EXPORT_SYMBOL_GPL vmlinux 0x09e53260 __tracepoint_pelt_dl_tp -EXPORT_SYMBOL_GPL vmlinux 0x09e56909 blk_poll EXPORT_SYMBOL_GPL vmlinux 0x09e913c1 snd_pcm_alt_chmaps -EXPORT_SYMBOL_GPL vmlinux 0x09f88dbc iommu_sva_get_pasid -EXPORT_SYMBOL_GPL vmlinux 0x0a107d1c usb_anchor_urb -EXPORT_SYMBOL_GPL vmlinux 0x0a26b0c6 tpm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0x09eefc97 rio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x09f9def6 __devm_clk_hw_register_divider +EXPORT_SYMBOL_GPL vmlinux 0x09fb6329 spi_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x0a116bff regulator_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x0a1d6cca gpiochip_add_data_with_key +EXPORT_SYMBOL_GPL vmlinux 0x0a1f3eec shash_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x0a20da3d governor_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0x0a257b59 unix_inq_len EXPORT_SYMBOL_GPL vmlinux 0x0a3408e4 cpuidle_disable_device -EXPORT_SYMBOL_GPL vmlinux 0x0a356988 debugfs_create_x64 -EXPORT_SYMBOL_GPL vmlinux 0x0a3cc66f mmc_send_status -EXPORT_SYMBOL_GPL vmlinux 0x0a45d098 sock_diag_register_inet_compat -EXPORT_SYMBOL_GPL vmlinux 0x0a4dc4cc bio_iov_iter_get_pages -EXPORT_SYMBOL_GPL vmlinux 0x0a5d5900 blk_next_bio +EXPORT_SYMBOL_GPL vmlinux 0x0a46cff7 sdhci_request +EXPORT_SYMBOL_GPL vmlinux 0x0a48a3dc snd_soc_bytes_tlv_callback +EXPORT_SYMBOL_GPL vmlinux 0x0a5e2180 __ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0x0a5f60b3 tty_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0x0a64ce18 cpufreq_freq_attr_scaling_available_freqs EXPORT_SYMBOL_GPL vmlinux 0x0a6c4041 cn_netlink_send -EXPORT_SYMBOL_GPL vmlinux 0x0a6e8d76 ptp_classify_raw -EXPORT_SYMBOL_GPL vmlinux 0x0a73561f ata_sff_exec_command -EXPORT_SYMBOL_GPL vmlinux 0x0a860dce crypto_rng_reset -EXPORT_SYMBOL_GPL vmlinux 0x0a8886cb clk_bulk_get_optional -EXPORT_SYMBOL_GPL vmlinux 0x0a8dd28d vfs_getxattr -EXPORT_SYMBOL_GPL vmlinux 0x0ac89d67 l3mdev_table_lookup_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0acf0f85 scsi_eh_ready_devs -EXPORT_SYMBOL_GPL vmlinux 0x0ae68002 skb_copy_ubufs -EXPORT_SYMBOL_GPL vmlinux 0x0af69cf4 security_file_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x0af8b878 serdev_device_close +EXPORT_SYMBOL_GPL vmlinux 0x0a73da8b sdio_writel +EXPORT_SYMBOL_GPL vmlinux 0x0a7973d1 pci_enable_pasid +EXPORT_SYMBOL_GPL vmlinux 0x0a7d3e33 regmap_mmio_attach_clk +EXPORT_SYMBOL_GPL vmlinux 0x0a900f56 clk_hw_round_rate +EXPORT_SYMBOL_GPL vmlinux 0x0a945d88 perf_event_refresh +EXPORT_SYMBOL_GPL vmlinux 0x0a976776 inet_csk_route_child_sock +EXPORT_SYMBOL_GPL vmlinux 0x0a988a34 rio_mport_get_physefb +EXPORT_SYMBOL_GPL vmlinux 0x0aa44f25 __inet_twsk_schedule +EXPORT_SYMBOL_GPL vmlinux 0x0ac163f7 scmi_protocol_register +EXPORT_SYMBOL_GPL vmlinux 0x0ac43eed pinctrl_utils_reserve_map +EXPORT_SYMBOL_GPL vmlinux 0x0adf6a99 adp5520_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x0ae294c2 snd_soc_new_ac97_component +EXPORT_SYMBOL_GPL vmlinux 0x0af1e738 regmap_raw_read +EXPORT_SYMBOL_GPL vmlinux 0x0af92ec0 genphy_c45_aneg_done +EXPORT_SYMBOL_GPL vmlinux 0x0b070275 set_task_ioprio EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct -EXPORT_SYMBOL_GPL vmlinux 0x0b0a592e root_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0b1030e2 spi_mem_default_supports_op +EXPORT_SYMBOL_GPL vmlinux 0x0b163be3 dapm_regulator_event EXPORT_SYMBOL_GPL vmlinux 0x0b19b18f register_kretprobes -EXPORT_SYMBOL_GPL vmlinux 0x0b289e66 mtd_erase EXPORT_SYMBOL_GPL vmlinux 0x0b2970fe klist_iter_init -EXPORT_SYMBOL_GPL vmlinux 0x0b2a42bb ata_sas_tport_add -EXPORT_SYMBOL_GPL vmlinux 0x0b3bb131 dev_attr_link_power_management_policy +EXPORT_SYMBOL_GPL vmlinux 0x0b37f53d dm_hold EXPORT_SYMBOL_GPL vmlinux 0x0b4a8834 musb_writeb -EXPORT_SYMBOL_GPL vmlinux 0x0b4a9675 pci_epc_destroy -EXPORT_SYMBOL_GPL vmlinux 0x0b4ee82e snd_ctl_activate_id -EXPORT_SYMBOL_GPL vmlinux 0x0b52f905 of_prop_next_u32 -EXPORT_SYMBOL_GPL vmlinux 0x0b582e90 crypto_alloc_akcipher -EXPORT_SYMBOL_GPL vmlinux 0x0b75cd29 iommu_uapi_cache_invalidate -EXPORT_SYMBOL_GPL vmlinux 0x0b860eb5 crypto_unregister_akcipher -EXPORT_SYMBOL_GPL vmlinux 0x0b8d05e7 xfrm_audit_state_notfound -EXPORT_SYMBOL_GPL vmlinux 0x0b91f910 tty_port_register_device_attr -EXPORT_SYMBOL_GPL vmlinux 0x0ba3fde8 ata_dev_set_feature +EXPORT_SYMBOL_GPL vmlinux 0x0b55c3af of_irq_parse_and_map_pci +EXPORT_SYMBOL_GPL vmlinux 0x0b68ee59 pci_sriov_get_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0x0b69dc3f regmap_reinit_cache +EXPORT_SYMBOL_GPL vmlinux 0x0b803170 xhci_get_ep_ctx +EXPORT_SYMBOL_GPL vmlinux 0x0b83163f crypto_stats_compress +EXPORT_SYMBOL_GPL vmlinux 0x0b867297 nand_get_large_page_hamming_ooblayout +EXPORT_SYMBOL_GPL vmlinux 0x0b9110e4 mmc_send_abort_tuning +EXPORT_SYMBOL_GPL vmlinux 0x0b9c0cb8 skb_cow_data +EXPORT_SYMBOL_GPL vmlinux 0x0ba97849 pci_epf_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x0ba9e2ee firmware_request_nowarn EXPORT_SYMBOL_GPL vmlinux 0x0bb028d4 hisi_clk_register_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0x0bb57ad9 pci_epc_get_msix +EXPORT_SYMBOL_GPL vmlinux 0x0bbf90de bus_get_device_klist EXPORT_SYMBOL_GPL vmlinux 0x0bc1ec1e __sbitmap_queue_get +EXPORT_SYMBOL_GPL vmlinux 0x0be23846 devm_regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x0be3f58a strp_stop +EXPORT_SYMBOL_GPL vmlinux 0x0be5b401 scsi_host_complete_all_commands +EXPORT_SYMBOL_GPL vmlinux 0x0be737ec bpf_prog_get_type_dev EXPORT_SYMBOL_GPL vmlinux 0x0bf32478 __SCK__tp_func_pelt_rt_tp -EXPORT_SYMBOL_GPL vmlinux 0x0bf3aa6d crypto_unregister_aead -EXPORT_SYMBOL_GPL vmlinux 0x0bf851cd devm_kstrdup_const EXPORT_SYMBOL_GPL vmlinux 0x0bfa3a19 rcu_idle_exit -EXPORT_SYMBOL_GPL vmlinux 0x0c15fb72 relay_buf_full -EXPORT_SYMBOL_GPL vmlinux 0x0c1c218c snd_soc_dai_compr_set_metadata +EXPORT_SYMBOL_GPL vmlinux 0x0c0f84b4 spi_statistics_add_transfer_stats +EXPORT_SYMBOL_GPL vmlinux 0x0c1458f6 wm831x_auxadc_read +EXPORT_SYMBOL_GPL vmlinux 0x0c1e7e51 irq_chip_set_wake_parent EXPORT_SYMBOL_GPL vmlinux 0x0c303f52 bch_encode EXPORT_SYMBOL_GPL vmlinux 0x0c32ff8a edac_pci_alloc_index -EXPORT_SYMBOL_GPL vmlinux 0x0c371093 of_cpufreq_cooling_register -EXPORT_SYMBOL_GPL vmlinux 0x0c3719fc cpufreq_table_index_unsorted -EXPORT_SYMBOL_GPL vmlinux 0x0c3c2b99 device_property_read_u8_array -EXPORT_SYMBOL_GPL vmlinux 0x0c3fdf2b regulator_set_bypass_regmap -EXPORT_SYMBOL_GPL vmlinux 0x0c41c095 devm_hwspin_lock_request -EXPORT_SYMBOL_GPL vmlinux 0x0c52f9c1 regmap_check_range_table -EXPORT_SYMBOL_GPL vmlinux 0x0c5ee039 devm_platform_ioremap_resource -EXPORT_SYMBOL_GPL vmlinux 0x0c601cbc mddev_resume -EXPORT_SYMBOL_GPL vmlinux 0x0c6cc4b6 __pci_epc_create -EXPORT_SYMBOL_GPL vmlinux 0x0c7c8295 rio_request_mport_dma +EXPORT_SYMBOL_GPL vmlinux 0x0c5a3d90 nvmem_device_get +EXPORT_SYMBOL_GPL vmlinux 0x0c5aa696 i2c_recover_bus +EXPORT_SYMBOL_GPL vmlinux 0x0c686a88 __devm_of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0x0c756156 usb_hcd_amd_remote_wakeup_quirk +EXPORT_SYMBOL_GPL vmlinux 0x0c78f4f1 phy_restore_page +EXPORT_SYMBOL_GPL vmlinux 0x0c841231 __devres_alloc_node EXPORT_SYMBOL_GPL vmlinux 0x0c88c1c3 pci_vpd_find_id_string -EXPORT_SYMBOL_GPL vmlinux 0x0c9671e8 mtd_pairing_info_to_wunit -EXPORT_SYMBOL_GPL vmlinux 0x0c96d9ed irq_chip_disable_parent -EXPORT_SYMBOL_GPL vmlinux 0x0c988043 scsi_host_unblock -EXPORT_SYMBOL_GPL vmlinux 0x0cc139df wm831x_auxadc_read_uv -EXPORT_SYMBOL_GPL vmlinux 0x0cd473df devm_clk_hw_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0cdc66ec __traceiter_remove_device_from_group -EXPORT_SYMBOL_GPL vmlinux 0x0cea37d9 pci_find_vsec_capability -EXPORT_SYMBOL_GPL vmlinux 0x0ceb935e __traceiter_neigh_event_send_dead -EXPORT_SYMBOL_GPL vmlinux 0x0cfcbb4e scsi_queue_work -EXPORT_SYMBOL_GPL vmlinux 0x0cfe5f14 pm_generic_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0x0d035253 raw_hash_sk -EXPORT_SYMBOL_GPL vmlinux 0x0d051911 pci_epc_add_epf -EXPORT_SYMBOL_GPL vmlinux 0x0d1235ad usb_alloc_dev -EXPORT_SYMBOL_GPL vmlinux 0x0d1f59d2 nvmem_cell_read_u16 -EXPORT_SYMBOL_GPL vmlinux 0x0d280330 cpts_tx_timestamp -EXPORT_SYMBOL_GPL vmlinux 0x0d2e114c scmi_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0d2e1b97 device_add -EXPORT_SYMBOL_GPL vmlinux 0x0d3a7521 tty_port_register_device +EXPORT_SYMBOL_GPL vmlinux 0x0c8d75bd devm_devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0x0c8e5d79 regulator_set_load +EXPORT_SYMBOL_GPL vmlinux 0x0c98b0b7 rio_set_port_lockout +EXPORT_SYMBOL_GPL vmlinux 0x0ca59b3c devm_hwspin_lock_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0cae7ebf pci_pri_supported +EXPORT_SYMBOL_GPL vmlinux 0x0cb29549 net_ns_get_ownership +EXPORT_SYMBOL_GPL vmlinux 0x0cb3e20a cpufreq_enable_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0x0cb45829 bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0cd00dab event_triggers_post_call +EXPORT_SYMBOL_GPL vmlinux 0x0cd90ad0 fwnode_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x0ce9eef8 rio_local_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x0d0e1e21 security_kernel_read_file +EXPORT_SYMBOL_GPL vmlinux 0x0d2173f8 of_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0x0d292664 ethnl_cable_test_result EXPORT_SYMBOL_GPL vmlinux 0x0d3e3481 bch_free EXPORT_SYMBOL_GPL vmlinux 0x0d459213 work_on_cpu_safe EXPORT_SYMBOL_GPL vmlinux 0x0d4961de nf_log_buf_open -EXPORT_SYMBOL_GPL vmlinux 0x0d4c85c9 __blk_req_zone_write_lock -EXPORT_SYMBOL_GPL vmlinux 0x0d53e3fa serial8250_update_uartclk +EXPORT_SYMBOL_GPL vmlinux 0x0d4a7eda tc3589x_block_write +EXPORT_SYMBOL_GPL vmlinux 0x0d4c7ace param_set_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0x0d55afe7 ip4_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0x0d572a3c snd_dmaengine_pcm_get_chan EXPORT_SYMBOL_GPL vmlinux 0x0d5a5939 cpu_topology -EXPORT_SYMBOL_GPL vmlinux 0x0d5b0d72 blk_mq_freeze_queue -EXPORT_SYMBOL_GPL vmlinux 0x0d9465f3 led_trigger_set -EXPORT_SYMBOL_GPL vmlinux 0x0d9af3b8 cgrp_dfl_root -EXPORT_SYMBOL_GPL vmlinux 0x0d9dc0bb tpm_pcr_read -EXPORT_SYMBOL_GPL vmlinux 0x0d9dc85b virtio_device_restore -EXPORT_SYMBOL_GPL vmlinux 0x0d9f511b mtd_ooblayout_count_freebytes -EXPORT_SYMBOL_GPL vmlinux 0x0da8a0b1 aead_geniv_alloc -EXPORT_SYMBOL_GPL vmlinux 0x0dac881b put_mtd_device +EXPORT_SYMBOL_GPL vmlinux 0x0d875239 ata_sas_port_destroy +EXPORT_SYMBOL_GPL vmlinux 0x0d8d5d9b gen10g_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0x0d9e6bc8 devm_qcom_smem_state_get +EXPORT_SYMBOL_GPL vmlinux 0x0dc4a9a4 __sdhci_add_host +EXPORT_SYMBOL_GPL vmlinux 0x0dc68569 nand_change_read_column_op +EXPORT_SYMBOL_GPL vmlinux 0x0dca5600 snd_soc_add_component EXPORT_SYMBOL_GPL vmlinux 0x0dcb3ee8 divider_recalc_rate -EXPORT_SYMBOL_GPL vmlinux 0x0dd39d91 __traceiter_sched_util_est_cfs_tp -EXPORT_SYMBOL_GPL vmlinux 0x0dd67b89 regulator_get_error_flags -EXPORT_SYMBOL_GPL vmlinux 0x0dda0109 vfs_cancel_lock +EXPORT_SYMBOL_GPL vmlinux 0x0dd02610 snd_pcm_add_chmap_ctls EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order -EXPORT_SYMBOL_GPL vmlinux 0x0de0f2a5 snd_soc_card_jack_new -EXPORT_SYMBOL_GPL vmlinux 0x0de30773 regulator_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x0de65302 serdev_device_write -EXPORT_SYMBOL_GPL vmlinux 0x0dfce947 usb_gadget_connect -EXPORT_SYMBOL_GPL vmlinux 0x0e1ef5f0 cgroup_attach_task_all -EXPORT_SYMBOL_GPL vmlinux 0x0e1f77e5 phy_speed_up -EXPORT_SYMBOL_GPL vmlinux 0x0e28b288 ata_sff_qc_fill_rtf -EXPORT_SYMBOL_GPL vmlinux 0x0e2ce8d9 dma_buf_put -EXPORT_SYMBOL_GPL vmlinux 0x0e3c24bf blk_mq_alloc_sq_tag_set -EXPORT_SYMBOL_GPL vmlinux 0x0e4cab6a ata_dummy_port_info -EXPORT_SYMBOL_GPL vmlinux 0x0e503d68 get_current_tty +EXPORT_SYMBOL_GPL vmlinux 0x0de0fc6d serdev_device_get_tiocm +EXPORT_SYMBOL_GPL vmlinux 0x0de58cc0 usb_asmedia_modifyflowcontrol +EXPORT_SYMBOL_GPL vmlinux 0x0df2b6a9 devlink_port_attrs_pci_sf_set +EXPORT_SYMBOL_GPL vmlinux 0x0e08bb72 regulator_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x0e118e9c extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0e19332d nvmem_device_find +EXPORT_SYMBOL_GPL vmlinux 0x0e4ba351 lwtunnel_input +EXPORT_SYMBOL_GPL vmlinux 0x0e57b5ac bpf_preload_ops EXPORT_SYMBOL_GPL vmlinux 0x0e5b4975 __tracepoint_pelt_cfs_tp -EXPORT_SYMBOL_GPL vmlinux 0x0e6e57b2 devlink_param_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0e78dcaa virtio_add_status -EXPORT_SYMBOL_GPL vmlinux 0x0e7c3899 thermal_zone_get_offset -EXPORT_SYMBOL_GPL vmlinux 0x0e89847b snd_soc_component_compr_set_params +EXPORT_SYMBOL_GPL vmlinux 0x0e610758 devm_device_add_groups +EXPORT_SYMBOL_GPL vmlinux 0x0e621402 omap_iommu_save_ctx +EXPORT_SYMBOL_GPL vmlinux 0x0e68399d crypto_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x0e78bb18 tty_mode_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x0e78e1f6 driver_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x0e7f8035 debugfs_rename EXPORT_SYMBOL_GPL vmlinux 0x0e8a574a cpuacct_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x0e9a5ec0 devres_find -EXPORT_SYMBOL_GPL vmlinux 0x0ea2b06e edac_pci_del_device -EXPORT_SYMBOL_GPL vmlinux 0x0ea6f2ec cpufreq_cpu_get -EXPORT_SYMBOL_GPL vmlinux 0x0ea8f18f power_supply_put_battery_info -EXPORT_SYMBOL_GPL vmlinux 0x0ec00e73 usb_hcd_check_unlink_urb -EXPORT_SYMBOL_GPL vmlinux 0x0ec67d1e pci_store_saved_state -EXPORT_SYMBOL_GPL vmlinux 0x0ec9261b crypto_grab_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x0e9d1d0e rockchip_clk_add_lookup +EXPORT_SYMBOL_GPL vmlinux 0x0ea78b03 pci_create_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x0eb7ef8f __rt_mutex_init +EXPORT_SYMBOL_GPL vmlinux 0x0eba37dd ata_scsi_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x0ecabb45 devm_gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x0ecca151 snd_soc_get_volsw EXPORT_SYMBOL_GPL vmlinux 0x0ece0a18 __xas_next -EXPORT_SYMBOL_GPL vmlinux 0x0edbdc62 register_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x0ee26203 pci_find_next_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0x0ee41cda ata_host_activate EXPORT_SYMBOL_GPL vmlinux 0x0eeb5417 __kprobe_event_gen_cmd_start -EXPORT_SYMBOL_GPL vmlinux 0x0ef10965 hvc_alloc -EXPORT_SYMBOL_GPL vmlinux 0x0ef48ece fscrypt_file_open -EXPORT_SYMBOL_GPL vmlinux 0x0f1309f8 crypto_unregister_shashes +EXPORT_SYMBOL_GPL vmlinux 0x0ef0a8c4 ip6_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x0ef82769 bio_clone_blkg_association +EXPORT_SYMBOL_GPL vmlinux 0x0efa07de snd_soc_info_volsw_sx +EXPORT_SYMBOL_GPL vmlinux 0x0f05149e inet_csk_listen_stop +EXPORT_SYMBOL_GPL vmlinux 0x0f05e1f1 power_supply_changed +EXPORT_SYMBOL_GPL vmlinux 0x0f070ea3 fwnode_graph_get_remote_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x0f154720 tps6586x_update +EXPORT_SYMBOL_GPL vmlinux 0x0f156a2d vfs_getxattr +EXPORT_SYMBOL_GPL vmlinux 0x0f16eafb gpiod_direction_input EXPORT_SYMBOL_GPL vmlinux 0x0f180070 ring_buffer_free_read_page -EXPORT_SYMBOL_GPL vmlinux 0x0f1e1c70 of_property_read_variable_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x0f1c8ff5 phy_set_speed EXPORT_SYMBOL_GPL vmlinux 0x0f2da3dc rdma_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x0f3492fa mtd_ooblayout_get_eccbytes EXPORT_SYMBOL_GPL vmlinux 0x0f452a47 __tracepoint_mc_event -EXPORT_SYMBOL_GPL vmlinux 0x0f4795b1 add_disk_randomness -EXPORT_SYMBOL_GPL vmlinux 0x0f5ab374 arm_iommu_detach_device -EXPORT_SYMBOL_GPL vmlinux 0x0f63970f fwnode_get_next_child_node -EXPORT_SYMBOL_GPL vmlinux 0x0f6404e5 fwnode_graph_get_endpoint_by_id -EXPORT_SYMBOL_GPL vmlinux 0x0f69b8b7 fuse_conn_destroy +EXPORT_SYMBOL_GPL vmlinux 0x0f4e92e6 snd_soc_daifmt_parse_format +EXPORT_SYMBOL_GPL vmlinux 0x0f60120d usb_of_get_device_node EXPORT_SYMBOL_GPL vmlinux 0x0f6a3f32 ftrace_ops_set_global_filter -EXPORT_SYMBOL_GPL vmlinux 0x0f6c181c dummy_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x0f75c449 device_find_child_by_name +EXPORT_SYMBOL_GPL vmlinux 0x0f7b6790 led_compose_name EXPORT_SYMBOL_GPL vmlinux 0x0f7ca236 dmi_memdev_name -EXPORT_SYMBOL_GPL vmlinux 0x0f8227b9 dst_cache_set_ip6 -EXPORT_SYMBOL_GPL vmlinux 0x0f95e761 sdhci_cleanup_host -EXPORT_SYMBOL_GPL vmlinux 0x0fb719c0 ping_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0x0f84dafd snd_soc_dapm_get_volsw +EXPORT_SYMBOL_GPL vmlinux 0x0f8b4253 tpm_pm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x0f8ddb47 phy_package_join +EXPORT_SYMBOL_GPL vmlinux 0x0f8de388 sysfs_create_group +EXPORT_SYMBOL_GPL vmlinux 0x0f96a276 usb_pipe_type_check +EXPORT_SYMBOL_GPL vmlinux 0x0f9a0909 __netpoll_free +EXPORT_SYMBOL_GPL vmlinux 0x0f9e3f08 cpuidle_get_driver +EXPORT_SYMBOL_GPL vmlinux 0x0fa53de2 usb_gadget_map_request_by_dev +EXPORT_SYMBOL_GPL vmlinux 0x0fa5ac59 crypto_grab_spawn +EXPORT_SYMBOL_GPL vmlinux 0x0fb4f3a9 snd_soc_component_async_complete +EXPORT_SYMBOL_GPL vmlinux 0x0fbb0046 cpufreq_cpu_put +EXPORT_SYMBOL_GPL vmlinux 0x0fce01c6 mbox_request_channel_byname +EXPORT_SYMBOL_GPL vmlinux 0x0fd2f42e omap_iommu_domain_deactivate EXPORT_SYMBOL_GPL vmlinux 0x0fd4610e kmem_dump_obj -EXPORT_SYMBOL_GPL vmlinux 0x0fd92c06 pci_generic_config_read32 -EXPORT_SYMBOL_GPL vmlinux 0x0fe7cace tcp_done -EXPORT_SYMBOL_GPL vmlinux 0x0fed4c6a add_mtd_blktrans_dev +EXPORT_SYMBOL_GPL vmlinux 0x0fd4bc75 pci_enable_rom +EXPORT_SYMBOL_GPL vmlinux 0x0fd7434b cpufreq_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x0fe34a9f driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0feba39b dev_pm_genpd_remove_notifier EXPORT_SYMBOL_GPL vmlinux 0x100359e4 stop_machine -EXPORT_SYMBOL_GPL vmlinux 0x100d1c29 ethnl_cable_test_finished +EXPORT_SYMBOL_GPL vmlinux 0x1009d452 trace_array_get_by_name EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on -EXPORT_SYMBOL_GPL vmlinux 0x10173e6f usb_phy_set_charger_current -EXPORT_SYMBOL_GPL vmlinux 0x101d4f75 dev_pm_opp_xlate_required_opp -EXPORT_SYMBOL_GPL vmlinux 0x10218ae3 spi_statistics_add_transfer_stats -EXPORT_SYMBOL_GPL vmlinux 0x102eab36 fib_rules_seq_read -EXPORT_SYMBOL_GPL vmlinux 0x103abafc iomap_invalidatepage -EXPORT_SYMBOL_GPL vmlinux 0x1043bca8 perf_aux_output_end +EXPORT_SYMBOL_GPL vmlinux 0x101c020e crypto_shash_tfm_digest +EXPORT_SYMBOL_GPL vmlinux 0x1021ed09 rcuwait_wake_up +EXPORT_SYMBOL_GPL vmlinux 0x1026e5a9 spi_mem_dirmap_destroy +EXPORT_SYMBOL_GPL vmlinux 0x103825b2 irq_chip_retrigger_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0x104029a4 regulator_suspend_enable EXPORT_SYMBOL_GPL vmlinux 0x1043cac3 queue_work_node -EXPORT_SYMBOL_GPL vmlinux 0x105511ef dma_buf_move_notify +EXPORT_SYMBOL_GPL vmlinux 0x104eda4b ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0x1055f474 __auxiliary_device_add +EXPORT_SYMBOL_GPL vmlinux 0x1068efc7 split_page +EXPORT_SYMBOL_GPL vmlinux 0x106a0591 inet6_hash EXPORT_SYMBOL_GPL vmlinux 0x106ad9e1 software_node_unregister_node_group -EXPORT_SYMBOL_GPL vmlinux 0x107a6969 fscrypt_set_bio_crypt_ctx -EXPORT_SYMBOL_GPL vmlinux 0x107fb163 kernfs_notify -EXPORT_SYMBOL_GPL vmlinux 0x10a9aa38 pci_disable_ats -EXPORT_SYMBOL_GPL vmlinux 0x10b9be8c ata_scsi_slave_config -EXPORT_SYMBOL_GPL vmlinux 0x10bb3596 sysfs_notify -EXPORT_SYMBOL_GPL vmlinux 0x10bc0e95 blk_insert_cloned_request -EXPORT_SYMBOL_GPL vmlinux 0x10d5624e usb_driver_claim_interface -EXPORT_SYMBOL_GPL vmlinux 0x10d5db90 __get_task_comm -EXPORT_SYMBOL_GPL vmlinux 0x10de37db devm_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x107890b9 synth_event_add_val +EXPORT_SYMBOL_GPL vmlinux 0x108cd2f8 tty_port_register_device +EXPORT_SYMBOL_GPL vmlinux 0x1094ce5d fwnode_get_phy_node +EXPORT_SYMBOL_GPL vmlinux 0x109ad075 rio_inb_pwrite_handler +EXPORT_SYMBOL_GPL vmlinux 0x10a22b6f fscrypt_d_revalidate +EXPORT_SYMBOL_GPL vmlinux 0x10ae445f __rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x10af9d0c iommu_device_sysfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x10b5988e metadata_dst_alloc +EXPORT_SYMBOL_GPL vmlinux 0x10cfe24d iommu_register_device_fault_handler EXPORT_SYMBOL_GPL vmlinux 0x10ecc52c usb_amd_quirk_pll_enable -EXPORT_SYMBOL_GPL vmlinux 0x10f629e7 debugfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0x10fc5ba7 sata_scr_valid EXPORT_SYMBOL_GPL vmlinux 0x1104c4d5 trace_seq_puts EXPORT_SYMBOL_GPL vmlinux 0x11091291 nand_extract_bits -EXPORT_SYMBOL_GPL vmlinux 0x1127d288 usb_hcd_pci_probe -EXPORT_SYMBOL_GPL vmlinux 0x1134464a iomap_finish_ioends -EXPORT_SYMBOL_GPL vmlinux 0x11372032 pci_user_write_config_byte +EXPORT_SYMBOL_GPL vmlinux 0x110e89eb nanddev_isbad +EXPORT_SYMBOL_GPL vmlinux 0x112c0a4b __traceiter_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0x11301daf extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x1131cb4f shash_free_singlespawn_instance +EXPORT_SYMBOL_GPL vmlinux 0x113d20b9 wm8350_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x113d4f10 pci_device_group +EXPORT_SYMBOL_GPL vmlinux 0x1144fcb2 __traceiter_sched_util_est_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x1147dd6e regulator_get_optional EXPORT_SYMBOL_GPL vmlinux 0x114a3740 __tracepoint_rpm_return_int -EXPORT_SYMBOL_GPL vmlinux 0x114f61ca device_property_present +EXPORT_SYMBOL_GPL vmlinux 0x114c2641 i2c_new_client_device EXPORT_SYMBOL_GPL vmlinux 0x11526c9a meson_clk_pll_ops -EXPORT_SYMBOL_GPL vmlinux 0x1152ef60 bus_find_device -EXPORT_SYMBOL_GPL vmlinux 0x116702cc skb_zerocopy_headlen -EXPORT_SYMBOL_GPL vmlinux 0x1183d521 tun_get_tx_ring -EXPORT_SYMBOL_GPL vmlinux 0x1188576c elv_rqhash_add -EXPORT_SYMBOL_GPL vmlinux 0x1195b6db sdhci_request_atomic +EXPORT_SYMBOL_GPL vmlinux 0x11685447 usb_clear_halt +EXPORT_SYMBOL_GPL vmlinux 0x1174ad91 scsi_register_device_handler +EXPORT_SYMBOL_GPL vmlinux 0x11846c93 crypto_alloc_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x11883fd8 sfp_bus_find_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x118bb6fa snd_soc_dapm_get_pin_switch +EXPORT_SYMBOL_GPL vmlinux 0x119374b0 efivars_unregister +EXPORT_SYMBOL_GPL vmlinux 0x11958834 iommu_device_link EXPORT_SYMBOL_GPL vmlinux 0x11a2e0ac crypto_dh_key_len -EXPORT_SYMBOL_GPL vmlinux 0x11b45921 of_device_request_module -EXPORT_SYMBOL_GPL vmlinux 0x11d37d62 led_sysfs_enable -EXPORT_SYMBOL_GPL vmlinux 0x11d60cb2 led_init_core +EXPORT_SYMBOL_GPL vmlinux 0x11adf127 gpiod_set_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0x11b2816f sdio_f0_writeb +EXPORT_SYMBOL_GPL vmlinux 0x11c945fa of_hwspin_lock_get_id_byname +EXPORT_SYMBOL_GPL vmlinux 0x11d2fab0 class_dev_iter_next EXPORT_SYMBOL_GPL vmlinux 0x11d7589e add_hwgenerator_randomness +EXPORT_SYMBOL_GPL vmlinux 0x11db681e pci_disable_ats EXPORT_SYMBOL_GPL vmlinux 0x11df0e75 devlink_fmsg_binary_pair_nest_start -EXPORT_SYMBOL_GPL vmlinux 0x11e466c2 raw_seq_stop -EXPORT_SYMBOL_GPL vmlinux 0x11e6d73f device_link_del -EXPORT_SYMBOL_GPL vmlinux 0x120fd9c6 crypto_shoot_alg +EXPORT_SYMBOL_GPL vmlinux 0x11e7fcbc of_find_spi_device_by_node +EXPORT_SYMBOL_GPL vmlinux 0x120b9fb3 vp_modern_set_features EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier -EXPORT_SYMBOL_GPL vmlinux 0x1225dfe2 wakeup_source_destroy -EXPORT_SYMBOL_GPL vmlinux 0x122e0675 devm_led_trigger_register -EXPORT_SYMBOL_GPL vmlinux 0x122f8aa9 devm_kmemdup +EXPORT_SYMBOL_GPL vmlinux 0x121eb83b usb_get_status EXPORT_SYMBOL_GPL vmlinux 0x1234e483 get_cpu_iowait_time_us -EXPORT_SYMBOL_GPL vmlinux 0x123c5aa9 snd_soc_find_dai_with_mutex -EXPORT_SYMBOL_GPL vmlinux 0x12604ec4 vchan_dma_desc_free_list +EXPORT_SYMBOL_GPL vmlinux 0x1253c651 __iomap_dio_rw +EXPORT_SYMBOL_GPL vmlinux 0x1261d9e1 tegra_bpmp_request_mrq EXPORT_SYMBOL_GPL vmlinux 0x1268f357 resume_device_irqs -EXPORT_SYMBOL_GPL vmlinux 0x126ead62 sdhci_alloc_host -EXPORT_SYMBOL_GPL vmlinux 0x128bb0f6 usb_gadget_deactivate -EXPORT_SYMBOL_GPL vmlinux 0x128f8f74 crypto_find_alg +EXPORT_SYMBOL_GPL vmlinux 0x1283330a iomap_writepages EXPORT_SYMBOL_GPL vmlinux 0x129334ae sfp_parse_support -EXPORT_SYMBOL_GPL vmlinux 0x129c8bd4 imx_pcm_fiq_init -EXPORT_SYMBOL_GPL vmlinux 0x129ecf3f pci_enable_pasid -EXPORT_SYMBOL_GPL vmlinux 0x12a6f106 bio_trim -EXPORT_SYMBOL_GPL vmlinux 0x12aa8c9f nanddev_bbt_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x12bf023f dm_get_queue_limits -EXPORT_SYMBOL_GPL vmlinux 0x12bf129b devm_clk_hw_register_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0x12c36702 snd_dmaengine_pcm_close_release_chan -EXPORT_SYMBOL_GPL vmlinux 0x12d51088 kthread_queue_work -EXPORT_SYMBOL_GPL vmlinux 0x12dadc65 fscrypt_set_context -EXPORT_SYMBOL_GPL vmlinux 0x12dff6b4 usb_phy_roothub_suspend -EXPORT_SYMBOL_GPL vmlinux 0x12f394ff pm_generic_restore_noirq -EXPORT_SYMBOL_GPL vmlinux 0x12f51cd5 eventfd_fget -EXPORT_SYMBOL_GPL vmlinux 0x12fd8590 switchdev_handle_port_obj_add -EXPORT_SYMBOL_GPL vmlinux 0x130fc139 of_icc_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0x1299f11a sata_std_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x12a0d612 pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0x12a39a2d devlink_region_create +EXPORT_SYMBOL_GPL vmlinux 0x12b26e04 ip6_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0x12b3c9b8 init_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x12b6987c iommu_sva_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0x12c0cb8d usb_autopm_put_interface_no_suspend +EXPORT_SYMBOL_GPL vmlinux 0x12d919b4 ata_scsi_slave_destroy +EXPORT_SYMBOL_GPL vmlinux 0x12de594b pstore_register +EXPORT_SYMBOL_GPL vmlinux 0x130a72b0 i2c_slave_register +EXPORT_SYMBOL_GPL vmlinux 0x1313ad40 crypto_spawn_tfm EXPORT_SYMBOL_GPL vmlinux 0x131a5ed7 regmap_del_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0x131d2034 of_phy_put EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq -EXPORT_SYMBOL_GPL vmlinux 0x13248383 icc_disable -EXPORT_SYMBOL_GPL vmlinux 0x1324c6e1 regmap_write_async +EXPORT_SYMBOL_GPL vmlinux 0x131ecdf0 class_interface_register +EXPORT_SYMBOL_GPL vmlinux 0x132a84b0 regmap_field_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0x132c038e crypto_unregister_acomps +EXPORT_SYMBOL_GPL vmlinux 0x13340db4 __traceiter_br_fdb_add +EXPORT_SYMBOL_GPL vmlinux 0x1336f1f9 percpu_free_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x1338f784 vp_modern_get_queue_enable EXPORT_SYMBOL_GPL vmlinux 0x133969d7 __trace_printk -EXPORT_SYMBOL_GPL vmlinux 0x133fa4be devfreq_event_get_edev_count -EXPORT_SYMBOL_GPL vmlinux 0x13421941 amba_apb_device_add_res -EXPORT_SYMBOL_GPL vmlinux 0x1346fd5d snd_soc_get_volsw_range -EXPORT_SYMBOL_GPL vmlinux 0x1360fca6 sched_trace_cfs_rq_avg +EXPORT_SYMBOL_GPL vmlinux 0x133d41c2 sock_diag_check_cookie +EXPORT_SYMBOL_GPL vmlinux 0x1341025b perf_event_create_kernel_counter +EXPORT_SYMBOL_GPL vmlinux 0x134a0bb7 __inet_inherit_port +EXPORT_SYMBOL_GPL vmlinux 0x134e23d8 devm_phy_package_join +EXPORT_SYMBOL_GPL vmlinux 0x13500787 fsnotify_add_mark +EXPORT_SYMBOL_GPL vmlinux 0x135794af dev_pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x1361c8e6 nand_prog_page_end_op EXPORT_SYMBOL_GPL vmlinux 0x136209db power_supply_reg_notifier EXPORT_SYMBOL_GPL vmlinux 0x13640660 get_cached_msi_msg -EXPORT_SYMBOL_GPL vmlinux 0x13692415 nvmem_register -EXPORT_SYMBOL_GPL vmlinux 0x136be937 devlink_register -EXPORT_SYMBOL_GPL vmlinux 0x1380b896 regulator_get_hardware_vsel_register +EXPORT_SYMBOL_GPL vmlinux 0x13776132 ata_sff_freeze EXPORT_SYMBOL_GPL vmlinux 0x1381d4f3 net_cls_cgrp_subsys_enabled_key EXPORT_SYMBOL_GPL vmlinux 0x13889036 inet_ehash_locks_alloc EXPORT_SYMBOL_GPL vmlinux 0x138e0957 dax_write_cache_enabled -EXPORT_SYMBOL_GPL vmlinux 0x13935841 i2c_recover_bus -EXPORT_SYMBOL_GPL vmlinux 0x13a843f9 irq_get_domain_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x13ab702c devm_hwspin_lock_unregister +EXPORT_SYMBOL_GPL vmlinux 0x139bfdef of_platform_depopulate +EXPORT_SYMBOL_GPL vmlinux 0x139ef496 devm_pm_opp_register_set_opp_helper +EXPORT_SYMBOL_GPL vmlinux 0x13a55fd3 n_tty_inherit_ops +EXPORT_SYMBOL_GPL vmlinux 0x13a8e741 dev_pm_qos_hide_flags +EXPORT_SYMBOL_GPL vmlinux 0x13ab5983 _snd_pcm_stream_lock_irqsave EXPORT_SYMBOL_GPL vmlinux 0x13c37a03 page_reporting_unregister -EXPORT_SYMBOL_GPL vmlinux 0x13cd6141 ata_pci_bmdma_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0x13c7a059 pid_vnr +EXPORT_SYMBOL_GPL vmlinux 0x13d2e094 regulator_set_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x13ec27d8 genphy_c45_read_lpa EXPORT_SYMBOL_GPL vmlinux 0x13ed8784 sdev_evt_alloc -EXPORT_SYMBOL_GPL vmlinux 0x13f1d5bc devm_regulator_put -EXPORT_SYMBOL_GPL vmlinux 0x13f280f8 irq_chip_ack_parent -EXPORT_SYMBOL_GPL vmlinux 0x13fc471c snd_soc_dapm_sync +EXPORT_SYMBOL_GPL vmlinux 0x13ee4d2d fsl_mc_device_group +EXPORT_SYMBOL_GPL vmlinux 0x14024860 cgroup_path_ns EXPORT_SYMBOL_GPL vmlinux 0x1403ad09 cpufreq_add_update_util_hook +EXPORT_SYMBOL_GPL vmlinux 0x141312cb uhci_reset_hc EXPORT_SYMBOL_GPL vmlinux 0x141f38bf ktime_get_raw_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0x1428dfc3 dev_pm_opp_find_level_exact -EXPORT_SYMBOL_GPL vmlinux 0x142a9e02 nand_get_small_page_ooblayout -EXPORT_SYMBOL_GPL vmlinux 0x14429311 user_destroy -EXPORT_SYMBOL_GPL vmlinux 0x1476b5ee of_pci_range_parser_init -EXPORT_SYMBOL_GPL vmlinux 0x14857cd9 blk_steal_bios -EXPORT_SYMBOL_GPL vmlinux 0x148a6893 sched_trace_rq_avg_irq -EXPORT_SYMBOL_GPL vmlinux 0x149f5cc4 sdhci_remove_host +EXPORT_SYMBOL_GPL vmlinux 0x14276e60 dev_pm_opp_get_level +EXPORT_SYMBOL_GPL vmlinux 0x1438cc3f sdio_disable_func +EXPORT_SYMBOL_GPL vmlinux 0x1444061f devm_usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0x144701b4 dpcm_be_dai_trigger +EXPORT_SYMBOL_GPL vmlinux 0x14551b91 blkdev_nr_zones +EXPORT_SYMBOL_GPL vmlinux 0x145fd2bb __vfs_setxattr_noperm +EXPORT_SYMBOL_GPL vmlinux 0x147aaf08 page_mkclean +EXPORT_SYMBOL_GPL vmlinux 0x149881b7 nand_prog_page_op +EXPORT_SYMBOL_GPL vmlinux 0x14a45ec4 cpufreq_dbs_governor_limits EXPORT_SYMBOL_GPL vmlinux 0x14a98a21 cpu_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x14b2430e dev_pm_clear_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x14bfcf92 usb_alloc_dev EXPORT_SYMBOL_GPL vmlinux 0x14c2872d xas_pause +EXPORT_SYMBOL_GPL vmlinux 0x14c3283b sdio_retune_crc_disable +EXPORT_SYMBOL_GPL vmlinux 0x14cf9a56 cpts_release EXPORT_SYMBOL_GPL vmlinux 0x14d01690 clk_mux_index_to_val -EXPORT_SYMBOL_GPL vmlinux 0x14d62946 __efivar_entry_delete -EXPORT_SYMBOL_GPL vmlinux 0x14d7863a snd_soc_dapm_put_volsw -EXPORT_SYMBOL_GPL vmlinux 0x14f7246c snd_soc_card_get_kcontrol -EXPORT_SYMBOL_GPL vmlinux 0x15256b0a msi_desc_to_pci_sysdata -EXPORT_SYMBOL_GPL vmlinux 0x1527af87 dmaengine_desc_get_metadata_ptr -EXPORT_SYMBOL_GPL vmlinux 0x15313008 netdev_walk_all_lower_dev_rcu -EXPORT_SYMBOL_GPL vmlinux 0x15335b41 efivar_entry_find +EXPORT_SYMBOL_GPL vmlinux 0x14d0f6f6 __dev_change_net_namespace +EXPORT_SYMBOL_GPL vmlinux 0x14dcefb8 __traceiter_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0x14ee35b9 powercap_unregister_zone +EXPORT_SYMBOL_GPL vmlinux 0x14f73702 ahci_reset_controller +EXPORT_SYMBOL_GPL vmlinux 0x14fa94ba skb_consume_udp +EXPORT_SYMBOL_GPL vmlinux 0x15088f2b amba_bustype +EXPORT_SYMBOL_GPL vmlinux 0x150db252 iommu_sva_unbind_gpasid +EXPORT_SYMBOL_GPL vmlinux 0x1511365a dbs_update +EXPORT_SYMBOL_GPL vmlinux 0x1517668f of_thermal_get_ntrips +EXPORT_SYMBOL_GPL vmlinux 0x1521c723 trace_define_field EXPORT_SYMBOL_GPL vmlinux 0x153b60a6 klist_del -EXPORT_SYMBOL_GPL vmlinux 0x153cc634 irq_domain_set_hwirq_and_chip -EXPORT_SYMBOL_GPL vmlinux 0x153cf141 pci_device_is_present -EXPORT_SYMBOL_GPL vmlinux 0x15498b51 blk_trace_setup -EXPORT_SYMBOL_GPL vmlinux 0x154c5330 clk_hw_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0x15412356 ahci_reset_em +EXPORT_SYMBOL_GPL vmlinux 0x15454b18 __inet_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x15472ea9 devres_release_group +EXPORT_SYMBOL_GPL vmlinux 0x154e8215 regulator_get_mode EXPORT_SYMBOL_GPL vmlinux 0x1550efdf inet_peer_base_init EXPORT_SYMBOL_GPL vmlinux 0x15510a89 devlink_fmsg_binary_put -EXPORT_SYMBOL_GPL vmlinux 0x156ab689 elv_rqhash_del -EXPORT_SYMBOL_GPL vmlinux 0x156d2a70 dma_mmap_pages -EXPORT_SYMBOL_GPL vmlinux 0x1571ef75 edac_mc_alloc -EXPORT_SYMBOL_GPL vmlinux 0x15720813 __devm_regmap_init_i2c -EXPORT_SYMBOL_GPL vmlinux 0x157bff60 usb_hcd_pci_pm_ops -EXPORT_SYMBOL_GPL vmlinux 0x157f4366 switchdev_handle_port_attr_set -EXPORT_SYMBOL_GPL vmlinux 0x15839b28 sdio_align_size -EXPORT_SYMBOL_GPL vmlinux 0x15977d07 do_splice_to -EXPORT_SYMBOL_GPL vmlinux 0x15a7b450 dev_pm_opp_of_register_em +EXPORT_SYMBOL_GPL vmlinux 0x155488a0 irq_domain_free_irqs_parent +EXPORT_SYMBOL_GPL vmlinux 0x1582324e fwnode_graph_get_endpoint_by_id +EXPORT_SYMBOL_GPL vmlinux 0x15828cb9 __pm_runtime_use_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x1583e255 devm_led_classdev_register_ext +EXPORT_SYMBOL_GPL vmlinux 0x158a6e4c mtd_ooblayout_set_eccbytes +EXPORT_SYMBOL_GPL vmlinux 0x158bdf59 __irq_set_handler EXPORT_SYMBOL_GPL vmlinux 0x15ab2790 __tracepoint_devlink_hwmsg +EXPORT_SYMBOL_GPL vmlinux 0x15ad37f8 snd_dmaengine_pcm_close_release_chan +EXPORT_SYMBOL_GPL vmlinux 0x15ade1cc filter_irq_stacks EXPORT_SYMBOL_GPL vmlinux 0x15b06044 __xas_prev -EXPORT_SYMBOL_GPL vmlinux 0x15be77e3 vp_modern_get_queue_enable -EXPORT_SYMBOL_GPL vmlinux 0x15c0ac1b tty_perform_flush -EXPORT_SYMBOL_GPL vmlinux 0x15cefe58 lochnagar_update_config -EXPORT_SYMBOL_GPL vmlinux 0x15d53b89 dma_get_merge_boundary -EXPORT_SYMBOL_GPL vmlinux 0x15dd3444 cpufreq_register_governor +EXPORT_SYMBOL_GPL vmlinux 0x15b2b777 pinctrl_force_sleep +EXPORT_SYMBOL_GPL vmlinux 0x15d11882 ping_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0x15e067fd __clk_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0x15e6c54f snd_soc_debugfs_root EXPORT_SYMBOL_GPL vmlinux 0x15eca580 percpu_ref_switch_to_percpu -EXPORT_SYMBOL_GPL vmlinux 0x1605e8aa sm501_set_clock -EXPORT_SYMBOL_GPL vmlinux 0x16066af2 tty_get_icount -EXPORT_SYMBOL_GPL vmlinux 0x160ea3a4 kgdb_register_io_module -EXPORT_SYMBOL_GPL vmlinux 0x16188cf3 regulator_force_disable -EXPORT_SYMBOL_GPL vmlinux 0x161d5089 __traceiter_napi_poll -EXPORT_SYMBOL_GPL vmlinux 0x161ecc62 md_rdev_init -EXPORT_SYMBOL_GPL vmlinux 0x1624a111 virtio_config_changed -EXPORT_SYMBOL_GPL vmlinux 0x16354a67 pinctrl_force_sleep -EXPORT_SYMBOL_GPL vmlinux 0x1642f86d serial8250_request_dma -EXPORT_SYMBOL_GPL vmlinux 0x1645dc9e find_get_pid -EXPORT_SYMBOL_GPL vmlinux 0x1651ec7c sdio_readsb -EXPORT_SYMBOL_GPL vmlinux 0x165aa88b sdhci_runtime_suspend_host -EXPORT_SYMBOL_GPL vmlinux 0x16626cf0 snd_soc_tplg_component_load +EXPORT_SYMBOL_GPL vmlinux 0x15f97e14 pm_clk_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x1625b962 pci_assign_unassigned_bridge_resources +EXPORT_SYMBOL_GPL vmlinux 0x163a2510 devlink_rate_leaf_destroy +EXPORT_SYMBOL_GPL vmlinux 0x167a5f15 tpm1_do_selftest +EXPORT_SYMBOL_GPL vmlinux 0x1682eed8 spi_async_locked EXPORT_SYMBOL_GPL vmlinux 0x1687ec20 tty_get_frame_size -EXPORT_SYMBOL_GPL vmlinux 0x168a3f41 tracing_cond_snapshot_data -EXPORT_SYMBOL_GPL vmlinux 0x168f9f4c simple_attr_release +EXPORT_SYMBOL_GPL vmlinux 0x168cd982 pci_slots_kset +EXPORT_SYMBOL_GPL vmlinux 0x16901551 ata_std_prereset EXPORT_SYMBOL_GPL vmlinux 0x1690b503 usb_role_switch_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x1692145b fuse_request_end +EXPORT_SYMBOL_GPL vmlinux 0x1698c435 of_property_read_variable_u8_array EXPORT_SYMBOL_GPL vmlinux 0x169b185f verify_pkcs7_signature -EXPORT_SYMBOL_GPL vmlinux 0x16a2be1f class_for_each_device -EXPORT_SYMBOL_GPL vmlinux 0x16bfdbbc crypto_register_template -EXPORT_SYMBOL_GPL vmlinux 0x16c480c3 sock_map_unhash -EXPORT_SYMBOL_GPL vmlinux 0x16ca94d8 devm_kmalloc +EXPORT_SYMBOL_GPL vmlinux 0x16a21532 of_led_get +EXPORT_SYMBOL_GPL vmlinux 0x16c97bab pci_enable_sriov EXPORT_SYMBOL_GPL vmlinux 0x16cc526e dev_fetch_sw_netstats -EXPORT_SYMBOL_GPL vmlinux 0x16d7910b __traceiter_tcp_bad_csum +EXPORT_SYMBOL_GPL vmlinux 0x16d8e987 xfrm_audit_state_replay EXPORT_SYMBOL_GPL vmlinux 0x16da1f88 devlink_fmsg_u32_put -EXPORT_SYMBOL_GPL vmlinux 0x16db566b dma_vmap_noncontiguous -EXPORT_SYMBOL_GPL vmlinux 0x16e8dba7 debugfs_create_bool -EXPORT_SYMBOL_GPL vmlinux 0x16ea1568 snd_soc_tplg_component_remove -EXPORT_SYMBOL_GPL vmlinux 0x16f14a8e sdio_writel -EXPORT_SYMBOL_GPL vmlinux 0x170845d0 snd_dmaengine_pcm_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x16ddd528 snd_soc_dpcm_can_be_free_stop +EXPORT_SYMBOL_GPL vmlinux 0x16e752fa bpf_trace_run10 +EXPORT_SYMBOL_GPL vmlinux 0x16ec03e7 scsi_flush_work +EXPORT_SYMBOL_GPL vmlinux 0x16fbd499 mtk_pinconf_adv_drive_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x170194df get_device EXPORT_SYMBOL_GPL vmlinux 0x170cc36c put_timespec64 -EXPORT_SYMBOL_GPL vmlinux 0x1728a20e icc_std_aggregate -EXPORT_SYMBOL_GPL vmlinux 0x173cbc8d efivar_entry_remove -EXPORT_SYMBOL_GPL vmlinux 0x1742b316 sdhci_set_ios +EXPORT_SYMBOL_GPL vmlinux 0x1740dd9d mpc8xxx_spi_rx_buf_u8 EXPORT_SYMBOL_GPL vmlinux 0x17480d56 x509_free_certificate EXPORT_SYMBOL_GPL vmlinux 0x174c6274 ring_buffer_time_stamp -EXPORT_SYMBOL_GPL vmlinux 0x175935f9 xhci_get_ep_ctx -EXPORT_SYMBOL_GPL vmlinux 0x175a88f1 regulator_get_voltage_rdev +EXPORT_SYMBOL_GPL vmlinux 0x1752424e usb_wakeup_notification +EXPORT_SYMBOL_GPL vmlinux 0x1755850a pinmux_generic_add_function EXPORT_SYMBOL_GPL vmlinux 0x176031a7 devlink_fmsg_string_put -EXPORT_SYMBOL_GPL vmlinux 0x176032b3 ehci_handshake -EXPORT_SYMBOL_GPL vmlinux 0x1760d8ac nand_prog_page_end_op +EXPORT_SYMBOL_GPL vmlinux 0x1760363b platform_bus EXPORT_SYMBOL_GPL vmlinux 0x177c338d twl_get_version -EXPORT_SYMBOL_GPL vmlinux 0x178d0293 thermal_zone_of_sensor_unregister -EXPORT_SYMBOL_GPL vmlinux 0x17928538 crypto_alloc_acomp_node -EXPORT_SYMBOL_GPL vmlinux 0x17d6cc90 dev_err_probe -EXPORT_SYMBOL_GPL vmlinux 0x17d8fcbd pci_epc_start -EXPORT_SYMBOL_GPL vmlinux 0x17e7f465 snd_dmaengine_pcm_set_config_from_dai_data +EXPORT_SYMBOL_GPL vmlinux 0x1785fd85 mddev_init +EXPORT_SYMBOL_GPL vmlinux 0x178890be gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0x1797acfb gpiod_set_consumer_name +EXPORT_SYMBOL_GPL vmlinux 0x17992a6c fwnode_get_named_gpiod +EXPORT_SYMBOL_GPL vmlinux 0x17a4ec8a snd_soc_component_compr_get_metadata +EXPORT_SYMBOL_GPL vmlinux 0x17b2799c gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0x17c474de nanddev_erase +EXPORT_SYMBOL_GPL vmlinux 0x17c54195 ipv4_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x17cbed02 tpm2_flush_context EXPORT_SYMBOL_GPL vmlinux 0x18008c59 ring_buffer_resize -EXPORT_SYMBOL_GPL vmlinux 0x181235a1 snd_soc_link_compr_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x1818d030 sk_detach_filter -EXPORT_SYMBOL_GPL vmlinux 0x181af52c powercap_register_control_type -EXPORT_SYMBOL_GPL vmlinux 0x1822dd99 da9052_adc_read_temp -EXPORT_SYMBOL_GPL vmlinux 0x18242f90 pinctrl_utils_add_map_mux -EXPORT_SYMBOL_GPL vmlinux 0x182b4934 zap_vma_ptes -EXPORT_SYMBOL_GPL vmlinux 0x182d6252 __traceiter_neigh_update -EXPORT_SYMBOL_GPL vmlinux 0x1831836e rtnl_register_module -EXPORT_SYMBOL_GPL vmlinux 0x18477f90 mmu_notifier_get_locked -EXPORT_SYMBOL_GPL vmlinux 0x185248bc dev_pm_put_subsys_data -EXPORT_SYMBOL_GPL vmlinux 0x185354bb sdio_signal_irq -EXPORT_SYMBOL_GPL vmlinux 0x185d45e6 screen_glyph_unicode +EXPORT_SYMBOL_GPL vmlinux 0x180710dc mtd_is_locked +EXPORT_SYMBOL_GPL vmlinux 0x180ef958 register_mtd_blktrans +EXPORT_SYMBOL_GPL vmlinux 0x1814fc62 phy_init +EXPORT_SYMBOL_GPL vmlinux 0x182621c0 cookie_tcp_reqsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x182ae564 snd_soc_jack_free_gpios +EXPORT_SYMBOL_GPL vmlinux 0x1844dc01 usb_hub_find_child +EXPORT_SYMBOL_GPL vmlinux 0x1849261b irq_remove_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x1856d2df snd_soc_component_nc_pin EXPORT_SYMBOL_GPL vmlinux 0x18615d35 efivar_supports_writes -EXPORT_SYMBOL_GPL vmlinux 0x1862678b mbox_client_peek_data -EXPORT_SYMBOL_GPL vmlinux 0x18715ebf misc_cg_try_charge -EXPORT_SYMBOL_GPL vmlinux 0x1872c359 devlink_unregister -EXPORT_SYMBOL_GPL vmlinux 0x1878a9b1 thermal_zone_of_get_sensor_id -EXPORT_SYMBOL_GPL vmlinux 0x18801300 pci_set_pcie_reset_state -EXPORT_SYMBOL_GPL vmlinux 0x1880f609 devm_regulator_register -EXPORT_SYMBOL_GPL vmlinux 0x189f273e cpufreq_cpu_get_raw -EXPORT_SYMBOL_GPL vmlinux 0x18a60be8 mbox_request_channel -EXPORT_SYMBOL_GPL vmlinux 0x18afc02e pstore_unregister -EXPORT_SYMBOL_GPL vmlinux 0x18b98edb ipv4_sk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x18d65d73 ahci_platform_suspend +EXPORT_SYMBOL_GPL vmlinux 0x1891ce98 __rio_local_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x18ac2662 ata_link_abort +EXPORT_SYMBOL_GPL vmlinux 0x18b3fcf0 devm_pm_opp_attach_genpd EXPORT_SYMBOL_GPL vmlinux 0x18da5130 sbitmap_get_shallow -EXPORT_SYMBOL_GPL vmlinux 0x18dba65d ncsi_stop_dev +EXPORT_SYMBOL_GPL vmlinux 0x18dd1457 icc_disable EXPORT_SYMBOL_GPL vmlinux 0x18e4f8aa swphy_read_reg +EXPORT_SYMBOL_GPL vmlinux 0x18e601f1 ethnl_cable_test_free +EXPORT_SYMBOL_GPL vmlinux 0x18e87d98 skcipher_walk_virt EXPORT_SYMBOL_GPL vmlinux 0x18e8c440 arch_freq_scale -EXPORT_SYMBOL_GPL vmlinux 0x18ef98ff snd_soc_dapm_del_routes +EXPORT_SYMBOL_GPL vmlinux 0x18ec9b96 tty_standard_install +EXPORT_SYMBOL_GPL vmlinux 0x18ed68f6 device_register +EXPORT_SYMBOL_GPL vmlinux 0x18ed8101 dev_pm_opp_put_supported_hw EXPORT_SYMBOL_GPL vmlinux 0x18fb2caf cpus_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0x18fc0fe8 snd_soc_card_remove_dai_link +EXPORT_SYMBOL_GPL vmlinux 0x19041b68 device_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x1908350b serial8250_em485_stop_tx EXPORT_SYMBOL_GPL vmlinux 0x190a7209 mpi_write_to_sgl -EXPORT_SYMBOL_GPL vmlinux 0x1912a77a transport_setup_device -EXPORT_SYMBOL_GPL vmlinux 0x19192920 snd_pcm_stop_xrun -EXPORT_SYMBOL_GPL vmlinux 0x191e6e95 debugfs_file_put +EXPORT_SYMBOL_GPL vmlinux 0x1915ff4c cpuidle_unregister EXPORT_SYMBOL_GPL vmlinux 0x1921431b meson_clk_pcie_pll_ops -EXPORT_SYMBOL_GPL vmlinux 0x19405e14 ahci_print_info -EXPORT_SYMBOL_GPL vmlinux 0x19410ded driver_find EXPORT_SYMBOL_GPL vmlinux 0x194132fa zs_huge_class_size -EXPORT_SYMBOL_GPL vmlinux 0x1943dc92 mmc_regulator_set_vqmmc +EXPORT_SYMBOL_GPL vmlinux 0x19498a93 skb_clone_tx_timestamp EXPORT_SYMBOL_GPL vmlinux 0x194dd751 alarm_forward_now -EXPORT_SYMBOL_GPL vmlinux 0x19507d9a sdio_claim_irq -EXPORT_SYMBOL_GPL vmlinux 0x19523c68 cpts_create -EXPORT_SYMBOL_GPL vmlinux 0x1957527a dev_nit_active -EXPORT_SYMBOL_GPL vmlinux 0x1964d864 rio_mport_get_feature -EXPORT_SYMBOL_GPL vmlinux 0x1981a1be regulator_map_voltage_ascend -EXPORT_SYMBOL_GPL vmlinux 0x199595ae nand_soft_waitrdy -EXPORT_SYMBOL_GPL vmlinux 0x19981e23 iommu_unregister_device_fault_handler -EXPORT_SYMBOL_GPL vmlinux 0x199926a6 dev_pm_opp_put_regulators -EXPORT_SYMBOL_GPL vmlinux 0x199e60e3 em_dev_register_perf_domain +EXPORT_SYMBOL_GPL vmlinux 0x1956459c devm_init_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x195685c2 devm_of_platform_populate +EXPORT_SYMBOL_GPL vmlinux 0x195cbce6 blk_mq_free_request +EXPORT_SYMBOL_GPL vmlinux 0x19864f04 of_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x19931e0c shash_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0x199cc066 bdi_dev_name EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled -EXPORT_SYMBOL_GPL vmlinux 0x19aa51d9 sdio_f0_writeb +EXPORT_SYMBOL_GPL vmlinux 0x19b12fe8 pci_bus_add_device EXPORT_SYMBOL_GPL vmlinux 0x19c20269 soc_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x19dbf708 snd_soc_jack_add_zones +EXPORT_SYMBOL_GPL vmlinux 0x19cb0c4a of_usb_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x19cfa3a6 ahci_platform_disable_resources +EXPORT_SYMBOL_GPL vmlinux 0x19d8d0c8 devlink_free +EXPORT_SYMBOL_GPL vmlinux 0x19e04611 __traceiter_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0x19e6a197 register_virtio_device EXPORT_SYMBOL_GPL vmlinux 0x19e81304 btree_alloc +EXPORT_SYMBOL_GPL vmlinux 0x19ea55e7 bio_trim +EXPORT_SYMBOL_GPL vmlinux 0x19f84649 simple_attr_write +EXPORT_SYMBOL_GPL vmlinux 0x1a00d85a crypto_unregister_scomps EXPORT_SYMBOL_GPL vmlinux 0x1a073a45 __tracepoint_block_bio_remap EXPORT_SYMBOL_GPL vmlinux 0x1a10c32b crypto_ft_tab EXPORT_SYMBOL_GPL vmlinux 0x1a146ec3 usb_ep_type_string -EXPORT_SYMBOL_GPL vmlinux 0x1a1c2e79 pinctrl_utils_add_config +EXPORT_SYMBOL_GPL vmlinux 0x1a1d713d snd_soc_component_compr_open EXPORT_SYMBOL_GPL vmlinux 0x1a266232 __tracepoint_pelt_se_tp EXPORT_SYMBOL_GPL vmlinux 0x1a267fa8 bch_init -EXPORT_SYMBOL_GPL vmlinux 0x1a2ccdef em_dev_unregister_perf_domain -EXPORT_SYMBOL_GPL vmlinux 0x1a387cf1 devm_bitmap_alloc -EXPORT_SYMBOL_GPL vmlinux 0x1a3ec065 bpf_event_output +EXPORT_SYMBOL_GPL vmlinux 0x1a2838a3 fscrypt_set_bio_crypt_ctx +EXPORT_SYMBOL_GPL vmlinux 0x1a31d142 gpiod_set_debounce +EXPORT_SYMBOL_GPL vmlinux 0x1a37d825 virtio_config_changed +EXPORT_SYMBOL_GPL vmlinux 0x1a3acf74 power_supply_register_no_ws EXPORT_SYMBOL_GPL vmlinux 0x1a44572f rht_bucket_nested_insert +EXPORT_SYMBOL_GPL vmlinux 0x1a4760d3 devm_pm_clk_create EXPORT_SYMBOL_GPL vmlinux 0x1a51c36c pci_pio_to_address +EXPORT_SYMBOL_GPL vmlinux 0x1a51ef6f aead_exit_geniv EXPORT_SYMBOL_GPL vmlinux 0x1a574d59 get_state_synchronize_srcu -EXPORT_SYMBOL_GPL vmlinux 0x1a5aaef5 devres_release -EXPORT_SYMBOL_GPL vmlinux 0x1a5c3316 pm_runtime_set_memalloc_noio -EXPORT_SYMBOL_GPL vmlinux 0x1a5d326e platform_device_add_resources +EXPORT_SYMBOL_GPL vmlinux 0x1a5e448b power_supply_set_input_current_limit_from_supplier +EXPORT_SYMBOL_GPL vmlinux 0x1a65eb46 led_get_default_pattern EXPORT_SYMBOL_GPL vmlinux 0x1a6bf28f fsnotify_get_cookie -EXPORT_SYMBOL_GPL vmlinux 0x1a6c16c2 of_address_to_resource EXPORT_SYMBOL_GPL vmlinux 0x1a77903a of_alias_get_alias_list -EXPORT_SYMBOL_GPL vmlinux 0x1a97fc2b thermal_zone_device_enable -EXPORT_SYMBOL_GPL vmlinux 0x1a9a1438 of_get_fb_videomode -EXPORT_SYMBOL_GPL vmlinux 0x1aa9b44f __udp4_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x1ab2f969 tty_kopen_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x1ab3a4ca crypto_register_kpp -EXPORT_SYMBOL_GPL vmlinux 0x1ab9f377 fib_rules_dump -EXPORT_SYMBOL_GPL vmlinux 0x1abe7f81 pci_walk_bus -EXPORT_SYMBOL_GPL vmlinux 0x1abeb89c hwspin_lock_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1a7a26ba crypto_register_kpp +EXPORT_SYMBOL_GPL vmlinux 0x1a8d7659 __traceiter_pelt_irq_tp +EXPORT_SYMBOL_GPL vmlinux 0x1ac05b75 ata_std_bios_param EXPORT_SYMBOL_GPL vmlinux 0x1ac90940 spi_delay_exec -EXPORT_SYMBOL_GPL vmlinux 0x1add4e27 ata_bmdma_dumb_qc_prep -EXPORT_SYMBOL_GPL vmlinux 0x1ae84eae skcipher_walk_async +EXPORT_SYMBOL_GPL vmlinux 0x1ad279e6 security_path_chown +EXPORT_SYMBOL_GPL vmlinux 0x1ad374a4 sched_trace_rq_avg_rt +EXPORT_SYMBOL_GPL vmlinux 0x1add35e6 regcache_mark_dirty +EXPORT_SYMBOL_GPL vmlinux 0x1aebc471 cgroup_get_e_css EXPORT_SYMBOL_GPL vmlinux 0x1af267f8 int_pow -EXPORT_SYMBOL_GPL vmlinux 0x1af5c43d cpuidle_get_cpu_driver EXPORT_SYMBOL_GPL vmlinux 0x1af7d4e3 kobject_create_and_add -EXPORT_SYMBOL_GPL vmlinux 0x1b428cf3 phy_package_leave -EXPORT_SYMBOL_GPL vmlinux 0x1b43f7de gpiochip_free_own_desc -EXPORT_SYMBOL_GPL vmlinux 0x1b4a69a2 crypto_stats_ahash_update -EXPORT_SYMBOL_GPL vmlinux 0x1b5025ac rio_enable_rx_tx_port +EXPORT_SYMBOL_GPL vmlinux 0x1af8ca4d ata_bmdma_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x1afd32cb ethnl_cable_test_alloc +EXPORT_SYMBOL_GPL vmlinux 0x1b0747e3 tty_init_termios +EXPORT_SYMBOL_GPL vmlinux 0x1b106140 tty_get_icount +EXPORT_SYMBOL_GPL vmlinux 0x1b192987 dev_pm_genpd_resume +EXPORT_SYMBOL_GPL vmlinux 0x1b3482b5 __pm_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x1b3b49f2 dev_pm_genpd_add_notifier EXPORT_SYMBOL_GPL vmlinux 0x1b5059ce ata_id_xfermask -EXPORT_SYMBOL_GPL vmlinux 0x1b5295af blk_queue_required_elevator_features -EXPORT_SYMBOL_GPL vmlinux 0x1b5fa79a musb_set_host -EXPORT_SYMBOL_GPL vmlinux 0x1b61078c devlink_dpipe_action_put -EXPORT_SYMBOL_GPL vmlinux 0x1b754fe9 strp_done -EXPORT_SYMBOL_GPL vmlinux 0x1b7a9de0 usb_interrupt_msg +EXPORT_SYMBOL_GPL vmlinux 0x1b632dc7 icc_provider_add +EXPORT_SYMBOL_GPL vmlinux 0x1b6f5ca1 fwnode_graph_get_remote_port_parent +EXPORT_SYMBOL_GPL vmlinux 0x1b77a53e dev_pm_opp_get_of_node +EXPORT_SYMBOL_GPL vmlinux 0x1b7bad0c class_compat_create_link +EXPORT_SYMBOL_GPL vmlinux 0x1b830412 unregister_mtd_user +EXPORT_SYMBOL_GPL vmlinux 0x1b86ae6a ip6_datagram_send_ctl EXPORT_SYMBOL_GPL vmlinux 0x1b8822d8 pinctrl_gpio_direction_output -EXPORT_SYMBOL_GPL vmlinux 0x1b8e7a38 devlink_health_reporter_create +EXPORT_SYMBOL_GPL vmlinux 0x1b9073de __fsnotify_inode_delete EXPORT_SYMBOL_GPL vmlinux 0x1b92e41d inet_putpeer EXPORT_SYMBOL_GPL vmlinux 0x1baa55d5 meson_clk_pll_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0x1bab44a3 blkcg_root -EXPORT_SYMBOL_GPL vmlinux 0x1bb78776 md_bitmap_copy_from_slot -EXPORT_SYMBOL_GPL vmlinux 0x1bc4018e bpf_prog_sub +EXPORT_SYMBOL_GPL vmlinux 0x1bb010a2 device_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x1bbdf98c pinctrl_add_gpio_range EXPORT_SYMBOL_GPL vmlinux 0x1bc40a8d gpmc_omap_get_nand_ops EXPORT_SYMBOL_GPL vmlinux 0x1bc5eebe pinctrl_gpio_direction_input -EXPORT_SYMBOL_GPL vmlinux 0x1bf01664 __sync_filesystem -EXPORT_SYMBOL_GPL vmlinux 0x1bfffc0d crypto_unregister_template +EXPORT_SYMBOL_GPL vmlinux 0x1bc6609f platform_device_put +EXPORT_SYMBOL_GPL vmlinux 0x1be18a19 snd_soc_of_get_dai_name +EXPORT_SYMBOL_GPL vmlinux 0x1bed8569 device_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x1beede0f iomap_swapfile_activate +EXPORT_SYMBOL_GPL vmlinux 0x1bf5dc39 iommu_set_pgtable_quirks +EXPORT_SYMBOL_GPL vmlinux 0x1bf88f65 skb_zerocopy +EXPORT_SYMBOL_GPL vmlinux 0x1bfb9445 da9052_enable_irq EXPORT_SYMBOL_GPL vmlinux 0x1c01e03d __tracepoint_detach_device_from_domain -EXPORT_SYMBOL_GPL vmlinux 0x1c0d23a5 regulator_is_equal -EXPORT_SYMBOL_GPL vmlinux 0x1c23d043 dm_put +EXPORT_SYMBOL_GPL vmlinux 0x1c2d998b snd_soc_component_compr_get_caps EXPORT_SYMBOL_GPL vmlinux 0x1c5541bd cpufreq_boost_enabled +EXPORT_SYMBOL_GPL vmlinux 0x1c599832 extcon_get_state EXPORT_SYMBOL_GPL vmlinux 0x1c5b1f28 irq_free_descs +EXPORT_SYMBOL_GPL vmlinux 0x1c5f1022 ata_wait_after_reset EXPORT_SYMBOL_GPL vmlinux 0x1c5ff742 clk_get_phase -EXPORT_SYMBOL_GPL vmlinux 0x1c651444 led_get_default_pattern -EXPORT_SYMBOL_GPL vmlinux 0x1c68bd5f ip6_datagram_release_cb -EXPORT_SYMBOL_GPL vmlinux 0x1c73373e dev_set_name +EXPORT_SYMBOL_GPL vmlinux 0x1c684fe0 fsverity_ioctl_measure +EXPORT_SYMBOL_GPL vmlinux 0x1c76bf6c ata_sff_data_xfer32 EXPORT_SYMBOL_GPL vmlinux 0x1c7be59c __traceiter_map -EXPORT_SYMBOL_GPL vmlinux 0x1c80c001 devm_krealloc EXPORT_SYMBOL_GPL vmlinux 0x1c80d27d btree_geo128 +EXPORT_SYMBOL_GPL vmlinux 0x1c84762c spi_controller_dma_map_mem_op_data EXPORT_SYMBOL_GPL vmlinux 0x1c87a811 __round_jiffies_up -EXPORT_SYMBOL_GPL vmlinux 0x1ca13c13 pinctrl_count_index_with_args -EXPORT_SYMBOL_GPL vmlinux 0x1cab962f pci_stop_root_bus EXPORT_SYMBOL_GPL vmlinux 0x1cbd92b0 cpu_mitigations_off -EXPORT_SYMBOL_GPL vmlinux 0x1cd981c9 skcipher_walk_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x1cc571f3 crypto_stats_rng_seed EXPORT_SYMBOL_GPL vmlinux 0x1cdf4efb copy_from_kernel_nofault -EXPORT_SYMBOL_GPL vmlinux 0x1ce7e4e3 devm_free_percpu -EXPORT_SYMBOL_GPL vmlinux 0x1cf78f81 da903x_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x1ce45de2 ata_sff_pause EXPORT_SYMBOL_GPL vmlinux 0x1cfe4101 clkdev_hw_create -EXPORT_SYMBOL_GPL vmlinux 0x1d025148 bus_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x1d0be333 mtk_pinconf_bias_get -EXPORT_SYMBOL_GPL vmlinux 0x1d0ccf02 fwnode_graph_get_remote_port_parent -EXPORT_SYMBOL_GPL vmlinux 0x1d1e0cce inet_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x1d180655 vp_modern_set_queue_enable +EXPORT_SYMBOL_GPL vmlinux 0x1d19b710 tcp_get_syncookie_mss +EXPORT_SYMBOL_GPL vmlinux 0x1d1de939 rtc_set_alarm EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0x1d248ad5 rcu_read_unlock_trace_special EXPORT_SYMBOL_GPL vmlinux 0x1d29b9e1 decode_rs8 -EXPORT_SYMBOL_GPL vmlinux 0x1d41bb53 dev_pm_qos_add_request -EXPORT_SYMBOL_GPL vmlinux 0x1d57fe29 genphy_c45_an_disable_aneg -EXPORT_SYMBOL_GPL vmlinux 0x1d5aabe9 ahci_handle_port_intr -EXPORT_SYMBOL_GPL vmlinux 0x1d5bf752 sock_diag_save_cookie +EXPORT_SYMBOL_GPL vmlinux 0x1d2c727b udp_abort +EXPORT_SYMBOL_GPL vmlinux 0x1d2d26a6 device_create_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x1d3fe291 mctrl_gpio_init_noauto +EXPORT_SYMBOL_GPL vmlinux 0x1d4b4dc1 phy_led_triggers_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1d4db9eb usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0x1d5970a5 snd_pcm_fill_iec958_consumer +EXPORT_SYMBOL_GPL vmlinux 0x1d5fc8b2 mtk_hw_get_value EXPORT_SYMBOL_GPL vmlinux 0x1d61e7e1 clk_register_gate EXPORT_SYMBOL_GPL vmlinux 0x1d6696b0 mtk_mutex_disable +EXPORT_SYMBOL_GPL vmlinux 0x1d73a2e7 device_remove_file EXPORT_SYMBOL_GPL vmlinux 0x1d77b0f8 unix_socket_table -EXPORT_SYMBOL_GPL vmlinux 0x1d77ba60 device_reprobe -EXPORT_SYMBOL_GPL vmlinux 0x1d890651 dev_pm_opp_get_sharing_cpus -EXPORT_SYMBOL_GPL vmlinux 0x1d8e855c hwmon_notify_event +EXPORT_SYMBOL_GPL vmlinux 0x1d7f0fe7 watchdog_init_timeout EXPORT_SYMBOL_GPL vmlinux 0x1d94a218 dmi_memdev_handle -EXPORT_SYMBOL_GPL vmlinux 0x1d99b944 irq_domain_free_irqs_parent -EXPORT_SYMBOL_GPL vmlinux 0x1daec074 cros_ec_get_sensor_count -EXPORT_SYMBOL_GPL vmlinux 0x1db3c3dc regmap_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0x1d9abc09 inet6_destroy_sock +EXPORT_SYMBOL_GPL vmlinux 0x1dbb0872 usb_hcd_map_urb_for_dma EXPORT_SYMBOL_GPL vmlinux 0x1dc17bf9 rhltable_init -EXPORT_SYMBOL_GPL vmlinux 0x1dc28b03 bd_prepare_to_claim -EXPORT_SYMBOL_GPL vmlinux 0x1dcad1e9 snd_soc_runtime_set_dai_fmt +EXPORT_SYMBOL_GPL vmlinux 0x1dd08c65 netif_carrier_event +EXPORT_SYMBOL_GPL vmlinux 0x1dd34f99 rio_map_inb_region EXPORT_SYMBOL_GPL vmlinux 0x1dd5a984 kobject_rename -EXPORT_SYMBOL_GPL vmlinux 0x1ddf0e3a regmap_add_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0x1df8b3ae rt_mutex_lock +EXPORT_SYMBOL_GPL vmlinux 0x1ddecb85 iommu_domain_alloc +EXPORT_SYMBOL_GPL vmlinux 0x1df0b4ea locks_alloc_lock +EXPORT_SYMBOL_GPL vmlinux 0x1df985b6 ata_pci_sff_init_one EXPORT_SYMBOL_GPL vmlinux 0x1dfa5dbd mpi_invm -EXPORT_SYMBOL_GPL vmlinux 0x1e003ba4 stmpe_enable -EXPORT_SYMBOL_GPL vmlinux 0x1e01e94f tegra_xusb_padctl_legacy_probe -EXPORT_SYMBOL_GPL vmlinux 0x1e041cc2 amba_ahb_device_add +EXPORT_SYMBOL_GPL vmlinux 0x1e041525 max8997_bulk_read EXPORT_SYMBOL_GPL vmlinux 0x1e0670c6 reset_control_release -EXPORT_SYMBOL_GPL vmlinux 0x1e2087b9 cpts_misc_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x1e22427d device_wakeup_disable -EXPORT_SYMBOL_GPL vmlinux 0x1e37482d crypto_register_rng -EXPORT_SYMBOL_GPL vmlinux 0x1e3fae5d fuse_do_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x1e238f15 sdhci_start_signal_voltage_switch +EXPORT_SYMBOL_GPL vmlinux 0x1e25f5d0 snd_soc_put_enum_double +EXPORT_SYMBOL_GPL vmlinux 0x1e291a42 __hwspin_trylock +EXPORT_SYMBOL_GPL vmlinux 0x1e317689 tps6586x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x1e3384f0 clk_hw_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0x1e38288d blk_mq_virtio_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x1e4150b5 devres_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x1e41bac6 driver_create_file EXPORT_SYMBOL_GPL vmlinux 0x1e4491d7 __tracepoint_rpm_idle -EXPORT_SYMBOL_GPL vmlinux 0x1e52211c edac_pci_alloc_ctl_info -EXPORT_SYMBOL_GPL vmlinux 0x1e54e490 pci_probe_reset_bus -EXPORT_SYMBOL_GPL vmlinux 0x1e56522a blk_req_zone_write_trylock -EXPORT_SYMBOL_GPL vmlinux 0x1e71c8cd of_genpd_add_subdomain +EXPORT_SYMBOL_GPL vmlinux 0x1e4d2b35 kernel_kobj +EXPORT_SYMBOL_GPL vmlinux 0x1e4eb2c1 imx_pcm_dma_init +EXPORT_SYMBOL_GPL vmlinux 0x1e681cd3 bus_register +EXPORT_SYMBOL_GPL vmlinux 0x1e6e9b19 devm_blk_ksm_init +EXPORT_SYMBOL_GPL vmlinux 0x1e6eca0d bio_end_io_acct_remapped +EXPORT_SYMBOL_GPL vmlinux 0x1e77fadf bpf_prog_free EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart EXPORT_SYMBOL_GPL vmlinux 0x1e7d6157 freezer_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x1e8d9c17 fscrypt_ioctl_get_key_status +EXPORT_SYMBOL_GPL vmlinux 0x1e8a3829 ahci_platform_get_resources EXPORT_SYMBOL_GPL vmlinux 0x1e8fac8e wireless_nlevent_flush -EXPORT_SYMBOL_GPL vmlinux 0x1e965f57 fixed_phy_register_with_gpiod EXPORT_SYMBOL_GPL vmlinux 0x1e9c590a usb_find_common_endpoints_reverse -EXPORT_SYMBOL_GPL vmlinux 0x1e9d00eb usb_enable_ltm -EXPORT_SYMBOL_GPL vmlinux 0x1eab9b89 soc_ac97_ops -EXPORT_SYMBOL_GPL vmlinux 0x1eb0da33 pm_relax -EXPORT_SYMBOL_GPL vmlinux 0x1eb2da62 ata_pci_device_do_resume +EXPORT_SYMBOL_GPL vmlinux 0x1ea9d255 add_mtd_blktrans_dev EXPORT_SYMBOL_GPL vmlinux 0x1eb9516e round_jiffies_relative EXPORT_SYMBOL_GPL vmlinux 0x1ebf6c2a pci_power_names -EXPORT_SYMBOL_GPL vmlinux 0x1ec1b035 wm8350_block_read -EXPORT_SYMBOL_GPL vmlinux 0x1ede1cdb omap_iommu_domain_activate -EXPORT_SYMBOL_GPL vmlinux 0x1ee93a89 set_capacity_and_notify -EXPORT_SYMBOL_GPL vmlinux 0x1efe3861 irq_chip_set_vcpu_affinity_parent -EXPORT_SYMBOL_GPL vmlinux 0x1f0263af snd_soc_dapm_free -EXPORT_SYMBOL_GPL vmlinux 0x1f0b7e6d unix_inq_len +EXPORT_SYMBOL_GPL vmlinux 0x1ec20a67 qcom_smem_state_get +EXPORT_SYMBOL_GPL vmlinux 0x1ec27208 palmas_ext_control_req_config +EXPORT_SYMBOL_GPL vmlinux 0x1ed2cdb7 blk_clear_pm_only +EXPORT_SYMBOL_GPL vmlinux 0x1eef2301 ata_sff_thaw +EXPORT_SYMBOL_GPL vmlinux 0x1f041651 usb_phy_get_charger_current EXPORT_SYMBOL_GPL vmlinux 0x1f0cb5bf pm_power_off_prepare -EXPORT_SYMBOL_GPL vmlinux 0x1f0ece67 dev_pm_disable_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0x1f285b9b driver_attach -EXPORT_SYMBOL_GPL vmlinux 0x1f2b99e4 perf_event_create_kernel_counter +EXPORT_SYMBOL_GPL vmlinux 0x1f125dcc component_bind_all +EXPORT_SYMBOL_GPL vmlinux 0x1f255688 blk_mq_unfreeze_queue EXPORT_SYMBOL_GPL vmlinux 0x1f38a4f6 mpi_set_highbit -EXPORT_SYMBOL_GPL vmlinux 0x1f3b53b8 fat_remove_entries -EXPORT_SYMBOL_GPL vmlinux 0x1f3c0581 pm_schedule_suspend +EXPORT_SYMBOL_GPL vmlinux 0x1f39b280 ata_pci_sff_prepare_host EXPORT_SYMBOL_GPL vmlinux 0x1f449588 mctrl_gpio_disable_ms -EXPORT_SYMBOL_GPL vmlinux 0x1f458b83 wbc_detach_inode -EXPORT_SYMBOL_GPL vmlinux 0x1f45fb26 dev_pm_qos_hide_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0x1f48a0c8 sata_link_scr_lpm -EXPORT_SYMBOL_GPL vmlinux 0x1f491afb dw8250_setup_port EXPORT_SYMBOL_GPL vmlinux 0x1f54b3ee inet_hashinfo_init EXPORT_SYMBOL_GPL vmlinux 0x1f563160 bpf_offload_dev_priv +EXPORT_SYMBOL_GPL vmlinux 0x1f5b3c7d wakeup_source_remove EXPORT_SYMBOL_GPL vmlinux 0x1f5fc4a5 cpu_latency_qos_request_active EXPORT_SYMBOL_GPL vmlinux 0x1f67b4d7 crypto_aes_set_key +EXPORT_SYMBOL_GPL vmlinux 0x1f6928af gpiochip_remove_pin_ranges +EXPORT_SYMBOL_GPL vmlinux 0x1f739bdd sdhci_set_power_and_bus_voltage EXPORT_SYMBOL_GPL vmlinux 0x1f774f46 cpuset_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x1f822026 __mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0x1f84c0ce usb_disable_autosuspend EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout -EXPORT_SYMBOL_GPL vmlinux 0x1f8c3eef serdev_device_open -EXPORT_SYMBOL_GPL vmlinux 0x1f8e7c27 skb_segment -EXPORT_SYMBOL_GPL vmlinux 0x1f91cd1f crypto_mod_put -EXPORT_SYMBOL_GPL vmlinux 0x1f97ea9a irq_domain_xlate_onetwocell -EXPORT_SYMBOL_GPL vmlinux 0x1f9c72c6 extcon_set_state_sync +EXPORT_SYMBOL_GPL vmlinux 0x1f8c89dc mtk_pinconf_adv_pull_set +EXPORT_SYMBOL_GPL vmlinux 0x1f9896dd device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1f99d844 fat_search_long EXPORT_SYMBOL_GPL vmlinux 0x1fa1d95c sha256_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x1fb5436a crypto_unregister_alg +EXPORT_SYMBOL_GPL vmlinux 0x1fc0b762 kthread_cancel_work_sync EXPORT_SYMBOL_GPL vmlinux 0x1fca0b38 housekeeping_overridden +EXPORT_SYMBOL_GPL vmlinux 0x1fd20db0 of_clk_add_hw_provider +EXPORT_SYMBOL_GPL vmlinux 0x1fe64e25 dev_get_tstats64 EXPORT_SYMBOL_GPL vmlinux 0x1fe6e504 gpiod_add_hogs -EXPORT_SYMBOL_GPL vmlinux 0x1fe745e3 snd_pcm_fill_iec958_consumer -EXPORT_SYMBOL_GPL vmlinux 0x1ffe5b06 of_usb_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0x20019af4 pm_runtime_set_autosuspend_delay +EXPORT_SYMBOL_GPL vmlinux 0x1fefb545 ata_dummy_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x1ff2ffef sata_pmp_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x2002e1b9 adp5520_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x200868aa __udp6_lib_lookup EXPORT_SYMBOL_GPL vmlinux 0x2009e400 devlink_info_board_serial_number_put -EXPORT_SYMBOL_GPL vmlinux 0x20151891 dma_wait_for_async_tx -EXPORT_SYMBOL_GPL vmlinux 0x2018948a tty_kclose -EXPORT_SYMBOL_GPL vmlinux 0x2037b6ad dev_pm_opp_find_level_ceil -EXPORT_SYMBOL_GPL vmlinux 0x203f7d2d devm_extcon_dev_allocate -EXPORT_SYMBOL_GPL vmlinux 0x205f472d debugfs_create_x16 -EXPORT_SYMBOL_GPL vmlinux 0x206a172b irq_chip_set_affinity_parent -EXPORT_SYMBOL_GPL vmlinux 0x2072e441 cgroup_get_from_fd -EXPORT_SYMBOL_GPL vmlinux 0x20814d52 devm_snd_soc_register_dai +EXPORT_SYMBOL_GPL vmlinux 0x20157f66 tcp_set_keepalive +EXPORT_SYMBOL_GPL vmlinux 0x2016caa4 mmu_interval_notifier_insert_locked +EXPORT_SYMBOL_GPL vmlinux 0x20259703 icc_node_add +EXPORT_SYMBOL_GPL vmlinux 0x2026cb03 spi_write_then_read +EXPORT_SYMBOL_GPL vmlinux 0x20354a0d snd_soc_info_enum_double +EXPORT_SYMBOL_GPL vmlinux 0x20556e46 synth_event_trace_end +EXPORT_SYMBOL_GPL vmlinux 0x206ac4b2 mctrl_gpio_init +EXPORT_SYMBOL_GPL vmlinux 0x2074cc81 amba_ahb_device_add +EXPORT_SYMBOL_GPL vmlinux 0x207cf245 phy_start_machine +EXPORT_SYMBOL_GPL vmlinux 0x2081285d ehci_adjust_port_wakeup_flags +EXPORT_SYMBOL_GPL vmlinux 0x2081f043 mbox_client_peek_data EXPORT_SYMBOL_GPL vmlinux 0x20835a9f __xdp_release_frame -EXPORT_SYMBOL_GPL vmlinux 0x20adb021 get_governor_parent_kobj -EXPORT_SYMBOL_GPL vmlinux 0x20adf083 usb_queue_reset_device -EXPORT_SYMBOL_GPL vmlinux 0x20bdf034 ethtool_set_ethtool_phy_ops -EXPORT_SYMBOL_GPL vmlinux 0x20c6d6f7 ata_std_postreset -EXPORT_SYMBOL_GPL vmlinux 0x20d0c53a ip6_flush_pending_frames -EXPORT_SYMBOL_GPL vmlinux 0x20e87c53 mtk_pinconf_adv_drive_set_raw -EXPORT_SYMBOL_GPL vmlinux 0x20fa9efc posix_clock_register -EXPORT_SYMBOL_GPL vmlinux 0x2106b2bb pinctrl_register_and_init -EXPORT_SYMBOL_GPL vmlinux 0x210815e2 imx_pinctrl_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0x208ccd42 genpd_dev_pm_attach_by_id +EXPORT_SYMBOL_GPL vmlinux 0x2092be60 blk_mq_start_stopped_hw_queue +EXPORT_SYMBOL_GPL vmlinux 0x209e7f8d of_mm_gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0x20b510e9 rio_add_mport_pw_handler +EXPORT_SYMBOL_GPL vmlinux 0x20bb4101 snd_soc_put_volsw +EXPORT_SYMBOL_GPL vmlinux 0x20c0cd0b dm_send_uevents +EXPORT_SYMBOL_GPL vmlinux 0x20c58c59 thermal_zone_get_zone_by_name +EXPORT_SYMBOL_GPL vmlinux 0x20d4258d musb_set_host +EXPORT_SYMBOL_GPL vmlinux 0x20d74643 fb_deferred_io_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x20dc7ca8 __register_mtd_parser +EXPORT_SYMBOL_GPL vmlinux 0x20f455eb tpm_chip_unregister +EXPORT_SYMBOL_GPL vmlinux 0x20ffe8f7 devlink_region_snapshot_id_get EXPORT_SYMBOL_GPL vmlinux 0x21087621 mm_unaccount_pinned_pages -EXPORT_SYMBOL_GPL vmlinux 0x210ad13d devres_release_group -EXPORT_SYMBOL_GPL vmlinux 0x2127190c rio_mport_chk_dev_access -EXPORT_SYMBOL_GPL vmlinux 0x212763a5 dev_pm_qos_update_request -EXPORT_SYMBOL_GPL vmlinux 0x2129bb66 ata_scsi_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x2134cd9c debugfs_create_u8 -EXPORT_SYMBOL_GPL vmlinux 0x21417dd8 tps6586x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x210bbf38 snd_soc_lookup_component +EXPORT_SYMBOL_GPL vmlinux 0x210eaf12 virtqueue_get_avail_addr +EXPORT_SYMBOL_GPL vmlinux 0x210f22f9 serial8250_em485_destroy +EXPORT_SYMBOL_GPL vmlinux 0x2114f148 strp_data_ready +EXPORT_SYMBOL_GPL vmlinux 0x2152baa5 gpiochip_unlock_as_irq EXPORT_SYMBOL_GPL vmlinux 0x21562a1d raw_v4_hashinfo -EXPORT_SYMBOL_GPL vmlinux 0x215d7627 usb_hcd_start_port_resume -EXPORT_SYMBOL_GPL vmlinux 0x215d9e19 da9052_disable_irq_nosync -EXPORT_SYMBOL_GPL vmlinux 0x21609d47 omap_iommu_save_ctx +EXPORT_SYMBOL_GPL vmlinux 0x215fbbe3 scsi_check_sense EXPORT_SYMBOL_GPL vmlinux 0x216de4e1 rcu_get_gp_kthreads_prio -EXPORT_SYMBOL_GPL vmlinux 0x216f0966 rio_mport_class EXPORT_SYMBOL_GPL vmlinux 0x21726652 pernet_ops_rwsem EXPORT_SYMBOL_GPL vmlinux 0x2181b0a1 usb_bus_idr_lock -EXPORT_SYMBOL_GPL vmlinux 0x2189107c of_nvmem_cell_get -EXPORT_SYMBOL_GPL vmlinux 0x218d4fd1 crypto_alloc_sync_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x219bbc6b debugfs_print_regs32 -EXPORT_SYMBOL_GPL vmlinux 0x219e855b transport_remove_device -EXPORT_SYMBOL_GPL vmlinux 0x21a20099 serial8250_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0x21a39a09 of_clk_get_parent_name +EXPORT_SYMBOL_GPL vmlinux 0x2194fac0 xdp_do_redirect +EXPORT_SYMBOL_GPL vmlinux 0x219a90fa snd_soc_component_force_enable_pin_unlocked EXPORT_SYMBOL_GPL vmlinux 0x21a563da clk_get_accuracy -EXPORT_SYMBOL_GPL vmlinux 0x21a5be8a snd_soc_dai_set_clkdiv -EXPORT_SYMBOL_GPL vmlinux 0x21aa2ad7 edac_pci_add_device +EXPORT_SYMBOL_GPL vmlinux 0x21a812aa sysfs_remove_file_from_group EXPORT_SYMBOL_GPL vmlinux 0x21ac8b77 iommu_group_get_by_id -EXPORT_SYMBOL_GPL vmlinux 0x21b1b0cd usb_hcd_link_urb_to_ep -EXPORT_SYMBOL_GPL vmlinux 0x21baeb49 mtd_point -EXPORT_SYMBOL_GPL vmlinux 0x21be82b2 crypto_unregister_kpp -EXPORT_SYMBOL_GPL vmlinux 0x21bf4442 phy_pm_runtime_put -EXPORT_SYMBOL_GPL vmlinux 0x21c5a851 ata_sff_thaw +EXPORT_SYMBOL_GPL vmlinux 0x21b9d691 virtqueue_enable_cb +EXPORT_SYMBOL_GPL vmlinux 0x21c211a8 peernet2id_alloc +EXPORT_SYMBOL_GPL vmlinux 0x21c5c49f devm_tegra_core_dev_init_opp_table EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x21d10394 sk_msg_trim -EXPORT_SYMBOL_GPL vmlinux 0x21da17a2 dev_pm_opp_get_freq -EXPORT_SYMBOL_GPL vmlinux 0x21eb621a crypto_stats_compress -EXPORT_SYMBOL_GPL vmlinux 0x21fb3299 usb_autopm_get_interface_async -EXPORT_SYMBOL_GPL vmlinux 0x2202a461 blk_trace_startstop -EXPORT_SYMBOL_GPL vmlinux 0x220a648f pm_genpd_remove -EXPORT_SYMBOL_GPL vmlinux 0x220a795e iomap_is_partially_uptodate +EXPORT_SYMBOL_GPL vmlinux 0x21d7df62 regmap_get_max_register +EXPORT_SYMBOL_GPL vmlinux 0x21dccd3d crypto_unregister_scomp +EXPORT_SYMBOL_GPL vmlinux 0x21df2c18 regulator_irq_helper +EXPORT_SYMBOL_GPL vmlinux 0x21e893b5 power_supply_put +EXPORT_SYMBOL_GPL vmlinux 0x21e8f09f ahci_do_softreset +EXPORT_SYMBOL_GPL vmlinux 0x21f91bb1 nand_op_parser_exec_op +EXPORT_SYMBOL_GPL vmlinux 0x21ffc918 regmap_field_alloc EXPORT_SYMBOL_GPL vmlinux 0x220ce70c kvm_arm_hyp_service_available -EXPORT_SYMBOL_GPL vmlinux 0x2211341a __mmc_poll_for_busy EXPORT_SYMBOL_GPL vmlinux 0x2211a4c0 blk_op_str +EXPORT_SYMBOL_GPL vmlinux 0x2212d5ca i2c_match_id +EXPORT_SYMBOL_GPL vmlinux 0x221f6dae devm_of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x2225b929 __traceiter_pelt_thermal_tp +EXPORT_SYMBOL_GPL vmlinux 0x22269a88 generic_fh_to_dentry +EXPORT_SYMBOL_GPL vmlinux 0x2234c512 crypto_stats_akcipher_verify +EXPORT_SYMBOL_GPL vmlinux 0x223ade84 devm_thermal_add_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0x223ae101 bus_for_each_dev EXPORT_SYMBOL_GPL vmlinux 0x223e215c rhashtable_walk_peek -EXPORT_SYMBOL_GPL vmlinux 0x22474085 hwspin_lock_request_specific -EXPORT_SYMBOL_GPL vmlinux 0x2249e590 ping_err -EXPORT_SYMBOL_GPL vmlinux 0x224a3675 devm_pm_opp_attach_genpd -EXPORT_SYMBOL_GPL vmlinux 0x228fc00d __devm_pci_epc_create -EXPORT_SYMBOL_GPL vmlinux 0x22ab99fd spi_mem_exec_op -EXPORT_SYMBOL_GPL vmlinux 0x22ae68c3 badblocks_clear -EXPORT_SYMBOL_GPL vmlinux 0x22b21b60 fib_nh_common_init -EXPORT_SYMBOL_GPL vmlinux 0x22d3971c pci_platform_power_transition +EXPORT_SYMBOL_GPL vmlinux 0x225103a5 usb_disable_ltm +EXPORT_SYMBOL_GPL vmlinux 0x22638301 snd_soc_set_ac97_ops_of_reset +EXPORT_SYMBOL_GPL vmlinux 0x22660b01 i2c_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x226b6d52 devm_pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0x2272b47b devlink_dpipe_table_resource_set +EXPORT_SYMBOL_GPL vmlinux 0x227a196c irq_domain_associate_many +EXPORT_SYMBOL_GPL vmlinux 0x227c34e5 mddev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x227ed3f2 regulator_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0x2290184d fib6_get_table +EXPORT_SYMBOL_GPL vmlinux 0x22969c74 fuse_free_conn +EXPORT_SYMBOL_GPL vmlinux 0x2298cb3c class_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x22a2591d device_get_match_data +EXPORT_SYMBOL_GPL vmlinux 0x22a3bd74 snd_soc_dai_action +EXPORT_SYMBOL_GPL vmlinux 0x22a56027 sk_msg_zerocopy_from_iter EXPORT_SYMBOL_GPL vmlinux 0x22d9409b iomap_sort_ioends -EXPORT_SYMBOL_GPL vmlinux 0x22dd8a8e vfs_truncate -EXPORT_SYMBOL_GPL vmlinux 0x22ea87de ahci_platform_enable_resources -EXPORT_SYMBOL_GPL vmlinux 0x23062863 irq_get_irq_data -EXPORT_SYMBOL_GPL vmlinux 0x23224550 regmap_mmio_attach_clk -EXPORT_SYMBOL_GPL vmlinux 0x232a20b9 sysfs_groups_change_owner -EXPORT_SYMBOL_GPL vmlinux 0x23368dec locks_release_private -EXPORT_SYMBOL_GPL vmlinux 0x233b629b crypto_remove_spawns -EXPORT_SYMBOL_GPL vmlinux 0x233e7805 eventfd_ctx_fileget +EXPORT_SYMBOL_GPL vmlinux 0x22fe2631 user_destroy +EXPORT_SYMBOL_GPL vmlinux 0x2314bd06 blk_queue_required_elevator_features +EXPORT_SYMBOL_GPL vmlinux 0x2332622f pinctrl_register_and_init +EXPORT_SYMBOL_GPL vmlinux 0x2339f2f2 regmap_mmio_detach_clk EXPORT_SYMBOL_GPL vmlinux 0x23412816 rtc_tm_to_ktime EXPORT_SYMBOL_GPL vmlinux 0x234cf416 devlink_fmsg_string_pair_put -EXPORT_SYMBOL_GPL vmlinux 0x23501ef5 strp_check_rcv +EXPORT_SYMBOL_GPL vmlinux 0x235dc3fd of_platform_default_populate +EXPORT_SYMBOL_GPL vmlinux 0x23629079 usb_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0x23640db3 platform_device_del +EXPORT_SYMBOL_GPL vmlinux 0x2364cb3d __traceiter_neigh_timer_handler +EXPORT_SYMBOL_GPL vmlinux 0x2365b30f simple_attr_read EXPORT_SYMBOL_GPL vmlinux 0x23666d59 __tracepoint_xdp_exception EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node +EXPORT_SYMBOL_GPL vmlinux 0x23874f1e posix_acl_create EXPORT_SYMBOL_GPL vmlinux 0x23935d9d __tracepoint_powernv_throttle EXPORT_SYMBOL_GPL vmlinux 0x23950433 efivar_variable_is_removable -EXPORT_SYMBOL_GPL vmlinux 0x2395ca5d devm_clk_hw_get_clk EXPORT_SYMBOL_GPL vmlinux 0x2396c7f0 clk_set_parent -EXPORT_SYMBOL_GPL vmlinux 0x2399d4d1 snd_soc_get_volsw_sx -EXPORT_SYMBOL_GPL vmlinux 0x23a834c2 max8997_bulk_write -EXPORT_SYMBOL_GPL vmlinux 0x23b1335e dev_pm_opp_put_opp_table -EXPORT_SYMBOL_GPL vmlinux 0x23b42d14 dma_request_chan -EXPORT_SYMBOL_GPL vmlinux 0x23c5fa0f ata_sas_port_alloc -EXPORT_SYMBOL_GPL vmlinux 0x23d3ba57 gpiochip_generic_free -EXPORT_SYMBOL_GPL vmlinux 0x23dd7b9a ahci_start_fis_rx -EXPORT_SYMBOL_GPL vmlinux 0x23df2227 sk_psock_drop -EXPORT_SYMBOL_GPL vmlinux 0x23ee2dfd mptcp_token_iter_next -EXPORT_SYMBOL_GPL vmlinux 0x23f4da01 relay_subbufs_consumed -EXPORT_SYMBOL_GPL vmlinux 0x2400450a devm_regulator_get_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x240caa3d mtk_pinconf_bias_set_combo -EXPORT_SYMBOL_GPL vmlinux 0x240f5c12 ip6_datagram_recv_ctl +EXPORT_SYMBOL_GPL vmlinux 0x23a82c18 inet_csk_get_port +EXPORT_SYMBOL_GPL vmlinux 0x23c2a57e scmi_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x23c74b0b ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0x23de4a27 syscon_regmap_lookup_by_phandle_optional +EXPORT_SYMBOL_GPL vmlinux 0x23e81646 pci_d3cold_disable +EXPORT_SYMBOL_GPL vmlinux 0x240bfa00 bpf_prog_alloc +EXPORT_SYMBOL_GPL vmlinux 0x240c7e99 mmc_regulator_get_supply +EXPORT_SYMBOL_GPL vmlinux 0x2412ce76 device_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x2412ec8c xdp_return_frame_rx_napi EXPORT_SYMBOL_GPL vmlinux 0x2421097b mpi_const -EXPORT_SYMBOL_GPL vmlinux 0x242adf39 md_do_sync -EXPORT_SYMBOL_GPL vmlinux 0x242b35aa pinctrl_pm_select_default_state -EXPORT_SYMBOL_GPL vmlinux 0x243341a9 snd_soc_bytes_info -EXPORT_SYMBOL_GPL vmlinux 0x243a66ef fib_rules_unregister -EXPORT_SYMBOL_GPL vmlinux 0x24593760 pm_generic_suspend_noirq -EXPORT_SYMBOL_GPL vmlinux 0x245e7333 of_nvmem_device_get -EXPORT_SYMBOL_GPL vmlinux 0x2468d490 skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x2422d641 __netpoll_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x242f45dc iterate_mounts +EXPORT_SYMBOL_GPL vmlinux 0x245a8a36 of_changeset_action +EXPORT_SYMBOL_GPL vmlinux 0x245d2e37 ehci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0x24785e8c mtd_erase_user_prot_reg +EXPORT_SYMBOL_GPL vmlinux 0x2486a967 pinctrl_generic_get_group_name +EXPORT_SYMBOL_GPL vmlinux 0x2488c6d2 pin_get_name EXPORT_SYMBOL_GPL vmlinux 0x248bc867 raw_notifier_call_chain_robust -EXPORT_SYMBOL_GPL vmlinux 0x24a698c2 dapm_mark_endpoints_dirty -EXPORT_SYMBOL_GPL vmlinux 0x24a9a029 bio_start_io_acct_time +EXPORT_SYMBOL_GPL vmlinux 0x248e3f20 snd_pcm_stream_unlock_irq +EXPORT_SYMBOL_GPL vmlinux 0x249b34c4 l3mdev_fib_table_rcu +EXPORT_SYMBOL_GPL vmlinux 0x24aa1622 pinctrl_dev_get_devname EXPORT_SYMBOL_GPL vmlinux 0x24ad11db wakeup_sources_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0x24b75305 rockchip_register_restart_notifier -EXPORT_SYMBOL_GPL vmlinux 0x24d0d872 ti_cm_get_macid +EXPORT_SYMBOL_GPL vmlinux 0x24bb5fb5 pci_epf_type_add_cfs +EXPORT_SYMBOL_GPL vmlinux 0x24c0e608 virtqueue_add_sgs +EXPORT_SYMBOL_GPL vmlinux 0x24c41783 usb_gadget_check_config +EXPORT_SYMBOL_GPL vmlinux 0x24c93ca6 serial8250_do_set_divisor +EXPORT_SYMBOL_GPL vmlinux 0x24ca9340 dev_pm_opp_set_prop_name +EXPORT_SYMBOL_GPL vmlinux 0x24cf9f06 __clocksource_register_scale +EXPORT_SYMBOL_GPL vmlinux 0x24d07897 sysfs_remove_files +EXPORT_SYMBOL_GPL vmlinux 0x24d7a950 __rio_local_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x24d87e7d snd_soc_component_get_pin_status EXPORT_SYMBOL_GPL vmlinux 0x24da0093 rcu_inkernel_boot_has_ended -EXPORT_SYMBOL_GPL vmlinux 0x24e74d60 rio_register_scan -EXPORT_SYMBOL_GPL vmlinux 0x24e787ef vp_modern_probe +EXPORT_SYMBOL_GPL vmlinux 0x24e4aa6c crypto_stats_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x24eaa2e2 xfrm_audit_policy_add EXPORT_SYMBOL_GPL vmlinux 0x24eb7e32 leds_list +EXPORT_SYMBOL_GPL vmlinux 0x24f228a7 genphy_c45_pma_setup_forced EXPORT_SYMBOL_GPL vmlinux 0x24f39c39 reset_control_reset EXPORT_SYMBOL_GPL vmlinux 0x24f63dcf ata_xfer_mask2mode EXPORT_SYMBOL_GPL vmlinux 0x24fc50f4 kdb_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2507971e screen_glyph -EXPORT_SYMBOL_GPL vmlinux 0x25088d86 ping_bind -EXPORT_SYMBOL_GPL vmlinux 0x251227be crypto_unregister_scomps -EXPORT_SYMBOL_GPL vmlinux 0x2515c512 skcipher_walk_complete +EXPORT_SYMBOL_GPL vmlinux 0x24ff4f9e usb_role_switch_find_by_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x250853b9 blk_mark_disk_dead +EXPORT_SYMBOL_GPL vmlinux 0x250b5393 ata_bmdma_error_handler EXPORT_SYMBOL_GPL vmlinux 0x2516bbe8 __tracepoint_io_page_fault -EXPORT_SYMBOL_GPL vmlinux 0x251feade __udp_enqueue_schedule_skb +EXPORT_SYMBOL_GPL vmlinux 0x251805c0 fuse_dev_release +EXPORT_SYMBOL_GPL vmlinux 0x251947a2 mtk_pinconf_adv_drive_set +EXPORT_SYMBOL_GPL vmlinux 0x251ed4a9 edac_mc_free +EXPORT_SYMBOL_GPL vmlinux 0x2533b327 irq_chip_ack_parent EXPORT_SYMBOL_GPL vmlinux 0x25379e73 clk_set_min_rate -EXPORT_SYMBOL_GPL vmlinux 0x254050fc regmap_get_reg_stride +EXPORT_SYMBOL_GPL vmlinux 0x254188b5 is_virtio_device EXPORT_SYMBOL_GPL vmlinux 0x2541a979 snd_soc_calc_frame_size -EXPORT_SYMBOL_GPL vmlinux 0x2545c480 tpm1_getcap -EXPORT_SYMBOL_GPL vmlinux 0x255cba1f cros_ec_check_features -EXPORT_SYMBOL_GPL vmlinux 0x25870b67 sdio_retune_release -EXPORT_SYMBOL_GPL vmlinux 0x258df8d6 fwnode_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x2549fd38 crypto_alloc_shash +EXPORT_SYMBOL_GPL vmlinux 0x25523f5c __irq_resolve_mapping +EXPORT_SYMBOL_GPL vmlinux 0x25751eac snd_soc_dapm_add_routes +EXPORT_SYMBOL_GPL vmlinux 0x25762a9a snd_soc_dapm_new_control +EXPORT_SYMBOL_GPL vmlinux 0x2576bf16 crypto_register_rngs +EXPORT_SYMBOL_GPL vmlinux 0x2577d060 virtqueue_poll +EXPORT_SYMBOL_GPL vmlinux 0x258a5cc2 __ata_change_queue_depth EXPORT_SYMBOL_GPL vmlinux 0x2592fc6c console_printk -EXPORT_SYMBOL_GPL vmlinux 0x2595efea __rio_local_write_config_16 -EXPORT_SYMBOL_GPL vmlinux 0x259a6faa sata_scr_write +EXPORT_SYMBOL_GPL vmlinux 0x259bae4a devm_pm_opp_of_add_table +EXPORT_SYMBOL_GPL vmlinux 0x25b1d103 da903x_set_bits EXPORT_SYMBOL_GPL vmlinux 0x25bbfa9a security_kernel_load_data -EXPORT_SYMBOL_GPL vmlinux 0x25bc3849 udp4_hwcsum -EXPORT_SYMBOL_GPL vmlinux 0x25deafb9 power_supply_get_property -EXPORT_SYMBOL_GPL vmlinux 0x25e01244 rq_flush_dcache_pages -EXPORT_SYMBOL_GPL vmlinux 0x25e3e3bd devlink_region_snapshot_id_put -EXPORT_SYMBOL_GPL vmlinux 0x25f2dcf1 clk_hw_round_rate -EXPORT_SYMBOL_GPL vmlinux 0x25f8eb98 gpiod_toggle_active_low -EXPORT_SYMBOL_GPL vmlinux 0x25fdb3b8 attribute_container_unregister -EXPORT_SYMBOL_GPL vmlinux 0x260b55f9 tpm_try_get_ops -EXPORT_SYMBOL_GPL vmlinux 0x260e10ad snd_soc_component_set_jack -EXPORT_SYMBOL_GPL vmlinux 0x261627d2 fscrypt_mergeable_bio -EXPORT_SYMBOL_GPL vmlinux 0x26265dee xfrm_dev_state_add +EXPORT_SYMBOL_GPL vmlinux 0x25be699e devm_i2c_new_dummy_device +EXPORT_SYMBOL_GPL vmlinux 0x25c7b7b2 pstore_unregister +EXPORT_SYMBOL_GPL vmlinux 0x25c85ff5 of_clk_del_provider +EXPORT_SYMBOL_GPL vmlinux 0x25cdac9b kill_pid_usb_asyncio +EXPORT_SYMBOL_GPL vmlinux 0x25de0d65 mtk_mmsys_ddp_connect +EXPORT_SYMBOL_GPL vmlinux 0x25efce97 aead_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x25f6d52d da903x_reads +EXPORT_SYMBOL_GPL vmlinux 0x25f99f98 devm_regmap_init_vexpress_config +EXPORT_SYMBOL_GPL vmlinux 0x25fcbd2e dma_resv_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x2612b2ec badblocks_init +EXPORT_SYMBOL_GPL vmlinux 0x26349a93 handle_mm_fault EXPORT_SYMBOL_GPL vmlinux 0x2638586b xas_init_marks -EXPORT_SYMBOL_GPL vmlinux 0x2642edad nanddev_init +EXPORT_SYMBOL_GPL vmlinux 0x26396fe0 adp5520_unregister_notifier EXPORT_SYMBOL_GPL vmlinux 0x26520970 vm_memory_committed EXPORT_SYMBOL_GPL vmlinux 0x265bbef9 kexec_crash_loaded +EXPORT_SYMBOL_GPL vmlinux 0x2666931e of_msi_configure EXPORT_SYMBOL_GPL vmlinux 0x266a4b08 tasklet_unlock EXPORT_SYMBOL_GPL vmlinux 0x267df662 smp_call_on_cpu -EXPORT_SYMBOL_GPL vmlinux 0x2683cabf tpm_chip_stop -EXPORT_SYMBOL_GPL vmlinux 0x269c1416 kernfs_find_and_get_ns -EXPORT_SYMBOL_GPL vmlinux 0x269f5e0d evict_inodes +EXPORT_SYMBOL_GPL vmlinux 0x26806e56 ima_file_hash +EXPORT_SYMBOL_GPL vmlinux 0x26a8c5d6 fwnode_get_next_child_node EXPORT_SYMBOL_GPL vmlinux 0x26ab4755 put_old_itimerspec32 -EXPORT_SYMBOL_GPL vmlinux 0x26b5e984 of_pm_clk_add_clks -EXPORT_SYMBOL_GPL vmlinux 0x26bbdd9f icc_node_create -EXPORT_SYMBOL_GPL vmlinux 0x26bd85f2 rtc_class_open +EXPORT_SYMBOL_GPL vmlinux 0x26b1b019 debugfs_create_blob +EXPORT_SYMBOL_GPL vmlinux 0x26b5825f of_genpd_parse_idle_states EXPORT_SYMBOL_GPL vmlinux 0x26c547c0 bL_switcher_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x26c6ab6d crypto_register_shash EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense -EXPORT_SYMBOL_GPL vmlinux 0x26c9a6bf usb_gadget_ep_match_desc -EXPORT_SYMBOL_GPL vmlinux 0x26dc6885 tracing_snapshot_cond_disable -EXPORT_SYMBOL_GPL vmlinux 0x26de1530 tegra_xusb_padctl_legacy_remove +EXPORT_SYMBOL_GPL vmlinux 0x26c9d05f snd_power_ref_and_wait +EXPORT_SYMBOL_GPL vmlinux 0x26e5259f crypto_hash_walk_first EXPORT_SYMBOL_GPL vmlinux 0x26ed2186 register_vmap_purge_notifier +EXPORT_SYMBOL_GPL vmlinux 0x26f7ea24 pci_sriov_configure_simple EXPORT_SYMBOL_GPL vmlinux 0x2701953f mtk_mutex_add_comp -EXPORT_SYMBOL_GPL vmlinux 0x2704ed7e snd_card_disconnect_sync -EXPORT_SYMBOL_GPL vmlinux 0x270fe08e usb_add_gadget_udc -EXPORT_SYMBOL_GPL vmlinux 0x27133c6d ahci_fill_cmd_slot -EXPORT_SYMBOL_GPL vmlinux 0x27179a0e dev_pm_opp_get_voltage -EXPORT_SYMBOL_GPL vmlinux 0x271dbb51 sdio_writesb -EXPORT_SYMBOL_GPL vmlinux 0x271f208b ata_sas_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x270ce1c8 kernfs_put +EXPORT_SYMBOL_GPL vmlinux 0x2711671d unix_peer_get +EXPORT_SYMBOL_GPL vmlinux 0x2711eeef __traceiter_xdp_exception +EXPORT_SYMBOL_GPL vmlinux 0x27142ee4 pm_generic_poweroff_late EXPORT_SYMBOL_GPL vmlinux 0x272e9d77 hisi_reset_exit -EXPORT_SYMBOL_GPL vmlinux 0x272f27a0 regulator_disable_regmap EXPORT_SYMBOL_GPL vmlinux 0x2734197f musb_readb -EXPORT_SYMBOL_GPL vmlinux 0x274bb61f d_exchange -EXPORT_SYMBOL_GPL vmlinux 0x27861e20 ata_dummy_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x27423ab3 cpts_misc_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x2749aa0a cpu_subsys +EXPORT_SYMBOL_GPL vmlinux 0x274ca257 mtk_pinconf_drive_set_raw +EXPORT_SYMBOL_GPL vmlinux 0x27504a91 snd_soc_dapm_disable_pin +EXPORT_SYMBOL_GPL vmlinux 0x276577a5 inet_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x2767dd42 snd_soc_unregister_component +EXPORT_SYMBOL_GPL vmlinux 0x276e231b br_ip6_fragment +EXPORT_SYMBOL_GPL vmlinux 0x2770fb78 icc_set_tag +EXPORT_SYMBOL_GPL vmlinux 0x2771a570 usb_root_hub_lost_power +EXPORT_SYMBOL_GPL vmlinux 0x277a5636 pinmux_generic_remove_function +EXPORT_SYMBOL_GPL vmlinux 0x277dbd06 fwnode_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x27859abf skcipher_walk_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x2791b5fd debugfs_create_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x279ac38b regulator_set_bypass_regmap EXPORT_SYMBOL_GPL vmlinux 0x27a4bb78 housekeeping_cpumask -EXPORT_SYMBOL_GPL vmlinux 0x27b8e431 i2c_new_scanned_device -EXPORT_SYMBOL_GPL vmlinux 0x27c4d644 irq_get_default_host -EXPORT_SYMBOL_GPL vmlinux 0x27d0e789 ethnl_cable_test_step -EXPORT_SYMBOL_GPL vmlinux 0x27d29e2b usb_string -EXPORT_SYMBOL_GPL vmlinux 0x27da0de4 blk_mq_update_nr_hw_queues -EXPORT_SYMBOL_GPL vmlinux 0x27e0f1ea usb_autopm_put_interface_async +EXPORT_SYMBOL_GPL vmlinux 0x27a6d5cf pci_epc_get +EXPORT_SYMBOL_GPL vmlinux 0x27c98caa pci_epc_write_header +EXPORT_SYMBOL_GPL vmlinux 0x27d6e076 create_signature +EXPORT_SYMBOL_GPL vmlinux 0x27e55bc3 pci_remove_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x27e718af __traceiter_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0x27f46d3f mtd_lock EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter EXPORT_SYMBOL_GPL vmlinux 0x27fa66e1 nr_free_buffer_pages -EXPORT_SYMBOL_GPL vmlinux 0x2803c5d5 rio_add_mport_pw_handler -EXPORT_SYMBOL_GPL vmlinux 0x28172dce usb_find_interface -EXPORT_SYMBOL_GPL vmlinux 0x2817a507 tty_port_tty_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x28234bd1 of_irq_parse_and_map_pci +EXPORT_SYMBOL_GPL vmlinux 0x2814a2fa unix_outq_len +EXPORT_SYMBOL_GPL vmlinux 0x28246d16 component_del EXPORT_SYMBOL_GPL vmlinux 0x282b7d57 xas_clear_mark EXPORT_SYMBOL_GPL vmlinux 0x282cdabc usb_led_activity +EXPORT_SYMBOL_GPL vmlinux 0x28381d5c devlink_rate_leaf_create EXPORT_SYMBOL_GPL vmlinux 0x283ffe9f imx_check_clk_hws -EXPORT_SYMBOL_GPL vmlinux 0x2851b8b3 pci_assign_unassigned_bus_resources -EXPORT_SYMBOL_GPL vmlinux 0x285763e2 crypto_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x2852ecc6 snd_soc_unregister_component_by_driver EXPORT_SYMBOL_GPL vmlinux 0x285b94c1 __srcu_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0x285e96a6 sdio_memcpy_fromio -EXPORT_SYMBOL_GPL vmlinux 0x285faca8 sata_sff_hardreset EXPORT_SYMBOL_GPL vmlinux 0x2864abc9 klist_node_attached +EXPORT_SYMBOL_GPL vmlinux 0x2865c139 watchdog_set_last_hw_keepalive EXPORT_SYMBOL_GPL vmlinux 0x286cc647 async_synchronize_cookie_domain -EXPORT_SYMBOL_GPL vmlinux 0x28752e19 __kthread_should_park EXPORT_SYMBOL_GPL vmlinux 0x2882d40e usb_role_switch_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2886f5b5 snd_soc_close_delayed_work -EXPORT_SYMBOL_GPL vmlinux 0x288829b3 pwm_free -EXPORT_SYMBOL_GPL vmlinux 0x288f9013 ahci_start_engine -EXPORT_SYMBOL_GPL vmlinux 0x28908e37 mmu_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0x28922807 sata_scr_valid -EXPORT_SYMBOL_GPL vmlinux 0x28954ebb crypto_stats_skcipher_decrypt -EXPORT_SYMBOL_GPL vmlinux 0x289db919 gov_update_cpu_data -EXPORT_SYMBOL_GPL vmlinux 0x289e4d1a dm_internal_suspend_noflush -EXPORT_SYMBOL_GPL vmlinux 0x28a99323 cpufreq_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x288cafcf dequeue_signal +EXPORT_SYMBOL_GPL vmlinux 0x289dbf6b dev_pm_opp_unregister_set_opp_helper 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 0x28c60710 sdhci_add_host -EXPORT_SYMBOL_GPL vmlinux 0x28d2025f devm_clk_bulk_get_optional -EXPORT_SYMBOL_GPL vmlinux 0x28df890d scsi_internal_device_unblock_nowait -EXPORT_SYMBOL_GPL vmlinux 0x28e38e7b da9052_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x28b6b114 sock_diag_destroy +EXPORT_SYMBOL_GPL vmlinux 0x28c4f1d9 spi_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x28c75972 elv_rqhash_add +EXPORT_SYMBOL_GPL vmlinux 0x28cd0ef5 device_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x28d2d65a devfreq_cooling_em_register +EXPORT_SYMBOL_GPL vmlinux 0x28d8e23f regulator_is_equal EXPORT_SYMBOL_GPL vmlinux 0x28f7df52 unregister_kretprobe -EXPORT_SYMBOL_GPL vmlinux 0x28fe4de6 iomap_ioend_try_merge -EXPORT_SYMBOL_GPL vmlinux 0x29090cf5 pinctrl_enable +EXPORT_SYMBOL_GPL vmlinux 0x290c9989 rtc_class_close EXPORT_SYMBOL_GPL vmlinux 0x291123ea __tracepoint_sched_overutilized_tp EXPORT_SYMBOL_GPL vmlinux 0x291876f3 mpi_ec_get_affine -EXPORT_SYMBOL_GPL vmlinux 0x29336c8b devm_kasprintf -EXPORT_SYMBOL_GPL vmlinux 0x2954f0cd modify_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x293034d8 of_clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0x2933c8ce pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x29472031 dev_pm_opp_sync_regulators +EXPORT_SYMBOL_GPL vmlinux 0x2955f914 blk_mq_freeze_queue_wait +EXPORT_SYMBOL_GPL vmlinux 0x29593741 wm831x_reg_lock EXPORT_SYMBOL_GPL vmlinux 0x295a2670 clk_regmap_divider_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0x295a89b6 regulator_bulk_free EXPORT_SYMBOL_GPL vmlinux 0x295b982a hisi_clk_register_fixed_rate -EXPORT_SYMBOL_GPL vmlinux 0x2969dca8 nf_checksum_partial -EXPORT_SYMBOL_GPL vmlinux 0x29726f04 inet_csk_listen_start -EXPORT_SYMBOL_GPL vmlinux 0x29819571 nf_checksum -EXPORT_SYMBOL_GPL vmlinux 0x298314d5 ncsi_unregister_dev -EXPORT_SYMBOL_GPL vmlinux 0x29847740 usb_urb_ep_type_check -EXPORT_SYMBOL_GPL vmlinux 0x2993d614 sk_msg_is_readable -EXPORT_SYMBOL_GPL vmlinux 0x2998b197 usb_store_new_id -EXPORT_SYMBOL_GPL vmlinux 0x29aef95b i2c_new_client_device -EXPORT_SYMBOL_GPL vmlinux 0x29b85372 of_mm_gpiochip_remove -EXPORT_SYMBOL_GPL vmlinux 0x29b9d122 pci_cfg_access_unlock -EXPORT_SYMBOL_GPL vmlinux 0x29bbee77 synth_event_trace_start -EXPORT_SYMBOL_GPL vmlinux 0x29c10541 of_irq_to_resource_table -EXPORT_SYMBOL_GPL vmlinux 0x29c398d6 gpio_to_desc -EXPORT_SYMBOL_GPL vmlinux 0x29c6d219 dev_pm_opp_find_freq_floor +EXPORT_SYMBOL_GPL vmlinux 0x295c5386 of_phy_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0x29612861 umd_cleanup_helper +EXPORT_SYMBOL_GPL vmlinux 0x296ec0cc fsnotify_put_group +EXPORT_SYMBOL_GPL vmlinux 0x297e4f0a xhci_dbg_trace +EXPORT_SYMBOL_GPL vmlinux 0x2985b28f usb_phy_gen_create_phy +EXPORT_SYMBOL_GPL vmlinux 0x2993ca1c debugfs_file_get +EXPORT_SYMBOL_GPL vmlinux 0x299c911a security_path_symlink +EXPORT_SYMBOL_GPL vmlinux 0x299ecd26 unregister_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0x299fa20f snd_soc_jack_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x29aa5820 usb_submit_urb +EXPORT_SYMBOL_GPL vmlinux 0x29b2061a usb_hcd_pci_remove +EXPORT_SYMBOL_GPL vmlinux 0x29b477ec devlink_param_unpublish +EXPORT_SYMBOL_GPL vmlinux 0x29c2e6ce dev_pm_opp_enable +EXPORT_SYMBOL_GPL vmlinux 0x29c5b4f0 devm_gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0x29c82dd6 snd_soc_dapm_put_enum_double EXPORT_SYMBOL_GPL vmlinux 0x29cf2470 rdma_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x29d286d5 pcie_port_find_device +EXPORT_SYMBOL_GPL vmlinux 0x29d85753 input_ff_event EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async -EXPORT_SYMBOL_GPL vmlinux 0x29f03983 devres_remove_group -EXPORT_SYMBOL_GPL vmlinux 0x2a003f08 to_software_node -EXPORT_SYMBOL_GPL vmlinux 0x2a050abb key_type_user -EXPORT_SYMBOL_GPL vmlinux 0x2a0685b5 pci_dev_unlock +EXPORT_SYMBOL_GPL vmlinux 0x2a08cd83 crypto_ahash_digest EXPORT_SYMBOL_GPL vmlinux 0x2a0a40fa mdio_bus_init -EXPORT_SYMBOL_GPL vmlinux 0x2a162cb1 tegra_bpmp_put +EXPORT_SYMBOL_GPL vmlinux 0x2a0ac7f7 gpiod_to_chip +EXPORT_SYMBOL_GPL vmlinux 0x2a0ff101 ip6_route_input_lookup +EXPORT_SYMBOL_GPL vmlinux 0x2a274d30 edac_pci_create_generic_ctl EXPORT_SYMBOL_GPL vmlinux 0x2a2aea17 clk_fixed_rate_ops -EXPORT_SYMBOL_GPL vmlinux 0x2a2dcd1e sysfs_create_group -EXPORT_SYMBOL_GPL vmlinux 0x2a371526 uart_insert_char EXPORT_SYMBOL_GPL vmlinux 0x2a37ea11 imx_clk_hw_frac_pll -EXPORT_SYMBOL_GPL vmlinux 0x2a3bd109 mtd_lock_user_prot_reg -EXPORT_SYMBOL_GPL vmlinux 0x2a3e6260 mtd_ooblayout_get_eccbytes -EXPORT_SYMBOL_GPL vmlinux 0x2a4ae5e0 device_property_read_string -EXPORT_SYMBOL_GPL vmlinux 0x2a5922e9 devm_of_icc_get +EXPORT_SYMBOL_GPL vmlinux 0x2a38afba da903x_write EXPORT_SYMBOL_GPL vmlinux 0x2a62cb3a ring_buffer_overrun_cpu EXPORT_SYMBOL_GPL vmlinux 0x2a678a13 __suspend_report_result +EXPORT_SYMBOL_GPL vmlinux 0x2a6a7edf devlink_port_attrs_pci_pf_set EXPORT_SYMBOL_GPL vmlinux 0x2a7316da __SCK__tp_func_neigh_cleanup_and_release -EXPORT_SYMBOL_GPL vmlinux 0x2a75eaf3 sock_diag_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2a830150 usb_hub_find_child -EXPORT_SYMBOL_GPL vmlinux 0x2ab7f287 devm_pm_clk_create +EXPORT_SYMBOL_GPL vmlinux 0x2a8604b3 pci_user_read_config_byte +EXPORT_SYMBOL_GPL vmlinux 0x2a90bbdf cgrp_dfl_root +EXPORT_SYMBOL_GPL vmlinux 0x2a9d6903 devm_of_icc_get +EXPORT_SYMBOL_GPL vmlinux 0x2a9d9776 ata_sff_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x2aa30538 device_attach +EXPORT_SYMBOL_GPL vmlinux 0x2aa558ef bus_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x2ac0d7f0 ehci_handshake EXPORT_SYMBOL_GPL vmlinux 0x2ace820a pkcs7_free_message -EXPORT_SYMBOL_GPL vmlinux 0x2ad6cd27 metadata_dst_alloc -EXPORT_SYMBOL_GPL vmlinux 0x2ae30d46 rio_unregister_scan -EXPORT_SYMBOL_GPL vmlinux 0x2afa19a9 spi_setup -EXPORT_SYMBOL_GPL vmlinux 0x2afdc5eb tps65912_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0x2b020d2b metadata_dst_alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0x2b07caaa nvmem_cell_read_variable_le_u64 -EXPORT_SYMBOL_GPL vmlinux 0x2b139cb1 devm_regulator_get_optional -EXPORT_SYMBOL_GPL vmlinux 0x2b1cedfd br_ip6_fragment -EXPORT_SYMBOL_GPL vmlinux 0x2b36f15b tcp_cong_avoid_ai +EXPORT_SYMBOL_GPL vmlinux 0x2ad220a0 __serdev_device_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x2ad91560 nand_write_data_op +EXPORT_SYMBOL_GPL vmlinux 0x2adeecff fuse_get_unique +EXPORT_SYMBOL_GPL vmlinux 0x2ae2d8e4 regulator_set_voltage_rdev +EXPORT_SYMBOL_GPL vmlinux 0x2afd83b9 dev_fill_metadata_dst +EXPORT_SYMBOL_GPL vmlinux 0x2afe910b inet6_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x2b11ec50 sysfs_remove_link_from_group +EXPORT_SYMBOL_GPL vmlinux 0x2b128c31 tcp_bpf_update_proto +EXPORT_SYMBOL_GPL vmlinux 0x2b162c68 devlink_port_region_create +EXPORT_SYMBOL_GPL vmlinux 0x2b17492a console_drivers +EXPORT_SYMBOL_GPL vmlinux 0x2b1a1cab of_get_fb_videomode +EXPORT_SYMBOL_GPL vmlinux 0x2b25b711 l3mdev_update_flow +EXPORT_SYMBOL_GPL vmlinux 0x2b2ac9fa pm_generic_resume_noirq EXPORT_SYMBOL_GPL vmlinux 0x2b4509dd devlink_health_reporter_state_update -EXPORT_SYMBOL_GPL vmlinux 0x2b4a21a8 devm_regulator_get -EXPORT_SYMBOL_GPL vmlinux 0x2b51d43e debugfs_create_x32 +EXPORT_SYMBOL_GPL vmlinux 0x2b47589c lwtunnel_cmp_encap EXPORT_SYMBOL_GPL vmlinux 0x2b6150fb power_supply_temp2resist_simple -EXPORT_SYMBOL_GPL vmlinux 0x2b6310a3 amba_bustype -EXPORT_SYMBOL_GPL vmlinux 0x2b6d92eb sdio_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x2b727038 of_thermal_get_trip_points -EXPORT_SYMBOL_GPL vmlinux 0x2b731db7 proc_get_parent_data -EXPORT_SYMBOL_GPL vmlinux 0x2b73479b genphy_c45_read_lpa +EXPORT_SYMBOL_GPL vmlinux 0x2b6f8aa9 get_device_system_crosststamp +EXPORT_SYMBOL_GPL vmlinux 0x2b733a7d sched_trace_rq_avg_irq EXPORT_SYMBOL_GPL vmlinux 0x2b952517 clk_has_parent -EXPORT_SYMBOL_GPL vmlinux 0x2b9712a9 crypto_unregister_ahash -EXPORT_SYMBOL_GPL vmlinux 0x2bac592c ncsi_start_dev -EXPORT_SYMBOL_GPL vmlinux 0x2bb8a7f2 pci_user_read_config_byte -EXPORT_SYMBOL_GPL vmlinux 0x2bb8e0e9 pci_epc_init_notify -EXPORT_SYMBOL_GPL vmlinux 0x2bc10a18 rio_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x2bc3fd11 devm_regulator_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x2bd0e0b8 dma_release_channel -EXPORT_SYMBOL_GPL vmlinux 0x2bd7d0ac dm_accept_partial_bio -EXPORT_SYMBOL_GPL vmlinux 0x2bdc479e xdp_rxq_info_unused +EXPORT_SYMBOL_GPL vmlinux 0x2ba35415 dma_request_chan_by_mask +EXPORT_SYMBOL_GPL vmlinux 0x2bb24b38 snd_soc_put_strobe +EXPORT_SYMBOL_GPL vmlinux 0x2bb30130 devlink_trap_policers_register +EXPORT_SYMBOL_GPL vmlinux 0x2bd56264 regmap_async_complete_cb EXPORT_SYMBOL_GPL vmlinux 0x2be5030f copy_to_user_nofault -EXPORT_SYMBOL_GPL vmlinux 0x2be664cc sata_std_hardreset -EXPORT_SYMBOL_GPL vmlinux 0x2be7c8a8 spi_mem_driver_register_with_owner -EXPORT_SYMBOL_GPL vmlinux 0x2bf443f5 ping_hash -EXPORT_SYMBOL_GPL vmlinux 0x2bf6535a hwspin_lock_free -EXPORT_SYMBOL_GPL vmlinux 0x2c010e91 dev_pm_opp_disable -EXPORT_SYMBOL_GPL vmlinux 0x2c02cfe2 phy_set_media -EXPORT_SYMBOL_GPL vmlinux 0x2c0739d0 __inet_twsk_schedule -EXPORT_SYMBOL_GPL vmlinux 0x2c07d022 of_msi_configure -EXPORT_SYMBOL_GPL vmlinux 0x2c1f69cd ata_pci_sff_prepare_host -EXPORT_SYMBOL_GPL vmlinux 0x2c1f94a3 clk_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x2bf9ab5b sysfs_chmod_file +EXPORT_SYMBOL_GPL vmlinux 0x2c0741b8 ping_unhash EXPORT_SYMBOL_GPL vmlinux 0x2c208607 power_supply_is_system_supplied -EXPORT_SYMBOL_GPL vmlinux 0x2c225dea fat_dir_empty EXPORT_SYMBOL_GPL vmlinux 0x2c3054f9 net_inc_ingress_queue -EXPORT_SYMBOL_GPL vmlinux 0x2c362f86 ohci_setup -EXPORT_SYMBOL_GPL vmlinux 0x2c4015d7 nand_read_page_hwecc_oob_first -EXPORT_SYMBOL_GPL vmlinux 0x2c5aeb4a dev_pm_genpd_set_next_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x2c64ef5b pci_epc_clear_bar +EXPORT_SYMBOL_GPL vmlinux 0x2c31aff0 wm8350_block_read +EXPORT_SYMBOL_GPL vmlinux 0x2c421c44 regulator_get_error_flags +EXPORT_SYMBOL_GPL vmlinux 0x2c50083f regmap_get_device +EXPORT_SYMBOL_GPL vmlinux 0x2c588ede of_cpufreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x2c5ff8b0 fscrypt_mergeable_bio EXPORT_SYMBOL_GPL vmlinux 0x2c66ac85 devlink_info_serial_number_put -EXPORT_SYMBOL_GPL vmlinux 0x2c6cb370 ethnl_cable_test_pulse -EXPORT_SYMBOL_GPL vmlinux 0x2c756078 usb_gadget_disconnect +EXPORT_SYMBOL_GPL vmlinux 0x2c6b64c8 regulator_disable +EXPORT_SYMBOL_GPL vmlinux 0x2c6d28fe usb_ep0_reinit +EXPORT_SYMBOL_GPL vmlinux 0x2c71f2c5 posix_acl_default_xattr_handler EXPORT_SYMBOL_GPL vmlinux 0x2c7db649 irq_dispose_mapping -EXPORT_SYMBOL_GPL vmlinux 0x2c7fe370 tegra_mc_probe_device -EXPORT_SYMBOL_GPL vmlinux 0x2c80bcbe debugfs_lookup EXPORT_SYMBOL_GPL vmlinux 0x2c81a826 imx_1443x_pll +EXPORT_SYMBOL_GPL vmlinux 0x2c8bf725 uhci_check_and_reset_hc EXPORT_SYMBOL_GPL vmlinux 0x2c8dd6b8 edac_mem_types -EXPORT_SYMBOL_GPL vmlinux 0x2c8f2082 ohci_init_driver EXPORT_SYMBOL_GPL vmlinux 0x2c97f8a2 of_reconfig_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x2cb776d6 phy_pm_runtime_put_sync -EXPORT_SYMBOL_GPL vmlinux 0x2cc1facb scsi_get_vpd_page -EXPORT_SYMBOL_GPL vmlinux 0x2cd79210 ata_sff_busy_sleep -EXPORT_SYMBOL_GPL vmlinux 0x2ce179b3 devlink_port_param_driverinit_value_get -EXPORT_SYMBOL_GPL vmlinux 0x2ce18ad2 serial8250_rpm_put -EXPORT_SYMBOL_GPL vmlinux 0x2ce5283e serial8250_release_dma +EXPORT_SYMBOL_GPL vmlinux 0x2cbae17d mtd_ooblayout_count_freebytes +EXPORT_SYMBOL_GPL vmlinux 0x2cbe0b50 irq_chip_set_affinity_parent +EXPORT_SYMBOL_GPL vmlinux 0x2ccab1b9 thermal_zone_of_sensor_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2cde7665 i2c_dw_configure_master +EXPORT_SYMBOL_GPL vmlinux 0x2ce43301 uart_try_toggle_sysrq EXPORT_SYMBOL_GPL vmlinux 0x2ce61f33 __SCK__tp_func_br_fdb_add -EXPORT_SYMBOL_GPL vmlinux 0x2ce9803d dev_pm_opp_remove EXPORT_SYMBOL_GPL vmlinux 0x2cea32ee unregister_oldmem_pfn_is_ram -EXPORT_SYMBOL_GPL vmlinux 0x2cf37f78 crypto_unregister_rngs -EXPORT_SYMBOL_GPL vmlinux 0x2cf96ff6 iommu_capable -EXPORT_SYMBOL_GPL vmlinux 0x2d065283 iommu_set_fault_handler -EXPORT_SYMBOL_GPL vmlinux 0x2d18c20a crypto_type_has_alg +EXPORT_SYMBOL_GPL vmlinux 0x2d0d5800 device_property_read_u32_array EXPORT_SYMBOL_GPL vmlinux 0x2d1b02d2 usermodehelper_read_lock_wait EXPORT_SYMBOL_GPL vmlinux 0x2d2dd36f kobj_ns_grab_current EXPORT_SYMBOL_GPL vmlinux 0x2d368c4c nand_subop_get_addr_start_off -EXPORT_SYMBOL_GPL vmlinux 0x2d3e3b2e of_i2c_setup_smbus_alert +EXPORT_SYMBOL_GPL vmlinux 0x2d419ef0 sdio_claim_host EXPORT_SYMBOL_GPL vmlinux 0x2d41e6f5 __trace_puts +EXPORT_SYMBOL_GPL vmlinux 0x2d4fb924 pm_genpd_init EXPORT_SYMBOL_GPL vmlinux 0x2d5f69b3 rcu_read_unlock_strict -EXPORT_SYMBOL_GPL vmlinux 0x2d691b9a hvc_remove -EXPORT_SYMBOL_GPL vmlinux 0x2db60b6e pstore_register +EXPORT_SYMBOL_GPL vmlinux 0x2d7be3fb register_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0x2d84c306 gpiochip_line_is_valid +EXPORT_SYMBOL_GPL vmlinux 0x2d8a9076 usb_get_intf +EXPORT_SYMBOL_GPL vmlinux 0x2d953541 scsi_mode_select +EXPORT_SYMBOL_GPL vmlinux 0x2da67021 rio_get_comptag EXPORT_SYMBOL_GPL vmlinux 0x2db67d4a owl_sps_set_pg -EXPORT_SYMBOL_GPL vmlinux 0x2dbcef09 pci_epc_set_bar -EXPORT_SYMBOL_GPL vmlinux 0x2de179c1 usb_wakeup_notification -EXPORT_SYMBOL_GPL vmlinux 0x2dec8340 gpiod_get_raw_value -EXPORT_SYMBOL_GPL vmlinux 0x2df607c0 usb_del_gadget_udc +EXPORT_SYMBOL_GPL vmlinux 0x2df0b29f badblocks_exit +EXPORT_SYMBOL_GPL vmlinux 0x2df7bc56 ipv6_find_tlv +EXPORT_SYMBOL_GPL vmlinux 0x2dfa5f09 i2c_client_type +EXPORT_SYMBOL_GPL vmlinux 0x2dfad50b ti_cm_get_macid EXPORT_SYMBOL_GPL vmlinux 0x2e028ae6 rcutorture_get_gp_data -EXPORT_SYMBOL_GPL vmlinux 0x2e05741a pwm_get -EXPORT_SYMBOL_GPL vmlinux 0x2e130ff0 __devm_of_phy_provider_register -EXPORT_SYMBOL_GPL vmlinux 0x2e1be1b4 sfp_register_socket +EXPORT_SYMBOL_GPL vmlinux 0x2e09694b snd_soc_dapm_weak_routes +EXPORT_SYMBOL_GPL vmlinux 0x2e1ed218 usb_gadget_unmap_request EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace -EXPORT_SYMBOL_GPL vmlinux 0x2e2742c1 sdev_evt_send -EXPORT_SYMBOL_GPL vmlinux 0x2e2dd73e of_clk_add_provider -EXPORT_SYMBOL_GPL vmlinux 0x2e2e0e9d l3mdev_link_scope_lookup -EXPORT_SYMBOL_GPL vmlinux 0x2e3284b2 regmap_raw_write_async -EXPORT_SYMBOL_GPL vmlinux 0x2e345a0d kthread_park -EXPORT_SYMBOL_GPL vmlinux 0x2e38e516 snd_dmaengine_pcm_refine_runtime_hwparams +EXPORT_SYMBOL_GPL vmlinux 0x2e2540cf icc_link_create +EXPORT_SYMBOL_GPL vmlinux 0x2e254f4c scsi_dh_attached_handler_name +EXPORT_SYMBOL_GPL vmlinux 0x2e287076 dev_pm_opp_set_sharing_cpus EXPORT_SYMBOL_GPL vmlinux 0x2e4261f6 snmp_get_cpu_field64 -EXPORT_SYMBOL_GPL vmlinux 0x2e573c1c snd_soc_dapm_sync_unlocked +EXPORT_SYMBOL_GPL vmlinux 0x2e658042 __phy_modify EXPORT_SYMBOL_GPL vmlinux 0x2e66298c __SCK__tp_func_sched_util_est_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x2e85a25c device_create_file +EXPORT_SYMBOL_GPL vmlinux 0x2e8c36ee sm501_modify_reg +EXPORT_SYMBOL_GPL vmlinux 0x2e90bcf1 skb_complete_wifi_ack EXPORT_SYMBOL_GPL vmlinux 0x2e94f1df __traceiter_sched_overutilized_tp -EXPORT_SYMBOL_GPL vmlinux 0x2ea747a3 usb_reset_device -EXPORT_SYMBOL_GPL vmlinux 0x2eb97636 wm831x_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x2eb9b22f sdhci_execute_tuning +EXPORT_SYMBOL_GPL vmlinux 0x2ea47f34 synth_event_gen_cmd_array_start +EXPORT_SYMBOL_GPL vmlinux 0x2ebc2cab fscrypt_mergeable_bio_bh EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable -EXPORT_SYMBOL_GPL vmlinux 0x2ed5440e pm_runtime_get_if_active -EXPORT_SYMBOL_GPL vmlinux 0x2eda5f6a i2c_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x2ef23fbd pinctrl_generic_get_group -EXPORT_SYMBOL_GPL vmlinux 0x2f0a596a pwm_put -EXPORT_SYMBOL_GPL vmlinux 0x2f0cabd2 ata_bmdma32_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x2ec2eb3e rtnl_af_register +EXPORT_SYMBOL_GPL vmlinux 0x2ecabd9c bgpio_init +EXPORT_SYMBOL_GPL vmlinux 0x2ecf3413 modify_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x2edb477f watchdog_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x2ee8ec04 led_init_core +EXPORT_SYMBOL_GPL vmlinux 0x2ee90889 evm_verifyxattr +EXPORT_SYMBOL_GPL vmlinux 0x2efef605 fsl8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x2f070337 of_property_read_string_helper EXPORT_SYMBOL_GPL vmlinux 0x2f0d9053 usb_otg_state_string -EXPORT_SYMBOL_GPL vmlinux 0x2f1192b4 ata_host_register -EXPORT_SYMBOL_GPL vmlinux 0x2f1cca28 fat_update_time +EXPORT_SYMBOL_GPL vmlinux 0x2f120318 wbt_enable_default EXPORT_SYMBOL_GPL vmlinux 0x2f1ea064 __SCK__tp_func_xdp_bulk_tx +EXPORT_SYMBOL_GPL vmlinux 0x2f280c12 class_destroy EXPORT_SYMBOL_GPL vmlinux 0x2f2ead9f kset_find_obj -EXPORT_SYMBOL_GPL vmlinux 0x2f2fb939 i2c_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0x2f363b11 crypto_stats_aead_decrypt -EXPORT_SYMBOL_GPL vmlinux 0x2f5086e7 iommu_device_register -EXPORT_SYMBOL_GPL vmlinux 0x2f517cf8 __fscrypt_prepare_setattr -EXPORT_SYMBOL_GPL vmlinux 0x2f5cbde6 ata_pci_bmdma_init -EXPORT_SYMBOL_GPL vmlinux 0x2f5f982c pci_host_common_probe +EXPORT_SYMBOL_GPL vmlinux 0x2f2f988e mtd_ooblayout_free +EXPORT_SYMBOL_GPL vmlinux 0x2f327048 __efivar_entry_delete +EXPORT_SYMBOL_GPL vmlinux 0x2f39944a ethnl_cable_test_step +EXPORT_SYMBOL_GPL vmlinux 0x2f402202 __kthread_init_worker +EXPORT_SYMBOL_GPL vmlinux 0x2f440305 devm_rtc_allocate_device +EXPORT_SYMBOL_GPL vmlinux 0x2f4beb66 device_match_name EXPORT_SYMBOL_GPL vmlinux 0x2f63e634 usb_poison_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x2f87386f irq_domain_push_irq -EXPORT_SYMBOL_GPL vmlinux 0x2f95452b dma_resv_wait_timeout -EXPORT_SYMBOL_GPL vmlinux 0x2f9a25f6 devm_gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x2f6dd8ba virtqueue_get_desc_addr +EXPORT_SYMBOL_GPL vmlinux 0x2f6e0fa5 snd_soc_dai_compr_startup +EXPORT_SYMBOL_GPL vmlinux 0x2f73a4fb inode_dax +EXPORT_SYMBOL_GPL vmlinux 0x2f836618 cpufreq_driver_resolve_freq EXPORT_SYMBOL_GPL vmlinux 0x2fade0be synth_event_add_field -EXPORT_SYMBOL_GPL vmlinux 0x2fb8b87b input_ff_flush -EXPORT_SYMBOL_GPL vmlinux 0x2fbaee90 irq_domain_free_irqs_common -EXPORT_SYMBOL_GPL vmlinux 0x2fc01d11 da903x_read -EXPORT_SYMBOL_GPL vmlinux 0x2fc0b96f scsi_register_device_handler -EXPORT_SYMBOL_GPL vmlinux 0x2fc1574a usb_deregister_device_driver +EXPORT_SYMBOL_GPL vmlinux 0x2fb47a06 input_class EXPORT_SYMBOL_GPL vmlinux 0x2fc1e0fe kmem_valid_obj -EXPORT_SYMBOL_GPL vmlinux 0x2fc9d891 tty_init_termios -EXPORT_SYMBOL_GPL vmlinux 0x2fca4d05 replace_page_cache_page -EXPORT_SYMBOL_GPL vmlinux 0x2feeabb6 snd_soc_bytes_tlv_callback -EXPORT_SYMBOL_GPL vmlinux 0x2ff392df gpiod_get_from_of_node -EXPORT_SYMBOL_GPL vmlinux 0x2ff509f3 usb_gadget_check_config -EXPORT_SYMBOL_GPL vmlinux 0x2ffed8f3 devm_regulator_bulk_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x3001bd99 __traceiter_br_fdb_update -EXPORT_SYMBOL_GPL vmlinux 0x3002b587 snd_soc_jack_report +EXPORT_SYMBOL_GPL vmlinux 0x2fc51c2a devlink_rate_nodes_destroy +EXPORT_SYMBOL_GPL vmlinux 0x2fd4d939 snd_soc_set_runtime_hwparams +EXPORT_SYMBOL_GPL vmlinux 0x2fe36b81 vfs_truncate +EXPORT_SYMBOL_GPL vmlinux 0x2ffc5a5c thermal_zone_device_enable +EXPORT_SYMBOL_GPL vmlinux 0x300965e3 rdev_get_id EXPORT_SYMBOL_GPL vmlinux 0x30096d57 insert_resource -EXPORT_SYMBOL_GPL vmlinux 0x30167e77 of_clk_get_parent_count -EXPORT_SYMBOL_GPL vmlinux 0x303df9a1 crypto_grab_spawn -EXPORT_SYMBOL_GPL vmlinux 0x3041ffaa perf_event_disable -EXPORT_SYMBOL_GPL vmlinux 0x3046b92a nexthop_find_by_id -EXPORT_SYMBOL_GPL vmlinux 0x304b809a wakeup_sources_walk_start +EXPORT_SYMBOL_GPL vmlinux 0x30102c0e da903x_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x3025b60c blk_crypto_evict_key +EXPORT_SYMBOL_GPL vmlinux 0x302f3102 nand_read_oob_op EXPORT_SYMBOL_GPL vmlinux 0x304c45c6 of_get_display_timing -EXPORT_SYMBOL_GPL vmlinux 0x304e3e2b irq_domain_associate -EXPORT_SYMBOL_GPL vmlinux 0x304f7584 cpts_rx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x305cfeb6 devfreq_event_get_edev_by_phandle EXPORT_SYMBOL_GPL vmlinux 0x3061cfce ring_buffer_entries_cpu -EXPORT_SYMBOL_GPL vmlinux 0x3063f831 snd_soc_component_compr_get_metadata EXPORT_SYMBOL_GPL vmlinux 0x30693bb7 imx_audmux_v1_configure_port +EXPORT_SYMBOL_GPL vmlinux 0x30694776 tty_port_register_device_serdev EXPORT_SYMBOL_GPL vmlinux 0x3069e46b scatterwalk_copychunks -EXPORT_SYMBOL_GPL vmlinux 0x306cf04c lp8788_read_byte -EXPORT_SYMBOL_GPL vmlinux 0x306d7c21 sched_trace_cfs_rq_cpu -EXPORT_SYMBOL_GPL vmlinux 0x306f57e9 fib_nl_delrule -EXPORT_SYMBOL_GPL vmlinux 0x30729e73 devm_hwmon_device_register_with_info -EXPORT_SYMBOL_GPL vmlinux 0x30790e4c dev_pm_genpd_resume -EXPORT_SYMBOL_GPL vmlinux 0x30810898 ping_get_port -EXPORT_SYMBOL_GPL vmlinux 0x3083bcfb devfreq_event_disable_edev -EXPORT_SYMBOL_GPL vmlinux 0x30842dc9 devm_regulator_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0x309d1e8b kobject_uevent -EXPORT_SYMBOL_GPL vmlinux 0x309e53a8 power_supply_class -EXPORT_SYMBOL_GPL vmlinux 0x30a2489e __traceiter_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0x307320b0 l3mdev_master_upper_ifindex_by_index_rcu +EXPORT_SYMBOL_GPL vmlinux 0x307be399 devlink_net +EXPORT_SYMBOL_GPL vmlinux 0x308415c7 gpiod_set_raw_value +EXPORT_SYMBOL_GPL vmlinux 0x308b9997 devm_krealloc +EXPORT_SYMBOL_GPL vmlinux 0x30903002 noop_direct_IO +EXPORT_SYMBOL_GPL vmlinux 0x30980402 snd_soc_of_parse_audio_routing +EXPORT_SYMBOL_GPL vmlinux 0x309918b5 device_add_properties +EXPORT_SYMBOL_GPL vmlinux 0x309ae5ca thermal_cooling_device_register EXPORT_SYMBOL_GPL vmlinux 0x30a262dc look_up_OID EXPORT_SYMBOL_GPL vmlinux 0x30a2b5f5 cpuacct_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x30a57731 snd_soc_component_compr_get_caps -EXPORT_SYMBOL_GPL vmlinux 0x30ab000c sdhci_set_uhs_signaling -EXPORT_SYMBOL_GPL vmlinux 0x30b3a078 phy_destroy -EXPORT_SYMBOL_GPL vmlinux 0x30b8c970 iommu_fwspec_add_ids -EXPORT_SYMBOL_GPL vmlinux 0x30bb6525 of_fdt_unflatten_tree -EXPORT_SYMBOL_GPL vmlinux 0x30cbd91c __udp_gso_segment -EXPORT_SYMBOL_GPL vmlinux 0x30ed710c fuse_sync_release +EXPORT_SYMBOL_GPL vmlinux 0x30a8f896 genphy_c45_loopback +EXPORT_SYMBOL_GPL vmlinux 0x30abc962 tcp_ca_get_key_by_name +EXPORT_SYMBOL_GPL vmlinux 0x30b3df67 nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0x30bf5941 devlink_flash_update_timeout_notify +EXPORT_SYMBOL_GPL vmlinux 0x30c6aa50 virtqueue_add_inbuf +EXPORT_SYMBOL_GPL vmlinux 0x30d49d70 dax_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x30fc1820 ata_bmdma32_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x30fee5fd fat_update_time EXPORT_SYMBOL_GPL vmlinux 0x31019477 __ftrace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0x31083e9f of_resolve_phandles +EXPORT_SYMBOL_GPL vmlinux 0x310b0925 regmap_fields_read EXPORT_SYMBOL_GPL vmlinux 0x310b6270 alarm_forward +EXPORT_SYMBOL_GPL vmlinux 0x3123ceb8 ahci_port_resume EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave -EXPORT_SYMBOL_GPL vmlinux 0x3127f4cb switchdev_bridge_port_offload -EXPORT_SYMBOL_GPL vmlinux 0x312980c3 sk_psock_tls_strp_read -EXPORT_SYMBOL_GPL vmlinux 0x312ef10d bpf_trace_run10 -EXPORT_SYMBOL_GPL vmlinux 0x313ba0b1 regulator_sync_voltage -EXPORT_SYMBOL_GPL vmlinux 0x313ba842 pci_epf_type_add_cfs -EXPORT_SYMBOL_GPL vmlinux 0x313ce43d usb_gadget_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x3129daed snd_soc_of_get_slot_mask +EXPORT_SYMBOL_GPL vmlinux 0x313a9589 __sdhci_read_caps EXPORT_SYMBOL_GPL vmlinux 0x313ea5fd ipi_send_single -EXPORT_SYMBOL_GPL vmlinux 0x31433d5a l3mdev_fib_table_by_index -EXPORT_SYMBOL_GPL vmlinux 0x314c9e8e gadget_find_ep_by_name -EXPORT_SYMBOL_GPL vmlinux 0x3153ae3e of_dma_request_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0x31587bc3 rockchip_clk_init -EXPORT_SYMBOL_GPL vmlinux 0x315d935f devm_thermal_of_cooling_device_register -EXPORT_SYMBOL_GPL vmlinux 0x31692db0 watchdog_register_device -EXPORT_SYMBOL_GPL vmlinux 0x316aa568 list_lru_count_one -EXPORT_SYMBOL_GPL vmlinux 0x3180cae7 kthread_flush_work +EXPORT_SYMBOL_GPL vmlinux 0x316582ef crypto_alloc_ahash +EXPORT_SYMBOL_GPL vmlinux 0x3166d859 devm_hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x316e62d1 blk_freeze_queue_start +EXPORT_SYMBOL_GPL vmlinux 0x31702b44 clockevents_register_device +EXPORT_SYMBOL_GPL vmlinux 0x3177ee12 fat_sync_inode +EXPORT_SYMBOL_GPL vmlinux 0x3184bafe ata_cable_40wire EXPORT_SYMBOL_GPL vmlinux 0x3187490a __SCK__tp_func_detach_device_from_domain -EXPORT_SYMBOL_GPL vmlinux 0x318a2cd6 device_register +EXPORT_SYMBOL_GPL vmlinux 0x318a7baf uart_get_rs485_mode +EXPORT_SYMBOL_GPL vmlinux 0x318b83f6 skb_send_sock_locked +EXPORT_SYMBOL_GPL vmlinux 0x318fd122 i2c_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x3192b392 spi_mem_dirmap_write EXPORT_SYMBOL_GPL vmlinux 0x3192d768 cpufreq_remove_update_util_hook -EXPORT_SYMBOL_GPL vmlinux 0x3198deb4 hwspin_lock_register +EXPORT_SYMBOL_GPL vmlinux 0x3197bb08 serdev_device_write_buf +EXPORT_SYMBOL_GPL vmlinux 0x319e66ef synth_event_add_next_val EXPORT_SYMBOL_GPL vmlinux 0x31a95e8b ring_buffer_record_enable_cpu +EXPORT_SYMBOL_GPL vmlinux 0x31bff5e0 __page_file_index EXPORT_SYMBOL_GPL vmlinux 0x31c7970f pciserial_suspend_ports -EXPORT_SYMBOL_GPL vmlinux 0x31cb89ac devm_pinctrl_register_and_init -EXPORT_SYMBOL_GPL vmlinux 0x31da930c tpm2_get_cc_attrs_tbl -EXPORT_SYMBOL_GPL vmlinux 0x31e3974d fscrypt_ioctl_add_key -EXPORT_SYMBOL_GPL vmlinux 0x31e5eb90 sock_diag_destroy -EXPORT_SYMBOL_GPL vmlinux 0x31ec0024 iommu_attach_group -EXPORT_SYMBOL_GPL vmlinux 0x32037158 ata_sas_tport_delete -EXPORT_SYMBOL_GPL vmlinux 0x3209fb6b rockchip_clk_add_lookup -EXPORT_SYMBOL_GPL vmlinux 0x321b769b pci_ecam_free -EXPORT_SYMBOL_GPL vmlinux 0x32207abf devfreq_event_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0x324c1dfe dma_alloc_pages +EXPORT_SYMBOL_GPL vmlinux 0x31df8bae pci_user_read_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x31e6d618 of_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x31eac206 file_ra_state_init +EXPORT_SYMBOL_GPL vmlinux 0x31ed4b8c vfs_setlease +EXPORT_SYMBOL_GPL vmlinux 0x31f1e987 da9052_disable_irq_nosync +EXPORT_SYMBOL_GPL vmlinux 0x31f899d5 device_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0x320ed531 dev_pm_opp_put_prop_name +EXPORT_SYMBOL_GPL vmlinux 0x321353eb cpufreq_generic_init +EXPORT_SYMBOL_GPL vmlinux 0x322115b1 xfrm_dev_state_add +EXPORT_SYMBOL_GPL vmlinux 0x3223c688 devm_regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x322dc0d2 register_net_sysctl +EXPORT_SYMBOL_GPL vmlinux 0x323f85e9 ipv6_recv_error +EXPORT_SYMBOL_GPL vmlinux 0x324a8bc5 mtd_get_unmapped_area +EXPORT_SYMBOL_GPL vmlinux 0x324bb226 addrconf_prefix_rcv_add_addr +EXPORT_SYMBOL_GPL vmlinux 0x324bd91e tps6586x_read +EXPORT_SYMBOL_GPL vmlinux 0x3256de0e regulator_get_exclusive EXPORT_SYMBOL_GPL vmlinux 0x325e5118 rhashtable_init -EXPORT_SYMBOL_GPL vmlinux 0x325f103c snd_dmaengine_pcm_close -EXPORT_SYMBOL_GPL vmlinux 0x326986f6 wb_writeout_inc -EXPORT_SYMBOL_GPL vmlinux 0x326a334f __rio_local_write_config_8 -EXPORT_SYMBOL_GPL vmlinux 0x326a7b80 irq_chip_set_wake_parent -EXPORT_SYMBOL_GPL vmlinux 0x3274abf6 adp5520_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x327a349a ptp_parse_header -EXPORT_SYMBOL_GPL vmlinux 0x327bbba8 nd_tbl -EXPORT_SYMBOL_GPL vmlinux 0x3294ba31 clk_hw_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0x3298e5b9 devm_power_supply_register_no_ws -EXPORT_SYMBOL_GPL vmlinux 0x329a3a32 pci_cfg_access_trylock -EXPORT_SYMBOL_GPL vmlinux 0x32a77e4c __irq_set_handler +EXPORT_SYMBOL_GPL vmlinux 0x327489ac serdev_device_open +EXPORT_SYMBOL_GPL vmlinux 0x3281b1f5 iommu_dev_disable_feature +EXPORT_SYMBOL_GPL vmlinux 0x329510b6 wbc_attach_and_unlock_inode +EXPORT_SYMBOL_GPL vmlinux 0x32981b12 kobject_uevent_env +EXPORT_SYMBOL_GPL vmlinux 0x32a1918e fwnode_property_present +EXPORT_SYMBOL_GPL vmlinux 0x32a9926d anon_inode_getfd_secure EXPORT_SYMBOL_GPL vmlinux 0x32ab06cc irq_percpu_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0x32b05dd1 devfreq_event_remove_edev -EXPORT_SYMBOL_GPL vmlinux 0x32bc7d7d devlink_resource_occ_get_register +EXPORT_SYMBOL_GPL vmlinux 0x32b70b39 mtd_device_parse_register +EXPORT_SYMBOL_GPL vmlinux 0x32bdae85 shash_ahash_finup EXPORT_SYMBOL_GPL vmlinux 0x32c3cb4e class_compat_register -EXPORT_SYMBOL_GPL vmlinux 0x32e665e1 cpufreq_driver_resolve_freq -EXPORT_SYMBOL_GPL vmlinux 0x32ed9396 ip6_append_data -EXPORT_SYMBOL_GPL vmlinux 0x32f17020 pci_common_swizzle -EXPORT_SYMBOL_GPL vmlinux 0x3300874e snd_soc_dai_set_channel_map -EXPORT_SYMBOL_GPL vmlinux 0x3317bd83 fuse_init_fs_context_submount -EXPORT_SYMBOL_GPL vmlinux 0x332ed938 setfl +EXPORT_SYMBOL_GPL vmlinux 0x32c99896 dw_pcie_wait_for_link +EXPORT_SYMBOL_GPL vmlinux 0x32cd9220 ahci_pmp_retry_srst_ops +EXPORT_SYMBOL_GPL vmlinux 0x32d11994 sdhci_pltfm_init +EXPORT_SYMBOL_GPL vmlinux 0x32d26bea serial8250_modem_status +EXPORT_SYMBOL_GPL vmlinux 0x32e9aa01 dw_pcie_own_conf_map_bus +EXPORT_SYMBOL_GPL vmlinux 0x32fe1427 misc_cg_uncharge +EXPORT_SYMBOL_GPL vmlinux 0x330480fd of_property_count_elems_of_size +EXPORT_SYMBOL_GPL vmlinux 0x3317eb1f crypto_aead_setkey EXPORT_SYMBOL_GPL vmlinux 0x3335ae32 freq_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x33362dec relay_subbufs_consumed EXPORT_SYMBOL_GPL vmlinux 0x333894e5 __clk_hw_register_gate -EXPORT_SYMBOL_GPL vmlinux 0x33510bd8 __mmu_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x3357671b fwnode_property_get_reference_args +EXPORT_SYMBOL_GPL vmlinux 0x333e8a66 extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0x334b0ae5 fsnotify_put_mark +EXPORT_SYMBOL_GPL vmlinux 0x334fdc02 ahci_qc_issue EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0x335c5b94 of_gen_pool_get -EXPORT_SYMBOL_GPL vmlinux 0x335c8c6d __traceiter_neigh_cleanup_and_release -EXPORT_SYMBOL_GPL vmlinux 0x335f1ed2 __auxiliary_driver_register -EXPORT_SYMBOL_GPL vmlinux 0x335ff1c6 _proc_mkdir -EXPORT_SYMBOL_GPL vmlinux 0x3369aaab spi_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0x3375fa47 devres_for_each_res -EXPORT_SYMBOL_GPL vmlinux 0x339cd7c7 gpiochip_line_is_valid -EXPORT_SYMBOL_GPL vmlinux 0x339ce7d6 regulator_desc_list_voltage_linear -EXPORT_SYMBOL_GPL vmlinux 0x33a4d15e snd_soc_add_component -EXPORT_SYMBOL_GPL vmlinux 0x33a955cc xdp_return_frame_rx_napi -EXPORT_SYMBOL_GPL vmlinux 0x33abf741 sysfs_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0x3365e503 __traceiter_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x336f5636 serdev_device_close +EXPORT_SYMBOL_GPL vmlinux 0x337b3048 mtk_eint_do_init +EXPORT_SYMBOL_GPL vmlinux 0x33899051 mtd_block_markbad +EXPORT_SYMBOL_GPL vmlinux 0x33aa00b9 crypto_stats_akcipher_encrypt EXPORT_SYMBOL_GPL vmlinux 0x33b46aa6 uart_parse_earlycon -EXPORT_SYMBOL_GPL vmlinux 0x33bc168b of_mm_gpiochip_add_data +EXPORT_SYMBOL_GPL vmlinux 0x33b5862e crypto_unregister_instance +EXPORT_SYMBOL_GPL vmlinux 0x33b59eab ahci_do_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x33b74fb0 rio_request_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x33ba788e __pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0x33bfd3a4 of_nvmem_device_get +EXPORT_SYMBOL_GPL vmlinux 0x33c21406 mmc_poll_for_busy +EXPORT_SYMBOL_GPL vmlinux 0x33c72110 tc3589x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x33c7ea62 of_irq_parse_one EXPORT_SYMBOL_GPL vmlinux 0x33cd2cd6 cpu_latency_qos_update_request -EXPORT_SYMBOL_GPL vmlinux 0x33d39302 fscrypt_get_symlink -EXPORT_SYMBOL_GPL vmlinux 0x33d6e876 serdev_device_set_parity +EXPORT_SYMBOL_GPL vmlinux 0x33cf511e imx_pinctrl_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0x33defddf mtd_blktrans_cease_background EXPORT_SYMBOL_GPL vmlinux 0x33e9e0a2 atomic_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x33ebf278 crypto_stats_decompress EXPORT_SYMBOL_GPL vmlinux 0x33efc8c8 trace_clock_local -EXPORT_SYMBOL_GPL vmlinux 0x33f4a4ac scsi_check_sense -EXPORT_SYMBOL_GPL vmlinux 0x34021bf9 efivar_entry_add -EXPORT_SYMBOL_GPL vmlinux 0x342d585d cpufreq_generic_attr +EXPORT_SYMBOL_GPL vmlinux 0x34073804 nand_decode_ext_id +EXPORT_SYMBOL_GPL vmlinux 0x341ff999 usb_add_hcd +EXPORT_SYMBOL_GPL vmlinux 0x342074f0 mtk_pinconf_bias_set_rev1 +EXPORT_SYMBOL_GPL vmlinux 0x3433d368 of_clk_parent_fill +EXPORT_SYMBOL_GPL vmlinux 0x343b9b32 platform_msi_domain_free_irqs +EXPORT_SYMBOL_GPL vmlinux 0x343cd811 dma_mmap_pages +EXPORT_SYMBOL_GPL vmlinux 0x343e2470 rio_enable_rx_tx_port +EXPORT_SYMBOL_GPL vmlinux 0x3440038a iommu_dev_feature_enabled EXPORT_SYMBOL_GPL vmlinux 0x34407691 crypto_has_ahash -EXPORT_SYMBOL_GPL vmlinux 0x344355b5 mtd_read_oob EXPORT_SYMBOL_GPL vmlinux 0x344361a1 kdb_register -EXPORT_SYMBOL_GPL vmlinux 0x3445be6a skb_defer_rx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x3443aef6 blk_mq_quiesce_queue +EXPORT_SYMBOL_GPL vmlinux 0x344c894c mtk_eint_set_debounce EXPORT_SYMBOL_GPL vmlinux 0x3450ad94 mpi_set_ui +EXPORT_SYMBOL_GPL vmlinux 0x345b7771 sata_link_scr_lpm +EXPORT_SYMBOL_GPL vmlinux 0x34610a71 component_unbind_all EXPORT_SYMBOL_GPL vmlinux 0x3461ba36 usb_bus_idr EXPORT_SYMBOL_GPL vmlinux 0x3461e4e6 imx_unregister_hw_clocks -EXPORT_SYMBOL_GPL vmlinux 0x34717fc0 __cci_control_port_by_device -EXPORT_SYMBOL_GPL vmlinux 0x34922522 pci_msi_create_irq_domain -EXPORT_SYMBOL_GPL vmlinux 0x3492d122 rockchip_pcie_deinit_phys -EXPORT_SYMBOL_GPL vmlinux 0x34969a86 cpts_release -EXPORT_SYMBOL_GPL vmlinux 0x3499ec65 nand_reset_op -EXPORT_SYMBOL_GPL vmlinux 0x349ee264 md_allow_write +EXPORT_SYMBOL_GPL vmlinux 0x3464c616 devres_for_each_res +EXPORT_SYMBOL_GPL vmlinux 0x34808895 lp8788_update_bits +EXPORT_SYMBOL_GPL vmlinux 0x348e9c2a soc_ac97_ops EXPORT_SYMBOL_GPL vmlinux 0x34a7b142 __SCK__tp_func_rpm_suspend EXPORT_SYMBOL_GPL vmlinux 0x34ac50a4 visitorl -EXPORT_SYMBOL_GPL vmlinux 0x34aebf6f rio_local_set_device_id -EXPORT_SYMBOL_GPL vmlinux 0x34c38a24 sysfs_merge_group -EXPORT_SYMBOL_GPL vmlinux 0x34d6fa7b usb_hcd_map_urb_for_dma -EXPORT_SYMBOL_GPL vmlinux 0x34e311d0 inet6_csk_xmit -EXPORT_SYMBOL_GPL vmlinux 0x34e4936c screen_pos -EXPORT_SYMBOL_GPL vmlinux 0x34f1830e firmware_request_platform -EXPORT_SYMBOL_GPL vmlinux 0x34fe4476 snd_dmaengine_pcm_trigger -EXPORT_SYMBOL_GPL vmlinux 0x34ff69f8 ipv6_find_tlv -EXPORT_SYMBOL_GPL vmlinux 0x35068802 irq_setup_alt_chip +EXPORT_SYMBOL_GPL vmlinux 0x34bce547 pm_clk_resume +EXPORT_SYMBOL_GPL vmlinux 0x34d34d7c sdhci_remove_host +EXPORT_SYMBOL_GPL vmlinux 0x34d35f85 uart_xchar_out +EXPORT_SYMBOL_GPL vmlinux 0x34d8cfc0 ip6_flush_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x34db3463 usb_add_gadget +EXPORT_SYMBOL_GPL vmlinux 0x34e3766f devlink_param_driverinit_value_get +EXPORT_SYMBOL_GPL vmlinux 0x34f17c37 clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0x34f35d80 crypto_register_aeads +EXPORT_SYMBOL_GPL vmlinux 0x3503ba82 snd_soc_component_compr_get_codec_caps +EXPORT_SYMBOL_GPL vmlinux 0x350b7fed rio_unlock_device EXPORT_SYMBOL_GPL vmlinux 0x350f6ce5 tasklet_unlock_wait -EXPORT_SYMBOL_GPL vmlinux 0x3510e899 devm_of_led_get +EXPORT_SYMBOL_GPL vmlinux 0x3514a7f2 ata_std_sched_eh EXPORT_SYMBOL_GPL vmlinux 0x352b3813 maxim_charger_calc_reg_current +EXPORT_SYMBOL_GPL vmlinux 0x352c5e2b bpf_redirect_info +EXPORT_SYMBOL_GPL vmlinux 0x352d4442 clk_mux_determine_rate_flags EXPORT_SYMBOL_GPL vmlinux 0x352ec68b bpf_offload_dev_destroy -EXPORT_SYMBOL_GPL vmlinux 0x355b7c2d rio_dev_get +EXPORT_SYMBOL_GPL vmlinux 0x3554dae3 debugfs_create_file_unsafe +EXPORT_SYMBOL_GPL vmlinux 0x35596338 gpiod_set_value EXPORT_SYMBOL_GPL vmlinux 0x35681ae3 __tracepoint_tcp_bad_csum -EXPORT_SYMBOL_GPL vmlinux 0x356e9412 sysfs_unmerge_group -EXPORT_SYMBOL_GPL vmlinux 0x357c2bd8 irq_chip_unmask_parent -EXPORT_SYMBOL_GPL vmlinux 0x357e6c09 phy_pm_runtime_get -EXPORT_SYMBOL_GPL vmlinux 0x358c4218 regulator_get_voltage -EXPORT_SYMBOL_GPL vmlinux 0x358f0b9e iomap_fiemap +EXPORT_SYMBOL_GPL vmlinux 0x3568557f handle_irq_desc +EXPORT_SYMBOL_GPL vmlinux 0x3569610c genphy_c45_read_link +EXPORT_SYMBOL_GPL vmlinux 0x3582ea3c pci_scan_child_bus +EXPORT_SYMBOL_GPL vmlinux 0x358a954c fuse_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x358aea63 bpf_verifier_log_write +EXPORT_SYMBOL_GPL vmlinux 0x358eb80a sata_async_notification EXPORT_SYMBOL_GPL vmlinux 0x358ff60f twl_get_hfclk_rate -EXPORT_SYMBOL_GPL vmlinux 0x35943734 crypto_spawn_tfm2 -EXPORT_SYMBOL_GPL vmlinux 0x3596c980 bpf_trace_run12 -EXPORT_SYMBOL_GPL vmlinux 0x35e61234 tty_get_pgrp -EXPORT_SYMBOL_GPL vmlinux 0x35efe7b6 __blk_mq_debugfs_rq_show +EXPORT_SYMBOL_GPL vmlinux 0x35a177e0 wakeup_source_unregister +EXPORT_SYMBOL_GPL vmlinux 0x35ca006f iommu_aux_detach_device +EXPORT_SYMBOL_GPL vmlinux 0x35cfca61 dev_pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0x35dc8863 regulator_get +EXPORT_SYMBOL_GPL vmlinux 0x35e88c39 devlink_port_type_clear EXPORT_SYMBOL_GPL vmlinux 0x36075bb5 iommu_group_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x3608ffd7 ip6_datagram_connect_v6_only -EXPORT_SYMBOL_GPL vmlinux 0x3609a697 clk_register_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0x361410ce pci_sriov_get_totalvfs -EXPORT_SYMBOL_GPL vmlinux 0x3621dcf9 serial8250_modem_status +EXPORT_SYMBOL_GPL vmlinux 0x36152e62 class_find_device +EXPORT_SYMBOL_GPL vmlinux 0x36168d39 ip6_pol_route +EXPORT_SYMBOL_GPL vmlinux 0x3617e658 mtk_pinconf_bias_disable_set +EXPORT_SYMBOL_GPL vmlinux 0x361dc21a fs_kobj +EXPORT_SYMBOL_GPL vmlinux 0x362115d2 securityfs_remove EXPORT_SYMBOL_GPL vmlinux 0x36242943 switchdev_deferred_process -EXPORT_SYMBOL_GPL vmlinux 0x36289d2e skb_mpls_push -EXPORT_SYMBOL_GPL vmlinux 0x362d7d16 irq_domain_reset_irq_data EXPORT_SYMBOL_GPL vmlinux 0x36356eda tegra124_clk_set_emc_callbacks -EXPORT_SYMBOL_GPL vmlinux 0x36405d1a spi_add_device -EXPORT_SYMBOL_GPL vmlinux 0x364d790f nand_prog_page_op -EXPORT_SYMBOL_GPL vmlinux 0x3654c18f regulator_bulk_set_supply_names +EXPORT_SYMBOL_GPL vmlinux 0x36376793 pwm_set_chip_data +EXPORT_SYMBOL_GPL vmlinux 0x36488c9f subsys_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x364ae4e7 hwspin_lock_unregister +EXPORT_SYMBOL_GPL vmlinux 0x364de90f snd_soc_component_update_bits EXPORT_SYMBOL_GPL vmlinux 0x365989e5 imx_1416x_pll -EXPORT_SYMBOL_GPL vmlinux 0x365c3d2c tpm1_do_selftest -EXPORT_SYMBOL_GPL vmlinux 0x365cc799 devm_pinctrl_register -EXPORT_SYMBOL_GPL vmlinux 0x36710c02 iommu_attach_device -EXPORT_SYMBOL_GPL vmlinux 0x3684f859 vp_modern_map_vq_notify -EXPORT_SYMBOL_GPL vmlinux 0x3690e8f6 __fscrypt_prepare_rename -EXPORT_SYMBOL_GPL vmlinux 0x3697a06d ip6_dst_lookup_tunnel -EXPORT_SYMBOL_GPL vmlinux 0x369951b7 ip6_dst_lookup +EXPORT_SYMBOL_GPL vmlinux 0x3675c067 usb_alloc_streams +EXPORT_SYMBOL_GPL vmlinux 0x36832298 snd_soc_free_ac97_component +EXPORT_SYMBOL_GPL vmlinux 0x368569ca dev_pm_domain_attach_by_name +EXPORT_SYMBOL_GPL vmlinux 0x3695a830 pwm_apply_state EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot -EXPORT_SYMBOL_GPL vmlinux 0x36a3fe2a icc_link_destroy -EXPORT_SYMBOL_GPL vmlinux 0x36ba8bc9 ip_route_output_tunnel -EXPORT_SYMBOL_GPL vmlinux 0x36d358bc bpf_offload_dev_match -EXPORT_SYMBOL_GPL vmlinux 0x36de5836 __alloc_pages_bulk +EXPORT_SYMBOL_GPL vmlinux 0x36a6b664 clk_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0x36acfaad mmc_get_ext_csd +EXPORT_SYMBOL_GPL vmlinux 0x36d855eb mtk_pinconf_bias_set +EXPORT_SYMBOL_GPL vmlinux 0x36e112da of_genpd_del_provider +EXPORT_SYMBOL_GPL vmlinux 0x36ec5d72 scsi_queue_work EXPORT_SYMBOL_GPL vmlinux 0x36ec8a8a nvmem_device_cell_read -EXPORT_SYMBOL_GPL vmlinux 0x36ef2300 free_io_pgtable_ops -EXPORT_SYMBOL_GPL vmlinux 0x36ef4f12 yield_to -EXPORT_SYMBOL_GPL vmlinux 0x36f9badd ata_pci_device_suspend -EXPORT_SYMBOL_GPL vmlinux 0x3702567c snd_soc_dai_set_pll -EXPORT_SYMBOL_GPL vmlinux 0x37055292 ping_common_sendmsg -EXPORT_SYMBOL_GPL vmlinux 0x370985e1 snd_soc_dapm_stream_stop -EXPORT_SYMBOL_GPL vmlinux 0x370fbbea pinctrl_unregister -EXPORT_SYMBOL_GPL vmlinux 0x37208b6f ata_do_set_mode -EXPORT_SYMBOL_GPL vmlinux 0x372dfd41 mbox_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x373c7206 __traceiter_block_rq_insert -EXPORT_SYMBOL_GPL vmlinux 0x3747192d fsl_mc_device_group -EXPORT_SYMBOL_GPL vmlinux 0x374b1511 snd_ctl_disconnect_layer +EXPORT_SYMBOL_GPL vmlinux 0x36f812ba xhci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x36f98205 security_path_chmod +EXPORT_SYMBOL_GPL vmlinux 0x3717ba20 snd_soc_dai_compr_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x371dc3f7 fscrypt_ioctl_get_policy_ex +EXPORT_SYMBOL_GPL vmlinux 0x37290b8a usb_hcd_platform_shutdown EXPORT_SYMBOL_GPL vmlinux 0x374c53e1 ata_get_cmd_descript -EXPORT_SYMBOL_GPL vmlinux 0x37541767 __hwspin_unlock EXPORT_SYMBOL_GPL vmlinux 0x37595cb3 meson_clk_mpll_ops -EXPORT_SYMBOL_GPL vmlinux 0x3765af45 gpiochip_line_is_irq +EXPORT_SYMBOL_GPL vmlinux 0x3760925c pci_pasid_features +EXPORT_SYMBOL_GPL vmlinux 0x3762c5b9 cpufreq_driver_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0x376754de snd_soc_pm_ops EXPORT_SYMBOL_GPL vmlinux 0x37743b64 iomap_dio_complete -EXPORT_SYMBOL_GPL vmlinux 0x377a6515 __phy_modify EXPORT_SYMBOL_GPL vmlinux 0x377bbcbc pm_suspend_target_state -EXPORT_SYMBOL_GPL vmlinux 0x37829ae5 spi_bus_unlock -EXPORT_SYMBOL_GPL vmlinux 0x378c0c20 synth_event_create -EXPORT_SYMBOL_GPL vmlinux 0x378eda58 usb_hcd_unlink_urb_from_ep -EXPORT_SYMBOL_GPL vmlinux 0x379afc18 cgroup_get_from_path -EXPORT_SYMBOL_GPL vmlinux 0x37b41225 __dev_change_net_namespace -EXPORT_SYMBOL_GPL vmlinux 0x37b95223 dw_pcie_ep_init_complete -EXPORT_SYMBOL_GPL vmlinux 0x37ba25ba rtc_update_irq -EXPORT_SYMBOL_GPL vmlinux 0x37cccffa __of_reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0x37df5240 tty_port_register_device_serdev +EXPORT_SYMBOL_GPL vmlinux 0x377e2dc4 securityfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0x379c78e7 devlink_dpipe_action_put +EXPORT_SYMBOL_GPL vmlinux 0x37b6b502 dev_pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0x37bf4891 snd_soc_card_get_kcontrol +EXPORT_SYMBOL_GPL vmlinux 0x37c812ba fb_deferred_io_init +EXPORT_SYMBOL_GPL vmlinux 0x37cb0a75 device_bind_driver +EXPORT_SYMBOL_GPL vmlinux 0x37def657 rockchip_pcie_parse_dt EXPORT_SYMBOL_GPL vmlinux 0x37e00980 pci_bridge_emul_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x37e10207 regulator_suspend_enable -EXPORT_SYMBOL_GPL vmlinux 0x37e373f8 pci_bus_max_busnr -EXPORT_SYMBOL_GPL vmlinux 0x38092dde __traceiter_pelt_se_tp -EXPORT_SYMBOL_GPL vmlinux 0x380fa42b reset_controller_unregister -EXPORT_SYMBOL_GPL vmlinux 0x381023e4 ata_host_alloc_pinfo -EXPORT_SYMBOL_GPL vmlinux 0x38153ddc ata_std_qc_defer -EXPORT_SYMBOL_GPL vmlinux 0x38165486 virtqueue_get_avail_addr -EXPORT_SYMBOL_GPL vmlinux 0x381e218b regulator_list_voltage_linear_range -EXPORT_SYMBOL_GPL vmlinux 0x382470c8 page_cache_sync_ra +EXPORT_SYMBOL_GPL vmlinux 0x37e02e53 shmem_read_mapping_page_gfp +EXPORT_SYMBOL_GPL vmlinux 0x37fd927c devm_spi_mem_dirmap_destroy +EXPORT_SYMBOL_GPL vmlinux 0x380cfa67 sk_clear_memalloc +EXPORT_SYMBOL_GPL vmlinux 0x381d181b dst_blackhole_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x381d1d7c cpuidle_register +EXPORT_SYMBOL_GPL vmlinux 0x381dc8c4 relay_flush EXPORT_SYMBOL_GPL vmlinux 0x38268b62 icc_bulk_enable -EXPORT_SYMBOL_GPL vmlinux 0x3827b142 phy_restore_page -EXPORT_SYMBOL_GPL vmlinux 0x3828e5f3 inet_hash_connect -EXPORT_SYMBOL_GPL vmlinux 0x38292468 md_rdev_clear -EXPORT_SYMBOL_GPL vmlinux 0x382d9ea7 dm_suspended -EXPORT_SYMBOL_GPL vmlinux 0x38372e36 i2c_dw_validate_speed +EXPORT_SYMBOL_GPL vmlinux 0x383554f5 dev_attr_unload_heads EXPORT_SYMBOL_GPL vmlinux 0x38374815 clear_selection -EXPORT_SYMBOL_GPL vmlinux 0x3849975e pinmux_generic_get_function_count -EXPORT_SYMBOL_GPL vmlinux 0x384e7889 wm831x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x38530802 led_classdev_register_ext -EXPORT_SYMBOL_GPL vmlinux 0x3868a34c gpiochip_line_is_open_source -EXPORT_SYMBOL_GPL vmlinux 0x386b40a2 regulator_allow_bypass -EXPORT_SYMBOL_GPL vmlinux 0x38767f39 get_task_pid -EXPORT_SYMBOL_GPL vmlinux 0x38825adf fuse_dev_alloc_install -EXPORT_SYMBOL_GPL vmlinux 0x38856f9c dev_pm_opp_get_of_node -EXPORT_SYMBOL_GPL vmlinux 0x38a96c9d inet_twsk_put +EXPORT_SYMBOL_GPL vmlinux 0x383b0cd2 power_supply_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0x384d8e9b pm_generic_thaw_early +EXPORT_SYMBOL_GPL vmlinux 0x38624617 ip6_sk_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x386dfd06 pcie_aspm_enabled +EXPORT_SYMBOL_GPL vmlinux 0x386e709d meson8_aobus_parse_dt_extra +EXPORT_SYMBOL_GPL vmlinux 0x3899f0ef ethnl_cable_test_pulse EXPORT_SYMBOL_GPL vmlinux 0x38a9c2c7 input_ff_effect_from_user EXPORT_SYMBOL_GPL vmlinux 0x38aa1397 gpiod_add_lookup_table EXPORT_SYMBOL_GPL vmlinux 0x38aa4657 xas_nomem -EXPORT_SYMBOL_GPL vmlinux 0x38b3572a serdev_controller_alloc +EXPORT_SYMBOL_GPL vmlinux 0x38ba7a76 snd_ctl_sync_vmaster +EXPORT_SYMBOL_GPL vmlinux 0x38bf361b dev_pm_qos_add_ancestor_request EXPORT_SYMBOL_GPL vmlinux 0x38c0c9e4 btree_update -EXPORT_SYMBOL_GPL vmlinux 0x38dea058 of_hwspin_lock_get_id_byname +EXPORT_SYMBOL_GPL vmlinux 0x38dde808 sysfs_create_files +EXPORT_SYMBOL_GPL vmlinux 0x38e1093b edac_mc_add_mc_with_groups EXPORT_SYMBOL_GPL vmlinux 0x38e1fde7 mpi_set EXPORT_SYMBOL_GPL vmlinux 0x38e5bc5a clk_set_rate_range -EXPORT_SYMBOL_GPL vmlinux 0x38e87deb mtd_device_parse_register -EXPORT_SYMBOL_GPL vmlinux 0x391e5bc2 register_wide_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x394c8f12 ipv4_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x3968cad4 crypto_mod_get -EXPORT_SYMBOL_GPL vmlinux 0x396cd772 compat_only_sysfs_link_entry_to_kobj +EXPORT_SYMBOL_GPL vmlinux 0x38f7e103 ata_sff_qc_fill_rtf +EXPORT_SYMBOL_GPL vmlinux 0x390a34fb pinctrl_force_default +EXPORT_SYMBOL_GPL vmlinux 0x3915b37a crypto_spawn_tfm2 +EXPORT_SYMBOL_GPL vmlinux 0x3919539d __sdhci_set_timeout +EXPORT_SYMBOL_GPL vmlinux 0x392bcd4a mpc8xxx_spi_probe +EXPORT_SYMBOL_GPL vmlinux 0x39320f57 genphy_c45_read_status +EXPORT_SYMBOL_GPL vmlinux 0x393f3c6c __blk_mq_debugfs_rq_show +EXPORT_SYMBOL_GPL vmlinux 0x3951f8fb rio_dma_prep_slave_sg +EXPORT_SYMBOL_GPL vmlinux 0x3965e040 edac_mc_handle_error +EXPORT_SYMBOL_GPL vmlinux 0x3966de99 serial8250_rpm_get_tx +EXPORT_SYMBOL_GPL vmlinux 0x39755150 regmap_async_complete EXPORT_SYMBOL_GPL vmlinux 0x397e2142 __SCK__tp_func_sched_cpu_capacity_tp -EXPORT_SYMBOL_GPL vmlinux 0x399056f1 cpufreq_driver_fast_switch -EXPORT_SYMBOL_GPL vmlinux 0x3997a6c8 efivar_entry_set -EXPORT_SYMBOL_GPL vmlinux 0x399a4102 ip6_datagram_connect -EXPORT_SYMBOL_GPL vmlinux 0x39a02851 devm_regmap_del_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x398b1e7e tracing_snapshot_cond_enable EXPORT_SYMBOL_GPL vmlinux 0x39a7affc driver_deferred_probe_timeout -EXPORT_SYMBOL_GPL vmlinux 0x39a9bfe5 xhci_ext_cap_init EXPORT_SYMBOL_GPL vmlinux 0x39aa4888 usb_role_string -EXPORT_SYMBOL_GPL vmlinux 0x39b6f290 mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x39b43f6f usb_add_phy +EXPORT_SYMBOL_GPL vmlinux 0x39b591cb vfs_read +EXPORT_SYMBOL_GPL vmlinux 0x39b7beff bpf_trace_run5 EXPORT_SYMBOL_GPL vmlinux 0x39c32aca __SCK__tp_func_neigh_event_send_done -EXPORT_SYMBOL_GPL vmlinux 0x39c49070 iomap_releasepage -EXPORT_SYMBOL_GPL vmlinux 0x39c649bd rdev_clear_badblocks -EXPORT_SYMBOL_GPL vmlinux 0x39dc8031 inet_twsk_alloc -EXPORT_SYMBOL_GPL vmlinux 0x39df313b soc_device_register -EXPORT_SYMBOL_GPL vmlinux 0x3a0268ff devfreq_event_reset_event -EXPORT_SYMBOL_GPL vmlinux 0x3a048f8d of_irq_to_resource -EXPORT_SYMBOL_GPL vmlinux 0x3a0d0589 snd_soc_link_compr_set_params -EXPORT_SYMBOL_GPL vmlinux 0x3a11ee23 pci_find_next_ext_capability -EXPORT_SYMBOL_GPL vmlinux 0x3a254e3d put_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0x3a2d441c cpts_register -EXPORT_SYMBOL_GPL vmlinux 0x3a32045c sbitmap_queue_show -EXPORT_SYMBOL_GPL vmlinux 0x3a3c7b1b bpf_prog_add -EXPORT_SYMBOL_GPL vmlinux 0x3a4f0079 mtd_ooblayout_ecc +EXPORT_SYMBOL_GPL vmlinux 0x39c89799 usb_sg_wait +EXPORT_SYMBOL_GPL vmlinux 0x39d75818 crypto_alg_mod_lookup +EXPORT_SYMBOL_GPL vmlinux 0x39e58554 serdev_device_set_flow_control +EXPORT_SYMBOL_GPL vmlinux 0x39ee3900 genphy_c45_pma_resume +EXPORT_SYMBOL_GPL vmlinux 0x39f2801b cgroup_get_from_fd +EXPORT_SYMBOL_GPL vmlinux 0x3a044fd1 rio_dev_put +EXPORT_SYMBOL_GPL vmlinux 0x3a1444d4 fsverity_verify_page +EXPORT_SYMBOL_GPL vmlinux 0x3a148651 dev_attr_ncq_prio_supported +EXPORT_SYMBOL_GPL vmlinux 0x3a1cea2e get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0x3a2cda49 wm831x_auxadc_read_uv +EXPORT_SYMBOL_GPL vmlinux 0x3a341682 fscrypt_set_bio_crypt_ctx_bh +EXPORT_SYMBOL_GPL vmlinux 0x3a446e5c of_device_modalias EXPORT_SYMBOL_GPL vmlinux 0x3a4f6a32 ata_sff_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x3a4f6a47 __ip6_local_out EXPORT_SYMBOL_GPL vmlinux 0x3a536bd7 ring_buffer_read_finish -EXPORT_SYMBOL_GPL vmlinux 0x3a54d70d snd_soc_add_dai_controls -EXPORT_SYMBOL_GPL vmlinux 0x3a8b55ac rtc_initialize_alarm +EXPORT_SYMBOL_GPL vmlinux 0x3a5d4ccf unregister_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x3a660975 usb_gadget_vbus_draw +EXPORT_SYMBOL_GPL vmlinux 0x3a996734 usb_register_driver EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial -EXPORT_SYMBOL_GPL vmlinux 0x3aa1b977 mtk_mutex_get +EXPORT_SYMBOL_GPL vmlinux 0x3aa13c3a scsi_bus_type EXPORT_SYMBOL_GPL vmlinux 0x3aa71cf5 page_reporting_register -EXPORT_SYMBOL_GPL vmlinux 0x3ab5dc12 spi_bus_lock -EXPORT_SYMBOL_GPL vmlinux 0x3ac65310 validate_xmit_xfrm +EXPORT_SYMBOL_GPL vmlinux 0x3aa73e3c ata_sff_lost_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x3ab7de12 devm_regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x3abb02db iptunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0x3abeb6ed devm_clk_hw_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x3ac3735a md_stop_writes EXPORT_SYMBOL_GPL vmlinux 0x3acdf325 twl4030_audio_enable_resource -EXPORT_SYMBOL_GPL vmlinux 0x3ace8f93 extcon_sync -EXPORT_SYMBOL_GPL vmlinux 0x3ad29c60 shmem_zero_setup -EXPORT_SYMBOL_GPL vmlinux 0x3ad99560 devm_of_platform_depopulate -EXPORT_SYMBOL_GPL vmlinux 0x3ae4581b nand_ecc_choose_conf -EXPORT_SYMBOL_GPL vmlinux 0x3ae80774 dmaengine_desc_attach_metadata -EXPORT_SYMBOL_GPL vmlinux 0x3af844f6 crypto_register_shashes -EXPORT_SYMBOL_GPL vmlinux 0x3afd30b2 efivar_entry_delete +EXPORT_SYMBOL_GPL vmlinux 0x3acdf517 spi_res_release +EXPORT_SYMBOL_GPL vmlinux 0x3ad039b0 of_clk_src_onecell_get +EXPORT_SYMBOL_GPL vmlinux 0x3ad3c241 usb_hcd_pci_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0x3ae6c89d ata_pci_sff_activate_host +EXPORT_SYMBOL_GPL vmlinux 0x3aec07c0 devfreq_event_set_event +EXPORT_SYMBOL_GPL vmlinux 0x3aef3896 device_match_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x3afcf023 tpm_try_get_ops +EXPORT_SYMBOL_GPL vmlinux 0x3b05c869 int_active_memcg +EXPORT_SYMBOL_GPL vmlinux 0x3b070edf fixup_user_fault EXPORT_SYMBOL_GPL vmlinux 0x3b0714f7 fanout_mutex -EXPORT_SYMBOL_GPL vmlinux 0x3b160025 crypto_register_acomps -EXPORT_SYMBOL_GPL vmlinux 0x3b167289 fwnode_graph_get_port_parent -EXPORT_SYMBOL_GPL vmlinux 0x3b17f8ad __platform_register_drivers -EXPORT_SYMBOL_GPL vmlinux 0x3b1a099a genpd_dev_pm_attach_by_id -EXPORT_SYMBOL_GPL vmlinux 0x3b245121 dm_table_device_name +EXPORT_SYMBOL_GPL vmlinux 0x3b0bba78 ahci_platform_enable_resources +EXPORT_SYMBOL_GPL vmlinux 0x3b10a052 sdhci_pltfm_pmops +EXPORT_SYMBOL_GPL vmlinux 0x3b21c3cf phy_exit +EXPORT_SYMBOL_GPL vmlinux 0x3b2ec4fa __vfs_removexattr_noperm +EXPORT_SYMBOL_GPL vmlinux 0x3b3b41c0 of_css +EXPORT_SYMBOL_GPL vmlinux 0x3b4935d8 blk_mq_complete_request_remote EXPORT_SYMBOL_GPL vmlinux 0x3b4c240a display_timings_release -EXPORT_SYMBOL_GPL vmlinux 0x3b547503 debugfs_attr_write -EXPORT_SYMBOL_GPL vmlinux 0x3b58b5f9 usb_get_current_frame_number -EXPORT_SYMBOL_GPL vmlinux 0x3b60b00b sk_free_unlock_clone -EXPORT_SYMBOL_GPL vmlinux 0x3b71348c dw_pcie_ep_init -EXPORT_SYMBOL_GPL vmlinux 0x3b78b378 l3mdev_master_ifindex_rcu -EXPORT_SYMBOL_GPL vmlinux 0x3b7c7446 serdev_device_set_tiocm -EXPORT_SYMBOL_GPL vmlinux 0x3b856eed gpiod_get_value -EXPORT_SYMBOL_GPL vmlinux 0x3b8d024f page_mkclean -EXPORT_SYMBOL_GPL vmlinux 0x3b948339 of_pm_clk_add_clk -EXPORT_SYMBOL_GPL vmlinux 0x3ba4bddb ata_std_prereset -EXPORT_SYMBOL_GPL vmlinux 0x3bb05334 ata_host_detach -EXPORT_SYMBOL_GPL vmlinux 0x3bc39eeb sdhci_pltfm_free -EXPORT_SYMBOL_GPL vmlinux 0x3bd56c98 tcp_sendpage_locked -EXPORT_SYMBOL_GPL vmlinux 0x3bd87eb5 pci_epc_mem_free_addr +EXPORT_SYMBOL_GPL vmlinux 0x3b841d4a __fscrypt_encrypt_symlink +EXPORT_SYMBOL_GPL vmlinux 0x3b91c18e crypto_register_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x3bbe06fc blkcg_activate_policy +EXPORT_SYMBOL_GPL vmlinux 0x3bcc9de9 fsnotify_destroy_mark +EXPORT_SYMBOL_GPL vmlinux 0x3bd6491d usb_get_phy EXPORT_SYMBOL_GPL vmlinux 0x3bdb5d28 alg_test +EXPORT_SYMBOL_GPL vmlinux 0x3bde3715 snd_ctl_get_preferred_subdevice EXPORT_SYMBOL_GPL vmlinux 0x3bf17755 mpi_read_buffer -EXPORT_SYMBOL_GPL vmlinux 0x3bfa264b ahci_shost_attrs -EXPORT_SYMBOL_GPL vmlinux 0x3c0176e9 pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0x3bf4faca nf_queue_entry_free +EXPORT_SYMBOL_GPL vmlinux 0x3c09b0db bio_start_io_acct_time EXPORT_SYMBOL_GPL vmlinux 0x3c1c3725 rcu_fwd_progress_check -EXPORT_SYMBOL_GPL vmlinux 0x3c1d8e89 phy_create -EXPORT_SYMBOL_GPL vmlinux 0x3c223500 devm_pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0x3c289e37 rtc_update_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0x3c2af480 usb_hc_died EXPORT_SYMBOL_GPL vmlinux 0x3c2b68f7 of_changeset_apply EXPORT_SYMBOL_GPL vmlinux 0x3c3c85d8 __SCK__tp_func_kfree_skb -EXPORT_SYMBOL_GPL vmlinux 0x3c3f8b8b iommu_unmap_fast +EXPORT_SYMBOL_GPL vmlinux 0x3c42e8ca thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x3c5033c6 dev_pm_opp_find_freq_exact +EXPORT_SYMBOL_GPL vmlinux 0x3c5b1a5b pm_runtime_force_resume EXPORT_SYMBOL_GPL vmlinux 0x3c681dc4 ring_buffer_record_disable EXPORT_SYMBOL_GPL vmlinux 0x3c72724e usb_wait_anchor_empty_timeout -EXPORT_SYMBOL_GPL vmlinux 0x3c7f2377 of_pci_parse_bus_range -EXPORT_SYMBOL_GPL vmlinux 0x3c86d8b7 blk_mq_sched_mark_restart_hctx -EXPORT_SYMBOL_GPL vmlinux 0x3c8cfe30 clk_register_divider_table -EXPORT_SYMBOL_GPL vmlinux 0x3c9d8f1f ata_port_abort -EXPORT_SYMBOL_GPL vmlinux 0x3ca7402b snd_devm_alloc_pages -EXPORT_SYMBOL_GPL vmlinux 0x3cb52728 irq_alloc_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x3cb698ef auxiliary_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0x3cc893a4 page_cache_ra_unbounded -EXPORT_SYMBOL_GPL vmlinux 0x3ccd1aea serdev_controller_remove -EXPORT_SYMBOL_GPL vmlinux 0x3ccf322c devfreq_event_get_event +EXPORT_SYMBOL_GPL vmlinux 0x3c7cdc2c __traceiter_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0x3c826580 usb_hcd_setup_local_mem +EXPORT_SYMBOL_GPL vmlinux 0x3ca46a76 pci_intx +EXPORT_SYMBOL_GPL vmlinux 0x3caa5644 hisi_clk_init +EXPORT_SYMBOL_GPL vmlinux 0x3ccc5720 i2c_dw_prepare_clk EXPORT_SYMBOL_GPL vmlinux 0x3cd06035 add_input_randomness EXPORT_SYMBOL_GPL vmlinux 0x3cd1b510 trace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0x3cd96634 sdhci_pltfm_register +EXPORT_SYMBOL_GPL vmlinux 0x3cdbdf39 __fscrypt_prepare_link +EXPORT_SYMBOL_GPL vmlinux 0x3cdc6582 iomap_zero_range +EXPORT_SYMBOL_GPL vmlinux 0x3cddd9fd wakeup_source_destroy +EXPORT_SYMBOL_GPL vmlinux 0x3ce5960e fl6_merge_options EXPORT_SYMBOL_GPL vmlinux 0x3ce650fd phy_10gbit_features -EXPORT_SYMBOL_GPL vmlinux 0x3cf49976 platform_add_devices -EXPORT_SYMBOL_GPL vmlinux 0x3cfbdd10 blk_add_driver_data -EXPORT_SYMBOL_GPL vmlinux 0x3d0e635b spi_controller_resume -EXPORT_SYMBOL_GPL vmlinux 0x3d2506b9 device_set_wakeup_capable -EXPORT_SYMBOL_GPL vmlinux 0x3d371df6 __sdhci_set_timeout +EXPORT_SYMBOL_GPL vmlinux 0x3ceab79b regulator_list_hardware_vsel +EXPORT_SYMBOL_GPL vmlinux 0x3ced3a63 fuse_conn_put +EXPORT_SYMBOL_GPL vmlinux 0x3d00429a hisi_clk_register_phase +EXPORT_SYMBOL_GPL vmlinux 0x3d03896f devm_gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x3d058bdb phy_pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0x3d061d18 iomap_ioend_try_merge +EXPORT_SYMBOL_GPL vmlinux 0x3d175671 __phy_modify_mmd_changed +EXPORT_SYMBOL_GPL vmlinux 0x3d2b286e skb_pull_rcsum +EXPORT_SYMBOL_GPL vmlinux 0x3d3293d0 nexthop_select_path +EXPORT_SYMBOL_GPL vmlinux 0x3d33ed16 debugfs_create_x16 EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end -EXPORT_SYMBOL_GPL vmlinux 0x3d49d7c7 extcon_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x3d50884d wm8350_clear_bits EXPORT_SYMBOL_GPL vmlinux 0x3d510a7b rcu_jiffies_till_stall_check -EXPORT_SYMBOL_GPL vmlinux 0x3d65ed9e snd_soc_of_put_dai_link_codecs -EXPORT_SYMBOL_GPL vmlinux 0x3d6a415f __register_mtd_parser -EXPORT_SYMBOL_GPL vmlinux 0x3d835b11 tcp_enter_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0x3d620fab ohci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x3d78c145 ata_sas_sync_probe EXPORT_SYMBOL_GPL vmlinux 0x3d866e05 __SCK__tp_func_block_rq_insert -EXPORT_SYMBOL_GPL vmlinux 0x3d8d072a usb_gadget_vbus_connect +EXPORT_SYMBOL_GPL vmlinux 0x3d8b47c6 md_stop +EXPORT_SYMBOL_GPL vmlinux 0x3d8ba274 fsverity_ioctl_enable +EXPORT_SYMBOL_GPL vmlinux 0x3d8c13bc spi_new_ancillary_device +EXPORT_SYMBOL_GPL vmlinux 0x3d923a58 usb_get_urb EXPORT_SYMBOL_GPL vmlinux 0x3d9bbf75 wwan_port_txon EXPORT_SYMBOL_GPL vmlinux 0x3da61ee9 pkcs7_validate_trust -EXPORT_SYMBOL_GPL vmlinux 0x3daa92aa genphy_c45_pma_resume EXPORT_SYMBOL_GPL vmlinux 0x3db48a49 __tracepoint_kfree_skb -EXPORT_SYMBOL_GPL vmlinux 0x3de10f52 device_pm_wait_for_dev +EXPORT_SYMBOL_GPL vmlinux 0x3dcbe1e1 power_supply_put_battery_info +EXPORT_SYMBOL_GPL vmlinux 0x3dd43217 ping_hash EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final -EXPORT_SYMBOL_GPL vmlinux 0x3dea48a0 del_mtd_blktrans_dev -EXPORT_SYMBOL_GPL vmlinux 0x3df187d0 kstrdup_quotable_cmdline -EXPORT_SYMBOL_GPL vmlinux 0x3df45b9b pci_load_saved_state -EXPORT_SYMBOL_GPL vmlinux 0x3dfb3961 of_map_id -EXPORT_SYMBOL_GPL vmlinux 0x3e049068 snd_soc_dai_get_channel_map -EXPORT_SYMBOL_GPL vmlinux 0x3e1cbd04 pm_clk_add +EXPORT_SYMBOL_GPL vmlinux 0x3def9786 skb_zerocopy_iter_stream +EXPORT_SYMBOL_GPL vmlinux 0x3e0ca167 serial8250_rpm_put +EXPORT_SYMBOL_GPL vmlinux 0x3e101ebc genphy_c45_read_mdix +EXPORT_SYMBOL_GPL vmlinux 0x3e187515 find_pid_ns EXPORT_SYMBOL_GPL vmlinux 0x3e27065b usb_ep_set_wedge -EXPORT_SYMBOL_GPL vmlinux 0x3e2a2fd0 serdev_device_get_tiocm EXPORT_SYMBOL_GPL vmlinux 0x3e31d9c3 net_prio_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x3e33982e gpiod_set_array_value -EXPORT_SYMBOL_GPL vmlinux 0x3e392b0a mddev_init +EXPORT_SYMBOL_GPL vmlinux 0x3e32d4ab devm_of_platform_depopulate +EXPORT_SYMBOL_GPL vmlinux 0x3e3cbd10 anon_transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x3e4757b7 virtqueue_add_inbuf_ctx EXPORT_SYMBOL_GPL vmlinux 0x3e4f36f7 tracepoint_probe_register_prio -EXPORT_SYMBOL_GPL vmlinux 0x3e53d98b scsi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x3e610c9c mptcp_get_reset_option -EXPORT_SYMBOL_GPL vmlinux 0x3e6cdfae snd_soc_dapm_info_pin_switch +EXPORT_SYMBOL_GPL vmlinux 0x3e55b1a6 devm_nvmem_device_put +EXPORT_SYMBOL_GPL vmlinux 0x3e5d4800 devm_hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0x3e5d78e3 dm_bio_get_target_bio_nr +EXPORT_SYMBOL_GPL vmlinux 0x3e6a88e2 __mdiobus_modify_changed EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer -EXPORT_SYMBOL_GPL vmlinux 0x3e844b46 bpfilter_ops -EXPORT_SYMBOL_GPL vmlinux 0x3e9029be netdev_walk_all_upper_dev_rcu -EXPORT_SYMBOL_GPL vmlinux 0x3e9c7511 virtqueue_enable_cb_prepare -EXPORT_SYMBOL_GPL vmlinux 0x3ea317b4 of_changeset_action -EXPORT_SYMBOL_GPL vmlinux 0x3ebbe45f devm_device_add_group +EXPORT_SYMBOL_GPL vmlinux 0x3e9a6f7e wm8350_gpio_config +EXPORT_SYMBOL_GPL vmlinux 0x3ea50761 platform_device_add EXPORT_SYMBOL_GPL vmlinux 0x3ec40239 idr_alloc_u32 -EXPORT_SYMBOL_GPL vmlinux 0x3ec5d518 rio_free_net -EXPORT_SYMBOL_GPL vmlinux 0x3ec77ef2 tps65912_device_init -EXPORT_SYMBOL_GPL vmlinux 0x3ed1478f pci_load_and_free_saved_state -EXPORT_SYMBOL_GPL vmlinux 0x3ed2543d fuse_conn_get -EXPORT_SYMBOL_GPL vmlinux 0x3edc3bf5 io_cgrp_subsys +EXPORT_SYMBOL_GPL vmlinux 0x3edcba5f arm_iommu_release_mapping +EXPORT_SYMBOL_GPL vmlinux 0x3eef3c7e usb_interrupt_msg EXPORT_SYMBOL_GPL vmlinux 0x3ef051c8 crypto_inc +EXPORT_SYMBOL_GPL vmlinux 0x3ef30193 regmap_fields_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0x3ef5bdec bpf_prog_inc_not_zero EXPORT_SYMBOL_GPL vmlinux 0x3efd1889 dax_direct_access -EXPORT_SYMBOL_GPL vmlinux 0x3efd7499 snd_soc_dai_set_tdm_slot +EXPORT_SYMBOL_GPL vmlinux 0x3efdabbe pm_runtime_set_autosuspend_delay +EXPORT_SYMBOL_GPL vmlinux 0x3f01314d usb_hcd_link_urb_to_ep EXPORT_SYMBOL_GPL vmlinux 0x3f060887 __ioread32_copy -EXPORT_SYMBOL_GPL vmlinux 0x3f1214f4 ahci_platform_get_resources +EXPORT_SYMBOL_GPL vmlinux 0x3f07a6d4 __traceiter_neigh_cleanup_and_release +EXPORT_SYMBOL_GPL vmlinux 0x3f0ac62b __traceiter_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x3f100d0b pci_epc_multi_mem_init EXPORT_SYMBOL_GPL vmlinux 0x3f2092e3 fl6_update_dst -EXPORT_SYMBOL_GPL vmlinux 0x3f287bce inet_csk_get_port -EXPORT_SYMBOL_GPL vmlinux 0x3f2bd43e blkg_rwstat_recursive_sum -EXPORT_SYMBOL_GPL vmlinux 0x3f429615 devlink_resource_register +EXPORT_SYMBOL_GPL vmlinux 0x3f216ffe reset_simple_ops +EXPORT_SYMBOL_GPL vmlinux 0x3f29174b of_genpd_add_provider_onecell +EXPORT_SYMBOL_GPL vmlinux 0x3f47be00 platform_get_resource EXPORT_SYMBOL_GPL vmlinux 0x3f491f49 reset_control_bulk_reset -EXPORT_SYMBOL_GPL vmlinux 0x3f53e040 sata_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x3f655977 devm_pm_opp_set_supported_hw -EXPORT_SYMBOL_GPL vmlinux 0x3f82781e crypto_register_templates +EXPORT_SYMBOL_GPL vmlinux 0x3f4b2542 tpmm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0x3f57911b sdio_writeb +EXPORT_SYMBOL_GPL vmlinux 0x3f5c6be4 ata_std_qc_defer +EXPORT_SYMBOL_GPL vmlinux 0x3f5eb3ad pwm_put +EXPORT_SYMBOL_GPL vmlinux 0x3f637b81 skcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x3f700ea0 iomap_file_buffered_write +EXPORT_SYMBOL_GPL vmlinux 0x3f728879 skcipher_walk_async +EXPORT_SYMBOL_GPL vmlinux 0x3f7cf86b kernfs_notify EXPORT_SYMBOL_GPL vmlinux 0x3f84bcd7 dax_alive EXPORT_SYMBOL_GPL vmlinux 0x3f8ab72e devlink_fmsg_bool_put -EXPORT_SYMBOL_GPL vmlinux 0x3f91dba2 adp5520_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x3fa95a8c snd_soc_of_parse_audio_routing -EXPORT_SYMBOL_GPL vmlinux 0x3fb23825 sdhci_free_host -EXPORT_SYMBOL_GPL vmlinux 0x3fd8c091 sata_set_spd -EXPORT_SYMBOL_GPL vmlinux 0x3fd8c35e ethnl_cable_test_free +EXPORT_SYMBOL_GPL vmlinux 0x3f9cd433 vchan_init +EXPORT_SYMBOL_GPL vmlinux 0x3fb0db87 inet_csk_route_req +EXPORT_SYMBOL_GPL vmlinux 0x3fd8cf29 dev_pm_opp_remove_table +EXPORT_SYMBOL_GPL vmlinux 0x3fdfd478 iomap_file_unshare EXPORT_SYMBOL_GPL vmlinux 0x3fe6c346 devlink_fmsg_binary_pair_put EXPORT_SYMBOL_GPL vmlinux 0x3fea029c hisi_clk_register_gate -EXPORT_SYMBOL_GPL vmlinux 0x3fef9e96 pcie_bus_configure_settings -EXPORT_SYMBOL_GPL vmlinux 0x3fefd417 crypto_alloc_aead -EXPORT_SYMBOL_GPL vmlinux 0x3ff10019 pinctrl_generic_get_group_name -EXPORT_SYMBOL_GPL vmlinux 0x3ff4bafb ata_bmdma_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x3fec9baf gpiod_count EXPORT_SYMBOL_GPL vmlinux 0x3ff82085 public_key_signature_free EXPORT_SYMBOL_GPL vmlinux 0x3ffdacf3 timerqueue_iterate_next -EXPORT_SYMBOL_GPL vmlinux 0x3fff4f82 usb_phy_generic_unregister -EXPORT_SYMBOL_GPL vmlinux 0x40011fe0 mtd_ooblayout_count_eccbytes -EXPORT_SYMBOL_GPL vmlinux 0x4019fc3d tcp_reno_cong_avoid -EXPORT_SYMBOL_GPL vmlinux 0x401b315c mmc_cmdq_enable -EXPORT_SYMBOL_GPL vmlinux 0x402b1b53 sata_link_debounce -EXPORT_SYMBOL_GPL vmlinux 0x403d12cc stmpe_block_write +EXPORT_SYMBOL_GPL vmlinux 0x40100142 blk_trace_setup +EXPORT_SYMBOL_GPL vmlinux 0x402191c8 __traceiter_neigh_update +EXPORT_SYMBOL_GPL vmlinux 0x40281b2e bio_release_pages +EXPORT_SYMBOL_GPL vmlinux 0x403b3bc6 nand_soft_waitrdy +EXPORT_SYMBOL_GPL vmlinux 0x403ee021 sysfs_remove_file_self EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one -EXPORT_SYMBOL_GPL vmlinux 0x4052d645 get_user_pages_fast_only -EXPORT_SYMBOL_GPL vmlinux 0x4059530d ata_host_activate +EXPORT_SYMBOL_GPL vmlinux 0x40454ea8 devm_irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x404c52d3 d_walk EXPORT_SYMBOL_GPL vmlinux 0x4065d168 pm_print_active_wakeup_sources +EXPORT_SYMBOL_GPL vmlinux 0x406a7e25 devm_usb_get_phy EXPORT_SYMBOL_GPL vmlinux 0x406c4cb1 hrtimer_resolution -EXPORT_SYMBOL_GPL vmlinux 0x40714fe6 xfrm_local_error EXPORT_SYMBOL_GPL vmlinux 0x4071b517 out_of_line_wait_on_bit_timeout +EXPORT_SYMBOL_GPL vmlinux 0x4076a41e snd_soc_of_parse_node_prefix EXPORT_SYMBOL_GPL vmlinux 0x4082f95f pci_epc_get_first_free_bar -EXPORT_SYMBOL_GPL vmlinux 0x40897e73 pci_scan_child_bus -EXPORT_SYMBOL_GPL vmlinux 0x40921a60 sock_diag_check_cookie +EXPORT_SYMBOL_GPL vmlinux 0x408de5a7 of_pci_address_to_resource +EXPORT_SYMBOL_GPL vmlinux 0x4099ef8d pci_epf_alloc_space EXPORT_SYMBOL_GPL vmlinux 0x4099f919 tun_ptr_free EXPORT_SYMBOL_GPL vmlinux 0x409a6ddb spi_delay_to_ns -EXPORT_SYMBOL_GPL vmlinux 0x40a17405 regmap_noinc_write -EXPORT_SYMBOL_GPL vmlinux 0x40aa6c53 tcp_abort -EXPORT_SYMBOL_GPL vmlinux 0x40ad8028 free_fib_info -EXPORT_SYMBOL_GPL vmlinux 0x40b550b2 cpufreq_freq_attr_scaling_available_freqs +EXPORT_SYMBOL_GPL vmlinux 0x40b4f8a7 __cci_control_port_by_device +EXPORT_SYMBOL_GPL vmlinux 0x40be3457 arm_iommu_detach_device +EXPORT_SYMBOL_GPL vmlinux 0x40be68c7 mmc_crypto_setup_queue EXPORT_SYMBOL_GPL vmlinux 0x40c3c8d1 __tracepoint_block_rq_insert -EXPORT_SYMBOL_GPL vmlinux 0x40cdefd6 ahci_platform_disable_clks -EXPORT_SYMBOL_GPL vmlinux 0x40d2530e bpf_map_inc_with_uref +EXPORT_SYMBOL_GPL vmlinux 0x40c4355b snd_soc_dai_digital_mute +EXPORT_SYMBOL_GPL vmlinux 0x40e7c4ac device_release_driver +EXPORT_SYMBOL_GPL vmlinux 0x40ef5818 extcon_sync EXPORT_SYMBOL_GPL vmlinux 0x40f0683e reset_control_put -EXPORT_SYMBOL_GPL vmlinux 0x40f2ffca snd_soc_dai_compr_set_params -EXPORT_SYMBOL_GPL vmlinux 0x40f42dbc snd_soc_component_compr_get_params +EXPORT_SYMBOL_GPL vmlinux 0x40f3a11a sdhci_alloc_host +EXPORT_SYMBOL_GPL vmlinux 0x40f76d2c snd_soc_get_strobe 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 0x4106dfaf rockchip_pcie_get_phys -EXPORT_SYMBOL_GPL vmlinux 0x411f0f03 query_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0x410304ef rockchip_pcie_deinit_phys +EXPORT_SYMBOL_GPL vmlinux 0x4105c700 soc_device_register +EXPORT_SYMBOL_GPL vmlinux 0x411adb97 snd_soc_component_enable_pin_unlocked EXPORT_SYMBOL_GPL vmlinux 0x412bc681 ring_buffer_empty_cpu EXPORT_SYMBOL_GPL vmlinux 0x412d54be ftrace_set_notrace -EXPORT_SYMBOL_GPL vmlinux 0x413ca86a snd_soc_dapm_update_dai +EXPORT_SYMBOL_GPL vmlinux 0x413011b9 md_bitmap_resize EXPORT_SYMBOL_GPL vmlinux 0x414538e6 synth_event_add_field_str +EXPORT_SYMBOL_GPL vmlinux 0x41467fab fwnode_handle_get EXPORT_SYMBOL_GPL vmlinux 0x414d119a videomode_from_timings -EXPORT_SYMBOL_GPL vmlinux 0x41619572 devm_kfree -EXPORT_SYMBOL_GPL vmlinux 0x41625224 snd_soc_jack_get_type -EXPORT_SYMBOL_GPL vmlinux 0x41641ec5 of_property_read_u64 -EXPORT_SYMBOL_GPL vmlinux 0x416517f9 __udp6_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x41740e2b ata_sff_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x415c2616 i2c_dw_validate_speed +EXPORT_SYMBOL_GPL vmlinux 0x41634c97 raw_hash_sk +EXPORT_SYMBOL_GPL vmlinux 0x416c6ed0 shmem_zero_setup +EXPORT_SYMBOL_GPL vmlinux 0x4173b2c7 security_file_permission +EXPORT_SYMBOL_GPL vmlinux 0x4176147f snd_soc_tplg_widget_bind_event EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval -EXPORT_SYMBOL_GPL vmlinux 0x41892b22 __reset_control_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0x418ab281 sdhci_request -EXPORT_SYMBOL_GPL vmlinux 0x41937273 pci_remove_root_bus -EXPORT_SYMBOL_GPL vmlinux 0x4197e7ac param_set_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0x418c67d2 nand_ecc_restore_req +EXPORT_SYMBOL_GPL vmlinux 0x418d28dc irq_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x419db465 usb_altnum_to_altsetting EXPORT_SYMBOL_GPL vmlinux 0x419e7efd sfp_module_stop -EXPORT_SYMBOL_GPL vmlinux 0x41a05b79 crypto_aead_decrypt -EXPORT_SYMBOL_GPL vmlinux 0x41a8c28d bpf_prog_create -EXPORT_SYMBOL_GPL vmlinux 0x41acf0fb inet6_hash_connect -EXPORT_SYMBOL_GPL vmlinux 0x41b3452f dev_pm_genpd_suspend +EXPORT_SYMBOL_GPL vmlinux 0x41a30066 ata_sas_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x41a5b4cf __traceiter_br_fdb_update EXPORT_SYMBOL_GPL vmlinux 0x41b9a6e6 bsg_unregister_queue +EXPORT_SYMBOL_GPL vmlinux 0x41bdd6e3 i2c_add_numbered_adapter EXPORT_SYMBOL_GPL vmlinux 0x41c30f3a trace_seq_bprintf -EXPORT_SYMBOL_GPL vmlinux 0x41c96697 smpboot_register_percpu_thread -EXPORT_SYMBOL_GPL vmlinux 0x41c9a8d5 device_link_add -EXPORT_SYMBOL_GPL vmlinux 0x41d25b8a pinmux_generic_get_function +EXPORT_SYMBOL_GPL vmlinux 0x41c3cd6b irq_domain_xlate_twocell +EXPORT_SYMBOL_GPL vmlinux 0x41c5c426 thermal_zone_bind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0x41e6645a mpc8xxx_spi_rx_buf_u32 EXPORT_SYMBOL_GPL vmlinux 0x41ed3cec eventfd_ctx_remove_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x41f82ee1 cpufreq_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x4200dae2 snd_dmaengine_pcm_request_channel EXPORT_SYMBOL_GPL vmlinux 0x42041512 i2c_get_dma_safe_msg_buf EXPORT_SYMBOL_GPL vmlinux 0x4205ad24 cancel_work_sync -EXPORT_SYMBOL_GPL vmlinux 0x420871dd phy_modify_changed +EXPORT_SYMBOL_GPL vmlinux 0x420713fb i2c_for_each_dev EXPORT_SYMBOL_GPL vmlinux 0x420f3d01 nvmem_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x421b7b1c wm831x_auxadc_read -EXPORT_SYMBOL_GPL vmlinux 0x42305e3b extcon_get_state -EXPORT_SYMBOL_GPL vmlinux 0x42454aa9 devlink_traps_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4214b758 mmu_notifier_range_update_to_read_only +EXPORT_SYMBOL_GPL vmlinux 0x4239581e devm_clk_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x423bb8dd spi_res_alloc +EXPORT_SYMBOL_GPL vmlinux 0x4241ff9f usb_mon_register +EXPORT_SYMBOL_GPL vmlinux 0x4244b297 power_supply_property_is_writeable +EXPORT_SYMBOL_GPL vmlinux 0x4246c5e0 usb_alloc_coherent +EXPORT_SYMBOL_GPL vmlinux 0x424d6618 ata_sas_port_start EXPORT_SYMBOL_GPL vmlinux 0x42635d55 pm_suspend_global_flags EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active -EXPORT_SYMBOL_GPL vmlinux 0x4289dd6f find_mci_by_dev -EXPORT_SYMBOL_GPL vmlinux 0x42a1eb29 inet_csk_route_req -EXPORT_SYMBOL_GPL vmlinux 0x42a528f4 inet_twsk_hashdance -EXPORT_SYMBOL_GPL vmlinux 0x42ac629d snd_dmaengine_pcm_prepare_slave_config -EXPORT_SYMBOL_GPL vmlinux 0x42b4df5b __netdev_watchdog_up -EXPORT_SYMBOL_GPL vmlinux 0x42c9d9ff debugfs_create_regset32 -EXPORT_SYMBOL_GPL vmlinux 0x42d493c4 clk_hw_register -EXPORT_SYMBOL_GPL vmlinux 0x42db28f2 devm_usb_get_phy_by_node -EXPORT_SYMBOL_GPL vmlinux 0x42def348 da903x_reads +EXPORT_SYMBOL_GPL vmlinux 0x428c96c9 tcp_cong_avoid_ai +EXPORT_SYMBOL_GPL vmlinux 0x42963769 devm_extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x42b53251 clk_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x42bdb72f mmput +EXPORT_SYMBOL_GPL vmlinux 0x42c72724 vfs_test_lock +EXPORT_SYMBOL_GPL vmlinux 0x42d024b2 snd_dmaengine_pcm_trigger EXPORT_SYMBOL_GPL vmlinux 0x42e445f6 clk_mux_val_to_index EXPORT_SYMBOL_GPL vmlinux 0x42e7a297 scatterwalk_map_and_copy -EXPORT_SYMBOL_GPL vmlinux 0x42e9a7f2 pci_epc_linkup EXPORT_SYMBOL_GPL vmlinux 0x42e9d0da ring_buffer_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0x42ee456e regulator_set_suspend_voltage EXPORT_SYMBOL_GPL vmlinux 0x42efb127 nvmem_del_cell_lookups -EXPORT_SYMBOL_GPL vmlinux 0x42f05635 led_trigger_rename_static -EXPORT_SYMBOL_GPL vmlinux 0x42f6200b ata_sff_data_xfer32 EXPORT_SYMBOL_GPL vmlinux 0x42f728aa mctrl_gpio_get_outputs EXPORT_SYMBOL_GPL vmlinux 0x430d88ec __traceiter_arm_event -EXPORT_SYMBOL_GPL vmlinux 0x430d9adf icc_link_create -EXPORT_SYMBOL_GPL vmlinux 0x431a99ab pingv6_ops -EXPORT_SYMBOL_GPL vmlinux 0x431efba6 rockchip_pcie_parse_dt -EXPORT_SYMBOL_GPL vmlinux 0x431fe325 skb_partial_csum_set -EXPORT_SYMBOL_GPL vmlinux 0x4325d3ae gpiod_direction_input -EXPORT_SYMBOL_GPL vmlinux 0x433134b7 fib_info_nh_uses_dev -EXPORT_SYMBOL_GPL vmlinux 0x434bfba1 rt_mutex_lock_interruptible -EXPORT_SYMBOL_GPL vmlinux 0x434d323f usb_hcd_unmap_urb_for_dma -EXPORT_SYMBOL_GPL vmlinux 0x4358ec18 netlink_has_listeners -EXPORT_SYMBOL_GPL vmlinux 0x436562c6 fscrypt_ioctl_get_nonce -EXPORT_SYMBOL_GPL vmlinux 0x436c841b blk_mq_virtio_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x43159f94 ata_qc_get_active +EXPORT_SYMBOL_GPL vmlinux 0x431bb8f5 proc_create_net_data +EXPORT_SYMBOL_GPL vmlinux 0x431bcae3 __devm_rtc_register_device +EXPORT_SYMBOL_GPL vmlinux 0x431d295b set_selection_kernel +EXPORT_SYMBOL_GPL vmlinux 0x4327c76d sdhci_resume_host +EXPORT_SYMBOL_GPL vmlinux 0x432a93e8 __traceiter_sched_util_est_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x43335a29 crypto_shash_digest +EXPORT_SYMBOL_GPL vmlinux 0x43497e81 tcp_bpf_sendmsg_redir EXPORT_SYMBOL_GPL vmlinux 0x436d817f mpi_clear_bit -EXPORT_SYMBOL_GPL vmlinux 0x4372625c of_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0x4376b84e bus_register_notifier EXPORT_SYMBOL_GPL vmlinux 0x437eb1df ipv6_mod_enabled -EXPORT_SYMBOL_GPL vmlinux 0x438180e3 device_destroy -EXPORT_SYMBOL_GPL vmlinux 0x438b0cba dst_cache_get_ip4 -EXPORT_SYMBOL_GPL vmlinux 0x438f1243 snd_soc_put_xr_sx -EXPORT_SYMBOL_GPL vmlinux 0x4393b5c9 ahci_platform_disable_regulators -EXPORT_SYMBOL_GPL vmlinux 0x439ac6af bpf_prog_inc_not_zero -EXPORT_SYMBOL_GPL vmlinux 0x43a45a37 led_trigger_write +EXPORT_SYMBOL_GPL vmlinux 0x43865c81 phy_modify_mmd +EXPORT_SYMBOL_GPL vmlinux 0x43869830 sdhci_add_host +EXPORT_SYMBOL_GPL vmlinux 0x438eec56 kthread_unpark +EXPORT_SYMBOL_GPL vmlinux 0x43919643 pci_test_config_bits EXPORT_SYMBOL_GPL vmlinux 0x43aa319e lease_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x43c1f2eb pm_generic_resume_early -EXPORT_SYMBOL_GPL vmlinux 0x43cfdbd7 blk_crypto_evict_key +EXPORT_SYMBOL_GPL vmlinux 0x43afb766 exportfs_encode_fh +EXPORT_SYMBOL_GPL vmlinux 0x43b38307 tegra_bpmp_transfer_atomic +EXPORT_SYMBOL_GPL vmlinux 0x43b5bb4f dma_buf_end_cpu_access +EXPORT_SYMBOL_GPL vmlinux 0x43b88838 snd_soc_dapm_kcontrol_widget +EXPORT_SYMBOL_GPL vmlinux 0x43ba0b95 device_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0x43bdb2cd trace_event_reg +EXPORT_SYMBOL_GPL vmlinux 0x43c9ef8f tpm2_get_tpm_pt +EXPORT_SYMBOL_GPL vmlinux 0x43cd30b9 blk_ksm_intersect_modes +EXPORT_SYMBOL_GPL vmlinux 0x43d756eb ata_bmdma_port_start EXPORT_SYMBOL_GPL vmlinux 0x43dfd261 __tracepoint_attach_device_to_domain -EXPORT_SYMBOL_GPL vmlinux 0x43e1dd51 br_fdb_test_addr_hook -EXPORT_SYMBOL_GPL vmlinux 0x43e4d4a9 nvmem_cell_read_u64 -EXPORT_SYMBOL_GPL vmlinux 0x43e78999 fsnotify -EXPORT_SYMBOL_GPL vmlinux 0x43ee4077 mbox_client_txdone -EXPORT_SYMBOL_GPL vmlinux 0x43f2f08e mtk_mmsys_ddp_connect +EXPORT_SYMBOL_GPL vmlinux 0x43e5f277 sdhci_pltfm_free +EXPORT_SYMBOL_GPL vmlinux 0x43e88607 icc_nodes_remove EXPORT_SYMBOL_GPL vmlinux 0x43f56e82 ata_xfer_mode2shift -EXPORT_SYMBOL_GPL vmlinux 0x43f6e18a __traceiter_neigh_timer_handler EXPORT_SYMBOL_GPL vmlinux 0x43f81957 clk_round_rate EXPORT_SYMBOL_GPL vmlinux 0x43f92edd wait_for_initramfs +EXPORT_SYMBOL_GPL vmlinux 0x43f9eb02 crypto_register_scomps +EXPORT_SYMBOL_GPL vmlinux 0x43fe4ebf event_triggers_call EXPORT_SYMBOL_GPL vmlinux 0x4401e6c2 mpi_cmpabs -EXPORT_SYMBOL_GPL vmlinux 0x440663b2 serial8250_set_defaults -EXPORT_SYMBOL_GPL vmlinux 0x440ee60a devm_hwmon_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x440f3697 switchdev_port_obj_add -EXPORT_SYMBOL_GPL vmlinux 0x4422e39c devm_rtc_nvmem_register -EXPORT_SYMBOL_GPL vmlinux 0x442c7542 dma_need_sync +EXPORT_SYMBOL_GPL vmlinux 0x441d4a3f of_add_property +EXPORT_SYMBOL_GPL vmlinux 0x4426723c efivar_entry_set_get_size EXPORT_SYMBOL_GPL vmlinux 0x442deaa9 poll_state_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0x443250d8 sm501_unit_power EXPORT_SYMBOL_GPL vmlinux 0x4439bcd2 __SCK__tp_func_neigh_event_send_dead -EXPORT_SYMBOL_GPL vmlinux 0x4440e08b of_property_read_u64_index -EXPORT_SYMBOL_GPL vmlinux 0x444a37a7 regulator_set_voltage_sel_pickable_regmap -EXPORT_SYMBOL_GPL vmlinux 0x444a5805 snd_soc_bytes_get -EXPORT_SYMBOL_GPL vmlinux 0x444bb241 strp_process +EXPORT_SYMBOL_GPL vmlinux 0x443b0f38 ata_dev_disable +EXPORT_SYMBOL_GPL vmlinux 0x443c2290 of_devfreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x444cfd08 blk_mq_alloc_request_hctx EXPORT_SYMBOL_GPL vmlinux 0x444f1735 cpu_pm_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x44558140 receive_fd +EXPORT_SYMBOL_GPL vmlinux 0x4454ea1c __sync_filesystem EXPORT_SYMBOL_GPL vmlinux 0x445a09c0 nvmem_device_cell_write -EXPORT_SYMBOL_GPL vmlinux 0x447c10cc pci_epf_unbind -EXPORT_SYMBOL_GPL vmlinux 0x44803e69 posix_acl_access_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0x445b1a66 serial8250_tx_chars +EXPORT_SYMBOL_GPL vmlinux 0x445e503b snd_soc_get_dai_id +EXPORT_SYMBOL_GPL vmlinux 0x4464bd3c thermal_add_hwmon_sysfs EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe -EXPORT_SYMBOL_GPL vmlinux 0x4488cf5c snd_soc_link_compr_startup -EXPORT_SYMBOL_GPL vmlinux 0x4499c9fb ahci_platform_suspend_host -EXPORT_SYMBOL_GPL vmlinux 0x44b34e59 tps65217_clear_bits -EXPORT_SYMBOL_GPL vmlinux 0x44b66eae devfreq_event_add_edev -EXPORT_SYMBOL_GPL vmlinux 0x44b85e81 edac_device_free_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0x449c5fea page_endio +EXPORT_SYMBOL_GPL vmlinux 0x44a10067 public_key_subtype +EXPORT_SYMBOL_GPL vmlinux 0x44b7d069 of_devfreq_cooling_register_power EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout -EXPORT_SYMBOL_GPL vmlinux 0x44c26125 mmc_crypto_prepare_req -EXPORT_SYMBOL_GPL vmlinux 0x44cd005d pci_find_next_capability +EXPORT_SYMBOL_GPL vmlinux 0x44cd4b93 icc_get EXPORT_SYMBOL_GPL vmlinux 0x44cf8cf0 blk_zone_cond_str -EXPORT_SYMBOL_GPL vmlinux 0x44e5734b serial8250_tx_chars +EXPORT_SYMBOL_GPL vmlinux 0x44d14ba6 elv_rqhash_del +EXPORT_SYMBOL_GPL vmlinux 0x44de1364 dm_internal_resume_fast +EXPORT_SYMBOL_GPL vmlinux 0x44df3dad pci_store_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x44ee6520 sysfs_create_groups +EXPORT_SYMBOL_GPL vmlinux 0x44f288e5 phy_set_mode_ext +EXPORT_SYMBOL_GPL vmlinux 0x44fa807a mnt_drop_write EXPORT_SYMBOL_GPL vmlinux 0x4507f4a8 cpuhp_tasks_frozen -EXPORT_SYMBOL_GPL vmlinux 0x452ea13b css_next_descendant_pre -EXPORT_SYMBOL_GPL vmlinux 0x45434719 balloon_page_list_dequeue -EXPORT_SYMBOL_GPL vmlinux 0x45464307 mtd_unpoint -EXPORT_SYMBOL_GPL vmlinux 0x4548159c gpiochip_unlock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0x450bcf99 scsi_eh_ready_devs +EXPORT_SYMBOL_GPL vmlinux 0x451fdffc rio_mport_chk_dev_access +EXPORT_SYMBOL_GPL vmlinux 0x453003d1 mtd_del_partition +EXPORT_SYMBOL_GPL vmlinux 0x455382bc inet6_hash_connect EXPORT_SYMBOL_GPL vmlinux 0x45558f56 clk_unregister_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x4557b168 usb_hub_claim_port +EXPORT_SYMBOL_GPL vmlinux 0x455e054b skb_defer_rx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x45618931 em_dev_register_perf_domain EXPORT_SYMBOL_GPL vmlinux 0x4561f990 qcom_smem_state_unregister -EXPORT_SYMBOL_GPL vmlinux 0x456c0d18 usb_free_coherent +EXPORT_SYMBOL_GPL vmlinux 0x45627a9b virtqueue_get_used_addr +EXPORT_SYMBOL_GPL vmlinux 0x45694c4a tcp_ca_openreq_child +EXPORT_SYMBOL_GPL vmlinux 0x456e7f6e blk_trace_startstop EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list -EXPORT_SYMBOL_GPL vmlinux 0x45863357 udp4_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x4591ea7e __traceiter_devlink_hwerr -EXPORT_SYMBOL_GPL vmlinux 0x45adacac crypto_shash_finup -EXPORT_SYMBOL_GPL vmlinux 0x45c91004 snd_soc_component_read_field -EXPORT_SYMBOL_GPL vmlinux 0x45ccbbf7 snd_soc_dai_compr_ack -EXPORT_SYMBOL_GPL vmlinux 0x45de380f dev_attr_unload_heads -EXPORT_SYMBOL_GPL vmlinux 0x45e85410 open_related_ns -EXPORT_SYMBOL_GPL vmlinux 0x45ee95fc handle_level_irq +EXPORT_SYMBOL_GPL vmlinux 0x458345ba usb_unlocked_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x45860b70 crypto_alloc_aead +EXPORT_SYMBOL_GPL vmlinux 0x45860e7f nf_queue +EXPORT_SYMBOL_GPL vmlinux 0x4596d89b sm501_find_clock +EXPORT_SYMBOL_GPL vmlinux 0x45a6824c mbox_chan_txdone +EXPORT_SYMBOL_GPL vmlinux 0x45b7798a tpm_chip_stop +EXPORT_SYMBOL_GPL vmlinux 0x45bbf3bc ata_sas_slave_configure +EXPORT_SYMBOL_GPL vmlinux 0x45bfd8d2 devm_regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0x45cbc4ac blk_req_needs_zone_write_lock +EXPORT_SYMBOL_GPL vmlinux 0x45d58f0d get_mtd_device_nm EXPORT_SYMBOL_GPL vmlinux 0x45ff8535 trace_seq_putc EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue -EXPORT_SYMBOL_GPL vmlinux 0x4602b60f fib_rules_register -EXPORT_SYMBOL_GPL vmlinux 0x460bc818 generic_fh_to_parent -EXPORT_SYMBOL_GPL vmlinux 0x4613a107 gpiochip_generic_config -EXPORT_SYMBOL_GPL vmlinux 0x462cd00a tty_buffer_request_room -EXPORT_SYMBOL_GPL vmlinux 0x4643bf73 crypto_ahash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x46172207 class_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x46293b9c dev_pm_domain_attach +EXPORT_SYMBOL_GPL vmlinux 0x462bacc2 usb_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x464369df phy_pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0x464dd58c ahci_save_initial_config +EXPORT_SYMBOL_GPL vmlinux 0x466a2f8a gpiod_direction_output EXPORT_SYMBOL_GPL vmlinux 0x466e5342 net_prio_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x467ed1ed blk_mq_unquiesce_queue -EXPORT_SYMBOL_GPL vmlinux 0x46832cbd dpm_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x46835829 devm_gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0x4674c056 phy_create +EXPORT_SYMBOL_GPL vmlinux 0x467fe779 tps65217_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x46857081 tty_ldisc_ref_wait EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4690e36a ata_qc_complete_multiple -EXPORT_SYMBOL_GPL vmlinux 0x469c5272 mtk_is_virt_gpio -EXPORT_SYMBOL_GPL vmlinux 0x46ae8a7b lwtunnel_build_state +EXPORT_SYMBOL_GPL vmlinux 0x46a2529a sysfs_rename_link_ns +EXPORT_SYMBOL_GPL vmlinux 0x46bd3a5b spi_mem_driver_unregister EXPORT_SYMBOL_GPL vmlinux 0x46c06c19 klist_add_head +EXPORT_SYMBOL_GPL vmlinux 0x46c597c2 __sock_recv_wifi_status EXPORT_SYMBOL_GPL vmlinux 0x46c5be22 clk_multiplier_ops +EXPORT_SYMBOL_GPL vmlinux 0x46c647aa fat_detach +EXPORT_SYMBOL_GPL vmlinux 0x46c9b6cb irq_get_domain_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x46d178cc devm_of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0x46ded9a8 devfreq_event_get_edev_count +EXPORT_SYMBOL_GPL vmlinux 0x46ee89f3 pin_user_pages_fast_only +EXPORT_SYMBOL_GPL vmlinux 0x46f0af16 mmc_cmdq_disable +EXPORT_SYMBOL_GPL vmlinux 0x46f1783b ata_sff_softreset EXPORT_SYMBOL_GPL vmlinux 0x46f42be0 devlink_fmsg_u8_put -EXPORT_SYMBOL_GPL vmlinux 0x4715a63e of_get_named_gpio_flags -EXPORT_SYMBOL_GPL vmlinux 0x4715ce9c subsys_dev_iter_init -EXPORT_SYMBOL_GPL vmlinux 0x471f4ed2 balloon_page_dequeue +EXPORT_SYMBOL_GPL vmlinux 0x46fb5106 spi_res_add +EXPORT_SYMBOL_GPL vmlinux 0x46ff80ce devm_regmap_field_bulk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x47063923 __vfs_setxattr_locked +EXPORT_SYMBOL_GPL vmlinux 0x470bd06b gpiod_set_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x4717d6f6 dev_attr_ncq_prio_enable +EXPORT_SYMBOL_GPL vmlinux 0x4721850b aead_geniv_alloc EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request -EXPORT_SYMBOL_GPL vmlinux 0x472a9a90 tps6586x_read -EXPORT_SYMBOL_GPL vmlinux 0x472dc393 crypto_register_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x4726ce38 virtqueue_notify EXPORT_SYMBOL_GPL vmlinux 0x47317949 crypto_alg_sem -EXPORT_SYMBOL_GPL vmlinux 0x4734566c rtc_read_alarm -EXPORT_SYMBOL_GPL vmlinux 0x473ff269 exportfs_encode_inode_fh -EXPORT_SYMBOL_GPL vmlinux 0x47486ff1 regulator_bulk_disable -EXPORT_SYMBOL_GPL vmlinux 0x4761e223 snd_ctl_sync_vmaster +EXPORT_SYMBOL_GPL vmlinux 0x4744475a transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x474f87ac percpu_down_write EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier -EXPORT_SYMBOL_GPL vmlinux 0x477ec4f5 crypto_hash_walk_first -EXPORT_SYMBOL_GPL vmlinux 0x47803810 snd_ctl_apply_vmaster_followers +EXPORT_SYMBOL_GPL vmlinux 0x476214c5 nfs_ssc_unregister +EXPORT_SYMBOL_GPL vmlinux 0x47863aa4 usb_gadget_map_request EXPORT_SYMBOL_GPL vmlinux 0x47884890 system_power_efficient_wq -EXPORT_SYMBOL_GPL vmlinux 0x478bd561 devlink_resources_unregister EXPORT_SYMBOL_GPL vmlinux 0x478debf5 phy_10gbit_fec_features EXPORT_SYMBOL_GPL vmlinux 0x478e81f8 tcp_orphan_count EXPORT_SYMBOL_GPL vmlinux 0x47925794 idr_find EXPORT_SYMBOL_GPL vmlinux 0x479f7d4b clk_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0x47a6b435 fwnode_property_read_u64_array EXPORT_SYMBOL_GPL vmlinux 0x47aad3b9 have_governor_per_policy -EXPORT_SYMBOL_GPL vmlinux 0x47c708f2 tps80031_ext_power_req_config -EXPORT_SYMBOL_GPL vmlinux 0x47cdc0ff tty_set_termios -EXPORT_SYMBOL_GPL vmlinux 0x47cfccc6 clk_register -EXPORT_SYMBOL_GPL vmlinux 0x47d21cf2 virtqueue_get_used_addr -EXPORT_SYMBOL_GPL vmlinux 0x47d5d963 check_move_unevictable_pages -EXPORT_SYMBOL_GPL vmlinux 0x47d6d8a1 bpf_trace_run1 +EXPORT_SYMBOL_GPL vmlinux 0x47ac4d6b of_dma_router_register +EXPORT_SYMBOL_GPL vmlinux 0x47ad4a46 dma_wait_for_async_tx +EXPORT_SYMBOL_GPL vmlinux 0x47c5c6a3 scsi_ioctl_block_when_processing_errors +EXPORT_SYMBOL_GPL vmlinux 0x47d6573f crypto_alloc_base +EXPORT_SYMBOL_GPL vmlinux 0x47d74283 snd_soc_bytes_get EXPORT_SYMBOL_GPL vmlinux 0x47de0dc7 clk_unregister_mux -EXPORT_SYMBOL_GPL vmlinux 0x47f6acbd ata_do_dev_read_id +EXPORT_SYMBOL_GPL vmlinux 0x47efc935 crypto_comp_compress EXPORT_SYMBOL_GPL vmlinux 0x48020c1c irq_get_percpu_devid_partition EXPORT_SYMBOL_GPL vmlinux 0x480305ca kmsg_dump_rewind -EXPORT_SYMBOL_GPL vmlinux 0x480d9ebd platform_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x481105c4 class_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0x480a1499 snd_soc_component_compr_ack +EXPORT_SYMBOL_GPL vmlinux 0x480ce242 xdp_return_frame_bulk +EXPORT_SYMBOL_GPL vmlinux 0x480dddaf devlink_param_register +EXPORT_SYMBOL_GPL vmlinux 0x4818f639 ip6_datagram_recv_ctl +EXPORT_SYMBOL_GPL vmlinux 0x481dd6f0 sock_diag_unregister EXPORT_SYMBOL_GPL vmlinux 0x481f9b7d mpi_mulm -EXPORT_SYMBOL_GPL vmlinux 0x4843a883 shash_free_singlespawn_instance +EXPORT_SYMBOL_GPL vmlinux 0x4826a6d8 snd_soc_info_volsw +EXPORT_SYMBOL_GPL vmlinux 0x482d7da2 serial8250_do_get_mctrl +EXPORT_SYMBOL_GPL vmlinux 0x483100b4 ip6_dst_lookup_tunnel +EXPORT_SYMBOL_GPL vmlinux 0x483c3357 bio_associate_blkg +EXPORT_SYMBOL_GPL vmlinux 0x48461cfd __hwspin_lock_timeout +EXPORT_SYMBOL_GPL vmlinux 0x4846f499 dma_buf_put EXPORT_SYMBOL_GPL vmlinux 0x484779ef __i2c_board_lock -EXPORT_SYMBOL_GPL vmlinux 0x484e0d72 dev_pm_opp_set_regulators -EXPORT_SYMBOL_GPL vmlinux 0x485d819f crypto_register_aead -EXPORT_SYMBOL_GPL vmlinux 0x48750a16 msg_zerocopy_put_abort -EXPORT_SYMBOL_GPL vmlinux 0x48790c24 usb_phy_set_charger_state +EXPORT_SYMBOL_GPL vmlinux 0x48684a3c spi_replace_transfers +EXPORT_SYMBOL_GPL vmlinux 0x487b569b power_supply_external_power_changed EXPORT_SYMBOL_GPL vmlinux 0x487c0f32 pkcs7_verify -EXPORT_SYMBOL_GPL vmlinux 0x488c59a2 skb_cow_data -EXPORT_SYMBOL_GPL vmlinux 0x48a27707 xdp_return_frame_bulk +EXPORT_SYMBOL_GPL vmlinux 0x489afbfa reset_controller_register EXPORT_SYMBOL_GPL vmlinux 0x48a3d20b mctrl_gpio_get -EXPORT_SYMBOL_GPL vmlinux 0x48a4983f bd_unlink_disk_holder EXPORT_SYMBOL_GPL vmlinux 0x48ac05d6 __tracepoint_pelt_irq_tp -EXPORT_SYMBOL_GPL vmlinux 0x48acf2d1 __regmap_init_mmio_clk -EXPORT_SYMBOL_GPL vmlinux 0x48ae69aa usb_reset_endpoint -EXPORT_SYMBOL_GPL vmlinux 0x48ba6f9b tcp_get_info -EXPORT_SYMBOL_GPL vmlinux 0x48c28d4f tps6586x_writes +EXPORT_SYMBOL_GPL vmlinux 0x48b42c7c gpiochip_irq_domain_activate +EXPORT_SYMBOL_GPL vmlinux 0x48bcafcf regmap_field_update_bits_base EXPORT_SYMBOL_GPL vmlinux 0x48c32847 __SCK__tp_func_sched_util_est_se_tp -EXPORT_SYMBOL_GPL vmlinux 0x48c329b8 i2c_client_type -EXPORT_SYMBOL_GPL vmlinux 0x48c34a6d pm_genpd_opp_to_performance_state +EXPORT_SYMBOL_GPL vmlinux 0x48d3abfa fib_nexthop_info +EXPORT_SYMBOL_GPL vmlinux 0x48d9c129 spi_mem_adjust_op_size +EXPORT_SYMBOL_GPL vmlinux 0x48de6b97 fwnode_create_software_node EXPORT_SYMBOL_GPL vmlinux 0x48e7ab6a rhashtable_destroy -EXPORT_SYMBOL_GPL vmlinux 0x49211d72 pci_epc_multi_mem_init +EXPORT_SYMBOL_GPL vmlinux 0x48ef1906 wm8350_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0x49058e9a icc_std_aggregate +EXPORT_SYMBOL_GPL vmlinux 0x49064ed5 pci_disable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x492229b0 fib_nh_common_init +EXPORT_SYMBOL_GPL vmlinux 0x49269ab5 device_init_wakeup EXPORT_SYMBOL_GPL vmlinux 0x49326ef6 irq_set_affinity_notifier EXPORT_SYMBOL_GPL vmlinux 0x4934bdd0 crypto_check_attr_type -EXPORT_SYMBOL_GPL vmlinux 0x493d6554 dev_pm_get_subsys_data -EXPORT_SYMBOL_GPL vmlinux 0x493e3167 ahci_check_ready -EXPORT_SYMBOL_GPL vmlinux 0x49403859 kthread_func -EXPORT_SYMBOL_GPL vmlinux 0x494a0585 pci_epf_remove_vepf -EXPORT_SYMBOL_GPL vmlinux 0x494b55c3 devres_add -EXPORT_SYMBOL_GPL vmlinux 0x495110f1 fib6_check_nexthop +EXPORT_SYMBOL_GPL vmlinux 0x493cee71 edac_pci_handle_npe +EXPORT_SYMBOL_GPL vmlinux 0x4943cd75 snd_soc_component_compr_pointer +EXPORT_SYMBOL_GPL vmlinux 0x494eedca fib_rules_register EXPORT_SYMBOL_GPL vmlinux 0x49608959 migrate_disable -EXPORT_SYMBOL_GPL vmlinux 0x496a6593 vchan_init -EXPORT_SYMBOL_GPL vmlinux 0x496b538f pci_disable_rom -EXPORT_SYMBOL_GPL vmlinux 0x497095d5 tegra_bpmp_transfer_atomic -EXPORT_SYMBOL_GPL vmlinux 0x4973ec8d i2c_of_match_device +EXPORT_SYMBOL_GPL vmlinux 0x496d6906 devm_led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x497c7902 snd_soc_runtime_set_dai_fmt EXPORT_SYMBOL_GPL vmlinux 0x49830f0e __tracepoint_neigh_update -EXPORT_SYMBOL_GPL vmlinux 0x498db2d8 percpu_up_write +EXPORT_SYMBOL_GPL vmlinux 0x49833fda dax_copy_to_iter +EXPORT_SYMBOL_GPL vmlinux 0x4986320f sysfs_groups_change_owner EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue -EXPORT_SYMBOL_GPL vmlinux 0x49972f99 inet_csk_reqsk_queue_hash_add -EXPORT_SYMBOL_GPL vmlinux 0x499e6600 iommu_uapi_sva_bind_gpasid -EXPORT_SYMBOL_GPL vmlinux 0x49a16887 edac_device_del_device -EXPORT_SYMBOL_GPL vmlinux 0x49a3f0ff ata_eh_analyze_ncq_error -EXPORT_SYMBOL_GPL vmlinux 0x49a3f1f3 class_dev_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0x49ad1226 ahci_save_initial_config -EXPORT_SYMBOL_GPL vmlinux 0x49b3abed snd_pcm_stream_unlock_irqrestore -EXPORT_SYMBOL_GPL vmlinux 0x49bd0ce3 mtk_pinconf_bias_disable_set_rev1 -EXPORT_SYMBOL_GPL vmlinux 0x49c6dbab kgdb_unregister_io_module +EXPORT_SYMBOL_GPL vmlinux 0x49947863 proc_get_parent_data +EXPORT_SYMBOL_GPL vmlinux 0x49954afa tcp_enter_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0x49bc38f0 musb_root_disconnect EXPORT_SYMBOL_GPL vmlinux 0x49cd25ed alloc_workqueue -EXPORT_SYMBOL_GPL vmlinux 0x49d44c37 sdio_writeb -EXPORT_SYMBOL_GPL vmlinux 0x49d6394c pci_stop_and_remove_bus_device_locked +EXPORT_SYMBOL_GPL vmlinux 0x49d29162 devm_gpio_request_one EXPORT_SYMBOL_GPL vmlinux 0x49d96707 freq_qos_remove_request -EXPORT_SYMBOL_GPL vmlinux 0x49e8785a cpuidle_unregister EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0x4a0103f1 pskb_put -EXPORT_SYMBOL_GPL vmlinux 0x4a01ab22 ping_rcv -EXPORT_SYMBOL_GPL vmlinux 0x4a024bbd ping_queue_rcv_skb -EXPORT_SYMBOL_GPL vmlinux 0x4a0b17d9 public_key_subtype +EXPORT_SYMBOL_GPL vmlinux 0x49f1fcd9 __traceiter_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0x49f33f6f devm_snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL vmlinux 0x4a061445 snd_soc_dapm_init +EXPORT_SYMBOL_GPL vmlinux 0x4a091049 attribute_container_unregister EXPORT_SYMBOL_GPL vmlinux 0x4a17ed66 sysrq_mask -EXPORT_SYMBOL_GPL vmlinux 0x4a186d43 snd_soc_put_strobe -EXPORT_SYMBOL_GPL vmlinux 0x4a25d1e3 device_for_each_child -EXPORT_SYMBOL_GPL vmlinux 0x4a370c76 sdio_writeb_readb -EXPORT_SYMBOL_GPL vmlinux 0x4a3ed837 regulator_get_voltage_sel_pickable_regmap -EXPORT_SYMBOL_GPL vmlinux 0x4a618fec platform_device_del -EXPORT_SYMBOL_GPL vmlinux 0x4a68b84a sk_msg_return_zero -EXPORT_SYMBOL_GPL vmlinux 0x4a77d036 devm_power_supply_register -EXPORT_SYMBOL_GPL vmlinux 0x4a8147ce tcp_slow_start -EXPORT_SYMBOL_GPL vmlinux 0x4ac11749 pinctrl_generic_get_group_count -EXPORT_SYMBOL_GPL vmlinux 0x4ae4a394 snd_soc_jack_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4aebdd88 iomap_dio_rw -EXPORT_SYMBOL_GPL vmlinux 0x4aefb695 get_cpu_device -EXPORT_SYMBOL_GPL vmlinux 0x4b07fc52 devm_hwmon_device_register_with_groups -EXPORT_SYMBOL_GPL vmlinux 0x4b08dce1 phy_optional_get -EXPORT_SYMBOL_GPL vmlinux 0x4b178325 __traceiter_block_bio_complete -EXPORT_SYMBOL_GPL vmlinux 0x4b4b9396 vfs_listxattr -EXPORT_SYMBOL_GPL vmlinux 0x4b4ff6f9 mtk_eint_set_debounce +EXPORT_SYMBOL_GPL vmlinux 0x4a20aea4 put_pid +EXPORT_SYMBOL_GPL vmlinux 0x4a2600a9 usb_get_hcd +EXPORT_SYMBOL_GPL vmlinux 0x4a277c98 pci_ioremap_bar +EXPORT_SYMBOL_GPL vmlinux 0x4a358ed4 devfreq_cooling_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4a4f968b crypto_comp_decompress +EXPORT_SYMBOL_GPL vmlinux 0x4a56b873 dev_pm_set_dedicated_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x4a5d9bdd of_platform_device_destroy +EXPORT_SYMBOL_GPL vmlinux 0x4a6eb894 mddev_resume +EXPORT_SYMBOL_GPL vmlinux 0x4a830e72 devm_device_add_group +EXPORT_SYMBOL_GPL vmlinux 0x4a88bb62 irq_domain_create_simple +EXPORT_SYMBOL_GPL vmlinux 0x4a8ced3b transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4a99a194 icc_set_bw +EXPORT_SYMBOL_GPL vmlinux 0x4aa345cb badblocks_check +EXPORT_SYMBOL_GPL vmlinux 0x4ab6d30e tegra_mc_write_emem_configuration +EXPORT_SYMBOL_GPL vmlinux 0x4ad59169 evict_inodes +EXPORT_SYMBOL_GPL vmlinux 0x4ae899b7 ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0x4b010da3 gpiochip_relres_irq +EXPORT_SYMBOL_GPL vmlinux 0x4b175dcf page_cache_ra_unbounded +EXPORT_SYMBOL_GPL vmlinux 0x4b17735f extcon_register_notifier_all +EXPORT_SYMBOL_GPL vmlinux 0x4b1cb4d4 mpc8xxx_spi_tx_buf_u8 +EXPORT_SYMBOL_GPL vmlinux 0x4b2b5693 snd_soc_get_xr_sx +EXPORT_SYMBOL_GPL vmlinux 0x4b37f852 phy_power_on +EXPORT_SYMBOL_GPL vmlinux 0x4b392c2a gpiochip_line_is_irq +EXPORT_SYMBOL_GPL vmlinux 0x4b3f9bfb devm_gpio_free +EXPORT_SYMBOL_GPL vmlinux 0x4b4d2403 relay_reset EXPORT_SYMBOL_GPL vmlinux 0x4b51f74c ata_xfer_mode2mask -EXPORT_SYMBOL_GPL vmlinux 0x4b6eb218 snd_soc_dai_set_tristate +EXPORT_SYMBOL_GPL vmlinux 0x4b5661f1 rockchip_pcie_cfg_configuration_accesses +EXPORT_SYMBOL_GPL vmlinux 0x4b57d43a ata_sff_exec_command +EXPORT_SYMBOL_GPL vmlinux 0x4b614e2c add_page_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x4b623ebf devm_snd_soc_register_card EXPORT_SYMBOL_GPL vmlinux 0x4b72009e dynamic_debug_exec_queries -EXPORT_SYMBOL_GPL vmlinux 0x4b796def blkg_prfill_rwstat -EXPORT_SYMBOL_GPL vmlinux 0x4b99f286 ata_port_wait_eh -EXPORT_SYMBOL_GPL vmlinux 0x4b9efc7f pwm_request -EXPORT_SYMBOL_GPL vmlinux 0x4ba1eed5 platform_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4ba4ea20 snd_soc_dapm_get_pin_switch +EXPORT_SYMBOL_GPL vmlinux 0x4b9620da vfs_getxattr_alloc +EXPORT_SYMBOL_GPL vmlinux 0x4b9ac4ae simple_attr_release +EXPORT_SYMBOL_GPL vmlinux 0x4baf98d3 switchdev_handle_port_attr_set +EXPORT_SYMBOL_GPL vmlinux 0x4bb51f69 usb_deregister_device_driver +EXPORT_SYMBOL_GPL vmlinux 0x4bb64f31 pci_probe_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0x4bba98e8 ipv4_sk_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0x4bbe2cd1 cpuidle_register_device -EXPORT_SYMBOL_GPL vmlinux 0x4bcb5a06 xhci_suspend -EXPORT_SYMBOL_GPL vmlinux 0x4bef10f8 inet_send_prepare -EXPORT_SYMBOL_GPL vmlinux 0x4c07077b ping_seq_stop -EXPORT_SYMBOL_GPL vmlinux 0x4c30adb5 pinctrl_get -EXPORT_SYMBOL_GPL vmlinux 0x4c3c6012 snd_soc_dai_compr_pointer -EXPORT_SYMBOL_GPL vmlinux 0x4c3f93d7 __irq_domain_alloc_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x4c42bc9e spi_controller_dma_map_mem_op_data -EXPORT_SYMBOL_GPL vmlinux 0x4c4cc1a3 ata_sff_wait_ready +EXPORT_SYMBOL_GPL vmlinux 0x4bc33a0c usb_queue_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x4be3164e serial8250_clear_and_reinit_fifos +EXPORT_SYMBOL_GPL vmlinux 0x4bec6a1d regulator_get_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0x4c066729 da9052_request_irq +EXPORT_SYMBOL_GPL vmlinux 0x4c491f07 of_map_id EXPORT_SYMBOL_GPL vmlinux 0x4c549b36 __traceiter_xhci_dbg_quirks -EXPORT_SYMBOL_GPL vmlinux 0x4c615fca clockevent_delta2ns -EXPORT_SYMBOL_GPL vmlinux 0x4c75a463 fscrypt_ioctl_remove_key_all_users -EXPORT_SYMBOL_GPL vmlinux 0x4c84d7b4 pwmchip_remove -EXPORT_SYMBOL_GPL vmlinux 0x4c8ccd4a balloon_page_list_enqueue -EXPORT_SYMBOL_GPL vmlinux 0x4c90c762 crypto_unregister_instance -EXPORT_SYMBOL_GPL vmlinux 0x4c96e421 snd_soc_get_strobe -EXPORT_SYMBOL_GPL vmlinux 0x4c9d3fd6 mbox_chan_txdone -EXPORT_SYMBOL_GPL vmlinux 0x4c9e15d5 pci_slots_kset -EXPORT_SYMBOL_GPL vmlinux 0x4c9fc4bc power_supply_get_battery_info +EXPORT_SYMBOL_GPL vmlinux 0x4c681f16 sdio_signal_irq +EXPORT_SYMBOL_GPL vmlinux 0x4c765c35 device_get_named_child_node +EXPORT_SYMBOL_GPL vmlinux 0x4c7b7731 tps6586x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x4c8de368 tps6586x_write +EXPORT_SYMBOL_GPL vmlinux 0x4c97b929 gpiochip_free_own_desc +EXPORT_SYMBOL_GPL vmlinux 0x4caa4c97 __put_net +EXPORT_SYMBOL_GPL vmlinux 0x4cac3746 tegra_xusb_padctl_legacy_remove +EXPORT_SYMBOL_GPL vmlinux 0x4cada2e8 dma_buf_vmap EXPORT_SYMBOL_GPL vmlinux 0x4cb27100 ktime_get_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x4cb7de88 fat_dir_empty EXPORT_SYMBOL_GPL vmlinux 0x4cb81fda __SCK__tp_func_wbc_writepage -EXPORT_SYMBOL_GPL vmlinux 0x4cc50ea1 regcache_drop_region -EXPORT_SYMBOL_GPL vmlinux 0x4cca83cd irq_create_of_mapping -EXPORT_SYMBOL_GPL vmlinux 0x4cdf044b usb_alloc_urb -EXPORT_SYMBOL_GPL vmlinux 0x4ce27997 hisi_clk_register_phase -EXPORT_SYMBOL_GPL vmlinux 0x4ce43e9b ahci_platform_enable_phys +EXPORT_SYMBOL_GPL vmlinux 0x4cc31625 dev_pm_opp_get_max_transition_latency +EXPORT_SYMBOL_GPL vmlinux 0x4cc9b11b usb_put_hcd +EXPORT_SYMBOL_GPL vmlinux 0x4ccb19da udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x4cd65b25 regulator_set_ramp_delay_regmap +EXPORT_SYMBOL_GPL vmlinux 0x4cd998df wm831x_device_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x4cdc9fab nfs_ssc_register +EXPORT_SYMBOL_GPL vmlinux 0x4ce37ad0 ahci_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x4ced4115 cpuidle_unregister_driver EXPORT_SYMBOL_GPL vmlinux 0x4cf24332 __usb_get_extra_descriptor +EXPORT_SYMBOL_GPL vmlinux 0x4cf3e001 regulator_get_hardware_vsel_register +EXPORT_SYMBOL_GPL vmlinux 0x4cfa7f60 rtnl_register_module EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable -EXPORT_SYMBOL_GPL vmlinux 0x4d004544 dev_pm_opp_is_turbo -EXPORT_SYMBOL_GPL vmlinux 0x4d1770dc snd_soc_info_volsw_sx -EXPORT_SYMBOL_GPL vmlinux 0x4d2babee devlink_is_reload_failed -EXPORT_SYMBOL_GPL vmlinux 0x4d37ba2b find_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0x4d10f1e9 pm_schedule_suspend +EXPORT_SYMBOL_GPL vmlinux 0x4d19c152 replace_page_cache_page EXPORT_SYMBOL_GPL vmlinux 0x4d38f1e0 bL_switcher_unregister_notifier EXPORT_SYMBOL_GPL vmlinux 0x4d3a0696 __SCK__tp_func_rpm_idle -EXPORT_SYMBOL_GPL vmlinux 0x4d3e5959 devm_regulator_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4d40c88e __spi_alloc_controller -EXPORT_SYMBOL_GPL vmlinux 0x4d463b4d __traceiter_neigh_event_send_done -EXPORT_SYMBOL_GPL vmlinux 0x4d4c5d47 lwtunnel_encap_add_ops EXPORT_SYMBOL_GPL vmlinux 0x4d4d7b79 blk_mq_map_queues -EXPORT_SYMBOL_GPL vmlinux 0x4d5a56a5 devlink_dpipe_entry_ctx_append +EXPORT_SYMBOL_GPL vmlinux 0x4d5101ea pm_runtime_no_callbacks +EXPORT_SYMBOL_GPL vmlinux 0x4d638096 fork_usermode_driver +EXPORT_SYMBOL_GPL vmlinux 0x4d6654c7 tcp_get_info +EXPORT_SYMBOL_GPL vmlinux 0x4d696a0a cgroup_get_from_id EXPORT_SYMBOL_GPL vmlinux 0x4d6d0bbc iommu_group_ref_get +EXPORT_SYMBOL_GPL vmlinux 0x4d720384 clk_hw_get_name EXPORT_SYMBOL_GPL vmlinux 0x4d7272e4 migrate_enable -EXPORT_SYMBOL_GPL vmlinux 0x4d742bc8 gen10g_config_aneg -EXPORT_SYMBOL_GPL vmlinux 0x4d760244 debugfs_real_fops -EXPORT_SYMBOL_GPL vmlinux 0x4d773eab pci_ignore_hotplug -EXPORT_SYMBOL_GPL vmlinux 0x4d7e6deb usb_gadget_frame_number -EXPORT_SYMBOL_GPL vmlinux 0x4d80103c dev_pm_opp_set_prop_name -EXPORT_SYMBOL_GPL vmlinux 0x4d9adb0d iommu_fwspec_init +EXPORT_SYMBOL_GPL vmlinux 0x4d7f58ed devm_device_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0x4d925e06 usb_role_switch_register +EXPORT_SYMBOL_GPL vmlinux 0x4d93b7ac spi_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0x4d9d1abd pinctrl_add_gpio_ranges EXPORT_SYMBOL_GPL vmlinux 0x4da50ab8 sbitmap_get +EXPORT_SYMBOL_GPL vmlinux 0x4dabcc7d debugfs_read_file_bool +EXPORT_SYMBOL_GPL vmlinux 0x4dacd2b9 tty_find_polling_driver EXPORT_SYMBOL_GPL vmlinux 0x4dae16e4 i2c_put_dma_safe_msg_buf -EXPORT_SYMBOL_GPL vmlinux 0x4dba7ed4 kthread_cancel_delayed_work_sync -EXPORT_SYMBOL_GPL vmlinux 0x4dc308b1 sdhci_pltfm_init -EXPORT_SYMBOL_GPL vmlinux 0x4dc662ad ata_sas_port_stop -EXPORT_SYMBOL_GPL vmlinux 0x4dc6980a cpufreq_dbs_governor_init -EXPORT_SYMBOL_GPL vmlinux 0x4dcb74a6 fat_attach -EXPORT_SYMBOL_GPL vmlinux 0x4dd2991a dw_pcie_read_dbi -EXPORT_SYMBOL_GPL vmlinux 0x4dd622c2 ata_pci_device_resume +EXPORT_SYMBOL_GPL vmlinux 0x4db53257 device_add_groups +EXPORT_SYMBOL_GPL vmlinux 0x4dca8d77 dev_pm_disable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x4dd313a7 devres_remove EXPORT_SYMBOL_GPL vmlinux 0x4dd9d14d cn_netlink_send_mult -EXPORT_SYMBOL_GPL vmlinux 0x4ddcab25 devm_led_classdev_register_ext +EXPORT_SYMBOL_GPL vmlinux 0x4ddabdf8 mtd_get_fact_prot_info +EXPORT_SYMBOL_GPL vmlinux 0x4dde90f9 xdp_rxq_info_reg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0x4ddeceac devlink_region_snapshot_id_put +EXPORT_SYMBOL_GPL vmlinux 0x4ddf9d7a spi_take_timestamp_pre +EXPORT_SYMBOL_GPL vmlinux 0x4de0c3d7 serdev_device_write_room EXPORT_SYMBOL_GPL vmlinux 0x4de17ab3 usb_state_string EXPORT_SYMBOL_GPL vmlinux 0x4de2381e register_kretprobe -EXPORT_SYMBOL_GPL vmlinux 0x4df4ad49 bdi_dev_name -EXPORT_SYMBOL_GPL vmlinux 0x4df4e23a fsnotify_put_mark -EXPORT_SYMBOL_GPL vmlinux 0x4dfdc317 pinctrl_register EXPORT_SYMBOL_GPL vmlinux 0x4dff61e5 wwan_port_txoff -EXPORT_SYMBOL_GPL vmlinux 0x4e05cc42 regulator_get_bypass_regmap -EXPORT_SYMBOL_GPL vmlinux 0x4e073350 wbc_attach_and_unlock_inode -EXPORT_SYMBOL_GPL vmlinux 0x4e128706 sk_set_memalloc -EXPORT_SYMBOL_GPL vmlinux 0x4e220488 iptunnel_metadata_reply -EXPORT_SYMBOL_GPL vmlinux 0x4e30f4ed dequeue_signal -EXPORT_SYMBOL_GPL vmlinux 0x4e3d1fb9 wwan_unregister_ops +EXPORT_SYMBOL_GPL vmlinux 0x4e042b9d ata_port_abort +EXPORT_SYMBOL_GPL vmlinux 0x4e14dffd pci_ats_supported +EXPORT_SYMBOL_GPL vmlinux 0x4e238d56 usb_del_gadget_udc +EXPORT_SYMBOL_GPL vmlinux 0x4e2cd9d6 blk_update_request +EXPORT_SYMBOL_GPL vmlinux 0x4e357760 pci_epc_get_features +EXPORT_SYMBOL_GPL vmlinux 0x4e3cb8f8 regulator_bulk_register_supply_alias EXPORT_SYMBOL_GPL vmlinux 0x4e422600 start_poll_synchronize_srcu -EXPORT_SYMBOL_GPL vmlinux 0x4e5069d5 watchdog_set_restart_priority -EXPORT_SYMBOL_GPL vmlinux 0x4e618e30 inet6_lookup_listener -EXPORT_SYMBOL_GPL vmlinux 0x4e8538bf subsys_dev_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0x4e86543e usb_hcd_end_port_resume -EXPORT_SYMBOL_GPL vmlinux 0x4e92934e nand_reset +EXPORT_SYMBOL_GPL vmlinux 0x4e4e59a8 ima_file_check +EXPORT_SYMBOL_GPL vmlinux 0x4e5cd1ad phy_power_off +EXPORT_SYMBOL_GPL vmlinux 0x4e6be2a9 regulator_sync_voltage EXPORT_SYMBOL_GPL vmlinux 0x4eac5fc1 cpu_mitigations_auto_nosmt -EXPORT_SYMBOL_GPL vmlinux 0x4ee0580f relay_switch_subbuf -EXPORT_SYMBOL_GPL vmlinux 0x4ee2ceb7 rtnl_af_register -EXPORT_SYMBOL_GPL vmlinux 0x4eedeb1d irq_chip_request_resources_parent -EXPORT_SYMBOL_GPL vmlinux 0x4ef29cdb i2c_dw_configure_master +EXPORT_SYMBOL_GPL vmlinux 0x4ec3961e devlink_params_register +EXPORT_SYMBOL_GPL vmlinux 0x4ec6acfb pci_disable_pasid +EXPORT_SYMBOL_GPL vmlinux 0x4ed38653 lwtunnel_get_encap_size +EXPORT_SYMBOL_GPL vmlinux 0x4ee62445 rio_request_outb_dbell EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context EXPORT_SYMBOL_GPL vmlinux 0x4efcf021 mpi_normalize -EXPORT_SYMBOL_GPL vmlinux 0x4f003c03 tps65217_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x4f058706 gpiochip_irq_map -EXPORT_SYMBOL_GPL vmlinux 0x4f05b27c dw_pcie_host_deinit -EXPORT_SYMBOL_GPL vmlinux 0x4f069ae3 rio_mport_send_doorbell -EXPORT_SYMBOL_GPL vmlinux 0x4f0a8942 pm_clk_remove_clk -EXPORT_SYMBOL_GPL vmlinux 0x4f13554c ata_pci_bmdma_init_one -EXPORT_SYMBOL_GPL vmlinux 0x4f14c1b1 clk_hw_register_composite -EXPORT_SYMBOL_GPL vmlinux 0x4f19a785 arm_iommu_release_mapping -EXPORT_SYMBOL_GPL vmlinux 0x4f19e842 sysfs_create_link -EXPORT_SYMBOL_GPL vmlinux 0x4f1bae21 serial8250_read_char -EXPORT_SYMBOL_GPL vmlinux 0x4f1c8447 synth_event_gen_cmd_array_start -EXPORT_SYMBOL_GPL vmlinux 0x4f1d4207 icc_provider_del +EXPORT_SYMBOL_GPL vmlinux 0x4f157a7a regulator_get_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0x4f18227e ahci_ops EXPORT_SYMBOL_GPL vmlinux 0x4f221155 __tracepoint_rpm_resume -EXPORT_SYMBOL_GPL vmlinux 0x4f2ae5dc dm_send_uevents +EXPORT_SYMBOL_GPL vmlinux 0x4f248162 of_prop_next_u32 +EXPORT_SYMBOL_GPL vmlinux 0x4f276f66 usb_gadget_clear_selfpowered +EXPORT_SYMBOL_GPL vmlinux 0x4f39bc56 crypto_stats_skcipher_decrypt EXPORT_SYMBOL_GPL vmlinux 0x4f3ba219 blkg_rwstat_init -EXPORT_SYMBOL_GPL vmlinux 0x4f3c6472 devm_free_pages -EXPORT_SYMBOL_GPL vmlinux 0x4f44fed4 of_led_get -EXPORT_SYMBOL_GPL vmlinux 0x4f4801df bgpio_init -EXPORT_SYMBOL_GPL vmlinux 0x4f4d1949 rio_add_device +EXPORT_SYMBOL_GPL vmlinux 0x4f3d82e7 i2c_detect_slave_mode +EXPORT_SYMBOL_GPL vmlinux 0x4f4866c2 efivars_register +EXPORT_SYMBOL_GPL vmlinux 0x4f501020 hvc_remove EXPORT_SYMBOL_GPL vmlinux 0x4f6a07fe show_rcu_gp_kthreads -EXPORT_SYMBOL_GPL vmlinux 0x4f6e18b1 snd_soc_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0x4f6cf1ee auxiliary_find_device +EXPORT_SYMBOL_GPL vmlinux 0x4f6f8551 inet6_csk_xmit EXPORT_SYMBOL_GPL vmlinux 0x4f72a987 uart_parse_options -EXPORT_SYMBOL_GPL vmlinux 0x4f73e29a extcon_set_property -EXPORT_SYMBOL_GPL vmlinux 0x4f740bbc gpmc_omap_onenand_set_timings -EXPORT_SYMBOL_GPL vmlinux 0x4f89f750 blk_ksm_init +EXPORT_SYMBOL_GPL vmlinux 0x4f7e79a9 dev_pm_opp_of_add_table_noclk +EXPORT_SYMBOL_GPL vmlinux 0x4f86fbbf nand_status_op +EXPORT_SYMBOL_GPL vmlinux 0x4f89c3f9 __hvc_resize +EXPORT_SYMBOL_GPL vmlinux 0x4f8aef23 devm_extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0x4f8e02c8 fwnode_graph_get_remote_port EXPORT_SYMBOL_GPL vmlinux 0x4f98d766 cpu_pm_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4fc4c28a nand_status_op -EXPORT_SYMBOL_GPL vmlinux 0x4fcad5be ata_sas_port_init -EXPORT_SYMBOL_GPL vmlinux 0x4fd5382f virtqueue_get_buf_ctx -EXPORT_SYMBOL_GPL vmlinux 0x4fd70c7a devlink_dpipe_headers_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4f9acff0 do_truncate +EXPORT_SYMBOL_GPL vmlinux 0x4fb31bf9 ip6_route_output_flags +EXPORT_SYMBOL_GPL vmlinux 0x4fb93802 ata_sff_postreset +EXPORT_SYMBOL_GPL vmlinux 0x4fbe1107 spi_get_next_queued_message +EXPORT_SYMBOL_GPL vmlinux 0x4fd62587 snd_pcm_stop_xrun +EXPORT_SYMBOL_GPL vmlinux 0x4fdb26c8 dev_pm_genpd_suspend EXPORT_SYMBOL_GPL vmlinux 0x4fdc945d sata_deb_timing_normal -EXPORT_SYMBOL_GPL vmlinux 0x4fdcdd16 nf_queue EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4fe4d0f0 crypto_unregister_acomps -EXPORT_SYMBOL_GPL vmlinux 0x4fed13ef ata_qc_complete -EXPORT_SYMBOL_GPL vmlinux 0x4ffdbbec call_switchdev_blocking_notifiers -EXPORT_SYMBOL_GPL vmlinux 0x50131cb0 dev_pm_domain_detach -EXPORT_SYMBOL_GPL vmlinux 0x502bdc33 sched_setattr_nocheck +EXPORT_SYMBOL_GPL vmlinux 0x4fe57a17 iomap_fiemap +EXPORT_SYMBOL_GPL vmlinux 0x500a3584 ata_pci_bmdma_init +EXPORT_SYMBOL_GPL vmlinux 0x500bd051 crypto_remove_spawns +EXPORT_SYMBOL_GPL vmlinux 0x501387c7 dm_device_name +EXPORT_SYMBOL_GPL vmlinux 0x501e47a9 of_irq_get_byname +EXPORT_SYMBOL_GPL vmlinux 0x50297292 __pm_runtime_idle +EXPORT_SYMBOL_GPL vmlinux 0x502a47d6 snd_soc_jack_add_zones +EXPORT_SYMBOL_GPL vmlinux 0x502c9a9c sysfs_update_group +EXPORT_SYMBOL_GPL vmlinux 0x502d4fde gpiod_set_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x5039e3d9 adp5520_write EXPORT_SYMBOL_GPL vmlinux 0x503eeebb synth_event_add_fields -EXPORT_SYMBOL_GPL vmlinux 0x5053ebe8 ata_cable_ignore -EXPORT_SYMBOL_GPL vmlinux 0x5056640d shash_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x506701a5 snd_dmaengine_pcm_unregister -EXPORT_SYMBOL_GPL vmlinux 0x506b47cd vp_modern_set_status -EXPORT_SYMBOL_GPL vmlinux 0x5077ed0a virtqueue_enable_cb_delayed +EXPORT_SYMBOL_GPL vmlinux 0x5053023c pci_stop_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x5073e778 ata_port_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0x507542a1 dev_pm_domain_detach EXPORT_SYMBOL_GPL vmlinux 0x5086c2d9 mvebu_mbus_get_dram_win_info EXPORT_SYMBOL_GPL vmlinux 0x508afef4 usb_anchor_suspend_wakeups -EXPORT_SYMBOL_GPL vmlinux 0x508fe15f skb_morph +EXPORT_SYMBOL_GPL vmlinux 0x5091b6e9 of_get_required_opp_performance_state EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start +EXPORT_SYMBOL_GPL vmlinux 0x50921379 zap_vma_ptes +EXPORT_SYMBOL_GPL vmlinux 0x50940ca8 crypto_register_acomp +EXPORT_SYMBOL_GPL vmlinux 0x5094af0f tps65217_reg_write EXPORT_SYMBOL_GPL vmlinux 0x509d5f55 clk_divider_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x50a0559c usb_gadget_vbus_disconnect +EXPORT_SYMBOL_GPL vmlinux 0x50ae6bdc synth_event_create EXPORT_SYMBOL_GPL vmlinux 0x50b88f41 usb_get_gadget_udc_name -EXPORT_SYMBOL_GPL vmlinux 0x50b9fff4 hvc_instantiate -EXPORT_SYMBOL_GPL vmlinux 0x50c0b58d __traceiter_pelt_dl_tp +EXPORT_SYMBOL_GPL vmlinux 0x50bfcb05 dev_pm_put_subsys_data EXPORT_SYMBOL_GPL vmlinux 0x50c89f23 __alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0x50dd711b blk_mark_disk_dead -EXPORT_SYMBOL_GPL vmlinux 0x50e0198b rio_release_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x50cd899a snd_soc_of_parse_audio_simple_widgets +EXPORT_SYMBOL_GPL vmlinux 0x50d10afa devm_fwnode_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x50e0c863 ohci_setup EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num -EXPORT_SYMBOL_GPL vmlinux 0x50f17b86 devlink_alloc_ns -EXPORT_SYMBOL_GPL vmlinux 0x50f3e62f max8997_read_reg -EXPORT_SYMBOL_GPL vmlinux 0x50fa1802 loop_backing_file +EXPORT_SYMBOL_GPL vmlinux 0x50f00f03 gpiochip_line_is_open_source +EXPORT_SYMBOL_GPL vmlinux 0x50f049a9 of_genpd_remove_last EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up -EXPORT_SYMBOL_GPL vmlinux 0x50fb426d sdhci_set_power -EXPORT_SYMBOL_GPL vmlinux 0x51063e4a devm_pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0x51092d0f inet_twsk_hashdance +EXPORT_SYMBOL_GPL vmlinux 0x510f874d powercap_register_zone EXPORT_SYMBOL_GPL vmlinux 0x51153b89 __tracepoint_cpu_frequency -EXPORT_SYMBOL_GPL vmlinux 0x51178c82 irq_gc_mask_clr_bit -EXPORT_SYMBOL_GPL vmlinux 0x5119214a elv_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5131450d fwnode_get_next_available_child_node -EXPORT_SYMBOL_GPL vmlinux 0x51376a7f __fsnotify_parent +EXPORT_SYMBOL_GPL vmlinux 0x51236b8c mtd_ooblayout_get_databytes +EXPORT_SYMBOL_GPL vmlinux 0x51285547 iptunnel_handle_offloads +EXPORT_SYMBOL_GPL vmlinux 0x512ab4d6 virtqueue_enable_cb_delayed +EXPORT_SYMBOL_GPL vmlinux 0x5135d7eb check_move_unevictable_pages EXPORT_SYMBOL_GPL vmlinux 0x51390c96 rcu_barrier_tasks_rude -EXPORT_SYMBOL_GPL vmlinux 0x513f02b9 trace_put_event_file -EXPORT_SYMBOL_GPL vmlinux 0x514ffc96 gpiochip_irq_unmap +EXPORT_SYMBOL_GPL vmlinux 0x51476b4e snd_soc_dai_compr_get_metadata +EXPORT_SYMBOL_GPL vmlinux 0x515882a5 usb_reset_device EXPORT_SYMBOL_GPL vmlinux 0x515b390f __SCK__tp_func_remove_device_from_group -EXPORT_SYMBOL_GPL vmlinux 0x515f8625 gpiochip_disable_irq -EXPORT_SYMBOL_GPL vmlinux 0x515f9149 spi_write_then_read -EXPORT_SYMBOL_GPL vmlinux 0x516120e0 power_supply_property_is_writeable -EXPORT_SYMBOL_GPL vmlinux 0x51747520 ata_msleep +EXPORT_SYMBOL_GPL vmlinux 0x515c3aaa nf_checksum_partial +EXPORT_SYMBOL_GPL vmlinux 0x516d8129 ata_sff_hsm_move EXPORT_SYMBOL_GPL vmlinux 0x51754009 inet_hashinfo2_init_mod -EXPORT_SYMBOL_GPL vmlinux 0x518292e1 ata_host_suspend -EXPORT_SYMBOL_GPL vmlinux 0x519699f1 clk_hw_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5179c526 sk_attach_filter +EXPORT_SYMBOL_GPL vmlinux 0x517f8e66 set_primary_fwnode EXPORT_SYMBOL_GPL vmlinux 0x51991b38 mtk_mutex_enable EXPORT_SYMBOL_GPL vmlinux 0x51a348cc usb_role_switch_set_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x51c65007 __reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0x51c7478d sysfs_remove_mount_point -EXPORT_SYMBOL_GPL vmlinux 0x51c770a0 irq_gc_mask_set_bit -EXPORT_SYMBOL_GPL vmlinux 0x51cbdb34 devm_gpiochip_add_data_with_key -EXPORT_SYMBOL_GPL vmlinux 0x51ce75ed clk_hw_get_parent_by_index -EXPORT_SYMBOL_GPL vmlinux 0x51f81be2 sm501_find_clock -EXPORT_SYMBOL_GPL vmlinux 0x51fdf862 l3mdev_table_lookup_register -EXPORT_SYMBOL_GPL vmlinux 0x52054a31 snd_soc_add_component_controls -EXPORT_SYMBOL_GPL vmlinux 0x521401f8 perf_event_refresh -EXPORT_SYMBOL_GPL vmlinux 0x52169263 inet_csk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x5217a7b8 gpiod_get_raw_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x5217d50a vfs_setlease +EXPORT_SYMBOL_GPL vmlinux 0x51a9a2bc sdhci_suspend_host +EXPORT_SYMBOL_GPL vmlinux 0x51e7fe7a skcipher_walk_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x51ecf3c2 regmap_register_patch +EXPORT_SYMBOL_GPL vmlinux 0x51ef53ab sata_pmp_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x520c23cc devlink_sb_register +EXPORT_SYMBOL_GPL vmlinux 0x52166d70 switchdev_bridge_port_offload +EXPORT_SYMBOL_GPL vmlinux 0x521e6a25 of_usb_update_otg_caps +EXPORT_SYMBOL_GPL vmlinux 0x52231298 efivar_entry_remove EXPORT_SYMBOL_GPL vmlinux 0x52252316 clk_unregister_fixed_rate -EXPORT_SYMBOL_GPL vmlinux 0x522a6bdd devlink_rate_nodes_destroy -EXPORT_SYMBOL_GPL vmlinux 0x523440e2 devm_gpiod_put EXPORT_SYMBOL_GPL vmlinux 0x5236497d trace_clock -EXPORT_SYMBOL_GPL vmlinux 0x524b9bc2 wbt_disable_default -EXPORT_SYMBOL_GPL vmlinux 0x5253289b pci_sriov_set_totalvfs -EXPORT_SYMBOL_GPL vmlinux 0x5262331b mtk_pinconf_adv_pull_set -EXPORT_SYMBOL_GPL vmlinux 0x5267f902 devlink_port_register +EXPORT_SYMBOL_GPL vmlinux 0x52385dc7 sdio_memcpy_toio +EXPORT_SYMBOL_GPL vmlinux 0x52471864 gpiod_get_raw_value +EXPORT_SYMBOL_GPL vmlinux 0x5247340d input_ff_flush +EXPORT_SYMBOL_GPL vmlinux 0x524752d6 snd_soc_dai_set_bclk_ratio +EXPORT_SYMBOL_GPL vmlinux 0x5249e628 ata_qc_complete_multiple EXPORT_SYMBOL_GPL vmlinux 0x526bcf2a wwan_port_get_drvdata EXPORT_SYMBOL_GPL vmlinux 0x5271dbf4 pci_ioremap_io -EXPORT_SYMBOL_GPL vmlinux 0x52736a1f get_task_mm +EXPORT_SYMBOL_GPL vmlinux 0x5272d378 ata_do_dev_read_id EXPORT_SYMBOL_GPL vmlinux 0x52770775 irq_work_sync -EXPORT_SYMBOL_GPL vmlinux 0x527dc6a5 devm_usb_put_phy -EXPORT_SYMBOL_GPL vmlinux 0x528638d3 mm_kobj -EXPORT_SYMBOL_GPL vmlinux 0x528f271b imx_pinctrl_probe -EXPORT_SYMBOL_GPL vmlinux 0x529fdf6d phy_pm_runtime_allow -EXPORT_SYMBOL_GPL vmlinux 0x52a2920c snd_soc_put_enum_double -EXPORT_SYMBOL_GPL vmlinux 0x52a5ef57 bpf_prog_destroy -EXPORT_SYMBOL_GPL vmlinux 0x52a6ccc9 devlink_port_region_create -EXPORT_SYMBOL_GPL vmlinux 0x52aa5829 sysfs_create_groups +EXPORT_SYMBOL_GPL vmlinux 0x52886b90 open_related_ns +EXPORT_SYMBOL_GPL vmlinux 0x529ad044 iommu_unmap_fast EXPORT_SYMBOL_GPL vmlinux 0x52b1e3c7 pci_flags EXPORT_SYMBOL_GPL vmlinux 0x52b3e8a1 is_hash_blacklisted -EXPORT_SYMBOL_GPL vmlinux 0x52b6685c gpiod_get_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x52b84d91 fwnode_get_phy_node +EXPORT_SYMBOL_GPL vmlinux 0x52b46fa1 perf_event_period EXPORT_SYMBOL_GPL vmlinux 0x52c35e83 call_rcu_tasks_trace -EXPORT_SYMBOL_GPL vmlinux 0x52c91b99 __devm_reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0x52d16563 synth_event_add_next_val +EXPORT_SYMBOL_GPL vmlinux 0x52c41209 phy_create_lookup EXPORT_SYMBOL_GPL vmlinux 0x52d54fce devlink_info_version_stored_put -EXPORT_SYMBOL_GPL vmlinux 0x52e302dc dev_pm_qos_hide_latency_limit -EXPORT_SYMBOL_GPL vmlinux 0x52e3aa04 snd_soc_dapm_nc_pin -EXPORT_SYMBOL_GPL vmlinux 0x52e49592 ipv6_recv_error -EXPORT_SYMBOL_GPL vmlinux 0x52f0bdb1 gpiod_to_irq -EXPORT_SYMBOL_GPL vmlinux 0x52ffb564 pci_epf_add_vepf -EXPORT_SYMBOL_GPL vmlinux 0x531930ef bio_clone_blkg_association -EXPORT_SYMBOL_GPL vmlinux 0x5324f1cc clockevents_register_device -EXPORT_SYMBOL_GPL vmlinux 0x53256be7 security_inode_mkdir -EXPORT_SYMBOL_GPL vmlinux 0x532f078a dev_pm_opp_register_set_opp_helper -EXPORT_SYMBOL_GPL vmlinux 0x5338e172 usb_init_urb -EXPORT_SYMBOL_GPL vmlinux 0x53398760 usb_autopm_put_interface -EXPORT_SYMBOL_GPL vmlinux 0x534d84dc uart_get_rs485_mode +EXPORT_SYMBOL_GPL vmlinux 0x52d5ec24 irq_create_of_mapping +EXPORT_SYMBOL_GPL vmlinux 0x52d7d64f crypto_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0x52f403e9 pcie_port_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x52f76d9e bpf_trace_run4 +EXPORT_SYMBOL_GPL vmlinux 0x52fa2de6 ncsi_stop_dev +EXPORT_SYMBOL_GPL vmlinux 0x530233e4 sdhci_reset_tuning +EXPORT_SYMBOL_GPL vmlinux 0x530d5951 usb_hcd_unlink_urb_from_ep +EXPORT_SYMBOL_GPL vmlinux 0x5311d788 dmi_kobj +EXPORT_SYMBOL_GPL vmlinux 0x53340320 virtio_add_status +EXPORT_SYMBOL_GPL vmlinux 0x533d0c80 led_trigger_register_simple +EXPORT_SYMBOL_GPL vmlinux 0x534aa2c8 ata_dev_pair +EXPORT_SYMBOL_GPL vmlinux 0x53519ece devm_gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0x5352a58d hrtimer_sleeper_start_expires +EXPORT_SYMBOL_GPL vmlinux 0x535850c6 gpiochip_irq_unmap EXPORT_SYMBOL_GPL vmlinux 0x5358864e devlink_fmsg_binary_pair_nest_end -EXPORT_SYMBOL_GPL vmlinux 0x535a2376 __fscrypt_prepare_readdir -EXPORT_SYMBOL_GPL vmlinux 0x535f3433 crypto_grab_ahash -EXPORT_SYMBOL_GPL vmlinux 0x53615ee4 crypto_shash_digest -EXPORT_SYMBOL_GPL vmlinux 0x53616a89 of_irq_find_parent +EXPORT_SYMBOL_GPL vmlinux 0x53606cf6 devlink_dpipe_entry_ctx_close +EXPORT_SYMBOL_GPL vmlinux 0x5361649c debugfs_create_u16 EXPORT_SYMBOL_GPL vmlinux 0x536822e3 sfp_module_insert EXPORT_SYMBOL_GPL vmlinux 0x537252cf __SCK__tp_func_rpm_return_int -EXPORT_SYMBOL_GPL vmlinux 0x53805b1c wm8350_read_auxadc -EXPORT_SYMBOL_GPL vmlinux 0x538518f3 regmap_raw_write +EXPORT_SYMBOL_GPL vmlinux 0x53834fad rockchip_register_restart_notifier EXPORT_SYMBOL_GPL vmlinux 0x538d073d phy_duplex_to_str -EXPORT_SYMBOL_GPL vmlinux 0x53956dfe irq_domain_get_irq_data -EXPORT_SYMBOL_GPL vmlinux 0x53d2c42d nfs42_ssc_register +EXPORT_SYMBOL_GPL vmlinux 0x53914470 usb_driver_release_interface +EXPORT_SYMBOL_GPL vmlinux 0x53980f47 phy_calibrate +EXPORT_SYMBOL_GPL vmlinux 0x53a568de reset_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x53a730b3 powercap_unregister_control_type +EXPORT_SYMBOL_GPL vmlinux 0x53ae1dab wait_on_page_writeback_killable EXPORT_SYMBOL_GPL vmlinux 0x53d7c01e __traceiter_cpu_idle -EXPORT_SYMBOL_GPL vmlinux 0x53ddcdf5 usb_asmedia_modifyflowcontrol -EXPORT_SYMBOL_GPL vmlinux 0x53e285c3 trace_event_ignore_this_pid -EXPORT_SYMBOL_GPL vmlinux 0x53f88543 spi_mem_supports_op -EXPORT_SYMBOL_GPL vmlinux 0x5400d862 kernel_kobj -EXPORT_SYMBOL_GPL vmlinux 0x5402ac04 devm_gpiod_get_index -EXPORT_SYMBOL_GPL vmlinux 0x541453f8 dev_pm_opp_get_max_clock_latency +EXPORT_SYMBOL_GPL vmlinux 0x53dfe311 i2c_new_smbus_alert_device +EXPORT_SYMBOL_GPL vmlinux 0x53e82678 ata_std_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x54025e4e dt_init_idle_driver +EXPORT_SYMBOL_GPL vmlinux 0x54120c93 inet_hash_connect EXPORT_SYMBOL_GPL vmlinux 0x54172702 cci_disable_port_by_cpu EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run -EXPORT_SYMBOL_GPL vmlinux 0x5421dc7a policy_has_boost_freq -EXPORT_SYMBOL_GPL vmlinux 0x5421f31a power_supply_unregister +EXPORT_SYMBOL_GPL vmlinux 0x54264b23 __blkg_prfill_u64 +EXPORT_SYMBOL_GPL vmlinux 0x5431888c bpf_prog_select_runtime EXPORT_SYMBOL_GPL vmlinux 0x5435454c divider_ro_round_rate_parent +EXPORT_SYMBOL_GPL vmlinux 0x54391a75 __page_mapcount +EXPORT_SYMBOL_GPL vmlinux 0x544057dc ata_do_set_mode EXPORT_SYMBOL_GPL vmlinux 0x5441e664 imx_obtain_fixed_clk_hw -EXPORT_SYMBOL_GPL vmlinux 0x54517b03 ulpi_viewport_access_ops -EXPORT_SYMBOL_GPL vmlinux 0x5459bb42 devm_irq_alloc_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x546488c0 mtk_pinconf_adv_pull_get -EXPORT_SYMBOL_GPL vmlinux 0x54673aad ata_bmdma_port_start32 -EXPORT_SYMBOL_GPL vmlinux 0x54728cd2 mtk_pinconf_drive_set_rev1 -EXPORT_SYMBOL_GPL vmlinux 0x54773c81 ata_scsi_queuecmd -EXPORT_SYMBOL_GPL vmlinux 0x54785e38 snd_soc_of_get_dai_name -EXPORT_SYMBOL_GPL vmlinux 0x54899d58 regmap_noinc_read -EXPORT_SYMBOL_GPL vmlinux 0x548c6d15 dev_pm_opp_add -EXPORT_SYMBOL_GPL vmlinux 0x549367ca thermal_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x5443e2a6 filemap_read +EXPORT_SYMBOL_GPL vmlinux 0x544ade89 sm501_misc_control +EXPORT_SYMBOL_GPL vmlinux 0x54535269 regmap_raw_write_async +EXPORT_SYMBOL_GPL vmlinux 0x54683e11 pm_clk_add +EXPORT_SYMBOL_GPL vmlinux 0x548a8925 sysfs_remove_mount_point +EXPORT_SYMBOL_GPL vmlinux 0x548dde8b virtqueue_get_vring_size +EXPORT_SYMBOL_GPL vmlinux 0x548e37e4 icc_node_del EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq -EXPORT_SYMBOL_GPL vmlinux 0x54954170 ohci_resume -EXPORT_SYMBOL_GPL vmlinux 0x549877f4 devm_snd_soc_register_card -EXPORT_SYMBOL_GPL vmlinux 0x54a23ec9 usb_driver_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0x549e9d8f iomap_writepage EXPORT_SYMBOL_GPL vmlinux 0x54a25da2 qcom_smem_state_put EXPORT_SYMBOL_GPL vmlinux 0x54a9fc07 sbitmap_resize -EXPORT_SYMBOL_GPL vmlinux 0x54cada8b skb_clone_tx_timestamp -EXPORT_SYMBOL_GPL vmlinux 0x54d26fe9 exportfs_decode_fh -EXPORT_SYMBOL_GPL vmlinux 0x54d6290b regulator_set_pull_down_regmap -EXPORT_SYMBOL_GPL vmlinux 0x54e05e56 gpiochip_request_own_desc -EXPORT_SYMBOL_GPL vmlinux 0x54e2481a pm_generic_freeze -EXPORT_SYMBOL_GPL vmlinux 0x54e6c062 da9052_enable_irq -EXPORT_SYMBOL_GPL vmlinux 0x54e90e50 cgroup_get_from_id -EXPORT_SYMBOL_GPL vmlinux 0x54eb5425 xdp_rxq_info_reg -EXPORT_SYMBOL_GPL vmlinux 0x54f3ad68 ehci_setup -EXPORT_SYMBOL_GPL vmlinux 0x54f3b57c usb_get_phy -EXPORT_SYMBOL_GPL vmlinux 0x54f64076 devlink_port_attrs_pci_vf_set -EXPORT_SYMBOL_GPL vmlinux 0x54f8b5a6 pci_pasid_features -EXPORT_SYMBOL_GPL vmlinux 0x5506069d inet_ctl_sock_create -EXPORT_SYMBOL_GPL vmlinux 0x550f14b0 snd_soc_unregister_card +EXPORT_SYMBOL_GPL vmlinux 0x54b87808 xhci_check_bandwidth +EXPORT_SYMBOL_GPL vmlinux 0x54bcb504 tpm2_get_cc_attrs_tbl +EXPORT_SYMBOL_GPL vmlinux 0x54d752b4 blkdev_report_zones +EXPORT_SYMBOL_GPL vmlinux 0x55040f2e __traceiter_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0x550ccbcc regmap_get_reg_stride EXPORT_SYMBOL_GPL vmlinux 0x550f3e05 i2c_freq_mode_string -EXPORT_SYMBOL_GPL vmlinux 0x552233d8 percpu_down_write +EXPORT_SYMBOL_GPL vmlinux 0x5514c027 devlink_param_driverinit_value_set +EXPORT_SYMBOL_GPL vmlinux 0x551a4f7a devlink_port_attrs_set EXPORT_SYMBOL_GPL vmlinux 0x55339365 flush_delayed_fput +EXPORT_SYMBOL_GPL vmlinux 0x5539668c pinctrl_get_group_pins EXPORT_SYMBOL_GPL vmlinux 0x553b49a4 cpufreq_get_driver_data -EXPORT_SYMBOL_GPL vmlinux 0x553c69a1 pci_find_next_ht_capability -EXPORT_SYMBOL_GPL vmlinux 0x553ea366 dm_report_zones EXPORT_SYMBOL_GPL vmlinux 0x55417264 unregister_vt_notifier -EXPORT_SYMBOL_GPL vmlinux 0x55508d27 tpm_is_tpm2 -EXPORT_SYMBOL_GPL vmlinux 0x55551286 thermal_of_cooling_device_register -EXPORT_SYMBOL_GPL vmlinux 0x555cb0cb ata_bmdma_stop +EXPORT_SYMBOL_GPL vmlinux 0x554a1f59 fat_fill_super +EXPORT_SYMBOL_GPL vmlinux 0x554e5959 usb_autopm_get_interface +EXPORT_SYMBOL_GPL vmlinux 0x55550fb8 tcp_leave_memory_pressure EXPORT_SYMBOL_GPL vmlinux 0x556e4390 clk_get_rate +EXPORT_SYMBOL_GPL vmlinux 0x55701a04 put_device EXPORT_SYMBOL_GPL vmlinux 0x55784228 regmap_irq_get_virq -EXPORT_SYMBOL_GPL vmlinux 0x5580fbbb thermal_zone_unbind_cooling_device -EXPORT_SYMBOL_GPL vmlinux 0x558abff7 bpf_offload_dev_netdev_register -EXPORT_SYMBOL_GPL vmlinux 0x559268d0 devm_of_phy_get_by_index -EXPORT_SYMBOL_GPL vmlinux 0x55b97039 led_trigger_remove -EXPORT_SYMBOL_GPL vmlinux 0x55c3860d genphy_c45_read_mdix +EXPORT_SYMBOL_GPL vmlinux 0x557d2cf5 set_capacity_and_notify +EXPORT_SYMBOL_GPL vmlinux 0x5599d14c snd_soc_component_disable_pin +EXPORT_SYMBOL_GPL vmlinux 0x559c4cdf fsverity_ioctl_read_metadata +EXPORT_SYMBOL_GPL vmlinux 0x55a099cf irq_domain_create_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0x55a2ac4f mtd_ooblayout_set_databytes +EXPORT_SYMBOL_GPL vmlinux 0x55ace9a7 transport_setup_device +EXPORT_SYMBOL_GPL vmlinux 0x55b1ad18 user_update +EXPORT_SYMBOL_GPL vmlinux 0x55b7f6e9 security_path_link EXPORT_SYMBOL_GPL vmlinux 0x55c76a23 ksys_sync_helper -EXPORT_SYMBOL_GPL vmlinux 0x55cb3470 device_match_of_node -EXPORT_SYMBOL_GPL vmlinux 0x55cf278b tc3589x_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x55e71e79 devlink_param_unpublish +EXPORT_SYMBOL_GPL vmlinux 0x55d2ac97 nanddev_bbt_get_block_status EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout +EXPORT_SYMBOL_GPL vmlinux 0x55f23d3c nand_read_page_hwecc_oob_first +EXPORT_SYMBOL_GPL vmlinux 0x55fd05f4 to_of_pinfo +EXPORT_SYMBOL_GPL vmlinux 0x5602a333 fscrypt_show_test_dummy_encryption EXPORT_SYMBOL_GPL vmlinux 0x56054c05 crypto_it_tab -EXPORT_SYMBOL_GPL vmlinux 0x560afe55 regmap_fields_read -EXPORT_SYMBOL_GPL vmlinux 0x560c184c devm_power_supply_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x5608789d debugfs_print_regs32 +EXPORT_SYMBOL_GPL vmlinux 0x5610785c scsi_internal_device_block_nowait EXPORT_SYMBOL_GPL vmlinux 0x56173654 pcap_set_ts_bits EXPORT_SYMBOL_GPL vmlinux 0x561835eb init_rs_non_canonical +EXPORT_SYMBOL_GPL vmlinux 0x561d0fdf rockchip_pcie_init_port +EXPORT_SYMBOL_GPL vmlinux 0x56206746 sock_diag_put_meminfo +EXPORT_SYMBOL_GPL vmlinux 0x5622344a blk_mq_hctx_set_fq_lock_class EXPORT_SYMBOL_GPL vmlinux 0x56256e8a orderly_poweroff EXPORT_SYMBOL_GPL vmlinux 0x56310925 regulator_mode_to_status EXPORT_SYMBOL_GPL vmlinux 0x5632e63d nand_subop_get_num_addr_cyc EXPORT_SYMBOL_GPL vmlinux 0x5641485b tty_termios_encode_baud_rate -EXPORT_SYMBOL_GPL vmlinux 0x564ee859 dma_async_device_channel_unregister -EXPORT_SYMBOL_GPL vmlinux 0x565147fa tps6586x_clr_bits -EXPORT_SYMBOL_GPL vmlinux 0x5652ab0b simple_attr_read -EXPORT_SYMBOL_GPL vmlinux 0x56573ace __tcp_send_ack -EXPORT_SYMBOL_GPL vmlinux 0x565d6000 virtqueue_kick_prepare -EXPORT_SYMBOL_GPL vmlinux 0x567e8733 vp_modern_get_status -EXPORT_SYMBOL_GPL vmlinux 0x5686e17e mtk_pinconf_adv_drive_set -EXPORT_SYMBOL_GPL vmlinux 0x56965740 qcom_smem_state_register +EXPORT_SYMBOL_GPL vmlinux 0x56419c8d edac_pci_add_device +EXPORT_SYMBOL_GPL vmlinux 0x564c0444 vfs_removexattr +EXPORT_SYMBOL_GPL vmlinux 0x565726c8 usb_autopm_get_interface_async +EXPORT_SYMBOL_GPL vmlinux 0x5658c99d __clk_get_hw +EXPORT_SYMBOL_GPL vmlinux 0x56590595 edac_pci_del_device +EXPORT_SYMBOL_GPL vmlinux 0x567b965f devm_serdev_device_open +EXPORT_SYMBOL_GPL vmlinux 0x5694dd61 scsi_autopm_put_device +EXPORT_SYMBOL_GPL vmlinux 0x569e2523 pci_epc_start EXPORT_SYMBOL_GPL vmlinux 0x56a6a76c net_rwsem -EXPORT_SYMBOL_GPL vmlinux 0x56ae54f7 sch_frag_xmit_hook EXPORT_SYMBOL_GPL vmlinux 0x56af5d34 call_srcu EXPORT_SYMBOL_GPL vmlinux 0x56b63670 lzo1x_1_compress -EXPORT_SYMBOL_GPL vmlinux 0x56bfa225 devm_clk_unregister -EXPORT_SYMBOL_GPL vmlinux 0x56c9bef5 regcache_sync -EXPORT_SYMBOL_GPL vmlinux 0x56ca7df8 pm_generic_freeze_late -EXPORT_SYMBOL_GPL vmlinux 0x56d7571d user_describe -EXPORT_SYMBOL_GPL vmlinux 0x56defd20 fuse_dev_install -EXPORT_SYMBOL_GPL vmlinux 0x56e1e2fa platform_msi_domain_free_irqs +EXPORT_SYMBOL_GPL vmlinux 0x56c3e09e snd_soc_dapm_disable_pin_unlocked +EXPORT_SYMBOL_GPL vmlinux 0x56de679a spi_register_controller EXPORT_SYMBOL_GPL vmlinux 0x56e9103b cpu_pm_enter +EXPORT_SYMBOL_GPL vmlinux 0x56f9ea63 snd_soc_link_compr_startup EXPORT_SYMBOL_GPL vmlinux 0x56fbb130 no_hash_pointers -EXPORT_SYMBOL_GPL vmlinux 0x5701d540 crypto_unregister_rng -EXPORT_SYMBOL_GPL vmlinux 0x571af968 snd_dmaengine_pcm_get_chan +EXPORT_SYMBOL_GPL vmlinux 0x56fe9a4d ethnl_cable_test_finished +EXPORT_SYMBOL_GPL vmlinux 0x570d9f60 tracing_snapshot_cond_disable +EXPORT_SYMBOL_GPL vmlinux 0x5719f245 pci_msi_create_irq_domain +EXPORT_SYMBOL_GPL vmlinux 0x573112c5 tcpv6_prot EXPORT_SYMBOL_GPL vmlinux 0x573b5453 ipv6_fixup_options -EXPORT_SYMBOL_GPL vmlinux 0x57447d26 umd_load_blob -EXPORT_SYMBOL_GPL vmlinux 0x5748368e musb_queue_resume_work -EXPORT_SYMBOL_GPL vmlinux 0x575b55f9 led_classdev_resume -EXPORT_SYMBOL_GPL vmlinux 0x575e2a8e usb_amd_pt_check_port -EXPORT_SYMBOL_GPL vmlinux 0x5769eb2a platform_device_register +EXPORT_SYMBOL_GPL vmlinux 0x573d79b5 of_hwspin_lock_get_id +EXPORT_SYMBOL_GPL vmlinux 0x57554721 platform_get_irq +EXPORT_SYMBOL_GPL vmlinux 0x57670894 snd_soc_component_update_bits_async EXPORT_SYMBOL_GPL vmlinux 0x5790e7a0 pci_unlock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0x5798aa5c fsnotify_find_mark +EXPORT_SYMBOL_GPL vmlinux 0x57994753 gpmc_omap_onenand_set_timings EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all +EXPORT_SYMBOL_GPL vmlinux 0x579f22cb hwmon_notify_event EXPORT_SYMBOL_GPL vmlinux 0x57a231cc usb_decode_ctrl -EXPORT_SYMBOL_GPL vmlinux 0x57ac84a7 mtd_del_partition -EXPORT_SYMBOL_GPL vmlinux 0x57b2c5d8 pci_vpd_alloc -EXPORT_SYMBOL_GPL vmlinux 0x57b2c9d1 devm_pinctrl_unregister -EXPORT_SYMBOL_GPL vmlinux 0x57b735b8 tps6586x_update +EXPORT_SYMBOL_GPL vmlinux 0x57af4a3e bus_create_file +EXPORT_SYMBOL_GPL vmlinux 0x57cb760d crypto_unregister_templates +EXPORT_SYMBOL_GPL vmlinux 0x57d2869d dev_pm_opp_of_remove_table EXPORT_SYMBOL_GPL vmlinux 0x57d4050a xhci_get_endpoint_index -EXPORT_SYMBOL_GPL vmlinux 0x57ed5793 mtk_hw_get_value +EXPORT_SYMBOL_GPL vmlinux 0x57f4ab62 of_i2c_setup_smbus_alert EXPORT_SYMBOL_GPL vmlinux 0x57f576b9 mpi_ec_curve_point EXPORT_SYMBOL_GPL vmlinux 0x57f70547 secure_ipv4_port_ephemeral -EXPORT_SYMBOL_GPL vmlinux 0x57f901ef fuse_conn_put -EXPORT_SYMBOL_GPL vmlinux 0x57ff9cbc regmap_read -EXPORT_SYMBOL_GPL vmlinux 0x580bbdaa devlink_dpipe_table_unregister -EXPORT_SYMBOL_GPL vmlinux 0x58125b58 snd_soc_of_parse_aux_devs -EXPORT_SYMBOL_GPL vmlinux 0x582ae7fa wwan_register_ops -EXPORT_SYMBOL_GPL vmlinux 0x583085a8 __traceiter_pelt_rt_tp +EXPORT_SYMBOL_GPL vmlinux 0x580aa899 usb_get_maximum_speed +EXPORT_SYMBOL_GPL vmlinux 0x580e851c is_skb_forwardable +EXPORT_SYMBOL_GPL vmlinux 0x5812ebb4 dev_pm_enable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x582cb6b3 perf_event_enable EXPORT_SYMBOL_GPL vmlinux 0x5831e062 cpus_read_trylock -EXPORT_SYMBOL_GPL vmlinux 0x58400579 dma_can_mmap -EXPORT_SYMBOL_GPL vmlinux 0x5840d618 __lock_page_killable -EXPORT_SYMBOL_GPL vmlinux 0x584d1668 __traceiter_block_bio_remap -EXPORT_SYMBOL_GPL vmlinux 0x585218f1 trace_array_get_by_name -EXPORT_SYMBOL_GPL vmlinux 0x585812ab crypto_larval_alloc -EXPORT_SYMBOL_GPL vmlinux 0x585b9139 class_create_file_ns -EXPORT_SYMBOL_GPL vmlinux 0x58611c19 sdio_readl +EXPORT_SYMBOL_GPL vmlinux 0x58373610 ahci_platform_resume +EXPORT_SYMBOL_GPL vmlinux 0x5855c773 scsi_host_block +EXPORT_SYMBOL_GPL vmlinux 0x58589c27 housekeeping_affine +EXPORT_SYMBOL_GPL vmlinux 0x585cda92 amba_device_add EXPORT_SYMBOL_GPL vmlinux 0x58631dab imx_audmux_v2_configure_port -EXPORT_SYMBOL_GPL vmlinux 0x5867ea91 regmap_add_irq_chip_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x587928fa sk_msg_return EXPORT_SYMBOL_GPL vmlinux 0x5879a27d sfp_get_module_info EXPORT_SYMBOL_GPL vmlinux 0x587ac04d cpufreq_show_cpus -EXPORT_SYMBOL_GPL vmlinux 0x589520da dma_buf_export -EXPORT_SYMBOL_GPL vmlinux 0x589716f7 powercap_unregister_control_type -EXPORT_SYMBOL_GPL vmlinux 0x58b6187c regulator_register -EXPORT_SYMBOL_GPL vmlinux 0x58d8161d i2c_detect_slave_mode -EXPORT_SYMBOL_GPL vmlinux 0x58da81fb snd_dmaengine_pcm_open_request_chan +EXPORT_SYMBOL_GPL vmlinux 0x588b367c genphy_c45_read_pma +EXPORT_SYMBOL_GPL vmlinux 0x588e3252 elv_unregister +EXPORT_SYMBOL_GPL vmlinux 0x58956b21 adp5520_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x5897a9b2 tpm_default_chip +EXPORT_SYMBOL_GPL vmlinux 0x58a28357 nand_prog_page_begin_op +EXPORT_SYMBOL_GPL vmlinux 0x58be868e call_switchdev_blocking_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x58c4695f sfp_register_socket +EXPORT_SYMBOL_GPL vmlinux 0x58d07053 vfs_lock_file +EXPORT_SYMBOL_GPL vmlinux 0x58d194c6 qcom_smem_state_register EXPORT_SYMBOL_GPL vmlinux 0x58def6ca sfp_module_remove +EXPORT_SYMBOL_GPL vmlinux 0x58e6ef5c devm_bitmap_zalloc +EXPORT_SYMBOL_GPL vmlinux 0x58e8f9c4 regulator_list_voltage_pickable_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x58e98fe9 crypto_register_alg EXPORT_SYMBOL_GPL vmlinux 0x58f0308a clk_regmap_divider_ops -EXPORT_SYMBOL_GPL vmlinux 0x58f247a2 sk_psock_init -EXPORT_SYMBOL_GPL vmlinux 0x59154265 inverse_translate -EXPORT_SYMBOL_GPL vmlinux 0x59160aba noop_backing_dev_info -EXPORT_SYMBOL_GPL vmlinux 0x592922ad spi_sync_locked -EXPORT_SYMBOL_GPL vmlinux 0x593a3028 phy_init -EXPORT_SYMBOL_GPL vmlinux 0x593aec63 tty_encode_baud_rate -EXPORT_SYMBOL_GPL vmlinux 0x594aeff0 free_vm_area -EXPORT_SYMBOL_GPL vmlinux 0x596a1651 of_pci_find_child_device -EXPORT_SYMBOL_GPL vmlinux 0x59775442 devlink_port_health_reporter_create +EXPORT_SYMBOL_GPL vmlinux 0x58f2f49d acomp_request_alloc +EXPORT_SYMBOL_GPL vmlinux 0x58f6ba9d led_trigger_set_default +EXPORT_SYMBOL_GPL vmlinux 0x59174339 ata_msleep +EXPORT_SYMBOL_GPL vmlinux 0x5945fe88 fwnode_property_get_reference_args +EXPORT_SYMBOL_GPL vmlinux 0x595c328f subsys_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x595ecee4 __irq_domain_add +EXPORT_SYMBOL_GPL vmlinux 0x5964192a ndo_dflt_bridge_getlink +EXPORT_SYMBOL_GPL vmlinux 0x5965511b device_store_bool +EXPORT_SYMBOL_GPL vmlinux 0x596c580c pid_nr_ns +EXPORT_SYMBOL_GPL vmlinux 0x596df261 pci_epf_add_vepf +EXPORT_SYMBOL_GPL vmlinux 0x59704b65 fwnode_get_nth_parent EXPORT_SYMBOL_GPL vmlinux 0x5986d190 kdb_printf -EXPORT_SYMBOL_GPL vmlinux 0x59958bcc sched_trace_rq_avg_dl -EXPORT_SYMBOL_GPL vmlinux 0x5996c064 mtd_read -EXPORT_SYMBOL_GPL vmlinux 0x599fc9b9 power_supply_set_input_current_limit_from_supplier +EXPORT_SYMBOL_GPL vmlinux 0x598cddfd unregister_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x59936fe0 lp8788_read_multi_bytes +EXPORT_SYMBOL_GPL vmlinux 0x599e0632 snd_card_free_on_error EXPORT_SYMBOL_GPL vmlinux 0x59a1fab8 ehci_cf_port_reset_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x59a6c63f fixed_phy_register EXPORT_SYMBOL_GPL vmlinux 0x59b5def6 clk_regmap_gate_ops EXPORT_SYMBOL_GPL vmlinux 0x59c43dc9 __traceiter_non_standard_event -EXPORT_SYMBOL_GPL vmlinux 0x59df86e2 fwnode_gpiod_get_index -EXPORT_SYMBOL_GPL vmlinux 0x59e21866 crypto_inst_setname -EXPORT_SYMBOL_GPL vmlinux 0x59ed0fdd param_ops_bool_enable_only -EXPORT_SYMBOL_GPL vmlinux 0x59f25a65 pci_create_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x59c4449c blk_ksm_update_capabilities +EXPORT_SYMBOL_GPL vmlinux 0x59d74290 subsys_find_device_by_id +EXPORT_SYMBOL_GPL vmlinux 0x59dba24b nand_gpio_waitrdy +EXPORT_SYMBOL_GPL vmlinux 0x59e23ed6 irq_chip_mask_ack_parent +EXPORT_SYMBOL_GPL vmlinux 0x59e7d01f ehci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x59f0011b fuse_file_poll EXPORT_SYMBOL_GPL vmlinux 0x59f32720 mpi_subm -EXPORT_SYMBOL_GPL vmlinux 0x5a01fe17 snd_soc_poweroff -EXPORT_SYMBOL_GPL vmlinux 0x5a02b6c5 bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0x59ff25c3 crypto_aead_setauthsize +EXPORT_SYMBOL_GPL vmlinux 0x5a0cb641 crypto_unregister_algs +EXPORT_SYMBOL_GPL vmlinux 0x5a0e1f0e devm_gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0x5a0edef4 fwnode_get_name +EXPORT_SYMBOL_GPL vmlinux 0x5a11b90a pin_user_pages_fast 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 0x5a230d16 ata_std_sched_eh -EXPORT_SYMBOL_GPL vmlinux 0x5a413a81 pcie_flr -EXPORT_SYMBOL_GPL vmlinux 0x5a49617c devm_of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x5a1dfffc bpf_trace_run7 EXPORT_SYMBOL_GPL vmlinux 0x5a49dbc9 timerqueue_del -EXPORT_SYMBOL_GPL vmlinux 0x5a4ad52a devm_device_remove_group -EXPORT_SYMBOL_GPL vmlinux 0x5a5e3cd2 fuse_do_open -EXPORT_SYMBOL_GPL vmlinux 0x5a5ecff2 imx_pcm_fiq_exit -EXPORT_SYMBOL_GPL vmlinux 0x5a632ede crypto_register_skciphers +EXPORT_SYMBOL_GPL vmlinux 0x5a69aadb hvc_alloc +EXPORT_SYMBOL_GPL vmlinux 0x5a6b3d00 input_ff_destroy EXPORT_SYMBOL_GPL vmlinux 0x5a6cdb52 nf_ct_zone_dflt +EXPORT_SYMBOL_GPL vmlinux 0x5a784597 sched_set_fifo_low EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify -EXPORT_SYMBOL_GPL vmlinux 0x5a85745f snd_soc_component_compr_ack -EXPORT_SYMBOL_GPL vmlinux 0x5a90ce2a crypto_lookup_template -EXPORT_SYMBOL_GPL vmlinux 0x5a9ecfbd udp6_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x5aa65f39 dapm_regulator_event -EXPORT_SYMBOL_GPL vmlinux 0x5aa7ef02 device_dma_supported -EXPORT_SYMBOL_GPL vmlinux 0x5aaf9679 tps6586x_get_version +EXPORT_SYMBOL_GPL vmlinux 0x5a84f037 devm_power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0x5a8c05bc snd_soc_dapm_nc_pin_unlocked +EXPORT_SYMBOL_GPL vmlinux 0x5a9e820e device_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x5ab04bd8 phy_pm_runtime_get EXPORT_SYMBOL_GPL vmlinux 0x5ab09745 edac_get_owner -EXPORT_SYMBOL_GPL vmlinux 0x5ac494ae nanddev_bbt_init -EXPORT_SYMBOL_GPL vmlinux 0x5ad87d86 snd_soc_component_update_bits_async -EXPORT_SYMBOL_GPL vmlinux 0x5ad906c0 dev_pm_opp_attach_genpd -EXPORT_SYMBOL_GPL vmlinux 0x5ae25a0b fwnode_property_read_u64_array -EXPORT_SYMBOL_GPL vmlinux 0x5af08940 snd_soc_find_dai -EXPORT_SYMBOL_GPL vmlinux 0x5af3241a irq_domain_associate_many -EXPORT_SYMBOL_GPL vmlinux 0x5af4e84d alloc_dax -EXPORT_SYMBOL_GPL vmlinux 0x5afdc7ab crypto_register_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x5ab47a3c platform_get_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0x5ab766b5 debugfs_create_size_t +EXPORT_SYMBOL_GPL vmlinux 0x5ac4cfc3 devm_gpiod_unhinge +EXPORT_SYMBOL_GPL vmlinux 0x5ac66ae2 crypto_req_done +EXPORT_SYMBOL_GPL vmlinux 0x5ae18a7f ping_bind +EXPORT_SYMBOL_GPL vmlinux 0x5af0dfaa da903x_read +EXPORT_SYMBOL_GPL vmlinux 0x5b01d754 rio_request_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0x5b213f21 fib6_rule_default EXPORT_SYMBOL_GPL vmlinux 0x5b21ceff ring_buffer_iter_peek +EXPORT_SYMBOL_GPL vmlinux 0x5b292f71 sdhci_set_clock EXPORT_SYMBOL_GPL vmlinux 0x5b316080 software_node_unregister_nodes -EXPORT_SYMBOL_GPL vmlinux 0x5b368f49 dm_path_uevent -EXPORT_SYMBOL_GPL vmlinux 0x5b3a27a8 spi_busnum_to_master +EXPORT_SYMBOL_GPL vmlinux 0x5b37e23f mmc_app_cmd +EXPORT_SYMBOL_GPL vmlinux 0x5b3bb53a nvmem_cell_get EXPORT_SYMBOL_GPL vmlinux 0x5b3bdea8 alarm_restart -EXPORT_SYMBOL_GPL vmlinux 0x5b4696bd platform_get_mem_or_io -EXPORT_SYMBOL_GPL vmlinux 0x5b4d6b81 pm_generic_restore -EXPORT_SYMBOL_GPL vmlinux 0x5b4dbd52 iommu_uapi_sva_unbind_gpasid -EXPORT_SYMBOL_GPL vmlinux 0x5b754e0e bdev_disk_changed -EXPORT_SYMBOL_GPL vmlinux 0x5b89f88c gpiod_set_value +EXPORT_SYMBOL_GPL vmlinux 0x5b3f24b1 devm_phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0x5b42c5a1 fuse_conn_get +EXPORT_SYMBOL_GPL vmlinux 0x5b4558ec ata_dev_set_feature +EXPORT_SYMBOL_GPL vmlinux 0x5b5a9431 tpm_pcr_extend +EXPORT_SYMBOL_GPL vmlinux 0x5b5ccb61 relay_buf_full +EXPORT_SYMBOL_GPL vmlinux 0x5b77c1bd unregister_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x5b8d01f4 serial8250_init_port +EXPORT_SYMBOL_GPL vmlinux 0x5b9522a2 spi_bus_lock EXPORT_SYMBOL_GPL vmlinux 0x5b994e71 ima_measure_critical_data -EXPORT_SYMBOL_GPL vmlinux 0x5ba100a5 __pm_stay_awake -EXPORT_SYMBOL_GPL vmlinux 0x5ba680db extcon_get_extcon_dev +EXPORT_SYMBOL_GPL vmlinux 0x5b9c4f73 netlink_remove_tap +EXPORT_SYMBOL_GPL vmlinux 0x5b9cafe8 pm_relax +EXPORT_SYMBOL_GPL vmlinux 0x5b9ef8ca mtk_pinconf_bias_disable_get +EXPORT_SYMBOL_GPL vmlinux 0x5bba38e0 mmc_send_status +EXPORT_SYMBOL_GPL vmlinux 0x5bc05257 fib_nl_delrule +EXPORT_SYMBOL_GPL vmlinux 0x5bc2bb54 of_pci_range_parser_one EXPORT_SYMBOL_GPL vmlinux 0x5bc950fe regulator_irq_helper_cancel EXPORT_SYMBOL_GPL vmlinux 0x5bd0748f crypto_del_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x5bd54e7d gpiod_set_array_value EXPORT_SYMBOL_GPL vmlinux 0x5bdae35b usb_phy_roothub_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x5bdb2710 dma_free_noncontiguous EXPORT_SYMBOL_GPL vmlinux 0x5bdbac4e rcu_unexpedite_gp -EXPORT_SYMBOL_GPL vmlinux 0x5bdcfc9a cpufreq_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x5be3b490 i2c_get_device_id -EXPORT_SYMBOL_GPL vmlinux 0x5bede4fb ahci_do_softreset -EXPORT_SYMBOL_GPL vmlinux 0x5c034e4e ip6_route_lookup -EXPORT_SYMBOL_GPL vmlinux 0x5c0885fe rio_release_inb_pwrite -EXPORT_SYMBOL_GPL vmlinux 0x5c08e222 crypto_drop_spawn -EXPORT_SYMBOL_GPL vmlinux 0x5c1bd942 usb_of_get_companion_dev -EXPORT_SYMBOL_GPL vmlinux 0x5c2a836a pci_ats_supported +EXPORT_SYMBOL_GPL vmlinux 0x5beaad6f cros_ec_check_features +EXPORT_SYMBOL_GPL vmlinux 0x5c04ecf7 __kthread_should_park +EXPORT_SYMBOL_GPL vmlinux 0x5c124a68 sata_pmp_qc_defer_cmd_switch EXPORT_SYMBOL_GPL vmlinux 0x5c2bcd37 bpf_warn_invalid_xdp_action -EXPORT_SYMBOL_GPL vmlinux 0x5c2bf1c1 vring_create_virtqueue EXPORT_SYMBOL_GPL vmlinux 0x5c309e65 hibernate_quiet_exec -EXPORT_SYMBOL_GPL vmlinux 0x5c32331e led_trigger_register -EXPORT_SYMBOL_GPL vmlinux 0x5c37a5b4 usb_gadget_unmap_request EXPORT_SYMBOL_GPL vmlinux 0x5c3bbd06 __SCK__tp_func_mc_event -EXPORT_SYMBOL_GPL vmlinux 0x5c4dbfb7 mtk_eint_find_irq +EXPORT_SYMBOL_GPL vmlinux 0x5c480cac snd_soc_component_nc_pin_unlocked +EXPORT_SYMBOL_GPL vmlinux 0x5c4cf6cc invalidate_inode_pages2 EXPORT_SYMBOL_GPL vmlinux 0x5c5a1b16 tick_broadcast_control EXPORT_SYMBOL_GPL vmlinux 0x5c5c6826 phy_10gbit_full_features -EXPORT_SYMBOL_GPL vmlinux 0x5c5f8575 dev_pm_opp_free_cpufreq_table -EXPORT_SYMBOL_GPL vmlinux 0x5c645351 nexthop_for_each_fib6_nh -EXPORT_SYMBOL_GPL vmlinux 0x5c6f966b rtc_read_time EXPORT_SYMBOL_GPL vmlinux 0x5c724709 memory_cgrp_subsys_on_dfl_key EXPORT_SYMBOL_GPL vmlinux 0x5c82016e __SCK__tp_func_napi_poll -EXPORT_SYMBOL_GPL vmlinux 0x5c90983e crypto_stats_akcipher_decrypt -EXPORT_SYMBOL_GPL vmlinux 0x5c99fa9e gpiochip_relres_irq -EXPORT_SYMBOL_GPL vmlinux 0x5ca34964 snd_pcm_add_chmap_ctls -EXPORT_SYMBOL_GPL vmlinux 0x5ca45075 devm_clk_bulk_get_all +EXPORT_SYMBOL_GPL vmlinux 0x5c9ba840 phy_get +EXPORT_SYMBOL_GPL vmlinux 0x5c9de7a9 raw_seq_stop EXPORT_SYMBOL_GPL vmlinux 0x5cad8fc3 power_supply_ocv2cap_simple -EXPORT_SYMBOL_GPL vmlinux 0x5cb0ea2f nand_prog_page_begin_op -EXPORT_SYMBOL_GPL vmlinux 0x5cb7e633 devm_regmap_field_bulk_free -EXPORT_SYMBOL_GPL vmlinux 0x5cbe5173 mpc8xxx_spi_tx_buf_u32 +EXPORT_SYMBOL_GPL vmlinux 0x5cb9f17d sysfs_break_active_protection EXPORT_SYMBOL_GPL vmlinux 0x5cc2a511 hrtimer_forward -EXPORT_SYMBOL_GPL vmlinux 0x5cc4ca16 genphy_c45_aneg_done -EXPORT_SYMBOL_GPL vmlinux 0x5cd3879b __nf_ip6_route -EXPORT_SYMBOL_GPL vmlinux 0x5cd5d1e9 pinctrl_generic_get_group_pins -EXPORT_SYMBOL_GPL vmlinux 0x5ce86361 snd_soc_tplg_widget_bind_event +EXPORT_SYMBOL_GPL vmlinux 0x5cc89a96 ata_bmdma_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x5cd0c152 gpiochip_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0x5cdd5871 dev_pm_opp_find_freq_ceil_by_volt +EXPORT_SYMBOL_GPL vmlinux 0x5cec8ef5 devm_clk_register EXPORT_SYMBOL_GPL vmlinux 0x5cede0a7 xdp_flush_frame_bulk -EXPORT_SYMBOL_GPL vmlinux 0x5cf70ccc attribute_container_classdev_to_container +EXPORT_SYMBOL_GPL vmlinux 0x5cfab41c crypto_register_templates +EXPORT_SYMBOL_GPL vmlinux 0x5cfde7af of_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0x5d07d54e ata_pci_device_resume EXPORT_SYMBOL_GPL vmlinux 0x5d0a0eff __tracepoint_napi_poll -EXPORT_SYMBOL_GPL vmlinux 0x5d10db77 init_dummy_netdev -EXPORT_SYMBOL_GPL vmlinux 0x5d203d01 ahci_host_activate -EXPORT_SYMBOL_GPL vmlinux 0x5d2961d6 ata_cable_sata +EXPORT_SYMBOL_GPL vmlinux 0x5d19850d perf_pmu_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5d1c3158 ahci_print_info +EXPORT_SYMBOL_GPL vmlinux 0x5d22000f spi_bus_type EXPORT_SYMBOL_GPL vmlinux 0x5d2bc42a reset_control_rearm -EXPORT_SYMBOL_GPL vmlinux 0x5d2eaded scsi_dh_attached_handler_name -EXPORT_SYMBOL_GPL vmlinux 0x5d30f41b ata_slave_link_init -EXPORT_SYMBOL_GPL vmlinux 0x5d528964 palmas_ext_control_req_config -EXPORT_SYMBOL_GPL vmlinux 0x5d61ab0c snd_soc_dapm_get_pin_status -EXPORT_SYMBOL_GPL vmlinux 0x5d70bf0f dw_pcie_find_ext_capability -EXPORT_SYMBOL_GPL vmlinux 0x5d7cd62c bus_create_file +EXPORT_SYMBOL_GPL vmlinux 0x5d300f9a devm_pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5d33e722 tps6586x_get_version +EXPORT_SYMBOL_GPL vmlinux 0x5d3422dd rtc_update_irq +EXPORT_SYMBOL_GPL vmlinux 0x5d40dec6 iomap_migrate_page +EXPORT_SYMBOL_GPL vmlinux 0x5d58770b nexthop_find_by_id +EXPORT_SYMBOL_GPL vmlinux 0x5d5f847f md_find_rdev_rcu +EXPORT_SYMBOL_GPL vmlinux 0x5d73589c dst_cache_set_ip6 +EXPORT_SYMBOL_GPL vmlinux 0x5d7b70f9 tty_port_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x5d7dbf73 sdhci_adma_write_desc EXPORT_SYMBOL_GPL vmlinux 0x5d82a5b8 tracepoint_probe_register EXPORT_SYMBOL_GPL vmlinux 0x5d8476d3 bpf_sk_storage_diag_alloc +EXPORT_SYMBOL_GPL vmlinux 0x5d8a3033 blk_stat_enable_accounting +EXPORT_SYMBOL_GPL vmlinux 0x5d8da8e4 virtqueue_add_outbuf +EXPORT_SYMBOL_GPL vmlinux 0x5d92fa7e blk_mq_rdma_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x5d991adf sched_setattr_nocheck +EXPORT_SYMBOL_GPL vmlinux 0x5d9df561 kgdb_register_io_module EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact -EXPORT_SYMBOL_GPL vmlinux 0x5db4a571 scsi_host_block -EXPORT_SYMBOL_GPL vmlinux 0x5dc5cb06 sdhci_runtime_resume_host -EXPORT_SYMBOL_GPL vmlinux 0x5dce4117 kernfs_put -EXPORT_SYMBOL_GPL vmlinux 0x5dd7ed28 regulator_bulk_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x5dd80bf5 hwmon_device_register_with_info -EXPORT_SYMBOL_GPL vmlinux 0x5de59260 iommu_sva_unbind_device -EXPORT_SYMBOL_GPL vmlinux 0x5df8c115 fat_time_unix2fat -EXPORT_SYMBOL_GPL vmlinux 0x5dfa0f0b register_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0x5dbd86bf component_master_del +EXPORT_SYMBOL_GPL vmlinux 0x5dc5098e sdio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x5dc85029 pm_generic_freeze_late +EXPORT_SYMBOL_GPL vmlinux 0x5dd51997 relay_switch_subbuf +EXPORT_SYMBOL_GPL vmlinux 0x5de6643b devm_ioremap_uc EXPORT_SYMBOL_GPL vmlinux 0x5dff6fda x509_decode_time -EXPORT_SYMBOL_GPL vmlinux 0x5e033459 skb_zerocopy_iter_dgram -EXPORT_SYMBOL_GPL vmlinux 0x5e072708 component_add -EXPORT_SYMBOL_GPL vmlinux 0x5e0dc1de usb_unlocked_enable_lpm -EXPORT_SYMBOL_GPL vmlinux 0x5e269793 regulator_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x5e31f908 hwspin_lock_request -EXPORT_SYMBOL_GPL vmlinux 0x5e3a3c4a __iomap_dio_rw -EXPORT_SYMBOL_GPL vmlinux 0x5e3aea7f regulator_get -EXPORT_SYMBOL_GPL vmlinux 0x5e45d730 class_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x5e114ab6 led_trigger_unregister_simple +EXPORT_SYMBOL_GPL vmlinux 0x5e185521 generic_handle_domain_irq +EXPORT_SYMBOL_GPL vmlinux 0x5e201ec9 of_icc_get_by_index EXPORT_SYMBOL_GPL vmlinux 0x5e504919 __tracepoint_block_split EXPORT_SYMBOL_GPL vmlinux 0x5e515be6 ktime_get_ts64 -EXPORT_SYMBOL_GPL vmlinux 0x5e62952f ehci_adjust_port_wakeup_flags +EXPORT_SYMBOL_GPL vmlinux 0x5e55cc40 of_thermal_is_trip_valid EXPORT_SYMBOL_GPL vmlinux 0x5e67b71d evm_set_key -EXPORT_SYMBOL_GPL vmlinux 0x5e6c652d meson_pmx_get_func_name -EXPORT_SYMBOL_GPL vmlinux 0x5e72b5a1 ahci_kick_engine -EXPORT_SYMBOL_GPL vmlinux 0x5e777346 vp_modern_get_features +EXPORT_SYMBOL_GPL vmlinux 0x5e752d1f pci_epc_map_msi_irq EXPORT_SYMBOL_GPL vmlinux 0x5e798ffb divider_get_val -EXPORT_SYMBOL_GPL vmlinux 0x5e7a1f85 skb_consume_udp EXPORT_SYMBOL_GPL vmlinux 0x5e85415b ring_buffer_consume -EXPORT_SYMBOL_GPL vmlinux 0x5e98b1ee meson_pmx_get_groups -EXPORT_SYMBOL_GPL vmlinux 0x5ea372ff input_ff_upload -EXPORT_SYMBOL_GPL vmlinux 0x5ea7a7cd pinmux_generic_remove_function -EXPORT_SYMBOL_GPL vmlinux 0x5eaa91dc blk_queue_max_discard_segments +EXPORT_SYMBOL_GPL vmlinux 0x5e8cbe63 pci_vfs_assigned +EXPORT_SYMBOL_GPL vmlinux 0x5e91389d ata_bmdma_irq_clear +EXPORT_SYMBOL_GPL vmlinux 0x5e99209d devlink_flash_update_status_notify +EXPORT_SYMBOL_GPL vmlinux 0x5e9f1285 snd_soc_dai_set_sysclk +EXPORT_SYMBOL_GPL vmlinux 0x5ea0caf5 crypto_unregister_aead +EXPORT_SYMBOL_GPL vmlinux 0x5ea1f0e5 inet_ctl_sock_create +EXPORT_SYMBOL_GPL vmlinux 0x5eab5c5c dev_attr_sw_activity 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 0x5eba0dda inode_sb_list_add EXPORT_SYMBOL_GPL vmlinux 0x5ec2319a mtk_mutex_unprepare EXPORT_SYMBOL_GPL vmlinux 0x5ec62549 ata_dev_classify -EXPORT_SYMBOL_GPL vmlinux 0x5ef0a3ee uart_handle_dcd_change -EXPORT_SYMBOL_GPL vmlinux 0x5ef3a7c6 dev_pm_opp_get_required_pstate -EXPORT_SYMBOL_GPL vmlinux 0x5f2a53f7 devm_regmap_field_alloc -EXPORT_SYMBOL_GPL vmlinux 0x5f50b961 pwm_request_from_chip -EXPORT_SYMBOL_GPL vmlinux 0x5f6b3220 fib_new_table +EXPORT_SYMBOL_GPL vmlinux 0x5eda1b55 dev_coredumpv +EXPORT_SYMBOL_GPL vmlinux 0x5ee375da crypto_unregister_ahash +EXPORT_SYMBOL_GPL vmlinux 0x5eeda4af sdhci_cleanup_host +EXPORT_SYMBOL_GPL vmlinux 0x5ef2f85b mnt_want_write_file +EXPORT_SYMBOL_GPL vmlinux 0x5efd924c __reset_control_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x5f04110e platform_msi_domain_alloc_irqs +EXPORT_SYMBOL_GPL vmlinux 0x5f0ceb61 ahci_handle_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x5f0ed01e usb_initialize_gadget +EXPORT_SYMBOL_GPL vmlinux 0x5f39a985 exportfs_decode_fh +EXPORT_SYMBOL_GPL vmlinux 0x5f5b843a splice_to_pipe +EXPORT_SYMBOL_GPL vmlinux 0x5f63467e __fscrypt_inode_uses_inline_crypto EXPORT_SYMBOL_GPL vmlinux 0x5f6f1e9e dax_get_private -EXPORT_SYMBOL_GPL vmlinux 0x5f7661a8 dev_pm_opp_sync_regulators -EXPORT_SYMBOL_GPL vmlinux 0x5f8d2008 fwnode_property_match_string -EXPORT_SYMBOL_GPL vmlinux 0x5f9a6f12 otg_ulpi_create +EXPORT_SYMBOL_GPL vmlinux 0x5f755388 regulator_map_voltage_pickable_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x5f815309 usb_set_device_state +EXPORT_SYMBOL_GPL vmlinux 0x5f850cd1 rio_release_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0x5f8994d5 dma_can_mmap +EXPORT_SYMBOL_GPL vmlinux 0x5f8fca41 regulator_get_voltage_sel_pickable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x5fa51d92 cpufreq_driver_target EXPORT_SYMBOL_GPL vmlinux 0x5fa625ed mpi_ec_mul_point -EXPORT_SYMBOL_GPL vmlinux 0x5faaf770 devm_tegra_memory_controller_get -EXPORT_SYMBOL_GPL vmlinux 0x5fb59596 security_path_rmdir -EXPORT_SYMBOL_GPL vmlinux 0x5fb88906 dma_run_dependencies -EXPORT_SYMBOL_GPL vmlinux 0x5fb97def devlink_trap_report -EXPORT_SYMBOL_GPL vmlinux 0x5fc714f3 of_pci_dma_range_parser_init -EXPORT_SYMBOL_GPL vmlinux 0x5fcb6912 ata_qc_get_active -EXPORT_SYMBOL_GPL vmlinux 0x5fd652a3 desc_to_gpio -EXPORT_SYMBOL_GPL vmlinux 0x5fdfcec6 reset_simple_ops +EXPORT_SYMBOL_GPL vmlinux 0x5fb9b5e4 fsverity_cleanup_inode +EXPORT_SYMBOL_GPL vmlinux 0x5fbd5454 hisi_reset_init EXPORT_SYMBOL_GPL vmlinux 0x5fe12e23 key_type_trusted -EXPORT_SYMBOL_GPL vmlinux 0x5ff5e247 kstrdup_quotable_file +EXPORT_SYMBOL_GPL vmlinux 0x5fe75b52 led_classdev_notify_brightness_hw_changed +EXPORT_SYMBOL_GPL vmlinux 0x5ff6df31 sysfs_unmerge_group EXPORT_SYMBOL_GPL vmlinux 0x5ffe9aa7 __tracepoint_fib6_table_lookup -EXPORT_SYMBOL_GPL vmlinux 0x60054daf crypto_stats_kpp_compute_shared_secret -EXPORT_SYMBOL_GPL vmlinux 0x6008f03d devm_of_platform_populate +EXPORT_SYMBOL_GPL vmlinux 0x6004cf89 pcie_bus_configure_settings EXPORT_SYMBOL_GPL vmlinux 0x60091316 clk_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x6010a331 dm_internal_suspend_fast -EXPORT_SYMBOL_GPL vmlinux 0x601f55bb extcon_get_edev_name -EXPORT_SYMBOL_GPL vmlinux 0x60203a11 uprobe_unregister -EXPORT_SYMBOL_GPL vmlinux 0x6022e38f snd_soc_dai_digital_mute -EXPORT_SYMBOL_GPL vmlinux 0x60508394 fuse_send_init +EXPORT_SYMBOL_GPL vmlinux 0x602e2237 kthread_flush_work +EXPORT_SYMBOL_GPL vmlinux 0x60310a9e snd_soc_unregister_card +EXPORT_SYMBOL_GPL vmlinux 0x603b2c5f pm_runtime_set_memalloc_noio +EXPORT_SYMBOL_GPL vmlinux 0x604257b2 perf_trace_run_bpf_submit +EXPORT_SYMBOL_GPL vmlinux 0x6047c56d snd_soc_dapm_new_widgets EXPORT_SYMBOL_GPL vmlinux 0x60606431 kernel_read_file_from_path_initns EXPORT_SYMBOL_GPL vmlinux 0x60671345 software_node_register_nodes -EXPORT_SYMBOL_GPL vmlinux 0x60683030 of_pci_range_parser_one EXPORT_SYMBOL_GPL vmlinux 0x6075d0c7 omap_tll_init -EXPORT_SYMBOL_GPL vmlinux 0x60770ac0 devm_hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6078e13a __rio_local_write_config_32 EXPORT_SYMBOL_GPL vmlinux 0x607c4683 devlink_info_version_fixed_put -EXPORT_SYMBOL_GPL vmlinux 0x60839d7e usb_hcd_resume_root_hub -EXPORT_SYMBOL_GPL vmlinux 0x6088afae pci_user_write_config_word -EXPORT_SYMBOL_GPL vmlinux 0x608eefa6 ip_route_output_flow +EXPORT_SYMBOL_GPL vmlinux 0x607ffb45 dma_run_dependencies +EXPORT_SYMBOL_GPL vmlinux 0x608f456c blk_set_pm_only EXPORT_SYMBOL_GPL vmlinux 0x6091797f synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0x609a135f ndo_dflt_bridge_getlink +EXPORT_SYMBOL_GPL vmlinux 0x6091e7da blk_ksm_is_superset +EXPORT_SYMBOL_GPL vmlinux 0x6092f931 sfp_add_phy EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier -EXPORT_SYMBOL_GPL vmlinux 0x60a9cffb event_triggers_call -EXPORT_SYMBOL_GPL vmlinux 0x60bcacb6 pci_ecam_map_bus -EXPORT_SYMBOL_GPL vmlinux 0x60c5c96f iommu_dev_disable_feature -EXPORT_SYMBOL_GPL vmlinux 0x60cda6bb snd_soc_dapm_add_routes +EXPORT_SYMBOL_GPL vmlinux 0x60a4cefa sched_trace_rq_nr_running EXPORT_SYMBOL_GPL vmlinux 0x60d01740 srcu_init_notifier_head -EXPORT_SYMBOL_GPL vmlinux 0x60d81cb5 fsstack_copy_inode_size -EXPORT_SYMBOL_GPL vmlinux 0x60e5454d dbs_update -EXPORT_SYMBOL_GPL vmlinux 0x60e91e01 ata_cable_unknown -EXPORT_SYMBOL_GPL vmlinux 0x60ea0861 devm_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x60ebc4ff scsi_host_unblock EXPORT_SYMBOL_GPL vmlinux 0x60ebc96f ring_buffer_read_prepare -EXPORT_SYMBOL_GPL vmlinux 0x60f02a03 snd_soc_info_enum_double -EXPORT_SYMBOL_GPL vmlinux 0x61085ea4 mtd_get_fact_prot_info -EXPORT_SYMBOL_GPL vmlinux 0x611bf2c1 of_detach_node +EXPORT_SYMBOL_GPL vmlinux 0x6103259c snd_soc_of_parse_card_name +EXPORT_SYMBOL_GPL vmlinux 0x610d5ffb serial8250_do_set_ldisc +EXPORT_SYMBOL_GPL vmlinux 0x6112cc4f stmpe_reg_read EXPORT_SYMBOL_GPL vmlinux 0x6129fb93 sfp_remove_phy EXPORT_SYMBOL_GPL vmlinux 0x612bfd89 errno_to_blk_status -EXPORT_SYMBOL_GPL vmlinux 0x613d3340 unix_peer_get -EXPORT_SYMBOL_GPL vmlinux 0x613d6e6f __clk_get_hw -EXPORT_SYMBOL_GPL vmlinux 0x61423507 vp_modern_queue_address +EXPORT_SYMBOL_GPL vmlinux 0x612c189c crypto_mod_get EXPORT_SYMBOL_GPL vmlinux 0x614782f1 usb_anchor_empty EXPORT_SYMBOL_GPL vmlinux 0x614adcb7 of_overlay_remove_all -EXPORT_SYMBOL_GPL vmlinux 0x615921c3 power_supply_am_i_supplied +EXPORT_SYMBOL_GPL vmlinux 0x614bbf82 __devm_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x614ca1f6 debugfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x614f7f96 dw_pcie_ep_init_notify +EXPORT_SYMBOL_GPL vmlinux 0x6159b04c pm_generic_resume EXPORT_SYMBOL_GPL vmlinux 0x615beeb5 __cpuhp_state_add_instance -EXPORT_SYMBOL_GPL vmlinux 0x617c1e71 gpiochip_add_pin_range +EXPORT_SYMBOL_GPL vmlinux 0x6173d864 blk_ksm_init_passthrough EXPORT_SYMBOL_GPL vmlinux 0x6181e79f timerqueue_add -EXPORT_SYMBOL_GPL vmlinux 0x6186b3cb crypto_unregister_acomp EXPORT_SYMBOL_GPL vmlinux 0x6198dfea __ring_buffer_alloc EXPORT_SYMBOL_GPL vmlinux 0x6199ad5d crypto_has_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x619a45ee perf_aux_output_flag -EXPORT_SYMBOL_GPL vmlinux 0x61a5c5f4 sdhci_pltfm_resume -EXPORT_SYMBOL_GPL vmlinux 0x61b31a7f pci_enable_ats +EXPORT_SYMBOL_GPL vmlinux 0x61a41001 dma_async_device_channel_register +EXPORT_SYMBOL_GPL vmlinux 0x61ab7e9f blk_rq_prep_clone +EXPORT_SYMBOL_GPL vmlinux 0x61b069e3 fscrypt_ioctl_get_key_status +EXPORT_SYMBOL_GPL vmlinux 0x61b1cb12 tty_perform_flush +EXPORT_SYMBOL_GPL vmlinux 0x61bd2d64 irq_chip_mask_parent +EXPORT_SYMBOL_GPL vmlinux 0x61c19464 snd_soc_bytes_info_ext EXPORT_SYMBOL_GPL vmlinux 0x61c1ca29 __SCK__tp_func_add_device_to_group -EXPORT_SYMBOL_GPL vmlinux 0x61c62470 fib_nexthop_info -EXPORT_SYMBOL_GPL vmlinux 0x61d0b579 od_register_powersave_bias_handler -EXPORT_SYMBOL_GPL vmlinux 0x61d0ece8 crypto_unregister_alg -EXPORT_SYMBOL_GPL vmlinux 0x61eaa536 rio_route_clr_table -EXPORT_SYMBOL_GPL vmlinux 0x61ef76cb sk_attach_filter -EXPORT_SYMBOL_GPL vmlinux 0x61f07ba2 regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x61c45271 devm_pm_opp_set_clkname +EXPORT_SYMBOL_GPL vmlinux 0x61de79ba pci_disable_rom +EXPORT_SYMBOL_GPL vmlinux 0x61e6a868 of_alias_get_id +EXPORT_SYMBOL_GPL vmlinux 0x61f4ebba wwan_register_ops EXPORT_SYMBOL_GPL vmlinux 0x61f67c92 phy_gbit_features_array -EXPORT_SYMBOL_GPL vmlinux 0x621129df reset_control_get_count -EXPORT_SYMBOL_GPL vmlinux 0x621799aa devm_of_clk_add_hw_provider +EXPORT_SYMBOL_GPL vmlinux 0x61fca903 snd_soc_component_test_bits +EXPORT_SYMBOL_GPL vmlinux 0x6202d3db exportfs_encode_inode_fh +EXPORT_SYMBOL_GPL vmlinux 0x620ddd4e dma_buf_map_attachment +EXPORT_SYMBOL_GPL vmlinux 0x6214b913 __clk_hw_register_divider +EXPORT_SYMBOL_GPL vmlinux 0x622388e7 trace_put_event_file EXPORT_SYMBOL_GPL vmlinux 0x622c7922 register_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6236a81d ip6_route_output_flags_noref EXPORT_SYMBOL_GPL vmlinux 0x62377a7b blk_io_schedule -EXPORT_SYMBOL_GPL vmlinux 0x62459fbc dma_request_chan_by_mask EXPORT_SYMBOL_GPL vmlinux 0x6246a629 synchronize_rcu_tasks_trace +EXPORT_SYMBOL_GPL vmlinux 0x624d5b2b ncsi_register_dev +EXPORT_SYMBOL_GPL vmlinux 0x624e521b dma_buf_move_notify EXPORT_SYMBOL_GPL vmlinux 0x6257dda7 clk_rate_exclusive_get -EXPORT_SYMBOL_GPL vmlinux 0x625973c3 fwnode_create_software_node EXPORT_SYMBOL_GPL vmlinux 0x6259d291 clk_restore_context -EXPORT_SYMBOL_GPL vmlinux 0x6259d452 __auxiliary_device_add -EXPORT_SYMBOL_GPL vmlinux 0x62641c20 tty_prepare_flip_string -EXPORT_SYMBOL_GPL vmlinux 0x626ad51d blk_queue_flag_test_and_set -EXPORT_SYMBOL_GPL vmlinux 0x6279e76d fib_add_nexthop -EXPORT_SYMBOL_GPL vmlinux 0x6282058c pinctrl_generic_remove_group -EXPORT_SYMBOL_GPL vmlinux 0x6287c71a tcp_twsk_unique -EXPORT_SYMBOL_GPL vmlinux 0x62b7386c i2c_dw_prepare_clk +EXPORT_SYMBOL_GPL vmlinux 0x625ba8e1 mtd_read_oob +EXPORT_SYMBOL_GPL vmlinux 0x626207ed hwspin_lock_get_id +EXPORT_SYMBOL_GPL vmlinux 0x6263940f serdev_device_wait_until_sent +EXPORT_SYMBOL_GPL vmlinux 0x626a7cb6 pci_epc_destroy +EXPORT_SYMBOL_GPL vmlinux 0x627fb1a8 regmap_read +EXPORT_SYMBOL_GPL vmlinux 0x62956aa9 usb_deregister_dev EXPORT_SYMBOL_GPL vmlinux 0x62bb09bf clocks_calc_mult_shift -EXPORT_SYMBOL_GPL vmlinux 0x62bbcf0d snd_soc_dai_compr_trigger -EXPORT_SYMBOL_GPL vmlinux 0x62be4b6e msg_zerocopy_realloc -EXPORT_SYMBOL_GPL vmlinux 0x62c9568e sk_msg_zerocopy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0x62c65723 transport_configure_device +EXPORT_SYMBOL_GPL vmlinux 0x62c831c8 snd_dmaengine_pcm_pointer EXPORT_SYMBOL_GPL vmlinux 0x62d0e2a6 __wake_up_locked -EXPORT_SYMBOL_GPL vmlinux 0x62d37d0a devm_of_phy_provider_unregister -EXPORT_SYMBOL_GPL vmlinux 0x62db9fa7 devm_tegra_core_dev_init_opp_table -EXPORT_SYMBOL_GPL vmlinux 0x62e9b834 ata_eh_freeze_port -EXPORT_SYMBOL_GPL vmlinux 0x62ecedc0 skb_complete_tx_timestamp -EXPORT_SYMBOL_GPL vmlinux 0x62f51472 sysfs_file_change_owner -EXPORT_SYMBOL_GPL vmlinux 0x62fbeffc ata_host_alloc -EXPORT_SYMBOL_GPL vmlinux 0x62fc8ecf sdhci_reset -EXPORT_SYMBOL_GPL vmlinux 0x63055a10 fsnotify_destroy_mark -EXPORT_SYMBOL_GPL vmlinux 0x63075425 device_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x62d1f87b usb_choose_configuration +EXPORT_SYMBOL_GPL vmlinux 0x62d6715a rt_mutex_lock_interruptible +EXPORT_SYMBOL_GPL vmlinux 0x62e16de1 sdio_writew +EXPORT_SYMBOL_GPL vmlinux 0x62e61dfd filemap_range_needs_writeback +EXPORT_SYMBOL_GPL vmlinux 0x62ec51fd devm_clk_bulk_get EXPORT_SYMBOL_GPL vmlinux 0x63090722 trace_seq_vprintf EXPORT_SYMBOL_GPL vmlinux 0x63150e06 clk_get_parent -EXPORT_SYMBOL_GPL vmlinux 0x63188ae9 file_ra_state_init EXPORT_SYMBOL_GPL vmlinux 0x63197685 s2idle_wake -EXPORT_SYMBOL_GPL vmlinux 0x631b0c4d icc_put -EXPORT_SYMBOL_GPL vmlinux 0x631f86b5 crypto_unregister_scomp -EXPORT_SYMBOL_GPL vmlinux 0x633bf734 gpiochip_line_is_persistent +EXPORT_SYMBOL_GPL vmlinux 0x632458b7 pci_generic_config_write EXPORT_SYMBOL_GPL vmlinux 0x633cb2c6 register_kprobe -EXPORT_SYMBOL_GPL vmlinux 0x63459e1c __class_register -EXPORT_SYMBOL_GPL vmlinux 0x634b787b rdev_get_regmap EXPORT_SYMBOL_GPL vmlinux 0x634b9d42 __SCK__tp_func_block_unplug -EXPORT_SYMBOL_GPL vmlinux 0x63792bc8 pci_epc_unmap_addr +EXPORT_SYMBOL_GPL vmlinux 0x635596e8 percpu_up_write +EXPORT_SYMBOL_GPL vmlinux 0x637dbca4 __fscrypt_prepare_rename +EXPORT_SYMBOL_GPL vmlinux 0x637eccd7 fuse_conn_destroy +EXPORT_SYMBOL_GPL vmlinux 0x63843fd4 efivar_entry_get EXPORT_SYMBOL_GPL vmlinux 0x638a85b3 nvmem_add_cell_table -EXPORT_SYMBOL_GPL vmlinux 0x63977f69 kthread_data -EXPORT_SYMBOL_GPL vmlinux 0x639a2001 snd_soc_dapm_put_enum_double +EXPORT_SYMBOL_GPL vmlinux 0x6395a6a4 fuse_abort_conn +EXPORT_SYMBOL_GPL vmlinux 0x63a86c88 devlink_dpipe_match_put EXPORT_SYMBOL_GPL vmlinux 0x63adbf92 encode_rs8 +EXPORT_SYMBOL_GPL vmlinux 0x63b9243b iommu_device_sysfs_add EXPORT_SYMBOL_GPL vmlinux 0x63c08029 clk_bulk_unprepare -EXPORT_SYMBOL_GPL vmlinux 0x63d6a00a lp8788_write_byte -EXPORT_SYMBOL_GPL vmlinux 0x63eb1f92 pci_ioremap_bar -EXPORT_SYMBOL_GPL vmlinux 0x63fba5d3 tps65912_device_exit -EXPORT_SYMBOL_GPL vmlinux 0x640dcef9 sdhci_suspend_host -EXPORT_SYMBOL_GPL vmlinux 0x6424cc1a mmu_notifier_range_update_to_read_only +EXPORT_SYMBOL_GPL vmlinux 0x63e0886b device_for_each_child_reverse +EXPORT_SYMBOL_GPL vmlinux 0x63fcc9fc of_genpd_add_provider_simple +EXPORT_SYMBOL_GPL vmlinux 0x63ff2812 raw_seq_start +EXPORT_SYMBOL_GPL vmlinux 0x640dce53 spi_split_transfers_maxsize EXPORT_SYMBOL_GPL vmlinux 0x64256424 visitor32 -EXPORT_SYMBOL_GPL vmlinux 0x642903ec phy_configure +EXPORT_SYMBOL_GPL vmlinux 0x642731d4 store_sampling_rate EXPORT_SYMBOL_GPL vmlinux 0x64334fff kernel_read_file_from_fd -EXPORT_SYMBOL_GPL vmlinux 0x643932f0 device_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0x6441276d dev_attr_em_message_type +EXPORT_SYMBOL_GPL vmlinux 0x643aa249 dst_blackhole_redirect +EXPORT_SYMBOL_GPL vmlinux 0x643df6dd class_compat_remove_link +EXPORT_SYMBOL_GPL vmlinux 0x643f7e72 bpfilter_umh_cleanup EXPORT_SYMBOL_GPL vmlinux 0x644bfdcf trace_print_bitmask_seq -EXPORT_SYMBOL_GPL vmlinux 0x646af85b usb_create_shared_hcd +EXPORT_SYMBOL_GPL vmlinux 0x6455629b dpm_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x645f5b6e devm_regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x646090c3 snd_soc_dapm_ignore_suspend +EXPORT_SYMBOL_GPL vmlinux 0x6462f7a8 fuse_sync_release +EXPORT_SYMBOL_GPL vmlinux 0x64676af6 gpiod_get_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0x646d87a2 mtk_pinconf_bias_set_combo EXPORT_SYMBOL_GPL vmlinux 0x647537f3 pl320_ipc_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x64778cb6 snd_soc_component_compr_copy -EXPORT_SYMBOL_GPL vmlinux 0x647e6653 register_mtd_blktrans -EXPORT_SYMBOL_GPL vmlinux 0x647eb7f9 gpiod_to_chip -EXPORT_SYMBOL_GPL vmlinux 0x6485ed40 mtk_pinconf_bias_disable_get_rev1 -EXPORT_SYMBOL_GPL vmlinux 0x6489ade4 udp_cmsg_send -EXPORT_SYMBOL_GPL vmlinux 0x648b9e76 __vring_new_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0x648dd12f bsg_job_get -EXPORT_SYMBOL_GPL vmlinux 0x64906e67 devm_gpiod_get_from_of_node +EXPORT_SYMBOL_GPL vmlinux 0x648deed4 icc_sync_state EXPORT_SYMBOL_GPL vmlinux 0x64925270 __dax_synchronous -EXPORT_SYMBOL_GPL vmlinux 0x64931911 led_stop_software_blink EXPORT_SYMBOL_GPL vmlinux 0x6493a2df rht_bucket_nested -EXPORT_SYMBOL_GPL vmlinux 0x6496d61c mmc_sanitize +EXPORT_SYMBOL_GPL vmlinux 0x6493d65b scsi_host_busy_iter EXPORT_SYMBOL_GPL vmlinux 0x6499ca92 copy_from_user_nofault -EXPORT_SYMBOL_GPL vmlinux 0x64a0287e i2c_dw_adjust_bus_speed EXPORT_SYMBOL_GPL vmlinux 0x64a2c7e7 meson_clk_mpll_ro_ops EXPORT_SYMBOL_GPL vmlinux 0x64c07d32 btree_remove -EXPORT_SYMBOL_GPL vmlinux 0x64c49732 tun_get_socket -EXPORT_SYMBOL_GPL vmlinux 0x64c540b2 udp_destruct_sock EXPORT_SYMBOL_GPL vmlinux 0x64cdf082 xas_load -EXPORT_SYMBOL_GPL vmlinux 0x64d7e6b6 irq_domain_pop_irq -EXPORT_SYMBOL_GPL vmlinux 0x64db259f filemap_read -EXPORT_SYMBOL_GPL vmlinux 0x64e164e8 __traceiter_devlink_hwmsg EXPORT_SYMBOL_GPL vmlinux 0x64e27c4f synth_event_delete -EXPORT_SYMBOL_GPL vmlinux 0x64eb04f3 trace_event_raw_init -EXPORT_SYMBOL_GPL vmlinux 0x64fc882e usb_gen_phy_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x64fff652 sdio_enable_func -EXPORT_SYMBOL_GPL vmlinux 0x650171ea usb_put_dev -EXPORT_SYMBOL_GPL vmlinux 0x6516bf4e scmi_protocol_register +EXPORT_SYMBOL_GPL vmlinux 0x64e2abf2 i2c_new_ancillary_device +EXPORT_SYMBOL_GPL vmlinux 0x64f00ad1 xdp_attachment_setup +EXPORT_SYMBOL_GPL vmlinux 0x64f1d2d2 bpf_map_inc_with_uref +EXPORT_SYMBOL_GPL vmlinux 0x64f8eea6 bio_alloc_kiocb EXPORT_SYMBOL_GPL vmlinux 0x651ee67b srcu_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0x6521768a fsverity_ioctl_enable +EXPORT_SYMBOL_GPL vmlinux 0x65229b8f iomap_finish_ioends EXPORT_SYMBOL_GPL vmlinux 0x65284995 efi_capsule_update -EXPORT_SYMBOL_GPL vmlinux 0x65304f93 usb_role_switch_get EXPORT_SYMBOL_GPL vmlinux 0x6531a37f mpi_add -EXPORT_SYMBOL_GPL vmlinux 0x653556d4 meson8_aobus_parse_dt_extra -EXPORT_SYMBOL_GPL vmlinux 0x654bcf5a dma_resv_get_fences +EXPORT_SYMBOL_GPL vmlinux 0x65439c0a rdev_clear_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x65496d72 serial8250_release_dma +EXPORT_SYMBOL_GPL vmlinux 0x6549d2be dma_async_device_channel_unregister EXPORT_SYMBOL_GPL vmlinux 0x65537437 freezer_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x6555a466 __clk_hw_register_divider -EXPORT_SYMBOL_GPL vmlinux 0x656916f6 crypto_shash_final -EXPORT_SYMBOL_GPL vmlinux 0x65718827 pwm_capture -EXPORT_SYMBOL_GPL vmlinux 0x658e05d8 nand_ecc_tweak_req -EXPORT_SYMBOL_GPL vmlinux 0x65bb7eda inode_dax +EXPORT_SYMBOL_GPL vmlinux 0x6556ed37 dev_coredumpm +EXPORT_SYMBOL_GPL vmlinux 0x655cb6c3 snd_soc_put_xr_sx +EXPORT_SYMBOL_GPL vmlinux 0x6573d033 clk_hw_unregister +EXPORT_SYMBOL_GPL vmlinux 0x65908777 regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0x659940e0 alloc_skb_for_msg +EXPORT_SYMBOL_GPL vmlinux 0x65a5c75d class_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x65b3e8f8 blk_mq_freeze_queue_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x65cbdb55 sk_msg_free_partial +EXPORT_SYMBOL_GPL vmlinux 0x65cc13cb omap_iommu_domain_activate EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers -EXPORT_SYMBOL_GPL vmlinux 0x65cd93d1 __traceiter_rpm_suspend -EXPORT_SYMBOL_GPL vmlinux 0x65d6661e regulator_map_voltage_iterate -EXPORT_SYMBOL_GPL vmlinux 0x65dacee2 pci_d3cold_disable +EXPORT_SYMBOL_GPL vmlinux 0x65cf7a4b bpf_prog_add +EXPORT_SYMBOL_GPL vmlinux 0x65d470c1 snd_soc_find_dai +EXPORT_SYMBOL_GPL vmlinux 0x65db0eba amba_device_alloc EXPORT_SYMBOL_GPL vmlinux 0x65def01d mpi_read_raw_from_sgl -EXPORT_SYMBOL_GPL vmlinux 0x65f904d5 phy_select_page -EXPORT_SYMBOL_GPL vmlinux 0x660024fb __traceiter_devlink_trap_report -EXPORT_SYMBOL_GPL vmlinux 0x66014300 ata_pci_sff_activate_host -EXPORT_SYMBOL_GPL vmlinux 0x660e58f6 snd_soc_component_nc_pin -EXPORT_SYMBOL_GPL vmlinux 0x66114eb1 usb_autopm_put_interface_no_suspend +EXPORT_SYMBOL_GPL vmlinux 0x65fbd5a5 bpf_trace_run9 +EXPORT_SYMBOL_GPL vmlinux 0x66075970 cpts_register +EXPORT_SYMBOL_GPL vmlinux 0x66075dc8 __rio_local_write_config_8 EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol +EXPORT_SYMBOL_GPL vmlinux 0x661ef982 usb_store_new_id +EXPORT_SYMBOL_GPL vmlinux 0x66253734 pci_find_ht_capability EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity +EXPORT_SYMBOL_GPL vmlinux 0x663b56b5 usb_enable_autosuspend EXPORT_SYMBOL_GPL vmlinux 0x663bb448 devlink_fmsg_obj_nest_end -EXPORT_SYMBOL_GPL vmlinux 0x665082a2 regulator_map_voltage_linear -EXPORT_SYMBOL_GPL vmlinux 0x66597c41 irq_domain_create_legacy +EXPORT_SYMBOL_GPL vmlinux 0x664e3ab2 pm_clk_init +EXPORT_SYMBOL_GPL vmlinux 0x664f0220 devfreq_event_add_edev EXPORT_SYMBOL_GPL vmlinux 0x665e92a0 clk_set_duty_cycle -EXPORT_SYMBOL_GPL vmlinux 0x665ffd3f pci_epf_bind -EXPORT_SYMBOL_GPL vmlinux 0x6666740d stmpe_block_read -EXPORT_SYMBOL_GPL vmlinux 0x6666e2c1 perf_event_addr_filters_sync -EXPORT_SYMBOL_GPL vmlinux 0x6667db60 snd_dmaengine_pcm_open +EXPORT_SYMBOL_GPL vmlinux 0x66649b4a md_rdev_clear +EXPORT_SYMBOL_GPL vmlinux 0x666cfb5a bpf_sk_storage_diag_put +EXPORT_SYMBOL_GPL vmlinux 0x668098a4 tty_ldisc_receive_buf EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x668b000e __clk_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0x668946df phy_package_leave +EXPORT_SYMBOL_GPL vmlinux 0x6694ce83 devm_regmap_add_irq_chip_fwnode EXPORT_SYMBOL_GPL vmlinux 0x669594ad musb_clearw EXPORT_SYMBOL_GPL vmlinux 0x66b26b2b clk_hw_unregister_divider -EXPORT_SYMBOL_GPL vmlinux 0x66b6a4ad nf_ip_route EXPORT_SYMBOL_GPL vmlinux 0x66b97421 sfp_link_up -EXPORT_SYMBOL_GPL vmlinux 0x66d21845 follow_pte -EXPORT_SYMBOL_GPL vmlinux 0x66d6a429 ehci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x66c118be crypto_ahash_finup EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr -EXPORT_SYMBOL_GPL vmlinux 0x66ea16ec lwtunnel_output -EXPORT_SYMBOL_GPL vmlinux 0x66ed7568 sysfs_unbreak_active_protection -EXPORT_SYMBOL_GPL vmlinux 0x66f205d2 __list_lru_init -EXPORT_SYMBOL_GPL vmlinux 0x66f9f0dd devlink_param_publish -EXPORT_SYMBOL_GPL vmlinux 0x66fbeeca inet_hash -EXPORT_SYMBOL_GPL vmlinux 0x66fd57bf iommu_device_unlink +EXPORT_SYMBOL_GPL vmlinux 0x66ea9b98 of_pm_clk_add_clks +EXPORT_SYMBOL_GPL vmlinux 0x66fb9444 sk_msg_free +EXPORT_SYMBOL_GPL vmlinux 0x66fc53d1 dm_per_bio_data +EXPORT_SYMBOL_GPL vmlinux 0x66feec62 iommu_dev_enable_feature +EXPORT_SYMBOL_GPL vmlinux 0x67009703 nanddev_bbt_init EXPORT_SYMBOL_GPL vmlinux 0x6703903b register_ftrace_function -EXPORT_SYMBOL_GPL vmlinux 0x67078483 dev_pm_enable_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0x6718e37d meson_a1_parse_dt_extra -EXPORT_SYMBOL_GPL vmlinux 0x672fae81 of_platform_depopulate +EXPORT_SYMBOL_GPL vmlinux 0x671938de pinctrl_find_gpio_range_from_pin_nolock EXPORT_SYMBOL_GPL vmlinux 0x6735d56e tcp_ca_get_name_by_key EXPORT_SYMBOL_GPL vmlinux 0x67429c91 __SCK__tp_func_block_bio_remap -EXPORT_SYMBOL_GPL vmlinux 0x674bfc4a sysfs_create_link_nowarn -EXPORT_SYMBOL_GPL vmlinux 0x674fdeec pci_disable_pcie_error_reporting -EXPORT_SYMBOL_GPL vmlinux 0x675011a4 ata_pci_sff_init_host -EXPORT_SYMBOL_GPL vmlinux 0x67777fe8 vp_modern_get_driver_features +EXPORT_SYMBOL_GPL vmlinux 0x67475c83 dax_inode +EXPORT_SYMBOL_GPL vmlinux 0x675315ae usb_match_one_id +EXPORT_SYMBOL_GPL vmlinux 0x6776a8a9 dev_pm_opp_find_freq_ceil +EXPORT_SYMBOL_GPL vmlinux 0x677f0047 vp_modern_set_status +EXPORT_SYMBOL_GPL vmlinux 0x677f53cb fsverity_prepare_setattr EXPORT_SYMBOL_GPL vmlinux 0x6781513c __wake_up_locked_key -EXPORT_SYMBOL_GPL vmlinux 0x678899e9 device_get_match_data -EXPORT_SYMBOL_GPL vmlinux 0x6788f900 netdev_walk_all_lower_dev EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits -EXPORT_SYMBOL_GPL vmlinux 0x6797ccf5 rockchip_clk_of_add_provider -EXPORT_SYMBOL_GPL vmlinux 0x67a3dcb1 fwnode_property_read_u8_array -EXPORT_SYMBOL_GPL vmlinux 0x67ca3d88 sysfs_remove_group -EXPORT_SYMBOL_GPL vmlinux 0x67cf1604 sysfs_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x679a9375 usb_get_maximum_ssp_rate +EXPORT_SYMBOL_GPL vmlinux 0x679c47ba fsverity_verify_bio +EXPORT_SYMBOL_GPL vmlinux 0x67a27595 udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x67a8b547 device_match_devt +EXPORT_SYMBOL_GPL vmlinux 0x67acc358 __fscrypt_prepare_lookup +EXPORT_SYMBOL_GPL vmlinux 0x67b28a3d synth_event_trace +EXPORT_SYMBOL_GPL vmlinux 0x67d8298d fuse_send_init EXPORT_SYMBOL_GPL vmlinux 0x67da9f7c sha512_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x67eaa104 put_device -EXPORT_SYMBOL_GPL vmlinux 0x67ebe0aa sata_link_resume -EXPORT_SYMBOL_GPL vmlinux 0x681341a1 devlink_region_create -EXPORT_SYMBOL_GPL vmlinux 0x682785b5 usb_find_alt_setting -EXPORT_SYMBOL_GPL vmlinux 0x682e15fd ata_host_put +EXPORT_SYMBOL_GPL vmlinux 0x67db756b power_supply_set_property +EXPORT_SYMBOL_GPL vmlinux 0x67e9d106 devlink_param_value_changed +EXPORT_SYMBOL_GPL vmlinux 0x67f900be dev_pm_qos_hide_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0x67ffcd84 ata_dev_next +EXPORT_SYMBOL_GPL vmlinux 0x680cd740 pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0x6817c627 rio_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x6817d142 devm_kfree +EXPORT_SYMBOL_GPL vmlinux 0x68206b4b vc_scrolldelta_helper +EXPORT_SYMBOL_GPL vmlinux 0x68260a69 snd_ctl_activate_id EXPORT_SYMBOL_GPL vmlinux 0x682ff057 ring_buffer_commit_overrun_cpu -EXPORT_SYMBOL_GPL vmlinux 0x685483ae decrypt_blob -EXPORT_SYMBOL_GPL vmlinux 0x685d16ad snd_card_ref -EXPORT_SYMBOL_GPL vmlinux 0x685f07cb virtio_break_device -EXPORT_SYMBOL_GPL vmlinux 0x68670bc9 spi_controller_suspend +EXPORT_SYMBOL_GPL vmlinux 0x683941e5 perf_event_pause +EXPORT_SYMBOL_GPL vmlinux 0x683f96e0 dma_vunmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x684d8004 ahci_platform_enable_clks +EXPORT_SYMBOL_GPL vmlinux 0x685f7e8b pwm_capture +EXPORT_SYMBOL_GPL vmlinux 0x6868f980 da903x_unregister_notifier EXPORT_SYMBOL_GPL vmlinux 0x68758fda nvmem_cell_write EXPORT_SYMBOL_GPL vmlinux 0x687fca31 imx6q_cpuidle_fec_irqs_used -EXPORT_SYMBOL_GPL vmlinux 0x68855ad1 debugfs_create_file_unsafe -EXPORT_SYMBOL_GPL vmlinux 0x68915b72 debugfs_read_file_bool +EXPORT_SYMBOL_GPL vmlinux 0x68817d04 snd_card_rw_proc_new +EXPORT_SYMBOL_GPL vmlinux 0x6889c441 pcie_update_link_speed +EXPORT_SYMBOL_GPL vmlinux 0x689042ef ethnl_cable_test_fault_length EXPORT_SYMBOL_GPL vmlinux 0x68952493 rcu_note_context_switch -EXPORT_SYMBOL_GPL vmlinux 0x68a3d6ce iommu_sva_bind_device -EXPORT_SYMBOL_GPL vmlinux 0x68ac4d82 crypto_alloc_kpp -EXPORT_SYMBOL_GPL vmlinux 0x68c718e6 crypto_unregister_aeads -EXPORT_SYMBOL_GPL vmlinux 0x68d1b281 gov_attr_set_put -EXPORT_SYMBOL_GPL vmlinux 0x68dc27c4 handle_irq_desc -EXPORT_SYMBOL_GPL vmlinux 0x68f6968b clk_hw_get_rate -EXPORT_SYMBOL_GPL vmlinux 0x68ffb682 fat_getattr +EXPORT_SYMBOL_GPL vmlinux 0x68ae3c0e __cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0x68be8d74 handle_level_irq +EXPORT_SYMBOL_GPL vmlinux 0x68daf3e3 gpiochip_request_own_desc +EXPORT_SYMBOL_GPL vmlinux 0x68e7a42e virtqueue_detach_unused_buf +EXPORT_SYMBOL_GPL vmlinux 0x68ef7889 mtd_write_oob +EXPORT_SYMBOL_GPL vmlinux 0x68fe3282 devm_kstrdup EXPORT_SYMBOL_GPL vmlinux 0x690f585e phy_basic_ports_array -EXPORT_SYMBOL_GPL vmlinux 0x690f5a9d i2c_adapter_type +EXPORT_SYMBOL_GPL vmlinux 0x6911300f mbox_controller_register EXPORT_SYMBOL_GPL vmlinux 0x6913865a trace_clock_jiffies -EXPORT_SYMBOL_GPL vmlinux 0x691e04b5 vp_modern_remove +EXPORT_SYMBOL_GPL vmlinux 0x6917d052 ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0x69194661 sdhci_pltfm_clk_get_max_clock EXPORT_SYMBOL_GPL vmlinux 0x692098e2 list_lru_del EXPORT_SYMBOL_GPL vmlinux 0x692a4f08 idr_alloc -EXPORT_SYMBOL_GPL vmlinux 0x693d9d20 __skb_get_hash_symmetric +EXPORT_SYMBOL_GPL vmlinux 0x69342acd put_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x6940c39e mtk_pinconf_bias_get_rev1 EXPORT_SYMBOL_GPL vmlinux 0x6945725e mpi_read_raw_data -EXPORT_SYMBOL_GPL vmlinux 0x694a0f41 mmc_send_abort_tuning -EXPORT_SYMBOL_GPL vmlinux 0x694aa63f snd_devm_card_new -EXPORT_SYMBOL_GPL vmlinux 0x694d6093 skcipher_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x69472b84 wakeup_source_add +EXPORT_SYMBOL_GPL vmlinux 0x69486a81 tty_port_register_device_attr_serdev +EXPORT_SYMBOL_GPL vmlinux 0x69553bf6 ata_sas_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0x69557fe8 stmpe_block_write EXPORT_SYMBOL_GPL vmlinux 0x695bf5e9 hrtimer_cancel -EXPORT_SYMBOL_GPL vmlinux 0x69604a6c fscrypt_mergeable_bio_bh EXPORT_SYMBOL_GPL vmlinux 0x69637b2c __traceiter_powernv_throttle -EXPORT_SYMBOL_GPL vmlinux 0x69674e29 iomap_migrate_page EXPORT_SYMBOL_GPL vmlinux 0x696adc36 cleanup_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0x696b4611 sdhci_set_power_noreg EXPORT_SYMBOL_GPL vmlinux 0x696f2b63 of_changeset_init -EXPORT_SYMBOL_GPL vmlinux 0x69725ae9 pci_sriov_configure_simple -EXPORT_SYMBOL_GPL vmlinux 0x69729ad8 rtnl_get_net_ns_capable +EXPORT_SYMBOL_GPL vmlinux 0x697bed00 irq_create_mapping_affinity EXPORT_SYMBOL_GPL vmlinux 0x697c5d0d tracing_snapshot_alloc -EXPORT_SYMBOL_GPL vmlinux 0x698a73be pinctrl_put -EXPORT_SYMBOL_GPL vmlinux 0x698c3c09 scsi_dh_activate -EXPORT_SYMBOL_GPL vmlinux 0x6997a8f8 iomap_file_buffered_write -EXPORT_SYMBOL_GPL vmlinux 0x699d7b06 ata_wait_register -EXPORT_SYMBOL_GPL vmlinux 0x69ab48a1 i2c_add_numbered_adapter -EXPORT_SYMBOL_GPL vmlinux 0x69af4f07 ksm_madvise -EXPORT_SYMBOL_GPL vmlinux 0x69b58860 snd_soc_set_runtime_hwparams -EXPORT_SYMBOL_GPL vmlinux 0x69c5b71d rtc_class_close +EXPORT_SYMBOL_GPL vmlinux 0x69814fb7 inet_hash +EXPORT_SYMBOL_GPL vmlinux 0x69915dff tty_ldisc_ref +EXPORT_SYMBOL_GPL vmlinux 0x6999c045 __clk_hw_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x69bb3250 nanddev_ecc_engine_init EXPORT_SYMBOL_GPL vmlinux 0x69cf0632 mpi_fromstr -EXPORT_SYMBOL_GPL vmlinux 0x69e1a460 snd_soc_dapm_disable_pin_unlocked +EXPORT_SYMBOL_GPL vmlinux 0x69e06933 gpiochip_irqchip_irq_valid EXPORT_SYMBOL_GPL vmlinux 0x69e683de uuid_gen +EXPORT_SYMBOL_GPL vmlinux 0x69e6f596 of_get_pci_domain_nr +EXPORT_SYMBOL_GPL vmlinux 0x69e83605 mc146818_get_time +EXPORT_SYMBOL_GPL vmlinux 0x69eba718 sec_irq_init EXPORT_SYMBOL_GPL vmlinux 0x69ee2220 linear_range_get_selector_high -EXPORT_SYMBOL_GPL vmlinux 0x69f053c5 crypto_stats_get -EXPORT_SYMBOL_GPL vmlinux 0x6a001624 ip6_dst_lookup_flow -EXPORT_SYMBOL_GPL vmlinux 0x6a03fb72 bio_add_zone_append_page +EXPORT_SYMBOL_GPL vmlinux 0x69ee3f95 iommu_fwspec_free +EXPORT_SYMBOL_GPL vmlinux 0x69f396fb device_get_dma_attr EXPORT_SYMBOL_GPL vmlinux 0x6a05b65b fb_videomode_from_videomode +EXPORT_SYMBOL_GPL vmlinux 0x6a113179 xfrm_output +EXPORT_SYMBOL_GPL vmlinux 0x6a1560ab of_reconfig_get_state_change +EXPORT_SYMBOL_GPL vmlinux 0x6a15f7aa __of_reset_control_get EXPORT_SYMBOL_GPL vmlinux 0x6a1733eb iommu_group_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6a1b904a dev_pm_opp_get_opp_count -EXPORT_SYMBOL_GPL vmlinux 0x6a29a2d4 ata_sas_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0x6a1c9e7c crypto_shash_update +EXPORT_SYMBOL_GPL vmlinux 0x6a239c42 usb_sg_cancel EXPORT_SYMBOL_GPL vmlinux 0x6a29e5d2 irq_force_affinity +EXPORT_SYMBOL_GPL vmlinux 0x6a2b9c86 clk_hw_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0x6a39d12d devm_spi_mem_dirmap_create +EXPORT_SYMBOL_GPL vmlinux 0x6a41e502 phy_led_trigger_change_speed +EXPORT_SYMBOL_GPL vmlinux 0x6a426fa8 usb_phy_roothub_alloc EXPORT_SYMBOL_GPL vmlinux 0x6a460dc5 schedule_hrtimeout -EXPORT_SYMBOL_GPL vmlinux 0x6a4f13d6 snd_soc_dai_link_set_capabilities EXPORT_SYMBOL_GPL vmlinux 0x6a4f623b mmu_notifier_synchronize +EXPORT_SYMBOL_GPL vmlinux 0x6a52e6bd dma_request_chan +EXPORT_SYMBOL_GPL vmlinux 0x6a5aa710 blk_ksm_reprogram_all_keys +EXPORT_SYMBOL_GPL vmlinux 0x6a5c6f89 musb_interrupt EXPORT_SYMBOL_GPL vmlinux 0x6a5e2bde __cookie_v6_init_sequence -EXPORT_SYMBOL_GPL vmlinux 0x6a6b3685 __traceiter_fdb_delete -EXPORT_SYMBOL_GPL vmlinux 0x6a72990e ohci_restart -EXPORT_SYMBOL_GPL vmlinux 0x6a9b5474 __traceiter_neigh_update_done +EXPORT_SYMBOL_GPL vmlinux 0x6a826025 page_cache_sync_ra +EXPORT_SYMBOL_GPL vmlinux 0x6a934524 md_submit_discard_bio +EXPORT_SYMBOL_GPL vmlinux 0x6a969007 sdio_readw +EXPORT_SYMBOL_GPL vmlinux 0x6a9f1de2 blk_rq_err_bytes EXPORT_SYMBOL_GPL vmlinux 0x6aa5e412 gen_pool_avail EXPORT_SYMBOL_GPL vmlinux 0x6ab1c8bb xas_store -EXPORT_SYMBOL_GPL vmlinux 0x6ab26108 metadata_dst_free_percpu -EXPORT_SYMBOL_GPL vmlinux 0x6ab293fb extcon_set_property_sync -EXPORT_SYMBOL_GPL vmlinux 0x6ac0b427 blk_mq_pci_map_queues -EXPORT_SYMBOL_GPL vmlinux 0x6adacfb7 sysfs_break_active_protection -EXPORT_SYMBOL_GPL vmlinux 0x6adf5407 cpufreq_dbs_governor_limits -EXPORT_SYMBOL_GPL vmlinux 0x6ae3dcc4 fat_truncate_time -EXPORT_SYMBOL_GPL vmlinux 0x6ae54435 l3mdev_update_flow -EXPORT_SYMBOL_GPL vmlinux 0x6af15e18 bpf_trace_run8 +EXPORT_SYMBOL_GPL vmlinux 0x6ab42649 blk_queue_set_zoned +EXPORT_SYMBOL_GPL vmlinux 0x6ab45799 trace_event_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x6abd196b irq_find_matching_fwspec EXPORT_SYMBOL_GPL vmlinux 0x6af8c6dc musb_writel -EXPORT_SYMBOL_GPL vmlinux 0x6b0c8617 usb_phy_gen_create_phy -EXPORT_SYMBOL_GPL vmlinux 0x6b13a8b3 device_move +EXPORT_SYMBOL_GPL vmlinux 0x6b11861e mmu_interval_read_begin +EXPORT_SYMBOL_GPL vmlinux 0x6b14a950 __blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0x6b17c69a devm_nvmem_device_get EXPORT_SYMBOL_GPL vmlinux 0x6b198c77 led_colors +EXPORT_SYMBOL_GPL vmlinux 0x6b1a0093 sdev_evt_send_simple +EXPORT_SYMBOL_GPL vmlinux 0x6b1b6f80 root_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6b2a17b4 sata_link_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x6b30cc37 pci_iov_virtfn_devfn EXPORT_SYMBOL_GPL vmlinux 0x6b334acc trace_seq_bitmask -EXPORT_SYMBOL_GPL vmlinux 0x6b389f07 __ndisc_fill_addr_option -EXPORT_SYMBOL_GPL vmlinux 0x6b3a7812 regcache_mark_dirty EXPORT_SYMBOL_GPL vmlinux 0x6b413c9b sfp_link_down -EXPORT_SYMBOL_GPL vmlinux 0x6b45c510 mmc_cmdq_disable EXPORT_SYMBOL_GPL vmlinux 0x6b47f8a4 hisi_clk_register_mux -EXPORT_SYMBOL_GPL vmlinux 0x6b4f9e59 icc_enable -EXPORT_SYMBOL_GPL vmlinux 0x6b5e3602 regulator_list_voltage -EXPORT_SYMBOL_GPL vmlinux 0x6b72bf5d pktgen_xfrm_outer_mode_output +EXPORT_SYMBOL_GPL vmlinux 0x6b57d34b kill_dev_dax +EXPORT_SYMBOL_GPL vmlinux 0x6b5daf0f kernel_read_file +EXPORT_SYMBOL_GPL vmlinux 0x6b6160b3 pm_generic_thaw_noirq +EXPORT_SYMBOL_GPL vmlinux 0x6b63a038 i2c_generic_scl_recovery +EXPORT_SYMBOL_GPL vmlinux 0x6b6a593b bpf_map_inc_not_zero EXPORT_SYMBOL_GPL vmlinux 0x6b81c38b power_supply_unreg_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6b8473fb ata_cable_40wire -EXPORT_SYMBOL_GPL vmlinux 0x6baccc1a snd_soc_dai_active -EXPORT_SYMBOL_GPL vmlinux 0x6baf0c80 usb_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x6b876d91 request_firmware_direct +EXPORT_SYMBOL_GPL vmlinux 0x6b889d02 __nf_ip6_route +EXPORT_SYMBOL_GPL vmlinux 0x6b8cdc19 ethtool_set_ethtool_phy_ops +EXPORT_SYMBOL_GPL vmlinux 0x6b98f35b platform_get_mem_or_io +EXPORT_SYMBOL_GPL vmlinux 0x6ba0aae5 of_dma_xlate_by_chan_id +EXPORT_SYMBOL_GPL vmlinux 0x6ba9d339 __kernel_write +EXPORT_SYMBOL_GPL vmlinux 0x6bab9321 cdrom_read_tocentry +EXPORT_SYMBOL_GPL vmlinux 0x6baf3014 fib6_new_table +EXPORT_SYMBOL_GPL vmlinux 0x6bbc8aab ahci_kick_engine +EXPORT_SYMBOL_GPL vmlinux 0x6bc27aa2 mmc_regulator_set_ocr +EXPORT_SYMBOL_GPL vmlinux 0x6bc6883b usb_hub_release_port EXPORT_SYMBOL_GPL vmlinux 0x6bcdedc0 mpi_point_init EXPORT_SYMBOL_GPL vmlinux 0x6bce93d8 list_lru_walk_node EXPORT_SYMBOL_GPL vmlinux 0x6bd1aa56 stack_trace_save -EXPORT_SYMBOL_GPL vmlinux 0x6bd4b2e6 transport_class_register -EXPORT_SYMBOL_GPL vmlinux 0x6bd78b0f gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x6bdc9664 irq_domain_xlate_onecell EXPORT_SYMBOL_GPL vmlinux 0x6bdd680c snd_pcm_fill_iec958_consumer_hw_params -EXPORT_SYMBOL_GPL vmlinux 0x6c17f87b __traceiter_xdp_exception -EXPORT_SYMBOL_GPL vmlinux 0x6c345e47 regulator_set_ramp_delay_regmap +EXPORT_SYMBOL_GPL vmlinux 0x6be20daa ping_init_sock +EXPORT_SYMBOL_GPL vmlinux 0x6be2c873 fuse_simple_background +EXPORT_SYMBOL_GPL vmlinux 0x6be83201 rio_register_mport +EXPORT_SYMBOL_GPL vmlinux 0x6bef485d trace_event_buffer_commit +EXPORT_SYMBOL_GPL vmlinux 0x6c120e54 usb_phy_set_charger_current +EXPORT_SYMBOL_GPL vmlinux 0x6c26a604 driver_find +EXPORT_SYMBOL_GPL vmlinux 0x6c286bc4 fuse_dev_alloc +EXPORT_SYMBOL_GPL vmlinux 0x6c2928f9 scsi_dh_set_params +EXPORT_SYMBOL_GPL vmlinux 0x6c3ebb49 iomap_seek_data EXPORT_SYMBOL_GPL vmlinux 0x6c3f70e0 guid_gen EXPORT_SYMBOL_GPL vmlinux 0x6c43b737 ata_sff_queue_delayed_work -EXPORT_SYMBOL_GPL vmlinux 0x6c4442a3 pinctrl_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x6c4b312e scmi_protocol_unregister EXPORT_SYMBOL_GPL vmlinux 0x6c4b6684 reset_control_assert -EXPORT_SYMBOL_GPL vmlinux 0x6c4c2903 sock_prot_inuse_add +EXPORT_SYMBOL_GPL vmlinux 0x6c4c8df7 wm831x_reg_read EXPORT_SYMBOL_GPL vmlinux 0x6c5ad0cd kmsg_dump_register -EXPORT_SYMBOL_GPL vmlinux 0x6c5b65ca mmc_poll_for_busy -EXPORT_SYMBOL_GPL vmlinux 0x6c7b1e19 regmap_field_update_bits_base -EXPORT_SYMBOL_GPL vmlinux 0x6c7f0f2e platform_irq_count -EXPORT_SYMBOL_GPL vmlinux 0x6c80d149 led_trigger_blink_oneshot +EXPORT_SYMBOL_GPL vmlinux 0x6c6e7863 param_set_uint_minmax +EXPORT_SYMBOL_GPL vmlinux 0x6c7b435f mc146818_does_rtc_work +EXPORT_SYMBOL_GPL vmlinux 0x6c8570b0 meson_pmx_get_groups +EXPORT_SYMBOL_GPL vmlinux 0x6c8710c1 netdev_walk_all_lower_dev_rcu +EXPORT_SYMBOL_GPL vmlinux 0x6c9334ec sched_trace_rq_cpu_capacity EXPORT_SYMBOL_GPL vmlinux 0x6c956075 __SCK__tp_func_devlink_hwerr -EXPORT_SYMBOL_GPL vmlinux 0x6c9af64c nand_wait_ready +EXPORT_SYMBOL_GPL vmlinux 0x6c9d8b3a dw_pcie_setup_rc +EXPORT_SYMBOL_GPL vmlinux 0x6ca2bb18 dev_pm_opp_remove_all_dynamic EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain -EXPORT_SYMBOL_GPL vmlinux 0x6ca63d3a pci_epc_set_msix -EXPORT_SYMBOL_GPL vmlinux 0x6cce1b90 ata_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0x6ca9dcfa rio_free_net +EXPORT_SYMBOL_GPL vmlinux 0x6cae30d5 xdp_rxq_info_unreg +EXPORT_SYMBOL_GPL vmlinux 0x6cb409c9 usb_urb_ep_type_check +EXPORT_SYMBOL_GPL vmlinux 0x6ccda6ab tty_release_struct +EXPORT_SYMBOL_GPL vmlinux 0x6ccf636a crypto_register_ahash EXPORT_SYMBOL_GPL vmlinux 0x6cd17e49 zs_pool_stats -EXPORT_SYMBOL_GPL vmlinux 0x6cd485e1 nanddev_cleanup EXPORT_SYMBOL_GPL vmlinux 0x6cd96910 __kmap_local_pfn_prot -EXPORT_SYMBOL_GPL vmlinux 0x6d014a57 strp_data_ready +EXPORT_SYMBOL_GPL vmlinux 0x6cf5261c regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6cfebb30 debugfs_create_x8 +EXPORT_SYMBOL_GPL vmlinux 0x6d001b79 __fl6_sock_lookup +EXPORT_SYMBOL_GPL vmlinux 0x6d00b302 efivars_kobject EXPORT_SYMBOL_GPL vmlinux 0x6d09843f copy_bpf_fprog_from_user EXPORT_SYMBOL_GPL vmlinux 0x6d0ae550 pinctrl_gpio_request -EXPORT_SYMBOL_GPL vmlinux 0x6d114818 lwtunnel_fill_encap -EXPORT_SYMBOL_GPL vmlinux 0x6d27b03a __raw_v4_lookup -EXPORT_SYMBOL_GPL vmlinux 0x6d2d0cc2 power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0x6d213886 fuse_request_end EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list +EXPORT_SYMBOL_GPL vmlinux 0x6d33e122 strp_done EXPORT_SYMBOL_GPL vmlinux 0x6d467b08 arm_smccc_1_1_get_conduit -EXPORT_SYMBOL_GPL vmlinux 0x6d5b093b ping_seq_start -EXPORT_SYMBOL_GPL vmlinux 0x6d62b8ad nand_select_target -EXPORT_SYMBOL_GPL vmlinux 0x6d6b947c spi_mem_dirmap_destroy +EXPORT_SYMBOL_GPL vmlinux 0x6d49af7f do_tcp_sendpages +EXPORT_SYMBOL_GPL vmlinux 0x6d4e1f4c do_splice_to +EXPORT_SYMBOL_GPL vmlinux 0x6d58e3b5 device_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0x6d5a8b1d devm_hwspin_lock_free +EXPORT_SYMBOL_GPL vmlinux 0x6d6540b4 bsg_job_put +EXPORT_SYMBOL_GPL vmlinux 0x6d66a148 ahci_sdev_attrs +EXPORT_SYMBOL_GPL vmlinux 0x6d69e065 tpm_chip_alloc EXPORT_SYMBOL_GPL vmlinux 0x6d6fec1f ktime_mono_to_any -EXPORT_SYMBOL_GPL vmlinux 0x6d7405d1 usb_wakeup_enabled_descendants EXPORT_SYMBOL_GPL vmlinux 0x6d7e951e rcu_exp_batches_completed -EXPORT_SYMBOL_GPL vmlinux 0x6d818108 sched_trace_rq_nr_running -EXPORT_SYMBOL_GPL vmlinux 0x6d8545e0 wakeup_sources_walk_next +EXPORT_SYMBOL_GPL vmlinux 0x6d7efe6c usb_debug_root +EXPORT_SYMBOL_GPL vmlinux 0x6d860dbe phy_modify EXPORT_SYMBOL_GPL vmlinux 0x6d8747a0 scatterwalk_ffwd -EXPORT_SYMBOL_GPL vmlinux 0x6dad099f of_reset_control_array_get -EXPORT_SYMBOL_GPL vmlinux 0x6db37bc2 md_account_bio -EXPORT_SYMBOL_GPL vmlinux 0x6db71a11 virtqueue_get_vring +EXPORT_SYMBOL_GPL vmlinux 0x6d9f3f71 seg6_do_srh_inline +EXPORT_SYMBOL_GPL vmlinux 0x6da5b875 uprobe_register +EXPORT_SYMBOL_GPL vmlinux 0x6da97737 tty_port_tty_hangup +EXPORT_SYMBOL_GPL vmlinux 0x6dad2234 pci_epc_set_msix +EXPORT_SYMBOL_GPL vmlinux 0x6dae9f8a wm831x_reg_write EXPORT_SYMBOL_GPL vmlinux 0x6dbaafd3 put_old_timespec32 -EXPORT_SYMBOL_GPL vmlinux 0x6dbcf727 regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6dbf9f0d snd_dmaengine_pcm_close +EXPORT_SYMBOL_GPL vmlinux 0x6dc1c46f serdev_device_write_flush EXPORT_SYMBOL_GPL vmlinux 0x6dc43f43 imx6q_cpuidle_fec_irqs_unused +EXPORT_SYMBOL_GPL vmlinux 0x6dcbeb63 dst_cache_get_ip4 EXPORT_SYMBOL_GPL vmlinux 0x6dd1b8a7 parse_OID EXPORT_SYMBOL_GPL vmlinux 0x6dd5680d sprint_symbol_build_id -EXPORT_SYMBOL_GPL vmlinux 0x6deeb3f3 phy_led_triggers_unregister -EXPORT_SYMBOL_GPL vmlinux 0x6deeca60 dw_pcie_upconfig_setup -EXPORT_SYMBOL_GPL vmlinux 0x6e09bce9 of_console_check +EXPORT_SYMBOL_GPL vmlinux 0x6de0e400 sk_msg_return_zero +EXPORT_SYMBOL_GPL vmlinux 0x6de82a38 security_inode_mkdir EXPORT_SYMBOL_GPL vmlinux 0x6e09d93d __SCK__tp_func_map -EXPORT_SYMBOL_GPL vmlinux 0x6e0c3d8a devm_devfreq_event_add_edev -EXPORT_SYMBOL_GPL vmlinux 0x6e129527 kern_mount -EXPORT_SYMBOL_GPL vmlinux 0x6e15b449 blk_mq_quiesce_queue_nowait -EXPORT_SYMBOL_GPL vmlinux 0x6e170655 mddev_unlock -EXPORT_SYMBOL_GPL vmlinux 0x6e2bf4d6 virtqueue_is_broken +EXPORT_SYMBOL_GPL vmlinux 0x6e191238 unregister_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x6e26ce6e of_clk_src_simple_get +EXPORT_SYMBOL_GPL vmlinux 0x6e2a1e65 netdev_walk_all_lower_dev +EXPORT_SYMBOL_GPL vmlinux 0x6e2ba3d0 rtc_set_time +EXPORT_SYMBOL_GPL vmlinux 0x6e2c3cd5 __page_file_mapping +EXPORT_SYMBOL_GPL vmlinux 0x6e306ecf blk_mq_flush_busy_ctxs +EXPORT_SYMBOL_GPL vmlinux 0x6e315f2b serial8250_rx_dma_flush +EXPORT_SYMBOL_GPL vmlinux 0x6e3dfbb4 nand_get_small_page_ooblayout +EXPORT_SYMBOL_GPL vmlinux 0x6e3f1554 serial8250_do_shutdown EXPORT_SYMBOL_GPL vmlinux 0x6e3ff83a edac_device_alloc_index EXPORT_SYMBOL_GPL vmlinux 0x6e4bc056 spi_res_free -EXPORT_SYMBOL_GPL vmlinux 0x6e58feff adp5520_write -EXPORT_SYMBOL_GPL vmlinux 0x6e5e3199 usb_hcd_poll_rh_status EXPORT_SYMBOL_GPL vmlinux 0x6e635087 percpu_ref_exit -EXPORT_SYMBOL_GPL vmlinux 0x6e6c89dd fsnotify_put_group -EXPORT_SYMBOL_GPL vmlinux 0x6e739e1f irq_domain_remove +EXPORT_SYMBOL_GPL vmlinux 0x6e63fa88 device_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0x6e710f54 lp8788_write_byte EXPORT_SYMBOL_GPL vmlinux 0x6e7943ec iommu_group_id EXPORT_SYMBOL_GPL vmlinux 0x6e89a560 regmap_irq_chip_get_base -EXPORT_SYMBOL_GPL vmlinux 0x6ea28590 sk_msg_free_nocharge -EXPORT_SYMBOL_GPL vmlinux 0x6ea632d6 rio_inb_pwrite_handler -EXPORT_SYMBOL_GPL vmlinux 0x6eab1867 pci_disable_pasid +EXPORT_SYMBOL_GPL vmlinux 0x6e8a67fa pinctrl_count_index_with_args EXPORT_SYMBOL_GPL vmlinux 0x6ebe366f ktime_get_mono_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0x6ec492b3 soc_device_match -EXPORT_SYMBOL_GPL vmlinux 0x6ec49d91 tcp_reno_undo_cwnd -EXPORT_SYMBOL_GPL vmlinux 0x6ee5cae8 fb_deferred_io_open -EXPORT_SYMBOL_GPL vmlinux 0x6ee74317 alarmtimer_get_rtcdev +EXPORT_SYMBOL_GPL vmlinux 0x6ecddbb3 fib_rules_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6ed79a18 i2c_new_dummy_device +EXPORT_SYMBOL_GPL vmlinux 0x6edbca31 pm_runtime_irq_safe EXPORT_SYMBOL_GPL vmlinux 0x6ee8c94b sfp_get_module_eeprom EXPORT_SYMBOL_GPL vmlinux 0x6ef6b54f ktime_get_boot_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0x6f094bb8 pm_genpd_add_subdomain +EXPORT_SYMBOL_GPL vmlinux 0x6f0674c1 usb_phy_roothub_resume +EXPORT_SYMBOL_GPL vmlinux 0x6f0a8e8c sata_link_resume EXPORT_SYMBOL_GPL vmlinux 0x6f12560a get_old_timespec32 -EXPORT_SYMBOL_GPL vmlinux 0x6f2004b8 nand_get_large_page_hamming_ooblayout EXPORT_SYMBOL_GPL vmlinux 0x6f2017de misc_cg_set_capacity -EXPORT_SYMBOL_GPL vmlinux 0x6f2acce4 mtk_pinconf_bias_disable_get -EXPORT_SYMBOL_GPL vmlinux 0x6f34a58a pci_max_pasids -EXPORT_SYMBOL_GPL vmlinux 0x6f3d55ce i2c_adapter_depth -EXPORT_SYMBOL_GPL vmlinux 0x6f46cdac ata_sas_slave_configure -EXPORT_SYMBOL_GPL vmlinux 0x6f55f5d1 driver_for_each_device -EXPORT_SYMBOL_GPL vmlinux 0x6f5d043a is_software_node +EXPORT_SYMBOL_GPL vmlinux 0x6f24ebd6 pci_bridge_secondary_bus_reset +EXPORT_SYMBOL_GPL vmlinux 0x6f28ddea edac_get_sysfs_subsys +EXPORT_SYMBOL_GPL vmlinux 0x6f2bcb6f ping_rcv +EXPORT_SYMBOL_GPL vmlinux 0x6f3b0188 balloon_page_alloc +EXPORT_SYMBOL_GPL vmlinux 0x6f3bc30b snd_soc_component_exit_regmap +EXPORT_SYMBOL_GPL vmlinux 0x6f4c0f5f pci_epc_get_msi +EXPORT_SYMBOL_GPL vmlinux 0x6f59e3db trace_array_put +EXPORT_SYMBOL_GPL vmlinux 0x6f6ab248 io_cgrp_subsys +EXPORT_SYMBOL_GPL vmlinux 0x6f7d84b6 tcp_is_ulp_esp EXPORT_SYMBOL_GPL vmlinux 0x6f7e6040 irq_has_action -EXPORT_SYMBOL_GPL vmlinux 0x6f8aefdd do_tcp_sendpages +EXPORT_SYMBOL_GPL vmlinux 0x6f812c65 devm_pwmchip_add EXPORT_SYMBOL_GPL vmlinux 0x6f9e763b timecounter_read -EXPORT_SYMBOL_GPL vmlinux 0x6fb5f24d dev_pm_opp_detach_genpd +EXPORT_SYMBOL_GPL vmlinux 0x6fa96457 of_remove_property +EXPORT_SYMBOL_GPL vmlinux 0x6fa9c956 hrtimer_init_sleeper +EXPORT_SYMBOL_GPL vmlinux 0x6fb0a8f1 switchdev_handle_port_obj_del +EXPORT_SYMBOL_GPL vmlinux 0x6fb65d89 led_trigger_register EXPORT_SYMBOL_GPL vmlinux 0x6fb7e313 asic3_write_register -EXPORT_SYMBOL_GPL vmlinux 0x6fb87766 pcie_update_link_speed -EXPORT_SYMBOL_GPL vmlinux 0x6fc47a70 usb_altnum_to_altsetting EXPORT_SYMBOL_GPL vmlinux 0x6fcef6ab ring_buffer_reset -EXPORT_SYMBOL_GPL vmlinux 0x6fda8873 clk_hw_set_parent -EXPORT_SYMBOL_GPL vmlinux 0x6fdb6d05 power_supply_set_battery_charged -EXPORT_SYMBOL_GPL vmlinux 0x6fe17d68 blk_ksm_update_capabilities -EXPORT_SYMBOL_GPL vmlinux 0x6fe5f03e regulator_set_active_discharge_regmap +EXPORT_SYMBOL_GPL vmlinux 0x6fd33ec8 snd_soc_component_set_jack +EXPORT_SYMBOL_GPL vmlinux 0x6fe79a7b snd_soc_component_set_pll EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x7005aabb da903x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x6ffec155 da903x_writes EXPORT_SYMBOL_GPL vmlinux 0x7006586e iommu_get_group_resv_regions -EXPORT_SYMBOL_GPL vmlinux 0x7009b2c2 usb_sg_init -EXPORT_SYMBOL_GPL vmlinux 0x700c56a9 device_show_ulong -EXPORT_SYMBOL_GPL vmlinux 0x7020db2e fib_rule_matchall -EXPORT_SYMBOL_GPL vmlinux 0x7021cb5d __devm_reset_control_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x7006bd24 akcipher_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x700db375 irq_gc_mask_clr_bit +EXPORT_SYMBOL_GPL vmlinux 0x700e2024 device_match_any +EXPORT_SYMBOL_GPL vmlinux 0x70151637 dapm_kcontrol_get_value EXPORT_SYMBOL_GPL vmlinux 0x70240944 clk_hw_register_gate2 -EXPORT_SYMBOL_GPL vmlinux 0x702d15e0 uprobe_register -EXPORT_SYMBOL_GPL vmlinux 0x70354776 mtd_erase_user_prot_reg -EXPORT_SYMBOL_GPL vmlinux 0x704cf850 __regmap_init_spi -EXPORT_SYMBOL_GPL vmlinux 0x704f6ad8 thermal_zone_device_disable -EXPORT_SYMBOL_GPL vmlinux 0x705eef9c mbox_flush -EXPORT_SYMBOL_GPL vmlinux 0x7062201c devm_spi_mem_dirmap_destroy -EXPORT_SYMBOL_GPL vmlinux 0x70657821 iommu_page_response -EXPORT_SYMBOL_GPL vmlinux 0x706eef75 clk_mux_determine_rate_flags -EXPORT_SYMBOL_GPL vmlinux 0x707338e6 dst_cache_get_ip6 +EXPORT_SYMBOL_GPL vmlinux 0x7026f7fd cgroup_get_from_path +EXPORT_SYMBOL_GPL vmlinux 0x702c812b dma_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x70343c2d powercap_register_control_type +EXPORT_SYMBOL_GPL vmlinux 0x703cd352 snd_soc_dpcm_get_substream +EXPORT_SYMBOL_GPL vmlinux 0x7045db30 blk_execute_rq_nowait +EXPORT_SYMBOL_GPL vmlinux 0x70495142 dev_pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x704eaead irq_domain_pop_irq +EXPORT_SYMBOL_GPL vmlinux 0x7067e5bb netdev_rx_handler_unregister +EXPORT_SYMBOL_GPL vmlinux 0x706a36cd crypto_ahash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x706ad53c fwnode_graph_get_port_parent EXPORT_SYMBOL_GPL vmlinux 0x7073c04f phy_10_100_features_array -EXPORT_SYMBOL_GPL vmlinux 0x7079af6b iommu_detach_device -EXPORT_SYMBOL_GPL vmlinux 0x7082b8f1 mtd_pairing_groups -EXPORT_SYMBOL_GPL vmlinux 0x70875842 md_bitmap_load -EXPORT_SYMBOL_GPL vmlinux 0x70942b51 of_reserved_mem_device_release -EXPORT_SYMBOL_GPL vmlinux 0x709c9199 gpiochip_lock_as_irq -EXPORT_SYMBOL_GPL vmlinux 0x70a726c2 irq_create_fwspec_mapping -EXPORT_SYMBOL_GPL vmlinux 0x70a96ae1 fuse_dev_operations -EXPORT_SYMBOL_GPL vmlinux 0x70adba0d synth_event_add_val -EXPORT_SYMBOL_GPL vmlinux 0x70af5c52 rio_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x7078e9cc dev_attr_link_power_management_policy +EXPORT_SYMBOL_GPL vmlinux 0x707f756d da9055_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x708cf534 blk_mq_sched_try_merge +EXPORT_SYMBOL_GPL vmlinux 0x708d11f5 snd_soc_info_xr_sx +EXPORT_SYMBOL_GPL vmlinux 0x708d84c7 ahci_platform_suspend_host +EXPORT_SYMBOL_GPL vmlinux 0x7091c642 efivar_entry_add +EXPORT_SYMBOL_GPL vmlinux 0x70923be9 pci_epc_set_msi +EXPORT_SYMBOL_GPL vmlinux 0x7096db6d msi_desc_to_pci_sysdata +EXPORT_SYMBOL_GPL vmlinux 0x70a1e10e regmap_raw_write +EXPORT_SYMBOL_GPL vmlinux 0x70a41d12 edac_device_free_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0x70aab663 snd_soc_dai_active +EXPORT_SYMBOL_GPL vmlinux 0x70bf3690 devlink_remote_reload_actions_performed +EXPORT_SYMBOL_GPL vmlinux 0x70bf41b2 kick_process +EXPORT_SYMBOL_GPL vmlinux 0x70c38935 usb_hcd_pci_shutdown EXPORT_SYMBOL_GPL vmlinux 0x70c52dc5 nf_skb_duplicated EXPORT_SYMBOL_GPL vmlinux 0x70c6d827 mc146818_set_time -EXPORT_SYMBOL_GPL vmlinux 0x70cad7f2 amba_ahb_device_add_res -EXPORT_SYMBOL_GPL vmlinux 0x70cec1b2 devlink_port_unregister +EXPORT_SYMBOL_GPL vmlinux 0x70c9e637 crypto_stats_ahash_update EXPORT_SYMBOL_GPL vmlinux 0x70cf032f usb_hcd_irq -EXPORT_SYMBOL_GPL vmlinux 0x70d69d90 genphy_c45_read_pma +EXPORT_SYMBOL_GPL vmlinux 0x70d360a8 of_get_named_gpio_flags +EXPORT_SYMBOL_GPL vmlinux 0x70d64b06 sbitmap_show EXPORT_SYMBOL_GPL vmlinux 0x70e24953 percpu_ref_switch_to_atomic -EXPORT_SYMBOL_GPL vmlinux 0x70f39840 tpmm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0x70e55408 sk_psock_init +EXPORT_SYMBOL_GPL vmlinux 0x70eab481 serial8250_rpm_put_tx +EXPORT_SYMBOL_GPL vmlinux 0x70fad9a6 of_clk_set_defaults EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x710e25e9 do_truncate -EXPORT_SYMBOL_GPL vmlinux 0x711e8236 fw_devlink_purge_absent_suppliers -EXPORT_SYMBOL_GPL vmlinux 0x7128b54b snd_ac97_reset -EXPORT_SYMBOL_GPL vmlinux 0x713be23c inode_congested -EXPORT_SYMBOL_GPL vmlinux 0x71418021 arm_iommu_create_mapping -EXPORT_SYMBOL_GPL vmlinux 0x71504265 device_release_driver +EXPORT_SYMBOL_GPL vmlinux 0x710db4c3 sk_psock_msg_verdict +EXPORT_SYMBOL_GPL vmlinux 0x710ef162 crypto_skcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x7120294a devlink_resources_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7128f667 mtk_mutex_get +EXPORT_SYMBOL_GPL vmlinux 0x712b45dd elv_register +EXPORT_SYMBOL_GPL vmlinux 0x712c98dd usb_lock_device_for_reset +EXPORT_SYMBOL_GPL vmlinux 0x71349292 phy_pm_runtime_get_sync +EXPORT_SYMBOL_GPL vmlinux 0x714d0bee devm_platform_ioremap_resource +EXPORT_SYMBOL_GPL vmlinux 0x71545453 device_property_match_string EXPORT_SYMBOL_GPL vmlinux 0x715a4f37 __wake_up_pollfree +EXPORT_SYMBOL_GPL vmlinux 0x715e04d0 ata_pci_device_do_suspend EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized -EXPORT_SYMBOL_GPL vmlinux 0x71626a65 xhci_run -EXPORT_SYMBOL_GPL vmlinux 0x71634cac syscon_node_to_regmap EXPORT_SYMBOL_GPL vmlinux 0x71650819 add_bootloader_randomness +EXPORT_SYMBOL_GPL vmlinux 0x7166a69b rockchip_clk_of_add_provider EXPORT_SYMBOL_GPL vmlinux 0x716cffb5 pkcs7_parse_message -EXPORT_SYMBOL_GPL vmlinux 0x7171d60d devm_usb_get_phy_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x71787526 skb_scrub_packet -EXPORT_SYMBOL_GPL vmlinux 0x717a1b97 usb_set_device_state -EXPORT_SYMBOL_GPL vmlinux 0x7181dc8d ata_pci_device_do_suspend -EXPORT_SYMBOL_GPL vmlinux 0x7191bb78 rdev_set_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x717d0dc3 led_put +EXPORT_SYMBOL_GPL vmlinux 0x71913deb iommu_aux_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x7198db61 ata_sas_async_probe EXPORT_SYMBOL_GPL vmlinux 0x719a5e41 musb_readw -EXPORT_SYMBOL_GPL vmlinux 0x719c7e6d blkcg_activate_policy EXPORT_SYMBOL_GPL vmlinux 0x719e17ff clk_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x719f7107 snd_soc_dapm_enable_pin_unlocked +EXPORT_SYMBOL_GPL vmlinux 0x71a00de8 of_pinctrl_get EXPORT_SYMBOL_GPL vmlinux 0x71a20f4a __SCK__tp_func_non_standard_event +EXPORT_SYMBOL_GPL vmlinux 0x71a7ee1e snd_soc_component_initialize EXPORT_SYMBOL_GPL vmlinux 0x71a9a3ab mtk_mutex_acquire EXPORT_SYMBOL_GPL vmlinux 0x71b15008 lwtunnel_valid_encap_type -EXPORT_SYMBOL_GPL vmlinux 0x71b210df irq_domain_xlate_twocell EXPORT_SYMBOL_GPL vmlinux 0x71b6cf94 dst_cache_reset_now EXPORT_SYMBOL_GPL vmlinux 0x71c0c4a7 ftrace_set_filter -EXPORT_SYMBOL_GPL vmlinux 0x71c8d7c8 simple_attr_write -EXPORT_SYMBOL_GPL vmlinux 0x71dc6236 crypto_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x71c40bb3 tps65217_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0x71cc75a3 snd_soc_dapm_update_dai +EXPORT_SYMBOL_GPL vmlinux 0x71dce3a6 pci_user_read_config_word EXPORT_SYMBOL_GPL vmlinux 0x71f6670b __cookie_v6_check -EXPORT_SYMBOL_GPL vmlinux 0x71fab9e2 skb_gso_validate_mac_len -EXPORT_SYMBOL_GPL vmlinux 0x71fb9322 snd_soc_jack_free_gpios -EXPORT_SYMBOL_GPL vmlinux 0x72130e82 pm_runtime_suspended_time -EXPORT_SYMBOL_GPL vmlinux 0x722bf39b of_pwm_xlate_with_flags -EXPORT_SYMBOL_GPL vmlinux 0x722c77b4 pci_epc_map_msi_irq +EXPORT_SYMBOL_GPL vmlinux 0x721ca568 mtk_mmsys_ddp_disconnect +EXPORT_SYMBOL_GPL vmlinux 0x721e021d dma_resv_test_signaled EXPORT_SYMBOL_GPL vmlinux 0x7236bdf8 ftrace_set_filter_ip -EXPORT_SYMBOL_GPL vmlinux 0x72413330 crypto_stats_kpp_set_secret -EXPORT_SYMBOL_GPL vmlinux 0x7243df3a pci_epc_set_msi -EXPORT_SYMBOL_GPL vmlinux 0x72539760 __fsnotify_inode_delete -EXPORT_SYMBOL_GPL vmlinux 0x726178aa of_clk_parent_fill +EXPORT_SYMBOL_GPL vmlinux 0x72413f36 mtk_eint_find_irq +EXPORT_SYMBOL_GPL vmlinux 0x72565e06 cpuidle_get_cpu_driver +EXPORT_SYMBOL_GPL vmlinux 0x72590b7e snd_soc_component_compr_trigger +EXPORT_SYMBOL_GPL vmlinux 0x725a1eb9 snd_soc_dpcm_can_be_params EXPORT_SYMBOL_GPL vmlinux 0x7262702b sfp_get_module_eeprom_by_page EXPORT_SYMBOL_GPL vmlinux 0x7265f2b0 pci_vpd_check_csum +EXPORT_SYMBOL_GPL vmlinux 0x726616d4 snd_soc_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x72766d5b snd_soc_component_write_field EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events -EXPORT_SYMBOL_GPL vmlinux 0x7281165f omap_iommu_restore_ctx -EXPORT_SYMBOL_GPL vmlinux 0x7286e786 regmap_multi_reg_write_bypassed -EXPORT_SYMBOL_GPL vmlinux 0x728f2d04 of_irq_parse_one -EXPORT_SYMBOL_GPL vmlinux 0x72a0a348 dma_alloc_noncontiguous -EXPORT_SYMBOL_GPL vmlinux 0x72a43e32 inet6_hash -EXPORT_SYMBOL_GPL vmlinux 0x72b0149d tegra_mc_write_emem_configuration +EXPORT_SYMBOL_GPL vmlinux 0x727e71af ata_sff_busy_sleep +EXPORT_SYMBOL_GPL vmlinux 0x72802d94 regulator_get_voltage EXPORT_SYMBOL_GPL vmlinux 0x72b299e1 efi_capsule_supported -EXPORT_SYMBOL_GPL vmlinux 0x72b6dcad usb_phy_set_event -EXPORT_SYMBOL_GPL vmlinux 0x72bb45c9 sdhci_cqe_enable -EXPORT_SYMBOL_GPL vmlinux 0x72ea755f of_modalias_node -EXPORT_SYMBOL_GPL vmlinux 0x72ef6ded of_usb_get_dr_mode_by_phy -EXPORT_SYMBOL_GPL vmlinux 0x72fd687d tty_buffer_unlock_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x7302554c ethnl_cable_test_result -EXPORT_SYMBOL_GPL vmlinux 0x73325003 spi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x73419aeb do_unbind_con_driver -EXPORT_SYMBOL_GPL vmlinux 0x734697b2 rtnl_put_cacheinfo -EXPORT_SYMBOL_GPL vmlinux 0x73505438 phy_speed_down -EXPORT_SYMBOL_GPL vmlinux 0x7350e2f6 wm831x_reg_lock -EXPORT_SYMBOL_GPL vmlinux 0x735c0492 thermal_zone_of_sensor_register -EXPORT_SYMBOL_GPL vmlinux 0x735cc96e sdhci_reset_tuning -EXPORT_SYMBOL_GPL vmlinux 0x73641916 software_node_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x737e1683 iommu_group_remove_device -EXPORT_SYMBOL_GPL vmlinux 0x7381766d security_path_link -EXPORT_SYMBOL_GPL vmlinux 0x73885d46 dmaengine_unmap_put -EXPORT_SYMBOL_GPL vmlinux 0x7393474a cpufreq_enable_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0x72b70b5d pci_dev_trylock +EXPORT_SYMBOL_GPL vmlinux 0x72ba2059 clk_hw_get_rate +EXPORT_SYMBOL_GPL vmlinux 0x72c1ad4b pm_generic_freeze_noirq +EXPORT_SYMBOL_GPL vmlinux 0x72c27961 alloc_io_pgtable_ops +EXPORT_SYMBOL_GPL vmlinux 0x72c9f6c1 gpiod_unexport +EXPORT_SYMBOL_GPL vmlinux 0x72da05b3 ata_sas_tport_delete +EXPORT_SYMBOL_GPL vmlinux 0x72f13aa0 devm_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x72f90aa8 ahci_platform_enable_phys +EXPORT_SYMBOL_GPL vmlinux 0x73026e35 imx_pinctrl_probe +EXPORT_SYMBOL_GPL vmlinux 0x7303a15a usb_gadget_disconnect +EXPORT_SYMBOL_GPL vmlinux 0x73110f70 scsi_nl_sock +EXPORT_SYMBOL_GPL vmlinux 0x73219fcc fib_rules_seq_read +EXPORT_SYMBOL_GPL vmlinux 0x732212a8 rockchip_clk_register_plls +EXPORT_SYMBOL_GPL vmlinux 0x73240cee raw_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x7324b4ec of_irq_parse_raw +EXPORT_SYMBOL_GPL vmlinux 0x7330e091 sbitmap_queue_show +EXPORT_SYMBOL_GPL vmlinux 0x733fd449 sdhci_send_tuning +EXPORT_SYMBOL_GPL vmlinux 0x734c799d of_property_read_variable_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x73540719 ping_seq_start +EXPORT_SYMBOL_GPL vmlinux 0x737fe54c iommu_map_atomic +EXPORT_SYMBOL_GPL vmlinux 0x738e6bf5 metadata_dst_free EXPORT_SYMBOL_GPL vmlinux 0x73a48b4a ata_sff_std_ports +EXPORT_SYMBOL_GPL vmlinux 0x73a4c19b blk_bio_list_merge +EXPORT_SYMBOL_GPL vmlinux 0x73b78b1a tty_put_char +EXPORT_SYMBOL_GPL vmlinux 0x73b89f93 tcf_dev_queue_xmit EXPORT_SYMBOL_GPL vmlinux 0x73b98231 asymmetric_key_generate_id -EXPORT_SYMBOL_GPL vmlinux 0x73c2b604 acomp_request_free -EXPORT_SYMBOL_GPL vmlinux 0x73c8cfb3 regulator_suspend_disable +EXPORT_SYMBOL_GPL vmlinux 0x73bf4e46 pci_aer_clear_nonfatal_status +EXPORT_SYMBOL_GPL vmlinux 0x73c39a07 devm_thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x73c4033f devm_regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x73c7bc19 wwan_port_rx +EXPORT_SYMBOL_GPL vmlinux 0x73caac21 of_dma_request_slave_channel EXPORT_SYMBOL_GPL vmlinux 0x73cc8631 oiap -EXPORT_SYMBOL_GPL vmlinux 0x73d823df tty_release_struct -EXPORT_SYMBOL_GPL vmlinux 0x73f81a0a __platform_driver_register -EXPORT_SYMBOL_GPL vmlinux 0x73f90db0 mctrl_gpio_init -EXPORT_SYMBOL_GPL vmlinux 0x73fd0440 attribute_container_find_class_device -EXPORT_SYMBOL_GPL vmlinux 0x741bff21 fork_usermode_driver +EXPORT_SYMBOL_GPL vmlinux 0x73fda791 sock_diag_register_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0x7415234d decrypt_blob +EXPORT_SYMBOL_GPL vmlinux 0x742b8ae0 iommu_device_register EXPORT_SYMBOL_GPL vmlinux 0x743a165e ata_pack_xfermask -EXPORT_SYMBOL_GPL vmlinux 0x7455d1a2 __pm_runtime_use_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0x74650d29 tpm_transmit_cmd -EXPORT_SYMBOL_GPL vmlinux 0x74696beb iommu_register_device_fault_handler -EXPORT_SYMBOL_GPL vmlinux 0x747e008e pci_epf_free_space -EXPORT_SYMBOL_GPL vmlinux 0x7488fd9d snd_soc_dapm_kcontrol_dapm -EXPORT_SYMBOL_GPL vmlinux 0x74a5c12e icc_nodes_remove +EXPORT_SYMBOL_GPL vmlinux 0x743e5914 lwtunnel_state_alloc +EXPORT_SYMBOL_GPL vmlinux 0x744432ea pwm_get_chip_data +EXPORT_SYMBOL_GPL vmlinux 0x7449ee9f security_path_rmdir +EXPORT_SYMBOL_GPL vmlinux 0x745fd9f5 usb_ifnum_to_if +EXPORT_SYMBOL_GPL vmlinux 0x74616eac snd_soc_dapm_kcontrol_dapm +EXPORT_SYMBOL_GPL vmlinux 0x7469b12c dw_pcie_find_capability +EXPORT_SYMBOL_GPL vmlinux 0x747120a4 nand_read_page_op +EXPORT_SYMBOL_GPL vmlinux 0x748e54e2 dax_copy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0x749965a3 trace_event_raw_init +EXPORT_SYMBOL_GPL vmlinux 0x749c8c3e usb_remove_phy +EXPORT_SYMBOL_GPL vmlinux 0x74acba92 auxiliary_device_init EXPORT_SYMBOL_GPL vmlinux 0x74b5ea68 lcm_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x74b97953 dma_buf_dynamic_attach EXPORT_SYMBOL_GPL vmlinux 0x74baf17a tracing_is_on -EXPORT_SYMBOL_GPL vmlinux 0x74c7285d scsi_schedule_eh -EXPORT_SYMBOL_GPL vmlinux 0x74c80065 evm_verifyxattr -EXPORT_SYMBOL_GPL vmlinux 0x74ca867b clk_register_hisi_phase -EXPORT_SYMBOL_GPL vmlinux 0x74cca0a1 devm_irq_setup_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x74ebd890 nf_hook_entries_insert_raw -EXPORT_SYMBOL_GPL vmlinux 0x74ef0626 to_of_pinfo -EXPORT_SYMBOL_GPL vmlinux 0x74fc57ca pm_generic_thaw_early +EXPORT_SYMBOL_GPL vmlinux 0x74cafcf6 rio_dma_prep_xfer EXPORT_SYMBOL_GPL vmlinux 0x7513b5ec __iowrite32_copy -EXPORT_SYMBOL_GPL vmlinux 0x75197baf vfs_write -EXPORT_SYMBOL_GPL vmlinux 0x751bf9eb power_supply_put +EXPORT_SYMBOL_GPL vmlinux 0x751bb882 devm_get_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x751cd1c5 irq_domain_translate_twocell +EXPORT_SYMBOL_GPL vmlinux 0x7520bdd5 pinctrl_generic_get_group_pins EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status -EXPORT_SYMBOL_GPL vmlinux 0x7527d974 devlink_port_params_register -EXPORT_SYMBOL_GPL vmlinux 0x753ebffa ahci_dev_classify -EXPORT_SYMBOL_GPL vmlinux 0x75451ad3 __skb_tstamp_tx -EXPORT_SYMBOL_GPL vmlinux 0x754f3316 sdhci_calc_clk -EXPORT_SYMBOL_GPL vmlinux 0x75583a95 regulator_list_voltage_table +EXPORT_SYMBOL_GPL vmlinux 0x75276b99 of_regulator_match +EXPORT_SYMBOL_GPL vmlinux 0x753defd0 crypto_rng_reset +EXPORT_SYMBOL_GPL vmlinux 0x753e30e4 thermal_zone_device_disable +EXPORT_SYMBOL_GPL vmlinux 0x753fa27c usb_control_msg_recv +EXPORT_SYMBOL_GPL vmlinux 0x754a2eb9 trace_array_set_clr_event EXPORT_SYMBOL_GPL vmlinux 0x755ae3c8 trusted_tpm_send -EXPORT_SYMBOL_GPL vmlinux 0x755d364a dma_buf_fd -EXPORT_SYMBOL_GPL vmlinux 0x7561b7bb dma_buf_detach -EXPORT_SYMBOL_GPL vmlinux 0x7574c4dd devlink_param_value_changed -EXPORT_SYMBOL_GPL vmlinux 0x75841623 pci_dev_lock +EXPORT_SYMBOL_GPL vmlinux 0x755c8f41 iommu_report_device_fault +EXPORT_SYMBOL_GPL vmlinux 0x755fd663 kthread_data +EXPORT_SYMBOL_GPL vmlinux 0x7576b582 ipv6_bpf_stub +EXPORT_SYMBOL_GPL vmlinux 0x757e1783 pci_generic_config_write32 +EXPORT_SYMBOL_GPL vmlinux 0x75876a6a phy_modify_changed +EXPORT_SYMBOL_GPL vmlinux 0x759099ab edac_device_alloc_ctl_info EXPORT_SYMBOL_GPL vmlinux 0x759139cb of_pci_check_probe_only -EXPORT_SYMBOL_GPL vmlinux 0x75983a9d tracing_snapshot_cond -EXPORT_SYMBOL_GPL vmlinux 0x75a7a7bd pinmux_generic_add_function -EXPORT_SYMBOL_GPL vmlinux 0x75b00dc2 blk_mq_free_request -EXPORT_SYMBOL_GPL vmlinux 0x75be1e87 register_mtd_user +EXPORT_SYMBOL_GPL vmlinux 0x759180f3 genphy_c45_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0x7593e5f6 balloon_page_list_dequeue +EXPORT_SYMBOL_GPL vmlinux 0x75aace11 pci_epc_linkup +EXPORT_SYMBOL_GPL vmlinux 0x75b79751 ping_err EXPORT_SYMBOL_GPL vmlinux 0x75bf6cc0 is_binary_blacklisted -EXPORT_SYMBOL_GPL vmlinux 0x75c4e414 clean_acked_data_enable -EXPORT_SYMBOL_GPL vmlinux 0x75c5a3d0 irq_set_chained_handler_and_data -EXPORT_SYMBOL_GPL vmlinux 0x75c731d4 bsg_job_done -EXPORT_SYMBOL_GPL vmlinux 0x75c98769 ahci_init_controller EXPORT_SYMBOL_GPL vmlinux 0x75cbfb09 add_interrupt_randomness -EXPORT_SYMBOL_GPL vmlinux 0x75cefdfe devm_otg_ulpi_create +EXPORT_SYMBOL_GPL vmlinux 0x75d69420 ohci_init_driver EXPORT_SYMBOL_GPL vmlinux 0x75dd4ebe of_overlay_remove EXPORT_SYMBOL_GPL vmlinux 0x75e51945 __SCK__tp_func_error_report_end -EXPORT_SYMBOL_GPL vmlinux 0x75e83e20 skb_complete_wifi_ack +EXPORT_SYMBOL_GPL vmlinux 0x75e6f9a8 cn_add_callback EXPORT_SYMBOL_GPL vmlinux 0x75e9c735 pci_ats_disabled +EXPORT_SYMBOL_GPL vmlinux 0x75f07d74 register_wide_hw_breakpoint EXPORT_SYMBOL_GPL vmlinux 0x75fb9062 arch_timer_read_counter -EXPORT_SYMBOL_GPL vmlinux 0x7601ce6e store_sampling_rate -EXPORT_SYMBOL_GPL vmlinux 0x761273a3 fwnode_get_next_parent -EXPORT_SYMBOL_GPL vmlinux 0x762d5cb8 hisi_clk_alloc -EXPORT_SYMBOL_GPL vmlinux 0x76330472 fib_table_lookup -EXPORT_SYMBOL_GPL vmlinux 0x7641b6c9 ata_bmdma_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x765343da rtnl_delete_link -EXPORT_SYMBOL_GPL vmlinux 0x76630696 regmap_mmio_detach_clk +EXPORT_SYMBOL_GPL vmlinux 0x76090689 genphy_c45_an_disable_aneg +EXPORT_SYMBOL_GPL vmlinux 0x7621e047 dev_pm_opp_add +EXPORT_SYMBOL_GPL vmlinux 0x7637c00c __put_mtd_device +EXPORT_SYMBOL_GPL vmlinux 0x764f9169 pci_create_slot +EXPORT_SYMBOL_GPL vmlinux 0x7653f6ec iommu_present +EXPORT_SYMBOL_GPL vmlinux 0x76626d66 blk_trace_remove EXPORT_SYMBOL_GPL vmlinux 0x7665ee72 crypto_dh_decode_key -EXPORT_SYMBOL_GPL vmlinux 0x767494b1 snd_compr_stop_error +EXPORT_SYMBOL_GPL vmlinux 0x7668d470 gpiochip_populate_parent_fwspec_twocell EXPORT_SYMBOL_GPL vmlinux 0x7681946c unregister_pm_notifier -EXPORT_SYMBOL_GPL vmlinux 0x7684aa34 of_clk_get_from_provider -EXPORT_SYMBOL_GPL vmlinux 0x769a6d32 irq_set_default_host -EXPORT_SYMBOL_GPL vmlinux 0x76a41141 rio_request_inb_pwrite -EXPORT_SYMBOL_GPL vmlinux 0x76aea6eb perf_event_read_value -EXPORT_SYMBOL_GPL vmlinux 0x76af5ec9 virtqueue_get_vring_size -EXPORT_SYMBOL_GPL vmlinux 0x76c13a82 platform_find_device_by_driver -EXPORT_SYMBOL_GPL vmlinux 0x76c460dd dax_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0x76c68737 shmem_file_setup_with_mnt -EXPORT_SYMBOL_GPL vmlinux 0x76d6580b cpufreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x7684657b ahci_platform_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x76b7d9c5 pci_dev_lock EXPORT_SYMBOL_GPL vmlinux 0x76d9b876 clk_set_rate +EXPORT_SYMBOL_GPL vmlinux 0x76db27a9 devlink_alloc_ns +EXPORT_SYMBOL_GPL vmlinux 0x76dbff1c device_destroy EXPORT_SYMBOL_GPL vmlinux 0x76e10a88 __wait_rcu_gp -EXPORT_SYMBOL_GPL vmlinux 0x76e6a154 noop_invalidatepage +EXPORT_SYMBOL_GPL vmlinux 0x76e4402b balloon_page_dequeue EXPORT_SYMBOL_GPL vmlinux 0x76eeeb0f sha384_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x76f4ada9 pinctrl_pm_select_sleep_state -EXPORT_SYMBOL_GPL vmlinux 0x770f0d5f bpf_offload_dev_netdev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x771eb2e6 ip_icmp_error_rfc4884 -EXPORT_SYMBOL_GPL vmlinux 0x77246d83 usb_phy_roothub_resume -EXPORT_SYMBOL_GPL vmlinux 0x77297422 regmap_field_read -EXPORT_SYMBOL_GPL vmlinux 0x772984d2 dev_pm_genpd_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x76ef90a8 ata_scsi_dma_need_drain +EXPORT_SYMBOL_GPL vmlinux 0x770d3237 stmpe811_adc_common_init +EXPORT_SYMBOL_GPL vmlinux 0x771461be mptcp_pm_get_local_addr_max +EXPORT_SYMBOL_GPL vmlinux 0x771ce395 efivar_entry_iter +EXPORT_SYMBOL_GPL vmlinux 0x771e4d19 kgdb_unregister_io_module EXPORT_SYMBOL_GPL vmlinux 0x7729cbdd task_handoff_register +EXPORT_SYMBOL_GPL vmlinux 0x772d5ddf ata_cable_80wire EXPORT_SYMBOL_GPL vmlinux 0x772e2c26 xas_set_mark -EXPORT_SYMBOL_GPL vmlinux 0x772fdaa7 device_find_child -EXPORT_SYMBOL_GPL vmlinux 0x77385bab scsi_host_complete_all_commands +EXPORT_SYMBOL_GPL vmlinux 0x772f65c9 usb_unpoison_urb +EXPORT_SYMBOL_GPL vmlinux 0x7736bbb4 bpf_trace_run6 +EXPORT_SYMBOL_GPL vmlinux 0x773ba42f dma_mmap_noncontiguous EXPORT_SYMBOL_GPL vmlinux 0x773f2713 clk_hw_unregister_mux -EXPORT_SYMBOL_GPL vmlinux 0x77446e7a device_match_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x774f11c1 dev_pm_opp_put_prop_name +EXPORT_SYMBOL_GPL vmlinux 0x774514e0 rdev_get_name +EXPORT_SYMBOL_GPL vmlinux 0x774f2b43 omap_iommu_restore_ctx EXPORT_SYMBOL_GPL vmlinux 0x7757b51a clk_unregister -EXPORT_SYMBOL_GPL vmlinux 0x7779300b regmap_field_free -EXPORT_SYMBOL_GPL vmlinux 0x778fc563 da9052_adc_manual_read -EXPORT_SYMBOL_GPL vmlinux 0x77900490 regcache_sync_region +EXPORT_SYMBOL_GPL vmlinux 0x777c6c65 snd_soc_jack_get_type +EXPORT_SYMBOL_GPL vmlinux 0x77830350 devm_kasprintf +EXPORT_SYMBOL_GPL vmlinux 0x778c2c4e icmp_build_probe EXPORT_SYMBOL_GPL vmlinux 0x7791e066 dw_pcie_read EXPORT_SYMBOL_GPL vmlinux 0x7797d873 __tracepoint_neigh_update_done -EXPORT_SYMBOL_GPL vmlinux 0x77aca611 watchdog_init_timeout +EXPORT_SYMBOL_GPL vmlinux 0x779b6145 bpfilter_ops +EXPORT_SYMBOL_GPL vmlinux 0x77a216ae task_cputime_adjusted +EXPORT_SYMBOL_GPL vmlinux 0x77a84ae5 firmware_request_platform EXPORT_SYMBOL_GPL vmlinux 0x77ae495d usb_speed_string EXPORT_SYMBOL_GPL vmlinux 0x77b46ffb usb_ep_set_maxpacket_limit -EXPORT_SYMBOL_GPL vmlinux 0x77c2ae3c pinctrl_lookup_state -EXPORT_SYMBOL_GPL vmlinux 0x77c9e6ea dev_pm_qos_add_ancestor_request -EXPORT_SYMBOL_GPL vmlinux 0x77ca1d8b rio_mport_write_config_32 -EXPORT_SYMBOL_GPL vmlinux 0x77d91895 alloc_io_pgtable_ops -EXPORT_SYMBOL_GPL vmlinux 0x77e1858c gpiod_get_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0x77c3420e d_exchange +EXPORT_SYMBOL_GPL vmlinux 0x77cbc425 power_supply_set_battery_charged +EXPORT_SYMBOL_GPL vmlinux 0x77d56846 generic_device_group +EXPORT_SYMBOL_GPL vmlinux 0x77e015a1 vp_modern_remove EXPORT_SYMBOL_GPL vmlinux 0x77e75be3 sfp_bus_put -EXPORT_SYMBOL_GPL vmlinux 0x77ea7c01 irq_domain_create_hierarchy -EXPORT_SYMBOL_GPL vmlinux 0x7804e31f spi_async_locked -EXPORT_SYMBOL_GPL vmlinux 0x7814df85 account_locked_vm -EXPORT_SYMBOL_GPL vmlinux 0x782e8002 blk_rq_unprep_clone -EXPORT_SYMBOL_GPL vmlinux 0x783b1415 crypto_comp_decompress -EXPORT_SYMBOL_GPL vmlinux 0x784c9ee9 tcp_ca_openreq_child -EXPORT_SYMBOL_GPL vmlinux 0x784d5bf6 mddev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x77e7db1b usb_phy_roothub_suspend +EXPORT_SYMBOL_GPL vmlinux 0x77ebeba3 bus_get_kset +EXPORT_SYMBOL_GPL vmlinux 0x77fbd0bb da903x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x780627d2 pm_generic_resume_early +EXPORT_SYMBOL_GPL vmlinux 0x78306e09 kstrdup_quotable_cmdline +EXPORT_SYMBOL_GPL vmlinux 0x783948d7 of_property_read_variable_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x783ef0a1 nanddev_bbt_set_block_status +EXPORT_SYMBOL_GPL vmlinux 0x78569124 mmc_crypto_prepare_req EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available -EXPORT_SYMBOL_GPL vmlinux 0x785b5bb4 kill_dev_dax -EXPORT_SYMBOL_GPL vmlinux 0x785f4a65 ip6_route_input_lookup -EXPORT_SYMBOL_GPL vmlinux 0x786ecd2d ahci_set_em_messages -EXPORT_SYMBOL_GPL vmlinux 0x787b9fd5 snd_soc_of_parse_tdm_slot -EXPORT_SYMBOL_GPL vmlinux 0x7885df89 pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x78653b88 gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x786647e3 fuse_conn_init +EXPORT_SYMBOL_GPL vmlinux 0x786a47ed mmu_notifier_get_locked +EXPORT_SYMBOL_GPL vmlinux 0x78754bd2 snd_soc_dapm_stream_stop EXPORT_SYMBOL_GPL vmlinux 0x788bfbad ring_buffer_empty -EXPORT_SYMBOL_GPL vmlinux 0x788bfcab regmap_field_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0x788cd0c1 regulator_suspend_disable +EXPORT_SYMBOL_GPL vmlinux 0x78901524 gpiochip_get_data EXPORT_SYMBOL_GPL vmlinux 0x789c73d9 rcu_cpu_stall_suppress_at_boot -EXPORT_SYMBOL_GPL vmlinux 0x78acb6c3 devm_create_dev_dax -EXPORT_SYMBOL_GPL vmlinux 0x78bf9683 dw_pcie_write_dbi -EXPORT_SYMBOL_GPL vmlinux 0x78c94950 edac_pci_create_generic_ctl -EXPORT_SYMBOL_GPL vmlinux 0x78d1f00a led_put +EXPORT_SYMBOL_GPL vmlinux 0x78a1cd7a iomap_page_mkwrite +EXPORT_SYMBOL_GPL vmlinux 0x78a89a20 snd_dmaengine_pcm_set_config_from_dai_data +EXPORT_SYMBOL_GPL vmlinux 0x78a9e248 mbox_client_txdone +EXPORT_SYMBOL_GPL vmlinux 0x78ae682f i2c_of_match_device +EXPORT_SYMBOL_GPL vmlinux 0x78bb2f38 virtio_break_device +EXPORT_SYMBOL_GPL vmlinux 0x78cf934d acct_bioset_init +EXPORT_SYMBOL_GPL vmlinux 0x78d2fd19 regmap_field_bulk_alloc EXPORT_SYMBOL_GPL vmlinux 0x78ddb76b dmi_match -EXPORT_SYMBOL_GPL vmlinux 0x78ec7c3e ip6_sk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x790b5f4c sdhci_cqe_disable -EXPORT_SYMBOL_GPL vmlinux 0x791ca4ac lwtstate_free -EXPORT_SYMBOL_GPL vmlinux 0x79214164 gpiochip_enable_irq -EXPORT_SYMBOL_GPL vmlinux 0x7921690b devlink_trap_policers_register +EXPORT_SYMBOL_GPL vmlinux 0x78e90a12 rio_register_scan +EXPORT_SYMBOL_GPL vmlinux 0x78eb4acc alloc_page_buffers +EXPORT_SYMBOL_GPL vmlinux 0x78f1fb2c usb_get_dr_mode +EXPORT_SYMBOL_GPL vmlinux 0x78f8bddf irq_chip_set_parent_state +EXPORT_SYMBOL_GPL vmlinux 0x78fdc6e8 led_trigger_rename_static +EXPORT_SYMBOL_GPL vmlinux 0x79047e71 gpiod_get_value +EXPORT_SYMBOL_GPL vmlinux 0x79104080 sdio_set_block_size +EXPORT_SYMBOL_GPL vmlinux 0x7919a5b0 devm_extcon_dev_allocate +EXPORT_SYMBOL_GPL vmlinux 0x7920eb30 ata_scsi_slave_config +EXPORT_SYMBOL_GPL vmlinux 0x79216267 usb_hcd_end_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x792b1244 vfs_kern_mount +EXPORT_SYMBOL_GPL vmlinux 0x792df0cd phy_modify_mmd_changed +EXPORT_SYMBOL_GPL vmlinux 0x79379495 shmem_truncate_range EXPORT_SYMBOL_GPL vmlinux 0x793a93dc raw_v6_hashinfo EXPORT_SYMBOL_GPL vmlinux 0x7944e0fc tracing_off +EXPORT_SYMBOL_GPL vmlinux 0x79455837 irq_domain_disconnect_hierarchy EXPORT_SYMBOL_GPL vmlinux 0x79470a2c TSS_authhmac -EXPORT_SYMBOL_GPL vmlinux 0x7948d079 usb_match_id EXPORT_SYMBOL_GPL vmlinux 0x794a0461 rockchip_pcie_disable_clocks EXPORT_SYMBOL_GPL vmlinux 0x794b7271 orderly_reboot -EXPORT_SYMBOL_GPL vmlinux 0x79726d82 gpiod_set_debounce -EXPORT_SYMBOL_GPL vmlinux 0x79729191 ip6_input -EXPORT_SYMBOL_GPL vmlinux 0x79825edb access_process_vm -EXPORT_SYMBOL_GPL vmlinux 0x7995a9ec stmpe_disable -EXPORT_SYMBOL_GPL vmlinux 0x799f5095 of_dma_xlate_by_chan_id -EXPORT_SYMBOL_GPL vmlinux 0x79a1ba3e fsl8250_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0x79a6ca4b usb_disable_lpm -EXPORT_SYMBOL_GPL vmlinux 0x79a77a8a bio_associate_blkg_from_css -EXPORT_SYMBOL_GPL vmlinux 0x79aba056 ata_common_sdev_attrs -EXPORT_SYMBOL_GPL vmlinux 0x79b9a540 mpc8xxx_spi_rx_buf_u16 -EXPORT_SYMBOL_GPL vmlinux 0x79cf22a7 wakeup_source_register -EXPORT_SYMBOL_GPL vmlinux 0x79cfb608 ata_pci_sff_init_one +EXPORT_SYMBOL_GPL vmlinux 0x795376ca __get_mtd_device +EXPORT_SYMBOL_GPL vmlinux 0x7956800c gpiod_get_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x795b0a1d sdhci_set_data_timeout_irq +EXPORT_SYMBOL_GPL vmlinux 0x795d0ee8 __traceiter_devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0x798e4685 usb_gadget_activate +EXPORT_SYMBOL_GPL vmlinux 0x79a01616 thermal_cooling_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x79bff690 dm_report_zones +EXPORT_SYMBOL_GPL vmlinux 0x79d6bae0 ata_sff_error_handler EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park -EXPORT_SYMBOL_GPL vmlinux 0x79ea8081 pm_generic_poweroff_late -EXPORT_SYMBOL_GPL vmlinux 0x79ede48e md_stop -EXPORT_SYMBOL_GPL vmlinux 0x79f095db gpiochip_populate_parent_fwspec_twocell -EXPORT_SYMBOL_GPL vmlinux 0x79f29176 rockchip_clk_register_armclk -EXPORT_SYMBOL_GPL vmlinux 0x79fe0598 sdio_memcpy_toio -EXPORT_SYMBOL_GPL vmlinux 0x79ff24f1 __traceiter_rpm_resume -EXPORT_SYMBOL_GPL vmlinux 0x7a101fe5 fat_alloc_new_dir -EXPORT_SYMBOL_GPL vmlinux 0x7a26443f mtd_get_user_prot_info -EXPORT_SYMBOL_GPL vmlinux 0x7a2800d1 __bio_try_merge_page -EXPORT_SYMBOL_GPL vmlinux 0x7a2d532a usb_driver_release_interface -EXPORT_SYMBOL_GPL vmlinux 0x7a2ed218 deregister_mtd_blktrans -EXPORT_SYMBOL_GPL vmlinux 0x7a32127d phy_check_downshift +EXPORT_SYMBOL_GPL vmlinux 0x79e1c79f snd_dmaengine_pcm_prepare_slave_config +EXPORT_SYMBOL_GPL vmlinux 0x79e345fa find_get_pid +EXPORT_SYMBOL_GPL vmlinux 0x79e89331 iomap_dio_iopoll +EXPORT_SYMBOL_GPL vmlinux 0x79fbae3b snd_ctl_apply_vmaster_followers +EXPORT_SYMBOL_GPL vmlinux 0x7a11797e extcon_set_property_sync +EXPORT_SYMBOL_GPL vmlinux 0x7a264bf9 sdhci_enable_clk EXPORT_SYMBOL_GPL vmlinux 0x7a33f504 power_supply_find_ocv2cap_table -EXPORT_SYMBOL_GPL vmlinux 0x7a39d9eb dma_get_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x7a3f17c5 tcp_unregister_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0x7a44db86 iommu_fwspec_init EXPORT_SYMBOL_GPL vmlinux 0x7a48d06c cpu_latency_qos_remove_request -EXPORT_SYMBOL_GPL vmlinux 0x7a4a92fa ata_pio_need_iordy -EXPORT_SYMBOL_GPL vmlinux 0x7a506d1c clk_gate_restore_context -EXPORT_SYMBOL_GPL vmlinux 0x7a73115a dw_pcie_wait_for_link +EXPORT_SYMBOL_GPL vmlinux 0x7a50b3f2 tpm_transmit_cmd +EXPORT_SYMBOL_GPL vmlinux 0x7a6efc0a tps65217_reg_read EXPORT_SYMBOL_GPL vmlinux 0x7a73e605 wm831x_isinkv_values EXPORT_SYMBOL_GPL vmlinux 0x7a7f1396 zs_malloc +EXPORT_SYMBOL_GPL vmlinux 0x7a80d732 __netpoll_setup EXPORT_SYMBOL_GPL vmlinux 0x7a81541b async_synchronize_cookie +EXPORT_SYMBOL_GPL vmlinux 0x7a8770c2 inet_csk_listen_start EXPORT_SYMBOL_GPL vmlinux 0x7a944007 rcu_idle_enter -EXPORT_SYMBOL_GPL vmlinux 0x7aa95af1 device_store_int -EXPORT_SYMBOL_GPL vmlinux 0x7abab33f kthread_queue_delayed_work -EXPORT_SYMBOL_GPL vmlinux 0x7abfe9a1 snd_soc_remove_pcm_runtime -EXPORT_SYMBOL_GPL vmlinux 0x7ac006ab con_debug_enter +EXPORT_SYMBOL_GPL vmlinux 0x7a9a8424 devm_mbox_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x7aac3a7c spi_mem_poll_status EXPORT_SYMBOL_GPL vmlinux 0x7ac10ad8 icst_clk_register EXPORT_SYMBOL_GPL vmlinux 0x7ac722bd phy_all_ports_features_array -EXPORT_SYMBOL_GPL vmlinux 0x7ac9963b spi_mem_dirmap_read EXPORT_SYMBOL_GPL vmlinux 0x7ad02a41 asn1_encode_tag +EXPORT_SYMBOL_GPL vmlinux 0x7ad0cce4 auxiliary_driver_unregister EXPORT_SYMBOL_GPL vmlinux 0x7ad1ded1 pinctrl_register_mappings -EXPORT_SYMBOL_GPL vmlinux 0x7adba5ed pci_generic_config_write -EXPORT_SYMBOL_GPL vmlinux 0x7afb2f46 cpufreq_freq_attr_scaling_boost_freqs -EXPORT_SYMBOL_GPL vmlinux 0x7afe37a0 dma_get_slave_caps -EXPORT_SYMBOL_GPL vmlinux 0x7b0c72aa input_ff_destroy -EXPORT_SYMBOL_GPL vmlinux 0x7b12db7c pci_restore_msi_state +EXPORT_SYMBOL_GPL vmlinux 0x7af9c4e3 devm_create_dev_dax EXPORT_SYMBOL_GPL vmlinux 0x7b178afe unlock_system_sleep -EXPORT_SYMBOL_GPL vmlinux 0x7b209d26 switchdev_bridge_port_unoffload -EXPORT_SYMBOL_GPL vmlinux 0x7b21d8d8 devm_snd_soc_register_component -EXPORT_SYMBOL_GPL vmlinux 0x7b23bf04 gov_attr_set_get -EXPORT_SYMBOL_GPL vmlinux 0x7b30c2df ata_host_resume -EXPORT_SYMBOL_GPL vmlinux 0x7b3b422e irq_domain_update_bus_token -EXPORT_SYMBOL_GPL vmlinux 0x7b4aff6a tcp_get_syncookie_mss +EXPORT_SYMBOL_GPL vmlinux 0x7b17d955 blkcg_root +EXPORT_SYMBOL_GPL vmlinux 0x7b196c5e ahci_platform_resume_host +EXPORT_SYMBOL_GPL vmlinux 0x7b1bf666 devm_phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7b4b7bcd rio_route_clr_table EXPORT_SYMBOL_GPL vmlinux 0x7b5a4926 sha1_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x7b5cc610 __hwspin_lock_timeout -EXPORT_SYMBOL_GPL vmlinux 0x7b8537c3 dma_get_any_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x7b680ad6 i2c_handle_smbus_host_notify +EXPORT_SYMBOL_GPL vmlinux 0x7b6e8f94 usb_register_dev +EXPORT_SYMBOL_GPL vmlinux 0x7b71c885 mtd_ooblayout_ecc +EXPORT_SYMBOL_GPL vmlinux 0x7b71f4da pci_find_next_ext_capability EXPORT_SYMBOL_GPL vmlinux 0x7b8ea197 ethtool_params_from_link_mode -EXPORT_SYMBOL_GPL vmlinux 0x7b8ed663 snd_soc_get_dai_name EXPORT_SYMBOL_GPL vmlinux 0x7b9793a2 get_cpu_idle_time_us -EXPORT_SYMBOL_GPL vmlinux 0x7b9b51fe dst_blackhole_mtu -EXPORT_SYMBOL_GPL vmlinux 0x7baead89 spi_new_device +EXPORT_SYMBOL_GPL vmlinux 0x7b99b600 irq_domain_associate +EXPORT_SYMBOL_GPL vmlinux 0x7ba10945 key_type_user +EXPORT_SYMBOL_GPL vmlinux 0x7ba1b545 dev_pm_opp_get_max_clock_latency +EXPORT_SYMBOL_GPL vmlinux 0x7ba4e47a tegra_xusb_padctl_legacy_probe +EXPORT_SYMBOL_GPL vmlinux 0x7bac0e27 ata_sff_irq_on EXPORT_SYMBOL_GPL vmlinux 0x7bb045a7 __request_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0x7bb36f06 snd_soc_get_xr_sx -EXPORT_SYMBOL_GPL vmlinux 0x7bbcf9dd dma_buf_mmap -EXPORT_SYMBOL_GPL vmlinux 0x7bcee132 usb_set_configuration -EXPORT_SYMBOL_GPL vmlinux 0x7bcf49d7 __mnt_is_readonly -EXPORT_SYMBOL_GPL vmlinux 0x7bed35e3 bus_sort_breadthfirst -EXPORT_SYMBOL_GPL vmlinux 0x7bf655fa of_thermal_is_trip_valid -EXPORT_SYMBOL_GPL vmlinux 0x7c11f4a2 serial8250_init_port -EXPORT_SYMBOL_GPL vmlinux 0x7c17dd19 iomap_seek_data +EXPORT_SYMBOL_GPL vmlinux 0x7bb4cb7b md_allow_write +EXPORT_SYMBOL_GPL vmlinux 0x7bb9a054 nf_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0x7bc3fb79 devm_request_pci_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0x7bc77d2c of_pci_range_parser_init +EXPORT_SYMBOL_GPL vmlinux 0x7bcca978 sdhci_calc_clk +EXPORT_SYMBOL_GPL vmlinux 0x7bdcb5b9 sysfs_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x7be7445f bpf_map_put +EXPORT_SYMBOL_GPL vmlinux 0x7bf6d145 bpf_prog_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7bf9bbd4 dev_pm_opp_of_find_icc_paths +EXPORT_SYMBOL_GPL vmlinux 0x7c01620a devm_hwspin_lock_request_specific +EXPORT_SYMBOL_GPL vmlinux 0x7c0e80e8 debugfs_create_ulong +EXPORT_SYMBOL_GPL vmlinux 0x7c1a1274 ahci_start_fis_rx +EXPORT_SYMBOL_GPL vmlinux 0x7c1d848e mnt_want_write EXPORT_SYMBOL_GPL vmlinux 0x7c291e86 show_rcu_tasks_trace_gp_kthread EXPORT_SYMBOL_GPL vmlinux 0x7c3d8a4b icc_bulk_put -EXPORT_SYMBOL_GPL vmlinux 0x7c42ce99 dma_free_noncontiguous -EXPORT_SYMBOL_GPL vmlinux 0x7c4f9f88 blkcg_policy_unregister -EXPORT_SYMBOL_GPL vmlinux 0x7c50f998 pinconf_generic_dt_node_to_map -EXPORT_SYMBOL_GPL vmlinux 0x7c510df5 iommu_fwspec_free -EXPORT_SYMBOL_GPL vmlinux 0x7c5572bf sata_async_notification EXPORT_SYMBOL_GPL vmlinux 0x7c5968da disable_kprobe -EXPORT_SYMBOL_GPL vmlinux 0x7c6133a1 gpiochip_irqchip_add_domain -EXPORT_SYMBOL_GPL vmlinux 0x7c6cc2da ata_sff_prereset -EXPORT_SYMBOL_GPL vmlinux 0x7c6e12a2 synth_event_trace -EXPORT_SYMBOL_GPL vmlinux 0x7c83ae31 tps65217_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x7c937832 usb_get_descriptor +EXPORT_SYMBOL_GPL vmlinux 0x7c64f7aa ahci_platform_suspend +EXPORT_SYMBOL_GPL vmlinux 0x7c9157ca sdhci_abort_tuning EXPORT_SYMBOL_GPL vmlinux 0x7c983a5d dmi_walk EXPORT_SYMBOL_GPL vmlinux 0x7c9a7371 clk_prepare -EXPORT_SYMBOL_GPL vmlinux 0x7cd2899c snd_soc_unregister_component_by_driver +EXPORT_SYMBOL_GPL vmlinux 0x7ca5acd1 mtd_ooblayout_count_eccbytes +EXPORT_SYMBOL_GPL vmlinux 0x7cd16455 snd_soc_get_volsw_sx +EXPORT_SYMBOL_GPL vmlinux 0x7cd2bd9f tegra_bpmp_transfer EXPORT_SYMBOL_GPL vmlinux 0x7cd6f042 cpufreq_get_current_driver -EXPORT_SYMBOL_GPL vmlinux 0x7ce4475d l3mdev_ifindex_lookup_by_table_id -EXPORT_SYMBOL_GPL vmlinux 0x7ce80164 device_store_bool EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0x7cf5d8a0 fwnode_graph_get_remote_node -EXPORT_SYMBOL_GPL vmlinux 0x7cf814a9 pci_epc_put +EXPORT_SYMBOL_GPL vmlinux 0x7cf2f8f6 fib_new_table EXPORT_SYMBOL_GPL vmlinux 0x7d08f022 iommu_alloc_resv_region -EXPORT_SYMBOL_GPL vmlinux 0x7d0e3154 __traceiter_xdp_bulk_tx -EXPORT_SYMBOL_GPL vmlinux 0x7d25f511 __rio_local_read_config_16 -EXPORT_SYMBOL_GPL vmlinux 0x7d2d064d of_pci_address_to_resource -EXPORT_SYMBOL_GPL vmlinux 0x7d3fd0d9 devm_gpiod_get -EXPORT_SYMBOL_GPL vmlinux 0x7d438208 serdev_device_remove -EXPORT_SYMBOL_GPL vmlinux 0x7d505310 snd_soc_component_disable_pin_unlocked +EXPORT_SYMBOL_GPL vmlinux 0x7d0f0a8f regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7d116fa8 kern_mount +EXPORT_SYMBOL_GPL vmlinux 0x7d19bbed switchdev_bridge_port_unoffload +EXPORT_SYMBOL_GPL vmlinux 0x7d23ff48 dm_noflush_suspending +EXPORT_SYMBOL_GPL vmlinux 0x7d2513b9 pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0x7d2db30a wm8350_read_auxadc +EXPORT_SYMBOL_GPL vmlinux 0x7d40e679 regmap_multi_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x7d446065 pm_runtime_force_suspend +EXPORT_SYMBOL_GPL vmlinux 0x7d47202a ehci_setup +EXPORT_SYMBOL_GPL vmlinux 0x7d4b3cce of_phandle_iterator_init +EXPORT_SYMBOL_GPL vmlinux 0x7d529848 device_pm_wait_for_dev EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq -EXPORT_SYMBOL_GPL vmlinux 0x7d70601c regmap_irq_get_domain -EXPORT_SYMBOL_GPL vmlinux 0x7d70e3b7 ata_ncq_sdev_attrs -EXPORT_SYMBOL_GPL vmlinux 0x7d711c13 irq_chip_set_type_parent -EXPORT_SYMBOL_GPL vmlinux 0x7d7426b8 snd_soc_register_component -EXPORT_SYMBOL_GPL vmlinux 0x7d85470c usb_register_device_driver -EXPORT_SYMBOL_GPL vmlinux 0x7d95551c serial8250_do_set_mctrl -EXPORT_SYMBOL_GPL vmlinux 0x7db83398 crypto_register_algs -EXPORT_SYMBOL_GPL vmlinux 0x7dd367d2 mtk_eint_do_init +EXPORT_SYMBOL_GPL vmlinux 0x7d61d310 sync_page_io +EXPORT_SYMBOL_GPL vmlinux 0x7da52f6b blkcg_print_blkgs +EXPORT_SYMBOL_GPL vmlinux 0x7db987a2 sb800_prefetch +EXPORT_SYMBOL_GPL vmlinux 0x7dcacb42 lp8788_read_byte EXPORT_SYMBOL_GPL vmlinux 0x7dda30af unregister_tracepoint_module_notifier -EXPORT_SYMBOL_GPL vmlinux 0x7de83c31 debugfs_create_x8 -EXPORT_SYMBOL_GPL vmlinux 0x7df22bb5 mtk_pinconf_drive_set_raw -EXPORT_SYMBOL_GPL vmlinux 0x7e027958 snd_soc_dai_set_bclk_ratio -EXPORT_SYMBOL_GPL vmlinux 0x7e08d094 sk_msg_clone -EXPORT_SYMBOL_GPL vmlinux 0x7e397079 usb_gadget_map_request_by_dev +EXPORT_SYMBOL_GPL vmlinux 0x7dfb0039 usb_del_gadget +EXPORT_SYMBOL_GPL vmlinux 0x7e0345a7 extcon_find_edev_by_node +EXPORT_SYMBOL_GPL vmlinux 0x7e04d44c __efivar_entry_iter +EXPORT_SYMBOL_GPL vmlinux 0x7e333794 snd_soc_dapm_put_pin_switch EXPORT_SYMBOL_GPL vmlinux 0x7e3bdecd __ftrace_vprintk -EXPORT_SYMBOL_GPL vmlinux 0x7e4eb8d8 mbox_send_message -EXPORT_SYMBOL_GPL vmlinux 0x7e5ab4d7 dev_pm_opp_of_get_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0x7e3d5d07 tegra_bpmp_get +EXPORT_SYMBOL_GPL vmlinux 0x7e4260cc ahci_set_em_messages +EXPORT_SYMBOL_GPL vmlinux 0x7e42bfbd device_dma_supported +EXPORT_SYMBOL_GPL vmlinux 0x7e50e367 device_phy_find_device EXPORT_SYMBOL_GPL vmlinux 0x7e5db80b pstore_name_to_type +EXPORT_SYMBOL_GPL vmlinux 0x7e5feca7 gpiochip_enable_irq EXPORT_SYMBOL_GPL vmlinux 0x7e606130 snd_soc_calc_bclk EXPORT_SYMBOL_GPL vmlinux 0x7e64181d usb_calc_bus_time -EXPORT_SYMBOL_GPL vmlinux 0x7e7abfc4 phy_driver_is_genphy_10g +EXPORT_SYMBOL_GPL vmlinux 0x7e7093c9 crypto_stats_rng_generate +EXPORT_SYMBOL_GPL vmlinux 0x7e740d75 pcie_flr +EXPORT_SYMBOL_GPL vmlinux 0x7e7b4ed0 pm_generic_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x7e7bd67c dst_blackhole_mtu EXPORT_SYMBOL_GPL vmlinux 0x7e7e3f58 ring_buffer_reset_cpu +EXPORT_SYMBOL_GPL vmlinux 0x7e8411d9 noop_backing_dev_info +EXPORT_SYMBOL_GPL vmlinux 0x7e84a971 pci_disable_pri EXPORT_SYMBOL_GPL vmlinux 0x7e917894 __SCK__tp_func_unmap -EXPORT_SYMBOL_GPL vmlinux 0x7e953d9c serdev_device_write_flush -EXPORT_SYMBOL_GPL vmlinux 0x7e966173 snd_soc_dapm_enable_pin_unlocked +EXPORT_SYMBOL_GPL vmlinux 0x7eaa398f badblocks_store +EXPORT_SYMBOL_GPL vmlinux 0x7eaefc34 musb_get_mode EXPORT_SYMBOL_GPL vmlinux 0x7eb00a3f usb_gadget_giveback_request +EXPORT_SYMBOL_GPL vmlinux 0x7eb14916 exportfs_decode_fh_raw +EXPORT_SYMBOL_GPL vmlinux 0x7eb565c9 tpm_send +EXPORT_SYMBOL_GPL vmlinux 0x7eb7e85a trace_event_buffer_reserve EXPORT_SYMBOL_GPL vmlinux 0x7eb808d0 add_cpu -EXPORT_SYMBOL_GPL vmlinux 0x7ec4ae08 pci_epc_mem_exit -EXPORT_SYMBOL_GPL vmlinux 0x7ecfcb15 of_platform_device_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7ed10c3b ip_route_output_flow EXPORT_SYMBOL_GPL vmlinux 0x7eea6b8b pcap_adc_async -EXPORT_SYMBOL_GPL vmlinux 0x7eef704b syscon_regmap_lookup_by_phandle_optional -EXPORT_SYMBOL_GPL vmlinux 0x7ef71022 ata_sff_drain_fifo -EXPORT_SYMBOL_GPL vmlinux 0x7efb684f md_new_event -EXPORT_SYMBOL_GPL vmlinux 0x7f03047b devm_i2c_add_adapter -EXPORT_SYMBOL_GPL vmlinux 0x7f15448a extcon_set_state +EXPORT_SYMBOL_GPL vmlinux 0x7eed0f3b usb_amd_pt_check_port +EXPORT_SYMBOL_GPL vmlinux 0x7ef8daaf crypto_register_algs +EXPORT_SYMBOL_GPL vmlinux 0x7f0d2dd4 sysfs_remove_link +EXPORT_SYMBOL_GPL vmlinux 0x7f1e2172 meson_pmx_get_func_name EXPORT_SYMBOL_GPL vmlinux 0x7f2623ee mm_account_pinned_pages -EXPORT_SYMBOL_GPL vmlinux 0x7f271481 fwnode_property_read_u32_array -EXPORT_SYMBOL_GPL vmlinux 0x7f363def __mmdrop -EXPORT_SYMBOL_GPL vmlinux 0x7f4e02ef dm_internal_resume -EXPORT_SYMBOL_GPL vmlinux 0x7f514e41 pci_host_probe -EXPORT_SYMBOL_GPL vmlinux 0x7f63c1ea __fput_sync -EXPORT_SYMBOL_GPL vmlinux 0x7f684d6a virtqueue_add_inbuf_ctx -EXPORT_SYMBOL_GPL vmlinux 0x7f6a0844 snd_soc_of_parse_node_prefix -EXPORT_SYMBOL_GPL vmlinux 0x7f73febc scsi_autopm_put_device +EXPORT_SYMBOL_GPL vmlinux 0x7f2c4b48 fuse_dev_fiq_ops +EXPORT_SYMBOL_GPL vmlinux 0x7f3117d1 screen_pos +EXPORT_SYMBOL_GPL vmlinux 0x7f377c07 iomap_readahead +EXPORT_SYMBOL_GPL vmlinux 0x7f648d68 crypto_destroy_tfm +EXPORT_SYMBOL_GPL vmlinux 0x7f70e93a usb_gadget_ep_match_desc +EXPORT_SYMBOL_GPL vmlinux 0x7f790dbf devm_phy_create EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata -EXPORT_SYMBOL_GPL vmlinux 0x7f8bb0b0 of_icc_get_by_index +EXPORT_SYMBOL_GPL vmlinux 0x7f801fa5 usb_hcd_poll_rh_status +EXPORT_SYMBOL_GPL vmlinux 0x7f818f7a ata_scsi_unlock_native_capacity EXPORT_SYMBOL_GPL vmlinux 0x7f8dd2bb bstr_printf -EXPORT_SYMBOL_GPL vmlinux 0x7f8f6c2b blkdev_report_zones -EXPORT_SYMBOL_GPL vmlinux 0x7f97c49c snd_soc_of_parse_card_name -EXPORT_SYMBOL_GPL vmlinux 0x7faf5c6c dma_buf_map_attachment +EXPORT_SYMBOL_GPL vmlinux 0x7fa524aa regulator_set_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0x7faf52f8 inet_csk_addr2sockaddr EXPORT_SYMBOL_GPL vmlinux 0x7fafdec9 clk_fixed_factor_ops -EXPORT_SYMBOL_GPL vmlinux 0x7fb64fc1 bus_register -EXPORT_SYMBOL_GPL vmlinux 0x7fd13c9e user_update -EXPORT_SYMBOL_GPL vmlinux 0x7fd72d8e nfnl_ct_hook -EXPORT_SYMBOL_GPL vmlinux 0x7ffa45d7 snd_soc_dpcm_get_substream -EXPORT_SYMBOL_GPL vmlinux 0x8002088c platform_device_alloc -EXPORT_SYMBOL_GPL vmlinux 0x80052049 __fat_fs_error -EXPORT_SYMBOL_GPL vmlinux 0x800e5c27 usb_gadget_set_state -EXPORT_SYMBOL_GPL vmlinux 0x800f4581 of_dma_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x80126521 pm_genpd_init +EXPORT_SYMBOL_GPL vmlinux 0x7fbcf450 mtd_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fc1e6ad sched_trace_rq_avg_dl +EXPORT_SYMBOL_GPL vmlinux 0x7fc818e7 cpufreq_register_governor +EXPORT_SYMBOL_GPL vmlinux 0x7fd1285f skb_to_sgvec +EXPORT_SYMBOL_GPL vmlinux 0x7fd2cead led_trigger_set +EXPORT_SYMBOL_GPL vmlinux 0x7fe7781a devm_power_supply_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x7ffb310a sched_trace_cfs_rq_cpu EXPORT_SYMBOL_GPL vmlinux 0x801eb65d dev_pm_opp_of_cpumask_remove_table -EXPORT_SYMBOL_GPL vmlinux 0x80271c5e rio_unmap_outb_region +EXPORT_SYMBOL_GPL vmlinux 0x80294dff trace_get_event_file EXPORT_SYMBOL_GPL vmlinux 0x8035bed7 rockchip_clk_protect_critical -EXPORT_SYMBOL_GPL vmlinux 0x8039ae0d dev_fill_metadata_dst -EXPORT_SYMBOL_GPL vmlinux 0x80417f0e __inet_lookup_established +EXPORT_SYMBOL_GPL vmlinux 0x803806f0 devm_thermal_zone_of_sensor_register +EXPORT_SYMBOL_GPL vmlinux 0x803a30b0 cpufreq_cpu_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x8048849c tegra_mc_probe_device EXPORT_SYMBOL_GPL vmlinux 0x805667cf devlink_fmsg_u64_put EXPORT_SYMBOL_GPL vmlinux 0x80584211 misc_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x8060262b blk_execute_rq_nowait EXPORT_SYMBOL_GPL vmlinux 0x806327ea imx_clk_hw_cpu +EXPORT_SYMBOL_GPL vmlinux 0x80660c9f addrconf_add_linklocal +EXPORT_SYMBOL_GPL vmlinux 0x806634ec snd_pcm_lib_default_mmap +EXPORT_SYMBOL_GPL vmlinux 0x80725db8 snd_soc_put_volsw_sx EXPORT_SYMBOL_GPL vmlinux 0x80746ec6 btree_visitor -EXPORT_SYMBOL_GPL vmlinux 0x807bed78 uprobe_register_refctr EXPORT_SYMBOL_GPL vmlinux 0x807fdcc4 call_rcu_tasks_rude -EXPORT_SYMBOL_GPL vmlinux 0x8081b9f3 wakeup_source_remove -EXPORT_SYMBOL_GPL vmlinux 0x80857165 md_kick_rdev_from_array EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested -EXPORT_SYMBOL_GPL vmlinux 0x809a7be1 sdhci_pltfm_unregister -EXPORT_SYMBOL_GPL vmlinux 0x80ac7ec3 security_inode_create +EXPORT_SYMBOL_GPL vmlinux 0x808fd87d snd_soc_bytes_put +EXPORT_SYMBOL_GPL vmlinux 0x809dc8ae lwtunnel_fill_encap +EXPORT_SYMBOL_GPL vmlinux 0x80a7c777 snd_soc_component_read +EXPORT_SYMBOL_GPL vmlinux 0x80ad3ac3 pinctrl_find_and_add_gpio_range EXPORT_SYMBOL_GPL vmlinux 0x80b17b75 omap_get_plat_info EXPORT_SYMBOL_GPL vmlinux 0x80b63c4a tegra20_clk_prepare_emc_mc_same_freq -EXPORT_SYMBOL_GPL vmlinux 0x80c1cf27 pinctrl_parse_index_with_args EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close EXPORT_SYMBOL_GPL vmlinux 0x80d5e57a mpi_free -EXPORT_SYMBOL_GPL vmlinux 0x80e13953 sysfs_group_change_owner -EXPORT_SYMBOL_GPL vmlinux 0x80eb180e init_user_ns +EXPORT_SYMBOL_GPL vmlinux 0x80dbdd2c platform_device_add_data +EXPORT_SYMBOL_GPL vmlinux 0x80eda51e __fscrypt_prepare_setattr +EXPORT_SYMBOL_GPL vmlinux 0x80f72230 class_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0x80ff8522 trace_seq_path +EXPORT_SYMBOL_GPL vmlinux 0x810d8c1e bsg_job_get EXPORT_SYMBOL_GPL vmlinux 0x811dc334 usb_unregister_notify -EXPORT_SYMBOL_GPL vmlinux 0x811ed1a4 security_inode_permission -EXPORT_SYMBOL_GPL vmlinux 0x8122c847 crypto_stats_kpp_generate_public_key -EXPORT_SYMBOL_GPL vmlinux 0x8128eba9 device_remove_properties -EXPORT_SYMBOL_GPL vmlinux 0x8130fb44 arm_iommu_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x8126707d phy_remove_lookup +EXPORT_SYMBOL_GPL vmlinux 0x812bdebd ata_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x812c0d38 device_property_present EXPORT_SYMBOL_GPL vmlinux 0x8135b757 pkcs7_get_content_data -EXPORT_SYMBOL_GPL vmlinux 0x81412414 snd_soc_dapm_kcontrol_widget +EXPORT_SYMBOL_GPL vmlinux 0x813fd039 sdhci_request_atomic +EXPORT_SYMBOL_GPL vmlinux 0x814a9624 crypto_larval_kill EXPORT_SYMBOL_GPL vmlinux 0x815588a6 clk_enable -EXPORT_SYMBOL_GPL vmlinux 0x815c3c1f devlink_flash_update_status_notify +EXPORT_SYMBOL_GPL vmlinux 0x815e6ade dev_pm_genpd_set_performance_state EXPORT_SYMBOL_GPL vmlinux 0x815fda83 sed_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x8168bcf0 subsys_system_register +EXPORT_SYMBOL_GPL vmlinux 0x8164d6d2 dma_max_mapping_size EXPORT_SYMBOL_GPL vmlinux 0x816a41ca cpufreq_update_limits -EXPORT_SYMBOL_GPL vmlinux 0x81702fc9 cci_ace_get_port -EXPORT_SYMBOL_GPL vmlinux 0x8178bb7a dapm_pinctrl_event EXPORT_SYMBOL_GPL vmlinux 0x8180cede asn1_encode_sequence -EXPORT_SYMBOL_GPL vmlinux 0x81a2f041 blkcg_deactivate_policy -EXPORT_SYMBOL_GPL vmlinux 0x81ac95f8 tpm_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0x818820ba shmem_file_setup +EXPORT_SYMBOL_GPL vmlinux 0x8194a95c mtk_pinconf_drive_set +EXPORT_SYMBOL_GPL vmlinux 0x81a987e6 clk_hw_get_parent_by_index EXPORT_SYMBOL_GPL vmlinux 0x81b03377 efivar_entry_set_safe -EXPORT_SYMBOL_GPL vmlinux 0x81b70337 pid_vnr -EXPORT_SYMBOL_GPL vmlinux 0x81c22983 apply_to_existing_page_range -EXPORT_SYMBOL_GPL vmlinux 0x81cc7597 seg6_do_srh_inline -EXPORT_SYMBOL_GPL vmlinux 0x81dff87e wbt_enable_default -EXPORT_SYMBOL_GPL vmlinux 0x81e60a40 sysfs_remove_groups -EXPORT_SYMBOL_GPL vmlinux 0x81eb03ac sock_diag_register +EXPORT_SYMBOL_GPL vmlinux 0x81b509ea vp_modern_queue_vector +EXPORT_SYMBOL_GPL vmlinux 0x81b99adb irq_domain_xlate_onetwocell +EXPORT_SYMBOL_GPL vmlinux 0x81bbb532 phy_resolve_aneg_pause +EXPORT_SYMBOL_GPL vmlinux 0x81c8da40 devm_i2c_add_adapter +EXPORT_SYMBOL_GPL vmlinux 0x81cb6581 nand_select_target +EXPORT_SYMBOL_GPL vmlinux 0x81de8987 handle_simple_irq +EXPORT_SYMBOL_GPL vmlinux 0x81e7912c ahci_host_activate EXPORT_SYMBOL_GPL vmlinux 0x81ee81f0 percpu_ref_reinit +EXPORT_SYMBOL_GPL vmlinux 0x81f36cb6 __pm_stay_awake EXPORT_SYMBOL_GPL vmlinux 0x81f372a2 unregister_ftrace_export -EXPORT_SYMBOL_GPL vmlinux 0x81fa88a6 mmu_interval_notifier_remove -EXPORT_SYMBOL_GPL vmlinux 0x81ff41c8 mtd_is_locked +EXPORT_SYMBOL_GPL vmlinux 0x81f5e342 tty_port_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0x81f8af7d snd_soc_dapm_force_enable_pin_unlocked +EXPORT_SYMBOL_GPL vmlinux 0x81fc3d02 nand_ecc_cleanup_req_tweaking EXPORT_SYMBOL_GPL vmlinux 0x8202b650 irq_set_affinity -EXPORT_SYMBOL_GPL vmlinux 0x8205092c snd_soc_runtime_action -EXPORT_SYMBOL_GPL vmlinux 0x8209fb37 fsverity_ioctl_read_metadata -EXPORT_SYMBOL_GPL vmlinux 0x820c94bf phy_power_on -EXPORT_SYMBOL_GPL vmlinux 0x8213807e iommu_group_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x821510d3 pinctrl_generic_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x821e2144 usb_put_intf EXPORT_SYMBOL_GPL vmlinux 0x821ec7f1 clk_mux_ro_ops EXPORT_SYMBOL_GPL vmlinux 0x82226c53 pinctrl_unregister_mappings -EXPORT_SYMBOL_GPL vmlinux 0x824ab64e sched_trace_cfs_rq_path -EXPORT_SYMBOL_GPL vmlinux 0x82524bf4 edac_pci_release_generic_ctl -EXPORT_SYMBOL_GPL vmlinux 0x8265963b gpiod_count -EXPORT_SYMBOL_GPL vmlinux 0x826c9276 phy_modify -EXPORT_SYMBOL_GPL vmlinux 0x827720d9 xdp_return_frame -EXPORT_SYMBOL_GPL vmlinux 0x82772428 of_clk_hw_simple_get -EXPORT_SYMBOL_GPL vmlinux 0x8286dc14 netlink_add_tap -EXPORT_SYMBOL_GPL vmlinux 0x829006d8 housekeeping_affine +EXPORT_SYMBOL_GPL vmlinux 0x8227e521 nvmem_cell_read_u16 +EXPORT_SYMBOL_GPL vmlinux 0x822f6729 iomap_readpage +EXPORT_SYMBOL_GPL vmlinux 0x8240e2b1 generic_fh_to_parent +EXPORT_SYMBOL_GPL vmlinux 0x8243901e ulpi_viewport_access_ops +EXPORT_SYMBOL_GPL vmlinux 0x825cc6a5 uart_handle_cts_change +EXPORT_SYMBOL_GPL vmlinux 0x8266ea69 blockdev_superblock +EXPORT_SYMBOL_GPL vmlinux 0x82718c7d __spi_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x829b3bbd fat_remove_entries +EXPORT_SYMBOL_GPL vmlinux 0x829b41db regulator_allow_bypass +EXPORT_SYMBOL_GPL vmlinux 0x829caf7e page_cache_async_ra +EXPORT_SYMBOL_GPL vmlinux 0x82a38ecd dma_alloc_pages EXPORT_SYMBOL_GPL vmlinux 0x82a80545 __SCK__tp_func_fdb_delete -EXPORT_SYMBOL_GPL vmlinux 0x82b86268 bpf_prog_inc -EXPORT_SYMBOL_GPL vmlinux 0x82c32f82 regulator_bulk_force_disable -EXPORT_SYMBOL_GPL vmlinux 0x82c5aac6 irq_gc_ack_set_bit -EXPORT_SYMBOL_GPL vmlinux 0x82c88e97 driver_register -EXPORT_SYMBOL_GPL vmlinux 0x82d4ea4c led_trigger_blink +EXPORT_SYMBOL_GPL vmlinux 0x82aaacab serial8250_do_set_mctrl +EXPORT_SYMBOL_GPL vmlinux 0x82c2e6b0 serdev_controller_add +EXPORT_SYMBOL_GPL vmlinux 0x82ca6a2a stmpe_enable +EXPORT_SYMBOL_GPL vmlinux 0x82d048cc debugfs_attr_read +EXPORT_SYMBOL_GPL vmlinux 0x82d38ae4 spi_slave_abort +EXPORT_SYMBOL_GPL vmlinux 0x82d76faa dm_internal_suspend_noflush EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure -EXPORT_SYMBOL_GPL vmlinux 0x82dcf789 snd_pcm_stream_lock_irq EXPORT_SYMBOL_GPL vmlinux 0x82e22c44 srcu_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0x82f192a9 register_asymmetric_key_parser -EXPORT_SYMBOL_GPL vmlinux 0x82f2ab61 devlink_params_unpublish -EXPORT_SYMBOL_GPL vmlinux 0x82f4b0ba blk_trace_remove +EXPORT_SYMBOL_GPL vmlinux 0x82e7a773 nf_queue_entry_get_refs +EXPORT_SYMBOL_GPL vmlinux 0x82f7b328 dma_map_sgtable EXPORT_SYMBOL_GPL vmlinux 0x82ff4b95 clk_hw_unregister_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0x83036009 devres_destroy -EXPORT_SYMBOL_GPL vmlinux 0x832aa242 dev_pm_domain_attach_by_name -EXPORT_SYMBOL_GPL vmlinux 0x83347ca6 ata_host_init +EXPORT_SYMBOL_GPL vmlinux 0x83035f02 __skb_get_hash_symmetric +EXPORT_SYMBOL_GPL vmlinux 0x831b31a4 clk_bulk_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x8322698d rtnl_put_cacheinfo +EXPORT_SYMBOL_GPL vmlinux 0x83263cb6 tcp_set_state +EXPORT_SYMBOL_GPL vmlinux 0x832c974f rockchip_clk_register_armclk EXPORT_SYMBOL_GPL vmlinux 0x8339df73 klist_add_behind -EXPORT_SYMBOL_GPL vmlinux 0x83405118 dm_table_set_type -EXPORT_SYMBOL_GPL vmlinux 0x83408df3 __percpu_down_read +EXPORT_SYMBOL_GPL vmlinux 0x833e0479 devm_regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8343aec1 get_kernel_pages EXPORT_SYMBOL_GPL vmlinux 0x8349a895 nvmem_device_put -EXPORT_SYMBOL_GPL vmlinux 0x83611516 pci_iov_virtfn_devfn -EXPORT_SYMBOL_GPL vmlinux 0x83613b15 serdev_device_set_flow_control -EXPORT_SYMBOL_GPL vmlinux 0x8382b99a usb_disable_ltm -EXPORT_SYMBOL_GPL vmlinux 0x83849d7f dev_pm_opp_find_freq_exact +EXPORT_SYMBOL_GPL vmlinux 0x837bb890 usb_gen_phy_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x837bf8ed gpiochip_line_is_open_drain +EXPORT_SYMBOL_GPL vmlinux 0x83827723 gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0x838551a8 __traceiter_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0x838a9df9 sdio_readb +EXPORT_SYMBOL_GPL vmlinux 0x8391e3c7 regulator_set_voltage EXPORT_SYMBOL_GPL vmlinux 0x83971642 enable_kprobe -EXPORT_SYMBOL_GPL vmlinux 0x839fb645 unregister_virtio_device -EXPORT_SYMBOL_GPL vmlinux 0x83a612b0 rio_release_inb_mbox -EXPORT_SYMBOL_GPL vmlinux 0x83b7c456 shmem_truncate_range -EXPORT_SYMBOL_GPL vmlinux 0x83bd464a bus_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x83dab608 fat_fill_super -EXPORT_SYMBOL_GPL vmlinux 0x83e27a5f ata_bmdma_qc_prep -EXPORT_SYMBOL_GPL vmlinux 0x83e3a13c gpiod_set_config -EXPORT_SYMBOL_GPL vmlinux 0x83eeaf00 platform_get_irq_byname_optional -EXPORT_SYMBOL_GPL vmlinux 0x83f14c3c usb_put_hcd -EXPORT_SYMBOL_GPL vmlinux 0x83f911e5 __netpoll_free +EXPORT_SYMBOL_GPL vmlinux 0x83a0a686 __list_lru_init +EXPORT_SYMBOL_GPL vmlinux 0x83ac5f14 devm_pinctrl_register +EXPORT_SYMBOL_GPL vmlinux 0x83add908 snd_soc_dapm_get_enum_double +EXPORT_SYMBOL_GPL vmlinux 0x83da6857 dev_pm_opp_of_get_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0x83e12854 pinctrl_dev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x83f649f1 mptcp_pm_get_add_addr_accept_max +EXPORT_SYMBOL_GPL vmlinux 0x83fae094 devlink_dpipe_entry_ctx_append EXPORT_SYMBOL_GPL vmlinux 0x84051646 sbitmap_queue_clear -EXPORT_SYMBOL_GPL vmlinux 0x8407efe5 ata_scsi_change_queue_depth -EXPORT_SYMBOL_GPL vmlinux 0x840de56d blk_set_pm_only +EXPORT_SYMBOL_GPL vmlinux 0x840e3de1 virtio_device_restore EXPORT_SYMBOL_GPL vmlinux 0x84106f36 devlink_trap_ctx_priv +EXPORT_SYMBOL_GPL vmlinux 0x8411dac7 usb_get_descriptor EXPORT_SYMBOL_GPL vmlinux 0x84264ced fs_umode_to_ftype -EXPORT_SYMBOL_GPL vmlinux 0x842b6537 of_resolve_phandles -EXPORT_SYMBOL_GPL vmlinux 0x84332a7e class_compat_remove_link -EXPORT_SYMBOL_GPL vmlinux 0x843bd813 mtk_pinconf_bias_set_rev1 -EXPORT_SYMBOL_GPL vmlinux 0x84430d5f fsnotify_get_group +EXPORT_SYMBOL_GPL vmlinux 0x843a860b tc3589x_reg_write EXPORT_SYMBOL_GPL vmlinux 0x844712df perf_event_cgrp_subsys_on_dfl_key EXPORT_SYMBOL_GPL vmlinux 0x844cb904 mtk_mutex_remove_comp +EXPORT_SYMBOL_GPL vmlinux 0x844d993d devfreq_event_enable_edev EXPORT_SYMBOL_GPL vmlinux 0x84502a47 blk_status_to_errno +EXPORT_SYMBOL_GPL vmlinux 0x84507245 ping_close +EXPORT_SYMBOL_GPL vmlinux 0x8459af83 sch_frag_xmit_hook EXPORT_SYMBOL_GPL vmlinux 0x845aa3dc lpddr2_jedec_timings EXPORT_SYMBOL_GPL vmlinux 0x845b2069 usb_show_dynids -EXPORT_SYMBOL_GPL vmlinux 0x845f9e64 of_genpd_del_provider +EXPORT_SYMBOL_GPL vmlinux 0x845e06d6 xfrm_state_afinfo_get_rcu EXPORT_SYMBOL_GPL vmlinux 0x8462cb62 atapi_cmd_type -EXPORT_SYMBOL_GPL vmlinux 0x84768284 ata_bmdma_start -EXPORT_SYMBOL_GPL vmlinux 0x847fd81f da903x_writes -EXPORT_SYMBOL_GPL vmlinux 0x84879cd0 find_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0x848b20fd dev_pm_qos_flags -EXPORT_SYMBOL_GPL vmlinux 0x849f82ff devm_spi_mem_dirmap_create +EXPORT_SYMBOL_GPL vmlinux 0x846e4511 irq_domain_free_irqs_common +EXPORT_SYMBOL_GPL vmlinux 0x8477bff8 bsg_job_done +EXPORT_SYMBOL_GPL vmlinux 0x848b88d9 sm501_unit_power +EXPORT_SYMBOL_GPL vmlinux 0x84935e6f fsnotify_alloc_user_group +EXPORT_SYMBOL_GPL vmlinux 0x8498b127 spi_mem_supports_op +EXPORT_SYMBOL_GPL vmlinux 0x84a5451b clk_hw_get_parent_index EXPORT_SYMBOL_GPL vmlinux 0x84a8d0eb of_changeset_revert -EXPORT_SYMBOL_GPL vmlinux 0x84ad497c irq_chip_mask_ack_parent -EXPORT_SYMBOL_GPL vmlinux 0x84b36d59 bus_set_iommu -EXPORT_SYMBOL_GPL vmlinux 0x84ce2ba4 __devm_regmap_init_spi -EXPORT_SYMBOL_GPL vmlinux 0x84da2a6b phy_remove_lookup -EXPORT_SYMBOL_GPL vmlinux 0x84dd8070 devlink_trap_groups_register -EXPORT_SYMBOL_GPL vmlinux 0x84e01d72 vp_modern_config_vector -EXPORT_SYMBOL_GPL vmlinux 0x84e19961 crypto_alloc_shash -EXPORT_SYMBOL_GPL vmlinux 0x84e6fb17 __class_create -EXPORT_SYMBOL_GPL vmlinux 0x84f940f4 irq_domain_translate_onecell -EXPORT_SYMBOL_GPL vmlinux 0x8505a2e5 class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x84aa3e8c ncsi_vlan_rx_kill_vid +EXPORT_SYMBOL_GPL vmlinux 0x84b9b152 uart_handle_dcd_change +EXPORT_SYMBOL_GPL vmlinux 0x84bb2c5f user_describe +EXPORT_SYMBOL_GPL vmlinux 0x84bc50be snd_soc_dapm_put_volsw +EXPORT_SYMBOL_GPL vmlinux 0x84d735ba regulator_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x84d7aec9 devm_irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x84fce66d crypto_default_rng EXPORT_SYMBOL_GPL vmlinux 0x8506baa8 clk_unregister_gate +EXPORT_SYMBOL_GPL vmlinux 0x8507be8e ehci_suspend EXPORT_SYMBOL_GPL vmlinux 0x850bb6db devlink_health_reporter_destroy -EXPORT_SYMBOL_GPL vmlinux 0x850e4b51 devm_thermal_zone_of_sensor_register -EXPORT_SYMBOL_GPL vmlinux 0x85157596 phy_set_speed EXPORT_SYMBOL_GPL vmlinux 0x851e6003 usb_phy_roothub_calibrate EXPORT_SYMBOL_GPL vmlinux 0x851fe124 __SCK__tp_func_fib6_table_lookup -EXPORT_SYMBOL_GPL vmlinux 0x85295540 __put_mtd_device -EXPORT_SYMBOL_GPL vmlinux 0x852bb3c2 mtk_pinconf_bias_set -EXPORT_SYMBOL_GPL vmlinux 0x8537fe44 crypto_skcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x85367681 __mnt_is_readonly +EXPORT_SYMBOL_GPL vmlinux 0x854110ba fib_rules_lookup +EXPORT_SYMBOL_GPL vmlinux 0x854ba5bf crypto_alloc_acomp EXPORT_SYMBOL_GPL vmlinux 0x85540ebc nvmem_cell_put -EXPORT_SYMBOL_GPL vmlinux 0x8557df3a snd_soc_dapm_weak_routes -EXPORT_SYMBOL_GPL vmlinux 0x855eca18 led_set_brightness_nosleep +EXPORT_SYMBOL_GPL vmlinux 0x855447e1 led_trigger_blink +EXPORT_SYMBOL_GPL vmlinux 0x8557b746 crypto_stats_akcipher_decrypt EXPORT_SYMBOL_GPL vmlinux 0x85647219 alarm_init EXPORT_SYMBOL_GPL vmlinux 0x8574ca6c gpio_request_array -EXPORT_SYMBOL_GPL vmlinux 0x8578376d __traceiter_pelt_irq_tp -EXPORT_SYMBOL_GPL vmlinux 0x857ae8c9 devm_regmap_add_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0x85948e3d devfreq_cooling_register -EXPORT_SYMBOL_GPL vmlinux 0x859527c0 devm_serdev_device_open +EXPORT_SYMBOL_GPL vmlinux 0x85772018 sysfs_create_link +EXPORT_SYMBOL_GPL vmlinux 0x858b9089 iommu_get_domain_for_dev +EXPORT_SYMBOL_GPL vmlinux 0x858e072b iommu_fwspec_add_ids +EXPORT_SYMBOL_GPL vmlinux 0x859372b6 loop_backing_file +EXPORT_SYMBOL_GPL vmlinux 0x85a2215e sysfs_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x85a86c0a watchdog_set_restart_priority +EXPORT_SYMBOL_GPL vmlinux 0x85aa33d8 fb_deferred_io_open EXPORT_SYMBOL_GPL vmlinux 0x85ac18e2 sprint_OID -EXPORT_SYMBOL_GPL vmlinux 0x85b3bb29 snd_soc_component_write_field -EXPORT_SYMBOL_GPL vmlinux 0x85b88c2a usb_hcd_pci_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x85c32e3d ahci_platform_init_host +EXPORT_SYMBOL_GPL vmlinux 0x85acadde dm_copy_name_and_uuid EXPORT_SYMBOL_GPL vmlinux 0x85c54b61 efivar_validate -EXPORT_SYMBOL_GPL vmlinux 0x85d279a0 __iptunnel_pull_header -EXPORT_SYMBOL_GPL vmlinux 0x85d59f81 nf_hook_entries_delete_raw -EXPORT_SYMBOL_GPL vmlinux 0x85e1611c usb_hcd_is_primary_hcd -EXPORT_SYMBOL_GPL vmlinux 0x85eebecf irq_of_parse_and_map -EXPORT_SYMBOL_GPL vmlinux 0x85f6dcb5 driver_create_file +EXPORT_SYMBOL_GPL vmlinux 0x85cd3d8e cpufreq_cooling_unregister +EXPORT_SYMBOL_GPL vmlinux 0x85e2a448 of_reset_control_array_get +EXPORT_SYMBOL_GPL vmlinux 0x85e8ee47 skb_partial_csum_set +EXPORT_SYMBOL_GPL vmlinux 0x85f74c1f tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x8605d5ff ata_ncq_sdev_attrs EXPORT_SYMBOL_GPL vmlinux 0x860a2eab bch_decode +EXPORT_SYMBOL_GPL vmlinux 0x860fb87d led_trigger_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8621df5e of_genpd_add_device EXPORT_SYMBOL_GPL vmlinux 0x862258db timecounter_init +EXPORT_SYMBOL_GPL vmlinux 0x862aad89 ip6_dst_lookup EXPORT_SYMBOL_GPL vmlinux 0x862bb17b linear_range_values_in_range_array -EXPORT_SYMBOL_GPL vmlinux 0x863bfc0a input_ff_create +EXPORT_SYMBOL_GPL vmlinux 0x8634b4cb proc_create_net_single +EXPORT_SYMBOL_GPL vmlinux 0x8638660c mtd_kmalloc_up_to +EXPORT_SYMBOL_GPL vmlinux 0x8642232a regmap_noinc_read +EXPORT_SYMBOL_GPL vmlinux 0x8642c30d crypto_register_skciphers +EXPORT_SYMBOL_GPL vmlinux 0x864f45c9 of_genpd_add_subdomain EXPORT_SYMBOL_GPL vmlinux 0x86585a33 devlink_fmsg_obj_nest_start -EXPORT_SYMBOL_GPL vmlinux 0x8668e3ec clk_hw_set_rate_range -EXPORT_SYMBOL_GPL vmlinux 0x866a318c lwtunnel_encap_del_ops +EXPORT_SYMBOL_GPL vmlinux 0x86634b7c ata_host_suspend +EXPORT_SYMBOL_GPL vmlinux 0x86692701 amba_apb_device_add_res EXPORT_SYMBOL_GPL vmlinux 0x8677245d unregister_switchdev_blocking_notifier -EXPORT_SYMBOL_GPL vmlinux 0x86790c64 usb_put_phy -EXPORT_SYMBOL_GPL vmlinux 0x867c691c fuse_free_conn -EXPORT_SYMBOL_GPL vmlinux 0x867f6580 tty_ldisc_ref_wait +EXPORT_SYMBOL_GPL vmlinux 0x867a4c1d disk_uevent EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get -EXPORT_SYMBOL_GPL vmlinux 0x8687a649 devlink_dpipe_table_register -EXPORT_SYMBOL_GPL vmlinux 0x86946bd3 adp5520_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x86a139b1 sk_clone_lock -EXPORT_SYMBOL_GPL vmlinux 0x86a4179a devm_rtc_allocate_device +EXPORT_SYMBOL_GPL vmlinux 0x86979e1a sk_msg_memcopy_from_iter EXPORT_SYMBOL_GPL vmlinux 0x86b427ce clkdev_create -EXPORT_SYMBOL_GPL vmlinux 0x86b57400 rio_request_outb_dbell -EXPORT_SYMBOL_GPL vmlinux 0x86c1fc55 led_blink_set -EXPORT_SYMBOL_GPL vmlinux 0x86c4abcf fscrypt_show_test_dummy_encryption +EXPORT_SYMBOL_GPL vmlinux 0x86bb70d8 __traceiter_block_rq_remap EXPORT_SYMBOL_GPL vmlinux 0x86c961b3 __set_dax_synchronous +EXPORT_SYMBOL_GPL vmlinux 0x86d56e90 blkg_prfill_rwstat EXPORT_SYMBOL_GPL vmlinux 0x86dda6ef rtm_getroute_parse_ip_proto EXPORT_SYMBOL_GPL vmlinux 0x86e7a634 alarm_start_relative -EXPORT_SYMBOL_GPL vmlinux 0x86f0ae83 nand_read_oob_op +EXPORT_SYMBOL_GPL vmlinux 0x86eb4653 fsnotify_init_mark EXPORT_SYMBOL_GPL vmlinux 0x86f6b99d synchronize_rcu_expedited EXPORT_SYMBOL_GPL vmlinux 0x86f85114 net_dec_egress_queue -EXPORT_SYMBOL_GPL vmlinux 0x87050944 __traceiter_add_device_to_group -EXPORT_SYMBOL_GPL vmlinux 0x87173228 clk_hw_register_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0x871a6949 nand_read_data_op -EXPORT_SYMBOL_GPL vmlinux 0x871c33b6 bpf_trace_run5 -EXPORT_SYMBOL_GPL vmlinux 0x871fc026 snd_soc_free_ac97_component -EXPORT_SYMBOL_GPL vmlinux 0x872838ca dax_copy_to_iter -EXPORT_SYMBOL_GPL vmlinux 0x873045b2 usb_reset_configuration -EXPORT_SYMBOL_GPL vmlinux 0x873e5e67 iomap_bmap -EXPORT_SYMBOL_GPL vmlinux 0x874423f3 i2c_handle_smbus_host_notify -EXPORT_SYMBOL_GPL vmlinux 0x8750e6c0 mnt_want_write -EXPORT_SYMBOL_GPL vmlinux 0x87646c38 platform_msi_domain_alloc_irqs -EXPORT_SYMBOL_GPL vmlinux 0x876c7478 pci_create_slot -EXPORT_SYMBOL_GPL vmlinux 0x877a0a19 xfrm_audit_policy_delete -EXPORT_SYMBOL_GPL vmlinux 0x877c2e28 blk_ksm_init_passthrough -EXPORT_SYMBOL_GPL vmlinux 0x877f4721 sdio_release_irq -EXPORT_SYMBOL_GPL vmlinux 0x87838b4d dt_init_idle_driver -EXPORT_SYMBOL_GPL vmlinux 0x878b089e gpiochip_irq_domain_deactivate -EXPORT_SYMBOL_GPL vmlinux 0x878bfc1b phy_package_join -EXPORT_SYMBOL_GPL vmlinux 0x8793cf0e tty_set_ldisc -EXPORT_SYMBOL_GPL vmlinux 0x87a23739 gpiod_get -EXPORT_SYMBOL_GPL vmlinux 0x87a3bbeb pm_genpd_remove_device -EXPORT_SYMBOL_GPL vmlinux 0x87b132cc gpiod_get_direction -EXPORT_SYMBOL_GPL vmlinux 0x87b9fe7c virtio_max_dma_size +EXPORT_SYMBOL_GPL vmlinux 0x87055d57 usb_driver_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0x8712b464 devm_regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x871f10bc pm_generic_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0x8722c37b dummy_con +EXPORT_SYMBOL_GPL vmlinux 0x87416000 fwnode_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x875cf786 relay_close +EXPORT_SYMBOL_GPL vmlinux 0x877cc607 uprobe_unregister +EXPORT_SYMBOL_GPL vmlinux 0x878bf44a ata_sas_port_init +EXPORT_SYMBOL_GPL vmlinux 0x878f445d kthread_mod_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0x87a81430 fb_deferred_io_fsync EXPORT_SYMBOL_GPL vmlinux 0x87c4f1ca usb_ep_fifo_flush -EXPORT_SYMBOL_GPL vmlinux 0x87c8265f crypto_skcipher_setkey -EXPORT_SYMBOL_GPL vmlinux 0x87d2b208 fsverity_prepare_setattr -EXPORT_SYMBOL_GPL vmlinux 0x87fceecf rio_map_outb_region -EXPORT_SYMBOL_GPL vmlinux 0x8801fb64 nand_gpio_waitrdy -EXPORT_SYMBOL_GPL vmlinux 0x8805020d icmp_build_probe +EXPORT_SYMBOL_GPL vmlinux 0x87c687b8 tps65912_device_exit +EXPORT_SYMBOL_GPL vmlinux 0x87d18544 dev_pm_opp_get_freq +EXPORT_SYMBOL_GPL vmlinux 0x87dd5669 max8997_write_reg +EXPORT_SYMBOL_GPL vmlinux 0x87ddf308 tps6586x_writes +EXPORT_SYMBOL_GPL vmlinux 0x87de2fb1 dma_get_required_mask +EXPORT_SYMBOL_GPL vmlinux 0x87e23a2c __bio_try_merge_page +EXPORT_SYMBOL_GPL vmlinux 0x87f02c29 devres_close_group +EXPORT_SYMBOL_GPL vmlinux 0x87f047c8 devfreq_get_devfreq_by_node +EXPORT_SYMBOL_GPL vmlinux 0x87f23ba6 edac_pci_release_generic_ctl EXPORT_SYMBOL_GPL vmlinux 0x8805a073 blocking_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x8806f13b thermal_zone_bind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0x88083bf6 switchdev_port_obj_add EXPORT_SYMBOL_GPL vmlinux 0x880ef295 property_entries_dup EXPORT_SYMBOL_GPL vmlinux 0x8810e36e pci_bridge_emul_conf_read -EXPORT_SYMBOL_GPL vmlinux 0x8835b26b da9052_free_irq -EXPORT_SYMBOL_GPL vmlinux 0x88393025 pci_disable_pri -EXPORT_SYMBOL_GPL vmlinux 0x883d1d5c fib_rules_lookup +EXPORT_SYMBOL_GPL vmlinux 0x881ee9cb usb_put_dev +EXPORT_SYMBOL_GPL vmlinux 0x88275edf disk_force_media_change +EXPORT_SYMBOL_GPL vmlinux 0x882bbe73 perf_pmu_register +EXPORT_SYMBOL_GPL vmlinux 0x8848617c fuse_do_open EXPORT_SYMBOL_GPL vmlinux 0x885528a6 ring_buffer_discard_commit -EXPORT_SYMBOL_GPL vmlinux 0x8865574a inet6_sk_rebuild_header -EXPORT_SYMBOL_GPL vmlinux 0x886a4cbf wm8350_reg_lock -EXPORT_SYMBOL_GPL vmlinux 0x886c3255 bpf_prog_get_type_dev -EXPORT_SYMBOL_GPL vmlinux 0x88706caf fwnode_get_nth_parent -EXPORT_SYMBOL_GPL vmlinux 0x888a09f1 snd_power_ref_and_wait -EXPORT_SYMBOL_GPL vmlinux 0x88919c0c __efivar_entry_get -EXPORT_SYMBOL_GPL vmlinux 0x88949c2e badblocks_show -EXPORT_SYMBOL_GPL vmlinux 0x88a461ea input_ff_erase +EXPORT_SYMBOL_GPL vmlinux 0x8863e3f8 ip_valid_fib_dump_req +EXPORT_SYMBOL_GPL vmlinux 0x886db041 edac_device_del_device +EXPORT_SYMBOL_GPL vmlinux 0x88748dc0 blkg_conf_prep +EXPORT_SYMBOL_GPL vmlinux 0x88977f79 da9052_free_irq EXPORT_SYMBOL_GPL vmlinux 0x88ab6fe3 kgdb_active EXPORT_SYMBOL_GPL vmlinux 0x88b4ae92 ring_buffer_normalize_time_stamp -EXPORT_SYMBOL_GPL vmlinux 0x88c18452 aead_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x88c7d804 fuse_dev_free -EXPORT_SYMBOL_GPL vmlinux 0x88c8e705 snd_soc_component_read -EXPORT_SYMBOL_GPL vmlinux 0x88db8b89 tcp_bpf_sendmsg_redir -EXPORT_SYMBOL_GPL vmlinux 0x88de43c1 tty_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x88de55ab perf_tp_event -EXPORT_SYMBOL_GPL vmlinux 0x89093c07 __devm_regmap_init_mmio_clk -EXPORT_SYMBOL_GPL vmlinux 0x891ae13d ata_dev_disable -EXPORT_SYMBOL_GPL vmlinux 0x8923f09e __pm_runtime_idle +EXPORT_SYMBOL_GPL vmlinux 0x88b9f8c1 tty_port_tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x88cd691b pci_vpd_alloc +EXPORT_SYMBOL_GPL vmlinux 0x88e7cb34 xfrm_dev_offload_ok +EXPORT_SYMBOL_GPL vmlinux 0x88f6e16e spi_take_timestamp_post +EXPORT_SYMBOL_GPL vmlinux 0x8902ef0c inet_csk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x8906235e cpufreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x890990bd security_kernel_post_read_file +EXPORT_SYMBOL_GPL vmlinux 0x8913068f pci_find_host_bridge +EXPORT_SYMBOL_GPL vmlinux 0x89142a55 dev_attr_em_message EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state -EXPORT_SYMBOL_GPL vmlinux 0x8926cd0c usb_unlocked_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x89268101 snd_soc_component_compr_get_params EXPORT_SYMBOL_GPL vmlinux 0x893abbdd devlink_fmsg_u32_pair_put -EXPORT_SYMBOL_GPL vmlinux 0x893c4e57 rt_mutex_unlock -EXPORT_SYMBOL_GPL vmlinux 0x89458401 iomap_readpage -EXPORT_SYMBOL_GPL vmlinux 0x8946c84f sdhci_enable_v4_mode +EXPORT_SYMBOL_GPL vmlinux 0x8947857f kernfs_path_from_node +EXPORT_SYMBOL_GPL vmlinux 0x894786d1 sdhci_cqe_irq EXPORT_SYMBOL_GPL vmlinux 0x89485687 iommu_group_put -EXPORT_SYMBOL_GPL vmlinux 0x8949ecb5 raw_unhash_sk +EXPORT_SYMBOL_GPL vmlinux 0x894c34b7 regcache_sync_region EXPORT_SYMBOL_GPL vmlinux 0x8954dc8e __SCK__tp_func_br_fdb_external_learn_add -EXPORT_SYMBOL_GPL vmlinux 0x8966566e irq_set_chip_and_handler_name -EXPORT_SYMBOL_GPL vmlinux 0x89674f4b nanddev_isbad -EXPORT_SYMBOL_GPL vmlinux 0x8968f283 switchdev_port_attr_set EXPORT_SYMBOL_GPL vmlinux 0x896f275c __sbitmap_queue_get_shallow -EXPORT_SYMBOL_GPL vmlinux 0x8972ac36 pcie_port_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x898e6fcb snd_soc_unregister_component +EXPORT_SYMBOL_GPL vmlinux 0x897388fd devm_regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x898cfba0 stmpe_block_read +EXPORT_SYMBOL_GPL vmlinux 0x898ff3cc strp_init +EXPORT_SYMBOL_GPL vmlinux 0x8998b8f5 sdhci_runtime_resume_host EXPORT_SYMBOL_GPL vmlinux 0x899ae459 kobject_init_and_add -EXPORT_SYMBOL_GPL vmlinux 0x89a379cd __traceiter_fib6_table_lookup -EXPORT_SYMBOL_GPL vmlinux 0x89ab0ec5 apply_to_page_range -EXPORT_SYMBOL_GPL vmlinux 0x89ad95d6 rio_lock_device -EXPORT_SYMBOL_GPL vmlinux 0x89b04d41 nanddev_bbt_update -EXPORT_SYMBOL_GPL vmlinux 0x89bba83e ping_init_sock +EXPORT_SYMBOL_GPL vmlinux 0x89b540ca dw8250_setup_port +EXPORT_SYMBOL_GPL vmlinux 0x89b6c089 __irq_alloc_domain_generic_chips EXPORT_SYMBOL_GPL vmlinux 0x89bbafc6 usb_register_notify EXPORT_SYMBOL_GPL vmlinux 0x89bfe270 __wake_up_locked_key_bookmark -EXPORT_SYMBOL_GPL vmlinux 0x89c12c79 ata_port_desc -EXPORT_SYMBOL_GPL vmlinux 0x89c33c78 extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x89c27183 mtk_is_virt_gpio +EXPORT_SYMBOL_GPL vmlinux 0x89c4c275 kobject_uevent +EXPORT_SYMBOL_GPL vmlinux 0x89c94dbe register_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0x89cad34b usb_phy_generic_unregister EXPORT_SYMBOL_GPL vmlinux 0x89cdae3d __tracepoint_neigh_timer_handler -EXPORT_SYMBOL_GPL vmlinux 0x89d27a33 cdrom_read_tocentry -EXPORT_SYMBOL_GPL vmlinux 0x89e44063 debugfs_create_ulong -EXPORT_SYMBOL_GPL vmlinux 0x89e9ee2d sk_msg_return -EXPORT_SYMBOL_GPL vmlinux 0x8a156681 usb_unpoison_urb -EXPORT_SYMBOL_GPL vmlinux 0x8a23a050 devm_remove_action +EXPORT_SYMBOL_GPL vmlinux 0x89d4761f regulator_desc_list_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0x89dcbb1f task_active_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x89de5d43 usb_add_gadget_udc_release +EXPORT_SYMBOL_GPL vmlinux 0x89e13be0 usb_of_get_companion_dev +EXPORT_SYMBOL_GPL vmlinux 0x89e70272 to_software_node +EXPORT_SYMBOL_GPL vmlinux 0x89efc0b4 regulator_get_voltage_rdev +EXPORT_SYMBOL_GPL vmlinux 0x89f25735 trace_array_printk +EXPORT_SYMBOL_GPL vmlinux 0x8a138c7e __clk_hw_register_mux +EXPORT_SYMBOL_GPL vmlinux 0x8a194491 snd_soc_component_enable_pin +EXPORT_SYMBOL_GPL vmlinux 0x8a2193ad dw_pcie_ep_init_complete EXPORT_SYMBOL_GPL vmlinux 0x8a3f84ba linear_range_get_selector_low -EXPORT_SYMBOL_GPL vmlinux 0x8a430ec8 usb_root_hub_lost_power -EXPORT_SYMBOL_GPL vmlinux 0x8a54d01b sysfs_create_mount_point +EXPORT_SYMBOL_GPL vmlinux 0x8a4ef8c2 spi_mem_dtr_supports_op EXPORT_SYMBOL_GPL vmlinux 0x8a554a36 mpc8xxx_spi_strmode +EXPORT_SYMBOL_GPL vmlinux 0x8a57bf5b regulator_set_pull_down_regmap EXPORT_SYMBOL_GPL vmlinux 0x8a62b81b sfp_upstream_stop -EXPORT_SYMBOL_GPL vmlinux 0x8a78ca3d scsi_build_sense +EXPORT_SYMBOL_GPL vmlinux 0x8a810d67 dmaengine_desc_attach_metadata +EXPORT_SYMBOL_GPL vmlinux 0x8a83c92f cpufreq_freq_transition_end EXPORT_SYMBOL_GPL vmlinux 0x8a83fb45 mpi_point_free_parts -EXPORT_SYMBOL_GPL vmlinux 0x8aa0a787 usb_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x8a9fb481 of_reserved_mem_lookup EXPORT_SYMBOL_GPL vmlinux 0x8aad89f7 exynos_get_pmu_regmap +EXPORT_SYMBOL_GPL vmlinux 0x8ab37b0c crypto_hash_alg_has_setkey +EXPORT_SYMBOL_GPL vmlinux 0x8ab7303a edac_mc_del_mc EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files -EXPORT_SYMBOL_GPL vmlinux 0x8ac649e3 usb_disable_xhci_ports -EXPORT_SYMBOL_GPL vmlinux 0x8ad157d4 tcp_rate_check_app_limited -EXPORT_SYMBOL_GPL vmlinux 0x8ae444ae bio_associate_blkg -EXPORT_SYMBOL_GPL vmlinux 0x8aeea177 mptcp_pm_get_subflows_max -EXPORT_SYMBOL_GPL vmlinux 0x8aff58ce snd_soc_new_compress +EXPORT_SYMBOL_GPL vmlinux 0x8ac20d42 of_get_regulator_init_data +EXPORT_SYMBOL_GPL vmlinux 0x8ad375d6 phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0x8adc11dc i2c_slave_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8ae6f47c gpiod_get_array_value +EXPORT_SYMBOL_GPL vmlinux 0x8ae915d7 driver_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x8afd97c1 snd_soc_add_pcm_runtime +EXPORT_SYMBOL_GPL vmlinux 0x8afded72 acct_bioset_exit +EXPORT_SYMBOL_GPL vmlinux 0x8b0b961d musb_queue_resume_work EXPORT_SYMBOL_GPL vmlinux 0x8b149c36 clk_is_match -EXPORT_SYMBOL_GPL vmlinux 0x8b285daf rockchip_pcie_cfg_configuration_accesses -EXPORT_SYMBOL_GPL vmlinux 0x8b4476ad fwnode_usb_role_switch_get -EXPORT_SYMBOL_GPL vmlinux 0x8b49f6be spi_sync -EXPORT_SYMBOL_GPL vmlinux 0x8b4efe5f crypto_dequeue_request -EXPORT_SYMBOL_GPL vmlinux 0x8b4fb532 crypto_enqueue_request +EXPORT_SYMBOL_GPL vmlinux 0x8b27cdcd rtc_read_time +EXPORT_SYMBOL_GPL vmlinux 0x8b34856b irq_gc_set_wake +EXPORT_SYMBOL_GPL vmlinux 0x8b42b74b __account_locked_vm +EXPORT_SYMBOL_GPL vmlinux 0x8b519626 thermal_zone_of_get_sensor_id EXPORT_SYMBOL_GPL vmlinux 0x8b529ce4 nvmem_add_cell_lookups -EXPORT_SYMBOL_GPL vmlinux 0x8b6282cb bpf_preload_ops +EXPORT_SYMBOL_GPL vmlinux 0x8b566dfa vp_modern_map_vq_notify +EXPORT_SYMBOL_GPL vmlinux 0x8b5775fa pci_try_reset_function EXPORT_SYMBOL_GPL vmlinux 0x8b650752 mtk_mutex_release -EXPORT_SYMBOL_GPL vmlinux 0x8b6d00d2 device_for_each_child_reverse -EXPORT_SYMBOL_GPL vmlinux 0x8b858490 ip6_push_pending_frames -EXPORT_SYMBOL_GPL vmlinux 0x8b85a7f3 usb_gadget_vbus_disconnect +EXPORT_SYMBOL_GPL vmlinux 0x8b6ac75c inode_sb_list_add +EXPORT_SYMBOL_GPL vmlinux 0x8b6d5661 __dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0x8b796ef3 __devm_regmap_init +EXPORT_SYMBOL_GPL vmlinux 0x8b85fd61 mmc_switch +EXPORT_SYMBOL_GPL vmlinux 0x8b8ef1de blk_revalidate_disk_zones EXPORT_SYMBOL_GPL vmlinux 0x8b91f7a7 nr_swap_pages -EXPORT_SYMBOL_GPL vmlinux 0x8baf91d5 cpu_device_create -EXPORT_SYMBOL_GPL vmlinux 0x8bb1fd08 virtqueue_add_outbuf -EXPORT_SYMBOL_GPL vmlinux 0x8bc49782 __inode_attach_wb -EXPORT_SYMBOL_GPL vmlinux 0x8bcf45ed regmap_register_patch -EXPORT_SYMBOL_GPL vmlinux 0x8bdbeea7 blkcg_print_blkgs -EXPORT_SYMBOL_GPL vmlinux 0x8be70c61 get_mtd_device_nm -EXPORT_SYMBOL_GPL vmlinux 0x8bf789c2 dmi_kobj -EXPORT_SYMBOL_GPL vmlinux 0x8c018b1a vring_transport_features +EXPORT_SYMBOL_GPL vmlinux 0x8b94f7e8 usb_bulk_msg +EXPORT_SYMBOL_GPL vmlinux 0x8b97365e platform_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8b9f94a3 perf_event_read_value +EXPORT_SYMBOL_GPL vmlinux 0x8bad687b cpu_device_create +EXPORT_SYMBOL_GPL vmlinux 0x8bb0b262 crypto_grab_ahash +EXPORT_SYMBOL_GPL vmlinux 0x8bb51965 rio_mport_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x8bbcbffb ping_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x8bbdebc8 snd_soc_jack_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x8bd3db50 cpufreq_freq_transition_begin +EXPORT_SYMBOL_GPL vmlinux 0x8bd73c4e rio_map_outb_region +EXPORT_SYMBOL_GPL vmlinux 0x8be2407e led_set_brightness +EXPORT_SYMBOL_GPL vmlinux 0x8be3dcda snd_soc_info_volsw_range +EXPORT_SYMBOL_GPL vmlinux 0x8be4c028 meson_pmx_get_funcs_count EXPORT_SYMBOL_GPL vmlinux 0x8c0215f2 pm_system_wakeup EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue +EXPORT_SYMBOL_GPL vmlinux 0x8c043a75 crypto_alloc_acomp_node +EXPORT_SYMBOL_GPL vmlinux 0x8c0e9988 msg_zerocopy_alloc EXPORT_SYMBOL_GPL vmlinux 0x8c0ed103 rcu_check_boost_fail +EXPORT_SYMBOL_GPL vmlinux 0x8c19bf45 free_io_pgtable_ops EXPORT_SYMBOL_GPL vmlinux 0x8c19ea09 sbitmap_queue_resize -EXPORT_SYMBOL_GPL vmlinux 0x8c22c83c fat_time_fat2unix -EXPORT_SYMBOL_GPL vmlinux 0x8c2e105e i2c_match_id -EXPORT_SYMBOL_GPL vmlinux 0x8c323430 sysfs_remove_file_from_group -EXPORT_SYMBOL_GPL vmlinux 0x8c37a1d8 iomap_file_unshare -EXPORT_SYMBOL_GPL vmlinux 0x8c3e3da7 snd_soc_component_async_complete -EXPORT_SYMBOL_GPL vmlinux 0x8c41e772 led_trigger_read +EXPORT_SYMBOL_GPL vmlinux 0x8c1a4935 pskb_put +EXPORT_SYMBOL_GPL vmlinux 0x8c1f90b8 pinctrl_pm_select_default_state +EXPORT_SYMBOL_GPL vmlinux 0x8c231bb3 serial8250_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0x8c31662c regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x8c368a40 of_i2c_get_board_info +EXPORT_SYMBOL_GPL vmlinux 0x8c395bd6 iommu_uapi_cache_invalidate +EXPORT_SYMBOL_GPL vmlinux 0x8c5ab85b bpf_prog_inc +EXPORT_SYMBOL_GPL vmlinux 0x8c64e338 sata_scr_write +EXPORT_SYMBOL_GPL vmlinux 0x8c6d5008 snd_soc_dapm_mux_update_power +EXPORT_SYMBOL_GPL vmlinux 0x8c6fefc2 security_inode_setattr EXPORT_SYMBOL_GPL vmlinux 0x8c743fb6 reset_control_status +EXPORT_SYMBOL_GPL vmlinux 0x8c7a0bb7 wakeup_sources_walk_next EXPORT_SYMBOL_GPL vmlinux 0x8c89e3b8 usb_phy_roothub_power_off -EXPORT_SYMBOL_GPL vmlinux 0x8c9bddd7 of_phandle_iterator_next -EXPORT_SYMBOL_GPL vmlinux 0x8cbb54c8 led_trigger_register_simple -EXPORT_SYMBOL_GPL vmlinux 0x8cc0891c scsi_internal_device_block_nowait -EXPORT_SYMBOL_GPL vmlinux 0x8cd3692b devm_gpiod_get_index_optional -EXPORT_SYMBOL_GPL vmlinux 0x8cdbed85 blk_queue_can_use_dma_map_merging -EXPORT_SYMBOL_GPL vmlinux 0x8cdcc044 fb_bl_default_curve +EXPORT_SYMBOL_GPL vmlinux 0x8c8f60d8 mptcp_pm_get_add_addr_signal_max +EXPORT_SYMBOL_GPL vmlinux 0x8c911284 nand_reset_op +EXPORT_SYMBOL_GPL vmlinux 0x8c91b924 regulator_map_voltage_ascend +EXPORT_SYMBOL_GPL vmlinux 0x8c9599ca switchdev_port_obj_del +EXPORT_SYMBOL_GPL vmlinux 0x8cb1f07e pm_generic_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0x8cb3462c snd_soc_unregister_dai +EXPORT_SYMBOL_GPL vmlinux 0x8cb4ea6f dev_pm_opp_xlate_required_opp +EXPORT_SYMBOL_GPL vmlinux 0x8cc6de54 edac_mc_find_csrow_by_page +EXPORT_SYMBOL_GPL vmlinux 0x8cce40b9 __clk_mux_determine_rate_closest +EXPORT_SYMBOL_GPL vmlinux 0x8cf4169f component_add_typed EXPORT_SYMBOL_GPL vmlinux 0x8cfa0fa5 __tracepoint_pelt_rt_tp -EXPORT_SYMBOL_GPL vmlinux 0x8cff44f6 regcache_cache_only -EXPORT_SYMBOL_GPL vmlinux 0x8d0aca35 show_class_attr_string -EXPORT_SYMBOL_GPL vmlinux 0x8d1924e5 kill_device -EXPORT_SYMBOL_GPL vmlinux 0x8d1a00c0 perf_pmu_register +EXPORT_SYMBOL_GPL vmlinux 0x8d0f6ee1 smpboot_register_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0x8d1949e7 unregister_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x8d2299d0 ata_pci_bmdma_clear_simplex EXPORT_SYMBOL_GPL vmlinux 0x8d22bb58 iommu_group_alloc -EXPORT_SYMBOL_GPL vmlinux 0x8d34c61e stmpe_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x8d3c35f3 usb_put_intf -EXPORT_SYMBOL_GPL vmlinux 0x8d4b216b rio_unregister_mport -EXPORT_SYMBOL_GPL vmlinux 0x8d4fc4c1 serdev_device_write_buf -EXPORT_SYMBOL_GPL vmlinux 0x8d64d788 regulator_list_voltage_pickable_linear_range -EXPORT_SYMBOL_GPL vmlinux 0x8d73e338 fsverity_file_open -EXPORT_SYMBOL_GPL vmlinux 0x8d7b8d06 usb_add_phy_dev -EXPORT_SYMBOL_GPL vmlinux 0x8d7fc615 ohci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0x8d2fd7d9 unregister_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0x8d32c4be crypto_enqueue_request +EXPORT_SYMBOL_GPL vmlinux 0x8d38db39 rio_add_device +EXPORT_SYMBOL_GPL vmlinux 0x8d3ac637 platform_add_devices +EXPORT_SYMBOL_GPL vmlinux 0x8d45dc6e snd_hwparams_to_dma_slave_config +EXPORT_SYMBOL_GPL vmlinux 0x8d644380 devm_of_clk_add_hw_provider +EXPORT_SYMBOL_GPL vmlinux 0x8d720a3f driver_deferred_probe_check_state +EXPORT_SYMBOL_GPL vmlinux 0x8d7dcd59 rio_del_device EXPORT_SYMBOL_GPL vmlinux 0x8d864069 snd_pcm_rate_range_to_bits +EXPORT_SYMBOL_GPL vmlinux 0x8d868d18 da9052_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x8d8fa2ce cpufreq_dbs_governor_init +EXPORT_SYMBOL_GPL vmlinux 0x8dac5c8f msg_zerocopy_realloc EXPORT_SYMBOL_GPL vmlinux 0x8dafdded lwtunnel_valid_encap_type_attr EXPORT_SYMBOL_GPL vmlinux 0x8dc11669 lpddr2_jedec_addressing_table -EXPORT_SYMBOL_GPL vmlinux 0x8dcbfe81 devm_nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0x8dcd1cfc pinctrl_lookup_state +EXPORT_SYMBOL_GPL vmlinux 0x8dd0aebb bd_prepare_to_claim EXPORT_SYMBOL_GPL vmlinux 0x8dd218b0 icc_bulk_disable -EXPORT_SYMBOL_GPL vmlinux 0x8de01b8b da9052_request_irq -EXPORT_SYMBOL_GPL vmlinux 0x8e0f07f3 of_usb_update_otg_caps -EXPORT_SYMBOL_GPL vmlinux 0x8e14266f anon_transport_class_unregister -EXPORT_SYMBOL_GPL vmlinux 0x8e1737f8 serdev_device_write_room -EXPORT_SYMBOL_GPL vmlinux 0x8e2507db __clocksource_update_freq_scale -EXPORT_SYMBOL_GPL vmlinux 0x8e36aced regulator_is_supported_voltage -EXPORT_SYMBOL_GPL vmlinux 0x8e3c1283 usb_get_maximum_speed +EXPORT_SYMBOL_GPL vmlinux 0x8ddb00a9 device_store_int +EXPORT_SYMBOL_GPL vmlinux 0x8e118da2 gpiochip_generic_free +EXPORT_SYMBOL_GPL vmlinux 0x8e1ddadc pci_bus_resource_n +EXPORT_SYMBOL_GPL vmlinux 0x8e27c0a5 pm_clk_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x8e329af1 snd_devm_card_new +EXPORT_SYMBOL_GPL vmlinux 0x8e36b0bf regulator_set_active_discharge_regmap +EXPORT_SYMBOL_GPL vmlinux 0x8e40932c snd_compress_new EXPORT_SYMBOL_GPL vmlinux 0x8e44823a sfp_select_interface -EXPORT_SYMBOL_GPL vmlinux 0x8e48a9f6 snd_soc_lookup_component -EXPORT_SYMBOL_GPL vmlinux 0x8e4a7080 bpf_map_put EXPORT_SYMBOL_GPL vmlinux 0x8e4b63a6 hisi_clk_register_gate_sep EXPORT_SYMBOL_GPL vmlinux 0x8e4eb451 bpf_sk_storage_diag_free EXPORT_SYMBOL_GPL vmlinux 0x8e51a3c7 dev_pm_opp_cpumask_remove_table -EXPORT_SYMBOL_GPL vmlinux 0x8e607f41 ethnl_cable_test_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8e58b708 regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x8e5d9adb lochnagar_update_config +EXPORT_SYMBOL_GPL vmlinux 0x8e6734af mbox_chan_received_data +EXPORT_SYMBOL_GPL vmlinux 0x8e68626d blk_mq_unquiesce_queue EXPORT_SYMBOL_GPL vmlinux 0x8e6b1a9e net_selftest_get_count -EXPORT_SYMBOL_GPL vmlinux 0x8e979a37 net_selftest -EXPORT_SYMBOL_GPL vmlinux 0x8e9e8789 sdhci_pltfm_register -EXPORT_SYMBOL_GPL vmlinux 0x8ebc65c6 fsnotify_alloc_user_group +EXPORT_SYMBOL_GPL vmlinux 0x8e6b3527 pl08x_filter_id +EXPORT_SYMBOL_GPL vmlinux 0x8e93aa2b fscrypt_ioctl_remove_key +EXPORT_SYMBOL_GPL vmlinux 0x8e974efe find_vpid +EXPORT_SYMBOL_GPL vmlinux 0x8eabb9eb virtqueue_kick +EXPORT_SYMBOL_GPL vmlinux 0x8eb4b8de pci_epc_unmap_addr +EXPORT_SYMBOL_GPL vmlinux 0x8ebc989c netdev_rx_handler_register +EXPORT_SYMBOL_GPL vmlinux 0x8ebf5139 regmap_field_read +EXPORT_SYMBOL_GPL vmlinux 0x8ec40297 tcp_twsk_unique +EXPORT_SYMBOL_GPL vmlinux 0x8ed4c21e irq_set_chip_and_handler_name +EXPORT_SYMBOL_GPL vmlinux 0x8eeaf3c3 watchdog_register_device EXPORT_SYMBOL_GPL vmlinux 0x8eec19bd __SCK__tp_func_pelt_dl_tp EXPORT_SYMBOL_GPL vmlinux 0x8eee3399 dax_read_unlock EXPORT_SYMBOL_GPL vmlinux 0x8effb505 phy_gbit_features +EXPORT_SYMBOL_GPL vmlinux 0x8f032c31 skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x8f05a44d snd_pcm_stream_lock EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp EXPORT_SYMBOL_GPL vmlinux 0x8f1a8cf9 rsa_parse_pub_key -EXPORT_SYMBOL_GPL vmlinux 0x8f1d3528 amba_device_alloc -EXPORT_SYMBOL_GPL vmlinux 0x8f21dd98 crypto_register_ahash +EXPORT_SYMBOL_GPL vmlinux 0x8f344279 pm_wakeup_dev_event EXPORT_SYMBOL_GPL vmlinux 0x8f37b35e srcu_barrier -EXPORT_SYMBOL_GPL vmlinux 0x8f5becae pinctrl_find_and_add_gpio_range -EXPORT_SYMBOL_GPL vmlinux 0x8f5d72b1 nanddev_ecc_engine_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x8f63edcf nanddev_erase +EXPORT_SYMBOL_GPL vmlinux 0x8f6bf4e4 snd_soc_register_card EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative EXPORT_SYMBOL_GPL vmlinux 0x8f725e67 probes_decode_arm_table +EXPORT_SYMBOL_GPL vmlinux 0x8f7662db of_fwnode_ops EXPORT_SYMBOL_GPL vmlinux 0x8f786bee fs_umode_to_dtype -EXPORT_SYMBOL_GPL vmlinux 0x8f9a0a1a wm831x_device_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x8fa560d6 crypto_stats_rng_seed -EXPORT_SYMBOL_GPL vmlinux 0x8fbf8d67 pci_bus_add_device +EXPORT_SYMBOL_GPL vmlinux 0x8f795d8d sysfs_unbreak_active_protection +EXPORT_SYMBOL_GPL vmlinux 0x8f885fd8 ohci_hub_status_data +EXPORT_SYMBOL_GPL vmlinux 0x8f8f83a6 wm8350_reg_write EXPORT_SYMBOL_GPL vmlinux 0x8fc090a3 __tracepoint_br_fdb_update -EXPORT_SYMBOL_GPL vmlinux 0x8fcb160b __traceiter_wbc_writepage -EXPORT_SYMBOL_GPL vmlinux 0x8fe6bebd iommu_get_domain_for_dev -EXPORT_SYMBOL_GPL vmlinux 0x8ff0d2ff dev_pm_opp_of_remove_table +EXPORT_SYMBOL_GPL vmlinux 0x8fc433a9 mmc_regulator_set_vqmmc +EXPORT_SYMBOL_GPL vmlinux 0x8fd3aa30 tty_port_install +EXPORT_SYMBOL_GPL vmlinux 0x8fdf3344 rio_request_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x8fe1be2f pinconf_generic_dump_config EXPORT_SYMBOL_GPL vmlinux 0x8ff60436 mpi_ec_add_points -EXPORT_SYMBOL_GPL vmlinux 0x8ff8fd01 dma_async_device_channel_register -EXPORT_SYMBOL_GPL vmlinux 0x8ffe17d3 usb_get_hcd EXPORT_SYMBOL_GPL vmlinux 0x902778ba __tracepoint_tcp_send_reset -EXPORT_SYMBOL_GPL vmlinux 0x9027ebe9 crypto_shash_setkey EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move -EXPORT_SYMBOL_GPL vmlinux 0x903e4ec3 usb_poison_urb -EXPORT_SYMBOL_GPL vmlinux 0x90647223 ahci_platform_enable_clks +EXPORT_SYMBOL_GPL vmlinux 0x903bd31a usb_find_interface +EXPORT_SYMBOL_GPL vmlinux 0x904755e4 iommu_sva_get_pasid +EXPORT_SYMBOL_GPL vmlinux 0x904865e5 rtc_initialize_alarm +EXPORT_SYMBOL_GPL vmlinux 0x9057ff8f gpiochip_irq_map +EXPORT_SYMBOL_GPL vmlinux 0x905a8938 fuse_mount_remove EXPORT_SYMBOL_GPL vmlinux 0x90688bcd devlink_info_driver_name_put -EXPORT_SYMBOL_GPL vmlinux 0x906ad661 dev_pm_qos_update_user_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x90692cc7 __traceiter_pelt_dl_tp EXPORT_SYMBOL_GPL vmlinux 0x906dd327 usb_unpoison_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x90737738 dma_mmap_noncontiguous -EXPORT_SYMBOL_GPL vmlinux 0x90b425af rio_register_mport -EXPORT_SYMBOL_GPL vmlinux 0x90c43740 devm_clk_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x90c526e8 irq_chip_set_parent_state -EXPORT_SYMBOL_GPL vmlinux 0x90cc8c44 regmap_reinit_cache -EXPORT_SYMBOL_GPL vmlinux 0x90d03a50 vring_del_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0x90e857e9 usb_register_dev -EXPORT_SYMBOL_GPL vmlinux 0x90eb526c gpiod_get_array_value -EXPORT_SYMBOL_GPL vmlinux 0x90fc2948 mtd_get_unmapped_area -EXPORT_SYMBOL_GPL vmlinux 0x910142ac blk_mq_flush_busy_ctxs -EXPORT_SYMBOL_GPL vmlinux 0x91193430 tty_port_register_device_attr_serdev -EXPORT_SYMBOL_GPL vmlinux 0x913480f7 skcipher_alloc_instance_simple -EXPORT_SYMBOL_GPL vmlinux 0x91366a33 fib_alias_hw_flags_set -EXPORT_SYMBOL_GPL vmlinux 0x913d13e7 perf_event_period -EXPORT_SYMBOL_GPL vmlinux 0x913d5a9c fat_search_long -EXPORT_SYMBOL_GPL vmlinux 0x9143076e fscrypt_ioctl_get_policy_ex -EXPORT_SYMBOL_GPL vmlinux 0x91493811 __page_file_index -EXPORT_SYMBOL_GPL vmlinux 0x914a8ab3 path_noexec +EXPORT_SYMBOL_GPL vmlinux 0x906e8e2c nanddev_markbad +EXPORT_SYMBOL_GPL vmlinux 0x907c432b platform_unregister_drivers +EXPORT_SYMBOL_GPL vmlinux 0x90859c87 bpf_offload_dev_create +EXPORT_SYMBOL_GPL vmlinux 0x9089731f handle_fasteoi_mask_irq +EXPORT_SYMBOL_GPL vmlinux 0x908dd708 pci_cfg_access_unlock +EXPORT_SYMBOL_GPL vmlinux 0x90a73f97 dma_buf_unmap_attachment +EXPORT_SYMBOL_GPL vmlinux 0x90a7729b serial8250_do_startup +EXPORT_SYMBOL_GPL vmlinux 0x90ba2f2d regulator_disable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x90c17748 da9052_adc_read_temp +EXPORT_SYMBOL_GPL vmlinux 0x90e14fdc mtd_wunit_to_pairing_info +EXPORT_SYMBOL_GPL vmlinux 0x90e63a77 crypto_alloc_tfm_node +EXPORT_SYMBOL_GPL vmlinux 0x90ecc7f0 pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0x90f631e9 snd_soc_component_compr_set_params +EXPORT_SYMBOL_GPL vmlinux 0x91064767 register_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x910db41f gpiod_get_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x910ed412 tps65912_device_init +EXPORT_SYMBOL_GPL vmlinux 0x91159a05 sdhci_enable_v4_mode +EXPORT_SYMBOL_GPL vmlinux 0x911b3b10 tpm_pm_resume +EXPORT_SYMBOL_GPL vmlinux 0x91209aaf __reset_control_get EXPORT_SYMBOL_GPL vmlinux 0x91519a16 dev_pm_opp_of_cpumask_add_table -EXPORT_SYMBOL_GPL vmlinux 0x9153b524 snd_soc_lookup_component_nolocked +EXPORT_SYMBOL_GPL vmlinux 0x915c9035 phy_pm_runtime_put_sync +EXPORT_SYMBOL_GPL vmlinux 0x915f9b7f iptunnel_metadata_reply +EXPORT_SYMBOL_GPL vmlinux 0x91620b67 pwm_free +EXPORT_SYMBOL_GPL vmlinux 0x9163417c sdhci_runtime_suspend_host EXPORT_SYMBOL_GPL vmlinux 0x91637e86 unregister_net_sysctl_table -EXPORT_SYMBOL_GPL vmlinux 0x916c07f2 __traceiter_sched_util_est_se_tp -EXPORT_SYMBOL_GPL vmlinux 0x9179e79c pci_pri_supported -EXPORT_SYMBOL_GPL vmlinux 0x9181b54b ata_sff_dev_classify -EXPORT_SYMBOL_GPL vmlinux 0x918af77c snd_soc_component_update_bits -EXPORT_SYMBOL_GPL vmlinux 0x918c6315 dev_pm_opp_remove_all_dynamic +EXPORT_SYMBOL_GPL vmlinux 0x91724cd9 rio_release_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x9179eb51 blk_steal_bios +EXPORT_SYMBOL_GPL vmlinux 0x918a7aa1 regcache_cache_only EXPORT_SYMBOL_GPL vmlinux 0x91955a9f start_poll_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0x91ac505a nanddev_mtd_erase EXPORT_SYMBOL_GPL vmlinux 0x91b774a1 mpi_scanval -EXPORT_SYMBOL_GPL vmlinux 0x91c54537 spi_mem_driver_unregister EXPORT_SYMBOL_GPL vmlinux 0x91c6e5b0 pcap_to_irq -EXPORT_SYMBOL_GPL vmlinux 0x91d57c3d fuse_dev_release -EXPORT_SYMBOL_GPL vmlinux 0x91d669cd pci_check_and_unmask_intx -EXPORT_SYMBOL_GPL vmlinux 0x91da2a26 crypto_stats_akcipher_sign +EXPORT_SYMBOL_GPL vmlinux 0x91ca7143 sysfs_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0x91caf9a5 devm_pci_epc_destroy EXPORT_SYMBOL_GPL vmlinux 0x91ea8726 asn1_encode_boolean -EXPORT_SYMBOL_GPL vmlinux 0x91ea97c1 nexthop_select_path EXPORT_SYMBOL_GPL vmlinux 0x91eac764 mpi_print -EXPORT_SYMBOL_GPL vmlinux 0x9200bbe9 of_platform_default_populate -EXPORT_SYMBOL_GPL vmlinux 0x920a88e2 devm_gpio_request -EXPORT_SYMBOL_GPL vmlinux 0x920c9bcf gpiod_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x92201f88 dev_coredumpsg -EXPORT_SYMBOL_GPL vmlinux 0x92259027 tpm_tis_core_init -EXPORT_SYMBOL_GPL vmlinux 0x92264be3 crypto_shash_alg_has_setkey -EXPORT_SYMBOL_GPL vmlinux 0x922a929b fwnode_device_is_available -EXPORT_SYMBOL_GPL vmlinux 0x922d9adb reset_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x9233b99c regulator_is_enabled_regmap +EXPORT_SYMBOL_GPL vmlinux 0x91ec6358 crypto_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x91f0085c devm_gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0x91f06081 gpiochip_generic_request +EXPORT_SYMBOL_GPL vmlinux 0x91f2d783 led_sysfs_enable +EXPORT_SYMBOL_GPL vmlinux 0x91fb904c devres_open_group +EXPORT_SYMBOL_GPL vmlinux 0x91fd06bb rio_local_set_device_id +EXPORT_SYMBOL_GPL vmlinux 0x91ff5691 dm_get_md +EXPORT_SYMBOL_GPL vmlinux 0x9206af6d of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x920f0df8 devm_pinctrl_register_and_init +EXPORT_SYMBOL_GPL vmlinux 0x92191d93 crypto_stats_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x921afdd1 iommu_capable +EXPORT_SYMBOL_GPL vmlinux 0x922e3583 devm_usb_get_phy_by_node +EXPORT_SYMBOL_GPL vmlinux 0x92303982 ksm_madvise +EXPORT_SYMBOL_GPL vmlinux 0x9230deb0 devm_rtc_device_register EXPORT_SYMBOL_GPL vmlinux 0x92398bac of_get_videomode -EXPORT_SYMBOL_GPL vmlinux 0x9243639c crypto_unregister_skciphers EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object -EXPORT_SYMBOL_GPL vmlinux 0x92673338 do_splice_from -EXPORT_SYMBOL_GPL vmlinux 0x9277c8fa pci_generic_config_write32 -EXPORT_SYMBOL_GPL vmlinux 0x92828059 wm8400_reset_codec_reg_cache -EXPORT_SYMBOL_GPL vmlinux 0x929619e7 iommu_dev_feature_enabled -EXPORT_SYMBOL_GPL vmlinux 0x92a75330 dev_pm_opp_unregister_set_opp_helper -EXPORT_SYMBOL_GPL vmlinux 0x92ae74f7 device_get_child_node_count -EXPORT_SYMBOL_GPL vmlinux 0x92b0bd7d ahci_platform_enable_regulators +EXPORT_SYMBOL_GPL vmlinux 0x92627bb0 vring_del_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x92768fb2 regmap_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0x927b3ddb pwmchip_remove +EXPORT_SYMBOL_GPL vmlinux 0x929063d7 nf_ip_route +EXPORT_SYMBOL_GPL vmlinux 0x92a531dd serial8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x92b3ec3c gpiochip_reqres_irq EXPORT_SYMBOL_GPL vmlinux 0x92b57248 flush_work -EXPORT_SYMBOL_GPL vmlinux 0x92be7a97 pm_clk_destroy -EXPORT_SYMBOL_GPL vmlinux 0x92cb276f __put_net +EXPORT_SYMBOL_GPL vmlinux 0x92bd3d7a led_stop_software_blink +EXPORT_SYMBOL_GPL vmlinux 0x92c35cf7 device_for_each_child +EXPORT_SYMBOL_GPL vmlinux 0x92c87502 __traceiter_block_rq_insert +EXPORT_SYMBOL_GPL vmlinux 0x92c9d239 dev_pm_qos_expose_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x92cc05be crypto_unregister_aeads +EXPORT_SYMBOL_GPL vmlinux 0x92cd32f6 blk_mq_alloc_sq_tag_set +EXPORT_SYMBOL_GPL vmlinux 0x92d0fa06 rockchip_pcie_enable_clocks EXPORT_SYMBOL_GPL vmlinux 0x92d31cfb fixed_phy_add -EXPORT_SYMBOL_GPL vmlinux 0x92d605fd usb_get_urb EXPORT_SYMBOL_GPL vmlinux 0x92db8f68 do_trace_rcu_torture_read -EXPORT_SYMBOL_GPL vmlinux 0x92ddd531 gpiochip_remove -EXPORT_SYMBOL_GPL vmlinux 0x92f88992 ip_valid_fib_dump_req -EXPORT_SYMBOL_GPL vmlinux 0x93030d02 __blk_req_zone_write_unlock -EXPORT_SYMBOL_GPL vmlinux 0x9306dad1 wait_on_page_writeback_killable -EXPORT_SYMBOL_GPL vmlinux 0x930e83a7 pci_device_group -EXPORT_SYMBOL_GPL vmlinux 0x93101df0 blk_queue_zone_write_granularity -EXPORT_SYMBOL_GPL vmlinux 0x9310f8b8 regulator_enable -EXPORT_SYMBOL_GPL vmlinux 0x931d028e __mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0x92e9bd5a subsys_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x92ff2e1f dma_get_any_slave_channel EXPORT_SYMBOL_GPL vmlinux 0x931f4299 kobj_sysfs_ops EXPORT_SYMBOL_GPL vmlinux 0x93255b2b ring_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x9329eeaf devlink_port_attrs_pci_vf_set EXPORT_SYMBOL_GPL vmlinux 0x932c8d7a linear_range_get_value_array -EXPORT_SYMBOL_GPL vmlinux 0x93494b81 subsys_virtual_register -EXPORT_SYMBOL_GPL vmlinux 0x934c7ebc tegra_bpmp_mrq_return -EXPORT_SYMBOL_GPL vmlinux 0x934d09e8 of_pci_get_max_link_speed -EXPORT_SYMBOL_GPL vmlinux 0x934eb294 dev_coredumpv -EXPORT_SYMBOL_GPL vmlinux 0x9351648b edac_device_alloc_ctl_info -EXPORT_SYMBOL_GPL vmlinux 0x93638b07 ip4_datagram_release_cb -EXPORT_SYMBOL_GPL vmlinux 0x93669f66 dma_resv_test_signaled -EXPORT_SYMBOL_GPL vmlinux 0x9368df23 efivars_register -EXPORT_SYMBOL_GPL vmlinux 0x9375de6d tpm_default_chip +EXPORT_SYMBOL_GPL vmlinux 0x93462f36 pci_cfg_access_trylock +EXPORT_SYMBOL_GPL vmlinux 0x934d6df3 devm_platform_ioremap_resource_byname EXPORT_SYMBOL_GPL vmlinux 0x93805369 software_node_register_node_group -EXPORT_SYMBOL_GPL vmlinux 0x93829033 edac_mc_add_mc_with_groups EXPORT_SYMBOL_GPL vmlinux 0x9384cd49 ata_tf_from_fis -EXPORT_SYMBOL_GPL vmlinux 0x938d7112 led_init_default_state_get +EXPORT_SYMBOL_GPL vmlinux 0x9395163a devlink_port_param_driverinit_value_set EXPORT_SYMBOL_GPL vmlinux 0x9396c787 __wake_up_locked_sync_key -EXPORT_SYMBOL_GPL vmlinux 0x93a9c5de pinctrl_find_gpio_range_from_pin_nolock -EXPORT_SYMBOL_GPL vmlinux 0x93aab6d3 __pneigh_lookup -EXPORT_SYMBOL_GPL vmlinux 0x93b15a22 balloon_aops +EXPORT_SYMBOL_GPL vmlinux 0x93a9a3d4 edac_device_add_device +EXPORT_SYMBOL_GPL vmlinux 0x93b4bba3 pci_generic_ecam_ops +EXPORT_SYMBOL_GPL vmlinux 0x93bcb66e scsi_target_block EXPORT_SYMBOL_GPL vmlinux 0x93c7edeb usb_find_common_endpoints -EXPORT_SYMBOL_GPL vmlinux 0x93cb1a46 dapm_clock_event -EXPORT_SYMBOL_GPL vmlinux 0x93e7e8eb usb_phy_roothub_alloc +EXPORT_SYMBOL_GPL vmlinux 0x93ea1bd8 regmap_get_val_bytes EXPORT_SYMBOL_GPL vmlinux 0x93edef07 devlink_health_report +EXPORT_SYMBOL_GPL vmlinux 0x93f17435 led_blink_set +EXPORT_SYMBOL_GPL vmlinux 0x93f1ae9f devm_clk_bulk_get_optional EXPORT_SYMBOL_GPL vmlinux 0x93f2de8f sbitmap_weight -EXPORT_SYMBOL_GPL vmlinux 0x93f427eb devlink_rate_leaf_create EXPORT_SYMBOL_GPL vmlinux 0x93f55fe0 power_supply_batinfo_ocv2cap -EXPORT_SYMBOL_GPL vmlinux 0x93fedeb2 fuse_simple_background -EXPORT_SYMBOL_GPL vmlinux 0x9412f0db platform_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0x93f951d4 pci_user_write_config_byte +EXPORT_SYMBOL_GPL vmlinux 0x940901ef __traceiter_block_bio_complete EXPORT_SYMBOL_GPL vmlinux 0x941a3d4f clk_hw_unregister_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x941e9cd7 vp_modern_queue_address EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put EXPORT_SYMBOL_GPL vmlinux 0x9425bb34 nvmem_dev_name -EXPORT_SYMBOL_GPL vmlinux 0x9427dd14 iommu_map -EXPORT_SYMBOL_GPL vmlinux 0x9429b2f7 blockdev_superblock EXPORT_SYMBOL_GPL vmlinux 0x9430b198 trace_dump_stack -EXPORT_SYMBOL_GPL vmlinux 0x943380d9 __clk_mux_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0x9432a645 get_current_tty EXPORT_SYMBOL_GPL vmlinux 0x943740ed srcutorture_get_gp_data -EXPORT_SYMBOL_GPL vmlinux 0x944e4cf6 bpfilter_umh_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x944085da pinctrl_parse_index_with_args +EXPORT_SYMBOL_GPL vmlinux 0x944278ea device_set_node +EXPORT_SYMBOL_GPL vmlinux 0x944de4f3 snd_soc_dapm_del_routes EXPORT_SYMBOL_GPL vmlinux 0x94565d24 usb_ep_free_request -EXPORT_SYMBOL_GPL vmlinux 0x945f8eba fixed_phy_register +EXPORT_SYMBOL_GPL vmlinux 0x9462540b crypto_unregister_acomp +EXPORT_SYMBOL_GPL vmlinux 0x94664b4a crypto_stats_kpp_compute_shared_secret +EXPORT_SYMBOL_GPL vmlinux 0x946d5aff cpufreq_generic_attr EXPORT_SYMBOL_GPL vmlinux 0x946dd559 sha224_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x946e5ce0 mpc8xxx_spi_rx_buf_u8 -EXPORT_SYMBOL_GPL vmlinux 0x94737b05 nand_readid_op -EXPORT_SYMBOL_GPL vmlinux 0x9474624e class_find_device -EXPORT_SYMBOL_GPL vmlinux 0x94881a03 gpiod_get_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x9492ea32 balloon_page_enqueue -EXPORT_SYMBOL_GPL vmlinux 0x9499e600 bus_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x9472eed2 vp_modern_get_features +EXPORT_SYMBOL_GPL vmlinux 0x948d6209 of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9494ca33 bus_for_each_drv +EXPORT_SYMBOL_GPL vmlinux 0x94969e44 irq_domain_get_irq_data EXPORT_SYMBOL_GPL vmlinux 0x949b5176 devlink_region_snapshot_create +EXPORT_SYMBOL_GPL vmlinux 0x94a258a4 dma_need_sync +EXPORT_SYMBOL_GPL vmlinux 0x94a7b04f pinctrl_remove_gpio_range EXPORT_SYMBOL_GPL vmlinux 0x94abb745 sprint_oid -EXPORT_SYMBOL_GPL vmlinux 0x94b6e347 rcu_read_unlock_trace_special -EXPORT_SYMBOL_GPL vmlinux 0x94ba4100 devm_gpio_request_one -EXPORT_SYMBOL_GPL vmlinux 0x94bbac9d pinctrl_generic_add_group -EXPORT_SYMBOL_GPL vmlinux 0x94bf8eb3 usb_clear_halt -EXPORT_SYMBOL_GPL vmlinux 0x94c7fcd9 devlink_param_driverinit_value_set -EXPORT_SYMBOL_GPL vmlinux 0x94c97e10 pci_set_cacheline_size -EXPORT_SYMBOL_GPL vmlinux 0x94ce3586 pm_genpd_add_device -EXPORT_SYMBOL_GPL vmlinux 0x94d0c663 irq_chip_eoi_parent -EXPORT_SYMBOL_GPL vmlinux 0x94d49740 fscrypt_set_test_dummy_encryption -EXPORT_SYMBOL_GPL vmlinux 0x94ea14cb sdhci_abort_tuning -EXPORT_SYMBOL_GPL vmlinux 0x95021053 snd_pcm_lib_default_mmap +EXPORT_SYMBOL_GPL vmlinux 0x94bcb16f fixed_phy_register_with_gpiod +EXPORT_SYMBOL_GPL vmlinux 0x94e4644e inode_congested +EXPORT_SYMBOL_GPL vmlinux 0x94e65a1d sk_msg_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0x94f79160 device_move +EXPORT_SYMBOL_GPL vmlinux 0x94fce0f9 fuse_dev_alloc_install +EXPORT_SYMBOL_GPL vmlinux 0x94fe80a2 phy_select_page EXPORT_SYMBOL_GPL vmlinux 0x9504df26 irq_wake_thread -EXPORT_SYMBOL_GPL vmlinux 0x95157152 snd_soc_component_get_pin_status +EXPORT_SYMBOL_GPL vmlinux 0x950a8d5f irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x950a934d blk_abort_request +EXPORT_SYMBOL_GPL vmlinux 0x950ca6b8 blk_mq_queue_inflight +EXPORT_SYMBOL_GPL vmlinux 0x9512a33e iommu_group_get EXPORT_SYMBOL_GPL vmlinux 0x951a2773 crypto_has_alg -EXPORT_SYMBOL_GPL vmlinux 0x9521a7f4 ip_fib_metrics_init -EXPORT_SYMBOL_GPL vmlinux 0x9524d27f hwmon_device_register +EXPORT_SYMBOL_GPL vmlinux 0x95204b52 __traceiter_sched_update_nr_running_tp +EXPORT_SYMBOL_GPL vmlinux 0x9522548f thermal_zone_of_sensor_register EXPORT_SYMBOL_GPL vmlinux 0x952664c5 do_exit -EXPORT_SYMBOL_GPL vmlinux 0x9527bb3a security_inode_setattr EXPORT_SYMBOL_GPL vmlinux 0x953e1b9e ktime_get_real_seconds -EXPORT_SYMBOL_GPL vmlinux 0x9547c498 mtd_lock -EXPORT_SYMBOL_GPL vmlinux 0x954b9663 irq_chip_release_resources_parent +EXPORT_SYMBOL_GPL vmlinux 0x954eef2b crypto_alloc_sync_skcipher EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn +EXPORT_SYMBOL_GPL vmlinux 0x9567a9b3 sdio_align_size EXPORT_SYMBOL_GPL vmlinux 0x956ac400 ring_buffer_dropped_events_cpu -EXPORT_SYMBOL_GPL vmlinux 0x9575a2c0 do_xdp_generic -EXPORT_SYMBOL_GPL vmlinux 0x957f911f genphy_c45_pma_suspend +EXPORT_SYMBOL_GPL vmlinux 0x957569b0 kill_device +EXPORT_SYMBOL_GPL vmlinux 0x957a2ced of_irq_get +EXPORT_SYMBOL_GPL vmlinux 0x957c9969 netlink_has_listeners +EXPORT_SYMBOL_GPL vmlinux 0x9582517a __traceiter_neigh_event_send_dead EXPORT_SYMBOL_GPL vmlinux 0x95843030 mpi_ec_init +EXPORT_SYMBOL_GPL vmlinux 0x958b8144 attribute_container_classdev_to_container EXPORT_SYMBOL_GPL vmlinux 0x958df3ac zs_free EXPORT_SYMBOL_GPL vmlinux 0x9593ef31 register_ftrace_export -EXPORT_SYMBOL_GPL vmlinux 0x9598542c nvmem_cell_read_u32 -EXPORT_SYMBOL_GPL vmlinux 0x95a7d609 cdrom_multisession -EXPORT_SYMBOL_GPL vmlinux 0x95b521df cpufreq_freq_transition_end +EXPORT_SYMBOL_GPL vmlinux 0x959743af spi_sync +EXPORT_SYMBOL_GPL vmlinux 0x959cc66d blkcg_deactivate_policy +EXPORT_SYMBOL_GPL vmlinux 0x95a010ee pci_iomap_wc EXPORT_SYMBOL_GPL vmlinux 0x95bc9078 btree_free -EXPORT_SYMBOL_GPL vmlinux 0x95d08cac usb_add_hcd -EXPORT_SYMBOL_GPL vmlinux 0x95d78987 lwtunnel_input +EXPORT_SYMBOL_GPL vmlinux 0x95c5ffc2 device_set_of_node_from_dev +EXPORT_SYMBOL_GPL vmlinux 0x95cad8c0 of_gen_pool_get EXPORT_SYMBOL_GPL vmlinux 0x95ef1ccc dmi_memdev_size -EXPORT_SYMBOL_GPL vmlinux 0x9602a8b0 tcf_dev_queue_xmit -EXPORT_SYMBOL_GPL vmlinux 0x96081e30 devm_watchdog_register_device -EXPORT_SYMBOL_GPL vmlinux 0x96083e94 cpufreq_unregister_governor -EXPORT_SYMBOL_GPL vmlinux 0x960922b6 fwnode_property_read_string -EXPORT_SYMBOL_GPL vmlinux 0x960bf968 vfs_setxattr +EXPORT_SYMBOL_GPL vmlinux 0x95f29489 dma_buf_fd +EXPORT_SYMBOL_GPL vmlinux 0x95fff45e regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0x960c923c dev_pm_opp_get_max_volt_latency EXPORT_SYMBOL_GPL vmlinux 0x961286e0 ring_buffer_read_events_cpu -EXPORT_SYMBOL_GPL vmlinux 0x961e7d26 watchdog_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0x962d6f62 gpiod_get_array_optional -EXPORT_SYMBOL_GPL vmlinux 0x962e484d i2c_slave_register -EXPORT_SYMBOL_GPL vmlinux 0x96428edf of_dma_is_coherent -EXPORT_SYMBOL_GPL vmlinux 0x964f4d7d blk_rq_err_bytes +EXPORT_SYMBOL_GPL vmlinux 0x961a4132 of_pci_get_max_link_speed +EXPORT_SYMBOL_GPL vmlinux 0x9624fe69 genphy_c45_check_and_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0x9626c8d9 inet6_lookup +EXPORT_SYMBOL_GPL vmlinux 0x965512d6 get_mtd_device EXPORT_SYMBOL_GPL vmlinux 0x96554810 register_keyboard_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9663933e scmi_protocol_unregister EXPORT_SYMBOL_GPL vmlinux 0x968f9a23 efivar_entry_iter_begin +EXPORT_SYMBOL_GPL vmlinux 0x96929c83 snd_pcm_stream_unlock_irqrestore +EXPORT_SYMBOL_GPL vmlinux 0x9692e9a8 cpufreq_table_index_unsorted +EXPORT_SYMBOL_GPL vmlinux 0x9695a070 pci_epc_map_addr +EXPORT_SYMBOL_GPL vmlinux 0x96996d8d dev_pm_domain_start EXPORT_SYMBOL_GPL vmlinux 0x96ab3dde __tracepoint_suspend_resume -EXPORT_SYMBOL_GPL vmlinux 0x96b7e3ef set_cpus_allowed_ptr -EXPORT_SYMBOL_GPL vmlinux 0x96b8a62d devm_gpiod_unhinge -EXPORT_SYMBOL_GPL vmlinux 0x96bfdb7a regmap_get_val_endian +EXPORT_SYMBOL_GPL vmlinux 0x96c16f8c devm_led_trigger_register EXPORT_SYMBOL_GPL vmlinux 0x96ca63f5 __rht_bucket_nested -EXPORT_SYMBOL_GPL vmlinux 0x96e88373 bio_release_pages -EXPORT_SYMBOL_GPL vmlinux 0x96eb2102 nand_deselect_target -EXPORT_SYMBOL_GPL vmlinux 0x96ef9ead kernel_read_file -EXPORT_SYMBOL_GPL vmlinux 0x96f91552 devlink_flash_update_timeout_notify -EXPORT_SYMBOL_GPL vmlinux 0x96fcc7a5 sysfs_remove_link -EXPORT_SYMBOL_GPL vmlinux 0x9700c3ef devlink_resource_occ_get_unregister +EXPORT_SYMBOL_GPL vmlinux 0x96d2070e iommu_sva_bind_device +EXPORT_SYMBOL_GPL vmlinux 0x96f4dc35 usb_init_urb +EXPORT_SYMBOL_GPL vmlinux 0x96f9a01b __SCK__tp_func_pelt_thermal_tp +EXPORT_SYMBOL_GPL vmlinux 0x96fd1321 clockevents_config_and_register EXPORT_SYMBOL_GPL vmlinux 0x9714e0bb ktime_get_raw -EXPORT_SYMBOL_GPL vmlinux 0x971f4db6 sfp_bus_add_upstream +EXPORT_SYMBOL_GPL vmlinux 0x97151af3 dm_disk +EXPORT_SYMBOL_GPL vmlinux 0x971cb858 ahci_stop_engine +EXPORT_SYMBOL_GPL vmlinux 0x9729efc8 tpm_tis_resume +EXPORT_SYMBOL_GPL vmlinux 0x9730e4a6 __mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x973c2de4 pci_host_common_probe +EXPORT_SYMBOL_GPL vmlinux 0x9745b402 bus_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x97463274 driver_find_device EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same -EXPORT_SYMBOL_GPL vmlinux 0x97803480 mtk_pinconf_bias_get_combo -EXPORT_SYMBOL_GPL vmlinux 0x97804981 phy_create_lookup -EXPORT_SYMBOL_GPL vmlinux 0x97977026 platform_get_irq -EXPORT_SYMBOL_GPL vmlinux 0x97a61127 fib4_rule_default -EXPORT_SYMBOL_GPL vmlinux 0x97ab43e8 xdp_convert_zc_to_xdp_frame -EXPORT_SYMBOL_GPL vmlinux 0x97bb9c92 edac_mc_free -EXPORT_SYMBOL_GPL vmlinux 0x97c5350d of_irq_get -EXPORT_SYMBOL_GPL vmlinux 0x97d38b6e xhci_init_driver -EXPORT_SYMBOL_GPL vmlinux 0x97d92a2c mmc_app_cmd +EXPORT_SYMBOL_GPL vmlinux 0x97555f25 encrypt_blob +EXPORT_SYMBOL_GPL vmlinux 0x976ecf38 pm_generic_poweroff_noirq +EXPORT_SYMBOL_GPL vmlinux 0x9771f8cc iommu_iova_to_phys +EXPORT_SYMBOL_GPL vmlinux 0x97a7034f sk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x97a78fab kthread_use_mm +EXPORT_SYMBOL_GPL vmlinux 0x97d34ba6 crypto_grab_akcipher EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent -EXPORT_SYMBOL_GPL vmlinux 0x97f43b0c pm_generic_thaw_noirq -EXPORT_SYMBOL_GPL vmlinux 0x97f5b6c7 usb_enable_intel_xhci_ports -EXPORT_SYMBOL_GPL vmlinux 0x97fd4318 of_mpc8xxx_spi_probe -EXPORT_SYMBOL_GPL vmlinux 0x97fedb73 snd_soc_info_volsw -EXPORT_SYMBOL_GPL vmlinux 0x9805bc35 fsverity_cleanup_inode -EXPORT_SYMBOL_GPL vmlinux 0x981816fb dev_pm_opp_get_level -EXPORT_SYMBOL_GPL vmlinux 0x9828ec8b __devres_alloc_node -EXPORT_SYMBOL_GPL vmlinux 0x982ad6ed tpm_pm_suspend -EXPORT_SYMBOL_GPL vmlinux 0x983238b0 regulator_set_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x97eb9fdc vchan_dma_desc_free_list +EXPORT_SYMBOL_GPL vmlinux 0x97ee34ea fib_nh_common_release +EXPORT_SYMBOL_GPL vmlinux 0x97ee66a4 __scsi_init_queue +EXPORT_SYMBOL_GPL vmlinux 0x97f92491 snd_soc_card_add_dai_link +EXPORT_SYMBOL_GPL vmlinux 0x9801ec45 devlink_dpipe_table_register +EXPORT_SYMBOL_GPL vmlinux 0x98122692 cpufreq_cpu_get +EXPORT_SYMBOL_GPL vmlinux 0x9819d229 crypto_unregister_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x981c91b9 mpc8xxx_spi_tx_buf_u16 +EXPORT_SYMBOL_GPL vmlinux 0x982cfdbc cpts_rx_timestamp EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick -EXPORT_SYMBOL_GPL vmlinux 0x9839ad32 vp_modern_set_features +EXPORT_SYMBOL_GPL vmlinux 0x9839eba0 posix_acl_access_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0x98474556 __device_reset EXPORT_SYMBOL_GPL vmlinux 0x98503a63 mpi_alloc EXPORT_SYMBOL_GPL vmlinux 0x985453e1 lease_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9854dd3b usb_set_interface -EXPORT_SYMBOL_GPL vmlinux 0x9859087f usb_del_gadget -EXPORT_SYMBOL_GPL vmlinux 0x9866e49d __sock_recv_wifi_status -EXPORT_SYMBOL_GPL vmlinux 0x9870ab95 of_irq_parse_raw -EXPORT_SYMBOL_GPL vmlinux 0x98735594 pm_clk_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x98571c5c crypto_stats_kpp_generate_public_key +EXPORT_SYMBOL_GPL vmlinux 0x986d312f kthread_park +EXPORT_SYMBOL_GPL vmlinux 0x987964a3 pingv6_prot EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x98829fd8 kobject_uevent_env +EXPORT_SYMBOL_GPL vmlinux 0x987ff50f device_store_ulong +EXPORT_SYMBOL_GPL vmlinux 0x988da695 devfreq_cooling_register EXPORT_SYMBOL_GPL vmlinux 0x989074ff kmsg_dump_reason_str -EXPORT_SYMBOL_GPL vmlinux 0x9895a807 sock_diag_put_meminfo EXPORT_SYMBOL_GPL vmlinux 0x989b73b3 sbitmap_init_node -EXPORT_SYMBOL_GPL vmlinux 0x98a857a1 snd_soc_component_exit_regmap -EXPORT_SYMBOL_GPL vmlinux 0x98acb305 dummy_con +EXPORT_SYMBOL_GPL vmlinux 0x98a38c16 dw_pcie_read_dbi +EXPORT_SYMBOL_GPL vmlinux 0x98a6eb08 snd_ctl_add_vmaster_hook +EXPORT_SYMBOL_GPL vmlinux 0x98b0facd dev_pm_opp_is_turbo EXPORT_SYMBOL_GPL vmlinux 0x98b142fa blk_fill_rwbs -EXPORT_SYMBOL_GPL vmlinux 0x98c3f15b phy_exit -EXPORT_SYMBOL_GPL vmlinux 0x98cf4d66 posix_acl_create -EXPORT_SYMBOL_GPL vmlinux 0x98d5a971 fixup_user_fault -EXPORT_SYMBOL_GPL vmlinux 0x98e1b07e vring_new_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0x98e97f34 phy_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0x98b70505 __sock_recv_ts_and_drops +EXPORT_SYMBOL_GPL vmlinux 0x98cf1530 usb_set_interface +EXPORT_SYMBOL_GPL vmlinux 0x98d02906 pm_clk_destroy +EXPORT_SYMBOL_GPL vmlinux 0x98d46eaf snd_soc_dapm_get_pin_status +EXPORT_SYMBOL_GPL vmlinux 0x98dcb744 mbox_free_channel +EXPORT_SYMBOL_GPL vmlinux 0x98ead223 fw_devlink_purge_absent_suppliers EXPORT_SYMBOL_GPL vmlinux 0x98ee62b2 ring_buffer_record_disable_cpu EXPORT_SYMBOL_GPL vmlinux 0x98fa1e20 dm_get_reserved_rq_based_ios EXPORT_SYMBOL_GPL vmlinux 0x98fe6251 __traceiter_unmap -EXPORT_SYMBOL_GPL vmlinux 0x99068b62 snd_soc_debugfs_root -EXPORT_SYMBOL_GPL vmlinux 0x990a0df7 security_path_truncate -EXPORT_SYMBOL_GPL vmlinux 0x99228939 tcp_unregister_ulp -EXPORT_SYMBOL_GPL vmlinux 0x9937aaed sdhci_switch_external_dma -EXPORT_SYMBOL_GPL vmlinux 0x993befbd ehci_reset -EXPORT_SYMBOL_GPL vmlinux 0x994614b1 usb_remove_phy -EXPORT_SYMBOL_GPL vmlinux 0x99525810 dev_pm_opp_of_get_opp_desc_node +EXPORT_SYMBOL_GPL vmlinux 0x99117a05 snd_soc_dai_set_channel_map +EXPORT_SYMBOL_GPL vmlinux 0x991acecd ohci_resume +EXPORT_SYMBOL_GPL vmlinux 0x9929108c power_supply_am_i_supplied +EXPORT_SYMBOL_GPL vmlinux 0x992d5762 devm_of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x993aaa78 iommu_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x99503e03 serdev_device_add +EXPORT_SYMBOL_GPL vmlinux 0x9952d1a5 sdhci_free_host EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on +EXPORT_SYMBOL_GPL vmlinux 0x9965daee crypto_larval_alloc EXPORT_SYMBOL_GPL vmlinux 0x9968aacb __audit_log_nfcfg -EXPORT_SYMBOL_GPL vmlinux 0x99737975 pcie_port_find_device -EXPORT_SYMBOL_GPL vmlinux 0x9984dda9 phy_validate -EXPORT_SYMBOL_GPL vmlinux 0x998fdde7 __clk_hw_register_mux -EXPORT_SYMBOL_GPL vmlinux 0x99a42eb4 usb_alloc_coherent +EXPORT_SYMBOL_GPL vmlinux 0x996e346f pci_stop_and_remove_bus_device_locked +EXPORT_SYMBOL_GPL vmlinux 0x99829677 snd_soc_tplg_component_remove +EXPORT_SYMBOL_GPL vmlinux 0x9995c94e security_inode_permission +EXPORT_SYMBOL_GPL vmlinux 0x99b4a35b virtqueue_disable_cb EXPORT_SYMBOL_GPL vmlinux 0x99b7191f dynevent_create -EXPORT_SYMBOL_GPL vmlinux 0x99b93f90 dma_buf_pin -EXPORT_SYMBOL_GPL vmlinux 0x99c16181 xfrm_audit_state_delete -EXPORT_SYMBOL_GPL vmlinux 0x99ed4766 pinctrl_dev_get_devname +EXPORT_SYMBOL_GPL vmlinux 0x99bfa9ef md_kick_rdev_from_array +EXPORT_SYMBOL_GPL vmlinux 0x99d68181 thermal_zone_get_temp +EXPORT_SYMBOL_GPL vmlinux 0x99d6c318 phy_reset +EXPORT_SYMBOL_GPL vmlinux 0x99e9d01c fscrypt_prepare_symlink EXPORT_SYMBOL_GPL vmlinux 0x99f2d00a sysfs_emit_at +EXPORT_SYMBOL_GPL vmlinux 0x99fa6532 cci_ace_get_port +EXPORT_SYMBOL_GPL vmlinux 0x99fee315 bpf_prog_put +EXPORT_SYMBOL_GPL vmlinux 0x9a024de1 device_remove_software_node +EXPORT_SYMBOL_GPL vmlinux 0x9a0ced5c _proc_mkdir EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name -EXPORT_SYMBOL_GPL vmlinux 0x9a240eec ipv6_dup_options -EXPORT_SYMBOL_GPL vmlinux 0x9a25e657 trace_array_init_printk -EXPORT_SYMBOL_GPL vmlinux 0x9a47b24f usb_alloc_streams -EXPORT_SYMBOL_GPL vmlinux 0x9a503771 regulator_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x9a54c595 rio_dev_put -EXPORT_SYMBOL_GPL vmlinux 0x9a5c156d pci_dev_run_wake -EXPORT_SYMBOL_GPL vmlinux 0x9a6913f8 fwnode_property_present -EXPORT_SYMBOL_GPL vmlinux 0x9a725851 blk_ksm_register -EXPORT_SYMBOL_GPL vmlinux 0x9a7404db serial8250_em485_destroy -EXPORT_SYMBOL_GPL vmlinux 0x9a7ee72a led_compose_name -EXPORT_SYMBOL_GPL vmlinux 0x9a7f02d7 blk_mq_sched_try_insert_merge -EXPORT_SYMBOL_GPL vmlinux 0x9a825d02 pm_runtime_no_callbacks -EXPORT_SYMBOL_GPL vmlinux 0x9a82da4d xhci_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x9aaa0d41 __account_locked_vm -EXPORT_SYMBOL_GPL vmlinux 0x9aabe5c7 dev_pm_opp_put +EXPORT_SYMBOL_GPL vmlinux 0x9a356cde skb_mpls_dec_ttl +EXPORT_SYMBOL_GPL vmlinux 0x9a44ed60 power_supply_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x9a5eecce bsg_remove_queue +EXPORT_SYMBOL_GPL vmlinux 0x9a636a86 devm_clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0x9a674c45 usb_gadget_vbus_connect +EXPORT_SYMBOL_GPL vmlinux 0x9a679a49 usb_free_coherent +EXPORT_SYMBOL_GPL vmlinux 0x9a71e71a sdhci_reset +EXPORT_SYMBOL_GPL vmlinux 0x9a72fc6a crypto_shash_final +EXPORT_SYMBOL_GPL vmlinux 0x9a8372e1 of_clk_hw_onecell_get +EXPORT_SYMBOL_GPL vmlinux 0x9a857340 sysfs_create_link_nowarn +EXPORT_SYMBOL_GPL vmlinux 0x9aa7f5e3 ip6_datagram_connect_v6_only +EXPORT_SYMBOL_GPL vmlinux 0x9aa866d0 mptcp_pm_get_subflows_max EXPORT_SYMBOL_GPL vmlinux 0x9ac11b74 suspend_set_ops -EXPORT_SYMBOL_GPL vmlinux 0x9acb988a dev_pm_genpd_set_performance_state -EXPORT_SYMBOL_GPL vmlinux 0x9ae58599 genphy_c45_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0x9ac5ec56 pci_host_common_remove +EXPORT_SYMBOL_GPL vmlinux 0x9acd8990 devm_of_led_get +EXPORT_SYMBOL_GPL vmlinux 0x9ae2cacf led_classdev_resume +EXPORT_SYMBOL_GPL vmlinux 0x9aea52fc bpf_trace_run1 EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty +EXPORT_SYMBOL_GPL vmlinux 0x9aef82f7 devres_get EXPORT_SYMBOL_GPL vmlinux 0x9af49514 icc_bulk_set_bw -EXPORT_SYMBOL_GPL vmlinux 0x9b0d3247 nanddev_ecc_engine_init -EXPORT_SYMBOL_GPL vmlinux 0x9b0ef7c8 nand_change_read_column_op -EXPORT_SYMBOL_GPL vmlinux 0x9b0f43d6 sync_page_io -EXPORT_SYMBOL_GPL vmlinux 0x9b114587 __traceiter_br_fdb_add -EXPORT_SYMBOL_GPL vmlinux 0x9b18550c fwnode_graph_get_remote_endpoint -EXPORT_SYMBOL_GPL vmlinux 0x9b239443 device_store_ulong -EXPORT_SYMBOL_GPL vmlinux 0x9b2f05f5 snd_soc_dapm_get_enum_double -EXPORT_SYMBOL_GPL vmlinux 0x9b4ed5c4 devm_clk_register +EXPORT_SYMBOL_GPL vmlinux 0x9b312222 sdhci_pltfm_unregister EXPORT_SYMBOL_GPL vmlinux 0x9b555c8c pm_suspend_default_s2idle -EXPORT_SYMBOL_GPL vmlinux 0x9b6588f0 snd_soc_jack_add_gpios -EXPORT_SYMBOL_GPL vmlinux 0x9b682f45 pm_wakeup_ws_event +EXPORT_SYMBOL_GPL vmlinux 0x9b58ded5 tegra_bpmp_free_mrq +EXPORT_SYMBOL_GPL vmlinux 0x9b5bb399 fib_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x9b5cd180 pm_genpd_add_device EXPORT_SYMBOL_GPL vmlinux 0x9b6ec967 ring_buffer_size EXPORT_SYMBOL_GPL vmlinux 0x9b746c56 snd_pcm_create_iec958_consumer_default -EXPORT_SYMBOL_GPL vmlinux 0x9b830f52 sysfs_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x9b7501ee eventfd_fget +EXPORT_SYMBOL_GPL vmlinux 0x9b7654cc follow_pte +EXPORT_SYMBOL_GPL vmlinux 0x9b791aff fsnotify EXPORT_SYMBOL_GPL vmlinux 0x9b896724 devlink_param_value_str_fill +EXPORT_SYMBOL_GPL vmlinux 0x9b8bb80d inet6_csk_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0x9b9071cb get_old_itimerspec32 EXPORT_SYMBOL_GPL vmlinux 0x9b92d16e pinctrl_gpio_set_config -EXPORT_SYMBOL_GPL vmlinux 0x9b9c9ad1 serial8250_rx_chars -EXPORT_SYMBOL_GPL vmlinux 0x9bb99f36 crypto_stats_akcipher_verify +EXPORT_SYMBOL_GPL vmlinux 0x9bb88657 regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x9bc235dd add_to_page_cache_lru EXPORT_SYMBOL_GPL vmlinux 0x9bcf9f7d housekeeping_enabled -EXPORT_SYMBOL_GPL vmlinux 0x9bd96258 debugfs_remove -EXPORT_SYMBOL_GPL vmlinux 0x9be53c61 pm_generic_thaw +EXPORT_SYMBOL_GPL vmlinux 0x9bd06699 i2c_new_scanned_device +EXPORT_SYMBOL_GPL vmlinux 0x9bd75de9 __fsnotify_parent +EXPORT_SYMBOL_GPL vmlinux 0x9bddd182 pci_enable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0x9bec9fad mtk_pinconf_adv_drive_get EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui -EXPORT_SYMBOL_GPL vmlinux 0x9bf36cb1 __vfs_setxattr_noperm +EXPORT_SYMBOL_GPL vmlinux 0x9bf85fb7 clockevent_delta2ns EXPORT_SYMBOL_GPL vmlinux 0x9bfde704 snd_soc_daifmt_clock_provider_fliped -EXPORT_SYMBOL_GPL vmlinux 0x9bfdf3b5 fat_get_dotdot_entry -EXPORT_SYMBOL_GPL vmlinux 0x9c08be4b tty_ldisc_flush -EXPORT_SYMBOL_GPL vmlinux 0x9c0d3032 usb_autopm_get_interface -EXPORT_SYMBOL_GPL vmlinux 0x9c1f8dea fuse_conn_init -EXPORT_SYMBOL_GPL vmlinux 0x9c2f77fd snd_soc_dapm_put_pin_switch -EXPORT_SYMBOL_GPL vmlinux 0x9c3eaf04 __rtnl_link_unregister -EXPORT_SYMBOL_GPL vmlinux 0x9c465958 tc3589x_block_write -EXPORT_SYMBOL_GPL vmlinux 0x9c471600 subsys_dev_iter_next -EXPORT_SYMBOL_GPL vmlinux 0x9c4b01d2 bd_link_disk_holder -EXPORT_SYMBOL_GPL vmlinux 0x9c4da36e ahci_platform_disable_phys -EXPORT_SYMBOL_GPL vmlinux 0x9c52de3e dev_pm_domain_start +EXPORT_SYMBOL_GPL vmlinux 0x9c01c58f sk_msg_trim +EXPORT_SYMBOL_GPL vmlinux 0x9c1310c6 snd_soc_dapm_force_enable_pin +EXPORT_SYMBOL_GPL vmlinux 0x9c2b4d5f bpf_prog_create_from_user +EXPORT_SYMBOL_GPL vmlinux 0x9c348f7f pwm_request_from_chip +EXPORT_SYMBOL_GPL vmlinux 0x9c4904b9 tcp_slow_start +EXPORT_SYMBOL_GPL vmlinux 0x9c5a035b spi_async +EXPORT_SYMBOL_GPL vmlinux 0x9c62bf70 extcon_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9c686f60 platform_device_register_full EXPORT_SYMBOL_GPL vmlinux 0x9c6febfc add_uevent_var -EXPORT_SYMBOL_GPL vmlinux 0x9c788450 stmpe811_adc_common_init -EXPORT_SYMBOL_GPL vmlinux 0x9c78c4bc iommu_enable_nesting -EXPORT_SYMBOL_GPL vmlinux 0x9c7b26b6 mtd_block_markbad +EXPORT_SYMBOL_GPL vmlinux 0x9c79116c imx_pcm_fiq_init +EXPORT_SYMBOL_GPL vmlinux 0x9c7e2f7e __mtd_next_device EXPORT_SYMBOL_GPL vmlinux 0x9c803020 usb_phy_roothub_power_on -EXPORT_SYMBOL_GPL vmlinux 0x9c822518 dev_queue_xmit_nit -EXPORT_SYMBOL_GPL vmlinux 0x9c84fa65 cgroup_get_e_css -EXPORT_SYMBOL_GPL vmlinux 0x9c864146 ping_close +EXPORT_SYMBOL_GPL vmlinux 0x9c80e2bf genphy_c45_an_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0x9c86464d of_mm_gpiochip_add_data +EXPORT_SYMBOL_GPL vmlinux 0x9c972988 clean_acked_data_enable EXPORT_SYMBOL_GPL vmlinux 0x9ca480cc clk_gate_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0x9cad24c6 edac_mc_del_mc -EXPORT_SYMBOL_GPL vmlinux 0x9cc0be62 evm_inode_init_security +EXPORT_SYMBOL_GPL vmlinux 0x9ca71589 devm_regmap_field_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0x9cafd712 subsys_virtual_register +EXPORT_SYMBOL_GPL vmlinux 0x9cb55bd8 power_supply_class EXPORT_SYMBOL_GPL vmlinux 0x9cc4f70a register_pm_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9cd08fd8 sched_set_fifo -EXPORT_SYMBOL_GPL vmlinux 0x9cd10310 ehci_resume -EXPORT_SYMBOL_GPL vmlinux 0x9cdfe863 __dax_driver_register -EXPORT_SYMBOL_GPL vmlinux 0x9ce89b5d extcon_set_property_capability -EXPORT_SYMBOL_GPL vmlinux 0x9cef2e34 snd_soc_of_get_dai_link_codecs -EXPORT_SYMBOL_GPL vmlinux 0x9cf0de9c snd_soc_get_enum_double -EXPORT_SYMBOL_GPL vmlinux 0x9cfa7440 mctrl_gpio_free +EXPORT_SYMBOL_GPL vmlinux 0x9ccf5bae extcon_set_state_sync +EXPORT_SYMBOL_GPL vmlinux 0x9cd95812 gov_update_cpu_data +EXPORT_SYMBOL_GPL vmlinux 0x9ce49779 dm_table_device_name +EXPORT_SYMBOL_GPL vmlinux 0x9cfecd87 paste_selection EXPORT_SYMBOL_GPL vmlinux 0x9d09e8ae ring_buffer_event_data -EXPORT_SYMBOL_GPL vmlinux 0x9d113d64 __sock_recv_timestamp -EXPORT_SYMBOL_GPL vmlinux 0x9d12b5a4 fwnode_find_reference -EXPORT_SYMBOL_GPL vmlinux 0x9d1a567b get_net_ns_by_fd -EXPORT_SYMBOL_GPL vmlinux 0x9d1d9fd5 wm8350_clear_bits -EXPORT_SYMBOL_GPL vmlinux 0x9d1e2982 mpc8xxx_spi_probe +EXPORT_SYMBOL_GPL vmlinux 0x9d0cc348 mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x9d0f98a3 ata_bmdma_post_internal_cmd +EXPORT_SYMBOL_GPL vmlinux 0x9d1acbf1 ata_link_offline +EXPORT_SYMBOL_GPL vmlinux 0x9d280d50 pinctrl_generic_get_group EXPORT_SYMBOL_GPL vmlinux 0x9d2f49ef __SCK__tp_func_pelt_se_tp -EXPORT_SYMBOL_GPL vmlinux 0x9d36ce35 mtk_build_eint -EXPORT_SYMBOL_GPL vmlinux 0x9d467183 spi_get_device_id -EXPORT_SYMBOL_GPL vmlinux 0x9d47f126 __traceiter_tcp_send_reset -EXPORT_SYMBOL_GPL vmlinux 0x9d50a69c tty_buffer_set_limit -EXPORT_SYMBOL_GPL vmlinux 0x9d5988b5 dma_map_sgtable +EXPORT_SYMBOL_GPL vmlinux 0x9d4650ae sdhci_set_ios +EXPORT_SYMBOL_GPL vmlinux 0x9d4837a9 devm_kstrdup_const +EXPORT_SYMBOL_GPL vmlinux 0x9d50ac4e perf_pmu_migrate_context +EXPORT_SYMBOL_GPL vmlinux 0x9d54336c devlink_resource_occ_get_register EXPORT_SYMBOL_GPL vmlinux 0x9d5a8178 hrtimer_try_to_cancel -EXPORT_SYMBOL_GPL vmlinux 0x9d787441 mtk_eint_do_suspend -EXPORT_SYMBOL_GPL vmlinux 0x9d7a45b8 subsys_interface_unregister -EXPORT_SYMBOL_GPL vmlinux 0x9da932f4 snd_soc_jack_add_pins -EXPORT_SYMBOL_GPL vmlinux 0x9dab4b17 cpufreq_dbs_governor_start -EXPORT_SYMBOL_GPL vmlinux 0x9db0cd65 fwnode_get_parent -EXPORT_SYMBOL_GPL vmlinux 0x9dbe4c6b ahci_reset_controller -EXPORT_SYMBOL_GPL vmlinux 0x9dc0de25 fat_add_entries -EXPORT_SYMBOL_GPL vmlinux 0x9dc1abea devm_phy_create -EXPORT_SYMBOL_GPL vmlinux 0x9dc1fb2b sdhci_start_tuning -EXPORT_SYMBOL_GPL vmlinux 0x9dc46dea task_cls_state -EXPORT_SYMBOL_GPL vmlinux 0x9ddd503d snd_soc_jack_add_gpiods +EXPORT_SYMBOL_GPL vmlinux 0x9d6c0ed6 fat_truncate_time +EXPORT_SYMBOL_GPL vmlinux 0x9d6c7e63 mtd_erase +EXPORT_SYMBOL_GPL vmlinux 0x9d6cb484 kstrdup_quotable_file +EXPORT_SYMBOL_GPL vmlinux 0x9d794ae6 icc_put +EXPORT_SYMBOL_GPL vmlinux 0x9d7e7476 pm_clk_remove +EXPORT_SYMBOL_GPL vmlinux 0x9d7f1ff7 rio_dev_get +EXPORT_SYMBOL_GPL vmlinux 0x9d891e86 iommu_map +EXPORT_SYMBOL_GPL vmlinux 0x9d8df3d7 blkcg_policy_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9d98eaef efivar_entry_size +EXPORT_SYMBOL_GPL vmlinux 0x9da7d30d validate_xmit_skb_list +EXPORT_SYMBOL_GPL vmlinux 0x9db7d1b0 devlink_params_unpublish +EXPORT_SYMBOL_GPL vmlinux 0x9dd50638 dev_pm_opp_set_opp +EXPORT_SYMBOL_GPL vmlinux 0x9de71d99 skb_complete_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x9def04d4 del_mtd_blktrans_dev +EXPORT_SYMBOL_GPL vmlinux 0x9defae30 verify_signature EXPORT_SYMBOL_GPL vmlinux 0x9df10ab5 usb_ep_dequeue -EXPORT_SYMBOL_GPL vmlinux 0x9df14278 snd_ctl_add_vmaster_hook EXPORT_SYMBOL_GPL vmlinux 0x9dfdf722 gpio_free_array -EXPORT_SYMBOL_GPL vmlinux 0x9e00c7c3 watchdog_set_last_hw_keepalive EXPORT_SYMBOL_GPL vmlinux 0x9e016686 digsig_verify -EXPORT_SYMBOL_GPL vmlinux 0x9e10ea20 dev_pm_opp_find_freq_ceil -EXPORT_SYMBOL_GPL vmlinux 0x9e153b38 ata_ehi_clear_desc -EXPORT_SYMBOL_GPL vmlinux 0x9e22a003 thermal_zone_get_temp -EXPORT_SYMBOL_GPL vmlinux 0x9e24db74 spi_slave_abort -EXPORT_SYMBOL_GPL vmlinux 0x9e2dd78d spi_mem_dirmap_write +EXPORT_SYMBOL_GPL vmlinux 0x9e0e8dbe of_property_read_variable_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x9e349cac __devm_spi_alloc_controller +EXPORT_SYMBOL_GPL vmlinux 0x9e3bbbfb pci_load_and_free_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x9e450ec7 ata_sff_check_status EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field -EXPORT_SYMBOL_GPL vmlinux 0x9e4a88d6 snd_soc_set_dmi_name -EXPORT_SYMBOL_GPL vmlinux 0x9e4d241c serdev_device_alloc -EXPORT_SYMBOL_GPL vmlinux 0x9e4dcb84 irq_find_matching_fwspec -EXPORT_SYMBOL_GPL vmlinux 0x9e500c52 blk_mq_queue_inflight -EXPORT_SYMBOL_GPL vmlinux 0x9e63483c kthread_unpark +EXPORT_SYMBOL_GPL vmlinux 0x9e477426 pci_epf_destroy +EXPORT_SYMBOL_GPL vmlinux 0x9e47e036 extcon_unregister_notifier_all +EXPORT_SYMBOL_GPL vmlinux 0x9e521ae6 iommu_aux_get_pasid EXPORT_SYMBOL_GPL vmlinux 0x9e65ed2b __kprobe_event_add_fields -EXPORT_SYMBOL_GPL vmlinux 0x9e6d07d1 devm_thermal_add_hwmon_sysfs -EXPORT_SYMBOL_GPL vmlinux 0x9e71bc0f hwmon_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x9e854c00 mmc_crypto_setup_queue -EXPORT_SYMBOL_GPL vmlinux 0x9e867955 request_firmware_direct +EXPORT_SYMBOL_GPL vmlinux 0x9e72ef8e devm_regulator_get +EXPORT_SYMBOL_GPL vmlinux 0x9e73de16 tty_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0x9e8d4c27 fscrypt_file_open EXPORT_SYMBOL_GPL vmlinux 0x9e9dd888 x509_cert_parse -EXPORT_SYMBOL_GPL vmlinux 0x9ebd5a5c tty_ldisc_ref -EXPORT_SYMBOL_GPL vmlinux 0x9ec9ec33 page_endio +EXPORT_SYMBOL_GPL vmlinux 0x9ead80ef nfs_ssc_client_tbl +EXPORT_SYMBOL_GPL vmlinux 0x9eb04dab pci_ecam_map_bus +EXPORT_SYMBOL_GPL vmlinux 0x9eb78ae2 of_phandle_iterator_next +EXPORT_SYMBOL_GPL vmlinux 0x9ec1c6df pktgen_xfrm_outer_mode_output EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9edbb9b6 pci_user_write_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x9ee2f796 disk_update_readahead EXPORT_SYMBOL_GPL vmlinux 0x9ee5e40a __ktime_divns -EXPORT_SYMBOL_GPL vmlinux 0x9ee8cbda clone_private_mount EXPORT_SYMBOL_GPL vmlinux 0x9eebdde7 mpi_point_new -EXPORT_SYMBOL_GPL vmlinux 0x9eeda024 kill_mtd_super -EXPORT_SYMBOL_GPL vmlinux 0x9ef5fefb regulator_list_hardware_vsel -EXPORT_SYMBOL_GPL vmlinux 0x9efdd3bf handle_fasteoi_mask_irq +EXPORT_SYMBOL_GPL vmlinux 0x9eed9e72 crypto_unregister_skciphers +EXPORT_SYMBOL_GPL vmlinux 0x9ef95836 tcp_register_ulp +EXPORT_SYMBOL_GPL vmlinux 0x9ef9f51e gov_attr_set_put +EXPORT_SYMBOL_GPL vmlinux 0x9ef9fc4a devlink_dpipe_table_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9efd30a5 snd_soc_tplg_component_load +EXPORT_SYMBOL_GPL vmlinux 0x9effac11 tty_buffer_unlock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x9f003c3b led_trigger_remove +EXPORT_SYMBOL_GPL vmlinux 0x9f11e329 virtqueue_enable_cb_prepare EXPORT_SYMBOL_GPL vmlinux 0x9f140889 usb_anchor_resume_wakeups -EXPORT_SYMBOL_GPL vmlinux 0x9f1e5efa rtnl_af_unregister -EXPORT_SYMBOL_GPL vmlinux 0x9f224ca8 pm_clk_resume -EXPORT_SYMBOL_GPL vmlinux 0x9f2daba4 firmware_kobj -EXPORT_SYMBOL_GPL vmlinux 0x9f3c8ffe rio_request_dma -EXPORT_SYMBOL_GPL vmlinux 0x9f46baa6 ata_sff_tf_read +EXPORT_SYMBOL_GPL vmlinux 0x9f1b056b rio_unmap_inb_region +EXPORT_SYMBOL_GPL vmlinux 0x9f25ad7f devlink_dpipe_table_counter_enabled +EXPORT_SYMBOL_GPL vmlinux 0x9f268610 fwnode_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x9f303aa2 devm_rtc_nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0x9f341125 dev_attr_em_message_type +EXPORT_SYMBOL_GPL vmlinux 0x9f3605a8 syscon_regmap_lookup_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x9f3faf66 pm_clk_remove_clk +EXPORT_SYMBOL_GPL vmlinux 0x9f43274e spi_mem_get_name +EXPORT_SYMBOL_GPL vmlinux 0x9f4834d6 ata_eh_freeze_port EXPORT_SYMBOL_GPL vmlinux 0x9f4a51ca pci_remap_cfgspace -EXPORT_SYMBOL_GPL vmlinux 0x9f4d6753 sk_psock_msg_verdict -EXPORT_SYMBOL_GPL vmlinux 0x9f4e3434 ata_sff_softreset +EXPORT_SYMBOL_GPL vmlinux 0x9f4a8327 otg_ulpi_create +EXPORT_SYMBOL_GPL vmlinux 0x9f4f7ae7 usb_wakeup_enabled_descendants +EXPORT_SYMBOL_GPL vmlinux 0x9f53e356 devfreq_event_disable_edev +EXPORT_SYMBOL_GPL vmlinux 0x9f5453d5 mmc_send_tuning EXPORT_SYMBOL_GPL vmlinux 0x9f56c4b9 __SCK__tp_func_devlink_hwmsg -EXPORT_SYMBOL_GPL vmlinux 0x9f5fb246 __mtd_next_device -EXPORT_SYMBOL_GPL vmlinux 0x9f632db5 ima_file_hash -EXPORT_SYMBOL_GPL vmlinux 0x9f64f4cc tcp_register_ulp -EXPORT_SYMBOL_GPL vmlinux 0x9f65f659 get_device -EXPORT_SYMBOL_GPL vmlinux 0x9f8c832d imx_pcm_dma_init +EXPORT_SYMBOL_GPL vmlinux 0x9f6625b0 ahci_platform_init_host +EXPORT_SYMBOL_GPL vmlinux 0x9f76fcfb irq_domain_create_legacy +EXPORT_SYMBOL_GPL vmlinux 0x9f79719f irq_chip_set_vcpu_affinity_parent +EXPORT_SYMBOL_GPL vmlinux 0x9f8d5465 dev_pm_opp_free_cpufreq_table EXPORT_SYMBOL_GPL vmlinux 0x9f964647 tegra20_clk_set_emc_round_callback +EXPORT_SYMBOL_GPL vmlinux 0x9f9a638b inet6_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x9f9b73e3 inet_ehash_nolisten +EXPORT_SYMBOL_GPL vmlinux 0x9fa98975 __platform_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x9fad9885 snd_soc_limit_volume +EXPORT_SYMBOL_GPL vmlinux 0x9fb6e6bb nanddev_mtd_max_bad_blocks +EXPORT_SYMBOL_GPL vmlinux 0x9fb72015 devm_hwspin_lock_request EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x9fd83b16 proc_create_net_data_write +EXPORT_SYMBOL_GPL vmlinux 0x9fd74da9 __pneigh_lookup +EXPORT_SYMBOL_GPL vmlinux 0x9fd9ea1d ipv6_dup_options EXPORT_SYMBOL_GPL vmlinux 0x9fe899b7 get_cpu_idle_time +EXPORT_SYMBOL_GPL vmlinux 0x9fe8ad1a snd_dmaengine_pcm_open_request_chan EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm -EXPORT_SYMBOL_GPL vmlinux 0x9fede061 nvmem_cell_read_u8 -EXPORT_SYMBOL_GPL vmlinux 0x9ff23219 __devm_irq_alloc_descs -EXPORT_SYMBOL_GPL vmlinux 0xa0027524 dm_noflush_suspending -EXPORT_SYMBOL_GPL vmlinux 0xa007e433 snd_dmaengine_pcm_register -EXPORT_SYMBOL_GPL vmlinux 0xa00cbc54 regulator_map_voltage_linear_range -EXPORT_SYMBOL_GPL vmlinux 0xa039cb33 xfrm_audit_policy_add -EXPORT_SYMBOL_GPL vmlinux 0xa03dc074 regulator_disable -EXPORT_SYMBOL_GPL vmlinux 0xa0438d0e dm_bio_get_target_bio_nr +EXPORT_SYMBOL_GPL vmlinux 0x9feed78f fib4_rule_default +EXPORT_SYMBOL_GPL vmlinux 0xa0302022 of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0xa031ce41 sched_trace_rq_cpu +EXPORT_SYMBOL_GPL vmlinux 0xa03e7cb0 meson8_pmx_ops +EXPORT_SYMBOL_GPL vmlinux 0xa0481f2d devm_hwmon_device_register_with_info +EXPORT_SYMBOL_GPL vmlinux 0xa04f7985 gpiochip_remove EXPORT_SYMBOL_GPL vmlinux 0xa04f945a cpus_read_lock -EXPORT_SYMBOL_GPL vmlinux 0xa06808ff pm_runtime_enable -EXPORT_SYMBOL_GPL vmlinux 0xa0707ac3 ip6_redirect -EXPORT_SYMBOL_GPL vmlinux 0xa0772d30 handle_fasteoi_irq -EXPORT_SYMBOL_GPL vmlinux 0xa08457f1 ip_route_output_key_hash -EXPORT_SYMBOL_GPL vmlinux 0xa084b3b8 firmware_request_cache -EXPORT_SYMBOL_GPL vmlinux 0xa08e19d2 blk_mq_start_stopped_hw_queue -EXPORT_SYMBOL_GPL vmlinux 0xa0b5b92a i2c_parse_fw_timings -EXPORT_SYMBOL_GPL vmlinux 0xa0c99e2d pm_generic_resume_noirq -EXPORT_SYMBOL_GPL vmlinux 0xa0d0e210 kernfs_path_from_node -EXPORT_SYMBOL_GPL vmlinux 0xa0d9bb37 pinctrl_select_default_state -EXPORT_SYMBOL_GPL vmlinux 0xa10638fa iomap_writepage -EXPORT_SYMBOL_GPL vmlinux 0xa10aa2e7 raw_abort -EXPORT_SYMBOL_GPL vmlinux 0xa10efecc generic_handle_domain_irq -EXPORT_SYMBOL_GPL vmlinux 0xa1125c65 mdiobus_modify -EXPORT_SYMBOL_GPL vmlinux 0xa1335547 stmpe_reg_write -EXPORT_SYMBOL_GPL vmlinux 0xa1353789 ahci_sdev_attrs -EXPORT_SYMBOL_GPL vmlinux 0xa14afdf2 rio_release_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0xa0545a9e anon_transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa0633f6b ipv6_stub +EXPORT_SYMBOL_GPL vmlinux 0xa064070c tpm_put_ops +EXPORT_SYMBOL_GPL vmlinux 0xa0668e4d udp_bpf_update_proto +EXPORT_SYMBOL_GPL vmlinux 0xa08f50df stmpe_disable +EXPORT_SYMBOL_GPL vmlinux 0xa093104a dev_pm_domain_attach_by_id +EXPORT_SYMBOL_GPL vmlinux 0xa09912aa tracing_snapshot_cond +EXPORT_SYMBOL_GPL vmlinux 0xa0ac2f45 vfs_submount +EXPORT_SYMBOL_GPL vmlinux 0xa0b448cf tcp_done +EXPORT_SYMBOL_GPL vmlinux 0xa0dd3c9f tc3589x_block_read +EXPORT_SYMBOL_GPL vmlinux 0xa0f3dde1 of_property_read_u32_index +EXPORT_SYMBOL_GPL vmlinux 0xa10a2113 mtk_pinconf_adv_pull_get +EXPORT_SYMBOL_GPL vmlinux 0xa1208da3 pci_iomap_wc_range +EXPORT_SYMBOL_GPL vmlinux 0xa1227c03 apply_to_page_range +EXPORT_SYMBOL_GPL vmlinux 0xa12395bc pci_epc_put +EXPORT_SYMBOL_GPL vmlinux 0xa1292d75 wbc_detach_inode +EXPORT_SYMBOL_GPL vmlinux 0xa12e5524 kernfs_get +EXPORT_SYMBOL_GPL vmlinux 0xa139f6c9 usb_autopm_put_interface +EXPORT_SYMBOL_GPL vmlinux 0xa13ab2b7 devlink_port_type_eth_set +EXPORT_SYMBOL_GPL vmlinux 0xa13dfdb3 device_add EXPORT_SYMBOL_GPL vmlinux 0xa14c792f __hrtimer_get_remaining -EXPORT_SYMBOL_GPL vmlinux 0xa1560cfb phy_power_off -EXPORT_SYMBOL_GPL vmlinux 0xa15f9757 sdev_evt_send_simple -EXPORT_SYMBOL_GPL vmlinux 0xa166ea51 platform_device_add -EXPORT_SYMBOL_GPL vmlinux 0xa16c93fd sdio_set_host_pm_flags -EXPORT_SYMBOL_GPL vmlinux 0xa17ed78d dm_hold -EXPORT_SYMBOL_GPL vmlinux 0xa1817ac0 dev_pm_opp_enable -EXPORT_SYMBOL_GPL vmlinux 0xa18f51af blk_stat_enable_accounting -EXPORT_SYMBOL_GPL vmlinux 0xa190d057 mbox_controller_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa193c59a pm_runtime_autosuspend_expiration -EXPORT_SYMBOL_GPL vmlinux 0xa194a637 snd_device_get_state -EXPORT_SYMBOL_GPL vmlinux 0xa1a52b59 mmc_get_ext_csd +EXPORT_SYMBOL_GPL vmlinux 0xa14f2ef7 devlink_port_params_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa15343f3 of_clk_add_provider +EXPORT_SYMBOL_GPL vmlinux 0xa17c7800 perf_aux_output_flag +EXPORT_SYMBOL_GPL vmlinux 0xa1884ab3 imx_pcm_fiq_exit +EXPORT_SYMBOL_GPL vmlinux 0xa18b560e sdio_set_host_pm_flags +EXPORT_SYMBOL_GPL vmlinux 0xa18dba90 pm_generic_restore_noirq +EXPORT_SYMBOL_GPL vmlinux 0xa1921391 crypto_shash_alg_has_setkey +EXPORT_SYMBOL_GPL vmlinux 0xa1944f30 ata_bmdma_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0xa19c1817 rio_release_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0xa1a7219b __traceiter_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0xa1a8217a msg_zerocopy_put_abort +EXPORT_SYMBOL_GPL vmlinux 0xa1b9257c pm_clk_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0xa1c81d29 extcon_unregister_notifier EXPORT_SYMBOL_GPL vmlinux 0xa1d8004a videomode_from_timing -EXPORT_SYMBOL_GPL vmlinux 0xa1e11ec4 fsverity_verify_bio -EXPORT_SYMBOL_GPL vmlinux 0xa1e7c191 snd_soc_component_write +EXPORT_SYMBOL_GPL vmlinux 0xa1d88e71 hwspin_lock_free +EXPORT_SYMBOL_GPL vmlinux 0xa1db16d2 rio_release_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0xa1dda5a5 dm_set_target_max_io_len EXPORT_SYMBOL_GPL vmlinux 0xa1f1bd3a arm_check_condition -EXPORT_SYMBOL_GPL vmlinux 0xa2085331 devm_regulator_irq_helper -EXPORT_SYMBOL_GPL vmlinux 0xa209935a regmap_get_device -EXPORT_SYMBOL_GPL vmlinux 0xa20c46e2 devm_pm_opp_set_regulators +EXPORT_SYMBOL_GPL vmlinux 0xa1f51f36 snd_device_disconnect +EXPORT_SYMBOL_GPL vmlinux 0xa1f54930 debugfs_create_bool EXPORT_SYMBOL_GPL vmlinux 0xa20d01ba __trace_bprintk -EXPORT_SYMBOL_GPL vmlinux 0xa23c18a3 pm_stay_awake -EXPORT_SYMBOL_GPL vmlinux 0xa240ff85 vfs_kern_mount -EXPORT_SYMBOL_GPL vmlinux 0xa24a46d0 perf_pmu_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa24bc754 gpiod_set_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0xa2200fea dev_pm_opp_set_supported_hw +EXPORT_SYMBOL_GPL vmlinux 0xa22664ce __rio_local_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0xa22d5a42 ohci_hub_control EXPORT_SYMBOL_GPL vmlinux 0xa2500ef6 __SCK__tp_func_powernv_throttle -EXPORT_SYMBOL_GPL vmlinux 0xa254636c ip6_sk_dst_lookup_flow -EXPORT_SYMBOL_GPL vmlinux 0xa254e2a6 pci_iomap_wc_range +EXPORT_SYMBOL_GPL vmlinux 0xa26bc924 alarmtimer_get_rtcdev EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested -EXPORT_SYMBOL_GPL vmlinux 0xa27684c6 xfrm_audit_state_notfound_simple +EXPORT_SYMBOL_GPL vmlinux 0xa2720cc8 snd_soc_dapm_enable_pin +EXPORT_SYMBOL_GPL vmlinux 0xa27e54b1 dapm_mark_endpoints_dirty EXPORT_SYMBOL_GPL vmlinux 0xa286a234 snd_pcm_format_name -EXPORT_SYMBOL_GPL vmlinux 0xa28bd069 devm_pm_opp_register_set_opp_helper -EXPORT_SYMBOL_GPL vmlinux 0xa29580ff generic_device_group -EXPORT_SYMBOL_GPL vmlinux 0xa29af39c thermal_zone_device_update -EXPORT_SYMBOL_GPL vmlinux 0xa29bb6f9 anon_transport_class_register -EXPORT_SYMBOL_GPL vmlinux 0xa2a2aada fib6_rule_default -EXPORT_SYMBOL_GPL vmlinux 0xa2a3d33d crypto_register_scomps -EXPORT_SYMBOL_GPL vmlinux 0xa2a914b3 devm_extcon_dev_register -EXPORT_SYMBOL_GPL vmlinux 0xa2aa90d5 efivar_entry_get -EXPORT_SYMBOL_GPL vmlinux 0xa2acf49b bus_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xa287efda led_sysfs_disable +EXPORT_SYMBOL_GPL vmlinux 0xa295f8ba ata_slave_link_init +EXPORT_SYMBOL_GPL vmlinux 0xa29b7511 arm_iommu_create_mapping EXPORT_SYMBOL_GPL vmlinux 0xa2b0820d __SCK__tp_func_cpu_idle EXPORT_SYMBOL_GPL vmlinux 0xa2c31b2a proc_douintvec_minmax +EXPORT_SYMBOL_GPL vmlinux 0xa2ca5951 pci_epf_create +EXPORT_SYMBOL_GPL vmlinux 0xa2ccd434 ahci_init_controller +EXPORT_SYMBOL_GPL vmlinux 0xa2d0878d bio_start_io_acct +EXPORT_SYMBOL_GPL vmlinux 0xa2d233f6 usb_reset_configuration +EXPORT_SYMBOL_GPL vmlinux 0xa2d3431b dev_coredumpsg +EXPORT_SYMBOL_GPL vmlinux 0xa2de17b1 fb_bl_default_curve EXPORT_SYMBOL_GPL vmlinux 0xa2e1b3ef trace_printk_init_buffers -EXPORT_SYMBOL_GPL vmlinux 0xa2e48b87 __fl6_sock_lookup +EXPORT_SYMBOL_GPL vmlinux 0xa2e64415 rt_mutex_trylock +EXPORT_SYMBOL_GPL vmlinux 0xa2e64826 devm_snd_soc_register_dai +EXPORT_SYMBOL_GPL vmlinux 0xa2f6a41e led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa302f07b devm_kmemdup +EXPORT_SYMBOL_GPL vmlinux 0xa304e37c snd_soc_remove_pcm_runtime +EXPORT_SYMBOL_GPL vmlinux 0xa30c1d3f device_remove_properties +EXPORT_SYMBOL_GPL vmlinux 0xa3139615 wwan_unregister_ops +EXPORT_SYMBOL_GPL vmlinux 0xa3156eb6 devlink_dpipe_headers_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa31ef9e2 xdp_rxq_info_reg +EXPORT_SYMBOL_GPL vmlinux 0xa32cf427 debugfs_lookup EXPORT_SYMBOL_GPL vmlinux 0xa32f3d9e decode_rs16 -EXPORT_SYMBOL_GPL vmlinux 0xa3332fbf is_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0xa3314814 ip_local_out EXPORT_SYMBOL_GPL vmlinux 0xa33744aa edac_stop_work EXPORT_SYMBOL_GPL vmlinux 0xa346975c idr_remove -EXPORT_SYMBOL_GPL vmlinux 0xa35ebcd7 component_master_del +EXPORT_SYMBOL_GPL vmlinux 0xa34a3c01 ima_inode_hash EXPORT_SYMBOL_GPL vmlinux 0xa362bf8f hrtimer_init -EXPORT_SYMBOL_GPL vmlinux 0xa3648a17 spi_res_release -EXPORT_SYMBOL_GPL vmlinux 0xa37068fe bus_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa381afc3 crypto_grab_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xa3661ad4 skb_copy_ubufs +EXPORT_SYMBOL_GPL vmlinux 0xa36d1f94 em_pd_get +EXPORT_SYMBOL_GPL vmlinux 0xa36ffc6a switchdev_handle_fdb_del_to_device +EXPORT_SYMBOL_GPL vmlinux 0xa37c6d38 clk_register_divider_table +EXPORT_SYMBOL_GPL vmlinux 0xa3820072 mddev_unlock EXPORT_SYMBOL_GPL vmlinux 0xa38602cd drain_workqueue -EXPORT_SYMBOL_GPL vmlinux 0xa38654de virtqueue_kick -EXPORT_SYMBOL_GPL vmlinux 0xa3871ee8 virtqueue_enable_cb -EXPORT_SYMBOL_GPL vmlinux 0xa3893bae crypto_get_default_null_skcipher EXPORT_SYMBOL_GPL vmlinux 0xa389a49a profile_event_register EXPORT_SYMBOL_GPL vmlinux 0xa38a9f71 get_itimerspec64 -EXPORT_SYMBOL_GPL vmlinux 0xa38ac6f7 regulator_set_current_limit -EXPORT_SYMBOL_GPL vmlinux 0xa3903d94 mtd_write_oob +EXPORT_SYMBOL_GPL vmlinux 0xa3912d1c __traceiter_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0xa39e1b83 snd_soc_dpcm_fe_can_update EXPORT_SYMBOL_GPL vmlinux 0xa3a04602 btree_geo64 -EXPORT_SYMBOL_GPL vmlinux 0xa3a4ad77 debugfs_create_u32_array -EXPORT_SYMBOL_GPL vmlinux 0xa3ad7477 of_genpd_parse_idle_states +EXPORT_SYMBOL_GPL vmlinux 0xa3b83970 synth_event_trace_array +EXPORT_SYMBOL_GPL vmlinux 0xa3b84651 ahci_platform_disable_regulators EXPORT_SYMBOL_GPL vmlinux 0xa3b958ce reset_hung_task_detector +EXPORT_SYMBOL_GPL vmlinux 0xa3c01879 cpufreq_freq_attr_scaling_boost_freqs EXPORT_SYMBOL_GPL vmlinux 0xa3c1db37 nf_hooks_lwtunnel_enabled -EXPORT_SYMBOL_GPL vmlinux 0xa3d6225d blkg_conf_finish -EXPORT_SYMBOL_GPL vmlinux 0xa3d9243b usb_hub_claim_port -EXPORT_SYMBOL_GPL vmlinux 0xa3d9ac40 securityfs_create_file -EXPORT_SYMBOL_GPL vmlinux 0xa3ead714 tcp_register_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0xa3c59081 bus_sort_breadthfirst +EXPORT_SYMBOL_GPL vmlinux 0xa3cc9439 securityfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0xa3cebddb fat_time_fat2unix +EXPORT_SYMBOL_GPL vmlinux 0xa3d6fa34 platform_device_register EXPORT_SYMBOL_GPL vmlinux 0xa3f12f69 __crypto_xor -EXPORT_SYMBOL_GPL vmlinux 0xa3f132f5 snd_soc_dpcm_fe_can_update -EXPORT_SYMBOL_GPL vmlinux 0xa3f5bfe6 da9052_disable_irq EXPORT_SYMBOL_GPL vmlinux 0xa4031b7f sfp_parse_port -EXPORT_SYMBOL_GPL vmlinux 0xa40738f3 securityfs_create_dir -EXPORT_SYMBOL_GPL vmlinux 0xa40d575a of_hwspin_lock_get_id -EXPORT_SYMBOL_GPL vmlinux 0xa40dd994 dma_buf_dynamic_attach -EXPORT_SYMBOL_GPL vmlinux 0xa40f19c2 raw_seq_start EXPORT_SYMBOL_GPL vmlinux 0xa410a295 devlink_region_destroy -EXPORT_SYMBOL_GPL vmlinux 0xa4144d72 sdhci_resume_host -EXPORT_SYMBOL_GPL vmlinux 0xa4226865 bpf_trace_run11 -EXPORT_SYMBOL_GPL vmlinux 0xa424386d anon_inode_getfd -EXPORT_SYMBOL_GPL vmlinux 0xa430a5c8 iptunnel_xmit -EXPORT_SYMBOL_GPL vmlinux 0xa434cbeb addrconf_prefix_rcv_add_addr -EXPORT_SYMBOL_GPL vmlinux 0xa43bb724 tegra_bpmp_free_mrq -EXPORT_SYMBOL_GPL vmlinux 0xa4408acf dev_pm_set_dedicated_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xa415c270 inet_twsk_alloc EXPORT_SYMBOL_GPL vmlinux 0xa444c3ca topology_clear_scale_freq_source EXPORT_SYMBOL_GPL vmlinux 0xa44a1307 interval_tree_iter_first -EXPORT_SYMBOL_GPL vmlinux 0xa44a7017 device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa4547636 blkg_lookup_slowpath +EXPORT_SYMBOL_GPL vmlinux 0xa44c06a0 tcp_reno_cong_avoid +EXPORT_SYMBOL_GPL vmlinux 0xa44fabc0 devm_add_action +EXPORT_SYMBOL_GPL vmlinux 0xa450a2ea lwtunnel_output EXPORT_SYMBOL_GPL vmlinux 0xa45c7b90 stack_trace_print EXPORT_SYMBOL_GPL vmlinux 0xa45dc275 trace_seq_putmem +EXPORT_SYMBOL_GPL vmlinux 0xa463c03b __percpu_down_read +EXPORT_SYMBOL_GPL vmlinux 0xa467eb7b input_ff_upload +EXPORT_SYMBOL_GPL vmlinux 0xa46894e2 register_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0xa46d8cd6 ata_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0xa46f20a1 relay_file_operations EXPORT_SYMBOL_GPL vmlinux 0xa46f8631 kernel_read_file_from_path -EXPORT_SYMBOL_GPL vmlinux 0xa47c5780 md_bitmap_resize +EXPORT_SYMBOL_GPL vmlinux 0xa4772792 usb_driver_claim_interface EXPORT_SYMBOL_GPL vmlinux 0xa48196c8 kdb_poll_idx -EXPORT_SYMBOL_GPL vmlinux 0xa486aec0 crypto_hash_alg_has_setkey -EXPORT_SYMBOL_GPL vmlinux 0xa486f039 rio_register_driver -EXPORT_SYMBOL_GPL vmlinux 0xa4893557 virtqueue_disable_cb -EXPORT_SYMBOL_GPL vmlinux 0xa48e9025 snd_soc_dapm_new_control +EXPORT_SYMBOL_GPL vmlinux 0xa48e34bf bpf_event_output +EXPORT_SYMBOL_GPL vmlinux 0xa48f0ab5 sfp_bus_add_upstream +EXPORT_SYMBOL_GPL vmlinux 0xa4973403 ata_sff_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0xa497fbe5 snd_soc_set_dmi_name +EXPORT_SYMBOL_GPL vmlinux 0xa49c68aa lwtstate_free +EXPORT_SYMBOL_GPL vmlinux 0xa49d600d devm_pm_opp_set_supported_hw 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 0xa4c2d297 snd_soc_dapm_force_enable_pin EXPORT_SYMBOL_GPL vmlinux 0xa4cc19b3 irq_set_affinity_hint -EXPORT_SYMBOL_GPL vmlinux 0xa4ccc8e5 snd_soc_card_add_dai_link +EXPORT_SYMBOL_GPL vmlinux 0xa4d113a9 __regmap_init EXPORT_SYMBOL_GPL vmlinux 0xa4d275b9 __tracepoint_br_fdb_external_learn_add -EXPORT_SYMBOL_GPL vmlinux 0xa4d2aa41 snd_soc_dai_set_sysclk -EXPORT_SYMBOL_GPL vmlinux 0xa4d80551 device_change_owner +EXPORT_SYMBOL_GPL vmlinux 0xa4d648f9 proc_create_net_data_write +EXPORT_SYMBOL_GPL vmlinux 0xa4d6acf4 sdio_f0_readb +EXPORT_SYMBOL_GPL vmlinux 0xa4da63dc fat_setattr EXPORT_SYMBOL_GPL vmlinux 0xa4dc79c3 blocking_notifier_call_chain_robust +EXPORT_SYMBOL_GPL vmlinux 0xa4e7bfa9 snd_soc_bytes_info EXPORT_SYMBOL_GPL vmlinux 0xa4fab2ca inet_twsk_purge -EXPORT_SYMBOL_GPL vmlinux 0xa50aabbc acomp_request_alloc -EXPORT_SYMBOL_GPL vmlinux 0xa50ad389 kill_pid_usb_asyncio -EXPORT_SYMBOL_GPL vmlinux 0xa518c43f ata_sas_port_resume -EXPORT_SYMBOL_GPL vmlinux 0xa518fdd3 mtd_ooblayout_set_eccbytes -EXPORT_SYMBOL_GPL vmlinux 0xa519ab1e pm_clk_init -EXPORT_SYMBOL_GPL vmlinux 0xa51d5718 snd_pcm_stream_lock -EXPORT_SYMBOL_GPL vmlinux 0xa524fc37 security_path_chown EXPORT_SYMBOL_GPL vmlinux 0xa531471e clk_save_context -EXPORT_SYMBOL_GPL vmlinux 0xa536f227 fib6_new_table -EXPORT_SYMBOL_GPL vmlinux 0xa53804f6 clk_hw_get_parent_index -EXPORT_SYMBOL_GPL vmlinux 0xa5384a56 ahash_register_instance EXPORT_SYMBOL_GPL vmlinux 0xa53f0dd7 tnum_strn -EXPORT_SYMBOL_GPL vmlinux 0xa54f5d09 usb_free_urb -EXPORT_SYMBOL_GPL vmlinux 0xa55920a7 xhci_reset_bandwidth -EXPORT_SYMBOL_GPL vmlinux 0xa5607706 usb_intf_get_dma_device -EXPORT_SYMBOL_GPL vmlinux 0xa5694eed devfreq_cooling_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa56b1826 xhci_check_bandwidth -EXPORT_SYMBOL_GPL vmlinux 0xa56c50a4 inet6_csk_addr2sockaddr -EXPORT_SYMBOL_GPL vmlinux 0xa56df743 pinctrl_utils_add_map_configs -EXPORT_SYMBOL_GPL vmlinux 0xa59a54bf nf_ipv6_ops -EXPORT_SYMBOL_GPL vmlinux 0xa5b5a4ca devm_get_free_pages -EXPORT_SYMBOL_GPL vmlinux 0xa5d68b98 iterate_mounts +EXPORT_SYMBOL_GPL vmlinux 0xa547d7ee crypto_shoot_alg +EXPORT_SYMBOL_GPL vmlinux 0xa54b70a7 rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa56aa52c sdio_get_host_pm_caps +EXPORT_SYMBOL_GPL vmlinux 0xa5732ca4 inverse_translate +EXPORT_SYMBOL_GPL vmlinux 0xa579fc33 nf_hook_entries_delete_raw +EXPORT_SYMBOL_GPL vmlinux 0xa57a3621 rq_flush_dcache_pages +EXPORT_SYMBOL_GPL vmlinux 0xa583edd4 snd_soc_component_read_field +EXPORT_SYMBOL_GPL vmlinux 0xa58c1e54 is_software_node +EXPORT_SYMBOL_GPL vmlinux 0xa598b63f cgroup_attach_task_all +EXPORT_SYMBOL_GPL vmlinux 0xa5b0e287 spi_controller_resume EXPORT_SYMBOL_GPL vmlinux 0xa5d72a8f cpuidle_enable_device EXPORT_SYMBOL_GPL vmlinux 0xa5d7c388 pstore_type_to_name +EXPORT_SYMBOL_GPL vmlinux 0xa5e3ec7f pm_genpd_remove +EXPORT_SYMBOL_GPL vmlinux 0xa5e3f75e snd_soc_component_set_sysclk EXPORT_SYMBOL_GPL vmlinux 0xa5e584e2 mvebu_mbus_get_io_win_info -EXPORT_SYMBOL_GPL vmlinux 0xa5eaeec0 led_trigger_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa5eb7ecd trace_event_reg +EXPORT_SYMBOL_GPL vmlinux 0xa5ec3930 blk_ksm_destroy +EXPORT_SYMBOL_GPL vmlinux 0xa5ed0ed8 l3mdev_fib_table_by_index EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full -EXPORT_SYMBOL_GPL vmlinux 0xa5f5211a __serdev_device_driver_register -EXPORT_SYMBOL_GPL vmlinux 0xa5fcbc99 extcon_find_edev_by_node -EXPORT_SYMBOL_GPL vmlinux 0xa60d79a5 iommu_device_sysfs_add -EXPORT_SYMBOL_GPL vmlinux 0xa61538e4 iomap_seek_hole -EXPORT_SYMBOL_GPL vmlinux 0xa61cdd81 fscrypt_prepare_symlink -EXPORT_SYMBOL_GPL vmlinux 0xa61f852d devres_open_group -EXPORT_SYMBOL_GPL vmlinux 0xa622cd43 pci_assign_unassigned_bridge_resources -EXPORT_SYMBOL_GPL vmlinux 0xa6307e1b regmap_update_bits_base -EXPORT_SYMBOL_GPL vmlinux 0xa6507f59 fscrypt_d_revalidate -EXPORT_SYMBOL_GPL vmlinux 0xa6525e6a gpiod_direction_output -EXPORT_SYMBOL_GPL vmlinux 0xa653afd3 alloc_skb_for_msg -EXPORT_SYMBOL_GPL vmlinux 0xa670713f split_page +EXPORT_SYMBOL_GPL vmlinux 0xa5f1be1f __traceiter_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0xa5f888c2 usb_hcd_pci_probe +EXPORT_SYMBOL_GPL vmlinux 0xa619b5bc mm_kobj +EXPORT_SYMBOL_GPL vmlinux 0xa621b71e ata_link_next +EXPORT_SYMBOL_GPL vmlinux 0xa62214cc devm_hwspin_lock_register +EXPORT_SYMBOL_GPL vmlinux 0xa62e13a7 netlink_strict_get_check +EXPORT_SYMBOL_GPL vmlinux 0xa636b8f4 dst_cache_set_ip4 +EXPORT_SYMBOL_GPL vmlinux 0xa6454115 devm_regulator_register +EXPORT_SYMBOL_GPL vmlinux 0xa6462318 devm_reset_control_array_get +EXPORT_SYMBOL_GPL vmlinux 0xa6509ae8 __phy_modify_mmd +EXPORT_SYMBOL_GPL vmlinux 0xa6578436 do_splice_from +EXPORT_SYMBOL_GPL vmlinux 0xa65bd311 debugfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0xa67995bd mtd_read +EXPORT_SYMBOL_GPL vmlinux 0xa67b1526 clk_hw_is_prepared +EXPORT_SYMBOL_GPL vmlinux 0xa67fdc1c pci_epc_mem_free_addr EXPORT_SYMBOL_GPL vmlinux 0xa682da73 proc_dou8vec_minmax +EXPORT_SYMBOL_GPL vmlinux 0xa69efa94 fsstack_copy_inode_size EXPORT_SYMBOL_GPL vmlinux 0xa6a088b7 fscrypt_match_name -EXPORT_SYMBOL_GPL vmlinux 0xa6a719b7 acct_bioset_init -EXPORT_SYMBOL_GPL vmlinux 0xa6ac1115 switchdev_handle_fdb_add_to_device EXPORT_SYMBOL_GPL vmlinux 0xa6af1e35 __SCK__tp_func_block_rq_remap -EXPORT_SYMBOL_GPL vmlinux 0xa6afa5e6 gpiod_get_optional EXPORT_SYMBOL_GPL vmlinux 0xa6b21ef2 dpm_suspend_end -EXPORT_SYMBOL_GPL vmlinux 0xa6b51dc5 led_update_brightness EXPORT_SYMBOL_GPL vmlinux 0xa6b5ee5b __SCK__tp_func_block_split -EXPORT_SYMBOL_GPL vmlinux 0xa6bcce70 rio_local_get_device_id -EXPORT_SYMBOL_GPL vmlinux 0xa6bdeeec pci_bridge_secondary_bus_reset -EXPORT_SYMBOL_GPL vmlinux 0xa6c49701 blk_ksm_destroy -EXPORT_SYMBOL_GPL vmlinux 0xa6ce57a3 ata_sff_data_xfer -EXPORT_SYMBOL_GPL vmlinux 0xa6d3c707 page_cache_async_ra +EXPORT_SYMBOL_GPL vmlinux 0xa6c65b2e bsg_register_queue EXPORT_SYMBOL_GPL vmlinux 0xa6dc0d97 tegra_read_ram_code EXPORT_SYMBOL_GPL vmlinux 0xa6e1a69d kick_all_cpus_sync -EXPORT_SYMBOL_GPL vmlinux 0xa6f61033 led_blink_set_oneshot +EXPORT_SYMBOL_GPL vmlinux 0xa6e59bf0 put_mtd_device +EXPORT_SYMBOL_GPL vmlinux 0xa6fc51f8 tcp_sendpage_locked EXPORT_SYMBOL_GPL vmlinux 0xa700eb02 unregister_kprobes +EXPORT_SYMBOL_GPL vmlinux 0xa704ef5d adp5520_read EXPORT_SYMBOL_GPL vmlinux 0xa709c835 fib6_info_destroy_rcu -EXPORT_SYMBOL_GPL vmlinux 0xa75bd198 nand_change_write_column_op -EXPORT_SYMBOL_GPL vmlinux 0xa76355e6 sdhci_set_clock -EXPORT_SYMBOL_GPL vmlinux 0xa77b13cc rio_del_mport_pw_handler +EXPORT_SYMBOL_GPL vmlinux 0xa715afc2 devres_destroy +EXPORT_SYMBOL_GPL vmlinux 0xa7166cb1 sk_detach_filter +EXPORT_SYMBOL_GPL vmlinux 0xa721aab3 usb_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0xa73fed83 crypto_stats_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0xa740cb51 tty_port_link_device +EXPORT_SYMBOL_GPL vmlinux 0xa744cd46 usb_phy_generic_register +EXPORT_SYMBOL_GPL vmlinux 0xa750a686 uprobe_register_refctr +EXPORT_SYMBOL_GPL vmlinux 0xa759b74c skb_gso_validate_mac_len +EXPORT_SYMBOL_GPL vmlinux 0xa7725d60 vfs_fallocate +EXPORT_SYMBOL_GPL vmlinux 0xa7763d32 snd_pcm_stream_lock_irq +EXPORT_SYMBOL_GPL vmlinux 0xa77ca155 pinconf_generic_dt_free_map +EXPORT_SYMBOL_GPL vmlinux 0xa77fa5a4 dm_bio_from_per_bio_data EXPORT_SYMBOL_GPL vmlinux 0xa7802e2e btree_grim_visitor -EXPORT_SYMBOL_GPL vmlinux 0xa7890d84 invalidate_inode_pages2_range -EXPORT_SYMBOL_GPL vmlinux 0xa78c41ae tcp_sendmsg_locked -EXPORT_SYMBOL_GPL vmlinux 0xa7911bce mtd_block_isreserved -EXPORT_SYMBOL_GPL vmlinux 0xa79833bb pci_find_host_bridge -EXPORT_SYMBOL_GPL vmlinux 0xa79fe053 snd_soc_suspend +EXPORT_SYMBOL_GPL vmlinux 0xa794574e dw_pcie_host_deinit EXPORT_SYMBOL_GPL vmlinux 0xa7a0d6bf walk_iomem_res_desc EXPORT_SYMBOL_GPL vmlinux 0xa7aaafde klist_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0xa7c44e0c fscrypt_ioctl_remove_key -EXPORT_SYMBOL_GPL vmlinux 0xa7c896b4 tpm_chip_register +EXPORT_SYMBOL_GPL vmlinux 0xa7aba163 nf_checksum +EXPORT_SYMBOL_GPL vmlinux 0xa7b847b3 nand_change_write_column_op +EXPORT_SYMBOL_GPL vmlinux 0xa7b84af9 register_mtd_user +EXPORT_SYMBOL_GPL vmlinux 0xa7bd7fb3 sdhci_get_property +EXPORT_SYMBOL_GPL vmlinux 0xa7c5b84c clk_register_hisi_phase EXPORT_SYMBOL_GPL vmlinux 0xa7cba284 housekeeping_any_cpu -EXPORT_SYMBOL_GPL vmlinux 0xa7d4972c of_dma_router_register -EXPORT_SYMBOL_GPL vmlinux 0xa7d98d5c devm_reset_controller_register -EXPORT_SYMBOL_GPL vmlinux 0xa7e8a7c1 __blkg_prfill_u64 -EXPORT_SYMBOL_GPL vmlinux 0xa81ca88b tracing_snapshot_cond_enable -EXPORT_SYMBOL_GPL vmlinux 0xa8224b8f regulator_get_current_limit -EXPORT_SYMBOL_GPL vmlinux 0xa83951a0 regulator_get_mode -EXPORT_SYMBOL_GPL vmlinux 0xa8398bd4 nf_ct_hook -EXPORT_SYMBOL_GPL vmlinux 0xa83c8f89 of_clk_hw_register -EXPORT_SYMBOL_GPL vmlinux 0xa83ffa4d skb_to_sgvec -EXPORT_SYMBOL_GPL vmlinux 0xa846cce2 usb_hcd_setup_local_mem +EXPORT_SYMBOL_GPL vmlinux 0xa7d031a2 strp_process +EXPORT_SYMBOL_GPL vmlinux 0xa7e73b0c iomap_truncate_page +EXPORT_SYMBOL_GPL vmlinux 0xa7fd9fbd input_device_enabled +EXPORT_SYMBOL_GPL vmlinux 0xa80f0e1c snd_soc_rtdcom_lookup +EXPORT_SYMBOL_GPL vmlinux 0xa81914ab od_register_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0xa81ff330 sdio_writesb +EXPORT_SYMBOL_GPL vmlinux 0xa82b76e3 devm_gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0xa840d2a4 vchan_tx_submit +EXPORT_SYMBOL_GPL vmlinux 0xa8412c17 perf_aux_output_skip +EXPORT_SYMBOL_GPL vmlinux 0xa84c8364 snd_soc_component_disable_pin_unlocked EXPORT_SYMBOL_GPL vmlinux 0xa84d4e8f __tracepoint_sched_util_est_cfs_tp EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xa85de0af iommu_set_pgtable_quirks -EXPORT_SYMBOL_GPL vmlinux 0xa85e5c62 blk_mq_sched_try_merge -EXPORT_SYMBOL_GPL vmlinux 0xa85edcfc mptcp_subflow_request_sock_ops -EXPORT_SYMBOL_GPL vmlinux 0xa870568b usb_hub_release_port +EXPORT_SYMBOL_GPL vmlinux 0xa85860c6 rio_mport_send_doorbell +EXPORT_SYMBOL_GPL vmlinux 0xa8589ca1 regulator_list_voltage +EXPORT_SYMBOL_GPL vmlinux 0xa86ed7d6 __pm_runtime_disable EXPORT_SYMBOL_GPL vmlinux 0xa87f7aec sbitmap_any_bit_set -EXPORT_SYMBOL_GPL vmlinux 0xa898be38 pinmux_generic_get_function_groups -EXPORT_SYMBOL_GPL vmlinux 0xa8a0396a dw_pcie_ep_init_notify -EXPORT_SYMBOL_GPL vmlinux 0xa8b0e1da of_prop_next_string -EXPORT_SYMBOL_GPL vmlinux 0xa8b7a4d8 __traceiter_block_rq_remap -EXPORT_SYMBOL_GPL vmlinux 0xa8c69d01 rio_map_inb_region -EXPORT_SYMBOL_GPL vmlinux 0xa8cba23d platform_device_put -EXPORT_SYMBOL_GPL vmlinux 0xa8dc1cb0 pm_generic_suspend -EXPORT_SYMBOL_GPL vmlinux 0xa8e09636 cpuidle_register_driver -EXPORT_SYMBOL_GPL vmlinux 0xa8e53822 vp_modern_generation -EXPORT_SYMBOL_GPL vmlinux 0xa8fae4ea tc3589x_block_read -EXPORT_SYMBOL_GPL vmlinux 0xa900e195 serial8250_do_set_ldisc +EXPORT_SYMBOL_GPL vmlinux 0xa88ea0d1 usb_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xa8996b62 nanddev_mtd_erase +EXPORT_SYMBOL_GPL vmlinux 0xa8a4a36e sk_setup_caps +EXPORT_SYMBOL_GPL vmlinux 0xa8b373b6 devm_hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0xa8cc3e38 devm_pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0xa8d70c56 tegra_bpmp_put +EXPORT_SYMBOL_GPL vmlinux 0xa8d8f315 regmap_test_bits +EXPORT_SYMBOL_GPL vmlinux 0xa8e733ed trace_output_call +EXPORT_SYMBOL_GPL vmlinux 0xa8fbab23 snd_compr_stop_error +EXPORT_SYMBOL_GPL vmlinux 0xa900986c __auxiliary_driver_register +EXPORT_SYMBOL_GPL vmlinux 0xa90a3e77 usb_hub_clear_tt_buffer +EXPORT_SYMBOL_GPL vmlinux 0xa91008af md_start +EXPORT_SYMBOL_GPL vmlinux 0xa9208cf8 devlink_port_register EXPORT_SYMBOL_GPL vmlinux 0xa92b7803 power_supply_notifier EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds -EXPORT_SYMBOL_GPL vmlinux 0xa942e7bd ata_dev_pair -EXPORT_SYMBOL_GPL vmlinux 0xa946171b fuse_mount_remove -EXPORT_SYMBOL_GPL vmlinux 0xa963d00a rio_dma_prep_slave_sg -EXPORT_SYMBOL_GPL vmlinux 0xa9730721 devm_phy_optional_get -EXPORT_SYMBOL_GPL vmlinux 0xa9889852 __devm_rtc_register_device +EXPORT_SYMBOL_GPL vmlinux 0xa9361c63 mmc_cmdq_enable +EXPORT_SYMBOL_GPL vmlinux 0xa9445c98 attribute_container_find_class_device +EXPORT_SYMBOL_GPL vmlinux 0xa952dfc0 mtd_read_fact_prot_reg +EXPORT_SYMBOL_GPL vmlinux 0xa982afb1 regulator_set_voltage_sel_pickable_regmap +EXPORT_SYMBOL_GPL vmlinux 0xa988a9dc device_reprobe EXPORT_SYMBOL_GPL vmlinux 0xa9951a52 clk_regmap_mux_ops EXPORT_SYMBOL_GPL vmlinux 0xa99b8e70 __SCK__tp_func_xdp_exception EXPORT_SYMBOL_GPL vmlinux 0xa99ef899 devlink_fmsg_bool_pair_put -EXPORT_SYMBOL_GPL vmlinux 0xa9c686cc dev_pm_opp_set_supported_hw -EXPORT_SYMBOL_GPL vmlinux 0xa9c98e2f __irq_resolve_mapping -EXPORT_SYMBOL_GPL vmlinux 0xa9cee160 snd_soc_daifmt_parse_format +EXPORT_SYMBOL_GPL vmlinux 0xa9c3978a da9052_adc_manual_read +EXPORT_SYMBOL_GPL vmlinux 0xa9d251f5 __inet_lookup_established +EXPORT_SYMBOL_GPL vmlinux 0xa9d852ef skb_zerocopy_headlen EXPORT_SYMBOL_GPL vmlinux 0xa9e05660 io_cgrp_subsys_on_dfl_key EXPORT_SYMBOL_GPL vmlinux 0xa9e18049 task_handoff_unregister EXPORT_SYMBOL_GPL vmlinux 0xa9eaeb17 __tracepoint_block_bio_complete -EXPORT_SYMBOL_GPL vmlinux 0xa9f7ddfc tpm2_get_tpm_pt -EXPORT_SYMBOL_GPL vmlinux 0xaa09cd4f led_set_brightness -EXPORT_SYMBOL_GPL vmlinux 0xaa0e0f64 cpuidle_register -EXPORT_SYMBOL_GPL vmlinux 0xaa11b8b3 pm_generic_resume +EXPORT_SYMBOL_GPL vmlinux 0xaa08b90b of_device_uevent_modalias +EXPORT_SYMBOL_GPL vmlinux 0xaa0f2c81 __fput_sync EXPORT_SYMBOL_GPL vmlinux 0xaa152108 hrtimer_active -EXPORT_SYMBOL_GPL vmlinux 0xaa21f7e0 mmc_pwrseq_unregister EXPORT_SYMBOL_GPL vmlinux 0xaa230f88 perf_unregister_guest_info_callbacks EXPORT_SYMBOL_GPL vmlinux 0xaa2a72bf __iowrite64_copy -EXPORT_SYMBOL_GPL vmlinux 0xaa2ac951 device_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0xaa2abdbb sk_set_peek_off +EXPORT_SYMBOL_GPL vmlinux 0xaa3d193b debugfs_create_atomic_t EXPORT_SYMBOL_GPL vmlinux 0xaa44acff omap_tll_disable -EXPORT_SYMBOL_GPL vmlinux 0xaa45bc2a cpufreq_freq_transition_begin -EXPORT_SYMBOL_GPL vmlinux 0xaa4c4623 bpf_trace_run3 -EXPORT_SYMBOL_GPL vmlinux 0xaa5e0204 snd_soc_component_force_enable_pin -EXPORT_SYMBOL_GPL vmlinux 0xaa67d205 icc_provider_add -EXPORT_SYMBOL_GPL vmlinux 0xaa7a5d51 bus_rescan_devices -EXPORT_SYMBOL_GPL vmlinux 0xaa80ef8a serial8250_get_port -EXPORT_SYMBOL_GPL vmlinux 0xaa882609 perf_event_sysfs_show +EXPORT_SYMBOL_GPL vmlinux 0xaa45939b firmware_request_cache +EXPORT_SYMBOL_GPL vmlinux 0xaa59581d regulator_count_voltages +EXPORT_SYMBOL_GPL vmlinux 0xaa59cbbd pm_wakeup_ws_event +EXPORT_SYMBOL_GPL vmlinux 0xaa60b012 __fat_fs_error +EXPORT_SYMBOL_GPL vmlinux 0xaa638ad3 devm_release_action +EXPORT_SYMBOL_GPL vmlinux 0xaa76a013 usb_free_streams +EXPORT_SYMBOL_GPL vmlinux 0xaa7c87b5 bd_unlink_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0xaa865472 __devm_regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0xaa8776df subsys_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0xaa883a62 dma_get_slave_caps EXPORT_SYMBOL_GPL vmlinux 0xaa88ba94 seq_buf_printf -EXPORT_SYMBOL_GPL vmlinux 0xaa8f889b ata_sas_port_destroy +EXPORT_SYMBOL_GPL vmlinux 0xaa8f67cb device_add_software_node +EXPORT_SYMBOL_GPL vmlinux 0xaa97e141 nand_cleanup EXPORT_SYMBOL_GPL vmlinux 0xaa996bf7 __tracepoint_xhci_dbg_quirks -EXPORT_SYMBOL_GPL vmlinux 0xaa9cf682 regulator_set_voltage_rdev +EXPORT_SYMBOL_GPL vmlinux 0xaaa3b918 security_inode_create EXPORT_SYMBOL_GPL vmlinux 0xaaa5980a user_preparse -EXPORT_SYMBOL_GPL vmlinux 0xaaa68309 devlink_port_param_value_changed +EXPORT_SYMBOL_GPL vmlinux 0xaaa6942b sk_set_memalloc +EXPORT_SYMBOL_GPL vmlinux 0xaaa6959b irq_chip_release_resources_parent EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump -EXPORT_SYMBOL_GPL vmlinux 0xaab8eeb3 pinconf_generic_dt_free_map -EXPORT_SYMBOL_GPL vmlinux 0xaac26e37 vchan_find_desc -EXPORT_SYMBOL_GPL vmlinux 0xaac5a8b8 skb_append_pagefrags -EXPORT_SYMBOL_GPL vmlinux 0xaace55c9 rtc_set_time -EXPORT_SYMBOL_GPL vmlinux 0xaadaa0cd udp_init_sock -EXPORT_SYMBOL_GPL vmlinux 0xaaddec16 tpm_send -EXPORT_SYMBOL_GPL vmlinux 0xaaeca77b snd_soc_dapm_init +EXPORT_SYMBOL_GPL vmlinux 0xaaae1911 blk_ksm_init +EXPORT_SYMBOL_GPL vmlinux 0xaac2deb8 devlink_reload_enable +EXPORT_SYMBOL_GPL vmlinux 0xaacdbb60 sysfs_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xaad0915c dev_pm_opp_set_rate +EXPORT_SYMBOL_GPL vmlinux 0xaae5bc5f blk_mq_quiesce_queue_nowait +EXPORT_SYMBOL_GPL vmlinux 0xaae684e2 devm_regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xaae887d2 pinmux_generic_get_function_name EXPORT_SYMBOL_GPL vmlinux 0xaaecf75d perf_trace_buf_alloc -EXPORT_SYMBOL_GPL vmlinux 0xaaf74d1b dev_pm_opp_of_find_icc_paths -EXPORT_SYMBOL_GPL vmlinux 0xaaffd55c of_css -EXPORT_SYMBOL_GPL vmlinux 0xab1e1b5f usb_of_get_interface_node -EXPORT_SYMBOL_GPL vmlinux 0xab205c9f filemap_range_needs_writeback -EXPORT_SYMBOL_GPL vmlinux 0xab262d8c devlink_params_unregister -EXPORT_SYMBOL_GPL vmlinux 0xab2b3f2e __sdhci_read_caps -EXPORT_SYMBOL_GPL vmlinux 0xab2d925a devm_pinctrl_get -EXPORT_SYMBOL_GPL vmlinux 0xab309748 clk_hw_rate_is_protected -EXPORT_SYMBOL_GPL vmlinux 0xab37b57b iomap_truncate_page +EXPORT_SYMBOL_GPL vmlinux 0xaaf7e931 handle_fasteoi_irq +EXPORT_SYMBOL_GPL vmlinux 0xaaff91f0 devres_release +EXPORT_SYMBOL_GPL vmlinux 0xab299b99 br_fdb_test_addr_hook +EXPORT_SYMBOL_GPL vmlinux 0xab34f8a3 platform_get_irq_byname_optional +EXPORT_SYMBOL_GPL vmlinux 0xab42d8e8 i2c_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xab43c2b9 snd_soc_dapm_force_bias_level EXPORT_SYMBOL_GPL vmlinux 0xab4f4b32 bprintf -EXPORT_SYMBOL_GPL vmlinux 0xab549cbc edac_pci_handle_npe -EXPORT_SYMBOL_GPL vmlinux 0xab581be8 dma_max_mapping_size -EXPORT_SYMBOL_GPL vmlinux 0xab5c8bed nfs_ssc_register -EXPORT_SYMBOL_GPL vmlinux 0xab6cd55c devm_hwspin_lock_free -EXPORT_SYMBOL_GPL vmlinux 0xab7f4d30 mtd_ooblayout_free +EXPORT_SYMBOL_GPL vmlinux 0xab5c4aa2 register_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xab5c791f regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xab67895e irq_chip_disable_parent EXPORT_SYMBOL_GPL vmlinux 0xab7f853d mtk_mutex_prepare EXPORT_SYMBOL_GPL vmlinux 0xab8bc1a2 snd_pcm_rate_mask_intersect -EXPORT_SYMBOL_GPL vmlinux 0xab9253f7 badblocks_check +EXPORT_SYMBOL_GPL vmlinux 0xab8e3df8 crypto_unregister_shashes +EXPORT_SYMBOL_GPL vmlinux 0xab906405 xhci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0xab9b4b19 mtd_read_user_prot_reg EXPORT_SYMBOL_GPL vmlinux 0xab9bd884 perf_register_guest_info_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xabb0bca9 trace_array_set_clr_event -EXPORT_SYMBOL_GPL vmlinux 0xabb67c36 ip6_sk_redirect -EXPORT_SYMBOL_GPL vmlinux 0xabb9fe46 crypto_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0xabb787c7 sock_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0xabba9729 dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0xabc174f0 snd_devm_alloc_pages EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate EXPORT_SYMBOL_GPL vmlinux 0xabcda29e leds_list_lock +EXPORT_SYMBOL_GPL vmlinux 0xabd5a9d6 ata_bmdma_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xabededaf subsys_interface_register EXPORT_SYMBOL_GPL vmlinux 0xabef34ee __tracepoint_br_fdb_add -EXPORT_SYMBOL_GPL vmlinux 0xac19b282 do_take_over_console -EXPORT_SYMBOL_GPL vmlinux 0xac24f76b meson_pinctrl_probe -EXPORT_SYMBOL_GPL vmlinux 0xac275efe usb_match_one_id -EXPORT_SYMBOL_GPL vmlinux 0xac353b9b icc_get_name -EXPORT_SYMBOL_GPL vmlinux 0xac3752e5 devm_nvmem_cell_get -EXPORT_SYMBOL_GPL vmlinux 0xac39fbba devfreq_event_set_event -EXPORT_SYMBOL_GPL vmlinux 0xac3a6402 vp_modern_queue_vector -EXPORT_SYMBOL_GPL vmlinux 0xac4442d9 pci_try_reset_function -EXPORT_SYMBOL_GPL vmlinux 0xac471131 of_thermal_get_ntrips -EXPORT_SYMBOL_GPL vmlinux 0xac5743a5 handle_mm_fault -EXPORT_SYMBOL_GPL vmlinux 0xac5846a6 of_dma_simple_xlate -EXPORT_SYMBOL_GPL vmlinux 0xac80902a nand_write_data_op -EXPORT_SYMBOL_GPL vmlinux 0xac8619b8 devlink_trap_policers_unregister -EXPORT_SYMBOL_GPL vmlinux 0xacaa98e1 irq_chip_get_parent_state +EXPORT_SYMBOL_GPL vmlinux 0xac1aa04d umd_unload_blob +EXPORT_SYMBOL_GPL vmlinux 0xac21c579 sched_set_normal +EXPORT_SYMBOL_GPL vmlinux 0xac2230fe __traceiter_neigh_update_done +EXPORT_SYMBOL_GPL vmlinux 0xac3bcc89 __skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0xac5a69bc serdev_controller_remove +EXPORT_SYMBOL_GPL vmlinux 0xac933f16 sdhci_set_bus_width +EXPORT_SYMBOL_GPL vmlinux 0xacb115f6 serdev_controller_alloc EXPORT_SYMBOL_GPL vmlinux 0xacb4d88c clk_rate_exclusive_put -EXPORT_SYMBOL_GPL vmlinux 0xacbad9b4 snd_soc_bytes_info_ext -EXPORT_SYMBOL_GPL vmlinux 0xacc1d461 pci_ecam_create -EXPORT_SYMBOL_GPL vmlinux 0xacd12f22 crypto_skcipher_encrypt -EXPORT_SYMBOL_GPL vmlinux 0xacd6ff23 wakeup_source_create -EXPORT_SYMBOL_GPL vmlinux 0xacf9c78f __inet_lookup_listener -EXPORT_SYMBOL_GPL vmlinux 0xad0502eb snd_soc_dapm_mux_update_power -EXPORT_SYMBOL_GPL vmlinux 0xad0a99ed regmap_async_complete_cb -EXPORT_SYMBOL_GPL vmlinux 0xad1143d8 debugfs_create_size_t -EXPORT_SYMBOL_GPL vmlinux 0xad1a4f6e devm_platform_ioremap_resource_byname -EXPORT_SYMBOL_GPL vmlinux 0xad2b75b7 serial8250_em485_config -EXPORT_SYMBOL_GPL vmlinux 0xad30c6f6 pci_hp_add_bridge -EXPORT_SYMBOL_GPL vmlinux 0xad3cd815 device_add_properties +EXPORT_SYMBOL_GPL vmlinux 0xacb58fc1 stmpe_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xacc24481 __traceiter_sched_cpu_capacity_tp +EXPORT_SYMBOL_GPL vmlinux 0xacc73682 dev_pm_clear_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xacecbe09 __crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0xaceeabbd device_change_owner +EXPORT_SYMBOL_GPL vmlinux 0xad001ff8 clk_hw_get_num_parents +EXPORT_SYMBOL_GPL vmlinux 0xad0abaf3 ata_link_online +EXPORT_SYMBOL_GPL vmlinux 0xad32ae99 crypto_unregister_rngs +EXPORT_SYMBOL_GPL vmlinux 0xad3f3820 udp_cmsg_send EXPORT_SYMBOL_GPL vmlinux 0xad42dff8 __SCK__tp_func_tcp_bad_csum EXPORT_SYMBOL_GPL vmlinux 0xad4e6259 remove_cpu EXPORT_SYMBOL_GPL vmlinux 0xad5737fc efivar_init -EXPORT_SYMBOL_GPL vmlinux 0xad5d0e12 phy_calibrate +EXPORT_SYMBOL_GPL vmlinux 0xad5f7ac7 cpufreq_frequency_table_get_index +EXPORT_SYMBOL_GPL vmlinux 0xad630e74 crypto_grab_shash EXPORT_SYMBOL_GPL vmlinux 0xad645234 register_switchdev_notifier -EXPORT_SYMBOL_GPL vmlinux 0xad6c5b83 devm_thermal_zone_of_sensor_unregister +EXPORT_SYMBOL_GPL vmlinux 0xad724217 thermal_zone_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xad75b5f6 amba_device_put EXPORT_SYMBOL_GPL vmlinux 0xad76a3f0 __SCK__tp_func_neigh_update_done -EXPORT_SYMBOL_GPL vmlinux 0xad93fa1e musb_root_disconnect +EXPORT_SYMBOL_GPL vmlinux 0xad829338 smpboot_unregister_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0xad915189 pci_epc_mem_alloc_addr EXPORT_SYMBOL_GPL vmlinux 0xad967d72 sbitmap_prepare_to_wait -EXPORT_SYMBOL_GPL vmlinux 0xad985886 hisi_reset_init +EXPORT_SYMBOL_GPL vmlinux 0xad9d4887 dev_pm_qos_flags +EXPORT_SYMBOL_GPL vmlinux 0xad9e2745 usb_control_msg EXPORT_SYMBOL_GPL vmlinux 0xada38766 dst_cache_destroy -EXPORT_SYMBOL_GPL vmlinux 0xada5b660 thermal_add_hwmon_sysfs -EXPORT_SYMBOL_GPL vmlinux 0xadace899 usb_gadget_activate -EXPORT_SYMBOL_GPL vmlinux 0xadb8f25a clockevents_config_and_register -EXPORT_SYMBOL_GPL vmlinux 0xadbc6046 security_kernel_read_file -EXPORT_SYMBOL_GPL vmlinux 0xadc99e8f vp_modern_set_queue_enable -EXPORT_SYMBOL_GPL vmlinux 0xadcd3090 pin_user_pages_fast_only -EXPORT_SYMBOL_GPL vmlinux 0xadd03922 __hvc_resize -EXPORT_SYMBOL_GPL vmlinux 0xadd41998 gpiod_set_raw_value +EXPORT_SYMBOL_GPL vmlinux 0xadad36c3 usb_gadget_frame_number +EXPORT_SYMBOL_GPL vmlinux 0xadc4161f uart_set_options +EXPORT_SYMBOL_GPL vmlinux 0xadcf2158 regulator_put EXPORT_SYMBOL_GPL vmlinux 0xade3e56c musb_writew -EXPORT_SYMBOL_GPL vmlinux 0xadfbf6d9 devm_i2c_new_dummy_device -EXPORT_SYMBOL_GPL vmlinux 0xae011116 of_phandle_iterator_init -EXPORT_SYMBOL_GPL vmlinux 0xae06215d fwnode_connection_find_match -EXPORT_SYMBOL_GPL vmlinux 0xae0799c6 uart_try_toggle_sysrq -EXPORT_SYMBOL_GPL vmlinux 0xae096e14 acct_bioset_exit -EXPORT_SYMBOL_GPL vmlinux 0xae18e523 efivar_entry_iter +EXPORT_SYMBOL_GPL vmlinux 0xadfe58f4 pwmchip_add +EXPORT_SYMBOL_GPL vmlinux 0xae02d552 bd_link_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0xae0461a5 max8997_read_reg EXPORT_SYMBOL_GPL vmlinux 0xae24eda1 kvm_arch_ptp_get_crosststamp -EXPORT_SYMBOL_GPL vmlinux 0xae2645cf ata_dev_next -EXPORT_SYMBOL_GPL vmlinux 0xae26c5cb gpiod_set_raw_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xae2f9c36 mmc_send_tuning -EXPORT_SYMBOL_GPL vmlinux 0xae30ea03 phy_driver_is_genphy +EXPORT_SYMBOL_GPL vmlinux 0xae25bd92 tty_set_ldisc +EXPORT_SYMBOL_GPL vmlinux 0xae2b919f regcache_sync EXPORT_SYMBOL_GPL vmlinux 0xae39f80e dst_cache_init -EXPORT_SYMBOL_GPL vmlinux 0xae402d9c rio_mport_write_config_8 -EXPORT_SYMBOL_GPL vmlinux 0xae4460ed gov_attr_set_init -EXPORT_SYMBOL_GPL vmlinux 0xae4e56b3 __synth_event_gen_cmd_start -EXPORT_SYMBOL_GPL vmlinux 0xae51d52d verify_signature -EXPORT_SYMBOL_GPL vmlinux 0xae5923a7 icc_set_tag -EXPORT_SYMBOL_GPL vmlinux 0xae5b71e3 pin_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0xae6133e4 clk_gate_restore_context EXPORT_SYMBOL_GPL vmlinux 0xae69b1c1 usermodehelper_read_unlock EXPORT_SYMBOL_GPL vmlinux 0xae6c01ef user_free_preparse EXPORT_SYMBOL_GPL vmlinux 0xae7c231d mpi_cmp -EXPORT_SYMBOL_GPL vmlinux 0xae9cf2e4 scsi_target_block -EXPORT_SYMBOL_GPL vmlinux 0xae9d4056 bio_end_io_acct_remapped -EXPORT_SYMBOL_GPL vmlinux 0xaecaf4e0 usb_hcd_giveback_urb -EXPORT_SYMBOL_GPL vmlinux 0xaede6c1a blk_ksm_reprogram_all_keys -EXPORT_SYMBOL_GPL vmlinux 0xaee7de9b crypto_stats_akcipher_encrypt -EXPORT_SYMBOL_GPL vmlinux 0xaeefd998 devlink_dpipe_table_counter_enabled -EXPORT_SYMBOL_GPL vmlinux 0xaef82eb3 blk_update_request -EXPORT_SYMBOL_GPL vmlinux 0xaf170d51 crypto_register_rngs -EXPORT_SYMBOL_GPL vmlinux 0xaf171573 pci_epc_map_addr +EXPORT_SYMBOL_GPL vmlinux 0xae915be9 rio_del_mport_pw_handler +EXPORT_SYMBOL_GPL vmlinux 0xae942b49 devm_device_remove_group +EXPORT_SYMBOL_GPL vmlinux 0xaebf4f8b fwnode_count_parents +EXPORT_SYMBOL_GPL vmlinux 0xaec4de20 ata_scsi_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0xaeec77fc perf_tp_event +EXPORT_SYMBOL_GPL vmlinux 0xaef03d09 usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0xaef874a2 of_dma_is_coherent +EXPORT_SYMBOL_GPL vmlinux 0xaefa4a87 screen_glyph +EXPORT_SYMBOL_GPL vmlinux 0xaf01ada6 bpf_offload_dev_match +EXPORT_SYMBOL_GPL vmlinux 0xaf0616ab vp_modern_set_queue_size +EXPORT_SYMBOL_GPL vmlinux 0xaf064b76 xfrm_audit_state_icvfail +EXPORT_SYMBOL_GPL vmlinux 0xaf0f31ec dma_buf_export +EXPORT_SYMBOL_GPL vmlinux 0xaf136a04 phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0xaf15280f of_pci_get_devfn +EXPORT_SYMBOL_GPL vmlinux 0xaf1dfbff udp_init_sock +EXPORT_SYMBOL_GPL vmlinux 0xaf1f2d6c blk_ksm_register +EXPORT_SYMBOL_GPL vmlinux 0xaf2daea3 of_irq_find_parent EXPORT_SYMBOL_GPL vmlinux 0xaf348da7 cpu_pm_exit -EXPORT_SYMBOL_GPL vmlinux 0xaf37f300 xhci_gen_setup -EXPORT_SYMBOL_GPL vmlinux 0xaf39d224 device_property_read_u64_array EXPORT_SYMBOL_GPL vmlinux 0xaf3a44e9 __SCK__tp_func_sched_overutilized_tp EXPORT_SYMBOL_GPL vmlinux 0xaf4014ff usb_amd_quirk_pll_check -EXPORT_SYMBOL_GPL vmlinux 0xaf4cb3be of_reserved_mem_device_init_by_name -EXPORT_SYMBOL_GPL vmlinux 0xaf71179f of_regulator_match -EXPORT_SYMBOL_GPL vmlinux 0xaf74d039 __strp_unpause -EXPORT_SYMBOL_GPL vmlinux 0xaf7834a7 fwnode_graph_get_next_endpoint -EXPORT_SYMBOL_GPL vmlinux 0xaf7ca92a em_pd_get -EXPORT_SYMBOL_GPL vmlinux 0xaf8d17c6 relay_file_operations -EXPORT_SYMBOL_GPL vmlinux 0xaf8dd674 __dev_forward_skb -EXPORT_SYMBOL_GPL vmlinux 0xaf9a0711 tty_save_termios -EXPORT_SYMBOL_GPL vmlinux 0xafae5905 platform_get_irq_byname -EXPORT_SYMBOL_GPL vmlinux 0xafb21ce0 spi_mem_dirmap_create +EXPORT_SYMBOL_GPL vmlinux 0xaf53c896 policy_has_boost_freq +EXPORT_SYMBOL_GPL vmlinux 0xaf6aeff8 tegra_mc_get_emem_device_count +EXPORT_SYMBOL_GPL vmlinux 0xaf744a55 tty_kopen_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xaf7a0a2d crypto_register_template +EXPORT_SYMBOL_GPL vmlinux 0xaf7a11fd tegra_bpmp_mrq_return +EXPORT_SYMBOL_GPL vmlinux 0xaf888b8a ping_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0xaf8f66b2 xfrm_audit_policy_delete +EXPORT_SYMBOL_GPL vmlinux 0xaf9611ad device_rename +EXPORT_SYMBOL_GPL vmlinux 0xaf9670c5 pci_dev_run_wake +EXPORT_SYMBOL_GPL vmlinux 0xaf98a34b pci_epc_init_notify +EXPORT_SYMBOL_GPL vmlinux 0xafa2e75a thermal_zone_unbind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0xafa59dce of_genpd_remove_subdomain +EXPORT_SYMBOL_GPL vmlinux 0xafc1fe02 cpuidle_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xafc7c8ef devm_free_pages +EXPORT_SYMBOL_GPL vmlinux 0xafc94b71 max8997_update_reg +EXPORT_SYMBOL_GPL vmlinux 0xafdaf1e6 regmap_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0xafdb3068 ata_host_alloc_pinfo EXPORT_SYMBOL_GPL vmlinux 0xafddd545 ata_id_c_string -EXPORT_SYMBOL_GPL vmlinux 0xafe23c31 pinctrl_force_default -EXPORT_SYMBOL_GPL vmlinux 0xafe48d6d cpufreq_generic_init -EXPORT_SYMBOL_GPL vmlinux 0xafea37c8 sdio_release_host +EXPORT_SYMBOL_GPL vmlinux 0xafdfc3ed gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0xafe16830 sysfs_create_bin_file EXPORT_SYMBOL_GPL vmlinux 0xafeb58c1 __SCK__tp_func_io_page_fault -EXPORT_SYMBOL_GPL vmlinux 0xb00d2acf platform_get_resource_byname -EXPORT_SYMBOL_GPL vmlinux 0xb0202ef8 trace_array_printk +EXPORT_SYMBOL_GPL vmlinux 0xafebde38 transport_add_device +EXPORT_SYMBOL_GPL vmlinux 0xaff167fc sock_diag_save_cookie +EXPORT_SYMBOL_GPL vmlinux 0xaff3cacf usb_add_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0xb012c820 genphy_c45_pma_read_abilities EXPORT_SYMBOL_GPL vmlinux 0xb0232477 klist_prev -EXPORT_SYMBOL_GPL vmlinux 0xb03b18f0 exportfs_decode_fh_raw EXPORT_SYMBOL_GPL vmlinux 0xb03bf684 register_kprobes +EXPORT_SYMBOL_GPL vmlinux 0xb045aba2 em_dev_unregister_perf_domain 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 0xb054c332 dax_inode -EXPORT_SYMBOL_GPL vmlinux 0xb0601c40 tty_find_polling_driver EXPORT_SYMBOL_GPL vmlinux 0xb0666a37 srcu_torture_stats_print +EXPORT_SYMBOL_GPL vmlinux 0xb0715171 cros_ec_get_sensor_count 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 0xb08c5619 devm_gpiod_get_array_optional -EXPORT_SYMBOL_GPL vmlinux 0xb08e28cf rockchip_pcie_enable_clocks -EXPORT_SYMBOL_GPL vmlinux 0xb09942f2 ehci_hub_control -EXPORT_SYMBOL_GPL vmlinux 0xb0a2dde4 component_master_add_with_match +EXPORT_SYMBOL_GPL vmlinux 0xb08a33e3 iommu_enable_nesting +EXPORT_SYMBOL_GPL vmlinux 0xb0947169 nand_get_large_page_ooblayout +EXPORT_SYMBOL_GPL vmlinux 0xb0a28ecb debugfs_file_put +EXPORT_SYMBOL_GPL vmlinux 0xb0ad5ae5 device_show_bool EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset -EXPORT_SYMBOL_GPL vmlinux 0xb0c9480c skb_send_sock_locked -EXPORT_SYMBOL_GPL vmlinux 0xb0d865b5 __platform_create_bundle -EXPORT_SYMBOL_GPL vmlinux 0xb0e76bd1 snd_ctl_register_layer -EXPORT_SYMBOL_GPL vmlinux 0xb0e77fec hvc_poll -EXPORT_SYMBOL_GPL vmlinux 0xb0ecfe0d devm_nvmem_device_put -EXPORT_SYMBOL_GPL vmlinux 0xb0fb10c7 crypto_register_aeads +EXPORT_SYMBOL_GPL vmlinux 0xb0c0d8ee led_set_brightness_nopm +EXPORT_SYMBOL_GPL vmlinux 0xb0c19c4c pci_hp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0xb0c3c841 balloon_page_enqueue +EXPORT_SYMBOL_GPL vmlinux 0xb0c7d3f1 __platform_create_bundle +EXPORT_SYMBOL_GPL vmlinux 0xb0f00321 devm_power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0xb0f34501 security_path_truncate EXPORT_SYMBOL_GPL vmlinux 0xb0fbb722 clk_fractional_divider_ops -EXPORT_SYMBOL_GPL vmlinux 0xb10a4ff7 report_iommu_fault -EXPORT_SYMBOL_GPL vmlinux 0xb10aa237 blk_mq_hctx_set_fq_lock_class EXPORT_SYMBOL_GPL vmlinux 0xb10d964d devlink_fmsg_pair_nest_end +EXPORT_SYMBOL_GPL vmlinux 0xb110df52 snd_card_disconnect_sync EXPORT_SYMBOL_GPL vmlinux 0xb11625b9 cpu_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xb1170ab7 espintcp_queue_out -EXPORT_SYMBOL_GPL vmlinux 0xb118f730 regulator_get_current_limit_regmap EXPORT_SYMBOL_GPL vmlinux 0xb11d9000 tty_dev_name_to_number -EXPORT_SYMBOL_GPL vmlinux 0xb136b605 pci_status_get_and_clear_errors -EXPORT_SYMBOL_GPL vmlinux 0xb1419dd2 nand_ecc_cleanup_req_tweaking -EXPORT_SYMBOL_GPL vmlinux 0xb14377c3 is_skb_forwardable -EXPORT_SYMBOL_GPL vmlinux 0xb14cf129 null_dailink_component -EXPORT_SYMBOL_GPL vmlinux 0xb14f086e xfrm_state_afinfo_get_rcu -EXPORT_SYMBOL_GPL vmlinux 0xb15f22b3 regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xb12cccca __regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0xb13463d9 gpiochip_irq_domain_deactivate +EXPORT_SYMBOL_GPL vmlinux 0xb138236e __bio_crypt_clone +EXPORT_SYMBOL_GPL vmlinux 0xb159b450 tpm_get_random +EXPORT_SYMBOL_GPL vmlinux 0xb16217b3 __platform_register_drivers EXPORT_SYMBOL_GPL vmlinux 0xb1647fc2 devlink_info_version_running_put -EXPORT_SYMBOL_GPL vmlinux 0xb16b844e devlink_port_attrs_pci_sf_set -EXPORT_SYMBOL_GPL vmlinux 0xb172947b handle_untracked_irq -EXPORT_SYMBOL_GPL vmlinux 0xb1729df2 bpf_sk_storage_diag_put -EXPORT_SYMBOL_GPL vmlinux 0xb180ad1f hrtimer_init_sleeper +EXPORT_SYMBOL_GPL vmlinux 0xb172a8b0 thermal_zone_device_update EXPORT_SYMBOL_GPL vmlinux 0xb18429eb suspend_device_irqs -EXPORT_SYMBOL_GPL vmlinux 0xb191db14 power_supply_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0xb195baa3 snd_soc_dai_compr_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xb19f5267 dw_pcie_find_capability -EXPORT_SYMBOL_GPL vmlinux 0xb1a3bd58 rdev_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0xb1b2b170 lwtunnel_state_alloc -EXPORT_SYMBOL_GPL vmlinux 0xb1bcdc4e perf_event_update_userpage +EXPORT_SYMBOL_GPL vmlinux 0xb1857563 pci_ioremap_wc_bar +EXPORT_SYMBOL_GPL vmlinux 0xb19c90cc badblocks_set +EXPORT_SYMBOL_GPL vmlinux 0xb1a3b6bc dev_err_probe +EXPORT_SYMBOL_GPL vmlinux 0xb1a56db8 of_usb_get_dr_mode_by_phy +EXPORT_SYMBOL_GPL vmlinux 0xb1bb332d regulator_force_disable +EXPORT_SYMBOL_GPL vmlinux 0xb1bd3a73 task_cgroup_path EXPORT_SYMBOL_GPL vmlinux 0xb1bed25d dpm_resume_start -EXPORT_SYMBOL_GPL vmlinux 0xb1c957b8 sdhci_adma_write_desc -EXPORT_SYMBOL_GPL vmlinux 0xb1cb2e7b ipv4_redirect -EXPORT_SYMBOL_GPL vmlinux 0xb1ce501b phy_resolve_aneg_linkmode -EXPORT_SYMBOL_GPL vmlinux 0xb1d7dea1 percpu_free_rwsem +EXPORT_SYMBOL_GPL vmlinux 0xb1ca2c0c gpiochip_irqchip_add_domain +EXPORT_SYMBOL_GPL vmlinux 0xb1d58f99 crypto_find_alg +EXPORT_SYMBOL_GPL vmlinux 0xb1e1fac8 crypto_type_has_alg EXPORT_SYMBOL_GPL vmlinux 0xb1e25684 __trace_bputs -EXPORT_SYMBOL_GPL vmlinux 0xb1ef51c1 pci_set_host_bridge_release +EXPORT_SYMBOL_GPL vmlinux 0xb1efa40d gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0xb1f7dbd8 hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb1f8a7b1 uart_console_device EXPORT_SYMBOL_GPL vmlinux 0xb1fc1782 pci_speed_string -EXPORT_SYMBOL_GPL vmlinux 0xb201d801 tps6586x_irq_get_virq -EXPORT_SYMBOL_GPL vmlinux 0xb20ee920 of_property_read_variable_u64_array -EXPORT_SYMBOL_GPL vmlinux 0xb210c7bb snd_soc_set_ac97_ops_of_reset +EXPORT_SYMBOL_GPL vmlinux 0xb20184ec crypto_grab_aead +EXPORT_SYMBOL_GPL vmlinux 0xb21104e3 of_fdt_unflatten_tree +EXPORT_SYMBOL_GPL vmlinux 0xb2186734 snd_soc_jack_add_gpios +EXPORT_SYMBOL_GPL vmlinux 0xb221036c dapm_clock_event EXPORT_SYMBOL_GPL vmlinux 0xb2210d64 reset_control_deassert -EXPORT_SYMBOL_GPL vmlinux 0xb224a72a set_primary_fwnode -EXPORT_SYMBOL_GPL vmlinux 0xb2386465 l3mdev_fib_table_rcu -EXPORT_SYMBOL_GPL vmlinux 0xb23e7369 dev_pm_qos_expose_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0xb22edfc9 net_selftest EXPORT_SYMBOL_GPL vmlinux 0xb2405efc secure_tcp_seq -EXPORT_SYMBOL_GPL vmlinux 0xb258ab92 register_pernet_subsys -EXPORT_SYMBOL_GPL vmlinux 0xb25a6351 snd_soc_component_init_regmap +EXPORT_SYMBOL_GPL vmlinux 0xb2475cad platform_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb25cb3fb list_lru_count_one +EXPORT_SYMBOL_GPL vmlinux 0xb25d1668 fat_add_entries EXPORT_SYMBOL_GPL vmlinux 0xb26538c6 kobject_get_path -EXPORT_SYMBOL_GPL vmlinux 0xb26643fe create_signature EXPORT_SYMBOL_GPL vmlinux 0xb26a1add elfcorehdr_addr -EXPORT_SYMBOL_GPL vmlinux 0xb26f3b39 efivar_entry_size -EXPORT_SYMBOL_GPL vmlinux 0xb2743b5f mtd_kmalloc_up_to -EXPORT_SYMBOL_GPL vmlinux 0xb286646b phy_reset -EXPORT_SYMBOL_GPL vmlinux 0xb29b1e9f regulator_irq_helper -EXPORT_SYMBOL_GPL vmlinux 0xb2a13025 usb_choose_configuration -EXPORT_SYMBOL_GPL vmlinux 0xb2a288b1 usb_mon_register -EXPORT_SYMBOL_GPL vmlinux 0xb2aae5dc spi_mem_adjust_op_size -EXPORT_SYMBOL_GPL vmlinux 0xb2b16bf9 dev_pm_qos_hide_flags +EXPORT_SYMBOL_GPL vmlinux 0xb28636b1 regulator_map_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0xb2901bae scsi_build_sense +EXPORT_SYMBOL_GPL vmlinux 0xb293982d usb_get_from_anchor +EXPORT_SYMBOL_GPL vmlinux 0xb29c6e9f platform_irq_count +EXPORT_SYMBOL_GPL vmlinux 0xb29e4493 cpufreq_policy_transition_delay_us +EXPORT_SYMBOL_GPL vmlinux 0xb2b457be devlink_register EXPORT_SYMBOL_GPL vmlinux 0xb2c1732e rcu_gp_set_torture_wait -EXPORT_SYMBOL_GPL vmlinux 0xb2cc07d7 genphy_c45_pma_setup_forced -EXPORT_SYMBOL_GPL vmlinux 0xb2cc4411 crypto_stats_decompress +EXPORT_SYMBOL_GPL vmlinux 0xb2c49168 spi_add_device +EXPORT_SYMBOL_GPL vmlinux 0xb2d71e1c mtd_get_user_prot_info +EXPORT_SYMBOL_GPL vmlinux 0xb2d8dbad pinctrl_utils_add_config EXPORT_SYMBOL_GPL vmlinux 0xb2d94d60 rockchip_clk_register_ddrclk -EXPORT_SYMBOL_GPL vmlinux 0xb2ddd23c device_create EXPORT_SYMBOL_GPL vmlinux 0xb2de4cf2 clk_gate_ops -EXPORT_SYMBOL_GPL vmlinux 0xb2de70dc inet_csk_route_child_sock +EXPORT_SYMBOL_GPL vmlinux 0xb2e72b12 scmi_driver_register EXPORT_SYMBOL_GPL vmlinux 0xb2e764e8 suspend_valid_only_mem -EXPORT_SYMBOL_GPL vmlinux 0xb2e9ca32 of_reserved_mem_lookup +EXPORT_SYMBOL_GPL vmlinux 0xb2f42de6 deregister_mtd_parser EXPORT_SYMBOL_GPL vmlinux 0xb2fadc38 clk_regmap_gate_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0xb2fd529f pci_test_config_bits EXPORT_SYMBOL_GPL vmlinux 0xb307c909 devlink_fmsg_u64_pair_put -EXPORT_SYMBOL_GPL vmlinux 0xb3081b88 crypto_alloc_ahash -EXPORT_SYMBOL_GPL vmlinux 0xb30bbf39 rtc_update_irq_enable -EXPORT_SYMBOL_GPL vmlinux 0xb30fdad2 __raw_v6_lookup -EXPORT_SYMBOL_GPL vmlinux 0xb3153bee anon_inode_getfd_secure -EXPORT_SYMBOL_GPL vmlinux 0xb32b2a93 ahci_reset_em -EXPORT_SYMBOL_GPL vmlinux 0xb3310fc4 regulator_bulk_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0xb33f3a38 pcie_aspm_enabled -EXPORT_SYMBOL_GPL vmlinux 0xb340410e devm_led_classdev_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb34a4eee fixed_phy_change_carrier -EXPORT_SYMBOL_GPL vmlinux 0xb34cbe32 devres_remove -EXPORT_SYMBOL_GPL vmlinux 0xb34d14df snd_soc_info_volsw_range -EXPORT_SYMBOL_GPL vmlinux 0xb35a682d dev_pm_opp_init_cpufreq_table -EXPORT_SYMBOL_GPL vmlinux 0xb36c1e30 netdev_is_rx_handler_busy -EXPORT_SYMBOL_GPL vmlinux 0xb3779076 pm_clk_create +EXPORT_SYMBOL_GPL vmlinux 0xb30972fd debugfs_create_x32 +EXPORT_SYMBOL_GPL vmlinux 0xb31c7966 ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0xb328b8a1 thermal_remove_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0xb329caa3 yield_to +EXPORT_SYMBOL_GPL vmlinux 0xb3368b17 devm_extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb3370227 ncsi_unregister_dev +EXPORT_SYMBOL_GPL vmlinux 0xb3640885 mpc8xxx_spi_rx_buf_u16 +EXPORT_SYMBOL_GPL vmlinux 0xb36805ad fuse_do_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xb37253cc skcipher_walk_complete +EXPORT_SYMBOL_GPL vmlinux 0xb376c523 __raw_v6_lookup +EXPORT_SYMBOL_GPL vmlinux 0xb377046f simple_attr_open EXPORT_SYMBOL_GPL vmlinux 0xb378559e freq_qos_add_request -EXPORT_SYMBOL_GPL vmlinux 0xb37a9b5c mtk_hw_set_value -EXPORT_SYMBOL_GPL vmlinux 0xb38fae49 register_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0xb37b71e6 ata_noop_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0xb382cbf5 tpm2_probe +EXPORT_SYMBOL_GPL vmlinux 0xb38d1e20 dst_cache_get +EXPORT_SYMBOL_GPL vmlinux 0xb39c0cd7 kthread_unuse_mm EXPORT_SYMBOL_GPL vmlinux 0xb39c7cf9 trace_seq_printf -EXPORT_SYMBOL_GPL vmlinux 0xb3ac1868 dev_pm_opp_of_add_table -EXPORT_SYMBOL_GPL vmlinux 0xb3af8d36 power_supply_get_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0xb3b33df7 devm_add_action -EXPORT_SYMBOL_GPL vmlinux 0xb3cb30cd mtd_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb3dd2c70 mtd_ooblayout_set_databytes -EXPORT_SYMBOL_GPL vmlinux 0xb3dd4bb8 debugfs_create_atomic_t -EXPORT_SYMBOL_GPL vmlinux 0xb3e20bfc tpm2_probe -EXPORT_SYMBOL_GPL vmlinux 0xb3efa75d tty_mode_ioctl -EXPORT_SYMBOL_GPL vmlinux 0xb409e65c uhci_check_and_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0xb3a609b0 ip_icmp_error_rfc4884 +EXPORT_SYMBOL_GPL vmlinux 0xb3a99d39 fat_build_inode +EXPORT_SYMBOL_GPL vmlinux 0xb3b82fab pinctrl_register +EXPORT_SYMBOL_GPL vmlinux 0xb3c49eb4 pm_genpd_remove_subdomain +EXPORT_SYMBOL_GPL vmlinux 0xb3c9c21d iommu_group_add_device EXPORT_SYMBOL_GPL vmlinux 0xb40c6376 cpuset_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xb423ab32 get_device_system_crosststamp -EXPORT_SYMBOL_GPL vmlinux 0xb4384e1c skb_gso_validate_network_len +EXPORT_SYMBOL_GPL vmlinux 0xb412290b __pm_relax +EXPORT_SYMBOL_GPL vmlinux 0xb41292a2 tty_port_default_client_ops EXPORT_SYMBOL_GPL vmlinux 0xb43f9365 ktime_get -EXPORT_SYMBOL_GPL vmlinux 0xb43fc2b0 console_drivers -EXPORT_SYMBOL_GPL vmlinux 0xb446f9ed devlink_region_snapshot_id_get EXPORT_SYMBOL_GPL vmlinux 0xb44e18ea audit_enabled -EXPORT_SYMBOL_GPL vmlinux 0xb44e2b55 xfrm_dev_resume -EXPORT_SYMBOL_GPL vmlinux 0xb456ab52 crypto_larval_kill -EXPORT_SYMBOL_GPL vmlinux 0xb4637dd8 fwnode_property_read_u16_array -EXPORT_SYMBOL_GPL vmlinux 0xb46789d7 ata_sff_port_ops -EXPORT_SYMBOL_GPL vmlinux 0xb4714505 of_get_pci_domain_nr -EXPORT_SYMBOL_GPL vmlinux 0xb49dd927 gpiod_direction_output_raw +EXPORT_SYMBOL_GPL vmlinux 0xb45a36a6 tc3589x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xb461529a tcp_reno_undo_cwnd +EXPORT_SYMBOL_GPL vmlinux 0xb46cf1d4 sdev_evt_send +EXPORT_SYMBOL_GPL vmlinux 0xb48269ca nand_ecc_init_req_tweaking +EXPORT_SYMBOL_GPL vmlinux 0xb49f5240 sata_set_spd +EXPORT_SYMBOL_GPL vmlinux 0xb4acad91 sk_msg_is_readable +EXPORT_SYMBOL_GPL vmlinux 0xb4ada643 serial8250_em485_start_tx EXPORT_SYMBOL_GPL vmlinux 0xb4b19455 imx8m_clk_hw_composite_flags EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb4bdb7ef dpcm_be_dai_trigger +EXPORT_SYMBOL_GPL vmlinux 0xb4c05e22 param_ops_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0xb4c960ec xhci_drop_endpoint +EXPORT_SYMBOL_GPL vmlinux 0xb4ce5197 ip_route_output_key_hash +EXPORT_SYMBOL_GPL vmlinux 0xb4d30334 bpf_offload_dev_netdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb4d9e77d fwnode_find_reference +EXPORT_SYMBOL_GPL vmlinux 0xb4db2096 blkdev_zone_mgmt EXPORT_SYMBOL_GPL vmlinux 0xb4ea7cf7 kgdb_connected +EXPORT_SYMBOL_GPL vmlinux 0xb4eac3a7 devm_tegra_memory_controller_get EXPORT_SYMBOL_GPL vmlinux 0xb4eda0da ring_buffer_event_length -EXPORT_SYMBOL_GPL vmlinux 0xb4f63a4d extcon_unregister_notifier_all +EXPORT_SYMBOL_GPL vmlinux 0xb50739ee serdev_device_remove EXPORT_SYMBOL_GPL vmlinux 0xb507e93d rhashtable_walk_stop -EXPORT_SYMBOL_GPL vmlinux 0xb5136dd1 thermal_zone_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb51c7f42 spi_mem_default_supports_op +EXPORT_SYMBOL_GPL vmlinux 0xb51cab47 devfreq_get_devfreq_by_phandle EXPORT_SYMBOL_GPL vmlinux 0xb51fbd64 edac_op_state -EXPORT_SYMBOL_GPL vmlinux 0xb527a328 snd_soc_component_disable_pin -EXPORT_SYMBOL_GPL vmlinux 0xb549ceae of_phy_get -EXPORT_SYMBOL_GPL vmlinux 0xb575e591 pci_ioremap_wc_bar -EXPORT_SYMBOL_GPL vmlinux 0xb5908e20 ata_noop_qc_prep -EXPORT_SYMBOL_GPL vmlinux 0xb59b4459 virtqueue_get_desc_addr -EXPORT_SYMBOL_GPL vmlinux 0xb5b38703 elv_register +EXPORT_SYMBOL_GPL vmlinux 0xb5555c97 serdev_device_set_tiocm +EXPORT_SYMBOL_GPL vmlinux 0xb5571ba9 regmap_write +EXPORT_SYMBOL_GPL vmlinux 0xb567d64e class_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0xb586d8ea spi_controller_dma_unmap_mem_op_data +EXPORT_SYMBOL_GPL vmlinux 0xb5a1d48f wm8350_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xb5b03eb9 devlink_traps_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb5b33ef9 ata_dummy_port_info EXPORT_SYMBOL_GPL vmlinux 0xb5b4c2e8 key_type_encrypted -EXPORT_SYMBOL_GPL vmlinux 0xb5b7be1d skcipher_walk_aead_encrypt -EXPORT_SYMBOL_GPL vmlinux 0xb5be4abb kthread_cancel_work_sync -EXPORT_SYMBOL_GPL vmlinux 0xb5c9d5f7 ip6_datagram_send_ctl +EXPORT_SYMBOL_GPL vmlinux 0xb5bbc073 xhci_reset_bandwidth +EXPORT_SYMBOL_GPL vmlinux 0xb5bbff92 vring_transport_features +EXPORT_SYMBOL_GPL vmlinux 0xb5bcd479 usb_gadget_set_selfpowered +EXPORT_SYMBOL_GPL vmlinux 0xb5c2772b hwmon_device_register_with_info +EXPORT_SYMBOL_GPL vmlinux 0xb5c430ed phy_speed_up EXPORT_SYMBOL_GPL vmlinux 0xb5dcd8a0 klist_init -EXPORT_SYMBOL_GPL vmlinux 0xb5e0037f netlink_strict_get_check -EXPORT_SYMBOL_GPL vmlinux 0xb5f82834 tpm_pm_resume -EXPORT_SYMBOL_GPL vmlinux 0xb614a507 mtk_pinconf_drive_get_raw +EXPORT_SYMBOL_GPL vmlinux 0xb5e3e69e regmap_get_val_endian +EXPORT_SYMBOL_GPL vmlinux 0xb5e74aaa dev_pm_opp_put_opp_table +EXPORT_SYMBOL_GPL vmlinux 0xb5f7f6dc snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL vmlinux 0xb60b945f usb_unanchor_urb +EXPORT_SYMBOL_GPL vmlinux 0xb620f0bf __vring_new_virtqueue EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb62fe832 devm_hwspin_lock_register -EXPORT_SYMBOL_GPL vmlinux 0xb6371d12 class_destroy +EXPORT_SYMBOL_GPL vmlinux 0xb636521b regulator_map_voltage_linear EXPORT_SYMBOL_GPL vmlinux 0xb6410433 mpi_addm -EXPORT_SYMBOL_GPL vmlinux 0xb649ba27 devm_of_phy_get -EXPORT_SYMBOL_GPL vmlinux 0xb65c8189 ata_sff_queue_pio_task -EXPORT_SYMBOL_GPL vmlinux 0xb662eb62 dev_pm_qos_expose_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0xb6744c48 mmc_pwrseq_register +EXPORT_SYMBOL_GPL vmlinux 0xb6430d65 led_trigger_event +EXPORT_SYMBOL_GPL vmlinux 0xb6635ca2 dev_pm_opp_put_regulators +EXPORT_SYMBOL_GPL vmlinux 0xb663dc48 skb_segment_list +EXPORT_SYMBOL_GPL vmlinux 0xb66af2f3 dm_put +EXPORT_SYMBOL_GPL vmlinux 0xb66f69ac usb_gadget_wakeup EXPORT_SYMBOL_GPL vmlinux 0xb6787346 sfp_unregister_socket -EXPORT_SYMBOL_GPL vmlinux 0xb6af1f51 clk_hw_get_parent -EXPORT_SYMBOL_GPL vmlinux 0xb6b11c6c snd_soc_runtime_calc_hw +EXPORT_SYMBOL_GPL vmlinux 0xb68561a0 sdhci_cqe_enable +EXPORT_SYMBOL_GPL vmlinux 0xb68d61c6 clk_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0xb694eda7 dma_buf_begin_cpu_access EXPORT_SYMBOL_GPL vmlinux 0xb6b873f4 __tracepoint_add_device_to_group -EXPORT_SYMBOL_GPL vmlinux 0xb6e1148f skb_pull_rcsum +EXPORT_SYMBOL_GPL vmlinux 0xb6b94351 virtio_check_driver_offered_feature EXPORT_SYMBOL_GPL vmlinux 0xb6e6d99d clk_disable -EXPORT_SYMBOL_GPL vmlinux 0xb6f283cb regulator_put -EXPORT_SYMBOL_GPL vmlinux 0xb6fe2c44 pm_runtime_force_suspend -EXPORT_SYMBOL_GPL vmlinux 0xb7024a1b genphy_c45_read_status -EXPORT_SYMBOL_GPL vmlinux 0xb704da5a bpf_map_inc -EXPORT_SYMBOL_GPL vmlinux 0xb706a229 list_lru_walk_one -EXPORT_SYMBOL_GPL vmlinux 0xb706d732 param_set_uint_minmax -EXPORT_SYMBOL_GPL vmlinux 0xb709b4f3 __regmap_init -EXPORT_SYMBOL_GPL vmlinux 0xb7147db0 max8997_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0xb71f5051 of_add_property -EXPORT_SYMBOL_GPL vmlinux 0xb722039e phy_pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0xb6f6a679 pci_generic_config_read +EXPORT_SYMBOL_GPL vmlinux 0xb71320b6 __dax_driver_register +EXPORT_SYMBOL_GPL vmlinux 0xb7150222 snd_soc_get_pcm_runtime +EXPORT_SYMBOL_GPL vmlinux 0xb715677d pm_generic_suspend +EXPORT_SYMBOL_GPL vmlinux 0xb7245561 dev_pm_qos_expose_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0xb725904c dma_release_channel +EXPORT_SYMBOL_GPL vmlinux 0xb72d923f usb_of_get_interface_node EXPORT_SYMBOL_GPL vmlinux 0xb7329c06 clk_set_phase -EXPORT_SYMBOL_GPL vmlinux 0xb735dc84 scmi_driver_register -EXPORT_SYMBOL_GPL vmlinux 0xb7389f22 of_pinctrl_get -EXPORT_SYMBOL_GPL vmlinux 0xb74180d3 relay_close +EXPORT_SYMBOL_GPL vmlinux 0xb7332568 regulator_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0xb7348a41 component_master_add_with_match +EXPORT_SYMBOL_GPL vmlinux 0xb740b522 css_next_descendant_pre EXPORT_SYMBOL_GPL vmlinux 0xb74538d2 kprobe_event_cmd_init +EXPORT_SYMBOL_GPL vmlinux 0xb74905ba serial8250_rpm_get EXPORT_SYMBOL_GPL vmlinux 0xb7491c17 lzorle1x_1_compress +EXPORT_SYMBOL_GPL vmlinux 0xb74a1193 dma_buf_detach EXPORT_SYMBOL_GPL vmlinux 0xb74c31cd wwan_remove_port -EXPORT_SYMBOL_GPL vmlinux 0xb7590c0e regmap_test_bits -EXPORT_SYMBOL_GPL vmlinux 0xb75942b8 blk_queue_write_cache -EXPORT_SYMBOL_GPL vmlinux 0xb760eb6a dm_per_bio_data +EXPORT_SYMBOL_GPL vmlinux 0xb7536be4 of_pci_dma_range_parser_init +EXPORT_SYMBOL_GPL vmlinux 0xb763b842 devm_thermal_zone_of_sensor_unregister EXPORT_SYMBOL_GPL vmlinux 0xb771e6b7 bL_switch_request_cb -EXPORT_SYMBOL_GPL vmlinux 0xb778a751 get_mtd_device +EXPORT_SYMBOL_GPL vmlinux 0xb776fc25 pinctrl_select_state EXPORT_SYMBOL_GPL vmlinux 0xb77db4cd software_node_find_by_name EXPORT_SYMBOL_GPL vmlinux 0xb786bf75 pci_write_msi_msg -EXPORT_SYMBOL_GPL vmlinux 0xb7a0fa1c sb800_prefetch -EXPORT_SYMBOL_GPL vmlinux 0xb7a38799 sdhci_pltfm_pmops EXPORT_SYMBOL_GPL vmlinux 0xb7a387fc synchronize_rcu_tasks_rude +EXPORT_SYMBOL_GPL vmlinux 0xb7a9a4a4 led_classdev_suspend +EXPORT_SYMBOL_GPL vmlinux 0xb7b5f534 ata_std_postreset EXPORT_SYMBOL_GPL vmlinux 0xb7c69a63 unregister_vmap_purge_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb7cef05f device_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0xb7edfd75 thermal_zone_device_register +EXPORT_SYMBOL_GPL vmlinux 0xb81d2c5c dst_cache_get_ip6 EXPORT_SYMBOL_GPL vmlinux 0xb82566eb omap_tll_enable -EXPORT_SYMBOL_GPL vmlinux 0xb826e974 component_add_typed -EXPORT_SYMBOL_GPL vmlinux 0xb82f6c0f devm_platform_get_irqs_affinity -EXPORT_SYMBOL_GPL vmlinux 0xb832066e blkcg_policy_register -EXPORT_SYMBOL_GPL vmlinux 0xb8373284 device_initialize -EXPORT_SYMBOL_GPL vmlinux 0xb85ac257 __traceiter_block_unplug -EXPORT_SYMBOL_GPL vmlinux 0xb85b033b irq_chip_retrigger_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0xb828d7c8 blk_queue_flag_test_and_set +EXPORT_SYMBOL_GPL vmlinux 0xb82b33d5 sdhci_setup_host +EXPORT_SYMBOL_GPL vmlinux 0xb82e802f rio_mport_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0xb842acde pci_common_swizzle +EXPORT_SYMBOL_GPL vmlinux 0xb8457fa7 led_blink_set_oneshot +EXPORT_SYMBOL_GPL vmlinux 0xb84c6294 spi_mem_dirmap_create +EXPORT_SYMBOL_GPL vmlinux 0xb85b2d5a crypto_register_ahashes EXPORT_SYMBOL_GPL vmlinux 0xb86758bf unregister_kprobe -EXPORT_SYMBOL_GPL vmlinux 0xb8697a7a netdev_rx_handler_register +EXPORT_SYMBOL_GPL vmlinux 0xb87df492 of_clk_get_parent_count +EXPORT_SYMBOL_GPL vmlinux 0xb885c506 pci_d3cold_enable +EXPORT_SYMBOL_GPL vmlinux 0xb8885da1 inet_unhash EXPORT_SYMBOL_GPL vmlinux 0xb88dbfce irq_set_irqchip_state -EXPORT_SYMBOL_GPL vmlinux 0xb88eaa53 balloon_page_alloc -EXPORT_SYMBOL_GPL vmlinux 0xb8919b20 dev_pm_qos_expose_flags +EXPORT_SYMBOL_GPL vmlinux 0xb89146e3 sysfs_change_owner +EXPORT_SYMBOL_GPL vmlinux 0xb892b5ef fwnode_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0xb8a2ec8e devres_add +EXPORT_SYMBOL_GPL vmlinux 0xb8a51bb3 account_locked_vm EXPORT_SYMBOL_GPL vmlinux 0xb8a64d4a sbitmap_queue_init_node -EXPORT_SYMBOL_GPL vmlinux 0xb8b4341b bpf_verifier_log_write -EXPORT_SYMBOL_GPL vmlinux 0xb8c2c272 usb_get_intf +EXPORT_SYMBOL_GPL vmlinux 0xb8a91a12 uart_console_write +EXPORT_SYMBOL_GPL vmlinux 0xb8b26ef0 mddev_init_writes_pending +EXPORT_SYMBOL_GPL vmlinux 0xb8c46c8b crypto_dequeue_request +EXPORT_SYMBOL_GPL vmlinux 0xb8c5b320 soc_device_match EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put -EXPORT_SYMBOL_GPL vmlinux 0xb8d70280 clk_register_mux_table -EXPORT_SYMBOL_GPL vmlinux 0xb8e6d03b cpuidle_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0xb8fe3f5d ata_sff_dev_select +EXPORT_SYMBOL_GPL vmlinux 0xb8e4ec76 xdp_return_frame +EXPORT_SYMBOL_GPL vmlinux 0xb8f6742b nf_queue_nf_hook_drop EXPORT_SYMBOL_GPL vmlinux 0xb90a1fcd rsa_parse_priv_key +EXPORT_SYMBOL_GPL vmlinux 0xb90de1ed snd_soc_link_compr_set_params EXPORT_SYMBOL_GPL vmlinux 0xb9138620 xas_create_range -EXPORT_SYMBOL_GPL vmlinux 0xb915c4b4 iomap_page_mkwrite EXPORT_SYMBOL_GPL vmlinux 0xb9176155 asn1_ber_decoder EXPORT_SYMBOL_GPL vmlinux 0xb917b6d7 return_address -EXPORT_SYMBOL_GPL vmlinux 0xb9451616 sk_msg_free_partial -EXPORT_SYMBOL_GPL vmlinux 0xb94648c5 dw_pcie_setup_rc -EXPORT_SYMBOL_GPL vmlinux 0xb95e4859 fwnode_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0xb91f57ca sdhci_pltfm_resume +EXPORT_SYMBOL_GPL vmlinux 0xb93594b3 of_detach_node +EXPORT_SYMBOL_GPL vmlinux 0xb957dd3a skcipher_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xb9616882 bio_associate_blkg_from_css +EXPORT_SYMBOL_GPL vmlinux 0xb961fc9c of_property_read_u64_index EXPORT_SYMBOL_GPL vmlinux 0xb9681621 xdp_do_flush -EXPORT_SYMBOL_GPL vmlinux 0xb972c84f devm_bitmap_zalloc -EXPORT_SYMBOL_GPL vmlinux 0xb97a5f4f dev_pm_opp_get_max_volt_latency +EXPORT_SYMBOL_GPL vmlinux 0xb96a581f do_xdp_generic EXPORT_SYMBOL_GPL vmlinux 0xb9852d11 __traceiter_mc_event -EXPORT_SYMBOL_GPL vmlinux 0xb9863705 __fib_lookup EXPORT_SYMBOL_GPL vmlinux 0xb98bb315 phy_gbit_fibre_features -EXPORT_SYMBOL_GPL vmlinux 0xb9929df3 usb_control_msg_send +EXPORT_SYMBOL_GPL vmlinux 0xb991df2a acomp_request_free EXPORT_SYMBOL_GPL vmlinux 0xb99a93f5 crypto_chain EXPORT_SYMBOL_GPL vmlinux 0xb99d3629 synth_event_cmd_init -EXPORT_SYMBOL_GPL vmlinux 0xb9a59b25 sched_trace_rq_cpu_capacity -EXPORT_SYMBOL_GPL vmlinux 0xb9ad370f __pm_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0xb9b0ff7f dma_vunmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0xb99e931a device_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0xb9ab2b50 usb_gen_phy_init EXPORT_SYMBOL_GPL vmlinux 0xb9b51e9d alarm_start +EXPORT_SYMBOL_GPL vmlinux 0xb9b75728 pci_find_vsec_capability EXPORT_SYMBOL_GPL vmlinux 0xb9b9df41 usb_amd_dev_put EXPORT_SYMBOL_GPL vmlinux 0xb9c425de register_syscore_ops -EXPORT_SYMBOL_GPL vmlinux 0xb9c7b140 max8997_write_reg EXPORT_SYMBOL_GPL vmlinux 0xb9d025c9 llist_del_first -EXPORT_SYMBOL_GPL vmlinux 0xb9d6e7cf of_genpd_add_provider_onecell -EXPORT_SYMBOL_GPL vmlinux 0xb9dbb34e sm501_misc_control -EXPORT_SYMBOL_GPL vmlinux 0xb9e596ed ohci_hub_status_data +EXPORT_SYMBOL_GPL vmlinux 0xb9d57ab3 snd_soc_jack_add_gpiods +EXPORT_SYMBOL_GPL vmlinux 0xb9e6340a vfs_listxattr EXPORT_SYMBOL_GPL vmlinux 0xb9e87b94 bL_switcher_trace_trigger -EXPORT_SYMBOL_GPL vmlinux 0xb9f0e08c wm831x_reg_write -EXPORT_SYMBOL_GPL vmlinux 0xb9f7d891 dev_pm_domain_attach +EXPORT_SYMBOL_GPL vmlinux 0xb9eeff46 usb_autopm_get_interface_no_resume +EXPORT_SYMBOL_GPL vmlinux 0xb9f1ed1f iomap_is_partially_uptodate +EXPORT_SYMBOL_GPL vmlinux 0xb9f2c964 cpufreq_unregister_governor +EXPORT_SYMBOL_GPL vmlinux 0xb9f50dd3 dev_pm_opp_of_add_table_indexed +EXPORT_SYMBOL_GPL vmlinux 0xb9fb1e93 virtqueue_kick_prepare EXPORT_SYMBOL_GPL vmlinux 0xba032f94 btree_insert -EXPORT_SYMBOL_GPL vmlinux 0xba11548c transport_destroy_device -EXPORT_SYMBOL_GPL vmlinux 0xba23bc7e dev_attr_em_message EXPORT_SYMBOL_GPL vmlinux 0xba2b7f64 cpufreq_generic_get +EXPORT_SYMBOL_GPL vmlinux 0xba2bf043 blk_queue_zone_write_granularity +EXPORT_SYMBOL_GPL vmlinux 0xba2e2a71 driver_register +EXPORT_SYMBOL_GPL vmlinux 0xba362aaa regmap_parse_val EXPORT_SYMBOL_GPL vmlinux 0xba3ba2f3 mtd_table_mutex -EXPORT_SYMBOL_GPL vmlinux 0xba3fbcac rio_mport_read_config_32 -EXPORT_SYMBOL_GPL vmlinux 0xba4741c7 pm_genpd_remove_subdomain -EXPORT_SYMBOL_GPL vmlinux 0xba59e9cc gpiochip_add_pingroup_range -EXPORT_SYMBOL_GPL vmlinux 0xba5ba8cf perf_trace_run_bpf_submit -EXPORT_SYMBOL_GPL vmlinux 0xba6859e4 irq_chip_mask_parent -EXPORT_SYMBOL_GPL vmlinux 0xba85c27a ahci_platform_disable_resources -EXPORT_SYMBOL_GPL vmlinux 0xba8d5982 fscrypt_symlink_getattr -EXPORT_SYMBOL_GPL vmlinux 0xba9f3dc0 mnt_drop_write -EXPORT_SYMBOL_GPL vmlinux 0xbaa2ed5b __pm_runtime_set_status -EXPORT_SYMBOL_GPL vmlinux 0xbaa8bacb crypto_unregister_algs -EXPORT_SYMBOL_GPL vmlinux 0xbaaacddd of_property_count_elems_of_size -EXPORT_SYMBOL_GPL vmlinux 0xbab697fb __ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0xba568ae1 pci_generic_config_read32 +EXPORT_SYMBOL_GPL vmlinux 0xba80d26a sysfs_update_groups +EXPORT_SYMBOL_GPL vmlinux 0xba81e220 nfs42_ssc_unregister +EXPORT_SYMBOL_GPL vmlinux 0xba8db392 irq_generic_chip_ops +EXPORT_SYMBOL_GPL vmlinux 0xba960cc6 nanddev_bbt_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xba99fc2d ata_port_pbar_desc +EXPORT_SYMBOL_GPL vmlinux 0xbab8a0d7 rt_mutex_lock EXPORT_SYMBOL_GPL vmlinux 0xbab9a9f0 maxim_charger_currents -EXPORT_SYMBOL_GPL vmlinux 0xbac27dab powercap_unregister_zone -EXPORT_SYMBOL_GPL vmlinux 0xbac2a8c9 devfreq_event_enable_edev +EXPORT_SYMBOL_GPL vmlinux 0xbabe21c4 iommu_set_fault_handler EXPORT_SYMBOL_GPL vmlinux 0xbac5646d sbitmap_finish_wait EXPORT_SYMBOL_GPL vmlinux 0xbace3461 usb_ep_disable +EXPORT_SYMBOL_GPL vmlinux 0xbad17099 list_lru_walk_one +EXPORT_SYMBOL_GPL vmlinux 0xbada275d icc_node_create +EXPORT_SYMBOL_GPL vmlinux 0xbadb53f8 inet_twsk_put +EXPORT_SYMBOL_GPL vmlinux 0xbaddf5e8 dw_pcie_ep_linkup +EXPORT_SYMBOL_GPL vmlinux 0xbae3bb04 alloc_dax EXPORT_SYMBOL_GPL vmlinux 0xbaf22757 kvfree_call_rcu EXPORT_SYMBOL_GPL vmlinux 0xbaf6850c fsnotify_wait_marks_destroyed -EXPORT_SYMBOL_GPL vmlinux 0xbaf6b630 led_sysfs_disable EXPORT_SYMBOL_GPL vmlinux 0xbb0ab47b debug_locks EXPORT_SYMBOL_GPL vmlinux 0xbb24f372 __SCK__tp_func_attach_device_to_domain -EXPORT_SYMBOL_GPL vmlinux 0xbb3954f3 inet6_destroy_sock -EXPORT_SYMBOL_GPL vmlinux 0xbb469ebb tcp_set_state -EXPORT_SYMBOL_GPL vmlinux 0xbb47fd89 unregister_trace_event +EXPORT_SYMBOL_GPL vmlinux 0xbb275d7c __mmc_send_status EXPORT_SYMBOL_GPL vmlinux 0xbb4c7570 pids_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xbb53285e tpm_pcr_extend -EXPORT_SYMBOL_GPL vmlinux 0xbb64822e __fscrypt_prepare_lookup EXPORT_SYMBOL_GPL vmlinux 0xbb6a3cbd devlink_fmsg_arr_pair_nest_start EXPORT_SYMBOL_GPL vmlinux 0xbb7195a5 xdp_warn -EXPORT_SYMBOL_GPL vmlinux 0xbb72ddfb tc3589x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xbb8f8497 __kernel_write -EXPORT_SYMBOL_GPL vmlinux 0xbba31047 snd_soc_component_compr_trigger -EXPORT_SYMBOL_GPL vmlinux 0xbbadbdbb nfs_ssc_client_tbl -EXPORT_SYMBOL_GPL vmlinux 0xbbae30b7 snd_soc_info_xr_sx -EXPORT_SYMBOL_GPL vmlinux 0xbbb11cd4 wait_on_page_writeback -EXPORT_SYMBOL_GPL vmlinux 0xbbb33690 snd_soc_limit_volume +EXPORT_SYMBOL_GPL vmlinux 0xbb8ab990 devfreq_event_get_event +EXPORT_SYMBOL_GPL vmlinux 0xbba6563f usb_gadget_unmap_request_by_dev +EXPORT_SYMBOL_GPL vmlinux 0xbbb137d1 snd_soc_get_dai_name EXPORT_SYMBOL_GPL vmlinux 0xbbb4ab02 mtk_mutex_put -EXPORT_SYMBOL_GPL vmlinux 0xbbbe790c devlink_remote_reload_actions_performed -EXPORT_SYMBOL_GPL vmlinux 0xbbe72813 phy_set_mode_ext +EXPORT_SYMBOL_GPL vmlinux 0xbbc5b6a2 snd_soc_close_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0xbbc71b76 rio_release_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0xbbe01004 __traceiter_xdp_bulk_tx +EXPORT_SYMBOL_GPL vmlinux 0xbbe94bf0 relay_late_setup_files +EXPORT_SYMBOL_GPL vmlinux 0xbbe99c4b crypto_register_acomps +EXPORT_SYMBOL_GPL vmlinux 0xbbf1c324 dma_get_slave_channel EXPORT_SYMBOL_GPL vmlinux 0xbbf4dfbe phy_basic_t1_features EXPORT_SYMBOL_GPL vmlinux 0xbbf95e29 sbitmap_del_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0xbc095fe0 __irq_domain_add -EXPORT_SYMBOL_GPL vmlinux 0xbc198ef7 __devm_clk_hw_register_divider -EXPORT_SYMBOL_GPL vmlinux 0xbc1a50cd crypto_create_tfm_node +EXPORT_SYMBOL_GPL vmlinux 0xbc0f68ef pinctrl_dev_get_name +EXPORT_SYMBOL_GPL vmlinux 0xbc10776e show_class_attr_string +EXPORT_SYMBOL_GPL vmlinux 0xbc292814 __ata_ehi_push_desc EXPORT_SYMBOL_GPL vmlinux 0xbc3f2cb0 timecounter_cyc2time -EXPORT_SYMBOL_GPL vmlinux 0xbc43313a gpiochip_get_data -EXPORT_SYMBOL_GPL vmlinux 0xbc4f6f4c of_genpd_remove_subdomain -EXPORT_SYMBOL_GPL vmlinux 0xbc558c8f sdhci_set_data_timeout_irq -EXPORT_SYMBOL_GPL vmlinux 0xbc62e0be dev_attr_ncq_prio_enable +EXPORT_SYMBOL_GPL vmlinux 0xbc44b5bb __ip6_datagram_connect EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0xbc72f986 pci_vfs_assigned -EXPORT_SYMBOL_GPL vmlinux 0xbc89e158 snd_soc_get_pcm_runtime -EXPORT_SYMBOL_GPL vmlinux 0xbcb3f474 irq_domain_disconnect_hierarchy -EXPORT_SYMBOL_GPL vmlinux 0xbcb44d2a led_trigger_unregister_simple -EXPORT_SYMBOL_GPL vmlinux 0xbcb98fe1 xfrm_audit_state_replay -EXPORT_SYMBOL_GPL vmlinux 0xbcbae887 validate_xmit_skb_list -EXPORT_SYMBOL_GPL vmlinux 0xbcbd7145 snd_soc_component_enable_pin -EXPORT_SYMBOL_GPL vmlinux 0xbcbfc688 devm_device_add_groups -EXPORT_SYMBOL_GPL vmlinux 0xbcc11e70 sdhci_cqe_irq +EXPORT_SYMBOL_GPL vmlinux 0xbc786fa6 phy_check_downshift +EXPORT_SYMBOL_GPL vmlinux 0xbc87c1e3 xfrm_audit_state_notfound +EXPORT_SYMBOL_GPL vmlinux 0xbcaabd64 pinctrl_select_default_state +EXPORT_SYMBOL_GPL vmlinux 0xbcb186f0 sdhci_switch_external_dma EXPORT_SYMBOL_GPL vmlinux 0xbcc15e75 ktime_get_coarse_with_offset -EXPORT_SYMBOL_GPL vmlinux 0xbccfa499 mtd_write_user_prot_reg EXPORT_SYMBOL_GPL vmlinux 0xbccfd4d8 register_oldmem_pfn_is_ram -EXPORT_SYMBOL_GPL vmlinux 0xbcd16219 serial8250_clear_and_reinit_fifos -EXPORT_SYMBOL_GPL vmlinux 0xbcd2b39c iomap_zero_range +EXPORT_SYMBOL_GPL vmlinux 0xbcd88f6a snd_dmaengine_pcm_open EXPORT_SYMBOL_GPL vmlinux 0xbcdd5b99 iommu_group_set_name -EXPORT_SYMBOL_GPL vmlinux 0xbcee5460 tcp_unregister_congestion_control EXPORT_SYMBOL_GPL vmlinux 0xbcf1f0e6 zs_create_pool -EXPORT_SYMBOL_GPL vmlinux 0xbcf1f462 edac_get_sysfs_subsys -EXPORT_SYMBOL_GPL vmlinux 0xbcf25c01 phy_led_triggers_register -EXPORT_SYMBOL_GPL vmlinux 0xbcf5533c synth_event_trace_end -EXPORT_SYMBOL_GPL vmlinux 0xbcfcdd3a ncsi_vlan_rx_kill_vid -EXPORT_SYMBOL_GPL vmlinux 0xbcfde433 usb_autopm_get_interface_no_resume -EXPORT_SYMBOL_GPL vmlinux 0xbd045a66 __vfs_removexattr_locked -EXPORT_SYMBOL_GPL vmlinux 0xbd18346f sdhci_end_tuning -EXPORT_SYMBOL_GPL vmlinux 0xbd1dc780 fat_scan -EXPORT_SYMBOL_GPL vmlinux 0xbd1f984c device_attach -EXPORT_SYMBOL_GPL vmlinux 0xbd2b6552 phy_resolve_aneg_pause +EXPORT_SYMBOL_GPL vmlinux 0xbd0a8617 usb_intf_get_dma_device +EXPORT_SYMBOL_GPL vmlinux 0xbd1fbf9e mtk_pinconf_adv_drive_set_raw +EXPORT_SYMBOL_GPL vmlinux 0xbd246118 perf_event_update_userpage +EXPORT_SYMBOL_GPL vmlinux 0xbd2a147a dev_pm_opp_detach_genpd +EXPORT_SYMBOL_GPL vmlinux 0xbd3939f5 ip6_append_data EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq -EXPORT_SYMBOL_GPL vmlinux 0xbd59c1a7 fwnode_handle_get -EXPORT_SYMBOL_GPL vmlinux 0xbd635b26 inet6_lookup -EXPORT_SYMBOL_GPL vmlinux 0xbd6f5d62 stmpe_set_altfunc -EXPORT_SYMBOL_GPL vmlinux 0xbd9218d3 task_cgroup_path -EXPORT_SYMBOL_GPL vmlinux 0xbd93ef58 tcp_twsk_destructor -EXPORT_SYMBOL_GPL vmlinux 0xbdab8ed0 device_show_int -EXPORT_SYMBOL_GPL vmlinux 0xbdb206c3 __traceiter_sched_cpu_capacity_tp -EXPORT_SYMBOL_GPL vmlinux 0xbdb35fdb mptcp_subflow_init_cookie_req -EXPORT_SYMBOL_GPL vmlinux 0xbdb8f6fa blk_ksm_intersect_modes -EXPORT_SYMBOL_GPL vmlinux 0xbdbe03cb inet_unhash -EXPORT_SYMBOL_GPL vmlinux 0xbde05f3a omap_iommu_domain_deactivate -EXPORT_SYMBOL_GPL vmlinux 0xbdef8608 transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbd51c69c extcon_get_extcon_dev +EXPORT_SYMBOL_GPL vmlinux 0xbd5b8fdf dev_pm_opp_find_freq_floor +EXPORT_SYMBOL_GPL vmlinux 0xbd6868ee __inode_attach_wb +EXPORT_SYMBOL_GPL vmlinux 0xbd6c40ab trace_event_ignore_this_pid +EXPORT_SYMBOL_GPL vmlinux 0xbd8299eb alloc_dax_region +EXPORT_SYMBOL_GPL vmlinux 0xbdbf40ae regulator_enable_regmap +EXPORT_SYMBOL_GPL vmlinux 0xbdc8ba49 debugfs_create_x64 +EXPORT_SYMBOL_GPL vmlinux 0xbddae380 devm_mbox_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbddb9e66 snd_soc_dai_set_tristate EXPORT_SYMBOL_GPL vmlinux 0xbdf4b96f percpu_ref_init -EXPORT_SYMBOL_GPL vmlinux 0xbdfaf80e virtqueue_add_inbuf -EXPORT_SYMBOL_GPL vmlinux 0xbe0030ac handle_fasteoi_ack_irq -EXPORT_SYMBOL_GPL vmlinux 0xbe17a306 pci_d3cold_enable -EXPORT_SYMBOL_GPL vmlinux 0xbe1da75b blkdev_nr_zones -EXPORT_SYMBOL_GPL vmlinux 0xbe3a3a3c platform_irqchip_probe -EXPORT_SYMBOL_GPL vmlinux 0xbe3b1ece snd_soc_set_ac97_ops -EXPORT_SYMBOL_GPL vmlinux 0xbe57f970 component_unbind_all -EXPORT_SYMBOL_GPL vmlinux 0xbe604963 crypto_req_done +EXPORT_SYMBOL_GPL vmlinux 0xbdf53c17 ping_get_port +EXPORT_SYMBOL_GPL vmlinux 0xbe0d0532 mmc_pwrseq_register +EXPORT_SYMBOL_GPL vmlinux 0xbe105477 raw_abort +EXPORT_SYMBOL_GPL vmlinux 0xbe10bb6a tps6586x_reads +EXPORT_SYMBOL_GPL vmlinux 0xbe1437b6 snd_soc_dai_compr_set_params +EXPORT_SYMBOL_GPL vmlinux 0xbe1b66dc sk_psock_tls_strp_read +EXPORT_SYMBOL_GPL vmlinux 0xbe1d7887 cpts_create +EXPORT_SYMBOL_GPL vmlinux 0xbe1f03d0 device_driver_attach +EXPORT_SYMBOL_GPL vmlinux 0xbe49e867 da9052_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0xbe6568a0 key_type_logon EXPORT_SYMBOL_GPL vmlinux 0xbe687e88 wake_up_all_idle_cpus -EXPORT_SYMBOL_GPL vmlinux 0xbe895504 wakeup_source_unregister -EXPORT_SYMBOL_GPL vmlinux 0xbe8fda9b pm_runtime_allow -EXPORT_SYMBOL_GPL vmlinux 0xbe9594a6 devm_regmap_add_irq_chip_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xbe6c26a3 perf_aux_output_end +EXPORT_SYMBOL_GPL vmlinux 0xbe6f34f1 gpiochip_lock_as_irq EXPORT_SYMBOL_GPL vmlinux 0xbe96dfd8 of_reconfig_notifier_unregister EXPORT_SYMBOL_GPL vmlinux 0xbe9a83d5 dw_pcie_write +EXPORT_SYMBOL_GPL vmlinux 0xbe9ab432 irq_domain_alloc_irqs_parent EXPORT_SYMBOL_GPL vmlinux 0xbea5ff1e static_key_initialized -EXPORT_SYMBOL_GPL vmlinux 0xbeb17662 device_remove_file +EXPORT_SYMBOL_GPL vmlinux 0xbea7d241 ahci_fill_cmd_slot +EXPORT_SYMBOL_GPL vmlinux 0xbeb8a719 ping_queue_rcv_skb +EXPORT_SYMBOL_GPL vmlinux 0xbec50415 power_supply_powers EXPORT_SYMBOL_GPL vmlinux 0xbec5473b usb_ep_fifo_status -EXPORT_SYMBOL_GPL vmlinux 0xbece0411 pm_generic_suspend_late -EXPORT_SYMBOL_GPL vmlinux 0xbed84357 dev_pm_opp_adjust_voltage -EXPORT_SYMBOL_GPL vmlinux 0xbee86c60 dev_pm_qos_remove_notifier -EXPORT_SYMBOL_GPL vmlinux 0xbef9eeb9 pci_generic_config_read +EXPORT_SYMBOL_GPL vmlinux 0xbecf1796 crypto_skcipher_setkey +EXPORT_SYMBOL_GPL vmlinux 0xbed55158 mtd_add_partition +EXPORT_SYMBOL_GPL vmlinux 0xbee1835a desc_to_gpio +EXPORT_SYMBOL_GPL vmlinux 0xbefdbf16 genphy_c45_pma_suspend +EXPORT_SYMBOL_GPL vmlinux 0xbeff0038 anon_inode_getfd EXPORT_SYMBOL_GPL vmlinux 0xbf041102 register_vt_notifier -EXPORT_SYMBOL_GPL vmlinux 0xbf07e000 __bio_crypt_clone -EXPORT_SYMBOL_GPL vmlinux 0xbf1732ff transport_add_device -EXPORT_SYMBOL_GPL vmlinux 0xbf335f56 get_pid_task -EXPORT_SYMBOL_GPL vmlinux 0xbf3dcec6 misc_cg_uncharge -EXPORT_SYMBOL_GPL vmlinux 0xbf482377 tegra_bpmp_transfer +EXPORT_SYMBOL_GPL vmlinux 0xbf0f5449 dev_pm_opp_get_opp_table +EXPORT_SYMBOL_GPL vmlinux 0xbf162d55 devm_kmalloc +EXPORT_SYMBOL_GPL vmlinux 0xbf4cf881 dapm_pinctrl_event EXPORT_SYMBOL_GPL vmlinux 0xbf554641 __tracepoint_sched_cpu_capacity_tp -EXPORT_SYMBOL_GPL vmlinux 0xbf55a0f8 nand_decode_ext_id -EXPORT_SYMBOL_GPL vmlinux 0xbf68c21c __hwspin_trylock -EXPORT_SYMBOL_GPL vmlinux 0xbf68c6aa sata_scr_read -EXPORT_SYMBOL_GPL vmlinux 0xbf6c9d5d switchdev_port_obj_del -EXPORT_SYMBOL_GPL vmlinux 0xbf76ab13 iommu_aux_attach_device -EXPORT_SYMBOL_GPL vmlinux 0xbf7a40e2 ahci_qc_issue -EXPORT_SYMBOL_GPL vmlinux 0xbf874174 crypto_alloc_rng -EXPORT_SYMBOL_GPL vmlinux 0xbf91fd1d iommu_report_device_fault -EXPORT_SYMBOL_GPL vmlinux 0xbf972432 find_extend_vma -EXPORT_SYMBOL_GPL vmlinux 0xbf9d03ae regmap_async_complete +EXPORT_SYMBOL_GPL vmlinux 0xbf55b21a hwspin_lock_request +EXPORT_SYMBOL_GPL vmlinux 0xbf62529b iomap_seek_hole +EXPORT_SYMBOL_GPL vmlinux 0xbf65cc90 regmap_attach_dev +EXPORT_SYMBOL_GPL vmlinux 0xbf7fb4c0 fixed_phy_change_carrier +EXPORT_SYMBOL_GPL vmlinux 0xbf9b6662 snd_soc_suspend +EXPORT_SYMBOL_GPL vmlinux 0xbf9c6fbf pci_user_write_config_dword +EXPORT_SYMBOL_GPL vmlinux 0xbfae42ac __traceiter_tcp_send_reset +EXPORT_SYMBOL_GPL vmlinux 0xbfb90386 debugfs_create_regset32 EXPORT_SYMBOL_GPL vmlinux 0xbfbc5434 pciserial_resume_ports -EXPORT_SYMBOL_GPL vmlinux 0xbfc35a74 extcon_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0xbfc67fe2 kthread_unuse_mm -EXPORT_SYMBOL_GPL vmlinux 0xbfca91e1 snd_soc_daifmt_parse_clock_provider_raw -EXPORT_SYMBOL_GPL vmlinux 0xbfd35c5f devlink_port_type_ib_set +EXPORT_SYMBOL_GPL vmlinux 0xbfbc7a8c devm_clk_hw_get_clk +EXPORT_SYMBOL_GPL vmlinux 0xbfbf7698 devm_nvmem_cell_get +EXPORT_SYMBOL_GPL vmlinux 0xbfc1f37d sk_free_unlock_clone +EXPORT_SYMBOL_GPL vmlinux 0xbfde3b6a serdev_device_set_baudrate 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 0xbff9a24e nanddev_cleanup EXPORT_SYMBOL_GPL vmlinux 0xc00131cf visitor64 -EXPORT_SYMBOL_GPL vmlinux 0xc00f5728 scsi_flush_work +EXPORT_SYMBOL_GPL vmlinux 0xc0027b9a pci_assign_unassigned_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0xc0155a7d rio_unregister_mport EXPORT_SYMBOL_GPL vmlinux 0xc018e1a0 list_lru_add -EXPORT_SYMBOL_GPL vmlinux 0xc02f4dbf sk_setup_caps -EXPORT_SYMBOL_GPL vmlinux 0xc03c1c96 trace_event_buffer_reserve -EXPORT_SYMBOL_GPL vmlinux 0xc043caea shash_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0xc02be821 pci_bus_max_busnr +EXPORT_SYMBOL_GPL vmlinux 0xc03cf610 xhci_resume EXPORT_SYMBOL_GPL vmlinux 0xc04e20c3 percpu_ref_switch_to_atomic_sync EXPORT_SYMBOL_GPL vmlinux 0xc0583e20 edac_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xc05b6781 regulator_set_voltage_time EXPORT_SYMBOL_GPL vmlinux 0xc05cee80 ipi_get_hwirq -EXPORT_SYMBOL_GPL vmlinux 0xc05f0e0c fwnode_handle_put -EXPORT_SYMBOL_GPL vmlinux 0xc05f6e16 dev_pm_opp_of_add_table_indexed -EXPORT_SYMBOL_GPL vmlinux 0xc0648b28 sdhci_set_bus_width EXPORT_SYMBOL_GPL vmlinux 0xc06b77b3 __cci_control_port_by_index -EXPORT_SYMBOL_GPL vmlinux 0xc07f8fd4 devm_gpiod_get_array EXPORT_SYMBOL_GPL vmlinux 0xc081c246 bL_switcher_put_enabled -EXPORT_SYMBOL_GPL vmlinux 0xc088d5f9 led_classdev_notify_brightness_hw_changed +EXPORT_SYMBOL_GPL vmlinux 0xc090002a ata_pci_bmdma_prepare_host EXPORT_SYMBOL_GPL vmlinux 0xc090c376 net_selftest_get_strings -EXPORT_SYMBOL_GPL vmlinux 0xc094e148 ata_sff_tf_load -EXPORT_SYMBOL_GPL vmlinux 0xc0981b8e pciserial_init_ports -EXPORT_SYMBOL_GPL vmlinux 0xc09f81e1 snd_soc_dai_action +EXPORT_SYMBOL_GPL vmlinux 0xc09b718b dw_pcie_write_dbi +EXPORT_SYMBOL_GPL vmlinux 0xc09d5362 mmc_sanitize +EXPORT_SYMBOL_GPL vmlinux 0xc0a43ead dmaengine_unmap_put +EXPORT_SYMBOL_GPL vmlinux 0xc0a5871a hwmon_device_register_with_groups EXPORT_SYMBOL_GPL vmlinux 0xc0a96e14 rcu_gp_is_expedited -EXPORT_SYMBOL_GPL vmlinux 0xc0b5060c sdio_get_host_pm_caps -EXPORT_SYMBOL_GPL vmlinux 0xc0cf5826 nf_queue_entry_free -EXPORT_SYMBOL_GPL vmlinux 0xc0d82370 ata_port_pbar_desc -EXPORT_SYMBOL_GPL vmlinux 0xc0da4cb9 scsi_mode_select +EXPORT_SYMBOL_GPL vmlinux 0xc0aa2fda thermal_zone_get_slope +EXPORT_SYMBOL_GPL vmlinux 0xc0b4b27d phy_resolve_aneg_linkmode +EXPORT_SYMBOL_GPL vmlinux 0xc0b67681 do_unbind_con_driver +EXPORT_SYMBOL_GPL vmlinux 0xc0c4c778 usb_disable_xhci_ports EXPORT_SYMBOL_GPL vmlinux 0xc0dcb59e edac_layer_name -EXPORT_SYMBOL_GPL vmlinux 0xc0dced88 ethnl_cable_test_amplitude +EXPORT_SYMBOL_GPL vmlinux 0xc0e26f8f kthread_queue_delayed_work EXPORT_SYMBOL_GPL vmlinux 0xc0e75cec visitor128 +EXPORT_SYMBOL_GPL vmlinux 0xc0eea6c0 rio_mport_read_config_16 EXPORT_SYMBOL_GPL vmlinux 0xc0f0458a ip_tunnel_unneed_metadata -EXPORT_SYMBOL_GPL vmlinux 0xc1056d0d syscon_regmap_lookup_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xc0f54b60 xfrm_state_mtu EXPORT_SYMBOL_GPL vmlinux 0xc10655da xas_get_mark EXPORT_SYMBOL_GPL vmlinux 0xc1086e0c sysrq_toggle_support -EXPORT_SYMBOL_GPL vmlinux 0xc10d38fc class_dev_iter_init -EXPORT_SYMBOL_GPL vmlinux 0xc10e2cfd sata_pmp_qc_defer_cmd_switch EXPORT_SYMBOL_GPL vmlinux 0xc10fddb8 name_to_dev_t -EXPORT_SYMBOL_GPL vmlinux 0xc1158dd7 hisi_clk_init -EXPORT_SYMBOL_GPL vmlinux 0xc13498c0 dev_forward_skb -EXPORT_SYMBOL_GPL vmlinux 0xc13de534 regulator_set_mode -EXPORT_SYMBOL_GPL vmlinux 0xc140a718 vchan_tx_desc_free -EXPORT_SYMBOL_GPL vmlinux 0xc14aff93 switchdev_handle_port_obj_del -EXPORT_SYMBOL_GPL vmlinux 0xc1644eb3 debugfs_create_symlink -EXPORT_SYMBOL_GPL vmlinux 0xc170c3df i2c_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xc116ad8c tpm_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0xc1184886 clk_register +EXPORT_SYMBOL_GPL vmlinux 0xc11f8d1a pci_status_get_and_clear_errors +EXPORT_SYMBOL_GPL vmlinux 0xc12c7ca2 crypto_unregister_ahashes +EXPORT_SYMBOL_GPL vmlinux 0xc133bf3e netdev_walk_all_upper_dev_rcu +EXPORT_SYMBOL_GPL vmlinux 0xc13569e7 devm_platform_get_and_ioremap_resource +EXPORT_SYMBOL_GPL vmlinux 0xc1415510 pci_epc_mem_exit +EXPORT_SYMBOL_GPL vmlinux 0xc159269c debugfs_create_devm_seqfile +EXPORT_SYMBOL_GPL vmlinux 0xc1710ffb i2c_dw_probe_master +EXPORT_SYMBOL_GPL vmlinux 0xc1715925 devm_reset_controller_register EXPORT_SYMBOL_GPL vmlinux 0xc17515d7 usb_hcds_loaded -EXPORT_SYMBOL_GPL vmlinux 0xc187eb2c pingv6_prot -EXPORT_SYMBOL_GPL vmlinux 0xc1af4d5a lwtunnel_xmit -EXPORT_SYMBOL_GPL vmlinux 0xc1b87ad2 attribute_container_register -EXPORT_SYMBOL_GPL vmlinux 0xc1bf5107 nfs_ssc_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc1c774b3 __pci_reset_function_locked -EXPORT_SYMBOL_GPL vmlinux 0xc1c780cf thermal_cooling_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc1d1ed22 mptcp_pm_get_local_addr_max -EXPORT_SYMBOL_GPL vmlinux 0xc1d2ee01 __devm_spi_alloc_controller +EXPORT_SYMBOL_GPL vmlinux 0xc187d8f8 mtk_pinconf_drive_get_rev1 +EXPORT_SYMBOL_GPL vmlinux 0xc19655a3 dev_set_name +EXPORT_SYMBOL_GPL vmlinux 0xc1a2365e fat_flush_inodes +EXPORT_SYMBOL_GPL vmlinux 0xc1af82fd mtk_hw_set_value +EXPORT_SYMBOL_GPL vmlinux 0xc1b11b47 rio_request_dma +EXPORT_SYMBOL_GPL vmlinux 0xc1b247c5 gpiochip_add_pin_range +EXPORT_SYMBOL_GPL vmlinux 0xc1c4bf59 devm_of_phy_get_by_index +EXPORT_SYMBOL_GPL vmlinux 0xc1cdec2f ata_wait_register +EXPORT_SYMBOL_GPL vmlinux 0xc1d3fcb2 pcie_aspm_capable +EXPORT_SYMBOL_GPL vmlinux 0xc1d427c5 phy_save_page +EXPORT_SYMBOL_GPL vmlinux 0xc1d9c99c mmu_notifier_put +EXPORT_SYMBOL_GPL vmlinux 0xc1df53eb ata_sff_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0xc1f57e3b pm_clk_create EXPORT_SYMBOL_GPL vmlinux 0xc1f9977a unregister_ftrace_function -EXPORT_SYMBOL_GPL vmlinux 0xc1fbe46b sata_link_hardreset -EXPORT_SYMBOL_GPL vmlinux 0xc2051adc devm_pm_opp_set_clkname -EXPORT_SYMBOL_GPL vmlinux 0xc208079b fscrypt_drop_inode +EXPORT_SYMBOL_GPL vmlinux 0xc2043fba vp_modern_probe +EXPORT_SYMBOL_GPL vmlinux 0xc205a17e pci_load_saved_state EXPORT_SYMBOL_GPL vmlinux 0xc212dbd1 __tracepoint_neigh_event_send_dead -EXPORT_SYMBOL_GPL vmlinux 0xc2185c6b __scsi_init_queue -EXPORT_SYMBOL_GPL vmlinux 0xc21a1d7a usb_block_urb EXPORT_SYMBOL_GPL vmlinux 0xc21b3cca devices_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xc22013dc device_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0xc21d75ce usb_add_gadget_udc EXPORT_SYMBOL_GPL vmlinux 0xc222ead3 xas_find_marked +EXPORT_SYMBOL_GPL vmlinux 0xc223b677 __class_register EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases -EXPORT_SYMBOL_GPL vmlinux 0xc231b1b2 __efivar_entry_iter -EXPORT_SYMBOL_GPL vmlinux 0xc253db4e vp_modern_set_queue_size -EXPORT_SYMBOL_GPL vmlinux 0xc25651b0 subsys_interface_register -EXPORT_SYMBOL_GPL vmlinux 0xc25fa38f gpiod_set_transitory -EXPORT_SYMBOL_GPL vmlinux 0xc264a660 crypto_aead_setauthsize +EXPORT_SYMBOL_GPL vmlinux 0xc25997ca scsi_target_unblock +EXPORT_SYMBOL_GPL vmlinux 0xc25ef555 regulator_is_enabled_regmap EXPORT_SYMBOL_GPL vmlinux 0xc2692173 wakeup_sources_read_lock -EXPORT_SYMBOL_GPL vmlinux 0xc26cf4c8 fsverity_ioctl_measure -EXPORT_SYMBOL_GPL vmlinux 0xc26dfe23 snd_soc_dai_compr_get_params -EXPORT_SYMBOL_GPL vmlinux 0xc285dcef sched_show_task -EXPORT_SYMBOL_GPL vmlinux 0xc289bc01 bsg_remove_queue +EXPORT_SYMBOL_GPL vmlinux 0xc27cd820 fixed_phy_unregister EXPORT_SYMBOL_GPL vmlinux 0xc289e46d cpufreq_generic_frequency_table_verify -EXPORT_SYMBOL_GPL vmlinux 0xc292eba7 dev_fwnode -EXPORT_SYMBOL_GPL vmlinux 0xc296b947 gpiochip_populate_parent_fwspec_fourcell +EXPORT_SYMBOL_GPL vmlinux 0xc28ac0c1 power_supply_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xc28cdec8 wakeup_sources_walk_start +EXPORT_SYMBOL_GPL vmlinux 0xc29ce988 inet_send_prepare EXPORT_SYMBOL_GPL vmlinux 0xc2a1cbaf __cpuhp_state_remove_instance +EXPORT_SYMBOL_GPL vmlinux 0xc2a548e0 perf_aux_output_begin EXPORT_SYMBOL_GPL vmlinux 0xc2a814db tcp_memory_pressure -EXPORT_SYMBOL_GPL vmlinux 0xc2a9f669 fuse_fill_super_common -EXPORT_SYMBOL_GPL vmlinux 0xc2aa5415 nanddev_markbad -EXPORT_SYMBOL_GPL vmlinux 0xc2bd3d51 iommu_device_link -EXPORT_SYMBOL_GPL vmlinux 0xc2cc88dd led_classdev_suspend EXPORT_SYMBOL_GPL vmlinux 0xc2db7e18 xas_find -EXPORT_SYMBOL_GPL vmlinux 0xc2e45710 badblocks_exit -EXPORT_SYMBOL_GPL vmlinux 0xc2ebf353 snd_soc_dai_set_fmt -EXPORT_SYMBOL_GPL vmlinux 0xc2ecc375 sfp_add_phy -EXPORT_SYMBOL_GPL vmlinux 0xc2fb66f7 dax_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0xc2f17d9b ahci_platform_enable_regulators +EXPORT_SYMBOL_GPL vmlinux 0xc2f68586 ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0xc2f81f97 device_get_child_node_count +EXPORT_SYMBOL_GPL vmlinux 0xc3005205 pci_check_and_mask_intx +EXPORT_SYMBOL_GPL vmlinux 0xc301b672 pinconf_generic_dt_subnode_to_map +EXPORT_SYMBOL_GPL vmlinux 0xc3084d34 skb_segment +EXPORT_SYMBOL_GPL vmlinux 0xc325a710 skb_to_sgvec_nomark +EXPORT_SYMBOL_GPL vmlinux 0xc32ffa2c extcon_set_property_capability +EXPORT_SYMBOL_GPL vmlinux 0xc33269e3 crypto_unregister_template +EXPORT_SYMBOL_GPL vmlinux 0xc3329dad tpm_tis_core_init +EXPORT_SYMBOL_GPL vmlinux 0xc33728a6 usb_deregister +EXPORT_SYMBOL_GPL vmlinux 0xc33afb6a rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0xc33c4a73 mmu_interval_notifier_remove EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object -EXPORT_SYMBOL_GPL vmlinux 0xc35235b6 __traceiter_rpm_return_int -EXPORT_SYMBOL_GPL vmlinux 0xc352e76f snd_soc_dapm_new_controls -EXPORT_SYMBOL_GPL vmlinux 0xc364bf6b device_match_devt +EXPORT_SYMBOL_GPL vmlinux 0xc34388b9 gpiochip_line_is_persistent +EXPORT_SYMBOL_GPL vmlinux 0xc3475bff dev_pm_opp_of_register_em +EXPORT_SYMBOL_GPL vmlinux 0xc361fd44 sk_msg_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc36bb2a4 platform_get_irq_optional EXPORT_SYMBOL_GPL vmlinux 0xc3708747 trace_vprintk -EXPORT_SYMBOL_GPL vmlinux 0xc3736176 pin_get_name -EXPORT_SYMBOL_GPL vmlinux 0xc37611c2 tpm_tis_remove -EXPORT_SYMBOL_GPL vmlinux 0xc3761aa7 extcon_get_property_capability +EXPORT_SYMBOL_GPL vmlinux 0xc373934d pci_enable_ats +EXPORT_SYMBOL_GPL vmlinux 0xc3790646 usb_unlocked_enable_lpm EXPORT_SYMBOL_GPL vmlinux 0xc3805cd1 fs_ftype_to_dtype -EXPORT_SYMBOL_GPL vmlinux 0xc3903e26 securityfs_remove -EXPORT_SYMBOL_GPL vmlinux 0xc399dd0b regmap_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0xc39d8f9c scsi_target_unblock -EXPORT_SYMBOL_GPL vmlinux 0xc3a05c80 ata_sff_error_handler -EXPORT_SYMBOL_GPL vmlinux 0xc3bed828 usb_phy_get_charger_current -EXPORT_SYMBOL_GPL vmlinux 0xc3c493b2 sdhci_send_tuning +EXPORT_SYMBOL_GPL vmlinux 0xc3a68de6 snd_soc_dai_compr_ack EXPORT_SYMBOL_GPL vmlinux 0xc3c4c6cc hash_algo_name -EXPORT_SYMBOL_GPL vmlinux 0xc3c5ac47 rio_attach_device -EXPORT_SYMBOL_GPL vmlinux 0xc3cdead9 xdp_rxq_info_unreg_mem_model -EXPORT_SYMBOL_GPL vmlinux 0xc3d4d89b pm_generic_poweroff +EXPORT_SYMBOL_GPL vmlinux 0xc3cf0ff9 devm_phy_put EXPORT_SYMBOL_GPL vmlinux 0xc3de65ff ring_buffer_bytes_cpu EXPORT_SYMBOL_GPL vmlinux 0xc3ea5305 iommu_default_passthrough -EXPORT_SYMBOL_GPL vmlinux 0xc3ededf3 mmu_interval_read_begin -EXPORT_SYMBOL_GPL vmlinux 0xc3fccb40 snd_soc_of_get_slot_mask -EXPORT_SYMBOL_GPL vmlinux 0xc4076f76 usb_phy_generic_register -EXPORT_SYMBOL_GPL vmlinux 0xc40920e8 sock_map_close -EXPORT_SYMBOL_GPL vmlinux 0xc41f610a dma_buf_unmap_attachment +EXPORT_SYMBOL_GPL vmlinux 0xc405ab34 genpd_dev_pm_attach +EXPORT_SYMBOL_GPL vmlinux 0xc40c5abd regulator_set_current_limit +EXPORT_SYMBOL_GPL vmlinux 0xc40e769d edac_pci_handle_pe +EXPORT_SYMBOL_GPL vmlinux 0xc412eaae led_update_brightness +EXPORT_SYMBOL_GPL vmlinux 0xc41ce95d irq_set_default_host +EXPORT_SYMBOL_GPL vmlinux 0xc41e51a1 tps6586x_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0xc4263a13 snd_pcm_stream_unlock EXPORT_SYMBOL_GPL vmlinux 0xc428068d sata_deb_timing_long -EXPORT_SYMBOL_GPL vmlinux 0xc430a90b devfreq_get_devfreq_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0xc43e7a30 vc_scrolldelta_helper +EXPORT_SYMBOL_GPL vmlinux 0xc43c583a blk_next_bio EXPORT_SYMBOL_GPL vmlinux 0xc454fc7b twl_get_type +EXPORT_SYMBOL_GPL vmlinux 0xc456126c snd_soc_card_remove_dai_link EXPORT_SYMBOL_GPL vmlinux 0xc45e246f housekeeping_test_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc45e676d fscrypt_set_context +EXPORT_SYMBOL_GPL vmlinux 0xc45f0c31 wm8350_device_init EXPORT_SYMBOL_GPL vmlinux 0xc471c67a twl4030_audio_disable_resource -EXPORT_SYMBOL_GPL vmlinux 0xc480f78c crypto_aead_setkey -EXPORT_SYMBOL_GPL vmlinux 0xc4878103 ata_std_bios_param -EXPORT_SYMBOL_GPL vmlinux 0xc48a3a37 ncsi_register_dev +EXPORT_SYMBOL_GPL vmlinux 0xc4735ede bpf_prog_sub +EXPORT_SYMBOL_GPL vmlinux 0xc478a7a9 fat_time_unix2fat +EXPORT_SYMBOL_GPL vmlinux 0xc47e8e9f crypto_alg_extsize EXPORT_SYMBOL_GPL vmlinux 0xc48b7ccf ata_mode_string -EXPORT_SYMBOL_GPL vmlinux 0xc48e240c regulator_disable_deferred -EXPORT_SYMBOL_GPL vmlinux 0xc4934b7c __xdp_build_skb_from_frame +EXPORT_SYMBOL_GPL vmlinux 0xc48c111c dw_pcie_ep_init EXPORT_SYMBOL_GPL vmlinux 0xc4937fde ti_clk_is_in_standby -EXPORT_SYMBOL_GPL vmlinux 0xc493b60f thermal_zone_get_slope -EXPORT_SYMBOL_GPL vmlinux 0xc49baffb crypto_comp_compress -EXPORT_SYMBOL_GPL vmlinux 0xc4b512d3 __regmap_init_i2c -EXPORT_SYMBOL_GPL vmlinux 0xc4be931d of_reserved_mem_device_init_by_idx -EXPORT_SYMBOL_GPL vmlinux 0xc4c506f2 wbc_account_cgroup_owner -EXPORT_SYMBOL_GPL vmlinux 0xc4cde8e3 tegra_mc_get_emem_device_count +EXPORT_SYMBOL_GPL vmlinux 0xc4af8391 rio_pw_enable +EXPORT_SYMBOL_GPL vmlinux 0xc4be6603 irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xc4c7e3f5 crypto_register_shash EXPORT_SYMBOL_GPL vmlinux 0xc4cf2420 ring_buffer_read_page -EXPORT_SYMBOL_GPL vmlinux 0xc4e3db37 dma_buf_unpin +EXPORT_SYMBOL_GPL vmlinux 0xc4dcd89a devfreq_event_reset_event EXPORT_SYMBOL_GPL vmlinux 0xc4f0da12 ktime_get_with_offset -EXPORT_SYMBOL_GPL vmlinux 0xc4f61137 blkdev_zone_mgmt -EXPORT_SYMBOL_GPL vmlinux 0xc51e2d7c power_supply_powers -EXPORT_SYMBOL_GPL vmlinux 0xc522d189 sched_trace_rq_avg_rt -EXPORT_SYMBOL_GPL vmlinux 0xc5331df0 ohci_suspend -EXPORT_SYMBOL_GPL vmlinux 0xc534bc2d serial8250_do_set_divisor -EXPORT_SYMBOL_GPL vmlinux 0xc53efcc0 gpiochip_remove_pin_ranges -EXPORT_SYMBOL_GPL vmlinux 0xc551d456 ahci_pmp_retry_srst_ops +EXPORT_SYMBOL_GPL vmlinux 0xc513d786 msg_zerocopy_callback +EXPORT_SYMBOL_GPL vmlinux 0xc52b3b36 devm_fwnode_pwm_get EXPORT_SYMBOL_GPL vmlinux 0xc55ff962 phy_basic_t1_features_array EXPORT_SYMBOL_GPL vmlinux 0xc5604800 clk_set_rate_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xc562fc45 ata_cable_ignore +EXPORT_SYMBOL_GPL vmlinux 0xc5631399 dev_pm_opp_of_add_table +EXPORT_SYMBOL_GPL vmlinux 0xc565ad65 fscrypt_symlink_getattr 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 0xc57f2454 ethnl_cable_test_fault_length +EXPORT_SYMBOL_GPL vmlinux 0xc57b5614 dev_pm_opp_set_clkname EXPORT_SYMBOL_GPL vmlinux 0xc58a3ee6 icc_node_destroy -EXPORT_SYMBOL_GPL vmlinux 0xc59fc631 iommu_map_sg -EXPORT_SYMBOL_GPL vmlinux 0xc5b90287 tcp_set_keepalive -EXPORT_SYMBOL_GPL vmlinux 0xc5bf1ea5 tps6586x_write -EXPORT_SYMBOL_GPL vmlinux 0xc5c7a37e dw_pcie_own_conf_map_bus -EXPORT_SYMBOL_GPL vmlinux 0xc5cbca9f hrtimer_sleeper_start_expires -EXPORT_SYMBOL_GPL vmlinux 0xc5d61c45 regulator_get_voltage_sel_regmap -EXPORT_SYMBOL_GPL vmlinux 0xc5eba78b iommu_aux_detach_device -EXPORT_SYMBOL_GPL vmlinux 0xc5ebfe0a phy_led_trigger_change_speed -EXPORT_SYMBOL_GPL vmlinux 0xc5ed292f dev_pm_opp_get_max_transition_latency -EXPORT_SYMBOL_GPL vmlinux 0xc5f14192 pinconf_generic_dump_config -EXPORT_SYMBOL_GPL vmlinux 0xc5fb54b7 usb_hcd_amd_remote_wakeup_quirk +EXPORT_SYMBOL_GPL vmlinux 0xc59329af usb_gadget_set_state +EXPORT_SYMBOL_GPL vmlinux 0xc5bfad33 mtk_pinconf_bias_disable_set_rev1 +EXPORT_SYMBOL_GPL vmlinux 0xc5c499c5 l3mdev_link_scope_lookup +EXPORT_SYMBOL_GPL vmlinux 0xc5d64d21 snd_soc_runtime_calc_hw +EXPORT_SYMBOL_GPL vmlinux 0xc5d8ddb2 gov_attr_set_init +EXPORT_SYMBOL_GPL vmlinux 0xc5e99f3b __traceiter_devlink_hwerr +EXPORT_SYMBOL_GPL vmlinux 0xc5edff54 blkg_lookup_slowpath +EXPORT_SYMBOL_GPL vmlinux 0xc5f5d0ef xdp_build_skb_from_frame +EXPORT_SYMBOL_GPL vmlinux 0xc606f693 crypto_alloc_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xc6158075 __pci_epc_create EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier -EXPORT_SYMBOL_GPL vmlinux 0xc6250065 gpiochip_generic_request -EXPORT_SYMBOL_GPL vmlinux 0xc62a7640 crypto_shash_tfm_digest -EXPORT_SYMBOL_GPL vmlinux 0xc640d36f ima_inode_hash +EXPORT_SYMBOL_GPL vmlinux 0xc61b06cb strp_unpause +EXPORT_SYMBOL_GPL vmlinux 0xc62b998d snd_soc_lookup_component_nolocked +EXPORT_SYMBOL_GPL vmlinux 0xc632588f get_user_pages_fast_only +EXPORT_SYMBOL_GPL vmlinux 0xc63a6a97 regulator_get_current_limit +EXPORT_SYMBOL_GPL vmlinux 0xc63b1e7f perf_event_sysfs_show +EXPORT_SYMBOL_GPL vmlinux 0xc6449aa0 cpts_unregister EXPORT_SYMBOL_GPL vmlinux 0xc645fcf3 __tracepoint_wbc_writepage -EXPORT_SYMBOL_GPL vmlinux 0xc654d3f1 tcp_is_ulp_esp -EXPORT_SYMBOL_GPL vmlinux 0xc66b4309 devlink_port_attrs_set +EXPORT_SYMBOL_GPL vmlinux 0xc6655945 dmaengine_desc_set_metadata_len EXPORT_SYMBOL_GPL vmlinux 0xc66b77b1 iommu_group_set_iommudata +EXPORT_SYMBOL_GPL vmlinux 0xc66c1244 ata_platform_remove_one +EXPORT_SYMBOL_GPL vmlinux 0xc66ec116 __irq_domain_alloc_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xc67170cf of_pm_clk_add_clk +EXPORT_SYMBOL_GPL vmlinux 0xc674a802 usb_role_switch_get +EXPORT_SYMBOL_GPL vmlinux 0xc674aab3 __blk_req_zone_write_unlock EXPORT_SYMBOL_GPL vmlinux 0xc6779093 ring_buffer_record_enable -EXPORT_SYMBOL_GPL vmlinux 0xc678596a usb_kill_urb +EXPORT_SYMBOL_GPL vmlinux 0xc678141b __class_create +EXPORT_SYMBOL_GPL vmlinux 0xc691fb45 regulator_bulk_set_supply_names EXPORT_SYMBOL_GPL vmlinux 0xc69b7ee5 zs_destroy_pool -EXPORT_SYMBOL_GPL vmlinux 0xc69ef6e0 kthread_flush_worker -EXPORT_SYMBOL_GPL vmlinux 0xc6a36ed8 devm_extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0xc69f986e ata_sff_port_ops EXPORT_SYMBOL_GPL vmlinux 0xc6a4a872 __clk_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0xc6aae258 serial8250_do_startup -EXPORT_SYMBOL_GPL vmlinux 0xc6ac72de inet6_csk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0xc6b3ac2a pci_destroy_slot -EXPORT_SYMBOL_GPL vmlinux 0xc6c4c7a8 dev_pm_opp_set_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0xc6a88c5c __sock_recv_timestamp +EXPORT_SYMBOL_GPL vmlinux 0xc6b90e78 of_pci_parse_bus_range +EXPORT_SYMBOL_GPL vmlinux 0xc6bf865f scsi_free_sgtables +EXPORT_SYMBOL_GPL vmlinux 0xc6c904db pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0xc6e0ab0c i2c_probe_func_quick_read EXPORT_SYMBOL_GPL vmlinux 0xc6e5bcf3 linear_range_get_selector_within EXPORT_SYMBOL_GPL vmlinux 0xc6e667f1 thread_notify_head -EXPORT_SYMBOL_GPL vmlinux 0xc6eb6ebc auxiliary_device_init EXPORT_SYMBOL_GPL vmlinux 0xc6eec8f5 clk_divider_ops -EXPORT_SYMBOL_GPL vmlinux 0xc6fffb15 ahci_port_resume -EXPORT_SYMBOL_GPL vmlinux 0xc702af38 blkcg_root_css -EXPORT_SYMBOL_GPL vmlinux 0xc70738b0 wwan_create_port -EXPORT_SYMBOL_GPL vmlinux 0xc7076c51 ata_timing_compute EXPORT_SYMBOL_GPL vmlinux 0xc71e64a9 snmp_get_cpu_field -EXPORT_SYMBOL_GPL vmlinux 0xc71f8a0d rt_mutex_trylock -EXPORT_SYMBOL_GPL vmlinux 0xc73103bd __page_mapcount -EXPORT_SYMBOL_GPL vmlinux 0xc73abbfc devlink_param_register -EXPORT_SYMBOL_GPL vmlinux 0xc74c443d regulator_get_linear_step -EXPORT_SYMBOL_GPL vmlinux 0xc75e054b snd_soc_add_card_controls -EXPORT_SYMBOL_GPL vmlinux 0xc75f06c0 ack_all_badblocks -EXPORT_SYMBOL_GPL vmlinux 0xc78973e8 shash_ahash_update -EXPORT_SYMBOL_GPL vmlinux 0xc78cb974 snd_soc_component_compr_set_metadata -EXPORT_SYMBOL_GPL vmlinux 0xc78d0ec6 cgroup_path_ns +EXPORT_SYMBOL_GPL vmlinux 0xc72a2c80 pinctrl_generic_get_group_count +EXPORT_SYMBOL_GPL vmlinux 0xc72c24fb perf_event_addr_filters_sync +EXPORT_SYMBOL_GPL vmlinux 0xc73e6705 __ndisc_fill_addr_option +EXPORT_SYMBOL_GPL vmlinux 0xc758d39a ata_sff_data_xfer +EXPORT_SYMBOL_GPL vmlinux 0xc765f880 snd_soc_card_jack_new +EXPORT_SYMBOL_GPL vmlinux 0xc77af921 ip_fib_metrics_init +EXPORT_SYMBOL_GPL vmlinux 0xc78ab7a7 irq_of_parse_and_map EXPORT_SYMBOL_GPL vmlinux 0xc79144f5 trace_seq_putmem_hex -EXPORT_SYMBOL_GPL vmlinux 0xc79e5ed6 device_rename +EXPORT_SYMBOL_GPL vmlinux 0xc79ae0a2 of_phy_put +EXPORT_SYMBOL_GPL vmlinux 0xc79c2f1d ahci_start_engine +EXPORT_SYMBOL_GPL vmlinux 0xc79c78b5 rtnl_delete_link EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch -EXPORT_SYMBOL_GPL vmlinux 0xc7a3875f mtd_ooblayout_get_databytes -EXPORT_SYMBOL_GPL vmlinux 0xc7a43720 pci_check_and_mask_intx -EXPORT_SYMBOL_GPL vmlinux 0xc7a44376 wm8350_device_init -EXPORT_SYMBOL_GPL vmlinux 0xc7a67fe9 sk_set_peek_off EXPORT_SYMBOL_GPL vmlinux 0xc7a7e770 clk_bulk_enable -EXPORT_SYMBOL_GPL vmlinux 0xc7a8df95 usb_hc_died -EXPORT_SYMBOL_GPL vmlinux 0xc7ac67d7 tegra_bpmp_mrq_is_supported -EXPORT_SYMBOL_GPL vmlinux 0xc7c4cdf2 phy_put -EXPORT_SYMBOL_GPL vmlinux 0xc7c89146 ata_port_schedule_eh -EXPORT_SYMBOL_GPL vmlinux 0xc7dcd432 hwspin_lock_get_id +EXPORT_SYMBOL_GPL vmlinux 0xc7a89fec of_platform_populate +EXPORT_SYMBOL_GPL vmlinux 0xc7ae97c7 extcon_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xc7b78395 regulator_register EXPORT_SYMBOL_GPL vmlinux 0xc7e64fc2 asn1_encode_integer +EXPORT_SYMBOL_GPL vmlinux 0xc7e6d3f4 gpiod_direction_output_raw EXPORT_SYMBOL_GPL vmlinux 0xc7e78b2e vbin_printf -EXPORT_SYMBOL_GPL vmlinux 0xc7efcbd7 devm_hwrng_register -EXPORT_SYMBOL_GPL vmlinux 0xc7f1fede wm831x_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0xc7eeadf2 ahci_platform_disable_phys +EXPORT_SYMBOL_GPL vmlinux 0xc7f63dc9 tcp_sendmsg_locked EXPORT_SYMBOL_GPL vmlinux 0xc7fa4aa9 kobj_ns_drop -EXPORT_SYMBOL_GPL vmlinux 0xc80f0a09 trace_output_call +EXPORT_SYMBOL_GPL vmlinux 0xc7fb0a6b bus_rescan_devices +EXPORT_SYMBOL_GPL vmlinux 0xc7fd9325 pinctrl_pm_select_idle_state +EXPORT_SYMBOL_GPL vmlinux 0xc7fe9474 devlink_port_params_register +EXPORT_SYMBOL_GPL vmlinux 0xc821df02 pci_epf_unbind EXPORT_SYMBOL_GPL vmlinux 0xc8269f94 snd_soc_params_to_frame_size EXPORT_SYMBOL_GPL vmlinux 0xc82b3a88 __SCK__tp_func_rpm_resume EXPORT_SYMBOL_GPL vmlinux 0xc82c721f klist_remove -EXPORT_SYMBOL_GPL vmlinux 0xc830adf0 lp8788_update_bits -EXPORT_SYMBOL_GPL vmlinux 0xc835ac44 genphy_c45_pma_read_abilities +EXPORT_SYMBOL_GPL vmlinux 0xc842dbb9 efivar_entry_find EXPORT_SYMBOL_GPL vmlinux 0xc848d8dc usb_ep_queue +EXPORT_SYMBOL_GPL vmlinux 0xc84f82b3 fwnode_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0xc8531153 dev_pm_opp_register_set_opp_helper EXPORT_SYMBOL_GPL vmlinux 0xc8594d3d reset_control_acquire +EXPORT_SYMBOL_GPL vmlinux 0xc864d7a8 crypto_stats_kpp_set_secret EXPORT_SYMBOL_GPL vmlinux 0xc8789b73 unix_table_lock -EXPORT_SYMBOL_GPL vmlinux 0xc879e983 crypto_spawn_tfm -EXPORT_SYMBOL_GPL vmlinux 0xc87bc860 ipv6_stub -EXPORT_SYMBOL_GPL vmlinux 0xc8838852 badblocks_store -EXPORT_SYMBOL_GPL vmlinux 0xc8873074 __sdhci_add_host -EXPORT_SYMBOL_GPL vmlinux 0xc89c1d4c sdio_readw -EXPORT_SYMBOL_GPL vmlinux 0xc8a26bf2 dev_pm_qos_remove_request -EXPORT_SYMBOL_GPL vmlinux 0xc8a559dd efivar_entry_set_get_size -EXPORT_SYMBOL_GPL vmlinux 0xc8a7b2af irq_domain_create_simple -EXPORT_SYMBOL_GPL vmlinux 0xc8c7465d d_walk -EXPORT_SYMBOL_GPL vmlinux 0xc8ca7f81 ahci_do_hardreset -EXPORT_SYMBOL_GPL vmlinux 0xc8dc4684 rio_request_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0xc87fb4db set_cpus_allowed_ptr +EXPORT_SYMBOL_GPL vmlinux 0xc881f2f4 device_match_of_node +EXPORT_SYMBOL_GPL vmlinux 0xc88425cb alloc_empty_file +EXPORT_SYMBOL_GPL vmlinux 0xc88cceb9 wait_on_page_writeback +EXPORT_SYMBOL_GPL vmlinux 0xc8932599 l3mdev_master_ifindex_rcu +EXPORT_SYMBOL_GPL vmlinux 0xc89bc30d dev_pm_opp_attach_genpd +EXPORT_SYMBOL_GPL vmlinux 0xc8a5aa3d snd_dmaengine_pcm_refine_runtime_hwparams +EXPORT_SYMBOL_GPL vmlinux 0xc8bdcda1 skb_gso_validate_network_len +EXPORT_SYMBOL_GPL vmlinux 0xc8d7dd9a da903x_update EXPORT_SYMBOL_GPL vmlinux 0xc8ddd5b5 kstrdup_quotable -EXPORT_SYMBOL_GPL vmlinux 0xc8e9cf76 scsi_nl_sock -EXPORT_SYMBOL_GPL vmlinux 0xc8fe1b40 xhci_dbg_trace -EXPORT_SYMBOL_GPL vmlinux 0xc9044c20 devlink_net -EXPORT_SYMBOL_GPL vmlinux 0xc907cc8e fwnode_get_named_gpiod +EXPORT_SYMBOL_GPL vmlinux 0xc8e44243 of_nvmem_cell_get +EXPORT_SYMBOL_GPL vmlinux 0xc8e61a90 usb_get_dev +EXPORT_SYMBOL_GPL vmlinux 0xc8ebdf00 wbc_account_cgroup_owner +EXPORT_SYMBOL_GPL vmlinux 0xc8ee9157 rio_mport_write_config_32 EXPORT_SYMBOL_GPL vmlinux 0xc9172aff pci_epc_get_next_free_bar -EXPORT_SYMBOL_GPL vmlinux 0xc92ed3f8 unregister_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0xc918ebf3 pci_epc_remove_epf +EXPORT_SYMBOL_GPL vmlinux 0xc91d5891 dev_pm_opp_disable +EXPORT_SYMBOL_GPL vmlinux 0xc92026e2 balloon_page_list_enqueue +EXPORT_SYMBOL_GPL vmlinux 0xc9240192 evm_inode_init_security +EXPORT_SYMBOL_GPL vmlinux 0xc935d5f8 musb_set_peripheral EXPORT_SYMBOL_GPL vmlinux 0xc93ee1e7 usb_phy_roothub_init -EXPORT_SYMBOL_GPL vmlinux 0xc9419080 icc_sync_state -EXPORT_SYMBOL_GPL vmlinux 0xc943ee31 usb_free_streams EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist +EXPORT_SYMBOL_GPL vmlinux 0xc968d301 regmap_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0xc96c25a5 dev_pm_opp_init_cpufreq_table EXPORT_SYMBOL_GPL vmlinux 0xc96fb674 nvmem_device_read -EXPORT_SYMBOL_GPL vmlinux 0xc9775aab mtd_read_fact_prot_reg +EXPORT_SYMBOL_GPL vmlinux 0xc9777776 crypto_stats_get EXPORT_SYMBOL_GPL vmlinux 0xc9825415 percpu_ref_is_zero EXPORT_SYMBOL_GPL vmlinux 0xc9827693 __bpf_call_base -EXPORT_SYMBOL_GPL vmlinux 0xc9895b48 gpiochip_irqchip_irq_valid -EXPORT_SYMBOL_GPL vmlinux 0xc98c1f99 device_set_wakeup_enable -EXPORT_SYMBOL_GPL vmlinux 0xc9944fdd cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0xc985479f __regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0xc99c86da tty_buffer_lock_exclusive EXPORT_SYMBOL_GPL vmlinux 0xc9a228ce property_entries_free +EXPORT_SYMBOL_GPL vmlinux 0xc9a740ea pci_platform_power_transition EXPORT_SYMBOL_GPL vmlinux 0xc9aa1203 hwrng_register -EXPORT_SYMBOL_GPL vmlinux 0xc9cdc7cd key_set_timeout +EXPORT_SYMBOL_GPL vmlinux 0xc9b9c62f udp_tunnel_nic_ops +EXPORT_SYMBOL_GPL vmlinux 0xc9c45519 stmpe_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xc9d53818 __rio_local_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0xc9dcdc1e metadata_dst_free_percpu +EXPORT_SYMBOL_GPL vmlinux 0xc9ddc824 lwtunnel_xmit EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu +EXPORT_SYMBOL_GPL vmlinux 0xc9f1e975 __bio_add_page EXPORT_SYMBOL_GPL vmlinux 0xc9fb00f7 pl320_ipc_transmit EXPORT_SYMBOL_GPL vmlinux 0xc9fd634a usb_role_switch_put -EXPORT_SYMBOL_GPL vmlinux 0xca06527b devm_init_badblocks -EXPORT_SYMBOL_GPL vmlinux 0xca06621c clk_hw_get_flags -EXPORT_SYMBOL_GPL vmlinux 0xca08bc17 gpiod_put_array -EXPORT_SYMBOL_GPL vmlinux 0xca0ebd60 dax_region_put -EXPORT_SYMBOL_GPL vmlinux 0xca190aa1 bpf_trace_run7 -EXPORT_SYMBOL_GPL vmlinux 0xca2862b3 badblocks_init -EXPORT_SYMBOL_GPL vmlinux 0xca293b3f serial8250_em485_stop_tx -EXPORT_SYMBOL_GPL vmlinux 0xca3a9145 led_trigger_set_default +EXPORT_SYMBOL_GPL vmlinux 0xca0ac395 security_file_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xca1283ee pinctrl_enable +EXPORT_SYMBOL_GPL vmlinux 0xca1c2609 sata_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xca2104db class_unregister EXPORT_SYMBOL_GPL vmlinux 0xca454a34 vt_get_leds EXPORT_SYMBOL_GPL vmlinux 0xca467318 hibernation_set_ops -EXPORT_SYMBOL_GPL vmlinux 0xca4873d8 security_file_permission -EXPORT_SYMBOL_GPL vmlinux 0xca4b5629 adp5520_read -EXPORT_SYMBOL_GPL vmlinux 0xca53957c sysfs_remove_link_from_group -EXPORT_SYMBOL_GPL vmlinux 0xca5c8740 ata_sff_wait_after_reset -EXPORT_SYMBOL_GPL vmlinux 0xca76978d blkg_conf_prep -EXPORT_SYMBOL_GPL vmlinux 0xca798a94 of_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0xca533fe3 xfrm_local_error +EXPORT_SYMBOL_GPL vmlinux 0xca598181 dm_internal_suspend_fast +EXPORT_SYMBOL_GPL vmlinux 0xca5ff174 handle_fasteoi_nmi +EXPORT_SYMBOL_GPL vmlinux 0xca6d3e6e xfrm_dev_resume EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop -EXPORT_SYMBOL_GPL vmlinux 0xca822143 device_driver_attach -EXPORT_SYMBOL_GPL vmlinux 0xca828c55 disk_update_readahead -EXPORT_SYMBOL_GPL vmlinux 0xca8314df nand_get_large_page_ooblayout -EXPORT_SYMBOL_GPL vmlinux 0xca83c5e1 clk_register_fractional_divider -EXPORT_SYMBOL_GPL vmlinux 0xca873801 snd_soc_resume -EXPORT_SYMBOL_GPL vmlinux 0xca8837c8 regmap_can_raw_write -EXPORT_SYMBOL_GPL vmlinux 0xca8f2784 virtqueue_notify -EXPORT_SYMBOL_GPL vmlinux 0xca91961c sysfs_create_files -EXPORT_SYMBOL_GPL vmlinux 0xca975e14 addrconf_add_linklocal +EXPORT_SYMBOL_GPL vmlinux 0xca9928a2 devm_usb_get_phy_by_phandle EXPORT_SYMBOL_GPL vmlinux 0xca9a1d5e ring_buffer_free -EXPORT_SYMBOL_GPL vmlinux 0xcaaa1170 pci_epc_get_features -EXPORT_SYMBOL_GPL vmlinux 0xcabb757c powercap_register_zone +EXPORT_SYMBOL_GPL vmlinux 0xca9a7168 devlink_param_unregister +EXPORT_SYMBOL_GPL vmlinux 0xca9ad267 ata_sas_port_suspend +EXPORT_SYMBOL_GPL vmlinux 0xca9ad9f6 blk_poll +EXPORT_SYMBOL_GPL vmlinux 0xcab663e3 __fib_lookup EXPORT_SYMBOL_GPL vmlinux 0xcabe04de cpuidle_resume_and_unlock EXPORT_SYMBOL_GPL vmlinux 0xcabe1206 list_lru_destroy -EXPORT_SYMBOL_GPL vmlinux 0xcabfa7f6 rio_set_port_lockout -EXPORT_SYMBOL_GPL vmlinux 0xcac010c0 pcie_aspm_capable +EXPORT_SYMBOL_GPL vmlinux 0xcacbee44 md_bitmap_load EXPORT_SYMBOL_GPL vmlinux 0xcacbf893 kset_create_and_add -EXPORT_SYMBOL_GPL vmlinux 0xcacffbf1 sysfs_add_link_to_group -EXPORT_SYMBOL_GPL vmlinux 0xcad13bd5 umd_cleanup_helper -EXPORT_SYMBOL_GPL vmlinux 0xcae014b1 serial8250_rpm_get_tx -EXPORT_SYMBOL_GPL vmlinux 0xcaeca215 fs_kobj +EXPORT_SYMBOL_GPL vmlinux 0xcace6318 pci_sriov_set_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0xcad882ea __vfs_removexattr_locked EXPORT_SYMBOL_GPL vmlinux 0xcaecc540 kmsg_dump_get_line -EXPORT_SYMBOL_GPL vmlinux 0xcb06affd perf_aux_output_begin -EXPORT_SYMBOL_GPL vmlinux 0xcb13bd3f __devm_regmap_init +EXPORT_SYMBOL_GPL vmlinux 0xcaf781f4 netdev_set_default_ethtool_ops +EXPORT_SYMBOL_GPL vmlinux 0xcb04c131 xfrm_audit_state_notfound_simple +EXPORT_SYMBOL_GPL vmlinux 0xcb0af8be devm_gpiod_get_from_of_node EXPORT_SYMBOL_GPL vmlinux 0xcb15eee9 sdhci_pci_get_data -EXPORT_SYMBOL_GPL vmlinux 0xcb1cc3f3 pci_user_read_config_word -EXPORT_SYMBOL_GPL vmlinux 0xcb2332e8 ata_pci_bmdma_clear_simplex +EXPORT_SYMBOL_GPL vmlinux 0xcb27fac8 extcon_set_property EXPORT_SYMBOL_GPL vmlinux 0xcb2bfe2b nvmem_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xcb3dc476 rio_alloc_net -EXPORT_SYMBOL_GPL vmlinux 0xcb3ea779 regulator_get_optional -EXPORT_SYMBOL_GPL vmlinux 0xcb3f4851 usb_remove_hcd -EXPORT_SYMBOL_GPL vmlinux 0xcb42104f ping_seq_next -EXPORT_SYMBOL_GPL vmlinux 0xcb516e05 sdhci_dumpregs +EXPORT_SYMBOL_GPL vmlinux 0xcb36cd67 wm8350_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0xcb4cbeac crypto_unregister_akcipher EXPORT_SYMBOL_GPL vmlinux 0xcb561441 mem_dump_obj -EXPORT_SYMBOL_GPL vmlinux 0xcb5ada66 ahci_platform_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xcb69e2c6 gpiod_get_raw_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xcb6b3d09 __percpu_init_rwsem -EXPORT_SYMBOL_GPL vmlinux 0xcb6c8e3c perf_get_aux -EXPORT_SYMBOL_GPL vmlinux 0xcb6e18d6 genpd_dev_pm_attach -EXPORT_SYMBOL_GPL vmlinux 0xcb73556f usb_gadget_probe_driver -EXPORT_SYMBOL_GPL vmlinux 0xcb79a063 regulator_bulk_enable -EXPORT_SYMBOL_GPL vmlinux 0xcb7ec790 dst_cache_get -EXPORT_SYMBOL_GPL vmlinux 0xcb8528c0 i2c_slave_unregister -EXPORT_SYMBOL_GPL vmlinux 0xcb8b1c50 blk_mq_debugfs_rq_show -EXPORT_SYMBOL_GPL vmlinux 0xcb8d479c gpiod_unexport -EXPORT_SYMBOL_GPL vmlinux 0xcb92d89e meson_pmx_get_funcs_count -EXPORT_SYMBOL_GPL vmlinux 0xcba0d3c3 shmem_file_setup -EXPORT_SYMBOL_GPL vmlinux 0xcbcce4f1 devlink_params_register -EXPORT_SYMBOL_GPL vmlinux 0xcbdb2fac ip_local_out +EXPORT_SYMBOL_GPL vmlinux 0xcb67f758 mctrl_gpio_free +EXPORT_SYMBOL_GPL vmlinux 0xcb70285a of_prop_next_string +EXPORT_SYMBOL_GPL vmlinux 0xcb7bfa04 meson_a1_parse_dt_extra +EXPORT_SYMBOL_GPL vmlinux 0xcb865372 gpiod_get_from_of_node +EXPORT_SYMBOL_GPL vmlinux 0xcba69084 ata_cable_unknown +EXPORT_SYMBOL_GPL vmlinux 0xcba84278 fwnode_device_is_available +EXPORT_SYMBOL_GPL vmlinux 0xcbab12e8 ahci_check_ready +EXPORT_SYMBOL_GPL vmlinux 0xcbb5395f dev_pm_opp_find_level_exact +EXPORT_SYMBOL_GPL vmlinux 0xcbc72cb8 of_mpc8xxx_spi_probe +EXPORT_SYMBOL_GPL vmlinux 0xcbcb08b0 sm501_set_clock +EXPORT_SYMBOL_GPL vmlinux 0xcbda7b5b stmpe_set_altfunc EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages -EXPORT_SYMBOL_GPL vmlinux 0xcbee4cb7 ata_sff_dma_pause EXPORT_SYMBOL_GPL vmlinux 0xcbf3617f rhashtable_walk_start_check -EXPORT_SYMBOL_GPL vmlinux 0xcc061a52 tcp_reno_ssthresh -EXPORT_SYMBOL_GPL vmlinux 0xcc081fa3 edac_pci_handle_pe -EXPORT_SYMBOL_GPL vmlinux 0xcc09cebc __traceiter_io_page_fault -EXPORT_SYMBOL_GPL vmlinux 0xcc0c1dbc debugfs_file_get +EXPORT_SYMBOL_GPL vmlinux 0xcbfa85db snd_soc_find_dai_with_mutex +EXPORT_SYMBOL_GPL vmlinux 0xcc026217 spi_mem_dirmap_read +EXPORT_SYMBOL_GPL vmlinux 0xcc0a9d70 regmap_irq_get_domain +EXPORT_SYMBOL_GPL vmlinux 0xcc147d07 device_create_managed_software_node +EXPORT_SYMBOL_GPL vmlinux 0xcc16a4d7 devres_find +EXPORT_SYMBOL_GPL vmlinux 0xcc24b9e9 irq_domain_push_irq EXPORT_SYMBOL_GPL vmlinux 0xcc2dbfd8 irq_domain_check_msi_remap +EXPORT_SYMBOL_GPL vmlinux 0xcc2e909f ata_pci_device_suspend +EXPORT_SYMBOL_GPL vmlinux 0xcc3007c2 fwnode_remove_software_node EXPORT_SYMBOL_GPL vmlinux 0xcc312197 clk_mux_ops -EXPORT_SYMBOL_GPL vmlinux 0xcc367a76 gpiod_set_consumer_name +EXPORT_SYMBOL_GPL vmlinux 0xcc327468 scsi_dh_attach +EXPORT_SYMBOL_GPL vmlinux 0xcc33b70f __pm_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0xcc373d5f ata_common_sdev_attrs EXPORT_SYMBOL_GPL vmlinux 0xcc39c03e nvmem_unregister -EXPORT_SYMBOL_GPL vmlinux 0xcc3ad597 spi_finalize_current_transfer EXPORT_SYMBOL_GPL vmlinux 0xcc421600 __tracepoint_rpm_suspend -EXPORT_SYMBOL_GPL vmlinux 0xcc4e6900 iomap_writepages -EXPORT_SYMBOL_GPL vmlinux 0xcc61c252 xdp_do_redirect -EXPORT_SYMBOL_GPL vmlinux 0xcc6b5738 usb_unlink_urb -EXPORT_SYMBOL_GPL vmlinux 0xcc6f4380 unregister_pernet_device -EXPORT_SYMBOL_GPL vmlinux 0xcc76982d pci_epf_create -EXPORT_SYMBOL_GPL vmlinux 0xcc7c92a6 __kthread_init_worker -EXPORT_SYMBOL_GPL vmlinux 0xcc7e4fe8 alloc_empty_file +EXPORT_SYMBOL_GPL vmlinux 0xcc5eea7f perf_get_aux +EXPORT_SYMBOL_GPL vmlinux 0xcc7c1092 l3mdev_ifindex_lookup_by_table_id +EXPORT_SYMBOL_GPL vmlinux 0xcc7caacd sock_diag_register +EXPORT_SYMBOL_GPL vmlinux 0xcc82f249 dma_buf_mmap EXPORT_SYMBOL_GPL vmlinux 0xcc95ef9c misc_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xcc97f368 get_net_ns -EXPORT_SYMBOL_GPL vmlinux 0xcc9b711d rio_route_add_entry -EXPORT_SYMBOL_GPL vmlinux 0xcc9ca39d __sock_recv_ts_and_drops -EXPORT_SYMBOL_GPL vmlinux 0xcc9d0bfd __spi_register_driver -EXPORT_SYMBOL_GPL vmlinux 0xcca456b5 ata_sff_irq_on -EXPORT_SYMBOL_GPL vmlinux 0xccaa5423 fsverity_verify_page +EXPORT_SYMBOL_GPL vmlinux 0xcc9c1138 report_iommu_fault +EXPORT_SYMBOL_GPL vmlinux 0xcca3df8c netlink_add_tap +EXPORT_SYMBOL_GPL vmlinux 0xcca7e2e7 led_trigger_blink_oneshot +EXPORT_SYMBOL_GPL vmlinux 0xccb222ce devlink_trap_groups_register +EXPORT_SYMBOL_GPL vmlinux 0xccb9fac2 pci_find_next_capability +EXPORT_SYMBOL_GPL vmlinux 0xccc1943f rio_mport_class EXPORT_SYMBOL_GPL vmlinux 0xcccfb2fa sata_deb_timing_hotplug -EXPORT_SYMBOL_GPL vmlinux 0xccd558c1 devlink_port_params_unregister EXPORT_SYMBOL_GPL vmlinux 0xccd86806 ata_id_string -EXPORT_SYMBOL_GPL vmlinux 0xcce2a87e devlink_traps_register -EXPORT_SYMBOL_GPL vmlinux 0xcce5cf0f fsnotify_find_mark -EXPORT_SYMBOL_GPL vmlinux 0xccf050a8 find_vpid +EXPORT_SYMBOL_GPL vmlinux 0xcce8e09d __udp_gso_segment +EXPORT_SYMBOL_GPL vmlinux 0xccf40fb6 usb_enable_ltm EXPORT_SYMBOL_GPL vmlinux 0xccf52bc9 sfp_upstream_start -EXPORT_SYMBOL_GPL vmlinux 0xcd190fb3 peernet2id_alloc -EXPORT_SYMBOL_GPL vmlinux 0xcd1bd369 snd_soc_component_nc_pin_unlocked -EXPORT_SYMBOL_GPL vmlinux 0xcd20ac9d crypto_stats_ahash_final -EXPORT_SYMBOL_GPL vmlinux 0xcd24658c irq_domain_free_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xcd039f4d fsnotify_alloc_group +EXPORT_SYMBOL_GPL vmlinux 0xcd058f33 tpm_tis_remove +EXPORT_SYMBOL_GPL vmlinux 0xcd1256c5 watchdog_notify_pretimeout EXPORT_SYMBOL_GPL vmlinux 0xcd24e146 hash_digest_size -EXPORT_SYMBOL_GPL vmlinux 0xcd42b55d fuse_abort_conn -EXPORT_SYMBOL_GPL vmlinux 0xcd42c895 usb_get_from_anchor +EXPORT_SYMBOL_GPL vmlinux 0xcd263d09 bus_find_device +EXPORT_SYMBOL_GPL vmlinux 0xcd283c40 snd_soc_component_force_enable_pin +EXPORT_SYMBOL_GPL vmlinux 0xcd2bedbf led_classdev_register_ext +EXPORT_SYMBOL_GPL vmlinux 0xcd47412b dev_pm_qos_expose_flags EXPORT_SYMBOL_GPL vmlinux 0xcd4badf9 __srcu_read_lock -EXPORT_SYMBOL_GPL vmlinux 0xcd56a321 inet_ehash_nolisten +EXPORT_SYMBOL_GPL vmlinux 0xcd4da01c devlink_sb_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcd64c202 irq_domain_add_legacy +EXPORT_SYMBOL_GPL vmlinux 0xcd6e1cc5 vring_new_virtqueue EXPORT_SYMBOL_GPL vmlinux 0xcd6f2dc9 nf_log_buf_add -EXPORT_SYMBOL_GPL vmlinux 0xcd83aca5 encrypt_blob -EXPORT_SYMBOL_GPL vmlinux 0xcd863f5e rio_dma_prep_xfer +EXPORT_SYMBOL_GPL vmlinux 0xcd8027bd sdio_readl +EXPORT_SYMBOL_GPL vmlinux 0xcd835c16 ipv6_proxy_select_ident EXPORT_SYMBOL_GPL vmlinux 0xcd91b127 system_highpri_wq -EXPORT_SYMBOL_GPL vmlinux 0xcd9256d9 usb_gadget_map_request EXPORT_SYMBOL_GPL vmlinux 0xcd974f00 rcu_all_qs EXPORT_SYMBOL_GPL vmlinux 0xcd9cd2ff wakeme_after_rcu -EXPORT_SYMBOL_GPL vmlinux 0xcda6aa6d serial8250_do_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xcd9db18d balloon_aops +EXPORT_SYMBOL_GPL vmlinux 0xcdaba1a9 md_run EXPORT_SYMBOL_GPL vmlinux 0xcdb6adcc ras_userspace_consumers -EXPORT_SYMBOL_GPL vmlinux 0xcdb8465b unregister_pernet_subsys -EXPORT_SYMBOL_GPL vmlinux 0xcdbdd7c2 regmap_get_max_register EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs -EXPORT_SYMBOL_GPL vmlinux 0xcddf748d usb_of_has_combined_node -EXPORT_SYMBOL_GPL vmlinux 0xcdfa66e2 iomap_readahead -EXPORT_SYMBOL_GPL vmlinux 0xce153104 posix_acl_default_xattr_handler -EXPORT_SYMBOL_GPL vmlinux 0xce15cb35 sched_set_fifo_low -EXPORT_SYMBOL_GPL vmlinux 0xce26d60e devlink_param_driverinit_value_get -EXPORT_SYMBOL_GPL vmlinux 0xce270d3e dev_get_tstats64 -EXPORT_SYMBOL_GPL vmlinux 0xce271606 dev_pm_domain_attach_by_id -EXPORT_SYMBOL_GPL vmlinux 0xce289620 blk_mq_freeze_queue_wait -EXPORT_SYMBOL_GPL vmlinux 0xce5c5649 da903x_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xce60c571 icc_set_bw -EXPORT_SYMBOL_GPL vmlinux 0xce664845 tty_ldisc_receive_buf +EXPORT_SYMBOL_GPL vmlinux 0xcdcb1efc udp4_hwcsum +EXPORT_SYMBOL_GPL vmlinux 0xcddc241c phy_driver_is_genphy_10g +EXPORT_SYMBOL_GPL vmlinux 0xcde46d0d ipv6_opt_accepted +EXPORT_SYMBOL_GPL vmlinux 0xcdef7cba iomap_bmap +EXPORT_SYMBOL_GPL vmlinux 0xcdf3fe15 mbox_send_message +EXPORT_SYMBOL_GPL vmlinux 0xcdfd0629 devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0xce109561 sysfs_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xce288066 dev_pm_opp_get_suspend_opp_freq +EXPORT_SYMBOL_GPL vmlinux 0xce2b13f0 dev_pm_opp_adjust_voltage +EXPORT_SYMBOL_GPL vmlinux 0xce3c389f fuse_dev_operations +EXPORT_SYMBOL_GPL vmlinux 0xce41c6a7 gpiod_get_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xce452eb4 snd_ac97_reset +EXPORT_SYMBOL_GPL vmlinux 0xce6a39e8 regulator_set_soft_start_regmap EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching -EXPORT_SYMBOL_GPL vmlinux 0xce73ad96 led_trigger_event -EXPORT_SYMBOL_GPL vmlinux 0xce90a6d2 ip6_route_output_flags_noref -EXPORT_SYMBOL_GPL vmlinux 0xcea09bbc mtd_write -EXPORT_SYMBOL_GPL vmlinux 0xcea137c3 of_irq_get_byname -EXPORT_SYMBOL_GPL vmlinux 0xceadef4e pci_epc_write_header -EXPORT_SYMBOL_GPL vmlinux 0xcebdd332 __traceiter_br_fdb_external_learn_add -EXPORT_SYMBOL_GPL vmlinux 0xcec4b27a dst_blackhole_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0xced57469 sdio_f0_readb -EXPORT_SYMBOL_GPL vmlinux 0xceddbb96 of_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0xce83500c clockevents_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0xce8adbc9 pinmux_generic_get_function_groups +EXPORT_SYMBOL_GPL vmlinux 0xcea41afd devlink_trap_groups_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcea98dd2 rio_mport_initialize +EXPORT_SYMBOL_GPL vmlinux 0xcead13a5 regmap_check_range_table +EXPORT_SYMBOL_GPL vmlinux 0xceb0d397 syscon_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0xcebb6eab sdhci_end_tuning EXPORT_SYMBOL_GPL vmlinux 0xcee1641c kgdb_unregister_nmi_console -EXPORT_SYMBOL_GPL vmlinux 0xcee44bc0 rtc_alarm_irq_enable EXPORT_SYMBOL_GPL vmlinux 0xcee88e7a of_overlay_fdt_apply EXPORT_SYMBOL_GPL vmlinux 0xcef4d5b4 __alloc_percpu_gfp -EXPORT_SYMBOL_GPL vmlinux 0xcefba76d __netpoll_setup -EXPORT_SYMBOL_GPL vmlinux 0xcf010f9f wm8350_gpio_config -EXPORT_SYMBOL_GPL vmlinux 0xcf085e4e device_create_bin_file -EXPORT_SYMBOL_GPL vmlinux 0xcf25d346 dev_pm_opp_of_add_table_noclk +EXPORT_SYMBOL_GPL vmlinux 0xcefdbaf8 rio_mport_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0xcf0b3802 nand_reset EXPORT_SYMBOL_GPL vmlinux 0xcf28f55e trace_clock_global -EXPORT_SYMBOL_GPL vmlinux 0xcf3d7b75 snd_soc_dpcm_can_be_params -EXPORT_SYMBOL_GPL vmlinux 0xcf441db0 bpf_offload_dev_create -EXPORT_SYMBOL_GPL vmlinux 0xcf56469e trace_array_put -EXPORT_SYMBOL_GPL vmlinux 0xcf644f0f crypto_destroy_tfm -EXPORT_SYMBOL_GPL vmlinux 0xcf790ccb sata_lpm_ignore_phy_events +EXPORT_SYMBOL_GPL vmlinux 0xcf2c1776 inet_csk_reqsk_queue_hash_add +EXPORT_SYMBOL_GPL vmlinux 0xcf377ca4 xdp_rxq_info_unused +EXPORT_SYMBOL_GPL vmlinux 0xcf446503 crypto_alloc_rng +EXPORT_SYMBOL_GPL vmlinux 0xcf44d87c vp_modern_get_status +EXPORT_SYMBOL_GPL vmlinux 0xcf675def pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0xcf6c3545 hwspin_lock_request_specific +EXPORT_SYMBOL_GPL vmlinux 0xcf790042 debugfs_attr_write +EXPORT_SYMBOL_GPL vmlinux 0xcf7eeb9a nand_ecc_tweak_req EXPORT_SYMBOL_GPL vmlinux 0xcf7f66f9 imx_dev_clk_hw_pll14xx -EXPORT_SYMBOL_GPL vmlinux 0xcf86620b disk_force_media_change -EXPORT_SYMBOL_GPL vmlinux 0xcf8ecf0e iommu_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xcf92a35a __netpoll_cleanup -EXPORT_SYMBOL_GPL vmlinux 0xcf982bec xhci_drop_endpoint -EXPORT_SYMBOL_GPL vmlinux 0xcf9837ab spi_register_controller -EXPORT_SYMBOL_GPL vmlinux 0xcf9acf18 musb_set_peripheral -EXPORT_SYMBOL_GPL vmlinux 0xcfa1c0c7 __fscrypt_encrypt_symlink -EXPORT_SYMBOL_GPL vmlinux 0xcfa78ff9 pci_msi_mask_irq -EXPORT_SYMBOL_GPL vmlinux 0xcfb411b7 nf_queue_entry_get_refs -EXPORT_SYMBOL_GPL vmlinux 0xcfc132c2 sdhci_enable_clk +EXPORT_SYMBOL_GPL vmlinux 0xcf8fae22 lwtunnel_encap_del_ops +EXPORT_SYMBOL_GPL vmlinux 0xcf91c8af find_extend_vma +EXPORT_SYMBOL_GPL vmlinux 0xcfa78a0b serdev_device_write_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xcfa9000c cpufreq_dbs_governor_start +EXPORT_SYMBOL_GPL vmlinux 0xcfb9721c ata_host_put +EXPORT_SYMBOL_GPL vmlinux 0xcfbb7963 gpiochip_populate_parent_fwspec_fourcell EXPORT_SYMBOL_GPL vmlinux 0xcfc5108a devlink_fmsg_u8_pair_put EXPORT_SYMBOL_GPL vmlinux 0xcfc7b4e4 rcu_barrier_tasks_trace -EXPORT_SYMBOL_GPL vmlinux 0xcfcb8102 blk_clear_pm_only -EXPORT_SYMBOL_GPL vmlinux 0xcfcfac62 __ata_change_queue_depth -EXPORT_SYMBOL_GPL vmlinux 0xcfd7250f dm_disk -EXPORT_SYMBOL_GPL vmlinux 0xcfddfe95 tty_port_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0xcfe5be9a tcp_ca_get_key_by_name -EXPORT_SYMBOL_GPL vmlinux 0xcfef5229 devm_release_action -EXPORT_SYMBOL_GPL vmlinux 0xd007a032 of_icc_get -EXPORT_SYMBOL_GPL vmlinux 0xd025f9c7 fat_sync_inode -EXPORT_SYMBOL_GPL vmlinux 0xd031ded3 sata_pmp_port_ops -EXPORT_SYMBOL_GPL vmlinux 0xd03216c1 skb_zerocopy_iter_stream -EXPORT_SYMBOL_GPL vmlinux 0xd03c8f5f dma_buf_begin_cpu_access +EXPORT_SYMBOL_GPL vmlinux 0xcfced12d devm_phy_get +EXPORT_SYMBOL_GPL vmlinux 0xcfdcbe06 crypto_hash_walk_done +EXPORT_SYMBOL_GPL vmlinux 0xcfe1a8fd snd_soc_dai_compr_pointer +EXPORT_SYMBOL_GPL vmlinux 0xd03b6384 ahash_register_instance EXPORT_SYMBOL_GPL vmlinux 0xd03eaf4c schedule_hrtimeout_range -EXPORT_SYMBOL_GPL vmlinux 0xd049644a device_find_child_by_name EXPORT_SYMBOL_GPL vmlinux 0xd04aedfd __SCK__tp_func_arm_event -EXPORT_SYMBOL_GPL vmlinux 0xd052c4cb scsi_dh_set_params +EXPORT_SYMBOL_GPL vmlinux 0xd06318e6 tracing_cond_snapshot_data EXPORT_SYMBOL_GPL vmlinux 0xd06524ba raw_notifier_chain_unregister EXPORT_SYMBOL_GPL vmlinux 0xd067d3c5 system_freezable_power_efficient_wq -EXPORT_SYMBOL_GPL vmlinux 0xd0929681 device_match_name -EXPORT_SYMBOL_GPL vmlinux 0xd09351a9 usb_gadget_set_selfpowered -EXPORT_SYMBOL_GPL vmlinux 0xd0a8e9e5 efivars_kobject -EXPORT_SYMBOL_GPL vmlinux 0xd0b3bec2 scsi_unregister_device_handler +EXPORT_SYMBOL_GPL vmlinux 0xd08ea1b0 mptcp_get_reset_option +EXPORT_SYMBOL_GPL vmlinux 0xd091fcc3 serdev_device_write +EXPORT_SYMBOL_GPL vmlinux 0xd0a2fc76 seg6_do_srh_encap EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart -EXPORT_SYMBOL_GPL vmlinux 0xd0d1afb1 pwm_set_chip_data -EXPORT_SYMBOL_GPL vmlinux 0xd0daeb2a gpiod_set_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xd0cadd0b of_icc_get_from_provider +EXPORT_SYMBOL_GPL vmlinux 0xd0cf0371 fscrypt_ioctl_get_nonce +EXPORT_SYMBOL_GPL vmlinux 0xd0daa13b __lock_page_killable EXPORT_SYMBOL_GPL vmlinux 0xd0db0f12 run_dax -EXPORT_SYMBOL_GPL vmlinux 0xd0ddddf7 dev_pm_genpd_remove_notifier -EXPORT_SYMBOL_GPL vmlinux 0xd0e1af34 set_secondary_fwnode -EXPORT_SYMBOL_GPL vmlinux 0xd0e5d5e0 fscrypt_prepare_new_inode EXPORT_SYMBOL_GPL vmlinux 0xd0fb9c41 smp_call_function_single_async -EXPORT_SYMBOL_GPL vmlinux 0xd1049b7e ata_sff_freeze -EXPORT_SYMBOL_GPL vmlinux 0xd10b715e iommu_device_sysfs_remove EXPORT_SYMBOL_GPL vmlinux 0xd12159a7 stack_trace_snprint +EXPORT_SYMBOL_GPL vmlinux 0xd12424c2 blk_queue_can_use_dma_map_merging +EXPORT_SYMBOL_GPL vmlinux 0xd135ea17 scsi_autopm_get_device +EXPORT_SYMBOL_GPL vmlinux 0xd136c4a7 mbox_request_channel +EXPORT_SYMBOL_GPL vmlinux 0xd13dd942 md_find_rdev_nr_rcu +EXPORT_SYMBOL_GPL vmlinux 0xd13f4407 device_find_child EXPORT_SYMBOL_GPL vmlinux 0xd1481de7 mpi_clear -EXPORT_SYMBOL_GPL vmlinux 0xd149cde4 of_get_regulator_init_data -EXPORT_SYMBOL_GPL vmlinux 0xd15227f3 blk_mq_unfreeze_queue -EXPORT_SYMBOL_GPL vmlinux 0xd15844f9 devfreq_event_get_edev_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0xd15e749e devlink_dpipe_match_put -EXPORT_SYMBOL_GPL vmlinux 0xd16cb60d of_property_read_variable_u8_array -EXPORT_SYMBOL_GPL vmlinux 0xd17bdb1f of_get_required_opp_performance_state +EXPORT_SYMBOL_GPL vmlinux 0xd14befb3 of_icc_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0xd15b8044 spi_alloc_device EXPORT_SYMBOL_GPL vmlinux 0xd17d2a22 phy_basic_features -EXPORT_SYMBOL_GPL vmlinux 0xd1943eb7 xfrm_audit_state_icvfail -EXPORT_SYMBOL_GPL vmlinux 0xd1a39a5d vfs_fallocate +EXPORT_SYMBOL_GPL vmlinux 0xd18236e5 debugfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0xd186d815 driver_attach +EXPORT_SYMBOL_GPL vmlinux 0xd18734d7 kill_mtd_super EXPORT_SYMBOL_GPL vmlinux 0xd1a9ca15 __SCK__tp_func_neigh_update -EXPORT_SYMBOL_GPL vmlinux 0xd1b06d4d ata_host_start EXPORT_SYMBOL_GPL vmlinux 0xd1c2e26c __tracepoint_arm_event -EXPORT_SYMBOL_GPL vmlinux 0xd1c63a9b invalidate_inode_pages2 EXPORT_SYMBOL_GPL vmlinux 0xd1cbc23c add_timer_on -EXPORT_SYMBOL_GPL vmlinux 0xd1cdc450 rio_unmap_inb_region -EXPORT_SYMBOL_GPL vmlinux 0xd1f0e7d7 disk_uevent +EXPORT_SYMBOL_GPL vmlinux 0xd1cf1b0f devlink_port_health_reporter_create +EXPORT_SYMBOL_GPL vmlinux 0xd1dc4402 clk_hw_is_enabled EXPORT_SYMBOL_GPL vmlinux 0xd1f2eee2 nf_logger_find_get -EXPORT_SYMBOL_GPL vmlinux 0xd1f44456 relay_reset -EXPORT_SYMBOL_GPL vmlinux 0xd1fbebef mctrl_gpio_init_noauto -EXPORT_SYMBOL_GPL vmlinux 0xd1fc0d77 gpiod_export -EXPORT_SYMBOL_GPL vmlinux 0xd1fd42f9 devm_pci_epc_destroy -EXPORT_SYMBOL_GPL vmlinux 0xd2089aae dapm_kcontrol_get_value EXPORT_SYMBOL_GPL vmlinux 0xd217e9e6 trace_set_clr_event -EXPORT_SYMBOL_GPL vmlinux 0xd21b3e8a vfs_lock_file EXPORT_SYMBOL_GPL vmlinux 0xd21b61bd async_schedule_node_domain EXPORT_SYMBOL_GPL vmlinux 0xd21f1d35 __SCK__tp_func_tcp_send_reset -EXPORT_SYMBOL_GPL vmlinux 0xd22a64da __rio_local_write_config_32 -EXPORT_SYMBOL_GPL vmlinux 0xd2321015 __traceiter_sched_update_nr_running_tp -EXPORT_SYMBOL_GPL vmlinux 0xd24229c6 sdio_retune_crc_enable -EXPORT_SYMBOL_GPL vmlinux 0xd24668ac i2c_generic_scl_recovery -EXPORT_SYMBOL_GPL vmlinux 0xd24a1790 rio_request_inb_mbox -EXPORT_SYMBOL_GPL vmlinux 0xd2568e1f n_tty_inherit_ops -EXPORT_SYMBOL_GPL vmlinux 0xd25b8750 nf_queue_nf_hook_drop +EXPORT_SYMBOL_GPL vmlinux 0xd2263744 umd_load_blob +EXPORT_SYMBOL_GPL vmlinux 0xd22f969f of_irq_to_resource_table +EXPORT_SYMBOL_GPL vmlinux 0xd236ae29 blk_req_zone_write_trylock +EXPORT_SYMBOL_GPL vmlinux 0xd23a545c unmap_mapping_pages +EXPORT_SYMBOL_GPL vmlinux 0xd23dcbc1 regcache_cache_bypass +EXPORT_SYMBOL_GPL vmlinux 0xd245d8f8 __trace_note_message +EXPORT_SYMBOL_GPL vmlinux 0xd24844af crypto_shash_finup +EXPORT_SYMBOL_GPL vmlinux 0xd25e666f mtd_ooblayout_find_eccregion EXPORT_SYMBOL_GPL vmlinux 0xd260af0d ring_buffer_write -EXPORT_SYMBOL_GPL vmlinux 0xd26de836 usb_gadget_clear_selfpowered -EXPORT_SYMBOL_GPL vmlinux 0xd2705a20 ata_pci_remove_one +EXPORT_SYMBOL_GPL vmlinux 0xd26ff232 pinctrl_pm_select_sleep_state EXPORT_SYMBOL_GPL vmlinux 0xd270e977 pci_bridge_emul_conf_write -EXPORT_SYMBOL_GPL vmlinux 0xd2719963 blk_queue_max_zone_append_sectors +EXPORT_SYMBOL_GPL vmlinux 0xd271d127 tpm_is_tpm2 +EXPORT_SYMBOL_GPL vmlinux 0xd27236db i2c_parse_fw_timings EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative -EXPORT_SYMBOL_GPL vmlinux 0xd27a9aa0 of_dma_configure_id -EXPORT_SYMBOL_GPL vmlinux 0xd29bfc91 ahci_stop_engine -EXPORT_SYMBOL_GPL vmlinux 0xd2a26b15 lwtunnel_get_encap_size -EXPORT_SYMBOL_GPL vmlinux 0xd2a8eb25 virtqueue_add_sgs +EXPORT_SYMBOL_GPL vmlinux 0xd290b5e4 ata_eh_analyze_ncq_error +EXPORT_SYMBOL_GPL vmlinux 0xd2a9eea2 serial8250_read_char EXPORT_SYMBOL_GPL vmlinux 0xd2b10a05 ata_timing_find_mode -EXPORT_SYMBOL_GPL vmlinux 0xd2b46f31 devlink_trap_groups_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd2c64acb crypto_stats_rng_generate -EXPORT_SYMBOL_GPL vmlinux 0xd2d0dce2 usb_control_msg_recv -EXPORT_SYMBOL_GPL vmlinux 0xd2d2e75c rio_mport_read_config_8 -EXPORT_SYMBOL_GPL vmlinux 0xd2d74537 snd_soc_dai_compr_get_metadata -EXPORT_SYMBOL_GPL vmlinux 0xd2fd6029 power_supply_set_property +EXPORT_SYMBOL_GPL vmlinux 0xd2bc27ae devm_platform_get_irqs_affinity +EXPORT_SYMBOL_GPL vmlinux 0xd2d10326 hwspin_lock_register +EXPORT_SYMBOL_GPL vmlinux 0xd2d6f8b4 tps80031_ext_power_req_config +EXPORT_SYMBOL_GPL vmlinux 0xd2d829bd crypto_register_shashes +EXPORT_SYMBOL_GPL vmlinux 0xd2df9138 devlink_is_reload_failed +EXPORT_SYMBOL_GPL vmlinux 0xd2f2c635 crypto_enqueue_request_head +EXPORT_SYMBOL_GPL vmlinux 0xd2fbbeb4 uart_insert_char EXPORT_SYMBOL_GPL vmlinux 0xd3046552 rhashtable_insert_slow -EXPORT_SYMBOL_GPL vmlinux 0xd305c187 regulator_desc_list_voltage_linear_range -EXPORT_SYMBOL_GPL vmlinux 0xd315945c pci_epc_mem_init +EXPORT_SYMBOL_GPL vmlinux 0xd30533ee crypto_stats_akcipher_sign +EXPORT_SYMBOL_GPL vmlinux 0xd313153e apply_to_existing_page_range EXPORT_SYMBOL_GPL vmlinux 0xd31a2ac5 ring_buffer_oldest_event_ts -EXPORT_SYMBOL_GPL vmlinux 0xd332a573 dev_pm_set_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0xd332e84a debugfs_attr_read -EXPORT_SYMBOL_GPL vmlinux 0xd3350cb2 devlink_port_param_driverinit_value_set +EXPORT_SYMBOL_GPL vmlinux 0xd331d676 icc_get_name +EXPORT_SYMBOL_GPL vmlinux 0xd33ac109 pm_genpd_remove_device EXPORT_SYMBOL_GPL vmlinux 0xd33ada8b cci_probed -EXPORT_SYMBOL_GPL vmlinux 0xd3467d8a fwnode_remove_software_node -EXPORT_SYMBOL_GPL vmlinux 0xd382edb5 devm_phy_put +EXPORT_SYMBOL_GPL vmlinux 0xd3430a27 posix_clock_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd344518a devlink_dpipe_headers_register +EXPORT_SYMBOL_GPL vmlinux 0xd3499092 pm_genpd_opp_to_performance_state +EXPORT_SYMBOL_GPL vmlinux 0xd34d82ef __iptunnel_pull_header +EXPORT_SYMBOL_GPL vmlinux 0xd34f0785 wwan_create_port +EXPORT_SYMBOL_GPL vmlinux 0xd352c3a1 crypto_unregister_kpp +EXPORT_SYMBOL_GPL vmlinux 0xd36c6a40 fwnode_connection_find_match +EXPORT_SYMBOL_GPL vmlinux 0xd36dd029 pci_epc_mem_init +EXPORT_SYMBOL_GPL vmlinux 0xd373a572 __audit_inode_child +EXPORT_SYMBOL_GPL vmlinux 0xd374b53d usb_enable_intel_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0xd378af50 fwnode_get_next_available_child_node +EXPORT_SYMBOL_GPL vmlinux 0xd38626e3 snd_soc_new_compress +EXPORT_SYMBOL_GPL vmlinux 0xd39030bb blk_queue_max_zone_append_sectors EXPORT_SYMBOL_GPL vmlinux 0xd39071e6 region_intersects +EXPORT_SYMBOL_GPL vmlinux 0xd39a33c3 debugfs_create_u64 EXPORT_SYMBOL_GPL vmlinux 0xd39e9848 put_itimerspec64 -EXPORT_SYMBOL_GPL vmlinux 0xd3a99fae snd_ctl_get_preferred_subdevice +EXPORT_SYMBOL_GPL vmlinux 0xd3a9faa3 nf_hook_entries_insert_raw +EXPORT_SYMBOL_GPL vmlinux 0xd3ace1ad tpm1_getcap +EXPORT_SYMBOL_GPL vmlinux 0xd3b4d5ba snd_soc_dai_get_channel_map +EXPORT_SYMBOL_GPL vmlinux 0xd3bbad8c regulator_desc_list_voltage_linear_range EXPORT_SYMBOL_GPL vmlinux 0xd3c672b8 nand_subop_get_data_len -EXPORT_SYMBOL_GPL vmlinux 0xd3dd170d rio_request_outb_mbox -EXPORT_SYMBOL_GPL vmlinux 0xd3eb7f15 pinctrl_dev_get_name +EXPORT_SYMBOL_GPL vmlinux 0xd3d1d67d __efivar_entry_get EXPORT_SYMBOL_GPL vmlinux 0xd3f0cd42 misc_cg_res_total_usage +EXPORT_SYMBOL_GPL vmlinux 0xd3fea4ae nexthop_for_each_fib6_nh +EXPORT_SYMBOL_GPL vmlinux 0xd4002bda gpiod_toggle_active_low EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq -EXPORT_SYMBOL_GPL vmlinux 0xd407a957 of_clk_src_onecell_get -EXPORT_SYMBOL_GPL vmlinux 0xd41ab628 xfrm_dev_offload_ok +EXPORT_SYMBOL_GPL vmlinux 0xd41624df ip6_input EXPORT_SYMBOL_GPL vmlinux 0xd41ff2ac nand_subop_get_data_start_off -EXPORT_SYMBOL_GPL vmlinux 0xd42d71e5 spi_res_add +EXPORT_SYMBOL_GPL vmlinux 0xd422d4b2 dev_pm_genpd_set_next_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xd4294f1e device_link_remove +EXPORT_SYMBOL_GPL vmlinux 0xd42c0f69 tty_save_termios EXPORT_SYMBOL_GPL vmlinux 0xd42f1d4e show_rcu_tasks_rude_gp_kthread EXPORT_SYMBOL_GPL vmlinux 0xd44a5eac kgdb_register_nmi_console -EXPORT_SYMBOL_GPL vmlinux 0xd44c4ae2 snd_device_initialize -EXPORT_SYMBOL_GPL vmlinux 0xd46fac12 devm_usb_get_phy -EXPORT_SYMBOL_GPL vmlinux 0xd48bf4ca nand_cleanup -EXPORT_SYMBOL_GPL vmlinux 0xd49180a0 pm_generic_poweroff_noirq +EXPORT_SYMBOL_GPL vmlinux 0xd46409c4 devfreq_event_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xd48391d5 scsi_schedule_eh EXPORT_SYMBOL_GPL vmlinux 0xd4935851 __SCK__tp_func_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0xd496e650 __raw_v4_lookup +EXPORT_SYMBOL_GPL vmlinux 0xd498d786 ata_host_resume EXPORT_SYMBOL_GPL vmlinux 0xd499c42e percpu_ref_kill_and_confirm -EXPORT_SYMBOL_GPL vmlinux 0xd49ef36d mtd_add_partition -EXPORT_SYMBOL_GPL vmlinux 0xd4add016 spi_take_timestamp_post +EXPORT_SYMBOL_GPL vmlinux 0xd4a4c04f fat_free_clusters +EXPORT_SYMBOL_GPL vmlinux 0xd4ad8933 get_net_ns +EXPORT_SYMBOL_GPL vmlinux 0xd4b50df3 edac_device_handle_ce_count EXPORT_SYMBOL_GPL vmlinux 0xd4b6157e devlink_health_reporter_recovery_done +EXPORT_SYMBOL_GPL vmlinux 0xd4b97a65 locks_release_private EXPORT_SYMBOL_GPL vmlinux 0xd4b9a616 reset_control_bulk_put EXPORT_SYMBOL_GPL vmlinux 0xd4c14632 system_unbound_wq +EXPORT_SYMBOL_GPL vmlinux 0xd4c89ef3 sdio_writeb_readb EXPORT_SYMBOL_GPL vmlinux 0xd4cbdbe3 __SCK__tp_func_devlink_trap_report -EXPORT_SYMBOL_GPL vmlinux 0xd4deda06 md_submit_discard_bio -EXPORT_SYMBOL_GPL vmlinux 0xd4e35f7b dma_buf_end_cpu_access +EXPORT_SYMBOL_GPL vmlinux 0xd4d6df3b xhci_ext_cap_init EXPORT_SYMBOL_GPL vmlinux 0xd4e6d7e0 linear_range_get_value -EXPORT_SYMBOL_GPL vmlinux 0xd4f42929 regulator_set_current_limit_regmap -EXPORT_SYMBOL_GPL vmlinux 0xd4f9b241 noop_direct_IO -EXPORT_SYMBOL_GPL vmlinux 0xd4fab062 governor_sysfs_ops -EXPORT_SYMBOL_GPL vmlinux 0xd5058a08 dma_buf_vunmap -EXPORT_SYMBOL_GPL vmlinux 0xd50b8a01 dax_copy_from_iter -EXPORT_SYMBOL_GPL vmlinux 0xd51a760e da9055_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0xd51cff6a locks_alloc_lock +EXPORT_SYMBOL_GPL vmlinux 0xd4f2ced2 md_do_sync +EXPORT_SYMBOL_GPL vmlinux 0xd4fc75cd software_node_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xd5052fc7 snd_soc_dai_link_set_capabilities +EXPORT_SYMBOL_GPL vmlinux 0xd507205f dm_internal_resume +EXPORT_SYMBOL_GPL vmlinux 0xd50ce0f1 i2c_adapter_type +EXPORT_SYMBOL_GPL vmlinux 0xd51b9f6b i2c_dw_adjust_bus_speed EXPORT_SYMBOL_GPL vmlinux 0xd51d83f0 __tracepoint_remove_device_from_group -EXPORT_SYMBOL_GPL vmlinux 0xd52ccdd5 rio_route_get_entry +EXPORT_SYMBOL_GPL vmlinux 0xd5231110 lwtunnel_encap_add_ops EXPORT_SYMBOL_GPL vmlinux 0xd5301b2c linear_range_get_max_value -EXPORT_SYMBOL_GPL vmlinux 0xd539ac52 __pci_epf_register_driver -EXPORT_SYMBOL_GPL vmlinux 0xd540cb6c __rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0xd53064e4 dev_pm_opp_put_clkname +EXPORT_SYMBOL_GPL vmlinux 0xd535f206 kernfs_find_and_get_ns EXPORT_SYMBOL_GPL vmlinux 0xd5474690 usb_role_switch_set_role -EXPORT_SYMBOL_GPL vmlinux 0xd54ee1de __put_task_struct +EXPORT_SYMBOL_GPL vmlinux 0xd54b64e0 regmap_write_async +EXPORT_SYMBOL_GPL vmlinux 0xd54c5002 pci_epc_stop +EXPORT_SYMBOL_GPL vmlinux 0xd558867a set_secondary_fwnode EXPORT_SYMBOL_GPL vmlinux 0xd55ad93b iommu_group_get_iommudata -EXPORT_SYMBOL_GPL vmlinux 0xd567b2b5 __devm_clk_hw_register_mux -EXPORT_SYMBOL_GPL vmlinux 0xd56f8ad4 devm_kstrdup -EXPORT_SYMBOL_GPL vmlinux 0xd5721b99 of_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0xd57aaa41 sfp_bus_find_fwnode -EXPORT_SYMBOL_GPL vmlinux 0xd57c6b62 devlink_dpipe_entry_ctx_close -EXPORT_SYMBOL_GPL vmlinux 0xd59312cc pci_disable_sriov -EXPORT_SYMBOL_GPL vmlinux 0xd593a066 ata_sas_port_start +EXPORT_SYMBOL_GPL vmlinux 0xd55b1faf devlink_reload_disable +EXPORT_SYMBOL_GPL vmlinux 0xd57c827d spi_controller_suspend +EXPORT_SYMBOL_GPL vmlinux 0xd57f2bca devlink_health_reporter_create +EXPORT_SYMBOL_GPL vmlinux 0xd5902a75 fsnotify_get_group EXPORT_SYMBOL_GPL vmlinux 0xd59a1587 linkmode_resolve_pause -EXPORT_SYMBOL_GPL vmlinux 0xd5a69ee9 handle_fasteoi_nmi +EXPORT_SYMBOL_GPL vmlinux 0xd5a3a998 device_link_add EXPORT_SYMBOL_GPL vmlinux 0xd5ac24e5 blocking_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0xd5af9204 xdp_rxq_info_is_reg -EXPORT_SYMBOL_GPL vmlinux 0xd5b26d0b bpf_trace_run6 -EXPORT_SYMBOL_GPL vmlinux 0xd5b99145 net_ns_type_operations -EXPORT_SYMBOL_GPL vmlinux 0xd5c0b627 snd_soc_dapm_nc_pin_unlocked -EXPORT_SYMBOL_GPL vmlinux 0xd5cb63ac nfs42_ssc_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd5d5ca1e sysfs_remove_files -EXPORT_SYMBOL_GPL vmlinux 0xd5ed957b xhci_add_endpoint -EXPORT_SYMBOL_GPL vmlinux 0xd5edfbe2 snd_card_add_dev_attr -EXPORT_SYMBOL_GPL vmlinux 0xd5f04f21 __bio_add_page -EXPORT_SYMBOL_GPL vmlinux 0xd602e5be snd_soc_component_set_pll -EXPORT_SYMBOL_GPL vmlinux 0xd60fbaa9 edac_device_handle_ce_count +EXPORT_SYMBOL_GPL vmlinux 0xd5ad3804 device_create +EXPORT_SYMBOL_GPL vmlinux 0xd5b13f25 ptp_parse_header +EXPORT_SYMBOL_GPL vmlinux 0xd5c87942 usb_create_shared_hcd +EXPORT_SYMBOL_GPL vmlinux 0xd5d57df4 clk_hw_set_parent +EXPORT_SYMBOL_GPL vmlinux 0xd5e942f5 ata_pci_remove_one EXPORT_SYMBOL_GPL vmlinux 0xd6164816 blkg_rwstat_exit +EXPORT_SYMBOL_GPL vmlinux 0xd6175b22 devm_otg_ulpi_create +EXPORT_SYMBOL_GPL vmlinux 0xd619f49c snd_dmaengine_pcm_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd61e427f dummy_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0xd620e97e vp_modern_generation +EXPORT_SYMBOL_GPL vmlinux 0xd62aa4ac skb_scrub_packet +EXPORT_SYMBOL_GPL vmlinux 0xd635f17b pci_msi_mask_irq +EXPORT_SYMBOL_GPL vmlinux 0xd637721f __traceiter_pelt_rt_tp +EXPORT_SYMBOL_GPL vmlinux 0xd64739f1 usb_hcd_unmap_urb_for_dma EXPORT_SYMBOL_GPL vmlinux 0xd64ed259 __memcat_p EXPORT_SYMBOL_GPL vmlinux 0xd653b126 sched_clock +EXPORT_SYMBOL_GPL vmlinux 0xd653f9cc mtd_panic_write EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget -EXPORT_SYMBOL_GPL vmlinux 0xd6781659 crypto_register_ahashes -EXPORT_SYMBOL_GPL vmlinux 0xd6902bdf nvmem_device_get -EXPORT_SYMBOL_GPL vmlinux 0xd698ab6f proc_create_net_single -EXPORT_SYMBOL_GPL vmlinux 0xd6c0a810 of_genpd_remove_last -EXPORT_SYMBOL_GPL vmlinux 0xd6c6e242 synth_event_trace_array -EXPORT_SYMBOL_GPL vmlinux 0xd6c9cd00 __traceiter_block_split -EXPORT_SYMBOL_GPL vmlinux 0xd6d87e6b snd_soc_add_pcm_runtime -EXPORT_SYMBOL_GPL vmlinux 0xd6de20f5 snd_soc_component_test_bits -EXPORT_SYMBOL_GPL vmlinux 0xd6e7ce90 pm_clk_remove -EXPORT_SYMBOL_GPL vmlinux 0xd6fcbc6c xfrm_audit_state_replay_overflow -EXPORT_SYMBOL_GPL vmlinux 0xd7052839 get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0xd67c83d9 of_device_request_module +EXPORT_SYMBOL_GPL vmlinux 0xd6f3260d pci_dev_unlock +EXPORT_SYMBOL_GPL vmlinux 0xd70d2e12 tcp_twsk_destructor +EXPORT_SYMBOL_GPL vmlinux 0xd7134ee6 __udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xd7256c93 skb_splice_bits EXPORT_SYMBOL_GPL vmlinux 0xd7399d2a efivar_entry_iter_end -EXPORT_SYMBOL_GPL vmlinux 0xd741f384 spi_new_ancillary_device -EXPORT_SYMBOL_GPL vmlinux 0xd744a8ed component_bind_all -EXPORT_SYMBOL_GPL vmlinux 0xd75c5f96 of_remove_property -EXPORT_SYMBOL_GPL vmlinux 0xd75fb548 md_start -EXPORT_SYMBOL_GPL vmlinux 0xd7619f73 devm_clk_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0xd761f70c pci_enable_sriov +EXPORT_SYMBOL_GPL vmlinux 0xd75587fb ahci_shost_attrs +EXPORT_SYMBOL_GPL vmlinux 0xd756ce0a tty_kclose +EXPORT_SYMBOL_GPL vmlinux 0xd76652f0 thermal_zone_get_offset EXPORT_SYMBOL_GPL vmlinux 0xd766e8f2 btree_init_mempool EXPORT_SYMBOL_GPL vmlinux 0xd768e985 regulator_has_full_constraints EXPORT_SYMBOL_GPL vmlinux 0xd7754064 unregister_kretprobes -EXPORT_SYMBOL_GPL vmlinux 0xd7773bec blk_queue_set_zoned -EXPORT_SYMBOL_GPL vmlinux 0xd77a3d25 tty_put_char -EXPORT_SYMBOL_GPL vmlinux 0xd786ea54 add_swap_extent -EXPORT_SYMBOL_GPL vmlinux 0xd7a9607b ata_bmdma_port_start +EXPORT_SYMBOL_GPL vmlinux 0xd780d4cb fwnode_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0xd79b1e56 snd_soc_component_write +EXPORT_SYMBOL_GPL vmlinux 0xd7b29a74 of_pwm_xlate_with_flags EXPORT_SYMBOL_GPL vmlinux 0xd7b411cb __irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0xd7b8e3e7 irq_domain_translate_onecell +EXPORT_SYMBOL_GPL vmlinux 0xd7bdffa5 unregister_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xd7ca4212 tcp_rate_check_app_limited +EXPORT_SYMBOL_GPL vmlinux 0xd7d1c460 snd_soc_dapm_mixer_update_power 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 0xd7e28655 devm_extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd7e22058 is_current_mnt_ns +EXPORT_SYMBOL_GPL vmlinux 0xd7e750d6 xhci_add_endpoint +EXPORT_SYMBOL_GPL vmlinux 0xd7ec65fc blkg_conf_finish +EXPORT_SYMBOL_GPL vmlinux 0xd7fa1375 gpiod_to_irq EXPORT_SYMBOL_GPL vmlinux 0xd7fb0726 __tracepoint_xdp_bulk_tx -EXPORT_SYMBOL_GPL vmlinux 0xd800cc75 gpiod_put -EXPORT_SYMBOL_GPL vmlinux 0xd8096ef5 __rio_local_read_config_32 -EXPORT_SYMBOL_GPL vmlinux 0xd810003f cpufreq_policy_transition_delay_us -EXPORT_SYMBOL_GPL vmlinux 0xd8187add sdio_retune_crc_disable -EXPORT_SYMBOL_GPL vmlinux 0xd81b8aa8 genphy_c45_config_aneg -EXPORT_SYMBOL_GPL vmlinux 0xd820aade mtk_pinconf_drive_get_rev1 -EXPORT_SYMBOL_GPL vmlinux 0xd826e09a rio_unlock_device -EXPORT_SYMBOL_GPL vmlinux 0xd8290e87 devlink_reload_disable -EXPORT_SYMBOL_GPL vmlinux 0xd82cf89f ip6_route_output_flags -EXPORT_SYMBOL_GPL vmlinux 0xd8393e45 ata_sff_pause -EXPORT_SYMBOL_GPL vmlinux 0xd83aa3b1 ata_cable_80wire +EXPORT_SYMBOL_GPL vmlinux 0xd7fb0e05 free_vm_area +EXPORT_SYMBOL_GPL vmlinux 0xd7fc22b6 invalidate_inode_pages2_range +EXPORT_SYMBOL_GPL vmlinux 0xd8072794 pci_msi_unmask_irq +EXPORT_SYMBOL_GPL vmlinux 0xd8124adf gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0xd81f5259 iommu_attach_group +EXPORT_SYMBOL_GPL vmlinux 0xd8261eed ata_host_init +EXPORT_SYMBOL_GPL vmlinux 0xd838aa97 regmap_get_raw_write_max EXPORT_SYMBOL_GPL vmlinux 0xd84d35bd dax_read_lock -EXPORT_SYMBOL_GPL vmlinux 0xd85f6581 blk_revalidate_disk_zones -EXPORT_SYMBOL_GPL vmlinux 0xd87b868a phy_start_machine +EXPORT_SYMBOL_GPL vmlinux 0xd858608b strp_check_rcv +EXPORT_SYMBOL_GPL vmlinux 0xd861f300 devlink_traps_register EXPORT_SYMBOL_GPL vmlinux 0xd87fc0a0 usb_amd_prefetch_quirk -EXPORT_SYMBOL_GPL vmlinux 0xd8932623 fat_free_clusters -EXPORT_SYMBOL_GPL vmlinux 0xd895bf2f sdio_writew -EXPORT_SYMBOL_GPL vmlinux 0xd8a3a678 fsnotify_alloc_group -EXPORT_SYMBOL_GPL vmlinux 0xd8ae20b3 ata_bmdma_post_internal_cmd -EXPORT_SYMBOL_GPL vmlinux 0xd8b67293 handle_simple_irq -EXPORT_SYMBOL_GPL vmlinux 0xd8bcd50a snd_card_rw_proc_new -EXPORT_SYMBOL_GPL vmlinux 0xd8bf5cee ata_link_abort -EXPORT_SYMBOL_GPL vmlinux 0xd8ca5914 devlink_sb_register -EXPORT_SYMBOL_GPL vmlinux 0xd8d1b37d phy_pm_runtime_get_sync -EXPORT_SYMBOL_GPL vmlinux 0xd8d3f57d wm831x_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0xd8863507 ip6_redirect +EXPORT_SYMBOL_GPL vmlinux 0xd8974815 edac_pci_free_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0xd8a2c8f2 register_trace_event +EXPORT_SYMBOL_GPL vmlinux 0xd8a86852 __alloc_pages_bulk +EXPORT_SYMBOL_GPL vmlinux 0xd8b4eb61 dm_post_suspending +EXPORT_SYMBOL_GPL vmlinux 0xd8b62444 devm_clk_bulk_get_all +EXPORT_SYMBOL_GPL vmlinux 0xd8c672e8 devlink_resource_size_get +EXPORT_SYMBOL_GPL vmlinux 0xd8d115da regulator_get_current_limit_regmap EXPORT_SYMBOL_GPL vmlinux 0xd8d654ca list_lru_count_node EXPORT_SYMBOL_GPL vmlinux 0xd8d68ab1 dmi_memdev_type EXPORT_SYMBOL_GPL vmlinux 0xd8dca8c1 usb_ep_set_halt -EXPORT_SYMBOL_GPL vmlinux 0xd8f31dbd nand_ecc_restore_req -EXPORT_SYMBOL_GPL vmlinux 0xd8fd2fb7 regulator_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0xd911e129 ata_scsi_dma_need_drain -EXPORT_SYMBOL_GPL vmlinux 0xd91a62ec sock_diag_unregister_inet_compat -EXPORT_SYMBOL_GPL vmlinux 0xd91a9212 ata_sff_lost_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xd8deb774 ata_sff_wait_ready +EXPORT_SYMBOL_GPL vmlinux 0xd8e82d15 irq_chip_eoi_parent +EXPORT_SYMBOL_GPL vmlinux 0xd8f080fa handle_untracked_irq EXPORT_SYMBOL_GPL vmlinux 0xd91dbd1f xdp_alloc_skb_bulk EXPORT_SYMBOL_GPL vmlinux 0xd92ef192 security_kernel_post_load_data -EXPORT_SYMBOL_GPL vmlinux 0xd948af7f key_type_asymmetric -EXPORT_SYMBOL_GPL vmlinux 0xd9503936 sdio_readb -EXPORT_SYMBOL_GPL vmlinux 0xd962651f security_path_symlink -EXPORT_SYMBOL_GPL vmlinux 0xd963a95f blk_rq_prep_clone +EXPORT_SYMBOL_GPL vmlinux 0xd94b6ca9 ip6_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xd951f424 dev_pm_opp_find_level_ceil +EXPORT_SYMBOL_GPL vmlinux 0xd9530ac8 __traceiter_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0xd96980d4 snd_soc_set_ac97_ops EXPORT_SYMBOL_GPL vmlinux 0xd96babb4 interval_tree_iter_next -EXPORT_SYMBOL_GPL vmlinux 0xd96e61a7 usb_ifnum_to_if -EXPORT_SYMBOL_GPL vmlinux 0xd9721a3e nl_table EXPORT_SYMBOL_GPL vmlinux 0xd973109f tcf_frag_xmit_count -EXPORT_SYMBOL_GPL vmlinux 0xd981c731 genphy_c45_read_link -EXPORT_SYMBOL_GPL vmlinux 0xd98537a2 dmaengine_desc_set_metadata_len -EXPORT_SYMBOL_GPL vmlinux 0xd9890a8d __irq_alloc_domain_generic_chips -EXPORT_SYMBOL_GPL vmlinux 0xd98b5aca l3mdev_master_upper_ifindex_by_index_rcu -EXPORT_SYMBOL_GPL vmlinux 0xd997e43c of_clk_hw_onecell_get -EXPORT_SYMBOL_GPL vmlinux 0xd99e669c ncsi_vlan_rx_add_vid -EXPORT_SYMBOL_GPL vmlinux 0xd9a03467 task_user_regset_view -EXPORT_SYMBOL_GPL vmlinux 0xd9b17b4e icc_node_add -EXPORT_SYMBOL_GPL vmlinux 0xd9ba148f meson8_pmx_ops -EXPORT_SYMBOL_GPL vmlinux 0xd9c8f73d crypto_alloc_tfm_node +EXPORT_SYMBOL_GPL vmlinux 0xd9772344 dma_buf_get +EXPORT_SYMBOL_GPL vmlinux 0xd9844672 irq_chip_unmask_parent +EXPORT_SYMBOL_GPL vmlinux 0xd98e8f32 ata_bmdma_dumb_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0xd994c982 iommu_group_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xd996b340 rdev_get_regmap +EXPORT_SYMBOL_GPL vmlinux 0xd9adf598 tun_get_tx_ring +EXPORT_SYMBOL_GPL vmlinux 0xd9c78c5e blk_mq_debugfs_rq_show +EXPORT_SYMBOL_GPL vmlinux 0xd9cd6fb6 ipv4_sk_redirect EXPORT_SYMBOL_GPL vmlinux 0xd9e24457 ring_buffer_peek -EXPORT_SYMBOL_GPL vmlinux 0xd9ec4e52 debugfs_create_blob -EXPORT_SYMBOL_GPL vmlinux 0xd9f53def spi_mem_dtr_supports_op -EXPORT_SYMBOL_GPL vmlinux 0xd9f8ef26 pci_user_read_config_dword +EXPORT_SYMBOL_GPL vmlinux 0xd9e2fa0d virtqueue_get_vring EXPORT_SYMBOL_GPL vmlinux 0xd9ff2172 ezx_pcap_write EXPORT_SYMBOL_GPL vmlinux 0xda0947de kmsg_dump_unregister -EXPORT_SYMBOL_GPL vmlinux 0xda12e25e of_clk_add_hw_provider -EXPORT_SYMBOL_GPL vmlinux 0xda2141c8 devlink_sb_unregister +EXPORT_SYMBOL_GPL vmlinux 0xda10fdbc crypto_grab_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xda1e2eea of_reserved_mem_device_release +EXPORT_SYMBOL_GPL vmlinux 0xda22b444 rio_route_add_entry +EXPORT_SYMBOL_GPL vmlinux 0xda270d8a ehci_reset EXPORT_SYMBOL_GPL vmlinux 0xda28c702 sbitmap_add_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0xda313d56 nvmem_cell_read_u8 EXPORT_SYMBOL_GPL vmlinux 0xda320d31 sfp_module_start -EXPORT_SYMBOL_GPL vmlinux 0xda3ec6a8 platform_get_irq_optional -EXPORT_SYMBOL_GPL vmlinux 0xda539a28 rio_mport_initialize -EXPORT_SYMBOL_GPL vmlinux 0xda680178 mddev_init_writes_pending -EXPORT_SYMBOL_GPL vmlinux 0xda6991a3 edac_mc_find_csrow_by_page +EXPORT_SYMBOL_GPL vmlinux 0xda404da7 usb_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xda43cc74 nanddev_init +EXPORT_SYMBOL_GPL vmlinux 0xda51cf2b device_del +EXPORT_SYMBOL_GPL vmlinux 0xda53d748 mtd_pairing_info_to_wunit +EXPORT_SYMBOL_GPL vmlinux 0xda562ed2 ata_port_freeze EXPORT_SYMBOL_GPL vmlinux 0xda79044a tracepoint_probe_unregister +EXPORT_SYMBOL_GPL vmlinux 0xda7f0db0 regulator_get_linear_step +EXPORT_SYMBOL_GPL vmlinux 0xda82201f fwnode_property_match_string EXPORT_SYMBOL_GPL vmlinux 0xda8cc3b9 hwrng_unregister -EXPORT_SYMBOL_GPL vmlinux 0xda8e6f41 __traceiter_rpm_idle -EXPORT_SYMBOL_GPL vmlinux 0xda94f99c bpf_prog_select_runtime -EXPORT_SYMBOL_GPL vmlinux 0xdaa9b2a8 perf_aux_output_skip -EXPORT_SYMBOL_GPL vmlinux 0xdab54bd9 iommu_group_get +EXPORT_SYMBOL_GPL vmlinux 0xda8d26a0 md_rdev_init +EXPORT_SYMBOL_GPL vmlinux 0xda9f75fe ip6_push_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0xdab0c457 tcp_abort EXPORT_SYMBOL_GPL vmlinux 0xdab5a1eb interval_tree_insert -EXPORT_SYMBOL_GPL vmlinux 0xdac66845 kthread_mod_delayed_work -EXPORT_SYMBOL_GPL vmlinux 0xdae05ee2 power_supply_get_by_name -EXPORT_SYMBOL_GPL vmlinux 0xdae2081e crypto_stats_skcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0xdadbb642 sk_msg_free_nocharge EXPORT_SYMBOL_GPL vmlinux 0xdaf4dfb3 fb_mode_option EXPORT_SYMBOL_GPL vmlinux 0xdaf5c16e __cookie_v4_check -EXPORT_SYMBOL_GPL vmlinux 0xdb0060eb virtqueue_get_buf -EXPORT_SYMBOL_GPL vmlinux 0xdb0ad74c device_add_software_node -EXPORT_SYMBOL_GPL vmlinux 0xdb13929e dma_buf_vmap -EXPORT_SYMBOL_GPL vmlinux 0xdb1b4108 mtd_wunit_to_pairing_info -EXPORT_SYMBOL_GPL vmlinux 0xdb213938 devm_mbox_controller_unregister -EXPORT_SYMBOL_GPL vmlinux 0xdb26357a debugfs_create_u64 -EXPORT_SYMBOL_GPL vmlinux 0xdb274027 regulator_set_voltage -EXPORT_SYMBOL_GPL vmlinux 0xdb30d4d1 pm_clk_suspend -EXPORT_SYMBOL_GPL vmlinux 0xdb323cf4 ata_sff_hsm_move -EXPORT_SYMBOL_GPL vmlinux 0xdb3284f5 ip6_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0xdb4463d0 irq_domain_alloc_irqs_parent -EXPORT_SYMBOL_GPL vmlinux 0xdb483249 rio_mport_write_config_16 -EXPORT_SYMBOL_GPL vmlinux 0xdb4cd59f devm_ioremap_uc -EXPORT_SYMBOL_GPL vmlinux 0xdb771794 __page_file_mapping +EXPORT_SYMBOL_GPL vmlinux 0xdb0ac896 ip6_route_lookup +EXPORT_SYMBOL_GPL vmlinux 0xdb31fb38 usb_free_urb +EXPORT_SYMBOL_GPL vmlinux 0xdb42fc64 dma_get_merge_boundary +EXPORT_SYMBOL_GPL vmlinux 0xdb654e80 rockchip_pcie_get_phys +EXPORT_SYMBOL_GPL vmlinux 0xdb6735c7 pm_runtime_autosuspend_expiration +EXPORT_SYMBOL_GPL vmlinux 0xdb6fb22b regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xdb74e6af espintcp_queue_out EXPORT_SYMBOL_GPL vmlinux 0xdb8a1b3f usermodehelper_read_trylock -EXPORT_SYMBOL_GPL vmlinux 0xdb9678f7 devlink_free -EXPORT_SYMBOL_GPL vmlinux 0xdb983b53 md_find_rdev_rcu +EXPORT_SYMBOL_GPL vmlinux 0xdb8a5989 gpiod_set_config +EXPORT_SYMBOL_GPL vmlinux 0xdb9daee1 scsi_unregister_device_handler EXPORT_SYMBOL_GPL vmlinux 0xdba22696 software_node_register -EXPORT_SYMBOL_GPL vmlinux 0xdbab2a4f dw_pcie_ep_linkup -EXPORT_SYMBOL_GPL vmlinux 0xdbaff166 phy_get -EXPORT_SYMBOL_GPL vmlinux 0xdbbc904d __dma_request_channel -EXPORT_SYMBOL_GPL vmlinux 0xdbc7c7fd regulator_unregister -EXPORT_SYMBOL_GPL vmlinux 0xdbcf9fd7 sdio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xdbb09362 genphy_c45_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0xdbb56dce crypto_unregister_rng +EXPORT_SYMBOL_GPL vmlinux 0xdbb5ffc3 usb_find_alt_setting +EXPORT_SYMBOL_GPL vmlinux 0xdbb8496f iomap_invalidatepage +EXPORT_SYMBOL_GPL vmlinux 0xdbb98e95 serial8250_get_port +EXPORT_SYMBOL_GPL vmlinux 0xdbd7f37d sched_show_task EXPORT_SYMBOL_GPL vmlinux 0xdbdb0e8b request_any_context_irq -EXPORT_SYMBOL_GPL vmlinux 0xdbde40c3 mmc_regulator_get_supply +EXPORT_SYMBOL_GPL vmlinux 0xdbe67be8 dma_resv_get_fences EXPORT_SYMBOL_GPL vmlinux 0xdbe8d8a0 __SCK__tp_func_cpu_frequency -EXPORT_SYMBOL_GPL vmlinux 0xdbed6082 pci_epf_destroy -EXPORT_SYMBOL_GPL vmlinux 0xdbedc7cf tpm_get_random +EXPORT_SYMBOL_GPL vmlinux 0xdbf3dc07 blk_mq_sched_mark_restart_hctx EXPORT_SYMBOL_GPL vmlinux 0xdbf7cb70 mpi_get_nbits EXPORT_SYMBOL_GPL vmlinux 0xdc02eb39 dmi_available -EXPORT_SYMBOL_GPL vmlinux 0xdc0f74d1 skcipher_walk_done -EXPORT_SYMBOL_GPL vmlinux 0xdc1ac2e4 pm_runtime_forbid -EXPORT_SYMBOL_GPL vmlinux 0xdc1bbae3 usb_of_get_device_node -EXPORT_SYMBOL_GPL vmlinux 0xdc1d6b71 blk_mq_quiesce_queue -EXPORT_SYMBOL_GPL vmlinux 0xdc2210e6 device_link_remove -EXPORT_SYMBOL_GPL vmlinux 0xdc248141 sdhci_set_power_and_bus_voltage -EXPORT_SYMBOL_GPL vmlinux 0xdc279b53 sdhci_enable_sdio_irq -EXPORT_SYMBOL_GPL vmlinux 0xdc291bf5 rockchip_clk_register_plls -EXPORT_SYMBOL_GPL vmlinux 0xdc2d94c3 iommu_domain_alloc -EXPORT_SYMBOL_GPL vmlinux 0xdc2ed3d2 ata_sas_async_probe +EXPORT_SYMBOL_GPL vmlinux 0xdc08d345 vp_modern_get_num_queues +EXPORT_SYMBOL_GPL vmlinux 0xdc0f42a6 irq_domain_simple_ops +EXPORT_SYMBOL_GPL vmlinux 0xdc12233f cpufreq_dbs_governor_exit +EXPORT_SYMBOL_GPL vmlinux 0xdc35a306 usb_hcd_unmap_urb_setup_for_dma +EXPORT_SYMBOL_GPL vmlinux 0xdc438946 regulator_list_voltage_table EXPORT_SYMBOL_GPL vmlinux 0xdc43bdc6 pci_vpd_find_ro_info_keyword -EXPORT_SYMBOL_GPL vmlinux 0xdc5d8268 pid_nr_ns +EXPORT_SYMBOL_GPL vmlinux 0xdc452daf wb_writeout_inc +EXPORT_SYMBOL_GPL vmlinux 0xdc543c4e __traceiter_br_fdb_external_learn_add +EXPORT_SYMBOL_GPL vmlinux 0xdc589452 snd_soc_dapm_sync +EXPORT_SYMBOL_GPL vmlinux 0xdc58e87a fscrypt_get_symlink +EXPORT_SYMBOL_GPL vmlinux 0xdc5eb4e3 virtqueue_is_broken +EXPORT_SYMBOL_GPL vmlinux 0xdc62d4db crypto_drop_spawn EXPORT_SYMBOL_GPL vmlinux 0xdc6596fa irq_set_parent +EXPORT_SYMBOL_GPL vmlinux 0xdc711258 edac_device_handle_ue_count +EXPORT_SYMBOL_GPL vmlinux 0xdc732974 regmap_can_raw_write +EXPORT_SYMBOL_GPL vmlinux 0xdc74fa76 ehci_resume EXPORT_SYMBOL_GPL vmlinux 0xdc7ce353 mv_mbus_dram_info_nooverlap -EXPORT_SYMBOL_GPL vmlinux 0xdc7e72cb xdp_rxq_info_reg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0xdc7ec382 devlink_resource_register +EXPORT_SYMBOL_GPL vmlinux 0xdc824ca0 pm_runtime_barrier EXPORT_SYMBOL_GPL vmlinux 0xdc825d6c usb_amd_quirk_pll_disable -EXPORT_SYMBOL_GPL vmlinux 0xdc8c3659 debugfs_create_devm_seqfile +EXPORT_SYMBOL_GPL vmlinux 0xdc856da5 mtd_block_isbad +EXPORT_SYMBOL_GPL vmlinux 0xdc928566 ata_host_detach +EXPORT_SYMBOL_GPL vmlinux 0xdc9542d4 usb_kill_urb EXPORT_SYMBOL_GPL vmlinux 0xdc97af2e syscore_suspend EXPORT_SYMBOL_GPL vmlinux 0xdc9fa232 raw_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0xdca9d232 amba_device_put -EXPORT_SYMBOL_GPL vmlinux 0xdcba1ade dma_get_required_mask -EXPORT_SYMBOL_GPL vmlinux 0xdcbc4fd1 ata_link_online -EXPORT_SYMBOL_GPL vmlinux 0xdccbb427 mpc8xxx_spi_tx_buf_u16 -EXPORT_SYMBOL_GPL vmlinux 0xdccec867 rtc_set_alarm -EXPORT_SYMBOL_GPL vmlinux 0xdccf5e02 net_ns_get_ownership -EXPORT_SYMBOL_GPL vmlinux 0xdce82404 sched_trace_rq_cpu -EXPORT_SYMBOL_GPL vmlinux 0xdcebb3ad sbitmap_show -EXPORT_SYMBOL_GPL vmlinux 0xdcfb10c5 nf_nat_hook -EXPORT_SYMBOL_GPL vmlinux 0xdd003bcd of_genpd_add_device +EXPORT_SYMBOL_GPL vmlinux 0xdcb38392 tpm_chip_register +EXPORT_SYMBOL_GPL vmlinux 0xdcb4d41a spi_mem_exec_op +EXPORT_SYMBOL_GPL vmlinux 0xdccf3e5f pinctrl_generic_add_group +EXPORT_SYMBOL_GPL vmlinux 0xdcdb008d sysfs_add_link_to_group +EXPORT_SYMBOL_GPL vmlinux 0xdcdccea3 perf_event_release_kernel +EXPORT_SYMBOL_GPL vmlinux 0xdce4e794 pci_disable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0xdce556f9 devlink_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdcfff857 extcon_get_edev_name EXPORT_SYMBOL_GPL vmlinux 0xdd0762df set_worker_desc -EXPORT_SYMBOL_GPL vmlinux 0xdd14b1cd snd_soc_put_volsw_range +EXPORT_SYMBOL_GPL vmlinux 0xdd20dbeb snd_card_add_dev_attr EXPORT_SYMBOL_GPL vmlinux 0xdd21316c nvmem_del_cell_table -EXPORT_SYMBOL_GPL vmlinux 0xdd2bfe26 posix_clock_unregister -EXPORT_SYMBOL_GPL vmlinux 0xdd333e15 pci_epf_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0xdd3462ee genphy_c45_an_config_aneg EXPORT_SYMBOL_GPL vmlinux 0xdd391eff profile_event_unregister -EXPORT_SYMBOL_GPL vmlinux 0xdd417db4 crypto_stats_aead_encrypt -EXPORT_SYMBOL_GPL vmlinux 0xdd46fa5c usb_add_gadget_udc_release -EXPORT_SYMBOL_GPL vmlinux 0xdd483b45 sm501_modify_reg -EXPORT_SYMBOL_GPL vmlinux 0xdd505a2a rio_add_net +EXPORT_SYMBOL_GPL vmlinux 0xdd521042 ata_sff_prereset +EXPORT_SYMBOL_GPL vmlinux 0xdd5a275e ahci_platform_disable_clks +EXPORT_SYMBOL_GPL vmlinux 0xdd5bfb77 debugfs_create_u32 EXPORT_SYMBOL_GPL vmlinux 0xdd626ee3 fuse_len_args -EXPORT_SYMBOL_GPL vmlinux 0xdd627ad7 blk_mq_alloc_request_hctx +EXPORT_SYMBOL_GPL vmlinux 0xdd663a78 dev_fwnode EXPORT_SYMBOL_GPL vmlinux 0xdd66db67 nf_hooks_lwtunnel_sysctl_handler EXPORT_SYMBOL_GPL vmlinux 0xdd6ddcec __traceiter_error_report_end -EXPORT_SYMBOL_GPL vmlinux 0xdd74bf0d irq_remove_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0xdd7da725 alloc_dax_region +EXPORT_SYMBOL_GPL vmlinux 0xdd812c18 usb_hcd_resume_root_hub EXPORT_SYMBOL_GPL vmlinux 0xdd81d8f6 __SCK__tp_func_block_bio_complete -EXPORT_SYMBOL_GPL vmlinux 0xdd84a53f device_init_wakeup EXPORT_SYMBOL_GPL vmlinux 0xdd85063c lpddr2_jedec_min_tck -EXPORT_SYMBOL_GPL vmlinux 0xddaa481d device_set_of_node_from_dev -EXPORT_SYMBOL_GPL vmlinux 0xddb76de5 skb_to_sgvec_nomark -EXPORT_SYMBOL_GPL vmlinux 0xddbcdeb4 get_tree_mtd +EXPORT_SYMBOL_GPL vmlinux 0xdd8f5e06 tcp_unregister_ulp +EXPORT_SYMBOL_GPL vmlinux 0xdd9e6f5d nf_route +EXPORT_SYMBOL_GPL vmlinux 0xdd9ff171 nand_read_data_op +EXPORT_SYMBOL_GPL vmlinux 0xdda06f9d mtd_pairing_groups +EXPORT_SYMBOL_GPL vmlinux 0xdda5444a amba_apb_device_add +EXPORT_SYMBOL_GPL vmlinux 0xdda84f0a phy_led_triggers_register +EXPORT_SYMBOL_GPL vmlinux 0xddaf3866 pci_add_dynid +EXPORT_SYMBOL_GPL vmlinux 0xddbbe5f4 __regmap_init_spi EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove EXPORT_SYMBOL_GPL vmlinux 0xddd6a7be devices_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xddd87971 dev_pm_opp_get_opp_table -EXPORT_SYMBOL_GPL vmlinux 0xddd9f605 register_net_sysctl -EXPORT_SYMBOL_GPL vmlinux 0xdddb1e6e icc_node_del EXPORT_SYMBOL_GPL vmlinux 0xdddb9d57 percpu_ref_resurrect -EXPORT_SYMBOL_GPL vmlinux 0xddeeffa7 rio_pw_enable -EXPORT_SYMBOL_GPL vmlinux 0xddef5da4 usb_role_switch_find_by_fwnode -EXPORT_SYMBOL_GPL vmlinux 0xde193276 usb_add_gadget -EXPORT_SYMBOL_GPL vmlinux 0xde26b564 switchdev_handle_fdb_del_to_device -EXPORT_SYMBOL_GPL vmlinux 0xde2e06b9 irq_domain_xlate_onecell -EXPORT_SYMBOL_GPL vmlinux 0xde55f1a5 led_classdev_unregister -EXPORT_SYMBOL_GPL vmlinux 0xde60d41f bpf_trace_run2 +EXPORT_SYMBOL_GPL vmlinux 0xdde16e48 hvc_poll +EXPORT_SYMBOL_GPL vmlinux 0xde042f13 pm_generic_freeze +EXPORT_SYMBOL_GPL vmlinux 0xde0bdf9f ata_host_register +EXPORT_SYMBOL_GPL vmlinux 0xde0e0e78 rtnl_get_net_ns_capable +EXPORT_SYMBOL_GPL vmlinux 0xde17ac65 do_take_over_console +EXPORT_SYMBOL_GPL vmlinux 0xde181a94 irq_domain_remove +EXPORT_SYMBOL_GPL vmlinux 0xde27b129 pci_max_pasids +EXPORT_SYMBOL_GPL vmlinux 0xde394f92 fscrypt_drop_inode +EXPORT_SYMBOL_GPL vmlinux 0xde5acf3d irq_get_default_host +EXPORT_SYMBOL_GPL vmlinux 0xde622c4a find_asymmetric_key EXPORT_SYMBOL_GPL vmlinux 0xde6f1851 TSS_checkhmac1 -EXPORT_SYMBOL_GPL vmlinux 0xde712bb6 iomap_swapfile_activate -EXPORT_SYMBOL_GPL vmlinux 0xde76c89f rio_mport_get_physefb -EXPORT_SYMBOL_GPL vmlinux 0xde83b70c regmap_field_bulk_alloc -EXPORT_SYMBOL_GPL vmlinux 0xdead0843 ata_ehi_push_desc -EXPORT_SYMBOL_GPL vmlinux 0xdebcf2d5 skb_segment_list -EXPORT_SYMBOL_GPL vmlinux 0xdebd522b of_clk_set_defaults -EXPORT_SYMBOL_GPL vmlinux 0xded41fc2 iommu_group_add_device -EXPORT_SYMBOL_GPL vmlinux 0xdedd764f musb_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xdee1bc3d pci_epc_stop -EXPORT_SYMBOL_GPL vmlinux 0xdee902ed fb_deferred_io_cleanup -EXPORT_SYMBOL_GPL vmlinux 0xdefbcffb wm8350_reg_unlock -EXPORT_SYMBOL_GPL vmlinux 0xdefe6b02 of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0xde72b024 usb_reset_endpoint +EXPORT_SYMBOL_GPL vmlinux 0xde7c5bd6 mtk_eint_do_suspend +EXPORT_SYMBOL_GPL vmlinux 0xde7d360a devm_gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0xde7ffca2 md_bitmap_copy_from_slot +EXPORT_SYMBOL_GPL vmlinux 0xde8af4b6 devm_nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0xde8ea41a crypto_register_rng +EXPORT_SYMBOL_GPL vmlinux 0xde90e999 mptcp_token_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xdeb01194 led_trigger_write +EXPORT_SYMBOL_GPL vmlinux 0xdecaac9b clk_hw_get_flags +EXPORT_SYMBOL_GPL vmlinux 0xdedf4f1d tcp_reno_ssthresh +EXPORT_SYMBOL_GPL vmlinux 0xdee568ce gpiod_set_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xdeebcd97 sdio_retune_crc_enable +EXPORT_SYMBOL_GPL vmlinux 0xdef16ef0 icc_link_destroy +EXPORT_SYMBOL_GPL vmlinux 0xdef46173 snd_soc_jack_report +EXPORT_SYMBOL_GPL vmlinux 0xdef9d515 ohci_restart EXPORT_SYMBOL_GPL vmlinux 0xdeffa0a7 edac_raw_mc_handle_error +EXPORT_SYMBOL_GPL vmlinux 0xdf01525e sata_scr_write_flush EXPORT_SYMBOL_GPL vmlinux 0xdf0476f3 __tracepoint_unmap EXPORT_SYMBOL_GPL vmlinux 0xdf0f75c6 eventfd_signal -EXPORT_SYMBOL_GPL vmlinux 0xdf23ac94 __traceiter_attach_device_to_domain EXPORT_SYMBOL_GPL vmlinux 0xdf255dcf memory_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xdf2b07b3 mptcp_token_get_sock -EXPORT_SYMBOL_GPL vmlinux 0xdf2db178 __of_phy_provider_register -EXPORT_SYMBOL_GPL vmlinux 0xdf306cf8 irq_create_mapping_affinity -EXPORT_SYMBOL_GPL vmlinux 0xdf3c24d2 regulator_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0xdf3d0b77 usb_hub_clear_tt_buffer -EXPORT_SYMBOL_GPL vmlinux 0xdf425f05 platform_device_add_data -EXPORT_SYMBOL_GPL vmlinux 0xdf81ba35 gpiod_get_array -EXPORT_SYMBOL_GPL vmlinux 0xdf8b5403 virtio_check_driver_offered_feature -EXPORT_SYMBOL_GPL vmlinux 0xdfa1d6f8 bsg_job_put -EXPORT_SYMBOL_GPL vmlinux 0xdfaa4401 snd_soc_put_volsw -EXPORT_SYMBOL_GPL vmlinux 0xdfaaae47 pwm_apply_state -EXPORT_SYMBOL_GPL vmlinux 0xdfb68797 usb_gen_phy_init -EXPORT_SYMBOL_GPL vmlinux 0xdfbfe082 nf_route +EXPORT_SYMBOL_GPL vmlinux 0xdf2d8a6f dw_pcie_host_init +EXPORT_SYMBOL_GPL vmlinux 0xdf31bfd8 pci_num_vf +EXPORT_SYMBOL_GPL vmlinux 0xdf33c7eb regulator_set_voltage_time_sel +EXPORT_SYMBOL_GPL vmlinux 0xdf4d4989 crypto_create_tfm_node +EXPORT_SYMBOL_GPL vmlinux 0xdf59d86e ata_scsi_port_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xdf62761e phy_configure +EXPORT_SYMBOL_GPL vmlinux 0xdf77f00a tty_get_pgrp +EXPORT_SYMBOL_GPL vmlinux 0xdf8a1443 tty_prepare_flip_string +EXPORT_SYMBOL_GPL vmlinux 0xdf8f84f8 clk_hw_register_composite +EXPORT_SYMBOL_GPL vmlinux 0xdfae980e mtk_build_eint EXPORT_SYMBOL_GPL vmlinux 0xdfc03cd7 __wake_up_sync +EXPORT_SYMBOL_GPL vmlinux 0xdfc34078 relay_open EXPORT_SYMBOL_GPL vmlinux 0xdfcb6c90 mctrl_gpio_set -EXPORT_SYMBOL_GPL vmlinux 0xdff17961 i2c_dw_probe_master -EXPORT_SYMBOL_GPL vmlinux 0xdffb6017 usb_deregister -EXPORT_SYMBOL_GPL vmlinux 0xe000da35 edac_mc_handle_error -EXPORT_SYMBOL_GPL vmlinux 0xe00c5e23 trace_seq_path -EXPORT_SYMBOL_GPL vmlinux 0xe0234715 xfrm_output_resume -EXPORT_SYMBOL_GPL vmlinux 0xe036e0fe snd_soc_put_volsw_sx -EXPORT_SYMBOL_GPL vmlinux 0xe03ca749 msg_zerocopy_callback -EXPORT_SYMBOL_GPL vmlinux 0xe0416b67 iommu_iova_to_phys -EXPORT_SYMBOL_GPL vmlinux 0xe0481d4c pci_epc_remove_epf +EXPORT_SYMBOL_GPL vmlinux 0xdfcd29e9 skb_mpls_pop +EXPORT_SYMBOL_GPL vmlinux 0xdfd20b76 mtk_pinconf_drive_get_raw +EXPORT_SYMBOL_GPL vmlinux 0xe00a2afc iommu_detach_group +EXPORT_SYMBOL_GPL vmlinux 0xe020eed3 debugfs_create_u8 EXPORT_SYMBOL_GPL vmlinux 0xe04e99d7 btree_merge -EXPORT_SYMBOL_GPL vmlinux 0xe05355a8 strp_stop -EXPORT_SYMBOL_GPL vmlinux 0xe05a154c usb_control_msg +EXPORT_SYMBOL_GPL vmlinux 0xe054375e sock_map_close EXPORT_SYMBOL_GPL vmlinux 0xe05e2f85 nexthop_free_rcu -EXPORT_SYMBOL_GPL vmlinux 0xe06fe79a devm_phy_package_join -EXPORT_SYMBOL_GPL vmlinux 0xe076a5c0 ata_bmdma_irq_clear -EXPORT_SYMBOL_GPL vmlinux 0xe0796285 i2c_new_dummy_device +EXPORT_SYMBOL_GPL vmlinux 0xe06d83d6 clk_hw_rate_is_protected +EXPORT_SYMBOL_GPL vmlinux 0xe0789ec9 pci_ignore_hotplug +EXPORT_SYMBOL_GPL vmlinux 0xe085293a vfs_setxattr +EXPORT_SYMBOL_GPL vmlinux 0xe087ec5a bpf_trace_run8 +EXPORT_SYMBOL_GPL vmlinux 0xe093d49b rio_add_net +EXPORT_SYMBOL_GPL vmlinux 0xe0a099ce pinmux_generic_get_function EXPORT_SYMBOL_GPL vmlinux 0xe0a80509 usb_ep_clear_halt -EXPORT_SYMBOL_GPL vmlinux 0xe0aa0a01 sdhci_set_power_noreg EXPORT_SYMBOL_GPL vmlinux 0xe0b1c103 clk_set_max_rate -EXPORT_SYMBOL_GPL vmlinux 0xe0c5efbe iommu_dev_enable_feature -EXPORT_SYMBOL_GPL vmlinux 0xe0c8c51c pm_generic_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0xe0d371f3 usb_hcd_unmap_urb_setup_for_dma -EXPORT_SYMBOL_GPL vmlinux 0xe0dcd862 register_virtio_device -EXPORT_SYMBOL_GPL vmlinux 0xe0e909e7 blk_mq_rdma_map_queues -EXPORT_SYMBOL_GPL vmlinux 0xe0ea59d2 usb_disable_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0xe0ee8d62 blk_ksm_is_superset -EXPORT_SYMBOL_GPL vmlinux 0xe0f97e32 sysfs_update_group -EXPORT_SYMBOL_GPL vmlinux 0xe114990b component_del -EXPORT_SYMBOL_GPL vmlinux 0xe120b42d __fscrypt_prepare_link -EXPORT_SYMBOL_GPL vmlinux 0xe133b876 snd_soc_component_compr_get_codec_caps -EXPORT_SYMBOL_GPL vmlinux 0xe1480248 blk_mq_complete_request_remote -EXPORT_SYMBOL_GPL vmlinux 0xe15389c8 pci_epc_mem_alloc_addr -EXPORT_SYMBOL_GPL vmlinux 0xe15b3cd5 devm_clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0xe0c1eff6 serial8250_rx_chars +EXPORT_SYMBOL_GPL vmlinux 0xe0c39ac5 irq_setup_alt_chip +EXPORT_SYMBOL_GPL vmlinux 0xe0dd53df sysfs_create_mount_point +EXPORT_SYMBOL_GPL vmlinux 0xe0ec35b5 proc_mkdir_data +EXPORT_SYMBOL_GPL vmlinux 0xe0f05fac trace_array_destroy +EXPORT_SYMBOL_GPL vmlinux 0xe0f358bb perf_event_disable +EXPORT_SYMBOL_GPL vmlinux 0xe1071f89 irq_gc_mask_set_bit +EXPORT_SYMBOL_GPL vmlinux 0xe107ac62 fsstack_copy_attr_all +EXPORT_SYMBOL_GPL vmlinux 0xe11aaa66 clk_hw_get_parent +EXPORT_SYMBOL_GPL vmlinux 0xe1229c1a bdev_disk_changed +EXPORT_SYMBOL_GPL vmlinux 0xe13cedf7 fwnode_get_next_parent +EXPORT_SYMBOL_GPL vmlinux 0xe14dbd54 snd_soc_jack_add_pins +EXPORT_SYMBOL_GPL vmlinux 0xe15a351c pci_epc_raise_irq EXPORT_SYMBOL_GPL vmlinux 0xe1653a54 software_node_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe1723920 snd_soc_of_parse_aux_devs +EXPORT_SYMBOL_GPL vmlinux 0xe1737d05 rockchip_clk_register_branches EXPORT_SYMBOL_GPL vmlinux 0xe1775ee7 dm_get_reserved_bio_based_ios -EXPORT_SYMBOL_GPL vmlinux 0xe17a7bb4 pci_rescan_bus EXPORT_SYMBOL_GPL vmlinux 0xe18960ba nvmem_device_write -EXPORT_SYMBOL_GPL vmlinux 0xe1a22376 __cpufreq_driver_target -EXPORT_SYMBOL_GPL vmlinux 0xe1a56a94 devm_mbox_controller_register -EXPORT_SYMBOL_GPL vmlinux 0xe1a954ab tty_port_default_client_ops -EXPORT_SYMBOL_GPL vmlinux 0xe1b8b378 fb_deferred_io_fsync +EXPORT_SYMBOL_GPL vmlinux 0xe19bf5d2 devm_gpiod_get_index EXPORT_SYMBOL_GPL vmlinux 0xe1bd6c99 rio_init_mports +EXPORT_SYMBOL_GPL vmlinux 0xe1c48d63 blk_queue_write_cache EXPORT_SYMBOL_GPL vmlinux 0xe1c63523 blk_ksm_get_slot_idx -EXPORT_SYMBOL_GPL vmlinux 0xe1d3aece snd_soc_jack_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0xe1d7be79 usb_sg_wait -EXPORT_SYMBOL_GPL vmlinux 0xe20d9ba4 thermal_remove_hwmon_sysfs -EXPORT_SYMBOL_GPL vmlinux 0xe2128fe7 kthread_use_mm -EXPORT_SYMBOL_GPL vmlinux 0xe214a498 spi_take_timestamp_pre -EXPORT_SYMBOL_GPL vmlinux 0xe2243e6f pl08x_filter_id -EXPORT_SYMBOL_GPL vmlinux 0xe227fa5b device_get_next_child_node -EXPORT_SYMBOL_GPL vmlinux 0xe22b3284 cpuidle_get_driver +EXPORT_SYMBOL_GPL vmlinux 0xe1e4e54c ata_sff_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0xe204937a tegra_bpmp_mrq_is_supported +EXPORT_SYMBOL_GPL vmlinux 0xe20dd485 __devm_clk_hw_register_mux EXPORT_SYMBOL_GPL vmlinux 0xe233762a input_event_from_user EXPORT_SYMBOL_GPL vmlinux 0xe23cd479 alarm_expires_remaining -EXPORT_SYMBOL_GPL vmlinux 0xe249c993 mtd_writev -EXPORT_SYMBOL_GPL vmlinux 0xe2545fd1 thermal_zone_get_zone_by_name -EXPORT_SYMBOL_GPL vmlinux 0xe2568951 proc_create_net_single_write -EXPORT_SYMBOL_GPL vmlinux 0xe262a96f devm_device_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0xe241f51c spi_busnum_to_master +EXPORT_SYMBOL_GPL vmlinux 0xe24a7db8 sysfs_file_change_owner +EXPORT_SYMBOL_GPL vmlinux 0xe2502086 pwm_request +EXPORT_SYMBOL_GPL vmlinux 0xe261337e skcipher_alloc_instance_simple EXPORT_SYMBOL_GPL vmlinux 0xe2717792 dax_zero_page_range -EXPORT_SYMBOL_GPL vmlinux 0xe282a5fb nanddev_isreserved +EXPORT_SYMBOL_GPL vmlinux 0xe27b7b1a devm_watchdog_register_device EXPORT_SYMBOL_GPL vmlinux 0xe282c5aa __tracepoint_sched_update_nr_running_tp -EXPORT_SYMBOL_GPL vmlinux 0xe2915519 gpiochip_find -EXPORT_SYMBOL_GPL vmlinux 0xe297eb4e pci_generic_ecam_ops -EXPORT_SYMBOL_GPL vmlinux 0xe2a7a47c crypto_grab_shash +EXPORT_SYMBOL_GPL vmlinux 0xe28e9ec0 l3mdev_table_lookup_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe29e222a snd_soc_dai_set_clkdiv EXPORT_SYMBOL_GPL vmlinux 0xe2b3207a unregister_switchdev_notifier -EXPORT_SYMBOL_GPL vmlinux 0xe2b35a88 cpufreq_disable_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0xe2bb1f77 sock_map_unhash +EXPORT_SYMBOL_GPL vmlinux 0xe2c6e2ef tty_ldisc_flush +EXPORT_SYMBOL_GPL vmlinux 0xe2cf2741 usb_poison_urb +EXPORT_SYMBOL_GPL vmlinux 0xe2d622c6 wakeup_source_create EXPORT_SYMBOL_GPL vmlinux 0xe2e0f798 tracepoint_srcu -EXPORT_SYMBOL_GPL vmlinux 0xe2e9d295 tty_port_tty_hangup -EXPORT_SYMBOL_GPL vmlinux 0xe30339a6 devm_rtc_device_register -EXPORT_SYMBOL_GPL vmlinux 0xe303a48a regulator_set_soft_start_regmap -EXPORT_SYMBOL_GPL vmlinux 0xe309f6c8 dev_pm_opp_find_freq_ceil_by_volt -EXPORT_SYMBOL_GPL vmlinux 0xe31efe78 dev_pm_opp_put_supported_hw +EXPORT_SYMBOL_GPL vmlinux 0xe2f46915 pci_epf_bind +EXPORT_SYMBOL_GPL vmlinux 0xe2f671fe __netif_set_xps_queue +EXPORT_SYMBOL_GPL vmlinux 0xe307f696 vga_default_device +EXPORT_SYMBOL_GPL vmlinux 0xe313cbfb posix_clock_register EXPORT_SYMBOL_GPL vmlinux 0xe320a99a cpuidle_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0xe324301f tty_port_link_device -EXPORT_SYMBOL_GPL vmlinux 0xe326d6df unmap_mapping_pages -EXPORT_SYMBOL_GPL vmlinux 0xe329f870 tcp_bpf_update_proto -EXPORT_SYMBOL_GPL vmlinux 0xe32e6c63 device_remove_software_node -EXPORT_SYMBOL_GPL vmlinux 0xe338d199 stmpe_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xe33b32cc shmem_read_mapping_page_gfp -EXPORT_SYMBOL_GPL vmlinux 0xe3413f68 device_remove_groups -EXPORT_SYMBOL_GPL vmlinux 0xe341b9bb crypto_unregister_skcipher -EXPORT_SYMBOL_GPL vmlinux 0xe350befb nanddev_bbt_get_block_status -EXPORT_SYMBOL_GPL vmlinux 0xe35d4ebd spi_mem_poll_status -EXPORT_SYMBOL_GPL vmlinux 0xe363721e md_find_rdev_nr_rcu -EXPORT_SYMBOL_GPL vmlinux 0xe364f464 fib_nl_newrule -EXPORT_SYMBOL_GPL vmlinux 0xe3655d23 efivars_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe3686534 device_get_dma_attr -EXPORT_SYMBOL_GPL vmlinux 0xe3706f6a __vfs_removexattr_noperm +EXPORT_SYMBOL_GPL vmlinux 0xe33eaa71 rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe33eace2 icc_provider_del +EXPORT_SYMBOL_GPL vmlinux 0xe3672c65 blkcg_policy_register EXPORT_SYMBOL_GPL vmlinux 0xe38f4027 synchronize_srcu_expedited -EXPORT_SYMBOL_GPL vmlinux 0xe394c91f serdev_controller_add +EXPORT_SYMBOL_GPL vmlinux 0xe390294b get_net_ns_by_pid EXPORT_SYMBOL_GPL vmlinux 0xe39d0794 usb_phy_roothub_exit +EXPORT_SYMBOL_GPL vmlinux 0xe3afa199 sock_prot_inuse_add EXPORT_SYMBOL_GPL vmlinux 0xe3b09712 kprobe_event_delete -EXPORT_SYMBOL_GPL vmlinux 0xe3cbfcb1 pm_runtime_irq_safe -EXPORT_SYMBOL_GPL vmlinux 0xe3d24a2c device_add_groups -EXPORT_SYMBOL_GPL vmlinux 0xe3d59409 amba_apb_device_add -EXPORT_SYMBOL_GPL vmlinux 0xe3d71e1e watchdog_notify_pretimeout -EXPORT_SYMBOL_GPL vmlinux 0xe3d8bb6b blk_mq_freeze_queue_wait_timeout -EXPORT_SYMBOL_GPL vmlinux 0xe3f26c3a pcie_reset_flr -EXPORT_SYMBOL_GPL vmlinux 0xe4008e74 dev_fill_forward_path -EXPORT_SYMBOL_GPL vmlinux 0xe4099c5a devlink_dpipe_headers_register +EXPORT_SYMBOL_GPL vmlinux 0xe3b3e8ab get_task_mm +EXPORT_SYMBOL_GPL vmlinux 0xe3d7eb86 xfrm_audit_state_add +EXPORT_SYMBOL_GPL vmlinux 0xe3f1ebcd iommu_uapi_sva_bind_gpasid +EXPORT_SYMBOL_GPL vmlinux 0xe4070bf0 attribute_container_register EXPORT_SYMBOL_GPL vmlinux 0xe40bb23e devlink_health_reporter_priv -EXPORT_SYMBOL_GPL vmlinux 0xe4151a4b fat_flush_inodes -EXPORT_SYMBOL_GPL vmlinux 0xe41c3884 extcon_dev_register -EXPORT_SYMBOL_GPL vmlinux 0xe42d3d81 devlink_port_type_clear +EXPORT_SYMBOL_GPL vmlinux 0xe414ad77 dev_pm_qos_hide_latency_tolerance EXPORT_SYMBOL_GPL vmlinux 0xe4309905 syscore_resume -EXPORT_SYMBOL_GPL vmlinux 0xe43113b8 key_type_logon -EXPORT_SYMBOL_GPL vmlinux 0xe43d6c72 regmap_parse_val -EXPORT_SYMBOL_GPL vmlinux 0xe441d4aa get_kernel_pages -EXPORT_SYMBOL_GPL vmlinux 0xe4596381 regcache_cache_bypass -EXPORT_SYMBOL_GPL vmlinux 0xe460ba2e proc_mkdir_data -EXPORT_SYMBOL_GPL vmlinux 0xe460cb0d crypto_alloc_skcipher -EXPORT_SYMBOL_GPL vmlinux 0xe4618bfa fuse_dev_fiq_ops -EXPORT_SYMBOL_GPL vmlinux 0xe461ab40 __ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0xe43ff283 wait_for_stable_page +EXPORT_SYMBOL_GPL vmlinux 0xe4421d51 regulator_is_supported_voltage EXPORT_SYMBOL_GPL vmlinux 0xe466a423 init_srcu_struct -EXPORT_SYMBOL_GPL vmlinux 0xe47e73a0 bus_get_kset -EXPORT_SYMBOL_GPL vmlinux 0xe47eed14 pm_clk_add_clk -EXPORT_SYMBOL_GPL vmlinux 0xe481bfa5 sdhci_get_property -EXPORT_SYMBOL_GPL vmlinux 0xe4871708 bpf_prog_put -EXPORT_SYMBOL_GPL vmlinux 0xe488d8a5 device_create_with_groups +EXPORT_SYMBOL_GPL vmlinux 0xe476178a metadata_dst_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0xe47f46d4 fat_get_dotdot_entry +EXPORT_SYMBOL_GPL vmlinux 0xe4968eb1 ata_pci_device_do_resume EXPORT_SYMBOL_GPL vmlinux 0xe4971ade tracing_alloc_snapshot EXPORT_SYMBOL_GPL vmlinux 0xe4977bba __tracepoint_block_rq_remap -EXPORT_SYMBOL_GPL vmlinux 0xe4a6bd12 dm_get_md -EXPORT_SYMBOL_GPL vmlinux 0xe4a9f8b1 fuse_get_unique +EXPORT_SYMBOL_GPL vmlinux 0xe4a3c264 spi_setup EXPORT_SYMBOL_GPL vmlinux 0xe4b064f9 pcie_link_speed EXPORT_SYMBOL_GPL vmlinux 0xe4b818c3 phy_speed_to_str +EXPORT_SYMBOL_GPL vmlinux 0xe4b8c4a3 pinmux_generic_get_function_count EXPORT_SYMBOL_GPL vmlinux 0xe4b93f27 public_key_verify_signature -EXPORT_SYMBOL_GPL vmlinux 0xe4b9733a usb_enable_lpm EXPORT_SYMBOL_GPL vmlinux 0xe4c2c66c rtc_ktime_to_tm +EXPORT_SYMBOL_GPL vmlinux 0xe4c39a39 of_console_check +EXPORT_SYMBOL_GPL vmlinux 0xe4c92904 nfs42_ssc_register EXPORT_SYMBOL_GPL vmlinux 0xe4c9f178 btree_get_prev -EXPORT_SYMBOL_GPL vmlinux 0xe4d9d73a usb_add_phy -EXPORT_SYMBOL_GPL vmlinux 0xe4e3489e tty_kopen_shared +EXPORT_SYMBOL_GPL vmlinux 0xe4d39650 vchan_tx_desc_free +EXPORT_SYMBOL_GPL vmlinux 0xe4dfc87c blk_mq_freeze_queue EXPORT_SYMBOL_GPL vmlinux 0xe4e48b12 swphy_validate_state -EXPORT_SYMBOL_GPL vmlinux 0xe4e69e52 nanddev_mtd_max_bad_blocks -EXPORT_SYMBOL_GPL vmlinux 0xe4f5d85d regulator_set_voltage_sel_regmap -EXPORT_SYMBOL_GPL vmlinux 0xe4fbdf4a sock_inuse_get -EXPORT_SYMBOL_GPL vmlinux 0xe506185c virtio_device_freeze -EXPORT_SYMBOL_GPL vmlinux 0xe50d9ee1 crypto_register_acomp -EXPORT_SYMBOL_GPL vmlinux 0xe539303f ata_pci_shutdown_one -EXPORT_SYMBOL_GPL vmlinux 0xe5442dbd tty_register_device_attr -EXPORT_SYMBOL_GPL vmlinux 0xe553eee9 usb_hcd_platform_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xe558b3b3 regulator_set_load -EXPORT_SYMBOL_GPL vmlinux 0xe560ec4a rdev_get_name -EXPORT_SYMBOL_GPL vmlinux 0xe56976c0 dev_coredumpm +EXPORT_SYMBOL_GPL vmlinux 0xe4fb77c1 tty_ldisc_deref +EXPORT_SYMBOL_GPL vmlinux 0xe4fc542c sbitmap_bitmap_show +EXPORT_SYMBOL_GPL vmlinux 0xe501211f blk_mq_sched_try_insert_merge +EXPORT_SYMBOL_GPL vmlinux 0xe50419ca iommu_uapi_sva_unbind_gpasid +EXPORT_SYMBOL_GPL vmlinux 0xe50c14cb dm_suspended +EXPORT_SYMBOL_GPL vmlinux 0xe51b1939 snd_device_initialize +EXPORT_SYMBOL_GPL vmlinux 0xe54eff1e __blk_req_zone_write_lock +EXPORT_SYMBOL_GPL vmlinux 0xe54f7b14 nf_nat_hook +EXPORT_SYMBOL_GPL vmlinux 0xe556529f pci_destroy_slot +EXPORT_SYMBOL_GPL vmlinux 0xe558619f meson_pinctrl_probe +EXPORT_SYMBOL_GPL vmlinux 0xe566999e spi_sync_locked +EXPORT_SYMBOL_GPL vmlinux 0xe567d916 __devm_regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0xe56a85b3 clk_hw_register_fixed_factor EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe59957d2 mmu_interval_notifier_insert_locked +EXPORT_SYMBOL_GPL vmlinux 0xe58f1221 firmware_kobj +EXPORT_SYMBOL_GPL vmlinux 0xe5900185 setfl EXPORT_SYMBOL_GPL vmlinux 0xe59efb0e musb_clearb -EXPORT_SYMBOL_GPL vmlinux 0xe5a6a831 usb_get_status -EXPORT_SYMBOL_GPL vmlinux 0xe5ad1c9f spi_mem_get_name -EXPORT_SYMBOL_GPL vmlinux 0xe5afcf15 udp_abort +EXPORT_SYMBOL_GPL vmlinux 0xe5a41400 sdio_release_host +EXPORT_SYMBOL_GPL vmlinux 0xe5b18a8c ata_pci_sff_init_host +EXPORT_SYMBOL_GPL vmlinux 0xe5b1c8bd class_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xe5bfe5c5 sk_msg_clone +EXPORT_SYMBOL_GPL vmlinux 0xe5c11889 snd_soc_dai_set_fmt EXPORT_SYMBOL_GPL vmlinux 0xe5cb1943 hisi_clk_register_divider -EXPORT_SYMBOL_GPL vmlinux 0xe5efc4e0 snd_soc_dpcm_be_can_update -EXPORT_SYMBOL_GPL vmlinux 0xe6162e0d bio_alloc_kiocb -EXPORT_SYMBOL_GPL vmlinux 0xe623f17e snd_soc_component_compr_open -EXPORT_SYMBOL_GPL vmlinux 0xe627b1cc blkdev_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xe5d55c3e ata_sff_dev_select +EXPORT_SYMBOL_GPL vmlinux 0xe5e1e9b2 amba_ahb_device_add_res +EXPORT_SYMBOL_GPL vmlinux 0xe5e7283a pci_ecam_create +EXPORT_SYMBOL_GPL vmlinux 0xe5fc398b edac_mc_alloc EXPORT_SYMBOL_GPL vmlinux 0xe628bb9f phy_fibre_port_array -EXPORT_SYMBOL_GPL vmlinux 0xe6427801 platform_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe6537eec crypto_enqueue_request_head -EXPORT_SYMBOL_GPL vmlinux 0xe6643fcf pci_cfg_access_lock +EXPORT_SYMBOL_GPL vmlinux 0xe6293912 sdhci_set_uhs_signaling +EXPORT_SYMBOL_GPL vmlinux 0xe632e344 serial8250_update_uartclk +EXPORT_SYMBOL_GPL vmlinux 0xe636bda7 sdhci_cqe_disable +EXPORT_SYMBOL_GPL vmlinux 0xe64bafd5 regulator_bulk_force_disable +EXPORT_SYMBOL_GPL vmlinux 0xe6524d31 usb_string +EXPORT_SYMBOL_GPL vmlinux 0xe65858d6 snd_soc_get_volsw_range +EXPORT_SYMBOL_GPL vmlinux 0xe658c188 __platform_driver_probe +EXPORT_SYMBOL_GPL vmlinux 0xe667ae94 dev_nit_active EXPORT_SYMBOL_GPL vmlinux 0xe668835c __tracepoint_devlink_hwerr -EXPORT_SYMBOL_GPL vmlinux 0xe66db021 generic_fh_to_dentry -EXPORT_SYMBOL_GPL vmlinux 0xe6835927 exportfs_encode_fh -EXPORT_SYMBOL_GPL vmlinux 0xe685d205 pci_find_ht_capability -EXPORT_SYMBOL_GPL vmlinux 0xe6870278 of_devfreq_cooling_register -EXPORT_SYMBOL_GPL vmlinux 0xe698ca5d __rio_local_read_config_8 -EXPORT_SYMBOL_GPL vmlinux 0xe6a18e6c thermal_zone_device_register +EXPORT_SYMBOL_GPL vmlinux 0xe6767d0e mtk_pinconf_drive_get +EXPORT_SYMBOL_GPL vmlinux 0xe683493d dev_fill_forward_path +EXPORT_SYMBOL_GPL vmlinux 0xe683b8d3 iomap_dio_rw +EXPORT_SYMBOL_GPL vmlinux 0xe696ef32 efivar_entry_set +EXPORT_SYMBOL_GPL vmlinux 0xe697ff65 __synth_event_gen_cmd_start EXPORT_SYMBOL_GPL vmlinux 0xe6a257f1 divider_round_rate_parent -EXPORT_SYMBOL_GPL vmlinux 0xe6a341e5 irq_generic_chip_ops -EXPORT_SYMBOL_GPL vmlinux 0xe6a3c04b subsys_find_device_by_id -EXPORT_SYMBOL_GPL vmlinux 0xe6c0944c trace_event_buffer_commit +EXPORT_SYMBOL_GPL vmlinux 0xe6b03b8e power_supply_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe6b36b25 fscrypt_fname_siphash +EXPORT_SYMBOL_GPL vmlinux 0xe6b87c75 wm831x_regmap_config EXPORT_SYMBOL_GPL vmlinux 0xe6c7b5f3 synchronize_srcu -EXPORT_SYMBOL_GPL vmlinux 0xe6c8bafe mtd_read_user_prot_reg -EXPORT_SYMBOL_GPL vmlinux 0xe6c9b7d7 irq_gc_set_wake -EXPORT_SYMBOL_GPL vmlinux 0xe6db9ee0 pci_bus_resource_n -EXPORT_SYMBOL_GPL vmlinux 0xe6e03e48 skb_mpls_pop +EXPORT_SYMBOL_GPL vmlinux 0xe6d86b8d dma_alloc_noncontiguous EXPORT_SYMBOL_GPL vmlinux 0xe6e40502 rcu_get_gp_seq -EXPORT_SYMBOL_GPL vmlinux 0xe6e9f57d serial8250_rx_dma_flush EXPORT_SYMBOL_GPL vmlinux 0xe700d767 reset_control_bulk_deassert -EXPORT_SYMBOL_GPL vmlinux 0xe7055a37 input_device_enabled -EXPORT_SYMBOL_GPL vmlinux 0xe70ab89d inet_csk_clone_lock -EXPORT_SYMBOL_GPL vmlinux 0xe71d1c69 i2c_new_ancillary_device -EXPORT_SYMBOL_GPL vmlinux 0xe72cd9c7 regmap_multi_reg_write -EXPORT_SYMBOL_GPL vmlinux 0xe73814fa snd_pcm_stream_unlock -EXPORT_SYMBOL_GPL vmlinux 0xe7399d5f vp_modern_get_queue_size +EXPORT_SYMBOL_GPL vmlinux 0xe707a866 usb_hcd_is_primary_hcd +EXPORT_SYMBOL_GPL vmlinux 0xe70f3947 rio_unmap_outb_region +EXPORT_SYMBOL_GPL vmlinux 0xe70f5797 aead_init_geniv +EXPORT_SYMBOL_GPL vmlinux 0xe73c04ba bio_iov_iter_get_pages +EXPORT_SYMBOL_GPL vmlinux 0xe73ddb06 devm_clk_hw_unregister EXPORT_SYMBOL_GPL vmlinux 0xe747297d xas_find_conflict EXPORT_SYMBOL_GPL vmlinux 0xe753b68d devlink_fmsg_arr_pair_nest_end EXPORT_SYMBOL_GPL vmlinux 0xe75625fb cpu_bit_bitmap +EXPORT_SYMBOL_GPL vmlinux 0xe768e9eb handle_fasteoi_ack_irq EXPORT_SYMBOL_GPL vmlinux 0xe769232e sprint_symbol_no_offset -EXPORT_SYMBOL_GPL vmlinux 0xe7705e33 sk_msg_free +EXPORT_SYMBOL_GPL vmlinux 0xe7703778 fuse_direct_io +EXPORT_SYMBOL_GPL vmlinux 0xe77ceadd lwtunnel_build_state EXPORT_SYMBOL_GPL vmlinux 0xe783e261 sysfs_emit -EXPORT_SYMBOL_GPL vmlinux 0xe7884e5f scsi_free_sgtables -EXPORT_SYMBOL_GPL vmlinux 0xe79618a9 do_unregister_con_driver -EXPORT_SYMBOL_GPL vmlinux 0xe7963944 snd_soc_get_volsw -EXPORT_SYMBOL_GPL vmlinux 0xe7a4d608 pm_clk_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0xe7b5d859 dev_pm_opp_remove_table -EXPORT_SYMBOL_GPL vmlinux 0xe7cbfb9a vfs_test_lock +EXPORT_SYMBOL_GPL vmlinux 0xe78c156c sdhci_pltfm_suspend +EXPORT_SYMBOL_GPL vmlinux 0xe7a7cd08 ip6_datagram_release_cb EXPORT_SYMBOL_GPL vmlinux 0xe7d6d2d4 filter_match_preds -EXPORT_SYMBOL_GPL vmlinux 0xe7e9d252 pinmux_generic_get_function_name -EXPORT_SYMBOL_GPL vmlinux 0xe7eecfe8 umd_unload_blob +EXPORT_SYMBOL_GPL vmlinux 0xe7d9736b dma_buf_unpin +EXPORT_SYMBOL_GPL vmlinux 0xe7df3e07 dmaengine_desc_get_metadata_ptr +EXPORT_SYMBOL_GPL vmlinux 0xe7eecd13 handle_bad_irq EXPORT_SYMBOL_GPL vmlinux 0xe7eee3d5 __cookie_v4_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0xe7fa50ed sdhci_enable_sdio_irq +EXPORT_SYMBOL_GPL vmlinux 0xe817d045 xfrm_audit_state_delete +EXPORT_SYMBOL_GPL vmlinux 0xe817d49a pci_epc_get_msix EXPORT_SYMBOL_GPL vmlinux 0xe818b32b ata_bmdma_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xe82298bb rio_mport_read_config_16 -EXPORT_SYMBOL_GPL vmlinux 0xe8413674 usb_unanchor_urb +EXPORT_SYMBOL_GPL vmlinux 0xe81a6c41 debugfs_real_fops +EXPORT_SYMBOL_GPL vmlinux 0xe824308c gpiochip_generic_config +EXPORT_SYMBOL_GPL vmlinux 0xe834e6a9 net_ns_type_operations +EXPORT_SYMBOL_GPL vmlinux 0xe84428de devlink_trap_report EXPORT_SYMBOL_GPL vmlinux 0xe84f6e5c pciserial_remove_ports +EXPORT_SYMBOL_GPL vmlinux 0xe8584158 dev_pm_opp_put EXPORT_SYMBOL_GPL vmlinux 0xe85a9fd3 cpu_cluster_pm_exit +EXPORT_SYMBOL_GPL vmlinux 0xe85f643d ata_pci_shutdown_one EXPORT_SYMBOL_GPL vmlinux 0xe862c4b7 dpm_suspend_start -EXPORT_SYMBOL_GPL vmlinux 0xe86ddccd rockchip_pcie_init_port -EXPORT_SYMBOL_GPL vmlinux 0xe8822eaa gpiod_export_link -EXPORT_SYMBOL_GPL vmlinux 0xe88e6236 sk_msg_memcopy_from_iter -EXPORT_SYMBOL_GPL vmlinux 0xe8b02545 devm_qcom_smem_state_get -EXPORT_SYMBOL_GPL vmlinux 0xe8c2f77d gpiochip_is_requested -EXPORT_SYMBOL_GPL vmlinux 0xe8c461b3 mptcp_pm_get_add_addr_signal_max -EXPORT_SYMBOL_GPL vmlinux 0xe8d678d6 of_clk_src_simple_get -EXPORT_SYMBOL_GPL vmlinux 0xe8eb7b08 trace_define_field -EXPORT_SYMBOL_GPL vmlinux 0xe90a4030 devm_snd_dmaengine_pcm_register -EXPORT_SYMBOL_GPL vmlinux 0xe910c584 fsnotify_init_mark +EXPORT_SYMBOL_GPL vmlinux 0xe874ccf6 dev_get_regmap +EXPORT_SYMBOL_GPL vmlinux 0xe87abb83 nanddev_bbt_update +EXPORT_SYMBOL_GPL vmlinux 0xe88126e2 sdio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xe8974db6 __mmc_poll_for_busy +EXPORT_SYMBOL_GPL vmlinux 0xe89abd36 gpio_to_desc +EXPORT_SYMBOL_GPL vmlinux 0xe8ae9fad sysfs_group_change_owner +EXPORT_SYMBOL_GPL vmlinux 0xe8be9039 netdev_is_rx_handler_busy +EXPORT_SYMBOL_GPL vmlinux 0xe8dd9561 snd_ctl_disconnect_layer +EXPORT_SYMBOL_GPL vmlinux 0xe8e09e77 mtd_write_user_prot_reg +EXPORT_SYMBOL_GPL vmlinux 0xe8e0ed57 nand_deselect_target +EXPORT_SYMBOL_GPL vmlinux 0xe8ef53c7 __traceiter_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0xe8f588ad ata_bmdma_stop +EXPORT_SYMBOL_GPL vmlinux 0xe8fdf6a7 get_tree_mtd +EXPORT_SYMBOL_GPL vmlinux 0xe902904f devm_hwrng_unregister EXPORT_SYMBOL_GPL vmlinux 0xe911df29 eventfd_ctx_do_read EXPORT_SYMBOL_GPL vmlinux 0xe9140521 usb_ep_alloc_request -EXPORT_SYMBOL_GPL vmlinux 0xe9247c0a sdhci_pltfm_suspend -EXPORT_SYMBOL_GPL vmlinux 0xe92c4edf gpiochip_line_is_open_drain -EXPORT_SYMBOL_GPL vmlinux 0xe92c7f2e devlink_dpipe_table_resource_set +EXPORT_SYMBOL_GPL vmlinux 0xe919b95d key_type_asymmetric +EXPORT_SYMBOL_GPL vmlinux 0xe9294f60 __pm_runtime_set_status +EXPORT_SYMBOL_GPL vmlinux 0xe9381f59 regulator_enable EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free -EXPORT_SYMBOL_GPL vmlinux 0xe9439c5f dev_xdp_prog_count EXPORT_SYMBOL_GPL vmlinux 0xe943e099 rockchip_register_softrst -EXPORT_SYMBOL_GPL vmlinux 0xe950a79c tpm_chip_start -EXPORT_SYMBOL_GPL vmlinux 0xe950cd0a ip6_pol_route EXPORT_SYMBOL_GPL vmlinux 0xe956a75c pl320_ipc_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0xe957836a debugfs_create_file -EXPORT_SYMBOL_GPL vmlinux 0xe967e44b dma_buf_attach -EXPORT_SYMBOL_GPL vmlinux 0xe9705d0e devm_hwspin_lock_request_specific -EXPORT_SYMBOL_GPL vmlinux 0xe9717f9d ahci_platform_resume -EXPORT_SYMBOL_GPL vmlinux 0xe97beee7 auxiliary_find_device -EXPORT_SYMBOL_GPL vmlinux 0xe97cade0 cpu_subsys +EXPORT_SYMBOL_GPL vmlinux 0xe95b39ca pci_walk_bus +EXPORT_SYMBOL_GPL vmlinux 0xe961987e pci_device_is_present +EXPORT_SYMBOL_GPL vmlinux 0xe966c6bf fwnode_get_named_child_node +EXPORT_SYMBOL_GPL vmlinux 0xe969eebc regcache_drop_region +EXPORT_SYMBOL_GPL vmlinux 0xe96ef587 bpf_trace_run2 +EXPORT_SYMBOL_GPL vmlinux 0xe97669ad snd_soc_of_get_dai_link_codecs +EXPORT_SYMBOL_GPL vmlinux 0xe9781071 crypto_get_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xe9811092 fuse_fill_super_common +EXPORT_SYMBOL_GPL vmlinux 0xe9831454 espintcp_push_skb +EXPORT_SYMBOL_GPL vmlinux 0xe98428b4 gpiod_set_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xe98bd7b8 xdp_rxq_info_unreg_mem_model EXPORT_SYMBOL_GPL vmlinux 0xe98f55f2 arm_smccc_get_version -EXPORT_SYMBOL_GPL vmlinux 0xe9976004 bsg_register_queue -EXPORT_SYMBOL_GPL vmlinux 0xe99b5386 of_reconfig_get_state_change +EXPORT_SYMBOL_GPL vmlinux 0xe98fa442 dev_pm_set_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xe992e1f2 tty_set_termios +EXPORT_SYMBOL_GPL vmlinux 0xe995d692 fib_alias_hw_flags_set EXPORT_SYMBOL_GPL vmlinux 0xe9a22673 topology_set_thermal_pressure EXPORT_SYMBOL_GPL vmlinux 0xe9a7fe16 nvmem_cell_read +EXPORT_SYMBOL_GPL vmlinux 0xe9bef1bd phy_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0xe9c054ec __root_device_register EXPORT_SYMBOL_GPL vmlinux 0xe9c616de cpu_latency_qos_add_request -EXPORT_SYMBOL_GPL vmlinux 0xe9cdcbb2 irq_domain_simple_ops -EXPORT_SYMBOL_GPL vmlinux 0xe9ce559c ata_port_freeze +EXPORT_SYMBOL_GPL vmlinux 0xe9c85910 dw_pcie_find_ext_capability EXPORT_SYMBOL_GPL vmlinux 0xe9d1b7cf irq_to_pcap -EXPORT_SYMBOL_GPL vmlinux 0xe9d9a3f6 nvmem_cell_get -EXPORT_SYMBOL_GPL vmlinux 0xe9e2fb2d smpboot_unregister_percpu_thread -EXPORT_SYMBOL_GPL vmlinux 0xe9e3b1d7 blk_bio_list_merge -EXPORT_SYMBOL_GPL vmlinux 0xe9fae968 aead_init_geniv +EXPORT_SYMBOL_GPL vmlinux 0xe9d22590 ata_host_alloc +EXPORT_SYMBOL_GPL vmlinux 0xe9e75baf xhci_suspend +EXPORT_SYMBOL_GPL vmlinux 0xe9e925dd switchdev_handle_fdb_add_to_device +EXPORT_SYMBOL_GPL vmlinux 0xe9eafc9c power_supply_register EXPORT_SYMBOL_GPL vmlinux 0xea018bbb mpi_test_bit EXPORT_SYMBOL_GPL vmlinux 0xea0910fc sg_free_table_chained +EXPORT_SYMBOL_GPL vmlinux 0xea0daa72 led_set_brightness_sync EXPORT_SYMBOL_GPL vmlinux 0xea114216 sg_alloc_table_chained EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd -EXPORT_SYMBOL_GPL vmlinux 0xea165920 snd_soc_bytes_put +EXPORT_SYMBOL_GPL vmlinux 0xea130d95 mptcp_token_get_sock EXPORT_SYMBOL_GPL vmlinux 0xea1bb291 bL_switcher_get_enabled -EXPORT_SYMBOL_GPL vmlinux 0xea25e95a iomap_dio_iopoll +EXPORT_SYMBOL_GPL vmlinux 0xea24c61c pinctrl_utils_free_map EXPORT_SYMBOL_GPL vmlinux 0xea314986 srcu_batches_completed 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 0xea4edf0c transport_configure_device EXPORT_SYMBOL_GPL vmlinux 0xea50dad3 ahci_ignore_sss -EXPORT_SYMBOL_GPL vmlinux 0xea6abe7e serial8250_em485_start_tx -EXPORT_SYMBOL_GPL vmlinux 0xea6e5559 mptcp_pm_get_add_addr_accept_max -EXPORT_SYMBOL_GPL vmlinux 0xea731240 driver_remove_file -EXPORT_SYMBOL_GPL vmlinux 0xea7796fc of_pci_get_devfn -EXPORT_SYMBOL_GPL vmlinux 0xea7c2773 netlink_remove_tap -EXPORT_SYMBOL_GPL vmlinux 0xea86f9c8 pinctrl_utils_reserve_map -EXPORT_SYMBOL_GPL vmlinux 0xea8a6fa7 rockchip_clk_register_branches -EXPORT_SYMBOL_GPL vmlinux 0xeab7a39c usb_udc_vbus_handler -EXPORT_SYMBOL_GPL vmlinux 0xeaba44f8 blk_queue_rq_timeout -EXPORT_SYMBOL_GPL vmlinux 0xeabd9648 bpf_prog_alloc -EXPORT_SYMBOL_GPL vmlinux 0xeac7f513 crypto_alg_extsize +EXPORT_SYMBOL_GPL vmlinux 0xea5c425d devlink_params_publish +EXPORT_SYMBOL_GPL vmlinux 0xea7524dd sdhci_set_power +EXPORT_SYMBOL_GPL vmlinux 0xea84e740 blk_queue_max_discard_segments +EXPORT_SYMBOL_GPL vmlinux 0xeaa3b483 regulator_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xeab49c62 snd_card_ref +EXPORT_SYMBOL_GPL vmlinux 0xeabc8888 irq_chip_request_resources_parent +EXPORT_SYMBOL_GPL vmlinux 0xeacc1713 usb_alloc_urb +EXPORT_SYMBOL_GPL vmlinux 0xead09a30 sata_sff_hardreset 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 0xead5f55d set_task_ioprio -EXPORT_SYMBOL_GPL vmlinux 0xeadf479a of_i2c_get_board_info EXPORT_SYMBOL_GPL vmlinux 0xeae0f496 clean_acked_data_flush -EXPORT_SYMBOL_GPL vmlinux 0xeae84ca4 spi_get_next_queued_message -EXPORT_SYMBOL_GPL vmlinux 0xeaf8638e rdev_get_dev -EXPORT_SYMBOL_GPL vmlinux 0xeaf9c833 device_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0xeaf2fdef mptcp_subflow_init_cookie_req +EXPORT_SYMBOL_GPL vmlinux 0xeaf951f9 dev_pm_opp_get_opp_count +EXPORT_SYMBOL_GPL vmlinux 0xeafc2328 rio_alloc_net EXPORT_SYMBOL_GPL vmlinux 0xeb08e33b ipi_send_mask -EXPORT_SYMBOL_GPL vmlinux 0xeb18b862 iommu_present +EXPORT_SYMBOL_GPL vmlinux 0xeb0ed0e4 rio_lock_device +EXPORT_SYMBOL_GPL vmlinux 0xeb21d18d vp_modern_get_driver_features EXPORT_SYMBOL_GPL vmlinux 0xeb2f825c init_rs_gfp -EXPORT_SYMBOL_GPL vmlinux 0xeb44002b regulator_list_voltage_linear -EXPORT_SYMBOL_GPL vmlinux 0xeb4bcdf0 rtnl_link_unregister -EXPORT_SYMBOL_GPL vmlinux 0xeb546e76 usb_initialize_gadget -EXPORT_SYMBOL_GPL vmlinux 0xeb625956 usb_debug_root +EXPORT_SYMBOL_GPL vmlinux 0xeb478faf subsys_system_register +EXPORT_SYMBOL_GPL vmlinux 0xeb54c648 usb_hcd_check_unlink_urb EXPORT_SYMBOL_GPL vmlinux 0xeb711ae7 snd_soc_params_to_bclk -EXPORT_SYMBOL_GPL vmlinux 0xeb762509 __fscrypt_inode_uses_inline_crypto +EXPORT_SYMBOL_GPL vmlinux 0xeb721adf bio_add_zone_append_page EXPORT_SYMBOL_GPL vmlinux 0xeb8d8c39 kmsg_dump_get_buffer EXPORT_SYMBOL_GPL vmlinux 0xeb9abbee ata_sff_queue_work -EXPORT_SYMBOL_GPL vmlinux 0xeb9ce952 edac_device_handle_ue_count -EXPORT_SYMBOL_GPL vmlinux 0xebacb270 usb_gadget_vbus_draw -EXPORT_SYMBOL_GPL vmlinux 0xebb227ae usb_gadget_udc_reset +EXPORT_SYMBOL_GPL vmlinux 0xebb99948 fib_rules_dump +EXPORT_SYMBOL_GPL vmlinux 0xebbc06cf __tracepoint_pelt_thermal_tp EXPORT_SYMBOL_GPL vmlinux 0xebbe1622 io_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xebc3d3bf ata_port_desc EXPORT_SYMBOL_GPL vmlinux 0xebc9a09f lock_system_sleep -EXPORT_SYMBOL_GPL vmlinux 0xebcf3299 iommu_domain_free +EXPORT_SYMBOL_GPL vmlinux 0xebcb0aa4 virtio_device_freeze +EXPORT_SYMBOL_GPL vmlinux 0xebd4c36b vchan_find_desc EXPORT_SYMBOL_GPL vmlinux 0xebd4cc11 mctrl_gpio_enable_ms -EXPORT_SYMBOL_GPL vmlinux 0xebe78610 usb_get_dev -EXPORT_SYMBOL_GPL vmlinux 0xebea9246 clean_acked_data_disable +EXPORT_SYMBOL_GPL vmlinux 0xebd8b890 extcon_get_property EXPORT_SYMBOL_GPL vmlinux 0xebeb24a2 alarm_cancel -EXPORT_SYMBOL_GPL vmlinux 0xec082bef devm_devfreq_event_remove_edev -EXPORT_SYMBOL_GPL vmlinux 0xec09da7e fib6_get_table +EXPORT_SYMBOL_GPL vmlinux 0xebf466c9 ata_pci_bmdma_init_one EXPORT_SYMBOL_GPL vmlinux 0xec0f8740 edac_mod_work -EXPORT_SYMBOL_GPL vmlinux 0xec33a65a wakeup_source_add -EXPORT_SYMBOL_GPL vmlinux 0xec360157 devres_close_group -EXPORT_SYMBOL_GPL vmlinux 0xec42599c cn_add_callback -EXPORT_SYMBOL_GPL vmlinux 0xec435558 __devm_alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0xec43a035 trace_array_destroy -EXPORT_SYMBOL_GPL vmlinux 0xec4b414c tcp_leave_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0xec454b14 usb_get_role_switch_default_mode +EXPORT_SYMBOL_GPL vmlinux 0xec46d25a __of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0xec4dac9a sata_scr_read EXPORT_SYMBOL_GPL vmlinux 0xec523f88 hrtimer_start_range_ns -EXPORT_SYMBOL_GPL vmlinux 0xec566d8c tty_port_install -EXPORT_SYMBOL_GPL vmlinux 0xec6177ef sk_msg_alloc -EXPORT_SYMBOL_GPL vmlinux 0xec7168e9 vchan_tx_submit -EXPORT_SYMBOL_GPL vmlinux 0xec730d63 spi_controller_dma_unmap_mem_op_data -EXPORT_SYMBOL_GPL vmlinux 0xec735436 xfrm_audit_state_add +EXPORT_SYMBOL_GPL vmlinux 0xec6bc76e sdio_claim_irq +EXPORT_SYMBOL_GPL vmlinux 0xec6d2c38 pm_genpd_add_subdomain +EXPORT_SYMBOL_GPL vmlinux 0xec6d8390 devlink_param_publish +EXPORT_SYMBOL_GPL vmlinux 0xec6e9c35 devm_snd_soc_register_component EXPORT_SYMBOL_GPL vmlinux 0xec774acb cpufreq_frequency_table_verify -EXPORT_SYMBOL_GPL vmlinux 0xec7e63e6 crypto_unregister_ahashes -EXPORT_SYMBOL_GPL vmlinux 0xec9fbad9 blk_freeze_queue_start -EXPORT_SYMBOL_GPL vmlinux 0xeca28c63 clk_hw_get_num_parents -EXPORT_SYMBOL_GPL vmlinux 0xecab329a tty_buffer_space_avail -EXPORT_SYMBOL_GPL vmlinux 0xecb5f32d uart_set_options -EXPORT_SYMBOL_GPL vmlinux 0xeccf4e1c device_del -EXPORT_SYMBOL_GPL vmlinux 0xecd08182 devm_pm_opp_of_add_table -EXPORT_SYMBOL_GPL vmlinux 0xecd73ac5 devm_regmap_field_free -EXPORT_SYMBOL_GPL vmlinux 0xecd8d9dc snd_soc_new_ac97_component -EXPORT_SYMBOL_GPL vmlinux 0xecda3bf3 trace_get_event_file -EXPORT_SYMBOL_GPL vmlinux 0xecebd2c8 bsg_setup_queue -EXPORT_SYMBOL_GPL vmlinux 0xecf2ce47 bpf_trace_run9 -EXPORT_SYMBOL_GPL vmlinux 0xecfa4f93 sysfs_rename_link_ns -EXPORT_SYMBOL_GPL vmlinux 0xed1c942c badblocks_set +EXPORT_SYMBOL_GPL vmlinux 0xec902ae1 fat_attach +EXPORT_SYMBOL_GPL vmlinux 0xecb64016 crypto_register_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xecdb4297 platform_device_add_resources +EXPORT_SYMBOL_GPL vmlinux 0xece75fb2 dm_start_time_ns_from_clone +EXPORT_SYMBOL_GPL vmlinux 0xecfca314 serial8250_em485_config +EXPORT_SYMBOL_GPL vmlinux 0xed11f416 sdhci_start_tuning +EXPORT_SYMBOL_GPL vmlinux 0xed27667d snd_soc_dai_set_tdm_slot EXPORT_SYMBOL_GPL vmlinux 0xed344146 mcpm_is_available -EXPORT_SYMBOL_GPL vmlinux 0xed424210 iptunnel_handle_offloads -EXPORT_SYMBOL_GPL vmlinux 0xed5a3848 serial8250_do_get_mctrl -EXPORT_SYMBOL_GPL vmlinux 0xed750b9c devlink_port_type_eth_set -EXPORT_SYMBOL_GPL vmlinux 0xed7acdb9 ata_link_next -EXPORT_SYMBOL_GPL vmlinux 0xed853555 dst_cache_set_ip4 -EXPORT_SYMBOL_GPL vmlinux 0xed9aabcc simple_attr_open -EXPORT_SYMBOL_GPL vmlinux 0xedb00393 crypto_hash_walk_done -EXPORT_SYMBOL_GPL vmlinux 0xedb934fa regmap_fields_update_bits_base -EXPORT_SYMBOL_GPL vmlinux 0xede99b35 dev_pm_opp_set_clkname -EXPORT_SYMBOL_GPL vmlinux 0xedebb81b uart_handle_cts_change -EXPORT_SYMBOL_GPL vmlinux 0xedee4e14 dev_attr_ncq_prio_supported -EXPORT_SYMBOL_GPL vmlinux 0xedf91bde tpm2_flush_context -EXPORT_SYMBOL_GPL vmlinux 0xee0555d1 regmap_get_raw_read_max -EXPORT_SYMBOL_GPL vmlinux 0xee1bd64e unregister_wide_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0xee1e2b7b irqchip_fwnode_ops -EXPORT_SYMBOL_GPL vmlinux 0xee266e80 pci_dev_trylock +EXPORT_SYMBOL_GPL vmlinux 0xed3f8455 sock_gen_put +EXPORT_SYMBOL_GPL vmlinux 0xed417142 sdio_release_irq +EXPORT_SYMBOL_GPL vmlinux 0xed4338ff rt_mutex_unlock +EXPORT_SYMBOL_GPL vmlinux 0xed438ff5 fib_add_nexthop +EXPORT_SYMBOL_GPL vmlinux 0xed4b6ec8 platform_find_device_by_driver +EXPORT_SYMBOL_GPL vmlinux 0xed64ed34 devlink_port_unregister +EXPORT_SYMBOL_GPL vmlinux 0xed7cfbbe tty_buffer_request_room +EXPORT_SYMBOL_GPL vmlinux 0xed7e06cd blk_insert_cloned_request +EXPORT_SYMBOL_GPL vmlinux 0xed9750f5 sata_lpm_ignore_phy_events +EXPORT_SYMBOL_GPL vmlinux 0xed9b8a71 ata_sff_dma_pause +EXPORT_SYMBOL_GPL vmlinux 0xedb36799 md_new_event +EXPORT_SYMBOL_GPL vmlinux 0xedb5ee92 phy_driver_is_genphy +EXPORT_SYMBOL_GPL vmlinux 0xedb801c5 devlink_resource_occ_get_unregister +EXPORT_SYMBOL_GPL vmlinux 0xedbe5dd9 __strp_unpause +EXPORT_SYMBOL_GPL vmlinux 0xedca95a6 xdp_convert_zc_to_xdp_frame +EXPORT_SYMBOL_GPL vmlinux 0xedd10746 mtd_block_isreserved +EXPORT_SYMBOL_GPL vmlinux 0xedd44fa6 pm_generic_restore +EXPORT_SYMBOL_GPL vmlinux 0xedea4862 pci_probe_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0xedf7b9a1 extcon_get_property_capability +EXPORT_SYMBOL_GPL vmlinux 0xee0619cc irq_gc_ack_set_bit +EXPORT_SYMBOL_GPL vmlinux 0xee07c19d free_fib_info +EXPORT_SYMBOL_GPL vmlinux 0xee0bdfe4 snd_soc_component_compr_copy +EXPORT_SYMBOL_GPL vmlinux 0xee23f300 debugfs_write_file_bool +EXPORT_SYMBOL_GPL vmlinux 0xee32489e __spi_alloc_controller +EXPORT_SYMBOL_GPL vmlinux 0xee369267 sock_prot_inuse_get EXPORT_SYMBOL_GPL vmlinux 0xee38ef57 register_switchdev_blocking_notifier -EXPORT_SYMBOL_GPL vmlinux 0xee54762f extcon_register_notifier_all -EXPORT_SYMBOL_GPL vmlinux 0xee63979e devm_nvmem_device_get +EXPORT_SYMBOL_GPL vmlinux 0xee3e763b wm831x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xee4124f3 power_supply_get_battery_info +EXPORT_SYMBOL_GPL vmlinux 0xee48a62b pci_set_host_bridge_release +EXPORT_SYMBOL_GPL vmlinux 0xee49e13f ata_pio_need_iordy +EXPORT_SYMBOL_GPL vmlinux 0xee5f86d3 kthread_func +EXPORT_SYMBOL_GPL vmlinux 0xee69d4d3 debugfs_remove EXPORT_SYMBOL_GPL vmlinux 0xee6b71c4 syscon_regmap_lookup_by_compatible -EXPORT_SYMBOL_GPL vmlinux 0xee9731d4 dm_internal_resume_fast -EXPORT_SYMBOL_GPL vmlinux 0xee9aac79 pci_msi_unmask_irq -EXPORT_SYMBOL_GPL vmlinux 0xeeaa34b4 vfs_getxattr_alloc -EXPORT_SYMBOL_GPL vmlinux 0xeeac4f7a crypto_aead_encrypt -EXPORT_SYMBOL_GPL vmlinux 0xeeb575bd register_user_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0xeebfe5d1 crypto_default_rng -EXPORT_SYMBOL_GPL vmlinux 0xeec5e782 pinctrl_select_state -EXPORT_SYMBOL_GPL vmlinux 0xeec621e9 fat_detach -EXPORT_SYMBOL_GPL vmlinux 0xeec84e1b md_stop_writes -EXPORT_SYMBOL_GPL vmlinux 0xeed213bc class_compat_create_link -EXPORT_SYMBOL_GPL vmlinux 0xeed6e98a regmap_exit +EXPORT_SYMBOL_GPL vmlinux 0xee7269c8 ack_all_badblocks +EXPORT_SYMBOL_GPL vmlinux 0xee740930 nand_erase_op +EXPORT_SYMBOL_GPL vmlinux 0xee81fa68 arm_iommu_attach_device +EXPORT_SYMBOL_GPL vmlinux 0xee82f3de snd_soc_dai_compr_set_metadata +EXPORT_SYMBOL_GPL vmlinux 0xee8bc473 usb_anchor_urb +EXPORT_SYMBOL_GPL vmlinux 0xee8f64cf xdp_master_redirect +EXPORT_SYMBOL_GPL vmlinux 0xeeab677f devm_regulator_irq_helper +EXPORT_SYMBOL_GPL vmlinux 0xeeba2fce device_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0xeeba5594 clean_acked_data_disable +EXPORT_SYMBOL_GPL vmlinux 0xeebedbd0 rio_attach_device +EXPORT_SYMBOL_GPL vmlinux 0xeebf3921 devm_pm_opp_set_regulators +EXPORT_SYMBOL_GPL vmlinux 0xeece1903 fib_rule_matchall +EXPORT_SYMBOL_GPL vmlinux 0xeece64be devm_regmap_del_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0xeedc0a60 __devm_reset_control_get EXPORT_SYMBOL_GPL vmlinux 0xeedd987e phy_10gbit_features_array EXPORT_SYMBOL_GPL vmlinux 0xeedfcec3 task_work_run -EXPORT_SYMBOL_GPL vmlinux 0xeee00040 regmap_raw_read EXPORT_SYMBOL_GPL vmlinux 0xeee5fe32 bpf_master_redirect_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xeee772fa perf_event_enable -EXPORT_SYMBOL_GPL vmlinux 0xeef34cc7 regulator_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0xeef5c75f device_phy_find_device -EXPORT_SYMBOL_GPL vmlinux 0xeefaea16 usb_bulk_msg -EXPORT_SYMBOL_GPL vmlinux 0xeefd75b0 wm8350_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xeeeab8e1 inet6_sk_rebuild_header +EXPORT_SYMBOL_GPL vmlinux 0xeeecdcbc rdev_get_drvdata EXPORT_SYMBOL_GPL vmlinux 0xef010a76 rhashtable_free_and_destroy -EXPORT_SYMBOL_GPL vmlinux 0xef06506c sdio_retune_hold_now -EXPORT_SYMBOL_GPL vmlinux 0xef0f6307 snd_soc_component_compr_pointer +EXPORT_SYMBOL_GPL vmlinux 0xef04b7b6 ahci_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0xef073d0d pm_clk_suspend +EXPORT_SYMBOL_GPL vmlinux 0xef0f0189 of_address_to_resource +EXPORT_SYMBOL_GPL vmlinux 0xef1b17c3 pci_epc_set_bar +EXPORT_SYMBOL_GPL vmlinux 0xef1b476b snd_soc_component_compr_free +EXPORT_SYMBOL_GPL vmlinux 0xef263800 query_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0xef26fd60 usb_udc_vbus_handler EXPORT_SYMBOL_GPL vmlinux 0xef29fcdd clk_bulk_put -EXPORT_SYMBOL_GPL vmlinux 0xef35a2bf crypto_alloc_acomp -EXPORT_SYMBOL_GPL vmlinux 0xef45afdb gpiod_set_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xef2e66e5 noop_invalidatepage EXPORT_SYMBOL_GPL vmlinux 0xef464c28 getboottime64 EXPORT_SYMBOL_GPL vmlinux 0xef5db66d regulator_get_init_drvdata -EXPORT_SYMBOL_GPL vmlinux 0xef60d8d8 bus_get_device_klist +EXPORT_SYMBOL_GPL vmlinux 0xef66e933 rio_request_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0xef68c61e irq_set_chained_handler_and_data EXPORT_SYMBOL_GPL vmlinux 0xef6c3f70 round_jiffies_up_relative EXPORT_SYMBOL_GPL vmlinux 0xef70eb7e ring_buffer_iter_advance +EXPORT_SYMBOL_GPL vmlinux 0xef719e3f blkdev_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xef781fce pwm_adjust_config EXPORT_SYMBOL_GPL vmlinux 0xef7ba8fa mutex_lock_io -EXPORT_SYMBOL_GPL vmlinux 0xef836674 of_property_match_string EXPORT_SYMBOL_GPL vmlinux 0xef83eed1 usb_unlink_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0xef844f3b cookie_tcp_reqsk_alloc -EXPORT_SYMBOL_GPL vmlinux 0xef8ef2eb ata_sff_check_status -EXPORT_SYMBOL_GPL vmlinux 0xef90bb79 devm_pwmchip_add -EXPORT_SYMBOL_GPL vmlinux 0xefa0d9f4 usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0xef8d1c4c sched_set_fifo EXPORT_SYMBOL_GPL vmlinux 0xefa2c27d register_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0xefa37533 crypto_register_aead +EXPORT_SYMBOL_GPL vmlinux 0xefa3c025 of_irq_to_resource EXPORT_SYMBOL_GPL vmlinux 0xefaace6e mv_mbus_dram_info -EXPORT_SYMBOL_GPL vmlinux 0xefabfd46 spi_finalize_current_message -EXPORT_SYMBOL_GPL vmlinux 0xefae4413 __rt_mutex_init -EXPORT_SYMBOL_GPL vmlinux 0xefc37915 iommu_map_atomic -EXPORT_SYMBOL_GPL vmlinux 0xefc487c2 devm_gpio_free -EXPORT_SYMBOL_GPL vmlinux 0xefc4ad6e regulator_set_voltage_time -EXPORT_SYMBOL_GPL vmlinux 0xefc72c8c relay_late_setup_files -EXPORT_SYMBOL_GPL vmlinux 0xefe7a6d8 nand_erase_op +EXPORT_SYMBOL_GPL vmlinux 0xefaee81f pinconf_generic_parse_dt_config +EXPORT_SYMBOL_GPL vmlinux 0xefc2ebfc skb_zerocopy_iter_dgram +EXPORT_SYMBOL_GPL vmlinux 0xefd15149 fscrypt_ioctl_remove_key_all_users +EXPORT_SYMBOL_GPL vmlinux 0xefd3ba99 sdhci_dumpregs +EXPORT_SYMBOL_GPL vmlinux 0xefd82599 key_set_timeout +EXPORT_SYMBOL_GPL vmlinux 0xefe60b4d ata_sas_port_stop EXPORT_SYMBOL_GPL vmlinux 0xefeafcf1 edac_has_mcs -EXPORT_SYMBOL_GPL vmlinux 0xf0228d84 netdev_set_default_ethtool_ops -EXPORT_SYMBOL_GPL vmlinux 0xf0342520 altr_sysmgr_regmap_lookup_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0xf04605fc dev_get_regmap -EXPORT_SYMBOL_GPL vmlinux 0xf049a106 wwan_port_rx -EXPORT_SYMBOL_GPL vmlinux 0xf04a077a raw_seq_next -EXPORT_SYMBOL_GPL vmlinux 0xf05753c0 mmc_regulator_set_ocr +EXPORT_SYMBOL_GPL vmlinux 0xeff1d42c fuse_dev_install +EXPORT_SYMBOL_GPL vmlinux 0xeff9d4b0 __clk_mux_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0xeffda105 wm831x_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0xf000dd58 usb_hcd_giveback_urb +EXPORT_SYMBOL_GPL vmlinux 0xf00a9be9 sched_trace_cfs_rq_avg +EXPORT_SYMBOL_GPL vmlinux 0xf0389cbf virtqueue_get_buf +EXPORT_SYMBOL_GPL vmlinux 0xf042aef8 pci_epc_add_epf +EXPORT_SYMBOL_GPL vmlinux 0xf04c2120 regmap_add_irq_chip_fwnode EXPORT_SYMBOL_GPL vmlinux 0xf05a52fe asn1_encode_oid -EXPORT_SYMBOL_GPL vmlinux 0xf05b0128 bpf_prog_create_from_user -EXPORT_SYMBOL_GPL vmlinux 0xf06eadf7 snd_soc_component_compr_free -EXPORT_SYMBOL_GPL vmlinux 0xf077a1c2 usb_get_role_switch_default_mode -EXPORT_SYMBOL_GPL vmlinux 0xf0782e0a pinctrl_dev_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0xf078e072 gen_pool_get -EXPORT_SYMBOL_GPL vmlinux 0xf078e5c7 snd_soc_unregister_dai +EXPORT_SYMBOL_GPL vmlinux 0xf05cb653 init_dummy_netdev +EXPORT_SYMBOL_GPL vmlinux 0xf0610782 pm_generic_thaw +EXPORT_SYMBOL_GPL vmlinux 0xf065c782 fscrypt_prepare_new_inode +EXPORT_SYMBOL_GPL vmlinux 0xf07a4daa sysfs_merge_group +EXPORT_SYMBOL_GPL vmlinux 0xf088d997 synth_event_trace_start +EXPORT_SYMBOL_GPL vmlinux 0xf089df38 snd_soc_dai_compr_get_params EXPORT_SYMBOL_GPL vmlinux 0xf0910075 sfp_bus_del_upstream -EXPORT_SYMBOL_GPL vmlinux 0xf09cfff7 mtd_panic_write -EXPORT_SYMBOL_GPL vmlinux 0xf0ac9f8c power_supply_external_power_changed -EXPORT_SYMBOL_GPL vmlinux 0xf0bddefa of_platform_populate -EXPORT_SYMBOL_GPL vmlinux 0xf0d89675 add_page_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0xf0f5465d dm_copy_name_and_uuid -EXPORT_SYMBOL_GPL vmlinux 0xf0f783ce event_triggers_post_call +EXPORT_SYMBOL_GPL vmlinux 0xf0a670ac devm_gpiochip_add_data_with_key +EXPORT_SYMBOL_GPL vmlinux 0xf0c076d0 sched_trace_cfs_rq_path +EXPORT_SYMBOL_GPL vmlinux 0xf0c21356 transport_remove_device +EXPORT_SYMBOL_GPL vmlinux 0xf0cc6060 snd_soc_dpcm_runtime_update +EXPORT_SYMBOL_GPL vmlinux 0xf0d1656c ata_cable_sata +EXPORT_SYMBOL_GPL vmlinux 0xf0f4c9f1 efivar_entry_delete +EXPORT_SYMBOL_GPL vmlinux 0xf0f83807 snd_ctl_register_layer EXPORT_SYMBOL_GPL vmlinux 0xf0f95e51 musb_readl -EXPORT_SYMBOL_GPL vmlinux 0xf1026025 usb_ep0_reinit -EXPORT_SYMBOL_GPL vmlinux 0xf10b73fb xdp_rxq_info_unreg +EXPORT_SYMBOL_GPL vmlinux 0xf10b7e1f devm_devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0xf10f8107 mtk_pinconf_bias_disable_get_rev1 +EXPORT_SYMBOL_GPL vmlinux 0xf11115ac switchdev_handle_port_obj_add +EXPORT_SYMBOL_GPL vmlinux 0xf11af9bb trace_array_init_printk +EXPORT_SYMBOL_GPL vmlinux 0xf1217616 fwnode_get_parent EXPORT_SYMBOL_GPL vmlinux 0xf12180fd imx_1443x_dram_pll -EXPORT_SYMBOL_GPL vmlinux 0xf121b011 tpm_put_ops -EXPORT_SYMBOL_GPL vmlinux 0xf139a008 pci_iomap_wc -EXPORT_SYMBOL_GPL vmlinux 0xf13e100f snd_compress_new -EXPORT_SYMBOL_GPL vmlinux 0xf140ea6f fat_setattr -EXPORT_SYMBOL_GPL vmlinux 0xf1488175 __traceiter_kfree_skb -EXPORT_SYMBOL_GPL vmlinux 0xf1491782 regulator_enable_regmap -EXPORT_SYMBOL_GPL vmlinux 0xf14c1bdf debugfs_create_u16 -EXPORT_SYMBOL_GPL vmlinux 0xf15f2745 nand_read_page_op -EXPORT_SYMBOL_GPL vmlinux 0xf16284a7 usb_gadget_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0xf18451f1 adp5520_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0xf13b171f power_supply_get_property +EXPORT_SYMBOL_GPL vmlinux 0xf148a909 dev_pm_domain_set +EXPORT_SYMBOL_GPL vmlinux 0xf14dd197 shash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xf1628a18 xfrm_audit_state_replay_overflow +EXPORT_SYMBOL_GPL vmlinux 0xf162b2b4 snd_soc_add_component_controls EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off -EXPORT_SYMBOL_GPL vmlinux 0xf194ea6d __device_reset -EXPORT_SYMBOL_GPL vmlinux 0xf1a5ffc4 sysfs_chmod_file -EXPORT_SYMBOL_GPL vmlinux 0xf1af6fc5 devlink_dpipe_entry_ctx_prepare -EXPORT_SYMBOL_GPL vmlinux 0xf1c17f82 perf_event_release_kernel +EXPORT_SYMBOL_GPL vmlinux 0xf18f9ab2 get_cpu_device +EXPORT_SYMBOL_GPL vmlinux 0xf19ae0f0 snd_device_get_state +EXPORT_SYMBOL_GPL vmlinux 0xf1a0ae83 fwnode_graph_get_next_endpoint +EXPORT_SYMBOL_GPL vmlinux 0xf1a9995a devm_pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0xf1ac0e4b of_icc_get +EXPORT_SYMBOL_GPL vmlinux 0xf1c19755 pm_runtime_suspended_time +EXPORT_SYMBOL_GPL vmlinux 0xf1c5409c ata_sff_queue_pio_task EXPORT_SYMBOL_GPL vmlinux 0xf1ce154c __tracepoint_cpu_idle -EXPORT_SYMBOL_GPL vmlinux 0xf1e18962 xfrm_output -EXPORT_SYMBOL_GPL vmlinux 0xf1e20523 gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0xf1ef363e dma_vmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0xf1f527f6 mtd_point EXPORT_SYMBOL_GPL vmlinux 0xf1fae6a3 asic3_read_register -EXPORT_SYMBOL_GPL vmlinux 0xf1fbf839 pm_generic_restore_early -EXPORT_SYMBOL_GPL vmlinux 0xf1ffa093 skb_mpls_update_lse -EXPORT_SYMBOL_GPL vmlinux 0xf20678a6 sata_pmp_error_handler -EXPORT_SYMBOL_GPL vmlinux 0xf2181353 __mdiobus_modify_changed +EXPORT_SYMBOL_GPL vmlinux 0xf2153c29 iommu_page_response +EXPORT_SYMBOL_GPL vmlinux 0xf2164df1 rtc_alarm_irq_enable EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0xf224928a dev_attr_sw_activity -EXPORT_SYMBOL_GPL vmlinux 0xf2278bbf device_match_any -EXPORT_SYMBOL_GPL vmlinux 0xf22ba651 vga_default_device -EXPORT_SYMBOL_GPL vmlinux 0xf231d11f mpc8xxx_spi_tx_buf_u8 -EXPORT_SYMBOL_GPL vmlinux 0xf251e2ce perf_event_pause -EXPORT_SYMBOL_GPL vmlinux 0xf26a89eb ata_sas_port_suspend -EXPORT_SYMBOL_GPL vmlinux 0xf274ad0a __clocksource_register_scale -EXPORT_SYMBOL_GPL vmlinux 0xf2769a0c devm_regulator_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xf276caa3 strp_init -EXPORT_SYMBOL_GPL vmlinux 0xf27a3e87 xdp_master_redirect -EXPORT_SYMBOL_GPL vmlinux 0xf27f5994 crypto_ahash_finup -EXPORT_SYMBOL_GPL vmlinux 0xf28b6777 da903x_write -EXPORT_SYMBOL_GPL vmlinux 0xf28e259e gpiod_set_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xf2711571 pm_clk_add_clk +EXPORT_SYMBOL_GPL vmlinux 0xf279f177 __devm_pci_epc_create +EXPORT_SYMBOL_GPL vmlinux 0xf287aa3a add_disk_randomness +EXPORT_SYMBOL_GPL vmlinux 0xf28a9edd cpts_tx_timestamp EXPORT_SYMBOL_GPL vmlinux 0xf2967796 ring_buffer_record_on -EXPORT_SYMBOL_GPL vmlinux 0xf2984c5f pinctrl_pm_select_idle_state -EXPORT_SYMBOL_GPL vmlinux 0xf29e1ac9 devm_regmap_field_bulk_alloc -EXPORT_SYMBOL_GPL vmlinux 0xf2baf672 usb_hcd_pci_remove -EXPORT_SYMBOL_GPL vmlinux 0xf2c56e39 driver_find_device -EXPORT_SYMBOL_GPL vmlinux 0xf2d3405f ata_sas_sync_probe -EXPORT_SYMBOL_GPL vmlinux 0xf2e09c04 unregister_mtd_user -EXPORT_SYMBOL_GPL vmlinux 0xf2e8bf08 tps65217_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xf29afec1 of_clk_get_from_provider +EXPORT_SYMBOL_GPL vmlinux 0xf2a154b8 pm_generic_restore_early +EXPORT_SYMBOL_GPL vmlinux 0xf2afaf55 usb_block_urb +EXPORT_SYMBOL_GPL vmlinux 0xf2d56305 pciserial_init_ports +EXPORT_SYMBOL_GPL vmlinux 0xf2dae490 regulator_disable_deferred +EXPORT_SYMBOL_GPL vmlinux 0xf2e08fdb devlink_dpipe_entry_ctx_prepare EXPORT_SYMBOL_GPL vmlinux 0xf2fb61bd vprintk_default EXPORT_SYMBOL_GPL vmlinux 0xf30a5502 cpufreq_enable_boost_support EXPORT_SYMBOL_GPL vmlinux 0xf30fda27 lzo1x_decompress_safe EXPORT_SYMBOL_GPL vmlinux 0xf311e156 key_being_used_for EXPORT_SYMBOL_GPL vmlinux 0xf31632e0 ezx_pcap_read EXPORT_SYMBOL_GPL vmlinux 0xf31b3fd1 workqueue_set_max_active -EXPORT_SYMBOL_GPL vmlinux 0xf323a172 usb_enable_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0xf3272f4c of_icc_get_from_provider -EXPORT_SYMBOL_GPL vmlinux 0xf32d9353 mbox_free_channel -EXPORT_SYMBOL_GPL vmlinux 0xf32f12ba rdev_get_id +EXPORT_SYMBOL_GPL vmlinux 0xf32a495f nand_ecc_choose_conf EXPORT_SYMBOL_GPL vmlinux 0xf331236f btree_geo32 -EXPORT_SYMBOL_GPL vmlinux 0xf331fa7b __mmc_send_status -EXPORT_SYMBOL_GPL vmlinux 0xf3323861 iommu_sva_unbind_gpasid -EXPORT_SYMBOL_GPL vmlinux 0xf33e1425 fwnode_count_parents +EXPORT_SYMBOL_GPL vmlinux 0xf3333b95 reset_control_get_count +EXPORT_SYMBOL_GPL vmlinux 0xf3347fde extcon_set_state EXPORT_SYMBOL_GPL vmlinux 0xf342fd5d freq_qos_remove_notifier -EXPORT_SYMBOL_GPL vmlinux 0xf3480826 securityfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0xf3473644 pci_find_ext_capability EXPORT_SYMBOL_GPL vmlinux 0xf34ca5bc srcu_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xf35d30b7 __pm_relax -EXPORT_SYMBOL_GPL vmlinux 0xf36253e9 snd_pcm_hw_constraint_eld -EXPORT_SYMBOL_GPL vmlinux 0xf36c8ad5 snd_soc_dapm_force_enable_pin_unlocked -EXPORT_SYMBOL_GPL vmlinux 0xf378e96e snd_soc_dapm_force_bias_level +EXPORT_SYMBOL_GPL vmlinux 0xf3517b6c snd_dmaengine_pcm_pointer_no_residue +EXPORT_SYMBOL_GPL vmlinux 0xf35d305f securityfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0xf36f5a42 deregister_mtd_blktrans +EXPORT_SYMBOL_GPL vmlinux 0xf3739b6a compat_only_sysfs_link_entry_to_kobj EXPORT_SYMBOL_GPL vmlinux 0xf3797506 mpi_ec_deinit EXPORT_SYMBOL_GPL vmlinux 0xf3808cb1 get_state_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0xf392dc50 spi_split_transfers_maxsize +EXPORT_SYMBOL_GPL vmlinux 0xf382ae23 usb_control_msg_send +EXPORT_SYMBOL_GPL vmlinux 0xf38735b4 sk_psock_drop +EXPORT_SYMBOL_GPL vmlinux 0xf39df1f7 pinctrl_utils_add_map_mux +EXPORT_SYMBOL_GPL vmlinux 0xf39eef79 __traceiter_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0xf3a55a70 transport_destroy_device EXPORT_SYMBOL_GPL vmlinux 0xf3b451ca kdb_poll_funcs -EXPORT_SYMBOL_GPL vmlinux 0xf3da55d2 ata_platform_remove_one -EXPORT_SYMBOL_GPL vmlinux 0xf3e458de rio_del_device -EXPORT_SYMBOL_GPL vmlinux 0xf3f93a58 __vfs_setxattr_locked -EXPORT_SYMBOL_GPL vmlinux 0xf3fc0d99 syscon_regmap_lookup_by_phandle_args -EXPORT_SYMBOL_GPL vmlinux 0xf3fc36fc tps6586x_reads -EXPORT_SYMBOL_GPL vmlinux 0xf402e003 snd_soc_component_force_enable_pin_unlocked -EXPORT_SYMBOL_GPL vmlinux 0xf41e7400 i2c_probe_func_quick_read +EXPORT_SYMBOL_GPL vmlinux 0xf3d6c99e gpiochip_add_pingroup_range +EXPORT_SYMBOL_GPL vmlinux 0xf3e48f19 snd_soc_component_compr_set_metadata +EXPORT_SYMBOL_GPL vmlinux 0xf3e8d9f0 of_icc_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0xf3f50e59 gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0xf41c285f nf_ipv6_ops +EXPORT_SYMBOL_GPL vmlinux 0xf41cceda dev_pm_opp_get_sharing_cpus EXPORT_SYMBOL_GPL vmlinux 0xf4264a2e __tracepoint_error_report_end EXPORT_SYMBOL_GPL vmlinux 0xf4346cca for_each_kernel_tracepoint -EXPORT_SYMBOL_GPL vmlinux 0xf43beece spi_alloc_device -EXPORT_SYMBOL_GPL vmlinux 0xf4405efc class_remove_file_ns -EXPORT_SYMBOL_GPL vmlinux 0xf4425f10 pci_get_dsn -EXPORT_SYMBOL_GPL vmlinux 0xf44e6549 irq_domain_translate_twocell -EXPORT_SYMBOL_GPL vmlinux 0xf4516166 ata_bmdma_setup -EXPORT_SYMBOL_GPL vmlinux 0xf453d232 rio_release_inb_dbell -EXPORT_SYMBOL_GPL vmlinux 0xf4544480 __audit_inode_child -EXPORT_SYMBOL_GPL vmlinux 0xf45877c3 tpm_tis_resume -EXPORT_SYMBOL_GPL vmlinux 0xf462ee2d ata_bmdma_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xf43b422f scsi_dh_activate +EXPORT_SYMBOL_GPL vmlinux 0xf453dd43 init_uts_ns +EXPORT_SYMBOL_GPL vmlinux 0xf459dcbb rdev_get_dev +EXPORT_SYMBOL_GPL vmlinux 0xf459e9d6 iommu_map_sg +EXPORT_SYMBOL_GPL vmlinux 0xf46831b2 get_task_pid EXPORT_SYMBOL_GPL vmlinux 0xf4689d50 linkmode_set_pause +EXPORT_SYMBOL_GPL vmlinux 0xf46af919 crypto_mod_put +EXPORT_SYMBOL_GPL vmlinux 0xf46f974a mbox_controller_unregister EXPORT_SYMBOL_GPL vmlinux 0xf47654df irq_check_status_bit EXPORT_SYMBOL_GPL vmlinux 0xf47de486 usb_kill_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0xf489f3d8 init_uts_ns -EXPORT_SYMBOL_GPL vmlinux 0xf48bd844 add_to_page_cache_lru +EXPORT_SYMBOL_GPL vmlinux 0xf48b7fbc cpufreq_disable_fast_switch EXPORT_SYMBOL_GPL vmlinux 0xf48ceebd net_cls_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xf492b51a usb_hcd_start_port_resume +EXPORT_SYMBOL_GPL vmlinux 0xf4979069 pwm_get EXPORT_SYMBOL_GPL vmlinux 0xf49c680a fsverity_enqueue_verify_work +EXPORT_SYMBOL_GPL vmlinux 0xf49dbb70 altr_sysmgr_regmap_lookup_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xf4a1ae4c ata_sff_tf_load EXPORT_SYMBOL_GPL vmlinux 0xf4af35c2 rcu_gp_is_normal +EXPORT_SYMBOL_GPL vmlinux 0xf4b01294 nvmem_cell_read_variable_le_u64 +EXPORT_SYMBOL_GPL vmlinux 0xf4bb76e8 serdev_device_set_parity EXPORT_SYMBOL_GPL vmlinux 0xf4cd9f8f reset_control_bulk_release -EXPORT_SYMBOL_GPL vmlinux 0xf4ee6b02 _snd_pcm_stream_lock_irqsave +EXPORT_SYMBOL_GPL vmlinux 0xf4d40045 rio_release_dma +EXPORT_SYMBOL_GPL vmlinux 0xf4ddf12b bpf_trace_run3 +EXPORT_SYMBOL_GPL vmlinux 0xf4eb3c28 mdiobus_modify EXPORT_SYMBOL_GPL vmlinux 0xf4f69d1f clk_hw_unregister_gate -EXPORT_SYMBOL_GPL vmlinux 0xf4f7481e rio_release_dma -EXPORT_SYMBOL_GPL vmlinux 0xf501991a power_supply_changed -EXPORT_SYMBOL_GPL vmlinux 0xf5217ef8 nand_op_parser_exec_op +EXPORT_SYMBOL_GPL vmlinux 0xf4fc9650 pinctrl_utils_add_map_configs +EXPORT_SYMBOL_GPL vmlinux 0xf512103b of_reserved_mem_device_init_by_idx +EXPORT_SYMBOL_GPL vmlinux 0xf5202c3c __tcp_send_ack +EXPORT_SYMBOL_GPL vmlinux 0xf52a0ea5 device_show_int EXPORT_SYMBOL_GPL vmlinux 0xf52e14e9 snmp_fold_field64 -EXPORT_SYMBOL_GPL vmlinux 0xf52e7490 udp_bpf_update_proto -EXPORT_SYMBOL_GPL vmlinux 0xf5330f3b bpf_redirect_info -EXPORT_SYMBOL_GPL vmlinux 0xf53b5db6 devm_fwnode_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0xf53d54b2 dev_pm_qos_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0xf5450966 snd_soc_dpcm_can_be_free_stop -EXPORT_SYMBOL_GPL vmlinux 0xf5499f74 dma_buf_get +EXPORT_SYMBOL_GPL vmlinux 0xf547e788 platform_bus_type EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm +EXPORT_SYMBOL_GPL vmlinux 0xf54c0efb usb_get_current_frame_number +EXPORT_SYMBOL_GPL vmlinux 0xf54c9a3f gpiod_cansleep EXPORT_SYMBOL_GPL vmlinux 0xf553318d cpuidle_pause_and_lock -EXPORT_SYMBOL_GPL vmlinux 0xf572b20c kick_process -EXPORT_SYMBOL_GPL vmlinux 0xf57de59e xfrm_state_mtu -EXPORT_SYMBOL_GPL vmlinux 0xf58b5f00 ata_link_offline +EXPORT_SYMBOL_GPL vmlinux 0xf55a2658 ping_getfrag +EXPORT_SYMBOL_GPL vmlinux 0xf58ac2f6 devlink_port_param_driverinit_value_get EXPORT_SYMBOL_GPL vmlinux 0xf58edfd7 poll_state_synchronize_srcu -EXPORT_SYMBOL_GPL vmlinux 0xf5941057 nanddev_bbt_set_block_status +EXPORT_SYMBOL_GPL vmlinux 0xf59296e0 snd_soc_daifmt_parse_clock_provider_raw EXPORT_SYMBOL_GPL vmlinux 0xf5a3ba99 linear_range_values_in_range -EXPORT_SYMBOL_GPL vmlinux 0xf5a416ef mtk_pinconf_drive_set -EXPORT_SYMBOL_GPL vmlinux 0xf5a45e7c __pm_runtime_suspend EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus -EXPORT_SYMBOL_GPL vmlinux 0xf5a81234 snd_dmaengine_pcm_pointer_no_residue -EXPORT_SYMBOL_GPL vmlinux 0xf5b1aedb int_active_memcg -EXPORT_SYMBOL_GPL vmlinux 0xf5b69f82 serdev_device_add -EXPORT_SYMBOL_GPL vmlinux 0xf5b70865 pm_runtime_force_resume EXPORT_SYMBOL_GPL vmlinux 0xf5b7e6e7 __wake_up_sync_key -EXPORT_SYMBOL_GPL vmlinux 0xf5c21aa9 user_read -EXPORT_SYMBOL_GPL vmlinux 0xf5cd6af3 snd_soc_of_parse_audio_simple_widgets +EXPORT_SYMBOL_GPL vmlinux 0xf5d35e6f pci_set_cacheline_size +EXPORT_SYMBOL_GPL vmlinux 0xf5ea707b wm8350_block_write EXPORT_SYMBOL_GPL vmlinux 0xf5f370e0 async_schedule_node -EXPORT_SYMBOL_GPL vmlinux 0xf5f59db1 pm_wakeup_dev_event -EXPORT_SYMBOL_GPL vmlinux 0xf5fb876c espintcp_push_skb -EXPORT_SYMBOL_GPL vmlinux 0xf60d012a da903x_update -EXPORT_SYMBOL_GPL vmlinux 0xf60e4cb1 platform_bus -EXPORT_SYMBOL_GPL vmlinux 0xf617edb9 devlink_reload_enable +EXPORT_SYMBOL_GPL vmlinux 0xf5f85a6a irq_domain_free_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xf60a3161 ata_sas_tport_add +EXPORT_SYMBOL_GPL vmlinux 0xf60dc67b usb_for_each_port EXPORT_SYMBOL_GPL vmlinux 0xf61baa65 pids_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xf62a1e42 spi_unregister_controller -EXPORT_SYMBOL_GPL vmlinux 0xf645b571 fsstack_copy_attr_all +EXPORT_SYMBOL_GPL vmlinux 0xf62536c3 switchdev_port_attr_set +EXPORT_SYMBOL_GPL vmlinux 0xf62b9d86 snd_soc_resume +EXPORT_SYMBOL_GPL vmlinux 0xf63c9001 mtd_unpoint +EXPORT_SYMBOL_GPL vmlinux 0xf63d435a nand_wait_ready +EXPORT_SYMBOL_GPL vmlinux 0xf65f8d59 dm_path_uevent EXPORT_SYMBOL_GPL vmlinux 0xf663ee2f pcap_adc_sync -EXPORT_SYMBOL_GPL vmlinux 0xf680532c phy_modify_mmd_changed -EXPORT_SYMBOL_GPL vmlinux 0xf68e35f6 pinctrl_add_gpio_ranges -EXPORT_SYMBOL_GPL vmlinux 0xf692b491 spi_res_alloc -EXPORT_SYMBOL_GPL vmlinux 0xf6a62295 ahci_platform_ops -EXPORT_SYMBOL_GPL vmlinux 0xf6af1551 device_create_managed_software_node +EXPORT_SYMBOL_GPL vmlinux 0xf66c0eda ahci_platform_ops +EXPORT_SYMBOL_GPL vmlinux 0xf6726bdb of_pci_find_child_device +EXPORT_SYMBOL_GPL vmlinux 0xf694794c find_mci_by_dev +EXPORT_SYMBOL_GPL vmlinux 0xf69dc3d8 dev_pm_opp_get_required_pstate +EXPORT_SYMBOL_GPL vmlinux 0xf6af4f27 __xdp_build_skb_from_frame EXPORT_SYMBOL_GPL vmlinux 0xf6b043f1 rhashtable_walk_next EXPORT_SYMBOL_GPL vmlinux 0xf6beee37 __SCK__tp_func_pelt_cfs_tp -EXPORT_SYMBOL_GPL vmlinux 0xf6c7f137 ipv6_opt_accepted +EXPORT_SYMBOL_GPL vmlinux 0xf6c3dff1 serial8250_request_dma EXPORT_SYMBOL_GPL vmlinux 0xf6c8dc62 cpu_hotplug_enable -EXPORT_SYMBOL_GPL vmlinux 0xf6cbcddd virtqueue_detach_unused_buf -EXPORT_SYMBOL_GPL vmlinux 0xf6da22c4 ata_sff_postreset -EXPORT_SYMBOL_GPL vmlinux 0xf6dec9ad msg_zerocopy_alloc -EXPORT_SYMBOL_GPL vmlinux 0xf6e281d7 splice_to_pipe -EXPORT_SYMBOL_GPL vmlinux 0xf6e837e7 __inet_inherit_port +EXPORT_SYMBOL_GPL vmlinux 0xf6c9c14e sysfs_add_file_to_group +EXPORT_SYMBOL_GPL vmlinux 0xf6ce0d29 usb_gadget_deactivate +EXPORT_SYMBOL_GPL vmlinux 0xf6d16690 irq_chip_enable_parent +EXPORT_SYMBOL_GPL vmlinux 0xf6d2c795 l3mdev_table_lookup_register +EXPORT_SYMBOL_GPL vmlinux 0xf6d323ce raw_unhash_sk +EXPORT_SYMBOL_GPL vmlinux 0xf6de1656 gov_attr_set_get +EXPORT_SYMBOL_GPL vmlinux 0xf6e54d8b pci_epf_remove_vepf EXPORT_SYMBOL_GPL vmlinux 0xf6e874f5 ata_timing_merge -EXPORT_SYMBOL_GPL vmlinux 0xf6f50519 pci_probe_reset_slot -EXPORT_SYMBOL_GPL vmlinux 0xf6fcd745 sysfs_add_file_to_group -EXPORT_SYMBOL_GPL vmlinux 0xf72399f6 akcipher_register_instance -EXPORT_SYMBOL_GPL vmlinux 0xf72538f6 spi_async +EXPORT_SYMBOL_GPL vmlinux 0xf6f18297 gpiod_export +EXPORT_SYMBOL_GPL vmlinux 0xf70f943c pci_set_pcie_reset_state +EXPORT_SYMBOL_GPL vmlinux 0xf711f585 pci_epc_clear_bar +EXPORT_SYMBOL_GPL vmlinux 0xf71f72f3 anon_inode_getfile +EXPORT_SYMBOL_GPL vmlinux 0xf720ae3c __devm_reset_control_bulk_get EXPORT_SYMBOL_GPL vmlinux 0xf72a65ea tty_get_char_size -EXPORT_SYMBOL_GPL vmlinux 0xf72c7d07 pinconf_generic_parse_dt_config -EXPORT_SYMBOL_GPL vmlinux 0xf72f0e5c ata_std_error_handler EXPORT_SYMBOL_GPL vmlinux 0xf730fb4a qcom_smem_state_update_bits -EXPORT_SYMBOL_GPL vmlinux 0xf7341cf7 pwmchip_add -EXPORT_SYMBOL_GPL vmlinux 0xf7366791 device_get_named_child_node EXPORT_SYMBOL_GPL vmlinux 0xf73d0b51 __tracepoint_map +EXPORT_SYMBOL_GPL vmlinux 0xf73e43fb get_net_ns_by_fd EXPORT_SYMBOL_GPL vmlinux 0xf7455c16 input_event_to_user EXPORT_SYMBOL_GPL vmlinux 0xf746e4fe irq_work_queue +EXPORT_SYMBOL_GPL vmlinux 0xf7470bea dw_pcie_upconfig_setup +EXPORT_SYMBOL_GPL vmlinux 0xf7490bd1 __traceiter_block_split EXPORT_SYMBOL_GPL vmlinux 0xf749debc md5_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0xf7636581 uhci_reset_hc EXPORT_SYMBOL_GPL vmlinux 0xf76b0a59 read_current_timer -EXPORT_SYMBOL_GPL vmlinux 0xf771788d scsi_autopm_get_device -EXPORT_SYMBOL_GPL vmlinux 0xf778b024 genphy_c45_loopback -EXPORT_SYMBOL_GPL vmlinux 0xf786c348 regulator_count_voltages -EXPORT_SYMBOL_GPL vmlinux 0xf78cfb28 snd_soc_dapm_mixer_update_power -EXPORT_SYMBOL_GPL vmlinux 0xf78e3a98 firmware_request_nowarn -EXPORT_SYMBOL_GPL vmlinux 0xf794c165 pinctrl_remove_gpio_range -EXPORT_SYMBOL_GPL vmlinux 0xf79ead69 devm_phy_destroy -EXPORT_SYMBOL_GPL vmlinux 0xf7a1b93f extcon_get_property -EXPORT_SYMBOL_GPL vmlinux 0xf7b39ceb clockevents_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0xf774b4a2 phy_pm_runtime_put +EXPORT_SYMBOL_GPL vmlinux 0xf77e4403 skb_mpls_update_lse +EXPORT_SYMBOL_GPL vmlinux 0xf79b0c5b irq_domain_set_hwirq_and_chip +EXPORT_SYMBOL_GPL vmlinux 0xf7a09114 nvmem_cell_read_u64 +EXPORT_SYMBOL_GPL vmlinux 0xf7a562bf ata_sas_port_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf7ae2e73 __traceiter_block_unplug EXPORT_SYMBOL_GPL vmlinux 0xf7bc95b0 devlink_fmsg_pair_nest_start -EXPORT_SYMBOL_GPL vmlinux 0xf7c7b3a6 dev_pm_opp_set_rate -EXPORT_SYMBOL_GPL vmlinux 0xf7cf5905 shash_ahash_finup -EXPORT_SYMBOL_GPL vmlinux 0xf7cfaa3b rtnl_link_register -EXPORT_SYMBOL_GPL vmlinux 0xf7d54cee dev_pm_opp_get_suspend_opp_freq +EXPORT_SYMBOL_GPL vmlinux 0xf7d45415 devm_bitmap_alloc EXPORT_SYMBOL_GPL vmlinux 0xf7d961d8 clk_hw_unregister_composite -EXPORT_SYMBOL_GPL vmlinux 0xf7e8a5b3 devm_reset_control_array_get -EXPORT_SYMBOL_GPL vmlinux 0xf801983e musb_get_mode +EXPORT_SYMBOL_GPL vmlinux 0xf7eeb63c dev_pm_qos_update_user_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0xf809716a pci_check_and_unmask_intx EXPORT_SYMBOL_GPL vmlinux 0xf80c276f rhashtable_walk_enter -EXPORT_SYMBOL_GPL vmlinux 0xf82486c1 crypto_grab_aead -EXPORT_SYMBOL_GPL vmlinux 0xf829caab snd_device_disconnect +EXPORT_SYMBOL_GPL vmlinux 0xf8254032 dma_buf_pin +EXPORT_SYMBOL_GPL vmlinux 0xf82dedba irq_domain_reset_irq_data EXPORT_SYMBOL_GPL vmlinux 0xf82f16b3 execute_in_process_context EXPORT_SYMBOL_GPL vmlinux 0xf82f3657 work_on_cpu -EXPORT_SYMBOL_GPL vmlinux 0xf83e4cdc snd_dmaengine_pcm_pointer -EXPORT_SYMBOL_GPL vmlinux 0xf855eb72 of_property_read_u32_index -EXPORT_SYMBOL_GPL vmlinux 0xf8586587 mbox_chan_received_data -EXPORT_SYMBOL_GPL vmlinux 0xf861d851 fwnode_get_name +EXPORT_SYMBOL_GPL vmlinux 0xf843487f device_show_ulong +EXPORT_SYMBOL_GPL vmlinux 0xf84ca153 fwnode_graph_get_remote_node EXPORT_SYMBOL_GPL vmlinux 0xf8731bf6 clk_regmap_mux_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0xf87e647f xhci_resume -EXPORT_SYMBOL_GPL vmlinux 0xf8940095 fib_nh_common_release -EXPORT_SYMBOL_GPL vmlinux 0xf8955596 ahci_error_handler -EXPORT_SYMBOL_GPL vmlinux 0xf8a3fb2b ahci_ops -EXPORT_SYMBOL_GPL vmlinux 0xf8b0774e ata_bmdma_qc_issue -EXPORT_SYMBOL_GPL vmlinux 0xf8b47002 lp8788_read_multi_bytes -EXPORT_SYMBOL_GPL vmlinux 0xf8ce02ae snd_soc_register_card -EXPORT_SYMBOL_GPL vmlinux 0xf8d3f8ae fscrypt_set_bio_crypt_ctx_bh -EXPORT_SYMBOL_GPL vmlinux 0xf8d9f9a0 fuse_direct_io -EXPORT_SYMBOL_GPL vmlinux 0xf8efacaf __clk_hw_register_fixed_rate -EXPORT_SYMBOL_GPL vmlinux 0xf8f33c38 snd_soc_component_enable_pin_unlocked +EXPORT_SYMBOL_GPL vmlinux 0xf87856ef snd_soc_dapm_nc_pin +EXPORT_SYMBOL_GPL vmlinux 0xf88a7995 usb_remove_hcd +EXPORT_SYMBOL_GPL vmlinux 0xf89a9d62 wm8400_reset_codec_reg_cache +EXPORT_SYMBOL_GPL vmlinux 0xf89b959d tty_buffer_space_avail +EXPORT_SYMBOL_GPL vmlinux 0xf89bba19 dma_buf_attach +EXPORT_SYMBOL_GPL vmlinux 0xf89c95b9 nanddev_isreserved +EXPORT_SYMBOL_GPL vmlinux 0xf8a13dbb pci_rescan_bus +EXPORT_SYMBOL_GPL vmlinux 0xf8aad38b sdio_readsb +EXPORT_SYMBOL_GPL vmlinux 0xf8d20d23 dev_pm_get_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0xf8d33904 dma_buf_vunmap +EXPORT_SYMBOL_GPL vmlinux 0xf8de76af snd_soc_add_card_controls +EXPORT_SYMBOL_GPL vmlinux 0xf8deff7f nanddev_ecc_engine_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xf8e283bd __traceiter_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0xf8e5e133 __traceiter_pelt_se_tp +EXPORT_SYMBOL_GPL vmlinux 0xf8edf1fe init_user_ns EXPORT_SYMBOL_GPL vmlinux 0xf8f3a0fb ata_ratelimit -EXPORT_SYMBOL_GPL vmlinux 0xf8f6eadd fsnotify_add_mark -EXPORT_SYMBOL_GPL vmlinux 0xf91d9426 hwmon_device_register_with_groups -EXPORT_SYMBOL_GPL vmlinux 0xf9217a5e of_property_read_variable_u32_array -EXPORT_SYMBOL_GPL vmlinux 0xf921eee8 tpm_get_timeouts -EXPORT_SYMBOL_GPL vmlinux 0xf939021c deregister_mtd_parser -EXPORT_SYMBOL_GPL vmlinux 0xf9390527 pci_num_vf +EXPORT_SYMBOL_GPL vmlinux 0xf90b9c20 phy_set_media +EXPORT_SYMBOL_GPL vmlinux 0xf9244939 bpf_trace_run12 +EXPORT_SYMBOL_GPL vmlinux 0xf9435236 regulator_map_voltage_iterate EXPORT_SYMBOL_GPL vmlinux 0xf95322f4 kthread_parkme -EXPORT_SYMBOL_GPL vmlinux 0xf9549f50 of_device_uevent_modalias -EXPORT_SYMBOL_GPL vmlinux 0xf95b2c2c fscrypt_fname_siphash EXPORT_SYMBOL_GPL vmlinux 0xf9622dd1 snd_soc_daifmt_clock_provider_from_bitmap EXPORT_SYMBOL_GPL vmlinux 0xf96da44f xa_delete_node -EXPORT_SYMBOL_GPL vmlinux 0xf9906921 ipv4_sk_redirect -EXPORT_SYMBOL_GPL vmlinux 0xf9999c07 fuse_file_poll +EXPORT_SYMBOL_GPL vmlinux 0xf97c8ccd tun_get_socket +EXPORT_SYMBOL_GPL vmlinux 0xf983020d regmap_multi_reg_write_bypassed +EXPORT_SYMBOL_GPL vmlinux 0xf9978e83 blk_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0xf9990278 task_user_regset_view EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies -EXPORT_SYMBOL_GPL vmlinux 0xf9aa5dbe udp_tunnel_nic_ops -EXPORT_SYMBOL_GPL vmlinux 0xf9bfc420 skcipher_walk_virt -EXPORT_SYMBOL_GPL vmlinux 0xf9c65402 dev_pm_opp_set_opp -EXPORT_SYMBOL_GPL vmlinux 0xf9d0c8f4 sdio_disable_func +EXPORT_SYMBOL_GPL vmlinux 0xf9a240a6 wakeup_source_register +EXPORT_SYMBOL_GPL vmlinux 0xf9a6a200 __rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0xf9a7822d wm831x_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0xf9a8db38 pci_epf_free_space +EXPORT_SYMBOL_GPL vmlinux 0xf9c40ba9 crypto_stats_skcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0xf9cb2aee of_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xf9d011ce dax_driver_unregister EXPORT_SYMBOL_GPL vmlinux 0xf9d129df klist_iter_init_node -EXPORT_SYMBOL_GPL vmlinux 0xf9d56e5d serial8250_rpm_put_tx -EXPORT_SYMBOL_GPL vmlinux 0xf9dac05f i2c_new_smbus_alert_device -EXPORT_SYMBOL_GPL vmlinux 0xf9dfa760 pci_add_dynid -EXPORT_SYMBOL_GPL vmlinux 0xf9e6cc5c sata_scr_write_flush +EXPORT_SYMBOL_GPL vmlinux 0xf9d1742c ata_sas_port_resume +EXPORT_SYMBOL_GPL vmlinux 0xf9d194bc cpufreq_dbs_governor_stop +EXPORT_SYMBOL_GPL vmlinux 0xf9d27fe9 ipv4_redirect +EXPORT_SYMBOL_GPL vmlinux 0xf9d6a725 rockchip_clk_init +EXPORT_SYMBOL_GPL vmlinux 0xf9e3fe80 fat_scan +EXPORT_SYMBOL_GPL vmlinux 0xf9e49bc4 mtd_get_device_size EXPORT_SYMBOL_GPL vmlinux 0xf9ebe553 pci_bridge_emul_init -EXPORT_SYMBOL_GPL vmlinux 0xf9f0d822 pci_enable_rom EXPORT_SYMBOL_GPL vmlinux 0xfa03858a sram_exec_copy +EXPORT_SYMBOL_GPL vmlinux 0xfa0695be mtd_unlock +EXPORT_SYMBOL_GPL vmlinux 0xfa0ab77c ata_sff_drain_fifo +EXPORT_SYMBOL_GPL vmlinux 0xfa1b4cc0 __clocksource_update_freq_scale EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops -EXPORT_SYMBOL_GPL vmlinux 0xfa223e72 regulator_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0xfa226a68 snd_soc_cnew -EXPORT_SYMBOL_GPL vmlinux 0xfa31027a pinctrl_find_gpio_range_from_pin -EXPORT_SYMBOL_GPL vmlinux 0xfa4288cc debugfs_create_u32 -EXPORT_SYMBOL_GPL vmlinux 0xfa5aa577 dm_device_name +EXPORT_SYMBOL_GPL vmlinux 0xfa227517 of_reserved_mem_device_init_by_name +EXPORT_SYMBOL_GPL vmlinux 0xfa2363c6 crypto_shash_setkey +EXPORT_SYMBOL_GPL vmlinux 0xfa2ed0d5 blk_mq_pci_map_queues +EXPORT_SYMBOL_GPL vmlinux 0xfa3b3997 component_add +EXPORT_SYMBOL_GPL vmlinux 0xfa480fa7 sock_diag_unregister_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0xfa4fb5e1 regmap_get_raw_read_max +EXPORT_SYMBOL_GPL vmlinux 0xfa5797a7 mbox_flush +EXPORT_SYMBOL_GPL vmlinux 0xfa5f877c ptp_classify_raw +EXPORT_SYMBOL_GPL vmlinux 0xfa6005b7 platform_irqchip_probe EXPORT_SYMBOL_GPL vmlinux 0xfa690589 netdev_cmd_to_name -EXPORT_SYMBOL_GPL vmlinux 0xfa700780 rcuwait_wake_up +EXPORT_SYMBOL_GPL vmlinux 0xfa6bb3d3 spi_bus_unlock +EXPORT_SYMBOL_GPL vmlinux 0xfa714b0c regmap_noinc_write EXPORT_SYMBOL_GPL vmlinux 0xfa74f2fe inet_getpeer -EXPORT_SYMBOL_GPL vmlinux 0xfa80f6ce __clk_mux_determine_rate_closest +EXPORT_SYMBOL_GPL vmlinux 0xfa75f3ac blk_add_driver_data +EXPORT_SYMBOL_GPL vmlinux 0xfa803b8e input_ff_erase EXPORT_SYMBOL_GPL vmlinux 0xfa82f473 klist_next -EXPORT_SYMBOL_GPL vmlinux 0xfaa2f85d pci_host_common_remove -EXPORT_SYMBOL_GPL vmlinux 0xfaa65471 input_class -EXPORT_SYMBOL_GPL vmlinux 0xfaa8aaa6 wm8350_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xfaab6044 __pm_runtime_disable +EXPORT_SYMBOL_GPL vmlinux 0xfa8a8a48 gpiod_set_transitory +EXPORT_SYMBOL_GPL vmlinux 0xfa94ab7e ip_build_and_send_pkt +EXPORT_SYMBOL_GPL vmlinux 0xfa9f1b45 devm_remove_action +EXPORT_SYMBOL_GPL vmlinux 0xfab064c7 max8997_bulk_write EXPORT_SYMBOL_GPL vmlinux 0xfab30dc0 mdio_bus_exit -EXPORT_SYMBOL_GPL vmlinux 0xfab4c0f9 irq_chip_enable_parent EXPORT_SYMBOL_GPL vmlinux 0xfab53ed9 pinctrl_gpio_can_use_line EXPORT_SYMBOL_GPL vmlinux 0xfaba248a usb_scuttle_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0xfac45e45 devlink_resource_size_get +EXPORT_SYMBOL_GPL vmlinux 0xfac02ba8 regmap_exit +EXPORT_SYMBOL_GPL vmlinux 0xfac7b7c8 fuse_init_fs_context_submount EXPORT_SYMBOL_GPL vmlinux 0xfad9c827 kill_dax -EXPORT_SYMBOL_GPL vmlinux 0xfae093b7 __root_device_register -EXPORT_SYMBOL_GPL vmlinux 0xfaed640a devlink_port_attrs_pci_pf_set +EXPORT_SYMBOL_GPL vmlinux 0xfae04f9d usb_gadget_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xfaec384b __netdev_watchdog_up EXPORT_SYMBOL_GPL vmlinux 0xfaf598c6 snd_ctl_request_layer -EXPORT_SYMBOL_GPL vmlinux 0xfaf9da19 irq_setup_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0xfafa3478 pci_epc_raise_irq -EXPORT_SYMBOL_GPL vmlinux 0xfb03c199 sock_prot_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0xfafdc184 sysfs_notify +EXPORT_SYMBOL_GPL vmlinux 0xfaffdfa3 sata_link_debounce +EXPORT_SYMBOL_GPL vmlinux 0xfb1ae2aa gpiod_get_direction EXPORT_SYMBOL_GPL vmlinux 0xfb24d4ab blocking_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0xfb282d42 mtk_pinconf_adv_drive_get_raw -EXPORT_SYMBOL_GPL vmlinux 0xfb318f68 platform_get_resource +EXPORT_SYMBOL_GPL vmlinux 0xfb2a2bda blk_mq_update_nr_hw_queues +EXPORT_SYMBOL_GPL vmlinux 0xfb2aa85e blk_queue_rq_timeout +EXPORT_SYMBOL_GPL vmlinux 0xfb2bd3fd rtc_read_alarm +EXPORT_SYMBOL_GPL vmlinux 0xfb2e6a3d irqchip_fwnode_ops EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync +EXPORT_SYMBOL_GPL vmlinux 0xfb3fac93 i2c_adapter_depth +EXPORT_SYMBOL_GPL vmlinux 0xfb479280 bsg_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0xfb4a5db9 snd_soc_cnew +EXPORT_SYMBOL_GPL vmlinux 0xfb4de9e8 iommu_device_unlink +EXPORT_SYMBOL_GPL vmlinux 0xfb4e7107 usb_phy_set_event +EXPORT_SYMBOL_GPL vmlinux 0xfb4f6b9a rio_request_mport_dma EXPORT_SYMBOL_GPL vmlinux 0xfb51f520 gen_pool_size +EXPORT_SYMBOL_GPL vmlinux 0xfb60fad8 virtio_max_dma_size EXPORT_SYMBOL_GPL vmlinux 0xfb615859 __tracepoint_block_unplug -EXPORT_SYMBOL_GPL vmlinux 0xfb655d6f netif_carrier_event -EXPORT_SYMBOL_GPL vmlinux 0xfb65fe02 fat_build_inode +EXPORT_SYMBOL_GPL vmlinux 0xfb6af59d rdev_set_badblocks EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name EXPORT_SYMBOL_GPL vmlinux 0xfb73451f alarm_try_to_cancel EXPORT_SYMBOL_GPL vmlinux 0xfb7a4a7f btree_last -EXPORT_SYMBOL_GPL vmlinux 0xfb810f6f ata_bmdma_status -EXPORT_SYMBOL_GPL vmlinux 0xfb8a0d6f usb_get_maximum_ssp_rate -EXPORT_SYMBOL_GPL vmlinux 0xfb8f701c usb_gadget_unmap_request_by_dev +EXPORT_SYMBOL_GPL vmlinux 0xfb85c32e call_switchdev_notifiers EXPORT_SYMBOL_GPL vmlinux 0xfb96f72b topology_set_scale_freq_source -EXPORT_SYMBOL_GPL vmlinux 0xfb972647 device_set_node -EXPORT_SYMBOL_GPL vmlinux 0xfb9a3539 iommu_detach_group -EXPORT_SYMBOL_GPL vmlinux 0xfba0890f scsi_host_busy_iter -EXPORT_SYMBOL_GPL vmlinux 0xfbabde13 mmc_switch -EXPORT_SYMBOL_GPL vmlinux 0xfbb370f3 blk_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0xfb974c96 fib6_check_nexthop +EXPORT_SYMBOL_GPL vmlinux 0xfba301c8 clk_register_mux_table +EXPORT_SYMBOL_GPL vmlinux 0xfbbafbf0 icc_enable EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action -EXPORT_SYMBOL_GPL vmlinux 0xfbbd93eb iommu_aux_get_pasid -EXPORT_SYMBOL_GPL vmlinux 0xfbbf5a75 snd_soc_dpcm_runtime_update -EXPORT_SYMBOL_GPL vmlinux 0xfbe1aa70 tegra_bpmp_request_mrq -EXPORT_SYMBOL_GPL vmlinux 0xfbe3b1e9 put_pid +EXPORT_SYMBOL_GPL vmlinux 0xfbc228bf phy_speed_down +EXPORT_SYMBOL_GPL vmlinux 0xfbe81023 do_unregister_con_driver EXPORT_SYMBOL_GPL vmlinux 0xfbeeb13c phy_gbit_all_ports_features -EXPORT_SYMBOL_GPL vmlinux 0xfbf128ad pci_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0xfbf2bf4c rio_mport_get_efb +EXPORT_SYMBOL_GPL vmlinux 0xfc003513 get_pid_task EXPORT_SYMBOL_GPL vmlinux 0xfc014cb6 smp_call_function_any EXPORT_SYMBOL_GPL vmlinux 0xfc03d97a page_is_ram -EXPORT_SYMBOL_GPL vmlinux 0xfc094c3e cpufreq_cpu_put +EXPORT_SYMBOL_GPL vmlinux 0xfc087252 ncsi_start_dev EXPORT_SYMBOL_GPL vmlinux 0xfc14bb2e dm_get_dev_t -EXPORT_SYMBOL_GPL vmlinux 0xfc1644ac genphy_c45_check_and_restart_aneg EXPORT_SYMBOL_GPL vmlinux 0xfc19bc45 crypto_dh_encode_key EXPORT_SYMBOL_GPL vmlinux 0xfc1a55c8 kobject_move -EXPORT_SYMBOL_GPL vmlinux 0xfc2083de cpufreq_dbs_governor_stop -EXPORT_SYMBOL_GPL vmlinux 0xfc2ab8df trace_event_buffer_lock_reserve -EXPORT_SYMBOL_GPL vmlinux 0xfc4f2eda device_property_match_string -EXPORT_SYMBOL_GPL vmlinux 0xfc551232 kernfs_get -EXPORT_SYMBOL_GPL vmlinux 0xfc55c761 mtk_pinconf_adv_drive_get -EXPORT_SYMBOL_GPL vmlinux 0xfc57bdf8 snd_pcm_stream_unlock_irq -EXPORT_SYMBOL_GPL vmlinux 0xfc66f3a2 of_icc_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0xfc67f63f md_run -EXPORT_SYMBOL_GPL vmlinux 0xfcaf2560 max8997_update_reg -EXPORT_SYMBOL_GPL vmlinux 0xfcbb36b5 ping_getfrag -EXPORT_SYMBOL_GPL vmlinux 0xfcc4678d regmap_write -EXPORT_SYMBOL_GPL vmlinux 0xfcd3cabb regmap_get_raw_write_max -EXPORT_SYMBOL_GPL vmlinux 0xfcd849e3 crypto_stats_init -EXPORT_SYMBOL_GPL vmlinux 0xfcda98e1 device_remove_bin_file -EXPORT_SYMBOL_GPL vmlinux 0xfcee9eaa unix_outq_len +EXPORT_SYMBOL_GPL vmlinux 0xfc1fe887 badblocks_show +EXPORT_SYMBOL_GPL vmlinux 0xfc28da0c vp_modern_config_vector +EXPORT_SYMBOL_GPL vmlinux 0xfc2f245c pinconf_generic_dt_node_to_map +EXPORT_SYMBOL_GPL vmlinux 0xfc47d4e2 device_link_del +EXPORT_SYMBOL_GPL vmlinux 0xfc61cd04 tty_kopen_shared +EXPORT_SYMBOL_GPL vmlinux 0xfc7f7ccb vfs_write +EXPORT_SYMBOL_GPL vmlinux 0xfca164f2 regulator_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xfcb6710f pci_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0xfcbc7221 task_cls_state +EXPORT_SYMBOL_GPL vmlinux 0xfcc94348 snd_soc_dapm_sync_unlocked +EXPORT_SYMBOL_GPL vmlinux 0xfccde5a0 snd_soc_dapm_free +EXPORT_SYMBOL_GPL vmlinux 0xfcd8f728 snd_soc_dai_set_pll +EXPORT_SYMBOL_GPL vmlinux 0xfce2241b led_init_default_state_get +EXPORT_SYMBOL_GPL vmlinux 0xfce239ed sdio_retune_release EXPORT_SYMBOL_GPL vmlinux 0xfcf54d1d add_wait_queue_priority EXPORT_SYMBOL_GPL vmlinux 0xfcf9ef73 hw_protection_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xfd05b9b6 usb_deregister_dev -EXPORT_SYMBOL_GPL vmlinux 0xfd248253 gpiochip_get_desc +EXPORT_SYMBOL_GPL vmlinux 0xfcfef088 scsi_internal_device_unblock_nowait +EXPORT_SYMBOL_GPL vmlinux 0xfd0ce433 add_swap_extent +EXPORT_SYMBOL_GPL vmlinux 0xfd132745 mtd_writev +EXPORT_SYMBOL_GPL vmlinux 0xfd1a7e51 gpiochip_is_requested +EXPORT_SYMBOL_GPL vmlinux 0xfd1c1a66 ip6_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0xfd21311d snd_soc_dpcm_be_can_update EXPORT_SYMBOL_GPL vmlinux 0xfd2b0a2c sbitmap_queue_min_shallow_depth -EXPORT_SYMBOL_GPL vmlinux 0xfd2f5406 snd_hwparams_to_dma_slave_config -EXPORT_SYMBOL_GPL vmlinux 0xfd3adc19 serdev_device_wait_until_sent -EXPORT_SYMBOL_GPL vmlinux 0xfd40826b crypto_register_scomp EXPORT_SYMBOL_GPL vmlinux 0xfd40ad83 kfree_strarray -EXPORT_SYMBOL_GPL vmlinux 0xfd411021 pci_intx -EXPORT_SYMBOL_GPL vmlinux 0xfd4c8285 tty_buffer_lock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xfd48b0c7 nl_table EXPORT_SYMBOL_GPL vmlinux 0xfd4dba7d freq_qos_add_notifier EXPORT_SYMBOL_GPL vmlinux 0xfd505ef3 of_get_display_timings +EXPORT_SYMBOL_GPL vmlinux 0xfd56a1e8 xfrm_output_resume EXPORT_SYMBOL_GPL vmlinux 0xfd581da1 free_rs -EXPORT_SYMBOL_GPL vmlinux 0xfd6769c5 pm_generic_freeze_noirq -EXPORT_SYMBOL_GPL vmlinux 0xfd6ebb1f devlink_rate_leaf_destroy -EXPORT_SYMBOL_GPL vmlinux 0xfd6fcf6a snd_soc_dapm_enable_pin -EXPORT_SYMBOL_GPL vmlinux 0xfd7b4a2f nvmem_cell_read_variable_le_u32 -EXPORT_SYMBOL_GPL vmlinux 0xfd7cc0e5 ata_sff_port_intr -EXPORT_SYMBOL_GPL vmlinux 0xfd867acf cpufreq_frequency_table_get_index -EXPORT_SYMBOL_GPL vmlinux 0xfd8b1ec2 gpiod_is_active_low -EXPORT_SYMBOL_GPL vmlinux 0xfd928e7c irq_domain_add_legacy -EXPORT_SYMBOL_GPL vmlinux 0xfd983547 cpts_unregister -EXPORT_SYMBOL_GPL vmlinux 0xfdbc3e15 vfs_read +EXPORT_SYMBOL_GPL vmlinux 0xfd637be5 usb_autopm_put_interface_async +EXPORT_SYMBOL_GPL vmlinux 0xfd673d0b xhci_gen_setup +EXPORT_SYMBOL_GPL vmlinux 0xfdac9a9e gpiochip_find +EXPORT_SYMBOL_GPL vmlinux 0xfdae4ab2 pci_restore_msi_state +EXPORT_SYMBOL_GPL vmlinux 0xfdb180fa ata_timing_compute +EXPORT_SYMBOL_GPL vmlinux 0xfdb3a599 __udp_enqueue_schedule_skb EXPORT_SYMBOL_GPL vmlinux 0xfdbd7a17 crypto_get_attr_type -EXPORT_SYMBOL_GPL vmlinux 0xfdda1dd9 gpiochip_reqres_irq -EXPORT_SYMBOL_GPL vmlinux 0xfdeebefe ipv6_proxy_select_ident -EXPORT_SYMBOL_GPL vmlinux 0xfdf60922 aead_exit_geniv -EXPORT_SYMBOL_GPL vmlinux 0xfdf60fa4 __blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0xfdca8170 fat_getattr +EXPORT_SYMBOL_GPL vmlinux 0xfdcc697e spi_finalize_current_message +EXPORT_SYMBOL_GPL vmlinux 0xfdd41876 ata_bmdma_port_start32 EXPORT_SYMBOL_GPL vmlinux 0xfe0bbbd2 atomic_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xfe0fa26b regulator_map_voltage_pickable_linear_range -EXPORT_SYMBOL_GPL vmlinux 0xfe18908b power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0xfe198fd4 __hwspin_unlock EXPORT_SYMBOL_GPL vmlinux 0xfe1a7a7b mpi_point_release -EXPORT_SYMBOL_GPL vmlinux 0xfe245773 ata_scsi_slave_destroy +EXPORT_SYMBOL_GPL vmlinux 0xfe245643 cdrom_multisession +EXPORT_SYMBOL_GPL vmlinux 0xfe297a7f dev_pm_opp_of_get_opp_desc_node EXPORT_SYMBOL_GPL vmlinux 0xfe29d810 trace_seq_to_user -EXPORT_SYMBOL_GPL vmlinux 0xfe3628fe dm_start_time_ns_from_clone -EXPORT_SYMBOL_GPL vmlinux 0xfe371232 mtd_unlock -EXPORT_SYMBOL_GPL vmlinux 0xfe3c25e5 pwm_get_chip_data -EXPORT_SYMBOL_GPL vmlinux 0xfe3ea262 sk_clear_memalloc +EXPORT_SYMBOL_GPL vmlinux 0xfe2e53bc skb_morph +EXPORT_SYMBOL_GPL vmlinux 0xfe2ead57 kthread_cancel_delayed_work_sync +EXPORT_SYMBOL_GPL vmlinux 0xfe2f6409 con_debug_enter +EXPORT_SYMBOL_GPL vmlinux 0xfe337d32 fat_alloc_new_dir +EXPORT_SYMBOL_GPL vmlinux 0xfe406361 sdio_enable_func +EXPORT_SYMBOL_GPL vmlinux 0xfe431c5b __usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0xfe44c937 snd_soc_get_enum_double EXPORT_SYMBOL_GPL vmlinux 0xfe476039 ktime_get_resolution_ns -EXPORT_SYMBOL_GPL vmlinux 0xfe5aa94f devlink_params_publish +EXPORT_SYMBOL_GPL vmlinux 0xfe547eb8 ata_ehi_clear_desc +EXPORT_SYMBOL_GPL vmlinux 0xfe55a154 device_initialize EXPORT_SYMBOL_GPL vmlinux 0xfe5aad0c divider_ro_determine_rate -EXPORT_SYMBOL_GPL vmlinux 0xfe6a4d84 handle_bad_irq -EXPORT_SYMBOL_GPL vmlinux 0xfe6bc3cc bus_for_each_drv -EXPORT_SYMBOL_GPL vmlinux 0xfe8420d5 mtd_ooblayout_find_eccregion +EXPORT_SYMBOL_GPL vmlinux 0xfe7e6bb5 null_dailink_component EXPORT_SYMBOL_GPL vmlinux 0xfe8cdb84 ring_buffer_alloc_read_page -EXPORT_SYMBOL_GPL vmlinux 0xfe967068 __usb_create_hcd EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free -EXPORT_SYMBOL_GPL vmlinux 0xfe9d4486 bio_start_io_acct +EXPORT_SYMBOL_GPL vmlinux 0xfe99929c ata_host_start +EXPORT_SYMBOL_GPL vmlinux 0xfe99debd hvc_instantiate +EXPORT_SYMBOL_GPL vmlinux 0xfeb1ba87 get_governor_parent_kobj EXPORT_SYMBOL_GPL vmlinux 0xfec3bf84 icst_clk_setup +EXPORT_SYMBOL_GPL vmlinux 0xfec403d2 mtd_write EXPORT_SYMBOL_GPL vmlinux 0xfed11ed1 usb_mon_deregister EXPORT_SYMBOL_GPL vmlinux 0xfed561ff divider_determine_rate -EXPORT_SYMBOL_GPL vmlinux 0xfed5d799 security_kernel_post_read_file -EXPORT_SYMBOL_GPL vmlinux 0xfee69087 pinconf_generic_dt_subnode_to_map -EXPORT_SYMBOL_GPL vmlinux 0xfef63a83 device_bind_driver +EXPORT_SYMBOL_GPL vmlinux 0xfee1fc86 __put_task_struct +EXPORT_SYMBOL_GPL vmlinux 0xfeed0f0b crypto_stats_init EXPORT_SYMBOL_GPL vmlinux 0xff05fa13 vring_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xff089340 of_clk_hw_simple_get +EXPORT_SYMBOL_GPL vmlinux 0xff0c836d crypto_register_scomp +EXPORT_SYMBOL_GPL vmlinux 0xff0c9ee7 irq_chip_get_parent_state +EXPORT_SYMBOL_GPL vmlinux 0xff142468 gpiochip_get_desc EXPORT_SYMBOL_GPL vmlinux 0xff1666f3 reset_control_bulk_assert +EXPORT_SYMBOL_GPL vmlinux 0xff17f90e dm_accept_partial_bio +EXPORT_SYMBOL_GPL vmlinux 0xff1b5532 snd_soc_add_dai_controls +EXPORT_SYMBOL_GPL vmlinux 0xff270c99 receive_fd EXPORT_SYMBOL_GPL vmlinux 0xff291ecf clk_unregister_divider -EXPORT_SYMBOL_GPL vmlinux 0xff2e39e0 fwnode_get_named_child_node -EXPORT_SYMBOL_GPL vmlinux 0xff2e4564 security_path_chmod +EXPORT_SYMBOL_GPL vmlinux 0xff33317f sdio_memcpy_fromio EXPORT_SYMBOL_GPL vmlinux 0xff42c374 usb_role_switch_get_role -EXPORT_SYMBOL_GPL vmlinux 0xff4902b8 pci_aer_clear_nonfatal_status -EXPORT_SYMBOL_GPL vmlinux 0xff622c21 crypto_unregister_shash -EXPORT_SYMBOL_GPL vmlinux 0xff6551b8 usb_for_each_port -EXPORT_SYMBOL_GPL vmlinux 0xff6992f5 sock_gen_put +EXPORT_SYMBOL_GPL vmlinux 0xff552524 badblocks_clear +EXPORT_SYMBOL_GPL vmlinux 0xff660b44 dev_pm_opp_set_regulators EXPORT_SYMBOL_GPL vmlinux 0xff7e33bf mpi_sub_ui +EXPORT_SYMBOL_GPL vmlinux 0xff7f7540 regulator_bulk_free EXPORT_SYMBOL_GPL vmlinux 0xff81487d gpiod_remove_lookup_table -EXPORT_SYMBOL_GPL vmlinux 0xff834149 dev_pm_opp_put_clkname -EXPORT_SYMBOL_GPL vmlinux 0xff91f0e6 edac_device_add_device -EXPORT_SYMBOL_GPL vmlinux 0xff98a636 of_genpd_add_provider_simple -EXPORT_SYMBOL_GPL vmlinux 0xffa40655 mpc8xxx_spi_rx_buf_u32 -EXPORT_SYMBOL_GPL vmlinux 0xffa8549e pinctrl_utils_free_map +EXPORT_SYMBOL_GPL vmlinux 0xff8baa56 bpf_trace_run11 +EXPORT_SYMBOL_GPL vmlinux 0xff9c7944 debugfs_create_file_size +EXPORT_SYMBOL_GPL vmlinux 0xffa1a933 devlink_port_param_value_changed +EXPORT_SYMBOL_GPL vmlinux 0xffa4242c mtk_pinconf_drive_set_rev1 +EXPORT_SYMBOL_GPL vmlinux 0xffa9f5df snd_soc_link_compr_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xffacc2e3 regulator_set_current_limit_regmap EXPORT_SYMBOL_GPL vmlinux 0xffae8e8b nsecs_to_jiffies -EXPORT_SYMBOL_GPL vmlinux 0xffb304cd ima_file_check +EXPORT_SYMBOL_GPL vmlinux 0xffb4a23a dm_get_queue_limits EXPORT_SYMBOL_GPL vmlinux 0xffd1123f save_stack_trace -EXPORT_SYMBOL_GPL vmlinux 0xffe2fc1f call_switchdev_notifiers +EXPORT_SYMBOL_GPL vmlinux 0xffd26a3e rio_unregister_scan +EXPORT_SYMBOL_GPL vmlinux 0xffdebe45 crypto_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0xffe7c0b8 fixed_phy_set_link_update +EXPORT_SYMBOL_GPL vmlinux 0xffe9096f shmem_file_setup_with_mnt +EXPORT_SYMBOL_GPL vmlinux 0xffea331b __pci_epf_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xfff5b895 devlink_params_unregister FIRMWARE_LOADER_PRIVATE EXPORT_SYMBOL_GPL 0xd3ae7756 fw_fallback_config vmlinux -IIO_HID EXPORT_SYMBOL 0x2a2f1f17 hid_sensor_read_samp_freq_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0x3dca963d hid_sensor_read_raw_hyst_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0x463ff44e hid_sensor_write_samp_freq_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0x567ecbee hid_sensor_parse_common_attributes drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0x71e22ad2 hid_sensor_write_raw_hyst_rel_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x156fae60 hid_sensor_remove_trigger drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0x17af410a hid_sensor_parse_common_attributes drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x43652aa7 hid_sensor_setup_trigger drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0x4c013a6d hid_sensor_power_state drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0x6d158bdd hid_sensor_convert_timestamp drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x707587c5 hid_sensor_read_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 0x9d028cab hid_sensor_pm_ops drivers/iio/common/hid-sensors/hid-sensor-trigger -IIO_HID EXPORT_SYMBOL 0xa1087e54 hid_sensor_setup_trigger drivers/iio/common/hid-sensors/hid-sensor-trigger -IIO_HID EXPORT_SYMBOL 0xbe757d1f hid_sensor_read_raw_hyst_rel_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0xd0d9784a hid_sensor_power_state drivers/iio/common/hid-sensors/hid-sensor-trigger -IIO_HID EXPORT_SYMBOL 0xe40cec07 hid_sensor_remove_trigger drivers/iio/common/hid-sensors/hid-sensor-trigger -IIO_HID EXPORT_SYMBOL 0xe58dddb6 hid_sensor_convert_timestamp drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0xf1f79b70 hid_sensor_write_raw_hyst_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x1579c90b hid_sensor_read_poll_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x9e136267 hid_sensor_get_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0xd81d482b hid_sensor_batch_mode_supported drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0xf2a0db79 hid_sensor_set_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common -LTC2497 EXPORT_SYMBOL 0xb2052538 ltc2497core_remove drivers/iio/adc/ltc2497-core -LTC2497 EXPORT_SYMBOL 0xe6e6df4d ltc2497core_probe drivers/iio/adc/ltc2497-core -MCB EXPORT_SYMBOL_GPL 0x012acbd6 mcb_bus_put drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x0eada5bd mcb_device_register drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x13c17098 mcb_free_dev drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x1a3f09a1 chameleon_parse_cells drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x394ba30d mcb_alloc_dev drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x432170c2 mcb_request_mem drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x877720c3 mcb_bus_get drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x8b893c84 mcb_bus_add_devices drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x989f9a78 mcb_unregister_driver drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0xacbed351 mcb_release_bus drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0xb9f490f2 mcb_get_resource drivers/mcb/mcb +IIO_HID EXPORT_SYMBOL 0x953ae812 hid_sensor_read_raw_hyst_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0xa6a60f43 hid_sensor_pm_ops drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0xbfd2d0e2 hid_sensor_write_raw_hyst_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0xeba430cd hid_sensor_read_raw_hyst_rel_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0xef1f00e9 hid_sensor_write_raw_hyst_rel_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0xf067caf8 hid_sensor_write_samp_freq_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x165b4140 hid_sensor_set_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x516b8062 hid_sensor_read_poll_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0xac5323cf hid_sensor_get_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0xf2138d96 hid_sensor_batch_mode_supported drivers/iio/common/hid-sensors/hid-sensor-iio-common +LTC2497 EXPORT_SYMBOL 0x99414945 ltc2497core_probe drivers/iio/adc/ltc2497-core +LTC2497 EXPORT_SYMBOL 0xa78568c4 ltc2497core_remove drivers/iio/adc/ltc2497-core +MCB EXPORT_SYMBOL_GPL 0x04561178 mcb_bus_put drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x3274325b mcb_get_resource drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x4f76d44e mcb_device_register drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x5ad0773a mcb_alloc_dev drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x8793c505 mcb_bus_add_devices drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x87f7e824 mcb_release_bus drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x9f70d1db chameleon_parse_cells drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xa23dd34a mcb_unregister_driver drivers/mcb/mcb MCB EXPORT_SYMBOL_GPL 0xbcf52873 mcb_release_mem drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0xd7433119 mcb_alloc_bus drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0xecb351ff mcb_get_irq drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0xf9d5b36e __mcb_register_driver drivers/mcb/mcb -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x2dfc4181 nvme_command_effects drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x36f0961d nvme_put_ns drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x747d80ec nvme_find_get_ns drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xa2787f83 nvme_execute_passthru_rq drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xa54550d6 nvme_ctrl_from_file drivers/nvme/host/nvme-core -PMBUS EXPORT_SYMBOL_GPL 0x12c92570 pmbus_read_byte_data drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x1d8bc957 pmbus_get_driver_info drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x2148e86b pmbus_set_update drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x463aeb73 pmbus_clear_faults drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x585f86f0 pmbus_set_page drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x59e6dc0f pmbus_read_word_data drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x5aff0c3c pmbus_get_fan_rate_device drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x60ab38ee pmbus_update_fan drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x632b0f4b pmbus_write_byte drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x66770d4d pmbus_get_debugfs_dir drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x6af4ca6a pmbus_write_byte_data drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x6e4a40c1 pmbus_get_fan_rate_cached drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x77b5adcd pmbus_clear_cache drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x7f75041e pmbus_do_probe drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x8fdd199a pmbus_check_word_register drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xa3a91f6e pmbus_check_byte_register drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xa485f43e pmbus_update_byte_data drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xbf03dd94 pmbus_write_word_data drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xc518aee8 pmbus_regulator_ops drivers/hwmon/pmbus/pmbus_core -USB_STORAGE EXPORT_SYMBOL_GPL 0x09c67222 usb_stor_CB_reset drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x0b24e885 usb_stor_post_reset drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x17b47bb7 usb_stor_Bulk_reset drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x183ede90 usb_stor_reset_resume drivers/usb/storage/usb-storage +MCB EXPORT_SYMBOL_GPL 0xc9dff2d6 mcb_get_irq drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xd8e951af __mcb_register_driver drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xdf46b7ce mcb_alloc_bus drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xe8bee2a8 mcb_request_mem drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xe9bbc91b mcb_free_dev drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xefccda8e mcb_bus_get drivers/mcb/mcb +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x15265c47 nvme_execute_passthru_rq drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x2cbbc056 nvme_find_get_ns drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x70d6e076 nvme_command_effects drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x8ba7ac73 nvme_ctrl_from_file drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xa0bd2913 nvme_put_ns drivers/nvme/host/nvme-core +PMBUS EXPORT_SYMBOL_GPL 0x1d1d0158 pmbus_write_byte_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x1f932420 pmbus_update_byte_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x3455a5ef pmbus_get_fan_rate_device drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x3e343973 pmbus_write_byte drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x480b80e8 pmbus_do_probe drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x4903031c pmbus_check_byte_register drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x4bc8939b pmbus_write_word_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x5cc6690d pmbus_read_byte_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x6d553180 pmbus_read_word_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x92dcc3fa pmbus_clear_cache drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xa0551f2e pmbus_get_driver_info drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xad8707d7 pmbus_get_debugfs_dir drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xb7c0872d pmbus_set_page drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xb88bc675 pmbus_get_fan_rate_cached drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xbad78f13 pmbus_set_update drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xc0098c91 pmbus_clear_faults drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xd4421d03 pmbus_regulator_ops drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xe6484521 pmbus_update_fan drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xf10adb24 pmbus_check_word_register drivers/hwmon/pmbus/pmbus_core +USB_STORAGE EXPORT_SYMBOL_GPL 0x10061099 usb_stor_control_msg 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 0x2f468806 usb_stor_clear_halt drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x43faac1b usb_stor_set_xfer_buf drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x5129444e usb_stor_ctrl_transfer drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x5f17870c usb_stor_transparent_scsi_command drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x661bd935 usb_stor_access_xfer_buf drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x665996f4 usb_stor_bulk_transfer_buf drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x6df6e5ff usb_stor_suspend drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x6e4f4585 usb_stor_bulk_transfer_sg drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x6ea4cdc2 fill_inquiry_response drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x90b18e59 usb_stor_host_template_init drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x986439ae usb_stor_adjust_quirks drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x9a5d038a usb_stor_probe1 drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xa494185d usb_stor_pre_reset drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xa63fd680 usb_stor_Bulk_transport drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xd5bee33b usb_stor_bulk_srb drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xd64fb4aa usb_stor_control_msg drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xd79235fd usb_stor_CB_transport drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xde518132 usb_stor_probe2 drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xe52aadbe usb_stor_disconnect drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xf87e156e usb_stor_resume drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x26bb1fc5 usb_stor_access_xfer_buf drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x325f5b54 usb_stor_Bulk_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x3ab5a32a usb_stor_adjust_quirks drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x68e4b6f9 usb_stor_pre_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x72154672 usb_stor_suspend drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x75b92558 usb_stor_ctrl_transfer drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x799cafe1 usb_stor_host_template_init drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x7d604bf3 usb_stor_clear_halt drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x8176bc06 fill_inquiry_response drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x8360d023 usb_stor_resume drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x83bb4aa6 usb_stor_transparent_scsi_command drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x8b7474d7 usb_stor_probe1 drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xa61d3bad usb_stor_Bulk_transport drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xaeef8917 usb_stor_bulk_transfer_buf drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xaf787a79 usb_stor_reset_resume drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xb1f28b38 usb_stor_post_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xb2c6d459 usb_stor_disconnect drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xc5f6b1a4 usb_stor_bulk_srb drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xc60c15b7 usb_stor_CB_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xc71a274e usb_stor_bulk_transfer_sg drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xf2d9b895 usb_stor_probe2 drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xfa3e84d6 usb_stor_set_xfer_buf drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xfb0272f8 usb_stor_CB_transport drivers/usb/storage/usb-storage diff -u linux-intel-iotg-5.15-5.15.0/debian.master/abi/armhf/generic-lpae linux-intel-iotg-5.15-5.15.0/debian.master/abi/armhf/generic-lpae --- linux-intel-iotg-5.15-5.15.0/debian.master/abi/armhf/generic-lpae +++ linux-intel-iotg-5.15-5.15.0/debian.master/abi/armhf/generic-lpae @@ -1,24 +1,24 @@ -CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x3628cf50 crypto_cipher_encrypt_one vmlinux -CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0xf4aedb82 crypto_cipher_setkey vmlinux -CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0xfb046654 crypto_cipher_decrypt_one vmlinux -CXL EXPORT_SYMBOL_GPL 0x07b22dee cxl_probe_component_regs drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x1957f47a devm_cxl_add_port drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x1d11a0b4 devm_cxl_add_memdev drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x23d67507 to_cxl_nvdimm_bridge drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x2432dba3 to_cxl_nvdimm drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x2de10988 __cxl_driver_register drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x353bc7bc cxl_bus_type drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x5fa28362 devm_cxl_add_nvdimm_bridge drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x66542b47 devm_cxl_add_nvdimm drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x93b2f238 cxl_probe_device_regs drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xb4a1bee5 is_cxl_nvdimm drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xba5d1517 cxl_driver_unregister drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xc6d5e237 devm_cxl_add_decoder drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xc8002ef0 cxl_add_dport drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xcb46b827 to_cxl_decoder drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xcc56df28 cxl_map_component_regs drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xe3c6b800 cxl_map_device_regs drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xec7489a4 is_root_decoder drivers/cxl/core/cxl_core +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x169d5ad1 crypto_cipher_setkey vmlinux +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x26ae715f crypto_cipher_encrypt_one vmlinux +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x8acf6662 crypto_cipher_decrypt_one vmlinux +CXL EXPORT_SYMBOL_GPL 0x0a275e34 cxl_driver_unregister drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x16e1d591 cxl_probe_component_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x172eaf4b devm_cxl_add_nvdimm_bridge drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x1fd2218c devm_cxl_add_port drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x2eaa27e5 is_root_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x31db5764 devm_cxl_add_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x3bb3eca0 to_cxl_nvdimm_bridge drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x4fdbb1ac cxl_probe_device_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x73515e9d is_cxl_nvdimm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x88cba7a5 devm_cxl_add_memdev drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x8baaa15b cxl_map_component_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xa6aabd7e cxl_map_device_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xb3ab08d1 cxl_bus_type drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xb81f697a devm_cxl_add_nvdimm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xbe6dfb02 to_cxl_nvdimm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xc29b1127 cxl_add_dport drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xc6ec47b4 to_cxl_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xe240c4b7 __cxl_driver_register drivers/cxl/core/cxl_core EXPORT_SYMBOL arch/arm/crypto/blake2s-arm 0x5c9b932c blake2s_compress_arch EXPORT_SYMBOL arch/arm/crypto/chacha-neon 0x220b49ab chacha_crypt_arch EXPORT_SYMBOL arch/arm/crypto/chacha-neon 0xdc94f829 chacha_init_arch @@ -28,8 +28,8 @@ EXPORT_SYMBOL arch/arm/crypto/poly1305-arm 0x1c3e6e5b poly1305_init_arch EXPORT_SYMBOL arch/arm/crypto/poly1305-arm 0x6ddf27bc poly1305_update_arch EXPORT_SYMBOL arch/arm/crypto/poly1305-arm 0xf39f5240 poly1305_final_arch -EXPORT_SYMBOL arch/arm/crypto/sha256-arm 0x12df8d7d crypto_sha256_arm_finup -EXPORT_SYMBOL arch/arm/crypto/sha256-arm 0xbb8acfdb crypto_sha256_arm_update +EXPORT_SYMBOL arch/arm/crypto/sha256-arm 0x9c87d761 crypto_sha256_arm_finup +EXPORT_SYMBOL arch/arm/crypto/sha256-arm 0xead4a7bd crypto_sha256_arm_update EXPORT_SYMBOL arch/arm/lib/xor-neon 0x0f051164 xor_block_neon_inner EXPORT_SYMBOL crypto/blake2b_generic 0x99d7fe16 blake2b_compress_generic EXPORT_SYMBOL crypto/ecc 0x16e410ff vli_from_be64 @@ -57,53 +57,54 @@ EXPORT_SYMBOL crypto/sha3_generic 0x411c0284 crypto_sha3_init EXPORT_SYMBOL crypto/sha3_generic 0x5a49536e crypto_sha3_update EXPORT_SYMBOL crypto/sha3_generic 0x990b9d3b crypto_sha3_final -EXPORT_SYMBOL crypto/sm2_generic 0xa9d97f2a sm2_compute_z_digest -EXPORT_SYMBOL crypto/sm3_generic 0x3897b90b crypto_sm3_finup -EXPORT_SYMBOL crypto/sm3_generic 0xcb5cd7be crypto_sm3_final -EXPORT_SYMBOL crypto/sm3_generic 0xe658ab91 crypto_sm3_update +EXPORT_SYMBOL crypto/sm2_generic 0xc6f243b1 sm2_compute_z_digest +EXPORT_SYMBOL crypto/sm3_generic 0x4f321557 crypto_sm3_final +EXPORT_SYMBOL crypto/sm3_generic 0x6bc3a2a8 crypto_sm3_finup +EXPORT_SYMBOL crypto/sm3_generic 0xc25b4d5d crypto_sm3_update EXPORT_SYMBOL crypto/xor 0x5b6c00e6 xor_blocks -EXPORT_SYMBOL drivers/atm/suni 0xd19ca6ab suni_init -EXPORT_SYMBOL drivers/bcma/bcma 0x3a2b287a bcma_core_dma_translation -EXPORT_SYMBOL drivers/bcma/bcma 0x7fb33f1b bcma_core_irq +EXPORT_SYMBOL drivers/atm/suni 0x0a795364 suni_init +EXPORT_SYMBOL drivers/bcma/bcma 0xa1da0d90 bcma_core_irq +EXPORT_SYMBOL drivers/bcma/bcma 0xbe27dcee 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 0x1959e24a pi_read_regr +EXPORT_SYMBOL drivers/block/paride/paride 0x4076d2d1 pi_init +EXPORT_SYMBOL drivers/block/paride/paride 0x40b69705 pi_schedule_claimed EXPORT_SYMBOL drivers/block/paride/paride 0x4267110a pi_register_driver -EXPORT_SYMBOL drivers/block/paride/paride 0x46c24b19 paride_unregister -EXPORT_SYMBOL drivers/block/paride/paride 0x55ce80b1 pi_write_block -EXPORT_SYMBOL drivers/block/paride/paride 0x742c5077 pi_do_claimed -EXPORT_SYMBOL drivers/block/paride/paride 0x87146585 pi_write_regr -EXPORT_SYMBOL drivers/block/paride/paride 0x9fa95176 pi_connect -EXPORT_SYMBOL drivers/block/paride/paride 0xaa3a7ba5 pi_init -EXPORT_SYMBOL drivers/block/paride/paride 0xabbe7e87 pi_disconnect +EXPORT_SYMBOL drivers/block/paride/paride 0x4cd7bbee pi_write_regr +EXPORT_SYMBOL drivers/block/paride/paride 0x5b2a2a1f paride_unregister +EXPORT_SYMBOL drivers/block/paride/paride 0x646665fa paride_register +EXPORT_SYMBOL drivers/block/paride/paride 0x89221079 pi_disconnect +EXPORT_SYMBOL drivers/block/paride/paride 0x99ac2c71 pi_read_block EXPORT_SYMBOL drivers/block/paride/paride 0xb21ba07d pi_unregister_driver -EXPORT_SYMBOL drivers/block/paride/paride 0xbfb18688 pi_read_regr -EXPORT_SYMBOL drivers/block/paride/paride 0xc36fc9e5 paride_register -EXPORT_SYMBOL drivers/block/paride/paride 0xd4661615 pi_release -EXPORT_SYMBOL drivers/block/paride/paride 0xe86a9b31 pi_read_block -EXPORT_SYMBOL drivers/block/paride/paride 0xf8dee5f2 pi_schedule_claimed -EXPORT_SYMBOL drivers/bluetooth/btbcm 0xf880e488 btbcm_patchram -EXPORT_SYMBOL drivers/bluetooth/btrsi 0x05c1535f rsi_bt_ops -EXPORT_SYMBOL drivers/bus/mhi/core/mhi 0xadeae848 mhi_sync_power_up -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x00192a2f ipmi_smi_watcher_register +EXPORT_SYMBOL drivers/block/paride/paride 0xd2577dea pi_do_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0xd5d6ba78 pi_write_block +EXPORT_SYMBOL drivers/block/paride/paride 0xd9c9c075 pi_connect +EXPORT_SYMBOL drivers/block/paride/paride 0xf173d1f8 pi_release +EXPORT_SYMBOL drivers/bluetooth/btbcm 0xdeeb5411 btbcm_patchram +EXPORT_SYMBOL drivers/bluetooth/btrsi 0x1b4e9db2 rsi_bt_ops +EXPORT_SYMBOL drivers/bus/mhi/core/mhi 0x8f0e35e6 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 0x230094ac ipmi_smi_watchdog_pretimeout +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x2ad185ba ipmi_add_smi EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x31cab048 ipmi_smi_msg_received -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x32e57e0d ipmi_get_smi_info EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x40f2b10c ipmi_alloc_smi_msg 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 0x73a8d240 ipmi_smi_watcher_register EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x74778a80 ipmi_get_my_LUN -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x7aad4131 ipmi_smi_watcher_unregister EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x804f922a ipmi_addr_length EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x80aa4656 ipmi_free_recv_msg EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x89a5279a ipmi_get_version EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xaca90ebd ipmi_request_supply_msgs EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xae71627d ipmi_create_user +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xb85c2a60 ipmi_get_smi_info +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xc95cc67e 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 @@ -111,1026 +112,1025 @@ 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 0xfb0ed48b ipmi_add_smi EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xfe0f2369 ipmi_get_maintenance_mode -EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x023c27bd kcs_bmc_disable_device -EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x03030fdb kcs_bmc_enable_device -EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x68c05cb2 kcs_bmc_register_driver -EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x7167a0ef kcs_bmc_handle_event -EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x87595c46 kcs_bmc_write_status -EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x98a24d99 kcs_bmc_add_device -EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0xa1a57690 kcs_bmc_update_event_mask -EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0xa2c74a86 kcs_bmc_read_data -EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0xa8674200 kcs_bmc_read_status -EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0xc89b31ac kcs_bmc_write_data -EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0xe1210c7e kcs_bmc_remove_device -EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0xe7f8ca6a kcs_bmc_unregister_driver -EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0xf9892f84 kcs_bmc_update_status -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x31fc1ccf st33zp24_pm_suspend -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x62716ed0 st33zp24_pm_resume -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x7ea0b3d5 st33zp24_probe -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x99ef9d17 st33zp24_remove -EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0x2c5e8e8b xillybus_find_inode -EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0x3793f5ac xillybus_cleanup_chrdev -EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0x8bff7da3 xillybus_init_chrdev -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x1bb7e092 xillybus_endpoint_remove +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x01a23b63 kcs_bmc_update_event_mask +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x0c2b5c8e kcs_bmc_enable_device +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x0ef84aab kcs_bmc_update_status +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x1e65a9f7 kcs_bmc_handle_event +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x27792666 kcs_bmc_disable_device +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x52b1d332 kcs_bmc_add_device +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x58499a70 kcs_bmc_read_data +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x778adc50 kcs_bmc_write_status +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x9140f47a kcs_bmc_remove_device +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x9205bd42 kcs_bmc_write_data +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0xa54f608b kcs_bmc_unregister_driver +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0xbe3ddd2d kcs_bmc_read_status +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0xc76d043f kcs_bmc_register_driver +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x07600cdb st33zp24_pm_suspend +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x291c17ab st33zp24_remove +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x558b599b st33zp24_pm_resume +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xfd8a253c st33zp24_probe +EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0x061a8aa0 xillybus_init_chrdev +EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0x76dfa475 xillybus_find_inode +EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0xce6283c4 xillybus_cleanup_chrdev EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x25978d50 xillybus_isr -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x6c3a93c2 xillybus_endpoint_discovery -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xd35c7609 xillybus_init_endpoint +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x4a65ffb2 xillybus_endpoint_discovery +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x7978ece0 xillybus_endpoint_remove +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x7caa5682 xillybus_init_endpoint EXPORT_SYMBOL drivers/clk/qcom/clk-qcom 0x25c98843 clk_alpha_pll_zonda_ops EXPORT_SYMBOL drivers/clk/qcom/clk-qcom 0xa03f8920 clk_alpha_pll_postdiv_lucid_5lpe_ops EXPORT_SYMBOL drivers/clk/qcom/clk-qcom 0xd89a02cf clk_alpha_pll_fixed_lucid_5lpe_ops EXPORT_SYMBOL drivers/clk/qcom/clk-qcom 0xed46e5cc clk_alpha_pll_lucid_5lpe_ops -EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x0d4bfbdb atmel_i2c_probe -EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x37dd48b3 atmel_i2c_enqueue +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x18a2aba8 atmel_i2c_probe +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x3745b3fa atmel_i2c_send_receive EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x80a11b1d atmel_i2c_init_read_cmd EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xc71ed50c atmel_i2c_init_genkey_cmd -EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xd8445660 atmel_i2c_send_receive +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xc85e28d7 atmel_i2c_enqueue 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/firewire/firewire-core 0x0c7045bd fw_iso_context_queue -EXPORT_SYMBOL drivers/firewire/firewire-core 0x104945b2 fw_send_request -EXPORT_SYMBOL drivers/firewire/firewire-core 0x22883e50 fw_core_remove_card +EXPORT_SYMBOL drivers/firewire/firewire-core 0x0296479a fw_send_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0x0672913a fw_card_initialize +EXPORT_SYMBOL drivers/firewire/firewire-core 0x080ea329 fw_iso_context_start +EXPORT_SYMBOL drivers/firewire/firewire-core 0x1c491c42 fw_core_add_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0x1fa46df6 fw_core_handle_bus_reset EXPORT_SYMBOL drivers/firewire/firewire-core 0x2885fec5 fw_get_request_speed +EXPORT_SYMBOL drivers/firewire/firewire-core 0x30d6e2a1 fw_iso_resource_manage +EXPORT_SYMBOL drivers/firewire/firewire-core 0x36dbad19 fw_core_remove_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0x375b1bd1 fw_run_transaction EXPORT_SYMBOL drivers/firewire/firewire-core 0x3c56ef91 fw_workqueue -EXPORT_SYMBOL drivers/firewire/firewire-core 0x3f421de2 fw_core_handle_bus_reset -EXPORT_SYMBOL drivers/firewire/firewire-core 0x4187bb6a fw_iso_buffer_init -EXPORT_SYMBOL drivers/firewire/firewire-core 0x5412e588 fw_fill_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x474053b5 fw_iso_context_create +EXPORT_SYMBOL drivers/firewire/firewire-core 0x54e6c038 fw_iso_context_queue_flush EXPORT_SYMBOL drivers/firewire/firewire-core 0x556601c3 fw_csr_string -EXPORT_SYMBOL drivers/firewire/firewire-core 0x57595b70 fw_core_add_address_handler -EXPORT_SYMBOL drivers/firewire/firewire-core 0x5f69f735 fw_bus_type -EXPORT_SYMBOL drivers/firewire/firewire-core 0x6835a4b8 fw_core_handle_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0x5691d97f fw_iso_context_stop +EXPORT_SYMBOL drivers/firewire/firewire-core 0x5a221668 fw_iso_buffer_destroy EXPORT_SYMBOL drivers/firewire/firewire-core 0x69f08f72 fw_core_remove_descriptor -EXPORT_SYMBOL drivers/firewire/firewire-core 0x7617cd20 fw_iso_context_flush_completions -EXPORT_SYMBOL drivers/firewire/firewire-core 0x7a766727 fw_core_remove_address_handler -EXPORT_SYMBOL drivers/firewire/firewire-core 0x7f9f43cd fw_card_add +EXPORT_SYMBOL drivers/firewire/firewire-core 0x730bf4db fw_card_add +EXPORT_SYMBOL drivers/firewire/firewire-core 0x797715d6 fw_core_handle_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7ebdccc5 fw_bus_type +EXPORT_SYMBOL drivers/firewire/firewire-core 0x8017c279 fw_fill_response EXPORT_SYMBOL drivers/firewire/firewire-core 0x86468d44 fw_rcode_string -EXPORT_SYMBOL drivers/firewire/firewire-core 0x87449e55 fw_iso_context_stop -EXPORT_SYMBOL drivers/firewire/firewire-core 0x8be3ad9f fw_core_handle_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x8ac9bce1 fw_cancel_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0x8bdbf64b fw_core_remove_card EXPORT_SYMBOL drivers/firewire/firewire-core 0x8ec4e37e fw_core_add_descriptor -EXPORT_SYMBOL drivers/firewire/firewire-core 0xa043de1f fw_card_initialize +EXPORT_SYMBOL drivers/firewire/firewire-core 0x994aed78 fw_core_handle_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0xad7bc725 fw_send_response EXPORT_SYMBOL drivers/firewire/firewire-core 0xaedf84ce fw_high_memory_region -EXPORT_SYMBOL drivers/firewire/firewire-core 0xaf4a0e39 fw_iso_context_create -EXPORT_SYMBOL drivers/firewire/firewire-core 0xb5b09d49 fw_iso_context_queue_flush -EXPORT_SYMBOL drivers/firewire/firewire-core 0xb667ace3 fw_cancel_transaction -EXPORT_SYMBOL drivers/firewire/firewire-core 0xb879d2d1 fw_device_enable_phys_dma -EXPORT_SYMBOL drivers/firewire/firewire-core 0xbc4dbb16 fw_iso_resource_manage -EXPORT_SYMBOL drivers/firewire/firewire-core 0xc7ef2c16 fw_run_transaction -EXPORT_SYMBOL drivers/firewire/firewire-core 0xc9e6c31c fw_send_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0xcf5f86a0 fw_iso_buffer_destroy -EXPORT_SYMBOL drivers/firewire/firewire-core 0xda8758ea fw_schedule_bus_reset -EXPORT_SYMBOL drivers/firewire/firewire-core 0xdc17db18 fw_iso_context_destroy -EXPORT_SYMBOL drivers/firewire/firewire-core 0xe28df72c fw_iso_context_start +EXPORT_SYMBOL drivers/firewire/firewire-core 0xb5f0e2ee fw_iso_context_queue +EXPORT_SYMBOL drivers/firewire/firewire-core 0xb8b50a79 fw_schedule_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0xc56614e4 fw_device_enable_phys_dma +EXPORT_SYMBOL drivers/firewire/firewire-core 0xc985b2a4 fw_iso_context_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0xcd85f299 fw_iso_buffer_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0xe00c7696 fw_iso_context_flush_completions 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/fpga/dfl 0x43f8330c dfl_driver_unregister -EXPORT_SYMBOL drivers/fpga/dfl 0x7ef85093 __dfl_driver_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0036d9a4 drm_plane_create_alpha_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x008baca3 drm_display_info_set_bus_formats -EXPORT_SYMBOL drivers/gpu/drm/drm 0x00fafabc drm_connector_set_panel_orientation -EXPORT_SYMBOL drivers/gpu/drm/drm 0x01155c16 drm_bridge_chain_pre_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x011679dd drm_send_event_timestamp_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0154faf9 drm_master_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x01e8212c drm_gem_object_lookup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x02dff846 drm_client_buffer_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x03cbf1c3 drm_framebuffer_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x05d360ca drm_dev_set_unique -EXPORT_SYMBOL drivers/gpu/drm/drm 0x062324e4 drm_plane_force_disable +EXPORT_SYMBOL drivers/fpga/dfl 0x8df008c9 __dfl_driver_register +EXPORT_SYMBOL drivers/fpga/dfl 0xab51c2f2 dfl_driver_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x003c62d2 drm_bridge_chain_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x005a1529 drm_framebuffer_plane_height +EXPORT_SYMBOL drivers/gpu/drm/drm 0x01db7418 drm_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x021cc60d drm_connector_list_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0x033980fd drm_connector_attach_dp_subconnector_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x03d039a3 drm_vblank_work_flush +EXPORT_SYMBOL drivers/gpu/drm/drm 0x03eca333 drm_bridge_chain_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x03f8164b drm_client_modeset_probe +EXPORT_SYMBOL drivers/gpu/drm/drm 0x04cca076 drm_client_modeset_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x05d5aeed drm_put_dev EXPORT_SYMBOL drivers/gpu/drm/drm 0x065e86ac drm_detect_hdmi_monitor -EXPORT_SYMBOL drivers/gpu/drm/drm 0x066d4e30 drmm_kmalloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x06c9f428 drm_modeset_lock_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x069dbe53 drm_plane_create_zpos_property EXPORT_SYMBOL drivers/gpu/drm/drm 0x070b28aa drm_ht_remove_item -EXPORT_SYMBOL drivers/gpu/drm/drm 0x08550fb6 drm_master_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0875d230 drm_crtc_check_viewport +EXPORT_SYMBOL drivers/gpu/drm/drm 0x08f2e7b0 drm_gem_dmabuf_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x097a7aa4 drm_hdmi_vendor_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a0e4760 drm_modeset_lock_single_interruptible EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a72f765 drm_clflush_virt_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0abfc2dc drm_connector_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ac584d5 drm_gem_vm_close -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0bd12777 drm_crtc_vblank_count_and_time -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0be6ee95 drm_crtc_vblank_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d62b8f1 drm_crtc_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0b0ef902 drm_crtc_vblank_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0b903837 drm_crtc_vblank_restore +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0bb47af3 __drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0bbe4fef drm_gem_prime_import +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0bfaf74b drm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0cae16e3 drm_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0cf05323 drm_state_dump EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d9b4753 drm_mode_equal -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0da50392 drm_writeback_connector_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0dd2ba85 drm_ioctl -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0e925d38 drm_crtc_vblank_waitqueue -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f561e22 drm_i2c_encoder_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f770bdc drm_invalid_op EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f7acb66 drm_mm_print -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f8e2e55 drm_panel_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fa44f3d drm_file_get_master EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fd60df2 drm_get_connector_status_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ff7ea1d drm_connector_atomic_hdr_metadata_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x105e2ead drm_mode_validate_ycbcr420 +EXPORT_SYMBOL drivers/gpu/drm/drm 0x10617fa4 drm_bridge_chain_mode_valid EXPORT_SYMBOL drivers/gpu/drm/drm 0x107742a9 drm_get_subpixel_order_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x109bcb77 drm_object_property_set_value -EXPORT_SYMBOL drivers/gpu/drm/drm 0x10d0b317 drm_bridge_attach -EXPORT_SYMBOL drivers/gpu/drm/drm 0x11041fb9 drm_property_create_object -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1122964f drm_panel_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1454f285 drm_atomic_add_affected_connectors -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1472f596 drm_atomic_state_clear -EXPORT_SYMBOL drivers/gpu/drm/drm 0x152355a3 drm_framebuffer_plane_height -EXPORT_SYMBOL drivers/gpu/drm/drm 0x15a2b547 drm_framebuffer_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x17161fd6 drm_bridge_chain_mode_set -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1728c001 drm_dev_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x17e12888 drm_property_create_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0x18474cee drm_hdcp_update_content_protection -EXPORT_SYMBOL drivers/gpu/drm/drm 0x184cf62a drm_dev_unplug -EXPORT_SYMBOL drivers/gpu/drm/drm 0x18a1ae05 drm_gem_lock_reservations -EXPORT_SYMBOL drivers/gpu/drm/drm 0x19939357 drm_property_lookup_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0x19f1a090 drm_get_edid_switcheroo -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a3745f0 drm_mode_create_content_type_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x10bb2fdf drm_i2c_encoder_save +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1252bf87 drm_connector_attach_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1263f206 drm_any_plane_has_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0x129e1aab drm_mode_find_dmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0x12b90d6f drm_mode_create_dp_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x12bbf790 drm_atomic_bridge_chain_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0x141a7db1 drm_mode_is_420 +EXPORT_SYMBOL drivers/gpu/drm/drm 0x160df47a drm_connector_list_iter_begin +EXPORT_SYMBOL drivers/gpu/drm/drm 0x167a2133 drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x17e1118a drm_gem_prime_fd_to_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0x183e3193 drm_ioctl_permit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x18546dee drm_display_mode_from_cea_vic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x188d58e1 drm_gem_shmem_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1896671b drm_crtc_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x19010669 drm_atomic_get_old_bridge_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1913d71f drm_add_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x19420fdd drm_plane_init EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a411479 drm_syncobj_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1baa06a3 drm_gem_shmem_purge_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1bf478fb drm_writeback_prepare_job -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1cd808ce drm_plane_enable_fb_damage_clips -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d6500af drm_debugfs_remove_files -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d85b83b drm_connector_set_tile_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1dcf6b5b drm_display_mode_from_cea_vic -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1dd2b289 drm_sysfs_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1ddc0bf3 drm_gem_unlock_reservations -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1e3c280e drm_client_framebuffer_delete -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1f34ff22 drm_crtc_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1ff5f315 drm_client_rotation +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a41851f drm_atomic_private_obj_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a939b72 drm_event_cancel_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1bd8de51 drm_client_buffer_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c7f3e8a drm_gem_map_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1cdeb953 drm_mode_crtc_set_gamma_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1dfb2e9f drm_plane_create_color_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1e554009 drm_mode_get_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1e61b814 drm_atomic_set_crtc_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1fd94db4 drm_gem_shmem_create_with_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0x20872438 drm_hdmi_avi_infoframe_colorspace +EXPORT_SYMBOL drivers/gpu/drm/drm 0x20df0702 drm_mode_parse_command_line_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0x21641ac2 drm_atomic_get_bridge_state EXPORT_SYMBOL drivers/gpu/drm/drm 0x2183c08c drm_mm_scan_add_block -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2238d6e8 drm_gem_dmabuf_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x23c0b6ef drm_atomic_state_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x246bb7b7 drm_aperture_remove_conflicting_pci_framebuffers +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2188a92d drm_plane_get_damage_clips +EXPORT_SYMBOL drivers/gpu/drm/drm 0x219833c7 drm_panel_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x22e850d9 of_drm_find_panel +EXPORT_SYMBOL drivers/gpu/drm/drm 0x230f350d drm_of_component_probe +EXPORT_SYMBOL drivers/gpu/drm/drm 0x24b8d39d drm_event_reserve_init EXPORT_SYMBOL drivers/gpu/drm/drm 0x24d124ac drm_mode_equal_no_clocks_no_stereo -EXPORT_SYMBOL drivers/gpu/drm/drm 0x250a345b drm_connector_attach_vrr_capable_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x25381109 drm_get_edid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x259a9320 drm_mode_create_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x255922ab drm_crtc_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0x25bb0e0a drm_crtc_vblank_put EXPORT_SYMBOL drivers/gpu/drm/drm 0x25daad93 __drm_mm_interval_first +EXPORT_SYMBOL drivers/gpu/drm/drm 0x262e1b66 drm_noop +EXPORT_SYMBOL drivers/gpu/drm/drm 0x263ff095 drmm_kfree EXPORT_SYMBOL drivers/gpu/drm/drm 0x267545dc drm_get_format_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0x26894bf2 drm_gem_prime_handle_to_fd EXPORT_SYMBOL drivers/gpu/drm/drm 0x2754dad8 drm_mm_reserve_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2805330a drm_plane_create_blend_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x27f490be drm_framebuffer_plane_width EXPORT_SYMBOL drivers/gpu/drm/drm 0x28779e52 drm_printf -EXPORT_SYMBOL drivers/gpu/drm/drm 0x29157fdb drm_gem_create_mmap_offset_size EXPORT_SYMBOL drivers/gpu/drm/drm 0x29f078d1 drm_mode_legacy_fb_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a938aee drm_panel_add EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a962499 drm_mm_scan_init_with_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c1288c8 drm_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2b0eb57b drm_client_framebuffer_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2b13e22f drm_atomic_get_old_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2b1575ad drm_atomic_get_new_connector_for_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c3b0573 drm_atomic_get_new_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c3d92f1 drm_atomic_get_old_connector_for_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d15f9e7 drm_vblank_work_init EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d50570f drm_rect_calc_hscale -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2da042ed drm_gem_objects_lookup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e1519ca drm_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2de14f15 drm_property_create_bitmask +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e19c567 drm_mode_object_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e29fd37 drm_crtc_vblank_waitqueue EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ed3c600 drm_mode_debug_printmodeline -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2fb1c694 drm_client_modeset_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2fbf0660 drm_master_internal_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2fc6709a drm_gem_prime_handle_to_fd -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3026eb9d drm_hdmi_avi_infoframe_from_display_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x30e08779 drm_gem_shmem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f223eb7 drm_atomic_normalize_zpos +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f86b371 of_drm_get_panel_orientation +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3041e705 drm_gem_handle_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0x305344f1 drm_gem_object_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x31118ae8 drm_display_info_set_bus_formats +EXPORT_SYMBOL drivers/gpu/drm/drm 0x31b69dc2 drm_bridge_chain_mode_set EXPORT_SYMBOL drivers/gpu/drm/drm 0x31b8a5e3 __drm_set_edid_firmware_path -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3201cd39 drm_add_override_edid_modes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3224f037 drm_syncobj_replace_fence -EXPORT_SYMBOL drivers/gpu/drm/drm 0x327eeee5 drm_syncobj_get_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3220319d drm_bridge_chain_post_disable EXPORT_SYMBOL drivers/gpu/drm/drm 0x32a0cc37 drm_print_bits -EXPORT_SYMBOL drivers/gpu/drm/drm 0x33535360 drm_i2c_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x336ea870 drm_vblank_work_cancel_sync -EXPORT_SYMBOL drivers/gpu/drm/drm 0x33a77e44 drm_event_reserve_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3457979f drm_plane_from_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0x34ae23f7 drm_modeset_backoff -EXPORT_SYMBOL drivers/gpu/drm/drm 0x35595924 drm_ioctl_kernel -EXPORT_SYMBOL drivers/gpu/drm/drm 0x35f32f28 drm_i2c_encoder_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3634f2d3 drm_crtc_wait_one_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x36bc5f3c drm_crtc_arm_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3703f9a4 drm_property_blob_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x37c2d8bc of_drm_get_panel_orientation -EXPORT_SYMBOL drivers/gpu/drm/drm 0x38049d7b drm_mode_object_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0x33537e90 drm_atomic_check_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0x356417b2 drm_hdmi_avi_infoframe_quant_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x35ae03d2 drm_mode_create_content_type_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x366198b5 drm_gem_cma_print_info EXPORT_SYMBOL drivers/gpu/drm/drm 0x380b5fbb __drm_get_edid_firmware_path -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3884073e drm_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3820bd99 drm_atomic_add_affected_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x38507e52 drm_framebuffer_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x38a1a76e drm_atomic_private_obj_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0x38d2e256 drm_of_crtc_port_mask +EXPORT_SYMBOL drivers/gpu/drm/drm 0x39076b46 drm_modeset_backoff EXPORT_SYMBOL drivers/gpu/drm/drm 0x39093b79 drm_vma_offset_manager_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x39dbf280 drm_plane_get_damage_clips_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x39a4dc68 drm_crtc_set_max_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3aac2e0f drm_client_rotation 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 0x3b3ffeed drm_gem_shmem_get_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b85fd3d drm_gem_map_detach EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ba17eab drm_ht_insert_item -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c740c38 drm_i2c_encoder_detect -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3d4c74ca drm_framebuffer_plane_width -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3df2336e drm_gem_free_mmap_offset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e0e6edd drm_atomic_get_crtc_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e1b8a81 drm_mode_create_from_cmdline_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ebe8abd drm_gem_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c1b8d30 drm_panel_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ccc3e00 drm_property_create_bool +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3d07db9e drm_gem_vm_close +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3dfc9c77 drm_prime_pages_to_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e7b35a5 drm_hdmi_infoframe_set_hdr_metadata +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e80ca87 drm_hdmi_avi_infoframe_bars EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f405489 __drm_printfn_err -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f5b21c5 drm_client_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f74e05a drm_atomic_add_affected_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4160f894 drm_print_regset32 -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4218595f drm_i2c_encoder_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x42c93f5f drm_atomic_get_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3fa447b8 drm_mode_probed_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x411c1ac1 drm_vblank_work_schedule +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4141317e drm_gem_prime_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x41ce4698 drm_crtc_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x42c8d219 drm_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x43182939 drm_gem_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4377ac30 drm_syncobj_find_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0x43ab768b drm_plane_from_index EXPORT_SYMBOL drivers/gpu/drm/drm 0x4403a9c3 drm_mode_get_hv_timing -EXPORT_SYMBOL drivers/gpu/drm/drm 0x441731b5 drm_gem_shmem_pin EXPORT_SYMBOL drivers/gpu/drm/drm 0x44a2cadb drm_prime_sg_to_dma_addr_array +EXPORT_SYMBOL drivers/gpu/drm/drm 0x450b8ba5 drm_universal_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x45443599 drm_property_create_range EXPORT_SYMBOL drivers/gpu/drm/drm 0x4575a0ca drm_mode_set_crtcinfo -EXPORT_SYMBOL drivers/gpu/drm/drm 0x45a84062 drm_crtc_commit_wait -EXPORT_SYMBOL drivers/gpu/drm/drm 0x461bf53f drm_plane_create_zpos_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x468585e2 drm_gem_prime_import_dev -EXPORT_SYMBOL drivers/gpu/drm/drm 0x46abc1f6 drm_gem_prime_export -EXPORT_SYMBOL drivers/gpu/drm/drm 0x46e6a41f drm_mode_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x470e8753 drm_panel_unprepare -EXPORT_SYMBOL drivers/gpu/drm/drm 0x47840930 drm_i2c_encoder_save -EXPORT_SYMBOL drivers/gpu/drm/drm 0x478a27ef drm_mode_config_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x45d9ebe8 drm_gem_lock_reservations +EXPORT_SYMBOL drivers/gpu/drm/drm 0x46cfdb41 drm_plane_force_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x47058266 drm_set_preferred_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x478b9bf1 drm_mode_put_tile_group EXPORT_SYMBOL drivers/gpu/drm/drm 0x4834906a drm_flip_work_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x497d2eca drm_mode_validate_driver -EXPORT_SYMBOL drivers/gpu/drm/drm 0x49e1b374 drm_dev_dbg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x490f86e5 drm_syncobj_find EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a35d30d drm_mode_set_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a734a86 drm_gem_shmem_purge +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a4182f1 drm_connector_cleanup EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a7d75b0 drm_memcpy_from_wc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a979419 drm_mode_set_config_internal -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ab560a2 drm_gem_handle_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b145566 drm_writeback_cleanup_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4aa7834a drm_gem_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ad2eace drm_event_reserve_init_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b2e1bd6 drm_gem_unlock_reservations EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b7ebf95 drm_mm_remove_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c534bf1 drm_panel_get_modes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c9c2a9e drm_gem_cma_print_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d102968 drm_client_modeset_commit_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d45646e drm_prime_sg_to_page_array +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c3391b7 drm_release_noglobal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4cf373bb drm_mode_prune_invalid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d549121 drm_mode_create_dvi_i_properties EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d73b36c drm_vma_offset_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d89455c drm_bridge_chain_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e75ef62 drm_calc_timestamping_constants -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ef1ea02 drm_atomic_get_new_bridge_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4de800a5 drm_connector_attach_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4df923ff drm_gem_dmabuf_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e696adb drm_vblank_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ea6408d drm_modeset_acquire_init EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f18a150 __drm_debug EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f8169e2 drm_vma_offset_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4fcbba3b drm_panel_init EXPORT_SYMBOL drivers/gpu/drm/drm 0x50674de7 drm_timeout_abs_to_jiffies +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50c671db drm_atomic_get_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50d709a7 drm_framebuffer_remove EXPORT_SYMBOL drivers/gpu/drm/drm 0x513072fe __drm_puts_seq_file -EXPORT_SYMBOL drivers/gpu/drm/drm 0x514a199c drm_bridge_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x51976675 drm_any_plane_has_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0x51dc0c03 drm_plane_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x51fe6d9d drm_panel_unprepare EXPORT_SYMBOL drivers/gpu/drm/drm 0x521ad6d0 drm_puts -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5257dde1 drm_gem_object_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5269f995 drm_atomic_get_new_connector_for_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5277a091 drm_bridge_chain_mode_fixup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x53042a8e drm_clflush_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0x53126e99 drm_connector_update_edid_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5377eba1 drm_syncobj_add_point -EXPORT_SYMBOL drivers/gpu/drm/drm 0x53c3779a drm_plane_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x55411ec9 drm_atomic_get_old_connector_for_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0x559e5817 drm_prime_gem_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x56349b17 drm_connector_attach_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x52a02af0 drm_atomic_set_crtc_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0x540e20f9 drm_send_event_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x54349989 drm_connector_attach_hdr_output_metadata_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x55200a48 drm_connector_set_panel_orientation +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57100e64 drm_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x575046d0 drm_aperture_remove_conflicting_framebuffers 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 0x58c9546e drm_connector_set_panel_orientation_with_quirk -EXPORT_SYMBOL drivers/gpu/drm/drm 0x58cfd29f drm_crtc_vblank_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x58d22b67 drm_add_modes_noedid EXPORT_SYMBOL drivers/gpu/drm/drm 0x59056243 drm_mm_replace_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5945067a drm_connector_attach_max_bpc_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5983aef1 drm_property_blob_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x598b522e drm_event_cancel_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x594d81b1 drm_mode_create_suggested_offset_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x597bba97 drm_client_modeset_dpms EXPORT_SYMBOL drivers/gpu/drm/drm 0x599dea05 drm_edid_is_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x59f69f44 drm_gem_object_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5a9ac974 drm_dev_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c1e533e drm_set_preferred_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c729f7c drm_mode_is_420_only -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c81d5c0 drm_atomic_bridge_chain_check -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5df3fc66 drm_modeset_unlock_all -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5e498c03 drm_noop -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5e5182af drm_atomic_bridge_chain_post_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5eb54747 drm_client_modeset_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0x59f574dc drm_gem_vm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5afa75d7 drm_property_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5b30bb74 drm_mode_config_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d68216e drm_dev_has_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5e2a888b drm_dev_set_unique +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5e405017 __drmm_crtc_alloc_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f068169 drm_i2c_encoder_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f0f79f1 drm_connector_atomic_hdr_metadata_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f1a1a44 drm_prime_sg_to_page_array +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f7253d9 drm_client_release EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f7985a5 drm_mm_scan_remove_block -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f7b599e drm_modeset_lock_all_ctx -EXPORT_SYMBOL drivers/gpu/drm/drm 0x60144707 drm_bridge_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x60dd53f0 drm_crtc_vblank_on -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6126821a drm_plane_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x61912ab0 drm_mode_create_tv_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x61c280e7 drm_connector_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0x63343245 drm_plane_create_scaling_filter_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x642b85a5 drm_crtc_send_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x644629a8 drm_atomic_state_default_clear -EXPORT_SYMBOL drivers/gpu/drm/drm 0x653a3ee8 devm_aperture_acquire_from_firmware +EXPORT_SYMBOL drivers/gpu/drm/drm 0x60689d8f drm_dev_enter +EXPORT_SYMBOL drivers/gpu/drm/drm 0x60b09832 drm_aperture_remove_conflicting_pci_framebuffers +EXPORT_SYMBOL drivers/gpu/drm/drm 0x60dc4728 drm_dev_dbg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6123d44c drm_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x61555e13 drm_client_dev_hotplug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6167832f drm_gem_prime_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0x61766c08 drm_property_add_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0x63cc3d88 drm_atomic_add_encoder_bridges +EXPORT_SYMBOL drivers/gpu/drm/drm 0x63eff149 drm_gem_shmem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6466bf9f drm_connector_attach_colorspace_property EXPORT_SYMBOL drivers/gpu/drm/drm 0x65702bd6 drm_default_rgb_quant_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x65f46a90 drm_mode_duplicate -EXPORT_SYMBOL drivers/gpu/drm/drm 0x663eb019 drm_atomic_get_bridge_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x66c44f98 drm_of_component_probe -EXPORT_SYMBOL drivers/gpu/drm/drm 0x678234df __drmm_crtc_alloc_with_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x68fa9241 drm_mode_plane_set_obj_prop -EXPORT_SYMBOL drivers/gpu/drm/drm 0x69046bfe drm_atomic_check_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0x66490546 drm_connector_list_iter_end +EXPORT_SYMBOL drivers/gpu/drm/drm 0x66cd73b4 drm_plane_get_damage_clips_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6841f09a drm_framebuffer_unregister_private EXPORT_SYMBOL drivers/gpu/drm/drm 0x6914a422 drm_edid_are_equal -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6956050f drm_gem_handle_delete -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6a21a9ff drm_atomic_nonblocking_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ab3a61f drm_mode_plane_set_obj_prop EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b0b9550 drm_flip_work_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6be34270 drm_modeset_unlock -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6c004d17 drm_mode_crtc_set_gamma_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6c0cdd45 drm_modeset_acquire_fini -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6c204c0a drm_gem_dmabuf_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e210839 drm_atomic_get_connector_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b66c53c drm_print_regset32 +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b8bec40 drm_atomic_set_mode_prop_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6bfdac32 drm_crtc_vblank_on +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6c2523c0 drm_mode_create_aspect_ratio_property EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e30ba8e drm_rect_rotate_inv -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ebe88df drm_vblank_work_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6eefd61c drm_bridge_chain_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ecbd4bc drm_atomic_commit EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ef2f78e drm_format_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0x70b66c39 drm_syncobj_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x711d61cf drm_connector_init_with_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x700e3237 drm_atomic_get_connector_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x703db344 drm_mode_is_420_also +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7106c16a drm_crtc_send_vblank_event EXPORT_SYMBOL drivers/gpu/drm/drm 0x71221d52 drm_vma_offset_manager_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7189b2e1 drm_gtf_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x71d423d3 drm_bridge_chain_post_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x71eb6556 drm_gem_fence_array_add_implicit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x71eff66b drm_gem_dmabuf_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x730aa809 drm_mode_get_tile_group -EXPORT_SYMBOL drivers/gpu/drm/drm 0x74c80725 drm_connector_list_iter_begin -EXPORT_SYMBOL drivers/gpu/drm/drm 0x74d54a64 drm_syncobj_find -EXPORT_SYMBOL drivers/gpu/drm/drm 0x74e2b952 drm_bridge_chain_mode_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7168b1d4 drm_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x73394eb9 drm_atomic_add_affected_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm 0x734903a9 drm_dev_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7370633a drm_mode_create_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x742eba1d drm_bridge_chain_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x747ebf93 drm_gtf_mode_complex EXPORT_SYMBOL drivers/gpu/drm/drm 0x74eaf26b drm_vma_offset_lookup_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7585f54c drm_connector_list_update -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7682cd67 drm_crtc_vblank_restore -EXPORT_SYMBOL drivers/gpu/drm/drm 0x76b8ec72 drm_property_create_bitmask -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7736b212 drm_atomic_set_crtc_for_connector -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7782e48c drm_universal_plane_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x78aa827a drm_is_current_master -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7a7437f1 drm_mode_put_tile_group -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7aa53e42 drm_client_modeset_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7ca20169 of_drm_find_bridge -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7cc49e77 drm_connector_list_iter_end -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7cd2ec5d drm_atomic_add_encoder_bridges -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d98b0de __drm_atomic_helper_disable_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7df2ebb1 drm_connector_attach_dp_subconnector_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x76b9862f drm_connector_list_iter_next +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7715c824 drm_dev_unplug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x773daa51 drm_atomic_bridge_chain_post_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x785b324a drm_object_attach_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x79b5afc9 drm_debugfs_create_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7a982308 drm_client_framebuffer_flush +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7bc8c903 drm_gem_create_mmap_offset_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c361ad0 drm_connector_set_vrr_capable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c63846a drm_connector_attach_content_protection_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c9b9c69 drm_gem_dmabuf_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d4eb284 drm_writeback_signal_completion EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e016d38 drm_flip_work_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e6a0cd0 drm_syncobj_get_handle -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7ee3fa43 drm_i2c_encoder_mode_fixup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7f714d22 drmm_mode_config_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7f88c93f drm_atomic_normalize_zpos -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7ff0de53 drm_handle_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x806f265d drm_property_replace_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7f36db83 drm_modeset_unlock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fa5cad9 drm_mode_is_420_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fba1421 drm_connector_attach_vrr_capable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x80ada5f1 drm_syncobj_create EXPORT_SYMBOL drivers/gpu/drm/drm 0x81992424 drm_edid_header_is_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x81bab8b0 drm_modeset_acquire_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x82f004a1 __drm_atomic_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm 0x833a17fd drm_atomic_state_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x847adf95 drm_poll -EXPORT_SYMBOL drivers/gpu/drm/drm 0x84e33f4b drm_connector_set_link_status_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x85082291 drm_gtf_mode_complex +EXPORT_SYMBOL drivers/gpu/drm/drm 0x83235a3e drm_mode_config_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x83d4be3b drm_object_property_get_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8415f2ba drm_modeset_acquire_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0x84be5998 drm_modeset_lock_init EXPORT_SYMBOL drivers/gpu/drm/drm 0x8563a554 drm_ht_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x864ebbff drm_connector_attach_content_type_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x868f7997 drm_send_event_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x870afd7c drm_connector_attach_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8577e0ef drm_atomic_nonblocking_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x85b4a82a drm_i2c_encoder_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x85e28beb drm_connector_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x861258c9 drm_property_replace_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x862f714f drm_av_sync_delay +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8694f910 __drmm_encoder_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x86b48508 drm_calc_timestamping_constants EXPORT_SYMBOL drivers/gpu/drm/drm 0x871ab41a drm_rect_intersect -EXPORT_SYMBOL drivers/gpu/drm/drm 0x873cfc94 drm_mode_prune_invalid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x88425abc drm_framebuffer_unregister_private -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8929815f drm_vblank_work_schedule -EXPORT_SYMBOL drivers/gpu/drm/drm 0x89e77c29 drm_property_create_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x89f0af31 drm_hdmi_avi_infoframe_bars -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8e224b03 drm_of_crtc_port_mask -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8e681c8e drm_atomic_bridge_chain_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8eeb0ad6 __drmm_add_action -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8eeeedfe drm_mode_find_dmt -EXPORT_SYMBOL drivers/gpu/drm/drm 0x901ed500 drm_atomic_private_obj_fini -EXPORT_SYMBOL drivers/gpu/drm/drm 0x90844f27 drm_crtc_accurate_vblank_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0x910865a1 drm_atomic_bridge_chain_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x910ebde8 drm_gem_dmabuf_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x91497192 drm_client_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x914a3a50 drm_connector_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x87b40448 drm_crtc_init_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x87e8dc3e drm_syncobj_get_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0x89206088 drm_prime_gem_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x896dcfcc drm_i2c_encoder_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8a8527d5 drm_crtc_commit_wait +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ad6b5a3 drm_client_buffer_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8b763253 drm_i2c_encoder_detect +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c238e6b drm_property_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d77bc60 drm_mode_create_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8e935eee drm_atomic_state_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8edb1b12 drm_atomic_state_default_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x90901c07 drm_mode_object_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x90b1889b drm_gem_private_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9156e5ab drm_cvt_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x91c7a178 drm_encoder_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x91df5043 drm_gem_get_pages EXPORT_SYMBOL drivers/gpu/drm/drm 0x91fec1cc drm_rect_calc_vscale -EXPORT_SYMBOL drivers/gpu/drm/drm 0x945781aa drm_atomic_get_old_bridge_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9237b729 __drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm 0x923923f3 drm_modeset_lock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x925b7893 drm_gem_object_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x92bc8f7b of_drm_find_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm 0x92d9b217 drm_mode_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x92f7d74b drm_connector_set_link_status_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x937a0807 drm_gem_shmem_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x93f61ca7 drm_gem_shmem_pin +EXPORT_SYMBOL drivers/gpu/drm/drm 0x94810464 drm_panel_get_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x949e10e8 drm_hdcp_update_content_protection +EXPORT_SYMBOL drivers/gpu/drm/drm 0x955c2c48 drm_gem_handle_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9563d7aa drm_gem_shmem_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x957304fa drm_gem_dma_resv_wait EXPORT_SYMBOL drivers/gpu/drm/drm 0x95dbc76d drm_ht_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x982e4d72 drm_gem_dmabuf_export -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9839dcf7 drm_state_dump -EXPORT_SYMBOL drivers/gpu/drm/drm 0x987a0c61 drm_plane_create_rotation_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x98932c02 drm_send_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x99a46b0a drm_vblank_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x95e1f09b drm_crtc_vblank_helper_get_vblank_timestamp +EXPORT_SYMBOL drivers/gpu/drm/drm 0x961b4d05 drm_connector_set_tile_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x96f4a307 drm_i2c_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x98880a1b drm_mode_create_hdmi_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x98880caf drm_atomic_state_default_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0x98da6410 drm_atomic_state_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0x98f7d9d2 drm_crtc_vblank_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9911f2d9 devm_aperture_acquire_from_firmware +EXPORT_SYMBOL drivers/gpu/drm/drm 0x99dd65f7 drm_plane_create_blend_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x99e0c83e drm_dev_printk EXPORT_SYMBOL drivers/gpu/drm/drm 0x99fd20aa drm_rect_clip_scaled -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9aa5202e drm_put_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9a6ac566 drm_mode_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ac9ed8d drm_atomic_get_plane_state EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b285573 drm_match_cea_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b7edc59 drm_connector_attach_content_protection_property EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b8a53f5 drm_ht_just_insert_please EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b95c885 drm_mode_match -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9bc1dae5 drm_crtc_enable_color_mgmt -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9bc7b442 drm_color_lut_check -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c70647f drm_framebuffer_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9bcc2a9b __drmm_universal_plane_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c85d77c drm_gem_put_pages EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ce050be drm_mode_copy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9d7a925c drm_probe_ddc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9e2231f8 drm_cvt_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9e6a601e drm_gem_create_mmap_offset EXPORT_SYMBOL drivers/gpu/drm/drm 0x9e7e8009 drm_edid_to_sad -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ef77dee drm_warn_on_modeset_not_all_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9efb1310 drm_av_sync_delay -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9f0efb54 drm_gem_shmem_madvise -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9f0f94bf drm_connector_attach_hdr_output_metadata_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9f7f0fb7 drm_gem_shmem_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9fb0c477 drm_crtc_vblank_helper_get_vblank_timestamp_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ecdadba drm_dev_get EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ffcdfdb drm_detect_monitor_audio EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0713087 drm_ht_find_item -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0d85a62 drm_atomic_print_new_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa13e7d21 drm_atomic_state_default_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1fb9b87 drm_property_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa29708f4 drm_atomic_get_new_private_obj_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa3864c4b drm_dev_enter -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa46d6d0d __devm_drm_dev_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa518f219 drm_modeset_lock_all -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa5949610 drm_dev_has_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa59747c1 drm_modeset_lock_single_interruptible -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa5bfefa8 drm_atomic_get_old_private_obj_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa7276a96 drm_gem_mmap_obj -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa737581c drm_gem_put_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa80b6f39 drm_mode_object_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa8e0d590 drm_hdmi_infoframe_set_hdr_metadata -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaa57859d drm_event_reserve_init_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaa9511da drm_connector_attach_scaling_mode_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaace6041 drm_atomic_set_fence_for_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0xab84577a drm_mode_probed_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa106c89a drm_gem_dmabuf_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa15b0d56 drm_client_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1616b3a drm_gem_shmem_purge_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1b7292a drm_i2c_encoder_restore +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa3030099 drm_read +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa35dfb6d drm_property_create_object +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa63dd2de drm_i2c_encoder_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa73b38c2 drm_mode_validate_driver +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaa5c0821 drm_property_create_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaa80d4d1 drm_atomic_set_fence_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaa99b4e0 drm_modeset_drop_locks +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaa9f694b drm_send_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xac4b3d01 drm_property_create_signed_range EXPORT_SYMBOL drivers/gpu/drm/drm 0xad4e902b drm_color_ctm_s31_32_to_qm_n -EXPORT_SYMBOL drivers/gpu/drm/drm 0xad78cf1c drm_mode_is_420_also -EXPORT_SYMBOL drivers/gpu/drm/drm 0xada9570a __drmm_add_action_or_reset -EXPORT_SYMBOL drivers/gpu/drm/drm 0xae1f7fa2 drm_gem_unmap_dma_buf +EXPORT_SYMBOL drivers/gpu/drm/drm 0xad4f77bb drm_sysfs_connector_status_event EXPORT_SYMBOL drivers/gpu/drm/drm 0xae277372 __drm_crtc_commit_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaeec870f drm_gem_map_dma_buf +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf1efb11 drm_writeback_queue_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0xafea083d drm_bridge_attach EXPORT_SYMBOL drivers/gpu/drm/drm 0xb053adda drm_rect_rotate -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb062ff82 drm_dev_get EXPORT_SYMBOL drivers/gpu/drm/drm 0xb0b05ff5 drm_clflush_sg EXPORT_SYMBOL drivers/gpu/drm/drm 0xb11ac7a7 __drm_err -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb16f38f1 drm_prime_pages_to_sg -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb203d123 drm_dev_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb1dc8a71 drm_gem_free_mmap_offset EXPORT_SYMBOL drivers/gpu/drm/drm 0xb22dfd68 drm_format_info_min_pitch EXPORT_SYMBOL drivers/gpu/drm/drm 0xb29c987b drm_driver_legacy_fb_format -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb2c4882e drm_open -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb2f60806 drm_gem_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb3359970 drm_dev_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb39e6934 drm_mode_create_aspect_ratio_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb3ab990d drm_client_buffer_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb3ae3172 drm_dev_printk EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4032484 drm_mm_insert_node_in_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb40d4eb0 drm_mode_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb45a2a8d drm_property_replace_global_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb480d8fb drm_gem_shmem_unpin EXPORT_SYMBOL drivers/gpu/drm/drm 0xb52cda4c drm_vma_node_is_allowed -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb55a8292 drm_crtc_vblank_helper_get_vblank_timestamp EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6127243 drm_need_swiotlb -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb7136755 drm_crtc_init_with_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb737e5fb drm_gem_vm_open -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb77efa08 drm_atomic_get_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb8246bad drm_writeback_get_out_fence -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb83c3dec __drmm_universal_plane_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb857fe8c drm_connector_attach_edid_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb86bb1d2 drm_gem_prime_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb88d639f drm_plane_create_color_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb8ee6f3e drm_gem_shmem_unpin -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb95ce3cc drm_i2c_encoder_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb634c91d __drmm_add_action +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6710c28 drm_modeset_unlock +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb69d1c5d drm_hdmi_avi_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb779bbc4 drm_property_create_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb7ff753d drm_file_get_master +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb8ade14f drm_mode_object_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb989727a drm_connector_set_panel_orientation_with_quirk EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9cad492 __drm_atomic_state_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbb1b3958 drm_property_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbb33d611 drm_gem_private_object_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbd5c8dba drm_mode_create_tv_margin_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xba144cc5 drm_object_property_set_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0xba368187 drm_get_edid_switcheroo +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbbb0c592 drm_gem_create_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbc4af23b drmm_mode_config_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbce93b29 drm_gem_shmem_madvise +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbcee4873 drm_connector_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbd739278 drm_plane_create_rotation_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbf55597e drm_panel_of_backlight +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbf645f75 drm_property_blob_get EXPORT_SYMBOL drivers/gpu/drm/drm 0xc05fee8e drm_vma_node_allow -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc0cce7eb drm_invalid_op -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc16019fb drm_client_framebuffer_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc164d073 drm_add_edid_modes -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc26265e2 drm_vblank_work_flush -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc3d82369 drm_panel_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc411d61a drm_gem_prime_fd_to_handle -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc4ad02cb drm_client_modeset_probe -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc502fb19 drm_crtc_vblank_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc524c533 drm_gem_prime_import -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc5fb286f drm_i2c_encoder_restore -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc627d733 drm_hdmi_avi_infoframe_colorspace -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc65765a7 drm_syncobj_find_fence -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc7bcea5f drm_add_modes_noedid -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc8911602 drm_client_dev_hotplug +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc19a45ee drm_writeback_prepare_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc22d7483 drm_panel_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc2536b54 drm_gem_dmabuf_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc2f7ade1 drm_hdmi_avi_infoframe_content_type +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc32f55f1 drm_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc3a76dc1 drm_atomic_get_new_bridge_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc42ff410 drm_bridge_chain_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc568784b drm_gem_unmap_dma_buf +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc60e9b2e drm_master_internal_acquire +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6114dda drm_connector_attach_max_bpc_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc614a705 drm_connector_has_possible_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6c169ab drm_gem_map_detach +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc7e0d900 drm_send_event_timestamp_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc833b128 drm_connector_attach_tv_margin_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc90d7287 drm_mode_create_from_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc9f14bab drm_probe_ddc EXPORT_SYMBOL drivers/gpu/drm/drm 0xca190085 drm_format_info_block_height -EXPORT_SYMBOL drivers/gpu/drm/drm 0xca8d2fcc drm_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xca2efec3 drm_atomic_bridge_chain_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xca864fae drm_crtc_create_scaling_filter_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcad2f46c drm_clflush_pages EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb2340b8 drm_rect_debug_print +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcc667130 drm_plane_create_zpos_immutable_property EXPORT_SYMBOL drivers/gpu/drm/drm 0xccc59759 drm_format_info_block_width -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd450e4b drm_gem_map_attach -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd92712f drm_mode_create_dvi_i_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0xce9b268f drm_atomic_set_crtc_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0xce6931ba drm_client_modeset_commit_locked EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf11a549 drm_flip_work_allocate_task -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf1d6502 drm_of_find_possible_crtcs EXPORT_SYMBOL drivers/gpu/drm/drm 0xd05fda43 drm_prime_get_contiguous_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd0681907 drm_writeback_queue_job -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd135a747 drm_master_internal_acquire +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd0777762 drm_gtf_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd0870f61 drm_atomic_state_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd0af02a4 drm_gem_map_dma_buf +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd0b0b2bf drm_master_internal_release EXPORT_SYMBOL drivers/gpu/drm/drm 0xd13f9985 drm_edid_block_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd1911921 drm_gem_dma_resv_wait +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd1ebdfe1 drm_mode_create_tv_properties EXPORT_SYMBOL drivers/gpu/drm/drm 0xd1fc5f14 drm_flip_work_queue -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd3a4780e drm_gem_shmem_create_with_handle -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd3c1220d drm_mode_object_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2e9ef52 drm_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd34c0742 drmm_kmalloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd350ed1f drm_writeback_connector_init EXPORT_SYMBOL drivers/gpu/drm/drm 0xd4132cc6 drm_gem_fence_array_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd4a916a3 drm_hdmi_avi_infoframe_content_type -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd50cda0b drm_panel_of_backlight -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd588c25a drm_connector_set_vrr_capable_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd5906f16 drm_plane_get_damage_clips +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd59ff41c drm_connector_update_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd5f15db1 __drmm_add_action_or_reset EXPORT_SYMBOL drivers/gpu/drm/drm 0xd60baf5a drm_edid_get_monitor_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd6244794 drm_gem_object_init EXPORT_SYMBOL drivers/gpu/drm/drm 0xd680a377 drm_gem_object_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd78e030f drm_client_framebuffer_flush +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd73fca54 drm_client_modeset_check EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7a9cf42 drm_mode_validate_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7c57cc9 drm_atomic_set_fb_for_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7fca53a drm_atomic_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd8efb9ab __drmm_encoder_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd9291ad5 drm_client_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd9d1c747 drm_mode_is_420 -EXPORT_SYMBOL drivers/gpu/drm/drm 0xda3c8237 drm_read -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb386c40 drm_writeback_signal_completion +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd898dded drm_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd89d5cdc drm_property_lookup_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd99defc1 drm_crtc_enable_color_mgmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd9d48585 drm_framebuffer_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdae88ff7 drm_gem_shmem_purge +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb5096b9 drm_property_replace_global_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb906646 drm_color_lut_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbaafbde drm_plane_enable_fb_damage_clips +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdc1cffe1 drm_crtc_vblank_helper_get_vblank_timestamp_internal EXPORT_SYMBOL drivers/gpu/drm/drm 0xdc833fbb drm_flip_work_queue_task -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd3f1933 drm_property_add_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdc88b3e2 drm_vblank_work_cancel_sync +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd2e74f2 drm_i2c_encoder_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd7035c9 drm_sysfs_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xddc36473 drm_syncobj_get_fd 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 0xe004898c drm_mode_create_tile_group -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe247013a drmm_kfree +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe13041f8 drm_atomic_print_new_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe1317d52 drm_dev_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe13dd1fc drm_atomic_set_mode_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe17486fa drm_modeset_lock +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe2053743 drm_modeset_lock_all_ctx +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe246a6aa drm_crtc_accurate_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe280fbb2 drm_writeback_cleanup_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe286be69 drm_atomic_set_fb_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe2eb3ced drm_master_get EXPORT_SYMBOL drivers/gpu/drm/drm 0xe317082a __drm_printfn_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe31b362a drm_property_create_enum -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe3308828 drm_property_create_signed_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe349460e drm_modeset_lock -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe34f4f3a drm_object_property_get_value -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe3ffddc0 drm_modeset_drop_locks -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe47d3821 drm_encoder_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe4e7c4ac drm_plane_create_zpos_immutable_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe572ca9b drm_gem_cma_prime_import_sg_table_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe597d250 drm_mode_parse_command_line_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe3aa03d0 drm_panel_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe3d83a08 drm_plane_create_alpha_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe3f0e4da drm_gem_prime_import_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe452bc6c drm_atomic_bridge_chain_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe5152e37 drm_gem_shmem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe5b511de drm_debugfs_remove_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7848862 drm_add_override_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8066796 drm_dev_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe81ab9a9 drm_crtc_vblank_count EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8362900 drm_edid_duplicate EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8a034df drm_dev_exit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8a84fbe drm_panel_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8c4072b drm_panel_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe947bfad drm_crtc_create_scaling_filter_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe96e0b5f drm_property_create_bool -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe9b6711c drm_i2c_encoder_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8a5d9e4 drm_crtc_check_viewport +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe944e7e5 drm_gem_cma_prime_import_sg_table_vmap EXPORT_SYMBOL drivers/gpu/drm/drm 0xea00fe81 __drm_printfn_coredump -EXPORT_SYMBOL drivers/gpu/drm/drm 0xeaa29abc drm_crtc_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0xea7f3ff0 drm_property_blob_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xea9570c9 drm_connector_attach_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xea97d8e3 drm_master_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeabeb237 drm_crtc_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xebc1efc4 drm_framebuffer_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xebdf6f38 drm_of_find_possible_crtcs EXPORT_SYMBOL drivers/gpu/drm/drm 0xec12af74 __drm_dbg -EXPORT_SYMBOL drivers/gpu/drm/drm 0xee60949a drm_hdmi_vendor_infoframe_from_display_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0xef1b393a drm_connector_has_possible_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0xec650b08 drm_crtc_arm_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xed1e33af drm_gem_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xedc6f53b drm_atomic_get_crtc_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xef428d7e drm_connector_init_with_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf044b7f0 drm_is_current_master EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0517d7a drm_mm_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0f3b4a2 drm_debugfs_create_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf08c013f drm_mode_create_tv_margin_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0ea1484 drm_crtc_wait_one_vblank EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1421d13 drm_mode_sort -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1762e13 drm_mode_create_hdmi_colorspace_property EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1b5340a drm_mode_vrefresh -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1b66de4 drm_aperture_remove_conflicting_framebuffers -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf2db4114 drm_mode_create_suggested_offset_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf334df5c drm_release_noglobal +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf35e5158 drm_gem_fence_array_add_implicit EXPORT_SYMBOL drivers/gpu/drm/drm 0xf406e46a drm_get_connector_type_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf52a26a3 drm_mode_validate_ycbcr420 -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf57fd214 drm_crtc_from_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf5c3bd52 drm_connector_attach_tv_margin_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf62cb294 drm_atomic_bridge_chain_pre_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf6fd141b drm_atomic_set_mode_prop_for_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf7016dd8 drm_gem_shmem_print_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf7098d74 drm_hdmi_avi_infoframe_quant_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf759494d drm_ioctl_permit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf7604e7c drm_gem_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf79ddcf8 drm_mode_config_reset -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf7cb2ec2 drm_connector_list_iter_next -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf80c581d drm_connector_set_path_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf567f8b0 drm_atomic_bridge_chain_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf5f32021 drm_ioctl_kernel +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf7f02e5b drm_mode_duplicate EXPORT_SYMBOL drivers/gpu/drm/drm 0xf824c7db __drm_printfn_debug -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf84fba4c drm_mode_create_dp_colorspace_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf88acea7 of_drm_find_panel +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf84a1909 drm_plane_create_scaling_filter_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf883f641 drm_connector_attach_content_type_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf893510b drm_poll EXPORT_SYMBOL drivers/gpu/drm/drm 0xf9a5ebd7 drm_vma_node_revoke -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa0a6e63 drm_atomic_set_mode_for_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa0b4204 drm_object_attach_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa355b81 drm_gem_get_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfbd93b90 drm_crtc_vblank_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfcbd8b7d drm_atomic_private_obj_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfe5175cb drm_gem_shmem_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfe7b3177 drm_crtc_set_max_vblank_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfeacdc50 drm_sysfs_connector_status_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf9c00ca8 drm_syncobj_add_point +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa317526 drm_syncobj_replace_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa7ab891 drm_warn_on_modeset_not_all_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfaa742be drm_i2c_encoder_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfad903e7 __devm_drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb035ada drm_panel_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfba50727 drm_gem_mmap_obj +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc1b2671 drm_client_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc33086c drm_mode_set_config_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc380e1a drm_gem_objects_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc3a2504 drm_crtc_vblank_count_and_time +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd90e62c drm_connector_set_path_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfdb1034f drm_client_framebuffer_create EXPORT_SYMBOL drivers/gpu/drm/drm 0xfeb953b1 __drm_printfn_seq_file EXPORT_SYMBOL drivers/gpu/drm/drm 0xfecc8840 drm_edid_to_speaker_allocation -EXPORT_SYMBOL drivers/gpu/drm/drm 0xff699c0f drm_framebuffer_lookup -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x00176c8f drm_atomic_helper_prepare_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x006af3f9 drm_helper_connector_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x00e23044 drm_fb_helper_pan_display -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x01b5153d drm_dp_pcon_reset_frl_config +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfeed3938 drm_writeback_get_out_fence EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x01c4bba9 drm_dp_lttpr_max_link_rate -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x01d64e76 drm_dp_find_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x01f1c7d2 drm_scdc_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0214c60c drm_helper_resume_force_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x02c3022f drm_fbdev_generic_setup -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x03aae9b2 drm_dp_mst_detect_port -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x06184f70 drm_dp_link_train_clock_recovery_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x01efefd0 drm_atomic_helper_commit_cleanup_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0318d2d2 drm_gem_simple_kms_prepare_shadow_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0546f465 drm_dp_mst_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x054973cf drm_dp_pcon_is_frl_ready +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x064f1d79 drm_edp_backlight_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x06c21b0d drm_atomic_helper_commit_tail_rpm EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x06c49551 drm_dp_dsc_sink_line_buf_depth -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x072bb511 drm_dp_cec_register_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x072d787f drm_gem_fb_destroy EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x07a00858 drm_fb_memcpy_dstclip -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0920625b drm_dp_dual_mode_max_tmds_clock -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x09c9a1d3 drm_gem_duplicate_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0bd7565b drm_dp_dual_mode_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0d166e16 __drm_atomic_helper_plane_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0facc59b drm_fb_helper_sys_imageblit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x10b1fa4c drm_crtc_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x114a4c13 drm_dp_stop_crc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x11613c8b drm_atomic_helper_commit_duplicated_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x116f2f09 drm_atomic_helper_check_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x13495b94 drm_lspcon_get_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x134ff933 drm_mode_config_helper_resume -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1370b052 drm_dp_pcon_frl_configure_2 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x13b6fd7a drm_gem_simple_kms_destroy_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x15b0b5ea drm_panel_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x07eba598 drm_dp_pcon_pps_override_param +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x09091d9d drm_fb_helper_blank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x098cc4bb drm_atomic_helper_commit_hw_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x09c2761b drm_gem_simple_display_pipe_prepare_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0ca08c26 drm_dp_mst_deallocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0e823466 drm_dp_dual_mode_max_tmds_clock +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0fbcc036 drm_primary_helper_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x15d1f37d drm_dp_mst_atomic_enable_dsc EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1605d0ed drm_dp_lttpr_max_lane_count EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1709ddcf drm_dp_lttpr_link_train_clock_recovery_delay -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x17ab72be drm_atomic_helper_check_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x17de9f8b drm_atomic_helper_wait_for_dependencies -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x18398f90 drm_lspcon_set_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1a25b4de drm_dp_mst_topology_mgr_resume -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1a4b39e3 drm_atomic_helper_update_legacy_modeset_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1a52e392 drm_fb_helper_restore_fbdev_mode_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x173f1be8 drm_dp_remote_aux_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x18679bd4 drm_fb_helper_unregister_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x192bbc18 drm_dp_mst_dump_topology +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1944af43 drm_dp_mst_connector_early_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1972ef1f drm_dp_pcon_hdmi_link_active EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1a5bf3ca drm_dsc_dp_rc_buffer_size -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1a651ac8 drm_atomic_helper_cleanup_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1ad6445b drm_dp_mst_topology_mgr_destroy EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1b0a1fdc drm_dp_lttpr_voltage_swing_level_3_supported -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1bca5886 drm_atomic_helper_dirtyfb -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1e7dcd44 drm_scdc_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1e90b65b drm_atomic_helper_crtc_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1ee182d4 drm_dp_cec_unregister_connector -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1fb16e7b drm_fb_helper_lastclose -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x20740f89 drm_scdc_set_high_tmds_clock_ratio -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2235f289 drm_atomic_helper_commit_tail_rpm -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x23789d47 drm_fb_helper_unregister_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x23afbbde drm_dp_atomic_find_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2424cea8 drm_dp_pcon_hdmi_link_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2468cdf5 drm_dp_mst_atomic_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1dca051d drm_dp_mst_topology_state_funcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1fade456 drm_scdc_set_high_tmds_clock_ratio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1fe71ded drm_atomic_helper_wait_for_flip_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x20647e97 drm_dp_read_sink_count +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x228df68a drm_fb_helper_restore_fbdev_mode_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x238c9458 drm_lspcon_get_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x23db418a drm_atomic_helper_check_plane_damage +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x25e9fd4d drm_atomic_helper_commit_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2674327f drm_atomic_helper_damage_merged EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x26815dbc drm_dp_link_rate_to_bw_code -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x26c888dc drm_simple_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x291b15e2 drm_helper_crtc_in_use -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x29504897 drm_dp_dual_mode_detect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2a135b2d drm_fb_helper_fill_info -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2c7bc986 drm_panel_dp_aux_backlight -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2cd3e24a drm_dp_dpcd_read_phy_link_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2f89ae64 drm_atomic_helper_bridge_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x27791399 drm_fb_helper_sys_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x27824eef drm_atomic_helper_connector_tv_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x28b9a5d6 drm_dp_mst_get_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2b2f60a8 drm_dp_downstream_id +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2b5fd631 drm_fb_helper_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2c09cef6 drm_dp_lttpr_link_train_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2c47fd45 __drm_atomic_helper_connector_state_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2d29726a __drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2f77e0ef drm_dp_mst_atomic_check EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2fa94ef2 drm_dp_downstream_444_to_420_conversion -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2fd0911b drm_dp_set_phy_test_pattern -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x305b5fe6 drm_dp_lttpr_link_train_channel_eq_delay -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x30f0788e drm_fb_helper_sys_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2fd68253 drm_gem_fb_create_handle +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x303b2054 drm_simple_display_pipe_attach_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3041fd1a drm_kms_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x304c7277 drm_dp_mst_reset_vcpi_slots EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3117b63b drm_dp_downstream_max_bpc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x319bfdbc drm_dp_mst_connector_late_register -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3202c4ef devm_drm_panel_bridge_add -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x32c21603 drm_dp_send_query_stream_enc_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x335f8714 drm_helper_encoder_in_use -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3385c371 drm_dp_mst_get_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x33d3ed6b __drm_atomic_helper_crtc_state_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x383096c4 drm_atomic_helper_page_flip -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x39072598 drm_dp_cec_irq +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x325f59dc drm_atomic_helper_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x327c6800 drm_edp_backlight_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x334d9c13 __drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x34703d78 drm_atomic_helper_fake_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x34aabdca drm_dp_pcon_frl_configure_1 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x35074287 __drm_atomic_helper_plane_state_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x35dd3f4a drm_panel_bridge_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x36a385dd drm_dp_pcon_frl_configure_2 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x37b2c609 drm_dp_set_subconnector_property EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x392a838b drm_dp_downstream_max_dotclock -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3a1966e3 drm_dp_pcon_frl_enable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3a1fd2ed __drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x393fdfe1 drm_self_refresh_helper_alter_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x39fabebe drm_fb_helper_sys_read EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3a8063f3 drm_dp_dsc_sink_supported_input_bpcs -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3baf5aa1 drm_dp_read_lttpr_common_caps -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3cc04c86 drm_atomic_helper_plane_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3f071765 drm_dp_pcon_pps_override_buf -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x409b8b78 drm_dp_mst_topology_state_funcs -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x41b1d4b4 __drm_atomic_helper_bridge_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x43a1ea05 drm_dp_read_mst_cap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x445c3456 drm_panel_bridge_remove -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x446cb81f drm_gem_cleanup_shadow_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x44f74e6f drm_dp_pcon_enc_is_dsc_1_2 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x45687ad7 drm_atomic_helper_commit_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x45e202de drm_gem_simple_kms_cleanup_shadow_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3af401a8 drm_gem_simple_kms_destroy_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3b7901aa drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3cc01e42 drm_gem_simple_kms_duplicate_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3d0a9b8e drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3d616f8a drm_atomic_helper_async_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3d91edf0 drm_dp_cec_irq +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3dd40b60 drm_edp_backlight_set_level +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3e892bee drm_atomic_helper_damage_iter_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x41343072 drm_dp_mst_topology_mgr_set_mst +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x426f3815 drm_dp_check_act_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x42fdd8a2 drm_dp_cec_register_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x438b2226 drm_dp_aux_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x441b6778 drm_atomic_helper_commit_tail +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x448ece45 drm_atomic_helper_wait_for_dependencies +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x457e0eba drm_atomic_helper_wait_for_vblanks +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4603c416 drm_dp_pcon_dsc_bpp_incr EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4668c9dc drm_dp_downstream_min_tmds_clock -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x477933a7 __drm_atomic_helper_connector_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x49c2718e drm_atomic_helper_commit_planes_on_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x49dea603 drm_atomic_helper_disable_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4b9bb54a drm_helper_probe_single_connector_modes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x46af88fb drm_primary_helper_funcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x47907f2b drm_atomic_helper_commit_modeset_disables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x47aa9242 drm_dp_cec_set_edid +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x47aef7e4 drm_dp_pcon_convert_rgb_to_ycbcr +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x481c5ff8 drm_dp_pcon_hdmi_link_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x48a6d53c drm_fb_helper_pan_display +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x48f3ba37 drm_helper_move_panel_connectors_to_head +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4a3ad93e drm_fb_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4aade8cd drm_kms_helper_poll_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4ae3f506 __drm_atomic_helper_connector_duplicate_state EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4bb89424 drm_dp_downstream_max_tmds_clock -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4c0be405 drm_dp_read_dpcd_caps -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4c523297 drm_dp_check_act_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4c897805 drm_gem_fb_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4e0cedde __drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4c98aa87 __drm_atomic_helper_bridge_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4d36f205 drm_dp_read_desc EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4e41ad5c drm_fb_xrgb8888_to_rgb565 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4f8d6129 drm_primary_helper_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4f93bbe4 drm_fb_helper_set_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4f9a6e2d drm_fb_helper_sys_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4ff9e34b drm_gem_destroy_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x519f84e7 drm_dp_link_train_channel_eq_delay -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x52cd452b drm_fb_helper_sys_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4fd56675 drm_atomic_helper_update_legacy_modeset_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4fff436a drm_fb_helper_deferred_io +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5068ebe9 drm_self_refresh_helper_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x50988ba2 drm_dp_mst_dsc_aux_for_port +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x50f653a6 drm_dp_dual_mode_get_tmds_output EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x537b8893 drm_fb_blit_rect_dstclip -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x53880197 drm_dp_mst_allocate_vcpi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x53c588bf drm_gem_simple_kms_duplicate_shadow_plane_state EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5407ae9e drm_dp_get_dual_mode_type_name -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5479cf71 __drm_gem_reset_shadow_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x547fee2c __drm_atomic_helper_connector_state_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5490a3f9 drm_dp_update_payload_part2 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x54944cb4 drm_self_refresh_helper_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x54d9b8e1 drm_dp_mst_topology_mgr_set_mst -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x57e793f7 __drm_atomic_helper_plane_state_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x54523736 drm_helper_force_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x54a8aa97 drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x551f1970 drm_panel_bridge_add_typed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5646d51b drm_edp_backlight_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x56c4d701 drm_kms_helper_poll_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x574f31e7 drm_dp_link_train_channel_eq_delay EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x582f248e drm_dp_get_adjust_request_pre_emphasis EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x58d8fcaa drm_dsc_pps_payload_pack +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x59d45c48 __drm_atomic_helper_crtc_state_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x59f27ed7 drm_dp_pcon_enc_is_dsc_1_2 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5a3d430d drm_dp_update_payload_part1 EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5a4734d1 drm_kms_helper_is_poll_worker -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5b06f4ae drm_dp_pcon_dsc_bpp_incr -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5c2996ce drm_dp_pcon_hdmi_link_active -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x61264138 drm_edp_backlight_enable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x614c7eeb drm_scdc_get_scrambling_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6414fa95 drm_kms_helper_poll_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5a7b0478 drm_atomic_helper_bridge_propagate_bus_fmt +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5bfaf7fa drm_panel_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5d4ebcba drm_atomic_helper_commit_modeset_enables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5e6728b8 drm_atomic_helper_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5e7b7028 drm_gem_cleanup_shadow_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6319bb8d drm_dp_mst_topology_mgr_suspend EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x648d953b drm_dsc_dp_pps_header_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x651b27d0 drm_dp_downstream_id +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x65ef5744 drm_fb_helper_cfb_copyarea EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6615069e drm_dp_dsc_sink_max_slice_count -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x668ee694 drm_dp_cec_unset_edid -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x66f34ace __drmm_simple_encoder_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6731ffe4 drm_dp_mst_dsc_aux_for_port -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x67b88bb2 drm_atomic_helper_setup_commit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x67ea3697 __drm_gem_destroy_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x68154e2a drm_crtc_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x670d9d77 drm_dp_mst_put_port_malloc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x67edcc6c drm_atomic_helper_update_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x684f9fb9 drm_dp_vsc_sdp_log +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x69d98029 drm_atomic_helper_cleanup_planes EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6b5c2b06 drm_atomic_helper_damage_iter_next -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6bb9c08b drm_fb_helper_set_par -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6bd1f814 drm_atomic_helper_check_plane_damage -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6c933bd0 drm_dp_mst_topology_mgr_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6eca9ee4 drm_scdc_set_scrambling -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6f7f2331 drm_dp_read_sink_count -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6fac68eb drm_crtc_helper_set_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6fc89289 drm_atomic_helper_connector_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x701dfc52 drm_fb_helper_debug_enter +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6cfddd6f drm_dp_atomic_find_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6fd3219e drm_dp_pcon_pps_override_buf +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x70150511 drm_helper_resume_force_mode EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7053fa72 drm_dp_get_pcon_max_frl_bw -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x706a49b5 drm_simple_display_pipe_attach_bridge -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x70bd68a7 drm_atomic_helper_update_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7159eadc __drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x70718424 drm_gem_fb_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7122915f drm_dp_aux_register EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x73011db0 drm_dp_bw_code_to_link_rate -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x746f3849 drm_helper_probe_detect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x754734fd drm_dp_pcon_convert_rgb_to_ycbcr -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x75a4be46 drm_atomic_helper_shutdown +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7478e2ae drm_scdc_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7514780d __drm_gem_duplicate_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7635967a drm_atomic_helper_page_flip_target EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x76ff6644 drm_dp_lttpr_pre_emphasis_level_3_supported -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x77f0568f drm_atomic_helper_crtc_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7825546b drm_fb_helper_setcmap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x783d932b drm_gem_simple_kms_prepare_shadow_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7a22a33a drm_atomic_helper_commit_hw_done -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7a5eaa40 drm_fb_helper_ioctl -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7a877190 drm_dp_dual_mode_get_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7725c0e1 drm_helper_probe_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7939f390 drm_dp_pcon_frl_prepare EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7ae669d0 drm_fb_xrgb8888_to_gray8 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7b8e8fe1 drm_fb_helper_alloc_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7ba43de7 drm_dp_read_sink_count_cap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7c7eaa20 drm_dp_pcon_is_frl_ready -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7c9601ce drm_atomic_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7cf88952 drm_atomic_helper_bridge_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7ef1850f drm_atomic_helper_commit_modeset_disables -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x80788855 drm_dp_set_subconnector_property -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x81514fe3 drm_fb_helper_set_suspend_unlocked -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x81e87d24 drm_dp_dpcd_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x82033c0c drm_atomic_helper_plane_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x834e9f4c drm_dp_mst_dump_topology -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x837dec03 drm_atomic_get_mst_topology_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7b153655 drm_dp_dpcd_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7c16e701 drm_gem_duplicate_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7d2ea155 drm_fb_helper_initial_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7d8dfa46 drm_gem_destroy_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7f1e5dbe drm_helper_mode_fill_fb_struct +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7f65dde5 drm_dp_mst_get_port_malloc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x80446846 drm_fb_helper_check_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x817d4cce drm_dp_get_phy_test_pattern +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x81be16e1 drm_atomic_helper_prepare_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x81f7eeb8 drm_fb_helper_fill_info +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8252986a drm_dp_pcon_reset_frl_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x82b22343 drm_helper_hpd_irq_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x82bb550b devm_drm_panel_bridge_add_typed EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x838a8fa0 drm_fb_memcpy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x838f2eaf drm_atomic_helper_connector_tv_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x83d52157 drm_dp_mst_connector_early_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x857caa24 drm_atomic_helper_wait_for_vblanks -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8644d569 drm_dp_send_power_updown_phy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x86c0db5a drm_gem_simple_kms_reset_shadow_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x882f4743 drm_dp_mst_topology_mgr_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x88c528a7 drm_dp_read_desc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x83ab3a82 drm_scdc_set_scrambling +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x83dcc5b2 drm_scdc_get_scrambling_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x85fb5fe4 drm_gem_fb_end_cpu_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x87d5170b drm_dp_update_payload_part2 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x89255001 drm_simple_display_pipe_init EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x894b1f57 drm_dp_get_adjust_request_post_cursor -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8965fe1a drm_fb_helper_check_var -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x89aa3e68 drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x89acaa25 drm_crtc_helper_set_mode EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x89d100ba drm_fb_xrgb8888_to_rgb888_dstclip -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8c2ee9dd drm_primary_helper_funcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8a678b2e drm_dp_dpcd_read_phy_link_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8b59e152 drm_fb_helper_lastclose +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8c68141b drm_kms_helper_poll_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8c927611 drm_dp_read_dpcd_caps EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8ca2d9e4 drm_dp_calc_pbn_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8d2e28d4 drm_atomic_helper_disable_planes_on_crtc EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8d701329 drm_dp_clock_recovery_ok -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8e4202ec drm_fb_helper_initial_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8edf4dd7 drm_atomic_helper_resume -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8f08246b drm_dp_mst_atomic_enable_dsc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8fd59a32 drm_kms_helper_poll_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x90ee1a15 drm_dp_read_downstream_info -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x91dd9db3 drm_dp_aux_register -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x93d7bb40 drm_dp_start_crc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9576c59b drm_atomic_helper_disable_all -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x975ee9af drm_dp_send_real_edid_checksum -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x978e2bba drm_dp_mst_hpd_irq -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x98b33148 drm_atomic_helper_async_check -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x98e00540 drm_dp_get_vc_payload_bw -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9a7a0853 drm_atomic_helper_plane_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9b950518 drm_dp_downstream_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9bc446ae drm_dp_mst_deallocate_vcpi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9c83dd39 drm_atomic_helper_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9ea9cfc9 drm_dp_dpcd_read_link_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9eeb10d0 __drm_atomic_helper_private_obj_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9f772444 drm_fb_helper_sys_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9fad9be5 drm_atomic_helper_fake_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa01453e9 drm_dp_update_payload_part1 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa11a4cec drm_dp_mst_add_affected_dsc_crtcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9005b3c8 __drm_gem_destroy_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x91531e47 drm_lspcon_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x91dfd828 drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x92d2fa77 drm_dp_downstream_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x953fb556 drm_atomic_helper_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x96c95b54 drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x986ba6b5 drm_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x98757e67 drm_atomic_helper_wait_for_fences +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x98b9830b __drmm_simple_encoder_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x98e96080 drm_dp_mst_hpd_irq +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x99fa1b6d drm_dp_find_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9ab5e662 drm_atomic_helper_swap_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9bd4efb8 devm_drm_panel_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9ccdf48f drm_gem_reset_shadow_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9ce10bdd drm_mode_config_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9d14ae74 __drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9e315ef5 drm_dp_read_downstream_info +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9e6197dd drm_panel_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa1b4873a drm_helper_probe_single_connector_modes EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa1fefe6a drm_dp_psr_setup_time -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa28bc5bd drm_atomic_helper_commit_modeset_enables -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa4868753 drm_dp_mst_topology_mgr_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa53c352e drm_panel_bridge_connector -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa66227d4 drm_dp_downstream_debug -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa8a5f90d drm_self_refresh_helper_update_avg_times -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaa66e662 __drm_atomic_helper_bridge_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xab3223a8 drm_atomic_helper_page_flip_target -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xab3407c8 drm_helper_disable_unused_functions -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xac118ac2 drm_atomic_helper_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xad065aa5 drm_edp_backlight_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa26fc62c drm_dp_dual_mode_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa3cf7adc drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa5c2c606 drm_fb_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaa1981cd drm_atomic_get_mst_topology_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaa2f4677 drm_gem_fb_begin_cpu_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xac70a790 drm_atomic_helper_page_flip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xac769fbc drm_fb_helper_set_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xacd7b584 drm_fb_helper_set_suspend_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xae3b67fc drm_dp_mst_allocate_vcpi EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaf267620 drm_dp_lttpr_count -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaf55d2e0 drm_atomic_helper_commit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xafc5dcc8 drm_fb_helper_cfb_copyarea -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb32c1fb6 drm_atomic_helper_damage_merged -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb58c9f33 drm_self_refresh_helper_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb67666e5 drm_atomic_helper_crtc_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb6e53873 __drm_atomic_helper_connector_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb713af08 drm_atomic_helper_check_modeset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb86f6dbb drm_fb_helper_blank -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb95aa378 drm_mode_config_helper_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb9e1d3b1 drm_atomic_helper_check -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xba3e2b2f drm_atomic_helper_commit_tail -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbc84a2a0 drm_helper_move_panel_connectors_to_head -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbc946968 drm_atomic_helper_commit_cleanup_done -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbd70394a drm_kms_helper_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbdfb2250 drm_edp_backlight_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbf1f7ccf drm_dp_remote_aux_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc0b82448 drm_atomic_helper_wait_for_fences -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc1965997 drm_gem_fb_begin_cpu_access -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc4abab06 drm_atomic_helper_calc_timestamping_constants -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc4e6578e drm_helper_mode_fill_fb_struct -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc555612c drm_dp_get_phy_test_pattern +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaf565b9d __drm_atomic_helper_private_obj_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb00a6e8a drm_fb_helper_sys_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb07c2719 drm_dp_set_phy_test_pattern +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb0efffb4 drm_atomic_helper_commit_duplicated_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb188a41a drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb19c62f8 drm_fb_helper_debug_enter +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb1cf9a06 drm_fb_helper_debug_leave +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb1d50c1a drm_fb_helper_cfb_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb21b5053 drm_atomic_helper_commit_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb28ea01e drm_dp_dual_mode_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb3110083 drm_dp_dual_mode_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb3afdc26 drm_fb_helper_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb4b443a1 drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb54743c8 drm_dp_mst_topology_mgr_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb5dfa169 drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb60d1d77 drm_dp_pcon_hdmi_frl_link_error_count +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb712dcf5 drm_fb_helper_sys_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb750c6d6 drm_mode_config_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb758ab6a drm_dp_send_power_updown_phy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb8a968da drm_dp_start_crc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb916ee9a drm_self_refresh_helper_update_avg_times +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb96f092c drm_fb_helper_setcmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xba880fec __drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbb4abeec drm_atomic_helper_shutdown +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbbbe0191 drm_atomic_helper_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbc0643ea drm_atomic_helper_dirtyfb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbd75bf58 drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbe864255 drm_dp_read_lttpr_common_caps +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbec9ad94 drm_atomic_helper_check_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbf21199c drm_fb_helper_sys_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbf281cf9 drm_self_refresh_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbfbbab9b drm_dp_pcon_pps_default +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc020c0c1 drm_dp_pcon_dsc_max_slice_width +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc12510e2 drm_scdc_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc1c9db65 __drm_gem_reset_shadow_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc24a6432 drm_dp_get_vc_payload_bw +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc4b49761 drm_atomic_helper_suspend EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc5c99a79 drm_dp_get_adjust_request_voltage -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc780f9e7 drm_atomic_helper_async_commit EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc79ecffb drm_dp_downstream_is_type +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc84b2cb1 drm_gem_simple_kms_reset_shadow_plane EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc85e28e8 drm_fb_xrgb8888_to_rgb565_dstclip -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xca4e00d4 drm_dp_aux_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcbefb4d9 drm_dp_dpcd_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcd043bd9 drm_gem_fb_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcdf8e16d drm_fb_helper_cfb_fillrect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xce3c633c drm_atomic_helper_damage_iter_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd1ed9bbc drm_fb_helper_deferred_io -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd1f778b5 drm_gem_simple_display_pipe_prepare_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc8cb4021 drm_atomic_helper_bridge_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc952e51b drm_dp_send_query_stream_enc_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc9f2b527 drm_atomic_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xce09933d drm_dp_dual_mode_set_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcecea09f drm_simple_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd0341204 drm_dp_mst_connector_late_register +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd046c889 drm_dp_read_lttpr_phy_caps +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd1806d41 __drm_atomic_helper_bridge_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd1c96cbd drm_atomic_helper_check_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd23d8c44 drm_fb_helper_alloc_fbi EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd2b0c7e6 drm_dp_downstream_is_tmds -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd304942b drm_fb_helper_fini -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd3189c99 drm_dp_mst_get_port_malloc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd36f3d66 drm_helper_force_disable_all -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd40c6db1 drm_atomic_helper_swap_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd41eb744 drm_dp_read_lttpr_phy_caps -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd46f4613 drm_dp_pcon_pps_override_param +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd2fbf7ea drm_dp_read_sink_count_cap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd335e5e9 drm_dp_cec_unregister_connector EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd4983d85 drm_fb_swab -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd50a799c drm_dp_aux_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd5972c3a drm_atomic_helper_disable_planes_on_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd7c466c1 __drm_atomic_helper_plane_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd8b66a49 drm_dp_mst_get_edid -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd8f7d3c2 drm_dp_pcon_frl_configure_1 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd9cc9e1f __drm_atomic_helper_plane_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xda42e211 drm_dp_mst_put_port_malloc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdadbe260 drm_dp_pcon_pps_default +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd5d8b566 drm_atomic_helper_bridge_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd5db876b drm_dp_aux_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd620ec1e drm_atomic_helper_async_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd69cf0fd drm_panel_dp_aux_backlight +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd7807fbf drm_dp_cec_unset_edid +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd7e8e493 drm_fb_helper_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd7fd94e4 drm_helper_disable_unused_functions +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd82e5bcc __drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd9f195b5 drm_dp_atomic_release_vcpi_slots EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdbc3c128 drm_fb_blit_dstclip -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdc78f502 drm_atomic_helper_bridge_propagate_bus_fmt -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdd25f079 drm_dp_pcon_dsc_max_slice_width -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdf152d8a drm_fb_helper_cfb_imageblit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdfc8942a drm_dp_vsc_sdp_log -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe0bc9420 devm_drm_panel_bridge_add_typed -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe30bb214 drm_dp_mst_reset_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe31dc3d5 drm_helper_hpd_irq_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe3f0fd45 __drm_gem_duplicate_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe40ea8f2 drm_fb_helper_output_poll_changed -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe418596b drm_gem_prepare_shadow_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe4632ebf drm_gem_fb_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe719968b drm_dp_pcon_frl_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe7c5505d drm_dp_atomic_release_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe88eb667 drm_gem_reset_shadow_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe8dd5ab5 drm_atomic_helper_connector_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeb2e0e4f drm_dp_cec_set_edid -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xed1641b0 drm_edp_backlight_set_level +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdc76aa75 drm_gem_prepare_shadow_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdf835247 drm_fb_helper_set_par +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe22e5e2a drm_dp_read_mst_cap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe2602394 drm_dp_mst_detect_port +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe297415a drm_dp_stop_crc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe34c112b drm_dp_pcon_frl_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe5360b84 drm_dp_pcon_dsc_max_slices +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe6509af1 drm_dp_downstream_debug +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe7220185 drm_kms_helper_poll_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe838c705 drm_dp_dpcd_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe937893b drm_fbdev_generic_setup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe9d9dc01 drm_dp_link_train_clock_recovery_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeb3abe23 drm_dp_send_real_edid_checksum +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeb4e708a drm_atomic_helper_check_plane_state EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xedcf81ce drm_dp_channel_eq_ok -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xee3ffc7f __drm_atomic_helper_crtc_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeee62079 drm_dp_pcon_hdmi_frl_link_error_count -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xef04966c drm_kms_helper_poll_enable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf2007ef2 drm_atomic_helper_bridge_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf2563f78 drm_gem_fb_end_cpu_access -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf2b707af drm_fb_helper_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf389dc9e drm_self_refresh_helper_alter_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf4f59d43 drm_dp_dual_mode_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf60330e8 drm_fb_helper_debug_leave -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf66ec5b2 drm_fb_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xee0fad1d __drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf02c040a drm_helper_crtc_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf23e2c52 drm_gem_fb_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf2618ce8 drm_atomic_helper_setup_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf2fd4123 drm_atomic_helper_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf4bea5bf drm_crtc_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf4d813c2 drm_crtc_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf5849828 drm_fb_helper_cfb_fillrect EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf68741fb drm_dp_subconnector_type EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf689ad25 drm_dp_downstream_420_passthrough -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf8333b3c drm_dp_pcon_dsc_max_slices -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf8370a1f drm_panel_bridge_add_typed -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf8fcbac0 drm_simple_display_pipe_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfa30e433 drm_atomic_helper_wait_for_flip_done -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfa52fb7f drm_kms_helper_poll_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf6f4fa07 drm_helper_encoder_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf857c70d drm_fb_helper_output_poll_changed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf951ca23 __drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf9c50f2a drm_dp_mst_topology_mgr_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfa1ccec7 drm_gem_simple_kms_cleanup_shadow_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfab48e92 drm_dp_mst_add_affected_dsc_crtcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfae29d7f drm_atomic_helper_bridge_destroy_state EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfb1a7a5a drm_dp_downstream_rgb_to_ycbcr_conversion -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfd4f66a8 drm_fb_helper_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfb86012a drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfdc7acc7 __drm_atomic_helper_plane_reset EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfe12bcb9 drm_dsc_compute_rc_parameters -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xffa34520 drm_dp_dual_mode_set_tmds_output -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfff6e5a1 drm_gem_fb_create_handle -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x13fb79d9 mipi_dbi_enable_flush -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x21fe580d mipi_dbi_dev_init -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x2e79e9cc mipi_dbi_hw_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x2f629d16 mipi_dbi_poweron_conditional_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x3547de53 mipi_dbi_poweron_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x5418193c mipi_dbi_spi_cmd_max_speed -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x9e1a6145 mipi_dbi_dev_init_with_formats -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x9f3cf97f mipi_dbi_display_is_on -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xa562dc76 mipi_dbi_buf_copy -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xa69cc4c4 mipi_dbi_spi_transfer -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xb0b5921d mipi_dbi_pipe_update -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xbaf0d2a8 mipi_dbi_command_buf -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xc034ef63 mipi_dbi_command_read -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xda69dfbf mipi_dbi_command_stackbuf -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xdc30dac8 mipi_dbi_pipe_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xe3d448f4 mipi_dbi_debugfs_init -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xfdde56c8 mipi_dbi_spi_init -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0xa79fa44a drm_gem_ttm_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0xbc8f255d drm_gem_ttm_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0xc07e59e5 drm_gem_ttm_print_info -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0xc58cdf3f drm_gem_ttm_dumb_map_offset -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0xdb5f221e drm_gem_ttm_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x17c8cfb4 drm_gem_vram_plane_helper_cleanup_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x1fafe692 drm_gem_vram_driver_dumb_create -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x33cb2bd2 drm_gem_vram_unpin -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x40df59db drm_gem_vram_fill_create_dumb -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x5c3aeee2 drm_gem_vram_offset -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x61ad17d4 drm_gem_vram_simple_display_pipe_prepare_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x6d22f6a6 drm_gem_vram_put -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x6e6ef4b0 drm_gem_vram_pin -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xa7d39f6d drm_gem_vram_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xb0358a45 drmm_vram_helper_init -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xb475aa25 drm_gem_vram_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xb5dab54a drm_gem_vram_simple_display_pipe_cleanup_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xc435ad74 drm_vram_mm_debugfs_init -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xc54805a9 drm_vram_helper_mode_valid -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xe37ddd85 drm_gem_vram_plane_helper_prepare_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xf3d811cc drm_gem_vram_create -EXPORT_SYMBOL drivers/gpu/drm/rockchip/rockchipdrm 0x064c91e7 rockchip_drm_wait_vact_end -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x066afff2 drm_sched_increase_karma_ext -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x0a2ed06b drm_sched_entity_fini -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x119be98a drm_sched_entity_set_priority -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x169e705c drm_sched_stop -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x213a90c1 to_drm_sched_fence -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x2ff0ac5c drm_sched_entity_push_job -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x31d27428 drm_sched_entity_destroy -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x3565518d drm_sched_entity_flush -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x4a21e6b8 drm_sched_resubmit_jobs -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x4a9218f6 drm_sched_reset_karma -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x6291648c drm_sched_entity_modify_sched -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x66fb0907 drm_sched_resume_timeout -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x69d6df43 drm_sched_pick_best -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x6c72cdbf drm_sched_job_cleanup -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x6dce1e63 drm_sched_resubmit_jobs_ext -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x84e714c5 drm_sched_fini -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xa69af40c drm_sched_job_init -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xb62ed2a3 drm_sched_fault -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xbddbe59a drm_sched_increase_karma -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xdf056267 drm_sched_init -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xe0afb18a drm_sched_dependency_optimized -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xe2de29a0 drm_sched_start -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xfcf8bd44 drm_sched_suspend_timeout -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xfcff378e drm_sched_entity_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x04946b67 ttm_move_memcpy -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0707fce7 ttm_resource_manager_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x12df7e3d ttm_eu_fence_buffer_objects -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x13d1cd2d ttm_sg_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x14589d8c ttm_bo_bulk_move_lru_tail -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x14fbe243 ttm_bo_mmap_obj -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x160f63cf ttm_pool_free -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x19b15a78 ttm_bo_kunmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1b8c8eb1 ttm_tt_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1f72f157 ttm_eu_reserve_buffers -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x21f368a9 ttm_pool_debugfs -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x28ba7895 ttm_bo_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2d9f1dd1 ttm_bo_put -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x32ca31f3 ttm_bo_eviction_valuable -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3cc634a4 ttm_bo_move_memcpy -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3fc9cb81 ttm_bo_vmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x453d87be ttm_bo_vm_reserve -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x46d79e5f ttm_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4aac6c93 ttm_glob -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x559605d5 ttm_bo_vunmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5662c473 ttm_bo_vm_fault -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x59d7977a ttm_bo_vm_open -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5a07597a ttm_device_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5f99cc2c ttm_bo_vm_access -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x606d80a5 ttm_resource_manager_debug -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x64c74b09 ttm_bo_validate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x76602da3 ttm_kmap_iter_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7a625837 ttm_bo_mem_space -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7aa91ba5 ttm_bo_move_accel_cleanup -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7ad53cb1 ttm_range_man_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x87e0d433 ttm_eu_backoff_reservation -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8e1649c4 ttm_bo_wait -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8e4676e9 ttm_tt_populate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x99d2f910 ttm_global_swapout -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9bfc9eaa ttm_tt_destroy_common -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9d1dbf6e ttm_io_prot +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfeacaf82 drm_dp_dpcd_read_link_status +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x000f7400 mipi_dbi_buf_copy +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x25e3b362 mipi_dbi_pipe_update +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x271304eb mipi_dbi_dev_init +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x32a1a8d6 mipi_dbi_hw_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x41bb38bd mipi_dbi_enable_flush +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x451402f3 mipi_dbi_command_buf +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x552db6e4 mipi_dbi_spi_init +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x56d25585 mipi_dbi_spi_cmd_max_speed +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x59208d8e mipi_dbi_debugfs_init +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x6541731d mipi_dbi_display_is_on +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x6be04139 mipi_dbi_spi_transfer +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x7596b7af mipi_dbi_command_read +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x87a8c3d6 mipi_dbi_poweron_conditional_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x8bafb502 mipi_dbi_dev_init_with_formats +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xa4650d3b mipi_dbi_command_stackbuf +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xc9e83e75 mipi_dbi_pipe_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xeb02dc5e mipi_dbi_poweron_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x08d6641d drm_gem_ttm_dumb_map_offset +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x420d0f11 drm_gem_ttm_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x5cd382c7 drm_gem_ttm_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x724de347 drm_gem_ttm_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x83d7b187 drm_gem_ttm_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x04d1351c drm_gem_vram_offset +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x0f776050 drm_gem_vram_unpin +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x280e0aa5 drm_gem_vram_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x5e625234 drm_gem_vram_put +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x66237e82 drm_gem_vram_fill_create_dumb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x707e567c drm_gem_vram_plane_helper_prepare_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x8c569be7 drm_gem_vram_driver_dumb_create +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x9841238f drm_gem_vram_plane_helper_cleanup_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xb18a3953 drm_gem_vram_create +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xb4f4daa8 drm_gem_vram_simple_display_pipe_prepare_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xbcf3c945 drm_vram_helper_mode_valid +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xda58c711 drm_vram_mm_debugfs_init +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xe824da29 drm_gem_vram_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xeb5ccfb6 drm_gem_vram_pin +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xebe101b2 drm_gem_vram_simple_display_pipe_cleanup_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xfa8eb819 drmm_vram_helper_init +EXPORT_SYMBOL drivers/gpu/drm/rockchip/rockchipdrm 0xf297967e rockchip_drm_wait_vact_end +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x16192409 drm_sched_fini +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x2374d8ab drm_sched_entity_destroy +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x23c3a170 drm_sched_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x27084e41 drm_sched_entity_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x2b302bde drm_sched_reset_karma +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x3631026b drm_sched_fault +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x67d2c6a3 drm_sched_suspend_timeout +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x6f2fe639 drm_sched_resubmit_jobs_ext +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x7857cabb drm_sched_increase_karma +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x7d149ac1 drm_sched_increase_karma_ext +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x826069b6 drm_sched_entity_fini +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x86263357 drm_sched_resume_timeout +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x8d163058 drm_sched_entity_push_job +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x9880aaae drm_sched_job_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x9b5dbdc0 drm_sched_entity_set_priority +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xaad4bba9 drm_sched_entity_flush +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xb590be6e drm_sched_pick_best +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xb8c5ee5e to_drm_sched_fence +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xc1d4194c drm_sched_start +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xd687f7f8 drm_sched_resubmit_jobs +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xd7a95e58 drm_sched_stop +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xee0c0581 drm_sched_dependency_optimized +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xf2a52001 drm_sched_job_cleanup +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xfc1a2813 drm_sched_entity_modify_sched +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x08af1a96 ttm_bo_vm_fault_reserved +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0a34ea6c ttm_bo_vm_close +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1132b82d ttm_bo_eviction_valuable +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x11596acf ttm_bo_move_to_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x15959ff3 ttm_pool_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1df04d84 ttm_eu_backoff_reservation +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x20c6174f ttm_eu_fence_buffer_objects +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x20f8181c ttm_resource_manager_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2433a223 ttm_resource_manager_evict_all +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2707d66b ttm_kmap_iter_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x281b0f2c ttm_glob +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2c2cb046 ttm_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3583e50f ttm_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x37813228 ttm_resource_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x53ebec5c ttm_resource_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5cf293ae ttm_bo_kmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6aca6197 ttm_bo_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6f4efd85 ttm_bo_bulk_move_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x709b51b4 ttm_sg_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x70db8166 ttm_device_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x70ecaba1 ttm_bo_vm_fault +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7a133cc9 ttm_bo_kunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7c1c0d73 ttm_bo_move_memcpy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8677dcc4 ttm_bo_mmap_obj +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x87d32fed ttm_bo_vm_open +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8ac1234c ttm_bo_mem_space +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x98169591 ttm_global_swapout +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x98e3bb5a ttm_pool_alloc +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9bbd989a ttm_device_swapout +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9d6b00ff ttm_move_memcpy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa13573dd ttm_tt_destroy_common +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa480da9d ttm_bo_wait EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa4c31af8 ttm_kmap_iter_iomap_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa69d0ee3 ttm_device_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xaadb6dd4 ttm_resource_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xafda73df ttm_bo_vm_close -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb08bf9ac ttm_bo_kmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb32766ac ttm_bo_vm_dummy_page +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa847cbd6 ttm_bo_vunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xaafc0e8c ttm_bo_put +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xab61467b ttm_io_prot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xafd58c09 ttm_bo_vm_access +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb3907ee0 ttm_bo_init_reserved EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb753ca08 ttm_bo_mem_compat -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc11199dc ttm_resource_manager_evict_all -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcc933fab ttm_bo_move_to_lru_tail -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd009d095 ttm_device_swapout -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd0439bf0 ttm_resource_free -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe2459109 ttm_range_man_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe7564941 ttm_bo_unlock_delayed_workqueue -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe9453de4 ttm_bo_unmap_virtual -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xeed9c74a ttm_bo_init_reserved -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf01e7033 ttm_bo_lock_delayed_workqueue -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf235d352 ttm_bo_vm_fault_reserved -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfb8ac80e ttm_pool_alloc -EXPORT_SYMBOL drivers/hid/hid 0x4fca44d1 hid_bus_type +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb850b8e9 ttm_bo_vm_reserve +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb9f8ca55 ttm_bo_validate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbb4116f1 ttm_bo_unmap_virtual +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc3917ec9 ttm_pool_debugfs +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc3a0e43b ttm_bo_move_accel_cleanup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc5d3ff5c ttm_range_man_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc8832eb9 ttm_bo_vmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcb581b3f ttm_bo_lock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xce53cfbe ttm_range_man_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd0036505 ttm_bo_unlock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd48c74b5 ttm_bo_vm_dummy_page +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd750805e ttm_eu_reserve_buffers +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd87062bb ttm_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xeb35c170 ttm_tt_populate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf2e688b0 ttm_resource_manager_debug +EXPORT_SYMBOL drivers/hid/hid 0xf25662f6 hid_bus_type EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x2f9e7f8e vid_which_vrm EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x446615bd vid_from_reg EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x01568393 sch56xx_read_virtual_reg -EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x8008bd63 sch56xx_watchdog_register EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x96ec3b26 sch56xx_read_virtual_reg12 EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xaa17a737 sch56xx_write_virtual_reg EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xb37b9b81 sch56xx_read_virtual_reg16 -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x305ad6a7 i2c_bit_algo -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x7d41db6d i2c_bit_add_numbered_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xad20a11c i2c_bit_add_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x64dab5fb i2c_pca_add_numbered_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0xfbb46702 i2c_pca_add_bus -EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0x166e1fc3 amd756_smbus -EXPORT_SYMBOL drivers/iio/accel/bma400_core 0x3004f1d8 bma400_remove -EXPORT_SYMBOL drivers/iio/accel/bma400_core 0x50183dbc bma400_probe -EXPORT_SYMBOL drivers/iio/accel/bma400_core 0x7857841e bma400_regmap_config -EXPORT_SYMBOL drivers/iio/accel/kxsd9 0x512a6a7e kxsd9_dev_pm_ops -EXPORT_SYMBOL drivers/iio/accel/kxsd9 0x589638c7 kxsd9_common_remove -EXPORT_SYMBOL drivers/iio/accel/kxsd9 0x7f3d9132 kxsd9_common_probe -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x00134f6e mma9551_set_device_state -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x01553db4 mma9551_read_config_byte +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xf2826ed6 sch56xx_watchdog_register +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x2b7abef8 i2c_bit_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x2e68a862 i2c_bit_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xa89b013a i2c_bit_algo +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0xa206e583 i2c_pca_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0xbbe92640 i2c_pca_add_bus +EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0x8312dae5 amd756_smbus +EXPORT_SYMBOL drivers/iio/accel/bma400_core 0x66ce733e bma400_remove +EXPORT_SYMBOL drivers/iio/accel/bma400_core 0x85b2a4a2 bma400_probe +EXPORT_SYMBOL drivers/iio/accel/bma400_core 0xeac35b53 bma400_regmap_config +EXPORT_SYMBOL drivers/iio/accel/kxsd9 0x1b966441 kxsd9_dev_pm_ops +EXPORT_SYMBOL drivers/iio/accel/kxsd9 0x56fa4959 kxsd9_common_probe +EXPORT_SYMBOL drivers/iio/accel/kxsd9 0x62420beb kxsd9_common_remove +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x025dad78 mma9551_read_config_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x060e48ca mma9551_write_config_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x08a4c6f7 mma9551_update_config_bits +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x132cf614 mma9551_app_reset +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x3bf96591 mma9551_read_version EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x41ef446c mma9551_read_accel_scale -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x55a65188 mma9551_read_config_word -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x5cbdcda6 mma9551_write_config_words -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x6c4085be mma9551_gpio_config -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x7a05518b mma9551_set_power_state -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x86f96fa1 mma9551_update_config_bits -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xae05b3ea mma9551_write_config_byte -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xb0c4afaf mma9551_read_status_byte -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xb71fb3ec mma9551_read_status_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x509c5be0 mma9551_write_config_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x5329c29b mma9551_set_power_state +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x5b846385 mma9551_read_config_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x76126deb mma9551_gpio_config +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x77c3bf2e mma9551_set_device_state +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x85c3f067 mma9551_write_config_words EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xbcd7fe96 mma9551_sleep -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xc70cd83b mma9551_app_reset -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xcbc0ebcf mma9551_read_config_words -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xd6c8d7cd mma9551_write_config_word -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xd93d3e71 mma9551_read_accel_chan -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xdf7209f6 mma9551_read_status_word -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xfaa3f474 mma9551_read_version -EXPORT_SYMBOL drivers/iio/accel/st_accel 0x262907fb st_accel_get_settings -EXPORT_SYMBOL drivers/iio/accel/st_accel 0x60cffc04 st_accel_common_probe -EXPORT_SYMBOL drivers/iio/accel/st_accel 0xd4164a56 st_accel_common_remove +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xddd8d312 mma9551_read_status_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xe8c7756c mma9551_read_status_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xf1189c5b mma9551_read_config_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xf4875e01 mma9551_read_accel_chan +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xf63c6ebd mma9551_read_status_word +EXPORT_SYMBOL drivers/iio/accel/st_accel 0x357da081 st_accel_get_settings +EXPORT_SYMBOL drivers/iio/accel/st_accel 0x397e1881 st_accel_common_remove +EXPORT_SYMBOL drivers/iio/accel/st_accel 0x62cdcf46 st_accel_common_probe EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x10a4c688 qcom_adc5_hw_scale EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x12402a0a qcom_vadc_scale EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x39885d6b qcom_adc_tm5_temp_volt_scale @@ -1139,1257 +1139,1257 @@ 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 0x3e25e730 iio_triggered_buffer_setup_ext -EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0xd158547a iio_triggered_buffer_cleanup -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x4968aab5 iio_kfifo_allocate -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xafb95c01 iio_kfifo_free -EXPORT_SYMBOL drivers/iio/chemical/bme680_core 0xb9aac113 bme680_regmap_config -EXPORT_SYMBOL drivers/iio/chemical/scd30_core 0x2890be3d scd30_suspend -EXPORT_SYMBOL drivers/iio/chemical/scd30_core 0x8002afc6 scd30_resume -EXPORT_SYMBOL drivers/iio/chemical/scd30_core 0x9b136e5b scd30_probe +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0xf0c1ddd8 iio_triggered_buffer_cleanup +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0xfa5288c1 iio_triggered_buffer_setup_ext +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x99ff3e24 iio_kfifo_free +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xb69fe1d0 iio_kfifo_allocate +EXPORT_SYMBOL drivers/iio/chemical/bme680_core 0xf641b5e6 bme680_regmap_config +EXPORT_SYMBOL drivers/iio/chemical/scd30_core 0x02550ab0 scd30_suspend +EXPORT_SYMBOL drivers/iio/chemical/scd30_core 0x122af2c8 scd30_probe +EXPORT_SYMBOL drivers/iio/chemical/scd30_core 0xdd81c967 scd30_resume EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x045688dd ms_sensors_read_prom_word EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x2d2f5cd5 ms_sensors_reset +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x38b07425 ms_sensors_show_battery_low +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x39fd6ccc ms_sensors_write_heater +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x41204464 ms_sensors_ht_read_humidity EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x42b6a050 ms_sensors_convert_and_read -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x72d75f81 ms_sensors_read_temp_and_pressure -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x7bf2c0e7 ms_sensors_show_battery_low -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x7ef98a78 ms_sensors_write_resolution -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x8207ad11 ms_sensors_write_heater -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xbc62b36a ms_sensors_tp_read_prom -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xc5077c0b ms_sensors_ht_read_humidity -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xcddd1e75 ms_sensors_show_heater -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xf23e9daa ms_sensors_ht_read_temperature -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xfa1e5ea2 ms_sensors_read_serial -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x044f11df ssp_disable_sensor -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x33059ef1 ssp_change_delay -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x35f49d1c ssp_register_consumer -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xea08a053 ssp_enable_sensor -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xf16e71fd ssp_get_sensor_delay -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x2bc189a8 ssp_common_buffer_postdisable -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x5184a095 ssp_common_process_data -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0xa1f8e614 ssp_common_buffer_postenable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x0389cf02 st_sensors_read_info_raw +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x4e32f20a ms_sensors_ht_read_temperature +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x6635b94d ms_sensors_write_resolution +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x712a1b0d ms_sensors_show_heater +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x908e56db ms_sensors_read_temp_and_pressure +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xcce55390 ms_sensors_tp_read_prom +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xfcb0b82d ms_sensors_read_serial +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x10b71d22 ssp_disable_sensor +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x1427f4f8 ssp_enable_sensor +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x9d6de68a ssp_register_consumer +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xa9a897a5 ssp_get_sensor_delay +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xb1a82c7a ssp_change_delay +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x1cfd3e60 ssp_common_buffer_postenable +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0xcb75a222 ssp_common_buffer_postdisable +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0xf3e72f47 ssp_common_process_data EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x074d7047 st_sensors_trigger_handler -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x1c7fe88c st_sensors_sysfs_scale_avail -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x1cafd872 st_sensors_init_sensor -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x1d1e8585 st_sensors_set_dataready_irq -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x3122006b st_sensors_sysfs_sampling_frequency_avail -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x3a1a1d87 st_sensors_dev_name_probe -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x47859a10 st_sensors_validate_device -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x4a4fa609 st_sensors_allocate_trigger -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x5b280871 st_sensors_set_fullscale_by_gain -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x5f1cf92e st_sensors_get_settings_index -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x6de1d203 st_sensors_set_enable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x7b79c11e st_sensors_debugfs_reg_access -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x94727787 st_sensors_power_disable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xab836bff st_sensors_set_odr -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xb17b0717 st_sensors_set_axis_enable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xc35b2929 st_sensors_deallocate_trigger -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xe25526a5 st_sensors_power_enable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xfbb5a48a st_sensors_verify_id -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0x8e2fd818 st_sensors_i2c_configure -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_spi 0x231a101a st_sensors_spi_configure -EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0x90b12171 mpu3050_dev_pm_ops -EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0xa82b1c1e mpu3050_common_remove -EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0xff613193 mpu3050_common_probe -EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x35e2d59e st_gyro_get_settings -EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0xdf6d99a3 st_gyro_common_probe -EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0xfc3e14e0 st_gyro_common_remove -EXPORT_SYMBOL drivers/iio/humidity/hts221 0x076c1413 hts221_probe -EXPORT_SYMBOL drivers/iio/humidity/hts221 0xfb96c8a5 hts221_pm_ops -EXPORT_SYMBOL drivers/iio/imu/adis_lib 0x3bbdfe09 adis_debugfs_reg_access -EXPORT_SYMBOL drivers/iio/imu/adis_lib 0x746ae91e adis_enable_irq +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x364ad8a0 st_sensors_set_fullscale_by_gain +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x40bdba17 st_sensors_verify_id +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x4736c2a3 st_sensors_power_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x4afaa45a st_sensors_sysfs_scale_avail +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x55288728 st_sensors_dev_name_probe +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x7c6c51db st_sensors_power_disable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x7d1830fb st_sensors_set_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x87ca9e63 st_sensors_debugfs_reg_access +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x9796cb64 st_sensors_init_sensor +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x99d55fba st_sensors_set_dataready_irq +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xa54d5a9a st_sensors_get_settings_index +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xa75795bc st_sensors_validate_device +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xbe22f125 st_sensors_allocate_trigger +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xc91b7755 st_sensors_read_info_raw +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xcd056804 st_sensors_deallocate_trigger +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xd7603bb5 st_sensors_set_axis_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xee0e82d2 st_sensors_sysfs_sampling_frequency_avail +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xf422cfac st_sensors_set_odr +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0x9bc87c1b st_sensors_i2c_configure +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_spi 0x82631b51 st_sensors_spi_configure +EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0x4929594a mpu3050_common_probe +EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0xbcdad3d2 mpu3050_common_remove +EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0xc8c9db14 mpu3050_dev_pm_ops +EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x0dddf986 st_gyro_get_settings +EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x2f3194eb st_gyro_common_probe +EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0xb8301b4f st_gyro_common_remove +EXPORT_SYMBOL drivers/iio/humidity/hts221 0x8ea393cf hts221_pm_ops +EXPORT_SYMBOL drivers/iio/humidity/hts221 0xd62aca68 hts221_probe +EXPORT_SYMBOL drivers/iio/imu/adis_lib 0x972a1e1d adis_enable_irq +EXPORT_SYMBOL drivers/iio/imu/adis_lib 0xa198be78 adis_debugfs_reg_access EXPORT_SYMBOL drivers/iio/imu/bmi160/bmi160_core 0xca19cfae bmi160_enable_irq -EXPORT_SYMBOL drivers/iio/imu/bmi160/bmi160_core 0xfb082496 bmi160_regmap_config -EXPORT_SYMBOL drivers/iio/imu/fxos8700_core 0xd126cf88 fxos8700_regmap_config -EXPORT_SYMBOL drivers/iio/imu/st_lsm6dsx/st_lsm6dsx 0x3d4469c3 st_lsm6dsx_pm_ops -EXPORT_SYMBOL drivers/iio/imu/st_lsm6dsx/st_lsm6dsx 0x7df4ed5d st_lsm6dsx_probe -EXPORT_SYMBOL drivers/iio/industrialio 0x0f06f901 iio_trigger_unregister -EXPORT_SYMBOL drivers/iio/industrialio 0x2298b2d6 iio_trigger_poll_chained -EXPORT_SYMBOL drivers/iio/industrialio 0x22d5701c __iio_trigger_register -EXPORT_SYMBOL drivers/iio/industrialio 0x2bc2500b iio_trigger_free +EXPORT_SYMBOL drivers/iio/imu/bmi160/bmi160_core 0xdf098ccd bmi160_regmap_config +EXPORT_SYMBOL drivers/iio/imu/fxos8700_core 0xef8520be fxos8700_regmap_config +EXPORT_SYMBOL drivers/iio/imu/st_lsm6dsx/st_lsm6dsx 0x1fd54754 st_lsm6dsx_probe +EXPORT_SYMBOL drivers/iio/imu/st_lsm6dsx/st_lsm6dsx 0x8b68f8f0 st_lsm6dsx_pm_ops +EXPORT_SYMBOL drivers/iio/industrialio 0x021a6fbb iio_trigger_free +EXPORT_SYMBOL drivers/iio/industrialio 0x06e9bd49 iio_get_time_ns +EXPORT_SYMBOL drivers/iio/industrialio 0x1258855e iio_trigger_poll +EXPORT_SYMBOL drivers/iio/industrialio 0x175de4d8 iio_trigger_set_immutable +EXPORT_SYMBOL drivers/iio/industrialio 0x19809457 __iio_device_register +EXPORT_SYMBOL drivers/iio/industrialio 0x1a94a735 iio_push_event +EXPORT_SYMBOL drivers/iio/industrialio 0x1b42f4d4 iio_buffer_init +EXPORT_SYMBOL drivers/iio/industrialio 0x23fb6296 __iio_trigger_register +EXPORT_SYMBOL drivers/iio/industrialio 0x2bdb0f9f iio_read_mount_matrix EXPORT_SYMBOL drivers/iio/industrialio 0x2d6bcdcb iio_trigger_generic_data_rdy_poll -EXPORT_SYMBOL drivers/iio/industrialio 0x2e1cf88a iio_push_event -EXPORT_SYMBOL drivers/iio/industrialio 0x386590e8 iio_bus_type -EXPORT_SYMBOL drivers/iio/industrialio 0x3c8f4940 iio_read_const_attr -EXPORT_SYMBOL drivers/iio/industrialio 0x576ea94c iio_trigger_set_immutable -EXPORT_SYMBOL drivers/iio/industrialio 0x636e0e20 iio_read_mount_matrix -EXPORT_SYMBOL drivers/iio/industrialio 0x6c1947bb iio_trigger_alloc -EXPORT_SYMBOL drivers/iio/industrialio 0x855462c7 iio_device_free -EXPORT_SYMBOL drivers/iio/industrialio 0x874491dd iio_buffer_init -EXPORT_SYMBOL drivers/iio/industrialio 0x8ce6e8ca iio_get_time_res -EXPORT_SYMBOL drivers/iio/industrialio 0x8ff476e9 iio_trigger_notify_done -EXPORT_SYMBOL drivers/iio/industrialio 0x904c4c4f iio_device_unregister -EXPORT_SYMBOL drivers/iio/industrialio 0xb29f2583 __iio_device_register -EXPORT_SYMBOL drivers/iio/industrialio 0xb4ec091b iio_trigger_using_own -EXPORT_SYMBOL drivers/iio/industrialio 0xbbff75fc iio_trigger_poll -EXPORT_SYMBOL drivers/iio/industrialio 0xc5e166b8 iio_device_alloc -EXPORT_SYMBOL drivers/iio/industrialio 0xc7c346a6 iio_device_set_clock -EXPORT_SYMBOL drivers/iio/industrialio 0xd39348dd iio_trigger_validate_own_device +EXPORT_SYMBOL drivers/iio/industrialio 0x4111885e iio_bus_type +EXPORT_SYMBOL drivers/iio/industrialio 0x53a06447 iio_device_get_clock +EXPORT_SYMBOL drivers/iio/industrialio 0x65c1423b iio_device_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0x6fcf5da5 iio_trigger_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0x933f0803 iio_trigger_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0x9f21f1ac iio_trigger_notify_done +EXPORT_SYMBOL drivers/iio/industrialio 0xa60e8226 iio_device_free +EXPORT_SYMBOL drivers/iio/industrialio 0xa7336c2d iio_trigger_poll_chained +EXPORT_SYMBOL drivers/iio/industrialio 0xcaf94d5c iio_trigger_using_own +EXPORT_SYMBOL drivers/iio/industrialio 0xd18e552f iio_device_alloc EXPORT_SYMBOL drivers/iio/industrialio 0xdf76bbeb iio_pollfunc_store_time -EXPORT_SYMBOL drivers/iio/industrialio 0xf4eb1a9f iio_device_get_clock -EXPORT_SYMBOL drivers/iio/industrialio 0xf9f5ebb3 iio_get_time_ns -EXPORT_SYMBOL drivers/iio/industrialio-configfs 0xde009f53 iio_configfs_subsys -EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x19ab184f iio_unregister_sw_device_type -EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x5425ddea iio_sw_device_destroy -EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x66712c0e iio_sw_device_create -EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x6c1dba3c iio_register_sw_device_type -EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x6b7241f0 iio_sw_trigger_create -EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0xa43593b8 iio_sw_trigger_destroy -EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0xcca6583f iio_register_sw_trigger_type -EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0xfd8121a4 iio_unregister_sw_trigger_type -EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x2656dc74 iio_triggered_event_setup -EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x9939e845 iio_triggered_event_cleanup -EXPORT_SYMBOL drivers/iio/light/st_uvis25_core 0x39b3aa8e st_uvis25_probe -EXPORT_SYMBOL drivers/iio/light/st_uvis25_core 0xb028cc60 st_uvis25_pm_ops -EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0x03524700 bmc150_magn_remove -EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0x3decc45a bmc150_magn_pm_ops -EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0xa1c379a7 bmc150_magn_regmap_config -EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0xfe742670 bmc150_magn_probe -EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0x1c7e7405 hmc5843_common_resume -EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0x33d668eb hmc5843_common_suspend -EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0x7c20cc48 hmc5843_common_remove -EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0x89fff009 hmc5843_common_probe -EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x18f40436 st_magn_common_remove -EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x1bb2442f st_magn_common_probe -EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0xa4161e3f st_magn_get_settings -EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x3019c158 bmp180_regmap_config -EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x67c3992d bmp280_dev_pm_ops -EXPORT_SYMBOL drivers/iio/pressure/bmp280 0xa7125f0e bmp280_common_probe -EXPORT_SYMBOL drivers/iio/pressure/bmp280 0xda9f1c3a bmp280_regmap_config -EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0x18de19b2 ms5611_remove -EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0xb22c428a ms5611_probe -EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x204d2db5 st_press_get_settings -EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x62c13343 st_press_common_remove -EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0xd19bd43b st_press_common_probe -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x14554a4f ib_send_cm_rtu -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x168c5787 ib_cm_insert_listen -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x28985457 ib_destroy_cm_id -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x28b66d0d ib_send_cm_sidr_rep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x3874e022 ib_cm_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x4203780f ib_send_cm_dreq -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x42f07b52 ib_cm_listen +EXPORT_SYMBOL drivers/iio/industrialio 0xe9bad8cb iio_device_set_clock +EXPORT_SYMBOL drivers/iio/industrialio 0xf43b1d9c iio_trigger_validate_own_device +EXPORT_SYMBOL drivers/iio/industrialio 0xfc84ce50 iio_get_time_res +EXPORT_SYMBOL drivers/iio/industrialio 0xfd687a50 iio_read_const_attr +EXPORT_SYMBOL drivers/iio/industrialio-configfs 0xf180ae83 iio_configfs_subsys +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x1401b1bb iio_sw_device_create +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x751e7bca iio_unregister_sw_device_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0xb71f5817 iio_sw_device_destroy +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0xcf11b4fa iio_register_sw_device_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x371cf1d7 iio_register_sw_trigger_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x47e07961 iio_unregister_sw_trigger_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x8b42b8be iio_sw_trigger_create +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x9eb1aba2 iio_sw_trigger_destroy +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x255ef5ee iio_triggered_event_setup +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x30590755 iio_triggered_event_cleanup +EXPORT_SYMBOL drivers/iio/light/st_uvis25_core 0x230abbdb st_uvis25_pm_ops +EXPORT_SYMBOL drivers/iio/light/st_uvis25_core 0x8655325a st_uvis25_probe +EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0x02fafc7b bmc150_magn_probe +EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0x65943e3f bmc150_magn_pm_ops +EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0x96f53d06 bmc150_magn_regmap_config +EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0xcce88e7b bmc150_magn_remove +EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0x1957fd58 hmc5843_common_suspend +EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0x9389cdfc hmc5843_common_remove +EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0x9f460948 hmc5843_common_resume +EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0xb46ad756 hmc5843_common_probe +EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x0bd138c0 st_magn_common_probe +EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x14a802a3 st_magn_common_remove +EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x9c293227 st_magn_get_settings +EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x440045ff bmp180_regmap_config +EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x9858db04 bmp280_common_probe +EXPORT_SYMBOL drivers/iio/pressure/bmp280 0xae86989d bmp280_regmap_config +EXPORT_SYMBOL drivers/iio/pressure/bmp280 0xd1ef081e bmp280_dev_pm_ops +EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0xb92111a4 ms5611_probe +EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0xdcbc81c8 ms5611_remove +EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x33198acf st_press_get_settings +EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x39c63054 st_press_common_probe +EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0xca9c6236 st_press_common_remove +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x0a0d9ff5 ib_send_cm_drep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x203ba369 ib_cm_notify +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x32c27115 ib_cm_insert_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x488bb513 ib_send_cm_dreq +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x5abca732 ib_send_cm_sidr_req EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x69824a14 ibcm_reject_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x772a969e ib_send_cm_rej -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x867d4198 ib_send_cm_rep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x8eece792 ib_cm_notify -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x96ecf6cd ib_send_cm_sidr_req -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xbc61eaa1 ib_create_cm_id -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xd64ae125 ib_send_cm_req -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xe517d384 ib_send_cm_drep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xf4bbdb79 ib_send_cm_mra -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x012efb8a rdma_copy_src_l2_addr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x02811117 ib_mad_kernel_rmpp_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0648b980 rdma_restrack_count -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0ad97718 ib_map_mr_sg_pi -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0b457c67 ib_sa_get_mcmember_rec -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0b51226f rdma_umap_priv_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0be091d9 rdma_nl_stat_hwcounter_entry -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0bee931b ib_detach_mcast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0e0207ae ib_get_net_dev_by_params -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0e2fda80 rdma_rw_ctx_signature_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x131d219c ib_query_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1405dcc4 rdma_user_mmap_io -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x141bbab9 ib_get_vf_stats -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x141c9a80 ib_get_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1597d57d ibdev_printk -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x18340f58 ib_map_mr_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x7fc9af28 ib_send_cm_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x906a349e ib_send_cm_rej +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x95b08e7e ib_send_cm_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x9c0a1265 ib_send_cm_sidr_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xa012134e ib_send_cm_rtu +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xa0660120 ib_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xb251cc13 ib_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xd0c71c81 ib_send_cm_mra +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xe3061cf5 ib_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xfd43ab3c ib_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0489feb3 rdma_resolve_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x089ec34d ib_device_get_by_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x08affc34 ibdev_warn +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0bac32dc ib_open_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c167724 ib_qp_usecnt_inc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0ce236ce ib_mad_kernel_rmpp_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0d63a473 __ib_create_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0d9f95e9 ib_port_register_client_groups +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1276508d ib_unregister_device_queued +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x12896c0a __ib_alloc_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x14d45fa0 rdma_copy_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x158225b0 ibdev_err +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x15c6caa3 rdma_get_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x164206cf ib_free_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x16e658b9 rdma_find_gid_by_port EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x184621a4 ib_get_rdma_header_version -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x18dc29bb ib_get_eth_speed +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x19716bd4 ib_get_cached_lmc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x19b2c86a ib_sg_to_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1a0dd1de ib_get_vf_stats +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1a6c738c ib_modify_srq EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1b037462 __rdma_block_iter_start -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1b4a6665 rdma_query_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1f3f8545 rdma_nl_put_driver_string -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1fcf6d37 ib_alloc_mr_integrity -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1ff86e7f rdma_rw_mr_factor -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x21ca1f4d rdma_port_get_link_layer -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x23174f31 ib_set_vf_link_state -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2413b9b9 ib_unregister_mad_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x26934da8 rdma_user_mmap_entry_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x26c26583 __ib_alloc_pd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x27414508 rdma_restrack_parent_name -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2778c82a rdma_link_register -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x27b53bf9 ib_find_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x283c4d0a rdma_read_gid_attr_ndev_rcu -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2884df21 rdma_user_mmap_entry_remove -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x29a0e34e ibdev_alert -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2b35c520 ib_modify_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2cfcb4e2 rdma_get_gid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2d00a570 ib_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2d87f35a ib_qp_usecnt_dec -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2deea21d ib_mr_pool_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2e17868b ibdev_crit +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1daf5726 ibdev_notice +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x20c7d87c ib_cq_pool_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x21939fcd rdma_user_mmap_entry_remove +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x24410934 rdma_query_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x247b3371 ib_create_qp_security +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x25bcc61b rdma_set_cq_moderation +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x25cef478 ibdev_emerg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x26084efe ib_create_srq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2881c991 ib_set_vf_link_state +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x28f1108d rdma_move_grh_sgid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x29ce182b ib_get_cached_subnet_prefix +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2a2a273b ib_modify_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2af12a49 __ib_alloc_cq_any +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2d0fa37d ibnl_put_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2d981a74 ib_register_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2e200698 rdma_restrack_parent_name EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2f384613 ib_modify_qp_is_ok +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2f96c644 ib_get_cached_port_state EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2fc70b9e ib_get_gids_from_rdma_hdr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2ff9ec0e ib_modify_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x301e5c86 ib_device_get_by_netdev EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x305e5701 rdma_addr_size_kss -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x30de1c4b ib_resize_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x31236b18 rdma_find_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x31e74e3d rdma_hold_gid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x34dcb487 rdma_rw_ctx_destroy_signature -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x363cc532 ib_get_cached_subnet_prefix -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x37f4f61b ib_get_rmpp_segment -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x38477742 ibdev_emerg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x39c433d9 rdma_restrack_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3ae7de36 rdma_restrack_add -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3b48f603 rdma_dev_access_netns -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3d010e58 ib_query_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3e8cbc01 ib_init_ah_from_mcmember -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3f8fa96a rdma_rw_ctx_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3f95918b ib_get_vf_guid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x314939b8 ib_alloc_xrcd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x318f80ea ib_reg_user_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x35344bc7 rdma_user_mmap_io +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x38021ae9 rdma_nl_unicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3803d7c1 rdma_restrack_get_byid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x38623762 __ib_alloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x399ab567 rdma_destroy_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3ac0219b ib_free_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3c033ae5 ib_close_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3d9d3c9e rdma_user_mmap_entry_put EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3fc2387c ib_ud_header_unpack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3fd2c52e rdma_read_gid_l2_fields -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x420dfc56 rdma_create_user_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x42603b78 ib_alloc_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x409c10e4 ib_drain_sq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x40f82dfd rdma_query_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x423f51ff ib_map_mr_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4299bda9 ib_dealloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x42e2e658 rdma_nl_put_driver_u32 EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x434c5d10 zgid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x43db2298 rdma_read_gid_hw_context -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x445ee636 rdma_nl_put_driver_u32 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x43ad764a rdma_port_get_link_layer EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x45fb8985 rdma_nl_chk_listeners -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4769f7f7 ibdev_warn -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x47b02f0f ib_destroy_cq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4a9ce93b rdma_nl_register -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4b070635 ib_get_vf_config -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4d3d3dc6 ib_create_srq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4df53b8f ib_free_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x461ee905 ib_destroy_cq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x467a9c01 rdma_user_mmap_entry_insert_range +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x47ca9b47 ib_query_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4832082b rdma_nl_stat_hwcounter_entry +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4834a629 rdma_link_register +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x491211aa rdma_rw_ctx_wrs +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4b9d1942 ib_get_net_dev_by_params +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4ce9a94d ib_destroy_wq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4db568d2 ib_dealloc_pd_user EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e155af0 ib_response_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e8ff330 ib_find_gid EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e90435c ib_sa_free_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4eb49adf ib_free_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4fc647c3 ibdev_info -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x50a58f47 ib_get_cached_lmc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x51dd10d4 ibnl_put_attr EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x520b2638 ib_pack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x538c34eb ib_port_unregister_client_groups -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x540b8c43 ib_dispatch_event -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x54b1eced rdma_move_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5232146e ib_query_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x52d4a160 ib_attach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x557e471b ib_destroy_srq_user EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x55bb02f3 ib_cache_gid_type_str -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x578b52ef ib_reg_user_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x59a792e4 ibnl_put_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5a408d39 roce_gid_type_mask_support -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5b7585ef ib_unregister_event_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5d0857fa ib_dereg_mr_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5eb7b71a ib_drain_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6078e209 ib_create_qp_security +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5601ae9b rdma_put_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x593affde ib_unregister_device_and_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5a1d7654 ib_modify_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5a3ca217 ib_init_ah_from_mcmember +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5a906536 ib_get_rmpp_segment +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5aad99a7 ib_register_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5b52ed87 rdma_hold_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5c6fc772 ib_port_sysfs_get_ibdev_kobj +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5d44a2db rdma_query_gid_table +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6007ffd7 rdma_restrack_put 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 0x61f0900a rdma_user_mmap_entry_insert -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x61f69f65 ib_close_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6256e03b ib_query_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x64f389ab ib_create_qp_user EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6581ca90 ib_sa_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x67a125bb ib_post_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x67a6f2cc __ib_alloc_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6825fada ib_unregister_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x687bfd51 ib_cq_pool_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6929c5ad ib_modify_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x67f19a11 rdma_dev_access_netns +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x67f4652b ib_dealloc_xrcd_user EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b958320 ib_ud_ip4_csum -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6bbae172 ib_drain_sq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6c0db416 ib_create_ah_from_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6c22084d rdma_destroy_ah_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6cf43d64 ib_create_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6e407cbb rdma_rw_ctx_post EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f3614b6 rdma_is_zero_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f7fe86e ib_query_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x713de220 ib_set_client_data -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x71b1068f ib_get_cached_port_state -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x72e29db9 ib_set_device_ops -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x72f2b7cd ib_qp_usecnt_inc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x74e19058 ib_register_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f6cc749 ib_sa_get_mcmember_rec +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x70ed7cd4 ib_create_qp_kernel +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x71b3a95d ib_find_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x73c7cfd1 ib_find_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x741c89b6 rdma_translate_ip EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x75a729a0 rdma_nl_unregister +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x768ad090 roce_gid_type_mask_support +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7750f8be ib_sa_path_rec_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x77887d9d ib_modify_device EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x787ccc4c ib_get_mad_data_offset -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x79a928ed rdma_translate_ip -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7ae67aea rdma_find_gid_by_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7b5f3617 ib_register_mad_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7e66f28c ib_mr_pool_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7e8724f2 rdma_create_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8270caff ib_sa_guid_info_rec_query -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x82beae0e ib_unregister_device_queued -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x83567c64 ib_dealloc_pd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7cd26430 ib_detach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7e4bc839 ib_free_recv_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x80552b86 ib_unregister_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x80b267bd ib_query_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x84806765 rdma_move_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x84882cdc ib_unregister_event_handler EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x86cef180 rdma_addr_size -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x87a26e84 rdma_rw_ctx_post -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8a59666f ib_dealloc_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8c761d55 ib_modify_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8e257416 rdma_destroy_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8e68aa3a ib_rdmacg_try_charge +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x887a41dc ib_create_wq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x887fdb9d rdma_rw_ctx_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x89d4ce32 rdma_rw_ctx_signature_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8aa7c79d rdma_modify_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8db40d1a ib_dereg_mr_user EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8e7528da __rdma_block_iter_next -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8ea76dcb rdma_roce_rescan_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90aa16ef rdma_nl_unicast_wait +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8fdd22c4 ib_device_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9020c115 rdma_rw_mr_factor +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90af3420 ibnl_put_attr EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90e807c7 ib_cache_gid_parse_type_str -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9169a721 ib_get_device_fw_str -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x93fa489b ib_sa_join_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x952b00d3 ib_register_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x961b6b0d ib_find_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9694587c ib_init_ah_attr_from_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9d36649b ib_device_get_by_name -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9fa0b74b rdma_replace_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa2ca5cdf ib_drain_rq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa319db5f rdma_init_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa40336a2 rdma_user_mmap_entry_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa6070ccb rdma_modify_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa773a531 ib_device_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x929065e4 rdma_alloc_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x951a7b79 ibdev_printk +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x960e41b5 ib_cq_pool_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x96826848 ib_set_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9984a969 rdma_create_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9a78f029 ib_destroy_qp_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9e316738 ib_port_unregister_client_groups +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa0f1266b ib_alloc_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa1013c4e ib_alloc_mr_integrity +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa2ea9bcf ib_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa34c3318 rdma_addr_cancel +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa36ab157 rdma_restrack_new +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa596537b ib_set_device_ops +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa6903638 ib_process_cq_direct +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa6e1090c rdma_nl_put_driver_u64_hex EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa7c4c123 ib_sa_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa88dadd7 ib_unregister_device_and_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaa041d17 rdma_restrack_new -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaa47d90e rdma_rw_ctx_destroy -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xabab9c63 rdma_set_cq_moderation -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xac42f3cf rdma_user_mmap_entry_get_pgoff -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaccc1e49 rdma_addr_cancel -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xad2542d9 ib_free_recv_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa804b556 rdma_user_mmap_entry_insert +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa8a65384 ibdev_crit +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa90188c6 ib_device_set_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa95e3b7d ib_port_immutable_read +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaa1742ab ib_get_eth_speed +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xac7b12fc rdma_link_unregister +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaca6926a ib_advise_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xace21275 ib_post_send_mad EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae956dce ib_rate_to_mult -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae966b89 ib_cq_pool_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaeb0334d ib_advise_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaff08c90 ib_alloc_xrcd_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaff22387 ib_mr_pool_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb00dfca3 ib_set_vf_guid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb04e293b rdma_user_mmap_entry_insert_range -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb09c19b2 ib_modify_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb17330c7 ib_find_exact_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae961b86 rdma_user_mmap_entry_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaecc0856 rdma_umap_priv_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaeddcc02 ib_create_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb015668d rdma_rw_ctx_init EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb1a312e1 ib_unpack EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb36e4148 ib_sa_pack_path -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb3db649e ib_modify_qp_with_udata -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb48c35da rdma_restrack_set_name -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb6446b94 ib_init_ah_attr_from_path -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb7230e53 rdma_nl_put_driver_u32_hex +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb5b4150f ib_set_vf_guid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb635b745 ibdev_info +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb645d0c2 ib_find_exact_cached_pkey EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb7852a05 ib_ud_header_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb94102f5 ib_attach_mcast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbc53fa54 ib_process_cq_direct -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbe752c19 rdma_query_gid_table -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc2bbe571 rdma_nl_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc569aa64 rdma_link_unregister -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc5aab88b ib_open_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc5d8cb2d ib_port_immutable_read -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc6340c16 ib_create_qp_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc676bf15 ib_sa_path_rec_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc77b901b ib_create_wq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc8a1c69c ib_port_sysfs_get_ibdev_kobj -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc8f79d64 __ib_alloc_cq_any -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc9eec904 ib_mr_pool_destroy -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcbd7926c ib_create_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcc5d5d5f rdma_copy_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xce00c7ea rdma_nl_put_driver_u64_hex -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xce649059 ib_device_get_by_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcf058930 rdma_put_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb8dd5bcf rdma_read_gid_attr_ndev_rcu +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb93babbc rdma_user_mmap_entry_get_pgoff +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xba4a5fa9 ib_map_mr_sg_pi +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbbc39861 ib_drain_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbbf7ac74 rdma_restrack_add +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbe117718 ib_get_vf_config +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbf4b2067 ib_query_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc0ebffac rdma_restrack_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc18e4b81 ib_dispatch_event +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc1c73366 ib_get_vf_guid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc2b093ad ib_drain_rq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc3716bcd ib_init_ah_attr_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc38fe5dc ib_mr_pool_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc52883ce rdma_nl_put_driver_u32_hex +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc5f57b7c rdma_restrack_del EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcfbc053b ib_unregister_driver -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd0027d29 rdma_nl_put_driver_u64 -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd1b3dd8a ib_dealloc_xrcd_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd1b84910 rdma_rw_ctx_wrs -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd26004d1 rdma_restrack_get_byid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd2c8be6a ib_destroy_qp_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd2e94f64 ib_port_register_client_groups -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd54eecf8 ib_check_mr_status +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd01c12d3 ib_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd0654bd3 rdma_destroy_ah_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd41cf168 ib_modify_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd5c87920 ib_mr_pool_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd5d5237b ib_sa_join_multicast EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd6636ca6 rdma_addr_size_in6 -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd80351b4 rdma_query_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd85b2124 ib_destroy_wq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd90322ec ibdev_notice +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd6cfd5a3 ib_qp_usecnt_dec +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd71f8ad8 ib_mr_pool_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd992f72b ib_unregister_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd9de76ed ib_rdmacg_try_charge EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda0d50ec ib_sa_cancel_query -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda3b061c rdma_move_grh_sgid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdd1c9421 ib_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdd59acae _ib_alloc_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xde35fbe7 ibdev_err -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe0b10204 __ib_create_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe33a5dd5 rdma_resolve_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdafc781f _ib_alloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdb673e34 ib_sa_guid_info_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdbbfd954 rdma_nl_register +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe0c4754f rdma_init_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe12e519c ibdev_alert +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe2331682 rdma_restrack_set_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5138817 ib_find_gid EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5840ec6 ib_wc_status_msg EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5a78c1e ib_sa_unpack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5b9d2b9 ib_check_mr_status +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5c8d444 ib_get_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe6bc4b2b rdma_nl_unicast_wait +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe719be11 rdma_rw_ctx_destroy_signature EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe7b52e5f mult_to_ib_rate +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe85328da ib_init_ah_attr_from_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9a4ae18 rdma_nl_put_driver_u64 EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9e799fc ib_ud_header_pack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xea611aae rdma_restrack_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xebf7916f ib_create_qp_kernel -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xec5f6ef0 ib_destroy_srq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeded2d9f ib_rdmacg_uncharge -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xee79b238 rdma_alloc_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf3e10d8f rdma_restrack_del +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xea6a4b4b rdma_replace_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeb94388e rdma_nl_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeecdd85e ib_mr_pool_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf00efcf5 rdma_roce_rescan_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf17f8b4c rdma_nl_put_driver_string +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf4b2357b ib_resize_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf532ddf9 ib_modify_qp_with_udata EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf5dedb30 rdma_node_get_transport -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf6700319 ib_device_set_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf5e37a1e rdma_restrack_count +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf6d28429 rdma_copy_src_l2_addr EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf6ed3334 ib_event_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfdcad4f6 rdma_nl_unicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xff5f74a5 ib_sg_to_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x02f042ae _uverbs_get_const_unsigned -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x0552b355 uverbs_copy_to -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x0ea660b4 uverbs_uobject_fd_release -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1b0fade8 uverbs_copy_to_struct_or_zero +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf719ee49 rdma_read_gid_hw_context +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf74c322d rdma_read_gid_l2_fields +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf7b66ec8 rdma_create_user_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf941f38a ib_register_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfb352220 ib_rdmacg_uncharge +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfc0a866e ib_get_device_fw_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfc2a2c4b rdma_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x07b26ecc _uverbs_get_const_unsigned +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x126fc32d ib_copy_ah_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1658c543 ib_umem_get_peer +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1a217ce3 uverbs_uobject_put +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1a42f5de uverbs_get_flags32 EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1b54bd5d ib_copy_path_rec_from_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x26c357f2 flow_resources_alloc -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x28eae57d ib_umem_get_peer -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x2e429fe5 ib_copy_ah_attr_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x3083ba31 ib_umem_get -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x33628c32 uverbs_destroy_def_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x363a849c flow_resources_add -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x491f79f8 uverbs_get_flags64 +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x21287815 ib_copy_qp_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x2145acaf _uverbs_alloc +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x23b6d8cb ib_umem_activate_invalidation_notifier +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x241b42bf uverbs_uobject_fd_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x3325c821 flow_resources_alloc +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x35b99685 uverbs_copy_to_struct_or_zero +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x361ea3c7 ib_umem_odp_alloc_implicit +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x3bb1ab97 ib_umem_find_best_pgsz +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x47224ec4 ib_umem_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x48931419 ib_umem_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x4f099167 ib_umem_dmabuf_map_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5e466f83 ib_umem_odp_alloc_child +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x62566756 ib_umem_odp_get EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x63057f4b ib_copy_path_rec_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x696d0b37 ib_umem_dmabuf_map_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7271bde6 uverbs_idr_class -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7729e163 ib_umem_stop_invalidation_notifier -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7da8935e uverbs_get_flags32 -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x83f1a25e uverbs_finalize_uobj_create -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x9416f7d7 ib_uverbs_flow_resources_free -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x94b3a52d ib_umem_activate_invalidation_notifier -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa852992a ib_umem_odp_map_dma_and_lock -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xabbf259d ib_umem_dmabuf_unmap_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xad1551bd ib_umem_odp_get -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xad449da5 _uverbs_alloc -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xaf51f37f ib_umem_odp_alloc_child -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xaf6eae2a ib_umem_odp_unmap_dma_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb61c714c uverbs_uobject_put -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xba176313 ib_umem_dmabuf_get -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xbb0c3cee ib_uverbs_get_ucontext_file +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x75d3d6ce ib_umem_copy_from +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x9416fca3 flow_resources_add +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x9aa43bff ib_umem_stop_invalidation_notifier +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x9b4325c5 ib_umem_odp_map_dma_and_lock +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x9f4500d5 ib_umem_odp_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa498ebfe uverbs_get_flags64 +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb9ce0077 ib_umem_odp_unmap_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xbbdaa6f2 ib_umem_dmabuf_get EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xbde5c050 ib_unregister_peer_memory_client -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc141dd58 ib_umem_odp_release -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc887a66e ib_umem_odp_alloc_implicit -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xca196f49 ib_umem_release -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd483ecbc ib_copy_qp_attr_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xde384db5 ib_umem_copy_from -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe6217bc7 uverbs_fd_class -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe8d50282 _uverbs_get_const_signed -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf42fa625 ib_register_peer_memory_client -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xfdefee96 ib_umem_find_best_pgsz -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x216c4ca4 iw_create_cm_id -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x23b5ce04 iw_cm_connect -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x541e07f0 iw_destroy_cm_id -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x5cf25a03 iw_cm_listen -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x98762e5d iw_cm_accept -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xe50a3aa0 iw_cm_disconnect -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf0ac1166 iw_cm_reject -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf38d195a iw_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc37f0ed2 ib_uverbs_flow_resources_free +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc99d5788 uverbs_copy_to +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xcabe73d1 uverbs_destroy_def_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd1166ab7 ib_register_peer_memory_client +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd5f1eb05 _uverbs_get_const_signed +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xdb5d3a69 ib_uverbs_get_ucontext_file +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xdc394433 ib_umem_dmabuf_unmap_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe99fe742 uverbs_finalize_uobj_create +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xeb015bc4 uverbs_fd_class +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xeb75cc7c uverbs_idr_class +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x0500bc86 iw_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x0c3dca71 iw_cm_connect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x1a6b8f6c iw_cm_reject +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x2f0dbf0e iw_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x3b04fd35 iw_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x4e77ce29 iw_cm_accept +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x762aca5c iw_cm_disconnect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xe33ffe17 iw_create_cm_id EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf3df871f iwcm_reject_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x017a4a1a rdma_resolve_route -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0438c938 rdma_destroy_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x06505941 rdma_connect -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0a950398 rdma_unlock_handler -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0aa010f5 rdma_lock_handler -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0d727e12 rdma_reject -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0ee1c9a8 rdma_create_qp -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x265fd96d rdma_reject_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2cbf6265 rdma_connect_ece -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x34417a04 rdma_listen -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x348079c9 rdma_set_ack_timeout -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3a489699 rdma_accept_ece -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3f3cdf49 rdma_destroy_qp -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4e239461 rdma_create_user_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x50ee8e69 rdma_join_multicast -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x54e930ba rdma_set_min_rnr_timer -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5fea106b rdma_read_gids -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x637aeb16 rdma_leave_multicast -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6b55ed41 rdma_set_reuseaddr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7fcdfacf rdma_resolve_addr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x83cab6c5 rdma_consumer_reject_data +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x032cb948 rdma_set_afonly +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0a072ef8 rdma_consumer_reject_data +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0a452e9e rdma_read_gids +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1103bb2b rdma_connect_ece +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x19e5b96b rdma_accept +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x23f95e06 rdma_create_user_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x26349dc5 rdma_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x277a3409 __rdma_create_kernel_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x28e0b689 rdma_iw_cm_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x39ed5eef rdma_disconnect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3c6077c4 rdma_bind_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x40c6ea83 rdma_set_ib_path +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5f254a1c rdma_connect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x61f22861 rdma_reject_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6577ee79 rdma_create_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7789a11e rdma_set_min_rnr_timer +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7ee00e71 rdma_accept_ece +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x87516ab3 rdma_set_service_type EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9138b114 rdma_accept -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa237ace2 rdma_set_ib_path -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa52bbb62 rdma_set_afonly -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa95a78c8 rdma_res_to_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xae993969 rdma_connect_locked -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xbc0ee588 rdma_bind_addr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xbe97c41b __rdma_create_kernel_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc345e848 rdma_disconnect -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc5bbeae4 rdma_set_service_type -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xee127fc4 rdma_notify -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf6aeeba5 rdma_iw_cm_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf98aa733 rdma_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xfa16893c rdma_get_service_id -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x08e7a145 rtrs_clt_put_permit -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x0aaa200f rtrs_clt_request -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x1509f57d rtrs_clt_query -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x4ef58cc3 rtrs_clt_close -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x64861416 rtrs_clt_get_permit -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x8921bffa rtrs_clt_rdma_cq_direct -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xc858802b rtrs_clt_open -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x11db2649 rtrs_ib_dev_find_or_add +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9e5ee012 rdma_lock_handler +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa08087a1 rdma_res_to_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa15cdc05 rdma_get_service_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xaa0e11ca rdma_leave_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xaa81e0c9 rdma_resolve_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb5a92b2e rdma_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb955b826 rdma_set_reuseaddr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xbcea4e2e rdma_reject +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xbfba8181 rdma_notify +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc2d295d9 rdma_connect_locked +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc8ef8101 rdma_listen +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd166af6a rdma_set_ack_timeout +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd753dc29 rdma_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xdbb3d6bb rdma_unlock_handler +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe26ebdf2 rdma_destroy_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf0ead239 rdma_resolve_route +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x062d2036 rtrs_clt_get_permit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x0fbfcf03 rtrs_clt_close +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x3d661037 rtrs_clt_rdma_cq_direct +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x4e38402c rtrs_clt_put_permit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x5262d3c7 rtrs_clt_query +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xb136bfab rtrs_clt_open +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xce5c29ea rtrs_clt_request EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x2510363a sockaddr_to_str -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x26e1387d rtrs_rdma_dev_pd_deinit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x5f3e13b0 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 0x88709d6d rtrs_rdma_dev_pd_init EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x926b41e5 rtrs_addr_to_str -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xc8c4f5a8 rtrs_ib_dev_put -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x7b06a3ac rtrs_srv_close -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x8b36e021 rtrs_srv_resp_rdma -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x923d7aaa rtrs_srv_get_sess_name -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xd37d942f rtrs_srv_set_sess_priv -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xdec3bdbb rtrs_srv_open -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xff584bfb rtrs_srv_get_queue_depth -EXPORT_SYMBOL drivers/input/gameport/gameport 0x2d1e741c gameport_stop_polling -EXPORT_SYMBOL drivers/input/gameport/gameport 0x51a95bd0 __gameport_register_driver -EXPORT_SYMBOL drivers/input/gameport/gameport 0x7e80da62 gameport_unregister_port -EXPORT_SYMBOL drivers/input/gameport/gameport 0x94d67987 gameport_open -EXPORT_SYMBOL drivers/input/gameport/gameport 0xb0bdff0a gameport_unregister_driver -EXPORT_SYMBOL drivers/input/gameport/gameport 0xb1536983 __gameport_register_port -EXPORT_SYMBOL drivers/input/gameport/gameport 0xc1bf2eea gameport_close -EXPORT_SYMBOL drivers/input/gameport/gameport 0xf270cc6d gameport_start_polling -EXPORT_SYMBOL drivers/input/gameport/gameport 0xff03334e gameport_set_phys -EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x36bb5e6e iforce_process_packet -EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x8e02f845 iforce_init_device -EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0xedc8336a iforce_send_packet -EXPORT_SYMBOL drivers/input/matrix-keymap 0x5a83e5f2 matrix_keypad_build_keymap -EXPORT_SYMBOL drivers/input/misc/ad714x 0x520c8825 ad714x_disable -EXPORT_SYMBOL drivers/input/misc/ad714x 0x7a2318ff ad714x_probe -EXPORT_SYMBOL drivers/input/misc/ad714x 0xa7a9b2ba ad714x_enable -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x7e430656 cma3000_init +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xa29b249b rtrs_rdma_dev_pd_deinit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xb7efc8f0 rtrs_ib_dev_put +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xd3d8bdc6 rtrs_ib_dev_find_or_add +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x01ea7bb4 rtrs_srv_open +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x180ba500 rtrs_srv_get_sess_name +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x26586263 rtrs_srv_resp_rdma +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x280e3092 rtrs_srv_set_sess_priv +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x359bcbc0 rtrs_srv_close +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xbf575ded rtrs_srv_get_queue_depth +EXPORT_SYMBOL drivers/input/gameport/gameport 0x0e8a2056 gameport_close +EXPORT_SYMBOL drivers/input/gameport/gameport 0x23a717cb gameport_unregister_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0x25e1ca58 __gameport_register_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0x2a8f9adf gameport_start_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0x915c8736 gameport_unregister_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0xa3178b04 gameport_set_phys +EXPORT_SYMBOL drivers/input/gameport/gameport 0xa4186adb gameport_open +EXPORT_SYMBOL drivers/input/gameport/gameport 0xc4163832 gameport_stop_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0xda9d9b2f __gameport_register_port +EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x05affb5a iforce_init_device +EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x0bf20b23 iforce_send_packet +EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0xc66e7254 iforce_process_packet +EXPORT_SYMBOL drivers/input/matrix-keymap 0xc859e941 matrix_keypad_build_keymap +EXPORT_SYMBOL drivers/input/misc/ad714x 0x0fc5fe5b ad714x_enable +EXPORT_SYMBOL drivers/input/misc/ad714x 0x27685add ad714x_probe +EXPORT_SYMBOL drivers/input/misc/ad714x 0xa0fe128e ad714x_disable +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x57bf2045 cma3000_init EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x892d76b2 cma3000_resume EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x89d9444e cma3000_exit EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0xca3f100a cma3000_suspend -EXPORT_SYMBOL drivers/input/rmi4/rmi_core 0xa4c0924f rmi_unregister_transport_device -EXPORT_SYMBOL drivers/input/sparse-keymap 0x29ed7232 sparse_keymap_entry_from_scancode -EXPORT_SYMBOL drivers/input/sparse-keymap 0x39d9c65f sparse_keymap_setup -EXPORT_SYMBOL drivers/input/sparse-keymap 0x97a720ed sparse_keymap_entry_from_keycode -EXPORT_SYMBOL drivers/input/sparse-keymap 0xe28417cf sparse_keymap_report_event -EXPORT_SYMBOL drivers/input/sparse-keymap 0xf48b04ca sparse_keymap_report_entry -EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x3cf8ee55 ad7879_probe -EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x5956917f ad7879_pm_ops -EXPORT_SYMBOL drivers/interconnect/qcom/icc-smd-rpm 0x55cd2e28 qnoc_probe -EXPORT_SYMBOL drivers/interconnect/qcom/icc-smd-rpm 0x5fdea903 qnoc_remove -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x48a859b6 attach_capi_ctr -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x61dd5d29 capi_ctr_ready -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x8c131670 detach_capi_ctr -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xc87bd1b8 capi_ctr_handle_message -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xdc3000d5 capi_ctr_down +EXPORT_SYMBOL drivers/input/rmi4/rmi_core 0x68bdff45 rmi_unregister_transport_device +EXPORT_SYMBOL drivers/input/sparse-keymap 0x14a18a45 sparse_keymap_setup +EXPORT_SYMBOL drivers/input/sparse-keymap 0x74b2cb7f sparse_keymap_report_event +EXPORT_SYMBOL drivers/input/sparse-keymap 0x86889ea6 sparse_keymap_report_entry +EXPORT_SYMBOL drivers/input/sparse-keymap 0x9cdfee55 sparse_keymap_entry_from_scancode +EXPORT_SYMBOL drivers/input/sparse-keymap 0xd902be57 sparse_keymap_entry_from_keycode +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x02a56b27 ad7879_pm_ops +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x9f9798e6 ad7879_probe +EXPORT_SYMBOL drivers/interconnect/qcom/icc-smd-rpm 0x88313f38 qnoc_probe +EXPORT_SYMBOL drivers/interconnect/qcom/icc-smd-rpm 0xff81abc5 qnoc_remove +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x1f740515 capi_ctr_handle_message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2128e405 capi_ctr_down +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x37b118bb attach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x3cbabf1b detach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x44b7cf53 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 0x0483c34f mISDNisac_irq -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x1faf2e9b mISDNipac_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x29cd4e8f mISDNipac_irq -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xfbdbad39 mISDNisac_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x47dc7d10 mISDNisar_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0xf4260f7a mISDNisar_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x3c50fb2e mISDNisac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x651092c2 mISDNipac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x81bd86cb mISDNisac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xd9ec81f9 mISDNipac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x6301dfcd mISDNisar_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0xd590bc3a mISDNisar_init EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x03a68066 mISDN_FsmRestartTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1d5c0b42 recv_Dchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x22e61f13 bchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x19f2ecc2 recv_Echannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1c0cf76f recv_Dchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x21f7f462 mISDN_unregister_Bprotocol EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2348cc3c mISDN_FsmFree +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x23af4c84 get_next_bframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x25f60093 create_l1 EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x26236de8 mISDN_clock_update -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2c49fec0 get_next_dframe 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 0x3714fa44 mISDN_freebchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x37228f38 mISDN_register_device -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x3f526c4e mISDN_ctrl_bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x47f7e5d3 mISDN_initdchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x4e57dd2e recv_Bchannel_skb EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x50c2230c mISDN_FsmChangeState EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x588886a6 l1_event EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6047df40 mISDN_FsmInitTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x80360bd1 recv_Dchannel_skb -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9b68b7e0 mISDNDevName4ch +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x622b860f mISDN_clear_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7642f8ca mISDN_unregister_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7a7a71db bchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8027fa7a mISDN_freedchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x82f0e837 mISDN_register_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x97151d53 mISDN_freebchannel EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9c928457 mISDN_FsmNew -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa106f2a8 bchannel_get_rxbuf -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xae238c7e mISDN_register_Bprotocol -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xbb2446e1 recv_Echannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xbc392cbf mISDN_clear_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa04fdc48 recv_Bchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa1486927 mISDN_register_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa32a72dc bchannel_get_rxbuf +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xabef8601 get_next_dframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb05ec95f queue_ch_frame EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc3401729 mISDN_register_clock -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc497375d create_l1 -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc4a96629 mISDN_unregister_device -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xcb2e89d7 mISDN_freedchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc7c7a2f6 dchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd1acef17 mISDN_initdchannel EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd285995f mISDN_clock_get +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd4acdaa1 mISDNDevName4ch EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd5145151 mISDN_FsmEvent -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd570cb0b get_next_bframe -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd789f517 dchannel_senddata -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xda147754 mISDN_initbchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xde8109dc mISDN_initbchannel EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe8f617eb mISDN_unregister_clock -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf2e73402 mISDN_unregister_Bprotocol -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf36814ef recv_Bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xfcb2fc2a queue_ch_frame +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe9e22c4e recv_Dchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xec1c50e3 recv_Bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xffc045bd mISDN_ctrl_bchannel EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x01087af0 mISDN_dsp_element_unregister EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x93df9e4b dsp_audio_law_to_s32 EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xb07a21b8 dsp_audio_s16_to_law EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xb98308d8 mISDN_dsp_element_register -EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0x19f4fa38 ti_lmu_common_get_brt_res +EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0x4df3a88d 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 0x71afcf83 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 0xf3c29060 ti_lmu_common_get_ramp_params -EXPORT_SYMBOL drivers/mailbox/mtk-cmdq-mailbox 0xebdcdc50 cmdq_get_shift_pa -EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0x35c23d97 omap_mbox_disable_irq -EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0x6ae31f69 omap_mbox_request_channel -EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0x71772543 omap_mbox_enable_irq -EXPORT_SYMBOL drivers/md/dm-log 0x3009f2e2 dm_dirty_log_type_register -EXPORT_SYMBOL drivers/md/dm-log 0x4e0ee8bf dm_dirty_log_create -EXPORT_SYMBOL drivers/md/dm-log 0x55f45f84 dm_dirty_log_destroy -EXPORT_SYMBOL drivers/md/dm-log 0xb4ecb340 dm_dirty_log_type_unregister -EXPORT_SYMBOL drivers/md/dm-snapshot 0x5d5c6a3d dm_exception_store_destroy -EXPORT_SYMBOL drivers/md/dm-snapshot 0x65c55d73 dm_exception_store_type_register -EXPORT_SYMBOL drivers/md/dm-snapshot 0x72e1bcb6 dm_exception_store_create -EXPORT_SYMBOL drivers/md/dm-snapshot 0xad44d56d dm_snap_cow -EXPORT_SYMBOL drivers/md/dm-snapshot 0xb64e5b0c dm_exception_store_type_unregister -EXPORT_SYMBOL drivers/md/dm-snapshot 0xccf02603 dm_snap_origin -EXPORT_SYMBOL drivers/md/raid456 0x0631557a raid5_set_cache_size -EXPORT_SYMBOL drivers/md/raid456 0x95a4ee6e r5c_journal_mode_set -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x076bb5a6 flexcop_device_exit -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x1b9a406d flexcop_pid_feed_control -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x38864fcb flexcop_device_kmalloc -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x3f81dea5 flexcop_pass_dmx_data -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x45aed547 flexcop_device_initialize -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x5edfb3f1 flexcop_dump_reg -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x70168423 flexcop_sram_set_dest -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x908b63b8 flexcop_sram_ctrl -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xa6ec3e19 flexcop_eeprom_check_mac_addr -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xb0251427 flexcop_device_kfree -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xceb671d7 flexcop_wan_set_speed -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xde73443f flexcop_i2c_request -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xfb1f890f flexcop_pass_dmx_packets -EXPORT_SYMBOL drivers/media/common/cx2341x 0x0fadcca9 cx2341x_handler_init +EXPORT_SYMBOL drivers/mailbox/mtk-cmdq-mailbox 0x47bbc013 cmdq_get_shift_pa +EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0x127853b8 omap_mbox_request_channel +EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0x7d8be75a omap_mbox_enable_irq +EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0xebc5d6e1 omap_mbox_disable_irq +EXPORT_SYMBOL drivers/md/dm-log 0xce41def8 dm_dirty_log_create +EXPORT_SYMBOL drivers/md/dm-log 0xd78ef3de dm_dirty_log_destroy +EXPORT_SYMBOL drivers/md/dm-log 0xdf30388c dm_dirty_log_type_unregister +EXPORT_SYMBOL drivers/md/dm-log 0xfd084542 dm_dirty_log_type_register +EXPORT_SYMBOL drivers/md/dm-snapshot 0x06bae4c8 dm_exception_store_type_unregister +EXPORT_SYMBOL drivers/md/dm-snapshot 0xbf8d648f dm_exception_store_type_register +EXPORT_SYMBOL drivers/md/dm-snapshot 0xc814f4fb dm_exception_store_destroy +EXPORT_SYMBOL drivers/md/dm-snapshot 0xd17f8f9d dm_snap_origin +EXPORT_SYMBOL drivers/md/dm-snapshot 0xde08b6df dm_exception_store_create +EXPORT_SYMBOL drivers/md/dm-snapshot 0xfe6fa4b3 dm_snap_cow +EXPORT_SYMBOL drivers/md/raid456 0xadddc397 r5c_journal_mode_set +EXPORT_SYMBOL drivers/md/raid456 0xd15242ba raid5_set_cache_size +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x0c6b572b flexcop_device_kmalloc +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x18f5fd9d flexcop_sram_set_dest +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x250989a1 flexcop_i2c_request +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x3b36dced flexcop_device_exit +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x4aef23e8 flexcop_wan_set_speed +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x60031c8d flexcop_pid_feed_control +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x9b06ca77 flexcop_sram_ctrl +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x9bad947b flexcop_pass_dmx_packets +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x9ef757dd flexcop_eeprom_check_mac_addr +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xb2feb593 flexcop_device_kfree +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xe0e72f5b flexcop_device_initialize +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xef86f714 flexcop_pass_dmx_data +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xf6bc41e3 flexcop_dump_reg +EXPORT_SYMBOL drivers/media/common/cx2341x 0x04fdb94e cx2341x_handler_set_busy +EXPORT_SYMBOL drivers/media/common/cx2341x 0x0a2fedb3 cx2341x_handler_set_50hz EXPORT_SYMBOL drivers/media/common/cx2341x 0x15ac1bd0 cx2341x_ctrl_query EXPORT_SYMBOL drivers/media/common/cx2341x 0x28240e61 cx2341x_ctrl_get_menu EXPORT_SYMBOL drivers/media/common/cx2341x 0x55aa7c5f cx2341x_mpeg_ctrls +EXPORT_SYMBOL drivers/media/common/cx2341x 0x72ce8b82 cx2341x_handler_setup EXPORT_SYMBOL drivers/media/common/cx2341x 0x7b4dd2cb cx2341x_fill_defaults -EXPORT_SYMBOL drivers/media/common/cx2341x 0x8887ea4e cx2341x_handler_setup -EXPORT_SYMBOL drivers/media/common/cx2341x 0x9b53cad7 cx2341x_handler_set_50hz +EXPORT_SYMBOL drivers/media/common/cx2341x 0xad6ae19e cx2341x_handler_init EXPORT_SYMBOL drivers/media/common/cx2341x 0xb2b9efb7 cx2341x_ext_ctrls EXPORT_SYMBOL drivers/media/common/cx2341x 0xdbc5583a cx2341x_update EXPORT_SYMBOL drivers/media/common/cx2341x 0xe1fe1432 cx2341x_log_status -EXPORT_SYMBOL drivers/media/common/cx2341x 0xe9e49323 cx2341x_handler_set_busy -EXPORT_SYMBOL drivers/media/common/cypress_firmware 0x1f06d423 cypress_load_firmware +EXPORT_SYMBOL drivers/media/common/cypress_firmware 0xb3cff7bf cypress_load_firmware EXPORT_SYMBOL drivers/media/common/ttpci-eeprom 0x693e74ba ttpci_eeprom_decode_mac -EXPORT_SYMBOL drivers/media/common/ttpci-eeprom 0xb444c64a ttpci_eeprom_parse_mac +EXPORT_SYMBOL drivers/media/common/ttpci-eeprom 0xd6e66282 ttpci_eeprom_parse_mac EXPORT_SYMBOL drivers/media/common/tveeprom 0x0dbf0296 tveeprom_hauppauge_analog -EXPORT_SYMBOL drivers/media/common/tveeprom 0x0fc2a031 tveeprom_read +EXPORT_SYMBOL drivers/media/common/tveeprom 0xc444c4c2 tveeprom_read EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x065246b8 frame_vector_create -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x0f7b6a56 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 0x20349ccc vb2_verify_memory_type +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x2246deea vb2_verify_memory_type +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x672cf4e8 vb2_buffer_in_use EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0xc2d9e090 get_vaddr_frames 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-dvb 0x11394b37 vb2_dvb_unregister_bus -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x162c36c9 vb2_dvb_get_frontend -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x2fa9985a vb2_dvb_find_frontend -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x894de915 vb2_dvb_alloc_frontend -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x9c72d0e6 vb2_dvb_register_bus -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xdcdc96c3 vb2_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x64945101 vb2_dvb_find_frontend +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x64cd6a00 vb2_dvb_register_bus +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xa6b0335f vb2_dvb_get_frontend +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xde3c809a vb2_dvb_alloc_frontend +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xdf1194e9 vb2_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xf886ed6f vb2_dvb_unregister_bus EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-memops 0xa21fa765 vb2_create_framevec EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-memops 0xccd197c7 vb2_destroy_framevec -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-v4l2 0x37b7e726 vb2_querybuf -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x025b50ea dvb_free_device -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x04e61078 dvb_frontend_resume +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-v4l2 0xb1f4986e vb2_querybuf +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x01f553dd dvb_frontend_detach +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x059b8c80 dvb_ca_en50221_camchange_irq EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x08733236 intlog10 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x092e6fee dvb_net_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x0d228af5 dvb_register_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1493b27c dvb_unregister_device EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1609d70c dvb_ringbuffer_flush -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x19284ba4 dvb_ca_en50221_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1682ca29 dvb_generic_ioctl EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1e7a8283 dvb_ringbuffer_read EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x214d5b4e dvb_ringbuffer_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2afa6b87 dvb_net_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x23377326 dvb_register_device EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2c12c287 dvb_ringbuffer_empty -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2ffecd05 dvb_frontend_detach +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x371529dd dvb_ca_en50221_init EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3b93d71a dvb_frontend_sleep_until -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3d8ddf00 dvb_unregister_adapter EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3fd96ba7 dvb_ringbuffer_flush_spinlock_wakeup EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x42d15a1b dvb_ringbuffer_write_user -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4851b955 dvb_net_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x48db6ab3 dvb_ca_en50221_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x517c1884 dvb_register_adapter -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5b69b827 dvb_generic_ioctl +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4b347fee dvb_frontend_reinitialise +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x55e3caa2 dvb_free_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5b1765a5 dvb_frontend_resume +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5d0ba60b dvb_ca_en50221_release EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5f2b1d95 intlog2 -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x66f985f6 dvb_frontend_suspend -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6d701a91 dvb_ca_en50221_camchange_irq -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6ebc946e dvb_ca_en50221_camready_irq -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x78f4aca8 dvb_generic_open -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7d43f009 dvb_dmxdev_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6020bec9 dvb_net_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x67268dbe dvb_unregister_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x721380b1 dvb_remove_device EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8026ef3e dvb_ringbuffer_read_user EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x82143c17 dvb_ringbuffer_avail -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x85dc2d16 dvb_unregister_frontend -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x85f5a36f dvb_remove_device -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8daa8315 dvb_register_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x960ca2a8 dvb_generic_release EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x989a4a69 dvb_dmx_swfilter_raw -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa2609826 dvb_register_device -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa75b202b dvb_dmxdev_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa8624736 dvb_register_frontend EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb2edd80a dvb_dmx_swfilter EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb7feaf5a dvb_dmx_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xbe1701d1 dvb_frontend_reinitialise +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb8e83472 dvb_dmxdev_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xbac4547a dvb_unregister_frontend EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc0b93899 dvb_ringbuffer_write +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc1d2626a dvb_frontend_suspend EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc4426d5c dvb_dmx_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc4df1fb4 dvb_unregister_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd64f4fe1 dvb_ca_en50221_camready_irq EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd7a1edab dvb_dmx_swfilter_packets +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xde8a6317 dvb_generic_open +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xdedbd378 dvb_dmxdev_release EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe7367529 dvb_dmx_swfilter_204 -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf4714eb6 dvb_generic_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfd6c0b32 dvb_ca_en50221_frda_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xec86901d dvb_ca_en50221_frda_irq EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfe73d116 dvb_ringbuffer_free -EXPORT_SYMBOL drivers/media/dvb-frontends/ascot2e 0x44f3f138 ascot2e_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/atbm8830 0x648fa47a atbm8830_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x324a084c au8522_writereg -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x34faedc8 au8522_readreg -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x3511af33 au8522_i2c_gate_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x3ca5fbb5 au8522_sleep -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xb0aa043e au8522_led_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xb7a2bd77 au8522_release_state -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xc316fc14 au8522_get_state -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xc7a8f5e5 au8522_analog_i2c_gate_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xd7aabe47 au8522_init -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_dig 0x079f3f54 au8522_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/bcm3510 0x88a51d81 bcm3510_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx22700 0x55b63a9e cx22700_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx22702 0x4b07a35d cx22702_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24110 0x4ea670f1 cx24110_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x5a76dcc6 cx24113_agc_callback -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0xfa5c72c7 cx24113_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24116 0x473f8ce4 cx24116_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24120 0x5553f87e cx24120_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x879c5859 cx24123_get_tuner_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x8a2a37c9 cx24123_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2820r 0xa30ef6b3 cxd2820r_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x0795b051 cxd2841er_attach_s -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0xf22c9d72 cxd2841er_attach_t_c -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2880/cxd2880 0x100fa443 cxd2880_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x08cc41b7 dib0070_set_rf_output -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x2e251886 dib0070_ctrl_agc_filter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x57e63672 dib0070_wbd_offset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x5c460f3f dib0070_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xfb3bfc1b dib0070_get_rf_output -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x0efb13ed dib0090_get_tune_state -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x32fd329a dib0090_get_wbd_target -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x7bfa287e dib0090_update_tuning_table_7090 -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x88f6e2d8 dib0090_get_current_gain -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x93e35bd7 dib0090_set_vga -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xa2a2d497 dib0090_set_tune_state -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xac822aee dib0090_register -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xb00ddafb dib0090_set_dc_servo -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xb0778692 dib0090_update_rframp_7090 -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xb6a2ee50 dib0090_pwm_gain_reset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xbe2c19a4 dib0090_fw_register -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xc4a16ac1 dib0090_gain_control -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xc90c93db dib0090_get_wbd_offset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xccfbca47 dib0090_dcc_freq -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xe3f83b46 dib0090_set_switch -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mb 0x67e442c0 dib3000mb_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x0e419bf1 dib3000mc_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x1721c6d1 dib3000mc_i2c_enumeration -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x3491ced0 dib3000mc_pid_parse -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x53ef38a7 dib3000mc_get_tuner_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x562ab7b0 dib3000mc_pid_control -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xcd375231 dib3000mc_set_config -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x1098380d dib7000m_pid_filter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x52067d9a dib7000m_pid_filter_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x8ad5ac4f dib7000m_get_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xb9fc9aba dib7000m_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000p 0x801eba7a dib7000p_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib8000 0x308c7adc dib8000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x0a1c4c4d dib9000_fw_set_component_bus_speed -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x24a84d8f dib9000_i2c_enumeration -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x30dd98fd dib9000_get_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x3e52a3a7 dib9000_fw_pid_filter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x439ae4fb dib9000_set_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x44b91d2e dib9000_get_tuner_interface -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x906a4c0e dib9000_get_slave_frontend -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x90edec4f dib9000_set_gpio -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x929a017f dib9000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xd7bbfe12 dib9000_firmware_post_pll_init -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xe11b7eb0 dib9000_get_component_bus_interface -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xe3c3159a dib9000_set_slave_frontend -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xf869b33c dib9000_fw_pid_filter_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x0e19e7e7 dibx000_init_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x5724f8ac dibx000_get_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x77c3185c dibx000_reset_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x7bb70c21 dibx000_i2c_set_speed -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xf899887e dibx000_exit_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0xb50e60b5 drx39xxj_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/drxd 0xb1823aa5 drxd_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/drxk 0x869ae836 drxk_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ds3000 0x2ef6a50f ds3000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dvb-pll 0xd735ce9a dvb_pll_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x03eeb7b1 dvb_dummy_fe_qam_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x798a8efe dvb_dummy_fe_qpsk_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0xd244aa96 dvb_dummy_fe_ofdm_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ec100 0x70c7e586 ec100_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0x0ea74d22 helene_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0x644b03f0 helene_attach_s -EXPORT_SYMBOL drivers/media/dvb-frontends/horus3a 0xfb619b33 horus3a_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/isl6405 0x3b558716 isl6405_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/isl6421 0x3b888b07 isl6421_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/isl6423 0x46c28008 isl6423_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/itd1000 0x4ac78cc4 itd1000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ix2505v 0x20f93c68 ix2505v_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/l64781 0x7a683758 l64781_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lg2160 0x7fb3e13d lg2160_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3305 0xf3800876 lgdt3305_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3306a 0x4171f56b lgdt3306a_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt330x 0x28c38833 lgdt330x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gl5 0x0c4e2612 lgs8gl5_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gxx 0xfa1f6b0a lgs8gxx_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh25 0x69acc5ed lnbh25_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh29 0x7fc801fb lnbh29_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x854ab8f0 lnbp21_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0xe59fcb9f lnbh24_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp22 0x47691339 lnbp22_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x0264d9c2 m88ds3103_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x40f778a4 m88ds3103_get_agc_pwm -EXPORT_SYMBOL drivers/media/dvb-frontends/m88rs2000 0xc6d2ffec m88rs2000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a16 0x9b4856aa mb86a16_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a20s 0xbc85c8bb mb86a20s_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mt312 0xdd092e21 mt312_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mt352 0xd3e7e318 mt352_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/nxt200x 0x827cb47c nxt200x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/nxt6000 0xd4c7c5e0 nxt6000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/or51132 0x60cfc4a0 or51132_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/or51211 0x3f489c02 or51211_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1409 0xbc30affb s5h1409_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1411 0x16d4b8d3 s5h1411_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x5ee234de s5h1420_get_tuner_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x99db970b s5h1420_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1432 0x1865950f s5h1432_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s921 0x2c72ea32 s921_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/si21xx 0x45ec6fd7 si21xx_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/sp887x 0xe7f72d28 sp887x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stb0899 0xd26c7eb9 stb0899_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stb6000 0xed086eff stb6000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stb6100 0xe317c9f9 stb6100_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0288 0x38a765ac stv0288_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0297 0xbf75b853 stv0297_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0299 0x2dd89520 stv0299_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x0ee49a81 stv0367ddb_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x3e1484bb stv0367ter_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0xbf267ed6 stv0367cab_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0900 0xd1c72fb2 stv0900_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv090x 0x97e878f3 stv090x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110 0x58386336 stv6110_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110x 0x46f978d4 stv6110x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10021 0xea98895a tda10021_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10023 0x561e4b86 tda10023_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10048 0x348e3bff tda10048_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x84b2890b tda10045_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0xbf3f967f tda10046_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10086 0xdda00a59 tda10086_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda665x 0x04b2b863 tda665x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda8083 0x3ab7ced8 tda8083_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda8261 0xa08fbbca tda8261_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda826x 0x8928f6a3 tda826x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ts2020 0x040169a4 ts2020_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tua6100 0x7fc45e1b tua6100_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ves1820 0xa9a01d09 ves1820_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ves1x93 0xa93af3fc ves1x93_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0x2d70c19e zd1301_demod_get_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0x4d3eee71 zd1301_demod_get_dvb_frontend -EXPORT_SYMBOL drivers/media/dvb-frontends/zl10036 0x67e8f87b zl10036_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/zl10039 0xc238fb9b zl10039_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/zl10353 0x60b4e8cc zl10353_attach -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x0b319675 flexcop_dma_free -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x4186ac1d flexcop_dma_allocate -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x458d0207 flexcop_dma_control_size_irq -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x51e56cc6 flexcop_dma_config -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xdd048b4f flexcop_dma_control_timer_irq -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xe8d4c96e flexcop_dma_config_timer -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xe92f652b flexcop_dma_xfer_control -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x83724c1e bt878 -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x981c9e7b bt878_stop -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xbd740ab6 bt878_device_control -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xc1ac92ab bt878_start +EXPORT_SYMBOL drivers/media/dvb-frontends/ascot2e 0x97090dd3 ascot2e_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/atbm8830 0xc5a4da68 atbm8830_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x4fd38ccc au8522_led_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x65226bec au8522_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x698aa7a9 au8522_get_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x6b3390dc au8522_analog_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xbeb84a3c au8522_init +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xcb379865 au8522_readreg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xdfe520f6 au8522_release_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xe1ca1e35 au8522_sleep +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xef820a21 au8522_writereg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_dig 0xbb83f745 au8522_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/bcm3510 0x50d3b47c bcm3510_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22700 0xa9cbd73e cx22700_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22702 0x0a651d4f cx22702_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24110 0xb2db9d51 cx24110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x8258c734 cx24113_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0xb8b8dd3d cx24113_agc_callback +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24116 0x43a5f12d cx24116_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24120 0x4f3e8236 cx24120_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x1370ae5f cx24123_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0xbd08807f cx24123_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2820r 0xa789b89c cxd2820r_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x33526c45 cxd2841er_attach_s +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x53e7e01f cxd2841er_attach_t_c +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2880/cxd2880 0xffc89d67 cxd2880_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x02ffc917 dib0070_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x329a4054 dib0070_ctrl_agc_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x7089676c dib0070_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x8f17c719 dib0070_set_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xa84167da dib0070_get_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x36170572 dib0090_get_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x460122e3 dib0090_update_tuning_table_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x5f426de6 dib0090_set_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x60814418 dib0090_set_dc_servo +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x6c7bbb30 dib0090_set_vga +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x6faf01d8 dib0090_fw_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x70fed0ac dib0090_pwm_gain_reset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x7790c125 dib0090_get_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x7b198d51 dib0090_gain_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x84c4e90a dib0090_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x872ef204 dib0090_update_rframp_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xacd78c16 dib0090_dcc_freq +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xbd625106 dib0090_get_current_gain +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xcb15b711 dib0090_set_switch +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xcb4a8f41 dib0090_get_wbd_target +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mb 0xfdd2b087 dib3000mb_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x3ed3374d dib3000mc_set_config +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x52c4a3be dib3000mc_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x675bfe3a dib3000mc_pid_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x92cc940a dib3000mc_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xbaff3356 dib3000mc_get_tuner_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xe271e737 dib3000mc_pid_parse +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x1ec86a39 dib7000m_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xabd3b679 dib7000m_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xb45808aa dib7000m_pid_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xed6af169 dib7000m_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000p 0x19ca1768 dib7000p_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib8000 0x901d4279 dib8000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x246967c9 dib9000_firmware_post_pll_init +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x3f9a7e80 dib9000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x52ca7266 dib9000_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x54458a50 dib9000_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x6a36c0b5 dib9000_set_slave_frontend +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x79a5c91a dib9000_get_tuner_interface +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x92b5bab6 dib9000_get_component_bus_interface +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x9ecafd04 dib9000_set_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xb8cb9e75 dib9000_fw_pid_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xc30e4842 dib9000_fw_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xd6df4fb1 dib9000_get_slave_frontend +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xdb02b70a dib9000_set_gpio +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xf68d834a dib9000_fw_set_component_bus_speed +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x74f18115 dibx000_reset_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x799ee081 dibx000_init_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x88eb0998 dibx000_get_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x8da22fae dibx000_exit_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xc1203ebd dibx000_i2c_set_speed +EXPORT_SYMBOL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0xe417f525 drx39xxj_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxd 0x2da1cb7d drxd_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxk 0x501b235c drxk_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ds3000 0xd643968e ds3000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb-pll 0x157b3e9c dvb_pll_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x17491f2b dvb_dummy_fe_ofdm_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0xb460b409 dvb_dummy_fe_qam_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0xbc873b43 dvb_dummy_fe_qpsk_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ec100 0x074a3be6 ec100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0x535e8fa6 helene_attach_s +EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0x6e0735d7 helene_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/horus3a 0x289b67d8 horus3a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6405 0x68d54baa isl6405_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6421 0xd22960c2 isl6421_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6423 0x1b8d70e3 isl6423_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/itd1000 0x2c03fe6f itd1000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ix2505v 0xe47b93f8 ix2505v_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/l64781 0x7efed4a1 l64781_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lg2160 0x7ade428f lg2160_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3305 0x5accfdf7 lgdt3305_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3306a 0x4c86ac30 lgdt3306a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt330x 0x7f50d035 lgdt330x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gl5 0xf033cbb2 lgs8gl5_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gxx 0xb704c987 lgs8gxx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh25 0xa31f816f lnbh25_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh29 0x764e090a lnbh29_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x506abdad lnbp21_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0xd6c0476d lnbh24_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp22 0xc4d50176 lnbp22_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x5e0fa098 m88ds3103_get_agc_pwm +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x74d55bf5 m88ds3103_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88rs2000 0xf5702974 m88rs2000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a16 0xecfa65cc mb86a16_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a20s 0x8cc112b7 mb86a20s_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt312 0x17ba6aa3 mt312_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt352 0x5287266d mt352_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt200x 0xf208808c nxt200x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt6000 0xbabc18e3 nxt6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51132 0x10bbf050 or51132_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51211 0xa15217df or51211_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1409 0x46e8a862 s5h1409_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1411 0x7ef2a93e s5h1411_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x6476ecf8 s5h1420_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x8561de2d s5h1420_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1432 0x704384e2 s5h1432_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s921 0xa74d0729 s921_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/si21xx 0x048ed1c5 si21xx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/sp887x 0xd4fb2be2 sp887x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb0899 0x0f6944d2 stb0899_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6000 0x3b8e343f stb6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6100 0x26c006fe stb6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0288 0x996c18c1 stv0288_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0297 0xa1b5c756 stv0297_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0299 0xb13d1859 stv0299_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x49a6b7dd stv0367ter_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x7956a9e7 stv0367ddb_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0xc8944db0 stv0367cab_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0900 0x08202c8f stv0900_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv090x 0x79d461fe stv090x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110 0x99b50ea4 stv6110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110x 0x8c16e078 stv6110x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10021 0xbeb52660 tda10021_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10023 0x65bc9d1e tda10023_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10048 0xa72a756b tda10048_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x1454f624 tda10045_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x2fd9e950 tda10046_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10086 0x1922a5c9 tda10086_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda665x 0xf5520382 tda665x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8083 0xc6ca2378 tda8083_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8261 0xb97ad722 tda8261_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda826x 0xab559f18 tda826x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ts2020 0xd280a2ce ts2020_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tua6100 0xa94204db tua6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1820 0xb7feb04e ves1820_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1x93 0x997e29f0 ves1x93_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0x24b650b4 zd1301_demod_get_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0x3b7966b7 zd1301_demod_get_dvb_frontend +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10036 0x3d4f6242 zl10036_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10039 0x92c1d33b zl10039_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10353 0xe146d7c7 zl10353_attach +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x24f3e758 flexcop_dma_control_timer_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x380d1cc5 flexcop_dma_control_size_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x393c5f07 flexcop_dma_free +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x4638d279 flexcop_dma_xfer_control +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x4d37c4fc flexcop_dma_config +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x503d0b1a flexcop_dma_config_timer +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xa4d74207 flexcop_dma_allocate +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x185f9b05 bt878_start +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x796314d8 bt878_stop +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x7f953c5e bt878 +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xd0f4e84f bt878_device_control EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xd5d0bdef bt878_num EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x11dc4b6d bttv_gpio_enable -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x38a1af15 bttv_sub_register -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x3f280e9d bttv_get_pcidev +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x70a6cf61 bttv_sub_register +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x7fa4df09 bttv_get_pcidev EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x8ecf4acc bttv_write_gpio -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x92f7888e bttv_sub_unregister EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xbcf2d2fb bttv_read_gpio -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x096aba7b dst_wait_dst_ready -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x17ca2611 rdc_reset_state -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x32ff97cd dst_attach -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x35838101 dst_error_recovery -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x383d4cef dst_comm_init -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x42fa2988 dst_pio_disable +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xea470fb6 bttv_sub_unregister +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x22501167 dst_comm_init +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x3364ea1e read_dst EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x43a983fd dst_check_sum -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x87258377 write_dst -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xe2dd44fe read_dst -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xe51de276 dst_error_bailout -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst_ca 0x58a10f7e dst_ca_attach -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x286ddbbe cx18_claim_stream +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x760abaa3 dst_attach +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xa1cee29c dst_pio_disable +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xb039e4c1 dst_error_recovery +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xb7cbcd06 dst_error_bailout +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xdc30aaf3 write_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xf08e6ee7 dst_wait_dst_ready +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xfd247699 rdc_reset_state +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst_ca 0x89a96c61 dst_ca_attach EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2cdea06d cx18_reset_ir_gpio -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x3dded4cd cx18_stop_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x5a49ef25 cx18_ext_init -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x90183e51 cx18_start_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xd5ce8c29 cx18_release_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x688b472c cx18_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x8635b58e cx18_ext_init +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xa31f7d3c cx18_release_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xa35fe654 cx18_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xb8d3f4ea cx18_claim_stream EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0x6ff7510d altera_ci_tuner_reset EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xc46aeddb altera_ci_init EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xdb3faf38 altera_ci_release EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xe66b9812 altera_ci_irq +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x1a04dc72 cx25821_dev_get +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x27fb2409 cx25821_sram_channel_dump_audio EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x44b517f5 cx25821_print_irqbits -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x4e6b2e9d cx25821_riscmem_alloc -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x6a03ce82 cx25821_dev_unregister -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xa9a9e44c cx25821_set_gpiopin_direction -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xce26ddbe cx25821_sram_channel_setup_audio -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xd9de08ac cx25821_risc_databuffer_audio -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xdbaee39b cx25821_sram_channel_dump_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x5671f11e cx25821_set_gpiopin_direction +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x9dd7d4a5 cx25821_sram_channel_setup_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xa0840d5f cx25821_riscmem_alloc +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xd74dd1ca cx25821_dev_unregister EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xe9050411 cx25821_sram_channels -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xebe61e7e cx25821_dev_get -EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x476cc979 vp3054_i2c_probe -EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0xea9599a9 vp3054_i2c_remove -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x1db78bc4 cx88_enum_input -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x3251bbd4 cx88_querycap -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x76f20fdc cx88_set_freq -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xbf888c8e cx88_video_mux -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x45b091c1 cx8802_register_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x588549df cx8802_buf_prepare -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x79f74b21 cx8802_start_dma -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x8baeb870 cx8802_unregister_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xa0fd37a3 cx8802_get_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xb5b0db3c cx8802_cancel_buffers -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xc7d63f25 cx8802_buf_queue -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x01bcbde9 cx88_vdev_init -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x1e56b982 cx88_ir_stop -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x24f97be8 cx88_core_irq -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x30690ffe cx88_get_stereo -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4e8463c0 cx88_core_get +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xf9b03427 cx25821_risc_databuffer_audio +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0xae412e66 vp3054_i2c_probe +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0xb51136e1 vp3054_i2c_remove +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x2a332fff cx88_querycap +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x44cb1bc4 cx88_enum_input +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x6644b1cb cx88_set_freq +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xf7407228 cx88_video_mux +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x003de703 cx8802_cancel_buffers +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x0e4d807b cx8802_register_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x3d5d06a8 cx8802_unregister_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x9d05262a cx8802_buf_prepare +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xcd0dd6b6 cx8802_buf_queue +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xdd01d806 cx8802_start_dma +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xfe6c06cd cx8802_get_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x01202fc8 cx88_set_scale +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x0391a697 cx88_sram_channel_dump +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x05923434 cx88_vdev_init +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x07795647 cx88_ir_start +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x0a92cac9 cx88_risc_buffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x17189b2b cx88_wakeup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x19f64465 cx88_core_irq +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x265913b5 cx88_core_put +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x278b179f cx88_newstation +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x30ccb5be cx88_dsp_detect_stereo_sap +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x33d1ac09 cx88_sram_channel_setup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x5d1ed3bb cx88_set_tvaudio 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 0x61d533ea cx88_reset -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x78acce8b cx88_wakeup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x663d3711 cx88_reset +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6afc7418 cx88_set_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x74123b33 cx88_ir_stop +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x8bf73f5e cx88_core_get EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x8d88137a cx88_sram_channels EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x904b8696 cx88_audio_thread -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x9288e1f6 cx88_risc_databuffer -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x99c0c441 cx88_set_stereo -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xa1a7d477 cx88_sram_channel_dump -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xa4cf91e8 cx88_newstation -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xb922d3f9 cx88_shutdown -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xb95a3b6c cx88_sram_channel_setup -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xbff201d3 cx88_core_put -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xc78f9005 cx88_set_scale -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xefcd8b26 cx88_ir_start -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xf12a804e cx88_dsp_detect_stereo_sap -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xf4e39b9d cx88_set_tvnorm -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xfe40b367 cx88_set_tvaudio -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xfeabdd51 cx88_risc_buffer -EXPORT_SYMBOL drivers/media/pci/ddbridge/ddbridge-dummy-fe 0x328f798b ddbridge_dummy_fe_qam_attach -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x0456dc30 ivtv_ext_init -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x0bae72a1 ivtv_reset_ir_gpio -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x12db2f17 ivtv_udma_alloc +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xae67f9da cx88_set_tvnorm +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xd0ce327c cx88_risc_databuffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xf25451e7 cx88_get_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xfbda48ae cx88_shutdown +EXPORT_SYMBOL drivers/media/pci/ddbridge/ddbridge-dummy-fe 0x40a29b45 ddbridge_dummy_fe_qam_attach EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x14f67530 ivtv_debug -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x290ff73c ivtv_init_on_first_open -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x2ba25a79 ivtv_claim_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x3ec8594c ivtv_udma_unmap -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x501e4760 ivtv_start_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x7065c7e5 ivtv_udma_setup -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x9736231a ivtv_vapi -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xa35e4988 ivtv_set_irq_mask -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xacb2aefe ivtv_clear_irq_mask -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xc780fa3a ivtv_release_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xc910eae6 ivtv_vapi_result -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xc9158cc3 ivtv_udma_prepare -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xd4a9a343 ivtv_api -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xf5594c98 ivtv_stop_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xff464f6e ivtv_firmware_check +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x1708cabb ivtv_udma_prepare +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x1bc9b8ec ivtv_release_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x1edb3009 ivtv_udma_setup +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x36e8d1b2 ivtv_udma_unmap +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x435335ad ivtv_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x86a38d86 ivtv_api +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x89bab5bf ivtv_init_on_first_open +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x8b9e95ae ivtv_clear_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x95436c4a ivtv_firmware_check +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xb0e0facb ivtv_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xb9362777 ivtv_vapi_result +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xbbe1c17b ivtv_udma_alloc +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xd4708b9d ivtv_set_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xd63acabf ivtv_vapi +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xe2ddc7c1 ivtv_ext_init +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xf8c1306b ivtv_claim_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xf9c68acc ivtv_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x004de586 saa7134_set_dmabits EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x04e83446 saa7134_tuner_callback -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x076d4722 saa7134_dmasound_exit EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x1211df5d saa7134_devlist -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x369e8708 saa7134_tvaudio_setmute -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x5427eb38 saa7134_set_gpio -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x71f65605 saa7134_ts_register +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x416ac955 saa7134_ts_register +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x5ecf8899 saa7134_dmasound_init EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x730c4be3 saa7134_boards EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x7f68c76e saa7134_devlist_lock -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xa3041b56 saa7134_pgtable_build -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xa84973d2 saa7134_pgtable_alloc -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xba3185ff saa7134_set_dmabits -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xd1891f9b saa_dsp_writel -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xd406f93e saa7134_ts_unregister -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xe074570e saa7134_pgtable_free -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xf8586dbf saa7134_dmasound_init -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-csc 0x482c47a9 csc_dump_regs -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-csc 0xc61b4201 csc_set_coeff_bypass -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-csc 0xe191461c csc_set_coeff -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-csc 0xf70fdc88 csc_create -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-sc 0x3582e526 sc_set_vs_coeffs -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-sc 0x5bdb9e5c sc_set_hs_coeffs -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-sc 0x75a297a1 sc_create -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-sc 0xce60d214 sc_dump_regs -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-sc 0xebbcddbf sc_config_scaler -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x0198b4fe vpdma_unmap_desc_buf -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x01afc021 vpdma_set_bg_color +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x8abc818a saa_dsp_writel +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x8bb10e92 saa7134_dmasound_exit +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x954f08ce saa7134_ts_unregister +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x9ac3ec9a saa7134_pgtable_build +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xad9d1569 saa7134_set_gpio +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xba4aae5b saa7134_tvaudio_setmute +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xccd8f83a saa7134_pgtable_free +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xfb53db4e saa7134_pgtable_alloc +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-csc 0x3b15e74d csc_set_coeff +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-csc 0x56986441 csc_create +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-csc 0x5c5d5eff csc_dump_regs +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-csc 0x7314635b csc_set_coeff_bypass +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-sc 0x154f3f95 sc_set_vs_coeffs +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-sc 0x26161045 sc_create +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-sc 0xb687277f sc_dump_regs +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-sc 0xc4684e29 sc_set_hs_coeffs +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-sc 0xd65d071b sc_config_scaler EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x07464bcf vpdma_add_cfd_block +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x0b2c9716 vpdma_set_bg_color +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x170857de vpdma_enable_list_complete_irq EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x1e26321d vpdma_misc_fmts EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x1ee5d41c vpdma_add_in_dtd -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x30228240 vpdma_set_max_size +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x1f2c93da vpdma_get_list_mask +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x1ff667d3 vpdma_hwlist_get_priv +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x2917a0a4 vpdma_set_line_mode +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x2a16669c vpdma_set_frame_start_event EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x3269c1e2 vpdma_add_sync_on_channel_ctd -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x3310ef69 vpdma_dump_regs +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x396f0c7f vpdma_hwlist_release EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x3b3f4afb vpdma_create_desc_list EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x49293b26 vpdma_yuv_fmts +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x4d6c9460 vpdma_update_dma_addr EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x50ec40af vpdma_rgb_fmts -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x53dfcd5d vpdma_get_list_mask +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x55fd6611 vpdma_set_max_size +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x5ea0794b vpdma_submit_descs EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x60708dc6 vpdma_raw_fmts +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x682088dd vpdma_unmap_desc_buf EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x6ea95e2f vpdma_free_desc_buf -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x7150f57f vpdma_submit_descs EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x73ae3d42 vpdma_add_cfd_adb -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x7950417c vpdma_get_list_stat -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x85912a87 vpdma_hwlist_release -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x95643176 vpdma_set_line_mode -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x9ca227e3 vpdma_hwlist_get_priv +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x8bd89b3f vpdma_list_cleanup +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x8eea7ccc vpdma_map_desc_buf +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x9988e354 vpdma_clear_list_stat EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x9de56bd8 vpdma_add_abort_channel_ctd EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x9ece601a vpdma_free_desc_list -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0xa15741b5 vpdma_set_frame_start_event -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0xb874f738 vpdma_update_dma_addr -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0xb8a5c8ce vpdma_list_busy -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0xbfb5b430 vpdma_map_desc_buf -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0xc161ca8a vpdma_create +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0xc462bb9b vpdma_list_busy +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0xc60ecc95 vpdma_create EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0xcc78bec4 vpdma_rawchan_add_out_dtd -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0xce4059fc vpdma_hwlist_alloc EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0xd0aeae6a vpdma_add_out_dtd -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0xd4e70a60 vpdma_clear_list_stat -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0xe23efead vpdma_enable_list_complete_irq +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0xd33e5c80 vpdma_get_list_stat +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0xdc208f65 vpdma_dump_regs +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0xea7e541d vpdma_hwlist_alloc EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0xebbec4fb vpdma_alloc_desc_buf -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0xeff7222f vpdma_list_cleanup EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0xf82483c6 vpdma_reset_desc_list -EXPORT_SYMBOL drivers/media/radio/tea575x 0x193db9dc snd_tea575x_init -EXPORT_SYMBOL drivers/media/radio/tea575x 0x2eacc203 snd_tea575x_enum_freq_bands -EXPORT_SYMBOL drivers/media/radio/tea575x 0x5d9b0ff0 snd_tea575x_g_tuner -EXPORT_SYMBOL drivers/media/radio/tea575x 0x6093ca6e snd_tea575x_exit -EXPORT_SYMBOL drivers/media/radio/tea575x 0x91b5af59 snd_tea575x_hw_init -EXPORT_SYMBOL drivers/media/radio/tea575x 0xa6759f14 snd_tea575x_s_hw_freq_seek -EXPORT_SYMBOL drivers/media/radio/tea575x 0xfff34993 snd_tea575x_set_freq -EXPORT_SYMBOL drivers/media/rc/rc-core 0x109c888d ir_raw_handler_unregister +EXPORT_SYMBOL drivers/media/radio/tea575x 0x5b054501 snd_tea575x_enum_freq_bands +EXPORT_SYMBOL drivers/media/radio/tea575x 0x5ec8912a snd_tea575x_hw_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0x66f93e37 snd_tea575x_s_hw_freq_seek +EXPORT_SYMBOL drivers/media/radio/tea575x 0x70ef1cd0 snd_tea575x_set_freq +EXPORT_SYMBOL drivers/media/radio/tea575x 0x7a8ea902 snd_tea575x_g_tuner +EXPORT_SYMBOL drivers/media/radio/tea575x 0x8f8c3405 snd_tea575x_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0xfa299141 snd_tea575x_exit +EXPORT_SYMBOL drivers/media/rc/rc-core 0x08cc2284 ir_raw_handler_unregister EXPORT_SYMBOL drivers/media/rc/rc-core 0x2ad91f6e ir_raw_gen_pl EXPORT_SYMBOL drivers/media/rc/rc-core 0x7cf52901 ir_raw_gen_manchester +EXPORT_SYMBOL drivers/media/rc/rc-core 0x880f92f2 ir_raw_handler_register EXPORT_SYMBOL drivers/media/rc/rc-core 0x9e12e343 ir_raw_gen_pd EXPORT_SYMBOL drivers/media/rc/rc-core 0xb5516017 ir_raw_encode_carrier -EXPORT_SYMBOL drivers/media/rc/rc-core 0xe0766d08 ir_raw_handler_register EXPORT_SYMBOL drivers/media/rc/rc-core 0xf446074f ir_raw_encode_scancode -EXPORT_SYMBOL drivers/media/tuners/fc0011 0x11611fab fc0011_attach -EXPORT_SYMBOL drivers/media/tuners/fc0012 0x0dafe319 fc0012_attach -EXPORT_SYMBOL drivers/media/tuners/fc0013 0xb51ae6e9 fc0013_rc_cal_reset -EXPORT_SYMBOL drivers/media/tuners/fc0013 0xed88aee2 fc0013_attach -EXPORT_SYMBOL drivers/media/tuners/fc0013 0xeddc49ed fc0013_rc_cal_add -EXPORT_SYMBOL drivers/media/tuners/max2165 0xa76614b5 max2165_attach -EXPORT_SYMBOL drivers/media/tuners/mc44s803 0xa79fb6e9 mc44s803_attach -EXPORT_SYMBOL drivers/media/tuners/mt2060 0x561d7bc4 mt2060_attach -EXPORT_SYMBOL drivers/media/tuners/mt2131 0x4b81e9cc mt2131_attach -EXPORT_SYMBOL drivers/media/tuners/mt2266 0xe60b1b95 mt2266_attach -EXPORT_SYMBOL drivers/media/tuners/mxl5005s 0xb8ad1177 mxl5005s_attach -EXPORT_SYMBOL drivers/media/tuners/qt1010 0x4b1d4891 qt1010_attach -EXPORT_SYMBOL drivers/media/tuners/tda18218 0x1d13ac44 tda18218_attach +EXPORT_SYMBOL drivers/media/tuners/fc0011 0xd739ebb6 fc0011_attach +EXPORT_SYMBOL drivers/media/tuners/fc0012 0x1f6bd4fd fc0012_attach +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x1ee5c515 fc0013_rc_cal_add +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x5b24f22b fc0013_rc_cal_reset +EXPORT_SYMBOL drivers/media/tuners/fc0013 0xd880cb9e fc0013_attach +EXPORT_SYMBOL drivers/media/tuners/max2165 0x5643f15a max2165_attach +EXPORT_SYMBOL drivers/media/tuners/mc44s803 0xae19be18 mc44s803_attach +EXPORT_SYMBOL drivers/media/tuners/mt2060 0x72d1dcd7 mt2060_attach +EXPORT_SYMBOL drivers/media/tuners/mt2131 0x6f4d4edf mt2131_attach +EXPORT_SYMBOL drivers/media/tuners/mt2266 0x78956629 mt2266_attach +EXPORT_SYMBOL drivers/media/tuners/mxl5005s 0x6e2cda1d mxl5005s_attach +EXPORT_SYMBOL drivers/media/tuners/qt1010 0xd583352d qt1010_attach +EXPORT_SYMBOL drivers/media/tuners/tda18218 0xdc9ec1d6 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/tuner-xc2028 0xad3c36a6 xc2028_attach -EXPORT_SYMBOL drivers/media/tuners/xc4000 0x9cf20138 xc4000_attach -EXPORT_SYMBOL drivers/media/tuners/xc5000 0xcc85b2cc xc5000_attach -EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x0b02aeb4 cx231xx_unregister_extension -EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x86927795 cx231xx_register_extension -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x0d97e424 dvb_usbv2_suspend -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x28ba728d dvb_usbv2_probe -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x48fdbb91 dvb_usbv2_resume -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x4f647641 dvb_usbv2_reset_resume -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x5c81f75b dvb_usbv2_disconnect -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xa6770d70 dvb_usbv2_generic_write -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xaba258b0 dvb_usbv2_generic_rw -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xbba5b525 dvb_usbv2_generic_write_locked -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xc10d0047 dvb_usbv2_generic_rw_locked -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x1a119921 dvb_usb_device_init -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x21e6609c dvb_usb_device_exit -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x3b2429fe dvb_usb_generic_write -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x601009d1 usb_cypress_load_firmware +EXPORT_SYMBOL drivers/media/tuners/tuner-xc2028 0x58f25451 xc2028_attach +EXPORT_SYMBOL drivers/media/tuners/xc4000 0xf4d410d5 xc4000_attach +EXPORT_SYMBOL drivers/media/tuners/xc5000 0xd03ffbea xc5000_attach +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x64d45a58 cx231xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x6c973762 cx231xx_register_extension +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x0fa26020 dvb_usbv2_generic_write_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x5c5bc0ba dvb_usbv2_disconnect +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x5f3e165d dvb_usbv2_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x62d7bcfe dvb_usbv2_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x77a15dea dvb_usbv2_generic_rw_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xa755bf0b dvb_usbv2_reset_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xe2f3ccbf dvb_usbv2_suspend +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xe4868949 dvb_usbv2_probe +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xf7f55e6e dvb_usbv2_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x15151796 dvb_usb_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x60f2808d dvb_usb_nec_rc_key_to_event EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x65d933e3 dvb_usb_get_hexline -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xb2d100f8 dvb_usb_generic_rw -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xf9f122bd dvb_usb_nec_rc_key_to_event +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x95f5046f dvb_usb_device_exit +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xa92e9747 dvb_usb_device_init +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xebb897bd usb_cypress_load_firmware +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xfef6e646 dvb_usb_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x2b94d8aa af9005_rc_decode EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x341530cb rc_map_af9005_table -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0xb1bd74c6 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 0x2a0eb2fc dibusb_pid_filter -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x2e78edcd dibusb_streaming_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x32bd11df dibusb_pid_filter_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x60f899e1 dibusb_power_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x68f88561 dibusb_rc_query +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x4b63a79a dibusb_read_eeprom_byte +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x7f32221c dibusb_rc_query +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x908184a5 dibusb_pid_filter +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x92e5e038 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 0xa0393420 dibusb_read_eeprom_byte -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xb7d12c18 dibusb2_0_power_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xb8154ffe dibusb2_0_streaming_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xfaf6b82f dibusb_i2c_algo -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0x6274ab44 dibusb_dib3000mc_tuner_attach -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0xb8fa45fd dibusb_dib3000mc_frontend_attach -EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x8c75c34b em28xx_unregister_extension -EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x9d2fe904 em28xx_register_extension -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x3a364afc go7007_register_encoder -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x3d8d4ae2 go7007_snd_remove -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x4370fb85 go7007_update_board -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x4e279fe9 go7007_parse_video_stream -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x6f2c850e go7007_boot_encoder -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x75f1e6ad go7007_read_interrupt -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x9c78111d go7007_snd_init -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xbe279d4f go7007_read_addr -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xe40a4264 go7007_alloc -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x13852647 gspca_suspend -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x2b673ace gspca_resume -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x54f29cc3 gspca_dev_probe2 -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x5b2455e4 gspca_disconnect -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x8450b462 gspca_coarse_grained_expo_autogain +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xc590e82d dibusb_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xd519b2a7 dibusb_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xf1997bc4 dibusb2_0_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xf5402dad dibusb_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xfa24843b dibusb2_0_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0x03321f79 dibusb_dib3000mc_tuner_attach +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0x14a844e8 dibusb_dib3000mc_frontend_attach +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x39c8da40 em28xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0xaa1fb9fa em28xx_register_extension +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x11fce8e7 go7007_snd_init +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x1785c5d1 go7007_boot_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x1a051976 go7007_read_interrupt +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x1f124f7b go7007_read_addr +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x4d3abb34 go7007_snd_remove +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x92fb7724 go7007_parse_video_stream +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x983990d5 go7007_update_board +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xc7447191 go7007_alloc +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xcbf22c18 go7007_register_encoder +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x15ba9acc gspca_frame_add +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x388ec94c gspca_coarse_grained_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x45bb0218 gspca_dev_probe +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x516a323e gspca_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x78bf6477 gspca_resume EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9670af2c gspca_debug -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9b74a6b7 gspca_frame_add -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xa372fb2a gspca_expo_autogain -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xd6df4816 gspca_dev_probe -EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x813950df tm6000_init_digital_mode -EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x84955c6e tm6000_register_extension -EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0xf677b926 tm6000_unregister_extension -EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x11aafd8d ttusbdecfe_dvbs_attach -EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x3a6dfc47 ttusbdecfe_dvbt_attach -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x280d6b35 v4l2_async_unregister_subdev -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x357d9f45 v4l2_async_notifier_unregister -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x8431e4be v4l2_async_register_subdev -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x8a273191 v4l2_async_notifier_register -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x96db8ef3 v4l2_async_subdev_notifier_register -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xc64a009d v4l2_async_notifier_init -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x05aeced8 v4l2_m2m_job_finish -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x38118245 v4l2_m2m_buf_done_and_job_finish +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xb3469bac gspca_suspend +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xd2647a4f gspca_disconnect +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xee5e828d gspca_dev_probe2 +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x0aa5ff31 tm6000_init_digital_mode +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x19902af4 tm6000_unregister_extension +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x2ee9f9da tm6000_register_extension +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0xca02385f ttusbdecfe_dvbt_attach +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0xe1c53995 ttusbdecfe_dvbs_attach +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x5c086777 v4l2_async_unregister_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x5defaf31 v4l2_async_subdev_notifier_register +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x7056df63 v4l2_async_notifier_init +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x7762ce90 v4l2_async_register_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xb525783b v4l2_async_notifier_register +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xeb86ac3a v4l2_async_notifier_unregister 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 0x7c57cf48 v4l2_m2m_mmap -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xefa1483a v4l2_m2m_get_vq +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x5d18a6d9 v4l2_m2m_job_finish +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xc054c1ee v4l2_m2m_get_vq +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xcd0c65e6 v4l2_m2m_mmap +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xf33057fa v4l2_m2m_buf_done_and_job_finish EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xf626dd03 v4l2_m2m_suspend EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0614dd5a v4l2_video_std_frame_period -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x06fc3a39 v4l2_ctrl_handler_log_status EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x082737e8 v4l2_ctrl_merge -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0dfbfe48 v4l2_ctrl_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x11c9cd5b v4l2_queryctrl EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x123959a1 v4l2_type_names -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x14ec65c0 v4l2_ctrl_new_fwnode_properties EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x16244fe5 v4l2_prio_check -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1aab3197 v4l2_subdev_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1891b40c v4l2_ctrl_g_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1f0dad42 v4l2_ctrl_request_complete +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1fac5919 v4l2_ctrl_add_handler EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2342f1ae v4l2_prio_open -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x25b35760 v4l2_s_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2642d28f v4l2_try_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x270039aa v4l2_ctrl_find -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x27218647 video_device_release_empty -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x27df0842 __v4l2_ctrl_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x23ed7d3f v4l2_ctrl_auto_cluster EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x28b12cc9 v4l2_format_info -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x291f74e6 v4l2_query_ext_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x299d79ba v4l2_ctrl_radio_filter +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x30b1c67b v4l2_ctrl_handler_init_class EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x315de2cf v4l2_ctrl_get_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x329787a6 video_devdata EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x32d43420 v4l2_ctrl_get_name -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x37ee0be3 v4l2_ctrl_request_complete +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x33621703 v4l2_ctrl_find EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3adbd595 v4l2_field_names EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3bdd0f94 v4l2_prio_change -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x412cff3f v4l2_ctrl_new_custom -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x485bb0ac __v4l2_ctrl_s_ctrl_int64 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x49ff2ff9 __v4l2_ctrl_s_ctrl_compound -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4a5cb121 v4l2_queryctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4bb0063f v4l2_ctrl_handler_init_class -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4ca2252c __v4l2_ctrl_s_ctrl_string -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x545da147 v4l2_ctrl_handler_setup -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x55b7b067 v4l2_ctrl_sub_ev_ops -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x60b597a3 v4l2_g_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6f696fc8 v4l2_ctrl_request_setup -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x718a2450 v4l2_ctrl_g_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7c317d78 v4l2_ctrl_handler_free +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4163300e v4l2_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x42aee83f video_device_release +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5edcea4b v4l2_ctrl_subdev_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x65f5f627 v4l2_ctrl_notify +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x69c57f1c __v4l2_ctrl_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6dbf1805 v4l2_ctrl_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6f474927 __video_register_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x72291cd6 v4l2_subdev_call_wrappers +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x74bb10a8 v4l2_ctrl_new_fwnode_properties +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7bdf107c v4l2_ctrl_new_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7f89cb02 video_device_alloc EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8106095a v4l2_prio_max -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x820f5ec8 video_ioctl2 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x82e3c3a2 v4l2_ctrl_activate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x86316565 __v4l2_ctrl_s_ctrl_compound EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x89e3897d v4l2_ctrl_query_fill -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8a2dcfad video_device_release -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8c3aa2aa video_device_alloc -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8c6de78f v4l2_ctrl_add_handler -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8ca02283 v4l2_ctrl_activate -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x90066665 v4l2_ctrl_g_ctrl_int64 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9200ffff v4l2_ctrl_notify -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x94444edb __v4l2_ctrl_grab -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x99d5c268 v4l2_ctrl_subdev_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x99fdc10d v4l2_ctrl_cluster -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb461f957 __video_register_device -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb4714eeb v4l2_s_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb65d7643 video_unregister_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8c29725b v4l2_g_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8d8c17df v4l2_ctrl_subdev_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8f577105 v4l2_ctrl_handler_setup +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x901b166c v4l2_ctrl_new_std +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x959a0c57 video_unregister_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9c6e05a6 __v4l2_ctrl_s_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa2cc2275 v4l2_s_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa4bdee18 v4l2_ctrl_handler_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xad1e7cf9 v4l2_query_ext_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb1fc6287 v4l2_ctrl_new_std_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb33163d2 v4l2_ctrl_log_status EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb77b0159 v4l2_prio_init -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb8760077 video_devdata -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xba1677bf v4l2_g_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbc481bbd v4l2_subdev_call_wrappers +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb9bb3970 v4l2_ctrl_new_custom +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbb9fc402 v4l2_ctrl_cluster EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbc5671dc v4l_printk_ioctl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc37e864b v4l2_ctrl_new_std_compound -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc4d3ab0b v4l2_ctrl_new_std -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc5ec0c1e v4l2_ctrl_new_std_menu_items +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbff7bfc2 v4l2_querymenu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc5a88094 v4l2_ctrl_radio_filter +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc9e0ce45 __v4l2_ctrl_grab +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcd36e274 v4l2_g_ctrl EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcda04a5b v4l2_prio_close EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd16d9c01 v4l2_ctrl_get_int_menu EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdc7e0128 v4l2_ctrl_fill +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdc82bc67 v4l2_ctrl_new_std_menu_items +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xddf44a66 __v4l2_ctrl_s_ctrl_string EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2b92059 v4l2_video_std_construct -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe39d6957 v4l2_ctrl_new_std_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe8731fe2 v4l2_ctrl_subscribe_event -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe8d93254 v4l2_ctrl_poll -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xeffe3224 v4l2_ctrl_subdev_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe5c5f703 v4l2_ctrl_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe5e95159 video_device_release_empty +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xedc4e2c5 v4l2_ctrl_sub_ev_ops +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xefe71efc video_ioctl2 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf12ae940 v4l2_ctrl_new_std_compound +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf15c71f6 v4l2_ctrl_request_setup EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf3251e7b v4l2_norm_to_name -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf3c06c5e v4l2_querymenu EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf50fecbc v4l2_ctrl_replace -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf897bae4 v4l2_ctrl_auto_cluster -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf9981e60 __v4l2_ctrl_modify_range -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfebe72ce v4l2_ctrl_new_int_menu -EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0x10559f5a rpcif_prepare -EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0x287dd0bc rpcif_manual_xfer -EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0x43ac583d rpcif_dirmap_read -EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0x87ff4aaf rpcif_hw_init -EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0xed614b67 rpcif_sw_init -EXPORT_SYMBOL drivers/memstick/core/memstick 0x1bba9c10 memstick_resume_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x2cd55f96 memstick_new_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0x3aab3445 memstick_register_driver -EXPORT_SYMBOL drivers/memstick/core/memstick 0x3f044e5d memstick_remove_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x3fe16a35 memstick_set_rw_addr -EXPORT_SYMBOL drivers/memstick/core/memstick 0x464d81a0 memstick_suspend_host +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf694a5fe v4l2_ctrl_handler_free +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf6a96644 v4l2_subdev_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfea6041f v4l2_try_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xff03c8ba __v4l2_ctrl_modify_range +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xff4f687e v4l2_ctrl_poll +EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0x4c10e3ee rpcif_sw_init +EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0x63360a87 rpcif_dirmap_read +EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0x95fdbfaa rpcif_prepare +EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0xb2415e46 rpcif_manual_xfer +EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0xc94dee83 rpcif_hw_init +EXPORT_SYMBOL drivers/memstick/core/memstick 0x13562438 memstick_free_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x1712b951 memstick_register_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0x1be0b214 memstick_alloc_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x1d59cef7 memstick_new_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0x1fd177f0 memstick_set_rw_addr +EXPORT_SYMBOL drivers/memstick/core/memstick 0x2c590e83 memstick_resume_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x308a4b8e memstick_add_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x33f60777 memstick_detect_change EXPORT_SYMBOL drivers/memstick/core/memstick 0x4a4e5778 memstick_init_req_sg EXPORT_SYMBOL drivers/memstick/core/memstick 0x51cb13f8 memstick_init_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0xbbafae94 memstick_unregister_driver -EXPORT_SYMBOL drivers/memstick/core/memstick 0xc1b47842 memstick_detect_change -EXPORT_SYMBOL drivers/memstick/core/memstick 0xc72e69ba memstick_free_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0xed06ce3f memstick_alloc_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0xfda24106 memstick_add_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0xffa21a8c memstick_next_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0x81f7c8ea memstick_next_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0xb877572e memstick_suspend_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xe29f4953 memstick_remove_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xf4932742 memstick_unregister_driver EXPORT_SYMBOL drivers/memstick/host/r592 0x52f1b23b memstick_debug_get_tpc_name -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0966fed7 mpt_event_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0f428695 mpt_raid_phys_disk_pg0 -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1495699a mpt_alloc_fw_memory -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1aa0b7c9 mpt_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x23c2bc88 mpt_set_taskmgmt_in_progress_flag -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2aaaee16 mpt_free_fw_memory -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2f475744 mpt_attach -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x3027a92c mpt_send_handshake_request -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x31936d5f mpt_reset_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x3e63bee1 mpt_detach -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x408c5b12 mptbase_sas_persist_operation -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x46c592e4 mpt_halt_firmware -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4bf5fad5 mpt_print_ioc_summary +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1c650779 mpt_resume +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1dc4445b mpt_send_handshake_request +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x24ddfa98 mpt_put_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x271f8216 mpt_HardResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x33110dab mpt_get_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4ae4ef64 mpt_raid_phys_disk_pg1 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4c4e4b91 mpt_Soft_Hard_ResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4dee2e08 mpt_attach EXPORT_SYMBOL drivers/message/fusion/mptbase 0x502108d0 mpt_fwfault_debug -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x5ad789be mpt_suspend -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x603ceb1f mpt_GetIocState +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x59140495 mpt_print_ioc_summary EXPORT_SYMBOL drivers/message/fusion/mptbase 0x610b257e mpt_reset_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x6ae27325 mpt_event_register EXPORT_SYMBOL drivers/message/fusion/mptbase 0x74a0134a mpt_device_driver_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x92684431 mpt_HardResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7e074194 mpt_free_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x82c5e851 mpt_verify_adapter +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x8345cb75 mpt_free_fw_memory EXPORT_SYMBOL drivers/message/fusion/mptbase 0x981efe92 mpt_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x99878954 mpt_verify_adapter -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x9b66c5af mpt_raid_phys_disk_pg1 -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xaf6f6277 mpt_findImVolumes -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb18ea5b8 mpt_config -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc42fa834 mpt_free_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc5e31b9e mpt_clear_taskmgmt_in_progress_flag -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xcfbcf18d mpt_device_driver_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd2ac6fad mpt_Soft_Hard_ResetHandler -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd3db6d88 mpt_put_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd6dbea1a mpt_raid_phys_disk_get_num_paths -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd74ef5b3 mpt_get_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa05e72a7 mpt_halt_firmware +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xab061473 mpt_detach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xad65507f mpt_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb8ab0a8c mpt_set_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xbbdde40e mpt_clear_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xbd43d607 mpt_raid_phys_disk_pg0 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xcb2f809b mpt_put_msg_frame_hi_pri +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xcc1e3de7 mpt_device_driver_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xcdecfd0d mpt_GetIocState +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd1929e55 mpt_findImVolumes +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd4e1c93b mpt_raid_phys_disk_get_num_paths +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdad7470c mptbase_sas_persist_operation +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdad7a632 mpt_reset_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdb25176e mpt_suspend EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdd805159 ioc_list EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe6c1e126 mpt_event_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe7077064 mpt_resume -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xef711cf5 mpt_put_msg_frame_hi_pri -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x06866129 mptscsih_info -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x0a94fb1f mptscsih_taskmgmt_complete -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x0e20f3f7 mptscsih_show_info -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x17017b05 mptscsih_raid_id_to_num -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x17545985 mptscsih_remove -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x1ba29f27 mptscsih_suspend -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x236f91fb mptscsih_bios_param -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x2c6d787b mptscsih_abort -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x30fa200d mptscsih_get_scsi_lookup -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x5191bb2a mptscsih_bus_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x51ca5ffd mptscsih_scandv_complete -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x76429cc2 mptscsih_event_process -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x89065a5c mptscsih_dev_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x8ad2b8f1 mptscsih_taskmgmt_response_code -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x8c7195e8 mptscsih_host_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x8f0ac214 mptscsih_qcmd -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x8f309d98 mptscsih_shutdown -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x9e73d242 mptscsih_slave_destroy -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa21c4429 mptscsih_is_phys_disk -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xbb0bc7c5 mptscsih_IssueTaskMgmt -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xbbc8bc4e mptscsih_ioc_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc641673d mptscsih_change_queue_depth -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xccf314c5 mptscsih_flush_running_cmds -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd262c6fd mptscsih_host_attrs -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe4f587c5 mptscsih_io_done -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xeb4d4c39 mptscsih_resume -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf0afafd0 mptscsih_slave_configure -EXPORT_SYMBOL drivers/mfd/axp20x 0x09902cd9 axp20x_match_device -EXPORT_SYMBOL drivers/mfd/axp20x 0x44351227 axp20x_device_remove -EXPORT_SYMBOL drivers/mfd/axp20x 0x5f064609 axp20x_device_probe -EXPORT_SYMBOL drivers/mfd/dln2 0x5a1cf55c dln2_register_event_cb -EXPORT_SYMBOL drivers/mfd/dln2 0xf3ce0ec7 dln2_transfer -EXPORT_SYMBOL drivers/mfd/dln2 0xfb35e6a4 dln2_unregister_event_cb -EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x830f60a8 pasic3_read_register -EXPORT_SYMBOL drivers/mfd/htc-pasic3 0xe51c5cdf pasic3_write_register -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x198403a5 mc13xxx_reg_read -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x39e1f247 mc13xxx_irq_mask -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x4a9bcef1 mc13xxx_irq_free -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x8d9a4c27 mc13xxx_reg_write -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x909f5c59 mc13xxx_get_flags -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xb996a5b8 mc13xxx_lock -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xba3c2ba2 mc13xxx_irq_request -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xc42a2491 mc13xxx_irq_status -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xda0df74e mc13xxx_irq_unmask -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xda253aa5 mc13xxx_reg_rmw -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xf89a17e8 mc13xxx_unlock +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf35406dc mpt_alloc_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xfd3aa77b mpt_config +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x0952b1bc mptscsih_change_queue_depth +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x19be7337 mptscsih_slave_configure +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x35c09c88 mptscsih_flush_running_cmds +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3767fcdf mptscsih_show_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3d1e07bc mptscsih_shutdown +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x41921d21 mptscsih_is_phys_disk +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x459760d5 mptscsih_get_scsi_lookup +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x4832c20e mptscsih_resume +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x4a0093df mptscsih_host_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x4be2f012 mptscsih_host_attrs +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x5cc87fef mptscsih_remove +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x638917f5 mptscsih_taskmgmt_response_code +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x653d66a8 mptscsih_IssueTaskMgmt +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x6d19a227 mptscsih_bus_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x76636482 mptscsih_slave_destroy +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7cdee8a3 mptscsih_abort +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x99d18f9c mptscsih_bios_param +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa4160787 mptscsih_taskmgmt_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xac762e5e mptscsih_dev_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc34702d2 mptscsih_raid_id_to_num +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc5b455f5 mptscsih_suspend +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xcfbfea03 mptscsih_qcmd +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xdc785234 mptscsih_event_process +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xdd112aaa mptscsih_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xdd713247 mptscsih_ioc_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xebe56a18 mptscsih_scandv_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xefaf5ab2 mptscsih_io_done +EXPORT_SYMBOL drivers/mfd/axp20x 0x6409f549 axp20x_device_remove +EXPORT_SYMBOL drivers/mfd/axp20x 0xc542e7b7 axp20x_match_device +EXPORT_SYMBOL drivers/mfd/axp20x 0xf535aa43 axp20x_device_probe +EXPORT_SYMBOL drivers/mfd/dln2 0x3d85e887 dln2_unregister_event_cb +EXPORT_SYMBOL drivers/mfd/dln2 0x55572638 dln2_register_event_cb +EXPORT_SYMBOL drivers/mfd/dln2 0x57c3ab14 dln2_transfer +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x5e7cb2f4 pasic3_write_register +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x68dc7bc1 pasic3_read_register +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x03f120eb mc13xxx_irq_free +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x23e5a619 mc13xxx_irq_mask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x25ab2f34 mc13xxx_lock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x2784e2d3 mc13xxx_reg_rmw +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x28c96eab mc13xxx_irq_unmask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x7a87bc22 mc13xxx_irq_status +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x7ad55588 mc13xxx_get_flags +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x96023389 mc13xxx_reg_write +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xab7c88b1 mc13xxx_irq_request +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xaf2375f6 mc13xxx_unlock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xf4d29c11 mc13xxx_reg_read EXPORT_SYMBOL drivers/mfd/qcom_rpm 0x832aed94 qcom_rpm_write EXPORT_SYMBOL drivers/mfd/tps65010 0x02d4ad0f tps65013_set_low_pwr EXPORT_SYMBOL drivers/mfd/tps65010 0x0c6ad2cf tps65010_config_vdcdc2 @@ -2399,495 +2399,494 @@ 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 0x3a0dd89e wm1811_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994 0x3a41f3c5 wm8994_base_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994 0x7a6ca0bb wm8994_irq_init -EXPORT_SYMBOL drivers/mfd/wm8994 0x9755612a wm8994_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994 0xa56fdab3 wm8958_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994 0xc6facb1d wm8994_irq_exit -EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x0bbfe2f3 ad_dpot_probe -EXPORT_SYMBOL drivers/misc/ad525x_dpot 0xdcd45993 ad_dpot_remove +EXPORT_SYMBOL drivers/mfd/wm8994 0x5e26dbdb wm8994_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0x6c1c6042 wm8958_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0x71559ed8 wm8994_base_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0xc3338e9e wm8994_irq_exit +EXPORT_SYMBOL drivers/mfd/wm8994 0xf37e626f wm1811_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0xfb0d4e31 wm8994_irq_init +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x21e06ad6 ad_dpot_remove +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x54f6b741 ad_dpot_probe EXPORT_SYMBOL drivers/misc/altera-stapl/altera-stapl 0x2fb85933 altera_init -EXPORT_SYMBOL drivers/misc/c2port/core 0x4b33c3c5 c2port_device_register -EXPORT_SYMBOL drivers/misc/c2port/core 0xa87538d1 c2port_device_unregister -EXPORT_SYMBOL drivers/misc/tifm_core 0x1362f05c tifm_unmap_sg -EXPORT_SYMBOL drivers/misc/tifm_core 0x16971c51 tifm_free_device -EXPORT_SYMBOL drivers/misc/tifm_core 0x33eca7aa tifm_alloc_device +EXPORT_SYMBOL drivers/misc/c2port/core 0x307548bb c2port_device_register +EXPORT_SYMBOL drivers/misc/c2port/core 0x4346ec49 c2port_device_unregister +EXPORT_SYMBOL drivers/misc/tifm_core 0x07f90da0 tifm_eject +EXPORT_SYMBOL drivers/misc/tifm_core 0x1f54bea8 tifm_has_ms_pif +EXPORT_SYMBOL drivers/misc/tifm_core 0x35f28cdd tifm_register_driver EXPORT_SYMBOL drivers/misc/tifm_core 0x39f86aa1 tifm_queue_work -EXPORT_SYMBOL drivers/misc/tifm_core 0x574631a1 tifm_register_driver -EXPORT_SYMBOL drivers/misc/tifm_core 0x5afac609 tifm_has_ms_pif -EXPORT_SYMBOL drivers/misc/tifm_core 0x71539921 tifm_alloc_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0x72449c03 tifm_free_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0x78f340e2 tifm_add_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0xa3401bad tifm_map_sg -EXPORT_SYMBOL drivers/misc/tifm_core 0xa9c67f2c tifm_eject -EXPORT_SYMBOL drivers/misc/tifm_core 0xcb298848 tifm_remove_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0xf2574efc tifm_unregister_driver -EXPORT_SYMBOL drivers/mmc/host/cqhci 0x057494f8 cqhci_resume -EXPORT_SYMBOL drivers/mmc/host/cqhci 0x111af393 cqhci_deactivate -EXPORT_SYMBOL drivers/mmc/host/cqhci 0x5b964bed cqhci_irq -EXPORT_SYMBOL drivers/mmc/host/cqhci 0x91e8c451 cqhci_pltfm_init -EXPORT_SYMBOL drivers/mmc/host/cqhci 0x93f8155b cqhci_init -EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x54f5cf8a dw_mci_runtime_suspend -EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x9aa8f4e2 dw_mci_runtime_resume -EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0xa9e6fc53 dw_mci_probe -EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0xd24bf976 dw_mci_remove -EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0x1e068a1c mmc_spi_get_pdata -EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0xc757c7c4 mmc_spi_put_pdata -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x13e7f47c cfi_varsize_frob -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x71931085 cfi_build_cmd_addr -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x73166b80 cfi_send_gen_cmd -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x86b544bd cfi_read_pri -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xb93178ad cfi_build_cmd -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xd238a946 cfi_merge_status -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xfbc522ed cfi_fixup +EXPORT_SYMBOL drivers/misc/tifm_core 0x3f9b54ec tifm_free_device +EXPORT_SYMBOL drivers/misc/tifm_core 0x4b28d831 tifm_alloc_device +EXPORT_SYMBOL drivers/misc/tifm_core 0x9d615bcb tifm_map_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0xb5b02555 tifm_unmap_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0xbc2b47ae tifm_unregister_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0xcedfa821 tifm_free_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xd7a8fbab tifm_alloc_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xf90eb9b5 tifm_add_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xfe9f0131 tifm_remove_adapter +EXPORT_SYMBOL drivers/mmc/host/cqhci 0x03798263 cqhci_init +EXPORT_SYMBOL drivers/mmc/host/cqhci 0x2639ba81 cqhci_irq +EXPORT_SYMBOL drivers/mmc/host/cqhci 0x842671eb cqhci_pltfm_init +EXPORT_SYMBOL drivers/mmc/host/cqhci 0xfcdc720c cqhci_deactivate +EXPORT_SYMBOL drivers/mmc/host/cqhci 0xff7934cf cqhci_resume +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x083bccc7 dw_mci_runtime_resume +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0xac170237 dw_mci_runtime_suspend +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0xb3b43df1 dw_mci_probe +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0xf4eb9b19 dw_mci_remove +EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0x7a865bfb mmc_spi_put_pdata +EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0xc2602325 mmc_spi_get_pdata +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x2b259aec cfi_merge_status +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x3578b3bd cfi_build_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x49881d21 cfi_build_cmd_addr +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x84cce116 cfi_send_gen_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x89dd18a7 cfi_varsize_frob +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xe5580cc2 cfi_read_pri +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xe7228f65 cfi_fixup EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xff9fa623 cfi_udelay -EXPORT_SYMBOL drivers/mtd/chips/gen_probe 0x5e59490a mtd_do_chip_probe -EXPORT_SYMBOL drivers/mtd/lpddr/lpddr_cmds 0xd5e6a335 lpddr_cmdset -EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0x19ceb04f onenand_addr -EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0x79880b8e flexonenand_region +EXPORT_SYMBOL drivers/mtd/chips/gen_probe 0x006a8401 mtd_do_chip_probe +EXPORT_SYMBOL drivers/mtd/lpddr/lpddr_cmds 0x58f143ea lpddr_cmdset +EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0xf20092fa flexonenand_region +EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0xfb3ad3b6 onenand_addr +EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x24c9dd8b denali_remove +EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x2bee445f denali_init EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x30db096f denali_calc_ecc_bytes -EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x3bdc39a3 denali_remove -EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x78214e15 denali_init EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0x102603bc mtk_ecc_get_parity_bits EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0x5437e775 mtk_ecc_disable EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0x5de55d81 mtk_ecc_get_stats EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0x6df58afb mtk_ecc_release EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0x76e53683 mtk_ecc_wait_done -EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0x7bd5d220 of_mtk_ecc_get EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0x8dcc87d2 mtk_ecc_enable EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0xda64ef4a mtk_ecc_adjust_strength +EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0xdeca9282 of_mtk_ecc_get EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0xec8b9207 mtk_ecc_encode -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x06eaa9d8 alloc_arcdev -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x1115fcc2 arcnet_unregister_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x1b9181a2 arc_proto_default -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x29c23474 arcnet_close -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x591316eb arcnet_open -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6381e88b arc_raw_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x05448ad6 arc_bcast_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x0b6d75bb free_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x11fdcaea arc_proto_map EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xa8fffb9b free_arcdev -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xae162023 arcnet_timeout -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xb377f7ab arcnet_send_packet -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xc8204c15 arc_bcast_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xcde7decc arc_proto_map +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x734f223b arcnet_unregister_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x7a000f9b arcnet_send_packet +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x85fdd6c6 alloc_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x8941afce arc_proto_default +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xa7b35d8a arcnet_open +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xa7dc823b arcnet_timeout +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xc5ab3373 arc_raw_proto EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecb730b0 arcnet_interrupt -EXPORT_SYMBOL drivers/net/arcnet/com20020 0x1d383b96 com20020_check -EXPORT_SYMBOL drivers/net/arcnet/com20020 0xac67ac23 com20020_found -EXPORT_SYMBOL drivers/net/arcnet/com20020 0xc01ef634 com20020_netdev_ops -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x03270d6a b53_get_mac_eee -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x061ae51a b53_phylink_mac_link_down -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x123560a3 b53_vlan_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x14076a9c b53_mirror_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x23adb084 b53_mirror_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x25c23da2 b53_fdb_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x2daa7666 b53_br_flags -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x392c34ab b53_get_ethtool_phy_stats -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x4ef8c56b b53_br_set_stp_state -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x51248293 b53_fdb_dump -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x540a620c b53_fdb_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x5e38df67 b53_get_tag_protocol -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x62699912 b53_mdb_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x6561a2f1 b53_enable_port -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x65e65397 b53_br_leave -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x6c9a1ae2 b53_phylink_mac_an_restart -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x79e7d0b5 b53_phylink_validate -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7b3f0ffe b53_get_ethtool_stats -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x80e46967 b53_get_sset_count -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x820c95b7 b53_br_join -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x834875a1 b53_phylink_mac_link_state -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x90badd53 b53_br_flags_pre -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x92d8310a b53_disable_port -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x9b4faaca b53_mdb_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x9dfea69d b53_switch_detect -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x9efd9108 b53_set_mac_eee -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa72da5b5 b53_port_event -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xab342a98 b53_switch_register -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xcb24da5e b53_phylink_mac_link_up -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd6fb3b79 b53_eee_init -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd9001207 b53_imp_vlan_setup -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xdab9375d b53_phylink_mac_config -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xdc295ea9 b53_switch_alloc -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xe71f46d5 b53_br_fast_age -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xe9bccdda b53_vlan_filtering -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xea3991cb b53_eee_enable_set -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xedaed1d4 b53_get_strings -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xef0a9853 b53_configure_vlan -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf2c39841 b53_setup_devlink_resources -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xfac74ef6 b53_brcm_hdr_setup -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xfce207bf b53_vlan_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x4b33449d b53_serdes_init -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x62b28ee2 b53_serdes_an_restart -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x8faa0e2f b53_serdes_phylink_validate -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xd80eb234 b53_serdes_link_set -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xe0ce2c8f b53_serdes_link_state -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xf5964cd9 b53_serdes_config -EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x7b332b39 lan9303_probe +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xf7871644 arcnet_close +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x0b18774a com20020_found +EXPORT_SYMBOL drivers/net/arcnet/com20020 0xe9562447 com20020_check +EXPORT_SYMBOL drivers/net/arcnet/com20020 0xef4c8416 com20020_netdev_ops +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x062e7615 b53_phylink_validate +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x1b9ed404 b53_eee_enable_set +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x1fccc863 b53_mirror_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x21590c5a b53_set_mac_eee +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x215d8aa4 b53_fdb_dump +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x2f3d6bb3 b53_enable_port +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x3b676dc4 b53_phylink_mac_config +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x3b8819b2 b53_vlan_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x4825d678 b53_br_flags +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x49f9d4fe b53_phylink_mac_link_down +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x4fc9150f b53_switch_detect +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x51a994e8 b53_br_flags_pre +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x5c1d6205 b53_get_ethtool_stats +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x5fc8b9d0 b53_fdb_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x66c71e1a b53_phylink_mac_link_state +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x695fe224 b53_get_tag_protocol +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7360e4ef b53_vlan_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x75847928 b53_phylink_mac_an_restart +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7abc473a b53_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x845e6730 b53_port_event +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x8828f5b8 b53_mirror_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x91cfcdd5 b53_br_leave +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x932eb98d b53_imp_vlan_setup +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x98038106 b53_mdb_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x98e7f197 b53_brcm_hdr_setup +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x99900aff b53_get_sset_count +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x9f7b831d b53_get_strings +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa3ec6a56 b53_vlan_filtering +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xaa37ed3e b53_setup_devlink_resources +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xabe87b91 b53_get_ethtool_phy_stats +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb2bd50d8 b53_eee_init +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xba19836e b53_mdb_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xbf93c32d b53_configure_vlan +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc1f93e98 b53_phylink_mac_link_up +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc8e3c2b4 b53_disable_port +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xcf331fd1 b53_br_fast_age +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xde0f4714 b53_get_mac_eee +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xeb9a2980 b53_br_join +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf0df1e37 b53_switch_register +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf78c1362 b53_fdb_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xfc2c9d64 b53_br_set_stp_state +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x08f14eed b53_serdes_init +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x36c36259 b53_serdes_link_state +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x87cf33fc b53_serdes_config +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x8de7a849 b53_serdes_an_restart +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x9c680af7 b53_serdes_link_set +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xbff986f6 b53_serdes_phylink_validate +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x27152fb9 lan9303_remove +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x2bc22c7a lan9303_probe EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xada83f40 lan9303_register_set -EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xbe7003c7 lan9303_remove -EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xe2849d19 lan9303_shutdown -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz8795 0x981e4123 ksz8_switch_register -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz9477 0x7dfe7a9d ksz9477_switch_register -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0x23976da9 ksz_switch_remove -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0x5fb0f933 ksz_switch_register -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0xe869a9be ksz_switch_alloc -EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x8ffb0d52 vsc73xx_shutdown +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xd5eac1c1 lan9303_shutdown +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz8795 0xa864b7e4 ksz8_switch_register +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz9477 0x9ea4ccf4 ksz9477_switch_register +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0x3398ed01 ksz_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0xac04da8b ksz_switch_register +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0xcc235b5e ksz_switch_remove +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x048d5d8c vsc73xx_probe +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x25e4f4f3 vsc73xx_remove +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x3f843e77 vsc73xx_shutdown EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x99d242fe vsc73xx_is_addr_valid -EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0xc6507c3b vsc73xx_remove -EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0xccf5ed13 vsc73xx_probe -EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x34e22eb4 xrs700x_switch_register -EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x40a693de xrs700x_switch_shutdown -EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xb867dc30 xrs700x_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x5d5e39b2 xrs700x_switch_register +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x99c66b20 xrs700x_switch_remove 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 0xe656d592 xrs700x_switch_shutdown EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xecf95983 xrs7003e_info -EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xfd73d182 xrs700x_switch_remove -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x009f8b9d ei_close -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x10b7034a ei_get_stats +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xf18bb4b6 xrs700x_switch_alloc +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x033b3d69 NS8390_init +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x0fde9c4c ei_get_stats EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x119721ac ei_interrupt -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x1c20dc57 NS8390_init -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x3418f309 ei_poll -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x602bf1f8 __alloc_ei_netdev -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x69263fee ei_set_multicast_list -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x8779c334 ei_start_xmit -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xac90d4d7 ei_open -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xb19db9cd ei_tx_timeout -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xbfba9432 ei_netdev_ops -EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnxt/bnxt_en 0xd5fda824 bnxt_ulp_probe +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x53f27603 ei_open +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x724e4bdb ei_set_multicast_list +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xa0e07058 __alloc_ei_netdev +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xa63b2905 ei_close +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xa898dc8c ei_poll +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xbba775cd ei_start_xmit +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xe3ba488a ei_tx_timeout +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xf4bee86a ei_netdev_ops +EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnxt/bnxt_en 0xaad7df7b bnxt_ulp_probe +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x4029fd7c cnic_register_driver EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x636af174 cnic_unregister_driver -EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0xbd6d20d7 cnic_register_driver -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x04a1a3f1 cxgb3_free_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x206c6027 cxgb3_register_client -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x287b4b34 t3_l2t_send_slow -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x292a17e4 cxgb3_alloc_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x37f8f2d1 t3_register_cpl_handler -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x41fe427f t3_l2e_free -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x571e16d5 dev2t3cdev -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x6c8ad3fa cxgb3_remove_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x6e03a253 t3_l2t_send_event -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x77f950e0 cxgb3_ofld_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x85c18b32 cxgb3_queue_tid_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x865526e0 t3_l2t_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x9a8cdf9b cxgb3_unregister_client -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xa60e06fa cxgb3_alloc_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xa938d507 cxgb3_free_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xf1a886ed cxgb3_insert_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x01680193 cxgb4_write_sgl -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0408c660 cxgb4_iscsi_init -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x087d085e cxgb4_clip_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0d710cc2 cxgb4_remove_server -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0e6facc3 cxgb4_crypto_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x127274bc t3_l2t_send_event +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x1430aa72 t3_l2t_send_slow +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x397feb22 cxgb3_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x43779b4c t3_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x6a05cb08 dev2t3cdev +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x7302de9f t3_l2e_free +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x8e670074 cxgb3_insert_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xa572e1ab cxgb3_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xb0c90bb4 cxgb3_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xb777b9f2 t3_register_cpl_handler +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xc12689c2 cxgb3_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xd6e4070a cxgb3_queue_tid_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xe1895f06 cxgb3_register_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xe20259fe cxgb3_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xeeb174ba cxgb3_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xf71811ca cxgb3_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0ec37d79 cxgb4_l2t_get EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0f1a5528 cxgb4_unregister_uld -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x116b6ec0 cxgb4_read_sge_timestamp -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1d65237f cxgb4_select_ntuple -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1e6e4962 cxgb4_l2t_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1e9ca4a5 cxgb4_l2t_alloc_switching -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x21bc76a9 cxgb4_create_server_filter -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x294b50fe cxgb4_check_l2t_valid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2e3cfb33 cxgb4_l2t_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2f30a5f2 cxgb4_port_idx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3c2cf041 cxgb4_sync_txq_pidx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x421f3aec cxgb4_write_partial_sgl -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x460a69af cxgb4_free_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4c45ccd0 cxgb4_immdata_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x17402e9e cxgb4_bar2_sge_qregs +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x18c7c4f7 cxgb4_get_srq_entry +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x19f93d73 cxgb4_flush_eq_cache +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2052e98d cxgb4_reclaim_completed_tx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x24235a97 cxgb4_check_l2t_valid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x25e58104 cxgb4_port_e2cchan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2c669c64 cxgb4_pktgl_to_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2d849309 cxgb4_port_chan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2ebfbf92 cxgb4_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2fc497e5 cxgb4_port_idx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x31451dd5 cxgb4_remove_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x32646a76 cxgb4_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x36471487 cxgb4_clip_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3bc7f864 cxgb4_inline_tx_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4daa6194 cxgb4_alloc_stid EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x50ee5c07 cxgb4_best_aligned_mtu -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5515554c cxgb4_flush_eq_cache -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x58d6761f cxgb4_remove_server_filter -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x631f995e cxgb4_alloc_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x66e1f49d cxgb4_port_viid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6b088522 cxgb4_port_chan -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x79b54193 cxgb4_get_srq_entry -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7e1364d8 cxgb4_register_uld -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x810000cd cxgb4_create_server -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x816e0210 cxgb4_dbfifo_count -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x864908d6 cxgb4_create_server6 -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x887df744 cxgb4_map_skb -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8e62167d cxgb4_read_tpte -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9ffc913e cxgb4_free_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa150cf68 cxgb4_smt_alloc_switching -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa8dbc942 cxgb4_port_e2cchan -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xabd2a64e cxgb4_remove_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb1c1c8c2 cxgb4_reclaim_completed_tx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb3304a1f cxgb4_ring_tx_db -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb344449f cxgb4_inline_tx_skb -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb6c23369 cxgb4_alloc_sftid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x54f6cd78 cxgb4_read_tpte +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5501bb8d cxgb4_iscsi_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x578a6bd2 cxgb4_crypto_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x57f8f4b9 cxgb4_update_root_dev_clip +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x650be263 cxgb4_remove_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x67e2f7bb cxgb4_select_ntuple +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6916923f cxgb4_l2t_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6b7c366c cxgb4_l2t_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7860049d cxgb4_alloc_sftid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7fb37ce7 cxgb4_write_partial_sgl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x85532464 cxgb4_map_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8a574d6f cxgb4_write_sgl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8e9757fd cxgb4_dbfifo_count +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x94cd5f9e cxgb4_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9c3d8cef cxgb4_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa03ba137 t4_cleanup_clip_tbl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa45a4127 cxgb4_create_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa6d39587 cxgb4_port_viid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xab9e0a66 cxgb4_immdata_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xade7dcb4 cxgb4_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb2aa5faa cxgb4_ring_tx_db +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc5a30c71 cxgb4_clip_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc8b709a1 cxgb4_l2t_alloc_switching +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd05caec1 cxgb4_sync_txq_pidx EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd69a0294 cxgb4_best_mtu -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xda4146b5 cxgb4_ofld_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xdd651e09 cxgb4_get_tcp_stats -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xde3f5f4d cxgb4_update_root_dev_clip +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd6b8fa7e cxgb4_create_server_filter EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xded2869b cxgb4_smt_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe78fd424 t4_cleanup_clip_tbl -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xec9d3e56 cxgb4_clip_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf6eaad76 cxgb4_bar2_sge_qregs -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf6ed2ac1 cxgb4_l2t_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xfca024dd cxgb4_pktgl_to_skb -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xfd399376 cxgb4_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xdf656d20 cxgb4_read_sge_timestamp +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xeabccf8d cxgb4_register_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xfb20ae06 cxgb4_smt_alloc_switching +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xfd316152 cxgb4_get_tcp_stats +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xff05a633 cxgb4_create_server6 EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x1bdaafe1 cxgbi_tagmask_set -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x2465f751 cxgbi_ppm_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x1efb2b27 cxgbi_ppm_ppods_reserve EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x255ab30f cxgb_get_4tuple -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x2fc782cc cxgbi_ppm_make_ppod_hdr -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x6290ec0f cxgbi_ppm_ppod_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x6b9c3a7c cxgb_find_route6 -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x92d790ec cxgbi_ppm_ppods_reserve -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xc80bf993 cxgb_find_route -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xf45cfce6 cxgbi_ppm_init -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x3bdc14b2 vnic_dev_get_pdev -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x636205f9 vnic_dev_register -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xbe04245b vnic_dev_get_res -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xe8c0bc28 vnic_dev_unregister -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xf55b7435 vnic_dev_get_res_count -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xffbe0702 enic_api_devcmd_proxy_by_index -EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x44046a9a be_roce_register_driver +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x5c3f3ef9 cxgb_find_route +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xa28c3146 cxgbi_ppm_make_ppod_hdr +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xa3a68238 cxgbi_ppm_ppod_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xa848795d cxgbi_ppm_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xb540354d cxgb_find_route6 +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xb7492f5e cxgbi_ppm_release +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x00790909 vnic_dev_register +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x5145462b vnic_dev_get_res +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x57089dc0 vnic_dev_get_pdev +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x94a3adfb vnic_dev_unregister +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x9f74ff51 vnic_dev_get_res_count +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xd8f4bd31 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 0xb0f28e04 be_roce_unregister_driver -EXPORT_SYMBOL drivers/net/ethernet/freescale/enetc/fsl-enetc-ierb 0xcbe91e4f enetc_ierb_register_pf +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x59671bd6 be_roce_register_driver +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xe92574da be_roce_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/freescale/enetc/fsl-enetc-ierb 0x10f433dc enetc_ierb_register_pf EXPORT_SYMBOL drivers/net/ethernet/freescale/enetc/fsl-enetc-ptp 0x5431a304 enetc_phc_index -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x0f0cbbda hnae_ae_register -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x147168ac hnae_get_handle -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x532f8d4a hnae_reinit_handle +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x07df5246 hnae_get_handle +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x379b3799 hnae_reinit_handle +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x5b6e67b8 hnae_ae_register +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x91afbe02 hnae_ae_unregister +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xa375cfba hnae_put_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 0xe3ae6887 hnae_put_handle -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xf9a3ba44 hnae_ae_unregister -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hns_dsaf 0x3c5dee27 hns_dsaf_roce_reset -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x014e76eb hnae3_set_client_init_flag -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x4b8f49bb hnae3_unregister_ae_algo_prepare -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x59ed0cd4 hnae3_unregister_ae_algo -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x699f639c hnae3_register_ae_algo -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xabf6530b hnae3_unregister_ae_dev -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xafdea225 hnae3_register_ae_dev -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xf074f26f hnae3_unregister_client -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xf45c0341 hnae3_register_client -EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0x9ae5f595 iavf_unregister_client -EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0xd8302317 iavf_register_client -EXPORT_SYMBOL drivers/net/ethernet/marvell/prestera/prestera 0x22e88bf5 prestera_device_unregister -EXPORT_SYMBOL drivers/net/ethernet/marvell/prestera/prestera 0x44ea77b8 prestera_device_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0552be12 mlx4_get_is_vlan_offload_disabled -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x055c765d mlx4_release_eq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0c7134bb mlx4_gen_port_state_change_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0fd197ed get_phv_bit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x140ba4be mlx4_SET_VPORT_QOS_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x188d594a mlx4_gen_guid_change_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1a4618ea mlx4_get_module_info -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1f567407 mlx4_test_async -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x22340308 mlx4_SET_PORT_SCHEDULER -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2944dbbe mlx4_tunnel_steer_add -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3548b072 mlx4_SET_VPORT_QOS_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x39d16de7 set_and_calc_slave_port_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3de260fd mlx4_SET_PORT_VXLAN -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3fcd7e29 mlx4_is_slave_active -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x414dc259 mlx4_get_slave_port_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x46ab9af5 mlx4_get_roce_gid_from_slave -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4b3d0af7 mlx4_assign_eq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5b7e754b mlx4_gen_pkey_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5dc23bcf mlx4_sync_pkey_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6c245345 mlx4_SET_PORT_user_mac -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6ebe26b1 mlx4_SET_PORT_general -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7ef1fc3a mlx4_SET_PORT_PRIO2TC +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hns_dsaf 0x5a6d7e6d hns_dsaf_roce_reset +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x0ed9d783 hnae3_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x44039aa6 hnae3_register_ae_dev +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x4c83c427 hnae3_register_ae_algo +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x73109bad hnae3_unregister_ae_algo +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xa2ea1094 hnae3_unregister_ae_dev +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xb5e8b651 hnae3_unregister_ae_algo_prepare +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xe8305db1 hnae3_register_client +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xfaaa1251 hnae3_set_client_init_flag +EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0x1273f5bd iavf_register_client +EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0x176c391a iavf_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/marvell/prestera/prestera 0x0d96d05d prestera_device_unregister +EXPORT_SYMBOL drivers/net/ethernet/marvell/prestera/prestera 0xe5618322 prestera_device_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x04b7e7a0 mlx4_SET_PORT_BEACON +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0afb80c3 mlx4_eq_get_irq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x12fb3fc7 mlx4_query_diag_counters +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1654a3f1 mlx4_get_is_vlan_offload_disabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x189ffc35 mlx4_SET_MCAST_FLTR +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x18e1fb1b mlx4_SET_PORT_general +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1a4c39e1 mlx4_SET_PORT_user_mtu +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1f05639a mlx4_SET_PORT_VXLAN +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x27bf0564 mlx4_SET_PORT_user_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2dbbaedf mlx4_SET_VPORT_QOS_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2dfcde53 set_and_calc_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2ea0f10b mlx4_test_interrupt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x36a2029d mlx4_SET_PORT_PRIO2TC +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x38bee736 mlx4_release_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x55a26bb5 mlx4_SET_PORT_SCHEDULER +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5a685fce mlx4_is_eq_shared +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5f7cd60f set_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5f89593c mlx4_assign_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6038ca5e mlx4_get_slave_pkey_gid_tbl_len +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x65c64ce6 mlx4_gen_guid_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x67663835 mlx4_get_cpu_rmap +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x696cd66e get_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6c11a151 mlx4_get_eqs_per_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x72c12b7b mlx4_SET_PORT_qpn_calc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x765ae185 mlx4_test_async +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7adec39d mlx4_get_slave_from_roce_gid 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 0x831c3ca7 mlx4_get_eqs_per_port -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x84983ff6 set_phv_bit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x85237327 mlx4_test_interrupt -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8630080c mlx4_get_slave_pkey_gid_tbl_len -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8c13c1ab mlx4_gen_slaves_port_mgt_ev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9c8ee832 mlx4_get_parav_qkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa13e610a mlx4_ALLOCATE_VPP_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa39256c3 mlx4_is_eq_shared -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xacf6985a mlx4_SET_PORT_fcs_check -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb368775c mlx4_SET_PORT_BEACON -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbdefda83 mlx4_eq_get_irq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbe6fe5c5 mlx4_SET_PORT_qpn_calc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc082ff47 mlx4_max_tc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc28093f0 mlx4_SET_PORT_user_mtu -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc786823d mlx4_ALLOCATE_VPP_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc9d164ab mlx4_get_slave_node_guid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd700a653 mlx4_get_cpu_rmap -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdb1bb579 mlx4_query_diag_counters -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeef8d049 mlx4_SET_MCAST_FLTR -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf2e745a9 mlx4_is_eq_vector_valid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfd406a12 mlx4_get_slave_from_roce_gid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfe747d74 mlx4_put_slave_node_guid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x003507ba mlx5_core_dealloc_transport_domain -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x00c02b59 mlx5_debugfs_root -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x05bfa7d6 mlx5_core_modify_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x096537bf mlx5_lag_is_master -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0e11dee4 mlx5_core_modify_tis -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0eabc69b __traceiter_mlx5_fs_del_fg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0eed9ae6 mlx5_modify_header_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x881d3a86 mlx4_SET_VPORT_QOS_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8a4bf5e7 mlx4_is_slave_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x92143ebd mlx4_is_eq_vector_valid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9d9e5591 mlx4_get_module_info +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa09bdf56 mlx4_put_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa3c2f87a mlx4_max_tc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb79d68c1 mlx4_sync_pkey_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbb0b7ad7 mlx4_gen_slaves_port_mgt_ev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbff4b7e3 mlx4_gen_pkey_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc6bc804d mlx4_tunnel_steer_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcb1ddf72 mlx4_SET_PORT_fcs_check +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcddc615c mlx4_get_parav_qkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd6a2a58e mlx4_ALLOCATE_VPP_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdfaee376 mlx4_get_roce_gid_from_slave +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe090d695 mlx4_ALLOCATE_VPP_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe98b00a0 mlx4_gen_port_state_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xed6676d8 mlx4_get_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf6b4d6fe mlx4_get_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x00e366db mlx5_lag_query_cong_counters +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0367459a mlx5_fs_remove_rx_underlay_qpn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x03ca9a59 mlx5_fpga_sbu_conn_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x05fcd4ae mlx5_eswitch_add_send_to_vport_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x06238784 mlx5_rdma_rn_get_params +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x06bcba94 mlx5_fs_add_rx_underlay_qpn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x07f9d9ff mlx5_core_create_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0f2165a4 mlx5_eq_notifier_unregister 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 0x11966391 mlx5_core_query_vendor_id -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x126384ad mlx5_fpga_mem_read -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1279ba6a mlx5_core_destroy_tir -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x12d8a315 mlx5_core_modify_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x13c72b10 mlx5_core_detach_mcg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x14275f96 mlx5_fc_destroy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x145dc2cc mlx5_lag_get_peer_mdev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x15ebeb6b mlx5_qp_debugfs_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x15ed03b3 mlx5_eq_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1643a5b7 mlx5_modify_header_dealloc 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 0x1efa21ef mlx5_put_uars_page -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x217f5db2 mlx5_eq_enable -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2342ea81 mlx5_core_query_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x25494e71 mlx5_core_alloc_transport_domain -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x27b0fa6c mlx5_lag_query_cong_counters -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2a81e254 mlx5_core_destroy_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2aac7497 mlx5_qp_debugfs_cleanup -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2c067d9b mlx5_cmd_exec -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2f1351f0 mlx5_core_destroy_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x303603ef mlx5_notifier_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x316f5e6e mlx5_rl_remove_rate -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x31d814ed mlx5_eswitch_get_vport_metadata_for_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x328f9097 mlx5_alloc_bfreg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3416d0ea mlx5_eswitch_reg_c1_loopback_enabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x17dc4cbd mlx5_get_flow_namespace +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x19b8a267 mlx5_core_modify_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x20f109f5 mlx5_core_destroy_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x21fbd2ee mlx5_free_bfreg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x22f34eda mlx5_eswitch_get_proto_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x262c8ac3 mlx5_cmd_destroy_vport_lag +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x294c006f mlx5_core_destroy_rqt +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 0x2fff0c22 mlx5_core_destroy_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x307effe4 mlx5_eswitch_unregister_vport_reps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x30dc68df mlx5_rsc_dump_cmd_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x313251ed mlx5_core_query_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x336f68f1 mlx5_lag_is_roce +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x33a5b009 mlx5_core_create_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3427c597 mlx5_rl_remove_rate_raw 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 0x35404888 mlx5_core_destroy_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x35411e11 __traceiter_mlx5_fw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x366570ad mlx5_core_roce_gid_set EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3699fe83 __traceiter_mlx5_fs_del_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x371b2b34 mlx5_modify_header_alloc EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3c3a78b7 __traceiter_mlx5_fs_add_ft -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3ec530f5 mlx5_core_query_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3fba372d mlx5_core_create_psv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3ffd44d5 mlx5_lag_get_slave_port -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x452f0f93 mlx5_eswitch_register_vport_reps -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x466f9e18 mlx5_core_destroy_rqt -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x486a6f0f mlx5_core_roce_gid_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x49999000 mlx5_fpga_sbu_conn_sendmsg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x499a2e8a mlx5_destroy_flow_group -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4b09fab6 __traceiter_mlx5_fs_add_fg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4b97c04e mlx5_core_destroy_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4bec4ccb mlx5_eswitch_unregister_vport_reps -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4d58d701 mlx5_eq_get_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3d3c9fc3 mlx5_debug_qp_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3f5ee900 mlx5_lag_is_master +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x46b8a82b mlx5_core_create_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x490b3cf4 mlx5_core_alloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4b38b938 mlx5_eq_get_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4b810061 mlx5_core_create_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4cd0ce4e mlx5_cmd_exec_cb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4cdc1086 mlx5_alloc_bfreg 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 0x4e48e18e mlx5_core_query_sq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4ef5b399 mlx5_cmd_init_async_ctx -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5188fece mlx5_eswitch_get_vport_metadata_for_match -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x537c9f23 mlx5_fs_add_rx_underlay_qpn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4db1beaa mlx5_fpga_mem_read +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4fa49543 mlx5_nic_vport_disable_roce +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x53eb1927 mlx5_eq_enable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x550f5a1b mlx5_eq_disable 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 0x572b4736 __traceiter_mlx5_fs_del_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x578afc9c mlx5_core_create_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5ff628c7 mlx5_fpga_sbu_conn_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x55b1edb2 mlx5_core_create_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x571c7301 mlx5_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x57b02a56 mlx5_eswitch_get_vport_metadata_for_match +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x57df4c0c mlx5_core_modify_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x58005290 mlx5_rl_add_rate_raw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5902177e mlx5_core_query_vendor_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x592babef mlx5_qp_debugfs_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5c202ad7 mlx5_cmd_alloc_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x607330e1 mlx5_packet_reformat_dealloc 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 0x638da059 mlx5_get_fdb_sub_ns -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6518e2c9 mlx5_buf_alloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x66dd18d1 mlx5_cmd_cleanup_async_ctx -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6f830d54 mlx5_core_modify_cq_moderation -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6fa3716c mlx5_nic_vport_disable_roce -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x703579b4 mlx5_fpga_get_sbu_caps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6216d61d mlx5_lag_is_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x66ab751a mlx5_eswitch_register_vport_reps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x67c1db93 mlx5_eswitch_get_vport_metadata_for_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x67c3dfa0 mlx5_core_dealloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x688d50e6 mlx5_eswitch_get_core_dev +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 0x6a9a8df1 mlx5_add_flow_rules +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6bb05593 mlx5_debug_qp_remove +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6c7ab383 mlx5_cmd_free_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6dcf2c48 __traceiter_mlx5_fs_set_fte 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 0x75760869 mlx5_fpga_sbu_conn_create -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7605801c mlx5_core_dealloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x74e8992e mlx5_vector2eqn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x750f3160 mlx5_cmd_init_async_ctx +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x758cd04b mlx5_eswitch_get_encap_mode +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x761ed3f0 mlx5_fpga_get_sbu_caps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x762461a2 mlx5_eswitch_vport_match_metadata_enabled 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 0x78576f7d mlx5_core_create_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x77365ff0 mlx5_core_destroy_psv 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 0x7a7a0b6c mlx5_eq_update_ci -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7b0a939e mlx5_eq_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7a0038e5 mlx5_put_uars_page 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 0x7da9f833 mlx5_comp_vectors_count -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x812102f4 mlx5_core_create_tis -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x81532bc4 mlx5_core_create_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x81fa0712 mlx5_core_query_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x838c4dfc mlx5_packet_reformat_alloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x83e7126d mlx5_fs_remove_rx_underlay_qpn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8b9ddd62 mlx5_eq_destroy_generic -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8c065aeb mlx5_core_destroy_tis -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8e0f4673 mlx5_lag_is_sriov -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x910d587c mlx5_core_create_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9273a002 __traceiter_mlx5_fs_add_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x94c41ea7 mlx5_add_flow_rules -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x94f447bb mlx5_eswitch_vport_match_metadata_enabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7bc4b9ac mlx5_create_flow_group +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7e3691ae mlx5_lag_is_sriov +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x88a9a73a mlx5_lag_get_roce_netdev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8a52b79b mlx5_mpfs_add_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8b0d012f mlx5_lag_get_slave_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8ff3d7b0 mlx5_get_uars_page +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9085b508 mlx5_core_modify_cq_moderation +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x91f26a89 mlx5_eq_update_ci +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x92452779 __traceiter_mlx5_fs_add_rule 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 0x989f7191 mlx5_core_create_rqt -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x991a181a mlx5_free_bfreg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x993132b4 mlx5_del_flow_rules -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x99331493 mlx5_core_alloc_pd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9a793b1d mlx5_cmd_free_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x98783d8b mlx5_debugfs_root EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9a962fb2 mlx5_create_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9a983c80 mlx5_cmd_exec_cb 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 0xa127ebe7 __traceiter_mlx5_fs_del_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa2ac19b1 mlx5_lag_get_roce_netdev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa587f733 mlx5_core_destroy_psv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa61ba194 mlx5_debug_qp_add -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa7685159 mlx5_mpfs_del_mac -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa844d7fe mlx5_eswitch_uplink_get_proto_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa8c7d1bc mlx5_lag_is_active -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa953e0c1 mlx5_debug_qp_remove -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaa45a470 mlx5_rsc_dump_next -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaa4bb7d4 mlx5_rl_add_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9d778bfc mlx5_eswitch_reg_c1_loopback_enabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9fd668cc mlx5_cmd_create_vport_lag +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa2310c02 mlx5_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa3b753c7 mlx5_fpga_sbu_conn_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa49a0fa8 mlx5_packet_reformat_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa73d9341 mlx5_lag_get_peer_mdev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa7abd184 mlx5_fpga_sbu_conn_sendmsg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa7b2e657 mlx5_query_ib_port_oper +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xab4c7ec8 mlx5_qp_debugfs_cleanup +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xad1344fe mlx5_core_destroy_mkey 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 0xaf353c58 mlx5_eq_notifier_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb3ab96dc mlx5_eswitch_vport_rep -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb61d0047 mlx5_rdma_rn_get_params +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb354e320 mlx5_eq_destroy_generic +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb4adbaea mlx5_core_create_rq EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb631ebfb __tracepoint_mlx5_fw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb68f7d83 mlx5_lag_is_roce -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb81966e3 mlx5_fpga_mem_write -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb8639145 mlx5_cmd_create_vport_lag -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xba49ed7a mlx5_eswitch_get_core_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbade809c mlx5_eswitch_add_send_to_vport_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbb24bd8d mlx5_notifier_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbbda0a84 mlx5_rl_add_rate_raw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbcecb6d8 mlx5_get_uars_page +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb8a3b443 mlx5_cmd_exec_polling +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb8e2b77e mlx5_core_query_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb99da3b3 mlx5_get_fdb_sub_ns +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xba1f1cf7 mlx5_rl_remove_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbb98606c mlx5_fc_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbca77a1e mlx5_core_attach_mcg 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 0xc0126cab mlx5_rl_is_in_range EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc06a92a3 mlx5_create_lag_demux_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc12f9cae mlx5_mpfs_add_mac -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc275e835 mlx5_query_ib_port_oper -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc3fd7e63 __traceiter_mlx5_fs_set_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc0ccb6b7 mlx5_fc_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc1705573 mlx5_core_dealloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc760d4f4 mlx5_fc_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc8fa4098 __traceiter_mlx5_fs_del_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc9f28923 mlx5_buf_alloc 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 0xcf27ca1b mlx5_packet_reformat_dealloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd3a05e47 mlx5_fc_create -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd6042a28 mlx5_cmd_exec_polling -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd74f9f70 mlx5_rsc_dump_cmd_create -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd8c774e3 __traceiter_mlx5_fw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdd6a4589 mlx5_core_modify_sq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xddc2aa51 mlx5_get_flow_namespace +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcea8bfca mlx5_core_modify_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd05d98d4 mlx5_comp_vectors_count +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd25ede99 mlx5_eswitch_uplink_get_proto_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd9fe9f1b mlx5_eswitch_vport_rep +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xda22c59c mlx5_rl_is_in_range 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 0xe02f48b5 mlx5_modify_header_dealloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe19cb094 mlx5_fc_query -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe2ed0f33 mlx5_comp_irq_get_affinity_mask +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdf617feb mlx5_core_modify_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe1e87664 mlx5_mpfs_del_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe202a4f3 mlx5_cmd_cleanup_async_ctx +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe2c452cd mlx5_eq_create_generic EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe3d171fd mlx5_create_auto_grouped_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe59c694e mlx5_create_flow_group -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe8eb0013 mlx5_eq_disable -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xea09cf26 mlx5_lag_is_shared_fdb -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeaea432f mlx5_eswitch_get_proto_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe5075fec mlx5_rsc_dump_next +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe556ced9 mlx5_core_create_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeab7b420 mlx5_fpga_mem_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeaef55e0 mlx5_notifier_unregister 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 0xed5314f4 mlx5_vector2eqn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf17ad48f mlx5_eswitch_get_encap_mode -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf18f5db8 mlx5_cmd_destroy_vport_lag -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf33be697 mlx5_eq_create_generic -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf372a502 mlx5_rl_remove_rate_raw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf3fd4691 mlx5_core_attach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xef9f261b mlx5_core_query_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf01968e9 mlx5_core_alloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf198cbb1 mlx5_lag_is_shared_fdb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf4653f90 __traceiter_mlx5_fs_del_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf5854042 mlx5_del_flow_rules +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf795422d mlx5_comp_irq_get_affinity_mask 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 0xf8fc6995 mlx5_core_detach_mcg EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf94cfda1 mlx5_destroy_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf9e305c8 mlx5_cmd_alloc_uar EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfc8e744e __SCK__tp_func_mlx5_fs_del_fg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxfw/mlxfw 0x9713f75d mlxfw_firmware_flash +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfe2b4c5e mlx5_core_destroy_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfe56e63a mlx5_core_query_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xff633649 mlx5_rl_add_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxfw/mlxfw 0x63a069f8 mlxfw_firmware_flash 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 0x053bcc09 mlxsw_core_skb_receive EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x07abcc0c mlxsw_afa_block_append_trap EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0ca34ccf mlxsw_core_max_ports EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0e81c09c mlxsw_afk_destroy EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x120a1738 mlxsw_core_port_init EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x15801382 mlxsw_afk_key_info_put -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x17cb5721 mlxsw_core_driver_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x18b0ad00 mlxsw_afa_block_append_police EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x19fa5852 mlxsw_core_flush_owq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x1ae80495 mlxsw_core_trap_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x1c6605f6 mlxsw_afa_block_append_qos_switch_prio -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x1ee2da19 mlxsw_core_driver_unregister EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x202693f0 mlxsw_afa_block_cur_set EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x21daf3af mlxsw_afa_block_append_qos_dsfield +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x222c0260 mlxsw_core_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x234ceb63 mlxsw_core_skb_receive EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x23eddc68 mlxsw_core_cpu_port_init -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x245265ac mlxsw_core_trap_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2c412d87 mlxsw_core_ptp_transmitted EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2c68ced3 mlxsw_core_read_frc_h EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x30d72838 mlxsw_env_get_module_eeprom_by_page -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x32e73c3e mlxsw_core_skb_transmit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x3204f749 mlxsw_core_rx_listener_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x35ba2254 mlxsw_afk_values_add_u32 EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x38185d87 mlxsw_afa_block_append_qos_ecn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x3e01d4c9 mlxsw_afa_block_append_mirror +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x3caf7c3d mlxsw_core_trap_unregister EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x3f672008 mlxsw_reg_trans_write EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x406b4614 mlxsw_afa_block_append_counter 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 0x4a6ed376 mlxsw_core_port_fini EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4b0bae55 mlxsw_core_kvd_sizes_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x54d8cde9 mlxsw_core_trap_state_set EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x57e736af mlxsw_cmd_exec EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5a099407 mlxsw_afa_block_append_qos_dscp EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5cf3dd79 mlxsw_core_bus_device_unregister @@ -2896,28 +2895,33 @@ EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x61ea9293 mlxsw_core_event_listener_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x63874d4c mlxsw_core_port_driver_priv EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x65e16da4 mlxsw_afk_key_info_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x66d44d3d mlxsw_core_bus_device_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x692ac04e mlxsw_afk_create EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x71e1d813 mlxsw_core_port_clear +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x72ea659f mlxsw_core_ptp_transmitted EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x749556a2 mlxsw_afk_key_info_subset EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x74eb7c9e mlxsw_core_res_valid EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x77768221 mlxsw_core_module_max_width EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x77d83398 mlxsw_core_read_frc_l EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7f659d4c mlxsw_afa_block_append_vlan_modify +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x820fddc7 mlxsw_core_skb_transmit 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 0x8458066b mlxsw_core_trap_unregister EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x858c30d0 mlxsw_afa_block_create EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x86a40342 mlxsw_core_res_get EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x87b88710 mlxsw_core_event_listener_unregister EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x8854d198 mlxsw_reg_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x88ff09c4 mlxsw_env_get_module_eeprom +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x8a5d8dd1 mlxsw_core_rx_listener_unregister EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x8ba5fa7e mlxsw_core_lag_mapping_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x8c17c576 mlxsw_core_driver_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x97035a9c mlxsw_afa_block_append_fid_set EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x97cf0ab9 mlxsw_core_port_is_xm EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x996c5d6d mlxsw_reg_trans_bulk_wait +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x9b061824 mlxsw_core_port_eth_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x9b44ee5b mlxsw_core_bus_device_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x9cbf026d mlxsw_afa_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x9d716d78 mlxsw_afa_block_append_mirror EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x9e41f494 mlxsw_afk_encode -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa1bb33dd mlxsw_core_port_eth_set EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa7765e88 mlxsw_reg_query EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xaa600760 mlxsw_reg_trans_query EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb5e762fa mlxsw_afk_values_add_buf @@ -2930,114 +2934,110 @@ EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbe82d6cc mlxsw_env_get_module_info EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbfb7df3c mlxsw_core_driver_priv EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbfd01f33 mlxsw_core_port_ib_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc8e80b1b mlxsw_afa_create EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc9c2e4cc mlxsw_core_lag_mapping_clear EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xca257489 mlxsw_afa_block_append_fwd 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 0xce418511 mlxsw_core_port_devlink_port_get EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd1a82f0b mlxsw_core_lag_mapping_get EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd252e62d mlxsw_core_skb_transmit_busy 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 0xd3daa5e9 mlxsw_env_get_module_eeprom EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd4874014 mlxsw_core_resources_query -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd510a840 mlxsw_core_rx_listener_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd6bfb699 mlxsw_afa_create EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd84eb6b0 mlxsw_afa_block_append_drop EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd9f711ae mlxsw_afa_block_append_mcrouter EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdc415cf1 mlxsw_afa_block_continue -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdc895acb mlxsw_core_port_devlink_port_get EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xde4e211f mlxsw_afa_block_append_l4port EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdeb1dc2e mlxsw_afa_block_first_kvdl_index EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe16986dd mlxsw_afa_block_activity_get EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xeca0348c mlxsw_core_schedule_dw EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xecab212a mlxsw_afa_cookie_lookup -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf150b238 mlxsw_core_trap_state_set EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf2ca3bae mlxsw_core_res_query_enabled EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf4909bea mlxsw_core_port_type_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xfdf8e92c mlxsw_core_rx_listener_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xff007c25 mlxsw_core_cpu_port_fini -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0x0c4eecc0 mlxsw_i2c_driver_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0x1281fce4 mlxsw_i2c_driver_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0x080e0a13 mlxsw_pci_driver_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0x8e8337bd mlxsw_pci_driver_register -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0119c422 ocelot_init_timestamp -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x02a03e29 ocelot_port_vlan_filtering -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x05456109 ocelot_ptp_adjfine -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x108b3f81 ocelot_get_sset_count -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x12eb0e9f ocelot_vlan_prepare -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x16d473ec ocelot_sb_pool_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1a91692f ocelot_ptp_verify -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1d00aad1 ocelot_vcap_filter_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x263e0875 ocelot_sb_port_pool_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x26b78410 ocelot_port_bridge_leave +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0x4ab136d8 mlxsw_i2c_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0xe3c1c6d5 mlxsw_i2c_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0x1a806de0 mlxsw_pci_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0xb7807731 mlxsw_pci_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0035a071 ocelot_init +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x064b9bc5 ocelot_get_sset_count +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x09958820 ocelot_port_vlan_filtering +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0ed43669 ocelot_devlink_sb_unregister +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0fff2a0b ocelot_deinit_port +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1184f4cd ocelot_can_inject +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1604d735 ocelot_port_bridge_leave +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1eb5f019 ocelot_port_lag_leave +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1fb5b889 ocelot_port_policer_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x238dedd0 ocelot_ptp_adjfine +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x266b6e05 ocelot_vcap_filter_del EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x274a0e05 ocelot_port_fdb_do_dump -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x29bdac36 ocelot_mrp_add_ring_role -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2c29f0af ocelot_fdb_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2ca6d4ec ocelot_port_policer_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2d395e46 ocelot_sb_pool_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3754bde1 ocelot_mact_forget -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x381101dd ocelot_sb_tc_pool_bind_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3af52633 ocelot_apply_bridge_fwd_mask -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3c29a568 ocelot_ptp_adjtime -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3c467a85 ocelot_port_lag_change -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x40b87f25 ocelot_port_lag_leave -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x44113a7a ocelot_init -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x48f71e49 ocelot_port_bridge_join -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4ecbf44f ocelot_port_policer_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5159a1aa ocelot_devlink_sb_unregister -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5352ae80 ocelot_mrp_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x55169416 ocelot_deinit_timestamp -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x56476b48 ocelot_vlan_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x588ca6e9 ocelot_can_inject -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5b6c5c5f ocelot_vcap_filter_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x68694779 ocelot_hwstamp_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6b784594 ocelot_drain_cpu_queue -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6f97e5bd ocelot_get_ts_info -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x75223e75 ocelot_hwstamp_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7953333a ocelot_port_mdb_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7b5d7a29 ocelot_set_ageing_time -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x82eceb18 ocelot_xtr_poll_frame -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8465e2fe ocelot_sb_occ_port_pool_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x880129f8 ocelot_sb_tc_pool_bind_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x28fc4e9c ocelot_sb_pool_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x293c6673 ocelot_vcap_filter_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2a94b8ba ocelot_xtr_poll_frame +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2b82f4ee ocelot_vlan_prepare +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x316d9806 ocelot_init_timestamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x331d538a ocelot_port_lag_join +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x41dbaf8c ocelot_port_txtstamp_request +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4244e5e2 ocelot_ptp_settime64 +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x46ee2288 ocelot_get_max_mtu +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x51f7377f ocelot_ptp_verify +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x52efbc01 ocelot_mrp_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x52f2d5e4 ocelot_apply_bridge_fwd_mask +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x550dfcd5 ocelot_port_inject_frame +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x58d5f0ad ocelot_fdb_dump +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5cfe2fcd ocelot_set_ageing_time +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5ecccda7 ocelot_deinit_timestamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6458b326 ocelot_port_mdb_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6784b6bb ocelot_sb_tc_pool_bind_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6f779424 ocelot_port_pre_bridge_flags +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x71b1adb2 ocelot_init_port +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x739b5fd0 ocelot_fdb_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7c6c212c ocelot_sb_occ_tc_port_bind_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7d287646 ocelot_drain_cpu_queue +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x810eb629 ocelot_deinit +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x815c3c5d ocelot_ptp_adjtime +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x845dcb57 ocelot_port_lag_change +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x85f4c03d ocelot_sb_pool_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8747994a ocelot_hwstamp_set EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8a85c6a8 ocelot_vcap_block_find_filter_by_id -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8e5a8fde ocelot_port_inject_frame -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8fe5a3ff ocelot_sb_port_pool_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9068a14e ocelot_ptp_gettime64 -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x91bcd4aa ocelot_deinit_port -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x92ddd8b1 ocelot_port_set_maxlen -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9cc54d3b ocelot_mact_learn -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9fa5fff8 ocelot_get_max_mtu -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa2803d97 ocelot_ptp_settime64 -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa2b128a5 ocelot_sb_occ_tc_port_bind_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa4312e55 ocelot_mrp_del_ring_role -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xaa57cf8d ocelot_sb_occ_snapshot -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc07cd406 ocelot_fdb_dump -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc8e4eab7 ocelot_port_mdb_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc9a392d5 ocelot_bridge_stp_state_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xcce7b7da ocelot_init_port -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xceb43b0c ocelot_get_ethtool_stats -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd2003dd5 ocelot_port_txtstamp_request -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd39444f5 ocelot_vlan_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd7cdc822 ocelot_port_bridge_flags -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xdb92ab26 ocelot_get_strings -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe6d4b21e ocelot_port_pre_bridge_flags -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe7e504da ocelot_deinit -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xea5b87ea ocelot_ptp_enable -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xebd789bb ocelot_sb_occ_max_clear -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xeff516f6 ocelot_devlink_sb_register -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf185ec39 ocelot_fdb_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf32f8b41 ocelot_mrp_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf6cbefde ocelot_get_txtstamp -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfcbb6158 ocelot_port_lag_join -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x254a4103 qed_get_iscsi_ops +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x91f53222 ocelot_vlan_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x92617498 ocelot_sb_occ_port_pool_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9402baa4 ocelot_get_ethtool_stats +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9566a448 ocelot_sb_tc_pool_bind_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa17a6953 ocelot_port_mdb_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa612545c ocelot_sb_occ_snapshot +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb77aeaf9 ocelot_mrp_del_ring_role +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbc3c45f0 ocelot_ptp_gettime64 +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbde747b4 ocelot_sb_port_pool_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc5237a30 ocelot_ptp_enable +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xcdf0db88 ocelot_get_txtstamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd0aded95 ocelot_get_strings +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd33007c3 ocelot_vlan_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd5045cf3 ocelot_sb_occ_max_clear +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd74123f9 ocelot_port_policer_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd91a6839 ocelot_port_set_maxlen +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xda8cbb2a ocelot_sb_port_pool_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xdac25eac ocelot_bridge_stp_state_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xdc05912f ocelot_port_bridge_flags +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe1a3394d ocelot_get_ts_info +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe82bdbf3 ocelot_devlink_sb_register +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xec24a41d ocelot_hwstamp_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xefcb2184 ocelot_mrp_add_ring_role +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf02285a0 ocelot_mrp_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf14575e4 ocelot_port_bridge_join +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf6d07b8e ocelot_mact_learn +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfd63a19f ocelot_fdb_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfd90ce2f ocelot_mact_forget +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x2492efbe qed_get_iscsi_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x37e5d7ba 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 0x6a235ab3 qed_get_fcoe_ops EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x992e03d0 qed_put_fcoe_ops EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x9eeeef48 qed_put_eth_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xd3b2ee10 qed_get_fcoe_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xf33c4a3f qed_get_eth_ops -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x4ff7c04a hdlcdrv_arbitrate -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x666a8433 hdlcdrv_unregister -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x6cca98e6 hdlcdrv_receiver -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x8ec92fd9 hdlcdrv_register -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xec7b9f28 hdlcdrv_transmitter +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x46be299d hdlcdrv_unregister +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x6b9b21d3 hdlcdrv_transmitter +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x89dc3f8e hdlcdrv_register +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xdd6eba8e hdlcdrv_arbitrate +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xea51bf9e hdlcdrv_receiver EXPORT_SYMBOL drivers/net/mdio 0x3e17f466 mdio_set_flag EXPORT_SYMBOL drivers/net/mdio 0x424a69a2 mdio45_ethtool_ksettings_get_npage EXPORT_SYMBOL drivers/net/mdio 0x60443957 mdio45_probe @@ -3045,1411 +3045,1414 @@ 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 0x4b79ece9 mdiobb_read -EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0x816195cd alloc_mdio_bitbang -EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0x9b863b39 free_mdio_bitbang -EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0xd86cc20a mdiobb_write -EXPORT_SYMBOL drivers/net/mii 0x154a971b generic_mii_ioctl -EXPORT_SYMBOL drivers/net/mii 0x2f81b1b6 mii_check_gmii_support -EXPORT_SYMBOL drivers/net/mii 0x5154ce59 mii_ethtool_set_link_ksettings -EXPORT_SYMBOL drivers/net/mii 0x556f42d9 mii_ethtool_gset -EXPORT_SYMBOL drivers/net/mii 0x9a685f4a mii_check_media -EXPORT_SYMBOL drivers/net/mii 0xaf751f1f mii_ethtool_sset -EXPORT_SYMBOL drivers/net/mii 0xb116c365 mii_nway_restart -EXPORT_SYMBOL drivers/net/mii 0xb618a7cd mii_ethtool_get_link_ksettings -EXPORT_SYMBOL drivers/net/mii 0xc5794212 mii_check_link -EXPORT_SYMBOL drivers/net/mii 0xfef9993b mii_link_ok -EXPORT_SYMBOL drivers/net/pcs/pcs-lynx 0x13626d49 lynx_pcs_create -EXPORT_SYMBOL drivers/net/pcs/pcs-lynx 0x74b25b22 lynx_pcs_destroy -EXPORT_SYMBOL drivers/net/phy/bcm-phy-lib 0x51a9c6e9 bcm54xx_auxctl_write -EXPORT_SYMBOL drivers/net/ppp/pppox 0x0cbd2185 pppox_ioctl -EXPORT_SYMBOL drivers/net/ppp/pppox 0x782abcd9 pppox_unbind_sock -EXPORT_SYMBOL drivers/net/ppp/pppox 0xe072b53d register_pppox_proto +EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0x09ab410e mdiobb_write +EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0x9ea99fb4 alloc_mdio_bitbang +EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0xb84c699d free_mdio_bitbang +EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0xfd7324db mdiobb_read +EXPORT_SYMBOL drivers/net/mii 0x0d99bca3 mii_ethtool_sset +EXPORT_SYMBOL drivers/net/mii 0x4f9fda2f generic_mii_ioctl +EXPORT_SYMBOL drivers/net/mii 0x502a36c3 mii_check_gmii_support +EXPORT_SYMBOL drivers/net/mii 0x67175763 mii_check_media +EXPORT_SYMBOL drivers/net/mii 0x882811a2 mii_ethtool_set_link_ksettings +EXPORT_SYMBOL drivers/net/mii 0x8cd476e7 mii_ethtool_get_link_ksettings +EXPORT_SYMBOL drivers/net/mii 0xb3ae13ea mii_nway_restart +EXPORT_SYMBOL drivers/net/mii 0xc1b11f9d mii_check_link +EXPORT_SYMBOL drivers/net/mii 0xdae413e5 mii_link_ok +EXPORT_SYMBOL drivers/net/mii 0xdc61849b mii_ethtool_gset +EXPORT_SYMBOL drivers/net/pcs/pcs-lynx 0x0371e364 lynx_pcs_create +EXPORT_SYMBOL drivers/net/pcs/pcs-lynx 0xc1e92bd6 lynx_pcs_destroy +EXPORT_SYMBOL drivers/net/phy/bcm-phy-lib 0xd6137915 bcm54xx_auxctl_write +EXPORT_SYMBOL drivers/net/ppp/pppox 0xa95acd1b register_pppox_proto +EXPORT_SYMBOL drivers/net/ppp/pppox 0xbb4979f5 pppox_unbind_sock EXPORT_SYMBOL drivers/net/ppp/pppox 0xe0ff7a18 unregister_pppox_proto -EXPORT_SYMBOL drivers/net/sungem_phy 0x972192ae sungem_phy_probe -EXPORT_SYMBOL drivers/net/team/team 0x7456a66e team_options_change_check -EXPORT_SYMBOL drivers/net/team/team 0x80b48bbf team_option_inst_set_change -EXPORT_SYMBOL drivers/net/team/team 0x9dcc1f70 team_modeop_port_change_dev_addr -EXPORT_SYMBOL drivers/net/team/team 0xab352b84 team_modeop_port_enter -EXPORT_SYMBOL drivers/net/team/team 0xb06cc998 team_mode_unregister -EXPORT_SYMBOL drivers/net/team/team 0xb1567481 team_options_register -EXPORT_SYMBOL drivers/net/team/team 0xb2fd4236 team_options_unregister -EXPORT_SYMBOL drivers/net/team/team 0xbe797996 team_mode_register -EXPORT_SYMBOL drivers/net/usb/usbnet 0x11b53d17 usbnet_device_suggests_idle -EXPORT_SYMBOL drivers/net/usb/usbnet 0x2fb73b85 usbnet_link_change -EXPORT_SYMBOL drivers/net/usb/usbnet 0x80925c7a usbnet_manage_power -EXPORT_SYMBOL drivers/net/wan/hdlc 0x1bc5c456 unregister_hdlc_device -EXPORT_SYMBOL drivers/net/wan/hdlc 0x6401c529 register_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0x73d4849d unregister_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0x7567704d hdlc_close -EXPORT_SYMBOL drivers/net/wan/hdlc 0x7b8d14c9 attach_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0xbe5fcab1 detach_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0xc5365adf alloc_hdlcdev -EXPORT_SYMBOL drivers/net/wan/hdlc 0xcc09dcce hdlc_open -EXPORT_SYMBOL drivers/net/wan/hdlc 0xf9f3f0c0 hdlc_ioctl -EXPORT_SYMBOL drivers/net/wan/hdlc 0xff22d55d hdlc_start_xmit -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x099589af ath_hw_setbssidmask -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x0f4f4c7b ath_key_delete +EXPORT_SYMBOL drivers/net/ppp/pppox 0xe6788c46 pppox_ioctl +EXPORT_SYMBOL drivers/net/sungem_phy 0x2659c120 sungem_phy_probe +EXPORT_SYMBOL drivers/net/team/team 0x025b8c2b team_option_inst_set_change +EXPORT_SYMBOL drivers/net/team/team 0x14935cc5 team_options_unregister +EXPORT_SYMBOL drivers/net/team/team 0x4a336fd7 team_options_register +EXPORT_SYMBOL drivers/net/team/team 0x655abee2 team_mode_register +EXPORT_SYMBOL drivers/net/team/team 0x73971368 team_modeop_port_enter +EXPORT_SYMBOL drivers/net/team/team 0x8ea1bb23 team_options_change_check +EXPORT_SYMBOL drivers/net/team/team 0xbc86dcd4 team_modeop_port_change_dev_addr +EXPORT_SYMBOL drivers/net/team/team 0xc432ef10 team_mode_unregister +EXPORT_SYMBOL drivers/net/usb/usbnet 0x7042128a usbnet_link_change +EXPORT_SYMBOL drivers/net/usb/usbnet 0x71a038f9 usbnet_device_suggests_idle +EXPORT_SYMBOL drivers/net/usb/usbnet 0xf9176dfd usbnet_manage_power +EXPORT_SYMBOL drivers/net/wan/hdlc 0x151a2c86 hdlc_open +EXPORT_SYMBOL drivers/net/wan/hdlc 0x2fed9827 unregister_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x31900102 hdlc_start_xmit +EXPORT_SYMBOL drivers/net/wan/hdlc 0x3be143d3 hdlc_ioctl +EXPORT_SYMBOL drivers/net/wan/hdlc 0x58bc32d6 register_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xabf3025e unregister_hdlc_device +EXPORT_SYMBOL drivers/net/wan/hdlc 0xc51ba1c7 detach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xd1d02434 attach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xfc559b63 hdlc_close +EXPORT_SYMBOL drivers/net/wan/hdlc 0xfd7c7196 alloc_hdlcdev EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x108b188f ath_is_49ghz_allowed +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x17934da7 ath_hw_get_listen_time +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x2ad75ae5 ath_hw_keysetmac +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x3ddca385 ath_key_config EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x4571aea8 ath_is_world_regd -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x4ccc7019 ath_is_mybeacon -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x697e6da2 ath_regd_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x87b2ce76 dfs_pattern_detector_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x8a4fbbc0 ath_key_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x8ab0a81a ath_printk -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x8f9243c6 ath_hw_get_listen_time -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x90552d9d ath_reg_notifier_apply -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x956556c4 ath_hw_cycle_counters_update +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x535a2381 ath_is_mybeacon +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x8abb5ac7 ath_reg_notifier_apply EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xa18f224e ath_regd_find_country_by_name -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xa36ccf94 ath_hw_keyreset -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xb0c2a887 ath_hw_keysetmac +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xa1d88348 ath_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xa8ce58b0 dfs_pattern_detector_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xafd1389d ath_key_delete EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xb6588ba6 ath_bus_type_strings -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xcc9375f4 ath_rxbuf_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xb72a9753 ath_hw_cycle_counters_update +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xc3cd3d66 ath_rxbuf_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xd9deb1c9 ath_regd_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xe0af0681 ath_hw_keyreset EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xf98605d5 ath_regd_get_band_ctl +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xfd4bf264 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 0x0669f1ee ath10k_mac_tx_push_pending -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x06f67f9a ath10k_ce_num_free_src_entries -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x09c92e17 ath10k_warn -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x133958da ath10k_ce_enable_interrupt -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x147d9674 ath10k_ce_completed_recv_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x15c35048 ath10k_core_create -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x24805f7a ath10k_core_register -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x256a90be ath10k_htc_notify_tx_completion -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x294db40f ath10k_ce_deinit_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3828ada7 ath10k_ce_per_engine_service -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x396ec224 ath10k_core_fetch_board_file -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3f644669 __ath10k_ce_rx_num_free_bufs -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x44bcf4b6 ath10k_core_napi_sync_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x44eb9600 ath10k_core_start_recovery -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x465e4547 ath10k_ce_completed_send_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4e18d2c6 ath10k_coredump_new -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x544110d3 ath10k_ce_enable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x55803d28 ath10k_ce_completed_recv_next_nolock -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x59f370ce ath10k_ce_disable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5a8b1a28 ath10k_core_stop -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5caafbe5 ath10k_ce_free_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5f21ded2 ath10k_core_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6e19c41b ath10k_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6f8efb2e ath10k_coredump_get_mem_layout -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x70144bc0 ath10k_core_destroy -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x70526862 ath10k_ce_alloc_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x79fbed5a ath10k_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7a47880e __ath10k_ce_send_revert -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7add78dc ath10k_htc_rx_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7e53ed3a ath10k_bmi_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8674efec ath10k_htt_txrx_compl_task -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8d9629a5 ath10k_htc_tx_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x990bcb8f ath10k_htt_hif_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9f567c21 ath10k_htt_rx_hl_indication -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa311c90f ath10k_ce_dump_registers -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa6ba8502 ath10k_ce_completed_send_next_nolock -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb5227fe6 ath10k_ce_per_engine_service_any -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xbaba43c9 ath10k_ce_init_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xbca2ff5e ath10k_core_napi_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xbd5dc8b4 ath10k_core_free_board_files -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xbe20b780 ath10k_ce_rx_post_buf -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xbf6a0cba ath10k_ce_send -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc25d1013 ath10k_print_driver_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc25e13a3 ath10k_ce_revoke_recv_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc31ba8d9 ath10k_ce_disable_interrupt -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc7aef43d ath10k_ce_free_rri -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc91637f2 ath10k_ce_alloc_rri +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0184ac8d ath10k_ce_completed_recv_next_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x02a21945 __ath10k_ce_rx_num_free_bufs +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x08170056 ath10k_ce_send_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0b0920b1 ath10k_ce_rx_update_write_idx +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x16aca829 ath10k_core_check_dt +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1ecf0590 ath10k_print_driver_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x27180b6e ath10k_ce_disable_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x33355da3 ath10k_htt_t2h_msg_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x336fb655 ath10k_core_napi_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x33d6069f ath10k_ce_send +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x345544c7 ath10k_ce_per_engine_service +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x35ab01ce ath10k_htt_rx_pktlog_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x36dddeba ath10k_htc_tx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3810b261 ath10k_ce_completed_send_next_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3c383867 ath10k_ce_dump_registers +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3f076c26 ath10k_core_register +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4364d4cf ath10k_ce_completed_send_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4d967519 ath10k_mac_tx_push_pending +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x54e3c369 ath10k_htt_hif_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x555701c2 ath10k_ce_num_free_src_entries +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x56d2be19 ath10k_ce_completed_recv_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x56ee17b0 ath10k_core_fetch_board_file +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5804c879 ath10k_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x58595b3f ath10k_ce_revoke_recv_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x592d4200 ath10k_ce_per_engine_service_any +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x601ceac2 ath10k_core_free_board_files +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x677455e7 ath10k_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6f95c59d ath10k_ce_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x736b57d7 ath10k_coredump_new +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x757c50a8 ath10k_coredump_get_mem_layout +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x762b7bf0 ath10k_core_unregister +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7c9be804 ath10k_htc_rx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7fa2a515 ath10k_htc_process_trailer +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x83fae9e0 ath10k_ce_alloc_rri +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x86c19e23 ath10k_ce_init_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8eee9875 ath10k_core_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8f78d684 ath10k_ce_cancel_send_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x94278baf ath10k_htt_rx_hl_indication +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9abefb91 ath10k_ce_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa6986567 ath10k_htt_txrx_compl_task +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa7073eb1 ath10k_core_napi_sync_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xac22725e ath10k_ce_free_rri +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xac5bb52e ath10k_core_start_recovery +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xafcfd504 ath10k_ce_enable_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb92cb350 ath10k_core_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc15bba91 ath10k_htc_notify_tx_completion +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc930cdbc ath10k_ce_deinit_pipe EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc9912b66 __tracepoint_ath10k_log_dbg -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc9ac3cb0 ath10k_ce_cancel_send_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd79713ca ath10k_htt_t2h_msg_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd8b52809 ath10k_htt_rx_pktlog_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd9dd4d49 ath10k_ce_rx_update_write_idx -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xdc168fde ath10k_bmi_read_memory -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xdc240eea ath10k_core_check_dt -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe3b629f9 ath10k_htc_process_trailer -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe8a34967 ath10k_ce_send_nolock -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xedba53f6 ath10k_core_unregister -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x0b7a7dba ath11k_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x1fda9113 ath11k_hal_srng_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x21c66c00 ath11k_core_resume -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x34ac1ca3 ath11k_hal_srng_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x53e4baa6 ath11k_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x5efdde0c ath11k_ce_rx_post_buf -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x6f7ee432 ath11k_debugfs_soc_destroy -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x7610671e ath11k_ce_free_pipes -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x845f2c2c ath11k_core_free -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x85a546c0 ath11k_ce_alloc_pipes -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x872e6a4c ath11k_ce_per_engine_service -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x87bc5d92 ath11k_core_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x8ac6cc52 ath11k_core_suspend -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x99639aa5 ath11k_qmi_deinit_service -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x99f74261 ath11k_dp_service_srng +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xdff468df ath10k_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe2c40f18 ath10k_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe55ce966 ath10k_ce_alloc_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe8f8b02b ath10k_ce_rx_post_buf +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xed2d7e8a ath10k_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xee1b513e __ath10k_ce_send_revert +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xef6a6a56 ath10k_bmi_read_memory +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf1dd5131 ath10k_ce_free_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf619564a ath10k_bmi_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x0305e0cd ath11k_core_resume +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x04bcc78f ath11k_ce_free_pipes +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x08d83f6e ath11k_core_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x09d95bd0 ath11k_ce_get_attr_flags +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x25aa4eaa ath11k_ce_rx_post_buf +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x2efe0066 ath11k_core_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x30c14411 ath11k_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x385fabae ath11k_hal_srng_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x3f83f83c ath11k_core_suspend +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x459d9948 ath11k_ce_per_engine_service +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x52af6944 ath11k_core_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x5bcb8053 ath11k_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x701b410b ath11k_qmi_deinit_service +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x7f8d2466 ath11k_ce_get_shadow_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x7fb74be4 ath11k_core_pre_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x8ffdd55b ath11k_ce_alloc_pipes +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x9046a5e7 ath11k_dp_service_srng EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x9c51bcc4 ath11k_debug_mask -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xa4db11bf ath11k_ce_get_attr_flags -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xa52fc481 ath11k_ce_get_shadow_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xbb1a66de ath11k_core_pre_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xbc7d9918 ath11k_core_alloc -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xdb6385f9 ath11k_warn -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xdca17060 ath11k_ce_cleanup_pipes +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xa0c4aa37 ath11k_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xd275c9a2 ath11k_hal_srng_init EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xf0197188 ath11k_cold_boot_cal -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xf5d71aba ath11k_core_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x0ecd3801 ath6kl_core_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xf23cb97c ath11k_core_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xf858b08b ath11k_debugfs_soc_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xfde7ce8d ath11k_ce_cleanup_pipes +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x05e6d6e5 ath6kl_core_init EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x1354043d ath6kl_warn -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x26897fec ath6kl_core_destroy -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x31d811de 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 0x36c41227 ath6kl_core_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x3b4fce3a ath6kl_cfg80211_suspend -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x8c971c90 ath6kl_cfg80211_resume +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x41af5030 ath6kl_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x77eb8ac0 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 0xad31f751 ath6kl_core_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x973c1531 ath6kl_cfg80211_resume +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xa3edf435 ath6kl_core_rx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xa6d46676 ath6kl_read_tgt_stats EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xb881b1a9 ath6kl_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xb89f3ca9 ath6kl_core_destroy EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xb9a689dd ath6kl_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xc3bdec00 ath6kl_read_tgt_stats -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xc4252bf1 ath6kl_core_create -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xd775391b ath6kl_stop_txrx -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xe75d6104 ath6kl_hif_intr_bh_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x03fb7de0 ath9k_cmn_process_rate -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x09c5a097 ath9k_cmn_reload_chainmask -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x1cbc39e6 ath9k_cmn_process_rssi -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x1e6bf698 ath9k_cmn_init_crypto -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x253482dd ath9k_cmn_get_channel -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x25cf3d23 ath9k_cmn_init_channels_rates -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2897a02e ath9k_cmn_debug_phy_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x300aef04 ath9k_cmn_beacon_config_sta -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x339a2288 ath9k_cmn_spectral_init_debug -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x3c0f6ffd ath9k_cmn_spectral_scan_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x476bc31f ath9k_cmn_beacon_config_adhoc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x4fe72835 ath9k_cmn_setup_ht_cap -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x586b03ad ath9k_cmn_spectral_deinit_debug -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x60027057 ath9k_cmn_spectral_scan_trigger -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x786eb799 ath9k_cmn_debug_recv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb38a3027 ath9k_cmn_rx_skb_postprocess -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb48a4ea4 ath9k_cmn_beacon_config_ap +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xbf8799f4 ath6kl_core_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xe1e51137 ath6kl_hif_intr_bh_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xea4ad11f ath6kl_cfg80211_suspend +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xfae8ab03 ath6kl_core_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x1b709608 ath9k_cmn_beacon_config_sta +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x201ab987 ath_cmn_process_fft +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2d4034f9 ath9k_cmn_reload_chainmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x32f71c80 ath9k_cmn_init_channels_rates +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x4154bad0 ath9k_cmn_rx_skb_postprocess +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x41745d46 ath9k_cmn_setup_ht_cap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x4fa453a2 ath9k_cmn_debug_modal_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x65df6d40 ath9k_cmn_debug_base_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x77c7e243 ath9k_cmn_beacon_config_ap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x7cfc5044 ath9k_cmn_debug_recv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x8d0cd0e6 ath9k_cmn_update_txpow +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x9071aa7e ath9k_cmn_init_crypto +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x92637809 ath9k_cmn_get_channel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x9422626d ath9k_cmn_spectral_deinit_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xa6ce6a4e ath9k_cmn_spectral_scan_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xac21f771 ath9k_cmn_rx_accept +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb4f166c2 ath9k_cmn_process_rssi EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb76fccc7 ath9k_cmn_debug_stat_rx +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xcfe2567e ath9k_cmn_spectral_scan_trigger +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd11cc835 ath9k_cmn_process_rate +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd1e38cd6 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 0xd35d702e ath9k_cmn_get_hw_crypto_keytype -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xdd264d8a ath9k_cmn_debug_base_eeprom -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xe133fd1d ath9k_cmn_debug_modal_eeprom -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xe96830e2 ath9k_cmn_rx_accept -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf4273e83 ath9k_cmn_update_txpow -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf6c4a49a ath_cmn_process_fft -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x00ef43cb ar9003_hw_bb_watchdog_dbg_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x03fed357 ath9k_hw_reset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x04887d3d ath9k_hw_getchan_noise -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x054cdeed ath9k_hw_btcoex_set_weight -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x06a4df8c ath9k_hw_btcoex_init_scheme -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x09c34c3a ath9k_hw_enable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0afbdd64 ath9k_hw_gpio_request_out -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0b243315 ath9k_hw_setmcastfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0bb8891f ath9k_hw_process_rxdesc_edma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0c1c5481 ath9k_hw_init_btcoex_hw -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0ed87e9c ath9k_hw_btcoex_set_concur_txprio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd5947f97 ath9k_cmn_beacon_config_adhoc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xe4779afb ath9k_cmn_debug_phy_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xfb458187 ath9k_cmn_spectral_init_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x00093fb7 ath9k_hw_disable_mib_counters +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x01c0a6f8 ath9k_hw_btcoex_bt_stomp +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x01ebbc22 ath9k_hw_reset_calvalid +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0765e1f6 ath9k_hw_loadnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x077870ca ar9003_mci_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0c9020d4 ath9k_hw_process_rxdesc_edma EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0f77dafc ath9k_hw_get_tsf_offset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x15bb1a85 ath9k_hw_set_rx_bufsize -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x15daa24d ath9k_hw_addrxbuf_edma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1692bbeb ath9k_hw_putrxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x171e0c41 ath9k_hw_settsf64 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1c0e9702 ath9k_hw_set_gpio -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1c9e6ed2 ath9k_hw_gen_timer_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x21ffd213 ath9k_hw_btcoex_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x23d569da ath9k_hw_startpcureceive -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x253a0c6c ar9003_mci_send_message -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2604de5a ath9k_hw_stop_dma_queue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x26ee7f0f ath9k_hw_btcoex_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x28519626 ath9k_hw_getnf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2d90c9f2 ar9003_mci_setup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3457c547 ath9k_hw_btcoex_init_mci -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x35586746 ath9k_hw_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x35e02dc7 ath9k_hw_set_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x35e6ef7d ath9k_hw_name -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x367c318d ath9k_hw_puttxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x36b0decf ar9003_hw_bb_watchdog_check -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x42a21ee6 ath9k_hw_gettsf64 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x42d31b66 ath9k_hw_setopmode -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x49362e09 ath9k_hw_disable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4b08d726 ath9k_hw_gettxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4eddea4f ath9k_hw_updatetxtriglevel -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x50811ed5 ath9k_hw_btcoex_init_2wire -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x528e8144 ar9003_paprd_populate_single_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5577b9a8 ar9003_mci_set_bt_version -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x59883dcd ar9003_mci_cleanup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5a906068 ath9k_hw_beaconinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5c8d427b ar9003_mci_send_wlan_channels -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5ecebdff ath9k_hw_btcoex_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5eea9448 ath9k_hw_setrxabort -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6406cced ath9k_hw_ani_monitor -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x699fbad6 ath9k_hw_phy_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6ab83420 ath9k_hw_set_sta_beacon_timers -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6e750938 ath9k_hw_numtxpending -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x713411c4 ar9003_mci_get_interrupt -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x71eb35b7 ath9k_hw_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x762bb144 ath9k_hw_gpio_request_in -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x770300b7 ath9k_hw_wait -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x77377ace ath9k_hw_get_txq_props -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x78703991 ar9003_paprd_setup_gain_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7a66c6d9 ath9k_hw_gen_timer_stop -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7a8e9410 ath9k_hw_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7c5715c7 ath9k_hw_txstart -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7dae7c8d ath9k_hw_computetxtime -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7e2ddf45 ar9003_mci_get_next_gpm_offset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8338196b ath9k_hw_abort_tx_dma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x879e2fc6 ar9003_get_pll_sqsum_dvc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8bd556c0 ath9k_hw_bstuck_nfcal -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8d64b373 ar9003_paprd_init_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8fde3232 ar9003_is_paprd_enabled -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x94690bd1 ath9k_hw_init_global_settings -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x99c10a9e ath9k_hw_set_txq_props -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9ea54f42 ath9k_hw_intrpend -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa1ddc68c ath9k_hw_setuptxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa25cad80 ath9k_hw_setuprxdesc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa59f211c ath9k_hw_getrxfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa5ead06c ath9k_hw_setantenna -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa67559c7 ath9k_hw_beaconq_setup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaa1236e5 ath9k_hw_resettxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xad7e8a7b ath9k_hw_setrxfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaf64a83f ath9k_hw_abortpcurecv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb12f2f71 ath_gen_timer_free -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb2b1b0be ath9k_hw_rxprocdesc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb4044fe5 ath9k_hw_set_tsfadjust -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb48abc60 ath9k_hw_wow_apply_pattern -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb4c95ed8 ath9k_hw_btcoex_init_3wire -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb86ecd71 ath9k_hw_reset_calvalid -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb9905e13 ath9k_hw_gpio_get -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbbbc7e91 ath9k_hw_write_associd -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbf92dd93 ath9k_hw_check_alive -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc5478f02 ath_gen_timer_isr -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc837c374 ath9k_hw_resume_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc86d2649 ath9k_hw_loadnf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc87beb3f ar9003_mci_state -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc9627def ath9k_hw_reset_tsf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcaa37a4f ath9k_hw_btcoex_bt_stomp -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcc0eabba ar9003_paprd_is_done -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcedb9892 ath9k_hw_wow_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd53cd11d ath9k_hw_releasetxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd77e939c ath9k_hw_set_txpowerlimit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xde3d8b7d ath9k_hw_wow_wakeup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdf63923a ar9003_hw_disable_phy_restart -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdfee1b41 ath9k_hw_setup_statusring -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe1e91d28 ath9k_hw_set_tx_filter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe480eeb2 ath9k_hw_gettsf32 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe4f9343f ar9003_paprd_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe7d3e069 ath9k_hw_stopdmarecv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe91780ea ath9k_hw_disable_mib_counters -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xed9ee48d ath_gen_timer_alloc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf13db1ec ath9k_hw_gpio_free -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf18af7d6 ath9k_hw_check_nav -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf5ec8cb7 ath9k_hw_kill_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf61d6af9 ar9003_paprd_create_curve -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xff49e3f8 ath9k_hw_setpower -EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x7269abb8 atmel_open -EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0xa18a2a2b init_atmel_card -EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0xd4712892 stop_atmel_card -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x0fb6b146 brcmu_pktq_penq_head +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x10544ce9 ath9k_hw_set_gpio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x12c8c006 ath9k_hw_setopmode +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x14d75eba ath9k_hw_setup_statusring +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x165a0e44 ath9k_hw_init_btcoex_hw +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x17197c9f ath9k_hw_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1a3c5975 ar9003_mci_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1e018dff ar9003_mci_get_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x214cfa04 ath9k_hw_name +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x28c1da67 ath9k_hw_btcoex_init_mci +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x31373bb1 ar9003_paprd_populate_single_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x317638b4 ath9k_hw_puttxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x320f68ba ath9k_hw_rxprocdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x34c5c91d ath9k_hw_setrxabort +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x368be287 ath9k_hw_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x39f5dce7 ath9k_hw_wow_wakeup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x39f94ba9 ath9k_hw_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3a4a8837 ath9k_hw_ani_monitor +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3ae67a63 ath9k_hw_check_nav +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3d0e0dfd ath9k_hw_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3da8f6c3 ath9k_hw_wow_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4298ac56 ath9k_hw_stopdmarecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x440906f7 ath_gen_timer_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4462e515 ath9k_hw_set_sta_beacon_timers +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4efb840b ar9003_mci_set_bt_version +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5040ce93 ath9k_hw_btcoex_init_scheme +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x50bba1a2 ath9k_hw_btcoex_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x52434b94 ar9003_paprd_create_curve +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x530d1d9c ath9k_hw_getchan_noise +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x53acf127 ath9k_hw_gettsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x53c70e85 ath9k_hw_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x54f6256d ath9k_hw_wow_apply_pattern +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x552c5572 ath9k_hw_setpower +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x56d2a82f ath9k_hw_set_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x580b3d93 ath9k_hw_gettxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5ab1179f ath9k_hw_beaconinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5c2d5034 ath9k_hw_btcoex_set_weight +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6509e988 ath9k_hw_stop_dma_queue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x65c3e5a7 ath9k_hw_wait +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x67541d10 ath9k_hw_getnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6b552b25 ath9k_hw_get_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7344834e ath9k_hw_gpio_get +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7493171a ath9k_hw_kill_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x773aa9e7 ath9k_hw_set_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7ac80226 ath9k_hw_btcoex_init_2wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7d77c063 ath9k_hw_setuprxdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7d8bc970 ath9k_hw_init_global_settings +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x873fbf2c ath9k_hw_setmcastfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x88779b14 ath9k_hw_btcoex_set_concur_txprio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9194f0aa ath9k_hw_gen_timer_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x91cbd5cd ath9k_hw_settsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x94c3edb2 ath9k_hw_computetxtime +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x97b0a5d5 ath9k_hw_gpio_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9a647886 ath9k_hw_abort_tx_dma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa0e56201 ath9k_hw_releasetxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa26eb689 ath9k_hw_gpio_request_out +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa30c0253 ath9k_hw_abortpcurecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa37f99db ath9k_hw_startpcureceive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa589bf6f ath9k_hw_resettxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa62b9979 ar9003_hw_bb_watchdog_check +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xac802b91 ar9003_mci_send_message +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xafb86615 ar9003_mci_state +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb07b75da ar9003_mci_send_wlan_channels +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb613720c ath9k_hw_set_tsfadjust +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb7a5f97c ar9003_paprd_setup_gain_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb7ea9b07 ath9k_hw_btcoex_init_3wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb9ce3666 ath9k_hw_write_associd +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xba46a95a ath9k_hw_resume_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbaa6d4e3 ath9k_hw_set_txpowerlimit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbe86c2a9 ath9k_hw_reset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbeb96815 ath9k_hw_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbf8633ab ar9003_is_paprd_enabled +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc11287e4 ar9003_paprd_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc225f6ae ath9k_hw_intrpend +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc44e6920 ath9k_hw_setuptxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc9a01497 ath9k_hw_btcoex_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcabf9814 ath9k_hw_putrxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcb384733 ath9k_hw_gpio_request_in +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xccd43aa0 ath9k_hw_set_rx_bufsize +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd1fb4224 ath9k_hw_setantenna +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd31ac2ba ar9003_get_pll_sqsum_dvc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd44ee938 ath9k_hw_numtxpending +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd69c361e ath_gen_timer_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd86e6deb ath9k_hw_check_alive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd96cb17a ath9k_hw_updatetxtriglevel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdbcbd3f7 ath9k_hw_setrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdc9a96eb ath9k_hw_txstart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdd9933ed ath9k_hw_set_tx_filter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdef702a7 ar9003_paprd_is_done +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdf13f323 ar9003_hw_disable_phy_restart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe299f1c1 ath9k_hw_phy_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe60e59ff ath9k_hw_gettsf32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe700eedc ar9003_hw_bb_watchdog_dbg_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe87c9e7d ath9k_hw_beaconq_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe9dc8492 ath9k_hw_getrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xefc4419a ath9k_hw_addrxbuf_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf0e34992 ath9k_hw_gen_timer_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf4df5f45 ar9003_paprd_init_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf5b80f3a ath9k_hw_btcoex_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf763c1a4 ath9k_hw_bstuck_nfcal +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf9f2aa27 ar9003_mci_get_next_gpm_offset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfc0b296f ath_gen_timer_isr +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x303120ee stop_atmel_card +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x8ae6605c init_atmel_card +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0xe83f043f atmel_open +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x141f1365 brcmu_pktq_peek_tail +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x1579bf94 brcmu_pktq_mlen EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x1906648e brcmu_boardrev_str -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x1c4bfa4b brcmu_pktq_mlen -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x2e9f7974 brcmu_pktq_pflush -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x5208b74e brcmu_pktq_pdeq_match -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x528da7a8 brcmu_pktq_init -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x7b471de3 brcmu_pktq_mdeq -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x7c7e6a49 brcmu_pktq_flush -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x92ec3aed brcmu_pkt_buf_get_skb -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x9d1ac361 brcmu_pktq_pdeq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x2191d89f brcmu_pktq_pdeq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x36271155 brcmu_pktq_pdeq_tail +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x505289cf brcmu_pkt_buf_free_skb +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x506b4e6e brcmu_pktq_flush +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x5d8fbf7f brcmu_pktq_penq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x6cef7294 brcmu_pktq_pdeq_match +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x82a560dc 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 0xcb91718b brcmu_pkt_buf_free_skb +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xab0da442 brcmu_pktq_pflush +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xc053137e brcmu_pkt_buf_get_skb EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xd6217d91 brcmu_d11_attach -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xd8ddd018 brcmu_pktq_peek_tail -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xe32b3a22 brcmu_pktq_pdeq_tail -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xfd985bd4 brcmu_pktq_penq -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x03123184 free_libipw -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x16b84724 libipw_txb_free -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x2e344ea0 libipw_freq_to_channel -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x44e3a7ab libipw_get_channel_flags -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x4a4a61ca libipw_set_geo -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x53cc1414 libipw_get_geo -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x5f13d1bb libipw_channel_to_index -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x7746c8cf libipw_wx_set_encode -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x86da3a34 libipw_channel_to_freq -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x8ddf4fce libipw_wx_get_encodeext -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xa0b9f7d8 libipw_wx_get_encode -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xa4997a03 libipw_get_channel -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xa8c69132 libipw_rx -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xb3aeb76a alloc_libipw -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xd7e70dd1 libipw_rx_mgt -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xd854e0e1 libipw_networks_age -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xe16a3f5d libipw_wx_set_encodeext -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xeef3aa53 libipw_wx_get_scan -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xfcca5e7a libipw_xmit -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xfd9f66ee libipw_is_valid_channel -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x018572a5 il_get_single_channel_number -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x01c66abd il_txq_update_write_ptr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x07000855 il_hdl_csa -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x076ed0ae il_fill_probe_req -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x088e7779 il_clear_ucode_stations -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x106142da il_leds_exit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x13fdd53b il_is_ht40_tx_allowed -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x155c25c6 il_apm_stop -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x16010e38 il_tx_cmd_protection -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x16b70854 il_write_targ_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1aff8356 il_send_cmd_pdu_async -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1be717c8 il_set_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1c155f60 il_set_tx_power -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x21c36dea il_usecs_to_beacons -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2255ee84 il_rd_prph -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2566f507 il_eeprom_init +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xe632c0b2 brcmu_pktq_penq_head +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xf5fe45d0 brcmu_pktq_mdeq +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x0f0c023f libipw_txb_free +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x0f39f201 libipw_is_valid_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x10192dba alloc_libipw +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x11cc8d98 libipw_wx_set_encodeext +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x2989ce7d libipw_rx_mgt +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x298b5641 libipw_get_geo +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x308b1a41 libipw_wx_set_encode +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x3e845bc2 libipw_wx_get_encodeext +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x7dbbfea4 libipw_set_geo +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x84eee48f free_libipw +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x87bbee8b libipw_networks_age +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x90b8bb1a libipw_get_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x999eb6a7 libipw_channel_to_freq +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xb0f6b997 libipw_rx +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xc1c1c3c1 libipw_get_channel_flags +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xcb2f065e libipw_channel_to_index +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xcbc23eec libipw_wx_get_encode +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xe3da0d1f libipw_freq_to_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xe6ad9c13 libipw_xmit +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xfb7c4ced libipw_wx_get_scan +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x028d4f22 il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x084907de il_send_cmd_sync +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0b647513 il_txq_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x138395ce il_is_ht40_tx_allowed +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x13f3cfb5 il_force_reset +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1577278f il_clear_ucode_stations +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1bdd2af9 il_set_rxon_channel +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1dbc77de il_power_initialize +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1f95fb61 il_leds_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x20714b2a il_send_bt_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x22f9e3eb il_cancel_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x230a457a il_init_geos +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x23ad34da il_mac_hw_scan +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x24f97291 il_get_channel_info +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x26af5590 _il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x27fc98e1 il_rx_queue_space +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x29608614 il_mac_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2aad0662 il_power_update_mode EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2bf7eea6 il_queue_space -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2e093483 il_rx_queue_alloc -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x31a5957c il_mac_change_interface -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x33978916 il_get_active_dwell_time -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3b81f538 il_init_scan_params -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3bc87111 il_send_cmd -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3e1e4fc0 il_mac_conf_tx -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x406bf4cd il_power_update_mode -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x40a624be il_mac_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2cf33343 il_eeprom_query16 +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x33c6d235 il_init_scan_params +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x367b5171 il_mac_add_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x372e22aa il_set_rate +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x37b3c582 il_mac_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x394a9d06 il_hdl_pm_debug_stats +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x398f0725 il_send_stats_request +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x39e74b05 il_chswitch_done +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3b403d15 il_free_txq_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x406dc89b il_free_geos EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x416bd26a il_debug_level -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4490a587 il_init_geos -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x480ca858 il_mac_hw_scan -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x48a4dbbb il_send_stats_request -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x48ca5a64 il_mac_bss_info_changed -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4db1e70e il_mac_remove_interface -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4e487b65 il_tx_cmd_complete -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4f51d616 il_update_stats -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x515f1763 il_cmd_queue_free -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x51f485d6 il_send_add_sta -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x526cd80d il_dbgfs_unregister -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x543161d9 il_full_rxon_required -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x55205fc0 il_free_channel_map -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x55d71a23 il_wr_prph -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x615bb024 il_pm_ops -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x65132827 il_power_initialize -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x66c759b7 il_hdl_pm_sleep -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x679f2cfb il_connection_init_rx_config -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x67a6ee0e il_dbgfs_register -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x67ea39d1 il_get_passive_dwell_time -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x69fd8964 il_send_cmd_sync -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6a178e85 il_cmd_queue_unmap -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6ddc69a3 il_irq_handle_error -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7131de1a il_mac_flush -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x725ecc1e il_hdl_pm_debug_stats -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x737f9a66 il_tx_queue_unmap -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x73eac3de il_tx_queue_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7b5b02fe il_apm_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x810ca393 il_set_rxon_hwcrypto -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x89aad943 il_set_flags_for_band -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8c966b16 il_add_station_common -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8e21297b il_setup_rx_scan_handlers -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x905a00dd il_check_rxon_cmd -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x92660cd5 il_mac_reset_tsf -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x92db99d0 il_eeprom_query16 -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x94285537 il_mac_add_interface -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x97c6f400 il_read_targ_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x99661caf il_send_bt_config -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9a9208cd il_get_channel_info -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9c8b5506 il_set_rate +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x41a5e462 il_set_tx_power +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x41eadda6 il_hdl_csa +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x452daf60 il_get_passive_dwell_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5115caae il_read_targ_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x53bc7b3a il_mac_bss_info_changed +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5853355e il_add_station_common +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5d3b06fa il_dbgfs_register +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5f70eaa3 il_restore_stations +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x601e1f0c il_alloc_txq_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x62eaea22 il_check_rxon_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x64d4466c il_set_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x65531f41 il_set_rxon_ht +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x67e45112 il_cmd_queue_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6838a891 il_mac_sta_remove +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6b9ab9fa il_tx_cmd_protection +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x71751974 il_send_cmd_pdu +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x732e2759 il_mac_flush +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7399c645 il_rd_prph +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x76771734 il_rx_queue_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x777e2470 il_fill_probe_req +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7791dfb9 il_full_rxon_required +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7dbfc6c0 il_set_rxon_hwcrypto +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7e17cd8e il_eeprom_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7e7271fb il_setup_rx_scan_handlers +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x818ce356 il_eeprom_query_addr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x85981650 il_dbgfs_unregister +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8601dd77 il_tx_queue_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x883bdede il_setup_watchdog +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8970c597 il_mac_conf_tx +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8ed9350e il_tx_queue_reset +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8fc0d0e0 il_pm_ops +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x916d6e50 il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9aa07246 il_usecs_to_beacons +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9b3a9fa4 il_scan_cancel_timeout EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9cc714af il_bg_watchdog -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9d9281db il_cancel_scan_deferred_work -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa40402e3 il_set_rxon_channel -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa7ca7947 il_get_lowest_plcp -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa88586f9 il_clear_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xaa7e2a55 il_get_free_ucode_key_idx -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xab5ee5ba il_hdl_error -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb10b924c il_scan_cancel -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb1cbfa90 il_set_decrypted_flag -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb372acd3 il_scan_cancel_timeout +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9f0bffcb il_tx_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa142e3ad il_scan_cancel +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa186aebf il_mac_remove_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa1fcbf0f il_clear_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa38fff37 il_apm_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa5710485 il_set_flags_for_band +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa5af28a0 il_cmd_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa7decf05 il_hdl_pm_sleep +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb1a373c9 il_leds_exit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb2324cac il_send_rxon_timing +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb4e1d61e il_rx_queue_alloc +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb57e264f il_connection_init_rx_config EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb65510a3 il_get_cmd_string +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb72f5da4 il_add_beacon_time EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb7bd33ff il_isr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb8ac2e95 il_init_channel_map -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbdfec74a il_setup_watchdog -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbefeae21 il_free_txq_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc0919fed il_send_rxon_timing -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc32b0661 il_restore_stations -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd1b14c10 il_hdl_spectrum_measurement -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd1edbb53 il_free_geos -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd62a23b3 il_mac_sta_remove -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd8f273e3 il_set_rxon_ht -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd9a8cc34 il_poll_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd9f1492e il_chswitch_done -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xda332da3 il_eeprom_query_addr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdada7f41 il_rx_queue_space -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xded30f2f il_tx_queue_reset -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdefea50e _il_apm_stop -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe177b01d il_leds_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe312ab58 il_force_reset -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe5b78349 il_add_beacon_time -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe7226306 il_send_cmd_pdu -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xeb92b52a il_send_lq_cmd -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xef77c3a0 _il_poll_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xef9a46a0 il_setup_scan_deferred_work -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf041f723 il_tx_queue_free -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf2cf95de il_rx_queue_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbc7bfca7 il_mac_change_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc16000c9 il_send_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc1882fab il_update_stats +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc4df0c08 il_irq_handle_error +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc857626a il_send_lq_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd1568773 il_get_free_ucode_key_idx +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd7fb6c90 il_eeprom_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdda1c14c il_send_add_sta +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xddc2ae5d il_wr_prph +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdfd0d61d il_send_cmd_pdu_async +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe0969dc2 il_hdl_spectrum_measurement +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe45bbe10 il_get_lowest_plcp +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xee46d165 il_set_decrypted_flag +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf2d910de il_tx_cmd_complete EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf70a693b il_bcast_addr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf94645fe il_eeprom_free -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xff25593b il_alloc_txq_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x09a0026c __traceiter_iwlwifi_dev_ucode_wrap_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf81381cc il_write_targ_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf82ac873 il_free_channel_map +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf83857b6 il_hdl_error +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfc80dd52 il_tx_queue_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfcb88921 _il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfd18d689 il_setup_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfd529166 il_init_channel_map +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfd9d298c il_get_active_dwell_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfed64991 il_get_single_channel_number +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x136ccd8b __traceiter_iwlwifi_dev_ucode_cont_event EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1c5036c0 __tracepoint_iwlwifi_dev_ucode_wrap_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x27c8b3aa __traceiter_iwlwifi_dev_ucode_event EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x466ae44d __SCK__tp_func_iwlwifi_dev_ucode_wrap_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x6f83a0b5 __traceiter_iwlwifi_dev_ucode_cont_event EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x6ff0d5fc __tracepoint_iwlwifi_dev_ucode_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x7f7ead9e __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 0xd1e69877 __SCK__tp_func_iwlwifi_dev_ucode_cont_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe36b0cc2 __traceiter_iwlwifi_dev_ucode_event +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x0210508c prism2_update_comms_qual EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x0ad69602 hostap_set_multicast_list_queue EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x13abdd5a hostap_dump_tx_header -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x1c574a25 hostap_set_string -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x1f04348c hostap_set_encryption -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x1f4d7b3a hostap_master_start_xmit -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x2edf1f1f hostap_set_hostapd -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x31ef1074 hostap_80211_ops -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x369538f4 hostap_info_init -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x5c734926 hostap_remove_proc -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x73da4949 hostap_set_roaming -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7877a5c9 hostap_check_sta_fw_version -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7b594a97 hostap_handle_sta_tx_exc -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7e24bf4e hostap_free_data +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x1ef2cd9e hostap_add_interface +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x1f90a150 hostap_set_roaming +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x26e3f7a5 hostap_init_ap_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x3ca1db17 hostap_info_init +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x40332f86 hostap_set_encryption +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x563b8cca hostap_set_auth_algs +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x63fc0dc6 hostap_set_hostapd_sta +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x6a62405d hostap_set_antsel +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7d0d25f5 hostap_check_sta_fw_version +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7d2af43d hostap_remove_proc EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7fb75891 hostap_dump_rx_header -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x81ba8005 hostap_set_auth_algs -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x869715f3 hostap_setup_dev -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x87299e3f hostap_set_word -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x9dcbe58a hostap_info_process -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xa10fe370 hostap_add_interface -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xab1e4b44 hostap_init_data -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xac52db46 hostap_80211_rx -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb1076b51 hostap_set_hostapd_sta -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb3497ac9 hostap_init_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x8cd192a8 hostap_set_word +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x91719144 hostap_set_string +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x9914d31a hostap_setup_dev +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xa06abd46 hostap_get_porttype +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xa867629d hostap_80211_rx +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xab54739a hostap_info_process +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xac6bf3d5 hostap_init_data +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xafee5bd1 hostap_master_start_xmit EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb4b77c8b hostap_80211_get_hdrlen -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xba041fa8 hostap_set_antsel -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xbae11e16 prism2_update_comms_qual -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xd0769a2d hostap_init_ap_proc -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xf977deba hostap_remove_interface -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xfbaeb637 hostap_get_porttype -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x0470a7cc alloc_orinocodev -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x2a0498cd orinoco_init -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x3b9b3e43 orinoco_up -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x5cfc98b8 orinoco_tx_timeout -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x65cda73e orinoco_stop -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x7ca2656c free_orinocodev -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x81264c08 orinoco_down -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x816382f1 orinoco_if_del -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x847012eb orinoco_process_xmit_skb -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x8a19e3bf __orinoco_ev_info -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x91d2f9c4 orinoco_change_mtu -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xa6ee755b __orinoco_ev_rx -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xce2c8ead orinoco_open -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xe764c80c orinoco_if_add +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xc2783bda hostap_80211_ops +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xc5999b7c hostap_init_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xe512d958 hostap_free_data +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xeca32e08 hostap_remove_interface +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xf4d23695 hostap_set_hostapd +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xfd6dddab hostap_handle_sta_tx_exc +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x17f92f71 orinoco_change_mtu +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x2b204a58 orinoco_open +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x31462bce orinoco_set_multicast_list +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x35d27983 orinoco_if_del +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x507615da orinoco_up +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x53c54174 orinoco_stop +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x559d8fd6 orinoco_process_xmit_skb +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x6e81081e orinoco_down +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x813ab43b __orinoco_ev_rx +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x9d15b6af alloc_orinocodev +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xb25c8009 orinoco_init +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xb2c1d37d free_orinocodev +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xbc6b4e36 orinoco_tx_timeout EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xeb06cb81 hermes_struct_init -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xec58908d orinoco_set_multicast_list +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xecf485ec orinoco_if_add +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xf59d90ed __orinoco_ev_info EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xffe27bca orinoco_interrupt -EXPORT_SYMBOL drivers/net/wireless/mediatek/mt76/mt76 0xd8feb414 mt76_wcid_key_setup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0x9f91ffd2 rtl_btc_get_ops_pointer -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x03547855 _rtl92c_phy_bb8192c_config_parafile +EXPORT_SYMBOL drivers/net/wireless/mediatek/mt76/mt76 0xa879de75 mt76_wcid_key_setup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0x12c1526e rtl_btc_get_ops_pointer 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 0x27ed8a2e _rtl92c_phy_set_rf_sleep -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2925b8d1 rtl92c_dm_rf_saving -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2bd3325e _rtl92c_phy_txpwr_idx_to_dbm -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2f365314 rtl92c_phy_set_io_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x357dc58b rtl92c_phy_sw_chnl_callback -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3ce20139 rtl92c_dm_init_rate_adaptive_mask -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4e2fc7b3 rtl92c_phy_lc_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x50c95027 rtl92c_download_fw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x52046d49 rtl92c_dm_check_txpower_tracking -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x55902976 _rtl92c_phy_dbm_to_txpwr_idx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5b1b096a _rtl92c_phy_rf_serial_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5c340109 _rtl92c_phy_fw_rf_serial_write -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x612bfded _rtl92c_phy_rf_serial_write -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x62dbe3f3 rtl92c_bt_rssi_state_change -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x638ce5be _rtl92c_store_pwrindex_diffrate_offset -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6534e626 rtl92c_set_fw_rsvdpagepkt -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x65b7fe99 rtl92c_set_fw_pwrmode_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x69def247 rtl8192_phy_check_is_legal_rfpath -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6bdf221f rtl92c_dm_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7055d317 rtl92c_dm_write_dig -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7ba8e545 rtl92c_phy_set_bw_mode -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x814a721f rtl92c_phy_sw_chnl -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8e4d9c90 rtl92c_dm_bt_coexist -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x95df0d09 rtl92c_firmware_selfreset -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9abd72cc rtl92c_phy_set_bb_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa26eece1 rtl92c_phy_set_io -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa76b5ba7 rtl92ce_phy_set_rf_on -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa81992ec _rtl92c_phy_init_bb_rf_register_definition -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb69de786 rtl92c_set_fw_joinbss_report_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xbd6e1e53 rtl92c_dm_init_edca_turbo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc2859be6 rtl92c_phy_set_txpower_level -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xca82ee91 rtl92c_phy_query_bb_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd0e4a782 rtl92c_dm_watchdog -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xdf4920f0 _rtl92c_phy_fw_rf_serial_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xdf6bddf2 rtl92c_phy_iq_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe2fb2211 rtl92c_fill_h2c_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe51eac6e rtl92c_phy_ap_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf67f6cd0 rtl92c_phy_update_txpower_dbm -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xfb3c964d rtl92c_phy_set_rfpath_switch -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xfb606792 rtl92c_phy_rf_config -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x3848b960 rtl_pci_resume -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x815186fd rtl_pci_disconnect -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x918d8307 rtl_pci_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xda4c7b63 rtl_pci_suspend -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x0da33883 rtl_usb_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x72eb2cbf rtl_usb_resume -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xa129e154 rtl_usb_disconnect -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xc34e9782 rtl_usb_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x271c3711 rtl92c_firmware_selfreset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2f6271d7 rtl92c_phy_set_txpower_level +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x35273264 rtl92c_phy_iq_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3cc9b805 rtl92c_phy_sw_chnl_callback +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5415f4dd _rtl92c_phy_fw_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x56c5801f _rtl92c_phy_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x57352352 rtl92c_phy_set_io_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x592d35f0 _rtl92c_phy_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7307b0ac _rtl92c_phy_set_rf_sleep +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x73f20a91 _rtl92c_phy_init_bb_rf_register_definition +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x75106b5a rtl92c_set_fw_rsvdpagepkt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7dda2b33 rtl92c_phy_query_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x869b3bc9 rtl92c_dm_rf_saving +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x894547c2 rtl92c_dm_check_txpower_tracking +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8959631f rtl92c_phy_set_bw_mode +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8c3db0ae rtl92c_phy_sw_chnl +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9449830c rtl92c_set_fw_joinbss_report_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9abfb5f8 rtl92ce_phy_set_rf_on +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa00cfb27 rtl92c_dm_init_rate_adaptive_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa31d30fd _rtl92c_store_pwrindex_diffrate_offset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa6c00d12 _rtl92c_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa6f6c71a rtl92c_dm_write_dig +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xaeb19bcf rtl92c_dm_bt_coexist +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xaf369227 rtl8192_phy_check_is_legal_rfpath +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb6418b41 rtl92c_phy_rf_config +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xbaab7ce8 rtl92c_phy_lc_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc7d7f553 rtl92c_phy_set_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xcc34ef36 _rtl92c_phy_bb8192c_config_parafile +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xcee7c598 rtl92c_dm_init_edca_turbo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd8a596a8 rtl92c_set_fw_pwrmode_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xddd5c1fe rtl92c_phy_set_io +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xde57fb05 _rtl92c_phy_fw_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe0b427ab rtl92c_download_fw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe2f54e46 rtl92c_dm_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe74fefcd rtl92c_phy_ap_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xec3321d1 _rtl92c_phy_dbm_to_txpwr_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xee71c665 rtl92c_phy_update_txpower_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xef195b9f rtl92c_bt_rssi_state_change +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf0d7bc91 rtl92c_phy_set_rfpath_switch +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf5fa6969 rtl92c_fill_h2c_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xfe7698a1 rtl92c_dm_watchdog +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x48dec539 rtl_pci_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x6ba745be rtl_pci_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xa20798b7 rtl_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xf0e3d78b rtl_pci_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x7713491e rtl_usb_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x8052a770 rtl_usb_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xc04fb52b rtl_usb_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xef58408b rtl_usb_suspend EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0b038e24 channel5g_80m -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x14099901 rtl_send_smps_action -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x189301da rtl_hal_pwrseqcmdparsing +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0ca3965f rtl_cam_empty_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x16c66eee rtl_signal_scale_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1a4d5416 rtl_cam_mark_invalid 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 0x2797bdf4 rtl_efuse_shadow_map_update -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2f7d8563 efuse_one_byte_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x29887895 rtl_ps_disable_nic EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x30a956d7 rtl_query_rxpwrpercentage -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3b16416b rtlwifi_rate_mapping -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3f84ad06 rtl_mrate_idx_to_arfr_id -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x403eda95 rtl_ps_disable_nic -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x41fe94bc rtl_cam_mark_invalid -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x43365e40 rtl_process_phyinfo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3300a873 rtl_get_tcb_desc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x34d14487 rtlwifi_rate_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3f4388f3 efuse_power_switch +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4030e611 rtl_rx_ampdu_apply EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x54824f58 channel5g -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x574bcde5 efuse_power_switch -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x634d535d rtl_ps_enable_nic -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x71200671 rtl_phy_scan_operation_backup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7340c419 rtl_cam_reset_all_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x84a8894f rtl_c2hcmd_enqueue -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x85cbfaf9 rtl_init_rfkill -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x90085511 rtl_cam_del_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x92cd946f rtl_rx_ampdu_apply -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x983698d4 rtl_collect_scan_list -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb0773945 rtl_cmd_send_packet -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb9a75d69 rtl_cam_get_free_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbc83b9fa efuse_shadow_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc07fc972 rtl_cam_add_one_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xca4cd3aa efuse_read_1byte -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd26069e6 rtl_rfreg_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x56ca669b efuse_one_byte_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x64667f2d rtl_hal_pwrseqcmdparsing +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6847d1ed rtl_ps_enable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x736fa9bf rtl_dm_diginit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x739b64d5 efuse_shadow_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x74eff4fd efuse_read_1byte +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x94a7dfa9 rtl_process_phyinfo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x98d88364 rtl_collect_scan_list +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9db2b125 rtl_rfreg_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa05ec56b rtl_cam_del_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa8919b66 rtl_cam_delete_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb311c92b rtl_init_rfkill +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb7eadfbf rtl_bb_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbce637e2 rtl_efuse_shadow_map_update +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbeb20b82 rtl_cam_get_free_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc3940857 rtl_cam_reset_all_entry EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd5873508 rtl_fw_cb -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd7a4e127 rtl_get_tcb_desc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xdb1167f9 rtl_cam_empty_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe308e193 rtl_cam_delete_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe08411bf rtl_c2hcmd_enqueue +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe21b4341 rtl_phy_scan_operation_backup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe8a05510 rtl_cam_add_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xea8bd3aa rtl_mrate_idx_to_arfr_id EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xed7c8cf2 rtl_evm_db_to_percentage -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xedcc3566 rtl_bb_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf4652c4e rtl_dm_diginit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf48ddd8d rtl_signal_scale_mapping -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8723d 0xc8ba2242 rtw8723d_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8821c 0x557a55cf rtw8821c_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822b 0x235a58f0 rtw8822b_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822c 0xcc9833ce rtw8822c_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x0290fd36 rtw_ops -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x02c2d6ab rtw_rx_fill_rx_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x038624d5 rtw_phy_cfg_agc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x0baa4ce6 rtw_coex_write_scbd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1ba618aa rtw_phy_load_tables -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x2242e821 rtw_power_mode_change -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x24bfcdc5 __rtw_dbg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x28b24ac4 rtw_tx_report_enqueue -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x298f9dc1 rtw_phy_set_tx_power_level -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x2efcca38 rtw_unregister_hw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x313db73f rtw_fw_c2h_cmd_rx_irqsafe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf107c99c rtl_cmd_send_packet +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xfba4ba5c rtl_send_smps_action +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8723d 0xb5963907 rtw8723d_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8821c 0x28564e8a rtw8821c_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822b 0x5e7643b5 rtw8822b_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822c 0xb1b4288b rtw8822c_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x01f30778 rtw_bf_enable_bfee_su +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x07280b23 rtw_fw_c2h_cmd_rx_irqsafe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x0bae816c rtw_coex_read_indirect_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x0e3b8c11 rtw_bf_remove_bfee_su +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x0fa5031d rtw_register_hw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1109a93d rtw_phy_read_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x11370238 rtw_parse_tbl_bb_pg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x18e4483b rtw_restore_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1ac084cb rtw_phy_parsing_cfo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1e96cef4 rtw_rx_stats +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x2728f67e rtw_core_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x274e08b6 rtw_phy_write_rf_reg_mix +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x28099849 rtw_coex_write_indirect_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x2f1f33e1 rtw_rx_fill_rx_status EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x33b3f3c0 rtw_debug_mask -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x33ced891 rtw_phy_write_rf_reg_mix +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x33fc1726 rtw_bf_enable_bfee_mu EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x36c5bfca rtw_disable_lps_deep_mode -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x3e70b901 rtw_phy_cfg_mac -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x42fb0f3b rtw_fw_inform_rfk_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x3cf5d0ba rtw_phy_pwrtrack_avg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x3fe17065 rtw_read8_physical_efuse +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x4323de7d rtw_bf_cfg_csi_rate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x4399487d rtw_parse_tbl_phy_cond 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 0x492336f0 rtw_restore_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x4541a5eb rtw_phy_cfg_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x4c5cd821 rtw_parse_tbl_txpwr_lmt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x50683b6d rtw_coex_write_scbd EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x519c8ba9 rtw_rate_size -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x51a8c8be rtw_phy_write_rf_reg_sipi +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x530ea59b rtw_phy_pwrtrack_get_pwridx EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x58210e60 rtw_rate_section -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x587906c0 rtw_tx_fill_tx_desc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5af71b49 rtw_parse_tbl_txpwr_lmt -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x633940d1 rtw_phy_pwrtrack_get_delta -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x69986bb4 rtw_rx_stats -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6cebd4c1 rtw_bf_phy_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6e6b20be rtw_parse_tbl_phy_cond -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7886f94b rtw_phy_read_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7efc6ef9 rtw_register_hw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x80269d62 rtw_bf_set_gid_table -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x825e3f90 rtw_fw_do_iqk -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x85fe326a rtw_dump_fw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x8df2f557 rtw_parse_tbl_bb_pg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x8ff15a39 rtw_bf_remove_bfee_su -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x902c3551 rtw_phy_pwrtrack_need_lck -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x91bc0de4 rtw_core_deinit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x91e3d6f5 rtw_read8_physical_efuse -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x935559f8 rtw_phy_pwrtrack_thermal_changed -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x94ed3dbd rtw_fw_c2h_cmd_isr -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9f7177c9 rtw_phy_cfg_bb -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa1403523 rtw_phy_pwrtrack_need_iqk -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa1611cb5 rtw_phy_pwrtrack_get_pwridx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa202e135 rtw_tx_write_data_h2c_get -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa8cbe950 rtw_phy_read_rf_sipi -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xaf605094 rtw_core_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc6384da9 rtw_tx_write_data_rsvd_page_get -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xcb13651b rtw_phy_get_tx_power_index -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xcbe9eb73 rtw_bf_enable_bfee_mu -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xce1f76c1 rtw_phy_config_swing_table -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xcfde10d5 rtw_bf_cfg_csi_rate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd7781fc8 rtw_coex_read_indirect_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd77e761f rtw_dump_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd7e37e22 rtw_phy_cfg_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd98fc6bc rtw_coex_write_indirect_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xde57efd9 rtw_set_channel_mac -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xde8f23a5 rtw_bf_enable_bfee_su -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe467c6b0 rtw_chip_info_setup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xea83de93 rtw_phy_parsing_cfo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf1830887 check_hw_ready -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xfb134856 rtw_bf_remove_bfee_mu -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xfd6e0319 rtw_phy_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xff796ae6 rtw_phy_pwrtrack_avg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x00efb6df rtw_pm_ops -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x0c31d3c7 rtw_pci_remove -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x84571cda rtw_pci_shutdown -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x870dd21b rtw_pci_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x14564d44 rtw89_core_napi_deinit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x2bcb431d rtw89_core_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x3373d5ff rtw89_core_query_rxdesc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x34970e88 rtw89_ser_notify -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x542b1820 rtw89_phy_read_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x5a008fe7 rtw89_chip_info_setup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x5ca39a80 rtw89_core_register -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x70accf75 rtw89_core_napi_stop -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x71f0c6f2 rtw89_core_fill_txdesc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x91c9ebfd rtw89_core_napi_start -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x9591e285 rtw89_ops -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x9ba1a3a9 rtw89_phy_write_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xa815a995 __rtw89_debug -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xa99a56b9 rtw89_core_deinit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xac2a1427 rtw89_core_napi_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xc7296327 rtw89_core_rx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xdc73d7b7 rtw89_core_unregister -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe20084b9 rtw89_mac_get_err_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6fd7dcac rtw_phy_pwrtrack_get_delta +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x712de55e __rtw_dbg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x73814bce rtw_set_channel_mac +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x73f5be6b rtw_dump_fw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x75390b88 rtw_fw_do_iqk +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x80839af2 rtw_tx_write_data_h2c_get +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x832f8d6f rtw_bf_remove_bfee_mu +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x842cbc60 rtw_phy_config_swing_table +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x8616bf54 rtw_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x873faae6 check_hw_ready +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x87937308 rtw_phy_load_tables +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x8b2ee48a rtw_unregister_hw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x8f6edf41 rtw_phy_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x90d7f657 rtw_phy_get_tx_power_index +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9167029e rtw_phy_pwrtrack_need_iqk +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x99f78fc2 rtw_chip_info_setup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9c78f355 rtw_bf_phy_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xac7fff39 rtw_phy_pwrtrack_thermal_changed +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xaf3dd9d7 rtw_phy_cfg_agc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb13880a4 rtw_phy_set_tx_power_level +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb1b62b05 rtw_core_deinit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb6ea9769 rtw_fw_c2h_cmd_isr +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xbec403ba rtw_phy_write_rf_reg_sipi +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xbecee24a rtw_phy_cfg_bb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xbf983f6f rtw_tx_fill_tx_desc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc66480a3 rtw_phy_pwrtrack_need_lck +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc7015724 rtw_phy_read_rf_sipi +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xcb8c8634 rtw_dump_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xcc2d6411 rtw_fw_inform_rfk_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd7efa894 rtw_tx_write_data_rsvd_page_get +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe983a567 rtw_bf_set_gid_table +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf2ab17af rtw_phy_cfg_mac +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf5fc7a18 rtw_power_mode_change +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xffcfd73f rtw_tx_report_enqueue +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x1c105230 rtw_pci_shutdown +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x9c082b16 rtw_pm_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0xc3ececb6 rtw_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0xf1266e26 rtw_pci_remove +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x12e83ae6 rtw89_core_rx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x223de8ba rtw89_core_unregister +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x22bc5582 rtw89_mac_get_err_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x248b5959 rtw89_ser_notify +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x263586fc rtw89_chip_info_setup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x3a340d75 rtw89_core_napi_start +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x5a884f9a rtw89_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x66ae1990 rtw89_core_napi_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x6c9f3e45 rtw89_core_napi_stop +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x78d608f2 __rtw89_debug +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7f0f4e8f rtw89_phy_read_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x84c4cb08 rtw89_core_register +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xbd1b1833 rtw89_core_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xbe88795e rtw89_phy_write_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xc02cd8d8 rtw89_mac_set_err_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xc9ca23c4 rtw89_core_napi_deinit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xd53e238c rtw89_core_fill_txdesc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xdcbb135b rtw89_core_query_rxdesc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe269c909 rtw89_core_deinit EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe3f57b04 rtw89_debug_mask -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xee4b8784 rtw89_mac_set_err_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xfe75bb02 rtw8852a_chip_info -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x9d3abfed rtw89_pm_ops -EXPORT_SYMBOL drivers/net/wireless/rsi/rsi_91x 0xe870f5a8 rsi_config_wowlan -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x12ca564e wlcore_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xa1e95a3f wlcore_calc_packet_alignment -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xf303f267 wl1271_free_tx_id -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xf358b319 wl12xx_is_dummy_packet -EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x3a9f8e23 fdp_nci_probe -EXPORT_SYMBOL drivers/nfc/fdp/fdp 0xb607c822 fdp_nci_remove -EXPORT_SYMBOL drivers/nfc/microread/microread 0x2d507962 microread_remove -EXPORT_SYMBOL drivers/nfc/microread/microread 0xad47e9c6 microread_probe -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x02974966 nxp_nci_fw_recv_frame -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x81c6bcdc nxp_nci_remove -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xe0e7cc6a nxp_nci_probe -EXPORT_SYMBOL drivers/nfc/pn533/pn533 0xbc00d429 pn533_recv_frame -EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x5c5f2516 pn544_hci_probe -EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x6d9cced3 pn544_hci_remove -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x2beda69b s3fwrn5_remove -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x5548f2a3 s3fwrn5_phy_power_ctrl +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xf5f24383 rtw8852a_chip_info +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x09bca0f4 rtw89_pm_ops +EXPORT_SYMBOL drivers/net/wireless/rsi/rsi_91x 0xd794c866 rsi_config_wowlan +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x0811e8a5 wlcore_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x719e05fa wl12xx_is_dummy_packet +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x73e4bb19 wlcore_calc_packet_alignment +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xca198b1f wl1271_free_tx_id +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x2029cc1a fdp_nci_remove +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x69aed2c5 fdp_nci_probe +EXPORT_SYMBOL drivers/nfc/microread/microread 0x20f96c0f microread_probe +EXPORT_SYMBOL drivers/nfc/microread/microread 0x5faf8703 microread_remove +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xb5ce3b07 nxp_nci_fw_recv_frame +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xbd52d8a9 nxp_nci_probe +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xd7a37c2a nxp_nci_remove +EXPORT_SYMBOL drivers/nfc/pn533/pn533 0x4fd056e9 pn533_recv_frame +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x731cedaa pn544_hci_probe +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0xfa4ef367 pn544_hci_remove +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x268c4f0b s3fwrn5_probe +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x37427073 s3fwrn5_phy_power_ctrl +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x63958217 s3fwrn5_remove EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x774203fc s3fwrn5_phy_set_wake -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xa8575469 s3fwrn5_probe -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xc9f26d46 s3fwrn5_recv_frame +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x9a689611 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 0x495f6f20 ndlc_probe -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x58a8b899 ndlc_remove -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x71b204b7 ndlc_send -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xa4410b12 st_nci_se_io -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xc4222001 ndlc_recv -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xcde67dcb ndlc_close -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xce9e5ca0 st_nci_vendor_cmds_init -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xde02ea3b st_nci_se_init -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xf4a587cc ndlc_open -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xff3b4be2 st_nci_se_deinit -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x1468c472 st21nfca_im_send_dep_req -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x154c6508 st21nfca_hci_probe -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x1d53ecfb st21nfca_im_send_atr_req -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x391fb87f st21nfca_hci_se_io -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x415006ae st21nfca_connectivity_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x5633b9b2 st21nfca_apdu_reader_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x596b05ea st21nfca_hci_disable_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x5da65181 st21nfca_hci_loopback_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x67e2f6ab st21nfca_se_deinit -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x6b137efc st21nfca_hci_remove -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x7ade44f0 st21nfca_dep_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x8410cb37 st21nfca_tm_send_dep_res -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x867a6435 st21nfca_dep_deinit -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x91fdaec4 st21nfca_vendor_cmds_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xc150edd6 st21nfca_hci_enable_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xccc8a32b st21nfca_hci_discover_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xeca157a0 st21nfca_se_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xef8f92ea st21nfca_dep_init -EXPORT_SYMBOL drivers/ntb/ntb 0x00a78e40 ntb_default_peer_port_number -EXPORT_SYMBOL drivers/ntb/ntb 0x0342bcd5 ntb_default_peer_port_idx -EXPORT_SYMBOL drivers/ntb/ntb 0x08de8661 ntbm_msi_free_irq -EXPORT_SYMBOL drivers/ntb/ntb 0x3c677370 ntb_msi_setup_mws -EXPORT_SYMBOL drivers/ntb/ntb 0x5ecbed8d ntb_link_event -EXPORT_SYMBOL drivers/ntb/ntb 0x7d846f53 ntb_msi_clear_mws -EXPORT_SYMBOL drivers/ntb/ntb 0x88886305 ntb_default_port_number -EXPORT_SYMBOL drivers/ntb/ntb 0x8aba749b ntb_default_peer_port_count -EXPORT_SYMBOL drivers/ntb/ntb 0x9180e098 ntb_unregister_client -EXPORT_SYMBOL drivers/ntb/ntb 0x91b74aea ntb_msg_event -EXPORT_SYMBOL drivers/ntb/ntb 0xa61b7a38 ntb_clear_ctx -EXPORT_SYMBOL drivers/ntb/ntb 0xa6de95d3 __ntb_register_client -EXPORT_SYMBOL drivers/ntb/ntb 0xb43e40e4 ntb_set_ctx -EXPORT_SYMBOL drivers/ntb/ntb 0xc698a7bf ntb_unregister_device -EXPORT_SYMBOL drivers/ntb/ntb 0xccdba250 ntb_register_device -EXPORT_SYMBOL drivers/ntb/ntb 0xdfb4fcab ntb_db_event -EXPORT_SYMBOL drivers/ntb/ntb 0xe67a3aeb ntb_msi_peer_trigger -EXPORT_SYMBOL drivers/ntb/ntb 0xf1dbe466 ntb_msi_peer_addr -EXPORT_SYMBOL drivers/ntb/ntb 0xf834cb8f ntbm_msi_request_threaded_irq -EXPORT_SYMBOL drivers/ntb/ntb 0xf95aadd3 ntb_msi_init -EXPORT_SYMBOL drivers/nvdimm/nd_btt 0xb64a1bd2 nvdimm_namespace_attach_btt -EXPORT_SYMBOL drivers/nvdimm/nd_btt 0xc80342d9 nvdimm_namespace_detach_btt -EXPORT_SYMBOL drivers/parport/parport 0x01ce9bc1 parport_negotiate -EXPORT_SYMBOL drivers/parport/parport 0x0505c4db parport_del_port -EXPORT_SYMBOL drivers/parport/parport 0x0fa17281 parport_claim_or_block -EXPORT_SYMBOL drivers/parport/parport 0x14bfb11d parport_find_base -EXPORT_SYMBOL drivers/parport/parport 0x2b442a2a parport_claim -EXPORT_SYMBOL drivers/parport/parport 0x2e4685f6 parport_read -EXPORT_SYMBOL drivers/parport/parport 0x38d8614d parport_unregister_driver +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x0f624d8c ndlc_recv +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x2cb543b1 st_nci_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x31693ec3 st_nci_se_io +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x3ef6aafd ndlc_send +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x68ab89dd st_nci_se_deinit +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x736a5aed ndlc_close +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xaf81c0b9 ndlc_probe +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xeaba4473 ndlc_open +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xf7ab01d2 st_nci_se_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xfba9a2d8 ndlc_remove +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x15717aa3 st21nfca_dep_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x17d2fd1c st21nfca_hci_enable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x206ac789 st21nfca_hci_disable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x2095836e st21nfca_tm_send_dep_res +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x26d4b51d st21nfca_connectivity_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x2cb3a1b4 st21nfca_apdu_reader_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x2f3d8e11 st21nfca_hci_discover_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x3186c65a st21nfca_im_send_dep_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x57df0d5f st21nfca_hci_se_io +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xaa4975f8 st21nfca_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xad106682 st21nfca_hci_loopback_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xb9723655 st21nfca_dep_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xbcf1b421 st21nfca_im_send_atr_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xc32097cb st21nfca_dep_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xc41dc84a st21nfca_hci_remove +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xc531bff7 st21nfca_se_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xcc0e9d2b st21nfca_hci_probe +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xef745e47 st21nfca_se_init +EXPORT_SYMBOL drivers/ntb/ntb 0x0510f1d8 ntb_default_peer_port_number +EXPORT_SYMBOL drivers/ntb/ntb 0x23236410 ntb_clear_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0x30a428cb ntb_msi_clear_mws +EXPORT_SYMBOL drivers/ntb/ntb 0x391094ec ntb_db_event +EXPORT_SYMBOL drivers/ntb/ntb 0x5865961a ntb_link_event +EXPORT_SYMBOL drivers/ntb/ntb 0x668e14e6 ntb_msi_peer_trigger +EXPORT_SYMBOL drivers/ntb/ntb 0x7d5b4075 __ntb_register_client +EXPORT_SYMBOL drivers/ntb/ntb 0x877e00bd ntb_unregister_device +EXPORT_SYMBOL drivers/ntb/ntb 0x9877bb32 ntbm_msi_request_threaded_irq +EXPORT_SYMBOL drivers/ntb/ntb 0x994fbf66 ntb_msi_peer_addr +EXPORT_SYMBOL drivers/ntb/ntb 0xad085c49 ntb_msg_event +EXPORT_SYMBOL drivers/ntb/ntb 0xb7627345 ntb_register_device +EXPORT_SYMBOL drivers/ntb/ntb 0xc3d8c946 ntb_default_peer_port_idx +EXPORT_SYMBOL drivers/ntb/ntb 0xc74f39f5 ntb_default_peer_port_count +EXPORT_SYMBOL drivers/ntb/ntb 0xd5db3eac ntb_msi_setup_mws +EXPORT_SYMBOL drivers/ntb/ntb 0xe316d94c ntb_msi_init +EXPORT_SYMBOL drivers/ntb/ntb 0xec638e3f ntb_set_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0xf2cd2df8 ntb_unregister_client +EXPORT_SYMBOL drivers/ntb/ntb 0xfd96791b ntb_default_port_number +EXPORT_SYMBOL drivers/ntb/ntb 0xfe5e18f4 ntbm_msi_free_irq +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x506676bd nvdimm_namespace_attach_btt +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0xbf033894 nvdimm_namespace_detach_btt +EXPORT_SYMBOL drivers/parport/parport 0x03cc8449 parport_del_port +EXPORT_SYMBOL drivers/parport/parport 0x0a13456d parport_announce_port +EXPORT_SYMBOL drivers/parport/parport 0x1648db62 parport_negotiate +EXPORT_SYMBOL drivers/parport/parport 0x199e0702 parport_claim +EXPORT_SYMBOL drivers/parport/parport 0x21e408ff parport_register_port +EXPORT_SYMBOL drivers/parport/parport 0x2eaf7175 parport_get_port +EXPORT_SYMBOL drivers/parport/parport 0x398ebb64 parport_unregister_device EXPORT_SYMBOL drivers/parport/parport 0x4d2a941b parport_ieee1284_interrupt -EXPORT_SYMBOL drivers/parport/parport 0x4e2b6401 parport_register_port +EXPORT_SYMBOL drivers/parport/parport 0x4fa25346 parport_claim_or_block +EXPORT_SYMBOL drivers/parport/parport 0x54e54fe3 parport_wait_peripheral +EXPORT_SYMBOL drivers/parport/parport 0x5bb2b47d parport_ieee1284_ecp_write_data EXPORT_SYMBOL drivers/parport/parport 0x5e3a3912 parport_irq_handler -EXPORT_SYMBOL drivers/parport/parport 0x5f53d24f parport_announce_port -EXPORT_SYMBOL drivers/parport/parport 0x72905ca5 parport_put_port -EXPORT_SYMBOL drivers/parport/parport 0x769ee8c7 __parport_register_driver -EXPORT_SYMBOL drivers/parport/parport 0x774a57a5 parport_ieee1284_epp_read_data -EXPORT_SYMBOL drivers/parport/parport 0x8efb4c69 parport_remove_port -EXPORT_SYMBOL drivers/parport/parport 0x98f66c18 parport_register_dev_model -EXPORT_SYMBOL drivers/parport/parport 0xa0f347a9 parport_ieee1284_ecp_write_data -EXPORT_SYMBOL drivers/parport/parport 0xa7517fbd parport_wait_event -EXPORT_SYMBOL drivers/parport/parport 0xaaaf0fcf parport_ieee1284_epp_write_addr -EXPORT_SYMBOL drivers/parport/parport 0xad313598 parport_write -EXPORT_SYMBOL drivers/parport/parport 0xb02cc57b parport_unregister_device -EXPORT_SYMBOL drivers/parport/parport 0xb6c10e0e parport_ieee1284_epp_write_data -EXPORT_SYMBOL drivers/parport/parport 0xb7bc19a6 parport_set_timeout -EXPORT_SYMBOL drivers/parport/parport 0xba2a58a6 parport_ieee1284_read_byte -EXPORT_SYMBOL drivers/parport/parport 0xbc9d4668 parport_ieee1284_ecp_write_addr -EXPORT_SYMBOL drivers/parport/parport 0xbd129e92 parport_ieee1284_read_nibble -EXPORT_SYMBOL drivers/parport/parport 0xc7810412 parport_ieee1284_epp_read_addr -EXPORT_SYMBOL drivers/parport/parport 0xcb5f0fa5 parport_release -EXPORT_SYMBOL drivers/parport/parport 0xd1ec0167 parport_ieee1284_ecp_read_data -EXPORT_SYMBOL drivers/parport/parport 0xe2c9d614 parport_find_number -EXPORT_SYMBOL drivers/parport/parport 0xf7424b4b parport_wait_peripheral -EXPORT_SYMBOL drivers/parport/parport 0xfa48437c parport_get_port -EXPORT_SYMBOL drivers/parport/parport 0xffa1717f parport_ieee1284_write_compat -EXPORT_SYMBOL drivers/parport/parport_pc 0x54cfdd2d parport_pc_probe_port -EXPORT_SYMBOL drivers/parport/parport_pc 0x64e4432d parport_pc_unregister_port -EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x3fb111a5 cros_ec_unregister -EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x5c02b524 cros_ec_register -EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x8d30f987 cros_ec_resume -EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0xc79f7e4e cros_ec_suspend +EXPORT_SYMBOL drivers/parport/parport 0x6715dcd4 parport_remove_port +EXPORT_SYMBOL drivers/parport/parport 0x69f5d79f parport_ieee1284_epp_read_data +EXPORT_SYMBOL drivers/parport/parport 0x742da120 parport_ieee1284_epp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0x76c96cfa parport_put_port +EXPORT_SYMBOL drivers/parport/parport 0x7bc5b8ad parport_ieee1284_read_byte +EXPORT_SYMBOL drivers/parport/parport 0x865023a6 parport_ieee1284_read_nibble +EXPORT_SYMBOL drivers/parport/parport 0x90e2032a parport_release +EXPORT_SYMBOL drivers/parport/parport 0xa53ed6a6 parport_find_base +EXPORT_SYMBOL drivers/parport/parport 0xac9dab81 parport_ieee1284_ecp_read_data +EXPORT_SYMBOL drivers/parport/parport 0xb21709f1 parport_ieee1284_write_compat +EXPORT_SYMBOL drivers/parport/parport 0xb44b6d69 parport_unregister_driver +EXPORT_SYMBOL drivers/parport/parport 0xbc509ea8 parport_write +EXPORT_SYMBOL drivers/parport/parport 0xc9ae94f6 parport_find_number +EXPORT_SYMBOL drivers/parport/parport 0xcca63821 parport_ieee1284_epp_read_addr +EXPORT_SYMBOL drivers/parport/parport 0xd7fda9b1 parport_ieee1284_ecp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0xd8ab19fb parport_read +EXPORT_SYMBOL drivers/parport/parport 0xe5fa5c3e parport_register_dev_model +EXPORT_SYMBOL drivers/parport/parport 0xecff8116 __parport_register_driver +EXPORT_SYMBOL drivers/parport/parport 0xf6dd171f parport_wait_event +EXPORT_SYMBOL drivers/parport/parport 0xf862bcec parport_ieee1284_epp_write_data +EXPORT_SYMBOL drivers/parport/parport 0xfc1c5ef8 parport_set_timeout +EXPORT_SYMBOL drivers/parport/parport_pc 0x114bddc4 parport_pc_probe_port +EXPORT_SYMBOL drivers/parport/parport_pc 0x784b2f9b parport_pc_unregister_port +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x1765f152 cros_ec_unregister +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x4c1522e4 cros_ec_register +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x578f1f3d cros_ec_resume +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0xe921f814 cros_ec_suspend EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0xf25aacf5 cros_ec_irq_thread -EXPORT_SYMBOL drivers/regulator/rohm-regulator 0xfddc6fe4 rohm_regulator_set_dvs_levels +EXPORT_SYMBOL drivers/regulator/rohm-regulator 0x6b59c702 rohm_regulator_set_dvs_levels +EXPORT_SYMBOL drivers/rpmsg/qcom_smd 0x256e6748 qcom_smd_register_edge EXPORT_SYMBOL drivers/rpmsg/qcom_smd 0x3330a1c8 qcom_smd_unregister_edge -EXPORT_SYMBOL drivers/rpmsg/qcom_smd 0xff49f6bf qcom_smd_register_edge -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x09086f23 rpmsg_send -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x1e42fd74 rpmsg_find_device -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x2046ef98 rpmsg_create_channel -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x3e748ab4 rpmsg_release_channel -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x506d07f7 rpmsg_register_device -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x767fb334 rpmsg_send_offchannel -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x7a6264e2 __register_rpmsg_driver -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x7e09b55c rpmsg_sendto -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x8af42265 rpmsg_trysend_offchannel -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x8b9cb193 rpmsg_unregister_device -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xad00ff4c unregister_rpmsg_driver -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xb288e726 rpmsg_trysend -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xc418dd93 rpmsg_create_ept -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xcee702f5 rpmsg_destroy_ept -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xe9fe4f84 rpmsg_poll -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xf4b73270 rpmsg_trysendto -EXPORT_SYMBOL drivers/rpmsg/rpmsg_ns 0xe8905752 rpmsg_ns_register_device -EXPORT_SYMBOL drivers/rtc/rtc-ds1685 0x3946d602 ds1685_rtc_poweroff -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x19f8d962 scsi_esp_unregister -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x300d1dd0 scsi_esp_cmd -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x3b7814e3 scsi_esp_template +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x0f42cdde __register_rpmsg_driver +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x33c7fda8 rpmsg_send_offchannel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x3ed15241 rpmsg_poll +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x46bdb963 rpmsg_release_channel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x597f21fd rpmsg_sendto +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x6fb019da rpmsg_trysendto +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x7669aade rpmsg_create_channel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x76c3e111 rpmsg_unregister_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x790f64c3 rpmsg_trysend_offchannel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x9d0a41e9 unregister_rpmsg_driver +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xa8bbf951 rpmsg_destroy_ept +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xaca58f28 rpmsg_trysend +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xbad787b3 rpmsg_create_ept +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xe71d9d64 rpmsg_find_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xed2b88e3 rpmsg_register_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xfbdf3e16 rpmsg_send +EXPORT_SYMBOL drivers/rpmsg/rpmsg_ns 0x111653f6 rpmsg_ns_register_device +EXPORT_SYMBOL drivers/rtc/rtc-ds1685 0x88ec0878 ds1685_rtc_poweroff +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x1828c1a7 scsi_esp_cmd EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4a29ab38 scsi_esp_intr -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x6f0f2a69 scsi_esp_register -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x35e3a530 fcoe_transport_detach -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x61e6b26a fcoe_ctlr_recv -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x83c07270 fcoe_ctlr_els_send -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x84da9248 fcoe_fcf_get_selected -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x8a4d140b fcoe_ctlr_link_down -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x908a2f7c fcoe_ctlr_destroy -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x92a3c474 fcoe_ctlr_init -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xc6567b90 fcoe_ctlr_recv_flogi -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xcafdb965 fcoe_transport_attach -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xd9a694f1 fcoe_ctlr_set_fip_mode -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xf3431645 fcoe_ctlr_link_up -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x003fe2ad fc_lport_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0a4fae1f fc_fcp_destroy -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0db8a36b fc_exch_mgr_reset +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x5f90e974 scsi_esp_unregister +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x75216cc3 scsi_esp_register +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xf1faa552 scsi_esp_template +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x0a1efb96 fcoe_ctlr_destroy +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x1ce7ac8d fcoe_ctlr_els_send +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x303a76ce fcoe_transport_attach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x5c296a56 fcoe_ctlr_recv_flogi +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x61d4237c fcoe_fcf_get_selected +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x69cd056b fcoe_ctlr_recv +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x72667dd6 fcoe_ctlr_init +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xb1933822 fcoe_ctlr_link_up +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xbac65399 fcoe_ctlr_link_down +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xe26636ac fcoe_transport_detach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xfb725126 fcoe_ctlr_set_fip_mode +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x016c98b9 fc_seq_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x038c3183 fc_rport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x054e2136 fc_lport_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x07595506 fc_set_mfs EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0ee52c69 fc_fill_hdr EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1175b7a4 fc_fill_reply_hdr -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x18eba904 fc_vport_id_lookup -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1b442957 fc_rport_create -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x202fda62 fc_lport_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x208b0655 fc_exch_mgr_add -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x214941a3 fc_set_mfs +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1a73dacb fc_exch_mgr_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1c9efe61 fc_eh_abort +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x20179ec1 fc_get_host_stats EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22b90986 fc_exch_mgr_del -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x25296852 fc_seq_send -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2b7c174b fc_exch_update_stats -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3295c08f fc_eh_host_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x34326a51 fc_fabric_logoff -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3fbb3134 fc_lport_recv -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x40efe6f6 fc_slave_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x43edbf49 fc_exch_recv -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4e6acdc6 fc_fc4_deregister_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x254c514c fc_set_rport_loss_tmo +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x28d071de fc_vport_id_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x305bd646 fc_lport_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x32c9270e fc_exch_mgr_add +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3878ed01 fc_fcp_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3ce35b60 fc_exch_mgr_free +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4291e07b fc_get_host_port_state +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x45e71887 fc_rport_terminate_io +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5154500b fc_rport_recv_req +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x544a38ae libfc_vport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x560d2a6a fc_exch_seq_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5aa19484 fc_eh_device_reset EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5ab41f0c fc_lport_notifier_head -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6471e074 libfc_vport_create -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x64926780 fc_queuecommand -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x722459a7 fc_fcp_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x739845f2 fc_exch_mgr_free -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7c8ab1d6 fc_rport_logoff -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7e0d1de4 fc_eh_device_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x61ff8a86 fc_elsct_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x65e33328 fc_queuecommand +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6ee5e98f fc_seq_assign +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x717c4c45 fc_fc4_deregister_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x77d8292b fc_exch_update_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7956eb6d fc_slave_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7bf2c8af fc_elsct_init EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7f3407a7 fc_seq_start_next EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x811811e0 fc_exch_done -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x82a70ac0 fc_set_rport_loss_tmo -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8324d41d fc_lport_destroy -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8345305e fc_lport_set_local_id +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x83477798 fc_disc_config EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x84c1845a _fc_frame_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x87b1df09 fc_lport_bsg_request -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8849af1c fc_rport_recv_req +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x87b6b486 fc_exch_mgr_list_clone +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8e2ecb2f fc_exch_mgr_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x90154781 fc_lport_reset EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x954d6f50 fc_lport_logo_resp -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x98ed07b8 fc_lport_config -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9cc67e96 fc_elsct_send EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9d50ed7e fc_rport_destroy -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9e7c9f16 fc_rport_login -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa0801325 fc_lport_iterate EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa1bcd198 fc_cpu_mask -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa5cb08e8 fc_get_host_speed -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xacdf97b8 fc_vport_setlink +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa51f9ca3 fc_fc4_register_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa6428865 fc_fcp_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa7a79a37 fc_disc_init EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xacfa74cd fc_lport_flogi_resp -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xaeac06a1 fc_exch_mgr_list_clone EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb0ddd5a1 fc_rport_flush_queue -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb147d5e1 fc_fabric_login -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb650f611 fc_get_host_port_state +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb1e3a994 fc_lport_config EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb80157e7 fc_frame_crc_check -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb8a7c7b7 fc_seq_assign -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc156eee9 fc_rport_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb8af3ff3 fc_fabric_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb9054168 fc_lport_set_local_id +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb9a558b2 fc_rport_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc3456184 fc_exch_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc38c9111 fc_lport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc5c2171f fc_lport_bsg_request EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc861d981 fc_frame_alloc_fill -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc90b2ec9 fc_linkup -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcd997b6b fc_exch_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xde4d936c fc_linkdown -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xdf4e7fbc fc_elsct_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe48ab1dd fc_eh_abort -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe5b08b38 fc_exch_seq_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd8c48263 fc_lport_iterate +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd9830b57 fc_linkup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe45f2575 fc_eh_host_reset EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe8a4e2ba fc_seq_set_resp -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe8e3269f fc_exch_mgr_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe90728d8 fc_rport_terminate_io -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf047cdef fc_fc4_register_provider -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf11b6d81 fc_disc_config -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf603169b fc_disc_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf6a2be57 fc_rport_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf75d90b2 fc_vport_setlink +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf7937ab3 fc_get_host_speed +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf8e24edf fc_fabric_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf9f6d11a fc_rport_logoff EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfa4667d1 fc_seq_release -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfebb265b fc_get_host_stats -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x04bc9329 sas_suspend_ha -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x2cfda07e sas_prep_resume_ha +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfd18f837 fc_linkdown +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfdc5728b fc_exch_init +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x232dd783 sas_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x3df7a67f sas_prep_resume_ha EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x4a8e3d34 try_test_sas_gpio_gp_bit -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x6013ab44 sas_resume_ha -EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x857408c4 mraid_mm_register_adp +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xe5c5e512 sas_suspend_ha +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x90740da3 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 0x218ff3d2 qlt_stop_phase1 -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x2cdd7ab4 qlt_stop_phase2 -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x5231714a qlt_unreg_sess -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x5b78607c qlt_rdy_to_xfer -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x5cae4eb7 qlt_abort_cmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x5dc71b19 qlt_enable_vha -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x7ff0ae1d qlt_free_mcmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x888734ba qlt_free_cmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xbb86072f qlt_lport_deregister -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xc6f5fb78 qlt_lport_register -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xcc89eb4a qlt_xmit_tm_rsp -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xff2a2256 qlt_xmit_response -EXPORT_SYMBOL drivers/scsi/raid_class 0x8fbc0d3b raid_class_attach -EXPORT_SYMBOL drivers/scsi/raid_class 0x98e3a442 raid_class_release -EXPORT_SYMBOL drivers/scsi/raid_class 0xf364a044 raid_component_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x0c2eed2f fc_remove_host -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x18292231 fc_host_post_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x1e700d05 fc_block_scsi_eh -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x366372c9 fc_eh_timed_out +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x2f78b70f qlt_free_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x3469cb68 qlt_enable_vha +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x503d1b69 qlt_stop_phase2 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x67470c9f qlt_lport_deregister +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x7c49cebc qlt_lport_register +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x97b07f3c qlt_free_mcmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xa3fc247c qlt_unreg_sess +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xa6571dc6 qlt_rdy_to_xfer +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xa7749b0b qlt_stop_phase1 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xb6855865 qlt_abort_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xcb85db17 qlt_xmit_response +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xd459cd21 qlt_xmit_tm_rsp +EXPORT_SYMBOL drivers/scsi/raid_class 0x1a3be416 raid_class_release +EXPORT_SYMBOL drivers/scsi/raid_class 0x8dbe56e6 raid_class_attach +EXPORT_SYMBOL drivers/scsi/raid_class 0xfedb9199 raid_component_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x047e250c fc_host_post_vendor_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x1c8402d4 fc_block_scsi_eh +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x235935fb scsi_is_fc_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x2fa36803 fc_remove_host EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x375f8bbd fc_get_event_number -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x44cade06 fc_remote_port_rolechg -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x552b714d fc_host_fpin_rcv -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x5a3fcbba fc_find_rport_by_wwpn -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x5b106842 fc_vport_terminate -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x6bb6d797 fc_vport_create -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x79edb55b fc_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7d6862a2 fc_block_rport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x81729740 fc_remote_port_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x81bc5b99 fc_remote_port_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xa500fbb4 fc_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xbbbe3500 fc_host_post_vendor_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xecca9bea fc_host_post_fc_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xfa510206 scsi_is_fc_rport -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0b5505e3 sas_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1911eb15 scsi_is_sas_port -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3bd96a5a sas_read_port_mode_page -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4dc76cff scsi_is_sas_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5922641d sas_rphy_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x666f32ac sas_phy_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6a139917 sas_port_add_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x73519ffc sas_port_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7a508085 sas_remove_host -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x954ad59c sas_port_get_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x9807eafe sas_port_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa75f8c50 sas_remove_children -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xacb99687 sas_rphy_unlink -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb2bcbd55 sas_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb36948b3 sas_get_address -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb5a026d6 sas_port_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xce140797 sas_rphy_remove -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xcf6162bb sas_port_delete_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd3ffc132 sas_expander_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd5388d60 sas_rphy_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe0b00628 sas_phy_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe243eabf scsi_is_sas_rphy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe43648f1 sas_rphy_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xee0375b0 sas_end_device_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf18b4286 sas_port_mark_backlink -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf469232e sas_port_alloc_num -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf4c1550c sas_phy_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf4d82f4d sas_port_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xfb2feba4 sas_phy_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x47e61762 fc_remote_port_rolechg +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x72aca54f fc_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x9bc5e8ce fc_host_post_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x9e01dd87 fc_vport_terminate +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xad595e25 fc_host_post_fc_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xb29c8527 fc_remote_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xcce94219 fc_host_fpin_rcv +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xd2e4b0bb fc_remote_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xe782fff1 fc_vport_create +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xeea6a069 fc_find_rport_by_wwpn +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xf17d23f5 fc_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xf2f99a5e fc_block_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xf472741a fc_eh_timed_out +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x07fe2105 scsi_is_sas_rphy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0eead559 sas_rphy_unlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1889f5e6 sas_phy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1e123de4 sas_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1e1fa602 sas_rphy_remove +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2f1a8111 sas_port_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x397fc131 sas_rphy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x471f301d sas_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6049ba11 sas_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x62c62078 sas_rphy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x85f64a48 scsi_is_sas_port +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x88f7972d sas_port_get_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x9d1b7be6 sas_port_mark_backlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa6ca4f32 sas_port_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb36e246b sas_port_alloc_num +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xbf513a4b sas_read_port_mode_page +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xcae34193 sas_port_delete_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xce590065 sas_port_add_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd0ff3a40 sas_end_device_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd8863a61 sas_get_address +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd8aa99a8 sas_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd9ba743b sas_rphy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe46e22fb sas_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe4fc3249 sas_phy_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe7367061 sas_remove_children +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe78108d6 sas_phy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe83869c3 sas_expander_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xeb92bf3d scsi_is_sas_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf31aee62 sas_phy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x19074dfa spi_display_xfer_agreement EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3c7ce90d spi_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x70b4a529 spi_display_xfer_agreement -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x9dfc9b1b spi_schedule_dv_device -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xb3f450e1 spi_dv_device -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xcae07914 spi_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x2db19893 srp_reconnect_rport -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x2f3a718f srp_start_tl_fail_timers +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x8a8860b2 spi_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x951ff719 spi_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xa47c43fd spi_schedule_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xf02a9045 spi_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x37ad3a6e srp_rport_get EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x405b6e05 srp_parse_tmo -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x684fe251 srp_rport_get -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x70bdb722 srp_rport_put -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xe618c88e srp_timed_out -EXPORT_SYMBOL drivers/scsi/ufs/tc-dwc-g210 0x0ea0974a tc_dwc_g210_config_40_bit -EXPORT_SYMBOL drivers/scsi/ufs/tc-dwc-g210 0x899c11b9 tc_dwc_g210_config_20_bit -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x0ebade4d ufshcd_runtime_suspend -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x325947b9 ufshcd_map_desc_id_to_length -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x454d7c96 ufshcd_system_suspend -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x6e31a886 ufshcd_alloc_host -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x72e5e634 ufshcd_runtime_resume -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x81937a11 ufshcd_system_resume -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x9b921049 ufshcd_shutdown -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0xf3a79f7c ufshcd_get_local_unipro_ver -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-dwc 0x331be125 ufshcd_dwc_link_startup_notify -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-dwc 0x62dde0be ufshcd_dwc_dme_set_attrs +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x59b7f15d srp_rport_put +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x6d9c0261 srp_timed_out +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x7d1a7b48 srp_start_tl_fail_timers +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xb0ff1e9c srp_reconnect_rport +EXPORT_SYMBOL drivers/scsi/ufs/tc-dwc-g210 0x21514b20 tc_dwc_g210_config_20_bit +EXPORT_SYMBOL drivers/scsi/ufs/tc-dwc-g210 0x32d0f1e1 tc_dwc_g210_config_40_bit +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x04197db8 ufshcd_runtime_suspend +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x28de922c ufshcd_shutdown +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x2aafefce ufshcd_runtime_resume +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x4094e157 ufshcd_alloc_host +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x8fbf6937 ufshcd_system_resume +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0xb6076482 ufshcd_map_desc_id_to_length +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0xc0dd2786 ufshcd_system_suspend +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0xc539fe4f ufshcd_get_local_unipro_ver +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-dwc 0x4c8e5853 ufshcd_dwc_link_startup_notify +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-dwc 0x96d48292 ufshcd_dwc_dme_set_attrs +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x0dd624c9 cmdq_pkt_create EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x0f1c30e9 cmdq_pkt_poll +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x13313eac cmdq_mbox_create EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x1e7fbd0e cmdq_pkt_set_event EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x1f75694f cmdq_pkt_write_s_value EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x25789b60 cmdq_pkt_write EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x331080d7 cmdq_pkt_clear_event EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x3f534bca cmdq_pkt_write_s_mask_value EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x44529db4 cmdq_pkt_poll_mask +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x46aee620 cmdq_mbox_destroy EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x4bef25aa cmdq_pkt_assign -EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x5c549edd cmdq_mbox_create EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x5e605e5d cmdq_pkt_write_s_mask EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x707fc9be cmdq_pkt_write_mask EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x806d5531 cmdq_pkt_jump EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x86cba4ff cmdq_pkt_write_s -EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x88899e0d cmdq_pkt_create EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x8d8977f9 cmdq_pkt_flush_async -EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0xbe662208 cmdq_mbox_destroy -EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0xc8595237 cmdq_dev_get_client_reg +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0xc11ba09b cmdq_dev_get_client_reg EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0xce594d73 cmdq_pkt_finalize EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0xcfa96ae3 cmdq_pkt_destroy EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0xf1b72bff cmdq_pkt_wfe EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0xf3151f98 cmdq_pkt_read_s +EXPORT_SYMBOL drivers/soc/qcom/ocmem 0x3b4a5a4b of_get_ocmem EXPORT_SYMBOL drivers/soc/qcom/ocmem 0xc53d76b1 ocmem_allocate -EXPORT_SYMBOL drivers/soc/qcom/ocmem 0xc8e7d057 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 0x0d2348d8 geni_icc_set_bw -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x11fd4c27 geni_se_clk_tbl_get -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x23523191 geni_se_tx_dma_unprep -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x2c517e0e geni_se_get_qup_hw_version -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x320a270a geni_se_rx_dma_unprep -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x46d136e6 geni_se_resources_off -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x4f52ba97 geni_se_init -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x743578d1 geni_icc_get -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x759d23df geni_se_config_packing -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x789c32e7 geni_se_clk_freq_match -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x918c7acd geni_se_resources_on -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x9b702164 geni_se_rx_dma_prep -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xaa52c795 geni_icc_disable -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xaf82e0dd geni_icc_set_tag -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xb1d4b3c5 geni_se_tx_dma_prep -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xb2cc4a80 geni_icc_enable -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xc8dd6ff1 geni_se_select_mode -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x09f490ce qmi_send_response +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x05149812 geni_se_select_mode +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x09ccc418 geni_icc_set_bw +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x1b3c7934 geni_se_clk_freq_match +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x31483b33 geni_se_resources_off +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x3238a270 geni_se_resources_on +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x521ff2fb geni_se_clk_tbl_get +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x53e974b9 geni_icc_get +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x6602d921 geni_icc_disable +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x78074dcd geni_se_tx_dma_unprep +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x7a7b6c54 geni_se_rx_dma_unprep +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x8df8a316 geni_se_rx_dma_prep +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xabf0d024 geni_icc_set_tag +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xb8122eef geni_se_tx_dma_prep +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xc86dc086 geni_se_get_qup_hw_version +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xdc9ad4d7 geni_se_init +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xe209b123 geni_se_config_packing +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xefa7f782 geni_icc_enable +EXPORT_SYMBOL drivers/soc/qcom/qcom_aoss 0x2333aed6 qmp_put +EXPORT_SYMBOL drivers/soc/qcom/qcom_aoss 0x978f9098 qmp_get +EXPORT_SYMBOL drivers/soc/qcom/qcom_aoss 0xae4b53c5 qmp_send +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x11a034a8 qmi_send_indication EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x133168aa qmi_encode_message EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x21ce5888 qmi_response_type_v01_ei -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x221ef303 qmi_send_indication -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x3a7a30be qmi_add_server -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x4a2a5d43 qmi_txn_init -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x4c5bccdf qmi_handle_init -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x8099f482 qmi_send_request -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x8584a0a5 qmi_txn_wait +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x25363a0e qmi_txn_init +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x3a3a68ed qmi_send_response +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x49141c22 qmi_handle_init +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x8503f64a qmi_add_lookup EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xa2ff1ede qmi_decode_message -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xbbe546d3 qmi_txn_cancel -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xe786eea6 qmi_add_lookup -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xe8eee272 qmi_handle_release +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xa4511349 qmi_txn_wait +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xb1efe73d qmi_add_server +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xbb44dfa8 qmi_handle_release +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xd1b718ad qmi_txn_cancel +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xe4b603c3 qmi_send_request 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 EXPORT_SYMBOL drivers/soc/qcom/smem 0x932eb0e3 qcom_smem_get EXPORT_SYMBOL drivers/soc/qcom/smem 0x9979b76e qcom_smem_virt_to_phys -EXPORT_SYMBOL drivers/soc/qcom/wcnss_ctrl 0xefb61d86 qcom_wcnss_open_channel -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x00e1d40f sdw_nread -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x02e3e01f sdw_bread_no_pm_unlocked -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x0cb942f5 sdw_extract_slave_id +EXPORT_SYMBOL drivers/soc/qcom/wcnss_ctrl 0x264e0aaa qcom_wcnss_open_channel +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x01a4b25c sdw_stream_add_master +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x09cd7a2c sdw_master_read_prop EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x16d1706b sdw_prepare_stream EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x1deee061 sdw_find_row_index -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x2e6455a3 sdw_bus_clk_stop -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x326fa4d8 sdw_clear_slave_status -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x3909089f sdw_bus_master_delete +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x208964ab sdw_bus_exit_clk_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x21f67317 sdw_bus_master_delete +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x2f984029 sdw_update_no_pm +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x37d4e00f sdw_read_no_pm EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x3b0a8582 sdw_startup_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x3b110920 sdw_read +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x47517bd9 sdw_handle_slave_status EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x4cde88bf sdw_disable_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x509d61e9 sdw_handle_slave_status +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x4d966ead sdw_write +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x5e8fe537 sdw_bus_prep_clk_stop EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x60e31fbb sdw_find_col_index EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x6f95b16b sdw_shutdown_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x7120f801 sdw_stream_remove_master EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x71891d59 sdw_deprepare_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x80f24f5e sdw_bus_exit_clk_stop -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x83dca493 sdw_stream_add_master -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x88eed3a5 sdw_write -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x8eaa905a sdw_read_no_pm -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x918b9753 sdw_bus_prep_clk_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x83e86b34 sdw_slave_add +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x86daba92 sdw_clear_slave_status EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x9e122d79 sdw_alloc_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x9f663b10 sdw_compare_devid -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xb607dcb5 sdw_write_no_pm +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x9ebe42ba sdw_nread +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x9f06773f sdw_stream_add_slave +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xa254b520 sdw_slave_read_prop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xaa2c5459 sdw_write_no_pm +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xb7232271 sdw_bus_master_add EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xba54b904 sdw_cols EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xbbec2c2e sdw_enable_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xbe2b29b9 sdw_nwrite -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xbf49dcb3 sdw_master_read_prop -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xc76661c6 sdw_update -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xd163d246 sdw_bus_master_add -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xd3c74fb4 sdw_stream_add_slave +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xc16e25a0 sdw_nwrite +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xc82bc488 sdw_stream_remove_master +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xcf133b26 sdw_read EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xda5bce09 sdw_release_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xe278204a sdw_stream_remove_slave -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xe381300d sdw_update_no_pm +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xddbce077 sdw_extract_slave_id +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xeec86551 sdw_compare_devid EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xf53ba0b8 sdw_rows -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xf7e9660d sdw_slave_add -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xfdb4f26d sdw_bwrite_no_pm_unlocked -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xfe24f334 sdw_slave_read_prop -EXPORT_SYMBOL drivers/ssb/ssb 0x09693d20 ssb_pcihost_register -EXPORT_SYMBOL drivers/ssb/ssb 0x26273e93 ssb_set_devtypedata -EXPORT_SYMBOL drivers/ssb/ssb 0x2a1f7310 ssb_device_is_enabled -EXPORT_SYMBOL drivers/ssb/ssb 0x3231a00d __ssb_driver_register -EXPORT_SYMBOL drivers/ssb/ssb 0x3b136b25 ssb_dma_translation -EXPORT_SYMBOL drivers/ssb/ssb 0x3fb25d49 ssb_bus_resume -EXPORT_SYMBOL drivers/ssb/ssb 0x44bf27ee ssb_pmu_set_ldo_paref -EXPORT_SYMBOL drivers/ssb/ssb 0x4e9d119c ssb_pcicore_dev_irqvecs_enable -EXPORT_SYMBOL drivers/ssb/ssb 0x55b0ba89 ssb_bus_sdiobus_register -EXPORT_SYMBOL drivers/ssb/ssb 0x5ca8e4af ssb_bus_may_powerdown -EXPORT_SYMBOL drivers/ssb/ssb 0x5fa97452 ssb_bus_suspend -EXPORT_SYMBOL drivers/ssb/ssb 0x6ed5f567 ssb_chipco_gpio_control -EXPORT_SYMBOL drivers/ssb/ssb 0x816b4cfa ssb_bus_unregister -EXPORT_SYMBOL drivers/ssb/ssb 0x9a05bb25 ssb_device_disable -EXPORT_SYMBOL drivers/ssb/ssb 0x9f0185d8 ssb_pmu_set_ldo_voltage -EXPORT_SYMBOL drivers/ssb/ssb 0xbea65e56 ssb_clockspeed -EXPORT_SYMBOL drivers/ssb/ssb 0xbeae26e9 ssb_commit_settings +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xf6dbc59c sdw_stream_remove_slave +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xf70fde62 sdw_bwrite_no_pm_unlocked +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xf724680d sdw_update +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xf7ec8b81 sdw_bus_clk_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xff469cdc sdw_bread_no_pm_unlocked +EXPORT_SYMBOL drivers/ssb/ssb 0x0576f7a2 ssb_dma_translation +EXPORT_SYMBOL drivers/ssb/ssb 0x09fca4cb ssb_chipco_gpio_control +EXPORT_SYMBOL drivers/ssb/ssb 0x127803f1 ssb_bus_sdiobus_register +EXPORT_SYMBOL drivers/ssb/ssb 0x161745c3 ssb_device_is_enabled +EXPORT_SYMBOL drivers/ssb/ssb 0x26e03ba5 ssb_bus_resume +EXPORT_SYMBOL drivers/ssb/ssb 0x38100395 ssb_device_disable +EXPORT_SYMBOL drivers/ssb/ssb 0x7293a61f ssb_bus_may_powerdown +EXPORT_SYMBOL drivers/ssb/ssb 0x7581207e ssb_bus_powerup +EXPORT_SYMBOL drivers/ssb/ssb 0x7db0f3b0 ssb_pmu_set_ldo_paref +EXPORT_SYMBOL drivers/ssb/ssb 0x8f872987 __ssb_driver_register +EXPORT_SYMBOL drivers/ssb/ssb 0x9bf4fff5 ssb_bus_suspend +EXPORT_SYMBOL drivers/ssb/ssb 0xa351aaa5 ssb_pcicore_dev_irqvecs_enable +EXPORT_SYMBOL drivers/ssb/ssb 0xa66e57c9 ssb_device_enable EXPORT_SYMBOL drivers/ssb/ssb 0xcb17f1cb ssb_admatch_base -EXPORT_SYMBOL drivers/ssb/ssb 0xcf96be36 ssb_bus_powerup -EXPORT_SYMBOL drivers/ssb/ssb 0xd5491dfe ssb_driver_unregister -EXPORT_SYMBOL drivers/ssb/ssb 0xd8fc0343 ssb_device_enable +EXPORT_SYMBOL drivers/ssb/ssb 0xcb4bf333 ssb_clockspeed +EXPORT_SYMBOL drivers/ssb/ssb 0xd354b195 ssb_driver_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0xd4dfd6dd ssb_pcihost_register +EXPORT_SYMBOL drivers/ssb/ssb 0xd8fabbe9 ssb_bus_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0xdbd746d4 ssb_set_devtypedata EXPORT_SYMBOL drivers/ssb/ssb 0xdfc7c6ef ssb_admatch_size -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x109613be fbtft_write_spi_emulate_9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x33d08214 fbtft_write_reg16_bus16 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x3e9275d3 fbtft_write_gpio8_wr -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x3fadba9a fbtft_write_reg8_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x40f57655 fbtft_read_spi -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x50bd9230 fbtft_register_framebuffer -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x5ad953da fbtft_write_gpio16_wr_latched -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x61abc1e6 fbtft_register_backlight -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x61fbc395 fbtft_framebuffer_release -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x66a836af fbtft_write_reg16_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x7439155d fbtft_framebuffer_alloc -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x74efd7b2 fbtft_write_spi -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x80a873e8 fbtft_write_vmem16_bus16 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x81cdec81 fbtft_init_display -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x8a0eda34 fbtft_write_gpio16_wr -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x9b238833 fbtft_write_vmem16_bus9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xab25abfd fbtft_unregister_framebuffer -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xaf8e6b1c fbtft_write_vmem16_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xb0c7ebe3 fbtft_write_buf_dc -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xb6f548c3 fbtft_unregister_backlight -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc1efcef5 fbtft_probe_common -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xeac7eed1 fbtft_dbg_hex -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf5ab6131 fbtft_write_reg8_bus9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf6f4c8a9 fbtft_remove_common -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xfad14691 fbtft_write_vmem8_bus8 -EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x4eb0caa0 gbaudio_unregister_module -EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x5c702fca gbaudio_register_module -EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0xb1a07d49 gbaudio_module_update -EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0xae81843f adt7316_probe -EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0x87d433c4 ade7854_probe -EXPORT_SYMBOL drivers/staging/media/av7110/sp8870 0x3fcc26eb sp8870_attach -EXPORT_SYMBOL drivers/staging/media/zoran/videocodec 0x3ddd1b7e videocodec_detach -EXPORT_SYMBOL drivers/staging/media/zoran/videocodec 0xa3e6e4f3 videocodec_unregister -EXPORT_SYMBOL drivers/staging/media/zoran/videocodec 0xc57ce0b6 videocodec_register -EXPORT_SYMBOL drivers/staging/media/zoran/videocodec 0xf8fb639b videocodec_attach -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0bdbb330 rtllib_stop_scan_syncro -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0c504e2e rtllib_wx_set_mode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x13fad953 rtllib_wx_set_essid -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1af6d2e8 dot11d_channel_map -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1bff45d5 rtllib_legal_channel +EXPORT_SYMBOL drivers/ssb/ssb 0xe9b0d73f ssb_commit_settings +EXPORT_SYMBOL drivers/ssb/ssb 0xfdfc681b ssb_pmu_set_ldo_voltage +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x0f01bd38 fbtft_write_reg8_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x1040470b fbtft_write_gpio16_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x1533e292 fbtft_probe_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x3800e144 fbtft_write_gpio16_wr_latched +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x4851c5dd fbtft_framebuffer_alloc +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x4d1c54cd fbtft_write_buf_dc +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x610df34c fbtft_unregister_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x6241a07a fbtft_register_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x7aba28ae fbtft_write_spi_emulate_9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x7bdd04c2 fbtft_read_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x860c26b9 fbtft_remove_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x8b6e448a fbtft_write_reg16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x8f653be7 fbtft_write_gpio8_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x96ac25a2 fbtft_write_reg8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x96bb7714 fbtft_register_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xaff774e6 fbtft_write_reg16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc098ae08 fbtft_init_display +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc39abc6e fbtft_write_vmem8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc64e0564 fbtft_write_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xce2d31a7 fbtft_write_vmem16_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xd7bb11fc fbtft_framebuffer_release +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xde652af4 fbtft_write_vmem16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xe1e50770 fbtft_write_vmem16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xe740850f fbtft_unregister_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xef507b37 fbtft_dbg_hex +EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x1ea19b1b gbaudio_module_update +EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x422d447c gbaudio_register_module +EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0xc6f6c189 gbaudio_unregister_module +EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0xcd55a08f adt7316_probe +EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0x2e65a7fb ade7854_probe +EXPORT_SYMBOL drivers/staging/media/av7110/sp8870 0x0cc02021 sp8870_attach +EXPORT_SYMBOL drivers/staging/media/zoran/videocodec 0x7196a884 videocodec_attach +EXPORT_SYMBOL drivers/staging/media/zoran/videocodec 0x88c2f32e videocodec_register +EXPORT_SYMBOL drivers/staging/media/zoran/videocodec 0x9519b405 videocodec_detach +EXPORT_SYMBOL drivers/staging/media/zoran/videocodec 0xaf7dbc42 videocodec_unregister +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0ec70605 rtllib_get_beacon +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1e85f864 rtllib_wx_get_name +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1fe63bfd rtllib_wx_set_encode EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x22166084 rt_global_debug_component -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x265231e7 rtllib_wx_set_auth -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2b3a1f9e alloc_rtllib -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2b811136 rtllib_wx_set_encode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2e0a1271 rtllib_wx_get_rts -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x38ce6913 rtllib_stop_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3f69a275 rtllib_wx_get_power -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x412808e7 rtllib_wx_set_rawtx -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x449a4158 rtllib_start_send_beacons -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4556c5a7 rtllib_wx_set_wap -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x47b99e5e rtllib_wx_set_power -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4901f972 rtllib_wx_get_rate -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4de3d8c7 rtllib_xmit -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5e8e4a3e rtllib_wx_set_encode_ext -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x633c4ebd rtllib_stop_send_beacons -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6868fbec rtllib_softmac_stop_protocol -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6b2ae578 rtllib_wx_get_essid -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6dc45fc6 rtllib_wx_get_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6fcb42db rtllib_softmac_start_protocol -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x741f998d dot11d_init -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x77b06212 rtllib_sta_ps_send_null_frame -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7f8d85c2 rtllib_wx_set_freq -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x855f0eb7 free_rtllib -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8745384a rtllib_wx_get_encode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x89d462cb rtllib_EnableIntelPromiscuousMode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8f7f098d rtllib_wx_set_gen_ie -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9ef4703a rtllib_wx_set_rate -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa0c8859b notify_wx_assoc_event -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa279fed2 RemovePeerTS -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa8780c8a rtllib_wx_get_freq -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xacb69c53 rtllib_start_scan_syncro -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xad86a07f rtllib_get_beacon -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xba31d68e rtllib_wx_set_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbd0d6346 rtllib_wx_get_wap -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc3e6d579 rtllib_wx_get_name -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xcd7670f0 rtllib_reset_queue -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd651b490 rtllib_wx_set_rts -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xda238dfe rtllib_ps_tx_ack -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdba5c766 rtllib_wx_get_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x23b370ff rtllib_wx_set_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x28a0b413 notify_wx_assoc_event +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2e1e69e8 rtllib_wx_set_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2e834f09 rtllib_wx_get_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2f65d77a rtllib_start_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2fbfe1b6 rtllib_wx_set_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x30deb8da rtllib_wx_get_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x36fefa6b rtllib_sta_ps_send_null_frame +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3bf89b53 rtllib_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3e8b0d4f rtllib_wx_get_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x405bbedf rtllib_wx_get_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x41671060 rtllib_wx_set_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x474b1aab rtllib_stop_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4b21d82c rtllib_EnableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4d8db0e1 rtllib_softmac_start_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5822f3d3 rtllib_wx_set_gen_ie +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x60e532de free_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6b012a69 rtllib_wx_set_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6c28f9cd HT_update_self_and_peer_setting +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6cb830eb rtllib_wx_set_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x71804d5b rtllib_wx_get_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x75c1fb5b rtllib_wx_get_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x796e8a64 rtllib_ps_tx_ack +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7bda82aa rtllib_wx_set_encode_ext +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8a0bc863 rtllib_MgntDisconnect +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8b0ba3f1 rtllib_start_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8f57ad8f rtllib_wx_get_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x95569e98 rtllib_wx_set_auth +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9979ba95 rtllib_wx_set_mlme +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9d405aed rtllib_DisableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa1550bc5 dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xae010fef rtllib_xmit +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb5aaa0e5 rtllib_wx_set_rawtx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb90b92ff dot11d_channel_map +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbe408e3d rtllib_wx_get_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xce0f6f31 rtllib_wx_get_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd20ddc11 rtllib_act_scanning +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd4883f3c rtllib_wx_set_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdae0145c rtllib_rx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdda4fccb alloc_rtllib EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdf78f620 rtllib_wlan_frequencies -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe8b36408 rtllib_DisableIntelPromiscuousMode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xeffae3c1 rtllib_act_scanning -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf56d7179 rtllib_MgntDisconnect -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf8d9f143 rtllib_wx_set_mlme -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xfaa32e89 HT_update_self_and_peer_setting -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xfc1b49e1 rtllib_rx -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x006c7535 ieee80211_wx_set_essid_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x02f71167 ieee80211_wx_set_rts_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0981a949 dot11d_reset -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0df8cd9e ieee80211_wpa_supplicant_ioctl_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x134ded7a ieee80211_stop_send_beacons_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x223bb91c ieee80211_softmac_scan_syncro_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x29dc509b to_legal_channel -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2a336f47 ieee80211_wx_get_encode_ext_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2bb29c08 SendDisassociation_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x32d670aa ieee80211_softmac_xmit_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3355ea31 ieee80211_wx_get_rts_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x35670386 ieee80211_wx_get_freq_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3cb59ee1 HTUpdateSelfAndPeerSetting -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3da9cc33 ieee80211_softmac_stop_protocol_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4790da04 ieee80211_wx_set_encode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x49924cff rtl8192u_dot11d_init -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4df82b85 ieee80211_wx_set_gen_ie_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4ec047ae ieee80211_wx_get_name_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x57130922 ieee80211_wx_set_encode_ext_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5782a583 ieee80211_wx_set_mode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5f60a32c ieee80211_wx_set_mlme_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x61c27479 ieee80211_wx_set_scan_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7675775b ieee80211_wx_set_power_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x797b85fb ieee80211_wx_get_rate_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8a2d75ed ieee80211_start_scan_syncro_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8ecc8102 ieee80211_wx_set_auth_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x909d8302 is_legal_channel -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9508e411 ieee80211_wake_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9febc34a ieee80211_stop_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe59f1c8e rtllib_wx_set_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xeab2ba40 rtllib_softmac_stop_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xeb7b61bf rtllib_stop_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf733ffd1 RemovePeerTS +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xfb4f242a rtllib_reset_queue +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xfd68d21b rtllib_stop_scan +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x02ee97f6 ieee80211_softmac_xmit_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x09fbd7c3 ieee80211_wake_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0c2dcaf5 ieee80211_get_beacon_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x113cef6d ieee80211_wx_get_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x12594d7c ieee80211_wx_set_auth_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x149be837 ieee80211_softmac_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x16cc8ff6 rtl8192u_dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1d58b92e notify_wx_assoc_event_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1e13e9b9 to_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x23355da5 SendDisassociation_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2c42d64f ieee80211_wx_set_gen_ie_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x37dceb2f ieee80211_wx_get_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3de8f5a2 ieee80211_txb_free_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x45bcbbe7 ieee80211_wx_get_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4cd65bec ieee80211_reset_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x542d53d1 ieee80211_wx_get_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x566beb46 ieee80211_wx_set_mlme_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5a1e8180 dot11d_scan_complete +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5f321e9f ieee80211_stop_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x66e45abf ieee80211_wx_set_rawtx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6b8d1116 ieee80211_wx_set_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6ed8ab3b ieee80211_wx_get_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x71ac7f6b dot11d_update_country_ie +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x71e83dd7 ieee80211_stop_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x722912cf ieee80211_wx_set_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7a1cf920 ieee80211_wx_set_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7b9cb19d ieee80211_wx_set_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7ec78621 ieee80211_stop_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7fa576c6 ieee80211_rx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8692ece2 ieee80211_start_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8adc747f ieee80211_wx_set_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8c2c81da ieee80211_wx_set_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8f0b0030 ieee80211_wx_set_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x901e2e0a ieee80211_wx_get_name_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x90f8cf98 is_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x95d30a50 ieee80211_rx_mgt_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x975bc86d HTUpdateSelfAndPeerSetting +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x99689b7c ieee80211_wx_get_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x99a7c1ee ieee80211_wx_get_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9f986ed9 ieee80211_wx_get_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa0b5888f ieee80211_start_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa0c564b2 dot11d_get_max_tx_pwr_in_dbm +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa9eb0472 ieee80211_wx_set_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xabe5b2b1 dot11d_reset +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xafe0889d ieee80211_softmac_stop_protocol_rsl EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb0b6cd25 ieee80211_is_54g_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb0fb97bf ieee80211_wx_get_power_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb75e55bc ieee80211_wx_set_freq_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbacdef8f notify_wx_assoc_event_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbf1e33b0 dot11d_update_country_ie +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb1b8a92f ieee80211_ps_tx_ack_rsl EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc370a43e ieee80211_wlan_frequencies_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc51d442c ieee80211_disassociate_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc66c420f ieee80211_rx_mgt_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc6e295d1 ieee80211_wx_get_essid_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcb34daea ieee80211_rx_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcec71890 ieee80211_ps_tx_ack_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd5bbf3b9 ieee80211_wx_get_mode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd83baf22 ieee80211_txb_free_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd8ddb8e7 ieee80211_wx_get_wap_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xda4bb9e7 ieee80211_start_send_beacons_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe0317285 ieee80211_wx_get_encode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe39d4c80 ieee80211_reset_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe3fb2243 ieee80211_wx_get_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc9587918 ieee80211_wx_get_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcb51a4e1 ieee80211_wx_get_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcc678e49 ieee80211_wx_set_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd509a232 ieee80211_wpa_supplicant_ioctl_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd6b97dba ieee80211_softmac_start_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xde15be47 ieee80211_wx_set_scan_rsl EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe828423f ieee80211_is_shortslot_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe8ff4674 dot11d_get_max_tx_pwr_in_dbm -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe97f43b1 ieee80211_wx_set_wap_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf034e133 ieee80211_get_beacon_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf3167ef6 dot11d_scan_complete -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf6e74003 ieee80211_wx_set_rawtx_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf8e5658e ieee80211_stop_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf9edc49c ieee80211_softmac_start_protocol_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfb42d3c1 ieee80211_wx_set_rate_rsl -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x005a88fe iscsit_increment_maxcmdsn -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x00f3ce4f iscsit_register_transport -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x036b7d3a iscsit_stop_dataout_timer -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x03cc6b30 iscsit_check_dataout_payload -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x08adbcf3 iscsit_setup_text_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1166577c __iscsit_check_dataout_hdr -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1f5c1315 iscsit_tmr_post_handler -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x20df47b7 iscsit_handle_snack -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x211f22f0 iscsit_build_r2ts_for_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x256042ba iscsit_build_reject -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x282999c6 iscsit_build_text_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x33f033a5 iscsit_build_datain_pdu -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x368b1f67 iscsit_allocate_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x373d06a6 iscsit_build_logout_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x40a662df iscsit_find_cmd_from_itt -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5b9c7934 iscsit_release_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5c1bc9cf iscsit_process_scsi_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5c954a03 iscsit_response_queue -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5e9b660f iscsit_unregister_transport -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6744bb30 iscsit_sequence_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7cebad57 iscsit_build_task_mgt_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8d2b97ca iscsit_cause_connection_reinstatement -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8fcf3fae iscsit_handle_logout_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9f1042b1 iscsit_reject_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9ff93632 iscsit_build_rsp_pdu -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa1d7fbef iscsi_change_param_sprintf -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa23a92e7 iscsit_aborted_task -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa776a828 iscsit_set_unsolicited_dataout -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb3173e50 iscsit_logout_post_handler -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb37eb175 iscsit_setup_scsi_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbb5d1820 iscsit_process_text_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc679dcd4 iscsit_add_cmd_to_immediate_queue -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc943f376 iscsit_build_nopin_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd19cbc36 iscsit_add_reject -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd581c15b iscsit_immediate_queue -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd76049ce iscsit_find_cmd_from_itt_or_dump -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd7eafe79 iscsit_process_nop_out -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd7fa0b17 iscsit_handle_task_mgt_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xdd53b7a9 iscsit_get_datain_values -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xdddc3863 iscsi_target_check_login_request -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xea55b528 iscsit_check_dataout_hdr -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf0c852c1 iscsit_setup_nop_out +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xef6a6204 ieee80211_disassociate_rsl +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0211622a iscsit_build_nopin_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1c5c364f iscsit_logout_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1ee8c8b9 iscsit_process_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x20faab05 iscsit_stop_dataout_timer +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x23397149 iscsi_target_check_login_request +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x34d68404 iscsit_find_cmd_from_itt_or_dump +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3bda4e48 iscsit_build_logout_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3c8f3a28 iscsit_handle_snack +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3ca74eae iscsit_add_cmd_to_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x420c1fab iscsit_allocate_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x45ebb0ae iscsit_handle_task_mgt_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x52f7e3fd iscsit_handle_logout_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5a340bf5 iscsit_build_rsp_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5aa038e6 iscsit_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5f89b84a iscsit_response_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6144862c iscsit_process_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x635da353 iscsit_setup_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6bfed926 iscsit_set_unsolicited_dataout +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6c2dcd69 iscsit_build_datain_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x78b533c8 iscsit_unregister_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7fe980dd iscsit_check_dataout_payload +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8ad8171e iscsit_increment_maxcmdsn +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8d16604a iscsit_tmr_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x96d38b3d iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x96fdfdbc iscsit_build_text_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9cb29b7a iscsit_get_datain_values +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa0a12ba8 iscsit_sequence_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xac80cc69 iscsit_find_cmd_from_itt +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xafd16b90 iscsit_free_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb3a748c8 iscsit_aborted_task +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb6e8bb27 iscsit_build_r2ts_for_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbb5dea69 iscsit_build_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xce295c10 iscsit_build_task_mgt_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xcf5a6947 iscsit_process_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd20e0103 iscsit_reject_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd61be6ca iscsit_add_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd6a2cd13 iscsit_release_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xdb533758 __iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xdc0f8927 iscsit_setup_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe5980c81 iscsit_cause_connection_reinstatement +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe7f91859 iscsit_queue_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xeaa766df iscsit_register_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xed69d58d iscsi_change_param_sprintf EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf34332f0 iscsi_find_param_from_key -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf6ec132a iscsit_free_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xfba5cfc6 iscsit_queue_rsp -EXPORT_SYMBOL drivers/target/target_core_mod 0x040e1b98 passthrough_attrib_attrs +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xfe84d7dd iscsit_setup_nop_out +EXPORT_SYMBOL drivers/target/target_core_mod 0x000227f6 target_wait_for_sess_cmds +EXPORT_SYMBOL drivers/target/target_core_mod 0x00b90d39 target_tpg_has_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x0287af56 transport_lookup_tmr_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x06c3d6f0 core_tpg_set_initiator_node_tag +EXPORT_SYMBOL drivers/target/target_core_mod 0x0720d3b7 core_tpg_check_initiator_node_acl EXPORT_SYMBOL drivers/target/target_core_mod 0x0871ffd6 transport_set_vpd_ident -EXPORT_SYMBOL drivers/target/target_core_mod 0x0a2bc8be core_tpg_check_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x0ff1c7c6 core_tpg_get_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x138a548f target_get_sess_cmd EXPORT_SYMBOL drivers/target/target_core_mod 0x142072c0 transport_set_vpd_assoc -EXPORT_SYMBOL drivers/target/target_core_mod 0x14269605 target_undepend_item -EXPORT_SYMBOL drivers/target/target_core_mod 0x1b3881c3 target_complete_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x1b753148 transport_free_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x1c26178f sbc_dif_verify -EXPORT_SYMBOL drivers/target/target_core_mod 0x1d3f4d68 transport_generic_request_failure -EXPORT_SYMBOL drivers/target/target_core_mod 0x20131b47 transport_kunmap_data_sg -EXPORT_SYMBOL drivers/target/target_core_mod 0x20d073ef transport_alloc_session_tags -EXPORT_SYMBOL drivers/target/target_core_mod 0x21345d97 target_complete_cmd_with_length -EXPORT_SYMBOL drivers/target/target_core_mod 0x230a2fdb target_send_busy -EXPORT_SYMBOL drivers/target/target_core_mod 0x366463ef transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x1879fa0b target_put_nacl +EXPORT_SYMBOL drivers/target/target_core_mod 0x18a20345 target_to_linux_sector +EXPORT_SYMBOL drivers/target/target_core_mod 0x25e77bbb target_show_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x26442a6b target_submit_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x2a57cdbb target_nacl_find_deve +EXPORT_SYMBOL drivers/target/target_core_mod 0x2bab330a passthrough_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x32328988 transport_kmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x32380a51 target_depend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0x35bbb4d1 transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x39f2a1c7 target_set_cmd_data_length +EXPORT_SYMBOL drivers/target/target_core_mod 0x3a1d9c13 sbc_dif_verify EXPORT_SYMBOL drivers/target/target_core_mod 0x3a20a9d7 transport_set_vpd_ident_type -EXPORT_SYMBOL drivers/target/target_core_mod 0x3a8c3b06 spc_emulate_inquiry_std -EXPORT_SYMBOL drivers/target/target_core_mod 0x3aeda3b2 transport_wait_for_tasks -EXPORT_SYMBOL drivers/target/target_core_mod 0x3b2db6e3 target_set_cmd_data_length -EXPORT_SYMBOL drivers/target/target_core_mod 0x3f6f9f5c target_put_nacl -EXPORT_SYMBOL drivers/target/target_core_mod 0x4123d57e core_tpg_set_initiator_node_tag -EXPORT_SYMBOL drivers/target/target_core_mod 0x45c3faf4 transport_init_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x49f902d5 passthrough_pr_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0x4df6f660 core_tpg_set_initiator_node_queue_depth -EXPORT_SYMBOL drivers/target/target_core_mod 0x5bbf199c transport_lookup_tmr_lun -EXPORT_SYMBOL drivers/target/target_core_mod 0x5fc54dec target_register_template +EXPORT_SYMBOL drivers/target/target_core_mod 0x3a2c5e53 transport_handle_cdb_direct +EXPORT_SYMBOL drivers/target/target_core_mod 0x3b812763 transport_generic_handle_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x3ca1bc2d core_tpg_set_initiator_node_queue_depth +EXPORT_SYMBOL drivers/target/target_core_mod 0x3cac3903 core_tpg_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x3cc8cd43 transport_deregister_session_configfs +EXPORT_SYMBOL drivers/target/target_core_mod 0x41621a96 target_configure_unmap_from_queue +EXPORT_SYMBOL drivers/target/target_core_mod 0x428ff0c1 target_remove_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x44b386e7 sbc_get_write_same_sectors +EXPORT_SYMBOL drivers/target/target_core_mod 0x45e9d635 sbc_get_device_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x4994e62b spc_emulate_report_luns +EXPORT_SYMBOL drivers/target/target_core_mod 0x4ae8269c transport_generic_request_failure +EXPORT_SYMBOL drivers/target/target_core_mod 0x56ab6019 target_complete_cmd_with_length +EXPORT_SYMBOL drivers/target/target_core_mod 0x57bca34f core_allocate_nexus_loss_ua +EXPORT_SYMBOL drivers/target/target_core_mod 0x57f00d8f __target_init_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x5f28d374 core_alua_check_nonop_delay EXPORT_SYMBOL drivers/target/target_core_mod 0x638bffb7 target_free_sgl -EXPORT_SYMBOL drivers/target/target_core_mod 0x641a7d48 sbc_dif_copy_prot -EXPORT_SYMBOL drivers/target/target_core_mod 0x64a17ace target_show_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x64ef24f2 passthrough_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x673a8b21 target_get_sess_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x683e67da transport_generic_new_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x6b4c21b5 target_submit_tmr -EXPORT_SYMBOL drivers/target/target_core_mod 0x73857ea9 target_cmd_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x673bd25d spc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x6c357367 target_cmd_init_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x75072825 transport_backend_register EXPORT_SYMBOL drivers/target/target_core_mod 0x77c50447 core_tmr_alloc_req -EXPORT_SYMBOL drivers/target/target_core_mod 0x78fd871c core_tpg_get_initiator_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0x79855a7a target_backend_unregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x78a0922e target_register_template EXPORT_SYMBOL drivers/target/target_core_mod 0x7a1d0d3c target_alloc_sgl -EXPORT_SYMBOL drivers/target/target_core_mod 0x7c242990 target_nacl_find_deve -EXPORT_SYMBOL drivers/target/target_core_mod 0x8367fa2c transport_copy_sense_to_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x84f9852d transport_generic_free_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x8631f93f target_depend_item -EXPORT_SYMBOL drivers/target/target_core_mod 0x8809dd07 __target_init_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x88556cbb transport_send_check_condition_and_sense -EXPORT_SYMBOL drivers/target/target_core_mod 0x8e663686 sbc_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0x8edf786a target_unregister_template -EXPORT_SYMBOL drivers/target/target_core_mod 0x8f29a4ce transport_deregister_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x98826422 target_lun_is_rdonly -EXPORT_SYMBOL drivers/target/target_core_mod 0x9a2ad518 target_put_sess_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x9b81df8f core_tpg_register -EXPORT_SYMBOL drivers/target/target_core_mod 0x9c5dbe14 spc_emulate_evpd_83 -EXPORT_SYMBOL drivers/target/target_core_mod 0xa749620f sbc_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0xac381494 spc_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0xad5f738e sbc_get_device_type -EXPORT_SYMBOL drivers/target/target_core_mod 0xad9303b5 target_configure_unmap_from_queue -EXPORT_SYMBOL drivers/target/target_core_mod 0xb099930b spc_emulate_report_luns -EXPORT_SYMBOL drivers/target/target_core_mod 0xba7c0c73 __transport_register_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xbb8c3d3b sbc_get_write_same_sectors -EXPORT_SYMBOL drivers/target/target_core_mod 0xbc675bea target_wait_for_sess_cmds -EXPORT_SYMBOL drivers/target/target_core_mod 0xc44e6f7d transport_kmap_data_sg -EXPORT_SYMBOL drivers/target/target_core_mod 0xc58d5468 core_tpg_deregister -EXPORT_SYMBOL drivers/target/target_core_mod 0xc8ed8b23 transport_deregister_session_configfs -EXPORT_SYMBOL drivers/target/target_core_mod 0xccb74d1a transport_alloc_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xcfc0f76c target_cmd_init_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0xd1af8201 target_remove_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xd7f7fe1a transport_generic_handle_tmr -EXPORT_SYMBOL drivers/target/target_core_mod 0xda843ee8 transport_lookup_cmd_lun -EXPORT_SYMBOL drivers/target/target_core_mod 0xdee44f95 transport_handle_cdb_direct -EXPORT_SYMBOL drivers/target/target_core_mod 0xe213fc7e target_execute_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xe8846384 target_setup_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xe9b5d8f4 transport_backend_register -EXPORT_SYMBOL drivers/target/target_core_mod 0xef473d8b target_to_linux_sector -EXPORT_SYMBOL drivers/target/target_core_mod 0xefb3d962 target_tpg_has_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0xf061dbfa core_allocate_nexus_loss_ua -EXPORT_SYMBOL drivers/target/target_core_mod 0xf11cb666 target_submit_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x803e0a5d transport_wait_for_tasks +EXPORT_SYMBOL drivers/target/target_core_mod 0x81054430 transport_generic_new_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x814a8541 spc_emulate_inquiry_std +EXPORT_SYMBOL drivers/target/target_core_mod 0x873fe330 core_tpg_deregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x88d8cedc transport_alloc_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0x88e4e14d passthrough_pr_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x899ba2b0 target_cmd_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x8d65c993 transport_alloc_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x90b732dd transport_kunmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x93bd146b transport_init_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x97054639 __transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x9a11f270 sbc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x9ad1e098 transport_deregister_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x9ad32e1a target_unregister_template +EXPORT_SYMBOL drivers/target/target_core_mod 0x9c153b4b transport_free_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x9d468e9a target_complete_cmd_with_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0x9e1b30d2 target_undepend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0x9faf9aef target_stop_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xa468da8c target_backend_unregister +EXPORT_SYMBOL drivers/target/target_core_mod 0xa979b545 transport_send_check_condition_and_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0xb0d576d5 sbc_dif_copy_prot +EXPORT_SYMBOL drivers/target/target_core_mod 0xb0e8b620 sbc_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0xb0f7a0b9 target_complete_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xbcc8f830 target_show_dynamic_sessions +EXPORT_SYMBOL drivers/target/target_core_mod 0xd001e1bc target_setup_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xd4a9999a spc_emulate_evpd_83 +EXPORT_SYMBOL drivers/target/target_core_mod 0xda916c2e passthrough_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0xe092222e transport_lookup_cmd_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0xe16c2836 transport_copy_sense_to_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xe1f93eb6 target_execute_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xea58748e target_submit_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xeef49c9e target_put_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xf215f5e8 target_lun_is_rdonly +EXPORT_SYMBOL drivers/target/target_core_mod 0xf2892eea transport_generic_free_cmd EXPORT_SYMBOL drivers/target/target_core_mod 0xf3c2dfe0 transport_set_vpd_proto_id -EXPORT_SYMBOL drivers/target/target_core_mod 0xf433edcc target_stop_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xf81bda01 target_show_dynamic_sessions -EXPORT_SYMBOL drivers/target/target_core_mod 0xfbd5a708 core_alua_check_nonop_delay -EXPORT_SYMBOL drivers/target/target_core_mod 0xff5f8809 target_complete_cmd_with_sense -EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0x91d2c1aa usb_cdc_wdm_register -EXPORT_SYMBOL drivers/usb/gadget/libcomposite 0x966e54b3 usb_os_desc_prepare_interf_dir -EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0x4e1bf7f6 sl811h_driver -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x0874e78d usb_wwan_write_room -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x118a3bba usb_wwan_port_remove -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x1bd8f1fc usb_wwan_resume -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x5182ce7b usb_wwan_dtr_rts -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x83c3acdf usb_wwan_tiocmget -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xa7e22c82 usb_wwan_chars_in_buffer -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xc95db80e usb_wwan_open -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xd03ecde8 usb_wwan_write -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xd6d58af9 usb_wwan_suspend -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xdc0d1fdb usb_wwan_close -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xdcf45307 usb_wwan_tiocmset -EXPORT_SYMBOL drivers/usb/serial/usbserial 0x7fe618c6 usb_serial_resume -EXPORT_SYMBOL drivers/usb/serial/usbserial 0xb8f3e120 usb_serial_suspend -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x07c8fd6f mdev_unregister_driver -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x2e8ee295 mdev_get_type_group_id -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x669943d0 mdev_register_driver -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x6d8c5ce8 mtype_get_type_group_id -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x98390d0d mdev_unregister_device -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xa0683dc0 mdev_parent_dev -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xa4a22282 mtype_get_parent_dev -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xcc293028 mdev_register_device +EXPORT_SYMBOL drivers/target/target_core_mod 0xf6fc8490 target_send_busy +EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0x6a943a59 usb_cdc_wdm_register +EXPORT_SYMBOL drivers/usb/gadget/libcomposite 0x79e4666b usb_os_desc_prepare_interf_dir +EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0xbee43d04 sl811h_driver +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x01bf5e12 usb_wwan_resume +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x02a56d10 usb_wwan_write +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x18b5f7c3 usb_wwan_suspend +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x47795ae0 usb_wwan_close +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x7a2cfe5f usb_wwan_chars_in_buffer +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x7c21b6df usb_wwan_port_remove +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x8e8e905c usb_wwan_write_room +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x9610dfdd usb_wwan_open +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xb87e9c16 usb_wwan_tiocmset +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xde791d5d usb_wwan_dtr_rts +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xe9d457b7 usb_wwan_tiocmget +EXPORT_SYMBOL drivers/usb/serial/usbserial 0xcd5b0221 usb_serial_resume +EXPORT_SYMBOL drivers/usb/serial/usbserial 0xd93ef408 usb_serial_suspend +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x0171975a mdev_register_driver +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x0474ac13 mdev_unregister_driver +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x442233f4 mtype_get_parent_dev +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x711337af mtype_get_type_group_id +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x7378b89f mdev_register_device +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x8cb4f0da mdev_parent_dev +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x90fb6a15 mdev_get_type_group_id +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xd202eac2 mdev_unregister_device +EXPORT_SYMBOL drivers/vfio/vfio 0x055fabb6 vfio_pin_pages EXPORT_SYMBOL drivers/vfio/vfio 0x05b8cfda vfio_set_irqs_validate_and_prepare +EXPORT_SYMBOL drivers/vfio/vfio 0x0d8dc0c3 vfio_unregister_notifier EXPORT_SYMBOL drivers/vfio/vfio 0x0f655355 vfio_info_add_capability -EXPORT_SYMBOL drivers/vfio/vfio 0x2329165e vfio_register_notifier EXPORT_SYMBOL drivers/vfio/vfio 0x48a81d7e vfio_group_pin_pages EXPORT_SYMBOL drivers/vfio/vfio 0x51f16cdb vfio_info_cap_shift EXPORT_SYMBOL drivers/vfio/vfio 0x5d3a804b vfio_dma_rw +EXPORT_SYMBOL drivers/vfio/vfio 0x6316468f vfio_register_notifier EXPORT_SYMBOL drivers/vfio/vfio 0x7834defd vfio_group_unpin_pages -EXPORT_SYMBOL drivers/vfio/vfio 0xb7498f13 vfio_unpin_pages -EXPORT_SYMBOL drivers/vfio/vfio 0xc6ef37e2 vfio_unregister_notifier -EXPORT_SYMBOL drivers/vfio/vfio 0xf54954d0 vfio_pin_pages -EXPORT_SYMBOL drivers/vhost/vhost 0x03006997 vhost_chr_write_iter -EXPORT_SYMBOL drivers/vhost/vhost 0x1a5f2d2e vhost_chr_poll +EXPORT_SYMBOL drivers/vfio/vfio 0xae70b32b vfio_unpin_pages +EXPORT_SYMBOL drivers/vhost/vhost 0x727b06d9 vhost_chr_poll +EXPORT_SYMBOL drivers/vhost/vhost 0xa46524d7 vhost_chr_write_iter EXPORT_SYMBOL drivers/vhost/vringh 0x102c8234 vringh_iov_push_iotlb EXPORT_SYMBOL drivers/vhost/vringh 0x140ceb39 vringh_getdesc_kern EXPORT_SYMBOL drivers/vhost/vringh 0x221d4624 vringh_abandon_kern @@ -4480,127 +4483,127 @@ EXPORT_SYMBOL drivers/vhost/vringh 0xcef0e131 vringh_complete_user EXPORT_SYMBOL drivers/vhost/vringh 0xd8ac74e0 vringh_init_iotlb EXPORT_SYMBOL drivers/vhost/vringh 0xff44dbd9 vringh_need_notify_user -EXPORT_SYMBOL drivers/video/backlight/lcd 0x9bc101e9 lcd_device_unregister -EXPORT_SYMBOL drivers/video/backlight/lcd 0xa5ddb90a devm_lcd_device_unregister -EXPORT_SYMBOL drivers/video/backlight/lcd 0xd041e818 lcd_device_register -EXPORT_SYMBOL drivers/video/backlight/lcd 0xfb801464 devm_lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0x7c031e1a devm_lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0xcb9406ad lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0xdf83ba29 devm_lcd_device_unregister +EXPORT_SYMBOL drivers/video/backlight/lcd 0xfd9a095b 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 0x23089948 svga_tileblit +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x35b04718 svga_tilefill +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x45478467 svga_tilecursor EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x4ab38ef2 svga_set_default_crt_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x5d8c0513 svga_tilecopy -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x68440e88 svga_settile -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x8052642f svga_tilefill +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x5a1042d2 svga_settile +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x5f337e5a svga_get_tilemax EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x83a41489 svga_set_timings EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x84c337c2 svga_wcrt_multi EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x84c97d2a svga_match_format +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xa3351a91 svga_tilecopy EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xb0ab2b2e svga_check_timings -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xb73087e7 svga_get_tilemax +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xb8ec85de 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 0xdaff8006 svga_tilecursor 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 0xf550a479 svga_get_caps -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xfeb8265b svga_tileblit -EXPORT_SYMBOL drivers/video/fbdev/core/syscopyarea 0xcc897de9 sys_copyarea -EXPORT_SYMBOL drivers/video/fbdev/core/sysfillrect 0xd2e01d03 sys_fillrect -EXPORT_SYMBOL drivers/video/fbdev/core/sysimgblt 0x31656081 sys_imageblit +EXPORT_SYMBOL drivers/video/fbdev/core/syscopyarea 0x0d73d48c sys_copyarea +EXPORT_SYMBOL drivers/video/fbdev/core/sysfillrect 0x9583bf75 sys_fillrect +EXPORT_SYMBOL drivers/video/fbdev/core/sysimgblt 0x2e0865dc sys_imageblit EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x0cc3ede5 cyber2000fb_detach +EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x4c4f2ec8 cyber2000fb_attach EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x534b6f18 cyber2000fb_disable_extregs -EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x7aa1d5b0 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 0x566b23ae mac_find_mode +EXPORT_SYMBOL drivers/video/fbdev/macmodes 0x3a551c0e mac_find_mode EXPORT_SYMBOL drivers/video/fbdev/macmodes 0xe2304303 mac_map_monitor_sense -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x23265492 matroxfb_g450_setclk -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x635c16fa g450_mnp2f -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x63732753 matroxfb_g450_setpll_cond -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x426d8435 matrox_G100 -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x9a4ed293 DAC1064_global_init -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xb33f4f2e matrox_mystique -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xd12dd128 DAC1064_global_restore -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_Ti3026 0xbeb8c853 matrox_millennium -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_accel 0x0619c233 matrox_cfbX_init -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x1f2fb099 matroxfb_enable_irq -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x34a7c572 matroxfb_wait_for_sync -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x34f755b4 matroxfb_unregister_driver -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xbd25a5d0 matroxfb_register_driver -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x932705ed matroxfb_g450_shutdown -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0xdd46c16b matroxfb_g450_connect -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x1fa08f09 matroxfb_DAC_in -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x2222738b matroxfb_read_pins +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x11a9208c g450_mnp2f +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x9a6b7d60 matroxfb_g450_setclk +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xcd066011 matroxfb_g450_setpll_cond +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x531e4761 matrox_mystique +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x6f819604 matrox_G100 +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x80eaee03 DAC1064_global_restore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xa32b17ce DAC1064_global_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_Ti3026 0xc782f38a matrox_millennium +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_accel 0xeddec8af matrox_cfbX_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x4f10373e matroxfb_wait_for_sync +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x6b382a3c matroxfb_enable_irq +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xaa9900a6 matroxfb_unregister_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xf67b50fe matroxfb_register_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0xe30260bf matroxfb_g450_shutdown +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0xf4465d9f matroxfb_g450_connect EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x25cf8049 matroxfb_PLL_calcclock -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x9de4a286 matroxfb_vgaHWrestore -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xc5cdcf10 matroxfb_vgaHWinit +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x54009b61 matroxfb_DAC_in +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x7b50c2d8 matroxfb_read_pins EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xcdc90c64 matroxfb_var2my -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xd7bb59a4 matroxfb_DAC_out +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xdc64f03a matroxfb_vgaHWrestore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xe0b98515 matroxfb_vgaHWinit +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xe37c1453 matroxfb_DAC_out EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x01ea132e dispc_runtime_put EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x03005606 omapdss_get_version -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x2335ff9a dss_mgr_set_timings -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x25d85097 omapdss_output_set_device -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x29991d2f dss_install_mgr_ops -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x2ad72d4f omapdss_register_display +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x04e2c22d omapdss_default_get_resolution +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x068bb0cb dss_mgr_enable +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x205836f6 omap_dss_find_output_by_port_node +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x2bccabc4 omapdss_output_set_device +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x2d5487dc omapdss_find_output_from_display +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x2fcd1dac omap_dss_find_device EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x3082a0b3 dss_feat_get_supported_color_modes -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x32c3644c dss_mgr_set_lcd_config -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x379777ce omap_dss_get_next_device -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x39032ffb dss_mgr_disconnect +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x3357b234 omapdss_default_get_timings EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x3a50573f dispc_ovl_check EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x3d36d54d dispc_mgr_set_lcd_config -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x4153ae9d dss_mgr_start_update EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x42912b0c dispc_clear_irqstatus +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x446c9b45 omap_dss_put_device EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x45d74ef6 dispc_mgr_enable -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x4a426df8 omap_dss_find_output_by_port_node EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x4bd67a8d dispc_write_irqenable EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x4c33081d omapdss_compat_uninit -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x53cbf1a9 omapdss_find_mgr_from_display +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x4e12ea2d omap_dss_find_output +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x4fa8d153 omapdss_unregister_output +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x5256954a omapdss_register_output EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x54f6830a omapdss_get_default_display_name EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x5689afe7 dispc_ovl_enable -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x576935c2 omap_dss_get_device +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x57438063 omapdss_default_get_recommended_bpp EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x636b3461 omap_dss_get_num_overlays EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x66cdd3c9 dispc_mgr_setup +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x694f3824 dss_install_mgr_ops +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x699a2234 omap_dss_get_overlay EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x6b1a3090 omap_dss_ntsc_timings -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x6d15f0ef dss_mgr_connect -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x6da0355d omap_dss_get_overlay_manager -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x6f7f27f3 omap_dss_get_output +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x6c67b717 dss_mgr_disconnect +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x6f1da47f omapdss_find_mgr_from_display EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x70e39dae dss_uninstall_mgr_ops -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x739f1547 omapdss_output_unset_device -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x8067ba6b dss_mgr_disable +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x721869e7 dss_mgr_set_timings +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x7baf6c54 omap_dss_get_next_device +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x7f88fa44 omap_dss_get_overlay_manager EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x827143a1 omap_dispc_unregister_isr -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x83e7d759 omapdss_find_output_from_display EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x87fdb051 dispc_mgr_go -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x8abec366 omapdss_register_output -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x8bc22178 omap_dss_find_output +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x898841ab dss_mgr_disable +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x92e8315a omap_dss_get_output EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x93963a85 dss_feat_get_num_mgrs EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x967cb4e8 dispc_ovl_set_channel_out -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x984dc4b9 omapdss_unregister_display EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xa13d27f5 dispc_read_irqenable +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xa385a466 dss_mgr_connect EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xa4f6a175 dispc_mgr_get_sync_lost_irq -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xabeb9542 omap_dss_put_device -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xad5c1ddf omapdss_unregister_output -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xadc8b0ec omapdss_default_get_resolution +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xb1b5153e dss_mgr_register_framedone_handler EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xb3ed5aa9 dispc_mgr_is_enabled EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xb7f94a15 dispc_mgr_set_timings EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xba8ddcea dispc_mgr_get_vsync_irq EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xbafeee36 dispc_runtime_get +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xbcd2830d omapdss_unregister_display EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xbe0d4752 omap_video_timings_to_videomode EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xc45105c3 dispc_mgr_go_busy +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xc7148bc3 dss_mgr_unregister_framedone_handler EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xcc197296 omap_dispc_register_isr EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xd1067ba7 dispc_ovl_enabled -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xd3ff84f2 omap_dss_find_device -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xd46cdb24 dss_mgr_register_framedone_handler -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xd51e31de omapdss_default_get_timings -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xd605f01f dss_mgr_enable EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xd70adbc1 videomode_to_omap_video_timings -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xd84f1fa6 omapdss_default_get_recommended_bpp +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xd8a4d589 omapdss_register_display EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xd8ed186b omap_dss_pal_timings EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xdb93b838 dispc_free_irq -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xe7f46361 omap_dss_get_overlay +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xdc8d9ab9 omapdss_output_unset_device EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xee2bc2d0 omapdss_is_initialized EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xef3b2795 dispc_mgr_get_framedone_irq +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xf0a6dba3 dss_mgr_set_lcd_config EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xf4a7fc6d omapdss_compat_init EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xf4f63234 dispc_read_irqstatus -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xf89bb1aa dss_mgr_unregister_framedone_handler +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xf89eb998 omap_dss_get_device EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xf9427374 dispc_request_irq +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xfa5cc25f dss_mgr_start_update EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xfa95d18f dispc_ovl_setup EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xfe40bf95 dss_feat_get_num_ovls EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xffd2cf99 omap_dss_get_num_overlay_managers @@ -4608,72 +4611,72 @@ 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 0x0793d253 is_virtio_dma_buf -EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x1a3319c5 virtio_dma_buf_export -EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0xc54dad23 virtio_dma_buf_attach -EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0xcebca710 virtio_dma_buf_get_uuid -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x2beb5eba w1_ds2780_eeprom_cmd -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x54a8bbb4 w1_ds2780_io -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x11a769e0 w1_ds2781_eeprom_cmd -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0xc2ef2d90 w1_ds2781_io -EXPORT_SYMBOL drivers/w1/wire 0x1f662886 w1_register_family -EXPORT_SYMBOL drivers/w1/wire 0x9b4d194f w1_unregister_family -EXPORT_SYMBOL drivers/w1/wire 0xae3adf09 w1_remove_master_device -EXPORT_SYMBOL drivers/w1/wire 0xafed0ad7 w1_add_master_device -EXPORT_SYMBOL fs/fscache/fscache 0x04dbfa17 __fscache_maybe_release_page +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x01db28fe virtio_dma_buf_attach +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x22087854 virtio_dma_buf_get_uuid +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x7d2bcc31 virtio_dma_buf_export +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x8322a98c is_virtio_dma_buf +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x4313b47d w1_ds2780_io +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0xfdd3b10d w1_ds2780_eeprom_cmd +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x5753126f w1_ds2781_eeprom_cmd +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0xfbc8d7e3 w1_ds2781_io +EXPORT_SYMBOL drivers/w1/wire 0x1627786a w1_register_family +EXPORT_SYMBOL drivers/w1/wire 0x64921c65 w1_remove_master_device +EXPORT_SYMBOL drivers/w1/wire 0xe4349d46 w1_unregister_family +EXPORT_SYMBOL drivers/w1/wire 0xf7fba96b w1_add_master_device +EXPORT_SYMBOL fs/fscache/fscache 0x01218359 fscache_object_lookup_negative +EXPORT_SYMBOL fs/fscache/fscache 0x02ebea3f __fscache_wait_on_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0x042792ae fscache_enqueue_operation +EXPORT_SYMBOL fs/fscache/fscache 0x04a1a6c0 fscache_withdraw_cache EXPORT_SYMBOL fs/fscache/fscache 0x059a00d2 fscache_cache_cleared_wq -EXPORT_SYMBOL fs/fscache/fscache 0x06f31388 __fscache_acquire_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x0759c8c3 __fscache_enable_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x0c08da43 __fscache_unregister_netfs -EXPORT_SYMBOL fs/fscache/fscache 0x141dd831 fscache_object_lookup_negative -EXPORT_SYMBOL fs/fscache/fscache 0x20494430 fscache_enqueue_operation -EXPORT_SYMBOL fs/fscache/fscache 0x2596fc48 __fscache_check_consistency -EXPORT_SYMBOL fs/fscache/fscache 0x27958d45 fscache_fsdef_index -EXPORT_SYMBOL fs/fscache/fscache 0x33295f64 __fscache_attr_changed -EXPORT_SYMBOL fs/fscache/fscache 0x42ecf8bf __fscache_wait_on_page_write -EXPORT_SYMBOL fs/fscache/fscache 0x449f0b08 __fscache_read_or_alloc_pages -EXPORT_SYMBOL fs/fscache/fscache 0x46b0f2e0 __fscache_check_page_write -EXPORT_SYMBOL fs/fscache/fscache 0x4dc1869d fscache_io_error -EXPORT_SYMBOL fs/fscache/fscache 0x53744996 __fscache_update_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x57e30927 fscache_obtained_object -EXPORT_SYMBOL fs/fscache/fscache 0x5b85999d __fscache_read_or_alloc_page -EXPORT_SYMBOL fs/fscache/fscache 0x5c01dd1f fscache_operation_init -EXPORT_SYMBOL fs/fscache/fscache 0x69b377f3 __fscache_readpages_cancel +EXPORT_SYMBOL fs/fscache/fscache 0x0d8db2c3 __fscache_enable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x12297151 __fscache_read_or_alloc_pages +EXPORT_SYMBOL fs/fscache/fscache 0x21dbe820 __fscache_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0x229f6680 fscache_add_cache +EXPORT_SYMBOL fs/fscache/fscache 0x25fff29b fscache_object_retrying_stale +EXPORT_SYMBOL fs/fscache/fscache 0x3357f6fb __fscache_acquire_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x35059618 __fscache_check_page_write +EXPORT_SYMBOL fs/fscache/fscache 0x3934a2c6 fscache_check_aux +EXPORT_SYMBOL fs/fscache/fscache 0x456a8389 __fscache_wait_on_page_write +EXPORT_SYMBOL fs/fscache/fscache 0x46707374 fscache_init_cache +EXPORT_SYMBOL fs/fscache/fscache 0x58e86e48 __fscache_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0x5b360c20 __fscache_uncache_all_inode_pages +EXPORT_SYMBOL fs/fscache/fscache 0x5bffd896 __fscache_check_consistency +EXPORT_SYMBOL fs/fscache/fscache 0x60d1b89b fscache_mark_page_cached +EXPORT_SYMBOL fs/fscache/fscache 0x60df68de fscache_object_init +EXPORT_SYMBOL fs/fscache/fscache 0x63ede03f __fscache_attr_changed +EXPORT_SYMBOL fs/fscache/fscache 0x6469a777 fscache_object_mark_killed EXPORT_SYMBOL fs/fscache/fscache 0x74530ecd fscache_op_debug_id -EXPORT_SYMBOL fs/fscache/fscache 0x8b412ab0 fscache_object_destroy -EXPORT_SYMBOL fs/fscache/fscache 0x936ca616 fscache_object_retrying_stale -EXPORT_SYMBOL fs/fscache/fscache 0x96082197 fscache_op_complete -EXPORT_SYMBOL fs/fscache/fscache 0x96f708c4 __fscache_write_page -EXPORT_SYMBOL fs/fscache/fscache 0x9c786318 fscache_add_cache -EXPORT_SYMBOL fs/fscache/fscache 0xa43ed2ba fscache_withdraw_cache -EXPORT_SYMBOL fs/fscache/fscache 0xa89a8b32 fscache_object_mark_killed -EXPORT_SYMBOL fs/fscache/fscache 0xab043e3e __fscache_invalidate -EXPORT_SYMBOL fs/fscache/fscache 0xacc1bc00 fscache_put_operation -EXPORT_SYMBOL fs/fscache/fscache 0xb0b34e1e fscache_check_aux -EXPORT_SYMBOL fs/fscache/fscache 0xb938accf fscache_mark_pages_cached -EXPORT_SYMBOL fs/fscache/fscache 0xb9f2e4d0 fscache_mark_page_cached -EXPORT_SYMBOL fs/fscache/fscache 0xbc30c14c __fscache_begin_read_operation -EXPORT_SYMBOL fs/fscache/fscache 0xbde527f6 __fscache_wait_on_invalidate -EXPORT_SYMBOL fs/fscache/fscache 0xc679f1db __fscache_register_netfs -EXPORT_SYMBOL fs/fscache/fscache 0xc69c2b34 fscache_init_cache -EXPORT_SYMBOL fs/fscache/fscache 0xce31847e __fscache_relinquish_cookie -EXPORT_SYMBOL fs/fscache/fscache 0xceb029c1 __fscache_uncache_page -EXPORT_SYMBOL fs/fscache/fscache 0xe071892e __fscache_uncache_all_inode_pages -EXPORT_SYMBOL fs/fscache/fscache 0xeaf3455d __fscache_disable_cookie -EXPORT_SYMBOL fs/fscache/fscache 0xf2c35ee1 fscache_object_init -EXPORT_SYMBOL fs/fscache/fscache 0xf8ef3151 __fscache_alloc_page -EXPORT_SYMBOL fs/netfs/netfs 0x269e2fb8 netfs_readpage -EXPORT_SYMBOL fs/netfs/netfs 0x5818d158 netfs_subreq_terminated -EXPORT_SYMBOL fs/netfs/netfs 0x9f5010b6 netfs_readahead -EXPORT_SYMBOL fs/netfs/netfs 0xe278c697 netfs_write_begin -EXPORT_SYMBOL fs/netfs/netfs 0xec1c47b6 netfs_stats_show +EXPORT_SYMBOL fs/fscache/fscache 0x788cd694 __fscache_write_page +EXPORT_SYMBOL fs/fscache/fscache 0x7d2b6f04 fscache_io_error +EXPORT_SYMBOL fs/fscache/fscache 0x8c19e722 fscache_object_destroy +EXPORT_SYMBOL fs/fscache/fscache 0x8f9696a9 __fscache_unregister_netfs +EXPORT_SYMBOL fs/fscache/fscache 0x97c47c99 __fscache_relinquish_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xa556f438 __fscache_disable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xa8097291 __fscache_register_netfs +EXPORT_SYMBOL fs/fscache/fscache 0xabd2dbac fscache_put_operation +EXPORT_SYMBOL fs/fscache/fscache 0xaf8e000e __fscache_begin_read_operation +EXPORT_SYMBOL fs/fscache/fscache 0xafbcb8fd fscache_obtained_object +EXPORT_SYMBOL fs/fscache/fscache 0xb9577eba __fscache_read_or_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0xbc09a5d4 fscache_operation_init +EXPORT_SYMBOL fs/fscache/fscache 0xc4db49ca fscache_mark_pages_cached +EXPORT_SYMBOL fs/fscache/fscache 0xd2dc6872 __fscache_readpages_cancel +EXPORT_SYMBOL fs/fscache/fscache 0xd3ede621 fscache_op_complete +EXPORT_SYMBOL fs/fscache/fscache 0xde6f4488 fscache_fsdef_index +EXPORT_SYMBOL fs/fscache/fscache 0xe0855a09 __fscache_update_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xe0dc5ebf __fscache_uncache_page +EXPORT_SYMBOL fs/fscache/fscache 0xfdda6ab0 __fscache_maybe_release_page +EXPORT_SYMBOL fs/netfs/netfs 0x07345971 netfs_stats_show +EXPORT_SYMBOL fs/netfs/netfs 0x0991f9ac netfs_readahead +EXPORT_SYMBOL fs/netfs/netfs 0x4298f05a netfs_write_begin +EXPORT_SYMBOL fs/netfs/netfs 0x8a1cbeeb netfs_readpage +EXPORT_SYMBOL fs/netfs/netfs 0xdace65e6 netfs_subreq_terminated EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active -EXPORT_SYMBOL fs/quota/quota_tree 0x0113b097 qtree_delete_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0x0891bb18 qtree_get_next_id -EXPORT_SYMBOL fs/quota/quota_tree 0x7080c454 qtree_entry_unused -EXPORT_SYMBOL fs/quota/quota_tree 0x79180142 qtree_release_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0xe248db51 qtree_read_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0xf35c1d53 qtree_write_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x05897845 qtree_delete_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x11dba231 qtree_read_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x3637e208 qtree_release_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x632125c6 qtree_entry_unused +EXPORT_SYMBOL fs/quota/quota_tree 0x6990a8aa qtree_get_next_id +EXPORT_SYMBOL fs/quota/quota_tree 0x722a9c9d qtree_write_dquot EXPORT_SYMBOL lib/crc-itu-t 0xa2048e95 crc_itu_t EXPORT_SYMBOL lib/crc-itu-t 0xd819a524 crc_itu_t_table EXPORT_SYMBOL lib/crc7 0x65aaf037 crc7_be_syndrome_table @@ -4700,7 +4703,7 @@ EXPORT_SYMBOL lib/libcrc32c 0x89a0cd52 crc32c_impl EXPORT_SYMBOL lib/libcrc32c 0xb15b4109 crc32c EXPORT_SYMBOL lib/lru_cache 0x03f599c7 lc_get_cumulative -EXPORT_SYMBOL lib/lru_cache 0x40fbb183 lc_seq_dump_details +EXPORT_SYMBOL lib/lru_cache 0x42f7bbee lc_seq_dump_details EXPORT_SYMBOL lib/lru_cache 0x4feade4b lc_create EXPORT_SYMBOL lib/lru_cache 0x56fc3ea0 lc_put EXPORT_SYMBOL lib/lru_cache 0x619ed575 lc_try_get @@ -4711,7 +4714,7 @@ EXPORT_SYMBOL lib/lru_cache 0xcb990a55 lc_try_lock EXPORT_SYMBOL lib/lru_cache 0xcea6747e lc_destroy EXPORT_SYMBOL lib/lru_cache 0xd212c9f0 lc_get -EXPORT_SYMBOL lib/lru_cache 0xd97a490d lc_seq_printf_stats +EXPORT_SYMBOL lib/lru_cache 0xe2e5d1c1 lc_seq_printf_stats EXPORT_SYMBOL lib/lru_cache 0xeb13128b lc_del EXPORT_SYMBOL lib/lru_cache 0xf460a486 lc_is_used EXPORT_SYMBOL lib/lru_cache 0xf5ea5f5c lc_index_of @@ -4783,813 +4786,814 @@ EXPORT_SYMBOL lib/zstd/zstd_compress 0xdac739f6 ZSTD_initCCtx EXPORT_SYMBOL lib/zstd/zstd_compress 0xf39e441c ZSTD_CStreamWorkspaceBound EXPORT_SYMBOL lib/zstd/zstd_compress 0xf4cbffc3 ZSTD_flushStream -EXPORT_SYMBOL net/6lowpan/6lowpan 0x0ddf2497 lowpan_register_netdevice -EXPORT_SYMBOL net/6lowpan/6lowpan 0x35827238 lowpan_unregister_netdev -EXPORT_SYMBOL net/6lowpan/6lowpan 0x4da6a32a lowpan_register_netdev -EXPORT_SYMBOL net/6lowpan/6lowpan 0x5c7e5e9e lowpan_unregister_netdevice -EXPORT_SYMBOL net/6lowpan/6lowpan 0x72981b8b lowpan_nhc_add -EXPORT_SYMBOL net/6lowpan/6lowpan 0xe9fb4868 lowpan_nhc_del -EXPORT_SYMBOL net/802/p8022 0xbec926ec unregister_8022_client -EXPORT_SYMBOL net/802/p8022 0xcb9dfb0e register_8022_client -EXPORT_SYMBOL net/802/psnap 0x8d050844 unregister_snap_client -EXPORT_SYMBOL net/802/psnap 0x8eb0fdaf register_snap_client -EXPORT_SYMBOL net/9p/9pnet 0x0120ef08 p9_client_mknod_dotl -EXPORT_SYMBOL net/9p/9pnet 0x05419dfd v9fs_get_trans_by_name -EXPORT_SYMBOL net/9p/9pnet 0x077a78ca p9_client_walk -EXPORT_SYMBOL net/9p/9pnet 0x1e27f1e0 p9_client_wstat -EXPORT_SYMBOL net/9p/9pnet 0x2104097f p9_client_statfs +EXPORT_SYMBOL net/6lowpan/6lowpan 0x198b6a16 lowpan_nhc_del +EXPORT_SYMBOL net/6lowpan/6lowpan 0x9cb3eb97 lowpan_unregister_netdevice +EXPORT_SYMBOL net/6lowpan/6lowpan 0xa56e0e3c lowpan_nhc_add +EXPORT_SYMBOL net/6lowpan/6lowpan 0xaa1b51a6 lowpan_register_netdevice +EXPORT_SYMBOL net/6lowpan/6lowpan 0xb42152de lowpan_unregister_netdev +EXPORT_SYMBOL net/6lowpan/6lowpan 0xbfcfeabb lowpan_register_netdev +EXPORT_SYMBOL net/802/p8022 0x215d6fde unregister_8022_client +EXPORT_SYMBOL net/802/p8022 0xbc64ee95 register_8022_client +EXPORT_SYMBOL net/802/psnap 0xb0d3926f register_snap_client +EXPORT_SYMBOL net/802/psnap 0xe3d87a93 unregister_snap_client +EXPORT_SYMBOL net/9p/9pnet 0x0b3dce55 v9fs_register_trans +EXPORT_SYMBOL net/9p/9pnet 0x0ecc2082 p9_client_fsync +EXPORT_SYMBOL net/9p/9pnet 0x0f9944a5 p9_client_readdir EXPORT_SYMBOL net/9p/9pnet 0x22a05bbe p9_fcall_fini -EXPORT_SYMBOL net/9p/9pnet 0x27efa7cf p9_tag_lookup -EXPORT_SYMBOL net/9p/9pnet 0x29963df6 p9_client_create_dotl -EXPORT_SYMBOL net/9p/9pnet 0x31eb20c9 p9_show_client_options -EXPORT_SYMBOL net/9p/9pnet 0x3510b43a p9_client_readdir +EXPORT_SYMBOL net/9p/9pnet 0x279537f7 p9_client_clunk +EXPORT_SYMBOL net/9p/9pnet 0x2ceed904 p9_is_proto_dotl +EXPORT_SYMBOL net/9p/9pnet 0x2d8c0c0c p9_client_walk +EXPORT_SYMBOL net/9p/9pnet 0x3808cf96 p9_client_read EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno EXPORT_SYMBOL net/9p/9pnet 0x3d986cf9 p9dirent_read +EXPORT_SYMBOL net/9p/9pnet 0x446938b8 p9_client_fcreate EXPORT_SYMBOL net/9p/9pnet 0x4c1c47a1 p9_req_put -EXPORT_SYMBOL net/9p/9pnet 0x5418cb24 p9_client_mkdir_dotl -EXPORT_SYMBOL net/9p/9pnet 0x58c365e0 p9_is_proto_dotu -EXPORT_SYMBOL net/9p/9pnet 0x5d74d773 p9_is_proto_dotl -EXPORT_SYMBOL net/9p/9pnet 0x5fa71942 p9_client_stat -EXPORT_SYMBOL net/9p/9pnet 0x6e908e1d p9_client_create -EXPORT_SYMBOL net/9p/9pnet 0x7859225f p9_client_cb -EXPORT_SYMBOL net/9p/9pnet 0x7c2aea70 p9_client_getlock_dotl -EXPORT_SYMBOL net/9p/9pnet 0x7ee7ba81 p9_release_pages +EXPORT_SYMBOL net/9p/9pnet 0x4e5b3d80 p9_client_create_dotl +EXPORT_SYMBOL net/9p/9pnet 0x5d55e509 v9fs_unregister_trans +EXPORT_SYMBOL net/9p/9pnet 0x5ebc560e p9_client_symlink +EXPORT_SYMBOL net/9p/9pnet 0x6fe3d6aa p9_client_mknod_dotl +EXPORT_SYMBOL net/9p/9pnet 0x71f2daac p9_client_wstat +EXPORT_SYMBOL net/9p/9pnet 0x7b2c86d6 p9_client_readlink +EXPORT_SYMBOL net/9p/9pnet 0x7e659c1d p9_client_statfs EXPORT_SYMBOL net/9p/9pnet 0x80bbc6fd p9_parse_header -EXPORT_SYMBOL net/9p/9pnet 0x8276d4f6 p9_client_fsync -EXPORT_SYMBOL net/9p/9pnet 0x8532a6c0 p9_client_destroy -EXPORT_SYMBOL net/9p/9pnet 0x8b8ef149 p9_client_read_once -EXPORT_SYMBOL net/9p/9pnet 0x8d24789e p9_client_symlink -EXPORT_SYMBOL net/9p/9pnet 0xa099bedb p9_client_lock_dotl -EXPORT_SYMBOL net/9p/9pnet 0xb062881a p9_client_remove -EXPORT_SYMBOL net/9p/9pnet 0xc53d7f35 p9_client_rename -EXPORT_SYMBOL net/9p/9pnet 0xc66cdc82 p9_client_attach -EXPORT_SYMBOL net/9p/9pnet 0xc7f10b84 p9_client_read -EXPORT_SYMBOL net/9p/9pnet 0xca58a54e p9_client_unlinkat -EXPORT_SYMBOL net/9p/9pnet 0xcbd1c831 p9_client_clunk -EXPORT_SYMBOL net/9p/9pnet 0xd32a7f3f p9_client_getattr_dotl +EXPORT_SYMBOL net/9p/9pnet 0x842d52e6 p9_client_write +EXPORT_SYMBOL net/9p/9pnet 0x87935d7d p9_client_read_once +EXPORT_SYMBOL net/9p/9pnet 0x87df8bac p9_client_rename +EXPORT_SYMBOL net/9p/9pnet 0x91562ac0 v9fs_get_trans_by_name +EXPORT_SYMBOL net/9p/9pnet 0x94f9e1a2 p9_client_disconnect +EXPORT_SYMBOL net/9p/9pnet 0x955020d9 p9_show_client_options +EXPORT_SYMBOL net/9p/9pnet 0xa18bac04 p9_release_pages +EXPORT_SYMBOL net/9p/9pnet 0xa2c9f86f p9_client_cb +EXPORT_SYMBOL net/9p/9pnet 0xa40f9ca2 p9_client_getlock_dotl +EXPORT_SYMBOL net/9p/9pnet 0xada34903 p9_is_proto_dotu +EXPORT_SYMBOL net/9p/9pnet 0xb287ea9b p9_client_getattr_dotl +EXPORT_SYMBOL net/9p/9pnet 0xb4414d73 p9_client_attach +EXPORT_SYMBOL net/9p/9pnet 0xbb98ecf7 p9_client_link +EXPORT_SYMBOL net/9p/9pnet 0xbeef9f22 v9fs_get_default_trans +EXPORT_SYMBOL net/9p/9pnet 0xc7b1d6bd p9_client_mkdir_dotl +EXPORT_SYMBOL net/9p/9pnet 0xc9a25818 p9_client_destroy +EXPORT_SYMBOL net/9p/9pnet 0xd013e875 p9_client_lock_dotl +EXPORT_SYMBOL net/9p/9pnet 0xd055d76e p9_client_setattr +EXPORT_SYMBOL net/9p/9pnet 0xd35c4485 p9_client_stat EXPORT_SYMBOL net/9p/9pnet 0xd384c683 p9stat_free -EXPORT_SYMBOL net/9p/9pnet 0xd5de6e20 p9_client_fcreate -EXPORT_SYMBOL net/9p/9pnet 0xd8116287 p9_client_begin_disconnect -EXPORT_SYMBOL net/9p/9pnet 0xdd688f46 v9fs_unregister_trans +EXPORT_SYMBOL net/9p/9pnet 0xdbf07475 p9_client_create +EXPORT_SYMBOL net/9p/9pnet 0xe27e978a p9_client_open +EXPORT_SYMBOL net/9p/9pnet 0xe3cb9c5d p9_client_remove EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init -EXPORT_SYMBOL net/9p/9pnet 0xe64c3c33 p9_client_disconnect EXPORT_SYMBOL net/9p/9pnet 0xe6b1e55e p9stat_read -EXPORT_SYMBOL net/9p/9pnet 0xec74bcd0 p9_client_write -EXPORT_SYMBOL net/9p/9pnet 0xee4095a5 v9fs_get_default_trans -EXPORT_SYMBOL net/9p/9pnet 0xf0b7a1a1 p9_client_setattr -EXPORT_SYMBOL net/9p/9pnet 0xf23a9d4d p9_client_open -EXPORT_SYMBOL net/9p/9pnet 0xfa081cba p9_client_link -EXPORT_SYMBOL net/9p/9pnet 0xfacda300 p9_client_renameat -EXPORT_SYMBOL net/9p/9pnet 0xfb0882b6 v9fs_register_trans -EXPORT_SYMBOL net/9p/9pnet 0xfcdadc46 p9_client_readlink -EXPORT_SYMBOL net/appletalk/appletalk 0x32ee2136 aarp_send_ddp -EXPORT_SYMBOL net/appletalk/appletalk 0x3fead599 atalk_find_dev_addr -EXPORT_SYMBOL net/appletalk/appletalk 0x898853e6 atrtr_get_dev -EXPORT_SYMBOL net/appletalk/appletalk 0xb92b2ea2 alloc_ltalkdev +EXPORT_SYMBOL net/9p/9pnet 0xe9b7f89b p9_client_unlinkat +EXPORT_SYMBOL net/9p/9pnet 0xed097398 p9_client_begin_disconnect +EXPORT_SYMBOL net/9p/9pnet 0xf856c455 p9_tag_lookup +EXPORT_SYMBOL net/9p/9pnet 0xfe21f3bc p9_client_renameat +EXPORT_SYMBOL net/appletalk/appletalk 0x82b76e19 alloc_ltalkdev +EXPORT_SYMBOL net/appletalk/appletalk 0x8bfcc3d4 aarp_send_ddp +EXPORT_SYMBOL net/appletalk/appletalk 0xd2dc6df9 atalk_find_dev_addr +EXPORT_SYMBOL net/appletalk/appletalk 0xd8330020 atrtr_get_dev +EXPORT_SYMBOL net/atm/atm 0x0fe18814 atm_dev_release_vccs +EXPORT_SYMBOL net/atm/atm 0x14908f73 deregister_atm_ioctl EXPORT_SYMBOL net/atm/atm 0x2cc2d52d vcc_hash -EXPORT_SYMBOL net/atm/atm 0x2dd891c1 atm_charge -EXPORT_SYMBOL net/atm/atm 0x36ba6743 atm_dev_deregister -EXPORT_SYMBOL net/atm/atm 0x3c7e2298 atm_dev_lookup -EXPORT_SYMBOL net/atm/atm 0x40f6a326 deregister_atm_ioctl -EXPORT_SYMBOL net/atm/atm 0x417cc321 vcc_release_async -EXPORT_SYMBOL net/atm/atm 0x42d5b6fd vcc_insert_socket +EXPORT_SYMBOL net/atm/atm 0x3768292d atm_alloc_charge +EXPORT_SYMBOL net/atm/atm 0x39787fbd atm_dev_lookup EXPORT_SYMBOL net/atm/atm 0x4443d399 atm_proc_root +EXPORT_SYMBOL net/atm/atm 0x54311c08 atm_init_aal5 +EXPORT_SYMBOL net/atm/atm 0x65d9ba06 atm_dev_register EXPORT_SYMBOL net/atm/atm 0x6b9a3871 vcc_sklist_lock -EXPORT_SYMBOL net/atm/atm 0x6c952681 atm_init_aal5 -EXPORT_SYMBOL net/atm/atm 0x78f74f5d vcc_process_recv_queue -EXPORT_SYMBOL net/atm/atm 0x9de35746 atm_dev_signal_change -EXPORT_SYMBOL net/atm/atm 0x9f38f63a atm_dev_register +EXPORT_SYMBOL net/atm/atm 0x6e3d505b register_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0x80ca95bc atm_charge +EXPORT_SYMBOL net/atm/atm 0x989b2fb0 vcc_process_recv_queue EXPORT_SYMBOL net/atm/atm 0x9feaf287 sonet_subtract_stats -EXPORT_SYMBOL net/atm/atm 0xa3010e1a atm_alloc_charge EXPORT_SYMBOL net/atm/atm 0xaa024146 sonet_copy_stats -EXPORT_SYMBOL net/atm/atm 0xc0addc53 atm_dev_release_vccs +EXPORT_SYMBOL net/atm/atm 0xb966e342 atm_dev_signal_change +EXPORT_SYMBOL net/atm/atm 0xc59b7e39 vcc_release_async +EXPORT_SYMBOL net/atm/atm 0xd525175b atm_dev_deregister +EXPORT_SYMBOL net/atm/atm 0xd8517de6 vcc_insert_socket EXPORT_SYMBOL net/atm/atm 0xf49bc67a atm_pcr_goal -EXPORT_SYMBOL net/atm/atm 0xfc11ee05 register_atm_ioctl -EXPORT_SYMBOL net/ax25/ax25 0x131f43a5 ax25_listen_release +EXPORT_SYMBOL net/ax25/ax25 0x06680058 ax25_find_cb EXPORT_SYMBOL net/ax25/ax25 0x14cecd59 ax25_display_timer EXPORT_SYMBOL net/ax25/ax25 0x242852b9 ax25_uid_policy -EXPORT_SYMBOL net/ax25/ax25 0x28f078fb ax25_ip_xmit -EXPORT_SYMBOL net/ax25/ax25 0x42f2fae2 ax25_send_frame +EXPORT_SYMBOL net/ax25/ax25 0x3f2bb334 ax25_linkfail_register EXPORT_SYMBOL net/ax25/ax25 0x4502c65a asc2ax -EXPORT_SYMBOL net/ax25/ax25 0x4de6d2a6 ax25_header_ops +EXPORT_SYMBOL net/ax25/ax25 0x45f03960 ax25_linkfail_release +EXPORT_SYMBOL net/ax25/ax25 0x4f43daf3 ax25_header_ops EXPORT_SYMBOL net/ax25/ax25 0x53dea1ff ax2asc -EXPORT_SYMBOL net/ax25/ax25 0x742b0604 ax25_linkfail_release +EXPORT_SYMBOL net/ax25/ax25 0x6342d4cb ax25_listen_register +EXPORT_SYMBOL net/ax25/ax25 0x7052028b ax25_listen_release +EXPORT_SYMBOL net/ax25/ax25 0x88e6537a ax25_send_frame EXPORT_SYMBOL net/ax25/ax25 0x8ede9e26 ax25_protocol_release -EXPORT_SYMBOL net/ax25/ax25 0xac58db93 ax25_linkfail_register -EXPORT_SYMBOL net/ax25/ax25 0xbde746b4 ax25_find_cb +EXPORT_SYMBOL net/ax25/ax25 0x93902e0d ax25_ip_xmit EXPORT_SYMBOL net/ax25/ax25 0xc1444946 ax25cmp EXPORT_SYMBOL net/ax25/ax25 0xd43ecbf1 null_ax25_address -EXPORT_SYMBOL net/ax25/ax25 0xec54d153 ax25_listen_register EXPORT_SYMBOL net/ax25/ax25 0xee02e420 ax25_findbyuid -EXPORT_SYMBOL net/bluetooth/bluetooth 0x03377590 hci_cmd_sync -EXPORT_SYMBOL net/bluetooth/bluetooth 0x03cf26e6 hci_get_route +EXPORT_SYMBOL net/bluetooth/bluetooth 0x02e791e0 hci_set_hw_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0396fa7e bt_procfs_init EXPORT_SYMBOL net/bluetooth/bluetooth 0x0718b8b7 bt_info -EXPORT_SYMBOL net/bluetooth/bluetooth 0x12e80ffe bt_sock_reclassify_lock -EXPORT_SYMBOL net/bluetooth/bluetooth 0x14212f6f hci_alloc_dev_priv -EXPORT_SYMBOL net/bluetooth/bluetooth 0x1643d145 bt_sock_link -EXPORT_SYMBOL net/bluetooth/bluetooth 0x16c1973f hci_register_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x1a6fc60d bt_sock_register -EXPORT_SYMBOL net/bluetooth/bluetooth 0x1b4b334c __hci_cmd_sync -EXPORT_SYMBOL net/bluetooth/bluetooth 0x1b6241cb __hci_cmd_sync_ev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x201b5c27 bt_accept_dequeue +EXPORT_SYMBOL net/bluetooth/bluetooth 0x084382c0 l2cap_chan_close +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0e4fc683 hci_mgmt_chan_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0f206719 bt_procfs_cleanup +EXPORT_SYMBOL net/bluetooth/bluetooth 0x12c8d481 __hci_cmd_sync_ev EXPORT_SYMBOL net/bluetooth/bluetooth 0x214e4265 bt_warn -EXPORT_SYMBOL net/bluetooth/bluetooth 0x2c887d58 hci_unregister_cb -EXPORT_SYMBOL net/bluetooth/bluetooth 0x35a2f958 __hci_cmd_send -EXPORT_SYMBOL net/bluetooth/bluetooth 0x415ca21c l2cap_conn_put -EXPORT_SYMBOL net/bluetooth/bluetooth 0x49653b49 bt_sock_ioctl -EXPORT_SYMBOL net/bluetooth/bluetooth 0x4aece72b l2cap_register_user -EXPORT_SYMBOL net/bluetooth/bluetooth 0x4aef322c hci_conn_security -EXPORT_SYMBOL net/bluetooth/bluetooth 0x61c7f5cd hci_free_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x65e6a1ed l2cap_chan_close -EXPORT_SYMBOL net/bluetooth/bluetooth 0x69bf4cb9 hci_unregister_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x7405afc3 hci_recv_diag +EXPORT_SYMBOL net/bluetooth/bluetooth 0x21a57d31 hci_alloc_dev_priv +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2309469e hci_conn_security +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2e6516da hci_unregister_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2f70a2b7 bt_sock_wait_ready +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3252b4b9 bt_sock_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3277a97f bt_accept_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0x329174cf l2cap_conn_put +EXPORT_SYMBOL net/bluetooth/bluetooth 0x33e8981f bt_sock_stream_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0x36b35c9f bt_sock_poll +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3c2086ff hci_resume_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x47686646 hci_get_route +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4c3c745d hci_mgmt_chan_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0x538ae42c hci_conn_check_secure +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5a2a564b l2cap_is_socket +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5b5ece95 hci_recv_diag +EXPORT_SYMBOL net/bluetooth/bluetooth 0x6310f2d3 hci_free_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x63e556cf bt_sock_reclassify_lock +EXPORT_SYMBOL net/bluetooth/bluetooth 0x690fe2e0 hci_unregister_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x696faa1d bt_sock_ioctl +EXPORT_SYMBOL net/bluetooth/bluetooth 0x6a2976d5 bt_accept_dequeue +EXPORT_SYMBOL net/bluetooth/bluetooth 0x6c63c248 hci_release_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 0x7d153eba hci_mgmt_chan_register -EXPORT_SYMBOL net/bluetooth/bluetooth 0x7d337fd3 l2cap_conn_get -EXPORT_SYMBOL net/bluetooth/bluetooth 0x7e0e4ede hci_set_fw_info -EXPORT_SYMBOL net/bluetooth/bluetooth 0x85568b9c hci_mgmt_chan_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7bbbc27f bt_accept_enqueue +EXPORT_SYMBOL net/bluetooth/bluetooth 0x890c60a3 l2cap_conn_get EXPORT_SYMBOL net/bluetooth/bluetooth 0x8fea24bd bt_sock_unregister -EXPORT_SYMBOL net/bluetooth/bluetooth 0x93c126b8 bt_sock_wait_ready -EXPORT_SYMBOL net/bluetooth/bluetooth 0x9997f339 hci_conn_switch_role -EXPORT_SYMBOL net/bluetooth/bluetooth 0xa11129d8 hci_release_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xaac2b813 bt_sock_poll -EXPORT_SYMBOL net/bluetooth/bluetooth 0xadf4c6e2 hci_conn_check_secure -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb14d8b55 bt_accept_unlink -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb8bfc16c bt_procfs_init -EXPORT_SYMBOL net/bluetooth/bluetooth 0xbdfca58f bt_sock_unlink -EXPORT_SYMBOL net/bluetooth/bluetooth 0xc2e0fdbc hci_recv_frame -EXPORT_SYMBOL net/bluetooth/bluetooth 0xc826d877 l2cap_is_socket -EXPORT_SYMBOL net/bluetooth/bluetooth 0xcdfd364a hci_suspend_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xce7458f8 bt_sock_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0x998e79b7 hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0x9b9b698f l2cap_register_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0x9ddf67a1 __hci_cmd_send +EXPORT_SYMBOL net/bluetooth/bluetooth 0xadb7860f hci_recv_frame +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb22780be bt_sock_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb2ec6470 hci_reset_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xbad04cc2 bt_sock_wait_state +EXPORT_SYMBOL net/bluetooth/bluetooth 0xcca1248b l2cap_unregister_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd64c701b hci_set_fw_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd6f2cd3f hci_register_cb EXPORT_SYMBOL net/bluetooth/bluetooth 0xd7613212 bt_err_ratelimited -EXPORT_SYMBOL net/bluetooth/bluetooth 0xdd21a4d9 bt_procfs_cleanup +EXPORT_SYMBOL net/bluetooth/bluetooth 0xdc4e0d98 hci_conn_switch_role EXPORT_SYMBOL net/bluetooth/bluetooth 0xddacccf6 bt_warn_ratelimited -EXPORT_SYMBOL net/bluetooth/bluetooth 0xde0a3688 bt_sock_stream_recvmsg -EXPORT_SYMBOL net/bluetooth/bluetooth 0xde5152e5 l2cap_unregister_user -EXPORT_SYMBOL net/bluetooth/bluetooth 0xe86c486b hci_resume_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xebb24086 hci_register_cb -EXPORT_SYMBOL net/bluetooth/bluetooth 0xeeadd3ab bt_sock_wait_state -EXPORT_SYMBOL net/bluetooth/bluetooth 0xf3c25493 bt_accept_enqueue -EXPORT_SYMBOL net/bluetooth/bluetooth 0xf85ae5d4 hci_set_hw_info -EXPORT_SYMBOL net/bluetooth/bluetooth 0xfae6f698 hci_reset_dev -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x57154534 ebt_unregister_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x7332654d ebt_register_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x882b5a58 ebt_register_template -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xd65ba006 ebt_unregister_template -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xe1b9c5dc ebt_unregister_table_pre_exit -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xeb29f57e ebt_do_table -EXPORT_SYMBOL net/caif/caif 0x079af6e6 caif_disconnect_client +EXPORT_SYMBOL net/bluetooth/bluetooth 0xddd97ba2 bt_sock_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe01999fe __hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe148af37 hci_suspend_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe7986f4f bt_sock_link +EXPORT_SYMBOL net/bluetooth/bluetooth 0xfe7adff2 hci_register_dev +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x29d868ed ebt_unregister_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x39d27604 ebt_unregister_template +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x786eae85 ebt_register_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xa90ca94b ebt_unregister_table_pre_exit +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xd39afe07 ebt_do_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xe888c7d0 ebt_register_template EXPORT_SYMBOL net/caif/caif 0x1446b60a caif_client_register_refcnt -EXPORT_SYMBOL net/caif/caif 0x29f079e5 cfcnfg_add_phy_layer +EXPORT_SYMBOL net/caif/caif 0x1b400c5a get_cfcnfg +EXPORT_SYMBOL net/caif/caif 0x1b4a4006 caif_disconnect_client EXPORT_SYMBOL net/caif/caif 0x2a09f713 cfpkt_fromnative EXPORT_SYMBOL net/caif/caif 0x329dbd06 cfpkt_info EXPORT_SYMBOL net/caif/caif 0x38701a7c cfcnfg_del_phy_layer EXPORT_SYMBOL net/caif/caif 0x3fa84493 cfpkt_add_head -EXPORT_SYMBOL net/caif/caif 0x409c77e6 caif_enroll_dev EXPORT_SYMBOL net/caif/caif 0x40babbe0 cfpkt_extr_head EXPORT_SYMBOL net/caif/caif 0x4a237e57 cfpkt_tonative -EXPORT_SYMBOL net/caif/caif 0x57a44a6d get_cfcnfg -EXPORT_SYMBOL net/caif/caif 0x645df1b9 caif_connect_client +EXPORT_SYMBOL net/caif/caif 0x5f759e42 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 0xabe53cc1 caif_enroll_dev EXPORT_SYMBOL net/caif/caif 0xb7b6874e caif_free_client -EXPORT_SYMBOL net/can/can 0x32f97b34 can_sock_destruct -EXPORT_SYMBOL net/can/can 0x40f4c605 can_proto_unregister -EXPORT_SYMBOL net/can/can 0x4d322b18 can_rx_register -EXPORT_SYMBOL net/can/can 0x594730f2 can_proto_register -EXPORT_SYMBOL net/can/can 0x86549ea4 can_send -EXPORT_SYMBOL net/can/can 0xf4314f6f can_rx_unregister -EXPORT_SYMBOL net/ceph/libceph 0x00290719 ceph_auth_add_authorizer_challenge -EXPORT_SYMBOL net/ceph/libceph 0x0143617e ceph_osdc_update_epoch_barrier -EXPORT_SYMBOL net/ceph/libceph 0x02fb19a4 osd_req_op_extent_dup_last -EXPORT_SYMBOL net/ceph/libceph 0x04bc55c4 ceph_monc_stop +EXPORT_SYMBOL net/caif/caif 0xdc67dc30 cfcnfg_add_phy_layer +EXPORT_SYMBOL net/can/can 0x01e07cbb can_proto_register +EXPORT_SYMBOL net/can/can 0x0e2a7c02 can_rx_unregister +EXPORT_SYMBOL net/can/can 0x1bce8b66 can_rx_register +EXPORT_SYMBOL net/can/can 0x70337691 can_send +EXPORT_SYMBOL net/can/can 0x78db7cff can_sock_destruct +EXPORT_SYMBOL net/can/can 0xa4279b6d can_proto_unregister +EXPORT_SYMBOL net/ceph/libceph 0x0346c0e5 osd_req_op_extent_osd_data_bvec_pos +EXPORT_SYMBOL net/ceph/libceph 0x03ca9c66 osd_req_op_extent_dup_last +EXPORT_SYMBOL net/ceph/libceph 0x03d4d37c ceph_auth_is_authenticated +EXPORT_SYMBOL net/ceph/libceph 0x094c5f55 ceph_osdc_wait_request EXPORT_SYMBOL net/ceph/libceph 0x0a3c60e0 ceph_pagelist_alloc -EXPORT_SYMBOL net/ceph/libceph 0x0f6c1c52 osd_req_op_extent_osd_data_bio -EXPORT_SYMBOL net/ceph/libceph 0x10ba9a47 ceph_osdc_new_request +EXPORT_SYMBOL net/ceph/libceph 0x0fb6f030 __ceph_auth_get_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x1260252c ceph_osdc_abort_requests +EXPORT_SYMBOL net/ceph/libceph 0x19bff693 ceph_check_fsid +EXPORT_SYMBOL net/ceph/libceph 0x19d2e22a ceph_client_gid +EXPORT_SYMBOL net/ceph/libceph 0x1c3dc6ea osd_req_op_extent_update EXPORT_SYMBOL net/ceph/libceph 0x1cba3f20 ceph_pagelist_append +EXPORT_SYMBOL net/ceph/libceph 0x1d76c44e ceph_osdc_alloc_messages EXPORT_SYMBOL net/ceph/libceph 0x2087719e ceph_oid_copy EXPORT_SYMBOL net/ceph/libceph 0x2101cbc9 ceph_oid_destroy -EXPORT_SYMBOL net/ceph/libceph 0x214f4ed3 ceph_con_keepalive -EXPORT_SYMBOL net/ceph/libceph 0x23d35db0 ceph_cls_unlock -EXPORT_SYMBOL net/ceph/libceph 0x254ace49 ceph_osdc_maybe_request_map -EXPORT_SYMBOL net/ceph/libceph 0x288bd729 ceph_osdc_notify -EXPORT_SYMBOL net/ceph/libceph 0x29867ccc ceph_osdc_notify_ack -EXPORT_SYMBOL net/ceph/libceph 0x2bc0dd31 ceph_con_open -EXPORT_SYMBOL net/ceph/libceph 0x2bdc351f ceph_osdc_copy_from -EXPORT_SYMBOL net/ceph/libceph 0x2c6b10d2 osd_req_op_cls_request_data_pages -EXPORT_SYMBOL net/ceph/libceph 0x2d2e09e2 ceph_wait_for_latest_osdmap -EXPORT_SYMBOL net/ceph/libceph 0x2e3c6891 osd_req_op_extent_osd_data_pagelist -EXPORT_SYMBOL net/ceph/libceph 0x2f72387f ceph_osdc_clear_abort_err -EXPORT_SYMBOL net/ceph/libceph 0x30d1df2d ceph_cls_break_lock +EXPORT_SYMBOL net/ceph/libceph 0x22eb0d71 ceph_auth_add_authorizer_challenge +EXPORT_SYMBOL net/ceph/libceph 0x265cccd3 ceph_monc_renew_subs +EXPORT_SYMBOL net/ceph/libceph 0x2881cf58 ceph_auth_verify_authorizer_reply +EXPORT_SYMBOL net/ceph/libceph 0x304a0ff3 ceph_auth_handle_bad_authorizer EXPORT_SYMBOL net/ceph/libceph 0x317ac0ee ceph_oloc_copy -EXPORT_SYMBOL net/ceph/libceph 0x31d1fd17 osd_req_op_extent_osd_data -EXPORT_SYMBOL net/ceph/libceph 0x32c3ad37 ceph_auth_invalidate_authorizer -EXPORT_SYMBOL net/ceph/libceph 0x32d1b9d8 ceph_osdc_alloc_request +EXPORT_SYMBOL net/ceph/libceph 0x3262a51b ceph_monc_wait_osdmap EXPORT_SYMBOL net/ceph/libceph 0x3522979c ceph_buffer_new -EXPORT_SYMBOL net/ceph/libceph 0x37a25db3 ceph_put_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x37b7e00a ceph_msg_data_add_pagelist -EXPORT_SYMBOL net/ceph/libceph 0x3837abb6 ceph_osdc_unwatch EXPORT_SYMBOL net/ceph/libceph 0x38f2d94e ceph_file_to_extents -EXPORT_SYMBOL net/ceph/libceph 0x3a537b94 ceph_monc_validate_auth +EXPORT_SYMBOL net/ceph/libceph 0x3b3dd20d osd_req_op_extent_osd_data_pages EXPORT_SYMBOL net/ceph/libceph 0x3c8d7111 ceph_get_num_objects EXPORT_SYMBOL net/ceph/libceph 0x3d0f2a7c ceph_oloc_destroy -EXPORT_SYMBOL net/ceph/libceph 0x3e5aad26 ceph_monc_blocklist_add -EXPORT_SYMBOL net/ceph/libceph 0x41660d60 ceph_cls_assert_locked -EXPORT_SYMBOL net/ceph/libceph 0x440e632c ceph_auth_handle_svc_reply_more +EXPORT_SYMBOL net/ceph/libceph 0x40701ca7 osd_req_op_extent_osd_data_bvecs +EXPORT_SYMBOL net/ceph/libceph 0x40be6433 ceph_parse_mon_ips EXPORT_SYMBOL net/ceph/libceph 0x45044d94 ceph_find_or_create_string +EXPORT_SYMBOL net/ceph/libceph 0x45b88323 ceph_monc_got_map EXPORT_SYMBOL net/ceph/libceph 0x466b85b8 libceph_compatible -EXPORT_SYMBOL net/ceph/libceph 0x4d823d78 ceph_auth_verify_authorizer_reply -EXPORT_SYMBOL net/ceph/libceph 0x4e94aa0e ceph_osdc_start_request +EXPORT_SYMBOL net/ceph/libceph 0x473d2cf2 ceph_msg_data_add_bvecs +EXPORT_SYMBOL net/ceph/libceph 0x484932f9 ceph_osdc_watch +EXPORT_SYMBOL net/ceph/libceph 0x48e23fe4 ceph_osdc_maybe_request_map +EXPORT_SYMBOL net/ceph/libceph 0x492c7e10 ceph_copy_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x4bda69e3 ceph_client_addr +EXPORT_SYMBOL net/ceph/libceph 0x4c99a7b7 ceph_cls_lock EXPORT_SYMBOL net/ceph/libceph 0x50603ce3 ceph_decode_entity_addrvec -EXPORT_SYMBOL net/ceph/libceph 0x5263714f ceph_client_gid -EXPORT_SYMBOL net/ceph/libceph 0x5283014d __ceph_auth_get_authorizer -EXPORT_SYMBOL net/ceph/libceph 0x53c9eacb ceph_release_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x53152338 ceph_osdc_start_request EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash -EXPORT_SYMBOL net/ceph/libceph 0x57fe1719 ceph_copy_user_to_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x59e06586 osd_req_op_xattr_init -EXPORT_SYMBOL net/ceph/libceph 0x5a773fbd ceph_con_send +EXPORT_SYMBOL net/ceph/libceph 0x5846d632 ceph_monc_stop +EXPORT_SYMBOL net/ceph/libceph 0x586f5701 ceph_destroy_client +EXPORT_SYMBOL net/ceph/libceph 0x591be260 ceph_wait_for_latest_osdmap EXPORT_SYMBOL net/ceph/libceph 0x5aeeee62 ceph_oid_aprintf -EXPORT_SYMBOL net/ceph/libceph 0x5bc8f27d ceph_monc_init -EXPORT_SYMBOL net/ceph/libceph 0x628beafe ceph_osdc_wait_request +EXPORT_SYMBOL net/ceph/libceph 0x5b6516a2 ceph_alloc_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x5c82ba58 osd_req_op_extent_init EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name -EXPORT_SYMBOL net/ceph/libceph 0x63903250 ceph_destroy_client 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 0x64be93de ceph_reset_client_addr -EXPORT_SYMBOL net/ceph/libceph 0x67f157f1 osd_req_op_extent_osd_data_pages -EXPORT_SYMBOL net/ceph/libceph 0x6917406d ceph_auth_handle_bad_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x646a3f59 ceph_monc_get_version_async +EXPORT_SYMBOL net/ceph/libceph 0x64af60b9 osd_req_op_extent_osd_data_bio +EXPORT_SYMBOL net/ceph/libceph 0x6519e78f osd_req_op_raw_data_in_pages +EXPORT_SYMBOL net/ceph/libceph 0x658c7ef7 ceph_osdc_sync +EXPORT_SYMBOL net/ceph/libceph 0x661143e4 ceph_cls_assert_locked +EXPORT_SYMBOL net/ceph/libceph 0x686bc192 ceph_osdc_notify_ack EXPORT_SYMBOL net/ceph/libceph 0x6a7a38a0 ceph_pr_addr -EXPORT_SYMBOL net/ceph/libceph 0x6d64d693 ceph_auth_handle_svc_reply_done -EXPORT_SYMBOL net/ceph/libceph 0x6d8007d3 ceph_msg_get -EXPORT_SYMBOL net/ceph/libceph 0x6e835f3a ceph_msg_data_add_bio EXPORT_SYMBOL net/ceph/libceph 0x6edb8cb7 ceph_pagelist_reserve -EXPORT_SYMBOL net/ceph/libceph 0x6eeaba38 ceph_open_session -EXPORT_SYMBOL net/ceph/libceph 0x73d64ec9 ceph_msg_new -EXPORT_SYMBOL net/ceph/libceph 0x74ec0067 osd_req_op_cls_init -EXPORT_SYMBOL net/ceph/libceph 0x783ded3d ceph_msg_data_add_bvecs -EXPORT_SYMBOL net/ceph/libceph 0x7b6109f2 osd_req_op_cls_response_data_pages -EXPORT_SYMBOL net/ceph/libceph 0x7d66663e ceph_msg_data_add_pages -EXPORT_SYMBOL net/ceph/libceph 0x7f619a48 ceph_cls_lock_info -EXPORT_SYMBOL net/ceph/libceph 0x80937fd7 ceph_alloc_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x81cafaa2 ceph_zero_page_vector_range -EXPORT_SYMBOL net/ceph/libceph 0x82af5758 ceph_monc_renew_subs +EXPORT_SYMBOL net/ceph/libceph 0x741daa92 __ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x74a41e50 ceph_monc_want_map +EXPORT_SYMBOL net/ceph/libceph 0x74ec3900 ceph_msg_data_add_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x75631dc8 ceph_osdc_call +EXPORT_SYMBOL net/ceph/libceph 0x797d2f99 ceph_create_client +EXPORT_SYMBOL net/ceph/libceph 0x79c58499 osd_req_op_extent_osd_data +EXPORT_SYMBOL net/ceph/libceph 0x7a942eaa ceph_monc_init +EXPORT_SYMBOL net/ceph/libceph 0x7c94fd41 ceph_msg_data_add_pages +EXPORT_SYMBOL net/ceph/libceph 0x7d67da75 ceph_monc_do_statfs +EXPORT_SYMBOL net/ceph/libceph 0x7eb58324 ceph_osdc_unwatch +EXPORT_SYMBOL net/ceph/libceph 0x813f08a8 ceph_con_keepalive +EXPORT_SYMBOL net/ceph/libceph 0x83bb1dc9 osd_req_op_cls_request_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x850d103b ceph_osdc_update_epoch_barrier +EXPORT_SYMBOL net/ceph/libceph 0x8686a77d osd_req_op_extent_osd_data_pagelist EXPORT_SYMBOL net/ceph/libceph 0x86fca7e4 ceph_put_snap_context -EXPORT_SYMBOL net/ceph/libceph 0x87d5f368 ceph_osdc_sync -EXPORT_SYMBOL net/ceph/libceph 0x87eac77a ceph_cls_set_cookie +EXPORT_SYMBOL net/ceph/libceph 0x879eb074 ceph_osdc_notify +EXPORT_SYMBOL net/ceph/libceph 0x88ea0788 ceph_osdc_clear_abort_err +EXPORT_SYMBOL net/ceph/libceph 0x89a55328 ceph_monc_open_session +EXPORT_SYMBOL net/ceph/libceph 0x8bb2c4a3 ceph_monc_blocklist_add EXPORT_SYMBOL net/ceph/libceph 0x8bd5050e ceph_pagelist_free_reserve -EXPORT_SYMBOL net/ceph/libceph 0x8cf89783 ceph_osdc_put_request -EXPORT_SYMBOL net/ceph/libceph 0x8f7efb83 ceph_osdc_cancel_request -EXPORT_SYMBOL net/ceph/libceph 0x8fca2cdf ceph_osdc_call +EXPORT_SYMBOL net/ceph/libceph 0x8cb59a3f ceph_osdc_cancel_request +EXPORT_SYMBOL net/ceph/libceph 0x8fcf1728 ceph_cls_break_lock +EXPORT_SYMBOL net/ceph/libceph 0x91a57fab ceph_osdc_flush_notifies +EXPORT_SYMBOL net/ceph/libceph 0x92e48c73 ceph_release_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x9692f535 ceph_print_client_options EXPORT_SYMBOL net/ceph/libceph 0x987d3968 ceph_alloc_options -EXPORT_SYMBOL net/ceph/libceph 0x994c9ac7 osd_req_op_cls_request_data_pagelist -EXPORT_SYMBOL net/ceph/libceph 0x9a8e66a8 osd_req_op_init +EXPORT_SYMBOL net/ceph/libceph 0x9945f6e4 ceph_osdc_new_request +EXPORT_SYMBOL net/ceph/libceph 0x9ac60118 ceph_msg_new2 EXPORT_SYMBOL net/ceph/libceph 0x9ca95932 ceph_create_snap_context -EXPORT_SYMBOL net/ceph/libceph 0x9d345f80 ceph_parse_mon_ips +EXPORT_SYMBOL net/ceph/libceph 0x9ef51078 osd_req_op_alloc_hint_init EXPORT_SYMBOL net/ceph/libceph 0x9fefa3cb ceph_calc_file_object_mapping -EXPORT_SYMBOL net/ceph/libceph 0xa3822bae ceph_osdc_get_request -EXPORT_SYMBOL net/ceph/libceph 0xa5873ee0 ceph_msg_dump -EXPORT_SYMBOL net/ceph/libceph 0xa63dfada ceph_msg_put +EXPORT_SYMBOL net/ceph/libceph 0xa33fed49 ceph_auth_handle_svc_reply_done 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 0xa7e42384 ceph_parse_param -EXPORT_SYMBOL net/ceph/libceph 0xa86be5f6 osd_req_op_extent_init -EXPORT_SYMBOL net/ceph/libceph 0xad15d110 ceph_monc_got_map +EXPORT_SYMBOL net/ceph/libceph 0xa6c59d1d osd_req_op_cls_request_data_pages +EXPORT_SYMBOL net/ceph/libceph 0xa717cb02 ceph_cls_lock_info +EXPORT_SYMBOL net/ceph/libceph 0xac115867 ceph_auth_get_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xad62d50c ceph_osdc_list_watchers EXPORT_SYMBOL net/ceph/libceph 0xad703657 ceph_auth_destroy_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xae304375 ceph_osdc_copy_from +EXPORT_SYMBOL net/ceph/libceph 0xae64917c ceph_auth_handle_svc_reply_more EXPORT_SYMBOL net/ceph/libceph 0xafb8a407 ceph_msgr_flush -EXPORT_SYMBOL net/ceph/libceph 0xb115a71c osd_req_op_extent_osd_data_bvec_pos -EXPORT_SYMBOL net/ceph/libceph 0xb48174cd ceph_create_client +EXPORT_SYMBOL net/ceph/libceph 0xafd37e39 ceph_msg_put 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 0xb5cd789d ceph_monc_wait_osdmap +EXPORT_SYMBOL net/ceph/libceph 0xb5f6582f ceph_con_send EXPORT_SYMBOL net/ceph/libceph 0xb72c162e ceph_buffer_release +EXPORT_SYMBOL net/ceph/libceph 0xb7f4fea6 ceph_zero_page_vector_range +EXPORT_SYMBOL net/ceph/libceph 0xba2a9cae ceph_con_close EXPORT_SYMBOL net/ceph/libceph 0xbae00da7 ceph_pg_pool_flags EXPORT_SYMBOL net/ceph/libceph 0xbe3879aa ceph_get_snap_context -EXPORT_SYMBOL net/ceph/libceph 0xbf3e46ba ceph_monc_get_version_async -EXPORT_SYMBOL net/ceph/libceph 0xc08fb230 osd_req_op_extent_update +EXPORT_SYMBOL net/ceph/libceph 0xbeeef98e ceph_cls_set_cookie EXPORT_SYMBOL net/ceph/libceph 0xc20c8ca8 ceph_pagelist_set_cursor -EXPORT_SYMBOL net/ceph/libceph 0xc25afbeb __ceph_open_session -EXPORT_SYMBOL net/ceph/libceph 0xc2767623 ceph_copy_to_page_vector -EXPORT_SYMBOL net/ceph/libceph 0xc5751f37 ceph_client_addr -EXPORT_SYMBOL net/ceph/libceph 0xc67a3950 ceph_compare_options -EXPORT_SYMBOL net/ceph/libceph 0xc7a24616 ceph_monc_want_map -EXPORT_SYMBOL net/ceph/libceph 0xc9787222 ceph_copy_from_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xc465404d osd_req_op_cls_request_data_bvecs +EXPORT_SYMBOL net/ceph/libceph 0xc6a74316 ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0xc6c6423e ceph_parse_param +EXPORT_SYMBOL net/ceph/libceph 0xc7aaf241 ceph_msg_data_add_bio +EXPORT_SYMBOL net/ceph/libceph 0xc97e896e ceph_compare_options EXPORT_SYMBOL net/ceph/libceph 0xca80437b ceph_extent_to_file -EXPORT_SYMBOL net/ceph/libceph 0xcd120406 ceph_auth_is_authenticated -EXPORT_SYMBOL net/ceph/libceph 0xcd9eb7c4 ceph_osdc_list_watchers -EXPORT_SYMBOL net/ceph/libceph 0xcfb8e93c ceph_osdc_watch -EXPORT_SYMBOL net/ceph/libceph 0xd1b81a4a ceph_check_fsid -EXPORT_SYMBOL net/ceph/libceph 0xd252ca29 osd_req_op_alloc_hint_init +EXPORT_SYMBOL net/ceph/libceph 0xd1bcccfa ceph_monc_get_version EXPORT_SYMBOL net/ceph/libceph 0xd4d736db ceph_destroy_options +EXPORT_SYMBOL net/ceph/libceph 0xd4e1ea10 osd_req_op_xattr_init EXPORT_SYMBOL net/ceph/libceph 0xd4eb7735 ceph_decode_entity_addr -EXPORT_SYMBOL net/ceph/libceph 0xd7bdea3e ceph_monc_do_statfs -EXPORT_SYMBOL net/ceph/libceph 0xd8048fa0 ceph_cls_lock +EXPORT_SYMBOL net/ceph/libceph 0xd7ec50d7 ceph_osdc_put_request +EXPORT_SYMBOL net/ceph/libceph 0xd964eec8 osd_req_op_init +EXPORT_SYMBOL net/ceph/libceph 0xd9cd5c64 ceph_auth_invalidate_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xda2b8a89 ceph_copy_user_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xdce739b9 ceph_cls_unlock EXPORT_SYMBOL net/ceph/libceph 0xdf6ef4a1 ceph_oid_printf EXPORT_SYMBOL net/ceph/libceph 0xdfc091f9 ceph_entity_type_name EXPORT_SYMBOL net/ceph/libceph 0xdfd9af6b ceph_object_locator_to_pg -EXPORT_SYMBOL net/ceph/libceph 0xe10831f6 osd_req_op_raw_data_in_pages -EXPORT_SYMBOL net/ceph/libceph 0xe5ca4c06 osd_req_op_cls_request_data_bvecs -EXPORT_SYMBOL net/ceph/libceph 0xe83c49eb ceph_osdc_abort_requests -EXPORT_SYMBOL net/ceph/libceph 0xe9200353 ceph_osdc_flush_notifies +EXPORT_SYMBOL net/ceph/libceph 0xe15cd372 ceph_msg_new +EXPORT_SYMBOL net/ceph/libceph 0xe19168a2 ceph_osdc_alloc_request +EXPORT_SYMBOL net/ceph/libceph 0xe3308381 ceph_con_init +EXPORT_SYMBOL net/ceph/libceph 0xe46b7fb6 ceph_con_open +EXPORT_SYMBOL net/ceph/libceph 0xe51fa9f8 ceph_put_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xe593fd72 osd_req_op_cls_init +EXPORT_SYMBOL net/ceph/libceph 0xe73e26b6 ceph_msg_dump +EXPORT_SYMBOL net/ceph/libceph 0xea065125 ceph_osdc_get_request +EXPORT_SYMBOL net/ceph/libceph 0xecd41573 osd_req_op_cls_response_data_pages EXPORT_SYMBOL net/ceph/libceph 0xee120c03 ceph_release_string EXPORT_SYMBOL net/ceph/libceph 0xeef6cfa3 ceph_iterate_extents -EXPORT_SYMBOL net/ceph/libceph 0xf28b75d8 ceph_osdc_alloc_messages -EXPORT_SYMBOL net/ceph/libceph 0xf3097494 ceph_auth_get_authorizer -EXPORT_SYMBOL net/ceph/libceph 0xf437328f ceph_con_init -EXPORT_SYMBOL net/ceph/libceph 0xf5539ec3 ceph_msg_new2 +EXPORT_SYMBOL net/ceph/libceph 0xf0ffd6ff ceph_copy_from_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xf36af967 ceph_monc_validate_auth +EXPORT_SYMBOL net/ceph/libceph 0xf3e392e7 ceph_msg_get +EXPORT_SYMBOL net/ceph/libceph 0xf4365b3d ceph_reset_client_addr EXPORT_SYMBOL net/ceph/libceph 0xf562aab7 ceph_pagelist_truncate -EXPORT_SYMBOL net/ceph/libceph 0xf795858b ceph_con_close -EXPORT_SYMBOL net/ceph/libceph 0xf83be7c1 ceph_monc_get_version -EXPORT_SYMBOL net/ceph/libceph 0xf9c20575 ceph_print_client_options -EXPORT_SYMBOL net/ceph/libceph 0xfb74ecb0 osd_req_op_extent_osd_data_bvecs -EXPORT_SYMBOL net/ceph/libceph 0xfd2bd62f ceph_monc_open_session -EXPORT_SYMBOL net/dccp/dccp_ipv4 0x3585b153 dccp_req_err -EXPORT_SYMBOL net/dccp/dccp_ipv4 0xfd10e054 dccp_syn_ack_timeout -EXPORT_SYMBOL net/hsr/hsr 0x5fd04ab2 hsr_get_version -EXPORT_SYMBOL net/hsr/hsr 0xb0523a20 is_hsr_master -EXPORT_SYMBOL net/ieee802154/ieee802154 0x02c6ab03 wpan_phy_new -EXPORT_SYMBOL net/ieee802154/ieee802154 0x25b130bd wpan_phy_find -EXPORT_SYMBOL net/ieee802154/ieee802154 0x26b5bd63 wpan_phy_register -EXPORT_SYMBOL net/ieee802154/ieee802154 0x5ffbae70 wpan_phy_unregister -EXPORT_SYMBOL net/ieee802154/ieee802154 0x67552625 wpan_phy_for_each -EXPORT_SYMBOL net/ieee802154/ieee802154 0x8407a056 wpan_phy_free +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x565df507 dccp_req_err +EXPORT_SYMBOL net/dccp/dccp_ipv4 0xba6413a0 dccp_syn_ack_timeout +EXPORT_SYMBOL net/hsr/hsr 0x301f63db is_hsr_master +EXPORT_SYMBOL net/hsr/hsr 0x84a4bca6 hsr_get_version +EXPORT_SYMBOL net/ieee802154/ieee802154 0x0a223736 wpan_phy_for_each +EXPORT_SYMBOL net/ieee802154/ieee802154 0x18a9e049 wpan_phy_free +EXPORT_SYMBOL net/ieee802154/ieee802154 0x4c5992fc wpan_phy_register +EXPORT_SYMBOL net/ieee802154/ieee802154 0x75a20f6d wpan_phy_new +EXPORT_SYMBOL net/ieee802154/ieee802154 0x86d15462 wpan_phy_find +EXPORT_SYMBOL net/ieee802154/ieee802154 0xc054c6e7 wpan_phy_unregister EXPORT_SYMBOL net/ipv4/fou 0x19741ae4 gue_encap_hlen -EXPORT_SYMBOL net/ipv4/fou 0x5215be97 __gue_build_header -EXPORT_SYMBOL net/ipv4/fou 0xf46f58d8 __fou_build_header +EXPORT_SYMBOL net/ipv4/fou 0x65ced991 __fou_build_header +EXPORT_SYMBOL net/ipv4/fou 0x87027f66 __gue_build_header EXPORT_SYMBOL net/ipv4/fou 0xff1adff3 fou_encap_hlen -EXPORT_SYMBOL net/ipv4/gre 0x52f04353 gre_parse_header -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x01c830f3 ip_tunnel_encap_del_ops -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x7138323f ip_tunnel_get_iflink -EXPORT_SYMBOL net/ipv4/ip_tunnel 0xa77185ac ip_tunnel_encap_add_ops -EXPORT_SYMBOL net/ipv4/ip_tunnel 0xd51ea670 ip_tunnel_get_link_net -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x34350cb1 arpt_unregister_table_pre_exit -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x58a95139 arpt_register_table -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x9629c975 arpt_do_table -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xd9b844db arpt_unregister_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x5c0a2bb7 ipt_unregister_table_exit -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xda333a61 ipt_unregister_table_pre_exit -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xf8dc8c02 ipt_do_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xf9b39541 ipt_register_table -EXPORT_SYMBOL net/ipv4/tunnel4 0x53f28df5 xfrm4_tunnel_register -EXPORT_SYMBOL net/ipv4/tunnel4 0x69d407bd xfrm4_tunnel_deregister -EXPORT_SYMBOL net/ipv4/udp_tunnel 0x7152f882 udp_sock_create4 -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x2a5e1267 ip6_tnl_get_iflink -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x3abc8c20 ip6_tnl_get_cap -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x519f9975 ip6_tnl_change_mtu -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x59e3347b ip6_tnl_encap_del_ops -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x7a7ffd9a ip6_tnl_xmit -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x92828a9b ip6_tnl_encap_add_ops -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xb5b40b8b ip6_tnl_parse_tlv_enc_lim -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xea128d74 ip6_tnl_get_link_net -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xefc4c0ba ip6_tnl_rcv -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x55534611 ip6t_register_table -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x8d0a5b2b ip6t_unregister_table_exit -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x9b01a1aa ip6t_do_table -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xbfc0ca4f ip6t_unregister_table_pre_exit -EXPORT_SYMBOL net/ipv6/tunnel6 0x0a814fc7 xfrm6_tunnel_register -EXPORT_SYMBOL net/ipv6/tunnel6 0x4b2c3770 xfrm6_tunnel_deregister -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x28f0184d xfrm6_tunnel_alloc_spi -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xb620aeb4 xfrm6_tunnel_spi_lookup -EXPORT_SYMBOL net/lapb/lapb 0x12d06a5d lapb_data_received -EXPORT_SYMBOL net/lapb/lapb 0x41b73884 lapb_data_request -EXPORT_SYMBOL net/lapb/lapb 0x4466b3e7 lapb_setparms -EXPORT_SYMBOL net/lapb/lapb 0x4bac070d lapb_register -EXPORT_SYMBOL net/lapb/lapb 0x7d2c0093 lapb_unregister -EXPORT_SYMBOL net/lapb/lapb 0x7d3ad06b lapb_disconnect_request -EXPORT_SYMBOL net/lapb/lapb 0xbde26f87 lapb_connect_request -EXPORT_SYMBOL net/lapb/lapb 0xd07fe4db lapb_getparms -EXPORT_SYMBOL net/llc/llc 0x03dd95d4 llc_sap_find -EXPORT_SYMBOL net/llc/llc 0x160d5390 llc_sap_open +EXPORT_SYMBOL net/ipv4/gre 0xc3e2c3e0 gre_parse_header +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x472384e7 ip_tunnel_encap_del_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x76c29ccd ip_tunnel_encap_add_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x799d5c25 ip_tunnel_get_link_net +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xbb7758b3 ip_tunnel_get_iflink +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x758a7606 arpt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x8c7de56a arpt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xcd2261bc arpt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xe0bcaa1e arpt_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x447c77b4 ipt_unregister_table_exit +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x4b8a22f5 ipt_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x5495d355 ipt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xc5ddcc5e ipt_do_table +EXPORT_SYMBOL net/ipv4/tunnel4 0xd8958795 xfrm4_tunnel_register +EXPORT_SYMBOL net/ipv4/tunnel4 0xe481e666 xfrm4_tunnel_deregister +EXPORT_SYMBOL net/ipv4/udp_tunnel 0xfcfb89eb udp_sock_create4 +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x0f40786a ip6_tnl_xmit +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x25915bed ip6_tnl_rcv +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x357235db ip6_tnl_get_iflink +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x47e89b2a ip6_tnl_encap_add_ops +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x726883f0 ip6_tnl_get_cap +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x75f2427a ip6_tnl_parse_tlv_enc_lim +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x7b1a07cf ip6_tnl_change_mtu +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xe9bea833 ip6_tnl_encap_del_ops +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xfedbe4d9 ip6_tnl_get_link_net +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x1b6514ab ip6t_do_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x36346afd ip6t_register_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x63ad20a3 ip6t_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xb715267a ip6t_unregister_table_exit +EXPORT_SYMBOL net/ipv6/tunnel6 0x443313f9 xfrm6_tunnel_deregister +EXPORT_SYMBOL net/ipv6/tunnel6 0x6548337f xfrm6_tunnel_register +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x07ff0943 xfrm6_tunnel_spi_lookup +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xd5587eab xfrm6_tunnel_alloc_spi +EXPORT_SYMBOL net/lapb/lapb 0x0b281ba9 lapb_getparms +EXPORT_SYMBOL net/lapb/lapb 0x6b6d2dd5 lapb_connect_request +EXPORT_SYMBOL net/lapb/lapb 0x8c8809d5 lapb_unregister +EXPORT_SYMBOL net/lapb/lapb 0xcbc8be5a lapb_data_received +EXPORT_SYMBOL net/lapb/lapb 0xd5dad3a9 lapb_disconnect_request +EXPORT_SYMBOL net/lapb/lapb 0xd70e3b20 lapb_register +EXPORT_SYMBOL net/lapb/lapb 0xd958bd74 lapb_setparms +EXPORT_SYMBOL net/lapb/lapb 0xe2fe7cba lapb_data_request +EXPORT_SYMBOL net/llc/llc 0x0e33e45c llc_sap_find EXPORT_SYMBOL net/llc/llc 0x38b92846 llc_remove_pack +EXPORT_SYMBOL net/llc/llc 0x3990c8f7 llc_add_pack EXPORT_SYMBOL net/llc/llc 0x52d7b2fd llc_sap_list -EXPORT_SYMBOL net/llc/llc 0x5e03b94d llc_add_pack -EXPORT_SYMBOL net/llc/llc 0x688f6fc1 llc_build_and_send_ui_pkt -EXPORT_SYMBOL net/llc/llc 0xb77064b1 llc_set_station_handler -EXPORT_SYMBOL net/llc/llc 0xcf19562b llc_sap_close -EXPORT_SYMBOL net/llc/llc 0xd314805a llc_mac_hdr_init -EXPORT_SYMBOL net/mac80211/mac80211 0x057e7cfe ieee80211_beacon_get_tim +EXPORT_SYMBOL net/llc/llc 0x569c1406 llc_sap_open +EXPORT_SYMBOL net/llc/llc 0x8b105284 llc_sap_close +EXPORT_SYMBOL net/llc/llc 0x97eafa3a llc_build_and_send_ui_pkt +EXPORT_SYMBOL net/llc/llc 0xab6700a0 llc_set_station_handler +EXPORT_SYMBOL net/llc/llc 0xd4c9079d llc_mac_hdr_init +EXPORT_SYMBOL net/mac80211/mac80211 0x0077830a ieee80211_rate_control_unregister +EXPORT_SYMBOL net/mac80211/mac80211 0x00bd01a1 ieee80211_sta_uapsd_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0x01159ff7 ieee80211_tdls_oper_request +EXPORT_SYMBOL net/mac80211/mac80211 0x05184112 ieee80211_rts_get EXPORT_SYMBOL net/mac80211/mac80211 0x063f5308 ieee80211_get_tkip_p1k_iv -EXPORT_SYMBOL net/mac80211/mac80211 0x09ba2c93 ieee80211_return_txq -EXPORT_SYMBOL net/mac80211/mac80211 0x0b007935 ieee80211_rx_list -EXPORT_SYMBOL net/mac80211/mac80211 0x0b9ded98 ieee80211_stop_queue -EXPORT_SYMBOL net/mac80211/mac80211 0x0cadfc9e ieee80211_restart_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x0f31af13 ieee80211_beacon_cntdwn_is_complete -EXPORT_SYMBOL net/mac80211/mac80211 0x151cc90b ieee80211_sta_block_awake +EXPORT_SYMBOL net/mac80211/mac80211 0x0692c5e9 ieee80211_txq_schedule_start +EXPORT_SYMBOL net/mac80211/mac80211 0x0b097a90 ieee80211_ap_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0x0bad4dc4 ieee80211_tx_status_ext +EXPORT_SYMBOL net/mac80211/mac80211 0x0e8ed980 ieee80211_rx_list +EXPORT_SYMBOL net/mac80211/mac80211 0x0f40af62 ieee80211_return_txq +EXPORT_SYMBOL net/mac80211/mac80211 0x0f4a589d ieee80211_alloc_hw_nm +EXPORT_SYMBOL net/mac80211/mac80211 0x0f504a67 ieee80211_nan_func_terminated +EXPORT_SYMBOL net/mac80211/mac80211 0x104510ab ieee80211_unregister_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x16356055 ieee80211_sta_register_airtime +EXPORT_SYMBOL net/mac80211/mac80211 0x17a56e7b ieee80211_enable_rssi_reports EXPORT_SYMBOL net/mac80211/mac80211 0x183dcd3b ieee80211_get_key_rx_seq -EXPORT_SYMBOL net/mac80211/mac80211 0x1977735b ieee80211_probereq_get EXPORT_SYMBOL net/mac80211/mac80211 0x19f37f0d ieee80211_update_p2p_noa EXPORT_SYMBOL net/mac80211/mac80211 0x1a66fc17 ieee80211_get_tkip_rx_p1k -EXPORT_SYMBOL net/mac80211/mac80211 0x1f73566a __ieee80211_get_assoc_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x229f5a48 ieee80211_register_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x24ba92f7 ieee80211_disconnect -EXPORT_SYMBOL net/mac80211/mac80211 0x294b85b6 ieee80211_beacon_update_cntdwn -EXPORT_SYMBOL net/mac80211/mac80211 0x29cddea2 ieee80211_csa_finish -EXPORT_SYMBOL net/mac80211/mac80211 0x2a7f7008 ieee80211_sta_set_buffered -EXPORT_SYMBOL net/mac80211/mac80211 0x2cb127a7 ieee80211_unregister_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x33168cd1 ieee80211_ctstoself_get -EXPORT_SYMBOL net/mac80211/mac80211 0x34e3b805 ieee80211_send_eosp_nullfunc -EXPORT_SYMBOL net/mac80211/mac80211 0x36518246 ieee80211_get_tx_rates -EXPORT_SYMBOL net/mac80211/mac80211 0x36602278 ieee80211_tx_rate_update -EXPORT_SYMBOL net/mac80211/mac80211 0x394f2bb0 ieee80211_iter_keys -EXPORT_SYMBOL net/mac80211/mac80211 0x399636a5 ieee80211_rx_ba_timer_expired -EXPORT_SYMBOL net/mac80211/mac80211 0x3a4b1dfb ieee80211_schedule_txq -EXPORT_SYMBOL net/mac80211/mac80211 0x447ee5a7 ieee80211_rx_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x46a06fb6 ieee80211_start_tx_ba_cb_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x481a06d8 ieee80211_reserve_tid -EXPORT_SYMBOL net/mac80211/mac80211 0x484517bf ieee80211_sta_uapsd_trigger -EXPORT_SYMBOL net/mac80211/mac80211 0x4d9cccb0 ieee80211_sta_pspoll -EXPORT_SYMBOL net/mac80211/mac80211 0x4e3ca8ce ieee80211_unreserve_tid -EXPORT_SYMBOL net/mac80211/mac80211 0x51826dea ieee80211_stop_queues -EXPORT_SYMBOL net/mac80211/mac80211 0x55f57c41 ieee80211_send_bar -EXPORT_SYMBOL net/mac80211/mac80211 0x598a2404 ieee80211_ctstoself_duration -EXPORT_SYMBOL net/mac80211/mac80211 0x599c41f6 ieee80211_start_tx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0x59a5b9f9 ieee80211_chswitch_done -EXPORT_SYMBOL net/mac80211/mac80211 0x5aea6cdb ieee80211_nan_func_match -EXPORT_SYMBOL net/mac80211/mac80211 0x5b2ebe3c __ieee80211_get_tx_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x61c84a21 ieee80211_pspoll_get -EXPORT_SYMBOL net/mac80211/mac80211 0x62f74d0e __ieee80211_get_radio_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x64ee4fba ieee80211_tx_status_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x66d11503 ieee80211_wake_queue -EXPORT_SYMBOL net/mac80211/mac80211 0x6d716026 ieee80211_ap_probereq_get -EXPORT_SYMBOL net/mac80211/mac80211 0x6e8eab12 ieee80211_rts_get -EXPORT_SYMBOL net/mac80211/mac80211 0x6fb60424 ieee80211_cqm_rssi_notify -EXPORT_SYMBOL net/mac80211/mac80211 0x71aa41e3 ieee80211_report_wowlan_wakeup -EXPORT_SYMBOL net/mac80211/mac80211 0x738f8b00 ieee80211_free_txskb -EXPORT_SYMBOL net/mac80211/mac80211 0x7545b498 ieee80211_txq_airtime_check -EXPORT_SYMBOL net/mac80211/mac80211 0x76fe898e ieee80211_get_fils_discovery_tmpl -EXPORT_SYMBOL net/mac80211/mac80211 0x7704f367 ieee80211_sched_scan_stopped -EXPORT_SYMBOL net/mac80211/mac80211 0x78ef10e0 ieee80211_iter_keys_rcu -EXPORT_SYMBOL net/mac80211/mac80211 0x7c98d470 ieee80211_radar_detected -EXPORT_SYMBOL net/mac80211/mac80211 0x81a6106f ieee80211_beacon_set_cntdwn -EXPORT_SYMBOL net/mac80211/mac80211 0x8371e1fe ieee80211_beacon_loss -EXPORT_SYMBOL net/mac80211/mac80211 0x8551732c ieee80211_rate_control_unregister -EXPORT_SYMBOL net/mac80211/mac80211 0x886b7a79 ieee80211_generic_frame_duration -EXPORT_SYMBOL net/mac80211/mac80211 0x8919b02b ieee80211_find_sta -EXPORT_SYMBOL net/mac80211/mac80211 0x8c4c2e2c ieee80211_tx_status_ext -EXPORT_SYMBOL net/mac80211/mac80211 0x8c693b24 ieee80211_nullfunc_get -EXPORT_SYMBOL net/mac80211/mac80211 0x90d04d7f ieee80211_txq_get_depth -EXPORT_SYMBOL net/mac80211/mac80211 0x918e144f ieee80211_get_tkip_p2k -EXPORT_SYMBOL net/mac80211/mac80211 0x92cf2dd7 ieee80211_report_low_ack -EXPORT_SYMBOL net/mac80211/mac80211 0x95050d40 ieee80211_rate_control_register -EXPORT_SYMBOL net/mac80211/mac80211 0x955649ac ieee80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/mac80211/mac80211 0x1ab7a524 ieee80211_stop_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x1ef4c6cd ieee80211_get_tkip_p2k +EXPORT_SYMBOL net/mac80211/mac80211 0x22017db6 ieee80211_rx_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x245f3750 ieee80211_send_bar +EXPORT_SYMBOL net/mac80211/mac80211 0x246f0ce4 __ieee80211_get_assoc_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x26df6d99 ieee80211_beacon_set_cntdwn +EXPORT_SYMBOL net/mac80211/mac80211 0x2711e950 ieee80211_tx_status +EXPORT_SYMBOL net/mac80211/mac80211 0x2734cca9 ieee80211_txq_airtime_check +EXPORT_SYMBOL net/mac80211/mac80211 0x27b0eec5 ieee80211_iter_keys +EXPORT_SYMBOL net/mac80211/mac80211 0x2809fa9d ieee80211_wake_queue +EXPORT_SYMBOL net/mac80211/mac80211 0x29d47049 ieee80211_beacon_cntdwn_is_complete +EXPORT_SYMBOL net/mac80211/mac80211 0x32f5a710 ieee80211_free_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x3674390e ieee80211_sta_ps_transition +EXPORT_SYMBOL net/mac80211/mac80211 0x36a91e91 ieee80211_queue_delayed_work +EXPORT_SYMBOL net/mac80211/mac80211 0x36b97990 ieee80211_beacon_get_tim +EXPORT_SYMBOL net/mac80211/mac80211 0x39d66d7c ieee80211_tx_prepare_skb +EXPORT_SYMBOL net/mac80211/mac80211 0x40ba07ea ieee80211_register_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x43a3e965 ieee80211_rx_ba_timer_expired +EXPORT_SYMBOL net/mac80211/mac80211 0x46490904 ieee80211_wake_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x46fef5c8 ieee80211_stop_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x47213fa6 ieee80211_stop_queue +EXPORT_SYMBOL net/mac80211/mac80211 0x49c3bade ieee80211_sched_scan_results +EXPORT_SYMBOL net/mac80211/mac80211 0x5127d3e5 ieee80211_tx_status_8023 +EXPORT_SYMBOL net/mac80211/mac80211 0x547c14ef ieee80211_proberesp_get +EXPORT_SYMBOL net/mac80211/mac80211 0x54ca986f ieee80211_get_fils_discovery_tmpl +EXPORT_SYMBOL net/mac80211/mac80211 0x55c30975 ieee80211_sched_scan_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0x5795588b ieee80211_tx_dequeue +EXPORT_SYMBOL net/mac80211/mac80211 0x598dffb6 ieee80211_tx_status_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x5a385fb9 ieee80211_cqm_rssi_notify +EXPORT_SYMBOL net/mac80211/mac80211 0x5ad715a6 ieee80211_beacon_loss +EXPORT_SYMBOL net/mac80211/mac80211 0x5da9189b ieee80211_ctstoself_get +EXPORT_SYMBOL net/mac80211/mac80211 0x6124d4c9 ieee80211_ctstoself_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x6219902c ieee80211_queue_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0x64319f1c ieee80211_start_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x65510e90 ieee80211_unreserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0x6e1ac3bc ieee80211_start_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x71e31b12 rate_control_set_rates +EXPORT_SYMBOL net/mac80211/mac80211 0x73e7cd3f ieee80211_beacon_update_cntdwn +EXPORT_SYMBOL net/mac80211/mac80211 0x744c72d6 ieee80211_free_txskb +EXPORT_SYMBOL net/mac80211/mac80211 0x764ea4f0 ieee80211_get_unsol_bcast_probe_resp_tmpl +EXPORT_SYMBOL net/mac80211/mac80211 0x78bee276 ieee80211_beacon_get_template +EXPORT_SYMBOL net/mac80211/mac80211 0x7a6bf153 ieee80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/mac80211/mac80211 0x7e6d5002 ieee80211_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0x7f0e2f35 ieee80211_iter_keys_rcu +EXPORT_SYMBOL net/mac80211/mac80211 0x87482d98 wiphy_to_ieee80211_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x8820c8d7 ieee80211_rts_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x8af42c4e ieee80211_txq_may_transmit +EXPORT_SYMBOL net/mac80211/mac80211 0x8b5fc481 ieee80211_find_sta +EXPORT_SYMBOL net/mac80211/mac80211 0x8b9c4feb ieee80211_tx_rate_update +EXPORT_SYMBOL net/mac80211/mac80211 0x8cd4e8e3 ieee80211_connection_loss +EXPORT_SYMBOL net/mac80211/mac80211 0x8d4de6b5 ieee80211_txq_get_depth +EXPORT_SYMBOL net/mac80211/mac80211 0x9245002a __ieee80211_create_tpt_led_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0x969d264f ieee80211_pspoll_get EXPORT_SYMBOL net/mac80211/mac80211 0x991a0ca0 ieee80211_parse_p2p_noa -EXPORT_SYMBOL net/mac80211/mac80211 0x9e01a0a1 ieee80211_queue_work -EXPORT_SYMBOL net/mac80211/mac80211 0x9ec1f488 __ieee80211_create_tpt_led_trigger -EXPORT_SYMBOL net/mac80211/mac80211 0xa083fbde ieee80211_queue_stopped -EXPORT_SYMBOL net/mac80211/mac80211 0xa0c034e5 ieee80211_tx_dequeue -EXPORT_SYMBOL net/mac80211/mac80211 0xa1ee18ea rate_control_set_rates -EXPORT_SYMBOL net/mac80211/mac80211 0xa24eff81 __ieee80211_get_rx_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0xa29544c0 ieee80211_scan_completed -EXPORT_SYMBOL net/mac80211/mac80211 0xa7ee986b ieee80211_sched_scan_results -EXPORT_SYMBOL net/mac80211/mac80211 0xaf12fe61 ieee80211_get_buffered_bc +EXPORT_SYMBOL net/mac80211/mac80211 0x9b83442b ieee80211_rate_control_register +EXPORT_SYMBOL net/mac80211/mac80211 0x9cc2f48f ieee80211_next_txq +EXPORT_SYMBOL net/mac80211/mac80211 0xa2f71d1c ieee80211_nan_func_match +EXPORT_SYMBOL net/mac80211/mac80211 0xac0c154e ieee80211_report_wowlan_wakeup +EXPORT_SYMBOL net/mac80211/mac80211 0xaeb43982 ieee80211_sta_eosp +EXPORT_SYMBOL net/mac80211/mac80211 0xb0a235a8 ieee80211_disconnect +EXPORT_SYMBOL net/mac80211/mac80211 0xb0c87c42 ieee80211_disable_rssi_reports EXPORT_SYMBOL net/mac80211/mac80211 0xb36a08ca ieee80211_get_bssid -EXPORT_SYMBOL net/mac80211/mac80211 0xb7b348ac ieee80211_rts_duration -EXPORT_SYMBOL net/mac80211/mac80211 0xb9d6fe64 ieee80211_manage_rx_ba_offl -EXPORT_SYMBOL net/mac80211/mac80211 0xb9dd8c39 ieee80211_stop_tx_ba_cb_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0xba26bf4f wiphy_to_ieee80211_hw -EXPORT_SYMBOL net/mac80211/mac80211 0xbd039e13 ieee80211_free_hw -EXPORT_SYMBOL net/mac80211/mac80211 0xc2e787e8 ieee80211_nan_func_terminated -EXPORT_SYMBOL net/mac80211/mac80211 0xc47c73e2 ieee80211_proberesp_get -EXPORT_SYMBOL net/mac80211/mac80211 0xc714798e ieee80211_wake_queues -EXPORT_SYMBOL net/mac80211/mac80211 0xcc70e5dc ieee80211_tdls_oper_request -EXPORT_SYMBOL net/mac80211/mac80211 0xd0de0133 ieee80211_rx_napi -EXPORT_SYMBOL net/mac80211/mac80211 0xd26370e0 ieee80211_beacon_get_template -EXPORT_SYMBOL net/mac80211/mac80211 0xd275041e ieee80211_disable_rssi_reports -EXPORT_SYMBOL net/mac80211/mac80211 0xd9428b39 ieee80211_next_txq -EXPORT_SYMBOL net/mac80211/mac80211 0xdabb049c ieee80211_queue_delayed_work -EXPORT_SYMBOL net/mac80211/mac80211 0xdc772faa ieee80211_get_unsol_bcast_probe_resp_tmpl -EXPORT_SYMBOL net/mac80211/mac80211 0xdcc380b3 ieee80211_enable_rssi_reports -EXPORT_SYMBOL net/mac80211/mac80211 0xdef9601c ieee80211_tx_status -EXPORT_SYMBOL net/mac80211/mac80211 0xe08a4b4a ieee80211_stop_rx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0xe1540ea2 ieee80211_txq_schedule_start -EXPORT_SYMBOL net/mac80211/mac80211 0xe418e433 ieee80211_tx_prepare_skb -EXPORT_SYMBOL net/mac80211/mac80211 0xe5022ccb ieee80211_tx_status_8023 -EXPORT_SYMBOL net/mac80211/mac80211 0xe54b35a6 ieee80211_connection_loss -EXPORT_SYMBOL net/mac80211/mac80211 0xe8b1ab4c ieee80211_sta_ps_transition -EXPORT_SYMBOL net/mac80211/mac80211 0xe97d42dc ieee80211_sta_eosp -EXPORT_SYMBOL net/mac80211/mac80211 0xef29dac1 ieee80211_alloc_hw_nm -EXPORT_SYMBOL net/mac80211/mac80211 0xef7251e8 ieee80211_txq_may_transmit -EXPORT_SYMBOL net/mac80211/mac80211 0xf369099a ieee80211_stop_tx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0xf70a7915 ieee80211_mark_rx_ba_filtered_frames -EXPORT_SYMBOL net/mac80211/mac80211 0xffaea981 ieee80211_sta_register_airtime -EXPORT_SYMBOL net/mac802154/mac802154 0x16c38e64 ieee802154_register_hw -EXPORT_SYMBOL net/mac802154/mac802154 0x2a82db32 ieee802154_free_hw -EXPORT_SYMBOL net/mac802154/mac802154 0x43f8df20 ieee802154_unregister_hw -EXPORT_SYMBOL net/mac802154/mac802154 0x6989102e ieee802154_stop_queue -EXPORT_SYMBOL net/mac802154/mac802154 0xb6a9a34b ieee802154_alloc_hw -EXPORT_SYMBOL net/mac802154/mac802154 0xeafa7d73 ieee802154_xmit_complete -EXPORT_SYMBOL net/mac802154/mac802154 0xf6a7a960 ieee802154_rx_irqsafe -EXPORT_SYMBOL net/mac802154/mac802154 0xf88f8ce3 ieee802154_wake_queue -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x06dd0f9b register_ip_vs_app_inc -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x085fcce4 ip_vs_proto_data_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x3a149b36 ip_vs_proto_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x3a99fb45 ip_vs_tcp_conn_listen -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x3db7c43f ip_vs_new_conn_out -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x4be66eec ip_vs_conn_put -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x5bf372f5 register_ip_vs_app -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x6421995f ip_vs_conn_in_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x70db8a5b unregister_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x882f9243 ip_vs_conn_new -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xaad64b59 ip_vs_scheduler_err -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xad7b6974 unregister_ip_vs_app -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xb1ff3646 ip_vs_nfct_expect_related +EXPORT_SYMBOL net/mac80211/mac80211 0xb49a0397 ieee80211_sta_block_awake +EXPORT_SYMBOL net/mac80211/mac80211 0xb4e64620 ieee80211_get_tx_rates +EXPORT_SYMBOL net/mac80211/mac80211 0xc75bb3d4 ieee80211_manage_rx_ba_offl +EXPORT_SYMBOL net/mac80211/mac80211 0xc86bd297 ieee80211_reserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0xc96ae4d7 ieee80211_get_buffered_bc +EXPORT_SYMBOL net/mac80211/mac80211 0xca3d740e ieee80211_mark_rx_ba_filtered_frames +EXPORT_SYMBOL net/mac80211/mac80211 0xcac33f2f ieee80211_radar_detected +EXPORT_SYMBOL net/mac80211/mac80211 0xced108ea ieee80211_report_low_ack +EXPORT_SYMBOL net/mac80211/mac80211 0xced35239 ieee80211_rx_napi +EXPORT_SYMBOL net/mac80211/mac80211 0xcefcb5c3 __ieee80211_get_rx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xcf6ede89 ieee80211_send_eosp_nullfunc +EXPORT_SYMBOL net/mac80211/mac80211 0xd3b5e9f3 ieee80211_chswitch_done +EXPORT_SYMBOL net/mac80211/mac80211 0xd9ba8694 ieee80211_schedule_txq +EXPORT_SYMBOL net/mac80211/mac80211 0xe11ac7d5 ieee80211_sta_set_buffered +EXPORT_SYMBOL net/mac80211/mac80211 0xe568044f ieee80211_scan_completed +EXPORT_SYMBOL net/mac80211/mac80211 0xe5901a53 ieee80211_sta_pspoll +EXPORT_SYMBOL net/mac80211/mac80211 0xe6f63b57 ieee80211_nullfunc_get +EXPORT_SYMBOL net/mac80211/mac80211 0xe7117e4a ieee80211_stop_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0xf547be76 ieee80211_csa_finish +EXPORT_SYMBOL net/mac80211/mac80211 0xf5b166c3 ieee80211_queue_work +EXPORT_SYMBOL net/mac80211/mac80211 0xf719a574 ieee80211_generic_frame_duration +EXPORT_SYMBOL net/mac80211/mac80211 0xf827c032 ieee80211_restart_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xfd5f55d8 ieee80211_stop_rx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0xfd83ffe1 __ieee80211_get_tx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xfe8c55df __ieee80211_get_radio_led_name +EXPORT_SYMBOL net/mac802154/mac802154 0x117099dc ieee802154_register_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x572d1e44 ieee802154_alloc_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x76d85027 ieee802154_rx_irqsafe +EXPORT_SYMBOL net/mac802154/mac802154 0x877f7df0 ieee802154_unregister_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xb779a7ea ieee802154_wake_queue +EXPORT_SYMBOL net/mac802154/mac802154 0xbda045e2 ieee802154_xmit_complete +EXPORT_SYMBOL net/mac802154/mac802154 0xe0d318d1 ieee802154_stop_queue +EXPORT_SYMBOL net/mac802154/mac802154 0xed0805dc ieee802154_free_hw +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x015d4520 ip_vs_nfct_expect_related +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x0b3234a3 ip_vs_conn_in_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x121751e9 ip_vs_proto_data_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x2e5cbde2 ip_vs_new_conn_out +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x2e95b4c7 ip_vs_scheduler_err +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x35e0b398 unregister_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x537a7153 register_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x6a0ea31a ip_vs_tcp_conn_listen +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x6b387631 register_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x6f720cac ip_vs_conn_out_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x818ff898 unregister_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x922ec09c register_ip_vs_app_inc +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x982ec4a8 ip_vs_proto_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x98774a4c ip_vs_conn_put +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xcd53c41c ip_vs_conn_new EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xdb16a136 ip_vs_conn_out_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xfa5d4b78 register_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/nf_conntrack 0xf693229d nf_ct_ext_add +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x3b08a8f0 nf_ct_destroy +EXPORT_SYMBOL net/netfilter/nf_conntrack 0xb749b715 nf_ct_ext_add EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0xf2a36612 pptp_msg_name -EXPORT_SYMBOL net/netfilter/nf_nat 0x23138179 nf_nat_mangle_udp_packet -EXPORT_SYMBOL net/netfilter/nf_nat 0x828b7146 __nf_nat_mangle_tcp_packet -EXPORT_SYMBOL net/netfilter/nf_nat 0xa853c2d4 nf_nat_follow_master -EXPORT_SYMBOL net/netfilter/nf_nat 0xf04e1702 nf_nat_setup_info +EXPORT_SYMBOL net/netfilter/nf_nat 0x0cbe11a0 nf_nat_mangle_udp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0x0eee3330 nf_nat_follow_master +EXPORT_SYMBOL net/netfilter/nf_nat 0x6ee6569c __nf_nat_mangle_tcp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0xebe3875b nf_nat_setup_info EXPORT_SYMBOL net/netfilter/nft_fib 0xb3c36947 nft_fib_policy -EXPORT_SYMBOL net/netfilter/x_tables 0x01bff2ba xt_register_matches -EXPORT_SYMBOL net/netfilter/x_tables 0x038e8b9b xt_unregister_targets -EXPORT_SYMBOL net/netfilter/x_tables 0x054c942b xt_unregister_match -EXPORT_SYMBOL net/netfilter/x_tables 0x074a81e8 xt_unregister_matches EXPORT_SYMBOL net/netfilter/x_tables 0x0d7f5fcd xt_alloc_entry_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0x1ebc2304 xt_find_match -EXPORT_SYMBOL net/netfilter/x_tables 0x2de8556f xt_unregister_target +EXPORT_SYMBOL net/netfilter/x_tables 0x35868847 xt_register_target EXPORT_SYMBOL net/netfilter/x_tables 0x3bf9d084 xt_check_table_hooks -EXPORT_SYMBOL net/netfilter/x_tables 0x45ac137d xt_register_target EXPORT_SYMBOL net/netfilter/x_tables 0x48012e28 xt_check_proc_name -EXPORT_SYMBOL net/netfilter/x_tables 0x86ed4e30 xt_register_targets +EXPORT_SYMBOL net/netfilter/x_tables 0x491e4cc6 xt_find_match +EXPORT_SYMBOL net/netfilter/x_tables 0x4d7895d9 xt_unregister_targets +EXPORT_SYMBOL net/netfilter/x_tables 0x53f75f74 xt_find_table +EXPORT_SYMBOL net/netfilter/x_tables 0x7b73e912 xt_register_matches EXPORT_SYMBOL net/netfilter/x_tables 0x977fd4bf xt_alloc_table_info -EXPORT_SYMBOL net/netfilter/x_tables 0xb686b9b9 xt_find_table +EXPORT_SYMBOL net/netfilter/x_tables 0xa2c649d4 xt_register_match +EXPORT_SYMBOL net/netfilter/x_tables 0xaf609aae xt_unregister_match +EXPORT_SYMBOL net/netfilter/x_tables 0xc3c503d6 xt_unregister_matches EXPORT_SYMBOL net/netfilter/x_tables 0xcb3e91cc xt_counters_alloc +EXPORT_SYMBOL net/netfilter/x_tables 0xd1c9259a xt_register_targets EXPORT_SYMBOL net/netfilter/x_tables 0xd87ae60d xt_check_entry_offsets EXPORT_SYMBOL net/netfilter/x_tables 0xe204e042 xt_free_table_info -EXPORT_SYMBOL net/netfilter/x_tables 0xf9f7fc28 xt_register_match EXPORT_SYMBOL net/netfilter/x_tables 0xfef779fa xt_find_jump_offset -EXPORT_SYMBOL net/nfc/hci/hci 0x0bb3cc80 nfc_hci_reset_pipes_per_host -EXPORT_SYMBOL net/nfc/hci/hci 0x0e4f4563 nfc_hci_register_device -EXPORT_SYMBOL net/nfc/hci/hci 0x19373f17 nfc_hci_allocate_device -EXPORT_SYMBOL net/nfc/hci/hci 0x215607d0 nfc_hci_set_clientdata -EXPORT_SYMBOL net/nfc/hci/hci 0x347aae89 nfc_hci_set_param -EXPORT_SYMBOL net/nfc/hci/hci 0x360d1a75 nfc_hci_disconnect_all_gates -EXPORT_SYMBOL net/nfc/hci/hci 0x3c127f56 nfc_hci_reset_pipes -EXPORT_SYMBOL net/nfc/hci/hci 0x465190ab nfc_hci_target_discovered -EXPORT_SYMBOL net/nfc/hci/hci 0x5aa824b5 nfc_hci_get_param -EXPORT_SYMBOL net/nfc/hci/hci 0x65fdeba4 nfc_hci_get_clientdata -EXPORT_SYMBOL net/nfc/hci/hci 0x73d077aa nfc_hci_free_device +EXPORT_SYMBOL net/netfilter/x_tables 0xff8c97f3 xt_unregister_target +EXPORT_SYMBOL net/nfc/hci/hci 0x2b7ef584 nfc_hci_register_device +EXPORT_SYMBOL net/nfc/hci/hci 0x3b25e486 nfc_hci_disconnect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0x3e241e30 nfc_llc_stop +EXPORT_SYMBOL net/nfc/hci/hci 0x3ed9885b nfc_hci_set_param +EXPORT_SYMBOL net/nfc/hci/hci 0x52ba391b nfc_hci_free_device +EXPORT_SYMBOL net/nfc/hci/hci 0x5372795f nfc_hci_set_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0x544c1c46 nfc_hci_connect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0x697bb139 nfc_hci_disconnect_all_gates +EXPORT_SYMBOL net/nfc/hci/hci 0x6edd21b3 nfc_hci_get_param EXPORT_SYMBOL net/nfc/hci/hci 0x74fe3670 nfc_hci_result_to_errno -EXPORT_SYMBOL net/nfc/hci/hci 0x75b6276f nfc_llc_start -EXPORT_SYMBOL net/nfc/hci/hci 0x9762bc2a nfc_hci_recv_frame -EXPORT_SYMBOL net/nfc/hci/hci 0xa67bca5a nfc_llc_stop -EXPORT_SYMBOL net/nfc/hci/hci 0xac510a33 nfc_hci_unregister_device -EXPORT_SYMBOL net/nfc/hci/hci 0xbc6717db nfc_hci_connect_gate -EXPORT_SYMBOL net/nfc/hci/hci 0xd4610734 nfc_hci_driver_failure +EXPORT_SYMBOL net/nfc/hci/hci 0x78397e9e nfc_hci_reset_pipes +EXPORT_SYMBOL net/nfc/hci/hci 0x7c7532d9 nfc_hci_target_discovered +EXPORT_SYMBOL net/nfc/hci/hci 0x8f170759 nfc_hci_send_cmd +EXPORT_SYMBOL net/nfc/hci/hci 0x9b95482d nfc_hci_allocate_device +EXPORT_SYMBOL net/nfc/hci/hci 0xa72c082c nfc_hci_driver_failure +EXPORT_SYMBOL net/nfc/hci/hci 0xad146639 nfc_hci_unregister_device +EXPORT_SYMBOL net/nfc/hci/hci 0xbddfbbd9 nfc_hci_get_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0xbf99c99d nfc_hci_send_event +EXPORT_SYMBOL net/nfc/hci/hci 0xcb0e5c0c nfc_llc_start +EXPORT_SYMBOL net/nfc/hci/hci 0xd4c305a2 nfc_hci_recv_frame EXPORT_SYMBOL net/nfc/hci/hci 0xdd231c55 nfc_hci_sak_to_protocol -EXPORT_SYMBOL net/nfc/hci/hci 0xdd33ee82 nfc_hci_send_cmd -EXPORT_SYMBOL net/nfc/hci/hci 0xdff2231e nfc_hci_disconnect_gate -EXPORT_SYMBOL net/nfc/hci/hci 0xe24a64cd nfc_hci_send_cmd_async -EXPORT_SYMBOL net/nfc/hci/hci 0xfd3145a7 nfc_hci_send_event -EXPORT_SYMBOL net/nfc/nci/nci 0x1544a49e nci_get_conn_info_by_dest_type_params -EXPORT_SYMBOL net/nfc/nci/nci 0x1a1023a2 nci_hci_open_pipe -EXPORT_SYMBOL net/nfc/nci/nci 0x211cd2c6 nci_req_complete -EXPORT_SYMBOL net/nfc/nci/nci 0x21f1e13e nci_hci_send_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0x22914ef7 nci_send_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0x26e9c321 nci_nfcc_loopback -EXPORT_SYMBOL net/nfc/nci/nci 0x2cf41e29 nci_free_device -EXPORT_SYMBOL net/nfc/nci/nci 0x2e58ff9f nci_core_conn_create -EXPORT_SYMBOL net/nfc/nci/nci 0x3b9e5a3a nci_send_frame -EXPORT_SYMBOL net/nfc/nci/nci 0x3ba4ff0a nci_conn_max_data_pkt_payload_size -EXPORT_SYMBOL net/nfc/nci/nci 0x4a8ccc6d nci_hci_clear_all_pipes -EXPORT_SYMBOL net/nfc/nci/nci 0x4c05c381 nci_hci_dev_session_init -EXPORT_SYMBOL net/nfc/nci/nci 0x4e9abbe4 nci_prop_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0x65f433c7 nci_core_conn_close -EXPORT_SYMBOL net/nfc/nci/nci 0x68ff1606 nci_hci_connect_gate -EXPORT_SYMBOL net/nfc/nci/nci 0x7903cba0 nci_hci_set_param -EXPORT_SYMBOL net/nfc/nci/nci 0x7b4c8ccd nci_register_device -EXPORT_SYMBOL net/nfc/nci/nci 0x7d486477 nci_core_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0x832d1322 nci_allocate_device -EXPORT_SYMBOL net/nfc/nci/nci 0x90d1c9ce nci_hci_send_event -EXPORT_SYMBOL net/nfc/nci/nci 0xb5972f3a nci_nfcee_mode_set +EXPORT_SYMBOL net/nfc/hci/hci 0xea80b125 nfc_hci_send_cmd_async +EXPORT_SYMBOL net/nfc/hci/hci 0xec1c9046 nfc_hci_reset_pipes_per_host +EXPORT_SYMBOL net/nfc/nci/nci 0x03fe4061 nci_hci_dev_session_init +EXPORT_SYMBOL net/nfc/nci/nci 0x085101b7 nci_hci_connect_gate +EXPORT_SYMBOL net/nfc/nci/nci 0x246f8ec1 nci_core_conn_close +EXPORT_SYMBOL net/nfc/nci/nci 0x33482297 nci_hci_get_param +EXPORT_SYMBOL net/nfc/nci/nci 0x406190a1 nci_hci_open_pipe +EXPORT_SYMBOL net/nfc/nci/nci 0x4bcee474 nci_send_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x5a8895fe nci_hci_clear_all_pipes +EXPORT_SYMBOL net/nfc/nci/nci 0x627a4914 nci_free_device +EXPORT_SYMBOL net/nfc/nci/nci 0x6448bd80 nci_nfcee_discover +EXPORT_SYMBOL net/nfc/nci/nci 0x6d12d0b6 nci_set_config +EXPORT_SYMBOL net/nfc/nci/nci 0x8bef4a6c nci_prop_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x8c9f6862 nci_conn_max_data_pkt_payload_size +EXPORT_SYMBOL net/nfc/nci/nci 0x95cee8ed nci_hci_send_event +EXPORT_SYMBOL net/nfc/nci/nci 0xa1bce205 nci_get_conn_info_by_dest_type_params EXPORT_SYMBOL net/nfc/nci/nci 0xba490602 nci_to_errno -EXPORT_SYMBOL net/nfc/nci/nci 0xc8752963 nci_core_init -EXPORT_SYMBOL net/nfc/nci/nci 0xcf12cdbc nci_send_data -EXPORT_SYMBOL net/nfc/nci/nci 0xd85e1313 nci_nfcee_discover -EXPORT_SYMBOL net/nfc/nci/nci 0xd8fc77ce nci_recv_frame -EXPORT_SYMBOL net/nfc/nci/nci 0xe542a8c0 nci_core_reset -EXPORT_SYMBOL net/nfc/nci/nci 0xe8727385 nci_set_config -EXPORT_SYMBOL net/nfc/nci/nci 0xea7e6a06 nci_unregister_device -EXPORT_SYMBOL net/nfc/nci/nci 0xfc13787f nci_hci_get_param -EXPORT_SYMBOL net/nfc/nfc 0x01ff90c8 nfc_add_se -EXPORT_SYMBOL net/nfc/nfc 0x035ed24d nfc_class -EXPORT_SYMBOL net/nfc/nfc 0x0ee26ef0 nfc_allocate_device -EXPORT_SYMBOL net/nfc/nfc 0x11d4a4d0 nfc_dep_link_is_up -EXPORT_SYMBOL net/nfc/nfc 0x2d42aa60 nfc_get_local_general_bytes -EXPORT_SYMBOL net/nfc/nfc 0x2f09ef46 nfc_proto_unregister -EXPORT_SYMBOL net/nfc/nfc 0x321bc426 nfc_tm_data_received -EXPORT_SYMBOL net/nfc/nfc 0x40e31a6c nfc_set_remote_general_bytes -EXPORT_SYMBOL net/nfc/nfc 0x440c9853 nfc_remove_se -EXPORT_SYMBOL net/nfc/nfc 0x46d63379 nfc_targets_found -EXPORT_SYMBOL net/nfc/nfc 0x4c26f116 nfc_fw_download_done -EXPORT_SYMBOL net/nfc/nfc 0x58c160b6 nfc_target_lost -EXPORT_SYMBOL net/nfc/nfc 0x59a12d36 nfc_proto_register -EXPORT_SYMBOL net/nfc/nfc 0x6108209c nfc_se_connectivity -EXPORT_SYMBOL net/nfc/nfc 0x662bcc55 nfc_vendor_cmd_reply -EXPORT_SYMBOL net/nfc/nfc 0x6bda7a20 __nfc_alloc_vendor_cmd_reply_skb -EXPORT_SYMBOL net/nfc/nfc 0x94bf42b7 nfc_tm_deactivated -EXPORT_SYMBOL net/nfc/nfc 0xb51bad22 nfc_driver_failure -EXPORT_SYMBOL net/nfc/nfc 0xbdfa3cc5 nfc_find_se -EXPORT_SYMBOL net/nfc/nfc 0xc23ecfb4 nfc_alloc_recv_skb -EXPORT_SYMBOL net/nfc/nfc 0xd19daba8 nfc_unregister_device -EXPORT_SYMBOL net/nfc/nfc 0xdbd3c691 nfc_se_transaction -EXPORT_SYMBOL net/nfc/nfc 0xdc3322c2 nfc_tm_activated -EXPORT_SYMBOL net/nfc/nfc 0xe87fac85 nfc_register_device -EXPORT_SYMBOL net/nfc/nfc 0xf29cbe9d nfc_send_to_raw_sock -EXPORT_SYMBOL net/nfc/nfc_digital 0x2aa86df5 nfc_digital_free_device -EXPORT_SYMBOL net/nfc/nfc_digital 0x3ee34b24 nfc_digital_unregister_device -EXPORT_SYMBOL net/nfc/nfc_digital 0x60f9e2bd nfc_digital_register_device -EXPORT_SYMBOL net/nfc/nfc_digital 0xa080955c nfc_digital_allocate_device -EXPORT_SYMBOL net/phonet/phonet 0x3fc91e63 pn_sock_unhash -EXPORT_SYMBOL net/phonet/phonet 0x78b17e7b phonet_proto_unregister -EXPORT_SYMBOL net/phonet/phonet 0x7d9e8a96 pn_sock_hash -EXPORT_SYMBOL net/phonet/phonet 0x924ba018 phonet_header_ops -EXPORT_SYMBOL net/phonet/phonet 0x93f68ec5 phonet_stream_ops -EXPORT_SYMBOL net/phonet/phonet 0xabe32b9e phonet_proto_register -EXPORT_SYMBOL net/phonet/phonet 0xe6361fbb pn_skb_send -EXPORT_SYMBOL net/phonet/phonet 0xf0f93900 pn_sock_get_port +EXPORT_SYMBOL net/nfc/nci/nci 0xbf8cd52a nci_nfcc_loopback +EXPORT_SYMBOL net/nfc/nci/nci 0xc7ddd7cf nci_recv_frame +EXPORT_SYMBOL net/nfc/nci/nci 0xcacc51bb nci_hci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xd655999d nci_nfcee_mode_set +EXPORT_SYMBOL net/nfc/nci/nci 0xe1ca5600 nci_register_device +EXPORT_SYMBOL net/nfc/nci/nci 0xe27db913 nci_req_complete +EXPORT_SYMBOL net/nfc/nci/nci 0xe332893f nci_hci_set_param +EXPORT_SYMBOL net/nfc/nci/nci 0xe415b687 nci_allocate_device +EXPORT_SYMBOL net/nfc/nci/nci 0xe5b15942 nci_core_conn_create +EXPORT_SYMBOL net/nfc/nci/nci 0xe8f66c46 nci_unregister_device +EXPORT_SYMBOL net/nfc/nci/nci 0xea79e9b1 nci_core_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xee59b7d8 nci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xf6f1f21e nci_core_reset +EXPORT_SYMBOL net/nfc/nci/nci 0xf82a9f6d nci_core_init +EXPORT_SYMBOL net/nfc/nci/nci 0xfd17a4d9 nci_send_data +EXPORT_SYMBOL net/nfc/nfc 0x09883241 nfc_vendor_cmd_reply +EXPORT_SYMBOL net/nfc/nfc 0x1d3b06b3 nfc_tm_deactivated +EXPORT_SYMBOL net/nfc/nfc 0x21ec50e7 __nfc_alloc_vendor_cmd_reply_skb +EXPORT_SYMBOL net/nfc/nfc 0x37d52295 nfc_send_to_raw_sock +EXPORT_SYMBOL net/nfc/nfc 0x3d6e255c nfc_set_remote_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0x597bfeea nfc_se_transaction +EXPORT_SYMBOL net/nfc/nfc 0x6c915fc4 nfc_get_local_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0x6dd95c45 nfc_class +EXPORT_SYMBOL net/nfc/nfc 0x70ca198f nfc_unregister_device +EXPORT_SYMBOL net/nfc/nfc 0x77b97830 nfc_tm_activated +EXPORT_SYMBOL net/nfc/nfc 0x822ac890 nfc_targets_found +EXPORT_SYMBOL net/nfc/nfc 0x8719873a nfc_dep_link_is_up +EXPORT_SYMBOL net/nfc/nfc 0x88978f09 nfc_proto_register +EXPORT_SYMBOL net/nfc/nfc 0x88d8dcf4 nfc_register_device +EXPORT_SYMBOL net/nfc/nfc 0x9444163e nfc_remove_se +EXPORT_SYMBOL net/nfc/nfc 0x9b1e2085 nfc_find_se +EXPORT_SYMBOL net/nfc/nfc 0x9c03eedc nfc_proto_unregister +EXPORT_SYMBOL net/nfc/nfc 0xb54a551c nfc_alloc_recv_skb +EXPORT_SYMBOL net/nfc/nfc 0xb821c410 nfc_se_connectivity +EXPORT_SYMBOL net/nfc/nfc 0xbe89d3b7 nfc_add_se +EXPORT_SYMBOL net/nfc/nfc 0xc8f1519f nfc_target_lost +EXPORT_SYMBOL net/nfc/nfc 0xcddb1bda nfc_tm_data_received +EXPORT_SYMBOL net/nfc/nfc 0xd48f5f14 nfc_driver_failure +EXPORT_SYMBOL net/nfc/nfc 0xdda97151 nfc_allocate_device +EXPORT_SYMBOL net/nfc/nfc 0xe29a83ee nfc_fw_download_done +EXPORT_SYMBOL net/nfc/nfc_digital 0x720ec4d3 nfc_digital_unregister_device +EXPORT_SYMBOL net/nfc/nfc_digital 0xc99f0906 nfc_digital_free_device +EXPORT_SYMBOL net/nfc/nfc_digital 0xc9b0dd80 nfc_digital_register_device +EXPORT_SYMBOL net/nfc/nfc_digital 0xe002001b nfc_digital_allocate_device +EXPORT_SYMBOL net/phonet/phonet 0x12cb45ae phonet_proto_register +EXPORT_SYMBOL net/phonet/phonet 0x567924d2 phonet_header_ops +EXPORT_SYMBOL net/phonet/phonet 0x5c2303c0 phonet_stream_ops +EXPORT_SYMBOL net/phonet/phonet 0x68591ac4 pn_sock_hash +EXPORT_SYMBOL net/phonet/phonet 0x8632a415 pn_sock_unhash +EXPORT_SYMBOL net/phonet/phonet 0x89ec3f63 pn_sock_get_port +EXPORT_SYMBOL net/phonet/phonet 0xcadab711 phonet_proto_unregister +EXPORT_SYMBOL net/phonet/phonet 0xf4549e8a pn_skb_send +EXPORT_SYMBOL net/rxrpc/rxrpc 0x08c4a7bb key_type_rxrpc +EXPORT_SYMBOL net/rxrpc/rxrpc 0x0dfd4c9f rxrpc_kernel_send_data +EXPORT_SYMBOL net/rxrpc/rxrpc 0x30c624c4 rxrpc_kernel_recv_data EXPORT_SYMBOL net/rxrpc/rxrpc 0x31bf3ca3 rxrpc_debug_id -EXPORT_SYMBOL net/rxrpc/rxrpc 0x3611f1f2 rxrpc_kernel_check_life -EXPORT_SYMBOL net/rxrpc/rxrpc 0x366a757b rxrpc_kernel_charge_accept -EXPORT_SYMBOL net/rxrpc/rxrpc 0x42bb581d rxrpc_kernel_send_data -EXPORT_SYMBOL net/rxrpc/rxrpc 0x478365d2 rxrpc_kernel_set_max_life -EXPORT_SYMBOL net/rxrpc/rxrpc 0x49b89da9 rxrpc_kernel_end_call -EXPORT_SYMBOL net/rxrpc/rxrpc 0x5427f36d rxrpc_kernel_get_srtt -EXPORT_SYMBOL net/rxrpc/rxrpc 0x564c04bc key_type_rxrpc -EXPORT_SYMBOL net/rxrpc/rxrpc 0x5b99e0ca rxrpc_kernel_new_call_notification -EXPORT_SYMBOL net/rxrpc/rxrpc 0x5fc3f26e rxrpc_kernel_set_tx_length -EXPORT_SYMBOL net/rxrpc/rxrpc 0x8635710d rxrpc_kernel_abort_call -EXPORT_SYMBOL net/rxrpc/rxrpc 0x8f59c46c rxrpc_kernel_begin_call -EXPORT_SYMBOL net/rxrpc/rxrpc 0x9a583cea rxrpc_kernel_get_epoch -EXPORT_SYMBOL net/rxrpc/rxrpc 0xae849273 rxrpc_kernel_get_peer -EXPORT_SYMBOL net/rxrpc/rxrpc 0xb1462153 rxrpc_sock_set_min_security_level -EXPORT_SYMBOL net/rxrpc/rxrpc 0xb66eba6b rxrpc_get_server_data_key -EXPORT_SYMBOL net/rxrpc/rxrpc 0xbf667d36 rxrpc_get_null_key -EXPORT_SYMBOL net/rxrpc/rxrpc 0xf3d4482b rxrpc_kernel_get_reply_time -EXPORT_SYMBOL net/rxrpc/rxrpc 0xfe47004e rxrpc_kernel_recv_data -EXPORT_SYMBOL net/sctp/sctp 0x0dc90409 sctp_do_peeloff -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x4aee9640 gss_pseudoflavor_to_service -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x71e0014b gss_mech_get -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xf77688ce gss_mech_put -EXPORT_SYMBOL net/sunrpc/sunrpc 0x4a2dd9ce xdr_restrict_buflen -EXPORT_SYMBOL net/sunrpc/sunrpc 0x502f7377 get_srcport -EXPORT_SYMBOL net/sunrpc/sunrpc 0x69f38b6d xdr_truncate_encode -EXPORT_SYMBOL net/sunrpc/sunrpc 0xed03a353 svc_pool_stats_open -EXPORT_SYMBOL net/tipc/tipc 0x719d8787 tipc_dump_start -EXPORT_SYMBOL net/tipc/tipc 0x7e60d712 tipc_nl_sk_walk -EXPORT_SYMBOL net/tipc/tipc 0x80b00a07 tipc_sk_fill_sock_diag -EXPORT_SYMBOL net/tipc/tipc 0xc6871ee1 tipc_dump_done -EXPORT_SYMBOL net/tls/tls 0x571be2f3 tls_get_record -EXPORT_SYMBOL net/wireless/cfg80211 0x0197ac0c cfg80211_get_bss -EXPORT_SYMBOL net/wireless/cfg80211 0x026a63b7 cfg80211_classify8021d -EXPORT_SYMBOL net/wireless/cfg80211 0x05c61dcd cfg80211_auth_timeout -EXPORT_SYMBOL net/wireless/cfg80211 0x0ba916eb regulatory_hint -EXPORT_SYMBOL net/wireless/cfg80211 0x0c9230bb cfg80211_remain_on_channel_expired -EXPORT_SYMBOL net/wireless/cfg80211 0x0dd0acdb cfg80211_scan_done -EXPORT_SYMBOL net/wireless/cfg80211 0x0e848b1c cfg80211_send_layer2_update -EXPORT_SYMBOL net/wireless/cfg80211 0x0f3fb031 cfg80211_iter_combinations -EXPORT_SYMBOL net/wireless/cfg80211 0x14649f87 cfg80211_rx_assoc_resp +EXPORT_SYMBOL net/rxrpc/rxrpc 0x4afcb6d7 rxrpc_kernel_new_call_notification +EXPORT_SYMBOL net/rxrpc/rxrpc 0x5bc93004 rxrpc_kernel_abort_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0x6ae4a754 rxrpc_kernel_get_srtt +EXPORT_SYMBOL net/rxrpc/rxrpc 0x83ac8f26 rxrpc_kernel_get_peer +EXPORT_SYMBOL net/rxrpc/rxrpc 0x8512eed7 rxrpc_sock_set_min_security_level +EXPORT_SYMBOL net/rxrpc/rxrpc 0x8785a920 rxrpc_get_null_key +EXPORT_SYMBOL net/rxrpc/rxrpc 0x8834dcbf rxrpc_kernel_set_max_life +EXPORT_SYMBOL net/rxrpc/rxrpc 0x8d459849 rxrpc_kernel_get_epoch +EXPORT_SYMBOL net/rxrpc/rxrpc 0x9bcbfbfa rxrpc_kernel_end_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0xa16a833c rxrpc_kernel_check_life +EXPORT_SYMBOL net/rxrpc/rxrpc 0xa425e3ac rxrpc_kernel_charge_accept +EXPORT_SYMBOL net/rxrpc/rxrpc 0xb8664f50 rxrpc_kernel_begin_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0xdabad73e rxrpc_kernel_set_tx_length +EXPORT_SYMBOL net/rxrpc/rxrpc 0xeb0c6716 rxrpc_kernel_get_reply_time +EXPORT_SYMBOL net/rxrpc/rxrpc 0xfa6b2527 rxrpc_get_server_data_key +EXPORT_SYMBOL net/sctp/sctp 0xc6a61fe7 sctp_do_peeloff +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x5ef4c323 gss_mech_get +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x7c5730e9 gss_pseudoflavor_to_service +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x7f95a687 gss_mech_put +EXPORT_SYMBOL net/sunrpc/sunrpc 0x7a9223a5 xdr_truncate_encode +EXPORT_SYMBOL net/sunrpc/sunrpc 0xb0c33b33 xdr_restrict_buflen +EXPORT_SYMBOL net/sunrpc/sunrpc 0xc890c8e0 svc_pool_stats_open +EXPORT_SYMBOL net/sunrpc/sunrpc 0xcae94e64 get_srcport +EXPORT_SYMBOL net/tipc/tipc 0x20f9d596 tipc_nl_sk_walk +EXPORT_SYMBOL net/tipc/tipc 0x34752137 tipc_sk_fill_sock_diag +EXPORT_SYMBOL net/tipc/tipc 0x6f07ce4c tipc_dump_start +EXPORT_SYMBOL net/tipc/tipc 0xab2ef4ac tipc_dump_done +EXPORT_SYMBOL net/tls/tls 0x791283c5 tls_get_record +EXPORT_SYMBOL net/wireless/cfg80211 0x01e2d879 cfg80211_cqm_txe_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x03bd378e cfg80211_cac_event +EXPORT_SYMBOL net/wireless/cfg80211 0x0657b24f cfg80211_mgmt_tx_status +EXPORT_SYMBOL net/wireless/cfg80211 0x0dfd48a2 cfg80211_bss_flush +EXPORT_SYMBOL net/wireless/cfg80211 0x11958265 ieee80211_get_channel_khz +EXPORT_SYMBOL net/wireless/cfg80211 0x1400e46c cfg80211_disconnected EXPORT_SYMBOL net/wireless/cfg80211 0x15a37cf3 cfg80211_calculate_bitrate +EXPORT_SYMBOL net/wireless/cfg80211 0x16a5bfb5 cfg80211_pmksa_candidate_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x175c13ac cfg80211_get_bss EXPORT_SYMBOL net/wireless/cfg80211 0x1879fcbd bridge_tunnel_header +EXPORT_SYMBOL net/wireless/cfg80211 0x191e0257 wiphy_rfkill_start_polling +EXPORT_SYMBOL net/wireless/cfg80211 0x1b0a0440 cfg80211_ref_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x1bfc1590 cfg80211_chandef_usable EXPORT_SYMBOL net/wireless/cfg80211 0x1ce2497f reg_query_regdb_wmm -EXPORT_SYMBOL net/wireless/cfg80211 0x1d8170ce cfg80211_update_owe_info_event -EXPORT_SYMBOL net/wireless/cfg80211 0x21ed2a86 regulatory_pre_cac_allowed -EXPORT_SYMBOL net/wireless/cfg80211 0x2228179c cfg80211_roamed +EXPORT_SYMBOL net/wireless/cfg80211 0x2138fe6e cfg80211_probe_status +EXPORT_SYMBOL net/wireless/cfg80211 0x216fd202 ieee80211_data_to_8023_exthdr +EXPORT_SYMBOL net/wireless/cfg80211 0x21b1a85f cfg80211_crit_proto_stopped EXPORT_SYMBOL net/wireless/cfg80211 0x2310adee ieee80211_bss_get_elem +EXPORT_SYMBOL net/wireless/cfg80211 0x260d2d80 cfg80211_sched_scan_stopped_locked EXPORT_SYMBOL net/wireless/cfg80211 0x27efff25 ieee80211_s1g_channel_width +EXPORT_SYMBOL net/wireless/cfg80211 0x2828814b cfg80211_ready_on_channel EXPORT_SYMBOL net/wireless/cfg80211 0x2a5d816f cfg80211_chandef_valid -EXPORT_SYMBOL net/wireless/cfg80211 0x2ee05331 cfg80211_radar_event -EXPORT_SYMBOL net/wireless/cfg80211 0x2f244c8e cfg80211_reg_can_beacon -EXPORT_SYMBOL net/wireless/cfg80211 0x2fa29b62 cfg80211_notify_new_peer_candidate -EXPORT_SYMBOL net/wireless/cfg80211 0x321f2fe2 cfg80211_check_combinations -EXPORT_SYMBOL net/wireless/cfg80211 0x32d5bf07 cfg80211_chandef_dfs_required -EXPORT_SYMBOL net/wireless/cfg80211 0x376f7be0 cfg80211_inform_bss_frame_data +EXPORT_SYMBOL net/wireless/cfg80211 0x2f298859 cfg80211_stop_iface +EXPORT_SYMBOL net/wireless/cfg80211 0x31fc8383 cfg80211_nan_match +EXPORT_SYMBOL net/wireless/cfg80211 0x3547cee7 cfg80211_connect_done +EXPORT_SYMBOL net/wireless/cfg80211 0x360b9510 cfg80211_scan_done EXPORT_SYMBOL net/wireless/cfg80211 0x38cb594a ieee80211_ie_split_ric -EXPORT_SYMBOL net/wireless/cfg80211 0x3b62d3ba wiphy_free -EXPORT_SYMBOL net/wireless/cfg80211 0x3d25bc41 cfg80211_cqm_pktloss_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x3d7c7a31 __cfg80211_send_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x3a1ab49f cfg80211_auth_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0x3cd92d01 cfg80211_tdls_oper_request EXPORT_SYMBOL net/wireless/cfg80211 0x3d8e5894 cfg80211_chandef_compatible -EXPORT_SYMBOL net/wireless/cfg80211 0x41b01193 cfg80211_new_sta -EXPORT_SYMBOL net/wireless/cfg80211 0x41f6e1a3 ieee80211_get_channel_khz +EXPORT_SYMBOL net/wireless/cfg80211 0x4374b182 cfg80211_sched_scan_results EXPORT_SYMBOL net/wireless/cfg80211 0x43afadee ieee80211_radiotap_iterator_init -EXPORT_SYMBOL net/wireless/cfg80211 0x458196cc cfg80211_rx_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0x4c2436ca cfg80211_external_auth_request -EXPORT_SYMBOL net/wireless/cfg80211 0x4e2d2045 cfg80211_conn_failed -EXPORT_SYMBOL net/wireless/cfg80211 0x4e3369fb get_wiphy_regdom -EXPORT_SYMBOL net/wireless/cfg80211 0x509b4538 cfg80211_tx_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0x51a1a4ad cfg80211_disconnected -EXPORT_SYMBOL net/wireless/cfg80211 0x56bcea8f cfg80211_michael_mic_failure -EXPORT_SYMBOL net/wireless/cfg80211 0x575d2f1f cfg80211_ibss_joined -EXPORT_SYMBOL net/wireless/cfg80211 0x57f78c53 cfg80211_chandef_usable -EXPORT_SYMBOL net/wireless/cfg80211 0x5aabd5f6 cfg80211_stop_iface -EXPORT_SYMBOL net/wireless/cfg80211 0x5de210f9 cfg80211_bss_color_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x5f3f263f cfg80211_ft_event +EXPORT_SYMBOL net/wireless/cfg80211 0x44ba076f cfg80211_external_auth_request +EXPORT_SYMBOL net/wireless/cfg80211 0x485692b4 regulatory_set_wiphy_regd +EXPORT_SYMBOL net/wireless/cfg80211 0x48d6444c cfg80211_control_port_tx_status +EXPORT_SYMBOL net/wireless/cfg80211 0x4aa23001 cfg80211_ft_event +EXPORT_SYMBOL net/wireless/cfg80211 0x4e1a4fe0 cfg80211_put_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x50238d41 cfg80211_port_authorized +EXPORT_SYMBOL net/wireless/cfg80211 0x51b20973 freq_reg_info +EXPORT_SYMBOL net/wireless/cfg80211 0x5466e58d cfg80211_ch_switch_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x576752d2 cfg80211_update_owe_info_event +EXPORT_SYMBOL net/wireless/cfg80211 0x5973181a cfg80211_report_wowlan_wakeup +EXPORT_SYMBOL net/wireless/cfg80211 0x5c86e791 cfg80211_inform_bss_frame_data +EXPORT_SYMBOL net/wireless/cfg80211 0x5ca9dcc0 cfg80211_tx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x6143f5a0 cfg80211_rx_unprot_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x621864f8 cfg80211_notify_new_peer_candidate +EXPORT_SYMBOL net/wireless/cfg80211 0x62bfce99 cfg80211_cqm_rssi_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x62d2e385 cfg80211_conn_failed EXPORT_SYMBOL net/wireless/cfg80211 0x652aeedf ieee80211_mandatory_rates +EXPORT_SYMBOL net/wireless/cfg80211 0x68cd1d35 __cfg80211_alloc_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x6905bc2e __cfg80211_alloc_reply_skb EXPORT_SYMBOL net/wireless/cfg80211 0x69b18f43 rfc1042_header EXPORT_SYMBOL net/wireless/cfg80211 0x6bedf402 ieee80211_freq_khz_to_channel -EXPORT_SYMBOL net/wireless/cfg80211 0x6c84a04a ieee80211_amsdu_to_8023s -EXPORT_SYMBOL net/wireless/cfg80211 0x6d030e7d cfg80211_ref_bss -EXPORT_SYMBOL net/wireless/cfg80211 0x71cbef57 cfg80211_get_drvinfo -EXPORT_SYMBOL net/wireless/cfg80211 0x7279c6e8 cfg80211_get_station -EXPORT_SYMBOL net/wireless/cfg80211 0x73688545 wiphy_rfkill_set_hw_state_reason -EXPORT_SYMBOL net/wireless/cfg80211 0x755b78f7 cfg80211_nan_match -EXPORT_SYMBOL net/wireless/cfg80211 0x7567ccfa cfg80211_any_usable_channels +EXPORT_SYMBOL net/wireless/cfg80211 0x6bfd91a7 cfg80211_check_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0x71854a8f cfg80211_ibss_joined +EXPORT_SYMBOL net/wireless/cfg80211 0x74c660c0 wiphy_register +EXPORT_SYMBOL net/wireless/cfg80211 0x770e5d4e wiphy_new_nm +EXPORT_SYMBOL net/wireless/cfg80211 0x787f65da wiphy_rfkill_set_hw_state_reason EXPORT_SYMBOL net/wireless/cfg80211 0x79b82a71 cfg80211_find_vendor_elem +EXPORT_SYMBOL net/wireless/cfg80211 0x79f619c2 cfg80211_rx_unexpected_4addr_frame 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 0x7cdaffd4 cfg80211_sched_scan_stopped_locked -EXPORT_SYMBOL net/wireless/cfg80211 0x7d7a2418 cfg80211_report_obss_beacon_khz -EXPORT_SYMBOL net/wireless/cfg80211 0x7e174d82 regulatory_set_wiphy_regd_sync +EXPORT_SYMBOL net/wireless/cfg80211 0x7d320446 cfg80211_rx_assoc_resp +EXPORT_SYMBOL net/wireless/cfg80211 0x7dda2336 cfg80211_ch_switch_started_notify EXPORT_SYMBOL net/wireless/cfg80211 0x7ef39823 ieee80211_hdrlen EXPORT_SYMBOL net/wireless/cfg80211 0x81874735 ieee80211_get_response_rate -EXPORT_SYMBOL net/wireless/cfg80211 0x84bc391f cfg80211_sched_scan_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0x81953d86 cfg80211_nan_func_terminated +EXPORT_SYMBOL net/wireless/cfg80211 0x8284a874 ieee80211_get_num_supported_channels +EXPORT_SYMBOL net/wireless/cfg80211 0x8394531e cfg80211_del_sta_sinfo +EXPORT_SYMBOL net/wireless/cfg80211 0x874bc77d cfg80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x87f373d1 cfg80211_reg_can_beacon_relax +EXPORT_SYMBOL net/wireless/cfg80211 0x89663a20 __cfg80211_send_event_skb EXPORT_SYMBOL net/wireless/cfg80211 0x8b24e88f cfg80211_merge_profile -EXPORT_SYMBOL net/wireless/cfg80211 0x8b9dc77a wiphy_new_nm -EXPORT_SYMBOL net/wireless/cfg80211 0x8c00acf8 cfg80211_register_netdevice -EXPORT_SYMBOL net/wireless/cfg80211 0x8d37f17c cfg80211_ready_on_channel -EXPORT_SYMBOL net/wireless/cfg80211 0x8e0d1f7e cfg80211_iftype_allowed +EXPORT_SYMBOL net/wireless/cfg80211 0x8b8a4de4 cfg80211_unregister_wdev +EXPORT_SYMBOL net/wireless/cfg80211 0x8d8b53c4 cfg80211_get_drvinfo +EXPORT_SYMBOL net/wireless/cfg80211 0x8dbda133 cfg80211_report_obss_beacon_khz +EXPORT_SYMBOL net/wireless/cfg80211 0x8f0aca14 cfg80211_register_netdevice EXPORT_SYMBOL net/wireless/cfg80211 0x8fa02936 cfg80211_free_nan_func -EXPORT_SYMBOL net/wireless/cfg80211 0x90edce00 cfg80211_probe_status -EXPORT_SYMBOL net/wireless/cfg80211 0x936e0ec7 wiphy_register -EXPORT_SYMBOL net/wireless/cfg80211 0x9640d58e cfg80211_check_station_change -EXPORT_SYMBOL net/wireless/cfg80211 0x97e27ade cfg80211_cac_event -EXPORT_SYMBOL net/wireless/cfg80211 0x99bbf5ac cfg80211_put_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x90ae5575 cfg80211_radar_event +EXPORT_SYMBOL net/wireless/cfg80211 0x97698765 cfg80211_remain_on_channel_expired +EXPORT_SYMBOL net/wireless/cfg80211 0x9b20d86e cfg80211_send_layer2_update EXPORT_SYMBOL net/wireless/cfg80211 0x9d6cba30 cfg80211_find_elem_match -EXPORT_SYMBOL net/wireless/cfg80211 0x9f4c1420 wiphy_unregister -EXPORT_SYMBOL net/wireless/cfg80211 0xa86d1229 cfg80211_rx_spurious_frame -EXPORT_SYMBOL net/wireless/cfg80211 0xa9a550aa __cfg80211_alloc_reply_skb -EXPORT_SYMBOL net/wireless/cfg80211 0xaa38a8d2 cfg80211_sched_scan_results -EXPORT_SYMBOL net/wireless/cfg80211 0xae34f2f6 cfg80211_mgmt_tx_status -EXPORT_SYMBOL net/wireless/cfg80211 0xaf2348a4 cfg80211_rx_unprot_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0xb0a964b8 cfg80211_pmksa_candidate_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xb0f9524d cfg80211_assoc_timeout -EXPORT_SYMBOL net/wireless/cfg80211 0xb12b1205 wiphy_rfkill_start_polling -EXPORT_SYMBOL net/wireless/cfg80211 0xb20b8eea wiphy_read_of_freq_limits -EXPORT_SYMBOL net/wireless/cfg80211 0xb4b92e2e wiphy_apply_custom_regulatory -EXPORT_SYMBOL net/wireless/cfg80211 0xb562c071 regulatory_set_wiphy_regd +EXPORT_SYMBOL net/wireless/cfg80211 0xa1270d78 cfg80211_rx_control_port +EXPORT_SYMBOL net/wireless/cfg80211 0xa85fd5d1 cfg80211_sta_opmode_change_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xac01bd89 cfg80211_rx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0xac4e258b ieee80211_get_hdrlen_from_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xafc84f02 regulatory_pre_cac_allowed +EXPORT_SYMBOL net/wireless/cfg80211 0xb1aacab2 get_wiphy_regdom +EXPORT_SYMBOL net/wireless/cfg80211 0xb4ddf49b cfg80211_iter_combinations EXPORT_SYMBOL net/wireless/cfg80211 0xb73aafb1 ieee80211_chandef_to_operating_class -EXPORT_SYMBOL net/wireless/cfg80211 0xbc346acf cfg80211_unregister_wdev -EXPORT_SYMBOL net/wireless/cfg80211 0xbf32b46d cfg80211_rx_mgmt_khz +EXPORT_SYMBOL net/wireless/cfg80211 0xb845a702 cfg80211_roamed +EXPORT_SYMBOL net/wireless/cfg80211 0xb9e68bfc cfg80211_sched_scan_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0xbcd53c6c cfg80211_chandef_dfs_required +EXPORT_SYMBOL net/wireless/cfg80211 0xbcf98e50 ieee80211_amsdu_to_8023s +EXPORT_SYMBOL net/wireless/cfg80211 0xbff04309 cfg80211_reg_can_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0xc00bb71c cfg80211_classify8021d EXPORT_SYMBOL net/wireless/cfg80211 0xc1b99792 ieee80211_channel_to_freq_khz -EXPORT_SYMBOL net/wireless/cfg80211 0xc2d3aea2 cfg80211_sta_opmode_change_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xc2ff9813 cfg80211_port_authorized -EXPORT_SYMBOL net/wireless/cfg80211 0xc4644ae9 cfg80211_ch_switch_started_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xc4b957ef cfg80211_bss_flush -EXPORT_SYMBOL net/wireless/cfg80211 0xc5570a09 cfg80211_reg_can_beacon_relax +EXPORT_SYMBOL net/wireless/cfg80211 0xc1e0b609 cfg80211_iftype_allowed +EXPORT_SYMBOL net/wireless/cfg80211 0xc45da9c8 cfg80211_inform_bss_data EXPORT_SYMBOL net/wireless/cfg80211 0xc5dcacef ieee80211_operating_class_to_band -EXPORT_SYMBOL net/wireless/cfg80211 0xc6a01de6 cfg80211_gtk_rekey_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xc7297952 cfg80211_bss_iter +EXPORT_SYMBOL net/wireless/cfg80211 0xc914e934 wiphy_free +EXPORT_SYMBOL net/wireless/cfg80211 0xc9e00822 cfg80211_unlink_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xcb6c7373 cfg80211_assoc_timeout EXPORT_SYMBOL net/wireless/cfg80211 0xcc1a7c48 cfg80211_is_element_inherited -EXPORT_SYMBOL net/wireless/cfg80211 0xd3261777 cfg80211_ch_switch_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xd34c225a cfg80211_gtk_rekey_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xd3a9513e cfg80211_get_station EXPORT_SYMBOL net/wireless/cfg80211 0xd56d55f3 ieee80211_get_mesh_hdrlen -EXPORT_SYMBOL net/wireless/cfg80211 0xd8c6c9b8 cfg80211_cqm_txe_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xda104238 cfg80211_tx_mgmt_expired +EXPORT_SYMBOL net/wireless/cfg80211 0xda1f4f60 wiphy_apply_custom_regulatory EXPORT_SYMBOL net/wireless/cfg80211 0xdba126c1 reg_initiator_name -EXPORT_SYMBOL net/wireless/cfg80211 0xdd26bae6 cfg80211_del_sta_sinfo -EXPORT_SYMBOL net/wireless/cfg80211 0xe082f75c freq_reg_info -EXPORT_SYMBOL net/wireless/cfg80211 0xe0a8cc69 ieee80211_get_num_supported_channels -EXPORT_SYMBOL net/wireless/cfg80211 0xe0e7eb97 cfg80211_connect_done -EXPORT_SYMBOL net/wireless/cfg80211 0xe10243cd cfg80211_nan_func_terminated -EXPORT_SYMBOL net/wireless/cfg80211 0xe45acbf5 cfg80211_abandon_assoc -EXPORT_SYMBOL net/wireless/cfg80211 0xe5ff82a3 cfg80211_unlink_bss -EXPORT_SYMBOL net/wireless/cfg80211 0xe6b5e5d6 cfg80211_cqm_rssi_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xe8a040a1 ieee80211_data_to_8023_exthdr -EXPORT_SYMBOL net/wireless/cfg80211 0xea1adf4f cfg80211_cqm_beacon_loss_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xedde0ed7 cfg80211_report_wowlan_wakeup +EXPORT_SYMBOL net/wireless/cfg80211 0xde41fe9a regulatory_set_wiphy_regd_sync +EXPORT_SYMBOL net/wireless/cfg80211 0xe0436e77 cfg80211_bss_color_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xe08dd94b regulatory_hint +EXPORT_SYMBOL net/wireless/cfg80211 0xe770d852 wiphy_unregister +EXPORT_SYMBOL net/wireless/cfg80211 0xebdec4b6 cfg80211_new_sta +EXPORT_SYMBOL net/wireless/cfg80211 0xec4d15af cfg80211_tx_mgmt_expired EXPORT_SYMBOL net/wireless/cfg80211 0xef265f27 cfg80211_chandef_create -EXPORT_SYMBOL net/wireless/cfg80211 0xf309949d cfg80211_rx_unexpected_4addr_frame -EXPORT_SYMBOL net/wireless/cfg80211 0xf44014b4 ieee80211_get_hdrlen_from_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xf26ba313 cfg80211_abandon_assoc +EXPORT_SYMBOL net/wireless/cfg80211 0xf3d1b1ac cfg80211_michael_mic_failure +EXPORT_SYMBOL net/wireless/cfg80211 0xf3f06e72 cfg80211_rx_spurious_frame EXPORT_SYMBOL net/wireless/cfg80211 0xf558ad0f cfg80211_sinfo_alloc_tid_stats EXPORT_SYMBOL net/wireless/cfg80211 0xf5596d89 cfg80211_get_p2p_attr -EXPORT_SYMBOL net/wireless/cfg80211 0xf5fa2b16 cfg80211_crit_proto_stopped -EXPORT_SYMBOL net/wireless/cfg80211 0xf61057ad __cfg80211_alloc_event_skb -EXPORT_SYMBOL net/wireless/cfg80211 0xfce11633 cfg80211_inform_bss_data -EXPORT_SYMBOL net/wireless/cfg80211 0xfd93357b cfg80211_control_port_tx_status -EXPORT_SYMBOL net/wireless/cfg80211 0xff49f3a0 cfg80211_tdls_oper_request -EXPORT_SYMBOL net/wireless/cfg80211 0xff5b98e6 cfg80211_rx_control_port -EXPORT_SYMBOL net/wireless/lib80211 0x14bdb3ca lib80211_get_crypto_ops -EXPORT_SYMBOL net/wireless/lib80211 0x5025d9d0 lib80211_crypt_info_free -EXPORT_SYMBOL net/wireless/lib80211 0xaeae6162 lib80211_unregister_crypto_ops -EXPORT_SYMBOL net/wireless/lib80211 0xb9d3cf5b lib80211_crypt_delayed_deinit -EXPORT_SYMBOL net/wireless/lib80211 0xf1caccc1 lib80211_register_crypto_ops -EXPORT_SYMBOL net/wireless/lib80211 0xf9e85d23 lib80211_crypt_info_init -EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0xd178fedb snd_mixer_oss_ioctl_card +EXPORT_SYMBOL net/wireless/cfg80211 0xf978799f wiphy_read_of_freq_limits +EXPORT_SYMBOL net/wireless/cfg80211 0xf9e36ec0 cfg80211_check_station_change +EXPORT_SYMBOL net/wireless/cfg80211 0xfa7556c7 cfg80211_bss_iter +EXPORT_SYMBOL net/wireless/cfg80211 0xfc926e91 cfg80211_rx_mgmt_khz +EXPORT_SYMBOL net/wireless/cfg80211 0xfcc38995 cfg80211_any_usable_channels +EXPORT_SYMBOL net/wireless/cfg80211 0xff7378d8 cfg80211_cqm_pktloss_notify +EXPORT_SYMBOL net/wireless/lib80211 0x84e83f29 lib80211_crypt_delayed_deinit +EXPORT_SYMBOL net/wireless/lib80211 0x8c389205 lib80211_crypt_info_init +EXPORT_SYMBOL net/wireless/lib80211 0xb48f082c lib80211_unregister_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0xe5e661c6 lib80211_get_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0xeaedf6db lib80211_register_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0xfb7bbebb lib80211_crypt_info_free +EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0x644f7065 snd_mixer_oss_ioctl_card +EXPORT_SYMBOL sound/core/seq/snd-seq 0x1270f2f9 snd_seq_create_kernel_client EXPORT_SYMBOL sound/core/seq/snd-seq 0x1a724fcc snd_seq_kernel_client_ctl EXPORT_SYMBOL sound/core/seq/snd-seq 0x3061c52d snd_use_lock_sync_helper EXPORT_SYMBOL sound/core/seq/snd-seq 0x3fb4d161 snd_seq_kernel_client_dispatch -EXPORT_SYMBOL sound/core/seq/snd-seq 0x6661ee35 snd_seq_kernel_client_write_poll +EXPORT_SYMBOL sound/core/seq/snd-seq 0x5547f719 snd_seq_kernel_client_write_poll +EXPORT_SYMBOL sound/core/seq/snd-seq 0x599efe04 snd_seq_kernel_client_enqueue EXPORT_SYMBOL sound/core/seq/snd-seq 0x6bb71038 snd_seq_delete_kernel_client EXPORT_SYMBOL sound/core/seq/snd-seq 0x7ac2f329 snd_seq_expand_var_event EXPORT_SYMBOL sound/core/seq/snd-seq 0x7b8699eb snd_seq_event_port_detach EXPORT_SYMBOL sound/core/seq/snd-seq 0xb8e448a0 snd_seq_set_queue_tempo -EXPORT_SYMBOL sound/core/seq/snd-seq 0xbaee3495 snd_seq_create_kernel_client -EXPORT_SYMBOL sound/core/seq/snd-seq 0xd0448fa7 snd_seq_event_port_attach +EXPORT_SYMBOL sound/core/seq/snd-seq 0xc33e87c3 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 0xfdee7c2f 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 @@ -5601,262 +5605,262 @@ EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x4d5f7f98 snd_midi_event_free EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x56efbc6b snd_midi_event_reset_decode EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xdaf3383a snd_midi_event_new -EXPORT_SYMBOL sound/core/seq/snd-seq-virmidi 0xc46fd79b snd_virmidi_new -EXPORT_SYMBOL sound/core/snd-hwdep 0x8747deb2 snd_hwdep_new -EXPORT_SYMBOL sound/core/snd-rawmidi 0x2a1d5bd7 snd_rawmidi_drain_output -EXPORT_SYMBOL sound/core/snd-rawmidi 0x353317d8 snd_rawmidi_info_select -EXPORT_SYMBOL sound/core/snd-rawmidi 0x4fc292bf snd_rawmidi_transmit_peek -EXPORT_SYMBOL sound/core/snd-rawmidi 0x56bc3423 snd_rawmidi_transmit -EXPORT_SYMBOL sound/core/snd-rawmidi 0x5bfc517f snd_rawmidi_new -EXPORT_SYMBOL sound/core/snd-rawmidi 0x5d784ac5 snd_rawmidi_kernel_read -EXPORT_SYMBOL sound/core/snd-rawmidi 0x61a5da94 snd_rawmidi_proceed -EXPORT_SYMBOL sound/core/snd-rawmidi 0x797cefac snd_rawmidi_kernel_release -EXPORT_SYMBOL sound/core/snd-rawmidi 0x89d96052 snd_rawmidi_output_params -EXPORT_SYMBOL sound/core/snd-rawmidi 0x9d714594 snd_rawmidi_drain_input -EXPORT_SYMBOL sound/core/snd-rawmidi 0xb065cdd4 snd_rawmidi_kernel_open -EXPORT_SYMBOL sound/core/snd-rawmidi 0xc59ab744 __snd_rawmidi_transmit_peek -EXPORT_SYMBOL sound/core/snd-rawmidi 0xc7c15b55 snd_rawmidi_drop_output -EXPORT_SYMBOL sound/core/snd-rawmidi 0xd40c8bca snd_rawmidi_transmit_ack -EXPORT_SYMBOL sound/core/snd-rawmidi 0xd5e7d918 snd_rawmidi_kernel_write -EXPORT_SYMBOL sound/core/snd-rawmidi 0xd74abe0f snd_rawmidi_set_ops -EXPORT_SYMBOL sound/core/snd-rawmidi 0xe569dbe6 __snd_rawmidi_transmit_ack -EXPORT_SYMBOL sound/core/snd-rawmidi 0xf8f7443c snd_rawmidi_receive -EXPORT_SYMBOL sound/core/snd-rawmidi 0xfd4916e6 snd_rawmidi_transmit_empty -EXPORT_SYMBOL sound/core/snd-rawmidi 0xfef037e1 snd_rawmidi_input_params +EXPORT_SYMBOL sound/core/seq/snd-seq-virmidi 0x12bf350d snd_virmidi_new +EXPORT_SYMBOL sound/core/snd-hwdep 0x6e15c6a8 snd_hwdep_new +EXPORT_SYMBOL sound/core/snd-rawmidi 0x0564373f snd_rawmidi_proceed +EXPORT_SYMBOL sound/core/snd-rawmidi 0x191cb366 snd_rawmidi_output_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0x2fac14cb snd_rawmidi_transmit +EXPORT_SYMBOL sound/core/snd-rawmidi 0x3a27d5d8 snd_rawmidi_set_ops +EXPORT_SYMBOL sound/core/snd-rawmidi 0x4ef87f3f snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0x6a3b9a9e snd_rawmidi_kernel_release +EXPORT_SYMBOL sound/core/snd-rawmidi 0x7b65506c snd_rawmidi_drain_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0x8111b72e snd_rawmidi_kernel_open +EXPORT_SYMBOL sound/core/snd-rawmidi 0x88ef0b8f snd_rawmidi_transmit_empty +EXPORT_SYMBOL sound/core/snd-rawmidi 0x91b377bc snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0x95c0a5bf snd_rawmidi_kernel_write +EXPORT_SYMBOL sound/core/snd-rawmidi 0x99e33dce snd_rawmidi_info_select +EXPORT_SYMBOL sound/core/snd-rawmidi 0xa212f999 snd_rawmidi_drop_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0xb0284341 snd_rawmidi_input_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0xb17b8972 snd_rawmidi_drain_input +EXPORT_SYMBOL sound/core/snd-rawmidi 0xbabf273c snd_rawmidi_receive +EXPORT_SYMBOL sound/core/snd-rawmidi 0xd2a588c0 snd_rawmidi_kernel_read +EXPORT_SYMBOL sound/core/snd-rawmidi 0xd363a895 __snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0xe32e9783 snd_rawmidi_new +EXPORT_SYMBOL sound/core/snd-rawmidi 0xfdfc15f1 __snd_rawmidi_transmit_ack EXPORT_SYMBOL sound/core/snd-seq-device 0x091def1c snd_seq_autoload_exit EXPORT_SYMBOL sound/core/snd-seq-device 0x370a0736 snd_seq_autoload_init EXPORT_SYMBOL sound/core/snd-seq-device 0x6339b6d0 snd_seq_device_load_drivers -EXPORT_SYMBOL sound/core/snd-seq-device 0xdde10e22 snd_seq_device_new -EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x499af1fd snd_mpu401_uart_new +EXPORT_SYMBOL sound/core/snd-seq-device 0x84074691 snd_seq_device_new EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x6d629c59 snd_mpu401_uart_interrupt_tx +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x8ac05e85 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 0x268c7917 snd_opl3_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x35c6faaf snd_opl3_find_patch -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x44980ef9 snd_opl3_create -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x8cbbbcdf snd_opl3_reset -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x97140c67 snd_opl3_hwdep_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xaeb9a241 snd_opl3_timer_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xb0e9884a snd_opl3_init -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xc22aa76c snd_opl3_interrupt -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xd5ff309c snd_opl3_load_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x139e61a5 snd_opl3_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x358b955e snd_opl3_init +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x706f7e3a snd_opl3_load_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x818a0af5 snd_opl3_reset +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x9294f3ca snd_opl3_find_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x9d47a93d snd_opl3_create +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xe9858d4b snd_opl3_interrupt +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xf263fb22 snd_opl3_timer_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xf9b67da8 snd_opl3_hwdep_new EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x226138b0 snd_vx_threaded_irq_handler -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x28e49726 snd_vx_resume -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x3e69430c snd_vx_create -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x53666f34 snd_vx_suspend -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x68721f9a snd_vx_load_boot_image -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x7b2e3fc3 snd_vx_setup_firmware -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x875fd39c snd_vx_check_reg_bit -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xbbbea64d snd_vx_dsp_load -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xcdee08d3 snd_vx_free_firmware -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xe2f34b15 snd_vx_dsp_boot +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x280e4bd1 snd_vx_dsp_boot +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x2872fb0b snd_vx_dsp_load +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x44529ba5 snd_vx_create +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x6871ae17 snd_vx_free_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x76fa0cbb snd_vx_resume +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x7f39a39d snd_vx_suspend +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xc25f5f26 snd_vx_load_boot_image +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xd62b8385 snd_vx_check_reg_bit EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf1f04d23 snd_vx_irq_handler -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x00ca9939 iso_packets_buffer_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x02b18e6d cmp_connection_release -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x15ab51b6 cmp_connection_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x17b7b07f amdtp_stream_init +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xfbb15f3d snd_vx_setup_firmware +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x092ffd2c iso_packets_buffer_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x11a9287d amdtp_stream_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x17f29853 cmp_connection_check_used +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x184724ab avc_general_set_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x1bcbe4a1 fw_iso_resources_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x1d69a427 fcp_bus_reset EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x20254e45 amdtp_syt_intervals -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x25c69176 amdtp_stream_set_parameters -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x28f8cf49 fw_iso_resources_update -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2cb6dd42 cmp_connection_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2e70655c fcp_bus_reset -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3aa9b90b amdtp_stream_update -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3d40d116 cmp_connection_reserve -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x44cd5914 fcp_avc_transaction -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x4a9ec59e amdtp_stream_get_max_payload -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x4f196c61 avc_general_set_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x24f0fae3 snd_fw_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2a2de831 fcp_avc_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x35680a9f fw_iso_resources_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x4a5a05fa cmp_connection_release +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x529bedb1 fw_iso_resources_free EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x53ca18e8 amdtp_rate_table -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7c96b4c5 avc_general_get_sig_fmt -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7e797057 iso_packets_buffer_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x967a1e43 cmp_connection_establish -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x9acb2195 amdtp_stream_add_pcm_hw_constraints -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa1f0be72 fw_iso_resources_allocate -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa42e453d amdtp_stream_pcm_prepare -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xad05320d amdtp_stream_pcm_abort -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb2162309 amdtp_stream_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb67450ab fw_iso_resources_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xbfaf66a3 cmp_connection_update -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc061e185 fw_iso_resources_free -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc291e2d8 cmp_connection_check_used -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe1c6b8e8 cmp_connection_break -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe2b7390b avc_general_get_plug_info -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe9e36d6a fw_iso_resources_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xea1326f4 snd_fw_transaction -EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x1c61578d snd_ak4113_suspend -EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x936f9022 snd_ak4113_resume -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x2a3c753b snd_ak4114_reinit -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x3bbb595c snd_ak4114_resume -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x54d61fa8 snd_ak4114_suspend -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x7f042b48 snd_ak4114_reg_write -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x8310ba06 snd_ak4114_build -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x8a2bec97 snd_ak4114_external_rate -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xb9151e4d snd_ak4114_create -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xfe8f8790 snd_ak4114_check_rate_and_errors -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x18aeca59 snd_akm4xxx_reset -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x1dd757c6 snd_akm4xxx_write -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x35fc0978 snd_akm4xxx_build_controls -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x4df35873 snd_akm4xxx_init -EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x6824e4db snd_pt2258_build_controls -EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0xcb42d570 snd_pt2258_reset -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x10ff8c23 snd_cs8427_init -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x2320a487 snd_cs8427_iec958_active -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x48edb2fb snd_cs8427_iec958_pcm -EXPORT_SYMBOL sound/i2c/snd-cs8427 0xafc43ee2 snd_cs8427_iec958_build -EXPORT_SYMBOL sound/i2c/snd-cs8427 0xde52697d snd_cs8427_create -EXPORT_SYMBOL sound/i2c/snd-cs8427 0xf5b0147d snd_cs8427_reg_write -EXPORT_SYMBOL sound/i2c/snd-i2c 0x04421dc1 snd_i2c_device_free -EXPORT_SYMBOL sound/i2c/snd-i2c 0x06203f19 snd_i2c_device_create -EXPORT_SYMBOL sound/i2c/snd-i2c 0x63fbeeb3 snd_i2c_bus_create -EXPORT_SYMBOL sound/i2c/snd-i2c 0x8121af55 snd_i2c_probeaddr -EXPORT_SYMBOL sound/i2c/snd-i2c 0xea5a7cd7 snd_i2c_readbytes -EXPORT_SYMBOL sound/i2c/snd-i2c 0xf690cf6a snd_i2c_sendbytes -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x031d2a91 snd_ac97_pcm_open -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x07defa96 snd_ac97_write -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x1c43287e snd_ac97_suspend -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x349b0cd4 snd_ac97_read -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x5454c608 snd_ac97_get_short_name -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x6512beb9 snd_ac97_update_bits -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x73b3174d snd_ac97_bus -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x77e34821 snd_ac97_mixer -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x7953045d snd_ac97_pcm_double_rate_rules -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x7d8d2c41 snd_ac97_write_cache -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x89248226 snd_ac97_update_power -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x96338deb snd_ac97_resume -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xaca0dca8 snd_ac97_tune_hardware -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xb2b3de70 snd_ac97_set_rate -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xd62bd1d6 snd_ac97_update -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xe6bfd5a0 snd_ac97_pcm_assign -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xf77c8996 snd_ac97_pcm_close -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x24b90db0 snd_emu10k1_ptr_write -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x2654d5d7 snd_emu10k1_voice_free -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x3a1e3735 snd_emu10k1_synth_bzero -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x45797c95 snd_emu10k1_synth_free -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x7328dc76 snd_emu10k1_ptr_read -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x78889000 snd_emu10k1_synth_alloc -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xe9baad84 snd_emu10k1_voice_alloc -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xf0038fb6 snd_emu10k1_synth_copy_from_user -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xf9bfae78 snd_emu10k1_memblk_map -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x0aa6f587 snd_ice1712_akm4xxx_build_controls -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x4ab43bd6 snd_ice1712_akm4xxx_init -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x6f9bddfc snd_ice1712_akm4xxx_free -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x015151b9 oxygen_write_uart -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x06ad8bb9 oxygen_write8_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x1f4bdaf6 oxygen_write16 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x32545636 oxygen_read_ac97 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x3853dd2c oxygen_write32 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x39c2f94b oxygen_write32_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x4a242a2f oxygen_read16 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x56558006 oxygen_write8 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x6c6c4492 oxygen_write_ac97_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x78c98d5a oxygen_write_spi -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x7938562f oxygen_read8 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x94703e00 oxygen_update_dac_routing -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x9fe7677d oxygen_pci_probe -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xa1e102da oxygen_pci_pm -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xa277f12f oxygen_pci_shutdown -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xa46eb010 oxygen_read32 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xb5a8c863 oxygen_write16_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xdf9bcbc4 oxygen_reset_uart -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xf989f721 oxygen_write_i2c -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xfa241bf8 oxygen_write_ac97 -EXPORT_SYMBOL sound/pci/trident/snd-trident 0x254ab6bd snd_trident_write_voice_regs -EXPORT_SYMBOL sound/pci/trident/snd-trident 0x6b7665e1 snd_trident_start_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0x85398d74 snd_trident_alloc_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0xecc3ed21 snd_trident_free_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0xfd615e92 snd_trident_stop_voice +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x616cd4ce cmp_connection_establish +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x62f5a4b0 amdtp_stream_pcm_abort +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x680f77de cmp_connection_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x6d2f2443 fw_iso_resources_allocate +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x6f8497bc iso_packets_buffer_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7cd5b5e0 amdtp_stream_pcm_prepare +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x8dbf7b76 cmp_connection_break +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x8f8a0cb4 cmp_connection_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x9ac7f7c5 amdtp_stream_get_max_payload +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa6382315 cmp_connection_reserve +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xadf019ac avc_general_get_plug_info +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb6931e21 amdtp_stream_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb877ed21 amdtp_stream_add_pcm_hw_constraints +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb9796a24 avc_general_get_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xbad4339c cmp_connection_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd1dbd75e fw_iso_resources_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe7e33179 amdtp_stream_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xeef52678 amdtp_stream_set_parameters +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0xc4dc5be9 snd_ak4113_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0xeafd7e2b snd_ak4113_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x3bbdf2aa snd_ak4114_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x52c0c6a5 snd_ak4114_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x65b93e32 snd_ak4114_reinit +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x814df341 snd_ak4114_build +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x8159664a snd_ak4114_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xd301a3ee snd_ak4114_check_rate_and_errors +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xea7b0fee snd_ak4114_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xec9b7661 snd_ak4114_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x24d175da snd_akm4xxx_build_controls +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x534b5cec snd_akm4xxx_reset +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x5c57fdfa snd_akm4xxx_init +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x9deeab7d snd_akm4xxx_write +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x4bd3fe96 snd_pt2258_build_controls +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0xd05c514c snd_pt2258_reset +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x2052a4f0 snd_cs8427_iec958_active +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x2a6a1313 snd_cs8427_create +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x2f045672 snd_cs8427_init +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x44d4f545 snd_cs8427_iec958_pcm +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x800679c8 snd_cs8427_iec958_build +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xe14beb50 snd_cs8427_reg_write +EXPORT_SYMBOL sound/i2c/snd-i2c 0x28f33876 snd_i2c_device_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0x5fa45c62 snd_i2c_bus_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0x71c4e50e snd_i2c_device_free +EXPORT_SYMBOL sound/i2c/snd-i2c 0x931c3fdd snd_i2c_probeaddr +EXPORT_SYMBOL sound/i2c/snd-i2c 0x9cf85715 snd_i2c_sendbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0xa069248f snd_i2c_readbytes +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x30ae82ae snd_ac97_pcm_close +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x3489f1c0 snd_ac97_read +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x357dacb3 snd_ac97_bus +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x368b09e0 snd_ac97_write_cache +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x495ef73a snd_ac97_update_bits +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x6101e082 snd_ac97_mixer +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x850a88c5 snd_ac97_set_rate +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x8ddcfaec snd_ac97_update_power +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x93c303bc snd_ac97_pcm_open +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xa15cb2d2 snd_ac97_pcm_double_rate_rules +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xa52d7fa1 snd_ac97_pcm_assign +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xb5ef8dc1 snd_ac97_write +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xc75759c4 snd_ac97_update +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xf420e1e5 snd_ac97_resume +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xf861bac3 snd_ac97_tune_hardware +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xf937b035 snd_ac97_suspend +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xfe9e530f snd_ac97_get_short_name +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x14624bf4 snd_emu10k1_synth_bzero +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x41864d9a snd_emu10k1_memblk_map +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x739cd7cc snd_emu10k1_synth_alloc +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x76a7c011 snd_emu10k1_synth_copy_from_user +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x7f367257 snd_emu10k1_ptr_read +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xa5d8d746 snd_emu10k1_voice_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xdf38024f snd_emu10k1_synth_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xe8caca9e snd_emu10k1_voice_alloc +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xf8bfee11 snd_emu10k1_ptr_write +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x0878f21f snd_ice1712_akm4xxx_free +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xa5d18100 snd_ice1712_akm4xxx_init +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xd1ef512c snd_ice1712_akm4xxx_build_controls +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x16b2cbd1 oxygen_pci_probe +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x39a398ab oxygen_write32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x4e445db2 oxygen_read8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x5306f573 oxygen_update_dac_routing +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x663ef7bb oxygen_pci_shutdown +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x7615a74a oxygen_write_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x8ecde98e oxygen_write32_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x924428fa oxygen_write16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x9353bb21 oxygen_write_spi +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x9808b3da oxygen_read_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xa370885c oxygen_write16_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xa676a0e1 oxygen_read32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xb196dc79 oxygen_write_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xbda4bc6a oxygen_reset_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xc7d4acd4 oxygen_write_ac97_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xc9953192 oxygen_read16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xcaa19b1e oxygen_write_i2c +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xe32b7aa3 oxygen_write8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xea073ee5 oxygen_write8_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xf88c855c oxygen_pci_pm +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x839d50f5 snd_trident_stop_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x91b7c51c snd_trident_free_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xba767e42 snd_trident_write_voice_regs +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xc6556bb7 snd_trident_alloc_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xeecd590f snd_trident_start_voice EXPORT_SYMBOL sound/soc/amd/acp_audio_dma 0xea74f232 bt_uart_enable -EXPORT_SYMBOL sound/soc/codecs/snd-soc-adau1372 0x236c028f adau1372_probe -EXPORT_SYMBOL sound/soc/codecs/snd-soc-lpass-wsa-macro 0xca7b786e wsa_macro_set_spkr_mode -EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0x32531b3b pcm3060_regmap -EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0x508b57cc pcm3060_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-adau1372 0x241505b5 adau1372_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-lpass-wsa-macro 0x0d9de403 wsa_macro_set_spkr_mode +EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0x04a767d7 pcm3060_regmap +EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0x69f891fc pcm3060_probe EXPORT_SYMBOL sound/soc/codecs/snd-soc-rt715 0xed2acb24 hda_to_sdw -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x2acc9475 tlv320aic23_regmap -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x49d88d52 tlv320aic23_probe -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x0971730b aic32x4_regmap_config -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x5f2928b6 aic32x4_remove -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x65fd2c0d aic32x4_probe -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic3x 0x02236fda aic3x_probe -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic3x 0x6ce89271 aic3x_remove -EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x041daa03 wcd_mbhc_start +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x54e44ae1 tlv320aic23_regmap +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0xff5f3b66 tlv320aic23_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0xa522e092 aic32x4_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0xd1ea0830 aic32x4_remove +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0xea92e116 aic32x4_regmap_config +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic3x 0x8004de38 aic3x_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic3x 0xe838e4af 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 0x6b66d5f4 wcd_dt_parse_mbhc_data +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x3bbc098a 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 0xad8c199c wcd_mbhc_init +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0xb290c1b7 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 0xdb29b0c3 wcd_mbhc_start EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0xe2beca26 wcd_mbhc_stop -EXPORT_SYMBOL sound/soc/mediatek/mt8192/snd-soc-mt8192-afe 0x7bc2cc8b mt8192_afe_gpio_request -EXPORT_SYMBOL sound/soc/mediatek/mt8192/snd-soc-mt8192-afe 0xc4237c06 mt8192_afe_gpio_init -EXPORT_SYMBOL sound/soc/qcom/qdsp6/q6afe 0x9879a594 q6afe_vote_lpass_core_hw -EXPORT_SYMBOL sound/soc/qcom/qdsp6/q6afe 0xdfbd7460 q6afe_unvote_lpass_core_hw -EXPORT_SYMBOL sound/soc/qcom/snd-soc-qcom-common 0xc0ae6925 qcom_snd_parse_of -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x0ea43303 snd_sof_run_firmware -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x0ed7d9b3 snd_sof_load_topology -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x177300f2 snd_sof_runtime_resume -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x17fc996c snd_sof_ipc_stream_posn -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x18066176 snd_sof_parse_module_memcpy -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x1b0fa1b8 snd_sof_load_firmware_memcpy -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x1b8b7ffd snd_sof_fw_unload -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x2051f5f3 snd_sof_dsp_update_bits -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x23b9693f snd_sof_ipc_msgs_rx -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x258f6522 snd_sof_fw_parse_ext_data -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x2d898679 snd_sof_trace_notify_for_error -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x3561dba2 snd_sof_prepare -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x37bc86e6 sof_mailbox_write -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x37e42e34 snd_sof_dsp_update_bits_forced -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x38342291 sof_machine_unregister -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x40364a40 snd_sof_ipc_set_get_comp_data -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x40c10eb5 snd_sof_ipc_free -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x46bfd43b snd_sof_device_shutdown -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x4f013c4c snd_sof_pci_update_bits -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x5be2bf20 sof_io_write64 -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x5e92701d snd_sof_dsp_mailbox_init -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x5ebe6027 snd_sof_device_remove -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x633a512a sof_machine_register -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x6541fdd7 sof_block_write -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x6ca3f67f snd_sof_suspend -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x7aabcbd0 snd_sof_ipc_reply -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x7af26c0c snd_sof_device_probe -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x7ca17f3c snd_sof_handle_fw_exception -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x82d187e6 sof_dai_get_bclk -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x875b6c8e sof_io_read -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x88b0c73a snd_sof_free_trace -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x8b497179 snd_sof_create_page_table -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x8b912282 snd_sof_release_trace -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x91c4d8e0 snd_sof_device_probe_completed -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x9292a9f9 sof_fw_ready -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x9c5243ed snd_sof_dsp_update_bits64 -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa217c2ee snd_sof_load_firmware_raw -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa3fe603e snd_sof_dsp_only_d0i3_compatible_stream_active -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa8785a60 snd_sof_init_trace -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa9aa5742 snd_sof_get_status -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xaa5d0c51 snd_sof_complete +EXPORT_SYMBOL sound/soc/mediatek/mt8192/snd-soc-mt8192-afe 0x4388d503 mt8192_afe_gpio_init +EXPORT_SYMBOL sound/soc/mediatek/mt8192/snd-soc-mt8192-afe 0xc4206218 mt8192_afe_gpio_request +EXPORT_SYMBOL sound/soc/qcom/qdsp6/q6afe 0x12b01399 q6afe_vote_lpass_core_hw +EXPORT_SYMBOL sound/soc/qcom/qdsp6/q6afe 0xe22f5202 q6afe_unvote_lpass_core_hw +EXPORT_SYMBOL sound/soc/qcom/snd-soc-qcom-common 0xc2650731 qcom_snd_parse_of +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x011b1b50 snd_sof_load_firmware +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x0b81cd2b sof_block_write +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x0f8b0e45 sof_machine_register +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x190d8ae2 snd_sof_dsp_update_bits_unlocked +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x1ab0d1cc snd_sof_device_remove +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x367b4946 snd_sof_dsp_panic +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x3b495308 sof_io_read +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x488e0cb8 snd_sof_pci_update_bits +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x4cf05dcf sof_io_read64 +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x4d998491 snd_sof_handle_fw_exception +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x4ff8cd08 snd_sof_dsp_only_d0i3_compatible_stream_active +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x5283b0f0 snd_sof_device_probe +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x53262945 snd_sof_load_firmware_memcpy +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x533cad1e snd_sof_ipc_set_get_comp_data +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x5370d068 snd_sof_ipc_msgs_rx +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x5abbd4ec snd_sof_dsp_update_bits_forced +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x5d50e2d3 snd_sof_fw_unload +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x64bdcde7 snd_sof_dsp_update_bits64 +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x6ffb991f sof_block_read +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x74b2e456 snd_sof_resume +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x853bd3d6 snd_sof_dsp_mailbox_init +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x86eefdd9 sof_pcm_dai_link_fixup +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x92b22821 sof_io_write +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x94650f2d sof_machine_unregister +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x949bdad3 snd_sof_prepare +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x96e5ec90 snd_sof_release_trace +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x9837d75a snd_sof_dsp_update_bits64_unlocked +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x9b59830d snd_sof_ipc_init +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x9ebb1390 snd_sof_ipc_stream_posn +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x9f18b2df snd_sof_device_probe_completed +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa279f1c3 snd_sof_suspend +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa5c46114 snd_sof_ipc_valid +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xaa2c7219 sof_io_write64 +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xacd0d3a7 sof_mailbox_read EXPORT_SYMBOL sound/soc/sof/snd-sof 0xad055b2c sof_ipc_tx_message -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xad35ecc6 snd_sof_ipc_init -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb75667ce sof_block_read -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc26dd7d6 sof_machine_check -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc7c22a94 snd_sof_dsp_update_bits64_unlocked -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xcd979756 sof_dai_get_mclk +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb831909b snd_sof_init_trace +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb8870fca snd_sof_parse_module_memcpy +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xbafcbfd5 snd_sof_pcm_period_elapsed +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xbe8c4c9b snd_sof_load_firmware_raw +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xbec0852d snd_sof_free_trace +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xbf832d8a sof_mailbox_write +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc14f3523 snd_sof_ipc_free +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc2b76cdd sof_fw_ready +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc4ee3169 snd_sof_runtime_suspend +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc95f9f3e sof_machine_check +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc9cfb066 snd_sof_trace_notify_for_error +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xca5cb2af snd_sof_run_firmware +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xcbdb43e3 snd_sof_get_status +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xcdae0729 snd_sof_device_shutdown +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd6488d5c snd_sof_dsp_update_bits +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd84ad5d0 snd_sof_create_page_table +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd88b3996 snd_sof_complete EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd927eca8 sof_ipc_tx_message_no_pm -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xdf15117f sof_io_read64 -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xdf62d23c sof_pcm_dai_link_fixup -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xe1a24ad5 sof_io_write -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xec6bc3d1 snd_sof_dsp_update_bits_unlocked -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xef73f5f5 snd_sof_resume -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xeff114c2 sof_mailbox_read -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf23f6329 snd_sof_runtime_suspend -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf3a4d35c snd_sof_pcm_period_elapsed -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf9196f93 snd_sof_dsp_panic -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xfa680ca8 snd_sof_runtime_idle -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xfe6896b7 snd_sof_load_firmware -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xffb737db snd_sof_ipc_valid -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x467da5af snd_emux_lock_voice -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x4eb0b149 snd_emux_terminate_all +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xdaea877f snd_sof_load_topology +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xe08b8be4 snd_sof_ipc_reply +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xe549848c snd_sof_runtime_resume +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xe5c620fd sof_dai_get_bclk +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xeede392c sof_dai_get_mclk +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf1608ecd snd_sof_runtime_idle +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf275734d snd_sof_fw_parse_ext_data +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x01b6eaa5 snd_emux_lock_voice +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x1487935f snd_emux_unlock_voice +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x27f68bc2 snd_emux_register +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x4a43b2cf 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 0x7b4c1378 snd_emux_new -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x9b1ddcb3 snd_emux_free -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xc0dd9452 snd_emux_register -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xfa532729 snd_emux_unlock_voice +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x6a83d794 snd_emux_terminate_all +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xe3001901 snd_emux_new EXPORT_SYMBOL sound/synth/snd-util-mem 0x17b16e1d snd_util_mem_avail EXPORT_SYMBOL sound/synth/snd-util-mem 0x2d2c67a0 snd_util_mem_free EXPORT_SYMBOL sound/synth/snd-util-mem 0x83c5ced7 snd_util_memhdr_free @@ -5867,5606 +5871,5610 @@ EXPORT_SYMBOL sound/synth/snd-util-mem 0xe18f74c7 __snd_util_mem_free EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x16756dc0 snd_usbmidi_input_start EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x63343b1d snd_usbmidi_input_stop -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xab0e040e __snd_usbmidi_create EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xb2af19e1 snd_usbmidi_resume EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xbed43a41 snd_usbmidi_suspend +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xd1217c68 __snd_usbmidi_create EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xd9d2bb03 snd_usbmidi_disconnect -EXPORT_SYMBOL vmlinux 0x00114ab5 of_platform_device_create -EXPORT_SYMBOL vmlinux 0x0011b3c1 fb_set_cmap -EXPORT_SYMBOL vmlinux 0x0029b269 snd_ctl_unregister_ioctl -EXPORT_SYMBOL vmlinux 0x00375f2d blk_mq_delay_run_hw_queue +EXPORT_SYMBOL vmlinux 0x001f2607 snd_card_disconnect +EXPORT_SYMBOL vmlinux 0x0034fedf security_d_instantiate EXPORT_SYMBOL vmlinux 0x003d3eb6 security_binder_set_context_mgr -EXPORT_SYMBOL vmlinux 0x003fc016 sk_net_capable -EXPORT_SYMBOL vmlinux 0x00485b84 bio_integrity_alloc -EXPORT_SYMBOL vmlinux 0x0062a1b4 dev_disable_lro -EXPORT_SYMBOL vmlinux 0x0068f418 dev_remove_offload -EXPORT_SYMBOL vmlinux 0x009bfef8 phy_init_eee -EXPORT_SYMBOL vmlinux 0x009decad vmf_insert_pfn_prot -EXPORT_SYMBOL vmlinux 0x00aa0b35 eth_commit_mac_addr_change +EXPORT_SYMBOL vmlinux 0x004d5690 jbd2_journal_submit_inode_data_buffers +EXPORT_SYMBOL vmlinux 0x00678b21 iov_iter_alignment +EXPORT_SYMBOL vmlinux 0x009ad8a1 snd_pcm_period_elapsed_under_stream_lock +EXPORT_SYMBOL vmlinux 0x00a9dcc4 skb_prepare_seq_read EXPORT_SYMBOL vmlinux 0x00b4e615 posix_acl_equiv_mode -EXPORT_SYMBOL vmlinux 0x00bdc6d1 neigh_sysctl_unregister -EXPORT_SYMBOL vmlinux 0x00c7abe1 devfreq_add_device +EXPORT_SYMBOL vmlinux 0x00cd8bf8 netdev_master_upper_dev_link +EXPORT_SYMBOL vmlinux 0x00d0bbf3 request_key_rcu EXPORT_SYMBOL vmlinux 0x00d7e722 vme_lm_count +EXPORT_SYMBOL vmlinux 0x00e60748 i2c_put_adapter EXPORT_SYMBOL vmlinux 0x01000e51 schedule -EXPORT_SYMBOL vmlinux 0x01034e34 _snd_ctl_add_follower EXPORT_SYMBOL vmlinux 0x01139ffc max_mapnr -EXPORT_SYMBOL vmlinux 0x01192f7b da903x_query_status +EXPORT_SYMBOL vmlinux 0x011549da devm_ioremap_np +EXPORT_SYMBOL vmlinux 0x011943ed rproc_remove_subdev EXPORT_SYMBOL vmlinux 0x011a9e53 elf_hwcap2 -EXPORT_SYMBOL vmlinux 0x011f050c fb_set_var -EXPORT_SYMBOL vmlinux 0x0121e3bb touch_buffer +EXPORT_SYMBOL vmlinux 0x0122e85a __bio_clone_fast EXPORT_SYMBOL vmlinux 0x0129c4f8 par_io_data_set -EXPORT_SYMBOL vmlinux 0x01305181 sync_blockdev -EXPORT_SYMBOL vmlinux 0x014e9cd1 pcim_pin_device +EXPORT_SYMBOL vmlinux 0x013eb79b hdmi_infoframe_log EXPORT_SYMBOL vmlinux 0x015af7f4 system_state +EXPORT_SYMBOL vmlinux 0x016cfd4e fs_param_is_fd EXPORT_SYMBOL vmlinux 0x01757935 rdmacg_register_device -EXPORT_SYMBOL vmlinux 0x017823fb rproc_report_crash -EXPORT_SYMBOL vmlinux 0x01785994 dev_close EXPORT_SYMBOL vmlinux 0x017de3d5 nr_cpu_ids EXPORT_SYMBOL vmlinux 0x01830813 kblockd_mod_delayed_work_on EXPORT_SYMBOL vmlinux 0x018574a1 mb_cache_entry_delete EXPORT_SYMBOL vmlinux 0x0199c3bd ethtool_intersect_link_masks +EXPORT_SYMBOL vmlinux 0x01a09f7a sdev_enable_disk_events EXPORT_SYMBOL vmlinux 0x01a3d310 omap_set_dma_channel_mode +EXPORT_SYMBOL vmlinux 0x01b39e84 kernel_listen +EXPORT_SYMBOL vmlinux 0x01b87576 pci_get_slot EXPORT_SYMBOL vmlinux 0x01bf55fc paddr_vmcoreinfo_note EXPORT_SYMBOL vmlinux 0x01bf78b5 inetpeer_invalidate_tree +EXPORT_SYMBOL vmlinux 0x01c154bd amba_device_register +EXPORT_SYMBOL vmlinux 0x01c284bc kill_fasync +EXPORT_SYMBOL vmlinux 0x01c3425b simple_unlink EXPORT_SYMBOL vmlinux 0x01e769d6 __next_node_in -EXPORT_SYMBOL vmlinux 0x01e92f5b ip_local_deliver +EXPORT_SYMBOL vmlinux 0x01eccb9f neigh_destroy +EXPORT_SYMBOL vmlinux 0x01ee865d alloc_skb_with_frags +EXPORT_SYMBOL vmlinux 0x01ef2da7 import_single_range EXPORT_SYMBOL vmlinux 0x020dbf27 bitmap_alloc -EXPORT_SYMBOL vmlinux 0x021004ca call_netdevice_notifiers -EXPORT_SYMBOL vmlinux 0x0211b560 __of_get_address EXPORT_SYMBOL vmlinux 0x02124474 ip_send_check -EXPORT_SYMBOL vmlinux 0x02157dee sk_page_frag_refill EXPORT_SYMBOL vmlinux 0x02196324 __aeabi_idiv -EXPORT_SYMBOL vmlinux 0x021eaf3f udp6_seq_ops -EXPORT_SYMBOL vmlinux 0x0229bd06 vm_iomap_memory -EXPORT_SYMBOL vmlinux 0x022bf963 tcp_sock_set_quickack -EXPORT_SYMBOL vmlinux 0x022c2b20 sock_create_lite -EXPORT_SYMBOL vmlinux 0x0272c852 flow_rule_match_icmp +EXPORT_SYMBOL vmlinux 0x021c2e4d backlight_device_register +EXPORT_SYMBOL vmlinux 0x02287622 snd_card_free_when_closed +EXPORT_SYMBOL vmlinux 0x024dfd39 netpoll_cleanup +EXPORT_SYMBOL vmlinux 0x0250506f noop_fsync EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues +EXPORT_SYMBOL vmlinux 0x027d2df3 qdisc_create_dflt EXPORT_SYMBOL vmlinux 0x0283dfe3 _snd_pcm_hw_params_any -EXPORT_SYMBOL vmlinux 0x02897263 jbd2_journal_grab_journal_head -EXPORT_SYMBOL vmlinux 0x028db060 writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0x0292d779 misc_deregister EXPORT_SYMBOL vmlinux 0x0296695f refcount_warn_saturate -EXPORT_SYMBOL vmlinux 0x02a18c74 nf_conntrack_destroy +EXPORT_SYMBOL vmlinux 0x02bf2cee __skb_recv_datagram EXPORT_SYMBOL vmlinux 0x02c065f8 ucc_set_qe_mux_mii_mng -EXPORT_SYMBOL vmlinux 0x02c80951 vfs_create +EXPORT_SYMBOL vmlinux 0x02c8c7c6 seg6_push_hmac +EXPORT_SYMBOL vmlinux 0x02ce3c44 ww_mutex_unlock EXPORT_SYMBOL vmlinux 0x02df50b0 jiffies EXPORT_SYMBOL vmlinux 0x02ee26c1 free_pages_exact -EXPORT_SYMBOL vmlinux 0x02fec0e4 simple_fill_super -EXPORT_SYMBOL vmlinux 0x0304b89d simple_transaction_set -EXPORT_SYMBOL vmlinux 0x031120ee __scm_destroy -EXPORT_SYMBOL vmlinux 0x03127ebf blk_mq_rq_cpu +EXPORT_SYMBOL vmlinux 0x02f667db cpufreq_generic_suspend +EXPORT_SYMBOL vmlinux 0x02f827ae file_ns_capable +EXPORT_SYMBOL vmlinux 0x030d6132 unlock_page_memcg +EXPORT_SYMBOL vmlinux 0x030eed36 noop_qdisc +EXPORT_SYMBOL vmlinux 0x031b6a91 dm_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x032596e1 pcie_capability_write_dword EXPORT_SYMBOL vmlinux 0x03259e8c kobject_get_unless_zero -EXPORT_SYMBOL vmlinux 0x03269f3b __sk_mem_reclaim EXPORT_SYMBOL vmlinux 0x0334795d icst307_s2div EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl -EXPORT_SYMBOL vmlinux 0x0347150c jbd2_fc_get_buf -EXPORT_SYMBOL vmlinux 0x035aa6c4 tc6393xb_lcd_mode -EXPORT_SYMBOL vmlinux 0x0362dba5 __filemap_set_wb_err +EXPORT_SYMBOL vmlinux 0x0346985e pci_wake_from_d3 +EXPORT_SYMBOL vmlinux 0x0360d67f make_flow_keys_digest EXPORT_SYMBOL vmlinux 0x0366307a console_suspend_enabled +EXPORT_SYMBOL vmlinux 0x0377e5da param_set_ullong EXPORT_SYMBOL vmlinux 0x037a0cba kfree EXPORT_SYMBOL vmlinux 0x03815f35 ledtrig_disk_activity -EXPORT_SYMBOL vmlinux 0x0389e52d proc_mkdir_mode -EXPORT_SYMBOL vmlinux 0x0395b0b2 qdisc_reset +EXPORT_SYMBOL vmlinux 0x038d9300 pcie_port_service_unregister EXPORT_SYMBOL vmlinux 0x0397edd5 fb_edid_to_monspecs +EXPORT_SYMBOL vmlinux 0x03ac9a1b device_match_acpi_dev +EXPORT_SYMBOL vmlinux 0x03ac9f7e __put_page EXPORT_SYMBOL vmlinux 0x03ba39b0 v7_flush_user_cache_all -EXPORT_SYMBOL vmlinux 0x03c4a3de __skb_warn_lro_forwarding -EXPORT_SYMBOL vmlinux 0x03cc3deb rawnand_sw_hamming_calculate -EXPORT_SYMBOL vmlinux 0x03d1d5bc uart_resume_port -EXPORT_SYMBOL vmlinux 0x03e817a0 __dynamic_netdev_dbg -EXPORT_SYMBOL vmlinux 0x03f703c7 dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0x03d9a8aa seq_open_private +EXPORT_SYMBOL vmlinux 0x03f88ef5 devm_devfreq_unregister_notifier EXPORT_SYMBOL vmlinux 0x03fba701 wait_for_completion_killable_timeout EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram +EXPORT_SYMBOL vmlinux 0x03fd6595 xfrm_user_policy EXPORT_SYMBOL vmlinux 0x0412acb4 __tracepoint_kmalloc -EXPORT_SYMBOL vmlinux 0x0430d25d fb_find_mode +EXPORT_SYMBOL vmlinux 0x0417e287 phy_validate_pause +EXPORT_SYMBOL vmlinux 0x0434d9bf setattr_copy +EXPORT_SYMBOL vmlinux 0x04379e6a rproc_get_by_phandle EXPORT_SYMBOL vmlinux 0x04426f14 mem_section EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator EXPORT_SYMBOL vmlinux 0x044fb722 dev_base_lock -EXPORT_SYMBOL vmlinux 0x0457b745 __skb_vlan_pop -EXPORT_SYMBOL vmlinux 0x0465e21f netif_carrier_off -EXPORT_SYMBOL vmlinux 0x046d8f2b vme_register_driver -EXPORT_SYMBOL vmlinux 0x04713c9b dec_zone_page_state -EXPORT_SYMBOL vmlinux 0x048f536e nd_region_acquire_lane -EXPORT_SYMBOL vmlinux 0x049aa59d mipi_dsi_dcs_set_display_off -EXPORT_SYMBOL vmlinux 0x049fd6d5 pcibios_bus_to_resource -EXPORT_SYMBOL vmlinux 0x04b0f8c4 snd_ctl_make_virtual_master +EXPORT_SYMBOL vmlinux 0x045b9628 xfrm_state_lookup_byaddr +EXPORT_SYMBOL vmlinux 0x04acd3ea netdev_get_xmit_slave +EXPORT_SYMBOL vmlinux 0x04ae6953 bioset_integrity_create +EXPORT_SYMBOL vmlinux 0x04b0a010 ip_sock_set_recverr +EXPORT_SYMBOL vmlinux 0x04bb0835 free_buffer_head EXPORT_SYMBOL vmlinux 0x04c6b4c3 __crypto_memneq +EXPORT_SYMBOL vmlinux 0x04ccd35f snd_timer_close EXPORT_SYMBOL vmlinux 0x04cda566 snd_interval_refine +EXPORT_SYMBOL vmlinux 0x04d05cd2 ip6tun_encaps +EXPORT_SYMBOL vmlinux 0x04d28e74 skb_get_hash_perturb EXPORT_SYMBOL vmlinux 0x04d9bf4e blk_set_stacking_limits -EXPORT_SYMBOL vmlinux 0x04e41223 unmap_mapping_range -EXPORT_SYMBOL vmlinux 0x04ead85a bio_copy_data -EXPORT_SYMBOL vmlinux 0x04f2089d configfs_depend_item +EXPORT_SYMBOL vmlinux 0x04e8d7cd blk_mq_requeue_request +EXPORT_SYMBOL vmlinux 0x04ea1289 inet_frags_fini +EXPORT_SYMBOL vmlinux 0x04ea9d5e pps_register_source +EXPORT_SYMBOL vmlinux 0x04eb0d94 neigh_for_each +EXPORT_SYMBOL vmlinux 0x04f36448 i2c_smbus_write_byte_data +EXPORT_SYMBOL vmlinux 0x04f411ff get_fs_type EXPORT_SYMBOL vmlinux 0x04fd85b4 set_security_override -EXPORT_SYMBOL vmlinux 0x0501e078 rpmh_write_async EXPORT_SYMBOL vmlinux 0x0508088e ucs2_strnlen EXPORT_SYMBOL vmlinux 0x050877b9 dmi_first_match -EXPORT_SYMBOL vmlinux 0x050fc4a2 gnet_stats_copy_app -EXPORT_SYMBOL vmlinux 0x0511f9fc d_alloc_parallel -EXPORT_SYMBOL vmlinux 0x05170ec1 xfrm_policy_walk_done -EXPORT_SYMBOL vmlinux 0x051a1bad gnet_stats_finish_copy +EXPORT_SYMBOL vmlinux 0x05091813 nand_read_page_raw EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch -EXPORT_SYMBOL vmlinux 0x0531f5d2 sk_stream_wait_close -EXPORT_SYMBOL vmlinux 0x053bc6eb __traceiter_spi_transfer_stop +EXPORT_SYMBOL vmlinux 0x05347a09 dev_get_stats +EXPORT_SYMBOL vmlinux 0x0537118f of_find_property EXPORT_SYMBOL vmlinux 0x054496b4 schedule_timeout_interruptible -EXPORT_SYMBOL vmlinux 0x057905c7 tcp_parse_options -EXPORT_SYMBOL vmlinux 0x05923ce8 scsi_mode_sense -EXPORT_SYMBOL vmlinux 0x059a563f nf_log_bind_pf -EXPORT_SYMBOL vmlinux 0x05aec628 sdev_prefix_printk -EXPORT_SYMBOL vmlinux 0x05aecfea fb_pan_display +EXPORT_SYMBOL vmlinux 0x054adfd9 register_quota_format +EXPORT_SYMBOL vmlinux 0x055240d9 trace_event_printf +EXPORT_SYMBOL vmlinux 0x0554373a __skb_free_datagram_locked +EXPORT_SYMBOL vmlinux 0x0569638a contig_page_data +EXPORT_SYMBOL vmlinux 0x058a3538 fib6_info_hw_flags_set +EXPORT_SYMBOL vmlinux 0x058f63d9 dentry_path_raw EXPORT_SYMBOL vmlinux 0x05b0caa0 hdmi_vendor_infoframe_pack -EXPORT_SYMBOL vmlinux 0x05cbb20a wait_on_page_private_2_killable +EXPORT_SYMBOL vmlinux 0x05bc862a rt6_lookup +EXPORT_SYMBOL vmlinux 0x05ca03f5 freeze_bdev EXPORT_SYMBOL vmlinux 0x05cd617e gen_pool_dma_alloc +EXPORT_SYMBOL vmlinux 0x05d11619 tty_port_put +EXPORT_SYMBOL vmlinux 0x05dc05dc crypto_sha256_update EXPORT_SYMBOL vmlinux 0x05e13eb9 ZSTD_initDDict -EXPORT_SYMBOL vmlinux 0x06028024 phy_ethtool_ksettings_get +EXPORT_SYMBOL vmlinux 0x05e3f12c filemap_map_pages +EXPORT_SYMBOL vmlinux 0x05ebb722 md_bitmap_cond_end_sync +EXPORT_SYMBOL vmlinux 0x05f138c6 secpath_set EXPORT_SYMBOL vmlinux 0x061651be strcat -EXPORT_SYMBOL vmlinux 0x06171e18 devfreq_monitor_resume -EXPORT_SYMBOL vmlinux 0x061fee9d pci_bus_assign_resources +EXPORT_SYMBOL vmlinux 0x062b9edf page_pool_destroy EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user -EXPORT_SYMBOL vmlinux 0x0638d89a copy_page_to_iter -EXPORT_SYMBOL vmlinux 0x0639e071 input_flush_device -EXPORT_SYMBOL vmlinux 0x063e43f5 write_inode_now -EXPORT_SYMBOL vmlinux 0x0655622c nd_btt_version +EXPORT_SYMBOL vmlinux 0x064dc8db truncate_pagecache EXPORT_SYMBOL vmlinux 0x0668b595 _kstrtoul EXPORT_SYMBOL vmlinux 0x06724b38 ZSTD_getFrameParams -EXPORT_SYMBOL vmlinux 0x0676ea18 empty_aops -EXPORT_SYMBOL vmlinux 0x0690603d _copy_from_iter_nocache -EXPORT_SYMBOL vmlinux 0x0692e3b6 page_pool_alloc_frag -EXPORT_SYMBOL vmlinux 0x06b3ea54 pcie_set_mps -EXPORT_SYMBOL vmlinux 0x06b4f728 skb_copy_header -EXPORT_SYMBOL vmlinux 0x06b85f98 page_zero_new_buffers +EXPORT_SYMBOL vmlinux 0x069b34fc mmc_remove_host +EXPORT_SYMBOL vmlinux 0x06a08b42 ipmi_platform_add +EXPORT_SYMBOL vmlinux 0x06a7411e tty_hung_up_p +EXPORT_SYMBOL vmlinux 0x06ae847e copy_page_to_iter EXPORT_SYMBOL vmlinux 0x06c8f2de slhc_compress -EXPORT_SYMBOL vmlinux 0x06d000be dma_unmap_resource -EXPORT_SYMBOL vmlinux 0x06e8158c __pskb_copy_fclone -EXPORT_SYMBOL vmlinux 0x06f1e23c skb_vlan_untag -EXPORT_SYMBOL vmlinux 0x06f40f8b vc_resize -EXPORT_SYMBOL vmlinux 0x06f6b9c2 __traceiter_spi_transfer_start -EXPORT_SYMBOL vmlinux 0x06fbd79b bio_reset -EXPORT_SYMBOL vmlinux 0x07015754 sock_alloc_send_pskb -EXPORT_SYMBOL vmlinux 0x070d88e7 handle_edge_irq +EXPORT_SYMBOL vmlinux 0x06d1ad30 pcim_iomap_table +EXPORT_SYMBOL vmlinux 0x06ed9ef7 kthread_create_worker_on_cpu +EXPORT_SYMBOL vmlinux 0x06f886e4 nd_device_register +EXPORT_SYMBOL vmlinux 0x070f67b3 phy_register_fixup_for_uid +EXPORT_SYMBOL vmlinux 0x07119a00 qdisc_hash_del EXPORT_SYMBOL vmlinux 0x071809e5 __xa_alloc_cyclic -EXPORT_SYMBOL vmlinux 0x071ebfed skb_checksum_setup +EXPORT_SYMBOL vmlinux 0x07182208 mmc_hw_reset +EXPORT_SYMBOL vmlinux 0x0725aea6 __skb_checksum_complete EXPORT_SYMBOL vmlinux 0x072f901c vme_master_rmw -EXPORT_SYMBOL vmlinux 0x074bd639 clean_bdev_aliases +EXPORT_SYMBOL vmlinux 0x073f6d04 blk_mq_start_hw_queue EXPORT_SYMBOL vmlinux 0x075a2c33 ZSTD_decompressBegin_usingDict +EXPORT_SYMBOL vmlinux 0x0763af45 pci_disable_link_state_locked +EXPORT_SYMBOL vmlinux 0x07734cde blkdev_get_by_path +EXPORT_SYMBOL vmlinux 0x0773824c iw_handler_set_spy +EXPORT_SYMBOL vmlinux 0x0775034a xfrm_dst_ifdown EXPORT_SYMBOL vmlinux 0x077af67c init_opal_dev -EXPORT_SYMBOL vmlinux 0x0782157c blk_rq_map_user -EXPORT_SYMBOL vmlinux 0x0791c9e3 __cgroup_bpf_run_filter_sk +EXPORT_SYMBOL vmlinux 0x077c2fad iov_iter_revert +EXPORT_SYMBOL vmlinux 0x078d98cf blk_cleanup_queue +EXPORT_SYMBOL vmlinux 0x07976e77 neigh_direct_output EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap -EXPORT_SYMBOL vmlinux 0x07b7665e eth_header_cache_update -EXPORT_SYMBOL vmlinux 0x07bd261e neigh_seq_start +EXPORT_SYMBOL vmlinux 0x07bdb687 clear_inode EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit -EXPORT_SYMBOL vmlinux 0x07d7cb17 inet6_getname EXPORT_SYMBOL vmlinux 0x07e2c085 radix_tree_tagged -EXPORT_SYMBOL vmlinux 0x07e88fa5 seg6_hmac_net_exit EXPORT_SYMBOL vmlinux 0x07f57478 pci_unmap_iospace EXPORT_SYMBOL vmlinux 0x0800473f __cond_resched -EXPORT_SYMBOL vmlinux 0x08047a5b configfs_register_subsystem EXPORT_SYMBOL vmlinux 0x0805f2c8 ecryptfs_get_auth_tok_key +EXPORT_SYMBOL vmlinux 0x08072d30 generic_file_fsync EXPORT_SYMBOL vmlinux 0x08249512 iwe_stream_add_point EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses -EXPORT_SYMBOL vmlinux 0x082e47af dst_destroy EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister -EXPORT_SYMBOL vmlinux 0x084a1aa0 inet6_release -EXPORT_SYMBOL vmlinux 0x0850805e get_cached_acl -EXPORT_SYMBOL vmlinux 0x085182ab netdev_change_features -EXPORT_SYMBOL vmlinux 0x08608cdb xp_can_alloc -EXPORT_SYMBOL vmlinux 0x08622049 tty_port_destroy +EXPORT_SYMBOL vmlinux 0x08673a69 msm_pinctrl_remove EXPORT_SYMBOL vmlinux 0x0882a449 security_xfrm_policy_alloc -EXPORT_SYMBOL vmlinux 0x08847cc8 inet_release -EXPORT_SYMBOL vmlinux 0x088a8ae7 ppp_output_wakeup -EXPORT_SYMBOL vmlinux 0x088bdc29 nand_create_bbt -EXPORT_SYMBOL vmlinux 0x0897d477 t10_pi_type1_ip -EXPORT_SYMBOL vmlinux 0x089c0cf2 fuse_dequeue_forget -EXPORT_SYMBOL vmlinux 0x08ade9a8 napi_schedule_prep -EXPORT_SYMBOL vmlinux 0x08b0db08 input_mt_sync_frame +EXPORT_SYMBOL vmlinux 0x088ce569 ip_mc_join_group +EXPORT_SYMBOL vmlinux 0x08973a92 __traceiter_mmap_lock_start_locking +EXPORT_SYMBOL vmlinux 0x08b6717f bd_abort_claiming EXPORT_SYMBOL vmlinux 0x08c4fd32 omap_disable_dma_irq -EXPORT_SYMBOL vmlinux 0x08cd467a netdev_crit EXPORT_SYMBOL vmlinux 0x08d66d4b _raw_write_lock_irqsave +EXPORT_SYMBOL vmlinux 0x08e38589 find_inode_nowait EXPORT_SYMBOL vmlinux 0x08e39398 cmd_db_read_addr -EXPORT_SYMBOL vmlinux 0x08f660da snd_dma_alloc_pages -EXPORT_SYMBOL vmlinux 0x0910337b neigh_for_each -EXPORT_SYMBOL vmlinux 0x0913422e watchdog_register_governor -EXPORT_SYMBOL vmlinux 0x0915ad33 fwnode_graph_parse_endpoint -EXPORT_SYMBOL vmlinux 0x091e0fee of_device_get_match_data -EXPORT_SYMBOL vmlinux 0x0925459b __tty_alloc_driver -EXPORT_SYMBOL vmlinux 0x092b5bd8 truncate_inode_pages -EXPORT_SYMBOL vmlinux 0x09433e6a scsi_unblock_requests -EXPORT_SYMBOL vmlinux 0x09513404 __fib6_flush_trees -EXPORT_SYMBOL vmlinux 0x095590a5 tcp_splice_read -EXPORT_SYMBOL vmlinux 0x095e250a udp_lib_rehash -EXPORT_SYMBOL vmlinux 0x09640eb2 iw_handler_set_spy -EXPORT_SYMBOL vmlinux 0x0974a17a ww_mutex_lock -EXPORT_SYMBOL vmlinux 0x09762831 devm_mfd_add_devices +EXPORT_SYMBOL vmlinux 0x08ea7dc1 dev_mc_add +EXPORT_SYMBOL vmlinux 0x0905b256 __inc_node_page_state +EXPORT_SYMBOL vmlinux 0x091240df i2c_smbus_read_i2c_block_data_or_emulated +EXPORT_SYMBOL vmlinux 0x0934abbb inet_put_port +EXPORT_SYMBOL vmlinux 0x094030c0 pci_enable_device +EXPORT_SYMBOL vmlinux 0x0948452c tty_unregister_ldisc +EXPORT_SYMBOL vmlinux 0x09669a8f mipi_dsi_dcs_read +EXPORT_SYMBOL vmlinux 0x09720996 param_get_uint EXPORT_SYMBOL vmlinux 0x09769037 dmt_modes -EXPORT_SYMBOL vmlinux 0x097ec859 ptp_clock_unregister -EXPORT_SYMBOL vmlinux 0x0986fe55 __kmap_to_page +EXPORT_SYMBOL vmlinux 0x0980f62b security_sock_graft +EXPORT_SYMBOL vmlinux 0x098237d6 ipv6_chk_prefix +EXPORT_SYMBOL vmlinux 0x0989a30f vfs_clone_file_range EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap -EXPORT_SYMBOL vmlinux 0x09921c71 __sock_cmsg_send -EXPORT_SYMBOL vmlinux 0x09a3ffc6 nf_ip6_checksum EXPORT_SYMBOL vmlinux 0x09b152e2 call_usermodehelper_setup -EXPORT_SYMBOL vmlinux 0x09b5cb13 netlbl_calipso_ops_register +EXPORT_SYMBOL vmlinux 0x09ba6c01 scsi_scan_target EXPORT_SYMBOL vmlinux 0x09bf0c56 simple_map_init +EXPORT_SYMBOL vmlinux 0x09c2bd34 sock_edemux +EXPORT_SYMBOL vmlinux 0x09caa6f5 proto_unregister EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions -EXPORT_SYMBOL vmlinux 0x09d91db1 of_find_mipi_dsi_device_by_node -EXPORT_SYMBOL vmlinux 0x09e4825d get_ipc_ns_exported -EXPORT_SYMBOL vmlinux 0x09e6a75d mdiobus_unregister -EXPORT_SYMBOL vmlinux 0x0a07a7bd bdi_alloc -EXPORT_SYMBOL vmlinux 0x0a0cc55a mmc_gpio_set_cd_isr -EXPORT_SYMBOL vmlinux 0x0a185205 ethtool_notify +EXPORT_SYMBOL vmlinux 0x09e62aed pagevec_lookup_range +EXPORT_SYMBOL vmlinux 0x09fa9f0f get_user_pages_locked +EXPORT_SYMBOL vmlinux 0x09ff9e43 flow_rule_match_icmp +EXPORT_SYMBOL vmlinux 0x0a004a0a skb_flow_dissect_hash +EXPORT_SYMBOL vmlinux 0x0a0fc83f sock_no_sendpage +EXPORT_SYMBOL vmlinux 0x0a11cec9 set_create_files_as +EXPORT_SYMBOL vmlinux 0x0a174ac7 register_filesystem EXPORT_SYMBOL vmlinux 0x0a20d621 ZSTD_decompressBegin +EXPORT_SYMBOL vmlinux 0x0a22e71d in6_dev_finish_destroy EXPORT_SYMBOL vmlinux 0x0a3131f6 strnchr -EXPORT_SYMBOL vmlinux 0x0a4274ee sk_common_release -EXPORT_SYMBOL vmlinux 0x0a431dae has_capability -EXPORT_SYMBOL vmlinux 0x0a46cb33 __traceiter_module_get -EXPORT_SYMBOL vmlinux 0x0a54751b vme_bus_error_handler -EXPORT_SYMBOL vmlinux 0x0a58a4f7 key_validate -EXPORT_SYMBOL vmlinux 0x0a5ca9a4 tty_driver_flush_buffer -EXPORT_SYMBOL vmlinux 0x0a62c5de pldmfw_flash_image +EXPORT_SYMBOL vmlinux 0x0a35fe09 snd_info_free_entry +EXPORT_SYMBOL vmlinux 0x0a47f2a6 vlan_vids_del_by_dev +EXPORT_SYMBOL vmlinux 0x0a7703ed devm_nvmem_unregister +EXPORT_SYMBOL vmlinux 0x0a823be8 put_disk EXPORT_SYMBOL vmlinux 0x0a96b96a kstrtouint_from_user +EXPORT_SYMBOL vmlinux 0x0a9bb928 nf_reinject EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq -EXPORT_SYMBOL vmlinux 0x0aa8da25 mipi_dsi_dcs_exit_sleep_mode EXPORT_SYMBOL vmlinux 0x0aaccc92 pci_remap_iospace -EXPORT_SYMBOL vmlinux 0x0ab4bf58 jbd2__journal_restart -EXPORT_SYMBOL vmlinux 0x0acb64cc scsi_set_medium_removal EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all -EXPORT_SYMBOL vmlinux 0x0ad0995c eth_prepare_mac_addr_change -EXPORT_SYMBOL vmlinux 0x0ad15a44 blk_queue_logical_block_size -EXPORT_SYMBOL vmlinux 0x0ad38c54 ip_fraglist_prepare +EXPORT_SYMBOL vmlinux 0x0ad2d541 jbd2_journal_lock_updates +EXPORT_SYMBOL vmlinux 0x0add9e2c genphy_read_mmd_unsupported EXPORT_SYMBOL vmlinux 0x0ae547ed xxh64_update -EXPORT_SYMBOL vmlinux 0x0ae56718 bio_integrity_add_page -EXPORT_SYMBOL vmlinux 0x0aeb5139 jbd2__journal_start -EXPORT_SYMBOL vmlinux 0x0aedc83d xp_dma_map -EXPORT_SYMBOL vmlinux 0x0afcc59f tcf_em_tree_destroy -EXPORT_SYMBOL vmlinux 0x0b0c29dc of_find_device_by_node +EXPORT_SYMBOL vmlinux 0x0af3b22e PageMovable +EXPORT_SYMBOL vmlinux 0x0b0ecd76 md_bitmap_close_sync +EXPORT_SYMBOL vmlinux 0x0b16fcc5 __scsi_iterate_devices EXPORT_SYMBOL vmlinux 0x0b1b939e kmemdup EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user -EXPORT_SYMBOL vmlinux 0x0b2ddaac icmpv6_ndo_send -EXPORT_SYMBOL vmlinux 0x0b395444 can_nice -EXPORT_SYMBOL vmlinux 0x0b47378f locks_copy_conflock +EXPORT_SYMBOL vmlinux 0x0b40b81e vmf_insert_pfn +EXPORT_SYMBOL vmlinux 0x0b422a18 peernet2id EXPORT_SYMBOL vmlinux 0x0b48677a __kfifo_init +EXPORT_SYMBOL vmlinux 0x0b49a5d4 __sk_mem_reclaim +EXPORT_SYMBOL vmlinux 0x0b54d099 dquot_load_quota_inode EXPORT_SYMBOL vmlinux 0x0b617520 dma_fence_default_wait EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol -EXPORT_SYMBOL vmlinux 0x0b7d69cb vfs_get_tree -EXPORT_SYMBOL vmlinux 0x0b82f26a dquot_quota_on -EXPORT_SYMBOL vmlinux 0x0b9d6b61 fwnode_get_phy_id +EXPORT_SYMBOL vmlinux 0x0b7f49bd __scm_destroy +EXPORT_SYMBOL vmlinux 0x0b9cdcba snd_dma_buffer_mmap EXPORT_SYMBOL vmlinux 0x0ba0b938 vm_brk -EXPORT_SYMBOL vmlinux 0x0ba687b7 ipv6_chk_prefix -EXPORT_SYMBOL vmlinux 0x0ba93a41 tty_register_driver -EXPORT_SYMBOL vmlinux 0x0ba94cea nand_ecc_sw_hamming_cleanup_ctx -EXPORT_SYMBOL vmlinux 0x0bb58371 __f_setown EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type +EXPORT_SYMBOL vmlinux 0x0bca5d47 capable_wrt_inode_uidgid +EXPORT_SYMBOL vmlinux 0x0be3fd18 dst_cow_metrics_generic +EXPORT_SYMBOL vmlinux 0x0be5f80b scsi_register_driver +EXPORT_SYMBOL vmlinux 0x0beebe4a arp_tbl EXPORT_SYMBOL vmlinux 0x0bf0e4a2 __SCK__tp_func_spi_transfer_stop -EXPORT_SYMBOL vmlinux 0x0c0656cb nexthop_res_grp_activity_update -EXPORT_SYMBOL vmlinux 0x0c07d79d blk_mq_init_allocated_queue -EXPORT_SYMBOL vmlinux 0x0c0e5fb4 rtnl_configure_link -EXPORT_SYMBOL vmlinux 0x0c113276 skb_mac_gso_segment +EXPORT_SYMBOL vmlinux 0x0c190c65 blk_queue_logical_block_size +EXPORT_SYMBOL vmlinux 0x0c1ce9fe snd_timer_instance_free EXPORT_SYMBOL vmlinux 0x0c25ec48 secure_tcpv6_seq +EXPORT_SYMBOL vmlinux 0x0c2d3231 netif_set_real_num_rx_queues +EXPORT_SYMBOL vmlinux 0x0c3fc2ba km_policy_expired +EXPORT_SYMBOL vmlinux 0x0c714faf phy_start_cable_test EXPORT_SYMBOL vmlinux 0x0ca54fee _test_and_set_bit -EXPORT_SYMBOL vmlinux 0x0ca7e1f7 security_dentry_create_files_as +EXPORT_SYMBOL vmlinux 0x0cad22ea __netdev_alloc_skb EXPORT_SYMBOL vmlinux 0x0cb11bc7 __SCK__tp_func_dma_fence_enable_signal -EXPORT_SYMBOL vmlinux 0x0cbd04ab seg6_hmac_info_del -EXPORT_SYMBOL vmlinux 0x0cc2891c seq_open +EXPORT_SYMBOL vmlinux 0x0ccdf970 mfd_cell_disable +EXPORT_SYMBOL vmlinux 0x0cd36961 snd_pcm_open_substream EXPORT_SYMBOL vmlinux 0x0cdce87c rfkill_set_hw_state_reason -EXPORT_SYMBOL vmlinux 0x0ce0a780 mmc_can_secure_erase_trim EXPORT_SYMBOL vmlinux 0x0ce19729 mb_cache_entry_touch -EXPORT_SYMBOL vmlinux 0x0cf59f47 __pci_register_driver -EXPORT_SYMBOL vmlinux 0x0d016e7d nd_region_to_nstype +EXPORT_SYMBOL vmlinux 0x0ce5c494 fscrypt_decrypt_block_inplace +EXPORT_SYMBOL vmlinux 0x0d0114c0 snd_mixer_oss_notify_callback EXPORT_SYMBOL vmlinux 0x0d07f543 get_anon_bdev +EXPORT_SYMBOL vmlinux 0x0d1634fb register_key_type +EXPORT_SYMBOL vmlinux 0x0d19ba75 security_old_inode_init_security EXPORT_SYMBOL vmlinux 0x0d1b54c1 _raw_write_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0x0d206834 eth_mac_addr +EXPORT_SYMBOL vmlinux 0x0d231315 mdiobus_unregister_device +EXPORT_SYMBOL vmlinux 0x0d26b542 phy_get_pause EXPORT_SYMBOL vmlinux 0x0d2ca20f ucc_fast_get_qe_cr_subblock -EXPORT_SYMBOL vmlinux 0x0d374de2 of_mdio_find_bus +EXPORT_SYMBOL vmlinux 0x0d314d90 kmem_cache_size EXPORT_SYMBOL vmlinux 0x0d3f57a2 _find_next_bit_le +EXPORT_SYMBOL vmlinux 0x0d48561f devm_iounmap EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type -EXPORT_SYMBOL vmlinux 0x0d5ecfcf dst_cow_metrics_generic +EXPORT_SYMBOL vmlinux 0x0d5ab8e4 __brelse EXPORT_SYMBOL vmlinux 0x0d61eeee __bitmap_subset -EXPORT_SYMBOL vmlinux 0x0d6a1531 pci_choose_state -EXPORT_SYMBOL vmlinux 0x0d801ccc tcf_exts_num_actions -EXPORT_SYMBOL vmlinux 0x0d928d52 snd_card_disconnect -EXPORT_SYMBOL vmlinux 0x0d9b5754 dcb_ieee_setapp -EXPORT_SYMBOL vmlinux 0x0da2334e qdisc_put -EXPORT_SYMBOL vmlinux 0x0da88c32 rproc_boot -EXPORT_SYMBOL vmlinux 0x0da9b11a __dquot_transfer -EXPORT_SYMBOL vmlinux 0x0daf1c8f devm_request_any_context_irq +EXPORT_SYMBOL vmlinux 0x0d653a25 jbd2_journal_get_undo_access +EXPORT_SYMBOL vmlinux 0x0d8ed4fe of_lpddr3_get_ddr_timings EXPORT_SYMBOL vmlinux 0x0dba5e9a radix_tree_delete EXPORT_SYMBOL vmlinux 0x0dc1a78c bin2hex -EXPORT_SYMBOL vmlinux 0x0dc30c14 genphy_resume -EXPORT_SYMBOL vmlinux 0x0dc6547b snd_pcm_kernel_ioctl -EXPORT_SYMBOL vmlinux 0x0dcfa686 cfb_fillrect -EXPORT_SYMBOL vmlinux 0x0dd25f12 snd_ctl_new1 -EXPORT_SYMBOL vmlinux 0x0de8c1a7 user_path_create -EXPORT_SYMBOL vmlinux 0x0dfc0da7 fwnode_irq_get -EXPORT_SYMBOL vmlinux 0x0e07e146 i2c_smbus_read_i2c_block_data_or_emulated -EXPORT_SYMBOL vmlinux 0x0e0c4bca udplite_prot -EXPORT_SYMBOL vmlinux 0x0e153a19 max8998_read_reg +EXPORT_SYMBOL vmlinux 0x0dc1e917 inet_frag_pull_head +EXPORT_SYMBOL vmlinux 0x0dc5856a xfrm_policy_walk +EXPORT_SYMBOL vmlinux 0x0df16347 unregister_md_personality +EXPORT_SYMBOL vmlinux 0x0e03a94f phy_ethtool_ksettings_set EXPORT_SYMBOL vmlinux 0x0e17678a siphash_4u64 EXPORT_SYMBOL vmlinux 0x0e1c8804 dma_fence_chain_find_seqno -EXPORT_SYMBOL vmlinux 0x0e304212 current_time -EXPORT_SYMBOL vmlinux 0x0e50ea58 security_d_instantiate -EXPORT_SYMBOL vmlinux 0x0e52e3a1 default_qdisc_ops -EXPORT_SYMBOL vmlinux 0x0e6a780b put_ipc_ns -EXPORT_SYMBOL vmlinux 0x0e7d4387 inet_get_local_port_range -EXPORT_SYMBOL vmlinux 0x0e7fb644 ptp_clock_register -EXPORT_SYMBOL vmlinux 0x0e899d86 starget_for_each_device -EXPORT_SYMBOL vmlinux 0x0e99c673 tty_chars_in_buffer +EXPORT_SYMBOL vmlinux 0x0e220ddd blk_rq_map_user_iov +EXPORT_SYMBOL vmlinux 0x0e3b4f12 gnet_stats_copy_basic_hw +EXPORT_SYMBOL vmlinux 0x0e6ede5e snd_pcm_release_substream +EXPORT_SYMBOL vmlinux 0x0e7a3fbc page_pool_put_page_bulk +EXPORT_SYMBOL vmlinux 0x0e8c2d07 __breadahead_gfp EXPORT_SYMBOL vmlinux 0x0ea3c74e tasklet_kill +EXPORT_SYMBOL vmlinux 0x0ea40f5f jbd2_journal_start_commit EXPORT_SYMBOL vmlinux 0x0ea593f6 hdmi_drm_infoframe_init +EXPORT_SYMBOL vmlinux 0x0eafbe15 unregister_netdev EXPORT_SYMBOL vmlinux 0x0eb6eb87 add_taint +EXPORT_SYMBOL vmlinux 0x0ebc2c8f phy_disconnect +EXPORT_SYMBOL vmlinux 0x0ec55c55 tty_port_destroy EXPORT_SYMBOL vmlinux 0x0ec5babe vme_dma_free -EXPORT_SYMBOL vmlinux 0x0ec9844f flow_rule_match_enc_opts +EXPORT_SYMBOL vmlinux 0x0ec92064 fs_param_is_s32 +EXPORT_SYMBOL vmlinux 0x0ed14310 of_parse_phandle +EXPORT_SYMBOL vmlinux 0x0ee8b487 gnet_stats_copy_app EXPORT_SYMBOL vmlinux 0x0eea0399 strscpy -EXPORT_SYMBOL vmlinux 0x0eea3eb7 ptp_find_pin_unlocked -EXPORT_SYMBOL vmlinux 0x0ef1f432 __mmap_lock_do_trace_acquire_returned +EXPORT_SYMBOL vmlinux 0x0ef2bd79 jbd2_journal_start_reserved +EXPORT_SYMBOL vmlinux 0x0ef42e53 devm_of_mdiobus_register +EXPORT_SYMBOL vmlinux 0x0ef559bf d_alloc_name EXPORT_SYMBOL vmlinux 0x0f09cc34 schedule_timeout_killable -EXPORT_SYMBOL vmlinux 0x0f0df405 phy_start_cable_test_tdr -EXPORT_SYMBOL vmlinux 0x0f4bd366 lookup_one -EXPORT_SYMBOL vmlinux 0x0f634050 crypto_sha256_update -EXPORT_SYMBOL vmlinux 0x0f657f55 __sk_backlog_rcv -EXPORT_SYMBOL vmlinux 0x0f82ad80 mfd_cell_enable +EXPORT_SYMBOL vmlinux 0x0f25f841 input_close_device +EXPORT_SYMBOL vmlinux 0x0f263573 pci_remove_bus +EXPORT_SYMBOL vmlinux 0x0f2fb045 ipv4_specific +EXPORT_SYMBOL vmlinux 0x0f35f862 seg6_hmac_net_exit +EXPORT_SYMBOL vmlinux 0x0f461650 pci_stop_and_remove_bus_device +EXPORT_SYMBOL vmlinux 0x0f492f36 ip_options_rcv_srr +EXPORT_SYMBOL vmlinux 0x0f4ab730 __dynamic_dev_dbg +EXPORT_SYMBOL vmlinux 0x0f5a3f42 fddi_type_trans +EXPORT_SYMBOL vmlinux 0x0f5aba35 dquot_initialize +EXPORT_SYMBOL vmlinux 0x0f5eb350 mpage_readpage +EXPORT_SYMBOL vmlinux 0x0f7b7693 devfreq_monitor_suspend EXPORT_SYMBOL vmlinux 0x0f86f560 kthread_delayed_work_timer_fn -EXPORT_SYMBOL vmlinux 0x0f939aa1 snd_ctl_rename_id -EXPORT_SYMBOL vmlinux 0x0f9d8512 of_graph_get_endpoint_count -EXPORT_SYMBOL vmlinux 0x0fafa5d2 seg6_hmac_validate_skb +EXPORT_SYMBOL vmlinux 0x0f959637 seq_put_decimal_ull +EXPORT_SYMBOL vmlinux 0x0fa10684 vme_unregister_driver +EXPORT_SYMBOL vmlinux 0x0faa42e4 tcf_em_unregister EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 -EXPORT_SYMBOL vmlinux 0x0fccc334 ptp_schedule_worker +EXPORT_SYMBOL vmlinux 0x0fb462e4 skb_copy_and_csum_dev +EXPORT_SYMBOL vmlinux 0x0fbd35d7 page_pool_return_skb_page +EXPORT_SYMBOL vmlinux 0x0fc57ebe inc_nlink EXPORT_SYMBOL vmlinux 0x0fd0f592 mutex_trylock EXPORT_SYMBOL vmlinux 0x0fd902db mb_cache_entry_create -EXPORT_SYMBOL vmlinux 0x0fe5f4b5 nf_reinject -EXPORT_SYMBOL vmlinux 0x0fe9d47c dcbnl_cee_notify -EXPORT_SYMBOL vmlinux 0x0fea04a2 __skb_recv_udp +EXPORT_SYMBOL vmlinux 0x0fec38d2 dev_alloc_name EXPORT_SYMBOL vmlinux 0x0ff178f6 __aeabi_idivmod EXPORT_SYMBOL vmlinux 0x0fff5afc time64_to_tm EXPORT_SYMBOL vmlinux 0x10018cb0 __pv_offset -EXPORT_SYMBOL vmlinux 0x100a0786 devm_extcon_register_notifier_all -EXPORT_SYMBOL vmlinux 0x100afe37 _dev_notice -EXPORT_SYMBOL vmlinux 0x1011b5da mipi_dsi_dcs_set_pixel_format -EXPORT_SYMBOL vmlinux 0x101dc4ec of_graph_get_remote_port_parent -EXPORT_SYMBOL vmlinux 0x102060c9 of_match_device +EXPORT_SYMBOL vmlinux 0x100ceabd super_setup_bdi +EXPORT_SYMBOL vmlinux 0x100f39e0 netdev_port_same_parent_id +EXPORT_SYMBOL vmlinux 0x1012493b netif_napi_add EXPORT_SYMBOL vmlinux 0x1025009a cpm_muram_alloc_fixed EXPORT_SYMBOL vmlinux 0x102936ec qe_clock_source EXPORT_SYMBOL vmlinux 0x1035c7c2 __release_region -EXPORT_SYMBOL vmlinux 0x103cfdc4 snd_pcm_hw_rule_add -EXPORT_SYMBOL vmlinux 0x10595b3d cdev_init +EXPORT_SYMBOL vmlinux 0x105556ed blk_queue_update_dma_alignment EXPORT_SYMBOL vmlinux 0x1068004b gf128mul_bbe -EXPORT_SYMBOL vmlinux 0x106c7145 devm_pci_remap_cfgspace EXPORT_SYMBOL vmlinux 0x106f13ab crc_t10dif_generic -EXPORT_SYMBOL vmlinux 0x1071633c prepare_kernel_cred EXPORT_SYMBOL vmlinux 0x10739f1e swake_up_locked EXPORT_SYMBOL vmlinux 0x107addb9 __do_once_done EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd -EXPORT_SYMBOL vmlinux 0x108de4a6 md_bitmap_sync_with_cluster -EXPORT_SYMBOL vmlinux 0x1091b2a6 trace_raw_output_prep -EXPORT_SYMBOL vmlinux 0x10969b93 pci_get_subsys +EXPORT_SYMBOL vmlinux 0x108e7e3b serial8250_register_8250_port +EXPORT_SYMBOL vmlinux 0x10951231 backlight_device_unregister +EXPORT_SYMBOL vmlinux 0x10a06076 generic_file_direct_write +EXPORT_SYMBOL vmlinux 0x10a37a00 make_kuid EXPORT_SYMBOL vmlinux 0x10c3f57e __gnet_stats_copy_queue EXPORT_SYMBOL vmlinux 0x10c67b41 security_cred_getsecid EXPORT_SYMBOL vmlinux 0x10d9f885 scsi_sense_desc_find EXPORT_SYMBOL vmlinux 0x10e6f74a free_contig_range -EXPORT_SYMBOL vmlinux 0x10edd3ac mark_buffer_write_io_error -EXPORT_SYMBOL vmlinux 0x110354df lookup_one_len_unlocked EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype -EXPORT_SYMBOL vmlinux 0x11186174 xfrm_spd_getinfo -EXPORT_SYMBOL vmlinux 0x11197438 dma_sync_sg_for_cpu -EXPORT_SYMBOL vmlinux 0x11395bae devm_kvasprintf +EXPORT_SYMBOL vmlinux 0x111dd077 __ClearPageMovable +EXPORT_SYMBOL vmlinux 0x1123486c param_set_bool +EXPORT_SYMBOL vmlinux 0x1127dd28 vfs_iter_write +EXPORT_SYMBOL vmlinux 0x1127e53a iov_iter_gap_alignment +EXPORT_SYMBOL vmlinux 0x11464c62 iov_iter_pipe +EXPORT_SYMBOL vmlinux 0x114bcefb dquot_quota_off +EXPORT_SYMBOL vmlinux 0x115451da __netif_napi_del EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init -EXPORT_SYMBOL vmlinux 0x117b0941 generic_update_time +EXPORT_SYMBOL vmlinux 0x117583b7 nvdimm_check_and_set_ro +EXPORT_SYMBOL vmlinux 0x1184dbf3 mdiobus_scan +EXPORT_SYMBOL vmlinux 0x11897c35 sock_no_linger EXPORT_SYMBOL vmlinux 0x119b50e7 elf_check_arch -EXPORT_SYMBOL vmlinux 0x11c15469 netdev_set_tc_queue -EXPORT_SYMBOL vmlinux 0x11d4ae42 vfs_iocb_iter_write +EXPORT_SYMBOL vmlinux 0x11a2a7d2 pin_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0x11d9ee4a flow_rule_match_ports EXPORT_SYMBOL vmlinux 0x11e0ec41 dm_read_arg EXPORT_SYMBOL vmlinux 0x11e30762 chacha_block_generic +EXPORT_SYMBOL vmlinux 0x11e987b8 __f_setown +EXPORT_SYMBOL vmlinux 0x11f45757 skb_vlan_push EXPORT_SYMBOL vmlinux 0x11f47d8c utf8_strncmp -EXPORT_SYMBOL vmlinux 0x11f7ed4c hex_to_bin +EXPORT_SYMBOL vmlinux 0x11f67f66 mipi_dsi_generic_write +EXPORT_SYMBOL vmlinux 0x11f8aab7 mtd_concat_create +EXPORT_SYMBOL vmlinux 0x11f963b2 request_partial_firmware_into_buf EXPORT_SYMBOL vmlinux 0x11fa2a50 cpumask_any_distribute -EXPORT_SYMBOL vmlinux 0x11fab96a iov_iter_xarray EXPORT_SYMBOL vmlinux 0x11ffdfee ucc_slow_stop_tx -EXPORT_SYMBOL vmlinux 0x120353be irq_domain_set_info -EXPORT_SYMBOL vmlinux 0x12056133 tcf_block_get -EXPORT_SYMBOL vmlinux 0x1206b69e tcf_chain_put_by_act EXPORT_SYMBOL vmlinux 0x120b336a __rb_insert_augmented -EXPORT_SYMBOL vmlinux 0x120fd85c mmc_wait_for_req_done EXPORT_SYMBOL vmlinux 0x1210fb32 _raw_read_lock_irqsave EXPORT_SYMBOL vmlinux 0x1222af7f security_binder_transfer_binder -EXPORT_SYMBOL vmlinux 0x122d602a ip_sock_set_freebind -EXPORT_SYMBOL vmlinux 0x123d80e6 inet_csk_complete_hashdance -EXPORT_SYMBOL vmlinux 0x123de851 vm_map_pages_zero -EXPORT_SYMBOL vmlinux 0x12450c9a xfrm_dev_state_flush +EXPORT_SYMBOL vmlinux 0x12287fd4 shmem_aops +EXPORT_SYMBOL vmlinux 0x123bbd4c inet_csk_delete_keepalive_timer EXPORT_SYMBOL vmlinux 0x124bad4d kstrtobool EXPORT_SYMBOL vmlinux 0x1251bb08 config_item_put -EXPORT_SYMBOL vmlinux 0x125790c4 timestamp_truncate -EXPORT_SYMBOL vmlinux 0x12605e24 ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0x12583958 crypto_sha512_finup +EXPORT_SYMBOL vmlinux 0x126b00e5 adjust_managed_page_count +EXPORT_SYMBOL vmlinux 0x127bb377 bio_init EXPORT_SYMBOL vmlinux 0x12827367 sg_copy_from_buffer -EXPORT_SYMBOL vmlinux 0x12bdb4e7 napi_gro_flush -EXPORT_SYMBOL vmlinux 0x12c02100 blk_sync_queue +EXPORT_SYMBOL vmlinux 0x12b3f271 dcb_ieee_delapp EXPORT_SYMBOL vmlinux 0x12cabc89 siphash_2u64 -EXPORT_SYMBOL vmlinux 0x12cbe347 __xfrm_state_delete -EXPORT_SYMBOL vmlinux 0x12cfd016 ps2_init +EXPORT_SYMBOL vmlinux 0x12e381e7 msm_pinctrl_probe +EXPORT_SYMBOL vmlinux 0x12e5b7e1 dump_align +EXPORT_SYMBOL vmlinux 0x12e75f64 neigh_app_ns +EXPORT_SYMBOL vmlinux 0x12eb59c8 mr_vif_seq_idx EXPORT_SYMBOL vmlinux 0x12f19edf __genradix_ptr_alloc -EXPORT_SYMBOL vmlinux 0x12f49b6c get_mem_cgroup_from_mm EXPORT_SYMBOL vmlinux 0x12f6f69c fb_videomode_to_var -EXPORT_SYMBOL vmlinux 0x12fdbd7b bio_integrity_prep -EXPORT_SYMBOL vmlinux 0x130ef922 __devm_request_region EXPORT_SYMBOL vmlinux 0x13110126 request_resource +EXPORT_SYMBOL vmlinux 0x1322b480 mmc_unregister_driver EXPORT_SYMBOL vmlinux 0x13243d4b wl1251_get_platform_data -EXPORT_SYMBOL vmlinux 0x1324726d page_get_link -EXPORT_SYMBOL vmlinux 0x132770ca security_binder_transfer_file -EXPORT_SYMBOL vmlinux 0x13427b40 rawv6_mh_filter_register +EXPORT_SYMBOL vmlinux 0x13272d4e mdiobus_register_device +EXPORT_SYMBOL vmlinux 0x1334378f seq_pad +EXPORT_SYMBOL vmlinux 0x1339dc6c udp_seq_start EXPORT_SYMBOL vmlinux 0x134cdd34 inet_frag_rbtree_purge +EXPORT_SYMBOL vmlinux 0x135ec783 vfs_get_tree +EXPORT_SYMBOL vmlinux 0x136ac53b mipi_dsi_shutdown_peripheral +EXPORT_SYMBOL vmlinux 0x136e3a9f pci_find_resource EXPORT_SYMBOL vmlinux 0x1378c6b7 __traceiter_kmalloc -EXPORT_SYMBOL vmlinux 0x1382df72 phy_remove_link_mode -EXPORT_SYMBOL vmlinux 0x13982516 param_ops_short -EXPORT_SYMBOL vmlinux 0x13a6c66c cfb_copyarea -EXPORT_SYMBOL vmlinux 0x13c1ddf3 input_mt_report_slot_state +EXPORT_SYMBOL vmlinux 0x137d20a8 inode_needs_sync +EXPORT_SYMBOL vmlinux 0x138ebc86 skb_copy_expand +EXPORT_SYMBOL vmlinux 0x13c0a651 ipv6_dev_mc_inc EXPORT_SYMBOL vmlinux 0x13cead77 __SCK__tp_func_kmem_cache_alloc_node EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out +EXPORT_SYMBOL vmlinux 0x13d7e89f snd_pcm_period_elapsed EXPORT_SYMBOL vmlinux 0x13d928f5 __SCK__tp_func_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x13e667f7 follow_up +EXPORT_SYMBOL vmlinux 0x13eaa75b elm_decode_bch_error_page +EXPORT_SYMBOL vmlinux 0x13eb0ec0 tcf_exts_destroy +EXPORT_SYMBOL vmlinux 0x13f37ea5 of_translate_address EXPORT_SYMBOL vmlinux 0x13f42152 system_entering_hibernation -EXPORT_SYMBOL vmlinux 0x13f449ed pci_find_next_bus -EXPORT_SYMBOL vmlinux 0x13f4d4bf i2c_smbus_read_byte_data -EXPORT_SYMBOL vmlinux 0x13f55d88 xfrm_policy_byid -EXPORT_SYMBOL vmlinux 0x14044a28 tc6393xb_lcd_set_power EXPORT_SYMBOL vmlinux 0x140cef8e cmxgcr_lock -EXPORT_SYMBOL vmlinux 0x141dadce security_tun_dev_attach -EXPORT_SYMBOL vmlinux 0x14258de4 dma_resv_add_excl_fence -EXPORT_SYMBOL vmlinux 0x14260327 inet_dgram_ops +EXPORT_SYMBOL vmlinux 0x142ed242 blk_queue_virt_boundary +EXPORT_SYMBOL vmlinux 0x142f6c72 xsk_get_pool_from_qid +EXPORT_SYMBOL vmlinux 0x14328ce5 __mmc_claim_host EXPORT_SYMBOL vmlinux 0x1435c5ce __SCK__tp_func_kmalloc_node -EXPORT_SYMBOL vmlinux 0x144ea1b0 skb_set_owner_w +EXPORT_SYMBOL vmlinux 0x144143f4 input_set_poll_interval +EXPORT_SYMBOL vmlinux 0x1443e5f4 bio_integrity_alloc EXPORT_SYMBOL vmlinux 0x1451e8e5 vm_zone_stat EXPORT_SYMBOL vmlinux 0x14605535 dma_fence_context_alloc EXPORT_SYMBOL vmlinux 0x146289b7 crc16_table -EXPORT_SYMBOL vmlinux 0x14681a9f del_gendisk -EXPORT_SYMBOL vmlinux 0x147e4599 sk_alloc -EXPORT_SYMBOL vmlinux 0x1483bd75 __mark_inode_dirty +EXPORT_SYMBOL vmlinux 0x1466df44 param_ops_ullong EXPORT_SYMBOL vmlinux 0x1486978a gen_pool_add_owner -EXPORT_SYMBOL vmlinux 0x1486c781 rawnand_sw_hamming_init -EXPORT_SYMBOL vmlinux 0x14a6c9a2 snd_pcm_hw_constraint_ratdens +EXPORT_SYMBOL vmlinux 0x1488ad91 mfd_cell_enable +EXPORT_SYMBOL vmlinux 0x148e1eba xfrm6_rcv_tnl +EXPORT_SYMBOL vmlinux 0x14ae0f42 crypto_sha1_finup +EXPORT_SYMBOL vmlinux 0x14c29751 ndisc_mc_map +EXPORT_SYMBOL vmlinux 0x14c8979d jbd2_journal_abort +EXPORT_SYMBOL vmlinux 0x14c8dcc1 passthru_features_check EXPORT_SYMBOL vmlinux 0x14d4a9c5 _change_bit -EXPORT_SYMBOL vmlinux 0x14f8d21d param_get_bool -EXPORT_SYMBOL vmlinux 0x14f9a895 seq_write -EXPORT_SYMBOL vmlinux 0x14f9df74 start_tty -EXPORT_SYMBOL vmlinux 0x151348e6 xfrm_sad_getinfo -EXPORT_SYMBOL vmlinux 0x151678eb pci_remove_bus -EXPORT_SYMBOL vmlinux 0x15195973 __blockdev_direct_IO +EXPORT_SYMBOL vmlinux 0x14ebcd2e nosteal_pipe_buf_ops +EXPORT_SYMBOL vmlinux 0x14eebd8c xfrm_register_km +EXPORT_SYMBOL vmlinux 0x14f7827f simple_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0x15067b7c snd_pcm_new_internal +EXPORT_SYMBOL vmlinux 0x151a3cdd __kfree_skb EXPORT_SYMBOL vmlinux 0x151f4898 schedule_timeout_uninterruptible EXPORT_SYMBOL vmlinux 0x1526b301 unix_tot_inflight -EXPORT_SYMBOL vmlinux 0x15438734 security_sctp_sk_clone -EXPORT_SYMBOL vmlinux 0x154c56f8 bio_copy_data_iter +EXPORT_SYMBOL vmlinux 0x153917bf pci_bus_type EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy -EXPORT_SYMBOL vmlinux 0x155b5d77 mmc_release_host -EXPORT_SYMBOL vmlinux 0x158d535d edac_mc_find -EXPORT_SYMBOL vmlinux 0x158efc8a phy_start -EXPORT_SYMBOL vmlinux 0x15900d23 truncate_setsize -EXPORT_SYMBOL vmlinux 0x15a29543 open_with_fake_path +EXPORT_SYMBOL vmlinux 0x156150d8 amba_device_unregister +EXPORT_SYMBOL vmlinux 0x1593e85c page_pool_alloc_frag +EXPORT_SYMBOL vmlinux 0x15aa7dcf dma_supported EXPORT_SYMBOL vmlinux 0x15bafe29 unregister_md_cluster_operations EXPORT_SYMBOL vmlinux 0x15bed7a5 LZ4_decompress_safe_partial EXPORT_SYMBOL vmlinux 0x15d433c0 ZSTD_decompressStream -EXPORT_SYMBOL vmlinux 0x15e95c79 drop_super_exclusive -EXPORT_SYMBOL vmlinux 0x160a1a76 phy_set_sym_pause -EXPORT_SYMBOL vmlinux 0x160d8fab register_md_cluster_operations -EXPORT_SYMBOL vmlinux 0x161d8c34 ip_generic_getfrag +EXPORT_SYMBOL vmlinux 0x15ee8fe2 param_ops_short +EXPORT_SYMBOL vmlinux 0x160c2165 unix_attach_fds EXPORT_SYMBOL vmlinux 0x162893fd hashlen_string +EXPORT_SYMBOL vmlinux 0x1629b341 sync_file_create EXPORT_SYMBOL vmlinux 0x1632bc21 kvasprintf_const -EXPORT_SYMBOL vmlinux 0x1638dd6f end_buffer_read_sync -EXPORT_SYMBOL vmlinux 0x163c0632 of_get_min_tck -EXPORT_SYMBOL vmlinux 0x1643adb5 tty_unlock -EXPORT_SYMBOL vmlinux 0x164bb176 snd_device_register -EXPORT_SYMBOL vmlinux 0x164c755c drop_super -EXPORT_SYMBOL vmlinux 0x164d24b1 redraw_screen +EXPORT_SYMBOL vmlinux 0x163d31f3 jbd2_journal_start +EXPORT_SYMBOL vmlinux 0x16472575 serial8250_do_set_termios EXPORT_SYMBOL vmlinux 0x16525cc4 xa_find -EXPORT_SYMBOL vmlinux 0x169e6aa4 qdisc_class_hash_grow -EXPORT_SYMBOL vmlinux 0x16a1d0c6 eth_get_headlen +EXPORT_SYMBOL vmlinux 0x1669a0e4 of_mdio_find_device +EXPORT_SYMBOL vmlinux 0x16704882 flow_rule_match_basic +EXPORT_SYMBOL vmlinux 0x16821bb5 scsi_print_command EXPORT_SYMBOL vmlinux 0x16adbf67 down_killable -EXPORT_SYMBOL vmlinux 0x16aeb5ca tcf_idr_search -EXPORT_SYMBOL vmlinux 0x16d71d3d generic_file_splice_read +EXPORT_SYMBOL vmlinux 0x16ba59ac netpoll_poll_dev +EXPORT_SYMBOL vmlinux 0x16c0055f dm_table_get_size +EXPORT_SYMBOL vmlinux 0x16d34190 set_cached_acl +EXPORT_SYMBOL vmlinux 0x16da5afa netlink_set_err EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait -EXPORT_SYMBOL vmlinux 0x16e4fee1 qdisc_watchdog_schedule_range_ns -EXPORT_SYMBOL vmlinux 0x17100612 mem_cgroup_from_task -EXPORT_SYMBOL vmlinux 0x1719cae8 pcie_capability_write_word +EXPORT_SYMBOL vmlinux 0x16e5a4ab flow_indr_dev_setup_offload +EXPORT_SYMBOL vmlinux 0x16ec7a21 unregister_mii_tstamp_controller +EXPORT_SYMBOL vmlinux 0x17152804 dma_unmap_resource EXPORT_SYMBOL vmlinux 0x172b5482 dma_fence_array_create -EXPORT_SYMBOL vmlinux 0x175f34e4 nand_read_oob_std -EXPORT_SYMBOL vmlinux 0x177116f5 inc_node_page_state -EXPORT_SYMBOL vmlinux 0x178a9635 iw_handler_get_thrspy +EXPORT_SYMBOL vmlinux 0x17302ba1 alloc_netdev_mqs +EXPORT_SYMBOL vmlinux 0x174e6df1 xfrm6_protocol_register +EXPORT_SYMBOL vmlinux 0x17539bc2 filemap_fault +EXPORT_SYMBOL vmlinux 0x1758c788 km_policy_notify +EXPORT_SYMBOL vmlinux 0x178929e6 bio_integrity_trim EXPORT_SYMBOL vmlinux 0x178c4894 qe_upload_firmware -EXPORT_SYMBOL vmlinux 0x1797b7b8 bdi_set_max_ratio -EXPORT_SYMBOL vmlinux 0x17b5e63d remove_watch_from_object -EXPORT_SYMBOL vmlinux 0x17c81a2b pci_set_mwi -EXPORT_SYMBOL vmlinux 0x17d8f897 inet6_protos -EXPORT_SYMBOL vmlinux 0x17db35c5 rproc_add_subdev -EXPORT_SYMBOL vmlinux 0x180fcf49 seq_escape_mem -EXPORT_SYMBOL vmlinux 0x183325d8 generic_file_llseek_size +EXPORT_SYMBOL vmlinux 0x178c4a33 tcp_sock_set_keepidle +EXPORT_SYMBOL vmlinux 0x179dc85a mipi_dsi_dcs_set_column_address +EXPORT_SYMBOL vmlinux 0x17cf4cc5 pmem_should_map_pages +EXPORT_SYMBOL vmlinux 0x17e7d52e configfs_remove_default_groups +EXPORT_SYMBOL vmlinux 0x180c4c12 flow_block_cb_free +EXPORT_SYMBOL vmlinux 0x18198057 input_free_device +EXPORT_SYMBOL vmlinux 0x181b001c crypto_sha1_update EXPORT_SYMBOL vmlinux 0x18345b8e __bitmap_replace +EXPORT_SYMBOL vmlinux 0x18372820 mmc_detect_card_removed +EXPORT_SYMBOL vmlinux 0x1838c66b pcie_get_readrq +EXPORT_SYMBOL vmlinux 0x18673e6f blk_queue_chunk_sectors +EXPORT_SYMBOL vmlinux 0x186982e9 bio_endio +EXPORT_SYMBOL vmlinux 0x186b2e84 __frontswap_load EXPORT_SYMBOL vmlinux 0x187884a8 cpm_muram_free -EXPORT_SYMBOL vmlinux 0x187e3194 mmc_cqe_request_done -EXPORT_SYMBOL vmlinux 0x188a1408 free_task +EXPORT_SYMBOL vmlinux 0x18865521 mount_subtree +EXPORT_SYMBOL vmlinux 0x1889297c n_tty_ioctl_helper EXPORT_SYMBOL vmlinux 0x188ea314 jiffies_to_timespec64 -EXPORT_SYMBOL vmlinux 0x188f2aa4 i2c_smbus_read_i2c_block_data -EXPORT_SYMBOL vmlinux 0x18adaf7c inode_io_list_del -EXPORT_SYMBOL vmlinux 0x18b86986 iw_handler_set_thrspy -EXPORT_SYMBOL vmlinux 0x18bda8fb padata_alloc_shell -EXPORT_SYMBOL vmlinux 0x18d4f435 generic_file_direct_write -EXPORT_SYMBOL vmlinux 0x18e10fe9 pci_dev_driver +EXPORT_SYMBOL vmlinux 0x188fb03b __skb_try_recv_datagram +EXPORT_SYMBOL vmlinux 0x18913443 rtnl_set_sk_err +EXPORT_SYMBOL vmlinux 0x1894546d netpoll_poll_disable +EXPORT_SYMBOL vmlinux 0x189c54b0 skb_flow_dissect_ct +EXPORT_SYMBOL vmlinux 0x18dcef89 finish_open EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start -EXPORT_SYMBOL vmlinux 0x18f1f432 mdiobus_read_nested -EXPORT_SYMBOL vmlinux 0x190908df tcp_enter_quickack_mode +EXPORT_SYMBOL vmlinux 0x18e694ff mmc_start_request +EXPORT_SYMBOL vmlinux 0x18ebe5c1 max8998_update_reg EXPORT_SYMBOL vmlinux 0x190a48a9 efi -EXPORT_SYMBOL vmlinux 0x1920b9eb xfrm_policy_hash_rebuild -EXPORT_SYMBOL vmlinux 0x19254df6 tcp_mmap -EXPORT_SYMBOL vmlinux 0x195810df skb_ensure_writable +EXPORT_SYMBOL vmlinux 0x190a9a18 i2c_verify_adapter +EXPORT_SYMBOL vmlinux 0x19110b33 vfs_get_super +EXPORT_SYMBOL vmlinux 0x1921b873 of_node_get +EXPORT_SYMBOL vmlinux 0x19291ec6 snd_ctl_boolean_mono_info +EXPORT_SYMBOL vmlinux 0x1951c569 of_root +EXPORT_SYMBOL vmlinux 0x195609cc jbd2_journal_free_reserved EXPORT_SYMBOL vmlinux 0x195c8596 cpu_rmap_update +EXPORT_SYMBOL vmlinux 0x1969f304 pci_request_irq +EXPORT_SYMBOL vmlinux 0x196e4cf6 nand_create_bbt +EXPORT_SYMBOL vmlinux 0x1972e11e snd_pcm_lib_free_pages EXPORT_SYMBOL vmlinux 0x197dc3b3 omap_set_dma_src_burst_mode +EXPORT_SYMBOL vmlinux 0x19811f0e rproc_elf_sanity_check EXPORT_SYMBOL vmlinux 0x1984d421 out_of_line_wait_on_bit +EXPORT_SYMBOL vmlinux 0x1984fd93 devfreq_update_status EXPORT_SYMBOL vmlinux 0x198620d7 security_add_mnt_opt EXPORT_SYMBOL vmlinux 0x198788b4 snd_lookup_oss_minor_data EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp -EXPORT_SYMBOL vmlinux 0x19b9dd18 inet_sock_destruct +EXPORT_SYMBOL vmlinux 0x19b413ce phy_suspend EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec -EXPORT_SYMBOL vmlinux 0x19ccef91 ipmi_platform_add -EXPORT_SYMBOL vmlinux 0x19ed9422 proc_create_single_data -EXPORT_SYMBOL vmlinux 0x1a1c5707 ihold -EXPORT_SYMBOL vmlinux 0x1a1d57fe pci_request_regions +EXPORT_SYMBOL vmlinux 0x19c215a4 scm_detach_fds +EXPORT_SYMBOL vmlinux 0x19d6b994 kernel_param_lock +EXPORT_SYMBOL vmlinux 0x19d8496f input_unregister_handle +EXPORT_SYMBOL vmlinux 0x1a17adae inode_get_bytes +EXPORT_SYMBOL vmlinux 0x1a1e73e1 devm_clk_get EXPORT_SYMBOL vmlinux 0x1a21d691 __ksize -EXPORT_SYMBOL vmlinux 0x1a296e04 mmc_can_discard -EXPORT_SYMBOL vmlinux 0x1a525d22 dma_alloc_attrs -EXPORT_SYMBOL vmlinux 0x1a5f76c6 alloc_fddidev +EXPORT_SYMBOL vmlinux 0x1a31b185 scsi_target_quiesce +EXPORT_SYMBOL vmlinux 0x1a436d1c rproc_add_carveout +EXPORT_SYMBOL vmlinux 0x1a524ed1 d_add +EXPORT_SYMBOL vmlinux 0x1a639ea7 kfree_skb EXPORT_SYMBOL vmlinux 0x1a65f4ad __arm_ioremap_pfn EXPORT_SYMBOL vmlinux 0x1a7bc9ef xxh32 -EXPORT_SYMBOL vmlinux 0x1a982ebf blkdev_get_by_dev +EXPORT_SYMBOL vmlinux 0x1a8d7321 vme_bus_num EXPORT_SYMBOL vmlinux 0x1a9a433c prandom_u32_state +EXPORT_SYMBOL vmlinux 0x1aa69954 phy_ethtool_get_strings EXPORT_SYMBOL vmlinux 0x1aa86d18 rdma_dim -EXPORT_SYMBOL vmlinux 0x1aacb8de inet_ioctl -EXPORT_SYMBOL vmlinux 0x1aae9201 fib_default_rule_add -EXPORT_SYMBOL vmlinux 0x1acfea7b pci_enable_wake +EXPORT_SYMBOL vmlinux 0x1ab1eda0 register_cdrom +EXPORT_SYMBOL vmlinux 0x1ac8e1f3 inet6_offloads EXPORT_SYMBOL vmlinux 0x1ad1f2e7 _memcpy_fromio +EXPORT_SYMBOL vmlinux 0x1ad89957 __sync_dirty_buffer EXPORT_SYMBOL vmlinux 0x1aded990 ZSTD_DCtxWorkspaceBound -EXPORT_SYMBOL vmlinux 0x1ae8bdc0 tcp_rtx_synack -EXPORT_SYMBOL vmlinux 0x1b003a29 nf_register_sockopt +EXPORT_SYMBOL vmlinux 0x1ae9dcbb zpool_register_driver +EXPORT_SYMBOL vmlinux 0x1af4071b free_netdev +EXPORT_SYMBOL vmlinux 0x1af61e6e filemap_fdatawrite_wbc +EXPORT_SYMBOL vmlinux 0x1afa3de2 qdisc_put_unlocked +EXPORT_SYMBOL vmlinux 0x1afab05a vme_master_request EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist -EXPORT_SYMBOL vmlinux 0x1b015e08 snd_register_device EXPORT_SYMBOL vmlinux 0x1b25f187 __xa_store -EXPORT_SYMBOL vmlinux 0x1b33f819 __vlan_find_dev_deep_rcu -EXPORT_SYMBOL vmlinux 0x1b477384 vme_dma_list_exec EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton -EXPORT_SYMBOL vmlinux 0x1b6c3b06 param_ops_int +EXPORT_SYMBOL vmlinux 0x1b6eb987 netdev_has_upper_dev EXPORT_SYMBOL vmlinux 0x1b777357 rdmacg_unregister_device -EXPORT_SYMBOL vmlinux 0x1b8f9499 try_module_get +EXPORT_SYMBOL vmlinux 0x1b7f4b40 ip_options_compile +EXPORT_SYMBOL vmlinux 0x1b870b12 pci_get_class +EXPORT_SYMBOL vmlinux 0x1b8a8c7c bdevname EXPORT_SYMBOL vmlinux 0x1b965a53 kunmap_local_indexed -EXPORT_SYMBOL vmlinux 0x1b9f2662 sock_diag_put_filterinfo -EXPORT_SYMBOL vmlinux 0x1bab1877 phy_free_interrupt -EXPORT_SYMBOL vmlinux 0x1badbcf5 blk_queue_dma_alignment -EXPORT_SYMBOL vmlinux 0x1bcc13f2 build_skb -EXPORT_SYMBOL vmlinux 0x1bcfadc7 jbd2_fc_release_bufs -EXPORT_SYMBOL vmlinux 0x1bf5141b sock_from_file -EXPORT_SYMBOL vmlinux 0x1c2e28f1 devm_mdiobus_alloc_size -EXPORT_SYMBOL vmlinux 0x1c30c3e9 mipi_dsi_compression_mode -EXPORT_SYMBOL vmlinux 0x1c3408f5 key_revoke -EXPORT_SYMBOL vmlinux 0x1c34cec3 input_get_poll_interval -EXPORT_SYMBOL vmlinux 0x1c378aa7 filemap_invalidate_unlock_two -EXPORT_SYMBOL vmlinux 0x1c51a87f add_watch_to_object -EXPORT_SYMBOL vmlinux 0x1c5611c7 mmc_gpio_get_cd +EXPORT_SYMBOL vmlinux 0x1b980419 input_register_handle +EXPORT_SYMBOL vmlinux 0x1b9864d4 dm_kobject_release +EXPORT_SYMBOL vmlinux 0x1bc1d616 from_kgid +EXPORT_SYMBOL vmlinux 0x1bc3bf1b netdev_update_features +EXPORT_SYMBOL vmlinux 0x1bcd0e3a sock_cmsg_send +EXPORT_SYMBOL vmlinux 0x1bdd50bb pm860x_reg_read +EXPORT_SYMBOL vmlinux 0x1bfd2262 phy_ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0x1c288586 vm_map_ram +EXPORT_SYMBOL vmlinux 0x1c2ca11b pci_find_bus +EXPORT_SYMBOL vmlinux 0x1c3e87ee pcim_iounmap_regions +EXPORT_SYMBOL vmlinux 0x1c446b18 scsi_report_opcode +EXPORT_SYMBOL vmlinux 0x1c5d3fed flow_rule_match_tcp EXPORT_SYMBOL vmlinux 0x1c5e3878 icst525_idx2s +EXPORT_SYMBOL vmlinux 0x1c60e7ae devm_clk_release_clkdev +EXPORT_SYMBOL vmlinux 0x1c6eee6c i2c_smbus_write_byte EXPORT_SYMBOL vmlinux 0x1c777c5c dma_fence_add_callback -EXPORT_SYMBOL vmlinux 0x1c8ad121 scsi_host_put -EXPORT_SYMBOL vmlinux 0x1ca0e18a vme_lm_request -EXPORT_SYMBOL vmlinux 0x1cb81319 sk_send_sigurg +EXPORT_SYMBOL vmlinux 0x1c8240d6 md_cluster_ops +EXPORT_SYMBOL vmlinux 0x1cbf6434 page_readlink EXPORT_SYMBOL vmlinux 0x1cc11154 __SCK__tp_func_mmap_lock_start_locking -EXPORT_SYMBOL vmlinux 0x1cca9bc4 alloc_buffer_head -EXPORT_SYMBOL vmlinux 0x1ce40caa __sk_mem_schedule -EXPORT_SYMBOL vmlinux 0x1ce4d4ee of_graph_get_remote_endpoint -EXPORT_SYMBOL vmlinux 0x1ced4d19 regset_get_alloc -EXPORT_SYMBOL vmlinux 0x1cf80564 lease_modify +EXPORT_SYMBOL vmlinux 0x1cdc7aef set_user_nice EXPORT_SYMBOL vmlinux 0x1d027e4b snd_pcm_format_signed -EXPORT_SYMBOL vmlinux 0x1d091b7c blk_cleanup_disk -EXPORT_SYMBOL vmlinux 0x1d0c4059 vfs_setpos -EXPORT_SYMBOL vmlinux 0x1d0ee706 bio_split -EXPORT_SYMBOL vmlinux 0x1d11f498 phy_ethtool_get_strings -EXPORT_SYMBOL vmlinux 0x1d1ef47c skb_eth_pop -EXPORT_SYMBOL vmlinux 0x1d268d14 mmc_command_done +EXPORT_SYMBOL vmlinux 0x1d1511cc set_page_dirty +EXPORT_SYMBOL vmlinux 0x1d1940da input_unregister_handler EXPORT_SYMBOL vmlinux 0x1d2d6d15 wait_iff_congested -EXPORT_SYMBOL vmlinux 0x1d303399 skb_unlink EXPORT_SYMBOL vmlinux 0x1d37eeed ioremap -EXPORT_SYMBOL vmlinux 0x1d40c683 input_mt_destroy_slots -EXPORT_SYMBOL vmlinux 0x1d531c04 scsi_remove_device -EXPORT_SYMBOL vmlinux 0x1d593175 splice_direct_to_actor -EXPORT_SYMBOL vmlinux 0x1d5e9506 udp_sk_rx_dst_set -EXPORT_SYMBOL vmlinux 0x1d5fb428 scsi_free_host_dev -EXPORT_SYMBOL vmlinux 0x1d698536 __ip_dev_find +EXPORT_SYMBOL vmlinux 0x1d382ae7 mfd_add_devices +EXPORT_SYMBOL vmlinux 0x1d3f7588 locks_copy_lock +EXPORT_SYMBOL vmlinux 0x1d48920c thermal_zone_device_critical +EXPORT_SYMBOL vmlinux 0x1d5d5c5b con_copy_unimap +EXPORT_SYMBOL vmlinux 0x1d7733f6 tcp_sock_set_user_timeout EXPORT_SYMBOL vmlinux 0x1d796395 hdmi_drm_infoframe_pack -EXPORT_SYMBOL vmlinux 0x1d9e133a dev_uc_unsync -EXPORT_SYMBOL vmlinux 0x1dc622f5 blk_queue_update_dma_alignment +EXPORT_SYMBOL vmlinux 0x1d87f8c1 cpu_user +EXPORT_SYMBOL vmlinux 0x1d89631c of_get_compatible_child +EXPORT_SYMBOL vmlinux 0x1db34af8 t10_pi_type1_ip +EXPORT_SYMBOL vmlinux 0x1db6d83c bio_add_page EXPORT_SYMBOL vmlinux 0x1dc6c93b lookup_user_key -EXPORT_SYMBOL vmlinux 0x1dd2e73f of_get_i2c_adapter_by_node -EXPORT_SYMBOL vmlinux 0x1dd486cb netif_carrier_on +EXPORT_SYMBOL vmlinux 0x1dc96174 skb_headers_offset_update +EXPORT_SYMBOL vmlinux 0x1dd162b3 of_graph_get_endpoint_by_regs EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap -EXPORT_SYMBOL vmlinux 0x1ddd643c flow_hash_from_keys EXPORT_SYMBOL vmlinux 0x1ddd9f26 nla_put_64bit 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 0x1deb70a5 generic_pipe_buf_release -EXPORT_SYMBOL vmlinux 0x1df9c279 blkdev_get_by_path +EXPORT_SYMBOL vmlinux 0x1df22597 tso_build_data +EXPORT_SYMBOL vmlinux 0x1df2efaa generic_parse_monolithic +EXPORT_SYMBOL vmlinux 0x1df7272a xfrm_state_walk_done EXPORT_SYMBOL vmlinux 0x1e0a0c24 mod_timer_pending +EXPORT_SYMBOL vmlinux 0x1e1995df md_bitmap_start_sync +EXPORT_SYMBOL vmlinux 0x1e1b8d51 xfrm6_rcv EXPORT_SYMBOL vmlinux 0x1e1e140e ns_to_timespec64 -EXPORT_SYMBOL vmlinux 0x1e37a556 tcp_close -EXPORT_SYMBOL vmlinux 0x1e500368 pci_disable_link_state_locked +EXPORT_SYMBOL vmlinux 0x1e24659c tty_port_init +EXPORT_SYMBOL vmlinux 0x1e2a2c26 jbd2_journal_revoke EXPORT_SYMBOL vmlinux 0x1e5284e4 vm_get_page_prot -EXPORT_SYMBOL vmlinux 0x1e65f83a max8925_reg_write EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr -EXPORT_SYMBOL vmlinux 0x1e7eebfd phy_start_aneg -EXPORT_SYMBOL vmlinux 0x1e8d6433 phy_ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0x1e897ebe udp_push_pending_frames +EXPORT_SYMBOL vmlinux 0x1e923ea8 jbd2__journal_start +EXPORT_SYMBOL vmlinux 0x1e93fda8 param_set_long EXPORT_SYMBOL vmlinux 0x1e96f43d __cpu_possible_mask EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu +EXPORT_SYMBOL vmlinux 0x1e9f2472 register_netdevice_notifier_net +EXPORT_SYMBOL vmlinux 0x1ea3d43d pci_bus_size_bridges EXPORT_SYMBOL vmlinux 0x1eb64646 div64_s64 -EXPORT_SYMBOL vmlinux 0x1eb8d650 snd_component_add +EXPORT_SYMBOL vmlinux 0x1ebf9955 skb_put EXPORT_SYMBOL vmlinux 0x1ed7eb60 __sg_free_table EXPORT_SYMBOL vmlinux 0x1edb69d6 ktime_get_raw_ts64 EXPORT_SYMBOL vmlinux 0x1edb6dc0 __nla_put_64bit -EXPORT_SYMBOL vmlinux 0x1eeab07b pci_read_vpd -EXPORT_SYMBOL vmlinux 0x1ef16c30 tcp_openreq_init_rwin -EXPORT_SYMBOL vmlinux 0x1f2c8345 devfreq_register_opp_notifier -EXPORT_SYMBOL vmlinux 0x1f475376 inet_register_protosw -EXPORT_SYMBOL vmlinux 0x1f4b0384 mr_dump +EXPORT_SYMBOL vmlinux 0x1edefa7f param_ops_long +EXPORT_SYMBOL vmlinux 0x1eee6861 kill_block_super +EXPORT_SYMBOL vmlinux 0x1ef5b2ce sock_set_reuseaddr +EXPORT_SYMBOL vmlinux 0x1f00eb70 pci_disable_link_state +EXPORT_SYMBOL vmlinux 0x1f04c67f sock_register +EXPORT_SYMBOL vmlinux 0x1f1ab2cb jbd2_submit_inode_data +EXPORT_SYMBOL vmlinux 0x1f240587 sock_kfree_s +EXPORT_SYMBOL vmlinux 0x1f3026ce d_set_d_op +EXPORT_SYMBOL vmlinux 0x1f3b54ba of_n_size_cells +EXPORT_SYMBOL vmlinux 0x1f3c34ee simple_setattr EXPORT_SYMBOL vmlinux 0x1f4d5778 kstrtoll_from_user -EXPORT_SYMBOL vmlinux 0x1f4ebedd fs_context_for_submount -EXPORT_SYMBOL vmlinux 0x1f7d2995 devfreq_update_target -EXPORT_SYMBOL vmlinux 0x1f8133d9 i2c_del_driver -EXPORT_SYMBOL vmlinux 0x1f9a769e dev_set_mac_address -EXPORT_SYMBOL vmlinux 0x1fa4603e netdev_txq_to_tc -EXPORT_SYMBOL vmlinux 0x1fabc870 serio_unregister_driver -EXPORT_SYMBOL vmlinux 0x1fbc4b6a __break_lease +EXPORT_SYMBOL vmlinux 0x1f5b2a89 logfc +EXPORT_SYMBOL vmlinux 0x1f609339 input_allocate_device +EXPORT_SYMBOL vmlinux 0x1f80a395 sock_dequeue_err_skb +EXPORT_SYMBOL vmlinux 0x1f88e5a0 blk_mq_start_request +EXPORT_SYMBOL vmlinux 0x1f9d19d3 genphy_c37_read_status +EXPORT_SYMBOL vmlinux 0x1fb3671a nand_scan_with_ids EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio -EXPORT_SYMBOL vmlinux 0x1fbd8344 iov_iter_revert -EXPORT_SYMBOL vmlinux 0x1fc4fa09 page_cache_next_miss +EXPORT_SYMBOL vmlinux 0x1fcd5fc0 bio_split EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag -EXPORT_SYMBOL vmlinux 0x1fe94a63 register_console -EXPORT_SYMBOL vmlinux 0x1ff3ebfd dev_uc_add_excl -EXPORT_SYMBOL vmlinux 0x1ffd0729 pci_irq_vector +EXPORT_SYMBOL vmlinux 0x1fec70d0 dst_release_immediate +EXPORT_SYMBOL vmlinux 0x1ffccc79 unlock_page 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 0x2015c9a0 tcf_unregister_action -EXPORT_SYMBOL vmlinux 0x2025e2af of_node_name_eq -EXPORT_SYMBOL vmlinux 0x20402a5e mtd_concat_create -EXPORT_SYMBOL vmlinux 0x204ac2ec scsi_print_result +EXPORT_SYMBOL vmlinux 0x20211507 phy_ethtool_get_stats +EXPORT_SYMBOL vmlinux 0x2042ed1e ppp_unregister_compressor +EXPORT_SYMBOL vmlinux 0x2043f7b1 fib_notifier_ops_unregister +EXPORT_SYMBOL vmlinux 0x20449af8 cpufreq_get_policy EXPORT_SYMBOL vmlinux 0x204af5b5 netlbl_audit_start EXPORT_SYMBOL vmlinux 0x204c19f5 tcp_alloc_md5sig_pool EXPORT_SYMBOL vmlinux 0x204c5067 scsi_dev_info_add_list -EXPORT_SYMBOL vmlinux 0x204d9dcc kthread_blkcg -EXPORT_SYMBOL vmlinux 0x2050d458 snd_timer_notify -EXPORT_SYMBOL vmlinux 0x20591da8 snd_info_create_card_entry -EXPORT_SYMBOL vmlinux 0x206d8a0d sock_register -EXPORT_SYMBOL vmlinux 0x206fd3a9 mmc_gpiod_request_cd_irq -EXPORT_SYMBOL vmlinux 0x207088b1 sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0x2071f73f shrink_dcache_parent +EXPORT_SYMBOL vmlinux 0x20724309 get_user_pages_unlocked EXPORT_SYMBOL vmlinux 0x2072b8b4 unregister_sysctl_table -EXPORT_SYMBOL vmlinux 0x207880b0 snd_mixer_oss_notify_callback -EXPORT_SYMBOL vmlinux 0x2092057d rproc_coredump_add_custom_segment -EXPORT_SYMBOL vmlinux 0x2096a1c9 scsi_report_device_reset -EXPORT_SYMBOL vmlinux 0x20983127 dev_change_proto_down -EXPORT_SYMBOL vmlinux 0x209890fc sock_bindtoindex -EXPORT_SYMBOL vmlinux 0x209f7c59 md_integrity_add_rdev -EXPORT_SYMBOL vmlinux 0x20a25ef8 vme_slave_request +EXPORT_SYMBOL vmlinux 0x2075ada3 __cgroup_bpf_run_filter_sk +EXPORT_SYMBOL vmlinux 0x208ac3f1 vfs_llseek +EXPORT_SYMBOL vmlinux 0x209522f2 nand_ecc_sw_bch_cleanup_ctx EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data -EXPORT_SYMBOL vmlinux 0x20ae536b pin_user_pages -EXPORT_SYMBOL vmlinux 0x20aebab6 fifo_set_limit EXPORT_SYMBOL vmlinux 0x20d65e40 fb_find_nearest_mode -EXPORT_SYMBOL vmlinux 0x20f287db blk_queue_max_write_same_sectors -EXPORT_SYMBOL vmlinux 0x20ff163a __serio_register_port +EXPORT_SYMBOL vmlinux 0x20d78b39 inode_newsize_ok +EXPORT_SYMBOL vmlinux 0x20dc0cbb snd_pcm_hw_constraint_ratnums +EXPORT_SYMBOL vmlinux 0x20e1f46d tcf_exts_terse_dump +EXPORT_SYMBOL vmlinux 0x20e329a6 __phy_read_mmd +EXPORT_SYMBOL vmlinux 0x20e71342 __tcp_md5_do_lookup +EXPORT_SYMBOL vmlinux 0x20fd1d15 blk_mq_run_hw_queues EXPORT_SYMBOL vmlinux 0x21059cd7 audit_log_task_context +EXPORT_SYMBOL vmlinux 0x210c70c4 eth_commit_mac_addr_change EXPORT_SYMBOL vmlinux 0x21110dbf mmioset EXPORT_SYMBOL vmlinux 0x211331fa __divsi3 -EXPORT_SYMBOL vmlinux 0x21303fe1 no_llseek +EXPORT_SYMBOL vmlinux 0x21287296 unpin_user_page +EXPORT_SYMBOL vmlinux 0x212883bb kernel_sendmsg EXPORT_SYMBOL vmlinux 0x213a738d memregion_alloc EXPORT_SYMBOL vmlinux 0x213e4965 ps2_is_keyboard_id -EXPORT_SYMBOL vmlinux 0x214b2940 ps2_end_command -EXPORT_SYMBOL vmlinux 0x215807ae jbd2_journal_submit_inode_data_buffers EXPORT_SYMBOL vmlinux 0x215a8ec8 slhc_init -EXPORT_SYMBOL vmlinux 0x21605438 md_bitmap_end_sync +EXPORT_SYMBOL vmlinux 0x21604562 skb_clone EXPORT_SYMBOL vmlinux 0x216d759a mmiocpy -EXPORT_SYMBOL vmlinux 0x2187531f serio_close +EXPORT_SYMBOL vmlinux 0x217df756 i2c_smbus_xfer EXPORT_SYMBOL vmlinux 0x218e600b pci_add_resource_offset -EXPORT_SYMBOL vmlinux 0x2195bf35 genl_register_family -EXPORT_SYMBOL vmlinux 0x2197441a pci_ep_cfs_add_epf_group -EXPORT_SYMBOL vmlinux 0x219d5d43 block_invalidatepage -EXPORT_SYMBOL vmlinux 0x21a10779 poll_initwait -EXPORT_SYMBOL vmlinux 0x21b477a4 __mdiobus_register -EXPORT_SYMBOL vmlinux 0x21bb4cbf unix_get_socket -EXPORT_SYMBOL vmlinux 0x21bc6d4f snd_card_new +EXPORT_SYMBOL vmlinux 0x21aecd5d add_random_ready_callback EXPORT_SYMBOL vmlinux 0x21bdb523 errseq_check_and_advance EXPORT_SYMBOL vmlinux 0x21be37e1 hdmi_avi_infoframe_check -EXPORT_SYMBOL vmlinux 0x21c36928 ip_mc_join_group -EXPORT_SYMBOL vmlinux 0x21e085c6 tcf_generic_walker +EXPORT_SYMBOL vmlinux 0x21c4217a kmem_cache_free_bulk EXPORT_SYMBOL vmlinux 0x21e13cb3 inet_peer_xrlim_allow -EXPORT_SYMBOL vmlinux 0x21e7a8bc finalize_exec -EXPORT_SYMBOL vmlinux 0x21e8cdb1 unregister_qdisc -EXPORT_SYMBOL vmlinux 0x21e975ed tty_register_ldisc -EXPORT_SYMBOL vmlinux 0x21ee74da tcf_em_unregister -EXPORT_SYMBOL vmlinux 0x21f35e94 devm_of_mdiobus_register -EXPORT_SYMBOL vmlinux 0x2213aa04 genphy_handle_interrupt_no_ack +EXPORT_SYMBOL vmlinux 0x21eaa4fe scsi_remove_device +EXPORT_SYMBOL vmlinux 0x2211c9fb cdrom_number_of_slots +EXPORT_SYMBOL vmlinux 0x221b416f netpoll_parse_options EXPORT_SYMBOL vmlinux 0x2220bd48 hdmi_drm_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0x222b9190 vfs_dup_fs_context EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq -EXPORT_SYMBOL vmlinux 0x2253e551 __kmap_local_page_prot -EXPORT_SYMBOL vmlinux 0x225947d6 register_nexthop_notifier -EXPORT_SYMBOL vmlinux 0x2296b44b ipv6_getsockopt -EXPORT_SYMBOL vmlinux 0x229fa816 finish_open -EXPORT_SYMBOL vmlinux 0x22ab27a2 md_cluster_ops +EXPORT_SYMBOL vmlinux 0x2244b6f3 bdev_check_media_change +EXPORT_SYMBOL vmlinux 0x22601e02 md_write_end +EXPORT_SYMBOL vmlinux 0x22767339 inode_nohighmem +EXPORT_SYMBOL vmlinux 0x227fb7ae tcp_enter_cwr +EXPORT_SYMBOL vmlinux 0x228e7fc8 of_pci_range_to_resource +EXPORT_SYMBOL vmlinux 0x2295f28b ethtool_op_get_ts_info +EXPORT_SYMBOL vmlinux 0x22a245df inode_dio_wait +EXPORT_SYMBOL vmlinux 0x22a61cd5 nf_register_net_hook +EXPORT_SYMBOL vmlinux 0x22b0bd43 get_tree_nodev +EXPORT_SYMBOL vmlinux 0x22b15c3b pci_release_region EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound -EXPORT_SYMBOL vmlinux 0x22b3ac56 blk_mq_tagset_busy_iter -EXPORT_SYMBOL vmlinux 0x22c35fd4 dm_kcopyd_copy -EXPORT_SYMBOL vmlinux 0x22c77187 mdiobus_free -EXPORT_SYMBOL vmlinux 0x22ceb248 get_user_pages_unlocked -EXPORT_SYMBOL vmlinux 0x22e8b521 input_set_timestamp -EXPORT_SYMBOL vmlinux 0x230f39ef scsi_is_target_device -EXPORT_SYMBOL vmlinux 0x2312f252 pcix_get_max_mmrbc -EXPORT_SYMBOL vmlinux 0x232787aa import_iovec -EXPORT_SYMBOL vmlinux 0x232c0439 uart_get_baud_rate -EXPORT_SYMBOL vmlinux 0x23379f16 blk_mq_run_hw_queues -EXPORT_SYMBOL vmlinux 0x233c16ab fs_param_is_blockdev -EXPORT_SYMBOL vmlinux 0x234818b7 genphy_write_mmd_unsupported -EXPORT_SYMBOL vmlinux 0x2357ec4a release_sock +EXPORT_SYMBOL vmlinux 0x22d1f9e0 ilookup5 +EXPORT_SYMBOL vmlinux 0x22e3c849 qdisc_warn_nonwc +EXPORT_SYMBOL vmlinux 0x22ee25d6 blk_get_request +EXPORT_SYMBOL vmlinux 0x22f2b40c netif_carrier_off +EXPORT_SYMBOL vmlinux 0x22ff3213 balance_dirty_pages_ratelimited +EXPORT_SYMBOL vmlinux 0x230529cc flow_block_cb_incref +EXPORT_SYMBOL vmlinux 0x230571e3 register_framebuffer +EXPORT_SYMBOL vmlinux 0x2310b1c7 tso_count_descs +EXPORT_SYMBOL vmlinux 0x232340f7 pci_bus_assign_resources +EXPORT_SYMBOL vmlinux 0x232e14b0 rproc_del +EXPORT_SYMBOL vmlinux 0x234c87e1 tcp_md5_hash_key +EXPORT_SYMBOL vmlinux 0x235273fd phy_ethtool_set_eee +EXPORT_SYMBOL vmlinux 0x23616f1a unregister_quota_format EXPORT_SYMBOL vmlinux 0x23619cff jiffies_64 EXPORT_SYMBOL vmlinux 0x2364c85a tasklet_init -EXPORT_SYMBOL vmlinux 0x236e41af dm_unregister_target -EXPORT_SYMBOL vmlinux 0x2373e6ab build_skb_around -EXPORT_SYMBOL vmlinux 0x237fdfd3 unlock_buffer -EXPORT_SYMBOL vmlinux 0x238992eb phy_modify_paged +EXPORT_SYMBOL vmlinux 0x2369f29f ps2_sendbyte +EXPORT_SYMBOL vmlinux 0x237c21ad mini_qdisc_pair_swap +EXPORT_SYMBOL vmlinux 0x237f16e1 sg_miter_next +EXPORT_SYMBOL vmlinux 0x237f245b devm_pci_remap_cfgspace EXPORT_SYMBOL vmlinux 0x238b099f mipi_dsi_packet_format_is_short -EXPORT_SYMBOL vmlinux 0x23982c9b param_get_ullong -EXPORT_SYMBOL vmlinux 0x2398379d register_netdevice_notifier_dev_net +EXPORT_SYMBOL vmlinux 0x23b22d36 jbd2_journal_blocks_per_page EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path +EXPORT_SYMBOL vmlinux 0x23bbd925 block_page_mkwrite +EXPORT_SYMBOL vmlinux 0x23c54c55 __dev_kfree_skb_irq +EXPORT_SYMBOL vmlinux 0x23db1232 __lock_buffer +EXPORT_SYMBOL vmlinux 0x23e16697 generic_pipe_buf_get +EXPORT_SYMBOL vmlinux 0x23e2a4d7 mipi_dsi_host_register +EXPORT_SYMBOL vmlinux 0x23eddaba _dev_notice EXPORT_SYMBOL vmlinux 0x23ee13fd mb_cache_entry_find_first -EXPORT_SYMBOL vmlinux 0x23f144e3 inet_unregister_protosw -EXPORT_SYMBOL vmlinux 0x23f3a050 inet_addr_type_table +EXPORT_SYMBOL vmlinux 0x23fbe299 cdev_alloc EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node +EXPORT_SYMBOL vmlinux 0x240079a3 dquot_get_next_id +EXPORT_SYMBOL vmlinux 0x241bfc40 sock_alloc_send_skb EXPORT_SYMBOL vmlinux 0x24212d86 __frontswap_invalidate_page -EXPORT_SYMBOL vmlinux 0x24219ad7 xfrm6_protocol_deregister -EXPORT_SYMBOL vmlinux 0x24279ec8 rt6_lookup -EXPORT_SYMBOL vmlinux 0x2436a778 inetdev_by_index EXPORT_SYMBOL vmlinux 0x24428be5 strncpy_from_user -EXPORT_SYMBOL vmlinux 0x24499976 xfrm_dst_ifdown -EXPORT_SYMBOL vmlinux 0x24554f9f snd_timer_stop +EXPORT_SYMBOL vmlinux 0x244f93f3 amba_find_device +EXPORT_SYMBOL vmlinux 0x24563864 max8998_bulk_write EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline -EXPORT_SYMBOL vmlinux 0x245a1b36 __inc_zone_page_state -EXPORT_SYMBOL vmlinux 0x24667e3b sock_set_reuseaddr EXPORT_SYMBOL vmlinux 0x246790df idr_for_each -EXPORT_SYMBOL vmlinux 0x2485a33f input_event -EXPORT_SYMBOL vmlinux 0x24904160 lru_cache_add -EXPORT_SYMBOL vmlinux 0x249b9aa9 of_find_node_opts_by_path +EXPORT_SYMBOL vmlinux 0x24681fa8 ppp_register_compressor +EXPORT_SYMBOL vmlinux 0x2475b006 neigh_table_clear +EXPORT_SYMBOL vmlinux 0x247e9c0e md_wakeup_thread +EXPORT_SYMBOL vmlinux 0x24a5b035 sk_capable EXPORT_SYMBOL vmlinux 0x24a94b26 snd_info_get_line -EXPORT_SYMBOL vmlinux 0x24aed98d param_get_string -EXPORT_SYMBOL vmlinux 0x24b87298 dcb_ieee_getapp_dscp_prio_mask_map -EXPORT_SYMBOL vmlinux 0x24b98af8 dqput -EXPORT_SYMBOL vmlinux 0x24c9b3dc of_get_ddr_timings -EXPORT_SYMBOL vmlinux 0x24cb5133 pcim_iomap_regions +EXPORT_SYMBOL vmlinux 0x24c11f14 snd_pcm_set_ops +EXPORT_SYMBOL vmlinux 0x24c33130 md_bitmap_endwrite EXPORT_SYMBOL vmlinux 0x24d273d1 add_timer -EXPORT_SYMBOL vmlinux 0x24d8f4b2 xfrm_replay_seqhi -EXPORT_SYMBOL vmlinux 0x24d9f788 mmc_register_driver -EXPORT_SYMBOL vmlinux 0x24d9fc59 napi_get_frags -EXPORT_SYMBOL vmlinux 0x24e0dbcb dev_add_pack -EXPORT_SYMBOL vmlinux 0x24ee9580 param_set_ulong -EXPORT_SYMBOL vmlinux 0x24f0295d nf_log_unbind_pf +EXPORT_SYMBOL vmlinux 0x24da3e0f bio_devname +EXPORT_SYMBOL vmlinux 0x24f1544f pcie_relaxed_ordering_enabled +EXPORT_SYMBOL vmlinux 0x24f707d1 unix_detach_fds +EXPORT_SYMBOL vmlinux 0x24f8fcc8 bio_put EXPORT_SYMBOL vmlinux 0x250113b4 memory_read_from_buffer -EXPORT_SYMBOL vmlinux 0x25164a50 dev_get_port_parent_id +EXPORT_SYMBOL vmlinux 0x2513f088 ihold +EXPORT_SYMBOL vmlinux 0x251fe8ba in_dev_finish_destroy EXPORT_SYMBOL vmlinux 0x252332f1 __SCK__tp_func_mmap_lock_released -EXPORT_SYMBOL vmlinux 0x252de67c set_posix_acl -EXPORT_SYMBOL vmlinux 0x253377de pps_event -EXPORT_SYMBOL vmlinux 0x2550cf0a tty_port_alloc_xmit_buf -EXPORT_SYMBOL vmlinux 0x256c66e3 flow_indr_dev_unregister -EXPORT_SYMBOL vmlinux 0x2575b115 param_ops_bint -EXPORT_SYMBOL vmlinux 0x2578ae71 phy_register_fixup_for_id +EXPORT_SYMBOL vmlinux 0x25281ead scsi_eh_finish_cmd +EXPORT_SYMBOL vmlinux 0x2561bfc1 fs_context_for_submount +EXPORT_SYMBOL vmlinux 0x2571e732 blk_post_runtime_suspend +EXPORT_SYMBOL vmlinux 0x2578b8be netlink_unicast 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 0x25b5da42 nand_ecc_finish_io_req -EXPORT_SYMBOL vmlinux 0x25e3effb iterate_supers_type +EXPORT_SYMBOL vmlinux 0x2593ebf3 input_get_keycode +EXPORT_SYMBOL vmlinux 0x25affa01 netdev_lower_get_first_private_rcu +EXPORT_SYMBOL vmlinux 0x25c7a59d xfrm6_input_addr +EXPORT_SYMBOL vmlinux 0x25db5ab2 free_inode_nonrcu +EXPORT_SYMBOL vmlinux 0x25e2ddd4 eth_header_cache_update EXPORT_SYMBOL vmlinux 0x25e58a09 hdmi_avi_infoframe_init EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free +EXPORT_SYMBOL vmlinux 0x25eb3ba4 generic_file_readonly_mmap +EXPORT_SYMBOL vmlinux 0x25f0447f generic_file_llseek +EXPORT_SYMBOL vmlinux 0x2608868a nand_monolithic_read_page_raw EXPORT_SYMBOL vmlinux 0x260a095a __sg_alloc_table -EXPORT_SYMBOL vmlinux 0x260bd304 security_inode_getsecctx -EXPORT_SYMBOL vmlinux 0x26191cf3 sget -EXPORT_SYMBOL vmlinux 0x26197fef filemap_fdatawrite_range -EXPORT_SYMBOL vmlinux 0x2626ddae jbd2_transaction_committed -EXPORT_SYMBOL vmlinux 0x262a3c75 kthread_stop +EXPORT_SYMBOL vmlinux 0x261edbf0 ioc_lookup_icq EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions -EXPORT_SYMBOL vmlinux 0x264967e2 iov_iter_gap_alignment -EXPORT_SYMBOL vmlinux 0x26542b74 pcim_iomap_regions_request_all -EXPORT_SYMBOL vmlinux 0x2662cdd8 sk_free -EXPORT_SYMBOL vmlinux 0x266f065b i2c_smbus_read_block_data -EXPORT_SYMBOL vmlinux 0x2670a732 fs_context_for_reconfigure -EXPORT_SYMBOL vmlinux 0x2678117e rawnand_sw_bch_init +EXPORT_SYMBOL vmlinux 0x263d35e2 dcb_ieee_getapp_prio_dscp_mask_map +EXPORT_SYMBOL vmlinux 0x26491838 devm_backlight_device_unregister +EXPORT_SYMBOL vmlinux 0x264ea0f7 devfreq_update_interval +EXPORT_SYMBOL vmlinux 0x2657be4e inet_addr_type +EXPORT_SYMBOL vmlinux 0x266753f2 __hw_addr_unsync_dev +EXPORT_SYMBOL vmlinux 0x267ecce4 block_commit_write EXPORT_SYMBOL vmlinux 0x2688ec10 bitmap_zalloc -EXPORT_SYMBOL vmlinux 0x268ba152 fib_notifier_ops_unregister EXPORT_SYMBOL vmlinux 0x2690e6c1 _find_next_zero_bit_le -EXPORT_SYMBOL vmlinux 0x26a4773b mroute6_is_socket +EXPORT_SYMBOL vmlinux 0x2690f484 close_fd_get_file +EXPORT_SYMBOL vmlinux 0x269186ee snd_pcm_lib_preallocate_pages +EXPORT_SYMBOL vmlinux 0x26a4655b devfreq_add_governor +EXPORT_SYMBOL vmlinux 0x26a7be6a __serio_register_port +EXPORT_SYMBOL vmlinux 0x26b963b3 wait_on_page_private_2 EXPORT_SYMBOL vmlinux 0x26bb950b __kfifo_from_user_r -EXPORT_SYMBOL vmlinux 0x26cbfd3f flow_rule_match_enc_ipv6_addrs -EXPORT_SYMBOL vmlinux 0x26d80bfc blk_pre_runtime_resume -EXPORT_SYMBOL vmlinux 0x26d828fa vfs_iter_read -EXPORT_SYMBOL vmlinux 0x26ff1146 tcp_v4_md5_hash_skb +EXPORT_SYMBOL vmlinux 0x26bcc84d jbd2_journal_forget +EXPORT_SYMBOL vmlinux 0x26f16730 xfrm_trans_queue +EXPORT_SYMBOL vmlinux 0x26f23eb6 mount_single +EXPORT_SYMBOL vmlinux 0x26f43d06 blk_rq_map_integrity_sg EXPORT_SYMBOL vmlinux 0x270cf88f dump_stack_lvl -EXPORT_SYMBOL vmlinux 0x2731340d mmc_put_card +EXPORT_SYMBOL vmlinux 0x2732642d pcibios_fixup_bus EXPORT_SYMBOL vmlinux 0x2733eaf7 scsi_dev_info_list_add_keyed +EXPORT_SYMBOL vmlinux 0x2736ebf1 poll_freewait +EXPORT_SYMBOL vmlinux 0x2746c946 ucc_of_parse_tdm 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 0x2765d7af flow_rule_match_meta EXPORT_SYMBOL vmlinux 0x276a3a44 irq_stat -EXPORT_SYMBOL vmlinux 0x276b56bb try_to_release_page -EXPORT_SYMBOL vmlinux 0x27738f3b dev_pre_changeaddr_notify +EXPORT_SYMBOL vmlinux 0x276f9ec8 scsi_target_resume +EXPORT_SYMBOL vmlinux 0x27722445 default_qdisc_ops EXPORT_SYMBOL vmlinux 0x27756bc8 scsi_sanitize_inquiry_string -EXPORT_SYMBOL vmlinux 0x27784edf jbd2_journal_set_features EXPORT_SYMBOL vmlinux 0x2782b393 xfrm_state_walk_init -EXPORT_SYMBOL vmlinux 0x27845330 vfs_statfs EXPORT_SYMBOL vmlinux 0x27864d57 memparse -EXPORT_SYMBOL vmlinux 0x27980e01 netlink_kernel_release -EXPORT_SYMBOL vmlinux 0x27982c8e max8998_bulk_read +EXPORT_SYMBOL vmlinux 0x27970014 handle_edge_irq +EXPORT_SYMBOL vmlinux 0x279dc9cb jbd2_journal_flush EXPORT_SYMBOL vmlinux 0x27ae5281 nla_put EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync -EXPORT_SYMBOL vmlinux 0x27c55066 netlink_set_err +EXPORT_SYMBOL vmlinux 0x27cab902 block_invalidatepage EXPORT_SYMBOL vmlinux 0x27cdca93 pci_add_resource -EXPORT_SYMBOL vmlinux 0x27e46a0b of_get_compatible_child -EXPORT_SYMBOL vmlinux 0x27e7b806 input_set_max_poll_interval +EXPORT_SYMBOL vmlinux 0x27e4f5ea input_grab_device EXPORT_SYMBOL vmlinux 0x28118cb6 __get_user_1 EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek -EXPORT_SYMBOL vmlinux 0x2824d994 nlmsg_notify -EXPORT_SYMBOL vmlinux 0x2838e2e1 __dev_set_mtu -EXPORT_SYMBOL vmlinux 0x2846a715 tcp_child_process +EXPORT_SYMBOL vmlinux 0x281ce0ca devm_register_netdev +EXPORT_SYMBOL vmlinux 0x2832ba55 sock_diag_put_filterinfo +EXPORT_SYMBOL vmlinux 0x283422f2 no_llseek +EXPORT_SYMBOL vmlinux 0x2862b5a3 nobh_write_begin +EXPORT_SYMBOL vmlinux 0x2871c75e ilookup +EXPORT_SYMBOL vmlinux 0x2872c0bf filemap_fdatawait_range_keep_errors EXPORT_SYMBOL vmlinux 0x2875a315 utf32_to_utf8 EXPORT_SYMBOL vmlinux 0x2878e15a idr_destroy -EXPORT_SYMBOL vmlinux 0x289ef761 cdrom_dummy_generic_packet -EXPORT_SYMBOL vmlinux 0x28a9ddd3 __breadahead_gfp -EXPORT_SYMBOL vmlinux 0x28af9446 neigh_app_ns -EXPORT_SYMBOL vmlinux 0x28b47682 __netif_napi_del -EXPORT_SYMBOL vmlinux 0x28b8cf1a md_write_start -EXPORT_SYMBOL vmlinux 0x28d8f136 skb_queue_head -EXPORT_SYMBOL vmlinux 0x28f8de04 block_is_partially_uptodate +EXPORT_SYMBOL vmlinux 0x28918a85 skb_checksum_setup +EXPORT_SYMBOL vmlinux 0x2892007a pci_msi_vec_count +EXPORT_SYMBOL vmlinux 0x28afa187 __traceiter_mmap_lock_released +EXPORT_SYMBOL vmlinux 0x28b0553f mmc_of_parse_clk_phase +EXPORT_SYMBOL vmlinux 0x28b0cf04 flow_block_cb_setup_simple +EXPORT_SYMBOL vmlinux 0x28bba379 tc_setup_cb_destroy +EXPORT_SYMBOL vmlinux 0x28c8c0ab __i2c_transfer +EXPORT_SYMBOL vmlinux 0x28ca7bb2 tcp_make_synack +EXPORT_SYMBOL vmlinux 0x28e6dc6e tcp_syn_ack_timeout EXPORT_SYMBOL vmlinux 0x28f94604 __ubsan_handle_builtin_unreachable -EXPORT_SYMBOL vmlinux 0x28f9fe9e generic_delete_inode -EXPORT_SYMBOL vmlinux 0x28ff6bc8 cdrom_mode_sense -EXPORT_SYMBOL vmlinux 0x29245503 dm_kobject_release -EXPORT_SYMBOL vmlinux 0x2927cdb4 sock_alloc -EXPORT_SYMBOL vmlinux 0x29306b04 mr_mfc_seq_next -EXPORT_SYMBOL vmlinux 0x29588944 scsi_scan_target +EXPORT_SYMBOL vmlinux 0x290c612c dev_change_carrier +EXPORT_SYMBOL vmlinux 0x29369d42 build_skb_around +EXPORT_SYMBOL vmlinux 0x294a3c73 tcf_idr_release +EXPORT_SYMBOL vmlinux 0x295e543b security_tun_dev_attach +EXPORT_SYMBOL vmlinux 0x295f591a inet_getname EXPORT_SYMBOL vmlinux 0x29604158 napi_busy_loop -EXPORT_SYMBOL vmlinux 0x297a0eec flow_rule_match_cvlan -EXPORT_SYMBOL vmlinux 0x2981ee0b km_policy_notify -EXPORT_SYMBOL vmlinux 0x299ef0dc sock_no_linger -EXPORT_SYMBOL vmlinux 0x299f9e2a inet_pton_with_scope +EXPORT_SYMBOL vmlinux 0x296649ae nf_log_trace +EXPORT_SYMBOL vmlinux 0x296ca05f input_set_min_poll_interval +EXPORT_SYMBOL vmlinux 0x2973d7f7 locks_delete_block +EXPORT_SYMBOL vmlinux 0x298002da serio_unregister_child_port EXPORT_SYMBOL vmlinux 0x29a47fe9 dma_fence_wait_any_timeout -EXPORT_SYMBOL vmlinux 0x29c1ccdc unregister_tcf_proto_ops -EXPORT_SYMBOL vmlinux 0x29c662bd complete_request_key -EXPORT_SYMBOL vmlinux 0x29d2595d mmc_retune_release +EXPORT_SYMBOL vmlinux 0x29cbc935 mipi_dsi_dcs_set_tear_off EXPORT_SYMBOL vmlinux 0x29d9f26e cancel_delayed_work_sync -EXPORT_SYMBOL vmlinux 0x29dd267d blk_pre_runtime_suspend -EXPORT_SYMBOL vmlinux 0x29e82c1f scsi_print_sense -EXPORT_SYMBOL vmlinux 0x29fc143b phy_config_aneg -EXPORT_SYMBOL vmlinux 0x2a16dea7 prepare_to_swait_event -EXPORT_SYMBOL vmlinux 0x2a2cce22 md_bitmap_startwrite -EXPORT_SYMBOL vmlinux 0x2a2ce722 fscrypt_ioctl_get_policy +EXPORT_SYMBOL vmlinux 0x29e25e82 file_check_and_advance_wb_err +EXPORT_SYMBOL vmlinux 0x2a0c0aa4 msi_desc_to_pci_dev +EXPORT_SYMBOL vmlinux 0x2a10829d seq_open +EXPORT_SYMBOL vmlinux 0x2a17863c user_revoke +EXPORT_SYMBOL vmlinux 0x2a197e2e gro_find_receive_by_type +EXPORT_SYMBOL vmlinux 0x2a1daf1f scsi_rescan_device EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature -EXPORT_SYMBOL vmlinux 0x2a316b3a phy_ethtool_nway_reset -EXPORT_SYMBOL vmlinux 0x2a34df23 netlink_unicast +EXPORT_SYMBOL vmlinux 0x2a33c84b read_code EXPORT_SYMBOL vmlinux 0x2a3aa678 _test_and_clear_bit -EXPORT_SYMBOL vmlinux 0x2a46bd1d phy_device_register -EXPORT_SYMBOL vmlinux 0x2a650030 pci_ep_cfs_remove_epc_group +EXPORT_SYMBOL vmlinux 0x2a441b5a tcp_release_cb EXPORT_SYMBOL vmlinux 0x2a7864b7 kobject_add -EXPORT_SYMBOL vmlinux 0x2a7b69fe neigh_table_init -EXPORT_SYMBOL vmlinux 0x2a87cc34 buffer_check_dirty_writeback +EXPORT_SYMBOL vmlinux 0x2a85c8b7 of_find_i2c_adapter_by_node +EXPORT_SYMBOL vmlinux 0x2a8fd097 vlan_vid_add EXPORT_SYMBOL vmlinux 0x2a9a3905 vme_master_get -EXPORT_SYMBOL vmlinux 0x2aa083da inet_proto_csum_replace16 EXPORT_SYMBOL vmlinux 0x2aa0e4fc strncasecmp -EXPORT_SYMBOL vmlinux 0x2afcdb93 skb_copy_and_hash_datagram_iter -EXPORT_SYMBOL vmlinux 0x2b10f0a9 pci_irq_get_affinity -EXPORT_SYMBOL vmlinux 0x2b361e33 configfs_unregister_default_group -EXPORT_SYMBOL vmlinux 0x2b52e43f vlan_vid_del -EXPORT_SYMBOL vmlinux 0x2b5b306f jbd2_journal_init_jbd_inode -EXPORT_SYMBOL vmlinux 0x2b6050d9 vme_register_bridge +EXPORT_SYMBOL vmlinux 0x2aab4077 __xfrm_route_forward +EXPORT_SYMBOL vmlinux 0x2ab7301f vlan_dev_vlan_id +EXPORT_SYMBOL vmlinux 0x2aba4606 ip_check_defrag +EXPORT_SYMBOL vmlinux 0x2abfd117 phy_aneg_done +EXPORT_SYMBOL vmlinux 0x2ac115df ipv6_sock_mc_join +EXPORT_SYMBOL vmlinux 0x2acec6f4 vme_dma_request +EXPORT_SYMBOL vmlinux 0x2adc5dfb inet_listen +EXPORT_SYMBOL vmlinux 0x2b153763 rproc_detach +EXPORT_SYMBOL vmlinux 0x2b198ecc reuseport_select_sock +EXPORT_SYMBOL vmlinux 0x2b1dc6fe ip_getsockopt +EXPORT_SYMBOL vmlinux 0x2b51a926 cdev_device_del +EXPORT_SYMBOL vmlinux 0x2b60ba79 mmc_retune_unpause +EXPORT_SYMBOL vmlinux 0x2b674e04 inc_node_page_state EXPORT_SYMBOL vmlinux 0x2b68bd2f del_timer -EXPORT_SYMBOL vmlinux 0x2b74ec8f generic_listxattr -EXPORT_SYMBOL vmlinux 0x2b78c82d mdiobus_is_registered_device -EXPORT_SYMBOL vmlinux 0x2b820473 tcp_disconnect -EXPORT_SYMBOL vmlinux 0x2b822bc6 security_socket_getpeersec_dgram -EXPORT_SYMBOL vmlinux 0x2b8b0fd1 tcp_connect +EXPORT_SYMBOL vmlinux 0x2b868811 __mmap_lock_do_trace_start_locking +EXPORT_SYMBOL vmlinux 0x2b9062f2 generic_set_encrypted_ci_d_ops +EXPORT_SYMBOL vmlinux 0x2b983f79 ppp_output_wakeup +EXPORT_SYMBOL vmlinux 0x2b993488 inode_sub_bytes EXPORT_SYMBOL vmlinux 0x2b99722a __cpu_active_mask -EXPORT_SYMBOL vmlinux 0x2b9a6b40 snd_dma_free_pages EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock -EXPORT_SYMBOL vmlinux 0x2bba8adc d_make_root -EXPORT_SYMBOL vmlinux 0x2bbf153e key_reject_and_link -EXPORT_SYMBOL vmlinux 0x2bcd3924 phy_request_interrupt -EXPORT_SYMBOL vmlinux 0x2beb78b5 dev_mc_sync -EXPORT_SYMBOL vmlinux 0x2bf53983 fixed_size_llseek +EXPORT_SYMBOL vmlinux 0x2ba27fb8 fs_param_is_u32 +EXPORT_SYMBOL vmlinux 0x2bb47929 fuse_mount_destroy +EXPORT_SYMBOL vmlinux 0x2bd1adae sk_reset_timer +EXPORT_SYMBOL vmlinux 0x2be07218 xfrm_find_acq +EXPORT_SYMBOL vmlinux 0x2be47846 skb_eth_pop +EXPORT_SYMBOL vmlinux 0x2bea4e12 disk_end_io_acct +EXPORT_SYMBOL vmlinux 0x2beab160 pcie_get_width_cap +EXPORT_SYMBOL vmlinux 0x2bf2d751 vfs_fileattr_set +EXPORT_SYMBOL vmlinux 0x2bf854d7 rio_query_mport EXPORT_SYMBOL vmlinux 0x2bff5887 xa_destroy -EXPORT_SYMBOL vmlinux 0x2c04843a kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0x2c0d2b2e ptp_find_pin -EXPORT_SYMBOL vmlinux 0x2c189739 skb_coalesce_rx_frag -EXPORT_SYMBOL vmlinux 0x2c247605 __neigh_set_probe_once +EXPORT_SYMBOL vmlinux 0x2c1dba49 phy_modify_paged EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar -EXPORT_SYMBOL vmlinux 0x2c2d1c39 unregister_binfmt -EXPORT_SYMBOL vmlinux 0x2c319a66 xp_raw_get_data -EXPORT_SYMBOL vmlinux 0x2c3cb043 d_obtain_alias +EXPORT_SYMBOL vmlinux 0x2c3055fe snd_pcm_hw_constraint_integer +EXPORT_SYMBOL vmlinux 0x2c317f83 tcf_action_check_ctrlact EXPORT_SYMBOL vmlinux 0x2c42a97b _raw_write_lock_irq -EXPORT_SYMBOL vmlinux 0x2c665a97 discard_new_inode +EXPORT_SYMBOL vmlinux 0x2c5b6c09 of_device_register +EXPORT_SYMBOL vmlinux 0x2c6b446e devm_ioremap_resource EXPORT_SYMBOL vmlinux 0x2c6b6974 __wait_on_bit_lock -EXPORT_SYMBOL vmlinux 0x2c7555a9 input_grab_device +EXPORT_SYMBOL vmlinux 0x2c6bc2da tty_insert_flip_string_flags EXPORT_SYMBOL vmlinux 0x2c7c8e9a pcibios_min_mem EXPORT_SYMBOL vmlinux 0x2c81ec75 __irq_regs -EXPORT_SYMBOL vmlinux 0x2cc6f4d6 jbd2_journal_init_dev -EXPORT_SYMBOL vmlinux 0x2ce1eaed twl6040_get_sysclk +EXPORT_SYMBOL vmlinux 0x2ca9e0a7 ppp_register_net_channel +EXPORT_SYMBOL vmlinux 0x2cb2c7c6 pci_bus_add_devices +EXPORT_SYMBOL vmlinux 0x2cbd4e88 jbd2_journal_ack_err +EXPORT_SYMBOL vmlinux 0x2cccae86 km_new_mapping +EXPORT_SYMBOL vmlinux 0x2cd21f58 dev_getbyhwaddr_rcu +EXPORT_SYMBOL vmlinux 0x2cee278d write_one_page EXPORT_SYMBOL vmlinux 0x2cfde9a2 warn_slowpath_fmt -EXPORT_SYMBOL vmlinux 0x2d02f884 inet_rcv_saddr_equal -EXPORT_SYMBOL vmlinux 0x2d07bbcb dump_skip_to -EXPORT_SYMBOL vmlinux 0x2d0a9b13 ip_tunnel_parse_protocol -EXPORT_SYMBOL vmlinux 0x2d103eae __phy_read_mmd EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock -EXPORT_SYMBOL vmlinux 0x2d15bfe2 truncate_inode_pages_range -EXPORT_SYMBOL vmlinux 0x2d297f5d of_device_alloc +EXPORT_SYMBOL vmlinux 0x2d213064 genl_register_family +EXPORT_SYMBOL vmlinux 0x2d2c9b27 ip_frag_init EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged EXPORT_SYMBOL vmlinux 0x2d3385d3 system_wq +EXPORT_SYMBOL vmlinux 0x2d340d82 __d_lookup_done EXPORT_SYMBOL vmlinux 0x2d39b0a7 kstrdup +EXPORT_SYMBOL vmlinux 0x2d3c3dc3 writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0x2d3d9ecd configfs_undepend_item +EXPORT_SYMBOL vmlinux 0x2d4238e7 lease_modify +EXPORT_SYMBOL vmlinux 0x2d484daf skb_find_text EXPORT_SYMBOL vmlinux 0x2d4c773a hdmi_spd_infoframe_init EXPORT_SYMBOL vmlinux 0x2d4daef5 find_font +EXPORT_SYMBOL vmlinux 0x2d4f5b6e ppp_register_channel +EXPORT_SYMBOL vmlinux 0x2d646570 fs_context_for_reconfigure +EXPORT_SYMBOL vmlinux 0x2d682ea0 __cgroup_bpf_run_filter_sock_ops +EXPORT_SYMBOL vmlinux 0x2d6a5a3b remap_vmalloc_range EXPORT_SYMBOL vmlinux 0x2d6fcc06 __kmalloc +EXPORT_SYMBOL vmlinux 0x2d70e497 vmalloc_to_page +EXPORT_SYMBOL vmlinux 0x2d746089 mpage_writepages +EXPORT_SYMBOL vmlinux 0x2d76b618 mark_page_accessed +EXPORT_SYMBOL vmlinux 0x2d8055f3 xfrm_parse_spi +EXPORT_SYMBOL vmlinux 0x2d83fad1 udp_flush_pending_frames +EXPORT_SYMBOL vmlinux 0x2d8d9e86 inet_addr_type_table EXPORT_SYMBOL vmlinux 0x2d912bca dmi_get_bios_year -EXPORT_SYMBOL vmlinux 0x2d92870f generic_write_end +EXPORT_SYMBOL vmlinux 0x2d92fbc0 phy_support_asym_pause +EXPORT_SYMBOL vmlinux 0x2d940e7f security_inode_listsecurity +EXPORT_SYMBOL vmlinux 0x2d966f64 security_path_mkdir EXPORT_SYMBOL vmlinux 0x2d994605 security_inode_copy_up_xattr -EXPORT_SYMBOL vmlinux 0x2da0df36 param_get_ulong -EXPORT_SYMBOL vmlinux 0x2db093f5 dquot_scan_active -EXPORT_SYMBOL vmlinux 0x2dd8b07f ip6_dst_hoplimit -EXPORT_SYMBOL vmlinux 0x2ddb464d __icmp_send +EXPORT_SYMBOL vmlinux 0x2dab8a74 sk_ns_capable +EXPORT_SYMBOL vmlinux 0x2daf500d block_is_partially_uptodate +EXPORT_SYMBOL vmlinux 0x2dcbec81 tcp_sock_set_keepcnt EXPORT_SYMBOL vmlinux 0x2de125c0 page_frag_alloc_align -EXPORT_SYMBOL vmlinux 0x2df25dcd freeze_bdev -EXPORT_SYMBOL vmlinux 0x2e0070ef icmp6_send -EXPORT_SYMBOL vmlinux 0x2e0f436e dquot_disable -EXPORT_SYMBOL vmlinux 0x2e15a06a dma_resv_fini -EXPORT_SYMBOL vmlinux 0x2e177314 mmc_detect_change +EXPORT_SYMBOL vmlinux 0x2e1c3845 mdiobus_read EXPORT_SYMBOL vmlinux 0x2e1ca751 clk_put -EXPORT_SYMBOL vmlinux 0x2e1fd361 phy_ethtool_set_wol -EXPORT_SYMBOL vmlinux 0x2e290637 udp_gro_receive -EXPORT_SYMBOL vmlinux 0x2e332848 inet_sk_rx_dst_set -EXPORT_SYMBOL vmlinux 0x2e3a25fb vfs_mkdir +EXPORT_SYMBOL vmlinux 0x2e1fef08 __tcf_em_tree_match +EXPORT_SYMBOL vmlinux 0x2e35f2ad phy_ethtool_set_wol EXPORT_SYMBOL vmlinux 0x2e439142 drm_get_panel_orientation_quirk -EXPORT_SYMBOL vmlinux 0x2e4659a9 mdiobus_write_nested -EXPORT_SYMBOL vmlinux 0x2e5cd12a amba_device_unregister +EXPORT_SYMBOL vmlinux 0x2e43c073 con_is_bound +EXPORT_SYMBOL vmlinux 0x2e441175 xfrm_policy_destroy +EXPORT_SYMBOL vmlinux 0x2e54732d _dev_warn +EXPORT_SYMBOL vmlinux 0x2e5fb830 configfs_unregister_subsystem EXPORT_SYMBOL vmlinux 0x2e5fe036 __skb_ext_put -EXPORT_SYMBOL vmlinux 0x2e680752 get_tree_single_reconf -EXPORT_SYMBOL vmlinux 0x2e69f400 udp6_set_csum -EXPORT_SYMBOL vmlinux 0x2e723dc7 netdev_master_upper_dev_get -EXPORT_SYMBOL vmlinux 0x2e7c05f3 xsk_tx_completed -EXPORT_SYMBOL vmlinux 0x2e86c7ff sock_wake_async -EXPORT_SYMBOL vmlinux 0x2e8f6ca7 sound_class -EXPORT_SYMBOL vmlinux 0x2e9937ea md_register_thread -EXPORT_SYMBOL vmlinux 0x2eb76fcf eth_gro_receive -EXPORT_SYMBOL vmlinux 0x2ebd3798 ipv6_chk_custom_prefix +EXPORT_SYMBOL vmlinux 0x2e617216 udp_lib_get_port +EXPORT_SYMBOL vmlinux 0x2e6a378a uart_remove_one_port +EXPORT_SYMBOL vmlinux 0x2e9f2dca d_move +EXPORT_SYMBOL vmlinux 0x2ea163ac con_is_visible +EXPORT_SYMBOL vmlinux 0x2ebf395f do_map_probe +EXPORT_SYMBOL vmlinux 0x2ec0c914 simple_dir_operations EXPORT_SYMBOL vmlinux 0x2ec524ad __kfifo_in_r EXPORT_SYMBOL vmlinux 0x2ec6bba0 errseq_set EXPORT_SYMBOL vmlinux 0x2edeb3d9 posix_acl_from_xattr -EXPORT_SYMBOL vmlinux 0x2edf2e13 kill_fasync -EXPORT_SYMBOL vmlinux 0x2ee6a475 set_anon_super -EXPORT_SYMBOL vmlinux 0x2eee965f snd_pcm_hw_rule_noresample -EXPORT_SYMBOL vmlinux 0x2ef9a45e tcp_sendpage +EXPORT_SYMBOL vmlinux 0x2edfe165 get_ipc_ns_exported +EXPORT_SYMBOL vmlinux 0x2ee3f74c tcp_select_initial_window +EXPORT_SYMBOL vmlinux 0x2ee73cf8 snd_ctl_find_id EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc -EXPORT_SYMBOL vmlinux 0x2f08ca08 param_set_bint -EXPORT_SYMBOL vmlinux 0x2f0ac79f dma_async_tx_descriptor_init +EXPORT_SYMBOL vmlinux 0x2f0c3b99 input_mt_drop_unused +EXPORT_SYMBOL vmlinux 0x2f0e7fcd kthread_create_on_node EXPORT_SYMBOL vmlinux 0x2f1254d1 ucc_tdm_init EXPORT_SYMBOL vmlinux 0x2f1b0d62 ZSTD_insertBlock -EXPORT_SYMBOL vmlinux 0x2f1b9eac blk_rq_init EXPORT_SYMBOL vmlinux 0x2f2e91b2 security_ib_alloc_security EXPORT_SYMBOL vmlinux 0x2f3fcc93 nla_put_nohdr -EXPORT_SYMBOL vmlinux 0x2f444775 genphy_loopback +EXPORT_SYMBOL vmlinux 0x2f40b0d3 mfd_remove_devices_late +EXPORT_SYMBOL vmlinux 0x2f4e4794 seg6_hmac_info_add EXPORT_SYMBOL vmlinux 0x2f50cbf5 proc_doulongvec_minmax +EXPORT_SYMBOL vmlinux 0x2f521f42 sdev_prefix_printk EXPORT_SYMBOL vmlinux 0x2f5b0fdb gen_pool_alloc_algo_owner -EXPORT_SYMBOL vmlinux 0x2f6977b7 scsi_remove_target -EXPORT_SYMBOL vmlinux 0x2f710a28 devfreq_update_interval EXPORT_SYMBOL vmlinux 0x2f7754a8 dma_pool_free -EXPORT_SYMBOL vmlinux 0x2f872d79 scm_fp_dup -EXPORT_SYMBOL vmlinux 0x2fac0a00 xfrm_policy_bysel_ctx -EXPORT_SYMBOL vmlinux 0x2fb0ace3 phy_resume +EXPORT_SYMBOL vmlinux 0x2f8debc2 pci_set_mwi +EXPORT_SYMBOL vmlinux 0x2f9425aa eth_gro_receive +EXPORT_SYMBOL vmlinux 0x2f9a7bbd configfs_depend_item +EXPORT_SYMBOL vmlinux 0x2fa0ea3e blk_cleanup_disk +EXPORT_SYMBOL vmlinux 0x2fa883db __hw_addr_ref_unsync_dev EXPORT_SYMBOL vmlinux 0x2fb6de5d add_device_randomness -EXPORT_SYMBOL vmlinux 0x2fb750b8 remove_conflicting_pci_framebuffers -EXPORT_SYMBOL vmlinux 0x2fc47a30 backlight_device_get_by_type -EXPORT_SYMBOL vmlinux 0x2fc91405 __find_get_block -EXPORT_SYMBOL vmlinux 0x2fcc3395 vc_cons -EXPORT_SYMBOL vmlinux 0x2fd36022 zero_user_segments -EXPORT_SYMBOL vmlinux 0x2fd5a64e block_page_mkwrite -EXPORT_SYMBOL vmlinux 0x2fdad6dd tty_port_tty_get EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier -EXPORT_SYMBOL vmlinux 0x2fe56149 tcf_exts_validate -EXPORT_SYMBOL vmlinux 0x2fe76185 neigh_destroy -EXPORT_SYMBOL vmlinux 0x300597a7 inet_frag_pull_head -EXPORT_SYMBOL vmlinux 0x30096abf mipi_dsi_generic_write -EXPORT_SYMBOL vmlinux 0x3015a9be xsk_clear_tx_need_wakeup -EXPORT_SYMBOL vmlinux 0x30178df0 mmc_start_request -EXPORT_SYMBOL vmlinux 0x301e70a5 __task_pid_nr_ns -EXPORT_SYMBOL vmlinux 0x30222088 __blk_mq_alloc_disk -EXPORT_SYMBOL vmlinux 0x3023e610 generic_fill_statx_attr -EXPORT_SYMBOL vmlinux 0x302f5fb0 netdev_refcnt_read -EXPORT_SYMBOL vmlinux 0x3043cc78 md_reap_sync_thread -EXPORT_SYMBOL vmlinux 0x3045978c ip_getsockopt +EXPORT_SYMBOL vmlinux 0x2ff22d65 phy_ethtool_ksettings_get +EXPORT_SYMBOL vmlinux 0x30021574 empty_zero_page +EXPORT_SYMBOL vmlinux 0x3009dea0 snd_pcm_lib_get_vmalloc_page +EXPORT_SYMBOL vmlinux 0x300a4eb7 invalidate_bdev +EXPORT_SYMBOL vmlinux 0x301f7a63 netdev_class_create_file_ns +EXPORT_SYMBOL vmlinux 0x302591fd sk_stream_error +EXPORT_SYMBOL vmlinux 0x302a744d nf_getsockopt +EXPORT_SYMBOL vmlinux 0x304eb30f get_acl +EXPORT_SYMBOL vmlinux 0x3052c5bd configfs_register_group EXPORT_SYMBOL vmlinux 0x3052fecd ptp_convert_timestamp -EXPORT_SYMBOL vmlinux 0x30582fd7 nand_write_oob_std -EXPORT_SYMBOL vmlinux 0x305defc3 jbd2_fc_end_commit -EXPORT_SYMBOL vmlinux 0x305f5dfb vfs_dedupe_file_range_one -EXPORT_SYMBOL vmlinux 0x306708f2 scsi_vpd_tpg_id -EXPORT_SYMBOL vmlinux 0x3069905f devm_extcon_unregister_notifier_all -EXPORT_SYMBOL vmlinux 0x306e0dfb security_inode_invalidate_secctx -EXPORT_SYMBOL vmlinux 0x3073fc5f bio_chain +EXPORT_SYMBOL vmlinux 0x305af4e1 dm_table_get_mode +EXPORT_SYMBOL vmlinux 0x305d0bd9 netdev_bind_sb_channel_queue +EXPORT_SYMBOL vmlinux 0x305f333d tcf_block_put +EXPORT_SYMBOL vmlinux 0x306b52a6 snd_pcm_kernel_ioctl +EXPORT_SYMBOL vmlinux 0x30741867 iptun_encaps EXPORT_SYMBOL vmlinux 0x30745185 wait_for_completion_interruptible -EXPORT_SYMBOL vmlinux 0x30905ca1 jbd2_wait_inode_data -EXPORT_SYMBOL vmlinux 0x30922201 cdrom_mode_select +EXPORT_SYMBOL vmlinux 0x308cb18c inet_pton_with_scope EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep +EXPORT_SYMBOL vmlinux 0x3097a5bb flow_rule_match_enc_control +EXPORT_SYMBOL vmlinux 0x30a3bc29 snd_ctl_register_ioctl EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user -EXPORT_SYMBOL vmlinux 0x30acf4e6 put_cmsg_scm_timestamping +EXPORT_SYMBOL vmlinux 0x30aa13e9 md_bitmap_update_sb EXPORT_SYMBOL vmlinux 0x30acfde9 hsiphash_2u32 -EXPORT_SYMBOL vmlinux 0x30b77b2b nand_read_page_raw EXPORT_SYMBOL vmlinux 0x30d9a471 gen_pool_create +EXPORT_SYMBOL vmlinux 0x30dcaf9e __dquot_free_space +EXPORT_SYMBOL vmlinux 0x30e2469b phy_get_c45_ids EXPORT_SYMBOL vmlinux 0x30e74134 tty_termios_copy_hw -EXPORT_SYMBOL vmlinux 0x30f03faf pci_enable_device -EXPORT_SYMBOL vmlinux 0x30fbc245 bio_endio +EXPORT_SYMBOL vmlinux 0x30f40b00 reuseport_migrate_sock EXPORT_SYMBOL vmlinux 0x3102d70b frontswap_curr_pages -EXPORT_SYMBOL vmlinux 0x31109644 framebuffer_alloc -EXPORT_SYMBOL vmlinux 0x31232ac5 __scsi_execute +EXPORT_SYMBOL vmlinux 0x310309b4 pci_enable_wake +EXPORT_SYMBOL vmlinux 0x31245998 __xfrm_policy_check EXPORT_SYMBOL vmlinux 0x3126a9e8 siphash_1u64 -EXPORT_SYMBOL vmlinux 0x313dbd8b kmem_cache_free -EXPORT_SYMBOL vmlinux 0x313ee335 phy_read_paged +EXPORT_SYMBOL vmlinux 0x312e0d54 vme_init_bridge +EXPORT_SYMBOL vmlinux 0x31386e63 udp_read_sock EXPORT_SYMBOL vmlinux 0x314b20c8 scnprintf -EXPORT_SYMBOL vmlinux 0x3161e72e snd_timer_global_register +EXPORT_SYMBOL vmlinux 0x3154b027 blk_rq_map_kern +EXPORT_SYMBOL vmlinux 0x315ec48a genphy_handle_interrupt_no_ack +EXPORT_SYMBOL vmlinux 0x31607786 dcb_ieee_setapp +EXPORT_SYMBOL vmlinux 0x316a6300 key_payload_reserve +EXPORT_SYMBOL vmlinux 0x3181767f __skb_warn_lro_forwarding EXPORT_SYMBOL vmlinux 0x31891e4c utf8nagemin -EXPORT_SYMBOL vmlinux 0x318dfa9a page_pool_destroy -EXPORT_SYMBOL vmlinux 0x318e2da5 serial8250_do_pm -EXPORT_SYMBOL vmlinux 0x319d1e4e inet_proto_csum_replace4 +EXPORT_SYMBOL vmlinux 0x319deb76 dquot_transfer +EXPORT_SYMBOL vmlinux 0x319e2959 tty_driver_kref_put EXPORT_SYMBOL vmlinux 0x31a4767f qcom_scm_hdcp_available -EXPORT_SYMBOL vmlinux 0x31bd2799 d_tmpfile -EXPORT_SYMBOL vmlinux 0x31cafef0 backlight_device_set_brightness -EXPORT_SYMBOL vmlinux 0x31cbd4e9 __wait_on_buffer -EXPORT_SYMBOL vmlinux 0x31d4f746 vfs_getattr_nosec -EXPORT_SYMBOL vmlinux 0x31e539ed tso_build_data -EXPORT_SYMBOL vmlinux 0x31f20d0e mmc_wait_for_req -EXPORT_SYMBOL vmlinux 0x3201aa7f dcbnl_ieee_notify -EXPORT_SYMBOL vmlinux 0x3202d982 devfreq_suspend_device -EXPORT_SYMBOL vmlinux 0x32075e49 __mdiobus_write -EXPORT_SYMBOL vmlinux 0x320fa0ff dma_resv_reserve_shared -EXPORT_SYMBOL vmlinux 0x321ee6f4 blk_mq_alloc_tag_set +EXPORT_SYMBOL vmlinux 0x31ab4cc9 ethtool_virtdev_set_link_ksettings +EXPORT_SYMBOL vmlinux 0x31b4edd8 inet_register_protosw +EXPORT_SYMBOL vmlinux 0x31c011df dev_uc_add_excl +EXPORT_SYMBOL vmlinux 0x31ea6961 unregister_mtd_chip_driver +EXPORT_SYMBOL vmlinux 0x31ef38eb alloc_fddidev +EXPORT_SYMBOL vmlinux 0x3200e1f8 mipi_dsi_turn_on_peripheral +EXPORT_SYMBOL vmlinux 0x320dc21b of_graph_get_port_by_id +EXPORT_SYMBOL vmlinux 0x3210901e scsi_print_result +EXPORT_SYMBOL vmlinux 0x32174a84 iov_iter_init +EXPORT_SYMBOL vmlinux 0x321755ae param_set_byte +EXPORT_SYMBOL vmlinux 0x32253edf twl6030_mmc_card_detect +EXPORT_SYMBOL vmlinux 0x32292ff5 locks_init_lock +EXPORT_SYMBOL vmlinux 0x322a8447 mdiobus_is_registered_device EXPORT_SYMBOL vmlinux 0x32394d4b qe_issue_cmd +EXPORT_SYMBOL vmlinux 0x323c8de3 pci_request_regions EXPORT_SYMBOL vmlinux 0x32430023 _totalhigh_pages -EXPORT_SYMBOL vmlinux 0x3251f959 netif_skb_features -EXPORT_SYMBOL vmlinux 0x32632d72 sock_kmalloc -EXPORT_SYMBOL vmlinux 0x3279770d ip6_dst_alloc +EXPORT_SYMBOL vmlinux 0x32683c2c get_tz_trend +EXPORT_SYMBOL vmlinux 0x32740df1 md_bitmap_sync_with_cluster +EXPORT_SYMBOL vmlinux 0x3277ea6a dev_trans_start EXPORT_SYMBOL vmlinux 0x327c84bf vme_lm_attach EXPORT_SYMBOL vmlinux 0x3283e6b0 prandom_seed_full_state +EXPORT_SYMBOL vmlinux 0x32840d53 neigh_sysctl_register EXPORT_SYMBOL vmlinux 0x328a05f1 strncpy -EXPORT_SYMBOL vmlinux 0x328dc9c0 serio_unregister_child_port -EXPORT_SYMBOL vmlinux 0x32c369e4 dquot_quota_on_mount +EXPORT_SYMBOL vmlinux 0x32987773 netdev_lower_get_next_private_rcu +EXPORT_SYMBOL vmlinux 0x329d5e0d of_graph_get_port_parent +EXPORT_SYMBOL vmlinux 0x32bf1bec skb_udp_tunnel_segment +EXPORT_SYMBOL vmlinux 0x32c2781a crypto_sha256_finup +EXPORT_SYMBOL vmlinux 0x32c59987 elv_bio_merge_ok EXPORT_SYMBOL vmlinux 0x32ce3777 radix_tree_preload -EXPORT_SYMBOL vmlinux 0x32d4b27b mmc_retune_timer_stop -EXPORT_SYMBOL vmlinux 0x32eab2d2 request_firmware_nowait -EXPORT_SYMBOL vmlinux 0x32eb936b pci_bus_read_config_dword +EXPORT_SYMBOL vmlinux 0x32d136cd snd_pcm_set_sync +EXPORT_SYMBOL vmlinux 0x32e55e0b __xfrm_init_state EXPORT_SYMBOL vmlinux 0x32ee1630 cred_fscmp -EXPORT_SYMBOL vmlinux 0x3310b9b8 netdev_bonding_info_change -EXPORT_SYMBOL vmlinux 0x332de2bb pci_read_config_byte -EXPORT_SYMBOL vmlinux 0x3334f9ed scsi_get_device_flags_keyed -EXPORT_SYMBOL vmlinux 0x334dd6b8 inode_sub_bytes -EXPORT_SYMBOL vmlinux 0x338372c3 d_set_fallthru -EXPORT_SYMBOL vmlinux 0x33ac46f2 snd_pcm_new_internal -EXPORT_SYMBOL vmlinux 0x33d5f261 dev_set_promiscuity +EXPORT_SYMBOL vmlinux 0x32f01d6c mdio_driver_unregister +EXPORT_SYMBOL vmlinux 0x32f39b7a devm_backlight_device_register +EXPORT_SYMBOL vmlinux 0x32f5c7f6 xfrm_state_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x32f6421e register_netdevice +EXPORT_SYMBOL vmlinux 0x3315f9e3 phy_device_remove +EXPORT_SYMBOL vmlinux 0x332f51be mmc_gpiod_request_cd_irq +EXPORT_SYMBOL vmlinux 0x33353723 security_locked_down +EXPORT_SYMBOL vmlinux 0x33355a87 __neigh_create +EXPORT_SYMBOL vmlinux 0x3347461b blk_mq_delay_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x334c452f dqget +EXPORT_SYMBOL vmlinux 0x3381dbb7 bioset_init +EXPORT_SYMBOL vmlinux 0x33887a68 kernel_getpeername +EXPORT_SYMBOL vmlinux 0x33a2692c i2c_get_adapter +EXPORT_SYMBOL vmlinux 0x33b73f76 blk_queue_physical_block_size +EXPORT_SYMBOL vmlinux 0x33bb2579 remove_proc_subtree +EXPORT_SYMBOL vmlinux 0x33db1618 fb_prepare_logo EXPORT_SYMBOL vmlinux 0x33dbfd93 tcp_memory_allocated +EXPORT_SYMBOL vmlinux 0x33eb1e5f get_user_pages EXPORT_SYMBOL vmlinux 0x33f0768c cpufreq_quick_get_max -EXPORT_SYMBOL vmlinux 0x33f83838 fs_param_is_string EXPORT_SYMBOL vmlinux 0x33fc2a31 get_user_ifreq -EXPORT_SYMBOL vmlinux 0x33fdfa1c dev_get_flags -EXPORT_SYMBOL vmlinux 0x33fe41cc flow_rule_match_mpls -EXPORT_SYMBOL vmlinux 0x3405f311 xfrm_unregister_type -EXPORT_SYMBOL vmlinux 0x3411ca9d rawnand_sw_hamming_cleanup -EXPORT_SYMBOL vmlinux 0x3413d9c6 proto_unregister -EXPORT_SYMBOL vmlinux 0x3414f6b0 __skb_checksum +EXPORT_SYMBOL vmlinux 0x33fd9462 bmap EXPORT_SYMBOL vmlinux 0x341dbfa3 __per_cpu_offset -EXPORT_SYMBOL vmlinux 0x3422e380 pcie_get_mps -EXPORT_SYMBOL vmlinux 0x345d5194 xfrm_state_alloc -EXPORT_SYMBOL vmlinux 0x34666256 blk_dump_rq_flags -EXPORT_SYMBOL vmlinux 0x348d7dec mmc_retune_pause +EXPORT_SYMBOL vmlinux 0x34270b94 pci_bus_read_dev_vendor_id +EXPORT_SYMBOL vmlinux 0x344a7a06 __neigh_for_each_release +EXPORT_SYMBOL vmlinux 0x347074e6 ip_sock_set_pktinfo +EXPORT_SYMBOL vmlinux 0x3485d845 ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0x34892d75 inet_sendmsg +EXPORT_SYMBOL vmlinux 0x349b2cf7 tty_port_carrier_raised EXPORT_SYMBOL vmlinux 0x349b4277 xa_clear_mark EXPORT_SYMBOL vmlinux 0x349cba85 strchr EXPORT_SYMBOL vmlinux 0x34a04d71 radix_tree_delete_item -EXPORT_SYMBOL vmlinux 0x34ab6c27 simple_dir_operations -EXPORT_SYMBOL vmlinux 0x34bb5b10 proc_create_seq_private -EXPORT_SYMBOL vmlinux 0x34c1b5c7 inet_frag_queue_insert +EXPORT_SYMBOL vmlinux 0x34a15903 blk_put_request +EXPORT_SYMBOL vmlinux 0x34ad3c62 _copy_from_iter +EXPORT_SYMBOL vmlinux 0x34ad7635 uart_get_divisor +EXPORT_SYMBOL vmlinux 0x34b1c6d4 scsi_report_device_reset +EXPORT_SYMBOL vmlinux 0x34b2ad8b padata_set_cpumask +EXPORT_SYMBOL vmlinux 0x34c5787f mnt_set_expiry EXPORT_SYMBOL vmlinux 0x34c7cdbc lookup_bdev EXPORT_SYMBOL vmlinux 0x34ca145c kstrtou8_from_user -EXPORT_SYMBOL vmlinux 0x34e96918 brioctl_set +EXPORT_SYMBOL vmlinux 0x34cea87a drop_super +EXPORT_SYMBOL vmlinux 0x34daa32b nf_log_packet +EXPORT_SYMBOL vmlinux 0x34ee3bf3 __xfrm_dst_lookup EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue -EXPORT_SYMBOL vmlinux 0x35082229 set_blocksize -EXPORT_SYMBOL vmlinux 0x350de011 write_cache_pages -EXPORT_SYMBOL vmlinux 0x35106b83 __d_drop +EXPORT_SYMBOL vmlinux 0x3500d429 tcp_stream_memory_free +EXPORT_SYMBOL vmlinux 0x350eda11 inet_frag_queue_insert +EXPORT_SYMBOL vmlinux 0x35116e77 tcp_shutdown EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier -EXPORT_SYMBOL vmlinux 0x35176e9c __cleancache_invalidate_fs -EXPORT_SYMBOL vmlinux 0x3524b2f4 pagevec_lookup_range -EXPORT_SYMBOL vmlinux 0x3539bef4 ilookup5_nowait +EXPORT_SYMBOL vmlinux 0x3526617c mmc_can_discard +EXPORT_SYMBOL vmlinux 0x35332906 phy_ethtool_set_link_ksettings +EXPORT_SYMBOL vmlinux 0x35345920 nf_ip6_checksum EXPORT_SYMBOL vmlinux 0x353e3fa5 __get_user_4 -EXPORT_SYMBOL vmlinux 0x3542117d put_watch_queue -EXPORT_SYMBOL vmlinux 0x3557999c snd_power_wait +EXPORT_SYMBOL vmlinux 0x3550435c pfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0x355ac316 nand_monolithic_write_page_raw EXPORT_SYMBOL vmlinux 0x3560e651 kmemdup_nul EXPORT_SYMBOL vmlinux 0x356461c8 rtc_time64_to_tm -EXPORT_SYMBOL vmlinux 0x357c4653 filemap_flush -EXPORT_SYMBOL vmlinux 0x35860cb5 xattr_full_name +EXPORT_SYMBOL vmlinux 0x3576527b dcache_dir_lseek +EXPORT_SYMBOL vmlinux 0x3588f45d ip_ct_attach +EXPORT_SYMBOL vmlinux 0x3589cdd6 bio_free_pages +EXPORT_SYMBOL vmlinux 0x358c2d47 twl6040_get_sysclk +EXPORT_SYMBOL vmlinux 0x358fd45f vfs_create +EXPORT_SYMBOL vmlinux 0x358fe4ac deactivate_super +EXPORT_SYMBOL vmlinux 0x359950dc pcim_set_mwi +EXPORT_SYMBOL vmlinux 0x35a32d7f page_address +EXPORT_SYMBOL vmlinux 0x35a855e1 mipi_dsi_host_unregister EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 -EXPORT_SYMBOL vmlinux 0x35cd962b tcp_mss_to_mtu -EXPORT_SYMBOL vmlinux 0x35dbe835 d_obtain_root +EXPORT_SYMBOL vmlinux 0x35ca9f4a dev_get_by_name +EXPORT_SYMBOL vmlinux 0x35da5a2c nf_log_unbind_pf +EXPORT_SYMBOL vmlinux 0x35e03b15 mmc_of_parse +EXPORT_SYMBOL vmlinux 0x35e0f31d kthread_bind +EXPORT_SYMBOL vmlinux 0x35e4e503 __alloc_pages EXPORT_SYMBOL vmlinux 0x35ea78f5 atomic_io_modify_relaxed +EXPORT_SYMBOL vmlinux 0x35ee5652 dev_get_flags +EXPORT_SYMBOL vmlinux 0x3600b3ac sg_miter_skip +EXPORT_SYMBOL vmlinux 0x360ac162 pm_vt_switch_required EXPORT_SYMBOL vmlinux 0x360b1afe probe_irq_mask +EXPORT_SYMBOL vmlinux 0x360b87e5 seq_put_decimal_ll EXPORT_SYMBOL vmlinux 0x3612c10f tmio_core_mmc_enable -EXPORT_SYMBOL vmlinux 0x363a1971 mmc_can_gpio_cd -EXPORT_SYMBOL vmlinux 0x364d66d8 scsi_target_quiesce +EXPORT_SYMBOL vmlinux 0x3619d613 pagecache_write_begin +EXPORT_SYMBOL vmlinux 0x362eb1ea pldmfw_op_pci_match_record +EXPORT_SYMBOL vmlinux 0x36333fe9 mmc_release_host +EXPORT_SYMBOL vmlinux 0x363f82cb dev_loopback_xmit +EXPORT_SYMBOL vmlinux 0x36409131 dquot_get_next_dqblk +EXPORT_SYMBOL vmlinux 0x3647fdd4 fscrypt_free_inode +EXPORT_SYMBOL vmlinux 0x3656074f sock_set_priority +EXPORT_SYMBOL vmlinux 0x3657a323 skb_recv_datagram EXPORT_SYMBOL vmlinux 0x36588e6a tcp_hashinfo EXPORT_SYMBOL vmlinux 0x365acda7 set_normalized_timespec64 EXPORT_SYMBOL vmlinux 0x365e7911 kstrdup_const -EXPORT_SYMBOL vmlinux 0x367e6417 pci_scan_bridge -EXPORT_SYMBOL vmlinux 0x369e06a5 phy_attached_info -EXPORT_SYMBOL vmlinux 0x36a8b857 __scsi_print_sense +EXPORT_SYMBOL vmlinux 0x3664b6c1 pci_find_capability +EXPORT_SYMBOL vmlinux 0x36678905 bio_uninit +EXPORT_SYMBOL vmlinux 0x36af2752 vlan_filter_push_vids EXPORT_SYMBOL vmlinux 0x36af5e35 bpf_sk_lookup_enabled +EXPORT_SYMBOL vmlinux 0x36b17c14 dm_register_target +EXPORT_SYMBOL vmlinux 0x36c8ac92 pci_read_vpd EXPORT_SYMBOL vmlinux 0x36d69557 ipv6_flowlabel_exclusive -EXPORT_SYMBOL vmlinux 0x36e610a3 tcp_v4_mtu_reduced -EXPORT_SYMBOL vmlinux 0x3704e33c param_ops_byte -EXPORT_SYMBOL vmlinux 0x3718c670 __page_symlink -EXPORT_SYMBOL vmlinux 0x37249fc3 dev_printk_emit -EXPORT_SYMBOL vmlinux 0x3735def3 blk_get_request +EXPORT_SYMBOL vmlinux 0x36f2d099 dev_get_port_parent_id +EXPORT_SYMBOL vmlinux 0x37193e9e blk_pre_runtime_resume EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn -EXPORT_SYMBOL vmlinux 0x3745b46d pci_clear_master EXPORT_SYMBOL vmlinux 0x374b47eb ZSTD_findDecompressedSize +EXPORT_SYMBOL vmlinux 0x374e95c5 __i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0x3751316a of_find_mipi_dsi_host_by_node EXPORT_SYMBOL vmlinux 0x3755f990 gf128mul_init_64k_bbe -EXPORT_SYMBOL vmlinux 0x375ec7d1 fget -EXPORT_SYMBOL vmlinux 0x377bed55 passthru_features_check -EXPORT_SYMBOL vmlinux 0x3792717c address_space_init_once +EXPORT_SYMBOL vmlinux 0x377e7907 reuseport_attach_prog +EXPORT_SYMBOL vmlinux 0x37897892 dev_change_proto_down_reason +EXPORT_SYMBOL vmlinux 0x378d2c31 phy_remove_link_mode +EXPORT_SYMBOL vmlinux 0x378fe249 netif_device_detach EXPORT_SYMBOL vmlinux 0x3796bdcc snd_pcm_format_little_endian -EXPORT_SYMBOL vmlinux 0x37973348 __sock_create -EXPORT_SYMBOL vmlinux 0x37a7792c skb_flow_get_icmp_tci -EXPORT_SYMBOL vmlinux 0x37aebce8 fscrypt_free_bounce_page +EXPORT_SYMBOL vmlinux 0x37aa11c2 param_ops_uint EXPORT_SYMBOL vmlinux 0x37b022f9 sg_split EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs EXPORT_SYMBOL vmlinux 0x37db8f19 dmi_get_date -EXPORT_SYMBOL vmlinux 0x37e74d67 netif_rx -EXPORT_SYMBOL vmlinux 0x37f53a27 inet_stream_ops +EXPORT_SYMBOL vmlinux 0x37ee6822 mmc_wait_for_req_done EXPORT_SYMBOL vmlinux 0x37f614b7 __kfifo_len_r -EXPORT_SYMBOL vmlinux 0x37fa97d0 set_create_files_as -EXPORT_SYMBOL vmlinux 0x3802d9e6 skb_split -EXPORT_SYMBOL vmlinux 0x3810ff82 tcf_em_tree_validate +EXPORT_SYMBOL vmlinux 0x37fe7c55 stream_open +EXPORT_SYMBOL vmlinux 0x38152558 iov_iter_advance +EXPORT_SYMBOL vmlinux 0x381594ba sock_set_keepalive EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus -EXPORT_SYMBOL vmlinux 0x382cd774 seq_file_path -EXPORT_SYMBOL vmlinux 0x3839e34c jbd2_journal_clear_err +EXPORT_SYMBOL vmlinux 0x3820765c simple_recursive_removal +EXPORT_SYMBOL vmlinux 0x383ec3ed dev_load +EXPORT_SYMBOL vmlinux 0x384156cd tcp_seq_next EXPORT_SYMBOL vmlinux 0x3842b3a6 unix_gc_lock EXPORT_SYMBOL vmlinux 0x3854774b kstrtoll -EXPORT_SYMBOL vmlinux 0x3866dc1d skb_store_bits +EXPORT_SYMBOL vmlinux 0x385f7f0b fb_find_mode EXPORT_SYMBOL vmlinux 0x386d9ce9 radix_tree_lookup -EXPORT_SYMBOL vmlinux 0x387f7f64 fiemap_prep -EXPORT_SYMBOL vmlinux 0x3881b150 mdio_bus_type +EXPORT_SYMBOL vmlinux 0x38783d17 tcp_create_openreq_child EXPORT_SYMBOL vmlinux 0x38869d88 kstat +EXPORT_SYMBOL vmlinux 0x388aaafe fs_param_is_string EXPORT_SYMBOL vmlinux 0x3891ffc8 ecryptfs_fill_auth_tok -EXPORT_SYMBOL vmlinux 0x389595a1 inet_twsk_deschedule_put EXPORT_SYMBOL vmlinux 0x389acf0c gpmc_configure EXPORT_SYMBOL vmlinux 0x389ecf9e __bswapdi2 EXPORT_SYMBOL vmlinux 0x38a71b7e pci_free_resource_list EXPORT_SYMBOL vmlinux 0x38a9f7c5 in6addr_loopback -EXPORT_SYMBOL vmlinux 0x38b4b0f3 genphy_restart_aneg -EXPORT_SYMBOL vmlinux 0x38b60752 cros_ec_get_next_event -EXPORT_SYMBOL vmlinux 0x38bd5541 param_set_bool -EXPORT_SYMBOL vmlinux 0x38c774c2 vme_dma_list_add +EXPORT_SYMBOL vmlinux 0x38c789f6 flow_block_cb_priv +EXPORT_SYMBOL vmlinux 0x38ce1137 __splice_from_pipe +EXPORT_SYMBOL vmlinux 0x38ce596f rproc_set_firmware +EXPORT_SYMBOL vmlinux 0x38d3fba2 splice_direct_to_actor EXPORT_SYMBOL vmlinux 0x38de402b call_usermodehelper_exec -EXPORT_SYMBOL vmlinux 0x38e5a173 devm_memremap -EXPORT_SYMBOL vmlinux 0x38e7b64e fs_param_is_path -EXPORT_SYMBOL vmlinux 0x38ec34f9 nand_monolithic_write_page_raw EXPORT_SYMBOL vmlinux 0x38f48af7 put_user_ifreq -EXPORT_SYMBOL vmlinux 0x390cd4e1 vfs_fadvise -EXPORT_SYMBOL vmlinux 0x3919e1f3 cros_ec_get_host_event +EXPORT_SYMBOL vmlinux 0x3916d7d2 locks_lock_inode_wait +EXPORT_SYMBOL vmlinux 0x392d31b7 gro_cells_init EXPORT_SYMBOL vmlinux 0x3939f8f0 rfkill_pause_polling +EXPORT_SYMBOL vmlinux 0x393ab298 generic_file_splice_read EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p EXPORT_SYMBOL vmlinux 0x394a1e11 phy_sfp_attach +EXPORT_SYMBOL vmlinux 0x39532132 cont_write_begin EXPORT_SYMBOL vmlinux 0x3971b4df snd_ecards_limit +EXPORT_SYMBOL vmlinux 0x397eeac2 dev_mc_del +EXPORT_SYMBOL vmlinux 0x397ffbbf __fs_parse +EXPORT_SYMBOL vmlinux 0x3982c128 dev_uc_init +EXPORT_SYMBOL vmlinux 0x3991aa0d tcf_chain_put_by_act EXPORT_SYMBOL vmlinux 0x3992bc63 __xa_set_mark EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow -EXPORT_SYMBOL vmlinux 0x39a90820 d_hash_and_lookup -EXPORT_SYMBOL vmlinux 0x39af939f inet_csk_prepare_forced_close +EXPORT_SYMBOL vmlinux 0x399f9538 vfs_create_mount +EXPORT_SYMBOL vmlinux 0x39a34159 unregister_filesystem +EXPORT_SYMBOL vmlinux 0x39a34a16 netdev_adjacent_change_abort EXPORT_SYMBOL vmlinux 0x39b52d19 __bitmap_and EXPORT_SYMBOL vmlinux 0x39bf9301 _snd_pcm_hw_param_setempty +EXPORT_SYMBOL vmlinux 0x39c18e68 skb_page_frag_refill EXPORT_SYMBOL vmlinux 0x39c88fd5 flush_rcu_work -EXPORT_SYMBOL vmlinux 0x39ce0ac1 mount_bdev -EXPORT_SYMBOL vmlinux 0x39e60e62 ipv6_setsockopt -EXPORT_SYMBOL vmlinux 0x39ef5612 ip_options_rcv_srr -EXPORT_SYMBOL vmlinux 0x3a01c5bc security_sock_rcv_skb +EXPORT_SYMBOL vmlinux 0x39dac93f tty_vhangup +EXPORT_SYMBOL vmlinux 0x39ee93fb ipv6_push_frag_opts +EXPORT_SYMBOL vmlinux 0x3a0358a2 unregister_tcf_proto_ops EXPORT_SYMBOL vmlinux 0x3a13f54a sgl_alloc -EXPORT_SYMBOL vmlinux 0x3a1c0c52 kernel_sendmsg_locked -EXPORT_SYMBOL vmlinux 0x3a1d36c5 crypto_sha1_finup -EXPORT_SYMBOL vmlinux 0x3a2a34b2 pci_bus_alloc_resource +EXPORT_SYMBOL vmlinux 0x3a179f62 security_inode_getsecctx EXPORT_SYMBOL vmlinux 0x3a2f6702 sg_alloc_table -EXPORT_SYMBOL vmlinux 0x3a310e6a fs_param_is_blob -EXPORT_SYMBOL vmlinux 0x3a33e96f netdev_notify_peers +EXPORT_SYMBOL vmlinux 0x3a3071f8 block_write_begin +EXPORT_SYMBOL vmlinux 0x3a41cc8b blk_mq_free_tag_set EXPORT_SYMBOL vmlinux 0x3a4f9d28 rng_is_initialized -EXPORT_SYMBOL vmlinux 0x3a568cfc zap_page_range -EXPORT_SYMBOL vmlinux 0x3aa1a71d tcp_add_backlog +EXPORT_SYMBOL vmlinux 0x3a61ca80 devm_mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0x3a7e3145 xfrm4_protocol_deregister +EXPORT_SYMBOL vmlinux 0x3a86607d pci_read_config_word +EXPORT_SYMBOL vmlinux 0x3a8a260a md_bitmap_startwrite +EXPORT_SYMBOL vmlinux 0x3a8d736a serio_bus +EXPORT_SYMBOL vmlinux 0x3aa9aa5d find_inode_rcu EXPORT_SYMBOL vmlinux 0x3aab2fee nla_reserve_nohdr -EXPORT_SYMBOL vmlinux 0x3aabc7a4 pci_read_config_word EXPORT_SYMBOL vmlinux 0x3ab7b1cc scsi_set_sense_field_pointer -EXPORT_SYMBOL vmlinux 0x3ac0f995 snd_card_set_id -EXPORT_SYMBOL vmlinux 0x3ac1a148 mark_buffer_async_write +EXPORT_SYMBOL vmlinux 0x3abb18cb qdisc_offload_dump_helper EXPORT_SYMBOL vmlinux 0x3ad6fd8e krait_get_l2_indirect_reg -EXPORT_SYMBOL vmlinux 0x3ae2acbc pcibios_fixup_bus -EXPORT_SYMBOL vmlinux 0x3b20f8c1 iget_locked +EXPORT_SYMBOL vmlinux 0x3ae11fee of_node_name_prefix +EXPORT_SYMBOL vmlinux 0x3aeeaa30 elv_rb_del +EXPORT_SYMBOL vmlinux 0x3af1e255 get_thermal_instance +EXPORT_SYMBOL vmlinux 0x3b002294 tcp_peek_len +EXPORT_SYMBOL vmlinux 0x3b08c0f7 snd_device_register EXPORT_SYMBOL vmlinux 0x3b299067 percpu_counter_set -EXPORT_SYMBOL vmlinux 0x3b398fd1 jbd2_log_wait_commit +EXPORT_SYMBOL vmlinux 0x3b314252 security_sk_classify_flow EXPORT_SYMBOL vmlinux 0x3b40879d check_zeroed_user -EXPORT_SYMBOL vmlinux 0x3b4f0d0b inet6_register_protosw +EXPORT_SYMBOL vmlinux 0x3b517499 netdev_refcnt_read EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left EXPORT_SYMBOL vmlinux 0x3b6c41ea kstrtouint -EXPORT_SYMBOL vmlinux 0x3b86e794 dev_get_phys_port_name -EXPORT_SYMBOL vmlinux 0x3b980f96 pm860x_page_bulk_read -EXPORT_SYMBOL vmlinux 0x3ba312c1 pcim_enable_device -EXPORT_SYMBOL vmlinux 0x3bb50e54 tcf_action_dump_1 -EXPORT_SYMBOL vmlinux 0x3bb6a455 bioset_exit +EXPORT_SYMBOL vmlinux 0x3b715a57 sget +EXPORT_SYMBOL vmlinux 0x3b76ca9d __bforget +EXPORT_SYMBOL vmlinux 0x3b887057 blk_queue_max_discard_sectors +EXPORT_SYMBOL vmlinux 0x3b909149 genphy_write_mmd_unsupported +EXPORT_SYMBOL vmlinux 0x3b9b0c81 security_inet_conn_request +EXPORT_SYMBOL vmlinux 0x3bb8fb43 dcbnl_cee_notify EXPORT_SYMBOL vmlinux 0x3bbf46ea vga_base -EXPORT_SYMBOL vmlinux 0x3bcbd1f5 neigh_parms_alloc -EXPORT_SYMBOL vmlinux 0x3bd4044a mipi_dsi_dcs_set_display_brightness -EXPORT_SYMBOL vmlinux 0x3bdcd5f0 inet6_offloads -EXPORT_SYMBOL vmlinux 0x3be518d2 make_kprojid +EXPORT_SYMBOL vmlinux 0x3bcf4690 snd_jack_set_key +EXPORT_SYMBOL vmlinux 0x3bd52da7 simple_rename +EXPORT_SYMBOL vmlinux 0x3bdea963 skb_csum_hwoffload_help +EXPORT_SYMBOL vmlinux 0x3bdebb10 kmem_cache_free EXPORT_SYMBOL vmlinux 0x3be7643e security_xfrm_policy_free -EXPORT_SYMBOL vmlinux 0x3bf7fc29 csum_and_copy_to_iter -EXPORT_SYMBOL vmlinux 0x3bf8862a try_to_writeback_inodes_sb -EXPORT_SYMBOL vmlinux 0x3c0b4e62 hmm_range_fault +EXPORT_SYMBOL vmlinux 0x3c095d3b tcp_timewait_state_process EXPORT_SYMBOL vmlinux 0x3c185c61 page_put_link -EXPORT_SYMBOL vmlinux 0x3c2bf28a pci_bus_type -EXPORT_SYMBOL vmlinux 0x3c3012cb udp_skb_destructor +EXPORT_SYMBOL vmlinux 0x3c221dc2 inet_twsk_deschedule_put +EXPORT_SYMBOL vmlinux 0x3c2a721c nand_ecc_sw_hamming_cleanup_ctx EXPORT_SYMBOL vmlinux 0x3c3215c4 qe_immr -EXPORT_SYMBOL vmlinux 0x3c3e165b crypto_sha256_finup EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip EXPORT_SYMBOL vmlinux 0x3c3ff9fd sprintf -EXPORT_SYMBOL vmlinux 0x3c56b679 dev_mc_del_global +EXPORT_SYMBOL vmlinux 0x3c5e6e29 blkdev_issue_write_same EXPORT_SYMBOL vmlinux 0x3c60315c ioremap_cache -EXPORT_SYMBOL vmlinux 0x3c618a5d sock_no_recvmsg -EXPORT_SYMBOL vmlinux 0x3c66b505 snd_info_create_module_entry -EXPORT_SYMBOL vmlinux 0x3c7e4abb single_release -EXPORT_SYMBOL vmlinux 0x3c80cc26 rtnetlink_put_metrics +EXPORT_SYMBOL vmlinux 0x3c62a9ac snd_pcm_hw_constraint_msbits +EXPORT_SYMBOL vmlinux 0x3c62c070 devm_devfreq_register_notifier +EXPORT_SYMBOL vmlinux 0x3c6fb309 __skb_pad +EXPORT_SYMBOL vmlinux 0x3c7359f3 xfrm_policy_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x3c766445 ping_prot +EXPORT_SYMBOL vmlinux 0x3c7dfbe3 _copy_from_iter_nocache +EXPORT_SYMBOL vmlinux 0x3c898207 poll_initwait EXPORT_SYMBOL vmlinux 0x3c8f6ef0 __xa_insert -EXPORT_SYMBOL vmlinux 0x3c948719 of_get_child_by_name -EXPORT_SYMBOL vmlinux 0x3c948974 pci_map_rom +EXPORT_SYMBOL vmlinux 0x3c9afbe7 input_mt_init_slots +EXPORT_SYMBOL vmlinux 0x3ca2ffb9 __netlink_ns_capable +EXPORT_SYMBOL vmlinux 0x3cb4bb48 vlan_dev_vlan_proto +EXPORT_SYMBOL vmlinux 0x3cc2bceb _dev_err +EXPORT_SYMBOL vmlinux 0x3cce8c06 cdrom_mode_sense EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq -EXPORT_SYMBOL vmlinux 0x3d00187d seq_lseek -EXPORT_SYMBOL vmlinux 0x3d0185db of_mdiobus_register +EXPORT_SYMBOL vmlinux 0x3ce72862 drop_nlink +EXPORT_SYMBOL vmlinux 0x3ceff0ca done_path_create +EXPORT_SYMBOL vmlinux 0x3cf8e8f5 xfrm_input_register_afinfo EXPORT_SYMBOL vmlinux 0x3d3c540f elf_hwcap -EXPORT_SYMBOL vmlinux 0x3d492d9a netif_tx_wake_queue -EXPORT_SYMBOL vmlinux 0x3d4a1448 of_lpddr3_get_min_tck +EXPORT_SYMBOL vmlinux 0x3d3c6d6e vme_register_bridge +EXPORT_SYMBOL vmlinux 0x3d3f2c4e d_instantiate_new EXPORT_SYMBOL vmlinux 0x3d56e7b3 utf8_unload -EXPORT_SYMBOL vmlinux 0x3d5a4b8b dst_release -EXPORT_SYMBOL vmlinux 0x3d644083 ww_mutex_unlock -EXPORT_SYMBOL vmlinux 0x3d752a0e of_find_node_by_phandle -EXPORT_SYMBOL vmlinux 0x3d96625f tcf_classify -EXPORT_SYMBOL vmlinux 0x3d9952f4 skb_headers_offset_update -EXPORT_SYMBOL vmlinux 0x3da03831 security_sb_mnt_opts_compat -EXPORT_SYMBOL vmlinux 0x3dc67d30 pps_register_source +EXPORT_SYMBOL vmlinux 0x3d5feced ppp_channel_index +EXPORT_SYMBOL vmlinux 0x3d6da32d security_sb_remount +EXPORT_SYMBOL vmlinux 0x3d70e8c4 send_sig_mceerr +EXPORT_SYMBOL vmlinux 0x3d7e7726 __ip_queue_xmit +EXPORT_SYMBOL vmlinux 0x3d8af43f generic_fadvise +EXPORT_SYMBOL vmlinux 0x3dc65e59 thaw_super EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data -EXPORT_SYMBOL vmlinux 0x3dcdf7ec pci_set_power_state EXPORT_SYMBOL vmlinux 0x3dcf1ffa __wake_up +EXPORT_SYMBOL vmlinux 0x3dd393c7 rproc_resource_cleanup EXPORT_SYMBOL vmlinux 0x3dd878a0 hdmi_avi_infoframe_pack_only EXPORT_SYMBOL vmlinux 0x3ddc6d7e vm_node_stat -EXPORT_SYMBOL vmlinux 0x3debed48 dev_addr_add EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head +EXPORT_SYMBOL vmlinux 0x3e0429fb udp_prot EXPORT_SYMBOL vmlinux 0x3e0c88c8 config_item_get_unless_zero -EXPORT_SYMBOL vmlinux 0x3e187b58 phy_do_ioctl -EXPORT_SYMBOL vmlinux 0x3e2ec46c done_path_create -EXPORT_SYMBOL vmlinux 0x3e2f3fa5 dm_table_event +EXPORT_SYMBOL vmlinux 0x3e0ed799 skb_queue_purge +EXPORT_SYMBOL vmlinux 0x3e24f054 devm_get_clk_from_child +EXPORT_SYMBOL vmlinux 0x3e38aea7 fwnode_mdiobus_phy_device_register EXPORT_SYMBOL vmlinux 0x3e3bad0a __tasklet_hi_schedule -EXPORT_SYMBOL vmlinux 0x3e3c9952 of_lpddr3_get_ddr_timings -EXPORT_SYMBOL vmlinux 0x3e481b87 pskb_expand_head -EXPORT_SYMBOL vmlinux 0x3e4ffd24 input_inject_event -EXPORT_SYMBOL vmlinux 0x3e6d9af0 netdev_set_num_tc -EXPORT_SYMBOL vmlinux 0x3e7a7894 i2c_transfer -EXPORT_SYMBOL vmlinux 0x3e96b105 netdev_set_sb_channel -EXPORT_SYMBOL vmlinux 0x3e97f9c4 snd_ctl_remove_id -EXPORT_SYMBOL vmlinux 0x3e9ac803 sched_autogroup_create_attach +EXPORT_SYMBOL vmlinux 0x3e4950b2 __mod_node_page_state +EXPORT_SYMBOL vmlinux 0x3e6e9274 genphy_c37_config_aneg +EXPORT_SYMBOL vmlinux 0x3e8b9fc3 xfrm_init_state +EXPORT_SYMBOL vmlinux 0x3e987397 xfrm_state_lookup_byspi EXPORT_SYMBOL vmlinux 0x3ea1b6e4 __stack_chk_fail -EXPORT_SYMBOL vmlinux 0x3ebbe1de unregister_key_type -EXPORT_SYMBOL vmlinux 0x3ec0b656 insert_inode_locked -EXPORT_SYMBOL vmlinux 0x3ec74ddb begin_new_exec +EXPORT_SYMBOL vmlinux 0x3eb1a03c alloc_etherdev_mqs EXPORT_SYMBOL vmlinux 0x3ec80fa0 _raw_spin_unlock_bh EXPORT_SYMBOL vmlinux 0x3ed104a5 xa_set_mark +EXPORT_SYMBOL vmlinux 0x3ed5feec xp_set_rxq_info EXPORT_SYMBOL vmlinux 0x3ede6c7e dma_fence_chain_init -EXPORT_SYMBOL vmlinux 0x3ee043a1 set_page_dirty -EXPORT_SYMBOL vmlinux 0x3ee649cf vma_set_file -EXPORT_SYMBOL vmlinux 0x3ee9423f __dev_get_by_name -EXPORT_SYMBOL vmlinux 0x3ef825e7 lease_get_mtime EXPORT_SYMBOL vmlinux 0x3efe1703 phy_unregister_fixup_for_id -EXPORT_SYMBOL vmlinux 0x3f0a0295 kmem_cache_alloc_bulk -EXPORT_SYMBOL vmlinux 0x3f25a6c3 fscrypt_decrypt_pagecache_blocks +EXPORT_SYMBOL vmlinux 0x3f1b9315 phy_do_ioctl +EXPORT_SYMBOL vmlinux 0x3f2194c2 of_clk_get +EXPORT_SYMBOL vmlinux 0x3f2d8662 fs_context_for_mount +EXPORT_SYMBOL vmlinux 0x3f352d26 is_nd_btt +EXPORT_SYMBOL vmlinux 0x3f355c25 vme_unregister_bridge +EXPORT_SYMBOL vmlinux 0x3f3567bc mark_buffer_dirty +EXPORT_SYMBOL vmlinux 0x3f3df131 scsi_host_get EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd EXPORT_SYMBOL vmlinux 0x3f4af46f gen_pool_first_fit_order_align -EXPORT_SYMBOL vmlinux 0x3f506ca0 simple_empty -EXPORT_SYMBOL vmlinux 0x3f53e808 inet_csk_reqsk_queue_add EXPORT_SYMBOL vmlinux 0x3f62d048 dma_fence_init -EXPORT_SYMBOL vmlinux 0x3f727f65 buffer_migrate_page +EXPORT_SYMBOL vmlinux 0x3f775076 ether_setup +EXPORT_SYMBOL vmlinux 0x3f792c34 blk_queue_max_segments EXPORT_SYMBOL vmlinux 0x3f89071b security_ib_pkey_access -EXPORT_SYMBOL vmlinux 0x3f955ee8 cdrom_number_of_slots -EXPORT_SYMBOL vmlinux 0x3f9bac65 nand_ecc_sw_bch_correct +EXPORT_SYMBOL vmlinux 0x3f8cd011 pci_map_rom +EXPORT_SYMBOL vmlinux 0x3f8f1b86 dm_kcopyd_copy +EXPORT_SYMBOL vmlinux 0x3f98f97e input_handler_for_each_handle +EXPORT_SYMBOL vmlinux 0x3fb0e350 phy_support_sym_pause +EXPORT_SYMBOL vmlinux 0x3fb106d4 xfrm_trans_queue_net EXPORT_SYMBOL vmlinux 0x3fbf3c89 vme_slave_set -EXPORT_SYMBOL vmlinux 0x3fce99e9 blk_mq_complete_request -EXPORT_SYMBOL vmlinux 0x3fd4e8ad seq_read +EXPORT_SYMBOL vmlinux 0x3fc247c0 km_state_notify +EXPORT_SYMBOL vmlinux 0x3fc32ca9 sock_i_ino EXPORT_SYMBOL vmlinux 0x3fd78f3b register_chrdev_region -EXPORT_SYMBOL vmlinux 0x3fd90bcb udp_push_pending_frames +EXPORT_SYMBOL vmlinux 0x3fdf9f11 dev_get_phys_port_id +EXPORT_SYMBOL vmlinux 0x3fe8551e mmc_request_done EXPORT_SYMBOL vmlinux 0x3fea538c hdmi_avi_infoframe_pack -EXPORT_SYMBOL vmlinux 0x3ff32619 rtnl_unicast -EXPORT_SYMBOL vmlinux 0x3ff5e554 mnt_set_expiry -EXPORT_SYMBOL vmlinux 0x3ff79845 skb_trim -EXPORT_SYMBOL vmlinux 0x3ffba7d9 md_bitmap_endwrite -EXPORT_SYMBOL vmlinux 0x3ffbc9c1 generic_shutdown_super -EXPORT_SYMBOL vmlinux 0x40186628 pcibios_resource_to_bus -EXPORT_SYMBOL vmlinux 0x40291101 skb_recv_datagram -EXPORT_SYMBOL vmlinux 0x40389c10 dcb_getapp +EXPORT_SYMBOL vmlinux 0x400a71cf __dec_zone_page_state +EXPORT_SYMBOL vmlinux 0x4025d1c2 dma_resv_fini +EXPORT_SYMBOL vmlinux 0x40394b5b dmaengine_get_unmap_data EXPORT_SYMBOL vmlinux 0x403a93e7 radix_tree_gang_lookup_tag -EXPORT_SYMBOL vmlinux 0x403ec666 snd_register_oss_device -EXPORT_SYMBOL vmlinux 0x4052adaf register_netdevice_notifier_net +EXPORT_SYMBOL vmlinux 0x4044a911 cdrom_ioctl EXPORT_SYMBOL vmlinux 0x4059792f print_hex_dump -EXPORT_SYMBOL vmlinux 0x405c11dc component_match_add_release +EXPORT_SYMBOL vmlinux 0x405c4761 rawnand_sw_bch_correct +EXPORT_SYMBOL vmlinux 0x406195ca unregister_binfmt EXPORT_SYMBOL vmlinux 0x407136b1 __put_user_8 -EXPORT_SYMBOL vmlinux 0x40734aa6 xfrm_state_lookup +EXPORT_SYMBOL vmlinux 0x407942a5 empty_aops EXPORT_SYMBOL vmlinux 0x407a3275 omap_start_dma +EXPORT_SYMBOL vmlinux 0x407a3810 dns_query +EXPORT_SYMBOL vmlinux 0x407da59a register_console EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem EXPORT_SYMBOL vmlinux 0x409873e3 tty_termios_baud_rate +EXPORT_SYMBOL vmlinux 0x40a3e1bd phy_print_status +EXPORT_SYMBOL vmlinux 0x40a99dcc pipe_unlock EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc -EXPORT_SYMBOL vmlinux 0x40aff1cb snd_unregister_oss_device +EXPORT_SYMBOL vmlinux 0x40ae34b7 dev_pick_tx_cpu_id +EXPORT_SYMBOL vmlinux 0x40af85e9 jbd2_journal_set_triggers +EXPORT_SYMBOL vmlinux 0x40b3d008 find_get_pages_range_tag EXPORT_SYMBOL vmlinux 0x40b51c05 __sysfs_match_string -EXPORT_SYMBOL vmlinux 0x40c18134 pci_fixup_device +EXPORT_SYMBOL vmlinux 0x40bc37b3 netlink_broadcast_filtered EXPORT_SYMBOL vmlinux 0x40c7247c si_meminfo EXPORT_SYMBOL vmlinux 0x40d04664 console_trylock EXPORT_SYMBOL vmlinux 0x40d402ad do_wait_intr EXPORT_SYMBOL vmlinux 0x40d59096 unregister_restart_handler +EXPORT_SYMBOL vmlinux 0x40dc4f67 ipv6_dev_mc_dec EXPORT_SYMBOL vmlinux 0x40f07981 __ashldi3 -EXPORT_SYMBOL vmlinux 0x4104761d ip6_route_me_harder -EXPORT_SYMBOL vmlinux 0x410548c0 nand_ecc_sw_hamming_correct +EXPORT_SYMBOL vmlinux 0x4100f6c9 __traceiter_spi_transfer_stop +EXPORT_SYMBOL vmlinux 0x41067759 pci_bus_read_config_word EXPORT_SYMBOL vmlinux 0x412f893c page_offline_begin EXPORT_SYMBOL vmlinux 0x4131fe5e __nla_reserve_64bit -EXPORT_SYMBOL vmlinux 0x4137f19d setattr_prepare +EXPORT_SYMBOL vmlinux 0x4137daff inet_csk_accept +EXPORT_SYMBOL vmlinux 0x413b238c scsi_dma_map EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user EXPORT_SYMBOL vmlinux 0x414975dd __genradix_prealloc -EXPORT_SYMBOL vmlinux 0x41604597 __alloc_skb +EXPORT_SYMBOL vmlinux 0x4168e7ac nf_hook_slow EXPORT_SYMBOL vmlinux 0x417d3d40 get_mem_type -EXPORT_SYMBOL vmlinux 0x41838971 ipv4_specific +EXPORT_SYMBOL vmlinux 0x4185f676 fb_validate_mode EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time +EXPORT_SYMBOL vmlinux 0x4189ef22 amba_driver_register EXPORT_SYMBOL vmlinux 0x418a5367 __scsi_format_command -EXPORT_SYMBOL vmlinux 0x41a64596 simple_open -EXPORT_SYMBOL vmlinux 0x41af2352 dev_trans_start +EXPORT_SYMBOL vmlinux 0x41931671 scsi_alloc_sgtables +EXPORT_SYMBOL vmlinux 0x41957b14 __set_page_dirty_no_writeback EXPORT_SYMBOL vmlinux 0x41bb84fc dma_fence_remove_callback -EXPORT_SYMBOL vmlinux 0x41d64fcb dev_get_by_index -EXPORT_SYMBOL vmlinux 0x41f07794 amba_find_device -EXPORT_SYMBOL vmlinux 0x41fdec43 tcp_select_initial_window +EXPORT_SYMBOL vmlinux 0x41c088a2 get_user_pages_remote +EXPORT_SYMBOL vmlinux 0x41ceeb91 twl6040_clear_bits +EXPORT_SYMBOL vmlinux 0x41e79ec2 dev_mc_sync +EXPORT_SYMBOL vmlinux 0x41f794c7 km_report EXPORT_SYMBOL vmlinux 0x420964e3 __nla_parse -EXPORT_SYMBOL vmlinux 0x421567a7 napi_gro_receive EXPORT_SYMBOL vmlinux 0x42160169 flush_workqueue EXPORT_SYMBOL vmlinux 0x421d4dcf krealloc +EXPORT_SYMBOL vmlinux 0x422232d9 ip_route_input_noref EXPORT_SYMBOL vmlinux 0x4230a8d7 sg_nents_for_len -EXPORT_SYMBOL vmlinux 0x423232b7 mmc_free_host -EXPORT_SYMBOL vmlinux 0x4234cb12 neigh_direct_output -EXPORT_SYMBOL vmlinux 0x423e1951 security_task_getsecid_obj -EXPORT_SYMBOL vmlinux 0x42407846 xfrm_state_check_expire -EXPORT_SYMBOL vmlinux 0x424565ba jbd2_journal_invalidatepage +EXPORT_SYMBOL vmlinux 0x423a794b blk_mq_tag_to_rq +EXPORT_SYMBOL vmlinux 0x424089ad udp_set_csum EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp EXPORT_SYMBOL vmlinux 0x4253aa7e down_write EXPORT_SYMBOL vmlinux 0x42604384 ucs2_strncmp -EXPORT_SYMBOL vmlinux 0x4283e1bf input_mt_report_finger_count -EXPORT_SYMBOL vmlinux 0x428c75dc ipv6_sock_mc_join +EXPORT_SYMBOL vmlinux 0x42657bde tso_build_hdr +EXPORT_SYMBOL vmlinux 0x427ef1d0 flow_indr_dev_unregister +EXPORT_SYMBOL vmlinux 0x4287577a snd_compr_malloc_pages EXPORT_SYMBOL vmlinux 0x4298b775 v7_flush_kern_cache_all -EXPORT_SYMBOL vmlinux 0x429fb41b scm_detach_fds -EXPORT_SYMBOL vmlinux 0x42a49165 tcp_md5_do_add -EXPORT_SYMBOL vmlinux 0x42adac0c scsi_vpd_lun_id -EXPORT_SYMBOL vmlinux 0x42c01a70 path_has_submounts -EXPORT_SYMBOL vmlinux 0x42d01923 of_node_name_prefix -EXPORT_SYMBOL vmlinux 0x42e0183c filemap_fdatawait_range_keep_errors +EXPORT_SYMBOL vmlinux 0x42a09080 blk_queue_flag_set +EXPORT_SYMBOL vmlinux 0x42a0a2b3 of_graph_get_endpoint_count +EXPORT_SYMBOL vmlinux 0x42a3a70b del_gendisk +EXPORT_SYMBOL vmlinux 0x42b2e1b0 md_integrity_add_rdev +EXPORT_SYMBOL vmlinux 0x42c21f47 set_binfmt +EXPORT_SYMBOL vmlinux 0x42e4d1b9 param_ops_ulong +EXPORT_SYMBOL vmlinux 0x42e96368 dev_graft_qdisc +EXPORT_SYMBOL vmlinux 0x42e9673d pskb_extract EXPORT_SYMBOL vmlinux 0x42f1b900 fb_pad_unaligned_buffer +EXPORT_SYMBOL vmlinux 0x42fd5073 tty_port_close_start EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages -EXPORT_SYMBOL vmlinux 0x43145601 key_link +EXPORT_SYMBOL vmlinux 0x4313d8f4 watchdog_unregister_governor +EXPORT_SYMBOL vmlinux 0x431c8c06 dquot_set_dqblk EXPORT_SYMBOL vmlinux 0x431ec3a9 __nla_validate -EXPORT_SYMBOL vmlinux 0x4335bc0e __tcf_em_tree_match +EXPORT_SYMBOL vmlinux 0x4325c25d dma_get_sgtable_attrs +EXPORT_SYMBOL vmlinux 0x432a154a fscrypt_setup_filename +EXPORT_SYMBOL vmlinux 0x432c40e5 mmc_can_gpio_cd +EXPORT_SYMBOL vmlinux 0x432e4da4 tty_unregister_driver +EXPORT_SYMBOL vmlinux 0x43354648 d_find_any_alias EXPORT_SYMBOL vmlinux 0x4336fcca ucs2_as_utf8 -EXPORT_SYMBOL vmlinux 0x43384268 sock_no_socketpair -EXPORT_SYMBOL vmlinux 0x43402331 page_pool_create -EXPORT_SYMBOL vmlinux 0x434f8e60 clear_inode +EXPORT_SYMBOL vmlinux 0x433718a8 sb_set_blocksize +EXPORT_SYMBOL vmlinux 0x4338837f vlan_uses_dev +EXPORT_SYMBOL vmlinux 0x433ddb02 __pskb_copy_fclone +EXPORT_SYMBOL vmlinux 0x43474ab1 rproc_coredump_using_sections EXPORT_SYMBOL vmlinux 0x4351577a fb_parse_edid -EXPORT_SYMBOL vmlinux 0x435fb911 mmc_card_alternative_gpt_sector -EXPORT_SYMBOL vmlinux 0x436d3220 configfs_unregister_subsystem +EXPORT_SYMBOL vmlinux 0x43590301 md_done_sync +EXPORT_SYMBOL vmlinux 0x435e641f __napi_schedule +EXPORT_SYMBOL vmlinux 0x43606b17 kill_anon_super +EXPORT_SYMBOL vmlinux 0x436af8a6 blk_post_runtime_resume +EXPORT_SYMBOL vmlinux 0x4372f457 get_cached_acl_rcu EXPORT_SYMBOL vmlinux 0x437a0d6d __sock_tx_timestamp -EXPORT_SYMBOL vmlinux 0x43821a6b jbd2_journal_revoke EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security -EXPORT_SYMBOL vmlinux 0x439416ad d_rehash -EXPORT_SYMBOL vmlinux 0x439db3bd dev_mc_sync_multiple -EXPORT_SYMBOL vmlinux 0x43a83662 netdev_err -EXPORT_SYMBOL vmlinux 0x43ba3e53 generic_pipe_buf_try_steal -EXPORT_SYMBOL vmlinux 0x43bd54fd wait_for_key_construction -EXPORT_SYMBOL vmlinux 0x43d16b59 skb_add_rx_frag +EXPORT_SYMBOL vmlinux 0x4389c674 netif_device_attach +EXPORT_SYMBOL vmlinux 0x43924c1d dma_sync_sg_for_device +EXPORT_SYMBOL vmlinux 0x43bca3b8 scsi_block_when_processing_errors +EXPORT_SYMBOL vmlinux 0x43c64b2b inet_sk_rebuild_header +EXPORT_SYMBOL vmlinux 0x43cc9c95 pci_try_set_mwi EXPORT_SYMBOL vmlinux 0x43d22fb9 groups_alloc -EXPORT_SYMBOL vmlinux 0x43d523ac twl6030_mmc_card_detect -EXPORT_SYMBOL vmlinux 0x43d70b19 tcp_create_openreq_child -EXPORT_SYMBOL vmlinux 0x43d95b71 register_quota_format +EXPORT_SYMBOL vmlinux 0x43d550f4 jbd2_journal_get_create_access +EXPORT_SYMBOL vmlinux 0x43d8f7e2 param_ops_bool +EXPORT_SYMBOL vmlinux 0x43db3186 xfrm_policy_insert EXPORT_SYMBOL vmlinux 0x43df0f01 kobject_del EXPORT_SYMBOL vmlinux 0x43e57231 commit_creds -EXPORT_SYMBOL vmlinux 0x43e619ea vfs_rmdir -EXPORT_SYMBOL vmlinux 0x43faea32 kmem_cache_free_bulk -EXPORT_SYMBOL vmlinux 0x43fd26b5 filp_open -EXPORT_SYMBOL vmlinux 0x44129059 inode_init_once -EXPORT_SYMBOL vmlinux 0x442080ff neigh_event_ns +EXPORT_SYMBOL vmlinux 0x44242487 xfrm_policy_hash_rebuild EXPORT_SYMBOL vmlinux 0x442495c9 tmio_core_mmc_resume +EXPORT_SYMBOL vmlinux 0x442f992e devm_request_any_context_irq EXPORT_SYMBOL vmlinux 0x44366cfc simple_write_to_buffer +EXPORT_SYMBOL vmlinux 0x44400b54 xfrm_unregister_type EXPORT_SYMBOL vmlinux 0x44469a76 crc_ccitt_false_table EXPORT_SYMBOL vmlinux 0x444cc8ed tcp_md5_needed +EXPORT_SYMBOL vmlinux 0x445998da frontswap_register_ops +EXPORT_SYMBOL vmlinux 0x44601150 xfrm_register_type_offload +EXPORT_SYMBOL vmlinux 0x446052a5 netdev_crit +EXPORT_SYMBOL vmlinux 0x4461d1ae module_layout 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 0x446a47c9 vme_irq_free -EXPORT_SYMBOL vmlinux 0x44927b4d param_ops_ulong -EXPORT_SYMBOL vmlinux 0x4493d488 cros_ec_prepare_tx -EXPORT_SYMBOL vmlinux 0x44a38125 pci_save_state +EXPORT_SYMBOL vmlinux 0x44735d2f devfreq_monitor_stop +EXPORT_SYMBOL vmlinux 0x448a94ff i2c_smbus_write_block_data EXPORT_SYMBOL vmlinux 0x44a6e90a irq_cpu_rmap_add -EXPORT_SYMBOL vmlinux 0x44a7ec33 fc_mount +EXPORT_SYMBOL vmlinux 0x44b616d9 dma_resv_init +EXPORT_SYMBOL vmlinux 0x44c63063 dev_set_mtu EXPORT_SYMBOL vmlinux 0x44c9dc6c percpu_counter_destroy -EXPORT_SYMBOL vmlinux 0x44d069bd flow_rule_match_ports EXPORT_SYMBOL vmlinux 0x44da5d0f __csum_ipv6_magic +EXPORT_SYMBOL vmlinux 0x44e35c8c rawnand_sw_bch_init EXPORT_SYMBOL vmlinux 0x44e66ed2 bitmap_print_bitmask_to_buf +EXPORT_SYMBOL vmlinux 0x44e69a36 vfs_fadvise EXPORT_SYMBOL vmlinux 0x44e9a829 match_token -EXPORT_SYMBOL vmlinux 0x44f04d70 of_clk_get -EXPORT_SYMBOL vmlinux 0x44f64e8b mmput_async EXPORT_SYMBOL vmlinux 0x45006cee default_red -EXPORT_SYMBOL vmlinux 0x45017584 __neigh_event_send -EXPORT_SYMBOL vmlinux 0x450691c6 pm860x_reg_read EXPORT_SYMBOL vmlinux 0x450d9a35 cmd_db_read_slave_id -EXPORT_SYMBOL vmlinux 0x4524434a netdev_emerg +EXPORT_SYMBOL vmlinux 0x45124eb8 __skb_wait_for_more_packets +EXPORT_SYMBOL vmlinux 0x451bc7b8 path_has_submounts EXPORT_SYMBOL vmlinux 0x452ba683 ipv6_ext_hdr EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled -EXPORT_SYMBOL vmlinux 0x4555e82e bh_submit_read -EXPORT_SYMBOL vmlinux 0x455da808 mmc_cqe_recovery -EXPORT_SYMBOL vmlinux 0x45708714 ppp_unregister_channel +EXPORT_SYMBOL vmlinux 0x4541b677 devm_clk_get_optional +EXPORT_SYMBOL vmlinux 0x4545dae0 genlmsg_put +EXPORT_SYMBOL vmlinux 0x456512d9 zap_page_range +EXPORT_SYMBOL vmlinux 0x4578bc74 fs_param_is_enum EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user -EXPORT_SYMBOL vmlinux 0x4589b2f3 netif_set_real_num_tx_queues -EXPORT_SYMBOL vmlinux 0x45a1062c blk_queue_max_segment_size +EXPORT_SYMBOL vmlinux 0x457d2021 put_fs_context +EXPORT_SYMBOL vmlinux 0x45955de4 tcp_mtup_init +EXPORT_SYMBOL vmlinux 0x45aed61d of_phy_deregister_fixed_link +EXPORT_SYMBOL vmlinux 0x45bbd10b eth_header_parse EXPORT_SYMBOL vmlinux 0x45bd19de nla_strscpy EXPORT_SYMBOL vmlinux 0x45bda0d5 system_serial_low -EXPORT_SYMBOL vmlinux 0x45c25ff8 iunique -EXPORT_SYMBOL vmlinux 0x45e6004d pcim_iomap -EXPORT_SYMBOL vmlinux 0x45edbce4 neigh_xmit +EXPORT_SYMBOL vmlinux 0x45caf373 skb_copy_and_csum_bits +EXPORT_SYMBOL vmlinux 0x45d013d4 pcim_iomap_regions_request_all +EXPORT_SYMBOL vmlinux 0x45d2d6eb bio_integrity_add_page +EXPORT_SYMBOL vmlinux 0x45e029b0 ipv6_dev_get_saddr +EXPORT_SYMBOL vmlinux 0x45f737a1 xp_dma_map EXPORT_SYMBOL vmlinux 0x45fdee7f dma_fence_signal_timestamp -EXPORT_SYMBOL vmlinux 0x460a53e3 blk_mq_start_hw_queue -EXPORT_SYMBOL vmlinux 0x4618b254 security_skb_classify_flow +EXPORT_SYMBOL vmlinux 0x460362da snd_card_free +EXPORT_SYMBOL vmlinux 0x460f4a34 flow_hash_from_keys +EXPORT_SYMBOL vmlinux 0x4611bcc7 ppp_input +EXPORT_SYMBOL vmlinux 0x461bcfc6 mmc_wait_for_cmd EXPORT_SYMBOL vmlinux 0x461d16ca sg_nents -EXPORT_SYMBOL vmlinux 0x461efae9 tcp_seq_start -EXPORT_SYMBOL vmlinux 0x461f11af __set_page_dirty_buffers -EXPORT_SYMBOL vmlinux 0x461f4b38 submit_bio_noacct -EXPORT_SYMBOL vmlinux 0x46221659 arp_create EXPORT_SYMBOL vmlinux 0x46244c03 ns_capable EXPORT_SYMBOL vmlinux 0x462a2e75 match_strlcpy -EXPORT_SYMBOL vmlinux 0x463f7495 netif_napi_add -EXPORT_SYMBOL vmlinux 0x46431965 twl6040_set_pll -EXPORT_SYMBOL vmlinux 0x4645341e devm_nvmem_unregister +EXPORT_SYMBOL vmlinux 0x46332345 nf_hook_slow_list +EXPORT_SYMBOL vmlinux 0x463fc536 mmc_cqe_recovery +EXPORT_SYMBOL vmlinux 0x4653adbe snd_sgbuf_get_page EXPORT_SYMBOL vmlinux 0x465e24ff ucs2_utf8size -EXPORT_SYMBOL vmlinux 0x4676a66f blk_get_queue -EXPORT_SYMBOL vmlinux 0x46779b3a neigh_carrier_down -EXPORT_SYMBOL vmlinux 0x4683d5d5 phy_stop -EXPORT_SYMBOL vmlinux 0x46935e4b page_cache_prev_miss +EXPORT_SYMBOL vmlinux 0x465e2ba6 seq_printf +EXPORT_SYMBOL vmlinux 0x467963e2 redirty_page_for_writepage +EXPORT_SYMBOL vmlinux 0x4694b199 netdev_next_lower_dev_rcu EXPORT_SYMBOL vmlinux 0x469a6ec7 tcp_parse_md5sig_option -EXPORT_SYMBOL vmlinux 0x46ae12c2 inode_set_bytes -EXPORT_SYMBOL vmlinux 0x46be841f __devm_mdiobus_register -EXPORT_SYMBOL vmlinux 0x46ccc8f2 pcim_iounmap_regions EXPORT_SYMBOL vmlinux 0x46d3b28c __div0 -EXPORT_SYMBOL vmlinux 0x46d923c2 devfreq_remove_device -EXPORT_SYMBOL vmlinux 0x46e2115c ilookup5 -EXPORT_SYMBOL vmlinux 0x46f3975f simple_get_link -EXPORT_SYMBOL vmlinux 0x47012ca8 devm_pci_remap_cfg_resource -EXPORT_SYMBOL vmlinux 0x4705919e mmc_alloc_host +EXPORT_SYMBOL vmlinux 0x46dd1ec9 write_cache_pages +EXPORT_SYMBOL vmlinux 0x46ecb08d try_module_get EXPORT_SYMBOL vmlinux 0x47065c73 cpm_muram_offset -EXPORT_SYMBOL vmlinux 0x470eeb65 lock_two_nondirectories -EXPORT_SYMBOL vmlinux 0x4713f0cd reuseport_migrate_sock -EXPORT_SYMBOL vmlinux 0x471de494 xsk_set_rx_need_wakeup -EXPORT_SYMBOL vmlinux 0x471ef660 phy_drivers_unregister -EXPORT_SYMBOL vmlinux 0x4729cdd2 touchscreen_report_pos -EXPORT_SYMBOL vmlinux 0x472c458f snd_pcm_hw_constraint_minmax -EXPORT_SYMBOL vmlinux 0x472f889f __alloc_disk_node -EXPORT_SYMBOL vmlinux 0x47331000 udp_seq_next -EXPORT_SYMBOL vmlinux 0x47460bbd pagecache_write_end -EXPORT_SYMBOL vmlinux 0x47461d21 xsk_get_pool_from_qid +EXPORT_SYMBOL vmlinux 0x4730b496 pci_find_parent_resource +EXPORT_SYMBOL vmlinux 0x473ebb94 tcp_ioctl +EXPORT_SYMBOL vmlinux 0x474e10e6 fs_param_is_bool EXPORT_SYMBOL vmlinux 0x4756260d ida_destroy +EXPORT_SYMBOL vmlinux 0x47625169 inet_rtx_syn_ack +EXPORT_SYMBOL vmlinux 0x476d1314 ipmr_rule_default EXPORT_SYMBOL vmlinux 0x47709e42 free_anon_bdev +EXPORT_SYMBOL vmlinux 0x4773291e start_tty +EXPORT_SYMBOL vmlinux 0x4778acfc skb_abort_seq_read +EXPORT_SYMBOL vmlinux 0x4788bf52 inet_rcv_saddr_equal EXPORT_SYMBOL vmlinux 0x478d9b84 ZSTD_isFrame -EXPORT_SYMBOL vmlinux 0x478eec8c register_sound_dsp +EXPORT_SYMBOL vmlinux 0x4791e75d nand_write_oob_std +EXPORT_SYMBOL vmlinux 0x479f4eae skb_checksum_trimmed EXPORT_SYMBOL vmlinux 0x47a0cdcb mb_cache_entry_find_next -EXPORT_SYMBOL vmlinux 0x47a1ba41 scsi_register_driver -EXPORT_SYMBOL vmlinux 0x47b5e123 skb_try_coalesce -EXPORT_SYMBOL vmlinux 0x47bb7a3d pci_request_regions_exclusive -EXPORT_SYMBOL vmlinux 0x47bc4d93 mmc_detect_card_removed +EXPORT_SYMBOL vmlinux 0x47a2db3c dev_vprintk_emit EXPORT_SYMBOL vmlinux 0x47c20f8a refcount_dec_not_one EXPORT_SYMBOL vmlinux 0x47c65bfc unregister_inet6addr_validator_notifier -EXPORT_SYMBOL vmlinux 0x47e14e9c page_pool_put_page_bulk +EXPORT_SYMBOL vmlinux 0x47ca2244 block_write_end +EXPORT_SYMBOL vmlinux 0x47cc9fe3 i2c_smbus_read_word_data +EXPORT_SYMBOL vmlinux 0x47d5bb2b blk_queue_alignment_offset +EXPORT_SYMBOL vmlinux 0x47d66308 vfs_get_link EXPORT_SYMBOL vmlinux 0x47e70229 v7_flush_user_cache_range -EXPORT_SYMBOL vmlinux 0x47f1071f sk_stream_wait_memory +EXPORT_SYMBOL vmlinux 0x47f0814c mipi_dsi_driver_register_full +EXPORT_SYMBOL vmlinux 0x47f5fb46 netdev_has_any_upper_dev EXPORT_SYMBOL vmlinux 0x47f757de elf_platform -EXPORT_SYMBOL vmlinux 0x48114150 flow_rule_match_enc_keyid -EXPORT_SYMBOL vmlinux 0x48248bef nd_device_notify -EXPORT_SYMBOL vmlinux 0x482b4129 pci_enable_atomic_ops_to_root +EXPORT_SYMBOL vmlinux 0x47f8d635 __get_hash_from_flowi6 +EXPORT_SYMBOL vmlinux 0x47fd1e54 blk_queue_max_write_zeroes_sectors +EXPORT_SYMBOL vmlinux 0x47fe1a81 vfs_rename +EXPORT_SYMBOL vmlinux 0x4811045e fs_lookup_param +EXPORT_SYMBOL vmlinux 0x481cb0b8 __napi_alloc_skb +EXPORT_SYMBOL vmlinux 0x4830d057 inode_set_bytes +EXPORT_SYMBOL vmlinux 0x48427b51 tcf_block_get EXPORT_SYMBOL vmlinux 0x4848cfb1 phy_mipi_dphy_get_default_config +EXPORT_SYMBOL vmlinux 0x484e1f4b sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0x484ecebe genlmsg_multicast_allns EXPORT_SYMBOL vmlinux 0x484f6edf ktime_get_coarse_real_ts64 -EXPORT_SYMBOL vmlinux 0x485532d4 clk_hw_get_clk +EXPORT_SYMBOL vmlinux 0x48501912 dcbnl_ieee_notify +EXPORT_SYMBOL vmlinux 0x48578051 import_iovec EXPORT_SYMBOL vmlinux 0x4859b8bb rtc_year_days +EXPORT_SYMBOL vmlinux 0x486ffe68 mipi_dsi_dcs_set_display_off EXPORT_SYMBOL vmlinux 0x4871d75d clk_hw_register_clkdev -EXPORT_SYMBOL vmlinux 0x4871d76e dma_set_mask -EXPORT_SYMBOL vmlinux 0x4875c857 flow_rule_alloc -EXPORT_SYMBOL vmlinux 0x4878ae3a request_partial_firmware_into_buf -EXPORT_SYMBOL vmlinux 0x4891bd1b d_lookup -EXPORT_SYMBOL vmlinux 0x48a01f5c scsi_host_lookup +EXPORT_SYMBOL vmlinux 0x487ad86c padata_alloc +EXPORT_SYMBOL vmlinux 0x48869572 tcf_qevent_dump +EXPORT_SYMBOL vmlinux 0x4886cd68 nand_ecc_sw_bch_get_engine +EXPORT_SYMBOL vmlinux 0x489ae347 __ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0x489c205a devm_extcon_unregister_notifier EXPORT_SYMBOL vmlinux 0x48a5b067 __machine_arch_type EXPORT_SYMBOL vmlinux 0x48a91171 string_get_size +EXPORT_SYMBOL vmlinux 0x48ac28b4 mntput +EXPORT_SYMBOL vmlinux 0x48b1a07d __blk_alloc_disk +EXPORT_SYMBOL vmlinux 0x48b42501 security_dentry_init_security EXPORT_SYMBOL vmlinux 0x48b99a13 vme_lm_free -EXPORT_SYMBOL vmlinux 0x48dca3b9 phy_device_free +EXPORT_SYMBOL vmlinux 0x48d1b35d register_netdev +EXPORT_SYMBOL vmlinux 0x48d57b61 jbd2_wait_inode_data EXPORT_SYMBOL vmlinux 0x48e1cbf5 nla_reserve_64bit -EXPORT_SYMBOL vmlinux 0x48e594fd __cleancache_init_fs -EXPORT_SYMBOL vmlinux 0x48f5c83b security_path_rename -EXPORT_SYMBOL vmlinux 0x48fb5354 xfrm_state_walk_done +EXPORT_SYMBOL vmlinux 0x48e98ca4 ethtool_notify EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert -EXPORT_SYMBOL vmlinux 0x490c3e7e jbd2_journal_begin_ordered_truncate -EXPORT_SYMBOL vmlinux 0x490d1f1b dquot_commit_info -EXPORT_SYMBOL vmlinux 0x491bb37c xfrm6_rcv -EXPORT_SYMBOL vmlinux 0x4926ee66 d_mark_dontcache -EXPORT_SYMBOL vmlinux 0x492ee840 tcf_em_tree_dump +EXPORT_SYMBOL vmlinux 0x490e247a __cleancache_invalidate_fs +EXPORT_SYMBOL vmlinux 0x491fb3f8 no_seek_end_llseek_size EXPORT_SYMBOL vmlinux 0x495231ea mul_u64_u64_div_u64 -EXPORT_SYMBOL vmlinux 0x497772fe key_instantiate_and_link +EXPORT_SYMBOL vmlinux 0x495ccb72 udp_lib_setsockopt +EXPORT_SYMBOL vmlinux 0x496c2c76 dquot_alloc +EXPORT_SYMBOL vmlinux 0x4984a638 mem_cgroup_from_task EXPORT_SYMBOL vmlinux 0x49871971 _raw_write_unlock_bh -EXPORT_SYMBOL vmlinux 0x498947fa dma_sync_single_for_cpu -EXPORT_SYMBOL vmlinux 0x498b2c9c __xfrm_dst_lookup -EXPORT_SYMBOL vmlinux 0x4992b781 sock_dequeue_err_skb +EXPORT_SYMBOL vmlinux 0x4994bedb dev_open EXPORT_SYMBOL vmlinux 0x49970de8 finish_wait +EXPORT_SYMBOL vmlinux 0x499e3ba4 cfb_copyarea EXPORT_SYMBOL vmlinux 0x499f0ecf nd_sb_checksum -EXPORT_SYMBOL vmlinux 0x49aa535f kernel_param_lock -EXPORT_SYMBOL vmlinux 0x49ae4288 nand_ecc_sw_hamming_get_engine +EXPORT_SYMBOL vmlinux 0x49b2fe7e sock_wake_async +EXPORT_SYMBOL vmlinux 0x49c9db8c mmc_detect_change +EXPORT_SYMBOL vmlinux 0x49d45a4c xfrm_policy_alloc EXPORT_SYMBOL vmlinux 0x49d61380 __traceiter_kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0x49db448d tcp_seq_next +EXPORT_SYMBOL vmlinux 0x49e10918 inet_reqsk_alloc EXPORT_SYMBOL vmlinux 0x49ebacbd _clear_bit +EXPORT_SYMBOL vmlinux 0x49eef10b simple_get_link EXPORT_SYMBOL vmlinux 0x49f26466 kstrndup -EXPORT_SYMBOL vmlinux 0x49fbecc3 elv_bio_merge_ok -EXPORT_SYMBOL vmlinux 0x4a052c1d blk_queue_bounce_limit -EXPORT_SYMBOL vmlinux 0x4a1e55ad flush_dcache_page -EXPORT_SYMBOL vmlinux 0x4a38e896 kernel_getsockname +EXPORT_SYMBOL vmlinux 0x49fdef8c mmc_retune_release +EXPORT_SYMBOL vmlinux 0x4a02542d dev_set_mac_address +EXPORT_SYMBOL vmlinux 0x4a0e762d tcf_exts_change +EXPORT_SYMBOL vmlinux 0x4a302fb7 __ip_options_compile +EXPORT_SYMBOL vmlinux 0x4a34d0f6 phy_get_eee_err +EXPORT_SYMBOL vmlinux 0x4a38db95 pcie_capability_read_word EXPORT_SYMBOL vmlinux 0x4a39e5a1 omap_set_dma_src_params EXPORT_SYMBOL vmlinux 0x4a3ea5c0 snd_request_card -EXPORT_SYMBOL vmlinux 0x4a5c1e46 rt_dst_alloc -EXPORT_SYMBOL vmlinux 0x4a7cd8ca tty_port_put -EXPORT_SYMBOL vmlinux 0x4a85da66 loop_register_transfer +EXPORT_SYMBOL vmlinux 0x4a6522dc fget +EXPORT_SYMBOL vmlinux 0x4a7a85b4 neigh_lookup +EXPORT_SYMBOL vmlinux 0x4a80aabd mdiobus_write_nested +EXPORT_SYMBOL vmlinux 0x4a8302ef devm_register_reboot_notifier EXPORT_SYMBOL vmlinux 0x4a8a6949 get_random_bytes_arch -EXPORT_SYMBOL vmlinux 0x4a8c8774 nf_register_net_hooks -EXPORT_SYMBOL vmlinux 0x4a8dcc9e blk_queue_chunk_sectors -EXPORT_SYMBOL vmlinux 0x4a8f6c5b posix_acl_chmod EXPORT_SYMBOL vmlinux 0x4a93576a ucc_fast_free EXPORT_SYMBOL vmlinux 0x4a96a8eb xxh32_digest -EXPORT_SYMBOL vmlinux 0x4a9cc4b9 scsicam_bios_param -EXPORT_SYMBOL vmlinux 0x4a9f7073 is_nvdimm_bus_locked -EXPORT_SYMBOL vmlinux 0x4aa37023 posix_test_lock -EXPORT_SYMBOL vmlinux 0x4aac94ff vlan_dev_vlan_proto -EXPORT_SYMBOL vmlinux 0x4ab39614 blk_mq_requeue_request -EXPORT_SYMBOL vmlinux 0x4ac384b1 uart_suspend_port -EXPORT_SYMBOL vmlinux 0x4aced994 pci_set_master +EXPORT_SYMBOL vmlinux 0x4aa204ff xfrm_if_register_cb +EXPORT_SYMBOL vmlinux 0x4aa8332f snd_ctl_notify +EXPORT_SYMBOL vmlinux 0x4ad11602 inet_ioctl +EXPORT_SYMBOL vmlinux 0x4ad5afab snd_timer_start +EXPORT_SYMBOL vmlinux 0x4adb0f60 netdev_change_features EXPORT_SYMBOL vmlinux 0x4ade86b5 hdmi_drm_infoframe_unpack_only EXPORT_SYMBOL vmlinux 0x4af6ddf0 kstrtou16 -EXPORT_SYMBOL vmlinux 0x4b0413d9 dma_map_resource -EXPORT_SYMBOL vmlinux 0x4b27c12b security_inet_conn_request -EXPORT_SYMBOL vmlinux 0x4b30e05f pci_free_host_bridge -EXPORT_SYMBOL vmlinux 0x4b32e3ab pci_find_capability -EXPORT_SYMBOL vmlinux 0x4b504920 tcp_v4_md5_lookup -EXPORT_SYMBOL vmlinux 0x4b5bdd35 configfs_remove_default_groups +EXPORT_SYMBOL vmlinux 0x4b047bd7 dquot_claim_space_nodirty +EXPORT_SYMBOL vmlinux 0x4b1b7831 unlock_new_inode +EXPORT_SYMBOL vmlinux 0x4b3555ba flow_block_cb_decref +EXPORT_SYMBOL vmlinux 0x4b375d70 vlan_dev_real_dev +EXPORT_SYMBOL vmlinux 0x4b3a08dd simple_empty +EXPORT_SYMBOL vmlinux 0x4b478ca5 ip_tunnel_parse_protocol EXPORT_SYMBOL vmlinux 0x4b5fd49e dm_kcopyd_do_callback -EXPORT_SYMBOL vmlinux 0x4bcb5f23 pcim_set_mwi -EXPORT_SYMBOL vmlinux 0x4bd26aca lock_page_memcg -EXPORT_SYMBOL vmlinux 0x4be5b266 devm_devfreq_add_device -EXPORT_SYMBOL vmlinux 0x4be856e5 snd_pcm_lib_preallocate_pages_for_all +EXPORT_SYMBOL vmlinux 0x4b68f352 scsi_command_normalize_sense +EXPORT_SYMBOL vmlinux 0x4b6d7d1f input_mt_get_slot_by_key +EXPORT_SYMBOL vmlinux 0x4b8276e8 snd_pcm_stop +EXPORT_SYMBOL vmlinux 0x4b833307 __ip_mc_dec_group +EXPORT_SYMBOL vmlinux 0x4b862eda dev_set_promiscuity +EXPORT_SYMBOL vmlinux 0x4ba66512 unpin_user_pages_dirty_lock +EXPORT_SYMBOL vmlinux 0x4bc9b469 scsi_device_get +EXPORT_SYMBOL vmlinux 0x4bd94ee0 ip6_frag_init EXPORT_SYMBOL vmlinux 0x4be85a03 memweight -EXPORT_SYMBOL vmlinux 0x4be97acb vfs_symlink EXPORT_SYMBOL vmlinux 0x4bef1c67 empty_name -EXPORT_SYMBOL vmlinux 0x4bf147e4 iov_iter_get_pages -EXPORT_SYMBOL vmlinux 0x4bf330cf thermal_zone_device_critical +EXPORT_SYMBOL vmlinux 0x4bef3708 pci_dev_get EXPORT_SYMBOL vmlinux 0x4bfdcefa __memset32 -EXPORT_SYMBOL vmlinux 0x4c010057 generic_set_encrypted_ci_d_ops -EXPORT_SYMBOL vmlinux 0x4c0c6435 tty_flip_buffer_push +EXPORT_SYMBOL vmlinux 0x4c0d3bcf proc_create_data +EXPORT_SYMBOL vmlinux 0x4c1080bd _copy_to_iter EXPORT_SYMBOL vmlinux 0x4c1cca3b cpumask_next_wrap EXPORT_SYMBOL vmlinux 0x4c2ae700 strnstr EXPORT_SYMBOL vmlinux 0x4c38d4e0 utf8_strncasecmp_folded EXPORT_SYMBOL vmlinux 0x4c416eb9 LZ4_decompress_fast -EXPORT_SYMBOL vmlinux 0x4c4907f2 phy_mac_interrupt -EXPORT_SYMBOL vmlinux 0x4c4af2c5 xfrm_if_register_cb -EXPORT_SYMBOL vmlinux 0x4c5478dc key_alloc -EXPORT_SYMBOL vmlinux 0x4c5cf03f twl6040_clear_bits -EXPORT_SYMBOL vmlinux 0x4c6dfa7b devfreq_monitor_suspend -EXPORT_SYMBOL vmlinux 0x4c71a644 uart_register_driver -EXPORT_SYMBOL vmlinux 0x4c79f316 ps2_handle_response -EXPORT_SYMBOL vmlinux 0x4c7d16bc sock_common_getsockopt -EXPORT_SYMBOL vmlinux 0x4c89990e register_tcf_proto_ops -EXPORT_SYMBOL vmlinux 0x4c8ea70a sock_no_mmap -EXPORT_SYMBOL vmlinux 0x4c9d9661 ptp_cancel_worker_sync -EXPORT_SYMBOL vmlinux 0x4caaa0fe capable_wrt_inode_uidgid -EXPORT_SYMBOL vmlinux 0x4cb2f92e bprm_change_interp +EXPORT_SYMBOL vmlinux 0x4c41bd5c tcf_register_action +EXPORT_SYMBOL vmlinux 0x4c5826af sk_wait_data +EXPORT_SYMBOL vmlinux 0x4c603b46 get_mem_cgroup_from_mm +EXPORT_SYMBOL vmlinux 0x4c65025b clk_get +EXPORT_SYMBOL vmlinux 0x4c65f02b can_nice +EXPORT_SYMBOL vmlinux 0x4c67f9f9 d_rehash +EXPORT_SYMBOL vmlinux 0x4c6d7bf1 __inc_zone_page_state +EXPORT_SYMBOL vmlinux 0x4c826af5 tty_unthrottle +EXPORT_SYMBOL vmlinux 0x4c8698b1 seq_escape_mem EXPORT_SYMBOL vmlinux 0x4cba441d iwe_stream_add_event -EXPORT_SYMBOL vmlinux 0x4cc61c22 zero_fill_bio +EXPORT_SYMBOL vmlinux 0x4cc3692e cdev_device_add EXPORT_SYMBOL vmlinux 0x4cd3e03b config_item_set_name -EXPORT_SYMBOL vmlinux 0x4cff3bef wait_on_page_bit +EXPORT_SYMBOL vmlinux 0x4cd8661f fscrypt_encrypt_block_inplace +EXPORT_SYMBOL vmlinux 0x4cd94080 iget5_locked +EXPORT_SYMBOL vmlinux 0x4ce97071 fifo_set_limit +EXPORT_SYMBOL vmlinux 0x4cfa2e66 arp_send +EXPORT_SYMBOL vmlinux 0x4cffaa54 neigh_parms_release EXPORT_SYMBOL vmlinux 0x4d0d163d copy_page -EXPORT_SYMBOL vmlinux 0x4d2af6df mmc_retune_unpause -EXPORT_SYMBOL vmlinux 0x4d38986b rproc_of_resm_mem_entry_init +EXPORT_SYMBOL vmlinux 0x4d21c2e9 generic_splice_sendpage +EXPORT_SYMBOL vmlinux 0x4d3116fd tcp_init_sock +EXPORT_SYMBOL vmlinux 0x4d3ac403 __ip4_datagram_connect EXPORT_SYMBOL vmlinux 0x4d3c153f sigprocmask EXPORT_SYMBOL vmlinux 0x4d45d89e udp_memory_allocated +EXPORT_SYMBOL vmlinux 0x4d48a110 skb_expand_head +EXPORT_SYMBOL vmlinux 0x4d4b96ae netlink_broadcast EXPORT_SYMBOL vmlinux 0x4d514485 xa_store -EXPORT_SYMBOL vmlinux 0x4d61e2b7 ata_scsi_cmd_error_handler +EXPORT_SYMBOL vmlinux 0x4d58708a create_empty_buffers EXPORT_SYMBOL vmlinux 0x4d6ae35f rps_sock_flow_table -EXPORT_SYMBOL vmlinux 0x4d705d34 xfrm_register_type -EXPORT_SYMBOL vmlinux 0x4d7bb9ec iov_iter_pipe -EXPORT_SYMBOL vmlinux 0x4d8aa301 jbd2_journal_clear_features -EXPORT_SYMBOL vmlinux 0x4d9a1bba input_mt_drop_unused +EXPORT_SYMBOL vmlinux 0x4d945df7 bio_clone_fast +EXPORT_SYMBOL vmlinux 0x4d99d902 dmam_free_coherent EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase EXPORT_SYMBOL vmlinux 0x4d9b6d35 snd_pcm_format_size -EXPORT_SYMBOL vmlinux 0x4dc1fdd4 phy_set_asym_pause -EXPORT_SYMBOL vmlinux 0x4dc6e206 security_dentry_init_security +EXPORT_SYMBOL vmlinux 0x4da22b4c __blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0x4da67f0a follow_pfn +EXPORT_SYMBOL vmlinux 0x4dbee3cc __neigh_event_send EXPORT_SYMBOL vmlinux 0x4dce47d8 _raw_spin_trylock -EXPORT_SYMBOL vmlinux 0x4dd9730a i2c_clients_command +EXPORT_SYMBOL vmlinux 0x4dcff150 omap_rtc_power_off_program +EXPORT_SYMBOL vmlinux 0x4dd22078 new_inode +EXPORT_SYMBOL vmlinux 0x4ddc6b90 sg_alloc_table_from_pages_segment +EXPORT_SYMBOL vmlinux 0x4de52876 devm_pci_alloc_host_bridge EXPORT_SYMBOL vmlinux 0x4dec6038 memscan -EXPORT_SYMBOL vmlinux 0x4df1de06 dma_supported +EXPORT_SYMBOL vmlinux 0x4dee558a reuseport_alloc EXPORT_SYMBOL vmlinux 0x4df2ea84 gen_estimator_read +EXPORT_SYMBOL vmlinux 0x4e031159 readahead_expand EXPORT_SYMBOL vmlinux 0x4e05bdec mempool_init_node -EXPORT_SYMBOL vmlinux 0x4e11676e d_find_alias -EXPORT_SYMBOL vmlinux 0x4e1c58a0 __inet_stream_connect +EXPORT_SYMBOL vmlinux 0x4e061ba6 dev_mc_init +EXPORT_SYMBOL vmlinux 0x4e092d3f tso_start 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 0x4e5fe216 pci_irq_get_affinity EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder -EXPORT_SYMBOL vmlinux 0x4e6b145b phy_queue_state_machine EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console -EXPORT_SYMBOL vmlinux 0x4e7240ea md_integrity_register -EXPORT_SYMBOL vmlinux 0x4e8d8b3b register_filesystem -EXPORT_SYMBOL vmlinux 0x4e9345a1 jbd2_journal_update_sb_errno -EXPORT_SYMBOL vmlinux 0x4ea49df8 dquot_acquire -EXPORT_SYMBOL vmlinux 0x4eada233 rawnand_sw_bch_cleanup +EXPORT_SYMBOL vmlinux 0x4e75bc8a security_task_getsecid_obj +EXPORT_SYMBOL vmlinux 0x4e7cdd6f netdev_set_tc_queue +EXPORT_SYMBOL vmlinux 0x4e863dbc user_path_at_empty +EXPORT_SYMBOL vmlinux 0x4e866bad blk_queue_dma_alignment +EXPORT_SYMBOL vmlinux 0x4e89f264 snd_timer_global_register +EXPORT_SYMBOL vmlinux 0x4e8bf769 single_open +EXPORT_SYMBOL vmlinux 0x4ea501ef vfs_get_fsid EXPORT_SYMBOL vmlinux 0x4eada8f7 security_secid_to_secctx -EXPORT_SYMBOL vmlinux 0x4ec00b8d ppp_register_net_channel -EXPORT_SYMBOL vmlinux 0x4ec7e0f3 scsi_device_lookup -EXPORT_SYMBOL vmlinux 0x4ecbbe52 disk_stack_limits +EXPORT_SYMBOL vmlinux 0x4eb3447e generic_setlease +EXPORT_SYMBOL vmlinux 0x4ecbfb56 d_delete EXPORT_SYMBOL vmlinux 0x4ee0e846 ZSTD_initDCtx -EXPORT_SYMBOL vmlinux 0x4ee6bb9f free_cgroup_ns EXPORT_SYMBOL vmlinux 0x4ee98ebd tcp_have_smc -EXPORT_SYMBOL vmlinux 0x4ef1195e devm_alloc_etherdev_mqs -EXPORT_SYMBOL vmlinux 0x4f108d46 notify_change +EXPORT_SYMBOL vmlinux 0x4f02b75e remove_proc_entry +EXPORT_SYMBOL vmlinux 0x4f068e0d pci_resize_resource +EXPORT_SYMBOL vmlinux 0x4f1699e3 input_flush_device +EXPORT_SYMBOL vmlinux 0x4f1984c4 ip6mr_rule_default EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create +EXPORT_SYMBOL vmlinux 0x4f20cc94 xfrm_find_acq_byseq EXPORT_SYMBOL vmlinux 0x4f2250ba rtc_tm_to_time64 +EXPORT_SYMBOL vmlinux 0x4f256848 param_set_bint EXPORT_SYMBOL vmlinux 0x4f2b2b5b config_item_get -EXPORT_SYMBOL vmlinux 0x4f340468 __xfrm_init_state -EXPORT_SYMBOL vmlinux 0x4f45cf19 kmalloc_caches -EXPORT_SYMBOL vmlinux 0x4f5144b5 generic_file_read_iter -EXPORT_SYMBOL vmlinux 0x4f51cf16 tcp_sock_set_keepcnt -EXPORT_SYMBOL vmlinux 0x4f533d2a netdev_notice -EXPORT_SYMBOL vmlinux 0x4f743f0c linkwatch_fire_event +EXPORT_SYMBOL vmlinux 0x4f337455 of_io_request_and_map EXPORT_SYMBOL vmlinux 0x4f816e9b snd_pcm_format_big_endian +EXPORT_SYMBOL vmlinux 0x4f881a21 sock_alloc_send_pskb EXPORT_SYMBOL vmlinux 0x4f89c9de gpmc_cs_free -EXPORT_SYMBOL vmlinux 0x4fb8eac1 mfd_remove_devices -EXPORT_SYMBOL vmlinux 0x4fd7b3b4 mipi_dsi_host_register -EXPORT_SYMBOL vmlinux 0x4fd7d4e6 iter_file_splice_write -EXPORT_SYMBOL vmlinux 0x4fda35d5 blk_mq_start_stopped_hw_queues -EXPORT_SYMBOL vmlinux 0x4fdb6e9b tcf_qevent_validate_change -EXPORT_SYMBOL vmlinux 0x4fe0cee4 tcf_qevent_destroy +EXPORT_SYMBOL vmlinux 0x4f8ea928 __cleancache_put_page +EXPORT_SYMBOL vmlinux 0x4fab4bd1 bio_integrity_prep +EXPORT_SYMBOL vmlinux 0x4fae3063 inode_add_bytes +EXPORT_SYMBOL vmlinux 0x4fae5078 netif_schedule_queue +EXPORT_SYMBOL vmlinux 0x4fcad634 netdev_master_upper_dev_get +EXPORT_SYMBOL vmlinux 0x4fd1fda3 should_remove_suid EXPORT_SYMBOL vmlinux 0x4fef3ef4 completion_done EXPORT_SYMBOL vmlinux 0x4ffb59bf __SCK__tp_func_kfree +EXPORT_SYMBOL vmlinux 0x5007f898 input_mt_report_slot_state EXPORT_SYMBOL vmlinux 0x50097088 security_tun_dev_free_security EXPORT_SYMBOL vmlinux 0x5009c71d glob_match -EXPORT_SYMBOL vmlinux 0x501bc643 misc_register -EXPORT_SYMBOL vmlinux 0x501fa888 empty_zero_page +EXPORT_SYMBOL vmlinux 0x5010d8e0 pcix_get_mmrbc +EXPORT_SYMBOL vmlinux 0x5014b738 snd_ctl_new1 EXPORT_SYMBOL vmlinux 0x502b6647 mempool_create_node -EXPORT_SYMBOL vmlinux 0x502e7ea8 napi_build_skb -EXPORT_SYMBOL vmlinux 0x50347f0a tty_vhangup EXPORT_SYMBOL vmlinux 0x503bd137 snd_interval_ranges -EXPORT_SYMBOL vmlinux 0x504235f0 of_find_property +EXPORT_SYMBOL vmlinux 0x504daacc sg_miter_start EXPORT_SYMBOL vmlinux 0x50624917 sha1_init EXPORT_SYMBOL vmlinux 0x506dff1a __genradix_free -EXPORT_SYMBOL vmlinux 0x507243f4 fs_context_for_mount +EXPORT_SYMBOL vmlinux 0x5081c3e2 inet6_getname +EXPORT_SYMBOL vmlinux 0x508741a3 simple_nosetlease +EXPORT_SYMBOL vmlinux 0x50976f0c rtnetlink_put_metrics EXPORT_SYMBOL vmlinux 0x50a4698c fb_videomode_to_modelist -EXPORT_SYMBOL vmlinux 0x50aa1b6d unregister_fib_notifier -EXPORT_SYMBOL vmlinux 0x50b04a67 md_bitmap_start_sync -EXPORT_SYMBOL vmlinux 0x50b668b0 snd_timer_interrupt +EXPORT_SYMBOL vmlinux 0x50b352c8 d_drop +EXPORT_SYMBOL vmlinux 0x50b48204 scsi_track_queue_full EXPORT_SYMBOL vmlinux 0x50b73ce2 rfkill_find_type -EXPORT_SYMBOL vmlinux 0x50b85824 blk_rq_map_user_iov -EXPORT_SYMBOL vmlinux 0x50bada3b pps_lookup_dev EXPORT_SYMBOL vmlinux 0x50be748d security_ib_free_security -EXPORT_SYMBOL vmlinux 0x50bf1d39 netpoll_poll_disable -EXPORT_SYMBOL vmlinux 0x50c0d696 dmaengine_get_unmap_data -EXPORT_SYMBOL vmlinux 0x50c12fc0 dev_uc_flush -EXPORT_SYMBOL vmlinux 0x50cc4580 md_done_sync +EXPORT_SYMBOL vmlinux 0x50c6bd1a simple_write_begin EXPORT_SYMBOL vmlinux 0x50d035c2 vsscanf -EXPORT_SYMBOL vmlinux 0x50d50be8 input_mt_assign_slots +EXPORT_SYMBOL vmlinux 0x50d42c55 nf_log_set EXPORT_SYMBOL vmlinux 0x50d71bcf gen_pool_first_fit -EXPORT_SYMBOL vmlinux 0x50f220ef skb_copy_datagram_from_iter +EXPORT_SYMBOL vmlinux 0x50e86761 of_get_mac_address +EXPORT_SYMBOL vmlinux 0x50ee1dc0 nd_btt_probe +EXPORT_SYMBOL vmlinux 0x50f12c05 skb_tunnel_check_pmtu EXPORT_SYMBOL vmlinux 0x50f85302 __arm_smccc_hvc EXPORT_SYMBOL vmlinux 0x50fd6103 dma_fence_signal -EXPORT_SYMBOL vmlinux 0x5102536c fddi_type_trans -EXPORT_SYMBOL vmlinux 0x511adf2c kthread_create_worker -EXPORT_SYMBOL vmlinux 0x512e71f1 module_refcount -EXPORT_SYMBOL vmlinux 0x5134c8e1 genphy_read_abilities -EXPORT_SYMBOL vmlinux 0x51375e42 unix_detach_fds -EXPORT_SYMBOL vmlinux 0x51377896 read_code -EXPORT_SYMBOL vmlinux 0x513a5502 genphy_read_status -EXPORT_SYMBOL vmlinux 0x513a9c62 __skb_pad +EXPORT_SYMBOL vmlinux 0x5108093d scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x513cf8da request_firmware_nowait +EXPORT_SYMBOL vmlinux 0x513e758b serio_unregister_port EXPORT_SYMBOL vmlinux 0x51480110 __tracepoint_mmap_lock_released EXPORT_SYMBOL vmlinux 0x514a62ec dq_data_lock EXPORT_SYMBOL vmlinux 0x51641162 opal_unlock_from_suspend -EXPORT_SYMBOL vmlinux 0x5166c1cd read_cache_page_gfp -EXPORT_SYMBOL vmlinux 0x517028fe __put_user_ns -EXPORT_SYMBOL vmlinux 0x517787e9 mipi_dsi_dcs_set_tear_scanline +EXPORT_SYMBOL vmlinux 0x51676ee9 truncate_inode_pages +EXPORT_SYMBOL vmlinux 0x517169c0 of_device_is_available +EXPORT_SYMBOL vmlinux 0x518e185a qdisc_hash_add +EXPORT_SYMBOL vmlinux 0x5199be9c mdiobus_read_nested EXPORT_SYMBOL vmlinux 0x51a910c0 arm_copy_to_user -EXPORT_SYMBOL vmlinux 0x51a92d0e pci_bus_size_bridges -EXPORT_SYMBOL vmlinux 0x51aa6dd5 blk_queue_flag_set -EXPORT_SYMBOL vmlinux 0x51d1287c simple_statfs -EXPORT_SYMBOL vmlinux 0x51e009d9 vfs_llseek +EXPORT_SYMBOL vmlinux 0x51ab9d5e inet6_add_offload +EXPORT_SYMBOL vmlinux 0x51be986d begin_new_exec +EXPORT_SYMBOL vmlinux 0x51da18b7 security_task_getsecid_subj +EXPORT_SYMBOL vmlinux 0x51e1af67 read_cache_page EXPORT_SYMBOL vmlinux 0x51e77c97 pfn_valid +EXPORT_SYMBOL vmlinux 0x51f6af27 ata_port_printk EXPORT_SYMBOL vmlinux 0x51f86a1a blk_limits_io_opt EXPORT_SYMBOL vmlinux 0x5203d176 cmd_db_ready -EXPORT_SYMBOL vmlinux 0x521b1ef2 udp_disconnect -EXPORT_SYMBOL vmlinux 0x521c69e3 devm_backlight_device_register +EXPORT_SYMBOL vmlinux 0x5213e41a __mdiobus_read EXPORT_SYMBOL vmlinux 0x522fb0e4 __hsiphash_unaligned -EXPORT_SYMBOL vmlinux 0x5230e4dd of_find_compatible_node +EXPORT_SYMBOL vmlinux 0x523b7321 remove_arg_zero EXPORT_SYMBOL vmlinux 0x523e57aa ZSTD_getDictID_fromDict -EXPORT_SYMBOL vmlinux 0x524bdab2 scsi_device_put -EXPORT_SYMBOL vmlinux 0x525086fa gnet_stats_start_copy_compat -EXPORT_SYMBOL vmlinux 0x52644e0d dev_get_by_index_rcu -EXPORT_SYMBOL vmlinux 0x52810a18 open_exec -EXPORT_SYMBOL vmlinux 0x528bbca6 configfs_register_group +EXPORT_SYMBOL vmlinux 0x52456b43 dm_table_run_md_queue_async +EXPORT_SYMBOL vmlinux 0x524660f3 nvdimm_namespace_capacity +EXPORT_SYMBOL vmlinux 0x52590078 seq_file_path +EXPORT_SYMBOL vmlinux 0x5267c1a7 rproc_get_by_child +EXPORT_SYMBOL vmlinux 0x526a95f4 flow_indr_block_cb_alloc +EXPORT_SYMBOL vmlinux 0x526bce2d blk_mq_delay_run_hw_queue +EXPORT_SYMBOL vmlinux 0x526d23cb md_register_thread +EXPORT_SYMBOL vmlinux 0x52823b10 insert_inode_locked +EXPORT_SYMBOL vmlinux 0x5285e604 dcache_dir_open +EXPORT_SYMBOL vmlinux 0x528a2561 netdev_set_sb_channel EXPORT_SYMBOL vmlinux 0x528c709d simple_read_from_buffer -EXPORT_SYMBOL vmlinux 0x528c94fb misc_deregister -EXPORT_SYMBOL vmlinux 0x52b280bd amba_device_register +EXPORT_SYMBOL vmlinux 0x529eadb7 xfrm_state_add +EXPORT_SYMBOL vmlinux 0x52b277d1 registered_fb +EXPORT_SYMBOL vmlinux 0x52b64884 ip_defrag EXPORT_SYMBOL vmlinux 0x52ba6325 __cpuhp_setup_state -EXPORT_SYMBOL vmlinux 0x52c08723 snd_pcm_open_substream -EXPORT_SYMBOL vmlinux 0x52c92d7d ip_options_compile +EXPORT_SYMBOL vmlinux 0x52c29662 ata_dev_printk +EXPORT_SYMBOL vmlinux 0x52c2d34e __sk_dst_check +EXPORT_SYMBOL vmlinux 0x52c79f24 mpage_readahead EXPORT_SYMBOL vmlinux 0x52d717da xz_dec_init EXPORT_SYMBOL vmlinux 0x52e3e4a5 snd_pcm_hw_param_value -EXPORT_SYMBOL vmlinux 0x52efc52f seq_escape -EXPORT_SYMBOL vmlinux 0x52f2aae3 sock_common_recvmsg -EXPORT_SYMBOL vmlinux 0x52f4eaee ip_frag_next -EXPORT_SYMBOL vmlinux 0x52fa370d blk_mq_alloc_request -EXPORT_SYMBOL vmlinux 0x52fa5df1 snd_dma_buffer_mmap +EXPORT_SYMBOL vmlinux 0x52ec78b5 netdev_warn +EXPORT_SYMBOL vmlinux 0x53059ae1 neigh_lookup_nodev EXPORT_SYMBOL vmlinux 0x530b1e98 pm_suspend -EXPORT_SYMBOL vmlinux 0x531d1159 jbd2_journal_stop EXPORT_SYMBOL vmlinux 0x5338184f ethtool_sprintf -EXPORT_SYMBOL vmlinux 0x53382694 ipv6_dev_mc_dec -EXPORT_SYMBOL vmlinux 0x534908b0 input_handler_for_each_handle -EXPORT_SYMBOL vmlinux 0x534a68b1 of_phy_deregister_fixed_link -EXPORT_SYMBOL vmlinux 0x534cfa32 generic_splice_sendpage +EXPORT_SYMBOL vmlinux 0x533ddd72 nf_unregister_net_hooks +EXPORT_SYMBOL vmlinux 0x534708cc snd_device_free +EXPORT_SYMBOL vmlinux 0x534b0901 register_shrinker +EXPORT_SYMBOL vmlinux 0x534ee84d pm_vt_switch_unregister +EXPORT_SYMBOL vmlinux 0x535735af mmc_card_is_blockaddr EXPORT_SYMBOL vmlinux 0x536060af radix_tree_lookup_slot -EXPORT_SYMBOL vmlinux 0x536c06f8 vme_new_dma_list -EXPORT_SYMBOL vmlinux 0x536dcc83 pci_bus_read_config_word -EXPORT_SYMBOL vmlinux 0x53763826 input_mt_init_slots -EXPORT_SYMBOL vmlinux 0x5383687f xfrm6_rcv_encap -EXPORT_SYMBOL vmlinux 0x538de816 get_unmapped_area -EXPORT_SYMBOL vmlinux 0x53ac6e12 tcf_idr_create_from_flags -EXPORT_SYMBOL vmlinux 0x53acf2da pci_unregister_driver +EXPORT_SYMBOL vmlinux 0x53721835 devm_clk_hw_register_clkdev +EXPORT_SYMBOL vmlinux 0x538ce9fb bio_alloc_bioset +EXPORT_SYMBOL vmlinux 0x538df937 tty_port_open +EXPORT_SYMBOL vmlinux 0x53a52ad0 fscrypt_ioctl_set_policy EXPORT_SYMBOL vmlinux 0x53aeb013 hdmi_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0x53ba51cc vfs_mkobj -EXPORT_SYMBOL vmlinux 0x53c20f77 inet_csk_destroy_sock -EXPORT_SYMBOL vmlinux 0x53c6833a deactivate_locked_super -EXPORT_SYMBOL vmlinux 0x53c8ee35 pcie_port_service_unregister -EXPORT_SYMBOL vmlinux 0x541a5c03 jbd2_fc_end_commit_fallback -EXPORT_SYMBOL vmlinux 0x5420a363 snd_pcm_new -EXPORT_SYMBOL vmlinux 0x54267e91 ip_fraglist_init +EXPORT_SYMBOL vmlinux 0x53b34fbf take_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0x53c6a53e input_set_timestamp +EXPORT_SYMBOL vmlinux 0x53ea17e9 snd_pcm_hw_param_first +EXPORT_SYMBOL vmlinux 0x53eec3a7 skb_vlan_pop +EXPORT_SYMBOL vmlinux 0x540d8f21 io_uring_get_socket +EXPORT_SYMBOL vmlinux 0x5427bd4a __frontswap_test +EXPORT_SYMBOL vmlinux 0x542eec7e blk_mq_start_hw_queues EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start -EXPORT_SYMBOL vmlinux 0x548765fd netdev_name_node_alt_create -EXPORT_SYMBOL vmlinux 0x54985c45 path_is_mountpoint -EXPORT_SYMBOL vmlinux 0x549db7b4 setup_new_exec -EXPORT_SYMBOL vmlinux 0x549f73c8 tty_do_resize -EXPORT_SYMBOL vmlinux 0x54a2c4a5 md_flush_request -EXPORT_SYMBOL vmlinux 0x54aa1aa8 proc_create_data +EXPORT_SYMBOL vmlinux 0x54533272 skb_set_owner_w +EXPORT_SYMBOL vmlinux 0x547a6ec0 put_ipc_ns +EXPORT_SYMBOL vmlinux 0x5494e885 eth_header_parse_protocol EXPORT_SYMBOL vmlinux 0x54b1fac6 __ubsan_handle_load_invalid_value +EXPORT_SYMBOL vmlinux 0x54b99e3b __udp_disconnect +EXPORT_SYMBOL vmlinux 0x54c18b9f dquot_commit +EXPORT_SYMBOL vmlinux 0x54cb1cda tcp_connect +EXPORT_SYMBOL vmlinux 0x54cca496 jbd2_journal_extend +EXPORT_SYMBOL vmlinux 0x54cfaa7c of_platform_bus_probe +EXPORT_SYMBOL vmlinux 0x54d0d35f ethtool_rx_flow_rule_destroy +EXPORT_SYMBOL vmlinux 0x54d1278c of_node_put +EXPORT_SYMBOL vmlinux 0x54d758a1 bfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0x54db946f rproc_of_parse_firmware EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp -EXPORT_SYMBOL vmlinux 0x54ed3173 vm_insert_pages -EXPORT_SYMBOL vmlinux 0x54f39b0c ppp_register_compressor +EXPORT_SYMBOL vmlinux 0x54fe089a lru_cache_add EXPORT_SYMBOL vmlinux 0x5506b8f7 netlbl_bitmap_setbit -EXPORT_SYMBOL vmlinux 0x550c0d15 vfs_mknod +EXPORT_SYMBOL vmlinux 0x55158ed3 of_device_get_match_data EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color -EXPORT_SYMBOL vmlinux 0x551c8212 module_layout -EXPORT_SYMBOL vmlinux 0x554434f4 xfrm_unregister_km +EXPORT_SYMBOL vmlinux 0x5525d70d freezing_slow_path +EXPORT_SYMBOL vmlinux 0x55289507 bioset_exit +EXPORT_SYMBOL vmlinux 0x55298edd inet_bind EXPORT_SYMBOL vmlinux 0x5545a639 ns_capable_noaudit EXPORT_SYMBOL vmlinux 0x554ae3a4 irq_poll_sched +EXPORT_SYMBOL vmlinux 0x5555307a proc_symlink +EXPORT_SYMBOL vmlinux 0x55598a23 dmaenginem_async_device_register +EXPORT_SYMBOL vmlinux 0x555a81b1 netdev_upper_dev_unlink +EXPORT_SYMBOL vmlinux 0x555eaecb keyring_search EXPORT_SYMBOL vmlinux 0x5562e403 prepare_to_wait_exclusive -EXPORT_SYMBOL vmlinux 0x556d08e2 jbd2_journal_forget -EXPORT_SYMBOL vmlinux 0x557d2ecf dev_set_mtu -EXPORT_SYMBOL vmlinux 0x558a4556 flow_indr_block_cb_alloc +EXPORT_SYMBOL vmlinux 0x557c1201 xfrm4_protocol_register +EXPORT_SYMBOL vmlinux 0x55803657 dev_mc_sync_multiple +EXPORT_SYMBOL vmlinux 0x558897a6 netdev_err EXPORT_SYMBOL vmlinux 0x558b281d aes_expandkey -EXPORT_SYMBOL vmlinux 0x558f85f7 do_clone_file_range -EXPORT_SYMBOL vmlinux 0x5592daab xfrm_lookup_with_ifid -EXPORT_SYMBOL vmlinux 0x5592f556 ptp_clock_index -EXPORT_SYMBOL vmlinux 0x55b12542 inet6_del_protocol -EXPORT_SYMBOL vmlinux 0x55b5cbed sock_create_kern -EXPORT_SYMBOL vmlinux 0x55c9a91d dquot_resume -EXPORT_SYMBOL vmlinux 0x55dfd80b napi_consume_skb +EXPORT_SYMBOL vmlinux 0x558c4303 vme_irq_request +EXPORT_SYMBOL vmlinux 0x559f5338 __block_write_begin +EXPORT_SYMBOL vmlinux 0x55b36422 dma_resv_add_excl_fence EXPORT_SYMBOL vmlinux 0x55e31703 ethtool_convert_link_mode_to_legacy_u32 EXPORT_SYMBOL vmlinux 0x55eb869a _raw_read_trylock -EXPORT_SYMBOL vmlinux 0x55fd7722 _copy_from_iter -EXPORT_SYMBOL vmlinux 0x561e4881 __inet6_lookup_established +EXPORT_SYMBOL vmlinux 0x55f1c3a2 blk_pre_runtime_suspend +EXPORT_SYMBOL vmlinux 0x560ea3bf nf_log_unregister +EXPORT_SYMBOL vmlinux 0x5624f804 mini_qdisc_pair_init EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user -EXPORT_SYMBOL vmlinux 0x5637b7c6 twl6040_get_vibralr_status EXPORT_SYMBOL vmlinux 0x563952a3 kblockd_schedule_work -EXPORT_SYMBOL vmlinux 0x56416d92 key_unlink -EXPORT_SYMBOL vmlinux 0x56656d19 of_graph_get_port_parent +EXPORT_SYMBOL vmlinux 0x56708c16 netif_tx_stop_all_queues +EXPORT_SYMBOL vmlinux 0x56785854 generic_shutdown_super EXPORT_SYMBOL vmlinux 0x56802ae8 rps_cpu_mask -EXPORT_SYMBOL vmlinux 0x5691a4eb pin_user_pages_locked -EXPORT_SYMBOL vmlinux 0x56af5160 mdiobus_unregister_device +EXPORT_SYMBOL vmlinux 0x5692672e dev_disable_lro +EXPORT_SYMBOL vmlinux 0x56af1c54 simple_transaction_release +EXPORT_SYMBOL vmlinux 0x56b2a52c of_parse_phandle_with_args_map +EXPORT_SYMBOL vmlinux 0x56b52b5d ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0x56b847b9 rpmh_write_async +EXPORT_SYMBOL vmlinux 0x56b91eae sync_inodes_sb EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg -EXPORT_SYMBOL vmlinux 0x56d40b70 blk_queue_max_hw_sectors +EXPORT_SYMBOL vmlinux 0x56cdd5a7 unregister_cdrom +EXPORT_SYMBOL vmlinux 0x56cec91b dev_addr_flush +EXPORT_SYMBOL vmlinux 0x56d7e39a snd_ctl_find_numid EXPORT_SYMBOL vmlinux 0x56de5ace __cpuhp_remove_state -EXPORT_SYMBOL vmlinux 0x571316d5 xfrm_state_flush -EXPORT_SYMBOL vmlinux 0x57238672 genphy_read_mmd_unsupported -EXPORT_SYMBOL vmlinux 0x5730c624 __udp_disconnect -EXPORT_SYMBOL vmlinux 0x574545d7 rproc_coredump_using_sections +EXPORT_SYMBOL vmlinux 0x56e27878 put_cmsg_scm_timestamping +EXPORT_SYMBOL vmlinux 0x572b723d vm_iomap_memory +EXPORT_SYMBOL vmlinux 0x573bb094 input_mt_report_pointer_emulation EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put EXPORT_SYMBOL vmlinux 0x57674fd7 __sw_hweight16 -EXPORT_SYMBOL vmlinux 0x576db2cd udp_seq_start -EXPORT_SYMBOL vmlinux 0x5780a395 max8998_update_reg -EXPORT_SYMBOL vmlinux 0x57a56f9f pci_get_domain_bus_and_slot -EXPORT_SYMBOL vmlinux 0x57aa3ace dquot_load_quota_inode -EXPORT_SYMBOL vmlinux 0x57b82197 phy_ethtool_get_wol -EXPORT_SYMBOL vmlinux 0x57c2750d md_handle_request -EXPORT_SYMBOL vmlinux 0x57c4c0d4 mipi_dsi_shutdown_peripheral +EXPORT_SYMBOL vmlinux 0x57805033 max8998_read_reg +EXPORT_SYMBOL vmlinux 0x57855322 jbd2_complete_transaction +EXPORT_SYMBOL vmlinux 0x5795251f xp_raw_get_dma +EXPORT_SYMBOL vmlinux 0x5797008c fb_class +EXPORT_SYMBOL vmlinux 0x57a577bf udplite_prot +EXPORT_SYMBOL vmlinux 0x57b01d56 csum_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0x57cda458 snd_power_wait EXPORT_SYMBOL vmlinux 0x57ceedb1 lockref_put_not_zero +EXPORT_SYMBOL vmlinux 0x57cfdfe0 phy_stop +EXPORT_SYMBOL vmlinux 0x57d96401 input_match_device_id EXPORT_SYMBOL vmlinux 0x57e5170c qcom_scm_iommu_secure_ptbl_size +EXPORT_SYMBOL vmlinux 0x57f06a85 rc5t583_ext_power_req_config EXPORT_SYMBOL vmlinux 0x57f38cdc qe_get_firmware_info +EXPORT_SYMBOL vmlinux 0x57fdc366 init_pseudo EXPORT_SYMBOL vmlinux 0x57ff23f0 ZSTD_getFrameContentSize +EXPORT_SYMBOL vmlinux 0x580687a9 sk_page_frag_refill +EXPORT_SYMBOL vmlinux 0x58148e9b pci_assign_resource EXPORT_SYMBOL vmlinux 0x5818fe3c posix_acl_from_mode EXPORT_SYMBOL vmlinux 0x581cde4e up EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate EXPORT_SYMBOL vmlinux 0x582b6275 xfrm_if_unregister_cb -EXPORT_SYMBOL vmlinux 0x5834b7d1 jbd2_journal_destroy EXPORT_SYMBOL vmlinux 0x5838f6c9 rtc_valid_tm -EXPORT_SYMBOL vmlinux 0x58509933 amba_request_regions EXPORT_SYMBOL vmlinux 0x58516557 omap_set_dma_src_data_pack -EXPORT_SYMBOL vmlinux 0x58538fb5 ip_sock_set_mtu_discover -EXPORT_SYMBOL vmlinux 0x5859530d seq_release -EXPORT_SYMBOL vmlinux 0x586ef1ea device_add_disk -EXPORT_SYMBOL vmlinux 0x58725add inet_dev_addr_type -EXPORT_SYMBOL vmlinux 0x5877028b get_tree_single +EXPORT_SYMBOL vmlinux 0x585295f6 mr_vif_seq_next +EXPORT_SYMBOL vmlinux 0x586b2b3e mini_qdisc_pair_block_init EXPORT_SYMBOL vmlinux 0x587b0954 kvasprintf EXPORT_SYMBOL vmlinux 0x587b892e qe_get_num_of_risc -EXPORT_SYMBOL vmlinux 0x5884727d tcp_read_sock -EXPORT_SYMBOL vmlinux 0x5896b47c scsi_is_sdev_device +EXPORT_SYMBOL vmlinux 0x587fb507 sk_free +EXPORT_SYMBOL vmlinux 0x588e2d4d snd_pcm_hw_constraint_minmax EXPORT_SYMBOL vmlinux 0x58a486cb load_nls_default EXPORT_SYMBOL vmlinux 0x58acf24b mdiobus_register_board_info EXPORT_SYMBOL vmlinux 0x58b4645c dev_close_many EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard -EXPORT_SYMBOL vmlinux 0x58ca06a8 mmc_cqe_post_req -EXPORT_SYMBOL vmlinux 0x58cc1ef3 d_invalidate -EXPORT_SYMBOL vmlinux 0x58d789c5 jbd2_trans_will_send_data_barrier +EXPORT_SYMBOL vmlinux 0x58c8f2b4 elv_rb_find +EXPORT_SYMBOL vmlinux 0x58d14962 rtnl_create_link +EXPORT_SYMBOL vmlinux 0x58e09d42 ip6_dst_alloc EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io +EXPORT_SYMBOL vmlinux 0x58e34393 icmp_ndo_send +EXPORT_SYMBOL vmlinux 0x58f45f1b netlink_rcv_skb EXPORT_SYMBOL vmlinux 0x58fad869 __var_waitqueue -EXPORT_SYMBOL vmlinux 0x590efef4 phy_reset_after_clk_enable -EXPORT_SYMBOL vmlinux 0x590f9462 pci_request_irq -EXPORT_SYMBOL vmlinux 0x591414ce snd_ctl_free_one +EXPORT_SYMBOL vmlinux 0x58fe2f0d setup_new_exec +EXPORT_SYMBOL vmlinux 0x5922e50e fwnode_phy_find_device EXPORT_SYMBOL vmlinux 0x592b5bd9 tcp_sockets_allocated -EXPORT_SYMBOL vmlinux 0x592d1bac set_cached_acl -EXPORT_SYMBOL vmlinux 0x59487cc0 vfs_get_super -EXPORT_SYMBOL vmlinux 0x59490486 dma_sync_sg_for_device +EXPORT_SYMBOL vmlinux 0x59473b86 inet_stream_connect EXPORT_SYMBOL vmlinux 0x594bf15b ioport_map EXPORT_SYMBOL vmlinux 0x594e1317 __modsi3 -EXPORT_SYMBOL vmlinux 0x5950e75f iw_handler_get_spy -EXPORT_SYMBOL vmlinux 0x5977e2df scsi_host_alloc -EXPORT_SYMBOL vmlinux 0x5988415f dev_pm_opp_register_notifier -EXPORT_SYMBOL vmlinux 0x598f4540 netdev_rx_csum_fault -EXPORT_SYMBOL vmlinux 0x59938866 d_instantiate_anon +EXPORT_SYMBOL vmlinux 0x5966bd58 __ps2_command +EXPORT_SYMBOL vmlinux 0x59766a96 deactivate_locked_super +EXPORT_SYMBOL vmlinux 0x59831563 tty_port_block_til_ready EXPORT_SYMBOL vmlinux 0x599b4888 qe_setbrg -EXPORT_SYMBOL vmlinux 0x59b55790 dquot_claim_space_nodirty +EXPORT_SYMBOL vmlinux 0x599fd8e8 blk_mq_tagset_wait_completed_request EXPORT_SYMBOL vmlinux 0x59b7cab6 mempool_resize -EXPORT_SYMBOL vmlinux 0x59ca17f4 pcie_capability_clear_and_set_word +EXPORT_SYMBOL vmlinux 0x59ba7c39 scsi_print_sense_hdr +EXPORT_SYMBOL vmlinux 0x59bc2b6f vfs_dup_fs_context +EXPORT_SYMBOL vmlinux 0x59c460a7 pci_free_irq EXPORT_SYMBOL vmlinux 0x59d29dab v7_flush_kern_dcache_area -EXPORT_SYMBOL vmlinux 0x59d42b3d scsi_device_resume -EXPORT_SYMBOL vmlinux 0x59d8e9f8 netdev_class_remove_file_ns +EXPORT_SYMBOL vmlinux 0x59de97e5 phys_mem_access_prot EXPORT_SYMBOL vmlinux 0x59e5070d __do_div64 -EXPORT_SYMBOL vmlinux 0x59e5ea36 dquot_file_open -EXPORT_SYMBOL vmlinux 0x59e82fc8 dev_get_by_name -EXPORT_SYMBOL vmlinux 0x59f1bce1 arm_coherent_dma_ops -EXPORT_SYMBOL vmlinux 0x5a08e52f flow_block_cb_free +EXPORT_SYMBOL vmlinux 0x59f6320f tcp_setsockopt EXPORT_SYMBOL vmlinux 0x5a0b73d0 zlib_deflateInit2 EXPORT_SYMBOL vmlinux 0x5a14de15 radix_tree_insert -EXPORT_SYMBOL vmlinux 0x5a1bfc69 in6_dev_finish_destroy -EXPORT_SYMBOL vmlinux 0x5a1cf95a xfrm4_rcv -EXPORT_SYMBOL vmlinux 0x5a3c6246 pci_dev_put -EXPORT_SYMBOL vmlinux 0x5a49560c __skb_ext_del +EXPORT_SYMBOL vmlinux 0x5a30f6ae __lock_page +EXPORT_SYMBOL vmlinux 0x5a41f29e snd_pcm_lib_preallocate_free_for_all EXPORT_SYMBOL vmlinux 0x5a4d313e gf128mul_4k_lle -EXPORT_SYMBOL vmlinux 0x5a583c5f blk_queue_physical_block_size -EXPORT_SYMBOL vmlinux 0x5a5f59a1 xfrm_trans_queue -EXPORT_SYMBOL vmlinux 0x5a600594 dma_async_device_unregister -EXPORT_SYMBOL vmlinux 0x5a662409 unregister_netdev -EXPORT_SYMBOL vmlinux 0x5a6b10fd file_ns_capable -EXPORT_SYMBOL vmlinux 0x5a7cd1e3 freeze_super -EXPORT_SYMBOL vmlinux 0x5a8ac5fa of_graph_get_endpoint_by_regs -EXPORT_SYMBOL vmlinux 0x5a96c343 devm_devfreq_unregister_notifier -EXPORT_SYMBOL vmlinux 0x5a96d24b sync_mapping_buffers -EXPORT_SYMBOL vmlinux 0x5a989411 jbd2_journal_start -EXPORT_SYMBOL vmlinux 0x5aacbd81 iov_iter_bvec -EXPORT_SYMBOL vmlinux 0x5ab3eaf9 unpin_user_page -EXPORT_SYMBOL vmlinux 0x5ab7821e __napi_schedule_irqoff -EXPORT_SYMBOL vmlinux 0x5abec601 netdev_upper_dev_unlink -EXPORT_SYMBOL vmlinux 0x5ad13563 blk_mq_unique_tag +EXPORT_SYMBOL vmlinux 0x5a6403a8 simple_transaction_get +EXPORT_SYMBOL vmlinux 0x5a65fd3e filemap_flush +EXPORT_SYMBOL vmlinux 0x5a6c48b0 __qdisc_calculate_pkt_len +EXPORT_SYMBOL vmlinux 0x5a902283 fscrypt_free_bounce_page +EXPORT_SYMBOL vmlinux 0x5a99a0d7 flow_get_u32_dst +EXPORT_SYMBOL vmlinux 0x5a9c69b6 path_get +EXPORT_SYMBOL vmlinux 0x5a9d7958 single_release +EXPORT_SYMBOL vmlinux 0x5ab39452 tcp_v4_send_check +EXPORT_SYMBOL vmlinux 0x5aba1f73 arm_dma_ops +EXPORT_SYMBOL vmlinux 0x5ac599de I_BDEV EXPORT_SYMBOL vmlinux 0x5ae1154b __traceiter_kfree -EXPORT_SYMBOL vmlinux 0x5ae353fe __netlink_kernel_create -EXPORT_SYMBOL vmlinux 0x5ae64221 devm_request_threaded_irq -EXPORT_SYMBOL vmlinux 0x5aea1f39 flow_indr_dev_setup_offload -EXPORT_SYMBOL vmlinux 0x5aec7431 datagram_poll -EXPORT_SYMBOL vmlinux 0x5aed618b ipv6_push_frag_opts -EXPORT_SYMBOL vmlinux 0x5af13943 mfd_add_devices -EXPORT_SYMBOL vmlinux 0x5af22b2f jbd2_journal_wipe EXPORT_SYMBOL vmlinux 0x5b062284 gen_pool_fixed_alloc -EXPORT_SYMBOL vmlinux 0x5b176de9 __cleancache_invalidate_inode +EXPORT_SYMBOL vmlinux 0x5b24ac20 inet_del_protocol +EXPORT_SYMBOL vmlinux 0x5b3282ff sync_inode_metadata +EXPORT_SYMBOL vmlinux 0x5b333610 dcache_dir_close EXPORT_SYMBOL vmlinux 0x5b36d5dd utf8agemax -EXPORT_SYMBOL vmlinux 0x5b383137 freezing_slow_path -EXPORT_SYMBOL vmlinux 0x5b384b07 cdrom_check_events -EXPORT_SYMBOL vmlinux 0x5b4cc252 mr_mfc_find_parent EXPORT_SYMBOL vmlinux 0x5b54903b qcom_scm_pas_mem_setup -EXPORT_SYMBOL vmlinux 0x5b612011 netif_receive_skb_core -EXPORT_SYMBOL vmlinux 0x5b7c6462 sock_cmsg_send -EXPORT_SYMBOL vmlinux 0x5b804de0 put_cmsg -EXPORT_SYMBOL vmlinux 0x5baa5224 tty_port_init +EXPORT_SYMBOL vmlinux 0x5b61d5df sound_class +EXPORT_SYMBOL vmlinux 0x5b68e599 delete_from_page_cache +EXPORT_SYMBOL vmlinux 0x5b6fb744 end_page_private_2 +EXPORT_SYMBOL vmlinux 0x5b72e919 nf_log_register +EXPORT_SYMBOL vmlinux 0x5b79c95f skb_checksum +EXPORT_SYMBOL vmlinux 0x5b86dd87 dev_uc_add +EXPORT_SYMBOL vmlinux 0x5b87d87b generic_file_read_iter +EXPORT_SYMBOL vmlinux 0x5b91f0dc xfrm_lookup +EXPORT_SYMBOL vmlinux 0x5bae7b47 devm_mfd_add_devices EXPORT_SYMBOL vmlinux 0x5bbe49f4 __init_waitqueue_head -EXPORT_SYMBOL vmlinux 0x5bc94131 udp6_csum_init +EXPORT_SYMBOL vmlinux 0x5bc4765a netdev_notice +EXPORT_SYMBOL vmlinux 0x5bc56ea4 ptp_clock_event EXPORT_SYMBOL vmlinux 0x5bd4ff88 flow_action_cookie_create +EXPORT_SYMBOL vmlinux 0x5bd90fd2 scsi_partsize EXPORT_SYMBOL vmlinux 0x5bda4214 _raw_read_lock -EXPORT_SYMBOL vmlinux 0x5bdc981f param_set_invbool -EXPORT_SYMBOL vmlinux 0x5be0cfba of_find_i2c_adapter_by_node -EXPORT_SYMBOL vmlinux 0x5be15a0a ndisc_mc_map +EXPORT_SYMBOL vmlinux 0x5be5aef1 __scsi_device_lookup_by_target EXPORT_SYMBOL vmlinux 0x5be63c5b crc32c_csum_stub -EXPORT_SYMBOL vmlinux 0x5bfa3909 kfree_skb_list -EXPORT_SYMBOL vmlinux 0x5c05707a dcache_dir_open -EXPORT_SYMBOL vmlinux 0x5c103d95 mount_nodev EXPORT_SYMBOL vmlinux 0x5c3c7387 kstrtoull -EXPORT_SYMBOL vmlinux 0x5c5769d6 __phy_resume -EXPORT_SYMBOL vmlinux 0x5c59595e blk_post_runtime_resume -EXPORT_SYMBOL vmlinux 0x5c6f9d59 tcf_qevent_init +EXPORT_SYMBOL vmlinux 0x5c3fff57 genphy_loopback +EXPORT_SYMBOL vmlinux 0x5c67fd66 tcp_mss_to_mtu +EXPORT_SYMBOL vmlinux 0x5c6de1d7 ll_rw_block +EXPORT_SYMBOL vmlinux 0x5c6f1b5d devm_ioremap_wc EXPORT_SYMBOL vmlinux 0x5c716976 hdmi_audio_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0x5c76024c vlan_filter_push_vids -EXPORT_SYMBOL vmlinux 0x5c7bea62 __dst_destroy_metrics_generic -EXPORT_SYMBOL vmlinux 0x5c7dd4d7 phy_register_fixup_for_uid EXPORT_SYMBOL vmlinux 0x5c7f1284 int_sqrt64 +EXPORT_SYMBOL vmlinux 0x5c802137 md_bitmap_free EXPORT_SYMBOL vmlinux 0x5c9284a0 processor_id -EXPORT_SYMBOL vmlinux 0x5caa8151 __dev_direct_xmit -EXPORT_SYMBOL vmlinux 0x5cae4ce0 proc_create_mount_point +EXPORT_SYMBOL vmlinux 0x5cabd087 dquot_free_inode +EXPORT_SYMBOL vmlinux 0x5cb8b20f ip6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0x5cbc8ffd pcie_port_service_register EXPORT_SYMBOL vmlinux 0x5cbd8e69 __crc32c_le -EXPORT_SYMBOL vmlinux 0x5cbf50b8 nvdimm_namespace_capacity -EXPORT_SYMBOL vmlinux 0x5cc2bdd9 dma_pool_create -EXPORT_SYMBOL vmlinux 0x5cc35a5b mmc_request_done -EXPORT_SYMBOL vmlinux 0x5cc87f8b ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0x5cbf71de dst_destroy +EXPORT_SYMBOL vmlinux 0x5cc70fc5 sock_no_sendmsg_locked +EXPORT_SYMBOL vmlinux 0x5cd10151 snd_timer_resolution +EXPORT_SYMBOL vmlinux 0x5cee7df5 netlink_net_capable EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor -EXPORT_SYMBOL vmlinux 0x5cf9ff38 __nlmsg_put -EXPORT_SYMBOL vmlinux 0x5d0514d8 snd_ctl_boolean_mono_info -EXPORT_SYMBOL vmlinux 0x5d075d5a bpf_prog_get_type_path -EXPORT_SYMBOL vmlinux 0x5d13d96e input_unregister_device +EXPORT_SYMBOL vmlinux 0x5cf75d4e xfrm_unregister_type_offload +EXPORT_SYMBOL vmlinux 0x5d024d5e bio_advance +EXPORT_SYMBOL vmlinux 0x5d17f94b mr_dump EXPORT_SYMBOL vmlinux 0x5d37d658 dim_park_tired -EXPORT_SYMBOL vmlinux 0x5d4085bb seq_put_decimal_ull -EXPORT_SYMBOL vmlinux 0x5d48ece1 skb_flow_dissect_meta +EXPORT_SYMBOL vmlinux 0x5d3d61e6 blk_queue_io_min EXPORT_SYMBOL vmlinux 0x5d49aabc init_wait_var_entry -EXPORT_SYMBOL vmlinux 0x5d4ea818 lock_rename -EXPORT_SYMBOL vmlinux 0x5d516007 sock_common_setsockopt -EXPORT_SYMBOL vmlinux 0x5d86bdf2 deactivate_super -EXPORT_SYMBOL vmlinux 0x5db2d50d mmc_unregister_driver -EXPORT_SYMBOL vmlinux 0x5dcf26d5 setattr_copy +EXPORT_SYMBOL vmlinux 0x5d596851 task_work_add +EXPORT_SYMBOL vmlinux 0x5d5bbebe tcf_get_next_proto +EXPORT_SYMBOL vmlinux 0x5d668898 filemap_fdatawrite_range +EXPORT_SYMBOL vmlinux 0x5d8062dc mipi_dsi_attach +EXPORT_SYMBOL vmlinux 0x5d88fbe8 seg6_hmac_info_lookup +EXPORT_SYMBOL vmlinux 0x5d8c14ad dquot_quota_on +EXPORT_SYMBOL vmlinux 0x5dc0d592 kfree_skb_list EXPORT_SYMBOL vmlinux 0x5dcf6341 outer_cache -EXPORT_SYMBOL vmlinux 0x5dd4176a __register_chrdev -EXPORT_SYMBOL vmlinux 0x5dd9ddad padata_alloc +EXPORT_SYMBOL vmlinux 0x5dd0654f inet_frag_destroy +EXPORT_SYMBOL vmlinux 0x5dd93d8e tcp_seq_start EXPORT_SYMBOL vmlinux 0x5ddac875 abort_creds -EXPORT_SYMBOL vmlinux 0x5de55974 kern_unmount EXPORT_SYMBOL vmlinux 0x5de5cca2 utf8_normalize -EXPORT_SYMBOL vmlinux 0x5df6088f wait_on_page_private_2 -EXPORT_SYMBOL vmlinux 0x5dfc3b1d adjust_managed_page_count +EXPORT_SYMBOL vmlinux 0x5de93ece scsi_bios_ptable EXPORT_SYMBOL vmlinux 0x5e0ccb9f sha1_transform -EXPORT_SYMBOL vmlinux 0x5e2b4d68 generic_writepages -EXPORT_SYMBOL vmlinux 0x5e324418 __xfrm_route_forward +EXPORT_SYMBOL vmlinux 0x5e24e95d sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0x5e26b6e1 mfd_remove_devices +EXPORT_SYMBOL vmlinux 0x5e31b88b skb_trim EXPORT_SYMBOL vmlinux 0x5e373fb4 gf128mul_64k_bbe -EXPORT_SYMBOL vmlinux 0x5e46edd8 skb_copy -EXPORT_SYMBOL vmlinux 0x5e51ff7b generic_file_mmap -EXPORT_SYMBOL vmlinux 0x5e521c21 param_ops_hexint -EXPORT_SYMBOL vmlinux 0x5e570f65 mark_buffer_dirty -EXPORT_SYMBOL vmlinux 0x5e60126c block_truncate_page -EXPORT_SYMBOL vmlinux 0x5e7a7aec blk_mq_run_hw_queue +EXPORT_SYMBOL vmlinux 0x5e43b87b alloc_fcdev +EXPORT_SYMBOL vmlinux 0x5e53e303 send_sig_info +EXPORT_SYMBOL vmlinux 0x5e62852b unregister_fib_notifier +EXPORT_SYMBOL vmlinux 0x5e77a99a __napi_schedule_irqoff EXPORT_SYMBOL vmlinux 0x5e7f4920 snd_pcm_format_set_silence +EXPORT_SYMBOL vmlinux 0x5e80185f rawnand_sw_hamming_correct EXPORT_SYMBOL vmlinux 0x5e866d85 prandom_bytes +EXPORT_SYMBOL vmlinux 0x5e8c8809 phy_modify_paged_changed +EXPORT_SYMBOL vmlinux 0x5e8f131c jbd2_journal_errno +EXPORT_SYMBOL vmlinux 0x5e9541a4 pm860x_page_reg_write EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask -EXPORT_SYMBOL vmlinux 0x5ea2cda8 pci_disable_msi +EXPORT_SYMBOL vmlinux 0x5e9936e5 snd_pcm_hw_constraint_step +EXPORT_SYMBOL vmlinux 0x5ea2da04 pmem_sector_size EXPORT_SYMBOL vmlinux 0x5eb24829 dm_shift_arg 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 0x5ed12b48 sg_alloc_table_from_pages_segment EXPORT_SYMBOL vmlinux 0x5ed90adc int_to_scsilun -EXPORT_SYMBOL vmlinux 0x5ee16721 flow_get_u32_src -EXPORT_SYMBOL vmlinux 0x5ee371d2 scsi_print_command -EXPORT_SYMBOL vmlinux 0x5efccc65 ipv6_sock_mc_drop -EXPORT_SYMBOL vmlinux 0x5f08125b i2c_smbus_write_i2c_block_data +EXPORT_SYMBOL vmlinux 0x5ef3799f touchscreen_parse_properties EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters -EXPORT_SYMBOL vmlinux 0x5f21933e proc_mkdir -EXPORT_SYMBOL vmlinux 0x5f234685 request_key_tag -EXPORT_SYMBOL vmlinux 0x5f502f81 unregister_cdrom +EXPORT_SYMBOL vmlinux 0x5f2930d5 fwnode_irq_get +EXPORT_SYMBOL vmlinux 0x5f2a8f0f jbd2_journal_wipe +EXPORT_SYMBOL vmlinux 0x5f372ebc netdev_master_upper_dev_get_rcu +EXPORT_SYMBOL vmlinux 0x5f4c8f19 input_mt_destroy_slots EXPORT_SYMBOL vmlinux 0x5f5441c8 __ubsan_handle_alignment_assumption EXPORT_SYMBOL vmlinux 0x5f6b889c rproc_va_to_pa EXPORT_SYMBOL vmlinux 0x5f754e5a memset -EXPORT_SYMBOL vmlinux 0x5f97af8b fscrypt_has_permitted_context -EXPORT_SYMBOL vmlinux 0x5fadf5c4 phy_ethtool_get_eee +EXPORT_SYMBOL vmlinux 0x5f82db20 sync_blockdev +EXPORT_SYMBOL vmlinux 0x5fa27b56 vfs_parse_fs_param_source EXPORT_SYMBOL vmlinux 0x5fb01358 alloc_pages_exact -EXPORT_SYMBOL vmlinux 0x5fcb3725 vfs_iocb_iter_read -EXPORT_SYMBOL vmlinux 0x5fd802af padata_free +EXPORT_SYMBOL vmlinux 0x5fb95e30 blk_mq_alloc_tag_set +EXPORT_SYMBOL vmlinux 0x5fc6230e pci_msix_vec_count +EXPORT_SYMBOL vmlinux 0x5fcbdad7 nf_unregister_net_hook EXPORT_SYMBOL vmlinux 0x5ff11cc3 pcibios_min_io -EXPORT_SYMBOL vmlinux 0x5ff62537 sdev_disable_disk_events -EXPORT_SYMBOL vmlinux 0x5ffcfe72 mdiobus_read -EXPORT_SYMBOL vmlinux 0x5ffea98b input_mt_report_pointer_emulation +EXPORT_SYMBOL vmlinux 0x60003b15 __dst_destroy_metrics_generic EXPORT_SYMBOL vmlinux 0x6005c351 zpool_has_pool EXPORT_SYMBOL vmlinux 0x600683d3 do_unblank_screen -EXPORT_SYMBOL vmlinux 0x60192c62 clocksource_unregister -EXPORT_SYMBOL vmlinux 0x601c4b20 proc_remove +EXPORT_SYMBOL vmlinux 0x60163908 __vfs_setxattr EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create EXPORT_SYMBOL vmlinux 0x602c96f0 copy_to_user_fromio EXPORT_SYMBOL vmlinux 0x603286b8 utf8_casefold EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier -EXPORT_SYMBOL vmlinux 0x603738e2 vga_set_legacy_decoding -EXPORT_SYMBOL vmlinux 0x6040b011 ip_output -EXPORT_SYMBOL vmlinux 0x6048a801 tcp_mtu_to_mss +EXPORT_SYMBOL vmlinux 0x60362e29 user_path_create +EXPORT_SYMBOL vmlinux 0x60416a29 phy_advertise_supported EXPORT_SYMBOL vmlinux 0x605790dc fiemap_fill_next_extent -EXPORT_SYMBOL vmlinux 0x605b680a dma_free_attrs -EXPORT_SYMBOL vmlinux 0x605e69c2 amba_driver_unregister -EXPORT_SYMBOL vmlinux 0x60627465 xfrm_init_replay -EXPORT_SYMBOL vmlinux 0x60841630 pci_enable_device_io +EXPORT_SYMBOL vmlinux 0x60582ece dm_get_device +EXPORT_SYMBOL vmlinux 0x607a1ad5 lock_sock_nested +EXPORT_SYMBOL vmlinux 0x6081b649 mmc_can_trim +EXPORT_SYMBOL vmlinux 0x60824cf3 send_sig EXPORT_SYMBOL vmlinux 0x6091b333 unregister_chrdev_region +EXPORT_SYMBOL vmlinux 0x60924e86 xfrm_policy_register_afinfo EXPORT_SYMBOL vmlinux 0x6098f7ed cgroup_bpf_enabled_key EXPORT_SYMBOL vmlinux 0x609bcd98 in6_pton EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net EXPORT_SYMBOL vmlinux 0x60a32ea9 pm_power_off -EXPORT_SYMBOL vmlinux 0x60b52b21 ip6_fraglist_prepare +EXPORT_SYMBOL vmlinux 0x60ace018 ip_sock_set_tos EXPORT_SYMBOL vmlinux 0x60bffe6d div64_u64 EXPORT_SYMBOL vmlinux 0x60d8ab30 vme_lm_get -EXPORT_SYMBOL vmlinux 0x60db0452 follow_down -EXPORT_SYMBOL vmlinux 0x60eb206c regset_get -EXPORT_SYMBOL vmlinux 0x60f83c96 vga_get -EXPORT_SYMBOL vmlinux 0x61161431 ip6_fraglist_init -EXPORT_SYMBOL vmlinux 0x611ae1ac mmc_sw_reset +EXPORT_SYMBOL vmlinux 0x60fadf1f seq_vprintf +EXPORT_SYMBOL vmlinux 0x61000903 xfrm_sad_getinfo +EXPORT_SYMBOL vmlinux 0x610fc8e3 dev_addr_init +EXPORT_SYMBOL vmlinux 0x6111c6bd sock_setsockopt +EXPORT_SYMBOL vmlinux 0x611ac4ee d_alloc_anon +EXPORT_SYMBOL vmlinux 0x61210746 security_sctp_assoc_request EXPORT_SYMBOL vmlinux 0x6121bd54 dql_init +EXPORT_SYMBOL vmlinux 0x6123e6db show_init_ipc_ns EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit -EXPORT_SYMBOL vmlinux 0x613f0b80 sock_gettstamp -EXPORT_SYMBOL vmlinux 0x613f0d3b phy_get_pause -EXPORT_SYMBOL vmlinux 0x61541301 mmc_gpiod_request_ro +EXPORT_SYMBOL vmlinux 0x613584cb tcp_add_backlog +EXPORT_SYMBOL vmlinux 0x61409fe0 ndo_dflt_fdb_add +EXPORT_SYMBOL vmlinux 0x614630c8 __pskb_pull_tail EXPORT_SYMBOL vmlinux 0x6156c7f4 net_dim +EXPORT_SYMBOL vmlinux 0x6158badd skb_push EXPORT_SYMBOL vmlinux 0x615911d7 __bitmap_set EXPORT_SYMBOL vmlinux 0x6167e72c vmalloc_no_huge -EXPORT_SYMBOL vmlinux 0x616eca79 kernel_sendpage -EXPORT_SYMBOL vmlinux 0x618d81e9 pipe_lock -EXPORT_SYMBOL vmlinux 0x619c1a7d skb_checksum -EXPORT_SYMBOL vmlinux 0x61ae1b5a vlan_filter_drop_vids -EXPORT_SYMBOL vmlinux 0x61ae5677 __hw_addr_ref_unsync_dev +EXPORT_SYMBOL vmlinux 0x616dbc77 inet_addr_type_dev_table +EXPORT_SYMBOL vmlinux 0x61805c23 kthread_associate_blkcg +EXPORT_SYMBOL vmlinux 0x61ad675b d_mark_dontcache +EXPORT_SYMBOL vmlinux 0x61b2bdb2 dma_mmap_attrs EXPORT_SYMBOL vmlinux 0x61b3e3b0 config_item_init_type_name EXPORT_SYMBOL vmlinux 0x61b76bb9 smp_call_function_many EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull EXPORT_SYMBOL vmlinux 0x61c76b3a proc_dointvec_jiffies -EXPORT_SYMBOL vmlinux 0x61cee32b nvdimm_bus_unlock -EXPORT_SYMBOL vmlinux 0x61d0b47c thermal_cdev_update -EXPORT_SYMBOL vmlinux 0x61d34782 d_alloc +EXPORT_SYMBOL vmlinux 0x61cd7c26 blk_rq_unmap_user EXPORT_SYMBOL vmlinux 0x61e272c9 sha256_final -EXPORT_SYMBOL vmlinux 0x61e7b987 inet_frag_find -EXPORT_SYMBOL vmlinux 0x61e86f6d flow_rule_match_tcp EXPORT_SYMBOL vmlinux 0x61ea189b fb_pad_aligned_buffer -EXPORT_SYMBOL vmlinux 0x61ebd41e iput -EXPORT_SYMBOL vmlinux 0x61eeb12a insert_inode_locked4 -EXPORT_SYMBOL vmlinux 0x61f0d28b phy_register_fixup -EXPORT_SYMBOL vmlinux 0x62040280 registered_fb -EXPORT_SYMBOL vmlinux 0x620bd245 sock_set_sndtimeo +EXPORT_SYMBOL vmlinux 0x61f9951b secure_tcpv6_ts_off +EXPORT_SYMBOL vmlinux 0x62006b42 netif_rx +EXPORT_SYMBOL vmlinux 0x620691a7 fb_show_logo +EXPORT_SYMBOL vmlinux 0x620c53cb inode_init_always EXPORT_SYMBOL vmlinux 0x6214aef2 cpufreq_unregister_notifier -EXPORT_SYMBOL vmlinux 0x6221f277 qdisc_put_unlocked -EXPORT_SYMBOL vmlinux 0x622782ba key_put +EXPORT_SYMBOL vmlinux 0x6225e20c udp_skb_destructor +EXPORT_SYMBOL vmlinux 0x622893fb __ip_select_ident EXPORT_SYMBOL vmlinux 0x6228c21f smp_call_function_single -EXPORT_SYMBOL vmlinux 0x6249f57f rproc_shutdown -EXPORT_SYMBOL vmlinux 0x626d249e vfs_parse_fs_string -EXPORT_SYMBOL vmlinux 0x6272d71e devfreq_update_status +EXPORT_SYMBOL vmlinux 0x62337a3a try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x624bf581 set_bdi_congested +EXPORT_SYMBOL vmlinux 0x625c0a2d __skb_gso_segment EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister +EXPORT_SYMBOL vmlinux 0x6274eabd tty_lock EXPORT_SYMBOL vmlinux 0x62849ac7 dev_valid_name -EXPORT_SYMBOL vmlinux 0x62aff27b tty_unregister_driver -EXPORT_SYMBOL vmlinux 0x62b81f68 inet_offloads +EXPORT_SYMBOL vmlinux 0x628615d8 blk_mq_rq_cpu +EXPORT_SYMBOL vmlinux 0x62881cb7 param_ops_string +EXPORT_SYMBOL vmlinux 0x62917b6b mod_node_page_state +EXPORT_SYMBOL vmlinux 0x62a979af tcf_em_tree_destroy +EXPORT_SYMBOL vmlinux 0x62b90be2 nd_integrity_init EXPORT_SYMBOL vmlinux 0x62b9567c override_creds EXPORT_SYMBOL vmlinux 0x62bf6edf utf8agemin -EXPORT_SYMBOL vmlinux 0x62c09a82 vlan_vids_del_by_dev -EXPORT_SYMBOL vmlinux 0x62c2f6df mipi_dsi_picture_parameter_set -EXPORT_SYMBOL vmlinux 0x62dda32d request_firmware +EXPORT_SYMBOL vmlinux 0x62c686d5 input_set_max_poll_interval +EXPORT_SYMBOL vmlinux 0x62cabdb3 param_get_invbool +EXPORT_SYMBOL vmlinux 0x62cf0a9d sync_mapping_buffers +EXPORT_SYMBOL vmlinux 0x62dc32f7 param_get_int +EXPORT_SYMBOL vmlinux 0x62de96c0 buffer_check_dirty_writeback +EXPORT_SYMBOL vmlinux 0x62e814ae md_set_array_sectors +EXPORT_SYMBOL vmlinux 0x62f046bb phy_start EXPORT_SYMBOL vmlinux 0x62f576d9 trace_seq_hex_dump -EXPORT_SYMBOL vmlinux 0x62fa0ba0 dev_uc_sync +EXPORT_SYMBOL vmlinux 0x6313807b unix_get_socket +EXPORT_SYMBOL vmlinux 0x6317cd29 nand_ecc_get_on_die_hw_engine EXPORT_SYMBOL vmlinux 0x63187451 pcie_aspm_support_enabled EXPORT_SYMBOL vmlinux 0x631d06aa cpu_rmap_put -EXPORT_SYMBOL vmlinux 0x631e8705 netdev_lower_dev_get_private -EXPORT_SYMBOL vmlinux 0x63228e3b fscrypt_setup_filename -EXPORT_SYMBOL vmlinux 0x632435bc inet_sk_rebuild_header -EXPORT_SYMBOL vmlinux 0x6326da53 neigh_resolve_output -EXPORT_SYMBOL vmlinux 0x63345ed4 __skb_wait_for_more_packets -EXPORT_SYMBOL vmlinux 0x633ec6c3 nd_region_release_lane EXPORT_SYMBOL vmlinux 0x6342f99f mipi_dsi_create_packet -EXPORT_SYMBOL vmlinux 0x63457954 vfs_ioctl -EXPORT_SYMBOL vmlinux 0x63589251 snd_pcm_period_elapsed_under_stream_lock -EXPORT_SYMBOL vmlinux 0x635e0957 pci_alloc_irq_vectors_affinity -EXPORT_SYMBOL vmlinux 0x6373a14e path_put -EXPORT_SYMBOL vmlinux 0x638d29d9 genphy_check_and_restart_aneg +EXPORT_SYMBOL vmlinux 0x6346f51d is_bad_inode +EXPORT_SYMBOL vmlinux 0x634f2ead nexthop_set_hw_flags +EXPORT_SYMBOL vmlinux 0x63560218 dev_add_offload +EXPORT_SYMBOL vmlinux 0x6360db85 blk_rq_append_bio +EXPORT_SYMBOL vmlinux 0x637048d3 pci_add_new_bus +EXPORT_SYMBOL vmlinux 0x63729273 vfs_statfs +EXPORT_SYMBOL vmlinux 0x63846d6b bio_chain EXPORT_SYMBOL vmlinux 0x63a58370 flow_action_cookie_destroy EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region -EXPORT_SYMBOL vmlinux 0x63b78cab pci_get_device +EXPORT_SYMBOL vmlinux 0x63abf5b6 from_kuid +EXPORT_SYMBOL vmlinux 0x63c40513 nf_ip_checksum EXPORT_SYMBOL vmlinux 0x63c4d61f __bitmap_weight -EXPORT_SYMBOL vmlinux 0x63cd3063 input_alloc_absinfo +EXPORT_SYMBOL vmlinux 0x63cb3d2e scsi_host_alloc +EXPORT_SYMBOL vmlinux 0x63d28fff rproc_vq_interrupt +EXPORT_SYMBOL vmlinux 0x63e4ebed disk_start_io_acct EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink -EXPORT_SYMBOL vmlinux 0x63fe6d57 skb_tunnel_check_pmtu -EXPORT_SYMBOL vmlinux 0x64017d57 bioset_init_from_src +EXPORT_SYMBOL vmlinux 0x63ec7856 fixed_size_llseek +EXPORT_SYMBOL vmlinux 0x63f43751 ___pskb_trim +EXPORT_SYMBOL vmlinux 0x63f6895c skb_tx_error +EXPORT_SYMBOL vmlinux 0x63fd322f tcp_read_sock +EXPORT_SYMBOL vmlinux 0x63ff4f40 filemap_fdatawait_range EXPORT_SYMBOL vmlinux 0x6405dcd3 slhc_toss EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off -EXPORT_SYMBOL vmlinux 0x641a10a8 rproc_get_by_child -EXPORT_SYMBOL vmlinux 0x6424c672 scsi_alloc_sgtables -EXPORT_SYMBOL vmlinux 0x6446e02e phy_find_first -EXPORT_SYMBOL vmlinux 0x64638cf3 __set_page_dirty_no_writeback -EXPORT_SYMBOL vmlinux 0x64721aef xfrm_policy_insert -EXPORT_SYMBOL vmlinux 0x647a1d26 snd_ctl_boolean_stereo_info +EXPORT_SYMBOL vmlinux 0x641cad9a get_tree_single_reconf +EXPORT_SYMBOL vmlinux 0x6436425a dst_dev_put +EXPORT_SYMBOL vmlinux 0x64595326 filemap_check_errors +EXPORT_SYMBOL vmlinux 0x645a2b92 napi_build_skb EXPORT_SYMBOL vmlinux 0x647af474 prepare_to_wait_event EXPORT_SYMBOL vmlinux 0x6481ffe0 hsiphash_1u32 EXPORT_SYMBOL vmlinux 0x64833350 i2c_smbus_pec -EXPORT_SYMBOL vmlinux 0x6487b79d snd_pcm_set_ops -EXPORT_SYMBOL vmlinux 0x648da47a from_kgid_munged EXPORT_SYMBOL vmlinux 0x648eb59d gc_inflight_list -EXPORT_SYMBOL vmlinux 0x649264ae dcb_ieee_getapp_mask -EXPORT_SYMBOL vmlinux 0x649413f3 __sock_queue_rcv_skb EXPORT_SYMBOL vmlinux 0x64999478 congestion_wait EXPORT_SYMBOL vmlinux 0x64a9c928 default_blu -EXPORT_SYMBOL vmlinux 0x64b703ee blk_integrity_unregister -EXPORT_SYMBOL vmlinux 0x64bdbf6f free_netdev -EXPORT_SYMBOL vmlinux 0x64bfe79d sock_queue_rcv_skb -EXPORT_SYMBOL vmlinux 0x64c281f9 sock_no_getname -EXPORT_SYMBOL vmlinux 0x64c5acb7 mipi_dsi_device_unregister -EXPORT_SYMBOL vmlinux 0x64d74fb7 pci_free_irq -EXPORT_SYMBOL vmlinux 0x64d9630a may_setattr -EXPORT_SYMBOL vmlinux 0x64f88477 qdisc_create_dflt +EXPORT_SYMBOL vmlinux 0x64c02c13 xfrm_state_lookup +EXPORT_SYMBOL vmlinux 0x64ce9fde scsi_is_target_device +EXPORT_SYMBOL vmlinux 0x64f6b4b3 build_skb +EXPORT_SYMBOL vmlinux 0x650b7eec __mmap_lock_do_trace_released +EXPORT_SYMBOL vmlinux 0x650e029c from_kprojid EXPORT_SYMBOL vmlinux 0x650f8603 snd_pcm_format_silence_64 EXPORT_SYMBOL vmlinux 0x6513a3fa fb_get_color_depth +EXPORT_SYMBOL vmlinux 0x6514c1e6 flow_get_u32_src +EXPORT_SYMBOL vmlinux 0x651636e3 __vlan_find_dev_deep_rcu +EXPORT_SYMBOL vmlinux 0x6517b8f6 dev_addr_add +EXPORT_SYMBOL vmlinux 0x651955a0 vga_set_legacy_decoding EXPORT_SYMBOL vmlinux 0x651a4139 test_taint EXPORT_SYMBOL vmlinux 0x652032cb mac_pton -EXPORT_SYMBOL vmlinux 0x652258e1 devm_extcon_unregister_notifier +EXPORT_SYMBOL vmlinux 0x652428ee mmc_free_host EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob -EXPORT_SYMBOL vmlinux 0x6540a1c1 sk_stop_timer EXPORT_SYMBOL vmlinux 0x65464c16 clkdev_drop -EXPORT_SYMBOL vmlinux 0x656fb569 phy_attach_direct -EXPORT_SYMBOL vmlinux 0x6574647f dev_mc_add_excl +EXPORT_SYMBOL vmlinux 0x654da35c napi_gro_frags +EXPORT_SYMBOL vmlinux 0x655018e4 mmc_put_card +EXPORT_SYMBOL vmlinux 0x655ee819 devfreq_update_target +EXPORT_SYMBOL vmlinux 0x65745c41 dcb_setapp EXPORT_SYMBOL vmlinux 0x6578533e prepare_to_wait -EXPORT_SYMBOL vmlinux 0x657a1096 __inet_hash -EXPORT_SYMBOL vmlinux 0x658bac4e jbd2_journal_dirty_metadata +EXPORT_SYMBOL vmlinux 0x6579384b ip6_dst_hoplimit +EXPORT_SYMBOL vmlinux 0x657b5b7f d_instantiate EXPORT_SYMBOL vmlinux 0x658ce1a8 xxh64_reset -EXPORT_SYMBOL vmlinux 0x65976073 get_acl EXPORT_SYMBOL vmlinux 0x659ded26 xfrm_flush_gc -EXPORT_SYMBOL vmlinux 0x65a4a0c6 phy_do_ioctl_running -EXPORT_SYMBOL vmlinux 0x65b7dfe2 of_graph_is_present +EXPORT_SYMBOL vmlinux 0x65c6643a simple_rmdir +EXPORT_SYMBOL vmlinux 0x65cc7ad0 eth_type_trans +EXPORT_SYMBOL vmlinux 0x65ced030 tcf_action_exec EXPORT_SYMBOL vmlinux 0x65d411e9 idr_get_next +EXPORT_SYMBOL vmlinux 0x65d7be17 ip_mc_leave_group EXPORT_SYMBOL vmlinux 0x65d9e877 cpufreq_register_notifier EXPORT_SYMBOL vmlinux 0x65dccf13 xz_dec_end -EXPORT_SYMBOL vmlinux 0x65dd898a pm860x_page_reg_write -EXPORT_SYMBOL vmlinux 0x65e07aff clear_bdi_congested -EXPORT_SYMBOL vmlinux 0x65e17fcf skb_clone_sk -EXPORT_SYMBOL vmlinux 0x65f4d2d2 qdisc_watchdog_cancel -EXPORT_SYMBOL vmlinux 0x65fc5400 __skb_recv_datagram -EXPORT_SYMBOL vmlinux 0x66052bec nf_hook_slow -EXPORT_SYMBOL vmlinux 0x66184a6a scsi_host_get -EXPORT_SYMBOL vmlinux 0x662eaf1c phy_support_sym_pause +EXPORT_SYMBOL vmlinux 0x65e1b46d of_find_device_by_node +EXPORT_SYMBOL vmlinux 0x65f3c047 of_find_net_device_by_node +EXPORT_SYMBOL vmlinux 0x65f57efa blk_queue_update_dma_pad +EXPORT_SYMBOL vmlinux 0x6601333b elv_rb_add +EXPORT_SYMBOL vmlinux 0x6606dcd5 devm_of_find_backlight +EXPORT_SYMBOL vmlinux 0x660f286d qdisc_class_hash_grow +EXPORT_SYMBOL vmlinux 0x6614daf9 dev_uc_unsync +EXPORT_SYMBOL vmlinux 0x6626233f devm_of_clk_del_provider +EXPORT_SYMBOL vmlinux 0x66311caa netdev_lower_state_changed +EXPORT_SYMBOL vmlinux 0x66324f96 tty_hangup EXPORT_SYMBOL vmlinux 0x66474aa4 neigh_proc_dointvec -EXPORT_SYMBOL vmlinux 0x664edddf tc_setup_cb_destroy -EXPORT_SYMBOL vmlinux 0x6654a6d0 find_get_pages_range_tag +EXPORT_SYMBOL vmlinux 0x665c01f6 set_capacity EXPORT_SYMBOL vmlinux 0x66657274 kmalloc_order +EXPORT_SYMBOL vmlinux 0x666724f6 seq_bprintf EXPORT_SYMBOL vmlinux 0x666863dc par_io_config_pin -EXPORT_SYMBOL vmlinux 0x66721fe2 of_find_node_with_property EXPORT_SYMBOL vmlinux 0x6673f96d xxh32_reset -EXPORT_SYMBOL vmlinux 0x669719a0 udp_sendmsg -EXPORT_SYMBOL vmlinux 0x66986219 netdev_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0x6676b91c d_alloc +EXPORT_SYMBOL vmlinux 0x6679a1e4 mdio_driver_register +EXPORT_SYMBOL vmlinux 0x6687360d do_clone_file_range EXPORT_SYMBOL vmlinux 0x66aed8c5 csum_partial_copy_from_user -EXPORT_SYMBOL vmlinux 0x66c71d79 xfrm_state_lookup_byaddr -EXPORT_SYMBOL vmlinux 0x66cba006 __netif_schedule -EXPORT_SYMBOL vmlinux 0x66d9f42d xfrm6_rcv_tnl -EXPORT_SYMBOL vmlinux 0x66e0353c tcp_enter_cwr -EXPORT_SYMBOL vmlinux 0x66e1ed03 jbd2_journal_abort -EXPORT_SYMBOL vmlinux 0x66f39d5f of_device_is_available -EXPORT_SYMBOL vmlinux 0x67215a45 genphy_c37_config_aneg -EXPORT_SYMBOL vmlinux 0x6728bb4f dquot_operations +EXPORT_SYMBOL vmlinux 0x66b95f8b tcf_get_next_chain +EXPORT_SYMBOL vmlinux 0x66c29894 inet_add_protocol +EXPORT_SYMBOL vmlinux 0x66dd7076 of_get_ddr_timings +EXPORT_SYMBOL vmlinux 0x66ddd309 ipv6_dev_find +EXPORT_SYMBOL vmlinux 0x66e85abf tcp_set_rcvlowat +EXPORT_SYMBOL vmlinux 0x66ec0b88 register_md_personality +EXPORT_SYMBOL vmlinux 0x66fa0fd8 snd_timer_open +EXPORT_SYMBOL vmlinux 0x66ffda9d tcf_idr_cleanup EXPORT_SYMBOL vmlinux 0x67412d2f ucc_slow_enable -EXPORT_SYMBOL vmlinux 0x6745367f page_address +EXPORT_SYMBOL vmlinux 0x674374a4 of_parse_phandle_with_args EXPORT_SYMBOL vmlinux 0x6749d53f hdmi_vendor_infoframe_init -EXPORT_SYMBOL vmlinux 0x6757d014 snd_pcm_release_substream -EXPORT_SYMBOL vmlinux 0x67683066 of_device_unregister +EXPORT_SYMBOL vmlinux 0x674af62d register_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x674d09b4 security_sb_clone_mnt_opts EXPORT_SYMBOL vmlinux 0x676bbc0f _set_bit -EXPORT_SYMBOL vmlinux 0x6779f996 __vfs_getxattr -EXPORT_SYMBOL vmlinux 0x678935f4 pci_read_config_dword +EXPORT_SYMBOL vmlinux 0x67731998 t10_pi_type3_ip +EXPORT_SYMBOL vmlinux 0x6783c196 blk_queue_io_opt EXPORT_SYMBOL vmlinux 0x678b96ec dma_pool_alloc -EXPORT_SYMBOL vmlinux 0x6792c85b pci_try_set_mwi EXPORT_SYMBOL vmlinux 0x679856f5 sort_r -EXPORT_SYMBOL vmlinux 0x67a7e054 pci_iomap_range EXPORT_SYMBOL vmlinux 0x67b27ec1 tty_std_termios +EXPORT_SYMBOL vmlinux 0x67b5d24c param_ops_ushort EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu -EXPORT_SYMBOL vmlinux 0x67c538fb of_translate_address -EXPORT_SYMBOL vmlinux 0x67c9931d snd_pcm_hw_constraint_ratnums -EXPORT_SYMBOL vmlinux 0x67d20a81 cdev_alloc -EXPORT_SYMBOL vmlinux 0x67d261e7 current_in_userns -EXPORT_SYMBOL vmlinux 0x67daa740 scsi_ioctl +EXPORT_SYMBOL vmlinux 0x67b8a4e0 get_task_cred +EXPORT_SYMBOL vmlinux 0x67bdc2f3 __cancel_dirty_page +EXPORT_SYMBOL vmlinux 0x67c1c200 xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x67c596fb of_get_cpu_state_node +EXPORT_SYMBOL vmlinux 0x67cfde54 __put_user_ns EXPORT_SYMBOL vmlinux 0x67e617cf textsearch_register +EXPORT_SYMBOL vmlinux 0x67e659ec devm_request_resource EXPORT_SYMBOL vmlinux 0x67ea6e61 trace_print_hex_dump_seq -EXPORT_SYMBOL vmlinux 0x68021605 hdmi_infoframe_log -EXPORT_SYMBOL vmlinux 0x680fa39c input_unregister_handler -EXPORT_SYMBOL vmlinux 0x681a1387 from_kprojid_munged +EXPORT_SYMBOL vmlinux 0x6813263e generic_permission EXPORT_SYMBOL vmlinux 0x681b6670 is_firmware_framebuffer -EXPORT_SYMBOL vmlinux 0x682e95db netif_set_real_num_queues -EXPORT_SYMBOL vmlinux 0x6851ebdb bmap -EXPORT_SYMBOL vmlinux 0x6865837f nf_ct_attach -EXPORT_SYMBOL vmlinux 0x686a2558 serio_rescan -EXPORT_SYMBOL vmlinux 0x686ad4a5 pci_release_resource -EXPORT_SYMBOL vmlinux 0x686d24b1 hash_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0x68394ec7 sock_bindtoindex +EXPORT_SYMBOL vmlinux 0x6849bac6 of_find_all_nodes +EXPORT_SYMBOL vmlinux 0x684a6cc9 __netif_schedule +EXPORT_SYMBOL vmlinux 0x687189ef rproc_add_subdev EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval -EXPORT_SYMBOL vmlinux 0x687fd442 d_prune_aliases -EXPORT_SYMBOL vmlinux 0x688ae370 scsi_eh_restore_cmnd -EXPORT_SYMBOL vmlinux 0x68915f4d snd_jack_set_key -EXPORT_SYMBOL vmlinux 0x689b9787 pci_rebar_get_possible_sizes -EXPORT_SYMBOL vmlinux 0x689d9173 blk_queue_virt_boundary +EXPORT_SYMBOL vmlinux 0x688b4235 submit_bio +EXPORT_SYMBOL vmlinux 0x68a0e678 key_revoke EXPORT_SYMBOL vmlinux 0x68a24153 snd_pcm_format_physical_width -EXPORT_SYMBOL vmlinux 0x68b1be87 ip6_xmit -EXPORT_SYMBOL vmlinux 0x68c0eba7 pci_write_config_dword -EXPORT_SYMBOL vmlinux 0x68d332e3 __napi_alloc_skb -EXPORT_SYMBOL vmlinux 0x68e1a9c5 mipi_dsi_dcs_set_column_address +EXPORT_SYMBOL vmlinux 0x68a9baf0 generic_write_end +EXPORT_SYMBOL vmlinux 0x68afe350 rpmh_write_batch +EXPORT_SYMBOL vmlinux 0x68b45f2b security_sctp_sk_clone +EXPORT_SYMBOL vmlinux 0x68d73f0e iov_iter_get_pages +EXPORT_SYMBOL vmlinux 0x68daca8d nd_region_to_nstype +EXPORT_SYMBOL vmlinux 0x68e1f74f __cleancache_get_page +EXPORT_SYMBOL vmlinux 0x68e37a06 gnet_stats_copy_rate_est +EXPORT_SYMBOL vmlinux 0x68f725f1 configfs_unregister_default_group EXPORT_SYMBOL vmlinux 0x68fb581a icst307_idx2s EXPORT_SYMBOL vmlinux 0x6917a77e __traceiter_kmem_cache_free EXPORT_SYMBOL vmlinux 0x691938f8 sg_pcopy_from_buffer -EXPORT_SYMBOL vmlinux 0x691d5385 no_seek_end_llseek -EXPORT_SYMBOL vmlinux 0x6921fbac pci_scan_bus -EXPORT_SYMBOL vmlinux 0x692dcfb3 __cgroup_bpf_run_filter_sock_addr -EXPORT_SYMBOL vmlinux 0x694cac6b rproc_elf_load_rsc_table -EXPORT_SYMBOL vmlinux 0x6965e2d7 free_inode_nonrcu +EXPORT_SYMBOL vmlinux 0x6932de65 __dquot_transfer EXPORT_SYMBOL vmlinux 0x69668826 netdev_increment_features +EXPORT_SYMBOL vmlinux 0x696dcb92 ip6_xmit EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days -EXPORT_SYMBOL vmlinux 0x697c4628 max8925_reg_read -EXPORT_SYMBOL vmlinux 0x6987cf7e rproc_put -EXPORT_SYMBOL vmlinux 0x699291c4 snd_timer_instance_new -EXPORT_SYMBOL vmlinux 0x69a20bc7 mdiobus_scan -EXPORT_SYMBOL vmlinux 0x69ad06c4 pci_fixup_cardbus +EXPORT_SYMBOL vmlinux 0x6971b4d3 __test_set_page_writeback +EXPORT_SYMBOL vmlinux 0x69a32dd5 sock_queue_err_skb +EXPORT_SYMBOL vmlinux 0x69aadfc5 tty_chars_in_buffer EXPORT_SYMBOL vmlinux 0x69b6f8d9 omap_set_dma_transfer_params -EXPORT_SYMBOL vmlinux 0x69c9c5a0 snd_ctl_notify -EXPORT_SYMBOL vmlinux 0x69ce5fd5 nf_log_packet -EXPORT_SYMBOL vmlinux 0x69d203f5 blk_integrity_register -EXPORT_SYMBOL vmlinux 0x69d8b46d mmc_remove_host +EXPORT_SYMBOL vmlinux 0x69d22ffa tcp_v4_destroy_sock EXPORT_SYMBOL vmlinux 0x69de8757 vme_check_window EXPORT_SYMBOL vmlinux 0x69e51d08 __alloc_bucket_spinlocks -EXPORT_SYMBOL vmlinux 0x69f855bc flow_rule_match_enc_ipv4_addrs -EXPORT_SYMBOL vmlinux 0x69fc5c79 shrink_dcache_parent +EXPORT_SYMBOL vmlinux 0x69e6e7e2 __xfrm_decode_session +EXPORT_SYMBOL vmlinux 0x69f0dc97 page_pool_update_nid EXPORT_SYMBOL vmlinux 0x6a03751f sgl_free_order EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree -EXPORT_SYMBOL vmlinux 0x6a0e07af make_kgid -EXPORT_SYMBOL vmlinux 0x6a179b4a bio_init -EXPORT_SYMBOL vmlinux 0x6a22ed20 snd_timer_global_free -EXPORT_SYMBOL vmlinux 0x6a37afec dmam_alloc_attrs -EXPORT_SYMBOL vmlinux 0x6a4ecdd8 d_delete -EXPORT_SYMBOL vmlinux 0x6a539914 setup_arg_pages +EXPORT_SYMBOL vmlinux 0x6a124a84 dev_uc_del +EXPORT_SYMBOL vmlinux 0x6a48944f mmc_can_erase +EXPORT_SYMBOL vmlinux 0x6a4e1c7f console_start +EXPORT_SYMBOL vmlinux 0x6a501e78 sock_no_sendpage_locked +EXPORT_SYMBOL vmlinux 0x6a5bfd02 blk_mq_alloc_request EXPORT_SYMBOL vmlinux 0x6a5cb5ee __get_free_pages EXPORT_SYMBOL vmlinux 0x6a5ecb18 unregister_module_notifier EXPORT_SYMBOL vmlinux 0x6a6e05bf kstrtou8 -EXPORT_SYMBOL vmlinux 0x6a8c375c ip_mc_check_igmp -EXPORT_SYMBOL vmlinux 0x6a919baa netdev_pick_tx -EXPORT_SYMBOL vmlinux 0x6a983040 mmc_gpio_get_ro +EXPORT_SYMBOL vmlinux 0x6a7554c1 snd_soc_alloc_ac97_component +EXPORT_SYMBOL vmlinux 0x6a75669e input_set_abs_params +EXPORT_SYMBOL vmlinux 0x6a9fc476 mmc_cqe_start_req EXPORT_SYMBOL vmlinux 0x6aa11aa6 sgl_free_n_order -EXPORT_SYMBOL vmlinux 0x6ab38a90 pcix_get_mmrbc -EXPORT_SYMBOL vmlinux 0x6ac06c9c netdev_get_xmit_slave +EXPORT_SYMBOL vmlinux 0x6aba5607 page_cache_next_miss EXPORT_SYMBOL vmlinux 0x6ac80c29 __tracepoint_mmap_lock_acquire_returned -EXPORT_SYMBOL vmlinux 0x6ad3075f md_check_recovery +EXPORT_SYMBOL vmlinux 0x6ad2c9a9 pci_restore_state EXPORT_SYMBOL vmlinux 0x6ad7a335 prepare_creds -EXPORT_SYMBOL vmlinux 0x6adbc61d component_match_add_typed +EXPORT_SYMBOL vmlinux 0x6adaac27 phy_queue_state_machine EXPORT_SYMBOL vmlinux 0x6add5c9a dmi_find_device -EXPORT_SYMBOL vmlinux 0x6ae859ea user_path_at_empty -EXPORT_SYMBOL vmlinux 0x6aec6841 simple_transaction_release +EXPORT_SYMBOL vmlinux 0x6ae7bbcf set_posix_acl EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset +EXPORT_SYMBOL vmlinux 0x6af2ae76 kill_pgrp EXPORT_SYMBOL vmlinux 0x6af7b21a packing -EXPORT_SYMBOL vmlinux 0x6b06c318 sock_recv_errqueue -EXPORT_SYMBOL vmlinux 0x6b1a00d4 kill_pgrp +EXPORT_SYMBOL vmlinux 0x6b009b0e param_get_ullong EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack -EXPORT_SYMBOL vmlinux 0x6b46a40a rtnl_kfree_skbs +EXPORT_SYMBOL vmlinux 0x6b3296fe vme_irq_handler +EXPORT_SYMBOL vmlinux 0x6b3eaaa7 blk_rq_map_user +EXPORT_SYMBOL vmlinux 0x6b54b38d finish_no_open EXPORT_SYMBOL vmlinux 0x6b55acd0 rtnl_lock_killable -EXPORT_SYMBOL vmlinux 0x6b564a7f set_bh_page -EXPORT_SYMBOL vmlinux 0x6b570abb devm_pci_alloc_host_bridge +EXPORT_SYMBOL vmlinux 0x6b56333b tcp_close EXPORT_SYMBOL vmlinux 0x6b604710 lockref_get_not_zero -EXPORT_SYMBOL vmlinux 0x6b82bf06 dmam_free_coherent +EXPORT_SYMBOL vmlinux 0x6b615f0e security_sb_mnt_opts_compat +EXPORT_SYMBOL vmlinux 0x6b66f8f1 tcf_qevent_init +EXPORT_SYMBOL vmlinux 0x6b71d25b ip6_frag_next +EXPORT_SYMBOL vmlinux 0x6b74e054 bio_copy_data_iter +EXPORT_SYMBOL vmlinux 0x6b773820 dquot_commit_info +EXPORT_SYMBOL vmlinux 0x6b77479c devfreq_remove_device EXPORT_SYMBOL vmlinux 0x6b853d06 ns_to_kernel_old_timeval -EXPORT_SYMBOL vmlinux 0x6b8bc99f wake_up_process EXPORT_SYMBOL vmlinux 0x6b8bf149 netif_receive_skb_list -EXPORT_SYMBOL vmlinux 0x6b9bc254 pci_reenable_device EXPORT_SYMBOL vmlinux 0x6b9d1c95 security_req_classify_flow +EXPORT_SYMBOL vmlinux 0x6bb59b39 pfifo_fast_ops EXPORT_SYMBOL vmlinux 0x6bb93d9e sg_copy_to_buffer EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev -EXPORT_SYMBOL vmlinux 0x6bde0572 __inode_sub_bytes +EXPORT_SYMBOL vmlinux 0x6bdc0ea6 netpoll_send_skb EXPORT_SYMBOL vmlinux 0x6bf7d3c2 sg_pcopy_to_buffer -EXPORT_SYMBOL vmlinux 0x6c006b9c zpool_unregister_driver -EXPORT_SYMBOL vmlinux 0x6c0b6483 inc_nlink -EXPORT_SYMBOL vmlinux 0x6c0bc2f6 tcp_sock_set_nodelay -EXPORT_SYMBOL vmlinux 0x6c10b2c0 generic_pipe_buf_get -EXPORT_SYMBOL vmlinux 0x6c161149 udp_lib_getsockopt +EXPORT_SYMBOL vmlinux 0x6bfa589b skb_dequeue +EXPORT_SYMBOL vmlinux 0x6c03b319 dquot_load_quota_sb +EXPORT_SYMBOL vmlinux 0x6c05d5c0 security_inode_notifysecctx EXPORT_SYMBOL vmlinux 0x6c1ce5ce strcspn +EXPORT_SYMBOL vmlinux 0x6c227357 jbd2_journal_inode_ranged_wait EXPORT_SYMBOL vmlinux 0x6c257ac0 tty_termios_hw_change -EXPORT_SYMBOL vmlinux 0x6c2583e7 to_ndd -EXPORT_SYMBOL vmlinux 0x6c3928d9 vmf_insert_mixed -EXPORT_SYMBOL vmlinux 0x6c5f55ac __cancel_dirty_page -EXPORT_SYMBOL vmlinux 0x6c5fef7d dquot_alloc +EXPORT_SYMBOL vmlinux 0x6c2a7849 tcp_md5_do_del +EXPORT_SYMBOL vmlinux 0x6c2b58dc skb_queue_tail +EXPORT_SYMBOL vmlinux 0x6c3acf76 fb_set_var +EXPORT_SYMBOL vmlinux 0x6c3e927f gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0x6c5a33cf uart_add_one_port EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb +EXPORT_SYMBOL vmlinux 0x6c6ea03e mipi_dsi_dcs_set_pixel_format +EXPORT_SYMBOL vmlinux 0x6c76c05d ip6_fraglist_prepare EXPORT_SYMBOL vmlinux 0x6c810e42 __xa_clear_mark -EXPORT_SYMBOL vmlinux 0x6c86824a phy_write_paged -EXPORT_SYMBOL vmlinux 0x6c873231 mmc_of_parse -EXPORT_SYMBOL vmlinux 0x6ca19adb kfree_skb_partial +EXPORT_SYMBOL vmlinux 0x6c915648 dst_alloc +EXPORT_SYMBOL vmlinux 0x6ca761b2 netif_receive_skb_core +EXPORT_SYMBOL vmlinux 0x6cb098c6 dquot_resume EXPORT_SYMBOL vmlinux 0x6cb46525 netlbl_catmap_walk -EXPORT_SYMBOL vmlinux 0x6cc9c53f param_set_charp -EXPORT_SYMBOL vmlinux 0x6ce1bb4c sock_no_connect +EXPORT_SYMBOL vmlinux 0x6cd4f937 fbcon_update_vcs EXPORT_SYMBOL vmlinux 0x6cf0d67d qe_get_num_of_snums -EXPORT_SYMBOL vmlinux 0x6d11b360 mipi_dsi_dcs_enter_sleep_mode -EXPORT_SYMBOL vmlinux 0x6d1ae5ee of_parse_phandle_with_args +EXPORT_SYMBOL vmlinux 0x6cfb0ef4 kern_unmount EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies EXPORT_SYMBOL vmlinux 0x6d340f64 tty_termios_input_baud_rate -EXPORT_SYMBOL vmlinux 0x6d3b05e0 param_get_byte -EXPORT_SYMBOL vmlinux 0x6d3d5ca2 scsi_is_host_device -EXPORT_SYMBOL vmlinux 0x6d4a42e5 inet_addr_type_dev_table -EXPORT_SYMBOL vmlinux 0x6d614dfb mmc_set_blocklen -EXPORT_SYMBOL vmlinux 0x6d626827 task_work_add -EXPORT_SYMBOL vmlinux 0x6d639e7b tcp_v4_conn_request +EXPORT_SYMBOL vmlinux 0x6d39af8f fscrypt_decrypt_bio +EXPORT_SYMBOL vmlinux 0x6d3c4df5 i2c_transfer_buffer_flags +EXPORT_SYMBOL vmlinux 0x6d457372 input_unregister_device +EXPORT_SYMBOL vmlinux 0x6d52d396 jbd2_journal_put_journal_head EXPORT_SYMBOL vmlinux 0x6d662533 _find_first_bit_le -EXPORT_SYMBOL vmlinux 0x6d7819b4 tcp_release_cb -EXPORT_SYMBOL vmlinux 0x6d7aa3d6 snd_card_free -EXPORT_SYMBOL vmlinux 0x6d7bf202 nand_get_set_features_notsupp +EXPORT_SYMBOL vmlinux 0x6d6fd40c iterate_supers_type EXPORT_SYMBOL vmlinux 0x6d7c7dcc bitmap_cut +EXPORT_SYMBOL vmlinux 0x6d81820a backlight_device_get_by_type EXPORT_SYMBOL vmlinux 0x6d89b199 proc_dointvec_minmax -EXPORT_SYMBOL vmlinux 0x6dab8578 tcf_action_check_ctrlact -EXPORT_SYMBOL vmlinux 0x6dc36395 pm_vt_switch_unregister +EXPORT_SYMBOL vmlinux 0x6d90ec10 eth_get_headlen +EXPORT_SYMBOL vmlinux 0x6d964b15 ipv6_chk_custom_prefix +EXPORT_SYMBOL vmlinux 0x6d9ed21e fscrypt_has_permitted_context +EXPORT_SYMBOL vmlinux 0x6da330f1 mdio_device_create +EXPORT_SYMBOL vmlinux 0x6db356c4 sg_miter_stop +EXPORT_SYMBOL vmlinux 0x6dbcdf63 snd_pcm_hw_constraint_pow2 +EXPORT_SYMBOL vmlinux 0x6dbf62de phy_driver_register +EXPORT_SYMBOL vmlinux 0x6dc62d9a pci_save_state EXPORT_SYMBOL vmlinux 0x6dcf857f uuid_null +EXPORT_SYMBOL vmlinux 0x6dd6dc3c mmc_wait_for_req +EXPORT_SYMBOL vmlinux 0x6ddac8e4 nobh_writepage +EXPORT_SYMBOL vmlinux 0x6ddafc72 inet_frag_kill EXPORT_SYMBOL vmlinux 0x6ddcdbad revert_creds +EXPORT_SYMBOL vmlinux 0x6de4423e blk_mq_stop_hw_queue EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction -EXPORT_SYMBOL vmlinux 0x6e0631f7 __get_hash_from_flowi6 -EXPORT_SYMBOL vmlinux 0x6e08c3f8 vfs_fileattr_get -EXPORT_SYMBOL vmlinux 0x6e0b1e06 nvdimm_bus_lock -EXPORT_SYMBOL vmlinux 0x6e198ed5 request_firmware_into_buf -EXPORT_SYMBOL vmlinux 0x6e1b8438 dev_change_carrier -EXPORT_SYMBOL vmlinux 0x6e261074 tty_port_open -EXPORT_SYMBOL vmlinux 0x6e473920 vme_master_request +EXPORT_SYMBOL vmlinux 0x6e0d772b param_get_charp +EXPORT_SYMBOL vmlinux 0x6e141a81 pci_select_bars +EXPORT_SYMBOL vmlinux 0x6e1a3c53 fput +EXPORT_SYMBOL vmlinux 0x6e20fe17 __ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0x6e35af1c wait_for_key_construction EXPORT_SYMBOL vmlinux 0x6e4e7714 dma_fence_chain_ops +EXPORT_SYMBOL vmlinux 0x6e63f4c8 __of_get_address +EXPORT_SYMBOL vmlinux 0x6e687e77 kernel_accept EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock -EXPORT_SYMBOL vmlinux 0x6e77d003 __dynamic_ibdev_dbg -EXPORT_SYMBOL vmlinux 0x6e879e0e pci_bus_find_capability +EXPORT_SYMBOL vmlinux 0x6e7e8b0e iov_iter_bvec +EXPORT_SYMBOL vmlinux 0x6e912764 ipv6_sock_mc_drop EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put -EXPORT_SYMBOL vmlinux 0x6e9ffe10 init_pseudo EXPORT_SYMBOL vmlinux 0x6ea9363b force_sig -EXPORT_SYMBOL vmlinux 0x6eac346c sg_alloc_append_table_from_pages -EXPORT_SYMBOL vmlinux 0x6ebee92e _dev_warn -EXPORT_SYMBOL vmlinux 0x6ec0c04a vme_slot_num +EXPORT_SYMBOL vmlinux 0x6eb4813c of_find_node_by_name +EXPORT_SYMBOL vmlinux 0x6ebfbd02 dma_set_coherent_mask +EXPORT_SYMBOL vmlinux 0x6ec542a2 eth_gro_complete EXPORT_SYMBOL vmlinux 0x6ecdb792 __percpu_counter_init -EXPORT_SYMBOL vmlinux 0x6eced351 of_find_net_device_by_node -EXPORT_SYMBOL vmlinux 0x6ecfda16 max8998_bulk_write -EXPORT_SYMBOL vmlinux 0x6eebee2e dev_uc_sync_multiple -EXPORT_SYMBOL vmlinux 0x6eed99b0 ip6tun_encaps +EXPORT_SYMBOL vmlinux 0x6ed034c8 file_write_and_wait_range +EXPORT_SYMBOL vmlinux 0x6ed37608 sk_alloc +EXPORT_SYMBOL vmlinux 0x6ee0e32f scsi_print_sense EXPORT_SYMBOL vmlinux 0x6ef8fcd8 snd_pcm_format_linear -EXPORT_SYMBOL vmlinux 0x6efce722 netdev_lower_get_next -EXPORT_SYMBOL vmlinux 0x6efe38b6 phy_attach -EXPORT_SYMBOL vmlinux 0x6eff1aaa __traceiter_mmap_lock_released EXPORT_SYMBOL vmlinux 0x6f013ecd __init_rwsem -EXPORT_SYMBOL vmlinux 0x6f09b8c9 snd_pcm_hw_param_first -EXPORT_SYMBOL vmlinux 0x6f1292f4 snd_soc_alloc_ac97_component -EXPORT_SYMBOL vmlinux 0x6f26e4d3 cpufreq_get_policy -EXPORT_SYMBOL vmlinux 0x6f2cb6dd inet_frags_init -EXPORT_SYMBOL vmlinux 0x6f485fb5 uart_write_wakeup -EXPORT_SYMBOL vmlinux 0x6f5c43ba ip_do_fragment -EXPORT_SYMBOL vmlinux 0x6f78b51d blk_mq_delay_run_hw_queues +EXPORT_SYMBOL vmlinux 0x6f0ee5e3 pneigh_lookup +EXPORT_SYMBOL vmlinux 0x6f230ee0 page_symlink +EXPORT_SYMBOL vmlinux 0x6f2fdebe __dynamic_ibdev_dbg +EXPORT_SYMBOL vmlinux 0x6f304b9d snd_pcm_hw_refine +EXPORT_SYMBOL vmlinux 0x6f5d04dc nonseekable_open EXPORT_SYMBOL vmlinux 0x6f83fba8 hex2bin +EXPORT_SYMBOL vmlinux 0x6f855115 scsi_is_host_device EXPORT_SYMBOL vmlinux 0x6f87e4e9 textsearch_find_continuous -EXPORT_SYMBOL vmlinux 0x6f8bf47e pci_restore_state -EXPORT_SYMBOL vmlinux 0x6f8f35a0 dquot_quota_off +EXPORT_SYMBOL vmlinux 0x6f8d5c37 iget_locked EXPORT_SYMBOL vmlinux 0x6f8f674a bpf_dispatcher_xdp_func -EXPORT_SYMBOL vmlinux 0x6f94f9b4 param_set_long -EXPORT_SYMBOL vmlinux 0x6fa21772 cookie_timestamp_decode -EXPORT_SYMBOL vmlinux 0x6fa5b119 pneigh_enqueue +EXPORT_SYMBOL vmlinux 0x6fa20b83 ppp_input_error EXPORT_SYMBOL vmlinux 0x6fa6597c set_security_override_from_ctx -EXPORT_SYMBOL vmlinux 0x6faa1275 dev_change_proto_down_reason +EXPORT_SYMBOL vmlinux 0x6fb17c51 __alloc_disk_node EXPORT_SYMBOL vmlinux 0x6fb374e6 down_write_killable -EXPORT_SYMBOL vmlinux 0x6fb5f265 amba_driver_register +EXPORT_SYMBOL vmlinux 0x6fb7a17e sock_no_bind EXPORT_SYMBOL vmlinux 0x6fbe4717 idr_replace -EXPORT_SYMBOL vmlinux 0x6fc14505 cdev_device_del -EXPORT_SYMBOL vmlinux 0x6fca3e14 snd_pcm_lib_free_pages +EXPORT_SYMBOL vmlinux 0x6fbec860 input_set_keycode +EXPORT_SYMBOL vmlinux 0x6fc6e628 vfs_iocb_iter_write EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog -EXPORT_SYMBOL vmlinux 0x6fd5bd01 ip6mr_rule_default +EXPORT_SYMBOL vmlinux 0x6fd0309a rpmh_write EXPORT_SYMBOL vmlinux 0x6fd9c35a __clzdi2 -EXPORT_SYMBOL vmlinux 0x6fe9b53a iget_failed -EXPORT_SYMBOL vmlinux 0x6ff3bda6 ipv6_dev_find +EXPORT_SYMBOL vmlinux 0x6fe68b5a blk_pm_runtime_init EXPORT_SYMBOL vmlinux 0x70002fe8 siphash_1u32 +EXPORT_SYMBOL vmlinux 0x7005b76b key_move +EXPORT_SYMBOL vmlinux 0x70069e01 param_set_invbool +EXPORT_SYMBOL vmlinux 0x700b8077 param_get_short +EXPORT_SYMBOL vmlinux 0x70178985 jbd2_fc_begin_commit +EXPORT_SYMBOL vmlinux 0x701de3d2 of_find_node_by_phandle +EXPORT_SYMBOL vmlinux 0x701ec928 devm_devfreq_add_device EXPORT_SYMBOL vmlinux 0x702946da ucs2_strlen -EXPORT_SYMBOL vmlinux 0x702cff76 sock_no_accept -EXPORT_SYMBOL vmlinux 0x704c5a13 fscrypt_fname_disk_to_usr -EXPORT_SYMBOL vmlinux 0x705eb80d __mmap_lock_do_trace_released +EXPORT_SYMBOL vmlinux 0x7048e304 __netdev_notify_peers +EXPORT_SYMBOL vmlinux 0x7052a9ea mmc_can_gpio_ro +EXPORT_SYMBOL vmlinux 0x7054944d proc_create +EXPORT_SYMBOL vmlinux 0x70641217 snd_timer_pause +EXPORT_SYMBOL vmlinux 0x706a5b9b unregister_shrinker EXPORT_SYMBOL vmlinux 0x70703993 hdmi_spd_infoframe_pack -EXPORT_SYMBOL vmlinux 0x7086a3ae tty_unthrottle -EXPORT_SYMBOL vmlinux 0x70afbba6 dquot_transfer -EXPORT_SYMBOL vmlinux 0x70c2bd61 dma_resv_init -EXPORT_SYMBOL vmlinux 0x70d4dddd of_get_next_available_child -EXPORT_SYMBOL vmlinux 0x70dec76a dcache_readdir -EXPORT_SYMBOL vmlinux 0x70e0584c genlmsg_put -EXPORT_SYMBOL vmlinux 0x70e4a1e3 unregister_quota_format -EXPORT_SYMBOL vmlinux 0x70fb0c24 tcp_gro_complete -EXPORT_SYMBOL vmlinux 0x70fe24e6 always_delete_dentry +EXPORT_SYMBOL vmlinux 0x70812784 snd_pci_quirk_lookup +EXPORT_SYMBOL vmlinux 0x709ac0dd xsk_set_tx_need_wakeup +EXPORT_SYMBOL vmlinux 0x70c42b2f skb_try_coalesce +EXPORT_SYMBOL vmlinux 0x7108ff18 ptp_cancel_worker_sync +EXPORT_SYMBOL vmlinux 0x710e03f5 path_is_under EXPORT_SYMBOL vmlinux 0x711b8a9b __crc32c_le_shift +EXPORT_SYMBOL vmlinux 0x71208c82 __inet_stream_connect EXPORT_SYMBOL vmlinux 0x712110ab proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x71217f78 follow_down EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc -EXPORT_SYMBOL vmlinux 0x7131e0b0 blk_queue_io_opt -EXPORT_SYMBOL vmlinux 0x7133be39 phy_write_mmd +EXPORT_SYMBOL vmlinux 0x714aea48 __traceiter_module_get EXPORT_SYMBOL vmlinux 0x715a5ed0 vprintk -EXPORT_SYMBOL vmlinux 0x71623a2c configfs_undepend_item -EXPORT_SYMBOL vmlinux 0x71710cd2 nobh_write_end +EXPORT_SYMBOL vmlinux 0x716b78d7 phy_resume +EXPORT_SYMBOL vmlinux 0x716babc6 sock_recvmsg EXPORT_SYMBOL vmlinux 0x7171121c overflowgid -EXPORT_SYMBOL vmlinux 0x7188037f map_destroy -EXPORT_SYMBOL vmlinux 0x718aa1b0 watchdog_unregister_governor -EXPORT_SYMBOL vmlinux 0x7190d0ac blk_mq_tagset_wait_completed_request -EXPORT_SYMBOL vmlinux 0x71992314 dev_set_group -EXPORT_SYMBOL vmlinux 0x719caa3f invalidate_bdev +EXPORT_SYMBOL vmlinux 0x717d6175 pci_bus_set_ops +EXPORT_SYMBOL vmlinux 0x718023a6 md_check_recovery EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy -EXPORT_SYMBOL vmlinux 0x71a964ca scsi_eh_finish_cmd -EXPORT_SYMBOL vmlinux 0x71afea60 netdev_alert EXPORT_SYMBOL vmlinux 0x71c90087 memcmp +EXPORT_SYMBOL vmlinux 0x71d984bb pci_enable_msix_range EXPORT_SYMBOL vmlinux 0x71f7de4f proc_do_large_bitmap +EXPORT_SYMBOL vmlinux 0x71ff51de jbd2_journal_try_to_free_buffers EXPORT_SYMBOL vmlinux 0x72005410 hdmi_infoframe_pack +EXPORT_SYMBOL vmlinux 0x7207b90d pm860x_bulk_read EXPORT_SYMBOL vmlinux 0x720a27a7 __register_blkdev -EXPORT_SYMBOL vmlinux 0x7212269c nosteal_pipe_buf_ops -EXPORT_SYMBOL vmlinux 0x721c4d1f __dev_get_by_flags -EXPORT_SYMBOL vmlinux 0x721e0fa7 of_chosen -EXPORT_SYMBOL vmlinux 0x721fd1d0 xfrm_policy_alloc -EXPORT_SYMBOL vmlinux 0x722d26bb pagecache_write_begin +EXPORT_SYMBOL vmlinux 0x722068ad pneigh_enqueue +EXPORT_SYMBOL vmlinux 0x722408e7 release_pages +EXPORT_SYMBOL vmlinux 0x72452b7c path_is_mountpoint +EXPORT_SYMBOL vmlinux 0x724c75c9 inet_del_offload EXPORT_SYMBOL vmlinux 0x724ddac7 utf8version_is_supported -EXPORT_SYMBOL vmlinux 0x72562573 phy_get_c45_ids -EXPORT_SYMBOL vmlinux 0x72578717 t10_pi_type3_ip -EXPORT_SYMBOL vmlinux 0x727b569a rproc_get_by_phandle -EXPORT_SYMBOL vmlinux 0x7292d4f3 inode_owner_or_capable -EXPORT_SYMBOL vmlinux 0x729da262 unlock_page +EXPORT_SYMBOL vmlinux 0x7251eeac blk_queue_split +EXPORT_SYMBOL vmlinux 0x725c3421 __dev_get_by_index +EXPORT_SYMBOL vmlinux 0x72607524 inet_accept +EXPORT_SYMBOL vmlinux 0x726d539d xsk_clear_tx_need_wakeup +EXPORT_SYMBOL vmlinux 0x72809748 pci_alloc_host_bridge +EXPORT_SYMBOL vmlinux 0x728118cf param_set_short +EXPORT_SYMBOL vmlinux 0x7287c2f7 nexthop_res_grp_activity_update +EXPORT_SYMBOL vmlinux 0x7297b007 rtnl_kfree_skbs EXPORT_SYMBOL vmlinux 0x72a50966 ucc_fast_disable -EXPORT_SYMBOL vmlinux 0x72b598d1 iov_iter_discard +EXPORT_SYMBOL vmlinux 0x72b587e3 seq_release_private EXPORT_SYMBOL vmlinux 0x72b9d287 default_grn +EXPORT_SYMBOL vmlinux 0x72ba5510 sock_no_sendmsg +EXPORT_SYMBOL vmlinux 0x72bb9dc1 pci_find_next_bus +EXPORT_SYMBOL vmlinux 0x72c459fa bio_kmalloc EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type -EXPORT_SYMBOL vmlinux 0x73070476 register_sound_special_device +EXPORT_SYMBOL vmlinux 0x72ee1df6 d_tmpfile +EXPORT_SYMBOL vmlinux 0x72f0e566 generic_file_llseek_size +EXPORT_SYMBOL vmlinux 0x72f1e70d netdev_adjacent_change_commit +EXPORT_SYMBOL vmlinux 0x72f27059 kernel_sendpage +EXPORT_SYMBOL vmlinux 0x72f880cd scsi_host_put EXPORT_SYMBOL vmlinux 0x73076315 snd_pci_quirk_lookup_id +EXPORT_SYMBOL vmlinux 0x730cbc7e pci_bus_write_config_dword +EXPORT_SYMBOL vmlinux 0x730f6d52 input_mt_report_finger_count EXPORT_SYMBOL vmlinux 0x7315a4e9 twl6030_mmc_card_detect_config +EXPORT_SYMBOL vmlinux 0x73176593 dentry_open EXPORT_SYMBOL vmlinux 0x7317790e lockref_put_or_lock -EXPORT_SYMBOL vmlinux 0x73200c5d sk_reset_timer -EXPORT_SYMBOL vmlinux 0x73222662 of_find_node_by_type -EXPORT_SYMBOL vmlinux 0x73277c66 cdrom_release +EXPORT_SYMBOL vmlinux 0x732cad98 of_device_is_big_endian EXPORT_SYMBOL vmlinux 0x732dd326 groups_free -EXPORT_SYMBOL vmlinux 0x73461a98 jbd2_journal_errno -EXPORT_SYMBOL vmlinux 0x734e33f6 phy_connect -EXPORT_SYMBOL vmlinux 0x735774c6 set_page_dirty_lock -EXPORT_SYMBOL vmlinux 0x736a2603 snd_jack_add_new_kctl -EXPORT_SYMBOL vmlinux 0x736f941d __qdisc_calculate_pkt_len -EXPORT_SYMBOL vmlinux 0x737650ce tc_cleanup_flow_action +EXPORT_SYMBOL vmlinux 0x733e884e dquot_set_dqinfo +EXPORT_SYMBOL vmlinux 0x734cbc15 nvdimm_namespace_locked +EXPORT_SYMBOL vmlinux 0x73580fa3 security_dentry_create_files_as +EXPORT_SYMBOL vmlinux 0x73585e8d vm_map_pages_zero +EXPORT_SYMBOL vmlinux 0x7358aed5 devm_extcon_unregister_notifier_all +EXPORT_SYMBOL vmlinux 0x7361daa8 migrate_page_copy EXPORT_SYMBOL vmlinux 0x7380dffa argv_split +EXPORT_SYMBOL vmlinux 0x738f5cf8 dquot_mark_dquot_dirty EXPORT_SYMBOL vmlinux 0x73998efa cpm_muram_free_addr +EXPORT_SYMBOL vmlinux 0x7399c1da pci_write_vpd +EXPORT_SYMBOL vmlinux 0x739c58bd sdev_disable_disk_events EXPORT_SYMBOL vmlinux 0x739fd00f __SCK__tp_func_module_get +EXPORT_SYMBOL vmlinux 0x73a03815 pci_free_host_bridge EXPORT_SYMBOL vmlinux 0x73abb180 alloc_contig_range -EXPORT_SYMBOL vmlinux 0x73b8dd38 dev_open +EXPORT_SYMBOL vmlinux 0x73ae315c generic_pipe_buf_release +EXPORT_SYMBOL vmlinux 0x73bc72d5 ip6_route_me_harder EXPORT_SYMBOL vmlinux 0x73d20fb3 omap_get_dma_src_pos -EXPORT_SYMBOL vmlinux 0x73dccf58 pci_free_irq_vectors +EXPORT_SYMBOL vmlinux 0x73dd4d3e bh_uptodate_or_lock EXPORT_SYMBOL vmlinux 0x73e20c1c strlcpy -EXPORT_SYMBOL vmlinux 0x73ec235c tty_write_room -EXPORT_SYMBOL vmlinux 0x73f066c0 xp_dma_unmap +EXPORT_SYMBOL vmlinux 0x73f614f8 inet_csk_reqsk_queue_drop_and_put +EXPORT_SYMBOL vmlinux 0x7400ae6d xfrm_input_resume +EXPORT_SYMBOL vmlinux 0x7400f6fd of_n_addr_cells +EXPORT_SYMBOL vmlinux 0x7405779b clocksource_change_rating EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace +EXPORT_SYMBOL vmlinux 0x741e1ac6 rproc_mem_entry_init +EXPORT_SYMBOL vmlinux 0x741e54a0 inet6_unregister_protosw EXPORT_SYMBOL vmlinux 0x742578a5 wait_for_random_bytes +EXPORT_SYMBOL vmlinux 0x7425bed3 unregister_nexthop_notifier EXPORT_SYMBOL vmlinux 0x7429e20c kstrtos8 -EXPORT_SYMBOL vmlinux 0x74456cbe devm_ioremap_wc +EXPORT_SYMBOL vmlinux 0x742fc1e7 fault_in_safe_writeable +EXPORT_SYMBOL vmlinux 0x7433cf0c d_make_root EXPORT_SYMBOL vmlinux 0x7453d3e8 security_release_secctx -EXPORT_SYMBOL vmlinux 0x745d7239 md_error -EXPORT_SYMBOL vmlinux 0x7465439e vfs_fsync_range -EXPORT_SYMBOL vmlinux 0x74679ec4 page_pool_put_page -EXPORT_SYMBOL vmlinux 0x7474d66d tcp_syn_ack_timeout -EXPORT_SYMBOL vmlinux 0x747545d3 xsk_uses_need_wakeup -EXPORT_SYMBOL vmlinux 0x747830da skb_expand_head -EXPORT_SYMBOL vmlinux 0x747b66e5 ping_prot -EXPORT_SYMBOL vmlinux 0x747c7877 fb_prepare_logo +EXPORT_SYMBOL vmlinux 0x745404f6 get_watch_queue +EXPORT_SYMBOL vmlinux 0x74575709 mipi_dsi_dcs_soft_reset +EXPORT_SYMBOL vmlinux 0x7475b691 scsi_remove_host EXPORT_SYMBOL vmlinux 0x7483dc59 pci_dev_present -EXPORT_SYMBOL vmlinux 0x749134ca scmd_printk -EXPORT_SYMBOL vmlinux 0x74a3ae34 unpin_user_pages_dirty_lock -EXPORT_SYMBOL vmlinux 0x74b9837c devm_request_resource +EXPORT_SYMBOL vmlinux 0x748ab19b dma_async_device_unregister +EXPORT_SYMBOL vmlinux 0x748f851f eth_prepare_mac_addr_change +EXPORT_SYMBOL vmlinux 0x7495e9cb lock_rename +EXPORT_SYMBOL vmlinux 0x74974115 tcp_openreq_init_rwin EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 -EXPORT_SYMBOL vmlinux 0x74c1c0e5 mdio_device_remove -EXPORT_SYMBOL vmlinux 0x74c9933d pfifo_fast_ops -EXPORT_SYMBOL vmlinux 0x74e30129 input_open_device +EXPORT_SYMBOL vmlinux 0x74d194bd snd_timer_instance_new +EXPORT_SYMBOL vmlinux 0x74da2e42 __ip_dev_find +EXPORT_SYMBOL vmlinux 0x74db1109 of_node_name_eq +EXPORT_SYMBOL vmlinux 0x74e1a847 snd_register_device EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable +EXPORT_SYMBOL vmlinux 0x74e83aac rproc_add +EXPORT_SYMBOL vmlinux 0x74ea3e34 neigh_seq_stop EXPORT_SYMBOL vmlinux 0x7505bdef memchr_inv -EXPORT_SYMBOL vmlinux 0x75150ac6 skb_udp_tunnel_segment -EXPORT_SYMBOL vmlinux 0x752c03e6 snd_compr_free_pages -EXPORT_SYMBOL vmlinux 0x75338ea2 unlock_page_memcg -EXPORT_SYMBOL vmlinux 0x754459af PageMovable -EXPORT_SYMBOL vmlinux 0x755f4b67 seq_bprintf -EXPORT_SYMBOL vmlinux 0x756853c1 skb_queue_purge -EXPORT_SYMBOL vmlinux 0x758c7ae3 dev_vprintk_emit -EXPORT_SYMBOL vmlinux 0x75a42087 find_get_pages_contig +EXPORT_SYMBOL vmlinux 0x75065a88 dm_put_device +EXPORT_SYMBOL vmlinux 0x751320c1 rproc_report_crash +EXPORT_SYMBOL vmlinux 0x752eaad9 of_get_parent +EXPORT_SYMBOL vmlinux 0x7532f33d mmc_can_secure_erase_trim +EXPORT_SYMBOL vmlinux 0x7533cde9 kernel_sendmsg_locked +EXPORT_SYMBOL vmlinux 0x753fc7a3 pagecache_write_end +EXPORT_SYMBOL vmlinux 0x75403db4 uart_update_timeout +EXPORT_SYMBOL vmlinux 0x75594e1f snd_card_file_remove +EXPORT_SYMBOL vmlinux 0x75678946 __devm_mdiobus_register +EXPORT_SYMBOL vmlinux 0x756b2084 follow_down_one +EXPORT_SYMBOL vmlinux 0x757cd953 dev_get_mac_address +EXPORT_SYMBOL vmlinux 0x75b0f976 vfs_copy_file_range EXPORT_SYMBOL vmlinux 0x75bda77a seq_hlist_next -EXPORT_SYMBOL vmlinux 0x75c31f54 sock_no_sendmsg -EXPORT_SYMBOL vmlinux 0x75d0b105 contig_page_data +EXPORT_SYMBOL vmlinux 0x75c2e77a rproc_alloc EXPORT_SYMBOL vmlinux 0x75d0deb9 nsecs_to_jiffies64 -EXPORT_SYMBOL vmlinux 0x75d2f3fd mipi_dsi_dcs_read EXPORT_SYMBOL vmlinux 0x75d499dd vmcore_add_device_dump EXPORT_SYMBOL vmlinux 0x75da9df7 skb_flow_dissector_init -EXPORT_SYMBOL vmlinux 0x75e134b3 migrate_page_states -EXPORT_SYMBOL vmlinux 0x75f4a18d send_sig -EXPORT_SYMBOL vmlinux 0x75fc8a6c readahead_expand +EXPORT_SYMBOL vmlinux 0x75decb26 filemap_invalidate_unlock_two +EXPORT_SYMBOL vmlinux 0x75e37719 filemap_invalidate_lock_two +EXPORT_SYMBOL vmlinux 0x7604a1d4 scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x7605d3e7 i2c_del_driver EXPORT_SYMBOL vmlinux 0x760a0f4f yield -EXPORT_SYMBOL vmlinux 0x760db16d vga_remove_vgacon -EXPORT_SYMBOL vmlinux 0x76103a80 gnet_stats_start_copy +EXPORT_SYMBOL vmlinux 0x760ee16b simple_open EXPORT_SYMBOL vmlinux 0x7618af39 hdmi_infoframe_check -EXPORT_SYMBOL vmlinux 0x762ba375 unregister_filesystem -EXPORT_SYMBOL vmlinux 0x762fdf45 send_sig_info +EXPORT_SYMBOL vmlinux 0x7627139f pci_iounmap +EXPORT_SYMBOL vmlinux 0x763221c5 __sk_mem_schedule +EXPORT_SYMBOL vmlinux 0x763573a2 invalidate_inode_buffers EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq -EXPORT_SYMBOL vmlinux 0x76489f90 fb_set_suspend -EXPORT_SYMBOL vmlinux 0x765be150 km_new_mapping +EXPORT_SYMBOL vmlinux 0x7658a0ad pcim_iounmap +EXPORT_SYMBOL vmlinux 0x765e1275 skb_orphan_partial EXPORT_SYMBOL vmlinux 0x766a0927 mempool_alloc_pages -EXPORT_SYMBOL vmlinux 0x766f01bb simple_transaction_read -EXPORT_SYMBOL vmlinux 0x767c1ce3 netdev_features_change -EXPORT_SYMBOL vmlinux 0x767e69f4 create_empty_buffers -EXPORT_SYMBOL vmlinux 0x768cb9e8 set_bdi_congested -EXPORT_SYMBOL vmlinux 0x768d7940 nand_ecc_cleanup_ctx -EXPORT_SYMBOL vmlinux 0x768dbfcc inet_protos -EXPORT_SYMBOL vmlinux 0x76980620 nf_log_register +EXPORT_SYMBOL vmlinux 0x766a6e62 of_graph_get_remote_endpoint +EXPORT_SYMBOL vmlinux 0x76862be1 drop_super_exclusive EXPORT_SYMBOL vmlinux 0x769f6e64 errseq_check -EXPORT_SYMBOL vmlinux 0x76a8389c bio_uninit -EXPORT_SYMBOL vmlinux 0x76aea58b simple_dentry_operations -EXPORT_SYMBOL vmlinux 0x76beecbd configfs_unregister_group +EXPORT_SYMBOL vmlinux 0x76aee94a mr_mfc_seq_next +EXPORT_SYMBOL vmlinux 0x76b26292 input_event +EXPORT_SYMBOL vmlinux 0x76b57610 __scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x76bef9a7 max8925_reg_read +EXPORT_SYMBOL vmlinux 0x76ce0624 nf_register_queue_handler EXPORT_SYMBOL vmlinux 0x76cf47f6 __aeabi_llsl EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode -EXPORT_SYMBOL vmlinux 0x76d86fc7 netdev_info +EXPORT_SYMBOL vmlinux 0x76d421f2 napi_get_frags +EXPORT_SYMBOL vmlinux 0x76d67c10 scsi_dma_unmap +EXPORT_SYMBOL vmlinux 0x76da9776 __nlmsg_put EXPORT_SYMBOL vmlinux 0x76dc56f1 __nla_put EXPORT_SYMBOL vmlinux 0x76eb5f54 posix_acl_to_xattr -EXPORT_SYMBOL vmlinux 0x771ca21b phy_disconnect -EXPORT_SYMBOL vmlinux 0x771f1d3e mipi_dsi_driver_unregister EXPORT_SYMBOL vmlinux 0x7732159c free_irq_cpu_rmap +EXPORT_SYMBOL vmlinux 0x77337a55 submit_bio_wait EXPORT_SYMBOL vmlinux 0x77358855 iomem_resource -EXPORT_SYMBOL vmlinux 0x77367e4d dcache_dir_lseek -EXPORT_SYMBOL vmlinux 0x77725176 skb_clone +EXPORT_SYMBOL vmlinux 0x774d26e3 xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x774d54cf device_get_mac_address +EXPORT_SYMBOL vmlinux 0x777aede5 ip_tunnel_header_ops +EXPORT_SYMBOL vmlinux 0x777f29f8 forget_all_cached_acls EXPORT_SYMBOL vmlinux 0x77808a48 vm_event_states -EXPORT_SYMBOL vmlinux 0x7785e20a mdio_device_register -EXPORT_SYMBOL vmlinux 0x77896d04 jbd2_journal_force_commit_nested -EXPORT_SYMBOL vmlinux 0x778d5c81 bh_uptodate_or_lock +EXPORT_SYMBOL vmlinux 0x77818d05 igrab +EXPORT_SYMBOL vmlinux 0x7786527f generic_file_open +EXPORT_SYMBOL vmlinux 0x778a51c5 scsi_device_set_state EXPORT_SYMBOL vmlinux 0x7791193f icst525_s2div +EXPORT_SYMBOL vmlinux 0x7795fa50 jbd2_journal_inode_ranged_write EXPORT_SYMBOL vmlinux 0x779a092b load_nls -EXPORT_SYMBOL vmlinux 0x77a6becf flow_rule_match_eth_addrs -EXPORT_SYMBOL vmlinux 0x77ab8653 dmam_pool_create +EXPORT_SYMBOL vmlinux 0x77a51a65 vme_dma_list_add EXPORT_SYMBOL vmlinux 0x77bc13a0 strim -EXPORT_SYMBOL vmlinux 0x77beaee0 snd_pcm_set_sync -EXPORT_SYMBOL vmlinux 0x77c2a8d3 unregister_netdevice_notifier_dev_net -EXPORT_SYMBOL vmlinux 0x77d12beb dquot_release -EXPORT_SYMBOL vmlinux 0x77d731d4 generic_parse_monolithic -EXPORT_SYMBOL vmlinux 0x77dd745e vmalloc_to_page -EXPORT_SYMBOL vmlinux 0x77e01020 file_remove_privs +EXPORT_SYMBOL vmlinux 0x77c7aa95 seq_release +EXPORT_SYMBOL vmlinux 0x77d5a58f backlight_force_update +EXPORT_SYMBOL vmlinux 0x77e6993b sk_stream_wait_memory EXPORT_SYMBOL vmlinux 0x77e9eb37 aes_encrypt -EXPORT_SYMBOL vmlinux 0x77f009ba nf_unregister_sockopt +EXPORT_SYMBOL vmlinux 0x77f6e02d tcp_parse_options EXPORT_SYMBOL vmlinux 0x77f6f183 kmalloc_order_trace +EXPORT_SYMBOL vmlinux 0x77fafbd6 ww_mutex_lock_interruptible EXPORT_SYMBOL vmlinux 0x7807f0f8 schedule_timeout_idle -EXPORT_SYMBOL vmlinux 0x78095c1b kill_block_super -EXPORT_SYMBOL vmlinux 0x784876f1 devm_register_netdev +EXPORT_SYMBOL vmlinux 0x780f0fab snd_compr_free_pages +EXPORT_SYMBOL vmlinux 0x7815b0eb mipi_dsi_dcs_set_tear_on +EXPORT_SYMBOL vmlinux 0x782caa19 kmalloc_caches +EXPORT_SYMBOL vmlinux 0x783b91e4 tty_check_change +EXPORT_SYMBOL vmlinux 0x783de4a3 sk_error_report +EXPORT_SYMBOL vmlinux 0x78501ac7 do_SAK +EXPORT_SYMBOL vmlinux 0x785c7977 __skb_recv_udp +EXPORT_SYMBOL vmlinux 0x787e9f9c jbd2_fc_get_buf EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback EXPORT_SYMBOL vmlinux 0x789affb1 frontswap_tmem_exclusive_gets -EXPORT_SYMBOL vmlinux 0x789bfb2e sock_queue_err_skb EXPORT_SYMBOL vmlinux 0x78a16f48 aes_decrypt -EXPORT_SYMBOL vmlinux 0x78b41fa9 dump_skip -EXPORT_SYMBOL vmlinux 0x78b75d3a generic_setlease +EXPORT_SYMBOL vmlinux 0x78a95e19 pci_bus_write_config_byte EXPORT_SYMBOL vmlinux 0x78b887ed vsprintf EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices -EXPORT_SYMBOL vmlinux 0x78e46d05 neigh_changeaddr -EXPORT_SYMBOL vmlinux 0x78ea24cd devm_devfreq_remove_device -EXPORT_SYMBOL vmlinux 0x78ef65bd inet6_ioctl -EXPORT_SYMBOL vmlinux 0x78faddca netdev_master_upper_dev_get_rcu -EXPORT_SYMBOL vmlinux 0x79077141 security_path_unlink +EXPORT_SYMBOL vmlinux 0x78ee0d6b ipv6_mc_check_mld +EXPORT_SYMBOL vmlinux 0x78f9bc63 devm_memremap EXPORT_SYMBOL vmlinux 0x790bafd4 blk_stack_limits -EXPORT_SYMBOL vmlinux 0x79112350 snd_ctl_replace -EXPORT_SYMBOL vmlinux 0x7912cb28 dst_release_immediate -EXPORT_SYMBOL vmlinux 0x7931afd9 dev_addr_flush +EXPORT_SYMBOL vmlinux 0x7919c49a __sock_create +EXPORT_SYMBOL vmlinux 0x79320553 generic_perform_write EXPORT_SYMBOL vmlinux 0x794765d1 mempool_free -EXPORT_SYMBOL vmlinux 0x79516941 should_remove_suid -EXPORT_SYMBOL vmlinux 0x7960f2c9 dquot_load_quota_sb -EXPORT_SYMBOL vmlinux 0x79753a55 sched_autogroup_detach -EXPORT_SYMBOL vmlinux 0x7975f7c1 blk_post_runtime_suspend -EXPORT_SYMBOL vmlinux 0x7982304c xfrm6_input_addr -EXPORT_SYMBOL vmlinux 0x7987157e fscrypt_decrypt_bio -EXPORT_SYMBOL vmlinux 0x7991d1cc skb_get_hash_perturb -EXPORT_SYMBOL vmlinux 0x7993dbc8 of_n_addr_cells -EXPORT_SYMBOL vmlinux 0x79955482 of_get_nand_ecc_user_config -EXPORT_SYMBOL vmlinux 0x79a87a95 pci_select_bars +EXPORT_SYMBOL vmlinux 0x797ba6a5 pci_irq_vector +EXPORT_SYMBOL vmlinux 0x79981a68 cros_ec_get_next_event +EXPORT_SYMBOL vmlinux 0x79a4069d nand_ecc_sw_hamming_calculate EXPORT_SYMBOL vmlinux 0x79aa04a2 get_random_bytes -EXPORT_SYMBOL vmlinux 0x79ace224 mipi_dsi_device_register_full -EXPORT_SYMBOL vmlinux 0x79b70fe0 pm860x_reg_write -EXPORT_SYMBOL vmlinux 0x79c44905 __netlink_ns_capable -EXPORT_SYMBOL vmlinux 0x79ce63da __kfree_skb +EXPORT_SYMBOL vmlinux 0x79cb404a file_path +EXPORT_SYMBOL vmlinux 0x79cb457d skb_vlan_untag +EXPORT_SYMBOL vmlinux 0x79d755bd flow_rule_match_mpls +EXPORT_SYMBOL vmlinux 0x79dcddb5 of_device_unregister +EXPORT_SYMBOL vmlinux 0x79e39c65 sock_gettstamp +EXPORT_SYMBOL vmlinux 0x79e849b6 mipi_dsi_dcs_set_display_brightness EXPORT_SYMBOL vmlinux 0x79ec8f93 blk_start_plug EXPORT_SYMBOL vmlinux 0x79fc577f utf8nagemax +EXPORT_SYMBOL vmlinux 0x7a042c34 phy_start_aneg EXPORT_SYMBOL vmlinux 0x7a09a064 seg6_hmac_compute -EXPORT_SYMBOL vmlinux 0x7a0d6085 sk_stream_kill_queues +EXPORT_SYMBOL vmlinux 0x7a1a6181 tc_cleanup_flow_action EXPORT_SYMBOL vmlinux 0x7a1bcd59 gf128mul_x8_ble -EXPORT_SYMBOL vmlinux 0x7a28bc16 __sk_dst_check -EXPORT_SYMBOL vmlinux 0x7a38767a __traceiter_mmap_lock_start_locking +EXPORT_SYMBOL vmlinux 0x7a29d9a7 wireless_spy_update +EXPORT_SYMBOL vmlinux 0x7a33dee4 snd_info_create_module_entry EXPORT_SYMBOL vmlinux 0x7a3e8a42 radix_tree_next_chunk +EXPORT_SYMBOL vmlinux 0x7a3ea0cd ilookup5_nowait EXPORT_SYMBOL vmlinux 0x7a44c000 bitmap_print_list_to_buf -EXPORT_SYMBOL vmlinux 0x7a476658 vme_register_error_handler -EXPORT_SYMBOL vmlinux 0x7a572f12 ip_sock_set_tos -EXPORT_SYMBOL vmlinux 0x7a63f670 of_device_is_compatible -EXPORT_SYMBOL vmlinux 0x7a6655a8 __inc_node_page_state -EXPORT_SYMBOL vmlinux 0x7a7042bb skb_tx_error -EXPORT_SYMBOL vmlinux 0x7a7e1939 fs_lookup_param -EXPORT_SYMBOL vmlinux 0x7a8a10a9 jbd2_journal_check_available_features -EXPORT_SYMBOL vmlinux 0x7a8b3459 xfrm_lookup +EXPORT_SYMBOL vmlinux 0x7a487512 mipi_dsi_dcs_exit_sleep_mode +EXPORT_SYMBOL vmlinux 0x7a68185f dev_driver_string +EXPORT_SYMBOL vmlinux 0x7a7bb93b amba_driver_unregister +EXPORT_SYMBOL vmlinux 0x7a7dba14 try_to_release_page +EXPORT_SYMBOL vmlinux 0x7a90dde5 mdio_device_reset EXPORT_SYMBOL vmlinux 0x7a95e5ae do_settimeofday64 EXPORT_SYMBOL vmlinux 0x7a968137 ucc_slow_restart_tx EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree -EXPORT_SYMBOL vmlinux 0x7aa93ba5 xfrm_input_register_afinfo -EXPORT_SYMBOL vmlinux 0x7aaa3592 input_close_device -EXPORT_SYMBOL vmlinux 0x7ab5a0db file_update_time +EXPORT_SYMBOL vmlinux 0x7ab494cc napi_complete_done EXPORT_SYMBOL vmlinux 0x7ab88a45 system_freezing_cnt -EXPORT_SYMBOL vmlinux 0x7ac3673b nand_ecc_get_on_die_hw_engine EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt +EXPORT_SYMBOL vmlinux 0x7ad130d1 tcp_v4_conn_request EXPORT_SYMBOL vmlinux 0x7adc0fbf rb_replace_node_rcu EXPORT_SYMBOL vmlinux 0x7aded2f7 down_write_trylock -EXPORT_SYMBOL vmlinux 0x7ae0595b crypto_sha512_update EXPORT_SYMBOL vmlinux 0x7ae5d317 qe_get_snum -EXPORT_SYMBOL vmlinux 0x7aed05f7 tcp_conn_request +EXPORT_SYMBOL vmlinux 0x7aee66ec __page_symlink EXPORT_SYMBOL vmlinux 0x7afc9d8a unregister_sound_mixer -EXPORT_SYMBOL vmlinux 0x7b142154 md_unregister_thread -EXPORT_SYMBOL vmlinux 0x7b1702b5 vme_init_bridge -EXPORT_SYMBOL vmlinux 0x7b2259f0 jbd2_journal_get_create_access EXPORT_SYMBOL vmlinux 0x7b283ce3 prandom_bytes_state -EXPORT_SYMBOL vmlinux 0x7b2ed0b2 ip6_output +EXPORT_SYMBOL vmlinux 0x7b2b82de __blockdev_direct_IO EXPORT_SYMBOL vmlinux 0x7b2fb85d __xa_cmpxchg -EXPORT_SYMBOL vmlinux 0x7b3cb4e4 dev_mc_flush -EXPORT_SYMBOL vmlinux 0x7b3fd1d6 __ethtool_get_link_ksettings -EXPORT_SYMBOL vmlinux 0x7b52f476 jbd2_journal_force_commit +EXPORT_SYMBOL vmlinux 0x7b331ad5 fs_param_is_u64 +EXPORT_SYMBOL vmlinux 0x7b4399e0 dev_mc_add_excl +EXPORT_SYMBOL vmlinux 0x7b441689 phy_write_paged +EXPORT_SYMBOL vmlinux 0x7b4f6faf alloc_anon_inode +EXPORT_SYMBOL vmlinux 0x7b553e3e filp_open EXPORT_SYMBOL vmlinux 0x7b5b8f31 sha256_update -EXPORT_SYMBOL vmlinux 0x7b5c669d devm_gen_pool_create EXPORT_SYMBOL vmlinux 0x7b5c8440 vm_munmap -EXPORT_SYMBOL vmlinux 0x7b6bd4fa single_open_size -EXPORT_SYMBOL vmlinux 0x7b70c82d ether_setup -EXPORT_SYMBOL vmlinux 0x7b9708ec iget5_locked -EXPORT_SYMBOL vmlinux 0x7ba20e7f tcf_exts_dump_stats -EXPORT_SYMBOL vmlinux 0x7badc2af of_phy_register_fixed_link -EXPORT_SYMBOL vmlinux 0x7bbe33f4 ipv6_dev_get_saddr -EXPORT_SYMBOL vmlinux 0x7bce1339 __cleancache_invalidate_page -EXPORT_SYMBOL vmlinux 0x7bde96c2 filemap_fdatawrite -EXPORT_SYMBOL vmlinux 0x7bea0e2e netdev_reset_tc -EXPORT_SYMBOL vmlinux 0x7bf461cd __frontswap_store -EXPORT_SYMBOL vmlinux 0x7c10bd50 pcix_set_mmrbc -EXPORT_SYMBOL vmlinux 0x7c1166fd pcie_print_link_status -EXPORT_SYMBOL vmlinux 0x7c12236b param_get_long -EXPORT_SYMBOL vmlinux 0x7c13088f key_task_permission -EXPORT_SYMBOL vmlinux 0x7c13a7c6 flow_block_cb_alloc +EXPORT_SYMBOL vmlinux 0x7b5d03b9 dget_parent +EXPORT_SYMBOL vmlinux 0x7b616424 eth_validate_addr +EXPORT_SYMBOL vmlinux 0x7b714b18 of_iomap +EXPORT_SYMBOL vmlinux 0x7b79f4d3 inode_init_once +EXPORT_SYMBOL vmlinux 0x7b87e090 dquot_get_dqblk +EXPORT_SYMBOL vmlinux 0x7b9913ac genphy_setup_forced +EXPORT_SYMBOL vmlinux 0x7b9e79f7 sock_init_data +EXPORT_SYMBOL vmlinux 0x7ba2437b mdiobus_setup_mdiodev_from_board_info +EXPORT_SYMBOL vmlinux 0x7ba9e92f inet_dgram_connect +EXPORT_SYMBOL vmlinux 0x7bacc40e locks_remove_posix +EXPORT_SYMBOL vmlinux 0x7bb8b1e9 phy_mac_interrupt +EXPORT_SYMBOL vmlinux 0x7bc68553 tcp_md5_hash_skb_data +EXPORT_SYMBOL vmlinux 0x7bc7f124 brioctl_set +EXPORT_SYMBOL vmlinux 0x7bc80330 __pagevec_release EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement -EXPORT_SYMBOL vmlinux 0x7c3a760d release_pages +EXPORT_SYMBOL vmlinux 0x7c244110 __neigh_set_probe_once +EXPORT_SYMBOL vmlinux 0x7c3ad242 mmput_async +EXPORT_SYMBOL vmlinux 0x7c3bf451 snd_card_new +EXPORT_SYMBOL vmlinux 0x7c3c84c1 tty_write_room EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get -EXPORT_SYMBOL vmlinux 0x7c4d5152 __dev_remove_pack -EXPORT_SYMBOL vmlinux 0x7c578caf rio_query_mport -EXPORT_SYMBOL vmlinux 0x7c5bfd3a dquot_get_next_dqblk -EXPORT_SYMBOL vmlinux 0x7c5c8986 gro_find_complete_by_type -EXPORT_SYMBOL vmlinux 0x7c7bb2f0 d_splice_alias +EXPORT_SYMBOL vmlinux 0x7c4e35f2 sk_common_release +EXPORT_SYMBOL vmlinux 0x7c6450d2 __cleancache_init_fs +EXPORT_SYMBOL vmlinux 0x7c647ae5 neigh_event_ns +EXPORT_SYMBOL vmlinux 0x7c65fad2 phy_device_create +EXPORT_SYMBOL vmlinux 0x7c7985d3 blk_queue_max_hw_sectors +EXPORT_SYMBOL vmlinux 0x7c8686b3 __phy_resume EXPORT_SYMBOL vmlinux 0x7c8cea9e key_create_or_update -EXPORT_SYMBOL vmlinux 0x7c8d78f3 snd_jack_new -EXPORT_SYMBOL vmlinux 0x7c98734a jbd2_journal_inode_ranged_wait +EXPORT_SYMBOL vmlinux 0x7c98f75d blk_rq_count_integrity_sg EXPORT_SYMBOL vmlinux 0x7c9ca58f __sg_page_iter_next -EXPORT_SYMBOL vmlinux 0x7c9e39da pcie_capability_clear_and_set_dword +EXPORT_SYMBOL vmlinux 0x7c9dd65a inet6_del_protocol +EXPORT_SYMBOL vmlinux 0x7ca7678a tty_port_raise_dtr_rts EXPORT_SYMBOL vmlinux 0x7cb1aea1 devlink_dpipe_header_ethernet -EXPORT_SYMBOL vmlinux 0x7cb60440 cdc_parse_cdc_header -EXPORT_SYMBOL vmlinux 0x7cb9ce1f __starget_for_each_device EXPORT_SYMBOL vmlinux 0x7cc035a7 __ucmpdi2 -EXPORT_SYMBOL vmlinux 0x7cd1076a save_stack_trace_tsk -EXPORT_SYMBOL vmlinux 0x7cda0bfa skb_ext_add +EXPORT_SYMBOL vmlinux 0x7cd356d0 devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0x7cdace92 devm_nvmem_cell_put EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid -EXPORT_SYMBOL vmlinux 0x7ce7e3da i2c_smbus_write_byte_data EXPORT_SYMBOL vmlinux 0x7cf35220 vme_master_free -EXPORT_SYMBOL vmlinux 0x7cf8b29a pci_bus_add_devices -EXPORT_SYMBOL vmlinux 0x7cf97ed8 phy_ethtool_set_eee +EXPORT_SYMBOL vmlinux 0x7cfcfc4c flow_rule_match_cvlan EXPORT_SYMBOL vmlinux 0x7cfe368d net_dim_get_def_tx_moderation -EXPORT_SYMBOL vmlinux 0x7d0a8615 pci_scan_single_device +EXPORT_SYMBOL vmlinux 0x7d0b349f sync_filesystem EXPORT_SYMBOL vmlinux 0x7d0db45c jiffies_to_clock_t -EXPORT_SYMBOL vmlinux 0x7d14c8e4 inet_proto_csum_replace_by_diff +EXPORT_SYMBOL vmlinux 0x7d1d2e96 __mdiobus_register EXPORT_SYMBOL vmlinux 0x7d22f6a6 gen_pool_dma_zalloc +EXPORT_SYMBOL vmlinux 0x7d23c0e0 __frontswap_store EXPORT_SYMBOL vmlinux 0x7d2ef2b0 down_read_interruptible -EXPORT_SYMBOL vmlinux 0x7d46d1e9 snd_pcm_lib_preallocate_pages +EXPORT_SYMBOL vmlinux 0x7d32ce95 __kmap_to_page +EXPORT_SYMBOL vmlinux 0x7d44aeea truncate_setsize +EXPORT_SYMBOL vmlinux 0x7d47f1b2 tcp_sendpage +EXPORT_SYMBOL vmlinux 0x7d4abdfd input_setup_polling EXPORT_SYMBOL vmlinux 0x7d4b176a netlbl_catmap_setbit -EXPORT_SYMBOL vmlinux 0x7d4caa91 migrate_page_move_mapping +EXPORT_SYMBOL vmlinux 0x7d52e08d dev_remove_offload EXPORT_SYMBOL vmlinux 0x7d6f1dc3 gen_new_estimator -EXPORT_SYMBOL vmlinux 0x7d700045 jbd2_log_start_commit -EXPORT_SYMBOL vmlinux 0x7d7a0af7 tcp_shutdown -EXPORT_SYMBOL vmlinux 0x7da52b38 nand_ecc_sw_hamming_init_ctx +EXPORT_SYMBOL vmlinux 0x7d9c08d8 skb_realloc_headroom EXPORT_SYMBOL vmlinux 0x7daece67 quota_send_warning -EXPORT_SYMBOL vmlinux 0x7dafc274 generic_fadvise -EXPORT_SYMBOL vmlinux 0x7dd417db tcp_v4_do_rcv -EXPORT_SYMBOL vmlinux 0x7dd5a07a dma_mmap_attrs -EXPORT_SYMBOL vmlinux 0x7de8cda6 fib_notifier_ops_register -EXPORT_SYMBOL vmlinux 0x7ded1785 nd_btt_arena_is_valid +EXPORT_SYMBOL vmlinux 0x7db960b7 genphy_read_status +EXPORT_SYMBOL vmlinux 0x7dec830b tc_setup_cb_replace EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args -EXPORT_SYMBOL vmlinux 0x7dfec431 ndo_dflt_fdb_add +EXPORT_SYMBOL vmlinux 0x7df87bda sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0x7e048b87 ndo_dflt_fdb_dump +EXPORT_SYMBOL vmlinux 0x7e05875d xfrm_state_free EXPORT_SYMBOL vmlinux 0x7e0ce0c3 up_write -EXPORT_SYMBOL vmlinux 0x7e190474 pci_unmap_rom -EXPORT_SYMBOL vmlinux 0x7e22c988 inet_frag_reasm_finish -EXPORT_SYMBOL vmlinux 0x7e2776b2 sg_miter_next -EXPORT_SYMBOL vmlinux 0x7e2b23d6 import_single_range +EXPORT_SYMBOL vmlinux 0x7e133917 pci_back_from_sleep EXPORT_SYMBOL vmlinux 0x7e3191f6 try_to_del_timer_sync +EXPORT_SYMBOL vmlinux 0x7e349f16 skb_flow_dissect_meta +EXPORT_SYMBOL vmlinux 0x7e35ed63 rtc_add_group +EXPORT_SYMBOL vmlinux 0x7e39b892 con_set_default_unimap +EXPORT_SYMBOL vmlinux 0x7e3d5639 mark_buffer_dirty_inode +EXPORT_SYMBOL vmlinux 0x7e416b4b tty_insert_flip_string_fixed_flag EXPORT_SYMBOL vmlinux 0x7e4dc8e3 __nla_put_nohdr -EXPORT_SYMBOL vmlinux 0x7e564ddc __skb_free_datagram_locked -EXPORT_SYMBOL vmlinux 0x7e6d18ef iterate_dir +EXPORT_SYMBOL vmlinux 0x7e6e6d9c dma_find_channel +EXPORT_SYMBOL vmlinux 0x7e7687ae of_mdiobus_phy_device_register +EXPORT_SYMBOL vmlinux 0x7e827f68 kernel_param_unlock +EXPORT_SYMBOL vmlinux 0x7e931cc7 tcp_sendmsg EXPORT_SYMBOL vmlinux 0x7e986abe try_wait_for_completion -EXPORT_SYMBOL vmlinux 0x7ef7b1e6 tso_start -EXPORT_SYMBOL vmlinux 0x7efc8f03 netlink_broadcast_filtered +EXPORT_SYMBOL vmlinux 0x7ead1bf9 pcix_set_mmrbc +EXPORT_SYMBOL vmlinux 0x7ee28bd2 scsi_register_interface +EXPORT_SYMBOL vmlinux 0x7f0108f2 pcie_get_mps EXPORT_SYMBOL vmlinux 0x7f02188f __msecs_to_jiffies EXPORT_SYMBOL vmlinux 0x7f03b6a9 crc_ccitt_table -EXPORT_SYMBOL vmlinux 0x7f07bbe0 kmem_cache_destroy -EXPORT_SYMBOL vmlinux 0x7f1301b2 devm_backlight_device_unregister +EXPORT_SYMBOL vmlinux 0x7f1e0b89 jbd2_journal_set_features EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs -EXPORT_SYMBOL vmlinux 0x7f265b10 mipi_dsi_dcs_set_display_on -EXPORT_SYMBOL vmlinux 0x7f2d72fc unlock_two_nondirectories +EXPORT_SYMBOL vmlinux 0x7f25c880 add_to_pipe EXPORT_SYMBOL vmlinux 0x7f304b27 ZSTD_DStreamWorkspaceBound -EXPORT_SYMBOL vmlinux 0x7f3c9aea clear_nlink -EXPORT_SYMBOL vmlinux 0x7f3e84d4 of_n_size_cells EXPORT_SYMBOL vmlinux 0x7f5b4fe4 sg_free_table EXPORT_SYMBOL vmlinux 0x7f63b31e _memcpy_toio +EXPORT_SYMBOL vmlinux 0x7f692896 jbd2_fc_end_commit_fallback EXPORT_SYMBOL vmlinux 0x7f7f7bb4 irq_poll_disable -EXPORT_SYMBOL vmlinux 0x7f884f07 dma_find_channel -EXPORT_SYMBOL vmlinux 0x7fa19eef pci_ep_cfs_add_epc_group -EXPORT_SYMBOL vmlinux 0x7fafd3d8 __skb_get_hash -EXPORT_SYMBOL vmlinux 0x7fb2968e __hw_addr_unsync_dev -EXPORT_SYMBOL vmlinux 0x7fb96f69 skb_eth_push -EXPORT_SYMBOL vmlinux 0x7fc78685 xp_raw_get_dma +EXPORT_SYMBOL vmlinux 0x7f810ede dev_set_group +EXPORT_SYMBOL vmlinux 0x7fa0a65e netif_skb_features +EXPORT_SYMBOL vmlinux 0x7fb7b70c of_device_alloc +EXPORT_SYMBOL vmlinux 0x7fc2af35 simple_statfs +EXPORT_SYMBOL vmlinux 0x7fc3fa06 flow_indr_dev_register EXPORT_SYMBOL vmlinux 0x7fde2edb vme_master_read EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node -EXPORT_SYMBOL vmlinux 0x7ff3c693 register_fib_notifier -EXPORT_SYMBOL vmlinux 0x7ff5c1d1 snd_ctl_notify_one -EXPORT_SYMBOL vmlinux 0x7ff5cec7 devm_clk_release_clkdev -EXPORT_SYMBOL vmlinux 0x7ff5f2a6 dev_driver_string -EXPORT_SYMBOL vmlinux 0x800c08db iov_iter_init EXPORT_SYMBOL vmlinux 0x800e4ffa __muldi3 -EXPORT_SYMBOL vmlinux 0x8014f1cd genphy_setup_forced -EXPORT_SYMBOL vmlinux 0x8016e987 __SetPageMovable -EXPORT_SYMBOL vmlinux 0x802535d4 blk_queue_alignment_offset +EXPORT_SYMBOL vmlinux 0x80187d2d ip_sock_set_mtu_discover +EXPORT_SYMBOL vmlinux 0x8026102f skb_dequeue_tail +EXPORT_SYMBOL vmlinux 0x8029f3b7 configfs_register_default_group +EXPORT_SYMBOL vmlinux 0x8036b135 sock_sendmsg EXPORT_SYMBOL vmlinux 0x8039b3fd _totalram_pages EXPORT_SYMBOL vmlinux 0x803ddbb6 __posix_acl_create -EXPORT_SYMBOL vmlinux 0x80572694 clk_add_alias -EXPORT_SYMBOL vmlinux 0x80631318 arp_xmit -EXPORT_SYMBOL vmlinux 0x807f0c61 serio_bus -EXPORT_SYMBOL vmlinux 0x808bc05c ipv6_chk_addr_and_flags -EXPORT_SYMBOL vmlinux 0x809ebd35 rawnand_sw_hamming_correct -EXPORT_SYMBOL vmlinux 0x80b0b3e6 rproc_alloc -EXPORT_SYMBOL vmlinux 0x80b35aa5 dev_get_iflink -EXPORT_SYMBOL vmlinux 0x80b6e2f1 rproc_da_to_va -EXPORT_SYMBOL vmlinux 0x80bd1057 netdev_has_upper_dev -EXPORT_SYMBOL vmlinux 0x80c01029 input_set_capability +EXPORT_SYMBOL vmlinux 0x807109bb neigh_seq_next +EXPORT_SYMBOL vmlinux 0x8071e124 nand_get_set_features_notsupp +EXPORT_SYMBOL vmlinux 0x807dd94b genphy_read_lpa +EXPORT_SYMBOL vmlinux 0x807e7f83 skb_copy_bits +EXPORT_SYMBOL vmlinux 0x809d2cc3 pci_iomap_range +EXPORT_SYMBOL vmlinux 0x80b176af jbd2_journal_check_used_features +EXPORT_SYMBOL vmlinux 0x80bdda8f pci_pme_capable EXPORT_SYMBOL vmlinux 0x80c4c319 crc32_le EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd +EXPORT_SYMBOL vmlinux 0x80cd1d22 scsi_test_unit_ready EXPORT_SYMBOL vmlinux 0x80d38ff8 _raw_spin_trylock_bh EXPORT_SYMBOL vmlinux 0x80d68d3e fb_register_client -EXPORT_SYMBOL vmlinux 0x80d895f9 snd_jack_report EXPORT_SYMBOL vmlinux 0x80e5f86f fscrypt_fname_alloc_buffer -EXPORT_SYMBOL vmlinux 0x8107f0c9 param_get_invbool +EXPORT_SYMBOL vmlinux 0x80f5f3fe ethtool_rx_flow_rule_create +EXPORT_SYMBOL vmlinux 0x80fbe8de vme_dma_list_exec +EXPORT_SYMBOL vmlinux 0x81072246 proc_remove EXPORT_SYMBOL vmlinux 0x8108ac7a down_read_trylock EXPORT_SYMBOL vmlinux 0x810bef7e sg_free_append_table +EXPORT_SYMBOL vmlinux 0x810c8dc4 devfreq_recommended_opp +EXPORT_SYMBOL vmlinux 0x8111d987 fwnode_graph_parse_endpoint EXPORT_SYMBOL vmlinux 0x8112b3d2 scsi_build_sense_buffer -EXPORT_SYMBOL vmlinux 0x812bd03e module_put -EXPORT_SYMBOL vmlinux 0x812e02b3 gnet_stats_copy_rate_est -EXPORT_SYMBOL vmlinux 0x813a92ee inet_select_addr +EXPORT_SYMBOL vmlinux 0x81184659 rproc_free +EXPORT_SYMBOL vmlinux 0x81514531 nd_device_unregister +EXPORT_SYMBOL vmlinux 0x81559b01 file_remove_privs EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal -EXPORT_SYMBOL vmlinux 0x816465ba blk_mq_start_hw_queues -EXPORT_SYMBOL vmlinux 0x816fc29c vfs_parse_fs_param -EXPORT_SYMBOL vmlinux 0x817b7801 tcp_sync_mss -EXPORT_SYMBOL vmlinux 0x817df74b account_page_redirty +EXPORT_SYMBOL vmlinux 0x815bf102 refresh_frequency_limits +EXPORT_SYMBOL vmlinux 0x817651a6 dma_set_mask +EXPORT_SYMBOL vmlinux 0x817d2f33 cdrom_check_events EXPORT_SYMBOL vmlinux 0x818416e1 scsi_set_sense_information EXPORT_SYMBOL vmlinux 0x818edf97 cpm_muram_alloc -EXPORT_SYMBOL vmlinux 0x819d3115 sdev_enable_disk_events -EXPORT_SYMBOL vmlinux 0x81a3df86 _copy_to_iter +EXPORT_SYMBOL vmlinux 0x81a1291e flush_signals EXPORT_SYMBOL vmlinux 0x81adef99 refcount_dec_and_mutex_lock EXPORT_SYMBOL vmlinux 0x81b20e8b ucc_fast_transmit_on_demand -EXPORT_SYMBOL vmlinux 0x81c3245a blackhole_netdev +EXPORT_SYMBOL vmlinux 0x81b69f70 dquot_scan_active +EXPORT_SYMBOL vmlinux 0x81ba1cd5 mdio_device_register +EXPORT_SYMBOL vmlinux 0x81c4fe1f mmc_gpio_get_ro EXPORT_SYMBOL vmlinux 0x81c5544e wait_for_completion_killable -EXPORT_SYMBOL vmlinux 0x81d579d8 cad_pid -EXPORT_SYMBOL vmlinux 0x81da4f97 inet_getname +EXPORT_SYMBOL vmlinux 0x81cf7a0e tcp_v4_mtu_reduced +EXPORT_SYMBOL vmlinux 0x81d76115 mmc_calc_max_discard EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset +EXPORT_SYMBOL vmlinux 0x81dc25a1 pci_get_domain_bus_and_slot +EXPORT_SYMBOL vmlinux 0x81de9d1d xfrm_dev_state_flush EXPORT_SYMBOL vmlinux 0x81e6b37f dmi_get_system_info -EXPORT_SYMBOL vmlinux 0x81f2c8b6 dquot_get_next_id -EXPORT_SYMBOL vmlinux 0x82147099 jbd2_journal_init_inode +EXPORT_SYMBOL vmlinux 0x81f6b06a key_link +EXPORT_SYMBOL vmlinux 0x820258da add_to_page_cache_locked +EXPORT_SYMBOL vmlinux 0x8208d5f3 phy_reset_after_clk_enable +EXPORT_SYMBOL vmlinux 0x820e52fb nf_log_bind_pf +EXPORT_SYMBOL vmlinux 0x8210529a page_cache_prev_miss +EXPORT_SYMBOL vmlinux 0x8219fa4d tcp_md5_do_add +EXPORT_SYMBOL vmlinux 0x821f7632 blk_queue_flag_clear EXPORT_SYMBOL vmlinux 0x822137e2 arm_heavy_mb -EXPORT_SYMBOL vmlinux 0x823e34bf vfs_copy_file_range +EXPORT_SYMBOL vmlinux 0x822a750e pldmfw_flash_image EXPORT_SYMBOL vmlinux 0x824a4367 tmio_core_mmc_pwr -EXPORT_SYMBOL vmlinux 0x82525cba pcie_port_service_register -EXPORT_SYMBOL vmlinux 0x827a93c4 simple_lookup +EXPORT_SYMBOL vmlinux 0x825cdfb2 flow_rule_alloc +EXPORT_SYMBOL vmlinux 0x825f3758 twl6040_power +EXPORT_SYMBOL vmlinux 0x82708ad2 inet_frag_reasm_finish +EXPORT_SYMBOL vmlinux 0x8273800d ip6_output EXPORT_SYMBOL vmlinux 0x828062b1 __frontswap_init +EXPORT_SYMBOL vmlinux 0x82864456 vmf_insert_mixed EXPORT_SYMBOL vmlinux 0x828ce6bb mutex_lock -EXPORT_SYMBOL vmlinux 0x8295c5af param_set_uint -EXPORT_SYMBOL vmlinux 0x829b400c do_map_probe -EXPORT_SYMBOL vmlinux 0x82c013eb tcp_getsockopt -EXPORT_SYMBOL vmlinux 0x82c8bd4f skb_find_text -EXPORT_SYMBOL vmlinux 0x82e37b70 flow_indr_dev_register +EXPORT_SYMBOL vmlinux 0x8297cce5 security_skb_classify_flow +EXPORT_SYMBOL vmlinux 0x82ae1029 wireless_send_event +EXPORT_SYMBOL vmlinux 0x82ae6959 nlmsg_notify +EXPORT_SYMBOL vmlinux 0x82afc0bf mmc_gpio_get_cd +EXPORT_SYMBOL vmlinux 0x82b2c35f blk_get_queue +EXPORT_SYMBOL vmlinux 0x82c7f5cb napi_enable +EXPORT_SYMBOL vmlinux 0x82cd3035 md_finish_reshape +EXPORT_SYMBOL vmlinux 0x82d7b330 touch_buffer EXPORT_SYMBOL vmlinux 0x82f886a1 ZSTD_findFrameCompressedSize -EXPORT_SYMBOL vmlinux 0x830e9a07 proto_register +EXPORT_SYMBOL vmlinux 0x83123058 __skb_flow_get_ports EXPORT_SYMBOL vmlinux 0x8320bea8 __umodsi3 -EXPORT_SYMBOL vmlinux 0x834d330f cros_ec_query_all +EXPORT_SYMBOL vmlinux 0x832ac68e __skb_ext_del +EXPORT_SYMBOL vmlinux 0x832f9a90 inet_csk_init_xmit_timers EXPORT_SYMBOL vmlinux 0x8351f2dc seqno_fence_ops -EXPORT_SYMBOL vmlinux 0x8357b923 tcf_idr_create EXPORT_SYMBOL vmlinux 0x83581089 gf128mul_init_4k_lle -EXPORT_SYMBOL vmlinux 0x8384b610 dcache_dir_close -EXPORT_SYMBOL vmlinux 0x8389ae4a filemap_write_and_wait_range +EXPORT_SYMBOL vmlinux 0x836b3ec6 __blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0x837f167c of_get_next_parent EXPORT_SYMBOL vmlinux 0x838d2bc8 siphash_3u32 -EXPORT_SYMBOL vmlinux 0x838f307e blk_queue_max_segments +EXPORT_SYMBOL vmlinux 0x83a43359 fwnode_get_mac_address +EXPORT_SYMBOL vmlinux 0x83a6008a kernel_sock_ip_overhead +EXPORT_SYMBOL vmlinux 0x83a79273 finish_swait +EXPORT_SYMBOL vmlinux 0x83a802e1 generic_file_mmap +EXPORT_SYMBOL vmlinux 0x83acdb37 __dev_kfree_skb_any EXPORT_SYMBOL vmlinux 0x83c52fba xfrm4_protocol_init -EXPORT_SYMBOL vmlinux 0x83c71ca7 param_ops_bool EXPORT_SYMBOL vmlinux 0x83cd0e6f atomic_io_modify -EXPORT_SYMBOL vmlinux 0x83d4427e netdev_lower_get_next_private -EXPORT_SYMBOL vmlinux 0x83f08d7a add_to_page_cache_locked -EXPORT_SYMBOL vmlinux 0x83f9b324 tcp_sock_set_keepidle +EXPORT_SYMBOL vmlinux 0x83cf9a05 neigh_sysctl_unregister +EXPORT_SYMBOL vmlinux 0x83d83ce9 unpin_user_pages +EXPORT_SYMBOL vmlinux 0x83def3eb md_wait_for_blocked_rdev +EXPORT_SYMBOL vmlinux 0x83e7b6de dev_get_phys_port_name EXPORT_SYMBOL vmlinux 0x840342c6 sgl_free -EXPORT_SYMBOL vmlinux 0x84082e9e udp_lib_get_port -EXPORT_SYMBOL vmlinux 0x840e4ee2 scsi_add_host_with_dma -EXPORT_SYMBOL vmlinux 0x84273236 security_task_getsecid_subj -EXPORT_SYMBOL vmlinux 0x842f8ab6 udp_flush_pending_frames -EXPORT_SYMBOL vmlinux 0x8438b7ee tcf_idr_release -EXPORT_SYMBOL vmlinux 0x843c7728 nand_ecc_is_strong_enough +EXPORT_SYMBOL vmlinux 0x840cf57e proto_register +EXPORT_SYMBOL vmlinux 0x840cfa07 pcix_get_max_mmrbc +EXPORT_SYMBOL vmlinux 0x8414d16c of_phy_register_fixed_link +EXPORT_SYMBOL vmlinux 0x841f6b83 netdev_has_upper_dev_all_rcu +EXPORT_SYMBOL vmlinux 0x84480b8f flow_rule_match_eth_addrs EXPORT_SYMBOL vmlinux 0x8456e9a7 xa_erase -EXPORT_SYMBOL vmlinux 0x8469555e inet_stream_connect -EXPORT_SYMBOL vmlinux 0x84a5f7e3 tso_build_hdr +EXPORT_SYMBOL vmlinux 0x845e1706 input_enable_softrepeat +EXPORT_SYMBOL vmlinux 0x84ab5acd blkdev_get_by_dev EXPORT_SYMBOL vmlinux 0x84b183ae strncmp -EXPORT_SYMBOL vmlinux 0x84bae2cd consume_skb EXPORT_SYMBOL vmlinux 0x84c03e9a rtnl_nla_parse_ifla -EXPORT_SYMBOL vmlinux 0x84cb1d66 genphy_read_status_fixed -EXPORT_SYMBOL vmlinux 0x84cb38e8 snd_seq_root -EXPORT_SYMBOL vmlinux 0x84cc6998 fscrypt_zeroout_range -EXPORT_SYMBOL vmlinux 0x84d8e85c security_unix_may_send -EXPORT_SYMBOL vmlinux 0x84e5b991 twl6040_power -EXPORT_SYMBOL vmlinux 0x84fb6d08 PDE_DATA -EXPORT_SYMBOL vmlinux 0x85296f9b cpu_user +EXPORT_SYMBOL vmlinux 0x84c9b39f param_set_ushort +EXPORT_SYMBOL vmlinux 0x85014eeb vfs_mknod +EXPORT_SYMBOL vmlinux 0x85025315 remove_conflicting_pci_framebuffers +EXPORT_SYMBOL vmlinux 0x8507a7bb clear_bdi_congested +EXPORT_SYMBOL vmlinux 0x852d6651 cpu_tlb EXPORT_SYMBOL vmlinux 0x852e1d8e __register_nls -EXPORT_SYMBOL vmlinux 0x8545838c pci_get_class -EXPORT_SYMBOL vmlinux 0x855ef75a bio_devname +EXPORT_SYMBOL vmlinux 0x8565973a pcim_iomap_regions EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked -EXPORT_SYMBOL vmlinux 0x85708ac3 pci_request_selected_regions_exclusive -EXPORT_SYMBOL vmlinux 0x857d34d9 input_register_handler +EXPORT_SYMBOL vmlinux 0x856bd6cd pci_enable_atomic_ops_to_root EXPORT_SYMBOL vmlinux 0x8582ebff cpu_all_bits -EXPORT_SYMBOL vmlinux 0x8583594e __scsi_add_device EXPORT_SYMBOL vmlinux 0x8591d7d5 ledtrig_mtd_activity -EXPORT_SYMBOL vmlinux 0x859c0b89 seq_putc -EXPORT_SYMBOL vmlinux 0x859e9965 blk_execute_rq +EXPORT_SYMBOL vmlinux 0x859f598a pagevec_lookup_range_tag EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states +EXPORT_SYMBOL vmlinux 0x85b5e866 register_netdevice_notifier_dev_net EXPORT_SYMBOL vmlinux 0x85bd1608 __request_region -EXPORT_SYMBOL vmlinux 0x85c542ba block_commit_write -EXPORT_SYMBOL vmlinux 0x85cc2fef dev_get_phys_port_id +EXPORT_SYMBOL vmlinux 0x85c8c88e flow_rule_match_control EXPORT_SYMBOL vmlinux 0x85df9b6c strsep -EXPORT_SYMBOL vmlinux 0x85dffcfa pm8606_osc_disable -EXPORT_SYMBOL vmlinux 0x85e241d3 gro_cells_receive +EXPORT_SYMBOL vmlinux 0x85ed94d8 pci_release_resource EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn +EXPORT_SYMBOL vmlinux 0x85f1cdfc ip_frag_next EXPORT_SYMBOL vmlinux 0x85fbc931 slhc_uncompress -EXPORT_SYMBOL vmlinux 0x862b2114 iov_iter_get_pages_alloc +EXPORT_SYMBOL vmlinux 0x860a7d54 security_unix_may_send +EXPORT_SYMBOL vmlinux 0x86110eaf of_match_node EXPORT_SYMBOL vmlinux 0x862bc663 memset16 -EXPORT_SYMBOL vmlinux 0x862e65f9 xfrm_alloc_spi +EXPORT_SYMBOL vmlinux 0x8633c89c mr_rtm_dumproute EXPORT_SYMBOL vmlinux 0x863a276a color_table +EXPORT_SYMBOL vmlinux 0x86574033 dst_discard_out EXPORT_SYMBOL vmlinux 0x868acba5 get_options -EXPORT_SYMBOL vmlinux 0x8690fc60 twl6040_reg_write -EXPORT_SYMBOL vmlinux 0x86997b9f max8925_set_bits -EXPORT_SYMBOL vmlinux 0x86a2c5d8 xfrm_state_lookup_byspi -EXPORT_SYMBOL vmlinux 0x86b9e988 __invalidate_device +EXPORT_SYMBOL vmlinux 0x86b29710 tty_wait_until_sent +EXPORT_SYMBOL vmlinux 0x86bfa14c nf_ct_get_tuple_skb +EXPORT_SYMBOL vmlinux 0x86c5d564 dcache_readdir EXPORT_SYMBOL vmlinux 0x86d52ba5 lookup_constant +EXPORT_SYMBOL vmlinux 0x86dfbe72 input_mt_sync_frame +EXPORT_SYMBOL vmlinux 0x86e2e3be sock_no_accept EXPORT_SYMBOL vmlinux 0x86eb0c08 proc_dointvec EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user -EXPORT_SYMBOL vmlinux 0x87076760 xfrm_policy_walk +EXPORT_SYMBOL vmlinux 0x86fd293f tcf_generic_walker EXPORT_SYMBOL vmlinux 0x870d5a1c __init_swait_queue_head -EXPORT_SYMBOL vmlinux 0x87362c37 prepare_to_swait_exclusive -EXPORT_SYMBOL vmlinux 0x873eac8c skb_flow_dissect_tunnel_info -EXPORT_SYMBOL vmlinux 0x87549fcf memory_cgrp_subsys -EXPORT_SYMBOL vmlinux 0x8767dc68 scsi_register_interface -EXPORT_SYMBOL vmlinux 0x876c7f9f bio_add_pc_page -EXPORT_SYMBOL vmlinux 0x876e4530 iterate_fd -EXPORT_SYMBOL vmlinux 0x87a0034b snd_timer_global_new -EXPORT_SYMBOL vmlinux 0x87a1936a phy_ethtool_set_link_ksettings +EXPORT_SYMBOL vmlinux 0x8735f08e validate_slab_cache +EXPORT_SYMBOL vmlinux 0x875297d2 param_get_ulong +EXPORT_SYMBOL vmlinux 0x8756f9f3 kunmap_high +EXPORT_SYMBOL vmlinux 0x877bbfa7 skb_store_bits +EXPORT_SYMBOL vmlinux 0x87823d4f mmc_retune_timer_stop +EXPORT_SYMBOL vmlinux 0x87a1e568 xfrm_state_insert EXPORT_SYMBOL vmlinux 0x87a21cb3 __ubsan_handle_out_of_bounds +EXPORT_SYMBOL vmlinux 0x87a47536 tc_setup_flow_action +EXPORT_SYMBOL vmlinux 0x87ad0b50 tcp_disconnect +EXPORT_SYMBOL vmlinux 0x87b2efa0 snd_timer_stop EXPORT_SYMBOL vmlinux 0x87b8798d sg_next -EXPORT_SYMBOL vmlinux 0x87f9cb6f tcp_md5_hash_skb_data -EXPORT_SYMBOL vmlinux 0x88024bca rtnl_link_get_net -EXPORT_SYMBOL vmlinux 0x8817b2af snd_pcm_hw_constraint_mask64 +EXPORT_SYMBOL vmlinux 0x87badaae netdev_set_num_tc +EXPORT_SYMBOL vmlinux 0x87df7655 fscrypt_encrypt_pagecache_blocks +EXPORT_SYMBOL vmlinux 0x87ebdb1a tcp_initialize_rcv_mss +EXPORT_SYMBOL vmlinux 0x8800a02b mipi_dsi_dcs_set_page_address +EXPORT_SYMBOL vmlinux 0x880589a3 qdisc_put EXPORT_SYMBOL vmlinux 0x881bad5e phy_mipi_dphy_config_validate -EXPORT_SYMBOL vmlinux 0x88451c6c fwnode_mdiobus_phy_device_register +EXPORT_SYMBOL vmlinux 0x881f2cf2 phy_find_first +EXPORT_SYMBOL vmlinux 0x881f9afa iov_iter_kvec +EXPORT_SYMBOL vmlinux 0x882a47a0 dev_remove_pack +EXPORT_SYMBOL vmlinux 0x8859b294 skb_add_rx_frag +EXPORT_SYMBOL vmlinux 0x885c7455 tty_register_device +EXPORT_SYMBOL vmlinux 0x8878013f mnt_drop_write_file +EXPORT_SYMBOL vmlinux 0x887d6189 tcp_poll EXPORT_SYMBOL vmlinux 0x88822d38 unregister_blocking_lsm_notifier -EXPORT_SYMBOL vmlinux 0x888b822a skb_vlan_pop -EXPORT_SYMBOL vmlinux 0x888c0b2b i2c_smbus_write_word_data -EXPORT_SYMBOL vmlinux 0x8895374c __ps2_command +EXPORT_SYMBOL vmlinux 0x8885fbc6 pci_clear_mwi +EXPORT_SYMBOL vmlinux 0x8886eb32 input_alloc_absinfo EXPORT_SYMBOL vmlinux 0x88a87a2d cpumask_next -EXPORT_SYMBOL vmlinux 0x88aa9e90 sock_pfree -EXPORT_SYMBOL vmlinux 0x88adac1a blk_mq_tag_to_rq EXPORT_SYMBOL vmlinux 0x88b19f45 system_serial -EXPORT_SYMBOL vmlinux 0x88b9c399 __bread_gfp -EXPORT_SYMBOL vmlinux 0x88c99997 twl6040_get_pll -EXPORT_SYMBOL vmlinux 0x88cbb4c1 __alloc_pages +EXPORT_SYMBOL vmlinux 0x88b5d223 __dev_set_mtu +EXPORT_SYMBOL vmlinux 0x88c53169 __sk_mem_raise_allocated +EXPORT_SYMBOL vmlinux 0x88ce440c udp_gro_receive EXPORT_SYMBOL vmlinux 0x88db665b kstrtoul_from_user EXPORT_SYMBOL vmlinux 0x88db9f48 __check_object_size +EXPORT_SYMBOL vmlinux 0x88e07487 sock_no_connect +EXPORT_SYMBOL vmlinux 0x88e0bb2a lock_two_nondirectories EXPORT_SYMBOL vmlinux 0x88e1d0f0 page_frag_free -EXPORT_SYMBOL vmlinux 0x88f8bbea sock_set_keepalive -EXPORT_SYMBOL vmlinux 0x890b9d7b sock_no_listen -EXPORT_SYMBOL vmlinux 0x89129259 tcp_ld_RTO_revert -EXPORT_SYMBOL vmlinux 0x8913c575 inet_csk_clear_xmit_timers -EXPORT_SYMBOL vmlinux 0x891e687c snd_pcm_lib_preallocate_free_for_all -EXPORT_SYMBOL vmlinux 0x8960c3c8 devm_of_find_backlight -EXPORT_SYMBOL vmlinux 0x8968ffb0 __dec_zone_page_state -EXPORT_SYMBOL vmlinux 0x89803ae9 tcp_make_synack -EXPORT_SYMBOL vmlinux 0x8982d7a3 dquot_initialize_needed -EXPORT_SYMBOL vmlinux 0x8985d1e0 close_fd_get_file +EXPORT_SYMBOL vmlinux 0x88e45beb blk_set_queue_depth +EXPORT_SYMBOL vmlinux 0x88fe83f5 icmpv6_ndo_send +EXPORT_SYMBOL vmlinux 0x88ffac92 tty_port_tty_get +EXPORT_SYMBOL vmlinux 0x89059039 bdi_alloc +EXPORT_SYMBOL vmlinux 0x8913e0a9 pm860x_reg_write +EXPORT_SYMBOL vmlinux 0x8914c506 __serio_register_driver +EXPORT_SYMBOL vmlinux 0x891ac1ee dst_release +EXPORT_SYMBOL vmlinux 0x8922961f set_bh_page +EXPORT_SYMBOL vmlinux 0x892e542f md_bitmap_unplug +EXPORT_SYMBOL vmlinux 0x8933ba07 inet6_protos +EXPORT_SYMBOL vmlinux 0x894fcb8b flow_rule_match_enc_ports EXPORT_SYMBOL vmlinux 0x898a0c90 config_group_find_item -EXPORT_SYMBOL vmlinux 0x899e8402 fscrypt_encrypt_pagecache_blocks -EXPORT_SYMBOL vmlinux 0x89ad4ea5 mntput -EXPORT_SYMBOL vmlinux 0x89b0598d devm_memunmap -EXPORT_SYMBOL vmlinux 0x89c8c42f xsk_tx_peek_desc -EXPORT_SYMBOL vmlinux 0x89cc5c51 update_region -EXPORT_SYMBOL vmlinux 0x8a124572 __skb_checksum_complete_head -EXPORT_SYMBOL vmlinux 0x8a162455 devfreq_monitor_stop -EXPORT_SYMBOL vmlinux 0x8a26e754 ata_port_printk +EXPORT_SYMBOL vmlinux 0x898a1dee netdev_state_change +EXPORT_SYMBOL vmlinux 0x89912363 pm8606_osc_disable +EXPORT_SYMBOL vmlinux 0x8994de3b phy_attach_direct +EXPORT_SYMBOL vmlinux 0x89b02fd2 phy_device_register +EXPORT_SYMBOL vmlinux 0x89b813d7 dec_node_page_state +EXPORT_SYMBOL vmlinux 0x89ba0015 dput +EXPORT_SYMBOL vmlinux 0x89baadc2 vfs_parse_fs_string +EXPORT_SYMBOL vmlinux 0x89e90a01 qdisc_watchdog_init +EXPORT_SYMBOL vmlinux 0x89eb4a0e ptp_clock_unregister +EXPORT_SYMBOL vmlinux 0x89fb04be file_update_time +EXPORT_SYMBOL vmlinux 0x8a065781 tcp_v4_md5_hash_skb +EXPORT_SYMBOL vmlinux 0x8a070c1d scsi_vpd_tpg_id +EXPORT_SYMBOL vmlinux 0x8a1843a0 pci_bus_read_config_dword +EXPORT_SYMBOL vmlinux 0x8a1ad9c5 xfrm_policy_byid +EXPORT_SYMBOL vmlinux 0x8a215740 ps2_end_command EXPORT_SYMBOL vmlinux 0x8a3b1285 __xa_erase -EXPORT_SYMBOL vmlinux 0x8a3fb688 simple_rmdir +EXPORT_SYMBOL vmlinux 0x8a4643df eth_platform_get_mac_address EXPORT_SYMBOL vmlinux 0x8a490c90 rfkill_set_sw_state -EXPORT_SYMBOL vmlinux 0x8a499ed6 truncate_inode_pages_final +EXPORT_SYMBOL vmlinux 0x8a496ae2 zpool_unregister_driver EXPORT_SYMBOL vmlinux 0x8a4fa83b __aeabi_llsr -EXPORT_SYMBOL vmlinux 0x8a513e28 dm_mq_kick_requeue_list -EXPORT_SYMBOL vmlinux 0x8a6c2fbf bio_integrity_clone -EXPORT_SYMBOL vmlinux 0x8a705c59 devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0x8a6139c0 input_release_device +EXPORT_SYMBOL vmlinux 0x8a67a770 snd_jack_add_new_kctl +EXPORT_SYMBOL vmlinux 0x8a7071e5 of_translate_dma_address EXPORT_SYMBOL vmlinux 0x8a7094ba vm_brk_flags +EXPORT_SYMBOL vmlinux 0x8a746747 tty_schedule_flip EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory -EXPORT_SYMBOL vmlinux 0x8a8666da dquot_drop -EXPORT_SYMBOL vmlinux 0x8a8e1554 devm_input_allocate_device +EXPORT_SYMBOL vmlinux 0x8a84eebe dev_change_proto_down_generic +EXPORT_SYMBOL vmlinux 0x8a861030 phy_sfp_probe +EXPORT_SYMBOL vmlinux 0x8a96793a mr_mfc_find_parent EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab -EXPORT_SYMBOL vmlinux 0x8a9f78de tcf_idrinfo_destroy +EXPORT_SYMBOL vmlinux 0x8a9d1b95 __genphy_config_aneg EXPORT_SYMBOL vmlinux 0x8aa0402b _raw_read_unlock_irqrestore EXPORT_SYMBOL vmlinux 0x8aa30959 ZSTD_decompressDCtx -EXPORT_SYMBOL vmlinux 0x8ab1f4b1 get_cached_acl_rcu -EXPORT_SYMBOL vmlinux 0x8ab22691 of_get_next_child -EXPORT_SYMBOL vmlinux 0x8ab7dcd7 backlight_device_register -EXPORT_SYMBOL vmlinux 0x8ab934e9 register_mii_timestamper -EXPORT_SYMBOL vmlinux 0x8ab93b75 mr_mfc_find_any -EXPORT_SYMBOL vmlinux 0x8abb4c94 mini_qdisc_pair_block_init EXPORT_SYMBOL vmlinux 0x8ac3334b net_dim_get_def_rx_moderation -EXPORT_SYMBOL vmlinux 0x8acc866a get_task_cred -EXPORT_SYMBOL vmlinux 0x8aeef733 vfs_get_link +EXPORT_SYMBOL vmlinux 0x8ac93401 netdev_lower_dev_get_private +EXPORT_SYMBOL vmlinux 0x8af0073d __devm_request_region +EXPORT_SYMBOL vmlinux 0x8afd6970 tcp_get_cookie_sock +EXPORT_SYMBOL vmlinux 0x8afd83df jbd2_fc_release_bufs EXPORT_SYMBOL vmlinux 0x8b0088d1 LZ4_decompress_safe_usingDict EXPORT_SYMBOL vmlinux 0x8b07b51d flow_block_cb_is_busy -EXPORT_SYMBOL vmlinux 0x8b1dff7b skb_push -EXPORT_SYMBOL vmlinux 0x8b26f9fd bio_kmalloc -EXPORT_SYMBOL vmlinux 0x8b2d212a scsi_scan_host -EXPORT_SYMBOL vmlinux 0x8b38b863 skb_free_datagram -EXPORT_SYMBOL vmlinux 0x8b3aee93 tcf_block_put_ext -EXPORT_SYMBOL vmlinux 0x8b3e6cea disk_start_io_acct -EXPORT_SYMBOL vmlinux 0x8b4ddfbc cros_ec_cmd_xfer_status -EXPORT_SYMBOL vmlinux 0x8b57f8c6 rproc_resource_cleanup +EXPORT_SYMBOL vmlinux 0x8b0a9fba mdiobus_write +EXPORT_SYMBOL vmlinux 0x8b575f07 __sock_cmsg_send +EXPORT_SYMBOL vmlinux 0x8b58cec5 jbd2_journal_release_jbd_inode EXPORT_SYMBOL vmlinux 0x8b5927a0 down_timeout EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid -EXPORT_SYMBOL vmlinux 0x8b6e2ac1 xp_alloc -EXPORT_SYMBOL vmlinux 0x8b6f370b inet_csk_reqsk_queue_drop_and_put +EXPORT_SYMBOL vmlinux 0x8b64872d sk_stop_timer +EXPORT_SYMBOL vmlinux 0x8b7d5cf5 vc_resize EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p +EXPORT_SYMBOL vmlinux 0x8b87a804 pci_bus_read_config_byte +EXPORT_SYMBOL vmlinux 0x8b8ba4f3 input_register_device EXPORT_SYMBOL vmlinux 0x8b910be2 errseq_sample -EXPORT_SYMBOL vmlinux 0x8b99bedd kernel_read EXPORT_SYMBOL vmlinux 0x8b9ea582 ZSTD_copyDCtx -EXPORT_SYMBOL vmlinux 0x8bad9d87 xsk_clear_rx_need_wakeup +EXPORT_SYMBOL vmlinux 0x8bb8e94c ptp_schedule_worker +EXPORT_SYMBOL vmlinux 0x8bc42d48 current_in_userns +EXPORT_SYMBOL vmlinux 0x8bd8eecb _dev_emerg EXPORT_SYMBOL vmlinux 0x8be189ab ucc_slow_disable +EXPORT_SYMBOL vmlinux 0x8be5b2e2 ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0x8bed3565 clocksource_unregister EXPORT_SYMBOL vmlinux 0x8bee75d7 proc_dostring -EXPORT_SYMBOL vmlinux 0x8bf51c38 finish_no_open -EXPORT_SYMBOL vmlinux 0x8bfa15cc dst_dev_put -EXPORT_SYMBOL vmlinux 0x8c01415c blkdev_put -EXPORT_SYMBOL vmlinux 0x8c020182 of_mdiobus_phy_device_register -EXPORT_SYMBOL vmlinux 0x8c0d8f32 rproc_free EXPORT_SYMBOL vmlinux 0x8c1f00d5 __tracepoint_kmalloc_node -EXPORT_SYMBOL vmlinux 0x8c25cd40 netlink_ns_capable -EXPORT_SYMBOL vmlinux 0x8c334231 xfrm_register_type_offload -EXPORT_SYMBOL vmlinux 0x8c33d0ea phy_modify_paged_changed -EXPORT_SYMBOL vmlinux 0x8c3c1d74 __dev_kfree_skb_any -EXPORT_SYMBOL vmlinux 0x8c4884c3 dev_change_flags -EXPORT_SYMBOL vmlinux 0x8c53f7f1 tcp_time_wait +EXPORT_SYMBOL vmlinux 0x8c39c311 put_cmsg_scm_timestamping64 +EXPORT_SYMBOL vmlinux 0x8c4a8dc3 dquot_get_state EXPORT_SYMBOL vmlinux 0x8c5d254a dma_fence_array_ops -EXPORT_SYMBOL vmlinux 0x8c5d5a70 of_mdiobus_child_is_phy -EXPORT_SYMBOL vmlinux 0x8c5f5d82 xfrm_policy_flush -EXPORT_SYMBOL vmlinux 0x8c763d39 nf_getsockopt -EXPORT_SYMBOL vmlinux 0x8c7774cc vfs_link -EXPORT_SYMBOL vmlinux 0x8c8421a8 tcp_seq_stop +EXPORT_SYMBOL vmlinux 0x8c6bef44 pci_ep_cfs_add_epc_group +EXPORT_SYMBOL vmlinux 0x8c83072a tcp_seq_stop +EXPORT_SYMBOL vmlinux 0x8c83fda2 ata_scsi_cmd_error_handler EXPORT_SYMBOL vmlinux 0x8c8569cb kstrtoint -EXPORT_SYMBOL vmlinux 0x8c8c8b6d jbd2_journal_free_reserved +EXPORT_SYMBOL vmlinux 0x8c884cb5 register_sound_mixer +EXPORT_SYMBOL vmlinux 0x8c9b67c3 pci_setup_cardbus +EXPORT_SYMBOL vmlinux 0x8cabc3c7 jbd2_journal_load EXPORT_SYMBOL vmlinux 0x8caf9305 uuid_is_valid -EXPORT_SYMBOL vmlinux 0x8cb4794f generic_file_write_iter -EXPORT_SYMBOL vmlinux 0x8cb645de dump_emit -EXPORT_SYMBOL vmlinux 0x8cbd9969 netdev_master_upper_dev_link +EXPORT_SYMBOL vmlinux 0x8cb93b26 iw_handler_get_spy EXPORT_SYMBOL vmlinux 0x8cc53d20 __par_io_config_pin -EXPORT_SYMBOL vmlinux 0x8cca454f inc_node_state +EXPORT_SYMBOL vmlinux 0x8cc8440c key_unlink +EXPORT_SYMBOL vmlinux 0x8cd1cb54 sock_efree EXPORT_SYMBOL vmlinux 0x8cd8c339 omap_free_dma -EXPORT_SYMBOL vmlinux 0x8cdc4f01 thaw_bdev EXPORT_SYMBOL vmlinux 0x8ce13cc5 udplite_table -EXPORT_SYMBOL vmlinux 0x8ce7fdb5 pci_bus_claim_resources -EXPORT_SYMBOL vmlinux 0x8cf10bd5 dquot_commit -EXPORT_SYMBOL vmlinux 0x8d0fedbf mpage_readpage -EXPORT_SYMBOL vmlinux 0x8d13b895 seq_hex_dump -EXPORT_SYMBOL vmlinux 0x8d1d9c96 reuseport_select_sock -EXPORT_SYMBOL vmlinux 0x8d229151 snd_pcm_hw_constraint_step +EXPORT_SYMBOL vmlinux 0x8ce51ab1 init_net +EXPORT_SYMBOL vmlinux 0x8ceaca1a netif_carrier_on +EXPORT_SYMBOL vmlinux 0x8cf4da2f sk_mc_loop +EXPORT_SYMBOL vmlinux 0x8cfc8b8e padata_free +EXPORT_SYMBOL vmlinux 0x8cffcd27 pskb_trim_rcsum_slow +EXPORT_SYMBOL vmlinux 0x8d171d15 vfs_link +EXPORT_SYMBOL vmlinux 0x8d28f6d0 backlight_device_set_brightness +EXPORT_SYMBOL vmlinux 0x8d2bb5d2 __mark_inode_dirty +EXPORT_SYMBOL vmlinux 0x8d309d35 seg6_hmac_net_init +EXPORT_SYMBOL vmlinux 0x8d402f66 fqdir_exit EXPORT_SYMBOL vmlinux 0x8d4112df qcom_scm_mem_protect_video_var -EXPORT_SYMBOL vmlinux 0x8d43087b inet_csk_reqsk_queue_drop -EXPORT_SYMBOL vmlinux 0x8d4a8986 mipi_dsi_dcs_nop EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq -EXPORT_SYMBOL vmlinux 0x8d5de3b6 dm_io -EXPORT_SYMBOL vmlinux 0x8d6e973a of_mdio_find_device EXPORT_SYMBOL vmlinux 0x8d73278e hex_asc_upper -EXPORT_SYMBOL vmlinux 0x8d7578b6 snd_pcm_hw_constraint_integer -EXPORT_SYMBOL vmlinux 0x8d8679ac vfs_get_fsid -EXPORT_SYMBOL vmlinux 0x8da9058d msm_pinctrl_probe -EXPORT_SYMBOL vmlinux 0x8db74e61 netlink_capable -EXPORT_SYMBOL vmlinux 0x8db91c05 scsi_dma_map -EXPORT_SYMBOL vmlinux 0x8dc451b6 sk_mc_loop -EXPORT_SYMBOL vmlinux 0x8dc7650a generic_cont_expand_simple -EXPORT_SYMBOL vmlinux 0x8dca5be9 eth_validate_addr -EXPORT_SYMBOL vmlinux 0x8dd2c450 con_is_bound +EXPORT_SYMBOL vmlinux 0x8d8141aa page_get_link +EXPORT_SYMBOL vmlinux 0x8d8a60ab pci_request_selected_regions_exclusive +EXPORT_SYMBOL vmlinux 0x8da6f415 md_reload_sb +EXPORT_SYMBOL vmlinux 0x8db3db5b inet_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0x8db6572a of_graph_parse_endpoint +EXPORT_SYMBOL vmlinux 0x8dc0674e is_nvdimm_bus_locked EXPORT_SYMBOL vmlinux 0x8ddd8aad schedule_timeout -EXPORT_SYMBOL vmlinux 0x8dedef5c unpin_user_page_range_dirty_lock +EXPORT_SYMBOL vmlinux 0x8df03f6a make_kprojid EXPORT_SYMBOL vmlinux 0x8df3789f snd_oss_info_register EXPORT_SYMBOL vmlinux 0x8df4afd9 qe_put_snum -EXPORT_SYMBOL vmlinux 0x8df5037c napi_complete_done -EXPORT_SYMBOL vmlinux 0x8df8c50b __napi_schedule +EXPORT_SYMBOL vmlinux 0x8df7b7c8 dev_change_proto_down EXPORT_SYMBOL vmlinux 0x8df9dd10 guid_null EXPORT_SYMBOL vmlinux 0x8dfefc0d kvmalloc_node +EXPORT_SYMBOL vmlinux 0x8e0a2109 seq_dentry +EXPORT_SYMBOL vmlinux 0x8e22cdd9 xfrm_input_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x8e27e672 dev_close +EXPORT_SYMBOL vmlinux 0x8e2df49b xp_can_alloc +EXPORT_SYMBOL vmlinux 0x8e3e22b8 sock_rfree EXPORT_SYMBOL vmlinux 0x8e4c60a3 cpm_muram_dma +EXPORT_SYMBOL vmlinux 0x8e5c766d cros_ec_get_host_event +EXPORT_SYMBOL vmlinux 0x8e67b08d pci_scan_root_bus +EXPORT_SYMBOL vmlinux 0x8e7f9c10 sock_pfree +EXPORT_SYMBOL vmlinux 0x8e81355a max8925_set_bits +EXPORT_SYMBOL vmlinux 0x8e830915 request_firmware EXPORT_SYMBOL vmlinux 0x8e865d3c arm_delay_ops EXPORT_SYMBOL vmlinux 0x8e876807 rps_needed +EXPORT_SYMBOL vmlinux 0x8e90c23e vc_cons EXPORT_SYMBOL vmlinux 0x8e93bd24 security_secctx_to_secid -EXPORT_SYMBOL vmlinux 0x8e93c563 xfrm_policy_destroy -EXPORT_SYMBOL vmlinux 0x8ea94124 ioc_lookup_icq -EXPORT_SYMBOL vmlinux 0x8eb10131 inet_frag_destroy +EXPORT_SYMBOL vmlinux 0x8e9d80bc sock_wfree +EXPORT_SYMBOL vmlinux 0x8eb22629 dma_sync_single_for_device +EXPORT_SYMBOL vmlinux 0x8eba4511 redraw_screen +EXPORT_SYMBOL vmlinux 0x8ebd3a97 gro_find_complete_by_type EXPORT_SYMBOL vmlinux 0x8ecbb3b8 nand_check_erased_ecc_chunk -EXPORT_SYMBOL vmlinux 0x8ed3ffca security_sk_classify_flow +EXPORT_SYMBOL vmlinux 0x8ecd0413 tcp_time_wait EXPORT_SYMBOL vmlinux 0x8edbfffb hdmi_spd_infoframe_pack_only EXPORT_SYMBOL vmlinux 0x8f01afd6 twl6030_interrupt_mask -EXPORT_SYMBOL vmlinux 0x8f03896e snd_pcm_suspend_all -EXPORT_SYMBOL vmlinux 0x8f07ad7d dev_uc_add +EXPORT_SYMBOL vmlinux 0x8f06f9c2 pci_scan_bus +EXPORT_SYMBOL vmlinux 0x8f0c442b sock_bind_add +EXPORT_SYMBOL vmlinux 0x8f1165ee pps_lookup_dev EXPORT_SYMBOL vmlinux 0x8f22a027 __traceiter_dma_fence_emit -EXPORT_SYMBOL vmlinux 0x8f26d396 migrate_page +EXPORT_SYMBOL vmlinux 0x8f4174bb kernel_write +EXPORT_SYMBOL vmlinux 0x8f483469 get_tree_bdev +EXPORT_SYMBOL vmlinux 0x8f4c188c udp_seq_stop EXPORT_SYMBOL vmlinux 0x8f595b11 snd_major -EXPORT_SYMBOL vmlinux 0x8f64adab put_cmsg_scm_timestamping64 EXPORT_SYMBOL vmlinux 0x8f678b07 __stack_chk_guard -EXPORT_SYMBOL vmlinux 0x8f84449d __cleancache_put_page +EXPORT_SYMBOL vmlinux 0x8f6fe2b0 fuse_dequeue_forget EXPORT_SYMBOL vmlinux 0x8f8f657f bsearch EXPORT_SYMBOL vmlinux 0x8f996a30 ethtool_convert_legacy_u32_to_link_mode -EXPORT_SYMBOL vmlinux 0x8fa06004 xfrm_state_delete_tunnel -EXPORT_SYMBOL vmlinux 0x8fb8dced devm_iounmap -EXPORT_SYMBOL vmlinux 0x8fba2e90 devfreq_register_notifier +EXPORT_SYMBOL vmlinux 0x8fa811d5 inet_proto_csum_replace_by_diff +EXPORT_SYMBOL vmlinux 0x8fb85104 tcp_sock_set_nodelay +EXPORT_SYMBOL vmlinux 0x8fc6a4a9 nand_ecc_prepare_io_req EXPORT_SYMBOL vmlinux 0x8fd180e7 kernel_neon_begin -EXPORT_SYMBOL vmlinux 0x8fd71ddc sock_efree -EXPORT_SYMBOL vmlinux 0x8fd898e8 nand_write_page_raw -EXPORT_SYMBOL vmlinux 0x8fddbc50 __tty_insert_flip_char +EXPORT_SYMBOL vmlinux 0x8fd73380 kernel_read +EXPORT_SYMBOL vmlinux 0x8fda58e8 devm_release_resource EXPORT_SYMBOL vmlinux 0x8fe35457 xxh32_update -EXPORT_SYMBOL vmlinux 0x8ff165f1 path_get +EXPORT_SYMBOL vmlinux 0x8fe813f5 rproc_coredump_set_elf_info +EXPORT_SYMBOL vmlinux 0x8ff63cda cfb_imageblit EXPORT_SYMBOL vmlinux 0x8ff89ed0 seg6_hmac_exit -EXPORT_SYMBOL vmlinux 0x8ffd6628 pci_alloc_host_bridge EXPORT_SYMBOL vmlinux 0x90006be6 dm_kcopyd_client_flush -EXPORT_SYMBOL vmlinux 0x9010a2e7 phy_device_create -EXPORT_SYMBOL vmlinux 0x9018a271 blk_queue_segment_boundary -EXPORT_SYMBOL vmlinux 0x90212f9e msm_pinctrl_remove -EXPORT_SYMBOL vmlinux 0x90232db9 netdev_class_create_file_ns EXPORT_SYMBOL vmlinux 0x902d8722 vme_slave_get -EXPORT_SYMBOL vmlinux 0x9047400a snd_sgbuf_get_chunk_size -EXPORT_SYMBOL vmlinux 0x905db5d3 mmc_erase -EXPORT_SYMBOL vmlinux 0x906187dd console_stop -EXPORT_SYMBOL vmlinux 0x90682c27 ppp_dev_name -EXPORT_SYMBOL vmlinux 0x906894c2 t10_pi_type1_crc +EXPORT_SYMBOL vmlinux 0x9054aa12 get_unmapped_area EXPORT_SYMBOL vmlinux 0x906f5252 dma_fence_enable_sw_signaling -EXPORT_SYMBOL vmlinux 0x9081f202 ethtool_op_get_ts_info -EXPORT_SYMBOL vmlinux 0x9092197f xfrm_stateonly_find +EXPORT_SYMBOL vmlinux 0x90799f83 fib_notifier_ops_register +EXPORT_SYMBOL vmlinux 0x907a9457 inet_stream_ops EXPORT_SYMBOL vmlinux 0x909332ca register_sysctl -EXPORT_SYMBOL vmlinux 0x9096fedd nand_ecc_init_ctx -EXPORT_SYMBOL vmlinux 0x90987161 blk_rq_map_integrity_sg -EXPORT_SYMBOL vmlinux 0x90b1296e vga_put -EXPORT_SYMBOL vmlinux 0x90ba69df nand_ecc_sw_hamming_calculate -EXPORT_SYMBOL vmlinux 0x90bacc87 jbd2_journal_set_triggers -EXPORT_SYMBOL vmlinux 0x90c47ed8 snd_pcm_hw_refine -EXPORT_SYMBOL vmlinux 0x90c8be11 tcp_rcv_state_process -EXPORT_SYMBOL vmlinux 0x90ec140d phy_connect_direct -EXPORT_SYMBOL vmlinux 0x9113c191 devm_devfreq_register_opp_notifier -EXPORT_SYMBOL vmlinux 0x9129f1f1 vmf_insert_pfn +EXPORT_SYMBOL vmlinux 0x90dc6acd __mmap_lock_do_trace_acquire_returned +EXPORT_SYMBOL vmlinux 0x90df2dff __fib6_flush_trees +EXPORT_SYMBOL vmlinux 0x90e119ab param_set_copystring +EXPORT_SYMBOL vmlinux 0x90e4c15a tcp_mtu_to_mss +EXPORT_SYMBOL vmlinux 0x90e6ce34 jbd2_journal_force_commit_nested +EXPORT_SYMBOL vmlinux 0x90ef0508 serio_interrupt +EXPORT_SYMBOL vmlinux 0x9103648e nand_ecc_sw_hamming_get_engine +EXPORT_SYMBOL vmlinux 0x9118592e xsk_set_rx_need_wakeup EXPORT_SYMBOL vmlinux 0x9135dba6 wait_for_completion_interruptible_timeout -EXPORT_SYMBOL vmlinux 0x913c7cad netdev_has_upper_dev_all_rcu -EXPORT_SYMBOL vmlinux 0x913d4bbc md_wait_for_blocked_rdev -EXPORT_SYMBOL vmlinux 0x9146dc5a of_find_backlight_by_node -EXPORT_SYMBOL vmlinux 0x9155b1e1 flow_rule_match_vlan -EXPORT_SYMBOL vmlinux 0x916a593b mmc_card_is_blockaddr -EXPORT_SYMBOL vmlinux 0x917c400d input_set_poll_interval +EXPORT_SYMBOL vmlinux 0x91455845 phy_set_max_speed EXPORT_SYMBOL vmlinux 0x91872199 _page_poisoning_enabled EXPORT_SYMBOL vmlinux 0x919029aa __readwrite_bug -EXPORT_SYMBOL vmlinux 0x919463e6 of_pci_range_to_resource +EXPORT_SYMBOL vmlinux 0x9195e84f vme_bus_type EXPORT_SYMBOL vmlinux 0x919c58f3 __clzsi2 +EXPORT_SYMBOL vmlinux 0x919ca250 notify_change EXPORT_SYMBOL vmlinux 0x91a488ac __netdev_alloc_frag_align -EXPORT_SYMBOL vmlinux 0x91a5ee3a generic_key_instantiate EXPORT_SYMBOL vmlinux 0x91a7b1da qdisc_class_hash_remove EXPORT_SYMBOL vmlinux 0x91a9c232 __siphash_unaligned +EXPORT_SYMBOL vmlinux 0x91beb88e cad_pid +EXPORT_SYMBOL vmlinux 0x91bfce16 phy_start_cable_test_tdr EXPORT_SYMBOL vmlinux 0x91c0980e icst_hz -EXPORT_SYMBOL vmlinux 0x91d6ea4c of_phy_get_and_connect +EXPORT_SYMBOL vmlinux 0x91ce5687 keyring_clear +EXPORT_SYMBOL vmlinux 0x91d5ec5f phy_read_mmd +EXPORT_SYMBOL vmlinux 0x91ef9855 of_find_node_with_property +EXPORT_SYMBOL vmlinux 0x91f0d423 vlan_filter_drop_vids +EXPORT_SYMBOL vmlinux 0x91f5370e snd_jack_new EXPORT_SYMBOL vmlinux 0x91f68ea1 __hw_addr_sync -EXPORT_SYMBOL vmlinux 0x91f73f3b blkdev_issue_zeroout -EXPORT_SYMBOL vmlinux 0x9206fc98 skb_copy_bits -EXPORT_SYMBOL vmlinux 0x9210f9f3 rproc_coredump_set_elf_info -EXPORT_SYMBOL vmlinux 0x9213e4eb __frontswap_test -EXPORT_SYMBOL vmlinux 0x92175801 igrab -EXPORT_SYMBOL vmlinux 0x9219bea5 device_get_mac_address +EXPORT_SYMBOL vmlinux 0x92038f1f clear_page_dirty_for_io +EXPORT_SYMBOL vmlinux 0x92143b03 mmc_gpiod_request_cd +EXPORT_SYMBOL vmlinux 0x92156902 snd_info_register EXPORT_SYMBOL vmlinux 0x921a7b9e __tracepoint_kmem_cache_alloc EXPORT_SYMBOL vmlinux 0x921b07b1 __cpu_online_mask -EXPORT_SYMBOL vmlinux 0x922d5dd7 phy_attached_print +EXPORT_SYMBOL vmlinux 0x922e91c8 noop_llseek EXPORT_SYMBOL vmlinux 0x922f45a6 __bitmap_clear -EXPORT_SYMBOL vmlinux 0x9235af7c neigh_sysctl_register +EXPORT_SYMBOL vmlinux 0x92338f7a genphy_update_link +EXPORT_SYMBOL vmlinux 0x92365b8c md_reap_sync_thread EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get -EXPORT_SYMBOL vmlinux 0x9244e6a7 jbd2_journal_unlock_updates -EXPORT_SYMBOL vmlinux 0x924960fb nand_scan_with_ids -EXPORT_SYMBOL vmlinux 0x925e2a3a register_netdev -EXPORT_SYMBOL vmlinux 0x926499e4 netif_set_real_num_rx_queues -EXPORT_SYMBOL vmlinux 0x9271f7cf netpoll_parse_options -EXPORT_SYMBOL vmlinux 0x92781e3c unlock_new_inode -EXPORT_SYMBOL vmlinux 0x92909301 input_reset_device +EXPORT_SYMBOL vmlinux 0x923d0123 lease_get_mtime +EXPORT_SYMBOL vmlinux 0x92439a2b security_sb_set_mnt_opts +EXPORT_SYMBOL vmlinux 0x9248eee3 blk_mq_stop_hw_queues +EXPORT_SYMBOL vmlinux 0x9258ef48 scsi_device_resume +EXPORT_SYMBOL vmlinux 0x925b432b dev_pm_opp_unregister_notifier +EXPORT_SYMBOL vmlinux 0x925dc4a9 phy_write_mmd +EXPORT_SYMBOL vmlinux 0x9262640d qdisc_watchdog_schedule_range_ns +EXPORT_SYMBOL vmlinux 0x928b3f4e param_ops_charp +EXPORT_SYMBOL vmlinux 0x928fd5ac __devm_release_region EXPORT_SYMBOL vmlinux 0x92997ed8 _printk -EXPORT_SYMBOL vmlinux 0x929a3125 param_set_copystring -EXPORT_SYMBOL vmlinux 0x92a182d3 show_init_ipc_ns -EXPORT_SYMBOL vmlinux 0x92a5f9b7 __netdev_alloc_skb -EXPORT_SYMBOL vmlinux 0x92a71d95 locks_init_lock +EXPORT_SYMBOL vmlinux 0x92aaddfd tcf_classify +EXPORT_SYMBOL vmlinux 0x92adcf00 tcp_sync_mss EXPORT_SYMBOL vmlinux 0x92b9b180 slash_name +EXPORT_SYMBOL vmlinux 0x92d0aa8e snd_ctl_add EXPORT_SYMBOL vmlinux 0x92d465aa hdmi_infoframe_unpack EXPORT_SYMBOL vmlinux 0x92d5838e request_threaded_irq -EXPORT_SYMBOL vmlinux 0x92d697f9 __nd_driver_register -EXPORT_SYMBOL vmlinux 0x92d7f8a6 nvdimm_namespace_disk_name -EXPORT_SYMBOL vmlinux 0x92da7514 qdisc_tree_reduce_backlog EXPORT_SYMBOL vmlinux 0x92dc3f16 radix_tree_iter_resume +EXPORT_SYMBOL vmlinux 0x92e75941 __blk_mq_alloc_disk EXPORT_SYMBOL vmlinux 0x92ec510d jiffies64_to_msecs -EXPORT_SYMBOL vmlinux 0x92ecba96 qdisc_offload_graft_helper EXPORT_SYMBOL vmlinux 0x92fa5abb vme_lm_detach -EXPORT_SYMBOL vmlinux 0x92fb9f00 locks_lock_inode_wait -EXPORT_SYMBOL vmlinux 0x92fe5a64 __ip_options_compile +EXPORT_SYMBOL vmlinux 0x93032d08 serio_rescan +EXPORT_SYMBOL vmlinux 0x9303ab15 snd_pcm_create_iec958_consumer EXPORT_SYMBOL vmlinux 0x9305f8e6 cpufreq_get -EXPORT_SYMBOL vmlinux 0x9318bce1 mdiobus_write -EXPORT_SYMBOL vmlinux 0x93202c0a ppp_unit_number EXPORT_SYMBOL vmlinux 0x93215e1d __kfifo_skip_r -EXPORT_SYMBOL vmlinux 0x932cdbb5 sockfd_lookup -EXPORT_SYMBOL vmlinux 0x9330ddea inet_add_protocol -EXPORT_SYMBOL vmlinux 0x9333fa98 __blk_rq_map_sg -EXPORT_SYMBOL vmlinux 0x9347662a netlink_rcv_skb -EXPORT_SYMBOL vmlinux 0x93515429 rproc_elf_find_loaded_rsc_table -EXPORT_SYMBOL vmlinux 0x93592a85 i2c_register_driver +EXPORT_SYMBOL vmlinux 0x9347a8ce of_find_backlight_by_node +EXPORT_SYMBOL vmlinux 0x934fd39e nd_region_release_lane +EXPORT_SYMBOL vmlinux 0x9353f42f dquot_operations +EXPORT_SYMBOL vmlinux 0x935b55ee pcie_capability_read_dword +EXPORT_SYMBOL vmlinux 0x9371c3bc fscrypt_fname_disk_to_usr EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid -EXPORT_SYMBOL vmlinux 0x937fa34d write_one_page +EXPORT_SYMBOL vmlinux 0x93938491 tcp_filter EXPORT_SYMBOL vmlinux 0x93a6e0b2 io_schedule -EXPORT_SYMBOL vmlinux 0x93aeb9f9 dquot_get_state +EXPORT_SYMBOL vmlinux 0x93afe112 wait_on_page_bit +EXPORT_SYMBOL vmlinux 0x93b23a86 __getblk_gfp EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier -EXPORT_SYMBOL vmlinux 0x93b78eb5 fs_param_is_s32 -EXPORT_SYMBOL vmlinux 0x93cf2d63 __sk_mem_raise_allocated -EXPORT_SYMBOL vmlinux 0x93e08111 neigh_ifdown -EXPORT_SYMBOL vmlinux 0x93f38672 forget_cached_acl -EXPORT_SYMBOL vmlinux 0x93f8600d register_sound_mixer +EXPORT_SYMBOL vmlinux 0x93bffbe0 scsi_block_requests +EXPORT_SYMBOL vmlinux 0x93c4eef3 mark_buffer_async_write +EXPORT_SYMBOL vmlinux 0x93cbfdae inetdev_by_index +EXPORT_SYMBOL vmlinux 0x93dd90ce tcp_sock_set_quickack +EXPORT_SYMBOL vmlinux 0x93e08787 rawv6_mh_filter_register +EXPORT_SYMBOL vmlinux 0x93efca6e xsk_clear_rx_need_wakeup +EXPORT_SYMBOL vmlinux 0x93faf21a tcp_v4_do_rcv EXPORT_SYMBOL vmlinux 0x94098ff8 snd_interval_list -EXPORT_SYMBOL vmlinux 0x941cfc51 init_special_inode -EXPORT_SYMBOL vmlinux 0x9422f9dd rawv6_mh_filter_unregister +EXPORT_SYMBOL vmlinux 0x942f81f4 jbd2_journal_stop +EXPORT_SYMBOL vmlinux 0x94316b48 jbd2_journal_check_available_features +EXPORT_SYMBOL vmlinux 0x943d074d sock_alloc_file EXPORT_SYMBOL vmlinux 0x943dc8aa crc32_be -EXPORT_SYMBOL vmlinux 0x943e1005 __generic_file_fsync +EXPORT_SYMBOL vmlinux 0x9440dbb8 jbd2_journal_restart EXPORT_SYMBOL vmlinux 0x944a564d is_console_locked -EXPORT_SYMBOL vmlinux 0x9465eb96 sock_enable_timestamps -EXPORT_SYMBOL vmlinux 0x947dc88e nvdimm_namespace_common_probe +EXPORT_SYMBOL vmlinux 0x9489de38 pci_disable_msi +EXPORT_SYMBOL vmlinux 0x9489dee4 tcf_idr_search EXPORT_SYMBOL vmlinux 0x9489ff36 dma_fence_signal_timestamp_locked -EXPORT_SYMBOL vmlinux 0x9490a014 kernel_connect -EXPORT_SYMBOL vmlinux 0x9491b30d fwnode_get_mac_address -EXPORT_SYMBOL vmlinux 0x9491bf24 proc_set_user EXPORT_SYMBOL vmlinux 0x94961283 vunmap +EXPORT_SYMBOL vmlinux 0x94b9cdf4 rpmh_invalidate EXPORT_SYMBOL vmlinux 0x94bf03ca utf8_to_utf32 -EXPORT_SYMBOL vmlinux 0x94c2e023 i2c_verify_client -EXPORT_SYMBOL vmlinux 0x94c3254f get_user_pages +EXPORT_SYMBOL vmlinux 0x94c31467 rdmacg_uncharge EXPORT_SYMBOL vmlinux 0x94e50ad4 call_fib_notifier -EXPORT_SYMBOL vmlinux 0x94e7030b sync_filesystem -EXPORT_SYMBOL vmlinux 0x94e7661b alloc_skb_with_frags -EXPORT_SYMBOL vmlinux 0x94f19e66 nand_ecc_sw_bch_init_ctx -EXPORT_SYMBOL vmlinux 0x94fd95ba param_ops_charp +EXPORT_SYMBOL vmlinux 0x94fadd8d devm_alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0x94fccac6 param_ops_invbool EXPORT_SYMBOL vmlinux 0x9507c90f copy_fsxattr_to_user -EXPORT_SYMBOL vmlinux 0x950ce2bd scsi_track_queue_full -EXPORT_SYMBOL vmlinux 0x951912d9 skb_checksum_help -EXPORT_SYMBOL vmlinux 0x951e53c1 ps2_sliced_command -EXPORT_SYMBOL vmlinux 0x951e70d9 tcf_exts_terse_dump -EXPORT_SYMBOL vmlinux 0x9529ea8e get_tz_trend -EXPORT_SYMBOL vmlinux 0x9532b9b8 jbd2_journal_lock_updates +EXPORT_SYMBOL vmlinux 0x9519728d open_exec +EXPORT_SYMBOL vmlinux 0x9528cc1f tty_port_lower_dtr_rts EXPORT_SYMBOL vmlinux 0x95368d33 memcg_kmem_enabled_key -EXPORT_SYMBOL vmlinux 0x95395b79 of_phy_is_fixed_link -EXPORT_SYMBOL vmlinux 0x953ffd27 mem_map +EXPORT_SYMBOL vmlinux 0x95390e70 skb_copy_and_csum_datagram_msg +EXPORT_SYMBOL vmlinux 0x9545788c pm860x_bulk_write EXPORT_SYMBOL vmlinux 0x954f099c idr_preload -EXPORT_SYMBOL vmlinux 0x9559678c genphy_update_link -EXPORT_SYMBOL vmlinux 0x955a6c74 __scsi_iterate_devices -EXPORT_SYMBOL vmlinux 0x956f8584 rtnl_notify -EXPORT_SYMBOL vmlinux 0x957c06c7 delete_from_page_cache -EXPORT_SYMBOL vmlinux 0x95a75f90 n_tty_ioctl_helper -EXPORT_SYMBOL vmlinux 0x95bceef8 param_set_byte -EXPORT_SYMBOL vmlinux 0x95c74b75 truncate_pagecache +EXPORT_SYMBOL vmlinux 0x954f562a inet_csk_clear_xmit_timers +EXPORT_SYMBOL vmlinux 0x955c8623 snd_pcm_hw_rule_noresample +EXPORT_SYMBOL vmlinux 0x957c6e48 inet_add_offload +EXPORT_SYMBOL vmlinux 0x957cfa6f netdev_lower_get_next +EXPORT_SYMBOL vmlinux 0x95a72a62 ip6_fraglist_init +EXPORT_SYMBOL vmlinux 0x95b651f9 flow_rule_match_ipv4_addrs +EXPORT_SYMBOL vmlinux 0x95b89e5a filemap_page_mkwrite +EXPORT_SYMBOL vmlinux 0x95bbe0cc tcp_v4_md5_lookup EXPORT_SYMBOL vmlinux 0x95dbe078 __get_user_2 +EXPORT_SYMBOL vmlinux 0x95e5bef7 udp_lib_rehash EXPORT_SYMBOL vmlinux 0x95e5ca74 __tracepoint_kmem_cache_alloc_node -EXPORT_SYMBOL vmlinux 0x95e9c7e7 scsi_partsize -EXPORT_SYMBOL vmlinux 0x960c524b phy_trigger_machine +EXPORT_SYMBOL vmlinux 0x95ef58a4 __module_get +EXPORT_SYMBOL vmlinux 0x95f64146 phy_get_internal_delay +EXPORT_SYMBOL vmlinux 0x9602a09d bprm_change_interp +EXPORT_SYMBOL vmlinux 0x960b01cc devm_pci_remap_cfg_resource EXPORT_SYMBOL vmlinux 0x9618ede0 mutex_unlock EXPORT_SYMBOL vmlinux 0x962c4977 clkdev_add -EXPORT_SYMBOL vmlinux 0x963541fd filemap_check_errors +EXPORT_SYMBOL vmlinux 0x963ca91b inet_sendpage +EXPORT_SYMBOL vmlinux 0x964154f8 seq_read_iter +EXPORT_SYMBOL vmlinux 0x96446a18 bdev_read_only EXPORT_SYMBOL vmlinux 0x9645ed0b pgprot_user -EXPORT_SYMBOL vmlinux 0x96481712 blk_mq_delay_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x9650c30c param_set_int EXPORT_SYMBOL vmlinux 0x96573b80 __kfifo_dma_in_finish_r -EXPORT_SYMBOL vmlinux 0x96756e85 end_buffer_write_sync -EXPORT_SYMBOL vmlinux 0x967e3c8d padata_set_cpumask +EXPORT_SYMBOL vmlinux 0x9657455e sock_no_shutdown +EXPORT_SYMBOL vmlinux 0x9657aa24 snd_component_add +EXPORT_SYMBOL vmlinux 0x96762480 sock_recv_errqueue +EXPORT_SYMBOL vmlinux 0x96781d62 d_hash_and_lookup +EXPORT_SYMBOL vmlinux 0x96863ef4 fault_in_iov_iter_readable EXPORT_SYMBOL vmlinux 0x96898769 sysfs_format_mac -EXPORT_SYMBOL vmlinux 0x968bf473 input_enable_softrepeat -EXPORT_SYMBOL vmlinux 0x969819d0 rawnand_dt_parse_gpio_cs -EXPORT_SYMBOL vmlinux 0x969a8474 of_cpu_node_to_id -EXPORT_SYMBOL vmlinux 0x96a13ea6 __getblk_gfp -EXPORT_SYMBOL vmlinux 0x96b189b7 bio_advance +EXPORT_SYMBOL vmlinux 0x969024a8 skb_dump +EXPORT_SYMBOL vmlinux 0x9692d810 devm_rproc_alloc +EXPORT_SYMBOL vmlinux 0x969cb8f2 tty_port_tty_set +EXPORT_SYMBOL vmlinux 0x96ba06aa devm_clk_put EXPORT_SYMBOL vmlinux 0x96c17136 fb_var_to_videomode -EXPORT_SYMBOL vmlinux 0x96c83a33 of_device_is_big_endian EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string -EXPORT_SYMBOL vmlinux 0x96daaa17 dev_loopback_xmit -EXPORT_SYMBOL vmlinux 0x96dd5e9e register_mtd_chip_driver -EXPORT_SYMBOL vmlinux 0x96dfa005 crypto_sha512_finup -EXPORT_SYMBOL vmlinux 0x96e533fb sock_recvmsg -EXPORT_SYMBOL vmlinux 0x96fb621f genphy_c37_read_status -EXPORT_SYMBOL vmlinux 0x9704b6e7 nvdimm_namespace_locked +EXPORT_SYMBOL vmlinux 0x96d33262 vfs_path_lookup +EXPORT_SYMBOL vmlinux 0x96d5033d skb_ext_add +EXPORT_SYMBOL vmlinux 0x9700c681 security_inode_init_security EXPORT_SYMBOL vmlinux 0x9709dbc5 current_work -EXPORT_SYMBOL vmlinux 0x970b001f udp_ioctl +EXPORT_SYMBOL vmlinux 0x970ea1ee zero_fill_bio EXPORT_SYMBOL vmlinux 0x97106714 memdup_user_nul -EXPORT_SYMBOL vmlinux 0x97192bf1 file_fdatawait_range +EXPORT_SYMBOL vmlinux 0x9720f6c5 ethtool_op_get_link +EXPORT_SYMBOL vmlinux 0x9722dcec amba_release_regions +EXPORT_SYMBOL vmlinux 0x97244722 clear_nlink EXPORT_SYMBOL vmlinux 0x97255bdf strlen +EXPORT_SYMBOL vmlinux 0x9726fc86 devfreq_register_notifier +EXPORT_SYMBOL vmlinux 0x973086fd udp_lib_unhash +EXPORT_SYMBOL vmlinux 0x973ac439 uart_register_driver EXPORT_SYMBOL vmlinux 0x974d2ff1 resource_list_create_entry -EXPORT_SYMBOL vmlinux 0x975c3c85 nd_btt_probe EXPORT_SYMBOL vmlinux 0x975f1f56 dma_fence_allocate_private_stub -EXPORT_SYMBOL vmlinux 0x9769cd65 dev_deactivate -EXPORT_SYMBOL vmlinux 0x978d9cc7 snd_pcm_new_stream EXPORT_SYMBOL vmlinux 0x97934ecf del_timer_sync -EXPORT_SYMBOL vmlinux 0x979541e2 sock_set_reuseport -EXPORT_SYMBOL vmlinux 0x979e53c0 tty_port_close_start +EXPORT_SYMBOL vmlinux 0x97955a57 pcie_capability_write_word +EXPORT_SYMBOL vmlinux 0x97a009f3 i2c_verify_client EXPORT_SYMBOL vmlinux 0x97adb487 utf8s_to_utf16s -EXPORT_SYMBOL vmlinux 0x97b69c30 jbd2_journal_put_journal_head EXPORT_SYMBOL vmlinux 0x97bdfa60 scsi_dev_info_remove_list -EXPORT_SYMBOL vmlinux 0x97c1bcd4 elv_rb_former_request -EXPORT_SYMBOL vmlinux 0x97cc11ff blkdev_issue_write_same -EXPORT_SYMBOL vmlinux 0x97dad56e phy_support_asym_pause -EXPORT_SYMBOL vmlinux 0x97dc183d blk_mq_init_queue -EXPORT_SYMBOL vmlinux 0x97e8f62f netif_set_xps_queue -EXPORT_SYMBOL vmlinux 0x97f41f7e try_lookup_one_len -EXPORT_SYMBOL vmlinux 0x97f5485b free_buffer_head -EXPORT_SYMBOL vmlinux 0x97fec6c9 nand_monolithic_read_page_raw -EXPORT_SYMBOL vmlinux 0x9818a739 xp_free -EXPORT_SYMBOL vmlinux 0x9827305e ip_route_input_noref +EXPORT_SYMBOL vmlinux 0x97e22694 snd_ctl_notify_one +EXPORT_SYMBOL vmlinux 0x97f4dd8e fscrypt_zeroout_range +EXPORT_SYMBOL vmlinux 0x97f69471 blk_queue_bounce_limit +EXPORT_SYMBOL vmlinux 0x982ebca9 vma_set_file EXPORT_SYMBOL vmlinux 0x983ac031 remove_wait_queue -EXPORT_SYMBOL vmlinux 0x984aa315 md_bitmap_cond_end_sync -EXPORT_SYMBOL vmlinux 0x984b78f2 dquot_quotactl_sysfile_ops +EXPORT_SYMBOL vmlinux 0x983db7de netdev_name_node_alt_destroy +EXPORT_SYMBOL vmlinux 0x98514daf __hw_addr_sync_dev EXPORT_SYMBOL vmlinux 0x9858f589 __tracepoint_spi_transfer_start -EXPORT_SYMBOL vmlinux 0x985da66a __devm_release_region -EXPORT_SYMBOL vmlinux 0x9875568d audit_log_start +EXPORT_SYMBOL vmlinux 0x9872a002 lock_page_memcg +EXPORT_SYMBOL vmlinux 0x987397c4 pm8606_osc_enable EXPORT_SYMBOL vmlinux 0x987c11c7 __pv_phys_pfn_offset +EXPORT_SYMBOL vmlinux 0x987f6b98 snd_pcm_hw_constraint_list EXPORT_SYMBOL vmlinux 0x98832da8 utf8ncursor -EXPORT_SYMBOL vmlinux 0x988476a1 security_sock_graft +EXPORT_SYMBOL vmlinux 0x988937d2 tcp_gro_complete +EXPORT_SYMBOL vmlinux 0x9895f4df _dev_printk +EXPORT_SYMBOL vmlinux 0x989e569d ip_queue_xmit EXPORT_SYMBOL vmlinux 0x98a21b5a neigh_proc_dointvec_ms_jiffies -EXPORT_SYMBOL vmlinux 0x98b1b12d flow_rule_match_enc_ports -EXPORT_SYMBOL vmlinux 0x98b8abb0 nd_dev_to_uuid -EXPORT_SYMBOL vmlinux 0x98bb3888 single_open +EXPORT_SYMBOL vmlinux 0x98a9bbe7 cdrom_release +EXPORT_SYMBOL vmlinux 0x98c6c35e scsi_get_host_dev EXPORT_SYMBOL vmlinux 0x98c89ade security_xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x98d25245 __mdiobus_write +EXPORT_SYMBOL vmlinux 0x98d5bdac freeze_super EXPORT_SYMBOL vmlinux 0x98e508ef ignore_console_lock_warning -EXPORT_SYMBOL vmlinux 0x98ef93ea __scm_send -EXPORT_SYMBOL vmlinux 0x98f74d21 kernel_sendpage_locked -EXPORT_SYMBOL vmlinux 0x98ff30d7 scsi_test_unit_ready +EXPORT_SYMBOL vmlinux 0x98ff0a3d tc_setup_cb_call EXPORT_SYMBOL vmlinux 0x99094fb2 qcom_scm_is_available -EXPORT_SYMBOL vmlinux 0x991979d4 xsk_tx_peek_release_desc_batch -EXPORT_SYMBOL vmlinux 0x991dd372 km_report -EXPORT_SYMBOL vmlinux 0x99311677 unlock_rename +EXPORT_SYMBOL vmlinux 0x99096ce1 pci_release_regions +EXPORT_SYMBOL vmlinux 0x991db134 iov_iter_discard +EXPORT_SYMBOL vmlinux 0x992619cf nobh_truncate_page EXPORT_SYMBOL vmlinux 0x9931f8c9 qcom_scm_lmh_dcvsh_available +EXPORT_SYMBOL vmlinux 0x9938436d unregister_netdevice_notifier_dev_net EXPORT_SYMBOL vmlinux 0x9939eba0 backlight_unregister_notifier EXPORT_SYMBOL vmlinux 0x993b03df percpu_counter_add_batch +EXPORT_SYMBOL vmlinux 0x99418c40 pcim_enable_device EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable -EXPORT_SYMBOL vmlinux 0x99654a0a _snd_pcm_lib_alloc_vmalloc_buffer EXPORT_SYMBOL vmlinux 0x996829ea swake_up_all -EXPORT_SYMBOL vmlinux 0x997092a0 dquot_alloc_inode -EXPORT_SYMBOL vmlinux 0x99798ba1 __dquot_free_space -EXPORT_SYMBOL vmlinux 0x997a4fca devfreq_resume_device -EXPORT_SYMBOL vmlinux 0x997e85b3 dm_table_get_md +EXPORT_SYMBOL vmlinux 0x996f81d3 setattr_prepare +EXPORT_SYMBOL vmlinux 0x9976491e simple_lookup +EXPORT_SYMBOL vmlinux 0x999a5377 ps2_handle_ack EXPORT_SYMBOL vmlinux 0x999e8297 vfree +EXPORT_SYMBOL vmlinux 0x99af106f make_kgid EXPORT_SYMBOL vmlinux 0x99bb8806 memmove -EXPORT_SYMBOL vmlinux 0x99c2adea blkdev_issue_flush EXPORT_SYMBOL vmlinux 0x99c95fa5 unregister_sound_special -EXPORT_SYMBOL vmlinux 0x99c9994e xfrm_unregister_type_offload -EXPORT_SYMBOL vmlinux 0x99d1d7fd sk_dst_check +EXPORT_SYMBOL vmlinux 0x99c9ff2a nf_unregister_sockopt +EXPORT_SYMBOL vmlinux 0x99ce4630 set_anon_super EXPORT_SYMBOL vmlinux 0x99d472b1 net_dim_get_rx_moderation -EXPORT_SYMBOL vmlinux 0x99d6b2ed md_bitmap_update_sb -EXPORT_SYMBOL vmlinux 0x99e348e1 inet_put_port -EXPORT_SYMBOL vmlinux 0x99f6f55d _dev_info +EXPORT_SYMBOL vmlinux 0x99d6762d vm_insert_pages +EXPORT_SYMBOL vmlinux 0x99e08421 scsi_get_device_flags_keyed EXPORT_SYMBOL vmlinux 0x99f9638f __napi_alloc_frag_align -EXPORT_SYMBOL vmlinux 0x9a065e22 rproc_coredump_add_segment +EXPORT_SYMBOL vmlinux 0x99fac0e6 ata_link_printk +EXPORT_SYMBOL vmlinux 0x9a061274 dev_get_by_napi_id +EXPORT_SYMBOL vmlinux 0x9a0b4226 kernel_bind EXPORT_SYMBOL vmlinux 0x9a0c3a18 vme_unregister_error_handler -EXPORT_SYMBOL vmlinux 0x9a15311d ptp_clock_event -EXPORT_SYMBOL vmlinux 0x9a192a42 vfs_unlink -EXPORT_SYMBOL vmlinux 0x9a19ec50 make_flow_keys_digest EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk -EXPORT_SYMBOL vmlinux 0x9a36e72a xfrm6_protocol_register -EXPORT_SYMBOL vmlinux 0x9a3a08d9 napi_gro_frags -EXPORT_SYMBOL vmlinux 0x9a3a569d bdevname -EXPORT_SYMBOL vmlinux 0x9a4c04e9 __traceiter_mmap_lock_acquire_returned -EXPORT_SYMBOL vmlinux 0x9a4d6cdb __xfrm_state_destroy +EXPORT_SYMBOL vmlinux 0x9a2abebe __hw_addr_ref_sync_dev +EXPORT_SYMBOL vmlinux 0x9a2ff24b simple_fill_super +EXPORT_SYMBOL vmlinux 0x9a322bdf pci_enable_msi +EXPORT_SYMBOL vmlinux 0x9a43ccf8 bio_reset +EXPORT_SYMBOL vmlinux 0x9a4eda29 genl_notify +EXPORT_SYMBOL vmlinux 0x9a4f1979 ipv6_select_ident EXPORT_SYMBOL vmlinux 0x9a583306 netlbl_bitmap_walk -EXPORT_SYMBOL vmlinux 0x9a5833c1 rpmh_invalidate -EXPORT_SYMBOL vmlinux 0x9a6c605d copy_string_kernel -EXPORT_SYMBOL vmlinux 0x9a6d794c set_nlink -EXPORT_SYMBOL vmlinux 0x9a6ebe0d serio_reconnect -EXPORT_SYMBOL vmlinux 0x9a774b7a request_key_rcu -EXPORT_SYMBOL vmlinux 0x9a7c07cf eth_type_trans EXPORT_SYMBOL vmlinux 0x9a8318ef v7_coherent_kern_range EXPORT_SYMBOL vmlinux 0x9a89a7a3 proc_douintvec -EXPORT_SYMBOL vmlinux 0x9a9a6b15 fsync_bdev +EXPORT_SYMBOL vmlinux 0x9a94096b flow_rule_match_enc_ip EXPORT_SYMBOL vmlinux 0x9aa9cea4 trace_print_flags_seq_u64 EXPORT_SYMBOL vmlinux 0x9aaeefce sysctl_nf_log_all_netns -EXPORT_SYMBOL vmlinux 0x9ab9fa41 skb_abort_seq_read -EXPORT_SYMBOL vmlinux 0x9abcd634 simple_dir_inode_operations -EXPORT_SYMBOL vmlinux 0x9ad9dd79 netpoll_poll_dev -EXPORT_SYMBOL vmlinux 0x9ada522f rtnl_create_link -EXPORT_SYMBOL vmlinux 0x9ae12e01 pcie_bandwidth_available +EXPORT_SYMBOL vmlinux 0x9ab7113c rawnand_dt_parse_gpio_cs +EXPORT_SYMBOL vmlinux 0x9adfcdcf sock_common_recvmsg EXPORT_SYMBOL vmlinux 0x9ae47436 _find_last_bit -EXPORT_SYMBOL vmlinux 0x9af3eaa7 tcp_sendmsg -EXPORT_SYMBOL vmlinux 0x9afd8abe qdisc_offload_dump_helper -EXPORT_SYMBOL vmlinux 0x9affbe21 mini_qdisc_pair_init -EXPORT_SYMBOL vmlinux 0x9b0025f3 peernet2id +EXPORT_SYMBOL vmlinux 0x9b07c6ac seg6_hmac_validate_skb EXPORT_SYMBOL vmlinux 0x9b128a66 qcom_scm_set_remote_state -EXPORT_SYMBOL vmlinux 0x9b136586 redirty_page_for_writepage -EXPORT_SYMBOL vmlinux 0x9b19a6d1 configfs_depend_item_unlocked +EXPORT_SYMBOL vmlinux 0x9b144b12 __breadahead +EXPORT_SYMBOL vmlinux 0x9b15adcd blk_mq_start_stopped_hw_queues EXPORT_SYMBOL vmlinux 0x9b1b7306 xxh64 -EXPORT_SYMBOL vmlinux 0x9b24d130 param_get_hexint +EXPORT_SYMBOL vmlinux 0x9b1b7c69 inode_set_flags EXPORT_SYMBOL vmlinux 0x9b2560b9 gf128mul_init_4k_bbe -EXPORT_SYMBOL vmlinux 0x9b2d779f fscrypt_decrypt_block_inplace -EXPORT_SYMBOL vmlinux 0x9b33a725 tag_pages_for_writeback +EXPORT_SYMBOL vmlinux 0x9b2e71ae devm_input_allocate_device +EXPORT_SYMBOL vmlinux 0x9b33654c jbd2_journal_begin_ordered_truncate EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier -EXPORT_SYMBOL vmlinux 0x9b3ebeac iov_iter_zero EXPORT_SYMBOL vmlinux 0x9b420478 utf8_strncasecmp EXPORT_SYMBOL vmlinux 0x9b496b21 posix_acl_alloc -EXPORT_SYMBOL vmlinux 0x9b5275b7 phy_detach -EXPORT_SYMBOL vmlinux 0x9b5d894f pci_disable_device +EXPORT_SYMBOL vmlinux 0x9b684e94 napi_consume_skb EXPORT_SYMBOL vmlinux 0x9b6eb137 ksize -EXPORT_SYMBOL vmlinux 0x9b6f4d8f netlink_ack -EXPORT_SYMBOL vmlinux 0x9b94a5f3 fbcon_update_vcs -EXPORT_SYMBOL vmlinux 0x9b9aebd3 max8998_write_reg +EXPORT_SYMBOL vmlinux 0x9b76c803 neigh_update +EXPORT_SYMBOL vmlinux 0x9baabcd0 dev_deactivate +EXPORT_SYMBOL vmlinux 0x9bb78c16 stop_tty +EXPORT_SYMBOL vmlinux 0x9bbb30ac da903x_query_status +EXPORT_SYMBOL vmlinux 0x9bbb6ba1 __vfs_removexattr +EXPORT_SYMBOL vmlinux 0x9bc236d7 pagecache_isize_extended EXPORT_SYMBOL vmlinux 0x9bc6885d security_binder_transaction -EXPORT_SYMBOL vmlinux 0x9c08e73b make_bad_inode -EXPORT_SYMBOL vmlinux 0x9c090bbc invalidate_mapping_pages -EXPORT_SYMBOL vmlinux 0x9c0a1c00 elevator_alloc -EXPORT_SYMBOL vmlinux 0x9c5125b5 is_subdir +EXPORT_SYMBOL vmlinux 0x9bcc5466 ppp_unit_number +EXPORT_SYMBOL vmlinux 0x9bd15f80 netif_set_real_num_tx_queues +EXPORT_SYMBOL vmlinux 0x9beaf05e __bread_gfp +EXPORT_SYMBOL vmlinux 0x9c04ee3f console_stop +EXPORT_SYMBOL vmlinux 0x9c0dc780 sock_no_ioctl +EXPORT_SYMBOL vmlinux 0x9c162640 _snd_pcm_lib_alloc_vmalloc_buffer +EXPORT_SYMBOL vmlinux 0x9c2179f7 __d_drop +EXPORT_SYMBOL vmlinux 0x9c239120 init_special_inode +EXPORT_SYMBOL vmlinux 0x9c2ab30e of_get_next_cpu_node +EXPORT_SYMBOL vmlinux 0x9c3d91c3 __invalidate_device EXPORT_SYMBOL vmlinux 0x9c5a2ada ucc_fast_dump_regs +EXPORT_SYMBOL vmlinux 0x9c5cdbda netlink_kernel_release EXPORT_SYMBOL vmlinux 0x9c65b78a csum_partial_copy_nocheck EXPORT_SYMBOL vmlinux 0x9c7419dc ZSTD_initDStream_usingDDict -EXPORT_SYMBOL vmlinux 0x9c74de97 super_setup_bdi EXPORT_SYMBOL vmlinux 0x9c86b9ab fileattr_fill_flags EXPORT_SYMBOL vmlinux 0x9cab34a6 rfkill_set_led_trigger_name -EXPORT_SYMBOL vmlinux 0x9cae27ed fib6_info_hw_flags_set +EXPORT_SYMBOL vmlinux 0x9cb16305 get_phy_device +EXPORT_SYMBOL vmlinux 0x9cb36f5a ip_do_fragment +EXPORT_SYMBOL vmlinux 0x9cb654d2 md_handle_request EXPORT_SYMBOL vmlinux 0x9ccf7171 vme_dma_pci_attribute -EXPORT_SYMBOL vmlinux 0x9cd4b648 ipv6_select_ident -EXPORT_SYMBOL vmlinux 0x9cd722e8 ata_std_end_eh -EXPORT_SYMBOL vmlinux 0x9cd7d803 sk_stop_timer_sync -EXPORT_SYMBOL vmlinux 0x9cd8004c __generic_file_write_iter +EXPORT_SYMBOL vmlinux 0x9cd401c5 nand_ecc_init_ctx +EXPORT_SYMBOL vmlinux 0x9cdbdec0 read_cache_page_gfp EXPORT_SYMBOL vmlinux 0x9cdfb3f7 sysctl_fb_tunnels_only_for_init_net +EXPORT_SYMBOL vmlinux 0x9ce2ef48 iput EXPORT_SYMBOL vmlinux 0x9d06ac33 free_bucket_spinlocks -EXPORT_SYMBOL vmlinux 0x9d0a3a92 pm860x_bulk_read -EXPORT_SYMBOL vmlinux 0x9d0afde0 rproc_elf_sanity_check EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier -EXPORT_SYMBOL vmlinux 0x9d162d23 sync_file_create -EXPORT_SYMBOL vmlinux 0x9d1e11e0 page_mapped -EXPORT_SYMBOL vmlinux 0x9d269cfb ilookup +EXPORT_SYMBOL vmlinux 0x9d15e1b8 __mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x9d18c243 udp6_seq_ops +EXPORT_SYMBOL vmlinux 0x9d2595a8 kthread_create_worker EXPORT_SYMBOL vmlinux 0x9d2ab8ac __tasklet_schedule EXPORT_SYMBOL vmlinux 0x9d2e7707 unregister_sysrq_key -EXPORT_SYMBOL vmlinux 0x9d38d2b7 take_dentry_name_snapshot -EXPORT_SYMBOL vmlinux 0x9d3e7887 dm_table_get_size -EXPORT_SYMBOL vmlinux 0x9d4d3fbe eth_mac_addr +EXPORT_SYMBOL vmlinux 0x9d31ba9c ip6_err_gen_icmpv6_unreach +EXPORT_SYMBOL vmlinux 0x9d3f54f7 twl6040_get_pll +EXPORT_SYMBOL vmlinux 0x9d53b3a6 xp_raw_get_data EXPORT_SYMBOL vmlinux 0x9d5cd559 reservation_ww_class -EXPORT_SYMBOL vmlinux 0x9d6480e7 nand_ecc_sw_bch_cleanup_ctx EXPORT_SYMBOL vmlinux 0x9d669763 memcpy -EXPORT_SYMBOL vmlinux 0x9d675a18 generic_file_readonly_mmap -EXPORT_SYMBOL vmlinux 0x9d7d5956 pci_msi_vec_count +EXPORT_SYMBOL vmlinux 0x9d70df84 security_inet_conn_established +EXPORT_SYMBOL vmlinux 0x9d76c7e5 scsi_report_bus_reset +EXPORT_SYMBOL vmlinux 0x9d87d9ee md_write_inc +EXPORT_SYMBOL vmlinux 0x9d8c1fd1 sock_set_sndtimeo +EXPORT_SYMBOL vmlinux 0x9d970da8 ip_route_me_harder EXPORT_SYMBOL vmlinux 0x9d97ab2c audit_log_object_context -EXPORT_SYMBOL vmlinux 0x9da56c18 mdiobus_setup_mdiodev_from_board_info -EXPORT_SYMBOL vmlinux 0x9da5e12d filemap_invalidate_lock_two -EXPORT_SYMBOL vmlinux 0x9daa05c4 sock_kfree_s -EXPORT_SYMBOL vmlinux 0x9dbd991c backlight_force_update -EXPORT_SYMBOL vmlinux 0x9dbe6262 param_get_uint -EXPORT_SYMBOL vmlinux 0x9dcd2642 udp_gro_complete -EXPORT_SYMBOL vmlinux 0x9dd39c21 copy_page_from_iter_atomic -EXPORT_SYMBOL vmlinux 0x9df66fab framebuffer_release -EXPORT_SYMBOL vmlinux 0x9df6e8ae msm_pinctrl_dev_pm_ops -EXPORT_SYMBOL vmlinux 0x9df9f18f device_match_acpi_dev -EXPORT_SYMBOL vmlinux 0x9dfc8892 simple_rename +EXPORT_SYMBOL vmlinux 0x9d9b7f2a mipi_dsi_dcs_write_buffer +EXPORT_SYMBOL vmlinux 0x9dcc5d88 snd_pcm_suspend_all +EXPORT_SYMBOL vmlinux 0x9debc698 snd_ctl_replace EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node EXPORT_SYMBOL vmlinux 0x9e0fa5ae hsiphash_3u32 +EXPORT_SYMBOL vmlinux 0x9e10aa41 pcie_get_speed_cap EXPORT_SYMBOL vmlinux 0x9e13f6f6 gf128mul_lle -EXPORT_SYMBOL vmlinux 0x9e1c0581 sock_kzfree_s -EXPORT_SYMBOL vmlinux 0x9e1ef000 send_sig_mceerr -EXPORT_SYMBOL vmlinux 0x9e252c9d sock_no_bind -EXPORT_SYMBOL vmlinux 0x9e28737c phy_ethtool_get_stats -EXPORT_SYMBOL vmlinux 0x9e318360 mmc_of_parse_voltage -EXPORT_SYMBOL vmlinux 0x9e49b8d3 inet_frags_fini +EXPORT_SYMBOL vmlinux 0x9e1e18a0 ip_setsockopt +EXPORT_SYMBOL vmlinux 0x9e2f5801 nand_ecc_cleanup_ctx EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy +EXPORT_SYMBOL vmlinux 0x9e53725f of_get_nand_ecc_user_config EXPORT_SYMBOL vmlinux 0x9e61bb05 set_freezable EXPORT_SYMBOL vmlinux 0x9e6d79f8 snd_info_get_str -EXPORT_SYMBOL vmlinux 0x9e95dca9 of_get_property EXPORT_SYMBOL vmlinux 0x9e9a9cb4 trace_print_hex_seq EXPORT_SYMBOL vmlinux 0x9e9eab95 devcgroup_check_permission EXPORT_SYMBOL vmlinux 0x9e9fdd9d memunmap -EXPORT_SYMBOL vmlinux 0x9ea64e27 tty_hangup -EXPORT_SYMBOL vmlinux 0x9eb14d3c uart_get_divisor -EXPORT_SYMBOL vmlinux 0x9eb724a4 snd_ctl_find_numid +EXPORT_SYMBOL vmlinux 0x9eac81f0 input_reset_device EXPORT_SYMBOL vmlinux 0x9ec0e639 twl6030_interrupt_unmask -EXPORT_SYMBOL vmlinux 0x9ec53888 get_tree_bdev +EXPORT_SYMBOL vmlinux 0x9ec1ba89 skb_queue_head EXPORT_SYMBOL vmlinux 0x9ec6ca96 ktime_get_real_ts64 +EXPORT_SYMBOL vmlinux 0x9ed4e830 dev_uc_sync +EXPORT_SYMBOL vmlinux 0x9ed74901 blk_integrity_register EXPORT_SYMBOL vmlinux 0x9ed978de vme_lm_set -EXPORT_SYMBOL vmlinux 0x9ee2170f follow_pfn -EXPORT_SYMBOL vmlinux 0x9ef5cea1 pci_back_from_sleep -EXPORT_SYMBOL vmlinux 0x9efd3901 dump_page -EXPORT_SYMBOL vmlinux 0x9f03039d md_bitmap_unplug +EXPORT_SYMBOL vmlinux 0x9edc9001 kmap_high +EXPORT_SYMBOL vmlinux 0x9eecba84 snd_pcm_hw_constraint_ranges +EXPORT_SYMBOL vmlinux 0x9eecead4 dm_io EXPORT_SYMBOL vmlinux 0x9f46ced8 __sw_hweight64 +EXPORT_SYMBOL vmlinux 0x9f4e6d4d dquot_reclaim_space_nodirty EXPORT_SYMBOL vmlinux 0x9f50b770 keyring_restrict -EXPORT_SYMBOL vmlinux 0x9f52816f rproc_add_carveout +EXPORT_SYMBOL vmlinux 0x9f537fae __skb_checksum_complete_head +EXPORT_SYMBOL vmlinux 0x9f5458de xp_free EXPORT_SYMBOL vmlinux 0x9f54ead7 gro_cells_destroy +EXPORT_SYMBOL vmlinux 0x9f7a99d7 neigh_seq_start EXPORT_SYMBOL vmlinux 0x9f7ae060 node_states -EXPORT_SYMBOL vmlinux 0x9f84a862 __i2c_transfer -EXPORT_SYMBOL vmlinux 0x9f92968e seq_pad EXPORT_SYMBOL vmlinux 0x9f984513 strrchr -EXPORT_SYMBOL vmlinux 0x9f9db03f padata_do_parallel -EXPORT_SYMBOL vmlinux 0x9fbdd3f7 __blk_mq_end_request -EXPORT_SYMBOL vmlinux 0x9fda344c netif_receive_skb +EXPORT_SYMBOL vmlinux 0x9f9b311a vme_slave_request +EXPORT_SYMBOL vmlinux 0x9f9bac8c pagecache_get_page +EXPORT_SYMBOL vmlinux 0x9fb69ece request_firmware_into_buf +EXPORT_SYMBOL vmlinux 0x9fbe28e3 pci_scan_root_bus_bridge +EXPORT_SYMBOL vmlinux 0x9fcf64f4 generic_block_bmap EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many EXPORT_SYMBOL vmlinux 0x9feed7ce timer_reduce +EXPORT_SYMBOL vmlinux 0x9fef06a6 add_watch_to_object EXPORT_SYMBOL vmlinux 0x9fef8cf5 __kfifo_dma_in_prepare_r EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog -EXPORT_SYMBOL vmlinux 0x9ffd0d30 phy_suspend -EXPORT_SYMBOL vmlinux 0xa009084b skb_copy_and_csum_bits +EXPORT_SYMBOL vmlinux 0x9ffe6b58 blk_rq_init EXPORT_SYMBOL vmlinux 0xa0133f9a cpumask_any_and_distribute EXPORT_SYMBOL vmlinux 0xa01d3df6 font_vga_8x16 +EXPORT_SYMBOL vmlinux 0xa024489a serio_unregister_driver EXPORT_SYMBOL vmlinux 0xa033d747 next_arg EXPORT_SYMBOL vmlinux 0xa0436e98 in6addr_linklocal_allnodes -EXPORT_SYMBOL vmlinux 0xa04657b8 inode_add_bytes +EXPORT_SYMBOL vmlinux 0xa04a6c09 padata_do_serial +EXPORT_SYMBOL vmlinux 0xa04df69a pci_wait_for_pending_transaction EXPORT_SYMBOL vmlinux 0xa04e33da qcom_scm_lmh_dcvsh +EXPORT_SYMBOL vmlinux 0xa056c38f skb_copy_datagram_from_iter EXPORT_SYMBOL vmlinux 0xa057df8f twl_set_regcache_bypass -EXPORT_SYMBOL vmlinux 0xa0584828 kmem_cache_shrink EXPORT_SYMBOL vmlinux 0xa05b6be2 psched_ppscfg_precompute -EXPORT_SYMBOL vmlinux 0xa064fe3e vmf_insert_mixed_prot -EXPORT_SYMBOL vmlinux 0xa06786e0 tcf_idr_check_alloc +EXPORT_SYMBOL vmlinux 0xa06c7870 would_dump EXPORT_SYMBOL vmlinux 0xa06df9e1 __kfifo_dma_out_finish_r +EXPORT_SYMBOL vmlinux 0xa070310c __skb_get_hash EXPORT_SYMBOL vmlinux 0xa071249b scsi_kmap_atomic_sg -EXPORT_SYMBOL vmlinux 0xa077c44d ip_tunnel_header_ops EXPORT_SYMBOL vmlinux 0xa07d1b3c tasklet_setup -EXPORT_SYMBOL vmlinux 0xa08441a4 nf_ip_checksum EXPORT_SYMBOL vmlinux 0xa084749a __bitmap_or EXPORT_SYMBOL vmlinux 0xa095e02e generic_check_addressable -EXPORT_SYMBOL vmlinux 0xa09c81b2 phy_device_remove -EXPORT_SYMBOL vmlinux 0xa09fdadf d_instantiate_new -EXPORT_SYMBOL vmlinux 0xa0a51c75 jbd2_submit_inode_data +EXPORT_SYMBOL vmlinux 0xa09d9f79 fs_param_is_blockdev EXPORT_SYMBOL vmlinux 0xa0ae1e73 siphash_3u64 EXPORT_SYMBOL vmlinux 0xa0aefe3e bit_waitqueue EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 -EXPORT_SYMBOL vmlinux 0xa0b08632 ndo_dflt_fdb_del -EXPORT_SYMBOL vmlinux 0xa0b7f15d xfrm_state_walk -EXPORT_SYMBOL vmlinux 0xa0c137b4 input_set_abs_params -EXPORT_SYMBOL vmlinux 0xa0c364d2 cleancache_register_ops -EXPORT_SYMBOL vmlinux 0xa0c3892d nobh_write_begin -EXPORT_SYMBOL vmlinux 0xa0cdd0ba simple_link -EXPORT_SYMBOL vmlinux 0xa0d0fe73 pin_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0xa0b27fc5 __destroy_inode +EXPORT_SYMBOL vmlinux 0xa0b28fe6 t10_pi_type3_crc +EXPORT_SYMBOL vmlinux 0xa0c4973d ps2_command EXPORT_SYMBOL vmlinux 0xa0d87339 qdisc_get_rtab EXPORT_SYMBOL vmlinux 0xa0dad88e netdev_adjacent_get_private +EXPORT_SYMBOL vmlinux 0xa0e38b9c sock_set_reuseport 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 0xa0f5e7af migrate_page_states +EXPORT_SYMBOL vmlinux 0xa0fb3b63 sock_set_rcvbuf EXPORT_SYMBOL vmlinux 0xa0fbac79 wake_up_bit -EXPORT_SYMBOL vmlinux 0xa10873e6 inode_init_owner +EXPORT_SYMBOL vmlinux 0xa0fe9ba6 param_get_bool EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max -EXPORT_SYMBOL vmlinux 0xa10df5df ip_defrag -EXPORT_SYMBOL vmlinux 0xa12b78e7 path_is_under +EXPORT_SYMBOL vmlinux 0xa11e23bc netlbl_calipso_ops_register EXPORT_SYMBOL vmlinux 0xa12dcf00 config_group_init_type_name -EXPORT_SYMBOL vmlinux 0xa12f1934 reuseport_detach_prog -EXPORT_SYMBOL vmlinux 0xa15905bb dev_lstats_read +EXPORT_SYMBOL vmlinux 0xa1340405 xfrm_state_delete_tunnel +EXPORT_SYMBOL vmlinux 0xa135e8b3 seq_puts +EXPORT_SYMBOL vmlinux 0xa13a477a sk_stream_kill_queues +EXPORT_SYMBOL vmlinux 0xa142faa8 simple_release_fs EXPORT_SYMBOL vmlinux 0xa15d0131 cancel_delayed_work EXPORT_SYMBOL vmlinux 0xa16b21fb wait_for_completion_timeout -EXPORT_SYMBOL vmlinux 0xa16d38bd neigh_update +EXPORT_SYMBOL vmlinux 0xa1778edd disk_stack_limits EXPORT_SYMBOL vmlinux 0xa17bd3fc add_wait_queue -EXPORT_SYMBOL vmlinux 0xa18745f0 balance_dirty_pages_ratelimited +EXPORT_SYMBOL vmlinux 0xa189130a netdev_sk_get_lowest_dev +EXPORT_SYMBOL vmlinux 0xa1ae9bb1 __nd_driver_register +EXPORT_SYMBOL vmlinux 0xa1b5ce13 file_modified +EXPORT_SYMBOL vmlinux 0xa1ba5692 inode_update_time EXPORT_SYMBOL vmlinux 0xa1bacd91 qcom_scm_set_cold_boot_addr -EXPORT_SYMBOL vmlinux 0xa1c49e4f tty_port_free_xmit_buf EXPORT_SYMBOL vmlinux 0xa1d131ed vmemdup_user -EXPORT_SYMBOL vmlinux 0xa1daf5d0 skb_page_frag_refill +EXPORT_SYMBOL vmlinux 0xa1d7e451 of_graph_get_remote_node +EXPORT_SYMBOL vmlinux 0xa1d87203 ps2_init +EXPORT_SYMBOL vmlinux 0xa1d92c06 inet_select_addr +EXPORT_SYMBOL vmlinux 0xa1da8e68 phy_init_hw +EXPORT_SYMBOL vmlinux 0xa1efb1ff ipv6_chk_addr EXPORT_SYMBOL vmlinux 0xa2060911 inet_current_timestamp -EXPORT_SYMBOL vmlinux 0xa223c006 __free_pages -EXPORT_SYMBOL vmlinux 0xa23afc4f simple_transaction_get +EXPORT_SYMBOL vmlinux 0xa20782c2 jbd2_journal_get_write_access +EXPORT_SYMBOL vmlinux 0xa220f792 mmc_cqe_post_req +EXPORT_SYMBOL vmlinux 0xa22115ed unregister_key_type +EXPORT_SYMBOL vmlinux 0xa2281cab sock_kmalloc +EXPORT_SYMBOL vmlinux 0xa235d543 inet_proto_csum_replace4 +EXPORT_SYMBOL vmlinux 0xa23ef1f6 ipv6_chk_addr_and_flags EXPORT_SYMBOL vmlinux 0xa23ffc04 groups_sort EXPORT_SYMBOL vmlinux 0xa24491bf ida_free -EXPORT_SYMBOL vmlinux 0xa2464743 generic_file_fsync EXPORT_SYMBOL vmlinux 0xa24f23d8 __request_module -EXPORT_SYMBOL vmlinux 0xa24f681d wireless_send_event -EXPORT_SYMBOL vmlinux 0xa25222cc skb_flow_dissect_hash EXPORT_SYMBOL vmlinux 0xa25b90ab utf8byte +EXPORT_SYMBOL vmlinux 0xa25eb9ed rt_dst_clone EXPORT_SYMBOL vmlinux 0xa263892b fscrypt_fname_free_buffer -EXPORT_SYMBOL vmlinux 0xa26c1819 rproc_elf_get_boot_addr +EXPORT_SYMBOL vmlinux 0xa26a3472 mount_bdev EXPORT_SYMBOL vmlinux 0xa28cfcc0 gen_estimator_active -EXPORT_SYMBOL vmlinux 0xa2903e2d dquot_set_dqinfo -EXPORT_SYMBOL vmlinux 0xa291ca78 pci_iounmap -EXPORT_SYMBOL vmlinux 0xa2951c53 input_free_device -EXPORT_SYMBOL vmlinux 0xa29a2554 nvdimm_check_and_set_ro -EXPORT_SYMBOL vmlinux 0xa2b26a43 unregister_netdevice_notifier_net -EXPORT_SYMBOL vmlinux 0xa2b48093 rproc_of_parse_firmware -EXPORT_SYMBOL vmlinux 0xa2ce3436 dev_addr_init +EXPORT_SYMBOL vmlinux 0xa294fece rproc_elf_load_segments +EXPORT_SYMBOL vmlinux 0xa29e1ea1 dquot_quotactl_sysfile_ops +EXPORT_SYMBOL vmlinux 0xa29ed621 address_space_init_once +EXPORT_SYMBOL vmlinux 0xa2a3e6ba inode_owner_or_capable EXPORT_SYMBOL vmlinux 0xa2d7ec8d __SCK__tp_func_kmem_cache_free -EXPORT_SYMBOL vmlinux 0xa2deb0b2 new_inode -EXPORT_SYMBOL vmlinux 0xa2ea1e52 pci_ep_cfs_remove_epf_group -EXPORT_SYMBOL vmlinux 0xa300fc17 jbd2_journal_extend -EXPORT_SYMBOL vmlinux 0xa314c72b __ip4_datagram_connect -EXPORT_SYMBOL vmlinux 0xa3446974 posix_lock_file -EXPORT_SYMBOL vmlinux 0xa384845b ipv6_mc_check_mld -EXPORT_SYMBOL vmlinux 0xa395fba7 mfd_remove_devices_late -EXPORT_SYMBOL vmlinux 0xa39d298d mr_rtm_dumproute +EXPORT_SYMBOL vmlinux 0xa2f708d2 tcp_child_process +EXPORT_SYMBOL vmlinux 0xa2fe25fd pci_disable_msix +EXPORT_SYMBOL vmlinux 0xa2fe723e snd_unregister_oss_device +EXPORT_SYMBOL vmlinux 0xa342487c phy_error +EXPORT_SYMBOL vmlinux 0xa3510550 register_sound_special +EXPORT_SYMBOL vmlinux 0xa375e5cd xsk_tx_peek_desc +EXPORT_SYMBOL vmlinux 0xa37763ed kmem_cache_create_usercopy +EXPORT_SYMBOL vmlinux 0xa39d2c2a tc_setup_cb_add +EXPORT_SYMBOL vmlinux 0xa3a39bca dma_resv_add_shared_fence EXPORT_SYMBOL vmlinux 0xa3a54979 init_on_free -EXPORT_SYMBOL vmlinux 0xa3a66dbf tty_port_raise_dtr_rts -EXPORT_SYMBOL vmlinux 0xa3a6be21 pci_release_region +EXPORT_SYMBOL vmlinux 0xa3b301d0 nf_log_unset EXPORT_SYMBOL vmlinux 0xa3ba27bf vme_free_consistent EXPORT_SYMBOL vmlinux 0xa3be8342 __ubsan_handle_type_mismatch EXPORT_SYMBOL vmlinux 0xa3c00c06 memcg_sockets_enabled_key -EXPORT_SYMBOL vmlinux 0xa3ca0b1e d_add_ci -EXPORT_SYMBOL vmlinux 0xa3cbc13c skb_seq_read -EXPORT_SYMBOL vmlinux 0xa3f4ddd3 input_set_keycode -EXPORT_SYMBOL vmlinux 0xa3f98461 key_type_keyring +EXPORT_SYMBOL vmlinux 0xa3cd3b7b blk_put_queue +EXPORT_SYMBOL vmlinux 0xa3e0cb28 phy_attached_info +EXPORT_SYMBOL vmlinux 0xa3f44cb0 snd_ctl_boolean_stereo_info +EXPORT_SYMBOL vmlinux 0xa3fa6e63 max8998_bulk_read EXPORT_SYMBOL vmlinux 0xa3fb735a blk_set_default_limits EXPORT_SYMBOL vmlinux 0xa3fea172 sha224_final -EXPORT_SYMBOL vmlinux 0xa4085e53 pci_write_vpd +EXPORT_SYMBOL vmlinux 0xa4061ba1 __break_lease +EXPORT_SYMBOL vmlinux 0xa425779d phy_connect +EXPORT_SYMBOL vmlinux 0xa429b3c1 __scsi_add_device EXPORT_SYMBOL vmlinux 0xa43799a8 rfs_needed -EXPORT_SYMBOL vmlinux 0xa43f37da uart_unregister_driver +EXPORT_SYMBOL vmlinux 0xa443c500 unregister_framebuffer EXPORT_SYMBOL vmlinux 0xa448c653 qcom_scm_ice_set_key EXPORT_SYMBOL vmlinux 0xa4552208 init_on_alloc +EXPORT_SYMBOL vmlinux 0xa4577079 uart_match_port +EXPORT_SYMBOL vmlinux 0xa458041c is_subdir EXPORT_SYMBOL vmlinux 0xa4610bc6 omap_rev -EXPORT_SYMBOL vmlinux 0xa47ca386 processor -EXPORT_SYMBOL vmlinux 0xa49151c6 put_disk -EXPORT_SYMBOL vmlinux 0xa4959505 inet_sendpage -EXPORT_SYMBOL vmlinux 0xa495a612 ac97_bus_type +EXPORT_SYMBOL vmlinux 0xa46c41d6 icmp6_send +EXPORT_SYMBOL vmlinux 0xa490ec00 dmam_pool_create +EXPORT_SYMBOL vmlinux 0xa49d29b8 phy_ethtool_get_eee EXPORT_SYMBOL vmlinux 0xa4b42c55 omap_set_dma_priority EXPORT_SYMBOL vmlinux 0xa4b7f2cc sync_file_get_fence -EXPORT_SYMBOL vmlinux 0xa4f57616 snd_device_free +EXPORT_SYMBOL vmlinux 0xa4b8e76d of_find_matching_node_and_match +EXPORT_SYMBOL vmlinux 0xa4bfc50a tcp_rcv_state_process +EXPORT_SYMBOL vmlinux 0xa4c6937c pci_free_irq_vectors +EXPORT_SYMBOL vmlinux 0xa4d25ad4 tcp_fastopen_defer_connect +EXPORT_SYMBOL vmlinux 0xa4e3c280 __filemap_set_wb_err EXPORT_SYMBOL vmlinux 0xa4fca045 qcom_scm_ocmem_lock -EXPORT_SYMBOL vmlinux 0xa4fcd01c security_inet_conn_established +EXPORT_SYMBOL vmlinux 0xa4fedcf7 mmc_set_data_timeout EXPORT_SYMBOL vmlinux 0xa50a3da7 _find_next_bit -EXPORT_SYMBOL vmlinux 0xa521d838 security_unix_stream_connect -EXPORT_SYMBOL vmlinux 0xa52506f8 netdev_bind_sb_channel_queue EXPORT_SYMBOL vmlinux 0xa52d6316 sg_zero_buffer -EXPORT_SYMBOL vmlinux 0xa546a014 skb_copy_datagram_iter -EXPORT_SYMBOL vmlinux 0xa547a188 secpath_set +EXPORT_SYMBOL vmlinux 0xa54e076e devfreq_monitor_start EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color -EXPORT_SYMBOL vmlinux 0xa5576cf0 sk_ns_capable -EXPORT_SYMBOL vmlinux 0xa565db63 snd_pcm_set_managed_buffer EXPORT_SYMBOL vmlinux 0xa5684076 ida_alloc_range EXPORT_SYMBOL vmlinux 0xa56fde1c __genradix_iter_peek +EXPORT_SYMBOL vmlinux 0xa5716707 pci_request_selected_regions +EXPORT_SYMBOL vmlinux 0xa5720fd1 xsk_tx_release +EXPORT_SYMBOL vmlinux 0xa5805596 jbd2_journal_dirty_metadata EXPORT_SYMBOL vmlinux 0xa5a91711 _raw_write_lock_bh -EXPORT_SYMBOL vmlinux 0xa5d51762 tcp_rcv_established -EXPORT_SYMBOL vmlinux 0xa5fb1a04 skb_copy_and_csum_datagram_msg +EXPORT_SYMBOL vmlinux 0xa5ad99ea skb_split +EXPORT_SYMBOL vmlinux 0xa5c09b97 dma_sync_wait +EXPORT_SYMBOL vmlinux 0xa5ce56ec vfs_dedupe_file_range_one +EXPORT_SYMBOL vmlinux 0xa5d4b700 proc_create_single_data +EXPORT_SYMBOL vmlinux 0xa5f64740 current_time +EXPORT_SYMBOL vmlinux 0xa5fc7914 register_mtd_chip_driver +EXPORT_SYMBOL vmlinux 0xa60be969 __lock_sock_fast EXPORT_SYMBOL vmlinux 0xa61aa028 snd_pcm_format_unsigned EXPORT_SYMBOL vmlinux 0xa61ced89 qdisc_put_rtab -EXPORT_SYMBOL vmlinux 0xa633caa8 scsi_target_resume +EXPORT_SYMBOL vmlinux 0xa62cc7bf thread_group_exited +EXPORT_SYMBOL vmlinux 0xa630172d inet_release EXPORT_SYMBOL vmlinux 0xa648e561 __ubsan_handle_shift_out_of_bounds -EXPORT_SYMBOL vmlinux 0xa64b4713 vlan_vids_add_by_dev -EXPORT_SYMBOL vmlinux 0xa64d89f1 tcf_action_update_stats -EXPORT_SYMBOL vmlinux 0xa65be7bc dquot_free_inode -EXPORT_SYMBOL vmlinux 0xa6799f28 sock_edemux +EXPORT_SYMBOL vmlinux 0xa649c31b __dev_get_by_flags +EXPORT_SYMBOL vmlinux 0xa666e313 posix_acl_chmod EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid EXPORT_SYMBOL vmlinux 0xa68613dd get_jiffies_64 -EXPORT_SYMBOL vmlinux 0xa68fd8b2 snd_pcm_set_managed_buffer_all -EXPORT_SYMBOL vmlinux 0xa693582f udp_read_sock +EXPORT_SYMBOL vmlinux 0xa687956a dev_get_by_name_rcu +EXPORT_SYMBOL vmlinux 0xa69012a9 d_alloc_parallel +EXPORT_SYMBOL vmlinux 0xa694b358 copy_string_kernel EXPORT_SYMBOL vmlinux 0xa6970398 __kfifo_to_user_r EXPORT_SYMBOL vmlinux 0xa69d151c _raw_write_lock -EXPORT_SYMBOL vmlinux 0xa6a12712 sk_wait_data EXPORT_SYMBOL vmlinux 0xa6a393be posix_acl_valid EXPORT_SYMBOL vmlinux 0xa6a7a2ad div_s64_rem -EXPORT_SYMBOL vmlinux 0xa6cb3c7c cros_ec_check_result -EXPORT_SYMBOL vmlinux 0xa6d1f459 udp_poll -EXPORT_SYMBOL vmlinux 0xa6d2a6ce seq_path -EXPORT_SYMBOL vmlinux 0xa6f09e8c param_get_short -EXPORT_SYMBOL vmlinux 0xa700188b seq_vprintf +EXPORT_SYMBOL vmlinux 0xa6cbcf4f get_tree_keyed +EXPORT_SYMBOL vmlinux 0xa6d39cb3 dquot_file_open +EXPORT_SYMBOL vmlinux 0xa6d7e2e3 end_buffer_write_sync +EXPORT_SYMBOL vmlinux 0xa6e8eaee tcp_rcv_established EXPORT_SYMBOL vmlinux 0xa70bc96d qcom_scm_restore_sec_cfg_available EXPORT_SYMBOL vmlinux 0xa70fb761 flow_keys_basic_dissector EXPORT_SYMBOL vmlinux 0xa714758e sg_copy_buffer -EXPORT_SYMBOL vmlinux 0xa71f6565 ___pskb_trim -EXPORT_SYMBOL vmlinux 0xa7268026 page_pool_release_page EXPORT_SYMBOL vmlinux 0xa72957cc __dynamic_pr_debug +EXPORT_SYMBOL vmlinux 0xa73a3b18 truncate_inode_pages_final EXPORT_SYMBOL vmlinux 0xa73ee62b _atomic_dec_and_lock EXPORT_SYMBOL vmlinux 0xa74c9877 refcount_dec_and_rtnl_lock -EXPORT_SYMBOL vmlinux 0xa75e610a generic_error_remove_page -EXPORT_SYMBOL vmlinux 0xa7649a80 generic_read_dir -EXPORT_SYMBOL vmlinux 0xa76e9a9a snd_pcm_create_iec958_consumer -EXPORT_SYMBOL vmlinux 0xa76ed18e kern_unmount_array +EXPORT_SYMBOL vmlinux 0xa74fb373 mdio_device_remove +EXPORT_SYMBOL vmlinux 0xa752ad71 qdisc_offload_graft_helper +EXPORT_SYMBOL vmlinux 0xa75b1ca9 dquot_destroy +EXPORT_SYMBOL vmlinux 0xa75b706b xfrm_lookup_with_ifid +EXPORT_SYMBOL vmlinux 0xa75f04f2 arp_xmit +EXPORT_SYMBOL vmlinux 0xa767c822 device_add_disk +EXPORT_SYMBOL vmlinux 0xa7763907 dump_skip_to +EXPORT_SYMBOL vmlinux 0xa77900dd inet_frags_init EXPORT_SYMBOL vmlinux 0xa77bfd29 register_inet6addr_validator_notifier -EXPORT_SYMBOL vmlinux 0xa78099a2 devm_of_iomap -EXPORT_SYMBOL vmlinux 0xa78a614d unregister_netdevice_queue -EXPORT_SYMBOL vmlinux 0xa78af137 xfrm_policy_register_afinfo -EXPORT_SYMBOL vmlinux 0xa7925fc0 tcp_v4_syn_recv_sock -EXPORT_SYMBOL vmlinux 0xa7968ce4 simple_symlink_inode_operations -EXPORT_SYMBOL vmlinux 0xa79f2a2b cdrom_get_last_written -EXPORT_SYMBOL vmlinux 0xa7a54871 pci_get_slot +EXPORT_SYMBOL vmlinux 0xa77d204f netlink_capable +EXPORT_SYMBOL vmlinux 0xa783fcfb qdisc_reset EXPORT_SYMBOL vmlinux 0xa7b3181c up_read -EXPORT_SYMBOL vmlinux 0xa7eaaa30 pipe_unlock -EXPORT_SYMBOL vmlinux 0xa7eed749 dev_set_mac_address_user +EXPORT_SYMBOL vmlinux 0xa7b50f79 simple_dentry_operations +EXPORT_SYMBOL vmlinux 0xa7c13084 vfs_ioctl +EXPORT_SYMBOL vmlinux 0xa7c2f232 netif_rx_ni +EXPORT_SYMBOL vmlinux 0xa7dc9794 processor EXPORT_SYMBOL vmlinux 0xa7eedcc4 call_usermodehelper +EXPORT_SYMBOL vmlinux 0xa7fb4240 of_get_cpu_node +EXPORT_SYMBOL vmlinux 0xa8003f0e msm_pinctrl_dev_pm_ops EXPORT_SYMBOL vmlinux 0xa80acb56 lockref_mark_dead -EXPORT_SYMBOL vmlinux 0xa81139b1 fscrypt_free_inode -EXPORT_SYMBOL vmlinux 0xa81ffa3d sock_no_ioctl -EXPORT_SYMBOL vmlinux 0xa82c8e28 to_nd_btt -EXPORT_SYMBOL vmlinux 0xa82ed408 mount_subtree -EXPORT_SYMBOL vmlinux 0xa83976d9 devm_ioremap_resource +EXPORT_SYMBOL vmlinux 0xa80c5297 kernel_recvmsg +EXPORT_SYMBOL vmlinux 0xa8130c4e dquot_alloc_inode +EXPORT_SYMBOL vmlinux 0xa8160e9f reuseport_add_sock +EXPORT_SYMBOL vmlinux 0xa830e179 of_phy_get_and_connect EXPORT_SYMBOL vmlinux 0xa843805a get_unused_fd_flags +EXPORT_SYMBOL vmlinux 0xa845cc1e clk_hw_get_clk EXPORT_SYMBOL vmlinux 0xa84ce9e0 crypto_aes_inv_sbox -EXPORT_SYMBOL vmlinux 0xa8579c0e pcie_ptm_enabled -EXPORT_SYMBOL vmlinux 0xa8718133 sync_inode_metadata -EXPORT_SYMBOL vmlinux 0xa87b5b2c unregister_mii_timestamper -EXPORT_SYMBOL vmlinux 0xa8844d3d end_buffer_async_write -EXPORT_SYMBOL vmlinux 0xa885d3c8 refresh_frequency_limits +EXPORT_SYMBOL vmlinux 0xa86e1332 snd_ctl_unregister_ioctl +EXPORT_SYMBOL vmlinux 0xa88093a4 __dev_direct_xmit +EXPORT_SYMBOL vmlinux 0xa88b50ed gro_cells_receive 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 0xa8b34d50 snd_sgbuf_get_addr -EXPORT_SYMBOL vmlinux 0xa8b55037 scsi_device_lookup_by_target -EXPORT_SYMBOL vmlinux 0xa8c9e896 ucc_of_parse_tdm +EXPORT_SYMBOL vmlinux 0xa8c77638 flow_rule_match_enc_opts EXPORT_SYMBOL vmlinux 0xa8caa845 clk_bulk_put_all -EXPORT_SYMBOL vmlinux 0xa8db3e49 dev_uc_init +EXPORT_SYMBOL vmlinux 0xa8e3cba3 vmap EXPORT_SYMBOL vmlinux 0xa8ec7d34 crc_ccitt +EXPORT_SYMBOL vmlinux 0xa8f0634d blk_queue_max_segment_size EXPORT_SYMBOL vmlinux 0xa8f6c843 ip_frag_ecn_table EXPORT_SYMBOL vmlinux 0xa8f7f280 idr_get_next_ul -EXPORT_SYMBOL vmlinux 0xa91ed894 __ip_queue_xmit -EXPORT_SYMBOL vmlinux 0xa923beb6 __i2c_smbus_xfer -EXPORT_SYMBOL vmlinux 0xa934bc4b flow_get_u32_dst -EXPORT_SYMBOL vmlinux 0xa943d81d inc_zone_page_state -EXPORT_SYMBOL vmlinux 0xa947ff3c get_thermal_instance -EXPORT_SYMBOL vmlinux 0xa95feeca clear_page_dirty_for_io -EXPORT_SYMBOL vmlinux 0xa960d016 inode_set_flags +EXPORT_SYMBOL vmlinux 0xa916244a devm_gen_pool_create +EXPORT_SYMBOL vmlinux 0xa931507d __phy_write_mmd +EXPORT_SYMBOL vmlinux 0xa957e504 pci_match_id +EXPORT_SYMBOL vmlinux 0xa957f848 cdev_del +EXPORT_SYMBOL vmlinux 0xa958fe52 tcf_block_put_ext EXPORT_SYMBOL vmlinux 0xa964dd13 gpmc_cs_request EXPORT_SYMBOL vmlinux 0xa965ca81 reciprocal_value -EXPORT_SYMBOL vmlinux 0xa96cfa63 mr_table_dump EXPORT_SYMBOL vmlinux 0xa976957d bitmap_remap -EXPORT_SYMBOL vmlinux 0xa982e497 thaw_super -EXPORT_SYMBOL vmlinux 0xa98cba2b sock_wmalloc -EXPORT_SYMBOL vmlinux 0xa9a41c8d __hw_addr_sync_dev -EXPORT_SYMBOL vmlinux 0xa9a8f566 flow_block_cb_priv -EXPORT_SYMBOL vmlinux 0xa9aa217d gro_find_receive_by_type -EXPORT_SYMBOL vmlinux 0xa9bb9713 inet_shutdown -EXPORT_SYMBOL vmlinux 0xa9c67175 nexthop_set_hw_flags -EXPORT_SYMBOL vmlinux 0xa9cc9292 flow_rule_match_control -EXPORT_SYMBOL vmlinux 0xa9e2ac06 param_set_ullong -EXPORT_SYMBOL vmlinux 0xa9ec591e skb_copy_and_csum_dev -EXPORT_SYMBOL vmlinux 0xa9f9b410 give_up_console -EXPORT_SYMBOL vmlinux 0xaa10a81b register_framebuffer +EXPORT_SYMBOL vmlinux 0xa98a5dff amba_request_regions +EXPORT_SYMBOL vmlinux 0xa9aad3b9 md_error +EXPORT_SYMBOL vmlinux 0xa9b50a13 proc_set_user +EXPORT_SYMBOL vmlinux 0xa9d337cc gnet_stats_finish_copy +EXPORT_SYMBOL vmlinux 0xa9d4ff36 netdev_reset_tc +EXPORT_SYMBOL vmlinux 0xa9fd23a5 map_destroy +EXPORT_SYMBOL vmlinux 0xaa09b3f1 ptp_clock_register +EXPORT_SYMBOL vmlinux 0xaa142725 param_set_hexint EXPORT_SYMBOL vmlinux 0xaa19e4aa _kstrtol -EXPORT_SYMBOL vmlinux 0xaa1abbdf pci_bus_write_config_word -EXPORT_SYMBOL vmlinux 0xaa1ee387 security_old_inode_init_security -EXPORT_SYMBOL vmlinux 0xaa2dd063 mipi_dsi_turn_on_peripheral +EXPORT_SYMBOL vmlinux 0xaa1ff5f7 tcp_rtx_synack +EXPORT_SYMBOL vmlinux 0xaa20ff43 __task_pid_nr_ns EXPORT_SYMBOL vmlinux 0xaa42e16a gen_pool_has_addr -EXPORT_SYMBOL vmlinux 0xaa5dcb2b skb_append +EXPORT_SYMBOL vmlinux 0xaa543e4f iterate_fd +EXPORT_SYMBOL vmlinux 0xaa5b2fe1 pcie_capability_clear_and_set_dword EXPORT_SYMBOL vmlinux 0xaa6901ac __kfifo_out_r EXPORT_SYMBOL vmlinux 0xaa6f23ad rfkill_get_led_trigger_name +EXPORT_SYMBOL vmlinux 0xaa710c10 xp_dma_sync_for_cpu_slow +EXPORT_SYMBOL vmlinux 0xaa7a2379 devm_memunmap EXPORT_SYMBOL vmlinux 0xaa8106bc crc8_populate_msb +EXPORT_SYMBOL vmlinux 0xaa83132e twl6040_set_bits +EXPORT_SYMBOL vmlinux 0xaa8da85e vm_insert_page +EXPORT_SYMBOL vmlinux 0xaa958f5c find_inode_by_ino_rcu EXPORT_SYMBOL vmlinux 0xaaa4b9bc hchacha_block_generic EXPORT_SYMBOL vmlinux 0xaaa50fb2 qcom_scm_lmh_profile_change EXPORT_SYMBOL vmlinux 0xaacc9e27 sort 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 0xaaeaf557 input_release_device +EXPORT_SYMBOL vmlinux 0xaadd275d __scsi_print_sense +EXPORT_SYMBOL vmlinux 0xaadfeb78 param_get_string +EXPORT_SYMBOL vmlinux 0xaaf8b629 dma_free_attrs EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp -EXPORT_SYMBOL vmlinux 0xaaffad85 snd_timer_new -EXPORT_SYMBOL vmlinux 0xab025574 devm_get_clk_from_child -EXPORT_SYMBOL vmlinux 0xab04beba kernel_sock_ip_overhead -EXPORT_SYMBOL vmlinux 0xab096e5c pcie_capability_read_dword -EXPORT_SYMBOL vmlinux 0xab171b42 tcp_sock_set_syncnt -EXPORT_SYMBOL vmlinux 0xab1af83b rproc_remove_subdev +EXPORT_SYMBOL vmlinux 0xab00af21 i2c_register_driver EXPORT_SYMBOL vmlinux 0xab1d21ec kstrtoull_from_user -EXPORT_SYMBOL vmlinux 0xab1f0ae9 pps_unregister_source +EXPORT_SYMBOL vmlinux 0xab204d8e kernel_sendpage_locked EXPORT_SYMBOL vmlinux 0xab3697e4 irq_poll_init EXPORT_SYMBOL vmlinux 0xab3b75ea vme_dma_pattern_attribute +EXPORT_SYMBOL vmlinux 0xab3fd632 netdev_bonding_info_change +EXPORT_SYMBOL vmlinux 0xab41368b skb_seq_read +EXPORT_SYMBOL vmlinux 0xab48d19a pci_ep_cfs_remove_epf_group +EXPORT_SYMBOL vmlinux 0xab5e5e12 ptp_find_pin_unlocked EXPORT_SYMBOL vmlinux 0xab600421 probe_irq_off EXPORT_SYMBOL vmlinux 0xab63baa5 unregister_inetaddr_validator_notifier -EXPORT_SYMBOL vmlinux 0xab6964bd msi_desc_to_pci_dev -EXPORT_SYMBOL vmlinux 0xab6fb5bb no_seek_end_llseek_size +EXPORT_SYMBOL vmlinux 0xab6a465a sb_min_blocksize +EXPORT_SYMBOL vmlinux 0xab6d5b3b hex_to_bin EXPORT_SYMBOL vmlinux 0xab781570 fb_get_options -EXPORT_SYMBOL vmlinux 0xab8a3f98 __mmc_claim_host -EXPORT_SYMBOL vmlinux 0xab95b2b7 omap_rtc_power_off_program -EXPORT_SYMBOL vmlinux 0xabb94aaa vme_irq_generate -EXPORT_SYMBOL vmlinux 0xabc0eda9 rdmacg_uncharge -EXPORT_SYMBOL vmlinux 0xabddae84 ip_cmsg_recv_offset -EXPORT_SYMBOL vmlinux 0xabe13959 __serio_register_driver +EXPORT_SYMBOL vmlinux 0xab7fcf16 tcp_ld_RTO_revert +EXPORT_SYMBOL vmlinux 0xab8c46fc qdisc_watchdog_cancel +EXPORT_SYMBOL vmlinux 0xabdaef85 __dec_node_page_state +EXPORT_SYMBOL vmlinux 0xabdf55a0 dev_get_by_index_rcu +EXPORT_SYMBOL vmlinux 0xabebfd4a vmf_insert_mixed_mkwrite EXPORT_SYMBOL vmlinux 0xabf32f29 utf16s_to_utf8s -EXPORT_SYMBOL vmlinux 0xac0abf7d nf_hook_slow_list +EXPORT_SYMBOL vmlinux 0xabf398a9 pps_event +EXPORT_SYMBOL vmlinux 0xabfde3a3 nvdimm_bus_unlock EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier -EXPORT_SYMBOL vmlinux 0xac2b3548 seq_printf EXPORT_SYMBOL vmlinux 0xac3201b0 udp_flow_hashrnd -EXPORT_SYMBOL vmlinux 0xac33016b of_clk_get_by_name -EXPORT_SYMBOL vmlinux 0xac3586aa tso_count_descs +EXPORT_SYMBOL vmlinux 0xac38f1d1 of_phy_find_device EXPORT_SYMBOL vmlinux 0xac437f7b snd_interval_ratnum +EXPORT_SYMBOL vmlinux 0xac5cd479 sock_create EXPORT_SYMBOL vmlinux 0xac5fcec0 in4_pton -EXPORT_SYMBOL vmlinux 0xac69feb6 d_set_d_op -EXPORT_SYMBOL vmlinux 0xac6bb75a arp_send -EXPORT_SYMBOL vmlinux 0xac6f7a33 snd_pcm_period_elapsed -EXPORT_SYMBOL vmlinux 0xac711678 netpoll_send_udp +EXPORT_SYMBOL vmlinux 0xac70df7c dma_async_tx_descriptor_init +EXPORT_SYMBOL vmlinux 0xac7295e9 dquot_writeback_dquots +EXPORT_SYMBOL vmlinux 0xac74e7fe nvdimm_namespace_common_probe +EXPORT_SYMBOL vmlinux 0xac7a12f6 __netlink_kernel_create +EXPORT_SYMBOL vmlinux 0xac83b010 tcf_qevent_validate_change +EXPORT_SYMBOL vmlinux 0xac851a84 tty_port_hangup EXPORT_SYMBOL vmlinux 0xac8597d5 mb_cache_entry_get -EXPORT_SYMBOL vmlinux 0xac8fdff3 netdev_warn +EXPORT_SYMBOL vmlinux 0xac89ae26 sock_no_getname EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu -EXPORT_SYMBOL vmlinux 0xacb35361 mipi_dsi_generic_read -EXPORT_SYMBOL vmlinux 0xacb3e729 xfrm_state_update -EXPORT_SYMBOL vmlinux 0xacb42014 vlan_uses_dev -EXPORT_SYMBOL vmlinux 0xacbced2b genlmsg_multicast_allns +EXPORT_SYMBOL vmlinux 0xacbeb8fb mipi_dsi_picture_parameter_set +EXPORT_SYMBOL vmlinux 0xacd36ecd of_graph_get_remote_port EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache -EXPORT_SYMBOL vmlinux 0xacdb21bd kthread_associate_blkcg EXPORT_SYMBOL vmlinux 0xacddd806 ptp_get_vclocks_index -EXPORT_SYMBOL vmlinux 0xacefdb48 console_start -EXPORT_SYMBOL vmlinux 0xacf0095c xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xace346f7 tty_register_driver +EXPORT_SYMBOL vmlinux 0xacf30c32 flow_rule_match_vlan EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup -EXPORT_SYMBOL vmlinux 0xacf5f448 nf_register_net_hook EXPORT_SYMBOL vmlinux 0xacf649bf audit_log_task_info +EXPORT_SYMBOL vmlinux 0xacfd681a kern_path_create EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex -EXPORT_SYMBOL vmlinux 0xad0bc7e8 nexthop_bucket_set_hw_flags -EXPORT_SYMBOL vmlinux 0xad16bcdc kmem_cache_create -EXPORT_SYMBOL vmlinux 0xad291a78 pagecache_isize_extended -EXPORT_SYMBOL vmlinux 0xad3cb8b9 writeback_inodes_sb -EXPORT_SYMBOL vmlinux 0xad45cb2c bdi_put -EXPORT_SYMBOL vmlinux 0xad552cea skb_checksum_trimmed -EXPORT_SYMBOL vmlinux 0xad638a15 elv_rb_latter_request -EXPORT_SYMBOL vmlinux 0xad722b50 register_netdevice +EXPORT_SYMBOL vmlinux 0xad14bee3 unregister_mii_timestamper +EXPORT_SYMBOL vmlinux 0xad38f015 xfrm_state_check_expire +EXPORT_SYMBOL vmlinux 0xad609d02 scsi_set_medium_removal EXPORT_SYMBOL vmlinux 0xad73041f autoremove_wake_function -EXPORT_SYMBOL vmlinux 0xad7e80d5 input_match_device_id -EXPORT_SYMBOL vmlinux 0xad7f3789 pid_task +EXPORT_SYMBOL vmlinux 0xad989730 scsi_add_device EXPORT_SYMBOL vmlinux 0xad995dac netdev_stats_to_stats64 -EXPORT_SYMBOL vmlinux 0xadaf0f7d ip_sock_set_recverr -EXPORT_SYMBOL vmlinux 0xadb583cb fs_param_is_fd -EXPORT_SYMBOL vmlinux 0xadb80962 skb_queue_tail -EXPORT_SYMBOL vmlinux 0xadba9169 snd_card_free_when_closed +EXPORT_SYMBOL vmlinux 0xad9c26ea input_get_timestamp +EXPORT_SYMBOL vmlinux 0xadadf204 simple_link +EXPORT_SYMBOL vmlinux 0xadb32464 inc_node_state +EXPORT_SYMBOL vmlinux 0xadb9483d md_unregister_thread EXPORT_SYMBOL vmlinux 0xadbeed61 mipi_dsi_packet_format_is_long -EXPORT_SYMBOL vmlinux 0xadc753ea del_random_ready_callback 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 0xadd85f97 cdrom_ioctl -EXPORT_SYMBOL vmlinux 0xadf248c4 __neigh_create -EXPORT_SYMBOL vmlinux 0xadfd6a25 scsi_add_device +EXPORT_SYMBOL vmlinux 0xadda010b update_region +EXPORT_SYMBOL vmlinux 0xade0fbb4 mmc_alloc_host +EXPORT_SYMBOL vmlinux 0xade613b2 module_refcount +EXPORT_SYMBOL vmlinux 0xadf8a237 dma_unmap_page_attrs EXPORT_SYMBOL vmlinux 0xadfdfcef __bitmap_andnot +EXPORT_SYMBOL vmlinux 0xae0114ea iov_iter_npages +EXPORT_SYMBOL vmlinux 0xae014542 fs_bio_set EXPORT_SYMBOL vmlinux 0xae04012c __vmalloc -EXPORT_SYMBOL vmlinux 0xae25c37d xfrm_find_acq_byseq +EXPORT_SYMBOL vmlinux 0xae067886 iov_iter_zero +EXPORT_SYMBOL vmlinux 0xae0db8f6 vlan_vids_add_by_dev +EXPORT_SYMBOL vmlinux 0xae30c13b framebuffer_release EXPORT_SYMBOL vmlinux 0xae316c11 icmpv6_err_convert EXPORT_SYMBOL vmlinux 0xae353d77 arm_copy_from_user +EXPORT_SYMBOL vmlinux 0xae4efda7 generic_iommu_put_resv_regions EXPORT_SYMBOL vmlinux 0xae577d60 _raw_spin_lock -EXPORT_SYMBOL vmlinux 0xaea07183 __vfs_removexattr +EXPORT_SYMBOL vmlinux 0xae5dac4d jbd2_journal_finish_inode_data_buffers +EXPORT_SYMBOL vmlinux 0xae693724 mr_table_alloc +EXPORT_SYMBOL vmlinux 0xae79becd __inet6_lookup_established +EXPORT_SYMBOL vmlinux 0xae7eb538 tcp_sock_set_syncnt +EXPORT_SYMBOL vmlinux 0xaea10848 __blk_mq_end_request EXPORT_SYMBOL vmlinux 0xaeac049a generate_random_guid -EXPORT_SYMBOL vmlinux 0xaeb09feb param_ops_ullong -EXPORT_SYMBOL vmlinux 0xaeb81a85 sock_init_data -EXPORT_SYMBOL vmlinux 0xaec1bf25 elv_rb_find -EXPORT_SYMBOL vmlinux 0xaec328e1 mmc_of_parse_clk_phase -EXPORT_SYMBOL vmlinux 0xaecaa908 security_lock_kernel_down -EXPORT_SYMBOL vmlinux 0xaedfc278 devm_extcon_register_notifier -EXPORT_SYMBOL vmlinux 0xaee1f3b3 netdev_adjacent_change_prepare -EXPORT_SYMBOL vmlinux 0xaee8656f __ip_mc_dec_group +EXPORT_SYMBOL vmlinux 0xaec12c72 jbd2_log_wait_commit +EXPORT_SYMBOL vmlinux 0xaecfb8f3 vfs_readlink +EXPORT_SYMBOL vmlinux 0xaee17d5a tcf_idr_create_from_flags EXPORT_SYMBOL vmlinux 0xaee95991 ZSTD_getDictID_fromFrame -EXPORT_SYMBOL vmlinux 0xaf11d32a of_parse_phandle_with_args_map +EXPORT_SYMBOL vmlinux 0xaeef68f3 devm_extcon_register_notifier_all +EXPORT_SYMBOL vmlinux 0xaefa824e scsi_device_put +EXPORT_SYMBOL vmlinux 0xaf096c3c netdev_txq_to_tc +EXPORT_SYMBOL vmlinux 0xaf11aa0c netdev_upper_dev_link EXPORT_SYMBOL vmlinux 0xaf16f615 ZSTD_DStreamOutSize EXPORT_SYMBOL vmlinux 0xaf178184 textsearch_prepare +EXPORT_SYMBOL vmlinux 0xaf3bb583 pci_prepare_to_sleep +EXPORT_SYMBOL vmlinux 0xaf3dc3dd genphy_read_status_fixed EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level -EXPORT_SYMBOL vmlinux 0xaf475bbb pci_alloc_dev EXPORT_SYMBOL vmlinux 0xaf50e76d elf_set_personality -EXPORT_SYMBOL vmlinux 0xaf6a66d7 vme_master_mmap +EXPORT_SYMBOL vmlinux 0xaf620c65 regset_get +EXPORT_SYMBOL vmlinux 0xaf6ea817 jbd2_journal_init_inode +EXPORT_SYMBOL vmlinux 0xaf760055 udp_gro_complete EXPORT_SYMBOL vmlinux 0xaf84865e __get_user_8 -EXPORT_SYMBOL vmlinux 0xaf87f1c8 devfreq_unregister_notifier -EXPORT_SYMBOL vmlinux 0xaf88bd01 snd_timer_resolution EXPORT_SYMBOL vmlinux 0xaf8aa518 system_rev EXPORT_SYMBOL vmlinux 0xaf9a0a2a radix_tree_tag_clear -EXPORT_SYMBOL vmlinux 0xaf9b9654 elm_decode_bch_error_page -EXPORT_SYMBOL vmlinux 0xafa5a9b3 tty_port_close_end +EXPORT_SYMBOL vmlinux 0xafaa24c2 pin_user_pages_locked EXPORT_SYMBOL vmlinux 0xafc08054 dotdot_name -EXPORT_SYMBOL vmlinux 0xafce5459 devm_rproc_add -EXPORT_SYMBOL vmlinux 0xafd15de7 cont_write_begin -EXPORT_SYMBOL vmlinux 0xafd786f0 sock_i_ino -EXPORT_SYMBOL vmlinux 0xafedc88a dm_put_device -EXPORT_SYMBOL vmlinux 0xafefda5d snd_info_free_entry -EXPORT_SYMBOL vmlinux 0xb000a861 input_allocate_device -EXPORT_SYMBOL vmlinux 0xb00309de neigh_lookup_nodev +EXPORT_SYMBOL vmlinux 0xafc8cdc6 dev_printk_emit +EXPORT_SYMBOL vmlinux 0xafe7cf3f fwnode_get_phy_id EXPORT_SYMBOL vmlinux 0xb011eae1 kstrtos16_from_user -EXPORT_SYMBOL vmlinux 0xb0186cf4 bioset_integrity_create +EXPORT_SYMBOL vmlinux 0xb016464c iw_handler_set_thrspy EXPORT_SYMBOL vmlinux 0xb01bebf9 xfrm_get_acqseq -EXPORT_SYMBOL vmlinux 0xb0282f8f fwnode_mdio_find_device -EXPORT_SYMBOL vmlinux 0xb02c021a inet6_csk_route_req +EXPORT_SYMBOL vmlinux 0xb0261fc9 unregister_qdisc +EXPORT_SYMBOL vmlinux 0xb0457892 dev_pick_tx_zero +EXPORT_SYMBOL vmlinux 0xb04d6f05 neigh_ifdown EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max -EXPORT_SYMBOL vmlinux 0xb071bab4 sock_no_sendmsg_locked -EXPORT_SYMBOL vmlinux 0xb084b8b5 tcp_poll -EXPORT_SYMBOL vmlinux 0xb092a107 __skb_checksum_complete -EXPORT_SYMBOL vmlinux 0xb097c11f gro_cells_init +EXPORT_SYMBOL vmlinux 0xb064e2b2 pcibios_bus_to_resource +EXPORT_SYMBOL vmlinux 0xb083443b sock_from_file +EXPORT_SYMBOL vmlinux 0xb0891441 sock_wmalloc +EXPORT_SYMBOL vmlinux 0xb093307c kthread_destroy_worker EXPORT_SYMBOL vmlinux 0xb0a0da0c rational_best_approximation -EXPORT_SYMBOL vmlinux 0xb0a2cee8 input_setup_polling EXPORT_SYMBOL vmlinux 0xb0a3c5d2 trace_print_symbols_seq -EXPORT_SYMBOL vmlinux 0xb0add605 __vfs_setxattr -EXPORT_SYMBOL vmlinux 0xb0b41b38 blk_pm_runtime_init -EXPORT_SYMBOL vmlinux 0xb0bc7b39 inode_permission -EXPORT_SYMBOL vmlinux 0xb0bd1e86 pci_write_config_word -EXPORT_SYMBOL vmlinux 0xb0c0fdc0 __lock_buffer +EXPORT_SYMBOL vmlinux 0xb0a490c5 pin_user_pages +EXPORT_SYMBOL vmlinux 0xb0b593e1 xfrm_policy_delete +EXPORT_SYMBOL vmlinux 0xb0c280d1 scsi_add_host_with_dma +EXPORT_SYMBOL vmlinux 0xb0c52878 vfs_fsync +EXPORT_SYMBOL vmlinux 0xb0c5c9e2 clk_bulk_get EXPORT_SYMBOL vmlinux 0xb0e10781 get_option -EXPORT_SYMBOL vmlinux 0xb0f32076 block_write_begin +EXPORT_SYMBOL vmlinux 0xb0f3c7b3 __inode_sub_bytes +EXPORT_SYMBOL vmlinux 0xb0fb1617 jbd2_journal_unlock_updates EXPORT_SYMBOL vmlinux 0xb10e7df4 __kfifo_dma_in_prepare -EXPORT_SYMBOL vmlinux 0xb10e7f83 neigh_seq_next EXPORT_SYMBOL vmlinux 0xb121390a probe_irq_on -EXPORT_SYMBOL vmlinux 0xb124728c nonseekable_open EXPORT_SYMBOL vmlinux 0xb12cbacb fb_unregister_client +EXPORT_SYMBOL vmlinux 0xb136cad0 udp6_set_csum +EXPORT_SYMBOL vmlinux 0xb1456881 xfrm_alloc_spi +EXPORT_SYMBOL vmlinux 0xb146856f ip_mc_check_igmp EXPORT_SYMBOL vmlinux 0xb147a855 dql_reset +EXPORT_SYMBOL vmlinux 0xb147d358 inode_init_owner EXPORT_SYMBOL vmlinux 0xb14ab1ef hdmi_audio_infoframe_init +EXPORT_SYMBOL vmlinux 0xb14af50a inc_zone_page_state EXPORT_SYMBOL vmlinux 0xb14fc46a find_next_clump8 -EXPORT_SYMBOL vmlinux 0xb184d78b iov_iter_advance -EXPORT_SYMBOL vmlinux 0xb18cadef serio_interrupt -EXPORT_SYMBOL vmlinux 0xb19bc966 kern_path -EXPORT_SYMBOL vmlinux 0xb1ac5555 tcp_mtup_init +EXPORT_SYMBOL vmlinux 0xb1569756 fscrypt_decrypt_pagecache_blocks +EXPORT_SYMBOL vmlinux 0xb15a408d sock_enable_timestamps +EXPORT_SYMBOL vmlinux 0xb15fe9e1 blk_mq_init_queue +EXPORT_SYMBOL vmlinux 0xb160166b __post_watch_notification +EXPORT_SYMBOL vmlinux 0xb16a5f48 snd_pcm_hw_constraint_mask64 +EXPORT_SYMBOL vmlinux 0xb181b76e cdev_init +EXPORT_SYMBOL vmlinux 0xb196e3f5 i2c_smbus_read_byte_data +EXPORT_SYMBOL vmlinux 0xb1970393 snd_pcm_lib_malloc_pages EXPORT_SYMBOL vmlinux 0xb1ad28e0 __gnu_mcount_nc -EXPORT_SYMBOL vmlinux 0xb1b64564 snd_device_new +EXPORT_SYMBOL vmlinux 0xb1bf03ca xfrm_state_update EXPORT_SYMBOL vmlinux 0xb1c3a01a oops_in_progress EXPORT_SYMBOL vmlinux 0xb1d3a15c blk_finish_plug EXPORT_SYMBOL vmlinux 0xb1ddf995 jiffies_64_to_clock_t -EXPORT_SYMBOL vmlinux 0xb1f6e1cd vme_bus_num -EXPORT_SYMBOL vmlinux 0xb1fdc13f mini_qdisc_pair_swap -EXPORT_SYMBOL vmlinux 0xb2068d79 security_path_mknod -EXPORT_SYMBOL vmlinux 0xb20ba504 proc_set_size -EXPORT_SYMBOL vmlinux 0xb20e2644 snd_card_file_remove -EXPORT_SYMBOL vmlinux 0xb2123a5c security_sctp_assoc_request +EXPORT_SYMBOL vmlinux 0xb1e7d24e xfrm6_rcv_encap +EXPORT_SYMBOL vmlinux 0xb1eee303 bio_copy_data +EXPORT_SYMBOL vmlinux 0xb20ab8c5 inode_io_list_del EXPORT_SYMBOL vmlinux 0xb22e16d5 radix_tree_maybe_preload -EXPORT_SYMBOL vmlinux 0xb23b1c05 d_add -EXPORT_SYMBOL vmlinux 0xb24641ce blk_rq_map_kern EXPORT_SYMBOL vmlinux 0xb249a391 omap_request_dma -EXPORT_SYMBOL vmlinux 0xb24a25ce jbd2_journal_check_used_features -EXPORT_SYMBOL vmlinux 0xb24f52a3 submit_bio -EXPORT_SYMBOL vmlinux 0xb2553e7c mnt_drop_write_file -EXPORT_SYMBOL vmlinux 0xb272c437 sk_filter_trim_cap +EXPORT_SYMBOL vmlinux 0xb24a5483 phy_set_sym_pause +EXPORT_SYMBOL vmlinux 0xb255c7bc d_obtain_root EXPORT_SYMBOL vmlinux 0xb286c477 qcom_scm_set_warm_boot_addr -EXPORT_SYMBOL vmlinux 0xb2d2cbf7 tcp_v4_destroy_sock +EXPORT_SYMBOL vmlinux 0xb2885e09 snd_pcm_new +EXPORT_SYMBOL vmlinux 0xb2aaa01b scsi_host_busy +EXPORT_SYMBOL vmlinux 0xb2b8302f filemap_fdatawait_keep_errors +EXPORT_SYMBOL vmlinux 0xb2bf5ab0 has_capability EXPORT_SYMBOL vmlinux 0xb2d48a2e queue_work_on -EXPORT_SYMBOL vmlinux 0xb2dad235 file_write_and_wait_range -EXPORT_SYMBOL vmlinux 0xb2e1783e vme_irq_handler +EXPORT_SYMBOL vmlinux 0xb2e2590e tcp_sock_set_cork EXPORT_SYMBOL vmlinux 0xb2e5ae4a snd_lookup_minor_data -EXPORT_SYMBOL vmlinux 0xb2f33e7d rtnl_set_sk_err +EXPORT_SYMBOL vmlinux 0xb2f33923 snd_timer_new EXPORT_SYMBOL vmlinux 0xb2f579c7 __cpuhp_remove_state_cpuslocked -EXPORT_SYMBOL vmlinux 0xb2fbc694 tcf_qevent_handle +EXPORT_SYMBOL vmlinux 0xb2fa5e2a from_kuid_munged +EXPORT_SYMBOL vmlinux 0xb2fc8dda xfrm_policy_flush EXPORT_SYMBOL vmlinux 0xb308c97d wait_woken +EXPORT_SYMBOL vmlinux 0xb30aebdd dma_resv_reserve_shared EXPORT_SYMBOL vmlinux 0xb30b9822 vme_master_set -EXPORT_SYMBOL vmlinux 0xb3179651 nand_ecc_sw_bch_calculate EXPORT_SYMBOL vmlinux 0xb320cc0e sg_init_one EXPORT_SYMBOL vmlinux 0xb3258f79 __ubsan_handle_type_mismatch_v1 +EXPORT_SYMBOL vmlinux 0xb32638e4 mpage_writepage EXPORT_SYMBOL vmlinux 0xb32728bb qcom_scm_iommu_secure_ptbl_init -EXPORT_SYMBOL vmlinux 0xb335b14b vfs_clone_file_range -EXPORT_SYMBOL vmlinux 0xb35e260b ps2_cmd_aborted EXPORT_SYMBOL vmlinux 0xb3667805 dqstats -EXPORT_SYMBOL vmlinux 0xb367846d pci_resize_resource EXPORT_SYMBOL vmlinux 0xb3687850 out_of_line_wait_on_bit_lock -EXPORT_SYMBOL vmlinux 0xb373f798 kiocb_set_cancel_fn -EXPORT_SYMBOL vmlinux 0xb37b0139 param_get_ushort +EXPORT_SYMBOL vmlinux 0xb3737614 single_open_size +EXPORT_SYMBOL vmlinux 0xb38b0328 ip_fraglist_prepare +EXPORT_SYMBOL vmlinux 0xb38bad8b read_cache_pages +EXPORT_SYMBOL vmlinux 0xb39c5a43 inet_csk_reqsk_queue_add +EXPORT_SYMBOL vmlinux 0xb3abad95 ptp_find_pin EXPORT_SYMBOL vmlinux 0xb3bd68cc security_secmark_relabel_packet -EXPORT_SYMBOL vmlinux 0xb3c0d199 unregister_console +EXPORT_SYMBOL vmlinux 0xb3bfd06f tcp_prot EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string -EXPORT_SYMBOL vmlinux 0xb3d5f7d7 dentry_open -EXPORT_SYMBOL vmlinux 0xb3d9446e inode_dio_wait -EXPORT_SYMBOL vmlinux 0xb3dcb5bb dev_alloc_name -EXPORT_SYMBOL vmlinux 0xb3dce1ff page_mapping -EXPORT_SYMBOL vmlinux 0xb3df031d dec_node_page_state +EXPORT_SYMBOL vmlinux 0xb3e538d0 bio_integrity_clone EXPORT_SYMBOL vmlinux 0xb3f7646e kthread_should_stop -EXPORT_SYMBOL vmlinux 0xb3f9e0ab security_locked_down -EXPORT_SYMBOL vmlinux 0xb3ff39aa __sk_receive_skb -EXPORT_SYMBOL vmlinux 0xb41b725d file_open_root +EXPORT_SYMBOL vmlinux 0xb404ebf3 pcibios_resource_to_bus +EXPORT_SYMBOL vmlinux 0xb41f6357 udp_disconnect +EXPORT_SYMBOL vmlinux 0xb4216888 register_md_cluster_operations EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked -EXPORT_SYMBOL vmlinux 0xb4312098 fs_param_is_enum -EXPORT_SYMBOL vmlinux 0xb442ff6c tcp_sock_set_user_timeout +EXPORT_SYMBOL vmlinux 0xb43043c0 forget_cached_acl +EXPORT_SYMBOL vmlinux 0xb43220df cdrom_open EXPORT_SYMBOL vmlinux 0xb4471bfe down_trylock +EXPORT_SYMBOL vmlinux 0xb44e35e7 ip_output EXPORT_SYMBOL vmlinux 0xb4519a8f string_escape_mem -EXPORT_SYMBOL vmlinux 0xb46c7037 phy_validate_pause +EXPORT_SYMBOL vmlinux 0xb4671883 tag_pages_for_writeback +EXPORT_SYMBOL vmlinux 0xb47365b5 tcf_block_netif_keep_dst EXPORT_SYMBOL vmlinux 0xb476c8f4 ZSTD_decompress_usingDict -EXPORT_SYMBOL vmlinux 0xb476fe8c ipv6_chk_addr -EXPORT_SYMBOL vmlinux 0xb4779421 jbd2_journal_finish_inode_data_buffers -EXPORT_SYMBOL vmlinux 0xb47a14b8 pci_request_region +EXPORT_SYMBOL vmlinux 0xb4790541 __dquot_alloc_space +EXPORT_SYMBOL vmlinux 0xb47cfdd3 netif_rx_any_context EXPORT_SYMBOL vmlinux 0xb48d4d22 security_sb_eat_lsm_opts EXPORT_SYMBOL vmlinux 0xb4910192 arm_dma_zone_size -EXPORT_SYMBOL vmlinux 0xb4912eb0 dma_async_device_register -EXPORT_SYMBOL vmlinux 0xb499fc14 snd_pcm_stop -EXPORT_SYMBOL vmlinux 0xb49ebc98 input_unregister_handle -EXPORT_SYMBOL vmlinux 0xb4adc3fa mdiobus_get_phy +EXPORT_SYMBOL vmlinux 0xb496ec9e skb_copy_and_hash_datagram_iter +EXPORT_SYMBOL vmlinux 0xb49fa865 netif_set_real_num_queues EXPORT_SYMBOL vmlinux 0xb4b1e6d1 __xa_alloc -EXPORT_SYMBOL vmlinux 0xb4c60af8 phy_driver_register -EXPORT_SYMBOL vmlinux 0xb4e16813 xfrm_policy_unregister_afinfo +EXPORT_SYMBOL vmlinux 0xb4db0468 dm_kcopyd_zero +EXPORT_SYMBOL vmlinux 0xb4dc036e rproc_elf_get_boot_addr +EXPORT_SYMBOL vmlinux 0xb4de470f fwnode_mdio_find_device +EXPORT_SYMBOL vmlinux 0xb4e444ad nf_register_net_hooks EXPORT_SYMBOL vmlinux 0xb4f13d2a abort -EXPORT_SYMBOL vmlinux 0xb4f366a5 nf_register_queue_handler -EXPORT_SYMBOL vmlinux 0xb5074370 blk_set_queue_depth -EXPORT_SYMBOL vmlinux 0xb512f188 __hw_addr_ref_sync_dev -EXPORT_SYMBOL vmlinux 0xb51e3774 scsi_host_busy -EXPORT_SYMBOL vmlinux 0xb526b777 page_pool_update_nid -EXPORT_SYMBOL vmlinux 0xb52db266 netlink_net_capable -EXPORT_SYMBOL vmlinux 0xb53865d2 set_disk_ro -EXPORT_SYMBOL vmlinux 0xb53fccd9 dev_pick_tx_zero -EXPORT_SYMBOL vmlinux 0xb540d7ae ppp_unregister_compressor -EXPORT_SYMBOL vmlinux 0xb559001e serio_unregister_port +EXPORT_SYMBOL vmlinux 0xb51f50c8 devfreq_remove_governor +EXPORT_SYMBOL vmlinux 0xb530fa8d netdev_alert +EXPORT_SYMBOL vmlinux 0xb54551cb blk_mq_unique_tag +EXPORT_SYMBOL vmlinux 0xb54598e4 dev_mc_add_global +EXPORT_SYMBOL vmlinux 0xb5480080 scsi_free_host_dev +EXPORT_SYMBOL vmlinux 0xb5489e59 sock_create_kern EXPORT_SYMBOL vmlinux 0xb57343c2 frontswap_shrink -EXPORT_SYMBOL vmlinux 0xb5770371 ipv6_find_hdr -EXPORT_SYMBOL vmlinux 0xb58431c5 _dev_crit +EXPORT_SYMBOL vmlinux 0xb5756e35 page_pool_create +EXPORT_SYMBOL vmlinux 0xb5783ff1 netdev_name_node_alt_create +EXPORT_SYMBOL vmlinux 0xb5804f99 timestamp_truncate EXPORT_SYMBOL vmlinux 0xb58aeaab kernel_cpustat -EXPORT_SYMBOL vmlinux 0xb58c52cc tcp_get_cookie_sock EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev -EXPORT_SYMBOL vmlinux 0xb5a6cb89 genphy_aneg_done EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy -EXPORT_SYMBOL vmlinux 0xb5acec5a kernel_write -EXPORT_SYMBOL vmlinux 0xb5afe3c1 con_copy_unimap -EXPORT_SYMBOL vmlinux 0xb5b42413 scsi_report_opcode EXPORT_SYMBOL vmlinux 0xb5b63711 fileattr_fill_xflags -EXPORT_SYMBOL vmlinux 0xb5b9e84d gnet_stats_copy_basic_hw -EXPORT_SYMBOL vmlinux 0xb5cdf08a d_find_any_alias +EXPORT_SYMBOL vmlinux 0xb5cec695 pci_get_device +EXPORT_SYMBOL vmlinux 0xb5d1427d dm_table_event +EXPORT_SYMBOL vmlinux 0xb5fb25ed vfs_mkobj EXPORT_SYMBOL vmlinux 0xb5fdc18f mutex_is_locked -EXPORT_SYMBOL vmlinux 0xb5fffc47 bdev_read_only -EXPORT_SYMBOL vmlinux 0xb602dbd2 bioset_init -EXPORT_SYMBOL vmlinux 0xb6078c0a fs_param_is_bool -EXPORT_SYMBOL vmlinux 0xb6175e63 __block_write_begin -EXPORT_SYMBOL vmlinux 0xb6180a03 inet_rtx_syn_ack -EXPORT_SYMBOL vmlinux 0xb627eaa2 invalidate_inode_buffers -EXPORT_SYMBOL vmlinux 0xb63110cb pci_match_id -EXPORT_SYMBOL vmlinux 0xb6330e9a km_state_expired +EXPORT_SYMBOL vmlinux 0xb605d6b5 mipi_dsi_dcs_enter_sleep_mode +EXPORT_SYMBOL vmlinux 0xb60b8e12 fib_default_rule_add +EXPORT_SYMBOL vmlinux 0xb61afc8a devm_ioremap +EXPORT_SYMBOL vmlinux 0xb622f232 bdi_put +EXPORT_SYMBOL vmlinux 0xb62b6c08 block_read_full_page EXPORT_SYMBOL vmlinux 0xb633f115 irq_poll_enable -EXPORT_SYMBOL vmlinux 0xb638c859 tcf_get_next_chain -EXPORT_SYMBOL vmlinux 0xb65068be get_user_pages_remote -EXPORT_SYMBOL vmlinux 0xb65c98b2 __pagevec_release +EXPORT_SYMBOL vmlinux 0xb63508e2 __sk_mem_reduce_allocated +EXPORT_SYMBOL vmlinux 0xb6362b63 snd_ctl_rename_id +EXPORT_SYMBOL vmlinux 0xb63dd7b3 vm_mmap +EXPORT_SYMBOL vmlinux 0xb644ff5d unmap_mapping_range EXPORT_SYMBOL vmlinux 0xb664a4e8 kvrealloc -EXPORT_SYMBOL vmlinux 0xb66cbcc7 of_find_i2c_device_by_node -EXPORT_SYMBOL vmlinux 0xb66deab6 genphy_soft_reset -EXPORT_SYMBOL vmlinux 0xb67664e5 inet_del_protocol +EXPORT_SYMBOL vmlinux 0xb6753857 blk_execute_rq EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt EXPORT_SYMBOL vmlinux 0xb67c9280 utf8cursor +EXPORT_SYMBOL vmlinux 0xb67dfe9d rdmacg_try_charge EXPORT_SYMBOL vmlinux 0xb67fec0e uuid_parse EXPORT_SYMBOL vmlinux 0xb6896671 crc_t10dif -EXPORT_SYMBOL vmlinux 0xb68feea6 jbd2_journal_start_reserved +EXPORT_SYMBOL vmlinux 0xb68be6c4 tcf_qevent_handle EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin -EXPORT_SYMBOL vmlinux 0xb6a72078 jbd2_journal_flush -EXPORT_SYMBOL vmlinux 0xb6a85b57 tcf_idr_cleanup -EXPORT_SYMBOL vmlinux 0xb6aba37b xfrm4_protocol_register +EXPORT_SYMBOL vmlinux 0xb69b86df inet6_del_offload EXPORT_SYMBOL vmlinux 0xb6acaa13 phy_sfp_detach -EXPORT_SYMBOL vmlinux 0xb6afe79c pci_find_bus EXPORT_SYMBOL vmlinux 0xb6b6284e xz_dec_run -EXPORT_SYMBOL vmlinux 0xb6c7a43a tty_devnum -EXPORT_SYMBOL vmlinux 0xb6dcbba2 xfrm_state_free -EXPORT_SYMBOL vmlinux 0xb6dcd169 fs_param_is_u32 +EXPORT_SYMBOL vmlinux 0xb6ccaa1f fb_set_cmap +EXPORT_SYMBOL vmlinux 0xb6cd96ab tcf_action_set_ctrlact +EXPORT_SYMBOL vmlinux 0xb6d62086 kthread_blkcg +EXPORT_SYMBOL vmlinux 0xb6db9367 phy_config_aneg +EXPORT_SYMBOL vmlinux 0xb6e324f3 flow_block_cb_alloc EXPORT_SYMBOL vmlinux 0xb6e36ce2 psched_ratecfg_precompute -EXPORT_SYMBOL vmlinux 0xb6f207ed inet_listen -EXPORT_SYMBOL vmlinux 0xb6f3d88c of_get_mac_address EXPORT_SYMBOL vmlinux 0xb6f859f4 _raw_read_lock_bh -EXPORT_SYMBOL vmlinux 0xb6fa5832 find_inode_nowait EXPORT_SYMBOL vmlinux 0xb6fde909 close_fd +EXPORT_SYMBOL vmlinux 0xb702cc79 __register_binfmt +EXPORT_SYMBOL vmlinux 0xb7092a54 component_match_add_typed +EXPORT_SYMBOL vmlinux 0xb7140ff9 flow_block_cb_lookup EXPORT_SYMBOL vmlinux 0xb71589f0 skip_spaces -EXPORT_SYMBOL vmlinux 0xb71c6e4b flow_block_cb_incref EXPORT_SYMBOL vmlinux 0xb71d986d snd_pcm_hw_limit_rates EXPORT_SYMBOL vmlinux 0xb71ed69f __hw_addr_unsync -EXPORT_SYMBOL vmlinux 0xb7203eff mmc_erase_group_aligned EXPORT_SYMBOL vmlinux 0xb7362c90 do_wait_intr_irq -EXPORT_SYMBOL vmlinux 0xb73afaed dev_pick_tx_cpu_id +EXPORT_SYMBOL vmlinux 0xb742fc73 pci_dev_put +EXPORT_SYMBOL vmlinux 0xb74cb83e jbd2__journal_restart EXPORT_SYMBOL vmlinux 0xb7566933 kstrtos8_from_user -EXPORT_SYMBOL vmlinux 0xb764f6f8 register_cdrom -EXPORT_SYMBOL vmlinux 0xb7683857 tcf_exts_dump +EXPORT_SYMBOL vmlinux 0xb75fe427 ww_mutex_lock +EXPORT_SYMBOL vmlinux 0xb764cda4 key_alloc EXPORT_SYMBOL vmlinux 0xb7688155 ucc_slow_init -EXPORT_SYMBOL vmlinux 0xb770fa6f call_fib_notifiers -EXPORT_SYMBOL vmlinux 0xb775f412 seq_put_decimal_ll -EXPORT_SYMBOL vmlinux 0xb779ec28 kernel_recvmsg +EXPORT_SYMBOL vmlinux 0xb77c2a05 netpoll_send_udp EXPORT_SYMBOL vmlinux 0xb784154f utf8_casefold_hash EXPORT_SYMBOL vmlinux 0xb78debe3 LZ4_decompress_fast_usingDict EXPORT_SYMBOL vmlinux 0xb78e2050 qcom_scm_pas_init_image -EXPORT_SYMBOL vmlinux 0xb7a89aac generic_ro_fops EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags -EXPORT_SYMBOL vmlinux 0xb7dda92f rproc_del +EXPORT_SYMBOL vmlinux 0xb7d0d7b7 inet6_csk_route_req +EXPORT_SYMBOL vmlinux 0xb7d1593b dquot_quota_sync +EXPORT_SYMBOL vmlinux 0xb7d3c23c bh_submit_read EXPORT_SYMBOL vmlinux 0xb7df0e97 ZSTD_DDictWorkspaceBound -EXPORT_SYMBOL vmlinux 0xb7e034b9 snd_pcm_lib_get_vmalloc_page -EXPORT_SYMBOL vmlinux 0xb7ec7f9b scsi_device_set_state -EXPORT_SYMBOL vmlinux 0xb7ed345f register_shrinker +EXPORT_SYMBOL vmlinux 0xb7ec8f97 consume_skb +EXPORT_SYMBOL vmlinux 0xb7f00261 wait_on_page_private_2_killable +EXPORT_SYMBOL vmlinux 0xb7f4396a napi_schedule_prep EXPORT_SYMBOL vmlinux 0xb7ff182f down_read_killable -EXPORT_SYMBOL vmlinux 0xb8013e35 mfd_cell_disable -EXPORT_SYMBOL vmlinux 0xb82fc6cd pm860x_set_bits -EXPORT_SYMBOL vmlinux 0xb834a0eb scsi_command_normalize_sense -EXPORT_SYMBOL vmlinux 0xb83b071f security_sb_remount +EXPORT_SYMBOL vmlinux 0xb807e5ef ps2_drain +EXPORT_SYMBOL vmlinux 0xb827e9cd eth_header +EXPORT_SYMBOL vmlinux 0xb82f85a0 inet_dev_addr_type +EXPORT_SYMBOL vmlinux 0xb8424628 tty_unlock EXPORT_SYMBOL vmlinux 0xb842716c qcom_scm_ocmem_lock_available -EXPORT_SYMBOL vmlinux 0xb8441642 register_qdisc -EXPORT_SYMBOL vmlinux 0xb852754b rproc_detach -EXPORT_SYMBOL vmlinux 0xb8556bfc init_net +EXPORT_SYMBOL vmlinux 0xb84353fe vfs_tmpfile +EXPORT_SYMBOL vmlinux 0xb84802b1 twl6040_reg_write +EXPORT_SYMBOL vmlinux 0xb85159cd dquot_initialize_needed +EXPORT_SYMBOL vmlinux 0xb8527809 mr_table_dump +EXPORT_SYMBOL vmlinux 0xb8533db2 netpoll_print_options +EXPORT_SYMBOL vmlinux 0xb85bc508 km_query EXPORT_SYMBOL vmlinux 0xb864b84b ZSTD_decompressBlock +EXPORT_SYMBOL vmlinux 0xb868651d vfs_fileattr_get EXPORT_SYMBOL vmlinux 0xb868ac5c register_sysrq_key -EXPORT_SYMBOL vmlinux 0xb875e79d phy_sfp_probe -EXPORT_SYMBOL vmlinux 0xb87941de security_inode_setsecctx -EXPORT_SYMBOL vmlinux 0xb880d13e dev_set_allmulti +EXPORT_SYMBOL vmlinux 0xb86da247 skb_coalesce_rx_frag EXPORT_SYMBOL vmlinux 0xb89b6e6b guid_parse EXPORT_SYMBOL vmlinux 0xb8a6ffeb __kfifo_dma_out_prepare_r -EXPORT_SYMBOL vmlinux 0xb8ab8170 devm_ioremap EXPORT_SYMBOL vmlinux 0xb8b043f2 kfree_link +EXPORT_SYMBOL vmlinux 0xb8b60087 tcf_idr_check_alloc +EXPORT_SYMBOL vmlinux 0xb8c1c4f8 free_cgroup_ns EXPORT_SYMBOL vmlinux 0xb8c66c45 dma_fence_get_status +EXPORT_SYMBOL vmlinux 0xb8ce4974 irq_domain_set_info +EXPORT_SYMBOL vmlinux 0xb8cf7a88 skb_copy_header +EXPORT_SYMBOL vmlinux 0xb8df05e8 d_obtain_alias EXPORT_SYMBOL vmlinux 0xb8e39d53 percpu_counter_sync +EXPORT_SYMBOL vmlinux 0xb901ff11 __generic_file_fsync EXPORT_SYMBOL vmlinux 0xb9056bb6 remove_conflicting_framebuffers +EXPORT_SYMBOL vmlinux 0xb909b7f8 input_register_handler +EXPORT_SYMBOL vmlinux 0xb90cddd6 fd_install +EXPORT_SYMBOL vmlinux 0xb90d7955 mmc_command_done +EXPORT_SYMBOL vmlinux 0xb90ff60b __vfs_getxattr EXPORT_SYMBOL vmlinux 0xb911bb58 minmax_running_max -EXPORT_SYMBOL vmlinux 0xb91f9b41 dquot_initialize -EXPORT_SYMBOL vmlinux 0xb92e7c3a dentry_path_raw -EXPORT_SYMBOL vmlinux 0xb9376f2d serial8250_register_8250_port +EXPORT_SYMBOL vmlinux 0xb9146311 scsi_vpd_lun_id +EXPORT_SYMBOL vmlinux 0xb92de5a7 scsi_device_quiesce +EXPORT_SYMBOL vmlinux 0xb937ce33 kfree_skb_partial EXPORT_SYMBOL vmlinux 0xb94339c4 qdisc_put_stab -EXPORT_SYMBOL vmlinux 0xb947e6c4 tcp_simple_retransmit -EXPORT_SYMBOL vmlinux 0xb95cc423 skb_prepare_seq_read EXPORT_SYMBOL vmlinux 0xb95f98d6 _memset_io EXPORT_SYMBOL vmlinux 0xb9638db4 snd_pcm_rate_to_rate_bit +EXPORT_SYMBOL vmlinux 0xb963a054 udp_sk_rx_dst_set EXPORT_SYMBOL vmlinux 0xb97220ff bitmap_parse -EXPORT_SYMBOL vmlinux 0xb97eb7c7 tty_driver_kref_put +EXPORT_SYMBOL vmlinux 0xb980e910 security_path_unlink EXPORT_SYMBOL vmlinux 0xb9975d25 __traceiter_kmem_cache_alloc_node -EXPORT_SYMBOL vmlinux 0xb99e9b41 rpmh_write_batch +EXPORT_SYMBOL vmlinux 0xb99bf4c7 sock_no_socketpair +EXPORT_SYMBOL vmlinux 0xb99de81e xp_dma_sync_for_device_slow EXPORT_SYMBOL vmlinux 0xb9a613c6 __kmalloc_track_caller +EXPORT_SYMBOL vmlinux 0xb9a89eae of_find_node_opts_by_path EXPORT_SYMBOL vmlinux 0xb9a8f03b omap_stop_dma -EXPORT_SYMBOL vmlinux 0xb9a90269 keyring_search EXPORT_SYMBOL vmlinux 0xb9acd3d9 __put_user_2 -EXPORT_SYMBOL vmlinux 0xb9b47472 vmap -EXPORT_SYMBOL vmlinux 0xb9b84e34 tty_lock +EXPORT_SYMBOL vmlinux 0xb9bef1cc skb_ensure_writable +EXPORT_SYMBOL vmlinux 0xb9e860e9 param_get_hexint EXPORT_SYMBOL vmlinux 0xb9e8e2cc in6addr_sitelocal_allrouters -EXPORT_SYMBOL vmlinux 0xb9f9f5b2 pcie_capability_read_word +EXPORT_SYMBOL vmlinux 0xb9f1cfde blk_mq_init_allocated_queue EXPORT_SYMBOL vmlinux 0xb9fc381a qcom_scm_hdcp_req -EXPORT_SYMBOL vmlinux 0xba135e7a netdev_update_features -EXPORT_SYMBOL vmlinux 0xba14e57c snd_ctl_add -EXPORT_SYMBOL vmlinux 0xba234b8f copy_page_from_iter -EXPORT_SYMBOL vmlinux 0xba28ee21 snd_pcm_hw_constraint_ranges +EXPORT_SYMBOL vmlinux 0xb9feda97 __find_get_block +EXPORT_SYMBOL vmlinux 0xba08396b generic_ro_fops +EXPORT_SYMBOL vmlinux 0xba0bd9c3 phy_read_paged +EXPORT_SYMBOL vmlinux 0xba16fd7a finalize_exec +EXPORT_SYMBOL vmlinux 0xba28e860 pci_enable_device_mem +EXPORT_SYMBOL vmlinux 0xba2bbbef sget_fc +EXPORT_SYMBOL vmlinux 0xba3f4b52 tty_do_resize EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy -EXPORT_SYMBOL vmlinux 0xba4efc9a dns_query +EXPORT_SYMBOL vmlinux 0xba4d77a1 security_path_rename EXPORT_SYMBOL vmlinux 0xba53adab nla_policy_len -EXPORT_SYMBOL vmlinux 0xba5a91d3 eth_header_cache -EXPORT_SYMBOL vmlinux 0xba614d91 mmc_is_req_done +EXPORT_SYMBOL vmlinux 0xba5a36a0 pci_disable_device EXPORT_SYMBOL vmlinux 0xba707a78 qe_get_brg_clk -EXPORT_SYMBOL vmlinux 0xba722e94 phy_get_internal_delay -EXPORT_SYMBOL vmlinux 0xba7fdeb2 devm_devfreq_unregister_opp_notifier -EXPORT_SYMBOL vmlinux 0xba806a7e generic_block_bmap -EXPORT_SYMBOL vmlinux 0xba8b503f snd_pcm_hw_param_last -EXPORT_SYMBOL vmlinux 0xba9b9310 tcp_md5_do_del -EXPORT_SYMBOL vmlinux 0xbaad2c43 backlight_device_get_by_name -EXPORT_SYMBOL vmlinux 0xbabbeaa2 sock_alloc_file -EXPORT_SYMBOL vmlinux 0xbacabbcc dev_get_mac_address -EXPORT_SYMBOL vmlinux 0xbad19e22 cfb_imageblit -EXPORT_SYMBOL vmlinux 0xbad49163 d_alloc_anon -EXPORT_SYMBOL vmlinux 0xbaf7562c dput +EXPORT_SYMBOL vmlinux 0xbabc8aba truncate_pagecache_range +EXPORT_SYMBOL vmlinux 0xbae0edb7 skb_free_datagram +EXPORT_SYMBOL vmlinux 0xbae407ca dev_add_pack +EXPORT_SYMBOL vmlinux 0xbaed487a zero_user_segments EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset -EXPORT_SYMBOL vmlinux 0xbb087c4d input_get_timestamp +EXPORT_SYMBOL vmlinux 0xbb07bfbc tcf_exts_dump_stats +EXPORT_SYMBOL vmlinux 0xbb0a4607 iov_iter_xarray +EXPORT_SYMBOL vmlinux 0xbb0c6755 scsicam_bios_param +EXPORT_SYMBOL vmlinux 0xbb1048c6 skb_flow_get_icmp_tci EXPORT_SYMBOL vmlinux 0xbb14eb31 bcmp -EXPORT_SYMBOL vmlinux 0xbb14fce4 devfreq_monitor_start -EXPORT_SYMBOL vmlinux 0xbb1ec384 fget_raw +EXPORT_SYMBOL vmlinux 0xbb22650b mmc_gpio_set_cd_isr EXPORT_SYMBOL vmlinux 0xbb24f607 init_cdrom_command +EXPORT_SYMBOL vmlinux 0xbb2da36e dev_queue_xmit EXPORT_SYMBOL vmlinux 0xbb2df1ec __cond_resched_rwlock_write EXPORT_SYMBOL vmlinux 0xbb35675b __bitmap_intersects -EXPORT_SYMBOL vmlinux 0xbb36ceb2 snd_pcm_hw_constraint_msbits -EXPORT_SYMBOL vmlinux 0xbb443843 devm_ioremap_np -EXPORT_SYMBOL vmlinux 0xbb4f64a3 flow_rule_match_basic -EXPORT_SYMBOL vmlinux 0xbb581bc9 vfs_fileattr_set -EXPORT_SYMBOL vmlinux 0xbb59d2b0 mr_mfc_seq_idx -EXPORT_SYMBOL vmlinux 0xbb5b9177 dcb_ieee_delapp -EXPORT_SYMBOL vmlinux 0xbb5fc002 generic_permission -EXPORT_SYMBOL vmlinux 0xbb6f1e2a unix_attach_fds +EXPORT_SYMBOL vmlinux 0xbb4d78e2 pci_unmap_rom +EXPORT_SYMBOL vmlinux 0xbb532ea2 key_task_permission +EXPORT_SYMBOL vmlinux 0xbb59e98d __register_chrdev EXPORT_SYMBOL vmlinux 0xbb72d4fe __put_user_1 -EXPORT_SYMBOL vmlinux 0xbb73d71f may_umount_tree -EXPORT_SYMBOL vmlinux 0xbb8cab3c f_setown -EXPORT_SYMBOL vmlinux 0xbb922529 mipi_dsi_dcs_write -EXPORT_SYMBOL vmlinux 0xbba11fcd max8925_bulk_write -EXPORT_SYMBOL vmlinux 0xbba48939 dm_table_get_mode -EXPORT_SYMBOL vmlinux 0xbbda62ea __mdiobus_read -EXPORT_SYMBOL vmlinux 0xbbdcf180 i2c_verify_adapter -EXPORT_SYMBOL vmlinux 0xbbe7259b snd_dma_alloc_pages_fallback -EXPORT_SYMBOL vmlinux 0xbbfac7d9 seq_open_private -EXPORT_SYMBOL vmlinux 0xbc06192f genphy_suspend -EXPORT_SYMBOL vmlinux 0xbc072b4b dev_pm_opp_unregister_notifier +EXPORT_SYMBOL vmlinux 0xbbd329cd page_pool_release_page +EXPORT_SYMBOL vmlinux 0xbbded185 pci_bus_find_capability +EXPORT_SYMBOL vmlinux 0xbbe0366e iw_handler_get_thrspy +EXPORT_SYMBOL vmlinux 0xbbe7cdd5 no_seek_end_llseek +EXPORT_SYMBOL vmlinux 0xbbe7d32d generic_update_time +EXPORT_SYMBOL vmlinux 0xbbeda50c locks_copy_conflock +EXPORT_SYMBOL vmlinux 0xbbfafa95 pci_bus_alloc_resource +EXPORT_SYMBOL vmlinux 0xbbfc7b36 nand_ecc_get_sw_engine +EXPORT_SYMBOL vmlinux 0xbc0fdaaa dma_async_device_register EXPORT_SYMBOL vmlinux 0xbc10dd97 __put_user_4 -EXPORT_SYMBOL vmlinux 0xbc1192c8 qdisc_watchdog_init -EXPORT_SYMBOL vmlinux 0xbc8cc0b2 netpoll_poll_enable -EXPORT_SYMBOL vmlinux 0xbc9b9565 pcie_capability_write_dword -EXPORT_SYMBOL vmlinux 0xbc9c9ab9 phy_set_max_speed +EXPORT_SYMBOL vmlinux 0xbc252056 audit_log +EXPORT_SYMBOL vmlinux 0xbc2e8faf set_disk_ro +EXPORT_SYMBOL vmlinux 0xbc762f02 scsi_unblock_requests +EXPORT_SYMBOL vmlinux 0xbc81a78b __skb_gro_checksum_complete EXPORT_SYMBOL vmlinux 0xbcab6ee6 sscanf -EXPORT_SYMBOL vmlinux 0xbcb4642a netdev_port_same_parent_id -EXPORT_SYMBOL vmlinux 0xbcb65768 pci_prepare_to_sleep -EXPORT_SYMBOL vmlinux 0xbcc03fc3 mipi_dsi_dcs_get_power_mode -EXPORT_SYMBOL vmlinux 0xbd015bbc snd_card_register -EXPORT_SYMBOL vmlinux 0xbd10bb2a mpage_writepage +EXPORT_SYMBOL vmlinux 0xbcbe95a9 iter_file_splice_write +EXPORT_SYMBOL vmlinux 0xbcc9efb0 pci_get_subsys +EXPORT_SYMBOL vmlinux 0xbcd01c7c i2c_add_adapter +EXPORT_SYMBOL vmlinux 0xbcf08ac6 vfs_getattr +EXPORT_SYMBOL vmlinux 0xbd0b1fb8 softnet_data EXPORT_SYMBOL vmlinux 0xbd1b4950 __cpu_dying_mask -EXPORT_SYMBOL vmlinux 0xbd1b81d6 tcp_get_md5sig_pool -EXPORT_SYMBOL vmlinux 0xbd42c850 blk_rq_count_integrity_sg +EXPORT_SYMBOL vmlinux 0xbd228e06 mr_mfc_find_any_parent +EXPORT_SYMBOL vmlinux 0xbd2dff34 dec_zone_page_state +EXPORT_SYMBOL vmlinux 0xbd4fe3ba __skb_checksum +EXPORT_SYMBOL vmlinux 0xbd5b9d44 of_mdiobus_register EXPORT_SYMBOL vmlinux 0xbd5e1d9c __cond_resched_rwlock_read -EXPORT_SYMBOL vmlinux 0xbd6c1a8b mtd_concat_destroy -EXPORT_SYMBOL vmlinux 0xbd6e029a __phy_write_mmd -EXPORT_SYMBOL vmlinux 0xbd72c740 __bforget -EXPORT_SYMBOL vmlinux 0xbd79e839 mdio_device_free +EXPORT_SYMBOL vmlinux 0xbd5e9969 xfrm_state_walk +EXPORT_SYMBOL vmlinux 0xbd6c2acf netif_tx_wake_queue +EXPORT_SYMBOL vmlinux 0xbd70b96c of_count_phandle_with_args +EXPORT_SYMBOL vmlinux 0xbd7329f4 __traceiter_spi_transfer_start +EXPORT_SYMBOL vmlinux 0xbd77a3d6 snd_pcm_hw_rule_add +EXPORT_SYMBOL vmlinux 0xbd7f762d give_up_console +EXPORT_SYMBOL vmlinux 0xbd81974b qdisc_watchdog_init_clockid EXPORT_SYMBOL vmlinux 0xbd820297 rtc_lock -EXPORT_SYMBOL vmlinux 0xbd967608 seg6_push_hmac -EXPORT_SYMBOL vmlinux 0xbda14464 gnet_stats_copy_basic -EXPORT_SYMBOL vmlinux 0xbdb43d69 grab_cache_page_write_begin -EXPORT_SYMBOL vmlinux 0xbdd388ca rproc_mem_entry_init -EXPORT_SYMBOL vmlinux 0xbdd56db3 security_inode_init_security -EXPORT_SYMBOL vmlinux 0xbde4f8d8 reuseport_detach_sock -EXPORT_SYMBOL vmlinux 0xbe0a01f8 iov_iter_fault_in_readable +EXPORT_SYMBOL vmlinux 0xbd83077d blkdev_put +EXPORT_SYMBOL vmlinux 0xbd872f6e twl6040_set_pll +EXPORT_SYMBOL vmlinux 0xbd8c6827 param_get_long +EXPORT_SYMBOL vmlinux 0xbdb70a05 xfrm_lookup_route +EXPORT_SYMBOL vmlinux 0xbdc34b44 pci_choose_state +EXPORT_SYMBOL vmlinux 0xbdda8d13 snd_card_set_id +EXPORT_SYMBOL vmlinux 0xbddd9aee mmc_cqe_request_done +EXPORT_SYMBOL vmlinux 0xbde6581b param_get_ushort +EXPORT_SYMBOL vmlinux 0xbe000e42 dma_map_resource +EXPORT_SYMBOL vmlinux 0xbe008c18 i2c_smbus_read_i2c_block_data +EXPORT_SYMBOL vmlinux 0xbe05156b phy_trigger_machine EXPORT_SYMBOL vmlinux 0xbe0e3cba tcf_queue_work EXPORT_SYMBOL vmlinux 0xbe0e5118 nla_memcmp EXPORT_SYMBOL vmlinux 0xbe1427af __printk_cpu_unlock -EXPORT_SYMBOL vmlinux 0xbe23b39c of_device_register -EXPORT_SYMBOL vmlinux 0xbe30f53f snd_sgbuf_get_page -EXPORT_SYMBOL vmlinux 0xbe474b3c cpu_tlb +EXPORT_SYMBOL vmlinux 0xbe17a61a remove_watch_from_object +EXPORT_SYMBOL vmlinux 0xbe316242 audit_log_start +EXPORT_SYMBOL vmlinux 0xbe4af995 pci_request_regions_exclusive +EXPORT_SYMBOL vmlinux 0xbe4bd4e6 neigh_parms_alloc +EXPORT_SYMBOL vmlinux 0xbe4bfb4e genphy_check_and_restart_aneg EXPORT_SYMBOL vmlinux 0xbe4eb6ed secure_dccpv6_sequence_number +EXPORT_SYMBOL vmlinux 0xbe4f904f ata_std_end_eh EXPORT_SYMBOL vmlinux 0xbe5a24e9 xxh32_copy_state -EXPORT_SYMBOL vmlinux 0xbe81d4cf xfrm_input_unregister_afinfo -EXPORT_SYMBOL vmlinux 0xbe8e5f59 skb_dequeue_tail -EXPORT_SYMBOL vmlinux 0xbea08838 locks_free_lock -EXPORT_SYMBOL vmlinux 0xbeba465f kmem_cache_size -EXPORT_SYMBOL vmlinux 0xbec403d6 kill_litter_super -EXPORT_SYMBOL vmlinux 0xbec63476 pfifo_qdisc_ops -EXPORT_SYMBOL vmlinux 0xbec8b8c1 page_symlink -EXPORT_SYMBOL vmlinux 0xbed67312 xfrm_user_policy -EXPORT_SYMBOL vmlinux 0xbed71b5b _dev_alert +EXPORT_SYMBOL vmlinux 0xbe5d2ccc nd_device_notify +EXPORT_SYMBOL vmlinux 0xbe66ee22 dqput +EXPORT_SYMBOL vmlinux 0xbe79fac1 nd_region_acquire_lane +EXPORT_SYMBOL vmlinux 0xbe7a47a5 rtnl_link_get_net +EXPORT_SYMBOL vmlinux 0xbe82e7f6 eth_header_cache +EXPORT_SYMBOL vmlinux 0xbe91a55f phy_ethtool_nway_reset +EXPORT_SYMBOL vmlinux 0xbe9442ac nvdimm_namespace_disk_name +EXPORT_SYMBOL vmlinux 0xbe9c3b2a uart_get_baud_rate +EXPORT_SYMBOL vmlinux 0xbeb06b27 trace_raw_output_prep +EXPORT_SYMBOL vmlinux 0xbeb0cfd3 snd_pcm_lib_free_vmalloc_buffer EXPORT_SYMBOL vmlinux 0xbee90f2f __kfifo_out_peek_r +EXPORT_SYMBOL vmlinux 0xbeebd379 param_ops_int EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule -EXPORT_SYMBOL vmlinux 0xbef51f38 eth_header -EXPORT_SYMBOL vmlinux 0xbf040b61 dev_uc_del -EXPORT_SYMBOL vmlinux 0xbf044145 alloc_netdev_mqs -EXPORT_SYMBOL vmlinux 0xbf30c52d fd_install -EXPORT_SYMBOL vmlinux 0xbf37df0d tty_unregister_ldisc +EXPORT_SYMBOL vmlinux 0xbf1250b7 blk_queue_segment_boundary +EXPORT_SYMBOL vmlinux 0xbf1bafca pci_set_power_state +EXPORT_SYMBOL vmlinux 0xbf3f1b40 xfrm_policy_walk_done EXPORT_SYMBOL vmlinux 0xbf4d4539 udp_table -EXPORT_SYMBOL vmlinux 0xbf51cea3 md_write_end +EXPORT_SYMBOL vmlinux 0xbf524c69 max8998_write_reg EXPORT_SYMBOL vmlinux 0xbf59c419 posix_acl_init -EXPORT_SYMBOL vmlinux 0xbf6cb657 sock_setsockopt -EXPORT_SYMBOL vmlinux 0xbf6eb26c sock_create +EXPORT_SYMBOL vmlinux 0xbf61dfdd tcp_req_err EXPORT_SYMBOL vmlinux 0xbf7347b2 proc_doulongvec_ms_jiffies_minmax -EXPORT_SYMBOL vmlinux 0xbf779667 cdrom_open -EXPORT_SYMBOL vmlinux 0xbf842efc __block_write_full_page -EXPORT_SYMBOL vmlinux 0xbf924ea8 pci_disable_msix +EXPORT_SYMBOL vmlinux 0xbf75273c _snd_ctl_add_follower +EXPORT_SYMBOL vmlinux 0xbf7bf2b6 __skb_flow_dissect +EXPORT_SYMBOL vmlinux 0xbf7ed6fc security_inode_setsecctx +EXPORT_SYMBOL vmlinux 0xbf8115fc to_ndd +EXPORT_SYMBOL vmlinux 0xbf8252bc _dev_crit EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set -EXPORT_SYMBOL vmlinux 0xbfaec2d8 vlan_dev_vlan_id -EXPORT_SYMBOL vmlinux 0xbfb56c48 mod_node_page_state -EXPORT_SYMBOL vmlinux 0xbfbb4bc5 mipi_dsi_set_maximum_return_packet_size -EXPORT_SYMBOL vmlinux 0xbfc113db mipi_dsi_dcs_set_tear_on +EXPORT_SYMBOL vmlinux 0xbfbde816 cdrom_get_media_event +EXPORT_SYMBOL vmlinux 0xbfd4d90e put_cmsg EXPORT_SYMBOL vmlinux 0xbfdf7bc3 mempool_create -EXPORT_SYMBOL vmlinux 0xbfe1d499 xsk_tx_release EXPORT_SYMBOL vmlinux 0xbfee3ad5 loop_unregister_transfer +EXPORT_SYMBOL vmlinux 0xbfefb62d mdiobus_unregister +EXPORT_SYMBOL vmlinux 0xc0089be9 tcp_v4_connect +EXPORT_SYMBOL vmlinux 0xc00a8da8 param_set_charp +EXPORT_SYMBOL vmlinux 0xc025d11f tcp_splice_read +EXPORT_SYMBOL vmlinux 0xc02b85ef pcim_iomap +EXPORT_SYMBOL vmlinux 0xc0428de0 kernel_sock_shutdown +EXPORT_SYMBOL vmlinux 0xc050f1df dev_uc_flush +EXPORT_SYMBOL vmlinux 0xc062897b unregister_netdevice_queue +EXPORT_SYMBOL vmlinux 0xc072c99f iunique EXPORT_SYMBOL vmlinux 0xc0763484 rfkill_blocked -EXPORT_SYMBOL vmlinux 0xc07a1529 fb_validate_mode EXPORT_SYMBOL vmlinux 0xc07b0863 fb_destroy_modedb -EXPORT_SYMBOL vmlinux 0xc080c0ab flow_block_cb_setup_simple -EXPORT_SYMBOL vmlinux 0xc08b3f9a phy_aneg_done -EXPORT_SYMBOL vmlinux 0xc091776a get_tree_nodev -EXPORT_SYMBOL vmlinux 0xc097379d pagevec_lookup_range_tag +EXPORT_SYMBOL vmlinux 0xc0804990 vmf_insert_mixed_prot +EXPORT_SYMBOL vmlinux 0xc099d850 __netlink_dump_start EXPORT_SYMBOL vmlinux 0xc0a6a8c5 omap_set_dma_dest_burst_mode EXPORT_SYMBOL vmlinux 0xc0a98385 profile_pc -EXPORT_SYMBOL vmlinux 0xc0ab9995 snd_pcm_hw_constraint_list EXPORT_SYMBOL vmlinux 0xc0b2664d devlink_dpipe_header_ipv4 -EXPORT_SYMBOL vmlinux 0xc0c00f33 vmf_insert_mixed_mkwrite +EXPORT_SYMBOL vmlinux 0xc0b7a554 kernel_getsockname +EXPORT_SYMBOL vmlinux 0xc0bdbc1c phy_drivers_unregister +EXPORT_SYMBOL vmlinux 0xc0c3ece3 sock_alloc +EXPORT_SYMBOL vmlinux 0xc0c68455 dma_unmap_sg_attrs +EXPORT_SYMBOL vmlinux 0xc0cb2039 tcf_chain_get_by_act +EXPORT_SYMBOL vmlinux 0xc0d6a0c9 ip_sock_set_freebind +EXPORT_SYMBOL vmlinux 0xc0d91cf5 account_page_redirty EXPORT_SYMBOL vmlinux 0xc0da0e99 dim_on_top -EXPORT_SYMBOL vmlinux 0xc0dae9f1 simple_setattr -EXPORT_SYMBOL vmlinux 0xc0de3bce __module_put_and_exit -EXPORT_SYMBOL vmlinux 0xc0f3420f mmc_add_host +EXPORT_SYMBOL vmlinux 0xc0e447ef page_pool_alloc_pages EXPORT_SYMBOL vmlinux 0xc0fb357a dma_fence_chain_walk EXPORT_SYMBOL vmlinux 0xc0ff12fb nla_strdup EXPORT_SYMBOL vmlinux 0xc0ff21c1 input_get_new_minor -EXPORT_SYMBOL vmlinux 0xc1003ba0 netdev_name_node_alt_destroy -EXPORT_SYMBOL vmlinux 0xc1070bb0 of_phy_find_device -EXPORT_SYMBOL vmlinux 0xc11f6f58 blk_queue_io_min -EXPORT_SYMBOL vmlinux 0xc1238794 kern_path_create -EXPORT_SYMBOL vmlinux 0xc123ab76 nd_integrity_init -EXPORT_SYMBOL vmlinux 0xc134e4db tcp_filter -EXPORT_SYMBOL vmlinux 0xc1405213 phy_init_hw -EXPORT_SYMBOL vmlinux 0xc1422983 phys_mem_access_prot +EXPORT_SYMBOL vmlinux 0xc1018603 ipv6_skip_exthdr +EXPORT_SYMBOL vmlinux 0xc101d8e1 xfrm_state_register_afinfo +EXPORT_SYMBOL vmlinux 0xc125777d mdio_find_bus +EXPORT_SYMBOL vmlinux 0xc1307881 of_find_mipi_dsi_device_by_node +EXPORT_SYMBOL vmlinux 0xc1372684 udp_poll EXPORT_SYMBOL vmlinux 0xc1514a3b free_irq +EXPORT_SYMBOL vmlinux 0xc155102a unlock_buffer +EXPORT_SYMBOL vmlinux 0xc156e50e save_stack_trace_tsk EXPORT_SYMBOL vmlinux 0xc15f4ed8 utf8nlen EXPORT_SYMBOL vmlinux 0xc16410b9 ZSTD_getDictID_fromDDict EXPORT_SYMBOL vmlinux 0xc16be39d iter_div_u64_rem -EXPORT_SYMBOL vmlinux 0xc195afff init_task -EXPORT_SYMBOL vmlinux 0xc19d186e remap_pfn_range -EXPORT_SYMBOL vmlinux 0xc1ab31ff blk_queue_max_write_zeroes_sectors -EXPORT_SYMBOL vmlinux 0xc1b59dbb sb_min_blocksize -EXPORT_SYMBOL vmlinux 0xc1ccaaa8 super_setup_bdi_name +EXPORT_SYMBOL vmlinux 0xc1a9f81c dst_init +EXPORT_SYMBOL vmlinux 0xc1bd28a6 set_blocksize +EXPORT_SYMBOL vmlinux 0xc1c0c9ed generic_fill_statx_attr +EXPORT_SYMBOL vmlinux 0xc1c5834b dev_get_by_index +EXPORT_SYMBOL vmlinux 0xc1c5bd1f regset_get_alloc EXPORT_SYMBOL vmlinux 0xc1d5d504 scsi_cmd_allowed EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget -EXPORT_SYMBOL vmlinux 0xc1db74ab dev_activate -EXPORT_SYMBOL vmlinux 0xc1e883df input_register_device -EXPORT_SYMBOL vmlinux 0xc1e9befa ethtool_rx_flow_rule_create -EXPORT_SYMBOL vmlinux 0xc1e9e2e0 clk_bulk_get -EXPORT_SYMBOL vmlinux 0xc1f81fa4 mark_buffer_dirty_inode -EXPORT_SYMBOL vmlinux 0xc1faaec2 of_node_put -EXPORT_SYMBOL vmlinux 0xc1fefe37 scsi_dma_unmap -EXPORT_SYMBOL vmlinux 0xc20118eb snd_timer_open +EXPORT_SYMBOL vmlinux 0xc1df0b7b blk_mq_end_request +EXPORT_SYMBOL vmlinux 0xc1ebafc5 of_find_i2c_device_by_node EXPORT_SYMBOL vmlinux 0xc2059c64 fscrypt_enqueue_decrypt_work EXPORT_SYMBOL vmlinux 0xc207ee07 complete_and_exit -EXPORT_SYMBOL vmlinux 0xc21ebc98 netpoll_setup -EXPORT_SYMBOL vmlinux 0xc21f4b9f block_write_full_page -EXPORT_SYMBOL vmlinux 0xc2225cb5 inet_recvmsg +EXPORT_SYMBOL vmlinux 0xc22c137b input_get_poll_interval EXPORT_SYMBOL vmlinux 0xc230c9a8 wait_for_completion_io_timeout -EXPORT_SYMBOL vmlinux 0xc242ad59 __ip_select_ident -EXPORT_SYMBOL vmlinux 0xc245ebf8 pci_iomap -EXPORT_SYMBOL vmlinux 0xc24ef0b0 pci_dev_get +EXPORT_SYMBOL vmlinux 0xc24fa7c5 snd_pcm_lib_preallocate_pages_for_all +EXPORT_SYMBOL vmlinux 0xc250cc32 uart_write_wakeup +EXPORT_SYMBOL vmlinux 0xc2578690 make_bad_inode +EXPORT_SYMBOL vmlinux 0xc259a32a km_state_expired +EXPORT_SYMBOL vmlinux 0xc26599ad tcf_exts_num_actions EXPORT_SYMBOL vmlinux 0xc267960e utf8_validate -EXPORT_SYMBOL vmlinux 0xc26cf93b dev_getbyhwaddr_rcu -EXPORT_SYMBOL vmlinux 0xc290cbd1 dma_sync_single_for_device +EXPORT_SYMBOL vmlinux 0xc26e1323 dm_table_get_md +EXPORT_SYMBOL vmlinux 0xc2768871 netdev_printk +EXPORT_SYMBOL vmlinux 0xc278240f generic_error_remove_page +EXPORT_SYMBOL vmlinux 0xc278a95c inet_offloads +EXPORT_SYMBOL vmlinux 0xc289ec88 sock_no_recvmsg +EXPORT_SYMBOL vmlinux 0xc28ee7b3 key_instantiate_and_link EXPORT_SYMBOL vmlinux 0xc29d672d nla_reserve EXPORT_SYMBOL vmlinux 0xc2acc033 hex_dump_to_buffer EXPORT_SYMBOL vmlinux 0xc2b1d4e1 lockref_put_return -EXPORT_SYMBOL vmlinux 0xc2ba2dfe dev_get_by_napi_id +EXPORT_SYMBOL vmlinux 0xc2bf32a2 migrate_page_move_mapping +EXPORT_SYMBOL vmlinux 0xc2c3f483 rtnl_notify EXPORT_SYMBOL vmlinux 0xc2cae53e refcount_dec_and_lock EXPORT_SYMBOL vmlinux 0xc2cf2dde ZSTD_decompress_usingDDict -EXPORT_SYMBOL vmlinux 0xc2cfebcd file_path -EXPORT_SYMBOL vmlinux 0xc2dcd5e3 __ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0xc2e0d454 elv_rb_latter_request EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices -EXPORT_SYMBOL vmlinux 0xc2e5e3d5 pcim_iounmap -EXPORT_SYMBOL vmlinux 0xc2e5e4c8 tcf_block_get_ext -EXPORT_SYMBOL vmlinux 0xc2ec96f9 con_set_default_unimap EXPORT_SYMBOL vmlinux 0xc2ede9c5 gen_pool_destroy -EXPORT_SYMBOL vmlinux 0xc2f79bd8 keyring_alloc -EXPORT_SYMBOL vmlinux 0xc3038f35 fb_blank +EXPORT_SYMBOL vmlinux 0xc2fc4b23 inet_sock_destruct EXPORT_SYMBOL vmlinux 0xc3055d20 usleep_range_state -EXPORT_SYMBOL vmlinux 0xc30a70ba tcp_sock_set_cork -EXPORT_SYMBOL vmlinux 0xc316c7a1 qdisc_hash_del EXPORT_SYMBOL vmlinux 0xc31db0ce is_vmalloc_addr -EXPORT_SYMBOL vmlinux 0xc31ee848 xfrm_register_km -EXPORT_SYMBOL vmlinux 0xc32290c7 napi_enable EXPORT_SYMBOL vmlinux 0xc32c71af register_inetaddr_validator_notifier -EXPORT_SYMBOL vmlinux 0xc344d895 dev_graft_qdisc +EXPORT_SYMBOL vmlinux 0xc33559fb update_devfreq +EXPORT_SYMBOL vmlinux 0xc353ff9a flow_rule_match_ipv6_addrs EXPORT_SYMBOL vmlinux 0xc358aaf8 snprintf -EXPORT_SYMBOL vmlinux 0xc35dec50 __blk_alloc_disk +EXPORT_SYMBOL vmlinux 0xc3608513 dump_page EXPORT_SYMBOL vmlinux 0xc37335b0 complete +EXPORT_SYMBOL vmlinux 0xc37f290e mipi_dsi_dcs_set_tear_scanline EXPORT_SYMBOL vmlinux 0xc37f9c6e cpufreq_update_policy -EXPORT_SYMBOL vmlinux 0xc37fb443 mmc_get_card +EXPORT_SYMBOL vmlinux 0xc3818a9e pcie_set_mps EXPORT_SYMBOL vmlinux 0xc38c83b8 mod_timer -EXPORT_SYMBOL vmlinux 0xc39dbeb1 scsi_bios_ptable -EXPORT_SYMBOL vmlinux 0xc3a0e298 d_exact_alias -EXPORT_SYMBOL vmlinux 0xc3b9d276 of_parse_phandle_with_fixed_args +EXPORT_SYMBOL vmlinux 0xc38e3119 key_put +EXPORT_SYMBOL vmlinux 0xc398f3ff seq_escape +EXPORT_SYMBOL vmlinux 0xc3a242a1 __kmap_local_page_prot +EXPORT_SYMBOL vmlinux 0xc3b3769e i2c_del_adapter +EXPORT_SYMBOL vmlinux 0xc3b6d7d8 xfrm_unregister_km +EXPORT_SYMBOL vmlinux 0xc3bf4c40 mmc_gpiod_request_ro EXPORT_SYMBOL vmlinux 0xc3cd034d crc8_populate_lsb +EXPORT_SYMBOL vmlinux 0xc3d168e3 pskb_expand_head EXPORT_SYMBOL vmlinux 0xc3ec7dc1 __gnet_stats_copy_basic -EXPORT_SYMBOL vmlinux 0xc40a8372 pci_release_regions +EXPORT_SYMBOL vmlinux 0xc405b3d6 vfs_rmdir +EXPORT_SYMBOL vmlinux 0xc419f786 of_lpddr3_get_min_tck EXPORT_SYMBOL vmlinux 0xc41bc980 iwe_stream_add_value EXPORT_SYMBOL vmlinux 0xc4212ab9 qdisc_class_hash_insert -EXPORT_SYMBOL vmlinux 0xc421b140 snd_timer_continue +EXPORT_SYMBOL vmlinux 0xc4389dc3 __free_pages EXPORT_SYMBOL vmlinux 0xc4657dc8 mempool_init -EXPORT_SYMBOL vmlinux 0xc469f96c mr_table_alloc -EXPORT_SYMBOL vmlinux 0xc46dd4d6 truncate_pagecache_range -EXPORT_SYMBOL vmlinux 0xc46e2095 rawnand_sw_bch_correct EXPORT_SYMBOL vmlinux 0xc4708199 cpm_muram_addr -EXPORT_SYMBOL vmlinux 0xc474b4f6 read_cache_pages EXPORT_SYMBOL vmlinux 0xc4777aa9 __ctzsi2 -EXPORT_SYMBOL vmlinux 0xc4cc8828 vfs_rename -EXPORT_SYMBOL vmlinux 0xc503d59a mod_zone_page_state -EXPORT_SYMBOL vmlinux 0xc513aeb9 iov_iter_npages +EXPORT_SYMBOL vmlinux 0xc48c953a _dev_info +EXPORT_SYMBOL vmlinux 0xc49a07ba dev_set_alias +EXPORT_SYMBOL vmlinux 0xc49a475d sock_kzfree_s +EXPORT_SYMBOL vmlinux 0xc4ac3334 rtnl_unicast +EXPORT_SYMBOL vmlinux 0xc4c788fb ptp_clock_index +EXPORT_SYMBOL vmlinux 0xc4cf9f0d __block_write_full_page +EXPORT_SYMBOL vmlinux 0xc4e9616a __skb_vlan_pop +EXPORT_SYMBOL vmlinux 0xc4face2c mdiobus_get_phy +EXPORT_SYMBOL vmlinux 0xc51b5a6a inet6_ioctl +EXPORT_SYMBOL vmlinux 0xc51d05cc scsi_scan_host +EXPORT_SYMBOL vmlinux 0xc52aa475 write_dirty_buffer +EXPORT_SYMBOL vmlinux 0xc52c4ab3 phy_ethtool_get_wol EXPORT_SYMBOL vmlinux 0xc52da066 omap_set_dma_dest_params -EXPORT_SYMBOL vmlinux 0xc53022f9 ll_rw_block -EXPORT_SYMBOL vmlinux 0xc544dd63 devm_of_clk_del_provider -EXPORT_SYMBOL vmlinux 0xc551083c tcp_initialize_rcv_mss -EXPORT_SYMBOL vmlinux 0xc55b0200 nf_unregister_net_hooks +EXPORT_SYMBOL vmlinux 0xc53f8f4c may_umount +EXPORT_SYMBOL vmlinux 0xc541d39f pcie_set_readrq +EXPORT_SYMBOL vmlinux 0xc542b161 jbd2_journal_init_dev +EXPORT_SYMBOL vmlinux 0xc5678e39 inet_recvmsg EXPORT_SYMBOL vmlinux 0xc581500f ZSTD_resetDStream -EXPORT_SYMBOL vmlinux 0xc5955cbc d_drop EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xc5a0f79c tcf_unregister_action EXPORT_SYMBOL vmlinux 0xc5a6d10b release_and_free_resource -EXPORT_SYMBOL vmlinux 0xc5aa2308 sk_capable -EXPORT_SYMBOL vmlinux 0xc5bb1086 __pskb_pull_tail -EXPORT_SYMBOL vmlinux 0xc5ca504e of_graph_parse_endpoint +EXPORT_SYMBOL vmlinux 0xc5aca1b7 pci_iomap +EXPORT_SYMBOL vmlinux 0xc5be1679 netlink_ack +EXPORT_SYMBOL vmlinux 0xc5be6ee4 inet_proto_csum_replace16 EXPORT_SYMBOL vmlinux 0xc5cbdc54 kstrtoint_from_user -EXPORT_SYMBOL vmlinux 0xc5d92522 neigh_parms_release -EXPORT_SYMBOL vmlinux 0xc5d9edcf fs_bio_set +EXPORT_SYMBOL vmlinux 0xc5d41aae mr_mfc_find_any +EXPORT_SYMBOL vmlinux 0xc5d952ac page_symlink_inode_operations EXPORT_SYMBOL vmlinux 0xc5e74216 release_resource +EXPORT_SYMBOL vmlinux 0xc5ed136b dcb_ieee_getapp_mask EXPORT_SYMBOL vmlinux 0xc5ee6c48 kvfree_sensitive EXPORT_SYMBOL vmlinux 0xc5f7e801 sg_last +EXPORT_SYMBOL vmlinux 0xc6091f4b d_path +EXPORT_SYMBOL vmlinux 0xc60cb4cd inet_protos EXPORT_SYMBOL vmlinux 0xc60d0620 __num_online_cpus -EXPORT_SYMBOL vmlinux 0xc60fc882 add_random_ready_callback -EXPORT_SYMBOL vmlinux 0xc62abfbc tty_port_lower_dtr_rts +EXPORT_SYMBOL vmlinux 0xc618c942 generic_fillattr +EXPORT_SYMBOL vmlinux 0xc627702f free_task EXPORT_SYMBOL vmlinux 0xc631580a console_unlock EXPORT_SYMBOL vmlinux 0xc633d82d phy_unregister_fixup -EXPORT_SYMBOL vmlinux 0xc64e7104 iov_iter_single_seg_count EXPORT_SYMBOL vmlinux 0xc65e4e97 secure_dccp_sequence_number -EXPORT_SYMBOL vmlinux 0xc6625cf6 phy_driver_unregister -EXPORT_SYMBOL vmlinux 0xc6674bc5 vif_device_init -EXPORT_SYMBOL vmlinux 0xc66a2bdc ndo_dflt_fdb_dump EXPORT_SYMBOL vmlinux 0xc66a8304 cpu_rmap_add -EXPORT_SYMBOL vmlinux 0xc67f38fc padata_free_shell -EXPORT_SYMBOL vmlinux 0xc6968ee4 mark_page_accessed -EXPORT_SYMBOL vmlinux 0xc69f056c phy_advertise_supported +EXPORT_SYMBOL vmlinux 0xc671dfed kern_path +EXPORT_SYMBOL vmlinux 0xc673ed97 snd_ctl_remove EXPORT_SYMBOL vmlinux 0xc69fce52 qcom_scm_qsmmu500_wait_safe_toggle -EXPORT_SYMBOL vmlinux 0xc6a3ca73 snd_timer_start -EXPORT_SYMBOL vmlinux 0xc6a6e490 ip_check_defrag -EXPORT_SYMBOL vmlinux 0xc6ab7895 udp_pre_connect -EXPORT_SYMBOL vmlinux 0xc6af5c1e tcp_fastopen_defer_connect -EXPORT_SYMBOL vmlinux 0xc6c2df2c of_translate_dma_address -EXPORT_SYMBOL vmlinux 0xc6caa697 eth_header_parse +EXPORT_SYMBOL vmlinux 0xc6a92a56 skb_unlink +EXPORT_SYMBOL vmlinux 0xc6b43529 padata_free_shell +EXPORT_SYMBOL vmlinux 0xc6b7de8a debugfs_create_automount +EXPORT_SYMBOL vmlinux 0xc6b949dc phy_connect_direct EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable -EXPORT_SYMBOL vmlinux 0xc6d11959 default_llseek +EXPORT_SYMBOL vmlinux 0xc6e1feaf qdisc_tree_reduce_backlog 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 0xc6fd49e0 sock_bind_add -EXPORT_SYMBOL vmlinux 0xc6fea52a of_phy_connect -EXPORT_SYMBOL vmlinux 0xc6ff9806 flow_block_cb_lookup -EXPORT_SYMBOL vmlinux 0xc7053b6e register_sound_special -EXPORT_SYMBOL vmlinux 0xc7074939 dump_align -EXPORT_SYMBOL vmlinux 0xc710b95f generic_write_checks -EXPORT_SYMBOL vmlinux 0xc71b303d __skb_flow_get_ports +EXPORT_SYMBOL vmlinux 0xc6fffe9a file_open_root +EXPORT_SYMBOL vmlinux 0xc705c714 nvmem_get_mac_address +EXPORT_SYMBOL vmlinux 0xc71b54f9 pci_ep_cfs_remove_epc_group EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port -EXPORT_SYMBOL vmlinux 0xc73f7e99 dev_get_by_name_rcu -EXPORT_SYMBOL vmlinux 0xc7712739 reuseport_stop_listen_sock +EXPORT_SYMBOL vmlinux 0xc72982ca udp_lib_getsockopt +EXPORT_SYMBOL vmlinux 0xc72c0c91 mroute6_is_socket +EXPORT_SYMBOL vmlinux 0xc7435659 snd_sgbuf_get_chunk_size +EXPORT_SYMBOL vmlinux 0xc74ab93a phy_attached_info_irq +EXPORT_SYMBOL vmlinux 0xc74e3960 elevator_alloc +EXPORT_SYMBOL vmlinux 0xc75a2ecc simple_getattr +EXPORT_SYMBOL vmlinux 0xc762c79c vme_dma_list_free EXPORT_SYMBOL vmlinux 0xc781bd9f rfkill_resume_polling EXPORT_SYMBOL vmlinux 0xc7856a3d inet6addr_notifier_call_chain -EXPORT_SYMBOL vmlinux 0xc78bc8fd d_genocide -EXPORT_SYMBOL vmlinux 0xc78cde07 blk_mq_queue_stopped -EXPORT_SYMBOL vmlinux 0xc79650e7 filemap_fdatawait_keep_errors -EXPORT_SYMBOL vmlinux 0xc7a0fb2e blk_put_queue +EXPORT_SYMBOL vmlinux 0xc7865157 of_device_is_compatible +EXPORT_SYMBOL vmlinux 0xc78ded98 __quota_error +EXPORT_SYMBOL vmlinux 0xc79f8066 seq_read EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock +EXPORT_SYMBOL vmlinux 0xc7a5d2f2 prepare_kernel_cred +EXPORT_SYMBOL vmlinux 0xc7afdf34 mipi_dsi_set_maximum_return_packet_size +EXPORT_SYMBOL vmlinux 0xc7b1f727 sk_send_sigurg EXPORT_SYMBOL vmlinux 0xc7c1107a LZ4_decompress_safe +EXPORT_SYMBOL vmlinux 0xc7c6c30b of_get_property +EXPORT_SYMBOL vmlinux 0xc7c8ab65 elm_config EXPORT_SYMBOL vmlinux 0xc7d094b5 dm_read_arg_group +EXPORT_SYMBOL vmlinux 0xc7d78c63 datagram_poll +EXPORT_SYMBOL vmlinux 0xc7d8d67c backlight_device_get_by_name +EXPORT_SYMBOL vmlinux 0xc7e74ee9 __cgroup_bpf_run_filter_skb EXPORT_SYMBOL vmlinux 0xc7ec6c27 strspn -EXPORT_SYMBOL vmlinux 0xc7f6d154 mr_fill_mroute -EXPORT_SYMBOL vmlinux 0xc806a734 fasync_helper -EXPORT_SYMBOL vmlinux 0xc809e4b3 netdev_printk +EXPORT_SYMBOL vmlinux 0xc7f46c99 pci_bus_claim_resources +EXPORT_SYMBOL vmlinux 0xc80231f8 seq_putc +EXPORT_SYMBOL vmlinux 0xc824e249 put_watch_queue EXPORT_SYMBOL vmlinux 0xc8339e24 string_unescape -EXPORT_SYMBOL vmlinux 0xc83ce77c blk_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0xc84723dc get_cached_acl EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu -EXPORT_SYMBOL vmlinux 0xc859ec38 __d_lookup_done -EXPORT_SYMBOL vmlinux 0xc8698701 vlan_vid_add +EXPORT_SYMBOL vmlinux 0xc8696bc6 starget_for_each_device EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes -EXPORT_SYMBOL vmlinux 0xc8790fb6 xfrm_state_unregister_afinfo -EXPORT_SYMBOL vmlinux 0xc879aec7 km_policy_expired -EXPORT_SYMBOL vmlinux 0xc87fac48 try_to_free_buffers -EXPORT_SYMBOL vmlinux 0xc881ac4b of_count_phandle_with_args +EXPORT_SYMBOL vmlinux 0xc87423b9 __cleancache_init_shared_fs EXPORT_SYMBOL vmlinux 0xc8827b75 sysctl_vals -EXPORT_SYMBOL vmlinux 0xc888c363 elm_config -EXPORT_SYMBOL vmlinux 0xc88cbb71 remove_proc_entry +EXPORT_SYMBOL vmlinux 0xc883546e max8925_bulk_write EXPORT_SYMBOL vmlinux 0xc890c008 zlib_deflateEnd -EXPORT_SYMBOL vmlinux 0xc89e017f mmc_set_data_timeout -EXPORT_SYMBOL vmlinux 0xc8a09fff ps2_command -EXPORT_SYMBOL vmlinux 0xc8a21d7f serial8250_do_set_termios +EXPORT_SYMBOL vmlinux 0xc89d3cff d_find_alias +EXPORT_SYMBOL vmlinux 0xc89eccbd uart_unregister_driver EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread +EXPORT_SYMBOL vmlinux 0xc8ac76e6 mmc_sw_reset EXPORT_SYMBOL vmlinux 0xc8b58a25 __memset64 -EXPORT_SYMBOL vmlinux 0xc8b6d7a5 devm_nvmem_cell_put -EXPORT_SYMBOL vmlinux 0xc8c97e1e snd_unregister_device -EXPORT_SYMBOL vmlinux 0xc8cd7ad1 sk_stream_error -EXPORT_SYMBOL vmlinux 0xc8cdd742 ipmr_rule_default -EXPORT_SYMBOL vmlinux 0xc8e58eaf km_state_notify -EXPORT_SYMBOL vmlinux 0xc907f03f ethtool_op_get_link -EXPORT_SYMBOL vmlinux 0xc9145e2a skb_pull +EXPORT_SYMBOL vmlinux 0xc8d8b601 proc_create_seq_private +EXPORT_SYMBOL vmlinux 0xc8e267e3 alloc_buffer_head +EXPORT_SYMBOL vmlinux 0xc90cec90 seq_write EXPORT_SYMBOL vmlinux 0xc916dd46 __SCK__tp_func_kmalloc -EXPORT_SYMBOL vmlinux 0xc9197e57 pci_release_selected_regions -EXPORT_SYMBOL vmlinux 0xc9299b52 xfrm_input -EXPORT_SYMBOL vmlinux 0xc935d015 jbd2_journal_release_jbd_inode -EXPORT_SYMBOL vmlinux 0xc93e446f snd_pci_quirk_lookup -EXPORT_SYMBOL vmlinux 0xc95feecf from_kuid +EXPORT_SYMBOL vmlinux 0xc92ade81 security_lock_kernel_down +EXPORT_SYMBOL vmlinux 0xc93293ae arp_create +EXPORT_SYMBOL vmlinux 0xc93e8832 phy_loopback +EXPORT_SYMBOL vmlinux 0xc9489f73 security_sk_clone +EXPORT_SYMBOL vmlinux 0xc94a3cfd xsk_tx_peek_release_desc_batch +EXPORT_SYMBOL vmlinux 0xc950637b of_get_i2c_adapter_by_node +EXPORT_SYMBOL vmlinux 0xc95764e8 ip_fraglist_init +EXPORT_SYMBOL vmlinux 0xc95a57a0 pcie_bandwidth_available EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters -EXPORT_SYMBOL vmlinux 0xc96ea0f3 __lock_page EXPORT_SYMBOL vmlinux 0xc972449f mempool_alloc_slab -EXPORT_SYMBOL vmlinux 0xc9791acb arp_tbl +EXPORT_SYMBOL vmlinux 0xc9728cea inet_frag_reasm_prepare EXPORT_SYMBOL vmlinux 0xc9822234 clk_register_clkdev EXPORT_SYMBOL vmlinux 0xc9831ad7 flow_keys_dissector -EXPORT_SYMBOL vmlinux 0xc983476a __mmap_lock_do_trace_start_locking -EXPORT_SYMBOL vmlinux 0xc9922a5c put_fs_context +EXPORT_SYMBOL vmlinux 0xc98604df md_write_start +EXPORT_SYMBOL vmlinux 0xc994f2d4 inet6_release +EXPORT_SYMBOL vmlinux 0xc997a2e0 generic_delete_inode EXPORT_SYMBOL vmlinux 0xc99cbb83 gen_pool_dma_alloc_align EXPORT_SYMBOL vmlinux 0xc99e2a55 twl_rev -EXPORT_SYMBOL vmlinux 0xc9a812f1 drop_nlink -EXPORT_SYMBOL vmlinux 0xc9c3d7a8 fscrypt_put_encryption_info -EXPORT_SYMBOL vmlinux 0xc9c702e8 ata_dev_printk +EXPORT_SYMBOL vmlinux 0xc9ae2aa2 fs_param_is_path +EXPORT_SYMBOL vmlinux 0xc9bccdda d_splice_alias +EXPORT_SYMBOL vmlinux 0xc9be008b vfs_symlink EXPORT_SYMBOL vmlinux 0xc9ca3698 register_sysctl_table -EXPORT_SYMBOL vmlinux 0xc9d59b30 seq_read_iter EXPORT_SYMBOL vmlinux 0xc9df055a xfrm_policy_walk_init -EXPORT_SYMBOL vmlinux 0xc9e26edd devfreq_recommended_opp -EXPORT_SYMBOL vmlinux 0xc9e697b8 mdio_device_reset EXPORT_SYMBOL vmlinux 0xc9e9d5f9 vme_alloc_consistent -EXPORT_SYMBOL vmlinux 0xc9ee2e8a pcie_get_speed_cap -EXPORT_SYMBOL vmlinux 0xca08d1c5 ip_sock_set_pktinfo -EXPORT_SYMBOL vmlinux 0xca0c321f pci_wake_from_d3 +EXPORT_SYMBOL vmlinux 0xc9f4f0a3 ata_print_version +EXPORT_SYMBOL vmlinux 0xc9fba731 get_vm_area +EXPORT_SYMBOL vmlinux 0xca112e13 md_integrity_register +EXPORT_SYMBOL vmlinux 0xca172716 rproc_coredump_add_custom_segment EXPORT_SYMBOL vmlinux 0xca21ebd3 bitmap_free -EXPORT_SYMBOL vmlinux 0xca2a6fae skb_dequeue -EXPORT_SYMBOL vmlinux 0xca2e371b xfrm_parse_spi +EXPORT_SYMBOL vmlinux 0xca27db22 dev_mc_flush EXPORT_SYMBOL vmlinux 0xca431c05 wake_bit_function -EXPORT_SYMBOL vmlinux 0xca52a321 skb_copy_expand EXPORT_SYMBOL vmlinux 0xca5a7528 down_interruptible -EXPORT_SYMBOL vmlinux 0xca6295a2 napi_disable -EXPORT_SYMBOL vmlinux 0xca656d47 kernel_sock_shutdown -EXPORT_SYMBOL vmlinux 0xca6d719f mipi_dsi_detach +EXPORT_SYMBOL vmlinux 0xca5ed9a0 of_find_compatible_node +EXPORT_SYMBOL vmlinux 0xca671fb3 jbd2_journal_clear_features +EXPORT_SYMBOL vmlinux 0xca69bd7d ps2_cmd_aborted +EXPORT_SYMBOL vmlinux 0xca6a0fbf skb_clone_sk +EXPORT_SYMBOL vmlinux 0xca6d55e1 unregister_netdevice_notifier_net +EXPORT_SYMBOL vmlinux 0xca7ee9b2 fault_in_writeable EXPORT_SYMBOL vmlinux 0xca813ce6 LZ4_decompress_safe_continue -EXPORT_SYMBOL vmlinux 0xca8eea38 get_tree_keyed EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next -EXPORT_SYMBOL vmlinux 0xcaa19f50 d_instantiate -EXPORT_SYMBOL vmlinux 0xcab5e9e9 inet_addr_type -EXPORT_SYMBOL vmlinux 0xcac79285 pci_scan_slot -EXPORT_SYMBOL vmlinux 0xcacd745f rfkill_alloc -EXPORT_SYMBOL vmlinux 0xcad92fca finish_swait -EXPORT_SYMBOL vmlinux 0xcae90f09 mmc_cqe_start_req -EXPORT_SYMBOL vmlinux 0xcaebb843 noop_llseek -EXPORT_SYMBOL vmlinux 0xcaec1a0c key_invalidate -EXPORT_SYMBOL vmlinux 0xcaeda425 rtc_add_group +EXPORT_SYMBOL vmlinux 0xca97f237 mipi_dsi_device_register_full +EXPORT_SYMBOL vmlinux 0xcaa26c78 watchdog_register_governor +EXPORT_SYMBOL vmlinux 0xcaaf89b7 dma_sync_sg_for_cpu +EXPORT_SYMBOL vmlinux 0xcac55581 jbd2_fc_wait_bufs +EXPORT_SYMBOL vmlinux 0xcacf00d7 snd_timer_global_free +EXPORT_SYMBOL vmlinux 0xcad973b3 rps_may_expire_flow EXPORT_SYMBOL vmlinux 0xcaf2c603 scsi_sd_pm_domain -EXPORT_SYMBOL vmlinux 0xcaf6bd0e scsi_get_host_dev -EXPORT_SYMBOL vmlinux 0xcb0130ac nobh_writepage +EXPORT_SYMBOL vmlinux 0xcaf7a539 security_sctp_bind_connect EXPORT_SYMBOL vmlinux 0xcb0288ea ledtrig_cpu EXPORT_SYMBOL vmlinux 0xcb071053 nla_append -EXPORT_SYMBOL vmlinux 0xcb0f006c migrate_page_copy -EXPORT_SYMBOL vmlinux 0xcb1078fe udp_lib_setsockopt +EXPORT_SYMBOL vmlinux 0xcb082a5c inet_csk_reset_keepalive_timer +EXPORT_SYMBOL vmlinux 0xcb0900ae of_get_child_by_name +EXPORT_SYMBOL vmlinux 0xcb19fa67 touchscreen_report_pos EXPORT_SYMBOL vmlinux 0xcb3ae215 call_blocking_lsm_notifier -EXPORT_SYMBOL vmlinux 0xcb40a193 of_node_get +EXPORT_SYMBOL vmlinux 0xcb4a139b i2c_smbus_write_word_data EXPORT_SYMBOL vmlinux 0xcb510bc2 complete_all -EXPORT_SYMBOL vmlinux 0xcb5388d7 cdev_add -EXPORT_SYMBOL vmlinux 0xcb5ba94e kernel_listen -EXPORT_SYMBOL vmlinux 0xcb5f0e05 tty_insert_flip_string_fixed_flag +EXPORT_SYMBOL vmlinux 0xcb580d3b tc6393xb_lcd_set_power EXPORT_SYMBOL vmlinux 0xcb606eb9 xa_load -EXPORT_SYMBOL vmlinux 0xcb60b770 __skb_flow_dissect -EXPORT_SYMBOL vmlinux 0xcb6a25e1 page_readlink -EXPORT_SYMBOL vmlinux 0xcb6b3e9e kernel_bind -EXPORT_SYMBOL vmlinux 0xcb704932 skb_flow_dissect_ct -EXPORT_SYMBOL vmlinux 0xcb74d2c6 __xfrm_decode_session -EXPORT_SYMBOL vmlinux 0xcb7b839b pcie_get_readrq -EXPORT_SYMBOL vmlinux 0xcb7fb1b1 __cgroup_bpf_run_filter_skb -EXPORT_SYMBOL vmlinux 0xcb86cfc3 genl_notify -EXPORT_SYMBOL vmlinux 0xcb889a49 pci_setup_cardbus +EXPORT_SYMBOL vmlinux 0xcb6c0ee6 tcp_check_req +EXPORT_SYMBOL vmlinux 0xcb6e1867 iov_iter_get_pages_alloc +EXPORT_SYMBOL vmlinux 0xcb789286 fs_param_is_blob +EXPORT_SYMBOL vmlinux 0xcb799b7d netdev_info EXPORT_SYMBOL vmlinux 0xcb8c753b mempool_exit -EXPORT_SYMBOL vmlinux 0xcb8d3a0f posix_acl_update_mode -EXPORT_SYMBOL vmlinux 0xcb999126 xp_set_rxq_info -EXPORT_SYMBOL vmlinux 0xcbc25f96 fb_get_buffer_offset -EXPORT_SYMBOL vmlinux 0xcbcb71d1 i2c_smbus_read_word_data -EXPORT_SYMBOL vmlinux 0xcbcbe080 md_bitmap_free +EXPORT_SYMBOL vmlinux 0xcb94c3b2 jbd2_journal_force_commit +EXPORT_SYMBOL vmlinux 0xcba38b8a pci_reenable_device EXPORT_SYMBOL vmlinux 0xcbd4898c fortify_panic -EXPORT_SYMBOL vmlinux 0xcbdadaf0 neigh_table_clear -EXPORT_SYMBOL vmlinux 0xcbe2ab93 tc_setup_cb_reoffload -EXPORT_SYMBOL vmlinux 0xcbe5da51 noop_fsync +EXPORT_SYMBOL vmlinux 0xcbda58b9 pci_write_config_byte +EXPORT_SYMBOL vmlinux 0xcbe2ee02 scsi_ioctl EXPORT_SYMBOL vmlinux 0xcbf1dbd0 utf8len -EXPORT_SYMBOL vmlinux 0xcbf92631 sock_i_uid -EXPORT_SYMBOL vmlinux 0xcbff0646 flow_rule_match_ipv4_addrs -EXPORT_SYMBOL vmlinux 0xcc0392da __blkdev_issue_zeroout -EXPORT_SYMBOL vmlinux 0xcc17d85d tcp_md5_hash_key -EXPORT_SYMBOL vmlinux 0xcc187387 dma_get_sgtable_attrs +EXPORT_SYMBOL vmlinux 0xcbfd1dd6 cros_ec_cmd_xfer_status +EXPORT_SYMBOL vmlinux 0xcbfdc7dd tcp_recvmsg +EXPORT_SYMBOL vmlinux 0xcc05da4a jbd2_transaction_committed +EXPORT_SYMBOL vmlinux 0xcc118836 pcie_capability_clear_and_set_word EXPORT_SYMBOL vmlinux 0xcc248d26 serial8250_suspend_port +EXPORT_SYMBOL vmlinux 0xcc2dc672 security_unix_stream_connect EXPORT_SYMBOL vmlinux 0xcc30f0f1 tcp_tx_delay_enabled -EXPORT_SYMBOL vmlinux 0xcc33e118 sock_set_rcvbuf -EXPORT_SYMBOL vmlinux 0xcc3818e4 dcb_ieee_getapp_default_prio_mask -EXPORT_SYMBOL vmlinux 0xcc3fc44b uart_update_timeout EXPORT_SYMBOL vmlinux 0xcc445ceb __sg_page_iter_dma_next -EXPORT_SYMBOL vmlinux 0xcc4e8a53 filemap_fdatawait_range -EXPORT_SYMBOL vmlinux 0xcc4febb4 register_mii_tstamp_controller +EXPORT_SYMBOL vmlinux 0xcc45dfb6 dev_getfirstbyhwtype EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible -EXPORT_SYMBOL vmlinux 0xcc565519 inet6_unregister_protosw EXPORT_SYMBOL vmlinux 0xcc5d22d9 can_do_mlock -EXPORT_SYMBOL vmlinux 0xcc66787d page_symlink_inode_operations -EXPORT_SYMBOL vmlinux 0xcc6a44c9 jbd2_complete_transaction +EXPORT_SYMBOL vmlinux 0xcc5e2895 edac_mc_find EXPORT_SYMBOL vmlinux 0xcc6a729f snd_ctl_enum_info -EXPORT_SYMBOL vmlinux 0xcc7d6614 __mod_lruvec_page_state -EXPORT_SYMBOL vmlinux 0xcca872ff sock_wfree -EXPORT_SYMBOL vmlinux 0xccbc16ed jbd2_journal_inode_ranged_write -EXPORT_SYMBOL vmlinux 0xccc3f5a7 __mod_node_page_state -EXPORT_SYMBOL vmlinux 0xccd0e22b md_bitmap_close_sync +EXPORT_SYMBOL vmlinux 0xcc73b2a2 tcp_v4_syn_recv_sock +EXPORT_SYMBOL vmlinux 0xcca1dcfc __mod_lruvec_page_state +EXPORT_SYMBOL vmlinux 0xccac551e pci_claim_resource +EXPORT_SYMBOL vmlinux 0xccb78b00 sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0xccc55e9d proc_create_mount_point +EXPORT_SYMBOL vmlinux 0xccc97da4 inet6_add_protocol +EXPORT_SYMBOL vmlinux 0xcccc183b sockfd_lookup EXPORT_SYMBOL vmlinux 0xccd4c999 __sg_page_iter_start -EXPORT_SYMBOL vmlinux 0xccd58f41 input_set_min_poll_interval -EXPORT_SYMBOL vmlinux 0xccf7f35e __destroy_inode +EXPORT_SYMBOL vmlinux 0xcce5eaa0 copy_page_from_iter +EXPORT_SYMBOL vmlinux 0xccf87fa7 vfs_iocb_iter_read EXPORT_SYMBOL vmlinux 0xccfb9e07 dst_default_metrics EXPORT_SYMBOL vmlinux 0xccfd2ebc scsi_dev_info_list_del_keyed EXPORT_SYMBOL vmlinux 0xcd00abbc add_wait_queue_exclusive EXPORT_SYMBOL vmlinux 0xcd083b10 unregister_sound_dsp +EXPORT_SYMBOL vmlinux 0xcd0d5ed0 snd_sgbuf_get_addr +EXPORT_SYMBOL vmlinux 0xcd1abd3f snd_jack_set_parent +EXPORT_SYMBOL vmlinux 0xcd213774 rawnand_sw_bch_cleanup EXPORT_SYMBOL vmlinux 0xcd279169 nla_find -EXPORT_SYMBOL vmlinux 0xcd27dc4e _dev_printk EXPORT_SYMBOL vmlinux 0xcd30b95a tmio_core_mmc_clk_div -EXPORT_SYMBOL vmlinux 0xcd366648 get_fs_type -EXPORT_SYMBOL vmlinux 0xcd380044 seq_release_private -EXPORT_SYMBOL vmlinux 0xcd3a0810 sock_alloc_send_skb -EXPORT_SYMBOL vmlinux 0xcd4dd609 snd_card_file_add +EXPORT_SYMBOL vmlinux 0xcd466e16 sk_stop_timer_sync +EXPORT_SYMBOL vmlinux 0xcd4ec4a6 page_mapping EXPORT_SYMBOL vmlinux 0xcd63c845 __aeabi_lasr -EXPORT_SYMBOL vmlinux 0xcd70e8f7 netif_tx_stop_all_queues -EXPORT_SYMBOL vmlinux 0xcda16ff8 i2c_get_adapter +EXPORT_SYMBOL vmlinux 0xcd7619cf d_genocide +EXPORT_SYMBOL vmlinux 0xcd773e89 end_buffer_async_write +EXPORT_SYMBOL vmlinux 0xcd7e1f89 snd_ctl_make_virtual_master +EXPORT_SYMBOL vmlinux 0xcdae2284 padata_alloc_shell EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel -EXPORT_SYMBOL vmlinux 0xcdc9e110 do_splice_direct -EXPORT_SYMBOL vmlinux 0xcde64867 ppp_input_error +EXPORT_SYMBOL vmlinux 0xcdd7ab45 path_put +EXPORT_SYMBOL vmlinux 0xcddb8ff6 blk_mq_delay_run_hw_queues EXPORT_SYMBOL vmlinux 0xcde77bcc free_opal_dev -EXPORT_SYMBOL vmlinux 0xcdf08603 nf_log_trace -EXPORT_SYMBOL vmlinux 0xcdf948bf nand_ecc_get_sw_engine -EXPORT_SYMBOL vmlinux 0xce18eebf tcf_block_netif_keep_dst +EXPORT_SYMBOL vmlinux 0xcdeac3a4 locks_free_lock +EXPORT_SYMBOL vmlinux 0xce076cc8 hash_and_copy_to_iter EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake -EXPORT_SYMBOL vmlinux 0xce2c63d1 configfs_register_default_group -EXPORT_SYMBOL vmlinux 0xce323726 of_find_mipi_dsi_host_by_node -EXPORT_SYMBOL vmlinux 0xce35952b from_kgid +EXPORT_SYMBOL vmlinux 0xce375573 napi_gro_receive EXPORT_SYMBOL vmlinux 0xce3ca308 copy_from_user_toio EXPORT_SYMBOL vmlinux 0xce4cdb8e fb_find_best_mode +EXPORT_SYMBOL vmlinux 0xce4eaa8c pci_alloc_dev EXPORT_SYMBOL vmlinux 0xce5ac24f zlib_inflate_workspacesize -EXPORT_SYMBOL vmlinux 0xce613e1d devm_release_resource +EXPORT_SYMBOL vmlinux 0xce5c75ea posix_lock_file +EXPORT_SYMBOL vmlinux 0xce63f48b dev_pm_opp_register_notifier +EXPORT_SYMBOL vmlinux 0xce70cd0c file_fdatawait_range EXPORT_SYMBOL vmlinux 0xce731b34 ucc_slow_get_qe_cr_subblock -EXPORT_SYMBOL vmlinux 0xce7ab9aa snd_ctl_find_id -EXPORT_SYMBOL vmlinux 0xce87963d zerocopy_sg_from_iter -EXPORT_SYMBOL vmlinux 0xcea6ab9a scsi_eh_prep_cmnd -EXPORT_SYMBOL vmlinux 0xcea81542 pskb_trim_rcsum_slow +EXPORT_SYMBOL vmlinux 0xce767b79 clean_bdev_aliases +EXPORT_SYMBOL vmlinux 0xce78b3de tty_devnum +EXPORT_SYMBOL vmlinux 0xce791d54 mntget +EXPORT_SYMBOL vmlinux 0xce91daf8 unlock_rename EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul EXPORT_SYMBOL vmlinux 0xceabee8a __put_cred +EXPORT_SYMBOL vmlinux 0xceb2db42 try_to_writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0xced2866d vfs_parse_fs_param +EXPORT_SYMBOL vmlinux 0xced38192 dcb_ieee_getapp_dscp_prio_mask_map EXPORT_SYMBOL vmlinux 0xcedc99af mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0xcedd1521 __scm_send EXPORT_SYMBOL vmlinux 0xcede275c memremap EXPORT_SYMBOL vmlinux 0xcedf4833 par_io_of_config -EXPORT_SYMBOL vmlinux 0xcee5a136 jbd2_journal_load EXPORT_SYMBOL vmlinux 0xceec8abd __mb_cache_entry_free +EXPORT_SYMBOL vmlinux 0xcef83d8d snd_dma_alloc_pages_fallback EXPORT_SYMBOL vmlinux 0xcefcd99a serial8250_unregister_port EXPORT_SYMBOL vmlinux 0xcf01f610 panic_notifier_list -EXPORT_SYMBOL vmlinux 0xcf20ccde sget_fc -EXPORT_SYMBOL vmlinux 0xcf2df3e5 vfs_fsync -EXPORT_SYMBOL vmlinux 0xcf49f953 __check_sticky -EXPORT_SYMBOL vmlinux 0xcf70e07c xp_dma_sync_for_cpu_slow +EXPORT_SYMBOL vmlinux 0xcf4a0762 padata_do_parallel +EXPORT_SYMBOL vmlinux 0xcf4ddc14 phy_register_fixup +EXPORT_SYMBOL vmlinux 0xcf543f29 of_graph_get_next_endpoint +EXPORT_SYMBOL vmlinux 0xcf5f4bec nf_ct_attach +EXPORT_SYMBOL vmlinux 0xcf77cc38 nd_btt_version EXPORT_SYMBOL vmlinux 0xcf7e1d1d hdmi_vendor_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0xcf84e716 reuseport_attach_prog +EXPORT_SYMBOL vmlinux 0xcf800398 __cgroup_bpf_run_filter_sock_addr +EXPORT_SYMBOL vmlinux 0xcf85722f tty_port_close EXPORT_SYMBOL vmlinux 0xcf86cdac queue_delayed_work_on -EXPORT_SYMBOL vmlinux 0xcf8cbeb8 of_get_next_parent EXPORT_SYMBOL vmlinux 0xcf8d8d2f kobject_set_name -EXPORT_SYMBOL vmlinux 0xcf8ed33b dev_queue_xmit_accel -EXPORT_SYMBOL vmlinux 0xcf93f919 bio_free_pages EXPORT_SYMBOL vmlinux 0xcf9b558d touchscreen_set_mt_pos EXPORT_SYMBOL vmlinux 0xcfa69a7e atomic_dec_and_mutex_lock -EXPORT_SYMBOL vmlinux 0xcfab9498 tcp_v4_send_check -EXPORT_SYMBOL vmlinux 0xcfb1a8a7 audit_log -EXPORT_SYMBOL vmlinux 0xcfb65643 mark_info_dirty -EXPORT_SYMBOL vmlinux 0xcfd082b2 scsi_block_when_processing_errors -EXPORT_SYMBOL vmlinux 0xcff7980d trace_event_printf -EXPORT_SYMBOL vmlinux 0xcffcc0ac remove_proc_subtree -EXPORT_SYMBOL vmlinux 0xd00b92c8 proc_create -EXPORT_SYMBOL vmlinux 0xd0114ae1 dst_init -EXPORT_SYMBOL vmlinux 0xd02bf14c phy_drivers_register -EXPORT_SYMBOL vmlinux 0xd045f158 fb_get_mode +EXPORT_SYMBOL vmlinux 0xcfb954dd param_set_uint +EXPORT_SYMBOL vmlinux 0xcfc2a168 mipi_dsi_dcs_nop +EXPORT_SYMBOL vmlinux 0xcfc68d67 request_key_with_auxdata +EXPORT_SYMBOL vmlinux 0xcfdb97ce __remove_inode_hash +EXPORT_SYMBOL vmlinux 0xcfe0822c sock_set_mark +EXPORT_SYMBOL vmlinux 0xcfe8976c dma_resv_copy_fences +EXPORT_SYMBOL vmlinux 0xcff31515 vmf_insert_pfn_prot +EXPORT_SYMBOL vmlinux 0xcff446e0 tcf_em_tree_validate +EXPORT_SYMBOL vmlinux 0xcff90578 lookup_one +EXPORT_SYMBOL vmlinux 0xd007d67b buffer_migrate_page +EXPORT_SYMBOL vmlinux 0xd018c3d2 snd_pcm_set_managed_buffer_all +EXPORT_SYMBOL vmlinux 0xd02a5956 blk_dump_rq_flags +EXPORT_SYMBOL vmlinux 0xd034457e blk_mq_queue_stopped +EXPORT_SYMBOL vmlinux 0xd0385f42 xfrm_state_flush +EXPORT_SYMBOL vmlinux 0xd03a0c07 netdev_features_change EXPORT_SYMBOL vmlinux 0xd04c1a64 sysctl_devconf_inherit_init_net +EXPORT_SYMBOL vmlinux 0xd04e163b pci_scan_slot +EXPORT_SYMBOL vmlinux 0xd04f597f gnet_stats_start_copy EXPORT_SYMBOL vmlinux 0xd04febe9 arm_elf_read_implies_exec -EXPORT_SYMBOL vmlinux 0xd0562a01 dma_unmap_page_attrs EXPORT_SYMBOL vmlinux 0xd0654aba woken_wake_function +EXPORT_SYMBOL vmlinux 0xd06818d9 iov_iter_single_seg_count +EXPORT_SYMBOL vmlinux 0xd075e605 pci_fixup_cardbus EXPORT_SYMBOL vmlinux 0xd0760fc0 kfree_sensitive -EXPORT_SYMBOL vmlinux 0xd07de897 elv_rb_del -EXPORT_SYMBOL vmlinux 0xd0847946 shmem_aops -EXPORT_SYMBOL vmlinux 0xd08c98e2 vme_dma_request -EXPORT_SYMBOL vmlinux 0xd0a2fa19 fb_class +EXPORT_SYMBOL vmlinux 0xd0890e19 d_invalidate +EXPORT_SYMBOL vmlinux 0xd08b974a from_kgid_munged +EXPORT_SYMBOL vmlinux 0xd09a8751 snd_timer_notify +EXPORT_SYMBOL vmlinux 0xd09d75b4 neigh_resolve_output EXPORT_SYMBOL vmlinux 0xd0ae5f55 __printk_cpu_trylock EXPORT_SYMBOL vmlinux 0xd0e9fb09 release_firmware -EXPORT_SYMBOL vmlinux 0xd0ed3570 netif_device_attach -EXPORT_SYMBOL vmlinux 0xd0ef1018 fuse_mount_destroy -EXPORT_SYMBOL vmlinux 0xd0fe6292 pci_scan_root_bus_bridge +EXPORT_SYMBOL vmlinux 0xd0ed6d29 blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0xd0f4b3f0 genphy_read_abilities +EXPORT_SYMBOL vmlinux 0xd1088349 ppp_unregister_channel EXPORT_SYMBOL vmlinux 0xd109778f gen_pool_dma_alloc_algo EXPORT_SYMBOL vmlinux 0xd1119f21 __tracepoint_spi_transfer_stop -EXPORT_SYMBOL vmlinux 0xd115f5ae rps_may_expire_flow -EXPORT_SYMBOL vmlinux 0xd127de1e elv_rb_add +EXPORT_SYMBOL vmlinux 0xd1134e95 i2c_smbus_write_i2c_block_data +EXPORT_SYMBOL vmlinux 0xd12b3ffd udp_pre_connect EXPORT_SYMBOL vmlinux 0xd1363cc1 ucs2_strsize -EXPORT_SYMBOL vmlinux 0xd15e896f inode_get_bytes -EXPORT_SYMBOL vmlinux 0xd15f470d lock_sock_nested -EXPORT_SYMBOL vmlinux 0xd1643267 mipi_dsi_driver_register_full +EXPORT_SYMBOL vmlinux 0xd14b88d2 rt_dst_alloc +EXPORT_SYMBOL vmlinux 0xd154f56f rproc_elf_find_loaded_rsc_table +EXPORT_SYMBOL vmlinux 0xd16e505d cfb_fillrect EXPORT_SYMBOL vmlinux 0xd1816f32 frontswap_writethrough -EXPORT_SYMBOL vmlinux 0xd1994065 alloc_file_pseudo -EXPORT_SYMBOL vmlinux 0xd1c06f5f pci_disable_link_state -EXPORT_SYMBOL vmlinux 0xd1c12ba6 cdev_del -EXPORT_SYMBOL vmlinux 0xd1ceafc3 vlan_for_each -EXPORT_SYMBOL vmlinux 0xd1d4818f netlink_broadcast +EXPORT_SYMBOL vmlinux 0xd18c862f scm_fp_dup +EXPORT_SYMBOL vmlinux 0xd18ecda7 neigh_changeaddr +EXPORT_SYMBOL vmlinux 0xd19147b6 netif_stacked_transfer_operstate EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string -EXPORT_SYMBOL vmlinux 0xd1fd53ee udp_seq_ops +EXPORT_SYMBOL vmlinux 0xd1dfb90c of_mdiobus_child_is_phy +EXPORT_SYMBOL vmlinux 0xd1e1ca7d cookie_ecn_ok +EXPORT_SYMBOL vmlinux 0xd1fb0a64 find_vma EXPORT_SYMBOL vmlinux 0xd2051916 qcom_scm_cpu_power_down -EXPORT_SYMBOL vmlinux 0xd20f28a2 tc_setup_cb_replace -EXPORT_SYMBOL vmlinux 0xd21b108f jbd2_journal_ack_err -EXPORT_SYMBOL vmlinux 0xd221f23a i2c_add_adapter -EXPORT_SYMBOL vmlinux 0xd22fa2ff param_ops_invbool -EXPORT_SYMBOL vmlinux 0xd23943fb of_platform_bus_probe -EXPORT_SYMBOL vmlinux 0xd23c70a0 inode_nohighmem -EXPORT_SYMBOL vmlinux 0xd2578862 page_pool_return_skb_page +EXPORT_SYMBOL vmlinux 0xd20eed34 proc_set_size +EXPORT_SYMBOL vmlinux 0xd2167716 filemap_write_and_wait_range +EXPORT_SYMBOL vmlinux 0xd25623f7 udp_sendmsg EXPORT_SYMBOL vmlinux 0xd2582f8f __SCK__tp_func_mmap_lock_acquire_returned +EXPORT_SYMBOL vmlinux 0xd25d35b1 pci_ep_cfs_add_epf_group EXPORT_SYMBOL vmlinux 0xd25d4f74 console_blank_hook -EXPORT_SYMBOL vmlinux 0xd26d6ecf tcf_exts_destroy -EXPORT_SYMBOL vmlinux 0xd27621a5 pci_find_resource +EXPORT_SYMBOL vmlinux 0xd265c37b xfrm_replay_seqhi +EXPORT_SYMBOL vmlinux 0xd26624c4 inet_csk_destroy_sock EXPORT_SYMBOL vmlinux 0xd2779731 blk_limits_io_min -EXPORT_SYMBOL vmlinux 0xd279c15d pci_enable_msi +EXPORT_SYMBOL vmlinux 0xd278bbb4 of_graph_is_present EXPORT_SYMBOL vmlinux 0xd27b25dd blk_check_plugged +EXPORT_SYMBOL vmlinux 0xd27d31df ps2_sliced_command +EXPORT_SYMBOL vmlinux 0xd2800691 nf_conntrack_destroy EXPORT_SYMBOL vmlinux 0xd2802d5c pgprot_kernel -EXPORT_SYMBOL vmlinux 0xd2869e1d __snd_pcm_lib_xfer EXPORT_SYMBOL vmlinux 0xd287f598 kobject_put EXPORT_SYMBOL vmlinux 0xd288841c omap_get_dma_dst_pos -EXPORT_SYMBOL vmlinux 0xd290fef9 dev_mc_del -EXPORT_SYMBOL vmlinux 0xd2a6bc34 uart_remove_one_port -EXPORT_SYMBOL vmlinux 0xd2b7b1c6 __sk_mem_reduce_allocated -EXPORT_SYMBOL vmlinux 0xd2b99d9d blk_integrity_compare -EXPORT_SYMBOL vmlinux 0xd2c6017a __set_page_dirty_nobuffers -EXPORT_SYMBOL vmlinux 0xd2d52add dqget -EXPORT_SYMBOL vmlinux 0xd2d955fe ps2_begin_command +EXPORT_SYMBOL vmlinux 0xd29a3a1b posix_acl_update_mode EXPORT_SYMBOL vmlinux 0xd2da1048 register_netdevice_notifier -EXPORT_SYMBOL vmlinux 0xd2e7d0af block_write_end +EXPORT_SYMBOL vmlinux 0xd2dd1d88 touch_atime +EXPORT_SYMBOL vmlinux 0xd2e3547d remap_pfn_range EXPORT_SYMBOL vmlinux 0xd2eb32b9 tcp_rx_skb_cache_key -EXPORT_SYMBOL vmlinux 0xd2f297d2 tty_check_change -EXPORT_SYMBOL vmlinux 0xd2fa0c2f simple_recursive_removal -EXPORT_SYMBOL vmlinux 0xd2fe600d input_register_handle +EXPORT_SYMBOL vmlinux 0xd2f19b83 of_clk_get_by_name +EXPORT_SYMBOL vmlinux 0xd3158d19 register_sound_dsp EXPORT_SYMBOL vmlinux 0xd31ccb06 of_machine_is_compatible -EXPORT_SYMBOL vmlinux 0xd322de73 security_path_mkdir EXPORT_SYMBOL vmlinux 0xd32d6c08 lockref_get -EXPORT_SYMBOL vmlinux 0xd347a082 jbd2_fc_begin_commit -EXPORT_SYMBOL vmlinux 0xd34a715f alloc_anon_inode EXPORT_SYMBOL vmlinux 0xd35a6d31 mempool_kmalloc EXPORT_SYMBOL vmlinux 0xd35f75a1 match_string +EXPORT_SYMBOL vmlinux 0xd3638e68 sched_autogroup_create_attach EXPORT_SYMBOL vmlinux 0xd36dc10c get_random_u32 -EXPORT_SYMBOL vmlinux 0xd37c234f vfs_path_lookup -EXPORT_SYMBOL vmlinux 0xd396efe4 skb_csum_hwoffload_help +EXPORT_SYMBOL vmlinux 0xd377ddf0 tcp_enter_quickack_mode +EXPORT_SYMBOL vmlinux 0xd39484c7 param_get_byte EXPORT_SYMBOL vmlinux 0xd39fa6ab __kfifo_alloc -EXPORT_SYMBOL vmlinux 0xd3d4f92b pldmfw_op_pci_match_record -EXPORT_SYMBOL vmlinux 0xd3d943ba crypto_sha1_update -EXPORT_SYMBOL vmlinux 0xd3e8b424 security_sk_clone +EXPORT_SYMBOL vmlinux 0xd3a0a1f9 devm_rproc_add +EXPORT_SYMBOL vmlinux 0xd3bfe88e __zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0xd3ce0176 security_sock_rcv_skb +EXPORT_SYMBOL vmlinux 0xd3d4c488 ip_mc_inc_group EXPORT_SYMBOL vmlinux 0xd3eaf1ed devlink_dpipe_entry_clear -EXPORT_SYMBOL vmlinux 0xd402cad9 __cgroup_bpf_run_filter_sock_ops +EXPORT_SYMBOL vmlinux 0xd3ef4e43 mark_info_dirty +EXPORT_SYMBOL vmlinux 0xd3fbad40 proc_mkdir_mode +EXPORT_SYMBOL vmlinux 0xd4047b10 snd_seq_root EXPORT_SYMBOL vmlinux 0xd406d266 fb_mode_is_equal -EXPORT_SYMBOL vmlinux 0xd40ebb70 alloc_fcdev -EXPORT_SYMBOL vmlinux 0xd4131c5e kthread_destroy_worker -EXPORT_SYMBOL vmlinux 0xd416f45d unpin_user_pages -EXPORT_SYMBOL vmlinux 0xd4512448 tty_hung_up_p -EXPORT_SYMBOL vmlinux 0xd4553e18 I_BDEV -EXPORT_SYMBOL vmlinux 0xd455590d tty_wait_until_sent -EXPORT_SYMBOL vmlinux 0xd45991d4 netdev_lower_get_first_private_rcu -EXPORT_SYMBOL vmlinux 0xd45d8ebc dev_remove_pack +EXPORT_SYMBOL vmlinux 0xd410f925 d_exact_alias +EXPORT_SYMBOL vmlinux 0xd433ea5b mipi_dsi_dcs_set_display_on +EXPORT_SYMBOL vmlinux 0xd43e1125 snd_ctl_free_one +EXPORT_SYMBOL vmlinux 0xd44aad4b serio_reconnect +EXPORT_SYMBOL vmlinux 0xd4544848 tcp_get_md5sig_pool EXPORT_SYMBOL vmlinux 0xd45ddb66 kstrtobool_from_user -EXPORT_SYMBOL vmlinux 0xd460879a ps2_handle_ack -EXPORT_SYMBOL vmlinux 0xd4685357 get_phy_device +EXPORT_SYMBOL vmlinux 0xd45ea93b vlan_for_each +EXPORT_SYMBOL vmlinux 0xd4683130 inet_shutdown EXPORT_SYMBOL vmlinux 0xd46b54dd flush_delayed_work -EXPORT_SYMBOL vmlinux 0xd46e6250 serial8250_set_isa_configurator +EXPORT_SYMBOL vmlinux 0xd46e75dc key_reject_and_link EXPORT_SYMBOL vmlinux 0xd4835ef8 dmi_check_system EXPORT_SYMBOL vmlinux 0xd48fdeef dql_completed -EXPORT_SYMBOL vmlinux 0xd497ccaa inet_sendmsg EXPORT_SYMBOL vmlinux 0xd4b1724a __nla_reserve EXPORT_SYMBOL vmlinux 0xd4bb4a82 inet6addr_validator_notifier_call_chain -EXPORT_SYMBOL vmlinux 0xd4c0e179 page_pool_alloc_pages EXPORT_SYMBOL vmlinux 0xd4c369df __nla_reserve_nohdr -EXPORT_SYMBOL vmlinux 0xd4c7a98d nf_ct_get_tuple_skb -EXPORT_SYMBOL vmlinux 0xd4d046d0 netdev_has_any_upper_dev +EXPORT_SYMBOL vmlinux 0xd4c4c358 __inode_add_bytes +EXPORT_SYMBOL vmlinux 0xd4c538fc tty_driver_flush_buffer EXPORT_SYMBOL vmlinux 0xd4e2f0e4 gen_pool_set_algo -EXPORT_SYMBOL vmlinux 0xd4f3ffc8 i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0xd4e4c445 submit_bio_noacct +EXPORT_SYMBOL vmlinux 0xd4e76146 nd_btt_arena_is_valid +EXPORT_SYMBOL vmlinux 0xd4eb5cf4 nd_dev_to_uuid +EXPORT_SYMBOL vmlinux 0xd4f41b85 nand_ecc_sw_hamming_init_ctx EXPORT_SYMBOL vmlinux 0xd4fa5a87 __kfifo_dma_out_prepare -EXPORT_SYMBOL vmlinux 0xd51a3e9f logfc -EXPORT_SYMBOL vmlinux 0xd51fdbde tcp_stream_memory_free +EXPORT_SYMBOL vmlinux 0xd501d63e tcp_simple_retransmit +EXPORT_SYMBOL vmlinux 0xd51ea238 netif_receive_skb +EXPORT_SYMBOL vmlinux 0xd5241515 bdev_dax_pgoff EXPORT_SYMBOL vmlinux 0xd5263820 mb_cache_destroy -EXPORT_SYMBOL vmlinux 0xd5393b32 __post_watch_notification -EXPORT_SYMBOL vmlinux 0xd539cb55 __splice_from_pipe -EXPORT_SYMBOL vmlinux 0xd547b173 _dev_emerg -EXPORT_SYMBOL vmlinux 0xd5657a72 inet_accept -EXPORT_SYMBOL vmlinux 0xd571ae2c tcp_check_req -EXPORT_SYMBOL vmlinux 0xd5820d5f frontswap_register_ops -EXPORT_SYMBOL vmlinux 0xd58b04f0 twl6040_reg_read +EXPORT_SYMBOL vmlinux 0xd5333f8d devfreq_suspend_device +EXPORT_SYMBOL vmlinux 0xd55004bc xfrm4_rcv +EXPORT_SYMBOL vmlinux 0xd55c548d mipi_dsi_device_unregister +EXPORT_SYMBOL vmlinux 0xd56d9516 __traceiter_mmap_lock_acquire_returned +EXPORT_SYMBOL vmlinux 0xd57efe33 nf_register_sockopt EXPORT_SYMBOL vmlinux 0xd58e70dd net_rand_noise -EXPORT_SYMBOL vmlinux 0xd5906129 sock_no_sendpage_locked -EXPORT_SYMBOL vmlinux 0xd593a4fb blkdev_issue_discard -EXPORT_SYMBOL vmlinux 0xd5a0e2a8 flush_signals -EXPORT_SYMBOL vmlinux 0xd5aef05b __netdev_notify_peers +EXPORT_SYMBOL vmlinux 0xd5909039 filemap_range_has_page +EXPORT_SYMBOL vmlinux 0xd5984cc9 serio_close +EXPORT_SYMBOL vmlinux 0xd5a02b17 __generic_file_write_iter EXPORT_SYMBOL vmlinux 0xd5b3d0d5 xxh64_copy_state -EXPORT_SYMBOL vmlinux 0xd5bcbb1b nd_namespace_blk_validate +EXPORT_SYMBOL vmlinux 0xd5cd68bd dcb_getapp +EXPORT_SYMBOL vmlinux 0xd5d19efd phy_register_fixup_for_id +EXPORT_SYMBOL vmlinux 0xd5da6103 jbd2_journal_destroy EXPORT_SYMBOL vmlinux 0xd5f52d4f netdev_rss_key_fill +EXPORT_SYMBOL vmlinux 0xd5fc998b dev_get_iflink +EXPORT_SYMBOL vmlinux 0xd5ffbfb4 dev_queue_xmit_accel EXPORT_SYMBOL vmlinux 0xd60736ec gf128mul_free_64k -EXPORT_SYMBOL vmlinux 0xd60a60a8 filp_close -EXPORT_SYMBOL vmlinux 0xd610bae0 tcf_get_next_proto -EXPORT_SYMBOL vmlinux 0xd61abcd8 xfrm_trans_queue_net -EXPORT_SYMBOL vmlinux 0xd61bdff1 mpage_readahead -EXPORT_SYMBOL vmlinux 0xd61f18fb pci_clear_mwi EXPORT_SYMBOL vmlinux 0xd627480b strncat +EXPORT_SYMBOL vmlinux 0xd6373d42 super_setup_bdi_name +EXPORT_SYMBOL vmlinux 0xd639f046 security_path_mknod EXPORT_SYMBOL vmlinux 0xd63fafc2 div64_u64_rem -EXPORT_SYMBOL vmlinux 0xd643ec74 simple_release_fs -EXPORT_SYMBOL vmlinux 0xd64ad2d5 of_get_cpu_state_node -EXPORT_SYMBOL vmlinux 0xd654ddb2 pci_wait_for_pending_transaction EXPORT_SYMBOL vmlinux 0xd6582ab0 xa_extract -EXPORT_SYMBOL vmlinux 0xd65c4af9 sg_miter_stop -EXPORT_SYMBOL vmlinux 0xd65fcf2a fscrypt_ioctl_set_policy -EXPORT_SYMBOL vmlinux 0xd66ce576 dev_change_proto_down_generic -EXPORT_SYMBOL vmlinux 0xd67e7e6e of_graph_get_remote_node +EXPORT_SYMBOL vmlinux 0xd66f9e45 keyring_alloc +EXPORT_SYMBOL vmlinux 0xd681ba2a d_add_ci EXPORT_SYMBOL vmlinux 0xd688716b dm_kcopyd_client_create -EXPORT_SYMBOL vmlinux 0xd6899a71 of_parse_phandle EXPORT_SYMBOL vmlinux 0xd68c5a1f adjust_resource -EXPORT_SYMBOL vmlinux 0xd694851a is_bad_inode -EXPORT_SYMBOL vmlinux 0xd6a40df5 seq_puts -EXPORT_SYMBOL vmlinux 0xd6a48f5c dev_load +EXPORT_SYMBOL vmlinux 0xd68cde47 rfkill_alloc EXPORT_SYMBOL vmlinux 0xd6a91f54 twl_i2c_read -EXPORT_SYMBOL vmlinux 0xd6a9c29b thread_group_exited -EXPORT_SYMBOL vmlinux 0xd6b5c29a tc_setup_cb_add +EXPORT_SYMBOL vmlinux 0xd6a9c03c mmc_get_card +EXPORT_SYMBOL vmlinux 0xd6afca1d dquot_quota_on_mount EXPORT_SYMBOL vmlinux 0xd6bc04ff cmd_db_read_aux_data -EXPORT_SYMBOL vmlinux 0xd6bf5de3 i2c_smbus_read_byte +EXPORT_SYMBOL vmlinux 0xd6bd14c3 mem_map +EXPORT_SYMBOL vmlinux 0xd6e082a9 page_mapped EXPORT_SYMBOL vmlinux 0xd6eaaea1 full_name_hash EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc EXPORT_SYMBOL vmlinux 0xd6fde043 is_module_sig_enforced -EXPORT_SYMBOL vmlinux 0xd700d313 dcb_setapp EXPORT_SYMBOL vmlinux 0xd70d35a1 gf128mul_4k_bbe -EXPORT_SYMBOL vmlinux 0xd71d4d3b pci_pme_active -EXPORT_SYMBOL vmlinux 0xd736cf35 uart_add_one_port +EXPORT_SYMBOL vmlinux 0xd718e0ae block_truncate_page +EXPORT_SYMBOL vmlinux 0xd725b88e fsync_bdev +EXPORT_SYMBOL vmlinux 0xd728b39c inet_csk_prepare_forced_close +EXPORT_SYMBOL vmlinux 0xd72b9ad4 jbd2_journal_init_jbd_inode +EXPORT_SYMBOL vmlinux 0xd7341089 hmm_range_fault +EXPORT_SYMBOL vmlinux 0xd735574b napi_gro_flush EXPORT_SYMBOL vmlinux 0xd738ca1b phy_unregister_fixup_for_uid -EXPORT_SYMBOL vmlinux 0xd7531bc9 of_match_node -EXPORT_SYMBOL vmlinux 0xd75d4e4b udp_prot +EXPORT_SYMBOL vmlinux 0xd7604079 mmc_run_bkops +EXPORT_SYMBOL vmlinux 0xd7629417 fb_set_suspend +EXPORT_SYMBOL vmlinux 0xd7677004 lookup_one_len_unlocked +EXPORT_SYMBOL vmlinux 0xd76e6225 init_task EXPORT_SYMBOL vmlinux 0xd76f6099 vscnprintf -EXPORT_SYMBOL vmlinux 0xd78a760d mipi_dsi_dcs_set_page_address +EXPORT_SYMBOL vmlinux 0xd77bf58d call_netdevice_notifiers EXPORT_SYMBOL vmlinux 0xd797b9a5 vme_master_write -EXPORT_SYMBOL vmlinux 0xd7c29a85 ip_setsockopt -EXPORT_SYMBOL vmlinux 0xd7cadf65 cdrom_get_media_event +EXPORT_SYMBOL vmlinux 0xd799a536 skb_copy_datagram_iter EXPORT_SYMBOL vmlinux 0xd7d280ad irq_poll_complete EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll EXPORT_SYMBOL vmlinux 0xd7ea7094 nf_unregister_queue_handler -EXPORT_SYMBOL vmlinux 0xd8090b46 phy_mii_ioctl -EXPORT_SYMBOL vmlinux 0xd81eb06b gnet_stats_copy_queue -EXPORT_SYMBOL vmlinux 0xd824fca3 netpoll_cleanup -EXPORT_SYMBOL vmlinux 0xd83d43b9 __skb_try_recv_datagram +EXPORT_SYMBOL vmlinux 0xd8025fd7 cros_ec_check_result +EXPORT_SYMBOL vmlinux 0xd817d4fa kmem_cache_create +EXPORT_SYMBOL vmlinux 0xd8384354 nexthop_bucket_set_hw_flags +EXPORT_SYMBOL vmlinux 0xd83bc75d mod_zone_page_state EXPORT_SYMBOL vmlinux 0xd8410611 mempool_alloc -EXPORT_SYMBOL vmlinux 0xd84e2c8e __dynamic_dev_dbg -EXPORT_SYMBOL vmlinux 0xd85bd5f2 sock_set_mark -EXPORT_SYMBOL vmlinux 0xd85e5c18 param_ops_string +EXPORT_SYMBOL vmlinux 0xd860d27d xfrm6_rcv_spi EXPORT_SYMBOL vmlinux 0xd86b61c4 _raw_spin_lock_irq EXPORT_SYMBOL vmlinux 0xd875584a __genradix_ptr -EXPORT_SYMBOL vmlinux 0xd8758dd6 dev_get_stats -EXPORT_SYMBOL vmlinux 0xd88d3da2 fb_show_logo -EXPORT_SYMBOL vmlinux 0xd897165f fput +EXPORT_SYMBOL vmlinux 0xd89d4b24 mipi_dsi_generic_read EXPORT_SYMBOL vmlinux 0xd89da37f movable_zone EXPORT_SYMBOL vmlinux 0xd89ee11f krait_set_l2_indirect_reg -EXPORT_SYMBOL vmlinux 0xd8a84bb8 __quota_error +EXPORT_SYMBOL vmlinux 0xd8a72c29 discard_new_inode EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format -EXPORT_SYMBOL vmlinux 0xd8ad5431 bio_integrity_trim -EXPORT_SYMBOL vmlinux 0xd8b51d62 lookup_one_len +EXPORT_SYMBOL vmlinux 0xd8b098a8 open_with_fake_path EXPORT_SYMBOL vmlinux 0xd8b61304 get_default_font -EXPORT_SYMBOL vmlinux 0xd8c7b1ef bdev_check_media_change -EXPORT_SYMBOL vmlinux 0xd8d10faf __netlink_dump_start -EXPORT_SYMBOL vmlinux 0xd8e86cc4 tcp_init_sock +EXPORT_SYMBOL vmlinux 0xd8d70053 fscrypt_ioctl_get_policy +EXPORT_SYMBOL vmlinux 0xd8df33b2 fb_firmware_edid EXPORT_SYMBOL vmlinux 0xd8ea6ea1 kobject_init -EXPORT_SYMBOL vmlinux 0xd90eefe3 vm_map_pages -EXPORT_SYMBOL vmlinux 0xd9104fb6 follow_down_one EXPORT_SYMBOL vmlinux 0xd91f6ab6 strnlen_user -EXPORT_SYMBOL vmlinux 0xd920d4fd update_devfreq -EXPORT_SYMBOL vmlinux 0xd930d1c2 kernel_param_unlock +EXPORT_SYMBOL vmlinux 0xd9207a4b release_sock +EXPORT_SYMBOL vmlinux 0xd925d406 unlock_two_nondirectories +EXPORT_SYMBOL vmlinux 0xd92b6f37 __dynamic_netdev_dbg +EXPORT_SYMBOL vmlinux 0xd93f1988 udp_seq_ops EXPORT_SYMBOL vmlinux 0xd955d2b7 omap_set_dma_dest_data_pack +EXPORT_SYMBOL vmlinux 0xd958ce16 dquot_disable +EXPORT_SYMBOL vmlinux 0xd9600df0 snd_pcm_hw_param_last +EXPORT_SYMBOL vmlinux 0xd9604247 blk_mq_run_hw_queue +EXPORT_SYMBOL vmlinux 0xd9633d60 neigh_connected_output +EXPORT_SYMBOL vmlinux 0xd9857672 input_set_capability EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages -EXPORT_SYMBOL vmlinux 0xd9b16960 i2c_put_adapter +EXPORT_SYMBOL vmlinux 0xd994d1be devm_pci_remap_iospace +EXPORT_SYMBOL vmlinux 0xd9b736b8 vga_remove_vgacon EXPORT_SYMBOL vmlinux 0xd9b8eaea __SCK__tp_func_dma_fence_signaled -EXPORT_SYMBOL vmlinux 0xd9bb169b dm_table_run_md_queue_async -EXPORT_SYMBOL vmlinux 0xd9c2cf30 eth_gro_complete EXPORT_SYMBOL vmlinux 0xd9ce8f0c strnlen -EXPORT_SYMBOL vmlinux 0xd9d3fa60 tcf_qevent_dump EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler EXPORT_SYMBOL vmlinux 0xd9d952d1 crypto_aes_sbox -EXPORT_SYMBOL vmlinux 0xd9e6c9c6 mdio_driver_register -EXPORT_SYMBOL vmlinux 0xd9f6613b rt_mutex_base_init +EXPORT_SYMBOL vmlinux 0xd9e9776c register_nexthop_notifier EXPORT_SYMBOL vmlinux 0xd9f69e4a ns_capable_setid -EXPORT_SYMBOL vmlinux 0xd9f7a38d phy_read_mmd -EXPORT_SYMBOL vmlinux 0xd9fd6ab5 flow_rule_match_ipv6_addrs -EXPORT_SYMBOL vmlinux 0xda05ebb2 simple_pin_fs -EXPORT_SYMBOL vmlinux 0xda0e976e tty_name +EXPORT_SYMBOL vmlinux 0xd9f78b9c page_pool_put_page +EXPORT_SYMBOL vmlinux 0xda0676eb scmd_printk +EXPORT_SYMBOL vmlinux 0xda0cfea1 pcie_print_link_status +EXPORT_SYMBOL vmlinux 0xda34b2b1 vga_put +EXPORT_SYMBOL vmlinux 0xda39a9a1 pci_request_region EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open -EXPORT_SYMBOL vmlinux 0xda407a66 file_modified -EXPORT_SYMBOL vmlinux 0xda4116b9 ip6_find_1stfragopt -EXPORT_SYMBOL vmlinux 0xda4f0a27 pci_bus_set_ops -EXPORT_SYMBOL vmlinux 0xda50b63e simple_getattr +EXPORT_SYMBOL vmlinux 0xda5035e3 mmc_is_req_done +EXPORT_SYMBOL vmlinux 0xda63b82b __pci_register_driver +EXPORT_SYMBOL vmlinux 0xda63d89a tcf_exts_validate EXPORT_SYMBOL vmlinux 0xda6fc0b3 __percpu_counter_compare EXPORT_SYMBOL vmlinux 0xda72a7ec ZSTD_nextInputType -EXPORT_SYMBOL vmlinux 0xda72c28d __xfrm_policy_check -EXPORT_SYMBOL vmlinux 0xda73c86f __dev_kfree_skb_irq -EXPORT_SYMBOL vmlinux 0xda776a7b phy_ethtool_get_sset_count +EXPORT_SYMBOL vmlinux 0xda887124 scsi_eh_prep_cmnd EXPORT_SYMBOL vmlinux 0xda89ea3b ip_idents_reserve +EXPORT_SYMBOL vmlinux 0xda928f80 pci_alloc_irq_vectors_affinity +EXPORT_SYMBOL vmlinux 0xdaa637c9 flow_rule_match_enc_keyid EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region +EXPORT_SYMBOL vmlinux 0xdacbd71e dev_lstats_read EXPORT_SYMBOL vmlinux 0xdad97f94 __raw_writesw -EXPORT_SYMBOL vmlinux 0xdae361c0 sg_miter_skip -EXPORT_SYMBOL vmlinux 0xdaf57324 genphy_read_lpa +EXPORT_SYMBOL vmlinux 0xdadb9435 blk_mq_complete_request +EXPORT_SYMBOL vmlinux 0xdae6c33b skb_eth_push +EXPORT_SYMBOL vmlinux 0xdae99581 reuseport_detach_sock +EXPORT_SYMBOL vmlinux 0xdaea9377 iterate_dir EXPORT_SYMBOL vmlinux 0xdaf65445 vsnprintf -EXPORT_SYMBOL vmlinux 0xdb0da2e2 __dev_get_by_index -EXPORT_SYMBOL vmlinux 0xdb1c365b md_write_inc -EXPORT_SYMBOL vmlinux 0xdb56afc1 clocksource_change_rating +EXPORT_SYMBOL vmlinux 0xdaf7a641 dev_activate +EXPORT_SYMBOL vmlinux 0xdafb4441 csum_and_copy_from_iter +EXPORT_SYMBOL vmlinux 0xdb08dc46 arm_coherent_dma_ops +EXPORT_SYMBOL vmlinux 0xdb15b237 write_inode_now +EXPORT_SYMBOL vmlinux 0xdb1cb144 snd_dma_alloc_pages +EXPORT_SYMBOL vmlinux 0xdb420043 fifo_create_dflt +EXPORT_SYMBOL vmlinux 0xdb47bd07 sk_stream_wait_connect +EXPORT_SYMBOL vmlinux 0xdb6186ae kmem_cache_shrink +EXPORT_SYMBOL vmlinux 0xdb619305 dquot_acquire EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy +EXPORT_SYMBOL vmlinux 0xdb699025 mount_nodev EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free EXPORT_SYMBOL vmlinux 0xdb81e2fc __wait_on_bit -EXPORT_SYMBOL vmlinux 0xdb88e97b scsi_device_get -EXPORT_SYMBOL vmlinux 0xdb9476a2 unix_destruct_scm +EXPORT_SYMBOL vmlinux 0xdb858095 generic_key_instantiate +EXPORT_SYMBOL vmlinux 0xdb91d2c4 __wait_on_buffer +EXPORT_SYMBOL vmlinux 0xdb9858ce of_platform_device_create +EXPORT_SYMBOL vmlinux 0xdba03e6d tcp_conn_request +EXPORT_SYMBOL vmlinux 0xdbb17a09 ndo_dflt_fdb_del +EXPORT_SYMBOL vmlinux 0xdbcb3a3b mdiobus_free EXPORT_SYMBOL vmlinux 0xdbdf6c92 ioport_resource -EXPORT_SYMBOL vmlinux 0xdbf62344 file_check_and_advance_wb_err -EXPORT_SYMBOL vmlinux 0xdbfd871d pci_bus_write_config_byte -EXPORT_SYMBOL vmlinux 0xdbfef6b2 fb_firmware_edid -EXPORT_SYMBOL vmlinux 0xdc0f0ce6 fwnode_phy_find_device -EXPORT_SYMBOL vmlinux 0xdc14c4b6 rpmh_write +EXPORT_SYMBOL vmlinux 0xdbe05344 genl_unregister_family +EXPORT_SYMBOL vmlinux 0xdc0b081f pci_write_config_dword EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems +EXPORT_SYMBOL vmlinux 0xdc23d3c2 blk_integrity_unregister EXPORT_SYMBOL vmlinux 0xdc258d02 cpumask_next_and -EXPORT_SYMBOL vmlinux 0xdc3abb01 touchscreen_parse_properties -EXPORT_SYMBOL vmlinux 0xdc3f22a6 uart_match_port +EXPORT_SYMBOL vmlinux 0xdc2d1856 dev_set_threaded +EXPORT_SYMBOL vmlinux 0xdc3059f7 max8925_bulk_read +EXPORT_SYMBOL vmlinux 0xdc3740bd bioset_init_from_src +EXPORT_SYMBOL vmlinux 0xdc3c1ce4 neigh_carrier_down EXPORT_SYMBOL vmlinux 0xdc3fcbc9 __sw_hweight8 -EXPORT_SYMBOL vmlinux 0xdc412fa9 param_set_short EXPORT_SYMBOL vmlinux 0xdc49c198 reciprocal_value_adv EXPORT_SYMBOL vmlinux 0xdc512134 backlight_register_notifier EXPORT_SYMBOL vmlinux 0xdc5c7961 gen_pool_best_fit EXPORT_SYMBOL vmlinux 0xdc81901a wait_for_completion_io -EXPORT_SYMBOL vmlinux 0xdca3ebb4 pagecache_get_page -EXPORT_SYMBOL vmlinux 0xdce59cb2 pci_stop_and_remove_bus_device +EXPORT_SYMBOL vmlinux 0xdc868741 ram_aops +EXPORT_SYMBOL vmlinux 0xdc8f47aa generic_file_write_iter +EXPORT_SYMBOL vmlinux 0xdc99a83e unix_destruct_scm +EXPORT_SYMBOL vmlinux 0xdc9b11f5 tcp_getsockopt +EXPORT_SYMBOL vmlinux 0xdcb3c2dc netpoll_setup +EXPORT_SYMBOL vmlinux 0xdcb4ec48 xsk_uses_need_wakeup +EXPORT_SYMBOL vmlinux 0xdcdaed1b clk_add_alias +EXPORT_SYMBOL vmlinux 0xdceaf967 input_open_device EXPORT_SYMBOL vmlinux 0xdcf6d045 radix_tree_gang_lookup_tag_slot -EXPORT_SYMBOL vmlinux 0xdcfd39c4 mr_vif_seq_idx -EXPORT_SYMBOL vmlinux 0xdd04a6f6 vfs_getattr -EXPORT_SYMBOL vmlinux 0xdd04fb1a mipi_dsi_dcs_soft_reset EXPORT_SYMBOL vmlinux 0xdd0a2ba2 strlcat EXPORT_SYMBOL vmlinux 0xdd226fa9 __raw_readsw EXPORT_SYMBOL vmlinux 0xdd27fa87 memchr EXPORT_SYMBOL vmlinux 0xdd2c169b mb_cache_create -EXPORT_SYMBOL vmlinux 0xdd2cc885 tcf_exts_change -EXPORT_SYMBOL vmlinux 0xdd317442 devfreq_remove_governor -EXPORT_SYMBOL vmlinux 0xdd399e16 dcb_ieee_getapp_prio_dscp_mask_map -EXPORT_SYMBOL vmlinux 0xdd53e2f9 is_nd_btt -EXPORT_SYMBOL vmlinux 0xdd6392e3 param_ops_ushort +EXPORT_SYMBOL vmlinux 0xdd40d23f mipi_dsi_dcs_get_power_mode +EXPORT_SYMBOL vmlinux 0xdd4b1dab kill_litter_super +EXPORT_SYMBOL vmlinux 0xdd6e7e4f vme_lm_request EXPORT_SYMBOL vmlinux 0xdd7e3192 qcom_scm_pas_auth_and_reset EXPORT_SYMBOL vmlinux 0xdd81421f trace_print_symbols_seq_u64 EXPORT_SYMBOL vmlinux 0xdd849d51 scsi_get_sense_info_fld -EXPORT_SYMBOL vmlinux 0xdda035c9 t10_pi_type3_crc -EXPORT_SYMBOL vmlinux 0xddbc632b flow_block_cb_decref -EXPORT_SYMBOL vmlinux 0xddc094b1 user_revoke -EXPORT_SYMBOL vmlinux 0xddcc4418 tcf_action_set_ctrlact -EXPORT_SYMBOL vmlinux 0xdde05ac3 clk_bulk_get_all -EXPORT_SYMBOL vmlinux 0xddf30370 generic_copy_file_range -EXPORT_SYMBOL vmlinux 0xddf38d67 remove_arg_zero -EXPORT_SYMBOL vmlinux 0xde027980 blk_queue_max_discard_sectors -EXPORT_SYMBOL vmlinux 0xde12ad23 dquot_writeback_dquots -EXPORT_SYMBOL vmlinux 0xde19b1a2 of_graph_get_remote_port -EXPORT_SYMBOL vmlinux 0xde227443 __bio_clone_fast -EXPORT_SYMBOL vmlinux 0xde28a6ee blk_mq_end_request -EXPORT_SYMBOL vmlinux 0xde3c0527 qdisc_watchdog_init_clockid +EXPORT_SYMBOL vmlinux 0xdd9db228 writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0xddd92a48 rawnand_sw_hamming_calculate +EXPORT_SYMBOL vmlinux 0xdddbc09f tcf_action_update_stats +EXPORT_SYMBOL vmlinux 0xddeb962e crypto_sha512_update +EXPORT_SYMBOL vmlinux 0xddecf853 gnet_stats_copy_queue +EXPORT_SYMBOL vmlinux 0xde14d4a2 i2c_smbus_read_block_data +EXPORT_SYMBOL vmlinux 0xde265320 scsi_host_lookup +EXPORT_SYMBOL vmlinux 0xde2a9f7a neigh_xmit +EXPORT_SYMBOL vmlinux 0xde2b0c10 prepare_to_swait_exclusive EXPORT_SYMBOL vmlinux 0xde4bf88b __mutex_init EXPORT_SYMBOL vmlinux 0xde4d4ace dim_calc_stats -EXPORT_SYMBOL vmlinux 0xde5244bd __blkdev_issue_discard EXPORT_SYMBOL vmlinux 0xde55e795 _raw_spin_lock_irqsave EXPORT_SYMBOL vmlinux 0xde59092a lockref_get_or_lock -EXPORT_SYMBOL vmlinux 0xde5f111c snd_compr_malloc_pages -EXPORT_SYMBOL vmlinux 0xde7bcab0 softnet_data -EXPORT_SYMBOL vmlinux 0xde8b8a2f csum_and_copy_from_iter -EXPORT_SYMBOL vmlinux 0xde8c2385 dst_alloc -EXPORT_SYMBOL vmlinux 0xde920986 pci_request_selected_regions -EXPORT_SYMBOL vmlinux 0xde93f6d3 of_find_matching_node_and_match -EXPORT_SYMBOL vmlinux 0xdec1113a param_ops_long -EXPORT_SYMBOL vmlinux 0xdec62468 kernel_accept -EXPORT_SYMBOL vmlinux 0xdec84040 __dec_node_page_state +EXPORT_SYMBOL vmlinux 0xde5b54b7 pci_unregister_driver +EXPORT_SYMBOL vmlinux 0xde5b923e sock_no_listen +EXPORT_SYMBOL vmlinux 0xde5e7a8c misc_register +EXPORT_SYMBOL vmlinux 0xde5f71c7 kmem_cache_alloc_trace +EXPORT_SYMBOL vmlinux 0xde6c6bed i2c_smbus_read_byte +EXPORT_SYMBOL vmlinux 0xde735a1d do_splice_direct +EXPORT_SYMBOL vmlinux 0xdea80634 netlink_ns_capable +EXPORT_SYMBOL vmlinux 0xdeaa763b __check_sticky +EXPORT_SYMBOL vmlinux 0xdeb26145 sk_net_capable +EXPORT_SYMBOL vmlinux 0xdeb2c64a xfrm_register_type +EXPORT_SYMBOL vmlinux 0xdec2905e __tty_alloc_driver +EXPORT_SYMBOL vmlinux 0xdeca9336 sched_autogroup_detach EXPORT_SYMBOL vmlinux 0xded39a6b gen_kill_estimator -EXPORT_SYMBOL vmlinux 0xded79f86 tty_unregister_device EXPORT_SYMBOL vmlinux 0xdef7c893 fb_match_mode +EXPORT_SYMBOL vmlinux 0xdefb2d16 sg_alloc_append_table_from_pages +EXPORT_SYMBOL vmlinux 0xdefb6f32 sk_stream_wait_close +EXPORT_SYMBOL vmlinux 0xdf094724 vme_irq_free EXPORT_SYMBOL vmlinux 0xdf1897d2 mutex_lock_killable -EXPORT_SYMBOL vmlinux 0xdf1ad4a0 fwnode_mdiobus_register_phy EXPORT_SYMBOL vmlinux 0xdf2c2742 rb_last +EXPORT_SYMBOL vmlinux 0xdf3005c7 vme_slot_num EXPORT_SYMBOL vmlinux 0xdf3a693d crc_t10dif_update -EXPORT_SYMBOL vmlinux 0xdf412f8b bfifo_qdisc_ops -EXPORT_SYMBOL vmlinux 0xdf453167 alloc_etherdev_mqs -EXPORT_SYMBOL vmlinux 0xdf4e9bbd nf_unregister_net_hook -EXPORT_SYMBOL vmlinux 0xdf507c82 tcp_timewait_state_process +EXPORT_SYMBOL vmlinux 0xdf438500 kmem_cache_alloc EXPORT_SYMBOL vmlinux 0xdf52def1 ZSTD_DStreamInSize EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier -EXPORT_SYMBOL vmlinux 0xdf5d8eb8 end_page_private_2 -EXPORT_SYMBOL vmlinux 0xdf69991d netdev_state_change -EXPORT_SYMBOL vmlinux 0xdf6f916c shrink_dcache_sb -EXPORT_SYMBOL vmlinux 0xdf706e0d icmp_ndo_send -EXPORT_SYMBOL vmlinux 0xdf8dd18a generic_fillattr +EXPORT_SYMBOL vmlinux 0xdf5ecffc xfrm4_rcv_encap +EXPORT_SYMBOL vmlinux 0xdf6301ce nf_setsockopt +EXPORT_SYMBOL vmlinux 0xdf631eac get_tree_single +EXPORT_SYMBOL vmlinux 0xdf8d652d dev_change_flags EXPORT_SYMBOL vmlinux 0xdf924a59 __tracepoint_kmem_cache_free +EXPORT_SYMBOL vmlinux 0xdf9277ee rawnand_sw_hamming_init EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid EXPORT_SYMBOL vmlinux 0xdf93b9d8 timespec64_to_jiffies -EXPORT_SYMBOL vmlinux 0xdf976e6b ethtool_virtdev_set_link_ksettings -EXPORT_SYMBOL vmlinux 0xdfa737a3 kthread_create_on_node -EXPORT_SYMBOL vmlinux 0xdfb0a209 disk_end_io_acct -EXPORT_SYMBOL vmlinux 0xdfbd136d do_SAK -EXPORT_SYMBOL vmlinux 0xdfc5a70c netif_rx_any_context +EXPORT_SYMBOL vmlinux 0xdfa10d93 devm_kvasprintf +EXPORT_SYMBOL vmlinux 0xdfc0e977 jbd2_journal_invalidatepage EXPORT_SYMBOL vmlinux 0xdfd91ce9 omap_type +EXPORT_SYMBOL vmlinux 0xdfdb0e7c input_inject_event EXPORT_SYMBOL vmlinux 0xdfdfa9e7 utf8nfdi -EXPORT_SYMBOL vmlinux 0xdfea4268 max8925_bulk_read +EXPORT_SYMBOL vmlinux 0xdfe1b528 mipi_dsi_detach +EXPORT_SYMBOL vmlinux 0xdfe805b2 mark_buffer_write_io_error +EXPORT_SYMBOL vmlinux 0xdfeb81db fasync_helper EXPORT_SYMBOL vmlinux 0xdff905e5 vme_slave_free EXPORT_SYMBOL vmlinux 0xdffc80fc vesa_modes -EXPORT_SYMBOL vmlinux 0xe02dd530 set_user_nice +EXPORT_SYMBOL vmlinux 0xe0096657 tcp_sock_set_keepintvl +EXPORT_SYMBOL vmlinux 0xe023ad88 phy_device_free +EXPORT_SYMBOL vmlinux 0xe02f669a ps2_begin_command +EXPORT_SYMBOL vmlinux 0xe03f9057 netdev_lower_get_next_private EXPORT_SYMBOL vmlinux 0xe0419ac4 kstrtos16 -EXPORT_SYMBOL vmlinux 0xe04ab8e1 from_kprojid -EXPORT_SYMBOL vmlinux 0xe04e8adc serio_open -EXPORT_SYMBOL vmlinux 0xe051cc3c nf_log_unset -EXPORT_SYMBOL vmlinux 0xe0546043 tty_port_close -EXPORT_SYMBOL vmlinux 0xe05f9a8f generic_iommu_put_resv_regions -EXPORT_SYMBOL vmlinux 0xe07a6021 phy_loopback +EXPORT_SYMBOL vmlinux 0xe051a79e tty_register_ldisc +EXPORT_SYMBOL vmlinux 0xe08066e4 register_sound_special_device EXPORT_SYMBOL vmlinux 0xe080e8f0 set_current_groups EXPORT_SYMBOL vmlinux 0xe091c977 list_sort -EXPORT_SYMBOL vmlinux 0xe09caf03 of_io_request_and_map +EXPORT_SYMBOL vmlinux 0xe0929da3 __alloc_skb +EXPORT_SYMBOL vmlinux 0xe09f411a genphy_resume EXPORT_SYMBOL vmlinux 0xe0a8c870 config_group_init EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free EXPORT_SYMBOL vmlinux 0xe0bef318 icst_hz_to_vco -EXPORT_SYMBOL vmlinux 0xe0d0b2b3 filemap_fdatawrite_wbc -EXPORT_SYMBOL vmlinux 0xe0dc36e4 devm_clk_get_optional -EXPORT_SYMBOL vmlinux 0xe0ee06a4 mipi_dsi_dcs_get_pixel_format -EXPORT_SYMBOL vmlinux 0xe101b1a7 dma_set_coherent_mask -EXPORT_SYMBOL vmlinux 0xe10e6c3d register_md_personality +EXPORT_SYMBOL vmlinux 0xe0c6dbb9 security_binder_transfer_file +EXPORT_SYMBOL vmlinux 0xe0c9cb6f call_fib_notifiers +EXPORT_SYMBOL vmlinux 0xe0fe7146 tcf_exts_dump EXPORT_SYMBOL vmlinux 0xe113bbbc csum_partial -EXPORT_SYMBOL vmlinux 0xe116b9d5 ethtool_get_phc_vclocks -EXPORT_SYMBOL vmlinux 0xe11a88f3 dev_mc_init +EXPORT_SYMBOL vmlinux 0xe114eab1 tty_name +EXPORT_SYMBOL vmlinux 0xe122df55 __dev_remove_pack EXPORT_SYMBOL vmlinux 0xe123f3d9 dma_fence_release +EXPORT_SYMBOL vmlinux 0xe129fa04 blkdev_issue_flush EXPORT_SYMBOL vmlinux 0xe12bda79 vme_dma_free_attribute -EXPORT_SYMBOL vmlinux 0xe1328ad3 input_mt_get_slot_by_key -EXPORT_SYMBOL vmlinux 0xe13aad57 devm_clk_hw_register_clkdev +EXPORT_SYMBOL vmlinux 0xe133db30 pci_write_config_word EXPORT_SYMBOL vmlinux 0xe13cd8a7 dmi_name_in_vendors -EXPORT_SYMBOL vmlinux 0xe14c14b5 mmc_wait_for_cmd +EXPORT_SYMBOL vmlinux 0xe142f3bb vme_new_dma_list +EXPORT_SYMBOL vmlinux 0xe148c194 vfs_dedupe_file_range EXPORT_SYMBOL vmlinux 0xe153f436 __cpu_present_mask -EXPORT_SYMBOL vmlinux 0xe1638b2e rproc_add -EXPORT_SYMBOL vmlinux 0xe16f091f netdev_unbind_sb_channel -EXPORT_SYMBOL vmlinux 0xe1781487 pneigh_lookup -EXPORT_SYMBOL vmlinux 0xe199db7b scsi_rescan_device +EXPORT_SYMBOL vmlinux 0xe16a2e4c dump_emit +EXPORT_SYMBOL vmlinux 0xe179b8da snd_info_create_card_entry +EXPORT_SYMBOL vmlinux 0xe17a6f71 devm_of_iomap +EXPORT_SYMBOL vmlinux 0xe18002d5 genphy_soft_reset +EXPORT_SYMBOL vmlinux 0xe196f6c8 genphy_aneg_done +EXPORT_SYMBOL vmlinux 0xe19d55ef register_mii_timestamper +EXPORT_SYMBOL vmlinux 0xe1a0c310 seq_lseek +EXPORT_SYMBOL vmlinux 0xe1a3c767 snd_timer_continue EXPORT_SYMBOL vmlinux 0xe1a4f16a secure_ipv6_port_ephemeral EXPORT_SYMBOL vmlinux 0xe1a9b2ff dma_fence_match_context -EXPORT_SYMBOL vmlinux 0xe1b9ccb1 netdev_adjacent_change_abort -EXPORT_SYMBOL vmlinux 0xe1c4c93d xfrm4_rcv_encap -EXPORT_SYMBOL vmlinux 0xe1cca77f amba_release_regions +EXPORT_SYMBOL vmlinux 0xe1aaa348 of_phy_is_fixed_link +EXPORT_SYMBOL vmlinux 0xe1cbb60d vfs_setpos +EXPORT_SYMBOL vmlinux 0xe1d8142b mmc_erase_group_aligned EXPORT_SYMBOL vmlinux 0xe1dcf64a audit_log_format -EXPORT_SYMBOL vmlinux 0xe1dd1118 may_umount -EXPORT_SYMBOL vmlinux 0xe1e70bda arm_dma_ops -EXPORT_SYMBOL vmlinux 0xe1f661c6 ipv6_skip_exthdr +EXPORT_SYMBOL vmlinux 0xe209d5b1 devm_extcon_register_notifier +EXPORT_SYMBOL vmlinux 0xe20ef1f1 vm_map_pages EXPORT_SYMBOL vmlinux 0xe212ff65 cpumask_any_but -EXPORT_SYMBOL vmlinux 0xe21d0057 ppp_input -EXPORT_SYMBOL vmlinux 0xe21db211 netpoll_print_options -EXPORT_SYMBOL vmlinux 0xe220ae0c __zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0xe216fe31 netif_set_xps_queue +EXPORT_SYMBOL vmlinux 0xe21cea64 fault_in_readable +EXPORT_SYMBOL vmlinux 0xe21ec75e generic_cont_expand_simple EXPORT_SYMBOL vmlinux 0xe2274a1c __percpu_counter_sum -EXPORT_SYMBOL vmlinux 0xe2405ba3 generic_perform_write -EXPORT_SYMBOL vmlinux 0xe245c1fe find_inode_rcu -EXPORT_SYMBOL vmlinux 0xe245c609 unregister_md_personality -EXPORT_SYMBOL vmlinux 0xe24f117e sk_stream_wait_connect -EXPORT_SYMBOL vmlinux 0xe25c6fa6 locks_delete_block +EXPORT_SYMBOL vmlinux 0xe24c339c dma_pool_create +EXPORT_SYMBOL vmlinux 0xe251e234 register_qdisc +EXPORT_SYMBOL vmlinux 0xe25a4465 dmam_alloc_attrs EXPORT_SYMBOL vmlinux 0xe266f098 xa_get_mark EXPORT_SYMBOL vmlinux 0xe273d75d alloc_cpu_rmap -EXPORT_SYMBOL vmlinux 0xe29358e5 dev_mc_add -EXPORT_SYMBOL vmlinux 0xe2ae346e ip_queue_xmit -EXPORT_SYMBOL vmlinux 0xe2b298ad tcf_register_action +EXPORT_SYMBOL vmlinux 0xe2a6872e security_socket_getpeersec_dgram +EXPORT_SYMBOL vmlinux 0xe2b24155 scsi_mode_sense EXPORT_SYMBOL vmlinux 0xe2d467c4 gic_pmr_sync EXPORT_SYMBOL vmlinux 0xe2d47398 crc_ccitt_false EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp -EXPORT_SYMBOL vmlinux 0xe2d73ef8 blk_rq_unmap_user +EXPORT_SYMBOL vmlinux 0xe2dcf5f8 devfreq_register_opp_notifier EXPORT_SYMBOL vmlinux 0xe2e8065e memdup_user -EXPORT_SYMBOL vmlinux 0xe2e8c636 scsi_report_bus_reset +EXPORT_SYMBOL vmlinux 0xe2e931e0 pci_release_selected_regions +EXPORT_SYMBOL vmlinux 0xe2ea2f08 vfs_getattr_nosec EXPORT_SYMBOL vmlinux 0xe2f3d99f rename_lock -EXPORT_SYMBOL vmlinux 0xe2f56146 kmem_cache_create_usercopy -EXPORT_SYMBOL vmlinux 0xe2fc2dad xfrm_state_insert -EXPORT_SYMBOL vmlinux 0xe3024bae bio_add_page -EXPORT_SYMBOL vmlinux 0xe30521f8 xfrm_init_state -EXPORT_SYMBOL vmlinux 0xe311900c inet_csk_delete_keepalive_timer -EXPORT_SYMBOL vmlinux 0xe3136013 netpoll_send_skb -EXPORT_SYMBOL vmlinux 0xe31c6569 __neigh_for_each_release -EXPORT_SYMBOL vmlinux 0xe31cdb93 of_iomap -EXPORT_SYMBOL vmlinux 0xe323dd8d d_alloc_name -EXPORT_SYMBOL vmlinux 0xe3279cb9 dev_mc_unsync -EXPORT_SYMBOL vmlinux 0xe32a773c input_get_keycode EXPORT_SYMBOL vmlinux 0xe32ab4d8 xxh64_digest -EXPORT_SYMBOL vmlinux 0xe336f7a9 seg6_hmac_net_init +EXPORT_SYMBOL vmlinux 0xe32e7de2 inode_permission +EXPORT_SYMBOL vmlinux 0xe32ec834 fb_get_mode +EXPORT_SYMBOL vmlinux 0xe3438029 security_inode_invalidate_secctx EXPORT_SYMBOL vmlinux 0xe3482046 radix_tree_iter_delete -EXPORT_SYMBOL vmlinux 0xe34ed23d dev_addr_del -EXPORT_SYMBOL vmlinux 0xe36fc5e8 mmc_hw_reset -EXPORT_SYMBOL vmlinux 0xe3703690 rproc_set_firmware -EXPORT_SYMBOL vmlinux 0xe37bd32e filemap_range_has_page -EXPORT_SYMBOL vmlinux 0xe38969b2 keyring_clear -EXPORT_SYMBOL vmlinux 0xe38c0872 dm_kcopyd_zero +EXPORT_SYMBOL vmlinux 0xe35295f7 of_mdio_find_bus +EXPORT_SYMBOL vmlinux 0xe361f0c6 xattr_supported_namespace +EXPORT_SYMBOL vmlinux 0xe36aaed8 pci_rebar_get_possible_sizes +EXPORT_SYMBOL vmlinux 0xe383ce2f posix_test_lock EXPORT_SYMBOL vmlinux 0xe39b2ea5 sha256 -EXPORT_SYMBOL vmlinux 0xe3a8da44 of_get_cpu_node +EXPORT_SYMBOL vmlinux 0xe3a740b0 insert_inode_locked4 EXPORT_SYMBOL vmlinux 0xe3a90dfa radix_tree_tag_set -EXPORT_SYMBOL vmlinux 0xe3ada5b0 key_move -EXPORT_SYMBOL vmlinux 0xe3bf9134 bio_clone_fast -EXPORT_SYMBOL vmlinux 0xe3c293de skb_vlan_push -EXPORT_SYMBOL vmlinux 0xe3dea763 dma_sync_wait +EXPORT_SYMBOL vmlinux 0xe3ad8f41 set_page_dirty_lock +EXPORT_SYMBOL vmlinux 0xe3beda78 flow_rule_match_ct EXPORT_SYMBOL vmlinux 0xe3ec2f2b alloc_chrdev_region -EXPORT_SYMBOL vmlinux 0xe3f2e2ca devfreq_add_governor -EXPORT_SYMBOL vmlinux 0xe3f4c370 mmc_gpiod_request_cd -EXPORT_SYMBOL vmlinux 0xe3f6c382 tty_port_tty_set -EXPORT_SYMBOL vmlinux 0xe3fb063f mmc_run_bkops +EXPORT_SYMBOL vmlinux 0xe3edd4e4 devm_devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0xe3f11107 end_buffer_read_sync 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 0xe40c12e5 __scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0xe40a94c9 __sk_receive_skb +EXPORT_SYMBOL vmlinux 0xe42355e7 page_zero_new_buffers +EXPORT_SYMBOL vmlinux 0xe42643f1 nobh_write_end EXPORT_SYMBOL vmlinux 0xe428464e dma_fence_wait_timeout -EXPORT_SYMBOL vmlinux 0xe42d91ff sk_error_report -EXPORT_SYMBOL vmlinux 0xe4303d92 ipv6_dev_mc_inc +EXPORT_SYMBOL vmlinux 0xe43002aa generic_copy_file_range EXPORT_SYMBOL vmlinux 0xe4329092 __ctzdi2 EXPORT_SYMBOL vmlinux 0xe43a3047 __tracepoint_mmap_lock_start_locking -EXPORT_SYMBOL vmlinux 0xe45a08ba mipi_dsi_dcs_set_tear_off -EXPORT_SYMBOL vmlinux 0xe45a7f31 devm_free_irq -EXPORT_SYMBOL vmlinux 0xe474d23a bdi_register -EXPORT_SYMBOL vmlinux 0xe49e1491 vm_map_ram -EXPORT_SYMBOL vmlinux 0xe4a312cb find_vma -EXPORT_SYMBOL vmlinux 0xe4aa0fcb ww_mutex_lock_interruptible -EXPORT_SYMBOL vmlinux 0xe4b58d97 tty_register_device -EXPORT_SYMBOL vmlinux 0xe4b77139 netdev_sk_get_lowest_dev -EXPORT_SYMBOL vmlinux 0xe4bf89f6 tc_setup_flow_action -EXPORT_SYMBOL vmlinux 0xe4c74a88 nd_device_unregister +EXPORT_SYMBOL vmlinux 0xe43e0857 twl6040_reg_read +EXPORT_SYMBOL vmlinux 0xe46730e1 blk_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0xe4785ad3 security_socket_socketpair +EXPORT_SYMBOL vmlinux 0xe4845c8e param_ops_hexint +EXPORT_SYMBOL vmlinux 0xe49da645 dump_skip +EXPORT_SYMBOL vmlinux 0xe4a61052 vga_client_register +EXPORT_SYMBOL vmlinux 0xe4a9d7a8 netdev_pick_tx EXPORT_SYMBOL vmlinux 0xe4c80097 cacheid -EXPORT_SYMBOL vmlinux 0xe4e63041 dev_mc_add_global -EXPORT_SYMBOL vmlinux 0xe4e8edbe dup_iter -EXPORT_SYMBOL vmlinux 0xe4eabdf1 snd_info_register -EXPORT_SYMBOL vmlinux 0xe4fb0bb7 __skb_gro_checksum_complete -EXPORT_SYMBOL vmlinux 0xe514fe82 snd_timer_instance_free +EXPORT_SYMBOL vmlinux 0xe4cb579b of_phy_connect +EXPORT_SYMBOL vmlinux 0xe4d0f286 devm_devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0xe4d178fe vme_register_driver +EXPORT_SYMBOL vmlinux 0xe4dd42ea memory_cgrp_subsys +EXPORT_SYMBOL vmlinux 0xe51035e3 mipi_dsi_dcs_get_display_brightness +EXPORT_SYMBOL vmlinux 0xe5151fa0 serial8250_do_pm EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq -EXPORT_SYMBOL vmlinux 0xe531dd47 snd_pcm_lib_malloc_pages -EXPORT_SYMBOL vmlinux 0xe533d887 seg6_hmac_info_add -EXPORT_SYMBOL vmlinux 0xe5381069 ip_frag_init -EXPORT_SYMBOL vmlinux 0xe55332b6 pci_claim_resource -EXPORT_SYMBOL vmlinux 0xe55a4a7e snd_pcm_hw_constraint_pow2 +EXPORT_SYMBOL vmlinux 0xe5305f67 rawnand_sw_hamming_cleanup +EXPORT_SYMBOL vmlinux 0xe551d97e irq_set_chip +EXPORT_SYMBOL vmlinux 0xe552de1e netdev_adjacent_change_prepare +EXPORT_SYMBOL vmlinux 0xe560db5c cleancache_register_ops +EXPORT_SYMBOL vmlinux 0xe56486fc phy_free_interrupt +EXPORT_SYMBOL vmlinux 0xe56a5a50 param_ops_bint EXPORT_SYMBOL vmlinux 0xe56a9336 snd_pcm_format_width -EXPORT_SYMBOL vmlinux 0xe56cd8dc rc5t583_ext_power_req_config 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 0xe590dea3 sk_busy_loop_end -EXPORT_SYMBOL vmlinux 0xe5917e6c forget_all_cached_acls -EXPORT_SYMBOL vmlinux 0xe5976722 generic_file_llseek -EXPORT_SYMBOL vmlinux 0xe5a154a3 snd_timer_close -EXPORT_SYMBOL vmlinux 0xe5a66aa0 vfs_iter_write -EXPORT_SYMBOL vmlinux 0xe5aa8041 xfrm4_protocol_deregister -EXPORT_SYMBOL vmlinux 0xe5abb476 netdev_lower_get_next_private_rcu +EXPORT_SYMBOL vmlinux 0xe5a85f33 md_check_no_bitmap +EXPORT_SYMBOL vmlinux 0xe5b43b83 of_parse_phandle_with_fixed_args EXPORT_SYMBOL vmlinux 0xe5bc9a53 slhc_free EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen -EXPORT_SYMBOL vmlinux 0xe5d74cfc filemap_map_pages +EXPORT_SYMBOL vmlinux 0xe5cf1193 netdev_class_remove_file_ns +EXPORT_SYMBOL vmlinux 0xe5e4765b devfreq_resume_device +EXPORT_SYMBOL vmlinux 0xe6137bcd xfrm_input EXPORT_SYMBOL vmlinux 0xe613a798 inet_addr_is_any -EXPORT_SYMBOL vmlinux 0xe6155319 ip_ct_attach +EXPORT_SYMBOL vmlinux 0xe6180592 snd_device_new +EXPORT_SYMBOL vmlinux 0xe6199ef5 xfrm_init_replay +EXPORT_SYMBOL vmlinux 0xe61b2049 snd_pcm_mmap_data +EXPORT_SYMBOL vmlinux 0xe624a7af rproc_shutdown EXPORT_SYMBOL vmlinux 0xe62cdb0e memcpy_and_pad -EXPORT_SYMBOL vmlinux 0xe633775d vme_dma_list_free -EXPORT_SYMBOL vmlinux 0xe64c8d38 flow_rule_match_enc_ip -EXPORT_SYMBOL vmlinux 0xe64db3a7 xfrm_state_add -EXPORT_SYMBOL vmlinux 0xe64db404 fs_param_is_u64 -EXPORT_SYMBOL vmlinux 0xe657af3a devm_clk_put -EXPORT_SYMBOL vmlinux 0xe6631d5e blk_queue_flag_clear -EXPORT_SYMBOL vmlinux 0xe68375b9 blk_cleanup_queue -EXPORT_SYMBOL vmlinux 0xe68876b6 scsi_change_queue_depth -EXPORT_SYMBOL vmlinux 0xe68be4b7 pm860x_bulk_write -EXPORT_SYMBOL vmlinux 0xe68ce34f tcp_peek_len +EXPORT_SYMBOL vmlinux 0xe62ef0d4 mdio_device_free +EXPORT_SYMBOL vmlinux 0xe645ff31 request_key_tag +EXPORT_SYMBOL vmlinux 0xe64e1aa0 tcf_idrinfo_destroy +EXPORT_SYMBOL vmlinux 0xe653c5fb fault_in_iov_iter_writeable +EXPORT_SYMBOL vmlinux 0xe6559276 jbd2_log_start_commit +EXPORT_SYMBOL vmlinux 0xe65ec01b netdev_rx_csum_fault +EXPORT_SYMBOL vmlinux 0xe66dc3f0 pcie_ptm_enabled +EXPORT_SYMBOL vmlinux 0xe67e41ef pm860x_set_bits EXPORT_SYMBOL vmlinux 0xe693a6ce vme_get_size -EXPORT_SYMBOL vmlinux 0xe6aed3b6 pci_msix_vec_count +EXPORT_SYMBOL vmlinux 0xe6aa3aff tcf_em_tree_dump +EXPORT_SYMBOL vmlinux 0xe6cfdbfa setup_arg_pages EXPORT_SYMBOL vmlinux 0xe6d2458e do_trace_netlink_extack +EXPORT_SYMBOL vmlinux 0xe6d88963 tcp_mmap EXPORT_SYMBOL vmlinux 0xe6db989b ecc_sw_hamming_correct -EXPORT_SYMBOL vmlinux 0xe6e3a7c5 devm_register_reboot_notifier +EXPORT_SYMBOL vmlinux 0xe6e5c81c dma_alloc_attrs +EXPORT_SYMBOL vmlinux 0xe6e8b78e snd_pcm_hw_constraint_ratdens EXPORT_SYMBOL vmlinux 0xe707d823 __aeabi_uidiv -EXPORT_SYMBOL vmlinux 0xe708b10e add_to_pipe -EXPORT_SYMBOL vmlinux 0xe71f8d29 __genphy_config_aneg -EXPORT_SYMBOL vmlinux 0xe7247464 skb_put -EXPORT_SYMBOL vmlinux 0xe72db39e vme_unregister_bridge +EXPORT_SYMBOL vmlinux 0xe716cc43 nand_ecc_sw_bch_init_ctx +EXPORT_SYMBOL vmlinux 0xe71e919e skb_copy +EXPORT_SYMBOL vmlinux 0xe71fcf89 mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0xe722bddd snd_pcm_lib_ioctl +EXPORT_SYMBOL vmlinux 0xe72a1d74 tty_port_close_end +EXPORT_SYMBOL vmlinux 0xe72ffa9a neigh_table_init EXPORT_SYMBOL vmlinux 0xe7324b9a utf8nfdicf -EXPORT_SYMBOL vmlinux 0xe73e8277 nf_log_unregister -EXPORT_SYMBOL vmlinux 0xe7462af2 security_inode_copy_up -EXPORT_SYMBOL vmlinux 0xe7511b4c ata_link_printk -EXPORT_SYMBOL vmlinux 0xe75bc7ad mipi_dsi_host_unregister -EXPORT_SYMBOL vmlinux 0xe75e075a pci_bus_write_config_dword -EXPORT_SYMBOL vmlinux 0xe75f675b rproc_vq_interrupt -EXPORT_SYMBOL vmlinux 0xe764d9e6 inet6_add_offload -EXPORT_SYMBOL vmlinux 0xe7ada2f4 security_inode_notifysecctx -EXPORT_SYMBOL vmlinux 0xe7be813f pci_pme_capable +EXPORT_SYMBOL vmlinux 0xe73c2fa4 security_inode_copy_up +EXPORT_SYMBOL vmlinux 0xe7469ffe devfreq_monitor_resume +EXPORT_SYMBOL vmlinux 0xe74c3be6 ppp_dev_name +EXPORT_SYMBOL vmlinux 0xe76036cd kmem_cache_destroy +EXPORT_SYMBOL vmlinux 0xe763e18d pin_user_pages_remote +EXPORT_SYMBOL vmlinux 0xe77b5422 unpin_user_page_range_dirty_lock +EXPORT_SYMBOL vmlinux 0xe78164c6 ac97_bus_type +EXPORT_SYMBOL vmlinux 0xe781aeaa nand_write_page_raw +EXPORT_SYMBOL vmlinux 0xe78536bc netdev_emerg +EXPORT_SYMBOL vmlinux 0xe79ab067 sock_create_lite +EXPORT_SYMBOL vmlinux 0xe7a169e2 rtnl_configure_link +EXPORT_SYMBOL vmlinux 0xe7a79d03 devm_request_threaded_irq +EXPORT_SYMBOL vmlinux 0xe7b4d81f blk_mq_tagset_busy_iter +EXPORT_SYMBOL vmlinux 0xe7c49ee1 tty_kref_put +EXPORT_SYMBOL vmlinux 0xe7ced32f blackhole_netdev EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next EXPORT_SYMBOL vmlinux 0xe7e4d52a _raw_spin_lock_bh -EXPORT_SYMBOL vmlinux 0xe7ee081b touch_atime EXPORT_SYMBOL vmlinux 0xe7f2e3a2 register_sysctl_paths -EXPORT_SYMBOL vmlinux 0xe806eeeb ppp_register_channel -EXPORT_SYMBOL vmlinux 0xe8124f5f wait_on_page_bit_killable -EXPORT_SYMBOL vmlinux 0xe820cb01 generic_remap_file_range_prep +EXPORT_SYMBOL vmlinux 0xe817b85e __set_page_dirty_nobuffers +EXPORT_SYMBOL vmlinux 0xe81c1068 __SetPageMovable +EXPORT_SYMBOL vmlinux 0xe82ca88a dev_set_allmulti +EXPORT_SYMBOL vmlinux 0xe83b730a pci_set_master EXPORT_SYMBOL vmlinux 0xe842dc8c dma_fence_get_stub -EXPORT_SYMBOL vmlinux 0xe849b265 __put_page -EXPORT_SYMBOL vmlinux 0xe84b4fa8 kthread_create_worker_on_cpu -EXPORT_SYMBOL vmlinux 0xe85750c4 of_root -EXPORT_SYMBOL vmlinux 0xe859926b pci_write_config_byte -EXPORT_SYMBOL vmlinux 0xe85d9f9b find_inode_by_ino_rcu -EXPORT_SYMBOL vmlinux 0xe88d736d sock_release -EXPORT_SYMBOL vmlinux 0xe893ffc1 pm_vt_switch_required -EXPORT_SYMBOL vmlinux 0xe8a75c88 d_path -EXPORT_SYMBOL vmlinux 0xe8ad1fef jbd2_journal_start_commit -EXPORT_SYMBOL vmlinux 0xe8ae7764 request_key_with_auxdata -EXPORT_SYMBOL vmlinux 0xe8b89002 ip_route_me_harder -EXPORT_SYMBOL vmlinux 0xe8bcfcff i2c_smbus_write_block_data -EXPORT_SYMBOL vmlinux 0xe8c1b2d2 dm_register_target +EXPORT_SYMBOL vmlinux 0xe8471b4d mmc_set_blocklen +EXPORT_SYMBOL vmlinux 0xe84744e3 rproc_elf_load_rsc_table +EXPORT_SYMBOL vmlinux 0xe84e4466 configfs_depend_item_unlocked +EXPORT_SYMBOL vmlinux 0xe8727737 tty_flip_buffer_push +EXPORT_SYMBOL vmlinux 0xe89a52e1 snd_card_register +EXPORT_SYMBOL vmlinux 0xe8aee15a find_get_pages_contig +EXPORT_SYMBOL vmlinux 0xe8b39dc7 vme_irq_generate +EXPORT_SYMBOL vmlinux 0xe8bc0b17 unregister_console +EXPORT_SYMBOL vmlinux 0xe8c86a74 nand_ecc_sw_hamming_correct +EXPORT_SYMBOL vmlinux 0xe8c86bec md_bitmap_end_sync +EXPORT_SYMBOL vmlinux 0xe8c98290 inet_sk_set_state EXPORT_SYMBOL vmlinux 0xe8cd0a2c crc32_le_shift -EXPORT_SYMBOL vmlinux 0xe8dfb4b1 bio_alloc_bioset -EXPORT_SYMBOL vmlinux 0xe8e1f9b5 xfrm_find_acq -EXPORT_SYMBOL vmlinux 0xe8f0b227 ip6_frag_next -EXPORT_SYMBOL vmlinux 0xe8f6e9ab udp_seq_stop -EXPORT_SYMBOL vmlinux 0xe90ee6eb param_array_ops -EXPORT_SYMBOL vmlinux 0xe914aa42 sock_no_shutdown +EXPORT_SYMBOL vmlinux 0xe8d71b66 mipi_dsi_dcs_get_pixel_format +EXPORT_SYMBOL vmlinux 0xe8dfba96 dev_mc_del_global +EXPORT_SYMBOL vmlinux 0xe8ecd459 kernel_connect +EXPORT_SYMBOL vmlinux 0xe8f78754 copy_page_from_iter_atomic +EXPORT_SYMBOL vmlinux 0xe8ff9004 always_delete_dentry +EXPORT_SYMBOL vmlinux 0xe904f3e7 vga_get EXPORT_SYMBOL vmlinux 0xe914e41e strcpy -EXPORT_SYMBOL vmlinux 0xe92ca8db con_is_visible +EXPORT_SYMBOL vmlinux 0xe929551c flush_dcache_page EXPORT_SYMBOL vmlinux 0xe9325f03 downgrade_write -EXPORT_SYMBOL vmlinux 0xe94acfdd ps2_drain +EXPORT_SYMBOL vmlinux 0xe9503960 devm_devfreq_remove_device EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino -EXPORT_SYMBOL vmlinux 0xe957e8e6 vfs_dedupe_file_range -EXPORT_SYMBOL vmlinux 0xe95de0e6 inet_del_offload -EXPORT_SYMBOL vmlinux 0xe9635245 inode_needs_sync -EXPORT_SYMBOL vmlinux 0xe96b5fd8 of_get_parent -EXPORT_SYMBOL vmlinux 0xe9745a59 xfrm_lookup_route -EXPORT_SYMBOL vmlinux 0xe97c6637 filemap_fault +EXPORT_SYMBOL vmlinux 0xe9650c13 __seq_open_private +EXPORT_SYMBOL vmlinux 0xe97a1aaa sock_release EXPORT_SYMBOL vmlinux 0xe97ef1c7 __traceiter_kmalloc_node -EXPORT_SYMBOL vmlinux 0xe99a02b5 lookup_positive_unlocked +EXPORT_SYMBOL vmlinux 0xe98bd76f snd_timer_interrupt EXPORT_SYMBOL vmlinux 0xe99b7111 LZ4_decompress_fast_continue -EXPORT_SYMBOL vmlinux 0xe9aa00bc __brelse -EXPORT_SYMBOL vmlinux 0xe9b18204 i2c_del_adapter -EXPORT_SYMBOL vmlinux 0xe9c2c87e skb_dump +EXPORT_SYMBOL vmlinux 0xe9a2fbc5 invalidate_mapping_pages EXPORT_SYMBOL vmlinux 0xe9cbf734 radix_tree_gang_lookup -EXPORT_SYMBOL vmlinux 0xe9e497f3 devm_devfreq_register_notifier -EXPORT_SYMBOL vmlinux 0xe9e5df48 pin_user_pages_remote +EXPORT_SYMBOL vmlinux 0xe9d25bce of_chosen +EXPORT_SYMBOL vmlinux 0xe9d8928b devm_free_irq EXPORT_SYMBOL vmlinux 0xe9e8faeb efi_tpm_final_log_size -EXPORT_SYMBOL vmlinux 0xe9f1e818 tcp_req_err +EXPORT_SYMBOL vmlinux 0xe9f599ed dev_set_mac_address_user EXPORT_SYMBOL vmlinux 0xe9f7149c zlib_deflate_workspacesize -EXPORT_SYMBOL vmlinux 0xea13a99b tcp_v4_connect +EXPORT_SYMBOL vmlinux 0xe9f9a633 __sk_backlog_rcv +EXPORT_SYMBOL vmlinux 0xea17da3e __cleancache_invalidate_page +EXPORT_SYMBOL vmlinux 0xea32cade nand_ecc_sw_bch_calculate EXPORT_SYMBOL vmlinux 0xea3c8e4e scsilun_to_int -EXPORT_SYMBOL vmlinux 0xea57b1aa locks_copy_lock -EXPORT_SYMBOL vmlinux 0xea5fea1c pci_assign_resource -EXPORT_SYMBOL vmlinux 0xea6f86ee dquot_set_dqblk +EXPORT_SYMBOL vmlinux 0xea49de9c phy_init_eee +EXPORT_SYMBOL vmlinux 0xea5f228e wait_on_page_bit_killable EXPORT_SYMBOL vmlinux 0xea6f9a36 zlib_deflate_dfltcc_enabled +EXPORT_SYMBOL vmlinux 0xea6fd15b netdev_notify_peers EXPORT_SYMBOL vmlinux 0xea7987f1 key_update -EXPORT_SYMBOL vmlinux 0xea7e8f1d __module_get -EXPORT_SYMBOL vmlinux 0xea8293a6 pci_enable_device_mem -EXPORT_SYMBOL vmlinux 0xea888ccb mdio_find_bus -EXPORT_SYMBOL vmlinux 0xea89d754 ata_print_version -EXPORT_SYMBOL vmlinux 0xea97ccd3 dma_map_sg_attrs -EXPORT_SYMBOL vmlinux 0xead46129 sync_inodes_sb -EXPORT_SYMBOL vmlinux 0xeadaeb5f __cleancache_get_page -EXPORT_SYMBOL vmlinux 0xeae7afe8 snd_ctl_remove -EXPORT_SYMBOL vmlinux 0xeae9c7b0 eth_platform_get_mac_address -EXPORT_SYMBOL vmlinux 0xeaecaffa __dquot_alloc_space +EXPORT_SYMBOL vmlinux 0xea96a4ee md_update_sb +EXPORT_SYMBOL vmlinux 0xeaab6bf8 simple_transaction_set +EXPORT_SYMBOL vmlinux 0xeaddbf80 pci_scan_single_device +EXPORT_SYMBOL vmlinux 0xeae82276 vfs_mkdir EXPORT_SYMBOL vmlinux 0xeafc141f __posix_acl_chmod EXPORT_SYMBOL vmlinux 0xeb03b389 __raw_readsl -EXPORT_SYMBOL vmlinux 0xeb0698bf mmc_calc_max_discard -EXPORT_SYMBOL vmlinux 0xeb118114 inode_insert5 -EXPORT_SYMBOL vmlinux 0xeb177d9f noop_qdisc -EXPORT_SYMBOL vmlinux 0xeb28f440 stream_open -EXPORT_SYMBOL vmlinux 0xeb2a8635 __lock_sock_fast +EXPORT_SYMBOL vmlinux 0xeb0e3840 generic_writepages +EXPORT_SYMBOL vmlinux 0xeb240596 cros_ec_prepare_tx EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end -EXPORT_SYMBOL vmlinux 0xeb3c1ea0 inet_csk_init_xmit_timers +EXPORT_SYMBOL vmlinux 0xeb412a4a default_llseek +EXPORT_SYMBOL vmlinux 0xeb525d20 vme_master_mmap EXPORT_SYMBOL vmlinux 0xeb53178a crc8 -EXPORT_SYMBOL vmlinux 0xeb55413f unregister_mii_tstamp_controller EXPORT_SYMBOL vmlinux 0xeb55a931 __kfifo_max_r -EXPORT_SYMBOL vmlinux 0xeb61dc31 security_sctp_bind_connect -EXPORT_SYMBOL vmlinux 0xeb648bc2 bdev_dax_pgoff -EXPORT_SYMBOL vmlinux 0xeb6575e9 vfs_tmpfile -EXPORT_SYMBOL vmlinux 0xeb823b11 pmem_should_map_pages -EXPORT_SYMBOL vmlinux 0xeb842941 cpufreq_generic_suspend -EXPORT_SYMBOL vmlinux 0xeb8daa01 ppp_channel_index -EXPORT_SYMBOL vmlinux 0xeb8eb2cc flow_rule_match_enc_control +EXPORT_SYMBOL vmlinux 0xeb5abf7b nand_ecc_is_strong_enough +EXPORT_SYMBOL vmlinux 0xeb692a75 try_lookup_one_len +EXPORT_SYMBOL vmlinux 0xeb6e38e1 snd_register_oss_device +EXPORT_SYMBOL vmlinux 0xeb86bde3 inet_unregister_protosw EXPORT_SYMBOL vmlinux 0xeb9e913d sgl_alloc_order EXPORT_SYMBOL vmlinux 0xeb9eef52 match_uint -EXPORT_SYMBOL vmlinux 0xeba79940 key_payload_reserve -EXPORT_SYMBOL vmlinux 0xebb1c66d of_get_next_cpu_node -EXPORT_SYMBOL vmlinux 0xebb72fa9 vga_client_register -EXPORT_SYMBOL vmlinux 0xebc74d1f iov_iter_alignment -EXPORT_SYMBOL vmlinux 0xebd78081 tcp_recvmsg -EXPORT_SYMBOL vmlinux 0xebde5228 unregister_framebuffer -EXPORT_SYMBOL vmlinux 0xebe6b5f3 mmc_can_gpio_ro -EXPORT_SYMBOL vmlinux 0xebee82b1 iptun_encaps -EXPORT_SYMBOL vmlinux 0xebf4276c tty_port_block_til_ready -EXPORT_SYMBOL vmlinux 0xebf47657 phy_print_status +EXPORT_SYMBOL vmlinux 0xebabeaf9 configfs_register_subsystem +EXPORT_SYMBOL vmlinux 0xebb7aca0 __page_frag_cache_drain EXPORT_SYMBOL vmlinux 0xebfdcbdf system_serial_high -EXPORT_SYMBOL vmlinux 0xec09b6d9 pci_enable_msix_range -EXPORT_SYMBOL vmlinux 0xec1b95cc neigh_seq_stop -EXPORT_SYMBOL vmlinux 0xec1c7150 phy_start_cable_test -EXPORT_SYMBOL vmlinux 0xec22395b ram_aops +EXPORT_SYMBOL vmlinux 0xec09d958 flow_rule_match_meta +EXPORT_SYMBOL vmlinux 0xec18ce77 of_graph_get_remote_port_parent +EXPORT_SYMBOL vmlinux 0xec1acb64 mtd_concat_destroy +EXPORT_SYMBOL vmlinux 0xec1f22a7 of_get_next_available_child +EXPORT_SYMBOL vmlinux 0xec21e593 pci_enable_device_io +EXPORT_SYMBOL vmlinux 0xec22b775 flow_rule_match_ip +EXPORT_SYMBOL vmlinux 0xec2d362c vlan_vid_del +EXPORT_SYMBOL vmlinux 0xec320c66 phy_mii_ioctl EXPORT_SYMBOL vmlinux 0xec33c668 __SCK__tp_func_spi_transfer_start +EXPORT_SYMBOL vmlinux 0xec34e617 gnet_stats_start_copy_compat EXPORT_SYMBOL vmlinux 0xec37a2e8 lockref_get_not_dead -EXPORT_SYMBOL vmlinux 0xec451b8b inet_confirm_addr +EXPORT_SYMBOL vmlinux 0xec3d4529 fc_mount EXPORT_SYMBOL vmlinux 0xec4d9e3a clk_get_sys -EXPORT_SYMBOL vmlinux 0xec7aac81 unregister_nexthop_notifier -EXPORT_SYMBOL vmlinux 0xec7ce653 flow_rule_match_ip -EXPORT_SYMBOL vmlinux 0xec9030e4 scsi_device_quiesce -EXPORT_SYMBOL vmlinux 0xec9943bb pcie_set_readrq -EXPORT_SYMBOL vmlinux 0xeca6a867 mipi_dsi_attach -EXPORT_SYMBOL vmlinux 0xecbf8f9b inode_init_always -EXPORT_SYMBOL vmlinux 0xecd425fc nf_log_set -EXPORT_SYMBOL vmlinux 0xecdf5aab cookie_ecn_ok -EXPORT_SYMBOL vmlinux 0xece75690 inet_bind +EXPORT_SYMBOL vmlinux 0xec5b9596 scsi_change_queue_depth +EXPORT_SYMBOL vmlinux 0xec61a5df flow_rule_match_enc_ipv6_addrs +EXPORT_SYMBOL vmlinux 0xec752dde sk_filter_trim_cap +EXPORT_SYMBOL vmlinux 0xec864b7d ethtool_get_phc_vclocks +EXPORT_SYMBOL vmlinux 0xec9102cf tcf_qevent_destroy +EXPORT_SYMBOL vmlinux 0xecbce2cc generic_listxattr +EXPORT_SYMBOL vmlinux 0xecc5311a end_page_writeback +EXPORT_SYMBOL vmlinux 0xecc6bb71 tc_setup_cb_reoffload +EXPORT_SYMBOL vmlinux 0xeccda20a __xfrm_state_destroy +EXPORT_SYMBOL vmlinux 0xecda1215 devfreq_add_device +EXPORT_SYMBOL vmlinux 0xecda73ea generic_pipe_buf_try_steal +EXPORT_SYMBOL vmlinux 0xecdfd1f9 kern_unmount_array EXPORT_SYMBOL vmlinux 0xece784c2 rb_first EXPORT_SYMBOL vmlinux 0xecf8a3b4 __raw_writesl -EXPORT_SYMBOL vmlinux 0xecfd5c2c pci_scan_root_bus -EXPORT_SYMBOL vmlinux 0xed064ff3 __mod_zone_page_state -EXPORT_SYMBOL vmlinux 0xed14f497 mount_single -EXPORT_SYMBOL vmlinux 0xed175e8d padata_do_serial -EXPORT_SYMBOL vmlinux 0xed1bc355 tcp_set_rcvlowat -EXPORT_SYMBOL vmlinux 0xed1def21 pci_bus_read_dev_vendor_id -EXPORT_SYMBOL vmlinux 0xed2aea33 dev_queue_xmit -EXPORT_SYMBOL vmlinux 0xed2bdc85 jbd2_journal_get_undo_access +EXPORT_SYMBOL vmlinux 0xecfcd5cf seg6_hmac_info_del +EXPORT_SYMBOL vmlinux 0xed06ff80 tcf_idr_create +EXPORT_SYMBOL vmlinux 0xed3741db skb_checksum_help EXPORT_SYMBOL vmlinux 0xed5376c5 __printk_wait_on_cpu_lock +EXPORT_SYMBOL vmlinux 0xed53ac73 skb_pull +EXPORT_SYMBOL vmlinux 0xed5feb0a xsk_tx_completed EXPORT_SYMBOL vmlinux 0xed656e30 udp_encap_disable -EXPORT_SYMBOL vmlinux 0xed7a0b6c mipi_dsi_dcs_get_display_brightness -EXPORT_SYMBOL vmlinux 0xeda593b5 inet_frag_kill -EXPORT_SYMBOL vmlinux 0xedb16839 get_watch_queue -EXPORT_SYMBOL vmlinux 0xedb3813c phy_get_eee_err +EXPORT_SYMBOL vmlinux 0xed664c67 rtc_add_groups +EXPORT_SYMBOL vmlinux 0xed7504da phy_detach +EXPORT_SYMBOL vmlinux 0xed7a2eed t10_pi_type1_crc +EXPORT_SYMBOL vmlinux 0xed7d7e0f loop_register_transfer +EXPORT_SYMBOL vmlinux 0xed805952 xfrm_policy_bysel_ctx +EXPORT_SYMBOL vmlinux 0xed88504e thaw_bdev +EXPORT_SYMBOL vmlinux 0xed9b098f migrate_page EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp -EXPORT_SYMBOL vmlinux 0xedbe9505 seg6_hmac_info_lookup EXPORT_SYMBOL vmlinux 0xedc03953 iounmap -EXPORT_SYMBOL vmlinux 0xedd1b6a0 udp_set_csum +EXPORT_SYMBOL vmlinux 0xedc941c9 netpoll_poll_enable EXPORT_SYMBOL vmlinux 0xedd9106d __ashrdi3 +EXPORT_SYMBOL vmlinux 0xeddb80c5 of_find_node_by_type +EXPORT_SYMBOL vmlinux 0xedf64869 inet6_register_protosw +EXPORT_SYMBOL vmlinux 0xee01d5e1 d_set_fallthru EXPORT_SYMBOL vmlinux 0xee02a44f gen_replace_estimator -EXPORT_SYMBOL vmlinux 0xee05e7c0 pci_add_new_bus +EXPORT_SYMBOL vmlinux 0xee08de88 dquot_drop +EXPORT_SYMBOL vmlinux 0xee162bc6 skb_append EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable -EXPORT_SYMBOL vmlinux 0xee302951 wireless_spy_update -EXPORT_SYMBOL vmlinux 0xee3806f1 mdio_driver_unregister -EXPORT_SYMBOL vmlinux 0xee3cf862 iov_iter_kvec EXPORT_SYMBOL vmlinux 0xee43fd9b ___ratelimit EXPORT_SYMBOL vmlinux 0xee58e970 fb_add_videomode -EXPORT_SYMBOL vmlinux 0xee635c58 ip6_frag_init +EXPORT_SYMBOL vmlinux 0xee68099f i2c_clients_command EXPORT_SYMBOL vmlinux 0xee6e57d8 __tracepoint_kfree -EXPORT_SYMBOL vmlinux 0xee7421ae kunmap_high -EXPORT_SYMBOL vmlinux 0xee75767f tcf_action_exec +EXPORT_SYMBOL vmlinux 0xee770a98 cdc_parse_cdc_header EXPORT_SYMBOL vmlinux 0xee8c02e9 vprintk_emit EXPORT_SYMBOL vmlinux 0xee8d74d6 jiffies64_to_nsecs EXPORT_SYMBOL vmlinux 0xee91879b rb_first_postorder EXPORT_SYMBOL vmlinux 0xee922b77 gen_pool_dma_zalloc_align -EXPORT_SYMBOL vmlinux 0xee95f2dd md_reload_sb EXPORT_SYMBOL vmlinux 0xeea9dbaf bitmap_bitremap -EXPORT_SYMBOL vmlinux 0xeeb3a96c dma_unmap_sg_attrs -EXPORT_SYMBOL vmlinux 0xeeb4efcd kill_anon_super +EXPORT_SYMBOL vmlinux 0xeeabcf27 udp_ioctl +EXPORT_SYMBOL vmlinux 0xeec4a513 snd_pcm_new_stream +EXPORT_SYMBOL vmlinux 0xeed0d4f5 __module_put_and_exit +EXPORT_SYMBOL vmlinux 0xeedcef88 fqdir_init EXPORT_SYMBOL vmlinux 0xeee75d91 ucc_fast_init -EXPORT_SYMBOL vmlinux 0xeef6d764 dev_set_threaded +EXPORT_SYMBOL vmlinux 0xeeef96bc seq_path +EXPORT_SYMBOL vmlinux 0xeef364a3 mmc_register_driver EXPORT_SYMBOL vmlinux 0xeefaa4a2 unregister_nls -EXPORT_SYMBOL vmlinux 0xef25cbdd debugfs_create_automount -EXPORT_SYMBOL vmlinux 0xef4bdbd9 genphy_config_eee_advert -EXPORT_SYMBOL vmlinux 0xef4c8e90 block_read_full_page +EXPORT_SYMBOL vmlinux 0xeefbe63c pci_bus_write_config_word +EXPORT_SYMBOL vmlinux 0xef1ef67d param_set_ulong +EXPORT_SYMBOL vmlinux 0xef3bd6d4 get_bitmap_from_slot +EXPORT_SYMBOL vmlinux 0xef4315cb tty_port_free_xmit_buf +EXPORT_SYMBOL vmlinux 0xef44a8b2 vme_register_error_handler +EXPORT_SYMBOL vmlinux 0xef4541ed lookup_one_len EXPORT_SYMBOL vmlinux 0xef4cad92 trace_print_flags_seq +EXPORT_SYMBOL vmlinux 0xef5fb177 kiocb_set_cancel_fn EXPORT_SYMBOL vmlinux 0xef64769e __traceiter_dma_fence_enable_signal -EXPORT_SYMBOL vmlinux 0xef797ba4 cdev_set_parent -EXPORT_SYMBOL vmlinux 0xef7c2d7c rtc_add_groups -EXPORT_SYMBOL vmlinux 0xef7e69c8 end_page_writeback +EXPORT_SYMBOL vmlinux 0xef784c1f param_array_ops +EXPORT_SYMBOL vmlinux 0xef7a84f0 dev_pre_changeaddr_notify +EXPORT_SYMBOL vmlinux 0xef800ac5 may_umount_tree EXPORT_SYMBOL vmlinux 0xef8ac53d qcom_scm_restore_sec_cfg +EXPORT_SYMBOL vmlinux 0xef97cde9 sock_i_uid +EXPORT_SYMBOL vmlinux 0xefa2975b snd_jack_report +EXPORT_SYMBOL vmlinux 0xefa85dd7 netdev_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0xefac21fa blk_set_runtime_active +EXPORT_SYMBOL vmlinux 0xefb3d222 seq_hex_dump +EXPORT_SYMBOL vmlinux 0xefd5e2af of_get_min_tck EXPORT_SYMBOL vmlinux 0xefec312f omap_get_dma_active_status -EXPORT_SYMBOL vmlinux 0xefecf99a nand_ecc_sw_bch_get_engine EXPORT_SYMBOL vmlinux 0xefeefc09 __SCK__tp_func_dma_fence_emit +EXPORT_SYMBOL vmlinux 0xeff76572 xp_dma_unmap +EXPORT_SYMBOL vmlinux 0xf0006b8d jbd2_trans_will_send_data_barrier EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list EXPORT_SYMBOL vmlinux 0xf008a885 seg6_hmac_init EXPORT_SYMBOL vmlinux 0xf01528a4 dim_turn -EXPORT_SYMBOL vmlinux 0xf023b4b9 vfs_readlink -EXPORT_SYMBOL vmlinux 0xf0247fae md_set_array_sectors +EXPORT_SYMBOL vmlinux 0xf020c57e tcf_em_register EXPORT_SYMBOL vmlinux 0xf02a6977 queue_rcu_work -EXPORT_SYMBOL vmlinux 0xf04d279b of_find_node_by_name -EXPORT_SYMBOL vmlinux 0xf04d7aa0 netdev_lower_state_changed -EXPORT_SYMBOL vmlinux 0xf06a817d dm_get_device +EXPORT_SYMBOL vmlinux 0xf02b5ac2 fiemap_prep +EXPORT_SYMBOL vmlinux 0xf05396b3 snd_timer_global_new +EXPORT_SYMBOL vmlinux 0xf05c4614 mmc_add_host +EXPORT_SYMBOL vmlinux 0xf0614f5b pci_fixup_device EXPORT_SYMBOL vmlinux 0xf06cee2c radix_tree_replace_slot -EXPORT_SYMBOL vmlinux 0xf095e1d6 __insert_inode_hash -EXPORT_SYMBOL vmlinux 0xf09a8fdd __remove_inode_hash +EXPORT_SYMBOL vmlinux 0xf072f3bb cdrom_mode_select +EXPORT_SYMBOL vmlinux 0xf07e4da0 tty_unregister_device +EXPORT_SYMBOL vmlinux 0xf0822ab4 simple_transaction_read +EXPORT_SYMBOL vmlinux 0xf0846532 proc_mkdir EXPORT_SYMBOL vmlinux 0xf09b5d9a get_zeroed_page -EXPORT_SYMBOL vmlinux 0xf0a2e72f pcie_relaxed_ordering_enabled EXPORT_SYMBOL vmlinux 0xf0a343ed release_dentry_name_snapshot -EXPORT_SYMBOL vmlinux 0xf0bef5c0 inet6_del_offload -EXPORT_SYMBOL vmlinux 0xf0c9dc4d set_binfmt -EXPORT_SYMBOL vmlinux 0xf0cf008d register_key_type +EXPORT_SYMBOL vmlinux 0xf0baa9a9 snd_unregister_device +EXPORT_SYMBOL vmlinux 0xf0c5617e __snd_pcm_lib_xfer +EXPORT_SYMBOL vmlinux 0xf0c75e45 pci_read_config_dword +EXPORT_SYMBOL vmlinux 0xf0e8fc7a scsi_eh_restore_cmnd EXPORT_SYMBOL vmlinux 0xf0ed2ef4 __raw_writesb +EXPORT_SYMBOL vmlinux 0xf0ee9e3c phy_driver_unregister EXPORT_SYMBOL vmlinux 0xf0ef52e8 down -EXPORT_SYMBOL vmlinux 0xf0f4c0cc scsi_print_sense_hdr +EXPORT_SYMBOL vmlinux 0xf0f928a6 __sk_queue_drop_skb EXPORT_SYMBOL vmlinux 0xf102033e slhc_remember EXPORT_SYMBOL vmlinux 0xf102732a crc16 -EXPORT_SYMBOL vmlinux 0xf1062d00 snd_ctl_register_ioctl +EXPORT_SYMBOL vmlinux 0xf106d033 kmem_cache_alloc_bulk EXPORT_SYMBOL vmlinux 0xf108715e dma_fence_signal_locked EXPORT_SYMBOL vmlinux 0xf11dd46e _page_poisoning_enabled_early -EXPORT_SYMBOL vmlinux 0xf11e948a fqdir_init -EXPORT_SYMBOL vmlinux 0xf12a1649 skb_realloc_headroom -EXPORT_SYMBOL vmlinux 0xf130f258 unregister_shrinker -EXPORT_SYMBOL vmlinux 0xf1348ad0 nvmem_get_mac_address -EXPORT_SYMBOL vmlinux 0xf141d79c inet_reqsk_alloc -EXPORT_SYMBOL vmlinux 0xf1420553 param_get_int -EXPORT_SYMBOL vmlinux 0xf14ed437 fscrypt_encrypt_block_inplace -EXPORT_SYMBOL vmlinux 0xf154bd83 from_kuid_munged -EXPORT_SYMBOL vmlinux 0xf1600d0d blk_queue_update_dma_pad -EXPORT_SYMBOL vmlinux 0xf161a360 nf_setsockopt -EXPORT_SYMBOL vmlinux 0xf16567ed sock_no_sendpage -EXPORT_SYMBOL vmlinux 0xf167bb2c dev_add_offload -EXPORT_SYMBOL vmlinux 0xf172c95c nand_ecc_prepare_io_req -EXPORT_SYMBOL vmlinux 0xf1825841 jbd2_journal_get_write_access -EXPORT_SYMBOL vmlinux 0xf188b009 md_wakeup_thread +EXPORT_SYMBOL vmlinux 0xf1207838 from_kprojid_munged +EXPORT_SYMBOL vmlinux 0xf135b977 generic_read_dir +EXPORT_SYMBOL vmlinux 0xf1542ce3 snd_ctl_remove_id +EXPORT_SYMBOL vmlinux 0xf15711e5 zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0xf15995c7 key_validate 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 0xf19f95bb snd_pcm_lib_free_vmalloc_buffer -EXPORT_SYMBOL vmlinux 0xf1bbd4d7 mdio_device_create -EXPORT_SYMBOL vmlinux 0xf1ce9095 __ClearPageMovable +EXPORT_SYMBOL vmlinux 0xf1bbb24e key_type_keyring +EXPORT_SYMBOL vmlinux 0xf1bbc899 component_match_add_release +EXPORT_SYMBOL vmlinux 0xf1bf5117 fb_get_buffer_offset +EXPORT_SYMBOL vmlinux 0xf1d40602 mipi_dsi_dcs_write +EXPORT_SYMBOL vmlinux 0xf1d79c8d phy_set_asym_pause EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy EXPORT_SYMBOL vmlinux 0xf1e046cc panic EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun EXPORT_SYMBOL vmlinux 0xf1ea6f1c __bswapsi2 EXPORT_SYMBOL vmlinux 0xf1f224c4 textsearch_destroy -EXPORT_SYMBOL vmlinux 0xf1f23c55 rt_dst_clone -EXPORT_SYMBOL vmlinux 0xf1fee572 tcf_em_register -EXPORT_SYMBOL vmlinux 0xf202c483 mdiobus_register_device -EXPORT_SYMBOL vmlinux 0xf214da73 reuseport_alloc -EXPORT_SYMBOL vmlinux 0xf226b94c tc_setup_cb_call +EXPORT_SYMBOL vmlinux 0xf20684c5 generic_remap_file_range_prep +EXPORT_SYMBOL vmlinux 0xf20e922e xfrm_stateonly_find +EXPORT_SYMBOL vmlinux 0xf226fd63 d_prune_aliases EXPORT_SYMBOL vmlinux 0xf236c75e swake_up_one EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in -EXPORT_SYMBOL vmlinux 0xf24192e8 kernel_sendmsg -EXPORT_SYMBOL vmlinux 0xf2431998 km_query -EXPORT_SYMBOL vmlinux 0xf2449463 tty_insert_flip_string_flags -EXPORT_SYMBOL vmlinux 0xf24b0d87 tty_port_hangup +EXPORT_SYMBOL vmlinux 0xf244ca04 prepare_to_swait_event +EXPORT_SYMBOL vmlinux 0xf2769ee4 rproc_of_resm_mem_entry_init EXPORT_SYMBOL vmlinux 0xf28404cf devlink_dpipe_header_ipv6 EXPORT_SYMBOL vmlinux 0xf28cf0ae __hw_addr_init -EXPORT_SYMBOL vmlinux 0xf2ad4fab dquot_get_dqblk +EXPORT_SYMBOL vmlinux 0xf2a65de2 simple_pin_fs +EXPORT_SYMBOL vmlinux 0xf2a8b96e snd_pcm_set_managed_buffer EXPORT_SYMBOL vmlinux 0xf2ad80d9 snd_pcm_create_iec958_consumer_hw_params -EXPORT_SYMBOL vmlinux 0xf2c081f0 inet_sk_set_state EXPORT_SYMBOL vmlinux 0xf2c43f3f zlib_deflate -EXPORT_SYMBOL vmlinux 0xf2c6310e inode_update_time -EXPORT_SYMBOL vmlinux 0xf2d98dbd poll_freewait +EXPORT_SYMBOL vmlinux 0xf2dc029f napi_disable +EXPORT_SYMBOL vmlinux 0xf2de15d6 reuseport_stop_listen_sock EXPORT_SYMBOL vmlinux 0xf2e5bd87 security_free_mnt_opts -EXPORT_SYMBOL vmlinux 0xf2eafc5e in_dev_finish_destroy -EXPORT_SYMBOL vmlinux 0xf2f120e7 of_find_all_nodes EXPORT_SYMBOL vmlinux 0xf2f53617 memregion_free -EXPORT_SYMBOL vmlinux 0xf3068a57 get_vm_area +EXPORT_SYMBOL vmlinux 0xf2fdb490 blk_integrity_compare EXPORT_SYMBOL vmlinux 0xf3107926 sha224_update -EXPORT_SYMBOL vmlinux 0xf322cc7a inet_dgram_connect -EXPORT_SYMBOL vmlinux 0xf32575a4 tcp_sock_set_keepintvl +EXPORT_SYMBOL vmlinux 0xf31a7f8a genphy_restart_aneg +EXPORT_SYMBOL vmlinux 0xf31e2a03 fscrypt_put_encryption_info +EXPORT_SYMBOL vmlinux 0xf34573af __scsi_execute EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head +EXPORT_SYMBOL vmlinux 0xf347cae2 rproc_put EXPORT_SYMBOL vmlinux 0xf348ff41 bpf_stats_enabled_key -EXPORT_SYMBOL vmlinux 0xf34c387c pcim_iomap_table +EXPORT_SYMBOL vmlinux 0xf34ace5d __xfrm_state_delete EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier EXPORT_SYMBOL vmlinux 0xf362dc7f arm_clear_user EXPORT_SYMBOL vmlinux 0xf36b87a3 textsearch_unregister -EXPORT_SYMBOL vmlinux 0xf388d99d phy_ethtool_ksettings_set -EXPORT_SYMBOL vmlinux 0xf3895450 mmc_gpio_set_cd_wake +EXPORT_SYMBOL vmlinux 0xf36f249b filemap_fdatawrite +EXPORT_SYMBOL vmlinux 0xf381a167 cdrom_dummy_generic_packet EXPORT_SYMBOL vmlinux 0xf3916987 global_cursor_default +EXPORT_SYMBOL vmlinux 0xf39c902c rt_mutex_base_init EXPORT_SYMBOL vmlinux 0xf3a11c35 xa_find_after +EXPORT_SYMBOL vmlinux 0xf3a1a5af configfs_unregister_group +EXPORT_SYMBOL vmlinux 0xf3aa9b8c truncate_inode_pages_range EXPORT_SYMBOL vmlinux 0xf3b30a06 utf8version_latest -EXPORT_SYMBOL vmlinux 0xf3c8ae14 pci_find_parent_resource +EXPORT_SYMBOL vmlinux 0xf3cd48e0 dquot_release EXPORT_SYMBOL vmlinux 0xf3d0b495 _raw_spin_unlock_irqrestore -EXPORT_SYMBOL vmlinux 0xf3de3a0b blk_mq_stop_hw_queues EXPORT_SYMBOL vmlinux 0xf3e0e1df allocate_resource EXPORT_SYMBOL vmlinux 0xf3e6402e __bitmap_equal -EXPORT_SYMBOL vmlinux 0xf3e9ccfe dquot_destroy EXPORT_SYMBOL vmlinux 0xf3eb1323 kstrtou16_from_user -EXPORT_SYMBOL vmlinux 0xf3f966a6 inet_csk_accept -EXPORT_SYMBOL vmlinux 0xf3fdc16d skb_kill_datagram -EXPORT_SYMBOL vmlinux 0xf404d4c5 blk_set_runtime_active -EXPORT_SYMBOL vmlinux 0xf44251e9 jbd2_journal_restart +EXPORT_SYMBOL vmlinux 0xf3ee7592 dma_map_sg_attrs +EXPORT_SYMBOL vmlinux 0xf3efd528 thermal_cdev_update +EXPORT_SYMBOL vmlinux 0xf3f7079c serial8250_set_isa_configurator +EXPORT_SYMBOL vmlinux 0xf3f7d5c9 dcb_ieee_getapp_default_prio_mask +EXPORT_SYMBOL vmlinux 0xf3fe08a4 set_anon_super_fc +EXPORT_SYMBOL vmlinux 0xf4071e63 may_setattr +EXPORT_SYMBOL vmlinux 0xf42ea23c dma_sync_single_for_cpu +EXPORT_SYMBOL vmlinux 0xf42f1d42 ip_generic_getfrag +EXPORT_SYMBOL vmlinux 0xf43baa64 cookie_timestamp_decode EXPORT_SYMBOL vmlinux 0xf44a3ad4 __tracepoint_dma_fence_enable_signal EXPORT_SYMBOL vmlinux 0xf44a904a net_ns_barrier -EXPORT_SYMBOL vmlinux 0xf459bfe2 jbd2_fc_wait_bufs -EXPORT_SYMBOL vmlinux 0xf465bfd8 io_uring_get_socket -EXPORT_SYMBOL vmlinux 0xf471774f __tcp_md5_do_lookup +EXPORT_SYMBOL vmlinux 0xf44aa179 blk_queue_max_write_same_sectors +EXPORT_SYMBOL vmlinux 0xf44aaebd inet6_bind +EXPORT_SYMBOL vmlinux 0xf45bebab fget_raw +EXPORT_SYMBOL vmlinux 0xf4660c77 pci_read_config_byte +EXPORT_SYMBOL vmlinux 0xf46fbbb8 ipv6_find_hdr EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const -EXPORT_SYMBOL vmlinux 0xf482992a netdev_upper_dev_link -EXPORT_SYMBOL vmlinux 0xf48e4524 i2c_transfer_buffer_flags +EXPORT_SYMBOL vmlinux 0xf479f75c nand_ecc_sw_bch_correct +EXPORT_SYMBOL vmlinux 0xf480a71d xfrm_spd_getinfo +EXPORT_SYMBOL vmlinux 0xf4833ace pci_enable_ptm +EXPORT_SYMBOL vmlinux 0xf48515f6 cdev_set_parent +EXPORT_SYMBOL vmlinux 0xf4892631 uart_resume_port EXPORT_SYMBOL vmlinux 0xf496fbd2 __tracepoint_module_get EXPORT_SYMBOL vmlinux 0xf4a04498 nmi_panic -EXPORT_SYMBOL vmlinux 0xf4a3c8cf phy_error -EXPORT_SYMBOL vmlinux 0xf4a9bd3f kmem_cache_alloc_trace -EXPORT_SYMBOL vmlinux 0xf4b57a6a udp_lib_unhash -EXPORT_SYMBOL vmlinux 0xf4b6e2d6 ps2_sendbyte +EXPORT_SYMBOL vmlinux 0xf4ae8c05 mr_mfc_seq_idx EXPORT_SYMBOL vmlinux 0xf4ba246e ZSTD_nextSrcSizeToDecompress EXPORT_SYMBOL vmlinux 0xf4baa334 proc_dointvec_userhz_jiffies +EXPORT_SYMBOL vmlinux 0xf4bc4a40 inet_csk_reqsk_queue_drop EXPORT_SYMBOL vmlinux 0xf4bdbeb9 __frontswap_invalidate_area -EXPORT_SYMBOL vmlinux 0xf4d39a59 _dev_err +EXPORT_SYMBOL vmlinux 0xf4cf95f6 mipi_dsi_driver_unregister +EXPORT_SYMBOL vmlinux 0xf4d920c4 flow_rule_match_enc_ipv4_addrs EXPORT_SYMBOL vmlinux 0xf4db35bc stpcpy -EXPORT_SYMBOL vmlinux 0xf4e96a9f dmaenginem_async_device_register +EXPORT_SYMBOL vmlinux 0xf4db8f02 tcf_action_dump_1 EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock -EXPORT_SYMBOL vmlinux 0xf4f4c21b pskb_extract -EXPORT_SYMBOL vmlinux 0xf4f4c6d8 dst_discard_out -EXPORT_SYMBOL vmlinux 0xf5020bad tcp_setsockopt -EXPORT_SYMBOL vmlinux 0xf5040677 blk_queue_split -EXPORT_SYMBOL vmlinux 0xf51757e3 clk_get -EXPORT_SYMBOL vmlinux 0xf51d7094 xfrm_state_register_afinfo -EXPORT_SYMBOL vmlinux 0xf52ef131 submit_bio_wait -EXPORT_SYMBOL vmlinux 0xf52f7264 eth_header_parse_protocol -EXPORT_SYMBOL vmlinux 0xf530e3d6 simple_nosetlease -EXPORT_SYMBOL vmlinux 0xf5323242 mr_mfc_find_any_parent -EXPORT_SYMBOL vmlinux 0xf53b75ea vlan_dev_real_dev +EXPORT_SYMBOL vmlinux 0xf4f3e978 wake_up_process +EXPORT_SYMBOL vmlinux 0xf52e872a udp_seq_next +EXPORT_SYMBOL vmlinux 0xf53a9f53 jbd2_journal_clear_err EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy -EXPORT_SYMBOL vmlinux 0xf550036f read_cache_page -EXPORT_SYMBOL vmlinux 0xf55af619 write_dirty_buffer -EXPORT_SYMBOL vmlinux 0xf55d1b2a set_capacity +EXPORT_SYMBOL vmlinux 0xf55a3cde serio_open EXPORT_SYMBOL vmlinux 0xf564412a __aeabi_ulcmp -EXPORT_SYMBOL vmlinux 0xf57190fb seq_dentry -EXPORT_SYMBOL vmlinux 0xf59a55c9 devm_clk_get -EXPORT_SYMBOL vmlinux 0xf5a03232 jbd2_journal_try_to_free_buffers +EXPORT_SYMBOL vmlinux 0xf56a48dc mdio_bus_type +EXPORT_SYMBOL vmlinux 0xf579099b scsi_is_sdev_device +EXPORT_SYMBOL vmlinux 0xf587593a max8925_reg_write +EXPORT_SYMBOL vmlinux 0xf5a7e3d2 vme_bus_error_handler EXPORT_SYMBOL vmlinux 0xf5b666ef __cond_resched_lock -EXPORT_SYMBOL vmlinux 0xf5d139c9 dquot_quota_sync +EXPORT_SYMBOL vmlinux 0xf5c967f1 inet_confirm_addr EXPORT_SYMBOL vmlinux 0xf5db30ae gen_pool_for_each_chunk +EXPORT_SYMBOL vmlinux 0xf5e0a049 dup_iter EXPORT_SYMBOL vmlinux 0xf5e7ea40 ktime_get_coarse_ts64 -EXPORT_SYMBOL vmlinux 0xf5f17ce2 pci_bus_read_config_byte -EXPORT_SYMBOL vmlinux 0xf61991d3 netif_device_detach -EXPORT_SYMBOL vmlinux 0xf61a0091 pmem_sector_size +EXPORT_SYMBOL vmlinux 0xf601eedb d_instantiate_anon +EXPORT_SYMBOL vmlinux 0xf604d664 __icmp_send +EXPORT_SYMBOL vmlinux 0xf61eb0f4 of_cpu_node_to_id EXPORT_SYMBOL vmlinux 0xf62c39fe ucc_slow_graceful_stop_tx -EXPORT_SYMBOL vmlinux 0xf631d0b6 make_kuid -EXPORT_SYMBOL vmlinux 0xf63b0441 netdev_adjacent_change_commit +EXPORT_SYMBOL vmlinux 0xf63c1298 module_put EXPORT_SYMBOL vmlinux 0xf643d104 hsiphash_4u32 EXPORT_SYMBOL vmlinux 0xf64bf255 wait_for_completion EXPORT_SYMBOL vmlinux 0xf652d359 __wake_up_bit -EXPORT_SYMBOL vmlinux 0xf65cd499 tty_schedule_flip -EXPORT_SYMBOL vmlinux 0xf65f1008 md_update_sb +EXPORT_SYMBOL vmlinux 0xf65fe664 xattr_full_name +EXPORT_SYMBOL vmlinux 0xf6630989 jbd2_fc_end_commit EXPORT_SYMBOL vmlinux 0xf665f74f sock_load_diag_module -EXPORT_SYMBOL vmlinux 0xf6689cf3 vm_mmap -EXPORT_SYMBOL vmlinux 0xf66fa501 genl_unregister_family -EXPORT_SYMBOL vmlinux 0xf674874d param_set_hexint EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier -EXPORT_SYMBOL vmlinux 0xf6898268 tty_kref_put -EXPORT_SYMBOL vmlinux 0xf6a7405d netif_schedule_queue -EXPORT_SYMBOL vmlinux 0xf6a91a6c blk_mq_start_request -EXPORT_SYMBOL vmlinux 0xf6bf943f dquot_reclaim_space_nodirty -EXPORT_SYMBOL vmlinux 0xf6c42d59 nd_device_register -EXPORT_SYMBOL vmlinux 0xf6d52bb0 __fs_parse +EXPORT_SYMBOL vmlinux 0xf6a39b59 xp_alloc +EXPORT_SYMBOL vmlinux 0xf6a4489c pid_task +EXPORT_SYMBOL vmlinux 0xf6a96c9f inet_frag_find +EXPORT_SYMBOL vmlinux 0xf6b2d0f3 mipi_dsi_compression_mode +EXPORT_SYMBOL vmlinux 0xf6c3dcba sk_dst_check EXPORT_SYMBOL vmlinux 0xf6e4df71 on_each_cpu_cond_mask -EXPORT_SYMBOL vmlinux 0xf6e7dd35 inode_newsize_ok EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit -EXPORT_SYMBOL vmlinux 0xf6eec4f1 blk_mq_free_tag_set +EXPORT_SYMBOL vmlinux 0xf6ed20ce of_get_next_child +EXPORT_SYMBOL vmlinux 0xf6ed4061 __starget_for_each_device EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor -EXPORT_SYMBOL vmlinux 0xf7058992 get_bitmap_from_slot +EXPORT_SYMBOL vmlinux 0xf6ffec10 shrink_dcache_sb EXPORT_SYMBOL vmlinux 0xf705fa49 gen_pool_free_owner -EXPORT_SYMBOL vmlinux 0xf7107762 of_graph_get_next_endpoint +EXPORT_SYMBOL vmlinux 0xf70ff67f filp_close EXPORT_SYMBOL vmlinux 0xf7163ec9 __raw_readsb -EXPORT_SYMBOL vmlinux 0xf734edc2 xfrm6_rcv_spi +EXPORT_SYMBOL vmlinux 0xf71b0879 param_ops_byte +EXPORT_SYMBOL vmlinux 0xf71dd006 __cleancache_invalidate_inode +EXPORT_SYMBOL vmlinux 0xf722faf8 phy_request_interrupt +EXPORT_SYMBOL vmlinux 0xf7345f1c PDE_DATA EXPORT_SYMBOL vmlinux 0xf738d1be register_blocking_lsm_notifier -EXPORT_SYMBOL vmlinux 0xf73f85d3 snd_jack_set_parent -EXPORT_SYMBOL vmlinux 0xf758098f get_user_pages_locked -EXPORT_SYMBOL vmlinux 0xf75db1b7 tty_port_carrier_raised +EXPORT_SYMBOL vmlinux 0xf7471a7d vfs_fsync_range +EXPORT_SYMBOL vmlinux 0xf7613a45 mmc_retune_pause EXPORT_SYMBOL vmlinux 0xf76843b5 qcom_scm_pas_supported -EXPORT_SYMBOL vmlinux 0xf76c5149 param_get_charp EXPORT_SYMBOL vmlinux 0xf77337a1 hdmi_audio_infoframe_check -EXPORT_SYMBOL vmlinux 0xf77c8bcb kill_pid EXPORT_SYMBOL vmlinux 0xf7802486 __aeabi_uidivmod -EXPORT_SYMBOL vmlinux 0xf7aeb63c secure_tcpv6_ts_off -EXPORT_SYMBOL vmlinux 0xf7b5fa87 param_ops_uint -EXPORT_SYMBOL vmlinux 0xf7f8f68e snd_timer_pause -EXPORT_SYMBOL vmlinux 0xf7ff838d scsi_remove_host -EXPORT_SYMBOL vmlinux 0xf80dda79 sock_rfree +EXPORT_SYMBOL vmlinux 0xf7840a43 sock_no_mmap +EXPORT_SYMBOL vmlinux 0xf78828d2 skb_flow_dissect_tunnel_info +EXPORT_SYMBOL vmlinux 0xf7c3bb99 _dev_alert +EXPORT_SYMBOL vmlinux 0xf7f74d4e rawv6_mh_filter_unregister +EXPORT_SYMBOL vmlinux 0xf80ddf27 grab_cache_page_write_begin +EXPORT_SYMBOL vmlinux 0xf80f3542 tcf_block_get_ext +EXPORT_SYMBOL vmlinux 0xf8111de6 udp6_csum_init EXPORT_SYMBOL vmlinux 0xf811e69d scsi_eh_flush_done_q -EXPORT_SYMBOL vmlinux 0xf8224cda irq_set_chip +EXPORT_SYMBOL vmlinux 0xf817746a pci_clear_master EXPORT_SYMBOL vmlinux 0xf82abc1d isa_dma_bridge_buggy +EXPORT_SYMBOL vmlinux 0xf82cbfe5 mmc_card_alternative_gpt_sector EXPORT_SYMBOL vmlinux 0xf82ec573 rb_prev +EXPORT_SYMBOL vmlinux 0xf830dfb0 key_invalidate EXPORT_SYMBOL vmlinux 0xf838fd97 dim_park_on_top -EXPORT_SYMBOL vmlinux 0xf83c02ad __sk_queue_drop_skb -EXPORT_SYMBOL vmlinux 0xf8416b21 sg_miter_start -EXPORT_SYMBOL vmlinux 0xf842b9fd xattr_supported_namespace -EXPORT_SYMBOL vmlinux 0xf843f1b2 rdmacg_try_charge -EXPORT_SYMBOL vmlinux 0xf8572d4e phy_attached_info_irq -EXPORT_SYMBOL vmlinux 0xf86cb891 skb_orphan_partial +EXPORT_SYMBOL vmlinux 0xf842e295 elv_rb_former_request +EXPORT_SYMBOL vmlinux 0xf84613eb md_flush_request +EXPORT_SYMBOL vmlinux 0xf856eabd inet_get_local_port_range +EXPORT_SYMBOL vmlinux 0xf85d6dcd lookup_positive_unlocked +EXPORT_SYMBOL vmlinux 0xf8612f99 tty_port_alloc_xmit_buf +EXPORT_SYMBOL vmlinux 0xf863dccb rproc_boot EXPORT_SYMBOL vmlinux 0xf86f27cd idr_alloc_cyclic -EXPORT_SYMBOL vmlinux 0xf8703a2a mntget EXPORT_SYMBOL vmlinux 0xf888ca21 sg_init_table -EXPORT_SYMBOL vmlinux 0xf8a7a7ed __seq_open_private -EXPORT_SYMBOL vmlinux 0xf8b52332 devm_rproc_alloc -EXPORT_SYMBOL vmlinux 0xf8c3e53d __breadahead -EXPORT_SYMBOL vmlinux 0xf8c8da9a __test_set_page_writeback -EXPORT_SYMBOL vmlinux 0xf8d58472 __inode_add_bytes -EXPORT_SYMBOL vmlinux 0xf8d86ab4 tcp_ioctl -EXPORT_SYMBOL vmlinux 0xf8e49a97 flow_rule_match_ct +EXPORT_SYMBOL vmlinux 0xf894a9c3 mr_fill_mroute +EXPORT_SYMBOL vmlinux 0xf8b45f4c netdev_unbind_sb_channel +EXPORT_SYMBOL vmlinux 0xf8d2444b pipe_lock +EXPORT_SYMBOL vmlinux 0xf8f1734a set_nlink EXPORT_SYMBOL vmlinux 0xf8f61ebc wake_up_var +EXPORT_SYMBOL vmlinux 0xf8fb4a75 fwnode_mdiobus_register_phy +EXPORT_SYMBOL vmlinux 0xf905e91f pci_dev_driver +EXPORT_SYMBOL vmlinux 0xf908ee73 block_write_full_page EXPORT_SYMBOL vmlinux 0xf9096a29 kobject_get -EXPORT_SYMBOL vmlinux 0xf92225d7 sb_set_blocksize -EXPORT_SYMBOL vmlinux 0xf939420e kfree_skb +EXPORT_SYMBOL vmlinux 0xf9101049 snd_dma_free_pages +EXPORT_SYMBOL vmlinux 0xf932e90e ip_local_deliver EXPORT_SYMBOL vmlinux 0xf93aae46 __arm_smccc_smc -EXPORT_SYMBOL vmlinux 0xf93e4efd bio_put EXPORT_SYMBOL vmlinux 0xf93fd09c fb_find_mode_cvt -EXPORT_SYMBOL vmlinux 0xf94121c9 kernel_getpeername -EXPORT_SYMBOL vmlinux 0xf9438794 twl6040_set_bits -EXPORT_SYMBOL vmlinux 0xf94b1671 __register_binfmt -EXPORT_SYMBOL vmlinux 0xf95489e1 vfs_parse_fs_param_source -EXPORT_SYMBOL vmlinux 0xf95b3982 pm8606_osc_enable -EXPORT_SYMBOL vmlinux 0xf9614274 fifo_create_dflt +EXPORT_SYMBOL vmlinux 0xf9462c95 twl6040_get_vibralr_status EXPORT_SYMBOL vmlinux 0xf9722676 twl_i2c_write -EXPORT_SYMBOL vmlinux 0xf980d63f pcie_get_width_cap -EXPORT_SYMBOL vmlinux 0xf9a42bda vme_unregister_driver +EXPORT_SYMBOL vmlinux 0xf976fa7e jbd2_journal_update_sb_errno +EXPORT_SYMBOL vmlinux 0xf977b6eb register_mii_tstamp_controller +EXPORT_SYMBOL vmlinux 0xf9825175 nand_read_oob_std +EXPORT_SYMBOL vmlinux 0xf98d50ec fb_blank +EXPORT_SYMBOL vmlinux 0xf9995cd8 phy_ethtool_get_sset_count +EXPORT_SYMBOL vmlinux 0xf99f2651 framebuffer_alloc EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep -EXPORT_SYMBOL vmlinux 0xf9c6de90 inet_frag_reasm_prepare +EXPORT_SYMBOL vmlinux 0xf9a64ccb __blk_rq_map_sg +EXPORT_SYMBOL vmlinux 0xf9b16dc5 mmc_erase +EXPORT_SYMBOL vmlinux 0xf9d9323d mmc_of_parse_voltage EXPORT_SYMBOL vmlinux 0xf9dc9d13 proc_dobool +EXPORT_SYMBOL vmlinux 0xf9e5cd1a f_setown +EXPORT_SYMBOL vmlinux 0xf9e91212 mmc_gpio_set_cd_wake EXPORT_SYMBOL vmlinux 0xf9f0c951 kstrtol_from_user EXPORT_SYMBOL vmlinux 0xf9f3696e __cpuhp_setup_state_cpuslocked +EXPORT_SYMBOL vmlinux 0xf9f852fc dev_mc_unsync +EXPORT_SYMBOL vmlinux 0xf9fac39b input_mt_assign_slots +EXPORT_SYMBOL vmlinux 0xf9fb0528 ps2_handle_response EXPORT_SYMBOL vmlinux 0xfa021f90 ZSTD_decompressContinue EXPORT_SYMBOL vmlinux 0xfa08c34a page_offline_end -EXPORT_SYMBOL vmlinux 0xfa0d976c security_socket_socketpair -EXPORT_SYMBOL vmlinux 0xfa0e65ad __frontswap_load -EXPORT_SYMBOL vmlinux 0xfa1ac9c3 __scsi_device_lookup -EXPORT_SYMBOL vmlinux 0xfa410344 kmap_high -EXPORT_SYMBOL vmlinux 0xfa41b51a remap_vmalloc_range -EXPORT_SYMBOL vmlinux 0xfa464577 scsi_block_requests -EXPORT_SYMBOL vmlinux 0xfa465d79 sock_sendmsg +EXPORT_SYMBOL vmlinux 0xfa11dbd2 vif_device_init +EXPORT_SYMBOL vmlinux 0xfa1c57c1 nvdimm_bus_lock +EXPORT_SYMBOL vmlinux 0xfa2e663c generic_write_checks +EXPORT_SYMBOL vmlinux 0xfa566df6 __insert_inode_hash EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier +EXPORT_SYMBOL vmlinux 0xfa69b048 rproc_coredump_add_segment EXPORT_SYMBOL vmlinux 0xfa72be38 xa_get_order -EXPORT_SYMBOL vmlinux 0xfa743993 simple_unlink -EXPORT_SYMBOL vmlinux 0xfa7dcf14 vfs_create_mount EXPORT_SYMBOL vmlinux 0xfa873ad0 prandom_seed -EXPORT_SYMBOL vmlinux 0xfa907f72 bd_abort_claiming +EXPORT_SYMBOL vmlinux 0xfa8ec161 __set_page_dirty_buffers EXPORT_SYMBOL vmlinux 0xfa9633c9 kset_register -EXPORT_SYMBOL vmlinux 0xfab10bc0 i2c_smbus_write_byte -EXPORT_SYMBOL vmlinux 0xfac02290 neigh_connected_output +EXPORT_SYMBOL vmlinux 0xfabd6267 tc6393xb_lcd_mode +EXPORT_SYMBOL vmlinux 0xfac08f94 pci_scan_bridge EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max -EXPORT_SYMBOL vmlinux 0xfaefb59a security_sb_set_mnt_opts -EXPORT_SYMBOL vmlinux 0xfaf2ff24 stop_tty -EXPORT_SYMBOL vmlinux 0xfafeaf0c __page_frag_cache_drain -EXPORT_SYMBOL vmlinux 0xfb02ad79 __cleancache_init_shared_fs -EXPORT_SYMBOL vmlinux 0xfb04053e set_anon_super_fc -EXPORT_SYMBOL vmlinux 0xfb10f699 reuseport_add_sock +EXPORT_SYMBOL vmlinux 0xfacc56f1 xfrm6_protocol_deregister +EXPORT_SYMBOL vmlinux 0xfad92424 simple_dir_inode_operations +EXPORT_SYMBOL vmlinux 0xfafe4229 linkwatch_fire_event EXPORT_SYMBOL vmlinux 0xfb1d7438 down_read -EXPORT_SYMBOL vmlinux 0xfb1f56b0 qdisc_warn_nonwc -EXPORT_SYMBOL vmlinux 0xfb27967d ip6_err_gen_icmpv6_unreach -EXPORT_SYMBOL vmlinux 0xfb2f92e6 follow_up -EXPORT_SYMBOL vmlinux 0xfb326725 blk_mq_stop_hw_queue +EXPORT_SYMBOL vmlinux 0xfb1fe873 rproc_da_to_va EXPORT_SYMBOL vmlinux 0xfb336634 mempool_destroy -EXPORT_SYMBOL vmlinux 0xfb336dfd tcf_chain_get_by_act EXPORT_SYMBOL vmlinux 0xfb384d37 kasprintf -EXPORT_SYMBOL vmlinux 0xfb4d316a nobh_truncate_page -EXPORT_SYMBOL vmlinux 0xfb58f65a vlan_ioctl_set +EXPORT_SYMBOL vmlinux 0xfb436086 vfs_iter_read EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending EXPORT_SYMBOL vmlinux 0xfb7d9c45 __udivsi3 -EXPORT_SYMBOL vmlinux 0xfba5291f jbd2_journal_blocks_per_page +EXPORT_SYMBOL vmlinux 0xfba4f633 i2c_transfer +EXPORT_SYMBOL vmlinux 0xfba5d744 phy_attach EXPORT_SYMBOL vmlinux 0xfba7ddd2 match_u64 EXPORT_SYMBOL vmlinux 0xfbaaf01e console_lock -EXPORT_SYMBOL vmlinux 0xfbab5ea0 pci_enable_ptm EXPORT_SYMBOL vmlinux 0xfbad3cf0 scsi_normalize_sense -EXPORT_SYMBOL vmlinux 0xfbbc876c ip_mc_leave_group +EXPORT_SYMBOL vmlinux 0xfbb904d5 dev_addr_del +EXPORT_SYMBOL vmlinux 0xfbc1f0fe phy_drivers_register EXPORT_SYMBOL vmlinux 0xfbc4f89e io_schedule_timeout -EXPORT_SYMBOL vmlinux 0xfbca65fe __skb_gso_segment +EXPORT_SYMBOL vmlinux 0xfbc65894 __tty_insert_flip_char +EXPORT_SYMBOL vmlinux 0xfbca335d nd_namespace_blk_validate +EXPORT_SYMBOL vmlinux 0xfbd65a88 register_fib_notifier +EXPORT_SYMBOL vmlinux 0xfbdc57af jbd2_journal_grab_journal_head +EXPORT_SYMBOL vmlinux 0xfbdcc78c complete_request_key EXPORT_SYMBOL vmlinux 0xfbdfd3f1 ioremap_wc +EXPORT_SYMBOL vmlinux 0xfbe2208a pm860x_page_bulk_read EXPORT_SYMBOL vmlinux 0xfbea611e _raw_read_unlock_bh EXPORT_SYMBOL vmlinux 0xfbfd7e4c set_groups -EXPORT_SYMBOL vmlinux 0xfc0c5102 snd_pcm_mmap_data -EXPORT_SYMBOL vmlinux 0xfc0d3527 simple_write_begin -EXPORT_SYMBOL vmlinux 0xfc0f1549 md_finish_reshape -EXPORT_SYMBOL vmlinux 0xfc0fb990 dma_map_page_attrs EXPORT_SYMBOL vmlinux 0xfc2a1f84 kset_unregister -EXPORT_SYMBOL vmlinux 0xfc2db68a param_set_int -EXPORT_SYMBOL vmlinux 0xfc31799f vm_insert_page EXPORT_SYMBOL vmlinux 0xfc31eec2 _raw_read_lock_irq +EXPORT_SYMBOL vmlinux 0xfc358895 __sock_queue_rcv_skb EXPORT_SYMBOL vmlinux 0xfc399557 utf8_load EXPORT_SYMBOL vmlinux 0xfc39e32f ioport_unmap +EXPORT_SYMBOL vmlinux 0xfc3d6758 __dev_get_by_name EXPORT_SYMBOL vmlinux 0xfc3f3589 strscpy_pad EXPORT_SYMBOL vmlinux 0xfc52abc7 qcom_scm_pas_shutdown -EXPORT_SYMBOL vmlinux 0xfc607686 netif_rx_ni -EXPORT_SYMBOL vmlinux 0xfc8531e2 unregister_mtd_chip_driver +EXPORT_SYMBOL vmlinux 0xfc54f1cd snd_card_file_add +EXPORT_SYMBOL vmlinux 0xfc5a718e skb_mac_gso_segment +EXPORT_SYMBOL vmlinux 0xfc896cb2 uart_suspend_port EXPORT_SYMBOL vmlinux 0xfc9ed8c3 qcom_scm_ice_available -EXPORT_SYMBOL vmlinux 0xfca5d0ad xsk_set_tx_need_wakeup -EXPORT_SYMBOL vmlinux 0xfca64026 xfrm_policy_delete -EXPORT_SYMBOL vmlinux 0xfcaec9da dev_set_alias +EXPORT_SYMBOL vmlinux 0xfca4e07e bdi_set_max_ratio +EXPORT_SYMBOL vmlinux 0xfcae12c3 inet_dgram_ops +EXPORT_SYMBOL vmlinux 0xfcb57c44 bio_add_pc_page +EXPORT_SYMBOL vmlinux 0xfcbce006 cdrom_get_last_written EXPORT_SYMBOL vmlinux 0xfcce2f7d ucc_fast_enable -EXPORT_SYMBOL vmlinux 0xfcd0a995 mmc_can_erase EXPORT_SYMBOL vmlinux 0xfcd1819a hdmi_spd_infoframe_check -EXPORT_SYMBOL vmlinux 0xfcd33ac2 fqdir_exit -EXPORT_SYMBOL vmlinux 0xfcd86261 xfrm_input_resume -EXPORT_SYMBOL vmlinux 0xfceb9b2c blk_put_request +EXPORT_SYMBOL vmlinux 0xfce0ceed clk_bulk_get_all +EXPORT_SYMBOL vmlinux 0xfce2bc20 del_random_ready_callback EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq -EXPORT_SYMBOL vmlinux 0xfcecc267 netif_stacked_transfer_operstate -EXPORT_SYMBOL vmlinux 0xfced385b tcf_block_put -EXPORT_SYMBOL vmlinux 0xfcffae1a neigh_lookup -EXPORT_SYMBOL vmlinux 0xfd013c40 proc_symlink -EXPORT_SYMBOL vmlinux 0xfd0bf7f2 cdev_device_add +EXPORT_SYMBOL vmlinux 0xfcf059fa genphy_suspend +EXPORT_SYMBOL vmlinux 0xfd04fd3e kthread_stop EXPORT_SYMBOL vmlinux 0xfd1bc346 __traceiter_dma_fence_signaled +EXPORT_SYMBOL vmlinux 0xfd1e8f69 dm_unregister_target EXPORT_SYMBOL vmlinux 0xfd305341 walk_stackframe -EXPORT_SYMBOL vmlinux 0xfd36f697 kthread_bind -EXPORT_SYMBOL vmlinux 0xfd535286 mipi_dsi_dcs_write_buffer -EXPORT_SYMBOL vmlinux 0xfd5dd491 ethtool_rx_flow_rule_destroy -EXPORT_SYMBOL vmlinux 0xfd757f9e xp_dma_sync_for_device_slow -EXPORT_SYMBOL vmlinux 0xfd837ab6 validate_slab_cache -EXPORT_SYMBOL vmlinux 0xfd9e540d vme_bus_type +EXPORT_SYMBOL vmlinux 0xfd313e3f to_nd_btt +EXPORT_SYMBOL vmlinux 0xfd5c5469 dev_uc_sync_multiple +EXPORT_SYMBOL vmlinux 0xfd6f9c7d alloc_file_pseudo +EXPORT_SYMBOL vmlinux 0xfd7202d0 devfreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0xfd72654a kill_pid EXPORT_SYMBOL vmlinux 0xfda9581f prandom_u32 -EXPORT_SYMBOL vmlinux 0xfdbea170 param_set_ushort +EXPORT_SYMBOL vmlinux 0xfdb6021b cdev_add +EXPORT_SYMBOL vmlinux 0xfdcb2aa7 bdi_register EXPORT_SYMBOL vmlinux 0xfdcc8a0e fb_find_best_display -EXPORT_SYMBOL vmlinux 0xfdd15828 dget_parent -EXPORT_SYMBOL vmlinux 0xfde21eb0 d_move -EXPORT_SYMBOL vmlinux 0xfde86782 __sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0xfdda1601 dma_map_page_attrs +EXPORT_SYMBOL vmlinux 0xfddbbac2 vfs_unlink +EXPORT_SYMBOL vmlinux 0xfdeee04c d_lookup EXPORT_SYMBOL vmlinux 0xfdf4cff0 neigh_proc_dointvec_jiffies EXPORT_SYMBOL vmlinux 0xfdff94e0 ZSTD_initDStream EXPORT_SYMBOL vmlinux 0xfe029963 unregister_inetaddr_notifier -EXPORT_SYMBOL vmlinux 0xfe0f2919 dma_resv_copy_fences +EXPORT_SYMBOL vmlinux 0xfe0ce15f inode_insert5 +EXPORT_SYMBOL vmlinux 0xfe1533b4 pci_pme_active EXPORT_SYMBOL vmlinux 0xfe171764 ioremap_page -EXPORT_SYMBOL vmlinux 0xfe1c112f inet_csk_reset_keepalive_timer -EXPORT_SYMBOL vmlinux 0xfe211a45 backlight_device_unregister +EXPORT_SYMBOL vmlinux 0xfe2f9265 reuseport_detach_prog +EXPORT_SYMBOL vmlinux 0xfe301b83 bpf_prog_get_type_path +EXPORT_SYMBOL vmlinux 0xfe3244b1 iget_failed +EXPORT_SYMBOL vmlinux 0xfe3368f8 phy_do_ioctl_running EXPORT_SYMBOL vmlinux 0xfe41829c xa_store_range EXPORT_SYMBOL vmlinux 0xfe487975 init_wait_entry EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz -EXPORT_SYMBOL vmlinux 0xfe698fba blk_rq_append_bio -EXPORT_SYMBOL vmlinux 0xfe732336 locks_remove_posix -EXPORT_SYMBOL vmlinux 0xfe87ccc0 inet_add_offload +EXPORT_SYMBOL vmlinux 0xfe64f848 of_match_device +EXPORT_SYMBOL vmlinux 0xfe682c84 __inet_hash EXPORT_SYMBOL vmlinux 0xfe90c4a6 _find_first_zero_bit_le +EXPORT_SYMBOL vmlinux 0xfeb2876c genphy_config_eee_advert EXPORT_SYMBOL vmlinux 0xfeb5d0aa verify_spi_info -EXPORT_SYMBOL vmlinux 0xfeb7684b filemap_page_mkwrite -EXPORT_SYMBOL vmlinux 0xfebeeb33 mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0xfec541b7 inet_csk_complete_hashdance +EXPORT_SYMBOL vmlinux 0xfed0ad5e vlan_ioctl_set +EXPORT_SYMBOL vmlinux 0xfedc040a pcim_pin_device EXPORT_SYMBOL vmlinux 0xfedcdb60 seq_hlist_next_percpu -EXPORT_SYMBOL vmlinux 0xfee252b5 security_sb_clone_mnt_opts -EXPORT_SYMBOL vmlinux 0xfee2d275 dma_resv_add_shared_fence -EXPORT_SYMBOL vmlinux 0xfee4f9f2 mr_vif_seq_next -EXPORT_SYMBOL vmlinux 0xfee576c1 zpool_register_driver -EXPORT_SYMBOL vmlinux 0xfeea21f0 dquot_mark_dquot_dirty -EXPORT_SYMBOL vmlinux 0xfef2dc82 would_dump -EXPORT_SYMBOL vmlinux 0xfefa35bb devm_pci_remap_iospace +EXPORT_SYMBOL vmlinux 0xfef282c5 cros_ec_query_all EXPORT_SYMBOL vmlinux 0xfefcb98e vme_dma_vme_attribute +EXPORT_SYMBOL vmlinux 0xff00b2c2 blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0xff02d884 submit_bh EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start EXPORT_SYMBOL vmlinux 0xff282521 rfkill_register -EXPORT_SYMBOL vmlinux 0xff2a87dd submit_bh -EXPORT_SYMBOL vmlinux 0xff3128f2 md_check_no_bitmap +EXPORT_SYMBOL vmlinux 0xff35d72c fb_pan_display EXPORT_SYMBOL vmlinux 0xff4351b0 ecc_sw_hamming_calculate -EXPORT_SYMBOL vmlinux 0xff49c969 tcp_prot -EXPORT_SYMBOL vmlinux 0xff542817 qdisc_hash_add -EXPORT_SYMBOL vmlinux 0xff559461 rproc_elf_load_segments +EXPORT_SYMBOL vmlinux 0xff5eb513 nand_ecc_finish_io_req +EXPORT_SYMBOL vmlinux 0xff600bfd skb_kill_datagram EXPORT_SYMBOL vmlinux 0xff6104d0 snd_pcm_rate_bit_to_rate -EXPORT_SYMBOL vmlinux 0xff6677e7 sock_set_priority +EXPORT_SYMBOL vmlinux 0xff653e5f phy_attached_print EXPORT_SYMBOL vmlinux 0xff67b37f __lshrdi3 EXPORT_SYMBOL vmlinux 0xff6878cf fb_default_cmap -EXPORT_SYMBOL vmlinux 0xff6bfd1d vme_irq_request -EXPORT_SYMBOL vmlinux 0xff816c39 mpage_writepages EXPORT_SYMBOL vmlinux 0xff8c2e5a radix_tree_tag_get -EXPORT_SYMBOL vmlinux 0xff92ea51 inet6_add_protocol EXPORT_SYMBOL vmlinux 0xff9610ee qcom_scm_assign_mem EXPORT_SYMBOL vmlinux 0xff996450 gen_pool_virt_to_phys -EXPORT_SYMBOL vmlinux 0xff9c092f netdev_next_lower_dev_rcu -EXPORT_SYMBOL vmlinux 0xffb528dd of_graph_get_port_by_id -EXPORT_SYMBOL vmlinux 0xffb5ed55 mmc_can_trim +EXPORT_SYMBOL vmlinux 0xff99f274 ip_cmsg_recv_offset EXPORT_SYMBOL vmlinux 0xffb94ef0 _test_and_change_bit -EXPORT_SYMBOL vmlinux 0xffc6bd4a snd_pcm_lib_ioctl -EXPORT_SYMBOL vmlinux 0xffc9c75e inet6_bind +EXPORT_SYMBOL vmlinux 0xffc01654 scsi_remove_target +EXPORT_SYMBOL vmlinux 0xffc5efa2 blk_sync_queue EXPORT_SYMBOL vmlinux 0xffcc4ec7 tcp_bpf_bypass_getsockopt -EXPORT_SYMBOL vmlinux 0xffd369ff generic_file_open +EXPORT_SYMBOL vmlinux 0xffe4c3ac pps_unregister_source EXPORT_SYMBOL vmlinux 0xffeedf6a delayed_work_timer_fn EXPORT_SYMBOL vmlinux 0xfff2399e unload_nls -EXPORT_SYMBOL vmlinux 0xfffe1aa0 security_inode_listsecurity EXPORT_SYMBOL_GPL arch/arm/crypto/sha1-arm 0x86a6aef8 sha1_update_arm EXPORT_SYMBOL_GPL arch/arm/crypto/sha1-arm 0xca8d08b0 sha1_finup_arm -EXPORT_SYMBOL_GPL crypto/af_alg 0x112f7f29 af_alg_alloc_areq -EXPORT_SYMBOL_GPL crypto/af_alg 0x1dea9d94 af_alg_release -EXPORT_SYMBOL_GPL crypto/af_alg 0x2ced982c af_alg_async_cb -EXPORT_SYMBOL_GPL crypto/af_alg 0x33f3eec0 af_alg_release_parent -EXPORT_SYMBOL_GPL crypto/af_alg 0x3718e4a6 af_alg_pull_tsgl -EXPORT_SYMBOL_GPL crypto/af_alg 0x37f58f44 af_alg_free_sg -EXPORT_SYMBOL_GPL crypto/af_alg 0x437ca4fb af_alg_count_tsgl -EXPORT_SYMBOL_GPL crypto/af_alg 0x731a271f af_alg_sendpage -EXPORT_SYMBOL_GPL crypto/af_alg 0x7ee12655 af_alg_register_type -EXPORT_SYMBOL_GPL crypto/af_alg 0x8a00552f af_alg_unregister_type -EXPORT_SYMBOL_GPL crypto/af_alg 0x8c5f1b9c af_alg_free_resources -EXPORT_SYMBOL_GPL crypto/af_alg 0xa3f4c34b af_alg_wait_for_data -EXPORT_SYMBOL_GPL crypto/af_alg 0xb32c2e26 af_alg_wmem_wakeup -EXPORT_SYMBOL_GPL crypto/af_alg 0xca0d077d af_alg_make_sg -EXPORT_SYMBOL_GPL crypto/af_alg 0xe6d7fe6c af_alg_sendmsg -EXPORT_SYMBOL_GPL crypto/af_alg 0xebac9a5c af_alg_poll -EXPORT_SYMBOL_GPL crypto/af_alg 0xf7ec7c20 af_alg_accept -EXPORT_SYMBOL_GPL crypto/af_alg 0xfe12956d af_alg_get_rsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0x07ed73ea af_alg_count_tsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0x08fcca29 af_alg_make_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x1036c170 af_alg_free_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x1e9c9dff af_alg_free_resources +EXPORT_SYMBOL_GPL crypto/af_alg 0x266ad118 af_alg_get_rsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0x42bcd05b af_alg_sendpage +EXPORT_SYMBOL_GPL crypto/af_alg 0x44543afa af_alg_pull_tsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0x4bc92374 af_alg_wmem_wakeup +EXPORT_SYMBOL_GPL crypto/af_alg 0x640a4e99 af_alg_register_type +EXPORT_SYMBOL_GPL crypto/af_alg 0x74eb65cb af_alg_poll +EXPORT_SYMBOL_GPL crypto/af_alg 0x7d826da9 af_alg_release +EXPORT_SYMBOL_GPL crypto/af_alg 0x7ed82563 af_alg_alloc_areq +EXPORT_SYMBOL_GPL crypto/af_alg 0xa0904e47 af_alg_accept +EXPORT_SYMBOL_GPL crypto/af_alg 0xac21de3c af_alg_release_parent +EXPORT_SYMBOL_GPL crypto/af_alg 0xb6064a89 af_alg_unregister_type +EXPORT_SYMBOL_GPL crypto/af_alg 0xb6b90471 af_alg_async_cb +EXPORT_SYMBOL_GPL crypto/af_alg 0xb6f3f44d af_alg_wait_for_data +EXPORT_SYMBOL_GPL crypto/af_alg 0xdf8de6c6 af_alg_sendmsg EXPORT_SYMBOL_GPL crypto/asymmetric_keys/asym_tpm 0x7430f97c tpm_key_create -EXPORT_SYMBOL_GPL crypto/asymmetric_keys/asym_tpm 0xf8af28d8 asym_tpm_subtype -EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0xcbbd9088 async_memcpy -EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x54bbdc8e async_gen_syndrome -EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0xed0964ea async_syndrome_val -EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0xd99bd2a1 async_raid6_datap_recov -EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0xeb6d4fd5 async_raid6_2data_recov -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x1dcdb377 async_tx_quiesce -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x4923c4f9 async_tx_submit -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x7afcc80b async_trigger_callback -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xbcc18450 __async_tx_find_channel -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x315b4d29 async_xor_val_offs -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x6ca8384a async_xor_offs -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x7fcfbe3a async_xor -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xb6c11b4d async_xor_val +EXPORT_SYMBOL_GPL crypto/asymmetric_keys/asym_tpm 0x785791f7 asym_tpm_subtype +EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0xbf0b8f0f async_memcpy +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x85a955a1 async_gen_syndrome +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0xeec0e8f3 async_syndrome_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x57594607 async_raid6_2data_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x9e6e970e async_raid6_datap_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x01706b2e async_tx_submit +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x780b3317 async_tx_quiesce +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xb714d4ae async_trigger_callback +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xb9dd4180 __async_tx_find_channel +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x1426e237 async_xor +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x6b5ee78f async_xor_offs +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x810b966e async_xor_val_offs +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x912f98df async_xor_val EXPORT_SYMBOL_GPL crypto/authenc 0x2479193e crypto_authenc_extractkeys -EXPORT_SYMBOL_GPL crypto/blowfish_common 0x3c5fa5ca blowfish_setkey +EXPORT_SYMBOL_GPL crypto/blowfish_common 0xd1da778a blowfish_setkey EXPORT_SYMBOL_GPL crypto/cast5_generic 0x188d9d26 __cast5_decrypt EXPORT_SYMBOL_GPL crypto/cast5_generic 0x97060629 cast5_setkey EXPORT_SYMBOL_GPL crypto/cast5_generic 0xef81a4af __cast5_encrypt @@ -11478,42 +11486,42 @@ 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 0x03f8ce53 cryptd_free_aead -EXPORT_SYMBOL_GPL crypto/cryptd 0x11fa170d cryptd_alloc_ahash -EXPORT_SYMBOL_GPL crypto/cryptd 0x189f1fe3 cryptd_ahash_child -EXPORT_SYMBOL_GPL crypto/cryptd 0x2b423d11 cryptd_alloc_aead -EXPORT_SYMBOL_GPL crypto/cryptd 0x3f0ea0ff cryptd_free_skcipher -EXPORT_SYMBOL_GPL crypto/cryptd 0x4c3c3489 cryptd_aead_child -EXPORT_SYMBOL_GPL crypto/cryptd 0x648f8407 cryptd_skcipher_child -EXPORT_SYMBOL_GPL crypto/cryptd 0x82109d2a cryptd_ahash_queued -EXPORT_SYMBOL_GPL crypto/cryptd 0x827a717e cryptd_alloc_skcipher -EXPORT_SYMBOL_GPL crypto/cryptd 0xd62b6689 cryptd_skcipher_queued -EXPORT_SYMBOL_GPL crypto/cryptd 0xf3adb789 cryptd_free_ahash -EXPORT_SYMBOL_GPL crypto/cryptd 0xf44b283f cryptd_shash_desc -EXPORT_SYMBOL_GPL crypto/cryptd 0xf83d1d98 cryptd_aead_queued -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x0ff0d454 crypto_transfer_aead_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x2917ca8d crypto_finalize_akcipher_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x393604b2 crypto_transfer_akcipher_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x3a76c2d2 crypto_engine_alloc_init_and_set -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x3c04eee3 crypto_finalize_skcipher_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x66f47429 crypto_finalize_hash_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x83cdc05c crypto_engine_alloc_init -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x8da5c6d5 crypto_engine_exit -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x995c8552 crypto_engine_start -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x9c4746ce crypto_transfer_skcipher_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xa5bb46c3 crypto_finalize_aead_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xebfcc88f crypto_engine_stop -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xfae49f64 crypto_transfer_hash_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_simd 0x2a3470ce simd_unregister_aeads -EXPORT_SYMBOL_GPL crypto/crypto_simd 0x398a4592 simd_register_skciphers_compat -EXPORT_SYMBOL_GPL crypto/crypto_simd 0x3d0c1966 simd_unregister_skciphers +EXPORT_SYMBOL_GPL crypto/cryptd 0x41eada21 cryptd_free_skcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0x443407d0 cryptd_free_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0x480e236d cryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0x49c46b34 cryptd_aead_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0x9b2d48a6 cryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/cryptd 0x9e22d6d9 cryptd_alloc_skcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0xa1ad4b5e cryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0xb363754b cryptd_skcipher_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0xd4be5e63 cryptd_skcipher_child +EXPORT_SYMBOL_GPL crypto/cryptd 0xdb72c8fc cryptd_alloc_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0xe7b13653 cryptd_ahash_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0xebb0fd7d cryptd_aead_child +EXPORT_SYMBOL_GPL crypto/cryptd 0xf5f439de cryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x07744692 crypto_transfer_hash_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x18e2c074 crypto_engine_alloc_init +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x2c7d68a4 crypto_transfer_akcipher_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x3c3c9188 crypto_transfer_skcipher_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x3d5f8513 crypto_finalize_skcipher_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x3d6b485c crypto_engine_exit +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x483d4150 crypto_engine_alloc_init_and_set +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x73307e97 crypto_finalize_akcipher_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x80266379 crypto_finalize_hash_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x9fedcf53 crypto_transfer_aead_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xa79b5440 crypto_finalize_aead_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xb9aaa9d9 crypto_engine_start +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xca2a9310 crypto_engine_stop +EXPORT_SYMBOL_GPL crypto/crypto_simd 0x4a85465f simd_register_skciphers_compat EXPORT_SYMBOL_GPL crypto/crypto_simd 0x504cb053 simd_aead_create_compat EXPORT_SYMBOL_GPL crypto/crypto_simd 0x66983e96 simd_skcipher_create EXPORT_SYMBOL_GPL crypto/crypto_simd 0x851c747c simd_aead_create EXPORT_SYMBOL_GPL crypto/crypto_simd 0x88638552 simd_skcipher_create_compat +EXPORT_SYMBOL_GPL crypto/crypto_simd 0x8fcb0ab5 simd_register_aeads_compat +EXPORT_SYMBOL_GPL crypto/crypto_simd 0x9297b9ab simd_unregister_aeads EXPORT_SYMBOL_GPL crypto/crypto_simd 0xbfd26f15 simd_aead_free -EXPORT_SYMBOL_GPL crypto/crypto_simd 0xcd582efa simd_register_aeads_compat EXPORT_SYMBOL_GPL crypto/crypto_simd 0xefe73979 simd_skcipher_free +EXPORT_SYMBOL_GPL crypto/crypto_simd 0xf6e1e88a 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 @@ -11524,8 +11532,39 @@ EXPORT_SYMBOL_GPL crypto/sm3_generic 0x0bddca87 sm3_zero_message_hash EXPORT_SYMBOL_GPL crypto/twofish_common 0xe22b7787 __twofish_setkey EXPORT_SYMBOL_GPL crypto/twofish_common 0xf1ced2f3 twofish_setkey -EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0xed67bdda __pata_platform_probe -EXPORT_SYMBOL_GPL drivers/ata/pata_sis 0xe37a75cc sis_info133_for_sata +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x1a7296eb spk_synth_flush +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x1bae1e0a spk_synth_is_alive_restart +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x1e39eb14 synth_putws +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x26aad434 spk_ttyio_synth_immediate +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x2e7e21d7 speakup_event +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x41a160e5 synth_buffer_empty +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x4449e1dd synth_buffer_clear +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x466f5eb7 synth_putwc +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x4fd0a240 spk_var_show +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x5ab3f935 spk_ttyio_synth_probe +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x6876a665 spk_synth_get_index +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x76d40046 synth_buffer_skip_nonlatin1 +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x77b3f92b synth_current +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x7a0f09d5 synth_remove +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x8181ceec speakup_info +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x84dad068 synth_buffer_getc +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x8c82dfca synth_request_region +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x8fe0db01 synth_putwc_s +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xa2abbd30 spk_synth_is_alive_nop +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xaadb0612 synth_buffer_peek +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xb28a3479 spk_ttyio_ops +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xb810a62d synth_add +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 0xc6a06d16 spk_get_var +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xca2d93b5 spk_var_store +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xcc1e700a spk_ttyio_release +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xd09425a0 spk_do_catch_up +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xd8fd86cf synth_release_region +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xe194d0ef synth_printf +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xe60186c9 spk_do_catch_up_unicode +EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0x539bc505 __pata_platform_probe +EXPORT_SYMBOL_GPL drivers/ata/pata_sis 0xca3d9f97 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 @@ -11553,134 +11592,134 @@ EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xbf4774db ks0108_writecontrol EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xedde6df2 ks0108_page EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xfee8ef7b ks0108_address -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-i3c 0x4f9b38a6 __devm_regmap_init_i3c -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0x5155da42 __regmap_init_sccb -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0xd7f76da4 __devm_regmap_init_sccb -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw 0x7e89c3a9 __regmap_init_sdw -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw 0xb3f37134 __devm_regmap_init_sdw -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw-mbq 0x4e7a50c3 __devm_regmap_init_sdw_mbq -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw-mbq 0xf78f6cb5 __regmap_init_sdw_mbq -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0x836f571c __regmap_init_slimbus -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0xe23d7bbf __devm_regmap_init_slimbus -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spi-avmm 0x42297fb8 __devm_regmap_init_spi_avmm -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spi-avmm 0xd99cd554 __regmap_init_spi_avmm -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x0a4c1bb4 __devm_regmap_init_spmi_base -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x39c4fb77 __regmap_init_spmi_ext -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x9f674cb0 __regmap_init_spmi_base -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xadd97dbf __devm_regmap_init_spmi_ext -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0x6ca9e342 __regmap_init_w1 -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0x9b7cca55 __devm_regmap_init_w1 -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x0298d0e4 bcma_host_pci_irq_ctl -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x08b1ebbe bcma_chipco_gpio_out -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x12c4fd27 __bcma_driver_register -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x20986cfe bcma_core_disable -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x218fcd2e bcma_host_pci_down -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x344b0b81 bcma_core_pll_ctl -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x38190d81 bcma_core_is_enabled -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x3ef5b121 bcma_chipco_b_mii_write -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x4297432e bcma_driver_unregister -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x45a1d180 bcma_find_core_unit -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x490c00a4 bcma_pmu_spuravoid_pllupdate -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x5002c9e1 bcma_chipco_pll_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x55ed8f19 bcma_chipco_chipctl_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x5db48472 bcma_chipco_gpio_outen -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x6d237b31 bcma_host_pci_up -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x91c49811 bcma_chipco_get_alp_clock -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x91c94a95 bcma_pmu_get_bus_clock -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x96261b20 bcma_core_set_clockmode -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x9bc6dda4 bcma_chipco_pll_read -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x9e900f1f bcma_core_pci_power_save -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa5d72a33 bcma_chipco_regctl_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa7076083 bcma_chipco_pll_write -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xb784a5ea bcma_chipco_gpio_control -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc75520c6 bcma_core_enable -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x3e25aece btbcm_setup_apple -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x5cd2ea12 btbcm_initialize -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x611ffa37 btbcm_setup_patchram -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x7acbc435 btbcm_finalize -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x90af8a34 btbcm_read_pcm_int_params -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xc2d0b637 btbcm_check_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xc64b5c52 btbcm_write_pcm_int_params -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xfeea576e btbcm_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x0b6ba39a btintel_download_firmware -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x1298d9e3 btintel_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x17bcae70 btintel_read_version -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x2310383b btintel_enter_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x298817e1 btintel_set_diag -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x5788a5aa btintel_check_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x5cbe6db8 btintel_version_info -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x7622316d btintel_regmap_init -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x7bbf5572 btintel_set_event_mask_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x805af090 btintel_secure_send_result -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x80a36479 btintel_load_ddc_config -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xbc37addb btintel_configure_setup -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xc6a98aa4 btintel_read_boot_params -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xe1be2923 btintel_bootup -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xeed3bc7f btintel_exit_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xfbbe4975 btintel_send_intel_reset -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x0a442712 btmrvl_add_card -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x2831ce07 btmrvl_remove_card -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x371504c8 btmrvl_interrupt -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x4cc02e1b btmrvl_enable_hs -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x52a09342 btmrvl_process_event -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x7f848aaa btmrvl_pscan_window_reporting -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x8e605f75 btmrvl_register_hdev -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x8f81a5fe btmrvl_enable_ps -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xaf0fa8c8 btmrvl_send_module_cfg_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xd40e7931 btmrvl_send_hscfg_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xddc462cf btmrvl_check_evtpkt -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x2cde1286 qca_uart_setup -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x4f41c8c1 qca_set_bdaddr_rome -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x81ec90f7 qca_send_pre_shutdown_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xd64cf30d qca_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xf1310aca qca_read_soc_version -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x1621fc50 btrtl_download_firmware -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x4469cf6f btrtl_setup_realtek -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x4d747c03 btrtl_shutdown_realtek -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x638e64a4 btrtl_set_quirks +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-i3c 0x65635a23 __devm_regmap_init_i3c +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0x2ca2e6ba __devm_regmap_init_sccb +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0x7c8c5476 __regmap_init_sccb +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw 0x4ec0127d __devm_regmap_init_sdw +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw 0x6754cc8b __regmap_init_sdw +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw-mbq 0xa6155faf __regmap_init_sdw_mbq +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw-mbq 0xd590d99c __devm_regmap_init_sdw_mbq +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0xae3ea10d __devm_regmap_init_slimbus +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0xd82b0834 __regmap_init_slimbus +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spi-avmm 0xbb49718e __devm_regmap_init_spi_avmm +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spi-avmm 0xf63ab1de __regmap_init_spi_avmm +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x16be5d42 __regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x9df4e4cd __devm_regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xd1725cf8 __regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xf9163663 __devm_regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0x368d8eb6 __regmap_init_w1 +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0x909448f4 __devm_regmap_init_w1 +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x023d486d bcma_chipco_pll_read +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x1434d266 bcma_host_pci_down +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x1b726019 bcma_chipco_b_mii_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x1fb0d606 bcma_core_pll_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x33c3714e bcma_driver_unregister +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x4efa526c bcma_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x502f7756 bcma_core_disable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x5815e658 bcma_core_enable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x5ae0aa36 bcma_chipco_pll_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x5b973333 bcma_core_pci_power_save +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x607dfdf7 bcma_host_pci_irq_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7601feb5 bcma_host_pci_up +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7d83d31a bcma_pmu_get_bus_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x84daab0c bcma_chipco_regctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x8549b56b bcma_find_core_unit +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa3f8fc16 bcma_chipco_get_alp_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc47cc48a bcma_core_is_enabled +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd34b455d bcma_chipco_gpio_outen +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd77cffd5 bcma_chipco_gpio_out +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe54a5270 bcma_chipco_pll_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf2b26ca3 bcma_chipco_gpio_control +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf82056be __bcma_driver_register +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xfc4cce2f bcma_core_set_clockmode +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xfcfecb67 bcma_chipco_chipctl_maskset +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x295ff062 btbcm_finalize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x30502386 btbcm_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x3d1ed8b9 btbcm_setup_patchram +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x7b876fb2 btbcm_read_pcm_int_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xbb3d47f5 btbcm_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xc2265feb btbcm_write_pcm_int_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xe5511a90 btbcm_setup_apple +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xf8ca0e6f btbcm_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x42545a7f btintel_regmap_init +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x5e931435 btintel_enter_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x635175fd btintel_set_event_mask_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x67a4e766 btintel_read_boot_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x68ac92ca btintel_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x7d33b32d btintel_set_diag +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x80221921 btintel_load_ddc_config +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x84b964a0 btintel_version_info +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x9dc0ba25 btintel_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xa51735af btintel_download_firmware +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xc0e2fd39 btintel_exit_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xd348c412 btintel_configure_setup +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xe3c24371 btintel_send_intel_reset +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xea0ed557 btintel_bootup +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xec21703b btintel_secure_send_result +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xfce9c0cd btintel_read_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x20b45adb btmrvl_enable_hs +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x42f604f7 btmrvl_process_event +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x453756c6 btmrvl_send_hscfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x6ed7e6f5 btmrvl_send_module_cfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x6f03a9b4 btmrvl_remove_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x71adf599 btmrvl_pscan_window_reporting +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x7bf783e8 btmrvl_check_evtpkt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xa6143521 btmrvl_interrupt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xb5e95117 btmrvl_register_hdev +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xc43c8124 btmrvl_add_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xc7821358 btmrvl_enable_ps +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x0bf93d17 qca_uart_setup +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x0c193b67 qca_set_bdaddr_rome +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x84a5db44 qca_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xb93ce0e0 qca_send_pre_shutdown_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xc1a9e6ff qca_read_soc_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x08dc772e btrtl_shutdown_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x19ff69d9 btrtl_download_firmware +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x24dc364b btrtl_get_uart_settings +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x9af8ce01 btrtl_initialize EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xaf78f260 btrtl_free -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xe2863d34 btrtl_get_uart_settings -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xefeae9c2 btrtl_initialize -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x7ff903e6 hci_uart_unregister_device -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0xc7beb325 hci_uart_tx_wakeup -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0xdb5cbc1b hci_uart_register_device -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0xfcf7d924 h4_recv_buf -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x052adab3 mhi_alloc_controller -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x16ef0321 mhi_get_free_desc_count -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x3d1a8112 mhi_download_rddm_image -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x41fc2415 mhi_get_exec_env -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x424fe295 mhi_pm_resume -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x4a61e6b9 mhi_queue_buf -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x5fb628ea mhi_pm_suspend -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x66e2ab20 mhi_get_mhi_state -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x672a0116 mhi_queue_dma -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x70cd75ea mhi_free_controller -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x7d45e29b mhi_power_down -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x83edc0e8 mhi_soc_reset -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x84c79ce1 mhi_prepare_for_power_up -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x857523ce mhi_device_get -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x8755a5b3 mhi_device_put -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x886059f2 mhi_force_rddm_mode -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x8879851b mhi_unprepare_from_transfer -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x8b377c9e mhi_queue_is_full -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x9687ff91 mhi_prepare_for_transfer -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xac6aec29 mhi_queue_skb -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xada00943 mhi_device_get_sync -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xb06859c1 __mhi_driver_register -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xb9684192 mhi_notify -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xc58ef729 mhi_register_controller -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xc9ae4086 mhi_async_power_up -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xdc6d2a43 mhi_unregister_controller -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xe800fce4 mhi_poll -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xf3140aef mhi_driver_unregister -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xf60c6dcf mhi_pm_resume_force -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xfcb79c83 mhi_unprepare_after_power_down -EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x6016c3e4 moxtet_device_read -EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x6c5838c6 __moxtet_register_driver -EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x824b9840 moxtet_device_write -EXPORT_SYMBOL_GPL drivers/bus/moxtet 0xc8daf466 moxtet_device_written +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xbd92d948 btrtl_setup_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xd3ef15c1 btrtl_set_quirks +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x06284ffc hci_uart_unregister_device +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x1939f15d h4_recv_buf +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x3fdde7dd hci_uart_tx_wakeup +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x5d4e0e28 hci_uart_register_device +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x174b22b4 mhi_unprepare_after_power_down +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x19b0e495 mhi_pm_resume +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x259bfd10 mhi_unregister_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x25c9ad95 mhi_unprepare_from_transfer +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x29d2bedf mhi_force_rddm_mode +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x3d73e2c2 mhi_soc_reset +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x456b7c4b mhi_queue_dma +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x4cbacf07 mhi_prepare_for_transfer +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x66e4c06f mhi_power_down +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x6aa3f8ec __mhi_driver_register +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x6ddfd299 mhi_prepare_for_power_up +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x8e263704 mhi_driver_unregister +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x9c76d978 mhi_queue_is_full +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x9d8b5b6e mhi_get_exec_env +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xa907c2fb mhi_free_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xabafde95 mhi_get_free_desc_count +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xac14f08c mhi_register_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xac5b7d23 mhi_alloc_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xc2208014 mhi_pm_resume_force +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xd19616d0 mhi_notify +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xd326b7b1 mhi_queue_skb +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xd61a1956 mhi_poll +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xd8cc4d71 mhi_device_get +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xdb19ac6c mhi_download_rddm_image +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xe7ae3047 mhi_async_power_up +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xf4d74af4 mhi_get_mhi_state +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xf732eaa4 mhi_device_put +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xfb3acc53 mhi_queue_buf +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xfb6e1fa0 mhi_pm_suspend +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xfe5653da mhi_device_get_sync +EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x2c59cad0 __moxtet_register_driver +EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x501c1ce7 moxtet_device_written +EXPORT_SYMBOL_GPL drivers/bus/moxtet 0xa742f9a2 moxtet_device_read +EXPORT_SYMBOL_GPL drivers/bus/moxtet 0xc7f8f7b9 moxtet_device_write EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x0000139e clk_alpha_pll_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x054e6467 devm_clk_register_regmap +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x0145c75f devm_clk_register_regmap EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x08f0cc30 clk_is_enabled_regmap EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x0d10c3c4 clk_enable_regmap EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x0d678ab9 qcom_reset_ops @@ -11690,14 +11729,14 @@ EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x183be5e6 clk_alpha_pll_agera_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x1a142e7c clk_alpha_pll_fixed_trion_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x272f3204 clk_alpha_pll_fixed_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x28c76db3 qcom_cc_register_board_clk EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x2a9c7452 clk_rcg_lcc_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x2b0d957d clk_pixel_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x2cae96b3 clk_regmap_div_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x30bbf987 clk_rcg2_shared_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x30c38d18 qcom_cc_register_sleep_clk EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x310b6341 clk_regmap_mux_closest_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x349bc6fd qcom_cc_probe EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x3747af55 clk_rcg_bypass2_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x375997de qcom_cc_register_sleep_clk EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x395868a1 qcom_find_freq_floor EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x3b15a709 clk_alpha_pll_configure EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x3dfc2dc5 clk_branch_simple_ops @@ -11707,7 +11746,6 @@ EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x5111f2ad clk_rcg2_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x520df3b7 clk_rcg_esc_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x57172323 clk_byte_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x5c5a1dd1 qcom_cc_really_probe EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x5e6abb22 mux_div_set_src_div EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x615dbb77 clk_branch2_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x631939a9 clk_branch2_aon_ops @@ -11717,7 +11755,6 @@ EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x6af41b8b qcom_pll_set_fsm_mode EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x6c069db2 qcom_find_src_index EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7019378d clk_pll_configure_sr_hpm_lp -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7259dfe7 gdsc_gx_do_nothing_enable EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x766e9f87 clk_regmap_div_ro_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x787e8234 qcom_find_freq EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x78b81ea0 clk_rcg2_floor_ops @@ -11732,10 +11769,11 @@ EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x9e6c0ae7 clk_trion_pll_configure EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x9f1bf2e0 clk_alpha_pll_trion_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x9f241baa clk_rcg_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xa2fdca79 gdsc_gx_do_nothing_enable EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xa6bad98b clk_agera_pll_configure -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xa955c31c qcom_cc_register_board_clk EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xaa403ee8 clk_alpha_pll_huayra_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xadc2751b clk_alpha_pll_postdiv_fabia_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xaf5a968d qcom_cc_probe_by_index EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xb89539c7 clk_zonda_pll_configure EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xba961aa7 clk_dp_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xbb920a84 qcom_find_cfg_index @@ -11746,111 +11784,112 @@ EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xcf422970 clk_rcg_bypass_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xd3135b41 qcom_cc_register_rcg_dfs EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xd438c1c3 clk_alpha_pll_postdiv_trion_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xd5ba81ac qcom_cc_probe_by_index EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xd7ab6782 clk_alpha_pll_postdiv_lucid_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xe1cbccd3 qcom_cc_probe +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xe5b66984 qcom_cc_map EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xe6e14638 clk_alpha_pll_fabia_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xe816a036 clk_pll_configure_sr -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xf3e08a1d qcom_cc_map -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x0c42d980 comedi_timeout +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xfadf7d50 qcom_cc_really_probe +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x09c8d3f8 comedi_buf_read_free EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x0cd330f4 range_unknown -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x12c65f4a comedi_driver_register -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x1b341e32 comedi_bytes_per_scan -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x1d6ed4e3 comedi_legacy_detach +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x1956fca9 comedi_inc_scan_progress +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x2109a24d comedi_set_spriv_auto_free EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x21102f87 range_0_32mA -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x2291d7f8 comedi_handle_events -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x288e1ce9 comedi_auto_config -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x2be785d6 comedi_dio_update_state -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x2e2c7ef5 comedi_nsamples_left +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x2e271e1f comedi_auto_config EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x2f0ad9d3 range_bipolar5 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x3b79f2f2 comedi_dio_insn_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x37fe4c14 comedi_bytes_per_scan EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4236eaaf range_4_20mA -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4e09cccb comedi_alloc_subdevices +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x458997f0 comedi_set_hw_dev +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4b17165e comedi_load_firmware +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4c1b595b comedi_buf_read_n_available EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4fe634f3 range_bipolar2_5 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x5d5c1c0b comedi_is_subdevice_running -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x5ddfab5a comedi_event -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x63903558 comedi_nscans_left -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x67af4d6c comedi_buf_read_free -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x6f37ff05 comedi_dev_put -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x6fd641ee comedi_buf_write_samples -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x729d388c __comedi_request_region -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x7b97bb1f comedi_inc_scan_progress +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x51a2e50e comedi_driver_register +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x561dcd92 comedi_alloc_devpriv +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x5fff9e3a comedi_buf_write_free +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x662444f9 comedi_legacy_detach +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x687fae2a comedi_timeout +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x741b2fce comedi_alloc_spriv EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x8113872c range_unipolar10 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x884978e0 comedi_set_spriv_auto_free -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x8dfe8f69 comedi_buf_read_samples -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x91e4e84e comedi_set_hw_dev -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x9e1e8c8e comedi_request_region -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x9e626a51 comedi_alloc_subdev_readback -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xa5152eda comedi_check_chanlist -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xa974d0fe comedi_alloc_devpriv -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xa9bc03d4 comedi_alloc_spriv -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xb37db17e comedi_driver_unregister -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xb5aaff3e comedi_buf_write_alloc +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x82ac883d comedi_handle_events +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x84d95cd1 comedi_request_region +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x858e0dda comedi_check_chanlist +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x8c36593e comedi_is_subdevice_running +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x96baefe3 comedi_readback_insn_read +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x993bf57f comedi_alloc_subdev_readback +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x9aaaf4b4 comedi_alloc_subdevices +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x9e18c96b comedi_buf_read_samples +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xa1919491 __comedi_request_region +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xa1cb9c1c comedi_buf_write_samples +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xb0550247 comedi_dev_get_from_minor +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xb3f5b812 comedi_driver_unregister EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xb679cebc range_0_20mA EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xbb52fc7f range_bipolar10 +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xbc397d68 comedi_buf_write_alloc EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xbdbe75c6 range_unipolar2_5 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xc90c33d3 comedi_buf_write_free -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xcce439c7 comedi_readback_insn_read -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xd115ad7d comedi_dev_get_from_minor +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xc905e9b9 comedi_buf_read_alloc +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xce09ab41 comedi_dev_put +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xd441715f comedi_dio_insn_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xd75fef5a comedi_dio_update_state EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xdb2044b2 range_unipolar5 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xdc03c9d4 comedi_auto_unconfig -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xddf9da7d comedi_bytes_per_scan_cmd -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xe39f96ab comedi_buf_read_n_available -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xeedaf25d comedi_buf_read_alloc -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xf38bf39e comedi_load_firmware -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x6cf22f88 comedi_pci_detach -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x8d7e6d41 comedi_pci_auto_config -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x8f9c4d1f comedi_pci_driver_unregister -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xaee57d8e comedi_pci_auto_unconfig -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xbc8ba530 comedi_pci_driver_register -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xdcd44684 comedi_to_pci_dev -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xdf284fc9 comedi_pci_enable -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xf1aa239c comedi_pci_disable -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x168b922e comedi_usb_driver_unregister -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x2d988480 comedi_usb_driver_register -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x58a165e8 comedi_to_usb_dev -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0xcc7f9e2c comedi_usb_auto_unconfig -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0xe3a79024 comedi_to_usb_interface -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0xf27c4fd8 comedi_usb_auto_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xe8575af8 comedi_nsamples_left +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xeae63951 comedi_nscans_left +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xf6569414 comedi_bytes_per_scan_cmd +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xfd5d5eea comedi_auto_unconfig +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xfe13da5a comedi_event +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x0a3f308b comedi_to_pci_dev +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x575a6cb1 comedi_pci_detach +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x5d61528d comedi_pci_driver_unregister +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x7b04af40 comedi_pci_driver_register +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xa2c8f2f3 comedi_pci_disable +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xab54030e comedi_pci_enable +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xb80a6948 comedi_pci_auto_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xedae3043 comedi_pci_auto_unconfig +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x2ea43593 comedi_usb_driver_unregister +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x5e72d66e comedi_to_usb_dev +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x8fec4b89 comedi_usb_auto_unconfig +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0xd5255b2b comedi_to_usb_interface +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0xd71b4989 comedi_usb_auto_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0xe24c7f9f comedi_usb_driver_register +EXPORT_SYMBOL_GPL drivers/comedi/drivers/addi_watchdog 0x6c3830bc addi_watchdog_init EXPORT_SYMBOL_GPL drivers/comedi/drivers/addi_watchdog 0x79f4a6cf addi_watchdog_reset -EXPORT_SYMBOL_GPL drivers/comedi/drivers/addi_watchdog 0xd404a448 addi_watchdog_init -EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_dio200_common 0xc47269e1 amplc_dio200_set_enhance -EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_dio200_common 0xd85737a1 amplc_dio200_common_attach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_pc236_common 0xe8290557 amplc_pc236_common_attach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x1484e217 comedi_8254_set_mode -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x1ab26399 comedi_8254_ns_to_timer -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x25441ea9 comedi_8254_mm_init -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x2cdcbcab comedi_8254_write -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x3bacbd65 comedi_8254_subdevice_init -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x79fa6a07 comedi_8254_pacer_enable -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x97117f86 comedi_8254_cascade_ns_to_timer -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xc7fab555 comedi_8254_init -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xd0cab4dc comedi_8254_load -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xd2ca1a18 comedi_8254_set_busy -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xdaad218f comedi_8254_status -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xdee6313d comedi_8254_read -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xfb3a9a89 comedi_8254_update_divisors -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0x631171f4 subdev_8255_mm_init -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0x883825ba subdev_8255_init -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0xa1fb101b subdev_8255_regbase -EXPORT_SYMBOL_GPL drivers/comedi/drivers/das08 0xbdb978a3 das08_common_attach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x1fd04de0 mite_prep_dma -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x43e1e5b9 mite_detach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x48f687be mite_init_ring_descriptors -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x55f1c71f mite_bytes_in_transit -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x716ff4fd mite_free_ring -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x72cb16a6 mite_attach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x73d7daff mite_dma_arm -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x761ad6fb mite_dma_disarm -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x88956d32 mite_done -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x97bd3f19 mite_request_channel_in_range -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xb8667704 mite_alloc_ring -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xccfa143b mite_release_channel -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xcee55e84 mite_request_channel -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xe4054882 mite_sync_dma -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xf1d7367b mite_ack_linkc -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xff1607d9 mite_buf_change -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_common 0x29782c50 labpc_common_detach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_common 0xee55ee56 labpc_common_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_dio200_common 0x8636205d amplc_dio200_common_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_dio200_common 0xd283a123 amplc_dio200_set_enhance +EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_pc236_common 0x2d46e7fc amplc_pc236_common_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x0f65c625 comedi_8254_cascade_ns_to_timer +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x2b9591a3 comedi_8254_status +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x3dbb99bf comedi_8254_read +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x7eb28e7c comedi_8254_subdevice_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x9c2ca252 comedi_8254_ns_to_timer +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x9ca59ddc comedi_8254_load +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xabcd6368 comedi_8254_update_divisors +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xc18afff8 comedi_8254_write +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xd02ae1d2 comedi_8254_set_mode +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xe76b512d comedi_8254_set_busy +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xf04c800d comedi_8254_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xf1e72e3b comedi_8254_mm_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xf54cb2f7 comedi_8254_pacer_enable +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0x080fc804 subdev_8255_regbase +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0x089bc20c subdev_8255_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0xff5f7592 subdev_8255_mm_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/das08 0xc5346548 das08_common_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x13d1208f mite_free_ring +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x18beda41 mite_buf_change +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x1bbede35 mite_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x32865335 mite_ack_linkc +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x33172198 mite_sync_dma +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x3c3dcbe9 mite_dma_arm +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x40375964 mite_request_channel_in_range +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x6e6c211f mite_alloc_ring +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x72549231 mite_dma_disarm +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x7a002222 mite_init_ring_descriptors +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x839515ac mite_detach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x961cd6c2 mite_done +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xa635cf93 mite_prep_dma +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xaac1ac26 mite_request_channel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xb8bef28e mite_bytes_in_transit +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xba3d537f mite_release_channel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_common 0x10af8059 labpc_common_detach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_common 0x1e97ae7f 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 @@ -11861,184 +11900,184 @@ 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 0x48d3c964 ni_tio_insn_write -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x50bbacb5 ni_tio_set_gate_src_raw -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x654079d9 ni_tio_init_counter -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x73c13c8c ni_tio_write -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x8057fb6b ni_tio_get_routing -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x828ccc67 ni_tio_set_bits -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x835b646e ni_tio_insn_read -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x9a5e0cab ni_gpct_device_destroy -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xac12ff21 ni_tio_insn_config -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xb20a6103 ni_tio_arm -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xb8367357 ni_tio_get_soft_copy -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xbbaebb81 ni_tio_unset_routing -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xe0b452ce ni_tio_set_gate_src -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xee9e0759 ni_tio_read -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xf9aa64fc ni_tio_set_routing -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xfef509a2 ni_gpct_device_construct -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x3702f5c1 ni_tio_set_mite_channel -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x76ad0a44 ni_tio_handle_interrupt -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x7eb8b1b2 ni_tio_cancel -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xe44ba673 ni_tio_cmd -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xe62f689f ni_tio_acknowledge -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xe6c3494b ni_tio_cmdtest -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x0b1128ff comedi_find_subdevice_by_type -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x30ba0a3d comedi_dio_config -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x4aa89c67 comedi_get_n_channels -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x80ad59c1 comedi_close -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xbc4e1e2e comedi_open -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xeec449e0 comedi_dio_bitfield2 -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xf43962ce comedi_dio_get_config +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x0ccaf283 ni_tio_insn_config +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x1cb0dd47 ni_tio_insn_write +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x1ce671a1 ni_tio_write +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x228be2b2 ni_gpct_device_construct +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x6daf625e ni_tio_arm +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x7b5f3a2f ni_gpct_device_destroy +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x93acddda ni_tio_set_gate_src +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xa0ae5e4b ni_tio_get_routing +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xa54581b9 ni_tio_get_soft_copy +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xa6d9072e ni_tio_init_counter +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xb92b460b ni_tio_insn_read +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xb9e8c108 ni_tio_set_gate_src_raw +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xcb6f4c98 ni_tio_set_bits +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xcb85c58e ni_tio_unset_routing +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xe7c7ce56 ni_tio_read +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xea830b13 ni_tio_set_routing +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x3ba8bf3b ni_tio_handle_interrupt +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x6dec7739 ni_tio_cancel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x81b3ed7a ni_tio_set_mite_channel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xc75db38b ni_tio_acknowledge +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xc857846c ni_tio_cmdtest +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xfbc3f554 ni_tio_cmd +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xa3e6375f comedi_open +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xa77724cf comedi_find_subdevice_by_type +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xaa56fc87 comedi_dio_bitfield2 +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xacba7765 comedi_dio_get_config +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xb3e73b22 comedi_get_n_channels +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xb6f47f9b comedi_dio_config +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xc288c74b comedi_close EXPORT_SYMBOL_GPL drivers/counter/counter 0x01aab51b counter_count_direction_str -EXPORT_SYMBOL_GPL drivers/counter/counter 0x15fa50c0 counter_signal_enum_write -EXPORT_SYMBOL_GPL drivers/counter/counter 0x19ae339b counter_device_enum_write -EXPORT_SYMBOL_GPL drivers/counter/counter 0x2a294d5e counter_device_enum_available_read -EXPORT_SYMBOL_GPL drivers/counter/counter 0x48899722 counter_count_enum_write -EXPORT_SYMBOL_GPL drivers/counter/counter 0x5a7d3902 counter_device_enum_read -EXPORT_SYMBOL_GPL drivers/counter/counter 0x6978de89 counter_count_enum_read -EXPORT_SYMBOL_GPL drivers/counter/counter 0x7baa8d1a counter_count_enum_available_read -EXPORT_SYMBOL_GPL drivers/counter/counter 0xa83e090f devm_counter_unregister -EXPORT_SYMBOL_GPL drivers/counter/counter 0xaaea02af devm_counter_register -EXPORT_SYMBOL_GPL drivers/counter/counter 0xb69d7a34 counter_unregister -EXPORT_SYMBOL_GPL drivers/counter/counter 0xba8e8adc counter_register -EXPORT_SYMBOL_GPL drivers/counter/counter 0xe068c46f counter_signal_enum_read +EXPORT_SYMBOL_GPL drivers/counter/counter 0x02b18f56 counter_signal_enum_available_read +EXPORT_SYMBOL_GPL drivers/counter/counter 0x243933aa counter_device_enum_read +EXPORT_SYMBOL_GPL drivers/counter/counter 0x3c3b9867 counter_signal_enum_read +EXPORT_SYMBOL_GPL drivers/counter/counter 0x3c949ad5 counter_count_enum_write +EXPORT_SYMBOL_GPL drivers/counter/counter 0x4000f2b3 devm_counter_unregister +EXPORT_SYMBOL_GPL drivers/counter/counter 0x43b9a33a counter_count_enum_available_read +EXPORT_SYMBOL_GPL drivers/counter/counter 0x60a3bc1c counter_count_enum_read +EXPORT_SYMBOL_GPL drivers/counter/counter 0x72c7de8f counter_device_enum_write +EXPORT_SYMBOL_GPL drivers/counter/counter 0x8aab0a73 counter_unregister +EXPORT_SYMBOL_GPL drivers/counter/counter 0xb136e6fa counter_signal_enum_write +EXPORT_SYMBOL_GPL drivers/counter/counter 0xd83522de devm_counter_register +EXPORT_SYMBOL_GPL drivers/counter/counter 0xdd13f613 counter_device_enum_available_read +EXPORT_SYMBOL_GPL drivers/counter/counter 0xe511e500 counter_register EXPORT_SYMBOL_GPL drivers/counter/counter 0xee526d0f counter_count_mode_str -EXPORT_SYMBOL_GPL drivers/counter/counter 0xfdd39ea6 counter_signal_enum_available_read 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/dax/device_dax 0xd435d53b dev_dax_probe -EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0xb80e89c8 dw_edma_probe -EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0xd2e41317 dw_edma_remove -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x2a6d7fee dw_dma_remove -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x3d7e8f8d dw_dma_probe -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x4b8c92ae dw_dma_filter -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x775776d1 do_dw_dma_disable -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xbb29485b idma32_dma_remove -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xd3d382e1 do_dw_dma_enable -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xe8be3efe idma32_dma_probe -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x040196a0 fsl_edma_slave_config -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x09ae60a3 fsl_edma_resume -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x2331a671 fsl_edma_free_desc -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x28b8485f fsl_edma_chan_mux -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x38b4415b fsl_edma_prep_dma_cyclic -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x3a226233 fsl_edma_terminate_all -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x3d6b385d fsl_edma_pause -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x5f434f5c fsl_edma_prep_slave_sg -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x67e381f5 fsl_edma_setup_regs -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x6a3bebc3 fsl_edma_disable_request -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x8c4dc29d fsl_edma_alloc_chan_resources -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x990305c1 fsl_edma_tx_status -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xb6fcb9e0 fsl_edma_free_chan_resources -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xc479a46b fsl_edma_cleanup_vchan -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xe3950945 fsl_edma_issue_pending -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xf25cf60b fsl_edma_xfer_desc -EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0x00fa75e8 hidma_mgmt_setup -EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0xebeda819 hidma_mgmt_init_sys +EXPORT_SYMBOL_GPL drivers/dax/device_dax 0x5db670bf dev_dax_probe +EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0x53187eb1 dw_edma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0x8bebadb4 dw_edma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x06ce42c0 dw_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x1eac00fb do_dw_dma_enable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x348d8f0e idma32_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x34b53067 dw_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x4fa5a11a dw_dma_filter +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xc07914a9 idma32_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xcc7d1047 do_dw_dma_disable +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x0486b0ae fsl_edma_resume +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x114a5219 fsl_edma_slave_config +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x153dcfc1 fsl_edma_prep_dma_cyclic +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x275bb8ef fsl_edma_chan_mux +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x4a99e5ff fsl_edma_disable_request +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x562f558c fsl_edma_pause +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x722ced2e fsl_edma_issue_pending +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x7801ca47 fsl_edma_xfer_desc +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x7f90fb61 fsl_edma_terminate_all +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x825ff84f fsl_edma_prep_slave_sg +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x9b92c39d fsl_edma_free_desc +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xa0241939 fsl_edma_alloc_chan_resources +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xac0c5b9d fsl_edma_tx_status +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xb1689eb5 fsl_edma_free_chan_resources +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xc43dbae7 fsl_edma_setup_regs +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xd792767d fsl_edma_cleanup_vchan +EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0x473938de hidma_mgmt_setup +EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0xe6033072 hidma_mgmt_init_sys EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0xe86fb5c7 fw_card_release -EXPORT_SYMBOL_GPL drivers/firmware/arm_scpi 0x1984201d get_scpi_ops -EXPORT_SYMBOL_GPL drivers/fpga/altera-pr-ip-core 0x6c5b1a14 alt_pr_register -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x03d7700e dfl_fpga_enum_info_alloc -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x2b83fc10 dfl_fpga_enum_info_add_irq -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x2fc56b31 dfl_fpga_cdev_assign_port -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x30cff8da dfl_fpga_dev_feature_init -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x3cabfba3 dfl_fpga_set_irq_triggers -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x3e0207b5 dfl_fpga_enum_info_free -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x535ec8f6 dfl_fpga_enum_info_add_dfl -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x62186a0e dfl_fpga_cdev_release_port -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x6288aca7 dfl_fpga_port_ops_add -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x6489e97d dfl_fpga_cdev_config_ports_vf -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x6ec85d46 __dfl_fpga_cdev_find_port -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x8546a062 dfl_feature_ioctl_set_irq -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x8df45dc2 dfl_fpga_dev_feature_uinit -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x9b4fe3f1 dfl_fpga_port_ops_del -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xb94a4d93 dfl_feature_ioctl_get_num_irqs -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xc33f1bcc dfl_fpga_port_ops_put -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xc7d75ad9 dfl_fpga_dev_ops_unregister -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xc911a8e5 dfl_fpga_dev_ops_register -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xd303423e dfl_fpga_check_port_id -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xdc48686f dfl_fpga_feature_devs_enumerate -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xdff64d1d dfl_fpga_cdev_config_ports_pf -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xe1c7e3cf dfl_fpga_feature_devs_remove -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xfac1505b dfl_fpga_port_ops_get +EXPORT_SYMBOL_GPL drivers/firmware/arm_scpi 0xeba1c59c get_scpi_ops +EXPORT_SYMBOL_GPL drivers/fpga/altera-pr-ip-core 0x5354ee15 alt_pr_register +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x04b674c7 dfl_fpga_port_ops_put +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x0585b42a dfl_fpga_dev_ops_register +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x1951c741 dfl_fpga_dev_feature_init +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x1e66fbeb dfl_fpga_set_irq_triggers +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x286116d5 dfl_fpga_port_ops_del +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x3a6f58b7 dfl_fpga_feature_devs_remove +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x3abbaf74 dfl_fpga_enum_info_alloc +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x3e431238 dfl_fpga_cdev_assign_port +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x5873c515 dfl_feature_ioctl_get_num_irqs +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x60e813b1 dfl_fpga_dev_feature_uinit +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x878541a4 __dfl_fpga_cdev_find_port +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x96191964 dfl_fpga_port_ops_get +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xa1258269 dfl_fpga_enum_info_add_irq +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xb258e085 dfl_fpga_feature_devs_enumerate +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xb677bf23 dfl_fpga_enum_info_add_dfl +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xbbc2fb01 dfl_fpga_cdev_config_ports_vf +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xbdfe692c dfl_fpga_cdev_config_ports_pf +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xca21f106 dfl_fpga_cdev_release_port +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xcb81be56 dfl_fpga_enum_info_free +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xcc236b15 dfl_feature_ioctl_set_irq +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xf14cc896 dfl_fpga_check_port_id +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xf95d0928 dfl_fpga_dev_ops_unregister +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xfc6adf8d dfl_fpga_port_ops_add +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x001e14ce fpga_bridge_disable EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x0633c4b9 fpga_bridges_enable -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x0a4f7f4a fpga_bridge_create EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x0b2b884c fpga_bridges_put -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x12f783c9 fpga_bridge_put -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x28fcff58 devm_fpga_bridge_create +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x24d810be fpga_bridge_register EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x2c8167cf fpga_bridges_disable -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x3b55a0d9 fpga_bridge_get_to_list -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x515329d6 fpga_bridge_enable -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x612f45a8 fpga_bridge_disable -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x79a8be9f fpga_bridge_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x80660153 fpga_bridge_free -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x875902ba of_fpga_bridge_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xa2a36d6f fpga_bridge_register -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xdd72b84c of_fpga_bridge_get_to_list -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xe1559e5a fpga_bridge_unregister -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x0212818e fpga_mgr_register -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x027d7073 fpga_mgr_load -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x2b29a3a9 fpga_mgr_unlock -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x2bcdb02b of_fpga_mgr_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x4eb2ff4e fpga_image_info_free -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x4f0b474f fpga_mgr_unregister -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x4fde71fd devm_fpga_mgr_create -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x545f41e1 fpga_mgr_lock -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x68ebc75a devm_fpga_mgr_register -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x8cecf680 fpga_image_info_alloc -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x985e217e fpga_mgr_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xccb07874 fpga_mgr_free -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xd9c6e6f2 fpga_mgr_put -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xef03d76e fpga_mgr_create -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x0c38b8fe fpga_region_program_fpga -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x146a7727 fpga_region_register -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x34faf05b fpga_region_create -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x3b2b405e fpga_region_free -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x540551ef fpga_region_class_find -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x5a536c24 devm_fpga_region_create -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x770a12ed fpga_region_unregister -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x0a8406cc fsi_master_unregister -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x222f454c fsi_device_write -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x25e5da74 fsi_bus_type -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x34f36b96 fsi_master_rescan +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x537a4bd0 devm_fpga_bridge_create +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x60e3602e fpga_bridge_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x8a87a693 fpga_bridge_create +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x906a1771 fpga_bridge_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x95d38299 fpga_bridge_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x973e21fb of_fpga_bridge_get_to_list +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xa028ded5 fpga_bridge_enable +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xa23413c7 of_fpga_bridge_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xc0343c37 fpga_bridge_get_to_list +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xe43307ba fpga_bridge_free +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x30a54e44 fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x340e54ad fpga_mgr_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x345a2b55 fpga_mgr_free +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x5985baea fpga_mgr_lock +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x63a3844b fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x659b7a70 of_fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x7b6846fd fpga_image_info_alloc +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x7f9978a1 fpga_mgr_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x9fe48c5f fpga_mgr_unlock +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xa4ef70c6 fpga_mgr_load +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xb594148d fpga_mgr_create +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xe3ae891e fpga_image_info_free +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xe57eb20c devm_fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xfc5a96b1 devm_fpga_mgr_create +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x22d56ca2 fpga_region_free +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x9bbf7d33 fpga_region_program_fpga +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0xba3250f2 fpga_region_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0xe2661584 fpga_region_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0xe436e55f fpga_region_class_find +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0xe9511749 fpga_region_create +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0xea60d894 devm_fpga_region_create +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x0decbe3a fsi_device_write +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x1764e7c6 fsi_master_register +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x30e30910 fsi_bus_type +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x39961c7d fsi_driver_register EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x3a93847e fsi_slave_claim_range +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x4ede0871 fsi_driver_unregister +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x510c5bfb fsi_device_read EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x5a57d574 fsi_free_minor EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x60a97912 fsi_slave_write -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x82766065 fsi_driver_register -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x8316efec fsi_cdev_type -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x8776e8d9 fsi_master_register -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xa7133646 fsi_get_new_minor -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xba8cf895 fsi_driver_unregister -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xbdd9f553 fsi_device_read +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x61a4f625 fsi_get_new_minor +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xbbc68dcd fsi_cdev_type EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xce22aee2 fsi_slave_release_range +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xdebd4a90 fsi_master_unregister +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xdec7682f fsi_master_rescan EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xe4ac7aa2 fsi_slave_read -EXPORT_SYMBOL_GPL drivers/fsi/fsi-occ 0x466946cd fsi_occ_submit -EXPORT_SYMBOL_GPL drivers/fsi/fsi-sbefifo 0x745ce5ff sbefifo_parse_status -EXPORT_SYMBOL_GPL drivers/fsi/fsi-sbefifo 0x7aed0e21 sbefifo_submit -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x3ec3a58d gnss_register_device -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x47697fa3 gnss_insert_raw -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x5370ff9a gnss_deregister_device -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x81164749 gnss_put_device -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x8285e271 gnss_allocate_device -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x23aa06f2 gnss_serial_free -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x656b40d6 gnss_serial_deregister -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0xab28dfd4 gnss_serial_register -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0xcd13f59a gnss_serial_allocate -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0xe997b8f6 gnss_serial_pm_ops -EXPORT_SYMBOL_GPL drivers/gpio/gpio-aspeed 0x18d0b826 aspeed_gpio_copro_grab_gpio +EXPORT_SYMBOL_GPL drivers/fsi/fsi-occ 0x7171646e fsi_occ_submit +EXPORT_SYMBOL_GPL drivers/fsi/fsi-sbefifo 0x5934d306 sbefifo_parse_status +EXPORT_SYMBOL_GPL drivers/fsi/fsi-sbefifo 0x99ad5391 sbefifo_submit +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x3aa89089 gnss_deregister_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x44a7584a gnss_put_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x7aeb98b2 gnss_register_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x875ca115 gnss_insert_raw +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0xb73724b4 gnss_allocate_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x25590319 gnss_serial_deregister +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x2597b529 gnss_serial_pm_ops +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x9ffa08b1 gnss_serial_free +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0xcab22e6f gnss_serial_register +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0xdbde7108 gnss_serial_allocate EXPORT_SYMBOL_GPL drivers/gpio/gpio-aspeed 0x5dcbe46c aspeed_gpio_copro_set_ops -EXPORT_SYMBOL_GPL drivers/gpio/gpio-aspeed 0xbcc51540 aspeed_gpio_copro_release_gpio -EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x4b99615a __max730x_probe -EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0xf6abe1f1 __max730x_remove -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x1c9af78e analogix_dp_stop_crc -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x1cca5d6c analogix_dp_suspend -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x289375f4 analogix_dp_unbind -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x4317ea7c analogix_dp_remove -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x7181c6c6 analogix_dp_probe -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x7e87dfa0 analogix_dp_start_crc -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x7f12683d analogix_dp_bind -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xae42ca48 analogix_dp_resume +EXPORT_SYMBOL_GPL drivers/gpio/gpio-aspeed 0x9e65625b aspeed_gpio_copro_release_gpio +EXPORT_SYMBOL_GPL drivers/gpio/gpio-aspeed 0xbc30f17c aspeed_gpio_copro_grab_gpio +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x60f0ce80 __max730x_probe +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x9d4ef2ee __max730x_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x2f9eee53 analogix_dp_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x5cda392e analogix_dp_resume +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x5db106bb analogix_dp_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x83bf1046 analogix_dp_unbind +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x939e82db analogix_dp_suspend +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xa11a0b7b analogix_dp_start_crc +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xb64fab7d analogix_dp_stop_crc EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xe4978c9d anx_dp_aux_transfer +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xff82905e 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 0x1461e227 dw_hdmi_set_channel_status @@ -12046,679 +12085,679 @@ 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 0x38219c77 dw_hdmi_set_plugged_cb EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x42926f4a dw_hdmi_resume +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x4423fd92 dw_hdmi_set_high_tmds_clock_ratio EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x4a9b174f dw_hdmi_remove 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 0x762bf9b2 dw_hdmi_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x714ce09b 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 0x7f83242c dw_hdmi_set_plugged_cb -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x7ff83e8f dw_hdmi_bind 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 0x9477a08b 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 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 0xf58d39e4 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 0x0a4d4539 dw_mipi_dsi_probe 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 0x220eaf25 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 0x6d7c8309 dw_mipi_dsi_bind -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x059e9f5d drm_gem_dumb_map_offset -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x0f4693e4 drm_gem_cma_free_object -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x18666392 drm_of_lvds_get_dual_link_pixel_order -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x19f1a329 drm_of_find_panel_or_bridge -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x320ac489 drm_gem_cma_prime_import_sg_table -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x3635e980 drm_bridge_detect -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x36f2e1e3 drm_of_encoder_active_endpoint -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x39cf4b4f drm_gem_cma_vm_ops -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x3f487446 drm_gem_cma_dumb_create_internal -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x434d128e drm_get_unmapped_area -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x45335bc8 of_get_drm_display_mode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x4b76a0cc drm_gem_cma_get_sg_table -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x4f363ad3 drm_bridge_hpd_notify -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x4fec7f8d drm_gem_shmem_prime_import_sg_table -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x562763c0 drm_gem_cma_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x5de53e0d drm_class_device_unregister -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x61455a55 drm_gem_shmem_get_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-mipi-dsi 0x80c4262f dw_mipi_dsi_bind +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x02e3173a of_get_drm_display_mode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x0347c00b drm_gem_cma_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x19cf716b drm_gem_shmem_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x1d196822 drm_gem_cma_prime_import_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x1f0b4d37 drm_bridge_get_modes +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x24e86ae2 drm_of_encoder_active_endpoint +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x25198a76 drm_bridge_hpd_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x25aee879 drm_hdcp_check_ksvs_revoked +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x2bf961e0 drm_gem_shmem_free_object +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x37884a0f drm_gem_shmem_get_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x51dd5fd3 drm_gem_shmem_prime_import_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x668e3573 drm_get_unmapped_area EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x66cf2f64 drm_display_mode_from_videomode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x73dfa770 drm_bridge_hpd_enable -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x7cd33a63 drm_gem_shmem_free_object -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x82f0e655 drm_crtc_add_crc_entry -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x8360dbb4 drm_gem_shmem_dumb_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x8bd6cfc4 drm_gem_cma_dumb_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x8e20ee28 drm_class_device_register -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x9c17ad8b drm_gem_cma_mmap -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x9d7a0d15 drm_hdcp_check_ksvs_revoked -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x9d9562a1 drm_gem_shmem_mmap -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xa7ea5c6b drm_gem_shmem_get_pages_sgt +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x6c4407a1 drm_gem_cma_get_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x72fd1ad0 drm_gem_cma_free_object +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x77db74f2 drm_gem_cma_dumb_create_internal +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x7c7f3f1e drm_do_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x7ca24d94 drm_class_device_register +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x808864c4 drm_gem_cma_vm_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x8ef904e1 drm_gem_cma_dumb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x93a13fce drm_bridge_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x977c31c1 drm_bridge_hpd_notify +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xa073d6ef drm_gem_cma_vmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xaac10889 drm_of_find_panel_or_bridge EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xad885165 drm_bus_flags_from_videomode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xae44e67e drm_of_component_match_add -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xb1a703de drm_do_get_edid -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xbc9aa0ac drm_bridge_get_modes -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xcff2ee28 drmm_kstrdup -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xe47239a8 drm_gem_shmem_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xe8238463 drm_bridge_get_edid -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xeb67ea3a drm_bridge_hpd_disable -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xf112744f drm_gem_cma_vmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xae0fc6f1 drm_gem_cma_mmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xbdcc37e0 drm_bridge_detect +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xbe6d9594 drm_crtc_add_crc_entry +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xd5ad2e91 drm_gem_dumb_map_offset +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xdb2c79f8 drm_class_device_unregister +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xdddaf1b1 drm_of_component_match_add +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xe20e6199 drm_bridge_hpd_enable +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xed0c3674 drmm_kstrdup +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xfa56139c drm_gem_shmem_mmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xfb253fa2 drm_gem_shmem_dumb_create EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xfe9f72f3 drm_display_mode_to_videomode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dp_aux_bus 0x7c37ec53 dp_aux_dp_driver_unregister -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dp_aux_bus 0x8595682d of_dp_aux_depopulate_ep_devices -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dp_aux_bus 0xad1dfb6e __dp_aux_dp_driver_register -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dp_aux_bus 0xf6daaf9f devm_of_dp_aux_populate_ep_devices -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x25159cac drm_gem_fb_afbc_init -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x2f80e26b drm_fb_cma_sync_non_coherent -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x52848a28 drm_gem_plane_helper_prepare_fb -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x552ae508 drm_bridge_connector_init -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x5b196b70 drm_bridge_connector_enable_hpd -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x83fabdfe drm_gem_fb_init_with_funcs -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xa0d15abd drm_gem_fb_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xb103304a drm_gem_fb_create_with_dirty -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xb6738f08 drm_bridge_connector_disable_hpd -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xb8677fc8 drm_fb_cma_get_gem_addr -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xbacbe66d drm_gem_fb_create_with_funcs -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xc64fcd80 drm_gem_fb_get_obj -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xf2fb7a0a drm_fb_cma_get_gem_obj -EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0x1afacdfb imx_drm_connector_destroy -EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0x8e174f47 imx_drm_encoder_parse_of -EXPORT_SYMBOL_GPL drivers/gpu/drm/mcde/mcde_drm 0xc23ae643 mcde_display_init -EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x1edb12e5 meson_vclk_setup +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xff936b85 drm_gem_shmem_get_pages_sgt +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xfff1e9a8 drm_of_lvds_get_dual_link_pixel_order +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dp_aux_bus 0x3fd192a3 devm_of_dp_aux_populate_ep_devices +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dp_aux_bus 0x40d8ab94 dp_aux_dp_driver_unregister +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dp_aux_bus 0xb29cda66 of_dp_aux_depopulate_ep_devices +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dp_aux_bus 0xb76e6f05 __dp_aux_dp_driver_register +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x34e1d873 drm_bridge_connector_enable_hpd +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x557923ec drm_gem_fb_init_with_funcs +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x564fdbea drm_bridge_connector_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x58fd241d drm_fb_cma_get_gem_obj +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x5fbcfc54 drm_gem_fb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x64bfadc2 drm_gem_plane_helper_prepare_fb +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x75f6c5ef drm_bridge_connector_disable_hpd +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x8fcf53f8 drm_gem_fb_get_obj +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xac2c745a drm_gem_fb_create_with_funcs +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xafcc4c01 drm_fb_cma_get_gem_addr +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xc25ab7eb drm_gem_fb_create_with_dirty +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xcb1609f7 drm_fb_cma_sync_non_coherent +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xe6a94e81 drm_gem_fb_afbc_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0x3d607ebf imx_drm_connector_destroy +EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0xaf49c4c6 imx_drm_encoder_parse_of +EXPORT_SYMBOL_GPL drivers/gpu/drm/mcde/mcde_drm 0x8ea9ee15 mcde_display_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x10e780a6 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 0x8afbac97 meson_venc_hdmi_mode_set +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x77a17216 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 0x9506c712 meson_venc_hdmi_mode_set +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x97872a16 meson_vclk_setup EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0xab5bee2f meson_venc_hdmi_supported_vic -EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0xbe301338 meson_vclk_vic_supported_freq -EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0xf6527f72 meson_vclk_dmt_supported_freq -EXPORT_SYMBOL_GPL drivers/gpu/drm/panel/panel-samsung-s6e63m0 0x4d1f6f5d s6e63m0_remove -EXPORT_SYMBOL_GPL drivers/gpu/drm/panel/panel-samsung-s6e63m0 0xe9c35d6b s6e63m0_probe -EXPORT_SYMBOL_GPL drivers/gpu/drm/pl111/pl111_drm 0x1d6202db pl111_versatile_init -EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0x5b97f44b rcar_cmm_enable -EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0x9434ba25 rcar_cmm_init -EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0xacce06ef rcar_cmm_disable -EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0xf200149a rcar_cmm_setup -EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0x0fe7229f rcar_lvds_dual_link -EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0x483da824 rcar_lvds_clk_enable -EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0x7b25b36b rcar_lvds_clk_disable -EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0x8af78c2a rcar_lvds_is_connected -EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0x8c9adef4 rockchip_rgb_init -EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0xec73ba5f vop_component_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/panel/panel-samsung-s6e63m0 0x646203fb s6e63m0_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/panel/panel-samsung-s6e63m0 0xa9696c98 s6e63m0_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/pl111/pl111_drm 0x38d6084b pl111_versatile_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0x1e686712 rcar_cmm_setup +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0xaf97ccba rcar_cmm_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0xbbf0b200 rcar_cmm_enable +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0xfa2aaa25 rcar_cmm_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0x4c0f9a06 rcar_lvds_clk_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0x837e1be3 rcar_lvds_clk_enable +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0x85df3b36 rcar_lvds_is_connected +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0xdaddd508 rcar_lvds_dual_link +EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0x67296091 vop_component_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0xe7ff9752 rockchip_rgb_init EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0xfead7585 rockchip_rgb_fini EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x050f0d7b ipu_di_adjust_videomode +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x05202532 ipu_prg_channel_configure EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x07036df2 ipu_ic_calc_csc EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x0728116a ipu_csi_disable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x0a6a095e ipu_idmac_lock_enable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x0b194cb7 ipu_module_enable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x0b86e42e ipu_cpmem_set_yuv_interleaved +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x0a045bf4 ipu_idmac_get_current_buffer EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x0e42bd95 ipu_csi_set_dest +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x10f9d4bd ipu_smfc_get EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x118160e1 ipu_ic_enable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x129d8cb8 ipu_image_convert EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x13952dfe ipu_dmfc_enable_channel +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x14aebbce ipu_cpmem_dump +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x1526c02a ipu_cpmem_set_image EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x15ec2ba5 ipu_di_put -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x16f76cc6 ipu_prg_channel_disable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x1872223f ipu_set_ic_src_mux EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x18730251 ipu_rot_mode_to_degrees EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x18aa0dcd ipu_image_convert_abort -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x1abbb08e ipu_dump -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x1cb7eb27 ipu_map_irq EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x1e913d9f ipu_csi_get_window -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x1f961c06 ipu_prg_channel_configure_pending -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x233a2e62 ipu_prg_format_supported +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x1f476cfb ipu_idmac_get +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x202ee8cb ipu_cpmem_set_yuv_planar_full +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x21ec295b ipu_cpmem_set_stride +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x238b133f ipu_idmac_put +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x238e4641 ipu_cpmem_set_burstsize EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x2424c9a6 ipu_csi_is_interlaced -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x26e303eb ipu_cpmem_set_image -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x2b84e870 ipu_ic_get +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x24edf48d ipu_prg_enable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x26788eb8 ipu_ic_get +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x29761211 ipu_set_csi_src_mux +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x29bea97c ipu_cpmem_set_yuv_interleaved +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x2adfe1e7 ipu_prg_disable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x2ae2642a ipu_dc_disable EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x2cf7ed72 ipu_dc_init_sync -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x2df2d1d3 ipu_dc_disable EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x2e825a67 ipu_smfc_set_watermark +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x2ec6cad0 ipu_dc_get EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x2f92d651 ipu_ic_task_enable EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x3020d65c ipu_prg_max_active_channels EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x3166aec7 ipu_dmfc_disable_channel -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x32288962 ipu_cpmem_set_stride -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x3407da8f ipu_idmac_wait_busy -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x362780c9 ipu_idmac_set_double_buffer -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x37d19243 ipu_dp_enable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x3c4ff19b ipu_cpmem_set_format_rgb +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x3198a08c ipu_fsu_unlink +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x398be362 ipu_cpmem_set_format_rgb +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x3ae075cb ipu_cpmem_zero +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x3b5545d9 ipu_idmac_enable_watermark +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x3c0caaa0 ipu_prg_channel_configure_pending EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x3d8f18f6 __ipu_ic_calc_csc EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x3e86ea72 ipu_di_get_num +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x3f62d9f4 ipu_map_irq +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x3fea96c4 ipu_idmac_buffer_is_ready +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x413a102e ipu_vdi_get EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x418a282f ipu_drm_fourcc_to_colorspace EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x42d3d500 ipu_image_convert_unprepare -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x455bdc72 ipu_cpmem_set_format_passthrough -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x47184575 ipu_idmac_channel_busy -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x48b05934 ipu_fsu_unlink EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x4917f47a ipu_ic_dump EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x492a422d ipu_csi_set_mipi_datatype EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x498b4c7b ipu_image_convert_enum_format -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x4a02faa3 ipu_cpmem_skip_odd_chroma_rows -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x4a2d58ca ipu_cpmem_set_burstsize EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x4c179b49 ipu_dp_put -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x4c282b61 ipu_idmac_select_buffer -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x4fc0eb9b ipu_cpmem_interlaced_scan -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x4ff0c728 ipu_module_disable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x4c782a8e ipu_cpmem_set_block_mode EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x51475e87 ipu_dmfc_put EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x527f3b94 ipu_smfc_set_burstsize EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x53de277c ipu_di_enable EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x55767280 ipu_vdi_set_motion EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x580d2f81 ipu_vdi_put +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x58866d43 ipu_idmac_disable_channel EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x5b15aea8 ipu_dp_disable_channel EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x5cae270a ipu_vdi_unsetup +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x6020a8f7 ipu_prg_present EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x60bdf2ec ipu_csi_put -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x61505712 ipu_dc_get +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x6163f8e0 ipu_fsu_link EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x623722e2 ipu_ic_task_disable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x646e8793 ipu_idmac_get -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x671a9613 ipu_cpmem_set_rotation -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x67c71b33 ipu_fsu_link +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x6514c638 ipu_cpmem_set_resolution +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x6dcceab9 ipu_di_get EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7068e939 ipu_dc_put -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x744f31d7 ipu_dc_enable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x79ab7fab ipu_cpmem_set_block_mode -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7a86711e ipu_cpmem_zero -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7b51af99 ipu_cpmem_set_resolution -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7bf93b29 ipu_prg_present +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x77a2ceef ipu_cpmem_set_buffer +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x793540ec ipu_module_enable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7a8f2c6f ipu_dmfc_get +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7dba8597 ipu_dp_enable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7e382f6f ipu_prg_format_supported EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x8497c7d4 ipu_degrees_to_rot_mode -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x84c89f91 ipu_di_get -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x858a66eb ipu_idmac_disable_channel -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x86c2e1eb ipu_cpmem_get_burstsize -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x8798849a ipu_cpmem_set_high_priority +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x84af6029 ipu_idmac_channel_irq EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x886c35aa ipu_smfc_map_channel -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x89a1db61 ipu_prg_channel_configure +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x88d569c9 ipu_get_num +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x88e430f5 ipu_srm_dp_update EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x8a9458d2 ipu_image_convert_verify -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x8c8d5be5 ipu_cpmem_set_axi_id +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x8de03bb3 ipu_module_disable EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x8eb22643 ipu_dp_set_global_alpha EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x9058e289 ipu_smfc_put +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x917b75e2 ipu_idmac_wait_busy EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x91ce1a04 ipu_dp_set_window_pos +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x93548b01 ipu_dump EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x951a09d5 ipu_csi_enable EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x97f08d2f ipu_ic_task_init -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x9e5d94db ipu_dmfc_get +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x9ba71d22 ipu_idmac_enable_channel EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x9f38e177 ipu_dp_enable_channel -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xa134c92e ipu_idmac_link +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xa01b3e9f ipu_cpmem_get_burstsize EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xa4b0cabd ipu_dc_disable_channel -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xa50c4e99 ipu_set_csi_src_mux -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xa5367530 ipu_cpmem_set_yuv_planar_full EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xa60b144b ipu_csi_set_window EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xa6daa1cb ipu_image_convert_queue -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xa89127c0 ipu_image_convert_prepare +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xa82c323d ipu_cpmem_set_fmt EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xa8adc101 ipu_pixelformat_to_colorspace EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xa96882d8 ipu_ic_disable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xaa6bb41a ipu_idmac_get_current_buffer -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xadc4ccda ipu_dp_disable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xadc8b094 ipu_ic_task_idma_init -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xb5c0a89e ipu_idmac_clear_buffer +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xb2971e67 ipu_idmac_clear_buffer +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xb40fd699 ipu_cpmem_set_uv_offset +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xb5af6451 ipu_cpmem_set_rotation +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xb8aa652a ipu_prg_channel_disable EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xb9ea6823 ipu_dp_setup_channel EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xba458b8f ipu_csi_set_test_generator -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xba5dd7b0 ipu_get_num -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xbb12f814 ipu_srm_dp_update -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xbd03bdfd ipu_prg_enable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xba9686b7 ipu_idmac_set_double_buffer +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xbc6c655b ipu_idmac_select_buffer +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xbd37cead ipu_dp_disable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xbefd2102 ipu_cpmem_set_axi_id EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xbf983ba6 ipu_vdi_set_field_order +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc004ae75 ipu_dc_enable EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc3c2cdb0 ipu_smfc_disable EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc4af2e81 ipu_dmfc_config_wait4eot EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc4b15642 ipu_csi_set_skip_smfc -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc505c912 ipu_dp_get EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc603fac7 ipu_image_convert_adjust -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc65df422 ipu_idmac_enable_watermark +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc62ef6a3 ipu_cpmem_skip_odd_chroma_rows EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc6675aa9 ipu_csi_dump EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc677177d ipu_smfc_enable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc6dbfde7 ipu_cpmem_dump EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc97e7a0f ipu_di_disable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xca572588 ipu_idmac_buffer_is_ready -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xca605d5d ipu_csi_get EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xcbea3eec ipu_di_init_sync_panel EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xcd7fbaa4 ipu_ic_task_graphics_init -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xcdccd448 ipu_vdi_get EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xce3e0027 ipu_csi_init_interface -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xcf340ccc ipu_idmac_put -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xd52e24e2 ipu_prg_disable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xceaf5e18 ipu_dp_get +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xceced8fe ipu_cpmem_interlaced_scan +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xd135d1cb ipu_idmac_lock_enable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xd1590e12 ipu_idmac_link EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xd8f285f0 ipu_vdi_setup +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xdf9dbb9a ipu_csi_get EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xe6243c52 ipu_dc_enable_channel -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xec243a4d ipu_idmac_channel_irq EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xeea12b31 ipu_vdi_enable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xf01a8551 ipu_cpmem_set_uv_offset -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xf042a08b ipu_cpmem_set_fmt -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xf0ccf648 ipu_smfc_get +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xeee9fa7d ipu_image_convert_sync +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xf0374381 ipu_cpmem_set_high_priority +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xf0a1c23a ipu_ic_task_idma_init +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xf0afb4cc ipu_image_convert_prepare EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xf1440dc1 ipu_ic_put EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xf1abac7e ipu_csi_set_downsize -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xf26cd5cf ipu_cpmem_set_buffer +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xf258d1d7 ipu_idmac_unlink +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xf41db1ee ipu_idmac_channel_busy EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xf541df2d ipu_vdi_disable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xf7a04077 ipu_image_convert_sync -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xfacaeb5b ipu_idmac_unlink -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xfd456821 ipu_idmac_enable_channel -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xfdb85843 ipu_set_ic_src_mux -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x01f8796f gb_connection_latency_tag_disable -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x02997a60 __traceiter_gb_hd_in -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x02b0c4be gb_connection_latency_tag_enable -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x07239d2e gb_connection_enable -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x0a205cbd gb_operation_cancel -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x0eb78fe7 gb_connection_disable_rx -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x10c8b3ee gb_operation_get +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xf703dc5e ipu_image_convert +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xfe4192ba ipu_cpmem_set_format_passthrough +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x015af65b gb_debugfs_get +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x0b410977 gb_hd_output EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x14028e17 __SCK__tp_func_gb_hd_add -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x15016f19 greybus_deregister_driver EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x158a8186 __tracepoint_gb_hd_add EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x15d1942f greybus_disabled +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x16a01d6c gb_operation_request_send_sync_timeout +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x16dfecbc gb_operation_get_payload_size_max EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x19c8e4e0 __tracepoint_gb_hd_create -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x1efea091 __traceiter_gb_message_submit -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x2465b639 gb_operation_response_alloc -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x29fe8504 gb_interface_request_mode_switch -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x31c405bb gb_hd_cport_release_reserved -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x34712c72 greybus_register_driver -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x35a50df1 gb_hd_shutdown -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x39bb13c1 gb_debugfs_get -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x3a7ba85a gb_connection_disable -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x3e921437 gb_operation_create_flags -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x4cfd50b7 gb_hd_put -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x4e4f5ef6 gb_hd_add -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x52db49ba gb_connection_destroy -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x55bae8d0 __traceiter_gb_hd_create -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x5bcfc3c2 __traceiter_gb_hd_del -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x5e9f5e2c gb_operation_request_send -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x677389d4 gb_connection_create_flags -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x67e096eb gb_operation_put +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x1fda610b gb_connection_disable_forced +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x25d115a7 __traceiter_gb_hd_in +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x2afd06bf __traceiter_gb_hd_add +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x2be6013f gb_hd_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x32edb854 greybus_message_sent +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x35406245 __traceiter_gb_hd_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x48d47716 greybus_data_rcvd +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x5137795b gb_operation_unidirectional_timeout +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x5c2c0abb gb_connection_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x675cb087 gb_connection_destroy +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6801764a __traceiter_gb_message_submit EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6d3bb9ec __SCK__tp_func_gb_message_submit -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x77b9fa20 gb_operation_unidirectional_timeout -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x77f4396d gb_svc_intf_set_power_mode -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x79532e30 gb_operation_get_payload_size_max +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x78698755 gb_hd_shutdown +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7a749b2e gb_connection_enable_tx EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7bfa420b __tracepoint_gb_hd_release -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7d278f6e gb_operation_result +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7e7fa6bb gb_connection_disable EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x81e221fb __SCK__tp_func_gb_hd_create -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x836a99c8 gb_hd_cport_reserve -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x89f21af3 gb_operation_request_send_sync_timeout +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x878b38ff gb_connection_latency_tag_disable EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x89f514a1 __SCK__tp_func_gb_hd_in -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x8fa92fad gb_connection_enable_tx -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x91d4c66f __traceiter_gb_hd_release -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x9d34e486 gb_connection_disable_forced -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xa4386022 gb_operation_sync_timeout -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xafc39537 gb_connection_create_offloaded +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x8e9de341 __traceiter_gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x9021cb46 gb_operation_response_alloc +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x93579425 gb_operation_get +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x94f58f51 gb_operation_create_flags +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x96b011be gb_connection_latency_tag_enable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xa0e34412 gb_hd_cport_release_reserved +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xa1aad8fc gb_svc_intf_set_power_mode +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xacb4b983 gb_hd_cport_reserve +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xacbae602 gb_hd_put +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xaebd5698 gb_connection_create_offloaded EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xb7dac26f __tracepoint_gb_message_submit -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xbc5674af gb_hd_create -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xcd7b14b8 gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xbf30a6e9 gb_operation_put +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd7268477 gb_operation_result EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xda8b83e0 __tracepoint_gb_hd_in -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe5474642 greybus_message_sent +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe298ef1b __traceiter_gb_hd_release +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe3739509 gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe610bbe1 gb_operation_sync_timeout +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe8dc9689 greybus_deregister_driver +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe8fe5b16 gb_hd_add EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xeac79e1a __SCK__tp_func_gb_hd_del EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xeb4f918b __tracepoint_gb_hd_del -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xebbaa102 __traceiter_gb_hd_add -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xebea8e5a greybus_data_rcvd +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xec279155 greybus_register_driver +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xec6c8231 gb_connection_disable_rx +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xedc94392 gb_connection_enable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xede15da9 gb_connection_create_flags EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf107a122 __SCK__tp_func_gb_hd_release -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf4cd642d gb_hd_output -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xfda3228c gb_connection_create -EXPORT_SYMBOL_GPL drivers/hid/hid 0x01433562 hidinput_report_event +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf11c8407 gb_operation_request_send +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xfbe6fab8 gb_interface_request_mode_switch +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xfd9290e5 gb_operation_cancel +EXPORT_SYMBOL_GPL drivers/hid/hid 0x0370d0bf hid_lookup_quirk +EXPORT_SYMBOL_GPL drivers/hid/hid 0x03f9b33c hid_dump_input +EXPORT_SYMBOL_GPL drivers/hid/hid 0x04ad9f5e hid_field_extract EXPORT_SYMBOL_GPL drivers/hid/hid 0x05495392 hid_debug -EXPORT_SYMBOL_GPL drivers/hid/hid 0x05885ca6 hid_output_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x06d7764f hid_dump_input -EXPORT_SYMBOL_GPL drivers/hid/hid 0x07142e7b hid_hw_stop -EXPORT_SYMBOL_GPL drivers/hid/hid 0x10f0d72f hidraw_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x117417d0 hid_setup_resolution_multiplier -EXPORT_SYMBOL_GPL drivers/hid/hid 0x118ad3f6 hid_allocate_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x09d5bbd8 hid_open_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x0b30f201 hid_debug_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x1615c8e1 hid_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x193d4b2e hid_disconnect EXPORT_SYMBOL_GPL drivers/hid/hid 0x19d52f1f hid_quirks_exit -EXPORT_SYMBOL_GPL drivers/hid/hid 0x1c21f61b hid_dump_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x29b1a9d1 hid_resolv_usage -EXPORT_SYMBOL_GPL drivers/hid/hid 0x2acd8e4a hid_check_keys_pressed -EXPORT_SYMBOL_GPL drivers/hid/hid 0x2fab215a hid_hw_open -EXPORT_SYMBOL_GPL drivers/hid/hid 0x308ea628 hid_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x334d63ad hid_alloc_report_buf -EXPORT_SYMBOL_GPL drivers/hid/hid 0x3e468345 hidraw_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x3f76d73b hid_field_extract -EXPORT_SYMBOL_GPL drivers/hid/hid 0x429a50b2 hid_dump_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0x463b9cbf hid_register_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x56ba717d hid_debug_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0x5b5fd134 hid_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x607479eb hid_validate_values -EXPORT_SYMBOL_GPL drivers/hid/hid 0x65af0010 hid_open_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x752f7734 hid_ignore -EXPORT_SYMBOL_GPL drivers/hid/hid 0x79794080 hid_compare_device_paths -EXPORT_SYMBOL_GPL drivers/hid/hid 0x7afd56f1 hid_report_raw_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0x89c4e800 hidinput_find_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x1e8b1658 hid_add_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x2485aa3d hid_output_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x2e958c40 hidraw_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x2f332680 hid_validate_values +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3755b7c3 hid_dump_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3a481030 hid_hw_stop +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3a71669c hidraw_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3b5e9f25 hidraw_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3b980be9 hid_setup_resolution_multiplier +EXPORT_SYMBOL_GPL drivers/hid/hid 0x43b84610 hid_compare_device_paths +EXPORT_SYMBOL_GPL drivers/hid/hid 0x5012b712 hid_ignore +EXPORT_SYMBOL_GPL drivers/hid/hid 0x53670cb7 hid_hw_close +EXPORT_SYMBOL_GPL drivers/hid/hid 0x54d7419f hid_register_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x57e0698f hidinput_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x5d8928b3 hid_report_raw_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x6103776c hid_hw_open +EXPORT_SYMBOL_GPL drivers/hid/hid 0x64b7aa78 hidinput_count_leds +EXPORT_SYMBOL_GPL drivers/hid/hid 0x64f2e1b1 hidinput_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x6764f93d hidinput_find_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x898aa120 hid_allocate_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x89f977b5 hid_input_report EXPORT_SYMBOL_GPL drivers/hid/hid 0x8b13a8b8 hid_snto32 -EXPORT_SYMBOL_GPL drivers/hid/hid 0x937f9dc9 __hid_request -EXPORT_SYMBOL_GPL drivers/hid/hid 0x957aac64 hid_hw_start -EXPORT_SYMBOL_GPL drivers/hid/hid 0x9e6d9dbe hidinput_count_leds -EXPORT_SYMBOL_GPL drivers/hid/hid 0xa4e87585 hid_hw_close -EXPORT_SYMBOL_GPL drivers/hid/hid 0xa745d94e hidraw_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0xb86da6f6 hidinput_get_led_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0xbe62d90b hid_set_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0xc1ee5780 hid_dump_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0xc2f9394f hid_add_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0xc512df12 hid_destroy_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0xc56f2c50 hidinput_calc_abs_res -EXPORT_SYMBOL_GPL drivers/hid/hid 0xc5ff0591 hid_unregister_driver -EXPORT_SYMBOL_GPL drivers/hid/hid 0xc73183c6 hid_input_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0xc8aa8ef8 hidinput_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0xd7ae9695 hid_lookup_quirk -EXPORT_SYMBOL_GPL drivers/hid/hid 0xdf7b7381 hid_match_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0xe404736c __hid_register_driver -EXPORT_SYMBOL_GPL drivers/hid/hid 0xf5de0bbc hid_parse_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8b9be838 __hid_register_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0x9c06f129 hid_resolv_usage +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa425cda0 hidinput_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xaa5df9a5 hidinput_get_led_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xabc68ba5 hidinput_calc_abs_res +EXPORT_SYMBOL_GPL drivers/hid/hid 0xabffdb3d hid_dump_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xaf4ba0c6 hid_dump_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb0503dc6 hid_unregister_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb266e30f hid_check_keys_pressed +EXPORT_SYMBOL_GPL drivers/hid/hid 0xcdc1a086 hid_match_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xcf0f107b hid_set_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd1e73da8 hid_hw_start +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd74f848d hid_parse_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf1f2f558 hid_alloc_report_buf EXPORT_SYMBOL_GPL drivers/hid/hid 0xfa355613 hid_quirks_init -EXPORT_SYMBOL_GPL drivers/hid/hid 0xff1046bd hidinput_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xfa593b5b hid_destroy_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xfc4dd9cb __hid_request 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 0xe6f9588b roccat_connect -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x1877664e roccat_common2_sysfs_read -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x1f282eb9 roccat_common2_send_with_status -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x78762fb2 roccat_common2_device_init_struct -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x863a54c3 roccat_common2_send -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xcac878e0 roccat_common2_sysfs_write -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xd0c825dd roccat_common2_receive -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x06deae88 sensor_hub_get_feature -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x238a9b19 sensor_hub_remove_callback -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x4f19f699 sensor_hub_device_open -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x9d9a9d83 sensor_hub_input_attr_get_raw_value -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xa12e70b2 sensor_hub_set_feature -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xab51980d sensor_hub_input_get_attribute_info -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xcea1c2e8 sensor_hub_register_callback -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xed792b4f sensor_hub_device_close -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xf3f50814 hid_sensor_get_usage_index -EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x8361a30e i2c_hid_ll_driver -EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0xaa6e43e7 i2c_hid_core_pm -EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0xac4cf3f4 i2c_hid_core_probe -EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0xdc5a9b9a i2c_hid_core_remove -EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0xf7c792c8 i2c_hid_core_shutdown -EXPORT_SYMBOL_GPL drivers/hid/uhid 0xaa32dd7e uhid_hid_driver -EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x223e910b hiddev_hid_event -EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x4556badf usb_hid_driver -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x24b456cf hsi_unregister_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x27e018c1 hsi_alloc_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x2cd4bcfe hsi_register_client_driver -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x2d6f0df6 hsi_release_port -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x303f5dfe hsi_alloc_msg -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x3494c328 hsi_register_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x46dc6f28 hsi_async +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x570daf20 roccat_connect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x1ca69ad6 roccat_common2_sysfs_write +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x2c921a93 roccat_common2_receive +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x38c41a05 roccat_common2_device_init_struct +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x4861e56d roccat_common2_send +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x736eccde roccat_common2_send_with_status +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xaca52f4c roccat_common2_sysfs_read +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x04fb4332 sensor_hub_get_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x31cbe500 sensor_hub_device_open +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x48731498 sensor_hub_set_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x71332702 sensor_hub_remove_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x72abffc7 hid_sensor_get_usage_index +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x93bce9c3 sensor_hub_device_close +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x9ddf8f6e sensor_hub_input_attr_get_raw_value +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xc8de6a2d sensor_hub_input_get_attribute_info +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xf5840a79 sensor_hub_register_callback +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x37a41428 i2c_hid_core_remove +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x83b181b4 i2c_hid_core_pm +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x87f21aca i2c_hid_core_probe +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x9c836164 i2c_hid_ll_driver +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0xe71ed939 i2c_hid_core_shutdown +EXPORT_SYMBOL_GPL drivers/hid/uhid 0x11450270 uhid_hid_driver +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x16925bf1 usb_hid_driver +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x3ace33e4 hiddev_hid_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x0de22e0d hsi_claim_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x0e378fc3 hsi_async +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x2db900e7 hsi_alloc_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x33a5234f hsi_alloc_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x4530e1e3 hsi_port_unregister_clients EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5210a5bf hsi_board_list -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x521e6339 hsi_new_client -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x8068c164 hsi_port_unregister_clients -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x84bd3cb3 hsi_get_channel_id_by_name -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x96474b8e hsi_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x965316f9 hsi_unregister_port_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x9feb0b91 hsi_free_msg -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xa1c941e8 hsi_claim_port -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xd2bcb225 hsi_remove_client -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xeacddc2b hsi_register_port_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xf6fc4c30 hsi_add_clients_from_dt -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xfd34cff6 hsi_put_controller -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0xb6e9f69b adt7x10_dev_pm_ops -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0xc897aaa1 adt7x10_remove -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0xd1f6b02a adt7x10_probe -EXPORT_SYMBOL_GPL drivers/hwmon/ltc2947-core 0x5303815a ltc2947_pm_ops +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x630e736d hsi_get_channel_id_by_name +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x6fc7cf59 hsi_release_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x70996ef3 hsi_put_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x7d45160f hsi_register_client_driver +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x8073b752 hsi_register_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x831c037c hsi_new_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x995364ce hsi_add_clients_from_dt +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xae399e7c hsi_unregister_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xb94d5be4 hsi_free_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xc9eb1aed hsi_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xcb42da56 hsi_remove_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xe4c2d5f1 hsi_register_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xed64b266 hsi_unregister_port_event +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x2437713d adt7x10_remove +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x65e3cf61 adt7x10_probe +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x9c152b77 adt7x10_dev_pm_ops EXPORT_SYMBOL_GPL drivers/hwmon/ltc2947-core 0x5cbb5274 ltc2947_core_probe +EXPORT_SYMBOL_GPL drivers/hwmon/ltc2947-core 0x6f7f9ee0 ltc2947_pm_ops EXPORT_SYMBOL_GPL drivers/hwmon/ltc2947-core 0xbc54f93e ltc2947_of_match -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x1b3a486d intel_th_trace_switch -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x324e87cf intel_th_trace_enable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x4459eec4 intel_th_alloc -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x4622c1da intel_th_driver_register -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x807fa0ef intel_th_trace_disable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x8c50757f intel_th_free -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x9d26dd66 intel_th_set_output -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xddb0adec intel_th_driver_unregister -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xe42f1f02 intel_th_output_enable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x1d85e22b intel_th_msu_buffer_register -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x89fbc980 intel_th_msc_window_unlock -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0xf5a3baf1 intel_th_msu_buffer_unregister -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x00744bdc stm_register_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x168b1cef stm_source_write -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x334811bd stm_data_write -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x3f45d311 to_pdrv_policy_node -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x9fb5be87 stm_unregister_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xc8f760eb stm_source_register_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xcef113b4 stm_register_protocol -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xec227751 stm_source_unregister_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xf57d5a99 stm_unregister_protocol -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x287441da i2c_mux_alloc -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x452c8691 i2c_root_adapter -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x5acf75af i2c_mux_add_adapter -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x9376e5a7 i2c_mux_del_adapters -EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x2703204c i2c_register_spd -EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x7f40c6f3 i2c_free_slave_host_notify_device -EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xb6f21f6d i2c_new_slave_host_notify_device -EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xdb989475 i2c_handle_smbus_alert -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x13977bec i3c_device_request_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x14eb7cde i3c_master_register -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x2a276d5f i3c_master_defslvs_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x3232df3a i3c_master_get_free_addr -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x3d3788c4 i3c_master_set_info -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x48a28ebf i3c_generic_ibi_alloc_pool -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x4b4e141f i3c_master_add_i3c_dev_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x4e884628 i3c_device_get_info -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x553083e7 i3c_driver_unregister -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x5eb22e28 i3c_master_enec_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x603365d7 i3c_device_enable_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x6806ef70 i3c_master_queue_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x73ed7eba i3c_generic_ibi_get_free_slot -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x7660022c i3c_device_do_priv_xfers +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x023892c4 intel_th_set_output +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x066d624f intel_th_free +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x1f39a215 intel_th_alloc +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x264ebb59 intel_th_trace_disable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x50128d5f intel_th_driver_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x6445e979 intel_th_trace_switch +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x9f54a88a intel_th_output_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xc326930c intel_th_driver_register +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xd3a29d0a intel_th_trace_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x5a0afd45 intel_th_msc_window_unlock +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x847acd41 intel_th_msu_buffer_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x99a23a66 intel_th_msu_buffer_register +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x2cebd655 stm_source_write +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x38456714 stm_source_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x782a85fe stm_source_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x8515d2cc stm_register_protocol +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xbe86f4e9 stm_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xbf147078 to_pdrv_policy_node +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xdf943714 stm_unregister_protocol +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xe6f38788 stm_data_write +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xf5fca619 stm_unregister_device +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x30b5bd56 i2c_root_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x30b938cd i2c_mux_del_adapters +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x7e115b3a i2c_mux_add_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xfbfa9d7e i2c_mux_alloc +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x1794c08c i2c_register_spd +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x5a6f037b i2c_free_slave_host_notify_device +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xbe804139 i2c_handle_smbus_alert +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xfd4aa363 i2c_new_slave_host_notify_device +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x0087eed6 i3c_master_get_free_addr +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x0181bf46 i3c_device_free_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x0baf6999 i3c_master_queue_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x1c733d5f i3c_master_unregister +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x2188ead6 i3c_generic_ibi_recycle_slot +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x2459ff4a i3c_driver_unregister +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x37b6a155 i3c_device_get_info +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x40651ef0 i3c_device_do_priv_xfers +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x53030248 i3c_master_defslvs_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x61422c92 i3c_generic_ibi_alloc_pool +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x614b2003 i3c_device_request_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x645b95a4 i3cdev_to_dev +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x6f71d8c0 dev_to_i3cdev EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x76fe3e05 i3c_generic_ibi_free_pool -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x78ff1558 i3c_driver_register_with_owner -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x88afe92b i3c_device_disable_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x91d9ecf4 i3cdev_to_dev -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xa1192bbf i3c_master_unregister -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xb2d8b3b4 i3c_generic_ibi_recycle_slot -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xc2338506 i3c_master_do_daa -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xc869a485 i3c_device_match_id -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xc956ebc0 i3c_master_disec_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xca171368 dev_to_i3cdev -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xdd7f3036 i3c_device_free_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xfa78057c i3c_master_entdaa_locked -EXPORT_SYMBOL_GPL drivers/iio/accel/adxl372 0x7a38e448 adxl372_probe -EXPORT_SYMBOL_GPL drivers/iio/accel/adxl372 0xf084f403 adxl372_readable_noinc_reg -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x1e8dacbe bmc150_accel_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x364b22ec bmc150_accel_core_remove -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xccd83200 bmc150_accel_core_probe -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xf74c9e32 bmc150_regmap_conf -EXPORT_SYMBOL_GPL drivers/iio/accel/bmi088-accel-core 0x1bef13be bmi088_accel_core_probe -EXPORT_SYMBOL_GPL drivers/iio/accel/bmi088-accel-core 0x7d371aa3 bmi088_accel_core_remove -EXPORT_SYMBOL_GPL drivers/iio/accel/bmi088-accel-core 0xb2cd7a18 bmi088_regmap_conf -EXPORT_SYMBOL_GPL drivers/iio/accel/bmi088-accel-core 0xb62d25e3 bmi088_accel_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/accel/fxls8962af-core 0x1c30a57f fxls8962af_core_probe -EXPORT_SYMBOL_GPL drivers/iio/accel/fxls8962af-core 0x30c40b47 fxls8962af_i2c_regmap_conf -EXPORT_SYMBOL_GPL drivers/iio/accel/fxls8962af-core 0x6c774c9d fxls8962af_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/accel/fxls8962af-core 0x921a9f82 fxls8962af_spi_regmap_conf -EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0x422e390a mma7455_core_probe -EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0x5b994c7b mma7455_core_regmap -EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0xb99fd2c7 mma7455_core_remove -EXPORT_SYMBOL_GPL drivers/iio/adc/ad7091r-base 0x1217ac11 ad7091r_probe -EXPORT_SYMBOL_GPL drivers/iio/adc/ad7091r-base 0x2824114f ad7091r_regmap_config -EXPORT_SYMBOL_GPL drivers/iio/adc/ad7606 0x02efd3c6 ad7606_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/adc/ad7606 0x1410650c ad7606_probe -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x104bdebe ad_sd_validate_trigger -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x1493051c ad_sd_write_reg -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x14dac4b7 ad_sigma_delta_single_conversion -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x4e0fa024 ad_sd_read_reg -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x77054902 ad_sd_calibrate -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x90cd1962 ad_sd_init -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xa858b8c7 ad_sd_set_comm -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xa862a3db devm_ad_sd_setup_buffer_and_trigger -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xd6f2a145 ad_sd_reset -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xf885798b ad_sd_calibrate_all -EXPORT_SYMBOL_GPL drivers/iio/adc/adi-axi-adc 0x13f67a67 adi_axi_adc_conv_priv -EXPORT_SYMBOL_GPL drivers/iio/adc/adi-axi-adc 0x3febff22 devm_adi_axi_adc_conv_register +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x791c633d i3c_master_do_daa +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x879a61c5 i3c_device_disable_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x885bea50 i3c_generic_ibi_get_free_slot +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x98cef88a i3c_driver_register_with_owner +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xa2976787 i3c_master_entdaa_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xaf64fd1d i3c_master_add_i3c_dev_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xb0219fce i3c_device_match_id +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xc49f1938 i3c_master_set_info +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xc6d06f9c i3c_device_enable_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xc76bfb9a i3c_master_disec_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xd3dc693e i3c_master_register +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xfd3c5a7d i3c_master_enec_locked +EXPORT_SYMBOL_GPL drivers/iio/accel/adxl372 0x49b9fc86 adxl372_probe +EXPORT_SYMBOL_GPL drivers/iio/accel/adxl372 0x6c7bed0d adxl372_readable_noinc_reg +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x2094854e bmc150_accel_core_remove +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x230d4193 bmc150_accel_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x2c7e5c8f bmc150_regmap_conf +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x8dcd72e7 bmc150_accel_core_probe +EXPORT_SYMBOL_GPL drivers/iio/accel/bmi088-accel-core 0x32efeea9 bmi088_accel_core_probe +EXPORT_SYMBOL_GPL drivers/iio/accel/bmi088-accel-core 0x5bc2de3f bmi088_accel_core_remove +EXPORT_SYMBOL_GPL drivers/iio/accel/bmi088-accel-core 0xca389a54 bmi088_accel_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/accel/bmi088-accel-core 0xccbcfc69 bmi088_regmap_conf +EXPORT_SYMBOL_GPL drivers/iio/accel/fxls8962af-core 0x33fc3ab8 fxls8962af_spi_regmap_conf +EXPORT_SYMBOL_GPL drivers/iio/accel/fxls8962af-core 0x7cc138a0 fxls8962af_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/accel/fxls8962af-core 0x9122ae7d fxls8962af_i2c_regmap_conf +EXPORT_SYMBOL_GPL drivers/iio/accel/fxls8962af-core 0xf483f69c fxls8962af_core_probe +EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0x691f51c6 mma7455_core_remove +EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0x7ce57c57 mma7455_core_regmap +EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0xf618618c mma7455_core_probe +EXPORT_SYMBOL_GPL drivers/iio/adc/ad7091r-base 0x1e393356 ad7091r_probe +EXPORT_SYMBOL_GPL drivers/iio/adc/ad7091r-base 0x20dbb8bd ad7091r_regmap_config +EXPORT_SYMBOL_GPL drivers/iio/adc/ad7606 0x77da88ac ad7606_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/adc/ad7606 0x8d968e51 ad7606_probe +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x31e04efa devm_ad_sd_setup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x351c71bb ad_sd_set_comm +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x370fd49b ad_sigma_delta_single_conversion +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x3d69130b ad_sd_reset +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x51e90bf5 ad_sd_read_reg +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x8c17b5af ad_sd_init +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x9a4e7f60 ad_sd_validate_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xbf4d4641 ad_sd_write_reg +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xdaef6fdf ad_sd_calibrate +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xf4fd1a3c ad_sd_calibrate_all +EXPORT_SYMBOL_GPL drivers/iio/adc/adi-axi-adc 0xe885132f adi_axi_adc_conv_priv +EXPORT_SYMBOL_GPL drivers/iio/adc/adi-axi-adc 0xf0c58ee4 devm_adi_axi_adc_conv_register 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 0x7233bd6e iio_channel_cb_get_channels -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x79b13426 iio_channel_cb_get_iio_dev +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x453abb83 iio_channel_cb_get_channels +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x6607d74c 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 0x7e8702ec iio_channel_get_all_cb +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0xbc52f120 iio_channel_cb_get_iio_dev EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0xfff2647d iio_channel_cb_set_buffer_watermark -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x00b39b90 iio_dma_buffer_enable -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x0d15309b iio_dma_buffer_disable -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x45b802b6 iio_dma_buffer_init -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x83401fd8 iio_dma_buffer_release -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x90167308 iio_dma_buffer_request_update -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x922d9dd9 iio_dma_buffer_data_available -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x9920f53f iio_dma_buffer_read -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xd0883a3c iio_dma_buffer_block_done -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xd121abd6 iio_dma_buffer_set_bytes_per_datum -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xdc1b9981 iio_dma_buffer_block_list_abort -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xe73f4452 iio_dma_buffer_exit -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xfc9185f8 iio_dma_buffer_set_length -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dmaengine 0x9b0603c2 devm_iio_dmaengine_buffer_setup -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x2197cb01 devm_iio_hw_consumer_alloc -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x2e292e94 iio_hw_consumer_alloc +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x1c6a3e34 iio_dma_buffer_disable +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x343a9c96 iio_dma_buffer_set_length +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x5966d4df iio_dma_buffer_block_done +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x63a6f142 iio_dma_buffer_release +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x7b8f5d22 iio_dma_buffer_set_bytes_per_datum +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x9208a2f5 iio_dma_buffer_data_available +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xa31d716f iio_dma_buffer_exit +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xa944afa4 iio_dma_buffer_block_list_abort +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xbd7b5855 iio_dma_buffer_enable +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xe29ed777 iio_dma_buffer_request_update +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xe48e7da1 iio_dma_buffer_init +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xee68ae78 iio_dma_buffer_read +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dmaengine 0xe7266de2 devm_iio_dmaengine_buffer_setup EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x3391543d iio_hw_consumer_disable +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x33ef20a7 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 0xf1676d79 devm_iio_triggered_buffer_setup_ext -EXPORT_SYMBOL_GPL drivers/iio/buffer/kfifo_buf 0x142f6fb6 devm_iio_kfifo_buffer_setup_ext -EXPORT_SYMBOL_GPL drivers/iio/chemical/bme680_core 0x55d9c220 bme680_core_probe -EXPORT_SYMBOL_GPL drivers/iio/chemical/sps30 0x911713c8 sps30_probe -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x0b9aa313 cros_ec_sensors_read_lpc -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x36c75a01 cros_ec_motion_send_host_cmd -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x42451f6c cros_ec_sensors_read_cmd -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x5ec0b573 cros_ec_sensors_push_data -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x619ea807 cros_ec_sensors_core_read -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x6af8b79a cros_ec_sensors_ext_info -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x841c05fc cros_ec_sensors_core_init +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0xeddd038c iio_hw_consumer_alloc +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-triggered-buffer 0x2f065127 devm_iio_triggered_buffer_setup_ext +EXPORT_SYMBOL_GPL drivers/iio/buffer/kfifo_buf 0xdf476b9a devm_iio_kfifo_buffer_setup_ext +EXPORT_SYMBOL_GPL drivers/iio/chemical/bme680_core 0x3df957bb bme680_core_probe +EXPORT_SYMBOL_GPL drivers/iio/chemical/sps30 0x70c88676 sps30_probe +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x00a66bb7 cros_ec_sensors_core_write +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x0c4c51f2 cros_ec_sensors_push_data +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x35244a71 cros_ec_sensors_core_init +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x55443ffc cros_ec_sensors_core_read_avail +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x610059bb cros_ec_sensors_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x66d96255 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 0xaf91e7ce cros_ec_sensors_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xb10bf423 cros_ec_sensors_core_read_avail -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xdb49c7b4 cros_ec_sensors_core_write -EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0xc0f2414a ad5592r_probe -EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0xe2cb0203 ad5592r_remove -EXPORT_SYMBOL_GPL drivers/iio/dac/ad5686 0x4acda31c ad5686_probe -EXPORT_SYMBOL_GPL drivers/iio/dac/ad5686 0xa927bc85 ad5686_remove -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x5892414a bmg160_core_probe -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x8c57a847 bmg160_core_remove -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xffe5404f bmg160_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0x42ec6317 fxas21002c_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0x70069c36 fxas21002c_core_remove -EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0xa8730600 fxas21002c_core_probe -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x135b3c26 adis_update_scan_mode -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x26cf0d9d __adis_initial_startup -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x2cc3ae5c __adis_write_reg -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x45be93c3 adis_single_conversion -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x6239c2f6 devm_adis_probe_trigger -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x9c9e542d __adis_reset -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xaf88e32a __adis_update_bits_base -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xb0686418 adis_init -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xc590178c __adis_check_status -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xc96f3ac4 __adis_read_reg -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xf47a7081 devm_adis_setup_buffer_and_trigger -EXPORT_SYMBOL_GPL drivers/iio/imu/bmi160/bmi160_core 0x616e263d bmi160_core_probe -EXPORT_SYMBOL_GPL drivers/iio/imu/fxos8700_core 0xf848a2f7 fxos8700_core_probe -EXPORT_SYMBOL_GPL drivers/iio/imu/inv_icm42600/inv-icm42600 0x55dabc3d inv_icm42600_regmap_config -EXPORT_SYMBOL_GPL drivers/iio/imu/inv_icm42600/inv-icm42600 0x755a0ffa inv_icm42600_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/imu/inv_icm42600/inv-icm42600 0xbd350536 inv_icm42600_core_probe -EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0x3284b831 inv_mpu_pmops -EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0xb0ec7161 inv_mpu_core_probe -EXPORT_SYMBOL_GPL drivers/iio/imu/st_lsm9ds0/st_lsm9ds0 0x29a1cb84 st_lsm9ds0_probe -EXPORT_SYMBOL_GPL drivers/iio/imu/st_lsm9ds0/st_lsm9ds0 0x51e199c0 st_lsm9ds0_remove -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0ba12234 iio_validate_scan_mask_onehot -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0bb56ea8 iio_read_channel_scale -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0e6ee722 iio_write_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0e7b246a iio_device_release_direct_mode -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x14566060 __devm_iio_trigger_register -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1da38573 iio_read_avail_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xbf1cec41 cros_ec_sensors_core_read +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xc5d47a49 cros_ec_motion_send_host_cmd +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xe30c7c11 cros_ec_sensors_read_lpc +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xee7e1c44 cros_ec_sensors_ext_info +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0x42a79f8b ad5592r_probe +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0x968635ae ad5592r_remove +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5686 0xca194ec1 ad5686_probe +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5686 0xf0b13a81 ad5686_remove +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x0a78a809 bmg160_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x54d934a1 bmg160_core_probe +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x8987ddc6 bmg160_core_remove +EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0x0b06997e fxas21002c_core_probe +EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0x400d37d3 fxas21002c_core_remove +EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0x525a172a fxas21002c_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x0f88a93a devm_adis_probe_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x3d07736e __adis_initial_startup +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x4538dfb9 adis_update_scan_mode +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x46e7a5ee __adis_reset +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x8d7af716 devm_adis_setup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x90d1cd08 adis_init +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x916b3120 adis_single_conversion +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xd12b58d3 __adis_check_status +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xdf2d4a48 __adis_update_bits_base +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xeb9a8609 __adis_write_reg +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xf630d267 __adis_read_reg +EXPORT_SYMBOL_GPL drivers/iio/imu/bmi160/bmi160_core 0xa413e39a bmi160_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/fxos8700_core 0xf29901c1 fxos8700_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_icm42600/inv-icm42600 0x06397f34 inv_icm42600_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_icm42600/inv-icm42600 0x210c576a inv_icm42600_regmap_config +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_icm42600/inv-icm42600 0xe51b2970 inv_icm42600_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0x2ce9e51b inv_mpu_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0xc7195077 inv_mpu_pmops +EXPORT_SYMBOL_GPL drivers/iio/imu/st_lsm9ds0/st_lsm9ds0 0x8506f426 st_lsm9ds0_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/st_lsm9ds0/st_lsm9ds0 0xd77a40f2 st_lsm9ds0_remove +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x09ce485f iio_read_channel_offset +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0d24d42a iio_enum_write +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x11ac4e5c devm_iio_device_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x159e380b iio_get_channel_ext_info_count EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x20ce344a iio_format_value +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x21931080 iio_read_max_channel_raw EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x26f6b499 iio_str_to_fixpoint -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2a048707 iio_dealloc_pollfunc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2a37baf0 devm_iio_trigger_alloc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x30748d46 iio_channel_release_all -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x309f9ea2 iio_map_array_register -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x30e96445 iio_device_attach_buffer -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x334c3c0e iio_read_max_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x35305578 devm_iio_channel_get -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x37ce07ff iio_device_claim_direct_mode -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x389b7e18 iio_read_channel_average_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3b02f4a8 iio_write_channel_attribute -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3b7052a9 iio_read_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x46e31fc2 iio_read_channel_processed_scale -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4d4f0947 iio_push_to_buffers -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4da81600 iio_channel_release -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x511b036f iio_read_channel_offset -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x55d457a2 iio_buffer_put -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5f9c53fb iio_read_channel_ext_info -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6afa99d9 iio_get_debugfs_dentry -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6bdea5b8 iio_buffer_get -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x70872f6b iio_update_buffers -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x708c8614 iio_enum_available_read -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8acb86a7 iio_write_channel_ext_info -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8e522036 iio_map_array_unregister -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x94f9f69b of_iio_channel_get_by_name -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa5ab2bc5 iio_read_avail_channel_attribute -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xac82afb4 __devm_iio_device_register -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xaeb95da0 iio_read_channel_attribute -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb0399cce iio_channel_get -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb5626181 iio_device_id -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xbbe7bfb4 iio_alloc_pollfunc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xbc6a70a4 iio_read_channel_processed -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc9be0a16 devm_iio_channel_get_all -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd12c94a9 iio_convert_raw_to_processed -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd95fdd67 iio_enum_read -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe50b00d0 iio_get_channel_type -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xeaa6d04b iio_get_channel_ext_info_count -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xef2020b3 iio_enum_write -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf416f3c7 devm_of_iio_channel_get_by_name -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf745f843 iio_show_mount_matrix -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xfb5d3ff0 iio_channel_get_all -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xfd31b95b devm_iio_device_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2b56b799 iio_map_array_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2b74b0c2 iio_write_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3260c4d0 iio_channel_get_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x327e2857 devm_iio_channel_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3d8dcd51 iio_map_array_unregister +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3f946d19 iio_channel_release +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4667ba22 iio_get_debugfs_dentry +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4b901ed2 iio_show_mount_matrix +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x556fa595 iio_read_channel_average_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x58b5eed2 iio_push_to_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5f370a03 iio_get_channel_type +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x649e1fee iio_channel_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x65f07201 iio_update_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x686a3ea9 devm_iio_trigger_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6f93ae70 devm_iio_channel_get_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x755f2c35 iio_read_avail_channel_attribute +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x75f81b3d iio_buffer_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7842b4d1 iio_read_avail_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7e569308 iio_dealloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8adcb21b iio_device_release_direct_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8ec44acc iio_buffer_put +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8ee72574 iio_device_claim_direct_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x92ecbbdb __devm_iio_trigger_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x94cb2fb6 iio_channel_release_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x966f9b4e iio_alloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9ebf522e of_iio_channel_get_by_name +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9fdff534 iio_device_id +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa8378d4b iio_read_channel_ext_info +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa920a831 devm_of_iio_channel_get_by_name +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb0c8a915 iio_read_channel_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb645a621 iio_read_channel_processed_scale +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc65a0801 iio_read_channel_attribute +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc72c4cfc iio_validate_scan_mask_onehot +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc879fb77 iio_write_channel_ext_info +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xca360787 iio_device_attach_buffer +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd2a5a18d iio_enum_available_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xdc59621a iio_read_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe8380724 __devm_iio_device_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xeedd5562 iio_write_channel_attribute +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf4b6d15e iio_convert_raw_to_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf94dfb5f iio_enum_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf9c9d6cd iio_read_channel_scale EXPORT_SYMBOL_GPL drivers/iio/magnetometer/rm3100-core 0x0a1424e0 rm3100_volatile_table -EXPORT_SYMBOL_GPL drivers/iio/magnetometer/rm3100-core 0x2d44aaab rm3100_common_probe +EXPORT_SYMBOL_GPL drivers/iio/magnetometer/rm3100-core 0x0bd0d5a8 rm3100_common_probe EXPORT_SYMBOL_GPL drivers/iio/magnetometer/rm3100-core 0xaa911f08 rm3100_readable_table EXPORT_SYMBOL_GPL drivers/iio/magnetometer/rm3100-core 0xcc7209be rm3100_writable_table -EXPORT_SYMBOL_GPL drivers/iio/pressure/mpl115 0xdd0505dd mpl115_probe -EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0x85173b03 zpa2326_isreg_readable -EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0x8c63505c zpa2326_probe -EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0xa6ff58be zpa2326_remove -EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0xdb220364 zpa2326_isreg_writeable -EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0xe1278b51 zpa2326_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0xf04023cb zpa2326_isreg_precious +EXPORT_SYMBOL_GPL drivers/iio/pressure/mpl115 0x80688d03 mpl115_probe +EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0x146360f8 zpa2326_isreg_writeable +EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0x36a4cdf0 zpa2326_probe +EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0x41d37080 zpa2326_isreg_readable +EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0x4c35364c zpa2326_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0x60d9b3bd zpa2326_isreg_precious +EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0x9a7bd302 zpa2326_remove EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x09fd492c rtrs_send_hb_ack -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x3e3d4b21 rtrs_init_hb -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x477246dd rtrs_cq_qp_destroy -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x4c906227 rtrs_cq_qp_create -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x58a87bf2 rtrs_start_hb -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x604bef3f rtrs_iu_post_recv -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x6826895f rtrs_iu_alloc -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x739ba039 rtrs_stop_hb -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x9f701daf rtrs_post_recv_empty -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xa38632a8 rtrs_iu_post_rdma_write_imm -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xda50639f rtrs_iu_free -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xf3eebc6e rtrs_iu_post_send -EXPORT_SYMBOL_GPL drivers/input/ff-memless 0x7ae07220 input_ff_create_memless -EXPORT_SYMBOL_GPL drivers/input/matrix-keymap 0xf2d583fa matrix_keypad_parse_properties +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x240d1e96 rtrs_stop_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x264112be rtrs_iu_alloc +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x4b30a330 rtrs_init_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x9acab05e rtrs_cq_qp_create +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xa0c44e3a rtrs_post_recv_empty +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xaa4c5331 rtrs_iu_free +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xad67da12 rtrs_iu_post_recv +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xb560a693 rtrs_start_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xb9688440 rtrs_iu_post_send +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xe89e4b9e rtrs_cq_qp_destroy +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xe93881e7 rtrs_iu_post_rdma_write_imm +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xeae8820a rtrs_send_hb_ack +EXPORT_SYMBOL_GPL drivers/input/ff-memless 0xed4eaa57 input_ff_create_memless +EXPORT_SYMBOL_GPL drivers/input/matrix-keymap 0x05d5fc3c matrix_keypad_parse_properties +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x306caa04 adxl34x_probe EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x49a4fcbd adxl34x_remove EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x66535a18 adxl34x_suspend -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x96b56ac7 adxl34x_probe EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xe4586827 adxl34x_resume -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x261dfeae rmi_unregister_function_handler -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x391d6a17 rmi_2d_sensor_abs_report -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x4ca749de rmi_set_attn_data -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x7a3abb92 rmi_2d_sensor_abs_process -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x96f10959 rmi_driver_suspend -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xa841ae7b rmi_dbg -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xb612dc4c rmi_2d_sensor_of_probe -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xb80a1cdc rmi_of_property_read_u32 -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xbfa348bc rmi_register_transport_device -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xc7b63203 rmi_2d_sensor_rel_report -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xe242114f __rmi_register_function_handler -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xebc5d4e2 rmi_driver_resume -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xfe9c8433 rmi_2d_sensor_configure_input -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x7aed35a0 cyttsp4_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xbb4ceb10 cyttsp4_remove -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xea013266 cyttsp4_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x54bb7c33 cyttsp_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0xa5594da7 cyttsp_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x80fd7706 cyttsp_i2c_write_block_data -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0xcf27c3b8 cyttsp_i2c_read_block_data -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xcfd9971c tsc200x_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xeeba2f62 tsc200x_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xf07cf4c8 tsc200x_regmap_config -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xf91bca37 tsc200x_remove -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x094e5edc wm97xx_unregister_mach_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x204c2df2 wm97xx_reg_write -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x2ebf4a14 wm9712_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x3301574e wm9705_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x3f5e4b56 wm97xx_set_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x52812dfa wm97xx_set_suspend_mode -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x53e22bd6 wm97xx_reg_read -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x6177e6a5 wm97xx_register_mach_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x7689796f wm97xx_config_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xc92c3fc3 wm97xx_get_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xe2154a8a wm9713_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xef061cce wm97xx_read_aux_adc +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x0e409b87 rmi_2d_sensor_abs_report +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x2013282b rmi_2d_sensor_abs_process +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x290f3e67 rmi_register_transport_device +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x439a6732 rmi_2d_sensor_of_probe +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x70e6240e rmi_driver_suspend +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x74f13438 rmi_2d_sensor_configure_input +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x8660c818 rmi_set_attn_data +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x8b81bd40 rmi_driver_resume +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x943562dc rmi_of_property_read_u32 +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xb540453b rmi_dbg +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xcc208b62 rmi_unregister_function_handler +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xd33ba1b7 __rmi_register_function_handler +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xe80cba3b rmi_2d_sensor_rel_report +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x8fea185a cyttsp4_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xe801c315 cyttsp4_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xf5527120 cyttsp4_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0xa3352b23 cyttsp_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0xc854dd41 cyttsp_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x17d0a3b6 cyttsp_i2c_read_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x5764493c cyttsp_i2c_write_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x4a526368 tsc200x_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x4c69a4d1 tsc200x_regmap_config +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x69541065 tsc200x_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x696af2eb tsc200x_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x0c88d4be wm97xx_get_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x59667b7e wm97xx_unregister_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x69685cba wm97xx_set_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x73f5cff2 wm97xx_reg_read +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x7a72a540 wm9713_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x9e199a1d wm97xx_config_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xab66b884 wm9705_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xaf9752c8 wm97xx_register_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xb6d8a5de wm9712_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xca0ca62a wm97xx_reg_write +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xeeb8876d wm97xx_set_suspend_mode +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xf4b645b5 wm97xx_read_aux_adc EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-bcm-voter 0x0b39b783 qcom_icc_bcm_voter_commit -EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-bcm-voter 0x24757d0f of_bcm_voter_get EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-bcm-voter 0x2f573302 qcom_icc_bcm_voter_add -EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x04ffc762 qcom_icc_pre_aggregate -EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x2c493b8a qcom_icc_rpmh_probe -EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x3a9dc58e qcom_icc_aggregate -EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x497d9c53 qcom_icc_set -EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0xab4cecbb qcom_icc_rpmh_remove -EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0xc7eba0bd qcom_icc_xlate_extended -EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0xde441a87 qcom_icc_bcm_init +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-bcm-voter 0x3c1c7529 of_bcm_voter_get +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x09f68bca qcom_icc_pre_aggregate +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x14d4b8c3 qcom_icc_rpmh_remove +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x30dbdddb qcom_icc_aggregate +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x57ca2a49 qcom_icc_rpmh_probe +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x876ebf38 qcom_icc_set +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x8ef449f6 qcom_icc_bcm_init +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0xf9882cb0 qcom_icc_xlate_extended 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/iommu/iova 0x0a8beabb put_iova_domain @@ -12732,166 +12771,165 @@ EXPORT_SYMBOL_GPL drivers/iommu/iova 0xcb8c4eb0 alloc_iova EXPORT_SYMBOL_GPL drivers/iommu/iova 0xe2908238 find_iova EXPORT_SYMBOL_GPL drivers/iommu/iova 0xfb845e71 alloc_iova_fast -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x049f7a40 ipack_put_device -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x1e275055 ipack_device_add -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x2551eed5 ipack_device_init -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x41eab6da ipack_driver_unregister -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x4b56a431 ipack_bus_unregister -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x8601a964 ipack_driver_register -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xf063728b ipack_get_device -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xf7ff2eba ipack_bus_register -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xfa08bd8a ipack_device_del -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x06f74061 led_set_flash_brightness -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x32d5f120 devm_led_classdev_flash_register_ext -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x3c667847 led_classdev_flash_unregister -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x6feb3f8f led_update_flash_brightness -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x7e0cda5c led_classdev_flash_register_ext -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x96760a73 led_set_flash_timeout -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xbd295b2f led_get_flash_fault -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xbe9d79b7 devm_led_classdev_flash_unregister -EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x057a62fb led_classdev_multicolor_unregister -EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x6be793b4 led_classdev_multicolor_register_ext -EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x852292f0 devm_led_classdev_multicolor_unregister -EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x90eb81a6 devm_led_classdev_multicolor_register_ext -EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0xeb4a9dbd led_mc_calc_color_components -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x169ebc60 lp55xx_deinit_device -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x3195addb lp55xx_register_leds -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x5ee08d7d lp55xx_read -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x70980641 lp55xx_is_extclk_used -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x81301cf0 lp55xx_of_populate_pdata -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xb1b2f6af lp55xx_unregister_sysfs -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xd3a16f02 lp55xx_register_sysfs -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xda082e72 lp55xx_write -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xed4018db lp55xx_update_bits -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xfc670cb7 lp55xx_init_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x159eca86 ipack_bus_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x1f8dd14a ipack_put_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x550223f2 ipack_device_init +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x5bcb2bf2 ipack_driver_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xbb83e47a ipack_driver_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xc97883ac ipack_device_del +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xd79fa81c ipack_device_add +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xe7da5e5c ipack_get_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xea68eacf ipack_bus_register +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x0a361b62 led_get_flash_fault +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x17c45a54 devm_led_classdev_flash_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x1bedc394 led_classdev_flash_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x6055f0d1 led_update_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x898f3f70 devm_led_classdev_flash_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x9c1d4013 led_set_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xc67214e9 led_set_flash_timeout +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xff2cda4f led_classdev_flash_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x386c811d led_mc_calc_color_components +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x5d6418ef led_classdev_multicolor_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x5fadd02b devm_led_classdev_multicolor_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x7cc00e44 devm_led_classdev_multicolor_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0xd04fd87b led_classdev_multicolor_unregister +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x084d0fa2 lp55xx_init_device +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x19afe3dd lp55xx_deinit_device +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x59e97228 lp55xx_unregister_sysfs +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x63804067 lp55xx_update_bits +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x7d2367b3 lp55xx_of_populate_pdata +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xae90a3a1 lp55xx_is_extclk_used +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xbdd45305 lp55xx_write +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xd596ce59 lp55xx_read +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xf50af856 lp55xx_register_leds +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xf67e8e51 lp55xx_register_sysfs EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-audio 0x3bd45b0d ledtrig_audio_set EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-audio 0xce593c22 ledtrig_audio_get EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-camera 0x749e05f2 ledtrig_flash_ctrl EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-camera 0x7903e46e ledtrig_torch_ctrl -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x02c1418d __traceiter_bcache_btree_node_free EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x05907c93 __tracepoint_bcache_btree_insert_key EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x06bceaa1 __SCK__tp_func_bcache_btree_gc_coalesce -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x06d6c7cb __traceiter_bcache_gc_end EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0a62aea7 __tracepoint_bcache_btree_cache_cannibalize EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0bc0be45 __SCK__tp_func_bcache_bypass_sequential -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0be201f7 __traceiter_bcache_bypass_congested +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x124427fc __traceiter_bcache_journal_write EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x15f3de09 __SCK__tp_func_bcache_read_retry EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x17a83e40 __traceiter_bcache_writeback EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x181a1930 __SCK__tp_func_bcache_gc_copy EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1b083369 __SCK__tp_func_bcache_btree_set_root +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1b81e266 __traceiter_bcache_btree_node_alloc EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1c599ebe __traceiter_bcache_btree_gc_coalesce EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1c83d5b7 __SCK__tp_func_bcache_journal_entry_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1ed371d1 __traceiter_bcache_btree_set_root +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x20a72088 __traceiter_bcache_btree_node_alloc_fail EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x22ae6324 __SCK__tp_func_bcache_btree_node_split EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x25bbd6d5 __tracepoint_bcache_btree_write EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2766fb04 __traceiter_bcache_journal_replay_key EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2af60833 __SCK__tp_func_bcache_writeback_collision -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2b1f91fd __traceiter_bcache_gc_start -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2fa6fa46 __traceiter_bcache_read EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x30556300 __tracepoint_bcache_btree_node_alloc EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3079df16 __tracepoint_bcache_gc_end EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x31057c80 __tracepoint_bcache_journal_entry_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x40af907c __traceiter_bcache_btree_cache_cannibalize +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4646f43b __traceiter_bcache_request_start EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x46c66897 __SCK__tp_func_bcache_btree_read -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x46e0c3a9 __traceiter_bcache_btree_node_split -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x499a1aab __traceiter_bcache_invalidate EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4a2d1241 __SCK__tp_func_bcache_btree_node_compact -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4bcfeb26 __traceiter_bcache_journal_entry_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x51bd7d0c __traceiter_bcache_gc_start EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x51d0e534 __SCK__tp_func_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x52f374a7 __traceiter_bcache_btree_node_split EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5a227cbf __tracepoint_bcache_gc_copy EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5d9c8fc8 __SCK__tp_func_bcache_cache_insert +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5f1a50f6 __traceiter_bcache_journal_entry_full 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 0x61ec437d __traceiter_bcache_btree_insert_key EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x628aeadd __tracepoint_bcache_read EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6457cb54 __tracepoint_bcache_journal_write 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 0x66e36c42 __traceiter_bcache_read_retry EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x67abbb76 __tracepoint_bcache_btree_node_compact EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6e74dca7 __SCK__tp_func_bcache_btree_node_free +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x70264593 __traceiter_bcache_request_end EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x71388d39 __tracepoint_bcache_journal_full EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7267dab1 __tracepoint_bcache_request_start EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x72a3de4b __tracepoint_bcache_invalidate -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x76a3ebdf __traceiter_bcache_btree_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7968641e __traceiter_bcache_read_retry +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x78ca48f4 __traceiter_bcache_bypass_sequential EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x79eeb380 __SCK__tp_func_bcache_gc_copy_collision EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7b6679bd __tracepoint_bcache_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7c679b60 __traceiter_bcache_journal_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7ca0ac20 __traceiter_bcache_request_end EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x803c2c0b __tracepoint_bcache_btree_node_alloc_fail EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x80e3881d __SCK__tp_func_bcache_request_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x82f1d97f __traceiter_bcache_btree_node_free EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x82fa505e __tracepoint_bcache_btree_gc_coalesce +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x831d7d31 __traceiter_bcache_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x85b684be __traceiter_bcache_btree_cache_cannibalize EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8ad20d61 __SCK__tp_func_bcache_request_start EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8ae53615 __tracepoint_bcache_cache_insert EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8f8604ba __tracepoint_bcache_bypass_sequential -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x905b75dc __traceiter_bcache_journal_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x90aebf48 __traceiter_bcache_btree_set_root EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x92662b95 __tracepoint_bcache_writeback_collision -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x97748e65 __traceiter_bcache_btree_node_alloc EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x98ddc365 __tracepoint_bcache_bypass_congested EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9a6f4d9f __SCK__tp_func_bcache_read -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9b053584 __traceiter_bcache_alloc_fail EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9c271314 __tracepoint_bcache_btree_read EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9c29a067 __tracepoint_bcache_gc_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9cc8bab6 __traceiter_bcache_journal_full EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9ce21c84 __SCK__tp_func_bcache_journal_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9cf75063 __traceiter_bcache_btree_insert_key EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9d23546a __tracepoint_bcache_btree_set_root -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa11f9375 __traceiter_bcache_bypass_sequential +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9eedc451 __traceiter_bcache_invalidate EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa187023e __SCK__tp_func_bcache_alloc_fail EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa64134e4 __SCK__tp_func_bcache_journal_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa6796207 __traceiter_bcache_write 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 0xaeaa9a06 __traceiter_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb396c462 __traceiter_bcache_btree_node_compact +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb4db8add __traceiter_bcache_gc_end EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb5a62a8c __traceiter_bcache_cache_insert EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xba843c3f __SCK__tp_func_bcache_gc_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xbccaf777 __traceiter_bcache_btree_node_alloc_fail EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc7fd0138 __tracepoint_bcache_write EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc8ae4213 __SCK__tp_func_bcache_btree_node_alloc -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xcb65c1d7 __traceiter_bcache_btree_node_compact EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xcf12a58a __tracepoint_bcache_read_retry EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xda06fe86 __SCK__tp_func_bcache_btree_node_alloc_fail EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xda554237 __tracepoint_bcache_btree_node_split EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xdba23768 __tracepoint_bcache_journal_replay_key -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xdc5f30b0 __traceiter_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe12601b2 __traceiter_bcache_read EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe16c06b3 __SCK__tp_func_bcache_gc_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe2e650fa __traceiter_bcache_bypass_congested EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe754d114 __tracepoint_bcache_writeback EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xec29e22a __traceiter_bcache_gc_copy_collision EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xec92a163 __SCK__tp_func_bcache_btree_cache_cannibalize -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xefc56063 __traceiter_bcache_request_start EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf488bbfc __tracepoint_bcache_request_end EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf6249e5f __SCK__tp_func_bcache_journal_replay_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf7757b86 __traceiter_bcache_btree_read EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf7fba67a __tracepoint_bcache_btree_node_free +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf9e118f3 __traceiter_bcache_write EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfd6b5d80 __SCK__tp_func_bcache_btree_insert_key EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfda8097f __tracepoint_bcache_gc_copy_collision +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x04b33026 dm_cell_get_v2 EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x17dd39d6 dm_deferred_set_create +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x1e0c751d dm_cell_lock_promote_v2 EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2eb01e04 dm_deferred_set_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2fd70457 dm_get_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x53735a59 dm_cell_error -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x54a64d16 dm_bio_prison_free_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x5829d618 dm_bio_detain -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x5ed840fe dm_cell_lock_promote_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x5f0cdb93 dm_bio_prison_alloc_cell_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x3aa75952 dm_bio_prison_free_cell_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x435da8e9 dm_cell_visit_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x517e5d52 dm_cell_put_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x541cf0b3 dm_cell_lock_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x62772102 dm_cell_error +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x628e25d9 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 0x73cefe6a dm_cell_quiesce_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x707959ea dm_cell_promote_or_release EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x753e20b2 dm_bio_prison_create -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x8ea2f12a dm_cell_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x97ae0f70 dm_cell_release_no_holder -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xa6ea5caa dm_bio_prison_alloc_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x8220c525 dm_cell_release_no_holder +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x828a57ec dm_bio_detain +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x8dc81822 dm_cell_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x9f9a2d7e dm_cell_unlock_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x9fdc493b dm_bio_prison_alloc_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xa27f2084 dm_bio_prison_alloc_cell_v2 EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xace9b57b dm_bio_prison_destroy_v2 EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb6d5c65d dm_deferred_set_add_work EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb70b342a dm_bio_prison_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xbb91e167 dm_cell_unlock_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xc2544fce dm_cell_lock_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xc50e6ed7 dm_cell_visit_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xc90d59de dm_cell_put_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb783fe6f dm_get_cell 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 0xee6cbbe5 dm_cell_promote_or_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xfcb8f57f dm_cell_get_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xfcf13a15 dm_bio_prison_free_cell_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xddb76daf dm_cell_quiesce_v2 EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x0ad0dc4f dm_bufio_mark_buffer_dirty EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x111ab12a dm_bufio_mark_partial_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 0x6914c95f dm_bufio_client_create EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6aebce95 dm_bufio_issue_discard EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6d3f57bd dm_bufio_get_client EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x72f07bf4 dm_bufio_set_minimum_buffers @@ -12912,45 +12950,47 @@ 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 0xf437004d dm_bufio_client_create EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x03bb93e0 dm_cache_policy_get_name EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x0efbca4c btracker_promotion_already_present EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x5730f8ae dm_cache_policy_create EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x5adc2807 btracker_destroy EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x5b3dc349 dm_cache_policy_get_version EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x5de611a9 btracker_nr_writebacks_queued -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x712a1014 dm_cache_policy_register EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x87bee547 btracker_queue EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x8f647e48 dm_cache_policy_get_hint_size EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x90136207 dm_cache_policy_destroy 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 0xbf1a2968 btracker_create -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xc34f4290 dm_cache_policy_unregister +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xc28297c4 dm_cache_policy_unregister EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xccfe6409 btracker_nr_demotions_queued -EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0xb1de26bc dm_unregister_path_selector -EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0xd737eba1 dm_register_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xe811ae0a dm_cache_policy_register +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x4a2f4588 dm_unregister_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x64e96d8a 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 0x1f63d5f2 dm_rh_dirty_log -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x21c1d0dd dm_rh_delay -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x239daa89 dm_rh_inc_pending -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x3365a093 dm_rh_mark_nosync +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x08d0c2da 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 0x55bccd27 dm_region_hash_create +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x4cfda47b dm_rh_bio_to_region 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 0x7768b185 dm_rh_bio_to_region EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7774620f dm_rh_stop_recovery +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7bd484fc 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 0x8739ece9 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 0xbe38a431 dm_rh_recovery_prepare EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xd8aa4284 dm_rh_region_context +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xf0bef853 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 0xf9e19edb dm_rh_delay EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfd93482e dm_rh_recovery_in_flight EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0054f69d dm_tm_pre_commit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0700f3a3 dm_block_manager_create EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x11fbbe02 dm_bitset_set_bit EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x15085586 dm_btree_cursor_begin EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x1816383d dm_btree_find_highest_key @@ -12990,7 +13030,6 @@ EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7bc7621f dm_btree_cursor_end EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7e29c59d dm_bitset_clear_bit EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x807c17a2 dm_sm_disk_create -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x8459813d dm_block_manager_create EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x87c934be dm_tm_inc EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x88295b96 dm_tm_unlock EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x88998224 dm_disk_bitset_init @@ -13024,75 +13063,75 @@ EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf3e25192 dm_bm_checksum EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf82dba90 dm_btree_empty EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xfce51d79 dm_array_empty -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x099c99f0 cec_notifier_parse_hdmi_phandle -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x0acaf0ad cec_allocate_adapter -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x31ca4144 cec_transmit_done_ts -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x46baccc3 cec_s_phys_addr_from_edid -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x484271b0 cec_transmit_msg -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x4d3c5a5a cec_fill_conn_info_from_drm -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x56b78312 cec_received_msg_ts -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x597c7e68 cec_notifier_cec_adap_register -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x652d2b5f cec_queue_pin_hpd_event +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x10952d92 cec_queue_pin_cec_event +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x35af42a0 cec_queue_pin_5v_event +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x37391bb0 cec_delete_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x536681f4 cec_notifier_cec_adap_unregister +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x55037b5f cec_notifier_conn_register +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x5eeed0c3 cec_register_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x64d7812b cec_s_phys_addr +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x65c99fc0 cec_unregister_adapter EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x67e1dfdc cec_notifier_set_phys_addr_from_edid -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x67f90302 cec_queue_pin_cec_event -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x75c84478 cec_register_adapter -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x82722f35 cec_queue_pin_5v_event -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x9c4ef430 cec_unregister_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x6bbc099c cec_transmit_attempt_done_ts +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x83bc61f1 cec_transmit_msg +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x88809b5c cec_received_msg_ts EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xa01fbb6b cec_notifier_set_phys_addr +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xa923f774 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 0xbe4de675 cec_get_edid_phys_addr -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xc272998c cec_s_phys_addr -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xc89e722a cec_s_conn_info -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xcf2290c3 cec_s_log_addrs -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xd5ec3ab7 cec_notifier_conn_register -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xd978b0c9 cec_notifier_cec_adap_unregister -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xe3622409 cec_delete_adapter -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xe82786a2 cec_transmit_attempt_done_ts +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xc1a2f172 cec_allocate_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xd08be1b4 cec_s_log_addrs +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xd4471237 cec_notifier_parse_hdmi_phandle +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xd540f1e9 cec_notifier_cec_adap_register +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xe7b54c8b cec_fill_conn_info_from_drm +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xeb4950dc cec_queue_pin_hpd_event +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xf415f16a cec_transmit_done_ts +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xfb7a020d cec_s_conn_info EXPORT_SYMBOL_GPL drivers/media/common/b2c2/b2c2-flexcop 0x66c0289a b2c2_flexcop_debug -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x00c9cd7b saa7146_pgtable_free -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x03b2c009 saa7146_unregister_extension -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x42c66200 saa7146_pgtable_build_single -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xcb8dc2c4 saa7146_register_extension -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xcc3aaa1f saa7146_i2c_adapter_prepare -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xd4a7029d saa7146_vfree_destroy_pgtable -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xd646c0bb saa7146_setgpio -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xd6557308 saa7146_pgtable_alloc +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x08a82402 saa7146_vmalloc_build_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x0ad9d87d saa7146_vfree_destroy_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x23ee702f saa7146_setgpio +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x494d1148 saa7146_pgtable_alloc +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x52058e55 saa7146_pgtable_build_single +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x805fbfa6 saa7146_unregister_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x81a66009 saa7146_register_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xad94279d saa7146_i2c_adapter_prepare EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe3cd9b5c saa7146_debug -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xec0738f6 saa7146_vmalloc_build_pgtable -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xfd194818 saa7146_wait_for_debi_done -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x21db665d saa7146_vv_init -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x2b720a25 saa7146_unregister_device -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x3254c317 saa7146_start_preview -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xaf5ecb30 saa7146_set_hps_source_and_sync -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xc14e8af9 saa7146_register_device -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xc92e4db1 saa7146_vv_release -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xd68195a1 saa7146_stop_preview -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x0aabadb7 smscore_register_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x0f6b3b4b sms_board_setup -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x16f1e219 smscore_start_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x1870d229 smscore_get_board_id +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe5b48f98 saa7146_wait_for_debi_done +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xf9c72a66 saa7146_pgtable_free +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x0d66bf51 saa7146_start_preview +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x351ea773 saa7146_vv_init +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x5405ebe8 saa7146_register_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x59fef5e0 saa7146_set_hps_source_and_sync +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x9e9efb47 saa7146_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xa6744984 saa7146_stop_preview +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xc4672f06 saa7146_vv_release +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x1eb3b8c4 sms_board_event EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x21e36bf2 smscore_registry_getmode +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x2a15fce3 smscore_unregister_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x2c177601 smscore_onresponse EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x34bf0e61 smscore_translate_msg EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x37d91069 smsendian_handle_tx_message EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x45284ae9 smsendian_handle_rx_message -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x5313dd12 smscore_set_board_id -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x592ef511 sms_board_lna_control -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x593d4a9b smscore_get_device_mode -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x5a095e01 smscore_register_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x4d9a2870 smscore_set_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x565f5c7a sms_board_setup +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x5aaf11ed smscore_unregister_device EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x63222b29 smsclient_sendrequest -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x65ac017c smscore_putbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7244f6a6 sms_board_led_feedback EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x74ee9098 sms_board_load_modules EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7c576277 smsendian_handle_message_header +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x80c1d004 smscore_getbuffer EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x844539ae sms_get_board -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x95ff366c sms_board_power -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xa46dd631 smscore_unregister_hotplug -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xba089a3b sms_board_event -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xba9312d6 sms_board_led_feedback +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x95e31707 smscore_register_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xade6a605 smscore_register_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xb98f4168 sms_board_power EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbbdb5c42 smscore_unregister_client -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xc1010772 smscore_unregister_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xcdb98789 smscore_getbuffer -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xf9e0b0fa smscore_register_hotplug -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xff6d3d58 smscore_onresponse +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xd0a5c3fa sms_board_lna_control +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xf62b7c57 smscore_get_device_mode +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xf633f51d smscore_register_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xfc36d9f7 smscore_start_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xfe313975 smscore_putbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xfe38b344 smscore_get_board_id EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x03005a48 tpg_alloc EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x040dc7cd tpg_aspect_strings EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x4d1d285c tpg_init @@ -13111,338 +13150,338 @@ EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xf4aef3a4 tpg_gen_text EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xf65c5e46 tpg_fillbuffer 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 0x17cccf71 vb2_read -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x2651966e vb2_discard_done -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x2d660833 vb2_core_reqbufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x3c2316a4 vb2_core_expbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x47e4949c vb2_core_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x5d9ee9d3 vb2_buffer_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x11f7c4e9 vb2_wait_for_all_buffers +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x1d4c864f vb2_thread_stop +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x1eac1d23 vb2_discard_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x1fd53880 vb2_core_queue_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x2b337113 vb2_core_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x3d946cc5 vb2_core_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x4748a0b1 vb2_buffer_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x4be1a0b7 vb2_core_streamoff +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x526f5eab vb2_write +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x59512553 vb2_core_create_bufs EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x5f9e9fbf __tracepoint_vb2_buf_done -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x6146aa89 vb2_core_queue_init -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x6a53e904 __traceiter_vb2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x6e812d2b vb2_wait_for_all_buffers -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x70e67ae0 __traceiter_vb2_buf_done -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x7eff5a94 vb2_write -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x8c065f6b vb2_plane_cookie +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x62259529 __traceiter_vb2_buf_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x67205e2b vb2_core_querybuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x68f1073d __traceiter_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x77d0e125 vb2_request_buffer_cnt +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x7dc4fbaf vb2_core_qbuf EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x8d8f7cfd __tracepoint_vb2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x94deee6b vb2_mmap -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xaa719201 vb2_core_querybuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xb0707e87 vb2_core_streamon -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xb43b074b vb2_core_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x98af2bf8 vb2_core_queue_init +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xa44a7211 vb2_mmap +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xabd81e58 __traceiter_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xb5207d9a vb2_queue_error +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xb5c22979 vb2_core_streamon EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xb6f4b031 __SCK__tp_func_vb2_qbuf EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xb85ad0a8 __tracepoint_vb2_dqbuf EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xb9d2df39 __SCK__tp_func_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xc48f3ab1 vb2_core_expbuf 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 0xd1221ebc __traceiter_vb2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xd44bfae9 vb2_queue_error -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xda804590 __traceiter_vb2_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xdace7876 vb2_core_queue_release -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xe29d02cc vb2_core_create_bufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xe541082b vb2_core_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xcb60573c vb2_thread_start +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xe379b9e1 vb2_core_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xe397f0f2 vb2_request_object_is_buffer +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xe53a7f4c vb2_core_reqbufs EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xe58a2770 __tracepoint_vb2_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xe5c10f54 vb2_core_streamoff -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xeea5a32b vb2_request_object_is_buffer -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xf079b25a vb2_core_poll -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xf1b19005 vb2_thread_stop -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xf55fe378 vb2_request_buffer_cnt -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xfb9e8c35 vb2_plane_vaddr -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xfe158f16 vb2_thread_start -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0x30b4455b vb2_dma_contig_memops -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0x4e639fc8 vb2_dma_contig_set_max_seg_size -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-sg 0xd6e2c0f3 vb2_dma_sg_memops -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-memops 0xa97fca8a vb2_common_vm_ops -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x01410c24 vb2_ioctl_reqbufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x03bcdfa2 vb2_ioctl_querybuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x127be93a vb2_ioctl_expbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x181c2477 vb2_request_validate -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x30d2576b vb2_ops_wait_finish -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x33c99305 vb2_ioctl_create_bufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x3816a365 vb2_ops_wait_prepare -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x3c2590b4 vb2_ioctl_streamoff -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x3d440a03 vb2_ioctl_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x40b48fa8 vb2_queue_change_type -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x45e915a7 vb2_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x483ef8d0 vb2_request_queue -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x495bc6e4 vb2_create_bufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x508cdd30 vb2_ioctl_streamon -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x56de6a32 vb2_queue_release -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x5a9b11b3 vb2_streamon -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x5ca3385d vb2_fop_release -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x6d4eba11 vb2_fop_read -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x71dfea2e vb2_fop_mmap -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x75fd4c19 vb2_streamoff -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x8a61b6d4 vb2_reqbufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x9ab95e08 vb2_poll -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xa36df950 vb2_expbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xaa0eb70b vb2_queue_init_name -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xaab4368f vb2_ioctl_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xbc07d904 vb2_video_unregister_device -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xbfd1f5d3 vb2_ioctl_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xcc9a6473 vb2_fop_poll -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xd3f0a8b7 vb2_fop_write -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xd971f267 vb2_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xdfb214f6 vb2_find_timestamp -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xf1874cb6 vb2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xf4002359 vb2_queue_init -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xfcb21e1f _vb2_fop_release -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-vmalloc 0x5dbf3b5b vb2_vmalloc_memops -EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0x22533232 dvb_module_probe -EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0x23921d20 dvb_module_release -EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0x9dad39af dvb_create_media_graph -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/as102_fe 0x4483626f as102_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24117 0x808410a8 cx24117_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/gp8psk-fe 0xef3be48e gp8psk_fe_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mxl5xx 0xb11f4e8a mxl5xx_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0910 0xbf6c1b0c stv0910_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv6111 0x04f1502d stv6111_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0x25951c5c tda18271c2dd_attach -EXPORT_SYMBOL_GPL drivers/media/i2c/aptina-pll 0x89823bd4 aptina_pll_calculate -EXPORT_SYMBOL_GPL drivers/media/i2c/ccs-pll 0xc8878a82 ccs_pll_calculate -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x42cfdfa3 max9271_set_serial_link -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x4890f3f4 max9271_disable_gpios -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x4be7d7c2 max9271_clear_gpios -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x4e3e6692 max9271_configure_i2c -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x5b2f844d max9271_set_deserializer_address -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x6aa23145 max9271_wake_up -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xa59e997f max9271_set_gpios -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xa64165f3 max9271_enable_gpios -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xa701d2cf max9271_set_high_threshold -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xb2fb0489 max9271_verify_id -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xb3b0eb47 max9271_configure_gmsl_link -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xbac48d2c max9271_set_translation -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xf4e12f49 max9271_set_address -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x029d2193 media_request_object_put -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x0a6d77b6 media_device_register_entity_notify -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x0e3522cf media_request_object_complete -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x11374c70 media_request_object_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x1cc64141 media_pipeline_stop -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x2201add9 media_device_cleanup -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x23705fd2 media_entity_find_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x34006153 __media_device_usb_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x3b10b6c0 media_device_unregister_entity -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x3dda539f media_request_put -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x4964da09 media_graph_walk_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x4a7686fd __media_pipeline_stop -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x51600bd4 media_device_delete -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x558f7be4 media_device_usb_allocate -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x55c2f295 media_create_pad_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x5919caa5 media_remove_intf_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x5f648420 media_request_object_unbind -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x765dfb9c media_graph_walk_cleanup -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7d0a0c62 media_devnode_create -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x8068f07b __media_entity_setup_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x82d110a9 media_entity_setup_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x84d3b822 media_graph_walk_start -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x8ec8d40e media_create_pad_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x913dd884 media_entity_remove_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x91621903 __media_pipeline_start -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x98e86caf media_device_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x99ad2b38 media_device_unregister -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x9b9885c5 __media_remove_intf_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x9daca9eb media_device_unregister_entity_notify -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x9e867e0c media_create_intf_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xa4224c7b media_device_pci_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xa6ba31d9 __media_device_register -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xa6fcc7bf media_entity_remote_pad -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xa75debce media_request_object_bind -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xac4724d6 media_request_object_find -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xadb5d274 media_pipeline_start -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xadfd9859 media_get_pad_index -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xaf64b3c9 media_entity_pads_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xcea05e0e media_request_get_by_fd -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xcf9eafbd __media_remove_intf_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd24323d9 __media_entity_remove_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xda07fc0f media_remove_intf_links +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xf119e1df vb2_plane_cookie +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xf15771b8 vb2_plane_vaddr +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xf252a5c3 __traceiter_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xf581cb5b vb2_read +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0xb610b1a9 vb2_dma_contig_memops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0xbc12f71b vb2_dma_contig_set_max_seg_size +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-sg 0x032786d0 vb2_dma_sg_memops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-memops 0xb72bef34 vb2_common_vm_ops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x04156ddb vb2_create_bufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x0f6b30ee vb2_fop_write +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x182afece vb2_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x18bc757e vb2_find_timestamp +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x2c9c61c4 vb2_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x2cadea98 vb2_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x39d13026 vb2_expbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x3bf20f28 vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x4438f66b vb2_ops_wait_prepare +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x46b507c5 vb2_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x4a0d89fc vb2_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x4ccfd982 vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x597938a4 vb2_queue_change_type +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x5ec2b4d1 vb2_queue_init +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x68aae96f vb2_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x704b3a97 vb2_ops_wait_finish +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x7362e054 vb2_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x79359c6a vb2_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x7993f07f vb2_request_validate +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x8020cc9a vb2_fop_read +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x851707ba vb2_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x87aeb770 vb2_streamoff +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x8b8eebde vb2_request_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xa21551dc vb2_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xae740776 vb2_video_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xb0ff48c4 vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xb1b288b7 vb2_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xbe0589d3 _vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xd81e9c00 vb2_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xe1d53d23 vb2_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xf1f1dee2 vb2_queue_init_name +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xf811a63d vb2_fop_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xfe398554 vb2_queue_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xfec2d147 vb2_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-vmalloc 0xff0d8f6f vb2_vmalloc_memops +EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0x6d348a61 dvb_module_release +EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0xa3375bbb dvb_create_media_graph +EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0xa415e4ac dvb_module_probe +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/as102_fe 0x823aefc5 as102_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24117 0x7cf9fd08 cx24117_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/gp8psk-fe 0x7a720cc0 gp8psk_fe_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mxl5xx 0x7e56c349 mxl5xx_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0910 0x57ca9192 stv0910_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv6111 0x5408788d stv6111_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0x309a1110 tda18271c2dd_attach +EXPORT_SYMBOL_GPL drivers/media/i2c/aptina-pll 0xacc3c689 aptina_pll_calculate +EXPORT_SYMBOL_GPL drivers/media/i2c/ccs-pll 0xd8276fc0 ccs_pll_calculate +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x09775775 max9271_wake_up +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x23a842a9 max9271_clear_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x2de437e5 max9271_enable_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x4531b4d4 max9271_set_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x4aac8326 max9271_set_high_threshold +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x672f8ec1 max9271_set_address +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x9aff86f7 max9271_disable_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xa480c1fc max9271_set_deserializer_address +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xa58f7822 max9271_configure_gmsl_link +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xd9c97c36 max9271_configure_i2c +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xebba1f51 max9271_set_serial_link +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xf61c6570 max9271_set_translation +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xfdb34247 max9271_verify_id +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x03e07aa0 __media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x07554b40 media_device_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x0bcdf43c media_graph_walk_cleanup +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x1032bab7 media_device_pci_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x132e53b9 __media_remove_intf_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x19fd4332 media_request_object_complete +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x2268ddbc media_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x23f5cbc5 media_entity_pads_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x2b0222b2 media_remove_intf_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x2b84e372 media_devnode_create +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x31998425 media_request_object_put +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x355d5202 media_create_pad_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x38c7d56d media_devnode_remove +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x3a22f133 __media_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x47fa05db media_get_pad_index +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x4e16d718 media_create_pad_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x52cdde55 media_request_object_bind +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x64d91248 media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x652933c9 media_graph_walk_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x6a587318 media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x6d7472b3 media_request_object_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x79e082b5 media_remove_intf_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7ece1a8d media_entity_get_fwnode_pad +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x874ba71b media_graph_walk_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x8b093984 media_request_object_unbind +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x96630023 media_device_usb_allocate +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x9eebbcba __media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xa0914cd6 media_create_intf_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xa3e37650 media_device_register_entity_notify +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xa4670a2f media_device_delete +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xa851dc0d media_entity_remote_pad +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xaf0e105b __media_remove_intf_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xb611cb0b __media_device_register +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xbe24f680 media_device_cleanup +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc84a9e07 media_device_unregister_entity +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xca03ebed media_request_put +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xcd77fa5e media_request_object_find +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd6fd3a71 __media_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd9b9e1e4 media_request_get_by_fd +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xdaf9862e media_entity_find_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xdcbccaea media_device_register_entity EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe5ceecd6 media_entity_enum_cleanup -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf236c42b media_devnode_remove -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf514d664 media_device_register_entity -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf62a2af7 media_graph_walk_next +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe8589173 media_device_unregister +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xeac212ba __media_device_usb_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xeecc3cd1 media_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf8d8bca7 media_device_unregister_entity_notify EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xfc781c47 __media_entity_enum_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xfe1691a4 media_entity_get_fwnode_pad -EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0xdb79b06a cx88_setup_xc3028 -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x0104bb0c mantis_dma_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x0f1c21bb mantis_pci_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x0fedf29c mantis_i2c_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x11e48333 mantis_ca_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x147379ca mantis_input_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x1e462488 mantis_gpio_set_bits -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x2602b074 mantis_ca_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x44c4bf9a mantis_get_mac -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x4aebc0ac mantis_input_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x4f353645 mantis_pci_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x65d763d1 mantis_dvb_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xa13db6ed mantis_frontend_power -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xb31c8875 mantis_i2c_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xbdf5c1e5 mantis_dma_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xc950d422 mantis_uart_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xd71a217b mantis_frontend_soft_reset -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xd9261938 mantis_dvb_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xe0ff4a3d mantis_stream_control -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xf68ef361 mantis_uart_exit -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x010b7385 saa7134_s_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x0b2f9b47 saa7134_vb2_buffer_queue -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x1f72b304 saa7134_g_std -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x2da51a4b saa7134_querystd -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x370d0e08 saa7134_querycap -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x3c5a35c7 saa7134_ts_queue_setup -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x4542abbb saa7134_g_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x5e0fd28e saa7134_ts_buffer_prepare -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x5f1c01cf saa7134_stop_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x6365a580 saa7134_s_frequency -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x644f095e saa7134_ts_buffer_init -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x697dd039 saa7134_ts_start_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x7939bf25 saa7134_ts_stop_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x7f938f36 saa7134_s_std -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x94f0bab5 saa7134_s_tuner -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x9f4dd804 saa7134_g_frequency -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xcdf99195 saa7134_ts_qops -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xefc71a03 saa7134_enum_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xf13ed829 saa7134_g_tuner -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x04543aec ttpci_budget_init -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x1c2e381c ttpci_budget_deinit -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x21957438 ttpci_budget_set_video_port -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x4eb4562f ttpci_budget_debiwrite -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x619a2ce4 ttpci_budget_init_hooks +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xfff05134 media_graph_walk_next +EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0x26de8acf cx88_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x00415822 mantis_dma_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x08b8145d mantis_uart_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x2634fee6 mantis_pci_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x393ad0cd mantis_stream_control +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x4194932d mantis_input_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x57217154 mantis_uart_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x6142b9f3 mantis_ca_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x6970ca2b mantis_gpio_set_bits +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x738714e7 mantis_dma_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x7861279f mantis_frontend_soft_reset +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x844bc74f mantis_dvb_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x88b9a9d4 mantis_input_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x916bce15 mantis_ca_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xa8f5eab6 mantis_i2c_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xa96810c7 mantis_get_mac +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xd345f59d mantis_pci_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xdb33a673 mantis_i2c_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xf032f6ca mantis_frontend_power +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xf78d8b8a mantis_dvb_init +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x04483515 saa7134_g_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x1db6dc00 saa7134_s_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x45bb3114 saa7134_g_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x6bef7f40 saa7134_ts_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x80e50355 saa7134_s_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x86896ecd saa7134_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x8cfb54c8 saa7134_querycap +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x8e59bf49 saa7134_s_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x96eb37d4 saa7134_s_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x9d980202 saa7134_querystd +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xad47436f saa7134_ts_start_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xb276d1a4 saa7134_ts_queue_setup +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xb65b6396 saa7134_g_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xc0359ad6 saa7134_enum_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xcaf2de86 saa7134_vb2_buffer_queue +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xdbc99515 saa7134_g_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xdcdcd658 saa7134_ts_buffer_init +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xe262fd28 saa7134_ts_buffer_prepare +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xebe4ffb1 saa7134_ts_qops +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x0a0dec5c ttpci_budget_irq10_handler +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x5a4d48ac ttpci_budget_debiwrite +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x6f2b91ba ttpci_budget_debiread EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x7948c222 budget_debug -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x9805dc74 ttpci_budget_irq10_handler -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xdf960398 ttpci_budget_debiread -EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0x1e986a41 mccic_shutdown -EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0x6f1624c8 mccic_resume -EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0xab3fb732 mccic_register -EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0xba2c4ca3 mccic_irq -EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0xf9ad1200 mccic_suspend -EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x35d2bd48 vpu_get_plat_device -EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x3cfa9032 vpu_mapping_dm_addr -EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x5cdef07d vpu_get_vdec_hw_capa -EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x83e66a62 vpu_load_firmware -EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x863a7bad vpu_wdt_reg_handler -EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x98037a1d vpu_ipi_register -EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x9b650d75 vpu_get_venc_hw_capa -EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0xddfe1e1c vpu_ipi_send +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x8d7526d7 ttpci_budget_deinit +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xb908e1bb ttpci_budget_init +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xc95af742 ttpci_budget_init_hooks +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xf78e87e1 ttpci_budget_set_video_port +EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0x17ee6d47 mccic_register +EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0x8f753caf mccic_resume +EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0xc2ce6f0f mccic_suspend +EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0xd8acd34d mccic_irq +EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0xdf072b26 mccic_shutdown +EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x04d84445 vpu_get_venc_hw_capa +EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x5d462e82 vpu_wdt_reg_handler +EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x64c71a84 vpu_load_firmware +EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x7d314a1d vpu_ipi_register +EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x7f9e195b vpu_mapping_dm_addr +EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0xa8005167 vpu_get_vdec_hw_capa +EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0xb584a91c vpu_ipi_send +EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0xb74003e3 vpu_get_plat_device EXPORT_SYMBOL_GPL drivers/media/platform/rcar-fcp 0x3d858696 rcar_fcp_put EXPORT_SYMBOL_GPL drivers/media/platform/rcar-fcp 0x4ad5d888 rcar_fcp_enable -EXPORT_SYMBOL_GPL drivers/media/platform/rcar-fcp 0x539e1cd9 rcar_fcp_get_device EXPORT_SYMBOL_GPL drivers/media/platform/rcar-fcp 0x5fe6f6e8 rcar_fcp_disable EXPORT_SYMBOL_GPL drivers/media/platform/rcar-fcp 0x9877c29f rcar_fcp_get -EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0x014eaa0e vsp1_du_init -EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0x0e442e63 vsp1_du_map_sg -EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0x12044054 vsp1_du_atomic_begin -EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0x26cb0060 vsp1_du_atomic_update -EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0x90f2c340 vsp1_du_unmap_sg -EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0xbf6084bf vsp1_du_setup_lif -EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0xd2fa1e14 vsp1_du_atomic_flush -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x0146c5db xvip_enum_frame_size -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x05188b57 xvip_cleanup_resources +EXPORT_SYMBOL_GPL drivers/media/platform/rcar-fcp 0xe41eb23d rcar_fcp_get_device +EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0x1ca3c87d vsp1_du_atomic_update +EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0x24ccf7e8 vsp1_du_setup_lif +EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0x3287bf03 vsp1_du_unmap_sg +EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0x42732852 vsp1_du_atomic_begin +EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0x698a7899 vsp1_du_atomic_flush +EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0xb96c45af vsp1_du_map_sg +EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0xd1eff47c vsp1_du_init +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x0a35e330 xvip_enum_mbus_code +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x3c27daf7 xvip_init_resources EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x43738fab xvip_set_format_size -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x8137404a xvip_enum_mbus_code -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x857b3811 xvip_clr_and_set -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xa3d71446 xvip_clr_or_set +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x65b6e99d xvip_clr_and_set +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x7503685d xvip_of_get_format +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xa7f8551e xvip_enum_frame_size EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xb67940fb xvip_get_format_by_fourcc -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xbca8b22a xvip_init_resources -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xbd8d8681 xvip_of_get_format EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xe08e6063 xvip_get_format_by_code +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xe5bb21da xvip_clr_or_set +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xf470d2f8 xvip_cleanup_resources EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0x3c16a6b1 xvtc_generator_stop +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0x3e174d58 xvtc_of_get EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0x47d7900b xvtc_generator_start EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0xa8a0f912 xvtc_put -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0xa95be5f3 xvtc_of_get -EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x1caf7150 radio_tea5777_init -EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x703849a3 radio_tea5777_exit -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x09b1e8fe si470x_ctrl_ops -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x1f9aefe5 si470x_start -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x472c1d9a si470x_set_freq -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xb7e118e7 si470x_viddev_template -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xbb27ede6 si470x_stop -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x18d8bb73 rc_keydown_notimeout +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x604d1714 radio_tea5777_init +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0xd8901462 radio_tea5777_exit +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x1e441d13 si470x_viddev_template +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x7862fff0 si470x_ctrl_ops +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x8d948ce2 si470x_start +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xc45e02ef si470x_set_freq +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xd672b711 si470x_stop +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x02acb316 rc_keyup +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x1c5c9822 devm_rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x1fb81007 lirc_scancode_event EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x28af3c3f rc_map_unregister -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x37e1080f rc_keydown -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x4b59aa8f ir_raw_event_store_edge -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x50774117 rc_allocate_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x531065dd lirc_scancode_event -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x5c8fd2a8 rc_keyup -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x5d1d0811 rc_unregister_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x92f453df rc_register_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x9a899d9c ir_raw_event_set_idle -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x9cd52bbc devm_rc_allocate_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xaeab16f4 ir_raw_event_store_with_filter -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xc14ee769 ir_raw_event_handle -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xc35ce14d rc_g_keycode_from_table -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xd25acb8b rc_repeat +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x3e96c327 rc_g_keycode_from_table +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x48a97bea rc_keydown_notimeout +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x4afdbc89 ir_raw_event_store +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x4bf5e069 ir_raw_event_set_idle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x702d43ea ir_raw_event_store_edge +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x76247637 devm_rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x8679cbdf ir_raw_event_store_with_filter +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x87f86eef rc_repeat +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x8ab768e1 rc_unregister_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x9ec86578 rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xa798b18c rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xc4a5e159 rc_keydown +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xc63bc4f8 ir_raw_event_store_with_timeout +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xcd2f9de0 ir_raw_event_handle EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xe1bc9681 rc_map_get -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xe5126d1f devm_rc_register_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xe6f761be ir_raw_event_store_with_timeout EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xe7648541 rc_map_register -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xec3b8ff8 rc_free_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xf63cb399 ir_raw_event_store -EXPORT_SYMBOL_GPL drivers/media/tuners/mt2063 0xf95160d8 mt2063_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/mt20xx 0x4d46b161 microtune_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5007t 0xece1a21e mxl5007t_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/r820t 0x723eeb5c r820t_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda18271 0x754a5811 tda18271_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda827x 0x87a7cbb4 tda827x_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x2e0828ea tda829x_probe -EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x51e5671a tda829x_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda9887 0x550b7ee8 tda9887_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0xf5136d0e tea5761_autodetection -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0xfc566e75 tea5761_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x3c27dbf8 tea5767_autodetection -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0xc6a5e5fd tea5767_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tuner-simple 0x0189077d simple_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xec981f90 rc_free_device +EXPORT_SYMBOL_GPL drivers/media/tuners/mt2063 0xf0d76829 mt2063_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mt20xx 0xd6f4f58b microtune_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5007t 0x10aa0934 mxl5007t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/r820t 0x7abb8e57 r820t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda18271 0x9be2d859 tda18271_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda827x 0x9bc4715d tda827x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x84fef06e tda829x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0xab7e1124 tda829x_probe +EXPORT_SYMBOL_GPL drivers/media/tuners/tda9887 0xdbe6150a tda9887_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x72bb0597 tea5761_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0xe94e4ff1 tea5761_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x965ccd5d tea5767_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0xcfdd5f5b tea5767_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tuner-simple 0x0f6a1294 simple_tuner_attach EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x017ea7c7 cx231xx_tuner_callback -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x077d75e2 cx231xx_unmute_audio -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x18aa7e0c cx231xx_enable656 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x1d62aeec cx231xx_dev_uninit -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x20f3b465 cx231xx_init_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x41792df1 cx231xx_send_usb_command -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x4f163513 cx231xx_disable656 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x586714b3 cx231xx_uninit_bulk -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x6f373b05 cx231xx_get_i2c_adap -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x779e9f75 cx231xx_enable_i2c_port_3 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x7bf4a545 cx231xx_capture_start -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x7fc8ebfc cx231xx_set_alt_setting -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x9ad01979 cx231xx_init_bulk -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xa1736ac8 cx231xx_set_mode -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xa52da5ee cx231xx_dev_init -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xb0c03d03 cx231xx_init_vbi_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xc94dff48 is_fw_load -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xd0863d6b cx231xx_send_gpio_cmd -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xf33f1e7d cx231xx_uninit_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xf74f4684 cx231xx_uninit_vbi_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xffd6d170 cx231xx_demod_reset -EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0xc047b3b8 mxl111sf_demod_attach -EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0x5d4b24dd mxl111sf_tuner_attach -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x18bb7d06 em28xx_init_usb_xfer -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x1e704433 em28xx_alloc_urbs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x2133b0bb em28xx_read_ac97 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x4d37bb6b em28xx_uninit_usb_xfer -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x59d44866 em28xx_audio_setup +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x1a58573e cx231xx_init_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x1c81dc0a cx231xx_dev_init +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x1e2e1096 cx231xx_send_usb_command +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x2cc50dce cx231xx_disable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x4ee785db cx231xx_init_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x509a8e1c cx231xx_capture_start +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x68c58f37 cx231xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x709e1c12 cx231xx_uninit_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x860fc1d7 cx231xx_get_i2c_adap +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x8dde9616 cx231xx_demod_reset +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x986445bc cx231xx_dev_uninit +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xac5c123d cx231xx_enable_i2c_port_3 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xb07d9b4b cx231xx_uninit_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xc41eeb00 cx231xx_set_alt_setting +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xc7a56e8f cx231xx_send_gpio_cmd +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xda7e25ba cx231xx_uninit_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xe74f483b cx231xx_init_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xe871c1ac cx231xx_unmute_audio +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xeb5a4633 cx231xx_enable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xeec1624a is_fw_load +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0x5f062b8f mxl111sf_demod_attach +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0xc0c4ed59 mxl111sf_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x069d6e36 em28xx_write_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x1316a120 em28xx_write_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x1407c85c em28xx_write_regs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x19c791c7 em28xx_init_camera +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x28630f61 em28xx_gpio_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x45ade230 em28xx_read_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x4a2a0a67 em28xx_read_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x4fb2b4be em28xx_audio_setup +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x560c2a1b em28xx_stop_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x5ae110d7 em28xx_find_led EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x721f7cc7 em28xx_free_device -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7e7760e9 em28xx_toggle_reg_bits EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7fc8652c em28xx_tuner_callback -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x8187387c em28xx_setup_xc3028 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x83ac0675 em28xx_audio_analog_set -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x890c6776 em28xx_write_reg -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x8b3842d2 em28xx_write_reg_bits -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x8f7d3b16 em28xx_init_camera -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x9040822d em28xx_stop_urbs EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x921d7c65 em28xx_boards -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x93752796 em28xx_write_regs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x989004b9 em28xx_read_reg -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xc3f6cac5 em28xx_set_mode -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xcb2c8174 em28xx_write_ac97 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xcf420cf2 em28xx_find_led -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xefb73888 em28xx_gpio_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x97ca895a em28xx_toggle_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xa3db2277 em28xx_audio_analog_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xa8566dd5 em28xx_alloc_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xbf173b09 em28xx_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xbf7bec11 em28xx_init_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xc31d0eca em28xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xcea49cbe em28xx_write_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xf036db7d em28xx_uninit_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x21bed1d3 tm6000_set_reg EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x2309a6d6 tm6000_xc5000_callback -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x65e20bf4 tm6000_set_reg -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x8865b87e tm6000_get_reg EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x89b611dd tm6000_debug -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x9bc3295b tm6000_set_reg_mask +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xbbd02cb6 tm6000_get_reg +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xd42b6762 tm6000_set_audio_bitrate EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xdff8e89d tm6000_tuner_callback -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xe54c5a0f tm6000_set_audio_bitrate -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x19bc8be8 __v4l2_async_notifier_add_fwnode_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x1da5d13e v4l2_async_notifier_cleanup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x2225beaa __v4l2_async_notifier_add_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x5e453347 __v4l2_async_notifier_add_fwnode_remote_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x9c662041 __v4l2_async_notifier_add_i2c_subdev +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xf3a9434a tm6000_set_reg_mask +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x2b32a13d __v4l2_async_notifier_add_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x2dab2216 v4l2_async_notifier_cleanup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x66a631ab __v4l2_async_notifier_add_fwnode_remote_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x90a895fe __v4l2_async_notifier_add_fwnode_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0xc1779328 __v4l2_async_notifier_add_i2c_subdev EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x01612c0b v4l2_detect_gtf EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x08402862 v4l2_print_dv_timings EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x0958448b v4l2_set_edid_phys_addr @@ -13460,391 +13499,391 @@ EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xef15cc44 v4l2_hdmi_rx_colorimetry 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 0x8ce35605 v4l2_flash_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x9fe09c73 v4l2_flash_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0xc98243d2 v4l2_flash_indicator_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x0fec95de v4l2_fwnode_parse_link -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x37c76e56 v4l2_fwnode_endpoint_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x3ceefe91 v4l2_fwnode_connector_parse -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x3e150eb8 v4l2_fwnode_put_link -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x475101d7 v4l2_fwnode_device_parse -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x54b8a112 v4l2_async_register_subdev_sensor +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x4a7eb054 v4l2_flash_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0xedac88f4 v4l2_flash_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0xf6408204 v4l2_flash_indicator_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x0a41fbb9 v4l2_fwnode_parse_link +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x1e6af26a v4l2_fwnode_endpoint_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x58493215 v4l2_fwnode_put_link +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x5a9aff89 v4l2_fwnode_connector_add_link +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x5d2af24a v4l2_fwnode_endpoint_alloc_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x5f9c8cfe v4l2_async_notifier_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 0x9e5d11a8 v4l2_fwnode_endpoint_alloc_parse -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xd567761b v4l2_fwnode_endpoint_parse -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xd66f51e6 v4l2_fwnode_connector_add_link -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xf8edb5ba v4l2_async_notifier_parse_fwnode_endpoints +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x9d84fed0 v4l2_fwnode_endpoint_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xb5367be7 v4l2_async_register_subdev_sensor +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xd528393a v4l2_fwnode_device_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xe2096c02 v4l2_fwnode_connector_parse EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-h264 0x2c620a2d v4l2_h264_build_p_ref_list EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-h264 0x4b224860 v4l2_h264_init_reflist_builder EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-h264 0x5150f937 v4l2_h264_build_b_ref_lists -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x115f175a v4l2_m2m_fop_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x17b995b4 v4l2_m2m_ioctl_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1e7a5a78 v4l2_m2m_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x2a0c28f1 v4l2_m2m_ioctl_try_decoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x2c2c4c9c v4l2_m2m_buf_remove_by_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x2f3013e3 v4l2_m2m_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3474c83a v4l2_m2m_ioctl_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3b8135c9 v4l2_m2m_ioctl_stateless_decoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x444c8490 v4l2_m2m_ioctl_try_encoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4b121cf5 v4l2_m2m_fop_mmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x53fc2f45 v4l2_m2m_last_buffer_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x58926d9c v4l2_m2m_decoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x61352583 v4l2_m2m_ioctl_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x635d1535 v4l2_m2m_ioctl_stateless_try_decoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6ff9b98e v4l2_m2m_last_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x00410586 v4l2_m2m_buf_remove_by_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x00939c53 v4l2_m2m_update_stop_streaming_state +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0e7f6bf8 v4l2_m2m_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1837ff9d v4l2_m2m_ioctl_stateless_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x2a5c692e v4l2_m2m_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x2e74797a v4l2_m2m_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x30f784b3 v4l2_m2m_ioctl_try_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x32e6c92d v4l2_m2m_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3bfafdf9 v4l2_m2m_ioctl_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x40d1aa4d v4l2_m2m_register_media_controller +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4f8f5466 v4l2_m2m_ioctl_encoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4fe35b40 v4l2_m2m_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x50763a4c v4l2_m2m_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x540f0ac4 v4l2_m2m_request_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5b04e8f8 v4l2_m2m_ioctl_stateless_try_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x635634d3 v4l2_m2m_update_start_streaming_state +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6fffd887 v4l2_m2m_ctx_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x714d76b9 v4l2_m2m_streamoff EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x730f2eae v4l2_m2m_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7a6d962e v4l2_m2m_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7be9e4c0 v4l2_m2m_ctx_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7d08e63b v4l2_m2m_ioctl_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8d09fa37 v4l2_m2m_buf_remove -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x94d621eb v4l2_m2m_buf_copy_metadata -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x96d3cbd6 v4l2_m2m_ioctl_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x9a4ed9a9 v4l2_m2m_update_stop_streaming_state -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa4bf5f63 v4l2_m2m_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa6ed23e4 v4l2_m2m_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xabdacd07 v4l2_m2m_ioctl_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb131394e v4l2_m2m_register_media_controller -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb1cf9d77 v4l2_m2m_ioctl_decoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb5597d39 v4l2_m2m_ioctl_encoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb878e67a v4l2_m2m_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xbc8b5779 v4l2_m2m_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc36a91e3 v4l2_m2m_ioctl_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc3cef0cd v4l2_m2m_next_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x79e38241 v4l2_m2m_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x79e62fb1 v4l2_m2m_last_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7a865ee6 v4l2_m2m_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8188bb0b v4l2_m2m_ioctl_try_encoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x860174c2 v4l2_m2m_buf_copy_metadata +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x89ea7661 v4l2_m2m_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x91d27962 v4l2_m2m_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x93fd562f v4l2_m2m_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x9569659a v4l2_m2m_ctx_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x9ff65b5b v4l2_m2m_buf_remove_by_idx +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa280d87d v4l2_m2m_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb52205b6 v4l2_m2m_fop_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc1a23cbf v4l2_m2m_streamon EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc6fca5ad v4l2_m2m_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc98811e4 v4l2_m2m_ioctl_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xcfe97ad9 v4l2_m2m_encoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd13e574e v4l2_m2m_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd22986f0 v4l2_m2m_ctx_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd2c652a8 v4l2_m2m_buf_remove_by_idx -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd3ab8dea v4l2_m2m_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd71da9ac v4l2_m2m_try_schedule -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xde434fa1 v4l2_m2m_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe4b4814f v4l2_m2m_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xeed5aa3f v4l2_m2m_request_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xcb363d76 v4l2_m2m_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xcc494ad4 v4l2_m2m_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xccbbf065 v4l2_m2m_buf_remove +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd1ff9835 v4l2_m2m_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd2e1bef8 v4l2_m2m_encoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd5d166f2 v4l2_m2m_next_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd8da8774 v4l2_m2m_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe0a6d286 v4l2_m2m_try_schedule +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe28051af v4l2_m2m_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe691783f v4l2_m2m_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf114d20d v4l2_m2m_reqbufs EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf13ff84d v4l2_m2m_unregister_media_controller -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf86d43b7 v4l2_m2m_update_start_streaming_state -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf92d79fc v4l2_m2m_ioctl_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x01e7b5c8 videobuf_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x254a3ba2 videobuf_queue_is_busy -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x267105ce videobuf_mmap_mapper -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x2906291f videobuf_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x29c722d3 videobuf_mmap_setup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x29cf9c1b videobuf_waiton -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x323c1158 __videobuf_mmap_setup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x3bc99e7e videobuf_read_start -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x455728fb videobuf_read_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x457af278 videobuf_queue_cancel -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x6c6ae4ee videobuf_alloc_vb -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x744db807 videobuf_read_stream -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x7c90f68b videobuf_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x805b06bc videobuf_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x90e28abd videobuf_read_one -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x95fccdad videobuf_next_field -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xab287f87 videobuf_mmap_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xaec61b1a videobuf_poll_stream -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xbb1c70c8 videobuf_queue_to_vaddr -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xc7d0ec7e videobuf_queue_core_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd5083402 videobuf_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xeeb6e308 videobuf_iolock -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xf0162472 videobuf_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xf7b33447 videobuf_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x53a6b169 videobuf_dma_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x5b836a3b videobuf_to_dma -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x7fca587e videobuf_queue_sg_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf7a9e8c0 v4l2_m2m_last_buffer_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xfa497ddb v4l2_m2m_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x0b1711ad videobuf_alloc_vb +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x0b69bd29 __videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x1a414643 videobuf_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x1cc47805 videobuf_next_field +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x3f666c9c videobuf_poll_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x42ad8ad9 videobuf_read_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x4c424049 videobuf_queue_is_busy +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x5587cd3b videobuf_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x58320671 videobuf_waiton +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x59810836 videobuf_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x7a404708 videobuf_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x8120b5dc videobuf_iolock +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x815d1661 videobuf_read_one +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x9916bb79 videobuf_mmap_mapper +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xa0aabffd videobuf_read_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xacff72df videobuf_read_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xb63f4bb7 videobuf_queue_core_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xb931675f videobuf_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xbff8fadb videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xc179a670 videobuf_queue_cancel +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd5d08855 videobuf_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd642619c videobuf_mmap_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xf23f4cae videobuf_queue_to_vaddr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xf89dbbec videobuf_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x14f613b6 videobuf_to_dma +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x2c246bda videobuf_dma_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x6254bc0e videobuf_dma_unmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xa6c5e5d5 videobuf_queue_sg_init EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xa825c75b videobuf_sg_alloc -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xaab04a90 videobuf_dma_unmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x0f980d94 videobuf_vmalloc_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x8d5312e6 videobuf_to_vmalloc -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0xf4137318 videobuf_queue_vmalloc_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x060bed27 v4l2_i2c_subdev_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x06410358 v4l2_device_register -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x070a9aaf v4l2_subdev_link_validate -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x07d4ed44 v4l2_ctrl_request_hdl_find -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x08261478 v4l2_i2c_new_subdev_board -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0fb955c5 v4l2_fh_add -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x109d238e v4l2_event_queue_fh +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x3aa69c4f videobuf_queue_vmalloc_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x43eb502e videobuf_vmalloc_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x593a0398 videobuf_to_vmalloc +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x00dbad57 v4l2_get_link_freq +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0628e834 v4l2_event_wake_all +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x07b1e511 v4l2_subdev_get_fwnode_pad_1_to_1 +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x08f33f8c v4l2_i2c_new_subdev_board EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x11f3044c __SCK__tp_func_vb2_v4l2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1224004c v4l2_subdev_link_validate_default -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x124e34e5 v4l2_pipeline_pm_get -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1569af0d v4l2_subdev_notify_event -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x22c89611 v4l2_device_put -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x259c9d70 v4l2_i2c_subdev_set_name -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x26ba1297 v4l2_device_disconnect +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x122d9477 v4l2_subdev_link_validate_default +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1c0e37d8 v4l2_device_unregister +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1fe3afef __traceiter_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2653b302 v4l2_fh_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2aa59b62 __traceiter_vb2_v4l2_buf_done EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2ae0877b __SCK__tp_func_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2b4e0413 v4l2_device_set_name +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2b7342ed v4l2_event_queue_fh +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2cfd0eff v4l2_spi_new_subdev EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2ed9acd3 __tracepoint_vb2_v4l2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3e6ac378 v4l2_device_register_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x40f44f50 v4l2_mc_create_media_graph -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x44c65941 v4l2_event_subscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x44ce28ec v4l2_event_subdev_unsubscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x498fe3a9 v4l_vb2q_enable_media_source -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4b23c4a7 v4l2_ctrl_request_hdl_ctrl_find -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x522c8f4a __v4l2_ctrl_handler_setup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x544c5b72 v4l2_subdev_get_fwnode_pad_1_to_1 -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x55017de0 v4l2_fh_is_singular -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x631019f6 v4l2_get_link_freq +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3336875e v4l2_device_register +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x38842e9f v4l2_device_disconnect +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x38bba111 v4l2_pipeline_pm_get +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3b682b7a __traceiter_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4210cbb3 v4l2_g_parm_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x445fe45f v4l2_event_dequeue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4c81c0c7 v4l2_i2c_subdev_addr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x54bf85cf v4l2_fh_is_singular +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5550d55c v4l2_pipeline_link_notify +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x580be2d3 v4l2_pipeline_pm_put +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5e69942f v4l2_device_unregister_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x655097e0 v4l2_event_unsubscribe EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x659837ad __tracepoint_vb2_v4l2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x674ae0ed v4l2_event_unsubscribe_all +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x67d23b27 v4l2_fh_exit EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6ce1c95c __SCK__tp_func_vb2_v4l2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6ce67901 v4l2_i2c_subdev_addr EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6e9acc41 v4l2_fill_pixfmt_mp EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6f5ed23a __tracepoint_vb2_v4l2_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x740e92b0 __traceiter_vb2_v4l2_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x798834e8 v4l2_pipeline_link_notify -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7ad68795 v4l2_event_unsubscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7c0e16f6 v4l2_fh_exit -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7c2116a3 v4l2_create_fwnode_links_to_pad -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7c788204 v4l2_s_parm_cap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x80d0ac6d v4l2_i2c_new_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x821fd65e v4l2_event_pending -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8a717fc6 v4l2_device_unregister_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8d2c7028 v4l2_fh_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8d37816f v4l2_subdev_alloc_state -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8df23677 v4l2_device_unregister -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x92508336 v4l2_src_change_event_subscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x98ab7f5f v4l2_fh_del -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x993efb70 v4l2_event_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9c4b9cd8 v4l2_fh_open +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x73862249 v4l_disable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x75e7df7f v4l2_create_fwnode_links_to_pad +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x788cd4d7 v4l2_ctrl_request_hdl_find +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7c99ca15 v4l_enable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7ec3aaf3 v4l2_device_register_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8087680a v4l2_s_parm_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x815eb05c v4l2_event_subdev_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x85c5ee5e v4l2_i2c_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8c7f4f8b __v4l2_device_register_subdev_nodes +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x93dbb0fb v4l2_i2c_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9a45a93f v4l2_subdev_alloc_state +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9a461c0b v4l2_src_change_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9b6e1aff v4l2_event_unsubscribe_all EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9fef35ac v4l2_apply_frmsize_constraints -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xad0f81d4 v4l2_pipeline_pm_put +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa1e17b42 v4l2_subdev_link_validate +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa351a934 v4l2_event_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa8cc5515 v4l_vb2q_enable_media_source EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb13d41a0 v4l2_subdev_free_state -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb5877738 v4l2_device_set_name -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb9e4e510 v4l2_spi_subdev_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb9e62631 v4l2_fh_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc00df39b v4l2_event_wake_all -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc047dd37 v4l2_create_fwnode_links -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc198d65e v4l2_src_change_event_subdev_subscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc48e00fa __v4l2_device_register_subdev_nodes -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc6fa2a90 v4l2_spi_new_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc7485e2b __traceiter_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb1b2d9ed v4l2_i2c_subdev_set_name +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb313e168 v4l2_mc_create_media_graph +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbccc8799 v4l2_event_pending +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc07414dd v4l2_fh_del +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc85290dd __traceiter_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xca6e03d2 v4l2_device_put EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcc501597 v4l2_fill_pixfmt -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xce8e3ccd v4l2_g_parm_cap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcfe5c487 v4l_enable_media_source -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd0f33819 v4l2_event_dequeue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd891f5c5 __traceiter_vb2_v4l2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd8f14e5b v4l_disable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xce78dbb3 v4l2_create_fwnode_links +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd023eade v4l2_ctrl_request_hdl_ctrl_find +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd4766aaa v4l2_src_change_event_subdev_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xdaaf142b v4l2_spi_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xdd0c0c70 v4l2_fh_open +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe4ca28db v4l2_fh_init EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe5a33113 __SCK__tp_func_vb2_v4l2_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xecb4ed51 __traceiter_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xed172b39 v4l2_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xef42642d __v4l2_ctrl_handler_setup EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf001fcf8 __tracepoint_vb2_v4l2_buf_done 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 0xf7174931 v4l2_fh_add +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfe0c6178 v4l2_subdev_notify_event EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xff76573f __v4l2_find_nearest_size -EXPORT_SYMBOL_GPL drivers/memory/mtk-smi 0xa006fbd8 mtk_smi_larb_get -EXPORT_SYMBOL_GPL drivers/memory/mtk-smi 0xdde68b3d mtk_smi_larb_put -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xa428b11a pm80x_init -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xafcf5fa6 pm80x_pm_ops -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xcf701738 pm80x_regmap_config +EXPORT_SYMBOL_GPL drivers/memory/mtk-smi 0x64002641 mtk_smi_larb_get +EXPORT_SYMBOL_GPL drivers/memory/mtk-smi 0xa56dc3bf mtk_smi_larb_put +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x34419f87 pm80x_init +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x6c5b0656 pm80x_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xadde0934 pm80x_regmap_config EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xd99fd720 pm80x_deinit -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x1cbe3197 wm5110_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x2ea31196 arizona_free_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x0d2031ca wm5110_i2c_regmap EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x3dc526a9 arizona_of_match EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x4048fbbc wm8997_aod -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x474ffa6f wm5110_patch +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x415d8ec9 arizona_set_irq_wake EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x4c087981 wm5110_aod -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x51568cd2 arizona_set_irq_wake -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x5f86f0db wm5110_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x65fb9bb5 arizona_pm_ops -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x738def24 arizona_clk32k_disable -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x83983776 wm8997_patch -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x9457a727 wm8997_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x95aea344 arizona_dev_exit -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xa2d5a4e6 wm5102_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x4e18f086 wm5110_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x56e93118 arizona_clk32k_disable +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x5f58d649 arizona_dev_init +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x618332d5 arizona_clk32k_enable +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x74ae8249 wm5110_patch +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x85aedcac arizona_free_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x85c9a77a wm8997_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x996ba4f1 arizona_dev_exit +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xa1801b6b wm8997_patch +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xa2b9724f wm8998_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xa61bb8d4 cs47l24_spi_regmap EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xa6b70564 wm8997_irq EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xa727bd3b cs47l24_irq -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xa96c6b80 arizona_clk32k_enable EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xaaf78759 wm5110_irq -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xb3277212 wm8998_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xb3d00b9d cs47l24_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xb85a01a5 arizona_request_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xb0af404e arizona_request_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xb34ba4bb wm5102_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xbd8340ae cs47l24_patch +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xc3761ccc arizona_pm_ops EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xc81b43ab wm5110_revd_irq -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xcc1888a2 cs47l24_patch -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xe1ed65aa wm5102_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xfee7c74e arizona_dev_init -EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0x5eac3aa6 atc260x_device_probe -EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0xcbe89cc9 atc260x_match_device -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x0806cf5e da9150_bulk_write -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x76cb9a1f da9150_write_qif -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x94ce458d da9150_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xa382f9a0 da9150_set_bits -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xc9f8f7df da9150_bulk_read -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xcdaecfc7 da9150_read_qif -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xd1ff717c da9150_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xf07365f7 wm5102_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0x62b5d26c atc260x_device_probe +EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0x81ff7370 atc260x_match_device +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x33c4b82d da9150_bulk_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x593b86c3 da9150_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x805377db da9150_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x8841008d da9150_bulk_read +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xbf085b64 da9150_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xcc056fac da9150_write_qif +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xff8ae57b da9150_read_qif EXPORT_SYMBOL_GPL drivers/mfd/gateworks-gsc 0xa142a524 gsc_read EXPORT_SYMBOL_GPL drivers/mfd/gateworks-gsc 0xb7abd1c4 gsc_write EXPORT_SYMBOL_GPL drivers/mfd/iqs62x 0xa436f4de iqs62x_events -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x64acaad4 kempld_write32 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x72085b67 kempld_release_mutex -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x7331b648 kempld_read8 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x891af09e kempld_write8 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xa0ca9617 kempld_read16 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xb227956d kempld_write16 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xd8846343 kempld_read32 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xd986dba5 kempld_get_mutex -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x20c9b3ec lm3533_update -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x7b71f1c2 lm3533_read -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x8f5fb225 lm3533_write -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x110582b2 lm3533_ctrlbank_get_pwm -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x74034b53 lm3533_ctrlbank_set_brightness -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x83c82078 lm3533_ctrlbank_set_max_current -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x8617e406 lm3533_ctrlbank_get_brightness -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xb363f575 lm3533_ctrlbank_set_pwm -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xde7de135 lm3533_ctrlbank_disable -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xf8d20e9a lm3533_ctrlbank_enable -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xc1336e29 lp3943_write_byte -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xe6398a6e lp3943_read_byte -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xeb35d460 lp3943_update_bits -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x0a139793 cs47l92_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x0a1e4bd3 cs47l92_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x0a8ecc18 kempld_read32 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x3f8a366d kempld_get_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x48609d69 kempld_write32 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x5d26fded kempld_write16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xa961cfd7 kempld_release_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xb986ae60 kempld_read8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xd2e81691 kempld_write8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xf3e59c0f kempld_read16 +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x41cb747f lm3533_update +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x4f0798c1 lm3533_write +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x68499fa5 lm3533_read +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x0472037d lm3533_ctrlbank_set_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x2e50d0d9 lm3533_ctrlbank_get_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x6b5975cc lm3533_ctrlbank_disable +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x6f24549f lm3533_ctrlbank_set_max_current +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x7bf5d546 lm3533_ctrlbank_set_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x84237acb lm3533_ctrlbank_get_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xbdece09c lm3533_ctrlbank_enable +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x0c08b752 lp3943_write_byte +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x43cff2bb lp3943_update_bits +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x7b683fe3 lp3943_read_byte +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x0980894a cs47l92_patch EXPORT_SYMBOL_GPL drivers/mfd/madera 0x0f379262 madera_of_match -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x173560a6 cs47l35_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x1738bce6 cs47l35_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x1c692414 madera_dev_init -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x2547fbde cs47l85_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x254a279e cs47l85_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x3d928c6e cs47l90_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x3d9f502e cs47l90_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x3ff3cb3d cs47l35_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x455c6b89 cs47l90_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x488c5a8e cs47l92_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x48f0a4ad madera_dev_exit -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x49268a9f cs47l92_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x492b56df cs47l92_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x54007daa cs47l35_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x540da1ea cs47l35_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x6672e6d2 cs47l85_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x667f3a92 cs47l85_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x7ea79162 cs47l90_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x7eaa4d22 cs47l90_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x9ec3d766 cs47l15_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x9ece0b26 cs47l15_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xa19a8eaf cs47l15_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xb7dfa66b madera_pm_ops -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xddf6ca6a cs47l15_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xddfb162a cs47l15_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x1967eb96 cs47l15_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x196a37d6 cs47l15_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x21b4a526 cs47l85_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x23a39c24 madera_dev_exit +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x5a52f69a cs47l15_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x5a5f2ada cs47l15_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x5ef1938f cs47l15_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x8d9b2ae0 cs47l35_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x8db7ab63 cs47l92_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x8dba7723 cs47l92_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x90915c56 cs47l35_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x909c8016 cs47l35_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xa2e3c72e cs47l85_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xa2ee1b6e cs47l85_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xb1b3c0ef madera_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xb5cd1d2d cs47l90_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xba36b09e cs47l90_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xba3b6cde cs47l90_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xce82b66f cs47l92_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xce8f6a2f cs47l92_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xd3a4415a cs47l35_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xd3a99d1a cs47l35_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xd841b1d2 madera_dev_init +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xe1d6da22 cs47l85_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xe1db0662 cs47l85_32bit_spi_regmap EXPORT_SYMBOL_GPL drivers/mfd/madera 0xebe384cb madera_name_from_type -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xfa9830ed cs47l85_patch -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x0f78c4e9 mc13xxx_variant_mc13892 -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x4be84704 mc13xxx_common_init -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x4fc28fc9 mc13xxx_variant_mc13783 -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x5dcd7aa1 mc13xxx_variant_mc34708 -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x636ef1fb mc13xxx_common_exit -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xf0d3605e mc13xxx_adc_do_conversion +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xf903ad92 cs47l90_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xf90e71d2 cs47l90_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x006187a4 mc13xxx_variant_mc13892 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x32326adb mc13xxx_adc_do_conversion +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x40dbcc84 mc13xxx_variant_mc13783 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x52d439ec mc13xxx_variant_mc34708 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x60d54f2f mc13xxx_common_init +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x7a5f1cd3 mc13xxx_common_exit EXPORT_SYMBOL_GPL drivers/mfd/motorola-cpcap 0xa226dbe8 cpcap_sense_virq -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x0094fe33 pcf50633_read_block -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x0837e2db pcf50633_irq_unmask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x0f0c6cee pcf50633_irq_mask_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x1e84936b pcf50633_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x3c5f668e pcf50633_reg_clear_bits -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x60beacbb pcf50633_reg_set_bit_mask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x82515cd6 pcf50633_write_block -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xb3aa017b pcf50633_irq_mask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xb73eb7ca pcf50633_free_irq -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xced0ff4b pcf50633_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xfdfa3a11 pcf50633_register_irq -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x283edac8 pcf50633_adc_sync_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0xd87f0309 pcf50633_adc_async_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x21993cf3 pcf50633_gpio_invert_set -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x3e44af17 pcf50633_gpio_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x5e5f2d80 pcf50633_gpio_power_supply_set -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xa8148be3 pcf50633_gpio_invert_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xf23a8022 pcf50633_gpio_set -EXPORT_SYMBOL_GPL drivers/mfd/rave-sp 0xe7011dc8 devm_rave_sp_register_event_notifier +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x09f7509e pcf50633_free_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x0c904dd5 pcf50633_irq_unmask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x2a33e38d pcf50633_write_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x49ff9542 pcf50633_reg_set_bit_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x68d56c8b pcf50633_reg_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x81b1bafd pcf50633_register_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x8bdb0a47 pcf50633_irq_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x9676f876 pcf50633_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xe6539c3d pcf50633_read_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xf027f738 pcf50633_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xffeaddf3 pcf50633_irq_mask_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x122dda64 pcf50633_adc_sync_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x1f38f68a pcf50633_adc_async_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x0772a0d9 pcf50633_gpio_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x5268a029 pcf50633_gpio_power_supply_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x9e017afe pcf50633_gpio_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xc588c5cd pcf50633_gpio_invert_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xff664444 pcf50633_gpio_invert_get +EXPORT_SYMBOL_GPL drivers/mfd/rave-sp 0x5e6f1ce9 devm_rave_sp_register_event_notifier EXPORT_SYMBOL_GPL drivers/mfd/rave-sp 0xeecaf484 rave_sp_exec EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0x56d1a8c5 retu_read EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0xa074c8b6 retu_write -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0814aad0 si476x_core_cmd_fm_phase_div_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0bd26bce si476x_core_cmd_am_acf_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x10d1bb54 si476x_core_i2c_xfer -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x11a15249 si476x_core_is_in_am_receiver_mode -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x18e32380 si476x_core_stop -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x21c31b5a si476x_core_cmd_am_seek_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x28be77d9 si476x_core_cmd_fm_seek_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3644277e si476x_core_has_am -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3f050f06 si476x_core_cmd_am_tune_freq -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x432767ae si476x_core_cmd_agc_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x43a191cd si476x_core_cmd_power_up -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5a58b208 si476x_core_cmd_fm_phase_diversity -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x646257bf si476x_core_cmd_fm_acf_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7b5ea3d6 si476x_core_cmd_set_property -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7fb88d25 si476x_core_is_a_secondary_tuner -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x82630069 si476x_core_cmd_intb_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x88ef8130 si476x_core_cmd_fm_tune_freq -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x909b67d0 si476x_core_has_diversity -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9886ec6b si476x_core_cmd_zif_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa05ab88e si476x_core_cmd_ana_audio_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa0aca8b2 si476x_core_cmd_get_property -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb382671f si476x_core_is_powered_up -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb5ca8278 si476x_core_cmd_dig_audio_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc8628c25 si476x_core_is_a_primary_tuner -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xcac49a9c si476x_core_cmd_fm_rds_blockcount -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe2df196b si476x_core_cmd_fm_rsq_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xec581b23 si476x_core_cmd_func_info -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xede99f11 si476x_core_cmd_ic_link_gpo_ctl_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xef441836 si476x_core_cmd_power_down -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf0f52620 devm_regmap_init_si476x -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf2e923a1 si476x_core_cmd_am_rsq_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf355a7e5 si476x_core_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf70b2713 si476x_core_cmd_fm_rds_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xfee7b29a si476x_core_set_power_state -EXPORT_SYMBOL_GPL drivers/mfd/ssbi 0x5d7ee1d1 ssbi_read -EXPORT_SYMBOL_GPL drivers/mfd/ssbi 0x989c5a5f ssbi_write -EXPORT_SYMBOL_GPL drivers/mfd/stmfx 0x81a78a56 stmfx_function_enable -EXPORT_SYMBOL_GPL drivers/mfd/stmfx 0x980750ed stmfx_function_disable -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x748d7473 am335x_tsc_se_set_once -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x7e5404f4 am335x_tsc_se_adc_done -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x9d86b707 am335x_tsc_se_set_cache -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xee60e61e am335x_tsc_se_clr -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x70703cc2 tps65218_set_bits -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x71014fe2 tps65218_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xcac76460 tps65218_clear_bits -EXPORT_SYMBOL_GPL drivers/mfd/ucb1400_core 0xe0b8f10f ucb1400_adc_read -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x39252c36 alcor_write32 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x5cd17acf alcor_write8 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xbdb8e348 alcor_write16 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xbfcb94e1 alcor_write32be -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xc49efb0f alcor_read32be -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xcd79757c alcor_read32 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xd20a9a49 alcor_read8 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x28de73d8 rtsx_pci_switch_output_voltage -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x41f16049 rtsx_pci_read_phy_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x43830034 rtsx_pci_complete_unfinished_transfer -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x51ec1790 rtsx_pci_add_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x6e18b680 rtsx_pci_card_pull_ctl_disable -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x7041601e rtsx_pci_transfer_data -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x753f4b2f rtsx_pci_write_ppbuf -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x7e7b5280 rtsx_pci_dma_transfer -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x90882aff rtsx_pci_write_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x90e6b5eb rtsx_pci_dma_map_sg -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x917e0c5e rtsx_pci_card_exclusive_check -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x91d41832 rtsx_pci_stop_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x927c4996 rtsx_pci_send_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xa25d6b63 rtsx_pci_read_ppbuf -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xa296a8db rtsx_pci_card_exist -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xb1597c7e rtsx_pci_card_power_on -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xb3afb46a rtsx_pci_read_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xc6e8004b rtsx_pci_switch_clock -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xc8618615 rtsx_pci_card_pull_ctl_enable -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xe22094e2 rtsx_pci_send_cmd_no_wait -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xe338bb32 rtsx_pci_write_phy_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xe389b3a0 rtsx_pci_card_power_off -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xfa3d7d4d rtsx_pci_dma_unmap_sg -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xfa47607b rtsx_pci_start_run -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x12ee27d1 rtsx_usb_send_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x144364d1 rtsx_usb_add_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x2c2691d3 rtsx_usb_transfer_data -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x549ed9fd rtsx_usb_write_ppbuf -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x67f76389 rtsx_usb_write_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x6f797b0f rtsx_usb_read_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xb70c5bff rtsx_usb_read_ppbuf -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xd9870c57 rtsx_usb_get_rsp -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xdf5d681b rtsx_usb_get_card_status -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xe3130b4e rtsx_usb_card_exclusive_check -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xe6c38068 rtsx_usb_ep0_read_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xf244e994 rtsx_usb_switch_clock -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xf2d94db4 rtsx_usb_ep0_write_register -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x2a791eaa cb710_set_irq_handler -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x9641a206 cb710_sg_dwiter_read_next_block -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x9c83d5a7 cb710_sg_dwiter_write_next_block -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xbdade156 cb710_pci_update_config_reg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x146dc588 si476x_core_cmd_get_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x16fedb7e si476x_core_cmd_fm_rds_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x1a8513dc si476x_core_cmd_am_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x25a2a647 si476x_core_is_powered_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x2934d6f9 si476x_core_is_a_secondary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x2bd1d5ab si476x_core_cmd_intb_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x2cb2e7a4 si476x_core_cmd_am_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3cc467dc si476x_core_cmd_ic_link_gpo_ctl_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4981c7e6 si476x_core_has_am +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5843ab42 si476x_core_cmd_fm_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x59f429be si476x_core_cmd_fm_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5fe3d723 si476x_core_cmd_fm_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x66692c48 si476x_core_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x69229faf si476x_core_cmd_am_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6d18ea71 devm_regmap_init_si476x +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x86572ccf si476x_core_cmd_fm_rds_blockcount +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8c9fd918 si476x_core_cmd_fm_phase_div_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8cfa0e76 si476x_core_set_power_state +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x976a6bd3 si476x_core_cmd_am_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9ab6d07c si476x_core_is_a_primary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9b233466 si476x_core_cmd_power_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9bd90df3 si476x_core_cmd_func_info +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa1dec590 si476x_core_is_in_am_receiver_mode +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb526af49 si476x_core_cmd_fm_phase_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xbae229a1 si476x_core_cmd_zif_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc4bf8605 si476x_core_cmd_fm_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc8366fde si476x_core_cmd_power_down +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xcb009c5c si476x_core_cmd_agc_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd4c5249b si476x_core_cmd_set_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd9959fc4 si476x_core_has_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe8a0708b si476x_core_stop +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xeb059506 si476x_core_i2c_xfer +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xeced647f si476x_core_cmd_dig_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf3904857 si476x_core_cmd_ana_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/ssbi 0x0f253c61 ssbi_read +EXPORT_SYMBOL_GPL drivers/mfd/ssbi 0x6c45f608 ssbi_write +EXPORT_SYMBOL_GPL drivers/mfd/stmfx 0x49069578 stmfx_function_disable +EXPORT_SYMBOL_GPL drivers/mfd/stmfx 0x627be564 stmfx_function_enable +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x0946baa9 am335x_tsc_se_clr +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x4b0e11ff am335x_tsc_se_set_once +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x794a6845 am335x_tsc_se_adc_done +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xe9f8e09d am335x_tsc_se_set_cache +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x22e9ef72 tps65218_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x57614178 tps65218_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xd68afa20 tps65218_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/ucb1400_core 0xce7ea261 ucb1400_adc_read +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x0259192c alcor_read32 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x3013f1ed alcor_read8 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x30ef4ce0 alcor_write32 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x3ecd16c1 alcor_write16 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xcf800d32 alcor_read32be +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xd387841c alcor_write32be +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xe74011d4 alcor_write8 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x03ee29a0 rtsx_pci_dma_unmap_sg +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x117e4c21 rtsx_pci_send_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x11a963a8 rtsx_pci_read_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x121cdad6 rtsx_pci_card_power_off +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x1fdb0538 rtsx_pci_send_cmd_no_wait +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x269ca706 rtsx_pci_read_phy_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x3ccb47cd rtsx_pci_switch_output_voltage +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x4e1f561d rtsx_pci_start_run +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x5744c715 rtsx_pci_dma_transfer +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x5e11330d rtsx_pci_write_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x5fbadbeb rtsx_pci_card_power_on +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x6590b421 rtsx_pci_card_exist +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x8bb5df22 rtsx_pci_transfer_data +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xa1010b32 rtsx_pci_write_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xbfb4d139 rtsx_pci_stop_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xc87516a1 rtsx_pci_add_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xc95eb78e rtsx_pci_write_phy_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xcc2df157 rtsx_pci_complete_unfinished_transfer +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xcc395e02 rtsx_pci_dma_map_sg +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xd02ecb2c rtsx_pci_card_pull_ctl_disable +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xdd694efa rtsx_pci_card_pull_ctl_enable +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xe4b2507f rtsx_pci_read_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xeb94c4ac rtsx_pci_switch_clock +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xedc251b6 rtsx_pci_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x020bb05c rtsx_usb_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x0483c155 rtsx_usb_ep0_write_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x1e2bfd02 rtsx_usb_transfer_data +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x2a49bfad rtsx_usb_switch_clock +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x31241330 rtsx_usb_write_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x3b2fb856 rtsx_usb_send_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x45c809f4 rtsx_usb_get_card_status +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x461113f5 rtsx_usb_write_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x5f6599b2 rtsx_usb_get_rsp +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x7a570729 rtsx_usb_read_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x7e4a2abb rtsx_usb_read_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x9931afce rtsx_usb_add_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xebb21919 rtsx_usb_ep0_read_register +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x01e49083 cb710_sg_dwiter_read_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x87d98f3b cb710_sg_dwiter_write_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xe279ec45 cb710_pci_update_config_reg +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xf91dd91b 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 @@ -13858,1575 +13897,1575 @@ 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 0x212a204a enclosure_find -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x2d98cd61 enclosure_remove_device -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x37cd32c9 enclosure_register -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x3f7ec349 enclosure_component_register -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x4d62404c enclosure_unregister -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xae99a6e2 enclosure_for_each_device -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xb12fb223 enclosure_add_device -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xecf019c4 enclosure_component_alloc -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x0615cc7c lis3lv02d_remove_fs -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x142c8cd4 lis3_dev -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x703dac39 lis3lv02d_poweron -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xabecbf74 lis3lv02d_joystick_enable -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xb735fc57 lis3lv02d_joystick_disable -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xc88bd53f lis3lv02d_poweroff -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xcf6512b1 lis3lv02d_init_dt -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xd422cfa6 lis3lv02d_init_device -EXPORT_SYMBOL_GPL drivers/misc/pvpanic/pvpanic 0x2a971305 devm_pvpanic_probe +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x2f81ee71 enclosure_add_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x814f856b enclosure_unregister +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x8fd495d6 enclosure_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x94200fc9 enclosure_component_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xa1625923 enclosure_remove_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xb526257a enclosure_for_each_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xb52a12a2 enclosure_find +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xfbf27f75 enclosure_component_alloc +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x2fd2fa42 lis3lv02d_init_dt +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x6c190746 lis3lv02d_joystick_enable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x706f2915 lis3lv02d_poweron +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x734bb0bf lis3lv02d_joystick_disable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x75b58d2e lis3_dev +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xcdf74704 lis3lv02d_poweroff +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xde3198a8 lis3lv02d_remove_fs +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xfca463c2 lis3lv02d_init_device +EXPORT_SYMBOL_GPL drivers/misc/pvpanic/pvpanic 0x28496867 devm_pvpanic_probe EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0x3d0d25a9 st_unregister EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0xa231f8d3 st_register -EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0x25d5890a uacce_alloc -EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0x48c3f487 uacce_register -EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0x68096cbf uacce_remove -EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0x30642487 dw_mci_pltfm_remove -EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0x375b10e3 dw_mci_pltfm_pmops -EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0x41bf401e dw_mci_pltfm_register -EXPORT_SYMBOL_GPL drivers/mmc/host/renesas_sdhi_core 0x5a788f49 renesas_sdhi_probe -EXPORT_SYMBOL_GPL drivers/mmc/host/renesas_sdhi_core 0x5fd86a36 renesas_sdhi_remove -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x0e3c1325 tmio_mmc_host_alloc -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x2d4849eb tmio_mmc_host_runtime_resume +EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0x2205a106 uacce_alloc +EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0x79350dbe uacce_register +EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0xdb34d95d uacce_remove +EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0x1f4e9e7a dw_mci_pltfm_register +EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0x84e5ae9b dw_mci_pltfm_pmops +EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0xbe7c45d0 dw_mci_pltfm_remove +EXPORT_SYMBOL_GPL drivers/mmc/host/renesas_sdhi_core 0x3376b27a renesas_sdhi_probe +EXPORT_SYMBOL_GPL drivers/mmc/host/renesas_sdhi_core 0xb8f77673 renesas_sdhi_remove +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x1fb9f577 tmio_mmc_disable_mmc_irqs +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x3213b6e5 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 0x653e864e tmio_mmc_disable_mmc_irqs -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x7795c743 tmio_mmc_enable_mmc_irqs -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x8f577b2f tmio_mmc_host_remove -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x91207f9b tmio_mmc_host_probe -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xcd4c34de tmio_mmc_do_data_irq -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xcdb95237 tmio_mmc_host_runtime_suspend -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xde4b2dfb tmio_mmc_host_free -EXPORT_SYMBOL_GPL drivers/most/most_core 0x361a9d7c most_register_interface -EXPORT_SYMBOL_GPL drivers/most/most_core 0x3da1ac00 most_deregister_configfs_subsys -EXPORT_SYMBOL_GPL drivers/most/most_core 0x6ef1e78d most_stop_channel -EXPORT_SYMBOL_GPL drivers/most/most_core 0x79ec386a most_stop_enqueue -EXPORT_SYMBOL_GPL drivers/most/most_core 0x7b52bd96 most_put_mbo -EXPORT_SYMBOL_GPL drivers/most/most_core 0x7cb6b5ac most_register_configfs_subsys -EXPORT_SYMBOL_GPL drivers/most/most_core 0x7d231b53 channel_has_mbo -EXPORT_SYMBOL_GPL drivers/most/most_core 0xb2247d36 most_deregister_component -EXPORT_SYMBOL_GPL drivers/most/most_core 0xba7a3b38 most_resume_enqueue -EXPORT_SYMBOL_GPL drivers/most/most_core 0xc71f3daa most_submit_mbo -EXPORT_SYMBOL_GPL drivers/most/most_core 0xdd1a09d5 most_get_mbo -EXPORT_SYMBOL_GPL drivers/most/most_core 0xdf20ad86 most_deregister_interface -EXPORT_SYMBOL_GPL drivers/most/most_core 0xe1c82aba most_register_component -EXPORT_SYMBOL_GPL drivers/most/most_core 0xe762fc78 most_start_channel -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x0c536ecb cfi_cmdset_0001 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x337a4b23 cfi_cmdset_0003 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xce646eb5 cfi_cmdset_0200 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x2ceed9d7 cfi_cmdset_0002 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x52bc9207 cfi_cmdset_0006 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xdf171651 cfi_cmdset_0701 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0xbd29bf50 cfi_cmdset_0020 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x105c9f5d cfi_qry_mode_on -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xa5387de7 cfi_qry_present -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xb4f4cc06 cfi_qry_mode_off -EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0x111eb1b6 hyperbus_unregister_device -EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0x6bd7b365 hyperbus_register_device -EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0x0bf6b93f onenand_scan -EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0xd8e11b19 onenand_release -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0x078a1a0c brcmnand_probe -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0x0aec14a5 brcmnand_pm_ops -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0x0ce5ecd4 brcmnand_remove -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/denali 0xee6176ad denali_chip_init -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/sm_common 0x12e100d5 sm_register_device -EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0x1458dc0b spi_nor_scan -EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0x44225e51 spi_nor_restore -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x00715290 ubi_leb_unmap +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x5b72693f tmio_mmc_host_alloc +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x655797d4 tmio_mmc_host_probe +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x72894f7c tmio_mmc_host_runtime_resume +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x8337b05b tmio_mmc_do_data_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x89450944 tmio_mmc_host_remove +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xa8a91eaa tmio_mmc_host_runtime_suspend +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xd9f97fe2 tmio_mmc_enable_mmc_irqs +EXPORT_SYMBOL_GPL drivers/most/most_core 0x15c32c26 most_submit_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0x2c3d3811 most_stop_channel +EXPORT_SYMBOL_GPL drivers/most/most_core 0x5c093c63 most_get_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0x5df4f85c most_start_channel +EXPORT_SYMBOL_GPL drivers/most/most_core 0x87300826 most_register_component +EXPORT_SYMBOL_GPL drivers/most/most_core 0x8cfb18da most_stop_enqueue +EXPORT_SYMBOL_GPL drivers/most/most_core 0x8f278efc most_deregister_interface +EXPORT_SYMBOL_GPL drivers/most/most_core 0x954b4ad5 most_register_configfs_subsys +EXPORT_SYMBOL_GPL drivers/most/most_core 0x9d43467c most_deregister_component +EXPORT_SYMBOL_GPL drivers/most/most_core 0xca78759b most_deregister_configfs_subsys +EXPORT_SYMBOL_GPL drivers/most/most_core 0xd203f449 most_put_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0xe54a1241 most_resume_enqueue +EXPORT_SYMBOL_GPL drivers/most/most_core 0xeb389ff6 most_register_interface +EXPORT_SYMBOL_GPL drivers/most/most_core 0xefa733ab channel_has_mbo +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x446a6004 cfi_cmdset_0001 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x7b4345ec cfi_cmdset_0003 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x865d607a cfi_cmdset_0200 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x1a859cc8 cfi_cmdset_0006 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x64d7d718 cfi_cmdset_0002 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x972e189e cfi_cmdset_0701 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0xf510b19f cfi_cmdset_0020 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x859904f2 cfi_qry_present +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xc021e26f cfi_qry_mode_on +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xcb6aa709 cfi_qry_mode_off +EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0xc6649aaa hyperbus_register_device +EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0xce1abca4 hyperbus_unregister_device +EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0x065d44be onenand_release +EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0xf07b489a onenand_scan +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0x4af76cf7 brcmnand_pm_ops +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0x94ded244 brcmnand_probe +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0xa6500d9b brcmnand_remove +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/denali 0xa9dcfeb4 denali_chip_init +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/sm_common 0xa6b81024 sm_register_device +EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0x389d0db5 spi_nor_scan +EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0xad889192 spi_nor_restore +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x07f6f545 ubi_open_volume_path +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x095d1d31 ubi_leb_read_sg +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x1594fc2c ubi_leb_change +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x2b7570eb ubi_get_volume_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x354f0ce1 ubi_leb_write +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x362fe8cc 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 0x66011ab6 ubi_get_device_info -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x68a5d995 ubi_get_volume_info -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x6e42396a ubi_leb_erase -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x770fbc81 ubi_leb_read_sg -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x7ec44ca4 ubi_close_volume -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x82bbe545 ubi_leb_change +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x6d27b785 ubi_close_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x7afb691c ubi_open_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x83fb0794 ubi_do_get_device_info EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x85a8ee76 ubi_unregister_volume_notifier -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x89b8d5b0 ubi_open_volume_nm -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x8ed247a1 ubi_leb_read -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xb66d92fc ubi_is_mapped -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xbbdc82a0 ubi_leb_map -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf3b103db ubi_leb_write +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x916267d2 ubi_leb_unmap +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xa0a5a201 ubi_is_mapped +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xb0e06484 ubi_leb_read +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xb84728ac ubi_leb_erase +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xcd951384 ubi_leb_map EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf5ee9ba8 ubi_register_volume_notifier -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf6404f4f ubi_do_get_device_info -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xfb09ae6a ubi_open_volume_path -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xfb83c54e ubi_open_volume -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x0e1ce17b mux_control_select -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x2bde1f1f mux_control_try_select -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x30d7af8e mux_control_states -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x5d74d969 mux_control_put -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x892ec3de mux_control_deselect -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x89ae8788 mux_chip_unregister -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xa18b5b60 devm_mux_control_get -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xa691b3d2 devm_mux_chip_register -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xac587da5 mux_control_get -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xae74073a mux_chip_alloc -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xaf1b736b mux_chip_free -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xc5999d50 mux_chip_register -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xdfd6554b devm_mux_chip_alloc -EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x2182aeb1 arcnet_led_event -EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x9861b166 devm_arcnet_led_init -EXPORT_SYMBOL_GPL drivers/net/bareudp 0xab59757b bareudp_dev_create -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x35b518a6 c_can_power_up -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x5113e416 register_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x8c3c3dc9 c_can_power_down -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xae0af518 unregister_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xba7a16e5 free_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xdfda3428 alloc_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x18da5d06 unregister_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x2a34c50e free_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xc83024eb register_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xd62e14f4 alloc_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x02726a02 can_rx_offload_queue_tail +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x072ddfa3 mux_chip_unregister +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x1d1292af devm_mux_chip_alloc +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x3ab3bccc mux_control_get +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x42423f44 mux_chip_free +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x53f5e74f mux_control_deselect +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x7563dcca mux_chip_alloc +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x79f4d5e2 devm_mux_control_get +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xb71db97a mux_control_states +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xc1304b79 mux_chip_register +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xc5364879 devm_mux_chip_register +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xc5b26f31 mux_control_select +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xd60a848d mux_control_put +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xed6dba7f mux_control_try_select +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x71f3a2e6 devm_arcnet_led_init +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x893131b9 arcnet_led_event +EXPORT_SYMBOL_GPL drivers/net/bareudp 0x7e244643 bareudp_dev_create +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x0c1ec928 c_can_power_down +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x6be6cfd3 free_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x6e9429e0 alloc_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xcfc20411 unregister_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xe4e5d276 register_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xff8157eb c_can_power_up +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x1d450372 alloc_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x1dc7d4a5 unregister_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xd2ce32cb register_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xf3626046 free_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x0ee87a0d alloc_can_err_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x0ff3c1d4 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 0x12d2d6ae can_rx_offload_irq_finish -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x1882d52a free_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x226d01a3 can_put_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x26a3391a alloc_can_err_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x2be1eb23 unregister_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x2fe5fb71 can_skb_get_frame_len -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x335f24b7 alloc_canfd_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x38a7c721 can_rx_offload_add_fifo -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x4b55409c can_bus_off -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x5881cabe close_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x12d4d9e5 can_change_state +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x15954972 of_can_transceiver +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x19358b46 can_rx_offload_enable +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x2468390d unregister_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x2e1bc6f3 can_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x34f46007 alloc_can_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x5c6dfa49 close_candev EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6047ede6 can_fd_len2dlc -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x68bcfad2 register_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6a8fa715 can_rx_offload_irq_offload_fifo -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6c6a0a76 of_can_transceiver -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6dda825f can_rx_offload_enable -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6f73a034 can_get_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x793ad0d8 can_rx_offload_queue_sorted -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x86aa62ef alloc_candev_mqs -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x99310e15 can_rx_offload_del -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xa3e8ce56 alloc_can_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xb03f44ae safe_candev_priv -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xb5b9f42d can_rx_offload_add_timestamp -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xb66a9d25 can_rx_offload_threaded_irq_finish -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xb8d97fe5 can_free_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xc65edbeb open_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xd21559e9 can_rx_offload_irq_offload_timestamp -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xd2ba2a2d can_rx_offload_add_manual -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xe6b0f016 can_change_state -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xe704218f can_change_mtu +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x695d0a69 can_rx_offload_del +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6c707ebc can_rx_offload_irq_offload_fifo +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x754964e7 alloc_canfd_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x75e2db2f can_rx_offload_queue_tail +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x7ec5b408 can_rx_offload_irq_offload_timestamp +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x7f7f31ac can_change_mtu +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x8553e6da open_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x87242b72 safe_candev_priv +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x8b08a578 can_skb_get_frame_len +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x8f3d3c3b can_put_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x966e143a can_rx_offload_add_fifo +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xa47220f2 can_rx_offload_irq_finish +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xabf36688 can_rx_offload_add_timestamp +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xadb3ac3f can_free_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xb0e6d329 can_rx_offload_threaded_irq_finish +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xe3c13a52 can_rx_offload_queue_sorted +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf04ded38 register_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf0a43ad2 free_candev EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf12d9387 can_fd_dlc2len -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xfaa70d21 can_rx_offload_get_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x57293da5 m_can_class_unregister -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x589cbc2e m_can_class_get_clocks -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x65b9e190 m_can_class_resume -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xbe486ca8 m_can_class_free_dev -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xc2ef3727 m_can_class_allocate_dev -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xc71c251c m_can_class_suspend -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xca079172 m_can_init_ram -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xefbc241d m_can_class_register +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf2d5ccce alloc_candev_mqs +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf3f4d588 can_rx_offload_add_manual +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf8693cb4 can_bus_off +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x0117c2b7 m_can_class_unregister +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x236664d2 m_can_class_allocate_dev +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x5f01a2d1 m_can_class_resume +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x6e597e74 m_can_class_free_dev +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x7abe5f46 m_can_class_register +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x8d1c0f43 m_can_init_ram +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xa35efbab m_can_class_suspend +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xace25977 m_can_class_get_clocks EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x5a18296e register_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x5b04d620 alloc_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x9811bdbd unregister_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xae1c1e2d free_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/dsa/lan9303-core 0xb16cafed lan9303_indirect_phy_ops -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x43a82658 ksz_port_mdb_del -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x4526b922 ksz_sset_count -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x772d02a4 ksz_mac_link_down -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x7e124278 ksz_port_fast_age -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x7f6e725e ksz_port_bridge_leave -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x95159013 ksz_port_fdb_dump -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xa9a5124b ksz_init_mib_timer -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xaab0fcc6 ksz_update_port_member -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xd1ddc953 ksz_port_mdb_add -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xd499101c ksz_phy_write16 -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xe1062ba2 ksz_get_ethtool_stats -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xea2a67cd ksz_phy_read16 -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xeaab68a0 ksz_enable_port -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xf7a4c01f ksz_port_bridge_join -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x00922b78 rtl8366_set_vlan -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x27f32580 realtek_smi_write_reg_noack -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x2cd560fe rtl8366_get_strings -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x3362f44a rtl8366_reset_vlan -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x391f91b5 rtl8366_mc_is_used -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x53b30f2a rtl8366_vlan_filtering -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x5bb32cac rtl8366_get_sset_count -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x9e9c3fc7 rtl8366_enable_vlan4k -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xa3598d5c rtl8366_vlan_del -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xc35b5d80 rtl8366_vlan_add -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xd3b48943 rtl8366_set_pvid -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xdccd3a79 rtl8366_get_ethtool_stats -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xdfae7e21 rtl8366_init_vlan -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xe9ab4ab6 rtl8366rb_variant -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xf644adbc rtl8366_enable_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/8390/ax88796 0x33c6e55d ax_NS8390_reinit -EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0x6e19a35e arc_emac_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0xd74ea995 arc_emac_probe -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0x032c1567 enetc_mdio_read -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0x36fb8efc enetc_mdio_write +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x53316aaa free_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x58799dd8 register_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xb50ea741 alloc_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xea6e53b5 unregister_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/dsa/lan9303-core 0xf021732f lan9303_indirect_phy_ops +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x28243f3e ksz_phy_write16 +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x2b9fa8bc ksz_port_bridge_join +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x32e937e3 ksz_get_ethtool_stats +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x4760a6ea ksz_port_fast_age +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x5afdb214 ksz_port_mdb_del +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x5e7159bf ksz_phy_read16 +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x6638e665 ksz_enable_port +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x86d95116 ksz_port_bridge_leave +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x962ef791 ksz_port_fdb_dump +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xa90a93aa ksz_init_mib_timer +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xc07d13aa ksz_update_port_member +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xc2f4cd70 ksz_sset_count +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xd952d3a3 ksz_mac_link_down +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xfb9c3c44 ksz_port_mdb_add +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x0082bdd2 rtl8366_get_sset_count +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x0c5b66af rtl8366_init_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x2312a9d4 rtl8366_enable_vlan4k +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x2c3fddb6 rtl8366_enable_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x3ccd348e rtl8366rb_variant +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x45cc62b8 rtl8366_vlan_filtering +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x5932a1a6 rtl8366_set_pvid +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x794b3718 realtek_smi_write_reg_noack +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x859d42c3 rtl8366_get_ethtool_stats +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xbbc306af rtl8366_set_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xbc63b9e4 rtl8366_vlan_del +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xe7d106aa rtl8366_get_strings +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xeb6da16f rtl8366_mc_is_used +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xeece7ec3 rtl8366_vlan_add +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xf0b36517 rtl8366_reset_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/8390/ax88796 0x3b08ce0c ax_NS8390_reinit +EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0x977aa663 arc_emac_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0xbb66a16d arc_emac_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0x1ce27850 enetc_hw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0xd95f427e enetc_mdio_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0xf5531d4c enetc_mdio_read EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0xf68ac32d enetc_mdio_lock -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0xf9c2b2d4 enetc_hw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0x795335fb i40e_client_device_register -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0xd69518ed i40e_client_device_unregister -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x17f4a6cd ice_rdma_request_reset -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x71b038e2 ice_rdma_update_vsi_filter -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x8bfac26c ice_del_rdma_qset -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xc2de2bf9 ice_get_qos_params -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xe394a5f4 ice_add_rdma_qset -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x00e07596 mlx4_get_base_qpn -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x02c529dd mlx4_unicast_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x03195ba1 mlx4_get_slave_default_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x031b9a71 mlx4_flow_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x03302931 mlx4_phys_to_slaves_pport_actv -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x04225be8 __mlx4_replace_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x04d7e966 mlx4_counter_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x06492c39 mlx4_set_vf_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x074e9f66 mlx4_vf_smi_enabled -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x096d311f mlx4_get_active_ports -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0a7a2621 mlx4_get_admin_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0be74f1c mlx4_multicast_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0cae8c5a mlx4_mtt_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0d11c97f mlx4_hw_rule_sz -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0e37c3f6 mlx4_bond -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0e4b3375 mlx4_FLOW_STEERING_IB_UC_QP_RANGE -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x130f6262 mlx4_mr_hw_change_pd -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x13d26841 mlx4_qp_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1611f541 mlx4_set_vf_link_state -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x192722ca mlx4_bf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1c9cb79b mlx4_unregister_interface -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x203b0b9b mlx4_srq_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x21622fb0 mlx4_write_mtt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x24932bb8 mlx4_multicast_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x26554594 mlx4_SYNC_TPT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x27273132 mlx4_flow_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x29dc0c62 mlx4_find_cached_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2db629ea mlx4_alloc_cmd_mailbox -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2e76e0b1 mlx4_qp_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2e990153 mlx4_db_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2fa3b4e6 mlx4_cq_resize -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3023d177 mlx4_get_vf_config -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x324e3ad9 mlx4_srq_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x324fcd02 mlx4_set_vf_rate -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3283ee0a mlx4_cq_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3759a52b mlx4_mtt_cleanup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x38614fde mlx4_mr_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3d0fde53 mlx4_alloc_hwq_res -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3e2c6995 mlx4_mr_hw_write_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x41775f60 mlx4_counter_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x45af9946 mlx4_phys_to_slaves_pport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4697aa6b mlx4_get_protocol_dev -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x481b31d4 mlx4_config_vxlan_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x485886c4 __mlx4_cmd -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4cd90b49 mlx4_free_cmd_mailbox -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x54b094da __mlx4_unregister_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5816380c mlx4_set_vf_spoofchk -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5ce175fb mlx4_qp_release_range -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5e63ec36 mlx4_set_vf_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6166c95c mlx4_get_devlink_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x61b58d59 mlx4_qp_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x63f5f117 mlx4_register_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6532d435 mlx4_mw_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6795d0dc mlx4_multicast_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6b1cab2e mlx4_wol_read -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6ba5778c mlx4_register_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6c0f7355 mlx4_set_admin_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6ced80b0 mlx4_xrcd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6f325357 mlx4_slave_convert_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x70d7b571 mlx4_vf_set_enable_smi_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7112c345 mlx4_mr_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7323d21f mlx4_flow_steer_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x75de4f0a mlx4_get_default_counter_index -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7719a7a2 mlx4_find_cached_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7a8468ae mlx4_mr_hw_change_access -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x860e31e8 mlx4_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x868c2547 mlx4_mw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x86eda510 mlx4_mr_rereg_mem_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x890f1d5e mlx4_mr_hw_put_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8a440199 mlx4_qp_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8a6452fc mlx4_uar_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8f609b96 mlx4_map_sw_to_hw_steering_mode -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x91618bcb mlx4_pd_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x93190efc mlx4_flow_steer_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x94c16cb7 mlx4_db_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x95e19140 mlx4_ACCESS_PTYS_REG -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x96a71893 mlx4_srq_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9c41a6b8 mlx4_multicast_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9e6bdc2a mlx4_unicast_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9fff2807 mlx4_unregister_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa169aa45 mlx4_cq_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa3a41d98 mlx4_port_map_set -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa7584709 mlx4_qp_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa7a88dba mlx4_read_clock -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa7ed5b32 mlx4_map_sw_to_hw_steering_id -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa8c65ab0 mlx4_wol_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xab854f99 mlx4_mr_rereg_mem_cleanup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xadae0e16 mlx4_CLOSE_PORT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xadeae464 mlx4_vf_get_enable_smi_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaf4693bf mlx4_cq_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb2df739a mlx4_mtt_addr -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb54bc21d __mlx4_register_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb6a934d8 mlx4_config_roce_v2_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb92ccf65 mlx4_config_dev_retrieval -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbb188ec5 mlx4_get_base_gid_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbd8e0ea7 mlx4_uar_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcb54e34f mlx4_register_interface -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xccb44958 mlx4_unicast_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcd48a9d4 mlx4_replace_zero_macs -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd03f32c3 mlx4_mr_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd1cbf57d mlx4_pd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd3f4f5ab mlx4_srq_arm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd4ddeb2b mlx4_buf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd795a839 mlx4_mw_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd7dc9f33 mlx4_unregister_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd82e1964 mlx4_update_qp -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xde2d21ec mlx4_qp_to_ready -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe3115be4 mlx4_qp_reserve_range -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe66a5006 mlx4_unbond -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe69536a6 mlx4_phys_to_slave_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe759d647 mlx4_free_hwq_res -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe897b3f4 mlx4_buf_write_mtt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe98504a3 mlx4_mr_hw_get_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeae530e8 mlx4_unicast_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xee1fb4b1 mlx4_get_counter_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf5e6ebc8 mlx4_INIT_PORT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf8eaf542 mlx4_xrcd_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf9efa555 mlx4_bf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfcf0797c mlx4_get_internal_clock_params -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfd85efd5 mlx4_get_vf_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfd9edaa7 mlx4_srq_lookup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0255b42f mlx5_query_port_wol -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x049660b2 mlx5_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0x4c8b895f i40e_client_device_register +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0x4f415258 i40e_client_device_unregister +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x3a49a12d ice_rdma_update_vsi_filter +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x8c2256db ice_add_rdma_qset +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x8d3ba4c6 ice_del_rdma_qset +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xc665e04f ice_rdma_request_reset +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xe6e39d13 ice_get_qos_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x043be3aa mlx4_counter_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x045554bf mlx4_bond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0a5a89b1 mlx4_set_vf_spoofchk +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0a9c0532 mlx4_unicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0f4ddbed mlx4_get_active_ports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x163122cc mlx4_mr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x16766aba mlx4_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x179b8f84 mlx4_port_map_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x17b41f9f mlx4_read_clock +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x192d0308 mlx4_srq_arm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x19372f17 mlx4_ACCESS_PTYS_REG +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x19aa6bce mlx4_unregister_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1a3236c8 mlx4_srq_lookup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1b38e993 mlx4_srq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1c0bba16 mlx4_INIT_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1eb1acd7 mlx4_qp_release_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x216d9b36 mlx4_alloc_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x221a2193 mlx4_vf_set_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x24ed408d mlx4_alloc_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x24f05e08 mlx4_map_sw_to_hw_steering_id +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x287a5924 mlx4_flow_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x29828394 mlx4_mtt_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2b941310 mlx4_multicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2f7cfbaf mlx4_qp_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x323cd77a mlx4_map_sw_to_hw_steering_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x34faf946 mlx4_get_counter_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x36b1fcd7 mlx4_xrcd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3943de56 mlx4_mr_rereg_mem_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3cdf1870 mlx4_pd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3e06d7df mlx4_get_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x42f36c3e mlx4_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x42fdb69f mlx4_unicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4485207b mlx4_get_internal_clock_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x46c6e3a0 mlx4_mr_hw_put_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4a41f8b2 mlx4_get_base_gid_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4bff3a6a mlx4_cq_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4cebbb60 mlx4_multicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4f0b9ad3 mlx4_bf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4fb362e7 mlx4_uar_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x509d18b5 mlx4_mr_hw_get_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x51d22b59 mlx4_set_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5296348a mlx4_mr_hw_change_pd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x52f8569b mlx4_mr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5650e6d7 mlx4_qp_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5b1a9354 mlx4_phys_to_slave_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5d0279a5 mlx4_qp_to_ready +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x60726449 mlx4_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6274feaa mlx4_get_default_counter_index +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x62db9160 mlx4_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x651e9015 mlx4_config_roce_v2_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x658c8c57 mlx4_set_vf_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6726113a mlx4_mr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x682c24d9 mlx4_mr_hw_change_access +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6c841c10 mlx4_unicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6d7aec13 mlx4_SYNC_TPT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6ddfaaa6 mlx4_find_cached_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6e77f3c1 mlx4_wol_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x727d688f mlx4_config_dev_retrieval +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x74389b95 mlx4_mw_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x748702b7 mlx4_qp_reserve_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x75181422 mlx4_unicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x77ac62dc mlx4_multicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7a970533 mlx4_register_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7c0c6bed mlx4_phys_to_slaves_pport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7dcb0527 mlx4_free_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x820cdd61 mlx4_register_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x821ed1a4 mlx4_unbond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x83a74d2e mlx4_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x87231955 mlx4_get_protocol_dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x88844796 mlx4_srq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8a4e93a9 mlx4_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8c07eb04 mlx4_get_slave_default_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8db76d6e mlx4_slave_convert_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8f494664 mlx4_set_vf_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9319f16c mlx4_hw_rule_sz +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x967c0e88 mlx4_cq_resize +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9be9c5c4 mlx4_buf_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa3c17fb7 __mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa5b09e43 mlx4_mr_hw_write_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa76de0e8 mlx4_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa9e5c681 mlx4_multicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xabf2773a mlx4_mw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xadb94526 mlx4_replace_zero_macs +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb2c49a39 mlx4_get_devlink_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb2e8a288 mlx4_get_vf_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb4e3d66f __mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb793b2f4 mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb941b32c mlx4_wol_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbaac3902 mlx4_flow_steer_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbc74dfac mlx4_srq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbe02a9ff mlx4_cq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc02ebf44 mlx4_mw_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc06f85cc mlx4_vf_get_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc092708f mlx4_config_vxlan_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc3df3b7c mlx4_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc65738bd mlx4_qp_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc6ebdd42 mlx4_mtt_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc8819560 mlx4_mtt_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc88ec3d2 mlx4_vf_smi_enabled +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc9779c3c mlx4_cq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc9d9c17e mlx4_set_vf_rate +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcb24339a mlx4_free_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd2342373 mlx4_mr_rereg_mem_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd2d413bc mlx4_phys_to_slaves_pport_actv +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd2e09872 mlx4_set_vf_link_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd3e64c10 mlx4_bf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd48934c5 mlx4_get_vf_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd6ca5961 mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdcf15156 mlx4_counter_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdddfea79 mlx4_find_cached_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe140e1a0 mlx4_FLOW_STEERING_IB_UC_QP_RANGE +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe58b512e mlx4_update_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe7571e3d mlx4_pd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe94bedff mlx4_flow_steer_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe9d3faf9 mlx4_flow_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf060c425 mlx4_uar_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf13d09ae mlx4_unregister_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf661ee1b __mlx4_replace_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfa7fbdea __mlx4_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfd1c8b0b mlx4_CLOSE_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfda2a719 mlx4_get_base_qpn +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x013e160c mlx5_core_query_ib_ppcnt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x021ad37a mlx5_query_hca_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x03a7e2c1 mlx5_query_nic_vport_mac_list EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x072460c4 mlx5_fill_page_frag_array -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0aa8054f mlx5_core_query_ib_ppcnt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0c76c7ff mlx5_query_nic_vport_min_inline -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x11eb4df0 mlx5_query_nic_vport_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1554741e mlx5_query_nic_vport_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x15b7c129 mlx5_accel_esp_destroy_xfrm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x16a3b158 mlx5_set_port_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x180838b8 mlx5_query_min_inline -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x185b629d mlx5_nic_vport_unaffiliate_multiport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1ea81861 mlx5_query_port_tc_bw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x28d15515 mlx5_core_access_reg -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x298e79f8 mlx5_dm_sw_icm_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2bb3909e mlx5_query_port_pause -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3421053b mlx5_set_port_tc_bw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x38c01c98 mlx5_query_hca_vport_node_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x391e3d23 mlx5_nic_vport_update_local_lb -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3996b860 mlx5_accel_ipsec_device_caps -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3dff7484 mlx5_set_port_prio_tc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x40014c4c mlx5_db_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4385c51b mlx5_query_port_ets_rate_limit -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4c87a837 mlx5_query_hca_vport_pkey -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4c8aad64 mlx5_query_port_ptys -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4eb993c0 mlx5_core_query_vport_counter -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4f33cbbe mlx5_core_query_sq_state -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x50d8dc4d mlx5_query_hca_vport_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x540b6f49 mlx5_modify_nic_vport_mac_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5c2bb6f4 mlx5_eswitch_get_total_vports -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5dddc705 mlx5_query_port_oper_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5e5818c0 mlx5_nic_vport_enable_roce -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x60484bd6 mlx5_set_port_pfc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x61815163 mlx5_core_modify_hca_vport_context -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x623c16a9 mlx5_query_hca_vport_context -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x62b7c31b mlx5_query_port_tc_group -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x676fb900 mlx5_query_module_eeprom -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6b50eefe mlx5_query_hca_vport_gid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6cccf0d7 mlx5_set_port_caps -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6d9b51ff mlx5_core_reserved_gids_count -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6ed222a6 mlx5_modify_nic_vport_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x744c3b83 mlx5_query_module_eeprom_by_page -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x78637a80 mlx5_modify_nic_vport_promisc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7aa01194 mlx5_set_port_admin_status -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7c5dd813 mlx5_frag_buf_alloc_node -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x810b28b5 mlx5_query_nic_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x812dbc30 mlx5_frag_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0aa96a3b mlx5_dm_sw_icm_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0ba95afe mlx5_query_hca_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0c715bbe mlx5_query_port_tc_group +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x116d69bf mlx5_query_min_inline +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x184260f0 mlx5_core_query_sq_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x20647634 mlx5_nic_vport_affiliate_multiport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x25189790 mlx5_eswitch_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2e5ed50a mlx5_nic_vport_query_local_lb +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x32133482 mlx5_nic_vport_unaffiliate_multiport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3df0347a mlx5_modify_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3e53d786 mlx5_query_hca_vport_pkey +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x409c5022 mlx5_query_port_vl_hw_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x43b09028 mlx5_accel_esp_destroy_xfrm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x445418ad mlx5_query_port_prio_tc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4c041c40 mlx5_modify_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4c256e1c mlx5_query_port_ptys +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x51160ea5 mlx5_core_reserved_gids_count +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x517b36b7 mlx5_query_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x52387088 mlx5_set_port_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x53bfe4fc mlx5_query_nic_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x55de2860 mlx5_query_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x58fdf5ed mlx5_query_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x59a5873a mlx5_eswitch_get_total_vports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5b17291e mlx5_query_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5f9aad4f mlx5_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x67d44c04 mlx5_query_port_tc_bw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x69e52527 mlx5_toggle_port_link +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6bc199bc mlx5_core_modify_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x783f5623 mlx5_set_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x78428c70 mlx5_set_port_tc_bw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x787736f4 mlx5_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7aadbd9b mlx5_query_hca_vport_gid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7ca98019 mlx5_modify_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7e0d3f85 mlx5_query_nic_vport_min_inline +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7ea27c36 mlx5_set_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7eb5fdfd mlx5_query_port_pause 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 0x83fc768a mlx5_modify_nic_vport_vlans -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x859b9d44 mlx5_nic_vport_affiliate_multiport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8d271880 mlx5_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x91117607 mlx5_db_alloc_node -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x93c4e031 mlx5_query_port_max_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x951b0706 mlx5_nic_vport_query_local_lb -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x99f853b5 mlx5_query_nic_vport_mac_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9a7398d8 mlx5_query_port_admin_status -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa35b1c65 mlx5_set_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8810f355 mlx5_set_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8b18cb9d mlx5_dm_sw_icm_dealloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x911da73c mlx5_set_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x91556ac0 mlx5_modify_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x93e58286 mlx5_query_module_eeprom_by_page +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9505a6bd mlx5_query_nic_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x97868b24 mlx5_query_port_max_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9bd075ed mlx5_frag_buf_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9ce3f92f mlx5_core_query_vport_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9e9e7e3e mlx5_nic_vport_enable_roce +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa2ad3f61 mlx5_query_module_eeprom +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa540d883 mlx5_query_port_oper_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa5c5de84 mlx5_db_alloc EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa75f49d6 mlx5_fill_page_array -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb61ff373 mlx5_query_nic_vport_qkey_viol_cntr -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb8671d62 mlx5_query_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbc5b6f45 mlx5_accel_esp_modify_xfrm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbe73ef16 mlx5_dm_sw_icm_dealloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc0139d6b mlx5_query_nic_vport_promisc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc64d89fa mlx5_toggle_port_link -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc771d0c5 mlx5_query_nic_vport_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xca02fa73 mlx5_query_port_vl_hw_cap -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd77c1cb1 mlx5_query_port_pfc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd94b6ecc mlx5_set_port_tc_group -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdaebb90d mlx5_accel_esp_create_xfrm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeb00c1bb mlx5_modify_port_ets_rate_limit -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xecee26c3 mlx5_query_nic_vport_node_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xedf8dc18 mlx5_set_port_pause -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf5372bfd mlx5_eswitch_mode -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf845d929 mlx5_modify_nic_vport_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfa65a417 mlx5_query_port_prio_tc -EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x506d2eca ks8851_remove_common -EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0xd7af2900 ks8851_suspend -EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0xe86bb3c8 ks8851_resume -EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0xeb2cff86 ks8851_probe_common +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xad029637 mlx5_modify_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb192a2c3 mlx5_accel_esp_create_xfrm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb2b7054e mlx5_query_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbab30f44 mlx5_db_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbc3d480a mlx5_frag_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbddb8357 mlx5_nic_vport_update_local_lb +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbf9b2b59 mlx5_query_nic_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc7fd9855 mlx5_query_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcc9ba0ea mlx5_accel_esp_modify_xfrm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xda728207 mlx5_set_port_prio_tc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdf2405fd mlx5_query_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe0b9fd50 mlx5_query_nic_vport_qkey_viol_cntr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe2ed792f mlx5_query_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe63ce3c2 mlx5_accel_ipsec_device_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeb4e558d mlx5_set_port_tc_group +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf5406533 mlx5_modify_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf587e15f mlx5_query_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf6676e1b mlx5_set_port_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfa82e5c5 mlx5_core_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x48f8ee1e ks8851_probe_common +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0xb735e7fa ks8851_suspend +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0xd23f0ace ks8851_remove_common +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0xe10019b9 ks8851_resume 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 0x780a1f11 devm_regmap_init_encx24j600 -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0b24fe8f ocelot_cls_flower_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x16a18f93 ocelot_port_rmwl -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x192162b7 ocelot_regmap_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x32f55ed1 ocelot_cls_flower_destroy -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x57c98418 ocelot_port_writel -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9a75399b __ocelot_read_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc3ae242f ocelot_regfields_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc5b4d234 ocelot_cls_flower_replace -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe5a41a1e __ocelot_rmw_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xeb4a922f ocelot_port_readl -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xed50dd97 ocelot_phylink_mac_link_down -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf412a427 ocelot_phylink_mac_link_up -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf975373d __ocelot_write_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x59d32fa9 devm_regmap_init_encx24j600 +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0d9d5d0a ocelot_regmap_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x19bd59a2 ocelot_cls_flower_replace +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x31db2ee2 ocelot_port_readl +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x398d2362 ocelot_phylink_mac_link_up +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7029ab50 ocelot_port_writel +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x73398963 ocelot_regfields_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xae1358fa __ocelot_write_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xae64398d ocelot_port_rmwl +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb44dec29 __ocelot_read_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb5707e7e ocelot_cls_flower_destroy +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe2fa10f7 __ocelot_rmw_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe8a257b9 ocelot_phylink_mac_link_down +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf240989d ocelot_cls_flower_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 0x14b336a2 stmmac_resume -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x28a78cc8 stmmac_suspend -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x60f1d951 stmmac_dvr_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x7277de80 stmmac_dvr_probe -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x82b7b94c stmmac_bus_clks_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x2d1037e9 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 0xa80053ac stmmac_suspend EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xd1cc24db stmmac_set_mac_addr -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xff538d94 stmmac_init_tstamp_counter -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x333f255e stmmac_probe_config_dt -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x66d132bd stmmac_remove_config_dt -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x7f99f72d stmmac_pltfr_pm_ops -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xc4a5b475 stmmac_get_platform_resources -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xcb9ce040 stmmac_pltfr_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x7bb83198 w5100_ops_priv -EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xa0ff26c8 w5100_pm_ops -EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xbcb982d0 w5100_probe -EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xcc4c33ff w5100_remove -EXPORT_SYMBOL_GPL drivers/net/geneve 0xc49975ee geneve_dev_create_fb -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x16518416 ipvlan_link_new -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x1b741b00 ipvlan_link_delete -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x3a20e63c ipvlan_link_setup -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x5bf20c1b ipvlan_link_register -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x97158f9d ipvlan_count_rx -EXPORT_SYMBOL_GPL drivers/net/macsec 0x26fc85e1 macsec_pn_wrapped -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x19b5db37 macvlan_common_setup -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x34d88343 macvlan_common_newlink -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x48b39d55 macvlan_dellink -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x5dc970f8 macvlan_link_register -EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-i2c 0xe280b685 mdio_i2c_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xd91c16bb stmmac_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xdd9bc7d8 stmmac_dvr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xe0d2faf7 stmmac_bus_clks_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xea4fdbb2 stmmac_dvr_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x46f3bfa1 stmmac_pltfr_pm_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x774bbee8 stmmac_probe_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x8bf10f2f stmmac_remove_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xdcf8276a stmmac_pltfr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xe5bcd50a stmmac_get_platform_resources +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x589e84c7 w5100_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xd6b60a73 w5100_ops_priv +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xeb2cdae6 w5100_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xfba2c683 w5100_pm_ops +EXPORT_SYMBOL_GPL drivers/net/geneve 0x95df5ba2 geneve_dev_create_fb +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x17817962 ipvlan_link_new +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x5a775c18 ipvlan_count_rx +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x7acdddf8 ipvlan_link_setup +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xb146c870 ipvlan_link_delete +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xb3f54a75 ipvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/macsec 0x6b1bc2e3 macsec_pn_wrapped +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x158ef5ad macvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x755809ad macvlan_dellink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x84b942a4 macvlan_common_newlink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x95fb778b macvlan_common_setup +EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-i2c 0x5fdb99bb mdio_i2c_alloc EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-mux 0x6318757f mdio_mux_uninit -EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-mux 0xe727dfd0 mdio_mux_init -EXPORT_SYMBOL_GPL drivers/net/net_failover 0x19e8fbb3 net_failover_create -EXPORT_SYMBOL_GPL drivers/net/net_failover 0xd34e214f net_failover_destroy -EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x28b9a9d0 xpcs_config_eee -EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x2ac51ee7 xpcs_do_config -EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x6f0f2b43 xpcs_create -EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x6f4399d6 xpcs_validate -EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x7b8f0ae7 xpcs_get_an_mode -EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xa45f25d1 xpcs_destroy +EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-mux 0x9b2d9672 mdio_mux_init +EXPORT_SYMBOL_GPL drivers/net/net_failover 0x7aacdeba net_failover_destroy +EXPORT_SYMBOL_GPL drivers/net/net_failover 0xd9bff19b net_failover_create +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x44954bda xpcs_create +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x62243998 xpcs_destroy +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x78f18e78 xpcs_do_config +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xa06ca9e6 xpcs_validate EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xe05362b0 xpcs_link_up -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x0368d9ec bcm_phy_read_shadow -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x07bb4f7a bcm_phy_config_intr -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x13e92453 bcm_phy_r_rc_cal_reset -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x152509df bcm_phy_set_eee -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x15bd0931 bcm_phy_write_shadow -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x16cc0c13 bcm_phy_get_stats -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x16e98e1a bcm_phy_write_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x1ad1f4e0 bcm_phy_read_misc -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x1d255e98 bcm_phy_downshift_get -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x26b3699c bcm54xx_auxctl_read -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x30069fcf bcm_phy_read_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x39324968 bcm_phy_downshift_set -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x3c365cda bcm_phy_get_strings -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x4229dbe7 bcm_phy_enable_jumbo -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x4a568088 bcm_phy_write_misc -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x53e1b576 bcm_phy_read_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x5799d918 __bcm_phy_write_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x5bd4a3db bcm_phy_cable_test_get_status -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x67098d0a bcm_phy_get_sset_count -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7bb65b22 bcm_phy_cable_test_start -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x94b7e6e8 __bcm_phy_modify_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x9ef598ec __bcm_phy_read_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa164f7fa bcm_phy_write_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa913f9a7 __bcm_phy_modify_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb0e4c71d bcm_phy_28nm_a0b0_afe_config_init -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb8ced359 bcm_phy_enable_apd -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc3d6fbb1 bcm_phy_handle_interrupt -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc8d91019 bcm_phy_modify_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xd6431695 bcm_phy_cable_test_start_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xddda7a95 bcm_phy_cable_test_get_status_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe014a0f8 __bcm_phy_write_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe1cb7bcb bcm_phy_ack_intr -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf57d0f56 bcm_phy_modify_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xfd12b255 __bcm_phy_read_rdb +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xecb5b424 xpcs_get_an_mode +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xfb5be969 xpcs_config_eee +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x03ce33d8 bcm_phy_cable_test_get_status_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x0c994cb8 __bcm_phy_write_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x0cd7c328 bcm_phy_downshift_get +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x27aefeb1 bcm54xx_auxctl_read +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x42fad6f8 bcm_phy_enable_jumbo +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x4368e080 __bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x464642ff bcm_phy_write_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x48d98192 bcm_phy_get_stats +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x51758b36 __bcm_phy_modify_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x59c0554f __bcm_phy_read_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x5a4ad74f bcm_phy_cable_test_start +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x5c55b266 bcm_phy_write_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x62f9813f bcm_phy_modify_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x66b61b94 bcm_phy_get_strings +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x79eaeebc bcm_phy_read_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x79ec0704 bcm_phy_read_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa7a221c9 bcm_phy_set_eee +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa9fcaba0 bcm_phy_28nm_a0b0_afe_config_init +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xac0d4e76 bcm_phy_cable_test_start_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xad6e70f1 __bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb41c5f21 bcm_phy_handle_interrupt +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb58f1070 bcm_phy_enable_apd +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb895ee0f bcm_phy_r_rc_cal_reset +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc665f501 bcm_phy_read_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xdccd40ce bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xdef89c5c __bcm_phy_modify_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe6a62370 bcm_phy_config_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe7cc6263 bcm_phy_get_sset_count +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xeaaeb470 bcm_phy_cable_test_get_status +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xebb7345e bcm_phy_ack_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xed749655 bcm_phy_modify_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xfb8b9eef bcm_phy_downshift_set +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xfda28e2f bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xfe1fddb9 bcm_phy_write_misc +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x023d8efa phylink_create EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x08213956 phylink_ethtool_get_wol -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x097b4a1f phylink_connect_phy EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x12135396 phylink_mac_change EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x131e8b94 phylink_helper_basex_speed 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 0x210e1d6f phylink_fwnode_phy_connect EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x2c8e28ee phylink_ethtool_get_eee +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x3ae7d014 phylink_mii_c22_pcs_get_state +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x50f2b4ff phylink_mii_c22_pcs_an_restart EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x57727285 phylink_ethtool_set_eee EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x59e0695d phylink_speed_down EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x5d0c4dcc phylink_speed_up +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x61fe53aa phylink_of_phy_connect EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x62104126 phylink_ethtool_set_wol EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x6831eccf phylink_ethtool_ksettings_get EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x6fa426d2 phylink_ethtool_nway_reset +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x7c5111ba phylink_mii_c22_pcs_set_advertisement EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x825c7340 phylink_get_eee_err -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x891a834b phylink_mii_c22_pcs_set_advertisement +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x8abd12cc phylink_mii_c22_pcs_config +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x8cd6a086 phylink_mii_c45_pcs_get_state EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x911fcd6c phylink_start EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x983276da phylink_disconnect_phy EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x9ad6f36d phylink_decode_usxgmii_word -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xb2fe12f7 phylink_mii_c22_pcs_an_restart -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xb3f6295f phylink_of_phy_connect +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xa8940eb6 phylink_fwnode_phy_connect +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xbd3f4f62 phylink_connect_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 0xc3906c58 phylink_ethtool_ksettings_set -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xc4cd9a21 phylink_mii_c22_pcs_get_state -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xd449546f phylink_mii_c45_pcs_get_state EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xdcb0a2c0 phylink_stop EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xde66f4a7 phylink_mii_ioctl EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xe8c137ed phylink_set_pcs -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xeb2d5ae1 phylink_mii_c22_pcs_config EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xec02ebe0 phylink_init_eee -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xed336895 phylink_create 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/tap 0x08e0e285 tap_handle_frame -EXPORT_SYMBOL_GPL drivers/net/tap 0x2e5b1afe tap_free_minor -EXPORT_SYMBOL_GPL drivers/net/tap 0x4341c3d3 tap_del_queues -EXPORT_SYMBOL_GPL drivers/net/tap 0x68a30dda tap_get_minor -EXPORT_SYMBOL_GPL drivers/net/tap 0x7d9fc7aa tap_create_cdev -EXPORT_SYMBOL_GPL drivers/net/tap 0x868100b4 tap_get_socket -EXPORT_SYMBOL_GPL drivers/net/tap 0x99256e25 tap_destroy_cdev -EXPORT_SYMBOL_GPL drivers/net/tap 0xd5a6a7cf tap_get_ptr_ring -EXPORT_SYMBOL_GPL drivers/net/tap 0xf5fa5b77 tap_queue_resize -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x0dd1637b usbnet_cdc_update_filter -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x5825dde4 usbnet_cdc_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x7a7e674c usbnet_cdc_bind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x8a8d360f usbnet_cdc_status -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xdf083a8a usbnet_ether_cdc_bind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xe13444d8 usbnet_generic_cdc_bind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x128e1c2e cdc_ncm_rx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x1cd37727 cdc_ncm_change_mtu -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x308acad7 cdc_ncm_rx_verify_nth32 -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x3a0dafaf cdc_ncm_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x3b5d362b cdc_ncm_select_altsetting -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x51f35201 cdc_ncm_rx_verify_ndp32 -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x73af5d01 cdc_ncm_bind_common -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x9c5cae88 cdc_ncm_fill_tx_frame -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xb816d4c9 cdc_ncm_rx_verify_ndp16 -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xcf8df05f cdc_ncm_tx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xef0f5d24 cdc_ncm_rx_verify_nth16 -EXPORT_SYMBOL_GPL drivers/net/usb/r8152 0x28cdfb80 rtl8152_get_version -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x1f15a283 rndis_tx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x26685d64 rndis_command -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x33ac4d4d rndis_rx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x3a9ce180 rndis_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x8d43c0e3 rndis_status -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x8e8e7971 generic_rndis_bind -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x08031a66 usbnet_disconnect -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x0ee69ac0 usbnet_get_link -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x117cd026 usbnet_write_cmd_nopm -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x12ca8d53 usbnet_read_cmd_nopm -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x15d879ae usbnet_resume_rx -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x18e9d75a usbnet_write_cmd -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1b976ea2 usbnet_stop -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1fd160bc usbnet_set_msglevel -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x27443684 usbnet_purge_paused_rxq -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2dbc0f99 usbnet_get_link_ksettings_internal -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3bb69636 usbnet_get_endpoints -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x402b420f usbnet_set_link_ksettings_mii -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4463f111 usbnet_suspend -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4a6d3be4 usbnet_skb_return -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4c3a5408 usbnet_read_cmd -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5e76b7c3 usbnet_get_link_ksettings_mii -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x611f27d3 usbnet_pause_rx -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x657e9607 usbnet_get_ethernet_addr -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x701bf4df usbnet_unlink_rx_urbs -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x74091923 usbnet_resume -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x77b45ed7 usbnet_defer_kevent -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8865bcbe usbnet_tx_timeout -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8ed6c6c0 usbnet_open -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x952fca58 usbnet_start_xmit -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9b2da776 usbnet_status_stop -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9c242c4f usbnet_change_mtu -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa8e36506 usbnet_probe -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb54d02de usbnet_write_cmd_async -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xcaa7cb39 usbnet_get_msglevel -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xcd28eb86 usbnet_status_start -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd2b579ae usbnet_update_max_qlen -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xdadb138a usbnet_get_drvinfo -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xdb346507 usbnet_nway_reset -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf4e8bed2 usbnet_set_rx_mode -EXPORT_SYMBOL_GPL drivers/net/vxlan 0x4c396f6e vxlan_fdb_clear_offload -EXPORT_SYMBOL_GPL drivers/net/vxlan 0x9b604a9c vxlan_fdb_find_uc -EXPORT_SYMBOL_GPL drivers/net/vxlan 0xbde92bdb vxlan_fdb_replay -EXPORT_SYMBOL_GPL drivers/net/vxlan 0xed2d3f73 vxlan_dev_create -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/ipw2x00/libipw 0x834797a1 libipw_rx_any -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5fae85ac il_prep_station -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6943c4f5 il_remove_station -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x73da9416 _il_grab_nic_access -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x89637f83 il_mac_tx_last_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x90406366 il_dealloc_bcast_stations -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x042f9d7d iwl_read_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x05d52dff iwl_fw_dbg_collect_desc -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x07e1a7c9 iwl_force_nmi -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x081d3500 iwl_read_direct32 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1c3ce6dc _iwl_dbg_tlv_time_point +EXPORT_SYMBOL_GPL drivers/net/tap 0x064a036b tap_get_minor +EXPORT_SYMBOL_GPL drivers/net/tap 0x1cfe77a8 tap_create_cdev +EXPORT_SYMBOL_GPL drivers/net/tap 0x1f6f1e89 tap_destroy_cdev +EXPORT_SYMBOL_GPL drivers/net/tap 0x2bb4fcc6 tap_handle_frame +EXPORT_SYMBOL_GPL drivers/net/tap 0x6ae04d63 tap_get_socket +EXPORT_SYMBOL_GPL drivers/net/tap 0x6eec938c tap_del_queues +EXPORT_SYMBOL_GPL drivers/net/tap 0x8466956a tap_free_minor +EXPORT_SYMBOL_GPL drivers/net/tap 0x9142376c tap_get_ptr_ring +EXPORT_SYMBOL_GPL drivers/net/tap 0xa2848b3e tap_queue_resize +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x3e8e3c37 usbnet_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x4bf610c7 usbnet_cdc_status +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x777a06c8 usbnet_ether_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x83939fda usbnet_cdc_update_filter +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xc56b932c usbnet_cdc_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xf016f0ba usbnet_generic_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x09e14570 cdc_ncm_bind_common +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x296324e9 cdc_ncm_rx_verify_ndp16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x3c7a9ac5 cdc_ncm_rx_verify_ndp32 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x554ef13a cdc_ncm_select_altsetting +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x5e8c0468 cdc_ncm_rx_verify_nth32 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x94ce1648 cdc_ncm_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x9bc7699b cdc_ncm_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xbe6eaee4 cdc_ncm_rx_verify_nth16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xcc539856 cdc_ncm_fill_tx_frame +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xdbc01cb4 cdc_ncm_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xff5a65bb cdc_ncm_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/r8152 0xb2652ffe rtl8152_get_version +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x0e645674 generic_rndis_bind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x5572c406 rndis_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x78e5d9c6 rndis_status +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x8568b206 rndis_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xb44d0720 rndis_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xb68f2918 rndis_command +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x04daa540 usbnet_status_start +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x0a6f4c20 usbnet_set_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x14f10dfd usbnet_status_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x15cc78ec usbnet_tx_timeout +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x22035692 usbnet_read_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x246340be usbnet_suspend +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x36af7e81 usbnet_read_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x41013442 usbnet_write_cmd_async +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x492b6ec9 usbnet_write_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4e2e2c3d usbnet_resume_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x57c95ba7 usbnet_defer_kevent +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5fd7c394 usbnet_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x689d3f0c usbnet_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6948de65 usbnet_resume +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6e1d3900 usbnet_get_ethernet_addr +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x751f7e3b usbnet_update_max_qlen +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7b90c861 usbnet_get_link_ksettings_internal +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7d660c24 usbnet_get_drvinfo +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8f87f4e3 usbnet_nway_reset +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8f8bdc47 usbnet_get_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x952d6f8a usbnet_probe +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc6c42fc0 usbnet_set_rx_mode +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc9e6a55c usbnet_pause_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xcd4b6184 usbnet_write_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd9c66063 usbnet_skb_return +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xdb29234d usbnet_open +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xdc00e17b usbnet_start_xmit +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xdf632f30 usbnet_disconnect +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe11d1628 usbnet_unlink_rx_urbs +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe3ffca9d usbnet_set_link_ksettings_mii +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe697a271 usbnet_get_link +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe7f89a6d usbnet_get_link_ksettings_mii +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf22727a4 usbnet_get_endpoints +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xfa1a8ae9 usbnet_purge_paused_rxq +EXPORT_SYMBOL_GPL drivers/net/vxlan 0x3deb9e7b vxlan_fdb_replay +EXPORT_SYMBOL_GPL drivers/net/vxlan 0x71796710 vxlan_fdb_find_uc +EXPORT_SYMBOL_GPL drivers/net/vxlan 0xe1292084 vxlan_fdb_clear_offload +EXPORT_SYMBOL_GPL drivers/net/vxlan 0xfbe3d791 vxlan_dev_create +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/ipw2x00/libipw 0x623339db libipw_rx_any +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x51f7910b il_dealloc_bcast_stations +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6e1fd166 il_mac_tx_last_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7367a311 _il_grab_nic_access +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x803da4b1 il_remove_station +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf9db59ff il_prep_station +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x0580a368 iwl_write_direct32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x06f52713 iwl_clear_bits_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x06fee8fd iwl_poll_direct_bit +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x11a876df iwl_write_direct64 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x12f47c47 iwl_parse_nvm_mcc_info +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x192d4fb5 iwl_fw_start_dbg_conf +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1c0bd893 iwl_fw_dbg_stop_sync EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1c48129a iwl_dump_desc_assert -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1f52905e iwl_set_soc_latency -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x215c61aa __iwl_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x21be0724 iwl_parse_nvm_mcc_info +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x28f6fc27 iwl_finish_nic_init +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2a3f3cd7 iwl_set_bits_mask_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2a7a4676 iwl_fw_runtime_suspend EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2c0f571f iwl_init_notification_wait +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2e1364fb iwl_configure_rxq +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x3178b8ba iwl_write_prph_delay +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x3240b372 iwl_get_cmd_string +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x336c1aca iwl_fw_dbg_stop_restart_recording EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x35033c81 iwl_phy_db_free -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x3b037a08 iwl_write_direct64 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x3e251a64 iwl_write_prph_no_grab -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x4160dcca iwl_write64 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x47c549f8 iwl_finish_nic_init +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x380ddcd7 iwl_cmd_groups_verify_sorted +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x44b8599f iwl_force_nmi +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x44e49139 iwl_pnvm_load +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x47618a8a iwl_fw_runtime_init EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x47e3dc83 iwl_fw_lookup_notif_ver -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x4f42c6ab iwl_read_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x50cb356c __iwl_warn -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x54046789 iwl_fwrt_dump_error_logs -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5889e787 iwl_parse_eeprom_data -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x589f779b __iwl_info +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x4cb018b3 iwl_get_shared_mem_conf +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x4d1a6019 __iwl_info +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x54cbfbb8 iwl_fwrt_dump_error_logs +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x567970b2 iwl_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5910b0fe iwl_read_prph_no_grab EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5987fe45 iwl_fw_lookup_assert_desc EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5c52e109 iwl_opmode_deregister -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5c9ed30f iwl_fw_start_dbg_conf +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5c82935e iwl_fw_dbg_collect_desc EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5ef4a44d iwl_notification_wait -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x60ff4ed4 iwl_get_nvm -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x61ac61fc iwl_read_external_nvm -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x6eea4348 iwl_poll_bit -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x712c8150 iwl_cmd_groups_verify_sorted -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x7326d4c6 iwl_fw_dbg_read_d3_debug_data -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x738411e7 iwl_fw_dbg_collect_trig -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x7452ae94 iwl_configure_rxq +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x6a0759dc iwl_write64 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x6c7010b1 iwl_read_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x7661465f iwl_trans_send_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x768db6a3 iwl_set_bits_prph EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x776221bf iwl_send_phy_db_data -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8079092d iwl_write_prph_delay -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8091d64d iwl_write_direct32 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8a3f6bb3 __iwl_crit -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8e89fa09 iwl_opmode_register -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x900f3877 iwl_fw_runtime_init -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x909fa789 iwl_write8 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x77ddfd9a iwl_read_direct32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x7b305b98 iwl_poll_bit +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x7e2f8c6b iwl_write32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x7f8798dd iwl_write_prph_no_grab +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x88e99d58 __iwl_err +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8da8135d iwl_fw_dbg_error_collect EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x93160e9e iwl_abort_notification_waits -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x93936d74 iwl_set_bits_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x9bfcd481 iwl_parse_nvm_data -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa5e1ad71 iwl_set_bits_mask_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa89c2aef iwl_clear_bits_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa995e16e iwl_fw_dbg_stop_sync +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x99e5f43e iwl_write8 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x9b2ac703 iwl_init_paging +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x9c2c9b8d iwl_phy_db_init +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa1a4d90f __iwl_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa355cb0e iwl_parse_eeprom_data +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa58bfc22 iwl_fw_dbg_collect +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa6c537fd iwl_get_nvm EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa9f05394 iwlwifi_mod_params -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xafc8139b iwl_get_cmd_string -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb04c3cb0 iwl_get_shared_mem_conf EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb1e39cb3 iwl_remove_notification -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb3985840 __iwl_err -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb9d3e1a1 iwl_fw_runtime_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb350016f iwl_read32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb36f65bd __iwl_warn +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb67e9604 _iwl_dbg_tlv_time_point +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc03ccb8a iwl_opmode_register EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc05e5efd iwl_fw_lookup_cmd_ver -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc5c35dbf iwl_free_fw_paging -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc82c117a iwl_trans_send_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc0e57623 iwl_parse_nvm_data +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc248ad28 iwl_set_soc_latency +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc8255407 __iwl_crit EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xce0c6460 iwl_phy_db_set_section -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd0b1b51c iwl_init_paging -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd2c94e8b iwl_phy_db_init EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd2de3cc1 iwl_wait_notification -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd2f23a71 iwl_read32 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd711fda7 iwl_pnvm_load -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xdc0c9945 iwl_fw_dbg_stop_restart_recording +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd76277f5 iwl_free_fw_paging +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xdafbb2ee iwl_dbg_tlv_del_timers EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xdec9e66d iwl_notification_wait_init -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xdf84bb9b iwl_poll_direct_bit -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe238cafc iwl_write_prph64_no_grab +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xdf8fd97a iwl_fw_dbg_read_d3_debug_data EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xea1b26fc iwl_nvm_fixups -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xecf77135 iwl_fw_dbg_error_collect -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xeea1fe0e iwl_read_prph_no_grab -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf1493e5a iwl_dbg_tlv_del_timers -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf6a856a5 iwl_fw_dbg_collect -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xfaf2708f iwl_write32 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xfb505d55 iwl_fw_runtime_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x11536243 p54_parse_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x172a4654 p54_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x1c09de59 p54_register_common -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x219eb08a p54_parse_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x5e1bf656 p54_unregister_common -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x73b41fb1 p54_free_common -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x81d4932b p54_free_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xcf779848 p54_init_common -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xd48ebcd2 p54_read_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x17f5ffad lbs_get_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x27a5bd5d lbs_stop_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x32845151 lbs_queue_event -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x353094ca lbs_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x45928e39 lbs_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x4a34dfb8 lbs_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x4a8cad15 __lbs_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xef5044b5 iwl_fw_dbg_collect_trig +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf3d55235 iwl_fw_runtime_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf53110c5 iwl_read_external_nvm +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xfbb15b96 iwl_write_prph64_no_grab +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x27cf3f66 p54_free_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x5ef468eb p54_init_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x6f7952dd p54_register_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x79d4ac22 p54_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x87db3ad3 p54_parse_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x998d7057 p54_free_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xd91babdd p54_parse_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xe14bd325 p54_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xf91161be p54_unregister_common +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x1c7fb5a2 lbs_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x27d2f995 lbs_host_sleep_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x405c7acc lbs_stop_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x517d186f lbs_process_rxed_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x5fa7172a lbs_resume EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x5fdf38b8 lbs_disablemesh -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x61bd0ef9 lbs_start_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x6e34a3f8 lbs_get_firmware_async -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x75f42483 lbs_process_rxed_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x8937b464 lbs_notify_command_response -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x89e76c68 lbs_send_tx_feedback -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x9b0af957 lbs_host_to_card_done -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xa9953a8f lbs_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xcc96e3b5 lbs_cmd_copyback -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xf3878f23 lbs_host_sleep_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x60fcf9d1 __lbs_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x678bcbac lbs_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x7dea539f lbs_get_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x88814333 lbs_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xa2d7c142 lbs_get_firmware_async +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xc340ed64 lbs_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xc770fb17 lbs_queue_event +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xcb8c2c54 lbs_notify_command_response +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xdf324e9d lbs_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xe3251e59 lbs_start_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xed1f4520 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 0x10d56c5d lbtf_cmd_response_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x13887e5a lbtf_cmd_copyback -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x41894850 lbtf_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x50b512c2 lbtf_bcn_sent -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x7326432c lbtf_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xa17ca388 lbtf_send_tx_feedback -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xb02acb7f lbtf_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x0e429f37 lbtf_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x0f3bfe5d lbtf_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x655dda2a lbtf_cmd_response_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x6adc810a __lbtf_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x77bd11be lbtf_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x90bd884f lbtf_remove_card EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xc85e6899 lbtf_debug -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xe3b989d4 __lbtf_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x0b031820 mwifiex_prepare_fw_dump_info -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x11099706 mwifiex_process_sleep_confirm_resp -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x1871fb02 mwifiex_drv_info_dump -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x19037304 mwifiex_reinit_sw -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x26a2825e mwifiex_shutdown_sw -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x2bdb3bd8 mwifiex_init_shutdown_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x4bd1192b mwifiex_queue_main_work -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x4f1cade2 mwifiex_multi_chan_resync -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x54b663f9 mwifiex_del_virtual_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x659c3074 mwifiex_fw_dump_event -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x79cfd975 mwifiex_write_data_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x85c390de mwifiex_enable_hs -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x864b5098 mwifiex_main_process -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x8f3999a0 mwifiex_add_virtual_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x9ae383fc mwifiex_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x9b8bc33b mwifiex_dnld_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x9bc9563d mwifiex_process_hs_config -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xa19adbe8 _mwifiex_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xa5ca5337 mwifiex_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xa65f374d mwifiex_handle_rx_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xb0013d61 mwifiex_cancel_hs -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xc5af92ec mwifiex_disable_auto_ds -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xd0098e7b mwifiex_deauthenticate_all +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xe93d14e9 lbtf_bcn_sent +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xfd01950c lbtf_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x008bdc01 mwifiex_enable_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x009c0c8a mwifiex_add_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x3101f995 mwifiex_reinit_sw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x33860448 mwifiex_upload_device_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x52d580f4 mwifiex_cancel_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x57734d19 _mwifiex_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x58b08d39 mwifiex_main_process +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x6473ac28 mwifiex_prepare_fw_dump_info +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x65902f0d mwifiex_multi_chan_resync +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x67657537 mwifiex_init_shutdown_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x69187ef2 mwifiex_queue_main_work +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x6920f3c2 mwifiex_disable_auto_ds +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x79a408c1 mwifiex_drv_info_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x7be0e7b8 mwifiex_dnld_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x836d2efa mwifiex_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x8451dbc5 mwifiex_shutdown_sw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x873f99ca mwifiex_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xabeb4519 mwifiex_process_hs_config +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xb57eaa14 mwifiex_handle_rx_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xc26f070b mwifiex_del_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xd0dd69f3 mwifiex_deauthenticate_all +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xd44f4ef8 mwifiex_write_data_complete EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xd4dad9f3 mwifiex_alloc_dma_align_buf -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xff22f2ce mwifiex_upload_device_dump -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x06aed645 mt76_register_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0f67ff81 mt76_alloc_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x15c82b96 mt76_update_survey -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x16e435e9 mt76_free_device +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xdddad4f1 mwifiex_fw_dump_event +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xdfb091e2 mwifiex_process_sleep_confirm_resp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x002fd3ae mt76_alloc_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x00ded7fc mt76_tx_worker_run +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x012697bc mt76_get_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0199b2a3 mt76_set_irq_mask +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x02c4b681 mt76_alloc_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x02d71ff2 mt76_mmio_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x04e84076 mt76_rx_poll_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1045a133 __mt76_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x10927f09 mt76_tx_status_skb_done +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x113ed280 mt76_sta_pre_rcu_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x11655184 mt76_mcu_send_and_get_msg +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x11f11dc9 mt76_tx_check_agg_ssn +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x131b8b23 mt76_token_release +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x17baf2e5 mt76_get_min_avg_rssi EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x17f568e9 mt76_rates -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x19d90f8f mt76_tx_check_agg_ssn -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1a1052d7 mt76_sw_scan -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1eb4a368 mt76_update_survey_active_time +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x19c42925 mt76_init_queue EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1ec57b4f __mt76_worker_fn -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2141269d mt76_register_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2a7abeaf mt76_rx_aggr_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x31a22a7a __mt76_set_tx_blocked -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x31dbf112 mt76_set_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x332ef3ec mt76_queue_tx_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x33737d2d mt76_csa_check -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x35fbcf9c mt76_sta_state -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3e26ea01 mt76_txq_schedule -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3fe7f8ce mt76_alloc_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1ee5fb17 mt76_token_consume +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1fde1d06 mt76_free_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x28f458ff mt76_tx_status_skb_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2cfeda66 mt76_tx_status_check +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2f3a3ff9 mt76_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3b55370b mt76_insert_ccmp_hdr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3c77c194 __mt76_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3d650f12 mt76_set_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x41187dba mt76_dma_cleanup EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x41387653 __tracepoint_mac_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x418acdf6 mt76_mmio_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x41c2f714 mt76_tx_worker_run -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x43b7361c mt76_tx_status_skb_add -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x43e79d89 mt76_get_survey -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x43fedd27 mt76_register_debugfs_fops -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4a070406 mt76_tx_status_lock -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4b2b97b4 mt76_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x44281871 __mt76_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x481acfeb mt76_mcu_rx_event +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x483e792d mt76_queue_tx_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4b192845 mt76_tx_status_lock EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4d5bb0c8 __tracepoint_dev_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4e4973d5 mt76_rx_poll_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5128fda6 mt76_token_consume -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x52e18336 mt76_set_stream_caps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x600442d1 mt76_wake_tx_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x601b7b98 mt76_get_min_avg_rssi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x66ec48f3 mt76_unregister_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x680ac208 __mt76_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x69830f9c mt76_rx_aggr_start -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x69a316ac mt76_get_rate_power_limits -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6d24ccc2 mt76_put_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6e44b5ed mt76_queues_read -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x71a88b35 mt76_token_release -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x723635e1 mt76_get_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x556e144c mt76_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5a7e429a mt76_rx_aggr_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5fff775b mt76_mcu_msg_alloc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x667f87c8 mt76_stop_tx_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x693ead41 mt76_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6b957316 __traceiter_dev_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6f2fb489 mt76_update_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x71f82a7d mt76_mcu_skb_send_and_get_msg +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x738eb3e7 mt76_mcu_send_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x755e4b31 mt76_txq_schedule +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x792287e3 mt76_tx_status_unlock EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x805fc13a __SCK__tp_func_dev_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x83ad6818 mt76_stop_tx_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8579e568 __mt76_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8821bec5 mt76_csa_finish -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x887b395a mt76_seq_puts_array -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8bc5ea43 mt76_get_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8d3e88bd __traceiter_dev_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x90b011bc mt76_set_tim -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x918fe750 mt76_release_buffered_frames -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x94964709 mt76_sta_pre_rcu_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x96274240 mt76_mcu_get_response -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x96b62bfe mt76_set_irq_mask -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9f234cfd mt76_dma_cleanup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa00c5631 mt76_eeprom_override -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa1903cdf mt76_mcu_skb_send_and_get_msg -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa5fdffae mt76_get_rate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa6a96254 mt76_mcu_send_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa73b0b53 mt76_insert_ccmp_hdr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xae03050c mt76_txq_schedule_all -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xaefc1ad2 mt76_eeprom_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb2ecf70e mt76_tx_status_skb_get -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb3aeb482 mt76_mcu_rx_event -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb5ef5e45 mt76_pci_disable_aspm -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb645d9e9 mt76_unregister_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb6d28863 mt76_init_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb78a8dee mt76_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb8ea7887 mt76_tx_status_unlock -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb901afb3 mt76_get_of_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbd895378 __mt76_poll_msec -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc1ef4348 __mt76_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8071fa50 mt76_register_debugfs_fops +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x81be9026 mt76_register_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x84bf2ff8 mt76_get_of_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8ebc785f mt76_wake_tx_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x90904574 mt76_dma_attach +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x90ea7f58 mt76_has_tx_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x98c0fcd6 mt76_get_rate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9b58688a mt76_put_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9d653f4e mt76_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa169d007 mt76_skb_adjust_pad +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xab2339cc mt76_tx_status_skb_get +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb1868dfb mt76_rx_aggr_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb1a6772c mt76_pci_disable_aspm +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb5227350 mt76_eeprom_override +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb809de22 mt76_mcu_get_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb8fc62f5 __mt76_set_tx_blocked +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbfdc8a3c mt76_update_survey_active_time +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc0a98c11 mt76_release_buffered_frames +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc36f974c mt76_txq_schedule_all 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 0xd4a290ca mt76_mcu_send_and_get_msg +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc8294660 mt76_eeprom_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc88ae32b mt76_queues_read +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc90f882d mt76_dma_rx_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xcaf52cf8 mt76_csa_check +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xcca2d5e6 mt76_get_rate_power_limits +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xcda873a1 mt76_unregister_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd2837fae __traceiter_mac_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xddcb0a80 mt76_sw_scan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe3150942 mt76_sta_state EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe40b66ef mt76_wcid_alloc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe82cda2f mt76_sw_scan_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf1137c57 mt76_tx_status_skb_done -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf18d8f3f mt76_mcu_msg_alloc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf4979e60 mt76_dma_attach -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf7e6fdbe mt76_dma_rx_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf93618e9 mt76_tx_status_check -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xfa4aa8a0 __traceiter_mac_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xfb5b667b mt76_has_tx_pending -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xffcf4998 mt76_skb_adjust_pad -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x04c2a95f mt76_connac_mcu_sta_update_hdr_trans -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x094e700f mt76_connac_power_save_sched -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x0b30981e mt76_connac_mcu_set_mac_enable -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x0cc6852e mt76_connac_mcu_start_patch -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x175f7973 mt76_connac_mcu_set_hif_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x39958c83 mt76_connac_mcu_sta_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4065497f mt76_connac_mcu_set_channel_domain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x43019682 mt76_connac_mcu_wtbl_generic_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4836ed21 mt76_connac_pm_dequeue_skbs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4a757d7d mt76_connac_mcu_chip_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4bce4c1e mt76_connac_mcu_wtbl_ba_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4c476a50 mt76_connac_mcu_set_rate_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x55855b56 mt76_connac_free_pending_tx_skbs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x61e6e4d6 mt76_connac_pm_queue_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x6660d8d9 mt76_connac_mcu_sta_ba -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x68f3c716 mt76_connac_mcu_wtbl_hdr_trans_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x6ac7bdf0 mt76_connac_pm_wake -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7871253f mt76_connac_mcu_start_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7a86323f mt76_connac_mcu_patch_sem_ctrl -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7da89f25 mt76_connac_mcu_alloc_wtbl_req -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x81866269 mt76_connac_mcu_init_download -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x8fa76ac9 mt76_connac_mcu_wtbl_ht_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe6a1613b mt76_csa_finish +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xeb94dd91 mt76_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xee87090a __mt76_poll_msec +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf3707a46 mt76_set_stream_caps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf57f6cff mt76_unregister_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf67dc5c8 mt76_seq_puts_array +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf8d197d1 mt76_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xfcc2cb55 mt76_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x10a924ce mt76_connac_mcu_beacon_loss_iter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x16cc8368 mt76_connac_mcu_wtbl_ht_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x19d5286e mt76_connac_mcu_update_arp_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x279f445a mt76_connac_mcu_sta_basic_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x2e201fa9 mt76_connac_mcu_uni_add_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x350c6bd1 mt76_connac_pm_queue_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x407e0e5a mt76_connac_free_pending_tx_skbs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x438a6f04 mt76_connac_mcu_wtbl_generic_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4c53de02 mt76_connac_mcu_add_nested_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x5095a4b9 mt76_connac_sta_state_dp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x6049008b mt76_connac_pm_wake +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x61fd47db mt76_connac_mcu_patch_sem_ctrl +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x63ce5427 mt76_connac_mcu_sched_scan_enable +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x6506dfa0 mt76_connac_mcu_set_vif_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x767e941a mt76_connac_mcu_set_rate_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7cd3367a mt76_connac_mcu_sta_ba +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x904c225a mt76_connac_mcu_update_gtk_rekey EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x908ca40c mt76_connac_wowlan_support -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x92e374ec mt76_connac_mcu_update_arp_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x9ac37940 mt76_connac_mcu_alloc_sta_req -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x9b1f5549 mt76_connac_mcu_sched_scan_req -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x9cf0e46d mt76_connac_mcu_uni_add_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x9fa6f3f4 mt76_connac_mcu_sched_scan_enable -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa3fd91dd mt76_connac_mcu_sta_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa9b9de6b mt76_connac_mcu_sta_basic_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb90b8af9 mt76_connac_mcu_cancel_hw_scan -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xba3a791a mt76_connac_mcu_beacon_loss_iter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc182e3a3 mt76_connac_mcu_sta_ba_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc9f3ab65 mt76_connac_mcu_set_deep_sleep -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xcb372877 mt76_connac_mcu_coredump_event -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd0aaa7a9 mt76_connac_mcu_hw_scan -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xdbca10c1 mt76_connac_mcu_uni_add_bss -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xdd6dc7d2 mt76_connac_mcu_add_nested_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xdee8c329 mt76_connac_mcu_set_suspend_iter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe930906d mt76_connac_mcu_get_nic_capability -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe99d252a mt76_connac_mcu_update_gtk_rekey -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf5526a41 mt76_connac_mcu_set_vif_ps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf8043f6f mt76_connac_mcu_set_rts_thresh -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xfc9207fa mt76_connac_sta_state_dp -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x1e6bade2 mt76s_alloc_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x7e93a1f7 mt76s_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x9318484c mt76s_deinit -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x0df1df17 mt76u_alloc_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x0f4a3263 mt76u_single_wr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x3995d461 mt76u_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x49c7e2e9 mt76u_resume_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x7274f1fc mt76u_stop_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x77ba6456 mt76u_vendor_request -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xa899da8c mt76u_queues_deinit -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xda395df2 mt76u_stop_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xf57e40cf mt76u_alloc_mcu_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x0442e069 mt7615_mcu_exit -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x05c0d90d mt7615_update_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x0856179b mt7615_thermal_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x0df3d338 mt7615_eeprom_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x21f823ce mt7615_tx_token_put -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x29d42f7a mt7615_mcu_parse_response -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x2cddb8b4 mt7615_ops -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x4ad89172 mt7615_mcu_restart -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x6876ac00 mt7615_mac_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x71f047af mt7615_mcu_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x7bcee8da mt7615_mac_set_rates -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x899f44de mt7615_mcu_reg_wr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x9fa062fb mt7615_mac_write_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xa498c728 mt7615_sta_ps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xa4aa06bd mt7615_mac_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xa615c43f mt7615_init_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xa6b8f37b mt7615_txp_skb_unmap -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xa7f5de9a mt7615_init_work -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xabec4540 mt7615_init_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xb8d2ffab mt7615_queue_rx_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xba68778e mt7615_register_ext_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xbf1c9735 mt7615_wait_for_mcu_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xc3a0b3a1 mt7615_init_debugfs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xcc08579c mt7622_trigger_hif_int -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xd6865e9c mt7615_unregister_ext_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xe1c4c068 mt7615_mcu_reg_rr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xe852235d mt7615_mcu_fill_msg -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xf2d89bf1 __mt7663_load_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xf9a6a706 mt7615_mac_sta_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615e 0xcf0bda3f mt7615_dma_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x91ce1e40 mt76_connac_mcu_sta_update_hdr_trans +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x9904cfa3 mt76_connac_mcu_alloc_sta_req +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x9a787ccf mt76_connac_mcu_alloc_wtbl_req +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x9c5155b3 mt76_connac_mcu_sched_scan_req +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x9ef4da0f mt76_connac_mcu_wtbl_hdr_trans_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x9f118a00 mt76_connac_mcu_set_rts_thresh +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x9fc1ff2a mt76_connac_mcu_sta_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xaaaefcda mt76_connac_mcu_get_nic_capability +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb83cfbdf mt76_connac_pm_dequeue_skbs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xbb90e24d mt76_connac_power_save_sched +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xbc7cd12a mt76_connac_mcu_cancel_hw_scan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xbda7e4f8 mt76_connac_mcu_set_mac_enable +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc253af02 mt76_connac_mcu_uni_add_bss +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd016110d mt76_connac_mcu_start_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd372f6f5 mt76_connac_mcu_sta_ba_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd731c0a4 mt76_connac_mcu_set_deep_sleep +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xdbe5f6bd mt76_connac_mcu_init_download +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xdd797900 mt76_connac_mcu_set_hif_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xde5557f8 mt76_connac_mcu_chip_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe484fcb4 mt76_connac_mcu_start_patch +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe5d382ed mt76_connac_mcu_wtbl_ba_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe9e208de mt76_connac_mcu_sta_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xee6559ef mt76_connac_mcu_hw_scan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf33fb296 mt76_connac_mcu_set_suspend_iter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf3bbec44 mt76_connac_mcu_coredump_event +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf42fc10d mt76_connac_mcu_set_channel_domain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x2917dab4 mt76s_alloc_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xb5bd2768 mt76s_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xe4f1a5c6 mt76s_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x1ae75a0e mt76u_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x208c4614 mt76u_alloc_mcu_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x49fc5561 mt76u_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x541cef55 mt76u_single_wr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x5d533572 mt76u_stop_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x630fc2ba mt76u_resume_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x8fc1bb7f mt76u_alloc_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xc51447f4 mt76u_stop_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xfb0fc194 mt76u_queues_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x0b9ab475 __mt7663_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x16433f4f mt7615_mac_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x167b7154 mt7615_mcu_restart +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x1c0e13a3 mt7615_mcu_reg_wr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x1ffdbacb mt7615_register_ext_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x270ee5dd mt7615_mcu_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x27b351bb mt7615_init_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x2d11b444 mt7615_mac_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x300365b1 mt7615_txp_skb_unmap +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x3131e129 mt7615_update_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x38208d71 mt7615_wait_for_mcu_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x3b4cae26 mt7615_init_debugfs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x43c1d90f mt7615_unregister_ext_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x47172e69 mt7622_trigger_hif_int +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x48357d84 mt7615_sta_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x48c90466 mt7615_mcu_exit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x58f2733c mt7615_init_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x63036ef0 mt7615_mac_sta_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x6a62f854 mt7615_mcu_reg_rr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x7ec7fc74 mt7615_thermal_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x830f1e06 mt7615_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x86286ae8 mt7615_mcu_parse_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x8fb1343c mt7615_mac_set_rates +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x97b87a46 mt7615_init_work +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xa270a740 mt7615_mcu_fill_msg +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xb9886bc5 mt7615_eeprom_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xd58315b6 mt7615_tx_token_put +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xe3da3dbd mt7615_queue_rx_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xf9a76dc2 mt7615_mac_write_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615e 0x1e41f1d1 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 0x16a7c0a3 mt7663_usb_sdio_register_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0xc1e00a22 mt7663_usb_sdio_tx_prepare_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0xc74900b5 mt7663_usb_sdio_tx_status_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0xe403cfb2 mt7663_usb_sdio_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x067633e8 mt76x0_phy_calibrate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x1b355c87 mt76x0_init_hardware -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x7b47718c mt76x0_mac_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xb0440e42 mt76x0_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xd22e7738 mt76x0_register_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xd77878a9 mt76x0_chip_onoff -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0030ce54 mt76x02_update_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x00f5ca4a mt76x02_eeprom_parse_hw_cap -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x012a6f37 mt76x02_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x013bab0e mt76x02_mac_set_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x288e63ad mt7663_usb_sdio_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0xd8ee6781 mt7663_usb_sdio_tx_status_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0xe94b3333 mt7663_usb_sdio_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0xf5b8e15e mt7663_usb_sdio_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x04b76959 mt76x0_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x2ef954cf mt76x0_chip_onoff +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x70a0b968 mt76x0_init_hardware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x8893cdba mt76x0_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xcb4d807c mt76x0_phy_calibrate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xdb076e11 mt76x0_mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x026b8233 mt76x02_phy_set_txdac EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0462ce68 mt76x02_add_rate_power_offset -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x058c5802 mt76x02_dma_disable -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x071b3f38 mt76x02_update_beacon_iter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0a170d8b mt76x02_remove_hdr_pad -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0a6b7280 mt76x02_config_mac_addr_list +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x04e75436 mt76x02_get_rx_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x05fdec3a mt76x02_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x070a9680 mt76x02_phy_set_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x09cae942 mt76x02_mac_shared_key_setup EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0d4023ec mt76x02_get_max_rate_power -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0e78c320 mt76x02_sta_rate_tbl_update -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x12db8d15 mt76x02_resync_beacon_timer -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x13682795 mt76x02_reconfig_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x13de7221 mt76x02_mcu_parse_response -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x14d70942 mt76x02_mac_reset_counters -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x24c4f847 mt76x02_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x26fb6e74 mt76x02_set_rts_threshold -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x283b4c51 mt76x02_enqueue_buffered_bc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2cd0c017 mt76x02_mcu_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1493509b mt76x02_dfs_init_params +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x180422fa mt76x02_phy_set_band +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1ec28940 mt76x02_rx_poll_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2270c8fe mt76x02_set_ethtool_fwver +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x235a7760 mt76x02_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x28b7c751 mt76x02_get_lna_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2cfa3592 mt76x02_mcu_function_select EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x35d2834d mt76x02_limit_rate_power -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x37e346fc mt76x02_mac_start -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3b515e21 mt76x02_get_efuse_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3e21548e mt76x02_phy_set_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3e8822e5 mt76x02_init_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4268d3e7 mt76x02_mcu_function_select -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4606cee9 mt76x02_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x482fb143 mt76x02_sta_ps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x56c1a09b mt76x02_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3700173c mt76x02_sta_rate_tbl_update +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3776ecc2 mt76x02_dma_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3a43e909 mt76x02_mcu_calibrate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3ea9d9a4 mt76x02_tx_status_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x53f28c23 mt76x02_update_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5536da0e mt76x02_mac_write_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x554e0c3e mt76x02_eeprom_copy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x57e5bd33 mt76x02_queue_rx_skb EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5bd84fd5 mt76x02_rates -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5cf26d44 mt76x02_mac_wcid_setup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5d201bb1 mt76x02_phy_adjust_vga_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x61de354d mt76x02_dma_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x64b431b3 mt76x02_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x653bc394 mt76x02_ampdu_action -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6ad4e93f mt76x02_remove_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6bdb0bf8 mt76x02_add_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x724aedf1 mt76x02_mcu_msg_send -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x79cdafb9 mt76x02_queue_rx_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7e9403d0 mt76x02_mac_setaddr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7fb36bbd mt76x02_init_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x81278d42 mt76x02_set_ethtool_fwver -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x826dac09 mt76x02_phy_set_band -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x84621939 mt76x02_set_tx_ackto -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x84b4c069 mt76x02_edcca_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x862e56ae mt76x02_mac_shared_key_setup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8decc4fe mt76x02_ext_pa_enabled +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5c1f8063 mt76x02_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5c74defc mt76x02_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5fc2ac4f mt76x02_dma_disable +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x63e15028 mt76x02_mac_wcid_setup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x69e0afbf mt76x02_init_agc_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6e03416b mt76x02_config_mac_addr_list +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7a2aaf64 mt76x02_init_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8a7fe73a mt76x02_phy_set_bw +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8b540144 mt76x02_get_efuse_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8ea13935 mt76x02_mac_reset_counters +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8f0da302 mt76x02_set_tx_ackto +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x90a26cd5 mt76x02_tx_complete_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 0x9466d9d7 mt76x02_phy_dfs_adjust_agc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9be9d3a4 mt76x02_phy_set_rxpath -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9e5abe60 mt76x02_mac_cc_reset -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa09f46fa mt76x02_bss_info_changed -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa5a5ef2b mt76x02_phy_set_bw -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa8331c14 mt76x02_tx_set_txpwr_auto -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa8cae7a7 mt76x02e_init_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa921d197 mt76x02_set_coverage_class -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb6aa9b19 mt76x02_eeprom_copy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb9901b79 mt76x02_tx_prepare_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xbb97f582 mt76x02_init_agc_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc2602e0d mt76x02_get_lna_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc285329a mt76x02_mac_write_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd2378a6c mt76x02_dfs_init_params -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd739d9b9 mt76x02_mcu_calibrate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd7b987ae mt76x02_phy_set_txdac -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd85c1c4e mt76x02_configure_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe3caa8fd mt76x02_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe89a55c9 mt76x02_rx_poll_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xec9d83b3 mt76x02_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xeca24fac mt76x02_mcu_set_radio_state -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf13586ff mt76x02_init_debugfs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf6406079 mt76x02_get_rx_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xfed3d223 mt76x02_tx_status_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x120c1965 mt76x02u_mcu_fw_send_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x15012aef mt76x02u_init_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x190cf8b3 mt76x02u_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x45dcd10c mt76x02u_mac_start -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xaad563f8 mt76x02u_init_mcu -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xd7b262f6 mt76x02u_exit_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xe7743420 mt76x02u_tx_prepare_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xefa36cc7 mt76x02u_mcu_fw_reset -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x0c309e2c mt76x2_reset_wlan -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x11adfa04 mt76x2_phy_tssi_compensate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x15ae045c mt76x2_get_temp_comp -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x246c4871 mt76x2_phy_update_channel_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x2e52ff25 mt76x2_phy_set_txpower_regs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x31572cf6 mt76x2_read_rx_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x44a493b9 mt76x2_get_power_info -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x49b42eaf mt76x2_apply_gain_adj -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x7efb6f8b mt76x2_mcu_init_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x992ded72 mt76x2_init_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x9dac66c6 mt76x2_mcu_tssi_comp -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xbcdfc0cc mt76x2_configure_tx_delay -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xc1a146b7 mt76x2_mac_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xd4701695 mt76_write_mac_initvals -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xd7351ab1 mt76x2_eeprom_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xda113dd4 mt76x2_mcu_set_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xe9e5aefa mt76x2_get_rate_power -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xeee763af mt76x2_mcu_load_cr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xf6938ff0 mt76x2_phy_set_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x29716e18 wilc_handle_isr -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x7e72b2f8 wilc_cfg80211_init -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x8609330b chip_allow_sleep -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xa4645cb4 chip_wakeup -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xbc7b4ddd host_wakeup_notify -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xc4ef8cdb host_sleep_notify -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xfab4e80f wilc_netdev_cleanup -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x0e2bb300 qtnf_core_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x99f63291 mt76x02_mcu_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9bf6d464 mt76x02_remove_hdr_pad +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa33d2163 mt76x02_mac_cc_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa4cbe269 mt76x02_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa5928472 mt76x02_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xaae15440 mt76x02_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xac0d5219 mt76x02_mcu_set_radio_state +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb509cfd5 mt76x02_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb52fb7a3 mt76x02e_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xba031a6b mt76x02_phy_dfs_adjust_agc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xbcfeabd2 mt76x02_phy_adjust_vga_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc0983a27 mt76x02_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc0b74d6f mt76x02_mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc1d8f5c9 mt76x02_eeprom_parse_hw_cap +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc2d3443c mt76x02_phy_set_rxpath +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc3198336 mt76x02_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc7b92a1b mt76x02_edcca_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc8029d28 mt76x02_ext_pa_enabled +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xcb99fca4 mt76x02_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xcba632d0 mt76x02_enqueue_buffered_bc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xce0afaab mt76x02_mac_setaddr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd0710719 mt76x02_update_beacon_iter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd09346f0 mt76x02_mcu_msg_send +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xda9b7713 mt76x02_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xdac65f31 mt76x02_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe835031f mt76x02_reconfig_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xec45f829 mt76x02_resync_beacon_timer +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xef912676 mt76x02_mac_set_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf1ba37c4 mt76x02_sta_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf1c1cd69 mt76x02_mcu_parse_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf4ac1be4 mt76x02_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf8597650 mt76x02_set_coverage_class +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xfb42aa1c mt76x02_init_debugfs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xfe1701bd mt76x02_tx_set_txpwr_auto +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x1f99b6c1 mt76x02u_mcu_fw_send_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x4a2eb69b mt76x02u_mcu_fw_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x65dc6f96 mt76x02u_exit_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x683646c0 mt76x02u_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x7d9a69f0 mt76x02u_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xbb8d5b5d mt76x02u_init_mcu +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xe01a324a mt76x02u_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xf4ecedd2 mt76x02u_mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x021ed877 mt76_write_mac_initvals +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x04efba47 mt76x2_reset_wlan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x1e33bad7 mt76x2_phy_tssi_compensate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x3cdc6f2a mt76x2_mcu_tssi_comp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x3f7b9bff mt76x2_configure_tx_delay +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x4535a6b3 mt76x2_get_temp_comp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x53647cec mt76x2_read_rx_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x588201af mt76x2_mcu_set_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x6a18d574 mt76x2_phy_set_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x6fc9f9d4 mt76x2_eeprom_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x7f268b5e mt76x2_mcu_init_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x80c574b4 mt76x2_apply_gain_adj +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xab447f21 mt76x2_get_rate_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xabdf709d mt76x2_init_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xcc5b299e mt76x2_phy_update_channel_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xd028184b mt76x2_mcu_load_cr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xd26ff8bf mt76x2_mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xdab4547d mt76x2_phy_set_txpower_regs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xe234b233 mt76x2_get_power_info +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x09ac2b7a chip_wakeup +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x25def9e7 host_wakeup_notify +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x2e1fa7b8 host_sleep_notify +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x4999ff29 wilc_netdev_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x49ace388 wilc_cfg80211_init +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x63db26b6 chip_allow_sleep +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xc86acbb0 wilc_handle_isr +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x102634c7 qtnf_get_debugfs_dir +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x22aadb89 qtnf_core_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x30073dce qtnf_classify_skb EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x31fab83c qtnf_chipid_to_string -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x666a0fec qtnf_trans_handle_rx_ctl_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x6b14683a qtnf_classify_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x82f4175c qtnf_get_debugfs_dir -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xb25d3a21 qtnf_core_attach -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xf603ce96 qtnf_wake_all_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x021d54a4 rt2800_config_ant -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x061e36c6 rt2800_probe_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x096e1334 rt2800_txstatus_timeout -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x0eb07fab rt2800_set_rts_threshold -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x13de53ab rt2800_get_survey -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x2b6c4296 rt2800_ampdu_action -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x3900dc4c rt2800_wait_csr_ready -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x39e65c3a rt2800_write_tx_data -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x3d47d12c rt2800_enable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x49b4af4f rt2800_reset_tuner -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x4ace6e3b rt2800_write_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x53b03db7 rt2800_read_eeprom_efuse -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x545ca850 rt2800_pre_reset_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x5b0bccdd rt2800_config_erp -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x5d895c92 rt2800_rfkill_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x606b706d rt2800_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x61038212 rt2800_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x68cd9577 rt2800_get_txwi_rxwi_size -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x71a41018 rt2800_clear_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x85fb6966 rt2800_link_tuner -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x86cc845c rt2800_load_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x8b9bca8b rt2800_txdone_nostatus -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x9334264c rt2800_process_rxwi -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x948125a4 rt2800_watchdog -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x95f4a18e rt2800_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x96659daa rt2800_config_shared_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x9d36590a rt2800_vco_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa215b117 rt2800_config_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa7d527b3 rt2800_mcu_request -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb05c1f7c rt2800_link_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb44199fa rt2800_check_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xbc26e06f rt2800_efuse_detect -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xbf11a9d4 rt2800_txdone_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc7119b12 rt2800_config_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xca2bae22 rt2800_config_pairwise_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xcdb68824 rt2800_txstatus_pending -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd8256e69 rt2800_disable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe2d10108 rt2800_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe8c4b3ae rt2800_gain_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe9c0dd04 rt2800_wait_wpdma_ready -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf1528511 rt2800_disable_wpdma -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf27bb583 rt2800_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xfa3b12c7 rt2800_get_tsf -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xfd36cf79 rt2800_get_key_seq -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x05f07a93 rt2800mmio_enable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x072c2ade rt2800mmio_write_tx_desc -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x0c9bd1a2 rt2800mmio_start_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x2789d3f5 rt2800mmio_get_entry_state +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x90af3bf0 qtnf_wake_all_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xa7d5018c qtnf_trans_handle_rx_ctl_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xaf4d3dfe qtnf_core_attach +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x06678b88 rt2800_config_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x084ef602 rt2800_wait_wpdma_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x0ba4f10e rt2800_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x133834ac rt2800_link_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x170775da rt2800_vco_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x171f9c31 rt2800_wait_csr_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x2021dfa6 rt2800_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x2b9d7ef6 rt2800_txstatus_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x37d2527b rt2800_txstatus_timeout +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x3a0191c8 rt2800_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x3c98b0e1 rt2800_link_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x40066e5a rt2800_txdone_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x56e53e3b rt2800_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x5722172a rt2800_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x59354980 rt2800_disable_wpdma +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x5d94da8f rt2800_config_pairwise_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x61e3d026 rt2800_get_key_seq +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6a93ff70 rt2800_config_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6cb15c1f rt2800_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x754be6f5 rt2800_config_erp +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7ce04506 rt2800_mcu_request +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7d4d95d8 rt2800_probe_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7e240bcc rt2800_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x816ee94e rt2800_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x86b91d48 rt2800_reset_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x86c33d58 rt2800_gain_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x8b5eb1a0 rt2800_clear_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x8dbf062d rt2800_get_txwi_rxwi_size +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x8eb324e0 rt2800_read_eeprom_efuse +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x9b63ff4c rt2800_txdone_nostatus +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa195fe71 rt2800_write_tx_data +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa5d0c406 rt2800_efuse_detect +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xafae597b rt2800_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb39aa07c rt2800_write_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb868d4eb rt2800_config_ant +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xbc1dbb82 rt2800_check_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc4d9d00b rt2800_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc97c6c40 rt2800_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd08d9910 rt2800_pre_reset_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe2ff9dad rt2800_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe7d4e7f6 rt2800_process_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf11ece8a rt2800_config_shared_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf287bad0 rt2800_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf9d29d38 rt2800_get_tsf +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x1b6582a2 rt2800mmio_toggle_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x22ccebd8 rt2800mmio_write_tx_desc EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x32ac3645 rt2800mmio_rxdone_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x3830cbd8 rt2800mmio_get_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x35dda138 rt2800mmio_flush_queue EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x3d741c87 rt2800mmio_pretbtt_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x4b982f4a 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 0x511ac562 rt2800mmio_init_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x53bbc530 rt2800mmio_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5512a108 rt2800mmio_get_txwi EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5fa4db64 rt2800mmio_interrupt -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x6b3509aa rt2800mmio_get_dma_done -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x7f94c06f rt2800mmio_queue_init -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x7fac0fad rt2800mmio_probe_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x8276aa6d rt2800mmio_fill_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x8a8057fa rt2800mmio_toggle_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x6a98559b rt2800mmio_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x70f2d651 rt2800mmio_probe_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x8543db3e rt2800mmio_get_dma_done +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x8cab77a2 rt2800mmio_init_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x9212afd5 rt2800mmio_fill_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x96d2fd9c rt2800mmio_stop_queue 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 0xb35953f3 rt2800mmio_init_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xb6acc9d3 rt2800mmio_stop_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xc0cc6551 rt2800mmio_clear_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xff4135c0 rt2800mmio_kick_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x00932340 rt2x00mac_tx_frames_pending -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x060c9665 rt2x00lib_dmastart -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x0ba8f4dc rt2x00lib_get_bssidx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x0fffb5a5 rt2x00lib_txdone_noinfo -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x157c6dd0 rt2x00queue_unmap_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x167d5bdb rt2x00lib_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1b288ebb rt2x00mac_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x21932680 rt2x00mac_get_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3621d339 rt2x00queue_for_each_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x396e0de6 rt2x00lib_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x39ff3792 rt2x00mac_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3b75a765 rt2x00mac_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x45cc3022 rt2x00mac_get_ringparam -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x48f548c2 rt2x00mac_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4a565ca0 rt2x00mac_get_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4c879f4b rt2x00queue_get_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4e5422e2 rt2x00mac_set_tim -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x57a9a93d rt2x00mac_add_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x59d0eb37 rt2x00mac_sw_scan_start -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x5afe6b1d rt2x00queue_start_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x5b28f546 rt2x00mac_flush -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x5d9a5818 rt2x00queue_flush_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x60d255e6 rt2x00queue_stop_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x653fa311 rt2x00mac_reconfig_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x6586f0bd rt2x00lib_remove_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x6e66ed86 rt2x00mac_rfkill_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7e99096a rt2x00lib_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x81636229 rt2x00queue_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x84963fb0 rt2x00lib_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x8d51e036 rt2x00mac_configure_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x91388c4e rt2x00mac_remove_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x986120bf rt2x00lib_set_mac_address -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x99786bbb rt2x00mac_set_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x9bacf463 rt2x00queue_stop_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa0b38368 rt2x00mac_start -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xab300bd7 rt2x00mac_bss_info_changed -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xad2dc5ea rt2x00mac_sw_scan_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb1f9f3c9 rt2x00queue_start_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb7ae0d89 rt2x00queue_unpause_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xbd72bf52 rt2x00mac_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xbffe7384 rt2x00lib_pretbtt -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc4053f02 rt2x00queue_map_txskb -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd2e6f606 rt2x00lib_probe_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe98b820b rt2x00lib_beacondone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf1d9067b rt2x00lib_dmadone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xfd231f0b rt2x00queue_pause_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xfe4651ed rt2x00lib_txdone_nomatch -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x2b308ede rt2x00mmio_initialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x98020273 rt2x00mmio_uninitialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xbe24246d rt2x00mmio_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xe405970f rt2x00mmio_regbusy_read -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xe65d3dde rt2x00mmio_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x1cfea681 rt2x00pci_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x896b4e59 rt2x00pci_pm_ops -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0xe22c3afc rt2x00pci_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x0f98caa6 rt2x00usb_register_read_async -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x111949b2 rt2x00usb_regbusy_read -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x4cf3967b rt2x00usb_kick_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x51e7fd69 rt2x00usb_vendor_req_buff_lock -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x562a44eb rt2x00usb_vendor_request_buff -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x87c7911f rt2x00usb_disconnect -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x882253c2 rt2x00usb_clear_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x9571542e rt2x00usb_initialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xae010688 rt2x00usb_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xcbc5ad55 rt2x00usb_watchdog -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xcf2cedd7 rt2x00usb_disable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xd322ca61 rt2x00usb_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xe0663a55 rt2x00usb_vendor_request -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xe7aa0320 rt2x00usb_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xeccbf64c rt2x00usb_uninitialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xfec7f888 rt2x00usb_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x28dca421 dm_restorepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5c2fb18b rtl92c_set_p2p_ps_offload_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9649e60f dm_writepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9f45aeb4 dm_savepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x16dabf4f rtl8723_phy_save_mac_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x30945074 rtl8723_phy_init_bb_rf_reg_def -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x348defff rtl8723_fw_free_to_go -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x3c8f2a59 rtl8723_dm_init_dynamic_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x3d3e456c rtl8723_download_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xa9843ad9 rt2800mmio_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xc957bbbf rt2800mmio_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xcf0a2fac rt2800mmio_queue_init +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xdd3380dd rt2800mmio_init_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xe5d5e981 rt2800mmio_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x087a6e84 rt2x00mac_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x0c776599 rt2x00lib_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x0d0bb8a9 rt2x00lib_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x0d445a96 rt2x00mac_set_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x0d8540fa rt2x00mac_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x0f0d16ee rt2x00lib_dmadone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x0f6185c8 rt2x00mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x146abb47 rt2x00queue_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x14932bad rt2x00mac_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1f9d932a rt2x00lib_beacondone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x21b497c8 rt2x00mac_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x2cdab780 rt2x00queue_map_txskb +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3bbaed55 rt2x00lib_set_mac_address +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3dcc69f6 rt2x00queue_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3e72fa25 rt2x00queue_unmap_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3f66db42 rt2x00queue_for_each_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x40d034e9 rt2x00mac_tx_frames_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4a97cda0 rt2x00mac_reconfig_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x54e8aa6b rt2x00mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x58e41e01 rt2x00queue_flush_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x5e1f7a46 rt2x00lib_remove_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x5f496a9b rt2x00mac_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x60712454 rt2x00mac_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x609c07c9 rt2x00mac_get_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x6d0f4e93 rt2x00mac_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x78452b48 rt2x00lib_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x8c7dc8f9 rt2x00lib_dmastart +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x9210236b rt2x00mac_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x9221aa60 rt2x00mac_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x94d84186 rt2x00lib_txdone_nomatch +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x96089530 rt2x00mac_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x9c4c41ab rt2x00queue_stop_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa04c2055 rt2x00mac_sw_scan_start +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa1ec05cc rt2x00mac_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb23410e3 rt2x00lib_probe_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb7d5297e rt2x00queue_unpause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb7f2254c rt2x00mac_get_ringparam +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb9182ee4 rt2x00queue_get_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc51b0530 rt2x00queue_start_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc7ca6b00 rt2x00lib_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xcac1376f rt2x00mac_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd908b65e rt2x00queue_pause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd9b5e58a rt2x00queue_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xde6aa2b5 rt2x00lib_txdone_noinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe65555ad rt2x00mac_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe8bfcddd rt2x00lib_pretbtt +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xfebf4c6c rt2x00lib_get_bssidx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x13d0ce2f rt2x00mmio_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x2357a702 rt2x00mmio_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x58f82539 rt2x00mmio_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x96d9bf48 rt2x00mmio_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xb66345cf rt2x00mmio_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x29bbda91 rt2x00pci_pm_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x3e9051f1 rt2x00pci_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0xa37b293d rt2x00pci_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x02537310 rt2x00usb_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x03090503 rt2x00usb_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x2cf7a946 rt2x00usb_vendor_request_buff +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x3bb91d1d rt2x00usb_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x4abe3df8 rt2x00usb_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x64337a1c rt2x00usb_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x9e4f51c1 rt2x00usb_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xae7752fb rt2x00usb_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xb69c4ea9 rt2x00usb_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xbce385b4 rt2x00usb_vendor_req_buff_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xbebc128d rt2x00usb_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xca8a30e9 rt2x00usb_register_read_async +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xde4c6162 rt2x00usb_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xe4a9d3c4 rt2x00usb_disconnect +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xe6063078 rt2x00usb_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xec426a6a rt2x00usb_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3528ba14 dm_writepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x511efc7c rtl92c_set_p2p_ps_offload_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7a80ad92 dm_restorepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xdf25dfca dm_savepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x07143b65 rtl8723_save_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x2fe14ce7 rtl8723_download_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x323fddda rtl8723_phy_path_a_fill_iqk_matrix +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x3aa4f33c rtl8723_phy_reload_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x3b09ae61 rtl8723_phy_save_mac_registers EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x3f5bf9c0 rtl8723_phy_calculate_bit_shift -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x40392d8b rtl8723_phy_path_a_fill_iqk_matrix -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x42133b4f rtl8723be_firmware_selfreset -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x5719fe31 rtl8723_phy_rf_serial_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x5c65fd0c rtl8723_phy_mac_setting_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x5ced3377 rtl8723_phy_query_bb_reg -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x70b996b1 rtl8723_phy_path_a_standby -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x75279afd rtl8723_phy_rf_serial_read -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x7b737334 rtl8723_save_adda_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x7f967ba2 rtl8723_phy_path_adda_on -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8a4d1f96 rtl8723_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x474fb899 rtl8723_dm_init_edca_turbo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x4b04e6b3 rtl8723_phy_path_a_standby +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x4f4c145c rtl8723_phy_pi_mode_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x5530e017 rtl8723be_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x5848119f rtl8723ae_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x7c9ef68c rtl8723_phy_reload_mac_registers EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8baf8913 rtl8723_phy_set_sw_chnl_cmdarray -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x9637bde7 rtl8723_phy_reload_mac_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x9af16be2 rtl8723_phy_reload_adda_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x9b5ee1b1 rtl8723ae_firmware_selfreset -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xc32cedf6 rtl8723_enable_fw_download -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xc371106a rtl8723_phy_pi_mode_switch -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xcfec43c8 rtl8723_cmd_send_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd9b6d986 rtl8723_dm_init_dynamic_bb_powersaving -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe5a8cfef rtl8723_phy_set_bb_reg -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xec77b94c rtl8723_write_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xfe88e1c8 rtl8723_dm_init_edca_turbo -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1a6f3373 rtl_recognize_peer +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8bfcaf81 rtl8723_cmd_send_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa9a5df75 rtl8723_phy_init_bb_rf_reg_def +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xaadcdaeb rtl8723_phy_rf_serial_read +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xae470425 rtl8723_phy_mac_setting_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xaffc24cb rtl8723_phy_query_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb4d8fd44 rtl8723_write_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xc1ff5802 rtl8723_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xc376ec6e rtl8723_dm_init_dynamic_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xca4733ba rtl8723_enable_fw_download +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd556c123 rtl8723_phy_set_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xda53d5ed rtl8723_phy_rf_serial_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe1da80b4 rtl8723_fw_free_to_go +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xea839d18 rtl8723_dm_init_dynamic_bb_powersaving +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xfd973aa8 rtl8723_phy_path_adda_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x05d4586c rtl_fw_block_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0ddc0ec0 rtl_set_tx_report +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x10d65561 read_efuse_byte +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x28ae7144 rtl_deinit_deferred_work EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2921a4d4 rtl_btc_status_false EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x29b96918 rtl_update_beacon_work_callback -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2d3093c4 rtl_is_special_data +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2d7f926c rtl_action_proc EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2e5382f9 rtl_fill_dummy -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2ffbbef0 rtl_fw_block_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x320c9064 rtl_swlps_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3386dabf rtl_efuse_ops_init +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x30987450 rtl_tx_ackqueue EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x37b993b4 rtl_global_var -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3c5f00d3 rtl_tx_mgmt_proc -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3d1c1c03 rtl_tx_ackqueue -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6483c190 read_efuse_byte -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x659fb6b7 rtl_init_core -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x673321b0 rtl_deinit_rfkill -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x76fb6b04 rtl_set_tx_report -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x829968ad rtl_deinit_core -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8a4843c9 rtl_ips_nic_on -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x90446c92 rtl_action_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x49d34dca rtl_beacon_statistic +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x558d4582 rtl_lps_leave +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x56917912 rtl_tx_mgmt_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5f788dbe rtl_deinit_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6122c1db rtl_recognize_peer +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6b64c754 rtl_init_rx_config +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7039beaf rtl_p2p_info +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8f1ad2d4 rtl_is_special_data EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x97e05663 rtl_tid_to_ac -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa1881cc1 rtl_fw_page_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa73c5aef rtl_get_hal_edca_param -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xab3d4d15 rtl_p2p_info -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb26b94d2 rtl_deinit_deferred_work -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd87b09ec rtl_get_hwinfo -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe28ce332 rtl_lps_leave -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe49ebddd rtl_init_rx_config -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe7bd8db3 rtl_beacon_statistic -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe8e39fb6 rtl_tx_report_handler -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xeeaed0d3 rtl_lps_enter -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf282988e rtl_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x98d0d600 rtl_ips_nic_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb729c22b rtl_swlps_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbc24f74e rtl_tx_report_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbffa3ca1 rtl_get_hwinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xcd3323e5 rtl_init_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd02a45ec rtl_efuse_ops_init +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xdf76a4e7 rtl_deinit_rfkill +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe04abcb5 rtl_lps_enter +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe2e404b8 rtl_get_hal_edca_param +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf76912f4 rtl_ops EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf8ff6add rtl_lps_change_work_callback +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xfac81a2a rtl_fw_page_write +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x06fac9b6 rsi_hal_device_init EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x0f5c3ce9 rsi_zone_enabled -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xa17edad9 rsi_read_pkt -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xc467f455 rsi_91x_init -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xc66e021e rsi_hal_device_init -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xc93606e0 rsi_mac80211_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x5d76abd7 rsi_91x_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x736996df rsi_read_pkt +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x763902b9 rsi_mac80211_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x8d4d9791 rsi_91x_deinit EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xcd173710 rsi_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xd116f10a rsi_91x_deinit -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x575c679c cw1200_can_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x5e65329c cw1200_core_release -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xb8f5201d cw1200_core_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xf9d1cb52 cw1200_irq_handler -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xb1197d5c wl1251_alloc_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xc0492555 wl1251_init_ieee80211 -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xd1936833 wl1251_free_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x001064ef wl12xx_cmd_build_probe_req +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x0f2f086c cw1200_core_release +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x2464b76a cw1200_irq_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x58ed35d6 cw1200_can_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x5c20241a cw1200_core_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x242041dc wl1251_init_ieee80211 +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x712a794d wl1251_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x95003452 wl1251_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0296ff2f wlcore_translate_addr EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x06d3b27e wl12xx_debug_level -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0cd1f277 wlcore_event_sched_scan_completed -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0f9021f6 wlcore_event_fw_logger -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x17380aa3 wl1271_cmd_send -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1b5a97bc wlcore_enable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0ac57f52 wl1271_tx_min_rate_get +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x15e8a198 wlcore_event_rssi_trigger +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x17183b17 wlcore_synchronize_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x19b421b2 wlcore_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1dbd35f1 wlcore_set_partition EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x20351125 wlcore_get_native_channel_type -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x270e1926 wlcore_event_soft_gemini_sense -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2953536b wlcore_event_max_tx_failure -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x31b16220 wlcore_event_ba_rx_constraint -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x32d99e04 wlcore_event_rssi_trigger -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3c350b86 wl12xx_acx_mem_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x47975741 wlcore_scan_sched_scan_results -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4a4bc43c wlcore_cmd_wait_for_event_or_timeout -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4df2dc6b wl1271_debugfs_update_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4fc3c449 wlcore_alloc_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x53bc874c wl1271_cmd_configure -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5dfb3fd3 wlcore_disable_interrupts_nosync -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5fe6f41b wl1271_cmd_data_path -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6032f30e wlcore_event_inactive_sta -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6695a2e6 wlcore_synchronize_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x675ab0cd wl1271_acx_set_ht_capabilities -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7247c896 wlcore_event_dummy_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x73dc2a5a wl1271_acx_pm_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x74bf5196 wlcore_boot_run_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x74e1387f wlcore_boot_upload_nvs -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x766271a6 wlcore_event_roc_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x770e2e47 wl1271_cmd_test -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9308bf23 wlcore_cmd_generic_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x94ac1cf7 wl1271_tx_min_rate_get -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9bdf2ac2 wlcore_event_beacon_loss -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9e89e98c wlcore_translate_addr -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9ebfe661 wlcore_free_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa2e852a8 wl1271_acx_init_mem_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa6e1afe6 wl1271_tx_flush -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa936ba66 wlcore_boot_upload_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb31d90eb wlcore_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xbf22b1d0 wlcore_disable_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xbfe87ede wlcore_event_channel_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x20f70bc6 wlcore_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x217be293 wlcore_set_scan_chan_params +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x29d6ff88 wl1271_cmd_test +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3446b2d8 wl1271_debugfs_update_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x370b3998 wlcore_disable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3d0e9fca wlcore_enable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x46a2b78c wlcore_cmd_generic_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4bbfed63 wl1271_acx_sleep_auth +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x507bb2d6 wlcore_scan_sched_scan_ssid_list +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5acbbf5d wl1271_tx_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5c5024a9 wlcore_scan_sched_scan_results +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x63b0b57d wlcore_event_fw_logger +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x688f040b wlcore_boot_upload_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x68e17bfb wl1271_acx_pm_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6cadf712 wlcore_boot_upload_nvs +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6da88b7c wlcore_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7814b448 wlcore_event_inactive_sta +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7a2ee830 wlcore_event_beacon_loss +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7a9c057a wlcore_event_roc_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7c6924c7 wl1271_cmd_send +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7c8b7ea8 wlcore_cmd_wait_for_event_or_timeout +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x80de463c wlcore_event_ba_rx_constraint +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9fbb8e65 wl1271_acx_set_ht_capabilities +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa01e032e wlcore_event_dummy_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xabc5446d wlcore_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xac5926d9 wl12xx_cmd_build_probe_req +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb868dca0 wlcore_disable_interrupts_nosync +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xbbc5e859 wlcore_event_max_tx_failure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xbfa8c61b wlcore_boot_run_firmware EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc1db71fa wl1271_format_buffer -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc7d76208 wlcore_set_scan_chan_params -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd10d6855 wlcore_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd9754d61 wl1271_acx_sleep_auth -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xea9663b9 wlcore_scan_sched_scan_ssid_list -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf0dc1cdb wlcore_set_partition -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf0f461d2 wlcore_probe -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x00f99bd7 nfcmrvl_nci_register_dev -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x077d9416 nfcmrvl_nci_unregister_dev -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x9b637ddb nfcmrvl_parse_dt -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xe1614d90 nfcmrvl_nci_recv_frame -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x6c06dfe8 pn53x_common_init -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x83dcdc60 pn533_rx_frame_is_cmd_response -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x89836e8f pn532_i2c_nfc_alloc -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x9378a408 pn53x_common_clean -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x981bf585 pn533_finalize_setup -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xd82a301b pn53x_unregister_nfc +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc6388fa4 wlcore_event_soft_gemini_sense +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xde017e3b wlcore_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe1928e51 wl1271_cmd_configure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe69a5771 wlcore_event_sched_scan_completed +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe90ca31f wl12xx_acx_mem_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf54681ce wl1271_cmd_data_path +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xfdfdd7b1 wlcore_event_channel_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xff2b8fdb wl1271_acx_init_mem_config +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x39f0513b nfcmrvl_nci_register_dev +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x45b3aa42 nfcmrvl_nci_recv_frame +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x7c0cde09 nfcmrvl_parse_dt +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xaeed3f15 nfcmrvl_nci_unregister_dev +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x39bd3ddd pn533_rx_frame_is_cmd_response +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x6a02d799 pn53x_common_clean +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x984e6f75 pn533_finalize_setup +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xa9ac582e pn53x_unregister_nfc +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xad6130ec pn53x_register_nfc +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xb47b7c47 pn532_i2c_nfc_alloc +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xcc3445b1 pn53x_common_init EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xdecfd339 pn533_rx_frame_is_ack -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xe26ad846 pn53x_register_nfc -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x04a7941b st_nci_hci_event_received -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x50e062e0 st_nci_discover_se -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x6fc62a19 st_nci_remove -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xa088ac1a st_nci_hci_cmd_received -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xaadb93e6 st_nci_enable_se -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xb5dd1e05 st_nci_hci_load_session -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xc5fe1f3c st_nci_probe -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xf8742f58 st_nci_disable_se -EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x1fe595ef st95hf_spi_recv_response -EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0xe2e9e993 st95hf_spi_send -EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0xe55284b0 st95hf_spi_recv_echo_res +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x00714612 st_nci_hci_cmd_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x04c06e3f st_nci_hci_load_session +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x79d3b3de st_nci_probe +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x834c1c55 st_nci_disable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x87f1eea2 st_nci_enable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x98b96098 st_nci_hci_event_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xb75e347d st_nci_discover_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xba9c34e2 st_nci_remove +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x372b96b5 st95hf_spi_recv_response +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x5887db85 st95hf_spi_recv_echo_res +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x5ef41f58 st95hf_spi_send EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x0862001f ntb_transport_tx_free_entry EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x30934216 ntb_transport_max_size EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x32537aca ntb_transport_link_query +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x33aacd03 ntb_transport_create_queue EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x3d54dbfc ntb_transport_tx_enqueue EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x436098aa ntb_transport_link_down -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x691c106c ntb_transport_unregister_client EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x82e6c13d ntb_transport_qp_num +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x9a121f18 ntb_transport_unregister_client EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x9c992c8f ntb_transport_link_up -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xa5cc6968 ntb_transport_create_queue EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc270dc24 ntb_transport_free_queue EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc37d9036 ntb_transport_rx_remove EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xd40e7a02 ntb_transport_rx_enqueue -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf5416a4f 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 0x0d3a4626 async_pmem_flush -EXPORT_SYMBOL_GPL drivers/nvdimm/nd_virtio 0x1023cd6d virtio_pmem_host_ack -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x01c56197 nvme_delete_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0879ad13 nvme_init_ctrl_finish -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0c9f21f4 nvme_stop_keep_alive +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xfe7dd5e7 ntb_transport_register_client +EXPORT_SYMBOL_GPL drivers/nvdimm/nd_virtio 0x291a1254 async_pmem_flush +EXPORT_SYMBOL_GPL drivers/nvdimm/nd_virtio 0xe853c04c virtio_pmem_host_ack +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x016fe35d nvme_cleanup_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x02575c33 nvme_set_queue_count +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0ecb6480 nvme_uninit_ctrl EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x11abc494 __SCK__tp_func_nvme_sq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x11f709f4 nvme_submit_sync_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1416f35b nvme_fail_nonready_command -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x151be99c nvme_wait_freeze_timeout -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1539c121 nvme_cleanup_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x15d7e345 nvme_enable_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x16810ca4 nvme_get_features -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x23214118 nvme_wait_reset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2904d41e nvme_start_freeze -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2dc03fb1 nvme_init_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x35fc5099 nvme_cancel_admin_tagset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x384a3288 nvme_complete_async_event -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x387a3679 nvme_kill_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3b6ed270 __nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1abe42f6 nvme_complete_async_event +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x219f5670 nvme_enable_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x24846647 nvme_set_features +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x330ba55a nvme_wait_freeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x34dc0cc3 __nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x35d55267 nvme_shutdown_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x38cc49b7 nvme_sync_io_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x392a464f nvme_start_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x39f507d6 nvme_start_queues EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x49224181 nvme_reset_wq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x4d24afb8 nvme_disable_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x5c80773b __traceiter_nvme_sq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x600c43c4 nvme_start_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x61257d1c nvme_host_path_error +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x4ece8ff2 __traceiter_nvme_sq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x55930eb0 nvme_init_ctrl_finish +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x59e9c609 nvme_change_ctrl_state +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x5cf5a7bc nvme_disable_ctrl EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x64b62862 nvme_wq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x69ac13ab nvme_remove_namespaces -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x76d7e25b nvme_try_sched_reset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x77a3aafc nvme_shutdown_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7d48c960 nvme_uninit_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x6b691ba6 nvme_get_features +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x6f033a07 nvme_start_freeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x733caa83 nvme_wait_reset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7dcb38fd nvme_fail_nonready_command EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x813cf212 nvme_io_timeout -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x89c45faf nvme_cancel_tagset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x819bf917 nvme_stop_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x849ae4b0 nvme_submit_sync_cmd EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8ab19397 nvme_sec_submit -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8ae0d25e nvme_sync_io_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8b5439cb nvme_set_queue_count -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x9b364060 nvme_set_features -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x9c620d8a nvme_cancel_request -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa752ef2d nvme_stop_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xad36df11 nvme_unfreeze -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xad4135c2 nvme_sync_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xbaf0bc1f nvme_setup_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xbb0faa1e nvme_reset_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xbc8c13ad nvme_wait_freeze -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc7868440 __nvme_check_ready +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x94d597ec nvme_host_path_error +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x94e6dee5 __nvme_check_ready +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x95ed9b82 nvme_alloc_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x9b68c902 nvme_complete_rq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x9d0543e2 nvme_setup_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x9f72d542 nvme_cancel_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa30ed72f nvme_try_sched_reset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb4108a28 nvme_stop_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xba9ca957 nvme_init_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xbc1bd2cc nvme_stop_keep_alive +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc0b4cbbe nvme_remove_namespaces +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc3b4e38d nvme_cancel_admin_tagset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc77a5afa nvme_sync_queues 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 0xd6d7c923 nvme_complete_rq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xdb4cf2d5 nvme_wait_freeze_timeout EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xdcafb566 __tracepoint_nvme_sq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe5084b40 nvme_alloc_request -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe7fcdfea nvme_start_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xea282080 nvme_stop_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xfa06c778 nvme_change_ctrl_state -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x0d1856fc nvmf_connect_io_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe3ae8c35 nvme_delete_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe9437513 nvme_reset_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xeae1e4ab nvme_unfreeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xefec83b1 nvme_cancel_tagset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf787fd1a nvme_kill_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x07d87712 nvmf_ip_options_match EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x0e1f31fe nvmf_free_options -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x0ef1c8bf nvmf_reg_read32 -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x1c4a054a nvmf_get_address -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x1e377af4 nvmf_ip_options_match -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x54280ebe nvmf_reg_write32 -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x7b521b96 nvmf_reg_read64 -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x809b2128 nvmf_register_transport -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x8e12a902 nvmf_should_reconnect -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x922b73ba nvmf_connect_admin_queue -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xa600e98a nvmf_unregister_transport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x1aa33ef7 nvmf_get_address +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x296f490d nvmf_reg_write32 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x47b77984 nvmf_should_reconnect +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x7b91ff22 nvmf_connect_admin_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xb3cd43a3 nvmf_register_transport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xb615b469 nvmf_reg_read64 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xbe941924 nvmf_unregister_transport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xbf5bcbc7 nvmf_connect_io_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xd0d54abd nvmf_reg_read32 EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x0d12e564 nvme_fc_register_remoteport EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x3884f8b8 nvme_fc_unregister_localport EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x3e33ac54 nvme_fc_rescan_remoteport EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x8a9cf5a7 nvme_fc_set_remoteport_devloss -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0xbaa6f627 nvme_fc_register_localport EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0xbb0e18a6 nvme_fc_rcv_ls_req +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0xe16465cf nvme_fc_register_localport EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0xfca9dc99 nvme_fc_unregister_remoteport -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x07124920 nvmet_req_alloc_sgls -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x0a833767 nvmet_register_transport -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x4c5a3121 nvmet_sq_init -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x521729d1 nvmet_sq_destroy -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x5f104827 nvmet_check_transfer_len -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x61385a85 nvmet_ctrl_fatal_error -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x6dd6541a nvmet_unregister_transport -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x89b72b5d nvmet_req_complete -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xb6d06c03 nvmet_req_free_sgls -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xcea9bee7 nvmet_req_uninit -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xec9b008a nvmet_req_init +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x015264da nvmet_register_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x02c0bceb nvmet_sq_init +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x1aa72b58 nvmet_sq_destroy +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x1b965a5c nvmet_req_complete +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x29515c36 nvmet_ctrl_fatal_error +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x60838323 nvmet_req_uninit +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x6ed17975 nvmet_req_alloc_sgls +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x70d16c78 nvmet_unregister_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xac7367ee nvmet_check_transfer_len +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xcde476be nvmet_req_free_sgls +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xe051f67e 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 0x1048b92a nvmet_fc_rcv_fcp_req +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x46fd3308 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 0x7fa5302a nvmet_fc_rcv_fcp_abort EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x9ef76d99 nvmet_fc_unregister_targetport -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0xfcc72e49 nvmet_fc_register_targetport -EXPORT_SYMBOL_GPL drivers/pci/switch/switchtec 0x0db50bfa switchtec_class -EXPORT_SYMBOL_GPL drivers/phy/ti/phy-omap-control 0x1f0eb008 omap_control_pcie_pcs -EXPORT_SYMBOL_GPL drivers/phy/ti/phy-omap-control 0x7353a7eb omap_control_phy_power -EXPORT_SYMBOL_GPL drivers/phy/ti/phy-omap-control 0xe0ad2c7b omap_control_usb_set_mode +EXPORT_SYMBOL_GPL drivers/pci/switch/switchtec 0x9c90d7d3 switchtec_class +EXPORT_SYMBOL_GPL drivers/phy/ti/phy-omap-control 0x62c09b16 omap_control_usb_set_mode +EXPORT_SYMBOL_GPL drivers/phy/ti/phy-omap-control 0x7452f813 omap_control_pcie_pcs +EXPORT_SYMBOL_GPL drivers/phy/ti/phy-omap-control 0xe268654e omap_control_phy_power EXPORT_SYMBOL_GPL drivers/phy/ti/phy-omap-usb2 0x00d48f33 omap_usb2_set_comparator -EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0x126b5512 mcp23s08_probe_one -EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0x4d0d6014 mcp23x17_regmap -EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0x7d76c4fb mcp23x08_regmap -EXPORT_SYMBOL_GPL drivers/platform/chrome/cros-ec-sensorhub 0x19caeecb cros_ec_sensorhub_unregister_push_data -EXPORT_SYMBOL_GPL drivers/platform/chrome/cros-ec-sensorhub 0x3ce003b7 cros_ec_sensorhub_register_push_data +EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0x2a65f125 mcp23s08_probe_one +EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0x54c54bc9 mcp23x08_regmap +EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0x64beef26 mcp23x17_regmap +EXPORT_SYMBOL_GPL drivers/platform/chrome/cros-ec-sensorhub 0x99c3b154 cros_ec_sensorhub_unregister_push_data +EXPORT_SYMBOL_GPL drivers/platform/chrome/cros-ec-sensorhub 0xda42544e cros_ec_sensorhub_register_push_data EXPORT_SYMBOL_GPL drivers/platform/chrome/cros_usbpd_notify 0x6b1be500 cros_usbpd_unregister_notify EXPORT_SYMBOL_GPL drivers/platform/chrome/cros_usbpd_notify 0x8bda2df3 cros_usbpd_register_notify -EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0x5aa64e92 devm_reboot_mode_register -EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0xb1747135 devm_reboot_mode_unregister -EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0xb2ca79f5 reboot_mode_register -EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0xf0cee22f reboot_mode_unregister -EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0x8630234e bq27xxx_battery_teardown -EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0xbaa78632 bq27xxx_battery_setup -EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0xe956fdc5 bq27xxx_battery_update -EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x24cb880f pcf50633_mbc_get_status -EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x7b7663bb pcf50633_mbc_usb_curlim_set -EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x8fac5b27 pcf50633_mbc_get_usb_online_status -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x0837f641 ptp_qoriq_adjtime -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x159f5e16 ptp_qoriq_enable +EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0x0aff2b3a devm_reboot_mode_register +EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0x0bb0d621 devm_reboot_mode_unregister +EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0xd17979b0 reboot_mode_unregister +EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0xe801a75d reboot_mode_register +EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0x5f12fc55 bq27xxx_battery_update +EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0x8667fa7f bq27xxx_battery_teardown +EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0xafa5ed72 bq27xxx_battery_setup +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0xabb2fcbc pcf50633_mbc_usb_curlim_set +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0xd6a63946 pcf50633_mbc_get_status +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0xe7d69ea1 pcf50633_mbc_get_usb_online_status +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x129772fe ptp_qoriq_init +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x2a9afc3b ptp_qoriq_adjfine EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x2eae82b0 ptp_qoriq_isr -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x3644e8ec ptp_qoriq_free -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x63ed4469 ptp_qoriq_init -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x9b21668d ptp_qoriq_gettime -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xb7e2ef86 extts_clean_up -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xc3200c5f ptp_qoriq_settime -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xf8672fa1 ptp_qoriq_adjfine -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x2fab8d77 mc13xxx_fixed_regulator_set_voltage -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xc2c31305 mc13xxx_parse_regulators_dt -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xc3cf49fb mc13xxx_regulator_ops -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xd7c10a5f mc13xxx_get_num_regulators_dt -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xdb65434a mc13xxx_fixed_regulator_ops -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x3658f810 wm8350_dcdc25_set_mode -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x3c32ce21 wm8350_dcdc_set_slot -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x8ddbd013 wm8350_register_regulator -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xa955af60 wm8350_ldo_set_slot -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xb900ec0c wm8350_isink_set_flash -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xed388ab2 wm8350_register_led -EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0x4e2ff93b wm8400_register_regulator -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x02ca13b6 scp_get -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x0ccb2534 scp_get_vdec_hw_capa -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x14dc29b4 scp_put -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x2b1d42c0 scp_get_device -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x69bc3558 scp_get_venc_hw_capa -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0xaa48da06 scp_get_rproc -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0xe513f46f scp_mapping_dm_addr +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x5543ace9 ptp_qoriq_enable +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x704cde8c extts_clean_up +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x824c1f58 ptp_qoriq_adjtime +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x8b37e968 ptp_qoriq_settime +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xb6cd2c86 ptp_qoriq_gettime +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xd0b50f9a ptp_qoriq_free +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x307371ec mc13xxx_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x38496966 mc13xxx_parse_regulators_dt +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x603bae35 mc13xxx_get_num_regulators_dt +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xb4c1be85 mc13xxx_fixed_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xf71f2d62 mc13xxx_fixed_regulator_set_voltage +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x1c284f90 wm8350_isink_set_flash +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x1cadbc92 wm8350_register_regulator +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x61881ee9 wm8350_register_led +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x8d6ff1ea wm8350_ldo_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xd0731cbf wm8350_dcdc25_set_mode +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xddbec02f wm8350_dcdc_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0x51b0ea13 wm8400_register_regulator +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x6f530257 scp_get_vdec_hw_capa +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x8faec6cc scp_get_rproc +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0xa6db1283 scp_mapping_dm_addr +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0xe52cceef scp_put +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0xe7b756bf scp_get +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0xe91b02e3 scp_get_device +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0xef7fa246 scp_get_venc_hw_capa EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x09313652 scp_memcpy_aligned -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x3c7c7cff scp_ipi_unregister -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x477666da scp_ipi_unlock -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x4e0ca770 scp_ipi_register -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0xa7506686 scp_ipi_lock -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0xe2c63cf8 scp_ipi_send +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x416ca9d9 scp_ipi_unregister +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x56f4a572 scp_ipi_unlock +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x80408879 scp_ipi_register +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0xc8ffcd8a scp_ipi_send +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0xcc2afa6c scp_ipi_lock +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x00779fc4 qcom_add_glink_subdev EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x0fa538df qcom_register_ssr_notifier -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x134b5492 qcom_add_smd_subdev -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x26055a76 qcom_remove_ssr_subdev -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x42f2a925 qcom_minidump -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x48a8446f qcom_add_glink_subdev -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x8197d7cc qcom_add_ssr_subdev -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x8ce9a321 qcom_remove_glink_subdev -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xbac657b2 qcom_register_dump_segments +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x1def8aae qcom_remove_glink_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x26b81d1b qcom_add_ssr_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x57d6e7d7 qcom_register_dump_segments EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xd6cc0cc0 qcom_unregister_ssr_notifier -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xde027a13 qcom_remove_smd_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xe352b6d9 qcom_remove_smd_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xf2dc5720 qcom_minidump +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xfeaf838d qcom_remove_ssr_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xff0fbb1d qcom_add_smd_subdev EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_pil_info 0x950d8f20 qcom_pil_info_store -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x1dab8535 qcom_q6v5_prepare -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x7b4b0b9f qcom_q6v5_wait_for_start -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0xb2ae0266 qcom_q6v5_request_stop -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0xb6390442 qcom_q6v5_panic -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0xd89bcc16 qcom_q6v5_init -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0xf834c721 qcom_q6v5_unprepare +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x3785f517 qcom_q6v5_wait_for_start +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x396b2574 qcom_q6v5_unprepare +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x848db29f qcom_q6v5_prepare +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x968893a8 qcom_q6v5_panic +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0xf0ad152d qcom_q6v5_init +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0xfe2d0bf8 qcom_q6v5_request_stop EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_sysmon 0x1482d168 qcom_sysmon_shutdown_acked EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_sysmon 0xa881c6fc qcom_remove_sysmon_subdev -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_sysmon 0xc445e74f qcom_add_sysmon_subdev -EXPORT_SYMBOL_GPL drivers/rpmsg/mtk_rpmsg 0x2ca8939c mtk_rpmsg_create_rproc_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_sysmon 0xfe814dd5 qcom_add_sysmon_subdev +EXPORT_SYMBOL_GPL drivers/rpmsg/mtk_rpmsg 0x1c7a2de8 mtk_rpmsg_create_rproc_subdev EXPORT_SYMBOL_GPL drivers/rpmsg/mtk_rpmsg 0x86903274 mtk_rpmsg_destroy_rproc_subdev EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0x149236da qcom_glink_native_remove -EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0xc8c0ce8c qcom_glink_native_probe +EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0x3ac6fb2f 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 0x37c97417 qcom_glink_smem_register +EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink_smem 0x6f16f566 qcom_glink_smem_register EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink_smem 0x72dd75d9 qcom_glink_smem_unregister -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x012caee4 cxgbi_set_conn_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0fe63830 cxgbi_create_conn -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x16e43a9d cxgbi_iscsi_cleanup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x252b6640 cxgbi_iscsi_init -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x25dc79eb cxgbi_bind_conn -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x268cc01a cxgbi_sock_rcv_peer_close -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x30660593 cxgbi_parse_pdu_itt -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x394938ef cxgbi_device_portmap_cleanup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x39c2c187 cxgbi_ep_disconnect -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3abaf777 cxgbi_hbas_add -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3e0045b1 cxgbi_destroy_session -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3e893412 cxgbi_sock_skb_entail -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x442a6d91 cxgbi_ep_poll -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4e1b5e4a cxgbi_sock_purge_wr_queue -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4ebfb621 cxgbi_sock_act_open_req_arp_failure -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4f209394 cxgbi_device_register -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4ffb8a24 cxgbi_ep_connect -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5295aa45 cxgbi_device_find_by_netdev_rcu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x66bad42b cxgbi_device_find_by_lldev -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x707a4165 cxgbi_sock_rcv_close_conn_rpl -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x75a2b865 cxgbi_set_host_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7b55d23b cxgbi_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x11681b90 cxgbi_device_find_by_lldev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x12dfd0e5 cxgbi_device_portmap_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x15282bd3 cxgbi_ep_connect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1fae0420 cxgbi_sock_rcv_wr_ack +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2437ca8d cxgbi_sock_rcv_abort_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2d9b11ec cxgbi_get_conn_stats +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2ed2a5e3 cxgbi_sock_rcv_close_conn_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4b105a9e cxgbi_conn_init_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4bb85171 cxgbi_sock_rcv_peer_close +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4cb73aa8 cxgbi_conn_tx_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x51120968 cxgbi_sock_free_cpl_skbs +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x54b140ca cxgbi_get_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5c3d548b cxgbi_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5eec260c cxgbi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x60afe578 cxgbi_device_portmap_create +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x622c23ec cxgbi_sock_closed +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x68143599 cxgbi_bind_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x695fb298 cxgbi_hbas_add +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x72f8f8de cxgbi_iscsi_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7780bdb2 cxgbi_ep_poll +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7d1b0ce8 cxgbi_get_ep_param EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fdb6004 cxgbi_device_unregister_all -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8079cde3 cxgbi_conn_init_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x80c332a9 cxgbi_sock_select_mss -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x85a3428e cxgbi_create_session -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8696ceb8 cxgbi_sock_check_wr_invariants -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8c2bb1a1 cxgbi_ddp_ppm_setup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8d8bd6d3 cxgbi_sock_rcv_wr_ack -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x939fafd2 cxgbi_sock_closed -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x94feffee cxgbi_device_portmap_create -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x99fed045 cxgbi_get_host_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9c4df128 cxgbi_device_find_by_netdev -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9dc329ff cxgbi_sock_free_cpl_skbs -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa773cbf5 cxgbi_conn_pdu_ready -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb59c376e cxgbi_conn_tx_open -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb7ccff9d cxgbi_get_ep_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbaee0acc cxgbi_device_unregister +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x902cc043 cxgbi_ddp_ppm_setup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x90bcf3e4 cxgbi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x97b5bf3d cxgbi_sock_select_mss +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x99033483 cxgbi_conn_pdu_ready +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x99728150 cxgbi_sock_established +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9cefe371 cxgbi_parse_pdu_itt +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa00f86a1 cxgbi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa587a8eb cxgbi_set_conn_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xaa745351 cxgbi_sock_check_wr_invariants +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xac4ad66f cxgbi_sock_fail_act_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xac91addc cxgbi_set_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb475db8e cxgbi_hbas_remove +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbba0545f cxgbi_conn_xmit_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbde4a554 cxgbi_conn_alloc_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbe45abb7 cxgbi_device_find_by_netdev EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc011af75 cxgbi_ddp_set_one_ppod -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc1185c25 cxgbi_get_conn_stats -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc1560036 cxgbi_sock_fail_act_open -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd39693c1 cxgbi_sock_established -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xed6f2ba4 cxgbi_sock_rcv_abort_rpl -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xeda62490 cxgbi_hbas_remove +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc79a1d1b cxgbi_iscsi_init +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc9bd928c cxgbi_device_unregister +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xcb243b3d cxgbi_device_find_by_netdev_rcu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd4e3996a cxgbi_sock_act_open_req_arp_failure +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xea7bc26b cxgbi_device_register EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xef346615 cxgbi_attr_is_visible -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf2fd08b7 cxgbi_conn_xmit_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xfa0e0133 cxgbi_conn_alloc_pdu -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x09e49037 fcoe_ctlr_device_add -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x16d0af3b fcoe_validate_vport_create -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x175577b8 fcoe_fcf_device_delete -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x1ea588a0 fcoe_clean_pending_queue -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x21fad88f fcoe_check_wait_queue -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x3a4489d8 fcoe_fcf_device_add -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x478dbd77 fcoe_ctlr_device_delete -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x4902a734 fcoe_link_speed_update -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x5246cf4b fcoe_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x736bcf59 fcoe_ctlr_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xfbc31bd4 cxgbi_ep_disconnect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xfbd9118d cxgbi_sock_skb_entail +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xffbb1f6d cxgbi_sock_purge_wr_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x1ec890e6 fcoe_get_wwn +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x4109b310 fcoe_ctlr_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x461c4549 fcoe_get_paged_crc_eof +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x49f1a7e4 fcoe_fcf_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x63b27ec7 fcoe_libfc_config +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x66c60653 fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x69b50052 fcoe_fcf_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x7216ea71 fcoe_check_wait_queue EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x7e92994b fcoe_wwn_from_mac -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x83707ef7 fcoe_fc_crc -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x98aafc46 __fcoe_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x9bf42771 fcoe_start_io -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xa10f3b20 fcoe_libfc_config +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x8b774dfd __fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x958b4021 fcoe_ctlr_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x95ed99fb fcoe_validate_vport_create EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xbac58840 fcoe_queue_timer -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xde699b55 fcoe_get_wwn +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xc2029c88 fcoe_clean_pending_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xd5c29580 fcoe_start_io +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xea9483d2 fcoe_fc_crc +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf0a15f1d fcoe_ctlr_device_add EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf167cb7a fcoe_wwn_to_str -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf49bafc8 fcoe_get_paged_crc_eof -EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0x94d980ab fdomain_destroy -EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0xadcaea04 fdomain_create +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xfb722a70 fcoe_link_speed_update +EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0x695bbf78 fdomain_create +EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0xdcb18136 fdomain_destroy EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x276fdbc9 iscsi_boot_create_acpitbl EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x870cc317 iscsi_boot_create_host_kset EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xb6a2950b iscsi_boot_create_initiator @@ -15435,239 +15474,239 @@ EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xf7835332 iscsi_boot_create_kset EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xfa7e083f iscsi_boot_create_target EXPORT_SYMBOL_GPL drivers/scsi/libfc/libfc 0xe540147a fc_seq_els_rsp_send -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x048918cb iscsi_set_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x08e2ff0f iscsi_requeue_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0dc54746 iscsi_prep_data_out_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0de992f9 iscsi_eh_recover_target +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x092fc4b7 iscsi_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x108dec06 iscsi_complete_pdu EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x17a0c04b iscsi_eh_cmd_timed_out -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x18b4ddd5 iscsi_suspend_queue -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1e189025 iscsi_eh_session_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x249a0d8c iscsi_conn_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x28c6d80c iscsi_conn_stop -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2918311b iscsi_conn_queue_work +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x14d35636 iscsi_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x18788b86 iscsi_requeue_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x19b0b351 iscsi_host_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x32678b20 iscsi_host_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x32d77aa6 iscsi_session_setup EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3c17214a __iscsi_get_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x480bafad iscsi_put_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x52d80572 iscsi_queuecommand -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5f57a017 iscsi_host_add -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5faaa913 iscsi_host_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6648f567 iscsi_target_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x68ba3137 iscsi_host_get_max_scsi_cmds -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7bdcebc5 iscsi_complete_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7c3dd780 iscsi_conn_failure -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x86a04257 iscsi_itt_to_ctask -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x89225200 iscsi_host_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3dc44a8d iscsi_session_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x401a3c3c iscsi_conn_send_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x41524406 iscsi_conn_unbind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x48bec7d3 iscsi_update_cmdsn +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4b1a2d2e iscsi_host_get_max_scsi_cmds +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x68254aa5 iscsi_suspend_tx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x68d8002b iscsi_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x76abda91 iscsi_prep_data_out_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x788d904f iscsi_eh_abort +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7bdece75 iscsi_conn_stop +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7d587106 iscsi_verify_itt +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7d643ee3 iscsi_host_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7f7d18ab iscsi_session_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x83d88084 iscsi_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8c0e91e8 __iscsi_complete_pdu EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x970d783f __iscsi_put_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9c761282 iscsi_conn_send_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa0fc1c17 iscsi_eh_device_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa71d186e iscsi_session_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xadeeac7e iscsi_verify_itt -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb32eaddf iscsi_session_failure -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb3f98a4f iscsi_session_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb44c8a5c iscsi_conn_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb60da91d iscsi_host_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc04b7e28 iscsi_eh_abort -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc0dd65a6 iscsi_session_recovery_timedout -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcc216cef iscsi_host_remove -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd3b3728a iscsi_complete_scsi_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd48bcd6e iscsi_itt_to_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xde230b90 iscsi_conn_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdf6a9951 iscsi_session_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdfeaede9 iscsi_update_cmdsn -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe4258140 iscsi_conn_unbind -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe733d4c7 iscsi_suspend_tx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x91c3b6f4 iscsi_itt_to_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x92984e7f iscsi_suspend_queue +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x963f7076 iscsi_itt_to_ctask +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9e47bc45 iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9f398c21 iscsi_conn_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa289cfc1 __iscsi_get_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa72b9b52 iscsi_conn_bind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb1d7b274 iscsi_session_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb7bdbe49 iscsi_eh_recover_target +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc6ac9d91 iscsi_complete_scsi_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc81ccabf __iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcfd85f76 iscsi_eh_cmd_timed_out +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd3e494c2 iscsi_eh_session_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd6d6c0e5 iscsi_host_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdebd9587 iscsi_conn_queue_work +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe7d474d0 iscsi_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xea20563c iscsi_host_add EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeab9cbd5 iscsi_conn_get_addr_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xebe56d80 iscsi_conn_start -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xecce2abc iscsi_host_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf8837d84 iscsi_conn_bind -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf9c01351 __iscsi_complete_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x1326480a iscsi_tcp_conn_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x18163229 iscsi_tcp_cleanup_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x1c1ab105 iscsi_tcp_recv_segment_is_hdr -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x3f9bf0fe iscsi_segment_init_linear -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x71b87468 iscsi_tcp_r2tpool_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x77518c8a iscsi_segment_seek_sg -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x85ffcf6b iscsi_tcp_task_xmit -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x8689fd6f iscsi_tcp_r2tpool_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x92977a96 iscsi_tcp_dgst_header -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xa47b44fc iscsi_tcp_task_init -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xa7fa3cb8 iscsi_tcp_hdr_recv_prep -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xb92fa149 iscsi_tcp_set_max_r2t -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xc77b2d11 iscsi_tcp_segment_unmap -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xdefb42f0 iscsi_tcp_segment_done -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xf057d884 iscsi_tcp_conn_get_stats -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xf42c826a iscsi_tcp_recv_skb -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xfb696089 iscsi_tcp_conn_setup -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0fc9225c sas_change_queue_depth -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x173e4bbe sas_free_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x210bf592 sas_ata_schedule_reset -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x31a0c4ff sas_slave_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x34272a31 sas_alloc_slow_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x39d0e432 sas_queuecommand -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3b7ae51e sas_eh_target_reset_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3d23f04d sas_target_destroy -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x46ebc5ef sas_unregister_ha -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x48692cb2 sas_alloc_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4896720d sas_slave_configure -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x505c4b7f sas_request_addr -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x55f272bc sas_ioctl -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5ba69ca1 sas_phy_reset -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x62db25d3 sas_task_abort -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6c8e3dcc sas_get_local_phy -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x765a803f sas_ssp_task_response -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7ecb84c0 dev_attr_phy_event_threshold -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8ce9eb41 sas_target_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa1a2259e sas_eh_device_reset_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xaf96fe37 sas_eh_abort_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb5f097e1 sas_register_ha -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xbdcd31e9 sas_notify_phy_event -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc3fd0b4f sas_bios_param -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd438474f sas_notify_port_event -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd58afeb4 sas_domain_attach_transport -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf93bfc39 sas_drain_work -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_fc 0x7bb01c60 fc_eh_should_retry_cmd +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeb47f619 iscsi_eh_device_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeb841427 iscsi_host_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf0f6f123 iscsi_session_recovery_timedout +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf3379d78 iscsi_conn_start +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf658e375 iscsi_conn_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x13efb6be iscsi_tcp_segment_done +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x2ad7e035 iscsi_tcp_recv_skb +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x324be979 iscsi_segment_seek_sg +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x34cdcc71 iscsi_tcp_task_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x423e8301 iscsi_tcp_r2tpool_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x45ac4edc iscsi_tcp_recv_segment_is_hdr +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x494e44cb iscsi_tcp_dgst_header +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x5fb8af33 iscsi_tcp_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x6fe0edb7 iscsi_tcp_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x80b67fd4 iscsi_tcp_r2tpool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x8c4a8936 iscsi_tcp_conn_get_stats +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x97c6a032 iscsi_segment_init_linear +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x991b49a4 iscsi_tcp_set_max_r2t +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xafc00526 iscsi_tcp_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xc1a8b166 iscsi_tcp_hdr_recv_prep +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xca08047f iscsi_tcp_segment_unmap +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xd874af1b iscsi_tcp_task_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0265f887 sas_notify_port_event +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x087c1a71 sas_target_destroy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0bb5c5bc sas_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x16976f43 sas_phy_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x27fd5580 sas_register_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2b983d4e sas_eh_abort_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2d43e420 sas_slave_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2e2c8c4b sas_drain_work +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3a25f95b sas_task_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4342ef45 dev_attr_phy_event_threshold +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x45a17e0a sas_unregister_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4faa44b2 sas_notify_phy_event +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6a4959f0 sas_free_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6e01a9d8 sas_eh_target_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x82fa6c03 sas_ioctl +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x96d328cf sas_ata_schedule_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x986b0b65 sas_get_local_phy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9f7cc09a sas_request_addr +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa6294ace sas_ssp_task_response +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xab8360b9 sas_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xadfd4978 sas_eh_device_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb6fa33fe sas_change_queue_depth +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb979cbc9 sas_slave_configure +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xbb14445c sas_domain_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc349aa3b sas_alloc_slow_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xcf1d6783 sas_alloc_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd8bcb1ce sas_bios_param +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_fc 0x8c78193b fc_eh_should_retry_cmd +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x028508a5 iscsi_destroy_conn EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x028b6f61 __tracepoint_iscsi_dbg_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x03e46139 iscsi_offload_mesg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x04fd328c iscsi_block_scsi_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0bb95ec6 iscsi_alloc_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1595d525 iscsi_dbg_trace -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1bcf06be __traceiter_iscsi_dbg_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x20128b5b iscsi_scan_finished +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x05d4c877 iscsi_scan_finished +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x086a69e3 __traceiter_iscsi_dbg_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0d2dc4e7 iscsi_create_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x153fc004 iscsi_add_session EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2a8527a3 __tracepoint_iscsi_dbg_sw_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x30a61ed0 iscsi_block_session EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x338f0d3f __tracepoint_iscsi_dbg_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x374b0ae5 iscsi_is_session_dev -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x37744d13 iscsi_lookup_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3d0ab1cb iscsi_flashnode_bus_match -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3dfd615e iscsi_free_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x402c6010 iscsi_destroy_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x42d469c2 iscsi_ping_comp_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x496a25a9 iscsi_get_port_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x37b76b52 iscsi_destroy_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3f75b4a0 iscsi_remove_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x46e4068b iscsi_ping_comp_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x488c6919 iscsi_recv_pdu +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x492e8272 __traceiter_iscsi_dbg_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4d0041e9 __traceiter_iscsi_dbg_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4da4a883 iscsi_find_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4fb0ffa8 iscsi_conn_login_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x53caf22f iscsi_free_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x55001de4 iscsi_put_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x55a8be99 iscsi_flashnode_bus_match EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x584a31ab __SCK__tp_func_iscsi_dbg_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5bfa336c iscsi_conn_login_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x592162db iscsi_block_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5f9ae596 iscsi_get_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6526844a iscsi_find_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x67e9e90a 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 0x6c9b3a79 iscsi_add_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6cc275f2 iscsi_register_transport EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x71b768b0 __SCK__tp_func_iscsi_dbg_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7283e5c2 iscsi_post_host_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x74ff5782 __traceiter_iscsi_dbg_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x790ffedd iscsi_put_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7b1bb876 iscsi_remove_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x74f34061 iscsi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x79e68b8b iscsi_offload_mesg EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7ced5abd __tracepoint_iscsi_dbg_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7ed32b87 __traceiter_iscsi_dbg_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x806a7f0e iscsi_host_for_each_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x82390799 iscsi_get_port_speed_name EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x82ab4a28 __tracepoint_iscsi_dbg_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x84136160 iscsi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x849e7146 iscsi_unblock_session EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x84a005f1 iscsi_get_router_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x84b8f47a iscsi_conn_error_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x84d5d0f4 iscsi_create_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x866a8121 iscsi_dbg_trace +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x86795e7e iscsi_alloc_session EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x88768c48 __SCK__tp_func_iscsi_dbg_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8a4674f3 iscsi_create_flashnode_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8b78d5e8 iscsi_register_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8c8ad6a3 iscsi_conn_error_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8f892a43 iscsi_create_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8ffc613f iscsi_unblock_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x97c49003 __traceiter_iscsi_dbg_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x995b7bad iscsi_get_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9b75e2ae iscsi_session_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa4e48003 iscsi_create_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8d3535a9 iscsi_lookup_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9b9d93cf iscsi_destroy_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa28b646f iscsi_host_for_each_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa2d8f016 iscsi_create_flashnode_sess EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xab4674c8 __SCK__tp_func_iscsi_dbg_sw_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xaff6a87b __traceiter_iscsi_dbg_sw_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb6029309 iscsi_put_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb76cbc5d iscsi_create_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb49f28c7 iscsi_unregister_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb8aade89 iscsi_block_scsi_eh EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc071179 iscsi_get_ipaddress_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbd9fb33e iscsi_recv_pdu -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc47a418a iscsi_is_session_online -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd66f7f40 iscsi_destroy_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xddadc335 iscsi_session_chkready -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe02d29b8 iscsi_find_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe2f24bd4 iscsi_find_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc60e407f iscsi_put_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc666d77d iscsi_create_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xcd6246c2 iscsi_is_session_online +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd4fe672d iscsi_post_host_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd86b90d0 iscsi_is_session_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe106eeb9 iscsi_destroy_all_flashnode EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe4c79fa6 __SCK__tp_func_iscsi_dbg_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe913d17d iscsi_create_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf2bd39b5 iscsi_destroy_all_flashnode -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf609cf02 iscsi_get_port_speed_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf9982e46 iscsi_unregister_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfadada1a iscsi_destroy_iface -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfcb16b8c iscsi_destroy_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x72f73ab4 sas_is_tlr_enabled -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x7be37fc4 sas_enable_tlr -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xb8ffa0ed sas_tlr_supported -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xcdc26bb4 sas_disable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe51d462b iscsi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xef579618 iscsi_get_port_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xefb9ad41 iscsi_session_chkready +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf504c8ed __traceiter_iscsi_dbg_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfd5b00f6 __traceiter_iscsi_dbg_sw_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xff7dbfbe iscsi_session_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x0a1b6318 sas_enable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x2eff1b5e sas_is_tlr_enabled +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x4d43cb98 sas_tlr_supported +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xbea72696 sas_disable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x06504736 spi_populate_tag_msg EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x0ef06974 spi_populate_ppr_msg EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xa0c71dac spi_populate_sync_msg EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xcffa2aff spi_populate_width_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xf0f1da46 spi_populate_tag_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x12ae8bf9 srp_remove_host +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x09aae867 srp_remove_host EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x1902178a srp_tmo_valid -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x419c9454 srp_attach_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x7bccda9d srp_rport_add -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x92ea6a66 srp_stop_rport_timers -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x9829d685 srp_rport_del -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xef64387a srp_release_transport -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x2b913c43 ufshcd_remove -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x2f1050c0 ufshcd_init -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x33d4210f ufshcd_hold -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x3fb2bd58 ufshcd_link_recovery -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x45e0d339 ufshcd_config_pwr_mode -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x4a89d8e9 ufshcd_update_evt_hist -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x51ca5ad3 ufshcd_dealloc_host -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x6098fae0 ufshcd_suspend_prepare -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x7111802c ufshcd_auto_hibern8_update +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x6d5a4a24 srp_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x79814634 srp_rport_add +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x94553526 srp_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xb06c43a4 srp_stop_rport_timers +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xfd281bdd srp_rport_del +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x0a052855 ufshcd_dme_get_attr +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x26e8160f ufshcd_fixup_dev_quirks +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x2a08e890 ufshcd_remove +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x34bff2ee ufshcd_link_recovery +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x3d3d8563 ufshcd_hba_enable +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x5d10f37f ufshcd_resume_complete +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x6ff5a66e ufshcd_dme_configure_adapt EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x723b1abf ufshcd_delay_us -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x9e046ec4 ufshcd_fixup_dev_quirks -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xa45fe0c7 ufshcd_make_hba_operational -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xb47b820f ufshcd_dme_get_attr -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xcaac1772 ufshcd_dump_regs -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xcd8731bf ufshcd_hba_stop -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xcd9a2125 ufshcd_dme_configure_adapt -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xd7fcf9f6 ufshcd_hba_enable -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xd85daeec ufshcd_dme_set_attr -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xd9944350 ufshcd_resume_complete -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xdd3ef8c5 ufshcd_uic_hibern8_exit -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xded16fe0 ufshcd_release +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x7f0cae28 ufshcd_release +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x8a8dee9e ufshcd_auto_hibern8_update +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x8dc0f66c ufshcd_dealloc_host +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x9b6e7198 ufshcd_init +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xa24658a4 ufshcd_make_hba_operational +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xb1d43411 ufshcd_uic_hibern8_exit +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xb99e2de2 ufshcd_update_evt_hist +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xbea61f68 ufshcd_hold +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xc8e0f0fb ufshcd_suspend_prepare +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xd8b97691 ufshcd_hba_stop +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xe0ecb7ea ufshcd_dme_set_attr +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xe97d1043 ufshcd_config_pwr_mode +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xeedbf59d ufshcd_dump_regs +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x01840045 ufshcd_pltfrm_shutdown +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x3520b99d ufshcd_pltfrm_init EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x54c946de ufshcd_init_pwr_dev_param -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x56b949f6 ufshcd_pltfrm_init -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x68bcdd8f ufshcd_pltfrm_shutdown EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xff85cd6b ufshcd_get_pwr_dev_param -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x0ae98bd4 siox_master_register -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x3974c909 siox_master_alloc -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x8dc24d4b siox_master_unregister -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x99d52837 siox_device_synced -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xc895c471 siox_device_connected -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xe5f91431 __siox_driver_register -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x03602dbe slim_stream_enable -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x056f31ca slimbus_bus -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x0dc9d9f9 slim_get_device -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x3b69e537 slim_write -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x4d3acf85 slim_stream_allocate -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x627d4298 slim_driver_unregister -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x72ee93cf slim_xfer_msg -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x7bd49560 __slim_driver_register -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x8086c3df slim_stream_disable -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x8639a137 slim_stream_free -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x90dcb847 slim_readb -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x923deba2 slim_read -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x934416d4 slim_register_controller -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xa735f9c9 slim_stream_prepare -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xaca133e4 of_slim_get_device -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xb01ef331 slim_writeb -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xb2dcc8ea slim_stream_unprepare -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xc0ed8dc5 slim_get_logical_addr -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xc84ef9af slim_device_report_present -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xcb1290dd slim_free_txn_tid -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xd25bd8bb slim_do_transfer -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xd4c26e89 slim_alloc_txn_tid -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xdcee27a4 slim_ctrl_clk_pause -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xe2461b2d slim_report_absent -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xe7f9863b slim_msg_response -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xf0dea0c4 slim_unregister_controller +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x40f8179d siox_master_alloc +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x7456bca9 siox_master_register +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x96c0e36d siox_device_synced +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xb19bdcb3 __siox_driver_register +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xbec015e6 siox_master_unregister +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xf149e0f9 siox_device_connected +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x2e3844be __slim_driver_register +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x4d3ae7ea slim_write +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x55dc4369 of_slim_get_device +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x5fa3b97d slim_get_logical_addr +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x64d232ab slim_stream_disable +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x71f203a0 slim_register_controller +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x7e91c21f slimbus_bus +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x7ee4b05f slim_stream_prepare +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x82d86cc1 slim_ctrl_clk_pause +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x838ff412 slim_writeb +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x9150937a slim_stream_free +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x9ec2e468 slim_stream_enable +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xb48ac616 slim_alloc_txn_tid +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xbab2a4c2 slim_unregister_controller +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xbf7d7ccd slim_stream_allocate +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xc18f288a slim_get_device +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xc29c78d3 slim_free_txn_tid +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xc79e4b63 slim_readb +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xcf56da5d slim_xfer_msg +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xcff55605 slim_driver_unregister +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xd54824a7 slim_msg_response +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xdc328227 slim_read +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xde94574a slim_report_absent +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xe0b56392 slim_device_report_present +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xf1c762aa slim_do_transfer +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xf9136f18 slim_stream_unprepare 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 0x9d71d413 meson_canvas_get +EXPORT_SYMBOL_GPL drivers/soc/amlogic/meson-canvas 0x791f423a meson_canvas_get EXPORT_SYMBOL_GPL drivers/soc/amlogic/meson-canvas 0xfbd79150 meson_canvas_free -EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x24512b55 apr_send_pkt -EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x37a15027 apr_driver_unregister -EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x61e313a1 aprbus -EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x91bb41f9 __apr_driver_register +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x04f628d3 apr_send_pkt +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x3546a1f7 apr_driver_unregister +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x46a7344e aprbus +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x871c66ad __apr_driver_register EXPORT_SYMBOL_GPL drivers/soc/qcom/llcc-qcom 0x06285798 llcc_slice_deactivate EXPORT_SYMBOL_GPL drivers/soc/qcom/llcc-qcom 0x09afc16e llcc_slice_activate EXPORT_SYMBOL_GPL drivers/soc/qcom/llcc-qcom 0x14f99b76 llcc_get_slice_id @@ -15676,94 +15715,94 @@ EXPORT_SYMBOL_GPL drivers/soc/qcom/llcc-qcom 0xdffee709 llcc_get_slice_size EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0x42f47788 qcom_mdt_read_metadata EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0x45e1cd7c qcom_mdt_get_size -EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0x4b56f829 qcom_mdt_load_no_init -EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0x9631f30a qcom_mdt_load -EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x878414a1 sdw_bus_type -EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0xcc4bf340 sdw_unregister_driver -EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0xe72ebca9 __sdw_register_driver +EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0x998a2e39 qcom_mdt_load_no_init +EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0xf9b5b22d qcom_mdt_load +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x354970e3 sdw_unregister_driver +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x6e7922db __sdw_register_driver +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0xffc2470d sdw_bus_type +EXPORT_SYMBOL_GPL drivers/spi/spi-altera-core 0x2131f12e altera_spi_init_master EXPORT_SYMBOL_GPL drivers/spi/spi-altera-core 0xb9edd149 altera_spi_irq -EXPORT_SYMBOL_GPL drivers/spi/spi-altera-core 0xc5141965 altera_spi_init_master -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x1420a88d spi_bitbang_setup -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x2d6d7557 spi_bitbang_setup_transfer -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x724bc66e spi_bitbang_cleanup -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x78395a75 spi_bitbang_init -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x844d2fd4 spi_bitbang_stop -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xf3d3aebe spi_bitbang_start -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x057474e5 dw_spi_set_cs -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x877436b9 dw_spi_resume_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x8c2ef9da dw_spi_suspend_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x8e9117e7 dw_spi_dma_setup_mfld -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x96688a08 dw_spi_remove_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xa889cd8b dw_spi_update_config -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xcade7724 dw_spi_dma_setup_generic -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xd8da5e33 dw_spi_check_status -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xf630f475 dw_spi_add_host -EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x64d68bb2 spi_test_run_tests -EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x737e58bb spi_test_execute_msg -EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0xa3413533 spi_test_run_test -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x0f18da7f spmi_command_reset -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x1217f9a4 spmi_controller_alloc -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x31b877a7 spmi_controller_add -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x44d30a4b spmi_command_sleep -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x519e9a6d spmi_register_read -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x59daf5c9 spmi_command_wakeup -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x617f2824 spmi_ext_register_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x79464496 spmi_ext_register_writel -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x8263dd92 __spmi_driver_register -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x889c2997 spmi_ext_register_read -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x96afc523 spmi_command_shutdown -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x9dcced4a spmi_device_alloc -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x9f5ab53d spmi_register_zero_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xaece5e3f spmi_ext_register_readl -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xb15f5c3d spmi_controller_remove -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xc94f71ed spmi_register_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xcbbbbe66 spmi_device_remove -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xead6b034 spmi_device_add -EXPORT_SYMBOL_GPL drivers/ssb/ssb 0x237b0adc ssb_pmu_spuravoid_pllupdate -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x022a2a6d anybuss_client_driver_register -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x1a739af0 anybuss_finish_init -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x3f7febaa anybuss_start_init -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x401d4355 anybuss_read_output -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x4a69a242 anybuss_send_ext -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x650dbb04 anybuss_read_fbctrl -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x65ea7637 anybuss_set_power -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x827f1df3 anybuss_recv_msg -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xb4c23751 devm_anybuss_host_common_probe -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xb890391d anybuss_send_msg -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xc98bac6c anybuss_client_driver_unregister -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xcfc9b840 anybuss_host_common_probe -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xf3dfac1c anybuss_write_input +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x1cc36b15 spi_bitbang_setup_transfer +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x386ca32e spi_bitbang_setup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x94feb688 spi_bitbang_stop +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xdcb7f959 spi_bitbang_cleanup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xea1d0808 spi_bitbang_start +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xebeea89c spi_bitbang_init +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x16755d91 dw_spi_remove_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x17cf327e dw_spi_set_cs +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x1e7dd12e dw_spi_suspend_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x4024b6b3 dw_spi_check_status +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x4583e3b9 dw_spi_update_config +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x78db564b dw_spi_dma_setup_mfld +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x7ec0e64a dw_spi_add_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x9841cfef dw_spi_dma_setup_generic +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xc10fcd30 dw_spi_resume_host +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x0e53fbfd spi_test_run_tests +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x43552cab spi_test_execute_msg +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0xff627d0c spi_test_run_test +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x202df6cb spmi_command_shutdown +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x2450e337 spmi_controller_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x319e65a5 spmi_device_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x345d5a05 spmi_device_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x3fae2483 spmi_ext_register_writel +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x46de4e26 spmi_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x5d18de99 spmi_controller_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x66785716 spmi_command_reset +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x69d9594c spmi_ext_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x6d8cd091 __spmi_driver_register +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x7490242f spmi_command_wakeup +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x7e8c6c5b spmi_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x980d3369 spmi_ext_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x9bd0a5b7 spmi_controller_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xb366872b spmi_register_zero_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xccd50517 spmi_device_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xd246bd28 spmi_command_sleep +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xe638ff57 spmi_ext_register_readl +EXPORT_SYMBOL_GPL drivers/ssb/ssb 0x445e3a12 ssb_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x005975b7 anybuss_client_driver_register +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x0f965fb1 anybuss_send_ext +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x147f0e49 anybuss_start_init +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x14a10e79 anybuss_client_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x2559f7a8 anybuss_write_input +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x3891203f anybuss_host_common_probe +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x5ed8ed6a anybuss_recv_msg +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x83246fff anybuss_read_output +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x95977fa6 anybuss_read_fbctrl +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xc57b509c devm_anybuss_host_common_probe +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xc82d8555 anybuss_send_msg +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xea9b5cbf anybuss_set_power +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xfc5f5b2a anybuss_finish_init EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xfce879ad anybuss_host_common_remove -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x105a9d6d fieldbus_dev_register -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x2797e2b7 fieldbus_dev_unregister -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x48e7bd23 fieldbus_dev_online_changed -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x730198fb fieldbus_dev_area_updated -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x0335e7ca gb_audio_apbridgea_start_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x0cdec041 gb_audio_apbridgea_start_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x13e7fc8e gb_audio_apbridgea_set_rx_data_size -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x27e9d49b gb_audio_apbridgea_shutdown_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x340dae83 gb_audio_apbridgea_stop_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x4bbce93b gb_audio_apbridgea_prepare_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x539dc86b gb_audio_apbridgea_set_config -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x95931ea2 gb_audio_apbridgea_set_tx_data_size -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xa509da18 gb_audio_apbridgea_shutdown_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xb6eda000 gb_audio_apbridgea_stop_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xbafca09c gb_audio_apbridgea_register_cport -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xc95ce7b8 gb_audio_apbridgea_prepare_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xff4d071b gb_audio_apbridgea_unregister_cport -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x1e77d5b5 gb_audio_gb_activate_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x2d94e9b4 gb_audio_gb_get_pcm -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x3b949488 gb_audio_gb_disable_widget -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x46dcd3f9 gb_audio_gb_set_pcm -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x5ce1b0f2 gb_audio_gb_activate_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x74b48313 gb_audio_gb_set_control -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x9b1b7c10 gb_audio_gb_set_tx_data_size -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xa24e5423 gb_audio_gb_get_topology -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xabfaebe8 gb_audio_gb_deactivate_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xcd0a293c gb_audio_gb_get_control -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xdecc8adf gb_audio_gb_enable_widget -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xe96c8eaf gb_audio_gb_deactivate_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xf9f7352f gb_audio_gb_set_rx_data_size +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x009cbe75 fieldbus_dev_area_updated +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x9ea5f342 fieldbus_dev_register +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0xe6e7fb22 fieldbus_dev_unregister +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0xffcb73c8 fieldbus_dev_online_changed +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x02730012 gb_audio_apbridgea_prepare_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x042319fd gb_audio_apbridgea_stop_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x14e1d5f1 gb_audio_apbridgea_start_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x4dc1d3b2 gb_audio_apbridgea_set_tx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x5aed344f gb_audio_apbridgea_set_config +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x65ffa12d gb_audio_apbridgea_set_rx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x6c269207 gb_audio_apbridgea_shutdown_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x76064c62 gb_audio_apbridgea_start_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x7e40ad38 gb_audio_apbridgea_register_cport +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x8bca2607 gb_audio_apbridgea_stop_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x8d9a3fe8 gb_audio_apbridgea_prepare_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xd5a12593 gb_audio_apbridgea_unregister_cport +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xe3cfadfd gb_audio_apbridgea_shutdown_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x05704178 gb_audio_gb_set_pcm +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x14a171cc gb_audio_gb_get_topology +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x2399eedc gb_audio_gb_get_pcm +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x2c2d9758 gb_audio_gb_activate_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x3553de66 gb_audio_gb_enable_widget +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x4b565fe5 gb_audio_gb_get_control +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x52e486f9 gb_audio_gb_set_tx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x5e54b806 gb_audio_gb_activate_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x9957577e gb_audio_gb_deactivate_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x9ea08e03 gb_audio_gb_disable_widget +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xd72f9a5c gb_audio_gb_set_control +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xeb2e7820 gb_audio_gb_deactivate_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xf8e3c0ff gb_audio_gb_set_rx_data_size EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x19e9e6b1 gb_audio_manager_remove_all EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x32e6391e gb_audio_manager_remove EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x44ca3ca1 gb_audio_manager_put_module @@ -15771,320 +15810,321 @@ 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-gbphy 0x015d181b gb_gbphy_register_driver -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0xfb92d31e gb_gbphy_deregister_driver -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0x207bbb7e gb_spilib_master_exit -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0x81301d68 gb_spilib_master_init -EXPORT_SYMBOL_GPL drivers/staging/iio/addac/adt7316 0x793c5ee9 adt7316_pm_ops -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x00cd01fe codec_hevc_setup_decode_head +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0x83858324 gb_gbphy_register_driver +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0xf0df10af gb_gbphy_deregister_driver +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0x50c27f28 gb_spilib_master_init +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0xd0e23548 gb_spilib_master_exit +EXPORT_SYMBOL_GPL drivers/staging/iio/addac/adt7316 0xab360286 adt7316_pm_ops +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x00373e93 amvdec_remove_ts +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x0e59c207 amvdec_write_dos +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x0fd37ace amvdec_get_output_size 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 0x163df6bb codec_hevc_setup_decode_head EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x1cb1e6d9 amvdec_am21c_size -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x1f02b6f3 amvdec_src_change -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x2662c8cd amvdec_clear_dos_bits -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x2c97c7a2 amvdec_dst_buf_done_idx -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x34f5e1bc amvdec_set_canvases -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x5461954f amvdec_get_output_size -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x5aae289b amvdec_abort +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x24868ef7 amvdec_src_change +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x2b5942c2 amvdec_clear_dos_bits +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x3940703c amvdec_read_parser +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x4cd9aa3d amvdec_add_ts 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 0x639d88e1 codec_hevc_free_fbc_buffers -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x67d468c6 codec_hevc_fill_mmu_map -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xa2cc1292 amvdec_remove_ts -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xacc1cf83 amvdec_write_parser -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xbe0ccb3b amvdec_dst_buf_done_offset -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xbf16733a amvdec_add_ts -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xc6a312d1 amvdec_read_dos -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xcb3967c9 amvdec_write_dos_bits -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xd93d86e1 amvdec_dst_buf_done -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xdc2e2dcb codec_hevc_free_mmu_headers -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xe2bc4337 amvdec_set_par_from_dar -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xe86c19e3 amvdec_write_dos -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xfcd5dc51 amvdec_read_parser -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xfe1958cb codec_hevc_setup_buffers -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x5dd21dec target_queue_submission -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x80221399 target_init_cmd -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xc0b5ad6f target_submit_prep -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xcdccdb49 target_submit -EXPORT_SYMBOL_GPL drivers/tee/tee 0x06b04161 tee_shm_pool_alloc -EXPORT_SYMBOL_GPL drivers/tee/tee 0x1158ed83 tee_shm_pool_free -EXPORT_SYMBOL_GPL drivers/tee/tee 0x11fce312 tee_shm_put -EXPORT_SYMBOL_GPL drivers/tee/tee 0x357b84b1 tee_shm_free -EXPORT_SYMBOL_GPL drivers/tee/tee 0x4ba96e63 tee_client_get_version -EXPORT_SYMBOL_GPL drivers/tee/tee 0x5121090d tee_shm_pool_alloc_res_mem -EXPORT_SYMBOL_GPL drivers/tee/tee 0x62e1437f tee_shm_get_pa -EXPORT_SYMBOL_GPL drivers/tee/tee 0x6caa5e9a tee_shm_get_va -EXPORT_SYMBOL_GPL drivers/tee/tee 0x72e2a099 tee_shm_pool_mgr_alloc_res_mem -EXPORT_SYMBOL_GPL drivers/tee/tee 0x7eeccb30 tee_shm_register -EXPORT_SYMBOL_GPL drivers/tee/tee 0x840a28dc tee_shm_alloc -EXPORT_SYMBOL_GPL drivers/tee/tee 0x8453bb2a tee_device_unregister +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x725d2494 amvdec_read_dos +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x75b86a3a codec_hevc_free_fbc_buffers +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x9031a9e3 amvdec_set_canvases +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x955036e9 amvdec_dst_buf_done +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xa9d406ea amvdec_write_dos_bits +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xaa93bb87 amvdec_dst_buf_done_offset +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xb90bd4f1 codec_hevc_fill_mmu_map +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xbb533373 amvdec_set_par_from_dar +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xc8a5ae38 codec_hevc_setup_buffers +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xc916faf2 amvdec_write_parser +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xd4c2698c codec_hevc_free_mmu_headers +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xee3b9f6f amvdec_abort +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xef81c94f amvdec_dst_buf_done_idx +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x0b3187b8 target_init_cmd +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x17ba3b13 target_submit_prep +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x50eb6060 target_queue_submission +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x89c79055 target_submit +EXPORT_SYMBOL_GPL drivers/tee/tee 0x08bce9dc tee_shm_get_pa +EXPORT_SYMBOL_GPL drivers/tee/tee 0x0e50dce8 tee_shm_pa2va +EXPORT_SYMBOL_GPL drivers/tee/tee 0x2e9f9ee5 tee_device_register +EXPORT_SYMBOL_GPL drivers/tee/tee 0x31d37dc0 tee_shm_get_from_id +EXPORT_SYMBOL_GPL drivers/tee/tee 0x4e66b57e tee_get_drvdata +EXPORT_SYMBOL_GPL drivers/tee/tee 0x5aba2f7e teedev_open +EXPORT_SYMBOL_GPL drivers/tee/tee 0x662734b3 tee_shm_pool_alloc +EXPORT_SYMBOL_GPL drivers/tee/tee 0x6a814c65 teedev_close_context +EXPORT_SYMBOL_GPL drivers/tee/tee 0x7e651be0 tee_client_close_context +EXPORT_SYMBOL_GPL drivers/tee/tee 0x7e72b1f9 tee_shm_pool_alloc_res_mem +EXPORT_SYMBOL_GPL drivers/tee/tee 0x82c2103b tee_device_unregister EXPORT_SYMBOL_GPL drivers/tee/tee 0x85fd9922 tee_session_calc_client_uuid -EXPORT_SYMBOL_GPL drivers/tee/tee 0x9b05b569 tee_client_open_context -EXPORT_SYMBOL_GPL drivers/tee/tee 0xbfb7e360 tee_client_close_context -EXPORT_SYMBOL_GPL drivers/tee/tee 0xc60d5911 tee_shm_get_from_id -EXPORT_SYMBOL_GPL drivers/tee/tee 0xc93ba30b tee_shm_alloc_kernel_buf -EXPORT_SYMBOL_GPL drivers/tee/tee 0xd225fa8d tee_shm_va2pa -EXPORT_SYMBOL_GPL drivers/tee/tee 0xd3e8a445 teedev_open -EXPORT_SYMBOL_GPL drivers/tee/tee 0xd7b9e91a tee_client_close_session -EXPORT_SYMBOL_GPL drivers/tee/tee 0xd7c8a2bd tee_client_open_session -EXPORT_SYMBOL_GPL drivers/tee/tee 0xd7d946e6 tee_client_invoke_func -EXPORT_SYMBOL_GPL drivers/tee/tee 0xd99ea0e2 tee_shm_pa2va -EXPORT_SYMBOL_GPL drivers/tee/tee 0xdcddc691 teedev_close_context -EXPORT_SYMBOL_GPL drivers/tee/tee 0xe3758104 tee_bus_type -EXPORT_SYMBOL_GPL drivers/tee/tee 0xf5691ea8 tee_get_drvdata -EXPORT_SYMBOL_GPL drivers/tee/tee 0xf7560f75 tee_device_alloc -EXPORT_SYMBOL_GPL drivers/tee/tee 0xfce91937 tee_device_register +EXPORT_SYMBOL_GPL drivers/tee/tee 0x8cd3ad9b tee_shm_put +EXPORT_SYMBOL_GPL drivers/tee/tee 0x959bfe21 tee_device_alloc +EXPORT_SYMBOL_GPL drivers/tee/tee 0x98c26959 tee_shm_alloc +EXPORT_SYMBOL_GPL drivers/tee/tee 0xa164edc3 tee_shm_pool_mgr_alloc_res_mem +EXPORT_SYMBOL_GPL drivers/tee/tee 0xacc47491 tee_bus_type +EXPORT_SYMBOL_GPL drivers/tee/tee 0xb27da667 tee_shm_free +EXPORT_SYMBOL_GPL drivers/tee/tee 0xcc2145bd tee_client_close_session +EXPORT_SYMBOL_GPL drivers/tee/tee 0xccc9d9c6 tee_client_open_session +EXPORT_SYMBOL_GPL drivers/tee/tee 0xcf77548f tee_shm_register +EXPORT_SYMBOL_GPL drivers/tee/tee 0xcfb6fe07 tee_client_invoke_func +EXPORT_SYMBOL_GPL drivers/tee/tee 0xcfc8a427 tee_client_get_version +EXPORT_SYMBOL_GPL drivers/tee/tee 0xd48b9e20 tee_shm_va2pa +EXPORT_SYMBOL_GPL drivers/tee/tee 0xd566a00d tee_client_open_context +EXPORT_SYMBOL_GPL drivers/tee/tee 0xe9eb3207 tee_shm_pool_free +EXPORT_SYMBOL_GPL drivers/tee/tee 0xea5e3914 tee_shm_alloc_kernel_buf +EXPORT_SYMBOL_GPL drivers/tee/tee 0xf5abb292 tee_shm_get_va EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x01d23ee1 tb_property_create_dir -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x02d26a9f tb_xdomain_lane_bonding_disable -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x0af9e10d tb_register_service_driver -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x11285a2d tb_ring_alloc_rx +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x0fe6d2df tb_xdomain_release_in_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x1629edbe tb_xdomain_release_out_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x1642c438 tb_ring_poll +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x180adce9 tb_ring_poll_complete EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x21a31526 tb_unregister_protocol_handler -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x232f1919 tb_xdomain_find_by_uuid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x278cd709 tb_xdomain_type +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x2abf2c87 tb_xdomain_alloc_in_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x2b0c6742 tb_ring_alloc_rx +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x2ee3efe4 tb_xdomain_disable_paths EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x36521060 tb_register_protocol_handler EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x393b4f2f tb_property_free_dir -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x41bc3805 tb_xdomain_release_out_hopid -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x518219b7 tb_ring_start -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x5c322e45 tb_xdomain_request -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x5ca94684 tb_xdomain_alloc_in_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x5b23fb45 tb_ring_start +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x5b7568f8 tb_xdomain_find_by_route EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x603249ed tb_unregister_property_dir -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x60f8e5e9 tb_ring_poll EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x658e3d97 tb_property_add_immediate EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x6ceee74b tb_property_remove -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x6e0e7caf tb_xdomain_alloc_out_hopid -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x742d492b tb_ring_alloc_tx -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x76ebefc6 tb_xdomain_type -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x7a3050ab __tb_ring_enqueue -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x7ebfeea5 tb_xdomain_lane_bonding_enable -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x80381a4d tb_ring_stop -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x81916bb8 tb_xdomain_release_in_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x6d122be2 tb_xdomain_find_by_uuid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x73bc6d86 tb_xdomain_alloc_out_hopid EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x86166e8c tb_property_get_next -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x88d59059 tb_xdomain_disable_paths +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x88d38553 tb_xdomain_request EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x8b62f95e tb_property_add_dir -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x8f691eb6 tb_xdomain_enable_paths -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x98b405f3 tb_service_type -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x9d87af6c tb_ring_poll_complete +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xa2b499a6 __tb_ring_enqueue +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xaec7eb7f tb_xdomain_lane_bonding_disable +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xb49fe550 tb_ring_free EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xb7c7cdce tb_property_add_text -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xbeace5fe tb_xdomain_response -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xc102a7fa tb_ring_free +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xbd61007c tb_xdomain_response +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xc469270d tb_register_service_driver EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xc64da6ae tb_property_find +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xc9d33d3c tb_service_type EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xe2697cd4 tb_property_add_data -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xe6d3cbbe tb_unregister_service_driver +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xe3e904c3 tb_ring_stop +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xe871a64a tb_ring_alloc_tx +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xeb8a321c tb_xdomain_enable_paths +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xebd7cbef tb_xdomain_lane_bonding_enable EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xf1cfd1ff tb_register_property_dir -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xf88db7e3 tb_xdomain_find_by_route -EXPORT_SYMBOL_GPL drivers/uio/uio 0x72407dfc __devm_uio_register_device -EXPORT_SYMBOL_GPL drivers/uio/uio 0x8c58842c uio_event_notify -EXPORT_SYMBOL_GPL drivers/uio/uio 0xbdd71c10 __uio_register_device -EXPORT_SYMBOL_GPL drivers/uio/uio 0xead3f849 uio_unregister_device -EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x33673750 usbatm_usb_probe -EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x67d3946b usbatm_usb_disconnect -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x002bd267 cdns_power_is_lost -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x141e80dc cdns_clear_vbus -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x3bc6049a cdns_remove -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x63a8c252 cdns_init -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x878a8e10 cdns_drd_gadget_off -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x87bc7e02 cdns_resume -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xa3abc8cc cdns_drd_gadget_on -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xb8ab45a1 cdns_suspend -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xcc034bf0 cdns_set_vbus -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x151da701 ci_hdrc_query_available_role -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x4631cf78 ci_hdrc_add_device -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x6f958997 ci_hdrc_remove_device -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x7ce3d096 hw_phymode_configure -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x261636a1 imx_usbmisc_charger_detection -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x29f82f0b imx_usbmisc_hsic_set_clk -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x4cf3f952 imx_usbmisc_init -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xb2ec38bd imx_usbmisc_hsic_set_connect -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xba5728de imx_usbmisc_set_wakeup -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xc45e39ac imx_usbmisc_init_post -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x31db7660 __ulpi_register_driver -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x74724e2e ulpi_unregister_interface -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x79e1352d ulpi_register_interface -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xb5ee074a ulpi_read -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xbb046f1a ulpi_write -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xed921ca5 ulpi_unregister_driver -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x38d53937 u_audio_start_playback -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x50e93730 g_audio_cleanup -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x6344668b u_audio_set_volume -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x83cb50fb u_audio_get_volume -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x8c040dae u_audio_start_capture -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xa3dc3018 g_audio_setup -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xc5f86d6f u_audio_stop_capture -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xd4ccc589 u_audio_get_mute -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xd4ff3771 u_audio_stop_playback -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xed13c6f9 u_audio_set_mute -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x0dd47db1 gether_register_netdev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x112bcdee gether_get_qmult -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x30738cdf gether_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x35502d64 gether_set_qmult -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x3e54f0e4 gether_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x48fbe3d1 gether_setup_name -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x59272873 gether_get_host_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x5c42cd6d gether_get_dev_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x5cc844aa gether_setup_name_default -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x6c75134b gether_set_ifname +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xfb29ca4e tb_unregister_service_driver +EXPORT_SYMBOL_GPL drivers/uio/uio 0x292f2639 __devm_uio_register_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0x7c5ab7c4 uio_unregister_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0xde1280b9 uio_event_notify +EXPORT_SYMBOL_GPL drivers/uio/uio 0xf93ddc87 __uio_register_device +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x2abde7d0 usbatm_usb_disconnect +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x8e254c4c usbatm_usb_probe +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x03b4e2a8 cdns_clear_vbus +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x48e3f2e7 cdns_init +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x4d61da6b cdns_drd_gadget_on +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x552ad1cf cdns_set_vbus +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x62b19d92 cdns_resume +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x738509f0 cdns_suspend +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xc52dae19 cdns_remove +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xe4f2a012 cdns_drd_gadget_off +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xf94a0f30 cdns_power_is_lost +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x1479a767 ci_hdrc_add_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x508422c3 ci_hdrc_remove_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x6ce41ecf hw_phymode_configure +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xe731aff2 ci_hdrc_query_available_role +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x352426b1 imx_usbmisc_set_wakeup +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x5d03a220 imx_usbmisc_charger_detection +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x9406b6b0 imx_usbmisc_init_post +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xa0f89c99 imx_usbmisc_init +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xadf06f1e imx_usbmisc_hsic_set_connect +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xfd50a46a imx_usbmisc_hsic_set_clk +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x00835a58 ulpi_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x5eff7b75 __ulpi_register_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x63ad62c7 ulpi_register_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x871a66ba ulpi_write +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xb10c5497 ulpi_unregister_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xc6bff444 ulpi_read +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x15299345 g_audio_cleanup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x15bafaf0 u_audio_set_volume +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x2411e77f g_audio_setup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x32315bfc u_audio_stop_playback +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x573d8483 u_audio_stop_capture +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x6002c711 u_audio_get_mute +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x67980fe5 u_audio_start_capture +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x88653791 u_audio_set_mute +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x96d03a1a u_audio_start_playback +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xef06010b u_audio_get_volume +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x07a72967 gether_set_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x15f19084 gether_get_ifname +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x2778619a gether_get_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x46b48127 gether_set_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x4e8e11c1 gether_get_host_addr_u8 +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x63e5b6f5 gether_setup_name_default +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x6d243ea2 gether_get_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x706577b4 gether_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x84c02150 gether_get_dev_addr EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8878cfa6 gether_cleanup -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x9c45f3da gether_get_ifname -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xa7db897f gether_get_host_addr_cdc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xf0504289 gether_set_dev_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xfcb85556 gether_set_host_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xfe26ff79 gether_get_host_addr_u8 -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xfe81b15f gether_set_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xaf2061a5 gether_setup_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xb8ff5601 gether_get_host_addr_cdc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xe1883655 gether_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xe810fb0b gether_set_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xeb8fb86e gether_set_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xfa4697a3 gether_register_netdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xfdde417a gether_set_ifname +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x1f3a7929 gserial_suspend +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x2670bbfe gserial_connect EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x33bfdca2 gserial_alloc_line EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x4a3df9d0 gs_alloc_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x527ee6bc gserial_disconnect EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x60ea48a0 gs_free_req EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x77dbf841 gserial_get_console -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x939474eb gserial_suspend -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x977824da gserial_resume EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xa18ee0bd gserial_set_console -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xa21c6aa6 gserial_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xa51f4f89 gserial_connect EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xb6652875 gserial_free_line +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xc1831439 gserial_resume EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xe89dc424 gserial_alloc_line_no_console EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x12772b85 ffs_lock -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x32b1d2fc ffs_name_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0xf2597cc3 ffs_single_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x0d354019 fsg_show_removable +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x50e44cf4 ffs_name_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x898c13d0 ffs_single_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x00b6bbc1 fsg_common_set_cdev EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x141fce2a fsg_common_remove_luns -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x16a66a7a fsg_lun_fsync_sub EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1710b539 fsg_fs_bulk_out_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x189b744d fsg_lun_open +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1b6f73f4 fsg_store_cdrom EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1ccb58f7 fsg_common_set_num_buffers EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2933ee1d fsg_ss_bulk_in_desc EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 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 0x3f0ef5ba fsg_show_inquiry_string 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 0x5f55eb36 fsg_store_cdrom -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x692934b9 fsg_show_file +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x642ad21a fsg_lun_close +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x6845db35 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 0x6daeefeb fsg_show_cdrom +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7389f2a3 fsg_show_inquiry_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x74feccad fsg_show_removable EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7e26d4a5 fsg_common_set_sysfs -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x8506b8de fsg_common_set_cdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x831707fa fsg_show_nofua EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x857b6dc2 fsg_hs_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x95ac9e72 fsg_common_remove_lun EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x95cffb3e fsg_hs_bulk_in_desc EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x9a0221c7 fsg_common_free_buffers +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x9a366f50 fsg_show_cdrom EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa5cae92f fsg_ss_bulk_out_comp_desc EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa5f99b69 fsg_fs_function EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xab6c68ac fsg_config_from_params -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xac7c60cc fsg_show_ro 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 0xb6172062 fsg_store_nofua -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb8a8c3a6 fsg_store_inquiry_string -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xbcde22a9 fsg_lun_open +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb5b550fd fsg_store_ro +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xd03774ae fsg_show_file +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xd08bd5b8 fsg_store_nofua +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xd0edb665 fsg_store_file EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xd1a3e8e0 fsg_common_create_luns -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xd69e7aae fsg_store_removable -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xe8dd91c8 fsg_common_remove_lun -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xe99e7af1 fsg_lun_close -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xed0e628b fsg_store_ro -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf17b6776 fsg_store_file +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xd6358600 fsg_show_ro +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xe6533eb3 fsg_store_inquiry_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf3335bf2 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 0xf61207ec fsg_show_nofua -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x27759e71 rndis_signal_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x2fa50eb8 rndis_borrow_net -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x30b1309c rndis_set_param_vendor -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x3f84e819 rndis_register -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x41fb4924 rndis_set_param_medium -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x45efe8f6 rndis_signal_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x6153fa9d rndis_free_response -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x7177843c rndis_set_param_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x7873dc67 rndis_deregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x9103d64a rndis_msg_parser -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x9f274dd8 rndis_rm_hdr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xdc50e8a8 rndis_add_hdr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xe07616aa rndis_uninit -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xf2493c57 rndis_get_next_response -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xf8df7e64 rndis_set_host_mac -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x013c36ca usb_string_ids_tab -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x06366b66 usb_otg_descriptor_init -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0651fdc5 usb_gstrings_attach -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0b4f8619 usb_ep_autoconfig_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x05cab78d rndis_borrow_net +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x0b14bae6 rndis_set_param_vendor +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x301e4971 rndis_add_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x5483ff2f rndis_set_param_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x655c4692 rndis_free_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x7f939fd1 rndis_set_host_mac +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x9c6c62fc rndis_uninit +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xaff111b0 rndis_signal_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xb188ac5f rndis_msg_parser +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xb80cc0b9 rndis_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xc27ef7b8 rndis_signal_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xc8191290 rndis_deregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xe2e9f404 rndis_rm_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xef9d1e17 rndis_get_next_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xf9653ee9 rndis_set_param_medium +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x08fdbfa0 usb_composite_unregister EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0c589aba usb_validate_langid EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0cb7e477 usb_ep_autoconfig_release -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x1240e82d usb_function_unregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x1519974d usb_get_function_instance -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x161d1224 config_ep_by_speed -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x1d03a912 usb_add_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x1fc8b112 usb_function_deactivate -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x212e6055 usb_remove_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0e1d63fe usb_add_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x15cd53cc usb_gstrings_attach EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2e09263f usb_copy_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x302a1014 usb_function_register -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x337640bb usb_ep_autoconfig_ss -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3385ccf3 usb_assign_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3ab083af usb_otg_descriptor_alloc -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x44f3bcca usb_string_ids_n +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2ff9fef6 usb_function_activate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3309be03 usb_function_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x33453f30 usb_put_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3bf9025c usb_put_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x454cc491 usb_composite_overwrite_options EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4beb505d usb_gadget_get_string -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x56f56c28 usb_ep_autoconfig -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x599ad0af usb_function_activate -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5f169dcd usb_string_id -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x647b966c usb_put_function_instance -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7060ea2d usb_composite_overwrite_options -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x730d6198 usb_interface_id -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x75786dd9 usb_get_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x861bcc2f usb_free_all_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5e7a0e3d usb_composite_setup_continue +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x622118da usb_string_ids_tab +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x652ad161 usb_function_deactivate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x657cf13b usb_add_config_only +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x77e20a41 usb_assign_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7b4a473e usb_otg_descriptor_alloc +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7d7e59b6 usb_get_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7dec36d8 usb_ep_autoconfig_ss +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7f78ab82 usb_remove_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x88d61da9 config_ep_by_speed EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x982cb36d alloc_ep_req -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x9b6b3a9f usb_add_config -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xafedb66b config_ep_by_speed_and_alt -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xbcd34739 usb_composite_probe -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xbd83ac54 usb_composite_unregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc7aa73f6 usb_composite_setup_continue +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x9b1f0e4a usb_composite_probe +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x9c61b24b usb_function_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa9bf7e7b usb_otg_descriptor_init +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb06c1cb2 usb_add_config +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xbd5393f7 usb_interface_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc8be0549 usb_free_all_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xcc914099 usb_ep_autoconfig_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd1e380cc unregister_gadget_item EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd2ea2134 usb_descriptor_fillbuf -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xec0c43dc usb_add_config_only +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xde4fc5ef usb_string_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe6c8f743 usb_string_ids_n +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe978ad85 usb_ep_autoconfig +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe9887d0c usb_get_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf03f99f9 config_ep_by_speed_and_alt EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf474a207 usb_gadget_config_buf -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf5c2b92f unregister_gadget_item -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf76bdb66 usb_put_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x34714dd5 udc_enable_dev_setup_interrupts -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x36b55c96 empty_req_queue -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x3961b7fa gadget_release -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x438b5cf2 udc_probe +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x56b407fe 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 0x6882ff6e udc_basic_init -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x6b844de9 init_dma_pools -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x7a9fedc9 udc_mask_unused_interrupts -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x917c0689 free_dma_pools -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xc6b1dbc4 udc_remove -EXPORT_SYMBOL_GPL drivers/usb/host/xhci-pci-renesas 0x38057470 renesas_xhci_check_request_fw -EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x0d24c08a ezusb_fx1_ihex_firmware_download -EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x4e270b99 ezusb_fx1_set_reset -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x20436ff4 usb_ftdi_elan_edset_single -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x30c86304 usb_ftdi_elan_edset_flush -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x57cc3dda usb_ftdi_elan_edset_output -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x57e07d04 usb_ftdi_elan_edset_setup -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x5a2e6e42 usb_ftdi_elan_edset_input -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x61ec4f3a usb_ftdi_elan_edset_empty -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x813d324a usb_ftdi_elan_write_pcimem -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x841f065f usb_ftdi_elan_read_pcimem -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x89ab0312 ftdi_elan_gone_away -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-am335x-control 0x1bca089f am335x_get_phy_control -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-isp1301 0x382c4e7f isp1301_get_client -EXPORT_SYMBOL_GPL drivers/usb/serial/usb_wwan 0x3c46753b usb_wwan_port_probe -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x05264ff9 usb_serial_deregister_drivers -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x0dfcbc73 usb_serial_port_softint -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x159f7534 usb_serial_generic_write_bulk_callback -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x205da29d usb_serial_generic_throttle -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x2d341557 usb_serial_generic_read_bulk_callback -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x3030cb05 usb_serial_generic_chars_in_buffer -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x3a3ab6d8 usb_serial_generic_write_start -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x42333d2b usb_serial_generic_unthrottle -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x51412d59 usb_serial_generic_resume -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x58485ea0 usb_serial_generic_write -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x5c5d4f8f usb_serial_generic_close -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x5c8f98ed usb_serial_generic_wait_until_sent -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x9d10fc52 usb_serial_generic_submit_read_urbs -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x9d72c20d usb_serial_generic_tiocmiwait -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xc0824879 usb_serial_generic_get_icount -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xc0a7c96c usb_serial_generic_process_read_urb -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xc4df0712 usb_serial_register_drivers -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xdeb79780 usb_serial_claim_interface -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xe652bad0 usb_serial_handle_dcd_change -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xe91b1e0e usb_serial_generic_open -EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0x330a1d40 dp_altmode_probe -EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0x34d19830 dp_altmode_remove -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0x471dd265 tcpci_register_port +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x5e2e3afc free_dma_pools +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x65076ffe udc_probe +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x6df879cf udc_basic_init +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xaa3d2e32 udc_mask_unused_interrupts +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xb6121dc6 init_dma_pools +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xf3bbb444 gadget_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xf72f2167 udc_remove +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xfd15250e empty_req_queue +EXPORT_SYMBOL_GPL drivers/usb/host/xhci-pci-renesas 0xe9f639cc renesas_xhci_check_request_fw +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x03dce719 ezusb_fx1_set_reset +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x397c417a ezusb_fx1_ihex_firmware_download +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x020ca8de usb_ftdi_elan_write_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x0b4c4f57 ftdi_elan_gone_away +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x53711545 usb_ftdi_elan_edset_empty +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x9f1234e0 usb_ftdi_elan_edset_single +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xb07a3edf usb_ftdi_elan_edset_output +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xba00de2a usb_ftdi_elan_edset_setup +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xdf7cbf5d usb_ftdi_elan_edset_flush +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xe7b54490 usb_ftdi_elan_edset_input +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xf94974f1 usb_ftdi_elan_read_pcimem +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-am335x-control 0xa18a4ff0 am335x_get_phy_control +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-isp1301 0x18d6cc2a isp1301_get_client +EXPORT_SYMBOL_GPL drivers/usb/serial/usb_wwan 0xc9bde2ee usb_wwan_port_probe +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x0b8c86bf usb_serial_generic_submit_read_urbs +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x12375ed5 usb_serial_claim_interface +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x1315e0ec usb_serial_register_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x16772a47 usb_serial_generic_open +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x247c674c usb_serial_generic_process_read_urb +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x25bf304a usb_serial_port_softint +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x4e89dd51 usb_serial_generic_close +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x5968d063 usb_serial_generic_write_start +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x5f6fba34 usb_serial_generic_resume +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x654792fa usb_serial_generic_write +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x70622eef usb_serial_generic_throttle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x7b9f0f97 usb_serial_generic_tiocmiwait +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x7f5af332 usb_serial_generic_get_icount +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x84df9784 usb_serial_generic_wait_until_sent +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x8dc6e9d0 usb_serial_deregister_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xa990eded usb_serial_generic_write_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xab43e86a usb_serial_generic_unthrottle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xbc5fff30 usb_serial_generic_read_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xbfcf10c3 usb_serial_generic_chars_in_buffer +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xd874a1dc usb_serial_handle_dcd_change +EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0x9f99cd0b dp_altmode_remove +EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0xffb1e49e dp_altmode_probe +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0x2d5c6671 tcpci_register_port EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0x6f497a3c tcpci_irq EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0xbe111953 tcpci_get_tcpm_port EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 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 0x40d0e99e tcpm_register_port EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x76eeda4b tcpm_unregister_port EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x9e0bd753 tcpm_pd_hard_reset EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xb655342c tcpm_pd_receive @@ -16092,194 +16132,193 @@ 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/tcpm/tcpm 0xf0aa6c11 tcpm_register_port -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x0ad49bf5 typec_altmode_get_partner -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x1188feae typec_get_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x125397f6 typec_unregister_port -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x1293fb87 fwnode_typec_mux_get -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x1c6dc6f1 typec_unregister_plug -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x26ec0797 typec_mux_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x0133a90a typec_unregister_port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x0ae19985 typec_altmode_get_partner +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x0b8b1bcc typec_unlink_port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x126aaf00 typec_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x14c47d17 typec_set_pwr_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x16b874bd typec_mux_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x1b030b56 typec_altmode_update_active +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x1b8b5393 typec_altmode_notify +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x1cca8c44 typec_set_vconn_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x1d749341 typec_partner_set_identity +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x1d85b814 typec_switch_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x24668a97 typec_altmode_vdm +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2a4eebc7 typec_mux_set_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2b3e745c fwnode_typec_mux_get EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2d1e301d typec_find_power_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x31423790 typec_mux_put -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x33578d7a typec_switch_put -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x418e058c typec_unregister_partner -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x45d9af95 typec_partner_set_pd_revision -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x48a59a3b typec_set_orientation -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x4a1449e2 typec_partner_set_identity -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x4aaf11d6 typec_link_port -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x4dff3cec typec_altmode_enter -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x51fb25b5 typec_partner_set_num_altmodes -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x54028a3c typec_altmode_attention -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5b5b1c1c typec_get_negotiated_svdm_version -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6182ab15 typec_altmode_unregister_driver -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x61dbcdd5 typec_register_plug -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6d5109ff typec_set_mode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x727f498f typec_altmode_exit -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x74ffdcab typec_unregister_altmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x79707544 typec_set_pwr_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7ab14957 typec_altmode_notify -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7e1cc57a typec_altmode2port -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7eaf9f56 typec_get_orientation -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7f204dba typec_port_register_altmodes -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x805905d4 typec_set_pwr_opmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x81d36a5b typec_match_altmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x8562c5bf typec_cable_get -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x87cb1356 typec_partner_register_altmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x8d09956e typec_plug_set_num_altmodes +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x36bf9b1e typec_switch_set_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x36e4dcd2 typec_switch_put +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x3a50294e typec_mux_register +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x3de0e6a2 __typec_altmode_register_driver +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x4786b1e7 typec_get_orientation +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5078b529 typec_cable_set_identity +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6117c5cf typec_register_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x67105c9a typec_set_orientation +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x673e5d8f typec_register_cable +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6f55c5a9 typec_register_port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6fc6ef87 typec_unregister_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x74ccb626 typec_altmode_exit +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x77b83426 typec_altmode_attention +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7e8e893e typec_altmode_put_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7fbd2ee6 typec_port_register_altmodes +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x895aec6b typec_partner_set_pd_revision +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x8d35f242 typec_set_mode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x8dadf073 typec_cable_is_active +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x8e858bb6 typec_altmode_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x8e922dac typec_switch_set EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9049491e typec_find_port_data_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x960d5612 typec_mux_set_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9974f28e typec_unregister_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9aaba276 typec_register_partner +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9e13e3b9 fwnode_typec_switch_get +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa02134c1 typec_switch_register +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa21884e5 typec_partner_register_altmode EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa254de98 typec_find_orientation -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa579449d typec_plug_register_altmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa6464700 typec_mux_register -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa7f5177d typec_cable_is_active -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa8a1ca9b typec_altmode_update_active -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xae9bb5f5 typec_switch_set -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xaffe5899 typec_switch_unregister -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb9b0638c typec_set_data_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xbb69b165 typec_unlink_port -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xbd9a3877 typec_port_register_altmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xbf96485d typec_cable_set_identity -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc08f6d68 typec_partner_set_svdm_version -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc3ba79ea typec_cable_put -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc80dd470 typec_altmode_get_plug -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xce5899e2 fwnode_typec_switch_get -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd420ad30 typec_mux_get_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd5eb4416 __typec_altmode_register_driver -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xde6a1cc8 typec_unregister_cable -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe1dac144 typec_register_port -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe84670e1 typec_switch_register +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa2b42b67 typec_switch_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa2f3a882 typec_unregister_partner +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa6e65fce typec_partner_set_svdm_version +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xab629c60 typec_altmode_enter +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb044a799 typec_mux_set +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb4a22512 typec_altmode_get_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb8d2f96c typec_cable_put +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb91d5cc6 typec_cable_get +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xbadcb734 typec_mux_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xccd9cdf9 typec_mux_put +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xcd141d5c typec_altmode2port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xce2ab5f0 typec_partner_set_num_altmodes +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd4d1d5d1 typec_match_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd5b21888 typec_port_register_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xdc293677 typec_set_data_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe3afb8b7 typec_link_port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe7d51859 typec_unregister_cable EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xeafc1eb8 typec_find_port_power_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xeeb6dc8f typec_switch_set_drvdata EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf1234a8b typec_find_pwr_opmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf866fab7 typec_register_cable -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf8abf6de typec_mux_set -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xfb0af57e typec_altmode_vdm -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xfb76c360 typec_register_partner -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xfbb884e2 typec_altmode_put_plug -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xfbbbc633 typec_switch_get_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xfbf69a89 typec_set_vconn_role -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x0de8b978 ucsi_register -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x11d8040a ucsi_connector_change -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x1a0d61d0 ucsi_create -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x33956ddd ucsi_set_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x4220f80e ucsi_unregister -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x561416ff ucsi_get_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x660549ac ucsi_resume -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xb2feee4d ucsi_destroy -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xbac55a2c ucsi_send_command -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x09dd3641 usbip_in_eh -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x0d17adde dev_attr_usbip_debug -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x1045e682 usbip_start_eh -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x209c1adb usbip_event_add -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x3335ef37 usbip_recv_xbuff -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x4047c554 usbip_recv_iso -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x65c03b87 usbip_event_happened -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x76668929 usbip_pack_pdu +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf197cbe9 typec_get_negotiated_svdm_version +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf218e859 typec_plug_set_num_altmodes +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xfe084115 typec_set_pwr_opmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xfe9ed01a typec_plug_register_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x01cffe00 ucsi_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x0714430a ucsi_register +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x26d35ed1 ucsi_resume +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x514ee89c ucsi_connector_change +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x8ec28798 ucsi_send_command +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xa3a07ad9 ucsi_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xb1b3555a ucsi_destroy +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xb2313e80 ucsi_create +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xb2870a08 ucsi_set_drvdata +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x19c0ae48 usbip_recv_xbuff +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x3693441a usbip_recv_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x3ce33e67 usbip_stop_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x3d798d9f dev_attr_usbip_debug +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x45b132f5 usbip_dump_urb +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x5f3eab31 usbip_event_add +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x727ba04d usbip_start_eh EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x78b72f44 usbip_debug_flag -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x7cddac9e usbip_alloc_iso_desc_pdu -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xc3b9eb92 usbip_recv +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x7a714dac usbip_pad_iso EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd02753dc usbip_header_correct_endian -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd0912030 usbip_dump_urb -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe1993bb3 usbip_stop_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xdaa398e0 usbip_pack_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xdd10011b usbip_in_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xdfba9f55 usbip_event_happened EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe1ea0586 usbip_dump_header -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe38e3461 usbip_pad_iso -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x10feab78 _vdpa_unregister_device -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x145e713d vdpa_register_device -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x1ddc915a vdpa_unregister_device -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x26b6ad93 vdpa_mgmtdev_unregister -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x46234a76 _vdpa_register_device -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x4ff0f0b1 __vdpa_register_driver -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x562c57d4 vdpa_mgmtdev_register -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x706def30 vdpa_unregister_driver -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xe18e5620 __vdpa_alloc_device -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa_sim/vdpa_sim 0xb7be99e2 vdpasim_create -EXPORT_SYMBOL_GPL drivers/vfio/mdev/mdev 0xe24cccc1 mdev_bus_type -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x08617d31 vfio_pci_core_register_device -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x3260328f vfio_pci_core_init_device -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x4bb6cbba vfio_pci_core_unregister_device +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe2c6fb23 usbip_alloc_iso_desc_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xf3648e7f usbip_recv +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x16e48ac0 vdpa_mgmtdev_register +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x233f9542 _vdpa_unregister_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x38e001d6 vdpa_unregister_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x7a19ff07 vdpa_mgmtdev_unregister +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x81c1d5fe __vdpa_register_driver +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x8862d520 _vdpa_register_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xb244e6b5 vdpa_register_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xb4c65c91 vdpa_unregister_driver +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xb8fe7771 __vdpa_alloc_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa_sim/vdpa_sim 0x814cd617 vdpasim_create +EXPORT_SYMBOL_GPL drivers/vfio/mdev/mdev 0xd66b6875 mdev_bus_type +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x0d5f9e01 vfio_pci_core_disable +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x0f281b65 vfio_pci_core_register_device +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x292a41dd vfio_pci_core_init_device +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x39f334a3 vfio_pci_core_match +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x47ad32ed vfio_pci_core_uninit_device EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x4cf699b8 vfio_pci_core_set_params -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x6b48159e vfio_pci_core_request -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x77bb37bc vfio_pci_core_uninit_device -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x7aaf00fa vfio_pci_core_read -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x8c0ee3ce vfio_pci_core_ioctl -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x98737586 vfio_pci_core_disable -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x9dc7ddce vfio_pci_core_match -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x9eea457a vfio_pci_core_err_handlers -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xa5f8baff vfio_pci_core_enable -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xab4352af vfio_pci_register_dev_region -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xad7585ab vfio_pci_core_sriov_configure -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xbf66fee1 vfio_pci_core_write -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xc75301d7 vfio_pci_core_finish_enable -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xe7ad47aa vfio_pci_core_close_device -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xff3b677c vfio_pci_core_mmap -EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x612e8a41 vfio_platform_remove_common -EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xa822c3df vfio_platform_probe_common -EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xad769e69 __vfio_platform_register_reset -EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xef17b5f2 vfio_platform_unregister_reset -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x0a206d5f vfio_register_group_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x158014a7 vfio_unregister_iommu_driver -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x283ae242 vfio_unregister_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x5129819c vfio_pci_core_read +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x668ef8fc vfio_pci_core_mmap +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x6d65f8cc vfio_pci_core_sriov_configure +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x953af333 vfio_pci_core_request +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xa344a8b1 vfio_pci_core_write +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xb0d268f4 vfio_pci_core_enable +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xb2fce2ad vfio_pci_core_close_device +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xcdd4d162 vfio_pci_register_dev_region +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xd6b61cc0 vfio_pci_core_ioctl +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xe36f5b9d vfio_pci_core_unregister_device +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xe751b9f0 vfio_pci_core_finish_enable +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xed7c8a70 vfio_pci_core_err_handlers +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x9962453f vfio_platform_unregister_reset +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xc7746242 vfio_platform_probe_common +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xebd23419 vfio_platform_remove_common +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xf0998d3e __vfio_platform_register_reset +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x21b3fcdb vfio_unregister_iommu_driver +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x2c970dae vfio_assign_device_set EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x3567743b vfio_external_user_iommu_id EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x44b83e00 vfio_info_cap_add -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x5012a7de vfio_group_get_external_user -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x510e0c4b vfio_uninit_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x4854ac43 vfio_iommu_group_get EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x5b35c4f9 vfio_group_set_kvm -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x7159618c vfio_init_group_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x89c461e0 vfio_device_put -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x8dd27ae5 vfio_device_get_from_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xba1fcd2f vfio_iommu_group_put -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xbfcc7528 vfio_group_iommu_domain +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x74f0f913 vfio_group_get_external_user_from_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x797d9f59 vfio_register_iommu_driver +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x7c116c9e vfio_iommu_group_put +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x803b2c5c vfio_device_get_from_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x87b3187b vfio_unregister_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x99b9b8b2 vfio_external_group_match_file +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xa2529077 vfio_group_get_external_user +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xbef40483 vfio_register_group_dev EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc1d989c5 vfio_external_check_extension -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc270f0c8 vfio_iommu_group_get EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc4913442 vfio_group_put_external_user -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xd366fbc9 vfio_register_iommu_driver -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xdae0505b vfio_external_group_match_file -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xf684bd82 vfio_group_get_external_user_from_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xff8b0cc8 vfio_assign_device_set -EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0x35dd8966 vfio_virqfd_disable -EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0x927c7518 vfio_virqfd_enable -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x00ea48d5 vhost_work_queue -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x09b21db3 vhost_dequeue_msg -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x17cb0d09 vhost_vq_is_setup -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1ecbfd0c vhost_vq_access_ok -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x21f9f139 vhost_poll_queue -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2a0becc5 vhost_dev_reset_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2c84843d vhost_signal -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2e5a0b68 vhost_log_access_ok -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x39f32c91 vhost_set_backend_features -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x405ac98a vhost_dev_ioctl -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x40723437 vhost_work_dev_flush -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x45d0ea37 vhost_new_msg -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x45f22e47 vhost_add_used_and_signal -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4695b8a9 vhost_poll_stop -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5de042b5 vhost_dev_set_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x63d29bd2 vhost_add_used_and_signal_n -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x75ceec6b vhost_disable_notify -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7641899e vhost_dev_stop -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x80a4ccb6 vhost_add_used -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8e977c29 vhost_log_write -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x95c409e2 vhost_has_work -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9c98b5dd vq_meta_prefetch -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa242e672 vhost_dev_check_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa492ba4a vhost_vring_ioctl +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xd42acb59 vfio_init_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xd939537f vfio_group_iommu_domain +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xf9b9349f vfio_uninit_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xfd74dd7b vfio_device_put +EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0x1e9ba501 vfio_virqfd_enable +EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0xef1c1fe7 vfio_virqfd_disable +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0562a787 vhost_dequeue_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x07e47cd9 vhost_get_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0cbcdf57 vhost_log_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x16471329 vhost_add_used +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1b7f4271 vhost_poll_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2038d048 vhost_dev_set_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2ea620c3 vhost_dev_cleanup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2f8115c2 vhost_init_device_iotlb +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3263a90f vhost_vring_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x365cb4b5 vhost_add_used_and_signal_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x36d66863 vhost_add_used_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3de57169 vhost_dev_has_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4677d3f0 vhost_add_used_and_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x48198100 vhost_new_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4b17f8fa vhost_dev_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5146825f vhost_chr_read_iter +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x595f4775 vhost_dev_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5cb0d508 vhost_vq_init_access +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6c1c6453 vhost_enable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6e2e5994 vhost_poll_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7537bdfc vhost_work_dev_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7678f302 vhost_set_backend_features +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x78f02766 vhost_has_work +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8224efa4 vhost_disable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9f6d0549 vhost_discard_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa0d991f6 vhost_vq_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa8c45780 vhost_enqueue_msg EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa909cfc5 vhost_work_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xabd5374b vhost_poll_start -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xaceb01d8 vhost_init_device_iotlb -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xaf180113 vhost_exceeds_weight -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb2639961 vhost_poll_flush -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb687138c vhost_vq_avail_empty -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb8f4efd5 vhost_enable_notify -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xbd947680 vhost_dev_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc07aecb3 vhost_discard_vq_desc -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc65664b1 vhost_get_vq_desc -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc6c08756 vhost_dev_has_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xcb66dcf4 vhost_dev_cleanup -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xdfbea14b vhost_poll_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe0fb64f0 vhost_add_used_n -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xec3fe00a vhost_vq_init_access -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xefdcca95 vhost_chr_read_iter +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xae1d9388 vhost_log_write +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb355b58a vhost_exceeds_weight +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xcb2d97f1 vq_meta_prefetch +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xce8e090d vhost_dev_check_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xda2ebcd1 vhost_vq_is_setup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe0ed7f30 vhost_work_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe924e4ba vhost_dev_reset_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe94e0563 vhost_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xea0bce0d vhost_poll_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xef0e993d vhost_poll_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf8028b01 vhost_dev_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf948401e vhost_vq_avail_empty +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf9de4954 vhost_poll_start EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfd2b3e45 vhost_dev_reset_owner_prepare -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfd7539db vhost_enqueue_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 @@ -16289,390 +16328,389 @@ 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 0x0f69297a ili9320_probe_spi -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x139b23e7 ili9320_suspend -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x20bd07ce ili9320_shutdown -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x33eed72e ili9320_resume -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x9670f6d8 ili9320_write -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xa116dd04 ili9320_remove -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xa17198d0 ili9320_write_regs -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0x4b0a38cb fb_ddc_read -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x8ba8415b fb_sys_read -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0xf3e111b7 fb_sys_write -EXPORT_SYMBOL_GPL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x4ede77cb omapdss_of_find_source_for_first_ep -EXPORT_SYMBOL_GPL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x71e16012 omapdss_of_get_next_port -EXPORT_SYMBOL_GPL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x78b366b1 omapdss_of_get_next_endpoint -EXPORT_SYMBOL_GPL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xe097622e omapdss_of_get_first_endpoint -EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x51775cc5 sis_malloc_new -EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x9c2e2870 sis_free_new -EXPORT_SYMBOL_GPL drivers/w1/wire 0x1886f06f w1_reset_resume_command -EXPORT_SYMBOL_GPL drivers/w1/wire 0x189abb0c w1_touch_bit -EXPORT_SYMBOL_GPL drivers/w1/wire 0x1dbe5ea3 w1_touch_block -EXPORT_SYMBOL_GPL drivers/w1/wire 0x34a2bcb5 w1_read_8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0x363c92d0 w1_reset_bus -EXPORT_SYMBOL_GPL drivers/w1/wire 0x57901119 w1_write_block +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x0214a65f ili9320_write_regs +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x35262741 ili9320_remove +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x54212532 ili9320_resume +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x5edd60fe ili9320_probe_spi +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x8c1d82ac ili9320_shutdown +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x94650541 ili9320_write +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xed81bd51 ili9320_suspend +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0x5dfc67dc fb_ddc_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x4880ce56 fb_sys_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0xe2fb59dc fb_sys_write +EXPORT_SYMBOL_GPL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x02de221b omapdss_of_get_first_endpoint +EXPORT_SYMBOL_GPL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xad8f6d22 omapdss_of_find_source_for_first_ep +EXPORT_SYMBOL_GPL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xaede0d7d omapdss_of_get_next_endpoint +EXPORT_SYMBOL_GPL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xec827cc4 omapdss_of_get_next_port +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x51b94b51 sis_malloc_new +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0xc25ebb91 sis_free_new +EXPORT_SYMBOL_GPL drivers/w1/wire 0x33046ebf w1_reset_select_slave +EXPORT_SYMBOL_GPL drivers/w1/wire 0x3444a221 w1_reset_bus EXPORT_SYMBOL_GPL drivers/w1/wire 0x63757e92 w1_calc_crc8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0x65a61f25 w1_write_8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0x89f9b214 w1_reset_select_slave -EXPORT_SYMBOL_GPL drivers/w1/wire 0xc92e5235 w1_read_block -EXPORT_SYMBOL_GPL drivers/w1/wire 0xc9d93987 w1_triplet -EXPORT_SYMBOL_GPL drivers/w1/wire 0xdc45a083 w1_next_pullup -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x26a613b7 dlm_posix_lock +EXPORT_SYMBOL_GPL drivers/w1/wire 0x7c820e19 w1_write_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x9b4aa7a3 w1_next_pullup +EXPORT_SYMBOL_GPL drivers/w1/wire 0x9b7b4106 w1_triplet +EXPORT_SYMBOL_GPL drivers/w1/wire 0xb4b37e16 w1_reset_resume_command +EXPORT_SYMBOL_GPL drivers/w1/wire 0xb9df695c w1_touch_bit +EXPORT_SYMBOL_GPL drivers/w1/wire 0xcfb91cb9 w1_read_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0xd116dc4a w1_write_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0xd162139a w1_touch_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0xd5f503f7 w1_read_block +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x3d68afc0 dlm_posix_get EXPORT_SYMBOL_GPL fs/dlm/dlm 0x4b62826c dlm_unlock EXPORT_SYMBOL_GPL fs/dlm/dlm 0x647d6170 dlm_lock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x8047eb4b dlm_posix_get -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x8ba3d9ef dlm_posix_unlock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xada45018 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 0xf0b3cc2c dlm_posix_unlock EXPORT_SYMBOL_GPL fs/fscache/fscache 0x092cf98e fscache_object_sleep_till_congested -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x1cfb41fc nlmclnt_done -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x3e55f9a4 lockd_up -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x3f277ec0 nlmsvc_unlock_all_by_sb -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x4e07ff1a lockd_down +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x068d7b7b lockd_up +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77080450 nlmclnt_done EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77e35ccc nlmsvc_unlock_all_by_ip -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x8d8eb4c6 nlmsvc_ops -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xa69da53d nlmclnt_init -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xe98e4801 nlmclnt_proc +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x8e9a8e8d nlmsvc_unlock_all_by_sb +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x92a740fb nlmclnt_proc +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xb162e17b nlmclnt_init +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xc655f374 nlmsvc_ops +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xe42cafee lockd_down +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x018c94ba nfs_symlink EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0294c6a2 nfs_callback_nr_threads -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x04aac730 nfs_release_request -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x07be3d6a nfs_set_cache_invalid -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x081f679e nfs_link -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0ac563db nfs_put_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0c34a305 put_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0528850a nfs_refresh_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x05ddffc2 nfs_rename +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x073add2b nfs_sync_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0748f4e6 nfs_setattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x087df59d nfs_retry_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x093610e5 nfs_server_insert_lists EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0c8f05a3 __tracepoint_nfs_xdr_bad_filehandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0d8deafb nfs_invalidate_atime -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0ee27a4e nfs_try_get_tree EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10962bc2 nfs_auth_info_match -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x119404ae nfs_clear_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1349ae0f nfs_writeback_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x158460bb nfs_pgio_header_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x15dde1eb nfs_mkdir -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x169973c7 nfs_revalidate_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x182396ea nfs_free_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1a487b2d nfs_rename -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1a8f7c37 nfs_probe_fsinfo -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1a9c5cab nfs_server_insert_lists -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1d99f0cc nfs_init_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1f01e117 nfs_instantiate -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x21bb85d3 nfs_clone_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10c4788b nfs_pgio_header_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x155af129 nfs_clear_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x15bae101 nfs_instantiate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x168128f8 nfs_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x16ada105 __traceiter_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1844fe37 nfs_pageio_reset_read_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x186c483b nfs_pageio_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x197f7751 nfs_file_fsync +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1a5ace6e nfs_lock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1a7514d2 nfs_filemap_write_and_wait_range +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1d6bac13 nfs_pgio_header_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1e66a598 nfs_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1f643fa7 nfs_statfs +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1f8cdf42 nfs_file_mmap +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x219efd78 nfs_mknod +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2221407d nfs_request_add_commit_list_locked EXPORT_SYMBOL_GPL fs/nfs/nfs 0x22d795a8 _nfs_display_fhandle_hash -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x239f28b7 nfs_setattr_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x243d206e nfs_path -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x25fa7234 nfs_commit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2492e11c nfs_release_request EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2bb73e8d nfs_server_copy_userdata +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x27b9217e unregister_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2918e202 nfs_pgio_current_mirror +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x29abddde nfs_initiate_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2b77dcf8 nfs_pageio_init_read EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2cb995bd __tracepoint_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2e9b07e5 nfs_put_lock_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2fccf46c nfs_refresh_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x301078fd nfs_check_cache_invalid -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x30af0e48 nfs_pageio_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3186d79a nfs_mark_client_ready +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2cf6a4d8 nfs_clear_verifier_delegated +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2d3cef84 nfs_pageio_reset_write_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2d61b811 nfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2f1dfef2 nfs_set_verifier +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x31222e0e nfs_wait_on_request +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x31e5f895 nfs_post_op_update_inode_force_wcc EXPORT_SYMBOL_GPL fs/nfs/nfs 0x31e7914f __tracepoint_nfs_xdr_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x33f5bcc5 nfs_commit_free -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3426a127 nfs_unlink -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x34fe7041 nfs_generic_pgio -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x353e9335 nfs4_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x351bd227 nfs_setsecurity +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3712ab37 nfs_get_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x37600366 nfs_sb_active +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3982ead0 nfs_try_get_tree EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3cdf5837 nfs_fscache_open_file +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3ed95464 nfs_wait_client_init_complete EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f2690f2 nfs_check_flags +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f337096 nfs_flock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40682ec7 nfs_file_operations EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40739385 nfs_wait_bit_killable +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40b8c98a nfs_commitdata_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40c7d30f nfs_server_remove_lists EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f2c81f nfs4_client_id_uniquifier -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x48830009 nfs_mknod -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4985b1e8 nfs_retry_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x499c7150 nfs_create_rpc_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4af0321b nfs_atomic_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x438d65ef put_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x43b26abc nfs_invalidate_atime +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4955854a nfs_may_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4bdcd3ef nfs_atomic_open EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4dfd1ff4 nfs_create -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4ed1d8ff nfs_init_server_rpcclient -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4f1b33d6 nfs_zap_acl_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x511736d9 nfs_access_zap_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4d3b6af3 nfs_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4ed3a1e0 nfs_mkdir EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x526f430d nfs_reconfigure -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5363e16b nfs_pgio_header_free -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x543c3eab __traceiter_nfs_fsync_enter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x55b5d9e8 nfs_setattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x535cd332 nfs_writeback_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x54baa052 nfs_reconfigure +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x550a9241 nfs_sb_deactive +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x55844254 nfs_alloc_server EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584b8482 nfs_inc_attr_generation_counter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x587aea9d nfs_force_lookup_revalidate -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x58a96f58 nfs_file_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x59dc641f nfs_sync_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5a32bb43 nfs_client_init_is_complete -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5ea0776c nfs4_label_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5fb05903 nfs_close_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5ff23344 nfs_submount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x60556dd3 nfs_get_lock_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x62c6b0ea alloc_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x64884992 nfs_request_add_commit_list_locked -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x65a6a2fb nfs_create_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x66e92f67 nfs_server_remove_lists -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6b1c0d32 nfs_write_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6b25c094 nfs_pgheader_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6d3d8b03 nfs_request_add_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5c46cd31 nfs_sops +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x61b400df nfs_initiate_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x694542ac nfs_client_for_each_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6dcc3b36 __traceiter_nfs_xdr_bad_filehandle EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6e81f032 __SCK__tp_func_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7019e357 nfs_statfs -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x70716659 nfs_file_mmap +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x709cea56 nfs_zap_acl_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x732b9ae7 __traceiter_nfs_fsync_exit EXPORT_SYMBOL_GPL fs/nfs/nfs 0x73dff4c0 __SCK__tp_func_nfs_xdr_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7711bbd2 nfs_permission -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x777b72a9 nfs_may_open -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7ac1fe03 nfs_post_op_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7d1c1a01 nfs_dentry_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7d9ab993 nfs_file_set_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x80e38561 nfs_generic_pg_test -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x82a8b2bf nfs_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x746666ab nfs_inode_attach_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x77448d66 nfs_put_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x79b3ff2c nfs_alloc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7a490f56 nfs_free_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7a93023f nfs_close_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7af0a56d nfs_show_stats +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7b29e99c nfs_file_set_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7cf91e87 nfs_file_llseek +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7d1a13d9 nfs_check_cache_invalid +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7d44e3bd nfs_show_options +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7e4cf3b7 nfs_init_cinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fb8098e nfs_access_zap_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x81c06237 register_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x82b77890 nfs_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x82e45891 nfs_file_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8308acf8 nfs_create_rpc_client EXPORT_SYMBOL_GPL fs/nfs/nfs 0x832e8f0b nfs_alloc_fattr EXPORT_SYMBOL_GPL fs/nfs/nfs 0x842aa210 __tracepoint_nfs_fsync_enter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x85fd32cd nfs_file_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x881f4cf1 nfs_scan_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x897ab83a nfs_do_submount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8aee6f35 nfs_fhget -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8b60043a __traceiter_nfs_xdr_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8eaaf66e nfs_sb_active -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8fd21347 nfs_wb_all -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90478e7a nfs_fscache_open_file +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x856ba474 nfs_generic_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x86586dc3 nfs_init_server_rpcclient +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x866e0799 nfs_write_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x886d29af nfs_client_init_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8b9edc50 nfs_create +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8d71a183 nfs4_label_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8eba94c1 nfs_access_add_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8fe06ada nfs_init_commit EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90a5530f nfsiod_workqueue -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9128d785 nfs_alloc_inode EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91d1fe52 max_session_slots -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x948104be nfs_clear_verifier_delegated -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x949f3c05 nfs_getattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x93c8ec28 nfs4_dentry_operations EXPORT_SYMBOL_GPL fs/nfs/nfs 0x95007f7e __SCK__tp_func_nfs_xdr_bad_filehandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x971492c6 nfs_file_llseek +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x95edb79c nfs_get_client EXPORT_SYMBOL_GPL fs/nfs/nfs 0x98b0ece8 nfs_init_timeout_values -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9a9d9fbf get_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9b15b9ec nfs_pageio_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9b5c179e unregister_nfs_version -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9c31dab1 nfs_file_release -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9df43a15 nfs_sops -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9e68009a nfs_set_verifier +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9b401795 nfs_do_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9cf10b4c nfs_drop_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9f258717 nfs_request_add_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa059a3ff __traceiter_nfs_xdr_status EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa05ca625 nfs_fattr_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa10be708 nfs_file_fsync -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa2e04a17 nfs_lock -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa3313f2c nfs_commitdata_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa6e168cd nfs_init_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8392e46 nfs_alloc_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa201324b nfs_revalidate_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa338f1b2 nfs_alloc_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa461858f nfs_pageio_resend +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e938fc get_nfs_open_context EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e9e1ae send_implementation_id -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa94f9dfb nfs_lookup +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaa62d5ed nfs_probe_fsinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaa83eeda nfs_force_lookup_revalidate EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaaa14361 nfs_dreq_bytes_left EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaafd4acc max_session_cb_slots -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xabb54d88 nfs_show_path -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xadd1cae2 nfs_show_stats -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xae313b11 nfs_free_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb10ad493 nfs_access_get_cached -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb3f4645b nfs_async_iocounter_wait -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb4c04781 nfs_symlink -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb5895b52 nfs_kill_super -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbb72a9be nfs_wait_client_init_complete -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbbfa61af nfs_request_remove_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbe8bdcfa nfs_show_devname -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbf053bed nfs_setsecurity -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc04b5868 nfs4_dentry_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc0bcfe48 __traceiter_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc2354a2c nfs_filemap_write_and_wait_range -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc2863d8d register_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xae2d7cc5 nfs_fhget +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb177c04e nfs_post_op_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb1cce3f4 nfs_pgheader_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb21132b7 nfs_show_devname +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb29471ab nfs_commit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb4f3aed5 nfs_clone_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb990bd37 nfs_mark_client_ready +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbd71a072 nfs_init_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbdf9025b nfs_async_iocounter_wait +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc0da9412 nfs_access_get_cached +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc107b7e1 nfs_create_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc245f8cd nfs_scan_commit_list EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3a2be67 nfs_net_id -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc595d860 nfs_commitdata_release -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc6b618b2 nfs_initiate_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcb561595 nfs_file_write -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcbea82a2 nfs_inode_attach_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcdbe730b nfs_post_op_update_inode_force_wcc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcec58e3c nfs_init_cinfo -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcf47bd13 nfs_show_options -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd04b00b3 nfs_drop_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd30d8ef0 nfs_access_add_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd3395916 nfs_pageio_resend +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc4908188 nfs_rmdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc6d303f8 nfs_file_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc88f709e nfs_permission +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcda32f99 nfs_free_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcfeef6e0 nfs_commit_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd050d54e nfs_lookup +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd09b14f5 nfs_wb_all EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd6752e2e nfs_access_set_mask -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd914a441 nfs_pgio_current_mirror EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdb32cf51 nfs_free_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdb42eebd nfs_alloc_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe30b4a62 nfs_client_init_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe4f29944 nfs_sb_deactive -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe8265328 nfs_pageio_reset_read_mds -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe9e0d0aa nfs_rmdir -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe9f399d8 nfs_umount_begin -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xed9ab1ed nfs_client_for_each_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf0977cdd __traceiter_nfs_xdr_bad_filehandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf547ce69 nfs_add_or_obtain -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf86b1ed6 nfs_initiate_pgio -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf921fd52 nfs_flock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdcffa02a nfs_setattr_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdf4bd9e6 nfs_kill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe3604e6e nfs_getattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe6b92fb2 nfs_request_remove_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe8e420fd nfs_client_init_is_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe906776f alloc_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xea6a7cd5 nfs_umount_begin +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf1e3008a nfs_unlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf55e3c0d nfs_file_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf6686f65 nfs_add_or_obtain +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf87eca37 nfs_commitdata_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf89868c8 nfs_show_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf966e21f nfs_set_cache_invalid EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf96f04c4 __SCK__tp_func_nfs_fsync_enter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf9c3cf02 nfs_wait_on_request +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc0cd4a6 nfs_link EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc619abd _nfs_display_fhandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfca61ad6 nfs_get_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfe488893 nfs_pageio_reset_write_mds -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xffc43069 nfs_fs_type -EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0x750475cd nfs3_set_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x00b2fd5e __traceiter_ff_layout_read_error +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfd73d41b nfs_free_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfd8b3e2b nfs_server_copy_userdata +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfd994352 nfs_put_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xff65f32a nfs4_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0x65718157 nfs3_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x039449ec pnfs_generic_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x053c603d __traceiter_ff_layout_commit_error EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x07267f19 __traceiter_pnfs_mds_fallback_pg_init_read EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x08b2c467 __SCK__tp_func_ff_layout_commit_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0a82979d __traceiter_ff_layout_commit_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0d2858a9 __traceiter_pnfs_mds_fallback_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0d33b08f nfs4_decode_mp_ds_addr EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0ef4545c __tracepoint_pnfs_mds_fallback_pg_get_mirror_count -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0f6149ee nfs4_init_deviceid_node -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0fcd6b27 pnfs_register_layoutdriver EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0ff289f3 __SCK__tp_func_pnfs_mds_fallback_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x111c5c1b pnfs_generic_sync -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x12800e30 nfs4_put_deviceid_node -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1533710c __traceiter_pnfs_mds_fallback_write_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1665bbad pnfs_generic_recover_commit_reqs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x18111bd6 pnfs_report_layoutstat -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1c40f89a pnfs_generic_ds_cinfo_destroy -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x22299bee pnfs_layout_mark_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x104e589e pnfs_add_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x134b3b9b nfs41_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x15202afc pnfs_layout_mark_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1542dc38 pnfs_generic_pg_check_range +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x19cbd116 pnfs_generic_search_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1ccf9e12 nfs4_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x23386aac __traceiter_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x269e5206 __traceiter_pnfs_mds_fallback_pg_get_mirror_count +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x279f5564 nfs42_proc_layouterror EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x27ad47ea __SCK__tp_func_pnfs_mds_fallback_write_done EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2e79bf5b __tracepoint_nfs4_pnfs_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2f7a26ad pnfs_set_layoutcommit EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x30a44ac3 __SCK__tp_func_ff_layout_write_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3477cde2 nfs4_schedule_migration_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x366759b3 pnfs_ld_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3b777207 pnfs_nfs_generic_sync -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3c5b97ab pnfs_read_done_resend_to_mds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3d5ec288 nfs4_schedule_lease_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x438cd123 pnfs_generic_ds_cinfo_release_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x31b877f4 pnfs_register_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3548f392 pnfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3896fddf pnfs_generic_pg_check_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3c0530c0 nfs4_test_session_trunk +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3d448ed6 pnfs_generic_layout_insert_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x447e1de7 nfs4_mark_deviceid_unavailable EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4543e9b0 __tracepoint_pnfs_mds_fallback_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4958a11c pnfs_generic_pg_readpages -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4edcf403 pnfs_alloc_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4899414f nfs4_init_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4fea2404 pnfs_put_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x518c82e8 pnfs_write_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x51ff3e6c pnfs_set_lo_fail +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x530f8353 pnfs_layoutcommit_inode EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x533c198f __SCK__tp_func_nfs4_pnfs_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x54889406 pnfs_error_mark_layout_for_return -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x54b1c257 pnfs_free_commit_array -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x565525be nfs4_init_ds_session +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x57174de5 pnfs_generic_write_commit_done EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x579126b8 __SCK__tp_func_pnfs_mds_fallback_read_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x57b75d99 pnfs_generic_clear_request_commit EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5a4314e9 __SCK__tp_func_nfs4_pnfs_commit_ds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5acfca1a nfs42_proc_layouterror EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5ca3ae2b __tracepoint_pnfs_mds_fallback_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5d9c12e0 __traceiter_nfs4_pnfs_commit_ds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6031dc5b __traceiter_pnfs_mds_fallback_pg_get_mirror_count -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6330e930 pnfs_read_resend_pnfs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x64ede846 __traceiter_pnfs_mds_fallback_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x610dad5c __traceiter_ff_layout_read_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6164fe55 pnfs_update_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x63146ce7 nfs4_delete_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x650465f0 __traceiter_pnfs_mds_fallback_read_done EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6b21e37e __traceiter_ff_layout_write_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6e116d01 nfs4_mark_deviceid_unavailable -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6fe713e2 __traceiter_nfs4_pnfs_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x71a18516 __traceiter_pnfs_mds_fallback_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x74d54072 pnfs_generic_pg_writepages -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x756e6764 nfs4_find_or_create_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7663bf77 pnfs_unregister_layoutdriver -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7720c86b pnfs_update_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6cf9b9f1 pnfs_nfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6df82f0f nfs4_schedule_migration_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6f156e59 nfs4_schedule_lease_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x704b4a14 pnfs_generic_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x71fc003b pnfs_generic_recover_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x73c5a683 pnfs_read_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x75b52f1f nfs4_proc_getdeviceinfo +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x780c2fa7 pnfs_ld_write_done EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x785c06ab __SCK__tp_func_ff_layout_read_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x79ec033d nfs4_sequence_done EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7a4e7f4e __SCK__tp_func_pnfs_mds_fallback_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7c4d86fe __traceiter_nfs4_pnfs_commit_ds 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 0x7da0497a pnfs_layoutcommit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7dc74f78 nfs4_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7e52418d pnfs_error_mark_layout_for_return EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x80e9d17b __tracepoint_ff_layout_read_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x84c251aa pnfs_generic_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8455f9ba pnfs_generic_pg_cleanup EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8591bcdb __tracepoint_nfs4_pnfs_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x878feed7 __traceiter_pnfs_mds_fallback_read_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x888b08ce nfs4_pnfs_ds_add +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8cdae5aa nfs4_schedule_session_recovery EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8d3aad34 __tracepoint_nfs4_pnfs_commit_ds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8f2cdfb8 pnfs_generic_pg_cleanup 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 0x963c5895 nfs4_schedule_stateid_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x96688c1d nfs4_pnfs_ds_put -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x98464427 pnfs_add_commit_array -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9eeff025 nfs4_find_get_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x980fd4f6 nfs4_find_or_create_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9816e1ae pnfs_report_layoutstat +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x99c506c1 nfs4_pnfs_ds_add +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9db3ce33 __traceiter_pnfs_mds_fallback_write_pagelist EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa02df320 nfs_map_string_to_numeric -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa6a58471 pnfs_generic_pg_test -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa9ed7624 nfs4_schedule_lease_moved_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xaa794ff0 nfs_remove_bad_delegation -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb343c5f3 nfs4_pnfs_ds_connect -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb4460143 pnfs_generic_prepare_to_resend_writes +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa0ca06b3 __traceiter_pnfs_mds_fallback_read_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa61f4429 pnfs_generic_prepare_to_resend_writes +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa7e18bdd nfs_remove_bad_delegation +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb16ffce7 nfs4_pnfs_ds_connect +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb5e8786e __traceiter_pnfs_mds_fallback_write_done EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb68f2dc0 __tracepoint_ff_layout_write_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb75ec341 nfs4_setup_sequence -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb815da81 nfs4_decode_mp_ds_addr +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb77827d1 pnfs_set_layoutcommit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb827661f pnfs_generic_pg_writepages EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xba53a1ef __SCK__tp_func_pnfs_mds_fallback_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbad4ad6e pnfs_generic_pg_check_range -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbdcd6324 pnfs_set_lo_fail -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc0162029 pnfs_generic_pg_check_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbcb9ab1e pnfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbcc412bb nfs4_put_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbe7a6671 pnfs_generic_pg_readpages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbe7e6afe pnfs_read_resend_pnfs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc33b4718 pnfs_ld_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc360befe pnfs_generic_ds_cinfo_release_lseg EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc7a9d954 __SCK__tp_func_nfs4_pnfs_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc9dfa9a3 __traceiter_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcb77d1dc pnfs_generic_scan_commit_lists EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcb7ed01e __tracepoint_pnfs_mds_fallback_read_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcc439317 pnfs_generic_write_commit_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcee050f4 pnfs_ld_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd4fc36a8 pnfs_put_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd675c1c6 nfs4_delete_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd7d04663 pnfs_generic_scan_commit_lists -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd90085a8 __traceiter_pnfs_mds_fallback_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdb6b6468 pnfs_destroy_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcb86ffb0 __traceiter_pnfs_mds_fallback_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcd602472 nfs4_schedule_stateid_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd19a4a2b __traceiter_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd37750cd nfs4_init_ds_session +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd420ba9b pnfs_destroy_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd45babc5 pnfs_unregister_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd6eeaaf6 nfs4_set_rw_stateid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xda1c988a __traceiter_ff_layout_write_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdcafc079 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 0xe040788f __tracepoint_pnfs_mds_fallback_write_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe4af82a3 nfs4_proc_getdeviceinfo -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe876bccf nfs41_sequence_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xeb52c22b pnfs_generic_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xebb4508d nfs4_schedule_session_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xec00954b pnfs_generic_commit_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe1664f09 nfs4_find_get_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe32b3fc4 nfs4_mark_deviceid_available +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe34cabe2 nfs4_pnfs_ds_put +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe47f5304 pnfs_free_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe5282f36 pnfs_generic_ds_cinfo_destroy +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe841b72b nfs4_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe84ac8d0 pnfs_alloc_commit_array EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed15fb41 nfs4_print_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf0038123 pnfs_generic_layout_insert_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf5c664c4 nfs4_test_session_trunk -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf6ab7a5b nfs4_set_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf7743636 nfs4_mark_deviceid_available +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xeeac4664 pnfs_generic_commit_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 0xf9b93ce1 pnfs_generic_search_commit_reqs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfc1ddd7c pnfs_write_done_resend_to_mds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfde5bfd4 nfs4_set_rw_stateid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xff70aaad nfs4_test_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfa21c1cf nfs4_schedule_lease_moved_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfa4e2672 nfs4_test_deviceid_unavailable EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fe1e1ad locks_end_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x8857ed3f locks_start_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x994cbb41 opens_in_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xb7f533c6 locks_in_grace -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x13299d11 nfsacl_decode -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x3e1fc971 nfsacl_encode -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x73aa9d9a nfs_stream_encode_acl -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xe847de7a nfs_stream_decode_acl -EXPORT_SYMBOL_GPL fs/nfsd/nfsd 0x623c7bfd nfsd4_ssc_init_umount_work -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x0067eb63 o2nm_get_node_by_num -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x13775a1a o2hb_setup_callback +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x55a7eefa opens_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x77348236 locks_start_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x792e4b99 locks_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x7cd6ef7d nfsacl_decode +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x97898f15 nfs_stream_decode_acl +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xbca5a58b nfs_stream_encode_acl +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xe6e42fea nfsacl_encode +EXPORT_SYMBOL_GPL fs/nfsd/nfsd 0x496a73b4 nfsd4_ssc_init_umount_work EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1b89c6ee o2hb_fill_node_map EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1cb231d0 mlog_not_bits -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x26f14013 o2nm_node_get +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x21d78c47 o2hb_unregister_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x258ef8a0 o2nm_node_put EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x364f639b o2net_send_message_vec -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x36fd5016 o2nm_node_put EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x4900035b o2hb_stop_all_regions +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x4e7f5402 o2hb_register_callback EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x58c88ff2 o2hb_get_all_regions EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x687f6251 mlog_and_bits EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x6a0c3847 __mlog_printk -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x7670f05f o2hb_unregister_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x8f1ab9ef o2hb_register_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x7f828d77 o2hb_setup_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x9ba0b4ea o2nm_node_get EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa87bc9e7 o2nm_configured_node_map -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xac0fca83 o2nm_get_node_by_ip +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xae38198b 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 0xc4d99852 o2hb_check_node_heartbeating_from_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd6a0846f o2nm_get_node_by_ip EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd859ac8c o2net_fill_node_map EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf1a5611d o2net_unregister_handler_list EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf982e6db o2net_send_message EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xfe1298f3 o2net_register_handler -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x14f5bb05 dlm_register_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x4bc54798 dlm_print_one_lock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x0b6ef1ee dlm_print_one_lock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x47d164ed dlmlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x5c0194da dlmunlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x65726c74 dlm_unregister_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x716a36cc dlm_register_domain EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7a1211f8 dlm_setup_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xc2e3434a dlmlock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xc537a996 dlm_unregister_domain -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd332509b dlmunlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xc5ee885a dlm_register_eviction_cb EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd7ba575e dlm_errmsg EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd8fa57a6 dlm_unregister_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xe1d920d9 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 EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x1475f64b ocfs2_dlm_lvb_valid -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x22bd5728 ocfs2_stack_glue_unregister EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4d3af7fa ocfs2_cluster_hangup EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x76f40744 ocfs2_dlm_lvb -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x897af6f0 ocfs2_kset +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x8ae0d36f ocfs2_stack_glue_register +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x8b23ff73 ocfs2_stack_glue_unregister EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x9507547f ocfs2_cluster_disconnect EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xaf969565 ocfs2_dlm_lock EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbbc4ef97 ocfs2_stack_supports_plocks EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xc5196999 ocfs2_dlm_unlock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xc8ca2648 ocfs2_kset +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xc9e68c19 ocfs2_plock 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 0xec73a3d3 ocfs2_stack_glue_register -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xff7378e1 ocfs2_plock +EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0x092f4e89 register_pstore_device EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0x43cc3d4b pstore_blk_get_config -EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0x47f9245a register_pstore_device -EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0xe2cd272d unregister_pstore_device -EXPORT_SYMBOL_GPL fs/pstore/pstore_zone 0x43574e65 register_pstore_zone -EXPORT_SYMBOL_GPL fs/pstore/pstore_zone 0xcc29e697 unregister_pstore_zone +EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0xa0c5537a unregister_pstore_device +EXPORT_SYMBOL_GPL fs/pstore/pstore_zone 0x459d1450 register_pstore_zone +EXPORT_SYMBOL_GPL fs/pstore/pstore_zone 0xb82cbf7c 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 @@ -16693,1056 +16731,1057 @@ EXPORT_SYMBOL_GPL lib/crypto/libpoly1305 0x8c874435 poly1305_init_generic EXPORT_SYMBOL_GPL lib/crypto/libsm4 0x24e254e8 sm4_expandkey EXPORT_SYMBOL_GPL lib/crypto/libsm4 0xfa81970e sm4_crypt_block -EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x5d3563f0 notifier_err_inject_dir -EXPORT_SYMBOL_GPL lib/notifier-error-inject 0xf73b2737 notifier_err_inject_init +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x10cb61da notifier_err_inject_init +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x402d501e notifier_err_inject_dir EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x021957e1 raid6_datap_recov EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x0f8a2742 raid6_2data_recov EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0xd4cb6873 raid6_call -EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x8bbf90a3 lowpan_header_compress -EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0xfbf00537 lowpan_header_decompress -EXPORT_SYMBOL_GPL net/802/garp 0x00e59d9e garp_init_applicant -EXPORT_SYMBOL_GPL net/802/garp 0x2ca75e19 garp_request_join -EXPORT_SYMBOL_GPL net/802/garp 0x2da74dbb garp_request_leave -EXPORT_SYMBOL_GPL net/802/garp 0x2ee31d4c garp_unregister_application -EXPORT_SYMBOL_GPL net/802/garp 0x80e062c4 garp_uninit_applicant -EXPORT_SYMBOL_GPL net/802/garp 0xa50b8c5d garp_register_application -EXPORT_SYMBOL_GPL net/802/mrp 0x2d4970bc mrp_uninit_applicant -EXPORT_SYMBOL_GPL net/802/mrp 0x34bd89af mrp_init_applicant -EXPORT_SYMBOL_GPL net/802/mrp 0x6bac2d0b mrp_register_application -EXPORT_SYMBOL_GPL net/802/mrp 0xb0cdc39d mrp_request_leave -EXPORT_SYMBOL_GPL net/802/mrp 0xc14dd348 mrp_unregister_application -EXPORT_SYMBOL_GPL net/802/mrp 0xe6b0fe93 mrp_request_join -EXPORT_SYMBOL_GPL net/802/stp 0x9aec8e98 stp_proto_unregister -EXPORT_SYMBOL_GPL net/802/stp 0xb193d159 stp_proto_register -EXPORT_SYMBOL_GPL net/9p/9pnet 0x4a741036 p9_client_xattrcreate -EXPORT_SYMBOL_GPL net/9p/9pnet 0xe87a30d7 p9_client_xattrwalk +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x867b820d lowpan_header_decompress +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x905830e0 lowpan_header_compress +EXPORT_SYMBOL_GPL net/802/garp 0x082ac8d0 garp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/garp 0x13ec373c garp_unregister_application +EXPORT_SYMBOL_GPL net/802/garp 0x942ab954 garp_request_join +EXPORT_SYMBOL_GPL net/802/garp 0xc892fd82 garp_request_leave +EXPORT_SYMBOL_GPL net/802/garp 0xee589845 garp_register_application +EXPORT_SYMBOL_GPL net/802/garp 0xf446650f garp_init_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0x06bee97a mrp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0x0caf1577 mrp_register_application +EXPORT_SYMBOL_GPL net/802/mrp 0x3a8b47ce mrp_request_join +EXPORT_SYMBOL_GPL net/802/mrp 0x45a9d5f1 mrp_unregister_application +EXPORT_SYMBOL_GPL net/802/mrp 0x4f743659 mrp_init_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0xeedba92c mrp_request_leave +EXPORT_SYMBOL_GPL net/802/stp 0x12f6d190 stp_proto_register +EXPORT_SYMBOL_GPL net/802/stp 0xcc9321b7 stp_proto_unregister +EXPORT_SYMBOL_GPL net/9p/9pnet 0x2924fea9 p9_client_xattrwalk +EXPORT_SYMBOL_GPL net/9p/9pnet 0x326e5862 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 0x927600fe 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 0xd144e019 ax25_register_pid -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x160d4323 l2cap_chan_connect -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x2aaccecf l2cap_chan_list -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x36a68d5a bt_debugfs -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x542a452f l2cap_chan_send -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x54c6d706 l2cap_chan_create -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x776b73c1 l2cap_add_psm -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x8108fca3 l2cap_chan_del -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xbef6261f l2cap_chan_set_defaults -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xd209c856 l2cap_chan_put -EXPORT_SYMBOL_GPL net/bluetooth/hidp/hidp 0x68cb79c7 hidp_hid_driver -EXPORT_SYMBOL_GPL net/bridge/bridge 0x16a4d2ab br_vlan_get_pvid_rcu -EXPORT_SYMBOL_GPL net/bridge/bridge 0x1725c8ec br_multicast_list_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0x1d94c83c br_vlan_get_info -EXPORT_SYMBOL_GPL net/bridge/bridge 0x25034022 nf_br_ops -EXPORT_SYMBOL_GPL net/bridge/bridge 0x34960936 br_handle_frame_finish -EXPORT_SYMBOL_GPL net/bridge/bridge 0x350f465e br_port_flag_is_set -EXPORT_SYMBOL_GPL net/bridge/bridge 0x520f0959 br_dev_queue_push_xmit -EXPORT_SYMBOL_GPL net/bridge/bridge 0x69a7dbe1 br_get_ageing_time -EXPORT_SYMBOL_GPL net/bridge/bridge 0x6a756bc4 br_fdb_clear_offload -EXPORT_SYMBOL_GPL net/bridge/bridge 0x72f833ff br_vlan_get_pvid -EXPORT_SYMBOL_GPL net/bridge/bridge 0x7e4da2f1 br_forward -EXPORT_SYMBOL_GPL net/bridge/bridge 0x87272312 br_multicast_has_querier_anywhere -EXPORT_SYMBOL_GPL net/bridge/bridge 0x9c8a5556 br_multicast_enabled -EXPORT_SYMBOL_GPL net/bridge/bridge 0xad0fddf4 br_fdb_find_port -EXPORT_SYMBOL_GPL net/bridge/bridge 0xc7d04d77 br_multicast_has_router_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0xdafbf48b br_vlan_enabled -EXPORT_SYMBOL_GPL net/bridge/bridge 0xdff7d84d br_multicast_has_querier_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0xe498d05c br_vlan_get_info_rcu -EXPORT_SYMBOL_GPL net/bridge/bridge 0xed0e3fde br_vlan_get_proto -EXPORT_SYMBOL_GPL net/bridge/bridge 0xef43edf5 br_port_get_stp_state -EXPORT_SYMBOL_GPL net/bridge/bridge 0xf9766e9d br_forward_finish -EXPORT_SYMBOL_GPL net/bridge/bridge 0xffa027cb br_multicast_router -EXPORT_SYMBOL_GPL net/core/failover 0x10ebae13 failover_register -EXPORT_SYMBOL_GPL net/core/failover 0x7331d169 failover_slave_unregister -EXPORT_SYMBOL_GPL net/core/failover 0xa6fc705f failover_unregister -EXPORT_SYMBOL_GPL net/dccp/dccp 0x058e9aa3 dccp_insert_option -EXPORT_SYMBOL_GPL net/dccp/dccp 0x0be3c79a dccp_parse_options -EXPORT_SYMBOL_GPL net/dccp/dccp 0x0e856313 dccp_setsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0x133f3c2d dccp_feat_nn_get -EXPORT_SYMBOL_GPL net/dccp/dccp 0x1710f990 dccp_destroy_sock -EXPORT_SYMBOL_GPL net/dccp/dccp 0x17d87678 dccp_close +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x1e57c4ba l2cap_chan_connect +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x87e70a41 l2cap_chan_list +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x9ac55aff l2cap_chan_del +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x9c248720 l2cap_chan_send +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xa26faf55 l2cap_add_psm +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xbc082f70 l2cap_chan_set_defaults +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xcee0264d l2cap_chan_put +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xde09b382 bt_debugfs +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xeafe84b9 l2cap_chan_create +EXPORT_SYMBOL_GPL net/bluetooth/hidp/hidp 0xad34ecd9 hidp_hid_driver +EXPORT_SYMBOL_GPL net/bridge/bridge 0x2e0bffd9 br_vlan_get_info_rcu +EXPORT_SYMBOL_GPL net/bridge/bridge 0x4f61c561 br_forward_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0x5324e8a3 br_vlan_get_proto +EXPORT_SYMBOL_GPL net/bridge/bridge 0x622d046b br_forward +EXPORT_SYMBOL_GPL net/bridge/bridge 0x6528490b br_multicast_has_router_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x65b59bd2 br_vlan_get_pvid +EXPORT_SYMBOL_GPL net/bridge/bridge 0x6769b079 br_multicast_has_querier_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x717ab11e nf_br_ops +EXPORT_SYMBOL_GPL net/bridge/bridge 0x77eca0fe br_fdb_find_port +EXPORT_SYMBOL_GPL net/bridge/bridge 0x78dc75c6 br_multicast_router +EXPORT_SYMBOL_GPL net/bridge/bridge 0x93b1123e br_vlan_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0x978c941e br_vlan_get_info +EXPORT_SYMBOL_GPL net/bridge/bridge 0x9c9d4026 br_dev_queue_push_xmit +EXPORT_SYMBOL_GPL net/bridge/bridge 0x9cb1865d br_multicast_list_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0xb1e9a367 br_multicast_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0xb5f10ee9 br_get_ageing_time +EXPORT_SYMBOL_GPL net/bridge/bridge 0xb878bb42 br_vlan_get_pvid_rcu +EXPORT_SYMBOL_GPL net/bridge/bridge 0xbb93e955 br_fdb_clear_offload +EXPORT_SYMBOL_GPL net/bridge/bridge 0xcdebab22 br_multicast_has_querier_anywhere +EXPORT_SYMBOL_GPL net/bridge/bridge 0xd01f9b62 br_port_get_stp_state +EXPORT_SYMBOL_GPL net/bridge/bridge 0xf4a81e81 br_port_flag_is_set +EXPORT_SYMBOL_GPL net/bridge/bridge 0xff4685ed br_handle_frame_finish +EXPORT_SYMBOL_GPL net/core/failover 0x2321c4cb failover_slave_unregister +EXPORT_SYMBOL_GPL net/core/failover 0x48aedf47 failover_unregister +EXPORT_SYMBOL_GPL net/core/failover 0x5667b3d0 failover_register +EXPORT_SYMBOL_GPL net/dccp/dccp 0x08bda278 dccp_make_response +EXPORT_SYMBOL_GPL net/dccp/dccp 0x0be94615 dccp_create_openreq_child +EXPORT_SYMBOL_GPL net/dccp/dccp 0x0fddbec4 dccp_sendmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0x104cc0bb dccp_poll +EXPORT_SYMBOL_GPL net/dccp/dccp 0x11230a6b dccp_reqsk_init EXPORT_SYMBOL_GPL net/dccp/dccp 0x182ec2bf dccp_ackvec_parsed_add -EXPORT_SYMBOL_GPL net/dccp/dccp 0x1e650d53 dccp_child_process -EXPORT_SYMBOL_GPL net/dccp/dccp 0x27658b3a dccp_rcv_established -EXPORT_SYMBOL_GPL net/dccp/dccp 0x28568d5a dccp_recvmsg -EXPORT_SYMBOL_GPL net/dccp/dccp 0x39d0f0d1 dccp_ioctl +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1ac5a905 dccp_feat_nn_get +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1ece93b6 dccp_parse_options +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1ff07fc9 dccp_shutdown +EXPORT_SYMBOL_GPL net/dccp/dccp 0x3521d3a6 dccp_init_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x41288ab4 dccp_rcv_state_process EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4dce6814 dccp_done EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics -EXPORT_SYMBOL_GPL net/dccp/dccp 0x5cb0e79f dccp_init_sock -EXPORT_SYMBOL_GPL net/dccp/dccp 0x619236a2 dccp_set_state -EXPORT_SYMBOL_GPL net/dccp/dccp 0x6637e9a0 dccp_create_openreq_child -EXPORT_SYMBOL_GPL net/dccp/dccp 0x6aac4076 dccp_connect -EXPORT_SYMBOL_GPL net/dccp/dccp 0x731db102 dccp_getsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0x75af3588 dccp_check_req +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5ae3673f dccp_close +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5b56a525 dccp_child_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0x6415166a dccp_destroy_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x65bcca03 dccp_ctl_make_reset +EXPORT_SYMBOL_GPL net/dccp/dccp 0x6d4beaa8 dccp_check_req +EXPORT_SYMBOL_GPL net/dccp/dccp 0x780e6014 dccp_sync_mss +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7de71859 dccp_insert_option EXPORT_SYMBOL_GPL net/dccp/dccp 0x80993155 dccp_timestamp EXPORT_SYMBOL_GPL net/dccp/dccp 0x86be7924 dccp_packet_name EXPORT_SYMBOL_GPL net/dccp/dccp 0x8afb3cd3 dccp_death_row -EXPORT_SYMBOL_GPL net/dccp/dccp 0x8d6a1242 dccp_reqsk_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x933d74d8 dccp_set_state EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup -EXPORT_SYMBOL_GPL net/dccp/dccp 0x9899fd03 dccp_sync_mss -EXPORT_SYMBOL_GPL net/dccp/dccp 0x9cd6eeea dccp_send_ack -EXPORT_SYMBOL_GPL net/dccp/dccp 0xa0db50cc dccp_sendmsg -EXPORT_SYMBOL_GPL net/dccp/dccp 0xafea1d5d dccp_disconnect -EXPORT_SYMBOL_GPL net/dccp/dccp 0xbd12cf77 dccp_make_response -EXPORT_SYMBOL_GPL net/dccp/dccp 0xc7a5feaa dccp_rcv_state_process -EXPORT_SYMBOL_GPL net/dccp/dccp 0xc901a205 inet_dccp_listen -EXPORT_SYMBOL_GPL net/dccp/dccp 0xcdf05e58 dccp_poll +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa3d7d5cf dccp_send_sync +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa4150ddc dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa64fb851 dccp_recvmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0xbd60d071 dccp_rcv_established +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc191cb9a dccp_ioctl EXPORT_SYMBOL_GPL net/dccp/dccp 0xd75b7072 dccp_orphan_count -EXPORT_SYMBOL_GPL net/dccp/dccp 0xdd20051c dccp_send_sync -EXPORT_SYMBOL_GPL net/dccp/dccp 0xe44c70f2 dccp_done -EXPORT_SYMBOL_GPL net/dccp/dccp 0xf41290ec dccp_feat_signal_nn_change -EXPORT_SYMBOL_GPL net/dccp/dccp 0xf5561cfa dccp_ctl_make_reset +EXPORT_SYMBOL_GPL net/dccp/dccp 0xdbcb23ce inet_dccp_listen +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe6595e83 dccp_connect +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe7a83ff4 dccp_disconnect +EXPORT_SYMBOL_GPL net/dccp/dccp 0xece296f5 dccp_reqsk_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0xee543459 dccp_send_ack EXPORT_SYMBOL_GPL net/dccp/dccp 0xf55ef99b dccp_hashinfo -EXPORT_SYMBOL_GPL net/dccp/dccp 0xf82e6880 dccp_shutdown -EXPORT_SYMBOL_GPL net/dccp/dccp 0xfbbb8053 dccp_reqsk_init -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x4d09dbd3 dccp_invalid_packet -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x56dc54e8 dccp_v4_send_check -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x66cf4213 dccp_v4_do_rcv -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x82e86b52 dccp_v4_conn_request -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xc3bcd0b7 dccp_v4_request_recv_sock -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xc6e3a903 dccp_v4_connect -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x08865c51 dsa_devlink_resource_occ_get_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x0dcb7b39 dsa_devlink_param_get -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x10059407 dsa_tag_drivers_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x2295b001 dsa_port_phylink_mac_change -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x28877bdc dsa_tag_8021q_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x311d6cda dsa_switch_find -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x35dc34f7 dsa_devlink_region_create -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x36cb8b95 dsa_tag_8021q_bridge_tx_fwd_unoffload -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x3796aa93 dsa_devlink_resources_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x3a850ab4 dsa_dev_to_net_device +EXPORT_SYMBOL_GPL net/dccp/dccp 0xfa6fef9e dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0xfddbe831 dccp_feat_signal_nn_change +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x27343995 dccp_v4_do_rcv +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x2e437ca4 dccp_v4_request_recv_sock +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x8dbc5d2b dccp_v4_connect +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xa21b1455 dccp_v4_send_check +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xae2de554 dccp_invalid_packet +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xb5b24043 dccp_v4_conn_request +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x06f1cb67 dsa_devlink_param_get +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x10150777 dsa_port_from_netdev +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x15e71dce dsa_tag_8021q_bridge_tx_fwd_offload +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x2453f3cb dsa_port_get_ethtool_phy_stats +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x28949a27 dsa_8021q_rcv +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x308df433 dsa_devlink_resource_occ_get_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x3318febb dsa_tag_drivers_register EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x417d1fed dsa_8021q_rx_switch_id -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x43f809df dsa_devlink_resource_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x44d125ce dsa_unregister_switch -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x477439c6 dsa_tag_drivers_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x4b18dbd6 dsa_devlink_port_region_create -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x4f034843 dsa_enqueue_skb +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x4806fcf1 dsa_devlink_params_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x48b728ae dsa_slave_dev_check +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x4bb8ca9a dsa_8021q_xmit +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x515e52ac dsa_tag_drivers_unregister EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x5928bba7 vid_is_dsa_8021q_rxvlan -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x5cccccc0 dsa_switch_suspend -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x69590223 dsa_8021q_rcv -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x6ffb9a94 dsa_devlink_resource_occ_get_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x7090d681 dsa_port_get_phy_strings -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x737081bb dsa_switch_shutdown -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x83c28c61 dsa_port_get_ethtool_phy_stats +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x6285b18d dsa_switch_resume +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x67ef3cf9 dsa_unregister_switch +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x6e2c9c57 dsa_port_get_phy_sset_count +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x725adf34 dsa_enqueue_skb +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x77bc264f dsa_dev_to_net_device +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x8f20adcf dsa_devlink_param_set +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x94738725 dsa_port_phylink_mac_change +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x99615a22 dsa_devlink_resources_unregister EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x9e59271d dsa_8021q_rx_source_port -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xa23e78c4 dsa_tag_8021q_bridge_tx_fwd_offload -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xa8efa68b dsa_port_from_netdev -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xa95b34ac dsa_switch_resume -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xb03943e8 dsa_register_switch -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xb1476c1b dsa_8021q_rx_vid -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xbd0be709 dsa_8021q_xmit +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xa11304bb dsa_devlink_port_region_create +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xa2df6ae1 dsa_tag_8021q_bridge_tx_fwd_unoffload +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xa55b74ba dsa_switch_find +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xa85d3654 dsa_devlink_params_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xa945af42 dsa_devlink_resource_occ_get_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xaccb183e dsa_devlink_region_create +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xafcc5c59 dsa_switch_shutdown +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xb12968a2 dsa_register_switch +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xb33ac8e4 dsa_tag_8021q_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xb6ef4357 dsa_devlink_resource_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xb7f5c604 dsa_switch_suspend EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xbe3856fc dsa_8021q_bridge_tx_fwd_offload_vid EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc23e8d5f dsa_devlink_region_destroy -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc9513a1f dsa_devlink_params_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xcf350672 dsa_slave_dev_check -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xcf9f160b dsa_port_get_phy_sset_count -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xd2908289 dsa_8021q_tx_vid -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xdd153f2e dsa_devlink_params_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xe7344a74 dsa_devlink_param_set +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xcbdcf879 dsa_8021q_tx_vid +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xe14a2c7f dsa_tag_8021q_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xe238acd2 dsa_port_get_phy_strings +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xe259478f dsa_8021q_rx_vid EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf13e1803 vid_is_dsa_8021q -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf2e32a26 dsa_tag_8021q_register EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf6f3b5c8 vid_is_dsa_8021q_txvlan -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x107c44a3 ieee802154_hdr_push -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x7238542f ieee802154_hdr_peek_addrs +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x4a9ea909 ieee802154_hdr_pull EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x87e2553b ieee802154_max_payload -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xcb17df93 ieee802154_hdr_peek -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xe7f3398b ieee802154_hdr_pull -EXPORT_SYMBOL_GPL net/ife/ife 0x23a4fb37 ife_encode +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xb3a3385d ieee802154_hdr_push +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xe9c2499a ieee802154_hdr_peek +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xf4c3997b ieee802154_hdr_peek_addrs 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 0x7024cb54 ife_decode +EXPORT_SYMBOL_GPL net/ife/ife 0x82c74ad9 ife_encode +EXPORT_SYMBOL_GPL net/ife/ife 0xe75a1150 ife_decode EXPORT_SYMBOL_GPL net/ife/ife 0xe7888e98 ife_tlv_meta_encode -EXPORT_SYMBOL_GPL net/ipv4/esp4 0x0738df83 esp_output_head -EXPORT_SYMBOL_GPL net/ipv4/esp4 0x86e07b23 esp_output_tail -EXPORT_SYMBOL_GPL net/ipv4/esp4 0xc5b90818 esp_input_done2 -EXPORT_SYMBOL_GPL net/ipv4/gre 0x025bda7a gre_add_protocol -EXPORT_SYMBOL_GPL net/ipv4/gre 0xaf915a02 gre_del_protocol -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x109a5fe6 inet_diag_unregister -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x1c625ff8 inet_sk_diag_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x22705c27 inet_diag_bc_sk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x25a5644c inet_diag_find_one_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x346e172a inet_diag_msg_attrs_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x4e9aa241 inet_diag_dump_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x7678c5cf inet_diag_register -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xb88d1d78 inet_diag_dump_one_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xf3137268 inet_diag_msg_common_fill -EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0xb9433285 gretap_fb_dev_create -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x19d1bcd7 __ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x23679bbf ip_md_tunnel_xmit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x2cf60950 ip_tunnel_rcv -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x2fcce42c ip_tunnel_dellink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x34bed8ae ip_tunnel_uninit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x40458fbe ip_tunnel_changelink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x649dc11e ip_tunnel_setup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x87b6283e ip_tunnel_init_net -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x8b6d1747 ip_tunnel_encap_setup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x95f51f5a ip_tunnel_delete_nets -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x9f564639 ip_tunnel_newlink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xa86b5001 ip_tunnel_ctl -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xa8ca8a11 ip_tunnel_xmit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xa97e1f29 ip_tunnel_siocdevprivate -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xadcfefc0 ip_tunnel_init -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xdd911b62 ip_tunnel_lookup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xe18f4d06 ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0x1167a2dc arpt_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0xd15ca37c ipt_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x312874b0 nf_defrag_ipv4_enable -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0xb3fb0242 nf_defrag_ipv4_disable -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0x26a26ee3 nf_dup_ipv4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x186e3a5b nf_reject_skb_v4_unreach -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x3aec470b nf_send_reset -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x57a90790 nf_send_unreach -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xa0f10c63 nf_reject_ip_tcphdr_put -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xaeb556bc nf_reject_iphdr_put -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xb1f0383c nf_reject_ip_tcphdr_get -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xd7afb107 nf_reject_skb_v4_tcp_reset -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_socket_ipv4 0xa3497cf7 nf_sk_lookup_slow_v4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x29cb10c8 nf_tproxy_laddr4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0xc295e185 nf_tproxy_get_sock_v4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0xf825d98f nf_tproxy_handle_time_wait4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0xae7e913f nft_fib4_eval_type -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0xee5c028c nft_fib4_eval -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x2ccc3c0a tcp_vegas_state -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x622ee709 tcp_vegas_get_info -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x7ebd7369 tcp_vegas_pkts_acked -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x8aac396c tcp_vegas_cwnd_event -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xeb227f2c tcp_vegas_init -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x181d824a udp_tunnel_sock_release -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x58de5147 udp_tun_rx_dst -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x86d4d4d5 udp_tunnel_drop_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x86e1cdfe udp_tunnel_notify_add_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x871a8ea6 udp_tunnel_xmit_skb -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x8f783968 udp_tunnel_notify_del_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x9c8e6eae udp_tunnel_push_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xb6b0a10d setup_udp_tunnel_sock -EXPORT_SYMBOL_GPL net/ipv6/esp6 0x0e5a5116 esp6_input_done2 -EXPORT_SYMBOL_GPL net/ipv6/esp6 0x3e330f51 esp6_output_head -EXPORT_SYMBOL_GPL net/ipv6/esp6 0x57a64ca5 esp6_output_tail -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x4af77a26 ip6_tnl_rcv_ctl -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xd29e1c25 ip6_tnl_xmit_ctl -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xde920c78 ip6_tnl_encap_setup -EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x5b8a81ab udp_sock_create6 -EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0xf056c5ee udp_tunnel6_xmit_skb -EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0xb2146075 ip6t_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x52698afb nf_defrag_ipv6_disable -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x6bc7c315 nf_defrag_ipv6_enable -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x92258cb0 nf_ct_frag6_gather -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0x818eb34f nf_dup_ipv6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x07c352ae nf_send_unreach6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x327d4c0b nf_reject_skb_v6_unreach -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x42f5b2d3 nf_reject_skb_v6_tcp_reset -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xa10a6c99 nf_reject_ip6hdr_put -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xa4f8404b nf_send_reset6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xe0dcd61e nf_reject_ip6_tcphdr_put -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xe264bc60 nf_reject_ip6_tcphdr_get -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_socket_ipv6 0x242edd9e nf_sk_lookup_slow_v6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0xa48bbefb nf_tproxy_handle_time_wait6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0xc103d9c4 nf_tproxy_laddr6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0xcd897dd8 nf_tproxy_get_sock_v6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0x78c42908 nft_fib6_eval -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0xe10067e0 nft_fib6_eval_type -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x080c5303 l2tp_session_dec_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x0c16e1a0 l2tp_recv_common -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x287620a1 l2tp_xmit_skb -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x2f233020 l2tp_session_get_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x306e26ef l2tp_tunnel_get_session -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x3a166441 l2tp_udp_encap_recv -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x4d2a14eb l2tp_tunnel_dec_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x5033c01a l2tp_session_get -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x577355ef l2tp_tunnel_register -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x692bd471 l2tp_tunnel_get -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x762d8f18 l2tp_session_inc_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x816a8e9a l2tp_session_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x8a1757e7 l2tp_session_get_by_ifname -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xaa123844 l2tp_tunnel_inc_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xadb07b5a l2tp_sk_to_tunnel -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb5a16abc l2tp_tunnel_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd73600af l2tp_tunnel_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xe1a6bbad l2tp_session_set_header_len -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xed4fdd3b l2tp_tunnel_get_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf08e4b37 l2tp_session_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf5550b31 l2tp_session_register -EXPORT_SYMBOL_GPL net/l2tp/l2tp_ip 0x0aa8efd9 l2tp_ioctl +EXPORT_SYMBOL_GPL net/ipv4/esp4 0x6438384b esp_output_head +EXPORT_SYMBOL_GPL net/ipv4/esp4 0x8159db7c esp_output_tail +EXPORT_SYMBOL_GPL net/ipv4/esp4 0x9f3fdeaf esp_input_done2 +EXPORT_SYMBOL_GPL net/ipv4/gre 0x3c2947c8 gre_del_protocol +EXPORT_SYMBOL_GPL net/ipv4/gre 0x9c0ea0cd gre_add_protocol +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x0da72720 inet_diag_dump_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x3f5d7926 inet_diag_find_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x45ff3cc8 inet_diag_unregister +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x51d5de0d inet_diag_register +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x84e15990 inet_diag_dump_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xb18da4cd inet_diag_msg_common_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xb757c2cd inet_diag_msg_attrs_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xdabba21b inet_sk_diag_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xf1bcf09d inet_diag_bc_sk +EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0x27a9d022 gretap_fb_dev_create +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x0063b738 __ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x00dfde77 ip_md_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x066303a3 ip_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x0f08861c ip_tunnel_encap_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x251355b7 ip_tunnel_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x3214fed3 ip_tunnel_rcv +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x3bb7c709 ip_tunnel_changelink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x3e453138 ip_tunnel_init_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x3ecf35bc ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x4cb4d2b7 ip_tunnel_init +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x4ef5fe85 ip_tunnel_newlink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x6bdcdd18 ip_tunnel_delete_nets +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x79550252 ip_tunnel_uninit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x8d81cfcd ip_tunnel_ctl +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xce42c876 ip_tunnel_dellink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xf7a5389f ip_tunnel_lookup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xffac8ec7 ip_tunnel_siocdevprivate +EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0xdd12b55d arpt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0x6cc6929b ipt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x1bd478f9 nf_defrag_ipv4_disable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x5ab4fa62 nf_defrag_ipv4_enable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0x7eb3f8da nf_dup_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x0fb24867 nf_reject_ip_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x4bbd113a nf_send_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x7abc3a4c nf_send_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x9cf7e9ad nf_reject_iphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xb2576c57 nf_reject_skb_v4_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xe53d6797 nf_reject_ip_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xf512ad91 nf_reject_skb_v4_tcp_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_socket_ipv4 0x5b858be8 nf_sk_lookup_slow_v4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x1d8afb51 nf_tproxy_get_sock_v4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x9cc45a1c nf_tproxy_laddr4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0xfd60cf21 nf_tproxy_handle_time_wait4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0x125f77b1 nft_fib4_eval +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0x75ea155c nft_fib4_eval_type +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x0a0b8f27 tcp_vegas_cwnd_event +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x35995404 tcp_vegas_pkts_acked +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x3a6d2e46 tcp_vegas_init +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x541b4bcd tcp_vegas_state +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x54225234 tcp_vegas_get_info +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x226552d9 udp_tunnel_notify_del_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x229e480d udp_tunnel_notify_add_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x25b3439d setup_udp_tunnel_sock +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x3696ac2a udp_tunnel_xmit_skb +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xa4699658 udp_tunnel_push_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xc8f1b800 udp_tunnel_drop_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xf4286698 udp_tun_rx_dst +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xfc1503f0 udp_tunnel_sock_release +EXPORT_SYMBOL_GPL net/ipv6/esp6 0x3e8c6653 esp6_output_head +EXPORT_SYMBOL_GPL net/ipv6/esp6 0x4ff5ef8d esp6_input_done2 +EXPORT_SYMBOL_GPL net/ipv6/esp6 0xc6e52083 esp6_output_tail +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x032d854e ip6_tnl_encap_setup +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x17bacc6d ip6_tnl_rcv_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x820bb700 ip6_tnl_xmit_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x96970ab0 udp_sock_create6 +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0xce0bad5b udp_tunnel6_xmit_skb +EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0xbb2e0a95 ip6t_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x4c042af4 nf_defrag_ipv6_enable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xc6bd2681 nf_ct_frag6_gather +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xf9922260 nf_defrag_ipv6_disable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0x0dc38101 nf_dup_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x0b5ee4dc nf_reject_ip6_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x338a222c nf_send_unreach6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x4d6f9595 nf_reject_ip6_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x63557e1e nf_reject_ip6hdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x6a5d9a9e nf_reject_skb_v6_unreach +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x84384669 nf_send_reset6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xf23b8beb nf_reject_skb_v6_tcp_reset +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_socket_ipv6 0xdce22a81 nf_sk_lookup_slow_v6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x0335fcff nf_tproxy_get_sock_v6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x06b191a0 nf_tproxy_handle_time_wait6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x9dc6bd4a nf_tproxy_laddr6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0x393ad135 nft_fib6_eval +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0x7f82a08c nft_fib6_eval_type +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x095c293f l2tp_tunnel_inc_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x384ace9d l2tp_session_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x4ae65cd4 l2tp_udp_encap_recv +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x4bdc8b0b l2tp_session_inc_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x5e4b0e8d l2tp_tunnel_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x60dee949 l2tp_session_get +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x60fc7e78 l2tp_session_dec_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x6467f3f4 l2tp_recv_common +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x69967b79 l2tp_session_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x941c3a42 l2tp_session_set_header_len +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x9a00d693 l2tp_tunnel_get +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x9bd4cc80 l2tp_tunnel_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xa39f0e93 l2tp_sk_to_tunnel +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xc079de29 l2tp_tunnel_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd4b8731f l2tp_xmit_skb +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xdd85f587 l2tp_session_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xe55e6a75 l2tp_tunnel_register +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xe6ff6f87 l2tp_tunnel_dec_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf881dca6 l2tp_session_get_by_ifname +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xfb85e25b l2tp_tunnel_get_session +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xfe5f72c0 l2tp_session_register +EXPORT_SYMBOL_GPL net/l2tp/l2tp_ip 0x565906f1 l2tp_ioctl +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x2f625dd8 l2tp_nl_register_ops EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops -EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0xc1cb21fd l2tp_nl_register_ops -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x0c163a23 wdev_to_ieee80211_vif -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x1451d89d ieee80211_request_smps -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x2d0796fd ieee80211_vif_to_wdev -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x3b2b1dd8 ieee80211_ready_on_channel -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x450c9dda ieee80211_iterate_active_interfaces_mtx +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x0e5a687f ieee80211_find_sta_by_ifaddr +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x14fa088a ieee80211_iterate_stations_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x1f2a4219 ieee80211_calc_rx_airtime +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x4c627f40 ieee80211_iterate_active_interfaces_mtx EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x5250cf98 ieee80211_tkip_add_iv +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x53330ab0 ieee80211_iterate_active_interfaces_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x54984b32 ieee80211_iter_chan_contexts_atomic EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x59c13bed ieee80211_key_mic_failure -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x6440a263 ieee80211_resume_disconnect -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7a4722d8 ieee80211_iterate_stations_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7bc456d3 ieee80211_ave_rssi -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x81675fad ieeee80211_obss_color_collision_notify -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x8aae11a8 ieee80211_gtk_rekey_add -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x94d9e9e3 ieee80211_remain_on_channel_expired +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x5d175f23 ieee80211_gtk_rekey_add +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x638472b7 ieee80211_color_change_finish +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x72837ee7 ieee80211_update_mu_groups +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x8135d06c ieee80211_gtk_rekey_notify +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x87f131d6 ieee80211_resume_disconnect EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xa1247034 ieee80211_remove_key -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xa2346eb3 ieee80211_iter_chan_contexts_atomic EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xa4b2b77e ieee80211_key_replay -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xadd203dc ieee80211_iterate_interfaces -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xbaed6185 ieee80211_update_mu_groups -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xc2d4ccf4 ieee80211_calc_tx_airtime -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xcaa88ff1 ieee80211_color_change_finish -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xcbe7de64 ieee80211_calc_rx_airtime +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xb0da2222 ieee80211_ave_rssi +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xbd1b1dc5 ieee80211_remain_on_channel_expired +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xc0eba140 wdev_to_ieee80211_vif +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd1757e31 ieee80211_iterate_interfaces +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd500e5c3 ieee80211_vif_to_wdev EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd8e09da4 ieee80211_set_key_rx_seq -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xe7251993 ieee80211_iterate_active_interfaces_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf7b7ec14 ieee80211_find_sta_by_ifaddr -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf7c8e1b0 ieee80211_gtk_rekey_notify -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x2091743f nla_put_labels -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x28b6aab9 mpls_pkt_too_big -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x69d73292 mpls_stats_inc_outucastpkts +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xe9cbb855 ieee80211_calc_tx_airtime +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xec583700 ieeee80211_obss_color_collision_notify +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xed83a394 ieee80211_ready_on_channel +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf330cdda ieee80211_request_smps +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x012b800e mpls_stats_inc_outucastpkts +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x01fe0132 nla_put_labels EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x7670b536 nla_get_labels -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xc09c7b37 mpls_output_possible -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xc0ec618b mpls_dev_mtu -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x07522b4d ip_set_put_flags -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x0ae4f440 ip_set_elem_len -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x0c6f67b7 ip_set_get_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x22af6bcd ip_set_nfnl_put +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xbc89d768 mpls_pkt_too_big +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xc400c526 mpls_output_possible +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xc4736621 mpls_dev_mtu +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x00041bd2 ip_set_put_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x04f13956 ip_set_nfnl_put +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x0a5fdf2b ip_set_nfnl_get_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x0dbe33ac ip_set_init_comment +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x10bb2b8c ip_set_get_ip4_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x1273738f ip_set_name_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x15b9c476 ip_set_put_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x15e3d1c7 ip_set_get_ip6_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x18b7975b ip_set_type_unregister EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x22d966c6 ip_set_range_to_cidr +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x2e4c8aed ip_set_get_byname EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x3b20ea9a ip_set_test -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x5ff41e3c ip_set_type_unregister +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x5e6bd450 ip_set_type_register EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6344eaf6 ip_set_alloc -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6a4b76ec ip_set_put_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6a904d7d ip_set_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x74a70219 ip_set_del +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x68671e45 ip_set_add EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7924b6de ip_set_hostmask_map EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x81fff2d1 ip_set_netmask_map -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x95fb7d90 ip_set_type_register -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9bc87226 ip_set_nfnl_get_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x936fdf6e ip_set_test +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x99fc5bec ip_set_put_flags EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9e98722b ip_set_get_ipaddr6 -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa01145ba ip_set_get_ip6_port EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa293f8a6 ip_set_get_ipaddr4 -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xaa4ce5e6 ip_set_init_comment -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xb8cc3cb8 ip_set_get_ip4_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xc9f450fb ip_set_get_byname -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xd64a1ee2 ip_set_add -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xdedc045d ip_set_match_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xeb795350 ip_set_put_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xecc4694e ip_set_name_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x5d997e71 unregister_ip_vs_pe -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x87d066b7 ip_vs_conn_out_get_proto -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xc020652e register_ip_vs_pe -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xf6003360 ip_vs_conn_in_get_proto -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x25a5708f nf_conncount_add +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xb79a9a30 ip_set_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xb9250147 ip_set_elem_len +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xd9530e5b ip_set_del +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xe0711d6c ip_set_match_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xe6157466 ip_set_get_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x22f0fea2 unregister_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x4c937748 ip_vs_conn_out_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x7572800e register_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xd4a240d0 ip_vs_conn_in_get_proto +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x24e746ba nf_conncount_destroy EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x268a4802 nf_conncount_cache_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x4c81f9fc nf_conncount_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x72952d10 nf_conncount_gc_list +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x44c8af21 nf_conncount_count +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x81db798d nf_conncount_gc_list +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x97695fbe nf_conncount_init EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xbe03a217 nf_conncount_list_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xce1a25a6 nf_conncount_count -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xe45b468a nf_conncount_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x016a3ddb nf_confirm -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x097ad671 nf_conntrack_unregister_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0b5db615 nf_ct_kill_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xd0d1076e nf_conncount_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x00acaff4 __nf_ct_try_assign_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x09965609 nf_ct_get_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0ab10f22 nf_conntrack_hash_check_insert EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0bc00f80 nf_nat_helper_try_module_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x17f0cc0a nf_conntrack_helper_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1d88a201 nf_ct_remove_expectations -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2176b5b0 nf_ct_seqadj_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2579ae72 nf_ct_destroy_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0d12e959 nf_ct_helper_expectfn_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0d91c544 nf_conntrack_tuple_taken +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x104ac2d6 nf_conntrack_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x12711e3f nf_ct_remove_expectations +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x15bf3cd7 nf_ct_expect_related_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x192cb75b __nf_conntrack_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x23fe6d01 nf_ct_bridge_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x24991990 nf_ct_gre_keymap_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x26462976 nf_ct_expect_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x26f2c4e6 nf_ct_kill_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x27cdcb68 nf_ct_helper_log +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2820b3ab nf_conntrack_helpers_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 0x2bfe58a8 nf_conntrack_in -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2c8df370 nf_connlabels_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2deed44c nf_ct_expect_related_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x33207599 nf_conntrack_helper_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x33962271 nf_ct_port_tuple_to_nlattr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x35a6bb19 nf_connlabels_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x39b0e66c nf_conntrack_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3c8444fe nf_connlabels_replace -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x404861c0 nf_ct_unconfirmed_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x424dee6b nf_conntrack_eventmask_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x43c9b6a2 nf_ct_expect_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4679b355 nf_ct_seq_offset +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x29bb04f2 nf_ct_netns_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x29c7ba21 nf_conntrack_eventmask_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2a7a6014 nf_ct_helper_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2f8832d0 nf_ct_expect_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x34271581 nf_ct_delete +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x36055f02 nf_conntrack_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x36c52af1 __nf_conntrack_helper_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x37f0e552 nf_conntrack_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x46018e4e nf_conntrack_count +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4702634d nf_conntrack_alter_reply EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x473e385d nf_conntrack_lock -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x495131f2 nf_ct_helper_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x49eee72f nf_ct_deliver_cached_events -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4dcc50ac __nf_conntrack_confirm -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4e45425e nf_ct_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x48178442 nf_ct_netns_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x484ba73d nf_ct_extend_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4b795fe7 nf_ct_destroy_timeout EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4ea258d2 nf_conntrack_expect_lock -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x508b6e04 nf_ct_helper_expectfn_find_by_symbol -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x58bbdd34 nf_ct_iterate_cleanup_net -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5f84ec89 nf_conntrack_helpers_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6148e2bd nf_ct_remove_expect -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x616cf2cd nf_conntrack_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6224e06e nf_conntrack_hash_check_insert -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6896d600 nf_ct_bridge_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5646aa60 nf_ct_seq_offset +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x59bed47a nf_connlabels_replace +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5a75e24b nf_ct_l4proto_log_invalid +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5b6239b0 nf_conntrack_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x692a967b nf_ct_expect_put EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x693c3961 nf_ct_helper_hash -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6dce0435 nf_ct_expect_iterate_net -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6dfa0ad3 nf_ct_bridge_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6fdcbecc nf_ct_acct_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x71724f56 nf_ct_extend_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7224cdf8 nf_ct_tmpl_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x749dd748 nf_conntrack_alter_reply -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x77650e8c nf_ct_gre_keymap_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x78b053a7 __nf_ct_expect_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x80b027e9 nf_l4proto_log_invalid -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x850e6ba3 nf_nat_helper_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x881ea546 nf_conntrack_tuple_taken +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6957479b nf_ct_helper_expectfn_find_by_name +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6af59738 nf_ct_helper_expectfn_find_by_symbol +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x71ba9f4f nf_conntrack_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7bd8ac34 nf_conntrack_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7eac6a0f nf_ct_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7fc23436 nf_connlabels_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x80634c0e nf_connlabels_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x846b3203 nf_conntrack_helper_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x85ce55c3 nf_ct_set_auto_assign_helper_warned +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x878808ab nf_ct_tmpl_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x89d61c80 nf_ct_unconfirmed_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ba4d601 __nf_ct_expect_find EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8c6e11f4 nf_conntrack_locks -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8cf06b94 nf_ct_helper_log EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ffe7e89 nf_conntrack_htable_size -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x92ecf071 nf_ct_unlink_expect_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9902399b nf_ct_get_tuplepr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9c9ee848 nf_conntrack_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9f9bc95e nf_ct_delete -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa016aa2b nf_ct_helper_expectfn_find_by_name -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa2d725e0 nf_ct_seqadj_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa6664ba3 nf_ct_tcp_seqadj_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xad1246eb nf_ct_l4proto_log_invalid +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9028692a nf_ct_extend_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x90462dde nf_ct_iterate_cleanup_net +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x982ddb7d nf_nat_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x997bf9e3 nf_ct_bridge_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x99aa9287 nf_nat_helper_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9ce57aec nf_ct_timeout_find_get_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9da5a401 nf_nat_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa13d96d9 nf_conntrack_helpers_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa25bdb51 nf_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa5294566 nf_ct_helper_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa5967c0b nf_ct_expect_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xabe01a95 nf_ct_helper_expectfn_register EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xafbd6cf5 nf_ct_port_nlattr_to_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb052bd34 nf_nat_helper_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb8235e07 nf_ct_get_id -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb8ae3472 nf_ct_extend_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbac4e20e nf_ct_expect_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbc439ff9 nf_conntrack_helper_try_module_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbe453e42 nf_ct_timeout_put_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb66e9e3d nf_l4proto_log_invalid +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbfd6b489 __nf_ct_refresh_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc066ae14 nf_ct_iterate_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc108560e nf_ct_seqadj_init EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc18ac88d nf_ct_expect_hsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc2ecf5c6 nf_ct_expect_iterate_destroy EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc40f284c nf_ct_helper_hsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc962b926 nf_conntrack_helpers_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc995b9b6 nf_ct_netns_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcb5a8020 nf_conntrack_register_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcecd3148 nf_ct_timeout_find_get_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd0ad806e nf_conntrack_helper_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd14cd68a nf_ct_helper_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd1f618d5 nf_ct_set_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc79e031a nf_ct_unlink_expect_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcb3885fd nf_ct_untimeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcef4912a nf_ct_seq_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcfa43491 nf_ct_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd220f8e8 nf_conntrack_helper_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd32c5774 nf_ct_timeout_put_hook EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd505c3e0 nf_ct_port_nlattr_tuple_size -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xddd02fdc nf_ct_expect_iterate_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd6cae8ed nf_conntrack_in +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdcfc0085 nf_ct_tmpl_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xde9c36d1 nf_ct_remove_expect EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdf0aed48 nf_ct_port_nla_policy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe230c6a7 __nf_conntrack_helper_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe47b049f nf_ct_expect_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe5372452 __nf_ct_refresh_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe973ec7b nf_ct_expect_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xea32fad5 nf_ct_iterate_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xeb78d0ef nf_ct_netns_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xeb83fe0c nf_ct_helper_expectfn_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe0137e10 nf_ct_set_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe15f812c nf_ct_acct_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe2fdfd5d nf_ct_get_id +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe6fe1e75 nf_ct_unexpect_related +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xebf5fe0a nf_ct_deliver_cached_events +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xec1ec946 nf_ct_tcp_seqadj_set EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xec8beba6 nf_ct_expect_hash -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xef8d1584 nf_ct_unexpect_related -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf1858c9f nf_conntrack_count -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf2fd6315 nf_nat_helper_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf339a14d __nf_ct_try_assign_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf04c0916 nf_conntrack_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf259ef7a nf_ct_port_tuple_to_nlattr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf3041ee7 nf_ct_gre_keymap_destroy EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf574d6bc nf_ct_seq_adjust -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf5973493 nf_ct_gre_keymap_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf6170f74 nf_ct_tmpl_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfac53aa1 nf_ct_helper_expectfn_register EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfe731af8 nf_ct_invert_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xff0ea44b nf_ct_untimeout -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0x6a987667 nf_nat_amanda_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0xfa77884e nf_conntrack_broadcast_help -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0x8653039f nf_nat_ftp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x02b80075 nat_t120_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x090378c1 set_h225_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x13a2d042 set_ras_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x51badf64 nat_callforwarding_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x6799700e get_h225_addr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x6f08cfd6 nat_rtp_rtcp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x8cea652c set_sig_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x97dc61ae set_h245_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xdc799beb nat_h245_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xf81a1e2e nat_q931_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0x44bd2182 nf_nat_irc_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x01320bb8 nf_nat_pptp_hook_exp_gre -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x256b5633 nf_nat_pptp_hook_outbound -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x58d7b13d nf_nat_pptp_hook_expectfn -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x80bc6be3 nf_nat_pptp_hook_inbound -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x01dd8593 nf_nat_sip_hooks -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x37f91d4d ct_sip_parse_numerical_param -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x3dc7fcd6 ct_sip_get_header -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x921dd764 ct_sip_parse_header_uri -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xdd2be99d ct_sip_parse_request -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xf5745f5a ct_sip_get_sdp_header -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xf8ca4a32 ct_sip_parse_address_param -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0x1361bc36 nf_nat_snmp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0x78d04870 nf_nat_tftp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x17f0c508 nf_fwd_netdev_egress -EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x381ab957 nf_dup_netdev_egress -EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0xb109682c nft_fwd_dup_netdev_offload -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x01e7e8d4 flow_offload_free -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x12cc3f05 nf_flow_table_free -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x1aaab16b flow_offload_add -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x1f0f0d88 flow_offload_teardown -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x1fa4c54e nf_flow_rule_route_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x37efe1e3 nf_flow_table_offload_setup -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x3c401166 flow_offload_route_init -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x44aa5420 nf_flow_table_cleanup -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x51e424a0 nf_flow_rule_route_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x53ae5c66 nf_flow_offload_ip_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x73f1a3da flow_offload_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x7694b757 nf_flow_snat_port -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xd484c37c nf_flow_table_init -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xd99a3542 nf_flow_dnat_port -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xda0c4cd3 nf_flow_offload_ipv6_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xe67132ee flow_offload_refresh -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xff46ab74 flow_offload_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x0a0a5592 nf_nat_ipv4_register_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x194e752d nf_nat_icmp_reply_translation -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x1ae4c3b0 nf_nat_packet -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x2359cd74 nf_nat_inet_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfedeef37 nf_ct_expect_iterate_net +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0x15fcfa20 nf_nat_amanda_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0x4ed51879 nf_conntrack_broadcast_help +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0x8db84b2a nf_nat_ftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x39559e91 nat_rtp_rtcp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x3e02f24b nat_t120_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x47c4d5ea nat_h245_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x9e214b7e set_ras_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x9f8ef8f2 get_h225_addr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xa616e7bd set_h225_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xad57d7cc set_h245_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xd33103bc nat_callforwarding_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xd8329847 nat_q931_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xfd9b0852 set_sig_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0x57dfaa0c nf_nat_irc_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x1ce0686b nf_nat_pptp_hook_outbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x31496bad nf_nat_pptp_hook_exp_gre +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xae37ffce nf_nat_pptp_hook_expectfn +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xbcf32c8d nf_nat_pptp_hook_inbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x1a51efad ct_sip_parse_address_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x22f1205d ct_sip_get_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x41d30fad ct_sip_parse_header_uri +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x5b310862 ct_sip_parse_numerical_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x720b6315 nf_nat_sip_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xbabc7b89 ct_sip_get_sdp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xc7cef603 ct_sip_parse_request +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0x2be919b4 nf_nat_snmp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0x0561df4a nf_nat_tftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x9a3a4843 nf_dup_netdev_egress +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0xb9ca12d5 nft_fwd_dup_netdev_offload +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0xbcbf1b48 nf_fwd_netdev_egress +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x03e36b81 flow_offload_route_init +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x0cf0c464 nf_flow_table_offload_setup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x26b63359 nf_flow_snat_port +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x3adbc0cb nf_flow_rule_route_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x404d2442 nf_flow_dnat_port +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x4b8c814d nf_flow_table_cleanup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x4bb03f2a nf_flow_rule_route_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x4e76ffd5 nf_flow_offload_ipv6_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x521f0d43 flow_offload_free +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x5f020b41 nf_flow_table_free +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x71fe4167 flow_offload_refresh +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x766dfcdb nf_flow_offload_ip_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x8bc1759a flow_offload_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xba28ddcd nf_flow_table_init +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xbf6dc4e3 flow_offload_teardown +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xdc007c22 flow_offload_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xe86043d0 flow_offload_add +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x02b3024e nf_nat_icmpv6_reply_translation +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x13e9d173 nf_nat_inet_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x25e2ff57 nf_nat_redirect_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x340ba659 nf_nat_ipv6_register_fn EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3bc17c49 nf_nat_masquerade_inet_register_notifiers -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x4dd3e076 nf_nat_inet_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x5e564626 nf_nat_masquerade_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x63d9726a nf_ct_nat_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x68e1f96e nf_nat_ipv6_register_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x7b0b8a0c nf_nat_inet_unregister_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x84ead5ec nf_nat_icmpv6_reply_translation -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x85cbd5e7 nf_nat_alloc_null_binding -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x8dfbec43 nf_nat_ipv4_unregister_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x93f5c8e0 nf_nat_redirect_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xb53ab2d2 nf_nat_masquerade_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x4b39563a nf_nat_inet_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x5f74f96b nf_nat_alloc_null_binding +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x6b98111a nf_nat_redirect_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xa7f05402 nf_nat_ipv4_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xa8cacf5e nf_nat_masquerade_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd30c522f nf_nat_packet EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd9c25654 nf_nat_masquerade_inet_unregister_notifiers -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xdb73d5d7 nf_nat_redirect_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xea92cfda nf_nat_ipv6_unregister_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x04ec5164 ipv6_synproxy_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x1034bf5b nf_synproxy_ipv4_init -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x1ce813ff nf_synproxy_ipv6_init +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xe1b0b3ff nf_nat_inet_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xe9bb4f1d nf_nat_ipv4_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xea33596f nf_nat_ipv6_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xf387be9a nf_nat_icmp_reply_translation +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xf42d127a nf_ct_nat_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xf74d7adb nf_nat_masquerade_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x04085945 nf_synproxy_ipv6_fini EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x1f099794 synproxy_init_timestamp_cookie -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x526fd4a8 synproxy_recv_client_ack -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x855c3be6 synproxy_send_client_synack -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x90e6f8a1 synproxy_recv_client_ack_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x93a66baa ipv4_synproxy_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xa903d805 synproxy_parse_options +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x247cb563 ipv6_synproxy_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x28484830 nf_synproxy_ipv6_init +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x2f5f7613 synproxy_send_client_synack +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x5bf83619 synproxy_parse_options +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x7bbf0cd9 synproxy_recv_client_ack +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x88abdafd synproxy_recv_client_ack_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xc4958a7e 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 0xe0691a92 nf_synproxy_ipv6_fini -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xe1842de7 synproxy_send_client_synack_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xecb5b636 nf_synproxy_ipv4_fini +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xcea3d56e nf_synproxy_ipv4_fini +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xe2e3c41b nf_synproxy_ipv4_init +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xf7157c49 ipv4_synproxy_hook EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x00fcb68c nft_chain_validate_hooks -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x03a2ebc1 nft_parse_register_store EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x06c6ca47 nft_meta_policy -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0b4a729a nft_meta_set_dump -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0d7e4768 nft_chain_validate -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1379ebdf nft_data_dump -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1a7e7ff1 nft_meta_set_init -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1a9fa61b nft_register_chain_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1d110a26 nft_dump_register -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x22e2ea87 nf_tables_bind_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x25e08582 __nft_release_basechain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x28e7be69 nft_meta_get_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x06f7e5a5 nft_meta_set_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0a3dc44a nft_meta_set_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0ac9427a nft_register_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x174f1f88 nft_request_module +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2184f36c nft_data_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x24d165c3 nf_tables_deactivate_flowtable +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2914661b nft_meta_get_dump EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3251d762 nf_tables_trans_destroy_flush_work -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x350c5450 nft_meta_get_init -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3cb6b731 nf_tables_deactivate_flowtable -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3db624f8 nft_set_catchall_gc -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4170c0e1 nft_request_module -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x467fcf2c nft_unregister_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x38d16240 nf_tables_destroy_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x38d36425 nf_tables_deactivate_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3d68c0b0 nft_do_chain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3db6b742 nft_set_catchall_gc +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x41339a3c nft_set_elem_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x42ac6fd1 nft_data_dump EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4aea0694 nft_chain_validate_dependency -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4ef3baec nf_tables_destroy_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x50331685 nft_meta_set_eval -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x592f2363 nft_meta_set_validate -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x605fc56e nft_meta_set_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7de78759 nft_set_catchall_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7f4322cb nft_unregister_obj -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8b8a06aa nft_register_expr -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa83428cf nft_unregister_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4b2147fd nft_set_lookup_global +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4d5c6b50 nft_meta_set_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6374546f nft_unregister_obj +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6870d976 nft_obj_notify +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x70d305fe nft_meta_get_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7428acda __nft_release_basechain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x79bf3cdf nft_unregister_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7d0052b2 nft_chain_validate +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8009de42 nft_register_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x81240411 nft_unregister_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9478aa31 nf_tables_bind_set EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa9ffc821 nft_trace_enabled -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xaaf9e826 nft_set_elem_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xac4bc683 nft_flowtable_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbad10412 nft_register_flowtable_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbc0d69cc nft_do_chain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbc6ba69c nft_unregister_flowtable_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc15d3a8a nft_register_obj -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc34a0959 nft_obj_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcf81aadb nf_tables_deactivate_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb16f744f nft_flowtable_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb4993f22 nft_meta_set_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbff6c25f nft_obj_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcff2adba nft_dump_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd90662a4 nft_register_flowtable_type EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xde57b5f5 nft_parse_u32_check +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe2867be9 nft_register_obj EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe2b8cc13 nft_parse_register_load -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe676f0d5 nft_obj_notify -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe8152c4a nft_data_init -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe92e6ebe nft_set_lookup_global -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xeb39b478 nft_meta_get_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe8e61bf8 nft_unregister_flowtable_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe9b6de3d nft_set_catchall_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xeb454e1f nft_meta_get_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xeff35557 nft_meta_set_validate +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf76e3453 nft_parse_register_store EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf7738411 nft_data_release -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x049b37f2 nfnetlink_unicast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x473e592b nfnetlink_send EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x6fc844b9 nfnetlink_set_err -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x71434f91 nfnetlink_subsys_register -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x96cb1aa3 nfnetlink_send -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x987e5c6a nfnetlink_has_listeners +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x742a8575 nfnetlink_has_listeners +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x7ff94c23 nfnetlink_set_err +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x9ed01f5e nfnetlink_broadcast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xc8536961 nfnetlink_unicast EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xe8b0e733 nfnetlink_broadcast -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xed4e3d46 nfnetlink_subsys_unregister -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x8d07b209 nfnl_acct_overquota +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdfde530b nfnetlink_subsys_unregister +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xfb4a20d6 nfnetlink_subsys_register +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x1ea61838 nfnl_acct_find_get +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x43c2a5db nfnl_acct_update +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x491c5ae8 nfnl_acct_overquota EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbecf5d14 nfnl_acct_put -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xd9b46202 nfnl_acct_update -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xe4692576 nfnl_acct_find_get +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x2ea30e2f nf_osf_find EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x35eff5e0 nf_osf_fingers -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x7dd1a5ce nf_osf_find -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0xc60043ab nf_osf_match -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x2c9a6522 nft_fib_init -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xa658c5c3 nft_fib_store_result -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xa853e267 nft_fib_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xbeef6ad5 nft_fib_validate +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x52860888 nf_osf_match +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x64c78697 nft_fib_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x832bb6ae nft_fib_store_result +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x849fe233 nft_fib_init +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xc8713698 nft_fib_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x0e750281 nft_reject_dump EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x1de558c1 nft_reject_icmpv6_code EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x6081751d nft_reject_policy -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x864a6ba4 nft_reject_init -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x89a2a830 nft_reject_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x92c842dd nft_reject_validate EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xe2c84666 nft_reject_icmp_code -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xec8e97c3 nft_reject_validate -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x0f814f49 xt_hook_ops_alloc -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x10c34ca0 xt_proto_init -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x22b10406 xt_request_find_target -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x2d5333cf xt_proto_fini -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x32c81bcd xt_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xe3a52a55 nft_reject_init +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x015e418e xt_register_template +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x0489524c xt_proto_init +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x1dfbd4b6 xt_request_find_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x286f67e7 xt_table_unlock EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3f1ef70a xt_tee_enabled -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x4ea6ae43 xt_target_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5eb19a44 xt_match_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5f72d942 xt_replace_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x665f10b3 xt_register_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x703af08c xt_check_target -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x712e5778 xt_unregister_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x401ce308 xt_unregister_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x4ee1fb1f xt_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5bbccd74 xt_request_find_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 0x86610bce xt_request_find_match -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x87cfd4ae xt_unregister_template -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x8934f946 xt_check_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x83fc4f8b xt_replace_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x8a84f5be xt_match_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x8b03d1b7 xt_unregister_template +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x8b2e13dd xt_hook_ops_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x941ba9d2 xt_request_find_table_lock EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9c995c69 xt_percpu_counter_alloc -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9f60b22e xt_register_template +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9e2d81eb xt_proto_fini +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa47abe1f xt_check_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbe794453 xt_register_table EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbfacb837 xt_percpu_counter_free -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xcf022794 xt_request_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xca92871b xt_target_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd1fa727b xt_check_target EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd9bb821b xt_copy_counters EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xddf68fc6 xt_find_revision -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xf4b4be34 xt_table_unlock -EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x09308f00 xt_rateest_put -EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x6eb08cca xt_rateest_lookup -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x1c1aa23f nci_spi_read -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xa9c2e92f nci_spi_allocate_spi -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xc930137a nci_spi_send -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x06139ccd nci_uart_register -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x42565518 nci_uart_unregister -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x63293dcd nci_uart_set_config -EXPORT_SYMBOL_GPL net/nsh/nsh 0x6e490bf7 nsh_pop -EXPORT_SYMBOL_GPL net/nsh/nsh 0xbf582166 nsh_push -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x32c8f781 ovs_netdev_link -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x5d34d638 ovs_vport_ops_unregister -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x9d0d02cc ovs_vport_alloc -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x9ee30398 ovs_netdev_tunnel_destroy -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xb7a4fc34 __ovs_vport_ops_register -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xf04d2e06 ovs_vport_free -EXPORT_SYMBOL_GPL net/psample/psample 0xac91f810 psample_group_get -EXPORT_SYMBOL_GPL net/psample/psample 0xc1385179 psample_group_put -EXPORT_SYMBOL_GPL net/psample/psample 0xcd3122af psample_group_take -EXPORT_SYMBOL_GPL net/psample/psample 0xcdaf8b9b psample_sample_packet +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x807f8cfa xt_rateest_lookup +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x92cdb248 xt_rateest_put +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x08eed3c3 nci_spi_send +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xc73da851 nci_spi_allocate_spi +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xce1b559f nci_spi_read +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x0d46f3a8 nci_uart_unregister +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x84176a92 nci_uart_set_config +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xd5c6649a nci_uart_register +EXPORT_SYMBOL_GPL net/nsh/nsh 0x07ea2a55 nsh_push +EXPORT_SYMBOL_GPL net/nsh/nsh 0xa16011fc nsh_pop +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x37a0f37c ovs_vport_ops_unregister +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x3a0ce5b8 __ovs_vport_ops_register +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x57f6a847 ovs_netdev_tunnel_destroy +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x68e95283 ovs_vport_alloc +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xb5ccf64c ovs_netdev_link +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xfaa39725 ovs_vport_free +EXPORT_SYMBOL_GPL net/psample/psample 0x54d00ea5 psample_group_put +EXPORT_SYMBOL_GPL net/psample/psample 0x71e200bb psample_group_get +EXPORT_SYMBOL_GPL net/psample/psample 0xa0bf4428 psample_sample_packet +EXPORT_SYMBOL_GPL net/psample/psample 0xfe2bd4f9 psample_group_take EXPORT_SYMBOL_GPL net/qrtr/ns 0x8d25501f qrtr_ns_remove EXPORT_SYMBOL_GPL net/qrtr/ns 0xa47e91ba qrtr_ns_init -EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x388047ee qrtr_endpoint_post -EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x6682c55c qrtr_endpoint_unregister -EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x9acc2cc9 qrtr_endpoint_register +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x7a0f6069 qrtr_endpoint_post +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0xaf83588a qrtr_endpoint_register +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0xc89168a4 qrtr_endpoint_unregister EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq -EXPORT_SYMBOL_GPL net/rds/rds 0x0284b68a rds_conn_path_connect_if_down -EXPORT_SYMBOL_GPL net/rds/rds 0x0a023e00 rds_trans_register -EXPORT_SYMBOL_GPL net/rds/rds 0x136da5bb rds_recv_incoming -EXPORT_SYMBOL_GPL net/rds/rds 0x165eb114 rds_trans_unregister +EXPORT_SYMBOL_GPL net/rds/rds 0x07c658f0 rds_trans_unregister +EXPORT_SYMBOL_GPL net/rds/rds 0x18a0ce82 rds_message_put +EXPORT_SYMBOL_GPL net/rds/rds 0x1c9466a0 rds_conn_destroy EXPORT_SYMBOL_GPL net/rds/rds 0x1d3ecf6a rds_cong_map_updated +EXPORT_SYMBOL_GPL net/rds/rds 0x20e30cb9 rds_connect_path_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x2a9c167d rds_atomic_send_complete EXPORT_SYMBOL_GPL net/rds/rds 0x2b0d543c rds_message_add_extension -EXPORT_SYMBOL_GPL net/rds/rds 0x3317b99e rds_for_each_conn_info -EXPORT_SYMBOL_GPL net/rds/rds 0x33ea12c2 rds_info_deregister_func EXPORT_SYMBOL_GPL net/rds/rds 0x36087aa4 rds_stats -EXPORT_SYMBOL_GPL net/rds/rds 0x3e5039ea rds_send_ping -EXPORT_SYMBOL_GPL net/rds/rds 0x41e9c5e5 rds_atomic_send_complete EXPORT_SYMBOL_GPL net/rds/rds 0x45a4781e rds_addr_cmp +EXPORT_SYMBOL_GPL net/rds/rds 0x47bd5147 rds_message_unmapped +EXPORT_SYMBOL_GPL net/rds/rds 0x50169027 rds_send_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0x503e2a65 rds_inc_put +EXPORT_SYMBOL_GPL net/rds/rds 0x513c03b2 rds_conn_drop EXPORT_SYMBOL_GPL net/rds/rds 0x582fe5cf rds_message_add_rdma_dest_extension EXPORT_SYMBOL_GPL net/rds/rds 0x585f567b rds_message_populate_header -EXPORT_SYMBOL_GPL net/rds/rds 0x59c2b719 rds_send_drop_acked -EXPORT_SYMBOL_GPL net/rds/rds 0x5aca7255 rds_conn_destroy -EXPORT_SYMBOL_GPL net/rds/rds 0x63054db0 rds_inc_init -EXPORT_SYMBOL_GPL net/rds/rds 0x6dc56f3c rds_conn_create -EXPORT_SYMBOL_GPL net/rds/rds 0x755e36a6 rds_info_register_func -EXPORT_SYMBOL_GPL net/rds/rds 0x79a942a4 rds_conn_drop +EXPORT_SYMBOL_GPL net/rds/rds 0x5aa32aa9 rds_inc_path_init +EXPORT_SYMBOL_GPL net/rds/rds 0x5d909535 rds_trans_register +EXPORT_SYMBOL_GPL net/rds/rds 0x5df55175 rds_conn_create_outgoing +EXPORT_SYMBOL_GPL net/rds/rds 0x5e66deb6 rds_conn_path_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0x5f534d1e rds_recv_incoming +EXPORT_SYMBOL_GPL net/rds/rds 0x62133ed0 rds_info_register_func +EXPORT_SYMBOL_GPL net/rds/rds 0x6673c19c rds_send_path_reset +EXPORT_SYMBOL_GPL net/rds/rds 0x733824c3 rds_rdma_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x76a8df7d rds_send_ping EXPORT_SYMBOL_GPL net/rds/rds 0x7b399e66 rds_page_remainder_alloc -EXPORT_SYMBOL_GPL net/rds/rds 0x860b7044 rds_rdma_send_complete -EXPORT_SYMBOL_GPL net/rds/rds 0x86291a6b rds_conn_path_drop -EXPORT_SYMBOL_GPL net/rds/rds 0x88abdb1c rds_conn_connect_if_down -EXPORT_SYMBOL_GPL net/rds/rds 0x88f95d74 rds_send_xmit -EXPORT_SYMBOL_GPL net/rds/rds 0x8f63e989 rds_send_path_reset -EXPORT_SYMBOL_GPL net/rds/rds 0xa177a669 rds_message_addref -EXPORT_SYMBOL_GPL net/rds/rds 0xadad558b rds_inc_put -EXPORT_SYMBOL_GPL net/rds/rds 0xb6b627f7 rds_send_path_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0x81468565 rds_conn_path_drop +EXPORT_SYMBOL_GPL net/rds/rds 0x9a014c69 rds_connect_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xa3001e0e rds_info_deregister_func +EXPORT_SYMBOL_GPL net/rds/rds 0xa3681026 rds_for_each_conn_info +EXPORT_SYMBOL_GPL net/rds/rds 0xbfeb68a5 rds_conn_create EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy -EXPORT_SYMBOL_GPL net/rds/rds 0xdae819ef rds_connect_path_complete -EXPORT_SYMBOL_GPL net/rds/rds 0xea754166 rds_message_put -EXPORT_SYMBOL_GPL net/rds/rds 0xeb631c8c rds_message_unmapped -EXPORT_SYMBOL_GPL net/rds/rds 0xf14d28c2 rds_inc_path_init -EXPORT_SYMBOL_GPL net/rds/rds 0xf17253ec rds_conn_create_outgoing +EXPORT_SYMBOL_GPL net/rds/rds 0xc3d00862 rds_message_addref +EXPORT_SYMBOL_GPL net/rds/rds 0xd2c4e92a rds_send_path_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0xe54833e1 rds_send_xmit +EXPORT_SYMBOL_GPL net/rds/rds 0xed479234 rds_conn_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0xf09243fa rds_inc_init EXPORT_SYMBOL_GPL net/rds/rds 0xf4c257e8 rds_stats_info_copy -EXPORT_SYMBOL_GPL net/rds/rds 0xfb5e609a rds_connect_complete -EXPORT_SYMBOL_GPL net/sched/sch_pie 0x115c54cd pie_process_dequeue +EXPORT_SYMBOL_GPL net/sched/sch_pie 0x4e54b0cf pie_process_dequeue EXPORT_SYMBOL_GPL net/sched/sch_pie 0x6ce9b467 pie_calculate_probability -EXPORT_SYMBOL_GPL net/sched/sch_pie 0x873b7f80 pie_drop_early +EXPORT_SYMBOL_GPL net/sched/sch_pie 0xdb025bdb pie_drop_early EXPORT_SYMBOL_GPL net/sched/sch_taprio 0x7db7d103 taprio_offload_free EXPORT_SYMBOL_GPL net/sched/sch_taprio 0xd765a904 taprio_offload_get -EXPORT_SYMBOL_GPL net/sctp/sctp 0x02641a2b sctp_transport_lookup_process -EXPORT_SYMBOL_GPL net/sctp/sctp 0x0a32067a sctp_get_sctp_info -EXPORT_SYMBOL_GPL net/sctp/sctp 0x46100682 sctp_transport_traverse_process -EXPORT_SYMBOL_GPL net/sctp/sctp 0x5091358d sctp_for_each_endpoint -EXPORT_SYMBOL_GPL net/smc/smc 0x1e0e28f4 smc_proto -EXPORT_SYMBOL_GPL net/smc/smc 0x206dda7a smc_hash_sk -EXPORT_SYMBOL_GPL net/smc/smc 0x2377b4f0 smcd_handle_irq -EXPORT_SYMBOL_GPL net/smc/smc 0x2998171b smcd_handle_event -EXPORT_SYMBOL_GPL net/smc/smc 0x2c571532 smcd_alloc_dev -EXPORT_SYMBOL_GPL net/smc/smc 0x4f3a42bf smc_proto6 -EXPORT_SYMBOL_GPL net/smc/smc 0xb71373ee smc_unhash_sk -EXPORT_SYMBOL_GPL net/smc/smc 0xbbc89a2a smcd_register_dev -EXPORT_SYMBOL_GPL net/smc/smc 0xeca62fc1 smcd_unregister_dev -EXPORT_SYMBOL_GPL net/smc/smc 0xf77029a0 smcd_free_dev -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x07788163 gss_mech_unregister +EXPORT_SYMBOL_GPL net/sctp/sctp 0x3d9e4bb6 sctp_for_each_endpoint +EXPORT_SYMBOL_GPL net/sctp/sctp 0xbd3048cf sctp_get_sctp_info +EXPORT_SYMBOL_GPL net/sctp/sctp 0xfd15aa99 sctp_transport_traverse_process +EXPORT_SYMBOL_GPL net/sctp/sctp 0xfe616f61 sctp_transport_lookup_process +EXPORT_SYMBOL_GPL net/smc/smc 0x21e8c02b smcd_unregister_dev +EXPORT_SYMBOL_GPL net/smc/smc 0x2eeec97f smcd_register_dev +EXPORT_SYMBOL_GPL net/smc/smc 0x3d59315e smc_proto +EXPORT_SYMBOL_GPL net/smc/smc 0x6dbe26fa smc_unhash_sk +EXPORT_SYMBOL_GPL net/smc/smc 0x791a5f50 smc_proto6 +EXPORT_SYMBOL_GPL net/smc/smc 0xa0ce008f smc_hash_sk +EXPORT_SYMBOL_GPL net/smc/smc 0xa8143995 smcd_handle_event +EXPORT_SYMBOL_GPL net/smc/smc 0xa8ddfd7b smcd_alloc_dev +EXPORT_SYMBOL_GPL net/smc/smc 0xb5af1a42 smcd_handle_irq +EXPORT_SYMBOL_GPL net/smc/smc 0xdbbeb42b smcd_free_dev +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x202cab98 gss_mech_unregister +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x244a68a1 svcauth_gss_register_pseudoflavor EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x38d3dce5 g_make_token_header EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x482ac5a4 g_token_size -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x4e5a7568 gss_mech_register -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x67cfaf03 svcauth_gss_register_pseudoflavor -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x698b5d16 svcauth_gss_flavor EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xd7673035 g_verify_token_header -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x03ab3a54 rpcauth_unwrap_resp_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x03f83b3b put_rpccred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x03fdb436 svc_fill_symlink_pathname -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x04eca8f3 svc_xprt_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xda97f0cb gss_mech_register +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xfc0f4a2d svcauth_gss_flavor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0053e58a rpc_task_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x005d89bb svc_addsock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x01faa6ba rpc_count_iostats_metrics +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0226847c svc_rqst_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0332bf86 rpcauth_create EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05e807a9 xdr_encode_string EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x065994f1 xdr_encode_opaque_fixed -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x06fe1264 rpc_malloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x07651e1b xprt_wake_pending_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x082e4d9e svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x07cb9ac4 svc_recv +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x09a81c40 xprt_complete_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0a643df7 svc_shutdown_net 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 0x0d249a82 gssd_running -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0d7912cb rpc_clnt_test_and_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0d9cedc2 svc_rpcb_setup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0da1e92c svc_generic_rpcbind_set -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0e2a5546 xdr_init_decode_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0e36cba5 xprt_disconnect_done -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0edc8867 xprt_release_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f4f935e svc_rqst_replace_page -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0feb50cb svc_xprt_do_enqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x118156a4 rpc_clnt_iterate_for_each_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1425360b xprt_setup_backchannel -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x16e8aa64 xdr_inline_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0cf96119 rpc_call_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0d4c3eb0 sunrpc_cache_update +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0d857643 xdr_inline_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0dd15c5c rpc_set_connect_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x13288e24 rpc_switch_client_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x14986bb5 __rpc_wait_for_completion_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x152c024b rpc_wake_up_queued_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x15a14928 svc_process EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1807e7d1 rpc_init_priority_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x19996898 xprt_pin_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1ae47a6d xdr_read_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1af39066 xprt_wake_up_backlog -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1c2a3858 rpc_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1d8b4ad7 rpc_get_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1812d946 xprt_unregister_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1827eeb6 rpc_shutdown_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1866ca65 xdr_shift_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1ab03a6b sunrpc_cache_pipe_upcall EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e119a79 rpcauth_get_pseudoflavor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1ee83dd5 svc_fill_write_vector -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x227656d0 rpc_num_bc_slots -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x23195c08 rpcauth_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x23b4865d rpc_call_start -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x24838d27 rpc_sleep_on_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x258ed72c rpc_alloc_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2653dc48 xdr_encode_array2 -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x267581cf svc_recv -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x26ba7cd3 svc_exit_thread -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x28103961 rpc_peeraddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e9dd4f2 svc_rqst_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x20886e7b unix_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x218a514b cache_seq_next_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2255a26d xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x23042a5c svcauth_unix_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2396b29c svc_xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x23fa8860 rpc_clnt_xprt_switch_has_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2558c3a8 xprt_add_backlog +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x279df5bc svcauth_unix_set_client EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x295ed753 xprt_reconnect_delay -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x295f3541 xprt_adjust_cwnd -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x29eb54e4 xprt_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2a843d33 xprt_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2c6597e1 rpc_clnt_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x293da178 rpc_peeraddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2997c486 rpcauth_init_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2a2081c6 svc_generic_init_request +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2a42bfcc xdr_buf_subsegment EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f8ebbe0 rpc_ntop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x30253cbc svc_create_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x305128a2 xprt_free_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3051dd7b auth_domain_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31475e16 rpc_restart_call_prepare EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x32c74378 sunrpc_init_cache_detail -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x335096ad rpcauth_init_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x33997b21 rpcauth_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x35134004 rpc_restart_call_prepare -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3774d237 rpc_shutdown_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x32f899e2 xdr_page_pos EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3969e6a4 xprt_release_xprt_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3a776942 svc_rqst_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3bc20c01 rpc_clone_client_set_auth -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3d550e9c svc_rpcb_cleanup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3a0d9db2 rpc_put_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3a50f974 xdr_init_decode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3a6758d7 xprt_lookup_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3c70b2a8 _copy_from_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3dd99027 svc_set_num_threads +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3eb0206d rpc_clnt_xprt_switch_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f77db8a rpc_call_start EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f9a2b0b rpcauth_get_gssinfo -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x419661ca xdr_buf_trim -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x427a23e9 svc_set_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x42cce941 rpcauth_destroy_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3fc79e77 svc_exit_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x414214b3 rpc_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x435ba65f xdr_align_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x43a00eb8 xprt_reconnect_backoff +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x43ef0988 xprt_reconnect_delay EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x453efa54 svc_pool_map -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x460da43c svc_set_num_threads_sync -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x466b5638 svc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x471544d5 rpc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x48787069 sunrpc_cache_unhash -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4954a3be auth_domain_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x458ddf21 svc_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x45dfa8e4 sunrpc_init_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4735bfd1 xdr_init_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4750a141 xprt_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x47984371 xdr_encode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x47d95576 xprt_adjust_cwnd +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4881f6fe rpc_uaddr2sockaddr EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4afedab1 xprtiod_workqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4b544e2b svc_drop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4c41bf75 svc_auth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4b1b0cf4 rpc_sleep_on_priority_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4c2d7645 rpc_net_ns +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4c6e5c3c rpc_alloc_iostats EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4dac77f0 xdr_encode_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4db5f09e svc_seq_show +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4dbe0e1a rpcb_getport_async EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e8f6ca7 sunrpc_net_id -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4eefc4c8 rpc_call_sync -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x50ca5957 xprt_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x51ef3edb xdr_stream_subsegment -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x51f83fa0 svc_set_num_threads -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5263a73d svc_unreg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e979341 rpc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x508f75ee rpc_force_rebind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x509a7238 rpc_clnt_setup_test_and_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5136716b rpc_init_pipe_dir_object EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5430fb08 rpc_call_null -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5576ebcd rpc_count_iostats_metrics -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x573e0ab4 xprt_wait_for_reply_request_def -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x58bd342b xdr_commit_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5356f6f7 svc_rpcb_setup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53599f84 xdr_stream_decode_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53ecb8b3 rpcauth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5460cdc2 svc_rqst_replace_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x546e24fb rpc_put_task_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x55c04c9b sunrpc_cache_lookup_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5775cdcc rpc_pipe_generic_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x57bb427e rpc_sleep_on +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x57df24d5 rpc_prepare_reply_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x59fdd1d1 rpc_remove_pipe_dir_object EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a45ba31 svc_auth_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5c037d3e xdr_process_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5cce4150 svc_encode_result_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5d08a0c6 rpc_sleep_on -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5d232a56 xdr_stream_decode_opaque_dup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5daab727 rpc_prepare_reply_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5e19db2b xprt_unpin_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5e9133d5 svcauth_unix_purge -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5ee24adc rpc_d_lookup_sb -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5f5366b4 rpcauth_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x620f7541 xdr_buf_from_iov -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6223c402 rpc_max_bc_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6342a7e1 svc_rqst_alloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x64f6298a xprt_register_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x651f3f90 xdr_stream_pos -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x651f9a8e rpc_put_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x65b950dd cache_check -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x67f5714a cache_seq_next_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x688d8630 sunrpc_cache_pipe_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6a117c4e svc_age_temp_xprts_now -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6a472972 rpc_wake_up_next -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6d0feeee rpc_run_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6e0bb795 rpc_killall_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6ecd1a94 rpc_task_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71186d4d rpc_mkpipe_dentry -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7189b0c7 xdr_decode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5c0eda10 xdr_inline_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5d54ff62 svc_print_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5e226dc3 svc_generic_rpcbind_set +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5ff7e0ad rpc_get_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x601e9390 csum_partial_copy_to_xdr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x62c7ec3d xprt_request_get_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x634bc080 rpc_wake_up_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x63bc77ef svc_xprt_names +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6534474e svc_auth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6561493e rpcauth_lookupcred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x65aaa2be xdr_encode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x65b8db12 rpcauth_lookup_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x667b4aaa read_bytes_from_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x67148319 cache_register_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x678bd158 sunrpc_cache_register_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6900f0da rpc_max_bc_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x69cb7d0d rpc_add_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6bee232d svc_fill_symlink_pathname +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6c91ed64 xprt_wake_up_backlog +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6dc0e3cd xdr_buf_trim +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6e6c4dbc rpcauth_stringify_acceptor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6ebb9834 rpc_clnt_iterate_for_each_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x714c477f rpc_queue_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71946bd6 rpc_clnt_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71d27f05 rpc_localaddr EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fa908a cache_flush -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x73047028 rpc_peeraddr2str -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x73cfb9d3 rpc_queue_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x741a9234 rpc_destroy_pipe_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x74273cbb bc_svc_process -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x74434f38 xdr_page_pos -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x749681b3 sunrpc_cache_register_pipefs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x79364016 rpc_unlink -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7aaa6a48 xprt_add_backlog -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7b179e44 svc_addsock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7c55d0bf xdr_init_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x72727e7b bc_svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x731f54c4 svc_xprt_received +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x76debdd0 svc_authenticate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7a3ae7de rpc_unlink +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7ab46300 rpc_clnt_xprt_switch_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7b10d472 rpc_mkpipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7b611815 svc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7cbae2c9 xprt_disconnect_done +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7d89c566 rpc_malloc EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8040f9cb xprt_lock_connect -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8067b384 rpc_switch_client_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x811f9f75 svc_reserve -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x838c313d xdr_write_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x86a455d4 rpcauth_stringify_acceptor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x88423aea rpc_mkpipe_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x88544df7 svc_find_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x88710000 svc_xprt_received -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8aba7f10 xprt_request_get_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8acaddce rpc_clnt_swap_deactivate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8c5a2f27 rpc_clnt_xprt_switch_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8d238770 rpc_clnt_swap_activate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8f38498d rpc_wake_up_queued_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8f9a40ec svc_proc_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8fe4a551 xprt_unregister_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x920d9e38 rpc_add_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7e6f6121 xprt_wait_for_reply_request_def +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7e76abd2 rpc_sleep_on_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7f141dbe svc_rpcbind_set_version +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x803820c2 rpc_killall_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80f20d3f xprt_wait_for_reply_request_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x81c1fb3d xdr_expand_hole +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8331a831 svc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x84d05a1b rpcauth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8653d9da svc_prepare_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x867c6b8d svc_create_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8692a16f svc_xprt_do_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x87b8da55 svc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8860acd5 xdr_commit_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x893d0e07 auth_domain_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8c6df5fd sunrpc_destroy_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8dc91347 xprt_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8e15b102 rpc_count_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8ecb2ef1 xdr_stream_decode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8f87c30f rpc_clnt_test_and_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8f8f3f6c xprt_register_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9074ff4b xprt_lock_connect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x914325a2 cache_destroy_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x920278c7 xprt_setup_backchannel EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9224516d rpc_wake_up -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9394dd4e cache_purge -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9520d349 xprt_unlock_connect -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x959ebae7 xprt_wait_for_buffer_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x97177bfe unix_domain_find -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9769949e xdr_decode_array2 -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x987a8d41 xdr_stream_decode_opaque -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x997be258 xprt_destroy_backchannel -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x999ad318 rpc_clnt_xprt_switch_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9a63b862 svc_xprt_init -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9a711eb0 rpc_clnt_setup_test_and_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9a73d2de rpc_call_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9aeb2fa0 cache_destroy_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9dc2b709 xprt_reserve_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9fafde5d sunrpc_destroy_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x92fc964f rpc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x94096243 svc_xprt_init +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9462a56f svc_bind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x95a42f8e cache_seq_start_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x95f263f9 svc_encode_result_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x961001f0 svc_xprt_deferred_close +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x962778b6 xprt_destroy_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98bf4513 gssd_running +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x998a7db4 rpc_sleep_on_priority +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9ca00e84 rpc_num_bc_slots +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9d3500d7 xdr_terminate_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9d566e18 rpc_clnt_show_stats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9e89f7dd xprt_force_disconnect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9eabe7c3 rpc_call_null +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa122bff8 svc_proc_register EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa13acdb8 svc_pool_map_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa1cab756 xprt_update_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa56e847c rpc_delay -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa8251ef2 rpc_sleep_on_priority -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xab75ab4b svc_shutdown_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaddb17e4 svc_print_addr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xae761825 svc_xprt_copy_addrs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaebd6eeb svc_xprt_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf0fe37d rpc_clnt_xprt_switch_has_addr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf1ca2e2 rpc_count_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf3636a4 svc_authenticate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa15a920b xdr_buf_from_iov +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa1e3304b rpcauth_wrap_req_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa1e964bb cache_unregister_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa34cb2a3 sunrpc_cache_unregister_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa5d687f7 rpc_destroy_pipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa778b734 xdr_stream_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa8ceb781 svc_reg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa93c3d10 xprt_update_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xab304b52 rpc_task_release_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xab7f44c0 xprt_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xade2e743 xdr_init_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xae0fd1fd xprt_release_rqst_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaecd3f9e rpc_mkpipe_dentry +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf31ef0f xprt_reserve_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf3f8d24 rpc_init_pipe_dir_head EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb01c21d8 rpc_proc_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb1216dd7 rpc_sleep_on_priority_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb1c4bcc9 rpc_put_sb_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb1fe297b rpc_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb205549a svc_reg_xprt_class -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb2a6f844 cache_unregister_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb2ca5c82 xprt_lookup_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xafdbd687 xprt_write_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb13f5bc9 auth_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb15a8b4c svc_seq_show +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb1d3126a xprt_pin_rqst EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb312d0c4 svc_pool_map_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb3875af0 write_bytes_to_xdr_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb4185541 svcauth_unix_set_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb41c5108 xdr_encode_word -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb43e30e6 rpc_force_rebind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb398b308 xprt_release_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb4539970 rpcauth_destroy_credcache EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb674678f svc_xprt_deferred_close -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb7d75bb2 svc_bind -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xba5c23f3 svc_prepare_thread -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbb688a2e xprt_alloc_slot -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbbc1ea7c rpc_init_pipe_dir_head -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbc30ba81 svc_rpcbind_set_version -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbc534d43 rpc_wake_up_first -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbd18af7f rpc_proc_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbd7cf35a svc_create_pooled -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbe2c03cf xdr_reserve_space_vec -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbe5e2a51 xdr_buf_subsegment -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbeb2dfad rpc_pipe_generic_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb55b50be rpc_release_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb7490d14 rpc_exit +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb78e876e rpc_find_or_alloc_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb82e420d svc_alien_sock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb956da2d cache_seq_stop_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb9f31831 xdr_stream_decode_opaque_dup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xba681e66 rpc_bind_new_program +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbaecdf15 xdr_write_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbbe036a7 rpcauth_unwrap_resp_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbc3410aa svc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbd9fc22a rpc_pton +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbee7a503 cache_check +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf1a9c04 rpc_restart_call +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf63f8ba rpc_free EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc068dd2a sunrpc_cache_pipe_upcall_timeout EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12435e3 rpc_calc_rto -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc15798dd xdr_align_data EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc169d947 rpc_destroy_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc25afa84 rpc_localaddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc27eb67b cache_seq_start_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3e99ffa svc_xprt_names -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc6356756 cache_register_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc6a1668b rpc_set_connect_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc7639bf6 rpc_clnt_show_stats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc78db7b4 xprt_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc5275c2c rpc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc5b30f90 svc_drop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc61c67a8 cache_create_net EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc9234ebb svc_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcb574983 xprt_write_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcba542e3 rpcb_getport_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcd0f1909 rpc_remove_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcd5cd43f rpc_find_or_alloc_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcded21bf rpcauth_wrap_req_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8ef9e51 rpc_run_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xca89693d xdr_read_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcbab3ca3 xprt_wait_for_buffer_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xccd7797f xprt_unlock_connect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcdf98459 xdr_enter_page EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce678a59 xdr_decode_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd09be853 rpc_exit -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd29ee04b xdr_terminate_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd2e40748 xdr_shift_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd32c9346 xprt_complete_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd371bd08 rpc_init_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd37886e5 rpc_net_ns -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd4920d2f rpc_release_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd5199e2f _copy_from_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd6d0fa0a svc_proc_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd88a8a81 auth_domain_find -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd8a21efd rpc_clone_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd8aafeae rpc_put_task_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd8f3e585 xprt_release_rqst_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xda152711 cache_create_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdb08978d cache_seq_stop_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdba9f2ad xdr_inline_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdc65ff54 xprt_wait_for_reply_request_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdca21f58 sunrpc_cache_lookup_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd17850ba xprt_unpin_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd17f9212 svc_close_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd313eec9 rpc_wake_up_first +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd41c9af2 svc_find_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd42521e6 svc_reserve +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd5a05247 xdr_reserve_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd8b49ef9 put_rpccred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd8fdd852 xdr_reserve_space_vec +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xda19b78c rpc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xda6f7583 rpc_clnt_swap_activate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdb5c61c3 svc_sock_update_bufs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdbf93d13 xdr_stream_decode_string_dup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd4f824a svc_xprt_enqueue EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd691402 xprt_find_transport_ident -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xde6ee68a rpcauth_init_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xde7a12fa xdr_reserve_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdfab141e sunrpc_cache_update -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1779056 csum_partial_copy_to_xdr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe3165a4d svc_wake_up -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe4210af6 rpcauth_lookup_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xddaa34a8 rpc_clone_client_set_auth +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xde47c181 xprt_wake_pending_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xde659ad7 xprt_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe0121d50 rpc_clone_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe172bc61 rpc_d_lookup_sb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe38c4c6c xdr_stream_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe39eada1 sunrpc_cache_unhash +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5773dbb svc_create_pooled EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe6ebdb62 xprt_free_slot -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe8f93198 svc_sock_update_bufs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe94a2f25 __rpc_wait_for_completion_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe7962914 xdr_process_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe828463e svc_unreg_xprt_class EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe95c348f rpc_free_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe978573d rpc_bind_new_program EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe9c4a413 xdr_enter_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xea8f7b76 svc_xprt_copy_addrs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xebfa485a svc_destroy EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xec203a0d rpc_machine_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xece4753d xdr_init_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xed8018de xdr_stream_decode_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xed2e89b1 xprt_release_xprt_cong EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedcf6be4 qword_add EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeeacab69 rpc_update_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf05cf7e2 sunrpc_cache_unregister_pipefs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf0b42a1c rpcauth_lookupcred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf1427aab read_bytes_from_xdr_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf257a492 rpc_restart_call -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf2727f6b svc_generic_init_request -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf2d3aec3 rpc_pton -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf2ee2cc1 xprt_force_disconnect -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf495f418 xdr_expand_hole -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf497d5bc xdr_stream_decode_string_dup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf4a613bb auth_domain_lookup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf4e14e21 rpc_uaddr2sockaddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf537cc77 rpc_setbufsize -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf761e8c5 xprt_reconnect_backoff -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfa8a581d rpc_task_release_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfb43ab7d svc_alien_sock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfbf790dc xprt_reserve_xprt_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfd4ea7e7 sunrpc_cache_pipe_upcall_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfd844c35 svc_close_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfe889eb2 svc_destroy -EXPORT_SYMBOL_GPL net/tls/tls 0x1afaab96 tls_device_sk_destruct -EXPORT_SYMBOL_GPL net/tls/tls 0x4c3c2283 tls_offload_tx_resync_request -EXPORT_SYMBOL_GPL net/tls/tls 0x5b3a4e4e tls_validate_xmit_skb -EXPORT_SYMBOL_GPL net/tls/tls 0x914e8cd3 tls_encrypt_skb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xef2890c9 cache_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xef7e420b svc_age_temp_xprts_now +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf166bff9 svc_set_num_threads_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf4178059 rpcauth_init_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf50ae405 rpc_put_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf53269fe svc_rpcb_cleanup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf6008b3a svc_fill_write_vector +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf63e2b16 xdr_decode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf6b91121 rpc_peeraddr2str +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf718c6d7 write_bytes_to_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf8a6b417 xprt_reserve_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf8edee30 rpc_setbufsize +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf97aa292 rpc_clnt_swap_deactivate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfdc6e3d3 xdr_decode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfef62b54 rpc_call_async +EXPORT_SYMBOL_GPL net/tls/tls 0x753a441f tls_encrypt_skb +EXPORT_SYMBOL_GPL net/tls/tls 0x766d35f9 tls_device_sk_destruct +EXPORT_SYMBOL_GPL net/tls/tls 0x95e3d30c tls_offload_tx_resync_request +EXPORT_SYMBOL_GPL net/tls/tls 0xc45aa5d6 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 0x047143d7 virtio_transport_notify_send_pre_block -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x0b89ae8e virtio_transport_free_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x0ff8d142 virtio_transport_seqpacket_has_data -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x12e3e427 virtio_transport_notify_recv_pre_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x1b366414 virtio_transport_notify_poll_in -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x210e1799 virtio_transport_destruct -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x4c8df461 virtio_transport_stream_has_space -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x4d713b72 virtio_transport_stream_has_data -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x55845819 virtio_transport_notify_poll_out -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x5ff45f27 virtio_transport_dgram_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x66080347 virtio_transport_stream_is_active -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x67c21420 virtio_transport_notify_recv_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x68cc2437 virtio_transport_notify_send_post_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x6e768710 virtio_transport_dgram_bind -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x72ebe943 virtio_transport_stream_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7a485071 virtio_transport_notify_recv_pre_block -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7c0b4a0c virtio_transport_put_credit -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7e3e0d4c virtio_transport_get_credit -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x8cd105f7 virtio_transport_notify_send_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x8d74679e virtio_transport_notify_buffer_size -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x8edac74f virtio_transport_shutdown -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x92449f7d virtio_transport_release -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x9c6d65b1 virtio_transport_connect -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x9cb4e7ed virtio_transport_seqpacket_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa1b72312 virtio_transport_stream_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xaf1ad174 virtio_transport_recv_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xafba69c4 virtio_transport_do_socket_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x06dbceeb virtio_transport_notify_recv_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x11890579 virtio_transport_do_socket_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x1659dbb6 virtio_transport_shutdown +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x264272eb virtio_transport_recv_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x27935807 virtio_transport_stream_rcvhiwat +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2ce93f3f virtio_transport_seqpacket_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x4085e094 virtio_transport_release +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x44a21ecb virtio_transport_notify_poll_in +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x4f639e01 virtio_transport_seqpacket_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x517e151d virtio_transport_inc_tx_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x548a25a1 virtio_transport_notify_send_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x5985b407 virtio_transport_get_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x73c754ff virtio_transport_dgram_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7b11f1b6 virtio_transport_notify_recv_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x85710002 virtio_transport_notify_poll_out +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x86649248 virtio_transport_notify_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x88da2b63 virtio_transport_notify_send_post_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x890d929c virtio_transport_stream_is_active +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x894c292a virtio_transport_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x8d285bfb virtio_transport_stream_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x9622c4ab virtio_transport_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x9824d810 virtio_transport_notify_send_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa42865ac virtio_transport_notify_send_pre_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa8494e10 virtio_transport_dgram_bind +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb245149f virtio_transport_seqpacket_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb9ecf4b8 virtio_transport_notify_recv_pre_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 0xc0cc6984 virtio_transport_stream_rcvhiwat -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xc5819f6e virtio_transport_dgram_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xdad02515 virtio_transport_notify_send_pre_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xdeeeb657 virtio_transport_inc_tx_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe7b357d1 virtio_transport_notify_recv_post_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf53c1560 virtio_transport_seqpacket_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf635c97d virtio_transport_deliver_tap_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x02cb6f54 vsock_remove_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xbc99caae virtio_transport_destruct +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xc7186d41 virtio_transport_put_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd24f9dbb virtio_transport_connect +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd9451522 virtio_transport_stream_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xdb8b9b73 virtio_transport_deliver_tap_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xdd9cea45 virtio_transport_dgram_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe91b55ea virtio_transport_notify_recv_post_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xeb487089 virtio_transport_free_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x02458d41 vsock_remove_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x082b6770 vsock_create_connected EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0e9bc9b6 vsock_addr_unbind -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x13ff7699 vsock_deliver_tap -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x26865277 vsock_enqueue_accept -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x271946c6 vsock_create_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x1cbcbd23 vsock_remove_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x23287514 vsock_deliver_tap EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x284e07d8 vsock_bind_table -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2ac0d074 vsock_stream_has_data -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2d5d4aa6 vsock_find_bound_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2b3109a8 vsock_add_tap EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x3d4b0fca vsock_addr_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x40037aee vsock_insert_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x435a8c04 vsock_find_connected_socket EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x44420515 vsock_table_lock -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x46b54e8b vsock_find_connected_socket EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4b99648c vsock_addr_bound -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4c3544d1 vsock_stream_has_space -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x50915bb8 vsock_remove_bound -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x647008a3 vsock_assign_transport -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x6786e2e8 vsock_core_unregister -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x6b955ba5 vsock_core_register +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x54d01461 vsock_core_unregister +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x590ce868 vsock_core_register +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x6f14d336 vsock_assign_transport +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x80e3ba2a vsock_find_bound_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x8e9c3a5b vsock_for_each_connected_socket EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x90aa8549 vsock_find_cid -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x97fc8131 vsock_add_tap -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9a630ef2 vsock_remove_tap -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9b60b831 vsock_remove_connected EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9bb6fd09 vsock_connected_table EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xaf2674b5 vsock_addr_equals_addr -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xb477a103 vsock_add_pending -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc4f15360 vsock_core_get_transport +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xb089d63b vsock_core_get_transport +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xb73e647d vsock_insert_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xccf02f80 vsock_add_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd0a09f58 vsock_stream_has_data EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd348b1f4 vsock_addr_cast -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xde0e11dd vsock_remove_sock +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xdcea11fe vsock_enqueue_accept +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xde1b641a vsock_stream_has_space EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xec96eadf vsock_addr_validate -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf576928c vsock_for_each_connected_socket -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x02a62b1f cfg80211_vendor_cmd_reply -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x0688b160 cfg80211_wext_siwrts -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x2f343d14 cfg80211_pmsr_report -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x3495c481 cfg80211_vendor_cmd_get_sender -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x3642bdcc cfg80211_wext_giwretry -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x4595623a cfg80211_wext_giwname -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x56ed5226 cfg80211_shutdown_all_interfaces -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x6e0c0ee5 cfg80211_wext_giwrange -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x7d768673 cfg80211_wext_siwscan -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x7f1b84d3 cfg80211_wext_siwfrag -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x97b2b006 cfg80211_wext_siwmode -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xbedc2484 cfg80211_wext_giwscan -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xbf9a5d4f cfg80211_wext_giwrts -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xd473ab66 cfg80211_wext_giwfrag -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xf572a663 cfg80211_pmsr_complete -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xfee191ee cfg80211_wext_giwmode +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf27695d9 vsock_remove_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xfa1c0c95 vsock_remove_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xfed16827 vsock_remove_sock +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x068c6aa4 cfg80211_vendor_cmd_reply +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x0a73bcb4 cfg80211_wext_giwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x307bf9c0 cfg80211_wext_siwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x319c61c3 cfg80211_vendor_cmd_get_sender +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x32e287c3 cfg80211_wext_giwname +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x3bf25e38 cfg80211_wext_giwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x6c00a6a5 cfg80211_wext_siwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x72a609da cfg80211_shutdown_all_interfaces +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x8b4019df cfg80211_wext_giwrange +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x91b769aa cfg80211_wext_siwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xb57eeeb6 cfg80211_wext_giwretry +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xb9552334 cfg80211_wext_giwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xc09e0e9a cfg80211_pmsr_complete +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xcb9340ec cfg80211_wext_siwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xf14c31f3 cfg80211_pmsr_report +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xff3af93a cfg80211_wext_giwrts 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 @@ -17755,589 +17794,604 @@ 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 0x9fb03cc3 ipcomp_output -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xa3f5ccc5 ipcomp_destroy -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xbaa3574b ipcomp_input -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xfdeaa06d ipcomp_init_state +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x2529003b ipcomp_destroy +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x7b7213bd ipcomp_init_state +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xc5a474eb ipcomp_input +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xfdd88921 ipcomp_output EXPORT_SYMBOL_GPL net/xfrm/xfrm_user 0x4a0c7516 xfrm_msg_min EXPORT_SYMBOL_GPL net/xfrm/xfrm_user 0xe2521b1c xfrma_policy 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-seq-device 0xec85c992 __snd_seq_driver_register -EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0xf3230680 snd_seq_driver_unregister -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x0e232341 amdtp_am824_init -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x0fccf1c8 amdtp_domain_stream_pcm_pointer -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x31d40d6b amdtp_domain_add_stream -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x5bab9952 amdtp_domain_start -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x63777c82 amdtp_am824_midi_trigger -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x647ccb3d amdtp_domain_stop -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x6f25374b amdtp_am824_set_parameters -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x8e2b6b3d amdtp_domain_init -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xa2922127 amdtp_domain_destroy -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xaa4b2aeb amdtp_domain_stream_pcm_ack -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xb3b54084 amdtp_am824_set_midi_position -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xc0ed0bdf amdtp_am824_set_pcm_position -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xfd42112d amdtp_am824_add_pcm_hw_constraints -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x04872925 snd_hdac_device_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0659b097 snd_hdac_device_unregister -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x07d59626 snd_hdac_acomp_get_eld -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0a4aa41e snd_hdac_regmap_sync -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0b74d176 snd_hdac_stream_start -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1874d910 snd_hdac_regmap_write_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x22fdc153 snd_hdac_display_power -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x23a15c01 snd_hdac_get_stream -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2b61ca7e snd_hdac_stream_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2b7cbcd6 snd_hdac_stream_setup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2eac2093 snd_hdac_bus_alloc_stream_pages -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3019f4b2 snd_hdac_regmap_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x30c02ff6 snd_hdac_stream_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x35391342 snd_hdac_codec_link_down -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x365f4df1 _snd_hdac_read_parm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x37602691 snd_hdac_query_supported_pcm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3b45e19d snd_hdac_sync_power_state -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3bc1ba1d snd_hdac_bus_free_stream_pages +EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0x827d2fca __snd_seq_driver_register +EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0xa2b02ed7 snd_seq_driver_unregister +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x098bc4dc amdtp_domain_stream_pcm_pointer +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x21e60472 amdtp_am824_set_parameters +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x506db834 amdtp_am824_set_pcm_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x6170150a amdtp_domain_add_stream +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x66589942 amdtp_domain_init +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x6c142e28 amdtp_domain_destroy +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x930183c0 amdtp_domain_start +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x986a9371 amdtp_am824_set_midi_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xb1a47e96 amdtp_am824_init +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xb1d9464e amdtp_am824_add_pcm_hw_constraints +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xd894dc1b amdtp_am824_midi_trigger +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xe729dd82 amdtp_domain_stream_pcm_ack +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xe8888982 amdtp_domain_stop +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x03fffa4a snd_hdac_read_parm_uncached +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x101606a9 snd_hdac_get_stream_stripe_ctl +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x13ad23f9 snd_hdac_get_sub_nodes +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1547dc48 snd_hdac_regmap_write_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x19ada13a _snd_hdac_read_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1b1b44e1 snd_hdac_channel_allocation +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1f1c947f snd_hdac_power_up_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x204a5659 snd_hdac_stream_stop +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x20528694 snd_hdac_regmap_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x20653b4a snd_hdac_get_connections +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x210a6615 snd_hdac_register_chmap_ops +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x22631f21 snd_hdac_stream_sync +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x22a29ea6 snd_hda_bus_type +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x25f665ac snd_hdac_bus_stop_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x26ee1e86 snd_hdac_stream_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x27b406b4 snd_hdac_dsp_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2eccd666 hdac_get_device_id +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x324d7203 snd_hdac_device_set_chip_name +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x373f9700 snd_hdac_stream_clear +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3b09b351 snd_hdac_bus_exit_link_reset EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3bd544c2 snd_hdac_get_active_channels -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3d0ca25d snd_hdac_regmap_read_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x41ec82e5 snd_hdac_device_set_chip_name +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3e23950b snd_hdac_regmap_update_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x42ca938f snd_hdac_bus_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4c0a64bb snd_hdac_refresh_widgets EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4c7ec4b6 snd_hdac_get_ch_alloc_from_ca -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4db75cb1 snd_hdac_codec_link_up -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4e169187 snd_hdac_refresh_widgets -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5838c680 snd_hdac_register_chmap_ops +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4eb5cbab snd_hdac_bus_init_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x56bed88a snd_hdac_device_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x56c29a68 snd_hdac_sync_power_state +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5712d5a6 snd_hdac_codec_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5995a7e5 snd_hdac_is_supported_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5ba30bfe snd_hdac_acomp_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5bfdc755 snd_hdac_power_up EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5c07cb49 snd_hdac_calc_stream_format -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5cc334b8 snd_hdac_device_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x621326bf snd_hdac_power_up_pm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6580fcc2 snd_hdac_check_power_state +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5d630128 snd_hdac_get_stream +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x60c36d11 snd_hdac_stream_assign EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x67bfe791 snd_hdac_spk_to_chmap -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x68f0f703 snd_hdac_stream_timecounter_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x697d5b50 snd_hdac_regmap_update_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6b97bc9c snd_hdac_acomp_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6c6933d6 snd_hdac_codec_write -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x70e0ef80 snd_hdac_read_parm_uncached -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x77481365 snd_hdac_bus_stop_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6e0447cc snd_hdac_regmap_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x70ae3057 snd_hdac_bus_exec_verb_unlocked +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x74124ca3 snd_hdac_bus_reset_link EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x77c754a8 snd_hdac_chmap_to_spk_mask -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x79541320 snd_hdac_regmap_update_raw_once -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7bf56767 snd_hdac_bus_init_chip -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7e5d6b8a snd_hdac_stream_release -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8451b788 snd_hda_bus_type -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x84d57a72 snd_hdac_stream_sync_trigger -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x84ef69a5 snd_hdac_codec_modalias -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x86068002 snd_hdac_add_chmap_ctls -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x88a2b07d snd_hdac_bus_exec_verb_unlocked -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x88e751f2 snd_hdac_get_sub_nodes -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8f44e262 snd_hdac_override_parm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x90b4fd8f snd_hdac_is_supported_format -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x91ec3b8d snd_hdac_bus_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x95f4e684 snd_hdac_acomp_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x99609569 snd_hdac_set_codec_wakeup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x78538817 snd_hdac_bus_update_rirb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7a3079f3 snd_hdac_bus_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x81230e37 snd_hdac_regmap_read_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8167cd48 snd_hdac_regmap_add_vendor_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x822650b1 snd_hdac_stream_set_params +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x87037e9b snd_hdac_acomp_register_notifier +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8784fd09 snd_hdac_stream_sync_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8f11a9b7 snd_hdac_bus_stop_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8f4ae5f3 snd_hdac_check_power_state +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x90e2d09a snd_hdac_query_supported_pcm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x92c9a74e snd_hdac_stream_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x93db5c9f snd_hdac_acomp_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x97f3ab93 snd_hdac_display_power EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9a8e1877 snd_array_free -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9c50c5fd snd_hdac_bus_stop_chip -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9c8b5dc2 snd_hdac_dsp_prepare -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9f8ba7a0 snd_hdac_device_register -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa7868cbd snd_hdac_bus_parse_capabilities -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa89260b2 snd_hdac_bus_update_rirb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa9e46a39 snd_hdac_stream_set_params -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xab5fe2d0 snd_hdac_bus_get_response -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xab6cd24e snd_hdac_power_up -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xacd3d075 snd_hdac_stream_sync -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb1d3fdff snd_hdac_stream_cleanup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb424eff7 snd_hdac_regmap_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb7aeaea1 snd_hdac_acomp_register_notifier -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xba32a514 snd_hdac_power_down_pm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbacc8286 snd_hdac_dsp_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9cb61f19 snd_hdac_bus_free_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9f459a41 snd_hdac_stream_timecounter_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa1239fc8 snd_hdac_bus_parse_capabilities +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa9bd5afc snd_hdac_stream_setup_periods +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xaa8ab377 snd_hdac_acomp_get_eld +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xaca54e38 snd_hdac_bus_alloc_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb75a386a snd_hdac_codec_link_down +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbc35be41 snd_hdac_bus_link_power EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe7dd7dc snd_array_new -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbea588c2 snd_hdac_regmap_add_vendor_verb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbfcfe772 hdac_get_device_id -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc09b6fc8 snd_hdac_get_stream_stripe_ctl -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc5c3d418 snd_hdac_bus_enter_link_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc6d8a347 snd_hdac_dsp_cleanup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc7799b64 snd_hdac_read -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd1b01abc snd_hdac_stream_setup_periods -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd2f82255 snd_hdac_bus_handle_stream_irq -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd3d1e03f snd_hdac_channel_allocation -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd8f71f68 snd_hdac_bus_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xda54d6aa snd_hdac_get_connections -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdf405c74 snd_hdac_stream_assign -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe035c138 snd_hdac_bus_init_cmd_io -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe0cd0ca7 snd_hdac_codec_read -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe39b87f3 snd_hdac_setup_channel_mapping +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbf8fa072 snd_hdac_bus_get_response +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc21c07db snd_hdac_stream_start +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc268eabf snd_hdac_add_chmap_ctls +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc491b3b5 snd_hdac_bus_enter_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc71c2edf snd_hdac_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc84e9459 snd_hdac_device_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc906c3c3 snd_hdac_codec_write +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc9ce959c snd_hdac_stream_setup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xca905842 snd_hdac_regmap_update_raw_once +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xccc70b03 snd_hdac_sync_audio_rate +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcf294da9 snd_hdac_set_codec_wakeup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd1667979 snd_hdac_stream_release +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd4235938 snd_hdac_dsp_prepare +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd5cd5795 snd_hdac_dsp_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdb0d6f47 snd_hdac_codec_link_up +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdd3ded65 snd_hdac_regmap_sync +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdd639f9b snd_hdac_setup_channel_mapping EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe4e07754 snd_hdac_print_channel_allocation -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe5ff4d76 snd_hdac_bus_reset_link -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe7a6fd8b snd_hdac_sync_audio_rate -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xea9d0700 snd_hdac_stream_stop -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf3b932dd snd_hdac_bus_send_cmd -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf3f15828 snd_hdac_bus_exit_link_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf5cae50a snd_hdac_power_down -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfb058a1b snd_hdac_stream_clear -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xffcd603d snd_hdac_bus_link_power -EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x7aaccaa0 snd_intel_dsp_driver_probe -EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0xdf6b0e4c snd_intel_acpi_dsp_driver_probe -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x6e131f89 snd_ak4113_check_rate_and_errors -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x8efb772b snd_ak4113_external_rate -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x91a6f438 snd_ak4113_build -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xca7fe1da snd_ak4113_create -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xe812e40f snd_ak4113_reinit -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xf15ac174 snd_ak4113_reg_write -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x01b0d7f8 __snd_hda_add_vmaster -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x02d14d26 snd_hda_get_pin_label -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x048096f9 snd_hda_get_connections -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x04bfbed5 snd_hda_attach_beep_device +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe602eb6e snd_hdac_device_register +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe6b51df4 snd_hdac_stream_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xebd866e7 snd_hdac_codec_modalias +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xebee64a0 snd_hdac_power_down_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xec3a8832 snd_hdac_bus_init_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xec415e91 snd_hdac_power_down +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xed732b82 snd_hdac_override_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xee53dfee snd_hdac_bus_send_cmd +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf2455609 snd_hdac_bus_handle_stream_irq +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfe0f99c9 snd_hdac_device_unregister +EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x2dda00e4 snd_intel_dsp_driver_probe +EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0xda407088 snd_intel_acpi_dsp_driver_probe +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x325114ed snd_ak4113_build +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x6246cec3 snd_ak4113_external_rate +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x815a5875 snd_ak4113_check_rate_and_errors +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x8f48c898 snd_ak4113_reg_write +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xd6823225 snd_ak4113_create +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xeade62d7 snd_ak4113_reinit +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x021fb897 snd_hda_jack_set_dirty_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x03e8e857 snd_hda_get_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x05184617 snd_hda_codec_set_power_to_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x05c6afe9 snd_hda_multi_out_analog_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x063c0487 snd_hda_codec_pcm_new EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0676f5ac snd_hda_get_input_pin_attr -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0aac484d snd_hda_spdif_ctls_assign -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0b43c3d0 snd_hda_jack_pin_sense -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0d293834 snd_hda_create_dig_out_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0d5001d8 snd_hda_add_vmaster_hook -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x10ddfe71 snd_hda_check_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x12490486 snd_hda_jack_tbl_get_mst -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1712dd6c query_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1bfa4eb9 snd_hda_add_new_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1fa52fba snd_hda_detach_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x20048760 snd_hda_set_vmaster_tlv -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x204a9ff9 snd_hda_load_patch -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x25a35cce snd_hda_jack_detect_enable -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x26957b4f snd_hda_codec_device_new -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x27d5e956 snd_hda_shutup_pins -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x282016a0 snd_hda_get_dev_select -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2913fbe7 snd_hda_find_mixer_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2abf92d1 snd_hda_get_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2af53c32 snd_hda_mixer_amp_volume_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2b09f278 snd_hda_jack_detect_enable_callback_mst -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2ce68356 snd_hda_codec_load_dsp_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2d869458 azx_bus_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2dbebe57 snd_hda_mixer_amp_switch_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2f5e4ba6 snd_hda_codec_get_pin_target -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3346c21f snd_hda_codec_new -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3756e681 snd_hda_codec_pcm_new -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x38253868 snd_hda_get_default_vref +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0814202c snd_hda_codec_device_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x08546e5a snd_hda_sequence_write +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0f36a546 snd_hda_codec_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x13bbac78 snd_hda_mixer_amp_volume_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x15277396 snd_hda_set_dev_select +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x16bb06ab snd_hda_load_patch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x17394866 snd_hda_override_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1a53775f snd_hda_create_spdif_in_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1ac0d5c2 snd_hda_codec_set_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1cdd3d73 snd_hda_mixer_amp_switch_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1e59b92d snd_hda_codec_get_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1ef85b70 snd_hda_codec_set_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x235acb98 query_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x25eb45a9 azx_stop_all_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x275b9170 snd_hda_codec_setup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x27a0fda6 snd_hda_add_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2b06ac9c snd_hda_input_mux_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2c3ad977 snd_hda_get_bool_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2dbd36cc snd_hda_mixer_amp_switch_put_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2eee09fd snd_hda_codec_amp_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3093332b snd_hda_create_spdif_share_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x314b7e3a snd_hda_get_int_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x34787005 snd_hda_codec_parse_pcms +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x37d1cc6c snd_hda_apply_verbs EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x38ce402b azx_interrupt -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3942ad09 snd_hda_sequence_write -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3eb02df1 hda_get_autocfg_input_label -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x400ec984 snd_hda_get_conn_list -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x409b6dde snd_hda_pick_pin_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4147b812 snd_hda_set_power_save -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x446fc258 snd_hda_codec_set_power_to_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x44a46de3 is_jack_detectable -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4d0f3e65 snd_hda_apply_verbs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4eb160a0 azx_get_pos_posbuf -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4ef4868c snd_hda_codec_get_pincfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4f2d944d snd_hda_codec_set_pincfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x59228784 snd_hda_jack_report_sync -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5b37d4df snd_hda_set_dev_select -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5bf7de1f snd_hda_enum_helper_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x63b857ac snd_hda_codec_amp_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x66b5cd91 snd_hda_mixer_amp_switch_put_beep -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6837413b snd_hda_spdif_ctls_unassign -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x69b88010 snd_hda_jack_bind_keymap -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6f9dd421 snd_hda_add_nid -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x713c8c28 snd_hda_jack_add_kctl_mst -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x72318732 snd_hda_override_conn_list -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x72a56ecc snd_hda_codec_amp_update -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x734bb78f snd_hda_add_verbs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x74a7a6d1 snd_hda_codec_update_widgets -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x79c66fb4 snd_hda_codec_cleanup_for_unbind -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7a948093 snd_hda_mixer_amp_volume_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7c25b121 snd_hda_get_num_devices -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7d117c5b snd_hda_codec_configure -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7d16e1ba __snd_hda_codec_cleanup_stream -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7d327d5d snd_hda_mixer_amp_switch_get_beep -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7ddf02f6 snd_hda_mixer_amp_switch_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8a237718 azx_init_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8c283c64 snd_hda_jack_tbl_get_from_tag -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8d211c95 snd_hda_mixer_amp_volume_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x91670b4c snd_hda_apply_pincfgs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x919bba62 snd_hda_lock_devices -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x92893619 azx_codec_configure -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x941a4ca2 snd_hda_multi_out_analog_open -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x98146cd8 __hda_codec_driver_register -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9828ba15 snd_hda_codec_eapd_power_filter -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9a3dcc8b azx_stop_all_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9e78a45f snd_hda_get_conn_index -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9e96c614 snd_hda_unlock_devices -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9f4e3717 snd_hda_override_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa4bc32fb azx_free_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa5ed038c snd_hda_multi_out_dig_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa8dc0693 snd_hda_codec_setup_stream -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaa16098d snd_hda_apply_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaaf8b3ef snd_hda_codec_load_dsp_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xad037e7e snd_hda_multi_out_analog_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb1b04962 snd_hda_multi_out_dig_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb23f2894 snd_hda_codec_load_dsp_trigger -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb2996b11 snd_hda_multi_out_analog_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb387bbdb snd_hda_jack_set_dirty_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb3c20d78 snd_hda_create_spdif_share_sw -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb3d29a61 snd_hda_add_imux_item -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb9b2fb04 snd_hda_jack_detect_state_mst -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb9d842a5 snd_hda_enable_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc0a0f4bc snd_hda_spdif_out_of_nid -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc0af38dc snd_hda_multi_out_dig_close -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc1b1418a snd_hda_jack_poll_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc1d1c69b snd_hda_correct_pin_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc274f8b0 snd_hda_input_mux_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc33fda39 snd_hda_jack_set_button_state -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc77c7d5e snd_hda_pick_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcb690e9f azx_probe_codecs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcde11838 snd_hda_get_int_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd0a6c52f snd_hda_codec_set_pin_target -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd36e99df snd_hda_jack_unsol_event -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd6e5df41 snd_hda_check_amp_list_power -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd78902de snd_hda_codec_pcm_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd9220633 snd_hda_jack_set_gating_jack -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xda0b2251 snd_hda_mixer_amp_switch_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdaf4e57c snd_hda_codec_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdd6204bb snd_hda_codec_amp_init_stereo -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xddf36828 snd_hda_jack_add_kctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdfbacb67 snd_hda_codec_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3bbec7cf snd_hda_pick_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3bc17369 __hda_codec_driver_register +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3d56cab8 snd_hda_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x42083a94 snd_hda_multi_out_dig_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4321c6fe snd_hda_codec_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x434a347f __snd_hda_add_vmaster +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x47c7979d snd_hda_codec_set_name +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x488f63fe snd_hda_get_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x490574b9 snd_hda_correct_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4b22aa5c snd_hda_attach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x51dac8db snd_hda_detach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5453edb8 snd_hda_get_connections +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x55ad5770 snd_hda_add_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x576e20ed azx_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x593ee8da snd_hda_enable_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5bcf4bc7 snd_hda_mixer_amp_switch_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5c2e95ca azx_get_pos_posbuf +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5d8e8b0e snd_hda_codec_get_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x65b10667 snd_hda_jack_report_sync +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x667ed19f azx_stop_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x68d37cb5 snd_hda_multi_out_analog_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x68e58cb3 snd_hda_ctl_add +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6af416e7 snd_hda_get_dev_select +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6c91a64e snd_hda_jack_set_gating_jack +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6d744175 snd_hda_get_conn_index +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x70c0f4cb snd_hda_codec_load_dsp_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x715bb31c snd_hda_jack_tbl_get_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7181db69 snd_hda_jack_tbl_get_from_tag +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x739bc718 azx_init_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x74385082 snd_hda_jack_detect_enable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x77435e80 snd_hda_codec_pcm_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x78b0b488 azx_get_position +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x78d3ea4c snd_hda_find_mixer_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x78e28c33 snd_hda_jack_detect_state_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7e52bea5 snd_hda_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7ed5ab4e snd_hda_jack_pin_sense +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8010110f snd_hda_check_amp_list_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x818142a1 snd_hda_jack_add_kctl_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x89d2e0fd snd_hda_get_num_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8a56bb4d snd_hda_codec_amp_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8c8a9b01 is_jack_detectable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8f9f1079 snd_hda_pick_pin_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9191dcb5 snd_hda_codec_update_widgets +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x92dd7cb2 snd_hda_mixer_amp_volume_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x95b11824 snd_hda_codec_amp_init_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x96ae1f1c snd_hda_codec_load_dsp_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x99d91f2b snd_hda_override_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9b7e7d49 snd_hda_multi_out_analog_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9db00f66 snd_hda_jack_poll_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9e6dbef0 snd_hda_multi_out_dig_close +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9fc97119 snd_hda_check_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa0cb5aa3 snd_hda_add_new_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaa7bbd63 snd_hda_add_imux_item +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xae5b0169 snd_hda_create_dig_out_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaf351089 hda_codec_driver_unregister +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xafe61eca __snd_hda_codec_cleanup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xafe75d9d snd_hda_multi_out_dig_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb1826ea4 snd_hda_shutup_pins +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb350757a snd_hda_jack_unsol_event +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb5346fa9 snd_hda_codec_build_controls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb5cdb46d snd_hda_get_default_vref +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbd7db6bf snd_hda_spdif_out_of_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc1cb59f4 snd_hda_mixer_amp_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc36bff8b snd_hda_mixer_amp_switch_get_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc549be1f azx_probe_codecs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc6646828 azx_get_pos_lpib +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc684c3f5 snd_hda_enum_helper_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc7a3f9cb snd_hda_apply_pincfgs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc7f9f6b9 snd_hda_get_pin_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcfbe3766 snd_hda_codec_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd001b339 snd_hda_jack_add_kctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd441a330 azx_bus_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd5cf0a06 snd_hda_mixer_amp_volume_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd6ca28c7 snd_hda_jack_detect_enable_callback_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd732e1fa snd_hda_spdif_ctls_assign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd7424331 snd_hda_sync_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd8076b77 snd_hda_spdif_ctls_unassign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd954f539 azx_init_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd9999939 snd_hda_lock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdaa99b0d snd_hda_mixer_amp_switch_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xde3cdfe8 _snd_hda_set_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdf50ff19 snd_hda_jack_set_button_state +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdf960566 azx_free_streams EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe118de5d snd_pcm_2_1_chmaps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe23eb31b snd_hda_parse_pin_defcfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe9f51045 snd_hda_codec_set_name -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xea69d00b snd_hda_codec_parse_pcms -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xec1de211 azx_get_pos_lpib +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe14b791c snd_hda_multi_out_dig_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe181ee0e snd_hda_set_vmaster_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe2393eef snd_hda_codec_load_dsp_trigger +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeadfb333 snd_hda_parse_pin_defcfg EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeda3a721 snd_print_pcm_bits -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeec0e31a snd_hda_ctl_add -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xefc5b330 azx_stop_chip -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf0b5a712 snd_hda_codec_build_controls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf1b03a91 hda_codec_driver_unregister -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf2c9ae6e snd_hda_codec_amp_stereo -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf304a29a snd_hda_mixer_amp_tlv -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf490159d snd_hda_create_spdif_in_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf50ca6b9 azx_get_position -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf7a9e7b3 azx_init_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeec949b5 snd_hda_codec_amp_update +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xef393c64 snd_hda_unlock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf0307ab0 snd_hda_codec_cleanup_for_unbind +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf1310411 snd_hda_jack_bind_keymap +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf4ef37d7 hda_get_autocfg_input_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf5997e7f snd_hda_apply_fixup EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf8dc35ac snd_hda_input_mux_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfce44fb0 _snd_hda_set_pin_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfd5eeac2 snd_hda_multi_out_dig_open -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfe506390 snd_hda_sync_vmaster_hook -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xff28aa68 snd_hda_get_bool_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x00a5a011 snd_hda_gen_spec_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x0b56e81b snd_hda_gen_add_micmute_led_cdev -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x0bde9eef snd_hda_gen_build_pcms -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x1142aa91 snd_hda_gen_check_power_status -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x3bb25cd8 snd_hda_gen_free -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x3f71f7e7 snd_hda_add_new_path -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x416cd922 snd_hda_gen_fix_pin_power -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x46f4e4da snd_hda_gen_line_automute -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x4f15d0f5 snd_hda_gen_path_power_filter -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x58884b7b snd_hda_gen_add_mute_led_cdev -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x604e9550 snd_hda_activate_path -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x7637dc25 snd_hda_gen_parse_auto_config +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfa85b28a snd_hda_set_power_save +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xff91e730 snd_hda_codec_eapd_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x063a5fd4 snd_hda_gen_add_kctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x0eabe4a1 snd_hda_gen_free +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x184bdc20 snd_hda_add_new_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x1b81a583 snd_hda_gen_build_pcms +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x216fdc4e snd_hda_gen_add_micmute_led_cdev +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x2b8cbb08 snd_hda_gen_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x3083697e snd_hda_gen_update_outputs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x37334473 snd_hda_gen_check_power_status +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x3e5a5849 snd_hda_gen_parse_auto_config +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x4f01f4ff snd_hda_gen_build_controls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x602bb385 snd_hda_get_path_from_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x6cddeb11 snd_hda_activate_path EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x76dc6871 hda_main_out_badness -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x7e4f755c snd_hda_gen_stream_pm -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x8289e89b snd_hda_get_path_idx -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x832a4a42 snd_hda_gen_hp_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x8179143f snd_hda_gen_spec_init EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x871a6e44 hda_extra_out_badness -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x8e67abff snd_hda_gen_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x978db239 snd_hda_gen_add_kctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x98209229 snd_hda_gen_build_controls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xb53de057 snd_hda_gen_mic_autoswitch -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xb8a6a238 snd_hda_gen_update_outputs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xc2e28449 snd_hda_get_path_from_idx -EXPORT_SYMBOL_GPL sound/soc/codecs/mt6359-accdet 0x4bf1cd20 mt6359_accdet_enable_jack_detect +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x92ffc130 snd_hda_gen_add_mute_led_cdev +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xb993f855 snd_hda_gen_path_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xccd5da8a snd_hda_gen_hp_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xd807aa35 snd_hda_gen_stream_pm +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xd9d1996c snd_hda_gen_fix_pin_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xe51a9991 snd_hda_get_path_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xef139bb4 snd_hda_gen_line_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xfbcbd459 snd_hda_gen_mic_autoswitch +EXPORT_SYMBOL_GPL sound/soc/codecs/mt6359-accdet 0xed4e619d 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 0x3fb4012f adau1372_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0x635dfaf6 adau1761_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0x971a4e9c adau1761_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x0aea3bde adau17x1_add_widgets -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x1a9968e2 adau17x1_dai_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x30664932 adau17x1_readable_register -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x361539f4 adau17x1_add_routes -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x4eeb0384 adau17x1_precious_register -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x5d8c873e adau17x1_volatile_register -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x6aaa32d0 adau17x1_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xa446c708 adau17x1_resume -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xdbc3f952 adau17x1_set_micbias_voltage -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xfea853d2 adau17x1_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau7118 0x7c1d405b adau7118_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x02f94f40 arizona_in_ev -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x085ccf63 arizona_lhpf1_mode -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x0898fb52 arizona_clk_ev -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x08fe0018 arizona_lhpf_coeff_put -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x1120ed85 arizona_dvfs_sysclk_ev -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x126a862b arizona_of_get_audio_pdata -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x1e0003d4 arizona_in_vd_ramp -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x1e057c70 arizona_out_vi_ramp -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x2366a9cb arizona_free_spk_irqs -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x270ae2a3 arizona_anc_ng_enum -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x2c1ea500 arizona_anc_ev -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x3861b1f6 arizona_in_dmic_osr -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x39b4d5fe arizona_lhpf2_mode +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1372 0x60619d77 adau1372_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0x2b19a48a adau1761_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0xcdf0db2a adau1761_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x142dbd21 adau17x1_add_routes +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x2a70b274 adau17x1_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x2b47b527 adau17x1_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x310a26fa adau17x1_resume +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x78c07ad3 adau17x1_precious_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x7f79ba38 adau17x1_add_widgets +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xb029dd48 adau17x1_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xbf91eb0b adau17x1_volatile_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xc6197eb5 adau17x1_set_micbias_voltage +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xc895ad21 adau17x1_readable_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau7118 0x214c4ae9 adau7118_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x016f1e44 arizona_init_vol_limit +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x01a7cc67 arizona_hp_ev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x05f59e8c arizona_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x09754c83 arizona_clk_ev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x0bb776c7 arizona_in_vd_ramp +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x10babcd9 arizona_lhpf_coeff_put +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x121d43ea arizona_jack_set_jack +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x1607646c arizona_adsp2_rate_controls +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x1debba70 arizona_lhpf1_mode +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x24e01f68 arizona_voice_trigger_switch +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x2c03a0ed arizona_lhpf2_mode +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x2d46ccae arizona_dvfs_down +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x30da45f7 arizona_init_gpio +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x36891395 arizona_isrc_fsh +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x3bb68372 arizona_eq_coeff_put EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x46277216 arizona_rate_val -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x52ac01d8 arizona_ng_hold -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x5a64e0c4 arizona_lhpf4_mode -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x5f4ff255 arizona_jack_codec_dev_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x6108cce4 arizona_init_dvfs -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x65c967fa arizona_init_gpio -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x67dd328c arizona_init_common -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x6867412e arizona_in_hpf_cut_enum +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x46846f9b arizona_init_spk +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x4c4e0375 arizona_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x4fd395d7 arizona_lhpf4_mode +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x58def209 arizona_free_spk_irqs +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x59b9afb8 arizona_out_ev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x5a590d59 arizona_jack_codec_dev_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x65a0f246 arizona_anc_input_src EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x69102a20 arizona_sample_rate_text -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x6d2db406 arizona_set_fll -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x6e144a04 arizona_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x6a601707 arizona_in_vi_ramp EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x729a5ef3 arizona_mixer_values -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x72b347fe arizona_voice_trigger_switch -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x7371bf58 arizona_input_analog -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x7709c203 arizona_isrc_fsh -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x78184b74 arizona_output_anc_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x78c04f7f arizona_set_output_mode -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x7d51cd3c arizona_set_fll_refclk +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x7ef728ae arizona_in_ev 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 0x7fd21db0 arizona_out_vd_ramp -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x7fd76214 arizona_in_vi_ramp -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x862cf99d arizona_jack_codec_dev_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x87d63031 arizona_asrc_rate1 -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x9722b4ba arizona_set_sysclk -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x9fc3de4a arizona_lhpf3_mode +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x813a912b arizona_dvfs_up +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x86d8ba2d arizona_dvfs_sysclk_ev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x892acc8a arizona_ng_hold +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x8a74ab59 arizona_lhpf3_mode +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x8bdf6cbe arizona_init_common +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x8e71d2c7 arizona_init_dai +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x8fcc329f arizona_jack_codec_dev_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x90429226 arizona_set_fll +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x92614522 arizona_asrc_rate1 +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x9aae8adb arizona_out_vi_ramp +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x9bb3b90f arizona_output_anc_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xa3a11408 arizona_anc_ng_enum +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xa506face arizona_anc_ev EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xab4d845c arizona_rate_text -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xad599bce arizona_anc_input_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xb4af663b arizona_jack_set_jack -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xb57afadd arizona_hp_ev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xad185183 arizona_isrc_fsl +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xae6361f1 arizona_input_analog +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xb401f031 arizona_init_spk_irqs +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xb464028b arizona_in_dmic_osr +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xc3262385 arizona_init_mono EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xc9c29637 arizona_mixer_tlv -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xcd8fdbfe arizona_init_fll -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xce2788e3 arizona_dvfs_up -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xd125506b arizona_out_ev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xcc147f4f arizona_init_dvfs +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xccf628ad arizona_init_fll +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xd6da78db arizona_set_fll_refclk +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xddd4ae2c arizona_set_output_mode EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xdfe804b8 arizona_sample_rate_val -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xe8133906 arizona_init_mono -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xec988015 arizona_isrc_fsl -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xee999645 arizona_simple_dai_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xf0613313 arizona_dvfs_down -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xf2d301a6 arizona_init_spk_irqs -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xf5e56044 arizona_init_vol_limit -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xf69bd159 arizona_adsp2_rate_controls -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xfbcb2179 arizona_eq_coeff_put -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xfddc11e8 arizona_init_spk -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xff728414 arizona_init_dai -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x0c633c92 cs4271_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x0e238e56 cs4271_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xe462f253 arizona_in_hpf_cut_enum +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xedca4430 arizona_of_get_audio_pdata +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xf449a6a1 arizona_simple_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xfb79eb1b arizona_out_vd_ramp +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0x3e26d220 cs35l41_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0x8e8d2db0 cs35l41_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0xbb29dbdf cs35l41_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x01aad174 cs35l41_regmap_spi +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x41059f1a cs35l41_boost_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x6b1cbd37 cs35l41_set_channels +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xb7ffd7ab cs35l41_regmap_i2c +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xdad9ab56 cs35l41_test_key_lock +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xdbfc2a9f cs35l41_register_errata_patch +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xf150a2c5 cs35l41_otp_unpack +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xfffb1f4e cs35l41_test_key_unlock +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x2a7a7898 cs4271_probe EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x7d05786f cs4271_dt_ids +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0xf9a095bb cs4271_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x1b2f52a1 cs42l51_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x2e6994cc cs42l51_remove EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x375ad98c cs42l51_of_match -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x8648a728 cs42l51_suspend -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x8900fbc0 cs42l51_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xc5f07fb1 cs42l51_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xdb25b17b cs42l51_resume -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xff5e66df cs42l51_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x3ff1c56d cs42l51_suspend +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x6591a446 cs42l51_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x76b23b48 cs42l51_resume EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x0245c4f2 cs42xx8_of_match -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x07220d0e cs42xx8_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x131fd9e7 cs42xx8_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x373ba24d cs42xx8_regmap_config EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x7cac7292 cs42888_data -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x86823a83 cs42xx8_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x7d1154bf cs42xx8_pm EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xcd3794c9 cs42448_data -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0x163756f5 da7219_aad_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0x55b27b22 da7219_aad_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0xc25fa68b da7219_aad_jack_det -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0xc91897ac da7219_aad_exit -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x3bacafa9 es8328_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x8033da32 es8328_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98090 0xf1d08ca6 max98090_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98095 0x2be615dd max98095_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x3ead085e soc_codec_dev_max98373 -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0xb37fa028 max98373_reset -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0xc748819d max98373_slot_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0xc88bfd53 soc_codec_dev_max98373_sdw -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0x1f2451f0 mt6359_set_mtkaif_protocol -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0x2527bbdb mt6359_mtkaif_calibration_disable -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0x5b4c9fc6 mt6359_mtkaif_calibration_enable -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0xf6df9824 mt6359_set_mtkaif_calibration_phase -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8824 0x5ce4e386 nau8824_enable_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x26487a74 pcm1789_common_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x2a5a875d pcm1789_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0xb5064fe2 pcm1789_common_exit -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0x11c7ff55 pcm179x_common_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0x2dea2b75 pcm179x_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0x5ebdf97b pcm186x_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0x8be3dbd0 pcm186x_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x26c66725 pcm3168a_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x6309a9b6 pcm3168a_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0xcf810098 pcm3168a_pm_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0xf4004a50 pcm3168a_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x2f1d5cfb pcm512x_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x4267efd9 pcm512x_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x649d7570 pcm512x_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xba5526fd pcm512x_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xecb92eda cs42xx8_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0x2355c075 da7219_aad_exit +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0x2581ee3b da7219_aad_jack_det +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0x941d5c01 da7219_aad_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0xd798a8c2 da7219_aad_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x2c6370dd es8328_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x40cd7454 es8328_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98090 0xb7e5ee4e max98090_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98095 0x96982285 max98095_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x5918ac0e max98373_slot_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x6a9d9a1b max98373_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x6b874c4f soc_codec_dev_max98373_sdw +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0xe5c6669e soc_codec_dev_max98373 +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x0f9c819d mt6358_mtkaif_calibration_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x28ee0b94 mt6358_set_mtkaif_protocol +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x570a6b5e mt6358_set_mtkaif_calibration_phase +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0xd1b7c5f5 mt6358_mtkaif_calibration_disable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0x8d17ed76 mt6359_set_mtkaif_calibration_phase +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0x94b13aa9 mt6359_mtkaif_calibration_disable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0xd63fa8b0 mt6359_mtkaif_calibration_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0xf14d22b9 mt6359_set_mtkaif_protocol +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8824 0x42f8c140 nau8824_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0xbe99eb05 pcm1789_common_exit +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0xc552efbf pcm1789_common_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0xfa4ed764 pcm1789_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0xc633e070 pcm179x_common_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0xfdfe7b4c pcm179x_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0x4036b974 pcm186x_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0xfedc228c pcm186x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x4579fd89 pcm3168a_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x504f3b11 pcm3168a_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x892e252f pcm3168a_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0xdb7958c7 pcm3168a_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x06d0f07f pcm512x_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x32e27583 pcm512x_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x7e872134 pcm512x_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x8f7c870c 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 0x554467a3 rt5514_spi_burst_read EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5514-spi 0xbb4583f6 rt5514_spi_burst_write -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x012cf126 rt5640_dmic_enable -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x362c20e9 rt5640_enable_micbias1_for_ovcd -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x39ed9d05 rt5640_disable_micbias1_for_ovcd -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xb65f2dd6 rt5640_detect_headset -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xd277078d rt5640_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xf3cdf69a rt5640_set_ovcd_params -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0x0b75386c rt5645_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0x79ebdad8 rt5645_set_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5659 0x2e865209 rt5659_set_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5663 0xc15a310e rt5663_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x0b89a64e rt5682_aif1_dai_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x23889124 rt5682_volatile_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x794be853 rt5640_disable_micbias1_for_ovcd +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xb8d35345 rt5640_set_ovcd_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xbb9f8439 rt5640_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xd53bd46c rt5640_dmic_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xe33eac63 rt5640_detect_headset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xf289e7ff rt5640_enable_micbias1_for_ovcd +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0x0f56039a rt5645_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0x33f02bcb rt5645_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5659 0x13a8d28d rt5659_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5663 0x44b01f29 rt5663_sel_asrc_clk_src EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x28730696 rt5682_supply_names -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x366bb0fe rt5682_soc_component_dev -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x3acf2967 rt5682_readable_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x28b8b28f rt5682_parse_dt +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x653bc7b5 rt5682_soc_component_dev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x665a51bd rt5682_aif1_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x88ce3706 rt5682_volatile_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x8d6deabe rt5682_aif2_dai_ops EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x91079df2 rt5682_jack_detect_handler -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x93babd14 rt5682_parse_dt -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xb417cad1 rt5682_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xa0ea7972 rt5682_calibrate +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xb56159a0 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 0xe0be1d4d rt5682_aif2_dai_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xe4ab6f35 rt5682_calibrate -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xeceb93ed rt5682_apply_patch_list -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xfa4c24a5 rt5682_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xfe1f5699 rt5682_headset_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x1bbba0c3 sigmadsp_attach -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x222ed1eb devm_sigmadsp_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x2a81fa63 sigmadsp_setup -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x67259be3 sigmadsp_restrict_params -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xb999333e sigmadsp_reset -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-i2c 0xea139d19 devm_sigmadsp_init_i2c -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-regmap 0x4ab2bc21 devm_sigmadsp_init_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0xa8096c9a ssm2602_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0xe1e71def ssm2602_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic32x4 0x9deb3ebc aic32x4_register_clocks -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic3x 0xdac1f03c aic3x_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0x96293fb2 ts3a227e_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xcf32e67b rt5682_readable_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xd82c01b2 rt5682_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xe2009b54 rt5682_headset_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xf49c3af3 rt5682_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x5f9fef63 sigmadsp_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x6f9f47fe sigmadsp_restrict_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x81376c7e sigmadsp_setup +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xb190d251 devm_sigmadsp_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xea63cb45 sigmadsp_attach +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-i2c 0x5a19b6a2 devm_sigmadsp_init_i2c +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-regmap 0x9e5a4b87 devm_sigmadsp_init_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x29960764 ssm2602_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x781d3ca3 ssm2602_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic32x4 0x15996a6d aic32x4_register_clocks +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic3x 0xe8e42177 aic3x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0x5e916c06 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 0x029919c9 wcd938x_sdw_free -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x44fcce1b wcd938x_sdw_set_sdw_stream -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x8c90426e wcd938x_sdw_device_get -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0xe71e0e83 wcd938x_swr_get_current_bank -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0xf6700fbc wcd938x_sdw_hw_params -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x05bed572 wm_adsp_fw_get -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x0c9bb5ef wm_adsp2_preloader_put -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x43beeb7d wm_adsp_event -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x4588515d wm_adsp_fw_enum -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x45b19ba2 wm_adsp_compr_handle_irq -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x48aeee25 wm_adsp_compr_copy -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x4df963dc wm_adsp1_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x21fd89f4 wcd938x_sdw_hw_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x3a84b72d wcd938x_sdw_free +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x47514f94 wcd938x_sdw_set_sdw_stream +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x94a6b0cf wcd938x_sdw_device_get +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0xe1ee5aed wcd938x_swr_get_current_bank +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x13d0b4ba wm_adsp_compr_open +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x187949cb wm_adsp_compr_pointer +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x1d2a36ba wm_adsp2_preloader_put +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x1dcecd9e wm_adsp_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x2dd2dc88 wm_adsp2_preloader_get +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x379974c0 wm_adsp_early_event +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x3f5e0367 wm_adsp1_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x482d35b0 wm_adsp2_remove EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x52c16479 wm_halo_wdt_expire -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x5333e001 wm_adsp2_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x721e0d45 wm_adsp2_component_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x743163c1 wm_adsp_read_ctl -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x76a3a130 wm_adsp_compr_pointer -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x83745bbf wm_adsp2_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x8f7995e5 wm_adsp_compr_free -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x9262f8a6 wm_adsp_compr_trigger -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x92be51cc wm_adsp1_event -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x9aa4c473 wm_adsp_compr_get_caps -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x9f13458e wm_adsp_compr_set_params -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x9f866ae4 wm_adsp_early_event -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xa28009ab wm_adsp2_component_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xa7b2b848 wm_halo_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xcaae806b wm_adsp_compr_open -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xda2eff66 wm_adsp_write_ctl +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x561d25e8 wm_adsp2_set_dspclk +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x59296de7 wm_adsp2_component_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x5c0a955c wm_adsp_compr_handle_irq +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x5df1e0f2 wm_adsp_fw_put +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x6bbffdd2 wm_adsp1_event +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x6c7f7671 wm_adsp_event +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x6d090ac0 wm_adsp_fw_get +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x8674aa17 wm_adsp_compr_trigger +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x88df2061 wm_halo_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x89835f98 wm_adsp_compr_get_caps +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x8a81c600 wm_adsp_write_ctl +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xa7a17103 wm_adsp_compr_copy +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xd70da0ed wm_adsp_read_ctl EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xdd3c79ef wm_adsp2_bus_error -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xdd9ac162 wm_adsp2_set_dspclk +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xe23f9968 wm_adsp_compr_free 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 0xf71c8b45 wm_adsp_fw_put -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xfe39ebd8 wm_adsp2_preloader_get -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x006e99e1 wm_hubs_hpr_mux -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x0cc40cb7 wm_hubs_add_analogue_routes -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x39b2fa0a wm_hubs_hpl_mux -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x48b84c37 wm_hubs_add_analogue_controls +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xeae5ae01 wm_adsp2_component_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xf2729e0c wm_adsp_fw_enum +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xf3ac5c5e wm_adsp2_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x1e5c93f7 wm_hubs_vmid_ena +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x459831b7 wm_hubs_add_analogue_controls +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x568cdcb0 wm_hubs_hpr_mux EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x5cd7eb9b wm_hubs_dcs_done -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x5fbbe11d wm_hubs_update_class_w +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x6f50bf5b wm_hubs_hpl_mux EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x757206d5 wm_hubs_spkmix_tlv -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x7ab7891a wm_hubs_vmid_ena -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x7ceac5fb wm_hubs_set_bias_level -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xb8288ee2 wm_hubs_handle_analogue_pdata -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x2ab3e29e wm8804_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x58e41980 wm8804_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xec1896db wm8804_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xfbf377b9 wm8804_pm -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0xdfc32027 wm8903_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0xbb06fa22 wm8962_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8994 0x4eba6eaa wm8958_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8994 0xa1d3aa88 wm8994_mic_detect -EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0x25588f81 fsl_asrc_component +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x790c8da4 wm_hubs_update_class_w +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x942d22ed wm_hubs_set_bias_level +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xab9956cd wm_hubs_handle_analogue_pdata +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xb84dcc03 wm_hubs_add_analogue_routes +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x794cc235 wm8804_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xbcd12ee6 wm8804_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xefe67fe0 wm8804_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xf4b4b36f wm8804_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0x447616ba wm8903_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0xa7d90262 wm8962_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8994 0x8e2b13ca wm8994_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8994 0xdfcb80b5 wm8958_mic_detect +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0x2a9a68af 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 0xb9804714 audio_graph_parse_of -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x1320c97b asoc_simple_set_dailink_name -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x42a124cd asoc_simple_canonicalize_platform -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x4d1d8034 asoc_simple_parse_card_name -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x53e19859 asoc_simple_canonicalize_cpu -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x666ad040 asoc_simple_init_jack -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x6d3fcd46 asoc_simple_hw_params -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x74b61326 asoc_simple_clean_reference -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x7cddf176 asoc_simple_shutdown -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x83940851 asoc_simple_init_priv -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x8d8a805a asoc_simple_parse_pin_switches -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x9ecb6918 asoc_simple_dai_init -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x9f1efe32 asoc_simple_parse_clk -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x9fae13af asoc_graph_card_probe -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xa6afca02 asoc_simple_parse_convert -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xac6bca32 asoc_simple_parse_routing -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xb3644801 asoc_simple_parse_widgets -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xbfb936a7 asoc_simple_be_hw_params_fixup -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xc597a0ee asoc_simple_startup -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xd3c22ca1 asoc_simple_remove +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-audio-graph-card 0x93ae8149 audio_graph_parse_of +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x0ac79f3d asoc_simple_startup +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x1cb869cc asoc_simple_shutdown +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x22ef4bb8 asoc_simple_parse_clk +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x341811f3 asoc_simple_parse_daifmt +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x35deb6c7 asoc_simple_init_jack +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x3cb414f4 asoc_simple_parse_convert +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x4daae39a asoc_simple_set_dailink_name +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x6321b7e4 asoc_graph_card_probe +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x63e9fc25 asoc_simple_dai_init +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x75597f77 asoc_simple_canonicalize_platform +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x8049b2d1 asoc_simple_remove +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x8d7f9691 asoc_simple_parse_widgets +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x987d2213 asoc_simple_be_hw_params_fixup +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xb36dfb54 asoc_simple_parse_card_name +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xd6c99bc4 asoc_simple_parse_routing +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xd6edbb01 asoc_simple_parse_pin_switches +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xdc09a61f asoc_simple_init_priv +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xe73ba424 asoc_simple_hw_params EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xf3bafb75 asoc_simple_convert_fixup -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xf7c97cc9 asoc_simple_parse_daifmt -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x08f15899 mtk_memif_set_format -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x0c67ba18 mtk_memif_set_enable -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x28decd30 mtk_afe_pcm_platform -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x352c288b mtk_memif_set_pbuf_size -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x39e2c0ae mtk_afe_fe_hw_params -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x3e8399ac mtk_afe_pcm_new -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x40bf43df mtk_afe_resume -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x4231313e mtk_afe_fe_hw_free -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x4c157323 mtk_memif_set_disable -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x540792d5 mtk_dynamic_irq_release -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x5c2cbd2f mtk_afe_fe_startup -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x6727b81b mtk_afe_combine_sub_dai -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x7ae1c336 mtk_memif_set_rate -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x8cee1b57 mtk_afe_fe_ops -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xb1a50a61 mtk_afe_suspend -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xb37bc3ba mtk_memif_set_channel -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xbda38aa0 mtk_afe_add_sub_dai_control -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xbf2b749d mtk_memif_set_addr -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xd6b1b47b mtk_afe_fe_shutdown -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xd8499a90 mtk_dynamic_irq_acquire -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xe1ca4d54 mtk_afe_pcm_pointer -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xe7c377cd mtk_afe_fe_prepare -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xe8dddc1c mtk_afe_fe_trigger -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xfa6d2d66 mtk_memif_set_rate_substream -EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8195/snd-soc-mt8195-afe 0x043510c9 mt8195_afe_disable_clk -EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8195/snd-soc-mt8195-afe 0x080741b9 mt8195_afe_enable_clk -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x1cba14b0 axg_fifo_pcm_hw_params -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x2774922e axg_fifo_pcm_close -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x7004c2ea axg_fifo_pcm_pointer -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x72ea3ab0 axg_fifo_pcm_new -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x796c52bb axg_fifo_pcm_hw_free -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x865484f4 axg_fifo_pcm_trigger -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x8c549e67 g12a_fifo_pcm_hw_params -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x9a4decf6 axg_fifo_pcm_open -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xa0a288d8 axg_fifo_probe +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xf5719b27 asoc_simple_clean_reference +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xf6b31719 asoc_simple_canonicalize_cpu +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x03af9df0 mtk_afe_resume +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x0a7b2db2 mtk_afe_fe_ops +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x1317ae05 mtk_afe_fe_shutdown +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x231f038f mtk_memif_set_disable +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x2ef1d566 mtk_afe_pcm_platform +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x438b8f25 mtk_afe_suspend +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x52598138 mtk_afe_fe_trigger +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x59be0687 mtk_afe_combine_sub_dai +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x68e1e524 mtk_afe_fe_hw_params +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x6b701761 mtk_dynamic_irq_acquire +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x7d8b6620 mtk_memif_set_rate +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x80e3454e mtk_memif_set_rate_substream +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x81657a0b mtk_afe_pcm_new +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x83e1ef6e mtk_afe_add_sub_dai_control +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x8b7ea863 mtk_memif_set_channel +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x9936a42a mtk_dynamic_irq_release +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xa51255ed mtk_memif_set_addr +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xb4b45462 mtk_afe_fe_hw_free +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xbe9e0bf9 mtk_afe_fe_startup +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xd6403418 mtk_afe_pcm_pointer +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xd711b43f mtk_afe_fe_prepare +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xde2ff4f9 mtk_memif_set_enable +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xe6ba9f06 mtk_memif_set_format +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xf9c87a56 mtk_memif_set_pbuf_size +EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8195/snd-soc-mt8195-afe 0x97fd32da mt8195_afe_enable_clk +EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8195/snd-soc-mt8195-afe 0xa2426501 mt8195_afe_disable_clk +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x0a259895 axg_fifo_pcm_close +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x352cc46b axg_fifo_pcm_open +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x35a6c153 axg_fifo_pcm_trigger +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x4b45dce4 axg_fifo_pcm_new +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x62bcd269 g12a_fifo_pcm_hw_params +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xa3f0d5bb axg_fifo_probe +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xabe20090 axg_fifo_pcm_hw_free +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xcdc7700c axg_fifo_pcm_hw_params +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xf5ac3613 axg_fifo_pcm_pointer EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x14468237 axg_tdm_formatter_set_channel_masks +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x20d74878 axg_tdm_formatter_probe +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x2fe643c9 axg_tdm_formatter_event EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x314f9f02 axg_tdm_stream_alloc -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x3b205d2a axg_tdm_formatter_event -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x3e1171d7 axg_tdm_formatter_probe EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x443d22ba axg_tdm_stream_free EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x506c837c axg_tdm_stream_stop EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x970060bd axg_tdm_stream_start -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-interface 0x410fe301 axg_tdm_set_tdm_slots -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x01ff6682 meson_card_remove -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x053cb1f9 meson_card_set_fe_link -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x36f6152a meson_card_set_be_link -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x4768d476 meson_card_reallocate_links -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x48e03141 meson_card_i2s_set_sysclk -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0xa411de0e meson_card_parse_dai -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0xb51f3748 meson_card_parse_daifmt -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0xf39416a2 meson_card_probe -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x3c2c1cab meson_codec_glue_input_dai_remove -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x67a596f7 meson_codec_glue_output_startup -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0xbb522d3b meson_codec_glue_input_set_fmt -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0xc12705de meson_codec_glue_input_dai_probe -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0xc23181b1 meson_codec_glue_input_hw_params -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0xf49cdada meson_codec_glue_input_get_data +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-interface 0xd883cb37 axg_tdm_set_tdm_slots +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x1eac61ed meson_card_remove +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x2c7f91cf meson_card_i2s_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x3141bd62 meson_card_set_be_link +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x4451e4f7 meson_card_parse_daifmt +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x55f8c3f4 meson_card_parse_dai +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x7343c586 meson_card_set_fe_link +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0xce987f12 meson_card_probe +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0xf2443300 meson_card_reallocate_links +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x0fa3265b meson_codec_glue_input_dai_probe +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x91593662 meson_codec_glue_input_dai_remove +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x9dc12d06 meson_codec_glue_input_get_data +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x9ff560a3 meson_codec_glue_input_hw_params +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0xc33e5998 meson_codec_glue_output_startup +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0xdbaddac1 meson_codec_glue_input_set_fmt +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0x19d452be q6adm_close EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0x28421460 q6adm_get_copp_id -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0x453d8f3d q6adm_open -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0xdaba5716 q6adm_matrix_map -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0xe4f42120 q6adm_close +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0x877a0642 q6adm_open +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0xf7f7de51 q6adm_matrix_map EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x07a54780 q6afe_cdc_dma_port_prepare -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x0e5869d8 q6afe_set_lpass_clock EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x369b6eeb q6afe_port_put EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x3b16d6e7 q6afe_port_stop EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x498d993b q6afe_get_port_id EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x5332304f q6afe_slim_port_prepare +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x79149fa7 q6afe_set_lpass_clock +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x79b5e6a8 q6afe_port_get_from_id EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x7df60063 q6afe_port_set_sysclk -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x94db8477 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 @@ -18346,6 +18400,7 @@ EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x1b6c77fc q6asm_stream_media_format_block_alac EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x25bfa476 q6asm_open_write EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x2b693eed q6asm_stream_media_format_block_wma_v9 +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x3384eb51 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 @@ -18353,7 +18408,6 @@ EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x856b4fdb q6asm_stream_media_format_block_wma_v10 EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x9d0cf85f q6asm_stream_media_format_block_flac EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xa7d3a3a6 q6asm_media_format_block_multi_ch_pcm -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xafaea9bc q6asm_audio_client_alloc EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xb37ed108 q6asm_enc_cfg_blk_pcm_format_support EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xb4f98cb3 q6asm_map_memory_regions EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xc0dd8d67 q6asm_open_read @@ -18372,6651 +18426,6659 @@ -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x8eeb045f asoc_qcom_lpass_cpu_dai_ops -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0xb6778b07 asoc_qcom_lpass_cpu_platform_shutdown -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0xc27dcd5d asoc_qcom_lpass_cpu_dai_probe -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0xee25345f asoc_qcom_lpass_cpu_platform_remove -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0xf346ef85 lpass_cpu_pcm_new -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0xfcd6e1e1 asoc_qcom_lpass_cpu_platform_probe -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-hdmi 0xb4fa63c8 asoc_qcom_lpass_hdmi_dai_ops -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-platform 0x85278ff6 asoc_qcom_lpass_platform_register -EXPORT_SYMBOL_GPL sound/soc/rockchip/snd-soc-rockchip-pcm 0xaa9803b0 rockchip_pcm_platform_register +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x32926ed3 asoc_qcom_lpass_cpu_dai_probe +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x61cae06d asoc_qcom_lpass_cpu_platform_remove +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x8512ffb1 asoc_qcom_lpass_cpu_dai_ops +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0xc214445e asoc_qcom_lpass_cpu_platform_probe +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0xd2fd43d4 lpass_cpu_pcm_new +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0xd707bf97 asoc_qcom_lpass_cpu_platform_shutdown +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-hdmi 0xf343554c asoc_qcom_lpass_hdmi_dai_ops +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-platform 0x90cfab5f asoc_qcom_lpass_platform_register +EXPORT_SYMBOL_GPL sound/soc/rockchip/snd-soc-rockchip-pcm 0x31dec9a9 rockchip_pcm_platform_register EXPORT_SYMBOL_GPL sound/soc/samsung/snd-soc-idma 0x14e9ba13 idma_reg_addr_init -EXPORT_SYMBOL_GPL sound/soc/samsung/snd-soc-s3c-dma 0xef4606fd samsung_asoc_dma_platform_register -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x93e72d42 snd_sof_debugfs_io_item -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x9b59cc0b snd_sof_dbg_memory_info_init -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0xbe926106 snd_sof_dbg_init -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0xed2c3b4b snd_sof_debugfs_buf_item -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0xef8aec30 snd_sof_free_debug -EXPORT_SYMBOL_GPL sound/soc/ti/snd-soc-omap-mcbsp 0x4e241475 omap_mcbsp_st_add_controls -EXPORT_SYMBOL_GPL sound/soc/ti/snd-soc-ti-edma 0x8c7a05e4 edma_pcm_platform_register -EXPORT_SYMBOL_GPL sound/soc/ti/snd-soc-ti-sdma 0x7b8faf60 sdma_pcm_platform_register -EXPORT_SYMBOL_GPL sound/soc/ti/snd-soc-ti-udma 0x5d70e442 udma_pcm_platform_register -EXPORT_SYMBOL_GPL sound/soc/uniphier/snd-soc-uniphier-aio-cpu 0x5981c776 uniphier_aio_remove -EXPORT_SYMBOL_GPL sound/soc/uniphier/snd-soc-uniphier-aio-cpu 0x76cf1137 uniphier_aio_dai_remove -EXPORT_SYMBOL_GPL sound/soc/uniphier/snd-soc-uniphier-aio-cpu 0xc60618c0 uniphier_aio_i2s_ops -EXPORT_SYMBOL_GPL sound/soc/uniphier/snd-soc-uniphier-aio-cpu 0xc9fb2c6c uniphier_aio_spdif_ops -EXPORT_SYMBOL_GPL sound/soc/uniphier/snd-soc-uniphier-aio-cpu 0xe579f39f uniphier_aio_probe -EXPORT_SYMBOL_GPL sound/soc/uniphier/snd-soc-uniphier-aio-cpu 0xf383b288 uniphier_aiodma_soc_register_platform -EXPORT_SYMBOL_GPL sound/soc/uniphier/snd-soc-uniphier-aio-cpu 0xfd8fd8ba uniphier_aio_dai_probe -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x0244e33e line6_write_data -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x1d96b173 line6_read_serial_number +EXPORT_SYMBOL_GPL sound/soc/samsung/snd-soc-s3c-dma 0x298b79a5 samsung_asoc_dma_platform_register +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x1fa34e0d snd_sof_dbg_init +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x21085f32 snd_sof_debugfs_io_item +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x2587f48a snd_sof_dbg_memory_info_init +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0xca46bcfa snd_sof_debugfs_buf_item +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0xdd4c9e8b snd_sof_free_debug +EXPORT_SYMBOL_GPL sound/soc/ti/snd-soc-omap-mcbsp 0x08e58d4b omap_mcbsp_st_add_controls +EXPORT_SYMBOL_GPL sound/soc/ti/snd-soc-ti-edma 0x9438ea7b edma_pcm_platform_register +EXPORT_SYMBOL_GPL sound/soc/ti/snd-soc-ti-sdma 0x28bd63ec sdma_pcm_platform_register +EXPORT_SYMBOL_GPL sound/soc/ti/snd-soc-ti-udma 0xa3fe6c47 udma_pcm_platform_register +EXPORT_SYMBOL_GPL sound/soc/uniphier/snd-soc-uniphier-aio-cpu 0x0837004e uniphier_aiodma_soc_register_platform +EXPORT_SYMBOL_GPL sound/soc/uniphier/snd-soc-uniphier-aio-cpu 0x4aac259e uniphier_aio_dai_probe +EXPORT_SYMBOL_GPL sound/soc/uniphier/snd-soc-uniphier-aio-cpu 0x600dae8c uniphier_aio_remove +EXPORT_SYMBOL_GPL sound/soc/uniphier/snd-soc-uniphier-aio-cpu 0x7a120f5e uniphier_aio_dai_remove +EXPORT_SYMBOL_GPL sound/soc/uniphier/snd-soc-uniphier-aio-cpu 0xba7555c3 uniphier_aio_spdif_ops +EXPORT_SYMBOL_GPL sound/soc/uniphier/snd-soc-uniphier-aio-cpu 0xc1c8a973 uniphier_aio_i2s_ops +EXPORT_SYMBOL_GPL sound/soc/uniphier/snd-soc-uniphier-aio-cpu 0xde2ba31f uniphier_aio_probe +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x0694ac32 line6_init_midi +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x0ea8b7b7 line6_version_request_async EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x202a1b1b line6_midi_id -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x2136aa5a line6_pcm_acquire -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x270dbbe8 line6_pcm_release -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x4492c05d line6_suspend -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x51fb633a line6_send_raw_message -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x5b2a9477 line6_version_request_async -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x5b5609ce line6_send_sysex_message -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x5bf3d426 line6_read_data -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x725e32bb line6_send_raw_message_async -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x9208f859 line6_resume -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xaf24a44c line6_disconnect -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xcc57fa5a line6_init_pcm -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xd327d0dd line6_probe -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xe62c9808 line6_init_midi -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xe7f8f6b1 line6_alloc_sysex_buffer +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x2450d80a line6_send_raw_message +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x2923eb6e line6_pcm_acquire +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x2ba44cc0 line6_read_serial_number +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x2d36d3f6 line6_pcm_release +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x3bf229a5 line6_disconnect +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x40eb5ad0 line6_send_sysex_message +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x59136c22 line6_suspend +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x728c3e79 line6_read_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x7a98faa6 line6_alloc_sysex_buffer +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x910f5bfe line6_write_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xae12de40 line6_init_pcm +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xc7ff7db8 line6_resume +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xf37fc9a6 line6_probe +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xf81a00e6 line6_send_raw_message_async EXPORT_SYMBOL_GPL virt/lib/irqbypass 0x3fe35aea irq_bypass_unregister_consumer EXPORT_SYMBOL_GPL virt/lib/irqbypass 0x418873cc irq_bypass_register_producer EXPORT_SYMBOL_GPL virt/lib/irqbypass 0x888c5be5 irq_bypass_register_consumer EXPORT_SYMBOL_GPL virt/lib/irqbypass 0xf6e772c3 irq_bypass_unregister_producer -EXPORT_SYMBOL_GPL vmlinux 0x0021eea4 led_trigger_blink -EXPORT_SYMBOL_GPL vmlinux 0x003ba96a tcp_register_ulp -EXPORT_SYMBOL_GPL vmlinux 0x004b622d pci_find_next_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0x00007f8c irq_domain_xlate_twocell +EXPORT_SYMBOL_GPL vmlinux 0x0011caac trace_array_set_clr_event +EXPORT_SYMBOL_GPL vmlinux 0x001dfcfc __devm_irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0x003973dc platform_msi_domain_alloc_irqs +EXPORT_SYMBOL_GPL vmlinux 0x00469845 phy_create_lookup +EXPORT_SYMBOL_GPL vmlinux 0x004d0700 snd_dmaengine_pcm_refine_runtime_hwparams +EXPORT_SYMBOL_GPL vmlinux 0x00504042 skcipher_walk_complete EXPORT_SYMBOL_GPL vmlinux 0x00513f58 get_timespec64 EXPORT_SYMBOL_GPL vmlinux 0x0053e821 tracepoint_probe_register_prio_may_exist -EXPORT_SYMBOL_GPL vmlinux 0x006155e3 devm_kmalloc +EXPORT_SYMBOL_GPL vmlinux 0x005c6a53 device_set_wakeup_enable EXPORT_SYMBOL_GPL vmlinux 0x00632780 work_busy -EXPORT_SYMBOL_GPL vmlinux 0x0073d006 regulator_enable_regmap -EXPORT_SYMBOL_GPL vmlinux 0x0075e41f usb_queue_reset_device -EXPORT_SYMBOL_GPL vmlinux 0x00882d95 dev_pm_opp_init_cpufreq_table -EXPORT_SYMBOL_GPL vmlinux 0x00b28140 mtd_get_device_size -EXPORT_SYMBOL_GPL vmlinux 0x00b294d4 fwnode_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0x00cab6ba snd_soc_component_compr_free +EXPORT_SYMBOL_GPL vmlinux 0x007f8598 devm_hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0083219a serdev_device_get_tiocm +EXPORT_SYMBOL_GPL vmlinux 0x0099955a of_clk_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0x00a1185f skb_cow_data +EXPORT_SYMBOL_GPL vmlinux 0x00a38b68 regulator_get_error_flags +EXPORT_SYMBOL_GPL vmlinux 0x00b2792d snd_ctl_register_layer +EXPORT_SYMBOL_GPL vmlinux 0x00b5db54 device_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x00c06d26 sync_page_io +EXPORT_SYMBOL_GPL vmlinux 0x00d2f6c7 snd_soc_put_strobe EXPORT_SYMBOL_GPL vmlinux 0x00d4c500 usb_decode_interval -EXPORT_SYMBOL_GPL vmlinux 0x00dc2552 rockchip_clk_register_armclk -EXPORT_SYMBOL_GPL vmlinux 0x00e2e117 snd_soc_put_volsw -EXPORT_SYMBOL_GPL vmlinux 0x00fcd3da tps65217_clear_bits -EXPORT_SYMBOL_GPL vmlinux 0x011b31a5 pci_epc_get_features -EXPORT_SYMBOL_GPL vmlinux 0x011e5a48 snd_pcm_stream_unlock_irqrestore -EXPORT_SYMBOL_GPL vmlinux 0x012e0daa hisi_clk_register_phase -EXPORT_SYMBOL_GPL vmlinux 0x01498c2c pci_epc_get +EXPORT_SYMBOL_GPL vmlinux 0x00f59695 serial8250_read_char +EXPORT_SYMBOL_GPL vmlinux 0x00ff1d08 snd_soc_dai_compr_ack +EXPORT_SYMBOL_GPL vmlinux 0x011fb877 regmap_write +EXPORT_SYMBOL_GPL vmlinux 0x0124737f hvc_poll +EXPORT_SYMBOL_GPL vmlinux 0x01347372 debugfs_attr_read +EXPORT_SYMBOL_GPL vmlinux 0x01446e29 edac_pci_alloc_ctl_info EXPORT_SYMBOL_GPL vmlinux 0x014e8186 cpu_scale -EXPORT_SYMBOL_GPL vmlinux 0x016ab4fa snd_soc_find_dai_with_mutex -EXPORT_SYMBOL_GPL vmlinux 0x01770b01 ata_sff_prereset -EXPORT_SYMBOL_GPL vmlinux 0x01777ca7 get_device +EXPORT_SYMBOL_GPL vmlinux 0x01638b99 tc3589x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x01686184 device_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x016cc540 irq_chip_set_wake_parent +EXPORT_SYMBOL_GPL vmlinux 0x01740c02 seg6_do_srh_encap +EXPORT_SYMBOL_GPL vmlinux 0x0176c7a6 md_rdev_clear +EXPORT_SYMBOL_GPL vmlinux 0x0182cc81 trace_event_raw_init EXPORT_SYMBOL_GPL vmlinux 0x01866a57 ezx_pcap_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x01898b65 snd_soc_add_dai_controls +EXPORT_SYMBOL_GPL vmlinux 0x018d9e5b devlink_region_snapshot_id_put +EXPORT_SYMBOL_GPL vmlinux 0x01905fdc bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0x0194c6bb adp5520_read +EXPORT_SYMBOL_GPL vmlinux 0x01a251a8 led_trigger_unregister_simple +EXPORT_SYMBOL_GPL vmlinux 0x01aa184c xfrm_audit_policy_delete EXPORT_SYMBOL_GPL vmlinux 0x01b12bfb usb_ep_free_request -EXPORT_SYMBOL_GPL vmlinux 0x01bdb394 mmc_regulator_set_vqmmc +EXPORT_SYMBOL_GPL vmlinux 0x01b5a9ce crypto_destroy_tfm +EXPORT_SYMBOL_GPL vmlinux 0x01b68bc2 scsi_autopm_get_device +EXPORT_SYMBOL_GPL vmlinux 0x01b8721a perf_event_update_userpage EXPORT_SYMBOL_GPL vmlinux 0x01c6cb0c cpu_cluster_pm_enter -EXPORT_SYMBOL_GPL vmlinux 0x01d73cf4 regulator_is_supported_voltage EXPORT_SYMBOL_GPL vmlinux 0x01e1a8de kgdb_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x01eebbb8 l3mdev_table_lookup_register -EXPORT_SYMBOL_GPL vmlinux 0x01f8560c ehci_adjust_port_wakeup_flags -EXPORT_SYMBOL_GPL vmlinux 0x01fa6117 da903x_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x01fd8450 pm_runtime_get_if_active EXPORT_SYMBOL_GPL vmlinux 0x0207a6c6 reset_control_bulk_acquire -EXPORT_SYMBOL_GPL vmlinux 0x0207cae3 ping_unhash -EXPORT_SYMBOL_GPL vmlinux 0x020fc4f5 __traceiter_pelt_rt_tp -EXPORT_SYMBOL_GPL vmlinux 0x022d904c snd_soc_bytes_info -EXPORT_SYMBOL_GPL vmlinux 0x023534b9 devm_serdev_device_open -EXPORT_SYMBOL_GPL vmlinux 0x0236d884 nfnl_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0x0213b859 phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0x02155ff2 devm_fwnode_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x021c07ba simple_attr_read EXPORT_SYMBOL_GPL vmlinux 0x02394899 play_idle_precise -EXPORT_SYMBOL_GPL vmlinux 0x024a6a69 amba_device_put -EXPORT_SYMBOL_GPL vmlinux 0x024b6f77 skb_mpls_pop -EXPORT_SYMBOL_GPL vmlinux 0x02564e2a of_prop_next_string -EXPORT_SYMBOL_GPL vmlinux 0x025fb20e lwtunnel_output -EXPORT_SYMBOL_GPL vmlinux 0x0264372d class_dev_iter_init -EXPORT_SYMBOL_GPL vmlinux 0x026e090b cgroup_path_ns +EXPORT_SYMBOL_GPL vmlinux 0x023a1ec8 mtd_block_isreserved +EXPORT_SYMBOL_GPL vmlinux 0x02449049 devfreq_get_devfreq_by_phandle EXPORT_SYMBOL_GPL vmlinux 0x026f3380 btree_lookup -EXPORT_SYMBOL_GPL vmlinux 0x02706a3b devm_request_pci_bus_resources -EXPORT_SYMBOL_GPL vmlinux 0x02845c88 bpf_redirect_info -EXPORT_SYMBOL_GPL vmlinux 0x028e5f17 __sdhci_read_caps -EXPORT_SYMBOL_GPL vmlinux 0x0298a251 usb_put_hcd -EXPORT_SYMBOL_GPL vmlinux 0x02b56c2a param_set_bool_enable_only -EXPORT_SYMBOL_GPL vmlinux 0x02c054f2 vfs_getxattr -EXPORT_SYMBOL_GPL vmlinux 0x02c3f6eb input_class +EXPORT_SYMBOL_GPL vmlinux 0x027f1020 __udp_enqueue_schedule_skb +EXPORT_SYMBOL_GPL vmlinux 0x0288d301 gpiochip_remove_pin_ranges +EXPORT_SYMBOL_GPL vmlinux 0x02965dca input_ff_event +EXPORT_SYMBOL_GPL vmlinux 0x029e7698 sata_link_scr_lpm +EXPORT_SYMBOL_GPL vmlinux 0x02aa34b0 wait_on_page_writeback +EXPORT_SYMBOL_GPL vmlinux 0x02be7c4c iommu_domain_alloc EXPORT_SYMBOL_GPL vmlinux 0x02c4c456 rhashtable_walk_exit -EXPORT_SYMBOL_GPL vmlinux 0x02c99afb devm_pm_runtime_enable -EXPORT_SYMBOL_GPL vmlinux 0x02cb2f9c transport_remove_device -EXPORT_SYMBOL_GPL vmlinux 0x02cc4f4e i2c_of_match_device -EXPORT_SYMBOL_GPL vmlinux 0x02d3e29f rio_unlock_device -EXPORT_SYMBOL_GPL vmlinux 0x02e3b98f crypto_hash_alg_has_setkey -EXPORT_SYMBOL_GPL vmlinux 0x02e4865b regulator_set_ramp_delay_regmap +EXPORT_SYMBOL_GPL vmlinux 0x02d64052 shash_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x02d71822 stmpe811_adc_common_init +EXPORT_SYMBOL_GPL vmlinux 0x02ddf103 get_user_pages_fast_only +EXPORT_SYMBOL_GPL vmlinux 0x02e5fe26 regulator_force_disable EXPORT_SYMBOL_GPL vmlinux 0x02ea61a6 dax_flush -EXPORT_SYMBOL_GPL vmlinux 0x02fa9886 devlink_dpipe_table_counter_enabled -EXPORT_SYMBOL_GPL vmlinux 0x0301fe7c dev_pm_opp_adjust_voltage -EXPORT_SYMBOL_GPL vmlinux 0x030209ff sdhci_pltfm_resume -EXPORT_SYMBOL_GPL vmlinux 0x03034637 nand_reset +EXPORT_SYMBOL_GPL vmlinux 0x0300a542 driver_create_file +EXPORT_SYMBOL_GPL vmlinux 0x0303b949 bio_associate_blkg_from_css +EXPORT_SYMBOL_GPL vmlinux 0x03106eec gpiod_unexport EXPORT_SYMBOL_GPL vmlinux 0x0312b3b0 reset_controller_add_lookup -EXPORT_SYMBOL_GPL vmlinux 0x031bc7c4 ata_bmdma_status EXPORT_SYMBOL_GPL vmlinux 0x031cb2ab sched_trace_rd_span -EXPORT_SYMBOL_GPL vmlinux 0x031ece78 simple_attr_write EXPORT_SYMBOL_GPL vmlinux 0x0321cdbf of_alias_get_highest_id -EXPORT_SYMBOL_GPL vmlinux 0x0326aa58 gpiod_get_array_value +EXPORT_SYMBOL_GPL vmlinux 0x03294056 devm_regulator_get +EXPORT_SYMBOL_GPL vmlinux 0x032b488e mtk_pinconf_adv_drive_set_raw +EXPORT_SYMBOL_GPL vmlinux 0x0330f0aa crypto_register_skcipher EXPORT_SYMBOL_GPL vmlinux 0x03315f0c btree_destroy EXPORT_SYMBOL_GPL vmlinux 0x033832c7 usb_amd_hang_symptom_quirk +EXPORT_SYMBOL_GPL vmlinux 0x03387c73 of_clk_hw_onecell_get +EXPORT_SYMBOL_GPL vmlinux 0x0339f4c8 snd_soc_dapm_force_bias_level EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list -EXPORT_SYMBOL_GPL vmlinux 0x0346a22b mtd_ooblayout_set_eccbytes -EXPORT_SYMBOL_GPL vmlinux 0x0354bafe irq_chip_release_resources_parent -EXPORT_SYMBOL_GPL vmlinux 0x035caaf7 sk_msg_alloc -EXPORT_SYMBOL_GPL vmlinux 0x03667145 dev_pm_opp_get_of_node +EXPORT_SYMBOL_GPL vmlinux 0x0357124c __traceiter_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0x035f85bf vp_modern_get_queue_enable EXPORT_SYMBOL_GPL vmlinux 0x036d8e9b klist_add_tail -EXPORT_SYMBOL_GPL vmlinux 0x037a586b set_cpus_allowed_ptr -EXPORT_SYMBOL_GPL vmlinux 0x03825cbd perf_get_aux -EXPORT_SYMBOL_GPL vmlinux 0x03948556 clk_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x037b143e fat_setattr +EXPORT_SYMBOL_GPL vmlinux 0x03899e3c phy_pm_runtime_put_sync +EXPORT_SYMBOL_GPL vmlinux 0x038a95d0 driver_attach +EXPORT_SYMBOL_GPL vmlinux 0x03917e60 __clk_hw_register_fixed_rate EXPORT_SYMBOL_GPL vmlinux 0x03952887 ktime_add_safe -EXPORT_SYMBOL_GPL vmlinux 0x039f4441 snd_pcm_stream_lock_irq -EXPORT_SYMBOL_GPL vmlinux 0x03a0d577 serdev_device_alloc -EXPORT_SYMBOL_GPL vmlinux 0x03a62d01 rio_mport_class -EXPORT_SYMBOL_GPL vmlinux 0x03ae4948 wm8350_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x03979604 devm_thermal_zone_of_sensor_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0397a50a ip_route_output_flow +EXPORT_SYMBOL_GPL vmlinux 0x03a1c760 xfrm_state_mtu +EXPORT_SYMBOL_GPL vmlinux 0x03aee4be mbox_client_peek_data +EXPORT_SYMBOL_GPL vmlinux 0x03b22819 blk_ksm_init EXPORT_SYMBOL_GPL vmlinux 0x03b2623e __tracepoint_devlink_trap_report -EXPORT_SYMBOL_GPL vmlinux 0x03b3e8d2 debugfs_create_symlink -EXPORT_SYMBOL_GPL vmlinux 0x03b932e0 acomp_request_free -EXPORT_SYMBOL_GPL vmlinux 0x03dc8b18 xdp_master_redirect +EXPORT_SYMBOL_GPL vmlinux 0x03d11481 xhci_add_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x03d5db03 uart_xchar_out EXPORT_SYMBOL_GPL vmlinux 0x03e28260 sbitmap_queue_wake_up -EXPORT_SYMBOL_GPL vmlinux 0x03f4f666 mmc_crypto_setup_queue -EXPORT_SYMBOL_GPL vmlinux 0x03fc763b usb_hcd_unmap_urb_setup_for_dma -EXPORT_SYMBOL_GPL vmlinux 0x0406d2fa pcie_aspm_enabled -EXPORT_SYMBOL_GPL vmlinux 0x04266a3d pcie_reset_flr -EXPORT_SYMBOL_GPL vmlinux 0x04268683 spi_mem_dirmap_write -EXPORT_SYMBOL_GPL vmlinux 0x04276dcb palmas_ext_control_req_config -EXPORT_SYMBOL_GPL vmlinux 0x04278d2c crypto_unregister_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x03ea5847 of_dma_request_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x03edf8fc snd_soc_dpcm_can_be_params +EXPORT_SYMBOL_GPL vmlinux 0x03fe6521 mtk_mutex_get +EXPORT_SYMBOL_GPL vmlinux 0x0404464d rdev_clear_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x04285440 ata_scsi_dma_need_drain EXPORT_SYMBOL_GPL vmlinux 0x042c9a04 em_cpu_get -EXPORT_SYMBOL_GPL vmlinux 0x042dd3aa device_property_read_string -EXPORT_SYMBOL_GPL vmlinux 0x045ccd83 dma_buf_begin_cpu_access -EXPORT_SYMBOL_GPL vmlinux 0x045d7ee1 sdhci_set_bus_width +EXPORT_SYMBOL_GPL vmlinux 0x04472201 cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0x0449ef0c serial8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x04642442 md_find_rdev_rcu EXPORT_SYMBOL_GPL vmlinux 0x0465a073 regmap_reg_in_ranges -EXPORT_SYMBOL_GPL vmlinux 0x046b2279 metadata_dst_free -EXPORT_SYMBOL_GPL vmlinux 0x046e935c pm_generic_thaw_early +EXPORT_SYMBOL_GPL vmlinux 0x046e6e62 __regmap_init_mmio_clk EXPORT_SYMBOL_GPL vmlinux 0x046f359e of_overlay_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x0470ead1 usb_hub_find_child -EXPORT_SYMBOL_GPL vmlinux 0x0478fb4a tcp_done -EXPORT_SYMBOL_GPL vmlinux 0x047a625f devlink_port_params_register -EXPORT_SYMBOL_GPL vmlinux 0x047f6aa1 bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0x0475707a icc_provider_add +EXPORT_SYMBOL_GPL vmlinux 0x047b8dfd extcon_set_property +EXPORT_SYMBOL_GPL vmlinux 0x04815a92 ip6_pol_route +EXPORT_SYMBOL_GPL vmlinux 0x04838bc5 usb_find_alt_setting +EXPORT_SYMBOL_GPL vmlinux 0x0486ba06 __traceiter_neigh_timer_handler EXPORT_SYMBOL_GPL vmlinux 0x048b5f8d twl4030_audio_get_mclk -EXPORT_SYMBOL_GPL vmlinux 0x049ce9d1 register_wide_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x04a9ba2e gpiochip_line_is_irq +EXPORT_SYMBOL_GPL vmlinux 0x04916a3a ata_bmdma_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x04994eda split_page +EXPORT_SYMBOL_GPL vmlinux 0x049ede96 __traceiter_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0x04a986eb ata_dev_set_feature EXPORT_SYMBOL_GPL vmlinux 0x04ae4635 trace_handle_return -EXPORT_SYMBOL_GPL vmlinux 0x04b10a8a pm_runtime_autosuspend_expiration -EXPORT_SYMBOL_GPL vmlinux 0x04b5dee7 rio_release_inb_mbox -EXPORT_SYMBOL_GPL vmlinux 0x04b7b567 tty_mode_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x04b7bae8 inode_sb_list_add -EXPORT_SYMBOL_GPL vmlinux 0x04c0c5df vp_modern_get_driver_features -EXPORT_SYMBOL_GPL vmlinux 0x04c46471 nexthop_for_each_fib6_nh +EXPORT_SYMBOL_GPL vmlinux 0x04bc525f usb_block_urb EXPORT_SYMBOL_GPL vmlinux 0x04c4f603 mpi_get_buffer -EXPORT_SYMBOL_GPL vmlinux 0x04c8794f sdio_writel EXPORT_SYMBOL_GPL vmlinux 0x04c8aebf console_verbose +EXPORT_SYMBOL_GPL vmlinux 0x04d5644d to_nd_blk_region +EXPORT_SYMBOL_GPL vmlinux 0x04d998e0 gen10g_config_aneg EXPORT_SYMBOL_GPL vmlinux 0x04e1b99f snd_pcm_std_chmaps -EXPORT_SYMBOL_GPL vmlinux 0x04f2434d crypto_larval_kill -EXPORT_SYMBOL_GPL vmlinux 0x0507208f pci_msi_unmask_irq -EXPORT_SYMBOL_GPL vmlinux 0x050847df snd_soc_dapm_kcontrol_dapm -EXPORT_SYMBOL_GPL vmlinux 0x050a9553 irq_setup_alt_chip -EXPORT_SYMBOL_GPL vmlinux 0x050e968b snd_soc_dapm_info_pin_switch -EXPORT_SYMBOL_GPL vmlinux 0x05110a9c regulator_get_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x052c42e1 usb_gadget_activate +EXPORT_SYMBOL_GPL vmlinux 0x04e7f4b6 clk_hw_get_parent_by_index +EXPORT_SYMBOL_GPL vmlinux 0x05092dfc ip6_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x051803f1 nf_hook_entries_insert_raw EXPORT_SYMBOL_GPL vmlinux 0x052c9aed ktime_get_real_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0x0534a85e crypto_aead_decrypt -EXPORT_SYMBOL_GPL vmlinux 0x05362347 of_genpd_add_provider_onecell +EXPORT_SYMBOL_GPL vmlinux 0x053cac6b fuse_dev_free EXPORT_SYMBOL_GPL vmlinux 0x053d738a __SCK__tp_func_br_fdb_update -EXPORT_SYMBOL_GPL vmlinux 0x054b1316 sata_scr_write -EXPORT_SYMBOL_GPL vmlinux 0x054e4b64 pci_rescan_bus EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt -EXPORT_SYMBOL_GPL vmlinux 0x054f3cad usb_find_alt_setting -EXPORT_SYMBOL_GPL vmlinux 0x0553855a of_modalias_node EXPORT_SYMBOL_GPL vmlinux 0x05610897 of_changeset_destroy -EXPORT_SYMBOL_GPL vmlinux 0x05669a8b pinctrl_dev_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x057c14a4 devm_platform_ioremap_resource_byname -EXPORT_SYMBOL_GPL vmlinux 0x057ff2c4 iomap_ioend_try_merge +EXPORT_SYMBOL_GPL vmlinux 0x0569d44e regulator_set_voltage_time +EXPORT_SYMBOL_GPL vmlinux 0x056e18e0 devm_bitmap_alloc +EXPORT_SYMBOL_GPL vmlinux 0x057becf2 pinctrl_dev_get_devname EXPORT_SYMBOL_GPL vmlinux 0x05883efb __traceiter_suspend_resume -EXPORT_SYMBOL_GPL vmlinux 0x05979355 device_add_groups +EXPORT_SYMBOL_GPL vmlinux 0x05927215 tty_release_struct +EXPORT_SYMBOL_GPL vmlinux 0x0599a250 ip6_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x059e326f __clk_hw_register_mux EXPORT_SYMBOL_GPL vmlinux 0x05a12e98 __tracepoint_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0x05b7f35e blk_add_driver_data +EXPORT_SYMBOL_GPL vmlinux 0x05ba1381 blk_lld_busy EXPORT_SYMBOL_GPL vmlinux 0x05c93cab __tracepoint_non_standard_event -EXPORT_SYMBOL_GPL vmlinux 0x05db168f usb_alloc_coherent -EXPORT_SYMBOL_GPL vmlinux 0x05e068a7 arm_iommu_create_mapping -EXPORT_SYMBOL_GPL vmlinux 0x05e69e1b udp4_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x05fc7f4b thermal_zone_get_temp -EXPORT_SYMBOL_GPL vmlinux 0x05fdb34c sk_msg_free -EXPORT_SYMBOL_GPL vmlinux 0x05fe5bd3 fat_fill_super +EXPORT_SYMBOL_GPL vmlinux 0x05cb354c inet6_csk_xmit +EXPORT_SYMBOL_GPL vmlinux 0x05cdc2f9 dw8250_setup_port +EXPORT_SYMBOL_GPL vmlinux 0x0609aa5b crypto_unregister_scomp +EXPORT_SYMBOL_GPL vmlinux 0x060e816e xfrm_audit_state_delete EXPORT_SYMBOL_GPL vmlinux 0x06122337 atomic_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0620837c fwnode_get_parent EXPORT_SYMBOL_GPL vmlinux 0x06209f49 phy_lookup_setting +EXPORT_SYMBOL_GPL vmlinux 0x06215bcf dev_pm_set_wake_irq EXPORT_SYMBOL_GPL vmlinux 0x0626da5f od_unregister_powersave_bias_handler -EXPORT_SYMBOL_GPL vmlinux 0x06309d84 usb_init_urb -EXPORT_SYMBOL_GPL vmlinux 0x0637fd55 rio_free_net -EXPORT_SYMBOL_GPL vmlinux 0x0643c239 snd_pcm_stream_unlock -EXPORT_SYMBOL_GPL vmlinux 0x06467f79 dev_pm_opp_unregister_set_opp_helper -EXPORT_SYMBOL_GPL vmlinux 0x0648b256 skb_to_sgvec_nomark -EXPORT_SYMBOL_GPL vmlinux 0x064c2d15 rdev_clear_badblocks -EXPORT_SYMBOL_GPL vmlinux 0x064cf04b regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x063f50a2 edac_device_del_device EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry -EXPORT_SYMBOL_GPL vmlinux 0x0655b26e bpf_sk_storage_diag_put -EXPORT_SYMBOL_GPL vmlinux 0x06658744 wm831x_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0x067539ab platform_add_devices -EXPORT_SYMBOL_GPL vmlinux 0x067ea884 od_register_powersave_bias_handler -EXPORT_SYMBOL_GPL vmlinux 0x0692bd8e fwnode_get_named_child_node -EXPORT_SYMBOL_GPL vmlinux 0x069a5d23 __lock_page_killable -EXPORT_SYMBOL_GPL vmlinux 0x06a26f34 usb_get_dev -EXPORT_SYMBOL_GPL vmlinux 0x06a2e68b sched_trace_rq_avg_rt -EXPORT_SYMBOL_GPL vmlinux 0x06b38cf5 __rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x06521179 ata_sff_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x0686d0b8 balloon_aops +EXPORT_SYMBOL_GPL vmlinux 0x069e5864 nf_ipv6_ops EXPORT_SYMBOL_GPL vmlinux 0x06b53bd2 memalloc_socks_key +EXPORT_SYMBOL_GPL vmlinux 0x06ba0277 syscon_regmap_lookup_by_phandle_optional +EXPORT_SYMBOL_GPL vmlinux 0x06c909e0 ndo_dflt_bridge_getlink EXPORT_SYMBOL_GPL vmlinux 0x06cca30b ring_buffer_record_off EXPORT_SYMBOL_GPL vmlinux 0x06d2b195 btree_init -EXPORT_SYMBOL_GPL vmlinux 0x06d403d1 trace_event_buffer_commit -EXPORT_SYMBOL_GPL vmlinux 0x06e83637 fat_detach +EXPORT_SYMBOL_GPL vmlinux 0x06e47f80 iommu_unmap +EXPORT_SYMBOL_GPL vmlinux 0x06e51dd5 snd_soc_dai_digital_mute EXPORT_SYMBOL_GPL vmlinux 0x06e92aea nl_table_lock -EXPORT_SYMBOL_GPL vmlinux 0x06eebcae gpiod_get_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x06ff5a38 mtk_mmsys_ddp_connect -EXPORT_SYMBOL_GPL vmlinux 0x070949f8 irq_chip_ack_parent -EXPORT_SYMBOL_GPL vmlinux 0x070d66fd snd_dmaengine_pcm_unregister -EXPORT_SYMBOL_GPL vmlinux 0x071f8540 splice_to_pipe +EXPORT_SYMBOL_GPL vmlinux 0x06f88b6c dma_vmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x06f8bcee efivar_entry_get +EXPORT_SYMBOL_GPL vmlinux 0x07040848 spi_mem_dirmap_write +EXPORT_SYMBOL_GPL vmlinux 0x070b032c tpm_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0x0716020c set_primary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x071d403f debugfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0x07214b42 pci_dev_trylock EXPORT_SYMBOL_GPL vmlinux 0x07242d92 put_dax -EXPORT_SYMBOL_GPL vmlinux 0x072f86f5 extcon_get_edev_name +EXPORT_SYMBOL_GPL vmlinux 0x072d7af8 task_cputime_adjusted EXPORT_SYMBOL_GPL vmlinux 0x0732ce1a sbitmap_queue_wake_all EXPORT_SYMBOL_GPL vmlinux 0x07483e13 cn_del_callback -EXPORT_SYMBOL_GPL vmlinux 0x075643f6 spi_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x074d5ff1 genphy_c45_read_lpa +EXPORT_SYMBOL_GPL vmlinux 0x074f0c40 iommu_sva_unbind_gpasid +EXPORT_SYMBOL_GPL vmlinux 0x07595ba6 crypto_alg_mod_lookup +EXPORT_SYMBOL_GPL vmlinux 0x075f303b devm_namespace_enable +EXPORT_SYMBOL_GPL vmlinux 0x076026af ahci_dev_classify EXPORT_SYMBOL_GPL vmlinux 0x076356e7 sfp_may_have_phy EXPORT_SYMBOL_GPL vmlinux 0x07646cee ata_tf_to_fis -EXPORT_SYMBOL_GPL vmlinux 0x0766fbee tty_save_termios -EXPORT_SYMBOL_GPL vmlinux 0x077e80b7 bus_for_each_drv -EXPORT_SYMBOL_GPL vmlinux 0x0780f966 fwnode_property_get_reference_args -EXPORT_SYMBOL_GPL vmlinux 0x079701ec serial8250_clear_and_reinit_fifos -EXPORT_SYMBOL_GPL vmlinux 0x0797bcbc sdio_claim_irq -EXPORT_SYMBOL_GPL vmlinux 0x07a8fc3b anon_inode_getfd +EXPORT_SYMBOL_GPL vmlinux 0x076ee63d usb_role_switch_find_by_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x076fdbf4 device_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x077a7df5 pci_enable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x077cccce blk_ksm_update_capabilities +EXPORT_SYMBOL_GPL vmlinux 0x077eca86 device_match_any +EXPORT_SYMBOL_GPL vmlinux 0x078bfcb2 snd_soc_dapm_new_control +EXPORT_SYMBOL_GPL vmlinux 0x07a06ad2 pm_clk_resume +EXPORT_SYMBOL_GPL vmlinux 0x07afc172 bdi_dev_name EXPORT_SYMBOL_GPL vmlinux 0x07b21f85 kdb_get_kbd_char EXPORT_SYMBOL_GPL vmlinux 0x07b52e38 rtnl_unregister -EXPORT_SYMBOL_GPL vmlinux 0x07bd264b tty_port_tty_hangup EXPORT_SYMBOL_GPL vmlinux 0x07be6905 net_inc_egress_queue -EXPORT_SYMBOL_GPL vmlinux 0x07da3a17 proc_create_net_single -EXPORT_SYMBOL_GPL vmlinux 0x07dce5cd gpiod_export_link -EXPORT_SYMBOL_GPL vmlinux 0x07e8e086 pci_enable_sriov -EXPORT_SYMBOL_GPL vmlinux 0x07ec9fba trace_event_reg +EXPORT_SYMBOL_GPL vmlinux 0x07bf26be irqchip_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0x07c51670 unregister_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x07c6f678 vfs_test_lock +EXPORT_SYMBOL_GPL vmlinux 0x07d6427b rt_mutex_trylock +EXPORT_SYMBOL_GPL vmlinux 0x07dd36c3 sysfs_merge_group +EXPORT_SYMBOL_GPL vmlinux 0x07e8b40f list_lru_count_one EXPORT_SYMBOL_GPL vmlinux 0x07f5bfed __tracepoint_neigh_cleanup_and_release -EXPORT_SYMBOL_GPL vmlinux 0x0804c538 cpts_create -EXPORT_SYMBOL_GPL vmlinux 0x0807929c dw_pcie_upconfig_setup -EXPORT_SYMBOL_GPL vmlinux 0x08117857 dev_pm_disable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x07f669bd devm_irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x07fd9917 platform_device_register +EXPORT_SYMBOL_GPL vmlinux 0x080e021b device_property_read_u32_array EXPORT_SYMBOL_GPL vmlinux 0x08135613 dax_write_cache -EXPORT_SYMBOL_GPL vmlinux 0x0828d609 mc146818_get_time -EXPORT_SYMBOL_GPL vmlinux 0x0838d808 register_mtd_blktrans -EXPORT_SYMBOL_GPL vmlinux 0x0849df8c xfrm_audit_policy_add -EXPORT_SYMBOL_GPL vmlinux 0x084fbea7 crypto_alg_extsize -EXPORT_SYMBOL_GPL vmlinux 0x08566fff regmap_bulk_write -EXPORT_SYMBOL_GPL vmlinux 0x08575c63 rtc_set_alarm -EXPORT_SYMBOL_GPL vmlinux 0x0870722c noop_direct_IO +EXPORT_SYMBOL_GPL vmlinux 0x08288be7 dm_send_uevents +EXPORT_SYMBOL_GPL vmlinux 0x082d6cd0 ipv4_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0x0831c79a md_kick_rdev_from_array +EXPORT_SYMBOL_GPL vmlinux 0x083f2983 phy_modify_mmd +EXPORT_SYMBOL_GPL vmlinux 0x0848f795 dm_path_uevent +EXPORT_SYMBOL_GPL vmlinux 0x084ef030 pm_genpd_add_device +EXPORT_SYMBOL_GPL vmlinux 0x08736e50 usb_control_msg_recv EXPORT_SYMBOL_GPL vmlinux 0x087f5dc5 wm831x_of_match -EXPORT_SYMBOL_GPL vmlinux 0x089c3b55 ata_scsi_change_queue_depth -EXPORT_SYMBOL_GPL vmlinux 0x08a27164 nvdimm_bus_register -EXPORT_SYMBOL_GPL vmlinux 0x08a56fe8 dev_pm_domain_set -EXPORT_SYMBOL_GPL vmlinux 0x08a75136 xhci_drop_endpoint -EXPORT_SYMBOL_GPL vmlinux 0x08ba9a6b of_device_request_module -EXPORT_SYMBOL_GPL vmlinux 0x08c66afc mpc8xxx_spi_rx_buf_u16 -EXPORT_SYMBOL_GPL vmlinux 0x08d5cf08 devm_clk_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x08de3733 pwmchip_add -EXPORT_SYMBOL_GPL vmlinux 0x08e26024 pci_disable_pri -EXPORT_SYMBOL_GPL vmlinux 0x08e8fdd2 devm_extcon_dev_register -EXPORT_SYMBOL_GPL vmlinux 0x08ee276c tty_find_polling_driver -EXPORT_SYMBOL_GPL vmlinux 0x08f7aa6e wakeup_source_add -EXPORT_SYMBOL_GPL vmlinux 0x08febb0b subsys_system_register -EXPORT_SYMBOL_GPL vmlinux 0x08ffa6c8 tcp_reno_undo_cwnd -EXPORT_SYMBOL_GPL vmlinux 0x09001b09 snd_card_rw_proc_new -EXPORT_SYMBOL_GPL vmlinux 0x090daa7c of_find_spi_device_by_node -EXPORT_SYMBOL_GPL vmlinux 0x0915ca87 i2c_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x091d266d mm_kobj +EXPORT_SYMBOL_GPL vmlinux 0x0880da18 pci_pasid_features +EXPORT_SYMBOL_GPL vmlinux 0x0885e9a8 snd_soc_bytes_tlv_callback +EXPORT_SYMBOL_GPL vmlinux 0x0886c669 vp_modern_set_queue_size +EXPORT_SYMBOL_GPL vmlinux 0x088cce6e devm_gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0x08b46154 icmp_build_probe +EXPORT_SYMBOL_GPL vmlinux 0x08bdaaa6 mpc8xxx_spi_tx_buf_u16 +EXPORT_SYMBOL_GPL vmlinux 0x08bddb7f kthread_unpark +EXPORT_SYMBOL_GPL vmlinux 0x08c506b1 ip4_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0x08c5cc2d tpm_tis_resume +EXPORT_SYMBOL_GPL vmlinux 0x08ce420a pci_epf_type_add_cfs +EXPORT_SYMBOL_GPL vmlinux 0x08e04c0d crypto_stats_compress +EXPORT_SYMBOL_GPL vmlinux 0x08e5029c mddev_init +EXPORT_SYMBOL_GPL vmlinux 0x08ffeadf blk_mq_hctx_set_fq_lock_class +EXPORT_SYMBOL_GPL vmlinux 0x09002296 uhci_check_and_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0x090c8ba2 hwmon_notify_event +EXPORT_SYMBOL_GPL vmlinux 0x091e4259 of_map_id EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x0938e18f skb_consume_udp +EXPORT_SYMBOL_GPL vmlinux 0x093e6201 mtk_pinconf_bias_set_combo EXPORT_SYMBOL_GPL vmlinux 0x09492220 musb_mailbox -EXPORT_SYMBOL_GPL vmlinux 0x0954b602 open_related_ns -EXPORT_SYMBOL_GPL vmlinux 0x096b1913 fuse_simple_background -EXPORT_SYMBOL_GPL vmlinux 0x09870861 pinctrl_utils_free_map -EXPORT_SYMBOL_GPL vmlinux 0x0990ec92 crypto_unregister_rngs +EXPORT_SYMBOL_GPL vmlinux 0x095dadf0 vp_modern_remove +EXPORT_SYMBOL_GPL vmlinux 0x096fbc84 tps65217_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x09768c23 wwan_create_port +EXPORT_SYMBOL_GPL vmlinux 0x0983589d usb_add_gadget_udc EXPORT_SYMBOL_GPL vmlinux 0x09b53e14 interval_tree_remove -EXPORT_SYMBOL_GPL vmlinux 0x09c5ac6f snd_soc_component_set_pll -EXPORT_SYMBOL_GPL vmlinux 0x09c5db58 wm831x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x09d2d194 amba_ahb_device_add_res +EXPORT_SYMBOL_GPL vmlinux 0x09c0a80b inet_twsk_alloc EXPORT_SYMBOL_GPL vmlinux 0x09e53260 __tracepoint_pelt_dl_tp +EXPORT_SYMBOL_GPL vmlinux 0x09e62698 pinmux_generic_get_function_count EXPORT_SYMBOL_GPL vmlinux 0x09e913c1 snd_pcm_alt_chmaps -EXPORT_SYMBOL_GPL vmlinux 0x0a04500f alarmtimer_get_rtcdev -EXPORT_SYMBOL_GPL vmlinux 0x0a1c1156 mdiobus_modify -EXPORT_SYMBOL_GPL vmlinux 0x0a1cbc1c snd_soc_component_enable_pin_unlocked -EXPORT_SYMBOL_GPL vmlinux 0x0a1e45f7 pci_find_ext_capability -EXPORT_SYMBOL_GPL vmlinux 0x0a1f4090 handle_simple_irq +EXPORT_SYMBOL_GPL vmlinux 0x09ea9d43 device_rename +EXPORT_SYMBOL_GPL vmlinux 0x09f20578 pinctrl_utils_free_map +EXPORT_SYMBOL_GPL vmlinux 0x0a08c776 usb_gadget_vbus_disconnect +EXPORT_SYMBOL_GPL vmlinux 0x0a20187e iommu_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0a33703e platform_device_add_resources EXPORT_SYMBOL_GPL vmlinux 0x0a3408e4 cpuidle_disable_device -EXPORT_SYMBOL_GPL vmlinux 0x0a343431 snd_soc_component_init_regmap -EXPORT_SYMBOL_GPL vmlinux 0x0a465f1d snd_power_ref_and_wait -EXPORT_SYMBOL_GPL vmlinux 0x0a5418c7 filemap_range_needs_writeback -EXPORT_SYMBOL_GPL vmlinux 0x0a54f34c devm_regmap_field_alloc -EXPORT_SYMBOL_GPL vmlinux 0x0a5f54b0 nvdimm_volatile_region_create -EXPORT_SYMBOL_GPL vmlinux 0x0a5f7a58 security_path_chown -EXPORT_SYMBOL_GPL vmlinux 0x0a670643 dev_pm_genpd_resume +EXPORT_SYMBOL_GPL vmlinux 0x0a3bd119 pci_enable_pasid +EXPORT_SYMBOL_GPL vmlinux 0x0a3c8874 security_file_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x0a4c463b sysfs_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x0a4c9c41 msg_zerocopy_callback +EXPORT_SYMBOL_GPL vmlinux 0x0a655c71 snd_power_ref_and_wait EXPORT_SYMBOL_GPL vmlinux 0x0a6c4041 cn_netlink_send -EXPORT_SYMBOL_GPL vmlinux 0x0a734153 xdp_return_frame_bulk -EXPORT_SYMBOL_GPL vmlinux 0x0a7346b0 devm_kstrdup_const -EXPORT_SYMBOL_GPL vmlinux 0x0a8a7942 tpm1_getcap +EXPORT_SYMBOL_GPL vmlinux 0x0a734188 snd_soc_dai_set_fmt +EXPORT_SYMBOL_GPL vmlinux 0x0a74dd7f bd_link_disk_holder EXPORT_SYMBOL_GPL vmlinux 0x0a8c3b4b usb_ep_set_halt -EXPORT_SYMBOL_GPL vmlinux 0x0aa99b93 crypto_unregister_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x0a94b29b fsl_mc_device_group +EXPORT_SYMBOL_GPL vmlinux 0x0aad4e0c gpiochip_irq_domain_activate +EXPORT_SYMBOL_GPL vmlinux 0x0aae1c66 em_dev_register_perf_domain +EXPORT_SYMBOL_GPL vmlinux 0x0ab68e30 subsys_interface_register +EXPORT_SYMBOL_GPL vmlinux 0x0abb1132 rockchip_pcie_get_phys +EXPORT_SYMBOL_GPL vmlinux 0x0abeb829 bpf_offload_dev_match +EXPORT_SYMBOL_GPL vmlinux 0x0abfd516 crypto_type_has_alg EXPORT_SYMBOL_GPL vmlinux 0x0acfe2e7 usb_ep_set_wedge -EXPORT_SYMBOL_GPL vmlinux 0x0b06b28b ip6_datagram_connect_v6_only +EXPORT_SYMBOL_GPL vmlinux 0x0addc92d input_ff_create +EXPORT_SYMBOL_GPL vmlinux 0x0ae18ab7 edac_pci_del_device +EXPORT_SYMBOL_GPL vmlinux 0x0aec60a4 mddev_resume +EXPORT_SYMBOL_GPL vmlinux 0x0af0d8df ehci_handshake +EXPORT_SYMBOL_GPL vmlinux 0x0af3306f dev_pm_qos_hide_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x0af5dc86 watchdog_unregister_device EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct -EXPORT_SYMBOL_GPL vmlinux 0x0b09bb0d ehci_setup -EXPORT_SYMBOL_GPL vmlinux 0x0b0c0531 kthread_mod_delayed_work -EXPORT_SYMBOL_GPL vmlinux 0x0b195988 rio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x0b0960dd irq_get_default_host +EXPORT_SYMBOL_GPL vmlinux 0x0b12e4f4 __xdp_build_skb_from_frame EXPORT_SYMBOL_GPL vmlinux 0x0b19b18f register_kretprobes -EXPORT_SYMBOL_GPL vmlinux 0x0b21754b of_i2c_setup_smbus_alert -EXPORT_SYMBOL_GPL vmlinux 0x0b230807 snd_soc_of_get_dai_link_codecs EXPORT_SYMBOL_GPL vmlinux 0x0b2970fe klist_iter_init EXPORT_SYMBOL_GPL vmlinux 0x0b2db2d5 remove_resource -EXPORT_SYMBOL_GPL vmlinux 0x0b46510b regulator_list_voltage_table -EXPORT_SYMBOL_GPL vmlinux 0x0b477113 crypto_dequeue_request -EXPORT_SYMBOL_GPL vmlinux 0x0b4a5dee unmap_mapping_pages +EXPORT_SYMBOL_GPL vmlinux 0x0b35b4e8 sk_attach_filter +EXPORT_SYMBOL_GPL vmlinux 0x0b430b95 fscrypt_ioctl_get_key_status EXPORT_SYMBOL_GPL vmlinux 0x0b4a8834 musb_writeb -EXPORT_SYMBOL_GPL vmlinux 0x0b4b8b6d thermal_zone_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0b67b9e4 raw_seq_next -EXPORT_SYMBOL_GPL vmlinux 0x0b742cdb of_pinctrl_get -EXPORT_SYMBOL_GPL vmlinux 0x0b7d4485 regmap_field_read -EXPORT_SYMBOL_GPL vmlinux 0x0b7d6741 l3mdev_table_lookup_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0b8a09b7 fwnode_find_reference -EXPORT_SYMBOL_GPL vmlinux 0x0b8aa091 dm_report_zones -EXPORT_SYMBOL_GPL vmlinux 0x0b9dba58 mtk_pinconf_adv_drive_get -EXPORT_SYMBOL_GPL vmlinux 0x0baeff20 pci_disable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0x0b4d4d99 dev_pm_opp_of_find_icc_paths +EXPORT_SYMBOL_GPL vmlinux 0x0b69b55f of_resolve_phandles +EXPORT_SYMBOL_GPL vmlinux 0x0b70bc9d debugfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x0b73f677 snd_soc_get_volsw +EXPORT_SYMBOL_GPL vmlinux 0x0b7d4891 bpf_trace_run5 +EXPORT_SYMBOL_GPL vmlinux 0x0b93472b vfs_truncate +EXPORT_SYMBOL_GPL vmlinux 0x0b949a37 tcp_slow_start +EXPORT_SYMBOL_GPL vmlinux 0x0ba2319d dapm_kcontrol_get_value +EXPORT_SYMBOL_GPL vmlinux 0x0ba72ea0 serdev_device_close +EXPORT_SYMBOL_GPL vmlinux 0x0bac2684 ahci_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x0baf3a13 dev_pm_domain_set EXPORT_SYMBOL_GPL vmlinux 0x0bb028d4 hisi_clk_register_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0x0bb3e679 virtqueue_get_buf_ctx -EXPORT_SYMBOL_GPL vmlinux 0x0bbb1c4e extcon_set_property EXPORT_SYMBOL_GPL vmlinux 0x0bc1ec1e __sbitmap_queue_get -EXPORT_SYMBOL_GPL vmlinux 0x0bee6eca tpm_pcr_read +EXPORT_SYMBOL_GPL vmlinux 0x0bc81347 component_add +EXPORT_SYMBOL_GPL vmlinux 0x0bccd00c switchdev_handle_fdb_del_to_device +EXPORT_SYMBOL_GPL vmlinux 0x0bd2f2d6 event_triggers_call +EXPORT_SYMBOL_GPL vmlinux 0x0bd55ace cdrom_multisession +EXPORT_SYMBOL_GPL vmlinux 0x0bdaed52 pci_store_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x0bea0335 sbitmap_show +EXPORT_SYMBOL_GPL vmlinux 0x0beb64ff bd_prepare_to_claim +EXPORT_SYMBOL_GPL vmlinux 0x0bf17c69 virtqueue_get_vring EXPORT_SYMBOL_GPL vmlinux 0x0bf32478 __SCK__tp_func_pelt_rt_tp +EXPORT_SYMBOL_GPL vmlinux 0x0bf76f25 devm_phy_put +EXPORT_SYMBOL_GPL vmlinux 0x0bf7de87 __devm_pci_epc_create EXPORT_SYMBOL_GPL vmlinux 0x0bfa3a19 rcu_idle_exit -EXPORT_SYMBOL_GPL vmlinux 0x0c0ec575 gpiochip_reqres_irq -EXPORT_SYMBOL_GPL vmlinux 0x0c168199 component_bind_all -EXPORT_SYMBOL_GPL vmlinux 0x0c1bec7e tpm_put_ops -EXPORT_SYMBOL_GPL vmlinux 0x0c1c3445 bio_clone_blkg_association +EXPORT_SYMBOL_GPL vmlinux 0x0c001e26 mmc_crypto_prepare_req +EXPORT_SYMBOL_GPL vmlinux 0x0c0416e4 __traceiter_devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0x0c0cb847 usb_of_has_combined_node +EXPORT_SYMBOL_GPL vmlinux 0x0c174eef __page_mapcount EXPORT_SYMBOL_GPL vmlinux 0x0c303f52 bch_encode EXPORT_SYMBOL_GPL vmlinux 0x0c32ff8a edac_pci_alloc_index -EXPORT_SYMBOL_GPL vmlinux 0x0c3a8ded nvdimm_blk_region_create -EXPORT_SYMBOL_GPL vmlinux 0x0c51a526 regmap_get_reg_stride -EXPORT_SYMBOL_GPL vmlinux 0x0c54c851 iommu_fwspec_add_ids -EXPORT_SYMBOL_GPL vmlinux 0x0c5bab48 regulator_irq_helper -EXPORT_SYMBOL_GPL vmlinux 0x0c62e567 snd_soc_find_dai -EXPORT_SYMBOL_GPL vmlinux 0x0c6dbedd __ata_ehi_push_desc -EXPORT_SYMBOL_GPL vmlinux 0x0c6e4fb9 class_dev_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0x0c70a770 pci_sriov_configure_simple -EXPORT_SYMBOL_GPL vmlinux 0x0c798d7e inet6_lookup_listener -EXPORT_SYMBOL_GPL vmlinux 0x0c7f0ea3 crypto_unregister_shash +EXPORT_SYMBOL_GPL vmlinux 0x0c489c7d devm_phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0x0c4dc945 nd_region_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x0c6c346f led_sysfs_disable +EXPORT_SYMBOL_GPL vmlinux 0x0c79913a generic_device_group +EXPORT_SYMBOL_GPL vmlinux 0x0c7b464a dma_get_slave_channel EXPORT_SYMBOL_GPL vmlinux 0x0c88c1c3 pci_vpd_find_id_string -EXPORT_SYMBOL_GPL vmlinux 0x0cab36cd devfreq_get_devfreq_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x0cb1c5d0 dev_pm_opp_xlate_required_opp -EXPORT_SYMBOL_GPL vmlinux 0x0cb1e6c9 spi_add_device -EXPORT_SYMBOL_GPL vmlinux 0x0ccc182a crypto_ahash_final -EXPORT_SYMBOL_GPL vmlinux 0x0cdd1509 crypto_grab_aead -EXPORT_SYMBOL_GPL vmlinux 0x0ce5a4b9 acct_bioset_exit -EXPORT_SYMBOL_GPL vmlinux 0x0ce8b8df percpu_down_write -EXPORT_SYMBOL_GPL vmlinux 0x0cf4ef7c altr_sysmgr_regmap_lookup_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x0d02f906 ptp_parse_header -EXPORT_SYMBOL_GPL vmlinux 0x0d0b575e nfs42_ssc_register -EXPORT_SYMBOL_GPL vmlinux 0x0d16f7c0 snd_dmaengine_pcm_prepare_slave_config -EXPORT_SYMBOL_GPL vmlinux 0x0d36327d devm_clk_hw_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x0c94f218 snd_compress_new +EXPORT_SYMBOL_GPL vmlinux 0x0cb153a3 ata_host_put +EXPORT_SYMBOL_GPL vmlinux 0x0cd14210 gpiochip_line_is_irq +EXPORT_SYMBOL_GPL vmlinux 0x0cd355cf phy_pm_runtime_get_sync +EXPORT_SYMBOL_GPL vmlinux 0x0cdfd2df inet_csk_listen_start +EXPORT_SYMBOL_GPL vmlinux 0x0ce3f9b4 iommu_map_sg +EXPORT_SYMBOL_GPL vmlinux 0x0ce771c5 sm501_find_clock +EXPORT_SYMBOL_GPL vmlinux 0x0cead263 tcp_twsk_destructor +EXPORT_SYMBOL_GPL vmlinux 0x0d03e44c subsys_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x0d135ee4 gpiod_get_direction +EXPORT_SYMBOL_GPL vmlinux 0x0d14f6e5 dev_pm_opp_put_regulators +EXPORT_SYMBOL_GPL vmlinux 0x0d1ca4bd balloon_page_list_enqueue EXPORT_SYMBOL_GPL vmlinux 0x0d3e3481 bch_free +EXPORT_SYMBOL_GPL vmlinux 0x0d3e8434 sk_msg_return EXPORT_SYMBOL_GPL vmlinux 0x0d459213 work_on_cpu_safe -EXPORT_SYMBOL_GPL vmlinux 0x0d49314b thermal_zone_device_update +EXPORT_SYMBOL_GPL vmlinux 0x0d485653 of_fwnode_ops EXPORT_SYMBOL_GPL vmlinux 0x0d4961de nf_log_buf_open +EXPORT_SYMBOL_GPL vmlinux 0x0d52b121 clk_hw_set_parent EXPORT_SYMBOL_GPL vmlinux 0x0d5a5939 cpu_topology -EXPORT_SYMBOL_GPL vmlinux 0x0d670915 of_clk_src_simple_get -EXPORT_SYMBOL_GPL vmlinux 0x0d78ea7c lwtunnel_encap_add_ops +EXPORT_SYMBOL_GPL vmlinux 0x0d5c7548 devm_clk_hw_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0d69546e clk_hw_round_rate +EXPORT_SYMBOL_GPL vmlinux 0x0d7ae1bc fuse_simple_background +EXPORT_SYMBOL_GPL vmlinux 0x0d85df0c cpufreq_table_index_unsorted +EXPORT_SYMBOL_GPL vmlinux 0x0d8baa65 device_set_wakeup_capable +EXPORT_SYMBOL_GPL vmlinux 0x0d8e78e0 dw_pcie_ep_init_complete EXPORT_SYMBOL_GPL vmlinux 0x0d90d784 usb_ep_fifo_flush -EXPORT_SYMBOL_GPL vmlinux 0x0d94c23b rio_register_mport -EXPORT_SYMBOL_GPL vmlinux 0x0d96a25d regulator_list_voltage -EXPORT_SYMBOL_GPL vmlinux 0x0dbde695 rio_mport_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x0d979fd5 iomap_invalidatepage +EXPORT_SYMBOL_GPL vmlinux 0x0da48523 sysfs_remove_link_from_group +EXPORT_SYMBOL_GPL vmlinux 0x0dbb7559 fsverity_file_open +EXPORT_SYMBOL_GPL vmlinux 0x0dbc24a0 pci_epc_clear_bar +EXPORT_SYMBOL_GPL vmlinux 0x0dc13889 devres_destroy +EXPORT_SYMBOL_GPL vmlinux 0x0dc56949 rio_request_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x0dc69290 max8997_read_reg EXPORT_SYMBOL_GPL vmlinux 0x0dcb3ee8 divider_recalc_rate +EXPORT_SYMBOL_GPL vmlinux 0x0dcb8d48 devm_hwspin_lock_free +EXPORT_SYMBOL_GPL vmlinux 0x0dcc065c devm_free_pages EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order -EXPORT_SYMBOL_GPL vmlinux 0x0ddf898d xfrm_state_afinfo_get_rcu -EXPORT_SYMBOL_GPL vmlinux 0x0dfaf9ea input_ff_destroy -EXPORT_SYMBOL_GPL vmlinux 0x0e03b5b0 iommu_sva_unbind_device -EXPORT_SYMBOL_GPL vmlinux 0x0e148c96 device_link_add -EXPORT_SYMBOL_GPL vmlinux 0x0e29e511 devm_kstrdup -EXPORT_SYMBOL_GPL vmlinux 0x0e32dcf5 of_clk_del_provider -EXPORT_SYMBOL_GPL vmlinux 0x0e4e68fc pinconf_generic_dump_config -EXPORT_SYMBOL_GPL vmlinux 0x0e4f5e99 wbc_detach_inode +EXPORT_SYMBOL_GPL vmlinux 0x0de76793 of_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0x0debe336 kill_dev_dax +EXPORT_SYMBOL_GPL vmlinux 0x0e0726b6 iomap_seek_hole +EXPORT_SYMBOL_GPL vmlinux 0x0e0e3048 mtd_get_device_size +EXPORT_SYMBOL_GPL vmlinux 0x0e103b56 __traceiter_pelt_irq_tp +EXPORT_SYMBOL_GPL vmlinux 0x0e167125 extcon_get_property_capability +EXPORT_SYMBOL_GPL vmlinux 0x0e17b145 rockchip_clk_register_armclk +EXPORT_SYMBOL_GPL vmlinux 0x0e24fce9 usb_hcd_pci_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0x0e36fbeb debugfs_read_file_bool +EXPORT_SYMBOL_GPL vmlinux 0x0e41e5fb phy_driver_is_genphy_10g EXPORT_SYMBOL_GPL vmlinux 0x0e5b4975 __tracepoint_pelt_cfs_tp -EXPORT_SYMBOL_GPL vmlinux 0x0e656c3e sdhci_start_signal_voltage_switch +EXPORT_SYMBOL_GPL vmlinux 0x0e5bcf35 thermal_zone_get_offset +EXPORT_SYMBOL_GPL vmlinux 0x0e6c804e usb_create_shared_hcd +EXPORT_SYMBOL_GPL vmlinux 0x0e6f68fb perf_aux_output_skip +EXPORT_SYMBOL_GPL vmlinux 0x0e7446e3 usb_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x0e744d92 reset_controller_unregister EXPORT_SYMBOL_GPL vmlinux 0x0e8a574a cpuacct_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x0eac92f2 snd_soc_get_volsw_range -EXPORT_SYMBOL_GPL vmlinux 0x0ecb3dd7 ata_common_sdev_attrs -EXPORT_SYMBOL_GPL vmlinux 0x0ecd9a36 of_genpd_add_device +EXPORT_SYMBOL_GPL vmlinux 0x0e944a35 blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0x0e979746 usb_hcd_is_primary_hcd +EXPORT_SYMBOL_GPL vmlinux 0x0ea20976 pci_epc_map_msi_irq +EXPORT_SYMBOL_GPL vmlinux 0x0ebd8b87 mmu_interval_notifier_insert_locked EXPORT_SYMBOL_GPL vmlinux 0x0ece0a18 __xas_next -EXPORT_SYMBOL_GPL vmlinux 0x0ece4fdb dm_get_md +EXPORT_SYMBOL_GPL vmlinux 0x0ede93df sched_trace_cfs_rq_path +EXPORT_SYMBOL_GPL vmlinux 0x0ee23007 usb_enable_ltm +EXPORT_SYMBOL_GPL vmlinux 0x0ee5966f mmu_notifier_get_locked EXPORT_SYMBOL_GPL vmlinux 0x0eeb5417 __kprobe_event_gen_cmd_start -EXPORT_SYMBOL_GPL vmlinux 0x0ef12efe dev_pm_qos_expose_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0x0efaeae9 da903x_reads -EXPORT_SYMBOL_GPL vmlinux 0x0efcf874 dbs_update -EXPORT_SYMBOL_GPL vmlinux 0x0f11457b iommu_fwspec_init -EXPORT_SYMBOL_GPL vmlinux 0x0f11f338 mtd_read_fact_prot_reg +EXPORT_SYMBOL_GPL vmlinux 0x0ef69b76 pci_epc_map_addr +EXPORT_SYMBOL_GPL vmlinux 0x0ef6bcf0 tracing_snapshot_cond_enable +EXPORT_SYMBOL_GPL vmlinux 0x0efb835b rio_release_dma +EXPORT_SYMBOL_GPL vmlinux 0x0f04b94a mmu_interval_notifier_insert EXPORT_SYMBOL_GPL vmlinux 0x0f180070 ring_buffer_free_read_page -EXPORT_SYMBOL_GPL vmlinux 0x0f1a5a71 ahci_sdev_attrs +EXPORT_SYMBOL_GPL vmlinux 0x0f2b66f9 fwnode_get_nth_parent EXPORT_SYMBOL_GPL vmlinux 0x0f2da3dc rdma_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x0f2f48fb sysfs_create_link -EXPORT_SYMBOL_GPL vmlinux 0x0f44842b of_pci_range_parser_one +EXPORT_SYMBOL_GPL vmlinux 0x0f38eb33 __fib_lookup EXPORT_SYMBOL_GPL vmlinux 0x0f452a47 __tracepoint_mc_event -EXPORT_SYMBOL_GPL vmlinux 0x0f57bd62 fib_nl_delrule -EXPORT_SYMBOL_GPL vmlinux 0x0f6a02b1 snd_soc_component_enable_pin +EXPORT_SYMBOL_GPL vmlinux 0x0f62619c of_mm_gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0x0f64bf9a dst_cache_get_ip4 EXPORT_SYMBOL_GPL vmlinux 0x0f6a3f32 ftrace_ops_set_global_filter -EXPORT_SYMBOL_GPL vmlinux 0x0f732905 regmap_reinit_cache -EXPORT_SYMBOL_GPL vmlinux 0x0f77dda1 serdev_controller_remove +EXPORT_SYMBOL_GPL vmlinux 0x0f7a211b cros_ec_get_sensor_count EXPORT_SYMBOL_GPL vmlinux 0x0f7ca236 dmi_memdev_name -EXPORT_SYMBOL_GPL vmlinux 0x0f93081f irq_domain_translate_onecell -EXPORT_SYMBOL_GPL vmlinux 0x0fa9bd5a crypto_register_akcipher -EXPORT_SYMBOL_GPL vmlinux 0x0fba8496 clockevents_config_and_register -EXPORT_SYMBOL_GPL vmlinux 0x0fc996c4 ahci_platform_disable_resources +EXPORT_SYMBOL_GPL vmlinux 0x0f7f3eaa virtio_add_status +EXPORT_SYMBOL_GPL vmlinux 0x0f85f7d2 irq_setup_alt_chip +EXPORT_SYMBOL_GPL vmlinux 0x0fb239ca nanddev_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x0fcecaf3 scsi_ioctl_block_when_processing_errors EXPORT_SYMBOL_GPL vmlinux 0x0fd4610e kmem_dump_obj -EXPORT_SYMBOL_GPL vmlinux 0x0fef4dfd rio_dma_prep_xfer -EXPORT_SYMBOL_GPL vmlinux 0x0ff9028e pinmux_generic_get_function +EXPORT_SYMBOL_GPL vmlinux 0x0fdff7d9 soc_device_match +EXPORT_SYMBOL_GPL vmlinux 0x0fe2bf8b __nf_ip6_route +EXPORT_SYMBOL_GPL vmlinux 0x0fe5d940 mtd_pairing_groups +EXPORT_SYMBOL_GPL vmlinux 0x0fef9b59 cpufreq_dbs_governor_stop +EXPORT_SYMBOL_GPL vmlinux 0x0ff14e55 dev_pm_opp_register_set_opp_helper +EXPORT_SYMBOL_GPL vmlinux 0x0ff66fbc sata_pmp_qc_defer_cmd_switch +EXPORT_SYMBOL_GPL vmlinux 0x0ffea29e debugfs_create_file_size EXPORT_SYMBOL_GPL vmlinux 0x100359e4 stop_machine -EXPORT_SYMBOL_GPL vmlinux 0x1007a997 devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0x100cc10f extcon_sync EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on -EXPORT_SYMBOL_GPL vmlinux 0x10164c19 add_to_page_cache_lru -EXPORT_SYMBOL_GPL vmlinux 0x103a4172 usb_put_intf -EXPORT_SYMBOL_GPL vmlinux 0x103a9efe kthread_queue_work +EXPORT_SYMBOL_GPL vmlinux 0x101c2807 fsnotify_destroy_mark +EXPORT_SYMBOL_GPL vmlinux 0x102f328a dma_buf_map_attachment +EXPORT_SYMBOL_GPL vmlinux 0x10329020 ahci_start_fis_rx +EXPORT_SYMBOL_GPL vmlinux 0x103d0e24 snd_soc_dapm_ignore_suspend EXPORT_SYMBOL_GPL vmlinux 0x1043cac3 queue_work_node -EXPORT_SYMBOL_GPL vmlinux 0x1043de0a of_reserved_mem_lookup -EXPORT_SYMBOL_GPL vmlinux 0x10593584 mmc_switch -EXPORT_SYMBOL_GPL vmlinux 0x105ff012 ata_host_register -EXPORT_SYMBOL_GPL vmlinux 0x1061372c usb_autopm_put_interface_no_suspend -EXPORT_SYMBOL_GPL vmlinux 0x106866aa ncsi_vlan_rx_kill_vid EXPORT_SYMBOL_GPL vmlinux 0x106ad9e1 software_node_unregister_node_group -EXPORT_SYMBOL_GPL vmlinux 0x10837116 cpufreq_driver_resolve_freq -EXPORT_SYMBOL_GPL vmlinux 0x109835c9 pm_generic_restore_early -EXPORT_SYMBOL_GPL vmlinux 0x10a4a4cb ping_seq_stop -EXPORT_SYMBOL_GPL vmlinux 0x10b168bd blk_queue_required_elevator_features -EXPORT_SYMBOL_GPL vmlinux 0x10b4d77e usb_phy_roothub_alloc -EXPORT_SYMBOL_GPL vmlinux 0x10d008af usb_gadget_vbus_draw +EXPORT_SYMBOL_GPL vmlinux 0x106ed5d5 rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0x107afea8 crypto_aead_setkey +EXPORT_SYMBOL_GPL vmlinux 0x1085b837 tps65912_device_exit +EXPORT_SYMBOL_GPL vmlinux 0x1094fe6b vp_modern_queue_vector +EXPORT_SYMBOL_GPL vmlinux 0x10aefedc of_remove_property +EXPORT_SYMBOL_GPL vmlinux 0x10b5508d devlink_trap_policers_register +EXPORT_SYMBOL_GPL vmlinux 0x10d25031 scsi_mode_select +EXPORT_SYMBOL_GPL vmlinux 0x10e52f30 mtd_erase +EXPORT_SYMBOL_GPL vmlinux 0x10ebe472 pm_clk_destroy EXPORT_SYMBOL_GPL vmlinux 0x10ecc52c usb_amd_quirk_pll_enable +EXPORT_SYMBOL_GPL vmlinux 0x10f0656c snd_soc_component_compr_pointer +EXPORT_SYMBOL_GPL vmlinux 0x10fa94a5 devm_pm_runtime_enable EXPORT_SYMBOL_GPL vmlinux 0x1104c4d5 trace_seq_puts +EXPORT_SYMBOL_GPL vmlinux 0x1108ab74 crypto_aead_encrypt EXPORT_SYMBOL_GPL vmlinux 0x11091291 nand_extract_bits -EXPORT_SYMBOL_GPL vmlinux 0x1113081c device_match_any +EXPORT_SYMBOL_GPL vmlinux 0x111a38ad xhci_get_ep_ctx +EXPORT_SYMBOL_GPL vmlinux 0x111e24d0 device_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0x113338ee pinmux_generic_get_function +EXPORT_SYMBOL_GPL vmlinux 0x1138691f pci_find_host_bridge +EXPORT_SYMBOL_GPL vmlinux 0x1141da95 gpiod_direction_input +EXPORT_SYMBOL_GPL vmlinux 0x1146db12 nvdimm_flush EXPORT_SYMBOL_GPL vmlinux 0x114a3740 __tracepoint_rpm_return_int -EXPORT_SYMBOL_GPL vmlinux 0x114c7a4c snd_soc_dapm_nc_pin EXPORT_SYMBOL_GPL vmlinux 0x11526c9a meson_clk_pll_ops -EXPORT_SYMBOL_GPL vmlinux 0x116cfef2 pm_clk_suspend +EXPORT_SYMBOL_GPL vmlinux 0x1152bf50 regulator_set_voltage_rdev +EXPORT_SYMBOL_GPL vmlinux 0x1158f912 __platform_register_drivers +EXPORT_SYMBOL_GPL vmlinux 0x115beff1 tty_port_register_device +EXPORT_SYMBOL_GPL vmlinux 0x116161f7 __traceiter_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0x1188e76d od_register_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0x118d1a58 sdio_readw +EXPORT_SYMBOL_GPL vmlinux 0x119c25a1 md_rdev_init EXPORT_SYMBOL_GPL vmlinux 0x11a2e0ac crypto_dh_key_len -EXPORT_SYMBOL_GPL vmlinux 0x11a71740 pci_user_write_config_word -EXPORT_SYMBOL_GPL vmlinux 0x11b90b45 dev_attr_em_message +EXPORT_SYMBOL_GPL vmlinux 0x11b2c567 devm_hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x11c4432b balloon_page_dequeue EXPORT_SYMBOL_GPL vmlinux 0x11d7589e add_hwgenerator_randomness EXPORT_SYMBOL_GPL vmlinux 0x11df0e75 devlink_fmsg_binary_pair_nest_start -EXPORT_SYMBOL_GPL vmlinux 0x120dbd37 devfreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x11f2b855 ping_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x11f41acc usb_alloc_dev +EXPORT_SYMBOL_GPL vmlinux 0x11fd64ca usb_init_urb +EXPORT_SYMBOL_GPL vmlinux 0x11ff1849 dev_pm_opp_find_level_exact +EXPORT_SYMBOL_GPL vmlinux 0x120e9abc shmem_zero_setup +EXPORT_SYMBOL_GPL vmlinux 0x1214b2e0 sk_free_unlock_clone EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier -EXPORT_SYMBOL_GPL vmlinux 0x1222629d iomap_bmap -EXPORT_SYMBOL_GPL vmlinux 0x122631f3 dev_pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x122792bf usb_of_get_device_node +EXPORT_SYMBOL_GPL vmlinux 0x122af247 snd_soc_set_runtime_hwparams EXPORT_SYMBOL_GPL vmlinux 0x1234e483 get_cpu_iowait_time_us -EXPORT_SYMBOL_GPL vmlinux 0x123ced74 hwspin_lock_request_specific -EXPORT_SYMBOL_GPL vmlinux 0x1255f9ea pci_find_next_capability +EXPORT_SYMBOL_GPL vmlinux 0x12437788 crypto_grab_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x12478dfa mtk_pinconf_drive_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x124ce88f vp_modern_set_queue_enable +EXPORT_SYMBOL_GPL vmlinux 0x124d9dc7 deregister_mtd_parser +EXPORT_SYMBOL_GPL vmlinux 0x125087a9 nanddev_isreserved +EXPORT_SYMBOL_GPL vmlinux 0x125474b7 inet6_hash +EXPORT_SYMBOL_GPL vmlinux 0x12646c51 bgpio_init EXPORT_SYMBOL_GPL vmlinux 0x1268f357 resume_device_irqs -EXPORT_SYMBOL_GPL vmlinux 0x1270f821 iommu_device_link -EXPORT_SYMBOL_GPL vmlinux 0x128713a3 ata_sas_queuecmd -EXPORT_SYMBOL_GPL vmlinux 0x1289617d crypto_larval_alloc -EXPORT_SYMBOL_GPL vmlinux 0x128b3d6c serdev_device_get_tiocm +EXPORT_SYMBOL_GPL vmlinux 0x12690aaf sdhci_set_clock +EXPORT_SYMBOL_GPL vmlinux 0x127c9042 snd_soc_jack_add_zones EXPORT_SYMBOL_GPL vmlinux 0x129334ae sfp_parse_support -EXPORT_SYMBOL_GPL vmlinux 0x1297f221 of_get_regulator_init_data -EXPORT_SYMBOL_GPL vmlinux 0x129c92dc dm_hold -EXPORT_SYMBOL_GPL vmlinux 0x12a51aea pm_runtime_no_callbacks -EXPORT_SYMBOL_GPL vmlinux 0x12aabf38 virtqueue_add_inbuf -EXPORT_SYMBOL_GPL vmlinux 0x12add419 spi_bus_unlock -EXPORT_SYMBOL_GPL vmlinux 0x12bf704e hwmon_device_register -EXPORT_SYMBOL_GPL vmlinux 0x12c49380 cpts_tx_timestamp -EXPORT_SYMBOL_GPL vmlinux 0x12d8f580 usb_hc_died -EXPORT_SYMBOL_GPL vmlinux 0x12f7015b input_ff_flush -EXPORT_SYMBOL_GPL vmlinux 0x12fe5e23 tty_put_char +EXPORT_SYMBOL_GPL vmlinux 0x12a540e2 usb_hcd_map_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x12a786f7 fscrypt_fname_siphash +EXPORT_SYMBOL_GPL vmlinux 0x12aadce7 kill_mtd_super +EXPORT_SYMBOL_GPL vmlinux 0x12b671c7 of_irq_parse_raw +EXPORT_SYMBOL_GPL vmlinux 0x12dfcdc7 snd_soc_get_volsw_sx +EXPORT_SYMBOL_GPL vmlinux 0x12e81151 mtk_pinconf_drive_set +EXPORT_SYMBOL_GPL vmlinux 0x12f3b85e pci_epc_start +EXPORT_SYMBOL_GPL vmlinux 0x13080054 fib_add_nexthop +EXPORT_SYMBOL_GPL vmlinux 0x1315c8c0 devm_free_percpu EXPORT_SYMBOL_GPL vmlinux 0x131a5ed7 regmap_del_irq_chip EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq -EXPORT_SYMBOL_GPL vmlinux 0x1335b558 vp_modern_set_status +EXPORT_SYMBOL_GPL vmlinux 0x131fcd2d rockchip_register_restart_notifier +EXPORT_SYMBOL_GPL vmlinux 0x1320a436 snd_soc_debugfs_root +EXPORT_SYMBOL_GPL vmlinux 0x13317c4a snd_pcm_add_chmap_ctls EXPORT_SYMBOL_GPL vmlinux 0x133969d7 __trace_printk -EXPORT_SYMBOL_GPL vmlinux 0x133bc9ec gpiochip_remove_pin_ranges -EXPORT_SYMBOL_GPL vmlinux 0x133cfc4c vp_modern_get_queue_size -EXPORT_SYMBOL_GPL vmlinux 0x133f3aa1 snd_soc_component_compr_ack -EXPORT_SYMBOL_GPL vmlinux 0x134b5a6d pci_stop_and_remove_bus_device_locked -EXPORT_SYMBOL_GPL vmlinux 0x13502944 netif_carrier_event -EXPORT_SYMBOL_GPL vmlinux 0x135b1dbc usb_driver_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0x13409b24 regmap_fields_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0x13468b0e dev_pm_opp_get_of_node +EXPORT_SYMBOL_GPL vmlinux 0x134a949c serial8250_em485_destroy +EXPORT_SYMBOL_GPL vmlinux 0x1352f5db crypto_ahash_final EXPORT_SYMBOL_GPL vmlinux 0x136209db power_supply_reg_notifier EXPORT_SYMBOL_GPL vmlinux 0x13640660 get_cached_msi_msg -EXPORT_SYMBOL_GPL vmlinux 0x136989f3 ata_sff_postreset -EXPORT_SYMBOL_GPL vmlinux 0x136df6cf cgroup_attach_task_all +EXPORT_SYMBOL_GPL vmlinux 0x137c093f serial8250_update_uartclk EXPORT_SYMBOL_GPL vmlinux 0x1381d4f3 net_cls_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x1385018e pinctrl_dev_get_devname -EXPORT_SYMBOL_GPL vmlinux 0x13877365 phy_create +EXPORT_SYMBOL_GPL vmlinux 0x1382b788 __trace_note_message EXPORT_SYMBOL_GPL vmlinux 0x13889036 inet_ehash_locks_alloc -EXPORT_SYMBOL_GPL vmlinux 0x138a15d2 crypto_grab_spawn EXPORT_SYMBOL_GPL vmlinux 0x138e0957 dax_write_cache_enabled -EXPORT_SYMBOL_GPL vmlinux 0x13b4deb0 dapm_clock_event -EXPORT_SYMBOL_GPL vmlinux 0x13b80e51 efivar_entry_set -EXPORT_SYMBOL_GPL vmlinux 0x13bd44c9 __clocksource_update_freq_scale +EXPORT_SYMBOL_GPL vmlinux 0x13ba9d00 sk_msg_return_zero EXPORT_SYMBOL_GPL vmlinux 0x13c158e4 kobject_move -EXPORT_SYMBOL_GPL vmlinux 0x13c3434c ahci_platform_suspend -EXPORT_SYMBOL_GPL vmlinux 0x13d9b18f platform_device_register_full -EXPORT_SYMBOL_GPL vmlinux 0x13dad81b sock_diag_destroy -EXPORT_SYMBOL_GPL vmlinux 0x13dc6137 gpiod_set_raw_array_value -EXPORT_SYMBOL_GPL vmlinux 0x13e5cd8b nand_change_read_column_op +EXPORT_SYMBOL_GPL vmlinux 0x13c925e0 tpmm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0x13de87ab simple_attr_open +EXPORT_SYMBOL_GPL vmlinux 0x13e918e7 regulator_register EXPORT_SYMBOL_GPL vmlinux 0x13ed8784 sdev_evt_alloc -EXPORT_SYMBOL_GPL vmlinux 0x13f6a942 fwnode_get_name -EXPORT_SYMBOL_GPL vmlinux 0x13fc7b9f usb_hcd_start_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x13f33ff6 dev_pm_opp_get_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0x13f7da37 crypto_skcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x13f933f2 snd_soc_dapm_free EXPORT_SYMBOL_GPL vmlinux 0x1403ad09 cpufreq_add_update_util_hook +EXPORT_SYMBOL_GPL vmlinux 0x140e9fff param_set_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0x140ef5f8 snd_compr_stop_error EXPORT_SYMBOL_GPL vmlinux 0x141f38bf ktime_get_raw_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0x1434d61c tcp_bpf_update_proto -EXPORT_SYMBOL_GPL vmlinux 0x1440d0fc pci_host_common_remove -EXPORT_SYMBOL_GPL vmlinux 0x1441c94d spi_mem_adjust_op_size -EXPORT_SYMBOL_GPL vmlinux 0x144a3097 snd_dmaengine_pcm_refine_runtime_hwparams -EXPORT_SYMBOL_GPL vmlinux 0x145c13f7 devfreq_event_get_edev_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x1470a804 devfreq_event_get_edev_count -EXPORT_SYMBOL_GPL vmlinux 0x1489c56b ata_sas_async_probe -EXPORT_SYMBOL_GPL vmlinux 0x148a9dcb devm_gpiod_get_index_optional -EXPORT_SYMBOL_GPL vmlinux 0x148b0f1a devm_gpiod_put_array -EXPORT_SYMBOL_GPL vmlinux 0x14a43f09 i2c_dw_prepare_clk -EXPORT_SYMBOL_GPL vmlinux 0x14a76ab8 crypto_find_alg -EXPORT_SYMBOL_GPL vmlinux 0x14a88431 devm_device_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0x14486fbf gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0x146f157b usb_autopm_get_interface +EXPORT_SYMBOL_GPL vmlinux 0x1475bd5e snd_soc_jack_free_gpios +EXPORT_SYMBOL_GPL vmlinux 0x149b7051 __traceiter_sched_util_est_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x14a0c00d perf_event_addr_filters_sync EXPORT_SYMBOL_GPL vmlinux 0x14a98a21 cpu_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x14bc4651 sdhci_cqe_irq -EXPORT_SYMBOL_GPL vmlinux 0x14be90e5 device_show_bool +EXPORT_SYMBOL_GPL vmlinux 0x14a98a31 thermal_zone_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x14ae1939 gpiod_set_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x14b14b57 devlink_param_value_changed +EXPORT_SYMBOL_GPL vmlinux 0x14b9f18b snd_soc_component_update_bits_async EXPORT_SYMBOL_GPL vmlinux 0x14c2872d xas_pause -EXPORT_SYMBOL_GPL vmlinux 0x14c3507f bio_associate_blkg_from_css -EXPORT_SYMBOL_GPL vmlinux 0x14cf5735 mmc_cmdq_disable +EXPORT_SYMBOL_GPL vmlinux 0x14c2f253 snd_soc_dai_get_channel_map EXPORT_SYMBOL_GPL vmlinux 0x14d01690 clk_mux_index_to_val -EXPORT_SYMBOL_GPL vmlinux 0x14dcba0f nand_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x14f9fb65 dev_pm_opp_find_level_exact -EXPORT_SYMBOL_GPL vmlinux 0x152e0180 iomap_zero_range -EXPORT_SYMBOL_GPL vmlinux 0x15343dbe gpiod_get_direction -EXPORT_SYMBOL_GPL vmlinux 0x15388903 dma_release_channel +EXPORT_SYMBOL_GPL vmlinux 0x14de2257 uart_get_rs485_mode +EXPORT_SYMBOL_GPL vmlinux 0x14def4d5 unmap_mapping_pages +EXPORT_SYMBOL_GPL vmlinux 0x14df4743 uhci_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0x14e11450 class_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x14e32ea2 rio_request_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x14e32f4f ipv6_proxy_select_ident +EXPORT_SYMBOL_GPL vmlinux 0x14f7c404 perf_event_period +EXPORT_SYMBOL_GPL vmlinux 0x14fe35b6 sdhci_set_uhs_signaling +EXPORT_SYMBOL_GPL vmlinux 0x1522674a reset_controller_register EXPORT_SYMBOL_GPL vmlinux 0x153b60a6 klist_del -EXPORT_SYMBOL_GPL vmlinux 0x15449890 devlink_port_type_eth_set -EXPORT_SYMBOL_GPL vmlinux 0x154ab8c6 sock_prot_inuse_add +EXPORT_SYMBOL_GPL vmlinux 0x1545ac5d register_net_sysctl +EXPORT_SYMBOL_GPL vmlinux 0x15496566 fwnode_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0x154b8dd4 device_add_software_node +EXPORT_SYMBOL_GPL vmlinux 0x154bad79 i2c_new_dummy_device EXPORT_SYMBOL_GPL vmlinux 0x1550efdf inet_peer_base_init EXPORT_SYMBOL_GPL vmlinux 0x15510a89 devlink_fmsg_binary_put -EXPORT_SYMBOL_GPL vmlinux 0x155b9b81 nd_region_provider_data -EXPORT_SYMBOL_GPL vmlinux 0x156d59ab __page_file_index -EXPORT_SYMBOL_GPL vmlinux 0x15799ca2 ahci_port_resume -EXPORT_SYMBOL_GPL vmlinux 0x158c37e0 inet6_lookup -EXPORT_SYMBOL_GPL vmlinux 0x1593c15c do_truncate -EXPORT_SYMBOL_GPL vmlinux 0x159d6eec icc_set_bw +EXPORT_SYMBOL_GPL vmlinux 0x15571b26 blk_set_pm_only +EXPORT_SYMBOL_GPL vmlinux 0x155ab5c8 show_class_attr_string +EXPORT_SYMBOL_GPL vmlinux 0x157629cb root_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x15829124 skb_mpls_update_lse +EXPORT_SYMBOL_GPL vmlinux 0x15842946 do_splice_to +EXPORT_SYMBOL_GPL vmlinux 0x15a78e7c fuse_get_unique EXPORT_SYMBOL_GPL vmlinux 0x15ab2790 __tracepoint_devlink_hwmsg +EXPORT_SYMBOL_GPL vmlinux 0x15ade1cc filter_irq_stacks EXPORT_SYMBOL_GPL vmlinux 0x15b06044 __xas_prev -EXPORT_SYMBOL_GPL vmlinux 0x15c8eb44 pci_cfg_access_lock -EXPORT_SYMBOL_GPL vmlinux 0x15d6824b tty_port_register_device_attr -EXPORT_SYMBOL_GPL vmlinux 0x15eb4e5f devm_otg_ulpi_create -EXPORT_SYMBOL_GPL vmlinux 0x15ec8f30 of_reserved_mem_device_init_by_idx +EXPORT_SYMBOL_GPL vmlinux 0x15b44187 devm_gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0x15c2d20f fwnode_property_get_reference_args EXPORT_SYMBOL_GPL vmlinux 0x15eca580 percpu_ref_switch_to_percpu -EXPORT_SYMBOL_GPL vmlinux 0x15f00b74 __pm_runtime_idle -EXPORT_SYMBOL_GPL vmlinux 0x15f4a448 wakeup_source_register -EXPORT_SYMBOL_GPL vmlinux 0x1611348c tcp_register_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0x15ef92ae phy_modify_mmd_changed +EXPORT_SYMBOL_GPL vmlinux 0x1606ed35 d_walk +EXPORT_SYMBOL_GPL vmlinux 0x16073356 of_prop_next_string +EXPORT_SYMBOL_GPL vmlinux 0x160c795a edac_mc_del_mc EXPORT_SYMBOL_GPL vmlinux 0x161723af kobject_init_and_add -EXPORT_SYMBOL_GPL vmlinux 0x161c6e08 ahci_ops -EXPORT_SYMBOL_GPL vmlinux 0x161e6f9f lwtunnel_xmit -EXPORT_SYMBOL_GPL vmlinux 0x1620ac84 sock_diag_put_meminfo -EXPORT_SYMBOL_GPL vmlinux 0x162f7f0f edac_get_sysfs_subsys -EXPORT_SYMBOL_GPL vmlinux 0x16461f20 bus_remove_file -EXPORT_SYMBOL_GPL vmlinux 0x16542ea6 snd_soc_suspend -EXPORT_SYMBOL_GPL vmlinux 0x1682eb88 gadget_find_ep_by_name -EXPORT_SYMBOL_GPL vmlinux 0x168411fd scsi_host_block +EXPORT_SYMBOL_GPL vmlinux 0x16285e6d usb_set_interface +EXPORT_SYMBOL_GPL vmlinux 0x162fd153 usb_ep0_reinit +EXPORT_SYMBOL_GPL vmlinux 0x16593194 nf_hook_entries_delete_raw +EXPORT_SYMBOL_GPL vmlinux 0x165c2b18 __vfs_setxattr_locked +EXPORT_SYMBOL_GPL vmlinux 0x1664576f regulator_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0x16795a71 akcipher_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x167bd501 snd_soc_dapm_info_pin_switch +EXPORT_SYMBOL_GPL vmlinux 0x1682e75e crypto_ahash_digest EXPORT_SYMBOL_GPL vmlinux 0x1687ec20 tty_get_frame_size +EXPORT_SYMBOL_GPL vmlinux 0x168ec98b extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0x168fe238 tty_port_unregister_device EXPORT_SYMBOL_GPL vmlinux 0x1690b503 usb_role_switch_get_drvdata EXPORT_SYMBOL_GPL vmlinux 0x169b185f verify_pkcs7_signature -EXPORT_SYMBOL_GPL vmlinux 0x169f383a tcp_enter_memory_pressure -EXPORT_SYMBOL_GPL vmlinux 0x16b6a731 iomap_dio_iopoll -EXPORT_SYMBOL_GPL vmlinux 0x16c6dc82 regulator_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x16a92e92 of_phandle_iterator_init +EXPORT_SYMBOL_GPL vmlinux 0x16b4dd1a mbox_send_message +EXPORT_SYMBOL_GPL vmlinux 0x16b65434 pingv6_prot EXPORT_SYMBOL_GPL vmlinux 0x16cc526e dev_fetch_sw_netstats -EXPORT_SYMBOL_GPL vmlinux 0x16d22052 blk_mq_complete_request_remote +EXPORT_SYMBOL_GPL vmlinux 0x16d00ed2 scsi_host_unblock +EXPORT_SYMBOL_GPL vmlinux 0x16d22b84 usb_add_gadget EXPORT_SYMBOL_GPL vmlinux 0x16d9f9ff pci_remap_cfgspace EXPORT_SYMBOL_GPL vmlinux 0x16da1f88 devlink_fmsg_u32_put -EXPORT_SYMBOL_GPL vmlinux 0x16f0fbda devfreq_event_remove_edev -EXPORT_SYMBOL_GPL vmlinux 0x16fa76bc sata_link_resume -EXPORT_SYMBOL_GPL vmlinux 0x16fb8a3b scsi_unregister_device_handler +EXPORT_SYMBOL_GPL vmlinux 0x16e285e6 ata_cable_ignore +EXPORT_SYMBOL_GPL vmlinux 0x16ff30af of_clk_del_provider +EXPORT_SYMBOL_GPL vmlinux 0x1705d5f5 tty_kclose EXPORT_SYMBOL_GPL vmlinux 0x170cc36c put_timespec64 -EXPORT_SYMBOL_GPL vmlinux 0x170d55e4 virtqueue_is_broken -EXPORT_SYMBOL_GPL vmlinux 0x17135250 dma_buf_get -EXPORT_SYMBOL_GPL vmlinux 0x1720a452 irq_domain_create_legacy -EXPORT_SYMBOL_GPL vmlinux 0x173d6566 fib6_new_table -EXPORT_SYMBOL_GPL vmlinux 0x17443f69 usb_gadget_check_config +EXPORT_SYMBOL_GPL vmlinux 0x171398a8 fib_info_nh_uses_dev +EXPORT_SYMBOL_GPL vmlinux 0x17151463 power_supply_property_is_writeable +EXPORT_SYMBOL_GPL vmlinux 0x1731c32b usb_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x1736b6c0 null_dailink_component +EXPORT_SYMBOL_GPL vmlinux 0x174141ae fscrypt_set_context EXPORT_SYMBOL_GPL vmlinux 0x17480d56 x509_free_certificate +EXPORT_SYMBOL_GPL vmlinux 0x174c4650 spi_mem_driver_unregister EXPORT_SYMBOL_GPL vmlinux 0x174c6274 ring_buffer_time_stamp -EXPORT_SYMBOL_GPL vmlinux 0x17584613 ata_sff_freeze +EXPORT_SYMBOL_GPL vmlinux 0x175c2d3d of_prop_next_u32 EXPORT_SYMBOL_GPL vmlinux 0x176031a7 devlink_fmsg_string_put -EXPORT_SYMBOL_GPL vmlinux 0x17690c08 cpufreq_dbs_governor_stop -EXPORT_SYMBOL_GPL vmlinux 0x177428f6 devm_pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x177bc4e1 pci_find_next_capability EXPORT_SYMBOL_GPL vmlinux 0x177c338d twl_get_version -EXPORT_SYMBOL_GPL vmlinux 0x177e9d71 of_genpd_del_provider -EXPORT_SYMBOL_GPL vmlinux 0x178af24c fixed_phy_register -EXPORT_SYMBOL_GPL vmlinux 0x17a0e9f5 ata_pci_device_resume -EXPORT_SYMBOL_GPL vmlinux 0x17a37e55 gpiochip_free_own_desc -EXPORT_SYMBOL_GPL vmlinux 0x17b919ba devlink_free -EXPORT_SYMBOL_GPL vmlinux 0x17bb0dc8 __platform_driver_probe -EXPORT_SYMBOL_GPL vmlinux 0x17bcae8d user_destroy -EXPORT_SYMBOL_GPL vmlinux 0x17c20155 gpiochip_line_is_open_drain -EXPORT_SYMBOL_GPL vmlinux 0x17f4d94a tpm2_get_cc_attrs_tbl -EXPORT_SYMBOL_GPL vmlinux 0x17fd467d null_dailink_component +EXPORT_SYMBOL_GPL vmlinux 0x177f261a snd_soc_info_enum_double +EXPORT_SYMBOL_GPL vmlinux 0x17873a72 pm_generic_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x17899143 ehci_setup +EXPORT_SYMBOL_GPL vmlinux 0x178ca4dc cpufreq_cpu_get +EXPORT_SYMBOL_GPL vmlinux 0x17bffc4c relay_close +EXPORT_SYMBOL_GPL vmlinux 0x17e36446 bpf_event_output +EXPORT_SYMBOL_GPL vmlinux 0x17f9c76b task_cgroup_path +EXPORT_SYMBOL_GPL vmlinux 0x17fd38c0 snd_soc_get_enum_double +EXPORT_SYMBOL_GPL vmlinux 0x17fd6855 rio_map_inb_region +EXPORT_SYMBOL_GPL vmlinux 0x17fd6d76 i2c_dw_probe_master +EXPORT_SYMBOL_GPL vmlinux 0x17fe4b6f devlink_dpipe_table_unregister +EXPORT_SYMBOL_GPL vmlinux 0x17fe61ae crypto_stats_rng_seed EXPORT_SYMBOL_GPL vmlinux 0x18008c59 ring_buffer_resize -EXPORT_SYMBOL_GPL vmlinux 0x18015457 pci_enable_pcie_error_reporting -EXPORT_SYMBOL_GPL vmlinux 0x180bb1b6 dma_free_noncontiguous -EXPORT_SYMBOL_GPL vmlinux 0x181f99f0 gpiod_set_raw_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x181fe928 pinctrl_dev_get_name -EXPORT_SYMBOL_GPL vmlinux 0x183fa467 devm_pinctrl_register_and_init -EXPORT_SYMBOL_GPL vmlinux 0x18442e24 sysfs_groups_change_owner -EXPORT_SYMBOL_GPL vmlinux 0x184c9057 vfs_listxattr -EXPORT_SYMBOL_GPL vmlinux 0x185a3a5a __of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0x180fcc0b __platform_driver_probe +EXPORT_SYMBOL_GPL vmlinux 0x182c9fdd fwnode_graph_get_remote_node +EXPORT_SYMBOL_GPL vmlinux 0x183fb74d wm8400_reset_codec_reg_cache +EXPORT_SYMBOL_GPL vmlinux 0x18432045 tty_save_termios +EXPORT_SYMBOL_GPL vmlinux 0x1847c9e6 tracing_cond_snapshot_data EXPORT_SYMBOL_GPL vmlinux 0x18615d35 efivar_supports_writes -EXPORT_SYMBOL_GPL vmlinux 0x186692d3 balloon_page_dequeue -EXPORT_SYMBOL_GPL vmlinux 0x186be90a hwspin_lock_unregister -EXPORT_SYMBOL_GPL vmlinux 0x187ab884 gpiod_to_irq -EXPORT_SYMBOL_GPL vmlinux 0x187cc877 of_reset_control_array_get -EXPORT_SYMBOL_GPL vmlinux 0x187fee38 device_match_devt -EXPORT_SYMBOL_GPL vmlinux 0x18908c39 sock_inuse_get -EXPORT_SYMBOL_GPL vmlinux 0x1892133c dax_copy_from_iter -EXPORT_SYMBOL_GPL vmlinux 0x18976b49 da903x_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x1897984e usb_unlocked_enable_lpm -EXPORT_SYMBOL_GPL vmlinux 0x18a278eb musb_set_host -EXPORT_SYMBOL_GPL vmlinux 0x18a71599 security_inode_permission -EXPORT_SYMBOL_GPL vmlinux 0x18ad17f9 snd_soc_set_ac97_ops_of_reset -EXPORT_SYMBOL_GPL vmlinux 0x18b016bf skcipher_walk_done -EXPORT_SYMBOL_GPL vmlinux 0x18bc63b5 devlink_params_register -EXPORT_SYMBOL_GPL vmlinux 0x18cb5f69 clk_mux_determine_rate_flags +EXPORT_SYMBOL_GPL vmlinux 0x186869b7 dev_pm_domain_detach +EXPORT_SYMBOL_GPL vmlinux 0x188273ea serdev_controller_remove +EXPORT_SYMBOL_GPL vmlinux 0x189a6dc0 __mdiobus_modify_changed +EXPORT_SYMBOL_GPL vmlinux 0x18a08679 pm_runtime_force_resume +EXPORT_SYMBOL_GPL vmlinux 0x18afc9a9 usb_driver_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0x18b69b6e pm_generic_poweroff_late +EXPORT_SYMBOL_GPL vmlinux 0x18c2b32f zap_vma_ptes +EXPORT_SYMBOL_GPL vmlinux 0x18cde9e3 dev_pm_opp_unregister_set_opp_helper EXPORT_SYMBOL_GPL vmlinux 0x18da5130 sbitmap_get_shallow -EXPORT_SYMBOL_GPL vmlinux 0x18e3b0e1 mtd_ooblayout_ecc +EXPORT_SYMBOL_GPL vmlinux 0x18e05801 subsys_find_device_by_id +EXPORT_SYMBOL_GPL vmlinux 0x18e058df of_nvmem_device_get EXPORT_SYMBOL_GPL vmlinux 0x18e4f8aa swphy_read_reg EXPORT_SYMBOL_GPL vmlinux 0x18e8c440 arch_freq_scale -EXPORT_SYMBOL_GPL vmlinux 0x18ea21ab bpf_prog_select_runtime -EXPORT_SYMBOL_GPL vmlinux 0x18ee8fdc debugfs_print_regs32 +EXPORT_SYMBOL_GPL vmlinux 0x18ecc1f9 sysfs_break_active_protection EXPORT_SYMBOL_GPL vmlinux 0x18fb2caf cpus_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0x190b58bf of_add_property -EXPORT_SYMBOL_GPL vmlinux 0x191d73ae usb_add_hcd -EXPORT_SYMBOL_GPL vmlinux 0x191ec4e0 snd_soc_bytes_put +EXPORT_SYMBOL_GPL vmlinux 0x1902629f xhci_reset_bandwidth +EXPORT_SYMBOL_GPL vmlinux 0x19055e0a device_create_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x191ae64f crypto_stats_get EXPORT_SYMBOL_GPL vmlinux 0x1921431b meson_clk_pcie_pll_ops -EXPORT_SYMBOL_GPL vmlinux 0x1922e723 da903x_write -EXPORT_SYMBOL_GPL vmlinux 0x192b18ed debugfs_create_regset32 -EXPORT_SYMBOL_GPL vmlinux 0x19326a77 __blk_req_zone_write_unlock -EXPORT_SYMBOL_GPL vmlinux 0x1939eadb mmc_regulator_get_supply -EXPORT_SYMBOL_GPL vmlinux 0x193b71a1 crypto_skcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x193ddd5f usb_hcd_unmap_urb_setup_for_dma EXPORT_SYMBOL_GPL vmlinux 0x194132fa zs_huge_class_size -EXPORT_SYMBOL_GPL vmlinux 0x194621de ip6_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0x19476ae8 dev_pm_genpd_remove_notifier EXPORT_SYMBOL_GPL vmlinux 0x194dd751 alarm_forward_now -EXPORT_SYMBOL_GPL vmlinux 0x19594bc1 crypto_register_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x196e493a debugfs_rename -EXPORT_SYMBOL_GPL vmlinux 0x196ffe6c md_start -EXPORT_SYMBOL_GPL vmlinux 0x197b5fa1 regulator_set_bypass_regmap -EXPORT_SYMBOL_GPL vmlinux 0x199bbd6c scsi_nl_sock -EXPORT_SYMBOL_GPL vmlinux 0x199db791 extcon_find_edev_by_node +EXPORT_SYMBOL_GPL vmlinux 0x1965750b ehci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0x1975f3bd pm_generic_thaw +EXPORT_SYMBOL_GPL vmlinux 0x1978c63b udp_abort +EXPORT_SYMBOL_GPL vmlinux 0x19853c5b dm_set_target_max_io_len +EXPORT_SYMBOL_GPL vmlinux 0x19a07e04 nexthop_select_path +EXPORT_SYMBOL_GPL vmlinux 0x19a1153e register_wide_hw_breakpoint EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled -EXPORT_SYMBOL_GPL vmlinux 0x19b55834 do_take_over_console EXPORT_SYMBOL_GPL vmlinux 0x19c20269 soc_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x19d23656 i2c_dw_configure_master +EXPORT_SYMBOL_GPL vmlinux 0x19e5e821 watchdog_init_timeout EXPORT_SYMBOL_GPL vmlinux 0x19e81304 btree_alloc -EXPORT_SYMBOL_GPL vmlinux 0x19e832dd md_stop_writes -EXPORT_SYMBOL_GPL vmlinux 0x19e90448 usb_sg_init -EXPORT_SYMBOL_GPL vmlinux 0x19ed374d get_kernel_pages +EXPORT_SYMBOL_GPL vmlinux 0x19ebcaa1 sdhci_enable_v4_mode +EXPORT_SYMBOL_GPL vmlinux 0x19ed5bb2 trace_event_ignore_this_pid +EXPORT_SYMBOL_GPL vmlinux 0x19ee2953 of_i2c_setup_smbus_alert +EXPORT_SYMBOL_GPL vmlinux 0x19f99937 of_device_request_module EXPORT_SYMBOL_GPL vmlinux 0x1a073a45 __tracepoint_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0x1a07abf2 snd_soc_dai_compr_get_metadata EXPORT_SYMBOL_GPL vmlinux 0x1a10c32b crypto_ft_tab EXPORT_SYMBOL_GPL vmlinux 0x1a146ec3 usb_ep_type_string -EXPORT_SYMBOL_GPL vmlinux 0x1a1e3bc1 of_thermal_get_trip_points -EXPORT_SYMBOL_GPL vmlinux 0x1a24e0d5 usb_set_device_state EXPORT_SYMBOL_GPL vmlinux 0x1a266232 __tracepoint_pelt_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x1a267c84 ata_cable_unknown EXPORT_SYMBOL_GPL vmlinux 0x1a267fa8 bch_init -EXPORT_SYMBOL_GPL vmlinux 0x1a288453 arm_iommu_attach_device -EXPORT_SYMBOL_GPL vmlinux 0x1a2da13e __hwspin_unlock -EXPORT_SYMBOL_GPL vmlinux 0x1a385e46 amba_apb_device_add -EXPORT_SYMBOL_GPL vmlinux 0x1a3db8f9 ohci_restart +EXPORT_SYMBOL_GPL vmlinux 0x1a2a8ffd serdev_device_wait_until_sent EXPORT_SYMBOL_GPL vmlinux 0x1a44572f rht_bucket_nested_insert +EXPORT_SYMBOL_GPL vmlinux 0x1a567e05 devres_add EXPORT_SYMBOL_GPL vmlinux 0x1a574d59 get_state_synchronize_srcu -EXPORT_SYMBOL_GPL vmlinux 0x1a5d456c __netpoll_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x1a636ca3 max8997_write_reg +EXPORT_SYMBOL_GPL vmlinux 0x1a59cb11 crypto_create_tfm_node EXPORT_SYMBOL_GPL vmlinux 0x1a6bf28f fsnotify_get_cookie -EXPORT_SYMBOL_GPL vmlinux 0x1a7505c5 vga_default_device +EXPORT_SYMBOL_GPL vmlinux 0x1a6ec1bd sock_diag_destroy +EXPORT_SYMBOL_GPL vmlinux 0x1a738693 crypto_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x1a764f6b d_exchange EXPORT_SYMBOL_GPL vmlinux 0x1a77903a of_alias_get_alias_list -EXPORT_SYMBOL_GPL vmlinux 0x1a85f1b0 attribute_container_find_class_device -EXPORT_SYMBOL_GPL vmlinux 0x1aad3ada snd_ctl_register_layer -EXPORT_SYMBOL_GPL vmlinux 0x1ab09f61 snd_soc_poweroff -EXPORT_SYMBOL_GPL vmlinux 0x1ab55f6e ata_link_next -EXPORT_SYMBOL_GPL vmlinux 0x1adfcdf3 tpm_get_timeouts +EXPORT_SYMBOL_GPL vmlinux 0x1a80671a sysfs_file_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x1a82278d ahci_platform_disable_resources +EXPORT_SYMBOL_GPL vmlinux 0x1a82d349 to_nvdimm_bus +EXPORT_SYMBOL_GPL vmlinux 0x1a9e96ba ata_sff_irq_on +EXPORT_SYMBOL_GPL vmlinux 0x1aa4439c subsys_system_register +EXPORT_SYMBOL_GPL vmlinux 0x1af07ab1 report_iommu_fault +EXPORT_SYMBOL_GPL vmlinux 0x1af1779f inet_ctl_sock_create EXPORT_SYMBOL_GPL vmlinux 0x1af267f8 int_pow -EXPORT_SYMBOL_GPL vmlinux 0x1b06dcc9 rt_mutex_lock -EXPORT_SYMBOL_GPL vmlinux 0x1b375031 sdhci_enable_clk -EXPORT_SYMBOL_GPL vmlinux 0x1b41cb1e ata_port_abort +EXPORT_SYMBOL_GPL vmlinux 0x1af3559f page_cache_async_ra +EXPORT_SYMBOL_GPL vmlinux 0x1af41329 i2c_client_type +EXPORT_SYMBOL_GPL vmlinux 0x1b005f5f pci_device_is_present +EXPORT_SYMBOL_GPL vmlinux 0x1b11d239 gpiochip_line_is_open_source +EXPORT_SYMBOL_GPL vmlinux 0x1b2d89d3 sata_std_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x1b347355 elv_register +EXPORT_SYMBOL_GPL vmlinux 0x1b3587c5 sk_msg_free_partial +EXPORT_SYMBOL_GPL vmlinux 0x1b3ab9d8 trace_event_buffer_commit +EXPORT_SYMBOL_GPL vmlinux 0x1b3e5ae1 meson_pmx_get_funcs_count +EXPORT_SYMBOL_GPL vmlinux 0x1b465d2f usb_gadget_probe_driver +EXPORT_SYMBOL_GPL vmlinux 0x1b4f35d0 is_swiotlb_active +EXPORT_SYMBOL_GPL vmlinux 0x1b502819 genphy_c45_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0x1b504f61 fat_truncate_time EXPORT_SYMBOL_GPL vmlinux 0x1b5059ce ata_id_xfermask -EXPORT_SYMBOL_GPL vmlinux 0x1b563115 handle_bad_irq -EXPORT_SYMBOL_GPL vmlinux 0x1b61f3db devlink_port_type_clear -EXPORT_SYMBOL_GPL vmlinux 0x1b6c0ff9 net_ns_type_operations -EXPORT_SYMBOL_GPL vmlinux 0x1b6dd154 inet_send_prepare -EXPORT_SYMBOL_GPL vmlinux 0x1b81b2b2 usb_del_gadget_udc -EXPORT_SYMBOL_GPL vmlinux 0x1b82d832 sata_link_scr_lpm +EXPORT_SYMBOL_GPL vmlinux 0x1b5887dd blk_ksm_register +EXPORT_SYMBOL_GPL vmlinux 0x1b6e715a ata_sas_port_init +EXPORT_SYMBOL_GPL vmlinux 0x1b775b62 devm_bitmap_zalloc +EXPORT_SYMBOL_GPL vmlinux 0x1b793b7d spi_mem_dirmap_read +EXPORT_SYMBOL_GPL vmlinux 0x1b849a54 skb_splice_bits +EXPORT_SYMBOL_GPL vmlinux 0x1b87aff6 crypto_shash_alg_has_setkey EXPORT_SYMBOL_GPL vmlinux 0x1b8822d8 pinctrl_gpio_direction_output -EXPORT_SYMBOL_GPL vmlinux 0x1b90f4c7 dev_pm_opp_of_find_icc_paths EXPORT_SYMBOL_GPL vmlinux 0x1b92e41d inet_putpeer -EXPORT_SYMBOL_GPL vmlinux 0x1b9b21d0 rtnl_link_register -EXPORT_SYMBOL_GPL vmlinux 0x1b9c6d38 snd_soc_put_xr_sx +EXPORT_SYMBOL_GPL vmlinux 0x1b9437e8 xfrm_audit_state_icvfail +EXPORT_SYMBOL_GPL vmlinux 0x1b99f14b mtk_pinconf_bias_disable_get_rev1 +EXPORT_SYMBOL_GPL vmlinux 0x1ba8c1f1 blk_mq_flush_busy_ctxs +EXPORT_SYMBOL_GPL vmlinux 0x1ba9e706 tps6586x_read EXPORT_SYMBOL_GPL vmlinux 0x1baa55d5 meson_clk_pll_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0x1bae2ce5 irq_remove_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x1bbf0467 ip6_flush_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x1bc00ebf inet_csk_listen_stop +EXPORT_SYMBOL_GPL vmlinux 0x1bc3ec4e vchan_find_desc EXPORT_SYMBOL_GPL vmlinux 0x1bc40a8d gpmc_omap_get_nand_ops EXPORT_SYMBOL_GPL vmlinux 0x1bc5eebe pinctrl_gpio_direction_input -EXPORT_SYMBOL_GPL vmlinux 0x1bccce30 platform_get_mem_or_io -EXPORT_SYMBOL_GPL vmlinux 0x1be1204e spi_unregister_controller -EXPORT_SYMBOL_GPL vmlinux 0x1be4d0ed __platform_create_bundle +EXPORT_SYMBOL_GPL vmlinux 0x1bc72f0d regulator_get_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0x1bcd6d81 find_get_pid +EXPORT_SYMBOL_GPL vmlinux 0x1bceaedb pci_enable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0x1be7a74f cpu_device_create EXPORT_SYMBOL_GPL vmlinux 0x1bee4974 sg_alloc_table_chained -EXPORT_SYMBOL_GPL vmlinux 0x1befd3d7 serdev_device_write_flush EXPORT_SYMBOL_GPL vmlinux 0x1c01e03d __tracepoint_detach_device_from_domain -EXPORT_SYMBOL_GPL vmlinux 0x1c135df6 regulator_set_voltage_time_sel -EXPORT_SYMBOL_GPL vmlinux 0x1c1d70d1 syscon_regmap_lookup_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x1c27a3c8 alloc_io_pgtable_ops -EXPORT_SYMBOL_GPL vmlinux 0x1c2af5bf __irq_alloc_domain_generic_chips -EXPORT_SYMBOL_GPL vmlinux 0x1c4cf0a9 ahci_pmp_retry_srst_ops +EXPORT_SYMBOL_GPL vmlinux 0x1c06beb5 sysfs_chmod_file +EXPORT_SYMBOL_GPL vmlinux 0x1c0ae57b fib_rules_dump +EXPORT_SYMBOL_GPL vmlinux 0x1c16c230 dev_pm_opp_get_opp_table +EXPORT_SYMBOL_GPL vmlinux 0x1c1a2048 gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0x1c3782e7 pci_msi_unmask_irq +EXPORT_SYMBOL_GPL vmlinux 0x1c41ebf8 pstore_register EXPORT_SYMBOL_GPL vmlinux 0x1c5541bd cpufreq_boost_enabled -EXPORT_SYMBOL_GPL vmlinux 0x1c57e780 stmpe_set_altfunc EXPORT_SYMBOL_GPL vmlinux 0x1c5b1f28 irq_free_descs EXPORT_SYMBOL_GPL vmlinux 0x1c5ff742 clk_get_phase -EXPORT_SYMBOL_GPL vmlinux 0x1c6817fd syscon_regmap_lookup_by_phandle_optional +EXPORT_SYMBOL_GPL vmlinux 0x1c6867d2 scsi_dh_set_params +EXPORT_SYMBOL_GPL vmlinux 0x1c6b8d21 nvdimm_has_flush +EXPORT_SYMBOL_GPL vmlinux 0x1c6e42ed scsi_autopm_put_device EXPORT_SYMBOL_GPL vmlinux 0x1c80d27d btree_geo128 -EXPORT_SYMBOL_GPL vmlinux 0x1c825324 is_virtio_device -EXPORT_SYMBOL_GPL vmlinux 0x1c8790dc mtd_block_markbad EXPORT_SYMBOL_GPL vmlinux 0x1c87a811 __round_jiffies_up -EXPORT_SYMBOL_GPL vmlinux 0x1ca11728 usb_hcd_setup_local_mem +EXPORT_SYMBOL_GPL vmlinux 0x1c899036 cpufreq_dbs_governor_init +EXPORT_SYMBOL_GPL vmlinux 0x1c9c97d8 espintcp_push_skb +EXPORT_SYMBOL_GPL vmlinux 0x1cab0bef clockevents_register_device EXPORT_SYMBOL_GPL vmlinux 0x1cbd92b0 cpu_mitigations_off -EXPORT_SYMBOL_GPL vmlinux 0x1ccd9105 debugfs_create_size_t -EXPORT_SYMBOL_GPL vmlinux 0x1cd3ee7d device_set_wakeup_capable -EXPORT_SYMBOL_GPL vmlinux 0x1cddfedb tcp_ca_openreq_child +EXPORT_SYMBOL_GPL vmlinux 0x1cbf8c17 virtio_config_changed +EXPORT_SYMBOL_GPL vmlinux 0x1cc90d37 mtk_mmsys_ddp_disconnect +EXPORT_SYMBOL_GPL vmlinux 0x1ccae17f pci_restore_msi_state +EXPORT_SYMBOL_GPL vmlinux 0x1cda580e snd_soc_dai_compr_pointer +EXPORT_SYMBOL_GPL vmlinux 0x1cda9eef ata_sff_busy_sleep EXPORT_SYMBOL_GPL vmlinux 0x1cdf4efb copy_from_kernel_nofault -EXPORT_SYMBOL_GPL vmlinux 0x1ce6f1da snd_soc_dapm_new_widgets +EXPORT_SYMBOL_GPL vmlinux 0x1ceaf5af i2c_probe_func_quick_read +EXPORT_SYMBOL_GPL vmlinux 0x1cf48aed dm_bio_get_target_bio_nr +EXPORT_SYMBOL_GPL vmlinux 0x1cfbe868 dev_pm_genpd_set_next_wakeup EXPORT_SYMBOL_GPL vmlinux 0x1cfe4101 clkdev_hw_create -EXPORT_SYMBOL_GPL vmlinux 0x1d05f774 md_bitmap_resize -EXPORT_SYMBOL_GPL vmlinux 0x1d12256c trace_seq_path -EXPORT_SYMBOL_GPL vmlinux 0x1d129819 snd_soc_of_parse_node_prefix +EXPORT_SYMBOL_GPL vmlinux 0x1d10dc98 powercap_register_control_type +EXPORT_SYMBOL_GPL vmlinux 0x1d116982 cpufreq_register_governor +EXPORT_SYMBOL_GPL vmlinux 0x1d19522a irq_chip_unmask_parent +EXPORT_SYMBOL_GPL vmlinux 0x1d1ece9a devm_gpiod_unhinge +EXPORT_SYMBOL_GPL vmlinux 0x1d1fe62e gpiochip_relres_irq EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state -EXPORT_SYMBOL_GPL vmlinux 0x1d23989a pci_epc_stop -EXPORT_SYMBOL_GPL vmlinux 0x1d27efa4 dev_pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0x1d24f3d4 perf_aux_output_end EXPORT_SYMBOL_GPL vmlinux 0x1d29b9e1 decode_rs8 -EXPORT_SYMBOL_GPL vmlinux 0x1d35ecbb efivar_entry_set_get_size -EXPORT_SYMBOL_GPL vmlinux 0x1d42e41a led_blink_set -EXPORT_SYMBOL_GPL vmlinux 0x1d468ab4 blk_mq_hctx_set_fq_lock_class -EXPORT_SYMBOL_GPL vmlinux 0x1d5b00e1 nand_prog_page_end_op -EXPORT_SYMBOL_GPL vmlinux 0x1d5b3d3a __pm_runtime_use_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x1d40abbb crypto_get_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x1d415c2e serial8250_init_port EXPORT_SYMBOL_GPL vmlinux 0x1d61e7e1 clk_register_gate +EXPORT_SYMBOL_GPL vmlinux 0x1d638bef pci_epc_set_bar EXPORT_SYMBOL_GPL vmlinux 0x1d6696b0 mtk_mutex_disable -EXPORT_SYMBOL_GPL vmlinux 0x1d6da162 pwm_adjust_config EXPORT_SYMBOL_GPL vmlinux 0x1d77b0f8 unix_socket_table -EXPORT_SYMBOL_GPL vmlinux 0x1d781eab usb_submit_urb -EXPORT_SYMBOL_GPL vmlinux 0x1d81e357 rio_mport_get_efb -EXPORT_SYMBOL_GPL vmlinux 0x1d847905 ehci_reset -EXPORT_SYMBOL_GPL vmlinux 0x1d8ac05a devlink_region_snapshot_id_put +EXPORT_SYMBOL_GPL vmlinux 0x1d87547b devm_of_clk_add_hw_provider EXPORT_SYMBOL_GPL vmlinux 0x1d94a218 dmi_memdev_handle -EXPORT_SYMBOL_GPL vmlinux 0x1da59732 pci_host_probe -EXPORT_SYMBOL_GPL vmlinux 0x1dba8452 __ndisc_fill_addr_option -EXPORT_SYMBOL_GPL vmlinux 0x1dbbdd26 snd_soc_remove_pcm_runtime -EXPORT_SYMBOL_GPL vmlinux 0x1dbf34d9 ata_dummy_port_info +EXPORT_SYMBOL_GPL vmlinux 0x1d9e98a7 inet6_lookup +EXPORT_SYMBOL_GPL vmlinux 0x1da18403 nanddev_mtd_erase +EXPORT_SYMBOL_GPL vmlinux 0x1da73b42 gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0x1dab198e pwm_set_chip_data +EXPORT_SYMBOL_GPL vmlinux 0x1daf224e powercap_unregister_zone EXPORT_SYMBOL_GPL vmlinux 0x1dc17bf9 rhltable_init -EXPORT_SYMBOL_GPL vmlinux 0x1dc420d6 zap_vma_ptes -EXPORT_SYMBOL_GPL vmlinux 0x1dc5da81 tpm_transmit_cmd -EXPORT_SYMBOL_GPL vmlinux 0x1dc75789 serdev_device_open -EXPORT_SYMBOL_GPL vmlinux 0x1dc81ceb switchdev_handle_port_attr_set -EXPORT_SYMBOL_GPL vmlinux 0x1dcdb0a6 scsi_schedule_eh -EXPORT_SYMBOL_GPL vmlinux 0x1dd4db5b blk_queue_flag_test_and_set -EXPORT_SYMBOL_GPL vmlinux 0x1de1180b regulator_suspend_disable -EXPORT_SYMBOL_GPL vmlinux 0x1de4a391 genphy_c45_aneg_done -EXPORT_SYMBOL_GPL vmlinux 0x1dee7068 usb_put_dev +EXPORT_SYMBOL_GPL vmlinux 0x1dd9a14d __devm_rtc_register_device +EXPORT_SYMBOL_GPL vmlinux 0x1df2fbc4 snd_soc_component_compr_set_metadata +EXPORT_SYMBOL_GPL vmlinux 0x1df81590 __traceiter_block_bio_remap EXPORT_SYMBOL_GPL vmlinux 0x1dfa5dbd mpi_invm -EXPORT_SYMBOL_GPL vmlinux 0x1e05bb7d trace_event_raw_init +EXPORT_SYMBOL_GPL vmlinux 0x1dfb6710 relay_subbufs_consumed +EXPORT_SYMBOL_GPL vmlinux 0x1dff99e4 irq_create_fwspec_mapping EXPORT_SYMBOL_GPL vmlinux 0x1e0670c6 reset_control_release -EXPORT_SYMBOL_GPL vmlinux 0x1e264aaf devlink_resource_register -EXPORT_SYMBOL_GPL vmlinux 0x1e2d6979 irq_domain_simple_ops -EXPORT_SYMBOL_GPL vmlinux 0x1e432814 devlink_port_param_driverinit_value_set -EXPORT_SYMBOL_GPL vmlinux 0x1e43c485 pm_generic_thaw +EXPORT_SYMBOL_GPL vmlinux 0x1e0ac17e dev_pm_opp_get_max_clock_latency +EXPORT_SYMBOL_GPL vmlinux 0x1e0dd79b switchdev_port_attr_set +EXPORT_SYMBOL_GPL vmlinux 0x1e1e4d01 l3mdev_table_lookup_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1e1f924c ulpi_viewport_access_ops +EXPORT_SYMBOL_GPL vmlinux 0x1e1fb188 icc_node_del +EXPORT_SYMBOL_GPL vmlinux 0x1e242671 pci_enable_ats +EXPORT_SYMBOL_GPL vmlinux 0x1e3167b3 snd_soc_card_get_kcontrol +EXPORT_SYMBOL_GPL vmlinux 0x1e359ba6 mbox_request_channel_byname +EXPORT_SYMBOL_GPL vmlinux 0x1e35f983 mtk_eint_do_suspend +EXPORT_SYMBOL_GPL vmlinux 0x1e3e06d4 nf_checksum_partial EXPORT_SYMBOL_GPL vmlinux 0x1e4491d7 __tracepoint_rpm_idle -EXPORT_SYMBOL_GPL vmlinux 0x1e4d7017 rdev_get_dev -EXPORT_SYMBOL_GPL vmlinux 0x1e4e0cbd ata_sff_dev_classify -EXPORT_SYMBOL_GPL vmlinux 0x1e503a90 of_usb_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0x1e5ca959 regulator_set_voltage_sel_pickable_regmap -EXPORT_SYMBOL_GPL vmlinux 0x1e5ec704 devm_i2c_add_adapter +EXPORT_SYMBOL_GPL vmlinux 0x1e45cd4f sdev_evt_send_simple +EXPORT_SYMBOL_GPL vmlinux 0x1e6dee58 vfs_fallocate +EXPORT_SYMBOL_GPL vmlinux 0x1e739f5d thermal_zone_device_enable +EXPORT_SYMBOL_GPL vmlinux 0x1e75c885 anon_inode_getfd_secure +EXPORT_SYMBOL_GPL vmlinux 0x1e7b9a8c devm_gpio_request EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart EXPORT_SYMBOL_GPL vmlinux 0x1e7d6157 freezer_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x1e8b889f mmc_cmdq_enable EXPORT_SYMBOL_GPL vmlinux 0x1e8fac8e wireless_nlevent_flush EXPORT_SYMBOL_GPL vmlinux 0x1e9c590a usb_find_common_endpoints_reverse -EXPORT_SYMBOL_GPL vmlinux 0x1ea1203f extcon_get_property +EXPORT_SYMBOL_GPL vmlinux 0x1ea5d2cd bpf_offload_dev_create +EXPORT_SYMBOL_GPL vmlinux 0x1eaaca2b devm_kstrdup EXPORT_SYMBOL_GPL vmlinux 0x1eb9516e round_jiffies_relative -EXPORT_SYMBOL_GPL vmlinux 0x1eb9aef2 xdp_rxq_info_is_reg EXPORT_SYMBOL_GPL vmlinux 0x1ebf6c2a pci_power_names -EXPORT_SYMBOL_GPL vmlinux 0x1ec04f92 pci_disable_ats -EXPORT_SYMBOL_GPL vmlinux 0x1ec20dea device_property_read_u32_array -EXPORT_SYMBOL_GPL vmlinux 0x1ee646c9 simple_attr_open -EXPORT_SYMBOL_GPL vmlinux 0x1f035f34 nvdimm_bus_check_dimm_count -EXPORT_SYMBOL_GPL vmlinux 0x1f058b19 usb_pipe_type_check +EXPORT_SYMBOL_GPL vmlinux 0x1ec06aab usb_hcd_giveback_urb +EXPORT_SYMBOL_GPL vmlinux 0x1ec148a6 snd_ctl_add_vmaster_hook +EXPORT_SYMBOL_GPL vmlinux 0x1ed018b4 bpf_trace_run11 +EXPORT_SYMBOL_GPL vmlinux 0x1ee5048f fwnode_graph_get_remote_port +EXPORT_SYMBOL_GPL vmlinux 0x1ee77bc2 snd_soc_component_enable_pin_unlocked +EXPORT_SYMBOL_GPL vmlinux 0x1ee8b290 sysfs_notify +EXPORT_SYMBOL_GPL vmlinux 0x1efa4391 tty_buffer_unlock_exclusive EXPORT_SYMBOL_GPL vmlinux 0x1f0cb5bf pm_power_off_prepare -EXPORT_SYMBOL_GPL vmlinux 0x1f0ed031 clk_hw_is_prepared -EXPORT_SYMBOL_GPL vmlinux 0x1f199acc em_pd_get -EXPORT_SYMBOL_GPL vmlinux 0x1f348634 pm_genpd_remove -EXPORT_SYMBOL_GPL vmlinux 0x1f356fca l3mdev_fib_table_by_index +EXPORT_SYMBOL_GPL vmlinux 0x1f112d34 wm8350_gpio_config EXPORT_SYMBOL_GPL vmlinux 0x1f38a4f6 mpi_set_highbit -EXPORT_SYMBOL_GPL vmlinux 0x1f3b3238 dev_pm_opp_remove_table -EXPORT_SYMBOL_GPL vmlinux 0x1f3bb493 sched_set_fifo_low -EXPORT_SYMBOL_GPL vmlinux 0x1f431532 nanddev_bbt_set_block_status -EXPORT_SYMBOL_GPL vmlinux 0x1f446695 genphy_c45_pma_resume EXPORT_SYMBOL_GPL vmlinux 0x1f449588 mctrl_gpio_disable_ms -EXPORT_SYMBOL_GPL vmlinux 0x1f4ead34 __kthread_init_worker -EXPORT_SYMBOL_GPL vmlinux 0x1f50d7b1 call_switchdev_blocking_notifiers -EXPORT_SYMBOL_GPL vmlinux 0x1f521895 pinctrl_find_gpio_range_from_pin +EXPORT_SYMBOL_GPL vmlinux 0x1f4998d7 device_attach +EXPORT_SYMBOL_GPL vmlinux 0x1f50630d snd_soc_component_initialize +EXPORT_SYMBOL_GPL vmlinux 0x1f510bfb snd_soc_dapm_enable_pin_unlocked EXPORT_SYMBOL_GPL vmlinux 0x1f54b3ee inet_hashinfo_init EXPORT_SYMBOL_GPL vmlinux 0x1f563160 bpf_offload_dev_priv EXPORT_SYMBOL_GPL vmlinux 0x1f5fc4a5 cpu_latency_qos_request_active -EXPORT_SYMBOL_GPL vmlinux 0x1f651d49 snd_soc_component_set_jack +EXPORT_SYMBOL_GPL vmlinux 0x1f64a49b class_find_device EXPORT_SYMBOL_GPL vmlinux 0x1f774f46 cpuset_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x1f826154 dev_pm_opp_find_level_ceil +EXPORT_SYMBOL_GPL vmlinux 0x1f7ca002 spi_register_controller EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout -EXPORT_SYMBOL_GPL vmlinux 0x1f88b206 sdev_evt_send -EXPORT_SYMBOL_GPL vmlinux 0x1f98769d gpiod_get_index -EXPORT_SYMBOL_GPL vmlinux 0x1f98fab5 mtd_ooblayout_count_freebytes +EXPORT_SYMBOL_GPL vmlinux 0x1f887733 fuse_direct_io EXPORT_SYMBOL_GPL vmlinux 0x1fa1d95c sha256_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x1fb5e2e9 devm_regmap_field_bulk_alloc -EXPORT_SYMBOL_GPL vmlinux 0x1fbb809b iommu_group_remove_device -EXPORT_SYMBOL_GPL vmlinux 0x1fbbfac7 devlink_port_params_unregister -EXPORT_SYMBOL_GPL vmlinux 0x1fc15572 regmap_field_bulk_free -EXPORT_SYMBOL_GPL vmlinux 0x1fc4c504 dev_pm_opp_put_opp_table +EXPORT_SYMBOL_GPL vmlinux 0x1fa473f8 snd_soc_component_nc_pin +EXPORT_SYMBOL_GPL vmlinux 0x1fb4b55a of_property_read_variable_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x1fc228b1 pci_generic_ecam_ops EXPORT_SYMBOL_GPL vmlinux 0x1fca0b38 housekeeping_overridden +EXPORT_SYMBOL_GPL vmlinux 0x1fe59dab input_ff_erase +EXPORT_SYMBOL_GPL vmlinux 0x1fe61116 regulator_map_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0x1fe64c31 devm_snd_soc_register_card EXPORT_SYMBOL_GPL vmlinux 0x1fe6e504 gpiod_add_hogs -EXPORT_SYMBOL_GPL vmlinux 0x1ff0c3d1 mctrl_gpio_init_noauto -EXPORT_SYMBOL_GPL vmlinux 0x20061e2b nfs_ssc_client_tbl -EXPORT_SYMBOL_GPL vmlinux 0x20084c56 switchdev_bridge_port_offload +EXPORT_SYMBOL_GPL vmlinux 0x1ff8b3e4 of_usb_host_tpl_support +EXPORT_SYMBOL_GPL vmlinux 0x1ff96a22 pm_stay_awake EXPORT_SYMBOL_GPL vmlinux 0x2009e400 devlink_info_board_serial_number_put -EXPORT_SYMBOL_GPL vmlinux 0x2020ef69 sysfs_unbreak_active_protection -EXPORT_SYMBOL_GPL vmlinux 0x2027effa anon_transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x20220d6b devm_device_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0x2038e5d5 dma_get_merge_boundary EXPORT_SYMBOL_GPL vmlinux 0x204197c9 kset_create_and_add -EXPORT_SYMBOL_GPL vmlinux 0x2043a45e split_page -EXPORT_SYMBOL_GPL vmlinux 0x205f901d ata_pci_sff_init_one -EXPORT_SYMBOL_GPL vmlinux 0x206d324a serial8250_update_uartclk -EXPORT_SYMBOL_GPL vmlinux 0x2079498d component_del -EXPORT_SYMBOL_GPL vmlinux 0x2079a8c8 nl_table -EXPORT_SYMBOL_GPL vmlinux 0x207eac7f nvdimm_bus_unregister EXPORT_SYMBOL_GPL vmlinux 0x20835a9f __xdp_release_frame -EXPORT_SYMBOL_GPL vmlinux 0x2084f487 blkdev_nr_zones -EXPORT_SYMBOL_GPL vmlinux 0x208daef9 cpuidle_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x2091faba fb_deferred_io_fsync -EXPORT_SYMBOL_GPL vmlinux 0x20ad0b21 sk_set_memalloc -EXPORT_SYMBOL_GPL vmlinux 0x20cd8f8b dma_run_dependencies -EXPORT_SYMBOL_GPL vmlinux 0x20ce55a5 debugfs_create_dir -EXPORT_SYMBOL_GPL vmlinux 0x20d60ea2 snd_soc_component_force_enable_pin_unlocked -EXPORT_SYMBOL_GPL vmlinux 0x20da770e serial8250_rpm_get -EXPORT_SYMBOL_GPL vmlinux 0x20f8c0a1 inet_ctl_sock_create -EXPORT_SYMBOL_GPL vmlinux 0x2100d97c of_platform_default_populate +EXPORT_SYMBOL_GPL vmlinux 0x20872fdd rockchip_clk_register_plls +EXPORT_SYMBOL_GPL vmlinux 0x20885a66 devm_regulator_irq_helper +EXPORT_SYMBOL_GPL vmlinux 0x209582bf pinctrl_force_default +EXPORT_SYMBOL_GPL vmlinux 0x20e7baac sysfs_rename_link_ns +EXPORT_SYMBOL_GPL vmlinux 0x20e7e36f ata_bmdma_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x20f0d961 __traceiter_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x2101d37b fwnode_graph_get_port_parent EXPORT_SYMBOL_GPL vmlinux 0x21087621 mm_unaccount_pinned_pages -EXPORT_SYMBOL_GPL vmlinux 0x210e873d tcp_abort -EXPORT_SYMBOL_GPL vmlinux 0x21159d8b regulator_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x211dc9f0 dev_pm_qos_hide_latency_limit -EXPORT_SYMBOL_GPL vmlinux 0x21220b11 dev_pm_qos_remove_notifier -EXPORT_SYMBOL_GPL vmlinux 0x2122e2b3 do_unregister_con_driver -EXPORT_SYMBOL_GPL vmlinux 0x21254a1f __traceiter_fib6_table_lookup -EXPORT_SYMBOL_GPL vmlinux 0x2126e56a snd_ctl_add_vmaster_hook -EXPORT_SYMBOL_GPL vmlinux 0x2128c3a4 sdio_enable_func -EXPORT_SYMBOL_GPL vmlinux 0x2129a099 ata_cable_ignore -EXPORT_SYMBOL_GPL vmlinux 0x2134a1c8 skb_send_sock_locked -EXPORT_SYMBOL_GPL vmlinux 0x213abf90 device_destroy +EXPORT_SYMBOL_GPL vmlinux 0x2115e661 crypto_stats_rng_generate +EXPORT_SYMBOL_GPL vmlinux 0x2123b1fb ip6_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0x2134bf14 snd_soc_dapm_nc_pin EXPORT_SYMBOL_GPL vmlinux 0x21494650 mvebu_mbus_get_dram_win_info +EXPORT_SYMBOL_GPL vmlinux 0x214ecf71 virtio_check_driver_offered_feature +EXPORT_SYMBOL_GPL vmlinux 0x214fc979 adp5520_clr_bits EXPORT_SYMBOL_GPL vmlinux 0x21562a1d raw_v4_hashinfo -EXPORT_SYMBOL_GPL vmlinux 0x21672c9c nand_soft_waitrdy +EXPORT_SYMBOL_GPL vmlinux 0x215ea48a cpufreq_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x2162bb80 serial8250_rpm_put EXPORT_SYMBOL_GPL vmlinux 0x216de4e1 rcu_get_gp_kthreads_prio EXPORT_SYMBOL_GPL vmlinux 0x21726652 pernet_ops_rwsem -EXPORT_SYMBOL_GPL vmlinux 0x2176085f d_walk +EXPORT_SYMBOL_GPL vmlinux 0x2176748e pinconf_generic_dump_config EXPORT_SYMBOL_GPL vmlinux 0x2181b0a1 usb_bus_idr_lock -EXPORT_SYMBOL_GPL vmlinux 0x21830857 fsnotify_put_group -EXPORT_SYMBOL_GPL vmlinux 0x218d66a1 ahci_save_initial_config -EXPORT_SYMBOL_GPL vmlinux 0x219fa7dd pm_clk_remove EXPORT_SYMBOL_GPL vmlinux 0x21a563da clk_get_accuracy -EXPORT_SYMBOL_GPL vmlinux 0x21aa59cb snd_soc_component_get_pin_status EXPORT_SYMBOL_GPL vmlinux 0x21ac8b77 iommu_group_get_by_id -EXPORT_SYMBOL_GPL vmlinux 0x21bb3eb6 fsnotify_alloc_user_group -EXPORT_SYMBOL_GPL vmlinux 0x21c1fff7 dev_pm_opp_put_clkname EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x21d7700b crypto_register_acomps -EXPORT_SYMBOL_GPL vmlinux 0x21f035cb fib_new_table -EXPORT_SYMBOL_GPL vmlinux 0x21ff0a05 fib_rules_register -EXPORT_SYMBOL_GPL vmlinux 0x22029105 blk_ksm_reprogram_all_keys -EXPORT_SYMBOL_GPL vmlinux 0x2208a70c rio_local_get_device_id -EXPORT_SYMBOL_GPL vmlinux 0x220c1334 pci_d3cold_disable -EXPORT_SYMBOL_GPL vmlinux 0x220ca683 fat_time_unix2fat +EXPORT_SYMBOL_GPL vmlinux 0x21f2fdb3 blk_mq_sched_try_merge +EXPORT_SYMBOL_GPL vmlinux 0x220af4b0 nvdimm_has_cache EXPORT_SYMBOL_GPL vmlinux 0x220ce70c kvm_arm_hyp_service_available EXPORT_SYMBOL_GPL vmlinux 0x2211a4c0 blk_op_str -EXPORT_SYMBOL_GPL vmlinux 0x2221d740 skb_scrub_packet -EXPORT_SYMBOL_GPL vmlinux 0x2229e3de wm8350_reg_lock -EXPORT_SYMBOL_GPL vmlinux 0x222b35cc ata_std_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x22223242 umd_load_blob +EXPORT_SYMBOL_GPL vmlinux 0x22323255 get_mtd_device EXPORT_SYMBOL_GPL vmlinux 0x223e215c rhashtable_walk_peek -EXPORT_SYMBOL_GPL vmlinux 0x224bf672 input_ff_event -EXPORT_SYMBOL_GPL vmlinux 0x2252d602 regulator_get_bypass_regmap -EXPORT_SYMBOL_GPL vmlinux 0x22548805 crypto_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x22596f9b pci_enable_rom -EXPORT_SYMBOL_GPL vmlinux 0x22728f42 iommu_capable -EXPORT_SYMBOL_GPL vmlinux 0x228de68d sata_scr_write_flush -EXPORT_SYMBOL_GPL vmlinux 0x22a8266d devm_led_trigger_register -EXPORT_SYMBOL_GPL vmlinux 0x22af95a6 pm_generic_freeze_late -EXPORT_SYMBOL_GPL vmlinux 0x22af9fa4 devm_i2c_new_dummy_device -EXPORT_SYMBOL_GPL vmlinux 0x22b72821 ohci_setup -EXPORT_SYMBOL_GPL vmlinux 0x22b9355d vfs_kern_mount -EXPORT_SYMBOL_GPL vmlinux 0x22bc7aed mtk_pinconf_bias_disable_get_rev1 -EXPORT_SYMBOL_GPL vmlinux 0x22d1bd8e metadata_dst_alloc -EXPORT_SYMBOL_GPL vmlinux 0x22d84c13 gpiochip_add_pingroup_range -EXPORT_SYMBOL_GPL vmlinux 0x22d8afe3 spi_async +EXPORT_SYMBOL_GPL vmlinux 0x2251b293 pinctrl_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x2263e727 netdev_walk_all_lower_dev_rcu +EXPORT_SYMBOL_GPL vmlinux 0x2272e631 snd_soc_dapm_get_pin_switch +EXPORT_SYMBOL_GPL vmlinux 0x22801d50 sk_msg_clone +EXPORT_SYMBOL_GPL vmlinux 0x2285c5d5 dma_buf_begin_cpu_access +EXPORT_SYMBOL_GPL vmlinux 0x22919c5d public_key_subtype +EXPORT_SYMBOL_GPL vmlinux 0x229dda0d crypto_unregister_template +EXPORT_SYMBOL_GPL vmlinux 0x22a47e75 locks_release_private +EXPORT_SYMBOL_GPL vmlinux 0x22a9c2fd device_add +EXPORT_SYMBOL_GPL vmlinux 0x22b9898c of_irq_get +EXPORT_SYMBOL_GPL vmlinux 0x22c3e6ad dma_get_slave_caps +EXPORT_SYMBOL_GPL vmlinux 0x22cac336 devm_usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0x22cba776 snd_pcm_stream_lock_irq +EXPORT_SYMBOL_GPL vmlinux 0x22cc990c md_allow_write +EXPORT_SYMBOL_GPL vmlinux 0x22cd6e63 dev_pm_domain_attach EXPORT_SYMBOL_GPL vmlinux 0x22d9409b iomap_sort_ioends -EXPORT_SYMBOL_GPL vmlinux 0x22dbb4a4 get_mtd_device_nm -EXPORT_SYMBOL_GPL vmlinux 0x22e304a1 fib_rules_seq_read -EXPORT_SYMBOL_GPL vmlinux 0x22e40466 crypto_get_default_null_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x22ff5b36 fscrypt_show_test_dummy_encryption -EXPORT_SYMBOL_GPL vmlinux 0x2301121a to_nvdimm_bus_dev -EXPORT_SYMBOL_GPL vmlinux 0x230a2a29 misc_cg_try_charge -EXPORT_SYMBOL_GPL vmlinux 0x23155a82 devm_thermal_zone_of_sensor_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2316c6dc devfreq_event_add_edev -EXPORT_SYMBOL_GPL vmlinux 0x2317b388 PageHuge -EXPORT_SYMBOL_GPL vmlinux 0x233220bc virtqueue_disable_cb +EXPORT_SYMBOL_GPL vmlinux 0x22e57fb4 ata_link_offline +EXPORT_SYMBOL_GPL vmlinux 0x230e2188 get_device +EXPORT_SYMBOL_GPL vmlinux 0x231a0054 register_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x231c1fd1 ata_pci_bmdma_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0x2326400b snd_soc_dapm_force_enable_pin +EXPORT_SYMBOL_GPL vmlinux 0x232d9f6f dm_internal_resume EXPORT_SYMBOL_GPL vmlinux 0x23412816 rtc_tm_to_ktime -EXPORT_SYMBOL_GPL vmlinux 0x2343d503 rockchip_pcie_enable_clocks -EXPORT_SYMBOL_GPL vmlinux 0x2345bbf6 pci_epc_set_msi -EXPORT_SYMBOL_GPL vmlinux 0x2349dca8 blk_mq_pci_map_queues -EXPORT_SYMBOL_GPL vmlinux 0x234ce731 sdio_disable_func EXPORT_SYMBOL_GPL vmlinux 0x234cf416 devlink_fmsg_string_pair_put -EXPORT_SYMBOL_GPL vmlinux 0x2365136a fwnode_property_read_u32_array -EXPORT_SYMBOL_GPL vmlinux 0x2365b4c4 device_create_managed_software_node EXPORT_SYMBOL_GPL vmlinux 0x23666d59 __tracepoint_xdp_exception -EXPORT_SYMBOL_GPL vmlinux 0x2380aebb regmap_get_raw_read_max +EXPORT_SYMBOL_GPL vmlinux 0x23739114 perf_pmu_migrate_context +EXPORT_SYMBOL_GPL vmlinux 0x2384a890 inet6_csk_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node -EXPORT_SYMBOL_GPL vmlinux 0x23897c0e devm_regulator_get -EXPORT_SYMBOL_GPL vmlinux 0x238fe9b0 sdio_unregister_driver EXPORT_SYMBOL_GPL vmlinux 0x23935d9d __tracepoint_powernv_throttle EXPORT_SYMBOL_GPL vmlinux 0x23950433 efivar_variable_is_removable EXPORT_SYMBOL_GPL vmlinux 0x2396c7f0 clk_set_parent -EXPORT_SYMBOL_GPL vmlinux 0x2398a944 sched_trace_rq_cpu_capacity -EXPORT_SYMBOL_GPL vmlinux 0x239f060e ip_route_output_key_hash -EXPORT_SYMBOL_GPL vmlinux 0x23a85f75 watchdog_notify_pretimeout -EXPORT_SYMBOL_GPL vmlinux 0x23ccc2a5 wm8350_block_write -EXPORT_SYMBOL_GPL vmlinux 0x23da38e5 ahci_platform_enable_clks -EXPORT_SYMBOL_GPL vmlinux 0x23f1aed6 regulator_get_error_flags -EXPORT_SYMBOL_GPL vmlinux 0x23f4013b sdev_evt_send_simple -EXPORT_SYMBOL_GPL vmlinux 0x23f52289 usb_gadget_vbus_connect -EXPORT_SYMBOL_GPL vmlinux 0x24096a0c rio_del_device -EXPORT_SYMBOL_GPL vmlinux 0x241c5f33 blk_queue_write_cache +EXPORT_SYMBOL_GPL vmlinux 0x23a43a57 ata_scsi_slave_config +EXPORT_SYMBOL_GPL vmlinux 0x23ad8da2 trace_event_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x23b479b9 crypto_larval_kill +EXPORT_SYMBOL_GPL vmlinux 0x23bcb1a9 fuse_send_init +EXPORT_SYMBOL_GPL vmlinux 0x23dc9f53 tc3589x_block_read +EXPORT_SYMBOL_GPL vmlinux 0x23e10f27 usb_gadget_clear_selfpowered +EXPORT_SYMBOL_GPL vmlinux 0x23e2a7e6 vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x23ecb478 perf_tp_event +EXPORT_SYMBOL_GPL vmlinux 0x23eeedcd kstrdup_quotable_cmdline +EXPORT_SYMBOL_GPL vmlinux 0x23fd903b usb_get_maximum_speed +EXPORT_SYMBOL_GPL vmlinux 0x241cda08 generic_handle_domain_irq +EXPORT_SYMBOL_GPL vmlinux 0x241fc07d ethnl_cable_test_free +EXPORT_SYMBOL_GPL vmlinux 0x241ffdee __page_file_index EXPORT_SYMBOL_GPL vmlinux 0x2421097b mpi_const -EXPORT_SYMBOL_GPL vmlinux 0x2424f6ba blk_mq_sched_try_insert_merge -EXPORT_SYMBOL_GPL vmlinux 0x24296b00 phy_create_lookup -EXPORT_SYMBOL_GPL vmlinux 0x2444ac4e usb_poison_urb -EXPORT_SYMBOL_GPL vmlinux 0x2453f0ba ata_sas_tport_add -EXPORT_SYMBOL_GPL vmlinux 0x245eed94 page_cache_ra_unbounded -EXPORT_SYMBOL_GPL vmlinux 0x2467d3fe efivar_entry_delete -EXPORT_SYMBOL_GPL vmlinux 0x24783cb8 fb_deferred_io_open -EXPORT_SYMBOL_GPL vmlinux 0x24824715 rio_get_comptag -EXPORT_SYMBOL_GPL vmlinux 0x24870aca user_describe -EXPORT_SYMBOL_GPL vmlinux 0x248a69f1 pci_epf_destroy +EXPORT_SYMBOL_GPL vmlinux 0x24289079 snd_dmaengine_pcm_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x242c07dc snd_soc_dapm_get_enum_double +EXPORT_SYMBOL_GPL vmlinux 0x2438221e netlink_has_listeners +EXPORT_SYMBOL_GPL vmlinux 0x244a1d93 ahci_platform_get_resources +EXPORT_SYMBOL_GPL vmlinux 0x246da6b5 virtqueue_enable_cb_delayed +EXPORT_SYMBOL_GPL vmlinux 0x247bfc2d fixed_phy_unregister EXPORT_SYMBOL_GPL vmlinux 0x248bc867 raw_notifier_call_chain_robust -EXPORT_SYMBOL_GPL vmlinux 0x249b3421 __percpu_init_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x24a138c8 filemap_range_needs_writeback +EXPORT_SYMBOL_GPL vmlinux 0x24a31943 request_firmware_direct EXPORT_SYMBOL_GPL vmlinux 0x24ad11db wakeup_sources_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0x24b0e4f9 ima_inode_hash +EXPORT_SYMBOL_GPL vmlinux 0x24b02047 fwnode_get_named_gpiod +EXPORT_SYMBOL_GPL vmlinux 0x24c0af67 kthread_data +EXPORT_SYMBOL_GPL vmlinux 0x24d39213 tty_kopen_shared EXPORT_SYMBOL_GPL vmlinux 0x24da0093 rcu_inkernel_boot_has_ended -EXPORT_SYMBOL_GPL vmlinux 0x24e19991 software_node_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x24e3ca9f pm_runtime_force_resume +EXPORT_SYMBOL_GPL vmlinux 0x24e4d737 __devm_clk_hw_register_divider +EXPORT_SYMBOL_GPL vmlinux 0x24e5ae87 spi_bus_lock +EXPORT_SYMBOL_GPL vmlinux 0x24e9aa02 pci_epf_unbind EXPORT_SYMBOL_GPL vmlinux 0x24eb7e32 leds_list -EXPORT_SYMBOL_GPL vmlinux 0x24edc63d bpf_trace_run12 -EXPORT_SYMBOL_GPL vmlinux 0x24ef0281 ipv6_find_tlv +EXPORT_SYMBOL_GPL vmlinux 0x24ebe9a0 otg_ulpi_create EXPORT_SYMBOL_GPL vmlinux 0x24f39c39 reset_control_reset EXPORT_SYMBOL_GPL vmlinux 0x24f63dcf ata_xfer_mask2mode +EXPORT_SYMBOL_GPL vmlinux 0x24faced7 mmc_switch +EXPORT_SYMBOL_GPL vmlinux 0x24fb47aa ata_std_prereset EXPORT_SYMBOL_GPL vmlinux 0x24fc50f4 kdb_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2506bf47 wm831x_reg_unlock -EXPORT_SYMBOL_GPL vmlinux 0x250cff17 handle_level_irq +EXPORT_SYMBOL_GPL vmlinux 0x24fd7290 lwtunnel_get_encap_size EXPORT_SYMBOL_GPL vmlinux 0x2516bbe8 __tracepoint_io_page_fault -EXPORT_SYMBOL_GPL vmlinux 0x252fb383 phy_put +EXPORT_SYMBOL_GPL vmlinux 0x2530bc34 uart_console_device +EXPORT_SYMBOL_GPL vmlinux 0x25349177 class_create_file_ns EXPORT_SYMBOL_GPL vmlinux 0x25379e73 clk_set_min_rate EXPORT_SYMBOL_GPL vmlinux 0x2541a979 snd_soc_calc_frame_size -EXPORT_SYMBOL_GPL vmlinux 0x254b368d of_clk_hw_register -EXPORT_SYMBOL_GPL vmlinux 0x2554c3df irq_gc_set_wake -EXPORT_SYMBOL_GPL vmlinux 0x2558b5d7 of_mm_gpiochip_add_data -EXPORT_SYMBOL_GPL vmlinux 0x2566bf9b nand_readid_op -EXPORT_SYMBOL_GPL vmlinux 0x25673644 edac_pci_free_ctl_info -EXPORT_SYMBOL_GPL vmlinux 0x256d3838 ima_file_hash +EXPORT_SYMBOL_GPL vmlinux 0x255d9ab5 pci_stop_and_remove_bus_device_locked +EXPORT_SYMBOL_GPL vmlinux 0x255e73f4 ehci_adjust_port_wakeup_flags EXPORT_SYMBOL_GPL vmlinux 0x2592fc6c console_printk -EXPORT_SYMBOL_GPL vmlinux 0x25b8892c of_get_fb_videomode -EXPORT_SYMBOL_GPL vmlinux 0x25baf33a spi_mem_exec_op +EXPORT_SYMBOL_GPL vmlinux 0x25b6f504 scmi_protocol_register EXPORT_SYMBOL_GPL vmlinux 0x25bbfa9a security_kernel_load_data -EXPORT_SYMBOL_GPL vmlinux 0x25c67519 device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x25c82e48 fsnotify_init_mark -EXPORT_SYMBOL_GPL vmlinux 0x25e82a31 __inet_lookup_listener -EXPORT_SYMBOL_GPL vmlinux 0x25ed7dc7 crypto_create_tfm_node -EXPORT_SYMBOL_GPL vmlinux 0x25ee3b7d serial8250_do_get_mctrl -EXPORT_SYMBOL_GPL vmlinux 0x25f8a7be sk_msg_clone -EXPORT_SYMBOL_GPL vmlinux 0x2611c87d get_tree_mtd -EXPORT_SYMBOL_GPL vmlinux 0x2614fc8b crypto_destroy_tfm -EXPORT_SYMBOL_GPL vmlinux 0x2617f770 fscrypt_set_test_dummy_encryption -EXPORT_SYMBOL_GPL vmlinux 0x26220ea4 pm_clk_destroy -EXPORT_SYMBOL_GPL vmlinux 0x2631de8f of_dma_is_coherent +EXPORT_SYMBOL_GPL vmlinux 0x25bdf07c vfs_cancel_lock +EXPORT_SYMBOL_GPL vmlinux 0x25d0e932 crypto_rng_reset +EXPORT_SYMBOL_GPL vmlinux 0x25d9d2a2 spi_async +EXPORT_SYMBOL_GPL vmlinux 0x25ea93cd regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x260999e6 device_find_child +EXPORT_SYMBOL_GPL vmlinux 0x261d1b86 spi_setup +EXPORT_SYMBOL_GPL vmlinux 0x26361bb9 pcie_aspm_enabled EXPORT_SYMBOL_GPL vmlinux 0x2638586b xas_init_marks -EXPORT_SYMBOL_GPL vmlinux 0x263c3031 snd_soc_component_initialize -EXPORT_SYMBOL_GPL vmlinux 0x2646f1fc usb_phy_gen_create_phy +EXPORT_SYMBOL_GPL vmlinux 0x263cda9c xdp_rxq_info_reg +EXPORT_SYMBOL_GPL vmlinux 0x264862e0 nvdimm_bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0x264c9914 usb_find_interface EXPORT_SYMBOL_GPL vmlinux 0x26520970 vm_memory_committed -EXPORT_SYMBOL_GPL vmlinux 0x2657dec2 nanddev_erase -EXPORT_SYMBOL_GPL vmlinux 0x26581ead iommu_device_sysfs_remove EXPORT_SYMBOL_GPL vmlinux 0x265bbef9 kexec_crash_loaded -EXPORT_SYMBOL_GPL vmlinux 0x2667d06a mmu_notifier_put EXPORT_SYMBOL_GPL vmlinux 0x266a4b08 tasklet_unlock -EXPORT_SYMBOL_GPL vmlinux 0x2676a599 ahci_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x26758290 snd_soc_component_compr_open EXPORT_SYMBOL_GPL vmlinux 0x267df662 smp_call_on_cpu -EXPORT_SYMBOL_GPL vmlinux 0x268242ef sdhci_set_power +EXPORT_SYMBOL_GPL vmlinux 0x26856265 dev_pm_genpd_set_performance_state +EXPORT_SYMBOL_GPL vmlinux 0x26896edf pwm_put EXPORT_SYMBOL_GPL vmlinux 0x26ab4755 put_old_itimerspec32 -EXPORT_SYMBOL_GPL vmlinux 0x26c49e2b mpc8xxx_spi_rx_buf_u32 +EXPORT_SYMBOL_GPL vmlinux 0x26b66547 gpiochip_add_pin_range +EXPORT_SYMBOL_GPL vmlinux 0x26bd065c pwmchip_add EXPORT_SYMBOL_GPL vmlinux 0x26c547c0 bL_switcher_register_notifier EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense -EXPORT_SYMBOL_GPL vmlinux 0x26c9c957 __inode_attach_wb -EXPORT_SYMBOL_GPL vmlinux 0x26cd1cfb debugfs_create_ulong -EXPORT_SYMBOL_GPL vmlinux 0x26d9396c usb_autopm_get_interface -EXPORT_SYMBOL_GPL vmlinux 0x26e61c68 class_interface_unregister -EXPORT_SYMBOL_GPL vmlinux 0x26e67c6a cpufreq_freq_attr_scaling_boost_freqs +EXPORT_SYMBOL_GPL vmlinux 0x26cce90b pci_find_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0x26ce0b09 fork_usermode_driver +EXPORT_SYMBOL_GPL vmlinux 0x26e5e5de pinctrl_find_and_add_gpio_range EXPORT_SYMBOL_GPL vmlinux 0x26ed2186 register_vmap_purge_notifier -EXPORT_SYMBOL_GPL vmlinux 0x26f02011 pci_store_saved_state -EXPORT_SYMBOL_GPL vmlinux 0x26f14083 dw_pcie_find_ext_capability EXPORT_SYMBOL_GPL vmlinux 0x2701953f mtk_mutex_add_comp -EXPORT_SYMBOL_GPL vmlinux 0x27123936 fsstack_copy_inode_size -EXPORT_SYMBOL_GPL vmlinux 0x271c7f73 __inet_inherit_port -EXPORT_SYMBOL_GPL vmlinux 0x27238b65 devm_pinctrl_register -EXPORT_SYMBOL_GPL vmlinux 0x272ce8c9 debugfs_real_fops +EXPORT_SYMBOL_GPL vmlinux 0x271bbace iommu_dev_feature_enabled +EXPORT_SYMBOL_GPL vmlinux 0x272af1f5 device_remove_bin_file EXPORT_SYMBOL_GPL vmlinux 0x272e9d77 hisi_reset_exit +EXPORT_SYMBOL_GPL vmlinux 0x27336099 sk_msg_trim EXPORT_SYMBOL_GPL vmlinux 0x2734197f musb_readb -EXPORT_SYMBOL_GPL vmlinux 0x2738aa60 omap_iommu_domain_deactivate -EXPORT_SYMBOL_GPL vmlinux 0x27392521 usb_hcd_check_unlink_urb -EXPORT_SYMBOL_GPL vmlinux 0x273997be snd_soc_of_parse_tdm_slot -EXPORT_SYMBOL_GPL vmlinux 0x27464887 led_trigger_remove -EXPORT_SYMBOL_GPL vmlinux 0x2749a2aa stmpe_enable +EXPORT_SYMBOL_GPL vmlinux 0x273ef7b0 apply_to_page_range EXPORT_SYMBOL_GPL vmlinux 0x274dd1a3 sg_free_table_chained -EXPORT_SYMBOL_GPL vmlinux 0x2771f8bb task_cgroup_path -EXPORT_SYMBOL_GPL vmlinux 0x2778f755 nvdimm_delete -EXPORT_SYMBOL_GPL vmlinux 0x277eb534 devm_regmap_add_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0x277f45ec tty_set_ldisc -EXPORT_SYMBOL_GPL vmlinux 0x27957989 pinctrl_parse_index_with_args -EXPORT_SYMBOL_GPL vmlinux 0x2797d1ec gpiod_get_array_optional -EXPORT_SYMBOL_GPL vmlinux 0x27a35767 fwnode_graph_get_remote_node +EXPORT_SYMBOL_GPL vmlinux 0x274f9967 syscon_regmap_lookup_by_phandle_args +EXPORT_SYMBOL_GPL vmlinux 0x275686df kobject_uevent_env +EXPORT_SYMBOL_GPL vmlinux 0x276582b3 dev_pm_qos_expose_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0x27668376 gpiod_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x27734b10 input_ff_upload +EXPORT_SYMBOL_GPL vmlinux 0x279f1409 dm_get_queue_limits EXPORT_SYMBOL_GPL vmlinux 0x27a4bb78 housekeeping_cpumask -EXPORT_SYMBOL_GPL vmlinux 0x27b68826 iommu_enable_nesting -EXPORT_SYMBOL_GPL vmlinux 0x27c10de3 nd_blk_region_provider_data -EXPORT_SYMBOL_GPL vmlinux 0x27d9519f spi_sync -EXPORT_SYMBOL_GPL vmlinux 0x27f108ea fscrypt_d_revalidate +EXPORT_SYMBOL_GPL vmlinux 0x27b4009e fib_rules_seq_read +EXPORT_SYMBOL_GPL vmlinux 0x27e12eb1 ata_common_sdev_attrs +EXPORT_SYMBOL_GPL vmlinux 0x27f2f649 __ip6_datagram_connect EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter -EXPORT_SYMBOL_GPL vmlinux 0x27f74dc4 power_supply_set_property EXPORT_SYMBOL_GPL vmlinux 0x27fa66e1 nr_free_buffer_pages -EXPORT_SYMBOL_GPL vmlinux 0x2806b260 devlink_dpipe_action_put -EXPORT_SYMBOL_GPL vmlinux 0x2812d9c5 tty_ldisc_deref +EXPORT_SYMBOL_GPL vmlinux 0x2824192b platform_find_device_by_driver EXPORT_SYMBOL_GPL vmlinux 0x282b7d57 xas_clear_mark EXPORT_SYMBOL_GPL vmlinux 0x282cdabc usb_led_activity -EXPORT_SYMBOL_GPL vmlinux 0x2842c040 devm_clk_hw_register -EXPORT_SYMBOL_GPL vmlinux 0x2844ebbc clk_hw_set_rate_range -EXPORT_SYMBOL_GPL vmlinux 0x284ca3af regmap_get_raw_write_max -EXPORT_SYMBOL_GPL vmlinux 0x284e7acf perf_pmu_migrate_context +EXPORT_SYMBOL_GPL vmlinux 0x282d8533 virtqueue_notify +EXPORT_SYMBOL_GPL vmlinux 0x2838b341 sfp_bus_add_upstream +EXPORT_SYMBOL_GPL vmlinux 0x284f0d6d ping_common_sendmsg EXPORT_SYMBOL_GPL vmlinux 0x285b94c1 __srcu_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0x285e1f10 uhci_reset_hc EXPORT_SYMBOL_GPL vmlinux 0x2864abc9 klist_node_attached +EXPORT_SYMBOL_GPL vmlinux 0x286c042a disk_update_readahead EXPORT_SYMBOL_GPL vmlinux 0x286cc647 async_synchronize_cookie_domain +EXPORT_SYMBOL_GPL vmlinux 0x28749dbb of_property_read_u64 EXPORT_SYMBOL_GPL vmlinux 0x2882d40e usb_role_switch_unregister -EXPORT_SYMBOL_GPL vmlinux 0x28956f86 of_genpd_parse_idle_states -EXPORT_SYMBOL_GPL vmlinux 0x289f4274 of_irq_to_resource -EXPORT_SYMBOL_GPL vmlinux 0x28a1dbb5 perf_trace_run_bpf_submit -EXPORT_SYMBOL_GPL vmlinux 0x28a3ef56 __sock_recv_timestamp -EXPORT_SYMBOL_GPL vmlinux 0x28a7c10a pci_epc_linkup +EXPORT_SYMBOL_GPL vmlinux 0x288b5ae9 iomap_file_buffered_write +EXPORT_SYMBOL_GPL vmlinux 0x28a72f36 snd_soc_runtime_calc_hw EXPORT_SYMBOL_GPL vmlinux 0x28a7db63 nd_fletcher64 -EXPORT_SYMBOL_GPL vmlinux 0x28a99c19 snd_ctl_sync_vmaster 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 0x28d3b456 bpfilter_ops -EXPORT_SYMBOL_GPL vmlinux 0x28d4dcb8 bpf_trace_run3 -EXPORT_SYMBOL_GPL vmlinux 0x28e73eb2 dw_pcie_read_dbi +EXPORT_SYMBOL_GPL vmlinux 0x28b2e387 icc_nodes_remove +EXPORT_SYMBOL_GPL vmlinux 0x28b6e464 serial8250_rx_dma_flush +EXPORT_SYMBOL_GPL vmlinux 0x28be0d05 skcipher_alloc_instance_simple +EXPORT_SYMBOL_GPL vmlinux 0x28c4a1e4 __traceiter_neigh_update +EXPORT_SYMBOL_GPL vmlinux 0x28cd2244 regmap_write_async +EXPORT_SYMBOL_GPL vmlinux 0x28cf7a47 cpufreq_generic_attr +EXPORT_SYMBOL_GPL vmlinux 0x28e85e9a set_task_ioprio +EXPORT_SYMBOL_GPL vmlinux 0x28e98c7b regulator_set_load +EXPORT_SYMBOL_GPL vmlinux 0x28f4dd9e tps80031_ext_power_req_config EXPORT_SYMBOL_GPL vmlinux 0x28f7df52 unregister_kretprobe -EXPORT_SYMBOL_GPL vmlinux 0x29068298 crypto_alloc_acomp -EXPORT_SYMBOL_GPL vmlinux 0x29070c63 scsi_target_unblock -EXPORT_SYMBOL_GPL vmlinux 0x2908c024 edac_mc_add_mc_with_groups -EXPORT_SYMBOL_GPL vmlinux 0x290ae2e1 mptcp_pm_get_local_addr_max -EXPORT_SYMBOL_GPL vmlinux 0x290ca73b mtd_point +EXPORT_SYMBOL_GPL vmlinux 0x28fb319e dev_fill_forward_path EXPORT_SYMBOL_GPL vmlinux 0x291123ea __tracepoint_sched_overutilized_tp -EXPORT_SYMBOL_GPL vmlinux 0x29173314 usb_gadget_udc_reset +EXPORT_SYMBOL_GPL vmlinux 0x29117d15 synth_event_trace_array EXPORT_SYMBOL_GPL vmlinux 0x291876f3 mpi_ec_get_affine -EXPORT_SYMBOL_GPL vmlinux 0x2918ee9d devm_fwnode_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0x291ac869 rtnl_get_net_ns_capable -EXPORT_SYMBOL_GPL vmlinux 0x291e3558 devres_for_each_res -EXPORT_SYMBOL_GPL vmlinux 0x292e5c57 bpf_map_inc_not_zero -EXPORT_SYMBOL_GPL vmlinux 0x29399376 uart_set_options -EXPORT_SYMBOL_GPL vmlinux 0x2947c416 fib_nl_newrule -EXPORT_SYMBOL_GPL vmlinux 0x294afb36 fsverity_prepare_setattr -EXPORT_SYMBOL_GPL vmlinux 0x295828a3 regmap_noinc_write -EXPORT_SYMBOL_GPL vmlinux 0x2959848b of_clk_add_provider +EXPORT_SYMBOL_GPL vmlinux 0x291b273e devlink_alloc_ns +EXPORT_SYMBOL_GPL vmlinux 0x291ce0bc inet_unhash +EXPORT_SYMBOL_GPL vmlinux 0x2920c073 dma_request_chan_by_mask +EXPORT_SYMBOL_GPL vmlinux 0x2929773e of_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x293aaa3a nand_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x293c6924 tty_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0x293dcc8b clockevent_delta2ns +EXPORT_SYMBOL_GPL vmlinux 0x29482da8 dm_put EXPORT_SYMBOL_GPL vmlinux 0x295a2670 clk_regmap_divider_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0x295ab58b platform_irqchip_probe EXPORT_SYMBOL_GPL vmlinux 0x295b982a hisi_clk_register_fixed_rate -EXPORT_SYMBOL_GPL vmlinux 0x2962c4bf phy_set_media -EXPORT_SYMBOL_GPL vmlinux 0x2963e125 mtd_block_isbad -EXPORT_SYMBOL_GPL vmlinux 0x2966ef20 __traceiter_napi_poll -EXPORT_SYMBOL_GPL vmlinux 0x296ac834 of_pci_dma_range_parser_init -EXPORT_SYMBOL_GPL vmlinux 0x29714e48 __traceiter_pelt_irq_tp -EXPORT_SYMBOL_GPL vmlinux 0x29749c2a phy_get -EXPORT_SYMBOL_GPL vmlinux 0x29797475 devm_of_phy_provider_unregister -EXPORT_SYMBOL_GPL vmlinux 0x29970204 key_set_timeout -EXPORT_SYMBOL_GPL vmlinux 0x2999c839 pinctrl_pm_select_default_state -EXPORT_SYMBOL_GPL vmlinux 0x29a65972 devlink_port_param_value_changed -EXPORT_SYMBOL_GPL vmlinux 0x29ce5359 xhci_resume +EXPORT_SYMBOL_GPL vmlinux 0x2995a7d3 led_trigger_read +EXPORT_SYMBOL_GPL vmlinux 0x29a66175 irq_chip_set_parent_state +EXPORT_SYMBOL_GPL vmlinux 0x29b8bb41 devlink_net +EXPORT_SYMBOL_GPL vmlinux 0x29bfa011 dev_pm_opp_set_rate EXPORT_SYMBOL_GPL vmlinux 0x29cf2470 rdma_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x29d20edf dm_bio_from_per_bio_data -EXPORT_SYMBOL_GPL vmlinux 0x29d88544 wm8350_gpio_config +EXPORT_SYMBOL_GPL vmlinux 0x29d82b0e devlink_traps_register +EXPORT_SYMBOL_GPL vmlinux 0x29dfa285 crypto_unregister_scomps +EXPORT_SYMBOL_GPL vmlinux 0x29e49a31 sysfs_update_group EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async -EXPORT_SYMBOL_GPL vmlinux 0x2a01da4b regulator_map_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x29f07c30 ip6_input +EXPORT_SYMBOL_GPL vmlinux 0x29ff33c5 tty_port_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0x2a082b63 ip6_route_lookup EXPORT_SYMBOL_GPL vmlinux 0x2a0a40fa mdio_bus_init -EXPORT_SYMBOL_GPL vmlinux 0x2a0ada82 fwnode_graph_get_remote_endpoint -EXPORT_SYMBOL_GPL vmlinux 0x2a1dc680 clockevent_delta2ns -EXPORT_SYMBOL_GPL vmlinux 0x2a225c40 __traceiter_devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0x2a17fdcc dax_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2a19c332 pci_epc_set_msix EXPORT_SYMBOL_GPL vmlinux 0x2a2aea17 clk_fixed_rate_ops -EXPORT_SYMBOL_GPL vmlinux 0x2a337795 dma_buf_pin -EXPORT_SYMBOL_GPL vmlinux 0x2a4b2c00 regmap_field_alloc -EXPORT_SYMBOL_GPL vmlinux 0x2a615bfc devm_kasprintf +EXPORT_SYMBOL_GPL vmlinux 0x2a328547 device_bind_driver EXPORT_SYMBOL_GPL vmlinux 0x2a62cb3a ring_buffer_overrun_cpu EXPORT_SYMBOL_GPL vmlinux 0x2a678a13 __suspend_report_result -EXPORT_SYMBOL_GPL vmlinux 0x2a6fcd2c kernel_kobj EXPORT_SYMBOL_GPL vmlinux 0x2a7316da __SCK__tp_func_neigh_cleanup_and_release -EXPORT_SYMBOL_GPL vmlinux 0x2a80d4aa hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2a759d2e rtc_class_close +EXPORT_SYMBOL_GPL vmlinux 0x2a85816a fwnode_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x2a875be4 clk_hw_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0x2a8ea268 serial8250_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0x2a906133 crypto_shash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x2aa3fd82 nand_get_small_page_ooblayout EXPORT_SYMBOL_GPL vmlinux 0x2aadad1a efi_capsule_update -EXPORT_SYMBOL_GPL vmlinux 0x2ab928d3 usb_add_gadget_udc_release -EXPORT_SYMBOL_GPL vmlinux 0x2abc1e79 class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2abb3cae ata_sas_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x2ac18bfa sched_trace_rq_cpu_capacity EXPORT_SYMBOL_GPL vmlinux 0x2ace820a pkcs7_free_message -EXPORT_SYMBOL_GPL vmlinux 0x2ade3cf0 pci_bus_add_device -EXPORT_SYMBOL_GPL vmlinux 0x2ae1474b usb_set_interface -EXPORT_SYMBOL_GPL vmlinux 0x2ae69314 of_hwspin_lock_get_id -EXPORT_SYMBOL_GPL vmlinux 0x2af12495 mptcp_subflow_request_sock_ops -EXPORT_SYMBOL_GPL vmlinux 0x2af430b6 scsi_internal_device_block_nowait -EXPORT_SYMBOL_GPL vmlinux 0x2b05cdca powercap_register_control_type -EXPORT_SYMBOL_GPL vmlinux 0x2b08d96a snd_soc_resume -EXPORT_SYMBOL_GPL vmlinux 0x2b3502c3 dev_pm_genpd_set_performance_state -EXPORT_SYMBOL_GPL vmlinux 0x2b3e0ac2 usb_phy_set_event +EXPORT_SYMBOL_GPL vmlinux 0x2ad74481 find_extend_vma +EXPORT_SYMBOL_GPL vmlinux 0x2aec5ffa snd_soc_dapm_put_enum_double +EXPORT_SYMBOL_GPL vmlinux 0x2b006e5f ahash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x2b1fd9e1 ata_pci_device_resume +EXPORT_SYMBOL_GPL vmlinux 0x2b2e2cc3 register_mtd_user EXPORT_SYMBOL_GPL vmlinux 0x2b4509dd devlink_health_reporter_state_update -EXPORT_SYMBOL_GPL vmlinux 0x2b460baf of_msi_configure -EXPORT_SYMBOL_GPL vmlinux 0x2b5e93a0 vp_modern_config_vector EXPORT_SYMBOL_GPL vmlinux 0x2b6150fb power_supply_temp2resist_simple -EXPORT_SYMBOL_GPL vmlinux 0x2b77c866 tty_ldisc_ref -EXPORT_SYMBOL_GPL vmlinux 0x2b790735 musb_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x2b676b43 irq_chip_request_resources_parent +EXPORT_SYMBOL_GPL vmlinux 0x2b6e6993 mpc8xxx_spi_tx_buf_u8 +EXPORT_SYMBOL_GPL vmlinux 0x2b71617c spi_sync +EXPORT_SYMBOL_GPL vmlinux 0x2b7ffea0 regmap_bulk_write EXPORT_SYMBOL_GPL vmlinux 0x2b952517 clk_has_parent -EXPORT_SYMBOL_GPL vmlinux 0x2b95b96a pm_genpd_opp_to_performance_state +EXPORT_SYMBOL_GPL vmlinux 0x2b9a094e genpd_dev_pm_attach_by_id +EXPORT_SYMBOL_GPL vmlinux 0x2ba72cce __dev_change_net_namespace +EXPORT_SYMBOL_GPL vmlinux 0x2bac66b6 power_supply_put_battery_info EXPORT_SYMBOL_GPL vmlinux 0x2bae29b8 kset_find_obj -EXPORT_SYMBOL_GPL vmlinux 0x2bb196bd devlink_rate_leaf_destroy -EXPORT_SYMBOL_GPL vmlinux 0x2bc681d7 gpiochip_get_desc -EXPORT_SYMBOL_GPL vmlinux 0x2bd9f889 regcache_cache_bypass +EXPORT_SYMBOL_GPL vmlinux 0x2bb966c4 dw_pcie_read_dbi +EXPORT_SYMBOL_GPL vmlinux 0x2bc3cdc7 mtk_pinconf_bias_set_rev1 +EXPORT_SYMBOL_GPL vmlinux 0x2bd489d3 inode_sb_list_add EXPORT_SYMBOL_GPL vmlinux 0x2be5030f copy_to_user_nofault -EXPORT_SYMBOL_GPL vmlinux 0x2bf2b12f usb_alloc_dev -EXPORT_SYMBOL_GPL vmlinux 0x2c00ca23 mtk_build_eint -EXPORT_SYMBOL_GPL vmlinux 0x2c0ee858 synth_event_add_val -EXPORT_SYMBOL_GPL vmlinux 0x2c172355 syscon_regmap_lookup_by_phandle_args +EXPORT_SYMBOL_GPL vmlinux 0x2be85b61 snd_soc_jack_report +EXPORT_SYMBOL_GPL vmlinux 0x2bf26329 tc3589x_block_write +EXPORT_SYMBOL_GPL vmlinux 0x2bf45504 dev_nit_active +EXPORT_SYMBOL_GPL vmlinux 0x2bfe91af strp_unpause +EXPORT_SYMBOL_GPL vmlinux 0x2c1c7730 fuse_sync_release EXPORT_SYMBOL_GPL vmlinux 0x2c208607 power_supply_is_system_supplied EXPORT_SYMBOL_GPL vmlinux 0x2c3054f9 net_inc_ingress_queue -EXPORT_SYMBOL_GPL vmlinux 0x2c46564a iommu_sva_bind_device +EXPORT_SYMBOL_GPL vmlinux 0x2c333973 dax_region_put +EXPORT_SYMBOL_GPL vmlinux 0x2c485d7b fscrypt_ioctl_get_policy_ex +EXPORT_SYMBOL_GPL vmlinux 0x2c5200f2 put_device EXPORT_SYMBOL_GPL vmlinux 0x2c5467c6 kobject_get_path -EXPORT_SYMBOL_GPL vmlinux 0x2c5b4c65 snd_soc_bytes_info_ext -EXPORT_SYMBOL_GPL vmlinux 0x2c5d1d90 ahci_init_controller -EXPORT_SYMBOL_GPL vmlinux 0x2c5ed28e nd_cmd_out_size +EXPORT_SYMBOL_GPL vmlinux 0x2c55618c nvdimm_name +EXPORT_SYMBOL_GPL vmlinux 0x2c60422a serdev_device_remove +EXPORT_SYMBOL_GPL vmlinux 0x2c62a7a2 sdhci_set_data_timeout_irq +EXPORT_SYMBOL_GPL vmlinux 0x2c6456a4 devm_kfree EXPORT_SYMBOL_GPL vmlinux 0x2c66ac85 devlink_info_serial_number_put -EXPORT_SYMBOL_GPL vmlinux 0x2c738a92 handle_fasteoi_mask_irq EXPORT_SYMBOL_GPL vmlinux 0x2c7db649 irq_dispose_mapping -EXPORT_SYMBOL_GPL vmlinux 0x2c7e13e5 fat_build_inode -EXPORT_SYMBOL_GPL vmlinux 0x2c84394e usb_interrupt_msg EXPORT_SYMBOL_GPL vmlinux 0x2c8dd6b8 edac_mem_types +EXPORT_SYMBOL_GPL vmlinux 0x2c937a81 dequeue_signal +EXPORT_SYMBOL_GPL vmlinux 0x2c953228 ncsi_register_dev EXPORT_SYMBOL_GPL vmlinux 0x2c97f8a2 of_reconfig_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x2c9a866c edac_device_handle_ce_count -EXPORT_SYMBOL_GPL vmlinux 0x2ca38601 platform_device_put -EXPORT_SYMBOL_GPL vmlinux 0x2ccf161c irq_domain_xlate_onecell -EXPORT_SYMBOL_GPL vmlinux 0x2cd47182 rio_request_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0x2cc6aec0 pci_slots_kset +EXPORT_SYMBOL_GPL vmlinux 0x2cc9e501 snd_soc_dai_set_bclk_ratio +EXPORT_SYMBOL_GPL vmlinux 0x2cd55213 platform_msi_domain_free_irqs EXPORT_SYMBOL_GPL vmlinux 0x2ce61f33 __SCK__tp_func_br_fdb_add +EXPORT_SYMBOL_GPL vmlinux 0x2ce66ada mtd_writev EXPORT_SYMBOL_GPL vmlinux 0x2cea32ee unregister_oldmem_pfn_is_ram -EXPORT_SYMBOL_GPL vmlinux 0x2cf338c3 set_secondary_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x2cfeb6f2 extcon_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x2cff96e6 switchdev_handle_fdb_add_to_device -EXPORT_SYMBOL_GPL vmlinux 0x2d0aae97 pci_user_read_config_byte -EXPORT_SYMBOL_GPL vmlinux 0x2d10d9db gpiochip_populate_parent_fwspec_twocell +EXPORT_SYMBOL_GPL vmlinux 0x2ced72ac devlink_port_attrs_pci_pf_set +EXPORT_SYMBOL_GPL vmlinux 0x2cf9b4e2 fscrypt_mergeable_bio_bh +EXPORT_SYMBOL_GPL vmlinux 0x2d11d692 pci_scan_child_bus EXPORT_SYMBOL_GPL vmlinux 0x2d1b02d2 usermodehelper_read_lock_wait -EXPORT_SYMBOL_GPL vmlinux 0x2d2bda41 __fscrypt_encrypt_symlink -EXPORT_SYMBOL_GPL vmlinux 0x2d2ceecf regulator_get +EXPORT_SYMBOL_GPL vmlinux 0x2d24b52d bio_associate_blkg +EXPORT_SYMBOL_GPL vmlinux 0x2d2d1b79 tcp_get_info EXPORT_SYMBOL_GPL vmlinux 0x2d2dd36f kobj_ns_grab_current -EXPORT_SYMBOL_GPL vmlinux 0x2d329304 cpufreq_dbs_governor_init EXPORT_SYMBOL_GPL vmlinux 0x2d368c4c nand_subop_get_addr_start_off -EXPORT_SYMBOL_GPL vmlinux 0x2d39e999 xfrm_dev_offload_ok -EXPORT_SYMBOL_GPL vmlinux 0x2d39ede7 shash_ahash_digest -EXPORT_SYMBOL_GPL vmlinux 0x2d418802 led_update_brightness +EXPORT_SYMBOL_GPL vmlinux 0x2d3bab5c ata_sas_slave_configure +EXPORT_SYMBOL_GPL vmlinux 0x2d3d4bc6 path_noexec EXPORT_SYMBOL_GPL vmlinux 0x2d41e6f5 __trace_puts -EXPORT_SYMBOL_GPL vmlinux 0x2d4247db of_genpd_add_provider_simple -EXPORT_SYMBOL_GPL vmlinux 0x2d4b659d virtqueue_get_used_addr -EXPORT_SYMBOL_GPL vmlinux 0x2d4fe8da unregister_asymmetric_key_parser -EXPORT_SYMBOL_GPL vmlinux 0x2d51187a rio_map_inb_region -EXPORT_SYMBOL_GPL vmlinux 0x2d55243d __dev_change_net_namespace +EXPORT_SYMBOL_GPL vmlinux 0x2d4eedb6 fixup_user_fault +EXPORT_SYMBOL_GPL vmlinux 0x2d5218b2 cpufreq_generic_init +EXPORT_SYMBOL_GPL vmlinux 0x2d5a6208 iommu_iova_to_phys +EXPORT_SYMBOL_GPL vmlinux 0x2d5f0b54 dev_pm_opp_find_level_ceil EXPORT_SYMBOL_GPL vmlinux 0x2d5f69b3 rcu_read_unlock_strict -EXPORT_SYMBOL_GPL vmlinux 0x2d647b15 pci_generic_config_write -EXPORT_SYMBOL_GPL vmlinux 0x2d6b56af debugfs_create_devm_seqfile -EXPORT_SYMBOL_GPL vmlinux 0x2d743042 devfreq_get_devfreq_by_node -EXPORT_SYMBOL_GPL vmlinux 0x2d7d1c0b spi_controller_suspend -EXPORT_SYMBOL_GPL vmlinux 0x2d80be11 phy_destroy -EXPORT_SYMBOL_GPL vmlinux 0x2d887691 vring_del_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0x2da47516 regulator_map_voltage_iterate -EXPORT_SYMBOL_GPL vmlinux 0x2da61e0f badblocks_show -EXPORT_SYMBOL_GPL vmlinux 0x2db0ddfa devm_of_icc_get +EXPORT_SYMBOL_GPL vmlinux 0x2d649a0f irq_chip_release_resources_parent +EXPORT_SYMBOL_GPL vmlinux 0x2d6d9cb6 of_irq_parse_and_map_pci +EXPORT_SYMBOL_GPL vmlinux 0x2d6e79e9 sdio_f0_readb +EXPORT_SYMBOL_GPL vmlinux 0x2d7a533f snd_soc_dai_compr_startup +EXPORT_SYMBOL_GPL vmlinux 0x2d82bc6e fb_bl_default_curve +EXPORT_SYMBOL_GPL vmlinux 0x2d876b1d sm501_modify_reg +EXPORT_SYMBOL_GPL vmlinux 0x2d8978d3 nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0x2d94ac49 ata_sas_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0x2da55040 bpf_trace_run12 EXPORT_SYMBOL_GPL vmlinux 0x2db67d4a owl_sps_set_pg -EXPORT_SYMBOL_GPL vmlinux 0x2dce448b ata_bmdma_port_start32 -EXPORT_SYMBOL_GPL vmlinux 0x2dce4b4d snd_soc_cnew -EXPORT_SYMBOL_GPL vmlinux 0x2dd680d7 platform_get_irq_byname_optional -EXPORT_SYMBOL_GPL vmlinux 0x2dd70757 devm_regulator_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x2ddcea3c tc3589x_block_read -EXPORT_SYMBOL_GPL vmlinux 0x2dfea5b4 subsys_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2dced11b devm_rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0x2de1e0c3 vfs_setlease +EXPORT_SYMBOL_GPL vmlinux 0x2de62e17 wakeup_sources_walk_start EXPORT_SYMBOL_GPL vmlinux 0x2e028ae6 rcutorture_get_gp_data -EXPORT_SYMBOL_GPL vmlinux 0x2e1bc0c0 spi_statistics_add_transfer_stats +EXPORT_SYMBOL_GPL vmlinux 0x2e04861e dev_coredumpv EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace -EXPORT_SYMBOL_GPL vmlinux 0x2e28cbdf device_property_present -EXPORT_SYMBOL_GPL vmlinux 0x2e37f3a9 led_compose_name +EXPORT_SYMBOL_GPL vmlinux 0x2e23af63 skcipher_walk_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x2e2bc1dd spi_finalize_current_message +EXPORT_SYMBOL_GPL vmlinux 0x2e2e85c4 pm_clk_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x2e34c7b1 snd_ac97_reset EXPORT_SYMBOL_GPL vmlinux 0x2e4261f6 snmp_get_cpu_field64 -EXPORT_SYMBOL_GPL vmlinux 0x2e60588b devm_namespace_disable +EXPORT_SYMBOL_GPL vmlinux 0x2e451d0b icc_link_create EXPORT_SYMBOL_GPL vmlinux 0x2e66298c __SCK__tp_func_sched_util_est_cfs_tp -EXPORT_SYMBOL_GPL vmlinux 0x2e768cab fib_rules_dump -EXPORT_SYMBOL_GPL vmlinux 0x2e7e4849 phy_power_on +EXPORT_SYMBOL_GPL vmlinux 0x2e6ef027 pwm_free +EXPORT_SYMBOL_GPL vmlinux 0x2e94e07e genphy_c45_pma_resume EXPORT_SYMBOL_GPL vmlinux 0x2e94f1df __traceiter_sched_overutilized_tp -EXPORT_SYMBOL_GPL vmlinux 0x2e9c2fb3 wwan_port_rx -EXPORT_SYMBOL_GPL vmlinux 0x2e9d82a5 snd_dmaengine_pcm_close_release_chan -EXPORT_SYMBOL_GPL vmlinux 0x2e9f414c usb_enable_lpm -EXPORT_SYMBOL_GPL vmlinux 0x2eb00cd0 __pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0x2ea3acc7 dev_pm_domain_attach_by_id +EXPORT_SYMBOL_GPL vmlinux 0x2ead1b4e dm_suspended EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable -EXPORT_SYMBOL_GPL vmlinux 0x2ecae623 pci_remove_root_bus -EXPORT_SYMBOL_GPL vmlinux 0x2ecb36d2 devm_hwrng_register -EXPORT_SYMBOL_GPL vmlinux 0x2ee3fd8a gpiod_get_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x2ef2764c usb_gadget_map_request_by_dev -EXPORT_SYMBOL_GPL vmlinux 0x2f0a2e2b netdev_is_rx_handler_busy +EXPORT_SYMBOL_GPL vmlinux 0x2ebf85d1 cgroup_get_e_css +EXPORT_SYMBOL_GPL vmlinux 0x2ed6a1d1 __mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0x2edd7634 cpufreq_enable_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0x2f079b94 thermal_add_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0x2f085930 validate_xmit_skb_list EXPORT_SYMBOL_GPL vmlinux 0x2f0d9053 usb_otg_state_string -EXPORT_SYMBOL_GPL vmlinux 0x2f13278f iomap_is_partially_uptodate -EXPORT_SYMBOL_GPL vmlinux 0x2f13a174 xfrm_audit_state_add -EXPORT_SYMBOL_GPL vmlinux 0x2f1c4c13 crypto_unregister_templates +EXPORT_SYMBOL_GPL vmlinux 0x2f117c41 __traceiter_napi_poll EXPORT_SYMBOL_GPL vmlinux 0x2f1ea064 __SCK__tp_func_xdp_bulk_tx -EXPORT_SYMBOL_GPL vmlinux 0x2f23f2bd __traceiter_sched_cpu_capacity_tp -EXPORT_SYMBOL_GPL vmlinux 0x2f2501c9 transport_setup_device -EXPORT_SYMBOL_GPL vmlinux 0x2f2c437c uart_console_device -EXPORT_SYMBOL_GPL vmlinux 0x2f35cfc1 __traceiter_wbc_writepage -EXPORT_SYMBOL_GPL vmlinux 0x2f375c71 ip6_local_out -EXPORT_SYMBOL_GPL vmlinux 0x2f39a288 snd_soc_dapm_put_enum_double -EXPORT_SYMBOL_GPL vmlinux 0x2f55b382 sata_link_debounce -EXPORT_SYMBOL_GPL vmlinux 0x2f5f3908 access_process_vm -EXPORT_SYMBOL_GPL vmlinux 0x2f5f7117 snd_soc_tplg_component_remove -EXPORT_SYMBOL_GPL vmlinux 0x2f60f213 sdhci_set_ios +EXPORT_SYMBOL_GPL vmlinux 0x2f289924 ip6_append_data +EXPORT_SYMBOL_GPL vmlinux 0x2f301f8f snd_dmaengine_pcm_open_request_chan +EXPORT_SYMBOL_GPL vmlinux 0x2f3facc9 of_add_property +EXPORT_SYMBOL_GPL vmlinux 0x2f401ae5 usb_queue_reset_device EXPORT_SYMBOL_GPL vmlinux 0x2f63e634 usb_poison_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x2f721716 sdhci_add_host -EXPORT_SYMBOL_GPL vmlinux 0x2f7dd753 dma_mmap_noncontiguous -EXPORT_SYMBOL_GPL vmlinux 0x2f817517 usb_hcd_pci_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x2f9d0966 of_mm_gpiochip_remove -EXPORT_SYMBOL_GPL vmlinux 0x2fa4bf5a phy_driver_is_genphy +EXPORT_SYMBOL_GPL vmlinux 0x2f83a784 blk_req_needs_zone_write_lock +EXPORT_SYMBOL_GPL vmlinux 0x2f97e561 ohci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0x2f9c1870 pci_epc_get_msi +EXPORT_SYMBOL_GPL vmlinux 0x2fa0277b snd_soc_dapm_stream_stop EXPORT_SYMBOL_GPL vmlinux 0x2fade0be synth_event_add_field -EXPORT_SYMBOL_GPL vmlinux 0x2fb32f2f spi_res_release -EXPORT_SYMBOL_GPL vmlinux 0x2fb33535 blk_mq_flush_busy_ctxs -EXPORT_SYMBOL_GPL vmlinux 0x2fc0193b nvmem_cell_read_u32 +EXPORT_SYMBOL_GPL vmlinux 0x2fb21da4 sdhci_enable_clk EXPORT_SYMBOL_GPL vmlinux 0x2fc1e0fe kmem_valid_obj -EXPORT_SYMBOL_GPL vmlinux 0x2fdef61f ahci_kick_engine -EXPORT_SYMBOL_GPL vmlinux 0x2fe5e753 crypto_skcipher_decrypt -EXPORT_SYMBOL_GPL vmlinux 0x2fe67b35 class_interface_register -EXPORT_SYMBOL_GPL vmlinux 0x2ff31fa2 crypto_stats_aead_decrypt -EXPORT_SYMBOL_GPL vmlinux 0x30001d13 led_classdev_register_ext -EXPORT_SYMBOL_GPL vmlinux 0x300ed6a9 spi_split_transfers_maxsize -EXPORT_SYMBOL_GPL vmlinux 0x302361ee gpiochip_generic_free -EXPORT_SYMBOL_GPL vmlinux 0x3046319d wm831x_auxadc_read_uv -EXPORT_SYMBOL_GPL vmlinux 0x30518c48 sdhci_execute_tuning +EXPORT_SYMBOL_GPL vmlinux 0x2fd66784 md_start +EXPORT_SYMBOL_GPL vmlinux 0x2fff1e95 tty_find_polling_driver +EXPORT_SYMBOL_GPL vmlinux 0x30135da2 md_do_sync +EXPORT_SYMBOL_GPL vmlinux 0x304e7732 crypto_shoot_alg +EXPORT_SYMBOL_GPL vmlinux 0x3056a226 of_detach_node +EXPORT_SYMBOL_GPL vmlinux 0x30614148 get_governor_parent_kobj EXPORT_SYMBOL_GPL vmlinux 0x3061cfce ring_buffer_entries_cpu -EXPORT_SYMBOL_GPL vmlinux 0x306ccb3f snd_soc_runtime_action -EXPORT_SYMBOL_GPL vmlinux 0x307a8e2f udp_cmsg_send +EXPORT_SYMBOL_GPL vmlinux 0x307a5617 nanddev_bbt_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x3085d3b9 of_pci_range_parser_init EXPORT_SYMBOL_GPL vmlinux 0x30a262dc look_up_OID EXPORT_SYMBOL_GPL vmlinux 0x30a2b5f5 cpuacct_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x30a997f2 i2c_detect_slave_mode -EXPORT_SYMBOL_GPL vmlinux 0x30cc5bfd fuse_do_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x30d84a3b cpu_subsys -EXPORT_SYMBOL_GPL vmlinux 0x30daec0b of_property_read_u64 -EXPORT_SYMBOL_GPL vmlinux 0x30ebf7f7 pin_user_pages_fast -EXPORT_SYMBOL_GPL vmlinux 0x30ef040f set_primary_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x30fb425e __tcp_send_ack -EXPORT_SYMBOL_GPL vmlinux 0x30fbb27f tps80031_ext_power_req_config -EXPORT_SYMBOL_GPL vmlinux 0x3100eb3f device_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x30bd1f98 iommu_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x30ca0aca nand_select_target +EXPORT_SYMBOL_GPL vmlinux 0x30daaae6 da9052_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0x30e4456a __irq_alloc_domain_generic_chips +EXPORT_SYMBOL_GPL vmlinux 0x30e659ec usb_submit_urb +EXPORT_SYMBOL_GPL vmlinux 0x30f80016 fuse_mount_remove EXPORT_SYMBOL_GPL vmlinux 0x31019477 __ftrace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0x3103b184 irq_domain_xlate_onecell EXPORT_SYMBOL_GPL vmlinux 0x310b6270 alarm_forward -EXPORT_SYMBOL_GPL vmlinux 0x31118581 of_remove_property -EXPORT_SYMBOL_GPL vmlinux 0x3119e9eb rio_mport_initialize -EXPORT_SYMBOL_GPL vmlinux 0x3121c6e0 crypto_stats_skcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x31162b9b tty_port_tty_wakeup EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave -EXPORT_SYMBOL_GPL vmlinux 0x31374654 stmpe_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x313d7246 snd_soc_dapm_force_enable_pin +EXPORT_SYMBOL_GPL vmlinux 0x31385bf2 nvdimm_to_bus EXPORT_SYMBOL_GPL vmlinux 0x313ea5fd ipi_send_single -EXPORT_SYMBOL_GPL vmlinux 0x3148be3f hvc_poll -EXPORT_SYMBOL_GPL vmlinux 0x314f896e ata_host_start -EXPORT_SYMBOL_GPL vmlinux 0x315f03b3 snd_compr_stop_error -EXPORT_SYMBOL_GPL vmlinux 0x315f336c sysfs_remove_group -EXPORT_SYMBOL_GPL vmlinux 0x3162d718 pinctrl_pm_select_sleep_state -EXPORT_SYMBOL_GPL vmlinux 0x3166ea6f da9055_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0x31672b57 skb_complete_wifi_ack -EXPORT_SYMBOL_GPL vmlinux 0x316f3bd8 mtd_ooblayout_get_eccbytes +EXPORT_SYMBOL_GPL vmlinux 0x3141dfce sk_psock_init +EXPORT_SYMBOL_GPL vmlinux 0x3150d206 snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL vmlinux 0x315d2fa8 devlink_dpipe_headers_unregister EXPORT_SYMBOL_GPL vmlinux 0x3187490a __SCK__tp_func_detach_device_from_domain -EXPORT_SYMBOL_GPL vmlinux 0x318ec17c __traceiter_devlink_hwerr +EXPORT_SYMBOL_GPL vmlinux 0x3191a33d gpiochip_generic_config EXPORT_SYMBOL_GPL vmlinux 0x3192d768 cpufreq_remove_update_util_hook -EXPORT_SYMBOL_GPL vmlinux 0x31a71a4c crypto_shoot_alg -EXPORT_SYMBOL_GPL vmlinux 0x31a80129 blk_next_bio +EXPORT_SYMBOL_GPL vmlinux 0x319dd092 sched_trace_rq_avg_dl +EXPORT_SYMBOL_GPL vmlinux 0x31a8a27c irq_chip_ack_parent EXPORT_SYMBOL_GPL vmlinux 0x31a95e8b ring_buffer_record_enable_cpu +EXPORT_SYMBOL_GPL vmlinux 0x31b69592 tpm_is_tpm2 EXPORT_SYMBOL_GPL vmlinux 0x31c7970f pciserial_suspend_ports -EXPORT_SYMBOL_GPL vmlinux 0x31ea2a19 ata_link_offline -EXPORT_SYMBOL_GPL vmlinux 0x31fd1712 device_property_read_u8_array -EXPORT_SYMBOL_GPL vmlinux 0x3202e3c0 fwnode_create_software_node -EXPORT_SYMBOL_GPL vmlinux 0x320b70f3 fuse_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x31dbcd95 user_update +EXPORT_SYMBOL_GPL vmlinux 0x31e04dd0 shmem_truncate_range +EXPORT_SYMBOL_GPL vmlinux 0x31e4e49e bpf_trace_run8 +EXPORT_SYMBOL_GPL vmlinux 0x31e567ad cn_add_callback +EXPORT_SYMBOL_GPL vmlinux 0x3210b0de usb_role_switch_get EXPORT_SYMBOL_GPL vmlinux 0x3224b2a9 mpi_read_raw_from_sgl -EXPORT_SYMBOL_GPL vmlinux 0x322974b4 of_usb_update_otg_caps -EXPORT_SYMBOL_GPL vmlinux 0x32464e04 lwtstate_free +EXPORT_SYMBOL_GPL vmlinux 0x32306ad0 pci_ecam_free EXPORT_SYMBOL_GPL vmlinux 0x325e5118 rhashtable_init -EXPORT_SYMBOL_GPL vmlinux 0x3266790c snd_soc_card_add_dai_link -EXPORT_SYMBOL_GPL vmlinux 0x326d75bd dev_pm_opp_remove_all_dynamic -EXPORT_SYMBOL_GPL vmlinux 0x326d9977 xhci_get_ep_ctx -EXPORT_SYMBOL_GPL vmlinux 0x326fcb5e gpmc_omap_onenand_set_timings -EXPORT_SYMBOL_GPL vmlinux 0x3285e4c1 musb_get_mode -EXPORT_SYMBOL_GPL vmlinux 0x3291daf4 synth_event_trace_start -EXPORT_SYMBOL_GPL vmlinux 0x3299aed0 security_inode_mkdir -EXPORT_SYMBOL_GPL vmlinux 0x329a02df ahci_dev_classify -EXPORT_SYMBOL_GPL vmlinux 0x32a08801 mtd_del_partition +EXPORT_SYMBOL_GPL vmlinux 0x32725f24 devlink_port_type_ib_set +EXPORT_SYMBOL_GPL vmlinux 0x3275e25c sock_diag_check_cookie EXPORT_SYMBOL_GPL vmlinux 0x32ab06cc irq_percpu_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0x32baf51a ata_sas_port_resume -EXPORT_SYMBOL_GPL vmlinux 0x32bb28fd ata_ehi_clear_desc -EXPORT_SYMBOL_GPL vmlinux 0x32c0477f ipv6_proxy_select_ident +EXPORT_SYMBOL_GPL vmlinux 0x32b14f21 inet_send_prepare +EXPORT_SYMBOL_GPL vmlinux 0x32bba4d6 sched_trace_rq_cpu +EXPORT_SYMBOL_GPL vmlinux 0x32c2f5a8 ata_bmdma_stop EXPORT_SYMBOL_GPL vmlinux 0x32c3cb4e class_compat_register -EXPORT_SYMBOL_GPL vmlinux 0x32c419f0 devlink_dpipe_table_register -EXPORT_SYMBOL_GPL vmlinux 0x32c91434 debugfs_create_u32_array -EXPORT_SYMBOL_GPL vmlinux 0x32cd0d29 fscrypt_ioctl_get_policy_ex -EXPORT_SYMBOL_GPL vmlinux 0x32cef25a __cpufreq_driver_target -EXPORT_SYMBOL_GPL vmlinux 0x32d4b4c3 blk_freeze_queue_start -EXPORT_SYMBOL_GPL vmlinux 0x32f13873 crypto_unregister_ahashes -EXPORT_SYMBOL_GPL vmlinux 0x32fbdbb8 devm_device_add_groups -EXPORT_SYMBOL_GPL vmlinux 0x331f7469 sysfs_remove_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x3324b84e driver_find_device +EXPORT_SYMBOL_GPL vmlinux 0x32c9fc11 mmc_sanitize +EXPORT_SYMBOL_GPL vmlinux 0x32e033d3 nand_ecc_tweak_req EXPORT_SYMBOL_GPL vmlinux 0x3335ae32 freq_qos_update_request -EXPORT_SYMBOL_GPL vmlinux 0x3338ed9f iomap_readahead -EXPORT_SYMBOL_GPL vmlinux 0x333cf8cb bio_trim -EXPORT_SYMBOL_GPL vmlinux 0x3340dd74 bd_link_disk_holder -EXPORT_SYMBOL_GPL vmlinux 0x3351a20e ata_sff_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0x3345406b rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0x334c671f of_property_read_variable_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x334d8ddd balloon_page_enqueue EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0x33710a6e crypto_register_scomps -EXPORT_SYMBOL_GPL vmlinux 0x3375e7d8 pm_genpd_init -EXPORT_SYMBOL_GPL vmlinux 0x338d4096 serdev_controller_add -EXPORT_SYMBOL_GPL vmlinux 0x338f42fa posix_acl_access_xattr_handler -EXPORT_SYMBOL_GPL vmlinux 0x3397fe00 crypto_skcipher_setkey -EXPORT_SYMBOL_GPL vmlinux 0x339eb2f7 __raw_v6_lookup -EXPORT_SYMBOL_GPL vmlinux 0x33a5622f tty_init_termios -EXPORT_SYMBOL_GPL vmlinux 0x33a78312 dev_pm_genpd_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0x33a8de8e __mnt_is_readonly -EXPORT_SYMBOL_GPL vmlinux 0x33ae3486 scsi_dh_attached_handler_name -EXPORT_SYMBOL_GPL vmlinux 0x33c87a2f perf_event_release_kernel +EXPORT_SYMBOL_GPL vmlinux 0x33755d76 pci_pri_supported +EXPORT_SYMBOL_GPL vmlinux 0x33c08c7d clk_bulk_get_optional EXPORT_SYMBOL_GPL vmlinux 0x33cd2cd6 cpu_latency_qos_update_request -EXPORT_SYMBOL_GPL vmlinux 0x33cf24b9 mmc_regulator_set_ocr -EXPORT_SYMBOL_GPL vmlinux 0x33d61e21 ehci_init_driver -EXPORT_SYMBOL_GPL vmlinux 0x33dbe435 exportfs_decode_fh_raw +EXPORT_SYMBOL_GPL vmlinux 0x33e70f71 usb_autopm_put_interface_no_suspend EXPORT_SYMBOL_GPL vmlinux 0x33e9e0a2 atomic_notifier_chain_register EXPORT_SYMBOL_GPL vmlinux 0x33efc8c8 trace_clock_local -EXPORT_SYMBOL_GPL vmlinux 0x33fbde27 __pm_runtime_disable -EXPORT_SYMBOL_GPL vmlinux 0x3417e351 icc_link_destroy -EXPORT_SYMBOL_GPL vmlinux 0x342237dd fsnotify_alloc_group -EXPORT_SYMBOL_GPL vmlinux 0x342a7c0b pm_relax -EXPORT_SYMBOL_GPL vmlinux 0x343e074e synth_event_trace +EXPORT_SYMBOL_GPL vmlinux 0x3418f643 usb_kill_urb +EXPORT_SYMBOL_GPL vmlinux 0x34193d73 rcu_read_unlock_trace_special +EXPORT_SYMBOL_GPL vmlinux 0x34358d83 mnt_want_write +EXPORT_SYMBOL_GPL vmlinux 0x343a32a9 sdio_retune_crc_disable +EXPORT_SYMBOL_GPL vmlinux 0x343a5b20 sdhci_resume_host +EXPORT_SYMBOL_GPL vmlinux 0x343ce440 rockchip_pcie_cfg_configuration_accesses EXPORT_SYMBOL_GPL vmlinux 0x34407691 crypto_has_ahash +EXPORT_SYMBOL_GPL vmlinux 0x3442a236 nand_read_data_op EXPORT_SYMBOL_GPL vmlinux 0x344361a1 kdb_register EXPORT_SYMBOL_GPL vmlinux 0x3450ad94 mpi_set_ui +EXPORT_SYMBOL_GPL vmlinux 0x3451b9b0 snd_soc_jack_add_pins +EXPORT_SYMBOL_GPL vmlinux 0x34525217 gpiochip_unlock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0x345654b5 ata_wait_after_reset EXPORT_SYMBOL_GPL vmlinux 0x3461ba36 usb_bus_idr -EXPORT_SYMBOL_GPL vmlinux 0x347eb028 irq_domain_set_hwirq_and_chip -EXPORT_SYMBOL_GPL vmlinux 0x347f8b22 led_trigger_read -EXPORT_SYMBOL_GPL vmlinux 0x34877219 sock_diag_register_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0x3484581f fat_get_dotdot_entry +EXPORT_SYMBOL_GPL vmlinux 0x34871f74 regmap_async_complete_cb +EXPORT_SYMBOL_GPL vmlinux 0x348bb6d0 cpufreq_frequency_table_get_index +EXPORT_SYMBOL_GPL vmlinux 0x349d6cb6 bio_trim +EXPORT_SYMBOL_GPL vmlinux 0x349f627a gadget_find_ep_by_name EXPORT_SYMBOL_GPL vmlinux 0x34a7b142 __SCK__tp_func_rpm_suspend EXPORT_SYMBOL_GPL vmlinux 0x34ac50a4 visitorl -EXPORT_SYMBOL_GPL vmlinux 0x34afd98d crypto_rng_reset -EXPORT_SYMBOL_GPL vmlinux 0x34b0de92 ata_port_freeze -EXPORT_SYMBOL_GPL vmlinux 0x34cf80a4 ethnl_cable_test_pulse -EXPORT_SYMBOL_GPL vmlinux 0x34d1455f sdhci_enable_v4_mode -EXPORT_SYMBOL_GPL vmlinux 0x34e6225f fat_flush_inodes -EXPORT_SYMBOL_GPL vmlinux 0x34eeddcb devfreq_event_disable_edev +EXPORT_SYMBOL_GPL vmlinux 0x34b6b328 cci_ace_get_port +EXPORT_SYMBOL_GPL vmlinux 0x34c9f589 get_task_mm +EXPORT_SYMBOL_GPL vmlinux 0x34d2f450 devm_get_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x34d35641 dev_pm_opp_set_opp +EXPORT_SYMBOL_GPL vmlinux 0x34e3e4f7 dma_buf_end_cpu_access +EXPORT_SYMBOL_GPL vmlinux 0x34e56d92 serial8250_rpm_get +EXPORT_SYMBOL_GPL vmlinux 0x34f4aa1d snd_soc_dapm_force_enable_pin_unlocked +EXPORT_SYMBOL_GPL vmlinux 0x34fa8003 __traceiter_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0x34fe5760 mtd_point EXPORT_SYMBOL_GPL vmlinux 0x350f6ce5 tasklet_unlock_wait -EXPORT_SYMBOL_GPL vmlinux 0x351af25b led_classdev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x352373a7 device_match_of_node +EXPORT_SYMBOL_GPL vmlinux 0x351f38a9 skcipher_walk_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x35254552 dma_buf_vunmap EXPORT_SYMBOL_GPL vmlinux 0x352b3813 maxim_charger_calc_reg_current EXPORT_SYMBOL_GPL vmlinux 0x352ec68b bpf_offload_dev_destroy -EXPORT_SYMBOL_GPL vmlinux 0x35352064 usb_gadget_map_request -EXPORT_SYMBOL_GPL vmlinux 0x3535cc87 blk_mq_unfreeze_queue -EXPORT_SYMBOL_GPL vmlinux 0x353c8cc1 is_software_node +EXPORT_SYMBOL_GPL vmlinux 0x352fec40 pci_walk_bus +EXPORT_SYMBOL_GPL vmlinux 0x355d8671 devm_of_led_get EXPORT_SYMBOL_GPL vmlinux 0x35681ae3 __tracepoint_tcp_bad_csum -EXPORT_SYMBOL_GPL vmlinux 0x35784314 debugfs_attr_write +EXPORT_SYMBOL_GPL vmlinux 0x3585c142 __traceiter_pelt_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x35874df0 gpiochip_irq_map +EXPORT_SYMBOL_GPL vmlinux 0x358ac606 iommu_fwspec_init EXPORT_SYMBOL_GPL vmlinux 0x358ff60f twl_get_hfclk_rate -EXPORT_SYMBOL_GPL vmlinux 0x35953d95 devm_snd_soc_register_dai -EXPORT_SYMBOL_GPL vmlinux 0x359d15d1 fuse_direct_io -EXPORT_SYMBOL_GPL vmlinux 0x35a294d4 snd_soc_component_exit_regmap -EXPORT_SYMBOL_GPL vmlinux 0x35b38ee6 tty_port_register_device -EXPORT_SYMBOL_GPL vmlinux 0x35babba3 rq_flush_dcache_pages -EXPORT_SYMBOL_GPL vmlinux 0x35bcd0f7 devlink_params_publish -EXPORT_SYMBOL_GPL vmlinux 0x35bd359c xdp_rxq_info_unreg -EXPORT_SYMBOL_GPL vmlinux 0x35c98495 call_switchdev_notifiers -EXPORT_SYMBOL_GPL vmlinux 0x35cc0f51 skb_segment_list -EXPORT_SYMBOL_GPL vmlinux 0x35e3c613 msg_zerocopy_alloc +EXPORT_SYMBOL_GPL vmlinux 0x359e7736 __skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x35a2fb8b devres_release +EXPORT_SYMBOL_GPL vmlinux 0x35a5c8f7 ima_file_hash +EXPORT_SYMBOL_GPL vmlinux 0x35b38127 stmpe_block_write +EXPORT_SYMBOL_GPL vmlinux 0x35b55990 rdev_get_id +EXPORT_SYMBOL_GPL vmlinux 0x35e5813d dev_pm_disable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x35ff7177 kernfs_find_and_get_ns EXPORT_SYMBOL_GPL vmlinux 0x36075bb5 iommu_group_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x3615e3c7 irq_get_default_host -EXPORT_SYMBOL_GPL vmlinux 0x36190198 report_iommu_fault -EXPORT_SYMBOL_GPL vmlinux 0x361eadc0 devlink_port_param_driverinit_value_get +EXPORT_SYMBOL_GPL vmlinux 0x36102720 exportfs_encode_fh +EXPORT_SYMBOL_GPL vmlinux 0x3617fe42 skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x361d8fb4 of_genpd_add_provider_simple +EXPORT_SYMBOL_GPL vmlinux 0x36231627 iommu_sva_get_pasid EXPORT_SYMBOL_GPL vmlinux 0x36242943 switchdev_deferred_process -EXPORT_SYMBOL_GPL vmlinux 0x36379e35 devfreq_event_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0x3667201b i2c_new_scanned_device -EXPORT_SYMBOL_GPL vmlinux 0x36679e4e rio_unmap_outb_region -EXPORT_SYMBOL_GPL vmlinux 0x36755802 usb_disable_ltm -EXPORT_SYMBOL_GPL vmlinux 0x367fd7fa pci_check_and_mask_intx -EXPORT_SYMBOL_GPL vmlinux 0x36836892 ata_sff_data_xfer -EXPORT_SYMBOL_GPL vmlinux 0x368b79e4 nvdimm_has_cache +EXPORT_SYMBOL_GPL vmlinux 0x362e3a7c snd_dmaengine_pcm_set_config_from_dai_data +EXPORT_SYMBOL_GPL vmlinux 0x363649f9 device_get_match_data +EXPORT_SYMBOL_GPL vmlinux 0x364e6fca pci_vfs_assigned +EXPORT_SYMBOL_GPL vmlinux 0x366897fb regmap_test_bits +EXPORT_SYMBOL_GPL vmlinux 0x36886539 do_truncate +EXPORT_SYMBOL_GPL vmlinux 0x36887a59 sysfs_remove_mount_point +EXPORT_SYMBOL_GPL vmlinux 0x368af244 tty_set_ldisc +EXPORT_SYMBOL_GPL vmlinux 0x368c2a81 dapm_clock_event EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot -EXPORT_SYMBOL_GPL vmlinux 0x36a7ada4 transport_class_register -EXPORT_SYMBOL_GPL vmlinux 0x36c94c07 synth_event_create -EXPORT_SYMBOL_GPL vmlinux 0x36cf91f4 class_remove_file_ns -EXPORT_SYMBOL_GPL vmlinux 0x36d39420 ip_fib_metrics_init +EXPORT_SYMBOL_GPL vmlinux 0x36bac216 sock_diag_put_meminfo +EXPORT_SYMBOL_GPL vmlinux 0x36cd75c6 sdhci_send_tuning +EXPORT_SYMBOL_GPL vmlinux 0x36d5ab71 devm_pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0x36d62861 snd_soc_component_compr_trigger +EXPORT_SYMBOL_GPL vmlinux 0x36e07291 lwtunnel_encap_del_ops +EXPORT_SYMBOL_GPL vmlinux 0x36e128ce rockchip_clk_init EXPORT_SYMBOL_GPL vmlinux 0x36ec8a8a nvmem_device_cell_read -EXPORT_SYMBOL_GPL vmlinux 0x36f03a2e regulator_get_hardware_vsel_register -EXPORT_SYMBOL_GPL vmlinux 0x3711c474 tty_encode_baud_rate -EXPORT_SYMBOL_GPL vmlinux 0x3715ca4a omap_iommu_save_ctx -EXPORT_SYMBOL_GPL vmlinux 0x37267af3 sdio_memcpy_fromio -EXPORT_SYMBOL_GPL vmlinux 0x3726b68f iommu_aux_attach_device -EXPORT_SYMBOL_GPL vmlinux 0x37324217 relay_open +EXPORT_SYMBOL_GPL vmlinux 0x36f7c9db tpm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0x3709294a omap_iommu_restore_ctx +EXPORT_SYMBOL_GPL vmlinux 0x3712af7d of_genpd_add_provider_onecell +EXPORT_SYMBOL_GPL vmlinux 0x3712d985 ata_std_bios_param +EXPORT_SYMBOL_GPL vmlinux 0x3724f42f snd_soc_component_disable_pin_unlocked +EXPORT_SYMBOL_GPL vmlinux 0x37384989 phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0x373883e3 regulator_desc_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x374a6af7 tcp_bpf_update_proto +EXPORT_SYMBOL_GPL vmlinux 0x374b36e3 usb_free_streams EXPORT_SYMBOL_GPL vmlinux 0x374c53e1 ata_get_cmd_descript -EXPORT_SYMBOL_GPL vmlinux 0x375193dd noop_invalidatepage EXPORT_SYMBOL_GPL vmlinux 0x37595cb3 meson_clk_mpll_ops -EXPORT_SYMBOL_GPL vmlinux 0x375bb377 pci_epc_set_bar -EXPORT_SYMBOL_GPL vmlinux 0x375ce778 rio_local_set_device_id -EXPORT_SYMBOL_GPL vmlinux 0x37707443 ata_sas_port_init EXPORT_SYMBOL_GPL vmlinux 0x37743b64 iomap_dio_complete EXPORT_SYMBOL_GPL vmlinux 0x377bbcbc pm_suspend_target_state -EXPORT_SYMBOL_GPL vmlinux 0x3786a759 mddev_resume -EXPORT_SYMBOL_GPL vmlinux 0x3798b0fc genphy_c45_pma_setup_forced -EXPORT_SYMBOL_GPL vmlinux 0x37a6d4fc ip6_append_data -EXPORT_SYMBOL_GPL vmlinux 0x37b4d97a file_ra_state_init -EXPORT_SYMBOL_GPL vmlinux 0x37cf7657 da9052_free_irq +EXPORT_SYMBOL_GPL vmlinux 0x3781eab0 blk_queue_max_discard_segments +EXPORT_SYMBOL_GPL vmlinux 0x379623ce __mmdrop +EXPORT_SYMBOL_GPL vmlinux 0x37aff960 devm_phy_create +EXPORT_SYMBOL_GPL vmlinux 0x37b0feac bus_for_each_drv +EXPORT_SYMBOL_GPL vmlinux 0x37be3f63 led_set_brightness_nosleep +EXPORT_SYMBOL_GPL vmlinux 0x37da7f52 __vfs_removexattr_locked EXPORT_SYMBOL_GPL vmlinux 0x37e00980 pci_bridge_emul_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x3802683d serial8250_rpm_put_tx -EXPORT_SYMBOL_GPL vmlinux 0x38037cea power_supply_register_no_ws -EXPORT_SYMBOL_GPL vmlinux 0x381daaf7 crypto_stats_init +EXPORT_SYMBOL_GPL vmlinux 0x37e65117 strp_stop +EXPORT_SYMBOL_GPL vmlinux 0x37f5627f skb_gso_validate_network_len +EXPORT_SYMBOL_GPL vmlinux 0x37fc3b93 devres_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x38034f7f mmc_regulator_set_ocr +EXPORT_SYMBOL_GPL vmlinux 0x380997ba virtqueue_disable_cb +EXPORT_SYMBOL_GPL vmlinux 0x381b7ba3 snd_soc_info_volsw +EXPORT_SYMBOL_GPL vmlinux 0x3821ec2e bpf_trace_run2 +EXPORT_SYMBOL_GPL vmlinux 0x38262e53 rio_attach_device EXPORT_SYMBOL_GPL vmlinux 0x38268b62 icc_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0x382e6938 balloon_page_alloc EXPORT_SYMBOL_GPL vmlinux 0x38374815 clear_selection -EXPORT_SYMBOL_GPL vmlinux 0x386cbb3f genphy_c45_read_mdix -EXPORT_SYMBOL_GPL vmlinux 0x3870ac1c fwnode_property_read_string_array -EXPORT_SYMBOL_GPL vmlinux 0x388bca5f regulator_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x388ffe37 relay_close -EXPORT_SYMBOL_GPL vmlinux 0x38a71f90 extcon_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x383d26f9 devm_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x38420d11 inet6_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x385363ef snd_soc_new_ac97_component +EXPORT_SYMBOL_GPL vmlinux 0x386f4f1d dev_pm_opp_sync_regulators +EXPORT_SYMBOL_GPL vmlinux 0x3886f6cc cdrom_read_tocentry +EXPORT_SYMBOL_GPL vmlinux 0x38890549 pcie_port_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x3895c32a component_master_del +EXPORT_SYMBOL_GPL vmlinux 0x389de69f rio_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x38a66317 mtk_eint_do_resume EXPORT_SYMBOL_GPL vmlinux 0x38a9c2c7 input_ff_effect_from_user EXPORT_SYMBOL_GPL vmlinux 0x38aa1397 gpiod_add_lookup_table EXPORT_SYMBOL_GPL vmlinux 0x38aa4657 xas_nomem -EXPORT_SYMBOL_GPL vmlinux 0x38b58667 clk_register_divider_table +EXPORT_SYMBOL_GPL vmlinux 0x38aef1a5 crypto_default_rng EXPORT_SYMBOL_GPL vmlinux 0x38c0c9e4 btree_update -EXPORT_SYMBOL_GPL vmlinux 0x38ca3d5d ata_bmdma_irq_clear -EXPORT_SYMBOL_GPL vmlinux 0x38cb3919 pm_runtime_enable -EXPORT_SYMBOL_GPL vmlinux 0x38d81360 __rio_local_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x38c7efaa fwnode_find_reference +EXPORT_SYMBOL_GPL vmlinux 0x38c7f5bf devm_regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x38cb389b regulator_set_current_limit_regmap +EXPORT_SYMBOL_GPL vmlinux 0x38e0d716 uprobe_register_refctr EXPORT_SYMBOL_GPL vmlinux 0x38e1fde7 mpi_set EXPORT_SYMBOL_GPL vmlinux 0x38e5bc5a clk_set_rate_range -EXPORT_SYMBOL_GPL vmlinux 0x38e5d0b9 sysfs_group_change_owner -EXPORT_SYMBOL_GPL vmlinux 0x390a53ad serial8250_do_set_ldisc -EXPORT_SYMBOL_GPL vmlinux 0x390ee0c6 fib_nh_common_release -EXPORT_SYMBOL_GPL vmlinux 0x392a35e2 blk_crypto_evict_key -EXPORT_SYMBOL_GPL vmlinux 0x39329169 debugfs_lookup -EXPORT_SYMBOL_GPL vmlinux 0x393ab438 udp_tunnel_nic_ops -EXPORT_SYMBOL_GPL vmlinux 0x394478b6 devm_reset_control_array_get -EXPORT_SYMBOL_GPL vmlinux 0x3967b196 ahci_platform_get_resources +EXPORT_SYMBOL_GPL vmlinux 0x38eb8954 ata_sff_hsm_move +EXPORT_SYMBOL_GPL vmlinux 0x38fd442f sb800_prefetch +EXPORT_SYMBOL_GPL vmlinux 0x3908da0c proc_create_net_data +EXPORT_SYMBOL_GPL vmlinux 0x3920d753 is_nvdimm_sync +EXPORT_SYMBOL_GPL vmlinux 0x39275979 bpf_prog_sub +EXPORT_SYMBOL_GPL vmlinux 0x393501ca snd_pcm_stream_unlock_irq +EXPORT_SYMBOL_GPL vmlinux 0x393e3ed7 iomap_readpage +EXPORT_SYMBOL_GPL vmlinux 0x39590ea3 tpm_pm_suspend EXPORT_SYMBOL_GPL vmlinux 0x397e2142 __SCK__tp_func_sched_cpu_capacity_tp -EXPORT_SYMBOL_GPL vmlinux 0x398247bb snd_soc_dai_compr_set_params +EXPORT_SYMBOL_GPL vmlinux 0x3981b552 skcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x39a2f239 snd_soc_dapm_put_pin_switch EXPORT_SYMBOL_GPL vmlinux 0x39a7affc driver_deferred_probe_timeout EXPORT_SYMBOL_GPL vmlinux 0x39aa4888 usb_role_string -EXPORT_SYMBOL_GPL vmlinux 0x39b35297 dev_nit_active -EXPORT_SYMBOL_GPL vmlinux 0x39bee079 free_fib_info +EXPORT_SYMBOL_GPL vmlinux 0x39bd229a blk_mq_free_request +EXPORT_SYMBOL_GPL vmlinux 0x39be8a87 get_pid_task EXPORT_SYMBOL_GPL vmlinux 0x39c32aca __SCK__tp_func_neigh_event_send_done -EXPORT_SYMBOL_GPL vmlinux 0x39c476ff device_init_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x39db48fd __irq_domain_add -EXPORT_SYMBOL_GPL vmlinux 0x39e69199 clk_hw_get_parent_index -EXPORT_SYMBOL_GPL vmlinux 0x39ea783e usb_unlocked_disable_lpm -EXPORT_SYMBOL_GPL vmlinux 0x3a184732 devm_led_classdev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x3a28f499 dma_buf_put -EXPORT_SYMBOL_GPL vmlinux 0x3a2af837 md_bitmap_copy_from_slot -EXPORT_SYMBOL_GPL vmlinux 0x3a3a41aa shmem_file_setup +EXPORT_SYMBOL_GPL vmlinux 0x39c6424e md_run +EXPORT_SYMBOL_GPL vmlinux 0x39ebadba __of_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x39f6f55f tun_get_socket +EXPORT_SYMBOL_GPL vmlinux 0x39f9dda7 __pci_epc_create +EXPORT_SYMBOL_GPL vmlinux 0x3a129b7e dev_pm_opp_get_required_pstate +EXPORT_SYMBOL_GPL vmlinux 0x3a12d57c perf_aux_output_begin +EXPORT_SYMBOL_GPL vmlinux 0x3a146742 dev_pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x3a15569d dev_pm_opp_set_regulators +EXPORT_SYMBOL_GPL vmlinux 0x3a1f9189 __fscrypt_inode_uses_inline_crypto +EXPORT_SYMBOL_GPL vmlinux 0x3a2d54e6 regulator_set_voltage_sel_pickable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x3a32d609 ata_bmdma_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x3a33f563 anon_transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x3a405bd9 edac_get_sysfs_subsys +EXPORT_SYMBOL_GPL vmlinux 0x3a427667 vp_modern_set_features +EXPORT_SYMBOL_GPL vmlinux 0x3a45bec5 ahci_platform_suspend_host +EXPORT_SYMBOL_GPL vmlinux 0x3a46801c pm_generic_runtime_suspend EXPORT_SYMBOL_GPL vmlinux 0x3a4f6a32 ata_sff_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x3a526624 dapm_regulator_event EXPORT_SYMBOL_GPL vmlinux 0x3a536bd7 ring_buffer_read_finish -EXPORT_SYMBOL_GPL vmlinux 0x3a5a671d usb_create_hcd -EXPORT_SYMBOL_GPL vmlinux 0x3a5e3431 device_property_match_string -EXPORT_SYMBOL_GPL vmlinux 0x3a6c9bd2 regulator_bulk_free -EXPORT_SYMBOL_GPL vmlinux 0x3a7bf3a0 subsys_dev_iter_next -EXPORT_SYMBOL_GPL vmlinux 0x3a84c41c tcp_is_ulp_esp -EXPORT_SYMBOL_GPL vmlinux 0x3a8cf4bf __traceiter_neigh_event_send_dead -EXPORT_SYMBOL_GPL vmlinux 0x3a8ddc74 spi_mem_dtr_supports_op +EXPORT_SYMBOL_GPL vmlinux 0x3a6fb9d6 dev_attr_ncq_prio_supported +EXPORT_SYMBOL_GPL vmlinux 0x3a71b747 __rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3a7cf225 fsnotify_find_mark +EXPORT_SYMBOL_GPL vmlinux 0x3a7f9293 lwtunnel_fill_encap +EXPORT_SYMBOL_GPL vmlinux 0x3a84b144 hisi_clk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x3a9799f2 blk_mq_start_stopped_hw_queue EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial -EXPORT_SYMBOL_GPL vmlinux 0x3aa247be __traceiter_neigh_event_send_done -EXPORT_SYMBOL_GPL vmlinux 0x3acc19de spi_bus_lock +EXPORT_SYMBOL_GPL vmlinux 0x3aa2d145 vfs_setxattr +EXPORT_SYMBOL_GPL vmlinux 0x3ab544f6 ata_bmdma_irq_clear EXPORT_SYMBOL_GPL vmlinux 0x3acdf325 twl4030_audio_enable_resource -EXPORT_SYMBOL_GPL vmlinux 0x3afac73f spi_res_alloc -EXPORT_SYMBOL_GPL vmlinux 0x3b0610d2 regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x3ad1509c pci_epc_mem_init +EXPORT_SYMBOL_GPL vmlinux 0x3ad869ed rio_dev_put +EXPORT_SYMBOL_GPL vmlinux 0x3ae89424 thp_get_unmapped_area +EXPORT_SYMBOL_GPL vmlinux 0x3b0119ee input_device_enabled EXPORT_SYMBOL_GPL vmlinux 0x3b0714f7 fanout_mutex -EXPORT_SYMBOL_GPL vmlinux 0x3b20f226 of_reserved_mem_device_init_by_name -EXPORT_SYMBOL_GPL vmlinux 0x3b240b56 mtd_read -EXPORT_SYMBOL_GPL vmlinux 0x3b3be8e2 virtio_device_freeze -EXPORT_SYMBOL_GPL vmlinux 0x3b46c007 devlink_sb_register -EXPORT_SYMBOL_GPL vmlinux 0x3b48756c vma_kernel_pagesize +EXPORT_SYMBOL_GPL vmlinux 0x3b0f800c pci_epf_free_space +EXPORT_SYMBOL_GPL vmlinux 0x3b2475f6 snd_soc_jack_add_gpios +EXPORT_SYMBOL_GPL vmlinux 0x3b24dcaf devm_regmap_init_vexpress_config +EXPORT_SYMBOL_GPL vmlinux 0x3b302430 inverse_translate EXPORT_SYMBOL_GPL vmlinux 0x3b4c240a display_timings_release -EXPORT_SYMBOL_GPL vmlinux 0x3b509c0c task_cputime_adjusted -EXPORT_SYMBOL_GPL vmlinux 0x3b6733c7 pci_epc_add_epf -EXPORT_SYMBOL_GPL vmlinux 0x3b767571 devm_gpiod_get -EXPORT_SYMBOL_GPL vmlinux 0x3b8624f3 aead_init_geniv -EXPORT_SYMBOL_GPL vmlinux 0x3b8c8b44 devm_extcon_dev_allocate -EXPORT_SYMBOL_GPL vmlinux 0x3bb361ae fat_truncate_time -EXPORT_SYMBOL_GPL vmlinux 0x3bbdd34d __auxiliary_device_add -EXPORT_SYMBOL_GPL vmlinux 0x3bc2890a fat_getattr -EXPORT_SYMBOL_GPL vmlinux 0x3bcb767e tpm2_get_tpm_pt -EXPORT_SYMBOL_GPL vmlinux 0x3bcfcc27 __devm_regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0x3b5d442b subsys_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3b72bd63 rio_mport_send_doorbell +EXPORT_SYMBOL_GPL vmlinux 0x3b732b8e __skb_get_hash_symmetric +EXPORT_SYMBOL_GPL vmlinux 0x3b78e54e tps6586x_write +EXPORT_SYMBOL_GPL vmlinux 0x3b7ba0e5 usb_put_dev +EXPORT_SYMBOL_GPL vmlinux 0x3b7c052d dw_pcie_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x3b7c27a3 pci_epf_add_vepf +EXPORT_SYMBOL_GPL vmlinux 0x3b82c785 usb_sg_cancel +EXPORT_SYMBOL_GPL vmlinux 0x3b84b029 nd_blk_region_to_dimm +EXPORT_SYMBOL_GPL vmlinux 0x3b89941c inet_csk_route_child_sock +EXPORT_SYMBOL_GPL vmlinux 0x3bb5e4fa devlink_resource_occ_get_register +EXPORT_SYMBOL_GPL vmlinux 0x3bc3b4d0 tpm_chip_stop +EXPORT_SYMBOL_GPL vmlinux 0x3bc4dc05 debugfs_create_size_t +EXPORT_SYMBOL_GPL vmlinux 0x3bc50b04 tcp_cong_avoid_ai +EXPORT_SYMBOL_GPL vmlinux 0x3bd4195e aead_exit_geniv EXPORT_SYMBOL_GPL vmlinux 0x3bdb5d28 alg_test +EXPORT_SYMBOL_GPL vmlinux 0x3bdfe900 rtc_set_alarm +EXPORT_SYMBOL_GPL vmlinux 0x3be47864 devfreq_get_devfreq_by_node +EXPORT_SYMBOL_GPL vmlinux 0x3be61eda devm_kasprintf +EXPORT_SYMBOL_GPL vmlinux 0x3be86b22 pm_runtime_autosuspend_expiration EXPORT_SYMBOL_GPL vmlinux 0x3bf17755 mpi_read_buffer -EXPORT_SYMBOL_GPL vmlinux 0x3bf21f04 get_user_pages_fast_only -EXPORT_SYMBOL_GPL vmlinux 0x3bf62505 dm_suspended -EXPORT_SYMBOL_GPL vmlinux 0x3c012bf2 device_initialize -EXPORT_SYMBOL_GPL vmlinux 0x3c09c5f4 usb_get_role_switch_default_mode -EXPORT_SYMBOL_GPL vmlinux 0x3c1297bc blk_mq_queue_inflight -EXPORT_SYMBOL_GPL vmlinux 0x3c1596d3 trace_array_get_by_name -EXPORT_SYMBOL_GPL vmlinux 0x3c17f210 fuse_sync_release +EXPORT_SYMBOL_GPL vmlinux 0x3bfe4ae9 virtqueue_get_avail_addr +EXPORT_SYMBOL_GPL vmlinux 0x3c106bbc skcipher_walk_async EXPORT_SYMBOL_GPL vmlinux 0x3c1c3725 rcu_fwd_progress_check -EXPORT_SYMBOL_GPL vmlinux 0x3c1f918b irq_chip_get_parent_state -EXPORT_SYMBOL_GPL vmlinux 0x3c25774a dev_pm_opp_get_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0x3c202dbc spi_slave_abort EXPORT_SYMBOL_GPL vmlinux 0x3c2b68f7 of_changeset_apply -EXPORT_SYMBOL_GPL vmlinux 0x3c3064f9 iommu_page_response EXPORT_SYMBOL_GPL vmlinux 0x3c3c85d8 __SCK__tp_func_kfree_skb -EXPORT_SYMBOL_GPL vmlinux 0x3c413b32 usb_gen_phy_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x3c48712a devm_rtc_allocate_device -EXPORT_SYMBOL_GPL vmlinux 0x3c58cdfd securityfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0x3c4d13ef tps6586x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x3c506707 cpufreq_driver_resolve_freq EXPORT_SYMBOL_GPL vmlinux 0x3c681dc4 ring_buffer_record_disable +EXPORT_SYMBOL_GPL vmlinux 0x3c6f2eab udp6_lib_lookup EXPORT_SYMBOL_GPL vmlinux 0x3c72724e usb_wait_anchor_empty_timeout -EXPORT_SYMBOL_GPL vmlinux 0x3c7ef489 security_file_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x3c930faa irq_domain_disconnect_hierarchy -EXPORT_SYMBOL_GPL vmlinux 0x3ca9e4f4 mnt_want_write -EXPORT_SYMBOL_GPL vmlinux 0x3caef3a9 devm_regmap_field_bulk_free -EXPORT_SYMBOL_GPL vmlinux 0x3ccd728c pci_add_dynid -EXPORT_SYMBOL_GPL vmlinux 0x3ccff7f8 md_bitmap_load +EXPORT_SYMBOL_GPL vmlinux 0x3c7d82d3 devlink_resource_size_get +EXPORT_SYMBOL_GPL vmlinux 0x3c833309 blk_queue_set_zoned +EXPORT_SYMBOL_GPL vmlinux 0x3c862c08 pinctrl_lookup_state +EXPORT_SYMBOL_GPL vmlinux 0x3c994edb __crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0x3c9a0fb9 blk_mq_sched_try_insert_merge +EXPORT_SYMBOL_GPL vmlinux 0x3c9d9e4b pci_d3cold_enable +EXPORT_SYMBOL_GPL vmlinux 0x3c9f6ec4 pm_genpd_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x3ca11b91 __mmc_send_status +EXPORT_SYMBOL_GPL vmlinux 0x3cc034f3 regulator_map_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x3cc5e64b i2c_generic_scl_recovery EXPORT_SYMBOL_GPL vmlinux 0x3cd06035 add_input_randomness EXPORT_SYMBOL_GPL vmlinux 0x3cd1b510 trace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0x3cd46400 ata_ehi_push_desc EXPORT_SYMBOL_GPL vmlinux 0x3ce650fd phy_10gbit_features -EXPORT_SYMBOL_GPL vmlinux 0x3d00efc4 __bio_add_page -EXPORT_SYMBOL_GPL vmlinux 0x3d064a1d serdev_controller_alloc -EXPORT_SYMBOL_GPL vmlinux 0x3d0679f5 find_get_pid -EXPORT_SYMBOL_GPL vmlinux 0x3d0f1104 ahci_start_fis_rx -EXPORT_SYMBOL_GPL vmlinux 0x3d23857d cros_ec_check_features -EXPORT_SYMBOL_GPL vmlinux 0x3d2aa9fa pci_ioremap_wc_bar -EXPORT_SYMBOL_GPL vmlinux 0x3d2ab359 regmap_irq_get_domain +EXPORT_SYMBOL_GPL vmlinux 0x3cf7068f pci_user_read_config_byte +EXPORT_SYMBOL_GPL vmlinux 0x3d053669 mpc8xxx_spi_rx_buf_u16 +EXPORT_SYMBOL_GPL vmlinux 0x3d090105 genphy_c45_read_status +EXPORT_SYMBOL_GPL vmlinux 0x3d0a87b2 ahci_platform_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x3d10869c usb_get_hcd +EXPORT_SYMBOL_GPL vmlinux 0x3d327fce snd_soc_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x3d361d26 __pm_runtime_use_autosuspend EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end -EXPORT_SYMBOL_GPL vmlinux 0x3d449f82 snd_soc_dapm_init +EXPORT_SYMBOL_GPL vmlinux 0x3d3919f1 usb_choose_configuration +EXPORT_SYMBOL_GPL vmlinux 0x3d488c04 regmap_raw_write EXPORT_SYMBOL_GPL vmlinux 0x3d510a7b rcu_jiffies_till_stall_check -EXPORT_SYMBOL_GPL vmlinux 0x3d53e98f dev_queue_xmit_nit -EXPORT_SYMBOL_GPL vmlinux 0x3d61c387 ehci_hub_control -EXPORT_SYMBOL_GPL vmlinux 0x3d81eab3 usb_get_dr_mode +EXPORT_SYMBOL_GPL vmlinux 0x3d5a4407 fat_fill_super +EXPORT_SYMBOL_GPL vmlinux 0x3d5d7b52 snd_soc_dapm_weak_routes +EXPORT_SYMBOL_GPL vmlinux 0x3d6080fd scsi_host_busy_iter +EXPORT_SYMBOL_GPL vmlinux 0x3d7c8d59 fib_rule_matchall EXPORT_SYMBOL_GPL vmlinux 0x3d866e05 __SCK__tp_func_block_rq_insert +EXPORT_SYMBOL_GPL vmlinux 0x3d89c0bd debugfs_attr_write EXPORT_SYMBOL_GPL vmlinux 0x3d9bbf75 wwan_port_txon -EXPORT_SYMBOL_GPL vmlinux 0x3d9c053a nvmem_cell_read_variable_le_u64 EXPORT_SYMBOL_GPL vmlinux 0x3da61ee9 pkcs7_validate_trust -EXPORT_SYMBOL_GPL vmlinux 0x3db2aa25 setfl -EXPORT_SYMBOL_GPL vmlinux 0x3db3d041 fb_deferred_io_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x3da643e0 invalidate_inode_pages2_range +EXPORT_SYMBOL_GPL vmlinux 0x3db381be edac_device_free_ctl_info EXPORT_SYMBOL_GPL vmlinux 0x3db48a49 __tracepoint_kfree_skb -EXPORT_SYMBOL_GPL vmlinux 0x3dc94e9b efivar_entry_remove -EXPORT_SYMBOL_GPL vmlinux 0x3dd49ad0 __page_mapcount -EXPORT_SYMBOL_GPL vmlinux 0x3de65adc snd_soc_link_compr_set_params +EXPORT_SYMBOL_GPL vmlinux 0x3dc0b796 crypto_unregister_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x3de8762a mtd_unlock EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final -EXPORT_SYMBOL_GPL vmlinux 0x3df96a9f regulator_get_voltage_sel_regmap -EXPORT_SYMBOL_GPL vmlinux 0x3e0ef686 ipv4_sk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x3e18966b rio_request_mport_dma -EXPORT_SYMBOL_GPL vmlinux 0x3e1a94ba pinctrl_utils_add_map_configs -EXPORT_SYMBOL_GPL vmlinux 0x3e2458a7 nand_prog_page_begin_op -EXPORT_SYMBOL_GPL vmlinux 0x3e25c000 fuse_free_conn +EXPORT_SYMBOL_GPL vmlinux 0x3dedfc2b dma_map_sgtable +EXPORT_SYMBOL_GPL vmlinux 0x3df76318 fat_build_inode +EXPORT_SYMBOL_GPL vmlinux 0x3df7fbf4 usb_hcd_setup_local_mem +EXPORT_SYMBOL_GPL vmlinux 0x3e11b55f pm_generic_restore +EXPORT_SYMBOL_GPL vmlinux 0x3e1256dc class_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3e251b77 __nvdimm_create EXPORT_SYMBOL_GPL vmlinux 0x3e31d9c3 net_prio_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x3e3f40c7 vp_modern_queue_vector +EXPORT_SYMBOL_GPL vmlinux 0x3e41f987 bus_remove_file EXPORT_SYMBOL_GPL vmlinux 0x3e4f36f7 tracepoint_probe_register_prio -EXPORT_SYMBOL_GPL vmlinux 0x3e5fec2f pci_probe_reset_slot -EXPORT_SYMBOL_GPL vmlinux 0x3e63929e sysfs_update_group +EXPORT_SYMBOL_GPL vmlinux 0x3e56dbfe spi_controller_dma_unmap_mem_op_data +EXPORT_SYMBOL_GPL vmlinux 0x3e5fef9e fat_remove_entries +EXPORT_SYMBOL_GPL vmlinux 0x3e702186 smpboot_unregister_percpu_thread EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer -EXPORT_SYMBOL_GPL vmlinux 0x3e8768d5 inet_csk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x3e9649c6 i2c_dw_adjust_bus_speed -EXPORT_SYMBOL_GPL vmlinux 0x3e972467 rio_enable_rx_tx_port -EXPORT_SYMBOL_GPL vmlinux 0x3e9727b2 crypto_register_alg -EXPORT_SYMBOL_GPL vmlinux 0x3eafff00 sdio_get_host_pm_caps -EXPORT_SYMBOL_GPL vmlinux 0x3ebb20d5 sdhci_reset_tuning -EXPORT_SYMBOL_GPL vmlinux 0x3ebdac72 bus_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x3e7eea0f of_pwm_xlate_with_flags +EXPORT_SYMBOL_GPL vmlinux 0x3ec38e4a devm_nvmem_cell_get EXPORT_SYMBOL_GPL vmlinux 0x3ec40239 idr_alloc_u32 -EXPORT_SYMBOL_GPL vmlinux 0x3ec7bda8 da903x_writes -EXPORT_SYMBOL_GPL vmlinux 0x3ee49a7c device_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x3eca0a99 usb_phy_set_event +EXPORT_SYMBOL_GPL vmlinux 0x3ed607ea nand_ecc_choose_conf EXPORT_SYMBOL_GPL vmlinux 0x3ef051c8 crypto_inc -EXPORT_SYMBOL_GPL vmlinux 0x3ef43da2 __udp_enqueue_schedule_skb -EXPORT_SYMBOL_GPL vmlinux 0x3ef9313c led_set_brightness_sync -EXPORT_SYMBOL_GPL vmlinux 0x3efa916a power_supply_get_property +EXPORT_SYMBOL_GPL vmlinux 0x3efafb6c bus_create_file EXPORT_SYMBOL_GPL vmlinux 0x3efd1889 dax_direct_access +EXPORT_SYMBOL_GPL vmlinux 0x3f03616c led_stop_software_blink EXPORT_SYMBOL_GPL vmlinux 0x3f060887 __ioread32_copy -EXPORT_SYMBOL_GPL vmlinux 0x3f0653b1 perf_event_refresh -EXPORT_SYMBOL_GPL vmlinux 0x3f0b5606 snd_soc_component_compr_pointer -EXPORT_SYMBOL_GPL vmlinux 0x3f1d0986 ahci_handle_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x3f13a0b0 gpiod_set_value EXPORT_SYMBOL_GPL vmlinux 0x3f2092e3 fl6_update_dst -EXPORT_SYMBOL_GPL vmlinux 0x3f28a88d regulator_bulk_disable -EXPORT_SYMBOL_GPL vmlinux 0x3f3b089f of_fdt_unflatten_tree +EXPORT_SYMBOL_GPL vmlinux 0x3f296b6a fb_deferred_io_open +EXPORT_SYMBOL_GPL vmlinux 0x3f30889c fuse_do_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x3f3205c8 iomap_dio_iopoll +EXPORT_SYMBOL_GPL vmlinux 0x3f357ecf irq_create_mapping_affinity +EXPORT_SYMBOL_GPL vmlinux 0x3f3585c2 crypto_grab_shash EXPORT_SYMBOL_GPL vmlinux 0x3f491f49 reset_control_bulk_reset -EXPORT_SYMBOL_GPL vmlinux 0x3f4b6d7d phy_pm_runtime_get -EXPORT_SYMBOL_GPL vmlinux 0x3f60e489 irq_chip_mask_ack_parent -EXPORT_SYMBOL_GPL vmlinux 0x3f809672 snd_soc_component_compr_set_metadata +EXPORT_SYMBOL_GPL vmlinux 0x3f524854 nl_table +EXPORT_SYMBOL_GPL vmlinux 0x3f65588d __clk_mux_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0x3f66628d crypto_unregister_acomp EXPORT_SYMBOL_GPL vmlinux 0x3f84bcd7 dax_alive +EXPORT_SYMBOL_GPL vmlinux 0x3f85421c dev_pm_opp_attach_genpd +EXPORT_SYMBOL_GPL vmlinux 0x3f85c9c3 tcf_dev_queue_xmit EXPORT_SYMBOL_GPL vmlinux 0x3f8ab72e devlink_fmsg_bool_put -EXPORT_SYMBOL_GPL vmlinux 0x3f9085ed __mmc_poll_for_busy -EXPORT_SYMBOL_GPL vmlinux 0x3f9d7677 ping_close -EXPORT_SYMBOL_GPL vmlinux 0x3fa51ef8 iommu_attach_group -EXPORT_SYMBOL_GPL vmlinux 0x3fb791fa snd_soc_component_update_bits -EXPORT_SYMBOL_GPL vmlinux 0x3fc35807 device_get_match_data -EXPORT_SYMBOL_GPL vmlinux 0x3fcc635a of_get_pci_domain_nr -EXPORT_SYMBOL_GPL vmlinux 0x3fde7e85 usb_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x3fa92468 synth_event_trace_end +EXPORT_SYMBOL_GPL vmlinux 0x3fbb1a4b iommu_set_fault_handler EXPORT_SYMBOL_GPL vmlinux 0x3fe6c346 devlink_fmsg_binary_pair_put +EXPORT_SYMBOL_GPL vmlinux 0x3fe8b658 sdhci_set_bus_width EXPORT_SYMBOL_GPL vmlinux 0x3fea029c hisi_clk_register_gate +EXPORT_SYMBOL_GPL vmlinux 0x3ff55882 snd_soc_dapm_disable_pin_unlocked EXPORT_SYMBOL_GPL vmlinux 0x3ff82085 public_key_signature_free -EXPORT_SYMBOL_GPL vmlinux 0x3ff91fdb bus_get_device_klist EXPORT_SYMBOL_GPL vmlinux 0x3ffdacf3 timerqueue_iterate_next -EXPORT_SYMBOL_GPL vmlinux 0x4023f783 platform_device_alloc -EXPORT_SYMBOL_GPL vmlinux 0x4033f870 ata_wait_after_reset -EXPORT_SYMBOL_GPL vmlinux 0x403ef846 xdp_do_redirect +EXPORT_SYMBOL_GPL vmlinux 0x400329fc mtd_wunit_to_pairing_info +EXPORT_SYMBOL_GPL vmlinux 0x4007ddd1 tps6586x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x4019d5e0 snd_soc_register_component +EXPORT_SYMBOL_GPL vmlinux 0x401e6a23 snd_pcm_fill_iec958_consumer +EXPORT_SYMBOL_GPL vmlinux 0x4032877a reset_simple_ops +EXPORT_SYMBOL_GPL vmlinux 0x403b4bec devlink_dpipe_entry_ctx_append EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one -EXPORT_SYMBOL_GPL vmlinux 0x40491674 snd_soc_new_compress -EXPORT_SYMBOL_GPL vmlinux 0x4059b372 edac_device_free_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0x4050e06f mtd_write_user_prot_reg +EXPORT_SYMBOL_GPL vmlinux 0x40519bb1 dapm_pinctrl_event +EXPORT_SYMBOL_GPL vmlinux 0x405e1594 pm_generic_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x4060ce9e mtd_write EXPORT_SYMBOL_GPL vmlinux 0x4065d168 pm_print_active_wakeup_sources EXPORT_SYMBOL_GPL vmlinux 0x406c4cb1 hrtimer_resolution -EXPORT_SYMBOL_GPL vmlinux 0x406e6069 snd_soc_dai_compr_get_params -EXPORT_SYMBOL_GPL vmlinux 0x406ff189 blk_mq_freeze_queue -EXPORT_SYMBOL_GPL vmlinux 0x4070efbc da903x_set_bits EXPORT_SYMBOL_GPL vmlinux 0x4071b517 out_of_line_wait_on_bit_timeout -EXPORT_SYMBOL_GPL vmlinux 0x407ab9e6 ip_build_and_send_pkt +EXPORT_SYMBOL_GPL vmlinux 0x407f8dfb evm_inode_init_security EXPORT_SYMBOL_GPL vmlinux 0x4082f95f pci_epc_get_first_free_bar -EXPORT_SYMBOL_GPL vmlinux 0x4094bbdb decrypt_blob +EXPORT_SYMBOL_GPL vmlinux 0x4099b7c6 irq_domain_free_irqs_parent EXPORT_SYMBOL_GPL vmlinux 0x4099f919 tun_ptr_free -EXPORT_SYMBOL_GPL vmlinux 0x40c23b76 pci_restore_msi_state +EXPORT_SYMBOL_GPL vmlinux 0x40a61c84 iommu_group_get EXPORT_SYMBOL_GPL vmlinux 0x40c3c8d1 __tracepoint_block_rq_insert -EXPORT_SYMBOL_GPL vmlinux 0x40c5a105 snd_soc_dai_set_channel_map -EXPORT_SYMBOL_GPL vmlinux 0x40da5d4e tpmm_chip_alloc -EXPORT_SYMBOL_GPL vmlinux 0x40db181d mbox_request_channel_byname -EXPORT_SYMBOL_GPL vmlinux 0x40ddd07a bpf_prog_sub -EXPORT_SYMBOL_GPL vmlinux 0x40e9ec25 rio_mport_get_feature +EXPORT_SYMBOL_GPL vmlinux 0x40cda407 snd_soc_unregister_card +EXPORT_SYMBOL_GPL vmlinux 0x40dcb937 kthread_unuse_mm +EXPORT_SYMBOL_GPL vmlinux 0x40e88233 spi_write_then_read 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 0x40fb0a29 bpf_map_inc_with_uref -EXPORT_SYMBOL_GPL vmlinux 0x41005602 nand_status_op +EXPORT_SYMBOL_GPL vmlinux 0x40fcfce1 get_device_system_crosststamp +EXPORT_SYMBOL_GPL vmlinux 0x40fecb14 sdhci_request_atomic EXPORT_SYMBOL_GPL vmlinux 0x4100a662 clk_get_scaled_duty_cycle -EXPORT_SYMBOL_GPL vmlinux 0x41021dae devlink_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4105e3a8 devres_release -EXPORT_SYMBOL_GPL vmlinux 0x41077579 usb_disable_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0x4122354b usb_autopm_get_interface_async EXPORT_SYMBOL_GPL vmlinux 0x412bc681 ring_buffer_empty_cpu +EXPORT_SYMBOL_GPL vmlinux 0x412d5351 platform_device_add EXPORT_SYMBOL_GPL vmlinux 0x412d54be ftrace_set_notrace -EXPORT_SYMBOL_GPL vmlinux 0x41407e5d mptcp_token_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x412e2533 dma_buf_put +EXPORT_SYMBOL_GPL vmlinux 0x4145127e iommu_group_add_device EXPORT_SYMBOL_GPL vmlinux 0x414538e6 synth_event_add_field_str EXPORT_SYMBOL_GPL vmlinux 0x414d119a videomode_from_timings +EXPORT_SYMBOL_GPL vmlinux 0x414d53a5 da9052_adc_manual_read EXPORT_SYMBOL_GPL vmlinux 0x415319c8 __kmap_local_pfn_prot -EXPORT_SYMBOL_GPL vmlinux 0x4154c23e tpm_is_tpm2 -EXPORT_SYMBOL_GPL vmlinux 0x41790239 wm8350_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0x4156ea0e of_pci_dma_range_parser_init +EXPORT_SYMBOL_GPL vmlinux 0x4158d142 nand_write_data_op +EXPORT_SYMBOL_GPL vmlinux 0x416076e9 regulator_set_voltage +EXPORT_SYMBOL_GPL vmlinux 0x417098da __hwspin_trylock +EXPORT_SYMBOL_GPL vmlinux 0x417cfd0b switchdev_handle_fdb_add_to_device EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval -EXPORT_SYMBOL_GPL vmlinux 0x41863983 pcie_port_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x4187d325 ip6_sk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x4192cf67 usb_wakeup_notification -EXPORT_SYMBOL_GPL vmlinux 0x4192dc2b dmi_kobj +EXPORT_SYMBOL_GPL vmlinux 0x41888ad2 cpts_unregister EXPORT_SYMBOL_GPL vmlinux 0x419e7efd sfp_module_stop -EXPORT_SYMBOL_GPL vmlinux 0x41a2cfe5 regulator_allow_bypass -EXPORT_SYMBOL_GPL vmlinux 0x41a6c5df mpc8xxx_spi_tx_buf_u16 -EXPORT_SYMBOL_GPL vmlinux 0x41b676bf ptp_classify_raw +EXPORT_SYMBOL_GPL vmlinux 0x41b721d3 mbox_controller_unregister EXPORT_SYMBOL_GPL vmlinux 0x41b9a6e6 bsg_unregister_queue -EXPORT_SYMBOL_GPL vmlinux 0x41bd7718 ata_pci_bmdma_init EXPORT_SYMBOL_GPL vmlinux 0x41c30f3a trace_seq_bprintf -EXPORT_SYMBOL_GPL vmlinux 0x41c314b7 firmware_request_nowarn -EXPORT_SYMBOL_GPL vmlinux 0x41c98c0f bd_unlink_disk_holder -EXPORT_SYMBOL_GPL vmlinux 0x41dab394 ata_link_online -EXPORT_SYMBOL_GPL vmlinux 0x41dd7585 crypto_unregister_alg +EXPORT_SYMBOL_GPL vmlinux 0x41c84e12 shmem_read_mapping_page_gfp +EXPORT_SYMBOL_GPL vmlinux 0x41cdd779 amba_apb_device_add +EXPORT_SYMBOL_GPL vmlinux 0x41d0ca7b sdhci_request +EXPORT_SYMBOL_GPL vmlinux 0x41d7d9b1 of_irq_find_parent +EXPORT_SYMBOL_GPL vmlinux 0x41ea0b46 pci_disable_pcie_error_reporting EXPORT_SYMBOL_GPL vmlinux 0x41ed3cec eventfd_ctx_remove_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0x41f1667a edac_mc_free -EXPORT_SYMBOL_GPL vmlinux 0x4200ea84 pinctrl_generic_get_group_name EXPORT_SYMBOL_GPL vmlinux 0x42041512 i2c_get_dma_safe_msg_buf EXPORT_SYMBOL_GPL vmlinux 0x4205ad24 cancel_work_sync EXPORT_SYMBOL_GPL vmlinux 0x420f3d01 nvmem_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x421067b5 __vfs_removexattr_locked -EXPORT_SYMBOL_GPL vmlinux 0x42284fd0 of_thermal_get_ntrips -EXPORT_SYMBOL_GPL vmlinux 0x42339fb3 iommu_map_sg -EXPORT_SYMBOL_GPL vmlinux 0x424001c4 of_prop_next_u32 -EXPORT_SYMBOL_GPL vmlinux 0x424ae747 extcon_get_state -EXPORT_SYMBOL_GPL vmlinux 0x425b382b devlink_port_attrs_pci_sf_set +EXPORT_SYMBOL_GPL vmlinux 0x4244e77d snd_soc_card_remove_dai_link +EXPORT_SYMBOL_GPL vmlinux 0x426122da iommu_device_link EXPORT_SYMBOL_GPL vmlinux 0x42635d55 pm_suspend_global_flags -EXPORT_SYMBOL_GPL vmlinux 0x42713178 iommu_device_unlink -EXPORT_SYMBOL_GPL vmlinux 0x4278dff0 devlink_param_unregister -EXPORT_SYMBOL_GPL vmlinux 0x428118f5 devm_regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x426b3603 posix_acl_default_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0x427e992e gov_attr_set_init EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active -EXPORT_SYMBOL_GPL vmlinux 0x42830d17 mmc_pwrseq_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4293f8b0 xfrm_dev_state_add -EXPORT_SYMBOL_GPL vmlinux 0x42a30475 pcie_flr -EXPORT_SYMBOL_GPL vmlinux 0x42ba9c2d fib_alias_hw_flags_set -EXPORT_SYMBOL_GPL vmlinux 0x42beff60 deregister_mtd_parser -EXPORT_SYMBOL_GPL vmlinux 0x42de53a2 sm501_misc_control -EXPORT_SYMBOL_GPL vmlinux 0x42e13d5d irq_domain_alloc_irqs_parent +EXPORT_SYMBOL_GPL vmlinux 0x4287b90e security_path_chmod +EXPORT_SYMBOL_GPL vmlinux 0x429a09ff gpiochip_generic_free +EXPORT_SYMBOL_GPL vmlinux 0x42ae07f3 mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0x42b41beb trace_event_reg +EXPORT_SYMBOL_GPL vmlinux 0x42d731a0 sm501_misc_control +EXPORT_SYMBOL_GPL vmlinux 0x42deeded cpufreq_freq_attr_scaling_boost_freqs +EXPORT_SYMBOL_GPL vmlinux 0x42e0cde9 pci_ioremap_wc_bar EXPORT_SYMBOL_GPL vmlinux 0x42e445f6 clk_mux_val_to_index +EXPORT_SYMBOL_GPL vmlinux 0x42e4ae8f wm831x_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x42e8a98e ethnl_cable_test_fault_length EXPORT_SYMBOL_GPL vmlinux 0x42e9d0da ring_buffer_unlock_commit EXPORT_SYMBOL_GPL vmlinux 0x42efb127 nvmem_del_cell_lookups +EXPORT_SYMBOL_GPL vmlinux 0x42f0a35a phy_speed_down EXPORT_SYMBOL_GPL vmlinux 0x42f728aa mctrl_gpio_get_outputs EXPORT_SYMBOL_GPL vmlinux 0x430d88ec __traceiter_arm_event -EXPORT_SYMBOL_GPL vmlinux 0x4311a6d0 dev_pm_enable_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0x4315f453 dev_pm_qos_update_request -EXPORT_SYMBOL_GPL vmlinux 0x431e7942 ping_bind -EXPORT_SYMBOL_GPL vmlinux 0x432ec774 __get_mtd_device -EXPORT_SYMBOL_GPL vmlinux 0x433db12f __devm_clk_hw_register_divider -EXPORT_SYMBOL_GPL vmlinux 0x434d132b devm_clk_hw_get_clk +EXPORT_SYMBOL_GPL vmlinux 0x431488f0 tty_get_pgrp +EXPORT_SYMBOL_GPL vmlinux 0x4321750e __clk_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0x43220317 ata_port_abort +EXPORT_SYMBOL_GPL vmlinux 0x4332202a mtk_pinconf_bias_get +EXPORT_SYMBOL_GPL vmlinux 0x43392f61 usb_del_gadget_udc +EXPORT_SYMBOL_GPL vmlinux 0x433e190c debugfs_create_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x43475f1c platform_get_irq +EXPORT_SYMBOL_GPL vmlinux 0x4361bcc9 em_pd_get +EXPORT_SYMBOL_GPL vmlinux 0x436ad7cb regmap_get_raw_read_max EXPORT_SYMBOL_GPL vmlinux 0x436d817f mpi_clear_bit -EXPORT_SYMBOL_GPL vmlinux 0x4377ed39 phy_modify_changed +EXPORT_SYMBOL_GPL vmlinux 0x437d8f2a sdhci_cleanup_host EXPORT_SYMBOL_GPL vmlinux 0x437eb1df ipv6_mod_enabled -EXPORT_SYMBOL_GPL vmlinux 0x43822941 ethnl_cable_test_fault_length -EXPORT_SYMBOL_GPL vmlinux 0x4382a824 pci_assign_unassigned_bridge_resources -EXPORT_SYMBOL_GPL vmlinux 0x4383f161 pci_ats_supported -EXPORT_SYMBOL_GPL vmlinux 0x4384e119 dev_attr_sw_activity -EXPORT_SYMBOL_GPL vmlinux 0x4385a02d fwnode_get_next_available_child_node -EXPORT_SYMBOL_GPL vmlinux 0x438932b2 usb_deregister -EXPORT_SYMBOL_GPL vmlinux 0x438cd0d0 mmu_interval_notifier_insert_locked +EXPORT_SYMBOL_GPL vmlinux 0x438295f3 security_inode_create +EXPORT_SYMBOL_GPL vmlinux 0x4391af75 devm_gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0x439fd975 crypto_hash_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x43a07872 nand_read_page_op +EXPORT_SYMBOL_GPL vmlinux 0x43a7fb49 xdp_rxq_info_unused EXPORT_SYMBOL_GPL vmlinux 0x43aa319e lease_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x43afb07f devlink_trap_policers_unregister -EXPORT_SYMBOL_GPL vmlinux 0x43d7a4f1 nf_checksum +EXPORT_SYMBOL_GPL vmlinux 0x43b2b824 sock_diag_register +EXPORT_SYMBOL_GPL vmlinux 0x43b94b4c devm_device_add_group +EXPORT_SYMBOL_GPL vmlinux 0x43cb9b81 ata_pci_remove_one EXPORT_SYMBOL_GPL vmlinux 0x43dfd261 __tracepoint_attach_device_to_domain -EXPORT_SYMBOL_GPL vmlinux 0x43e24588 clk_hw_get_name -EXPORT_SYMBOL_GPL vmlinux 0x43f1001d subsys_dev_iter_init EXPORT_SYMBOL_GPL vmlinux 0x43f56e82 ata_xfer_mode2shift EXPORT_SYMBOL_GPL vmlinux 0x43f81957 clk_round_rate EXPORT_SYMBOL_GPL vmlinux 0x43f92edd wait_for_initramfs +EXPORT_SYMBOL_GPL vmlinux 0x43f9961b devm_usb_get_phy EXPORT_SYMBOL_GPL vmlinux 0x4401e6c2 mpi_cmpabs -EXPORT_SYMBOL_GPL vmlinux 0x441362d8 component_add_typed -EXPORT_SYMBOL_GPL vmlinux 0x441cf0fe crypto_spawn_tfm2 -EXPORT_SYMBOL_GPL vmlinux 0x441eb8d1 dmaengine_unmap_put +EXPORT_SYMBOL_GPL vmlinux 0x4404b535 devlink_port_param_value_changed +EXPORT_SYMBOL_GPL vmlinux 0x440a1fd9 ata_link_online +EXPORT_SYMBOL_GPL vmlinux 0x44247889 usb_remove_phy +EXPORT_SYMBOL_GPL vmlinux 0x44265723 regulator_set_bypass_regmap EXPORT_SYMBOL_GPL vmlinux 0x442deaa9 poll_state_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x443575d2 snd_soc_get_volsw_range EXPORT_SYMBOL_GPL vmlinux 0x4439bcd2 __SCK__tp_func_neigh_event_send_dead +EXPORT_SYMBOL_GPL vmlinux 0x44482a1b pci_epf_alloc_space +EXPORT_SYMBOL_GPL vmlinux 0x444d4984 dev_coredumpsg EXPORT_SYMBOL_GPL vmlinux 0x444f1735 cpu_pm_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4456b526 __netpoll_cleanup EXPORT_SYMBOL_GPL vmlinux 0x445a09c0 nvmem_device_cell_write -EXPORT_SYMBOL_GPL vmlinux 0x4476b6a4 pwm_put -EXPORT_SYMBOL_GPL vmlinux 0x447a7862 screen_glyph +EXPORT_SYMBOL_GPL vmlinux 0x4463d531 gpiochip_is_requested +EXPORT_SYMBOL_GPL vmlinux 0x447b289b of_address_to_resource +EXPORT_SYMBOL_GPL vmlinux 0x447c2787 console_drivers EXPORT_SYMBOL_GPL vmlinux 0x4482569b scatterwalk_copychunks EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe -EXPORT_SYMBOL_GPL vmlinux 0x4488cc11 alloc_dax -EXPORT_SYMBOL_GPL vmlinux 0x448d9185 snd_soc_of_parse_card_name -EXPORT_SYMBOL_GPL vmlinux 0x449494b5 pci_epc_get_msi -EXPORT_SYMBOL_GPL vmlinux 0x4495af1c crypto_stats_get +EXPORT_SYMBOL_GPL vmlinux 0x448d5805 fixed_phy_register_with_gpiod +EXPORT_SYMBOL_GPL vmlinux 0x4490af62 clk_hw_get_flags +EXPORT_SYMBOL_GPL vmlinux 0x44a85908 blkcg_root EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout -EXPORT_SYMBOL_GPL vmlinux 0x44bc4e1a nfs42_ssc_unregister -EXPORT_SYMBOL_GPL vmlinux 0x44c0e45a scsi_ioctl_block_when_processing_errors -EXPORT_SYMBOL_GPL vmlinux 0x44c87091 anon_transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x44c7e28d mpc8xxx_spi_rx_buf_u32 EXPORT_SYMBOL_GPL vmlinux 0x44cf8cf0 blk_zone_cond_str -EXPORT_SYMBOL_GPL vmlinux 0x44fdea4c max8997_update_reg -EXPORT_SYMBOL_GPL vmlinux 0x450340a7 raw_seq_start +EXPORT_SYMBOL_GPL vmlinux 0x44ddd128 ata_sff_tf_load +EXPORT_SYMBOL_GPL vmlinux 0x44e33090 __traceiter_devlink_hwerr +EXPORT_SYMBOL_GPL vmlinux 0x44e86540 snd_soc_pm_ops EXPORT_SYMBOL_GPL vmlinux 0x4507f4a8 cpuhp_tasks_frozen -EXPORT_SYMBOL_GPL vmlinux 0x4518c764 nand_erase_op -EXPORT_SYMBOL_GPL vmlinux 0x451997c7 __traceiter_pelt_dl_tp -EXPORT_SYMBOL_GPL vmlinux 0x454fcdf5 snd_soc_dai_compr_set_metadata +EXPORT_SYMBOL_GPL vmlinux 0x4524987e ahci_platform_disable_regulators +EXPORT_SYMBOL_GPL vmlinux 0x45282b3b debugfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x45407570 phy_resolve_aneg_pause EXPORT_SYMBOL_GPL vmlinux 0x45558f56 clk_unregister_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0x455b141f dapm_pinctrl_event -EXPORT_SYMBOL_GPL vmlinux 0x455b2581 wbc_account_cgroup_owner -EXPORT_SYMBOL_GPL vmlinux 0x455fe9cf thermal_zone_of_sensor_unregister +EXPORT_SYMBOL_GPL vmlinux 0x456126e0 snd_dmaengine_pcm_close_release_chan EXPORT_SYMBOL_GPL vmlinux 0x4561f990 qcom_smem_state_unregister +EXPORT_SYMBOL_GPL vmlinux 0x456f29c3 mmc_regulator_set_vqmmc +EXPORT_SYMBOL_GPL vmlinux 0x456fca86 __page_file_mapping EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list -EXPORT_SYMBOL_GPL vmlinux 0x4595168c vfs_getxattr_alloc -EXPORT_SYMBOL_GPL vmlinux 0x459ab53d ata_sff_irq_on -EXPORT_SYMBOL_GPL vmlinux 0x45abcd6c rio_inb_pwrite_handler -EXPORT_SYMBOL_GPL vmlinux 0x45c1d10f fb_bl_default_curve -EXPORT_SYMBOL_GPL vmlinux 0x45ccf133 gpiod_toggle_active_low +EXPORT_SYMBOL_GPL vmlinux 0x458d0d38 snd_device_disconnect +EXPORT_SYMBOL_GPL vmlinux 0x45a61aaf led_set_brightness_nopm +EXPORT_SYMBOL_GPL vmlinux 0x45a74cb2 pci_epc_raise_irq +EXPORT_SYMBOL_GPL vmlinux 0x45a967df aead_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x45c9f223 sysfs_remove_group EXPORT_SYMBOL_GPL vmlinux 0x45d07221 region_intersects -EXPORT_SYMBOL_GPL vmlinux 0x45f0a0cd iommu_get_domain_for_dev -EXPORT_SYMBOL_GPL vmlinux 0x45f5a22c devlink_trap_groups_unregister +EXPORT_SYMBOL_GPL vmlinux 0x45d23a8c page_cache_ra_unbounded +EXPORT_SYMBOL_GPL vmlinux 0x45dad841 sdhci_cqe_irq +EXPORT_SYMBOL_GPL vmlinux 0x45dc9ded crypto_enqueue_request +EXPORT_SYMBOL_GPL vmlinux 0x45de0d59 sdhci_pltfm_unregister +EXPORT_SYMBOL_GPL vmlinux 0x45e10728 trace_array_init_printk +EXPORT_SYMBOL_GPL vmlinux 0x45e62df7 tracing_snapshot_cond_disable +EXPORT_SYMBOL_GPL vmlinux 0x45f3bd26 wakeup_sources_walk_next EXPORT_SYMBOL_GPL vmlinux 0x45ff8535 trace_seq_putc EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue -EXPORT_SYMBOL_GPL vmlinux 0x460b1b6a __fsnotify_inode_delete -EXPORT_SYMBOL_GPL vmlinux 0x460eed29 usb_mon_register -EXPORT_SYMBOL_GPL vmlinux 0x460eef27 dev_pm_opp_add -EXPORT_SYMBOL_GPL vmlinux 0x461d4b49 cookie_tcp_reqsk_alloc -EXPORT_SYMBOL_GPL vmlinux 0x462486e7 tracing_snapshot_cond_enable -EXPORT_SYMBOL_GPL vmlinux 0x46291812 mtk_pinconf_adv_drive_get_raw -EXPORT_SYMBOL_GPL vmlinux 0x462bbf96 pinctrl_select_default_state -EXPORT_SYMBOL_GPL vmlinux 0x4638b935 sysfs_merge_group -EXPORT_SYMBOL_GPL vmlinux 0x463ca967 do_splice_to -EXPORT_SYMBOL_GPL vmlinux 0x463cbda9 crypto_unregister_shashes -EXPORT_SYMBOL_GPL vmlinux 0x4640bc62 icc_nodes_remove -EXPORT_SYMBOL_GPL vmlinux 0x464201cb lp8788_read_byte -EXPORT_SYMBOL_GPL vmlinux 0x46455d76 nanddev_ecc_engine_init -EXPORT_SYMBOL_GPL vmlinux 0x46636b4c nvdimm_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x4613d097 rtnl_delete_link +EXPORT_SYMBOL_GPL vmlinux 0x4615375c nf_queue_nf_hook_drop +EXPORT_SYMBOL_GPL vmlinux 0x462c4a3a get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0x463e0f6b __of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0x464ae35f __ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0x4662185a badblocks_set EXPORT_SYMBOL_GPL vmlinux 0x466e5342 net_prio_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x467e5489 kick_process +EXPORT_SYMBOL_GPL vmlinux 0x468036ac crypto_register_templates EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x468e68a5 fscrypt_ioctl_add_key -EXPORT_SYMBOL_GPL vmlinux 0x469b9cd0 usb_gadget_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x46ba3622 snd_soc_dai_compr_get_metadata -EXPORT_SYMBOL_GPL vmlinux 0x46be1d5e tps65217_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x468ce29e rio_route_get_entry +EXPORT_SYMBOL_GPL vmlinux 0x4698723c pinctrl_select_default_state +EXPORT_SYMBOL_GPL vmlinux 0x46a24908 dummy_con +EXPORT_SYMBOL_GPL vmlinux 0x46b28f44 devlink_remote_reload_actions_performed +EXPORT_SYMBOL_GPL vmlinux 0x46b316e7 regmap_field_bulk_alloc EXPORT_SYMBOL_GPL vmlinux 0x46c06c19 klist_add_head -EXPORT_SYMBOL_GPL vmlinux 0x46c22265 mtk_pinconf_adv_drive_set_raw -EXPORT_SYMBOL_GPL vmlinux 0x46c44c15 ipv6_bpf_stub EXPORT_SYMBOL_GPL vmlinux 0x46c5be22 clk_multiplier_ops -EXPORT_SYMBOL_GPL vmlinux 0x46d7f16b xhci_suspend -EXPORT_SYMBOL_GPL vmlinux 0x46dd6e29 device_match_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x46e06cb6 phy_reset -EXPORT_SYMBOL_GPL vmlinux 0x46eab0fc snd_soc_add_component_controls +EXPORT_SYMBOL_GPL vmlinux 0x46ccd89f devm_nvmem_device_get +EXPORT_SYMBOL_GPL vmlinux 0x46d4d2f4 snd_soc_component_test_bits EXPORT_SYMBOL_GPL vmlinux 0x46f42be0 devlink_fmsg_u8_put -EXPORT_SYMBOL_GPL vmlinux 0x46f9857c rtc_update_irq_enable -EXPORT_SYMBOL_GPL vmlinux 0x47045c84 rtnl_af_unregister -EXPORT_SYMBOL_GPL vmlinux 0x47183d36 blk_queue_rq_timeout -EXPORT_SYMBOL_GPL vmlinux 0x4721db4b crypto_stats_kpp_compute_shared_secret +EXPORT_SYMBOL_GPL vmlinux 0x46f5d155 led_blink_set +EXPORT_SYMBOL_GPL vmlinux 0x46fcefe2 i2c_recover_bus +EXPORT_SYMBOL_GPL vmlinux 0x46fe038a __udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x470c0d06 i2c_add_numbered_adapter EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x4723df33 tty_init_termios +EXPORT_SYMBOL_GPL vmlinux 0x472e80ab list_lru_walk_one EXPORT_SYMBOL_GPL vmlinux 0x47317949 crypto_alg_sem -EXPORT_SYMBOL_GPL vmlinux 0x473ddfa6 virtqueue_get_vring -EXPORT_SYMBOL_GPL vmlinux 0x4746a7b4 ata_sas_port_alloc -EXPORT_SYMBOL_GPL vmlinux 0x474ac57a dev_pm_domain_start -EXPORT_SYMBOL_GPL vmlinux 0x47593f76 screen_glyph_unicode +EXPORT_SYMBOL_GPL vmlinux 0x47331517 tcp_abort +EXPORT_SYMBOL_GPL vmlinux 0x4736565a sched_trace_cfs_rq_avg +EXPORT_SYMBOL_GPL vmlinux 0x47371569 power_supply_get_by_phandle EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier -EXPORT_SYMBOL_GPL vmlinux 0x476c11d6 devm_nvdimm_memremap -EXPORT_SYMBOL_GPL vmlinux 0x476dfbf1 cpts_rx_timestamp -EXPORT_SYMBOL_GPL vmlinux 0x47749b18 request_firmware_direct +EXPORT_SYMBOL_GPL vmlinux 0x476253b3 devm_clk_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4778bb69 dma_get_required_mask +EXPORT_SYMBOL_GPL vmlinux 0x477e453f crypto_mod_put +EXPORT_SYMBOL_GPL vmlinux 0x4783046c pci_max_pasids +EXPORT_SYMBOL_GPL vmlinux 0x478315e9 devm_clk_notifier_register EXPORT_SYMBOL_GPL vmlinux 0x47884890 system_power_efficient_wq -EXPORT_SYMBOL_GPL vmlinux 0x478bb48c con_debug_enter +EXPORT_SYMBOL_GPL vmlinux 0x478cf6f3 css_next_descendant_pre EXPORT_SYMBOL_GPL vmlinux 0x478debf5 phy_10gbit_fec_features +EXPORT_SYMBOL_GPL vmlinux 0x478e6f22 pcie_flr EXPORT_SYMBOL_GPL vmlinux 0x478e81f8 tcp_orphan_count +EXPORT_SYMBOL_GPL vmlinux 0x479124af crypto_alloc_rng EXPORT_SYMBOL_GPL vmlinux 0x47925794 idr_find +EXPORT_SYMBOL_GPL vmlinux 0x47968942 __devm_spi_alloc_controller EXPORT_SYMBOL_GPL vmlinux 0x479f7d4b clk_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0x47a4dbe9 access_process_vm EXPORT_SYMBOL_GPL vmlinux 0x47aad3b9 have_governor_per_policy -EXPORT_SYMBOL_GPL vmlinux 0x47cc2362 sk_setup_caps +EXPORT_SYMBOL_GPL vmlinux 0x47b7e890 dev_pm_opp_disable +EXPORT_SYMBOL_GPL vmlinux 0x47bf69eb dev_pm_opp_detach_genpd +EXPORT_SYMBOL_GPL vmlinux 0x47c57b0b __dma_request_channel EXPORT_SYMBOL_GPL vmlinux 0x47de0dc7 clk_unregister_mux -EXPORT_SYMBOL_GPL vmlinux 0x47df0aaa thermal_zone_device_enable -EXPORT_SYMBOL_GPL vmlinux 0x47ed17bf init_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0x47ee8566 edac_pci_release_generic_ctl -EXPORT_SYMBOL_GPL vmlinux 0x47f03a4d pm_generic_freeze -EXPORT_SYMBOL_GPL vmlinux 0x47f306a7 devm_of_clk_add_hw_provider -EXPORT_SYMBOL_GPL vmlinux 0x47f39400 skb_mpls_dec_ttl -EXPORT_SYMBOL_GPL vmlinux 0x47f6950e ahci_platform_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x47fb52cd __devm_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x47e20f35 uart_set_options +EXPORT_SYMBOL_GPL vmlinux 0x47e89234 alloc_dax +EXPORT_SYMBOL_GPL vmlinux 0x47ed560d sk_detach_filter +EXPORT_SYMBOL_GPL vmlinux 0x47ff1376 pinconf_generic_dt_node_to_map EXPORT_SYMBOL_GPL vmlinux 0x48020c1c irq_get_percpu_devid_partition EXPORT_SYMBOL_GPL vmlinux 0x480305ca kmsg_dump_rewind -EXPORT_SYMBOL_GPL vmlinux 0x48084934 inet6_csk_xmit -EXPORT_SYMBOL_GPL vmlinux 0x481aa558 snd_soc_dapm_sync +EXPORT_SYMBOL_GPL vmlinux 0x4803f2c2 sdio_writesb +EXPORT_SYMBOL_GPL vmlinux 0x48098120 metadata_dst_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x480d328e tty_ldisc_deref +EXPORT_SYMBOL_GPL vmlinux 0x480ed737 cpufreq_dbs_governor_limits +EXPORT_SYMBOL_GPL vmlinux 0x481c2022 ehci_reset EXPORT_SYMBOL_GPL vmlinux 0x481f9b7d mpi_mulm -EXPORT_SYMBOL_GPL vmlinux 0x483c24ca cpufreq_generic_attr +EXPORT_SYMBOL_GPL vmlinux 0x483322c7 bpf_verifier_log_write +EXPORT_SYMBOL_GPL vmlinux 0x48458b75 mtk_hw_get_value +EXPORT_SYMBOL_GPL vmlinux 0x48462e58 iomap_truncate_page EXPORT_SYMBOL_GPL vmlinux 0x484779ef __i2c_board_lock -EXPORT_SYMBOL_GPL vmlinux 0x484da113 trace_event_buffer_lock_reserve -EXPORT_SYMBOL_GPL vmlinux 0x4850817e pci_sriov_set_totalvfs -EXPORT_SYMBOL_GPL vmlinux 0x4866e216 led_init_default_state_get -EXPORT_SYMBOL_GPL vmlinux 0x48683ff0 ata_pci_remove_one -EXPORT_SYMBOL_GPL vmlinux 0x486dd69e dm_table_set_type -EXPORT_SYMBOL_GPL vmlinux 0x48707a88 locks_release_private -EXPORT_SYMBOL_GPL vmlinux 0x4875af3b usb_clear_halt +EXPORT_SYMBOL_GPL vmlinux 0x48523852 bus_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x48635764 nand_soft_waitrdy +EXPORT_SYMBOL_GPL vmlinux 0x486dcf8f inet_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x48738cfd key_type_asymmetric EXPORT_SYMBOL_GPL vmlinux 0x487c0f32 pkcs7_verify -EXPORT_SYMBOL_GPL vmlinux 0x4892d515 policy_has_boost_freq -EXPORT_SYMBOL_GPL vmlinux 0x4892f064 spi_mem_default_supports_op +EXPORT_SYMBOL_GPL vmlinux 0x487e933b devm_led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x48840f29 pci_epc_multi_mem_init +EXPORT_SYMBOL_GPL vmlinux 0x488a4dcd percpu_free_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x48910203 ping_init_sock EXPORT_SYMBOL_GPL vmlinux 0x48a3d20b mctrl_gpio_get +EXPORT_SYMBOL_GPL vmlinux 0x48a7c2be blk_abort_request +EXPORT_SYMBOL_GPL vmlinux 0x48a8a070 rio_route_clr_table EXPORT_SYMBOL_GPL vmlinux 0x48ac05d6 __tracepoint_pelt_irq_tp -EXPORT_SYMBOL_GPL vmlinux 0x48ac1767 inode_congested -EXPORT_SYMBOL_GPL vmlinux 0x48b48a0a wm8350_read_auxadc -EXPORT_SYMBOL_GPL vmlinux 0x48bf62d7 virtqueue_enable_cb_delayed +EXPORT_SYMBOL_GPL vmlinux 0x48afa7d8 snd_soc_get_dai_name +EXPORT_SYMBOL_GPL vmlinux 0x48bce661 rio_add_device +EXPORT_SYMBOL_GPL vmlinux 0x48be30ca page_cache_sync_ra EXPORT_SYMBOL_GPL vmlinux 0x48c32847 __SCK__tp_func_sched_util_est_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x48d9df25 pci_epc_write_header +EXPORT_SYMBOL_GPL vmlinux 0x48dd4d18 arm_iommu_detach_device EXPORT_SYMBOL_GPL vmlinux 0x48e7ab6a rhashtable_destroy -EXPORT_SYMBOL_GPL vmlinux 0x48ee84ed ata_pci_bmdma_prepare_host -EXPORT_SYMBOL_GPL vmlinux 0x490f3cfa hrtimer_sleeper_start_expires -EXPORT_SYMBOL_GPL vmlinux 0x49163e7d of_genpd_remove_subdomain +EXPORT_SYMBOL_GPL vmlinux 0x48e82540 pin_user_pages_fast_only +EXPORT_SYMBOL_GPL vmlinux 0x48ebca50 bpf_map_inc +EXPORT_SYMBOL_GPL vmlinux 0x4906cbd4 ipv6_recv_error +EXPORT_SYMBOL_GPL vmlinux 0x49071b34 crypto_lookup_template +EXPORT_SYMBOL_GPL vmlinux 0x490e9426 ahci_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x492c2d37 perf_trace_run_bpf_submit EXPORT_SYMBOL_GPL vmlinux 0x49326ef6 irq_set_affinity_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4934a1ab fuse_free_conn EXPORT_SYMBOL_GPL vmlinux 0x4934bdd0 crypto_check_attr_type -EXPORT_SYMBOL_GPL vmlinux 0x4937aa3b bpf_trace_run2 -EXPORT_SYMBOL_GPL vmlinux 0x493ac335 tps6586x_get_version -EXPORT_SYMBOL_GPL vmlinux 0x4944a5f6 led_sysfs_disable -EXPORT_SYMBOL_GPL vmlinux 0x49482b94 iptunnel_xmit -EXPORT_SYMBOL_GPL vmlinux 0x495190ad nvdimm_clear_poison -EXPORT_SYMBOL_GPL vmlinux 0x4955940d wait_on_page_writeback -EXPORT_SYMBOL_GPL vmlinux 0x495a4c5f __traceiter_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0x493f9a5c i2c_of_match_device +EXPORT_SYMBOL_GPL vmlinux 0x494e2098 rio_request_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x4959164c crypto_alloc_base +EXPORT_SYMBOL_GPL vmlinux 0x495e3a6f mctrl_gpio_free +EXPORT_SYMBOL_GPL vmlinux 0x495efe8f mpc8xxx_spi_rx_buf_u8 EXPORT_SYMBOL_GPL vmlinux 0x49608959 migrate_disable -EXPORT_SYMBOL_GPL vmlinux 0x496542bc gpiod_set_array_value -EXPORT_SYMBOL_GPL vmlinux 0x49678f1a __fscrypt_prepare_lookup -EXPORT_SYMBOL_GPL vmlinux 0x497ccc9b dma_async_device_channel_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4960ee10 debugfs_create_regset32 +EXPORT_SYMBOL_GPL vmlinux 0x497ce7e8 devm_reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x4980c19c sysfs_remove_groups EXPORT_SYMBOL_GPL vmlinux 0x49830f0e __tracepoint_neigh_update +EXPORT_SYMBOL_GPL vmlinux 0x498af119 bus_unregister EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue -EXPORT_SYMBOL_GPL vmlinux 0x49920640 unix_peer_get -EXPORT_SYMBOL_GPL vmlinux 0x49987815 rio_unregister_scan -EXPORT_SYMBOL_GPL vmlinux 0x499bff80 irq_domain_free_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x49bf8ab5 skb_zerocopy -EXPORT_SYMBOL_GPL vmlinux 0x49c36500 netdev_walk_all_lower_dev_rcu +EXPORT_SYMBOL_GPL vmlinux 0x4996e921 dma_buf_pin +EXPORT_SYMBOL_GPL vmlinux 0x49b0fae6 clk_register_divider_table +EXPORT_SYMBOL_GPL vmlinux 0x49b47a89 power_supply_set_battery_charged +EXPORT_SYMBOL_GPL vmlinux 0x49bcc2bd mtk_pinconf_adv_drive_get EXPORT_SYMBOL_GPL vmlinux 0x49cd25ed alloc_workqueue -EXPORT_SYMBOL_GPL vmlinux 0x49d22e00 regulator_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x49d326e8 kstrdup_quotable_file -EXPORT_SYMBOL_GPL vmlinux 0x49d44418 led_blink_set_oneshot -EXPORT_SYMBOL_GPL vmlinux 0x49d723cb irq_find_matching_fwspec EXPORT_SYMBOL_GPL vmlinux 0x49d96707 freq_qos_remove_request EXPORT_SYMBOL_GPL vmlinux 0x49d9f030 usb_ep_fifo_status -EXPORT_SYMBOL_GPL vmlinux 0x49e93b85 pci_d3cold_enable EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0x4a0fa725 handle_fasteoi_irq -EXPORT_SYMBOL_GPL vmlinux 0x4a108bb2 otg_ulpi_create +EXPORT_SYMBOL_GPL vmlinux 0x49ee6f26 tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x49f3518d tps6586x_update +EXPORT_SYMBOL_GPL vmlinux 0x49f5382d of_irq_to_resource +EXPORT_SYMBOL_GPL vmlinux 0x49f59237 of_thermal_get_ntrips +EXPORT_SYMBOL_GPL vmlinux 0x49fe22db ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0x4a11ef0a nanddev_bbt_update +EXPORT_SYMBOL_GPL vmlinux 0x4a172964 bpf_trace_run7 EXPORT_SYMBOL_GPL vmlinux 0x4a17ed66 sysrq_mask -EXPORT_SYMBOL_GPL vmlinux 0x4a248860 platform_irq_count -EXPORT_SYMBOL_GPL vmlinux 0x4a258c37 usb_find_interface -EXPORT_SYMBOL_GPL vmlinux 0x4a2edd1e __strp_unpause -EXPORT_SYMBOL_GPL vmlinux 0x4a3e0079 __phy_modify -EXPORT_SYMBOL_GPL vmlinux 0x4a3e1dca class_find_device -EXPORT_SYMBOL_GPL vmlinux 0x4a5b92f8 serial8250_em485_config -EXPORT_SYMBOL_GPL vmlinux 0x4a6ba51e clone_private_mount -EXPORT_SYMBOL_GPL vmlinux 0x4a756958 of_usb_host_tpl_support -EXPORT_SYMBOL_GPL vmlinux 0x4a86da52 percpu_free_rwsem -EXPORT_SYMBOL_GPL vmlinux 0x4a945bb8 of_dma_request_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0x4a9579fc device_add_software_node -EXPORT_SYMBOL_GPL vmlinux 0x4aa84a1f dapm_kcontrol_get_value -EXPORT_SYMBOL_GPL vmlinux 0x4ab569ae fixed_phy_change_carrier -EXPORT_SYMBOL_GPL vmlinux 0x4ace1cca usb_control_msg_send -EXPORT_SYMBOL_GPL vmlinux 0x4ad72b8d ata_sas_port_start -EXPORT_SYMBOL_GPL vmlinux 0x4adc1910 genphy_c45_pma_suspend -EXPORT_SYMBOL_GPL vmlinux 0x4aec0d6b elv_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4b1bd729 dw_pcie_wait_for_link -EXPORT_SYMBOL_GPL vmlinux 0x4b1fddab dm_copy_name_and_uuid -EXPORT_SYMBOL_GPL vmlinux 0x4b31958f cdrom_multisession -EXPORT_SYMBOL_GPL vmlinux 0x4b3c3d79 snd_soc_dapm_enable_pin_unlocked -EXPORT_SYMBOL_GPL vmlinux 0x4b4951b4 tty_port_default_client_ops +EXPORT_SYMBOL_GPL vmlinux 0x4a183262 usb_gadget_unmap_request_by_dev +EXPORT_SYMBOL_GPL vmlinux 0x4a1df771 __devm_of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0x4a217e21 wait_on_page_writeback_killable +EXPORT_SYMBOL_GPL vmlinux 0x4a241e7e governor_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0x4a2a38d2 snd_soc_of_get_dai_link_codecs +EXPORT_SYMBOL_GPL vmlinux 0x4a3260a4 sk_msg_zerocopy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0x4a41a67f apply_to_existing_page_range +EXPORT_SYMBOL_GPL vmlinux 0x4a45013a strp_check_rcv +EXPORT_SYMBOL_GPL vmlinux 0x4a478cd3 sdio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x4a527164 fuse_conn_destroy +EXPORT_SYMBOL_GPL vmlinux 0x4a73f2e3 xfrm_output +EXPORT_SYMBOL_GPL vmlinux 0x4a826e35 usb_wakeup_notification +EXPORT_SYMBOL_GPL vmlinux 0x4a8ec6ee da903x_read +EXPORT_SYMBOL_GPL vmlinux 0x4aaadfa7 iommu_attach_group +EXPORT_SYMBOL_GPL vmlinux 0x4ab44522 __blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0x4ad131d7 blk_mq_freeze_queue_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x4adecb67 clk_register +EXPORT_SYMBOL_GPL vmlinux 0x4ae727ea regulator_get_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0x4aeb771d xdp_master_redirect +EXPORT_SYMBOL_GPL vmlinux 0x4aec42b1 dev_pm_opp_remove_table +EXPORT_SYMBOL_GPL vmlinux 0x4af24c76 cpts_misc_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x4afb1c3e palmas_ext_control_req_config +EXPORT_SYMBOL_GPL vmlinux 0x4b20e5ad iommu_fwspec_free +EXPORT_SYMBOL_GPL vmlinux 0x4b30e53e dev_pm_opp_init_cpufreq_table +EXPORT_SYMBOL_GPL vmlinux 0x4b3fb7aa pinctrl_select_state EXPORT_SYMBOL_GPL vmlinux 0x4b51f74c ata_xfer_mode2mask +EXPORT_SYMBOL_GPL vmlinux 0x4b6205f6 pinmux_generic_remove_function EXPORT_SYMBOL_GPL vmlinux 0x4b72009e dynamic_debug_exec_queries -EXPORT_SYMBOL_GPL vmlinux 0x4b730e4f sdhci_setup_host -EXPORT_SYMBOL_GPL vmlinux 0x4b814aed mmu_interval_read_begin -EXPORT_SYMBOL_GPL vmlinux 0x4b8762c6 gpiochip_disable_irq -EXPORT_SYMBOL_GPL vmlinux 0x4b9821bd usb_gadget_frame_number -EXPORT_SYMBOL_GPL vmlinux 0x4ba4f849 dst_blackhole_redirect -EXPORT_SYMBOL_GPL vmlinux 0x4ba8127b powercap_register_zone +EXPORT_SYMBOL_GPL vmlinux 0x4b972137 pinmux_generic_get_function_name +EXPORT_SYMBOL_GPL vmlinux 0x4b98db36 thermal_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x4ba1d279 dma_async_device_channel_register +EXPORT_SYMBOL_GPL vmlinux 0x4baa7a67 rio_map_outb_region +EXPORT_SYMBOL_GPL vmlinux 0x4bb182b0 regmap_get_raw_write_max EXPORT_SYMBOL_GPL vmlinux 0x4bbe2cd1 cpuidle_register_device -EXPORT_SYMBOL_GPL vmlinux 0x4bc11cdf snd_soc_dai_set_bclk_ratio -EXPORT_SYMBOL_GPL vmlinux 0x4bf48967 stmpe_disable -EXPORT_SYMBOL_GPL vmlinux 0x4c21362f usb_register_device_driver -EXPORT_SYMBOL_GPL vmlinux 0x4c28d6af crypto_unregister_template -EXPORT_SYMBOL_GPL vmlinux 0x4c2db5f3 mtd_get_user_prot_info -EXPORT_SYMBOL_GPL vmlinux 0x4c37d774 gov_attr_set_init -EXPORT_SYMBOL_GPL vmlinux 0x4c3ced0e fork_usermode_driver -EXPORT_SYMBOL_GPL vmlinux 0x4c4ee887 usb_get_from_anchor -EXPORT_SYMBOL_GPL vmlinux 0x4c52c792 vfs_test_lock +EXPORT_SYMBOL_GPL vmlinux 0x4bc4e7b7 blk_revalidate_disk_zones +EXPORT_SYMBOL_GPL vmlinux 0x4bcd598d crypto_alg_extsize +EXPORT_SYMBOL_GPL vmlinux 0x4bd52e0d efivar_entry_remove +EXPORT_SYMBOL_GPL vmlinux 0x4be4e0bb debugfs_create_x32 +EXPORT_SYMBOL_GPL vmlinux 0x4be7d601 pinctrl_parse_index_with_args +EXPORT_SYMBOL_GPL vmlinux 0x4be81c09 blk_mq_quiesce_queue_nowait +EXPORT_SYMBOL_GPL vmlinux 0x4bf7ae47 crypto_alloc_acomp +EXPORT_SYMBOL_GPL vmlinux 0x4c02c490 pci_enable_rom +EXPORT_SYMBOL_GPL vmlinux 0x4c053cbd spi_get_next_queued_message +EXPORT_SYMBOL_GPL vmlinux 0x4c0beac4 usb_ifnum_to_if +EXPORT_SYMBOL_GPL vmlinux 0x4c1cc1e0 kthread_func +EXPORT_SYMBOL_GPL vmlinux 0x4c24d7e9 fwnode_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0x4c3f4507 ata_sff_softreset +EXPORT_SYMBOL_GPL vmlinux 0x4c4ad403 scsi_flush_work EXPORT_SYMBOL_GPL vmlinux 0x4c549b36 __traceiter_xhci_dbg_quirks -EXPORT_SYMBOL_GPL vmlinux 0x4c5b66b2 xhci_run -EXPORT_SYMBOL_GPL vmlinux 0x4c5b7dbc irq_chip_request_resources_parent -EXPORT_SYMBOL_GPL vmlinux 0x4c5c8ced cpu_device_create -EXPORT_SYMBOL_GPL vmlinux 0x4c612ee3 kthread_queue_delayed_work -EXPORT_SYMBOL_GPL vmlinux 0x4c677337 switchdev_handle_port_obj_del -EXPORT_SYMBOL_GPL vmlinux 0x4c84932f devm_gpiochip_add_data_with_key -EXPORT_SYMBOL_GPL vmlinux 0x4c8c570c ahci_platform_enable_regulators -EXPORT_SYMBOL_GPL vmlinux 0x4c90de3d bpf_trace_run11 -EXPORT_SYMBOL_GPL vmlinux 0x4c9840f5 nanddev_init -EXPORT_SYMBOL_GPL vmlinux 0x4cadd1fb wakeup_source_create +EXPORT_SYMBOL_GPL vmlinux 0x4c747079 cpuidle_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x4c762335 dm_table_device_name +EXPORT_SYMBOL_GPL vmlinux 0x4c77de0f crypto_alloc_sync_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x4c786f03 sk_set_memalloc +EXPORT_SYMBOL_GPL vmlinux 0x4c80d8ca __netpoll_free +EXPORT_SYMBOL_GPL vmlinux 0x4c98bed9 ipv6_stub EXPORT_SYMBOL_GPL vmlinux 0x4cb27100 ktime_get_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x4cb7dc37 usb_gadget_vbus_draw EXPORT_SYMBOL_GPL vmlinux 0x4cb81fda __SCK__tp_func_wbc_writepage -EXPORT_SYMBOL_GPL vmlinux 0x4cb841a1 fscrypt_drop_inode -EXPORT_SYMBOL_GPL vmlinux 0x4cbc8ae5 devlink_param_publish -EXPORT_SYMBOL_GPL vmlinux 0x4cbf3eb4 bus_set_iommu -EXPORT_SYMBOL_GPL vmlinux 0x4ccb29b1 mddev_init_writes_pending -EXPORT_SYMBOL_GPL vmlinux 0x4cd1d92a gpiochip_request_own_desc -EXPORT_SYMBOL_GPL vmlinux 0x4cd8d90f fat_alloc_new_dir -EXPORT_SYMBOL_GPL vmlinux 0x4cdcc4e1 bpf_prog_create_from_user +EXPORT_SYMBOL_GPL vmlinux 0x4cd160c3 pcie_update_link_speed +EXPORT_SYMBOL_GPL vmlinux 0x4cd86855 mtk_hw_set_value +EXPORT_SYMBOL_GPL vmlinux 0x4cdb4da6 bio_end_io_acct_remapped +EXPORT_SYMBOL_GPL vmlinux 0x4ce1f3d6 usb_of_get_companion_dev +EXPORT_SYMBOL_GPL vmlinux 0x4ceda1cc devres_get +EXPORT_SYMBOL_GPL vmlinux 0x4cef1196 led_blink_set_oneshot EXPORT_SYMBOL_GPL vmlinux 0x4cf24332 __usb_get_extra_descriptor -EXPORT_SYMBOL_GPL vmlinux 0x4cf446ec devm_nvmem_register -EXPORT_SYMBOL_GPL vmlinux 0x4cf51317 __clk_determine_rate -EXPORT_SYMBOL_GPL vmlinux 0x4cf59e20 devlink_resource_size_get EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable -EXPORT_SYMBOL_GPL vmlinux 0x4d076403 dev_pm_opp_set_opp -EXPORT_SYMBOL_GPL vmlinux 0x4d152a22 query_asymmetric_key -EXPORT_SYMBOL_GPL vmlinux 0x4d164c8f crypto_stats_kpp_generate_public_key -EXPORT_SYMBOL_GPL vmlinux 0x4d17fc05 tty_standard_install -EXPORT_SYMBOL_GPL vmlinux 0x4d2be634 __devm_reset_control_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0x4d340aa3 crypto_grab_ahash -EXPORT_SYMBOL_GPL vmlinux 0x4d37cbef regmap_write_async +EXPORT_SYMBOL_GPL vmlinux 0x4d2104cb pci_epf_bind +EXPORT_SYMBOL_GPL vmlinux 0x4d306f06 nvdimm_pmem_region_create +EXPORT_SYMBOL_GPL vmlinux 0x4d34213b pci_disable_sriov EXPORT_SYMBOL_GPL vmlinux 0x4d38f1e0 bL_switcher_unregister_notifier EXPORT_SYMBOL_GPL vmlinux 0x4d3a0696 __SCK__tp_func_rpm_idle -EXPORT_SYMBOL_GPL vmlinux 0x4d3eb290 snd_soc_component_update_bits_async -EXPORT_SYMBOL_GPL vmlinux 0x4d3f3d4d devm_pm_opp_set_supported_hw -EXPORT_SYMBOL_GPL vmlinux 0x4d43f9e9 __class_register +EXPORT_SYMBOL_GPL vmlinux 0x4d48936b sock_inuse_get EXPORT_SYMBOL_GPL vmlinux 0x4d4d7b79 blk_mq_map_queues -EXPORT_SYMBOL_GPL vmlinux 0x4d557951 edac_pci_del_device -EXPORT_SYMBOL_GPL vmlinux 0x4d57af95 fscrypt_get_symlink -EXPORT_SYMBOL_GPL vmlinux 0x4d594d12 devm_hwrng_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4d6998bd uhci_check_and_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0x4d55f896 crypto_unregister_ahashes +EXPORT_SYMBOL_GPL vmlinux 0x4d564adb usb_deregister_device_driver +EXPORT_SYMBOL_GPL vmlinux 0x4d57bb43 of_clk_hw_simple_get +EXPORT_SYMBOL_GPL vmlinux 0x4d5efa65 icc_get_name +EXPORT_SYMBOL_GPL vmlinux 0x4d621c6c wakeup_source_remove +EXPORT_SYMBOL_GPL vmlinux 0x4d663e6d ata_pci_shutdown_one EXPORT_SYMBOL_GPL vmlinux 0x4d6d0bbc iommu_group_ref_get EXPORT_SYMBOL_GPL vmlinux 0x4d7272e4 migrate_enable -EXPORT_SYMBOL_GPL vmlinux 0x4d727c64 fscrypt_ioctl_get_key_status -EXPORT_SYMBOL_GPL vmlinux 0x4d81292c tty_port_install -EXPORT_SYMBOL_GPL vmlinux 0x4d8b7bf1 of_thermal_is_trip_valid +EXPORT_SYMBOL_GPL vmlinux 0x4d7c542b of_pci_get_devfn +EXPORT_SYMBOL_GPL vmlinux 0x4d978864 blk_mq_virtio_map_queues EXPORT_SYMBOL_GPL vmlinux 0x4da50ab8 sbitmap_get EXPORT_SYMBOL_GPL vmlinux 0x4dae16e4 i2c_put_dma_safe_msg_buf -EXPORT_SYMBOL_GPL vmlinux 0x4dc5d945 iomap_migrate_page -EXPORT_SYMBOL_GPL vmlinux 0x4dd4bbdb platform_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4dc8423e gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0x4dd09a4f gpiochip_free_own_desc EXPORT_SYMBOL_GPL vmlinux 0x4dd9d14d cn_netlink_send_mult +EXPORT_SYMBOL_GPL vmlinux 0x4de0206a devres_for_each_res EXPORT_SYMBOL_GPL vmlinux 0x4de17ab3 usb_state_string EXPORT_SYMBOL_GPL vmlinux 0x4de2381e register_kretprobe -EXPORT_SYMBOL_GPL vmlinux 0x4de390b6 dm_send_uevents -EXPORT_SYMBOL_GPL vmlinux 0x4dec914a adp5520_clr_bits -EXPORT_SYMBOL_GPL vmlinux 0x4df91cdc dev_pm_opp_get_opp_table -EXPORT_SYMBOL_GPL vmlinux 0x4dfa09d0 mtd_read_user_prot_reg +EXPORT_SYMBOL_GPL vmlinux 0x4dfaba77 tcp_is_ulp_esp EXPORT_SYMBOL_GPL vmlinux 0x4dff61e5 wwan_port_txoff -EXPORT_SYMBOL_GPL vmlinux 0x4e0c14d3 sdhci_set_power_noreg -EXPORT_SYMBOL_GPL vmlinux 0x4e182de7 msi_desc_to_pci_sysdata -EXPORT_SYMBOL_GPL vmlinux 0x4e2cae64 bpf_trace_run6 -EXPORT_SYMBOL_GPL vmlinux 0x4e304d5f mtd_erase -EXPORT_SYMBOL_GPL vmlinux 0x4e32de8f irq_create_fwspec_mapping +EXPORT_SYMBOL_GPL vmlinux 0x4e329e79 ahci_platform_ops EXPORT_SYMBOL_GPL vmlinux 0x4e422600 start_poll_synchronize_srcu -EXPORT_SYMBOL_GPL vmlinux 0x4e426cc3 extcon_set_property_sync -EXPORT_SYMBOL_GPL vmlinux 0x4e474402 snd_soc_add_dai_controls -EXPORT_SYMBOL_GPL vmlinux 0x4e52fd3b pci_enable_ats -EXPORT_SYMBOL_GPL vmlinux 0x4e5e74d1 bio_start_io_acct -EXPORT_SYMBOL_GPL vmlinux 0x4e7ca862 __dax_driver_register -EXPORT_SYMBOL_GPL vmlinux 0x4e7e25a0 sfp_bus_find_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x4ea03821 relay_file_operations -EXPORT_SYMBOL_GPL vmlinux 0x4ea30aa1 md_kick_rdev_from_array +EXPORT_SYMBOL_GPL vmlinux 0x4e444bc9 devm_reset_control_array_get +EXPORT_SYMBOL_GPL vmlinux 0x4e4a27ec usb_unpoison_urb +EXPORT_SYMBOL_GPL vmlinux 0x4e71b57d vchan_tx_desc_free +EXPORT_SYMBOL_GPL vmlinux 0x4e7349f6 __pneigh_lookup +EXPORT_SYMBOL_GPL vmlinux 0x4e856552 usb_altnum_to_altsetting EXPORT_SYMBOL_GPL vmlinux 0x4eac5fc1 cpu_mitigations_auto_nosmt -EXPORT_SYMBOL_GPL vmlinux 0x4ec23ee8 bio_alloc_kiocb +EXPORT_SYMBOL_GPL vmlinux 0x4ebf32e2 devm_i2c_new_dummy_device +EXPORT_SYMBOL_GPL vmlinux 0x4ec587ec usb_initialize_gadget +EXPORT_SYMBOL_GPL vmlinux 0x4ec6f544 fuse_dev_fiq_ops +EXPORT_SYMBOL_GPL vmlinux 0x4edd0150 virtqueue_kick_prepare +EXPORT_SYMBOL_GPL vmlinux 0x4ede6f96 mbox_chan_txdone +EXPORT_SYMBOL_GPL vmlinux 0x4edee6a0 __traceiter_tcp_send_reset EXPORT_SYMBOL_GPL vmlinux 0x4eea67fe page_reporting_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4eeb3036 __hvc_resize EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context +EXPORT_SYMBOL_GPL vmlinux 0x4efc0fdf pinctrl_count_index_with_args EXPORT_SYMBOL_GPL vmlinux 0x4efcf021 mpi_normalize +EXPORT_SYMBOL_GPL vmlinux 0x4f0a59ca pci_find_next_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x4f0ab707 bpf_prog_add +EXPORT_SYMBOL_GPL vmlinux 0x4f205385 bpf_trace_run1 EXPORT_SYMBOL_GPL vmlinux 0x4f221155 __tracepoint_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0x4f2c67b7 crypto_register_alg +EXPORT_SYMBOL_GPL vmlinux 0x4f368bbd power_supply_put EXPORT_SYMBOL_GPL vmlinux 0x4f3ba219 blkg_rwstat_init -EXPORT_SYMBOL_GPL vmlinux 0x4f4566dd of_property_read_variable_u64_array -EXPORT_SYMBOL_GPL vmlinux 0x4f4995ca nd_blk_region_set_provider_data -EXPORT_SYMBOL_GPL vmlinux 0x4f536c8d genphy_c45_read_status -EXPORT_SYMBOL_GPL vmlinux 0x4f640195 dapm_mark_endpoints_dirty +EXPORT_SYMBOL_GPL vmlinux 0x4f414673 pci_ignore_hotplug +EXPORT_SYMBOL_GPL vmlinux 0x4f53980e sock_diag_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4f654687 of_get_pci_domain_nr +EXPORT_SYMBOL_GPL vmlinux 0x4f65b5d4 sysfs_create_link EXPORT_SYMBOL_GPL vmlinux 0x4f6a07fe show_rcu_gp_kthreads -EXPORT_SYMBOL_GPL vmlinux 0x4f6f6586 ip6_route_output_flags EXPORT_SYMBOL_GPL vmlinux 0x4f72a987 uart_parse_options -EXPORT_SYMBOL_GPL vmlinux 0x4f74ca44 devm_snd_soc_register_card -EXPORT_SYMBOL_GPL vmlinux 0x4f7599db fw_devlink_purge_absent_suppliers -EXPORT_SYMBOL_GPL vmlinux 0x4f7f54f6 sdhci_abort_tuning +EXPORT_SYMBOL_GPL vmlinux 0x4f74561b blkcg_policy_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4f761fc0 device_del +EXPORT_SYMBOL_GPL vmlinux 0x4f92b151 regmap_mmio_attach_clk EXPORT_SYMBOL_GPL vmlinux 0x4f98d766 cpu_pm_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4f9c9389 devlink_port_attrs_pci_vf_set -EXPORT_SYMBOL_GPL vmlinux 0x4f9e1820 balloon_page_list_enqueue -EXPORT_SYMBOL_GPL vmlinux 0x4fa7f41a dma_need_sync -EXPORT_SYMBOL_GPL vmlinux 0x4fa846f9 usb_root_hub_lost_power -EXPORT_SYMBOL_GPL vmlinux 0x4fb59dbc udp_init_sock -EXPORT_SYMBOL_GPL vmlinux 0x4fc0c70a pm_wakeup_dev_event +EXPORT_SYMBOL_GPL vmlinux 0x4fa8e39b devlink_param_register EXPORT_SYMBOL_GPL vmlinux 0x4fdc945d sata_deb_timing_normal -EXPORT_SYMBOL_GPL vmlinux 0x4fdd6773 regulator_set_pull_down_regmap EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4fe55890 snd_soc_dai_action +EXPORT_SYMBOL_GPL vmlinux 0x4fe5d881 dst_cache_get EXPORT_SYMBOL_GPL vmlinux 0x4ff4345b __traceiter_map -EXPORT_SYMBOL_GPL vmlinux 0x500cebf5 nand_ecc_choose_conf -EXPORT_SYMBOL_GPL vmlinux 0x5012407d nvdimm_region_notify -EXPORT_SYMBOL_GPL vmlinux 0x5018bbe6 of_clk_hw_simple_get -EXPORT_SYMBOL_GPL vmlinux 0x50254549 sdio_readb -EXPORT_SYMBOL_GPL vmlinux 0x502a61ca da9052_disable_irq_nosync -EXPORT_SYMBOL_GPL vmlinux 0x502eeb49 skb_zerocopy_iter_stream -EXPORT_SYMBOL_GPL vmlinux 0x502ffd80 nanddev_ecc_engine_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x50310b6b __iptunnel_pull_header -EXPORT_SYMBOL_GPL vmlinux 0x5031c8d1 usb_gadget_probe_driver -EXPORT_SYMBOL_GPL vmlinux 0x50350a27 nfs_ssc_register -EXPORT_SYMBOL_GPL vmlinux 0x5039132a pm_clk_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0x503bd906 mtk_pinconf_bias_set_combo +EXPORT_SYMBOL_GPL vmlinux 0x4ff880b7 deregister_mtd_blktrans +EXPORT_SYMBOL_GPL vmlinux 0x4ffa6398 devm_release_action +EXPORT_SYMBOL_GPL vmlinux 0x5027adfe snd_dmaengine_pcm_get_chan +EXPORT_SYMBOL_GPL vmlinux 0x5027cedc phy_pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0x502d9543 snd_card_ref +EXPORT_SYMBOL_GPL vmlinux 0x50322d04 devm_pinctrl_register +EXPORT_SYMBOL_GPL vmlinux 0x503ade39 rio_mport_chk_dev_access EXPORT_SYMBOL_GPL vmlinux 0x503eeebb synth_event_add_fields -EXPORT_SYMBOL_GPL vmlinux 0x505944d3 virtio_add_status +EXPORT_SYMBOL_GPL vmlinux 0x50405543 dev_attr_unload_heads +EXPORT_SYMBOL_GPL vmlinux 0x5040681f wm831x_auxadc_read_uv +EXPORT_SYMBOL_GPL vmlinux 0x504847f3 phy_resolve_aneg_linkmode +EXPORT_SYMBOL_GPL vmlinux 0x504c86c1 pm_generic_restore_noirq EXPORT_SYMBOL_GPL vmlinux 0x506ab3a9 usb_ep_queue +EXPORT_SYMBOL_GPL vmlinux 0x507873bf tcp_reno_cong_avoid +EXPORT_SYMBOL_GPL vmlinux 0x50807c6e pci_host_common_remove +EXPORT_SYMBOL_GPL vmlinux 0x50854236 fscrypt_ioctl_add_key EXPORT_SYMBOL_GPL vmlinux 0x508afef4 usb_anchor_suspend_wakeups EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start -EXPORT_SYMBOL_GPL vmlinux 0x50948951 pci_aer_clear_nonfatal_status -EXPORT_SYMBOL_GPL vmlinux 0x5098bdf7 usb_sg_wait -EXPORT_SYMBOL_GPL vmlinux 0x50991ed7 ethnl_cable_test_alloc +EXPORT_SYMBOL_GPL vmlinux 0x5095ff46 ping_recvmsg EXPORT_SYMBOL_GPL vmlinux 0x509d5f55 clk_divider_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0x50a5b56d gpiod_get_value +EXPORT_SYMBOL_GPL vmlinux 0x50a54fdd rtnl_register_module +EXPORT_SYMBOL_GPL vmlinux 0x50a63000 usb_hcd_unlink_urb_from_ep EXPORT_SYMBOL_GPL vmlinux 0x50b88f41 usb_get_gadget_udc_name +EXPORT_SYMBOL_GPL vmlinux 0x50bbd442 of_find_spi_device_by_node +EXPORT_SYMBOL_GPL vmlinux 0x50c37f52 usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0x50c70096 gpiod_export +EXPORT_SYMBOL_GPL vmlinux 0x50c76de9 xhci_init_driver EXPORT_SYMBOL_GPL vmlinux 0x50c89f23 __alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0x50ce0c5a gpiod_count -EXPORT_SYMBOL_GPL vmlinux 0x50d0bc97 __traceiter_neigh_cleanup_and_release -EXPORT_SYMBOL_GPL vmlinux 0x50d539a2 devm_regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x50cfb5da con_debug_enter +EXPORT_SYMBOL_GPL vmlinux 0x50d045c2 sock_diag_save_cookie +EXPORT_SYMBOL_GPL vmlinux 0x50d49092 mmu_interval_read_begin +EXPORT_SYMBOL_GPL vmlinux 0x50d72f34 tcp_reno_ssthresh +EXPORT_SYMBOL_GPL vmlinux 0x50d8c962 devm_clk_register +EXPORT_SYMBOL_GPL vmlinux 0x50e55420 do_tcp_sendpages EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num -EXPORT_SYMBOL_GPL vmlinux 0x50f9878b __traceiter_sched_util_est_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x50e7cb54 devm_device_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x50e974a4 get_kernel_pages +EXPORT_SYMBOL_GPL vmlinux 0x50e99f9d ata_scsi_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x50eacc78 param_ops_bool_enable_only EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up -EXPORT_SYMBOL_GPL vmlinux 0x510d1297 handle_irq_desc -EXPORT_SYMBOL_GPL vmlinux 0x51126469 skb_zerocopy_headlen -EXPORT_SYMBOL_GPL vmlinux 0x51150ef0 blk_set_pm_only +EXPORT_SYMBOL_GPL vmlinux 0x5107df37 gpiod_get_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x51135af2 fscrypt_drop_inode EXPORT_SYMBOL_GPL vmlinux 0x51153b89 __tracepoint_cpu_frequency -EXPORT_SYMBOL_GPL vmlinux 0x5125a3de sdio_writesb -EXPORT_SYMBOL_GPL vmlinux 0x512df491 nanddev_bbt_get_block_status +EXPORT_SYMBOL_GPL vmlinux 0x512f1702 nvdimm_delete +EXPORT_SYMBOL_GPL vmlinux 0x5135c59a tty_buffer_space_avail EXPORT_SYMBOL_GPL vmlinux 0x51390c96 rcu_barrier_tasks_rude -EXPORT_SYMBOL_GPL vmlinux 0x513929b1 power_supply_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0x513cd437 md_bitmap_load +EXPORT_SYMBOL_GPL vmlinux 0x514472f2 devm_i2c_add_adapter +EXPORT_SYMBOL_GPL vmlinux 0x51491046 usb_mon_register +EXPORT_SYMBOL_GPL vmlinux 0x514ec9b7 sata_link_debounce +EXPORT_SYMBOL_GPL vmlinux 0x5151092e regulator_set_suspend_voltage +EXPORT_SYMBOL_GPL vmlinux 0x5154c23a badblocks_clear +EXPORT_SYMBOL_GPL vmlinux 0x5155b8db perf_event_sysfs_show +EXPORT_SYMBOL_GPL vmlinux 0x51571a33 led_init_default_state_get +EXPORT_SYMBOL_GPL vmlinux 0x515908d0 trace_array_put EXPORT_SYMBOL_GPL vmlinux 0x515b390f __SCK__tp_func_remove_device_from_group -EXPORT_SYMBOL_GPL vmlinux 0x51618cbd usb_get_maximum_speed -EXPORT_SYMBOL_GPL vmlinux 0x5167d8aa iommu_dev_disable_feature -EXPORT_SYMBOL_GPL vmlinux 0x517292a8 __irq_resolve_mapping -EXPORT_SYMBOL_GPL vmlinux 0x51738314 acct_bioset_init +EXPORT_SYMBOL_GPL vmlinux 0x515cd478 nand_read_oob_op +EXPORT_SYMBOL_GPL vmlinux 0x51631837 dm_bio_from_per_bio_data +EXPORT_SYMBOL_GPL vmlinux 0x51650c11 modify_user_hw_breakpoint EXPORT_SYMBOL_GPL vmlinux 0x51754009 inet_hashinfo2_init_mod -EXPORT_SYMBOL_GPL vmlinux 0x5177a8ab of_irq_to_resource_table +EXPORT_SYMBOL_GPL vmlinux 0x518f99e3 fat_scan +EXPORT_SYMBOL_GPL vmlinux 0x51970e5b blk_ksm_is_superset EXPORT_SYMBOL_GPL vmlinux 0x51991b38 mtk_mutex_enable +EXPORT_SYMBOL_GPL vmlinux 0x51a02850 devm_of_phy_get EXPORT_SYMBOL_GPL vmlinux 0x51a348cc usb_role_switch_set_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x51aad580 power_supply_property_is_writeable -EXPORT_SYMBOL_GPL vmlinux 0x51d836e0 ip6_route_input_lookup -EXPORT_SYMBOL_GPL vmlinux 0x51dda178 phy_remove_lookup -EXPORT_SYMBOL_GPL vmlinux 0x51e39bce phy_pm_runtime_allow -EXPORT_SYMBOL_GPL vmlinux 0x51edf703 usb_ep0_reinit -EXPORT_SYMBOL_GPL vmlinux 0x52010432 fuse_dev_fiq_ops -EXPORT_SYMBOL_GPL vmlinux 0x520e912f pm_generic_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0x520f88b1 pci_cfg_access_unlock -EXPORT_SYMBOL_GPL vmlinux 0x52107b74 usb_remove_hcd -EXPORT_SYMBOL_GPL vmlinux 0x5214d314 shash_ahash_finup -EXPORT_SYMBOL_GPL vmlinux 0x52198751 nanddev_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x521cb749 kthread_use_mm -EXPORT_SYMBOL_GPL vmlinux 0x521ef456 bpf_offload_dev_netdev_register +EXPORT_SYMBOL_GPL vmlinux 0x51ad27a9 rio_inb_pwrite_handler +EXPORT_SYMBOL_GPL vmlinux 0x51b9725e blk_trace_setup +EXPORT_SYMBOL_GPL vmlinux 0x51cecb9a scsi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x51df0744 of_fdt_unflatten_tree +EXPORT_SYMBOL_GPL vmlinux 0x51f091a7 sfp_register_socket +EXPORT_SYMBOL_GPL vmlinux 0x51fcd8b0 devm_create_dev_dax +EXPORT_SYMBOL_GPL vmlinux 0x5203143d virtio_break_device +EXPORT_SYMBOL_GPL vmlinux 0x52124e7e __phy_modify_mmd_changed +EXPORT_SYMBOL_GPL vmlinux 0x5214578a gpiochip_populate_parent_fwspec_twocell +EXPORT_SYMBOL_GPL vmlinux 0x52189bef gpiochip_line_is_valid EXPORT_SYMBOL_GPL vmlinux 0x52252316 clk_unregister_fixed_rate -EXPORT_SYMBOL_GPL vmlinux 0x5233f73e clk_register_mux_table +EXPORT_SYMBOL_GPL vmlinux 0x523115db __regmap_init_i2c EXPORT_SYMBOL_GPL vmlinux 0x5236497d trace_clock -EXPORT_SYMBOL_GPL vmlinux 0x523bc93a snd_soc_of_get_slot_mask -EXPORT_SYMBOL_GPL vmlinux 0x523fe693 __mtd_next_device -EXPORT_SYMBOL_GPL vmlinux 0x525cae3a virtqueue_detach_unused_buf +EXPORT_SYMBOL_GPL vmlinux 0x523a3e51 spi_sync_locked +EXPORT_SYMBOL_GPL vmlinux 0x5243e173 pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x5247de69 __irq_domain_add +EXPORT_SYMBOL_GPL vmlinux 0x5258653c edac_pci_handle_pe +EXPORT_SYMBOL_GPL vmlinux 0x525fe815 mtd_del_partition EXPORT_SYMBOL_GPL vmlinux 0x526bcf2a wwan_port_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x5274c552 vfs_removexattr +EXPORT_SYMBOL_GPL vmlinux 0x52709940 virtqueue_get_used_addr +EXPORT_SYMBOL_GPL vmlinux 0x52742922 blk_stat_enable_accounting EXPORT_SYMBOL_GPL vmlinux 0x52770775 irq_work_sync -EXPORT_SYMBOL_GPL vmlinux 0x52862d42 sdhci_pltfm_clk_get_max_clock -EXPORT_SYMBOL_GPL vmlinux 0x528896fa xhci_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x5292055c regulator_set_load -EXPORT_SYMBOL_GPL vmlinux 0x52accb1f tcp_reno_ssthresh +EXPORT_SYMBOL_GPL vmlinux 0x527bccf8 crypto_unregister_rng +EXPORT_SYMBOL_GPL vmlinux 0x5288627f dev_pm_enable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x528fdbfe bpf_prog_put +EXPORT_SYMBOL_GPL vmlinux 0x52961fd1 __get_mtd_device +EXPORT_SYMBOL_GPL vmlinux 0x52987fce pm_clk_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x52aab689 device_unregister EXPORT_SYMBOL_GPL vmlinux 0x52b1e3c7 pci_flags EXPORT_SYMBOL_GPL vmlinux 0x52b3e8a1 is_hash_blacklisted +EXPORT_SYMBOL_GPL vmlinux 0x52b66393 skcipher_walk_virt EXPORT_SYMBOL_GPL vmlinux 0x52c35e83 call_rcu_tasks_trace -EXPORT_SYMBOL_GPL vmlinux 0x52cd1550 fsverity_verify_page +EXPORT_SYMBOL_GPL vmlinux 0x52cf84af spi_alloc_device EXPORT_SYMBOL_GPL vmlinux 0x52d54fce devlink_info_version_stored_put -EXPORT_SYMBOL_GPL vmlinux 0x52d759b3 __list_lru_init -EXPORT_SYMBOL_GPL vmlinux 0x52dbe50b shmem_file_setup_with_mnt -EXPORT_SYMBOL_GPL vmlinux 0x52e4bdf6 dm_bio_get_target_bio_nr -EXPORT_SYMBOL_GPL vmlinux 0x52e746e5 of_property_read_u64_index -EXPORT_SYMBOL_GPL vmlinux 0x52e8c4b5 dev_pm_opp_get_opp_count -EXPORT_SYMBOL_GPL vmlinux 0x52fc346f sk_detach_filter -EXPORT_SYMBOL_GPL vmlinux 0x52fc7754 snd_soc_dai_compr_trigger -EXPORT_SYMBOL_GPL vmlinux 0x531c2948 snd_soc_component_write -EXPORT_SYMBOL_GPL vmlinux 0x531c8037 register_pernet_device -EXPORT_SYMBOL_GPL vmlinux 0x531f2447 gpiod_get_index_optional -EXPORT_SYMBOL_GPL vmlinux 0x5335bf09 devm_namespace_enable -EXPORT_SYMBOL_GPL vmlinux 0x53374526 phy_power_off -EXPORT_SYMBOL_GPL vmlinux 0x534ed27d regmap_field_update_bits_base -EXPORT_SYMBOL_GPL vmlinux 0x53513209 pm_clk_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x52de09c1 mtk_pinconf_bias_get_rev1 +EXPORT_SYMBOL_GPL vmlinux 0x52e3e06f debugfs_write_file_bool +EXPORT_SYMBOL_GPL vmlinux 0x52e72e20 crypto_stats_akcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x52f918fa invalidate_inode_pages2 +EXPORT_SYMBOL_GPL vmlinux 0x52f9eeae dw_pcie_find_capability +EXPORT_SYMBOL_GPL vmlinux 0x5310f704 xdp_return_frame_bulk +EXPORT_SYMBOL_GPL vmlinux 0x5312c920 snd_soc_dai_set_tristate +EXPORT_SYMBOL_GPL vmlinux 0x53131f6f check_move_unevictable_pages +EXPORT_SYMBOL_GPL vmlinux 0x531ba112 snd_soc_dapm_new_widgets +EXPORT_SYMBOL_GPL vmlinux 0x5332ad05 gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0x5337833a skb_clone_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x5348770c irq_domain_free_irqs_common +EXPORT_SYMBOL_GPL vmlinux 0x5353f3b4 file_ra_state_init EXPORT_SYMBOL_GPL vmlinux 0x5358864e devlink_fmsg_binary_pair_nest_end -EXPORT_SYMBOL_GPL vmlinux 0x535d66ff ata_cable_unknown -EXPORT_SYMBOL_GPL vmlinux 0x5360e3fa sata_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x535a48db extcon_set_property_sync EXPORT_SYMBOL_GPL vmlinux 0x536822e3 sfp_module_insert +EXPORT_SYMBOL_GPL vmlinux 0x536e53ea sysfs_update_groups EXPORT_SYMBOL_GPL vmlinux 0x537252cf __SCK__tp_func_rpm_return_int -EXPORT_SYMBOL_GPL vmlinux 0x53782a1f crypto_unregister_scomp -EXPORT_SYMBOL_GPL vmlinux 0x537b2e03 iommu_group_add_device -EXPORT_SYMBOL_GPL vmlinux 0x5387baf1 mtk_pinconf_bias_disable_set_rev1 +EXPORT_SYMBOL_GPL vmlinux 0x537f8c7e scsi_get_vpd_page EXPORT_SYMBOL_GPL vmlinux 0x538d073d phy_duplex_to_str -EXPORT_SYMBOL_GPL vmlinux 0x53a274ef sdio_writeb -EXPORT_SYMBOL_GPL vmlinux 0x53b9a9bc usb_hub_claim_port -EXPORT_SYMBOL_GPL vmlinux 0x53bb3e68 list_lru_count_one -EXPORT_SYMBOL_GPL vmlinux 0x53c6bdb6 ata_sff_port_intr -EXPORT_SYMBOL_GPL vmlinux 0x53ce2199 serdev_device_set_parity +EXPORT_SYMBOL_GPL vmlinux 0x5396cf52 pci_test_config_bits +EXPORT_SYMBOL_GPL vmlinux 0x53aa43cf iomap_swapfile_activate +EXPORT_SYMBOL_GPL vmlinux 0x53be15c8 iomap_page_mkwrite +EXPORT_SYMBOL_GPL vmlinux 0x53c7ae59 __fsnotify_inode_delete +EXPORT_SYMBOL_GPL vmlinux 0x53cf5ed5 tpm_get_timeouts +EXPORT_SYMBOL_GPL vmlinux 0x53d366da uart_console_write EXPORT_SYMBOL_GPL vmlinux 0x53d7c01e __traceiter_cpu_idle -EXPORT_SYMBOL_GPL vmlinux 0x53e87584 blk_trace_startstop -EXPORT_SYMBOL_GPL vmlinux 0x53eeeab1 sk_clear_memalloc -EXPORT_SYMBOL_GPL vmlinux 0x53fb0bc5 serial8250_em485_start_tx -EXPORT_SYMBOL_GPL vmlinux 0x54004fdb snd_soc_register_component +EXPORT_SYMBOL_GPL vmlinux 0x53e73e41 stmpe_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x53f1d549 devm_regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x53fa4d84 of_clk_get_parent_name +EXPORT_SYMBOL_GPL vmlinux 0x53fc2610 crypto_stats_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x5409bc76 usb_get_maximum_ssp_rate +EXPORT_SYMBOL_GPL vmlinux 0x5409c9f4 musb_get_mode +EXPORT_SYMBOL_GPL vmlinux 0x5413c7ba ahci_sdev_attrs +EXPORT_SYMBOL_GPL vmlinux 0x54144914 mtd_panic_write EXPORT_SYMBOL_GPL vmlinux 0x54172702 cci_disable_port_by_cpu +EXPORT_SYMBOL_GPL vmlinux 0x54173ac9 generic_fh_to_parent EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run -EXPORT_SYMBOL_GPL vmlinux 0x542a6ce7 xdp_rxq_info_reg +EXPORT_SYMBOL_GPL vmlinux 0x541c3d1e iomap_finish_ioends +EXPORT_SYMBOL_GPL vmlinux 0x541f66ba usb_control_msg +EXPORT_SYMBOL_GPL vmlinux 0x542e9334 udp_tunnel_nic_ops EXPORT_SYMBOL_GPL vmlinux 0x5435454c divider_ro_round_rate_parent -EXPORT_SYMBOL_GPL vmlinux 0x5445c914 pci_find_next_ext_capability -EXPORT_SYMBOL_GPL vmlinux 0x544f5e5b fscrypt_ioctl_get_nonce -EXPORT_SYMBOL_GPL vmlinux 0x5458277d driver_find -EXPORT_SYMBOL_GPL vmlinux 0x54684265 hvc_instantiate +EXPORT_SYMBOL_GPL vmlinux 0x543811ea sdio_writew +EXPORT_SYMBOL_GPL vmlinux 0x543cf476 tpm_try_get_ops +EXPORT_SYMBOL_GPL vmlinux 0x544778cd devm_phy_package_join +EXPORT_SYMBOL_GPL vmlinux 0x5454921f software_node_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x54579fd5 __fsnotify_parent +EXPORT_SYMBOL_GPL vmlinux 0x545981c7 gpiod_set_debounce +EXPORT_SYMBOL_GPL vmlinux 0x5463c732 dma_buf_unmap_attachment +EXPORT_SYMBOL_GPL vmlinux 0x5468d24b led_trigger_set_default +EXPORT_SYMBOL_GPL vmlinux 0x546a3ba3 crypto_register_acomp +EXPORT_SYMBOL_GPL vmlinux 0x5474ce0b blk_crypto_evict_key +EXPORT_SYMBOL_GPL vmlinux 0x54790095 metadata_dst_alloc +EXPORT_SYMBOL_GPL vmlinux 0x548d3411 ata_sff_dev_classify EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq -EXPORT_SYMBOL_GPL vmlinux 0x549f84d4 fuse_dev_operations EXPORT_SYMBOL_GPL vmlinux 0x54a25da2 qcom_smem_state_put +EXPORT_SYMBOL_GPL vmlinux 0x54a55010 extcon_set_property_capability EXPORT_SYMBOL_GPL vmlinux 0x54a9fc07 sbitmap_resize -EXPORT_SYMBOL_GPL vmlinux 0x54aa9a79 sbitmap_queue_show -EXPORT_SYMBOL_GPL vmlinux 0x54ac79e3 pci_find_host_bridge -EXPORT_SYMBOL_GPL vmlinux 0x54c17869 blkcg_policy_register -EXPORT_SYMBOL_GPL vmlinux 0x54e1759a ata_host_init -EXPORT_SYMBOL_GPL vmlinux 0x54f064fd ncsi_vlan_rx_add_vid -EXPORT_SYMBOL_GPL vmlinux 0x54f494ee pingv6_ops -EXPORT_SYMBOL_GPL vmlinux 0x54feea3f trace_event_buffer_reserve -EXPORT_SYMBOL_GPL vmlinux 0x5508afd3 power_supply_put +EXPORT_SYMBOL_GPL vmlinux 0x54c73a6b devm_pm_clk_create +EXPORT_SYMBOL_GPL vmlinux 0x54c902af dev_pm_opp_xlate_required_opp +EXPORT_SYMBOL_GPL vmlinux 0x54d2da2e amba_bustype +EXPORT_SYMBOL_GPL vmlinux 0x54e02714 of_genpd_remove_last +EXPORT_SYMBOL_GPL vmlinux 0x54f18558 led_get_default_pattern +EXPORT_SYMBOL_GPL vmlinux 0x54fc84bc wm831x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x5503e24a transport_remove_device EXPORT_SYMBOL_GPL vmlinux 0x550f3e05 i2c_freq_mode_string -EXPORT_SYMBOL_GPL vmlinux 0x5524e64c init_dummy_netdev -EXPORT_SYMBOL_GPL vmlinux 0x552b8741 pci_epf_type_add_cfs +EXPORT_SYMBOL_GPL vmlinux 0x55105890 debugfs_create_bool +EXPORT_SYMBOL_GPL vmlinux 0x551c565f snd_dmaengine_pcm_open +EXPORT_SYMBOL_GPL vmlinux 0x55265b0d sdio_claim_host +EXPORT_SYMBOL_GPL vmlinux 0x552ec8d0 snd_soc_get_dai_id EXPORT_SYMBOL_GPL vmlinux 0x55339365 flush_delayed_fput +EXPORT_SYMBOL_GPL vmlinux 0x5535a190 pm_generic_thaw_noirq EXPORT_SYMBOL_GPL vmlinux 0x553b49a4 cpufreq_get_driver_data EXPORT_SYMBOL_GPL vmlinux 0x55417264 unregister_vt_notifier -EXPORT_SYMBOL_GPL vmlinux 0x5544b1ac nd_blk_region_to_dimm +EXPORT_SYMBOL_GPL vmlinux 0x5542a26b clk_hw_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x554b4284 nand_ecc_init_req_tweaking +EXPORT_SYMBOL_GPL vmlinux 0x555516d3 ata_pci_bmdma_clear_simplex +EXPORT_SYMBOL_GPL vmlinux 0x5556e56b dev_attr_ncq_prio_enable +EXPORT_SYMBOL_GPL vmlinux 0x555bbd17 spi_mem_supports_op +EXPORT_SYMBOL_GPL vmlinux 0x555e7564 usb_gadget_connect +EXPORT_SYMBOL_GPL vmlinux 0x55611fd5 iommu_device_sysfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x5568a6fa mmc_crypto_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0x556b1a85 debugfs_file_put +EXPORT_SYMBOL_GPL vmlinux 0x556cc61e badblocks_check EXPORT_SYMBOL_GPL vmlinux 0x556e4390 clk_get_rate -EXPORT_SYMBOL_GPL vmlinux 0x5577edc0 edac_device_alloc_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0x55701a24 bio_clone_blkg_association +EXPORT_SYMBOL_GPL vmlinux 0x5573ab16 fwnode_handle_get EXPORT_SYMBOL_GPL vmlinux 0x55784228 regmap_irq_get_virq -EXPORT_SYMBOL_GPL vmlinux 0x559fadb7 __regmap_init_spi -EXPORT_SYMBOL_GPL vmlinux 0x55a3c4de hisi_reset_init -EXPORT_SYMBOL_GPL vmlinux 0x55b02d20 nand_ecc_cleanup_req_tweaking +EXPORT_SYMBOL_GPL vmlinux 0x5579287d inet_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x557cd12f rtc_update_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0x5583d021 alloc_empty_file +EXPORT_SYMBOL_GPL vmlinux 0x5587a2c9 devm_nvdimm_memremap +EXPORT_SYMBOL_GPL vmlinux 0x55a0c153 gpiod_is_active_low +EXPORT_SYMBOL_GPL vmlinux 0x55a12f65 fsverity_ioctl_read_metadata +EXPORT_SYMBOL_GPL vmlinux 0x55b48a06 snd_pcm_stream_lock +EXPORT_SYMBOL_GPL vmlinux 0x55bb4a20 ipv4_redirect +EXPORT_SYMBOL_GPL vmlinux 0x55bb93ff badblocks_init +EXPORT_SYMBOL_GPL vmlinux 0x55bd8c8f devm_regulator_register_supply_alias EXPORT_SYMBOL_GPL vmlinux 0x55c76a23 ksys_sync_helper -EXPORT_SYMBOL_GPL vmlinux 0x55ca262d device_reprobe -EXPORT_SYMBOL_GPL vmlinux 0x55cd580d snd_soc_dapm_new_control -EXPORT_SYMBOL_GPL vmlinux 0x55d1fde4 fscrypt_file_open -EXPORT_SYMBOL_GPL vmlinux 0x55d67fb8 phy_resolve_aneg_pause +EXPORT_SYMBOL_GPL vmlinux 0x55cd8968 device_pm_wait_for_dev +EXPORT_SYMBOL_GPL vmlinux 0x55de2e19 irq_domain_reset_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x55e8513a ahci_platform_disable_clks +EXPORT_SYMBOL_GPL vmlinux 0x55ece307 __traceiter_rpm_resume EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout -EXPORT_SYMBOL_GPL vmlinux 0x5603fe75 pci_probe_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x55f7e327 devm_phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0x55fad05c clk_register_hisi_phase +EXPORT_SYMBOL_GPL vmlinux 0x560151b7 device_dma_supported +EXPORT_SYMBOL_GPL vmlinux 0x56045d4c serial8250_request_dma EXPORT_SYMBOL_GPL vmlinux 0x56054c05 crypto_it_tab -EXPORT_SYMBOL_GPL vmlinux 0x561605af sdio_f0_readb +EXPORT_SYMBOL_GPL vmlinux 0x560f37d1 pm_clk_remove_clk +EXPORT_SYMBOL_GPL vmlinux 0x5611f3f9 ata_port_wait_eh EXPORT_SYMBOL_GPL vmlinux 0x56173654 pcap_set_ts_bits EXPORT_SYMBOL_GPL vmlinux 0x561835eb init_rs_non_canonical -EXPORT_SYMBOL_GPL vmlinux 0x561f0ca3 virtio_break_device +EXPORT_SYMBOL_GPL vmlinux 0x5619d563 regulator_set_active_discharge_regmap +EXPORT_SYMBOL_GPL vmlinux 0x5619d735 verify_signature +EXPORT_SYMBOL_GPL vmlinux 0x561f1959 iommu_group_remove_device EXPORT_SYMBOL_GPL vmlinux 0x56256e8a orderly_poweroff -EXPORT_SYMBOL_GPL vmlinux 0x562af047 blk_ksm_init -EXPORT_SYMBOL_GPL vmlinux 0x562b691d dev_pm_opp_of_add_table_noclk EXPORT_SYMBOL_GPL vmlinux 0x56310925 regulator_mode_to_status +EXPORT_SYMBOL_GPL vmlinux 0x56327f8e snd_soc_dai_compr_set_metadata +EXPORT_SYMBOL_GPL vmlinux 0x56328997 rio_mport_get_feature EXPORT_SYMBOL_GPL vmlinux 0x5632e63d nand_subop_get_num_addr_cyc +EXPORT_SYMBOL_GPL vmlinux 0x56380b72 usb_unanchor_urb +EXPORT_SYMBOL_GPL vmlinux 0x5638452d dw_pcie_ep_linkup EXPORT_SYMBOL_GPL vmlinux 0x5641485b tty_termios_encode_baud_rate -EXPORT_SYMBOL_GPL vmlinux 0x5644f4ff fib_info_nh_uses_dev -EXPORT_SYMBOL_GPL vmlinux 0x565a754e usb_amd_pt_check_port -EXPORT_SYMBOL_GPL vmlinux 0x56603ad5 crypto_register_ahash -EXPORT_SYMBOL_GPL vmlinux 0x567a36aa add_disk_randomness -EXPORT_SYMBOL_GPL vmlinux 0x567fe0c7 nanddev_bbt_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x5689b09c udp6_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x56a60102 usb_autopm_get_interface_async +EXPORT_SYMBOL_GPL vmlinux 0x564eebd4 snd_soc_remove_pcm_runtime +EXPORT_SYMBOL_GPL vmlinux 0x5659ef9a blk_mq_debugfs_rq_show +EXPORT_SYMBOL_GPL vmlinux 0x565ad4dd pm_generic_resume_noirq +EXPORT_SYMBOL_GPL vmlinux 0x56610880 acomp_request_alloc +EXPORT_SYMBOL_GPL vmlinux 0x5667b43a ata_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0x567fc900 PageHuge EXPORT_SYMBOL_GPL vmlinux 0x56a6a76c net_rwsem EXPORT_SYMBOL_GPL vmlinux 0x56af5d34 call_srcu EXPORT_SYMBOL_GPL vmlinux 0x56b63670 lzo1x_1_compress -EXPORT_SYMBOL_GPL vmlinux 0x56b9403a crypto_register_rng -EXPORT_SYMBOL_GPL vmlinux 0x56c48edc platform_device_register -EXPORT_SYMBOL_GPL vmlinux 0x56ca09c0 debugfs_create_blob -EXPORT_SYMBOL_GPL vmlinux 0x56d1d5c9 md_allow_write -EXPORT_SYMBOL_GPL vmlinux 0x56d4120c fib_rule_matchall -EXPORT_SYMBOL_GPL vmlinux 0x56db04ec dw_pcie_ep_init_complete -EXPORT_SYMBOL_GPL vmlinux 0x56e70d95 pinctrl_lookup_state +EXPORT_SYMBOL_GPL vmlinux 0x56d1e6ed crypto_unregister_aead +EXPORT_SYMBOL_GPL vmlinux 0x56d7d375 usb_of_get_interface_node +EXPORT_SYMBOL_GPL vmlinux 0x56e5fb0a addrconf_prefix_rcv_add_addr EXPORT_SYMBOL_GPL vmlinux 0x56e9103b cpu_pm_enter -EXPORT_SYMBOL_GPL vmlinux 0x56f57a42 dev_pm_domain_detach -EXPORT_SYMBOL_GPL vmlinux 0x56f5f32b cpuidle_get_cpu_driver -EXPORT_SYMBOL_GPL vmlinux 0x56f787d0 ipv6_recv_error EXPORT_SYMBOL_GPL vmlinux 0x56fbb130 no_hash_pointers -EXPORT_SYMBOL_GPL vmlinux 0x570f0609 compat_only_sysfs_link_entry_to_kobj -EXPORT_SYMBOL_GPL vmlinux 0x5712fc28 regmap_raw_read -EXPORT_SYMBOL_GPL vmlinux 0x571c6718 addrconf_add_linklocal -EXPORT_SYMBOL_GPL vmlinux 0x571d60e7 irq_get_domain_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x571e30af sdhci_get_property -EXPORT_SYMBOL_GPL vmlinux 0x572a5568 cpufreq_table_index_unsorted +EXPORT_SYMBOL_GPL vmlinux 0x57033c5f device_store_bool +EXPORT_SYMBOL_GPL vmlinux 0x570531c7 shash_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0x570e096a ncsi_start_dev +EXPORT_SYMBOL_GPL vmlinux 0x571f3a8b sata_link_resume +EXPORT_SYMBOL_GPL vmlinux 0x571ffe52 regulator_bulk_get EXPORT_SYMBOL_GPL vmlinux 0x573b5453 ipv6_fixup_options -EXPORT_SYMBOL_GPL vmlinux 0x5741470e dev_attr_ncq_prio_enable -EXPORT_SYMBOL_GPL vmlinux 0x57487a6f vring_transport_features -EXPORT_SYMBOL_GPL vmlinux 0x574bec1e register_net_sysctl -EXPORT_SYMBOL_GPL vmlinux 0x574d5de0 dev_pm_genpd_remove_notifier -EXPORT_SYMBOL_GPL vmlinux 0x574fc1e4 of_dma_controller_free -EXPORT_SYMBOL_GPL vmlinux 0x57688386 nvdimm_pmem_region_create -EXPORT_SYMBOL_GPL vmlinux 0x5781ffd1 omap_iommu_domain_activate +EXPORT_SYMBOL_GPL vmlinux 0x574eb016 sdhci_suspend_host +EXPORT_SYMBOL_GPL vmlinux 0x5785aacf dma_run_dependencies +EXPORT_SYMBOL_GPL vmlinux 0x578f733d snd_soc_dpcm_get_substream EXPORT_SYMBOL_GPL vmlinux 0x5790e7a0 pci_unlock_rescan_remove EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all +EXPORT_SYMBOL_GPL vmlinux 0x57a1749e scmi_protocol_unregister EXPORT_SYMBOL_GPL vmlinux 0x57a231cc usb_decode_ctrl EXPORT_SYMBOL_GPL vmlinux 0x57a4a9c5 xas_split_alloc -EXPORT_SYMBOL_GPL vmlinux 0x57a9f5f0 cros_ec_get_sensor_count -EXPORT_SYMBOL_GPL vmlinux 0x57b0d8aa bio_iov_iter_get_pages -EXPORT_SYMBOL_GPL vmlinux 0x57b10edf nanddev_mtd_erase -EXPORT_SYMBOL_GPL vmlinux 0x57bc9062 rcu_read_unlock_trace_special -EXPORT_SYMBOL_GPL vmlinux 0x57cf9d2d nd_tbl +EXPORT_SYMBOL_GPL vmlinux 0x57a52d48 irq_domain_disconnect_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0x57a66759 unregister_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0x57aa3506 sdhci_switch_external_dma +EXPORT_SYMBOL_GPL vmlinux 0x57bed053 extcon_get_property +EXPORT_SYMBOL_GPL vmlinux 0x57cb5dc9 wm8350_reg_read EXPORT_SYMBOL_GPL vmlinux 0x57d4050a xhci_get_endpoint_index -EXPORT_SYMBOL_GPL vmlinux 0x57d91bfc dst_cache_set_ip6 -EXPORT_SYMBOL_GPL vmlinux 0x57d9852d wait_for_stable_page -EXPORT_SYMBOL_GPL vmlinux 0x57f4d71e snd_soc_component_force_enable_pin +EXPORT_SYMBOL_GPL vmlinux 0x57d8f6c1 of_device_modalias +EXPORT_SYMBOL_GPL vmlinux 0x57de5385 gpiod_set_raw_value +EXPORT_SYMBOL_GPL vmlinux 0x57e1d985 tty_perform_flush +EXPORT_SYMBOL_GPL vmlinux 0x57e3b5e2 debugfs_create_x8 +EXPORT_SYMBOL_GPL vmlinux 0x57f1877f ncsi_stop_dev EXPORT_SYMBOL_GPL vmlinux 0x57f576b9 mpi_ec_curve_point EXPORT_SYMBOL_GPL vmlinux 0x57f70547 secure_ipv4_port_ephemeral -EXPORT_SYMBOL_GPL vmlinux 0x57facab4 device_property_read_string_array -EXPORT_SYMBOL_GPL vmlinux 0x58145e93 nanddev_mtd_max_bad_blocks -EXPORT_SYMBOL_GPL vmlinux 0x581a58de udp_abort -EXPORT_SYMBOL_GPL vmlinux 0x582381ac rdev_get_name -EXPORT_SYMBOL_GPL vmlinux 0x5827cb3d pci_iomap_wc_range -EXPORT_SYMBOL_GPL vmlinux 0x5828c935 apply_to_page_range -EXPORT_SYMBOL_GPL vmlinux 0x582993f2 pid_nr_ns +EXPORT_SYMBOL_GPL vmlinux 0x58049ddb tpm_put_ops +EXPORT_SYMBOL_GPL vmlinux 0x580b4b3c pci_dev_lock +EXPORT_SYMBOL_GPL vmlinux 0x58154ac1 extcon_get_state +EXPORT_SYMBOL_GPL vmlinux 0x582cbf20 dma_resv_wait_timeout EXPORT_SYMBOL_GPL vmlinux 0x5831e062 cpus_read_trylock -EXPORT_SYMBOL_GPL vmlinux 0x583d6f9d of_address_to_resource -EXPORT_SYMBOL_GPL vmlinux 0x5854c213 __efivar_entry_get -EXPORT_SYMBOL_GPL vmlinux 0x58652408 crypto_inst_setname -EXPORT_SYMBOL_GPL vmlinux 0x5873e212 snd_soc_tplg_component_load +EXPORT_SYMBOL_GPL vmlinux 0x58423b11 gpiod_get_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x584c6a11 msi_desc_to_pci_sysdata +EXPORT_SYMBOL_GPL vmlinux 0x585268bf of_clk_src_onecell_get +EXPORT_SYMBOL_GPL vmlinux 0x585a8350 snd_dmaengine_pcm_unregister +EXPORT_SYMBOL_GPL vmlinux 0x587056db usb_hcd_pci_remove +EXPORT_SYMBOL_GPL vmlinux 0x5873df2a ata_bmdma_post_internal_cmd EXPORT_SYMBOL_GPL vmlinux 0x5879a27d sfp_get_module_info EXPORT_SYMBOL_GPL vmlinux 0x587ac04d cpufreq_show_cpus -EXPORT_SYMBOL_GPL vmlinux 0x587bbcc8 devlink_resource_occ_get_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5883e618 housekeeping_affine -EXPORT_SYMBOL_GPL vmlinux 0x58875259 usb_hcd_link_urb_to_ep -EXPORT_SYMBOL_GPL vmlinux 0x5893f658 snd_pcm_stream_lock -EXPORT_SYMBOL_GPL vmlinux 0x58a3b1c6 mtk_pinconf_bias_disable_get -EXPORT_SYMBOL_GPL vmlinux 0x58c676d3 crypto_alg_mod_lookup -EXPORT_SYMBOL_GPL vmlinux 0x58cc2bf8 usb_for_each_port -EXPORT_SYMBOL_GPL vmlinux 0x58dbbcdc inet6_hash -EXPORT_SYMBOL_GPL vmlinux 0x58de8a73 snd_soc_info_enum_double +EXPORT_SYMBOL_GPL vmlinux 0x587b2ce4 virtqueue_get_vring_size +EXPORT_SYMBOL_GPL vmlinux 0x589d62f2 msg_zerocopy_alloc +EXPORT_SYMBOL_GPL vmlinux 0x58a40424 devm_pm_opp_set_supported_hw +EXPORT_SYMBOL_GPL vmlinux 0x58aaf31d dma_wait_for_async_tx +EXPORT_SYMBOL_GPL vmlinux 0x58ac798b open_related_ns +EXPORT_SYMBOL_GPL vmlinux 0x58adedf5 skb_complete_wifi_ack +EXPORT_SYMBOL_GPL vmlinux 0x58ae4e1c cgroup_path_ns +EXPORT_SYMBOL_GPL vmlinux 0x58b17350 pci_user_write_config_word +EXPORT_SYMBOL_GPL vmlinux 0x58bf1a77 altr_sysmgr_regmap_lookup_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x58c46756 netif_carrier_event EXPORT_SYMBOL_GPL vmlinux 0x58def6ca sfp_module_remove -EXPORT_SYMBOL_GPL vmlinux 0x58eba496 perf_event_enable +EXPORT_SYMBOL_GPL vmlinux 0x58e6e9f3 snd_soc_put_xr_sx EXPORT_SYMBOL_GPL vmlinux 0x58f0308a clk_regmap_divider_ops -EXPORT_SYMBOL_GPL vmlinux 0x58f2d574 nf_queue -EXPORT_SYMBOL_GPL vmlinux 0x591aa11e cpufreq_freq_attr_scaling_available_freqs -EXPORT_SYMBOL_GPL vmlinux 0x59292c0f regulator_list_hardware_vsel -EXPORT_SYMBOL_GPL vmlinux 0x59396d26 nanddev_bbt_init -EXPORT_SYMBOL_GPL vmlinux 0x5951e6d3 key_type_logon -EXPORT_SYMBOL_GPL vmlinux 0x595dcb3f serdev_device_write_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x59631cff xfrm_audit_state_notfound -EXPORT_SYMBOL_GPL vmlinux 0x5967e3f7 kern_mount -EXPORT_SYMBOL_GPL vmlinux 0x5978451c amba_device_alloc -EXPORT_SYMBOL_GPL vmlinux 0x597eae06 genphy_c45_read_lpa +EXPORT_SYMBOL_GPL vmlinux 0x592019cb gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0x5928cbd4 skb_zerocopy_iter_stream +EXPORT_SYMBOL_GPL vmlinux 0x592b0b5c pci_disable_pri +EXPORT_SYMBOL_GPL vmlinux 0x595f9988 __traceiter_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0x5977c672 bpf_trace_run9 EXPORT_SYMBOL_GPL vmlinux 0x5986d190 kdb_printf -EXPORT_SYMBOL_GPL vmlinux 0x598e4f79 devm_clk_hw_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5988dab4 __udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x598c9709 devm_regmap_field_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0x59902be6 bio_alloc_kiocb +EXPORT_SYMBOL_GPL vmlinux 0x5996250e irq_domain_push_irq EXPORT_SYMBOL_GPL vmlinux 0x59a1fab8 ehci_cf_port_reset_rwsem -EXPORT_SYMBOL_GPL vmlinux 0x59a43def sched_trace_cfs_rq_path -EXPORT_SYMBOL_GPL vmlinux 0x59a9a195 snd_soc_component_disable_pin_unlocked -EXPORT_SYMBOL_GPL vmlinux 0x59aa539c mtd_ooblayout_find_eccregion -EXPORT_SYMBOL_GPL vmlinux 0x59ab7a56 clean_acked_data_disable -EXPORT_SYMBOL_GPL vmlinux 0x59acf88b dev_pm_opp_of_get_opp_desc_node +EXPORT_SYMBOL_GPL vmlinux 0x59ab71f5 nvdimm_region_notify EXPORT_SYMBOL_GPL vmlinux 0x59b5def6 clk_regmap_gate_ops -EXPORT_SYMBOL_GPL vmlinux 0x59be2391 fwnode_property_read_u8_array -EXPORT_SYMBOL_GPL vmlinux 0x59c36ec0 fwnode_handle_get +EXPORT_SYMBOL_GPL vmlinux 0x59be47a0 exportfs_decode_fh EXPORT_SYMBOL_GPL vmlinux 0x59c43dc9 __traceiter_non_standard_event -EXPORT_SYMBOL_GPL vmlinux 0x59c97213 devfreq_cooling_unregister -EXPORT_SYMBOL_GPL vmlinux 0x59d82931 nvdimm_badblocks_populate -EXPORT_SYMBOL_GPL vmlinux 0x59dc6213 __inet_twsk_schedule -EXPORT_SYMBOL_GPL vmlinux 0x59ed7656 dw_pcie_ep_init +EXPORT_SYMBOL_GPL vmlinux 0x59d8d8f6 sysfs_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x59e33880 clk_register_fixed_factor EXPORT_SYMBOL_GPL vmlinux 0x59f32720 mpi_subm -EXPORT_SYMBOL_GPL vmlinux 0x59f9f23a pinctrl_count_index_with_args -EXPORT_SYMBOL_GPL vmlinux 0x5a001603 pci_msi_create_irq_domain -EXPORT_SYMBOL_GPL vmlinux 0x5a002fa3 platform_unregister_drivers -EXPORT_SYMBOL_GPL vmlinux 0x5a1262ab mtd_read_oob +EXPORT_SYMBOL_GPL vmlinux 0x59f89f84 pwmchip_remove +EXPORT_SYMBOL_GPL vmlinux 0x5a097b4e i2c_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x5a0a7a83 fsverity_ioctl_enable 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 0x5a23ea1a devm_regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x5a1e8606 phy_remove_lookup +EXPORT_SYMBOL_GPL vmlinux 0x5a22f735 tpm1_getcap +EXPORT_SYMBOL_GPL vmlinux 0x5a460da5 scsi_eh_ready_devs EXPORT_SYMBOL_GPL vmlinux 0x5a49dbc9 timerqueue_del -EXPORT_SYMBOL_GPL vmlinux 0x5a56d30b put_mtd_device -EXPORT_SYMBOL_GPL vmlinux 0x5a613d42 serial8250_rx_dma_flush -EXPORT_SYMBOL_GPL vmlinux 0x5a636ab5 dma_free_pages -EXPORT_SYMBOL_GPL vmlinux 0x5a6a516d kthread_data +EXPORT_SYMBOL_GPL vmlinux 0x5a5f5d2e ata_sff_port_intr EXPORT_SYMBOL_GPL vmlinux 0x5a6cdb52 nf_ct_zone_dflt -EXPORT_SYMBOL_GPL vmlinux 0x5a7697cc __traceiter_pelt_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x5a7086c3 of_get_named_gpio_flags +EXPORT_SYMBOL_GPL vmlinux 0x5a7391d8 mtd_ooblayout_get_databytes EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify -EXPORT_SYMBOL_GPL vmlinux 0x5a7cd9b5 pci_reset_bus -EXPORT_SYMBOL_GPL vmlinux 0x5a8caadb usb_driver_claim_interface -EXPORT_SYMBOL_GPL vmlinux 0x5aaa2afa snd_soc_dapm_ignore_suspend -EXPORT_SYMBOL_GPL vmlinux 0x5aaf033c mtk_pinconf_drive_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x5a89e592 init_uts_ns +EXPORT_SYMBOL_GPL vmlinux 0x5a8b8e43 devlink_dpipe_table_register +EXPORT_SYMBOL_GPL vmlinux 0x5a99961e pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5a9cea85 component_del +EXPORT_SYMBOL_GPL vmlinux 0x5ab002de spi_res_release EXPORT_SYMBOL_GPL vmlinux 0x5ab09745 edac_get_owner -EXPORT_SYMBOL_GPL vmlinux 0x5ab25a31 ata_host_put -EXPORT_SYMBOL_GPL vmlinux 0x5abc9044 tcp_set_keepalive -EXPORT_SYMBOL_GPL vmlinux 0x5abeb22b dm_path_uevent -EXPORT_SYMBOL_GPL vmlinux 0x5ad24d18 pm_generic_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0x5ae44e15 driver_for_each_device -EXPORT_SYMBOL_GPL vmlinux 0x5ae7978a devm_clk_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0x5af2f979 spi_mem_dirmap_destroy -EXPORT_SYMBOL_GPL vmlinux 0x5b02003b soc_device_register -EXPORT_SYMBOL_GPL vmlinux 0x5b0747a9 md_new_event +EXPORT_SYMBOL_GPL vmlinux 0x5ab44e6d sdio_signal_irq +EXPORT_SYMBOL_GPL vmlinux 0x5abd67c7 regulator_disable_deferred +EXPORT_SYMBOL_GPL vmlinux 0x5ac1dc6f pci_user_write_config_byte +EXPORT_SYMBOL_GPL vmlinux 0x5ac99428 dev_pm_qos_hide_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0x5adb9fae of_platform_device_destroy +EXPORT_SYMBOL_GPL vmlinux 0x5b076436 put_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x5b0d6151 usb_gadget_ep_match_desc +EXPORT_SYMBOL_GPL vmlinux 0x5b10652b snd_soc_jack_add_gpiods EXPORT_SYMBOL_GPL vmlinux 0x5b21ceff ring_buffer_iter_peek -EXPORT_SYMBOL_GPL vmlinux 0x5b28a22f dev_pm_qos_expose_latency_limit -EXPORT_SYMBOL_GPL vmlinux 0x5b2abc4e vc_scrolldelta_helper -EXPORT_SYMBOL_GPL vmlinux 0x5b30b135 ti_cm_get_macid +EXPORT_SYMBOL_GPL vmlinux 0x5b25f4bc uart_try_toggle_sysrq EXPORT_SYMBOL_GPL vmlinux 0x5b316080 software_node_unregister_nodes EXPORT_SYMBOL_GPL vmlinux 0x5b3bdea8 alarm_restart -EXPORT_SYMBOL_GPL vmlinux 0x5b4ca422 auxiliary_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5b54837a blk_mark_disk_dead +EXPORT_SYMBOL_GPL vmlinux 0x5b4ea85e rio_mport_get_physefb EXPORT_SYMBOL_GPL vmlinux 0x5b6b0329 swiotlb_max_segment -EXPORT_SYMBOL_GPL vmlinux 0x5b8b4ed7 regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5b8511df genphy_c45_read_pma +EXPORT_SYMBOL_GPL vmlinux 0x5b88cc51 __usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0x5b945e3f perf_event_pause EXPORT_SYMBOL_GPL vmlinux 0x5b994e71 ima_measure_critical_data -EXPORT_SYMBOL_GPL vmlinux 0x5ba5f888 pci_scan_child_bus -EXPORT_SYMBOL_GPL vmlinux 0x5baab065 devm_pm_opp_set_regulators +EXPORT_SYMBOL_GPL vmlinux 0x5b9c625a genphy_c45_pma_suspend +EXPORT_SYMBOL_GPL vmlinux 0x5b9fec57 genphy_c45_aneg_done +EXPORT_SYMBOL_GPL vmlinux 0x5ba470a9 gpiod_get_index EXPORT_SYMBOL_GPL vmlinux 0x5bbdfa26 scatterwalk_ffwd -EXPORT_SYMBOL_GPL vmlinux 0x5bbe014d synth_event_gen_cmd_array_start +EXPORT_SYMBOL_GPL vmlinux 0x5bc89ebc ahci_platform_disable_phys EXPORT_SYMBOL_GPL vmlinux 0x5bc950fe regulator_irq_helper_cancel EXPORT_SYMBOL_GPL vmlinux 0x5bd0748f crypto_del_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x5bd46aca pci_num_vf -EXPORT_SYMBOL_GPL vmlinux 0x5bd5fed7 led_trigger_rename_static +EXPORT_SYMBOL_GPL vmlinux 0x5bd19d8c tpm_tis_core_init +EXPORT_SYMBOL_GPL vmlinux 0x5bd8d398 ata_eh_analyze_ncq_error +EXPORT_SYMBOL_GPL vmlinux 0x5bda431a gpiochip_irq_domain_deactivate EXPORT_SYMBOL_GPL vmlinux 0x5bdae35b usb_phy_roothub_set_mode EXPORT_SYMBOL_GPL vmlinux 0x5bdbac4e rcu_unexpedite_gp -EXPORT_SYMBOL_GPL vmlinux 0x5be3cfbd sdhci_runtime_suspend_host -EXPORT_SYMBOL_GPL vmlinux 0x5bfbb3ae thermal_zone_device_register -EXPORT_SYMBOL_GPL vmlinux 0x5bfc3592 devm_device_remove_group -EXPORT_SYMBOL_GPL vmlinux 0x5bfeffb4 rio_mport_write_config_8 -EXPORT_SYMBOL_GPL vmlinux 0x5c02068a sysfs_file_change_owner -EXPORT_SYMBOL_GPL vmlinux 0x5c0d929d mtd_write_user_prot_reg -EXPORT_SYMBOL_GPL vmlinux 0x5c1abc59 led_init_core -EXPORT_SYMBOL_GPL vmlinux 0x5c1dae1b crypto_alloc_acomp_node -EXPORT_SYMBOL_GPL vmlinux 0x5c20d825 dma_buf_detach -EXPORT_SYMBOL_GPL vmlinux 0x5c2b255e regmap_async_complete +EXPORT_SYMBOL_GPL vmlinux 0x5bdc66c2 sdhci_pltfm_pmops +EXPORT_SYMBOL_GPL vmlinux 0x5be33b0d dev_err_probe +EXPORT_SYMBOL_GPL vmlinux 0x5c1ff2fe strp_process +EXPORT_SYMBOL_GPL vmlinux 0x5c220477 crypto_grab_ahash EXPORT_SYMBOL_GPL vmlinux 0x5c2bcd37 bpf_warn_invalid_xdp_action EXPORT_SYMBOL_GPL vmlinux 0x5c309e65 hibernate_quiet_exec -EXPORT_SYMBOL_GPL vmlinux 0x5c342c2b devlink_region_create +EXPORT_SYMBOL_GPL vmlinux 0x5c31728c dma_resv_test_signaled +EXPORT_SYMBOL_GPL vmlinux 0x5c3449d4 debugfs_create_u32 EXPORT_SYMBOL_GPL vmlinux 0x5c3bbd06 __SCK__tp_func_mc_event -EXPORT_SYMBOL_GPL vmlinux 0x5c449f74 __devm_regmap_init -EXPORT_SYMBOL_GPL vmlinux 0x5c49ec3d sec_irq_init -EXPORT_SYMBOL_GPL vmlinux 0x5c540c01 mbox_send_message +EXPORT_SYMBOL_GPL vmlinux 0x5c3f7337 trace_define_field +EXPORT_SYMBOL_GPL vmlinux 0x5c3f9d9b dev_pm_opp_of_get_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0x5c53a21a pci_iomap_wc_range +EXPORT_SYMBOL_GPL vmlinux 0x5c55df32 blkg_conf_prep EXPORT_SYMBOL_GPL vmlinux 0x5c5a1b16 tick_broadcast_control EXPORT_SYMBOL_GPL vmlinux 0x5c5c6826 phy_10gbit_full_features -EXPORT_SYMBOL_GPL vmlinux 0x5c66ef51 snd_dmaengine_pcm_trigger +EXPORT_SYMBOL_GPL vmlinux 0x5c63c747 icc_std_aggregate +EXPORT_SYMBOL_GPL vmlinux 0x5c649a0e mmc_send_abort_tuning +EXPORT_SYMBOL_GPL vmlinux 0x5c6ae985 _snd_pcm_stream_lock_irqsave +EXPORT_SYMBOL_GPL vmlinux 0x5c6c2ba9 __vfs_setxattr_noperm +EXPORT_SYMBOL_GPL vmlinux 0x5c6c4005 dma_max_mapping_size EXPORT_SYMBOL_GPL vmlinux 0x5c724709 memory_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x5c746972 gpiod_unexport -EXPORT_SYMBOL_GPL vmlinux 0x5c7ae2c1 meson_pmx_get_func_name -EXPORT_SYMBOL_GPL vmlinux 0x5c7d31b0 sdio_align_size 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 0x5c9f405c crypto_shash_alg_has_setkey -EXPORT_SYMBOL_GPL vmlinux 0x5ca5889b i2c_adapter_depth -EXPORT_SYMBOL_GPL vmlinux 0x5ca81f8d devm_snd_soc_register_component -EXPORT_SYMBOL_GPL vmlinux 0x5cabde6a rio_route_clr_table +EXPORT_SYMBOL_GPL vmlinux 0x5c9e13eb misc_cg_uncharge EXPORT_SYMBOL_GPL vmlinux 0x5cad8fc3 power_supply_ocv2cap_simple -EXPORT_SYMBOL_GPL vmlinux 0x5cbe27b9 strp_init +EXPORT_SYMBOL_GPL vmlinux 0x5cb55fd9 serial8250_rpm_put_tx EXPORT_SYMBOL_GPL vmlinux 0x5cc2a511 hrtimer_forward -EXPORT_SYMBOL_GPL vmlinux 0x5ceaf946 sdhci_pltfm_register EXPORT_SYMBOL_GPL vmlinux 0x5cede0a7 xdp_flush_frame_bulk -EXPORT_SYMBOL_GPL vmlinux 0x5cf1eada spi_register_controller -EXPORT_SYMBOL_GPL vmlinux 0x5d09e31b devm_power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0x5d050747 adp5520_set_bits EXPORT_SYMBOL_GPL vmlinux 0x5d0a0eff __tracepoint_napi_poll -EXPORT_SYMBOL_GPL vmlinux 0x5d1348bf pci_epc_set_msix -EXPORT_SYMBOL_GPL vmlinux 0x5d160349 dev_get_tstats64 -EXPORT_SYMBOL_GPL vmlinux 0x5d277eaf device_attach +EXPORT_SYMBOL_GPL vmlinux 0x5d238cc7 regmap_exit +EXPORT_SYMBOL_GPL vmlinux 0x5d246b3c dw_pcie_host_init +EXPORT_SYMBOL_GPL vmlinux 0x5d2ad811 clk_hw_get_parent EXPORT_SYMBOL_GPL vmlinux 0x5d2bc42a reset_control_rearm -EXPORT_SYMBOL_GPL vmlinux 0x5d330de6 devlink_register -EXPORT_SYMBOL_GPL vmlinux 0x5d33b7b8 extcon_register_notifier_all -EXPORT_SYMBOL_GPL vmlinux 0x5d3e8399 pm_schedule_suspend -EXPORT_SYMBOL_GPL vmlinux 0x5d3efa98 rockchip_register_restart_notifier -EXPORT_SYMBOL_GPL vmlinux 0x5d51ff50 wm831x_device_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x5d5ac56e irq_chip_unmask_parent -EXPORT_SYMBOL_GPL vmlinux 0x5d75e4e8 stmpe_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x5d7a3b54 devm_irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x5d2c2cb4 tty_standard_install +EXPORT_SYMBOL_GPL vmlinux 0x5d445379 irq_domain_set_hwirq_and_chip +EXPORT_SYMBOL_GPL vmlinux 0x5d71c0d5 pm_clk_create EXPORT_SYMBOL_GPL vmlinux 0x5d82a5b8 tracepoint_probe_register EXPORT_SYMBOL_GPL vmlinux 0x5d8476d3 bpf_sk_storage_diag_alloc -EXPORT_SYMBOL_GPL vmlinux 0x5d87c63a tty_perform_flush -EXPORT_SYMBOL_GPL vmlinux 0x5d9b554c ncsi_stop_dev +EXPORT_SYMBOL_GPL vmlinux 0x5d8c9ec1 gpiochip_populate_parent_fwspec_fourcell +EXPORT_SYMBOL_GPL vmlinux 0x5da65148 snd_soc_dapm_del_routes EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact -EXPORT_SYMBOL_GPL vmlinux 0x5db8eda2 tps65217_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x5dc8dee3 crypto_type_has_alg -EXPORT_SYMBOL_GPL vmlinux 0x5de92979 usb_get_status -EXPORT_SYMBOL_GPL vmlinux 0x5deef51c cpuidle_get_driver +EXPORT_SYMBOL_GPL vmlinux 0x5dd3979b usb_add_gadget_udc_release +EXPORT_SYMBOL_GPL vmlinux 0x5ddce3b7 fsverity_ioctl_measure +EXPORT_SYMBOL_GPL vmlinux 0x5defcdad sched_setattr_nocheck EXPORT_SYMBOL_GPL vmlinux 0x5dff6fda x509_decode_time -EXPORT_SYMBOL_GPL vmlinux 0x5e024d3f fib6_get_table -EXPORT_SYMBOL_GPL vmlinux 0x5e0724df spi_take_timestamp_post -EXPORT_SYMBOL_GPL vmlinux 0x5e255aa0 __devm_spi_alloc_controller -EXPORT_SYMBOL_GPL vmlinux 0x5e27c0b1 meson_pmx_get_groups +EXPORT_SYMBOL_GPL vmlinux 0x5e0156f8 subsys_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x5e0461a3 serial8250_modem_status +EXPORT_SYMBOL_GPL vmlinux 0x5e29b708 disk_force_media_change +EXPORT_SYMBOL_GPL vmlinux 0x5e2d70b9 xdp_rxq_info_unreg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0x5e3be47e snd_soc_daifmt_parse_clock_provider_raw +EXPORT_SYMBOL_GPL vmlinux 0x5e41d76b security_inode_mkdir +EXPORT_SYMBOL_GPL vmlinux 0x5e42c849 efivar_entry_set +EXPORT_SYMBOL_GPL vmlinux 0x5e4a467c skb_copy_ubufs +EXPORT_SYMBOL_GPL vmlinux 0x5e4e8d7e input_ff_destroy EXPORT_SYMBOL_GPL vmlinux 0x5e504919 __tracepoint_block_split EXPORT_SYMBOL_GPL vmlinux 0x5e515be6 ktime_get_ts64 +EXPORT_SYMBOL_GPL vmlinux 0x5e5256ae dw_pcie_write_dbi +EXPORT_SYMBOL_GPL vmlinux 0x5e562ac1 regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0x5e5bac21 debugfs_real_fops +EXPORT_SYMBOL_GPL vmlinux 0x5e60ceb0 of_console_check +EXPORT_SYMBOL_GPL vmlinux 0x5e6414d0 dst_cache_set_ip6 EXPORT_SYMBOL_GPL vmlinux 0x5e67b71d evm_set_key +EXPORT_SYMBOL_GPL vmlinux 0x5e73ff33 fsnotify_get_group +EXPORT_SYMBOL_GPL vmlinux 0x5e75f6aa ata_pci_device_do_suspend EXPORT_SYMBOL_GPL vmlinux 0x5e798ffb divider_get_val -EXPORT_SYMBOL_GPL vmlinux 0x5e79fdc1 ip_valid_fib_dump_req EXPORT_SYMBOL_GPL vmlinux 0x5e85415b ring_buffer_consume -EXPORT_SYMBOL_GPL vmlinux 0x5e8781c3 mtd_device_parse_register -EXPORT_SYMBOL_GPL vmlinux 0x5e8af09f dm_set_target_max_io_len -EXPORT_SYMBOL_GPL vmlinux 0x5e91b2a2 max8997_read_reg -EXPORT_SYMBOL_GPL vmlinux 0x5e9c42b6 rio_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x5e9d286a usb_of_get_device_node EXPORT_SYMBOL_GPL vmlinux 0x5eae5408 clk_is_enabled_when_prepared -EXPORT_SYMBOL_GPL vmlinux 0x5eb02983 __traceiter_xdp_exception +EXPORT_SYMBOL_GPL vmlinux 0x5eb0c10c wm8350_clear_bits EXPORT_SYMBOL_GPL vmlinux 0x5eb417e0 __SCK__tp_func_neigh_timer_handler +EXPORT_SYMBOL_GPL vmlinux 0x5eb64fd8 lwtunnel_build_state +EXPORT_SYMBOL_GPL vmlinux 0x5eb88824 arm_iommu_release_mapping +EXPORT_SYMBOL_GPL vmlinux 0x5eb8f11e bus_for_each_dev EXPORT_SYMBOL_GPL vmlinux 0x5ec2319a mtk_mutex_unprepare EXPORT_SYMBOL_GPL vmlinux 0x5ec62549 ata_dev_classify -EXPORT_SYMBOL_GPL vmlinux 0x5ed50c79 fscrypt_set_bio_crypt_ctx_bh -EXPORT_SYMBOL_GPL vmlinux 0x5ed8d402 get_user_pages_fast -EXPORT_SYMBOL_GPL vmlinux 0x5ee2585f badblocks_set -EXPORT_SYMBOL_GPL vmlinux 0x5f077ae7 ata_pci_shutdown_one -EXPORT_SYMBOL_GPL vmlinux 0x5f0f517c gpiod_get -EXPORT_SYMBOL_GPL vmlinux 0x5f12b06b class_compat_create_link -EXPORT_SYMBOL_GPL vmlinux 0x5f1f9804 unregister_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x5ec7fbd5 blkg_lookup_slowpath +EXPORT_SYMBOL_GPL vmlinux 0x5ececfd7 register_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x5edc866f mtd_read +EXPORT_SYMBOL_GPL vmlinux 0x5efe3138 spi_mem_dirmap_destroy +EXPORT_SYMBOL_GPL vmlinux 0x5f0eee07 shash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x5f150ad8 powercap_unregister_control_type +EXPORT_SYMBOL_GPL vmlinux 0x5f1851fc scsi_dh_attach EXPORT_SYMBOL_GPL vmlinux 0x5f23e3fa insert_resource -EXPORT_SYMBOL_GPL vmlinux 0x5f272bf8 sdhci_alloc_host -EXPORT_SYMBOL_GPL vmlinux 0x5f282df0 __traceiter_tcp_send_reset -EXPORT_SYMBOL_GPL vmlinux 0x5f4528f3 bio_release_pages -EXPORT_SYMBOL_GPL vmlinux 0x5f4cce30 fat_free_clusters -EXPORT_SYMBOL_GPL vmlinux 0x5f51d52e pwm_get -EXPORT_SYMBOL_GPL vmlinux 0x5f5a7fc8 deregister_mtd_blktrans +EXPORT_SYMBOL_GPL vmlinux 0x5f2ed369 of_get_fb_videomode +EXPORT_SYMBOL_GPL vmlinux 0x5f3733dd devfreq_event_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x5f37948e __regmap_init +EXPORT_SYMBOL_GPL vmlinux 0x5f4d9fc2 devlink_port_attrs_pci_vf_set +EXPORT_SYMBOL_GPL vmlinux 0x5f6d371b ethnl_cable_test_amplitude EXPORT_SYMBOL_GPL vmlinux 0x5f6f1e9e dax_get_private -EXPORT_SYMBOL_GPL vmlinux 0x5f9721a4 phy_save_page +EXPORT_SYMBOL_GPL vmlinux 0x5f79b68b device_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x5f84b664 nand_read_page_hwecc_oob_first +EXPORT_SYMBOL_GPL vmlinux 0x5f84f061 pci_disable_ats +EXPORT_SYMBOL_GPL vmlinux 0x5f9c9d44 pci_ecam_map_bus EXPORT_SYMBOL_GPL vmlinux 0x5fa625ed mpi_ec_mul_point -EXPORT_SYMBOL_GPL vmlinux 0x5faebcef usb_gadget_connect -EXPORT_SYMBOL_GPL vmlinux 0x5fb27a06 dma_buf_map_attachment +EXPORT_SYMBOL_GPL vmlinux 0x5fb3352b blk_mark_disk_dead +EXPORT_SYMBOL_GPL vmlinux 0x5fb8d9e2 anon_transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5fbab333 __pm_runtime_suspend EXPORT_SYMBOL_GPL vmlinux 0x5fc294ef usb_ep_clear_halt +EXPORT_SYMBOL_GPL vmlinux 0x5fdf1b36 pinctrl_utils_add_map_mux EXPORT_SYMBOL_GPL vmlinux 0x5fe12e23 key_type_trusted -EXPORT_SYMBOL_GPL vmlinux 0x5fe1c657 qcom_smem_state_get -EXPORT_SYMBOL_GPL vmlinux 0x5fe7c80e snd_soc_new_ac97_component +EXPORT_SYMBOL_GPL vmlinux 0x5fe1d97f pskb_put +EXPORT_SYMBOL_GPL vmlinux 0x5fe9863b tpm_get_random +EXPORT_SYMBOL_GPL vmlinux 0x5ffdb3e3 devm_regulator_put EXPORT_SYMBOL_GPL vmlinux 0x5ffe9aa7 __tracepoint_fib6_table_lookup -EXPORT_SYMBOL_GPL vmlinux 0x5fff073e fs_kobj -EXPORT_SYMBOL_GPL vmlinux 0x6000b2f1 vp_modern_get_status -EXPORT_SYMBOL_GPL vmlinux 0x600581a4 pci_epf_free_space +EXPORT_SYMBOL_GPL vmlinux 0x5ffeff22 sdhci_pltfm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x6007b8f1 of_devfreq_cooling_register_power EXPORT_SYMBOL_GPL vmlinux 0x60091316 clk_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x60139d76 serial8250_init_port -EXPORT_SYMBOL_GPL vmlinux 0x603f7902 fwnode_get_phy_node -EXPORT_SYMBOL_GPL vmlinux 0x603fdecc perf_aux_output_end -EXPORT_SYMBOL_GPL vmlinux 0x6049be91 sdhci_pltfm_unregister +EXPORT_SYMBOL_GPL vmlinux 0x601508d7 fsverity_cleanup_inode +EXPORT_SYMBOL_GPL vmlinux 0x6015b25f power_supply_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6041daf9 tps6586x_get_version +EXPORT_SYMBOL_GPL vmlinux 0x60478e88 devm_pm_opp_set_clkname +EXPORT_SYMBOL_GPL vmlinux 0x604f4c4a usb_register_device_driver EXPORT_SYMBOL_GPL vmlinux 0x60606431 kernel_read_file_from_path_initns -EXPORT_SYMBOL_GPL vmlinux 0x6065c518 __phy_modify_mmd EXPORT_SYMBOL_GPL vmlinux 0x60671345 software_node_register_nodes -EXPORT_SYMBOL_GPL vmlinux 0x60715037 fscrypt_ioctl_remove_key_all_users -EXPORT_SYMBOL_GPL vmlinux 0x60749b12 nand_ecc_restore_req +EXPORT_SYMBOL_GPL vmlinux 0x606a7ee6 dma_can_mmap EXPORT_SYMBOL_GPL vmlinux 0x6075d0c7 omap_tll_init -EXPORT_SYMBOL_GPL vmlinux 0x607bab52 generic_fh_to_parent -EXPORT_SYMBOL_GPL vmlinux 0x607c041f __cci_control_port_by_device EXPORT_SYMBOL_GPL vmlinux 0x607c4683 devlink_info_version_fixed_put -EXPORT_SYMBOL_GPL vmlinux 0x607d6c96 device_add_properties -EXPORT_SYMBOL_GPL vmlinux 0x607f556c crypto_spawn_tfm EXPORT_SYMBOL_GPL vmlinux 0x6091797f synchronize_rcu EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier -EXPORT_SYMBOL_GPL vmlinux 0x60afca33 ip6_dst_lookup_tunnel -EXPORT_SYMBOL_GPL vmlinux 0x60b33796 gpiod_set_config -EXPORT_SYMBOL_GPL vmlinux 0x60c21379 debugfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x60ad30b3 edac_device_handle_ce_count +EXPORT_SYMBOL_GPL vmlinux 0x60adae18 nanddev_bbt_get_block_status +EXPORT_SYMBOL_GPL vmlinux 0x60c9f4e0 lwtunnel_state_alloc +EXPORT_SYMBOL_GPL vmlinux 0x60cad5d4 sched_trace_rq_avg_rt EXPORT_SYMBOL_GPL vmlinux 0x60d01740 srcu_init_notifier_head -EXPORT_SYMBOL_GPL vmlinux 0x60e210eb __rt_mutex_init EXPORT_SYMBOL_GPL vmlinux 0x60ebc96f ring_buffer_read_prepare -EXPORT_SYMBOL_GPL vmlinux 0x60f66f98 __nvdimm_create -EXPORT_SYMBOL_GPL vmlinux 0x61026dc6 pinctrl_put -EXPORT_SYMBOL_GPL vmlinux 0x610bb028 snd_soc_unregister_component_by_driver -EXPORT_SYMBOL_GPL vmlinux 0x610fd458 regcache_sync -EXPORT_SYMBOL_GPL vmlinux 0x6111a3cc dev_coredumpm -EXPORT_SYMBOL_GPL vmlinux 0x6120ceb6 gpiod_set_raw_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x6121d781 devm_power_supply_register -EXPORT_SYMBOL_GPL vmlinux 0x612463e9 nand_read_page_hwecc_oob_first +EXPORT_SYMBOL_GPL vmlinux 0x60efba97 regcache_cache_only +EXPORT_SYMBOL_GPL vmlinux 0x60eff384 mtk_pinconf_drive_get_rev1 +EXPORT_SYMBOL_GPL vmlinux 0x6104c8ef dm_disk +EXPORT_SYMBOL_GPL vmlinux 0x6109b28a user_describe +EXPORT_SYMBOL_GPL vmlinux 0x6109bd0d regulator_map_voltage_pickable_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x61243c34 cpts_rx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x61277e10 ata_std_sched_eh EXPORT_SYMBOL_GPL vmlinux 0x6129fb93 sfp_remove_phy EXPORT_SYMBOL_GPL vmlinux 0x612bfd89 errno_to_blk_status -EXPORT_SYMBOL_GPL vmlinux 0x613124b5 spi_mem_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0x6135395a snd_soc_dapm_del_routes -EXPORT_SYMBOL_GPL vmlinux 0x613bfd85 dw8250_setup_port -EXPORT_SYMBOL_GPL vmlinux 0x61403256 class_compat_remove_link -EXPORT_SYMBOL_GPL vmlinux 0x61416692 vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x61441109 snd_soc_limit_volume EXPORT_SYMBOL_GPL vmlinux 0x614782f1 usb_anchor_empty EXPORT_SYMBOL_GPL vmlinux 0x614adcb7 of_overlay_remove_all -EXPORT_SYMBOL_GPL vmlinux 0x615a2b0c fixed_phy_register_with_gpiod +EXPORT_SYMBOL_GPL vmlinux 0x614e3b91 md_new_event +EXPORT_SYMBOL_GPL vmlinux 0x6152a841 handle_mm_fault +EXPORT_SYMBOL_GPL vmlinux 0x61555567 ata_eh_freeze_port EXPORT_SYMBOL_GPL vmlinux 0x615beeb5 __cpuhp_state_add_instance -EXPORT_SYMBOL_GPL vmlinux 0x61691779 blkg_prfill_rwstat -EXPORT_SYMBOL_GPL vmlinux 0x616be2fe elv_rqhash_del -EXPORT_SYMBOL_GPL vmlinux 0x617613cd crypto_unregister_aeads +EXPORT_SYMBOL_GPL vmlinux 0x6165e94f sock_gen_put EXPORT_SYMBOL_GPL vmlinux 0x6181e79f timerqueue_add -EXPORT_SYMBOL_GPL vmlinux 0x6191afed snd_soc_dapm_free -EXPORT_SYMBOL_GPL vmlinux 0x619669e0 mtd_kmalloc_up_to +EXPORT_SYMBOL_GPL vmlinux 0x6189a76f platform_device_put +EXPORT_SYMBOL_GPL vmlinux 0x618a1147 thermal_remove_hwmon_sysfs EXPORT_SYMBOL_GPL vmlinux 0x6198dfea __ring_buffer_alloc EXPORT_SYMBOL_GPL vmlinux 0x6199ad5d crypto_has_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x61a00488 usb_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x61b35969 devm_extcon_dev_allocate +EXPORT_SYMBOL_GPL vmlinux 0x61c1a0be inet_csk_clone_lock EXPORT_SYMBOL_GPL vmlinux 0x61c1ca29 __SCK__tp_func_add_device_to_group -EXPORT_SYMBOL_GPL vmlinux 0x61cc138e tps6586x_read -EXPORT_SYMBOL_GPL vmlinux 0x61ce58e5 sdhci_suspend_host -EXPORT_SYMBOL_GPL vmlinux 0x61e9fd6e ahci_do_softreset +EXPORT_SYMBOL_GPL vmlinux 0x61caaa01 led_classdev_register_ext +EXPORT_SYMBOL_GPL vmlinux 0x61d2bd46 vp_modern_get_status +EXPORT_SYMBOL_GPL vmlinux 0x61d2c1ac sm501_unit_power EXPORT_SYMBOL_GPL vmlinux 0x61f67c92 phy_gbit_features_array -EXPORT_SYMBOL_GPL vmlinux 0x61fe5f33 led_classdev_notify_brightness_hw_changed -EXPORT_SYMBOL_GPL vmlinux 0x62080b94 pingv6_prot -EXPORT_SYMBOL_GPL vmlinux 0x6209fcd7 key_type_asymmetric -EXPORT_SYMBOL_GPL vmlinux 0x620edd6b devm_gpiod_put -EXPORT_SYMBOL_GPL vmlinux 0x620f57b4 relay_subbufs_consumed -EXPORT_SYMBOL_GPL vmlinux 0x6226ca2f pm_clk_create +EXPORT_SYMBOL_GPL vmlinux 0x61f81abd crypto_unregister_skciphers +EXPORT_SYMBOL_GPL vmlinux 0x620315db phy_calibrate +EXPORT_SYMBOL_GPL vmlinux 0x62141802 devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0x6225d921 tcp_register_congestion_control EXPORT_SYMBOL_GPL vmlinux 0x622c7922 register_oom_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6234a4af xfrm_state_mtu +EXPORT_SYMBOL_GPL vmlinux 0x62304086 stmpe_block_read EXPORT_SYMBOL_GPL vmlinux 0x62377a7b blk_io_schedule +EXPORT_SYMBOL_GPL vmlinux 0x6237a2bc spi_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0x62395141 fwnode_get_phy_node +EXPORT_SYMBOL_GPL vmlinux 0x62451dc6 clk_hw_unregister EXPORT_SYMBOL_GPL vmlinux 0x6246a629 synchronize_rcu_tasks_trace -EXPORT_SYMBOL_GPL vmlinux 0x62518f90 spi_sync_locked EXPORT_SYMBOL_GPL vmlinux 0x6257dda7 clk_rate_exclusive_get EXPORT_SYMBOL_GPL vmlinux 0x6259d291 clk_restore_context -EXPORT_SYMBOL_GPL vmlinux 0x627b877e cpufreq_cooling_register -EXPORT_SYMBOL_GPL vmlinux 0x627cdb15 devlink_dpipe_match_put -EXPORT_SYMBOL_GPL vmlinux 0x627fed35 tty_ldisc_flush -EXPORT_SYMBOL_GPL vmlinux 0x6281399b irq_create_mapping_affinity -EXPORT_SYMBOL_GPL vmlinux 0x62925846 pm_generic_suspend -EXPORT_SYMBOL_GPL vmlinux 0x6295effa __clk_mux_determine_rate_closest -EXPORT_SYMBOL_GPL vmlinux 0x62b66053 omap_iommu_restore_ctx +EXPORT_SYMBOL_GPL vmlinux 0x6280c99f lp8788_read_multi_bytes +EXPORT_SYMBOL_GPL vmlinux 0x6288f39c ahci_reset_controller +EXPORT_SYMBOL_GPL vmlinux 0x628a62d0 xfrm_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0x62a1e37c devlink_region_create +EXPORT_SYMBOL_GPL vmlinux 0x62b2947c xhci_dbg_trace +EXPORT_SYMBOL_GPL vmlinux 0x62b7999c mptcp_subflow_request_sock_ops +EXPORT_SYMBOL_GPL vmlinux 0x62bb0211 gpiochip_add_data_with_key EXPORT_SYMBOL_GPL vmlinux 0x62bb09bf clocks_calc_mult_shift -EXPORT_SYMBOL_GPL vmlinux 0x62c7effa mpc8xxx_spi_rx_buf_u8 -EXPORT_SYMBOL_GPL vmlinux 0x62cf2223 irq_set_default_host +EXPORT_SYMBOL_GPL vmlinux 0x62c5f1df crypto_stats_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x62cba7b3 snd_soc_dapm_new_controls +EXPORT_SYMBOL_GPL vmlinux 0x62d08f71 ata_sas_port_stop EXPORT_SYMBOL_GPL vmlinux 0x62d0e2a6 __wake_up_locked -EXPORT_SYMBOL_GPL vmlinux 0x62d7e437 vp_modern_queue_address -EXPORT_SYMBOL_GPL vmlinux 0x62d8b170 vfs_submount -EXPORT_SYMBOL_GPL vmlinux 0x62e176fe tps6586x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x62d48712 device_store_ulong +EXPORT_SYMBOL_GPL vmlinux 0x62d8b69c skb_segment_list +EXPORT_SYMBOL_GPL vmlinux 0x62dd9bc2 proc_create_net_single +EXPORT_SYMBOL_GPL vmlinux 0x62ecd6c5 fscrypt_get_symlink +EXPORT_SYMBOL_GPL vmlinux 0x63059e21 fscrypt_ioctl_get_nonce EXPORT_SYMBOL_GPL vmlinux 0x63090722 trace_seq_vprintf EXPORT_SYMBOL_GPL vmlinux 0x63150e06 clk_get_parent -EXPORT_SYMBOL_GPL vmlinux 0x6318f453 blkg_rwstat_recursive_sum -EXPORT_SYMBOL_GPL vmlinux 0x631967b4 ata_host_detach EXPORT_SYMBOL_GPL vmlinux 0x63197685 s2idle_wake -EXPORT_SYMBOL_GPL vmlinux 0x632886bb devm_regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x63213c68 scsi_internal_device_block_nowait +EXPORT_SYMBOL_GPL vmlinux 0x6323d940 sata_scr_valid EXPORT_SYMBOL_GPL vmlinux 0x633cb2c6 register_kprobe -EXPORT_SYMBOL_GPL vmlinux 0x6347dc3e regulator_map_voltage_ascend -EXPORT_SYMBOL_GPL vmlinux 0x634b91f2 __traceiter_sched_util_est_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x6347d51c nvmem_cell_get EXPORT_SYMBOL_GPL vmlinux 0x634b9d42 __SCK__tp_func_block_unplug -EXPORT_SYMBOL_GPL vmlinux 0x63563d68 of_pm_clk_add_clks -EXPORT_SYMBOL_GPL vmlinux 0x635a72dc iommu_sva_get_pasid -EXPORT_SYMBOL_GPL vmlinux 0x635d725a watchdog_init_timeout -EXPORT_SYMBOL_GPL vmlinux 0x6364e924 __pci_reset_function_locked -EXPORT_SYMBOL_GPL vmlinux 0x636c521a ata_sff_softreset -EXPORT_SYMBOL_GPL vmlinux 0x636c69a4 icc_provider_del +EXPORT_SYMBOL_GPL vmlinux 0x63541ac5 pci_bus_add_device +EXPORT_SYMBOL_GPL vmlinux 0x637174b4 pci_cfg_access_unlock +EXPORT_SYMBOL_GPL vmlinux 0x638380d5 mtd_get_fact_prot_info +EXPORT_SYMBOL_GPL vmlinux 0x638470b7 iomap_is_partially_uptodate EXPORT_SYMBOL_GPL vmlinux 0x638a85b3 nvmem_add_cell_table -EXPORT_SYMBOL_GPL vmlinux 0x638b55a5 sock_diag_save_cookie -EXPORT_SYMBOL_GPL vmlinux 0x638c8336 free_io_pgtable_ops -EXPORT_SYMBOL_GPL vmlinux 0x63976f6a snd_dmaengine_pcm_close -EXPORT_SYMBOL_GPL vmlinux 0x63a2ca63 rio_set_port_lockout +EXPORT_SYMBOL_GPL vmlinux 0x63a3a271 dev_queue_xmit_nit EXPORT_SYMBOL_GPL vmlinux 0x63adbf92 encode_rs8 -EXPORT_SYMBOL_GPL vmlinux 0x63bf2fa4 tpm_chip_stop -EXPORT_SYMBOL_GPL vmlinux 0x63c0130d dm_device_name EXPORT_SYMBOL_GPL vmlinux 0x63c08029 clk_bulk_unprepare -EXPORT_SYMBOL_GPL vmlinux 0x63c1bec2 device_match_name -EXPORT_SYMBOL_GPL vmlinux 0x63c28d4b device_find_child -EXPORT_SYMBOL_GPL vmlinux 0x63da6491 fwnode_property_read_u16_array -EXPORT_SYMBOL_GPL vmlinux 0x63dcf779 usb_bulk_msg -EXPORT_SYMBOL_GPL vmlinux 0x64048a24 of_nvmem_cell_get -EXPORT_SYMBOL_GPL vmlinux 0x640932ed snd_device_initialize -EXPORT_SYMBOL_GPL vmlinux 0x640f1d34 dev_pm_opp_of_remove_table -EXPORT_SYMBOL_GPL vmlinux 0x640ff947 mtd_ooblayout_count_eccbytes +EXPORT_SYMBOL_GPL vmlinux 0x63c32946 gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0x63c71470 regulator_set_soft_start_regmap +EXPORT_SYMBOL_GPL vmlinux 0x63c8360d iomap_bmap +EXPORT_SYMBOL_GPL vmlinux 0x63dd9a30 follow_pte +EXPORT_SYMBOL_GPL vmlinux 0x63def9ef crypto_stats_akcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x63ed0a05 skb_mpls_dec_ttl +EXPORT_SYMBOL_GPL vmlinux 0x63f34bf2 vfs_write +EXPORT_SYMBOL_GPL vmlinux 0x63fa8bab class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6409f4ea mddev_unlock +EXPORT_SYMBOL_GPL vmlinux 0x641dfd42 vfs_read +EXPORT_SYMBOL_GPL vmlinux 0x6424fed4 dax_copy_from_iter EXPORT_SYMBOL_GPL vmlinux 0x64256424 visitor32 -EXPORT_SYMBOL_GPL vmlinux 0x6429153c rt_mutex_unlock -EXPORT_SYMBOL_GPL vmlinux 0x642d8b35 of_phy_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0x6426d660 __fl6_sock_lookup +EXPORT_SYMBOL_GPL vmlinux 0x642f0922 nf_queue_entry_get_refs EXPORT_SYMBOL_GPL vmlinux 0x64334fff kernel_read_file_from_fd -EXPORT_SYMBOL_GPL vmlinux 0x643588c9 bus_register +EXPORT_SYMBOL_GPL vmlinux 0x64386baa tty_port_tty_hangup +EXPORT_SYMBOL_GPL vmlinux 0x6443e339 pci_stop_root_bus EXPORT_SYMBOL_GPL vmlinux 0x644bfdcf trace_print_bitmask_seq +EXPORT_SYMBOL_GPL vmlinux 0x6457faf2 debugfs_create_file_unsafe +EXPORT_SYMBOL_GPL vmlinux 0x646203d2 skb_defer_rx_timestamp EXPORT_SYMBOL_GPL vmlinux 0x647537f3 pl320_ipc_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6477790b perf_pmu_register -EXPORT_SYMBOL_GPL vmlinux 0x6478779b bus_unregister -EXPORT_SYMBOL_GPL vmlinux 0x64900062 pci_user_write_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x647ceb5d mtd_lock_user_prot_reg +EXPORT_SYMBOL_GPL vmlinux 0x6482208d power_supply_get_property +EXPORT_SYMBOL_GPL vmlinux 0x6482f951 usb_gadget_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x648c5f56 nfs_ssc_register +EXPORT_SYMBOL_GPL vmlinux 0x649003cf __rio_local_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x6491cbc5 nf_nat_hook EXPORT_SYMBOL_GPL vmlinux 0x64925270 __dax_synchronous EXPORT_SYMBOL_GPL vmlinux 0x6493a2df rht_bucket_nested -EXPORT_SYMBOL_GPL vmlinux 0x64961d2f proc_create_net_data -EXPORT_SYMBOL_GPL vmlinux 0x6496d4ef of_regulator_match EXPORT_SYMBOL_GPL vmlinux 0x6499ca92 copy_from_user_nofault EXPORT_SYMBOL_GPL vmlinux 0x64a2c7e7 meson_clk_mpll_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0x64b6d544 __alloc_pages_bulk -EXPORT_SYMBOL_GPL vmlinux 0x64b90cbd ata_sff_tf_load +EXPORT_SYMBOL_GPL vmlinux 0x64a7193b l3mdev_master_ifindex_rcu +EXPORT_SYMBOL_GPL vmlinux 0x64be85b4 receive_fd EXPORT_SYMBOL_GPL vmlinux 0x64c07d32 btree_remove +EXPORT_SYMBOL_GPL vmlinux 0x64c2ce17 pid_nr_ns EXPORT_SYMBOL_GPL vmlinux 0x64cdf082 xas_load -EXPORT_SYMBOL_GPL vmlinux 0x64d177d3 device_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0x64ce8100 mptcp_subflow_init_cookie_req EXPORT_SYMBOL_GPL vmlinux 0x64e27c4f synth_event_delete -EXPORT_SYMBOL_GPL vmlinux 0x64e51696 virtqueue_kick -EXPORT_SYMBOL_GPL vmlinux 0x64ee46b9 gpiochip_populate_parent_fwspec_fourcell -EXPORT_SYMBOL_GPL vmlinux 0x64fea29f i2c_slave_unregister -EXPORT_SYMBOL_GPL vmlinux 0x650373b8 dma_buf_export +EXPORT_SYMBOL_GPL vmlinux 0x64e379a3 mtk_eint_set_debounce +EXPORT_SYMBOL_GPL vmlinux 0x64e7fadf cpufreq_unregister_governor +EXPORT_SYMBOL_GPL vmlinux 0x64ebb8e1 nvmem_cell_read_u8 +EXPORT_SYMBOL_GPL vmlinux 0x64fdfe0c crypto_register_rng +EXPORT_SYMBOL_GPL vmlinux 0x650546e7 device_match_devt +EXPORT_SYMBOL_GPL vmlinux 0x650b6c0a serial8250_do_startup +EXPORT_SYMBOL_GPL vmlinux 0x6516ae16 efivar_entry_delete EXPORT_SYMBOL_GPL vmlinux 0x651ee67b srcu_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x652237ba device_link_add +EXPORT_SYMBOL_GPL vmlinux 0x65273ea5 percpu_up_write EXPORT_SYMBOL_GPL vmlinux 0x6531a37f mpi_add -EXPORT_SYMBOL_GPL vmlinux 0x65390e3f shmem_read_mapping_page_gfp -EXPORT_SYMBOL_GPL vmlinux 0x65482fc9 serial8250_get_port +EXPORT_SYMBOL_GPL vmlinux 0x653605c8 dev_set_name +EXPORT_SYMBOL_GPL vmlinux 0x653811d0 virtio_device_restore +EXPORT_SYMBOL_GPL vmlinux 0x6538b46a sk_psock_tls_strp_read +EXPORT_SYMBOL_GPL vmlinux 0x6541ecb8 screen_pos EXPORT_SYMBOL_GPL vmlinux 0x65537437 freezer_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x655a76ed regmap_multi_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x6570ed1a __phy_modify_mmd_changed -EXPORT_SYMBOL_GPL vmlinux 0x6573f1be usb_control_msg_recv -EXPORT_SYMBOL_GPL vmlinux 0x65742d6e ata_cable_80wire -EXPORT_SYMBOL_GPL vmlinux 0x6578b630 dev_pm_get_subsys_data -EXPORT_SYMBOL_GPL vmlinux 0x6580db1f ehci_suspend -EXPORT_SYMBOL_GPL vmlinux 0x6589cc53 rockchip_pcie_get_phys -EXPORT_SYMBOL_GPL vmlinux 0x6595333a blkdev_report_zones -EXPORT_SYMBOL_GPL vmlinux 0x659e8a2a cpts_misc_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x65a44fbf skb_zerocopy_iter_dgram -EXPORT_SYMBOL_GPL vmlinux 0x65ae205d mtd_add_partition +EXPORT_SYMBOL_GPL vmlinux 0x65595153 fwnode_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x655a76a7 regulator_bulk_force_disable +EXPORT_SYMBOL_GPL vmlinux 0x65714f7c skb_pull_rcsum +EXPORT_SYMBOL_GPL vmlinux 0x657a7db3 nand_decode_ext_id +EXPORT_SYMBOL_GPL vmlinux 0x65846ef4 devlink_port_type_eth_set +EXPORT_SYMBOL_GPL vmlinux 0x6595e9c2 spi_mem_dtr_supports_op +EXPORT_SYMBOL_GPL vmlinux 0x65986b85 blk_ksm_init_passthrough +EXPORT_SYMBOL_GPL vmlinux 0x65af1e31 setfl +EXPORT_SYMBOL_GPL vmlinux 0x65b245ee dev_pm_clear_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x65c0b9be gpiochip_request_own_desc +EXPORT_SYMBOL_GPL vmlinux 0x65c3c9e2 n_tty_inherit_ops EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers -EXPORT_SYMBOL_GPL vmlinux 0x65cd9ee0 nanddev_isreserved -EXPORT_SYMBOL_GPL vmlinux 0x65e17364 bpf_prog_get_type_dev -EXPORT_SYMBOL_GPL vmlinux 0x65e7e98b usb_phy_generic_unregister -EXPORT_SYMBOL_GPL vmlinux 0x65f28438 __pm_runtime_set_status -EXPORT_SYMBOL_GPL vmlinux 0x6600ffa7 usb_string -EXPORT_SYMBOL_GPL vmlinux 0x660310ba usb_gadget_ep_match_desc +EXPORT_SYMBOL_GPL vmlinux 0x65d843d2 tty_mode_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x65d9f62e iommu_enable_nesting +EXPORT_SYMBOL_GPL vmlinux 0x65f303f0 of_changeset_action +EXPORT_SYMBOL_GPL vmlinux 0x65fea755 device_for_each_child_reverse +EXPORT_SYMBOL_GPL vmlinux 0x660b611b dmaengine_desc_set_metadata_len +EXPORT_SYMBOL_GPL vmlinux 0x66104e3d genphy_c45_pma_read_abilities EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol -EXPORT_SYMBOL_GPL vmlinux 0x6617f817 fwnode_handle_put -EXPORT_SYMBOL_GPL vmlinux 0x661c0289 of_hwspin_lock_get_id_byname -EXPORT_SYMBOL_GPL vmlinux 0x66272775 snd_soc_of_put_dai_link_codecs -EXPORT_SYMBOL_GPL vmlinux 0x66313808 devlink_net +EXPORT_SYMBOL_GPL vmlinux 0x6616b4b0 rt_mutex_lock +EXPORT_SYMBOL_GPL vmlinux 0x661942ba pci_epc_set_msi +EXPORT_SYMBOL_GPL vmlinux 0x661be6fe regulator_map_voltage_ascend +EXPORT_SYMBOL_GPL vmlinux 0x6622b7a8 ip6_redirect +EXPORT_SYMBOL_GPL vmlinux 0x662eebcf i2c_parse_fw_timings EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity +EXPORT_SYMBOL_GPL vmlinux 0x663a5690 ip6_push_pending_frames EXPORT_SYMBOL_GPL vmlinux 0x663bb448 devlink_fmsg_obj_nest_end -EXPORT_SYMBOL_GPL vmlinux 0x66496786 sysfs_remove_groups -EXPORT_SYMBOL_GPL vmlinux 0x66598d6b crypto_stats_ahash_final EXPORT_SYMBOL_GPL vmlinux 0x665e92a0 clk_set_duty_cycle -EXPORT_SYMBOL_GPL vmlinux 0x666a5e37 rio_attach_device -EXPORT_SYMBOL_GPL vmlinux 0x66748d84 iterate_mounts -EXPORT_SYMBOL_GPL vmlinux 0x667cfd97 dummy_con +EXPORT_SYMBOL_GPL vmlinux 0x6664221a netdev_walk_all_upper_dev_rcu +EXPORT_SYMBOL_GPL vmlinux 0x666897d0 iommu_dev_enable_feature +EXPORT_SYMBOL_GPL vmlinux 0x667b606e usb_disable_autosuspend EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x6684c17a devm_regulator_put -EXPORT_SYMBOL_GPL vmlinux 0x66954406 of_devfreq_cooling_register -EXPORT_SYMBOL_GPL vmlinux 0x669556c1 spi_mem_poll_status +EXPORT_SYMBOL_GPL vmlinux 0x668516ad security_path_symlink EXPORT_SYMBOL_GPL vmlinux 0x669594ad musb_clearw -EXPORT_SYMBOL_GPL vmlinux 0x66987f75 gpiochip_add_data_with_key -EXPORT_SYMBOL_GPL vmlinux 0x66adab96 pinmux_generic_get_function_groups +EXPORT_SYMBOL_GPL vmlinux 0x66a06fd6 devm_hwspin_lock_request_specific EXPORT_SYMBOL_GPL vmlinux 0x66b26b2b clk_hw_unregister_divider EXPORT_SYMBOL_GPL vmlinux 0x66b97421 sfp_link_up -EXPORT_SYMBOL_GPL vmlinux 0x66be1e24 user_update +EXPORT_SYMBOL_GPL vmlinux 0x66c36c46 snd_soc_dai_set_pll +EXPORT_SYMBOL_GPL vmlinux 0x66c3a3fe usb_sg_wait +EXPORT_SYMBOL_GPL vmlinux 0x66cd5ad9 dev_pm_put_subsys_data EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr -EXPORT_SYMBOL_GPL vmlinux 0x66dc1011 ata_scsi_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x66e2c4c8 devm_bitmap_alloc -EXPORT_SYMBOL_GPL vmlinux 0x66e4f6e7 devm_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x66e84c37 snd_soc_add_component_controls +EXPORT_SYMBOL_GPL vmlinux 0x66eeccaa bpf_map_inc_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x66f61757 skb_zerocopy_headlen EXPORT_SYMBOL_GPL vmlinux 0x66fc2bc0 badrange_add EXPORT_SYMBOL_GPL vmlinux 0x6703903b register_ftrace_function -EXPORT_SYMBOL_GPL vmlinux 0x6711665a mctrl_gpio_free -EXPORT_SYMBOL_GPL vmlinux 0x671739fa devm_of_led_get -EXPORT_SYMBOL_GPL vmlinux 0x671aa1aa crypto_shash_update EXPORT_SYMBOL_GPL vmlinux 0x6735d56e tcp_ca_get_name_by_key +EXPORT_SYMBOL_GPL vmlinux 0x67376e2d of_led_get +EXPORT_SYMBOL_GPL vmlinux 0x6738fcbb xhci_check_bandwidth EXPORT_SYMBOL_GPL vmlinux 0x67429c91 __SCK__tp_func_block_bio_remap -EXPORT_SYMBOL_GPL vmlinux 0x677ef2b2 ping_queue_rcv_skb +EXPORT_SYMBOL_GPL vmlinux 0x67447022 regcache_drop_region +EXPORT_SYMBOL_GPL vmlinux 0x6760e1c4 device_move +EXPORT_SYMBOL_GPL vmlinux 0x676a1a2f dev_pm_genpd_suspend +EXPORT_SYMBOL_GPL vmlinux 0x677c3524 devm_platform_get_irqs_affinity +EXPORT_SYMBOL_GPL vmlinux 0x677c8b17 vfs_listxattr +EXPORT_SYMBOL_GPL vmlinux 0x677f3d54 fwnode_graph_get_endpoint_by_id EXPORT_SYMBOL_GPL vmlinux 0x6781513c __wake_up_locked_key +EXPORT_SYMBOL_GPL vmlinux 0x6793e86f raw_seq_start EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits -EXPORT_SYMBOL_GPL vmlinux 0x67a1c3c8 of_icc_get_by_index -EXPORT_SYMBOL_GPL vmlinux 0x67a53472 __bio_crypt_clone -EXPORT_SYMBOL_GPL vmlinux 0x67b50f3b tty_ldisc_receive_buf -EXPORT_SYMBOL_GPL vmlinux 0x67bbbb2c get_task_pid -EXPORT_SYMBOL_GPL vmlinux 0x67bc06ad loop_backing_file +EXPORT_SYMBOL_GPL vmlinux 0x67b4ac4d regmap_read +EXPORT_SYMBOL_GPL vmlinux 0x67c85fc8 do_xdp_generic +EXPORT_SYMBOL_GPL vmlinux 0x67cc1605 fw_devlink_purge_absent_suppliers EXPORT_SYMBOL_GPL vmlinux 0x67da9f7c sha512_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x67e37543 pinctrl_register_and_init -EXPORT_SYMBOL_GPL vmlinux 0x67ecdc5b device_add -EXPORT_SYMBOL_GPL vmlinux 0x67f05496 pm_generic_suspend_late -EXPORT_SYMBOL_GPL vmlinux 0x680f4b5c nand_get_small_page_ooblayout -EXPORT_SYMBOL_GPL vmlinux 0x681f911d regmap_parse_val -EXPORT_SYMBOL_GPL vmlinux 0x682c23a9 vfs_setxattr -EXPORT_SYMBOL_GPL vmlinux 0x682e00ee driver_register +EXPORT_SYMBOL_GPL vmlinux 0x67e16b30 ip6_route_output_flags +EXPORT_SYMBOL_GPL vmlinux 0x67f5ae0c rtc_class_open +EXPORT_SYMBOL_GPL vmlinux 0x6800d716 scmi_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6816464d fib_nh_common_init +EXPORT_SYMBOL_GPL vmlinux 0x681cca9d iommu_capable EXPORT_SYMBOL_GPL vmlinux 0x682ff057 ring_buffer_commit_overrun_cpu -EXPORT_SYMBOL_GPL vmlinux 0x6833a0a2 reset_controller_unregister -EXPORT_SYMBOL_GPL vmlinux 0x68453e7b mbox_chan_txdone -EXPORT_SYMBOL_GPL vmlinux 0x6845584e skb_copy_ubufs -EXPORT_SYMBOL_GPL vmlinux 0x685c4652 page_mkclean +EXPORT_SYMBOL_GPL vmlinux 0x68373bea gov_attr_set_get +EXPORT_SYMBOL_GPL vmlinux 0x683fff4f posix_acl_create +EXPORT_SYMBOL_GPL vmlinux 0x6840cfc8 snd_soc_component_set_sysclk +EXPORT_SYMBOL_GPL vmlinux 0x685192d5 blkcg_policy_register +EXPORT_SYMBOL_GPL vmlinux 0x6856af16 pci_user_read_config_word +EXPORT_SYMBOL_GPL vmlinux 0x685bbdca ipv6_dup_options +EXPORT_SYMBOL_GPL vmlinux 0x6861b320 simple_attr_release EXPORT_SYMBOL_GPL vmlinux 0x68758fda nvmem_cell_write -EXPORT_SYMBOL_GPL vmlinux 0x6877e12e crypto_alloc_rng -EXPORT_SYMBOL_GPL vmlinux 0x687a692c bpf_trace_run9 -EXPORT_SYMBOL_GPL vmlinux 0x6882ebd4 vchan_find_desc -EXPORT_SYMBOL_GPL vmlinux 0x6888b69e bpf_map_inc +EXPORT_SYMBOL_GPL vmlinux 0x687cd471 serial8250_do_set_divisor +EXPORT_SYMBOL_GPL vmlinux 0x6881cbd7 icc_node_add +EXPORT_SYMBOL_GPL vmlinux 0x68820985 mtd_block_isbad EXPORT_SYMBOL_GPL vmlinux 0x68952493 rcu_note_context_switch -EXPORT_SYMBOL_GPL vmlinux 0x68a2c549 fib4_rule_default -EXPORT_SYMBOL_GPL vmlinux 0x68b1454d devlink_dpipe_headers_register -EXPORT_SYMBOL_GPL vmlinux 0x68b9affd serial8250_set_defaults -EXPORT_SYMBOL_GPL vmlinux 0x68bd386b inet_twsk_hashdance -EXPORT_SYMBOL_GPL vmlinux 0x68bdd750 snd_soc_component_compr_copy -EXPORT_SYMBOL_GPL vmlinux 0x68c2b71a md_submit_discard_bio -EXPORT_SYMBOL_GPL vmlinux 0x68dc28ff alloc_empty_file -EXPORT_SYMBOL_GPL vmlinux 0x68ec1ec7 irq_domain_push_irq -EXPORT_SYMBOL_GPL vmlinux 0x68f4b5ce rio_request_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x6895a890 dev_pm_opp_put_prop_name +EXPORT_SYMBOL_GPL vmlinux 0x689f838a regulator_get_linear_step +EXPORT_SYMBOL_GPL vmlinux 0x68a3d685 pinctrl_generic_get_group_pins +EXPORT_SYMBOL_GPL vmlinux 0x68b16f65 pci_create_slot +EXPORT_SYMBOL_GPL vmlinux 0x68b461d0 ip_route_output_tunnel +EXPORT_SYMBOL_GPL vmlinux 0x68bd68e9 phy_led_trigger_change_speed +EXPORT_SYMBOL_GPL vmlinux 0x68c0b945 irq_set_default_host +EXPORT_SYMBOL_GPL vmlinux 0x68d172db dma_request_chan +EXPORT_SYMBOL_GPL vmlinux 0x68e6d5de free_io_pgtable_ops +EXPORT_SYMBOL_GPL vmlinux 0x68edda25 filemap_read +EXPORT_SYMBOL_GPL vmlinux 0x68f50b88 sdhci_cqe_disable +EXPORT_SYMBOL_GPL vmlinux 0x68f7aacf irq_set_chained_handler_and_data +EXPORT_SYMBOL_GPL vmlinux 0x68ff0884 serdev_device_set_flow_control EXPORT_SYMBOL_GPL vmlinux 0x690f585e phy_basic_ports_array EXPORT_SYMBOL_GPL vmlinux 0x6913865a trace_clock_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x692028be dma_alloc_noncontiguous EXPORT_SYMBOL_GPL vmlinux 0x692098e2 list_lru_del EXPORT_SYMBOL_GPL vmlinux 0x692a4f08 idr_alloc -EXPORT_SYMBOL_GPL vmlinux 0x694120ff usb_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0x6931d026 sata_set_spd EXPORT_SYMBOL_GPL vmlinux 0x6945725e mpi_read_raw_data +EXPORT_SYMBOL_GPL vmlinux 0x6951ec3e nvdimm_kobj +EXPORT_SYMBOL_GPL vmlinux 0x6958cb5e platform_irq_count +EXPORT_SYMBOL_GPL vmlinux 0x695b16fa usb_get_from_anchor EXPORT_SYMBOL_GPL vmlinux 0x695bf5e9 hrtimer_cancel EXPORT_SYMBOL_GPL vmlinux 0x69637b2c __traceiter_powernv_throttle EXPORT_SYMBOL_GPL vmlinux 0x696adc36 cleanup_srcu_struct EXPORT_SYMBOL_GPL vmlinux 0x696f2b63 of_changeset_init -EXPORT_SYMBOL_GPL vmlinux 0x6973f63b of_pci_address_to_resource -EXPORT_SYMBOL_GPL vmlinux 0x697a181c of_get_named_gpio_flags +EXPORT_SYMBOL_GPL vmlinux 0x6973a912 vfs_lock_file EXPORT_SYMBOL_GPL vmlinux 0x697c5d0d tracing_snapshot_alloc -EXPORT_SYMBOL_GPL vmlinux 0x697d805f usb_free_coherent -EXPORT_SYMBOL_GPL vmlinux 0x6987b526 rio_release_inb_pwrite -EXPORT_SYMBOL_GPL vmlinux 0x6990f1c9 ehci_handshake -EXPORT_SYMBOL_GPL vmlinux 0x699b8183 store_sampling_rate -EXPORT_SYMBOL_GPL vmlinux 0x699ca596 usb_get_phy -EXPORT_SYMBOL_GPL vmlinux 0x699ded7f icc_node_del -EXPORT_SYMBOL_GPL vmlinux 0x69b41820 inverse_translate +EXPORT_SYMBOL_GPL vmlinux 0x69a40639 tps6586x_reads +EXPORT_SYMBOL_GPL vmlinux 0x69ac1258 wait_for_stable_page +EXPORT_SYMBOL_GPL vmlinux 0x69b4b31a platform_bus +EXPORT_SYMBOL_GPL vmlinux 0x69b7c0ea virtqueue_add_inbuf_ctx +EXPORT_SYMBOL_GPL vmlinux 0x69ce3516 decrypt_blob EXPORT_SYMBOL_GPL vmlinux 0x69cf0632 mpi_fromstr -EXPORT_SYMBOL_GPL vmlinux 0x69e2316c ethnl_cable_test_free +EXPORT_SYMBOL_GPL vmlinux 0x69de4007 snd_soc_info_volsw_sx +EXPORT_SYMBOL_GPL vmlinux 0x69e58b1d tps65217_reg_read EXPORT_SYMBOL_GPL vmlinux 0x69e683de uuid_gen +EXPORT_SYMBOL_GPL vmlinux 0x69e83605 mc146818_get_time EXPORT_SYMBOL_GPL vmlinux 0x69ee2220 linear_range_get_selector_high -EXPORT_SYMBOL_GPL vmlinux 0x6a04cf5e ata_std_sched_eh -EXPORT_SYMBOL_GPL vmlinux 0x6a051151 ata_bmdma_dumb_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x6a023736 fib_nl_delrule EXPORT_SYMBOL_GPL vmlinux 0x6a05b65b fb_videomode_from_videomode EXPORT_SYMBOL_GPL vmlinux 0x6a1733eb iommu_group_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6a276651 usb_control_msg +EXPORT_SYMBOL_GPL vmlinux 0x6a19d62c iommu_sva_bind_device +EXPORT_SYMBOL_GPL vmlinux 0x6a1af277 sysfs_unbreak_active_protection EXPORT_SYMBOL_GPL vmlinux 0x6a29e5d2 irq_force_affinity -EXPORT_SYMBOL_GPL vmlinux 0x6a30fcae icc_node_create -EXPORT_SYMBOL_GPL vmlinux 0x6a31e703 usb_hcd_pci_remove -EXPORT_SYMBOL_GPL vmlinux 0x6a3839d4 rtc_alarm_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0x6a2b08cb __irq_set_handler +EXPORT_SYMBOL_GPL vmlinux 0x6a2e9868 rtc_set_time +EXPORT_SYMBOL_GPL vmlinux 0x6a306420 nand_readid_op +EXPORT_SYMBOL_GPL vmlinux 0x6a41bdd8 get_mtd_device_nm EXPORT_SYMBOL_GPL vmlinux 0x6a460dc5 schedule_hrtimeout -EXPORT_SYMBOL_GPL vmlinux 0x6a4a7ee4 mtd_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6a4a131c tcp_bpf_sendmsg_redir +EXPORT_SYMBOL_GPL vmlinux 0x6a4bc829 ata_pci_sff_init_one EXPORT_SYMBOL_GPL vmlinux 0x6a4f623b mmu_notifier_synchronize -EXPORT_SYMBOL_GPL vmlinux 0x6a5a1f27 amba_apb_device_add_res +EXPORT_SYMBOL_GPL vmlinux 0x6a5442bb sysfs_create_link_nowarn +EXPORT_SYMBOL_GPL vmlinux 0x6a5bcd60 rio_register_driver EXPORT_SYMBOL_GPL vmlinux 0x6a5e2bde __cookie_v6_init_sequence -EXPORT_SYMBOL_GPL vmlinux 0x6a5f8567 snd_soc_get_volsw -EXPORT_SYMBOL_GPL vmlinux 0x6a70f969 rdev_set_badblocks -EXPORT_SYMBOL_GPL vmlinux 0x6a855596 iommu_aux_get_pasid +EXPORT_SYMBOL_GPL vmlinux 0x6a62be86 device_wakeup_disable +EXPORT_SYMBOL_GPL vmlinux 0x6a779560 get_tree_mtd +EXPORT_SYMBOL_GPL vmlinux 0x6a7b4d7e trace_get_event_file +EXPORT_SYMBOL_GPL vmlinux 0x6a8c45b7 devfreq_event_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x6a91de15 regmap_noinc_write +EXPORT_SYMBOL_GPL vmlinux 0x6aa1b9ee bsg_job_done EXPORT_SYMBOL_GPL vmlinux 0x6aa5e412 gen_pool_avail -EXPORT_SYMBOL_GPL vmlinux 0x6aa9a3dc skb_clone_tx_timestamp -EXPORT_SYMBOL_GPL vmlinux 0x6aa9ccb1 devm_get_free_pages -EXPORT_SYMBOL_GPL vmlinux 0x6aaa8bea __rio_local_write_config_32 -EXPORT_SYMBOL_GPL vmlinux 0x6ab03039 mtd_get_unmapped_area EXPORT_SYMBOL_GPL vmlinux 0x6ab1c8bb xas_store -EXPORT_SYMBOL_GPL vmlinux 0x6ab7f56a usb_get_hcd -EXPORT_SYMBOL_GPL vmlinux 0x6abf5c79 usb_hcd_giveback_urb -EXPORT_SYMBOL_GPL vmlinux 0x6abfd9a6 dw_pcie_ep_init_notify -EXPORT_SYMBOL_GPL vmlinux 0x6ac778fa bpf_map_put -EXPORT_SYMBOL_GPL vmlinux 0x6aca94d1 blk_rq_prep_clone -EXPORT_SYMBOL_GPL vmlinux 0x6ad41202 get_net_ns -EXPORT_SYMBOL_GPL vmlinux 0x6ad6c263 dev_get_regmap -EXPORT_SYMBOL_GPL vmlinux 0x6ae44407 dev_pm_domain_attach +EXPORT_SYMBOL_GPL vmlinux 0x6ab98554 __sdhci_add_host +EXPORT_SYMBOL_GPL vmlinux 0x6ad2cb9d dev_pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x6ad6bd60 __traceiter_devlink_hwmsg +EXPORT_SYMBOL_GPL vmlinux 0x6ad83b60 of_usb_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x6aede6fe xhci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x6af03a53 snd_pcm_stream_unlock +EXPORT_SYMBOL_GPL vmlinux 0x6af1d2fe pktgen_xfrm_outer_mode_output +EXPORT_SYMBOL_GPL vmlinux 0x6af4a82a serdev_device_write_wakeup EXPORT_SYMBOL_GPL vmlinux 0x6af8c6dc musb_writel -EXPORT_SYMBOL_GPL vmlinux 0x6b17dbf8 of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x6afa3a96 sk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x6afb8e02 gpiod_set_transitory +EXPORT_SYMBOL_GPL vmlinux 0x6afbd160 lp8788_write_byte EXPORT_SYMBOL_GPL vmlinux 0x6b198c77 led_colors +EXPORT_SYMBOL_GPL vmlinux 0x6b22f264 nd_region_dev EXPORT_SYMBOL_GPL vmlinux 0x6b334acc trace_seq_bitmask -EXPORT_SYMBOL_GPL vmlinux 0x6b3f07c6 ata_wait_register -EXPORT_SYMBOL_GPL vmlinux 0x6b403322 crypto_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x6b3ee1ed attribute_container_register EXPORT_SYMBOL_GPL vmlinux 0x6b413c9b sfp_link_down EXPORT_SYMBOL_GPL vmlinux 0x6b47f8a4 hisi_clk_register_mux -EXPORT_SYMBOL_GPL vmlinux 0x6b627b03 tps6586x_irq_get_virq -EXPORT_SYMBOL_GPL vmlinux 0x6b6404c5 ping_err -EXPORT_SYMBOL_GPL vmlinux 0x6b7f89c0 inet_csk_route_req +EXPORT_SYMBOL_GPL vmlinux 0x6b51097b blk_rq_prep_clone +EXPORT_SYMBOL_GPL vmlinux 0x6b66f4a0 phy_power_on +EXPORT_SYMBOL_GPL vmlinux 0x6b71db15 crypto_unregister_templates EXPORT_SYMBOL_GPL vmlinux 0x6b81c38b power_supply_unreg_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6b91ebb3 dev_attr_ncq_prio_supported -EXPORT_SYMBOL_GPL vmlinux 0x6ba16ca0 snd_soc_dai_get_channel_map -EXPORT_SYMBOL_GPL vmlinux 0x6ba4dc88 dma_vmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x6b8202dc gpiod_get_value +EXPORT_SYMBOL_GPL vmlinux 0x6b8e973c nand_ecc_restore_req +EXPORT_SYMBOL_GPL vmlinux 0x6b98831b bio_start_io_acct_time +EXPORT_SYMBOL_GPL vmlinux 0x6bb6bdc3 mpc8xxx_spi_tx_buf_u32 +EXPORT_SYMBOL_GPL vmlinux 0x6bb7ccbb ata_sas_port_destroy +EXPORT_SYMBOL_GPL vmlinux 0x6bbd1ab4 devm_regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x6bbd211a bpfilter_ops +EXPORT_SYMBOL_GPL vmlinux 0x6bbdfd8a pinctrl_remove_gpio_range EXPORT_SYMBOL_GPL vmlinux 0x6bcdedc0 mpi_point_init EXPORT_SYMBOL_GPL vmlinux 0x6bce93d8 list_lru_walk_node -EXPORT_SYMBOL_GPL vmlinux 0x6bcfe820 ata_sff_dma_pause EXPORT_SYMBOL_GPL vmlinux 0x6bd1aa56 stack_trace_save -EXPORT_SYMBOL_GPL vmlinux 0x6bd2d61f device_get_named_child_node +EXPORT_SYMBOL_GPL vmlinux 0x6bd6dc8c usb_get_intf +EXPORT_SYMBOL_GPL vmlinux 0x6bdb5ed1 i2c_match_id EXPORT_SYMBOL_GPL vmlinux 0x6bdd680c snd_pcm_fill_iec958_consumer_hw_params -EXPORT_SYMBOL_GPL vmlinux 0x6be79023 rio_mport_write_config_32 -EXPORT_SYMBOL_GPL vmlinux 0x6bf8891b devm_gpiod_unhinge -EXPORT_SYMBOL_GPL vmlinux 0x6c089765 serdev_device_write_room -EXPORT_SYMBOL_GPL vmlinux 0x6c0d34de snd_soc_dapm_get_pin_switch -EXPORT_SYMBOL_GPL vmlinux 0x6c0dbbb8 fwnode_get_named_gpiod -EXPORT_SYMBOL_GPL vmlinux 0x6c123888 regulator_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6c27652f dev_pm_opp_put +EXPORT_SYMBOL_GPL vmlinux 0x6bf76d04 i2c_slave_register +EXPORT_SYMBOL_GPL vmlinux 0x6c2a2f73 of_icc_get +EXPORT_SYMBOL_GPL vmlinux 0x6c3a74e8 pm_generic_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0x6c3ae692 wbc_account_cgroup_owner EXPORT_SYMBOL_GPL vmlinux 0x6c3f70e0 guid_gen -EXPORT_SYMBOL_GPL vmlinux 0x6c4213e0 auxiliary_find_device EXPORT_SYMBOL_GPL vmlinux 0x6c43b737 ata_sff_queue_delayed_work -EXPORT_SYMBOL_GPL vmlinux 0x6c453f77 device_get_dma_attr EXPORT_SYMBOL_GPL vmlinux 0x6c4b6684 reset_control_assert -EXPORT_SYMBOL_GPL vmlinux 0x6c5885bf iomap_fiemap +EXPORT_SYMBOL_GPL vmlinux 0x6c515b45 fib_alias_hw_flags_set +EXPORT_SYMBOL_GPL vmlinux 0x6c57d515 dma_vunmap_noncontiguous EXPORT_SYMBOL_GPL vmlinux 0x6c59d27e kobject_rename -EXPORT_SYMBOL_GPL vmlinux 0x6c5abcd0 sock_gen_put EXPORT_SYMBOL_GPL vmlinux 0x6c5ad0cd kmsg_dump_register -EXPORT_SYMBOL_GPL vmlinux 0x6c644e76 blk_mq_alloc_sq_tag_set -EXPORT_SYMBOL_GPL vmlinux 0x6c817121 devm_free_percpu -EXPORT_SYMBOL_GPL vmlinux 0x6c953cdf snd_soc_get_enum_double +EXPORT_SYMBOL_GPL vmlinux 0x6c6104af icc_link_destroy +EXPORT_SYMBOL_GPL vmlinux 0x6c630537 vc_scrolldelta_helper +EXPORT_SYMBOL_GPL vmlinux 0x6c6874d6 pinconf_generic_parse_dt_config +EXPORT_SYMBOL_GPL vmlinux 0x6c7b435f mc146818_does_rtc_work +EXPORT_SYMBOL_GPL vmlinux 0x6c90773c wm831x_reg_unlock EXPORT_SYMBOL_GPL vmlinux 0x6c956075 __SCK__tp_func_devlink_hwerr +EXPORT_SYMBOL_GPL vmlinux 0x6ca104e8 snd_soc_info_volsw_range EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain -EXPORT_SYMBOL_GPL vmlinux 0x6cb878aa dev_pm_opp_get_suspend_opp_freq -EXPORT_SYMBOL_GPL vmlinux 0x6cbb6b58 kthread_unpark -EXPORT_SYMBOL_GPL vmlinux 0x6cbf9424 spi_async_locked -EXPORT_SYMBOL_GPL vmlinux 0x6cc13996 __traceiter_detach_device_from_domain -EXPORT_SYMBOL_GPL vmlinux 0x6cc42366 sysfs_remove_file_from_group -EXPORT_SYMBOL_GPL vmlinux 0x6cc512cb __put_task_struct -EXPORT_SYMBOL_GPL vmlinux 0x6cc9699b securityfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x6ca944e3 hrtimer_init_sleeper +EXPORT_SYMBOL_GPL vmlinux 0x6cadc5a5 mtk_pinconf_bias_set +EXPORT_SYMBOL_GPL vmlinux 0x6cb654f2 vp_modern_map_vq_notify +EXPORT_SYMBOL_GPL vmlinux 0x6cb6b871 ip_fib_metrics_init +EXPORT_SYMBOL_GPL vmlinux 0x6cbe675e rio_mport_get_efb +EXPORT_SYMBOL_GPL vmlinux 0x6cbf3dbb pm_runtime_no_callbacks EXPORT_SYMBOL_GPL vmlinux 0x6cd17e49 zs_pool_stats -EXPORT_SYMBOL_GPL vmlinux 0x6cd9b0d5 blk_bio_list_merge -EXPORT_SYMBOL_GPL vmlinux 0x6cdb4fbe crypto_grab_akcipher -EXPORT_SYMBOL_GPL vmlinux 0x6ce3efba skb_gso_validate_mac_len -EXPORT_SYMBOL_GPL vmlinux 0x6cee207d usb_phy_set_charger_state +EXPORT_SYMBOL_GPL vmlinux 0x6cd1a7ca fsnotify_init_mark +EXPORT_SYMBOL_GPL vmlinux 0x6ce98485 device_property_present EXPORT_SYMBOL_GPL vmlinux 0x6d09843f copy_bpf_fprog_from_user EXPORT_SYMBOL_GPL vmlinux 0x6d0ae550 pinctrl_gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x6d1cd12e edac_device_add_device +EXPORT_SYMBOL_GPL vmlinux 0x6d26a5c0 __lock_page_killable EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list -EXPORT_SYMBOL_GPL vmlinux 0x6d42ee63 snd_soc_add_card_controls +EXPORT_SYMBOL_GPL vmlinux 0x6d30bc6c serdev_device_set_baudrate +EXPORT_SYMBOL_GPL vmlinux 0x6d3759f1 bsg_remove_queue +EXPORT_SYMBOL_GPL vmlinux 0x6d3e8b41 scsi_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0x6d43ebea snd_soc_component_update_bits EXPORT_SYMBOL_GPL vmlinux 0x6d467b08 arm_smccc_1_1_get_conduit -EXPORT_SYMBOL_GPL vmlinux 0x6d4a9e9f gpiod_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x6d4f233f list_lru_walk_one -EXPORT_SYMBOL_GPL vmlinux 0x6d54c11c dax_region_put -EXPORT_SYMBOL_GPL vmlinux 0x6d680f7b ping_seq_next -EXPORT_SYMBOL_GPL vmlinux 0x6d69694e inet_csk_reqsk_queue_hash_add -EXPORT_SYMBOL_GPL vmlinux 0x6d6c4ccb ata_noop_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x6d47b5cd dev_pm_opp_of_add_table +EXPORT_SYMBOL_GPL vmlinux 0x6d4c4cb5 driver_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x6d6925f2 irq_chip_enable_parent EXPORT_SYMBOL_GPL vmlinux 0x6d6fec1f ktime_mono_to_any -EXPORT_SYMBOL_GPL vmlinux 0x6d79a60c devm_power_supply_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x6d759095 tps65217_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0x6d77b520 efivar_entry_iter EXPORT_SYMBOL_GPL vmlinux 0x6d7e951e rcu_exp_batches_completed -EXPORT_SYMBOL_GPL vmlinux 0x6d8f6d0b ata_sff_wait_ready -EXPORT_SYMBOL_GPL vmlinux 0x6db0928e edac_mc_alloc +EXPORT_SYMBOL_GPL vmlinux 0x6d9ed471 fscrypt_set_bio_crypt_ctx +EXPORT_SYMBOL_GPL vmlinux 0x6dad91b1 sdhci_pltfm_free +EXPORT_SYMBOL_GPL vmlinux 0x6db8c476 iommu_sva_unbind_device EXPORT_SYMBOL_GPL vmlinux 0x6dbaafd3 put_old_timespec32 +EXPORT_SYMBOL_GPL vmlinux 0x6dbc0aa3 icc_get +EXPORT_SYMBOL_GPL vmlinux 0x6dbd8016 sk_psock_drop +EXPORT_SYMBOL_GPL vmlinux 0x6dca7215 ata_sff_lost_interrupt EXPORT_SYMBOL_GPL vmlinux 0x6dd1b8a7 parse_OID EXPORT_SYMBOL_GPL vmlinux 0x6dd5680d sprint_symbol_build_id -EXPORT_SYMBOL_GPL vmlinux 0x6dd9f705 sock_map_unhash -EXPORT_SYMBOL_GPL vmlinux 0x6deaf655 edac_pci_handle_pe +EXPORT_SYMBOL_GPL vmlinux 0x6de94a65 crypto_drop_spawn +EXPORT_SYMBOL_GPL vmlinux 0x6df204d2 virtqueue_enable_cb_prepare +EXPORT_SYMBOL_GPL vmlinux 0x6df3d40d devres_open_group +EXPORT_SYMBOL_GPL vmlinux 0x6dfd6a79 ahci_check_ready +EXPORT_SYMBOL_GPL vmlinux 0x6e03fdfd i2c_handle_smbus_host_notify EXPORT_SYMBOL_GPL vmlinux 0x6e09d93d __SCK__tp_func_map -EXPORT_SYMBOL_GPL vmlinux 0x6e0c445e __traceiter_block_bio_complete -EXPORT_SYMBOL_GPL vmlinux 0x6e155443 devm_regmap_field_free -EXPORT_SYMBOL_GPL vmlinux 0x6e34fa36 console_drivers -EXPORT_SYMBOL_GPL vmlinux 0x6e3f755e ethnl_cable_test_finished +EXPORT_SYMBOL_GPL vmlinux 0x6e186d3e mtd_get_user_prot_info +EXPORT_SYMBOL_GPL vmlinux 0x6e197c71 device_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x6e28ab13 __vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x6e356f43 led_trigger_event EXPORT_SYMBOL_GPL vmlinux 0x6e3ff83a edac_device_alloc_index EXPORT_SYMBOL_GPL vmlinux 0x6e4bc056 spi_res_free -EXPORT_SYMBOL_GPL vmlinux 0x6e53c538 dev_pm_opp_put_prop_name +EXPORT_SYMBOL_GPL vmlinux 0x6e6025f5 thermal_zone_device_disable EXPORT_SYMBOL_GPL vmlinux 0x6e635087 percpu_ref_exit -EXPORT_SYMBOL_GPL vmlinux 0x6e747873 usb_enable_ltm +EXPORT_SYMBOL_GPL vmlinux 0x6e6b28db regulator_suspend_disable +EXPORT_SYMBOL_GPL vmlinux 0x6e6cb7f6 irq_chip_mask_ack_parent +EXPORT_SYMBOL_GPL vmlinux 0x6e6d4ca4 snd_soc_resume +EXPORT_SYMBOL_GPL vmlinux 0x6e76a0bd dm_noflush_suspending EXPORT_SYMBOL_GPL vmlinux 0x6e7943ec iommu_group_id EXPORT_SYMBOL_GPL vmlinux 0x6e89a560 regmap_irq_chip_get_base -EXPORT_SYMBOL_GPL vmlinux 0x6e8b170d mtd_writev -EXPORT_SYMBOL_GPL vmlinux 0x6e8fff0a devm_hwmon_device_register_with_info -EXPORT_SYMBOL_GPL vmlinux 0x6e94071d ip6_datagram_send_ctl -EXPORT_SYMBOL_GPL vmlinux 0x6e98ba70 fuse_fill_super_common -EXPORT_SYMBOL_GPL vmlinux 0x6e9ba56c screen_pos -EXPORT_SYMBOL_GPL vmlinux 0x6eae81f9 nf_queue_entry_get_refs -EXPORT_SYMBOL_GPL vmlinux 0x6eb04f5c gpiod_export -EXPORT_SYMBOL_GPL vmlinux 0x6ebba05b sata_pmp_qc_defer_cmd_switch +EXPORT_SYMBOL_GPL vmlinux 0x6e8e4d57 device_remove_properties +EXPORT_SYMBOL_GPL vmlinux 0x6eac9dd6 usb_alloc_streams +EXPORT_SYMBOL_GPL vmlinux 0x6eadfe19 tcp_sendmsg_locked EXPORT_SYMBOL_GPL vmlinux 0x6ebe366f ktime_get_mono_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0x6ec94c11 kill_device -EXPORT_SYMBOL_GPL vmlinux 0x6edc9b28 of_property_read_string_helper -EXPORT_SYMBOL_GPL vmlinux 0x6ee0fb79 device_remove_file -EXPORT_SYMBOL_GPL vmlinux 0x6ee3089d shash_free_singlespawn_instance +EXPORT_SYMBOL_GPL vmlinux 0x6ed0952f relay_reset +EXPORT_SYMBOL_GPL vmlinux 0x6edba185 ata_sff_wait_ready EXPORT_SYMBOL_GPL vmlinux 0x6ee8c94b sfp_get_module_eeprom -EXPORT_SYMBOL_GPL vmlinux 0x6eed2e67 kernfs_path_from_node EXPORT_SYMBOL_GPL vmlinux 0x6ef6b54f ktime_get_boot_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0x6effa581 usb_hcd_unmap_urb_for_dma -EXPORT_SYMBOL_GPL vmlinux 0x6f09ecd0 devm_rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0x6efb658f seg6_do_srh_inline +EXPORT_SYMBOL_GPL vmlinux 0x6f0eb0e0 devlink_dpipe_action_put EXPORT_SYMBOL_GPL vmlinux 0x6f12560a get_old_timespec32 -EXPORT_SYMBOL_GPL vmlinux 0x6f17fc7c linear_hugepage_index +EXPORT_SYMBOL_GPL vmlinux 0x6f190436 iommu_page_response EXPORT_SYMBOL_GPL vmlinux 0x6f2017de misc_cg_set_capacity -EXPORT_SYMBOL_GPL vmlinux 0x6f2bb0cb power_supply_get_battery_info -EXPORT_SYMBOL_GPL vmlinux 0x6f43898d rdev_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x6f4fbc48 regmap_get_val_endian +EXPORT_SYMBOL_GPL vmlinux 0x6f23b71c tun_get_tx_ring +EXPORT_SYMBOL_GPL vmlinux 0x6f26e6b5 sysfs_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0x6f31e387 fscrypt_show_test_dummy_encryption +EXPORT_SYMBOL_GPL vmlinux 0x6f508c17 stmpe_disable +EXPORT_SYMBOL_GPL vmlinux 0x6f5a5485 net_ns_get_ownership +EXPORT_SYMBOL_GPL vmlinux 0x6f638a6b crypto_find_alg +EXPORT_SYMBOL_GPL vmlinux 0x6f6dc06b phy_reset EXPORT_SYMBOL_GPL vmlinux 0x6f7e6040 irq_has_action -EXPORT_SYMBOL_GPL vmlinux 0x6f9a7458 pci_dev_trylock -EXPORT_SYMBOL_GPL vmlinux 0x6f9cf269 snd_soc_jack_get_type +EXPORT_SYMBOL_GPL vmlinux 0x6f885313 elv_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6f8ab532 irq_chip_mask_parent +EXPORT_SYMBOL_GPL vmlinux 0x6f8bf931 tcp_enter_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0x6f911a07 pwm_apply_state EXPORT_SYMBOL_GPL vmlinux 0x6f9e763b timecounter_read -EXPORT_SYMBOL_GPL vmlinux 0x6faa3445 da9052_adc_manual_read -EXPORT_SYMBOL_GPL vmlinux 0x6facab78 ata_scsi_dma_need_drain -EXPORT_SYMBOL_GPL vmlinux 0x6fb3b3b7 adp5520_write +EXPORT_SYMBOL_GPL vmlinux 0x6f9eada8 regmap_attach_dev +EXPORT_SYMBOL_GPL vmlinux 0x6fa7964e crypto_stats_init +EXPORT_SYMBOL_GPL vmlinux 0x6fb2e242 devlink_dpipe_entry_ctx_prepare EXPORT_SYMBOL_GPL vmlinux 0x6fb7e313 asic3_write_register -EXPORT_SYMBOL_GPL vmlinux 0x6fbeba9f snd_soc_jack_add_gpiods -EXPORT_SYMBOL_GPL vmlinux 0x6fc609fc regulator_register +EXPORT_SYMBOL_GPL vmlinux 0x6fc18aaf __devm_clk_hw_register_mux +EXPORT_SYMBOL_GPL vmlinux 0x6fcdb37e devm_rtc_allocate_device EXPORT_SYMBOL_GPL vmlinux 0x6fcef6ab ring_buffer_reset -EXPORT_SYMBOL_GPL vmlinux 0x6fde2483 mptcp_subflow_init_cookie_req -EXPORT_SYMBOL_GPL vmlinux 0x6feb453f transport_destroy_device -EXPORT_SYMBOL_GPL vmlinux 0x6fee6e8a tty_port_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x6fe09184 snd_soc_unregister_dai EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x7005000f fsnotify_add_mark EXPORT_SYMBOL_GPL vmlinux 0x7006586e iommu_get_group_resv_regions -EXPORT_SYMBOL_GPL vmlinux 0x701547d1 gpiod_direction_input -EXPORT_SYMBOL_GPL vmlinux 0x703a3bce dev_attr_link_power_management_policy -EXPORT_SYMBOL_GPL vmlinux 0x7048f792 snd_soc_dai_compr_startup -EXPORT_SYMBOL_GPL vmlinux 0x70548dbd thermal_zone_bind_cooling_device -EXPORT_SYMBOL_GPL vmlinux 0x7056f0f5 fuse_request_end -EXPORT_SYMBOL_GPL vmlinux 0x70606e54 skb_pull_rcsum +EXPORT_SYMBOL_GPL vmlinux 0x70192d25 snd_ctl_disconnect_layer +EXPORT_SYMBOL_GPL vmlinux 0x7019cd5d hrtimer_sleeper_start_expires +EXPORT_SYMBOL_GPL vmlinux 0x7020e83c vp_modern_queue_address +EXPORT_SYMBOL_GPL vmlinux 0x7020ea2f pci_iomap_wc +EXPORT_SYMBOL_GPL vmlinux 0x70361d9c usb_get_urb +EXPORT_SYMBOL_GPL vmlinux 0x703999c2 rio_alloc_net +EXPORT_SYMBOL_GPL vmlinux 0x704bbee1 devlink_reload_disable +EXPORT_SYMBOL_GPL vmlinux 0x705be2ba spi_res_alloc +EXPORT_SYMBOL_GPL vmlinux 0x707179f1 phy_pm_runtime_put +EXPORT_SYMBOL_GPL vmlinux 0x7071bce4 securityfs_create_dir EXPORT_SYMBOL_GPL vmlinux 0x7073c04f phy_10_100_features_array -EXPORT_SYMBOL_GPL vmlinux 0x7074b83b devm_gpiod_get_array_optional -EXPORT_SYMBOL_GPL vmlinux 0x70821a33 strp_check_rcv -EXPORT_SYMBOL_GPL vmlinux 0x7085ecd9 xfrm_audit_state_replay -EXPORT_SYMBOL_GPL vmlinux 0x70bba517 dm_internal_suspend_fast -EXPORT_SYMBOL_GPL vmlinux 0x70bcc5e5 rockchip_clk_register_branches +EXPORT_SYMBOL_GPL vmlinux 0x70774bbd dpm_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x707c0d60 usb_get_dr_mode +EXPORT_SYMBOL_GPL vmlinux 0x70919932 snd_soc_dapm_sync +EXPORT_SYMBOL_GPL vmlinux 0x70a94f73 snd_dmaengine_pcm_pointer +EXPORT_SYMBOL_GPL vmlinux 0x70aa5b8f mptcp_token_get_sock +EXPORT_SYMBOL_GPL vmlinux 0x70c11155 pwm_get_chip_data +EXPORT_SYMBOL_GPL vmlinux 0x70c1aeb4 sdio_release_host +EXPORT_SYMBOL_GPL vmlinux 0x70c467a4 __put_net EXPORT_SYMBOL_GPL vmlinux 0x70c52dc5 nf_skb_duplicated EXPORT_SYMBOL_GPL vmlinux 0x70c6d827 mc146818_set_time -EXPORT_SYMBOL_GPL vmlinux 0x70c8a070 pm_runtime_force_suspend -EXPORT_SYMBOL_GPL vmlinux 0x70ce41bd extcon_set_state EXPORT_SYMBOL_GPL vmlinux 0x70cf032f usb_hcd_irq +EXPORT_SYMBOL_GPL vmlinux 0x70d3daf6 snd_card_rw_proc_new +EXPORT_SYMBOL_GPL vmlinux 0x70d6569f wb_writeout_inc EXPORT_SYMBOL_GPL vmlinux 0x70e24953 percpu_ref_switch_to_atomic -EXPORT_SYMBOL_GPL vmlinux 0x70e8173a rtnl_af_register -EXPORT_SYMBOL_GPL vmlinux 0x70e9d563 ata_sff_qc_issue -EXPORT_SYMBOL_GPL vmlinux 0x70f62284 pm_generic_resume_noirq +EXPORT_SYMBOL_GPL vmlinux 0x70e71c8d of_phandle_iterator_next +EXPORT_SYMBOL_GPL vmlinux 0x70e9666d devm_regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0x71097c1a ping_err EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x71210948 snd_soc_get_xr_sx -EXPORT_SYMBOL_GPL vmlinux 0x71314587 register_mtd_user -EXPORT_SYMBOL_GPL vmlinux 0x713aba15 devm_phy_put -EXPORT_SYMBOL_GPL vmlinux 0x7154170e clockevents_unbind_device -EXPORT_SYMBOL_GPL vmlinux 0x7157ebab msg_zerocopy_put_abort -EXPORT_SYMBOL_GPL vmlinux 0x71597793 snd_soc_dapm_disable_pin +EXPORT_SYMBOL_GPL vmlinux 0x710f0716 nanddev_isbad +EXPORT_SYMBOL_GPL vmlinux 0x71129fde i2c_detect_slave_mode +EXPORT_SYMBOL_GPL vmlinux 0x7116633b pinctrl_find_gpio_range_from_pin +EXPORT_SYMBOL_GPL vmlinux 0x711fc1ee __traceiter_block_rq_insert +EXPORT_SYMBOL_GPL vmlinux 0x7141757b snd_ctl_apply_vmaster_followers +EXPORT_SYMBOL_GPL vmlinux 0x714f61d1 devm_gpiod_get_array EXPORT_SYMBOL_GPL vmlinux 0x715a4f37 __wake_up_pollfree EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized EXPORT_SYMBOL_GPL vmlinux 0x71650819 add_bootloader_randomness +EXPORT_SYMBOL_GPL vmlinux 0x716515c3 pci_epc_mem_exit +EXPORT_SYMBOL_GPL vmlinux 0x716a3b46 vp_modern_config_vector EXPORT_SYMBOL_GPL vmlinux 0x716cffb5 pkcs7_parse_message -EXPORT_SYMBOL_GPL vmlinux 0x71800e12 disk_force_media_change -EXPORT_SYMBOL_GPL vmlinux 0x71957e64 ata_pci_sff_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0x717e1c18 snd_pcm_stop_xrun +EXPORT_SYMBOL_GPL vmlinux 0x7182e16f bsg_job_put +EXPORT_SYMBOL_GPL vmlinux 0x71871743 fsverity_verify_page +EXPORT_SYMBOL_GPL vmlinux 0x7187d657 vchan_init +EXPORT_SYMBOL_GPL vmlinux 0x7195d70e regulator_allow_bypass +EXPORT_SYMBOL_GPL vmlinux 0x71982ba1 skb_to_sgvec EXPORT_SYMBOL_GPL vmlinux 0x719a5e41 musb_readw EXPORT_SYMBOL_GPL vmlinux 0x719e17ff clk_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x719eaebf kobject_uevent EXPORT_SYMBOL_GPL vmlinux 0x71a20f4a __SCK__tp_func_non_standard_event -EXPORT_SYMBOL_GPL vmlinux 0x71a7ba37 mptcp_pm_get_subflows_max +EXPORT_SYMBOL_GPL vmlinux 0x71a673ac tcp_done EXPORT_SYMBOL_GPL vmlinux 0x71a9a3ab mtk_mutex_acquire -EXPORT_SYMBOL_GPL vmlinux 0x71aefeb3 badblocks_clear EXPORT_SYMBOL_GPL vmlinux 0x71b15008 lwtunnel_valid_encap_type -EXPORT_SYMBOL_GPL vmlinux 0x71b4c190 gpio_to_desc EXPORT_SYMBOL_GPL vmlinux 0x71b6cf94 dst_cache_reset_now -EXPORT_SYMBOL_GPL vmlinux 0x71b95e71 lp8788_read_multi_bytes -EXPORT_SYMBOL_GPL vmlinux 0x71c00701 irq_domain_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x71bf3ab2 serial8250_do_set_ldisc EXPORT_SYMBOL_GPL vmlinux 0x71c0c4a7 ftrace_set_filter -EXPORT_SYMBOL_GPL vmlinux 0x71e07275 __traceiter_io_page_fault -EXPORT_SYMBOL_GPL vmlinux 0x71ef6a9d devlink_rate_leaf_create -EXPORT_SYMBOL_GPL vmlinux 0x71f2d051 __reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0x71f6265e genphy_c45_read_pma +EXPORT_SYMBOL_GPL vmlinux 0x71d199a6 wm8350_block_write +EXPORT_SYMBOL_GPL vmlinux 0x71d2e7e9 __irq_resolve_mapping +EXPORT_SYMBOL_GPL vmlinux 0x71f60f55 snd_soc_dapm_update_dai EXPORT_SYMBOL_GPL vmlinux 0x71f6670b __cookie_v6_check -EXPORT_SYMBOL_GPL vmlinux 0x72050e7a sysfs_unmerge_group -EXPORT_SYMBOL_GPL vmlinux 0x721fd8b5 irq_generic_chip_ops -EXPORT_SYMBOL_GPL vmlinux 0x72235c0d crypto_register_acomp -EXPORT_SYMBOL_GPL vmlinux 0x72277ede musb_queue_resume_work -EXPORT_SYMBOL_GPL vmlinux 0x7229ca3c smpboot_unregister_percpu_thread -EXPORT_SYMBOL_GPL vmlinux 0x722bb3e8 device_remove_groups -EXPORT_SYMBOL_GPL vmlinux 0x722f9f57 virtio_device_restore +EXPORT_SYMBOL_GPL vmlinux 0x71fb7c0c sdhci_reset_tuning +EXPORT_SYMBOL_GPL vmlinux 0x7202f145 l3mdev_link_scope_lookup +EXPORT_SYMBOL_GPL vmlinux 0x720b2bd4 platform_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7235c025 soc_device_register EXPORT_SYMBOL_GPL vmlinux 0x7236bdf8 ftrace_set_filter_ip -EXPORT_SYMBOL_GPL vmlinux 0x725157ac perf_aux_output_begin +EXPORT_SYMBOL_GPL vmlinux 0x723cb8bd replace_page_cache_page +EXPORT_SYMBOL_GPL vmlinux 0x724c8f28 usb_phy_roothub_resume +EXPORT_SYMBOL_GPL vmlinux 0x724eac7e da9055_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x724f208a alloc_page_buffers +EXPORT_SYMBOL_GPL vmlinux 0x72585290 crypto_shash_update +EXPORT_SYMBOL_GPL vmlinux 0x725f98d1 inode_dax EXPORT_SYMBOL_GPL vmlinux 0x7262702b sfp_get_module_eeprom_by_page +EXPORT_SYMBOL_GPL vmlinux 0x7264b096 fuse_dev_alloc_install EXPORT_SYMBOL_GPL vmlinux 0x7265f2b0 pci_vpd_check_csum EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events -EXPORT_SYMBOL_GPL vmlinux 0x7286527b regulator_set_mode -EXPORT_SYMBOL_GPL vmlinux 0x729185a5 uart_insert_char -EXPORT_SYMBOL_GPL vmlinux 0x729cef6a mtd_panic_write +EXPORT_SYMBOL_GPL vmlinux 0x7280e815 fat_time_unix2fat +EXPORT_SYMBOL_GPL vmlinux 0x72a192a3 ata_sff_data_xfer +EXPORT_SYMBOL_GPL vmlinux 0x72a8f6c4 devm_thermal_add_hwmon_sysfs EXPORT_SYMBOL_GPL vmlinux 0x72b299e1 efi_capsule_supported -EXPORT_SYMBOL_GPL vmlinux 0x72d9e64d rio_request_inb_mbox -EXPORT_SYMBOL_GPL vmlinux 0x72e5060b fsl8250_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0x73089648 devres_remove -EXPORT_SYMBOL_GPL vmlinux 0x731bc1b2 dev_pm_set_dedicated_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0x732ca6fc debugfs_create_atomic_t -EXPORT_SYMBOL_GPL vmlinux 0x73316bf9 __kthread_should_park -EXPORT_SYMBOL_GPL vmlinux 0x735042c8 blkcg_root_css -EXPORT_SYMBOL_GPL vmlinux 0x73524e52 arm_iommu_detach_device -EXPORT_SYMBOL_GPL vmlinux 0x7361bc4e validate_xmit_xfrm -EXPORT_SYMBOL_GPL vmlinux 0x7365ebd7 blk_mq_freeze_queue_wait -EXPORT_SYMBOL_GPL vmlinux 0x7372e820 devm_reset_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x73787e9a pci_epc_mem_alloc_addr -EXPORT_SYMBOL_GPL vmlinux 0x73841164 devlink_port_attrs_pci_pf_set -EXPORT_SYMBOL_GPL vmlinux 0x7393d9f4 devm_rtc_nvmem_register -EXPORT_SYMBOL_GPL vmlinux 0x739cbb73 sk_psock_tls_strp_read +EXPORT_SYMBOL_GPL vmlinux 0x72c68299 devres_release_group +EXPORT_SYMBOL_GPL vmlinux 0x72cd4b74 meson_a1_parse_dt_extra +EXPORT_SYMBOL_GPL vmlinux 0x72d212cc phy_start_machine +EXPORT_SYMBOL_GPL vmlinux 0x72f0f2ea snd_soc_dapm_init +EXPORT_SYMBOL_GPL vmlinux 0x73013473 cpuidle_register +EXPORT_SYMBOL_GPL vmlinux 0x730df5f5 __fscrypt_prepare_lookup +EXPORT_SYMBOL_GPL vmlinux 0x7311431f ip_build_and_send_pkt +EXPORT_SYMBOL_GPL vmlinux 0x731393d8 of_icc_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x7322edb1 device_phy_find_device +EXPORT_SYMBOL_GPL vmlinux 0x733de95d spi_take_timestamp_post +EXPORT_SYMBOL_GPL vmlinux 0x7354ab39 blk_queue_can_use_dma_map_merging +EXPORT_SYMBOL_GPL vmlinux 0x73656b78 nvdimm_cmd_mask +EXPORT_SYMBOL_GPL vmlinux 0x736b1ac8 xdp_rxq_info_unreg +EXPORT_SYMBOL_GPL vmlinux 0x736e1a73 devfreq_event_reset_event EXPORT_SYMBOL_GPL vmlinux 0x73a48b4a ata_sff_std_ports +EXPORT_SYMBOL_GPL vmlinux 0x73a5fc6c amba_device_put +EXPORT_SYMBOL_GPL vmlinux 0x73adfff9 phy_set_speed +EXPORT_SYMBOL_GPL vmlinux 0x73ae0afa rio_pw_enable +EXPORT_SYMBOL_GPL vmlinux 0x73b442ba rio_set_port_lockout EXPORT_SYMBOL_GPL vmlinux 0x73b98231 asymmetric_key_generate_id -EXPORT_SYMBOL_GPL vmlinux 0x73bdef70 gpiochip_is_requested -EXPORT_SYMBOL_GPL vmlinux 0x73ca4652 blk_mq_virtio_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x73ba0b20 edac_pci_add_device +EXPORT_SYMBOL_GPL vmlinux 0x73be3586 fwnode_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x73beb678 rio_release_outb_mbox EXPORT_SYMBOL_GPL vmlinux 0x73cc8631 oiap -EXPORT_SYMBOL_GPL vmlinux 0x73dc1393 netlink_has_listeners -EXPORT_SYMBOL_GPL vmlinux 0x73dc6458 cpufreq_cpu_put -EXPORT_SYMBOL_GPL vmlinux 0x73e4cdf7 pm_generic_resume -EXPORT_SYMBOL_GPL vmlinux 0x73f845ec crypto_aead_encrypt -EXPORT_SYMBOL_GPL vmlinux 0x73fe989d dw_pcie_host_init -EXPORT_SYMBOL_GPL vmlinux 0x7415c8f9 irq_gc_ack_set_bit -EXPORT_SYMBOL_GPL vmlinux 0x74185a66 scmi_protocol_register -EXPORT_SYMBOL_GPL vmlinux 0x7419a622 ahci_start_engine -EXPORT_SYMBOL_GPL vmlinux 0x741c69a4 get_task_mm -EXPORT_SYMBOL_GPL vmlinux 0x742984e4 __mdiobus_modify_changed -EXPORT_SYMBOL_GPL vmlinux 0x742ebcf6 snd_soc_dpcm_fe_can_update -EXPORT_SYMBOL_GPL vmlinux 0x7437e14f platform_get_irq_byname +EXPORT_SYMBOL_GPL vmlinux 0x73d0de87 pm_generic_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0x73d4a740 desc_to_gpio +EXPORT_SYMBOL_GPL vmlinux 0x73e5d695 udp_destruct_sock +EXPORT_SYMBOL_GPL vmlinux 0x73e8b510 fscrypt_d_revalidate +EXPORT_SYMBOL_GPL vmlinux 0x7402565e synth_event_trace +EXPORT_SYMBOL_GPL vmlinux 0x74137971 dev_attr_link_power_management_policy +EXPORT_SYMBOL_GPL vmlinux 0x742a44d7 devm_gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x7438c5e5 __percpu_down_read EXPORT_SYMBOL_GPL vmlinux 0x743a165e ata_pack_xfermask -EXPORT_SYMBOL_GPL vmlinux 0x743b9d5a __blkg_prfill_rwstat -EXPORT_SYMBOL_GPL vmlinux 0x744bf825 snd_soc_of_parse_audio_simple_widgets -EXPORT_SYMBOL_GPL vmlinux 0x745b6b6d of_reconfig_get_state_change -EXPORT_SYMBOL_GPL vmlinux 0x74631abb __fscrypt_prepare_rename -EXPORT_SYMBOL_GPL vmlinux 0x7469536c device_wakeup_enable -EXPORT_SYMBOL_GPL vmlinux 0x74752486 blk_queue_max_zone_append_sectors -EXPORT_SYMBOL_GPL vmlinux 0x747e28d9 spi_new_ancillary_device -EXPORT_SYMBOL_GPL vmlinux 0x747e3887 dev_fill_metadata_dst -EXPORT_SYMBOL_GPL vmlinux 0x74815c43 ping_common_sendmsg -EXPORT_SYMBOL_GPL vmlinux 0x74988ed9 gpiod_set_raw_value -EXPORT_SYMBOL_GPL vmlinux 0x74996f69 dev_coredumpsg -EXPORT_SYMBOL_GPL vmlinux 0x749cc981 tcp_set_state -EXPORT_SYMBOL_GPL vmlinux 0x74a6e732 amba_bustype -EXPORT_SYMBOL_GPL vmlinux 0x74b48523 scsi_autopm_get_device +EXPORT_SYMBOL_GPL vmlinux 0x744c10e2 ahci_host_activate +EXPORT_SYMBOL_GPL vmlinux 0x74559377 __ndisc_fill_addr_option +EXPORT_SYMBOL_GPL vmlinux 0x74639de3 sdhci_abort_tuning +EXPORT_SYMBOL_GPL vmlinux 0x74681c41 mtd_is_locked +EXPORT_SYMBOL_GPL vmlinux 0x7468fd97 gpiochip_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0x746bc2ee debugfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0x747031bd iommu_present +EXPORT_SYMBOL_GPL vmlinux 0x74716d08 inet_ehash_nolisten +EXPORT_SYMBOL_GPL vmlinux 0x747ba216 ptp_classify_raw +EXPORT_SYMBOL_GPL vmlinux 0x747c0c40 get_current_tty +EXPORT_SYMBOL_GPL vmlinux 0x747d70bd trace_put_event_file +EXPORT_SYMBOL_GPL vmlinux 0x747f8ecf fwnode_graph_get_next_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x748f150b gpiod_get_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x7490ff81 usb_hcd_check_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0x7492c36e gpiochip_irqchip_irq_valid +EXPORT_SYMBOL_GPL vmlinux 0x74973d72 rio_release_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0x74b56ec2 of_clk_hw_register EXPORT_SYMBOL_GPL vmlinux 0x74b5ea68 lcm_not_zero -EXPORT_SYMBOL_GPL vmlinux 0x74b9f018 snd_soc_dpcm_can_be_free_stop +EXPORT_SYMBOL_GPL vmlinux 0x74b6b577 crypto_unregister_acomps EXPORT_SYMBOL_GPL vmlinux 0x74baf17a tracing_is_on -EXPORT_SYMBOL_GPL vmlinux 0x74dc4c1f do_unbind_con_driver -EXPORT_SYMBOL_GPL vmlinux 0x74e39eab genphy_c45_read_link -EXPORT_SYMBOL_GPL vmlinux 0x74f1bfd1 usb_lock_device_for_reset -EXPORT_SYMBOL_GPL vmlinux 0x74fa2982 sk_msg_trim -EXPORT_SYMBOL_GPL vmlinux 0x75009510 ata_sff_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x75065eb5 snd_soc_dapm_update_dai -EXPORT_SYMBOL_GPL vmlinux 0x750d89c2 trace_array_printk -EXPORT_SYMBOL_GPL vmlinux 0x750e2d7e blkg_lookup_slowpath +EXPORT_SYMBOL_GPL vmlinux 0x74e33edb __spi_alloc_controller +EXPORT_SYMBOL_GPL vmlinux 0x74f988c7 debugfs_create_ulong EXPORT_SYMBOL_GPL vmlinux 0x7513b5ec __iowrite32_copy +EXPORT_SYMBOL_GPL vmlinux 0x75172e20 usb_for_each_port +EXPORT_SYMBOL_GPL vmlinux 0x751d0c61 dev_pm_opp_set_prop_name EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status -EXPORT_SYMBOL_GPL vmlinux 0x7526a4cc __traceiter_neigh_update -EXPORT_SYMBOL_GPL vmlinux 0x7531ed79 iommu_device_sysfs_add -EXPORT_SYMBOL_GPL vmlinux 0x7554e430 clean_acked_data_enable +EXPORT_SYMBOL_GPL vmlinux 0x7528c0fc inet_hash +EXPORT_SYMBOL_GPL vmlinux 0x752b4867 bpf_prog_create_from_user +EXPORT_SYMBOL_GPL vmlinux 0x753cb25a pci_d3cold_disable +EXPORT_SYMBOL_GPL vmlinux 0x7555852a snd_soc_dapm_kcontrol_dapm EXPORT_SYMBOL_GPL vmlinux 0x755ae3c8 trusted_tpm_send -EXPORT_SYMBOL_GPL vmlinux 0x756c58f4 regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7560170a extcon_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x756c2cd3 clone_private_mount +EXPORT_SYMBOL_GPL vmlinux 0x756e9733 wakeup_source_add +EXPORT_SYMBOL_GPL vmlinux 0x7573374c of_pci_parse_bus_range EXPORT_SYMBOL_GPL vmlinux 0x759139cb of_pci_check_probe_only -EXPORT_SYMBOL_GPL vmlinux 0x759b5728 devres_find +EXPORT_SYMBOL_GPL vmlinux 0x75937066 device_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0x7598e0dd __mtd_next_device +EXPORT_SYMBOL_GPL vmlinux 0x759afbd0 blk_req_zone_write_trylock +EXPORT_SYMBOL_GPL vmlinux 0x75abee14 rtnl_put_cacheinfo +EXPORT_SYMBOL_GPL vmlinux 0x75b31df6 devm_power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0x75b53c1f snd_soc_component_disable_pin +EXPORT_SYMBOL_GPL vmlinux 0x75b55d69 acct_bioset_init +EXPORT_SYMBOL_GPL vmlinux 0x75b59e35 blockdev_superblock EXPORT_SYMBOL_GPL vmlinux 0x75bf6cc0 is_binary_blacklisted EXPORT_SYMBOL_GPL vmlinux 0x75cbfb09 add_interrupt_randomness -EXPORT_SYMBOL_GPL vmlinux 0x75dc3cfb phy_pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0x75d93983 pci_rescan_bus EXPORT_SYMBOL_GPL vmlinux 0x75dd4ebe of_overlay_remove -EXPORT_SYMBOL_GPL vmlinux 0x75de2fda component_master_add_with_match +EXPORT_SYMBOL_GPL vmlinux 0x75e4d46e rq_flush_dcache_pages EXPORT_SYMBOL_GPL vmlinux 0x75e51945 __SCK__tp_func_error_report_end -EXPORT_SYMBOL_GPL vmlinux 0x75e9affa mmu_notifier_range_update_to_read_only EXPORT_SYMBOL_GPL vmlinux 0x75e9c735 pci_ats_disabled -EXPORT_SYMBOL_GPL vmlinux 0x75f97d94 device_create +EXPORT_SYMBOL_GPL vmlinux 0x75f434d2 ksm_madvise +EXPORT_SYMBOL_GPL vmlinux 0x75f5d534 __class_create +EXPORT_SYMBOL_GPL vmlinux 0x75f5eef1 mmc_send_tuning EXPORT_SYMBOL_GPL vmlinux 0x75fb9062 arch_timer_read_counter -EXPORT_SYMBOL_GPL vmlinux 0x7601ca1b devm_led_classdev_register_ext -EXPORT_SYMBOL_GPL vmlinux 0x76033fa2 tty_register_device_attr -EXPORT_SYMBOL_GPL vmlinux 0x760510d0 dw_pcie_ep_linkup -EXPORT_SYMBOL_GPL vmlinux 0x760e35f6 pci_epf_create -EXPORT_SYMBOL_GPL vmlinux 0x76153e02 fwnode_device_is_available -EXPORT_SYMBOL_GPL vmlinux 0x7616525f virtio_check_driver_offered_feature -EXPORT_SYMBOL_GPL vmlinux 0x76273435 kthread_unuse_mm -EXPORT_SYMBOL_GPL vmlinux 0x76384b81 blk_mq_quiesce_queue -EXPORT_SYMBOL_GPL vmlinux 0x7652f944 nvmem_device_find -EXPORT_SYMBOL_GPL vmlinux 0x7657a28d dev_pm_opp_disable -EXPORT_SYMBOL_GPL vmlinux 0x765f7886 dst_cache_get_ip6 +EXPORT_SYMBOL_GPL vmlinux 0x76140ce5 of_irq_parse_one +EXPORT_SYMBOL_GPL vmlinux 0x761e39ec gpiochip_lock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0x7621afec __sock_recv_wifi_status +EXPORT_SYMBOL_GPL vmlinux 0x7631ceed blk_rq_err_bytes +EXPORT_SYMBOL_GPL vmlinux 0x765e1a21 ata_bmdma_port_start EXPORT_SYMBOL_GPL vmlinux 0x7665ee72 crypto_dh_decode_key -EXPORT_SYMBOL_GPL vmlinux 0x767f3923 vp_modern_get_features +EXPORT_SYMBOL_GPL vmlinux 0x767a60c3 usb_lock_device_for_reset EXPORT_SYMBOL_GPL vmlinux 0x7681946c unregister_pm_notifier -EXPORT_SYMBOL_GPL vmlinux 0x768c3b96 vchan_tx_desc_free -EXPORT_SYMBOL_GPL vmlinux 0x768dcd61 serdev_device_set_flow_control -EXPORT_SYMBOL_GPL vmlinux 0x7696cd7b of_clk_parent_fill -EXPORT_SYMBOL_GPL vmlinux 0x769e613d usb_disable_lpm -EXPORT_SYMBOL_GPL vmlinux 0x76a0bc76 pci_status_get_and_clear_errors -EXPORT_SYMBOL_GPL vmlinux 0x76a61298 irq_chip_set_wake_parent -EXPORT_SYMBOL_GPL vmlinux 0x76af39ca ip6_push_pending_frames -EXPORT_SYMBOL_GPL vmlinux 0x76b74121 mtd_pairing_groups -EXPORT_SYMBOL_GPL vmlinux 0x76b8b975 devm_of_phy_get -EXPORT_SYMBOL_GPL vmlinux 0x76cf8bfc dev_pm_opp_get_required_pstate +EXPORT_SYMBOL_GPL vmlinux 0x76821185 account_locked_vm +EXPORT_SYMBOL_GPL vmlinux 0x7688b59d usb_alloc_urb +EXPORT_SYMBOL_GPL vmlinux 0x768a37fe ti_cm_get_macid +EXPORT_SYMBOL_GPL vmlinux 0x769560d9 sec_irq_init +EXPORT_SYMBOL_GPL vmlinux 0x76a27ae4 usb_add_phy +EXPORT_SYMBOL_GPL vmlinux 0x76cdd047 devm_clk_hw_register EXPORT_SYMBOL_GPL vmlinux 0x76d9b876 clk_set_rate +EXPORT_SYMBOL_GPL vmlinux 0x76df7229 alloc_io_pgtable_ops EXPORT_SYMBOL_GPL vmlinux 0x76e10a88 __wait_rcu_gp -EXPORT_SYMBOL_GPL vmlinux 0x76e85c9f tpm_calc_ordinal_duration -EXPORT_SYMBOL_GPL vmlinux 0x76ec1111 iomap_seek_data +EXPORT_SYMBOL_GPL vmlinux 0x76ea92e2 to_software_node EXPORT_SYMBOL_GPL vmlinux 0x76eeeb0f sha384_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x76f44c8a fuse_mount_remove -EXPORT_SYMBOL_GPL vmlinux 0x7705065a fsnotify_put_mark -EXPORT_SYMBOL_GPL vmlinux 0x77119be6 inet6_hash_connect -EXPORT_SYMBOL_GPL vmlinux 0x77191001 gpiod_set_consumer_name -EXPORT_SYMBOL_GPL vmlinux 0x77297138 of_clk_add_hw_provider +EXPORT_SYMBOL_GPL vmlinux 0x76ffa68d kstrdup_quotable_file +EXPORT_SYMBOL_GPL vmlinux 0x77133b32 usb_gadget_map_request_by_dev +EXPORT_SYMBOL_GPL vmlinux 0x7714797f sdio_readb +EXPORT_SYMBOL_GPL vmlinux 0x7725d9f0 ata_sas_tport_add +EXPORT_SYMBOL_GPL vmlinux 0x77278ec2 dapm_mark_endpoints_dirty EXPORT_SYMBOL_GPL vmlinux 0x7729cbdd task_handoff_register -EXPORT_SYMBOL_GPL vmlinux 0x772a957a dev_pm_opp_get_voltage EXPORT_SYMBOL_GPL vmlinux 0x772e2c26 xas_set_mark -EXPORT_SYMBOL_GPL vmlinux 0x7734bc50 platform_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x77378864 handle_level_irq EXPORT_SYMBOL_GPL vmlinux 0x773f2713 clk_hw_unregister_mux -EXPORT_SYMBOL_GPL vmlinux 0x77548f86 rio_unregister_mport -EXPORT_SYMBOL_GPL vmlinux 0x775571f8 regulator_get_current_limit_regmap +EXPORT_SYMBOL_GPL vmlinux 0x77454fbe ata_do_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x774e8cd4 snd_soc_link_compr_startup EXPORT_SYMBOL_GPL vmlinux 0x7757b51a clk_unregister -EXPORT_SYMBOL_GPL vmlinux 0x77619492 devm_phy_optional_get -EXPORT_SYMBOL_GPL vmlinux 0x7761d1c4 debugfs_create_file_unsafe -EXPORT_SYMBOL_GPL vmlinux 0x77688b35 sdio_retune_crc_enable -EXPORT_SYMBOL_GPL vmlinux 0x77703e8f gpiod_get_raw_value -EXPORT_SYMBOL_GPL vmlinux 0x777047b0 ip6_input -EXPORT_SYMBOL_GPL vmlinux 0x7782fc1d mtk_is_virt_gpio -EXPORT_SYMBOL_GPL vmlinux 0x7783905e crypto_alloc_tfm_node -EXPORT_SYMBOL_GPL vmlinux 0x77894fd9 cpuidle_register -EXPORT_SYMBOL_GPL vmlinux 0x778d892c gov_attr_set_get +EXPORT_SYMBOL_GPL vmlinux 0x775c2c07 watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0x775da2aa blk_queue_flag_test_and_set +EXPORT_SYMBOL_GPL vmlinux 0x7778f759 pcie_bus_configure_settings +EXPORT_SYMBOL_GPL vmlinux 0x777a16c6 devm_hwmon_device_register_with_info +EXPORT_SYMBOL_GPL vmlinux 0x777efe88 iommu_detach_device +EXPORT_SYMBOL_GPL vmlinux 0x777f747d pm_generic_poweroff_noirq EXPORT_SYMBOL_GPL vmlinux 0x7791e066 dw_pcie_read EXPORT_SYMBOL_GPL vmlinux 0x7797d873 __tracepoint_neigh_update_done -EXPORT_SYMBOL_GPL vmlinux 0x77a6387e irq_domain_update_bus_token +EXPORT_SYMBOL_GPL vmlinux 0x77990422 thermal_zone_get_slope +EXPORT_SYMBOL_GPL vmlinux 0x77a9705a ata_do_dev_read_id EXPORT_SYMBOL_GPL vmlinux 0x77ae495d usb_speed_string -EXPORT_SYMBOL_GPL vmlinux 0x77be9ba9 crypto_stats_akcipher_decrypt -EXPORT_SYMBOL_GPL vmlinux 0x77c2ee80 mtd_unpoint -EXPORT_SYMBOL_GPL vmlinux 0x77cf568d scsi_get_vpd_page -EXPORT_SYMBOL_GPL vmlinux 0x77db551c snd_compress_new +EXPORT_SYMBOL_GPL vmlinux 0x77d4e355 devm_pm_opp_register_set_opp_helper +EXPORT_SYMBOL_GPL vmlinux 0x77d7d1b6 pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0x77dc585f serial8250_do_set_mctrl +EXPORT_SYMBOL_GPL vmlinux 0x77dd04b2 __blk_mq_debugfs_rq_show +EXPORT_SYMBOL_GPL vmlinux 0x77e05ba1 devm_request_pci_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0x77e28b21 of_reserved_mem_device_init_by_idx EXPORT_SYMBOL_GPL vmlinux 0x77e75be3 sfp_bus_put -EXPORT_SYMBOL_GPL vmlinux 0x77ed8ccf ip_icmp_error_rfc4884 -EXPORT_SYMBOL_GPL vmlinux 0x77ede5c0 ipv4_sk_redirect -EXPORT_SYMBOL_GPL vmlinux 0x77f24535 nf_queue_nf_hook_drop -EXPORT_SYMBOL_GPL vmlinux 0x77fe85f0 nfs_ssc_unregister -EXPORT_SYMBOL_GPL vmlinux 0x780cdcfb xhci_reset_bandwidth -EXPORT_SYMBOL_GPL vmlinux 0x782b419b crypto_register_shashes -EXPORT_SYMBOL_GPL vmlinux 0x7832ed4c fwnode_connection_find_match -EXPORT_SYMBOL_GPL vmlinux 0x7840cd5b scsi_build_sense -EXPORT_SYMBOL_GPL vmlinux 0x784c1b86 crypto_unregister_acomps -EXPORT_SYMBOL_GPL vmlinux 0x784dc6fd wakeup_source_destroy -EXPORT_SYMBOL_GPL vmlinux 0x785159ca wbt_enable_default -EXPORT_SYMBOL_GPL vmlinux 0x7857ab41 snd_soc_dapm_stream_stop +EXPORT_SYMBOL_GPL vmlinux 0x77e971aa __root_device_register +EXPORT_SYMBOL_GPL vmlinux 0x77eca2de snd_soc_card_add_dai_link +EXPORT_SYMBOL_GPL vmlinux 0x78014d09 iommu_unmap_fast +EXPORT_SYMBOL_GPL vmlinux 0x783606c8 iptunnel_handle_offloads +EXPORT_SYMBOL_GPL vmlinux 0x7840a9ff __pci_epf_register_driver EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available -EXPORT_SYMBOL_GPL vmlinux 0x7862b891 max8997_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0x78636c39 unregister_virtio_device -EXPORT_SYMBOL_GPL vmlinux 0x78662777 dev_pm_genpd_set_next_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x786db75e dma_alloc_noncontiguous -EXPORT_SYMBOL_GPL vmlinux 0x78721e04 bsg_register_queue -EXPORT_SYMBOL_GPL vmlinux 0x7874d85b irq_chip_set_parent_state -EXPORT_SYMBOL_GPL vmlinux 0x787f06bd snd_device_get_state +EXPORT_SYMBOL_GPL vmlinux 0x78622c16 iommu_dev_disable_feature +EXPORT_SYMBOL_GPL vmlinux 0x786cd428 of_regulator_match +EXPORT_SYMBOL_GPL vmlinux 0x7876cdbb edac_pci_handle_npe EXPORT_SYMBOL_GPL vmlinux 0x788bfbad ring_buffer_empty -EXPORT_SYMBOL_GPL vmlinux 0x789346b5 mtd_ooblayout_get_databytes -EXPORT_SYMBOL_GPL vmlinux 0x78994508 pm_stay_awake -EXPORT_SYMBOL_GPL vmlinux 0x7899568a scsi_free_sgtables +EXPORT_SYMBOL_GPL vmlinux 0x789b554b ata_scsi_slave_destroy EXPORT_SYMBOL_GPL vmlinux 0x789c73d9 rcu_cpu_stall_suppress_at_boot -EXPORT_SYMBOL_GPL vmlinux 0x789e1134 fuse_conn_get -EXPORT_SYMBOL_GPL vmlinux 0x78b15cde iommu_uapi_sva_bind_gpasid +EXPORT_SYMBOL_GPL vmlinux 0x789c8f25 l3mdev_fib_table_rcu +EXPORT_SYMBOL_GPL vmlinux 0x78a518aa snd_soc_of_parse_aux_devs +EXPORT_SYMBOL_GPL vmlinux 0x78a7e276 pci_platform_power_transition +EXPORT_SYMBOL_GPL vmlinux 0x78b2a736 snd_soc_dapm_enable_pin +EXPORT_SYMBOL_GPL vmlinux 0x78b311b1 rtc_alarm_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0x78b5e8ea tps65912_device_init +EXPORT_SYMBOL_GPL vmlinux 0x78ba680b securityfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x78c09899 pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0x78c4a2df sdhci_calc_clk +EXPORT_SYMBOL_GPL vmlinux 0x78d3a3b5 adp5520_write +EXPORT_SYMBOL_GPL vmlinux 0x78d44afd dma_buf_detach EXPORT_SYMBOL_GPL vmlinux 0x78ddb76b dmi_match -EXPORT_SYMBOL_GPL vmlinux 0x78df41e4 to_of_pinfo -EXPORT_SYMBOL_GPL vmlinux 0x78ef3e76 cpts_release -EXPORT_SYMBOL_GPL vmlinux 0x78f60862 usb_ifnum_to_if -EXPORT_SYMBOL_GPL vmlinux 0x790948da sm501_modify_reg -EXPORT_SYMBOL_GPL vmlinux 0x7909ce7f of_resolve_phandles -EXPORT_SYMBOL_GPL vmlinux 0x79100435 i2c_new_ancillary_device +EXPORT_SYMBOL_GPL vmlinux 0x78e1fa32 synth_event_create +EXPORT_SYMBOL_GPL vmlinux 0x78f605cc dma_buf_vmap +EXPORT_SYMBOL_GPL vmlinux 0x78faddf9 power_supply_am_i_supplied +EXPORT_SYMBOL_GPL vmlinux 0x7917d292 __auxiliary_device_add +EXPORT_SYMBOL_GPL vmlinux 0x79279227 skb_zerocopy +EXPORT_SYMBOL_GPL vmlinux 0x79333140 scmi_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x7938e54a snd_pcm_lib_default_mmap EXPORT_SYMBOL_GPL vmlinux 0x793a93dc raw_v6_hashinfo -EXPORT_SYMBOL_GPL vmlinux 0x793db17e regmap_check_range_table -EXPORT_SYMBOL_GPL vmlinux 0x7942084c ping_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0x793f7308 edac_mc_find_csrow_by_page EXPORT_SYMBOL_GPL vmlinux 0x7944e0fc tracing_off EXPORT_SYMBOL_GPL vmlinux 0x79470a2c TSS_authhmac +EXPORT_SYMBOL_GPL vmlinux 0x79487b40 ipv6_find_tlv EXPORT_SYMBOL_GPL vmlinux 0x794a0461 rockchip_pcie_disable_clocks EXPORT_SYMBOL_GPL vmlinux 0x794b7271 orderly_reboot -EXPORT_SYMBOL_GPL vmlinux 0x7950581b fscrypt_set_context -EXPORT_SYMBOL_GPL vmlinux 0x795ca3f5 virtqueue_get_desc_addr -EXPORT_SYMBOL_GPL vmlinux 0x795d067c msg_zerocopy_callback -EXPORT_SYMBOL_GPL vmlinux 0x798f132d extcon_dev_free -EXPORT_SYMBOL_GPL vmlinux 0x798f94ba __nf_ip6_route -EXPORT_SYMBOL_GPL vmlinux 0x7992ced6 nexthop_select_path -EXPORT_SYMBOL_GPL vmlinux 0x7997e404 of_device_uevent_modalias -EXPORT_SYMBOL_GPL vmlinux 0x79a6ee32 devfreq_event_reset_event -EXPORT_SYMBOL_GPL vmlinux 0x79a88072 vp_modern_generation -EXPORT_SYMBOL_GPL vmlinux 0x79b9141c scsi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x79c8306a devm_mbox_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x796738a3 snd_soc_dapm_put_volsw +EXPORT_SYMBOL_GPL vmlinux 0x798eed6d task_cls_state +EXPORT_SYMBOL_GPL vmlinux 0x7999d3b4 i2c_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x79ba5751 devm_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x79bab144 device_reprobe EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park -EXPORT_SYMBOL_GPL vmlinux 0x79dfecbc __of_reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0x79e8a3cb transport_add_device -EXPORT_SYMBOL_GPL vmlinux 0x79fe7e39 blk_queue_zone_write_granularity -EXPORT_SYMBOL_GPL vmlinux 0x79feecee ahci_platform_disable_phys -EXPORT_SYMBOL_GPL vmlinux 0x7a1b9c68 gpiod_to_chip -EXPORT_SYMBOL_GPL vmlinux 0x7a21a8ce irq_create_of_mapping -EXPORT_SYMBOL_GPL vmlinux 0x7a314740 tpm_chip_unregister +EXPORT_SYMBOL_GPL vmlinux 0x79e058d8 em_dev_unregister_perf_domain +EXPORT_SYMBOL_GPL vmlinux 0x79ed96b1 task_user_regset_view +EXPORT_SYMBOL_GPL vmlinux 0x79f2e5ab __devm_regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0x79f857eb dev_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x79f8d9b2 exportfs_encode_inode_fh +EXPORT_SYMBOL_GPL vmlinux 0x79fbe072 crypto_unregister_kpp +EXPORT_SYMBOL_GPL vmlinux 0x7a2caa41 snd_soc_component_compr_get_metadata EXPORT_SYMBOL_GPL vmlinux 0x7a33f504 power_supply_find_ocv2cap_table -EXPORT_SYMBOL_GPL vmlinux 0x7a39e76b blk_mq_freeze_queue_wait_timeout -EXPORT_SYMBOL_GPL vmlinux 0x7a3db4ca iommu_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x7a35ae3b irq_domain_create_hierarchy EXPORT_SYMBOL_GPL vmlinux 0x7a41b9f2 usb_ep_set_maxpacket_limit -EXPORT_SYMBOL_GPL vmlinux 0x7a45aa18 snd_soc_component_disable_pin EXPORT_SYMBOL_GPL vmlinux 0x7a48d06c cpu_latency_qos_remove_request -EXPORT_SYMBOL_GPL vmlinux 0x7a4f7df2 __devm_of_phy_provider_register -EXPORT_SYMBOL_GPL vmlinux 0x7a559d95 tcp_slow_start -EXPORT_SYMBOL_GPL vmlinux 0x7a5851a8 pwm_request -EXPORT_SYMBOL_GPL vmlinux 0x7a5cc337 pci_generic_config_read32 +EXPORT_SYMBOL_GPL vmlinux 0x7a4ab981 devlink_params_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7a69c195 device_remove_software_node +EXPORT_SYMBOL_GPL vmlinux 0x7a6c6726 regmap_fields_read +EXPORT_SYMBOL_GPL vmlinux 0x7a6f4618 rio_dev_get EXPORT_SYMBOL_GPL vmlinux 0x7a73e605 wm831x_isinkv_values -EXPORT_SYMBOL_GPL vmlinux 0x7a7aeb73 usb_phy_generic_register +EXPORT_SYMBOL_GPL vmlinux 0x7a7e90ca regulator_list_voltage_table EXPORT_SYMBOL_GPL vmlinux 0x7a7f1396 zs_malloc +EXPORT_SYMBOL_GPL vmlinux 0x7a7ffe5b dev_pm_domain_attach_by_name EXPORT_SYMBOL_GPL vmlinux 0x7a81541b async_synchronize_cookie -EXPORT_SYMBOL_GPL vmlinux 0x7a81951e md_stop -EXPORT_SYMBOL_GPL vmlinux 0x7a8ca30c mtd_ooblayout_set_databytes +EXPORT_SYMBOL_GPL vmlinux 0x7a8443ae noop_invalidatepage EXPORT_SYMBOL_GPL vmlinux 0x7a944007 rcu_idle_enter -EXPORT_SYMBOL_GPL vmlinux 0x7a960598 reset_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x7aaee5b3 wm831x_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x7aaf262b usb_hcd_is_primary_hcd -EXPORT_SYMBOL_GPL vmlinux 0x7ab6a9f8 sdhci_cleanup_host +EXPORT_SYMBOL_GPL vmlinux 0x7a9df230 rio_local_set_device_id +EXPORT_SYMBOL_GPL vmlinux 0x7aae1a14 snd_soc_component_enable_pin +EXPORT_SYMBOL_GPL vmlinux 0x7ab0434b usb_enable_intel_xhci_ports EXPORT_SYMBOL_GPL vmlinux 0x7ac10ad8 icst_clk_register EXPORT_SYMBOL_GPL vmlinux 0x7ac722bd phy_all_ports_features_array EXPORT_SYMBOL_GPL vmlinux 0x7ad02a41 asn1_encode_tag EXPORT_SYMBOL_GPL vmlinux 0x7ad1ded1 pinctrl_register_mappings -EXPORT_SYMBOL_GPL vmlinux 0x7ada926c cpufreq_register_governor -EXPORT_SYMBOL_GPL vmlinux 0x7af6bd9b pm_runtime_irq_safe -EXPORT_SYMBOL_GPL vmlinux 0x7af89f71 mtd_erase_user_prot_reg +EXPORT_SYMBOL_GPL vmlinux 0x7af4baa5 __netdev_watchdog_up +EXPORT_SYMBOL_GPL vmlinux 0x7afda6de led_set_brightness +EXPORT_SYMBOL_GPL vmlinux 0x7b082e96 sock_map_unhash +EXPORT_SYMBOL_GPL vmlinux 0x7b128cef mmu_notifier_range_update_to_read_only +EXPORT_SYMBOL_GPL vmlinux 0x7b1519db __fscrypt_prepare_rename EXPORT_SYMBOL_GPL vmlinux 0x7b178afe unlock_system_sleep -EXPORT_SYMBOL_GPL vmlinux 0x7b17f41c mbox_flush -EXPORT_SYMBOL_GPL vmlinux 0x7b26b7fd ahci_platform_resume -EXPORT_SYMBOL_GPL vmlinux 0x7b2d9ef6 dm_noflush_suspending -EXPORT_SYMBOL_GPL vmlinux 0x7b365359 input_ff_upload -EXPORT_SYMBOL_GPL vmlinux 0x7b39dfc5 sdio_retune_crc_disable -EXPORT_SYMBOL_GPL vmlinux 0x7b3b725f mmu_interval_notifier_remove -EXPORT_SYMBOL_GPL vmlinux 0x7b4a86e8 iomap_dio_rw -EXPORT_SYMBOL_GPL vmlinux 0x7b4ac11e crypto_remove_spawns -EXPORT_SYMBOL_GPL vmlinux 0x7b4c0dda devlink_param_register +EXPORT_SYMBOL_GPL vmlinux 0x7b1f6577 devlink_trap_policers_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7b20e9fd sch_frag_xmit_hook +EXPORT_SYMBOL_GPL vmlinux 0x7b36fa6f ata_scsi_unlock_native_capacity EXPORT_SYMBOL_GPL vmlinux 0x7b5a4926 sha1_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x7b5ebb4d filemap_read -EXPORT_SYMBOL_GPL vmlinux 0x7b61533e sdhci_cqe_disable -EXPORT_SYMBOL_GPL vmlinux 0x7b87c9fa gpiod_set_value +EXPORT_SYMBOL_GPL vmlinux 0x7b7fbc6d md_account_bio +EXPORT_SYMBOL_GPL vmlinux 0x7b84c7f1 gpiod_set_consumer_name EXPORT_SYMBOL_GPL vmlinux 0x7b8ea197 ethtool_params_from_link_mode -EXPORT_SYMBOL_GPL vmlinux 0x7b93ebb9 regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x7b8f4d4c __sdhci_set_timeout +EXPORT_SYMBOL_GPL vmlinux 0x7b96562e iommu_fwspec_add_ids EXPORT_SYMBOL_GPL vmlinux 0x7b9793a2 get_cpu_idle_time_us -EXPORT_SYMBOL_GPL vmlinux 0x7b9f6ef1 tcp_twsk_destructor -EXPORT_SYMBOL_GPL vmlinux 0x7bad1b21 snd_soc_dapm_mixer_update_power +EXPORT_SYMBOL_GPL vmlinux 0x7b9ec444 fsnotify_alloc_group EXPORT_SYMBOL_GPL vmlinux 0x7bb045a7 __request_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0x7bc7ccf6 tpm_tis_remove -EXPORT_SYMBOL_GPL vmlinux 0x7be3f0a4 regmap_mmio_detach_clk -EXPORT_SYMBOL_GPL vmlinux 0x7be4ae83 of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7bba34e8 phy_led_triggers_register +EXPORT_SYMBOL_GPL vmlinux 0x7bc4fe98 sk_set_peek_off +EXPORT_SYMBOL_GPL vmlinux 0x7bd318e6 dev_pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0x7bd84800 security_inode_setattr +EXPORT_SYMBOL_GPL vmlinux 0x7be1841c unregister_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x7be76b5d security_path_link EXPORT_SYMBOL_GPL vmlinux 0x7be89624 usb_gadget_giveback_request -EXPORT_SYMBOL_GPL vmlinux 0x7bf31131 pci_epf_bind -EXPORT_SYMBOL_GPL vmlinux 0x7c0a2256 bpf_prog_inc_not_zero -EXPORT_SYMBOL_GPL vmlinux 0x7c0c3cb0 platform_get_resource -EXPORT_SYMBOL_GPL vmlinux 0x7c11fb0f blkcg_root -EXPORT_SYMBOL_GPL vmlinux 0x7c12c4d2 blk_queue_max_discard_segments -EXPORT_SYMBOL_GPL vmlinux 0x7c18c555 pcie_bus_configure_settings -EXPORT_SYMBOL_GPL vmlinux 0x7c1dd1ca devlink_dpipe_table_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7bf3d41a usb_gadget_disconnect +EXPORT_SYMBOL_GPL vmlinux 0x7bfad96d tty_port_default_client_ops +EXPORT_SYMBOL_GPL vmlinux 0x7c027003 blkdev_zone_mgmt +EXPORT_SYMBOL_GPL vmlinux 0x7c18a0ab spi_bus_unlock +EXPORT_SYMBOL_GPL vmlinux 0x7c1a442c sk_clear_memalloc +EXPORT_SYMBOL_GPL vmlinux 0x7c1c5c82 usb_gadget_vbus_connect EXPORT_SYMBOL_GPL vmlinux 0x7c291e86 show_rcu_tasks_trace_gp_kthread -EXPORT_SYMBOL_GPL vmlinux 0x7c2f97be of_dma_simple_xlate -EXPORT_SYMBOL_GPL vmlinux 0x7c303d88 snd_soc_set_runtime_hwparams -EXPORT_SYMBOL_GPL vmlinux 0x7c330728 ata_scsi_port_error_handler EXPORT_SYMBOL_GPL vmlinux 0x7c3d8a4b icc_bulk_put +EXPORT_SYMBOL_GPL vmlinux 0x7c3df8a2 __traceiter_pelt_rt_tp +EXPORT_SYMBOL_GPL vmlinux 0x7c4eae50 pm_generic_resume +EXPORT_SYMBOL_GPL vmlinux 0x7c51431c transport_configure_device +EXPORT_SYMBOL_GPL vmlinux 0x7c57928c snd_soc_component_compr_get_caps EXPORT_SYMBOL_GPL vmlinux 0x7c5968da disable_kprobe -EXPORT_SYMBOL_GPL vmlinux 0x7c5d0e72 pci_epf_remove_vepf -EXPORT_SYMBOL_GPL vmlinux 0x7c67d55f snd_soc_component_compr_set_params -EXPORT_SYMBOL_GPL vmlinux 0x7c701ea8 ping_init_sock -EXPORT_SYMBOL_GPL vmlinux 0x7c802a3f cpufreq_generic_init -EXPORT_SYMBOL_GPL vmlinux 0x7c81a76e iommu_fwspec_free -EXPORT_SYMBOL_GPL vmlinux 0x7c90b99f sm501_set_clock +EXPORT_SYMBOL_GPL vmlinux 0x7c6eae9d crypto_shash_tfm_digest +EXPORT_SYMBOL_GPL vmlinux 0x7c7686ef genphy_c45_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0x7c7d3042 splice_to_pipe +EXPORT_SYMBOL_GPL vmlinux 0x7c8c1b5a ata_pci_bmdma_init_one +EXPORT_SYMBOL_GPL vmlinux 0x7c94bf8f ncsi_unregister_dev EXPORT_SYMBOL_GPL vmlinux 0x7c983a5d dmi_walk EXPORT_SYMBOL_GPL vmlinux 0x7c9a7371 clk_prepare -EXPORT_SYMBOL_GPL vmlinux 0x7c9b3d7d devm_pwmchip_add -EXPORT_SYMBOL_GPL vmlinux 0x7ca0b757 blk_abort_request -EXPORT_SYMBOL_GPL vmlinux 0x7cbfd3d3 arm_iommu_release_mapping +EXPORT_SYMBOL_GPL vmlinux 0x7c9b217b nanddev_markbad +EXPORT_SYMBOL_GPL vmlinux 0x7ca9b5b1 lwtunnel_cmp_encap +EXPORT_SYMBOL_GPL vmlinux 0x7cb92ef4 noop_backing_dev_info +EXPORT_SYMBOL_GPL vmlinux 0x7cd5439a musb_set_host EXPORT_SYMBOL_GPL vmlinux 0x7cd6f042 cpufreq_get_current_driver -EXPORT_SYMBOL_GPL vmlinux 0x7ce9ecfe sk_msg_return_zero +EXPORT_SYMBOL_GPL vmlinux 0x7cea789e fuse_request_end EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0x7cebc329 ip6_redirect +EXPORT_SYMBOL_GPL vmlinux 0x7cf7d114 crypto_register_aeads +EXPORT_SYMBOL_GPL vmlinux 0x7cf9e180 ata_noop_qc_prep EXPORT_SYMBOL_GPL vmlinux 0x7d00c65b nd_synchronize -EXPORT_SYMBOL_GPL vmlinux 0x7d0a61ab pci_user_read_config_word -EXPORT_SYMBOL_GPL vmlinux 0x7d162ed0 sysfs_create_link_nowarn -EXPORT_SYMBOL_GPL vmlinux 0x7d331c31 sysfs_create_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x7d40d267 usb_del_gadget -EXPORT_SYMBOL_GPL vmlinux 0x7d41534c ata_bmdma32_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x7d501280 device_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x7d168585 usb_gadget_udc_reset +EXPORT_SYMBOL_GPL vmlinux 0x7d21e9ba devres_close_group +EXPORT_SYMBOL_GPL vmlinux 0x7d231c96 usb_gen_phy_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x7d3e2c36 pci_epf_remove_vepf EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq -EXPORT_SYMBOL_GPL vmlinux 0x7d5e6b89 wwan_register_ops -EXPORT_SYMBOL_GPL vmlinux 0x7d6f724b dev_pm_domain_attach_by_id -EXPORT_SYMBOL_GPL vmlinux 0x7d74c80d gpiochip_enable_irq -EXPORT_SYMBOL_GPL vmlinux 0x7d7836bd snd_soc_dai_compr_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x7d7a116c __traceiter_br_fdb_add -EXPORT_SYMBOL_GPL vmlinux 0x7d80041f device_show_ulong -EXPORT_SYMBOL_GPL vmlinux 0x7d844940 crypto_enqueue_request_head -EXPORT_SYMBOL_GPL vmlinux 0x7d855d3d dev_pm_opp_set_prop_name -EXPORT_SYMBOL_GPL vmlinux 0x7d993116 l3mdev_fib_table_rcu -EXPORT_SYMBOL_GPL vmlinux 0x7d9f46ae crypto_register_shash -EXPORT_SYMBOL_GPL vmlinux 0x7dd988ac scsi_host_complete_all_commands +EXPORT_SYMBOL_GPL vmlinux 0x7d79056c snd_soc_dapm_get_volsw +EXPORT_SYMBOL_GPL vmlinux 0x7d7d0b2d ahci_fill_cmd_slot +EXPORT_SYMBOL_GPL vmlinux 0x7d7e82af __traceiter_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0x7d8347ac pci_bus_resource_n +EXPORT_SYMBOL_GPL vmlinux 0x7d95aea9 pci_ats_supported +EXPORT_SYMBOL_GPL vmlinux 0x7da2d2e5 umd_cleanup_helper +EXPORT_SYMBOL_GPL vmlinux 0x7da4bed8 rio_request_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x7da51105 eventfd_ctx_fileget +EXPORT_SYMBOL_GPL vmlinux 0x7da93d2f gpiochip_irqchip_add_domain +EXPORT_SYMBOL_GPL vmlinux 0x7dac1fbf nvmem_device_get +EXPORT_SYMBOL_GPL vmlinux 0x7db291bf do_unregister_con_driver +EXPORT_SYMBOL_GPL vmlinux 0x7db5c6cf fsstack_copy_attr_all +EXPORT_SYMBOL_GPL vmlinux 0x7db694ed __traceiter_sched_update_nr_running_tp +EXPORT_SYMBOL_GPL vmlinux 0x7dbd368e __sock_recv_ts_and_drops +EXPORT_SYMBOL_GPL vmlinux 0x7dc0821d blk_mq_unfreeze_queue +EXPORT_SYMBOL_GPL vmlinux 0x7dc5d145 sched_trace_cfs_rq_cpu +EXPORT_SYMBOL_GPL vmlinux 0x7dd8192e mmc_pwrseq_register EXPORT_SYMBOL_GPL vmlinux 0x7dda30af unregister_tracepoint_module_notifier -EXPORT_SYMBOL_GPL vmlinux 0x7deda75a __rtnl_link_register -EXPORT_SYMBOL_GPL vmlinux 0x7deff55d icc_set_tag -EXPORT_SYMBOL_GPL vmlinux 0x7df09822 snd_soc_get_volsw_sx -EXPORT_SYMBOL_GPL vmlinux 0x7df13089 regcache_drop_region -EXPORT_SYMBOL_GPL vmlinux 0x7dff3b00 pwmchip_remove -EXPORT_SYMBOL_GPL vmlinux 0x7e002527 devm_hwspin_lock_free -EXPORT_SYMBOL_GPL vmlinux 0x7e15ea11 subsys_dev_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0x7e1f4788 scmi_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0x7e392f68 sch_frag_xmit_hook +EXPORT_SYMBOL_GPL vmlinux 0x7ddab1a8 regulator_list_voltage +EXPORT_SYMBOL_GPL vmlinux 0x7ded83ab mptcp_get_reset_option +EXPORT_SYMBOL_GPL vmlinux 0x7dee7bff device_create_managed_software_node +EXPORT_SYMBOL_GPL vmlinux 0x7df197af handle_bad_irq +EXPORT_SYMBOL_GPL vmlinux 0x7dfd3996 devlink_register +EXPORT_SYMBOL_GPL vmlinux 0x7e012964 netlink_add_tap +EXPORT_SYMBOL_GPL vmlinux 0x7e28b47f phy_check_downshift +EXPORT_SYMBOL_GPL vmlinux 0x7e2ee7f8 devm_extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7e3409a8 ipv6_bpf_stub EXPORT_SYMBOL_GPL vmlinux 0x7e3bdecd __ftrace_vprintk -EXPORT_SYMBOL_GPL vmlinux 0x7e5357e5 devm_pm_opp_attach_genpd +EXPORT_SYMBOL_GPL vmlinux 0x7e4375fb devm_regulator_register +EXPORT_SYMBOL_GPL vmlinux 0x7e4cd085 spi_add_device +EXPORT_SYMBOL_GPL vmlinux 0x7e528d6f mtd_read_fact_prot_reg EXPORT_SYMBOL_GPL vmlinux 0x7e5db80b pstore_name_to_type EXPORT_SYMBOL_GPL vmlinux 0x7e606130 snd_soc_calc_bclk EXPORT_SYMBOL_GPL vmlinux 0x7e64181d usb_calc_bus_time -EXPORT_SYMBOL_GPL vmlinux 0x7e681d82 strp_process -EXPORT_SYMBOL_GPL vmlinux 0x7e6847ab tun_get_socket +EXPORT_SYMBOL_GPL vmlinux 0x7e736ae9 mddev_init_writes_pending +EXPORT_SYMBOL_GPL vmlinux 0x7e73f0d9 extcon_dev_unregister EXPORT_SYMBOL_GPL vmlinux 0x7e7e3f58 ring_buffer_reset_cpu -EXPORT_SYMBOL_GPL vmlinux 0x7e8e2004 wm8350_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x7e8e7b4f iomap_truncate_page +EXPORT_SYMBOL_GPL vmlinux 0x7e807b80 device_set_of_node_from_dev +EXPORT_SYMBOL_GPL vmlinux 0x7e915d88 net_selftest EXPORT_SYMBOL_GPL vmlinux 0x7e917894 __SCK__tp_func_unmap -EXPORT_SYMBOL_GPL vmlinux 0x7e91e710 ncsi_start_dev -EXPORT_SYMBOL_GPL vmlinux 0x7eb01347 mnt_want_write_file -EXPORT_SYMBOL_GPL vmlinux 0x7eb05768 devm_regulator_bulk_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x7eb0bdc5 devlink_port_attrs_set -EXPORT_SYMBOL_GPL vmlinux 0x7eb10686 evict_inodes +EXPORT_SYMBOL_GPL vmlinux 0x7e929607 wm8350_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0x7e9ba6a3 tpm_pcr_read +EXPORT_SYMBOL_GPL vmlinux 0x7ea88a85 snd_soc_dpcm_can_be_free_stop +EXPORT_SYMBOL_GPL vmlinux 0x7eafb66a crypto_register_algs +EXPORT_SYMBOL_GPL vmlinux 0x7eb7ffdb i2c_dw_validate_speed EXPORT_SYMBOL_GPL vmlinux 0x7eb808d0 add_cpu -EXPORT_SYMBOL_GPL vmlinux 0x7ec69b46 cgrp_dfl_root -EXPORT_SYMBOL_GPL vmlinux 0x7ed258fc find_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x7ebf1f68 __dax_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x7ec03520 iommu_map_atomic +EXPORT_SYMBOL_GPL vmlinux 0x7ec9a68c find_asymmetric_key EXPORT_SYMBOL_GPL vmlinux 0x7eea6b8b pcap_adc_async -EXPORT_SYMBOL_GPL vmlinux 0x7ef40737 sysfs_create_file_ns -EXPORT_SYMBOL_GPL vmlinux 0x7ef780f3 mtk_pinconf_drive_set_rev1 +EXPORT_SYMBOL_GPL vmlinux 0x7eec8ddb usb_clear_halt +EXPORT_SYMBOL_GPL vmlinux 0x7ef6e838 sdhci_cqe_enable +EXPORT_SYMBOL_GPL vmlinux 0x7efa266d dm_internal_resume_fast +EXPORT_SYMBOL_GPL vmlinux 0x7f004cd8 snd_soc_dapm_kcontrol_widget +EXPORT_SYMBOL_GPL vmlinux 0x7f151821 dm_internal_suspend_noflush EXPORT_SYMBOL_GPL vmlinux 0x7f2623ee mm_account_pinned_pages -EXPORT_SYMBOL_GPL vmlinux 0x7f2da5e3 tty_ldisc_ref_wait -EXPORT_SYMBOL_GPL vmlinux 0x7f418e94 devres_get -EXPORT_SYMBOL_GPL vmlinux 0x7f689093 transport_configure_device -EXPORT_SYMBOL_GPL vmlinux 0x7f7125ed of_devfreq_cooling_register_power +EXPORT_SYMBOL_GPL vmlinux 0x7f320013 snd_dmaengine_pcm_close +EXPORT_SYMBOL_GPL vmlinux 0x7f408c5f __traceiter_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0x7f40f24d vmf_insert_pfn_pmd_prot +EXPORT_SYMBOL_GPL vmlinux 0x7f4cb8d9 gpiod_set_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0x7f51cbcc dev_pm_opp_adjust_voltage +EXPORT_SYMBOL_GPL vmlinux 0x7f5deec6 snd_soc_dpcm_be_can_update +EXPORT_SYMBOL_GPL vmlinux 0x7f61b080 fat_add_entries +EXPORT_SYMBOL_GPL vmlinux 0x7f63a56e cpufreq_disable_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0x7f6c1abe tpm_transmit_cmd +EXPORT_SYMBOL_GPL vmlinux 0x7f797420 device_create_file EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata -EXPORT_SYMBOL_GPL vmlinux 0x7f8077fd irq_domain_create_simple -EXPORT_SYMBOL_GPL vmlinux 0x7f811c8c auxiliary_device_init +EXPORT_SYMBOL_GPL vmlinux 0x7f851a1a __traceiter_pelt_dl_tp +EXPORT_SYMBOL_GPL vmlinux 0x7f877333 usb_hub_claim_port +EXPORT_SYMBOL_GPL vmlinux 0x7f8cfbd1 trace_array_get_by_name EXPORT_SYMBOL_GPL vmlinux 0x7f8dd2bb bstr_printf +EXPORT_SYMBOL_GPL vmlinux 0x7f8ec25d security_inode_permission +EXPORT_SYMBOL_GPL vmlinux 0x7fa81553 pci_assign_unassigned_bus_resources EXPORT_SYMBOL_GPL vmlinux 0x7fafdec9 clk_fixed_factor_ops -EXPORT_SYMBOL_GPL vmlinux 0x7fb7408d nand_prog_page_op -EXPORT_SYMBOL_GPL vmlinux 0x7fc662bf blk_req_zone_write_trylock -EXPORT_SYMBOL_GPL vmlinux 0x7fc9fb67 of_irq_get -EXPORT_SYMBOL_GPL vmlinux 0x7fcb879b blk_trace_remove -EXPORT_SYMBOL_GPL vmlinux 0x7fd11758 driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0x7fd8248a gpiod_get_from_of_node -EXPORT_SYMBOL_GPL vmlinux 0x7fde5897 iommu_set_pgtable_quirks -EXPORT_SYMBOL_GPL vmlinux 0x7fdefab8 snd_soc_dai_set_tdm_slot -EXPORT_SYMBOL_GPL vmlinux 0x7fe0ca0d dw_pcie_write_dbi +EXPORT_SYMBOL_GPL vmlinux 0x7fb8c3ce ata_sff_check_status +EXPORT_SYMBOL_GPL vmlinux 0x7fcb908a sdhci_dumpregs +EXPORT_SYMBOL_GPL vmlinux 0x7fcf25e6 edac_device_alloc_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0x7fe5af89 scsi_dh_activate +EXPORT_SYMBOL_GPL vmlinux 0x7fe9a19a synth_event_add_next_val +EXPORT_SYMBOL_GPL vmlinux 0x7ff150ab devlink_health_reporter_create +EXPORT_SYMBOL_GPL vmlinux 0x800186ed auxiliary_find_device +EXPORT_SYMBOL_GPL vmlinux 0x801336f5 dmi_kobj +EXPORT_SYMBOL_GPL vmlinux 0x801cd90e wwan_unregister_ops EXPORT_SYMBOL_GPL vmlinux 0x801eb65d dev_pm_opp_of_cpumask_remove_table -EXPORT_SYMBOL_GPL vmlinux 0x80222916 fat_setattr -EXPORT_SYMBOL_GPL vmlinux 0x8023628b pwm_free -EXPORT_SYMBOL_GPL vmlinux 0x80267d8e mmc_crypto_prepare_req -EXPORT_SYMBOL_GPL vmlinux 0x80271d61 find_mci_by_dev -EXPORT_SYMBOL_GPL vmlinux 0x80292909 skcipher_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x802b23fd badblocks_exit +EXPORT_SYMBOL_GPL vmlinux 0x8034f359 __vfs_removexattr_noperm EXPORT_SYMBOL_GPL vmlinux 0x8035bed7 rockchip_clk_protect_critical +EXPORT_SYMBOL_GPL vmlinux 0x803e1ce0 dev_pm_opp_free_cpufreq_table +EXPORT_SYMBOL_GPL vmlinux 0x80440c5f wbc_detach_inode +EXPORT_SYMBOL_GPL vmlinux 0x80463439 amba_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8046c8a8 devm_thermal_zone_of_sensor_register +EXPORT_SYMBOL_GPL vmlinux 0x8050ec1e regmap_reinit_cache EXPORT_SYMBOL_GPL vmlinux 0x805667cf devlink_fmsg_u64_put +EXPORT_SYMBOL_GPL vmlinux 0x80578097 snd_soc_dai_set_tdm_slot EXPORT_SYMBOL_GPL vmlinux 0x80584211 misc_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x80590d81 mbox_free_channel -EXPORT_SYMBOL_GPL vmlinux 0x805a9310 power_supply_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x80690c44 of_reserved_mem_device_release +EXPORT_SYMBOL_GPL vmlinux 0x805e7397 ata_sff_exec_command +EXPORT_SYMBOL_GPL vmlinux 0x8067f46f __rt_mutex_init +EXPORT_SYMBOL_GPL vmlinux 0x8069fd64 snd_soc_dai_compr_get_params +EXPORT_SYMBOL_GPL vmlinux 0x806c8048 dev_forward_skb EXPORT_SYMBOL_GPL vmlinux 0x80746ec6 btree_visitor +EXPORT_SYMBOL_GPL vmlinux 0x8077be39 bio_release_pages +EXPORT_SYMBOL_GPL vmlinux 0x807bcb62 irq_gc_set_wake +EXPORT_SYMBOL_GPL vmlinux 0x807e0392 devm_gpiochip_add_data_with_key EXPORT_SYMBOL_GPL vmlinux 0x807fdcc4 call_rcu_tasks_rude -EXPORT_SYMBOL_GPL vmlinux 0x80898710 da9052_adc_read_temp -EXPORT_SYMBOL_GPL vmlinux 0x808c83d7 __spi_alloc_controller +EXPORT_SYMBOL_GPL vmlinux 0x8089d08d mddev_suspend EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested -EXPORT_SYMBOL_GPL vmlinux 0x80a0e5ad crypto_alloc_akcipher -EXPORT_SYMBOL_GPL vmlinux 0x80a736a4 generic_handle_domain_irq -EXPORT_SYMBOL_GPL vmlinux 0x80ab2c9f icc_get +EXPORT_SYMBOL_GPL vmlinux 0x8098924f pci_vpd_alloc +EXPORT_SYMBOL_GPL vmlinux 0x809d8eb2 dma_alloc_pages +EXPORT_SYMBOL_GPL vmlinux 0x80a0b77d param_set_uint_minmax +EXPORT_SYMBOL_GPL vmlinux 0x80ad140a pci_load_and_free_saved_state EXPORT_SYMBOL_GPL vmlinux 0x80b17b75 omap_get_plat_info -EXPORT_SYMBOL_GPL vmlinux 0x80c1ce38 debugfs_create_file EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close -EXPORT_SYMBOL_GPL vmlinux 0x80cd34dd dma_resv_test_signaled -EXPORT_SYMBOL_GPL vmlinux 0x80d27cd5 ata_sff_tf_read +EXPORT_SYMBOL_GPL vmlinux 0x80c68709 __register_mtd_parser +EXPORT_SYMBOL_GPL vmlinux 0x80cdf99c snd_ctl_sync_vmaster +EXPORT_SYMBOL_GPL vmlinux 0x80d3b0cc devm_gpiod_get EXPORT_SYMBOL_GPL vmlinux 0x80d5e57a mpi_free -EXPORT_SYMBOL_GPL vmlinux 0x80d7aad0 ohci_suspend -EXPORT_SYMBOL_GPL vmlinux 0x80f242c8 __dma_request_channel -EXPORT_SYMBOL_GPL vmlinux 0x80f32cc6 i2c_dw_probe_master -EXPORT_SYMBOL_GPL vmlinux 0x8114db7a skb_segment -EXPORT_SYMBOL_GPL vmlinux 0x8118fd9f ata_bmdma_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x80d6a3aa pci_generic_config_write +EXPORT_SYMBOL_GPL vmlinux 0x80e8da98 pl08x_filter_id +EXPORT_SYMBOL_GPL vmlinux 0x80eda6f2 ata_qc_get_active +EXPORT_SYMBOL_GPL vmlinux 0x80f446ce iommu_aux_get_pasid +EXPORT_SYMBOL_GPL vmlinux 0x80ff130e of_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x810125f8 devm_of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x81021144 dw_pcie_ep_init +EXPORT_SYMBOL_GPL vmlinux 0x810721cd evict_inodes +EXPORT_SYMBOL_GPL vmlinux 0x810e29ac dev_pm_opp_put +EXPORT_SYMBOL_GPL vmlinux 0x8117e96a usb_pipe_type_check EXPORT_SYMBOL_GPL vmlinux 0x811dc334 usb_unregister_notify -EXPORT_SYMBOL_GPL vmlinux 0x81251208 __ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0x81256c03 snd_soc_unregister_component_by_driver EXPORT_SYMBOL_GPL vmlinux 0x8135b757 pkcs7_get_content_data -EXPORT_SYMBOL_GPL vmlinux 0x814d8ed2 input_ff_create -EXPORT_SYMBOL_GPL vmlinux 0x8153c52c usb_gadget_set_state +EXPORT_SYMBOL_GPL vmlinux 0x814175f4 nvmem_cell_read_u16 +EXPORT_SYMBOL_GPL vmlinux 0x8153f85c devm_qcom_smem_state_get EXPORT_SYMBOL_GPL vmlinux 0x815588a6 clk_enable +EXPORT_SYMBOL_GPL vmlinux 0x815c579a iommu_unregister_device_fault_handler EXPORT_SYMBOL_GPL vmlinux 0x815fda83 sed_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x8164fdc1 fwnode_graph_get_next_endpoint EXPORT_SYMBOL_GPL vmlinux 0x816a41ca cpufreq_update_limits -EXPORT_SYMBOL_GPL vmlinux 0x81731580 __traceiter_sched_update_nr_running_tp EXPORT_SYMBOL_GPL vmlinux 0x8180cede asn1_encode_sequence -EXPORT_SYMBOL_GPL vmlinux 0x819e31cf bdev_disk_changed +EXPORT_SYMBOL_GPL vmlinux 0x818462b7 led_trigger_register_simple +EXPORT_SYMBOL_GPL vmlinux 0x8193d16f transport_setup_device +EXPORT_SYMBOL_GPL vmlinux 0x81959cd1 firmware_request_cache EXPORT_SYMBOL_GPL vmlinux 0x819fe250 iommu_alloc_resv_region -EXPORT_SYMBOL_GPL vmlinux 0x81ae5f19 irq_chip_set_affinity_parent -EXPORT_SYMBOL_GPL vmlinux 0x81afbb17 tpm2_flush_context EXPORT_SYMBOL_GPL vmlinux 0x81b03377 efivar_entry_set_safe -EXPORT_SYMBOL_GPL vmlinux 0x81ba54ed rio_unmap_inb_region -EXPORT_SYMBOL_GPL vmlinux 0x81e48261 serial8250_tx_chars +EXPORT_SYMBOL_GPL vmlinux 0x81b2e8ae device_initialize +EXPORT_SYMBOL_GPL vmlinux 0x81b67371 of_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0x81b9e3c3 pwm_request +EXPORT_SYMBOL_GPL vmlinux 0x81bbcb75 devm_gpio_free +EXPORT_SYMBOL_GPL vmlinux 0x81bfb471 tpm1_do_selftest +EXPORT_SYMBOL_GPL vmlinux 0x81ce9479 snd_soc_dapm_get_pin_status +EXPORT_SYMBOL_GPL vmlinux 0x81d204f7 call_switchdev_blocking_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x81d95193 pinctrl_generic_get_group +EXPORT_SYMBOL_GPL vmlinux 0x81dd091e dev_pm_opp_remove_all_dynamic +EXPORT_SYMBOL_GPL vmlinux 0x81de4a7f efivar_entry_find +EXPORT_SYMBOL_GPL vmlinux 0x81e5b4bc gpiochip_enable_irq EXPORT_SYMBOL_GPL vmlinux 0x81ee81f0 percpu_ref_reinit EXPORT_SYMBOL_GPL vmlinux 0x81f372a2 unregister_ftrace_export +EXPORT_SYMBOL_GPL vmlinux 0x81f5b459 snd_soc_add_pcm_runtime EXPORT_SYMBOL_GPL vmlinux 0x8202b650 irq_set_affinity -EXPORT_SYMBOL_GPL vmlinux 0x82054a85 cpufreq_frequency_table_get_index -EXPORT_SYMBOL_GPL vmlinux 0x821302f5 __skb_tstamp_tx -EXPORT_SYMBOL_GPL vmlinux 0x8218848e rio_dev_get -EXPORT_SYMBOL_GPL vmlinux 0x8218ab66 pinctrl_remove_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x82063629 spi_new_ancillary_device +EXPORT_SYMBOL_GPL vmlinux 0x8210f4f0 devfreq_event_enable_edev +EXPORT_SYMBOL_GPL vmlinux 0x8215c17a devm_of_icc_get +EXPORT_SYMBOL_GPL vmlinux 0x821b9a9a udp_init_sock EXPORT_SYMBOL_GPL vmlinux 0x821ec7f1 clk_mux_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0x821ec8d0 usb_sg_cancel -EXPORT_SYMBOL_GPL vmlinux 0x82223df9 devm_of_pwm_get EXPORT_SYMBOL_GPL vmlinux 0x82226c53 pinctrl_unregister_mappings -EXPORT_SYMBOL_GPL vmlinux 0x822d3026 mtd_is_locked -EXPORT_SYMBOL_GPL vmlinux 0x8234d9d6 pin_get_name -EXPORT_SYMBOL_GPL vmlinux 0x82409053 devm_spi_mem_dirmap_create -EXPORT_SYMBOL_GPL vmlinux 0x82622725 pci_epc_destroy -EXPORT_SYMBOL_GPL vmlinux 0x8268b689 debugfs_create_x32 -EXPORT_SYMBOL_GPL vmlinux 0x8271e4b7 scsi_autopm_put_device -EXPORT_SYMBOL_GPL vmlinux 0x827a5f4a __blk_req_zone_write_lock -EXPORT_SYMBOL_GPL vmlinux 0x827f18cc wm8350_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x82833f60 do_tcp_sendpages -EXPORT_SYMBOL_GPL vmlinux 0x8283918d fat_add_entries -EXPORT_SYMBOL_GPL vmlinux 0x8296593c uart_handle_cts_change -EXPORT_SYMBOL_GPL vmlinux 0x829eda63 fwnode_get_next_parent +EXPORT_SYMBOL_GPL vmlinux 0x8227bad6 mmc_app_cmd +EXPORT_SYMBOL_GPL vmlinux 0x822d1f34 __scsi_init_queue +EXPORT_SYMBOL_GPL vmlinux 0x8238aea2 devm_mbox_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x823f6c40 crypto_stats_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0x824c92f9 sata_scr_write_flush +EXPORT_SYMBOL_GPL vmlinux 0x827ccd65 sdio_retune_crc_enable +EXPORT_SYMBOL_GPL vmlinux 0x8290da00 fscrypt_mergeable_bio +EXPORT_SYMBOL_GPL vmlinux 0x829ef6bc inet_twsk_hashdance +EXPORT_SYMBOL_GPL vmlinux 0x82a08682 set_cpus_allowed_ptr +EXPORT_SYMBOL_GPL vmlinux 0x82a6f13a sdio_writel EXPORT_SYMBOL_GPL vmlinux 0x82a80545 __SCK__tp_func_fdb_delete -EXPORT_SYMBOL_GPL vmlinux 0x82c91521 ata_host_alloc_pinfo -EXPORT_SYMBOL_GPL vmlinux 0x82d1fbfe snd_soc_pm_ops -EXPORT_SYMBOL_GPL vmlinux 0x82d3ba01 gpiochip_line_is_open_source +EXPORT_SYMBOL_GPL vmlinux 0x82aa1874 snd_soc_dapm_add_routes +EXPORT_SYMBOL_GPL vmlinux 0x82cb64ed crypto_alloc_tfm_node +EXPORT_SYMBOL_GPL vmlinux 0x82d4da2a rtnl_get_net_ns_capable EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure -EXPORT_SYMBOL_GPL vmlinux 0x82dcf74e gpiochip_relres_irq -EXPORT_SYMBOL_GPL vmlinux 0x82ddaed1 cpuidle_unregister_driver EXPORT_SYMBOL_GPL vmlinux 0x82e22c44 srcu_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0x82ec2639 fwnode_get_nth_parent +EXPORT_SYMBOL_GPL vmlinux 0x82e2a5da ata_port_desc EXPORT_SYMBOL_GPL vmlinux 0x82ff4b95 clk_hw_unregister_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0x830e2283 io_cgrp_subsys -EXPORT_SYMBOL_GPL vmlinux 0x8313e501 led_trigger_write -EXPORT_SYMBOL_GPL vmlinux 0x83176571 pci_epc_multi_mem_init -EXPORT_SYMBOL_GPL vmlinux 0x8318303a sdhci_pltfm_pmops -EXPORT_SYMBOL_GPL vmlinux 0x8335c6b0 xhci_add_endpoint -EXPORT_SYMBOL_GPL vmlinux 0x833899f1 clk_hw_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0x830bbd95 __phy_modify +EXPORT_SYMBOL_GPL vmlinux 0x8313ac37 ahci_reset_em +EXPORT_SYMBOL_GPL vmlinux 0x831e0458 tty_ldisc_receive_buf +EXPORT_SYMBOL_GPL vmlinux 0x8328fdc4 kthread_cancel_delayed_work_sync EXPORT_SYMBOL_GPL vmlinux 0x8339df73 klist_add_behind +EXPORT_SYMBOL_GPL vmlinux 0x833a0aa1 snd_soc_component_exit_regmap +EXPORT_SYMBOL_GPL vmlinux 0x833ca5b8 dma_buf_export EXPORT_SYMBOL_GPL vmlinux 0x8349a895 nvmem_device_put -EXPORT_SYMBOL_GPL vmlinux 0x835795c0 snd_soc_dapm_enable_pin -EXPORT_SYMBOL_GPL vmlinux 0x8376d78d rockchip_pcie_cfg_configuration_accesses -EXPORT_SYMBOL_GPL vmlinux 0x838c1587 usb_match_one_id -EXPORT_SYMBOL_GPL vmlinux 0x838fb3f9 phy_calibrate +EXPORT_SYMBOL_GPL vmlinux 0x835eba5d get_net_ns_by_fd +EXPORT_SYMBOL_GPL vmlinux 0x837b85e9 __fscrypt_prepare_setattr +EXPORT_SYMBOL_GPL vmlinux 0x838f9177 irq_domain_simple_ops EXPORT_SYMBOL_GPL vmlinux 0x83971642 enable_kprobe -EXPORT_SYMBOL_GPL vmlinux 0x83be3241 spi_setup -EXPORT_SYMBOL_GPL vmlinux 0x83c4154c spi_get_device_id -EXPORT_SYMBOL_GPL vmlinux 0x83d6398d vfs_setlease -EXPORT_SYMBOL_GPL vmlinux 0x83ed5c05 crypto_unregister_algs -EXPORT_SYMBOL_GPL vmlinux 0x83f5ee00 i2c_slave_register +EXPORT_SYMBOL_GPL vmlinux 0x83a41672 platform_get_mem_or_io +EXPORT_SYMBOL_GPL vmlinux 0x83ad311d class_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x83b4566e snd_soc_dai_compr_set_params +EXPORT_SYMBOL_GPL vmlinux 0x83b4b835 cgrp_dfl_root +EXPORT_SYMBOL_GPL vmlinux 0x83b7433b __devm_regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0x83bb66ca fib6_new_table +EXPORT_SYMBOL_GPL vmlinux 0x83bf35d1 __sock_recv_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x83c5b631 of_pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0x83e45d3c of_pci_find_child_device +EXPORT_SYMBOL_GPL vmlinux 0x83ebcffd devlink_unregister +EXPORT_SYMBOL_GPL vmlinux 0x83faecb4 unregister_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x83fec2c7 ata_scsi_port_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x840268fd hisi_clk_init EXPORT_SYMBOL_GPL vmlinux 0x84051646 sbitmap_queue_clear -EXPORT_SYMBOL_GPL vmlinux 0x841055af perf_event_read_value EXPORT_SYMBOL_GPL vmlinux 0x84106f36 devlink_trap_ctx_priv -EXPORT_SYMBOL_GPL vmlinux 0x842298c9 mmc_poll_for_busy +EXPORT_SYMBOL_GPL vmlinux 0x8418fde5 pwm_request_from_chip +EXPORT_SYMBOL_GPL vmlinux 0x841db0f2 switchdev_handle_port_obj_del +EXPORT_SYMBOL_GPL vmlinux 0x841f6b87 pci_cfg_access_trylock +EXPORT_SYMBOL_GPL vmlinux 0x8425d758 edac_pci_release_generic_ctl EXPORT_SYMBOL_GPL vmlinux 0x84264ced fs_umode_to_ftype -EXPORT_SYMBOL_GPL vmlinux 0x844359ec debugfs_file_put -EXPORT_SYMBOL_GPL vmlinux 0x844679cf ata_sas_sync_probe +EXPORT_SYMBOL_GPL vmlinux 0x8429927a dev_pm_opp_of_add_table_indexed +EXPORT_SYMBOL_GPL vmlinux 0x843b1542 usb_match_one_id EXPORT_SYMBOL_GPL vmlinux 0x844712df perf_event_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x8449f3da led_set_brightness_nosleep -EXPORT_SYMBOL_GPL vmlinux 0x844a5dd4 dma_async_device_channel_register EXPORT_SYMBOL_GPL vmlinux 0x844cb904 mtk_mutex_remove_comp EXPORT_SYMBOL_GPL vmlinux 0x84502a47 blk_status_to_errno -EXPORT_SYMBOL_GPL vmlinux 0x84505b5c snd_soc_daifmt_parse_clock_provider_raw EXPORT_SYMBOL_GPL vmlinux 0x845aa3dc lpddr2_jedec_timings EXPORT_SYMBOL_GPL vmlinux 0x845b2069 usb_show_dynids -EXPORT_SYMBOL_GPL vmlinux 0x845c5ccf mtd_wunit_to_pairing_info EXPORT_SYMBOL_GPL vmlinux 0x845dbf3b scatterwalk_map_and_copy +EXPORT_SYMBOL_GPL vmlinux 0x845e9664 wm8350_read_auxadc EXPORT_SYMBOL_GPL vmlinux 0x8462cb62 atapi_cmd_type -EXPORT_SYMBOL_GPL vmlinux 0x846a4654 dev_pm_qos_update_user_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0x846c6697 pci_check_and_unmask_intx -EXPORT_SYMBOL_GPL vmlinux 0x847b2881 fat_dir_empty -EXPORT_SYMBOL_GPL vmlinux 0x84882fdf clk_hw_register -EXPORT_SYMBOL_GPL vmlinux 0x849cec51 alloc_skb_for_msg -EXPORT_SYMBOL_GPL vmlinux 0x84a88050 devlink_remote_reload_actions_performed +EXPORT_SYMBOL_GPL vmlinux 0x84729cc7 device_link_del +EXPORT_SYMBOL_GPL vmlinux 0x8485ab6c iommu_register_device_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0x84952b84 snd_soc_component_read_field EXPORT_SYMBOL_GPL vmlinux 0x84a8d0eb of_changeset_revert -EXPORT_SYMBOL_GPL vmlinux 0x84acb36a netdev_walk_all_upper_dev_rcu -EXPORT_SYMBOL_GPL vmlinux 0x84b000f3 fuse_conn_init -EXPORT_SYMBOL_GPL vmlinux 0x84bba32b i2c_get_device_id -EXPORT_SYMBOL_GPL vmlinux 0x84c6128c snd_soc_dai_set_fmt -EXPORT_SYMBOL_GPL vmlinux 0x84e76b77 devm_phy_destroy -EXPORT_SYMBOL_GPL vmlinux 0x84ec729c relay_late_setup_files -EXPORT_SYMBOL_GPL vmlinux 0x84f1adc8 rtc_initialize_alarm -EXPORT_SYMBOL_GPL vmlinux 0x8501fed7 switchdev_handle_fdb_del_to_device +EXPORT_SYMBOL_GPL vmlinux 0x84a94cfb of_dma_xlate_by_chan_id +EXPORT_SYMBOL_GPL vmlinux 0x84bb6b05 ahci_platform_enable_regulators +EXPORT_SYMBOL_GPL vmlinux 0x84bc0bc7 uart_handle_cts_change +EXPORT_SYMBOL_GPL vmlinux 0x84c68b84 da903x_writes +EXPORT_SYMBOL_GPL vmlinux 0x84cf7f69 devfreq_event_get_event +EXPORT_SYMBOL_GPL vmlinux 0x84df61ad ahci_shost_attrs +EXPORT_SYMBOL_GPL vmlinux 0x84ea4bd3 devm_pci_epc_destroy +EXPORT_SYMBOL_GPL vmlinux 0x84eeda1f snd_soc_lookup_component +EXPORT_SYMBOL_GPL vmlinux 0x84f53a85 efivars_register EXPORT_SYMBOL_GPL vmlinux 0x8506baa8 clk_unregister_gate EXPORT_SYMBOL_GPL vmlinux 0x850bb6db devlink_health_reporter_destroy +EXPORT_SYMBOL_GPL vmlinux 0x851e3ca8 cpufreq_freq_transition_begin EXPORT_SYMBOL_GPL vmlinux 0x851e6003 usb_phy_roothub_calibrate EXPORT_SYMBOL_GPL vmlinux 0x851fe124 __SCK__tp_func_fib6_table_lookup -EXPORT_SYMBOL_GPL vmlinux 0x8526b83e sdio_writew -EXPORT_SYMBOL_GPL vmlinux 0x85278f32 regulator_set_current_limit_regmap -EXPORT_SYMBOL_GPL vmlinux 0x853c9fa0 rockchip_clk_register_plls -EXPORT_SYMBOL_GPL vmlinux 0x854a3142 nvmem_register -EXPORT_SYMBOL_GPL vmlinux 0x854f512b platform_bus +EXPORT_SYMBOL_GPL vmlinux 0x853aacdf ahci_handle_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x85471b08 devm_device_add_groups EXPORT_SYMBOL_GPL vmlinux 0x85540ebc nvmem_cell_put EXPORT_SYMBOL_GPL vmlinux 0x85647219 alarm_init +EXPORT_SYMBOL_GPL vmlinux 0x856aad49 virtqueue_poll +EXPORT_SYMBOL_GPL vmlinux 0x856b768d locks_alloc_lock EXPORT_SYMBOL_GPL vmlinux 0x8574ca6c gpio_request_array -EXPORT_SYMBOL_GPL vmlinux 0x8580ee2f regmap_async_complete_cb -EXPORT_SYMBOL_GPL vmlinux 0x858762a8 metadata_dst_alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0x85a9253b iommu_domain_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8591d48f snd_soc_runtime_set_dai_fmt EXPORT_SYMBOL_GPL vmlinux 0x85ac18e2 sprint_OID -EXPORT_SYMBOL_GPL vmlinux 0x85c131af debugfs_create_file_size -EXPORT_SYMBOL_GPL vmlinux 0x85c4c1ea pm_runtime_barrier -EXPORT_SYMBOL_GPL vmlinux 0x85c4dabc mtk_pinconf_adv_pull_set +EXPORT_SYMBOL_GPL vmlinux 0x85afb4b5 nfs_ssc_client_tbl +EXPORT_SYMBOL_GPL vmlinux 0x85b1cda2 iommu_report_device_fault EXPORT_SYMBOL_GPL vmlinux 0x85c54b61 efivar_validate -EXPORT_SYMBOL_GPL vmlinux 0x85caff97 __netdev_watchdog_up -EXPORT_SYMBOL_GPL vmlinux 0x85d8b22e snd_soc_component_compr_get_caps -EXPORT_SYMBOL_GPL vmlinux 0x85dbcb2d ahci_qc_issue -EXPORT_SYMBOL_GPL vmlinux 0x85ec170b dev_pm_opp_get_max_volt_latency -EXPORT_SYMBOL_GPL vmlinux 0x86067060 __efivar_entry_iter +EXPORT_SYMBOL_GPL vmlinux 0x85e03b24 regulator_suspend_enable +EXPORT_SYMBOL_GPL vmlinux 0x85fb5c1e ata_cable_sata +EXPORT_SYMBOL_GPL vmlinux 0x8604d136 bpf_prog_create +EXPORT_SYMBOL_GPL vmlinux 0x8605fb89 kernfs_get EXPORT_SYMBOL_GPL vmlinux 0x860a2eab bch_decode -EXPORT_SYMBOL_GPL vmlinux 0x86160eca crypto_stats_rng_seed -EXPORT_SYMBOL_GPL vmlinux 0x861f1e58 usb_udc_vbus_handler +EXPORT_SYMBOL_GPL vmlinux 0x860dc384 mtk_pinconf_adv_pull_set +EXPORT_SYMBOL_GPL vmlinux 0x8610767f devlink_dpipe_match_put +EXPORT_SYMBOL_GPL vmlinux 0x8611862d input_ff_flush +EXPORT_SYMBOL_GPL vmlinux 0x861c3e93 __udp_gso_segment +EXPORT_SYMBOL_GPL vmlinux 0x861dec1b __efivar_entry_iter EXPORT_SYMBOL_GPL vmlinux 0x862258db timecounter_init -EXPORT_SYMBOL_GPL vmlinux 0x86290eb9 blk_execute_rq_nowait +EXPORT_SYMBOL_GPL vmlinux 0x862292f6 dev_pm_opp_get_freq EXPORT_SYMBOL_GPL vmlinux 0x862bb17b linear_range_values_in_range_array -EXPORT_SYMBOL_GPL vmlinux 0x862f05bf pci_epf_alloc_space -EXPORT_SYMBOL_GPL vmlinux 0x864e7cbb irq_domain_translate_twocell +EXPORT_SYMBOL_GPL vmlinux 0x8634d4ee mptcp_token_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x863e69fb l3mdev_update_flow +EXPORT_SYMBOL_GPL vmlinux 0x86445601 fat_search_long +EXPORT_SYMBOL_GPL vmlinux 0x864d38e8 crypto_grab_spawn +EXPORT_SYMBOL_GPL vmlinux 0x8655ef2e mtd_kmalloc_up_to EXPORT_SYMBOL_GPL vmlinux 0x86585a33 devlink_fmsg_obj_nest_start -EXPORT_SYMBOL_GPL vmlinux 0x865b628f generic_device_group +EXPORT_SYMBOL_GPL vmlinux 0x86590dcb dev_xdp_prog_count +EXPORT_SYMBOL_GPL vmlinux 0x86607f8d led_trigger_unregister +EXPORT_SYMBOL_GPL vmlinux 0x866c4fac devm_regmap_add_irq_chip_fwnode EXPORT_SYMBOL_GPL vmlinux 0x8677245d unregister_switchdev_blocking_notifier EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get -EXPORT_SYMBOL_GPL vmlinux 0x8698b468 regmap_can_raw_write -EXPORT_SYMBOL_GPL vmlinux 0x86a0d54f mmc_sanitize +EXPORT_SYMBOL_GPL vmlinux 0x868cd9cc dev_pm_domain_start +EXPORT_SYMBOL_GPL vmlinux 0x86982127 crypto_alloc_acomp_node +EXPORT_SYMBOL_GPL vmlinux 0x86af0119 devlink_param_unregister EXPORT_SYMBOL_GPL vmlinux 0x86b427ce clkdev_create -EXPORT_SYMBOL_GPL vmlinux 0x86bf8fd9 perf_event_period +EXPORT_SYMBOL_GPL vmlinux 0x86b5d49d serdev_device_write_flush EXPORT_SYMBOL_GPL vmlinux 0x86c961b3 __set_dax_synchronous -EXPORT_SYMBOL_GPL vmlinux 0x86cde120 adp5520_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x86cfb650 usb_hub_release_port -EXPORT_SYMBOL_GPL vmlinux 0x86d2c5bb tcp_sendpage_locked -EXPORT_SYMBOL_GPL vmlinux 0x86d36638 fat_search_long -EXPORT_SYMBOL_GPL vmlinux 0x86d44d07 of_dma_xlate_by_chan_id EXPORT_SYMBOL_GPL vmlinux 0x86dda6ef rtm_getroute_parse_ip_proto EXPORT_SYMBOL_GPL vmlinux 0x86e7a634 alarm_start_relative -EXPORT_SYMBOL_GPL vmlinux 0x86f280e5 snd_soc_dai_active +EXPORT_SYMBOL_GPL vmlinux 0x86e918a1 kill_device EXPORT_SYMBOL_GPL vmlinux 0x86f6b99d synchronize_rcu_expedited -EXPORT_SYMBOL_GPL vmlinux 0x86f7fb5e cgroup_get_from_path EXPORT_SYMBOL_GPL vmlinux 0x86f85114 net_dec_egress_queue -EXPORT_SYMBOL_GPL vmlinux 0x870a385a snd_soc_dai_set_pll -EXPORT_SYMBOL_GPL vmlinux 0x87158349 of_property_read_variable_u32_array -EXPORT_SYMBOL_GPL vmlinux 0x872457ff regulator_set_current_limit -EXPORT_SYMBOL_GPL vmlinux 0x8725e624 __platform_register_drivers -EXPORT_SYMBOL_GPL vmlinux 0x872b29de vmf_insert_pfn_pmd_prot -EXPORT_SYMBOL_GPL vmlinux 0x87368521 phy_modify_mmd -EXPORT_SYMBOL_GPL vmlinux 0x873be5e4 pwm_request_from_chip -EXPORT_SYMBOL_GPL vmlinux 0x873e52af irq_chip_eoi_parent -EXPORT_SYMBOL_GPL vmlinux 0x877b84ef of_icc_get_from_provider -EXPORT_SYMBOL_GPL vmlinux 0x8782a73f usb_store_new_id -EXPORT_SYMBOL_GPL vmlinux 0x8789953c dev_pm_genpd_suspend -EXPORT_SYMBOL_GPL vmlinux 0x879517b5 of_pwm_xlate_with_flags -EXPORT_SYMBOL_GPL vmlinux 0x87a6b46a sdio_claim_host -EXPORT_SYMBOL_GPL vmlinux 0x87a851c1 snd_card_add_dev_attr -EXPORT_SYMBOL_GPL vmlinux 0x87abc6f8 gpiod_get_raw_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x87bacc8e nd_region_dev -EXPORT_SYMBOL_GPL vmlinux 0x87bd17cd tcp_sendmsg_locked -EXPORT_SYMBOL_GPL vmlinux 0x87c366a7 mddev_init -EXPORT_SYMBOL_GPL vmlinux 0x87da1a76 phy_restart_aneg -EXPORT_SYMBOL_GPL vmlinux 0x87dd7b1c xhci_check_bandwidth -EXPORT_SYMBOL_GPL vmlinux 0x87f63883 rio_request_dma -EXPORT_SYMBOL_GPL vmlinux 0x880315d6 fuse_dev_alloc_install +EXPORT_SYMBOL_GPL vmlinux 0x87000f74 of_reset_control_array_get +EXPORT_SYMBOL_GPL vmlinux 0x87186b26 loop_backing_file +EXPORT_SYMBOL_GPL vmlinux 0x871b8eb9 led_classdev_notify_brightness_hw_changed +EXPORT_SYMBOL_GPL vmlinux 0x87287a27 proc_mkdir_data +EXPORT_SYMBOL_GPL vmlinux 0x8736bb11 crypto_enqueue_request_head +EXPORT_SYMBOL_GPL vmlinux 0x8737eff7 devm_extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0x874098e4 regulator_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x8751fe23 crypto_alloc_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x875988cb iomap_ioend_try_merge +EXPORT_SYMBOL_GPL vmlinux 0x8769e20f dev_pm_qos_expose_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x876de9bb snd_ctl_get_preferred_subdevice +EXPORT_SYMBOL_GPL vmlinux 0x87810311 xfrm_output_resume +EXPORT_SYMBOL_GPL vmlinux 0x87996367 pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0x87aad9ad tracing_snapshot_cond +EXPORT_SYMBOL_GPL vmlinux 0x87c2d918 gpiod_get_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0x87c35564 sysfs_add_link_to_group +EXPORT_SYMBOL_GPL vmlinux 0x87c69e21 pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x87c88141 acct_bioset_exit +EXPORT_SYMBOL_GPL vmlinux 0x87cbfd51 devres_remove +EXPORT_SYMBOL_GPL vmlinux 0x87db66da rio_local_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x8800d28c pci_epc_get_msix +EXPORT_SYMBOL_GPL vmlinux 0x8804ecad phy_package_join EXPORT_SYMBOL_GPL vmlinux 0x8805a073 blocking_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x880df202 iptunnel_handle_offloads +EXPORT_SYMBOL_GPL vmlinux 0x8805e4e1 cpufreq_freq_attr_scaling_available_freqs EXPORT_SYMBOL_GPL vmlinux 0x880ef295 property_entries_dup EXPORT_SYMBOL_GPL vmlinux 0x8810e36e pci_bridge_emul_conf_read -EXPORT_SYMBOL_GPL vmlinux 0x881470b1 sdhci_request_atomic -EXPORT_SYMBOL_GPL vmlinux 0x88155166 __devres_alloc_node +EXPORT_SYMBOL_GPL vmlinux 0x88152131 spi_mem_dirmap_create EXPORT_SYMBOL_GPL vmlinux 0x882077d5 usb_ep_dequeue -EXPORT_SYMBOL_GPL vmlinux 0x8825f7ba bpf_prog_destroy -EXPORT_SYMBOL_GPL vmlinux 0x88327308 ahci_shost_attrs -EXPORT_SYMBOL_GPL vmlinux 0x883d361c addrconf_prefix_rcv_add_addr +EXPORT_SYMBOL_GPL vmlinux 0x882461dc dev_attr_sw_activity +EXPORT_SYMBOL_GPL vmlinux 0x8838caa6 cpufreq_dbs_governor_start +EXPORT_SYMBOL_GPL vmlinux 0x884717ad irq_domain_create_simple EXPORT_SYMBOL_GPL vmlinux 0x885528a6 ring_buffer_discard_commit -EXPORT_SYMBOL_GPL vmlinux 0x8869e9c8 of_get_required_opp_performance_state -EXPORT_SYMBOL_GPL vmlinux 0x8897d29d __traceiter_kfree_skb -EXPORT_SYMBOL_GPL vmlinux 0x88a5cba3 tcpv6_prot -EXPORT_SYMBOL_GPL vmlinux 0x88a7cac4 pci_disable_rom +EXPORT_SYMBOL_GPL vmlinux 0x888f6167 blk_mq_alloc_sq_tag_set +EXPORT_SYMBOL_GPL vmlinux 0x88973bc8 pci_check_and_mask_intx +EXPORT_SYMBOL_GPL vmlinux 0x889cc483 usb_hub_find_child EXPORT_SYMBOL_GPL vmlinux 0x88ab6fe3 kgdb_active EXPORT_SYMBOL_GPL vmlinux 0x88b4ae92 ring_buffer_normalize_time_stamp -EXPORT_SYMBOL_GPL vmlinux 0x88b52af5 __traceiter_block_unplug -EXPORT_SYMBOL_GPL vmlinux 0x88b62279 pci_ecam_free -EXPORT_SYMBOL_GPL vmlinux 0x88b6df97 regulator_list_voltage_pickable_linear_range -EXPORT_SYMBOL_GPL vmlinux 0x88bafce9 pci_epc_clear_bar -EXPORT_SYMBOL_GPL vmlinux 0x88be7f9f extcon_set_state_sync -EXPORT_SYMBOL_GPL vmlinux 0x88cadd24 phy_exit -EXPORT_SYMBOL_GPL vmlinux 0x88da3376 power_supply_get_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x88e60208 mbox_client_peek_data -EXPORT_SYMBOL_GPL vmlinux 0x88fb436e gpiochip_find -EXPORT_SYMBOL_GPL vmlinux 0x8900460c __traceiter_neigh_timer_handler -EXPORT_SYMBOL_GPL vmlinux 0x890174c8 wm831x_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0x890416fa bsg_setup_queue -EXPORT_SYMBOL_GPL vmlinux 0x890b47f0 rio_route_add_entry -EXPORT_SYMBOL_GPL vmlinux 0x891cece7 sdio_signal_irq +EXPORT_SYMBOL_GPL vmlinux 0x88c99792 tty_prepare_flip_string +EXPORT_SYMBOL_GPL vmlinux 0x88d558e5 mtd_read_user_prot_reg +EXPORT_SYMBOL_GPL vmlinux 0x88dc86b6 sata_link_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x88ddb107 class_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x88f8457b snd_soc_put_volsw_range +EXPORT_SYMBOL_GPL vmlinux 0x88ffafa0 find_vpid +EXPORT_SYMBOL_GPL vmlinux 0x890caef3 md_find_rdev_nr_rcu +EXPORT_SYMBOL_GPL vmlinux 0x8917d139 blk_freeze_queue_start EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state -EXPORT_SYMBOL_GPL vmlinux 0x8927706b blk_mq_sched_try_merge -EXPORT_SYMBOL_GPL vmlinux 0x892b7abc dev_pm_opp_of_register_em +EXPORT_SYMBOL_GPL vmlinux 0x89276e84 proc_get_parent_data +EXPORT_SYMBOL_GPL vmlinux 0x892c7319 bpf_sk_storage_diag_put EXPORT_SYMBOL_GPL vmlinux 0x893abbdd devlink_fmsg_u32_pair_put -EXPORT_SYMBOL_GPL vmlinux 0x893ef90b regulator_bulk_enable -EXPORT_SYMBOL_GPL vmlinux 0x8944aecc gpiochip_irqchip_add_domain EXPORT_SYMBOL_GPL vmlinux 0x89485687 iommu_group_put -EXPORT_SYMBOL_GPL vmlinux 0x8950ac24 __regmap_init_i2c -EXPORT_SYMBOL_GPL vmlinux 0x895289cf regmap_get_max_register +EXPORT_SYMBOL_GPL vmlinux 0x894b273c cpufreq_freq_transition_end +EXPORT_SYMBOL_GPL vmlinux 0x894ea1cd regmap_multi_reg_write_bypassed +EXPORT_SYMBOL_GPL vmlinux 0x895176d9 irq_chip_eoi_parent EXPORT_SYMBOL_GPL vmlinux 0x8954dc8e __SCK__tp_func_br_fdb_external_learn_add -EXPORT_SYMBOL_GPL vmlinux 0x89563d71 regcache_sync_region -EXPORT_SYMBOL_GPL vmlinux 0x896063fa security_inode_create -EXPORT_SYMBOL_GPL vmlinux 0x89619b0a sysfs_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x8968e638 phy_put +EXPORT_SYMBOL_GPL vmlinux 0x896a7d3f usb_add_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0x896d6fc2 unix_inq_len +EXPORT_SYMBOL_GPL vmlinux 0x896de155 iomap_releasepage +EXPORT_SYMBOL_GPL vmlinux 0x896dfa0f pci_set_cacheline_size EXPORT_SYMBOL_GPL vmlinux 0x896f275c __sbitmap_queue_get_shallow -EXPORT_SYMBOL_GPL vmlinux 0x8983aa0c pinctrl_force_default -EXPORT_SYMBOL_GPL vmlinux 0x89894255 lwtunnel_build_state -EXPORT_SYMBOL_GPL vmlinux 0x89aa27a4 devm_platform_ioremap_resource EXPORT_SYMBOL_GPL vmlinux 0x89bbafc6 usb_register_notify EXPORT_SYMBOL_GPL vmlinux 0x89bfe270 __wake_up_locked_key_bookmark -EXPORT_SYMBOL_GPL vmlinux 0x89c14955 udp4_hwcsum +EXPORT_SYMBOL_GPL vmlinux 0x89c57760 bpf_offload_dev_netdev_unregister EXPORT_SYMBOL_GPL vmlinux 0x89cdae3d __tracepoint_neigh_timer_handler -EXPORT_SYMBOL_GPL vmlinux 0x8a217ed7 wbc_attach_and_unlock_inode -EXPORT_SYMBOL_GPL vmlinux 0x8a32a79f snd_soc_set_ac97_ops +EXPORT_SYMBOL_GPL vmlinux 0x8a2ee1fe sysfs_remove_files +EXPORT_SYMBOL_GPL vmlinux 0x8a3b3684 inet6_hash_connect EXPORT_SYMBOL_GPL vmlinux 0x8a3f84ba linear_range_get_selector_low -EXPORT_SYMBOL_GPL vmlinux 0x8a4bba6a devm_usb_get_phy_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x8a479b09 ata_wait_register EXPORT_SYMBOL_GPL vmlinux 0x8a554a36 mpc8xxx_spi_strmode -EXPORT_SYMBOL_GPL vmlinux 0x8a5dd086 regulator_desc_list_voltage_linear EXPORT_SYMBOL_GPL vmlinux 0x8a62b81b sfp_upstream_stop -EXPORT_SYMBOL_GPL vmlinux 0x8a791aa9 pinctrl_force_sleep -EXPORT_SYMBOL_GPL vmlinux 0x8a7c1bfa xfrm_output_resume +EXPORT_SYMBOL_GPL vmlinux 0x8a631084 switchdev_port_obj_add +EXPORT_SYMBOL_GPL vmlinux 0x8a77997a call_switchdev_notifiers EXPORT_SYMBOL_GPL vmlinux 0x8a83fb45 mpi_point_free_parts -EXPORT_SYMBOL_GPL vmlinux 0x8a847e85 sk_msg_return -EXPORT_SYMBOL_GPL vmlinux 0x8a8deb47 mtk_eint_do_suspend -EXPORT_SYMBOL_GPL vmlinux 0x8a93b7b5 usb_enable_intel_xhci_ports -EXPORT_SYMBOL_GPL vmlinux 0x8a9c3a2a pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0x8a8d26c1 perf_event_read_value +EXPORT_SYMBOL_GPL vmlinux 0x8a8f57cd kill_pid_usb_asyncio +EXPORT_SYMBOL_GPL vmlinux 0x8a965ad7 ata_sas_sync_probe +EXPORT_SYMBOL_GPL vmlinux 0x8a97570b dma_mmap_pages EXPORT_SYMBOL_GPL vmlinux 0x8aad89f7 exynos_get_pmu_regmap +EXPORT_SYMBOL_GPL vmlinux 0x8ab34f82 proc_create_net_data_write EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files -EXPORT_SYMBOL_GPL vmlinux 0x8acc99af sk_msg_recvmsg -EXPORT_SYMBOL_GPL vmlinux 0x8acc9a8a blk_mq_debugfs_rq_show -EXPORT_SYMBOL_GPL vmlinux 0x8ae14d8b usb_gadget_deactivate -EXPORT_SYMBOL_GPL vmlinux 0x8ae43ddc usb_unpoison_urb -EXPORT_SYMBOL_GPL vmlinux 0x8aeaa8ab usb_driver_release_interface -EXPORT_SYMBOL_GPL vmlinux 0x8b09881e devm_spi_register_controller -EXPORT_SYMBOL_GPL vmlinux 0x8b0f0da2 devm_pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0x8acd687b regulator_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x8aecc702 ata_host_suspend +EXPORT_SYMBOL_GPL vmlinux 0x8b02ed79 snd_soc_of_get_slot_mask +EXPORT_SYMBOL_GPL vmlinux 0x8b0e2400 crypto_aead_setauthsize EXPORT_SYMBOL_GPL vmlinux 0x8b149c36 clk_is_match -EXPORT_SYMBOL_GPL vmlinux 0x8b2375a5 wbt_disable_default -EXPORT_SYMBOL_GPL vmlinux 0x8b264c53 xdp_build_skb_from_frame -EXPORT_SYMBOL_GPL vmlinux 0x8b32085e snd_ctl_activate_id -EXPORT_SYMBOL_GPL vmlinux 0x8b39a5f9 snd_soc_limit_volume -EXPORT_SYMBOL_GPL vmlinux 0x8b3bd08a tty_port_register_device_attr_serdev +EXPORT_SYMBOL_GPL vmlinux 0x8b16cb1e raw_abort +EXPORT_SYMBOL_GPL vmlinux 0x8b26cbb5 __rio_local_write_config_32 EXPORT_SYMBOL_GPL vmlinux 0x8b529ce4 nvmem_add_cell_lookups -EXPORT_SYMBOL_GPL vmlinux 0x8b5dee1d pci_common_swizzle -EXPORT_SYMBOL_GPL vmlinux 0x8b60582b snd_dmaengine_pcm_pointer_no_residue +EXPORT_SYMBOL_GPL vmlinux 0x8b5e5233 da9052_request_irq +EXPORT_SYMBOL_GPL vmlinux 0x8b5e60e0 mmput +EXPORT_SYMBOL_GPL vmlinux 0x8b6219e2 rio_lock_device EXPORT_SYMBOL_GPL vmlinux 0x8b650752 mtk_mutex_release -EXPORT_SYMBOL_GPL vmlinux 0x8b7b480b phy_select_page -EXPORT_SYMBOL_GPL vmlinux 0x8b7e8fd2 clk_hw_round_rate -EXPORT_SYMBOL_GPL vmlinux 0x8b83b2ce set_capacity_and_notify -EXPORT_SYMBOL_GPL vmlinux 0x8b913973 __pm_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x8b6df9ec __auxiliary_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x8b74dad8 tcp_register_ulp +EXPORT_SYMBOL_GPL vmlinux 0x8b85e975 cpufreq_cpu_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x8b8eebd8 i2c_slave_unregister EXPORT_SYMBOL_GPL vmlinux 0x8b91f7a7 nr_swap_pages -EXPORT_SYMBOL_GPL vmlinux 0x8ba7feb7 bdi_dev_name -EXPORT_SYMBOL_GPL vmlinux 0x8bcf03f8 device_create_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x8bd43ac3 perf_event_update_userpage -EXPORT_SYMBOL_GPL vmlinux 0x8bec271f virtqueue_notify +EXPORT_SYMBOL_GPL vmlinux 0x8bb18378 snd_soc_component_compr_ack +EXPORT_SYMBOL_GPL vmlinux 0x8bb431b0 of_reconfig_get_state_change +EXPORT_SYMBOL_GPL vmlinux 0x8bba717f raw_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x8bc5b34a regulator_desc_list_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0x8bc99828 irq_domain_translate_onecell +EXPORT_SYMBOL_GPL vmlinux 0x8bedaa2e devlink_port_register +EXPORT_SYMBOL_GPL vmlinux 0x8bef3a14 rockchip_pcie_parse_dt +EXPORT_SYMBOL_GPL vmlinux 0x8bf38968 dev_pm_qos_update_user_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x8bff9e4d pci_generic_config_read32 +EXPORT_SYMBOL_GPL vmlinux 0x8c012ea2 __traceiter_kfree_skb EXPORT_SYMBOL_GPL vmlinux 0x8c0215f2 pm_system_wakeup EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue +EXPORT_SYMBOL_GPL vmlinux 0x8c08ad29 sata_scr_read +EXPORT_SYMBOL_GPL vmlinux 0x8c0ba360 gpiod_set_array_value EXPORT_SYMBOL_GPL vmlinux 0x8c0ed103 rcu_check_boost_fail -EXPORT_SYMBOL_GPL vmlinux 0x8c132d82 create_signature -EXPORT_SYMBOL_GPL vmlinux 0x8c13e710 sock_diag_unregister EXPORT_SYMBOL_GPL vmlinux 0x8c19ea09 sbitmap_queue_resize -EXPORT_SYMBOL_GPL vmlinux 0x8c228503 dev_pm_domain_attach_by_name -EXPORT_SYMBOL_GPL vmlinux 0x8c3323a4 scsi_mode_select -EXPORT_SYMBOL_GPL vmlinux 0x8c3334ae regmap_raw_write_async -EXPORT_SYMBOL_GPL vmlinux 0x8c33f589 crypto_register_ahashes -EXPORT_SYMBOL_GPL vmlinux 0x8c3ce19a snd_soc_dpcm_runtime_update -EXPORT_SYMBOL_GPL vmlinux 0x8c4a4da2 snd_soc_dapm_weak_routes +EXPORT_SYMBOL_GPL vmlinux 0x8c1f2bc5 register_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x8c3f8bfa virtqueue_is_broken +EXPORT_SYMBOL_GPL vmlinux 0x8c4680d1 devlink_trap_groups_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8c4fe7f7 __spi_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x8c5d6667 phy_init +EXPORT_SYMBOL_GPL vmlinux 0x8c605ad6 fib_nl_newrule +EXPORT_SYMBOL_GPL vmlinux 0x8c66afb6 mctrl_gpio_init +EXPORT_SYMBOL_GPL vmlinux 0x8c6c63b0 inet_csk_get_port EXPORT_SYMBOL_GPL vmlinux 0x8c743fb6 reset_control_status -EXPORT_SYMBOL_GPL vmlinux 0x8c746f55 of_genpd_remove_last -EXPORT_SYMBOL_GPL vmlinux 0x8c7b4038 devm_snd_dmaengine_pcm_register -EXPORT_SYMBOL_GPL vmlinux 0x8c7e733c icc_provider_add -EXPORT_SYMBOL_GPL vmlinux 0x8c88ea83 regmap_add_irq_chip_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x8c86a7c6 snd_soc_tplg_component_load EXPORT_SYMBOL_GPL vmlinux 0x8c89e3b8 usb_phy_roothub_power_off -EXPORT_SYMBOL_GPL vmlinux 0x8ca20cab usb_gen_phy_init -EXPORT_SYMBOL_GPL vmlinux 0x8ca621fe find_asymmetric_key -EXPORT_SYMBOL_GPL vmlinux 0x8cbea381 balloon_page_list_dequeue -EXPORT_SYMBOL_GPL vmlinux 0x8cd939bd snd_soc_link_compr_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x8c96cdfa dmaengine_desc_get_metadata_ptr +EXPORT_SYMBOL_GPL vmlinux 0x8c9bc7c7 crypto_unregister_instance +EXPORT_SYMBOL_GPL vmlinux 0x8c9c215b virtqueue_get_buf_ctx +EXPORT_SYMBOL_GPL vmlinux 0x8cadba77 devm_devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0x8cdc2928 sdhci_setup_host +EXPORT_SYMBOL_GPL vmlinux 0x8ce3a44c dm_accept_partial_bio +EXPORT_SYMBOL_GPL vmlinux 0x8cea3374 sdio_memcpy_toio +EXPORT_SYMBOL_GPL vmlinux 0x8cea7ce2 sdio_writeb +EXPORT_SYMBOL_GPL vmlinux 0x8ced8a23 spi_mem_adjust_op_size +EXPORT_SYMBOL_GPL vmlinux 0x8cee896e switchdev_port_obj_del +EXPORT_SYMBOL_GPL vmlinux 0x8cf1f4df phy_restore_page EXPORT_SYMBOL_GPL vmlinux 0x8cfa0fa5 __tracepoint_pelt_rt_tp -EXPORT_SYMBOL_GPL vmlinux 0x8cfa879d inet_csk_addr2sockaddr -EXPORT_SYMBOL_GPL vmlinux 0x8cfad587 iommu_map_atomic -EXPORT_SYMBOL_GPL vmlinux 0x8d219288 gov_update_cpu_data +EXPORT_SYMBOL_GPL vmlinux 0x8d027127 nvdimm_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x8d078eb1 fwnode_get_named_child_node +EXPORT_SYMBOL_GPL vmlinux 0x8d084f43 init_dummy_netdev +EXPORT_SYMBOL_GPL vmlinux 0x8d0d0e81 securityfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x8d196fea snd_soc_put_volsw EXPORT_SYMBOL_GPL vmlinux 0x8d22bb58 iommu_group_alloc -EXPORT_SYMBOL_GPL vmlinux 0x8d274f1f tty_buffer_request_room -EXPORT_SYMBOL_GPL vmlinux 0x8d2b21ea dev_pm_qos_hide_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0x8d2cd3c4 to_nvdimm -EXPORT_SYMBOL_GPL vmlinux 0x8d3f55d5 dev_pm_opp_get_max_clock_latency -EXPORT_SYMBOL_GPL vmlinux 0x8d478cba ata_qc_get_active -EXPORT_SYMBOL_GPL vmlinux 0x8d4cb50d ata_sas_port_destroy -EXPORT_SYMBOL_GPL vmlinux 0x8d78b600 mtd_blktrans_cease_background -EXPORT_SYMBOL_GPL vmlinux 0x8d7c35b7 pid_vnr +EXPORT_SYMBOL_GPL vmlinux 0x8d3789d7 __fscrypt_prepare_readdir +EXPORT_SYMBOL_GPL vmlinux 0x8d42dc85 genpd_dev_pm_attach +EXPORT_SYMBOL_GPL vmlinux 0x8d466b5c devm_hwspin_lock_request +EXPORT_SYMBOL_GPL vmlinux 0x8d648f4c sdev_evt_send +EXPORT_SYMBOL_GPL vmlinux 0x8d652196 devlink_resource_register +EXPORT_SYMBOL_GPL vmlinux 0x8d6737fd init_user_ns +EXPORT_SYMBOL_GPL vmlinux 0x8d6f4e3c regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x8d7522b8 dev_attr_em_message_type EXPORT_SYMBOL_GPL vmlinux 0x8d864069 snd_pcm_rate_range_to_bits +EXPORT_SYMBOL_GPL vmlinux 0x8da92025 of_thermal_get_trip_points +EXPORT_SYMBOL_GPL vmlinux 0x8daaf105 kthread_cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x8dad5ed4 omap_iommu_save_ctx EXPORT_SYMBOL_GPL vmlinux 0x8dafdded lwtunnel_valid_encap_type_attr -EXPORT_SYMBOL_GPL vmlinux 0x8db19a2f xfrm_local_error EXPORT_SYMBOL_GPL vmlinux 0x8dc11669 lpddr2_jedec_addressing_table -EXPORT_SYMBOL_GPL vmlinux 0x8dc26e0d usb_get_urb -EXPORT_SYMBOL_GPL vmlinux 0x8dc77ec9 sata_pmp_error_handler EXPORT_SYMBOL_GPL vmlinux 0x8dd218b0 icc_bulk_disable -EXPORT_SYMBOL_GPL vmlinux 0x8ddefe48 sock_prot_inuse_get -EXPORT_SYMBOL_GPL vmlinux 0x8de706be usb_hcd_end_port_resume -EXPORT_SYMBOL_GPL vmlinux 0x8df481de bsg_job_get -EXPORT_SYMBOL_GPL vmlinux 0x8df708f2 dev_pm_opp_set_regulators -EXPORT_SYMBOL_GPL vmlinux 0x8e03bdb1 dma_can_mmap -EXPORT_SYMBOL_GPL vmlinux 0x8e0c5fee hisi_clk_alloc -EXPORT_SYMBOL_GPL vmlinux 0x8e14d942 class_create_file_ns -EXPORT_SYMBOL_GPL vmlinux 0x8e188585 mmput -EXPORT_SYMBOL_GPL vmlinux 0x8e2a9b0f blkcg_activate_policy -EXPORT_SYMBOL_GPL vmlinux 0x8e30f82c bpf_trace_run7 -EXPORT_SYMBOL_GPL vmlinux 0x8e356f58 pci_ecam_create -EXPORT_SYMBOL_GPL vmlinux 0x8e35d607 crypto_unregister_rng -EXPORT_SYMBOL_GPL vmlinux 0x8e376218 dev_pm_opp_attach_genpd -EXPORT_SYMBOL_GPL vmlinux 0x8e43ab6e dw_pcie_host_deinit +EXPORT_SYMBOL_GPL vmlinux 0x8dd33439 dw_pcie_own_conf_map_bus +EXPORT_SYMBOL_GPL vmlinux 0x8df5f083 pinctrl_generic_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x8e0270f9 nvdimm_blk_region_create +EXPORT_SYMBOL_GPL vmlinux 0x8e0899a3 devm_platform_ioremap_resource +EXPORT_SYMBOL_GPL vmlinux 0x8e137c0f bpf_offload_dev_netdev_register +EXPORT_SYMBOL_GPL vmlinux 0x8e1a170f fixed_phy_set_link_update +EXPORT_SYMBOL_GPL vmlinux 0x8e3a4c99 blk_queue_rq_timeout +EXPORT_SYMBOL_GPL vmlinux 0x8e44505d power_supply_get_drvdata EXPORT_SYMBOL_GPL vmlinux 0x8e44823a sfp_select_interface +EXPORT_SYMBOL_GPL vmlinux 0x8e45c2fa extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x8e483860 soc_ac97_ops EXPORT_SYMBOL_GPL vmlinux 0x8e4b63a6 hisi_clk_register_gate_sep EXPORT_SYMBOL_GPL vmlinux 0x8e4eb451 bpf_sk_storage_diag_free EXPORT_SYMBOL_GPL vmlinux 0x8e51a3c7 dev_pm_opp_cpumask_remove_table -EXPORT_SYMBOL_GPL vmlinux 0x8e5be818 mpc8xxx_spi_tx_buf_u8 -EXPORT_SYMBOL_GPL vmlinux 0x8e63a71d fsl_mc_device_group +EXPORT_SYMBOL_GPL vmlinux 0x8e54159e __blk_req_zone_write_lock +EXPORT_SYMBOL_GPL vmlinux 0x8e5d03a4 da903x_update +EXPORT_SYMBOL_GPL vmlinux 0x8e663429 regmap_get_device EXPORT_SYMBOL_GPL vmlinux 0x8e6b1a9e net_selftest_get_count -EXPORT_SYMBOL_GPL vmlinux 0x8e709e07 crypto_register_algs -EXPORT_SYMBOL_GPL vmlinux 0x8e81668a icc_link_create -EXPORT_SYMBOL_GPL vmlinux 0x8e825f2f crypto_stats_akcipher_encrypt -EXPORT_SYMBOL_GPL vmlinux 0x8e93271d device_register -EXPORT_SYMBOL_GPL vmlinux 0x8e9faa6a scsi_check_sense -EXPORT_SYMBOL_GPL vmlinux 0x8ea8bf85 regulator_get_optional -EXPORT_SYMBOL_GPL vmlinux 0x8eb4d432 dm_accept_partial_bio -EXPORT_SYMBOL_GPL vmlinux 0x8eb96a07 devm_nvmem_device_put -EXPORT_SYMBOL_GPL vmlinux 0x8eda4c9f __usb_create_hcd -EXPORT_SYMBOL_GPL vmlinux 0x8ee02400 snd_soc_component_read +EXPORT_SYMBOL_GPL vmlinux 0x8e859294 devlink_port_attrs_set +EXPORT_SYMBOL_GPL vmlinux 0x8e8c80ec __blk_req_zone_write_unlock +EXPORT_SYMBOL_GPL vmlinux 0x8e935902 class_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x8ea18976 mctrl_gpio_init_noauto +EXPORT_SYMBOL_GPL vmlinux 0x8ea47179 mtd_ooblayout_set_databytes +EXPORT_SYMBOL_GPL vmlinux 0x8ea67540 led_set_brightness_sync +EXPORT_SYMBOL_GPL vmlinux 0x8eac9fce usb_control_msg_send +EXPORT_SYMBOL_GPL vmlinux 0x8eb90684 bpf_prog_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8ebc5a90 perf_get_aux +EXPORT_SYMBOL_GPL vmlinux 0x8ecdb408 ahci_print_info +EXPORT_SYMBOL_GPL vmlinux 0x8ed4de59 ethtool_set_ethtool_phy_ops +EXPORT_SYMBOL_GPL vmlinux 0x8eea320a ahci_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x8eea73a7 snd_soc_get_strobe EXPORT_SYMBOL_GPL vmlinux 0x8eec19bd __SCK__tp_func_pelt_dl_tp EXPORT_SYMBOL_GPL vmlinux 0x8eee3399 dax_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0x8eefab28 pinctrl_utils_reserve_map -EXPORT_SYMBOL_GPL vmlinux 0x8efc0fbe tpm2_probe +EXPORT_SYMBOL_GPL vmlinux 0x8ef1b6bc pci_generic_config_read +EXPORT_SYMBOL_GPL vmlinux 0x8ef8481f ata_pci_sff_init_host EXPORT_SYMBOL_GPL vmlinux 0x8effb505 phy_gbit_features +EXPORT_SYMBOL_GPL vmlinux 0x8effd663 blkcg_root_css +EXPORT_SYMBOL_GPL vmlinux 0x8f027842 rio_get_comptag EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x8f0bf7dc rio_unmap_inb_region EXPORT_SYMBOL_GPL vmlinux 0x8f1a8cf9 rsa_parse_pub_key -EXPORT_SYMBOL_GPL vmlinux 0x8f205332 ata_sff_qc_fill_rtf -EXPORT_SYMBOL_GPL vmlinux 0x8f2fa5ec fsverity_ioctl_enable +EXPORT_SYMBOL_GPL vmlinux 0x8f201ab0 synth_event_add_val +EXPORT_SYMBOL_GPL vmlinux 0x8f221e68 fuse_conn_get EXPORT_SYMBOL_GPL vmlinux 0x8f37b35e srcu_barrier -EXPORT_SYMBOL_GPL vmlinux 0x8f3e6e1d devfreq_event_enable_edev -EXPORT_SYMBOL_GPL vmlinux 0x8f576ae2 dev_pm_opp_find_freq_exact -EXPORT_SYMBOL_GPL vmlinux 0x8f5ea31d driver_attach -EXPORT_SYMBOL_GPL vmlinux 0x8f6280dd dev_attr_em_message_type -EXPORT_SYMBOL_GPL vmlinux 0x8f64ba0a ata_bmdma_setup -EXPORT_SYMBOL_GPL vmlinux 0x8f664a2a nand_read_oob_op +EXPORT_SYMBOL_GPL vmlinux 0x8f3dc03a phy_package_leave +EXPORT_SYMBOL_GPL vmlinux 0x8f40ef68 kthread_flush_work +EXPORT_SYMBOL_GPL vmlinux 0x8f56e953 sdhci_enable_sdio_irq +EXPORT_SYMBOL_GPL vmlinux 0x8f5f2bbc irq_of_parse_and_map +EXPORT_SYMBOL_GPL vmlinux 0x8f61bc8e sata_async_notification EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative EXPORT_SYMBOL_GPL vmlinux 0x8f725e67 probes_decode_arm_table -EXPORT_SYMBOL_GPL vmlinux 0x8f743f13 sdio_release_irq +EXPORT_SYMBOL_GPL vmlinux 0x8f73d4c6 _proc_mkdir +EXPORT_SYMBOL_GPL vmlinux 0x8f75ae3b regulator_register_notifier EXPORT_SYMBOL_GPL vmlinux 0x8f786bee fs_umode_to_dtype -EXPORT_SYMBOL_GPL vmlinux 0x8f874197 mddev_suspend -EXPORT_SYMBOL_GPL vmlinux 0x8f8dcd40 rio_route_get_entry -EXPORT_SYMBOL_GPL vmlinux 0x8f919497 sdio_readl -EXPORT_SYMBOL_GPL vmlinux 0x8f99564f dev_pm_opp_set_clkname -EXPORT_SYMBOL_GPL vmlinux 0x8f9eb41e edac_device_del_device -EXPORT_SYMBOL_GPL vmlinux 0x8f9fb06e __clk_mux_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0x8fa58147 pci_host_common_probe +EXPORT_SYMBOL_GPL vmlinux 0x8fb7540b da9052_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x8fb836ad spi_busnum_to_master +EXPORT_SYMBOL_GPL vmlinux 0x8fbff528 bpf_prog_get_type_dev EXPORT_SYMBOL_GPL vmlinux 0x8fc090a3 __tracepoint_br_fdb_update -EXPORT_SYMBOL_GPL vmlinux 0x8fd0f580 sata_scr_valid -EXPORT_SYMBOL_GPL vmlinux 0x8fd353f9 dst_blackhole_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x8fe0e0c6 sdio_writeb_readb -EXPORT_SYMBOL_GPL vmlinux 0x8fea6342 mbox_chan_received_data +EXPORT_SYMBOL_GPL vmlinux 0x8fc91d71 __traceiter_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0x8fcff8cb pm_relax +EXPORT_SYMBOL_GPL vmlinux 0x8fdacfd5 __traceiter_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0x8fdd973f fwnode_connection_find_match +EXPORT_SYMBOL_GPL vmlinux 0x8fe24382 pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0x8fecb867 fwnode_remove_software_node +EXPORT_SYMBOL_GPL vmlinux 0x8fecb927 mmc_cmdq_enable EXPORT_SYMBOL_GPL vmlinux 0x8ff60436 mpi_ec_add_points -EXPORT_SYMBOL_GPL vmlinux 0x8ffc7441 dev_forward_skb -EXPORT_SYMBOL_GPL vmlinux 0x8fff8cf6 spi_new_device -EXPORT_SYMBOL_GPL vmlinux 0x901e7450 pci_stop_root_bus -EXPORT_SYMBOL_GPL vmlinux 0x9023c774 sdio_readsb +EXPORT_SYMBOL_GPL vmlinux 0x8fffab13 screen_glyph_unicode +EXPORT_SYMBOL_GPL vmlinux 0x90006138 ping_hash +EXPORT_SYMBOL_GPL vmlinux 0x900b847b put_mtd_device +EXPORT_SYMBOL_GPL vmlinux 0x90143503 devlink_free EXPORT_SYMBOL_GPL vmlinux 0x902778ba __tracepoint_tcp_send_reset -EXPORT_SYMBOL_GPL vmlinux 0x90361ed7 stmpe_block_write +EXPORT_SYMBOL_GPL vmlinux 0x9032bbdd crypto_hash_alg_has_setkey EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move +EXPORT_SYMBOL_GPL vmlinux 0x9040f1c2 device_for_each_child +EXPORT_SYMBOL_GPL vmlinux 0x904aab03 rio_free_net +EXPORT_SYMBOL_GPL vmlinux 0x904b3caa i2c_new_smbus_alert_device +EXPORT_SYMBOL_GPL vmlinux 0x904b65a6 vp_modern_get_queue_size EXPORT_SYMBOL_GPL vmlinux 0x90688bcd devlink_info_driver_name_put EXPORT_SYMBOL_GPL vmlinux 0x906dd327 usb_unpoison_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x906ff167 irq_chip_retrigger_hierarchy -EXPORT_SYMBOL_GPL vmlinux 0x90880784 snd_soc_rtdcom_lookup -EXPORT_SYMBOL_GPL vmlinux 0x90b04f22 xfrm_audit_state_icvfail -EXPORT_SYMBOL_GPL vmlinux 0x90b74a0e vfs_cancel_lock -EXPORT_SYMBOL_GPL vmlinux 0x90c05bb9 __sock_recv_ts_and_drops -EXPORT_SYMBOL_GPL vmlinux 0x90cc53f2 n_tty_inherit_ops -EXPORT_SYMBOL_GPL vmlinux 0x90e4595d efivar_entry_add -EXPORT_SYMBOL_GPL vmlinux 0x9101f563 cpufreq_dbs_governor_start -EXPORT_SYMBOL_GPL vmlinux 0x91050313 dev_pm_opp_set_supported_hw -EXPORT_SYMBOL_GPL vmlinux 0x91169f2c spi_replace_transfers -EXPORT_SYMBOL_GPL vmlinux 0x912564b1 mtd_lock_user_prot_reg -EXPORT_SYMBOL_GPL vmlinux 0x912f08ad attribute_container_register -EXPORT_SYMBOL_GPL vmlinux 0x91337003 __dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0x90842c2f usb_hcd_amd_remote_wakeup_quirk +EXPORT_SYMBOL_GPL vmlinux 0x908afe15 regmap_add_irq_chip_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x90b3faa9 disk_uevent +EXPORT_SYMBOL_GPL vmlinux 0x90b6aaea dma_buf_dynamic_attach +EXPORT_SYMBOL_GPL vmlinux 0x90d24059 mbox_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x9102cdc5 xfrm_audit_state_replay_overflow +EXPORT_SYMBOL_GPL vmlinux 0x9118c33e dma_buf_fd +EXPORT_SYMBOL_GPL vmlinux 0x913a3f81 irq_gc_mask_clr_bit EXPORT_SYMBOL_GPL vmlinux 0x91519a16 dev_pm_opp_of_cpumask_add_table +EXPORT_SYMBOL_GPL vmlinux 0x91552f60 to_nd_region +EXPORT_SYMBOL_GPL vmlinux 0x91561494 pcie_reset_flr +EXPORT_SYMBOL_GPL vmlinux 0x915e4b81 crypto_stats_decompress EXPORT_SYMBOL_GPL vmlinux 0x91637e86 unregister_net_sysctl_table -EXPORT_SYMBOL_GPL vmlinux 0x9165a9d6 sdhci_set_power_and_bus_voltage -EXPORT_SYMBOL_GPL vmlinux 0x916a3055 pci_enable_pasid -EXPORT_SYMBOL_GPL vmlinux 0x91715acc shash_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x917464f3 snd_soc_runtime_set_dai_fmt -EXPORT_SYMBOL_GPL vmlinux 0x91857a51 ata_sas_port_suspend -EXPORT_SYMBOL_GPL vmlinux 0x9185bd67 devlink_is_reload_failed +EXPORT_SYMBOL_GPL vmlinux 0x91917476 pinctrl_get_group_pins EXPORT_SYMBOL_GPL vmlinux 0x91955a9f start_poll_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0x91b28a85 devlink_param_driverinit_value_get +EXPORT_SYMBOL_GPL vmlinux 0x919bc064 da903x_unregister_notifier EXPORT_SYMBOL_GPL vmlinux 0x91b774a1 mpi_scanval -EXPORT_SYMBOL_GPL vmlinux 0x91c5000b kthread_flush_worker EXPORT_SYMBOL_GPL vmlinux 0x91c6e5b0 pcap_to_irq -EXPORT_SYMBOL_GPL vmlinux 0x91e22452 gpiod_set_transitory -EXPORT_SYMBOL_GPL vmlinux 0x91e9e651 cpufreq_disable_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0x91d1653d ping_unhash +EXPORT_SYMBOL_GPL vmlinux 0x91d24d04 is_software_node EXPORT_SYMBOL_GPL vmlinux 0x91ea8726 asn1_encode_boolean EXPORT_SYMBOL_GPL vmlinux 0x91eac764 mpi_print EXPORT_SYMBOL_GPL vmlinux 0x91f209ae __clk_hw_register_gate -EXPORT_SYMBOL_GPL vmlinux 0x91f4cb0b dma_max_mapping_size -EXPORT_SYMBOL_GPL vmlinux 0x91f53cbb blk_mq_unquiesce_queue -EXPORT_SYMBOL_GPL vmlinux 0x91f84745 ata_pci_device_do_resume -EXPORT_SYMBOL_GPL vmlinux 0x91f94ddd dma_resv_wait_timeout -EXPORT_SYMBOL_GPL vmlinux 0x923163de blkcg_print_blkgs -EXPORT_SYMBOL_GPL vmlinux 0x9234134b cpufreq_driver_target -EXPORT_SYMBOL_GPL vmlinux 0x92399c3b of_phandle_iterator_init +EXPORT_SYMBOL_GPL vmlinux 0x91f780f2 led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0x9213ce08 __efivar_entry_get +EXPORT_SYMBOL_GPL vmlinux 0x92168aac fsnotify_put_group +EXPORT_SYMBOL_GPL vmlinux 0x92176059 ohci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x921dc6eb rio_request_dma +EXPORT_SYMBOL_GPL vmlinux 0x9229b255 blk_ksm_destroy +EXPORT_SYMBOL_GPL vmlinux 0x92313f52 ip6_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x9232b6e6 rockchip_pcie_enable_clocks +EXPORT_SYMBOL_GPL vmlinux 0x92370d1a dst_blackhole_mtu +EXPORT_SYMBOL_GPL vmlinux 0x924aebf8 of_pci_address_to_resource EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object -EXPORT_SYMBOL_GPL vmlinux 0x925cf156 param_ops_bool_enable_only -EXPORT_SYMBOL_GPL vmlinux 0x92611b42 devlink_params_unregister -EXPORT_SYMBOL_GPL vmlinux 0x9270ce3d usb_role_switch_get -EXPORT_SYMBOL_GPL vmlinux 0x927a2a39 balloon_aops -EXPORT_SYMBOL_GPL vmlinux 0x927e506a netdev_walk_all_lower_dev -EXPORT_SYMBOL_GPL vmlinux 0x928790da fscrypt_symlink_getattr -EXPORT_SYMBOL_GPL vmlinux 0x92a335f7 vchan_dma_desc_free_list -EXPORT_SYMBOL_GPL vmlinux 0x92b033ba devm_regmap_add_irq_chip_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x9259a1e1 subsys_virtual_register +EXPORT_SYMBOL_GPL vmlinux 0x92628674 ata_sff_tf_read +EXPORT_SYMBOL_GPL vmlinux 0x926300eb vfs_kern_mount +EXPORT_SYMBOL_GPL vmlinux 0x927de648 da9052_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0x9282dc5f kgdb_register_io_module +EXPORT_SYMBOL_GPL vmlinux 0x928a0c8a serial8250_get_port +EXPORT_SYMBOL_GPL vmlinux 0x9293f5b2 spi_controller_resume +EXPORT_SYMBOL_GPL vmlinux 0x92a0d50b genphy_c45_read_mdix +EXPORT_SYMBOL_GPL vmlinux 0x92ad9b17 of_genpd_remove_subdomain EXPORT_SYMBOL_GPL vmlinux 0x92b57248 flush_work -EXPORT_SYMBOL_GPL vmlinux 0x92ba2333 ip6_pol_route -EXPORT_SYMBOL_GPL vmlinux 0x92bb51bd ata_sas_port_stop -EXPORT_SYMBOL_GPL vmlinux 0x92bddb05 __clk_hw_register_mux +EXPORT_SYMBOL_GPL vmlinux 0x92bceef6 __fscrypt_prepare_link EXPORT_SYMBOL_GPL vmlinux 0x92d31cfb fixed_phy_add -EXPORT_SYMBOL_GPL vmlinux 0x92d4825c dev_pm_opp_detach_genpd +EXPORT_SYMBOL_GPL vmlinux 0x92d72438 devlink_resource_occ_get_unregister EXPORT_SYMBOL_GPL vmlinux 0x92db8f68 do_trace_rcu_torture_read -EXPORT_SYMBOL_GPL vmlinux 0x92dfbf2b usb_reset_configuration -EXPORT_SYMBOL_GPL vmlinux 0x92ef45ca kstrdup_quotable_cmdline -EXPORT_SYMBOL_GPL vmlinux 0x92f16c4b acomp_request_alloc +EXPORT_SYMBOL_GPL vmlinux 0x92e1980a pci_msi_create_irq_domain +EXPORT_SYMBOL_GPL vmlinux 0x92e2b0bd mtd_ooblayout_get_eccbytes +EXPORT_SYMBOL_GPL vmlinux 0x92e870d1 sdio_retune_release +EXPORT_SYMBOL_GPL vmlinux 0x92ea44e1 usb_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0x92f1b2c8 regmap_field_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0x92f9c89e ata_sas_async_probe EXPORT_SYMBOL_GPL vmlinux 0x930a4f0a kobject_create_and_add -EXPORT_SYMBOL_GPL vmlinux 0x931a333f spi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x930be49f sdhci_set_power EXPORT_SYMBOL_GPL vmlinux 0x93255b2b ring_buffer_lock_reserve EXPORT_SYMBOL_GPL vmlinux 0x932c8d7a linear_range_get_value_array -EXPORT_SYMBOL_GPL vmlinux 0x934b3ca2 icmp_build_probe -EXPORT_SYMBOL_GPL vmlinux 0x9373fe84 irq_chip_disable_parent +EXPORT_SYMBOL_GPL vmlinux 0x9340adbc pinctrl_generic_get_group_count +EXPORT_SYMBOL_GPL vmlinux 0x9341185f thermal_zone_device_register +EXPORT_SYMBOL_GPL vmlinux 0x934da6e1 usb_add_hcd +EXPORT_SYMBOL_GPL vmlinux 0x93506d0a wm831x_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0x936e3bfc bd_unlink_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0x937857d9 dev_pm_opp_find_freq_ceil EXPORT_SYMBOL_GPL vmlinux 0x93805369 software_node_register_node_group EXPORT_SYMBOL_GPL vmlinux 0x9384cd49 ata_tf_from_fis -EXPORT_SYMBOL_GPL vmlinux 0x938aa4f2 pci_ignore_hotplug +EXPORT_SYMBOL_GPL vmlinux 0x9388a9fe fscrypt_ioctl_remove_key_all_users +EXPORT_SYMBOL_GPL vmlinux 0x938dd9a9 ahci_do_hardreset EXPORT_SYMBOL_GPL vmlinux 0x9396c787 __wake_up_locked_sync_key -EXPORT_SYMBOL_GPL vmlinux 0x93b6be26 gpiochip_generic_request -EXPORT_SYMBOL_GPL vmlinux 0x93b8e049 aead_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x93b8fe0e rockchip_pcie_init_port -EXPORT_SYMBOL_GPL vmlinux 0x93bc33ef pci_vpd_alloc -EXPORT_SYMBOL_GPL vmlinux 0x93bf0eea __spi_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x93afc6a3 lwtunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0x93c130a9 devm_pwm_get EXPORT_SYMBOL_GPL vmlinux 0x93c7edeb usb_find_common_endpoints -EXPORT_SYMBOL_GPL vmlinux 0x93c7f9a8 nf_queue_entry_free -EXPORT_SYMBOL_GPL vmlinux 0x93dd1cb2 __sdhci_add_host +EXPORT_SYMBOL_GPL vmlinux 0x93cf5114 ata_msleep +EXPORT_SYMBOL_GPL vmlinux 0x93d07da5 nfs42_ssc_unregister +EXPORT_SYMBOL_GPL vmlinux 0x93e2888f gpiochip_get_data EXPORT_SYMBOL_GPL vmlinux 0x93edef07 devlink_health_report -EXPORT_SYMBOL_GPL vmlinux 0x93f140a2 pci_get_dsn +EXPORT_SYMBOL_GPL vmlinux 0x93ef8330 devm_clk_bulk_get_optional EXPORT_SYMBOL_GPL vmlinux 0x93f2de8f sbitmap_weight -EXPORT_SYMBOL_GPL vmlinux 0x93f3cb19 devm_phy_get EXPORT_SYMBOL_GPL vmlinux 0x93f55fe0 power_supply_batinfo_ocv2cap -EXPORT_SYMBOL_GPL vmlinux 0x940d04ac skcipher_walk_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x93fd5643 dev_pm_opp_get_max_volt_latency +EXPORT_SYMBOL_GPL vmlinux 0x9402f137 ohci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x94094656 nvmem_cell_read_u32 +EXPORT_SYMBOL_GPL vmlinux 0x940d468d ethnl_cable_test_result EXPORT_SYMBOL_GPL vmlinux 0x941a3d4f clk_hw_unregister_fixed_rate EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put -EXPORT_SYMBOL_GPL vmlinux 0x9420fb05 vp_modern_set_queue_size EXPORT_SYMBOL_GPL vmlinux 0x9425bb34 nvmem_dev_name -EXPORT_SYMBOL_GPL vmlinux 0x9429e61e ata_msleep EXPORT_SYMBOL_GPL vmlinux 0x9430b198 trace_dump_stack -EXPORT_SYMBOL_GPL vmlinux 0x94362b95 genphy_c45_an_config_aneg EXPORT_SYMBOL_GPL vmlinux 0x943740ed srcutorture_get_gp_data -EXPORT_SYMBOL_GPL vmlinux 0x9439a53d regulator_disable -EXPORT_SYMBOL_GPL vmlinux 0x94528b02 pinctrl_utils_add_config -EXPORT_SYMBOL_GPL vmlinux 0x9461f37b device_set_wakeup_enable -EXPORT_SYMBOL_GPL vmlinux 0x94691bce devlink_dpipe_entry_ctx_append +EXPORT_SYMBOL_GPL vmlinux 0x943b92de devlink_rate_leaf_destroy +EXPORT_SYMBOL_GPL vmlinux 0x943cb09d usb_gadget_check_config +EXPORT_SYMBOL_GPL vmlinux 0x9444e662 ata_ncq_sdev_attrs +EXPORT_SYMBOL_GPL vmlinux 0x944ca0c2 ata_bmdma_error_handler EXPORT_SYMBOL_GPL vmlinux 0x946dd559 sha224_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x9488de75 ata_std_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x948b60fd gpiod_direction_output_raw +EXPORT_SYMBOL_GPL vmlinux 0x94993e5c crypto_alloc_skcipher EXPORT_SYMBOL_GPL vmlinux 0x949b5176 devlink_region_snapshot_create -EXPORT_SYMBOL_GPL vmlinux 0x94a742a4 device_property_read_u64_array EXPORT_SYMBOL_GPL vmlinux 0x94abb745 sprint_oid -EXPORT_SYMBOL_GPL vmlinux 0x94ae7c5f devlink_region_snapshot_id_get -EXPORT_SYMBOL_GPL vmlinux 0x94b7c026 ping_hash -EXPORT_SYMBOL_GPL vmlinux 0x94c71b7c ethnl_cable_test_result -EXPORT_SYMBOL_GPL vmlinux 0x94d81765 dma_buf_unmap_attachment -EXPORT_SYMBOL_GPL vmlinux 0x94dd0f8e usb_gadget_unmap_request -EXPORT_SYMBOL_GPL vmlinux 0x94df5c41 dma_buf_fd -EXPORT_SYMBOL_GPL vmlinux 0x94f77a73 net_selftest +EXPORT_SYMBOL_GPL vmlinux 0x94b1797f inet_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0x94b82673 spi_new_device +EXPORT_SYMBOL_GPL vmlinux 0x94c6c720 of_clk_get_from_provider +EXPORT_SYMBOL_GPL vmlinux 0x94c9dc81 tcp_set_state +EXPORT_SYMBOL_GPL vmlinux 0x94d77750 __pm_runtime_disable +EXPORT_SYMBOL_GPL vmlinux 0x94fcee55 devlink_dpipe_table_resource_set +EXPORT_SYMBOL_GPL vmlinux 0x94fef02f gpiod_set_raw_value_cansleep EXPORT_SYMBOL_GPL vmlinux 0x9504df26 irq_wake_thread +EXPORT_SYMBOL_GPL vmlinux 0x951084f6 spi_async_locked EXPORT_SYMBOL_GPL vmlinux 0x951a2773 crypto_has_alg +EXPORT_SYMBOL_GPL vmlinux 0x951ea477 gpiod_count +EXPORT_SYMBOL_GPL vmlinux 0x95256c5d fib6_rule_default EXPORT_SYMBOL_GPL vmlinux 0x952664c5 do_exit -EXPORT_SYMBOL_GPL vmlinux 0x952a3f9a skb_complete_tx_timestamp -EXPORT_SYMBOL_GPL vmlinux 0x952d4f87 bus_create_file -EXPORT_SYMBOL_GPL vmlinux 0x9538edbe spi_res_add -EXPORT_SYMBOL_GPL vmlinux 0x953929f2 mmc_pwrseq_register -EXPORT_SYMBOL_GPL vmlinux 0x953a91d6 dev_err_probe +EXPORT_SYMBOL_GPL vmlinux 0x95396846 devlink_param_unpublish EXPORT_SYMBOL_GPL vmlinux 0x953e1b9e ktime_get_real_seconds +EXPORT_SYMBOL_GPL vmlinux 0x954ba309 da903x_reads +EXPORT_SYMBOL_GPL vmlinux 0x9559a3c5 regulator_enable_regmap EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn -EXPORT_SYMBOL_GPL vmlinux 0x955beaa6 security_file_permission -EXPORT_SYMBOL_GPL vmlinux 0x95636b82 devm_of_phy_get_by_index EXPORT_SYMBOL_GPL vmlinux 0x956ac400 ring_buffer_dropped_events_cpu EXPORT_SYMBOL_GPL vmlinux 0x95843030 mpi_ec_init -EXPORT_SYMBOL_GPL vmlinux 0x958b13ab sdhci_send_tuning EXPORT_SYMBOL_GPL vmlinux 0x958df3ac zs_free -EXPORT_SYMBOL_GPL vmlinux 0x958e215c of_irq_parse_one -EXPORT_SYMBOL_GPL vmlinux 0x958e5b4d devres_remove_group EXPORT_SYMBOL_GPL vmlinux 0x9593ef31 register_ftrace_export -EXPORT_SYMBOL_GPL vmlinux 0x95a38f3e iommu_set_fault_handler -EXPORT_SYMBOL_GPL vmlinux 0x95a59ed2 sdhci_pltfm_init -EXPORT_SYMBOL_GPL vmlinux 0x95b33ab6 pm_clk_add -EXPORT_SYMBOL_GPL vmlinux 0x95ba7bfe perf_event_disable +EXPORT_SYMBOL_GPL vmlinux 0x95b6f453 ahci_platform_resume_host EXPORT_SYMBOL_GPL vmlinux 0x95bc9078 btree_free -EXPORT_SYMBOL_GPL vmlinux 0x95e43830 put_device +EXPORT_SYMBOL_GPL vmlinux 0x95bf43eb pci_epc_mem_alloc_addr +EXPORT_SYMBOL_GPL vmlinux 0x95da6fb5 rio_enable_rx_tx_port +EXPORT_SYMBOL_GPL vmlinux 0x95eb73a2 thermal_zone_of_sensor_unregister +EXPORT_SYMBOL_GPL vmlinux 0x95edf537 __platform_create_bundle EXPORT_SYMBOL_GPL vmlinux 0x95ef1ccc dmi_memdev_size -EXPORT_SYMBOL_GPL vmlinux 0x960465c3 sdhci_set_uhs_signaling -EXPORT_SYMBOL_GPL vmlinux 0x96051fcf devm_devfreq_event_add_edev -EXPORT_SYMBOL_GPL vmlinux 0x960ba6be __traceiter_neigh_update_done -EXPORT_SYMBOL_GPL vmlinux 0x960c8957 extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x95ffed5c fsverity_verify_bio +EXPORT_SYMBOL_GPL vmlinux 0x960797f9 amba_apb_device_add_res EXPORT_SYMBOL_GPL vmlinux 0x961286e0 ring_buffer_read_events_cpu -EXPORT_SYMBOL_GPL vmlinux 0x961c5729 tpm_chip_alloc -EXPORT_SYMBOL_GPL vmlinux 0x9621ab6c serdev_device_write_buf -EXPORT_SYMBOL_GPL vmlinux 0x96231c83 iomap_readpage -EXPORT_SYMBOL_GPL vmlinux 0x962ad913 gen10g_config_aneg -EXPORT_SYMBOL_GPL vmlinux 0x963f5085 usb_hcd_amd_remote_wakeup_quirk -EXPORT_SYMBOL_GPL vmlinux 0x96534407 ata_ncq_sdev_attrs -EXPORT_SYMBOL_GPL vmlinux 0x9653b2bd vp_modern_get_num_queues +EXPORT_SYMBOL_GPL vmlinux 0x96232210 badblocks_show +EXPORT_SYMBOL_GPL vmlinux 0x96432437 usb_role_switch_register +EXPORT_SYMBOL_GPL vmlinux 0x96455745 pci_epf_unregister_driver EXPORT_SYMBOL_GPL vmlinux 0x96554810 register_keyboard_notifier -EXPORT_SYMBOL_GPL vmlinux 0x965ceba9 bd_prepare_to_claim -EXPORT_SYMBOL_GPL vmlinux 0x96844ebb inet_twsk_put -EXPORT_SYMBOL_GPL vmlinux 0x968c75ca ahci_host_activate +EXPORT_SYMBOL_GPL vmlinux 0x966529e3 pci_epc_linkup +EXPORT_SYMBOL_GPL vmlinux 0x966d3850 regmap_check_range_table +EXPORT_SYMBOL_GPL vmlinux 0x9673b2ab usb_hcd_unmap_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x967551e5 __netpoll_setup EXPORT_SYMBOL_GPL vmlinux 0x968f9a23 efivar_entry_iter_begin +EXPORT_SYMBOL_GPL vmlinux 0x969302d6 mtk_is_virt_gpio +EXPORT_SYMBOL_GPL vmlinux 0x969eb88a nand_deselect_target +EXPORT_SYMBOL_GPL vmlinux 0x969f679e __devm_reset_control_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x96a56769 devm_regmap_field_bulk_alloc EXPORT_SYMBOL_GPL vmlinux 0x96ab3dde __tracepoint_suspend_resume -EXPORT_SYMBOL_GPL vmlinux 0x96b4782b exportfs_decode_fh -EXPORT_SYMBOL_GPL vmlinux 0x96c62fa3 iomap_file_buffered_write EXPORT_SYMBOL_GPL vmlinux 0x96ca63f5 __rht_bucket_nested -EXPORT_SYMBOL_GPL vmlinux 0x96d27b03 rt_mutex_trylock -EXPORT_SYMBOL_GPL vmlinux 0x96d28c1a rtc_read_alarm -EXPORT_SYMBOL_GPL vmlinux 0x96d97c1f adp5520_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x96e6777c of_pci_find_child_device -EXPORT_SYMBOL_GPL vmlinux 0x96fa2499 irq_alloc_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x96fe3d96 spi_slave_abort -EXPORT_SYMBOL_GPL vmlinux 0x970a605a fib6_rule_default +EXPORT_SYMBOL_GPL vmlinux 0x96d38e4c fscrypt_file_open +EXPORT_SYMBOL_GPL vmlinux 0x96ee1154 snd_soc_add_card_controls +EXPORT_SYMBOL_GPL vmlinux 0x96f9a01b __SCK__tp_func_pelt_thermal_tp +EXPORT_SYMBOL_GPL vmlinux 0x96fdaadc rtnl_af_register EXPORT_SYMBOL_GPL vmlinux 0x9714e0bb ktime_get_raw -EXPORT_SYMBOL_GPL vmlinux 0x97266453 sysfs_chmod_file -EXPORT_SYMBOL_GPL vmlinux 0x9726e866 wwan_create_port -EXPORT_SYMBOL_GPL vmlinux 0x9739a96e hwmon_device_register_with_groups -EXPORT_SYMBOL_GPL vmlinux 0x97438407 crypto_lookup_template -EXPORT_SYMBOL_GPL vmlinux 0x9754cc23 nvdimm_bus_add_badrange +EXPORT_SYMBOL_GPL vmlinux 0x971c9e5a scsi_register_device_handler +EXPORT_SYMBOL_GPL vmlinux 0x9728c0bf nfnl_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0x972cc19b fwnode_graph_get_remote_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x9735602f dma_buf_get +EXPORT_SYMBOL_GPL vmlinux 0x97430f08 iommu_set_pgtable_quirks EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same -EXPORT_SYMBOL_GPL vmlinux 0x97593b5b sdio_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x97668ba7 ulpi_viewport_access_ops -EXPORT_SYMBOL_GPL vmlinux 0x9769032c iommu_domain_free -EXPORT_SYMBOL_GPL vmlinux 0x976c3efb ping_seq_start -EXPORT_SYMBOL_GPL vmlinux 0x978c4284 ip_local_out -EXPORT_SYMBOL_GPL vmlinux 0x978fbd3d iommu_map -EXPORT_SYMBOL_GPL vmlinux 0x9793d38d of_pci_parse_bus_range -EXPORT_SYMBOL_GPL vmlinux 0x97a3a442 nand_op_parser_exec_op -EXPORT_SYMBOL_GPL vmlinux 0x97a471cf nf_ct_hook -EXPORT_SYMBOL_GPL vmlinux 0x97a636fd get_net_ns_by_pid -EXPORT_SYMBOL_GPL vmlinux 0x97ad1ce9 sdhci_set_clock -EXPORT_SYMBOL_GPL vmlinux 0x97b7ca31 devm_clk_unregister -EXPORT_SYMBOL_GPL vmlinux 0x97b97f01 gpiochip_irqchip_irq_valid -EXPORT_SYMBOL_GPL vmlinux 0x97c39cc2 tpm_pm_resume -EXPORT_SYMBOL_GPL vmlinux 0x97ce55bf nf_nat_hook +EXPORT_SYMBOL_GPL vmlinux 0x9779aad3 fuse_init_fs_context_submount +EXPORT_SYMBOL_GPL vmlinux 0x97a015eb vma_kernel_pagesize +EXPORT_SYMBOL_GPL vmlinux 0x97a4112e device_show_int +EXPORT_SYMBOL_GPL vmlinux 0x97ac7cae ehci_resume +EXPORT_SYMBOL_GPL vmlinux 0x97b730cc dummy_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x97b854b6 dev_pm_opp_of_register_em +EXPORT_SYMBOL_GPL vmlinux 0x97beb089 tty_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0x97d51fae ata_dummy_port_info EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent -EXPORT_SYMBOL_GPL vmlinux 0x97e04d69 ahci_reset_em -EXPORT_SYMBOL_GPL vmlinux 0x97e41297 fscrypt_ioctl_remove_key -EXPORT_SYMBOL_GPL vmlinux 0x97e449d9 __irq_domain_alloc_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x9808c1ca sfp_bus_add_upstream -EXPORT_SYMBOL_GPL vmlinux 0x980cf7cb kthread_cancel_delayed_work_sync -EXPORT_SYMBOL_GPL vmlinux 0x9817037c gpiod_put -EXPORT_SYMBOL_GPL vmlinux 0x9826eac3 blk_mq_rdma_map_queues -EXPORT_SYMBOL_GPL vmlinux 0x982bd5f4 get_mtd_device +EXPORT_SYMBOL_GPL vmlinux 0x97de904c power_supply_get_battery_info +EXPORT_SYMBOL_GPL vmlinux 0x97e115f5 lwtstate_free +EXPORT_SYMBOL_GPL vmlinux 0x97ffb904 sched_set_fifo_low +EXPORT_SYMBOL_GPL vmlinux 0x98004b70 blk_next_bio +EXPORT_SYMBOL_GPL vmlinux 0x9812e08e pm_generic_freeze EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick -EXPORT_SYMBOL_GPL vmlinux 0x984c50fa devm_thermal_add_hwmon_sysfs -EXPORT_SYMBOL_GPL vmlinux 0x9850202e evm_inode_init_security +EXPORT_SYMBOL_GPL vmlinux 0x983d60bb platform_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x984fdd81 device_set_node EXPORT_SYMBOL_GPL vmlinux 0x98503a63 mpi_alloc +EXPORT_SYMBOL_GPL vmlinux 0x98531f97 __rio_local_read_config_8 EXPORT_SYMBOL_GPL vmlinux 0x985453e1 lease_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x985b2655 __inet_lookup_established -EXPORT_SYMBOL_GPL vmlinux 0x98633f5c sk_psock_drop -EXPORT_SYMBOL_GPL vmlinux 0x9865459a of_icc_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0x986940f1 ima_file_check -EXPORT_SYMBOL_GPL vmlinux 0x9870c3c4 blk_trace_setup +EXPORT_SYMBOL_GPL vmlinux 0x98602097 mtd_add_partition +EXPORT_SYMBOL_GPL vmlinux 0x986891c6 dmaengine_unmap_put +EXPORT_SYMBOL_GPL vmlinux 0x9870730d clk_hw_rate_is_protected EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x988b39fd __raw_v4_lookup -EXPORT_SYMBOL_GPL vmlinux 0x988c1d3a xdp_attachment_setup +EXPORT_SYMBOL_GPL vmlinux 0x988811c3 key_type_user EXPORT_SYMBOL_GPL vmlinux 0x989074ff kmsg_dump_reason_str +EXPORT_SYMBOL_GPL vmlinux 0x9898a27f stmpe_reg_write EXPORT_SYMBOL_GPL vmlinux 0x989b73b3 sbitmap_init_node -EXPORT_SYMBOL_GPL vmlinux 0x98a39767 genphy_c45_check_and_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0x98a6dab4 serial8250_do_shutdown EXPORT_SYMBOL_GPL vmlinux 0x98b142fa blk_fill_rwbs -EXPORT_SYMBOL_GPL vmlinux 0x98d37583 snd_soc_register_card -EXPORT_SYMBOL_GPL vmlinux 0x98d5be29 sdhci_set_data_timeout_irq -EXPORT_SYMBOL_GPL vmlinux 0x98e6d5f8 fat_scan +EXPORT_SYMBOL_GPL vmlinux 0x98df97c6 irq_domain_free_fwnode EXPORT_SYMBOL_GPL vmlinux 0x98ee62b2 ring_buffer_record_disable_cpu EXPORT_SYMBOL_GPL vmlinux 0x98fa1e20 dm_get_reserved_rq_based_ios EXPORT_SYMBOL_GPL vmlinux 0x98fe6251 __traceiter_unmap -EXPORT_SYMBOL_GPL vmlinux 0x9900f48d iommu_unmap -EXPORT_SYMBOL_GPL vmlinux 0x990baaeb __netpoll_free -EXPORT_SYMBOL_GPL vmlinux 0x99108caf switchdev_handle_port_obj_add -EXPORT_SYMBOL_GPL vmlinux 0x99118821 thermal_zone_of_get_sensor_id -EXPORT_SYMBOL_GPL vmlinux 0x9911b858 rdev_get_regmap -EXPORT_SYMBOL_GPL vmlinux 0x99303a2a ahci_platform_enable_phys +EXPORT_SYMBOL_GPL vmlinux 0x9905a801 blkg_conf_finish +EXPORT_SYMBOL_GPL vmlinux 0x990efd1f iomap_zero_range +EXPORT_SYMBOL_GPL vmlinux 0x991848a7 inet_csk_reqsk_queue_hash_add +EXPORT_SYMBOL_GPL vmlinux 0x994716d8 pci_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x994fc4f9 fib_nh_common_release +EXPORT_SYMBOL_GPL vmlinux 0x99552274 pinctrl_add_gpio_ranges +EXPORT_SYMBOL_GPL vmlinux 0x9958ec6d rio_release_outb_dbell EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on -EXPORT_SYMBOL_GPL vmlinux 0x99634d0a trace_output_call +EXPORT_SYMBOL_GPL vmlinux 0x9961b3d4 component_unbind_all +EXPORT_SYMBOL_GPL vmlinux 0x9966465e snd_hwparams_to_dma_slave_config EXPORT_SYMBOL_GPL vmlinux 0x9968aacb __audit_log_nfcfg -EXPORT_SYMBOL_GPL vmlinux 0x996fe639 serdev_device_add -EXPORT_SYMBOL_GPL vmlinux 0x9971d988 vp_modern_probe -EXPORT_SYMBOL_GPL vmlinux 0x9989931d scsi_dh_set_params -EXPORT_SYMBOL_GPL vmlinux 0x999a1749 power_supply_register -EXPORT_SYMBOL_GPL vmlinux 0x999ecd10 dma_buf_vunmap -EXPORT_SYMBOL_GPL vmlinux 0x99a03432 dt_init_idle_driver +EXPORT_SYMBOL_GPL vmlinux 0x9970ebd9 blk_mq_queue_inflight +EXPORT_SYMBOL_GPL vmlinux 0x997bcfca of_clk_get_parent_count +EXPORT_SYMBOL_GPL vmlinux 0x9983ab1b ohci_restart +EXPORT_SYMBOL_GPL vmlinux 0x999f7271 cpufreq_driver_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0x99a86e82 synth_event_trace_start +EXPORT_SYMBOL_GPL vmlinux 0x99a903f2 __class_register EXPORT_SYMBOL_GPL vmlinux 0x99b7191f dynevent_create -EXPORT_SYMBOL_GPL vmlinux 0x99e02b3b debugfs_attr_read -EXPORT_SYMBOL_GPL vmlinux 0x99e0c52f snd_soc_lookup_component_nolocked -EXPORT_SYMBOL_GPL vmlinux 0x99e1e346 gpiochip_lock_as_irq -EXPORT_SYMBOL_GPL vmlinux 0x99ea3546 bgpio_init -EXPORT_SYMBOL_GPL vmlinux 0x99f23ab3 rtc_set_time +EXPORT_SYMBOL_GPL vmlinux 0x99bef1d1 gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0x99c2aca0 usb_hcd_link_urb_to_ep +EXPORT_SYMBOL_GPL vmlinux 0x99d00254 l3mdev_table_lookup_register +EXPORT_SYMBOL_GPL vmlinux 0x99deaf68 led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x99e305d2 usb_alloc_coherent EXPORT_SYMBOL_GPL vmlinux 0x99f2d00a sysfs_emit_at -EXPORT_SYMBOL_GPL vmlinux 0x99fb2b1c fwnode_get_next_child_node -EXPORT_SYMBOL_GPL vmlinux 0x9a04f417 blk_stat_enable_accounting +EXPORT_SYMBOL_GPL vmlinux 0x9a0c1a02 sdhci_start_signal_voltage_switch +EXPORT_SYMBOL_GPL vmlinux 0x9a10c9e2 __devm_alloc_percpu EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name -EXPORT_SYMBOL_GPL vmlinux 0x9a1684f5 rio_add_device -EXPORT_SYMBOL_GPL vmlinux 0x9a1a6a79 ahci_platform_suspend_host -EXPORT_SYMBOL_GPL vmlinux 0x9a260e7d bpf_trace_run5 -EXPORT_SYMBOL_GPL vmlinux 0x9a4507bf vfs_fallocate -EXPORT_SYMBOL_GPL vmlinux 0x9a4a072f i2c_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0x9a4b0be3 usb_autopm_get_interface_no_resume -EXPORT_SYMBOL_GPL vmlinux 0x9a5dc7da __mnt_drop_write -EXPORT_SYMBOL_GPL vmlinux 0x9a642287 led_trigger_event -EXPORT_SYMBOL_GPL vmlinux 0x9a682b76 snd_soc_dapm_kcontrol_widget -EXPORT_SYMBOL_GPL vmlinux 0x9a7a05c5 kthread_flush_work -EXPORT_SYMBOL_GPL vmlinux 0x9a7a4591 clk_gate_restore_context -EXPORT_SYMBOL_GPL vmlinux 0x9a977fc6 tty_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x9a9aeba7 ipv6_dup_options -EXPORT_SYMBOL_GPL vmlinux 0x9aaaea59 ahci_reset_controller -EXPORT_SYMBOL_GPL vmlinux 0x9abb4dd4 do_xdp_generic +EXPORT_SYMBOL_GPL vmlinux 0x9a1ae200 device_add_properties +EXPORT_SYMBOL_GPL vmlinux 0x9a33ff6a __efivar_entry_delete +EXPORT_SYMBOL_GPL vmlinux 0x9a39ea59 shash_free_singlespawn_instance +EXPORT_SYMBOL_GPL vmlinux 0x9a66c843 snd_soc_component_force_enable_pin_unlocked +EXPORT_SYMBOL_GPL vmlinux 0x9a72c7cb devm_spi_mem_dirmap_destroy +EXPORT_SYMBOL_GPL vmlinux 0x9a828e20 bus_sort_breadthfirst +EXPORT_SYMBOL_GPL vmlinux 0x9a85b9db kern_mount +EXPORT_SYMBOL_GPL vmlinux 0x9a8eaeef devm_nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0x9a96e977 user_read +EXPORT_SYMBOL_GPL vmlinux 0x9a99d3d4 debugfs_create_blob +EXPORT_SYMBOL_GPL vmlinux 0x9aad8b8c devlink_param_driverinit_value_set +EXPORT_SYMBOL_GPL vmlinux 0x9ab220b1 sdio_register_driver EXPORT_SYMBOL_GPL vmlinux 0x9ac11b74 suspend_set_ops -EXPORT_SYMBOL_GPL vmlinux 0x9ac1bea5 pci_bus_resource_n -EXPORT_SYMBOL_GPL vmlinux 0x9ad93531 devm_gpiod_get_optional -EXPORT_SYMBOL_GPL vmlinux 0x9ae485c4 snd_ctl_apply_vmaster_followers +EXPORT_SYMBOL_GPL vmlinux 0x9ac7e41b clk_register_mux_table +EXPORT_SYMBOL_GPL vmlinux 0x9ac9e54c da903x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x9acbc66d led_classdev_resume +EXPORT_SYMBOL_GPL vmlinux 0x9ad2656e of_reserved_mem_lookup +EXPORT_SYMBOL_GPL vmlinux 0x9ad36803 device_match_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x9adb012c stmpe_set_altfunc EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty +EXPORT_SYMBOL_GPL vmlinux 0x9af30ea1 xdp_return_frame_rx_napi EXPORT_SYMBOL_GPL vmlinux 0x9af49514 icc_bulk_set_bw -EXPORT_SYMBOL_GPL vmlinux 0x9b1bd450 snd_soc_unregister_dai -EXPORT_SYMBOL_GPL vmlinux 0x9b252878 devlink_health_reporter_create -EXPORT_SYMBOL_GPL vmlinux 0x9b4502e9 da903x_clr_bits -EXPORT_SYMBOL_GPL vmlinux 0x9b532bc5 tcp_twsk_unique -EXPORT_SYMBOL_GPL vmlinux 0x9b53f151 pci_epc_put +EXPORT_SYMBOL_GPL vmlinux 0x9aff0f30 netlink_remove_tap +EXPORT_SYMBOL_GPL vmlinux 0x9b004a26 pinctrl_register +EXPORT_SYMBOL_GPL vmlinux 0x9b11aa30 rockchip_clk_register_branches +EXPORT_SYMBOL_GPL vmlinux 0x9b269af2 crypto_unregister_algs +EXPORT_SYMBOL_GPL vmlinux 0x9b2a8145 __percpu_init_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x9b344373 mtd_block_markbad +EXPORT_SYMBOL_GPL vmlinux 0x9b465ef7 edac_pci_create_generic_ctl +EXPORT_SYMBOL_GPL vmlinux 0x9b4dbd99 mmu_notifier_unregister EXPORT_SYMBOL_GPL vmlinux 0x9b555c8c pm_suspend_default_s2idle -EXPORT_SYMBOL_GPL vmlinux 0x9b6b1852 __traceiter_block_rq_insert -EXPORT_SYMBOL_GPL vmlinux 0x9b6cba52 crypto_stats_kpp_set_secret +EXPORT_SYMBOL_GPL vmlinux 0x9b588150 pm_generic_freeze_late +EXPORT_SYMBOL_GPL vmlinux 0x9b6309f0 crypto_aead_decrypt EXPORT_SYMBOL_GPL vmlinux 0x9b6ec967 ring_buffer_size -EXPORT_SYMBOL_GPL vmlinux 0x9b704b48 __fscrypt_inode_uses_inline_crypto EXPORT_SYMBOL_GPL vmlinux 0x9b746c56 snd_pcm_create_iec958_consumer_default -EXPORT_SYMBOL_GPL vmlinux 0x9b782a32 mbox_client_txdone +EXPORT_SYMBOL_GPL vmlinux 0x9b76e340 ip6_datagram_recv_ctl +EXPORT_SYMBOL_GPL vmlinux 0x9b77aab2 unregister_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0x9b7f12d3 sdhci_start_tuning EXPORT_SYMBOL_GPL vmlinux 0x9b896724 devlink_param_value_str_fill EXPORT_SYMBOL_GPL vmlinux 0x9b9071cb get_old_itimerspec32 EXPORT_SYMBOL_GPL vmlinux 0x9b92d16e pinctrl_gpio_set_config -EXPORT_SYMBOL_GPL vmlinux 0x9b9ebba4 ip6_datagram_recv_ctl -EXPORT_SYMBOL_GPL vmlinux 0x9ba4675d devm_kfree -EXPORT_SYMBOL_GPL vmlinux 0x9bc596a1 cpufreq_cooling_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9ba61a67 extcon_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9baeaabf pci_cfg_access_lock +EXPORT_SYMBOL_GPL vmlinux 0x9bb16a71 tpm_default_chip +EXPORT_SYMBOL_GPL vmlinux 0x9bbf81cb __device_reset +EXPORT_SYMBOL_GPL vmlinux 0x9bbfc4b0 tc3589x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x9bcab6d1 ata_sff_wait_after_reset EXPORT_SYMBOL_GPL vmlinux 0x9bcf9f7d housekeeping_enabled -EXPORT_SYMBOL_GPL vmlinux 0x9bd8a773 shmem_zero_setup -EXPORT_SYMBOL_GPL vmlinux 0x9be88143 virtqueue_enable_cb -EXPORT_SYMBOL_GPL vmlinux 0x9beb55b6 noop_backing_dev_info +EXPORT_SYMBOL_GPL vmlinux 0x9bd6c665 dm_hold +EXPORT_SYMBOL_GPL vmlinux 0x9bdd7a89 blkg_rwstat_recursive_sum EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui -EXPORT_SYMBOL_GPL vmlinux 0x9bfb1a36 nf_checksum_partial -EXPORT_SYMBOL_GPL vmlinux 0x9bfd4b90 sm501_find_clock +EXPORT_SYMBOL_GPL vmlinux 0x9bf2c11d dma_get_any_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x9bf61fe9 debugfs_file_get +EXPORT_SYMBOL_GPL vmlinux 0x9bf91da6 vp_modern_probe +EXPORT_SYMBOL_GPL vmlinux 0x9bfcc878 dev_pm_qos_remove_request EXPORT_SYMBOL_GPL vmlinux 0x9bfde704 snd_soc_daifmt_clock_provider_fliped -EXPORT_SYMBOL_GPL vmlinux 0x9c03a2be usb_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x9c06f8b8 __hwspin_trylock -EXPORT_SYMBOL_GPL vmlinux 0x9c08ab0c edac_pci_add_device -EXPORT_SYMBOL_GPL vmlinux 0x9c0fc53f dev_pm_opp_enable -EXPORT_SYMBOL_GPL vmlinux 0x9c263d1b __pm_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0x9c38baa7 virtio_config_changed -EXPORT_SYMBOL_GPL vmlinux 0x9c5565ef class_dev_iter_next -EXPORT_SYMBOL_GPL vmlinux 0x9c5d7e0f crypto_register_kpp +EXPORT_SYMBOL_GPL vmlinux 0x9c03690e kernfs_notify +EXPORT_SYMBOL_GPL vmlinux 0x9c12f76c __pm_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x9c151512 sysfs_create_group +EXPORT_SYMBOL_GPL vmlinux 0x9c17ebb7 of_dma_configure_id +EXPORT_SYMBOL_GPL vmlinux 0x9c2202c3 usb_get_current_frame_number +EXPORT_SYMBOL_GPL vmlinux 0x9c32c2c5 gpiochip_irq_unmap +EXPORT_SYMBOL_GPL vmlinux 0x9c4a364f devm_kstrdup_const +EXPORT_SYMBOL_GPL vmlinux 0x9c56497b usb_poison_urb +EXPORT_SYMBOL_GPL vmlinux 0x9c585169 eventfd_fget EXPORT_SYMBOL_GPL vmlinux 0x9c6febfc add_uevent_var +EXPORT_SYMBOL_GPL vmlinux 0x9c787575 device_store_int EXPORT_SYMBOL_GPL vmlinux 0x9c803020 usb_phy_roothub_power_on -EXPORT_SYMBOL_GPL vmlinux 0x9c98052d phy_driver_is_genphy_10g +EXPORT_SYMBOL_GPL vmlinux 0x9c85ff4f devm_clk_hw_get_clk EXPORT_SYMBOL_GPL vmlinux 0x9ca480cc clk_gate_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0x9ca4dd46 uart_handle_dcd_change -EXPORT_SYMBOL_GPL vmlinux 0x9cb34af6 phy_package_leave -EXPORT_SYMBOL_GPL vmlinux 0x9cb3c5e6 ahci_fill_cmd_slot -EXPORT_SYMBOL_GPL vmlinux 0x9cbbf509 of_platform_depopulate +EXPORT_SYMBOL_GPL vmlinux 0x9cc0e7d8 crypto_comp_compress +EXPORT_SYMBOL_GPL vmlinux 0x9cc2cefd trace_seq_path +EXPORT_SYMBOL_GPL vmlinux 0x9cc49f7d __traceiter_block_bio_complete EXPORT_SYMBOL_GPL vmlinux 0x9cc4f70a register_pm_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9cd9c63b dev_attr_unload_heads -EXPORT_SYMBOL_GPL vmlinux 0x9ced11bb crypto_register_rngs -EXPORT_SYMBOL_GPL vmlinux 0x9cf85fb8 fsnotify_destroy_mark -EXPORT_SYMBOL_GPL vmlinux 0x9d095135 pm_generic_restore +EXPORT_SYMBOL_GPL vmlinux 0x9ce1d2cd sk_msg_free +EXPORT_SYMBOL_GPL vmlinux 0x9ce4efb9 nand_op_parser_exec_op +EXPORT_SYMBOL_GPL vmlinux 0x9d05b096 phy_get EXPORT_SYMBOL_GPL vmlinux 0x9d09e8ae ring_buffer_event_data -EXPORT_SYMBOL_GPL vmlinux 0x9d1b0d6a devlink_reload_disable -EXPORT_SYMBOL_GPL vmlinux 0x9d203e80 posix_clock_unregister -EXPORT_SYMBOL_GPL vmlinux 0x9d26f370 xfrm_audit_state_replay_overflow -EXPORT_SYMBOL_GPL vmlinux 0x9d2b22c6 mbox_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x9d149f7d usb_free_coherent +EXPORT_SYMBOL_GPL vmlinux 0x9d194d34 devm_clk_bulk_get_all +EXPORT_SYMBOL_GPL vmlinux 0x9d1a73f2 ata_dummy_port_ops EXPORT_SYMBOL_GPL vmlinux 0x9d2f49ef __SCK__tp_func_pelt_se_tp -EXPORT_SYMBOL_GPL vmlinux 0x9d35505e sdhci_adma_write_desc -EXPORT_SYMBOL_GPL vmlinux 0x9d359b92 snd_soc_component_set_sysclk -EXPORT_SYMBOL_GPL vmlinux 0x9d36a6b0 snd_soc_unregister_component -EXPORT_SYMBOL_GPL vmlinux 0x9d40918a snd_soc_put_volsw_sx -EXPORT_SYMBOL_GPL vmlinux 0x9d525a89 bsg_remove_queue +EXPORT_SYMBOL_GPL vmlinux 0x9d35b393 tcp_ca_get_key_by_name +EXPORT_SYMBOL_GPL vmlinux 0x9d4658e3 devm_clk_hw_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x9d4c49eb ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0x9d4ffb16 linear_hugepage_index EXPORT_SYMBOL_GPL vmlinux 0x9d5a8178 hrtimer_try_to_cancel -EXPORT_SYMBOL_GPL vmlinux 0x9d5fce49 serdev_device_close -EXPORT_SYMBOL_GPL vmlinux 0x9d653818 __fscrypt_prepare_readdir -EXPORT_SYMBOL_GPL vmlinux 0x9d71b886 bpf_prog_alloc -EXPORT_SYMBOL_GPL vmlinux 0x9d7842db regulator_set_voltage -EXPORT_SYMBOL_GPL vmlinux 0x9d890956 netdev_rx_handler_register -EXPORT_SYMBOL_GPL vmlinux 0x9d8a7abd ata_pio_need_iordy -EXPORT_SYMBOL_GPL vmlinux 0x9d8af8e8 page_cache_async_ra -EXPORT_SYMBOL_GPL vmlinux 0x9da10b57 devm_pm_opp_set_clkname -EXPORT_SYMBOL_GPL vmlinux 0x9da3a5a9 fixup_user_fault -EXPORT_SYMBOL_GPL vmlinux 0x9da5cb36 devm_pm_clk_create -EXPORT_SYMBOL_GPL vmlinux 0x9daa2ed5 pinctrl_get -EXPORT_SYMBOL_GPL vmlinux 0x9db8bb1e extcon_sync -EXPORT_SYMBOL_GPL vmlinux 0x9dc355e6 pci_epc_mem_free_addr -EXPORT_SYMBOL_GPL vmlinux 0x9dd03ff3 bpf_trace_run8 -EXPORT_SYMBOL_GPL vmlinux 0x9dd7cd24 blk_mq_quiesce_queue_nowait -EXPORT_SYMBOL_GPL vmlinux 0x9de53088 snd_pcm_add_chmap_ctls -EXPORT_SYMBOL_GPL vmlinux 0x9df0f302 param_set_uint_minmax -EXPORT_SYMBOL_GPL vmlinux 0x9df215b3 tpm_chip_start +EXPORT_SYMBOL_GPL vmlinux 0x9d60b1c1 spi_controller_suspend +EXPORT_SYMBOL_GPL vmlinux 0x9d658d64 mtk_eint_find_irq +EXPORT_SYMBOL_GPL vmlinux 0x9d6f4873 devm_spi_register_controller +EXPORT_SYMBOL_GPL vmlinux 0x9d78ed36 efivar_entry_add +EXPORT_SYMBOL_GPL vmlinux 0x9d822c77 scsi_host_complete_all_commands +EXPORT_SYMBOL_GPL vmlinux 0x9d85e779 debugfs_create_u8 +EXPORT_SYMBOL_GPL vmlinux 0x9d8e276b pci_user_write_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x9d9d5731 fuse_conn_init +EXPORT_SYMBOL_GPL vmlinux 0x9db35f5c pm_runtime_force_suspend EXPORT_SYMBOL_GPL vmlinux 0x9dfdf722 gpio_free_array +EXPORT_SYMBOL_GPL vmlinux 0x9e00cc6e crypto_stats_kpp_set_secret EXPORT_SYMBOL_GPL vmlinux 0x9e016686 digsig_verify -EXPORT_SYMBOL_GPL vmlinux 0x9e272266 devlink_dpipe_entry_ctx_prepare -EXPORT_SYMBOL_GPL vmlinux 0x9e284fa4 of_phy_put -EXPORT_SYMBOL_GPL vmlinux 0x9e459ab9 usb_get_intf +EXPORT_SYMBOL_GPL vmlinux 0x9e14fc62 cgroup_attach_task_all +EXPORT_SYMBOL_GPL vmlinux 0x9e333d5b snd_soc_of_put_dai_link_codecs +EXPORT_SYMBOL_GPL vmlinux 0x9e36e8f4 pciserial_init_ports +EXPORT_SYMBOL_GPL vmlinux 0x9e431588 device_get_child_node_count EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field +EXPORT_SYMBOL_GPL vmlinux 0x9e4e23f1 rio_del_device +EXPORT_SYMBOL_GPL vmlinux 0x9e55d29c of_irq_to_resource_table EXPORT_SYMBOL_GPL vmlinux 0x9e65ed2b __kprobe_event_add_fields -EXPORT_SYMBOL_GPL vmlinux 0x9e6c6932 rtnl_link_unregister -EXPORT_SYMBOL_GPL vmlinux 0x9e7447e1 tps6586x_writes -EXPORT_SYMBOL_GPL vmlinux 0x9e768a71 ata_pci_sff_activate_host -EXPORT_SYMBOL_GPL vmlinux 0x9e7fdaf3 i2c_probe_func_quick_read -EXPORT_SYMBOL_GPL vmlinux 0x9e814ba2 ata_bmdma_qc_issue -EXPORT_SYMBOL_GPL vmlinux 0x9e8dc394 skb_tstamp_tx -EXPORT_SYMBOL_GPL vmlinux 0x9e9118ca pinctrl_add_gpio_range -EXPORT_SYMBOL_GPL vmlinux 0x9e950b70 ata_platform_remove_one -EXPORT_SYMBOL_GPL vmlinux 0x9e99fc32 set_task_ioprio +EXPORT_SYMBOL_GPL vmlinux 0x9e69365e netdev_set_default_ethtool_ops +EXPORT_SYMBOL_GPL vmlinux 0x9e76e675 debugfs_create_atomic_t +EXPORT_SYMBOL_GPL vmlinux 0x9e7cd2fa tty_port_register_device_serdev +EXPORT_SYMBOL_GPL vmlinux 0x9e9c406a security_path_rmdir +EXPORT_SYMBOL_GPL vmlinux 0x9e9d8adf dw_pcie_wait_for_link EXPORT_SYMBOL_GPL vmlinux 0x9e9dd888 x509_cert_parse -EXPORT_SYMBOL_GPL vmlinux 0x9ea316ad sysfs_change_owner -EXPORT_SYMBOL_GPL vmlinux 0x9ea7f602 iommu_detach_device -EXPORT_SYMBOL_GPL vmlinux 0x9ea8b0ff lp8788_write_byte -EXPORT_SYMBOL_GPL vmlinux 0x9eac5fec ping_getfrag -EXPORT_SYMBOL_GPL vmlinux 0x9eae46ae usb_hub_clear_tt_buffer +EXPORT_SYMBOL_GPL vmlinux 0x9ea2b78f mbox_chan_received_data +EXPORT_SYMBOL_GPL vmlinux 0x9ea551ea msg_zerocopy_put_abort EXPORT_SYMBOL_GPL vmlinux 0x9eb52803 usb_ep_disable -EXPORT_SYMBOL_GPL vmlinux 0x9ebb7430 security_path_truncate -EXPORT_SYMBOL_GPL vmlinux 0x9ec7a68b dequeue_signal -EXPORT_SYMBOL_GPL vmlinux 0x9ed348b3 ata_host_activate +EXPORT_SYMBOL_GPL vmlinux 0x9eb9a122 wwan_register_ops +EXPORT_SYMBOL_GPL vmlinux 0x9ed17255 fwnode_usb_role_switch_get EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9ed8921a spi_busnum_to_master -EXPORT_SYMBOL_GPL vmlinux 0x9ed9bf28 sock_diag_unregister_inet_compat -EXPORT_SYMBOL_GPL vmlinux 0x9ee26f65 devm_hwspin_lock_register +EXPORT_SYMBOL_GPL vmlinux 0x9edccb68 crypto_unregister_alg EXPORT_SYMBOL_GPL vmlinux 0x9ee5e40a __ktime_divns +EXPORT_SYMBOL_GPL vmlinux 0x9ee623d5 dma_buf_unpin +EXPORT_SYMBOL_GPL vmlinux 0x9ee867f2 transport_class_register EXPORT_SYMBOL_GPL vmlinux 0x9eebdde7 mpi_point_new -EXPORT_SYMBOL_GPL vmlinux 0x9ef5d3b7 register_virtio_device -EXPORT_SYMBOL_GPL vmlinux 0x9f0ebc0a skb_defer_rx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x9ef2d6d9 free_vm_area EXPORT_SYMBOL_GPL vmlinux 0x9f140889 usb_anchor_resume_wakeups -EXPORT_SYMBOL_GPL vmlinux 0x9f2bb91d fwnode_property_read_u64_array -EXPORT_SYMBOL_GPL vmlinux 0x9f38946e edac_pci_alloc_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0x9f29a07f hwspin_lock_register +EXPORT_SYMBOL_GPL vmlinux 0x9f2ed449 sysfs_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x9f3cf0e6 devm_led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0x9f4933e0 pinctrl_pm_select_sleep_state EXPORT_SYMBOL_GPL vmlinux 0x9f4c4aa0 spi_delay_to_ns -EXPORT_SYMBOL_GPL vmlinux 0x9f55e97e ahci_stop_engine +EXPORT_SYMBOL_GPL vmlinux 0x9f556496 regulator_get EXPORT_SYMBOL_GPL vmlinux 0x9f56c4b9 __SCK__tp_func_devlink_hwmsg -EXPORT_SYMBOL_GPL vmlinux 0x9f62d1ad sfp_add_phy -EXPORT_SYMBOL_GPL vmlinux 0x9f69d58f sched_trace_rq_avg_irq -EXPORT_SYMBOL_GPL vmlinux 0x9f7d1bc1 pm_runtime_suspended_time -EXPORT_SYMBOL_GPL vmlinux 0x9f84849f kill_pid_usb_asyncio -EXPORT_SYMBOL_GPL vmlinux 0x9f84f9cc fsverity_ioctl_measure -EXPORT_SYMBOL_GPL vmlinux 0x9fa196ef get_pid_task -EXPORT_SYMBOL_GPL vmlinux 0x9fa56a06 genpd_dev_pm_attach_by_id -EXPORT_SYMBOL_GPL vmlinux 0x9fc75039 alloc_dax_region -EXPORT_SYMBOL_GPL vmlinux 0x9fc838b4 usb_of_get_interface_node +EXPORT_SYMBOL_GPL vmlinux 0x9f6096ae sdio_writeb_readb +EXPORT_SYMBOL_GPL vmlinux 0x9f621d13 dev_pm_qos_expose_flags +EXPORT_SYMBOL_GPL vmlinux 0x9f6ac3bf hvc_remove +EXPORT_SYMBOL_GPL vmlinux 0x9fbcaa00 dev_pm_opp_get_max_transition_latency +EXPORT_SYMBOL_GPL vmlinux 0x9fc5ba97 ata_sff_queue_pio_task +EXPORT_SYMBOL_GPL vmlinux 0x9fc7ef7e sdhci_add_host +EXPORT_SYMBOL_GPL vmlinux 0x9fca568e sdio_align_size EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x9fcea952 irq_domain_add_legacy -EXPORT_SYMBOL_GPL vmlinux 0x9fe27162 i2c_dw_configure_master -EXPORT_SYMBOL_GPL vmlinux 0x9fe58381 regulator_list_voltage_linear EXPORT_SYMBOL_GPL vmlinux 0x9fe899b7 get_cpu_idle_time EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm -EXPORT_SYMBOL_GPL vmlinux 0x9ff0a9c3 fscrypt_mergeable_bio EXPORT_SYMBOL_GPL vmlinux 0x9ff1b559 rockchip_register_softrst -EXPORT_SYMBOL_GPL vmlinux 0xa0027911 dm_put -EXPORT_SYMBOL_GPL vmlinux 0xa00753ba __blkg_prfill_u64 -EXPORT_SYMBOL_GPL vmlinux 0xa00f547a ata_dev_pair +EXPORT_SYMBOL_GPL vmlinux 0x9ff4921f blk_mq_pci_map_queues +EXPORT_SYMBOL_GPL vmlinux 0xa00f4811 usb_anchor_urb +EXPORT_SYMBOL_GPL vmlinux 0xa0184b69 sata_pmp_port_ops EXPORT_SYMBOL_GPL vmlinux 0xa01a8d9b nd_cmd_bus_desc -EXPORT_SYMBOL_GPL vmlinux 0xa0245897 rio_dev_put -EXPORT_SYMBOL_GPL vmlinux 0xa02532a7 dev_pm_opp_of_get_sharing_cpus -EXPORT_SYMBOL_GPL vmlinux 0xa029da00 eventfd_ctx_fileget -EXPORT_SYMBOL_GPL vmlinux 0xa02cf198 usb_add_gadget_udc -EXPORT_SYMBOL_GPL vmlinux 0xa031e035 serial8250_do_set_mctrl +EXPORT_SYMBOL_GPL vmlinux 0xa0215fde usb_hcd_resume_root_hub +EXPORT_SYMBOL_GPL vmlinux 0xa040eb42 skb_partial_csum_set +EXPORT_SYMBOL_GPL vmlinux 0xa04c7ed9 sata_pmp_error_handler EXPORT_SYMBOL_GPL vmlinux 0xa04f945a cpus_read_lock -EXPORT_SYMBOL_GPL vmlinux 0xa0639c2f blk_update_request -EXPORT_SYMBOL_GPL vmlinux 0xa064757f devm_pm_opp_register_set_opp_helper -EXPORT_SYMBOL_GPL vmlinux 0xa06d8208 gpiod_get_raw_array_value -EXPORT_SYMBOL_GPL vmlinux 0xa07153d7 ata_dummy_port_ops -EXPORT_SYMBOL_GPL vmlinux 0xa096d70e gpiochip_irq_map -EXPORT_SYMBOL_GPL vmlinux 0xa0aaa9ec scsi_dh_attach -EXPORT_SYMBOL_GPL vmlinux 0xa0b24df3 pcie_update_link_speed -EXPORT_SYMBOL_GPL vmlinux 0xa0ca11e8 phy_configure -EXPORT_SYMBOL_GPL vmlinux 0xa0da686d meson_pmx_get_funcs_count +EXPORT_SYMBOL_GPL vmlinux 0xa05d9db2 irq_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0xa05f45f2 da9052_disable_irq_nosync +EXPORT_SYMBOL_GPL vmlinux 0xa073eaa7 sdhci_get_property +EXPORT_SYMBOL_GPL vmlinux 0xa07f045c mtd_pairing_info_to_wunit +EXPORT_SYMBOL_GPL vmlinux 0xa0abd76d snd_card_add_dev_attr +EXPORT_SYMBOL_GPL vmlinux 0xa0ae825d led_put +EXPORT_SYMBOL_GPL vmlinux 0xa0be0aea blkcg_print_blkgs +EXPORT_SYMBOL_GPL vmlinux 0xa0de40d6 ata_bmdma_port_start32 +EXPORT_SYMBOL_GPL vmlinux 0xa0e62dba cgroup_get_from_id EXPORT_SYMBOL_GPL vmlinux 0xa0eb0e5d kobj_sysfs_ops -EXPORT_SYMBOL_GPL vmlinux 0xa100dee2 bpf_trace_run1 -EXPORT_SYMBOL_GPL vmlinux 0xa109c5c4 ata_host_alloc -EXPORT_SYMBOL_GPL vmlinux 0xa11cd025 xfrm_output -EXPORT_SYMBOL_GPL vmlinux 0xa12e4f33 perf_pmu_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa12f8636 mbox_controller_register -EXPORT_SYMBOL_GPL vmlinux 0xa139686c serial8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0xa0eb73bc blk_queue_required_elevator_features +EXPORT_SYMBOL_GPL vmlinux 0xa0eea124 device_register +EXPORT_SYMBOL_GPL vmlinux 0xa0f9d1d5 snd_soc_lookup_component_nolocked +EXPORT_SYMBOL_GPL vmlinux 0xa10981d1 rdev_get_dev +EXPORT_SYMBOL_GPL vmlinux 0xa11b3893 metadata_dst_free +EXPORT_SYMBOL_GPL vmlinux 0xa123c047 pinctrl_utils_reserve_map +EXPORT_SYMBOL_GPL vmlinux 0xa13f96d1 xdp_attachment_setup +EXPORT_SYMBOL_GPL vmlinux 0xa148133f debugfs_lookup +EXPORT_SYMBOL_GPL vmlinux 0xa149df8e sdio_disable_func EXPORT_SYMBOL_GPL vmlinux 0xa14c792f __hrtimer_get_remaining -EXPORT_SYMBOL_GPL vmlinux 0xa154f20b mtk_pinconf_bias_get_rev1 -EXPORT_SYMBOL_GPL vmlinux 0xa15d3822 snd_soc_put_enum_double -EXPORT_SYMBOL_GPL vmlinux 0xa1624c27 sdhci_switch_external_dma -EXPORT_SYMBOL_GPL vmlinux 0xa16abe1a sysfs_remove_files -EXPORT_SYMBOL_GPL vmlinux 0xa16c2603 pinctrl_generic_remove_group -EXPORT_SYMBOL_GPL vmlinux 0xa1877b5a devm_devfreq_event_remove_edev -EXPORT_SYMBOL_GPL vmlinux 0xa18d8e60 blkg_conf_prep -EXPORT_SYMBOL_GPL vmlinux 0xa197d142 devm_platform_get_and_ioremap_resource -EXPORT_SYMBOL_GPL vmlinux 0xa1a19a57 scsi_queue_work -EXPORT_SYMBOL_GPL vmlinux 0xa1a53dd9 dev_pm_opp_find_freq_ceil -EXPORT_SYMBOL_GPL vmlinux 0xa1a6b01f bpf_prog_add -EXPORT_SYMBOL_GPL vmlinux 0xa1aca537 snd_soc_info_volsw -EXPORT_SYMBOL_GPL vmlinux 0xa1be8344 ata_bmdma_stop -EXPORT_SYMBOL_GPL vmlinux 0xa1c3854b icc_std_aggregate -EXPORT_SYMBOL_GPL vmlinux 0xa1d029f2 mptcp_pm_get_add_addr_accept_max -EXPORT_SYMBOL_GPL vmlinux 0xa1d5d0f9 security_path_link +EXPORT_SYMBOL_GPL vmlinux 0xa1521e78 pci_intx +EXPORT_SYMBOL_GPL vmlinux 0xa167f2aa tty_buffer_set_limit +EXPORT_SYMBOL_GPL vmlinux 0xa19ebab7 sock_diag_unregister_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0xa1b24839 usb_driver_release_interface +EXPORT_SYMBOL_GPL vmlinux 0xa1b66ccd pinctrl_generic_add_group +EXPORT_SYMBOL_GPL vmlinux 0xa1bf413f rio_add_mport_pw_handler +EXPORT_SYMBOL_GPL vmlinux 0xa1c521ea mptcp_pm_get_local_addr_max +EXPORT_SYMBOL_GPL vmlinux 0xa1c8ee97 regulator_get_voltage_rdev +EXPORT_SYMBOL_GPL vmlinux 0xa1c9dc86 uart_handle_dcd_change EXPORT_SYMBOL_GPL vmlinux 0xa1d8004a videomode_from_timing -EXPORT_SYMBOL_GPL vmlinux 0xa1e4ca43 extcon_dev_register -EXPORT_SYMBOL_GPL vmlinux 0xa1f03983 nd_blk_memremap_flags +EXPORT_SYMBOL_GPL vmlinux 0xa1d92bfc icc_disable +EXPORT_SYMBOL_GPL vmlinux 0xa1d9861e ahci_stop_engine +EXPORT_SYMBOL_GPL vmlinux 0xa1eb94ed nand_get_large_page_hamming_ooblayout +EXPORT_SYMBOL_GPL vmlinux 0xa1ef683c pm_clk_init +EXPORT_SYMBOL_GPL vmlinux 0xa1ef877e dma_buf_mmap EXPORT_SYMBOL_GPL vmlinux 0xa1f1bd3a arm_check_condition -EXPORT_SYMBOL_GPL vmlinux 0xa1f363ba nvdimm_has_flush -EXPORT_SYMBOL_GPL vmlinux 0xa202cfed tcp_leave_memory_pressure -EXPORT_SYMBOL_GPL vmlinux 0xa20530ec gpiod_get_array -EXPORT_SYMBOL_GPL vmlinux 0xa205db90 iomap_page_mkwrite +EXPORT_SYMBOL_GPL vmlinux 0xa1f8f52d devlink_dpipe_entry_ctx_close EXPORT_SYMBOL_GPL vmlinux 0xa20d01ba __trace_bprintk -EXPORT_SYMBOL_GPL vmlinux 0xa21322d2 nf_hook_entries_delete_raw -EXPORT_SYMBOL_GPL vmlinux 0xa21422e4 crypto_stats_rng_generate -EXPORT_SYMBOL_GPL vmlinux 0xa21ff880 gpiochip_irq_domain_activate -EXPORT_SYMBOL_GPL vmlinux 0xa2271dff sock_map_close -EXPORT_SYMBOL_GPL vmlinux 0xa22af5f8 tcp_ca_get_key_by_name +EXPORT_SYMBOL_GPL vmlinux 0xa2152186 fwnode_get_name +EXPORT_SYMBOL_GPL vmlinux 0xa220e092 pci_epc_unmap_addr +EXPORT_SYMBOL_GPL vmlinux 0xa223deba meson8_aobus_parse_dt_extra +EXPORT_SYMBOL_GPL vmlinux 0xa22a905b gpmc_omap_onenand_set_timings +EXPORT_SYMBOL_GPL vmlinux 0xa22e914b dbs_update +EXPORT_SYMBOL_GPL vmlinux 0xa23c0bb9 usb_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0xa242011b snd_soc_component_write_field +EXPORT_SYMBOL_GPL vmlinux 0xa244e9a0 vring_create_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0xa24d5a6c fat_time_fat2unix EXPORT_SYMBOL_GPL vmlinux 0xa2500ef6 __SCK__tp_func_powernv_throttle -EXPORT_SYMBOL_GPL vmlinux 0xa2623c38 platform_msi_domain_alloc_irqs -EXPORT_SYMBOL_GPL vmlinux 0xa2658728 scsi_eh_ready_devs EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested +EXPORT_SYMBOL_GPL vmlinux 0xa272ef1f devm_remove_action +EXPORT_SYMBOL_GPL vmlinux 0xa27cb7ee usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0xa281acc7 dev_pm_genpd_add_notifier EXPORT_SYMBOL_GPL vmlinux 0xa286a234 snd_pcm_format_name -EXPORT_SYMBOL_GPL vmlinux 0xa28b0700 crypto_register_aeads -EXPORT_SYMBOL_GPL vmlinux 0xa29cbe2b devlink_port_region_create -EXPORT_SYMBOL_GPL vmlinux 0xa2abd3ef crypto_enqueue_request +EXPORT_SYMBOL_GPL vmlinux 0xa2948013 devm_power_supply_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xa2973a00 pci_disable_rom +EXPORT_SYMBOL_GPL vmlinux 0xa298de8a fl6_merge_options EXPORT_SYMBOL_GPL vmlinux 0xa2b0820d __SCK__tp_func_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0xa2b08cfd crypto_alloc_shash +EXPORT_SYMBOL_GPL vmlinux 0xa2b37f40 of_phy_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0xa2b3ed60 sysfs_groups_change_owner +EXPORT_SYMBOL_GPL vmlinux 0xa2bd9fc9 ata_sas_tport_delete EXPORT_SYMBOL_GPL vmlinux 0xa2c31b2a proc_douintvec_minmax -EXPORT_SYMBOL_GPL vmlinux 0xa2cdc074 pci_epc_mem_init -EXPORT_SYMBOL_GPL vmlinux 0xa2d7deb3 __traceiter_xdp_bulk_tx EXPORT_SYMBOL_GPL vmlinux 0xa2e1b3ef trace_printk_init_buffers -EXPORT_SYMBOL_GPL vmlinux 0xa2eaf3c5 metadata_dst_free_percpu -EXPORT_SYMBOL_GPL vmlinux 0xa2f5b855 fuse_dev_release -EXPORT_SYMBOL_GPL vmlinux 0xa2fc8335 pci_epc_get_msix -EXPORT_SYMBOL_GPL vmlinux 0xa30479a5 kobject_uevent_env -EXPORT_SYMBOL_GPL vmlinux 0xa3098b09 snd_soc_jack_add_pins -EXPORT_SYMBOL_GPL vmlinux 0xa32880fc misc_cg_uncharge +EXPORT_SYMBOL_GPL vmlinux 0xa2e1d05b device_add_groups +EXPORT_SYMBOL_GPL vmlinux 0xa2e3548d tps6586x_writes +EXPORT_SYMBOL_GPL vmlinux 0xa2e7f990 gpiod_to_irq +EXPORT_SYMBOL_GPL vmlinux 0xa2f9cdc4 nanddev_ecc_engine_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xa2fbd3bc regulator_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0xa2ffab7f __traceiter_block_split EXPORT_SYMBOL_GPL vmlinux 0xa32f3d9e decode_rs16 -EXPORT_SYMBOL_GPL vmlinux 0xa32f8cbd device_change_owner -EXPORT_SYMBOL_GPL vmlinux 0xa331c0d8 ohci_resume EXPORT_SYMBOL_GPL vmlinux 0xa33744aa edac_stop_work +EXPORT_SYMBOL_GPL vmlinux 0xa342d07e trace_event_buffer_reserve +EXPORT_SYMBOL_GPL vmlinux 0xa3435fdd led_compose_name EXPORT_SYMBOL_GPL vmlinux 0xa346975c idr_remove EXPORT_SYMBOL_GPL vmlinux 0xa362bf8f hrtimer_init -EXPORT_SYMBOL_GPL vmlinux 0xa3688295 pci_load_saved_state -EXPORT_SYMBOL_GPL vmlinux 0xa36953c3 inet_unhash -EXPORT_SYMBOL_GPL vmlinux 0xa383b84f proc_create_net_data_write +EXPORT_SYMBOL_GPL vmlinux 0xa3634494 usb_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xa36860a4 snd_soc_component_compr_set_params +EXPORT_SYMBOL_GPL vmlinux 0xa372759b __traceiter_pelt_thermal_tp +EXPORT_SYMBOL_GPL vmlinux 0xa3800c3f crypto_register_shash EXPORT_SYMBOL_GPL vmlinux 0xa38602cd drain_workqueue EXPORT_SYMBOL_GPL vmlinux 0xa389a49a profile_event_register EXPORT_SYMBOL_GPL vmlinux 0xa38a9f71 get_itimerspec64 -EXPORT_SYMBOL_GPL vmlinux 0xa39dc8b9 devres_add +EXPORT_SYMBOL_GPL vmlinux 0xa3944f58 driver_find +EXPORT_SYMBOL_GPL vmlinux 0xa39b6a49 devfreq_cooling_em_register +EXPORT_SYMBOL_GPL vmlinux 0xa39e1610 nand_prog_page_op +EXPORT_SYMBOL_GPL vmlinux 0xa39e41b2 __traceiter_neigh_event_send_dead EXPORT_SYMBOL_GPL vmlinux 0xa3a04602 btree_geo64 -EXPORT_SYMBOL_GPL vmlinux 0xa3a0cc58 do_splice_from -EXPORT_SYMBOL_GPL vmlinux 0xa3a76090 sk_msg_zerocopy_from_iter -EXPORT_SYMBOL_GPL vmlinux 0xa3b18c7c led_stop_software_blink +EXPORT_SYMBOL_GPL vmlinux 0xa3b61bbc pm_runtime_set_autosuspend_delay +EXPORT_SYMBOL_GPL vmlinux 0xa3b81916 pci_hp_add_bridge EXPORT_SYMBOL_GPL vmlinux 0xa3b958ce reset_hung_task_detector -EXPORT_SYMBOL_GPL vmlinux 0xa3bd53f4 __traceiter_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0xa3bbe8cd sk_msg_is_readable +EXPORT_SYMBOL_GPL vmlinux 0xa3c063be virtqueue_detach_unused_buf EXPORT_SYMBOL_GPL vmlinux 0xa3c1db37 nf_hooks_lwtunnel_enabled -EXPORT_SYMBOL_GPL vmlinux 0xa3cb3e6b device_create_file -EXPORT_SYMBOL_GPL vmlinux 0xa3d1feca cpufreq_enable_fast_switch -EXPORT_SYMBOL_GPL vmlinux 0xa3df579f em_dev_register_perf_domain -EXPORT_SYMBOL_GPL vmlinux 0xa3e2cd4c __efivar_entry_delete -EXPORT_SYMBOL_GPL vmlinux 0xa3eef38e snd_ctl_disconnect_layer +EXPORT_SYMBOL_GPL vmlinux 0xa3cca46f genphy_c45_an_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0xa3cfb665 inet6_destroy_sock +EXPORT_SYMBOL_GPL vmlinux 0xa3d5cc93 dapm_regulator_event EXPORT_SYMBOL_GPL vmlinux 0xa3f12f69 __crypto_xor -EXPORT_SYMBOL_GPL vmlinux 0xa3f8245c sm501_unit_power -EXPORT_SYMBOL_GPL vmlinux 0xa400107f regulator_set_suspend_voltage +EXPORT_SYMBOL_GPL vmlinux 0xa3fab3e0 snd_soc_component_compr_copy EXPORT_SYMBOL_GPL vmlinux 0xa4031b7f sfp_parse_port +EXPORT_SYMBOL_GPL vmlinux 0xa40d66ba fat_alloc_new_dir EXPORT_SYMBOL_GPL vmlinux 0xa410a295 devlink_region_destroy +EXPORT_SYMBOL_GPL vmlinux 0xa41fdd4e devlink_port_attrs_pci_sf_set +EXPORT_SYMBOL_GPL vmlinux 0xa427b9d2 devlink_resources_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa430d033 __hwspin_lock_timeout EXPORT_SYMBOL_GPL vmlinux 0xa444c3ca topology_clear_scale_freq_source EXPORT_SYMBOL_GPL vmlinux 0xa44a1307 interval_tree_iter_first -EXPORT_SYMBOL_GPL vmlinux 0xa45445c1 blk_insert_cloned_request -EXPORT_SYMBOL_GPL vmlinux 0xa45a57c8 __regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0xa44dc901 pci_disable_pasid +EXPORT_SYMBOL_GPL vmlinux 0xa455abaf crypto_spawn_tfm +EXPORT_SYMBOL_GPL vmlinux 0xa4575ea4 screen_glyph EXPORT_SYMBOL_GPL vmlinux 0xa45c7b90 stack_trace_print EXPORT_SYMBOL_GPL vmlinux 0xa45dc275 trace_seq_putmem +EXPORT_SYMBOL_GPL vmlinux 0xa45f40a2 pci_bridge_secondary_bus_reset +EXPORT_SYMBOL_GPL vmlinux 0xa466eaa2 crypto_shash_finup EXPORT_SYMBOL_GPL vmlinux 0xa46f8631 kernel_read_file_from_path +EXPORT_SYMBOL_GPL vmlinux 0xa47aa6f0 cpts_release EXPORT_SYMBOL_GPL vmlinux 0xa48196c8 kdb_poll_idx -EXPORT_SYMBOL_GPL vmlinux 0xa498f8d2 usb_hcd_platform_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xa48c5f53 mmu_notifier_put +EXPORT_SYMBOL_GPL vmlinux 0xa49fe300 device_get_named_child_node +EXPORT_SYMBOL_GPL vmlinux 0xa4a6f124 do_take_over_console EXPORT_SYMBOL_GPL vmlinux 0xa4ab7c1c ring_buffer_overruns +EXPORT_SYMBOL_GPL vmlinux 0xa4add7f1 iommu_uapi_sva_bind_gpasid EXPORT_SYMBOL_GPL vmlinux 0xa4b07fe7 ring_buffer_change_overwrite EXPORT_SYMBOL_GPL vmlinux 0xa4c00324 asn1_encode_octet_string -EXPORT_SYMBOL_GPL vmlinux 0xa4c55a84 __traceiter_block_bio_remap EXPORT_SYMBOL_GPL vmlinux 0xa4cc19b3 irq_set_affinity_hint +EXPORT_SYMBOL_GPL vmlinux 0xa4cc3acc rtnl_link_unregister EXPORT_SYMBOL_GPL vmlinux 0xa4d275b9 __tracepoint_br_fdb_external_learn_add -EXPORT_SYMBOL_GPL vmlinux 0xa4da8693 snd_soc_dapm_nc_pin_unlocked EXPORT_SYMBOL_GPL vmlinux 0xa4dc79c3 blocking_notifier_call_chain_robust -EXPORT_SYMBOL_GPL vmlinux 0xa4f09819 dma_buf_end_cpu_access -EXPORT_SYMBOL_GPL vmlinux 0xa4f47193 register_trace_event +EXPORT_SYMBOL_GPL vmlinux 0xa4e54044 __traceiter_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0xa4e7cb62 pci_set_pcie_reset_state EXPORT_SYMBOL_GPL vmlinux 0xa4fab2ca inet_twsk_purge -EXPORT_SYMBOL_GPL vmlinux 0xa4ff4410 devm_gpio_request -EXPORT_SYMBOL_GPL vmlinux 0xa5048db9 tcp_get_syncookie_mss -EXPORT_SYMBOL_GPL vmlinux 0xa52a6878 devm_irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xa5053122 tpm_pm_resume EXPORT_SYMBOL_GPL vmlinux 0xa531471e clk_save_context -EXPORT_SYMBOL_GPL vmlinux 0xa53b2db6 kobject_uevent +EXPORT_SYMBOL_GPL vmlinux 0xa53341cb regulator_count_voltages +EXPORT_SYMBOL_GPL vmlinux 0xa53e9a6d power_supply_class EXPORT_SYMBOL_GPL vmlinux 0xa53f0dd7 tnum_strn -EXPORT_SYMBOL_GPL vmlinux 0xa55435ba devm_pinctrl_get -EXPORT_SYMBOL_GPL vmlinux 0xa55aa1ef of_clk_get_parent_name -EXPORT_SYMBOL_GPL vmlinux 0xa55cf85c of_pci_get_max_link_speed -EXPORT_SYMBOL_GPL vmlinux 0xa5709378 __vfs_removexattr_noperm -EXPORT_SYMBOL_GPL vmlinux 0xa572a4bf ata_slave_link_init -EXPORT_SYMBOL_GPL vmlinux 0xa573a4d1 device_move -EXPORT_SYMBOL_GPL vmlinux 0xa592081c blk_queue_can_use_dma_map_merging -EXPORT_SYMBOL_GPL vmlinux 0xa5996414 of_clk_hw_onecell_get -EXPORT_SYMBOL_GPL vmlinux 0xa5aae475 bsg_job_put -EXPORT_SYMBOL_GPL vmlinux 0xa5aaeec7 i2c_client_type -EXPORT_SYMBOL_GPL vmlinux 0xa5b71c45 security_kernel_post_read_file -EXPORT_SYMBOL_GPL vmlinux 0xa5c602f3 genphy_c45_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0xa54b11f1 mtd_lock +EXPORT_SYMBOL_GPL vmlinux 0xa560a58b paste_selection +EXPORT_SYMBOL_GPL vmlinux 0xa56257e6 __iptunnel_pull_header +EXPORT_SYMBOL_GPL vmlinux 0xa5638015 power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0xa5770606 ncsi_vlan_rx_kill_vid +EXPORT_SYMBOL_GPL vmlinux 0xa57ebc0f debugfs_create_u16 +EXPORT_SYMBOL_GPL vmlinux 0xa58abbea snd_soc_component_compr_get_params +EXPORT_SYMBOL_GPL vmlinux 0xa58bc3ef sched_set_fifo +EXPORT_SYMBOL_GPL vmlinux 0xa58eb70c pm_clk_add +EXPORT_SYMBOL_GPL vmlinux 0xa59cbd94 crypto_register_skciphers +EXPORT_SYMBOL_GPL vmlinux 0xa5b4dfc1 hvc_instantiate +EXPORT_SYMBOL_GPL vmlinux 0xa5d2fed7 crypto_unregister_shash EXPORT_SYMBOL_GPL vmlinux 0xa5d72a8f cpuidle_enable_device EXPORT_SYMBOL_GPL vmlinux 0xa5d7c388 pstore_type_to_name -EXPORT_SYMBOL_GPL vmlinux 0xa5e8bfad rio_register_scan +EXPORT_SYMBOL_GPL vmlinux 0xa5e1597e pinctrl_register_and_init +EXPORT_SYMBOL_GPL vmlinux 0xa5e8ec66 sfp_bus_find_fwnode EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full -EXPORT_SYMBOL_GPL vmlinux 0xa5f594c6 devm_pci_epc_destroy -EXPORT_SYMBOL_GPL vmlinux 0xa6113f0a iomap_writepages -EXPORT_SYMBOL_GPL vmlinux 0xa611d19b pinctrl_get_group_pins -EXPORT_SYMBOL_GPL vmlinux 0xa62bafe4 input_ff_erase -EXPORT_SYMBOL_GPL vmlinux 0xa63ba023 pci_device_is_present -EXPORT_SYMBOL_GPL vmlinux 0xa63c8933 edac_device_handle_ue_count -EXPORT_SYMBOL_GPL vmlinux 0xa674feeb regcache_cache_only -EXPORT_SYMBOL_GPL vmlinux 0xa6794c20 kernfs_get +EXPORT_SYMBOL_GPL vmlinux 0xa5fa1788 component_master_add_with_match +EXPORT_SYMBOL_GPL vmlinux 0xa600bdae blk_queue_max_zone_append_sectors +EXPORT_SYMBOL_GPL vmlinux 0xa6081565 ata_pci_sff_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0xa60f44a7 of_reserved_mem_device_release +EXPORT_SYMBOL_GPL vmlinux 0xa617d7c6 dev_pm_opp_of_remove_table +EXPORT_SYMBOL_GPL vmlinux 0xa627c96e pinmux_generic_add_function +EXPORT_SYMBOL_GPL vmlinux 0xa62abfc2 iommu_get_domain_for_dev +EXPORT_SYMBOL_GPL vmlinux 0xa6309000 usb_hc_died +EXPORT_SYMBOL_GPL vmlinux 0xa657d38c __traceiter_br_fdb_update +EXPORT_SYMBOL_GPL vmlinux 0xa6654470 pm_clk_suspend +EXPORT_SYMBOL_GPL vmlinux 0xa66bc3db crypto_remove_spawns +EXPORT_SYMBOL_GPL vmlinux 0xa66c566a dt_init_idle_driver +EXPORT_SYMBOL_GPL vmlinux 0xa673960e pm_generic_suspend +EXPORT_SYMBOL_GPL vmlinux 0xa67c872a regulator_unregister_notifier EXPORT_SYMBOL_GPL vmlinux 0xa682da73 proc_dou8vec_minmax -EXPORT_SYMBOL_GPL vmlinux 0xa68d8c14 clk_register -EXPORT_SYMBOL_GPL vmlinux 0xa69d7824 phy_modify +EXPORT_SYMBOL_GPL vmlinux 0xa6842c85 usb_reset_configuration +EXPORT_SYMBOL_GPL vmlinux 0xa695abc5 subsys_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0xa695d479 crypto_unregister_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xa69f3465 smpboot_register_percpu_thread EXPORT_SYMBOL_GPL vmlinux 0xa6a088b7 fscrypt_match_name -EXPORT_SYMBOL_GPL vmlinux 0xa6a8b4b3 security_path_rmdir +EXPORT_SYMBOL_GPL vmlinux 0xa6a202f2 tty_get_icount EXPORT_SYMBOL_GPL vmlinux 0xa6af1e35 __SCK__tp_func_block_rq_remap EXPORT_SYMBOL_GPL vmlinux 0xa6b21ef2 dpm_suspend_end EXPORT_SYMBOL_GPL vmlinux 0xa6b5ee5b __SCK__tp_func_block_split -EXPORT_SYMBOL_GPL vmlinux 0xa6be220f clk_hw_get_rate -EXPORT_SYMBOL_GPL vmlinux 0xa6c42ca1 irq_gc_mask_set_bit -EXPORT_SYMBOL_GPL vmlinux 0xa6d4ce36 virtqueue_get_avail_addr -EXPORT_SYMBOL_GPL vmlinux 0xa6d941ca pinctrl_generic_get_group_count +EXPORT_SYMBOL_GPL vmlinux 0xa6c2d2b4 task_active_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xa6c749dd dev_pm_set_dedicated_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xa6d1e992 regulator_set_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xa6df11b5 fuse_file_poll EXPORT_SYMBOL_GPL vmlinux 0xa6e1a69d kick_all_cpus_sync -EXPORT_SYMBOL_GPL vmlinux 0xa6e35805 sched_trace_rq_nr_running -EXPORT_SYMBOL_GPL vmlinux 0xa6e4073d i2c_recover_bus -EXPORT_SYMBOL_GPL vmlinux 0xa6efb2ca hwspin_lock_request -EXPORT_SYMBOL_GPL vmlinux 0xa6f8481f tty_set_termios +EXPORT_SYMBOL_GPL vmlinux 0xa6e290c3 lwtunnel_output +EXPORT_SYMBOL_GPL vmlinux 0xa6e52376 bpf_prog_inc +EXPORT_SYMBOL_GPL vmlinux 0xa6e5f2bd icc_put +EXPORT_SYMBOL_GPL vmlinux 0xa6ebb36c __kthread_init_worker +EXPORT_SYMBOL_GPL vmlinux 0xa6efd0d5 serial8250_em485_config EXPORT_SYMBOL_GPL vmlinux 0xa700eb02 unregister_kprobes -EXPORT_SYMBOL_GPL vmlinux 0xa70498c3 sata_sff_hardreset EXPORT_SYMBOL_GPL vmlinux 0xa709c835 fib6_info_destroy_rcu -EXPORT_SYMBOL_GPL vmlinux 0xa7487a59 snd_soc_add_component -EXPORT_SYMBOL_GPL vmlinux 0xa74a401d of_platform_populate -EXPORT_SYMBOL_GPL vmlinux 0xa753fcca devm_clk_register -EXPORT_SYMBOL_GPL vmlinux 0xa75d5c6e of_detach_node -EXPORT_SYMBOL_GPL vmlinux 0xa764fc86 posix_acl_default_xattr_handler -EXPORT_SYMBOL_GPL vmlinux 0xa7659e5e strp_unpause +EXPORT_SYMBOL_GPL vmlinux 0xa7128c03 ata_host_resume +EXPORT_SYMBOL_GPL vmlinux 0xa71b7a92 __bio_add_page +EXPORT_SYMBOL_GPL vmlinux 0xa71d5a20 kernel_kobj +EXPORT_SYMBOL_GPL vmlinux 0xa7288c28 metadata_dst_free_percpu +EXPORT_SYMBOL_GPL vmlinux 0xa72bac8d sdhci_pltfm_register +EXPORT_SYMBOL_GPL vmlinux 0xa73e50a7 ata_cable_40wire +EXPORT_SYMBOL_GPL vmlinux 0xa74c6c60 mtk_eint_do_init +EXPORT_SYMBOL_GPL vmlinux 0xa759de2d mtd_write_oob +EXPORT_SYMBOL_GPL vmlinux 0xa7672c3d fixed_phy_change_carrier +EXPORT_SYMBOL_GPL vmlinux 0xa771e488 regmap_field_update_bits_base EXPORT_SYMBOL_GPL vmlinux 0xa7802e2e btree_grim_visitor -EXPORT_SYMBOL_GPL vmlinux 0xa789f82f irq_domain_xlate_onetwocell -EXPORT_SYMBOL_GPL vmlinux 0xa790c87d clk_hw_get_flags -EXPORT_SYMBOL_GPL vmlinux 0xa794fcaa tracing_snapshot_cond +EXPORT_SYMBOL_GPL vmlinux 0xa782019c usb_gadget_map_request +EXPORT_SYMBOL_GPL vmlinux 0xa78a5a11 nand_status_op EXPORT_SYMBOL_GPL vmlinux 0xa7aaafde klist_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0xa7ad0da4 snd_ctl_get_preferred_subdevice -EXPORT_SYMBOL_GPL vmlinux 0xa7bb3d5b wm8350_reg_unlock -EXPORT_SYMBOL_GPL vmlinux 0xa7c13d30 umd_cleanup_helper +EXPORT_SYMBOL_GPL vmlinux 0xa7b6a248 dev_pm_qos_hide_flags +EXPORT_SYMBOL_GPL vmlinux 0xa7bbc1c8 fib4_rule_default +EXPORT_SYMBOL_GPL vmlinux 0xa7c9f0a0 pm_genpd_opp_to_performance_state EXPORT_SYMBOL_GPL vmlinux 0xa7cba284 housekeeping_any_cpu -EXPORT_SYMBOL_GPL vmlinux 0xa7f30fe1 snd_soc_tplg_widget_bind_event -EXPORT_SYMBOL_GPL vmlinux 0xa7f6519f __traceiter_block_rq_remap -EXPORT_SYMBOL_GPL vmlinux 0xa827dba6 regulator_bulk_set_supply_names -EXPORT_SYMBOL_GPL vmlinux 0xa82b890c crypto_unregister_skciphers -EXPORT_SYMBOL_GPL vmlinux 0xa82ccf35 snd_soc_bytes_tlv_callback -EXPORT_SYMBOL_GPL vmlinux 0xa830160a __traceiter_attach_device_to_domain -EXPORT_SYMBOL_GPL vmlinux 0xa831b450 phy_validate -EXPORT_SYMBOL_GPL vmlinux 0xa836e035 gpiod_set_debounce +EXPORT_SYMBOL_GPL vmlinux 0xa7daada5 ata_host_alloc +EXPORT_SYMBOL_GPL vmlinux 0xa7dc8681 snd_soc_info_xr_sx +EXPORT_SYMBOL_GPL vmlinux 0xa7e7c1e8 nf_queue_entry_free +EXPORT_SYMBOL_GPL vmlinux 0xa7ef7d41 device_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0xa7f3d3c2 of_property_count_elems_of_size +EXPORT_SYMBOL_GPL vmlinux 0xa7f41748 devm_add_action +EXPORT_SYMBOL_GPL vmlinux 0xa7f6b59e ata_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xa7ffd74d ata_sas_port_alloc +EXPORT_SYMBOL_GPL vmlinux 0xa81bfb49 vp_modern_get_driver_features +EXPORT_SYMBOL_GPL vmlinux 0xa8240ebf firmware_request_platform +EXPORT_SYMBOL_GPL vmlinux 0xa8417bf5 pci_epc_stop EXPORT_SYMBOL_GPL vmlinux 0xa8433f6b of_get_display_timing -EXPORT_SYMBOL_GPL vmlinux 0xa84b846e regulator_sync_voltage +EXPORT_SYMBOL_GPL vmlinux 0xa8436da1 crypto_register_akcipher EXPORT_SYMBOL_GPL vmlinux 0xa84d4e8f __tracepoint_sched_util_est_cfs_tp EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xa85240f5 usb_match_id -EXPORT_SYMBOL_GPL vmlinux 0xa86c91e5 regmap_fields_update_bits_base -EXPORT_SYMBOL_GPL vmlinux 0xa87ae702 xhci_dbg_trace -EXPORT_SYMBOL_GPL vmlinux 0xa87bbe62 sysfs_rename_link_ns -EXPORT_SYMBOL_GPL vmlinux 0xa87cdb9c pskb_put +EXPORT_SYMBOL_GPL vmlinux 0xa8521905 fsnotify +EXPORT_SYMBOL_GPL vmlinux 0xa8633518 snd_soc_set_ac97_ops_of_reset +EXPORT_SYMBOL_GPL vmlinux 0xa87495ef __fscrypt_encrypt_symlink +EXPORT_SYMBOL_GPL vmlinux 0xa87a4a8d of_genpd_add_subdomain EXPORT_SYMBOL_GPL vmlinux 0xa87f7aec sbitmap_any_bit_set -EXPORT_SYMBOL_GPL vmlinux 0xa88633b0 fat_sync_inode -EXPORT_SYMBOL_GPL vmlinux 0xa8993c69 ata_std_postreset -EXPORT_SYMBOL_GPL vmlinux 0xa8b15b74 crypto_shash_setkey -EXPORT_SYMBOL_GPL vmlinux 0xa8bdd938 rio_release_inb_dbell -EXPORT_SYMBOL_GPL vmlinux 0xa8cec47b dev_pm_opp_sync_regulators -EXPORT_SYMBOL_GPL vmlinux 0xa8e34c70 dma_request_chan +EXPORT_SYMBOL_GPL vmlinux 0xa885ecaa regulator_put +EXPORT_SYMBOL_GPL vmlinux 0xa894cc8e perf_event_enable +EXPORT_SYMBOL_GPL vmlinux 0xa8b115e8 pm_runtime_suspended_time +EXPORT_SYMBOL_GPL vmlinux 0xa8b7e85d ahci_platform_suspend +EXPORT_SYMBOL_GPL vmlinux 0xa8c03de1 unregister_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0xa8d28787 usb_autopm_put_interface_async +EXPORT_SYMBOL_GPL vmlinux 0xa8ed421d nvdimm_security_setup_events +EXPORT_SYMBOL_GPL vmlinux 0xa8f68bc0 fat_getattr +EXPORT_SYMBOL_GPL vmlinux 0xa9018057 extcon_get_extcon_dev EXPORT_SYMBOL_GPL vmlinux 0xa909811a badrange_forget -EXPORT_SYMBOL_GPL vmlinux 0xa9100377 snd_soc_jack_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0xa926ceb6 page_cache_sync_ra EXPORT_SYMBOL_GPL vmlinux 0xa92b7803 power_supply_notifier EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds -EXPORT_SYMBOL_GPL vmlinux 0xa94620e3 snd_soc_component_write_field -EXPORT_SYMBOL_GPL vmlinux 0xa94ba40c of_alias_get_id -EXPORT_SYMBOL_GPL vmlinux 0xa9585ff7 i2c_adapter_type -EXPORT_SYMBOL_GPL vmlinux 0xa977ec58 sysfs_update_groups -EXPORT_SYMBOL_GPL vmlinux 0xa9885868 regulator_disable_deferred +EXPORT_SYMBOL_GPL vmlinux 0xa94da3af usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0xa9637c0a inet_csk_route_req +EXPORT_SYMBOL_GPL vmlinux 0xa9789ab9 rio_dma_prep_slave_sg EXPORT_SYMBOL_GPL vmlinux 0xa9951a52 clk_regmap_mux_ops EXPORT_SYMBOL_GPL vmlinux 0xa99b8e70 __SCK__tp_func_xdp_exception EXPORT_SYMBOL_GPL vmlinux 0xa99ef899 devlink_fmsg_bool_pair_put -EXPORT_SYMBOL_GPL vmlinux 0xa9b0e19c __pm_relax -EXPORT_SYMBOL_GPL vmlinux 0xa9b66021 devm_gpiod_get_index -EXPORT_SYMBOL_GPL vmlinux 0xa9b9feb9 nvdimm_name -EXPORT_SYMBOL_GPL vmlinux 0xa9c00c04 dm_get_queue_limits -EXPORT_SYMBOL_GPL vmlinux 0xa9dd3956 blk_mq_alloc_request_hctx -EXPORT_SYMBOL_GPL vmlinux 0xa9dff2de of_irq_parse_raw +EXPORT_SYMBOL_GPL vmlinux 0xa9b0f339 pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0xa9d418f0 __pm_runtime_set_status EXPORT_SYMBOL_GPL vmlinux 0xa9e05660 io_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xa9e13e88 devm_bitmap_zalloc +EXPORT_SYMBOL_GPL vmlinux 0xa9e14a98 ata_sff_pause EXPORT_SYMBOL_GPL vmlinux 0xa9e18049 task_handoff_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa9e71b9c mptcp_get_reset_option +EXPORT_SYMBOL_GPL vmlinux 0xa9e2b281 noop_direct_IO +EXPORT_SYMBOL_GPL vmlinux 0xa9e38b90 skb_mpls_push EXPORT_SYMBOL_GPL vmlinux 0xa9e74462 usb_ep_alloc_request EXPORT_SYMBOL_GPL vmlinux 0xa9eaeb17 __tracepoint_block_bio_complete -EXPORT_SYMBOL_GPL vmlinux 0xa9f83e31 of_device_modalias -EXPORT_SYMBOL_GPL vmlinux 0xaa014fe6 d_exchange -EXPORT_SYMBOL_GPL vmlinux 0xaa0550df ata_eh_freeze_port +EXPORT_SYMBOL_GPL vmlinux 0xaa083798 crypto_register_ahashes +EXPORT_SYMBOL_GPL vmlinux 0xaa0e415b regmap_get_val_bytes EXPORT_SYMBOL_GPL vmlinux 0xaa152108 hrtimer_active -EXPORT_SYMBOL_GPL vmlinux 0xaa1a89de pinctrl_utils_add_map_mux -EXPORT_SYMBOL_GPL vmlinux 0xaa1d91b6 security_kernel_read_file -EXPORT_SYMBOL_GPL vmlinux 0xaa21f5f5 ata_bmdma_port_intr +EXPORT_SYMBOL_GPL vmlinux 0xaa17a0d0 spi_mem_poll_status +EXPORT_SYMBOL_GPL vmlinux 0xaa212179 scsi_host_block EXPORT_SYMBOL_GPL vmlinux 0xaa230f88 perf_unregister_guest_info_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xaa2a1546 lwtunnel_fill_encap EXPORT_SYMBOL_GPL vmlinux 0xaa2a72bf __iowrite64_copy -EXPORT_SYMBOL_GPL vmlinux 0xaa319cd9 mmu_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xaa30f585 fuse_dev_operations +EXPORT_SYMBOL_GPL vmlinux 0xaa37dce7 ata_sff_thaw +EXPORT_SYMBOL_GPL vmlinux 0xaa3d02b7 nand_gpio_waitrdy EXPORT_SYMBOL_GPL vmlinux 0xaa44acff omap_tll_disable -EXPORT_SYMBOL_GPL vmlinux 0xaa633bb9 mtk_eint_do_init -EXPORT_SYMBOL_GPL vmlinux 0xaa64feb9 inet6_destroy_sock -EXPORT_SYMBOL_GPL vmlinux 0xaa66ac21 fuse_do_open -EXPORT_SYMBOL_GPL vmlinux 0xaa67cbd6 dm_internal_resume +EXPORT_SYMBOL_GPL vmlinux 0xaa4bb987 phy_led_triggers_unregister +EXPORT_SYMBOL_GPL vmlinux 0xaa5ceb22 pingv6_ops +EXPORT_SYMBOL_GPL vmlinux 0xaa781c99 fscrypt_prepare_symlink +EXPORT_SYMBOL_GPL vmlinux 0xaa854000 crypto_register_scomp EXPORT_SYMBOL_GPL vmlinux 0xaa88ba94 seq_buf_printf -EXPORT_SYMBOL_GPL vmlinux 0xaa9370bf paste_selection +EXPORT_SYMBOL_GPL vmlinux 0xaa8a4aeb key_set_timeout +EXPORT_SYMBOL_GPL vmlinux 0xaa960a05 usb_gadget_deactivate EXPORT_SYMBOL_GPL vmlinux 0xaa996bf7 __tracepoint_xhci_dbg_quirks -EXPORT_SYMBOL_GPL vmlinux 0xaaa37a2e l3mdev_master_upper_ifindex_by_index_rcu +EXPORT_SYMBOL_GPL vmlinux 0xaa9dd53b dma_free_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0xaa9df169 rio_mport_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0xaaa39aed mmc_pwrseq_unregister EXPORT_SYMBOL_GPL vmlinux 0xaaa5980a user_preparse -EXPORT_SYMBOL_GPL vmlinux 0xaaa5e885 int_active_memcg EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump -EXPORT_SYMBOL_GPL vmlinux 0xaaceade2 dst_cache_get -EXPORT_SYMBOL_GPL vmlinux 0xaae570bf hwspin_lock_free +EXPORT_SYMBOL_GPL vmlinux 0xaaa9ffd1 driver_register +EXPORT_SYMBOL_GPL vmlinux 0xaaacbf6c __phy_modify_mmd +EXPORT_SYMBOL_GPL vmlinux 0xaab04c7a sched_set_normal +EXPORT_SYMBOL_GPL vmlinux 0xaab6cd01 fwnode_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0xaab7ab2e tpm2_get_tpm_pt +EXPORT_SYMBOL_GPL vmlinux 0xaabe9d65 usb_string +EXPORT_SYMBOL_GPL vmlinux 0xaac83924 transport_destroy_device +EXPORT_SYMBOL_GPL vmlinux 0xaada1f36 of_modalias_node EXPORT_SYMBOL_GPL vmlinux 0xaaecf75d perf_trace_buf_alloc -EXPORT_SYMBOL_GPL vmlinux 0xaaf6a7ae inet_ehash_nolisten -EXPORT_SYMBOL_GPL vmlinux 0xab08bcf6 rtc_class_open -EXPORT_SYMBOL_GPL vmlinux 0xab17b1a3 phy_modify_mmd_changed -EXPORT_SYMBOL_GPL vmlinux 0xab19127b netlink_remove_tap -EXPORT_SYMBOL_GPL vmlinux 0xab1c3ce0 fwnode_property_present -EXPORT_SYMBOL_GPL vmlinux 0xab1cbd94 pci_epc_map_addr -EXPORT_SYMBOL_GPL vmlinux 0xab1d7437 skcipher_walk_aead_decrypt -EXPORT_SYMBOL_GPL vmlinux 0xab4b7bfd of_property_read_variable_u16_array +EXPORT_SYMBOL_GPL vmlinux 0xaaf2f9e2 power_supply_set_input_current_limit_from_supplier +EXPORT_SYMBOL_GPL vmlinux 0xab192802 meson_pmx_get_func_name +EXPORT_SYMBOL_GPL vmlinux 0xab1d0c49 dw_pcie_host_deinit +EXPORT_SYMBOL_GPL vmlinux 0xab202857 rio_add_net +EXPORT_SYMBOL_GPL vmlinux 0xab21af99 clockevents_unbind_device EXPORT_SYMBOL_GPL vmlinux 0xab4f4b32 bprintf -EXPORT_SYMBOL_GPL vmlinux 0xab514a4b cpufreq_cpu_get +EXPORT_SYMBOL_GPL vmlinux 0xab607812 devm_devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0xab67ef36 devm_gpiod_get_from_of_node +EXPORT_SYMBOL_GPL vmlinux 0xab6ce869 dev_pm_opp_of_get_opp_desc_node +EXPORT_SYMBOL_GPL vmlinux 0xab72b7fc iterate_mounts +EXPORT_SYMBOL_GPL vmlinux 0xab752628 nand_prog_page_begin_op EXPORT_SYMBOL_GPL vmlinux 0xab7f853d mtk_mutex_prepare -EXPORT_SYMBOL_GPL vmlinux 0xab861b63 blk_revalidate_disk_zones +EXPORT_SYMBOL_GPL vmlinux 0xab836c49 bus_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xab848173 thermal_zone_of_sensor_register EXPORT_SYMBOL_GPL vmlinux 0xab8bc1a2 snd_pcm_rate_mask_intersect -EXPORT_SYMBOL_GPL vmlinux 0xab8cfd4d lwtunnel_get_encap_size -EXPORT_SYMBOL_GPL vmlinux 0xab926a78 __ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0xab8c5b6a xdp_do_redirect +EXPORT_SYMBOL_GPL vmlinux 0xab9935e7 udp4_lib_lookup EXPORT_SYMBOL_GPL vmlinux 0xab9bd884 perf_register_guest_info_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xaba04198 clk_register_hisi_phase -EXPORT_SYMBOL_GPL vmlinux 0xaba1e22e rdev_get_id -EXPORT_SYMBOL_GPL vmlinux 0xabbf95f0 pm_generic_thaw_noirq -EXPORT_SYMBOL_GPL vmlinux 0xabc5971b attribute_container_unregister +EXPORT_SYMBOL_GPL vmlinux 0xabad1766 pci_iov_virtfn_devfn +EXPORT_SYMBOL_GPL vmlinux 0xabb00eb8 pci_aer_clear_nonfatal_status EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate EXPORT_SYMBOL_GPL vmlinux 0xabcda29e leds_list_lock +EXPORT_SYMBOL_GPL vmlinux 0xabd06ef7 serdev_device_write +EXPORT_SYMBOL_GPL vmlinux 0xabe9b0f0 snd_soc_suspend EXPORT_SYMBOL_GPL vmlinux 0xabef34ee __tracepoint_br_fdb_add -EXPORT_SYMBOL_GPL vmlinux 0xabefa784 of_clk_get_parent_count -EXPORT_SYMBOL_GPL vmlinux 0xabf6b1d4 bpf_prog_put -EXPORT_SYMBOL_GPL vmlinux 0xabfa4596 fsverity_file_open -EXPORT_SYMBOL_GPL vmlinux 0xac1420f1 devm_extcon_dev_unregister -EXPORT_SYMBOL_GPL vmlinux 0xac1cff94 ethtool_set_ethtool_phy_ops -EXPORT_SYMBOL_GPL vmlinux 0xac31554f dma_get_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0xac324d46 mtk_pinconf_bias_set_rev1 -EXPORT_SYMBOL_GPL vmlinux 0xac35f50e fwnode_usb_role_switch_get -EXPORT_SYMBOL_GPL vmlinux 0xac3d50f8 ata_link_abort -EXPORT_SYMBOL_GPL vmlinux 0xac581f3d pci_user_write_config_byte -EXPORT_SYMBOL_GPL vmlinux 0xac61dac6 mtk_eint_do_resume -EXPORT_SYMBOL_GPL vmlinux 0xac6b8c42 of_pci_range_parser_init -EXPORT_SYMBOL_GPL vmlinux 0xac7c3c9b gpiochip_line_is_persistent -EXPORT_SYMBOL_GPL vmlinux 0xac8c1af4 gpiod_direction_output_raw -EXPORT_SYMBOL_GPL vmlinux 0xacafa4f3 rockchip_clk_of_add_provider +EXPORT_SYMBOL_GPL vmlinux 0xabf710a5 tpm_chip_start +EXPORT_SYMBOL_GPL vmlinux 0xac0759d4 meson_pmx_get_groups +EXPORT_SYMBOL_GPL vmlinux 0xac19d25a usb_store_new_id +EXPORT_SYMBOL_GPL vmlinux 0xac1a312b devm_platform_ioremap_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0xac3fadd9 edac_mc_alloc +EXPORT_SYMBOL_GPL vmlinux 0xac47340d __kernel_write +EXPORT_SYMBOL_GPL vmlinux 0xac476cb5 snd_soc_bytes_info_ext +EXPORT_SYMBOL_GPL vmlinux 0xac4b1952 irq_domain_create_legacy +EXPORT_SYMBOL_GPL vmlinux 0xac4def16 pci_bus_max_busnr +EXPORT_SYMBOL_GPL vmlinux 0xac52a658 __traceiter_tcp_bad_csum +EXPORT_SYMBOL_GPL vmlinux 0xac53ffb2 fwnode_get_next_parent +EXPORT_SYMBOL_GPL vmlinux 0xac695118 thermal_zone_device_update +EXPORT_SYMBOL_GPL vmlinux 0xac71b7b1 devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0xac78b9e4 regulator_bulk_set_supply_names +EXPORT_SYMBOL_GPL vmlinux 0xac7f2043 sysfs_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xac7fb3d1 usb_put_hcd +EXPORT_SYMBOL_GPL vmlinux 0xac83cc31 snd_soc_jack_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xac85811b da9052_free_irq +EXPORT_SYMBOL_GPL vmlinux 0xac85dea3 device_match_of_node +EXPORT_SYMBOL_GPL vmlinux 0xac980671 mtk_pinconf_adv_drive_set +EXPORT_SYMBOL_GPL vmlinux 0xac9bec26 fsl8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0xaca15524 serial8250_tx_chars +EXPORT_SYMBOL_GPL vmlinux 0xacb133c2 umd_unload_blob +EXPORT_SYMBOL_GPL vmlinux 0xacb349f1 dev_pm_opp_of_add_table_noclk EXPORT_SYMBOL_GPL vmlinux 0xacb4d88c clk_rate_exclusive_put -EXPORT_SYMBOL_GPL vmlinux 0xacbf980a watchdog_set_restart_priority -EXPORT_SYMBOL_GPL vmlinux 0xacc9dd03 dst_cache_set_ip4 -EXPORT_SYMBOL_GPL vmlinux 0xaccb0389 yield_to -EXPORT_SYMBOL_GPL vmlinux 0xaccc65e5 crypto_req_done -EXPORT_SYMBOL_GPL vmlinux 0xad00d59a wakeup_source_unregister -EXPORT_SYMBOL_GPL vmlinux 0xad0e81b3 devm_regulator_register -EXPORT_SYMBOL_GPL vmlinux 0xad102a15 fl6_merge_options -EXPORT_SYMBOL_GPL vmlinux 0xad169737 mtk_eint_find_irq -EXPORT_SYMBOL_GPL vmlinux 0xad2a19a6 cn_add_callback -EXPORT_SYMBOL_GPL vmlinux 0xad35d2cf iommu_unmap_fast +EXPORT_SYMBOL_GPL vmlinux 0xacb64cc0 gpiod_toggle_active_low +EXPORT_SYMBOL_GPL vmlinux 0xace0ccee irq_chip_get_parent_state +EXPORT_SYMBOL_GPL vmlinux 0xacfd27c2 pinctrl_force_sleep +EXPORT_SYMBOL_GPL vmlinux 0xacfdcaed of_clk_add_hw_provider +EXPORT_SYMBOL_GPL vmlinux 0xad054eb1 iptunnel_metadata_reply +EXPORT_SYMBOL_GPL vmlinux 0xad13052a devlink_rate_nodes_destroy +EXPORT_SYMBOL_GPL vmlinux 0xad15957e pm_runtime_set_memalloc_noio +EXPORT_SYMBOL_GPL vmlinux 0xad24106d syscon_regmap_lookup_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xad2e4cab udp4_hwcsum +EXPORT_SYMBOL_GPL vmlinux 0xad2f892e rio_mport_write_config_8 EXPORT_SYMBOL_GPL vmlinux 0xad42dff8 __SCK__tp_func_tcp_bad_csum -EXPORT_SYMBOL_GPL vmlinux 0xad482255 pm_generic_poweroff_late -EXPORT_SYMBOL_GPL vmlinux 0xad4a61d6 rio_request_outb_dbell EXPORT_SYMBOL_GPL vmlinux 0xad4e6259 remove_cpu EXPORT_SYMBOL_GPL vmlinux 0xad5737fc efivar_init -EXPORT_SYMBOL_GPL vmlinux 0xad578d41 vp_modern_remove +EXPORT_SYMBOL_GPL vmlinux 0xad63cddd fwnode_device_is_available EXPORT_SYMBOL_GPL vmlinux 0xad645234 register_switchdev_notifier -EXPORT_SYMBOL_GPL vmlinux 0xad6e8abd get_cpu_device -EXPORT_SYMBOL_GPL vmlinux 0xad71682f serdev_device_set_baudrate +EXPORT_SYMBOL_GPL vmlinux 0xad6b85b5 ata_qc_complete_multiple EXPORT_SYMBOL_GPL vmlinux 0xad76a3f0 __SCK__tp_func_neigh_update_done -EXPORT_SYMBOL_GPL vmlinux 0xad7857d8 regmap_write +EXPORT_SYMBOL_GPL vmlinux 0xad76c4b6 devlink_param_publish +EXPORT_SYMBOL_GPL vmlinux 0xad854f6d regulator_get_mode +EXPORT_SYMBOL_GPL vmlinux 0xad9601d5 __traceiter_remove_device_from_group EXPORT_SYMBOL_GPL vmlinux 0xad967d72 sbitmap_prepare_to_wait EXPORT_SYMBOL_GPL vmlinux 0xada38766 dst_cache_destroy -EXPORT_SYMBOL_GPL vmlinux 0xadbdc73e led_trigger_set_default -EXPORT_SYMBOL_GPL vmlinux 0xadc8e5c5 add_page_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0xadcca1d3 usb_gadget_clear_selfpowered -EXPORT_SYMBOL_GPL vmlinux 0xadce2b91 cpufreq_dbs_governor_exit -EXPORT_SYMBOL_GPL vmlinux 0xadd92581 ata_bmdma_start -EXPORT_SYMBOL_GPL vmlinux 0xadda0c26 phy_set_speed -EXPORT_SYMBOL_GPL vmlinux 0xadded586 tpm_chip_register -EXPORT_SYMBOL_GPL vmlinux 0xade15598 md_find_rdev_rcu +EXPORT_SYMBOL_GPL vmlinux 0xadb11a16 br_fdb_test_addr_hook +EXPORT_SYMBOL_GPL vmlinux 0xadc5bb2b dw_pcie_setup_rc EXPORT_SYMBOL_GPL vmlinux 0xade3e56c musb_writew -EXPORT_SYMBOL_GPL vmlinux 0xade5fa0a usb_of_get_companion_dev -EXPORT_SYMBOL_GPL vmlinux 0xadec6c02 __irq_set_handler -EXPORT_SYMBOL_GPL vmlinux 0xae23484b platform_device_add_resources +EXPORT_SYMBOL_GPL vmlinux 0xade58877 get_task_pid +EXPORT_SYMBOL_GPL vmlinux 0xae0d9941 usb_put_intf +EXPORT_SYMBOL_GPL vmlinux 0xae1bc79b blk_clear_pm_only EXPORT_SYMBOL_GPL vmlinux 0xae24eda1 kvm_arch_ptp_get_crosststamp -EXPORT_SYMBOL_GPL vmlinux 0xae29c229 xdp_rxq_info_unreg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0xae27fd79 devlink_dpipe_table_counter_enabled EXPORT_SYMBOL_GPL vmlinux 0xae39f80e dst_cache_init -EXPORT_SYMBOL_GPL vmlinux 0xae40315c hwmon_notify_event -EXPORT_SYMBOL_GPL vmlinux 0xae43235e event_triggers_call -EXPORT_SYMBOL_GPL vmlinux 0xae5d4056 __sync_filesystem +EXPORT_SYMBOL_GPL vmlinux 0xae447a46 fib6_check_nexthop +EXPORT_SYMBOL_GPL vmlinux 0xae516c43 tty_kopen_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xae576bd1 spi_take_timestamp_pre +EXPORT_SYMBOL_GPL vmlinux 0xae667841 sysfs_remove_file_from_group EXPORT_SYMBOL_GPL vmlinux 0xae69b1c1 usermodehelper_read_unlock EXPORT_SYMBOL_GPL vmlinux 0xae6c01ef user_free_preparse EXPORT_SYMBOL_GPL vmlinux 0xae7c231d mpi_cmp -EXPORT_SYMBOL_GPL vmlinux 0xae8c2087 snd_pcm_stream_unlock_irq -EXPORT_SYMBOL_GPL vmlinux 0xae91617b musb_root_disconnect -EXPORT_SYMBOL_GPL vmlinux 0xaeb15c23 dma_get_slave_caps -EXPORT_SYMBOL_GPL vmlinux 0xaeb40cb1 dev_pm_clear_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0xaeb479f0 regmap_register_patch -EXPORT_SYMBOL_GPL vmlinux 0xaeb5e78e dm_disk -EXPORT_SYMBOL_GPL vmlinux 0xaeb836c6 class_for_each_device -EXPORT_SYMBOL_GPL vmlinux 0xaee690d1 phy_start_machine -EXPORT_SYMBOL_GPL vmlinux 0xaeece017 __percpu_down_read -EXPORT_SYMBOL_GPL vmlinux 0xaef00c32 ethnl_cable_test_step -EXPORT_SYMBOL_GPL vmlinux 0xaefe790c ip_route_output_tunnel -EXPORT_SYMBOL_GPL vmlinux 0xaf00b66a fuse_conn_put -EXPORT_SYMBOL_GPL vmlinux 0xaf0fe3e6 cgroup_get_from_fd +EXPORT_SYMBOL_GPL vmlinux 0xae7f2740 ahci_init_controller +EXPORT_SYMBOL_GPL vmlinux 0xaea5ae02 cpufreq_policy_transition_delay_us +EXPORT_SYMBOL_GPL vmlinux 0xaeab3514 __raw_v6_lookup +EXPORT_SYMBOL_GPL vmlinux 0xaeb77007 fat_detach +EXPORT_SYMBOL_GPL vmlinux 0xaec846c5 fsnotify_put_mark +EXPORT_SYMBOL_GPL vmlinux 0xaecbe2b3 serdev_device_write_room +EXPORT_SYMBOL_GPL vmlinux 0xaed16cd1 usb_gadget_unmap_request +EXPORT_SYMBOL_GPL vmlinux 0xaed26488 device_init_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xaed98cf0 serdev_controller_add +EXPORT_SYMBOL_GPL vmlinux 0xaee3f71d mtd_erase_user_prot_reg +EXPORT_SYMBOL_GPL vmlinux 0xaee4d9aa switchdev_bridge_port_offload +EXPORT_SYMBOL_GPL vmlinux 0xaeef0cbd kthread_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xaef5e324 __fput_sync +EXPORT_SYMBOL_GPL vmlinux 0xaf01196a sdio_f0_writeb +EXPORT_SYMBOL_GPL vmlinux 0xaf0455b4 dev_pm_opp_find_freq_exact +EXPORT_SYMBOL_GPL vmlinux 0xaf052c79 __reset_control_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0xaf05a2a4 __get_task_comm +EXPORT_SYMBOL_GPL vmlinux 0xaf099c5b component_bind_all +EXPORT_SYMBOL_GPL vmlinux 0xaf1c0510 snd_devm_card_new EXPORT_SYMBOL_GPL vmlinux 0xaf201fa6 usb_ep_enable -EXPORT_SYMBOL_GPL vmlinux 0xaf2d0cf2 regulator_desc_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0xaf3440f2 snd_soc_component_force_enable_pin EXPORT_SYMBOL_GPL vmlinux 0xaf348da7 cpu_pm_exit EXPORT_SYMBOL_GPL vmlinux 0xaf3a44e9 __SCK__tp_func_sched_overutilized_tp EXPORT_SYMBOL_GPL vmlinux 0xaf4014ff usb_amd_quirk_pll_check -EXPORT_SYMBOL_GPL vmlinux 0xaf611882 virtqueue_enable_cb_prepare -EXPORT_SYMBOL_GPL vmlinux 0xaf650193 dma_get_required_mask -EXPORT_SYMBOL_GPL vmlinux 0xaf6de657 devm_create_dev_dax -EXPORT_SYMBOL_GPL vmlinux 0xaf755a67 platform_get_irq_optional -EXPORT_SYMBOL_GPL vmlinux 0xaf885529 snd_pcm_fill_iec958_consumer -EXPORT_SYMBOL_GPL vmlinux 0xaf9cad82 netlink_add_tap -EXPORT_SYMBOL_GPL vmlinux 0xafa2c911 snd_soc_dapm_force_enable_pin_unlocked -EXPORT_SYMBOL_GPL vmlinux 0xafa814f7 virtqueue_get_vring_size -EXPORT_SYMBOL_GPL vmlinux 0xafb04a45 devm_usb_put_phy -EXPORT_SYMBOL_GPL vmlinux 0xafda3950 fsnotify_get_group +EXPORT_SYMBOL_GPL vmlinux 0xaf4fb3a7 devfreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0xaf55ef9e ohci_resume +EXPORT_SYMBOL_GPL vmlinux 0xaf634b72 nanddev_bbt_init +EXPORT_SYMBOL_GPL vmlinux 0xaf75c05e clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0xaf858e0c usb_disable_ltm +EXPORT_SYMBOL_GPL vmlinux 0xaf85a9a6 relay_file_operations +EXPORT_SYMBOL_GPL vmlinux 0xafa5fabb devlink_port_region_create +EXPORT_SYMBOL_GPL vmlinux 0xafaf7051 dev_pm_opp_get_suspend_opp_freq +EXPORT_SYMBOL_GPL vmlinux 0xafc094cc sdhci_runtime_resume_host +EXPORT_SYMBOL_GPL vmlinux 0xafd48173 __traceiter_neigh_cleanup_and_release EXPORT_SYMBOL_GPL vmlinux 0xafddd545 ata_id_c_string +EXPORT_SYMBOL_GPL vmlinux 0xafe1369c regmap_irq_get_domain EXPORT_SYMBOL_GPL vmlinux 0xafeb58c1 __SCK__tp_func_io_page_fault -EXPORT_SYMBOL_GPL vmlinux 0xafef5bd0 hwspin_lock_get_id -EXPORT_SYMBOL_GPL vmlinux 0xaff2d39f debugfs_create_u16 -EXPORT_SYMBOL_GPL vmlinux 0xb0050f40 devres_destroy -EXPORT_SYMBOL_GPL vmlinux 0xb0060dd3 mptcp_pm_get_add_addr_signal_max -EXPORT_SYMBOL_GPL vmlinux 0xb0115537 posix_clock_register -EXPORT_SYMBOL_GPL vmlinux 0xb013664b register_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0xb00df2a5 nvmem_cell_read_variable_le_u32 +EXPORT_SYMBOL_GPL vmlinux 0xb01267df ncsi_vlan_rx_add_vid +EXPORT_SYMBOL_GPL vmlinux 0xb01e6ce9 sysfs_unmerge_group EXPORT_SYMBOL_GPL vmlinux 0xb0232477 klist_prev -EXPORT_SYMBOL_GPL vmlinux 0xb025e99f skcipher_walk_virt -EXPORT_SYMBOL_GPL vmlinux 0xb027b0d3 bpf_event_output -EXPORT_SYMBOL_GPL vmlinux 0xb031247d bio_add_zone_append_page -EXPORT_SYMBOL_GPL vmlinux 0xb032f478 rio_del_mport_pw_handler -EXPORT_SYMBOL_GPL vmlinux 0xb038cc98 crypto_aead_setauthsize +EXPORT_SYMBOL_GPL vmlinux 0xb026f4a5 init_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xb02af7de ip_icmp_error_rfc4884 EXPORT_SYMBOL_GPL vmlinux 0xb03bf684 register_kprobes +EXPORT_SYMBOL_GPL vmlinux 0xb045c384 msg_zerocopy_realloc +EXPORT_SYMBOL_GPL vmlinux 0xb04635de vga_default_device EXPORT_SYMBOL_GPL vmlinux 0xb049a294 __SCK__tp_func_pelt_irq_tp +EXPORT_SYMBOL_GPL vmlinux 0xb04b7e7f i2c_new_ancillary_device EXPORT_SYMBOL_GPL vmlinux 0xb04d1f7b perf_event_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xb051ef84 usb_hcd_map_urb_for_dma -EXPORT_SYMBOL_GPL vmlinux 0xb0606b2d find_vpid +EXPORT_SYMBOL_GPL vmlinux 0xb062f06a proc_create_net_single_write +EXPORT_SYMBOL_GPL vmlinux 0xb064e371 wm8350_block_read EXPORT_SYMBOL_GPL vmlinux 0xb0666a37 srcu_torture_stats_print -EXPORT_SYMBOL_GPL vmlinux 0xb0708535 dma_buf_move_notify +EXPORT_SYMBOL_GPL vmlinux 0xb0726758 rio_mport_read_config_16 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 0xb08383b0 replace_page_cache_page -EXPORT_SYMBOL_GPL vmlinux 0xb085f416 virtqueue_get_buf -EXPORT_SYMBOL_GPL vmlinux 0xb0926707 fsstack_copy_attr_all -EXPORT_SYMBOL_GPL vmlinux 0xb09d4707 cpts_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb091cbe2 device_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0xb0b19ec5 __inet_inherit_port EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset -EXPORT_SYMBOL_GPL vmlinux 0xb0c6f6f2 devm_clk_bulk_get_optional -EXPORT_SYMBOL_GPL vmlinux 0xb0ce42f6 dev_coredumpv -EXPORT_SYMBOL_GPL vmlinux 0xb0d20637 xdp_return_frame_rx_napi +EXPORT_SYMBOL_GPL vmlinux 0xb0ed04d0 devfreq_event_disable_edev +EXPORT_SYMBOL_GPL vmlinux 0xb0f199cc snd_pcm_stream_unlock_irqrestore EXPORT_SYMBOL_GPL vmlinux 0xb0fbb722 clk_fractional_divider_ops -EXPORT_SYMBOL_GPL vmlinux 0xb0fe13bd sdio_memcpy_toio EXPORT_SYMBOL_GPL vmlinux 0xb10d964d devlink_fmsg_pair_nest_end EXPORT_SYMBOL_GPL vmlinux 0xb11625b9 cpu_cgrp_subsys_on_dfl_key EXPORT_SYMBOL_GPL vmlinux 0xb11d9000 tty_dev_name_to_number -EXPORT_SYMBOL_GPL vmlinux 0xb122ccad crypto_unregister_instance -EXPORT_SYMBOL_GPL vmlinux 0xb124f44c relay_buf_full -EXPORT_SYMBOL_GPL vmlinux 0xb143f755 iommu_dev_enable_feature -EXPORT_SYMBOL_GPL vmlinux 0xb146aa41 usb_enable_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0xb159ae67 sdhci_cqe_enable +EXPORT_SYMBOL_GPL vmlinux 0xb1366d62 snd_ctl_activate_id +EXPORT_SYMBOL_GPL vmlinux 0xb148c4ae iommu_aux_attach_device +EXPORT_SYMBOL_GPL vmlinux 0xb1581158 spi_mem_get_name EXPORT_SYMBOL_GPL vmlinux 0xb1647fc2 devlink_info_version_running_put -EXPORT_SYMBOL_GPL vmlinux 0xb166083e crypto_hash_walk_first -EXPORT_SYMBOL_GPL vmlinux 0xb16d9869 snd_soc_bytes_get -EXPORT_SYMBOL_GPL vmlinux 0xb16e0de4 regmap_raw_write -EXPORT_SYMBOL_GPL vmlinux 0xb1773c3c crypto_grab_shash -EXPORT_SYMBOL_GPL vmlinux 0xb17dff27 tcp_bpf_sendmsg_redir -EXPORT_SYMBOL_GPL vmlinux 0xb180ce28 usb_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0xb1822dfc of_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0xb167ffdb mmc_poll_for_busy +EXPORT_SYMBOL_GPL vmlinux 0xb1794f3a devlink_port_params_register +EXPORT_SYMBOL_GPL vmlinux 0xb179717a __inet_twsk_schedule EXPORT_SYMBOL_GPL vmlinux 0xb18429eb suspend_device_irqs -EXPORT_SYMBOL_GPL vmlinux 0xb18e621b mtk_hw_set_value -EXPORT_SYMBOL_GPL vmlinux 0xb19ad5dd platform_device_add_data -EXPORT_SYMBOL_GPL vmlinux 0xb19b3c38 cgroup_get_e_css -EXPORT_SYMBOL_GPL vmlinux 0xb1b874f8 fuse_file_poll +EXPORT_SYMBOL_GPL vmlinux 0xb18a0d65 blk_mq_unquiesce_queue +EXPORT_SYMBOL_GPL vmlinux 0xb1a708bf syscon_node_to_regmap EXPORT_SYMBOL_GPL vmlinux 0xb1bed25d dpm_resume_start -EXPORT_SYMBOL_GPL vmlinux 0xb1cb12ba pwm_set_chip_data -EXPORT_SYMBOL_GPL vmlinux 0xb1d75337 regmap_get_device -EXPORT_SYMBOL_GPL vmlinux 0xb1d983bc dm_start_time_ns_from_clone -EXPORT_SYMBOL_GPL vmlinux 0xb1db958b usb_hcd_poll_rh_status +EXPORT_SYMBOL_GPL vmlinux 0xb1ce87bc snd_soc_dapm_mixer_update_power +EXPORT_SYMBOL_GPL vmlinux 0xb1d1d9b0 meson_pinctrl_probe +EXPORT_SYMBOL_GPL vmlinux 0xb1da3169 regmap_raw_read EXPORT_SYMBOL_GPL vmlinux 0xb1e25684 __trace_bputs -EXPORT_SYMBOL_GPL vmlinux 0xb1e5c03c power_supply_am_i_supplied +EXPORT_SYMBOL_GPL vmlinux 0xb1e92694 usb_amd_pt_check_port +EXPORT_SYMBOL_GPL vmlinux 0xb1f55983 elv_rqhash_del +EXPORT_SYMBOL_GPL vmlinux 0xb1f8bd2e pci_check_and_unmask_intx +EXPORT_SYMBOL_GPL vmlinux 0xb1fb4be1 __clocksource_register_scale EXPORT_SYMBOL_GPL vmlinux 0xb1fc1782 pci_speed_string -EXPORT_SYMBOL_GPL vmlinux 0xb20b4330 snd_soc_add_pcm_runtime -EXPORT_SYMBOL_GPL vmlinux 0xb212b434 irq_chip_set_vcpu_affinity_parent EXPORT_SYMBOL_GPL vmlinux 0xb2210d64 reset_control_deassert -EXPORT_SYMBOL_GPL vmlinux 0xb2224f86 ip6_route_output_flags_noref -EXPORT_SYMBOL_GPL vmlinux 0xb225a22c crypto_unregister_ahash +EXPORT_SYMBOL_GPL vmlinux 0xb227d300 vchan_dma_desc_free_list +EXPORT_SYMBOL_GPL vmlinux 0xb238e248 snd_soc_component_read EXPORT_SYMBOL_GPL vmlinux 0xb2405efc secure_tcp_seq -EXPORT_SYMBOL_GPL vmlinux 0xb259b341 snd_card_ref -EXPORT_SYMBOL_GPL vmlinux 0xb25e7355 clk_hw_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0xb2652256 __account_locked_vm EXPORT_SYMBOL_GPL vmlinux 0xb26a1add elfcorehdr_addr -EXPORT_SYMBOL_GPL vmlinux 0xb2853445 thermal_cooling_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb29cd9c2 __udp6_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0xb2b8f693 ata_sff_busy_sleep -EXPORT_SYMBOL_GPL vmlinux 0xb2baf4a3 exportfs_encode_fh +EXPORT_SYMBOL_GPL vmlinux 0xb26b88da dma_need_sync +EXPORT_SYMBOL_GPL vmlinux 0xb2779580 kthread_park +EXPORT_SYMBOL_GPL vmlinux 0xb27bfaa7 devm_of_phy_get_by_index +EXPORT_SYMBOL_GPL vmlinux 0xb296e84f snd_soc_runtime_action +EXPORT_SYMBOL_GPL vmlinux 0xb2a0beb8 __rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0xb2ad1227 blk_mq_quiesce_queue +EXPORT_SYMBOL_GPL vmlinux 0xb2ae122e fib_new_table +EXPORT_SYMBOL_GPL vmlinux 0xb2ae1560 debugfs_create_x16 +EXPORT_SYMBOL_GPL vmlinux 0xb2bb93a7 ata_port_schedule_eh EXPORT_SYMBOL_GPL vmlinux 0xb2c1732e rcu_gp_set_torture_wait -EXPORT_SYMBOL_GPL vmlinux 0xb2c7da27 of_led_get -EXPORT_SYMBOL_GPL vmlinux 0xb2c8912e __rio_local_read_config_8 -EXPORT_SYMBOL_GPL vmlinux 0xb2d00c54 crypto_register_aead -EXPORT_SYMBOL_GPL vmlinux 0xb2d390d2 regulator_bulk_force_disable +EXPORT_SYMBOL_GPL vmlinux 0xb2cb6a4d devm_hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0xb2cba0da ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0xb2d05905 vfs_submount +EXPORT_SYMBOL_GPL vmlinux 0xb2d14cec __ip6_local_out EXPORT_SYMBOL_GPL vmlinux 0xb2d94d60 rockchip_clk_register_ddrclk EXPORT_SYMBOL_GPL vmlinux 0xb2de4cf2 clk_gate_ops -EXPORT_SYMBOL_GPL vmlinux 0xb2df8e37 pm_runtime_set_memalloc_noio -EXPORT_SYMBOL_GPL vmlinux 0xb2e357b9 pci_epc_raise_irq +EXPORT_SYMBOL_GPL vmlinux 0xb2e06df4 of_irq_get_byname +EXPORT_SYMBOL_GPL vmlinux 0xb2e47bfe fscrypt_symlink_getattr EXPORT_SYMBOL_GPL vmlinux 0xb2e764e8 suspend_valid_only_mem -EXPORT_SYMBOL_GPL vmlinux 0xb2f03847 devm_watchdog_register_device -EXPORT_SYMBOL_GPL vmlinux 0xb2f171ac lp8788_update_bits +EXPORT_SYMBOL_GPL vmlinux 0xb2f4dce4 qcom_smem_state_register +EXPORT_SYMBOL_GPL vmlinux 0xb2f66901 tpm_chip_register +EXPORT_SYMBOL_GPL vmlinux 0xb2f8656d platform_unregister_drivers EXPORT_SYMBOL_GPL vmlinux 0xb2fadc38 clk_regmap_gate_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0xb2fe54a9 platform_get_resource_byname EXPORT_SYMBOL_GPL vmlinux 0xb307c909 devlink_fmsg_u64_pair_put -EXPORT_SYMBOL_GPL vmlinux 0xb3177721 snd_soc_component_nc_pin -EXPORT_SYMBOL_GPL vmlinux 0xb3239efd device_del -EXPORT_SYMBOL_GPL vmlinux 0xb33e54fe tcf_dev_queue_xmit -EXPORT_SYMBOL_GPL vmlinux 0xb348b79b blk_ksm_update_capabilities -EXPORT_SYMBOL_GPL vmlinux 0xb3507348 sk_msg_memcopy_from_iter -EXPORT_SYMBOL_GPL vmlinux 0xb3531d2a pci_destroy_slot -EXPORT_SYMBOL_GPL vmlinux 0xb35567ca dev_pm_opp_free_cpufreq_table -EXPORT_SYMBOL_GPL vmlinux 0xb35b67d6 tracing_cond_snapshot_data -EXPORT_SYMBOL_GPL vmlinux 0xb364982f iomap_file_unshare -EXPORT_SYMBOL_GPL vmlinux 0xb367b215 pstore_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb36afd3a blk_ksm_init_passthrough +EXPORT_SYMBOL_GPL vmlinux 0xb315b293 dw_pcie_ep_init_notify +EXPORT_SYMBOL_GPL vmlinux 0xb3196a20 aead_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb33935ed nd_blk_memremap_flags +EXPORT_SYMBOL_GPL vmlinux 0xb33e4908 iommu_uapi_sva_unbind_gpasid +EXPORT_SYMBOL_GPL vmlinux 0xb361856e is_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0xb364b80b i2c_dw_prepare_clk EXPORT_SYMBOL_GPL vmlinux 0xb378559e freq_qos_add_request -EXPORT_SYMBOL_GPL vmlinux 0xb37f4c0b devres_close_group -EXPORT_SYMBOL_GPL vmlinux 0xb397d5ad __xdp_build_skb_from_frame -EXPORT_SYMBOL_GPL vmlinux 0xb39a5e1c of_dma_configure_id -EXPORT_SYMBOL_GPL vmlinux 0xb39b523f i2c_new_client_device +EXPORT_SYMBOL_GPL vmlinux 0xb3978dce hwspin_lock_unregister EXPORT_SYMBOL_GPL vmlinux 0xb39c7cf9 trace_seq_printf -EXPORT_SYMBOL_GPL vmlinux 0xb3ad22f3 tty_kclose -EXPORT_SYMBOL_GPL vmlinux 0xb3be5516 _proc_mkdir -EXPORT_SYMBOL_GPL vmlinux 0xb3c6d002 of_usb_get_dr_mode_by_phy -EXPORT_SYMBOL_GPL vmlinux 0xb3defbe5 rio_release_outb_dbell -EXPORT_SYMBOL_GPL vmlinux 0xb3ee9af5 scsi_internal_device_unblock_nowait -EXPORT_SYMBOL_GPL vmlinux 0xb3ef2e26 add_swap_extent -EXPORT_SYMBOL_GPL vmlinux 0xb3f13b70 regulator_put +EXPORT_SYMBOL_GPL vmlinux 0xb3a37db7 usb_phy_gen_create_phy +EXPORT_SYMBOL_GPL vmlinux 0xb3b10593 pcie_aspm_capable +EXPORT_SYMBOL_GPL vmlinux 0xb3b2a5ed regcache_cache_bypass +EXPORT_SYMBOL_GPL vmlinux 0xb3bd174d driver_remove_file +EXPORT_SYMBOL_GPL vmlinux 0xb3be9b5e perf_event_refresh +EXPORT_SYMBOL_GPL vmlinux 0xb3d3e1fc bus_find_device +EXPORT_SYMBOL_GPL vmlinux 0xb3d4633e ipv6_opt_accepted +EXPORT_SYMBOL_GPL vmlinux 0xb3d6f8aa pm_clk_add_clk +EXPORT_SYMBOL_GPL vmlinux 0xb3ddde27 encrypt_blob +EXPORT_SYMBOL_GPL vmlinux 0xb3f01b78 fixed_phy_register +EXPORT_SYMBOL_GPL vmlinux 0xb3f12fc0 dev_get_regmap EXPORT_SYMBOL_GPL vmlinux 0xb3f538cb page_reporting_register -EXPORT_SYMBOL_GPL vmlinux 0xb3f6049a pci_msi_mask_irq -EXPORT_SYMBOL_GPL vmlinux 0xb402c6da ehci_resume -EXPORT_SYMBOL_GPL vmlinux 0xb409fe12 pcie_port_find_device +EXPORT_SYMBOL_GPL vmlinux 0xb3f9f60a fat_attach +EXPORT_SYMBOL_GPL vmlinux 0xb3fc0c15 driver_deferred_probe_check_state EXPORT_SYMBOL_GPL vmlinux 0xb40c6376 cpuset_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xb4249b04 tty_buffer_unlock_exclusive -EXPORT_SYMBOL_GPL vmlinux 0xb42bd71f device_set_of_node_from_dev -EXPORT_SYMBOL_GPL vmlinux 0xb43880f5 tps65912_device_init +EXPORT_SYMBOL_GPL vmlinux 0xb40e93ce rio_unregister_mport +EXPORT_SYMBOL_GPL vmlinux 0xb4199148 gpiod_set_config +EXPORT_SYMBOL_GPL vmlinux 0xb41ca9fb sdhci_pltfm_init +EXPORT_SYMBOL_GPL vmlinux 0xb42c0296 virtqueue_add_inbuf +EXPORT_SYMBOL_GPL vmlinux 0xb4384c54 rio_register_scan EXPORT_SYMBOL_GPL vmlinux 0xb43f9365 ktime_get -EXPORT_SYMBOL_GPL vmlinux 0xb44b9652 __fscrypt_prepare_link EXPORT_SYMBOL_GPL vmlinux 0xb44e18ea audit_enabled -EXPORT_SYMBOL_GPL vmlinux 0xb472a4b4 switchdev_bridge_port_unoffload -EXPORT_SYMBOL_GPL vmlinux 0xb4828bf7 dev_pm_opp_of_add_table_indexed -EXPORT_SYMBOL_GPL vmlinux 0xb4b231f4 tpm_get_random -EXPORT_SYMBOL_GPL vmlinux 0xb4b71c37 pm_clk_init -EXPORT_SYMBOL_GPL vmlinux 0xb4b8913f clk_hw_rate_is_protected +EXPORT_SYMBOL_GPL vmlinux 0xb45f22c9 page_endio +EXPORT_SYMBOL_GPL vmlinux 0xb4686a2b fwnode_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0xb46cc488 devm_irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xb4717745 kernel_read_file +EXPORT_SYMBOL_GPL vmlinux 0xb495dea1 ima_file_check EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier EXPORT_SYMBOL_GPL vmlinux 0xb4c1fecb crypto_aes_set_key -EXPORT_SYMBOL_GPL vmlinux 0xb4d12259 usb_choose_configuration -EXPORT_SYMBOL_GPL vmlinux 0xb4db753f synth_event_trace_end -EXPORT_SYMBOL_GPL vmlinux 0xb4e372af sdio_retune_release +EXPORT_SYMBOL_GPL vmlinux 0xb4d3dec6 platform_device_alloc EXPORT_SYMBOL_GPL vmlinux 0xb4ea7cf7 kgdb_connected EXPORT_SYMBOL_GPL vmlinux 0xb4eda0da ring_buffer_event_length +EXPORT_SYMBOL_GPL vmlinux 0xb4f72761 phy_set_mode_ext EXPORT_SYMBOL_GPL vmlinux 0xb501b2df nd_cmd_dimm_desc +EXPORT_SYMBOL_GPL vmlinux 0xb504d492 ata_dev_next +EXPORT_SYMBOL_GPL vmlinux 0xb505ae5c snd_card_disconnect_sync EXPORT_SYMBOL_GPL vmlinux 0xb507e93d rhashtable_walk_stop -EXPORT_SYMBOL_GPL vmlinux 0xb50a24f9 crypto_stats_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0xb50890c0 __traceiter_xdp_bulk_tx +EXPORT_SYMBOL_GPL vmlinux 0xb50956f6 snd_soc_link_compr_set_params EXPORT_SYMBOL_GPL vmlinux 0xb51fbd64 edac_op_state -EXPORT_SYMBOL_GPL vmlinux 0xb5236588 blk_poll -EXPORT_SYMBOL_GPL vmlinux 0xb5319f6b __put_net -EXPORT_SYMBOL_GPL vmlinux 0xb53cb4c6 serial8250_request_dma -EXPORT_SYMBOL_GPL vmlinux 0xb54554b8 blk_mq_start_stopped_hw_queue -EXPORT_SYMBOL_GPL vmlinux 0xb54a06da pci_epc_write_header -EXPORT_SYMBOL_GPL vmlinux 0xb54f2f26 ahci_check_ready -EXPORT_SYMBOL_GPL vmlinux 0xb56219af sched_trace_cfs_rq_cpu -EXPORT_SYMBOL_GPL vmlinux 0xb567963f ip6_dst_lookup -EXPORT_SYMBOL_GPL vmlinux 0xb5685fc1 __clk_hw_register_fixed_rate -EXPORT_SYMBOL_GPL vmlinux 0xb56ace0d usb_set_configuration -EXPORT_SYMBOL_GPL vmlinux 0xb56cd634 __rio_local_read_config_16 -EXPORT_SYMBOL_GPL vmlinux 0xb584bb1b irq_get_irq_data -EXPORT_SYMBOL_GPL vmlinux 0xb58bc122 usb_role_switch_register -EXPORT_SYMBOL_GPL vmlinux 0xb59da83a vp_modern_set_features +EXPORT_SYMBOL_GPL vmlinux 0xb533647a add_to_page_cache_lru +EXPORT_SYMBOL_GPL vmlinux 0xb533c2b7 net_ns_type_operations +EXPORT_SYMBOL_GPL vmlinux 0xb534a378 fib_rules_lookup +EXPORT_SYMBOL_GPL vmlinux 0xb554e564 fb_deferred_io_init +EXPORT_SYMBOL_GPL vmlinux 0xb57658d9 hisi_clk_register_phase +EXPORT_SYMBOL_GPL vmlinux 0xb58beaf2 regulator_set_ramp_delay_regmap +EXPORT_SYMBOL_GPL vmlinux 0xb58e5250 tty_port_install +EXPORT_SYMBOL_GPL vmlinux 0xb5a0ae07 of_devfreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0xb5b1c46c of_alias_get_id EXPORT_SYMBOL_GPL vmlinux 0xb5b4c2e8 key_type_encrypted -EXPORT_SYMBOL_GPL vmlinux 0xb5b97194 irq_domain_pop_irq -EXPORT_SYMBOL_GPL vmlinux 0xb5cce961 regulator_set_soft_start_regmap -EXPORT_SYMBOL_GPL vmlinux 0xb5d10ff0 subsys_virtual_register -EXPORT_SYMBOL_GPL vmlinux 0xb5d1292d raw_seq_stop -EXPORT_SYMBOL_GPL vmlinux 0xb5d1ab8d skb_partial_csum_set -EXPORT_SYMBOL_GPL vmlinux 0xb5d9c26d blk_queue_set_zoned -EXPORT_SYMBOL_GPL vmlinux 0xb5da6014 snd_soc_dapm_mux_update_power +EXPORT_SYMBOL_GPL vmlinux 0xb5b5b7ab dm_copy_name_and_uuid +EXPORT_SYMBOL_GPL vmlinux 0xb5ccb6fe ata_slave_link_init +EXPORT_SYMBOL_GPL vmlinux 0xb5cf2e05 phy_power_off +EXPORT_SYMBOL_GPL vmlinux 0xb5d960da snd_soc_of_parse_tdm_slot EXPORT_SYMBOL_GPL vmlinux 0xb5dcd8a0 klist_init -EXPORT_SYMBOL_GPL vmlinux 0xb5e3c34a nf_route -EXPORT_SYMBOL_GPL vmlinux 0xb5e8930d sysfs_remove_mount_point -EXPORT_SYMBOL_GPL vmlinux 0xb5ea5b35 mtd_write -EXPORT_SYMBOL_GPL vmlinux 0xb5eb5613 sysfs_add_link_to_group -EXPORT_SYMBOL_GPL vmlinux 0xb5f65167 fwnode_graph_get_endpoint_by_id -EXPORT_SYMBOL_GPL vmlinux 0xb601b046 devm_platform_get_irqs_affinity -EXPORT_SYMBOL_GPL vmlinux 0xb616c06c pci_pri_supported -EXPORT_SYMBOL_GPL vmlinux 0xb618f035 ohci_hub_status_data -EXPORT_SYMBOL_GPL vmlinux 0xb61e3e71 usb_gadget_vbus_disconnect -EXPORT_SYMBOL_GPL vmlinux 0xb61e5ef0 fuse_get_unique +EXPORT_SYMBOL_GPL vmlinux 0xb5e186fd tcp_sendpage_locked +EXPORT_SYMBOL_GPL vmlinux 0xb5e65619 fs_kobj +EXPORT_SYMBOL_GPL vmlinux 0xb5e9b83a get_net_ns +EXPORT_SYMBOL_GPL vmlinux 0xb615dc72 __mmc_poll_for_busy EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb62b21b5 snd_soc_component_compr_open -EXPORT_SYMBOL_GPL vmlinux 0xb6397337 power_supply_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb63c466b do_splice_from +EXPORT_SYMBOL_GPL vmlinux 0xb63ead73 fuse_dev_alloc EXPORT_SYMBOL_GPL vmlinux 0xb6410433 mpi_addm -EXPORT_SYMBOL_GPL vmlinux 0xb64fa604 tty_kopen_exclusive -EXPORT_SYMBOL_GPL vmlinux 0xb6501807 blk_steal_bios +EXPORT_SYMBOL_GPL vmlinux 0xb6427b12 platform_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0xb643f065 usb_autopm_put_interface +EXPORT_SYMBOL_GPL vmlinux 0xb64c6457 fat_dir_empty +EXPORT_SYMBOL_GPL vmlinux 0xb6567d20 usb_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xb66adc83 devm_regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb6747423 bsg_job_get EXPORT_SYMBOL_GPL vmlinux 0xb6787346 sfp_unregister_socket -EXPORT_SYMBOL_GPL vmlinux 0xb68b1326 blk_ksm_is_superset -EXPORT_SYMBOL_GPL vmlinux 0xb6957acb xfrm_audit_state_delete -EXPORT_SYMBOL_GPL vmlinux 0xb6a2006e debugfs_create_x64 -EXPORT_SYMBOL_GPL vmlinux 0xb6a35284 fuse_conn_destroy -EXPORT_SYMBOL_GPL vmlinux 0xb6a6c181 nand_get_large_page_ooblayout -EXPORT_SYMBOL_GPL vmlinux 0xb6b3dedd of_gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0xb67a9268 devlink_is_reload_failed +EXPORT_SYMBOL_GPL vmlinux 0xb681b03a crypto_skcipher_setkey +EXPORT_SYMBOL_GPL vmlinux 0xb688fe78 dev_pm_opp_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0xb6934ef0 wm831x_auxadc_read +EXPORT_SYMBOL_GPL vmlinux 0xb6942b55 mtk_pinconf_bias_disable_set_rev1 +EXPORT_SYMBOL_GPL vmlinux 0xb69d87cc pm_generic_freeze_noirq +EXPORT_SYMBOL_GPL vmlinux 0xb6a93341 get_net_ns_by_pid EXPORT_SYMBOL_GPL vmlinux 0xb6b873f4 __tracepoint_add_device_to_group -EXPORT_SYMBOL_GPL vmlinux 0xb6c35d7d __synth_event_gen_cmd_start -EXPORT_SYMBOL_GPL vmlinux 0xb6ca97de device_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0xb6c8a364 pci_epc_destroy +EXPORT_SYMBOL_GPL vmlinux 0xb6d5779a snd_soc_new_compress +EXPORT_SYMBOL_GPL vmlinux 0xb6dbc590 mtd_get_unmapped_area EXPORT_SYMBOL_GPL vmlinux 0xb6e6d99d clk_disable -EXPORT_SYMBOL_GPL vmlinux 0xb6e99493 rtnl_delete_link -EXPORT_SYMBOL_GPL vmlinux 0xb70121a6 __get_task_comm -EXPORT_SYMBOL_GPL vmlinux 0xb70ad682 blk_ksm_destroy -EXPORT_SYMBOL_GPL vmlinux 0xb7139fa9 devlink_resources_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb71e05c8 phy_package_join -EXPORT_SYMBOL_GPL vmlinux 0xb7222c4f spi_finalize_current_message -EXPORT_SYMBOL_GPL vmlinux 0xb72b959a devlink_port_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb7015bfb pci_device_group +EXPORT_SYMBOL_GPL vmlinux 0xb7083f24 perf_pmu_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb70ed911 nvdimm_bus_add_badrange +EXPORT_SYMBOL_GPL vmlinux 0xb7199dc7 tpm_send +EXPORT_SYMBOL_GPL vmlinux 0xb72a0989 snd_soc_dai_compr_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xb72be13c crypto_spawn_tfm2 +EXPORT_SYMBOL_GPL vmlinux 0xb731b726 snd_soc_component_set_jack EXPORT_SYMBOL_GPL vmlinux 0xb7329c06 clk_set_phase -EXPORT_SYMBOL_GPL vmlinux 0xb736869c devlink_rate_nodes_destroy -EXPORT_SYMBOL_GPL vmlinux 0xb7377b71 phy_speed_up -EXPORT_SYMBOL_GPL vmlinux 0xb741844b clk_register_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0xb742a356 da903x_update +EXPORT_SYMBOL_GPL vmlinux 0xb7352322 sdio_set_host_pm_flags +EXPORT_SYMBOL_GPL vmlinux 0xb738fb1d misc_cg_try_charge EXPORT_SYMBOL_GPL vmlinux 0xb74538d2 kprobe_event_cmd_init EXPORT_SYMBOL_GPL vmlinux 0xb7491c17 lzorle1x_1_compress EXPORT_SYMBOL_GPL vmlinux 0xb74c31cd wwan_remove_port -EXPORT_SYMBOL_GPL vmlinux 0xb74ef308 br_ip6_fragment -EXPORT_SYMBOL_GPL vmlinux 0xb75553f5 virtqueue_add_outbuf -EXPORT_SYMBOL_GPL vmlinux 0xb758b621 kthread_park -EXPORT_SYMBOL_GPL vmlinux 0xb75d453f vp_modern_map_vq_notify -EXPORT_SYMBOL_GPL vmlinux 0xb75fe6ca vp_modern_set_queue_enable +EXPORT_SYMBOL_GPL vmlinux 0xb75b7be5 ata_dev_disable +EXPORT_SYMBOL_GPL vmlinux 0xb75b8066 serdev_device_set_tiocm +EXPORT_SYMBOL_GPL vmlinux 0xb76974a3 thermal_zone_bind_cooling_device EXPORT_SYMBOL_GPL vmlinux 0xb771e6b7 bL_switch_request_cb EXPORT_SYMBOL_GPL vmlinux 0xb77db4cd software_node_find_by_name +EXPORT_SYMBOL_GPL vmlinux 0xb780c8d6 crypto_shash_final EXPORT_SYMBOL_GPL vmlinux 0xb786bf75 pci_write_msi_msg -EXPORT_SYMBOL_GPL vmlinux 0xb78e091c devm_device_add_group -EXPORT_SYMBOL_GPL vmlinux 0xb791d446 badblocks_store -EXPORT_SYMBOL_GPL vmlinux 0xb79611c3 encrypt_blob -EXPORT_SYMBOL_GPL vmlinux 0xb796f5ea xdp_rxq_info_reg_mem_model -EXPORT_SYMBOL_GPL vmlinux 0xb79da2fa led_set_brightness_nopm +EXPORT_SYMBOL_GPL vmlinux 0xb786d033 uprobe_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb786f817 fuse_fill_super_common +EXPORT_SYMBOL_GPL vmlinux 0xb792182c strp_init +EXPORT_SYMBOL_GPL vmlinux 0xb797d413 of_pm_clk_add_clk +EXPORT_SYMBOL_GPL vmlinux 0xb79ef9fd regulator_get_exclusive EXPORT_SYMBOL_GPL vmlinux 0xb7a387fc synchronize_rcu_tasks_rude -EXPORT_SYMBOL_GPL vmlinux 0xb7ae3da3 snd_pcm_hw_constraint_eld -EXPORT_SYMBOL_GPL vmlinux 0xb7b8aaca dma_mmap_pages -EXPORT_SYMBOL_GPL vmlinux 0xb7c57952 phy_led_triggers_register +EXPORT_SYMBOL_GPL vmlinux 0xb7be0978 ata_timing_compute EXPORT_SYMBOL_GPL vmlinux 0xb7c69a63 unregister_vmap_purge_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb7c7e9ac mmc_send_abort_tuning -EXPORT_SYMBOL_GPL vmlinux 0xb7cd04d3 snd_hwparams_to_dma_slave_config -EXPORT_SYMBOL_GPL vmlinux 0xb7d5b352 watchdog_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0xb7d608f5 usb_phy_get_charger_current -EXPORT_SYMBOL_GPL vmlinux 0xb7d8b1b8 sysfs_notify -EXPORT_SYMBOL_GPL vmlinux 0xb7e2db09 tps6586x_reads -EXPORT_SYMBOL_GPL vmlinux 0xb7f73837 regulator_map_voltage_linear -EXPORT_SYMBOL_GPL vmlinux 0xb7f89725 da9052_enable_irq -EXPORT_SYMBOL_GPL vmlinux 0xb811b77b sata_pmp_port_ops -EXPORT_SYMBOL_GPL vmlinux 0xb811e5ba dummy_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0xb815257d clk_hw_get_parent +EXPORT_SYMBOL_GPL vmlinux 0xb7ca31d9 ptp_parse_header +EXPORT_SYMBOL_GPL vmlinux 0xb7dc672d vp_modern_generation +EXPORT_SYMBOL_GPL vmlinux 0xb7e23700 scsi_target_unblock +EXPORT_SYMBOL_GPL vmlinux 0xb7ec93b8 tcp_unregister_ulp +EXPORT_SYMBOL_GPL vmlinux 0xb800b72d usb_intf_get_dma_device +EXPORT_SYMBOL_GPL vmlinux 0xb8216ca1 led_trigger_remove +EXPORT_SYMBOL_GPL vmlinux 0xb822c374 cpu_subsys EXPORT_SYMBOL_GPL vmlinux 0xb82566eb omap_tll_enable -EXPORT_SYMBOL_GPL vmlinux 0xb8370173 hrtimer_init_sleeper -EXPORT_SYMBOL_GPL vmlinux 0xb841fa54 ohci_hub_control -EXPORT_SYMBOL_GPL vmlinux 0xb842b563 sched_trace_cfs_rq_avg -EXPORT_SYMBOL_GPL vmlinux 0xb855091c root_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb828b29c devm_regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0xb84162f9 __put_task_struct +EXPORT_SYMBOL_GPL vmlinux 0xb847f421 wm8350_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xb8634a23 phy_pm_runtime_forbid EXPORT_SYMBOL_GPL vmlinux 0xb86758bf unregister_kprobe -EXPORT_SYMBOL_GPL vmlinux 0xb889b12b sysfs_create_groups +EXPORT_SYMBOL_GPL vmlinux 0xb876f3d6 nvdimm_in_overwrite +EXPORT_SYMBOL_GPL vmlinux 0xb87cadd5 regulator_list_voltage_pickable_linear_range EXPORT_SYMBOL_GPL vmlinux 0xb88dbfce irq_set_irqchip_state -EXPORT_SYMBOL_GPL vmlinux 0xb88e43cb snd_ac97_reset -EXPORT_SYMBOL_GPL vmlinux 0xb89f85f5 __traceiter_br_fdb_external_learn_add EXPORT_SYMBOL_GPL vmlinux 0xb8a64d4a sbitmap_queue_init_node -EXPORT_SYMBOL_GPL vmlinux 0xb8a8459d adp5520_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb8ba5387 usb_create_shared_hcd +EXPORT_SYMBOL_GPL vmlinux 0xb8afffd7 snd_soc_bytes_put EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put -EXPORT_SYMBOL_GPL vmlinux 0xb8ce4899 spi_controller_dma_map_mem_op_data -EXPORT_SYMBOL_GPL vmlinux 0xb8ce7364 kernfs_put -EXPORT_SYMBOL_GPL vmlinux 0xb8dcdeb2 crypto_ahash_digest -EXPORT_SYMBOL_GPL vmlinux 0xb8eda808 sk_msg_is_readable -EXPORT_SYMBOL_GPL vmlinux 0xb8f02387 __audit_inode_child -EXPORT_SYMBOL_GPL vmlinux 0xb8fd4255 switchdev_port_obj_add -EXPORT_SYMBOL_GPL vmlinux 0xb9050cf5 fwnode_graph_get_remote_port_parent -EXPORT_SYMBOL_GPL vmlinux 0xb9081869 ipv6_opt_accepted +EXPORT_SYMBOL_GPL vmlinux 0xb8ce434d usb_udc_vbus_handler +EXPORT_SYMBOL_GPL vmlinux 0xb8ed5e0f __fat_fs_error +EXPORT_SYMBOL_GPL vmlinux 0xb8f31eab usb_phy_set_charger_state +EXPORT_SYMBOL_GPL vmlinux 0xb8fecf9e irq_chip_set_affinity_parent +EXPORT_SYMBOL_GPL vmlinux 0xb90553e3 usb_deregister_dev +EXPORT_SYMBOL_GPL vmlinux 0xb9079bbe of_hwspin_lock_get_id_byname EXPORT_SYMBOL_GPL vmlinux 0xb90a1fcd rsa_parse_priv_key EXPORT_SYMBOL_GPL vmlinux 0xb9138620 xas_create_range EXPORT_SYMBOL_GPL vmlinux 0xb9176155 asn1_ber_decoder EXPORT_SYMBOL_GPL vmlinux 0xb917b6d7 return_address -EXPORT_SYMBOL_GPL vmlinux 0xb917ca3a phy_init -EXPORT_SYMBOL_GPL vmlinux 0xb918bfb7 vfs_read -EXPORT_SYMBOL_GPL vmlinux 0xb93f0b56 regulator_set_active_discharge_regmap -EXPORT_SYMBOL_GPL vmlinux 0xb94ef46e virtio_max_dma_size +EXPORT_SYMBOL_GPL vmlinux 0xb9224118 ata_sas_port_suspend +EXPORT_SYMBOL_GPL vmlinux 0xb94085ee switchdev_handle_port_attr_set +EXPORT_SYMBOL_GPL vmlinux 0xb94ec87e xfrm_state_afinfo_get_rcu +EXPORT_SYMBOL_GPL vmlinux 0xb9515abf dma_release_channel +EXPORT_SYMBOL_GPL vmlinux 0xb95b6f7f iommu_map +EXPORT_SYMBOL_GPL vmlinux 0xb9611144 cpuidle_unregister EXPORT_SYMBOL_GPL vmlinux 0xb9681621 xdp_do_flush -EXPORT_SYMBOL_GPL vmlinux 0xb96d35a7 ata_sff_data_xfer32 -EXPORT_SYMBOL_GPL vmlinux 0xb9741695 crypto_unregister_acomp -EXPORT_SYMBOL_GPL vmlinux 0xb98163bc ata_bmdma_port_start +EXPORT_SYMBOL_GPL vmlinux 0xb9690192 ata_cable_80wire +EXPORT_SYMBOL_GPL vmlinux 0xb977bb76 scsi_internal_device_unblock_nowait EXPORT_SYMBOL_GPL vmlinux 0xb9852d11 __traceiter_mc_event -EXPORT_SYMBOL_GPL vmlinux 0xb989774a pci_epc_map_msi_irq EXPORT_SYMBOL_GPL vmlinux 0xb98bb315 phy_gbit_fibre_features -EXPORT_SYMBOL_GPL vmlinux 0xb99342c6 platform_msi_domain_free_irqs +EXPORT_SYMBOL_GPL vmlinux 0xb99518d2 percpu_down_write +EXPORT_SYMBOL_GPL vmlinux 0xb996b538 mtk_pinconf_drive_set_raw EXPORT_SYMBOL_GPL vmlinux 0xb99a93f5 crypto_chain -EXPORT_SYMBOL_GPL vmlinux 0xb99b7d30 vfs_write EXPORT_SYMBOL_GPL vmlinux 0xb99d3629 synth_event_cmd_init -EXPORT_SYMBOL_GPL vmlinux 0xb9a6f231 devm_spi_mem_dirmap_destroy -EXPORT_SYMBOL_GPL vmlinux 0xb9acf60e of_dma_router_register -EXPORT_SYMBOL_GPL vmlinux 0xb9b518a1 proc_mkdir_data +EXPORT_SYMBOL_GPL vmlinux 0xb9b4738e musb_queue_resume_work EXPORT_SYMBOL_GPL vmlinux 0xb9b51e9d alarm_start EXPORT_SYMBOL_GPL vmlinux 0xb9b9df41 usb_amd_dev_put EXPORT_SYMBOL_GPL vmlinux 0xb9c425de register_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xb9cbd0dd add_mtd_blktrans_dev EXPORT_SYMBOL_GPL vmlinux 0xb9d025c9 llist_del_first -EXPORT_SYMBOL_GPL vmlinux 0xb9d0b4c0 i2c_bus_type -EXPORT_SYMBOL_GPL vmlinux 0xb9d49bab tps6586x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0xb9d36c1c ping_rcv +EXPORT_SYMBOL_GPL vmlinux 0xb9d8ac29 regmap_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0xb9df02de usb_interrupt_msg EXPORT_SYMBOL_GPL vmlinux 0xb9e87b94 bL_switcher_trace_trigger +EXPORT_SYMBOL_GPL vmlinux 0xb9f22130 devfreq_event_get_edev_count +EXPORT_SYMBOL_GPL vmlinux 0xb9f64f10 dev_pm_genpd_resume EXPORT_SYMBOL_GPL vmlinux 0xba032f94 btree_insert -EXPORT_SYMBOL_GPL vmlinux 0xba1e2468 musb_set_peripheral -EXPORT_SYMBOL_GPL vmlinux 0xba21e047 edac_pci_handle_npe -EXPORT_SYMBOL_GPL vmlinux 0xba281836 blkcg_policy_unregister EXPORT_SYMBOL_GPL vmlinux 0xba2b7f64 cpufreq_generic_get -EXPORT_SYMBOL_GPL vmlinux 0xba30f102 ncsi_unregister_dev +EXPORT_SYMBOL_GPL vmlinux 0xba2e46f0 iommu_group_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xba3173ca vchan_tx_submit +EXPORT_SYMBOL_GPL vmlinux 0xba36f0b5 mmu_notifier_register EXPORT_SYMBOL_GPL vmlinux 0xba3ba2f3 mtd_table_mutex -EXPORT_SYMBOL_GPL vmlinux 0xba56e76a icc_enable -EXPORT_SYMBOL_GPL vmlinux 0xba5ecb6f nand_wait_ready -EXPORT_SYMBOL_GPL vmlinux 0xba5f529b inode_dax -EXPORT_SYMBOL_GPL vmlinux 0xbaad4a5b rockchip_clk_init -EXPORT_SYMBOL_GPL vmlinux 0xbaae1640 ata_cable_sata -EXPORT_SYMBOL_GPL vmlinux 0xbab6d379 of_property_read_u32_index +EXPORT_SYMBOL_GPL vmlinux 0xba53a1ac hwspin_lock_free +EXPORT_SYMBOL_GPL vmlinux 0xba58c513 wm831x_device_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xba5d67ad key_type_logon +EXPORT_SYMBOL_GPL vmlinux 0xba6b4da4 nanddev_mtd_max_bad_blocks +EXPORT_SYMBOL_GPL vmlinux 0xba6dac98 __cci_control_port_by_device +EXPORT_SYMBOL_GPL vmlinux 0xba718cd1 devm_platform_get_and_ioremap_resource +EXPORT_SYMBOL_GPL vmlinux 0xba73bf8c bpf_preload_ops +EXPORT_SYMBOL_GPL vmlinux 0xba9e807b ping_queue_rcv_skb +EXPORT_SYMBOL_GPL vmlinux 0xbaaeee03 strp_done EXPORT_SYMBOL_GPL vmlinux 0xbab9a9f0 maxim_charger_currents -EXPORT_SYMBOL_GPL vmlinux 0xbabb4b94 regmap_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0xbabcb983 pci_bus_max_busnr -EXPORT_SYMBOL_GPL vmlinux 0xbabe5b15 ip6_datagram_connect -EXPORT_SYMBOL_GPL vmlinux 0xbabf934f nvmem_device_get EXPORT_SYMBOL_GPL vmlinux 0xbac5646d sbitmap_finish_wait -EXPORT_SYMBOL_GPL vmlinux 0xbacfd5cc __clocksource_register_scale +EXPORT_SYMBOL_GPL vmlinux 0xbac8b4ad __list_lru_init +EXPORT_SYMBOL_GPL vmlinux 0xbad1cec1 gov_update_cpu_data +EXPORT_SYMBOL_GPL vmlinux 0xbad3079e devm_pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbaedd72a xfrm_dev_state_add EXPORT_SYMBOL_GPL vmlinux 0xbaf22757 kvfree_call_rcu EXPORT_SYMBOL_GPL vmlinux 0xbaf6850c fsnotify_wait_marks_destroyed -EXPORT_SYMBOL_GPL vmlinux 0xbb04844b nvdimm_flush +EXPORT_SYMBOL_GPL vmlinux 0xbafc6211 iommu_detach_group +EXPORT_SYMBOL_GPL vmlinux 0xbafeb323 ata_link_next EXPORT_SYMBOL_GPL vmlinux 0xbb0ab47b debug_locks +EXPORT_SYMBOL_GPL vmlinux 0xbb0bacc4 hwspin_lock_get_id +EXPORT_SYMBOL_GPL vmlinux 0xbb0c3ce4 inet6_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0xbb0e9aa9 snd_soc_register_card EXPORT_SYMBOL_GPL vmlinux 0xbb24f372 __SCK__tp_func_attach_device_to_domain -EXPORT_SYMBOL_GPL vmlinux 0xbb27eb69 find_extend_vma -EXPORT_SYMBOL_GPL vmlinux 0xbb2951ab led_trigger_blink_oneshot -EXPORT_SYMBOL_GPL vmlinux 0xbb2c6c6a pci_find_vsec_capability -EXPORT_SYMBOL_GPL vmlinux 0xbb3a0a63 dma_buf_dynamic_attach -EXPORT_SYMBOL_GPL vmlinux 0xbb43e5e1 of_irq_get_byname +EXPORT_SYMBOL_GPL vmlinux 0xbb47c19a shmem_file_setup EXPORT_SYMBOL_GPL vmlinux 0xbb4c7570 pids_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xbb5c7886 security_inode_setattr -EXPORT_SYMBOL_GPL vmlinux 0xbb62b884 devm_pm_opp_of_add_table +EXPORT_SYMBOL_GPL vmlinux 0xbb4e277b clk_hw_get_rate +EXPORT_SYMBOL_GPL vmlinux 0xbb5e60d5 snd_soc_dapm_disable_pin EXPORT_SYMBOL_GPL vmlinux 0xbb6a3cbd devlink_fmsg_arr_pair_nest_start -EXPORT_SYMBOL_GPL vmlinux 0xbb6d8610 espintcp_push_skb +EXPORT_SYMBOL_GPL vmlinux 0xbb717cc6 devlink_params_publish EXPORT_SYMBOL_GPL vmlinux 0xbb7195a5 xdp_warn -EXPORT_SYMBOL_GPL vmlinux 0xbb743580 crypto_ahash_setkey -EXPORT_SYMBOL_GPL vmlinux 0xbb805d7c rcuwait_wake_up -EXPORT_SYMBOL_GPL vmlinux 0xbb86dabf wm831x_auxadc_read -EXPORT_SYMBOL_GPL vmlinux 0xbbaa48ac usb_disable_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0xbbaf04d6 sysfs_add_file_to_group -EXPORT_SYMBOL_GPL vmlinux 0xbbb25dbb fat_time_fat2unix +EXPORT_SYMBOL_GPL vmlinux 0xbb80d068 ata_host_register EXPORT_SYMBOL_GPL vmlinux 0xbbb4ab02 mtk_mutex_put -EXPORT_SYMBOL_GPL vmlinux 0xbbb92ee4 cpufreq_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0xbbbfd58c devm_of_platform_populate -EXPORT_SYMBOL_GPL vmlinux 0xbbd157aa usb_block_urb -EXPORT_SYMBOL_GPL vmlinux 0xbbd1c93e cpufreq_freq_transition_begin +EXPORT_SYMBOL_GPL vmlinux 0xbbb77213 devm_hwspin_lock_register +EXPORT_SYMBOL_GPL vmlinux 0xbbbaa35d find_mci_by_dev +EXPORT_SYMBOL_GPL vmlinux 0xbbbff935 class_interface_register +EXPORT_SYMBOL_GPL vmlinux 0xbbccb355 crypto_unregister_shashes +EXPORT_SYMBOL_GPL vmlinux 0xbbdf3928 ata_pio_need_iordy +EXPORT_SYMBOL_GPL vmlinux 0xbbe53d57 ip6_dst_lookup_tunnel EXPORT_SYMBOL_GPL vmlinux 0xbbf4dfbe phy_basic_t1_features -EXPORT_SYMBOL_GPL vmlinux 0xbbf8d9c8 reset_simple_ops EXPORT_SYMBOL_GPL vmlinux 0xbbf95e29 sbitmap_del_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0xbbf96929 bio_start_io_acct_time -EXPORT_SYMBOL_GPL vmlinux 0xbc017b74 devm_regmap_init_vexpress_config -EXPORT_SYMBOL_GPL vmlinux 0xbc107e78 unregister_pernet_subsys -EXPORT_SYMBOL_GPL vmlinux 0xbc12b900 snd_soc_dapm_get_volsw -EXPORT_SYMBOL_GPL vmlinux 0xbc262066 devm_krealloc -EXPORT_SYMBOL_GPL vmlinux 0xbc2cd59a crypto_mod_put +EXPORT_SYMBOL_GPL vmlinux 0xbc06577e sysfs_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xbc104428 __bio_crypt_clone +EXPORT_SYMBOL_GPL vmlinux 0xbc1c5fb2 amba_ahb_device_add +EXPORT_SYMBOL_GPL vmlinux 0xbc2260cb trace_array_destroy +EXPORT_SYMBOL_GPL vmlinux 0xbc28be4c __netif_set_xps_queue EXPORT_SYMBOL_GPL vmlinux 0xbc3f2cb0 timecounter_cyc2time +EXPORT_SYMBOL_GPL vmlinux 0xbc4ac775 usb_gadget_frame_number +EXPORT_SYMBOL_GPL vmlinux 0xbc50f63c regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xbc5f659e xdp_build_skb_from_frame EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0xbc6d782f snd_soc_info_volsw_range -EXPORT_SYMBOL_GPL vmlinux 0xbc72cc6a usb_deregister_device_driver -EXPORT_SYMBOL_GPL vmlinux 0xbc764c31 crypto_shash_tfm_digest -EXPORT_SYMBOL_GPL vmlinux 0xbcb439c9 ahci_platform_resume_host -EXPORT_SYMBOL_GPL vmlinux 0xbcb7ebe0 sysfs_break_active_protection -EXPORT_SYMBOL_GPL vmlinux 0xbcbd0549 snd_dmaengine_pcm_get_chan -EXPORT_SYMBOL_GPL vmlinux 0xbcbd1754 snd_soc_dai_set_sysclk -EXPORT_SYMBOL_GPL vmlinux 0xbcbfe9b1 iommu_uapi_cache_invalidate +EXPORT_SYMBOL_GPL vmlinux 0xbc74fa5e irq_chip_retrigger_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0xbc79c23e md_bitmap_copy_from_slot +EXPORT_SYMBOL_GPL vmlinux 0xbc876cd6 dma_resv_get_fences +EXPORT_SYMBOL_GPL vmlinux 0xbc89df8f crypto_larval_alloc +EXPORT_SYMBOL_GPL vmlinux 0xbc8d40ae bio_add_zone_append_page +EXPORT_SYMBOL_GPL vmlinux 0xbca4badc dm_table_set_type +EXPORT_SYMBOL_GPL vmlinux 0xbca8ccb3 __traceiter_xdp_exception +EXPORT_SYMBOL_GPL vmlinux 0xbcbd1b42 pm_clk_add_notifier EXPORT_SYMBOL_GPL vmlinux 0xbcc15e75 ktime_get_coarse_with_offset -EXPORT_SYMBOL_GPL vmlinux 0xbcc4582d crypto_shash_digest -EXPORT_SYMBOL_GPL vmlinux 0xbcc7d6c0 tcp_rate_check_app_limited -EXPORT_SYMBOL_GPL vmlinux 0xbccb54f2 iomap_releasepage +EXPORT_SYMBOL_GPL vmlinux 0xbcc8588b of_cpufreq_cooling_register EXPORT_SYMBOL_GPL vmlinux 0xbccfd4d8 register_oldmem_pfn_is_ram -EXPORT_SYMBOL_GPL vmlinux 0xbcdaa998 ipv6_stub +EXPORT_SYMBOL_GPL vmlinux 0xbcd36a32 blk_mq_alloc_request_hctx EXPORT_SYMBOL_GPL vmlinux 0xbcdd5b99 iommu_group_set_name -EXPORT_SYMBOL_GPL vmlinux 0xbce0cc47 nf_ip_route -EXPORT_SYMBOL_GPL vmlinux 0xbce2b741 stmpe_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xbcee71b8 ohci_hub_status_data EXPORT_SYMBOL_GPL vmlinux 0xbcf1f0e6 zs_create_pool -EXPORT_SYMBOL_GPL vmlinux 0xbd25f075 snd_soc_component_compr_get_params -EXPORT_SYMBOL_GPL vmlinux 0xbd27d21a gov_attr_set_put -EXPORT_SYMBOL_GPL vmlinux 0xbd2ccd91 snd_soc_dpcm_get_substream -EXPORT_SYMBOL_GPL vmlinux 0xbd2f2e28 of_mpc8xxx_spi_probe -EXPORT_SYMBOL_GPL vmlinux 0xbd3450e5 nand_get_large_page_hamming_ooblayout -EXPORT_SYMBOL_GPL vmlinux 0xbd389256 validate_xmit_skb_list +EXPORT_SYMBOL_GPL vmlinux 0xbcf2bbe8 __iomap_dio_rw +EXPORT_SYMBOL_GPL vmlinux 0xbcfbc30a thermal_zone_get_zone_by_name +EXPORT_SYMBOL_GPL vmlinux 0xbcfd0e10 posix_clock_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbd08d3f8 dm_per_bio_data +EXPORT_SYMBOL_GPL vmlinux 0xbd1668c5 free_fib_info +EXPORT_SYMBOL_GPL vmlinux 0xbd1839ea extcon_unregister_notifier_all +EXPORT_SYMBOL_GPL vmlinux 0xbd2a3786 tcp_ca_openreq_child +EXPORT_SYMBOL_GPL vmlinux 0xbd36e4c7 serdev_device_write_buf EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq -EXPORT_SYMBOL_GPL vmlinux 0xbd60a5ab attribute_container_classdev_to_container -EXPORT_SYMBOL_GPL vmlinux 0xbd67c425 follow_pte -EXPORT_SYMBOL_GPL vmlinux 0xbd7147b7 fat_update_time -EXPORT_SYMBOL_GPL vmlinux 0xbd7683a4 pcie_aspm_capable -EXPORT_SYMBOL_GPL vmlinux 0xbd83bd4a pci_slots_kset -EXPORT_SYMBOL_GPL vmlinux 0xbd85e3aa iommu_device_register -EXPORT_SYMBOL_GPL vmlinux 0xbd89eb9f security_path_symlink -EXPORT_SYMBOL_GPL vmlinux 0xbd8e234f adp5520_read -EXPORT_SYMBOL_GPL vmlinux 0xbd95f7b8 sk_msg_free_nocharge -EXPORT_SYMBOL_GPL vmlinux 0xbda254f4 usb_free_streams -EXPORT_SYMBOL_GPL vmlinux 0xbda46f37 usb_hcd_pci_pm_ops -EXPORT_SYMBOL_GPL vmlinux 0xbda91e2d skcipher_walk_complete -EXPORT_SYMBOL_GPL vmlinux 0xbdbc9483 meson_a1_parse_dt_extra -EXPORT_SYMBOL_GPL vmlinux 0xbdbe0347 simple_attr_read -EXPORT_SYMBOL_GPL vmlinux 0xbdc18fbe __clk_get_hw -EXPORT_SYMBOL_GPL vmlinux 0xbdc26152 xdp_return_frame -EXPORT_SYMBOL_GPL vmlinux 0xbdcf9582 devfreq_event_get_event -EXPORT_SYMBOL_GPL vmlinux 0xbdd7b965 regulator_get_voltage_sel_pickable_regmap -EXPORT_SYMBOL_GPL vmlinux 0xbdda37a1 percpu_up_write -EXPORT_SYMBOL_GPL vmlinux 0xbdec57f6 user_read +EXPORT_SYMBOL_GPL vmlinux 0xbd421cde cpuidle_get_driver +EXPORT_SYMBOL_GPL vmlinux 0xbd568af3 tcp_twsk_unique +EXPORT_SYMBOL_GPL vmlinux 0xbd72310e nfs42_ssc_register +EXPORT_SYMBOL_GPL vmlinux 0xbd89eb59 of_dma_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0xbd92f1a7 ahci_save_initial_config +EXPORT_SYMBOL_GPL vmlinux 0xbda3350f pm_genpd_init +EXPORT_SYMBOL_GPL vmlinux 0xbda6156e sk_msg_memcopy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0xbdb1bfef dma_buf_attach +EXPORT_SYMBOL_GPL vmlinux 0xbdc8933f dev_pm_opp_put_opp_table +EXPORT_SYMBOL_GPL vmlinux 0xbdcdf9a4 extcon_set_state_sync +EXPORT_SYMBOL_GPL vmlinux 0xbdd348b4 handle_fasteoi_mask_irq +EXPORT_SYMBOL_GPL vmlinux 0xbde93c6a nand_reset +EXPORT_SYMBOL_GPL vmlinux 0xbdee98f9 __ata_change_queue_depth EXPORT_SYMBOL_GPL vmlinux 0xbdf4b96f percpu_ref_init -EXPORT_SYMBOL_GPL vmlinux 0xbdf53a14 of_irq_parse_and_map_pci -EXPORT_SYMBOL_GPL vmlinux 0xbe06488b snd_soc_component_compr_get_codec_caps -EXPORT_SYMBOL_GPL vmlinux 0xbe10cc61 init_uts_ns -EXPORT_SYMBOL_GPL vmlinux 0xbe21a819 sched_set_normal -EXPORT_SYMBOL_GPL vmlinux 0xbe2d2184 cpufreq_driver_fast_switch -EXPORT_SYMBOL_GPL vmlinux 0xbe3b9c1d pci_find_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0xbdf94f49 sdio_readl +EXPORT_SYMBOL_GPL vmlinux 0xbdfc2da4 sock_prot_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0xbe17d3c2 pid_vnr +EXPORT_SYMBOL_GPL vmlinux 0xbe302c8a wakeup_source_register +EXPORT_SYMBOL_GPL vmlinux 0xbe3c7422 clk_hw_get_parent_index +EXPORT_SYMBOL_GPL vmlinux 0xbe56958a __pm_runtime_idle +EXPORT_SYMBOL_GPL vmlinux 0xbe5a165a is_current_mnt_ns +EXPORT_SYMBOL_GPL vmlinux 0xbe5eb321 dev_pm_qos_flags +EXPORT_SYMBOL_GPL vmlinux 0xbe613571 mtk_pinconf_drive_set_rev1 EXPORT_SYMBOL_GPL vmlinux 0xbe687e88 wake_up_all_idle_cpus -EXPORT_SYMBOL_GPL vmlinux 0xbe68e106 blk_ksm_register -EXPORT_SYMBOL_GPL vmlinux 0xbe6fe265 umd_load_blob -EXPORT_SYMBOL_GPL vmlinux 0xbe8eb242 usb_anchor_urb +EXPORT_SYMBOL_GPL vmlinux 0xbe6dd9ee mtd_ooblayout_set_eccbytes +EXPORT_SYMBOL_GPL vmlinux 0xbe87af74 __clk_get_hw +EXPORT_SYMBOL_GPL vmlinux 0xbe8b5c8b devm_snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL vmlinux 0xbe91c097 gpiochip_line_is_persistent EXPORT_SYMBOL_GPL vmlinux 0xbe96dfd8 of_reconfig_notifier_unregister EXPORT_SYMBOL_GPL vmlinux 0xbe9a83d5 dw_pcie_write EXPORT_SYMBOL_GPL vmlinux 0xbea5ff1e static_key_initialized -EXPORT_SYMBOL_GPL vmlinux 0xbea84763 spi_finalize_current_transfer -EXPORT_SYMBOL_GPL vmlinux 0xbeaa8252 snd_soc_put_strobe -EXPORT_SYMBOL_GPL vmlinux 0xbeaf722e regmap_multi_reg_write_bypassed -EXPORT_SYMBOL_GPL vmlinux 0xbec9ad84 devm_add_action -EXPORT_SYMBOL_GPL vmlinux 0xbecf19a8 fuse_send_init -EXPORT_SYMBOL_GPL vmlinux 0xbed867bb badblocks_init -EXPORT_SYMBOL_GPL vmlinux 0xbee835af ksm_madvise -EXPORT_SYMBOL_GPL vmlinux 0xbeeb25af regulator_get_mode +EXPORT_SYMBOL_GPL vmlinux 0xbeaa2a00 pm_runtime_get_if_active +EXPORT_SYMBOL_GPL vmlinux 0xbeb07dac blk_queue_write_cache +EXPORT_SYMBOL_GPL vmlinux 0xbeb29b8b phy_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0xbee6fcb7 snd_soc_set_dmi_name +EXPORT_SYMBOL_GPL vmlinux 0xbef449a1 devlink_region_snapshot_id_get +EXPORT_SYMBOL_GPL vmlinux 0xbf029828 tps65217_reg_write EXPORT_SYMBOL_GPL vmlinux 0xbf041102 register_vt_notifier -EXPORT_SYMBOL_GPL vmlinux 0xbf10a1e7 handle_fasteoi_ack_irq -EXPORT_SYMBOL_GPL vmlinux 0xbf12d7ff __traceiter_rpm_resume -EXPORT_SYMBOL_GPL vmlinux 0xbf23df3e rio_add_mport_pw_handler -EXPORT_SYMBOL_GPL vmlinux 0xbf40a8d0 irq_domain_reset_irq_data -EXPORT_SYMBOL_GPL vmlinux 0xbf440e1d usb_phy_roothub_resume -EXPORT_SYMBOL_GPL vmlinux 0xbf470dfa sdio_readw -EXPORT_SYMBOL_GPL vmlinux 0xbf493365 pm_generic_restore_noirq +EXPORT_SYMBOL_GPL vmlinux 0xbf170394 genphy_c45_read_link +EXPORT_SYMBOL_GPL vmlinux 0xbf20ceda pm_genpd_remove_subdomain +EXPORT_SYMBOL_GPL vmlinux 0xbf22cfa8 handle_irq_desc +EXPORT_SYMBOL_GPL vmlinux 0xbf2466ee dst_cache_get_ip6 +EXPORT_SYMBOL_GPL vmlinux 0xbf3655a8 snd_soc_component_init_regmap +EXPORT_SYMBOL_GPL vmlinux 0xbf4ba11d genphy_c45_loopback EXPORT_SYMBOL_GPL vmlinux 0xbf554641 __tracepoint_sched_cpu_capacity_tp -EXPORT_SYMBOL_GPL vmlinux 0xbf6971ff sdio_f0_writeb -EXPORT_SYMBOL_GPL vmlinux 0xbf698403 __sdhci_set_timeout -EXPORT_SYMBOL_GPL vmlinux 0xbf745c97 regulator_get_current_limit -EXPORT_SYMBOL_GPL vmlinux 0xbf934b77 blkdev_ioctl -EXPORT_SYMBOL_GPL vmlinux 0xbf955fe5 __mmc_send_status -EXPORT_SYMBOL_GPL vmlinux 0xbfa59d86 ip6_sk_dst_lookup_flow -EXPORT_SYMBOL_GPL vmlinux 0xbfaf5e11 iomap_invalidatepage -EXPORT_SYMBOL_GPL vmlinux 0xbfb56756 inet_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0xbf61d37f i2c_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xbf62d8e3 gpiochip_find +EXPORT_SYMBOL_GPL vmlinux 0xbf6346aa raw_unhash_sk +EXPORT_SYMBOL_GPL vmlinux 0xbf65dc2b __mnt_is_readonly +EXPORT_SYMBOL_GPL vmlinux 0xbf897c96 ping_getfrag +EXPORT_SYMBOL_GPL vmlinux 0xbf8f274e snd_soc_add_component +EXPORT_SYMBOL_GPL vmlinux 0xbfa4d103 thermal_zone_get_temp EXPORT_SYMBOL_GPL vmlinux 0xbfbc5434 pciserial_resume_ports -EXPORT_SYMBOL_GPL vmlinux 0xbfc011ed ata_port_schedule_eh -EXPORT_SYMBOL_GPL vmlinux 0xbfc85576 __vfs_setxattr_noperm -EXPORT_SYMBOL_GPL vmlinux 0xbfd71a99 tpm_pcr_extend -EXPORT_SYMBOL_GPL vmlinux 0xbfe4c484 ata_dev_set_feature EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control EXPORT_SYMBOL_GPL vmlinux 0xbfe84dc9 __tracepoint_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0xbff5d27a rockchip_clk_add_lookup EXPORT_SYMBOL_GPL vmlinux 0xc00131cf visitor64 -EXPORT_SYMBOL_GPL vmlinux 0xc006dfba bus_get_kset +EXPORT_SYMBOL_GPL vmlinux 0xc015e142 tty_set_termios EXPORT_SYMBOL_GPL vmlinux 0xc018e1a0 list_lru_add -EXPORT_SYMBOL_GPL vmlinux 0xc01dd36b generic_fh_to_dentry -EXPORT_SYMBOL_GPL vmlinux 0xc01f1ba5 debugfs_create_u64 -EXPORT_SYMBOL_GPL vmlinux 0xc03735b2 of_changeset_action +EXPORT_SYMBOL_GPL vmlinux 0xc02239b8 sk_msg_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc0289947 __dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0xc03c9a8b usb_hcd_end_port_resume +EXPORT_SYMBOL_GPL vmlinux 0xc0456384 usb_hcd_platform_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xc04c0ac1 of_clk_parent_fill EXPORT_SYMBOL_GPL vmlinux 0xc04e20c3 percpu_ref_switch_to_atomic_sync -EXPORT_SYMBOL_GPL vmlinux 0xc0519573 iommu_unregister_device_fault_handler -EXPORT_SYMBOL_GPL vmlinux 0xc0524e91 da9052_request_irq +EXPORT_SYMBOL_GPL vmlinux 0xc0567ad4 simple_attr_write EXPORT_SYMBOL_GPL vmlinux 0xc0583e20 edac_queue_work -EXPORT_SYMBOL_GPL vmlinux 0xc05979cc stmpe811_adc_common_init EXPORT_SYMBOL_GPL vmlinux 0xc05cee80 ipi_get_hwirq EXPORT_SYMBOL_GPL vmlinux 0xc06b77b3 __cci_control_port_by_index -EXPORT_SYMBOL_GPL vmlinux 0xc076229b usb_register_dev -EXPORT_SYMBOL_GPL vmlinux 0xc07aefab ahci_print_info +EXPORT_SYMBOL_GPL vmlinux 0xc071facb set_secondary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xc07a2ded regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xc07e3d3a hwspin_lock_request_specific EXPORT_SYMBOL_GPL vmlinux 0xc081c246 bL_switcher_put_enabled EXPORT_SYMBOL_GPL vmlinux 0xc090c376 net_selftest_get_strings -EXPORT_SYMBOL_GPL vmlinux 0xc0a5d62e debugfs_create_bool -EXPORT_SYMBOL_GPL vmlinux 0xc0a80a10 regulator_get_voltage_rdev +EXPORT_SYMBOL_GPL vmlinux 0xc0a57e8d devlink_dpipe_headers_register EXPORT_SYMBOL_GPL vmlinux 0xc0a96e14 rcu_gp_is_expedited -EXPORT_SYMBOL_GPL vmlinux 0xc0a98022 crypto_alloc_sync_skcipher -EXPORT_SYMBOL_GPL vmlinux 0xc0bd29bf __netpoll_setup -EXPORT_SYMBOL_GPL vmlinux 0xc0d03377 dax_inode -EXPORT_SYMBOL_GPL vmlinux 0xc0dc8421 raw_abort +EXPORT_SYMBOL_GPL vmlinux 0xc0b4b51b pci_create_root_bus +EXPORT_SYMBOL_GPL vmlinux 0xc0c4bd3a tty_ldisc_flush +EXPORT_SYMBOL_GPL vmlinux 0xc0ceeb7f crypto_comp_decompress EXPORT_SYMBOL_GPL vmlinux 0xc0dcb59e edac_layer_name -EXPORT_SYMBOL_GPL vmlinux 0xc0e0020b devm_extcon_dev_free EXPORT_SYMBOL_GPL vmlinux 0xc0e75cec visitor128 +EXPORT_SYMBOL_GPL vmlinux 0xc0ea4f99 fat_update_time +EXPORT_SYMBOL_GPL vmlinux 0xc0ec3671 of_property_read_variable_u64_array +EXPORT_SYMBOL_GPL vmlinux 0xc0efbc1e cpuidle_get_cpu_driver EXPORT_SYMBOL_GPL vmlinux 0xc0f0458a ip_tunnel_unneed_metadata -EXPORT_SYMBOL_GPL vmlinux 0xc1002a7f pci_epf_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xc0f1ba85 power_supply_external_power_changed EXPORT_SYMBOL_GPL vmlinux 0xc10655da xas_get_mark -EXPORT_SYMBOL_GPL vmlinux 0xc106da26 nand_select_target +EXPORT_SYMBOL_GPL vmlinux 0xc1080a37 of_property_read_variable_u8_array EXPORT_SYMBOL_GPL vmlinux 0xc1086e0c sysrq_toggle_support -EXPORT_SYMBOL_GPL vmlinux 0xc10d2402 pinconf_generic_dt_node_to_map +EXPORT_SYMBOL_GPL vmlinux 0xc10a044a usb_gadget_activate +EXPORT_SYMBOL_GPL vmlinux 0xc10a55fc crypto_register_aead EXPORT_SYMBOL_GPL vmlinux 0xc10fddb8 name_to_dev_t -EXPORT_SYMBOL_GPL vmlinux 0xc115b19a irq_set_chip_and_handler_name -EXPORT_SYMBOL_GPL vmlinux 0xc117f15d crypto_hash_walk_done -EXPORT_SYMBOL_GPL vmlinux 0xc12e65ec check_move_unevictable_pages -EXPORT_SYMBOL_GPL vmlinux 0xc14bb5a7 _snd_pcm_stream_lock_irqsave -EXPORT_SYMBOL_GPL vmlinux 0xc1576d4b devm_nvmem_cell_get -EXPORT_SYMBOL_GPL vmlinux 0xc16a01dd kthread_func -EXPORT_SYMBOL_GPL vmlinux 0xc16da651 pci_generic_config_read +EXPORT_SYMBOL_GPL vmlinux 0xc12f87ba of_genpd_add_device +EXPORT_SYMBOL_GPL vmlinux 0xc13aa2c2 security_file_permission +EXPORT_SYMBOL_GPL vmlinux 0xc1456f66 __traceiter_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0xc149757c rt_mutex_unlock +EXPORT_SYMBOL_GPL vmlinux 0xc14efea2 housekeeping_affine EXPORT_SYMBOL_GPL vmlinux 0xc17515d7 usb_hcds_loaded -EXPORT_SYMBOL_GPL vmlinux 0xc18b69f7 irq_domain_free_irqs_common -EXPORT_SYMBOL_GPL vmlinux 0xc19a2f53 handle_fasteoi_nmi -EXPORT_SYMBOL_GPL vmlinux 0xc19f6ded devlink_alloc_ns -EXPORT_SYMBOL_GPL vmlinux 0xc1ae58c5 dma_get_any_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0xc1bfe2b8 mtk_eint_set_debounce -EXPORT_SYMBOL_GPL vmlinux 0xc1d1beb1 wakeup_sources_walk_next -EXPORT_SYMBOL_GPL vmlinux 0xc1dd1cc2 iommu_register_device_fault_handler -EXPORT_SYMBOL_GPL vmlinux 0xc1f97f0d skb_mpls_update_lse +EXPORT_SYMBOL_GPL vmlinux 0xc18084c2 regmap_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0xc189dc62 dev_pm_opp_get_opp_count +EXPORT_SYMBOL_GPL vmlinux 0xc1903f78 aead_init_geniv +EXPORT_SYMBOL_GPL vmlinux 0xc19fb88a __pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0xc1acdf3d transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc1bdd041 ata_bmdma_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0xc1c2148e regulator_sync_voltage +EXPORT_SYMBOL_GPL vmlinux 0xc1daeb0f iommu_domain_free +EXPORT_SYMBOL_GPL vmlinux 0xc1e23916 spi_res_add +EXPORT_SYMBOL_GPL vmlinux 0xc1e4ba52 __bio_try_merge_page +EXPORT_SYMBOL_GPL vmlinux 0xc1e9dfda __kthread_should_park +EXPORT_SYMBOL_GPL vmlinux 0xc1f10113 blkdev_ioctl EXPORT_SYMBOL_GPL vmlinux 0xc1f9977a unregister_ftrace_function -EXPORT_SYMBOL_GPL vmlinux 0xc1fcd48c ata_dev_next +EXPORT_SYMBOL_GPL vmlinux 0xc1ff5baa of_usb_update_otg_caps +EXPORT_SYMBOL_GPL vmlinux 0xc209ccc5 crypto_stats_ahash_update EXPORT_SYMBOL_GPL vmlinux 0xc212dbd1 __tracepoint_neigh_event_send_dead -EXPORT_SYMBOL_GPL vmlinux 0xc213d87a devm_hwspin_lock_request +EXPORT_SYMBOL_GPL vmlinux 0xc21a91c4 dev_pm_opp_add +EXPORT_SYMBOL_GPL vmlinux 0xc21b2e9f pm_genpd_remove EXPORT_SYMBOL_GPL vmlinux 0xc21b3cca devices_cgrp_subsys_on_dfl_key EXPORT_SYMBOL_GPL vmlinux 0xc222ead3 xas_find_marked -EXPORT_SYMBOL_GPL vmlinux 0xc226e1b7 snd_soc_free_ac97_component EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases -EXPORT_SYMBOL_GPL vmlinux 0xc22bfa72 fscrypt_set_bio_crypt_ctx -EXPORT_SYMBOL_GPL vmlinux 0xc230fe83 regmap_mmio_attach_clk -EXPORT_SYMBOL_GPL vmlinux 0xc24a6d5f crypto_alloc_kpp -EXPORT_SYMBOL_GPL vmlinux 0xc2546c43 get_net_ns_by_fd -EXPORT_SYMBOL_GPL vmlinux 0xc25e56e0 mddev_unlock +EXPORT_SYMBOL_GPL vmlinux 0xc239ff7c usb_phy_roothub_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc25671d7 irq_gc_mask_set_bit +EXPORT_SYMBOL_GPL vmlinux 0xc259377f da903x_write +EXPORT_SYMBOL_GPL vmlinux 0xc25c7567 snd_soc_find_dai_with_mutex +EXPORT_SYMBOL_GPL vmlinux 0xc25eb8ac crypto_stats_akcipher_verify EXPORT_SYMBOL_GPL vmlinux 0xc2692173 wakeup_sources_read_lock -EXPORT_SYMBOL_GPL vmlinux 0xc270d029 ata_cable_40wire +EXPORT_SYMBOL_GPL vmlinux 0xc26da3c2 ata_sff_error_handler EXPORT_SYMBOL_GPL vmlinux 0xc289e46d cpufreq_generic_frequency_table_verify -EXPORT_SYMBOL_GPL vmlinux 0xc29c6dd7 device_for_each_child EXPORT_SYMBOL_GPL vmlinux 0xc2a1cbaf __cpuhp_state_remove_instance -EXPORT_SYMBOL_GPL vmlinux 0xc2a3b0bf mtd_pairing_info_to_wunit EXPORT_SYMBOL_GPL vmlinux 0xc2a814db tcp_memory_pressure -EXPORT_SYMBOL_GPL vmlinux 0xc2d36f0e rio_dma_prep_slave_sg +EXPORT_SYMBOL_GPL vmlinux 0xc2c0b44b devlink_port_params_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc2cb6d1b device_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0xc2cf394d blk_mq_update_nr_hw_queues EXPORT_SYMBOL_GPL vmlinux 0xc2db7e18 xas_find -EXPORT_SYMBOL_GPL vmlinux 0xc2e4b0fc __reset_control_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0xc2e7fc9d ata_host_resume -EXPORT_SYMBOL_GPL vmlinux 0xc2e80493 ata_sff_check_status -EXPORT_SYMBOL_GPL vmlinux 0xc2f2cc3b serial8250_release_dma -EXPORT_SYMBOL_GPL vmlinux 0xc3078737 trace_array_destroy -EXPORT_SYMBOL_GPL vmlinux 0xc310cc46 perf_aux_output_flag -EXPORT_SYMBOL_GPL vmlinux 0xc314ee21 ahci_platform_disable_clks -EXPORT_SYMBOL_GPL vmlinux 0xc31564fe usb_get_descriptor -EXPORT_SYMBOL_GPL vmlinux 0xc334e44c snd_soc_dapm_new_controls -EXPORT_SYMBOL_GPL vmlinux 0xc33afb53 input_device_enabled +EXPORT_SYMBOL_GPL vmlinux 0xc2e88d66 to_nvdimm +EXPORT_SYMBOL_GPL vmlinux 0xc2e8e2c8 blk_trace_startstop +EXPORT_SYMBOL_GPL vmlinux 0xc2ece907 regulator_set_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0xc30cdccd regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xc31015cf pcie_port_find_device +EXPORT_SYMBOL_GPL vmlinux 0xc31262c2 gpiod_set_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xc338e722 __rio_local_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0xc341a7dc bio_start_io_acct EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object -EXPORT_SYMBOL_GPL vmlinux 0xc34c6acf platform_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc364960f snd_soc_put_volsw_range -EXPORT_SYMBOL_GPL vmlinux 0xc36f893c devm_gpio_request_one +EXPORT_SYMBOL_GPL vmlinux 0xc346e693 rio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xc3481867 serial8250_em485_start_tx EXPORT_SYMBOL_GPL vmlinux 0xc3708747 trace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0xc37b12de led_trigger_set EXPORT_SYMBOL_GPL vmlinux 0xc3805cd1 fs_ftype_to_dtype -EXPORT_SYMBOL_GPL vmlinux 0xc385bfb1 iommu_group_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0xc3a33040 phy_check_downshift -EXPORT_SYMBOL_GPL vmlinux 0xc3ba3166 mtd_lock -EXPORT_SYMBOL_GPL vmlinux 0xc3c18e1c kill_mtd_super +EXPORT_SYMBOL_GPL vmlinux 0xc38d3001 transport_add_device +EXPORT_SYMBOL_GPL vmlinux 0xc3a63ff1 of_icc_get_by_index +EXPORT_SYMBOL_GPL vmlinux 0xc3abbc64 devm_regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xc3b3aac4 clockevents_config_and_register +EXPORT_SYMBOL_GPL vmlinux 0xc3b7da67 tty_ldisc_ref_wait EXPORT_SYMBOL_GPL vmlinux 0xc3c4c6cc hash_algo_name -EXPORT_SYMBOL_GPL vmlinux 0xc3c80f23 crypto_stats_akcipher_sign -EXPORT_SYMBOL_GPL vmlinux 0xc3dde800 synth_event_add_next_val +EXPORT_SYMBOL_GPL vmlinux 0xc3c60e68 bus_set_iommu +EXPORT_SYMBOL_GPL vmlinux 0xc3d0527f ping_seq_start +EXPORT_SYMBOL_GPL vmlinux 0xc3d12125 udp_cmsg_send +EXPORT_SYMBOL_GPL vmlinux 0xc3d44d5d ata_std_qc_defer +EXPORT_SYMBOL_GPL vmlinux 0xc3d7864a spi_replace_transfers EXPORT_SYMBOL_GPL vmlinux 0xc3de65ff ring_buffer_bytes_cpu EXPORT_SYMBOL_GPL vmlinux 0xc3ea5305 iommu_default_passthrough -EXPORT_SYMBOL_GPL vmlinux 0xc3ee6ad6 __vfs_setxattr_locked -EXPORT_SYMBOL_GPL vmlinux 0xc3f1e8e7 skb_gso_validate_network_len -EXPORT_SYMBOL_GPL vmlinux 0xc410fcef debugfs_write_file_bool -EXPORT_SYMBOL_GPL vmlinux 0xc41aeb1d uprobe_register -EXPORT_SYMBOL_GPL vmlinux 0xc41dbd42 pci_test_config_bits -EXPORT_SYMBOL_GPL vmlinux 0xc41f3000 ipv4_redirect -EXPORT_SYMBOL_GPL vmlinux 0xc425198f debugfs_create_u8 +EXPORT_SYMBOL_GPL vmlinux 0xc3f54cb0 devlink_port_param_driverinit_value_set +EXPORT_SYMBOL_GPL vmlinux 0xc406b3e7 sdhci_free_host +EXPORT_SYMBOL_GPL vmlinux 0xc4075168 dw_pcie_upconfig_setup +EXPORT_SYMBOL_GPL vmlinux 0xc40c4426 nand_change_write_column_op +EXPORT_SYMBOL_GPL vmlinux 0xc4145c38 irq_domain_add_legacy +EXPORT_SYMBOL_GPL vmlinux 0xc416402a policy_has_boost_freq +EXPORT_SYMBOL_GPL vmlinux 0xc41d6328 phy_save_page +EXPORT_SYMBOL_GPL vmlinux 0xc420f136 __pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0xc4270647 sm501_set_clock EXPORT_SYMBOL_GPL vmlinux 0xc428068d sata_deb_timing_long -EXPORT_SYMBOL_GPL vmlinux 0xc438c3ec sdhci_dumpregs -EXPORT_SYMBOL_GPL vmlinux 0xc44e42ee tc3589x_reg_read -EXPORT_SYMBOL_GPL vmlinux 0xc44e741d serdev_device_remove +EXPORT_SYMBOL_GPL vmlinux 0xc452e3e3 class_destroy EXPORT_SYMBOL_GPL vmlinux 0xc454fc7b twl_get_type -EXPORT_SYMBOL_GPL vmlinux 0xc45d30cb firmware_request_cache +EXPORT_SYMBOL_GPL vmlinux 0xc455df09 edac_mc_add_mc_with_groups +EXPORT_SYMBOL_GPL vmlinux 0xc456f3b9 pci_destroy_slot EXPORT_SYMBOL_GPL vmlinux 0xc45e246f housekeeping_test_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc468fca5 tty_buffer_lock_exclusive EXPORT_SYMBOL_GPL vmlinux 0xc471c67a twl4030_audio_disable_resource -EXPORT_SYMBOL_GPL vmlinux 0xc485a8db snd_soc_dai_compr_ack -EXPORT_SYMBOL_GPL vmlinux 0xc4869ddb snd_soc_dapm_sync_unlocked -EXPORT_SYMBOL_GPL vmlinux 0xc4888e5b __rio_local_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0xc4753f63 clk_hw_is_prepared +EXPORT_SYMBOL_GPL vmlinux 0xc48b49b9 phy_validate EXPORT_SYMBOL_GPL vmlinux 0xc48b7ccf ata_mode_string -EXPORT_SYMBOL_GPL vmlinux 0xc48e0333 snd_soc_component_nc_pin_unlocked -EXPORT_SYMBOL_GPL vmlinux 0xc48f1318 of_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0xc491fdbf genphy_c45_pma_read_abilities -EXPORT_SYMBOL_GPL vmlinux 0xc4935e52 ata_scsi_slave_config EXPORT_SYMBOL_GPL vmlinux 0xc4937fde ti_clk_is_in_standby -EXPORT_SYMBOL_GPL vmlinux 0xc4944bb4 sysfs_create_files -EXPORT_SYMBOL_GPL vmlinux 0xc496f2bd mtk_pinconf_bias_set -EXPORT_SYMBOL_GPL vmlinux 0xc49d970e devm_regulator_get_exclusive -EXPORT_SYMBOL_GPL vmlinux 0xc4a4e802 __traceiter_rpm_suspend -EXPORT_SYMBOL_GPL vmlinux 0xc4abc51f strp_stop -EXPORT_SYMBOL_GPL vmlinux 0xc4addde2 dev_pm_qos_hide_flags -EXPORT_SYMBOL_GPL vmlinux 0xc4cd1395 fscrypt_prepare_new_inode +EXPORT_SYMBOL_GPL vmlinux 0xc4b295fc blk_mq_sched_mark_restart_hctx +EXPORT_SYMBOL_GPL vmlinux 0xc4c3fd96 phy_pm_runtime_get EXPORT_SYMBOL_GPL vmlinux 0xc4cf2420 ring_buffer_read_page -EXPORT_SYMBOL_GPL vmlinux 0xc4d48102 devm_regmap_del_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0xc4e72bcd get_governor_parent_kobj -EXPORT_SYMBOL_GPL vmlinux 0xc4ec0d6e init_user_ns EXPORT_SYMBOL_GPL vmlinux 0xc4f0da12 ktime_get_with_offset -EXPORT_SYMBOL_GPL vmlinux 0xc52190f3 stmpe_block_read -EXPORT_SYMBOL_GPL vmlinux 0xc5444c9d vfs_lock_file -EXPORT_SYMBOL_GPL vmlinux 0xc55c6557 switchdev_port_obj_del +EXPORT_SYMBOL_GPL vmlinux 0xc4f4d4a4 phy_modify_changed +EXPORT_SYMBOL_GPL vmlinux 0xc4fb3a0f lp8788_read_byte +EXPORT_SYMBOL_GPL vmlinux 0xc51c74f5 crypto_mod_get +EXPORT_SYMBOL_GPL vmlinux 0xc51c9cc8 vp_modern_set_status EXPORT_SYMBOL_GPL vmlinux 0xc55ff962 phy_basic_t1_features_array EXPORT_SYMBOL_GPL vmlinux 0xc5604800 clk_set_rate_exclusive -EXPORT_SYMBOL_GPL vmlinux 0xc5646d2b inet_csk_route_child_sock -EXPORT_SYMBOL_GPL vmlinux 0xc565b21d spi_mem_dirmap_create -EXPORT_SYMBOL_GPL vmlinux 0xc56691aa nand_change_write_column_op 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 0xc5782658 fat_attach -EXPORT_SYMBOL_GPL vmlinux 0xc57abe3f lwtunnel_cmp_encap -EXPORT_SYMBOL_GPL vmlinux 0xc57e8250 pm_runtime_forbid -EXPORT_SYMBOL_GPL vmlinux 0xc5851efa usb_urb_ep_type_check +EXPORT_SYMBOL_GPL vmlinux 0xc57ef363 snd_soc_bytes_get +EXPORT_SYMBOL_GPL vmlinux 0xc5848fa3 ping_close EXPORT_SYMBOL_GPL vmlinux 0xc58a3ee6 icc_node_destroy -EXPORT_SYMBOL_GPL vmlinux 0xc595db8f ata_port_wait_eh -EXPORT_SYMBOL_GPL vmlinux 0xc596c921 snd_soc_info_volsw_sx +EXPORT_SYMBOL_GPL vmlinux 0xc5a1f860 ata_std_postreset EXPORT_SYMBOL_GPL vmlinux 0xc5a5c678 uart_parse_earlycon -EXPORT_SYMBOL_GPL vmlinux 0xc5ade7c5 tpm_pm_suspend -EXPORT_SYMBOL_GPL vmlinux 0xc5b4e831 i2c_new_dummy_device -EXPORT_SYMBOL_GPL vmlinux 0xc5d02574 raw_hash_sk -EXPORT_SYMBOL_GPL vmlinux 0xc60247a8 pci_set_host_bridge_release -EXPORT_SYMBOL_GPL vmlinux 0xc60a0a47 unix_outq_len -EXPORT_SYMBOL_GPL vmlinux 0xc60e4633 snd_soc_dapm_put_pin_switch +EXPORT_SYMBOL_GPL vmlinux 0xc5ab6027 iptunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0xc5b28c73 attribute_container_classdev_to_container +EXPORT_SYMBOL_GPL vmlinux 0xc5c3c643 wm8350_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0xc5cd2daa bpf_prog_select_runtime +EXPORT_SYMBOL_GPL vmlinux 0xc5eeb81a gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xc5eed0da crypto_req_done +EXPORT_SYMBOL_GPL vmlinux 0xc5f25ffc mbox_client_txdone +EXPORT_SYMBOL_GPL vmlinux 0xc5f9ae01 hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc6066b75 regulator_list_voltage_linear EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier -EXPORT_SYMBOL_GPL vmlinux 0xc61fc84e skb_cow_data -EXPORT_SYMBOL_GPL vmlinux 0xc63c9a51 modify_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xc621b3f4 serdev_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc64255e5 __hwspin_unlock +EXPORT_SYMBOL_GPL vmlinux 0xc6431812 of_msi_configure EXPORT_SYMBOL_GPL vmlinux 0xc645fcf3 __tracepoint_wbc_writepage -EXPORT_SYMBOL_GPL vmlinux 0xc64c2afe sdhci_pltfm_free -EXPORT_SYMBOL_GPL vmlinux 0xc65519e6 firmware_kobj -EXPORT_SYMBOL_GPL vmlinux 0xc65cc7ed rio_alloc_net -EXPORT_SYMBOL_GPL vmlinux 0xc6691eec devm_hwspin_lock_request_specific +EXPORT_SYMBOL_GPL vmlinux 0xc6472d5b pci_ecam_create +EXPORT_SYMBOL_GPL vmlinux 0xc654de7c mtd_ooblayout_count_eccbytes +EXPORT_SYMBOL_GPL vmlinux 0xc661deb7 ata_sff_dma_pause +EXPORT_SYMBOL_GPL vmlinux 0xc662b873 usb_set_device_state +EXPORT_SYMBOL_GPL vmlinux 0xc6677465 blk_mq_complete_request_remote EXPORT_SYMBOL_GPL vmlinux 0xc66b77b1 iommu_group_set_iommudata -EXPORT_SYMBOL_GPL vmlinux 0xc6724f4c perf_event_sysfs_show EXPORT_SYMBOL_GPL vmlinux 0xc6779093 ring_buffer_record_enable -EXPORT_SYMBOL_GPL vmlinux 0xc67cc085 to_nd_region -EXPORT_SYMBOL_GPL vmlinux 0xc6846c50 clk_hw_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc67a37e9 usb_enable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0xc688370c debugfs_create_devm_seqfile +EXPORT_SYMBOL_GPL vmlinux 0xc68adef6 ata_scsi_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0xc696d8a9 irq_domain_xlate_onetwocell +EXPORT_SYMBOL_GPL vmlinux 0xc6977481 mptcp_pm_get_add_addr_accept_max EXPORT_SYMBOL_GPL vmlinux 0xc69b7ee5 zs_destroy_pool -EXPORT_SYMBOL_GPL vmlinux 0xc69f35ce i2c_handle_smbus_host_notify +EXPORT_SYMBOL_GPL vmlinux 0xc6a0d7da ata_host_detach EXPORT_SYMBOL_GPL vmlinux 0xc6a4a872 __clk_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0xc6c8b515 gpiod_direction_output -EXPORT_SYMBOL_GPL vmlinux 0xc6ce8be7 wm831x_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0xc6ba5f6c event_triggers_post_call +EXPORT_SYMBOL_GPL vmlinux 0xc6baa554 sysfs_add_file_to_group +EXPORT_SYMBOL_GPL vmlinux 0xc6c194bb pci_epc_mem_free_addr +EXPORT_SYMBOL_GPL vmlinux 0xc6c2b0a2 devm_pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0xc6d67e94 i2c_new_scanned_device +EXPORT_SYMBOL_GPL vmlinux 0xc6db2346 xhci_drop_endpoint +EXPORT_SYMBOL_GPL vmlinux 0xc6e5225f watchdog_notify_pretimeout EXPORT_SYMBOL_GPL vmlinux 0xc6e5bcf3 linear_range_get_selector_within EXPORT_SYMBOL_GPL vmlinux 0xc6e667f1 thread_notify_head EXPORT_SYMBOL_GPL vmlinux 0xc6eec8f5 clk_divider_ops -EXPORT_SYMBOL_GPL vmlinux 0xc6fb459e icc_disable -EXPORT_SYMBOL_GPL vmlinux 0xc711bfa2 devm_gpiod_get_array -EXPORT_SYMBOL_GPL vmlinux 0xc715a5e1 ata_sff_pause +EXPORT_SYMBOL_GPL vmlinux 0xc6fc784e irq_domain_associate_many EXPORT_SYMBOL_GPL vmlinux 0xc71e64a9 snmp_get_cpu_field -EXPORT_SYMBOL_GPL vmlinux 0xc72ca20e ip6_dst_lookup_flow -EXPORT_SYMBOL_GPL vmlinux 0xc72e812b usb_autopm_put_interface -EXPORT_SYMBOL_GPL vmlinux 0xc73159ec bus_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0xc733013b __devm_alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0xc74da52f usb_hcd_unlink_urb_from_ep -EXPORT_SYMBOL_GPL vmlinux 0xc7503f02 ata_sff_queue_pio_task -EXPORT_SYMBOL_GPL vmlinux 0xc7791773 phy_pm_runtime_put_sync -EXPORT_SYMBOL_GPL vmlinux 0xc7885eed dm_table_device_name -EXPORT_SYMBOL_GPL vmlinux 0xc7912554 sdhci_start_tuning +EXPORT_SYMBOL_GPL vmlinux 0xc73235e7 nf_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0xc748c80b dev_pm_opp_put_clkname +EXPORT_SYMBOL_GPL vmlinux 0xc74d87a1 bpf_prog_inc_not_zero +EXPORT_SYMBOL_GPL vmlinux 0xc75330dc register_mtd_blktrans +EXPORT_SYMBOL_GPL vmlinux 0xc7535b67 addrconf_add_linklocal +EXPORT_SYMBOL_GPL vmlinux 0xc75885f8 nvdimm_badblocks_populate +EXPORT_SYMBOL_GPL vmlinux 0xc75911d4 omap_iommu_domain_deactivate +EXPORT_SYMBOL_GPL vmlinux 0xc76a3b48 of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0xc76b62a6 max8997_update_reg +EXPORT_SYMBOL_GPL vmlinux 0xc78a7538 rtc_update_irq EXPORT_SYMBOL_GPL vmlinux 0xc79144f5 trace_seq_putmem_hex EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch -EXPORT_SYMBOL_GPL vmlinux 0xc7a594a5 usb_hcd_pci_probe EXPORT_SYMBOL_GPL vmlinux 0xc7a7e770 clk_bulk_enable -EXPORT_SYMBOL_GPL vmlinux 0xc7aa2d32 ip4_datagram_release_cb -EXPORT_SYMBOL_GPL vmlinux 0xc7d66523 sysfs_remove_file_self -EXPORT_SYMBOL_GPL vmlinux 0xc7e34dd3 fat_get_dotdot_entry +EXPORT_SYMBOL_GPL vmlinux 0xc7bec7f8 snd_soc_of_parse_card_name +EXPORT_SYMBOL_GPL vmlinux 0xc7d14097 scsi_unregister_device_handler EXPORT_SYMBOL_GPL vmlinux 0xc7e64fc2 asn1_encode_integer EXPORT_SYMBOL_GPL vmlinux 0xc7e78b2e vbin_printf -EXPORT_SYMBOL_GPL vmlinux 0xc7f09ee2 regmap_read -EXPORT_SYMBOL_GPL vmlinux 0xc7f56964 md_do_sync +EXPORT_SYMBOL_GPL vmlinux 0xc7ec4abc crypto_dequeue_request +EXPORT_SYMBOL_GPL vmlinux 0xc7ecc448 blk_insert_cloned_request +EXPORT_SYMBOL_GPL vmlinux 0xc7ee5254 unix_peer_get +EXPORT_SYMBOL_GPL vmlinux 0xc7f31641 tc3589x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xc7f79e90 usb_free_urb EXPORT_SYMBOL_GPL vmlinux 0xc7fa4aa9 kobj_ns_drop -EXPORT_SYMBOL_GPL vmlinux 0xc8122cd7 scsi_host_busy_iter -EXPORT_SYMBOL_GPL vmlinux 0xc81d0266 crypto_stats_skcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0xc8116edc device_match_name EXPORT_SYMBOL_GPL vmlinux 0xc8269f94 snd_soc_params_to_frame_size EXPORT_SYMBOL_GPL vmlinux 0xc82b3a88 __SCK__tp_func_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0xc82c5dc8 bus_get_device_klist EXPORT_SYMBOL_GPL vmlinux 0xc82c721f klist_remove -EXPORT_SYMBOL_GPL vmlinux 0xc82d5211 usb_initialize_gadget -EXPORT_SYMBOL_GPL vmlinux 0xc82dd34a of_icc_get -EXPORT_SYMBOL_GPL vmlinux 0xc84a8afd tty_release_struct -EXPORT_SYMBOL_GPL vmlinux 0xc84e0aef wb_writeout_inc -EXPORT_SYMBOL_GPL vmlinux 0xc8591832 tty_port_register_device_serdev +EXPORT_SYMBOL_GPL vmlinux 0xc83152d8 fib_table_lookup EXPORT_SYMBOL_GPL vmlinux 0xc8594d3d reset_control_acquire -EXPORT_SYMBOL_GPL vmlinux 0xc85ebad4 blk_rq_err_bytes +EXPORT_SYMBOL_GPL vmlinux 0xc8644f10 virtqueue_add_outbuf EXPORT_SYMBOL_GPL vmlinux 0xc8789b73 unix_table_lock -EXPORT_SYMBOL_GPL vmlinux 0xc88371da crypto_comp_compress -EXPORT_SYMBOL_GPL vmlinux 0xc8861811 __devm_rtc_register_device -EXPORT_SYMBOL_GPL vmlinux 0xc88bcaec lwtunnel_state_alloc -EXPORT_SYMBOL_GPL vmlinux 0xc8977939 bpf_offload_dev_match -EXPORT_SYMBOL_GPL vmlinux 0xc8a51d90 snd_soc_dai_set_clkdiv -EXPORT_SYMBOL_GPL vmlinux 0xc8a583da sdio_set_host_pm_flags -EXPORT_SYMBOL_GPL vmlinux 0xc8a58d0d __scsi_init_queue -EXPORT_SYMBOL_GPL vmlinux 0xc8a87151 devlink_resource_occ_get_register -EXPORT_SYMBOL_GPL vmlinux 0xc8c981d9 ata_qc_complete_multiple -EXPORT_SYMBOL_GPL vmlinux 0xc8d49b8e pci_epc_unmap_addr +EXPORT_SYMBOL_GPL vmlinux 0xc8a3c7ac pci_load_saved_state +EXPORT_SYMBOL_GPL vmlinux 0xc8a653c4 __mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xc8aa5ce2 udp_bpf_update_proto +EXPORT_SYMBOL_GPL vmlinux 0xc8bb1a03 regulator_disable +EXPORT_SYMBOL_GPL vmlinux 0xc8c090ea regmap_noinc_read +EXPORT_SYMBOL_GPL vmlinux 0xc8d11567 gpiod_set_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xc8d8c586 anon_inode_getfd EXPORT_SYMBOL_GPL vmlinux 0xc8ddd5b5 kstrdup_quotable -EXPORT_SYMBOL_GPL vmlinux 0xc8e6ee75 shash_ahash_update -EXPORT_SYMBOL_GPL vmlinux 0xc90b52e0 sb800_prefetch -EXPORT_SYMBOL_GPL vmlinux 0xc90b8b95 led_sysfs_enable -EXPORT_SYMBOL_GPL vmlinux 0xc90e3e05 device_driver_attach +EXPORT_SYMBOL_GPL vmlinux 0xc8f4bc2e snd_device_initialize +EXPORT_SYMBOL_GPL vmlinux 0xc8f9d9c3 scsi_nl_sock +EXPORT_SYMBOL_GPL vmlinux 0xc8fee569 nvdimm_volatile_region_create EXPORT_SYMBOL_GPL vmlinux 0xc9172aff pci_epc_get_next_free_bar +EXPORT_SYMBOL_GPL vmlinux 0xc9268f01 security_path_truncate EXPORT_SYMBOL_GPL vmlinux 0xc932e1cf of_get_display_timings -EXPORT_SYMBOL_GPL vmlinux 0xc93a51bd nexthop_find_by_id +EXPORT_SYMBOL_GPL vmlinux 0xc93adb2e efivar_entry_set_get_size EXPORT_SYMBOL_GPL vmlinux 0xc93ee1e7 usb_phy_roothub_init -EXPORT_SYMBOL_GPL vmlinux 0xc9458a33 dev_pm_opp_of_add_table -EXPORT_SYMBOL_GPL vmlinux 0xc94fb951 unix_inq_len -EXPORT_SYMBOL_GPL vmlinux 0xc950ab88 pci_generic_config_write32 +EXPORT_SYMBOL_GPL vmlinux 0xc940fe25 md_stop_writes +EXPORT_SYMBOL_GPL vmlinux 0xc9450d62 usb_hub_release_port EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist +EXPORT_SYMBOL_GPL vmlinux 0xc95e0514 relay_open +EXPORT_SYMBOL_GPL vmlinux 0xc95e58f6 regcache_mark_dirty +EXPORT_SYMBOL_GPL vmlinux 0xc95f1bde xhci_resume +EXPORT_SYMBOL_GPL vmlinux 0xc96d1ad4 wm8350_device_init EXPORT_SYMBOL_GPL vmlinux 0xc96fb674 nvmem_device_read -EXPORT_SYMBOL_GPL vmlinux 0xc973a199 snd_soc_dapm_disable_pin_unlocked EXPORT_SYMBOL_GPL vmlinux 0xc9825415 percpu_ref_is_zero EXPORT_SYMBOL_GPL vmlinux 0xc9827693 __bpf_call_base -EXPORT_SYMBOL_GPL vmlinux 0xc9842559 tcp_reno_cong_avoid -EXPORT_SYMBOL_GPL vmlinux 0xc989a1df xdp_rxq_info_unused -EXPORT_SYMBOL_GPL vmlinux 0xc9a1e3d5 clk_hw_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0xc9852e1f to_of_pinfo +EXPORT_SYMBOL_GPL vmlinux 0xc987c1cb __platform_driver_register +EXPORT_SYMBOL_GPL vmlinux 0xc98a80b6 sata_lpm_ignore_phy_events +EXPORT_SYMBOL_GPL vmlinux 0xc98d01a1 platform_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc99d39f6 serdev_device_set_parity EXPORT_SYMBOL_GPL vmlinux 0xc9a228ce property_entries_free -EXPORT_SYMBOL_GPL vmlinux 0xc9a6cda3 usb_gadget_unmap_request_by_dev EXPORT_SYMBOL_GPL vmlinux 0xc9aa1203 hwrng_register -EXPORT_SYMBOL_GPL vmlinux 0xc9ab9789 __pneigh_lookup -EXPORT_SYMBOL_GPL vmlinux 0xc9af6c9c iomap_writepage -EXPORT_SYMBOL_GPL vmlinux 0xc9b30a61 free_vm_area -EXPORT_SYMBOL_GPL vmlinux 0xc9c9b114 of_phandle_iterator_next -EXPORT_SYMBOL_GPL vmlinux 0xc9de33fc device_dma_supported -EXPORT_SYMBOL_GPL vmlinux 0xc9de7635 phy_optional_get -EXPORT_SYMBOL_GPL vmlinux 0xc9e38b70 apply_to_existing_page_range +EXPORT_SYMBOL_GPL vmlinux 0xc9bcd563 regulator_is_supported_voltage +EXPORT_SYMBOL_GPL vmlinux 0xc9cd21ab regmap_multi_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xc9dcc65e md_submit_discard_bio +EXPORT_SYMBOL_GPL vmlinux 0xc9e4ffe5 sysfs_group_change_owner +EXPORT_SYMBOL_GPL vmlinux 0xc9eb2b90 device_driver_attach EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu -EXPORT_SYMBOL_GPL vmlinux 0xc9ef0178 dma_buf_mmap -EXPORT_SYMBOL_GPL vmlinux 0xc9f62691 snd_soc_card_get_kcontrol +EXPORT_SYMBOL_GPL vmlinux 0xc9fa361c devm_of_platform_populate EXPORT_SYMBOL_GPL vmlinux 0xc9fb00f7 pl320_ipc_transmit EXPORT_SYMBOL_GPL vmlinux 0xc9fd634a usb_role_switch_put -EXPORT_SYMBOL_GPL vmlinux 0xca085c66 serial8250_do_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xca08e422 task_active_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0xca0e7831 snd_soc_dai_set_tristate -EXPORT_SYMBOL_GPL vmlinux 0xca145c68 xhci_gen_setup -EXPORT_SYMBOL_GPL vmlinux 0xca25aecf sysfs_create_mount_point -EXPORT_SYMBOL_GPL vmlinux 0xca323054 device_pm_wait_for_dev -EXPORT_SYMBOL_GPL vmlinux 0xca438b30 netlink_strict_get_check +EXPORT_SYMBOL_GPL vmlinux 0xc9fe28f1 __account_locked_vm +EXPORT_SYMBOL_GPL vmlinux 0xca0c700c platform_irqchip_probe +EXPORT_SYMBOL_GPL vmlinux 0xca1bdb56 ip6_route_input_lookup +EXPORT_SYMBOL_GPL vmlinux 0xca247cd1 fwnode_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0xca2f6aff ip_route_output_key_hash EXPORT_SYMBOL_GPL vmlinux 0xca454a34 vt_get_leds EXPORT_SYMBOL_GPL vmlinux 0xca467318 hibernation_set_ops -EXPORT_SYMBOL_GPL vmlinux 0xca4d08f7 mtk_pinconf_adv_drive_set -EXPORT_SYMBOL_GPL vmlinux 0xca71f889 snd_soc_jack_report -EXPORT_SYMBOL_GPL vmlinux 0xca75b989 snd_soc_set_dmi_name -EXPORT_SYMBOL_GPL vmlinux 0xca7794e8 nf_hook_entries_insert_raw +EXPORT_SYMBOL_GPL vmlinux 0xca52c1b3 of_phy_put +EXPORT_SYMBOL_GPL vmlinux 0xca5d5935 skb_scrub_packet +EXPORT_SYMBOL_GPL vmlinux 0xca60b315 tcpv6_prot EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop -EXPORT_SYMBOL_GPL vmlinux 0xca98e707 is_transparent_hugepage +EXPORT_SYMBOL_GPL vmlinux 0xca844e93 fib6_get_table +EXPORT_SYMBOL_GPL vmlinux 0xca980886 nd_cmd_out_size EXPORT_SYMBOL_GPL vmlinux 0xca9a1d5e ring_buffer_free -EXPORT_SYMBOL_GPL vmlinux 0xcaaf5322 devlink_flash_update_timeout_notify -EXPORT_SYMBOL_GPL vmlinux 0xcab9cfce irqchip_fwnode_ops EXPORT_SYMBOL_GPL vmlinux 0xcabe04de cpuidle_resume_and_unlock EXPORT_SYMBOL_GPL vmlinux 0xcabe1206 list_lru_destroy -EXPORT_SYMBOL_GPL vmlinux 0xcae70cae iommu_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xcae84f3d fb_deferred_io_init +EXPORT_SYMBOL_GPL vmlinux 0xcacdac44 skb_send_sock_locked +EXPORT_SYMBOL_GPL vmlinux 0xcad38f9f spi_finalize_current_transfer +EXPORT_SYMBOL_GPL vmlinux 0xcae71bff blk_ksm_reprogram_all_keys +EXPORT_SYMBOL_GPL vmlinux 0xcae7da5d snd_soc_find_dai EXPORT_SYMBOL_GPL vmlinux 0xcaecc540 kmsg_dump_get_line -EXPORT_SYMBOL_GPL vmlinux 0xcaee7811 pci_epf_add_vepf -EXPORT_SYMBOL_GPL vmlinux 0xcb0c3d06 crypto_unregister_kpp -EXPORT_SYMBOL_GPL vmlinux 0xcb10e5d6 devres_release_group +EXPORT_SYMBOL_GPL vmlinux 0xcb030739 wakeup_source_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcb069d6e rio_route_add_entry EXPORT_SYMBOL_GPL vmlinux 0xcb15eee9 sdhci_pci_get_data -EXPORT_SYMBOL_GPL vmlinux 0xcb1c6792 pinconf_generic_dt_free_map -EXPORT_SYMBOL_GPL vmlinux 0xcb203513 phy_resolve_aneg_linkmode -EXPORT_SYMBOL_GPL vmlinux 0xcb25c8c6 __hwspin_lock_timeout -EXPORT_SYMBOL_GPL vmlinux 0xcb26233d pci_cfg_access_trylock +EXPORT_SYMBOL_GPL vmlinux 0xcb1e26b6 regulator_is_enabled_regmap +EXPORT_SYMBOL_GPL vmlinux 0xcb20cb32 phy_select_page +EXPORT_SYMBOL_GPL vmlinux 0xcb222499 of_pci_get_max_link_speed +EXPORT_SYMBOL_GPL vmlinux 0xcb273027 nanddev_init +EXPORT_SYMBOL_GPL vmlinux 0xcb2a612f __clk_mux_determine_rate_closest EXPORT_SYMBOL_GPL vmlinux 0xcb2bfe2b nvmem_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xcb3710b4 dev_pm_opp_get_freq -EXPORT_SYMBOL_GPL vmlinux 0xcb3d5bd2 register_asymmetric_key_parser -EXPORT_SYMBOL_GPL vmlinux 0xcb3fe834 crypto_alloc_skcipher -EXPORT_SYMBOL_GPL vmlinux 0xcb4e08d8 __class_create -EXPORT_SYMBOL_GPL vmlinux 0xcb4e157b ata_bmdma_post_internal_cmd +EXPORT_SYMBOL_GPL vmlinux 0xcb490626 usb_hcd_pci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xcb51f2f0 dm_post_suspending +EXPORT_SYMBOL_GPL vmlinux 0xcb55858f crypto_alloc_kpp EXPORT_SYMBOL_GPL vmlinux 0xcb561441 mem_dump_obj -EXPORT_SYMBOL_GPL vmlinux 0xcb62cad7 regulator_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0xcb650ef3 xdp_convert_zc_to_xdp_frame -EXPORT_SYMBOL_GPL vmlinux 0xcb6dadd5 ata_eh_analyze_ncq_error -EXPORT_SYMBOL_GPL vmlinux 0xcb6f6408 sdhci_pltfm_suspend -EXPORT_SYMBOL_GPL vmlinux 0xcb8646e2 pinctrl_unregister -EXPORT_SYMBOL_GPL vmlinux 0xcb91ecab tps6586x_update -EXPORT_SYMBOL_GPL vmlinux 0xcb92f184 nvmem_cell_read_variable_le_u32 -EXPORT_SYMBOL_GPL vmlinux 0xcb93e929 mmu_notifier_get_locked -EXPORT_SYMBOL_GPL vmlinux 0xcb95df9f of_icc_xlate_onecell -EXPORT_SYMBOL_GPL vmlinux 0xcba7a383 device_get_next_child_node -EXPORT_SYMBOL_GPL vmlinux 0xcbbbed3c mtk_pinconf_drive_get -EXPORT_SYMBOL_GPL vmlinux 0xcbbd201f inet6_csk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0xcbc396f0 sysfs_create_group -EXPORT_SYMBOL_GPL vmlinux 0xcbd73674 css_next_descendant_pre -EXPORT_SYMBOL_GPL vmlinux 0xcbde08e2 ata_scsi_queuecmd -EXPORT_SYMBOL_GPL vmlinux 0xcbdf6ce7 pciserial_init_ports -EXPORT_SYMBOL_GPL vmlinux 0xcbdf9561 __devm_pci_epc_create +EXPORT_SYMBOL_GPL vmlinux 0xcb66eb8e ata_bmdma_dumb_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0xcb81d2fe uprobe_register +EXPORT_SYMBOL_GPL vmlinux 0xcba9b2f4 fwnode_create_software_node +EXPORT_SYMBOL_GPL vmlinux 0xcbaf9ba6 cpufreq_dbs_governor_exit +EXPORT_SYMBOL_GPL vmlinux 0xcbbcad60 del_mtd_blktrans_dev +EXPORT_SYMBOL_GPL vmlinux 0xcbce7068 inet6_sk_rebuild_header EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages -EXPORT_SYMBOL_GPL vmlinux 0xcbf03b42 mpc8xxx_spi_tx_buf_u32 -EXPORT_SYMBOL_GPL vmlinux 0xcbf1869e spi_controller_dma_unmap_mem_op_data -EXPORT_SYMBOL_GPL vmlinux 0xcbf2eb7b pinctrl_generic_add_group +EXPORT_SYMBOL_GPL vmlinux 0xcbe728f7 ata_sff_freeze EXPORT_SYMBOL_GPL vmlinux 0xcbf3617f rhashtable_walk_start_check -EXPORT_SYMBOL_GPL vmlinux 0xcbfa3668 mctrl_gpio_init -EXPORT_SYMBOL_GPL vmlinux 0xcc0797b2 usb_phy_set_charger_current -EXPORT_SYMBOL_GPL vmlinux 0xcc107d59 regmap_exit -EXPORT_SYMBOL_GPL vmlinux 0xcc1cf91c serial8250_em485_destroy +EXPORT_SYMBOL_GPL vmlinux 0xcbf4cd9a regulator_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0xcc207146 is_skb_forwardable +EXPORT_SYMBOL_GPL vmlinux 0xcc209d69 iommu_device_unlink +EXPORT_SYMBOL_GPL vmlinux 0xcc24024b nvmem_cell_read_variable_le_u64 +EXPORT_SYMBOL_GPL vmlinux 0xcc25ce92 hwmon_device_register EXPORT_SYMBOL_GPL vmlinux 0xcc2dbfd8 irq_domain_check_msi_remap EXPORT_SYMBOL_GPL vmlinux 0xcc312197 clk_mux_ops -EXPORT_SYMBOL_GPL vmlinux 0xcc387223 rtnl_put_cacheinfo EXPORT_SYMBOL_GPL vmlinux 0xcc39c03e nvmem_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcc3b49cd virtio_device_freeze +EXPORT_SYMBOL_GPL vmlinux 0xcc41e141 platform_get_resource_byname EXPORT_SYMBOL_GPL vmlinux 0xcc421600 __tracepoint_rpm_suspend -EXPORT_SYMBOL_GPL vmlinux 0xcc6c7958 devlink_trap_policers_register -EXPORT_SYMBOL_GPL vmlinux 0xcc77f302 balloon_page_enqueue -EXPORT_SYMBOL_GPL vmlinux 0xcc7c6bc3 raw_unhash_sk -EXPORT_SYMBOL_GPL vmlinux 0xcc801641 fwnode_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0xcc5cda43 bio_iov_iter_get_pages +EXPORT_SYMBOL_GPL vmlinux 0xcc7133c2 dma_mmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0xcc719456 blk_mq_freeze_queue_wait +EXPORT_SYMBOL_GPL vmlinux 0xcc79dc02 crypto_register_scomps EXPORT_SYMBOL_GPL vmlinux 0xcc935375 walk_iomem_res_desc EXPORT_SYMBOL_GPL vmlinux 0xcc95ef9c misc_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xcc969aed pinconf_generic_dt_subnode_to_map -EXPORT_SYMBOL_GPL vmlinux 0xcc9f121a da9052_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0xccadfba2 blk_lld_busy -EXPORT_SYMBOL_GPL vmlinux 0xccb19410 trace_event_ignore_this_pid -EXPORT_SYMBOL_GPL vmlinux 0xccc3a674 regmap_attach_dev -EXPORT_SYMBOL_GPL vmlinux 0xccc60ba5 snd_soc_dapm_put_volsw +EXPORT_SYMBOL_GPL vmlinux 0xcca6df18 __regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0xccaa1372 pci_dev_unlock +EXPORT_SYMBOL_GPL vmlinux 0xccb1c5e7 efivar_entry_size +EXPORT_SYMBOL_GPL vmlinux 0xccb210cf rio_register_mport +EXPORT_SYMBOL_GPL vmlinux 0xccb9fb38 ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0xccbb9398 ohci_setup +EXPORT_SYMBOL_GPL vmlinux 0xccc4a505 l3mdev_ifindex_lookup_by_table_id +EXPORT_SYMBOL_GPL vmlinux 0xcccb249e perf_aux_output_flag EXPORT_SYMBOL_GPL vmlinux 0xcccfb2fa sata_deb_timing_hotplug -EXPORT_SYMBOL_GPL vmlinux 0xccd427a9 iommu_uapi_sva_unbind_gpasid EXPORT_SYMBOL_GPL vmlinux 0xccd86806 ata_id_string +EXPORT_SYMBOL_GPL vmlinux 0xccdd34fb devm_regulator_bulk_register_supply_alias EXPORT_SYMBOL_GPL vmlinux 0xccf52bc9 sfp_upstream_start -EXPORT_SYMBOL_GPL vmlinux 0xcd08ca02 usb_add_phy_dev -EXPORT_SYMBOL_GPL vmlinux 0xcd168f05 devm_regulator_irq_helper +EXPORT_SYMBOL_GPL vmlinux 0xcd017157 rdev_get_name +EXPORT_SYMBOL_GPL vmlinux 0xcd0b538b device_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0xcd0ee76e mmc_cmdq_disable +EXPORT_SYMBOL_GPL vmlinux 0xcd193208 usb_phy_get_charger_current +EXPORT_SYMBOL_GPL vmlinux 0xcd1db742 ipv4_sk_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0xcd24e146 hash_digest_size -EXPORT_SYMBOL_GPL vmlinux 0xcd287529 l3mdev_link_scope_lookup -EXPORT_SYMBOL_GPL vmlinux 0xcd31cabc locks_alloc_lock -EXPORT_SYMBOL_GPL vmlinux 0xcd3c6e88 iommu_aux_detach_device +EXPORT_SYMBOL_GPL vmlinux 0xcd24edee ahci_pmp_retry_srst_ops +EXPORT_SYMBOL_GPL vmlinux 0xcd26d6dd scsi_free_sgtables +EXPORT_SYMBOL_GPL vmlinux 0xcd378965 iomap_file_unshare +EXPORT_SYMBOL_GPL vmlinux 0xcd489895 of_gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0xcd4b0a36 xfrm_audit_state_notfound_simple EXPORT_SYMBOL_GPL vmlinux 0xcd4badf9 __srcu_read_lock +EXPORT_SYMBOL_GPL vmlinux 0xcd67e38d serial8250_em485_stop_tx +EXPORT_SYMBOL_GPL vmlinux 0xcd6e4c37 i2c_dw_adjust_bus_speed EXPORT_SYMBOL_GPL vmlinux 0xcd6f2dc9 nf_log_buf_add -EXPORT_SYMBOL_GPL vmlinux 0xcd6fd431 handle_mm_fault -EXPORT_SYMBOL_GPL vmlinux 0xcd7aa7b3 blk_mq_sched_mark_restart_hctx -EXPORT_SYMBOL_GPL vmlinux 0xcd7b9797 balloon_page_alloc -EXPORT_SYMBOL_GPL vmlinux 0xcd7d7aaf simple_attr_release -EXPORT_SYMBOL_GPL vmlinux 0xcd7ddf87 pinctrl_register -EXPORT_SYMBOL_GPL vmlinux 0xcd90b6b1 hvc_alloc +EXPORT_SYMBOL_GPL vmlinux 0xcd716507 serial8250_rx_chars +EXPORT_SYMBOL_GPL vmlinux 0xcd785dce of_platform_default_populate +EXPORT_SYMBOL_GPL vmlinux 0xcd86eb3b skb_complete_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0xcd89792e compat_only_sysfs_link_entry_to_kobj EXPORT_SYMBOL_GPL vmlinux 0xcd91b127 system_highpri_wq +EXPORT_SYMBOL_GPL vmlinux 0xcd923222 cros_ec_check_features EXPORT_SYMBOL_GPL vmlinux 0xcd974f00 rcu_all_qs -EXPORT_SYMBOL_GPL vmlinux 0xcd9bfa5a task_cls_state +EXPORT_SYMBOL_GPL vmlinux 0xcd97b05b regulator_get_voltage_sel_pickable_regmap EXPORT_SYMBOL_GPL vmlinux 0xcd9cd2ff wakeme_after_rcu -EXPORT_SYMBOL_GPL vmlinux 0xcd9ff67e ata_port_pbar_desc -EXPORT_SYMBOL_GPL vmlinux 0xcda2bbbc pci_epc_init_notify -EXPORT_SYMBOL_GPL vmlinux 0xcda95701 nanddev_isbad -EXPORT_SYMBOL_GPL vmlinux 0xcda9584a devm_hwmon_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xcdaa135e pm_generic_freeze_noirq -EXPORT_SYMBOL_GPL vmlinux 0xcdaf77b2 tc3589x_block_write -EXPORT_SYMBOL_GPL vmlinux 0xcdb67228 nvdimm_in_overwrite +EXPORT_SYMBOL_GPL vmlinux 0xcdaeccf8 irq_setup_generic_chip EXPORT_SYMBOL_GPL vmlinux 0xcdb6adcc ras_userspace_consumers -EXPORT_SYMBOL_GPL vmlinux 0xcdb776fb trace_put_event_file -EXPORT_SYMBOL_GPL vmlinux 0xcdc94c29 class_destroy EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs -EXPORT_SYMBOL_GPL vmlinux 0xce1ab33b ip6_route_lookup -EXPORT_SYMBOL_GPL vmlinux 0xce31014d sata_scr_read -EXPORT_SYMBOL_GPL vmlinux 0xce4066c8 sk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0xcdd90592 snd_soc_rtdcom_lookup +EXPORT_SYMBOL_GPL vmlinux 0xcdeafd3a nand_reset_op +EXPORT_SYMBOL_GPL vmlinux 0xcdf5e91b security_kernel_read_file +EXPORT_SYMBOL_GPL vmlinux 0xce30d156 irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xce4ed388 sdio_release_irq +EXPORT_SYMBOL_GPL vmlinux 0xce5f33aa nfs_ssc_unregister EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching -EXPORT_SYMBOL_GPL vmlinux 0xce70c6c7 cpufreq_dbs_governor_limits -EXPORT_SYMBOL_GPL vmlinux 0xce9f0258 ata_pci_device_suspend -EXPORT_SYMBOL_GPL vmlinux 0xcec9b79f mmc_send_tuning -EXPORT_SYMBOL_GPL vmlinux 0xcecdddbf tps65217_reg_write -EXPORT_SYMBOL_GPL vmlinux 0xced74ce6 rockchip_clk_add_lookup -EXPORT_SYMBOL_GPL vmlinux 0xcedbbef3 tps6586x_write -EXPORT_SYMBOL_GPL vmlinux 0xcee07e95 tty_get_pgrp +EXPORT_SYMBOL_GPL vmlinux 0xce744d12 dma_buf_move_notify +EXPORT_SYMBOL_GPL vmlinux 0xce87d922 irq_domain_translate_twocell +EXPORT_SYMBOL_GPL vmlinux 0xce933095 __strp_unpause +EXPORT_SYMBOL_GPL vmlinux 0xcea976ec gpiochip_get_desc +EXPORT_SYMBOL_GPL vmlinux 0xceb7f1f3 evm_verifyxattr +EXPORT_SYMBOL_GPL vmlinux 0xcecb9447 iommu_device_sysfs_add +EXPORT_SYMBOL_GPL vmlinux 0xced2316e regulator_is_equal +EXPORT_SYMBOL_GPL vmlinux 0xced3c8cb devm_pm_opp_of_add_table EXPORT_SYMBOL_GPL vmlinux 0xcee1641c kgdb_unregister_nmi_console -EXPORT_SYMBOL_GPL vmlinux 0xcee63edf __kernel_write EXPORT_SYMBOL_GPL vmlinux 0xcee88e7a of_overlay_fdt_apply -EXPORT_SYMBOL_GPL vmlinux 0xceef7ed9 edac_device_add_device +EXPORT_SYMBOL_GPL vmlinux 0xceef2716 snd_soc_bytes_info EXPORT_SYMBOL_GPL vmlinux 0xcef4d5b4 __alloc_percpu_gfp -EXPORT_SYMBOL_GPL vmlinux 0xcf01c83f snd_soc_get_pcm_runtime -EXPORT_SYMBOL_GPL vmlinux 0xcf12fdcf crypto_register_template -EXPORT_SYMBOL_GPL vmlinux 0xcf1963d5 __devm_clk_hw_register_mux +EXPORT_SYMBOL_GPL vmlinux 0xcef88979 phy_exit +EXPORT_SYMBOL_GPL vmlinux 0xcefeace8 handle_fasteoi_nmi +EXPORT_SYMBOL_GPL vmlinux 0xcf028bb6 pci_num_vf EXPORT_SYMBOL_GPL vmlinux 0xcf28f55e trace_clock_global -EXPORT_SYMBOL_GPL vmlinux 0xcf33bd6a skb_consume_udp -EXPORT_SYMBOL_GPL vmlinux 0xcf35276a regulator_set_drvdata -EXPORT_SYMBOL_GPL vmlinux 0xcf38e538 mmu_interval_notifier_insert -EXPORT_SYMBOL_GPL vmlinux 0xcf5eb426 edac_pci_create_generic_ctl -EXPORT_SYMBOL_GPL vmlinux 0xcf63c4a9 br_fdb_test_addr_hook -EXPORT_SYMBOL_GPL vmlinux 0xcf71eb08 of_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0xcf8e1e4a device_store_bool -EXPORT_SYMBOL_GPL vmlinux 0xcf91c6cd cci_ace_get_port -EXPORT_SYMBOL_GPL vmlinux 0xcfa63508 pci_user_read_config_dword -EXPORT_SYMBOL_GPL vmlinux 0xcfa77168 wakeup_source_remove -EXPORT_SYMBOL_GPL vmlinux 0xcfb761b4 regmap_test_bits -EXPORT_SYMBOL_GPL vmlinux 0xcfbfde8b ipv4_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0xcfc429fa regulator_force_disable +EXPORT_SYMBOL_GPL vmlinux 0xcf2ecbab validate_xmit_xfrm +EXPORT_SYMBOL_GPL vmlinux 0xcf395363 rio_release_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0xcf427bde wm831x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xcf59e976 thermal_zone_of_get_sensor_id +EXPORT_SYMBOL_GPL vmlinux 0xcf5b0b18 nanddev_erase +EXPORT_SYMBOL_GPL vmlinux 0xcf5bd70f dax_inode +EXPORT_SYMBOL_GPL vmlinux 0xcf7a8fca pinmux_generic_get_function_groups +EXPORT_SYMBOL_GPL vmlinux 0xcf7f757a rio_mport_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0xcf893e03 dev_pm_opp_find_freq_ceil_by_volt +EXPORT_SYMBOL_GPL vmlinux 0xcfb5bd3e gpiochip_reqres_irq EXPORT_SYMBOL_GPL vmlinux 0xcfc5108a devlink_fmsg_u8_pair_put +EXPORT_SYMBOL_GPL vmlinux 0xcfc5e98f mtd_read_oob EXPORT_SYMBOL_GPL vmlinux 0xcfc7b4e4 rcu_barrier_tasks_trace -EXPORT_SYMBOL_GPL vmlinux 0xcfe1ee12 iommu_present -EXPORT_SYMBOL_GPL vmlinux 0xcfe35acf ata_do_dev_read_id -EXPORT_SYMBOL_GPL vmlinux 0xcfe78d28 crypto_shash_final -EXPORT_SYMBOL_GPL vmlinux 0xcfeefbc7 is_skb_forwardable -EXPORT_SYMBOL_GPL vmlinux 0xd0065525 __root_device_register -EXPORT_SYMBOL_GPL vmlinux 0xd008f171 regmap_get_val_bytes -EXPORT_SYMBOL_GPL vmlinux 0xd0179e3f snd_dmaengine_pcm_pointer -EXPORT_SYMBOL_GPL vmlinux 0xd026adf1 pci_create_slot -EXPORT_SYMBOL_GPL vmlinux 0xd0311268 pinctrl_select_state -EXPORT_SYMBOL_GPL vmlinux 0xd034b1df hwspin_lock_register +EXPORT_SYMBOL_GPL vmlinux 0xcfc89028 icc_sync_state +EXPORT_SYMBOL_GPL vmlinux 0xcfdf5fdf crypto_register_ahash +EXPORT_SYMBOL_GPL vmlinux 0xd0191422 xfrm_audit_state_notfound +EXPORT_SYMBOL_GPL vmlinux 0xd01a2576 sdhci_adma_write_desc EXPORT_SYMBOL_GPL vmlinux 0xd03eaf4c schedule_hrtimeout_range +EXPORT_SYMBOL_GPL vmlinux 0xd0445d1a fscrypt_ioctl_remove_key EXPORT_SYMBOL_GPL vmlinux 0xd04aedfd __SCK__tp_func_arm_event +EXPORT_SYMBOL_GPL vmlinux 0xd057c88f unregister_mtd_user +EXPORT_SYMBOL_GPL vmlinux 0xd057d7d8 irq_create_of_mapping EXPORT_SYMBOL_GPL vmlinux 0xd06524ba raw_notifier_chain_unregister EXPORT_SYMBOL_GPL vmlinux 0xd067d3c5 system_freezable_power_efficient_wq -EXPORT_SYMBOL_GPL vmlinux 0xd068f7a3 sk_free_unlock_clone -EXPORT_SYMBOL_GPL vmlinux 0xd06dcfb6 nand_ecc_init_req_tweaking -EXPORT_SYMBOL_GPL vmlinux 0xd075f82f thermal_of_cooling_device_register -EXPORT_SYMBOL_GPL vmlinux 0xd086245c dma_get_merge_boundary -EXPORT_SYMBOL_GPL vmlinux 0xd0b1bd95 irq_chip_mask_parent -EXPORT_SYMBOL_GPL vmlinux 0xd0b44d2d uart_get_rs485_mode -EXPORT_SYMBOL_GPL vmlinux 0xd0bf6c04 ata_std_qc_defer +EXPORT_SYMBOL_GPL vmlinux 0xd07111aa clk_hw_get_num_parents +EXPORT_SYMBOL_GPL vmlinux 0xd072c82c tpm2_flush_context +EXPORT_SYMBOL_GPL vmlinux 0xd08a1a2c netdev_walk_all_lower_dev +EXPORT_SYMBOL_GPL vmlinux 0xd08a42f5 dev_attr_em_message +EXPORT_SYMBOL_GPL vmlinux 0xd0930261 irq_remove_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xd0942a19 blkcg_activate_policy +EXPORT_SYMBOL_GPL vmlinux 0xd09aa7b5 serial8250_clear_and_reinit_fifos +EXPORT_SYMBOL_GPL vmlinux 0xd0a2deb8 mm_kobj +EXPORT_SYMBOL_GPL vmlinux 0xd0aa8fb7 dm_start_time_ns_from_clone EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart -EXPORT_SYMBOL_GPL vmlinux 0xd0c10975 device_phy_find_device -EXPORT_SYMBOL_GPL vmlinux 0xd0c6f6e7 spi_write_then_read +EXPORT_SYMBOL_GPL vmlinux 0xd0cfc637 sdhci_set_ios EXPORT_SYMBOL_GPL vmlinux 0xd0db0f12 run_dax -EXPORT_SYMBOL_GPL vmlinux 0xd0f24910 clk_hw_get_parent_by_index +EXPORT_SYMBOL_GPL vmlinux 0xd0e7c97f led_update_brightness EXPORT_SYMBOL_GPL vmlinux 0xd0fb9c41 smp_call_function_single_async -EXPORT_SYMBOL_GPL vmlinux 0xd10304cb tpm_send -EXPORT_SYMBOL_GPL vmlinux 0xd1060443 crypto_register_scomp -EXPORT_SYMBOL_GPL vmlinux 0xd1091e48 devm_clk_bulk_get_all +EXPORT_SYMBOL_GPL vmlinux 0xd111c4b4 inode_congested EXPORT_SYMBOL_GPL vmlinux 0xd12159a7 stack_trace_snprint -EXPORT_SYMBOL_GPL vmlinux 0xd12594ef of_genpd_add_subdomain +EXPORT_SYMBOL_GPL vmlinux 0xd1237d2e device_find_child_by_name +EXPORT_SYMBOL_GPL vmlinux 0xd1300acd usb_hcd_start_port_resume +EXPORT_SYMBOL_GPL vmlinux 0xd136e195 blk_queue_zone_write_granularity +EXPORT_SYMBOL_GPL vmlinux 0xd1478e91 regulator_get_voltage EXPORT_SYMBOL_GPL vmlinux 0xd1481de7 mpi_clear -EXPORT_SYMBOL_GPL vmlinux 0xd1639739 i2c_dw_validate_speed -EXPORT_SYMBOL_GPL vmlinux 0xd1685bba sbitmap_bitmap_show -EXPORT_SYMBOL_GPL vmlinux 0xd17bcdc7 led_get_default_pattern +EXPORT_SYMBOL_GPL vmlinux 0xd14920c1 fwnode_handle_put +EXPORT_SYMBOL_GPL vmlinux 0xd14c1f09 ip6_sk_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0xd14e6292 fib_nexthop_info +EXPORT_SYMBOL_GPL vmlinux 0xd156304e snd_soc_dpcm_runtime_update +EXPORT_SYMBOL_GPL vmlinux 0xd157ccd1 led_trigger_blink_oneshot +EXPORT_SYMBOL_GPL vmlinux 0xd15a6eb7 devm_namespace_disable +EXPORT_SYMBOL_GPL vmlinux 0xd16a4b01 iommu_aux_detach_device +EXPORT_SYMBOL_GPL vmlinux 0xd1725067 mtk_pinconf_bias_disable_set EXPORT_SYMBOL_GPL vmlinux 0xd17d2a22 phy_basic_features -EXPORT_SYMBOL_GPL vmlinux 0xd17ed453 extcon_get_property_capability -EXPORT_SYMBOL_GPL vmlinux 0xd18462c5 sfp_register_socket -EXPORT_SYMBOL_GPL vmlinux 0xd1923e39 ohci_init_driver -EXPORT_SYMBOL_GPL vmlinux 0xd1948a46 bus_find_device -EXPORT_SYMBOL_GPL vmlinux 0xd198349d dw_pcie_find_capability -EXPORT_SYMBOL_GPL vmlinux 0xd1a72a35 ata_pci_bmdma_clear_simplex +EXPORT_SYMBOL_GPL vmlinux 0xd17f9a53 devlink_sb_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd180d6a3 usb_del_gadget +EXPORT_SYMBOL_GPL vmlinux 0xd18f1bd2 watchdog_set_last_hw_keepalive +EXPORT_SYMBOL_GPL vmlinux 0xd1907a6f __sdhci_read_caps EXPORT_SYMBOL_GPL vmlinux 0xd1a9ca15 __SCK__tp_func_neigh_update -EXPORT_SYMBOL_GPL vmlinux 0xd1bddd7f blkdev_zone_mgmt -EXPORT_SYMBOL_GPL vmlinux 0xd1be2763 invalidate_inode_pages2 -EXPORT_SYMBOL_GPL vmlinux 0xd1be38cc pinctrl_generic_get_group +EXPORT_SYMBOL_GPL vmlinux 0xd1bd83ef mtd_blktrans_cease_background EXPORT_SYMBOL_GPL vmlinux 0xd1c2e26c __tracepoint_arm_event +EXPORT_SYMBOL_GPL vmlinux 0xd1c9dad0 fwnode_graph_get_remote_port_parent EXPORT_SYMBOL_GPL vmlinux 0xd1cbc23c add_timer_on -EXPORT_SYMBOL_GPL vmlinux 0xd1ceca44 led_trigger_register_simple -EXPORT_SYMBOL_GPL vmlinux 0xd1eaecaf pm_genpd_remove_device EXPORT_SYMBOL_GPL vmlinux 0xd1f2eee2 nf_logger_find_get -EXPORT_SYMBOL_GPL vmlinux 0xd1fdd0d8 pm_generic_poweroff -EXPORT_SYMBOL_GPL vmlinux 0xd208563b strp_data_ready -EXPORT_SYMBOL_GPL vmlinux 0xd20a1624 led_classdev_resume -EXPORT_SYMBOL_GPL vmlinux 0xd2139671 of_property_count_elems_of_size -EXPORT_SYMBOL_GPL vmlinux 0xd214f36b rio_request_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0xd202ce57 genphy_c45_an_disable_aneg +EXPORT_SYMBOL_GPL vmlinux 0xd2150ad8 xhci_ext_cap_init 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 0xd21fab9b gpiochip_generic_config -EXPORT_SYMBOL_GPL vmlinux 0xd223ae48 regulator_is_enabled_regmap -EXPORT_SYMBOL_GPL vmlinux 0xd225d35b mpc8xxx_spi_probe -EXPORT_SYMBOL_GPL vmlinux 0xd230b633 vchan_init -EXPORT_SYMBOL_GPL vmlinux 0xd235d403 dpm_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0xd239edda __traceiter_br_fdb_update -EXPORT_SYMBOL_GPL vmlinux 0xd23ecbe9 snd_device_disconnect -EXPORT_SYMBOL_GPL vmlinux 0xd2410f55 __iomap_dio_rw -EXPORT_SYMBOL_GPL vmlinux 0xd2520776 pci_bridge_secondary_bus_reset -EXPORT_SYMBOL_GPL vmlinux 0xd2553a04 pinctrl_add_gpio_ranges +EXPORT_SYMBOL_GPL vmlinux 0xd21f8ef7 regulator_disable_regmap +EXPORT_SYMBOL_GPL vmlinux 0xd229c519 usb_autopm_get_interface_no_resume +EXPORT_SYMBOL_GPL vmlinux 0xd2318701 __devm_regmap_init +EXPORT_SYMBOL_GPL vmlinux 0xd231cec4 ata_link_abort +EXPORT_SYMBOL_GPL vmlinux 0xd23313d5 serdev_controller_alloc +EXPORT_SYMBOL_GPL vmlinux 0xd23e95ea device_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0xd24d6a14 snd_soc_dpcm_fe_can_update EXPORT_SYMBOL_GPL vmlinux 0xd260af0d ring_buffer_write +EXPORT_SYMBOL_GPL vmlinux 0xd267d77f fscrypt_set_bio_crypt_ctx_bh EXPORT_SYMBOL_GPL vmlinux 0xd270e977 pci_bridge_emul_conf_write -EXPORT_SYMBOL_GPL vmlinux 0xd271ee6a fuse_abort_conn EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative -EXPORT_SYMBOL_GPL vmlinux 0xd278ca4c pci_walk_bus +EXPORT_SYMBOL_GPL vmlinux 0xd278457c sdhci_set_power_noreg +EXPORT_SYMBOL_GPL vmlinux 0xd27895c1 of_pci_range_parser_one +EXPORT_SYMBOL_GPL vmlinux 0xd289ae1c strp_data_ready +EXPORT_SYMBOL_GPL vmlinux 0xd28cac0e lwtunnel_input +EXPORT_SYMBOL_GPL vmlinux 0xd28ea549 da903x_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xd28ef845 alloc_skb_for_msg +EXPORT_SYMBOL_GPL vmlinux 0xd291abdc kthread_mod_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0xd29b3b19 posix_clock_register +EXPORT_SYMBOL_GPL vmlinux 0xd2a05bbf sdio_retune_hold_now +EXPORT_SYMBOL_GPL vmlinux 0xd2a27319 regmap_async_complete +EXPORT_SYMBOL_GPL vmlinux 0xd2a2a5e8 irq_find_matching_fwspec EXPORT_SYMBOL_GPL vmlinux 0xd2b10a05 ata_timing_find_mode -EXPORT_SYMBOL_GPL vmlinux 0xd2bec37b ahci_do_hardreset -EXPORT_SYMBOL_GPL vmlinux 0xd2d8f7f6 sched_setattr_nocheck -EXPORT_SYMBOL_GPL vmlinux 0xd2e29a58 devm_init_badblocks -EXPORT_SYMBOL_GPL vmlinux 0xd2ed4c51 pm_genpd_remove_subdomain -EXPORT_SYMBOL_GPL vmlinux 0xd2f2be48 device_get_child_node_count +EXPORT_SYMBOL_GPL vmlinux 0xd2ba4912 __cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0xd2bab988 omap_iommu_domain_activate +EXPORT_SYMBOL_GPL vmlinux 0xd2bc7d9b fsnotify_add_mark +EXPORT_SYMBOL_GPL vmlinux 0xd2c0e429 vring_del_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0xd2db9620 fsnotify_alloc_user_group +EXPORT_SYMBOL_GPL vmlinux 0xd2e0a610 netdev_is_rx_handler_busy +EXPORT_SYMBOL_GPL vmlinux 0xd2e6a1c1 devm_led_classdev_register_ext +EXPORT_SYMBOL_GPL vmlinux 0xd2e7abf6 regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xd2fdc040 devm_blk_ksm_init +EXPORT_SYMBOL_GPL vmlinux 0xd300884b md_stop EXPORT_SYMBOL_GPL vmlinux 0xd3046552 rhashtable_insert_slow -EXPORT_SYMBOL_GPL vmlinux 0xd307cdf0 dev_pm_opp_set_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0xd311064d snd_soc_dapm_mux_update_power EXPORT_SYMBOL_GPL vmlinux 0xd31a2ac5 ring_buffer_oldest_event_ts -EXPORT_SYMBOL_GPL vmlinux 0xd31ba9f0 devlink_dpipe_entry_ctx_close EXPORT_SYMBOL_GPL vmlinux 0xd33ada8b cci_probed -EXPORT_SYMBOL_GPL vmlinux 0xd353cac4 dev_pm_set_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0xd3571da9 ata_do_set_mode -EXPORT_SYMBOL_GPL vmlinux 0xd35d3fd8 snd_soc_card_remove_dai_link -EXPORT_SYMBOL_GPL vmlinux 0xd368b926 genphy_c45_restart_aneg -EXPORT_SYMBOL_GPL vmlinux 0xd375948c serial8250_do_startup -EXPORT_SYMBOL_GPL vmlinux 0xd38bc54e iommu_detach_group -EXPORT_SYMBOL_GPL vmlinux 0xd391274d crypto_mod_get -EXPORT_SYMBOL_GPL vmlinux 0xd399393f of_pci_get_devfn -EXPORT_SYMBOL_GPL vmlinux 0xd39b76db devm_hwspin_lock_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd33bfba0 devm_kmalloc +EXPORT_SYMBOL_GPL vmlinux 0xd340ef51 nd_blk_region_set_provider_data +EXPORT_SYMBOL_GPL vmlinux 0xd382ad42 platform_get_irq_byname_optional +EXPORT_SYMBOL_GPL vmlinux 0xd38469b8 of_nvmem_cell_get +EXPORT_SYMBOL_GPL vmlinux 0xd38832c0 rio_unlock_device +EXPORT_SYMBOL_GPL vmlinux 0xd38f7c59 mtd_ooblayout_ecc +EXPORT_SYMBOL_GPL vmlinux 0xd390605b musb_root_disconnect +EXPORT_SYMBOL_GPL vmlinux 0xd3967698 snd_dmaengine_pcm_pointer_no_residue EXPORT_SYMBOL_GPL vmlinux 0xd39e9848 put_itimerspec64 -EXPORT_SYMBOL_GPL vmlinux 0xd3b5a465 pci_host_common_probe -EXPORT_SYMBOL_GPL vmlinux 0xd3bd0f17 devm_release_action -EXPORT_SYMBOL_GPL vmlinux 0xd3bdc257 clk_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0xd39f7c5e rockchip_clk_of_add_provider +EXPORT_SYMBOL_GPL vmlinux 0xd3a73ce5 snd_soc_tplg_widget_bind_event +EXPORT_SYMBOL_GPL vmlinux 0xd3ac1868 mtd_ooblayout_find_eccregion +EXPORT_SYMBOL_GPL vmlinux 0xd3b3af93 icc_set_tag +EXPORT_SYMBOL_GPL vmlinux 0xd3b4e8ca pci_host_probe +EXPORT_SYMBOL_GPL vmlinux 0xd3b6fba1 thermal_zone_unbind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0xd3b8ca83 regmap_get_reg_stride +EXPORT_SYMBOL_GPL vmlinux 0xd3c3f5ba mtk_pinconf_adv_drive_get_raw EXPORT_SYMBOL_GPL vmlinux 0xd3c672b8 nand_subop_get_data_len -EXPORT_SYMBOL_GPL vmlinux 0xd3c76f39 elv_rqhash_add -EXPORT_SYMBOL_GPL vmlinux 0xd3ca4082 ata_host_suspend +EXPORT_SYMBOL_GPL vmlinux 0xd3c8f15d sata_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xd3e8a4c1 snd_soc_unregister_component EXPORT_SYMBOL_GPL vmlinux 0xd3e97c21 hugetlb_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xd3ee2bca ahci_platform_ops +EXPORT_SYMBOL_GPL vmlinux 0xd3ef0d97 blk_ksm_intersect_modes EXPORT_SYMBOL_GPL vmlinux 0xd3f0cd42 misc_cg_res_total_usage -EXPORT_SYMBOL_GPL vmlinux 0xd3fe3973 bpf_prog_create -EXPORT_SYMBOL_GPL vmlinux 0xd400f5eb bus_rescan_devices +EXPORT_SYMBOL_GPL vmlinux 0xd3f33f10 uart_insert_char EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq -EXPORT_SYMBOL_GPL vmlinux 0xd4043e1e thermal_zone_of_sensor_register -EXPORT_SYMBOL_GPL vmlinux 0xd4066904 led_classdev_suspend -EXPORT_SYMBOL_GPL vmlinux 0xd40d5953 dev_pm_opp_get_level -EXPORT_SYMBOL_GPL vmlinux 0xd41475ab pci_hp_add_bridge -EXPORT_SYMBOL_GPL vmlinux 0xd41aee93 trace_get_event_file +EXPORT_SYMBOL_GPL vmlinux 0xd404ecc9 rt_mutex_lock_interruptible +EXPORT_SYMBOL_GPL vmlinux 0xd41b3694 devm_kmemdup EXPORT_SYMBOL_GPL vmlinux 0xd41ff2ac nand_subop_get_data_start_off -EXPORT_SYMBOL_GPL vmlinux 0xd424416a bpf_offload_dev_netdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd4259dbd ping_seq_next EXPORT_SYMBOL_GPL vmlinux 0xd42f1d4e show_rcu_tasks_rude_gp_kthread +EXPORT_SYMBOL_GPL vmlinux 0xd434014f snd_soc_cnew +EXPORT_SYMBOL_GPL vmlinux 0xd43647f6 devm_init_badblocks EXPORT_SYMBOL_GPL vmlinux 0xd44a5eac kgdb_register_nmi_console -EXPORT_SYMBOL_GPL vmlinux 0xd44b6083 mtk_mmsys_ddp_disconnect -EXPORT_SYMBOL_GPL vmlinux 0xd44d86da task_user_regset_view -EXPORT_SYMBOL_GPL vmlinux 0xd4570cf5 phy_set_mode_ext -EXPORT_SYMBOL_GPL vmlinux 0xd468c347 seg6_do_srh_encap -EXPORT_SYMBOL_GPL vmlinux 0xd46bc008 genpd_dev_pm_attach -EXPORT_SYMBOL_GPL vmlinux 0xd478a6e7 of_irq_find_parent +EXPORT_SYMBOL_GPL vmlinux 0xd4549dd6 gpiochip_add_pingroup_range +EXPORT_SYMBOL_GPL vmlinux 0xd4562b96 sysfs_create_files +EXPORT_SYMBOL_GPL vmlinux 0xd46acf70 sk_msg_free_nocharge +EXPORT_SYMBOL_GPL vmlinux 0xd46e74cd rio_dma_prep_xfer +EXPORT_SYMBOL_GPL vmlinux 0xd4719c5e l3mdev_fib_table_by_index +EXPORT_SYMBOL_GPL vmlinux 0xd475bdb2 clk_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0xd47dc7ab cgroup_get_from_fd +EXPORT_SYMBOL_GPL vmlinux 0xd491c13b crypto_register_kpp +EXPORT_SYMBOL_GPL vmlinux 0xd4932d15 snd_soc_daifmt_parse_format EXPORT_SYMBOL_GPL vmlinux 0xd4935851 __SCK__tp_func_suspend_resume EXPORT_SYMBOL_GPL vmlinux 0xd499c42e percpu_ref_kill_and_confirm +EXPORT_SYMBOL_GPL vmlinux 0xd49a32dc hwspin_lock_request +EXPORT_SYMBOL_GPL vmlinux 0xd4a0c65e ata_port_pbar_desc EXPORT_SYMBOL_GPL vmlinux 0xd4b6157e devlink_health_reporter_recovery_done EXPORT_SYMBOL_GPL vmlinux 0xd4b9a616 reset_control_bulk_put EXPORT_SYMBOL_GPL vmlinux 0xd4c14632 system_unbound_wq +EXPORT_SYMBOL_GPL vmlinux 0xd4c7d88d usb_sg_init EXPORT_SYMBOL_GPL vmlinux 0xd4cbdbe3 __SCK__tp_func_devlink_trap_report -EXPORT_SYMBOL_GPL vmlinux 0xd4d356df serdev_device_set_tiocm -EXPORT_SYMBOL_GPL vmlinux 0xd4d991bd tty_kopen_shared -EXPORT_SYMBOL_GPL vmlinux 0xd4ded769 efivars_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd4cc243b snd_devm_alloc_pages +EXPORT_SYMBOL_GPL vmlinux 0xd4cfcc98 mtd_ooblayout_free +EXPORT_SYMBOL_GPL vmlinux 0xd4dcccec irq_domain_alloc_irqs_parent EXPORT_SYMBOL_GPL vmlinux 0xd4e6d7e0 linear_range_get_value -EXPORT_SYMBOL_GPL vmlinux 0xd4f2dd19 pin_user_pages_fast_only -EXPORT_SYMBOL_GPL vmlinux 0xd4f52141 pinconf_generic_parse_dt_config -EXPORT_SYMBOL_GPL vmlinux 0xd4fb46fa devlink_param_unpublish -EXPORT_SYMBOL_GPL vmlinux 0xd4fb517a regulator_get_linear_step -EXPORT_SYMBOL_GPL vmlinux 0xd50f52fd device_wakeup_disable -EXPORT_SYMBOL_GPL vmlinux 0xd518599f scmi_driver_register +EXPORT_SYMBOL_GPL vmlinux 0xd4eaee2e of_icc_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0xd4ec6476 do_unbind_con_driver +EXPORT_SYMBOL_GPL vmlinux 0xd4f21f1c genphy_c45_check_and_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0xd51aff8f spi_mem_driver_register_with_owner +EXPORT_SYMBOL_GPL vmlinux 0xd51ba764 ping_bind EXPORT_SYMBOL_GPL vmlinux 0xd51d83f0 __tracepoint_remove_device_from_group -EXPORT_SYMBOL_GPL vmlinux 0xd5213325 snd_soc_dapm_get_pin_status -EXPORT_SYMBOL_GPL vmlinux 0xd52b7b99 genphy_c45_loopback -EXPORT_SYMBOL_GPL vmlinux 0xd52c763c ahci_platform_enable_resources +EXPORT_SYMBOL_GPL vmlinux 0xd5224895 cpufreq_cpu_put EXPORT_SYMBOL_GPL vmlinux 0xd5301b2c linear_range_get_max_value -EXPORT_SYMBOL_GPL vmlinux 0xd536a1a0 snd_soc_lookup_component +EXPORT_SYMBOL_GPL vmlinux 0xd542398b snd_soc_dai_set_clkdiv +EXPORT_SYMBOL_GPL vmlinux 0xd542f8de pci_epc_add_epf +EXPORT_SYMBOL_GPL vmlinux 0xd5441df6 __traceiter_br_fdb_add EXPORT_SYMBOL_GPL vmlinux 0xd5474690 usb_role_switch_set_role -EXPORT_SYMBOL_GPL vmlinux 0xd548a06d fib_nexthop_info EXPORT_SYMBOL_GPL vmlinux 0xd55ad93b iommu_group_get_iommudata -EXPORT_SYMBOL_GPL vmlinux 0xd56692a8 ata_ehi_push_desc -EXPORT_SYMBOL_GPL vmlinux 0xd56e4546 devlink_sb_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd571f4e7 udp_bpf_update_proto -EXPORT_SYMBOL_GPL vmlinux 0xd5791da5 regmap_field_free -EXPORT_SYMBOL_GPL vmlinux 0xd598b082 pm_wakeup_ws_event +EXPORT_SYMBOL_GPL vmlinux 0xd55e1c87 iomap_writepages +EXPORT_SYMBOL_GPL vmlinux 0xd5785381 devres_find +EXPORT_SYMBOL_GPL vmlinux 0xd5906243 pinctrl_generic_get_group_name +EXPORT_SYMBOL_GPL vmlinux 0xd591b947 pci_generic_config_write32 EXPORT_SYMBOL_GPL vmlinux 0xd59a1587 linkmode_resolve_pause -EXPORT_SYMBOL_GPL vmlinux 0xd5a28ffd xhci_init_driver -EXPORT_SYMBOL_GPL vmlinux 0xd5a66425 pci_disable_sriov -EXPORT_SYMBOL_GPL vmlinux 0xd5a7c41e driver_create_file +EXPORT_SYMBOL_GPL vmlinux 0xd5a1487c powercap_register_zone EXPORT_SYMBOL_GPL vmlinux 0xd5ac24e5 blocking_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0xd5aeb257 ata_sff_thaw -EXPORT_SYMBOL_GPL vmlinux 0xd5b09619 bsg_job_done -EXPORT_SYMBOL_GPL vmlinux 0xd5d2278a scsi_flush_work -EXPORT_SYMBOL_GPL vmlinux 0xd5f34a40 mnt_drop_write -EXPORT_SYMBOL_GPL vmlinux 0xd60b4d99 snd_dmaengine_pcm_request_channel -EXPORT_SYMBOL_GPL vmlinux 0xd60ebec1 edac_mc_handle_error -EXPORT_SYMBOL_GPL vmlinux 0xd616102f crypto_alloc_shash +EXPORT_SYMBOL_GPL vmlinux 0xd5b58852 edac_mc_free +EXPORT_SYMBOL_GPL vmlinux 0xd5b92cef spi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xd5c332a0 snd_soc_dai_active +EXPORT_SYMBOL_GPL vmlinux 0xd5c61719 snd_pcm_hw_constraint_eld +EXPORT_SYMBOL_GPL vmlinux 0xd5da536c xfrm_audit_state_replay +EXPORT_SYMBOL_GPL vmlinux 0xd5f0c750 device_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0xd5f653d8 find_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xd6022b15 devlink_param_driverinit_value_get EXPORT_SYMBOL_GPL vmlinux 0xd6164816 blkg_rwstat_exit -EXPORT_SYMBOL_GPL vmlinux 0xd634e0eb ndo_dflt_bridge_getlink -EXPORT_SYMBOL_GPL vmlinux 0xd63d8a48 aead_exit_geniv +EXPORT_SYMBOL_GPL vmlinux 0xd61cfb99 mmc_get_ext_csd +EXPORT_SYMBOL_GPL vmlinux 0xd61efa2d crypto_register_shashes +EXPORT_SYMBOL_GPL vmlinux 0xd61f3661 iomap_fiemap +EXPORT_SYMBOL_GPL vmlinux 0xd623eb2e fsverity_prepare_setattr +EXPORT_SYMBOL_GPL vmlinux 0xd62ad865 devm_snd_soc_register_dai +EXPORT_SYMBOL_GPL vmlinux 0xd62d9736 __reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0xd6386781 usb_unlocked_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xd63f6ad8 device_link_remove +EXPORT_SYMBOL_GPL vmlinux 0xd643706f of_pm_clk_add_clks EXPORT_SYMBOL_GPL vmlinux 0xd64ed259 __memcat_p EXPORT_SYMBOL_GPL vmlinux 0xd653b126 sched_clock -EXPORT_SYMBOL_GPL vmlinux 0xd657918d sata_lpm_ignore_phy_events +EXPORT_SYMBOL_GPL vmlinux 0xd659fc32 ata_sas_port_start EXPORT_SYMBOL_GPL vmlinux 0xd65a3c50 xas_split -EXPORT_SYMBOL_GPL vmlinux 0xd65ca590 nvmem_cell_get -EXPORT_SYMBOL_GPL vmlinux 0xd65ce71e usb_phy_roothub_suspend -EXPORT_SYMBOL_GPL vmlinux 0xd65d5627 __page_file_mapping -EXPORT_SYMBOL_GPL vmlinux 0xd65e63c3 dst_blackhole_mtu +EXPORT_SYMBOL_GPL vmlinux 0xd663e9e1 ping_get_port EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget -EXPORT_SYMBOL_GPL vmlinux 0xd67533fe extcon_get_edev_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0xd6a1554d fwnode_graph_get_port_parent -EXPORT_SYMBOL_GPL vmlinux 0xd6a27810 skb_morph -EXPORT_SYMBOL_GPL vmlinux 0xd6a754ad dev_pm_qos_expose_flags -EXPORT_SYMBOL_GPL vmlinux 0xd6b0c919 mtk_pinconf_adv_pull_get -EXPORT_SYMBOL_GPL vmlinux 0xd6b964e1 sdhci_runtime_resume_host -EXPORT_SYMBOL_GPL vmlinux 0xd6bf02ef mtd_write_oob -EXPORT_SYMBOL_GPL vmlinux 0xd6cee9fe public_key_subtype -EXPORT_SYMBOL_GPL vmlinux 0xd6cf861b handle_untracked_irq -EXPORT_SYMBOL_GPL vmlinux 0xd6cfdb24 crypto_stats_aead_encrypt -EXPORT_SYMBOL_GPL vmlinux 0xd6d14158 lochnagar_update_config -EXPORT_SYMBOL_GPL vmlinux 0xd6d4eb69 device_create_with_groups -EXPORT_SYMBOL_GPL vmlinux 0xd6e35687 blk_add_driver_data -EXPORT_SYMBOL_GPL vmlinux 0xd6e7b939 sock_diag_check_cookie -EXPORT_SYMBOL_GPL vmlinux 0xd70d8257 sata_std_hardreset -EXPORT_SYMBOL_GPL vmlinux 0xd7122442 devm_phy_package_join -EXPORT_SYMBOL_GPL vmlinux 0xd7124dc2 bpf_verifier_log_write -EXPORT_SYMBOL_GPL vmlinux 0xd712abe2 mtk_pinconf_bias_get_combo -EXPORT_SYMBOL_GPL vmlinux 0xd713355e __platform_driver_register -EXPORT_SYMBOL_GPL vmlinux 0xd714602b virtqueue_add_sgs -EXPORT_SYMBOL_GPL vmlinux 0xd715971e espintcp_queue_out -EXPORT_SYMBOL_GPL vmlinux 0xd720d407 gpiod_get_raw_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xd73638ae sched_trace_rq_avg_dl -EXPORT_SYMBOL_GPL vmlinux 0xd7380470 crypto_unregister_aead +EXPORT_SYMBOL_GPL vmlinux 0xd67fb1d1 of_property_read_u64_index +EXPORT_SYMBOL_GPL vmlinux 0xd688d192 relay_buf_full +EXPORT_SYMBOL_GPL vmlinux 0xd6c8445b usb_get_role_switch_default_mode +EXPORT_SYMBOL_GPL vmlinux 0xd6d7c00d mpc8xxx_spi_probe +EXPORT_SYMBOL_GPL vmlinux 0xd6dee719 power_supply_powers +EXPORT_SYMBOL_GPL vmlinux 0xd6fac70c ata_sas_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xd6fdd137 crypto_shash_digest +EXPORT_SYMBOL_GPL vmlinux 0xd704caf3 __traceiter_sched_util_est_se_tp +EXPORT_SYMBOL_GPL vmlinux 0xd708b804 nd_tbl +EXPORT_SYMBOL_GPL vmlinux 0xd70afda8 platform_device_del +EXPORT_SYMBOL_GPL vmlinux 0xd7209acb blk_trace_remove EXPORT_SYMBOL_GPL vmlinux 0xd7399d2a efivar_entry_iter_end -EXPORT_SYMBOL_GPL vmlinux 0xd73a8780 tc3589x_reg_write -EXPORT_SYMBOL_GPL vmlinux 0xd7432289 driver_remove_file -EXPORT_SYMBOL_GPL vmlinux 0xd750629f thermal_zone_get_offset -EXPORT_SYMBOL_GPL vmlinux 0xd753090a smpboot_register_percpu_thread -EXPORT_SYMBOL_GPL vmlinux 0xd75a184e bpfilter_umh_cleanup -EXPORT_SYMBOL_GPL vmlinux 0xd7655536 snd_soc_dapm_force_bias_level EXPORT_SYMBOL_GPL vmlinux 0xd766e8f2 btree_init_mempool -EXPORT_SYMBOL_GPL vmlinux 0xd768d6a3 ata_scsi_unlock_native_capacity +EXPORT_SYMBOL_GPL vmlinux 0xd768c6c4 led_classdev_suspend EXPORT_SYMBOL_GPL vmlinux 0xd768e985 regulator_has_full_constraints -EXPORT_SYMBOL_GPL vmlinux 0xd77478ce led_trigger_set EXPORT_SYMBOL_GPL vmlinux 0xd774957d mpi_write_to_sgl EXPORT_SYMBOL_GPL vmlinux 0xd7754064 unregister_kretprobes -EXPORT_SYMBOL_GPL vmlinux 0xd787149b of_css -EXPORT_SYMBOL_GPL vmlinux 0xd7b0a6b4 tty_prepare_flip_string +EXPORT_SYMBOL_GPL vmlinux 0xd77842c1 query_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0xd77c37cb dax_copy_to_iter +EXPORT_SYMBOL_GPL vmlinux 0xd7804009 exportfs_decode_fh_raw +EXPORT_SYMBOL_GPL vmlinux 0xd7946cb8 nvdimm_bus_check_dimm_count +EXPORT_SYMBOL_GPL vmlinux 0xd798d0ea add_swap_extent +EXPORT_SYMBOL_GPL vmlinux 0xd79e326c of_i2c_get_board_info +EXPORT_SYMBOL_GPL vmlinux 0xd7a2b968 debugfs_rename +EXPORT_SYMBOL_GPL vmlinux 0xd7aa157d phy_create EXPORT_SYMBOL_GPL vmlinux 0xd7b411cb __irq_alloc_descs -EXPORT_SYMBOL_GPL vmlinux 0xd7c9189e alloc_page_buffers -EXPORT_SYMBOL_GPL vmlinux 0xd7cf2413 md_account_bio -EXPORT_SYMBOL_GPL vmlinux 0xd7cf6e93 devm_gpio_free +EXPORT_SYMBOL_GPL vmlinux 0xd7b7d51a sock_diag_register_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0xd7baa532 raw_hash_sk +EXPORT_SYMBOL_GPL vmlinux 0xd7c5a8dd mtk_mmsys_ddp_connect +EXPORT_SYMBOL_GPL vmlinux 0xd7d0cd12 ima_inode_hash 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 0xd7ddec8a usb_autopm_put_interface_async -EXPORT_SYMBOL_GPL vmlinux 0xd7e5fd2a skb_mpls_push +EXPORT_SYMBOL_GPL vmlinux 0xd7e80115 blk_execute_rq_nowait +EXPORT_SYMBOL_GPL vmlinux 0xd7f60c85 create_signature EXPORT_SYMBOL_GPL vmlinux 0xd7fb0726 __tracepoint_xdp_bulk_tx -EXPORT_SYMBOL_GPL vmlinux 0xd7fb73ac mtk_pinconf_bias_disable_set -EXPORT_SYMBOL_GPL vmlinux 0xd7fbc1de bpf_preload_ops -EXPORT_SYMBOL_GPL vmlinux 0xd7fea5b6 amba_device_add -EXPORT_SYMBOL_GPL vmlinux 0xd8030471 devm_kmemdup -EXPORT_SYMBOL_GPL vmlinux 0xd825addb regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0xd809643d xfrm_dev_offload_ok +EXPORT_SYMBOL_GPL vmlinux 0xd80beb89 mnt_want_write_file +EXPORT_SYMBOL_GPL vmlinux 0xd815eb22 ip6_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0xd8267d3a blk_steal_bios +EXPORT_SYMBOL_GPL vmlinux 0xd83bbd48 devfreq_cooling_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd83ee1a0 serial8250_release_dma +EXPORT_SYMBOL_GPL vmlinux 0xd843c18b snd_soc_of_parse_audio_simple_widgets EXPORT_SYMBOL_GPL vmlinux 0xd84d35bd dax_read_lock -EXPORT_SYMBOL_GPL vmlinux 0xd850576b nand_read_page_op -EXPORT_SYMBOL_GPL vmlinux 0xd85d9e23 serial8250_rpm_put -EXPORT_SYMBOL_GPL vmlinux 0xd868e633 snd_pcm_stop_xrun -EXPORT_SYMBOL_GPL vmlinux 0xd86fba21 mmu_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0xd87ee625 __device_reset +EXPORT_SYMBOL_GPL vmlinux 0xd8554292 mtd_unpoint +EXPORT_SYMBOL_GPL vmlinux 0xd8748121 pci_epc_init_notify EXPORT_SYMBOL_GPL vmlinux 0xd87fc0a0 usb_amd_prefetch_quirk -EXPORT_SYMBOL_GPL vmlinux 0xd8825954 crypto_ahash_finup -EXPORT_SYMBOL_GPL vmlinux 0xd88ca78f dev_xdp_prog_count -EXPORT_SYMBOL_GPL vmlinux 0xd89016d3 devm_nvmem_device_get -EXPORT_SYMBOL_GPL vmlinux 0xd8928acd rio_mport_chk_dev_access -EXPORT_SYMBOL_GPL vmlinux 0xd89a3873 powercap_unregister_control_type -EXPORT_SYMBOL_GPL vmlinux 0xd8adf67c pci_set_cacheline_size -EXPORT_SYMBOL_GPL vmlinux 0xd8b33632 skcipher_alloc_instance_simple -EXPORT_SYMBOL_GPL vmlinux 0xd8b7d94c crypto_shash_finup -EXPORT_SYMBOL_GPL vmlinux 0xd8b8e2db dax_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0xd8c49593 led_trigger_register -EXPORT_SYMBOL_GPL vmlinux 0xd8d27086 of_clk_src_onecell_get +EXPORT_SYMBOL_GPL vmlinux 0xd887f677 platform_add_devices +EXPORT_SYMBOL_GPL vmlinux 0xd899d7ab pci_assign_unassigned_bridge_resources +EXPORT_SYMBOL_GPL vmlinux 0xd8a10466 pinctrl_pm_select_idle_state +EXPORT_SYMBOL_GPL vmlinux 0xd8a9cd22 i2c_adapter_depth +EXPORT_SYMBOL_GPL vmlinux 0xd8ad2410 blk_update_request +EXPORT_SYMBOL_GPL vmlinux 0xd8af89f3 firmware_kobj +EXPORT_SYMBOL_GPL vmlinux 0xd8b85df3 __inet_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0xd8d3f6ca device_show_ulong +EXPORT_SYMBOL_GPL vmlinux 0xd8d5d816 snd_soc_component_get_pin_status EXPORT_SYMBOL_GPL vmlinux 0xd8d654ca list_lru_count_node EXPORT_SYMBOL_GPL vmlinux 0xd8d68ab1 dmi_memdev_type -EXPORT_SYMBOL_GPL vmlinux 0xd8feae2a of_clk_set_defaults -EXPORT_SYMBOL_GPL vmlinux 0xd9115f07 blk_clear_pm_only +EXPORT_SYMBOL_GPL vmlinux 0xd8ed77a1 devlink_port_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd8f236ba pm_generic_restore_early +EXPORT_SYMBOL_GPL vmlinux 0xd9087678 pm_genpd_add_subdomain +EXPORT_SYMBOL_GPL vmlinux 0xd91b7ba9 watchdog_set_restart_priority EXPORT_SYMBOL_GPL vmlinux 0xd91dbd1f xdp_alloc_skb_bulk -EXPORT_SYMBOL_GPL vmlinux 0xd92bb777 bio_end_io_acct_remapped +EXPORT_SYMBOL_GPL vmlinux 0xd91f1aa8 rtc_read_time +EXPORT_SYMBOL_GPL vmlinux 0xd91f8b54 led_trigger_write EXPORT_SYMBOL_GPL vmlinux 0xd92ef192 security_kernel_post_load_data -EXPORT_SYMBOL_GPL vmlinux 0xd93776be pwm_get_chip_data -EXPORT_SYMBOL_GPL vmlinux 0xd9437e55 spi_mem_get_name -EXPORT_SYMBOL_GPL vmlinux 0xd94fc854 debugfs_create_x16 -EXPORT_SYMBOL_GPL vmlinux 0xd951457a qcom_smem_state_register -EXPORT_SYMBOL_GPL vmlinux 0xd963cdb3 snd_card_disconnect_sync +EXPORT_SYMBOL_GPL vmlinux 0xd9547fc5 get_cpu_device +EXPORT_SYMBOL_GPL vmlinux 0xd95b5108 amba_device_add +EXPORT_SYMBOL_GPL vmlinux 0xd96108a5 regulator_set_voltage_time_sel EXPORT_SYMBOL_GPL vmlinux 0xd96babb4 interval_tree_iter_next EXPORT_SYMBOL_GPL vmlinux 0xd973109f tcf_frag_xmit_count -EXPORT_SYMBOL_GPL vmlinux 0xd98626b4 transport_class_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd9a6b5cb of_nvmem_device_get -EXPORT_SYMBOL_GPL vmlinux 0xd9ac7317 rio_map_outb_region -EXPORT_SYMBOL_GPL vmlinux 0xd9af6ecd cpufreq_register_driver -EXPORT_SYMBOL_GPL vmlinux 0xd9c7a013 pci_iomap_wc -EXPORT_SYMBOL_GPL vmlinux 0xd9ceed85 nvmem_cell_read_u64 -EXPORT_SYMBOL_GPL vmlinux 0xd9de467a mmc_app_cmd +EXPORT_SYMBOL_GPL vmlinux 0xd980e57b sdio_memcpy_fromio +EXPORT_SYMBOL_GPL vmlinux 0xd98c9af8 snd_card_free_on_error +EXPORT_SYMBOL_GPL vmlinux 0xd9a31041 usb_unlocked_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xd9b145d0 perf_event_release_kernel +EXPORT_SYMBOL_GPL vmlinux 0xd9b600e0 __clocksource_update_freq_scale +EXPORT_SYMBOL_GPL vmlinux 0xd9cce250 led_trigger_blink +EXPORT_SYMBOL_GPL vmlinux 0xd9d6e766 debugfs_print_regs32 +EXPORT_SYMBOL_GPL vmlinux 0xd9d88d45 of_platform_populate EXPORT_SYMBOL_GPL vmlinux 0xd9e24457 ring_buffer_peek -EXPORT_SYMBOL_GPL vmlinux 0xd9f091b2 __fscrypt_prepare_setattr +EXPORT_SYMBOL_GPL vmlinux 0xd9e67fdc musb_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xd9ea7c32 sysfs_create_mount_point +EXPORT_SYMBOL_GPL vmlinux 0xd9eca118 iomap_migrate_page +EXPORT_SYMBOL_GPL vmlinux 0xd9fc247b pm_runtime_irq_safe EXPORT_SYMBOL_GPL vmlinux 0xd9ff2172 ezx_pcap_write -EXPORT_SYMBOL_GPL vmlinux 0xda020bfc fsverity_ioctl_read_metadata EXPORT_SYMBOL_GPL vmlinux 0xda0947de kmsg_dump_unregister -EXPORT_SYMBOL_GPL vmlinux 0xda26c61e spi_mem_driver_register_with_owner +EXPORT_SYMBOL_GPL vmlinux 0xda1187a0 switchdev_handle_port_obj_add +EXPORT_SYMBOL_GPL vmlinux 0xda205346 qcom_smem_state_get EXPORT_SYMBOL_GPL vmlinux 0xda28c702 sbitmap_add_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0xda305cd4 badblocks_exit +EXPORT_SYMBOL_GPL vmlinux 0xda2904ec devm_gpiod_put EXPORT_SYMBOL_GPL vmlinux 0xda320d31 sfp_module_start -EXPORT_SYMBOL_GPL vmlinux 0xda38ea33 snd_soc_runtime_calc_hw -EXPORT_SYMBOL_GPL vmlinux 0xda4457c2 securityfs_remove -EXPORT_SYMBOL_GPL vmlinux 0xda4750ee snd_soc_get_dai_id -EXPORT_SYMBOL_GPL vmlinux 0xda534d47 __mmdrop -EXPORT_SYMBOL_GPL vmlinux 0xda641752 devlink_dpipe_table_resource_set -EXPORT_SYMBOL_GPL vmlinux 0xda73a365 bio_associate_blkg +EXPORT_SYMBOL_GPL vmlinux 0xda3515a6 ip6_datagram_connect_v6_only +EXPORT_SYMBOL_GPL vmlinux 0xda674394 sdio_set_block_size EXPORT_SYMBOL_GPL vmlinux 0xda79044a tracepoint_probe_unregister -EXPORT_SYMBOL_GPL vmlinux 0xda7b10db da9052_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0xda7ba27c phy_modify +EXPORT_SYMBOL_GPL vmlinux 0xda7e264a nf_route EXPORT_SYMBOL_GPL vmlinux 0xda8cc3b9 hwrng_unregister -EXPORT_SYMBOL_GPL vmlinux 0xda948d49 set_selection_kernel -EXPORT_SYMBOL_GPL vmlinux 0xda9c1eab rt_mutex_lock_interruptible -EXPORT_SYMBOL_GPL vmlinux 0xdaa0cb85 posix_acl_create -EXPORT_SYMBOL_GPL vmlinux 0xdaa1798c spi_alloc_device -EXPORT_SYMBOL_GPL vmlinux 0xdaad5e71 pci_platform_power_transition +EXPORT_SYMBOL_GPL vmlinux 0xda9b5fa8 devm_usb_get_phy_by_node +EXPORT_SYMBOL_GPL vmlinux 0xda9d236d iomap_readahead +EXPORT_SYMBOL_GPL vmlinux 0xdaa0dfce usb_driver_claim_interface +EXPORT_SYMBOL_GPL vmlinux 0xdab02018 gpiod_get_raw_value EXPORT_SYMBOL_GPL vmlinux 0xdab5a1eb interval_tree_insert -EXPORT_SYMBOL_GPL vmlinux 0xdad4b4e7 platform_get_irq -EXPORT_SYMBOL_GPL vmlinux 0xdada368b device_link_remove -EXPORT_SYMBOL_GPL vmlinux 0xdade8bde devm_thermal_of_cooling_device_register -EXPORT_SYMBOL_GPL vmlinux 0xdae5f107 sata_set_spd -EXPORT_SYMBOL_GPL vmlinux 0xdaeb614e of_property_read_variable_u8_array -EXPORT_SYMBOL_GPL vmlinux 0xdaee781e usb_free_urb -EXPORT_SYMBOL_GPL vmlinux 0xdaefecdd sched_set_fifo +EXPORT_SYMBOL_GPL vmlinux 0xdad6ae70 crypto_stats_skcipher_encrypt EXPORT_SYMBOL_GPL vmlinux 0xdaf4dfb3 fb_mode_option EXPORT_SYMBOL_GPL vmlinux 0xdaf5c16e __cookie_v4_check -EXPORT_SYMBOL_GPL vmlinux 0xdb00367b securityfs_create_dir -EXPORT_SYMBOL_GPL vmlinux 0xdb005c54 md_rdev_init -EXPORT_SYMBOL_GPL vmlinux 0xdb08f4fb fscrypt_mergeable_bio_bh -EXPORT_SYMBOL_GPL vmlinux 0xdb179f83 mtd_unlock -EXPORT_SYMBOL_GPL vmlinux 0xdb6424bd sdio_retune_hold_now +EXPORT_SYMBOL_GPL vmlinux 0xdb1177d7 ata_sff_drain_fifo +EXPORT_SYMBOL_GPL vmlinux 0xdb300869 snd_soc_put_enum_double +EXPORT_SYMBOL_GPL vmlinux 0xdb36f27d fat_sync_inode +EXPORT_SYMBOL_GPL vmlinux 0xdb51a960 device_show_bool +EXPORT_SYMBOL_GPL vmlinux 0xdb68986c bpf_trace_run3 +EXPORT_SYMBOL_GPL vmlinux 0xdb6c89c7 usb_debug_root +EXPORT_SYMBOL_GPL vmlinux 0xdb6e78e8 snd_soc_component_compr_free EXPORT_SYMBOL_GPL vmlinux 0xdb8a1b3f usermodehelper_read_trylock -EXPORT_SYMBOL_GPL vmlinux 0xdb9194d3 dma_vunmap_noncontiguous -EXPORT_SYMBOL_GPL vmlinux 0xdb9409f7 cgroup_get_from_id +EXPORT_SYMBOL_GPL vmlinux 0xdb8adaf6 pwm_adjust_config +EXPORT_SYMBOL_GPL vmlinux 0xdb98cc45 crypto_unregister_ahash EXPORT_SYMBOL_GPL vmlinux 0xdba22696 software_node_register -EXPORT_SYMBOL_GPL vmlinux 0xdbb878bc to_nvdimm_bus -EXPORT_SYMBOL_GPL vmlinux 0xdbb9743f tty_buffer_space_avail +EXPORT_SYMBOL_GPL vmlinux 0xdba4c90e ata_sff_prereset EXPORT_SYMBOL_GPL vmlinux 0xdbdb0e8b request_any_context_irq -EXPORT_SYMBOL_GPL vmlinux 0xdbdfa41d thermal_zone_unbind_cooling_device -EXPORT_SYMBOL_GPL vmlinux 0xdbdff683 to_software_node +EXPORT_SYMBOL_GPL vmlinux 0xdbdc7d1a mbox_flush +EXPORT_SYMBOL_GPL vmlinux 0xdbe17c68 rockchip_pcie_deinit_phys EXPORT_SYMBOL_GPL vmlinux 0xdbe8d8a0 __SCK__tp_func_cpu_frequency -EXPORT_SYMBOL_GPL vmlinux 0xdbe99015 rio_mport_read_config_8 EXPORT_SYMBOL_GPL vmlinux 0xdbf7cb70 mpi_get_nbits -EXPORT_SYMBOL_GPL vmlinux 0xdbfab041 __fl6_sock_lookup +EXPORT_SYMBOL_GPL vmlinux 0xdbfa48ff ata_host_start EXPORT_SYMBOL_GPL vmlinux 0xdc02eb39 dmi_available -EXPORT_SYMBOL_GPL vmlinux 0xdc0486e1 gpiochip_add_pin_range -EXPORT_SYMBOL_GPL vmlinux 0xdc04f82e pci_disable_pasid -EXPORT_SYMBOL_GPL vmlinux 0xdc0e6400 snd_dmaengine_pcm_register -EXPORT_SYMBOL_GPL vmlinux 0xdc119fbf pci_load_and_free_saved_state -EXPORT_SYMBOL_GPL vmlinux 0xdc2f508c gpiochip_get_data +EXPORT_SYMBOL_GPL vmlinux 0xdc05b952 snd_soc_dai_compr_trigger +EXPORT_SYMBOL_GPL vmlinux 0xdc095c20 dma_free_pages +EXPORT_SYMBOL_GPL vmlinux 0xdc24b6a1 dev_pm_opp_put_supported_hw EXPORT_SYMBOL_GPL vmlinux 0xdc43bdc6 pci_vpd_find_ro_info_keyword -EXPORT_SYMBOL_GPL vmlinux 0xdc445592 thermal_zone_get_slope -EXPORT_SYMBOL_GPL vmlinux 0xdc4d4b93 pci_assign_unassigned_bus_resources -EXPORT_SYMBOL_GPL vmlinux 0xdc4f2e16 kernfs_notify -EXPORT_SYMBOL_GPL vmlinux 0xdc517b5f device_rename -EXPORT_SYMBOL_GPL vmlinux 0xdc552d60 __skb_get_hash_symmetric +EXPORT_SYMBOL_GPL vmlinux 0xdc4f0db7 snd_soc_dapm_nc_pin_unlocked +EXPORT_SYMBOL_GPL vmlinux 0xdc528117 regmap_raw_write_async +EXPORT_SYMBOL_GPL vmlinux 0xdc63e57c irq_domain_get_irq_data EXPORT_SYMBOL_GPL vmlinux 0xdc6596fa irq_set_parent -EXPORT_SYMBOL_GPL vmlinux 0xdc6c9105 irq_chip_set_type_parent -EXPORT_SYMBOL_GPL vmlinux 0xdc74910e sdio_release_host -EXPORT_SYMBOL_GPL vmlinux 0xdc771c13 usb_unanchor_urb -EXPORT_SYMBOL_GPL vmlinux 0xdc7b972f nvmem_cell_read_u16 +EXPORT_SYMBOL_GPL vmlinux 0xdc6a5b96 rio_del_mport_pw_handler +EXPORT_SYMBOL_GPL vmlinux 0xdc6c8813 extcon_get_edev_name +EXPORT_SYMBOL_GPL vmlinux 0xdc745685 snd_soc_of_parse_node_prefix +EXPORT_SYMBOL_GPL vmlinux 0xdc757432 driver_unregister EXPORT_SYMBOL_GPL vmlinux 0xdc7ce353 mv_mbus_dram_info_nooverlap +EXPORT_SYMBOL_GPL vmlinux 0xdc81628b nvmem_device_find EXPORT_SYMBOL_GPL vmlinux 0xdc825d6c usb_amd_quirk_pll_disable -EXPORT_SYMBOL_GPL vmlinux 0xdc868e29 snd_soc_component_compr_trigger -EXPORT_SYMBOL_GPL vmlinux 0xdc895b5b irq_chip_enable_parent +EXPORT_SYMBOL_GPL vmlinux 0xdc954f1d scsi_dh_attached_handler_name EXPORT_SYMBOL_GPL vmlinux 0xdc97af2e syscore_suspend -EXPORT_SYMBOL_GPL vmlinux 0xdc9abd0a vchan_tx_submit +EXPORT_SYMBOL_GPL vmlinux 0xdc9bf7ec usb_hcd_poll_rh_status EXPORT_SYMBOL_GPL vmlinux 0xdc9fa232 raw_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0xdcc273c4 put_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0xdccb9a83 irq_domain_xlate_twocell -EXPORT_SYMBOL_GPL vmlinux 0xdccfbf60 snd_dmaengine_pcm_open -EXPORT_SYMBOL_GPL vmlinux 0xdcd0daa3 irq_domain_associate_many -EXPORT_SYMBOL_GPL vmlinux 0xdcf294aa gpiod_put_array -EXPORT_SYMBOL_GPL vmlinux 0xdcf931ea scsi_target_block -EXPORT_SYMBOL_GPL vmlinux 0xdd031a28 dev_fill_forward_path +EXPORT_SYMBOL_GPL vmlinux 0xdcd27d48 netlink_strict_get_check +EXPORT_SYMBOL_GPL vmlinux 0xdcfd2fde fuse_dev_release EXPORT_SYMBOL_GPL vmlinux 0xdd0762df set_worker_desc -EXPORT_SYMBOL_GPL vmlinux 0xdd094f56 pci_dev_lock -EXPORT_SYMBOL_GPL vmlinux 0xdd0e1d9d regulator_set_voltage_sel_regmap -EXPORT_SYMBOL_GPL vmlinux 0xdd0f7deb sk_set_peek_off +EXPORT_SYMBOL_GPL vmlinux 0xdd07f0c5 blk_bio_list_merge +EXPORT_SYMBOL_GPL vmlinux 0xdd109c05 musb_set_peripheral EXPORT_SYMBOL_GPL vmlinux 0xdd21316c nvmem_del_cell_table -EXPORT_SYMBOL_GPL vmlinux 0xdd377ddc __fib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xdd342fd3 rdev_get_drvdata EXPORT_SYMBOL_GPL vmlinux 0xdd391eff profile_event_unregister -EXPORT_SYMBOL_GPL vmlinux 0xdd3c3cb6 pci_epc_mem_exit -EXPORT_SYMBOL_GPL vmlinux 0xdd462559 sdhci_calc_clk -EXPORT_SYMBOL_GPL vmlinux 0xdd4c094d usb_role_switch_find_by_fwnode -EXPORT_SYMBOL_GPL vmlinux 0xdd5a3dd6 snd_soc_debugfs_root +EXPORT_SYMBOL_GPL vmlinux 0xdd42e3c1 sk_setup_caps +EXPORT_SYMBOL_GPL vmlinux 0xdd55a161 devlink_flash_update_status_notify EXPORT_SYMBOL_GPL vmlinux 0xdd626ee3 fuse_len_args EXPORT_SYMBOL_GPL vmlinux 0xdd66db67 nf_hooks_lwtunnel_sysctl_handler +EXPORT_SYMBOL_GPL vmlinux 0xdd6bad1c tcp_set_keepalive EXPORT_SYMBOL_GPL vmlinux 0xdd6ddcec __traceiter_error_report_end -EXPORT_SYMBOL_GPL vmlinux 0xdd7387b0 crypto_comp_decompress +EXPORT_SYMBOL_GPL vmlinux 0xdd7eaec2 nf_queue EXPORT_SYMBOL_GPL vmlinux 0xdd81d8f6 __SCK__tp_func_block_bio_complete EXPORT_SYMBOL_GPL vmlinux 0xdd85063c lpddr2_jedec_min_tck -EXPORT_SYMBOL_GPL vmlinux 0xdd861da5 regcache_mark_dirty -EXPORT_SYMBOL_GPL vmlinux 0xdd881187 gpiochip_remove -EXPORT_SYMBOL_GPL vmlinux 0xdd9a4ff2 power_supply_class -EXPORT_SYMBOL_GPL vmlinux 0xddbc3bba usb_get_current_frame_number -EXPORT_SYMBOL_GPL vmlinux 0xddbc4cf1 crypto_register_templates +EXPORT_SYMBOL_GPL vmlinux 0xdd8a1033 sbitmap_queue_show +EXPORT_SYMBOL_GPL vmlinux 0xdd8b11eb pm_generic_thaw_early +EXPORT_SYMBOL_GPL vmlinux 0xdd8b4a2b irq_get_domain_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xdd8ed494 phy_driver_is_genphy +EXPORT_SYMBOL_GPL vmlinux 0xdd91070d handle_fasteoi_ack_irq +EXPORT_SYMBOL_GPL vmlinux 0xdd97a90d crypto_grab_aead +EXPORT_SYMBOL_GPL vmlinux 0xdd9caae7 securityfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0xddb1d2f3 blk_poll +EXPORT_SYMBOL_GPL vmlinux 0xddb26e5a of_reserved_mem_device_init_by_name EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove -EXPORT_SYMBOL_GPL vmlinux 0xddc4f421 relay_switch_subbuf -EXPORT_SYMBOL_GPL vmlinux 0xddce9341 __devm_regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0xddd49f52 rio_request_mport_dma EXPORT_SYMBOL_GPL vmlinux 0xddd6a7be devices_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xddd9148c pci_epf_unbind +EXPORT_SYMBOL_GPL vmlinux 0xddd839df wakeup_source_create +EXPORT_SYMBOL_GPL vmlinux 0xddd882e3 tcp_get_syncookie_mss EXPORT_SYMBOL_GPL vmlinux 0xdddb9d57 percpu_ref_resurrect -EXPORT_SYMBOL_GPL vmlinux 0xde055ae2 iommu_dev_feature_enabled -EXPORT_SYMBOL_GPL vmlinux 0xde079cea mtd_block_isreserved -EXPORT_SYMBOL_GPL vmlinux 0xde08a191 pci_pasid_features -EXPORT_SYMBOL_GPL vmlinux 0xde09ce51 msg_zerocopy_realloc -EXPORT_SYMBOL_GPL vmlinux 0xde0accbb dm_post_suspending -EXPORT_SYMBOL_GPL vmlinux 0xde14f47a pci_create_root_bus -EXPORT_SYMBOL_GPL vmlinux 0xde2fde39 md_run -EXPORT_SYMBOL_GPL vmlinux 0xde33114d ata_sff_port_ops -EXPORT_SYMBOL_GPL vmlinux 0xde3597f3 tracing_snapshot_cond_disable -EXPORT_SYMBOL_GPL vmlinux 0xde538fda ata_std_bios_param +EXPORT_SYMBOL_GPL vmlinux 0xddf63b3c devlink_flash_update_timeout_notify +EXPORT_SYMBOL_GPL vmlinux 0xde00ee77 unregister_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0xde0e737b dev_pm_opp_set_supported_hw +EXPORT_SYMBOL_GPL vmlinux 0xde11e553 led_trigger_rename_static +EXPORT_SYMBOL_GPL vmlinux 0xde208d46 skb_mpls_pop +EXPORT_SYMBOL_GPL vmlinux 0xde38f69f pci_get_dsn EXPORT_SYMBOL_GPL vmlinux 0xde6f1851 TSS_checkhmac1 -EXPORT_SYMBOL_GPL vmlinux 0xde6f9b93 disk_uevent -EXPORT_SYMBOL_GPL vmlinux 0xde85f162 snd_soc_info_xr_sx -EXPORT_SYMBOL_GPL vmlinux 0xde9e24aa extcon_unregister_notifier_all -EXPORT_SYMBOL_GPL vmlinux 0xdebcf6e7 ata_dev_disable -EXPORT_SYMBOL_GPL vmlinux 0xdec9f7fd pwm_capture +EXPORT_SYMBOL_GPL vmlinux 0xde73f5f7 register_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0xde7df059 sdhci_pltfm_resume +EXPORT_SYMBOL_GPL vmlinux 0xde7f214a devm_rtc_nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0xde7f9875 of_icc_get_from_provider +EXPORT_SYMBOL_GPL vmlinux 0xde82333a mmc_send_status +EXPORT_SYMBOL_GPL vmlinux 0xde8674c2 kernfs_path_from_node +EXPORT_SYMBOL_GPL vmlinux 0xde8c706e snd_soc_get_xr_sx +EXPORT_SYMBOL_GPL vmlinux 0xde9f4afb of_css +EXPORT_SYMBOL_GPL vmlinux 0xdea1be54 of_get_required_opp_performance_state +EXPORT_SYMBOL_GPL vmlinux 0xdea40629 synth_event_gen_cmd_array_start +EXPORT_SYMBOL_GPL vmlinux 0xdea60634 bpf_trace_run10 +EXPORT_SYMBOL_GPL vmlinux 0xdeb73406 devlink_sb_register +EXPORT_SYMBOL_GPL vmlinux 0xdec5f7cf rtc_initialize_alarm +EXPORT_SYMBOL_GPL vmlinux 0xdec68dc1 thermal_cooling_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdedb8a1a of_genpd_del_provider +EXPORT_SYMBOL_GPL vmlinux 0xdedd11ee ehci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0xdee0e1c8 bus_get_kset +EXPORT_SYMBOL_GPL vmlinux 0xdee3151b regulator_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xdee464a6 pm_generic_resume_early +EXPORT_SYMBOL_GPL vmlinux 0xdeef52d7 snd_soc_dapm_sync_unlocked +EXPORT_SYMBOL_GPL vmlinux 0xdefaf91b virtqueue_get_buf EXPORT_SYMBOL_GPL vmlinux 0xdeffa0a7 edac_raw_mc_handle_error -EXPORT_SYMBOL_GPL vmlinux 0xdeffb641 reset_control_get_count -EXPORT_SYMBOL_GPL vmlinux 0xdf03680d inet_twsk_alloc EXPORT_SYMBOL_GPL vmlinux 0xdf0476f3 __tracepoint_unmap -EXPORT_SYMBOL_GPL vmlinux 0xdf063c0a ata_sas_slave_configure EXPORT_SYMBOL_GPL vmlinux 0xdf0f75c6 eventfd_signal EXPORT_SYMBOL_GPL vmlinux 0xdf255dcf memory_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xdf272428 pm_generic_resume_early -EXPORT_SYMBOL_GPL vmlinux 0xdf30c2bf trace_array_init_printk -EXPORT_SYMBOL_GPL vmlinux 0xdf393696 rtc_read_time -EXPORT_SYMBOL_GPL vmlinux 0xdf3fd4e7 pci_intx -EXPORT_SYMBOL_GPL vmlinux 0xdf41e6fb serial8250_modem_status -EXPORT_SYMBOL_GPL vmlinux 0xdf5fe33f thermal_cooling_device_register -EXPORT_SYMBOL_GPL vmlinux 0xdf6d8403 pm_clk_resume -EXPORT_SYMBOL_GPL vmlinux 0xdf72f926 power_supply_powers -EXPORT_SYMBOL_GPL vmlinux 0xdf7f01e5 sbitmap_show -EXPORT_SYMBOL_GPL vmlinux 0xdf81b7b3 ata_bmdma_qc_prep -EXPORT_SYMBOL_GPL vmlinux 0xdf81ef6f mtd_ooblayout_free -EXPORT_SYMBOL_GPL vmlinux 0xdf8ca636 component_master_del -EXPORT_SYMBOL_GPL vmlinux 0xdf979a26 __pci_epc_create -EXPORT_SYMBOL_GPL vmlinux 0xdf9fdc35 sync_page_io -EXPORT_SYMBOL_GPL vmlinux 0xdfa965c6 extcon_get_extcon_dev -EXPORT_SYMBOL_GPL vmlinux 0xdfb3778c device_store_ulong +EXPORT_SYMBOL_GPL vmlinux 0xdf35aa18 tpm_pcr_extend +EXPORT_SYMBOL_GPL vmlinux 0xdf3c1843 clk_hw_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0xdf56d512 usb_phy_generic_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdf7487f3 iomap_seek_data +EXPORT_SYMBOL_GPL vmlinux 0xdf770fec virtqueue_add_sgs +EXPORT_SYMBOL_GPL vmlinux 0xdf8c48a2 snd_soc_dai_action +EXPORT_SYMBOL_GPL vmlinux 0xdf9e4420 crypto_register_rngs +EXPORT_SYMBOL_GPL vmlinux 0xdfaabc66 fsstack_copy_inode_size +EXPORT_SYMBOL_GPL vmlinux 0xdfaaeaa4 arm_iommu_create_mapping +EXPORT_SYMBOL_GPL vmlinux 0xdfb0ccb2 rdev_get_regmap +EXPORT_SYMBOL_GPL vmlinux 0xdfb7a292 nanddev_ecc_engine_init EXPORT_SYMBOL_GPL vmlinux 0xdfc03cd7 __wake_up_sync +EXPORT_SYMBOL_GPL vmlinux 0xdfc620ee devm_regmap_add_irq_chip EXPORT_SYMBOL_GPL vmlinux 0xdfcb6c90 mctrl_gpio_set -EXPORT_SYMBOL_GPL vmlinux 0xdfcd7592 shmem_truncate_range -EXPORT_SYMBOL_GPL vmlinux 0xdfe362e6 __blk_mq_debugfs_rq_show -EXPORT_SYMBOL_GPL vmlinux 0xe0047f63 sdhci_free_host -EXPORT_SYMBOL_GPL vmlinux 0xe00ab9e1 vp_modern_get_queue_enable -EXPORT_SYMBOL_GPL vmlinux 0xe019f376 pinmux_generic_remove_function -EXPORT_SYMBOL_GPL vmlinux 0xe0255294 fat_remove_entries -EXPORT_SYMBOL_GPL vmlinux 0xe0255fd5 iomap_swapfile_activate -EXPORT_SYMBOL_GPL vmlinux 0xe02c50fa perf_aux_output_skip -EXPORT_SYMBOL_GPL vmlinux 0xe03cef0a devlink_flash_update_status_notify +EXPORT_SYMBOL_GPL vmlinux 0xdfd23a13 snd_soc_component_compr_get_codec_caps +EXPORT_SYMBOL_GPL vmlinux 0xdfd9ba62 devm_regmap_del_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0xe0037853 __traceiter_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0xe00d8faf netdev_rx_handler_register +EXPORT_SYMBOL_GPL vmlinux 0xe012c77e bsg_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0xe02b8673 ip6_datagram_send_ctl +EXPORT_SYMBOL_GPL vmlinux 0xe034541e led_init_core +EXPORT_SYMBOL_GPL vmlinux 0xe040920e irq_set_chip_and_handler_name +EXPORT_SYMBOL_GPL vmlinux 0xe04a7238 cpufreq_cooling_register EXPORT_SYMBOL_GPL vmlinux 0xe04e99d7 btree_merge -EXPORT_SYMBOL_GPL vmlinux 0xe055a9d9 nanddev_bbt_update EXPORT_SYMBOL_GPL vmlinux 0xe05e2f85 nexthop_free_rcu -EXPORT_SYMBOL_GPL vmlinux 0xe093b4d4 dma_buf_attach +EXPORT_SYMBOL_GPL vmlinux 0xe08ab24f devlink_rate_leaf_create +EXPORT_SYMBOL_GPL vmlinux 0xe08b5fde platform_get_irq_optional +EXPORT_SYMBOL_GPL vmlinux 0xe09f3fd1 of_genpd_parse_idle_states +EXPORT_SYMBOL_GPL vmlinux 0xe0a46431 shmem_file_setup_with_mnt EXPORT_SYMBOL_GPL vmlinux 0xe0b1c103 clk_set_max_rate -EXPORT_SYMBOL_GPL vmlinux 0xe0e50ca5 regulator_bulk_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0xe0e97c5a fib_add_nexthop -EXPORT_SYMBOL_GPL vmlinux 0xe0fbb290 gpiod_set_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xe10e10ba devm_fwnode_gpiod_get_index -EXPORT_SYMBOL_GPL vmlinux 0xe1282755 crypto_stats_decompress -EXPORT_SYMBOL_GPL vmlinux 0xe12b5b5b bpf_prog_inc -EXPORT_SYMBOL_GPL vmlinux 0xe12e134a pci_dev_run_wake -EXPORT_SYMBOL_GPL vmlinux 0xe13dbe97 pinmux_generic_add_function -EXPORT_SYMBOL_GPL vmlinux 0xe14b017e usb_alloc_streams -EXPORT_SYMBOL_GPL vmlinux 0xe14cd544 spi_mem_supports_op -EXPORT_SYMBOL_GPL vmlinux 0xe1548e09 dax_copy_to_iter -EXPORT_SYMBOL_GPL vmlinux 0xe163004a tty_port_tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xe0b3d0e8 regmap_get_val_endian +EXPORT_SYMBOL_GPL vmlinux 0xe0b60ee3 meson8_pmx_ops +EXPORT_SYMBOL_GPL vmlinux 0xe0d87538 security_kernel_post_read_file +EXPORT_SYMBOL_GPL vmlinux 0xe0e1d79f usb_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xe100e40a usb_asmedia_modifyflowcontrol +EXPORT_SYMBOL_GPL vmlinux 0xe111900a snd_soc_of_get_dai_name +EXPORT_SYMBOL_GPL vmlinux 0xe112aae2 tty_port_link_device +EXPORT_SYMBOL_GPL vmlinux 0xe12a5834 crypto_inst_setname +EXPORT_SYMBOL_GPL vmlinux 0xe12f7d3b espintcp_queue_out +EXPORT_SYMBOL_GPL vmlinux 0xe159e42d devm_pm_opp_attach_genpd +EXPORT_SYMBOL_GPL vmlinux 0xe15ff01b nf_ip_route EXPORT_SYMBOL_GPL vmlinux 0xe1653a54 software_node_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe176e1fe evm_verifyxattr +EXPORT_SYMBOL_GPL vmlinux 0xe167719a device_property_read_string EXPORT_SYMBOL_GPL vmlinux 0xe1775ee7 dm_get_reserved_bio_based_ios -EXPORT_SYMBOL_GPL vmlinux 0xe17d786e genphy_c45_an_disable_aneg +EXPORT_SYMBOL_GPL vmlinux 0xe179fc5c of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe184f67b skb_gso_validate_mac_len EXPORT_SYMBOL_GPL vmlinux 0xe18960ba nvmem_device_write -EXPORT_SYMBOL_GPL vmlinux 0xe19a1f90 icc_node_add -EXPORT_SYMBOL_GPL vmlinux 0xe19a9203 snd_soc_dpcm_be_can_update -EXPORT_SYMBOL_GPL vmlinux 0xe19bd567 dm_per_bio_data -EXPORT_SYMBOL_GPL vmlinux 0xe19c1295 device_link_del -EXPORT_SYMBOL_GPL vmlinux 0xe1b7fbe2 trace_define_field +EXPORT_SYMBOL_GPL vmlinux 0xe18d55d8 io_cgrp_subsys +EXPORT_SYMBOL_GPL vmlinux 0xe1a510f6 __hvc_resize +EXPORT_SYMBOL_GPL vmlinux 0xe1af7306 nexthop_for_each_fib6_nh +EXPORT_SYMBOL_GPL vmlinux 0xe1bd432b shash_ahash_update EXPORT_SYMBOL_GPL vmlinux 0xe1bd6c99 rio_init_mports -EXPORT_SYMBOL_GPL vmlinux 0xe1bea734 ata_port_desc +EXPORT_SYMBOL_GPL vmlinux 0xe1c34bbb ata_platform_remove_one EXPORT_SYMBOL_GPL vmlinux 0xe1c63523 blk_ksm_get_slot_idx -EXPORT_SYMBOL_GPL vmlinux 0xe1c75003 receive_fd -EXPORT_SYMBOL_GPL vmlinux 0xe1dbbbc0 mbox_controller_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe1fcf433 fuse_init_fs_context_submount -EXPORT_SYMBOL_GPL vmlinux 0xe20e1b5b iomap_seek_hole -EXPORT_SYMBOL_GPL vmlinux 0xe23203d0 usb_gadget_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xe22ad35a pci_common_swizzle EXPORT_SYMBOL_GPL vmlinux 0xe233762a input_event_from_user -EXPORT_SYMBOL_GPL vmlinux 0xe2345b07 sched_trace_rq_cpu +EXPORT_SYMBOL_GPL vmlinux 0xe23aea0f stmpe_reg_read EXPORT_SYMBOL_GPL vmlinux 0xe23cd479 alarm_expires_remaining -EXPORT_SYMBOL_GPL vmlinux 0xe246f9ac ip6_sk_redirect -EXPORT_SYMBOL_GPL vmlinux 0xe24cfe41 nand_decode_ext_id -EXPORT_SYMBOL_GPL vmlinux 0xe24eff82 regulator_map_voltage_pickable_linear_range +EXPORT_SYMBOL_GPL vmlinux 0xe248ef60 spi_mem_default_supports_op +EXPORT_SYMBOL_GPL vmlinux 0xe24f4662 icc_node_create +EXPORT_SYMBOL_GPL vmlinux 0xe25a559d crypto_hash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0xe266f6d7 devm_fwnode_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0xe26a56ef usb_gadget_set_state EXPORT_SYMBOL_GPL vmlinux 0xe2717792 dax_zero_page_range -EXPORT_SYMBOL_GPL vmlinux 0xe2808aef fib_rules_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe2791dde devm_hwrng_register EXPORT_SYMBOL_GPL vmlinux 0xe282c5aa __tracepoint_sched_update_nr_running_tp -EXPORT_SYMBOL_GPL vmlinux 0xe29f13d5 subsys_find_device_by_id +EXPORT_SYMBOL_GPL vmlinux 0xe29bb087 is_transparent_hugepage +EXPORT_SYMBOL_GPL vmlinux 0xe2a06624 devm_watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0xe2a15909 register_trace_event +EXPORT_SYMBOL_GPL vmlinux 0xe2a3f810 unregister_trace_event EXPORT_SYMBOL_GPL vmlinux 0xe2b3207a unregister_switchdev_notifier -EXPORT_SYMBOL_GPL vmlinux 0xe2be3443 mtd_get_fact_prot_info -EXPORT_SYMBOL_GPL vmlinux 0xe2bfb0a9 dma_resv_get_fences -EXPORT_SYMBOL_GPL vmlinux 0xe2c6c1a3 pci_vfs_assigned +EXPORT_SYMBOL_GPL vmlinux 0xe2b3b41f switchdev_bridge_port_unoffload +EXPORT_SYMBOL_GPL vmlinux 0xe2b4831b xdp_convert_zc_to_xdp_frame +EXPORT_SYMBOL_GPL vmlinux 0xe2c4155f firmware_request_nowarn EXPORT_SYMBOL_GPL vmlinux 0xe2e0f798 tracepoint_srcu -EXPORT_SYMBOL_GPL vmlinux 0xe2efdbd9 power_supply_set_battery_charged -EXPORT_SYMBOL_GPL vmlinux 0xe2fc2011 snd_soc_of_get_dai_name -EXPORT_SYMBOL_GPL vmlinux 0xe30b03da umd_unload_blob -EXPORT_SYMBOL_GPL vmlinux 0xe30d588d of_clk_get_from_provider +EXPORT_SYMBOL_GPL vmlinux 0xe2f8154c pci_probe_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0xe2ffb75b devlink_port_param_driverinit_value_get +EXPORT_SYMBOL_GPL vmlinux 0xe3083774 attribute_container_find_class_device +EXPORT_SYMBOL_GPL vmlinux 0xe3120a88 platform_get_irq_byname EXPORT_SYMBOL_GPL vmlinux 0xe31315a4 spi_delay_exec +EXPORT_SYMBOL_GPL vmlinux 0xe3198417 regmap_register_patch +EXPORT_SYMBOL_GPL vmlinux 0xe31e72b4 mmc_regulator_get_supply EXPORT_SYMBOL_GPL vmlinux 0xe320a99a cpuidle_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0xe321849a mtk_pinconf_drive_set_raw -EXPORT_SYMBOL_GPL vmlinux 0xe347211f udp_destruct_sock -EXPORT_SYMBOL_GPL vmlinux 0xe347d70f devm_remove_action +EXPORT_SYMBOL_GPL vmlinux 0xe331012e of_dma_is_coherent +EXPORT_SYMBOL_GPL vmlinux 0xe345be6a yield_to +EXPORT_SYMBOL_GPL vmlinux 0xe3765140 snd_soc_link_compr_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xe3796553 dst_cache_set_ip4 EXPORT_SYMBOL_GPL vmlinux 0xe38f4027 synchronize_srcu_expedited -EXPORT_SYMBOL_GPL vmlinux 0xe3982d77 max8997_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0xe3918529 pci_epf_destroy EXPORT_SYMBOL_GPL vmlinux 0xe39d0794 usb_phy_roothub_exit -EXPORT_SYMBOL_GPL vmlinux 0xe3a9240e pci_ecam_map_bus -EXPORT_SYMBOL_GPL vmlinux 0xe3ae2746 snd_soc_component_compr_get_metadata EXPORT_SYMBOL_GPL vmlinux 0xe3b09712 kprobe_event_delete -EXPORT_SYMBOL_GPL vmlinux 0xe3c777e3 is_current_mnt_ns -EXPORT_SYMBOL_GPL vmlinux 0xe3d47d3d __bio_try_merge_page -EXPORT_SYMBOL_GPL vmlinux 0xe40a6e53 __vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0xe3c44e4d mbox_free_channel +EXPORT_SYMBOL_GPL vmlinux 0xe3cda007 dev_pm_get_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0xe3f1db12 ata_port_freeze EXPORT_SYMBOL_GPL vmlinux 0xe40bb23e devlink_health_reporter_priv +EXPORT_SYMBOL_GPL vmlinux 0xe40c096b pci_epf_create +EXPORT_SYMBOL_GPL vmlinux 0xe40dad5f mtk_build_eint +EXPORT_SYMBOL_GPL vmlinux 0xe417ff9b blk_mq_rdma_map_queues +EXPORT_SYMBOL_GPL vmlinux 0xe41f5324 rockchip_pcie_init_port +EXPORT_SYMBOL_GPL vmlinux 0xe430614f stmpe_enable EXPORT_SYMBOL_GPL vmlinux 0xe4309905 syscore_resume -EXPORT_SYMBOL_GPL vmlinux 0xe43659e4 device_remove_properties -EXPORT_SYMBOL_GPL vmlinux 0xe4383721 component_add -EXPORT_SYMBOL_GPL vmlinux 0xe43de0fb snd_soc_card_jack_new -EXPORT_SYMBOL_GPL vmlinux 0xe44aa5c7 usb_get_maximum_ssp_rate EXPORT_SYMBOL_GPL vmlinux 0xe466a423 init_srcu_struct -EXPORT_SYMBOL_GPL vmlinux 0xe46849c8 serdev_device_wait_until_sent -EXPORT_SYMBOL_GPL vmlinux 0xe46b5623 device_show_int -EXPORT_SYMBOL_GPL vmlinux 0xe4865ce0 __devm_irq_alloc_descs -EXPORT_SYMBOL_GPL vmlinux 0xe48ba3d5 add_mtd_blktrans_dev -EXPORT_SYMBOL_GPL vmlinux 0xe48ca691 cpts_register +EXPORT_SYMBOL_GPL vmlinux 0xe46ac588 led_sysfs_enable +EXPORT_SYMBOL_GPL vmlinux 0xe46cf7b3 ahci_platform_enable_resources +EXPORT_SYMBOL_GPL vmlinux 0xe46eb742 pm_schedule_suspend +EXPORT_SYMBOL_GPL vmlinux 0xe488bcd9 wakeup_source_destroy EXPORT_SYMBOL_GPL vmlinux 0xe4971ade tracing_alloc_snapshot EXPORT_SYMBOL_GPL vmlinux 0xe4977bba __tracepoint_block_rq_remap EXPORT_SYMBOL_GPL vmlinux 0xe4b064f9 pcie_link_speed EXPORT_SYMBOL_GPL vmlinux 0xe4b818c3 phy_speed_to_str EXPORT_SYMBOL_GPL vmlinux 0xe4b93f27 public_key_verify_signature -EXPORT_SYMBOL_GPL vmlinux 0xe4bae4e1 nand_reset_op -EXPORT_SYMBOL_GPL vmlinux 0xe4bf2fa6 dpcm_be_dai_trigger EXPORT_SYMBOL_GPL vmlinux 0xe4c2c66c rtc_ktime_to_tm -EXPORT_SYMBOL_GPL vmlinux 0xe4c34d5d irq_of_parse_and_map -EXPORT_SYMBOL_GPL vmlinux 0xe4c3ba3d uprobe_register_refctr +EXPORT_SYMBOL_GPL vmlinux 0xe4c5f6f2 irq_chip_set_vcpu_affinity_parent +EXPORT_SYMBOL_GPL vmlinux 0xe4c6ddc8 cpufreq_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xe4c7b5a2 device_create EXPORT_SYMBOL_GPL vmlinux 0xe4c9f178 btree_get_prev -EXPORT_SYMBOL_GPL vmlinux 0xe4de82e0 of_console_check +EXPORT_SYMBOL_GPL vmlinux 0xe4cfea18 kthread_queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0xe4d1a45a ahci_platform_enable_clks EXPORT_SYMBOL_GPL vmlinux 0xe4e48b12 swphy_validate_state -EXPORT_SYMBOL_GPL vmlinux 0xe4f07aa2 sk_attach_filter -EXPORT_SYMBOL_GPL vmlinux 0xe4f5b74d gpiochip_line_is_valid -EXPORT_SYMBOL_GPL vmlinux 0xe4f8107c __traceiter_rpm_return_int -EXPORT_SYMBOL_GPL vmlinux 0xe50e1594 proc_get_parent_data -EXPORT_SYMBOL_GPL vmlinux 0xe52133d6 watchdog_set_last_hw_keepalive -EXPORT_SYMBOL_GPL vmlinux 0xe531b916 serial8250_rx_chars -EXPORT_SYMBOL_GPL vmlinux 0xe5521abd fsverity_cleanup_inode -EXPORT_SYMBOL_GPL vmlinux 0xe553e18b nand_deselect_target -EXPORT_SYMBOL_GPL vmlinux 0xe5551a3c register_virtio_driver -EXPORT_SYMBOL_GPL vmlinux 0xe559b278 crypto_alloc_aead -EXPORT_SYMBOL_GPL vmlinux 0xe56fb14a firmware_request_platform -EXPORT_SYMBOL_GPL vmlinux 0xe5865143 elv_register +EXPORT_SYMBOL_GPL vmlinux 0xe4ed0c9b devm_power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0xe4eefa65 debugfs_create_u64 +EXPORT_SYMBOL_GPL vmlinux 0xe4ef76ad usb_urb_ep_type_check +EXPORT_SYMBOL_GPL vmlinux 0xe502eae5 power_supply_changed +EXPORT_SYMBOL_GPL vmlinux 0xe5076355 skb_zerocopy_iter_dgram +EXPORT_SYMBOL_GPL vmlinux 0xe51b3794 pci_msi_mask_irq +EXPORT_SYMBOL_GPL vmlinux 0xe5248f01 gpiochip_generic_request +EXPORT_SYMBOL_GPL vmlinux 0xe52990c4 power_supply_set_property +EXPORT_SYMBOL_GPL vmlinux 0xe562405a alarmtimer_get_rtcdev +EXPORT_SYMBOL_GPL vmlinux 0xe56a09a8 devm_clk_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0xe57a9a00 regcache_sync +EXPORT_SYMBOL_GPL vmlinux 0xe58619ce __tcp_send_ack EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe58bb8a1 device_release_driver -EXPORT_SYMBOL_GPL vmlinux 0xe5928d7a edac_mc_del_mc -EXPORT_SYMBOL_GPL vmlinux 0xe5949090 kthread_cancel_work_sync -EXPORT_SYMBOL_GPL vmlinux 0xe596b4b1 sk_msg_free_partial -EXPORT_SYMBOL_GPL vmlinux 0xe59743d9 pci_generic_ecam_ops -EXPORT_SYMBOL_GPL vmlinux 0xe59bf5a4 verify_signature +EXPORT_SYMBOL_GPL vmlinux 0xe58c3a3b trace_output_call +EXPORT_SYMBOL_GPL vmlinux 0xe58ce7d3 extcon_find_edev_by_node +EXPORT_SYMBOL_GPL vmlinux 0xe58ed219 fwnode_count_parents +EXPORT_SYMBOL_GPL vmlinux 0xe58fc0f6 irq_domain_remove EXPORT_SYMBOL_GPL vmlinux 0xe59efb0e musb_clearb -EXPORT_SYMBOL_GPL vmlinux 0xe5a058ec thermal_remove_hwmon_sysfs -EXPORT_SYMBOL_GPL vmlinux 0xe5a4e2ce iptunnel_metadata_reply +EXPORT_SYMBOL_GPL vmlinux 0xe5a24a3f pinctrl_dev_get_name +EXPORT_SYMBOL_GPL vmlinux 0xe5a7ba00 dpcm_be_dai_trigger +EXPORT_SYMBOL_GPL vmlinux 0xe5c0dc68 devm_thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0xe5c29915 devm_pm_opp_set_regulators EXPORT_SYMBOL_GPL vmlinux 0xe5cb1943 hisi_clk_register_divider -EXPORT_SYMBOL_GPL vmlinux 0xe5cfef21 uart_try_toggle_sysrq -EXPORT_SYMBOL_GPL vmlinux 0xe5d7bb86 rio_mport_send_doorbell -EXPORT_SYMBOL_GPL vmlinux 0xe5da475e sdhci_enable_sdio_irq -EXPORT_SYMBOL_GPL vmlinux 0xe5e0ba0d pci_ioremap_bar -EXPORT_SYMBOL_GPL vmlinux 0xe5e1d569 pci_reset_function -EXPORT_SYMBOL_GPL vmlinux 0xe5e2da57 spi_mem_dirmap_read -EXPORT_SYMBOL_GPL vmlinux 0xe5fbb0d5 exportfs_encode_inode_fh -EXPORT_SYMBOL_GPL vmlinux 0xe5ff67b3 devm_hwmon_device_register_with_groups -EXPORT_SYMBOL_GPL vmlinux 0xe60b42c1 net_ns_get_ownership -EXPORT_SYMBOL_GPL vmlinux 0xe60c386e inet_hash -EXPORT_SYMBOL_GPL vmlinux 0xe60c8710 fixed_phy_set_link_update +EXPORT_SYMBOL_GPL vmlinux 0xe5f6d0c2 usb_get_descriptor +EXPORT_SYMBOL_GPL vmlinux 0xe5fc415d ethnl_cable_test_step +EXPORT_SYMBOL_GPL vmlinux 0xe5fdce1f ahci_ops +EXPORT_SYMBOL_GPL vmlinux 0xe60194e2 cpuidle_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xe60f9bb1 gpiod_get_from_of_node EXPORT_SYMBOL_GPL vmlinux 0xe628bb9f phy_fibre_port_array -EXPORT_SYMBOL_GPL vmlinux 0xe64392d9 unregister_virtio_driver -EXPORT_SYMBOL_GPL vmlinux 0xe653d6ba dmaengine_desc_get_metadata_ptr -EXPORT_SYMBOL_GPL vmlinux 0xe654f8ed cpufreq_unregister_governor +EXPORT_SYMBOL_GPL vmlinux 0xe636fbc6 xdp_rxq_info_is_reg EXPORT_SYMBOL_GPL vmlinux 0xe668835c __tracepoint_devlink_hwerr -EXPORT_SYMBOL_GPL vmlinux 0xe6714a05 devm_phy_create -EXPORT_SYMBOL_GPL vmlinux 0xe672c6fe edac_mc_find_csrow_by_page -EXPORT_SYMBOL_GPL vmlinux 0xe67d0325 sk_psock_msg_verdict -EXPORT_SYMBOL_GPL vmlinux 0xe68c495e sdhci_end_tuning -EXPORT_SYMBOL_GPL vmlinux 0xe690280d i2c_new_smbus_alert_device -EXPORT_SYMBOL_GPL vmlinux 0xe695023c pm_clk_add_clk -EXPORT_SYMBOL_GPL vmlinux 0xe69c0825 pm_genpd_add_subdomain -EXPORT_SYMBOL_GPL vmlinux 0xe69f063a ata_sff_lost_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xe67ad507 raw_seq_next +EXPORT_SYMBOL_GPL vmlinux 0xe6832b72 da903x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0xe696dabd mtk_pinconf_bias_get_combo +EXPORT_SYMBOL_GPL vmlinux 0xe69f2a1f regulator_get_current_limit_regmap EXPORT_SYMBOL_GPL vmlinux 0xe6a257f1 divider_round_rate_parent -EXPORT_SYMBOL_GPL vmlinux 0xe6a2a489 hvc_remove -EXPORT_SYMBOL_GPL vmlinux 0xe6a2df5c ping_rcv +EXPORT_SYMBOL_GPL vmlinux 0xe6b3bb6e dev_fill_metadata_dst +EXPORT_SYMBOL_GPL vmlinux 0xe6bd63cc crypto_skcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0xe6c00326 usb_reset_endpoint +EXPORT_SYMBOL_GPL vmlinux 0xe6c54802 nvdimm_clear_poison EXPORT_SYMBOL_GPL vmlinux 0xe6c7b5f3 synchronize_srcu -EXPORT_SYMBOL_GPL vmlinux 0xe6cf9cc9 event_triggers_post_call -EXPORT_SYMBOL_GPL vmlinux 0xe6d2208a switchdev_port_attr_set +EXPORT_SYMBOL_GPL vmlinux 0xe6d69024 gpiod_to_chip +EXPORT_SYMBOL_GPL vmlinux 0xe6da1ed5 sysfs_remove_link EXPORT_SYMBOL_GPL vmlinux 0xe6e40502 rcu_get_gp_seq -EXPORT_SYMBOL_GPL vmlinux 0xe6f2260a fuse_dev_alloc +EXPORT_SYMBOL_GPL vmlinux 0xe6e6b2fb regmap_mmio_detach_clk +EXPORT_SYMBOL_GPL vmlinux 0xe6f36ced pci_epc_remove_epf EXPORT_SYMBOL_GPL vmlinux 0xe700d767 reset_control_bulk_deassert -EXPORT_SYMBOL_GPL vmlinux 0xe701ee02 tcp_unregister_ulp -EXPORT_SYMBOL_GPL vmlinux 0xe70d33bd device_set_node -EXPORT_SYMBOL_GPL vmlinux 0xe72bfb62 fib_nh_common_init -EXPORT_SYMBOL_GPL vmlinux 0xe72ee9f2 usb_deregister_dev -EXPORT_SYMBOL_GPL vmlinux 0xe73225e5 fuse_dev_install -EXPORT_SYMBOL_GPL vmlinux 0xe736b72f rio_release_outb_mbox -EXPORT_SYMBOL_GPL vmlinux 0xe73d5023 bus_sort_breadthfirst -EXPORT_SYMBOL_GPL vmlinux 0xe7409efa pinctrl_find_and_add_gpio_range -EXPORT_SYMBOL_GPL vmlinux 0xe743fe9e tcp_cong_avoid_ai +EXPORT_SYMBOL_GPL vmlinux 0xe713f177 sata_scr_write +EXPORT_SYMBOL_GPL vmlinux 0xe71f52f8 __devm_regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0xe731fb34 snd_soc_get_pcm_runtime +EXPORT_SYMBOL_GPL vmlinux 0xe738795b mbox_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xe73eb030 virtio_max_dma_size EXPORT_SYMBOL_GPL vmlinux 0xe747297d xas_find_conflict -EXPORT_SYMBOL_GPL vmlinux 0xe7509e03 __ata_change_queue_depth EXPORT_SYMBOL_GPL vmlinux 0xe753b68d devlink_fmsg_arr_pair_nest_end EXPORT_SYMBOL_GPL vmlinux 0xe75625fb cpu_bit_bitmap +EXPORT_SYMBOL_GPL vmlinux 0xe75cc05c pci_epc_get_features EXPORT_SYMBOL_GPL vmlinux 0xe769232e sprint_symbol_no_offset -EXPORT_SYMBOL_GPL vmlinux 0xe76b1646 skcipher_walk_async +EXPORT_SYMBOL_GPL vmlinux 0xe778ba38 register_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0xe77b224d power_supply_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0xe782f5e7 spi_mem_exec_op EXPORT_SYMBOL_GPL vmlinux 0xe783e261 sysfs_emit -EXPORT_SYMBOL_GPL vmlinux 0xe799d95b pci_iov_virtfn_devfn -EXPORT_SYMBOL_GPL vmlinux 0xe79bc875 gpiod_is_active_low -EXPORT_SYMBOL_GPL vmlinux 0xe7a0f422 uprobe_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe7a9d006 __traceiter_rpm_idle -EXPORT_SYMBOL_GPL vmlinux 0xe7ac429c skb_append_pagefrags -EXPORT_SYMBOL_GPL vmlinux 0xe7ae1bd8 ip_route_output_flow -EXPORT_SYMBOL_GPL vmlinux 0xe7b2d45f rockchip_pcie_parse_dt -EXPORT_SYMBOL_GPL vmlinux 0xe7c6d426 gpiochip_irq_domain_deactivate -EXPORT_SYMBOL_GPL vmlinux 0xe7c83803 da903x_read +EXPORT_SYMBOL_GPL vmlinux 0xe7876055 sbitmap_bitmap_show +EXPORT_SYMBOL_GPL vmlinux 0xe7a52a12 usb_wakeup_enabled_descendants +EXPORT_SYMBOL_GPL vmlinux 0xe7a849d9 __devres_alloc_node +EXPORT_SYMBOL_GPL vmlinux 0xe7a95cc8 serial8250_rpm_get_tx +EXPORT_SYMBOL_GPL vmlinux 0xe7bff0e1 sata_sff_hardreset +EXPORT_SYMBOL_GPL vmlinux 0xe7c3036b inet_twsk_put +EXPORT_SYMBOL_GPL vmlinux 0xe7c8e900 pci_user_read_config_dword EXPORT_SYMBOL_GPL vmlinux 0xe7d6d2d4 filter_match_preds -EXPORT_SYMBOL_GPL vmlinux 0xe7e9d68d amba_ahb_device_add +EXPORT_SYMBOL_GPL vmlinux 0xe7e0b4f7 devm_otg_ulpi_create EXPORT_SYMBOL_GPL vmlinux 0xe7eee3d5 __cookie_v4_init_sequence -EXPORT_SYMBOL_GPL vmlinux 0xe7f6b9d7 pinctrl_pm_select_idle_state -EXPORT_SYMBOL_GPL vmlinux 0xe7f791f5 security_path_chmod -EXPORT_SYMBOL_GPL vmlinux 0xe80c9665 clockevents_register_device -EXPORT_SYMBOL_GPL vmlinux 0xe81523a4 iommu_iova_to_phys +EXPORT_SYMBOL_GPL vmlinux 0xe7fcf5e1 rio_mport_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0xe802f91a snd_dmaengine_pcm_prepare_slave_config +EXPORT_SYMBOL_GPL vmlinux 0xe80a791c clk_hw_get_name +EXPORT_SYMBOL_GPL vmlinux 0xe80f4647 wwan_port_rx EXPORT_SYMBOL_GPL vmlinux 0xe818b32b ata_bmdma_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xe822a692 __pci_epf_register_driver -EXPORT_SYMBOL_GPL vmlinux 0xe8236778 mmc_get_ext_csd -EXPORT_SYMBOL_GPL vmlinux 0xe83433c9 wm8400_reset_codec_reg_cache -EXPORT_SYMBOL_GPL vmlinux 0xe845447d phy_pm_runtime_get_sync +EXPORT_SYMBOL_GPL vmlinux 0xe820b6b8 nvmem_cell_read_u64 +EXPORT_SYMBOL_GPL vmlinux 0xe8263e6c netdev_rx_handler_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe835c258 pci_ioremap_bar +EXPORT_SYMBOL_GPL vmlinux 0xe83fee8c da9052_adc_read_temp EXPORT_SYMBOL_GPL vmlinux 0xe84f6e5c pciserial_remove_ports +EXPORT_SYMBOL_GPL vmlinux 0xe85078d5 gpiod_get_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xe8580728 device_get_dma_attr EXPORT_SYMBOL_GPL vmlinux 0xe85a9fd3 cpu_cluster_pm_exit -EXPORT_SYMBOL_GPL vmlinux 0xe85e7069 __traceiter_pelt_cfs_tp EXPORT_SYMBOL_GPL vmlinux 0xe862c4b7 dpm_suspend_start -EXPORT_SYMBOL_GPL vmlinux 0xe86a7078 serial8250_read_char -EXPORT_SYMBOL_GPL vmlinux 0xe899a652 get_device_system_crosststamp -EXPORT_SYMBOL_GPL vmlinux 0xe8a80287 iommu_sva_unbind_gpasid -EXPORT_SYMBOL_GPL vmlinux 0xe8b31066 tc3589x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xe8c771f9 dev_pm_opp_is_turbo -EXPORT_SYMBOL_GPL vmlinux 0xe90e6214 blk_rq_unprep_clone +EXPORT_SYMBOL_GPL vmlinux 0xe8738884 bpf_map_inc_with_uref +EXPORT_SYMBOL_GPL vmlinux 0xe8738d83 lwtunnel_encap_add_ops +EXPORT_SYMBOL_GPL vmlinux 0xe88b60af pm_wakeup_ws_event +EXPORT_SYMBOL_GPL vmlinux 0xe8a7053d usb_phy_set_charger_current +EXPORT_SYMBOL_GPL vmlinux 0xe8b15a8c sdhci_execute_tuning +EXPORT_SYMBOL_GPL vmlinux 0xe8ccc3fb skb_append_pagefrags +EXPORT_SYMBOL_GPL vmlinux 0xe8f5ed05 component_add_typed +EXPORT_SYMBOL_GPL vmlinux 0xe901495a anon_inode_getfile EXPORT_SYMBOL_GPL vmlinux 0xe911df29 eventfd_ctx_do_read -EXPORT_SYMBOL_GPL vmlinux 0xe912fed8 dma_request_chan_by_mask -EXPORT_SYMBOL_GPL vmlinux 0xe92b3ca1 snd_soc_dai_digital_mute -EXPORT_SYMBOL_GPL vmlinux 0xe93aa4bc sdhci_reset +EXPORT_SYMBOL_GPL vmlinux 0xe91c663c efivars_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe9277c25 devm_usb_get_phy_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xe928626e irq_chip_set_type_parent +EXPORT_SYMBOL_GPL vmlinux 0xe931b237 ip_local_out EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free -EXPORT_SYMBOL_GPL vmlinux 0xe93fa677 usb_gadget_disconnect -EXPORT_SYMBOL_GPL vmlinux 0xe94582b9 fwnode_graph_get_remote_port +EXPORT_SYMBOL_GPL vmlinux 0xe949b337 relay_late_setup_files +EXPORT_SYMBOL_GPL vmlinux 0xe9532c13 clk_mux_determine_rate_flags EXPORT_SYMBOL_GPL vmlinux 0xe956a75c pl320_ipc_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0xe97c629e crypto_register_skciphers -EXPORT_SYMBOL_GPL vmlinux 0xe980e413 __put_mtd_device +EXPORT_SYMBOL_GPL vmlinux 0xe962338a crypto_register_acomps +EXPORT_SYMBOL_GPL vmlinux 0xe9635f55 xdp_rxq_info_reg_mem_model EXPORT_SYMBOL_GPL vmlinux 0xe98f55f2 arm_smccc_get_version -EXPORT_SYMBOL_GPL vmlinux 0xe991574f pm_generic_poweroff_noirq -EXPORT_SYMBOL_GPL vmlinux 0xe9a14da5 phy_speed_down +EXPORT_SYMBOL_GPL vmlinux 0xe9922476 fat_free_clusters +EXPORT_SYMBOL_GPL vmlinux 0xe9941a6a crypto_alloc_aead EXPORT_SYMBOL_GPL vmlinux 0xe9a22673 topology_set_thermal_pressure -EXPORT_SYMBOL_GPL vmlinux 0xe9a70472 clk_hw_set_parent EXPORT_SYMBOL_GPL vmlinux 0xe9a7fe16 nvmem_cell_read -EXPORT_SYMBOL_GPL vmlinux 0xe9b11e0a led_trigger_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe9baa91a mtk_pinconf_drive_get_rev1 -EXPORT_SYMBOL_GPL vmlinux 0xe9c247b4 snd_soc_jack_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe9aa55ac device_destroy +EXPORT_SYMBOL_GPL vmlinux 0xe9ac02f5 of_thermal_is_trip_valid +EXPORT_SYMBOL_GPL vmlinux 0xe9adac06 usb_bulk_msg +EXPORT_SYMBOL_GPL vmlinux 0xe9b72360 usb_get_status +EXPORT_SYMBOL_GPL vmlinux 0xe9ba33d5 reset_control_get_count +EXPORT_SYMBOL_GPL vmlinux 0xe9bb3c72 __raw_v4_lookup +EXPORT_SYMBOL_GPL vmlinux 0xe9bec999 devm_serdev_device_open EXPORT_SYMBOL_GPL vmlinux 0xe9c616de cpu_latency_qos_add_request -EXPORT_SYMBOL_GPL vmlinux 0xe9ce8e44 usb_hcd_resume_root_hub EXPORT_SYMBOL_GPL vmlinux 0xe9d1b7cf irq_to_pcap -EXPORT_SYMBOL_GPL vmlinux 0xe9d525fa tpm1_do_selftest -EXPORT_SYMBOL_GPL vmlinux 0xe9d9a6b0 subsys_interface_register -EXPORT_SYMBOL_GPL vmlinux 0xe9e29032 ahci_platform_init_host -EXPORT_SYMBOL_GPL vmlinux 0xe9e2dd40 clk_hw_register_composite -EXPORT_SYMBOL_GPL vmlinux 0xe9ff957d md_rdev_clear +EXPORT_SYMBOL_GPL vmlinux 0xe9dba1a5 dev_coredumpm +EXPORT_SYMBOL_GPL vmlinux 0xe9dbb3d9 ahci_start_engine +EXPORT_SYMBOL_GPL vmlinux 0xe9e30979 nd_blk_region_provider_data +EXPORT_SYMBOL_GPL vmlinux 0xe9e64fcb dev_pm_opp_remove +EXPORT_SYMBOL_GPL vmlinux 0xe9eab11e tps6586x_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0xe9eb39f4 of_hwspin_lock_get_id +EXPORT_SYMBOL_GPL vmlinux 0xe9fbca37 posix_acl_access_xattr_handler EXPORT_SYMBOL_GPL vmlinux 0xea018bbb mpi_test_bit -EXPORT_SYMBOL_GPL vmlinux 0xea0db54c devlink_traps_unregister -EXPORT_SYMBOL_GPL vmlinux 0xea10bafe __sock_recv_wifi_status EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd -EXPORT_SYMBOL_GPL vmlinux 0xea17eaef snd_soc_get_dai_name EXPORT_SYMBOL_GPL vmlinux 0xea1bb291 bL_switcher_get_enabled -EXPORT_SYMBOL_GPL vmlinux 0xea1f54e4 xfrm_dev_resume EXPORT_SYMBOL_GPL vmlinux 0xea1f6e0e hugetlb_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xea211473 gpiod_set_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xea30e37d __traceiter_devlink_hwmsg +EXPORT_SYMBOL_GPL vmlinux 0xea30c95a vp_modern_get_num_queues EXPORT_SYMBOL_GPL vmlinux 0xea314986 srcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0xea36a942 unix_outq_len EXPORT_SYMBOL_GPL vmlinux 0xea38036f ring_buffer_entries EXPORT_SYMBOL_GPL vmlinux 0xea3a23f3 public_key_free -EXPORT_SYMBOL_GPL vmlinux 0xea414085 snd_soc_of_parse_aux_devs -EXPORT_SYMBOL_GPL vmlinux 0xea449312 rtnl_register_module EXPORT_SYMBOL_GPL vmlinux 0xea4a09cb mod_delayed_work_on -EXPORT_SYMBOL_GPL vmlinux 0xea4b803e led_set_brightness +EXPORT_SYMBOL_GPL vmlinux 0xea50829d sched_trace_rq_avg_irq EXPORT_SYMBOL_GPL vmlinux 0xea50dad3 ahci_ignore_sss -EXPORT_SYMBOL_GPL vmlinux 0xea5674b7 powercap_unregister_zone -EXPORT_SYMBOL_GPL vmlinux 0xea57f7da sysfs_remove_link -EXPORT_SYMBOL_GPL vmlinux 0xea58a2f4 rio_mport_get_physefb -EXPORT_SYMBOL_GPL vmlinux 0xea640982 pci_epc_start -EXPORT_SYMBOL_GPL vmlinux 0xeaa298e8 snd_soc_dai_link_set_capabilities -EXPORT_SYMBOL_GPL vmlinux 0xeaa8e359 unregister_trace_event -EXPORT_SYMBOL_GPL vmlinux 0xeabc0ba2 thp_get_unmapped_area -EXPORT_SYMBOL_GPL vmlinux 0xeac79548 __fput_sync -EXPORT_SYMBOL_GPL vmlinux 0xeac9efb9 soc_ac97_ops -EXPORT_SYMBOL_GPL vmlinux 0xead35cca virtqueue_poll +EXPORT_SYMBOL_GPL vmlinux 0xea50e2b2 class_compat_create_link +EXPORT_SYMBOL_GPL vmlinux 0xea5768ac __put_mtd_device +EXPORT_SYMBOL_GPL vmlinux 0xea6d12e8 irq_domain_associate +EXPORT_SYMBOL_GPL vmlinux 0xea6d16d2 blk_rq_unprep_clone +EXPORT_SYMBOL_GPL vmlinux 0xea81ef14 alloc_dax_region +EXPORT_SYMBOL_GPL vmlinux 0xea8a47b4 dm_device_name +EXPORT_SYMBOL_GPL vmlinux 0xea8cacac snd_soc_dai_set_channel_map +EXPORT_SYMBOL_GPL vmlinux 0xea8e2384 __inet_lookup_established +EXPORT_SYMBOL_GPL vmlinux 0xeab867e5 tty_buffer_request_room +EXPORT_SYMBOL_GPL vmlinux 0xeaba4bbe spi_split_transfers_maxsize +EXPORT_SYMBOL_GPL vmlinux 0xeac2e7bd ata_pci_sff_activate_host +EXPORT_SYMBOL_GPL vmlinux 0xeac77834 i2c_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xead22101 gpiod_direction_output 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 0xead60a45 debugfs_file_get -EXPORT_SYMBOL_GPL vmlinux 0xeadfda3f of_platform_device_destroy +EXPORT_SYMBOL_GPL vmlinux 0xead7a08f wm8350_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xeade1746 genphy_c45_pma_setup_forced EXPORT_SYMBOL_GPL vmlinux 0xeae0f496 clean_acked_data_flush -EXPORT_SYMBOL_GPL vmlinux 0xeaf9b60a l3mdev_ifindex_lookup_by_table_id +EXPORT_SYMBOL_GPL vmlinux 0xeae82b7d bpfilter_umh_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xeaf05ff7 snd_soc_put_volsw_sx +EXPORT_SYMBOL_GPL vmlinux 0xeaf06073 sdhci_reset +EXPORT_SYMBOL_GPL vmlinux 0xeaf11b05 pm_runtime_barrier +EXPORT_SYMBOL_GPL vmlinux 0xeaf16bdc ahci_platform_enable_phys +EXPORT_SYMBOL_GPL vmlinux 0xeaf190a6 bsg_register_queue +EXPORT_SYMBOL_GPL vmlinux 0xeaf38df4 tcp_reno_undo_cwnd EXPORT_SYMBOL_GPL vmlinux 0xeb08e33b ipi_send_mask -EXPORT_SYMBOL_GPL vmlinux 0xeb10cdf5 crypto_unregister_scomps -EXPORT_SYMBOL_GPL vmlinux 0xeb1c1038 synth_event_trace_array +EXPORT_SYMBOL_GPL vmlinux 0xeb212a84 pci_find_next_ht_capability EXPORT_SYMBOL_GPL vmlinux 0xeb2f825c init_rs_gfp -EXPORT_SYMBOL_GPL vmlinux 0xeb367c33 pm_generic_suspend_noirq -EXPORT_SYMBOL_GPL vmlinux 0xeb3e6357 xfrm_audit_state_notfound_simple -EXPORT_SYMBOL_GPL vmlinux 0xeb43c886 fixed_phy_unregister -EXPORT_SYMBOL_GPL vmlinux 0xeb45f213 irq_gc_mask_clr_bit -EXPORT_SYMBOL_GPL vmlinux 0xeb46170b devres_open_group -EXPORT_SYMBOL_GPL vmlinux 0xeb5e7d82 crypto_drop_spawn +EXPORT_SYMBOL_GPL vmlinux 0xeb3574e3 bpf_trace_run4 +EXPORT_SYMBOL_GPL vmlinux 0xeb4f8bdf acomp_request_free +EXPORT_SYMBOL_GPL vmlinux 0xeb562148 add_page_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0xeb58e977 blkdev_report_zones +EXPORT_SYMBOL_GPL vmlinux 0xeb5c8d47 skb_to_sgvec_nomark +EXPORT_SYMBOL_GPL vmlinux 0xeb637bec edac_pci_free_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0xeb656610 usb_deregister EXPORT_SYMBOL_GPL vmlinux 0xeb711ae7 snd_soc_params_to_bclk -EXPORT_SYMBOL_GPL vmlinux 0xeb775aa4 efivars_register -EXPORT_SYMBOL_GPL vmlinux 0xeb7837a9 meson8_aobus_parse_dt_extra +EXPORT_SYMBOL_GPL vmlinux 0xeb7f58b5 tcp_leave_memory_pressure EXPORT_SYMBOL_GPL vmlinux 0xeb8d8c39 kmsg_dump_get_buffer -EXPORT_SYMBOL_GPL vmlinux 0xeb8de19a sata_async_notification -EXPORT_SYMBOL_GPL vmlinux 0xeb966485 invalidate_inode_pages2_range +EXPORT_SYMBOL_GPL vmlinux 0xeb91f3e0 iommu_uapi_cache_invalidate EXPORT_SYMBOL_GPL vmlinux 0xeb9abbee ata_sff_queue_work -EXPORT_SYMBOL_GPL vmlinux 0xeba1dd5e register_user_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0xebae33e8 iomap_finish_ioends -EXPORT_SYMBOL_GPL vmlinux 0xebb7df12 dev_pm_qos_flags -EXPORT_SYMBOL_GPL vmlinux 0xebb90df2 blkcg_deactivate_policy +EXPORT_SYMBOL_GPL vmlinux 0xeb9e5f98 regulator_irq_helper +EXPORT_SYMBOL_GPL vmlinux 0xeba2be22 regulator_set_mode +EXPORT_SYMBOL_GPL vmlinux 0xeba6530b wbt_disable_default +EXPORT_SYMBOL_GPL vmlinux 0xebbc06cf __tracepoint_pelt_thermal_tp EXPORT_SYMBOL_GPL vmlinux 0xebbe1622 io_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xebbf9038 rtc_class_close -EXPORT_SYMBOL_GPL vmlinux 0xebc89e78 snd_devm_card_new +EXPORT_SYMBOL_GPL vmlinux 0xebc5bd68 rio_request_inb_pwrite EXPORT_SYMBOL_GPL vmlinux 0xebc9a09f lock_system_sleep -EXPORT_SYMBOL_GPL vmlinux 0xebd0ad4d sdhci_resume_host +EXPORT_SYMBOL_GPL vmlinux 0xebcc682a serdev_device_open +EXPORT_SYMBOL_GPL vmlinux 0xebcf2f33 regmap_get_max_register EXPORT_SYMBOL_GPL vmlinux 0xebd4cc11 mctrl_gpio_enable_ms -EXPORT_SYMBOL_GPL vmlinux 0xebe03e33 usb_add_phy +EXPORT_SYMBOL_GPL vmlinux 0xebd69fd5 sdhci_end_tuning EXPORT_SYMBOL_GPL vmlinux 0xebeb24a2 alarm_cancel -EXPORT_SYMBOL_GPL vmlinux 0xebf40221 pci_sriov_get_totalvfs -EXPORT_SYMBOL_GPL vmlinux 0xebf695cd pci_try_reset_function -EXPORT_SYMBOL_GPL vmlinux 0xec01893b devlink_port_health_reporter_create +EXPORT_SYMBOL_GPL vmlinux 0xebef79bf crypto_stats_skcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0xec0f5095 of_pwm_get EXPORT_SYMBOL_GPL vmlinux 0xec0f8740 edac_mod_work -EXPORT_SYMBOL_GPL vmlinux 0xec214622 of_dma_controller_register -EXPORT_SYMBOL_GPL vmlinux 0xec23da15 sdhci_request -EXPORT_SYMBOL_GPL vmlinux 0xec23f7c4 desc_to_gpio -EXPORT_SYMBOL_GPL vmlinux 0xec293d4e fwnode_count_parents -EXPORT_SYMBOL_GPL vmlinux 0xec2c869a ata_sas_tport_delete -EXPORT_SYMBOL_GPL vmlinux 0xec399926 devm_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0xec3dd3ee crypto_stats_compress -EXPORT_SYMBOL_GPL vmlinux 0xec4fc046 tty_buffer_lock_exclusive -EXPORT_SYMBOL_GPL vmlinux 0xec4fff15 get_current_tty +EXPORT_SYMBOL_GPL vmlinux 0xec28333e usb_hub_clear_tt_buffer +EXPORT_SYMBOL_GPL vmlinux 0xec2c4c18 dev_pm_opp_set_clkname +EXPORT_SYMBOL_GPL vmlinux 0xec2d1867 sdio_get_host_pm_caps +EXPORT_SYMBOL_GPL vmlinux 0xec2e5fa3 scsi_check_sense +EXPORT_SYMBOL_GPL vmlinux 0xec3dcc9f blk_mq_freeze_queue +EXPORT_SYMBOL_GPL vmlinux 0xec502978 sdhci_remove_host EXPORT_SYMBOL_GPL vmlinux 0xec523f88 hrtimer_start_range_ns -EXPORT_SYMBOL_GPL vmlinux 0xec73d47f tps65912_device_exit +EXPORT_SYMBOL_GPL vmlinux 0xec5ef529 kthread_flush_worker +EXPORT_SYMBOL_GPL vmlinux 0xec6b3b2a icc_provider_del +EXPORT_SYMBOL_GPL vmlinux 0xec769772 irq_domain_update_bus_token EXPORT_SYMBOL_GPL vmlinux 0xec774acb cpufreq_frequency_table_verify -EXPORT_SYMBOL_GPL vmlinux 0xec7e87c4 devlink_port_type_ib_set -EXPORT_SYMBOL_GPL vmlinux 0xec89c198 wait_on_page_writeback_killable -EXPORT_SYMBOL_GPL vmlinux 0xecb9b108 i2c_add_numbered_adapter -EXPORT_SYMBOL_GPL vmlinux 0xecd6f382 ata_pci_bmdma_init_one -EXPORT_SYMBOL_GPL vmlinux 0xecd92f9c dev_pm_opp_remove -EXPORT_SYMBOL_GPL vmlinux 0xecf47df1 pci_set_pcie_reset_state -EXPORT_SYMBOL_GPL vmlinux 0xecf9c719 em_dev_unregister_perf_domain -EXPORT_SYMBOL_GPL vmlinux 0xecfcdcd4 dax_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0xecff5b22 blk_mq_update_nr_hw_queues -EXPORT_SYMBOL_GPL vmlinux 0xed07e74c netdev_set_default_ethtool_ops -EXPORT_SYMBOL_GPL vmlinux 0xed180b9d irq_domain_remove -EXPORT_SYMBOL_GPL vmlinux 0xed1ced12 hisi_clk_init -EXPORT_SYMBOL_GPL vmlinux 0xed230b9a scsi_register_device_handler +EXPORT_SYMBOL_GPL vmlinux 0xec7d35e8 ahci_platform_init_host +EXPORT_SYMBOL_GPL vmlinux 0xec965520 security_path_chown +EXPORT_SYMBOL_GPL vmlinux 0xec9e6a9b elv_rqhash_add +EXPORT_SYMBOL_GPL vmlinux 0xec9ebc7a __traceiter_neigh_update_done +EXPORT_SYMBOL_GPL vmlinux 0xeca335ad __clk_hw_register_divider +EXPORT_SYMBOL_GPL vmlinux 0xecabce35 usb_disable_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0xecc3974d fat_flush_inodes +EXPORT_SYMBOL_GPL vmlinux 0xecd09302 usb_remove_hcd +EXPORT_SYMBOL_GPL vmlinux 0xecd26bac nd_cmd_in_size +EXPORT_SYMBOL_GPL vmlinux 0xecdd4f22 sdhci_set_power_and_bus_voltage +EXPORT_SYMBOL_GPL vmlinux 0xece066b0 sfp_add_phy +EXPORT_SYMBOL_GPL vmlinux 0xed05ab59 regulator_get_hardware_vsel_register +EXPORT_SYMBOL_GPL vmlinux 0xed10a338 devlink_params_unpublish +EXPORT_SYMBOL_GPL vmlinux 0xed165544 dev_get_tstats64 +EXPORT_SYMBOL_GPL vmlinux 0xed342fbc devlink_trap_groups_register EXPORT_SYMBOL_GPL vmlinux 0xed344146 mcpm_is_available -EXPORT_SYMBOL_GPL vmlinux 0xed50da38 fwnode_remove_software_node -EXPORT_SYMBOL_GPL vmlinux 0xed62a654 inet6_csk_addr2sockaddr -EXPORT_SYMBOL_GPL vmlinux 0xed675b21 devm_thermal_zone_of_sensor_register -EXPORT_SYMBOL_GPL vmlinux 0xed7d7a9c i2c_match_id -EXPORT_SYMBOL_GPL vmlinux 0xed8c738b ata_sff_drain_fifo -EXPORT_SYMBOL_GPL vmlinux 0xed92bc6c proc_create_net_single_write -EXPORT_SYMBOL_GPL vmlinux 0xed982d76 dev_pm_opp_find_freq_floor -EXPORT_SYMBOL_GPL vmlinux 0xedaa4f15 fsnotify -EXPORT_SYMBOL_GPL vmlinux 0xedbdb4d7 nand_write_data_op -EXPORT_SYMBOL_GPL vmlinux 0xedcfd708 devlink_dpipe_headers_unregister -EXPORT_SYMBOL_GPL vmlinux 0xee0fb514 snd_soc_component_read_field -EXPORT_SYMBOL_GPL vmlinux 0xee28f4a3 pwm_apply_state -EXPORT_SYMBOL_GPL vmlinux 0xee342d3e component_unbind_all -EXPORT_SYMBOL_GPL vmlinux 0xee348391 meson8_pmx_ops -EXPORT_SYMBOL_GPL vmlinux 0xee35f50c ata_scsi_slave_destroy +EXPORT_SYMBOL_GPL vmlinux 0xed3d9ae9 usb_hcd_pci_probe +EXPORT_SYMBOL_GPL vmlinux 0xed839a83 snd_soc_jack_get_type +EXPORT_SYMBOL_GPL vmlinux 0xed8b364f pwm_capture +EXPORT_SYMBOL_GPL vmlinux 0xedaaf01c dev_pm_opp_find_freq_floor +EXPORT_SYMBOL_GPL vmlinux 0xedc13891 dev_pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0xedc420c1 tpm_tis_remove +EXPORT_SYMBOL_GPL vmlinux 0xedd21559 snd_soc_set_ac97_ops +EXPORT_SYMBOL_GPL vmlinux 0xedd31138 rcuwait_wake_up +EXPORT_SYMBOL_GPL vmlinux 0xedd6892f gpiod_get_array_value +EXPORT_SYMBOL_GPL vmlinux 0xedec1f7e ata_sff_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0xedf4a39c clk_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0xedfb1e03 crypto_unregister_rngs +EXPORT_SYMBOL_GPL vmlinux 0xee09593f of_get_regulator_init_data +EXPORT_SYMBOL_GPL vmlinux 0xee0affc7 sched_show_task +EXPORT_SYMBOL_GPL vmlinux 0xee263671 __synth_event_gen_cmd_start EXPORT_SYMBOL_GPL vmlinux 0xee38ef57 register_switchdev_blocking_notifier EXPORT_SYMBOL_GPL vmlinux 0xee3f03a5 pci_ioremap_io -EXPORT_SYMBOL_GPL vmlinux 0xee4b0fa2 seg6_do_srh_inline -EXPORT_SYMBOL_GPL vmlinux 0xee52c88d snd_soc_component_test_bits -EXPORT_SYMBOL_GPL vmlinux 0xee679420 ethnl_cable_test_amplitude +EXPORT_SYMBOL_GPL vmlinux 0xee4071be crypto_ahash_setkey +EXPORT_SYMBOL_GPL vmlinux 0xee409dda platform_get_resource +EXPORT_SYMBOL_GPL vmlinux 0xee55ce75 i2c_adapter_type +EXPORT_SYMBOL_GPL vmlinux 0xee59684b irq_gc_ack_set_bit +EXPORT_SYMBOL_GPL vmlinux 0xee5d8426 rio_mport_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0xee604a47 vfs_getxattr +EXPORT_SYMBOL_GPL vmlinux 0xee6941a2 vfs_getxattr_alloc EXPORT_SYMBOL_GPL vmlinux 0xee6b71c4 syscon_regmap_lookup_by_compatible -EXPORT_SYMBOL_GPL vmlinux 0xee705853 skb_splice_bits -EXPORT_SYMBOL_GPL vmlinux 0xee7ac706 sysfs_remove_link_from_group -EXPORT_SYMBOL_GPL vmlinux 0xee8be960 __fat_fs_error -EXPORT_SYMBOL_GPL vmlinux 0xee9cb4c8 snd_soc_of_parse_audio_routing -EXPORT_SYMBOL_GPL vmlinux 0xeea1ddd5 pm_runtime_set_autosuspend_delay -EXPORT_SYMBOL_GPL vmlinux 0xeeab2412 anon_inode_getfile -EXPORT_SYMBOL_GPL vmlinux 0xeeb1e6c3 pm_genpd_add_device -EXPORT_SYMBOL_GPL vmlinux 0xeec54e0a snd_soc_get_strobe -EXPORT_SYMBOL_GPL vmlinux 0xeec8c451 sdio_set_block_size -EXPORT_SYMBOL_GPL vmlinux 0xeecd6eb8 l3mdev_master_ifindex_rcu -EXPORT_SYMBOL_GPL vmlinux 0xeed0a5fe fib_rules_lookup -EXPORT_SYMBOL_GPL vmlinux 0xeed0affd lwtunnel_input -EXPORT_SYMBOL_GPL vmlinux 0xeeda9f87 led_put +EXPORT_SYMBOL_GPL vmlinux 0xee6e7adb pm_wakeup_dev_event +EXPORT_SYMBOL_GPL vmlinux 0xee94b197 platform_device_add_data +EXPORT_SYMBOL_GPL vmlinux 0xee983f4b scsi_build_sense +EXPORT_SYMBOL_GPL vmlinux 0xeeadc175 of_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xeeb2c49b __rio_local_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0xeeba8565 crypto_alloc_ahash +EXPORT_SYMBOL_GPL vmlinux 0xeebd5e52 add_disk_randomness EXPORT_SYMBOL_GPL vmlinux 0xeedd987e phy_10gbit_features_array EXPORT_SYMBOL_GPL vmlinux 0xeedfcec3 task_work_run EXPORT_SYMBOL_GPL vmlinux 0xeee5fe32 bpf_master_redirect_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xeef1f8db relay_flush -EXPORT_SYMBOL_GPL vmlinux 0xeefb22f2 ahash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xeeef35c1 l3mdev_master_upper_ifindex_by_index_rcu EXPORT_SYMBOL_GPL vmlinux 0xef010a76 rhashtable_free_and_destroy +EXPORT_SYMBOL_GPL vmlinux 0xef0f5800 rio_mport_initialize +EXPORT_SYMBOL_GPL vmlinux 0xef11a3da devm_ioremap_uc +EXPORT_SYMBOL_GPL vmlinux 0xef26bb70 sched_trace_rq_nr_running EXPORT_SYMBOL_GPL vmlinux 0xef29fcdd clk_bulk_put -EXPORT_SYMBOL_GPL vmlinux 0xef312377 snd_soc_link_compr_startup -EXPORT_SYMBOL_GPL vmlinux 0xef40c672 ata_sff_exec_command +EXPORT_SYMBOL_GPL vmlinux 0xef32ea59 br_ip6_fragment EXPORT_SYMBOL_GPL vmlinux 0xef464c28 getboottime64 -EXPORT_SYMBOL_GPL vmlinux 0xef5562f2 is_swiotlb_active +EXPORT_SYMBOL_GPL vmlinux 0xef4e72dc mptcp_pm_get_subflows_max +EXPORT_SYMBOL_GPL vmlinux 0xef5b0978 sdhci_pltfm_clk_get_max_clock EXPORT_SYMBOL_GPL vmlinux 0xef5db66d regulator_get_init_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xef662392 snd_soc_jack_notifier_unregister EXPORT_SYMBOL_GPL vmlinux 0xef6c3f70 round_jiffies_up_relative -EXPORT_SYMBOL_GPL vmlinux 0xef6d1959 spi_get_next_queued_message EXPORT_SYMBOL_GPL vmlinux 0xef70eb7e ring_buffer_iter_advance EXPORT_SYMBOL_GPL vmlinux 0xef7ba8fa mutex_lock_io EXPORT_SYMBOL_GPL vmlinux 0xef83eed1 usb_unlink_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0xef992aa8 clk_hw_get_num_parents +EXPORT_SYMBOL_GPL vmlinux 0xef8e08e9 regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xef9532bd spi_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0xef9e34b5 ip6_datagram_connect EXPORT_SYMBOL_GPL vmlinux 0xefa2c27d register_tracepoint_module_notifier -EXPORT_SYMBOL_GPL vmlinux 0xefa31048 md_find_rdev_nr_rcu -EXPORT_SYMBOL_GPL vmlinux 0xefa4b265 dmaengine_desc_attach_metadata +EXPORT_SYMBOL_GPL vmlinux 0xefa77369 irq_chip_disable_parent EXPORT_SYMBOL_GPL vmlinux 0xefaace6e mv_mbus_dram_info -EXPORT_SYMBOL_GPL vmlinux 0xefb6fa16 regulator_is_equal -EXPORT_SYMBOL_GPL vmlinux 0xefc59019 soc_device_match -EXPORT_SYMBOL_GPL vmlinux 0xefcff8c6 devm_ioremap_uc -EXPORT_SYMBOL_GPL vmlinux 0xefda0155 dev_pm_opp_find_freq_ceil_by_volt -EXPORT_SYMBOL_GPL vmlinux 0xefe109f3 of_i2c_get_board_info +EXPORT_SYMBOL_GPL vmlinux 0xefb4267d scsi_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xefbb39d2 devm_nvmem_device_put +EXPORT_SYMBOL_GPL vmlinux 0xefd6a102 lp8788_update_bits +EXPORT_SYMBOL_GPL vmlinux 0xefd908cb int_active_memcg +EXPORT_SYMBOL_GPL vmlinux 0xefdd0099 pci_sriov_set_totalvfs EXPORT_SYMBOL_GPL vmlinux 0xefeafcf1 edac_has_mcs -EXPORT_SYMBOL_GPL vmlinux 0xf002f007 nvdimm_to_bus -EXPORT_SYMBOL_GPL vmlinux 0xf021bc86 irq_setup_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0xf02f1158 usb_asmedia_modifyflowcontrol -EXPORT_SYMBOL_GPL vmlinux 0xf03922ef dst_cache_get_ip4 -EXPORT_SYMBOL_GPL vmlinux 0xf03af912 bpf_trace_run10 -EXPORT_SYMBOL_GPL vmlinux 0xf03b80c7 power_supply_changed -EXPORT_SYMBOL_GPL vmlinux 0xf05a1b3d dev_pm_qos_add_ancestor_request +EXPORT_SYMBOL_GPL vmlinux 0xeffc98ca mtk_pinconf_drive_get +EXPORT_SYMBOL_GPL vmlinux 0xeffce9f4 pci_epc_put +EXPORT_SYMBOL_GPL vmlinux 0xf0095900 devm_of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf0164fe6 fwnode_property_present +EXPORT_SYMBOL_GPL vmlinux 0xf029d3f3 ata_dev_pair +EXPORT_SYMBOL_GPL vmlinux 0xf03dcbdb pci_remove_root_bus +EXPORT_SYMBOL_GPL vmlinux 0xf048a253 of_device_uevent_modalias +EXPORT_SYMBOL_GPL vmlinux 0xf049564b regcache_sync_region EXPORT_SYMBOL_GPL vmlinux 0xf05a52fe asn1_encode_oid EXPORT_SYMBOL_GPL vmlinux 0xf05fbf09 pci_pio_to_address -EXPORT_SYMBOL_GPL vmlinux 0xf06500bc devm_qcom_smem_state_get -EXPORT_SYMBOL_GPL vmlinux 0xf088a217 dev_pm_opp_put_supported_hw +EXPORT_SYMBOL_GPL vmlinux 0xf0634a52 devm_snd_soc_register_component +EXPORT_SYMBOL_GPL vmlinux 0xf0635d32 devm_extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0xf06425db dm_get_md +EXPORT_SYMBOL_GPL vmlinux 0xf08748b0 snd_soc_close_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0xf08eb95c dm_report_zones EXPORT_SYMBOL_GPL vmlinux 0xf0910075 sfp_bus_del_upstream -EXPORT_SYMBOL_GPL vmlinux 0xf09bf0a6 disk_update_readahead -EXPORT_SYMBOL_GPL vmlinux 0xf0aa9b61 efivar_entry_size -EXPORT_SYMBOL_GPL vmlinux 0xf0b4ce20 icc_put -EXPORT_SYMBOL_GPL vmlinux 0xf0bf0d44 hwmon_device_register_with_info -EXPORT_SYMBOL_GPL vmlinux 0xf0bf8309 spi_take_timestamp_pre -EXPORT_SYMBOL_GPL vmlinux 0xf0c2c93e ata_pci_sff_init_host -EXPORT_SYMBOL_GPL vmlinux 0xf0c42d45 wakeup_sources_walk_start -EXPORT_SYMBOL_GPL vmlinux 0xf0cabcb9 of_cpufreq_cooling_register -EXPORT_SYMBOL_GPL vmlinux 0xf0ea0f8d snd_soc_close_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0xf0965d04 ethnl_cable_test_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf09eb103 to_nvdimm_bus_dev +EXPORT_SYMBOL_GPL vmlinux 0xf0a2f226 usb_gadget_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xf0a9f991 relay_flush +EXPORT_SYMBOL_GPL vmlinux 0xf0b468b2 max8997_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0xf0c5e788 gov_attr_set_put +EXPORT_SYMBOL_GPL vmlinux 0xf0c67ddc crypto_stats_kpp_compute_shared_secret +EXPORT_SYMBOL_GPL vmlinux 0xf0dda445 pci_status_get_and_clear_errors EXPORT_SYMBOL_GPL vmlinux 0xf0f95e51 musb_readl -EXPORT_SYMBOL_GPL vmlinux 0xf10a4e27 is_nvdimm_sync -EXPORT_SYMBOL_GPL vmlinux 0xf112e385 to_nd_desc -EXPORT_SYMBOL_GPL vmlinux 0xf1283f3f snd_soc_dapm_get_enum_double -EXPORT_SYMBOL_GPL vmlinux 0xf12f4c20 i2c_parse_fw_timings -EXPORT_SYMBOL_GPL vmlinux 0xf138556d nvmem_cell_read_u8 -EXPORT_SYMBOL_GPL vmlinux 0xf1400742 nvdimm_kobj -EXPORT_SYMBOL_GPL vmlinux 0xf146a7dc __register_mtd_parser -EXPORT_SYMBOL_GPL vmlinux 0xf151a993 to_nd_blk_region -EXPORT_SYMBOL_GPL vmlinux 0xf1599a01 phy_led_trigger_change_speed -EXPORT_SYMBOL_GPL vmlinux 0xf15c924c bpf_offload_dev_create -EXPORT_SYMBOL_GPL vmlinux 0xf161a536 kgdb_unregister_io_module -EXPORT_SYMBOL_GPL vmlinux 0xf1767a0d devlink_param_value_changed -EXPORT_SYMBOL_GPL vmlinux 0xf17de23c usb_alloc_urb +EXPORT_SYMBOL_GPL vmlinux 0xf108730a snd_soc_component_nc_pin_unlocked +EXPORT_SYMBOL_GPL vmlinux 0xf10a8b5a nf_checksum +EXPORT_SYMBOL_GPL vmlinux 0xf10cb2bc trace_array_printk +EXPORT_SYMBOL_GPL vmlinux 0xf10dd99d regulator_set_pull_down_regmap +EXPORT_SYMBOL_GPL vmlinux 0xf115d63e virtqueue_get_desc_addr +EXPORT_SYMBOL_GPL vmlinux 0xf11c5325 __pm_relax +EXPORT_SYMBOL_GPL vmlinux 0xf11e1aee fuse_do_open +EXPORT_SYMBOL_GPL vmlinux 0xf1259673 ata_sff_dev_select +EXPORT_SYMBOL_GPL vmlinux 0xf129264e crypto_stats_akcipher_sign +EXPORT_SYMBOL_GPL vmlinux 0xf148f23c clk_gate_restore_context +EXPORT_SYMBOL_GPL vmlinux 0xf149d37a phy_speed_up +EXPORT_SYMBOL_GPL vmlinux 0xf14dae67 devm_of_platform_depopulate +EXPORT_SYMBOL_GPL vmlinux 0xf159d502 tcp_unregister_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0xf16d56c7 dst_blackhole_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xf16f50b5 kgdb_unregister_io_module +EXPORT_SYMBOL_GPL vmlinux 0xf1704264 vring_transport_features +EXPORT_SYMBOL_GPL vmlinux 0xf17e4721 bpf_prog_destroy EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off -EXPORT_SYMBOL_GPL vmlinux 0xf186e1f8 ata_bmdma_error_handler -EXPORT_SYMBOL_GPL vmlinux 0xf1b3dfa7 platform_device_add -EXPORT_SYMBOL_GPL vmlinux 0xf1b50e15 kernfs_find_and_get_ns -EXPORT_SYMBOL_GPL vmlinux 0xf1c445a2 efivar_entry_get +EXPORT_SYMBOL_GPL vmlinux 0xf1c17d93 usb_root_hub_lost_power +EXPORT_SYMBOL_GPL vmlinux 0xf1c48006 mtd_device_parse_register EXPORT_SYMBOL_GPL vmlinux 0xf1ce154c __tracepoint_cpu_idle -EXPORT_SYMBOL_GPL vmlinux 0xf1cecab3 clk_bulk_get_optional -EXPORT_SYMBOL_GPL vmlinux 0xf1ced962 nvdimm_security_setup_events -EXPORT_SYMBOL_GPL vmlinux 0xf1ec3b19 tty_get_icount -EXPORT_SYMBOL_GPL vmlinux 0xf1ee871b devlink_trap_groups_register -EXPORT_SYMBOL_GPL vmlinux 0xf1efb467 syscon_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0xf1e1d095 usb_phy_roothub_suspend +EXPORT_SYMBOL_GPL vmlinux 0xf1e7d25b cpts_register +EXPORT_SYMBOL_GPL vmlinux 0xf1ec251c ata_host_init EXPORT_SYMBOL_GPL vmlinux 0xf1fae6a3 asic3_read_register -EXPORT_SYMBOL_GPL vmlinux 0xf20112ca page_endio -EXPORT_SYMBOL_GPL vmlinux 0xf2033c54 bpf_trace_run4 +EXPORT_SYMBOL_GPL vmlinux 0xf1fb458b bus_rescan_devices +EXPORT_SYMBOL_GPL vmlinux 0xf1fd985d handle_fasteoi_irq +EXPORT_SYMBOL_GPL vmlinux 0xf1fe5909 mtd_ooblayout_count_freebytes +EXPORT_SYMBOL_GPL vmlinux 0xf2179c8c put_pid +EXPORT_SYMBOL_GPL vmlinux 0xf21b8500 rtc_read_alarm EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0xf21fffc9 crypto_stats_akcipher_verify -EXPORT_SYMBOL_GPL vmlinux 0xf229e251 dev_pm_opp_get_max_transition_latency -EXPORT_SYMBOL_GPL vmlinux 0xf2307fc4 device_remove_software_node -EXPORT_SYMBOL_GPL vmlinux 0xf23904df devlink_reload_enable -EXPORT_SYMBOL_GPL vmlinux 0xf23c4d82 platform_device_del -EXPORT_SYMBOL_GPL vmlinux 0xf26a1048 mtk_pinconf_drive_set -EXPORT_SYMBOL_GPL vmlinux 0xf26be889 efivar_entry_iter -EXPORT_SYMBOL_GPL vmlinux 0xf28534d1 wm8350_device_init -EXPORT_SYMBOL_GPL vmlinux 0xf294ecf9 icc_sync_state +EXPORT_SYMBOL_GPL vmlinux 0xf22aaee8 fscrypt_set_test_dummy_encryption +EXPORT_SYMBOL_GPL vmlinux 0xf22b4f1e page_mkclean +EXPORT_SYMBOL_GPL vmlinux 0xf23be750 devfreq_event_set_event +EXPORT_SYMBOL_GPL vmlinux 0xf24a6599 regulator_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xf25b2b13 pinctrl_utils_add_config +EXPORT_SYMBOL_GPL vmlinux 0xf25ca0dd driver_find_device +EXPORT_SYMBOL_GPL vmlinux 0xf273b536 sysfs_create_groups +EXPORT_SYMBOL_GPL vmlinux 0xf28cbb4d mptcp_pm_get_add_addr_signal_max +EXPORT_SYMBOL_GPL vmlinux 0xf29176e7 crypto_stats_kpp_generate_public_key EXPORT_SYMBOL_GPL vmlinux 0xf2967796 ring_buffer_record_on -EXPORT_SYMBOL_GPL vmlinux 0xf2985ac2 dmaengine_desc_set_metadata_len -EXPORT_SYMBOL_GPL vmlinux 0xf2b9e987 scsi_dh_activate -EXPORT_SYMBOL_GPL vmlinux 0xf2d333cc devlink_param_driverinit_value_set -EXPORT_SYMBOL_GPL vmlinux 0xf2da8066 dev_pm_opp_set_rate -EXPORT_SYMBOL_GPL vmlinux 0xf2f18a6d irq_domain_free_irqs_parent -EXPORT_SYMBOL_GPL vmlinux 0xf2f81f71 watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0xf2a4b545 set_selection_kernel +EXPORT_SYMBOL_GPL vmlinux 0xf2a996dc ethnl_cable_test_finished +EXPORT_SYMBOL_GPL vmlinux 0xf2b7e761 input_class +EXPORT_SYMBOL_GPL vmlinux 0xf2c093d3 virtqueue_enable_cb +EXPORT_SYMBOL_GPL vmlinux 0xf2d08a68 sk_psock_msg_verdict +EXPORT_SYMBOL_GPL vmlinux 0xf2d50e6a pinctrl_dev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xf2f26a89 cgroup_get_from_path EXPORT_SYMBOL_GPL vmlinux 0xf2fb61bd vprintk_default -EXPORT_SYMBOL_GPL vmlinux 0xf3048c5f rtc_update_irq -EXPORT_SYMBOL_GPL vmlinux 0xf304f532 wm831x_reg_write -EXPORT_SYMBOL_GPL vmlinux 0xf3083fec phy_restore_page +EXPORT_SYMBOL_GPL vmlinux 0xf30a37de devm_pwmchip_add EXPORT_SYMBOL_GPL vmlinux 0xf30a5502 cpufreq_enable_boost_support +EXPORT_SYMBOL_GPL vmlinux 0xf30d0f50 xdp_return_frame +EXPORT_SYMBOL_GPL vmlinux 0xf30ded43 dev_pm_qos_add_ancestor_request EXPORT_SYMBOL_GPL vmlinux 0xf30fda27 lzo1x_decompress_safe EXPORT_SYMBOL_GPL vmlinux 0xf311e156 key_being_used_for EXPORT_SYMBOL_GPL vmlinux 0xf31632e0 ezx_pcap_read +EXPORT_SYMBOL_GPL vmlinux 0xf3168cdb regulator_get_current_limit EXPORT_SYMBOL_GPL vmlinux 0xf31b3fd1 workqueue_set_max_active -EXPORT_SYMBOL_GPL vmlinux 0xf323c2fd dw_pcie_setup_rc +EXPORT_SYMBOL_GPL vmlinux 0xf326acde xfrm_audit_policy_add EXPORT_SYMBOL_GPL vmlinux 0xf331236f btree_geo32 -EXPORT_SYMBOL_GPL vmlinux 0xf33153f7 snd_soc_dpcm_can_be_params -EXPORT_SYMBOL_GPL vmlinux 0xf334b1e9 wwan_unregister_ops -EXPORT_SYMBOL_GPL vmlinux 0xf338aed4 __traceiter_tcp_bad_csum -EXPORT_SYMBOL_GPL vmlinux 0xf33b4549 dev_pm_put_subsys_data -EXPORT_SYMBOL_GPL vmlinux 0xf33c4509 power_supply_set_input_current_limit_from_supplier +EXPORT_SYMBOL_GPL vmlinux 0xf33e530a debugfs_create_x64 +EXPORT_SYMBOL_GPL vmlinux 0xf33fb683 __rio_local_write_config_16 EXPORT_SYMBOL_GPL vmlinux 0xf342fd5d freq_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0xf34473a2 __serdev_device_driver_register EXPORT_SYMBOL_GPL vmlinux 0xf34ca5bc srcu_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xf35ea9e1 __crypto_alloc_tfm -EXPORT_SYMBOL_GPL vmlinux 0xf35fc391 l3mdev_update_flow -EXPORT_SYMBOL_GPL vmlinux 0xf3662dd4 usb_reset_endpoint -EXPORT_SYMBOL_GPL vmlinux 0xf375fcfe rio_lock_device +EXPORT_SYMBOL_GPL vmlinux 0xf34e43c0 iommu_device_register +EXPORT_SYMBOL_GPL vmlinux 0xf354e6e5 dax_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0xf3678fd7 usb_match_id +EXPORT_SYMBOL_GPL vmlinux 0xf36cbecf of_clk_src_simple_get EXPORT_SYMBOL_GPL vmlinux 0xf3797506 mpi_ec_deinit EXPORT_SYMBOL_GPL vmlinux 0xf3808cb1 get_state_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0xf384891d mtk_pinconf_bias_get -EXPORT_SYMBOL_GPL vmlinux 0xf3a50048 ping_get_port +EXPORT_SYMBOL_GPL vmlinux 0xf397ad93 auxiliary_device_init +EXPORT_SYMBOL_GPL vmlinux 0xf39ba490 clean_acked_data_enable +EXPORT_SYMBOL_GPL vmlinux 0xf3a2c47f pinconf_generic_dt_subnode_to_map +EXPORT_SYMBOL_GPL vmlinux 0xf3a8a7af devlink_reload_enable +EXPORT_SYMBOL_GPL vmlinux 0xf3b12f86 regmap_can_raw_write +EXPORT_SYMBOL_GPL vmlinux 0xf3b2ba7b ip_valid_fib_dump_req EXPORT_SYMBOL_GPL vmlinux 0xf3b451ca kdb_poll_funcs -EXPORT_SYMBOL_GPL vmlinux 0xf3b99118 snd_soc_daifmt_parse_format -EXPORT_SYMBOL_GPL vmlinux 0xf3c4a456 regmap_noinc_read -EXPORT_SYMBOL_GPL vmlinux 0xf3db25ea extcon_set_property_capability -EXPORT_SYMBOL_GPL vmlinux 0xf3db690f __auxiliary_driver_register -EXPORT_SYMBOL_GPL vmlinux 0xf3dff2a5 pm_clk_remove_clk -EXPORT_SYMBOL_GPL vmlinux 0xf409c41a blk_req_needs_zone_write_lock -EXPORT_SYMBOL_GPL vmlinux 0xf420b567 gpiochip_irq_unmap +EXPORT_SYMBOL_GPL vmlinux 0xf3b582ff gpio_to_desc +EXPORT_SYMBOL_GPL vmlinux 0xf3be1eb0 usb_gadget_set_selfpowered +EXPORT_SYMBOL_GPL vmlinux 0xf3d04ea2 regmap_parse_val +EXPORT_SYMBOL_GPL vmlinux 0xf3ea3ae7 fwnode_get_next_available_child_node +EXPORT_SYMBOL_GPL vmlinux 0xf3f362db usb_register_dev +EXPORT_SYMBOL_GPL vmlinux 0xf3f5f691 of_mm_gpiochip_add_data +EXPORT_SYMBOL_GPL vmlinux 0xf3fd79ea ethnl_cable_test_pulse +EXPORT_SYMBOL_GPL vmlinux 0xf40756c9 ahci_set_em_messages +EXPORT_SYMBOL_GPL vmlinux 0xf40a775f nand_get_large_page_ooblayout +EXPORT_SYMBOL_GPL vmlinux 0xf41aa282 tpm2_probe +EXPORT_SYMBOL_GPL vmlinux 0xf425d08b serial8250_do_get_mctrl EXPORT_SYMBOL_GPL vmlinux 0xf4264a2e __tracepoint_error_report_end +EXPORT_SYMBOL_GPL vmlinux 0xf42adf7d nand_ecc_cleanup_req_tweaking EXPORT_SYMBOL_GPL vmlinux 0xf4346cca for_each_kernel_tracepoint -EXPORT_SYMBOL_GPL vmlinux 0xf440fbf2 snd_soc_jack_add_gpios -EXPORT_SYMBOL_GPL vmlinux 0xf443d4f7 usb_wakeup_enabled_descendants -EXPORT_SYMBOL_GPL vmlinux 0xf45c49cd inet_csk_clone_lock -EXPORT_SYMBOL_GPL vmlinux 0xf45df072 ata_timing_compute +EXPORT_SYMBOL_GPL vmlinux 0xf43c6b91 blkdev_nr_zones +EXPORT_SYMBOL_GPL vmlinux 0xf4446567 edac_mc_handle_error +EXPORT_SYMBOL_GPL vmlinux 0xf44604ce devm_spi_mem_dirmap_create +EXPORT_SYMBOL_GPL vmlinux 0xf463fd03 clean_acked_data_disable EXPORT_SYMBOL_GPL vmlinux 0xf4689d50 linkmode_set_pause +EXPORT_SYMBOL_GPL vmlinux 0xf47142f0 generic_fh_to_dentry EXPORT_SYMBOL_GPL vmlinux 0xf47654df irq_check_status_bit EXPORT_SYMBOL_GPL vmlinux 0xf47de486 usb_kill_anchored_urbs EXPORT_SYMBOL_GPL vmlinux 0xf48ceebd net_cls_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xf497de41 dma_buf_unpin +EXPORT_SYMBOL_GPL vmlinux 0xf48fedc8 devlink_port_health_reporter_create +EXPORT_SYMBOL_GPL vmlinux 0xf4936bd2 devm_pinctrl_register_and_init EXPORT_SYMBOL_GPL vmlinux 0xf49c680a fsverity_enqueue_verify_work -EXPORT_SYMBOL_GPL vmlinux 0xf4a7b6e4 of_fwnode_ops -EXPORT_SYMBOL_GPL vmlinux 0xf4a81b30 lwtunnel_encap_del_ops +EXPORT_SYMBOL_GPL vmlinux 0xf4a34e7c rio_release_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0xf4a64efa cpts_create +EXPORT_SYMBOL_GPL vmlinux 0xf4a88b99 tty_port_register_device_attr_serdev +EXPORT_SYMBOL_GPL vmlinux 0xf4a8c647 pci_epc_get +EXPORT_SYMBOL_GPL vmlinux 0xf4ada9ae ata_pci_device_do_resume +EXPORT_SYMBOL_GPL vmlinux 0xf4aeccdf pin_get_name EXPORT_SYMBOL_GPL vmlinux 0xf4af35c2 rcu_gp_is_normal -EXPORT_SYMBOL_GPL vmlinux 0xf4b71580 account_locked_vm -EXPORT_SYMBOL_GPL vmlinux 0xf4c2c38d phy_led_triggers_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf4cab83c dev_pm_opp_register_set_opp_helper -EXPORT_SYMBOL_GPL vmlinux 0xf4cd3433 blk_mq_free_request +EXPORT_SYMBOL_GPL vmlinux 0xf4bed68d icc_enable +EXPORT_SYMBOL_GPL vmlinux 0xf4c0f291 snd_dmaengine_pcm_trigger EXPORT_SYMBOL_GPL vmlinux 0xf4cd9f8f reset_control_bulk_release -EXPORT_SYMBOL_GPL vmlinux 0xf4d5ad42 debugfs_create_u32 -EXPORT_SYMBOL_GPL vmlinux 0xf4e573b0 irq_domain_associate -EXPORT_SYMBOL_GPL vmlinux 0xf4e61e2b rio_release_dma +EXPORT_SYMBOL_GPL vmlinux 0xf4db8d6d pci_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0xf4e2a131 regulator_list_hardware_vsel EXPORT_SYMBOL_GPL vmlinux 0xf4f69d1f clk_hw_unregister_gate -EXPORT_SYMBOL_GPL vmlinux 0xf4f7e350 serial8250_rpm_get_tx -EXPORT_SYMBOL_GPL vmlinux 0xf50045c7 dev_fwnode -EXPORT_SYMBOL_GPL vmlinux 0xf5086e45 dma_alloc_pages -EXPORT_SYMBOL_GPL vmlinux 0xf50de971 unregister_mtd_user -EXPORT_SYMBOL_GPL vmlinux 0xf50e13eb ata_pci_device_do_suspend -EXPORT_SYMBOL_GPL vmlinux 0xf5199820 pktgen_xfrm_outer_mode_output -EXPORT_SYMBOL_GPL vmlinux 0xf51e9df6 thermal_zone_device_disable -EXPORT_SYMBOL_GPL vmlinux 0xf5204715 devfreq_event_set_event -EXPORT_SYMBOL_GPL vmlinux 0xf5268a6f strp_done +EXPORT_SYMBOL_GPL vmlinux 0xf519e6c6 serdev_device_add +EXPORT_SYMBOL_GPL vmlinux 0xf5230d03 __alloc_pages_bulk EXPORT_SYMBOL_GPL vmlinux 0xf52e14e9 snmp_fold_field64 -EXPORT_SYMBOL_GPL vmlinux 0xf5330e6d nanddev_markbad +EXPORT_SYMBOL_GPL vmlinux 0xf536935a nand_change_read_column_op +EXPORT_SYMBOL_GPL vmlinux 0xf5381011 wbc_attach_and_unlock_inode +EXPORT_SYMBOL_GPL vmlinux 0xf547f7b0 pinconf_generic_dt_free_map EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm -EXPORT_SYMBOL_GPL vmlinux 0xf54ffd3b of_property_match_string EXPORT_SYMBOL_GPL vmlinux 0xf553318d cpuidle_pause_and_lock -EXPORT_SYMBOL_GPL vmlinux 0xf556fb71 badblocks_check -EXPORT_SYMBOL_GPL vmlinux 0xf56b393b snd_soc_dapm_add_routes -EXPORT_SYMBOL_GPL vmlinux 0xf56c597f __mmu_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0xf56eff44 vring_create_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0xf5818a51 debugfs_create_x8 -EXPORT_SYMBOL_GPL vmlinux 0xf58514ec dma_buf_vmap +EXPORT_SYMBOL_GPL vmlinux 0xf558fcbd devlink_port_type_clear +EXPORT_SYMBOL_GPL vmlinux 0xf56740ba snd_soc_component_write +EXPORT_SYMBOL_GPL vmlinux 0xf56a2004 xhci_run +EXPORT_SYMBOL_GPL vmlinux 0xf585d007 dev_pm_opp_get_level EXPORT_SYMBOL_GPL vmlinux 0xf58edfd7 poll_state_synchronize_srcu -EXPORT_SYMBOL_GPL vmlinux 0xf5948ee0 pinmux_generic_get_function_name -EXPORT_SYMBOL_GPL vmlinux 0xf59e2a76 devlink_traps_register +EXPORT_SYMBOL_GPL vmlinux 0xf58f594a amba_ahb_device_add_res EXPORT_SYMBOL_GPL vmlinux 0xf5a3ba99 linear_range_values_in_range EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus -EXPORT_SYMBOL_GPL vmlinux 0xf5ae11b7 regulator_count_voltages +EXPORT_SYMBOL_GPL vmlinux 0xf5aee504 peernet2id_alloc EXPORT_SYMBOL_GPL vmlinux 0xf5b7e6e7 __wake_up_sync_key -EXPORT_SYMBOL_GPL vmlinux 0xf5bea66e kick_process -EXPORT_SYMBOL_GPL vmlinux 0xf5c1bbf4 rio_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0xf5ca5b66 path_noexec -EXPORT_SYMBOL_GPL vmlinux 0xf5e1b528 __fsnotify_parent -EXPORT_SYMBOL_GPL vmlinux 0xf5e1fcf3 devfreq_cooling_em_register -EXPORT_SYMBOL_GPL vmlinux 0xf5e7e5a5 tun_get_tx_ring -EXPORT_SYMBOL_GPL vmlinux 0xf5ee5a21 usb_gadget_set_selfpowered -EXPORT_SYMBOL_GPL vmlinux 0xf5eee8d2 blockdev_superblock -EXPORT_SYMBOL_GPL vmlinux 0xf5f05663 __serdev_device_driver_register +EXPORT_SYMBOL_GPL vmlinux 0xf5c1f7dc md_bitmap_resize +EXPORT_SYMBOL_GPL vmlinux 0xf5ca945e pinctrl_pm_select_default_state +EXPORT_SYMBOL_GPL vmlinux 0xf5ec68c9 spi_statistics_add_transfer_stats EXPORT_SYMBOL_GPL vmlinux 0xf5f370e0 async_schedule_node -EXPORT_SYMBOL_GPL vmlinux 0xf5f73af8 dma_map_sgtable -EXPORT_SYMBOL_GPL vmlinux 0xf6023bec cpuidle_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf5f8ee28 perf_event_create_kernel_counter +EXPORT_SYMBOL_GPL vmlinux 0xf5fa63e3 perf_pmu_register +EXPORT_SYMBOL_GPL vmlinux 0xf5fafef2 pm_clk_remove +EXPORT_SYMBOL_GPL vmlinux 0xf5fec306 cpufreq_cooling_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf600355c cookie_tcp_reqsk_alloc EXPORT_SYMBOL_GPL vmlinux 0xf61baa65 pids_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xf61f396d __udp_gso_segment -EXPORT_SYMBOL_GPL vmlinux 0xf62fd1b6 peernet2id_alloc -EXPORT_SYMBOL_GPL vmlinux 0xf65f4c98 dm_internal_suspend_noflush +EXPORT_SYMBOL_GPL vmlinux 0xf637b920 pin_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0xf6465b24 edac_device_handle_ue_count +EXPORT_SYMBOL_GPL vmlinux 0xf65a84e8 pinctrl_utils_add_map_configs EXPORT_SYMBOL_GPL vmlinux 0xf663ee2f pcap_adc_sync -EXPORT_SYMBOL_GPL vmlinux 0xf6918b04 perf_tp_event -EXPORT_SYMBOL_GPL vmlinux 0xf6934d24 perf_event_pause -EXPORT_SYMBOL_GPL vmlinux 0xf69f7bac crypto_grab_skcipher -EXPORT_SYMBOL_GPL vmlinux 0xf6a13d81 serial8250_do_set_divisor -EXPORT_SYMBOL_GPL vmlinux 0xf6ae0fa2 scsi_host_unblock +EXPORT_SYMBOL_GPL vmlinux 0xf66c8d6c __sync_filesystem +EXPORT_SYMBOL_GPL vmlinux 0xf6760abf power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0xf67b8d2f pci_find_vsec_capability +EXPORT_SYMBOL_GPL vmlinux 0xf688060d store_sampling_rate +EXPORT_SYMBOL_GPL vmlinux 0xf68e7996 snd_soc_component_set_pll +EXPORT_SYMBOL_GPL vmlinux 0xf6a61346 bpf_map_put +EXPORT_SYMBOL_GPL vmlinux 0xf6af6fb3 bdev_disk_changed EXPORT_SYMBOL_GPL vmlinux 0xf6b043f1 rhashtable_walk_next +EXPORT_SYMBOL_GPL vmlinux 0xf6b4a416 thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0xf6b91f4b devm_mbox_controller_register EXPORT_SYMBOL_GPL vmlinux 0xf6beee37 __SCK__tp_func_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0xf6c62eee regulator_map_voltage_iterate EXPORT_SYMBOL_GPL vmlinux 0xf6c8dc62 cpu_hotplug_enable -EXPORT_SYMBOL_GPL vmlinux 0xf6c9c64f regmap_fields_read -EXPORT_SYMBOL_GPL vmlinux 0xf6cc5bd5 tcp_get_info -EXPORT_SYMBOL_GPL vmlinux 0xf6cd0483 mtk_mutex_get +EXPORT_SYMBOL_GPL vmlinux 0xf6db1e13 of_dma_router_register +EXPORT_SYMBOL_GPL vmlinux 0xf6e63cba ata_bmdma32_port_ops EXPORT_SYMBOL_GPL vmlinux 0xf6e874f5 ata_timing_merge -EXPORT_SYMBOL_GPL vmlinux 0xf6ed245e tty_buffer_set_limit -EXPORT_SYMBOL_GPL vmlinux 0xf7027d4b key_type_user -EXPORT_SYMBOL_GPL vmlinux 0xf7136e4f iommu_group_get -EXPORT_SYMBOL_GPL vmlinux 0xf7169388 fscrypt_prepare_symlink -EXPORT_SYMBOL_GPL vmlinux 0xf7294203 __clk_hw_register_divider +EXPORT_SYMBOL_GPL vmlinux 0xf6ed91ab extcon_set_state +EXPORT_SYMBOL_GPL vmlinux 0xf7078299 dev_pm_opp_set_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0xf70df190 fb_deferred_io_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xf7127123 vp_modern_get_features EXPORT_SYMBOL_GPL vmlinux 0xf72a65ea tty_get_char_size EXPORT_SYMBOL_GPL vmlinux 0xf730fb4a qcom_smem_state_update_bits -EXPORT_SYMBOL_GPL vmlinux 0xf7356a46 ncsi_register_dev -EXPORT_SYMBOL_GPL vmlinux 0xf7360a92 __trace_note_message -EXPORT_SYMBOL_GPL vmlinux 0xf73ba076 dw_pcie_own_conf_map_bus +EXPORT_SYMBOL_GPL vmlinux 0xf733d705 tpm2_get_cc_attrs_tbl EXPORT_SYMBOL_GPL vmlinux 0xf73d0b51 __tracepoint_map -EXPORT_SYMBOL_GPL vmlinux 0xf73f9028 virtqueue_add_inbuf_ctx +EXPORT_SYMBOL_GPL vmlinux 0xf7412085 badblocks_store +EXPORT_SYMBOL_GPL vmlinux 0xf7440d57 fuse_dev_install EXPORT_SYMBOL_GPL vmlinux 0xf7455c16 input_event_to_user EXPORT_SYMBOL_GPL vmlinux 0xf746e4fe irq_work_queue -EXPORT_SYMBOL_GPL vmlinux 0xf749a77c __netif_set_xps_queue EXPORT_SYMBOL_GPL vmlinux 0xf749debc md5_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0xf75403d4 uart_console_write +EXPORT_SYMBOL_GPL vmlinux 0xf764257a clk_hw_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0xf767a268 crypto_register_template EXPORT_SYMBOL_GPL vmlinux 0xf76b0a59 read_current_timer -EXPORT_SYMBOL_GPL vmlinux 0xf772719a regulator_suspend_enable -EXPORT_SYMBOL_GPL vmlinux 0xf77a4f56 usb_intf_get_dma_device -EXPORT_SYMBOL_GPL vmlinux 0xf7898f2f governor_sysfs_ops -EXPORT_SYMBOL_GPL vmlinux 0xf78ced25 inet6_sk_rebuild_header -EXPORT_SYMBOL_GPL vmlinux 0xf7abcb7f usb_put_phy -EXPORT_SYMBOL_GPL vmlinux 0xf7b072d4 dm_internal_resume_fast -EXPORT_SYMBOL_GPL vmlinux 0xf7b8f3a2 __traceiter_block_split +EXPORT_SYMBOL_GPL vmlinux 0xf777d5b6 mmu_interval_notifier_remove +EXPORT_SYMBOL_GPL vmlinux 0xf7781126 hvc_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf7818741 xhci_gen_setup +EXPORT_SYMBOL_GPL vmlinux 0xf7818aba tps65912_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0xf7855a55 tpm_chip_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf786746b snd_soc_card_jack_new +EXPORT_SYMBOL_GPL vmlinux 0xf7870730 ata_pci_bmdma_init +EXPORT_SYMBOL_GPL vmlinux 0xf787d6bd hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0xf79174fa sock_prot_inuse_add +EXPORT_SYMBOL_GPL vmlinux 0xf7927e02 spi_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xf7928e31 kthread_use_mm +EXPORT_SYMBOL_GPL vmlinux 0xf7ab14e3 tty_ldisc_ref +EXPORT_SYMBOL_GPL vmlinux 0xf7b77e7d skb_morph +EXPORT_SYMBOL_GPL vmlinux 0xf7b873ad dev_pm_opp_is_turbo EXPORT_SYMBOL_GPL vmlinux 0xf7bc95b0 devlink_fmsg_pair_nest_start -EXPORT_SYMBOL_GPL vmlinux 0xf7c22d1b netdev_rx_handler_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf7c30c51 snd_devm_alloc_pages -EXPORT_SYMBOL_GPL vmlinux 0xf7d570b8 usb_kill_urb +EXPORT_SYMBOL_GPL vmlinux 0xf7c0fdd8 sdhci_alloc_host +EXPORT_SYMBOL_GPL vmlinux 0xf7c261e9 rio_unmap_outb_region +EXPORT_SYMBOL_GPL vmlinux 0xf7cc370f spi_controller_dma_map_mem_op_data +EXPORT_SYMBOL_GPL vmlinux 0xf7d0c020 of_property_read_u32_index EXPORT_SYMBOL_GPL vmlinux 0xf7d961d8 clk_hw_unregister_composite -EXPORT_SYMBOL_GPL vmlinux 0xf7ecaa6c nand_ecc_tweak_req -EXPORT_SYMBOL_GPL vmlinux 0xf7fecab2 mmc_send_status -EXPORT_SYMBOL_GPL vmlinux 0xf80a4fa9 inet_csk_get_port +EXPORT_SYMBOL_GPL vmlinux 0xf7daac1b fwnode_get_parent +EXPORT_SYMBOL_GPL vmlinux 0xf7dfb028 pci_sriov_configure_simple EXPORT_SYMBOL_GPL vmlinux 0xf80c276f rhashtable_walk_enter -EXPORT_SYMBOL_GPL vmlinux 0xf80cda2e spi_controller_resume -EXPORT_SYMBOL_GPL vmlinux 0xf812f7dd rio_pw_enable EXPORT_SYMBOL_GPL vmlinux 0xf82f16b3 execute_in_process_context EXPORT_SYMBOL_GPL vmlinux 0xf82f3657 work_on_cpu -EXPORT_SYMBOL_GPL vmlinux 0xf8359ef4 __devm_regmap_init_i2c -EXPORT_SYMBOL_GPL vmlinux 0xf8453b49 usb_altnum_to_altsetting -EXPORT_SYMBOL_GPL vmlinux 0xf856cf69 thermal_zone_get_zone_by_name -EXPORT_SYMBOL_GPL vmlinux 0xf86e714a tpm_default_chip +EXPORT_SYMBOL_GPL vmlinux 0xf8434748 mdiobus_modify +EXPORT_SYMBOL_GPL vmlinux 0xf8469c40 skcipher_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xf85377c9 of_platform_depopulate +EXPORT_SYMBOL_GPL vmlinux 0xf85c6d71 __blkg_prfill_u64 +EXPORT_SYMBOL_GPL vmlinux 0xf85fd55f arm_iommu_attach_device +EXPORT_SYMBOL_GPL vmlinux 0xf860129c user_destroy +EXPORT_SYMBOL_GPL vmlinux 0xf864eb3c gpiochip_line_is_open_drain +EXPORT_SYMBOL_GPL vmlinux 0xf8692530 bpf_trace_run6 +EXPORT_SYMBOL_GPL vmlinux 0xf86b998b bus_register +EXPORT_SYMBOL_GPL vmlinux 0xf86d4eb7 mtd_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf86f8fa0 class_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0xf87134f2 ata_host_alloc_pinfo EXPORT_SYMBOL_GPL vmlinux 0xf8731bf6 clk_regmap_mux_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0xf8752188 rio_mport_write_config_16 -EXPORT_SYMBOL_GPL vmlinux 0xf8a18180 anon_inode_getfd_secure -EXPORT_SYMBOL_GPL vmlinux 0xf8c6fa71 __rio_local_write_config_8 -EXPORT_SYMBOL_GPL vmlinux 0xf8d18c53 pci_epc_remove_epf -EXPORT_SYMBOL_GPL vmlinux 0xf8d953fe devm_blk_ksm_init -EXPORT_SYMBOL_GPL vmlinux 0xf8df4386 nand_gpio_waitrdy -EXPORT_SYMBOL_GPL vmlinux 0xf8e3a989 nf_ipv6_ops -EXPORT_SYMBOL_GPL vmlinux 0xf8ed5ead device_for_each_child_reverse -EXPORT_SYMBOL_GPL vmlinux 0xf8f02157 irq_domain_create_hierarchy -EXPORT_SYMBOL_GPL vmlinux 0xf8f0c0c5 fwnode_property_match_string -EXPORT_SYMBOL_GPL vmlinux 0xf8f2d156 pl08x_filter_id +EXPORT_SYMBOL_GPL vmlinux 0xf8a6d8b3 wm831x_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0xf8a90133 to_nd_desc +EXPORT_SYMBOL_GPL vmlinux 0xf8c3ca7d gpiod_export_link +EXPORT_SYMBOL_GPL vmlinux 0xf8d37b48 dev_pm_opp_enable +EXPORT_SYMBOL_GPL vmlinux 0xf8d9c475 pci_add_dynid +EXPORT_SYMBOL_GPL vmlinux 0xf8db1456 wbt_enable_default +EXPORT_SYMBOL_GPL vmlinux 0xf8dcc2ff class_compat_remove_link +EXPORT_SYMBOL_GPL vmlinux 0xf8e3c3a7 regulator_enable +EXPORT_SYMBOL_GPL vmlinux 0xf8e45e97 nanddev_bbt_set_block_status EXPORT_SYMBOL_GPL vmlinux 0xf8f3a0fb ata_ratelimit -EXPORT_SYMBOL_GPL vmlinux 0xf8fb595b power_supply_external_power_changed -EXPORT_SYMBOL_GPL vmlinux 0xf91bbbd7 __traceiter_add_device_to_group -EXPORT_SYMBOL_GPL vmlinux 0xf9238365 snd_soc_unregister_card -EXPORT_SYMBOL_GPL vmlinux 0xf9310e0c dma_wait_for_async_tx -EXPORT_SYMBOL_GPL vmlinux 0xf934e0c8 snd_dmaengine_pcm_set_config_from_dai_data -EXPORT_SYMBOL_GPL vmlinux 0xf93b90c2 sdhci_remove_host +EXPORT_SYMBOL_GPL vmlinux 0xf8fe2eed vfs_removexattr +EXPORT_SYMBOL_GPL vmlinux 0xf91f9b36 devm_hwspin_lock_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf92b2ecb ahci_do_softreset EXPORT_SYMBOL_GPL vmlinux 0xf95322f4 kthread_parkme +EXPORT_SYMBOL_GPL vmlinux 0xf9599652 rio_unregister_scan EXPORT_SYMBOL_GPL vmlinux 0xf9622dd1 snd_soc_daifmt_clock_provider_from_bitmap EXPORT_SYMBOL_GPL vmlinux 0xf96da44f xa_delete_node -EXPORT_SYMBOL_GPL vmlinux 0xf98f9312 serial8250_em485_stop_tx -EXPORT_SYMBOL_GPL vmlinux 0xf997ba1d sock_diag_register +EXPORT_SYMBOL_GPL vmlinux 0xf973f3a1 ipv4_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xf982e5a7 mtk_pinconf_adv_pull_get +EXPORT_SYMBOL_GPL vmlinux 0xf984192a tcp_rate_check_app_limited +EXPORT_SYMBOL_GPL vmlinux 0xf9909718 __inode_attach_wb EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies -EXPORT_SYMBOL_GPL vmlinux 0xf9aaa5ba tpm_tis_core_init +EXPORT_SYMBOL_GPL vmlinux 0xf9a08a23 register_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0xf9a9cb36 nand_prog_page_end_op +EXPORT_SYMBOL_GPL vmlinux 0xf9c80f20 handle_untracked_irq EXPORT_SYMBOL_GPL vmlinux 0xf9d129df klist_iter_init_node -EXPORT_SYMBOL_GPL vmlinux 0xf9d32135 pci_reset_function_locked -EXPORT_SYMBOL_GPL vmlinux 0xf9d35fc2 ata_sff_hsm_move -EXPORT_SYMBOL_GPL vmlinux 0xf9dcb304 nvdimm_cmd_mask +EXPORT_SYMBOL_GPL vmlinux 0xf9dd5d94 nand_erase_op +EXPORT_SYMBOL_GPL vmlinux 0xf9e29747 pci_probe_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0xf9e38a3c hisi_reset_init EXPORT_SYMBOL_GPL vmlinux 0xf9ebe553 pci_bridge_emul_init +EXPORT_SYMBOL_GPL vmlinux 0xf9f1f1ae dm_internal_suspend_fast +EXPORT_SYMBOL_GPL vmlinux 0xfa0193eb lochnagar_update_config EXPORT_SYMBOL_GPL vmlinux 0xfa03858a sram_exec_copy -EXPORT_SYMBOL_GPL vmlinux 0xfa06e963 snd_soc_component_async_complete -EXPORT_SYMBOL_GPL vmlinux 0xfa0a637d sk_psock_init -EXPORT_SYMBOL_GPL vmlinux 0xfa0dd53a iommu_report_device_fault -EXPORT_SYMBOL_GPL vmlinux 0xfa173f7b device_find_child_by_name +EXPORT_SYMBOL_GPL vmlinux 0xfa08b780 fscrypt_prepare_new_inode +EXPORT_SYMBOL_GPL vmlinux 0xfa08d523 bpf_redirect_info +EXPORT_SYMBOL_GPL vmlinux 0xfa13b109 extcon_register_notifier EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops -EXPORT_SYMBOL_GPL vmlinux 0xfa2128e8 tcp_unregister_congestion_control -EXPORT_SYMBOL_GPL vmlinux 0xfa24a886 scmi_protocol_unregister -EXPORT_SYMBOL_GPL vmlinux 0xfa343e17 mptcp_token_get_sock -EXPORT_SYMBOL_GPL vmlinux 0xfa35aad1 rio_add_net -EXPORT_SYMBOL_GPL vmlinux 0xfa3d445a tpm_tis_resume -EXPORT_SYMBOL_GPL vmlinux 0xfa444fd9 fsverity_verify_bio -EXPORT_SYMBOL_GPL vmlinux 0xfa4ec82b snd_dmaengine_pcm_open_request_chan -EXPORT_SYMBOL_GPL vmlinux 0xfa517e69 dev_set_name -EXPORT_SYMBOL_GPL vmlinux 0xfa59ec8f pci_max_pasids -EXPORT_SYMBOL_GPL vmlinux 0xfa603a41 trace_array_put -EXPORT_SYMBOL_GPL vmlinux 0xfa642bbf pci_dev_unlock +EXPORT_SYMBOL_GPL vmlinux 0xfa2ce82f of_mpc8xxx_spi_probe +EXPORT_SYMBOL_GPL vmlinux 0xfa4077b1 __traceiter_sched_cpu_capacity_tp +EXPORT_SYMBOL_GPL vmlinux 0xfa4fb6e1 crypto_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0xfa521a28 of_property_read_string_helper +EXPORT_SYMBOL_GPL vmlinux 0xfa59d7df ip6_route_output_flags_noref EXPORT_SYMBOL_GPL vmlinux 0xfa690589 netdev_cmd_to_name -EXPORT_SYMBOL_GPL vmlinux 0xfa6b41d5 nd_cmd_in_size -EXPORT_SYMBOL_GPL vmlinux 0xfa703c9e usb_remove_phy -EXPORT_SYMBOL_GPL vmlinux 0xfa714074 led_trigger_unregister_simple +EXPORT_SYMBOL_GPL vmlinux 0xfa6b44e3 usb_gen_phy_init +EXPORT_SYMBOL_GPL vmlinux 0xfa6d70d1 tty_put_char EXPORT_SYMBOL_GPL vmlinux 0xfa74f2fe inet_getpeer -EXPORT_SYMBOL_GPL vmlinux 0xfa7dcdba devlink_port_register EXPORT_SYMBOL_GPL vmlinux 0xfa82f473 klist_next -EXPORT_SYMBOL_GPL vmlinux 0xfa83f1c1 of_pm_clk_add_clk +EXPORT_SYMBOL_GPL vmlinux 0xfa86f6bb fuse_abort_conn EXPORT_SYMBOL_GPL vmlinux 0xfa8ce4a2 of_get_videomode -EXPORT_SYMBOL_GPL vmlinux 0xfa93032d ata_sff_dev_select -EXPORT_SYMBOL_GPL vmlinux 0xfaa97b79 fscrypt_fname_siphash -EXPORT_SYMBOL_GPL vmlinux 0xfaaed8e7 devm_of_platform_depopulate +EXPORT_SYMBOL_GPL vmlinux 0xfa96b9df xfrm_local_error +EXPORT_SYMBOL_GPL vmlinux 0xfa9a5a00 max8997_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0xfa9cc045 skb_segment +EXPORT_SYMBOL_GPL vmlinux 0xfaa5addf __irq_domain_alloc_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xfaae975f blkcg_deactivate_policy EXPORT_SYMBOL_GPL vmlinux 0xfab30dc0 mdio_bus_exit EXPORT_SYMBOL_GPL vmlinux 0xfab53ed9 pinctrl_gpio_can_use_line -EXPORT_SYMBOL_GPL vmlinux 0xfab7ee2f efivars_kobject EXPORT_SYMBOL_GPL vmlinux 0xfaba248a usb_scuttle_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0xfac3bd53 ata_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0xfabbbd22 snd_soc_dai_set_sysclk +EXPORT_SYMBOL_GPL vmlinux 0xfabe2e19 extcon_register_notifier_all +EXPORT_SYMBOL_GPL vmlinux 0xfaccfe8e wm831x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xfad94e42 pci_set_host_bridge_release EXPORT_SYMBOL_GPL vmlinux 0xfad9c827 kill_dax -EXPORT_SYMBOL_GPL vmlinux 0xfade4e0c __udp4_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0xfadf6085 cpufreq_policy_transition_delay_us -EXPORT_SYMBOL_GPL vmlinux 0xfadfe141 snd_pcm_lib_default_mmap -EXPORT_SYMBOL_GPL vmlinux 0xfae2bfa7 phy_pm_runtime_put -EXPORT_SYMBOL_GPL vmlinux 0xfae9a589 fsnotify_find_mark +EXPORT_SYMBOL_GPL vmlinux 0xfada76bc __devm_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0xfaf39766 pinctrl_enable EXPORT_SYMBOL_GPL vmlinux 0xfaf598c6 snd_ctl_request_layer -EXPORT_SYMBOL_GPL vmlinux 0xfaf8cf74 devlink_params_unpublish -EXPORT_SYMBOL_GPL vmlinux 0xfb034aa3 blkg_conf_finish +EXPORT_SYMBOL_GPL vmlinux 0xfafc4014 sdio_claim_irq +EXPORT_SYMBOL_GPL vmlinux 0xfb0e62ce perf_event_disable +EXPORT_SYMBOL_GPL vmlinux 0xfb0ec051 __traceiter_br_fdb_external_learn_add +EXPORT_SYMBOL_GPL vmlinux 0xfb2459e9 fib_rules_unregister EXPORT_SYMBOL_GPL vmlinux 0xfb24d4ab blocking_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xfb2a96f7 efivars_kobject +EXPORT_SYMBOL_GPL vmlinux 0xfb2b9af2 __traceiter_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0xfb2ea8a0 sk_msg_recvmsg EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync -EXPORT_SYMBOL_GPL vmlinux 0xfb35f637 unregister_wide_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0xfb3f8e4a pinctrl_find_gpio_range_from_pin_nolock -EXPORT_SYMBOL_GPL vmlinux 0xfb467360 snd_soc_jack_free_gpios EXPORT_SYMBOL_GPL vmlinux 0xfb51f520 gen_pool_size -EXPORT_SYMBOL_GPL vmlinux 0xfb562d63 show_class_attr_string EXPORT_SYMBOL_GPL vmlinux 0xfb615859 __tracepoint_block_unplug -EXPORT_SYMBOL_GPL vmlinux 0xfb69dcef devm_gpiod_get_from_of_node +EXPORT_SYMBOL_GPL vmlinux 0xfb6e6ede attribute_container_unregister EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name +EXPORT_SYMBOL_GPL vmlinux 0xfb71bae8 nexthop_find_by_id EXPORT_SYMBOL_GPL vmlinux 0xfb73451f alarm_try_to_cancel -EXPORT_SYMBOL_GPL vmlinux 0xfb78372d del_mtd_blktrans_dev +EXPORT_SYMBOL_GPL vmlinux 0xfb7a4476 regmap_field_read EXPORT_SYMBOL_GPL vmlinux 0xfb7a4a7f btree_last -EXPORT_SYMBOL_GPL vmlinux 0xfb7c3969 irq_set_chained_handler_and_data -EXPORT_SYMBOL_GPL vmlinux 0xfb8b4d50 regulator_set_voltage_rdev -EXPORT_SYMBOL_GPL vmlinux 0xfb8c2d26 cdrom_read_tocentry +EXPORT_SYMBOL_GPL vmlinux 0xfb873948 dmaengine_desc_attach_metadata +EXPORT_SYMBOL_GPL vmlinux 0xfb95e0b1 auxiliary_driver_unregister EXPORT_SYMBOL_GPL vmlinux 0xfb96f72b topology_set_scale_freq_source -EXPORT_SYMBOL_GPL vmlinux 0xfbba2f0a devm_mbox_controller_unregister -EXPORT_SYMBOL_GPL vmlinux 0xfbbd3b7a __regmap_init +EXPORT_SYMBOL_GPL vmlinux 0xfba322fa devlink_params_register +EXPORT_SYMBOL_GPL vmlinux 0xfbb85fff phy_set_media +EXPORT_SYMBOL_GPL vmlinux 0xfbbc39b3 ata_sff_qc_fill_rtf EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action -EXPORT_SYMBOL_GPL vmlinux 0xfbd510b2 wm8350_block_read -EXPORT_SYMBOL_GPL vmlinux 0xfbd6f2f7 ack_all_badblocks -EXPORT_SYMBOL_GPL vmlinux 0xfbdfb1dc blk_ksm_intersect_modes -EXPORT_SYMBOL_GPL vmlinux 0xfbe19197 pci_device_group +EXPORT_SYMBOL_GPL vmlinux 0xfbc4a5c2 pinctrl_find_gpio_range_from_pin_nolock +EXPORT_SYMBOL_GPL vmlinux 0xfbd6d6e5 cpts_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0xfbd73277 set_capacity_and_notify EXPORT_SYMBOL_GPL vmlinux 0xfbeeb13c phy_gbit_all_ports_features +EXPORT_SYMBOL_GPL vmlinux 0xfbf83d85 snd_soc_dai_link_set_capabilities EXPORT_SYMBOL_GPL vmlinux 0xfc014cb6 smp_call_function_any EXPORT_SYMBOL_GPL vmlinux 0xfc03d97a page_is_ram -EXPORT_SYMBOL_GPL vmlinux 0xfc1293b4 tps65912_regmap_config EXPORT_SYMBOL_GPL vmlinux 0xfc14bb2e dm_get_dev_t EXPORT_SYMBOL_GPL vmlinux 0xfc19bc45 crypto_dh_encode_key -EXPORT_SYMBOL_GPL vmlinux 0xfc28933f rio_mport_read_config_32 -EXPORT_SYMBOL_GPL vmlinux 0xfc2a86cc kernel_read_file -EXPORT_SYMBOL_GPL vmlinux 0xfc2e516b ata_std_prereset -EXPORT_SYMBOL_GPL vmlinux 0xfc3f667e gpiod_get_optional -EXPORT_SYMBOL_GPL vmlinux 0xfc46b56b sata_link_hardreset -EXPORT_SYMBOL_GPL vmlinux 0xfc5967cb sched_show_task -EXPORT_SYMBOL_GPL vmlinux 0xfc667cd2 put_pid -EXPORT_SYMBOL_GPL vmlinux 0xfc7877c6 kill_dev_dax -EXPORT_SYMBOL_GPL vmlinux 0xfc8dfba8 vfs_truncate -EXPORT_SYMBOL_GPL vmlinux 0xfc9446a2 thermal_add_hwmon_sysfs -EXPORT_SYMBOL_GPL vmlinux 0xfcb0a372 trace_array_set_clr_event -EXPORT_SYMBOL_GPL vmlinux 0xfcb4caaa icc_get_name -EXPORT_SYMBOL_GPL vmlinux 0xfcbc2246 devm_usb_get_phy_by_node -EXPORT_SYMBOL_GPL vmlinux 0xfcc6bade of_map_id -EXPORT_SYMBOL_GPL vmlinux 0xfcd5f1d4 fwnode_gpiod_get_index -EXPORT_SYMBOL_GPL vmlinux 0xfcd63f83 unregister_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0xfcea5136 kgdb_register_io_module +EXPORT_SYMBOL_GPL vmlinux 0xfc286a33 iomap_dio_rw +EXPORT_SYMBOL_GPL vmlinux 0xfc33184b balloon_page_list_dequeue +EXPORT_SYMBOL_GPL vmlinux 0xfc434136 devlink_traps_unregister +EXPORT_SYMBOL_GPL vmlinux 0xfc4f7496 clk_hw_register_composite +EXPORT_SYMBOL_GPL vmlinux 0xfc4ff497 max8997_write_reg +EXPORT_SYMBOL_GPL vmlinux 0xfc5403c0 relay_switch_subbuf +EXPORT_SYMBOL_GPL vmlinux 0xfc70b4f4 of_clk_add_provider +EXPORT_SYMBOL_GPL vmlinux 0xfc74f7b9 ata_host_activate +EXPORT_SYMBOL_GPL vmlinux 0xfc8a58e9 kernfs_put +EXPORT_SYMBOL_GPL vmlinux 0xfc95c524 ahci_kick_engine +EXPORT_SYMBOL_GPL vmlinux 0xfc99d477 regulator_set_current_limit +EXPORT_SYMBOL_GPL vmlinux 0xfcc2b5ad fuse_conn_put +EXPORT_SYMBOL_GPL vmlinux 0xfcdb17cf iomap_writepage +EXPORT_SYMBOL_GPL vmlinux 0xfcdce7e4 ip6_flush_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0xfcde34af ip6_dst_lookup EXPORT_SYMBOL_GPL vmlinux 0xfcf54d1d add_wait_queue_priority +EXPORT_SYMBOL_GPL vmlinux 0xfcf91373 of_usb_get_dr_mode_by_phy EXPORT_SYMBOL_GPL vmlinux 0xfcf9ef73 hw_protection_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xfd0ac6ba pinmux_generic_get_function_count -EXPORT_SYMBOL_GPL vmlinux 0xfd0e784b rockchip_pcie_deinit_phys -EXPORT_SYMBOL_GPL vmlinux 0xfd107747 dev_pm_opp_put_regulators +EXPORT_SYMBOL_GPL vmlinux 0xfcfb9815 i2c_new_client_device +EXPORT_SYMBOL_GPL vmlinux 0xfcff7520 pci_sriov_get_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0xfd17e783 snd_soc_tplg_component_remove +EXPORT_SYMBOL_GPL vmlinux 0xfd206249 sdio_enable_func +EXPORT_SYMBOL_GPL vmlinux 0xfd255ccb nand_wait_ready EXPORT_SYMBOL_GPL vmlinux 0xfd2b0a2c sbitmap_queue_min_shallow_depth -EXPORT_SYMBOL_GPL vmlinux 0xfd2fe3e0 device_store_int -EXPORT_SYMBOL_GPL vmlinux 0xfd317c33 ahci_set_em_messages +EXPORT_SYMBOL_GPL vmlinux 0xfd321c23 pstore_unregister +EXPORT_SYMBOL_GPL vmlinux 0xfd353600 dst_blackhole_redirect +EXPORT_SYMBOL_GPL vmlinux 0xfd3f0319 device_property_match_string EXPORT_SYMBOL_GPL vmlinux 0xfd40ad83 kfree_strarray EXPORT_SYMBOL_GPL vmlinux 0xfd4dba7d freq_qos_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0xfd53fdcf gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0xfd53a35c crypto_grab_akcipher EXPORT_SYMBOL_GPL vmlinux 0xfd544b19 badrange_init EXPORT_SYMBOL_GPL vmlinux 0xfd581da1 free_rs -EXPORT_SYMBOL_GPL vmlinux 0xfd5d48c6 crypto_alloc_base -EXPORT_SYMBOL_GPL vmlinux 0xfd7b35bf skb_to_sgvec -EXPORT_SYMBOL_GPL vmlinux 0xfd8ca80d tty_port_link_device -EXPORT_SYMBOL_GPL vmlinux 0xfd90d1f3 usb_debug_root -EXPORT_SYMBOL_GPL vmlinux 0xfda107d5 inet_csk_listen_stop -EXPORT_SYMBOL_GPL vmlinux 0xfda93afe crypto_alloc_ahash +EXPORT_SYMBOL_GPL vmlinux 0xfd66c17a dma_async_device_channel_unregister +EXPORT_SYMBOL_GPL vmlinux 0xfd6ed53d icc_set_bw +EXPORT_SYMBOL_GPL vmlinux 0xfd7da7ba devm_krealloc +EXPORT_SYMBOL_GPL vmlinux 0xfd9579ab fwnode_get_phy_mode EXPORT_SYMBOL_GPL vmlinux 0xfdbd7a17 crypto_get_attr_type -EXPORT_SYMBOL_GPL vmlinux 0xfdc7a8e4 relay_reset -EXPORT_SYMBOL_GPL vmlinux 0xfddf1487 ip6_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xfdc64006 usb_phy_generic_register +EXPORT_SYMBOL_GPL vmlinux 0xfdcdc93b nvdimm_bus_register +EXPORT_SYMBOL_GPL vmlinux 0xfdd6100c virtqueue_kick +EXPORT_SYMBOL_GPL vmlinux 0xfdf1b35f snd_device_get_state EXPORT_SYMBOL_GPL vmlinux 0xfe0bbbd2 atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xfe15db6e ehci_suspend +EXPORT_SYMBOL_GPL vmlinux 0xfe164423 regulator_unregister EXPORT_SYMBOL_GPL vmlinux 0xfe1a7a7b mpi_point_release +EXPORT_SYMBOL_GPL vmlinux 0xfe212178 devm_gpio_request_one EXPORT_SYMBOL_GPL vmlinux 0xfe29d810 trace_seq_to_user -EXPORT_SYMBOL_GPL vmlinux 0xfe2f8937 cpufreq_cpu_get_raw -EXPORT_SYMBOL_GPL vmlinux 0xfe38539d pm_clk_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0xfe466375 aead_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0xfe33b627 pci_dev_run_wake +EXPORT_SYMBOL_GPL vmlinux 0xfe365199 snd_soc_free_ac97_component +EXPORT_SYMBOL_GPL vmlinux 0xfe423e31 sdhci_runtime_suspend_host EXPORT_SYMBOL_GPL vmlinux 0xfe476039 ktime_get_resolution_ns -EXPORT_SYMBOL_GPL vmlinux 0xfe4e53cb snd_soc_jack_add_zones -EXPORT_SYMBOL_GPL vmlinux 0xfe524e55 pinctrl_enable +EXPORT_SYMBOL_GPL vmlinux 0xfe47cbd4 adp5520_register_notifier EXPORT_SYMBOL_GPL vmlinux 0xfe5aad0c divider_ro_determine_rate -EXPORT_SYMBOL_GPL vmlinux 0xfe806613 serdev_device_write -EXPORT_SYMBOL_GPL vmlinux 0xfe8239aa xhci_ext_cap_init -EXPORT_SYMBOL_GPL vmlinux 0xfe88da41 dev_pm_qos_remove_request -EXPORT_SYMBOL_GPL vmlinux 0xfe8b5b98 meson_pinctrl_probe +EXPORT_SYMBOL_GPL vmlinux 0xfe5d1551 phy_configure +EXPORT_SYMBOL_GPL vmlinux 0xfe6320e4 ack_all_badblocks +EXPORT_SYMBOL_GPL vmlinux 0xfe84de5b snd_soc_component_async_complete EXPORT_SYMBOL_GPL vmlinux 0xfe8cdb84 ring_buffer_alloc_read_page -EXPORT_SYMBOL_GPL vmlinux 0xfe948f1b eventfd_fget EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free -EXPORT_SYMBOL_GPL vmlinux 0xfea713c0 regmap_field_bulk_alloc -EXPORT_SYMBOL_GPL vmlinux 0xfea814d6 fib6_check_nexthop +EXPORT_SYMBOL_GPL vmlinux 0xfe9f86c4 fib_rules_register +EXPORT_SYMBOL_GPL vmlinux 0xfec0758a ata_ehi_clear_desc EXPORT_SYMBOL_GPL vmlinux 0xfec3bf84 icst_clk_setup -EXPORT_SYMBOL_GPL vmlinux 0xfec50298 virtqueue_kick_prepare -EXPORT_SYMBOL_GPL vmlinux 0xfecb629b regulator_disable_regmap EXPORT_SYMBOL_GPL vmlinux 0xfed11ed1 usb_mon_deregister EXPORT_SYMBOL_GPL vmlinux 0xfed561ff divider_determine_rate -EXPORT_SYMBOL_GPL vmlinux 0xfed6eda7 gpiochip_unlock_as_irq -EXPORT_SYMBOL_GPL vmlinux 0xfee58ef8 snd_soc_dai_compr_pointer -EXPORT_SYMBOL_GPL vmlinux 0xfef31c7c xfrm_audit_policy_delete +EXPORT_SYMBOL_GPL vmlinux 0xfedad87a devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0xfedb14b1 __audit_inode_child +EXPORT_SYMBOL_GPL vmlinux 0xfee2a305 ata_sff_data_xfer32 +EXPORT_SYMBOL_GPL vmlinux 0xfefdb79f irq_domain_pop_irq EXPORT_SYMBOL_GPL vmlinux 0xff05fa13 vring_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xff13a145 regulator_get_voltage -EXPORT_SYMBOL_GPL vmlinux 0xff1593a5 crypto_aead_setkey +EXPORT_SYMBOL_GPL vmlinux 0xff0c0059 rio_mport_class +EXPORT_SYMBOL_GPL vmlinux 0xff0df22e ata_sff_postreset +EXPORT_SYMBOL_GPL vmlinux 0xff0e70fd snd_soc_of_parse_audio_routing EXPORT_SYMBOL_GPL vmlinux 0xff1666f3 reset_control_bulk_assert -EXPORT_SYMBOL_GPL vmlinux 0xff24034d usb_add_gadget +EXPORT_SYMBOL_GPL vmlinux 0xff185f4c pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0xff25fb33 device_release_driver EXPORT_SYMBOL_GPL vmlinux 0xff291ecf clk_unregister_divider -EXPORT_SYMBOL_GPL vmlinux 0xff30c8c2 ahci_platform_disable_regulators -EXPORT_SYMBOL_GPL vmlinux 0xff3c4e6d nand_read_data_op -EXPORT_SYMBOL_GPL vmlinux 0xff3c4f5c akcipher_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xff2d16ef xfrm_audit_state_add EXPORT_SYMBOL_GPL vmlinux 0xff42c374 usb_role_switch_get_role -EXPORT_SYMBOL_GPL vmlinux 0xff432b80 ata_sas_scsi_ioctl -EXPORT_SYMBOL_GPL vmlinux 0xff5b4bd0 devm_usb_get_phy -EXPORT_SYMBOL_GPL vmlinux 0xff5f3ab7 pinctrl_generic_get_group_pins -EXPORT_SYMBOL_GPL vmlinux 0xff6d0427 power_supply_put_battery_info -EXPORT_SYMBOL_GPL vmlinux 0xff6fcff4 mtk_hw_get_value -EXPORT_SYMBOL_GPL vmlinux 0xff7d4ca9 platform_find_device_by_driver +EXPORT_SYMBOL_GPL vmlinux 0xff4da014 irq_generic_chip_ops +EXPORT_SYMBOL_GPL vmlinux 0xff5d17d2 fb_deferred_io_fsync +EXPORT_SYMBOL_GPL vmlinux 0xff6b3e8b ata_pci_device_suspend +EXPORT_SYMBOL_GPL vmlinux 0xff6d64fa fwnode_property_read_u64_array EXPORT_SYMBOL_GPL vmlinux 0xff7e33bf mpi_sub_ui +EXPORT_SYMBOL_GPL vmlinux 0xff7e54a5 adp5520_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xff7f0309 scsi_target_block +EXPORT_SYMBOL_GPL vmlinux 0xff80a225 hwmon_device_register_with_info EXPORT_SYMBOL_GPL vmlinux 0xff81487d gpiod_remove_lookup_table -EXPORT_SYMBOL_GPL vmlinux 0xff845bb4 regmap_update_bits_base -EXPORT_SYMBOL_GPL vmlinux 0xff91d3cd device_bind_driver -EXPORT_SYMBOL_GPL vmlinux 0xff91f966 bus_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0xffa6d85f fib_table_lookup -EXPORT_SYMBOL_GPL vmlinux 0xffaa9b46 efivar_entry_find +EXPORT_SYMBOL_GPL vmlinux 0xff82e63b rdev_set_badblocks +EXPORT_SYMBOL_GPL vmlinux 0xff8575ec mtk_pinconf_bias_disable_get +EXPORT_SYMBOL_GPL vmlinux 0xff8b39a6 handle_simple_irq +EXPORT_SYMBOL_GPL vmlinux 0xff98de03 pci_try_reset_function +EXPORT_SYMBOL_GPL vmlinux 0xffa972a8 xhci_shutdown EXPORT_SYMBOL_GPL vmlinux 0xffae8e8b nsecs_to_jiffies -EXPORT_SYMBOL_GPL vmlinux 0xffb61cb7 cpufreq_freq_transition_end -EXPORT_SYMBOL_GPL vmlinux 0xffcb0f92 tpm_try_get_ops -EXPORT_SYMBOL_GPL vmlinux 0xffcd2c15 inet_csk_listen_start +EXPORT_SYMBOL_GPL vmlinux 0xffb2b0e0 crypto_unregister_aeads EXPORT_SYMBOL_GPL vmlinux 0xffd1123f save_stack_trace -EXPORT_SYMBOL_GPL vmlinux 0xffd31b14 regulator_set_voltage_time -EXPORT_SYMBOL_GPL vmlinux 0xffdd343f perf_event_create_kernel_counter -EXPORT_SYMBOL_GPL vmlinux 0xffde666c i2c_generic_scl_recovery -EXPORT_SYMBOL_GPL vmlinux 0xffde7965 pstore_register -EXPORT_SYMBOL_GPL vmlinux 0xffdfa06a regulator_enable -EXPORT_SYMBOL_GPL vmlinux 0xffeb2012 perf_event_addr_filters_sync -EXPORT_SYMBOL_GPL vmlinux 0xffebf386 usb_of_has_combined_node -EXPORT_SYMBOL_GPL vmlinux 0xfffec30f debugfs_read_file_bool +EXPORT_SYMBOL_GPL vmlinux 0xffd237e5 sock_map_close +EXPORT_SYMBOL_GPL vmlinux 0xffe5d19c sdio_readsb +EXPORT_SYMBOL_GPL vmlinux 0xfff754f4 ahci_platform_resume FIRMWARE_LOADER_PRIVATE EXPORT_SYMBOL_GPL 0xd3ae7756 fw_fallback_config vmlinux -IIO_HID EXPORT_SYMBOL 0x057a5906 hid_sensor_pm_ops drivers/iio/common/hid-sensors/hid-sensor-trigger -IIO_HID EXPORT_SYMBOL 0x181a36a4 hid_sensor_remove_trigger drivers/iio/common/hid-sensors/hid-sensor-trigger -IIO_HID EXPORT_SYMBOL 0x185bef57 hid_sensor_read_raw_hyst_rel_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0x3bd5a15f hid_sensor_write_raw_hyst_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0x3c6dac4e hid_sensor_convert_timestamp drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0x3f46b83d hid_sensor_write_raw_hyst_rel_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0x40f0ddf3 hid_sensor_parse_common_attributes drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0x6f85b763 hid_sensor_write_samp_freq_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0x704851d6 hid_sensor_read_samp_freq_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0x75fea0ee hid_sensor_setup_trigger drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0x0a9c9f1f hid_sensor_pm_ops drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0x0fd9ff56 hid_sensor_remove_trigger drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0x15766028 hid_sensor_power_state drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0x4e1f3ad1 hid_sensor_write_raw_hyst_rel_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x611d7a12 hid_sensor_write_samp_freq_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x6f74cb79 hid_sensor_convert_timestamp drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x77b94f08 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 0x92806dad hid_sensor_read_raw_hyst_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0xcd1454c8 hid_sensor_power_state drivers/iio/common/hid-sensors/hid-sensor-trigger -IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x0307d199 hid_sensor_get_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x041d0318 hid_sensor_set_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x0d7dba98 hid_sensor_batch_mode_supported drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x49307e95 hid_sensor_read_poll_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -LTC2497 EXPORT_SYMBOL 0x8979df7b ltc2497core_remove drivers/iio/adc/ltc2497-core -LTC2497 EXPORT_SYMBOL 0x9b4ed624 ltc2497core_probe drivers/iio/adc/ltc2497-core -MCB EXPORT_SYMBOL_GPL 0x21984afd mcb_unregister_driver drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x2537d90b mcb_bus_add_devices drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x25cd1431 mcb_bus_put drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x2a232929 mcb_get_resource drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x34048487 __mcb_register_driver drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x3e54d694 mcb_request_mem drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x41151ac6 mcb_device_register drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x496b7e03 mcb_bus_get drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x4ce9eff7 mcb_alloc_bus drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x66527219 mcb_alloc_dev drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x987b222c mcb_free_dev drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x98a2c0b8 mcb_get_irq drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x9bfa8e3a mcb_release_bus drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0xac4d7466 chameleon_parse_cells drivers/mcb/mcb +IIO_HID EXPORT_SYMBOL 0x8f835137 hid_sensor_parse_common_attributes drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x985cb605 hid_sensor_read_raw_hyst_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0xbd61c6b1 hid_sensor_read_samp_freq_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0xf55946a1 hid_sensor_write_raw_hyst_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0xfdd2ed40 hid_sensor_read_raw_hyst_rel_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x9115deda hid_sensor_get_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0xf71ac62a hid_sensor_set_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0xf96d9bfe hid_sensor_batch_mode_supported drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0xff83fd41 hid_sensor_read_poll_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +LTC2497 EXPORT_SYMBOL 0x1c299702 ltc2497core_remove drivers/iio/adc/ltc2497-core +LTC2497 EXPORT_SYMBOL 0xab840e06 ltc2497core_probe drivers/iio/adc/ltc2497-core +MCB EXPORT_SYMBOL_GPL 0x110b5aa2 mcb_bus_add_devices drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x1b859376 mcb_release_bus drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x414a0f76 mcb_alloc_dev drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x5a259c83 mcb_get_irq drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x5ad0d8cf mcb_device_register drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x672cff64 mcb_free_dev drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x6b835ac8 chameleon_parse_cells drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x6d72acaf mcb_request_mem drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x71149f75 mcb_bus_get drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x7972b643 __mcb_register_driver drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xdae9e9d0 mcb_get_resource drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xdf3fd9f4 mcb_bus_put drivers/mcb/mcb MCB EXPORT_SYMBOL_GPL 0xeb2c8905 mcb_release_mem drivers/mcb/mcb -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x30b07ffa nvme_put_ns drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x98ee2f6c nvme_find_get_ns drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xa9a6fe7a nvme_ctrl_from_file drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xad2f4b7b nvme_execute_passthru_rq drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xbfe897fb nvme_command_effects drivers/nvme/host/nvme-core -PMBUS EXPORT_SYMBOL_GPL 0x0235a20f pmbus_write_byte_data drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x089c712f pmbus_read_byte_data drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x143288e4 pmbus_set_page drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x166feaca pmbus_update_byte_data drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x17ff8071 pmbus_update_fan drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x1e5a8dcb pmbus_check_byte_register drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x40fd9368 pmbus_set_update drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x41670c36 pmbus_get_fan_rate_device drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x44757d7e pmbus_do_probe drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x48ef1b38 pmbus_read_word_data drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x4e934403 pmbus_write_word_data drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x512ecd96 pmbus_clear_cache drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x8405803c pmbus_get_debugfs_dir drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xa0df3670 pmbus_write_byte drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xafe9c5d7 pmbus_clear_faults drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xb6456306 pmbus_get_driver_info drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xe394ff11 pmbus_check_word_register drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xf2a03568 pmbus_get_fan_rate_cached drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xf59711c0 pmbus_regulator_ops drivers/hwmon/pmbus/pmbus_core -USB_STORAGE EXPORT_SYMBOL_GPL 0x1a78cf06 usb_stor_ctrl_transfer drivers/usb/storage/usb-storage +MCB EXPORT_SYMBOL_GPL 0xf2818b40 mcb_unregister_driver drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xf5b7441f mcb_alloc_bus drivers/mcb/mcb +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x633c2667 nvme_put_ns drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xb7944f50 nvme_execute_passthru_rq drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xd1a215ae nvme_find_get_ns drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xe5bcc051 nvme_ctrl_from_file drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xe65356b0 nvme_command_effects drivers/nvme/host/nvme-core +PMBUS EXPORT_SYMBOL_GPL 0x0df2846d pmbus_read_word_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x15e2a822 pmbus_write_byte drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x264fcd83 pmbus_read_byte_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x2db4f10e pmbus_get_debugfs_dir drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x321cb8e7 pmbus_do_probe drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x4dd09e43 pmbus_get_fan_rate_device drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x5f86548f pmbus_check_word_register drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x69f3f6ca pmbus_update_byte_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x7de021e9 pmbus_set_update drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x99630944 pmbus_update_fan drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xa7c7ef0b pmbus_write_byte_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xb06f1a62 pmbus_regulator_ops drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xb076aef6 pmbus_clear_faults drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xb19da41f pmbus_write_word_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xb8bf95d5 pmbus_get_fan_rate_cached drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xbb2d0e44 pmbus_set_page drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xc15c6d89 pmbus_get_driver_info drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xfa419861 pmbus_clear_cache drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xfe32697e pmbus_check_byte_register drivers/hwmon/pmbus/pmbus_core +USB_STORAGE EXPORT_SYMBOL_GPL 0x01b5547f usb_stor_disconnect drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x04300318 usb_stor_pre_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x075eb314 usb_stor_transparent_scsi_command drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x0d8a1a14 usb_stor_adjust_quirks drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x1718c658 usb_stor_set_xfer_buf drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x199849f4 usb_stor_Bulk_transport drivers/usb/storage/usb-storage USB_STORAGE EXPORT_SYMBOL_GPL 0x1bc3edc2 usb_stor_sense_invalidCDB drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x2e5ccd34 usb_stor_post_reset drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x4cb41c74 usb_stor_reset_resume drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x4fcc758b usb_stor_disconnect drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x60b3f7d1 usb_stor_probe1 drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x680a5832 usb_stor_set_xfer_buf drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x6bae5767 usb_stor_Bulk_transport drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x729ecf59 usb_stor_bulk_srb drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x7fdaa0a1 fill_inquiry_response drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x93bb354b usb_stor_Bulk_reset drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x94304897 usb_stor_pre_reset drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xa96aa45d usb_stor_CB_reset drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xb0bb33f8 usb_stor_control_msg drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xba5e311d usb_stor_probe2 drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xbf240399 usb_stor_access_xfer_buf drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xc9b18315 usb_stor_CB_transport drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xcf3b633a usb_stor_resume drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xd1895924 usb_stor_transparent_scsi_command drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xd5132b55 usb_stor_clear_halt drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xd913ebad usb_stor_adjust_quirks drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xdad34d44 usb_stor_host_template_init drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xde8d415c usb_stor_suspend drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xe2f4dfa0 usb_stor_bulk_transfer_sg drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xf9002f01 usb_stor_bulk_transfer_buf drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x1d50df43 usb_stor_ctrl_transfer drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x39170779 usb_stor_bulk_transfer_sg drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x3ffbc78f usb_stor_bulk_transfer_buf drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x434fa1a6 usb_stor_reset_resume drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x50be8081 usb_stor_CB_transport drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x5278328f usb_stor_host_template_init drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x62103bb5 usb_stor_bulk_srb drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x6234c0f6 usb_stor_Bulk_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x6d47a534 usb_stor_probe1 drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x837c0e1d usb_stor_resume drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x9a5ff8cc usb_stor_probe2 drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xa74316f5 usb_stor_clear_halt drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xb017194f usb_stor_post_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xc4b4e862 fill_inquiry_response drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xc8a5b36d usb_stor_suspend drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xf1235858 usb_stor_access_xfer_buf drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xf9f4d17b usb_stor_CB_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xfd2f0866 usb_stor_control_msg drivers/usb/storage/usb-storage diff -u linux-intel-iotg-5.15-5.15.0/debian.master/abi/armhf/generic-lpae.modules linux-intel-iotg-5.15-5.15.0/debian.master/abi/armhf/generic-lpae.modules --- linux-intel-iotg-5.15-5.15.0/debian.master/abi/armhf/generic-lpae.modules +++ linux-intel-iotg-5.15-5.15.0/debian.master/abi/armhf/generic-lpae.modules @@ -2630,7 +2630,6 @@ lib80211_crypt_wep libarc4 libblake2s -libblake2s-generic libceph libchacha libchacha20poly1305 @@ -5142,6 +5141,10 @@ snd-soc-cs35l34 snd-soc-cs35l35 snd-soc-cs35l36 +snd-soc-cs35l41 +snd-soc-cs35l41-i2c +snd-soc-cs35l41-lib +snd-soc-cs35l41-spi snd-soc-cs4234 snd-soc-cs4265 snd-soc-cs4270 @@ -5456,6 +5459,18 @@ spaceorb sparse-keymap spcp8x5 +speakup +speakup_acntsa +speakup_apollo +speakup_audptr +speakup_bns +speakup_decext +speakup_dectlk +speakup_dummy +speakup_ltlk +speakup_soft +speakup_spkout +speakup_txprt speedfax speedtch spi-altera-core diff -u linux-intel-iotg-5.15-5.15.0/debian.master/abi/armhf/generic.modules linux-intel-iotg-5.15-5.15.0/debian.master/abi/armhf/generic.modules --- linux-intel-iotg-5.15-5.15.0/debian.master/abi/armhf/generic.modules +++ linux-intel-iotg-5.15-5.15.0/debian.master/abi/armhf/generic.modules @@ -2687,7 +2687,6 @@ lib80211_crypt_wep libarc4 libblake2s -libblake2s-generic libceph libchacha libchacha20poly1305 @@ -5227,6 +5226,10 @@ snd-soc-cs35l34 snd-soc-cs35l35 snd-soc-cs35l36 +snd-soc-cs35l41 +snd-soc-cs35l41-i2c +snd-soc-cs35l41-lib +snd-soc-cs35l41-spi snd-soc-cs4234 snd-soc-cs4265 snd-soc-cs4270 @@ -5571,6 +5574,18 @@ spaceorb sparse-keymap spcp8x5 +speakup +speakup_acntsa +speakup_apollo +speakup_audptr +speakup_bns +speakup_decext +speakup_dectlk +speakup_dummy +speakup_ltlk +speakup_soft +speakup_spkout +speakup_txprt speedfax speedtch spi-altera-core diff -u linux-intel-iotg-5.15-5.15.0/debian.master/abi/fwinfo linux-intel-iotg-5.15-5.15.0/debian.master/abi/fwinfo --- linux-intel-iotg-5.15-5.15.0/debian.master/abi/fwinfo +++ linux-intel-iotg-5.15-5.15.0/debian.master/abi/fwinfo @@ -617,7 +617,9 @@ firmware: bnx2x/bnx2x-e2-7.13.21.0.fw firmware: brcm/bcm43xx-0.fw firmware: brcm/bcm43xx_hdr-0.fw +firmware: brcm/brcmfmac*-pcie.*.bin firmware: brcm/brcmfmac*-pcie.*.txt +firmware: brcm/brcmfmac*-pcie.txt firmware: brcm/brcmfmac*-sdio.*.bin firmware: brcm/brcmfmac*-sdio.*.txt firmware: brcm/brcmfmac43012-sdio.bin @@ -1032,6 +1034,8 @@ firmware: mellanox/mlxsw_spectrum-13.2008.2406.mfa2 firmware: mellanox/mlxsw_spectrum2-29.2008.2406.mfa2 firmware: mellanox/mlxsw_spectrum3-30.2008.2406.mfa2 +firmware: microchip/mscc_vsc8574_revb_int8051_29e8.bin +firmware: microchip/mscc_vsc8584_revb_int8051_fb48.bin firmware: mixart/miXart8.elf firmware: mixart/miXart8.xlx firmware: mixart/miXart8AES.xlx diff -u linux-intel-iotg-5.15-5.15.0/debian.master/abi/ppc64el/generic linux-intel-iotg-5.15-5.15.0/debian.master/abi/ppc64el/generic --- linux-intel-iotg-5.15-5.15.0/debian.master/abi/ppc64el/generic +++ linux-intel-iotg-5.15-5.15.0/debian.master/abi/ppc64el/generic @@ -1,25 +1,25 @@ -CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x7f378dd2 crypto_cipher_decrypt_one vmlinux -CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0xa6d6473e crypto_cipher_encrypt_one vmlinux -CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0xaa2f6fe5 crypto_cipher_setkey vmlinux -CXL EXPORT_SYMBOL_GPL 0x0ffb8295 cxl_add_dport drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x143b6e01 cxl_probe_device_regs drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x325eef62 to_cxl_nvdimm_bridge drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x37dc32a0 cxl_bus_type drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x395d5c21 is_root_decoder drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x4e1c66ea devm_cxl_add_memdev drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x549b156f cxl_map_component_regs drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x5961b122 is_cxl_nvdimm drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x5ac63942 to_cxl_decoder drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x6739e30e cxl_map_device_regs drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x7c961a39 __cxl_driver_register drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x958b159d devm_cxl_add_decoder drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x95c162c2 devm_cxl_add_nvdimm_bridge drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xa8888b41 devm_cxl_add_nvdimm drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xae343d5e to_cxl_nvdimm drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xcc8c379a cxl_driver_unregister drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xd4577ffd devm_cxl_add_port drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xe07a6fbf cxl_probe_component_regs drivers/cxl/core/cxl_core -EXPORT_SYMBOL arch/powerpc/kvm/kvm 0x5651edd7 kvmppc_core_queue_syscall +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x7eedc220 crypto_cipher_setkey vmlinux +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x9ef7b507 crypto_cipher_encrypt_one vmlinux +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0xa46c5cca crypto_cipher_decrypt_one vmlinux +CXL EXPORT_SYMBOL_GPL 0x055e116d cxl_bus_type drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x25abccfc is_cxl_nvdimm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x2c533e0f devm_cxl_add_memdev drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x3b9dd287 cxl_probe_device_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x3f399d50 cxl_driver_unregister drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x41c63377 devm_cxl_add_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x4e0a385c __cxl_driver_register drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x5bdb09b9 devm_cxl_add_port drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x6d9d5474 cxl_map_device_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x76c5b90b cxl_probe_component_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xa382de49 cxl_map_component_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xa656cfda devm_cxl_add_nvdimm_bridge drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xaa58757c to_cxl_nvdimm_bridge drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xab9d3420 is_root_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xcfc44445 to_cxl_nvdimm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xd5085c24 devm_cxl_add_nvdimm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xd7a28d03 to_cxl_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xd7e208c1 cxl_add_dport drivers/cxl/core/cxl_core +EXPORT_SYMBOL arch/powerpc/kvm/kvm 0x8eaed46d kvmppc_core_queue_syscall EXPORT_SYMBOL arch/powerpc/platforms/pseries/hvcserver 0x913f1e6d hvcs_get_partner_info EXPORT_SYMBOL arch/powerpc/platforms/pseries/hvcserver 0xa73464c7 hvcs_register_connection EXPORT_SYMBOL arch/powerpc/platforms/pseries/hvcserver 0xbdf97f58 hvcs_free_connection @@ -41,51 +41,50 @@ 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 0x03586ca0 crypto_nhpoly1305_setkey -EXPORT_SYMBOL crypto/nhpoly1305 0x6c4b45fb crypto_nhpoly1305_update -EXPORT_SYMBOL crypto/nhpoly1305 0x7ba2c06a crypto_nhpoly1305_init -EXPORT_SYMBOL crypto/nhpoly1305 0x80e67720 crypto_nhpoly1305_final_helper -EXPORT_SYMBOL crypto/nhpoly1305 0x9fb03c88 crypto_nhpoly1305_update_helper -EXPORT_SYMBOL crypto/nhpoly1305 0xb65d1468 crypto_nhpoly1305_final -EXPORT_SYMBOL crypto/sha3_generic 0x2be3020b crypto_sha3_final -EXPORT_SYMBOL crypto/sha3_generic 0x455baba8 crypto_sha3_init -EXPORT_SYMBOL crypto/sha3_generic 0x9c70cd95 crypto_sha3_update -EXPORT_SYMBOL crypto/sm2_generic 0x3e542cb7 sm2_compute_z_digest -EXPORT_SYMBOL crypto/sm3_generic 0x177cdbf2 crypto_sm3_update -EXPORT_SYMBOL crypto/sm3_generic 0xccb112c1 crypto_sm3_final -EXPORT_SYMBOL crypto/sm3_generic 0xd1f0cd47 crypto_sm3_finup +EXPORT_SYMBOL crypto/nhpoly1305 0x2934a952 crypto_nhpoly1305_update_helper +EXPORT_SYMBOL crypto/nhpoly1305 0x72842697 crypto_nhpoly1305_init +EXPORT_SYMBOL crypto/nhpoly1305 0x85672e21 crypto_nhpoly1305_final +EXPORT_SYMBOL crypto/nhpoly1305 0x95db8000 crypto_nhpoly1305_setkey +EXPORT_SYMBOL crypto/nhpoly1305 0xace71a15 crypto_nhpoly1305_update +EXPORT_SYMBOL crypto/nhpoly1305 0xf20d9886 crypto_nhpoly1305_final_helper +EXPORT_SYMBOL crypto/sha3_generic 0x0a6b16d3 crypto_sha3_final +EXPORT_SYMBOL crypto/sha3_generic 0x1ee5ea12 crypto_sha3_init +EXPORT_SYMBOL crypto/sha3_generic 0xd51a2428 crypto_sha3_update +EXPORT_SYMBOL crypto/sm2_generic 0x8716cfc7 sm2_compute_z_digest +EXPORT_SYMBOL crypto/sm3_generic 0xa382f985 crypto_sm3_update +EXPORT_SYMBOL crypto/sm3_generic 0xa389f497 crypto_sm3_final +EXPORT_SYMBOL crypto/sm3_generic 0xcf7180a3 crypto_sm3_finup EXPORT_SYMBOL crypto/xor 0x5b6c00e6 xor_blocks -EXPORT_SYMBOL drivers/atm/suni 0x58c6d2f4 suni_init -EXPORT_SYMBOL drivers/bcma/bcma 0x09bcc2af bcma_core_irq -EXPORT_SYMBOL drivers/bcma/bcma 0xe36b89b7 bcma_core_dma_translation +EXPORT_SYMBOL drivers/atm/suni 0x9c26c4d6 suni_init +EXPORT_SYMBOL drivers/bcma/bcma 0xa4b8b295 bcma_core_dma_translation +EXPORT_SYMBOL drivers/bcma/bcma 0xfb9eeee0 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 0x1c7d4a02 pi_write_block -EXPORT_SYMBOL drivers/block/paride/paride 0x22543935 pi_schedule_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0x0dfc3e38 pi_disconnect +EXPORT_SYMBOL drivers/block/paride/paride 0x1d95ae4a pi_read_regr +EXPORT_SYMBOL drivers/block/paride/paride 0x33a13e36 pi_do_claimed EXPORT_SYMBOL drivers/block/paride/paride 0x4267110a pi_register_driver -EXPORT_SYMBOL drivers/block/paride/paride 0x4307a5cb pi_read_regr -EXPORT_SYMBOL drivers/block/paride/paride 0x4dff286e pi_release -EXPORT_SYMBOL drivers/block/paride/paride 0x604f934b pi_read_block -EXPORT_SYMBOL drivers/block/paride/paride 0x62329812 pi_do_claimed -EXPORT_SYMBOL drivers/block/paride/paride 0x6f2c18b4 pi_init -EXPORT_SYMBOL drivers/block/paride/paride 0x80a201d8 pi_connect -EXPORT_SYMBOL drivers/block/paride/paride 0x90cfe143 pi_disconnect -EXPORT_SYMBOL drivers/block/paride/paride 0xa68258a5 pi_write_regr +EXPORT_SYMBOL drivers/block/paride/paride 0x669d21bf pi_schedule_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0x83ea51ae pi_write_regr EXPORT_SYMBOL drivers/block/paride/paride 0xb21ba07d pi_unregister_driver -EXPORT_SYMBOL drivers/block/paride/paride 0xde9894e6 paride_register -EXPORT_SYMBOL drivers/block/paride/paride 0xe22e81d1 paride_unregister -EXPORT_SYMBOL drivers/bluetooth/btbcm 0x6aa474f8 btbcm_patchram -EXPORT_SYMBOL drivers/bluetooth/btrsi 0x1e89029c rsi_bt_ops -EXPORT_SYMBOL drivers/bus/mhi/core/mhi 0x7268f08e mhi_sync_power_up -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x00966763 ipmi_get_smi_info +EXPORT_SYMBOL drivers/block/paride/paride 0xc241c855 pi_init +EXPORT_SYMBOL drivers/block/paride/paride 0xc7cce31f pi_connect +EXPORT_SYMBOL drivers/block/paride/paride 0xcb981b5e paride_unregister +EXPORT_SYMBOL drivers/block/paride/paride 0xd03da907 paride_register +EXPORT_SYMBOL drivers/block/paride/paride 0xe06ef0da pi_release +EXPORT_SYMBOL drivers/block/paride/paride 0xe4bb78ce pi_write_block +EXPORT_SYMBOL drivers/block/paride/paride 0xfa11f141 pi_read_block +EXPORT_SYMBOL drivers/bluetooth/btbcm 0x0dc23abe btbcm_patchram +EXPORT_SYMBOL drivers/bluetooth/btrsi 0xec54696a rsi_bt_ops +EXPORT_SYMBOL drivers/bus/mhi/core/mhi 0xe88b92cd 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 0x148122ba ipmi_add_smi EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x230094ac ipmi_smi_watchdog_pretimeout EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x31cab048 ipmi_smi_msg_received -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x3c87fb74 ipmi_add_smi EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x40f2b10c ipmi_alloc_smi_msg EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x4c2054d7 ipmi_request_settime EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x50f65edf ipmi_set_gets_events @@ -94,11 +93,12 @@ 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 0xa0f0aae4 ipmi_smi_watcher_unregister +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xac196e0c ipmi_smi_watcher_register EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xaca90ebd ipmi_request_supply_msgs EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xae71627d ipmi_create_user -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xd528392f ipmi_smi_watcher_register EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xd54a5050 ipmi_unregister_for_cmd -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xdd5c83a0 ipmi_smi_watcher_unregister +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xdb83e28e 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 0xec1c2a90 ipmi_get_my_address @@ -106,1008 +106,1008 @@ 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/tpm/st33zp24/tpm_st33zp24 0x15e0562c st33zp24_probe -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x208e7fc3 st33zp24_pm_resume -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xa59bf0e1 st33zp24_remove -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xb6f333eb st33zp24_pm_suspend -EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0x212053ed xillybus_init_chrdev -EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0x6becb71b xillybus_find_inode -EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0xc1cc5b1f xillybus_cleanup_chrdev -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x0962ff0c xillybus_init_endpoint +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x5c0b9803 st33zp24_probe +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x69bc3118 st33zp24_pm_resume +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x741d16f2 st33zp24_pm_suspend +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xf09a7bf3 st33zp24_remove +EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0x1a6d8f55 xillybus_cleanup_chrdev +EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0x43ffa3f6 xillybus_init_chrdev +EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0xd27c1664 xillybus_find_inode +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x13547621 xillybus_endpoint_discovery EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x25978d50 xillybus_isr -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x94809027 xillybus_endpoint_remove -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xeab6f518 xillybus_endpoint_discovery -EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x313fbfc0 atmel_i2c_enqueue -EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x56c8108c atmel_i2c_send_receive +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x6e2fa311 xillybus_init_endpoint +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xb0c7a7fa xillybus_endpoint_remove +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x72c8c99f atmel_i2c_probe EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x80a11b1d atmel_i2c_init_read_cmd +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x8867d476 atmel_i2c_enqueue +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x9d6cf547 atmel_i2c_send_receive EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xc71ed50c atmel_i2c_init_genkey_cmd -EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xcf565694 atmel_i2c_probe 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/firewire/firewire-core 0x06796a88 fw_iso_context_queue_flush +EXPORT_SYMBOL drivers/firewire/firewire-core 0x09dd3264 fw_iso_context_destroy EXPORT_SYMBOL drivers/firewire/firewire-core 0x0bc6094c fw_core_remove_descriptor -EXPORT_SYMBOL drivers/firewire/firewire-core 0x12fb74b9 fw_run_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0x17b2a78c fw_core_remove_card +EXPORT_SYMBOL drivers/firewire/firewire-core 0x1f9393f5 fw_iso_context_flush_completions +EXPORT_SYMBOL drivers/firewire/firewire-core 0x239421a9 fw_cancel_transaction EXPORT_SYMBOL drivers/firewire/firewire-core 0x2885fec5 fw_get_request_speed -EXPORT_SYMBOL drivers/firewire/firewire-core 0x32bc5eeb fw_iso_context_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0x2cc89907 fw_iso_context_queue +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3201e033 fw_core_handle_response EXPORT_SYMBOL drivers/firewire/firewire-core 0x3a771e39 fw_core_add_descriptor +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3c0675a6 fw_fill_response EXPORT_SYMBOL drivers/firewire/firewire-core 0x3c56ef91 fw_workqueue -EXPORT_SYMBOL drivers/firewire/firewire-core 0x492266e8 fw_core_remove_address_handler -EXPORT_SYMBOL drivers/firewire/firewire-core 0x4b29a82e fw_device_enable_phys_dma -EXPORT_SYMBOL drivers/firewire/firewire-core 0x5a8dd8d3 fw_schedule_bus_reset -EXPORT_SYMBOL drivers/firewire/firewire-core 0x68825110 fw_send_request -EXPORT_SYMBOL drivers/firewire/firewire-core 0x68890adc fw_core_handle_request -EXPORT_SYMBOL drivers/firewire/firewire-core 0x69c370a6 fw_card_initialize +EXPORT_SYMBOL drivers/firewire/firewire-core 0x4ff83e06 fw_core_handle_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0x54ac4041 fw_iso_buffer_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0x5b2c4bac fw_run_transaction EXPORT_SYMBOL drivers/firewire/firewire-core 0x6dc50487 fw_csr_string -EXPORT_SYMBOL drivers/firewire/firewire-core 0x7059e231 fw_iso_context_stop -EXPORT_SYMBOL drivers/firewire/firewire-core 0x74a850de fw_card_add -EXPORT_SYMBOL drivers/firewire/firewire-core 0x7af2bb8f fw_iso_resource_manage +EXPORT_SYMBOL drivers/firewire/firewire-core 0x6e561dc4 fw_schedule_bus_reset EXPORT_SYMBOL drivers/firewire/firewire-core 0x86468d44 fw_rcode_string -EXPORT_SYMBOL drivers/firewire/firewire-core 0x8a9cf214 fw_fill_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0x97b0cf36 fw_iso_context_create -EXPORT_SYMBOL drivers/firewire/firewire-core 0x98ca8dd7 fw_bus_type -EXPORT_SYMBOL drivers/firewire/firewire-core 0x9a135219 fw_send_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0x9a5af787 fw_iso_buffer_destroy -EXPORT_SYMBOL drivers/firewire/firewire-core 0xa838e896 fw_iso_buffer_init -EXPORT_SYMBOL drivers/firewire/firewire-core 0xae4b9c26 fw_cancel_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0x90cae0b0 fw_iso_resource_manage +EXPORT_SYMBOL drivers/firewire/firewire-core 0xad6a5395 fw_send_request EXPORT_SYMBOL drivers/firewire/firewire-core 0xaedf84ce fw_high_memory_region -EXPORT_SYMBOL drivers/firewire/firewire-core 0xb5d7447c fw_iso_context_flush_completions -EXPORT_SYMBOL drivers/firewire/firewire-core 0xb7f51cfc fw_core_add_address_handler -EXPORT_SYMBOL drivers/firewire/firewire-core 0xc36ab413 fw_core_handle_bus_reset -EXPORT_SYMBOL drivers/firewire/firewire-core 0xca560336 fw_core_remove_card -EXPORT_SYMBOL drivers/firewire/firewire-core 0xdd813337 fw_iso_context_queue_flush +EXPORT_SYMBOL drivers/firewire/firewire-core 0xba4f6578 fw_iso_context_stop +EXPORT_SYMBOL drivers/firewire/firewire-core 0xbecaee5c fw_iso_context_start +EXPORT_SYMBOL drivers/firewire/firewire-core 0xbf976bab fw_card_initialize +EXPORT_SYMBOL drivers/firewire/firewire-core 0xbfad3e11 fw_core_remove_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0xc35c8575 fw_send_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0xc5b5e4dd fw_core_add_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0xc937f331 fw_device_enable_phys_dma EXPORT_SYMBOL drivers/firewire/firewire-core 0xe3fde125 fw_csr_iterator_next +EXPORT_SYMBOL drivers/firewire/firewire-core 0xe42f2567 fw_card_add EXPORT_SYMBOL drivers/firewire/firewire-core 0xe80e5087 fw_csr_iterator_init -EXPORT_SYMBOL drivers/firewire/firewire-core 0xeb5de92d fw_iso_context_queue -EXPORT_SYMBOL drivers/firewire/firewire-core 0xf786b0c3 fw_iso_context_start -EXPORT_SYMBOL drivers/firewire/firewire-core 0xf92cf88c fw_core_handle_response -EXPORT_SYMBOL drivers/fpga/dfl 0x67dd5520 dfl_driver_unregister -EXPORT_SYMBOL drivers/fpga/dfl 0xb47e482c __dfl_driver_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0x008baca3 drm_display_info_set_bus_formats -EXPORT_SYMBOL drivers/gpu/drm/drm 0x01057440 drm_send_event_timestamp_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0131b7f9 drm_i2c_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0160f482 drm_mode_find_dmt -EXPORT_SYMBOL drivers/gpu/drm/drm 0x017d51c3 drm_framebuffer_plane_height -EXPORT_SYMBOL drivers/gpu/drm/drm 0x01cfcbb4 drm_universal_plane_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0xeb577087 fw_iso_buffer_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0xf4b527b1 fw_core_handle_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0xf7457103 fw_iso_context_create +EXPORT_SYMBOL drivers/firewire/firewire-core 0xfe2b6fa9 fw_bus_type +EXPORT_SYMBOL drivers/fpga/dfl 0x09278346 dfl_driver_unregister +EXPORT_SYMBOL drivers/fpga/dfl 0xc71dc627 __dfl_driver_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x00d1e2b5 drm_gem_prime_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0168a059 drm_connector_list_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0x016b2f01 drm_gem_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0287fb39 drm_atomic_set_fb_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x029cdb48 drm_gem_create_mmap_offset EXPORT_SYMBOL drivers/gpu/drm/drm 0x03c63897 __drm_get_edid_firmware_path -EXPORT_SYMBOL drivers/gpu/drm/drm 0x041b7756 drm_property_lookup_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0x042ceb38 drm_connector_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0516334f drm_writeback_get_out_fence -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0561aa3c drm_dev_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x05aa6ba8 drm_bridge_chain_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0x047bbed0 drm_connector_has_possible_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0482d321 drm_mode_parse_command_line_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0x050c9618 drm_connector_list_iter_end +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0517c972 drm_poll +EXPORT_SYMBOL drivers/gpu/drm/drm 0x05775fa4 drm_crtc_create_scaling_filter_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x05ebcd8f drm_set_preferred_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x05f8fd34 drm_atomic_bridge_chain_post_disable EXPORT_SYMBOL drivers/gpu/drm/drm 0x065e86ac drm_detect_hdmi_monitor -EXPORT_SYMBOL drivers/gpu/drm/drm 0x06d96480 drm_any_plane_has_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0663ebb0 drm_add_modes_noedid EXPORT_SYMBOL drivers/gpu/drm/drm 0x070b28aa drm_ht_remove_item -EXPORT_SYMBOL drivers/gpu/drm/drm 0x082e6237 drm_dev_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm 0x083fe28e drm_invalid_op -EXPORT_SYMBOL drivers/gpu/drm/drm 0x085d0f2c drm_property_replace_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0x087cd2d0 drm_property_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0832e50b drm_client_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x086d1eb4 drm_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x08726844 drm_atomic_add_affected_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x089c3c09 drm_client_framebuffer_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a18cd10 drm_i2c_encoder_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a2eae68 drm_atomic_get_connector_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a40e220 drm_crtc_vblank_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a4ab0fb drm_mode_prune_invalid EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a72f765 drm_clflush_virt_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0cc73476 __devm_drm_dev_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d33b561 drm_atomic_check_only -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d64bebc drm_writeback_signal_completion -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d6d7642 drm_mode_create_dp_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ac79e3f drm_master_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0c1aa8ac drm_i2c_encoder_detect +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d129f5a drm_print_regset32 +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d648f1d drm_framebuffer_remove EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d9b4753 drm_mode_equal -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0df22b7c drm_atomic_get_bridge_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0e609ab0 drm_atomic_get_new_bridge_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ebfbebf drm_client_modeset_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0edf4372 drm_add_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0e184c24 drm_invalid_op +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0eed96b0 drm_plane_get_damage_clips +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f121339 drm_client_framebuffer_delete EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f7acb66 drm_mm_print -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0faa192a drmm_kfree EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fd60df2 drm_get_connector_status_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x10555746 drm_handle_vblank EXPORT_SYMBOL drivers/gpu/drm/drm 0x107742a9 drm_get_subpixel_order_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x10d0a3c1 drm_client_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0x11085d75 drm_connector_attach_edid_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1175e240 drm_crtc_from_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0x119c75c4 drm_atomic_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x122657da drm_gem_shmem_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1240189c drm_property_add_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0x111ac5de drm_bridge_chain_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x12cae716 drm_mode_object_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1352391e drm_i2c_encoder_save +EXPORT_SYMBOL drivers/gpu/drm/drm 0x141a7db1 drm_mode_is_420 EXPORT_SYMBOL drivers/gpu/drm/drm 0x144db798 drm_driver_legacy_fb_format -EXPORT_SYMBOL drivers/gpu/drm/drm 0x15b01eab of_drm_find_bridge -EXPORT_SYMBOL drivers/gpu/drm/drm 0x15c2d369 drm_crtc_vblank_on -EXPORT_SYMBOL drivers/gpu/drm/drm 0x15ecc3ed drm_plane_from_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0x173b3ead drm_gem_map_detach -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1772121a drm_atomic_set_mode_prop_for_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1801398e drm_atomic_normalize_zpos -EXPORT_SYMBOL drivers/gpu/drm/drm 0x18cf49d3 drm_read -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1963828c drm_mode_validate_ycbcr420 -EXPORT_SYMBOL drivers/gpu/drm/drm 0x19b854b6 drm_modeset_lock_single_interruptible -EXPORT_SYMBOL drivers/gpu/drm/drm 0x19e372bc drm_dev_dbg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x14b6c145 drm_mode_get_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x14d37e6e drm_crtc_vblank_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x161782c2 devm_aperture_acquire_from_firmware +EXPORT_SYMBOL drivers/gpu/drm/drm 0x162faa03 drm_gem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x16b68ffe drm_cvt_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x186aa5ec drm_modeset_unlock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x186aa6de drm_crtc_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x19199880 drm_encoder_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1928efae __drmm_add_action +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1962be39 drm_client_modeset_commit_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x19707147 drm_connector_attach_dp_subconnector_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a3c27ab drm_ioctl_permit EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a411479 drm_syncobj_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c3dbf6b drmm_mode_config_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c6e1d41 drm_client_framebuffer_flush -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1cb65a2c drm_i2c_encoder_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d22be6c drm_panel_get_modes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1e76793d drm_gem_unlock_reservations -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1ec636e1 drm_of_find_possible_crtcs +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1aae6a6c drm_writeback_get_out_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1ba1b0cc drm_crtc_send_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1bcdc997 drm_crtc_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1bdd712c drm_panel_of_backlight +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c876f79 drm_property_create_signed_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1e15375f drm_atomic_print_new_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1e5de376 drm_crtc_commit_wait EXPORT_SYMBOL drivers/gpu/drm/drm 0x1ef11014 drm_vma_node_revoke -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1f42c515 drm_open -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2031f860 drm_vblank_work_flush -EXPORT_SYMBOL drivers/gpu/drm/drm 0x20caa6f7 drm_i2c_encoder_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm 0x213d7a5c drm_modeset_lock_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x215bb21b drm_atomic_get_private_obj_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x216d7dda drm_mode_object_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1f9ea27a drm_gem_shmem_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0x20d75d54 drm_read +EXPORT_SYMBOL drivers/gpu/drm/drm 0x217e9ae6 drm_crtc_enable_color_mgmt EXPORT_SYMBOL drivers/gpu/drm/drm 0x2183c08c drm_mm_scan_add_block -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2196e9d6 drm_mode_create_dvi_i_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x21f2300c drm_syncobj_replace_fence -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2296d81f drm_mode_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x22c14e84 drm_connector_attach_content_type_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x23804dcd drm_writeback_prepare_job -EXPORT_SYMBOL drivers/gpu/drm/drm 0x23f5ba9a drm_connector_has_possible_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0x249af221 drm_property_create_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0x21e68be2 drm_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0x24951e31 drm_bridge_chain_mode_set EXPORT_SYMBOL drivers/gpu/drm/drm 0x24d124ac drm_mode_equal_no_clocks_no_stereo -EXPORT_SYMBOL drivers/gpu/drm/drm 0x253479ea drm_atomic_set_crtc_for_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0x258ef788 drm_atomic_get_plane_state EXPORT_SYMBOL drivers/gpu/drm/drm 0x25daad93 __drm_mm_interval_first -EXPORT_SYMBOL drivers/gpu/drm/drm 0x268ff197 drm_set_preferred_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x26a55fa4 drm_mode_create_from_cmdline_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x271108b0 drm_client_modeset_commit_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x26974aa0 drm_bridge_chain_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x26e43c41 drm_mode_create_hdmi_colorspace_property EXPORT_SYMBOL drivers/gpu/drm/drm 0x2754dad8 drm_mm_reserve_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x278462b9 drm_gem_prime_handle_to_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0x27dbc3e5 drm_aperture_remove_conflicting_pci_framebuffers +EXPORT_SYMBOL drivers/gpu/drm/drm 0x27fc9cdf drm_connector_attach_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x281fc959 drmm_kfree +EXPORT_SYMBOL drivers/gpu/drm/drm 0x28365989 drm_crtc_arm_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2853898c drm_writeback_connector_init EXPORT_SYMBOL drivers/gpu/drm/drm 0x28779e52 drm_printf -EXPORT_SYMBOL drivers/gpu/drm/drm 0x28a22b5c drm_writeback_cleanup_job -EXPORT_SYMBOL drivers/gpu/drm/drm 0x28c3e340 drm_connector_attach_content_protection_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x28cb4429 drm_gem_shmem_create_with_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0x28e6f2e3 drm_gem_shmem_madvise +EXPORT_SYMBOL drivers/gpu/drm/drm 0x28f1c737 drm_atomic_state_default_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0x29004372 drm_probe_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2915b34d drm_modeset_drop_locks +EXPORT_SYMBOL drivers/gpu/drm/drm 0x291b6edf of_drm_get_panel_orientation +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2982c24e drm_crtc_init_with_planes EXPORT_SYMBOL drivers/gpu/drm/drm 0x29f078d1 drm_mode_legacy_fb_format -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a4fcd9f drm_connector_init_with_ddc EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a962499 drm_mm_scan_init_with_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c31a83a drm_encoder_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c510e0a drm_is_current_master EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d50570f drm_rect_calc_hscale -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2eb3c5e0 drm_gem_shmem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e241b86 drm_syncobj_find_fence EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ed3c600 drm_mode_debug_printmodeline -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ef54eb5 drm_client_modeset_probe -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f2a410f drm_dev_unplug -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f3a1413 drm_panel_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f3cb2c2 drm_vblank_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ff17bde drm_framebuffer_plane_width -EXPORT_SYMBOL drivers/gpu/drm/drm 0x31adfd90 drm_atomic_bridge_chain_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f2070c8 drm_of_find_possible_crtcs +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f75df20 drm_modeset_unlock +EXPORT_SYMBOL drivers/gpu/drm/drm 0x30e1349a drm_property_replace_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x31118ae8 drm_display_info_set_bus_formats +EXPORT_SYMBOL drivers/gpu/drm/drm 0x314974f3 drm_gem_shmem_unpin EXPORT_SYMBOL drivers/gpu/drm/drm 0x31b8a5e3 __drm_set_edid_firmware_path -EXPORT_SYMBOL drivers/gpu/drm/drm 0x31c78d7d drm_crtc_vblank_helper_get_vblank_timestamp_internal -EXPORT_SYMBOL drivers/gpu/drm/drm 0x325b28b7 drm_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x31d2fa94 drm_gem_cma_prime_import_sg_table_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x32650415 drm_mode_crtc_set_gamma_size EXPORT_SYMBOL drivers/gpu/drm/drm 0x32a0cc37 drm_print_bits -EXPORT_SYMBOL drivers/gpu/drm/drm 0x32a8fef2 drm_compat_ioctl -EXPORT_SYMBOL drivers/gpu/drm/drm 0x32f9186d drm_client_rotation EXPORT_SYMBOL drivers/gpu/drm/drm 0x33088445 drm_get_format_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0x333258fe drm_gem_dmabuf_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x33b74d7f drm_gem_cma_print_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0x349329f2 drm_property_create_signed_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x34ad6f5e drm_plane_create_zpos_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x355526fc drm_syncobj_get_fd -EXPORT_SYMBOL drivers/gpu/drm/drm 0x35dc5105 drm_prime_pages_to_sg -EXPORT_SYMBOL drivers/gpu/drm/drm 0x364b1ad7 drm_dev_enter -EXPORT_SYMBOL drivers/gpu/drm/drm 0x36becb8f drm_mode_config_reset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x36e4c80b drm_plane_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x332dd9b5 drm_gem_dmabuf_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x33a55468 drm_gem_cma_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0x33e28cad drm_gem_shmem_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3403e62a drm_crtc_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x346fda10 drm_client_rotation +EXPORT_SYMBOL drivers/gpu/drm/drm 0x347a0e3d drm_panel_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3652d3e3 drm_atomic_state_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x366a2d91 drm_atomic_get_crtc_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3683de02 drm_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x36d76f3c drm_mode_plane_set_obj_prop +EXPORT_SYMBOL drivers/gpu/drm/drm 0x36f64212 drm_client_modeset_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x374355ca drm_property_create_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x376a289f drm_vblank_init EXPORT_SYMBOL drivers/gpu/drm/drm 0x379250e7 drm_flip_work_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x38f3d78b drm_hdmi_avi_infoframe_bars -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3a11cfa7 drm_crtc_create_scaling_filter_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x389a0cf4 drm_panel_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3a26e656 drm_dev_alloc EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ab87110 drm_mode_equal_no_clocks +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ac25b26 drm_gem_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ae2dea1 drm_modeset_lock EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b0e5e9c __drm_puts_coredump -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b61f33a drm_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b540ea2 drm_atomic_private_obj_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b7dbaa8 drm_mode_find_dmt EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ba17eab drm_ht_insert_item -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c3d5dfa drm_syncobj_add_point -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3d01a1b7 drm_crtc_vblank_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3db2e2f6 drm_connector_attach_max_bpc_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e261cc2 drm_event_cancel_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3eaef865 drm_crtc_enable_color_mgmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ba1e1a7 drm_connector_attach_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3be65520 drm_prime_gem_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3bfa2aa2 drm_atomic_check_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3d2663f6 drm_connector_set_panel_orientation_with_quirk +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3db99c7d drm_bridge_chain_post_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ef5c7fb drm_vblank_work_flush EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f211584 drm_vma_offset_add EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f405489 __drm_printfn_err -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f9cb838 drm_modeset_acquire_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x416898ac drm_mode_create_content_type_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x419b7dfd drm_gem_shmem_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x420d8e4a drm_connector_attach_colorspace_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x42398dcd drm_gem_prime_import -EXPORT_SYMBOL drivers/gpu/drm/drm 0x42be8d9d drm_mode_validate_driver -EXPORT_SYMBOL drivers/gpu/drm/drm 0x42d371af drm_crtc_vblank_waitqueue +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f690aad drm_syncobj_add_point +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ffa4950 drm_connector_attach_tv_margin_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x40d7faf2 drm_gem_shmem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x41d6a288 drm_atomic_get_old_bridge_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x43200a63 drm_mode_create_suggested_offset_properties EXPORT_SYMBOL drivers/gpu/drm/drm 0x4370d5f2 drm_flip_work_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x439363d3 drm_gem_cma_prime_import_sg_table_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x43c544d2 drm_mode_create_hdmi_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x439313db drm_add_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x43e5dd90 drm_mode_duplicate EXPORT_SYMBOL drivers/gpu/drm/drm 0x4403a9c3 drm_mode_get_hv_timing -EXPORT_SYMBOL drivers/gpu/drm/drm 0x44194666 drm_hdmi_avi_infoframe_content_type EXPORT_SYMBOL drivers/gpu/drm/drm 0x44a2cadb drm_prime_sg_to_dma_addr_array +EXPORT_SYMBOL drivers/gpu/drm/drm 0x44b8f0be drm_gem_dmabuf_release EXPORT_SYMBOL drivers/gpu/drm/drm 0x453ed322 drm_vma_offset_manager_destroy EXPORT_SYMBOL drivers/gpu/drm/drm 0x4575a0ca drm_mode_set_crtcinfo -EXPORT_SYMBOL drivers/gpu/drm/drm 0x45fb0307 drm_property_create_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x470b5ea5 drm_crtc_check_viewport -EXPORT_SYMBOL drivers/gpu/drm/drm 0x479fccfe drm_plane_create_scaling_filter_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x47ff8372 drm_crtc_commit_wait -EXPORT_SYMBOL drivers/gpu/drm/drm 0x48fdc1a8 drm_get_edid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x49039ad5 drm_gem_map_dma_buf +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4729a043 drm_framebuffer_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x47ab333a drm_gem_map_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x493c71ad drm_mode_set_config_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a2dc4b8 drm_gem_handle_delete EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a35d30d drm_mode_set_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a60ee77 drm_clflush_pages EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a7d75b0 drm_memcpy_from_wc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b18c0b0 drm_gem_unmap_dma_buf EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b7ebf95 drm_mm_remove_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4bac6b4a drm_file_get_master -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4bca060a drm_master_internal_acquire -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4bcc651d drm_plane_create_zpos_immutable_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4beb49b0 drm_gem_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c3bc366 drm_property_create_bool -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4cbcc5d7 drm_plane_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e083208 __drmm_add_action -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e15ca1f drm_gem_mmap_obj -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4eaa2eab drm_object_attach_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ec11167 drm_crtc_vblank_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d9834c8 drm_client_buffer_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e32ee3a drm_bridge_chain_mode_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e973886 drm_gem_object_lookup EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f18a150 __drm_debug -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f22852d drm_master_internal_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f2a1389 drm_i2c_encoder_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f1ee3ac drm_sysfs_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f50c3cb drm_atomic_set_crtc_for_plane EXPORT_SYMBOL drivers/gpu/drm/drm 0x50674de7 drm_timeout_abs_to_jiffies +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5096610a drm_gem_shmem_purge_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50cd54ca drm_dev_has_vblank EXPORT_SYMBOL drivers/gpu/drm/drm 0x513072fe __drm_puts_seq_file -EXPORT_SYMBOL drivers/gpu/drm/drm 0x517274d6 drm_connector_set_vrr_capable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x514e5159 drm_gem_prime_fd_to_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0x51b432ac drm_plane_cleanup EXPORT_SYMBOL drivers/gpu/drm/drm 0x521ad6d0 drm_puts -EXPORT_SYMBOL drivers/gpu/drm/drm 0x541869eb drm_connector_set_tile_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x553498f3 drm_put_dev -EXPORT_SYMBOL drivers/gpu/drm/drm 0x55559f6a drm_bridge_chain_pre_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x56e06090 drm_gem_lock_reservations -EXPORT_SYMBOL drivers/gpu/drm/drm 0x56f54936 drm_atomic_state_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x57015bf6 drm_dev_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x534469a6 drm_connector_list_iter_next +EXPORT_SYMBOL drivers/gpu/drm/drm 0x55d4ef4f drm_property_blob_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x55f7e9d3 drm_mode_put_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x572f33b1 drm_gem_shmem_pin 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 0x5816ed9b drm_gem_dmabuf_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x58f52136 drm_client_modeset_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm 0x581ddc5e drm_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x585d24d6 drm_gem_shmem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x58a57746 drm_connector_attach_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x58f09d36 drm_mode_create_content_type_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x58fcad90 of_drm_find_panel EXPORT_SYMBOL drivers/gpu/drm/drm 0x59056243 drm_mm_replace_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5917d14b drm_property_replace_global_blob EXPORT_SYMBOL drivers/gpu/drm/drm 0x596ccb5f drm_vma_node_is_allowed EXPORT_SYMBOL drivers/gpu/drm/drm 0x599dea05 drm_edid_is_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x59aab007 drm_send_event_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x59b3f0f4 drm_bridge_chain_mode_fixup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x59fd8f5d drm_calc_timestamping_constants -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5a2e7b19 drm_connector_set_panel_orientation_with_quirk -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5ab66aac drm_bridge_attach -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5b023ff8 drm_crtc_send_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5b3854d6 drm_gem_dma_resv_wait -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5b4f2a6b drm_gem_create_mmap_offset_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5b6e8e1b drm_gem_handle_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c593a79 drm_crtc_vblank_helper_get_vblank_timestamp -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c729f7c drm_mode_is_420_only -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c89e0c4 __drm_atomic_helper_disable_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c9e273e drm_object_property_set_value -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d55629e drm_get_edid_switcheroo -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5dab5633 drm_color_lut_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0x599fc0c4 drm_gem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x59a6e660 drm_atomic_add_encoder_bridges +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5acf164a drm_bridge_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5b76f761 drm_i2c_encoder_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c803af0 drm_crtc_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5cd0c257 drm_object_property_get_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d94f526 drm_mode_validate_ycbcr420 +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5de040be drm_gem_prime_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5e1c8191 drm_atomic_normalize_zpos +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5eb74eb3 drm_mode_config_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f180667 drm_framebuffer_unregister_private EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f7985a5 drm_mm_scan_remove_block -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5fceea65 drm_mode_probed_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x60158282 drm_mode_get_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f979b27 drm_mode_object_put EXPORT_SYMBOL drivers/gpu/drm/drm 0x604692c4 drm_vma_offset_manager_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x61a68810 drm_hdmi_avi_infoframe_colorspace -EXPORT_SYMBOL drivers/gpu/drm/drm 0x61d9cbac drm_mode_object_find -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6258d3d2 drm_connector_set_path_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x63635f92 drm_dev_printk -EXPORT_SYMBOL drivers/gpu/drm/drm 0x639150e0 drm_panel_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x63eb6a0f drm_syncobj_find_fence -EXPORT_SYMBOL drivers/gpu/drm/drm 0x648e7cb5 drm_atomic_add_affected_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x61380367 drm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0x617a2df5 drm_gem_vm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6246b27d drm_connector_set_vrr_capable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x62a029d7 drm_master_internal_acquire +EXPORT_SYMBOL drivers/gpu/drm/drm 0x62c6b4cd drm_property_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6329a69c drm_modeset_lock_single_interruptible +EXPORT_SYMBOL drivers/gpu/drm/drm 0x63b3be7e drm_syncobj_get_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0x643c2bc9 drm_i2c_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x649107ea drm_atomic_set_crtc_for_connector EXPORT_SYMBOL drivers/gpu/drm/drm 0x65702bd6 drm_default_rgb_quant_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x65cd6020 drm_connector_set_link_status_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6764ba85 drm_mode_crtc_set_gamma_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0x68a42e14 __drmm_add_action_or_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6622e849 drm_atomic_set_mode_prop_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x66cd3c2b drm_atomic_set_mode_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x675853fa drm_master_internal_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x676a0e52 drm_writeback_queue_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0x681693ba drm_framebuffer_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6835e7de drm_gem_dmabuf_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0x68789b53 drm_wait_one_vblank EXPORT_SYMBOL drivers/gpu/drm/drm 0x6914a422 drm_edid_are_equal -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6969987c drm_crtc_wait_one_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x69bf3e49 drm_debugfs_remove_files -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b222d1c drm_gem_shmem_madvise -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b8cccfc drm_framebuffer_unregister_private -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6c76490e drm_crtc_handle_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6cbb5911 drm_plane_get_damage_clips_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6d817290 drm_writeback_queue_job -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6dfb52cc drm_vblank_work_schedule +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6943943f drm_property_create_bitmask +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6a62634a drm_panel_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6d147db3 drm_mode_create_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6d7de692 drm_mode_validate_driver EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e30ba8e drm_rect_rotate_inv +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e5edf8d drm_prime_sg_to_page_array EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ef2f78e drm_format_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6effd567 drm_modeset_acquire_fini -EXPORT_SYMBOL drivers/gpu/drm/drm 0x70315f06 drm_client_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x714dbb6b drm_gem_shmem_put_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0x71d8af91 drm_cvt_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x72a39e49 drm_print_regset32 +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ef858ca drm_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6f95d9e6 drm_connector_attach_vrr_capable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x703db344 drm_mode_is_420_also +EXPORT_SYMBOL drivers/gpu/drm/drm 0x70fff2aa drm_ioctl_kernel +EXPORT_SYMBOL drivers/gpu/drm/drm 0x71b05ff2 drm_get_edid_switcheroo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x725eaac8 drm_send_event_locked EXPORT_SYMBOL drivers/gpu/drm/drm 0x730d2fcf drm_gem_fence_array_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x733800ba drm_gem_unmap_dma_buf -EXPORT_SYMBOL drivers/gpu/drm/drm 0x74ecf66b drm_gem_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x75ef89c6 drm_atomic_set_fb_for_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0x764eb439 drm_mode_create_tv_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x76e44f9c drm_client_buffer_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x76e9d5e6 drm_gem_put_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0x773a812f drm_dev_set_unique -EXPORT_SYMBOL drivers/gpu/drm/drm 0x77ca1b30 drm_client_framebuffer_delete -EXPORT_SYMBOL drivers/gpu/drm/drm 0x78a63a06 drm_of_component_probe -EXPORT_SYMBOL drivers/gpu/drm/drm 0x79363006 drm_vblank_work_cancel_sync -EXPORT_SYMBOL drivers/gpu/drm/drm 0x794640b9 drm_crtc_accurate_vblank_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0x79579259 drm_plane_create_rotation_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b1c8060 drm_event_reserve_init_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b2c8b02 drm_mode_create_suggested_offset_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7bf26a0f drm_dev_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d44365f drm_hdmi_infoframe_set_hdr_metadata -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e57f9fc drm_gem_prime_import_dev -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7ef010cb drm_prime_sg_to_page_array -EXPORT_SYMBOL drivers/gpu/drm/drm 0x80067a10 drm_modeset_unlock_all -EXPORT_SYMBOL drivers/gpu/drm/drm 0x812c423a drm_connector_attach_dp_subconnector_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x81339e83 drm_hdmi_vendor_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x736c97b2 drm_dev_set_unique +EXPORT_SYMBOL drivers/gpu/drm/drm 0x738c5076 drm_syncobj_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x73aac717 drm_atomic_get_old_connector_for_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x741f6c50 drm_connector_attach_content_type_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7420bdf3 drm_dev_enter +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7482204b drm_atomic_get_new_connector_for_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x75c82700 drm_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm 0x76dc920f drm_plane_create_blend_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7769af6e drm_vblank_work_schedule +EXPORT_SYMBOL drivers/gpu/drm/drm 0x780a407a drm_i2c_encoder_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0x78c2c1f7 drm_gem_dmabuf_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x78e6bb5a drm_warn_on_modeset_not_all_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7a208d03 drm_connector_set_panel_orientation +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b58eacc drm_crtc_vblank_restore +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7bdeeb29 drm_gtf_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c698cde drm_connector_attach_content_protection_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7ca22f60 drm_bridge_chain_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7cb508ed drm_mode_probed_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d7c2a2e drm_crtc_vblank_on +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7dfe4129 drm_i2c_encoder_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e7ee733 drm_connector_atomic_hdr_metadata_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7f73e889 drm_send_event_timestamp_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fa5cad9 drm_mode_is_420_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fe7d5ca drm_connector_set_path_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x801e1d31 drm_client_dev_hotplug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x817d7fbf drm_mode_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x818e63cc drm_framebuffer_lookup EXPORT_SYMBOL drivers/gpu/drm/drm 0x81992424 drm_edid_header_is_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x81d8e663 drm_property_create_object -EXPORT_SYMBOL drivers/gpu/drm/drm 0x823f025f drm_gem_dmabuf_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x82c9a664 drm_connector_set_panel_orientation -EXPORT_SYMBOL drivers/gpu/drm/drm 0x830b660f drm_framebuffer_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x836c28e1 drm_atomic_get_old_private_obj_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8444cfbd drm_atomic_get_new_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x83214265 drm_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x833bf6f3 drm_connector_set_tile_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x83ca2899 drm_modeset_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0x83d7e0a9 drm_add_override_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x84b2ce6b drm_atomic_bridge_chain_disable EXPORT_SYMBOL drivers/gpu/drm/drm 0x8563a554 drm_ht_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x86aedc5e of_drm_get_panel_orientation EXPORT_SYMBOL drivers/gpu/drm/drm 0x871ab41a drm_rect_intersect -EXPORT_SYMBOL drivers/gpu/drm/drm 0x882d4c6e drm_crtc_vblank_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x882fc5c3 drm_gem_objects_lookup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8932ce14 drm_gem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8742dc0d drm_syncobj_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0x881b9791 drm_universal_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x894104c4 drm_noop EXPORT_SYMBOL drivers/gpu/drm/drm 0x8953ee89 drm_vma_offset_lookup_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x89dc777a drm_modeset_lock_all_ctx -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ab7710d drm_warn_on_modeset_not_all_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8af5455d drm_i2c_encoder_mode_set -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8b7ebc4c drm_connector_attach_vrr_capable_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d75eda3 drm_atomic_get_connector_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ddb1dd1 drm_syncobj_find -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8e5914ed drm_add_modes_noedid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8f3e9dcb drm_i2c_encoder_save -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ff48da7 drm_gtf_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8a19668f drm_hdmi_avi_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8b1f1050 drm_file_get_master +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8b6794f9 drm_release_noglobal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c155005 drm_property_create_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c569d2c drm_atomic_private_obj_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d8468d3 drm_property_blob_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d8ac399 drm_aperture_remove_conflicting_framebuffers +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8dcfa4f3 drm_plane_create_zpos_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8e4176f1 drm_connector_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8e5f6601 drm_atomic_state_default_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9006af12 drm_connector_init_with_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x90138cd7 drm_client_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9076de1c drm_gem_fence_array_add_implicit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x919f0613 drm_gem_dmabuf_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x91e54bc7 drm_modeset_lock_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x91eeb700 drm_mode_config_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x91f66d9e drm_crtc_check_viewport EXPORT_SYMBOL drivers/gpu/drm/drm 0x91fec1cc drm_rect_calc_vscale -EXPORT_SYMBOL drivers/gpu/drm/drm 0x92e23681 drm_panel_of_backlight -EXPORT_SYMBOL drivers/gpu/drm/drm 0x931a9b36 __drmm_crtc_alloc_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x927330a0 drm_event_reserve_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x92e79a5a drm_gem_create_mmap_offset_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x930af43d drm_gem_lock_reservations EXPORT_SYMBOL drivers/gpu/drm/drm 0x937787c1 drm_flip_work_queue_task -EXPORT_SYMBOL drivers/gpu/drm/drm 0x955470a5 drm_debugfs_create_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0x93f6b085 drm_hdcp_update_content_protection +EXPORT_SYMBOL drivers/gpu/drm/drm 0x946aefff drm_debugfs_remove_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0x94ba90b5 drm_framebuffer_plane_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0x952320f9 drm_atomic_get_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x959a3c62 drm_crtc_accurate_vblank_count EXPORT_SYMBOL drivers/gpu/drm/drm 0x95dbc76d drm_ht_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x971e1f89 drm_gem_shmem_unpin -EXPORT_SYMBOL drivers/gpu/drm/drm 0x972e13c9 drm_property_create_bitmask -EXPORT_SYMBOL drivers/gpu/drm/drm 0x983d1c05 drm_display_mode_from_cea_vic -EXPORT_SYMBOL drivers/gpu/drm/drm 0x995df5de drm_gem_vm_open -EXPORT_SYMBOL drivers/gpu/drm/drm 0x999b0275 drm_ioctl_kernel +EXPORT_SYMBOL drivers/gpu/drm/drm 0x963a5bfa drm_send_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x973b9f17 drm_mode_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x976f7a68 drm_property_lookup_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x988c7d2f drm_crtc_vblank_helper_get_vblank_timestamp +EXPORT_SYMBOL drivers/gpu/drm/drm 0x99375f88 drm_modeset_lock_all_ctx +EXPORT_SYMBOL drivers/gpu/drm/drm 0x996c8c25 drm_dev_unplug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x998fd6d8 drm_dev_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x99c1e5f2 drm_property_create_blob EXPORT_SYMBOL drivers/gpu/drm/drm 0x99fd20aa drm_rect_clip_scaled -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9a08dbb8 drm_modeset_unlock -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9a9f4972 drm_mode_create_scaling_mode_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9addfd97 drm_crtc_init_with_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ae014fc drm_atomic_bridge_chain_pre_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b13409d drm_connector_attach_hdr_output_metadata_property EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b285573 drm_match_cea_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b39dffc drm_mode_create_dvi_i_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b70c920 drm_atomic_get_new_bridge_state EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b8a53f5 drm_ht_just_insert_please EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b95c885 drm_mode_match -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9bececd3 drm_panel_unprepare -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9bfb199b drm_mode_config_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c79813f drm_i2c_encoder_mode_set EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ce050be drm_mode_copy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9e5b7665 drm_crtc_set_max_vblank_count EXPORT_SYMBOL drivers/gpu/drm/drm 0x9e7e8009 drm_edid_to_sad -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9e961718 drm_property_create_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9e978f1f drm_atomic_set_fence_for_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ed2aa25 drm_mode_create_tv_margin_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9f00319b drm_panel_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9f07444b drm_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9fd97180 drm_av_sync_delay EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ffcdfdb drm_detect_monitor_audio EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0713087 drm_ht_find_item -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa147a7b7 __drm_atomic_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1b08f20 drm_connector_list_iter_next -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa2e53669 drm_connector_attach_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa3443fd6 drm_framebuffer_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa44bf9fb drm_crtc_vblank_count_and_time -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa469e113 drm_gem_private_object_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4fb5eca drm_mode_prune_invalid -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa5ee6d58 drm_gem_prime_export -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa5fe3cac drm_gem_object_lookup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa655bb15 drm_atomic_private_obj_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa753f758 drm_gem_shmem_purge_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa754a6bc drm_atomic_state_default_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa75bad47 drm_poll -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa800db84 drm_send_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa8adae14 drm_gem_map_attach -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa9396a25 drm_ioctl_permit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaa49fbff drm_property_blob_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaa664814 drm_plane_force_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xac89d1ed drm_i2c_encoder_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0xac8f15c9 drm_connector_list_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1d4f524 drm_atomic_get_bridge_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa3e7bc39 drm_plane_create_color_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa3fd06b4 drm_gem_map_dma_buf +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa54c9cd1 drm_writeback_prepare_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa5b8db4a drm_connector_set_link_status_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa63eb1a2 drm_debugfs_create_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa6438c23 __drmm_universal_plane_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa6c60033 drm_client_modeset_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa6ee2cb8 drm_event_cancel_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa7106355 drm_mode_create_from_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa75e0ce9 drm_put_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa8288aa4 of_drm_find_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa8cbbb62 drmm_kmalloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa90d308f drm_crtc_vblank_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaa3dbccd drm_atomic_set_fence_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaa416e49 __drmm_encoder_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xabab5024 drm_panel_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xac50eb54 drm_crtc_vblank_count_and_time +EXPORT_SYMBOL drivers/gpu/drm/drm 0xacac7343 drm_sysfs_connector_status_event EXPORT_SYMBOL drivers/gpu/drm/drm 0xad4e902b drm_color_ctm_s31_32_to_qm_n -EXPORT_SYMBOL drivers/gpu/drm/drm 0xad78cf1c drm_mode_is_420_also EXPORT_SYMBOL drivers/gpu/drm/drm 0xae277372 __drm_crtc_commit_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xae74aadd drm_atomic_bridge_chain_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf647481 drm_atomic_add_affected_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaff1c627 drm_property_add_enum EXPORT_SYMBOL drivers/gpu/drm/drm 0xb053adda drm_rect_rotate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb080d6db drm_bridge_chain_enable EXPORT_SYMBOL drivers/gpu/drm/drm 0xb0b05ff5 drm_clflush_sg EXPORT_SYMBOL drivers/gpu/drm/drm 0xb11ac7a7 __drm_err -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb12693b0 drm_bridge_chain_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb1d6d11b drm_modeset_backoff -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb1f32579 drm_crtc_vblank_reset -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb1f7c393 drm_modeset_lock +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb1dd4b92 drm_dev_get EXPORT_SYMBOL drivers/gpu/drm/drm 0xb22dfd68 drm_format_info_min_pitch +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb2bc5c37 drm_client_modeset_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb2cfce1a drm_gem_free_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb2da5b32 drm_gtf_mode_complex EXPORT_SYMBOL drivers/gpu/drm/drm 0xb387c752 drm_flip_work_queue +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb390cc9d drm_atomic_get_plane_state EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4032484 drm_mm_insert_node_in_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5c0e523 drm_hdcp_update_content_protection +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb492dfab drm_dev_printk +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5f659b4 drm_gem_vmap EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6127243 drm_need_swiotlb -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb66dd81a drm_mode_put_tile_group -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6d43c09 drm_wait_one_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb7b173bf drm_bridge_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb7dbc991 drm_client_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb8a81a42 drm_crtc_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9b000b5 drm_connector_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb682b784 drm_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb7e9cf07 drm_gem_shmem_purge +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb8410180 drm_plane_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9509b26 drm_color_lut_check EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9cad492 __drm_atomic_state_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0xba0af610 drm_object_property_get_value -EXPORT_SYMBOL drivers/gpu/drm/drm 0xba7136cb drm_syncobj_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbb5d2f78 drm_crtc_vblank_restore +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9ddfd8e drm_framebuffer_plane_height +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbb0fb63c drm_panel_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbc21779f drm_dev_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbcdb5b13 drm_mode_create_dp_colorspace_property EXPORT_SYMBOL drivers/gpu/drm/drm 0xbce7b167 drm_vma_offset_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbcec5c1a drmm_kmalloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbeabaada drm_vblank_work_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbeeeaec8 drm_property_blob_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc1b62bcd drm_panel_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc1da3539 drm_sysfs_connector_status_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc243454a drm_gem_fence_array_add_implicit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc2d76f49 drm_syncobj_get_handle -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc2f38350 drm_connector_list_iter_end -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc3a6cd2f drm_panel_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc3cf4e71 drm_atomic_bridge_chain_check -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc435d7ab drm_hdmi_avi_infoframe_from_display_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6825289 drm_atomic_state_clear -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc760d285 drm_master_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc7f4c576 drm_prime_gem_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc854c03e drm_mode_plane_set_obj_prop -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc891a288 drm_probe_ddc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc9338ca7 drm_gem_create_mmap_offset -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc99b3425 drm_dev_has_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbd7c61b2 drm_mode_create_tv_margin_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbef86fcc drm_modeset_lock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbf3368c9 drm_gem_objects_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbf5796ae drm_client_modeset_probe +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc02002dc drm_connector_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc023776a drm_clflush_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc24b373a drm_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc2730d3c drm_property_create_object +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc37179cd drm_crtc_set_max_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc4434da6 drm_gem_dma_resv_wait +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc55fd598 drm_panel_unprepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc5f4d1f5 drm_crtc_vblank_waitqueue +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6397775 drm_atomic_bridge_chain_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6472aaf drm_property_replace_global_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc82f2161 drm_plane_create_zpos_immutable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc92cb446 drm_syncobj_get_handle EXPORT_SYMBOL drivers/gpu/drm/drm 0xca190085 drm_format_info_block_height -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcac62fb5 drm_atomic_state_init EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb2340b8 drm_rect_debug_print -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcbb77b01 drm_client_buffer_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcbd3438a drm_av_sync_delay -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcc4d5207 drm_gem_shmem_create_with_handle -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcca57980 drm_mode_object_get EXPORT_SYMBOL drivers/gpu/drm/drm 0xccc59759 drm_format_info_block_width -EXPORT_SYMBOL drivers/gpu/drm/drm 0xccc923d1 drm_aperture_remove_conflicting_framebuffers -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd1dfa3d __drmm_encoder_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcdec1f8a drm_crtc_arm_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0xce3f5f84 drm_plane_create_alpha_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcea7e222 drm_atomic_bridge_chain_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xced5e2ff drm_atomic_set_mode_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcccaa329 drm_hdmi_avi_infoframe_bars +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcce8a776 __drmm_crtc_alloc_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xce615322 drm_crtc_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xce9a14a6 drm_writeback_cleanup_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0xceb57774 drm_connector_attach_max_bpc_property EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf11a549 drm_flip_work_allocate_task -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf5524f4 drm_gem_prime_fd_to_handle -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf681de5 drm_framebuffer_lookup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcfc9b9b7 drm_gem_handle_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf88d202 drm_gem_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf96fe0b drm_panel_add EXPORT_SYMBOL drivers/gpu/drm/drm 0xd05fda43 drm_prime_get_contiguous_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd0b2617e devm_aperture_acquire_from_firmware -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd1010e8d drm_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd06bb77a drm_vblank_work_cancel_sync +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd09cd32d drm_plane_force_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd0f6f029 drm_atomic_get_old_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd109df42 drm_atomic_commit EXPORT_SYMBOL drivers/gpu/drm/drm 0xd13f9985 drm_edid_block_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd29aaaa5 drm_connector_attach_tv_margin_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd32a7563 drm_mode_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd4951337 drm_atomic_set_crtc_for_connector -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd4c6f118 drm_atomic_get_old_bridge_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd4e15368 drm_event_reserve_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd551fd4f drm_bridge_chain_post_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd5ac011c drm_mode_set_config_internal -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd602f513 drm_master_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd1d0d826 drm_plane_get_damage_clips_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd28c39e9 drm_panel_get_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd30198bb drm_gem_handle_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd457ed3c drm_vblank_work_init EXPORT_SYMBOL drivers/gpu/drm/drm 0xd60baf5a drm_edid_get_monitor_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd63998ab drm_gem_dmabuf_export EXPORT_SYMBOL drivers/gpu/drm/drm 0xd680a377 drm_gem_object_free EXPORT_SYMBOL drivers/gpu/drm/drm 0xd6ab1e03 drm_vma_node_allow -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd74eac3d drm_connector_attach_scaling_mode_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd78d2ee3 drm_atomic_add_affected_connectors -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd78fa388 drm_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd70dc93b drm_gem_vm_close +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7202842 __drm_atomic_helper_disable_plane EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7a9cf42 drm_mode_validate_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd96906c4 drm_i2c_encoder_detect -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd9707b20 drm_modeset_lock_all -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd9bd1c66 drm_crtc_vblank_off -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd9cada76 drm_gem_shmem_pin -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd9d1c747 drm_mode_is_420 -EXPORT_SYMBOL drivers/gpu/drm/drm 0xda038104 drm_plane_create_color_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0xda26dea6 drm_gem_prime_handle_to_fd -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb283e6e drm_modeset_drop_locks -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbd25b6a drm_gem_object_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbdc323d drm_sysfs_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdc3d5490 drm_gem_prime_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd073c3e drm_gtf_mode_complex +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7de1775 drm_atomic_get_new_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd845a334 drm_syncobj_replace_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd88ececf drm_i2c_encoder_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd8cfe0a2 drm_property_create_bool +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd94524c3 drm_mode_create_aspect_ratio_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd9540acc drm_atomic_state_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd9b3ef90 drm_client_buffer_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xda09fddb drm_connector_update_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xda1d740d drm_hdmi_infoframe_set_hdr_metadata +EXPORT_SYMBOL drivers/gpu/drm/drm 0xda253e0f drm_gem_object_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdaec7185 drm_of_component_probe +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb0fd0d9 drm_connector_attach_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdc77b832 drm_client_framebuffer_flush EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd0a2c9c drm_flip_work_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd3652a3 drm_noop -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd39840f drm_add_override_edid_modes -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd7d4ddb drm_gem_free_mmap_offset -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf098968 drm_gem_shmem_purge +EXPORT_SYMBOL drivers/gpu/drm/drm 0xddf242c1 drm_connector_list_iter_begin +EXPORT_SYMBOL drivers/gpu/drm/drm 0xde2c9109 drm_gem_private_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xde9d5654 drm_mode_object_get EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf3f760d drm_mm_scan_color_evict -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf4ba998 drm_mode_parse_command_line_for_connector EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf666902 drm_rotation_simplify -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf9fa566 drm_atomic_nonblocking_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdfef418c drm_release_noglobal -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe1a607f7 drm_aperture_remove_conflicting_pci_framebuffers -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe216cc6e drm_atomic_state_default_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf738311 drm_dev_dbg +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe00c31b5 drm_atomic_nonblocking_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe23942d2 drm_plane_enable_fb_damage_clips +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe252dd6d drm_mode_create_tv_properties EXPORT_SYMBOL drivers/gpu/drm/drm 0xe317082a __drm_printfn_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe3b791c7 drm_framebuffer_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe3cdb1f3 drm_connector_list_iter_begin -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe3e31097 of_drm_find_panel -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe3f7b7bf drm_state_dump -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe434f308 drm_bridge_chain_mode_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe570944d drm_mode_create_aspect_ratio_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe5ffe5b9 drm_is_current_master -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe6fc5a54 drm_connector_atomic_hdr_metadata_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe73e05c9 drm_gem_unlock_reservations +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7848f51 drm_crtc_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7ff20cd drm_prime_pages_to_sg EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8362900 drm_edid_duplicate -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe84c0bfe drm_plane_enable_fb_damage_clips EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8a034df drm_dev_exit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe9480c38 drm_atomic_add_encoder_bridges -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe94c7478 drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8af4364 __devm_drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe90be505 drm_plane_create_alpha_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe9488354 drm_plane_create_scaling_filter_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe9a65968 drm_gem_mmap_obj EXPORT_SYMBOL drivers/gpu/drm/drm 0xea00fe81 __drm_printfn_coredump -EXPORT_SYMBOL drivers/gpu/drm/drm 0xea68ef7e drm_atomic_get_crtc_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0xebb305ad drm_atomic_print_new_state EXPORT_SYMBOL drivers/gpu/drm/drm 0xec12af74 __drm_dbg -EXPORT_SYMBOL drivers/gpu/drm/drm 0xece8218e __drmm_universal_plane_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xed8f862e drm_i2c_encoder_restore -EXPORT_SYMBOL drivers/gpu/drm/drm 0xede4785f drm_atomic_bridge_chain_post_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xee4c1db5 drm_gem_object_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0xef07bc23 drm_mode_create_tile_group -EXPORT_SYMBOL drivers/gpu/drm/drm 0xef16b215 drm_gem_vm_close -EXPORT_SYMBOL drivers/gpu/drm/drm 0xef2d96ab drm_connector_update_edid_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xef9d82f4 drm_gem_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0158c53 drm_client_modeset_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0xed7fb4ad drm_state_dump +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeda7a024 drm_master_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xee194e36 drm_crtc_vblank_helper_get_vblank_timestamp_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0xee4f0699 drm_modeset_acquire_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xef1fbf0a drm_atomic_bridge_chain_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xef6cd206 drm_mode_create_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeff7ebe8 drm_i2c_encoder_restore +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf00792f3 drm_connector_register 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 0xf178324f drmm_mode_config_init EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1b5340a drm_mode_vrefresh -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1fad21c drm_atomic_get_new_connector_for_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf238f79c drm_i2c_encoder_mode_fixup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf29cef35 drm_writeback_connector_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf2b9088e drm_of_crtc_port_mask -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf3150385 drm_plane_create_blend_mode_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf319d98b drm_client_dev_hotplug -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf3a89fe7 drm_plane_get_damage_clips +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1b7bd58 drm_property_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1fd35c7 drm_any_plane_has_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf2246101 drm_display_mode_from_cea_vic +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf273cacc drm_client_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf288b2df drm_writeback_signal_completion +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf2a7f2d7 drm_gem_shmem_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf332d2f8 drm_atomic_state_clear EXPORT_SYMBOL drivers/gpu/drm/drm 0xf406e46a drm_get_connector_type_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf481776a drm_panel_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf48247e7 drm_mode_duplicate -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf5f6365c drm_gem_shmem_print_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf630b520 drm_client_framebuffer_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf67533a0 drm_gem_dmabuf_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf6d23540 drm_atomic_get_old_connector_for_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf71719fc drm_hdmi_avi_infoframe_quant_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf43b413a drm_modeset_acquire_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf477a376 drm_gem_map_detach +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf47afbc0 drm_event_reserve_init_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf4c93788 drm_compat_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf66d3e4c __drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf7ace7c5 drm_hdmi_avi_infoframe_content_type +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf81ec584 drm_connector_attach_hdr_output_metadata_property EXPORT_SYMBOL drivers/gpu/drm/drm 0xf824c7db __drm_printfn_debug -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf99c1930 drm_connector_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfdd48035 drm_atomic_private_obj_fini -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfe5b4647 drm_property_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf8e47fed drm_gem_prime_import_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf918c1d7 drm_of_crtc_port_mask +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfae6e261 drm_hdmi_vendor_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb53ec2f drm_plane_create_rotation_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb9ccf38 drm_object_property_set_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc67bbc5 drm_hdmi_avi_infoframe_quant_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfdcc5981 __drmm_add_action_or_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfe3faa8d drm_dev_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfe8bd64f drm_hdmi_avi_infoframe_colorspace EXPORT_SYMBOL drivers/gpu/drm/drm 0xfeb953b1 __drm_printfn_seq_file EXPORT_SYMBOL drivers/gpu/drm/drm 0xfecc8840 drm_edid_to_speaker_allocation -EXPORT_SYMBOL drivers/gpu/drm/drm 0xff6ec7e3 drm_bridge_chain_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x00732ba9 drm_dp_mst_topology_state_funcs -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0177164d drm_dp_cec_irq -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x017bead8 drm_panel_dp_aux_backlight +EXPORT_SYMBOL drivers/gpu/drm/drm 0xff4e93d4 drm_object_attach_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xff55fa24 drm_gem_prime_import +EXPORT_SYMBOL drivers/gpu/drm/drm 0xffc785a5 drm_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x010a5c12 drm_kms_helper_poll_fini EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x01c4bba9 drm_dp_lttpr_max_link_rate -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x02377f37 drm_gem_cleanup_shadow_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x03e717f1 drm_dp_aux_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x046ea531 drm_dp_stop_crc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0615a535 drm_atomic_helper_bridge_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0225859b drm_dp_read_sink_count +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x023b7bdc drm_atomic_helper_update_legacy_modeset_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0374287e drm_helper_crtc_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x04afcb8c drm_dp_mst_topology_mgr_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x05d920b4 drm_atomic_helper_commit_hw_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x06005cef drm_dp_link_train_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x061a691a drm_dp_read_mst_cap EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x06c49551 drm_dp_dsc_sink_line_buf_depth +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0747f8bf drm_dp_read_lttpr_common_caps +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0770014e drm_dp_send_query_stream_enc_status EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x07a00858 drm_fb_memcpy_dstclip -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x09c61238 drm_atomic_helper_crtc_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0a2d4471 drm_atomic_helper_commit_cleanup_done -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0c272729 drm_simple_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0e395911 drm_dp_send_query_stream_enc_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0eb1f956 drm_atomic_helper_disable_planes_on_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0eb4f3f0 drm_atomic_helper_plane_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0ed7cd41 drm_fb_helper_sys_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0f16966d drm_scdc_set_scrambling -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x10cb19c4 drm_dp_mst_add_affected_dsc_crtcs -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x112d8e2f drm_dp_mst_topology_mgr_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x11565dd8 drm_gem_prepare_shadow_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x12a1b88a drm_atomic_helper_update_legacy_modeset_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x12dd694f drm_fb_helper_set_par -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x13c9da0a drm_atomic_helper_cleanup_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x14102fce drm_fb_helper_setcmap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x154f93c5 __drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x09ad1af0 drm_atomic_helper_page_flip_target +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0a7ba092 drm_atomic_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0c045ba7 drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0cc64f12 drm_atomic_helper_damage_iter_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0d0d3e10 drm_dp_aux_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0e2f7bd1 drm_dp_mst_topology_mgr_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0e5d54e6 drm_dp_start_crc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0ef25737 drm_dp_mst_atomic_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0f09b3ab drm_dp_read_sink_count_cap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0f1f1356 drm_atomic_helper_wait_for_dependencies +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1020e98e drm_dp_get_vc_payload_bw +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x11c8b64b drm_atomic_helper_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1219c67b drm_gem_cleanup_shadow_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x125c8f59 drm_dp_aux_register +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x12a7879b drm_fb_helper_set_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x15af0054 drm_dp_mst_get_vcpi_slots EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1605d0ed drm_dp_lttpr_max_lane_count EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1709ddcf drm_dp_lttpr_link_train_clock_recovery_delay -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x171867f4 drm_atomic_helper_wait_for_vblanks -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x17ad74c2 drm_atomic_helper_wait_for_fences -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x18b2d90b drm_primary_helper_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x19f549c4 drm_atomic_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1a1a8de6 drm_dp_get_phy_test_pattern +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1780b8d4 drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x18d58daf drm_helper_probe_single_connector_modes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x19ad9159 drm_atomic_helper_page_flip EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1a5bf3ca drm_dsc_dp_rc_buffer_size -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1af0fcfa drm_dp_vsc_sdp_log EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1b0a1fdc drm_dp_lttpr_voltage_swing_level_3_supported -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1b8f5a0d drm_fb_helper_check_var -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1d6164ff drm_kms_helper_poll_fini -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1f85fa7f drm_dp_atomic_release_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x21645e27 drm_atomic_helper_check_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x22e18b54 drm_dp_set_phy_test_pattern -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x24494464 drm_atomic_helper_connector_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x24b585e9 drm_edp_backlight_enable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x25b49915 drm_atomic_helper_check -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x26520002 drm_self_refresh_helper_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1ba339b8 drm_dp_pcon_pps_override_buf +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1c587c99 __drm_atomic_helper_plane_state_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1d62661a drm_atomic_helper_commit_duplicated_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1e7c364f drm_primary_helper_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x21a0efd6 drm_primary_helper_funcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x221be639 drm_atomic_helper_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x22732815 drm_atomic_helper_check_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x242e4567 drm_dp_mst_topology_mgr_init EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x26815dbc drm_dp_link_rate_to_bw_code -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x28bacb63 __drm_gem_destroy_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x29c8c09f drm_dp_find_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2d411766 drm_fb_helper_output_poll_changed -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2e41c959 drm_dp_mst_dump_topology -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2e8ca169 drm_dp_downstream_id +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x272dd682 drm_fb_helper_sys_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2762ac5b drm_gem_fb_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x27b842c2 drm_dp_mst_connector_early_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2b37e1ff drm_dp_mst_hpd_irq +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2bc9f289 drm_atomic_helper_damage_merged +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2c327402 drm_lspcon_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2c82d4fa drm_fb_helper_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2c98beca drm_fb_helper_blank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2cfbed1e drm_atomic_helper_crtc_reset EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2fa94ef2 drm_dp_downstream_444_to_420_conversion -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x301d1fe1 drm_dp_dpcd_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3096cfaa drm_atomic_helper_dirtyfb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x303e4c33 drm_atomic_helper_connector_tv_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x30ecf884 drm_dp_dpcd_read_link_status EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3117b63b drm_dp_downstream_max_bpc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x31c4e5e2 drm_atomic_helper_crtc_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x31f33d26 drm_dp_mst_atomic_enable_dsc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x329c0f1d drm_dp_mst_deallocate_vcpi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x353b9f33 drm_dp_pcon_hdmi_frl_link_error_count -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x37637140 drm_atomic_get_mst_topology_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x378c7ef4 drm_fb_helper_fill_info -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x379cdc8b drm_dp_atomic_find_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x31577d57 drm_lspcon_get_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x32e701c1 drm_fb_helper_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3384a697 drm_self_refresh_helper_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x34383ad9 drm_dp_mst_reset_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x34a1bce3 drm_dp_read_desc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x34bb2e34 drm_atomic_helper_check_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x34c7f1c0 __drm_atomic_helper_private_obj_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x38f262f4 drm_dp_atomic_find_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x39272432 drm_fb_helper_init EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x392a838b drm_dp_downstream_max_dotclock +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3966d2ae drm_atomic_helper_disable_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3a274cd9 __drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3a5b0f1d drm_fb_helper_initial_config EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3a8063f3 drm_dp_dsc_sink_supported_input_bpcs -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3aa580bd drm_atomic_helper_update_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3b5abd70 drm_helper_crtc_in_use -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3d56f1ac drm_panel_bridge_connector -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3d84b5c8 drm_dp_mst_topology_mgr_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3f0c2f7f drm_atomic_helper_page_flip -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x417e4251 drm_dp_read_downstream_info -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x420dc3bc drm_kms_helper_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4211c04a drm_lspcon_set_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x42363824 drm_dp_remote_aux_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x42c2699d drm_atomic_helper_bridge_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x434dc48f drm_dp_read_lttpr_common_caps -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x44f74e6f drm_dp_pcon_enc_is_dsc_1_2 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x45033f3a drm_self_refresh_helper_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x45449467 drm_dp_mst_detect_port +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3d62a02c drm_dp_pcon_frl_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3e0f7488 drm_dp_update_payload_part2 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4052d433 drm_fb_helper_set_suspend_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x411d3f5b drm_atomic_helper_shutdown +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x41bdf0db drm_gem_fb_end_cpu_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x41decdff drm_dp_dual_mode_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x41fbb0bc drm_scdc_get_scrambling_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x422b28e4 drm_atomic_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x42b3f016 drm_gem_simple_display_pipe_prepare_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x44300be1 drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x44d50763 drm_gem_reset_shadow_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x452a81a3 drm_dp_pcon_pps_default +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x45b91d13 drm_atomic_helper_async_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4603c416 drm_dp_pcon_dsc_bpp_incr EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4668c9dc drm_dp_downstream_min_tmds_clock -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4683f350 drm_dp_check_act_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x468ba9ca drm_atomic_helper_commit_modeset_enables -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4943246e __drm_atomic_helper_crtc_state_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4aad21a3 drm_dp_mst_atomic_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x46774ea1 drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4794a112 drm_fb_helper_alloc_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x48232524 drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x482b2836 drm_fb_helper_sys_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x483a6da3 drm_scdc_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x49688ab0 drm_dp_dual_mode_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4a5c1b6d drm_self_refresh_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4a87d69a drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4b435d22 drm_atomic_helper_update_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4b597f92 __drm_gem_duplicate_shadow_plane_state EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4bb89424 drm_dp_downstream_max_tmds_clock -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4bb8a3dc drm_dp_cec_register_connector -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4bdc8d4a drm_gem_duplicate_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4c504dfd drm_fb_helper_fini -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4c7651c1 drm_atomic_helper_fake_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4d3cfaf2 drm_dp_mst_topology_mgr_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4ceaba4b __drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4d229add drm_scdc_set_high_tmds_clock_ratio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4dd76e28 drm_panel_bridge_add_typed EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4e41ad5c drm_fb_xrgb8888_to_rgb565 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x53170644 drm_dp_mst_connector_early_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4f1cc670 drm_dp_send_real_edid_checksum +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x504f6cbd drm_dp_aux_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5050bb4b drm_fb_helper_sys_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x510cfc48 drm_helper_mode_fill_fb_struct +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x517b808f drm_dp_atomic_release_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x518ca26e drm_dp_mst_get_port_malloc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x527c74d2 drm_dp_link_train_clock_recovery_delay EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x537b8893 drm_fb_blit_rect_dstclip EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5407ae9e drm_dp_get_dual_mode_type_name -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5409e571 drm_dp_link_train_channel_eq_delay -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x544918ec drm_fb_helper_debug_leave -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x547692e6 drm_atomic_helper_setup_commit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x54eebbc8 drm_dp_read_dpcd_caps -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x574710ef drm_crtc_helper_set_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x578a140d drm_dp_mst_connector_late_register +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x54353cd9 drm_dp_read_downstream_info +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5448e8b3 drm_crtc_helper_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x54d1a414 drm_atomic_helper_prepare_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x56a8fb12 drm_atomic_helper_wait_for_flip_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x571e0102 drm_dp_pcon_convert_rgb_to_ycbcr +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x57d50fcb __drm_atomic_helper_bridge_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x582350ec drm_fb_helper_unregister_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x58261967 drm_dp_mst_topology_mgr_resume EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x582f248e drm_dp_get_adjust_request_pre_emphasis EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x58d8fcaa drm_dsc_pps_payload_pack +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x59f27ed7 drm_dp_pcon_enc_is_dsc_1_2 EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5a4734d1 drm_kms_helper_is_poll_worker -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5aa61017 drm_fb_helper_restore_fbdev_mode_unlocked -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5b06f4ae drm_dp_pcon_dsc_bpp_incr -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5b0f142a drm_atomic_helper_commit_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5b10bd47 __drm_gem_reset_shadow_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5b21ba0e drm_dp_dpcd_read_phy_link_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5bac9e2c drm_mode_config_helper_resume -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5c18138e drm_fb_helper_ioctl -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5c845ea3 drm_dp_dual_mode_detect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5df3fc1c drm_gem_fb_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5e799020 drm_dp_dual_mode_set_tmds_output -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5ff4312f drm_dp_aux_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x636b4e47 drm_gem_fb_begin_cpu_access -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x645cd7fe drm_fb_helper_lastclose -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6468e810 drm_dp_dpcd_read_link_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5b67693a drm_fb_helper_debug_leave +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5bff0b3d drm_self_refresh_helper_update_avg_times +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5d076c28 drm_gem_prepare_shadow_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5d0ca61d drm_dp_pcon_hdmi_link_active +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5de74854 __drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5e0883da drm_dp_remote_aux_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5e0e0de1 drm_edp_backlight_set_level +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5f1f9332 drm_dp_set_phy_test_pattern +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5f8edbb2 drm_dp_pcon_frl_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x60853f3f drm_atomic_helper_bridge_propagate_bus_fmt +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x60dd5b60 drm_dp_update_payload_part1 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6327eb0b drm_dp_vsc_sdp_log +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6378e2bd __drm_atomic_helper_bridge_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x640501d5 drm_fb_helper_cfb_fillrect EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x648d953b drm_dsc_dp_pps_header_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x655652ee drm_atomic_helper_connector_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x65e5a098 drm_fb_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x64c80af4 drm_gem_simple_kms_duplicate_shadow_plane_state EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6615069e drm_dp_dsc_sink_max_slice_count -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x670cf2b3 drm_dp_mst_topology_mgr_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x699ab736 drm_dp_pcon_frl_configure_1 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6a739ec2 drm_dp_link_train_clock_recovery_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6643c0e3 drm_fb_helper_sys_write EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6b5c2b06 drm_atomic_helper_damage_iter_next -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6c6370cb drm_fb_helper_set_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6d48b796 drm_dp_pcon_frl_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6e37c5e6 drm_fb_helper_set_suspend_unlocked -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6f1a9fca __drm_atomic_helper_private_obj_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6fabcfac drm_helper_encoder_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6d63f1f1 drm_mode_config_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6e378c96 drm_dp_read_dpcd_caps +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6fe051a1 drm_dp_dual_mode_detect EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7053fa72 drm_dp_get_pcon_max_frl_bw -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x70a348e2 drm_atomic_helper_commit_tail_rpm +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x709f551c drm_dp_get_phy_test_pattern +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x72d33e9c drm_dp_dpcd_read EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x73011db0 drm_dp_bw_code_to_link_rate -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x750d083c drm_atomic_helper_disable_all -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x75ce42ff drm_helper_force_disable_all -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x762b8c58 drm_gem_simple_kms_prepare_shadow_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x745d4b8b drm_gem_duplicate_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x747dfa35 drm_simple_display_pipe_attach_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7502e6c2 __drmm_simple_encoder_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x752f4313 drm_atomic_helper_commit_cleanup_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7563a368 drm_atomic_helper_commit_tail_rpm +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x76a35ce3 drm_gem_simple_kms_destroy_shadow_plane_state EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x76ff6644 drm_dp_lttpr_pre_emphasis_level_3_supported -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7726d2a1 drm_dp_send_real_edid_checksum -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7753d9f2 drm_dp_read_sink_count_cap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x79028cbf drm_kms_helper_poll_enable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7950db03 drm_scdc_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x79a37dcc drm_dp_pcon_pps_default -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x79b5ccd6 drm_scdc_get_scrambling_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x774f89ab drm_atomic_helper_commit_modeset_enables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x775fbf59 drm_helper_move_panel_connectors_to_head +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7781cd62 drm_fb_helper_output_poll_changed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x785d0f14 drm_kms_helper_poll_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x786729ba drm_atomic_helper_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x794670d5 drm_dp_cec_irq +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x79eaa919 drm_gem_fb_vmap EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7ae669d0 drm_fb_xrgb8888_to_gray8 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7aff5bab drm_gem_fb_create_handle -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7d433458 drm_kms_helper_poll_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7d670573 drm_panel_bridge_add_typed -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7dbc54f5 drm_fb_helper_sys_imageblit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8252f75c drm_atomic_helper_connector_tv_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x82c49d79 drm_dp_update_payload_part2 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7be46451 drm_atomic_helper_commit_tail +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7d964e49 drm_dp_mst_allocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7e44868e drm_dp_mst_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7f9c5481 drm_dp_dpcd_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x810936c0 drm_kms_helper_poll_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x810ca63a drm_dp_mst_connector_late_register +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8164dcf9 drm_dp_mst_topology_mgr_set_mst +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x83224af9 drm_dp_mst_dump_topology EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x838a8fa0 drm_fb_memcpy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x84b80acd drm_dp_pcon_pps_override_param -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x869ab699 drm_dp_downstream_debug -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8767c386 drm_helper_resume_force_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8801b22a drm_dp_mst_get_edid -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x885be578 drm_fb_helper_initial_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x83fa9a89 __drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8402146f drm_fbdev_generic_setup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x84fe1c06 drm_fb_helper_lastclose +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x853bceec drm_fb_helper_deferred_io +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x856f58df drm_fb_helper_cfb_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x857a88c1 drm_gem_destroy_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x85c305df drm_atomic_get_mst_topology_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8656f6cf drm_panel_bridge_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x86af0c26 drm_atomic_helper_commit_modeset_disables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x86bf5cd9 drm_dp_mst_detect_port +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x87214e95 __drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x879575be drm_atomic_helper_fake_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x87d95a18 drm_dp_pcon_pps_override_param +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x87f78d08 drm_dp_cec_unregister_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x89027eaa drm_dp_stop_crc EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x894b1f57 drm_dp_get_adjust_request_post_cursor EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x89d100ba drm_fb_xrgb8888_to_rgb888_dstclip -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8a0a4230 drm_atomic_helper_async_check -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8ac5d84d __drm_atomic_helper_connector_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8c21fe90 drm_dp_cec_unregister_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8ac21671 drm_dp_find_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8aefbeed drm_gem_simple_kms_cleanup_shadow_fb EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8ca2d9e4 drm_dp_calc_pbn_mode EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8d701329 drm_dp_clock_recovery_ok -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8ef3457b drm_dp_mst_put_port_malloc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x91983001 drm_dp_read_mst_cap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x91e5ad89 drm_crtc_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x925c9d9d drm_dp_pcon_is_frl_ready -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x932af104 drm_atomic_helper_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x93a047ed drm_gem_simple_kms_reset_shadow_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x944ee0e4 drm_dp_set_subconnector_property -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x97299c45 drm_atomic_helper_commit_modeset_disables -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x977b779e drm_dp_read_sink_count -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x983fe6a1 drm_gem_destroy_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9a6fc48e drm_atomic_helper_plane_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9a75f1c3 drm_atomic_helper_swap_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9a7b0a86 __drm_atomic_helper_crtc_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9b7e9752 drm_dp_mst_reset_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9e7cb27b drm_dp_pcon_frl_configure_2 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9f77e2f2 drm_atomic_helper_commit_planes_on_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9fe8b71c drm_dp_start_crc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa042d897 drm_fb_helper_debug_enter -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa1298e06 drm_self_refresh_helper_update_avg_times -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa15b1ea5 drm_fb_helper_cfb_imageblit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa1e7fcd5 drm_dp_mst_topology_mgr_set_mst +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8db6cf43 drm_atomic_helper_async_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x90c86cd7 drm_dp_downstream_debug +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x927dfc9e drm_panel_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x93c673c3 drm_dp_pcon_hdmi_frl_link_error_count +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9649864e __drm_atomic_helper_crtc_state_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x96f8e8e7 devm_drm_panel_bridge_add_typed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x97a49928 drm_dp_downstream_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x98819e5e drm_edp_backlight_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x98db5f88 drm_dp_lttpr_link_train_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9971a2a8 drm_dp_pcon_frl_configure_2 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9a07d9d7 drm_atomic_helper_check_plane_damage +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9a2882d1 drm_dp_dual_mode_get_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9a842a24 __drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9abbca72 __drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9bc81f0c drm_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9c4fa571 drm_dp_mst_topology_state_funcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9e5fb7f5 __drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9f4b9eec drm_helper_probe_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9f509532 __drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa187280d drm_gem_simple_kms_reset_shadow_plane EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa1fefe6a drm_dp_psr_setup_time -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa26b8e5b drm_dp_pcon_reset_frl_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa2c4f77d drm_atomic_helper_disable_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa2d7c504 drm_atomic_helper_check_plane_damage -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa5321db6 drm_dp_mst_get_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa551f53f drm_dp_send_power_updown_phy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa58bdfb6 drm_edp_backlight_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa770d3eb drm_fb_helper_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa825d904 drm_gem_simple_kms_duplicate_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xab64e0e2 __drm_atomic_helper_bridge_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaba06363 __drm_atomic_helper_crtc_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xade4c4a6 drm_atomic_helper_crtc_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xae787136 drm_dp_pcon_hdmi_link_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaf24d449 drm_dp_read_lttpr_phy_caps +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa267dc54 drm_dp_cec_register_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa2c51e60 drm_self_refresh_helper_alter_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa373fb2b drm_fb_helper_pan_display +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa7e50256 drm_dp_send_power_updown_phy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa7f4ec52 drm_dp_dual_mode_max_tmds_clock +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa99e9121 drm_edp_backlight_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xab1f28b0 drm_fb_helper_check_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xae37bd83 drm_atomic_helper_commit_planes_on_crtc EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaf267620 drm_dp_lttpr_count -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb0dce30a drm_atomic_helper_commit_tail -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb15390a1 drm_atomic_helper_prepare_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb29c9b62 drm_dp_mst_hpd_irq -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb2c4a39a drm_scdc_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb3dc2b22 __drm_atomic_helper_connector_state_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb49dc399 drm_dp_dual_mode_max_tmds_clock -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb4d8c719 __drm_atomic_helper_crtc_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb50e5bb7 drm_atomic_helper_wait_for_dependencies -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb5a21d69 drm_mode_config_helper_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb5e75f79 drm_dp_pcon_convert_rgb_to_ycbcr -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb628612a drm_atomic_helper_check_modeset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb661380c drm_dp_dual_mode_get_tmds_output -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb7c2a277 drm_edp_backlight_set_level -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb8a565ba drm_fb_helper_blank -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb8ccdda1 drm_self_refresh_helper_alter_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb9a2dfad __drm_atomic_helper_connector_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbc31e486 drm_dp_aux_register -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbc6b63c5 drm_helper_probe_single_connector_modes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbdcc9b18 __drm_atomic_helper_connector_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc0d85a53 drm_helper_disable_unused_functions -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc13649eb drm_dp_mst_get_port_malloc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc1b0e7a6 drm_atomic_helper_bridge_propagate_bus_fmt -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc25f5a22 drm_helper_mode_fill_fb_struct -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc3e4b073 drm_fb_helper_alloc_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc492b453 devm_drm_panel_bridge_add_typed -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc4bdf1e4 __drm_atomic_helper_bridge_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc4da7655 __drm_atomic_helper_plane_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc5662e17 drm_fb_helper_unregister_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb04de0ab drm_helper_disable_unused_functions +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb26fed97 drm_atomic_helper_wait_for_fences +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb2f1c5fc drm_panel_dp_aux_backlight +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb5ff9d5a drm_kms_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb6948f16 drm_dp_mst_atomic_enable_dsc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb6ef00cf drm_fb_helper_debug_enter +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb7bab5d9 drm_helper_hpd_irq_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb7d9a0ba drm_dp_mst_deallocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb8d04e9a drm_atomic_helper_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbba05a15 drm_atomic_helper_check_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbd317fdc drm_dp_dual_mode_set_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbfe020a1 drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbfe3faa5 drm_atomic_helper_bridge_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc020c0c1 drm_dp_pcon_dsc_max_slice_width +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc0c100c3 drm_simple_display_pipe_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc17493ce drm_fb_helper_setcmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc1ceae42 __drm_gem_reset_shadow_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc37c8367 drm_kms_helper_poll_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc44ae279 drm_atomic_helper_dirtyfb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc4cfb0db drm_dp_pcon_reset_frl_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc56c12c1 drm_crtc_helper_set_config EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc5c99a79 drm_dp_get_adjust_request_voltage -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc7783e73 drm_atomic_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc6766366 drm_fb_helper_fill_info +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc713478d drm_dp_pcon_frl_configure_1 EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc79ecffb drm_dp_downstream_is_type EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc85e28e8 drm_fb_xrgb8888_to_rgb565_dstclip -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc87c0147 drm_fbdev_generic_setup -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc9247df4 drm_helper_probe_detect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc945276f drm_atomic_helper_shutdown -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc9ad238a drm_dp_lttpr_link_train_channel_eq_delay -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc9f4bf85 drm_gem_fb_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xca5482bb drm_atomic_helper_commit_duplicated_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcb149cf7 drm_crtc_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcb3e553a drm_dp_get_vc_payload_bw -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcbbe3ff6 drm_helper_connector_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcd4edf69 drm_fb_helper_sys_copyarea -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcd8e1166 __drm_atomic_helper_plane_state_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcdf508b1 drm_dp_pcon_hdmi_link_active -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xce5c15e8 drm_dp_dual_mode_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcf9ce547 drm_gem_simple_kms_cleanup_shadow_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc92f2691 drm_atomic_helper_bridge_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcad6c12f drm_dp_mst_add_affected_dsc_crtcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcba46707 drm_panel_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcc183581 drm_atomic_helper_cleanup_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcd347399 drm_dp_pcon_hdmi_link_mode EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd2b0c7e6 drm_dp_downstream_is_tmds -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd33b3095 drm_panel_bridge_add -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd3b44552 __drm_atomic_helper_plane_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd46b8c29 drm_dp_cec_unset_edid +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd33c3553 drm_helper_encoder_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd403fbf6 drm_dp_cec_set_edid +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd41776a8 drm_atomic_helper_wait_for_vblanks EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd4983d85 drm_fb_swab -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd4f79164 drm_fb_helper_cfb_fillrect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd6d59f6f drm_gem_fb_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd858ee7e drm_primary_helper_funcs -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd9d7dc4b drm_atomic_helper_check_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xda2dc4bf drm_fb_helper_pan_display -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdb3d0fde drm_atomic_helper_resume -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdb842a96 drm_atomic_helper_commit_hw_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd5458585 drm_fb_helper_sys_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd5bae65e drm_atomic_helper_bridge_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd5dab150 drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd625a7c4 drm_dp_downstream_id +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd7c0db93 drm_dp_read_lttpr_phy_caps +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xda176553 drm_dp_check_act_status EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdbc3c128 drm_fb_blit_dstclip -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdc10d14b drm_atomic_helper_bridge_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdd25f079 drm_dp_pcon_dsc_max_slice_width -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xddd4b591 drm_dp_dual_mode_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xde5e84f5 drm_panel_bridge_remove -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdeb2109a drm_dp_mst_allocate_vcpi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdec77906 drm_atomic_helper_connector_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe013aacc drm_gem_simple_display_pipe_prepare_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe0dbd122 drm_scdc_set_high_tmds_clock_ratio -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe1143bf5 drm_dp_pcon_pps_override_buf -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe14f39f6 drm_atomic_helper_calc_timestamping_constants -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe1fcf654 drm_fb_helper_cfb_copyarea -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe21031f4 drm_atomic_helper_damage_iter_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe295c969 drm_helper_move_panel_connectors_to_head -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe2ab3865 drm_lspcon_get_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe44d030b drm_fb_helper_deferred_io -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe54d447d drm_dp_read_desc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe6e183f5 drm_dp_cec_set_edid -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe82752b6 __drm_gem_duplicate_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe8be9396 __drmm_simple_encoder_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe90b8517 drm_fb_helper_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe9f784ba drm_dp_update_payload_part1 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xea8e7ff2 drm_dp_mst_dsc_aux_for_port -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xec0d5eba drm_atomic_helper_page_flip_target -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xec7f80de drm_gem_simple_kms_destroy_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdc5bcd72 drm_dp_mst_dsc_aux_for_port +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdd8d4fdc drm_gem_simple_kms_prepare_shadow_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xde6c10f7 drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xde892dbb drm_dp_set_subconnector_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xded6e34c drm_crtc_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe0b9dd6d drm_mode_config_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe17dc6f6 devm_drm_panel_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe384678c drm_gem_fb_begin_cpu_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe4722c8c drm_gem_fb_create_handle +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe47d07ee drm_fb_helper_restore_fbdev_mode_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe5360b84 drm_dp_pcon_dsc_max_slices +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe5fe56b2 drm_simple_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe65ef15e drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe6b5d701 drm_atomic_helper_commit_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe6c69b58 drm_scdc_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe7be0ef3 drm_atomic_helper_setup_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe7fb960b drm_atomic_helper_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe86b19af drm_gem_fb_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe9077d06 drm_fb_helper_set_par +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe91f10f3 drm_dp_pcon_is_frl_ready EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xedcf81ce drm_dp_channel_eq_ok -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xedff1424 drm_atomic_helper_async_commit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf02fdfbf drm_atomic_helper_damage_merged -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf04e5155 devm_drm_panel_bridge_add -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf3d9e9f0 drm_edp_backlight_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf4382ce3 drm_atomic_helper_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf04a3057 drm_helper_resume_force_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf1188cbf drm_atomic_helper_swap_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf280f57a __drm_atomic_helper_connector_state_reset EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf68741fb drm_dp_subconnector_type EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf689ad25 drm_dp_downstream_420_passthrough -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf8333b3c drm_dp_pcon_dsc_max_slices -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf845b859 drm_fb_helper_sys_fillrect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf88a1b99 drm_dp_dpcd_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf913569b drm_gem_fb_end_cpu_access -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf952457e drm_kms_helper_poll_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf955de49 drm_fb_helper_sys_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfa281ab1 drm_gem_reset_shadow_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfab84a5f drm_simple_display_pipe_attach_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf692f40f drm_fb_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf7ce955f __drm_gem_destroy_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf81e448e drm_dp_cec_unset_edid +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf96bac66 drm_fb_helper_cfb_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf9e2288a drm_dp_dpcd_read_phy_link_status EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfb1a7a5a drm_dp_downstream_rgb_to_ycbcr_conversion -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfb572401 drm_atomic_helper_wait_for_flip_done -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfcc0c2eb drm_atomic_helper_plane_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfd2f5c6c drm_helper_hpd_irq_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfe05495f drm_dp_downstream_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfdc452fa drm_fb_helper_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfe072c87 drm_helper_force_disable_all EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfe12bcb9 drm_dsc_compute_rc_parameters -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xff6976ca drm_simple_display_pipe_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xffd9255b drm_dp_pcon_frl_enable -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x00ca5450 mipi_dbi_pipe_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x03fe2a70 mipi_dbi_enable_flush -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x0aefc76e mipi_dbi_display_is_on -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x0ef26d30 mipi_dbi_spi_cmd_max_speed -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x2b07878d mipi_dbi_pipe_update -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x3d6b9644 mipi_dbi_dev_init_with_formats -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x473003de mipi_dbi_poweron_conditional_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x5bf5522e mipi_dbi_debugfs_init -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x6703c99b mipi_dbi_spi_init -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x6a830d0f mipi_dbi_command_buf -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x6f08f9a9 mipi_dbi_hw_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x92a1bf75 mipi_dbi_spi_transfer -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x95926dea mipi_dbi_poweron_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xc2bb12bb mipi_dbi_command_read -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xcfaddb66 mipi_dbi_command_stackbuf -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xe41f7f13 mipi_dbi_dev_init -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xf583f188 mipi_dbi_buf_copy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfe556dcf drm_edp_backlight_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xff733bfb drm_dp_mst_put_port_malloc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xffa43a89 drm_scdc_set_scrambling +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x03fa8b6a mipi_dbi_spi_init +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x05eeaeef mipi_dbi_spi_cmd_max_speed +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x1d60e6fd mipi_dbi_display_is_on +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x2e47026d mipi_dbi_pipe_update +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x586aa33d mipi_dbi_pipe_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x59975a10 mipi_dbi_poweron_conditional_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x6f2d9b5e mipi_dbi_poweron_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x7bd9b446 mipi_dbi_dev_init +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xa7c620f2 mipi_dbi_debugfs_init +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xae90c209 mipi_dbi_dev_init_with_formats +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xb18318a4 mipi_dbi_buf_copy +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xb651cff0 mipi_dbi_command_stackbuf +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xbbab1257 mipi_dbi_enable_flush +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xc5f8a006 mipi_dbi_command_buf +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xcaa33fb7 mipi_dbi_spi_transfer +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xcb1cee9f mipi_dbi_command_read +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xcc448524 mipi_dbi_hw_reset EXPORT_SYMBOL drivers/gpu/drm/drm_panel_orientation_quirks 0x2e439142 drm_get_panel_orientation_quirk -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x2060ac66 drm_gem_ttm_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x24609b56 drm_gem_ttm_print_info -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x67c6dc72 drm_gem_ttm_dumb_map_offset -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x89671183 drm_gem_ttm_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x99f91397 drm_gem_ttm_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x35845245 drm_gem_vram_put -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x374a83ad drm_gem_vram_simple_display_pipe_prepare_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x3c5be351 drm_gem_vram_plane_helper_cleanup_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x403c292e drm_gem_vram_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x4a71c47d drm_gem_vram_plane_helper_prepare_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x4cc4022c drm_gem_vram_driver_dumb_create -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x54fcc6bf drm_gem_vram_create -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x5749d946 drm_vram_mm_debugfs_init -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x58cf4ad9 drm_gem_vram_unpin -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x6887852f drm_gem_vram_pin -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x6fbfa38d drm_gem_vram_fill_create_dumb -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x9364993b drm_vram_helper_mode_valid -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x95f3f037 drm_gem_vram_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xc10cf70d drm_gem_vram_simple_display_pipe_cleanup_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xc87f480f drm_gem_vram_offset -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xe2e2a8fd drmm_vram_helper_init -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x03ccaa30 drm_sched_fini -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x0a884838 drm_sched_entity_push_job -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x13b0f34f drm_sched_increase_karma_ext -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x1b9fffd6 drm_sched_fault -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x2ce71dd3 drm_sched_stop -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x42105360 drm_sched_entity_modify_sched -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x6ff34e31 drm_sched_increase_karma -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x74e18b53 drm_sched_resume_timeout -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x796e924e drm_sched_reset_karma -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x7b7a34e3 drm_sched_pick_best -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x7bc74d68 drm_sched_entity_init -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x8b886402 drm_sched_resubmit_jobs_ext -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x8f1cb59f to_drm_sched_fence -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x95be8913 drm_sched_entity_flush -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x9a0abb0b drm_sched_dependency_optimized -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xab089094 drm_sched_entity_set_priority -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xb366c8c3 drm_sched_entity_destroy -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xb4440c85 drm_sched_init -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xbd332e28 drm_sched_suspend_timeout -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xc9e50528 drm_sched_job_init -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xd4ac6ff3 drm_sched_job_cleanup -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xd69e43d6 drm_sched_resubmit_jobs -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xe0e8e378 drm_sched_start -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xee7245a9 drm_sched_entity_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x02977e16 ttm_range_man_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x09a75806 ttm_resource_manager_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0f5dc80e ttm_tt_populate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x10eac495 ttm_bo_mem_space -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x11903972 ttm_device_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x119da2aa ttm_bo_vm_fault_reserved -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x13340fb9 ttm_range_man_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1ae2bd8e ttm_eu_backoff_reservation -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x27f94998 ttm_sg_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x294174ae ttm_bo_vm_access -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2a5df134 ttm_agp_is_bound -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2b0a0e43 ttm_agp_destroy -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2c15c77b ttm_bo_init_reserved -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x321068aa ttm_bo_kunmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x34c8c48e ttm_bo_move_memcpy -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3af4d37a ttm_tt_destroy_common -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5306c88d ttm_bo_move_to_lru_tail -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x57e807a8 ttm_bo_vm_fault -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5b162347 ttm_bo_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x476d6e50 drm_gem_ttm_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x582fb1b5 drm_gem_ttm_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x73a37232 drm_gem_ttm_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x902a8cf1 drm_gem_ttm_dumb_map_offset +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x93d5a50a drm_gem_ttm_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x1a63866f drmm_vram_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x3199bebb drm_gem_vram_fill_create_dumb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x3ceea31c drm_gem_vram_pin +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x43cb1d72 drm_gem_vram_unpin +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x4ed9f3a2 drm_gem_vram_driver_dumb_create +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x4f4b7d68 drm_vram_helper_mode_valid +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x68135536 drm_gem_vram_simple_display_pipe_cleanup_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x76bd97b3 drm_gem_vram_put +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x8283f60a drm_gem_vram_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x880e5280 drm_gem_vram_plane_helper_cleanup_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x8907dd38 drm_vram_mm_debugfs_init +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xaa035a35 drm_gem_vram_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xaa1aa023 drm_gem_vram_create +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xb3320ab6 drm_gem_vram_plane_helper_prepare_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xb4c6ee2b drm_gem_vram_simple_display_pipe_prepare_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xc4850494 drm_gem_vram_offset +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x0099c812 drm_sched_entity_destroy +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x03e1a08e to_drm_sched_fence +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x07f11e8e drm_sched_dependency_optimized +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x21763a82 drm_sched_entity_fini +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x27251f38 drm_sched_job_cleanup +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x2964e36e drm_sched_fini +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x2b06ef09 drm_sched_resubmit_jobs +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x31263a50 drm_sched_entity_modify_sched +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x5f4c46e5 drm_sched_entity_flush +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x6da91da2 drm_sched_entity_push_job +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x726a55a8 drm_sched_resume_timeout +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x7f46d8b3 drm_sched_entity_set_priority +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x8b21fce2 drm_sched_pick_best +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xbd28f00e drm_sched_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xc067d688 drm_sched_increase_karma +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xc0c45c25 drm_sched_start +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xc26e9c44 drm_sched_entity_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xcb5f6a97 drm_sched_stop +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xcb678a0f drm_sched_job_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xcfbd992c drm_sched_suspend_timeout +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xd8a12659 drm_sched_resubmit_jobs_ext +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xe35f41fc drm_sched_reset_karma +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xefad1f89 drm_sched_increase_karma_ext +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xff49236c drm_sched_fault +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x06e03773 ttm_resource_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0ede1e68 ttm_tt_destroy_common +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x19aa8913 ttm_bo_kmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1dbf0422 ttm_bo_vm_access +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1fd4fe6b ttm_agp_destroy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x21b34bec ttm_agp_tt_create +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2be89c95 ttm_agp_bind +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2d44c593 ttm_agp_unbind +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x357c505c ttm_bo_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x40720739 ttm_bo_vm_open +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4282b0da ttm_bo_kunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x44bc54ab ttm_bo_validate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4583a9bb ttm_kmap_iter_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x479561f0 ttm_device_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x47a9af60 ttm_bo_unlock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4cd2b83c ttm_resource_manager_debug +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4e8cd42f ttm_bo_lock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4f353919 ttm_bo_move_accel_cleanup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5546796c ttm_bo_vm_close +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x558af079 ttm_bo_unmap_virtual EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6123fc63 ttm_kmap_iter_iomap_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6ec8a10d ttm_tt_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6f8055cb ttm_agp_unbind -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7a591898 ttm_bo_vm_close -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7b74b9d9 ttm_device_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7c129d13 ttm_bo_unmap_virtual -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7e53bf7c ttm_bo_move_accel_cleanup -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x86471de1 ttm_pool_free -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x87517fba ttm_agp_tt_create -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x89928a3b ttm_agp_bind -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8bf0fa0e ttm_resource_manager_evict_all -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8e505fd2 ttm_bo_vm_reserve -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x91821879 ttm_eu_reserve_buffers -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x951e4f7e ttm_bo_vm_open -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x95b5c346 ttm_move_memcpy -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9bebae72 ttm_bo_wait -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa4b56912 ttm_resource_free -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa620af10 ttm_pool_debugfs -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xaa0f771b ttm_io_prot -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xac75cdf2 ttm_bo_bulk_move_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x61579c75 ttm_pool_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x68f025d6 ttm_pool_alloc +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x69766e14 ttm_eu_fence_buffer_objects +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6b31c899 ttm_eu_backoff_reservation +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6c16b820 ttm_bo_vm_reserve +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x70839e0e ttm_bo_wait +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7271ffaf ttm_bo_vm_fault_reserved +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x76396c87 ttm_bo_vm_dummy_page +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x79e49676 ttm_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7ad708cc ttm_range_man_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7e9e4323 ttm_global_swapout +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7eee73d9 ttm_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7fae9757 ttm_bo_vmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x82966b6a ttm_io_prot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x868b3e65 ttm_bo_put +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9b961ad5 ttm_bo_move_to_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9cae92c8 ttm_bo_eviction_valuable +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa14cdb1b ttm_bo_mem_space +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa6759262 ttm_pool_debugfs +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa8f809f0 ttm_eu_reserve_buffers +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb18b9f54 ttm_device_init EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb753ca08 ttm_bo_mem_compat -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb7fe5c4f ttm_bo_eviction_valuable -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc028a79a ttm_bo_mmap_obj -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc972714b ttm_bo_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcc26e415 ttm_bo_kmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcd6a6869 ttm_global_swapout -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcf1d345b ttm_eu_fence_buffer_objects -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcf969e99 ttm_pool_alloc -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd4274218 ttm_resource_manager_debug -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xde16d06e ttm_glob -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe49735ea ttm_bo_unlock_delayed_workqueue -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe5ef9710 ttm_bo_vm_dummy_page -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe85b6a6d ttm_bo_put -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xea3dee6c ttm_device_swapout -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xeb6b71dd ttm_resource_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf0990e45 ttm_bo_vmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf2bf3b27 ttm_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf70c23cb ttm_bo_validate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf7bc01ac ttm_bo_lock_delayed_workqueue -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfd000acc ttm_kmap_iter_tt_init -EXPORT_SYMBOL drivers/hid/hid 0x3c87bb72 hid_bus_type +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb9c29b50 ttm_resource_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc712ef4a ttm_move_memcpy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcc006223 ttm_resource_manager_evict_all +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcc5da0c8 ttm_bo_move_memcpy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xce960b9e ttm_range_man_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd7a0cd2d ttm_bo_init_reserved +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd9c64b98 ttm_bo_mmap_obj +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd9ef6daf ttm_resource_manager_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdab130d6 ttm_glob +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe050cfbc ttm_agp_is_bound +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe4805f03 ttm_tt_populate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe50931d6 ttm_bo_bulk_move_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xef461987 ttm_device_swapout +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf0d18e3a ttm_bo_vm_fault +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf52e7849 ttm_sg_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfadf29d1 ttm_bo_vunmap +EXPORT_SYMBOL drivers/hid/hid 0xda91e2d9 hid_bus_type EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x2f9e7f8e vid_which_vrm EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x446615bd vid_from_reg -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xa1ab01ee i2c_bit_add_numbered_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xcb9fbf2a i2c_bit_algo -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xee7830b8 i2c_bit_add_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x77593131 i2c_pca_add_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0xf454c2c7 i2c_pca_add_numbered_bus -EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0x3031d0b0 amd756_smbus -EXPORT_SYMBOL drivers/iio/accel/bma400_core 0x04233f5a bma400_probe -EXPORT_SYMBOL drivers/iio/accel/bma400_core 0x1485b9ae bma400_regmap_config -EXPORT_SYMBOL drivers/iio/accel/bma400_core 0xcc60e0f2 bma400_remove -EXPORT_SYMBOL drivers/iio/accel/kxsd9 0x1c4d1b19 kxsd9_dev_pm_ops -EXPORT_SYMBOL drivers/iio/accel/kxsd9 0x5ad7e663 kxsd9_common_probe -EXPORT_SYMBOL drivers/iio/accel/kxsd9 0xaabd6917 kxsd9_common_remove -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x01caebbd mma9551_set_device_state -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x06c18c34 mma9551_write_config_byte -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x093fae4a mma9551_read_config_words -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x17f77ca5 mma9551_read_status_word -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x1bb32d24 mma9551_update_config_bits -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x235b3824 mma9551_read_accel_chan -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x246e47cf mma9551_gpio_config +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x303d1baf i2c_bit_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x9adeee71 i2c_bit_algo +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x9e21ef19 i2c_bit_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x557050eb i2c_pca_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0xbfa4191c i2c_pca_add_bus +EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0xf223cb6a amd756_smbus +EXPORT_SYMBOL drivers/iio/accel/bma400_core 0xb819bacc bma400_regmap_config +EXPORT_SYMBOL drivers/iio/accel/bma400_core 0xee785d75 bma400_remove +EXPORT_SYMBOL drivers/iio/accel/bma400_core 0xfd901297 bma400_probe +EXPORT_SYMBOL drivers/iio/accel/kxsd9 0x7c4e3c56 kxsd9_common_probe +EXPORT_SYMBOL drivers/iio/accel/kxsd9 0xbb154fbd kxsd9_dev_pm_ops +EXPORT_SYMBOL drivers/iio/accel/kxsd9 0xe0d7596f kxsd9_common_remove +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x05ad5244 mma9551_read_status_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x0a5ad0a6 mma9551_read_config_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x12d0767f mma9551_read_version +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x1323fc43 mma9551_write_config_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x27a6a196 mma9551_set_device_state +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x352be18d mma9551_update_config_bits +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x3c1281fb mma9551_set_power_state EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x41ef446c mma9551_read_accel_scale -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x54081aa2 mma9551_read_version -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x68a92af7 mma9551_read_status_byte -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x811ea82d mma9551_read_config_word -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x88d52cbd mma9551_read_config_byte -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x9b946a3a mma9551_write_config_word -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xafd2a68c mma9551_write_config_words -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xb7344102 mma9551_set_power_state +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x49677a8b mma9551_gpio_config +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x522703c0 mma9551_app_reset +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x66a8fab5 mma9551_write_config_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x688b1110 mma9551_read_config_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x76cf55b8 mma9551_read_status_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x947497e6 mma9551_read_accel_chan +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x9c774dec mma9551_write_config_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xbbe74cf9 mma9551_read_status_word EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xbcd7fe96 mma9551_sleep -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xd5402b96 mma9551_read_status_words -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xe2df7dd4 mma9551_app_reset -EXPORT_SYMBOL drivers/iio/accel/st_accel 0x3230d4d4 st_accel_get_settings -EXPORT_SYMBOL drivers/iio/accel/st_accel 0x7db4dbf4 st_accel_common_remove -EXPORT_SYMBOL drivers/iio/accel/st_accel 0xdce16df8 st_accel_common_probe +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xcc6647df mma9551_read_config_byte +EXPORT_SYMBOL drivers/iio/accel/st_accel 0x2c71adb0 st_accel_common_probe +EXPORT_SYMBOL drivers/iio/accel/st_accel 0x93d36220 st_accel_common_remove +EXPORT_SYMBOL drivers/iio/accel/st_accel 0xa3396e0a st_accel_get_settings EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x10a4c688 qcom_adc5_hw_scale EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x12402a0a qcom_vadc_scale EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x39885d6b qcom_adc_tm5_temp_volt_scale @@ -1116,1203 +1116,1203 @@ 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 0x4dd51812 iio_triggered_buffer_setup_ext -EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0xd3b15b73 iio_triggered_buffer_cleanup -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x1c10f161 iio_kfifo_free -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x94c82520 iio_kfifo_allocate -EXPORT_SYMBOL drivers/iio/chemical/bme680_core 0xd9623525 bme680_regmap_config -EXPORT_SYMBOL drivers/iio/chemical/scd30_core 0x7a161699 scd30_suspend -EXPORT_SYMBOL drivers/iio/chemical/scd30_core 0xdcc1c0d5 scd30_resume -EXPORT_SYMBOL drivers/iio/chemical/scd30_core 0xf7a464ba scd30_probe +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0x4529f33d iio_triggered_buffer_cleanup +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0x8498924d iio_triggered_buffer_setup_ext +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x5d34bd96 iio_kfifo_allocate +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xd7bf6493 iio_kfifo_free +EXPORT_SYMBOL drivers/iio/chemical/bme680_core 0x7c11d3bc bme680_regmap_config +EXPORT_SYMBOL drivers/iio/chemical/scd30_core 0x1a7acea3 scd30_resume +EXPORT_SYMBOL drivers/iio/chemical/scd30_core 0xacd5f1d4 scd30_probe +EXPORT_SYMBOL drivers/iio/chemical/scd30_core 0xf8529b67 scd30_suspend EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x045688dd ms_sensors_read_prom_word -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x17dc267e ms_sensors_ht_read_temperature -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x1858a299 ms_sensors_tp_read_prom +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x13004548 ms_sensors_ht_read_temperature +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x191c6ccf ms_sensors_show_heater EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x2d2f5cd5 ms_sensors_reset -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x31ae72d6 ms_sensors_read_serial +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x3754e5aa ms_sensors_write_resolution +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x3c97934a ms_sensors_read_temp_and_pressure EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x42b6a050 ms_sensors_convert_and_read -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x7fdafd29 ms_sensors_show_heater -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x898b4106 ms_sensors_write_resolution -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xaa5c370d ms_sensors_show_battery_low -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xb2e3aff8 ms_sensors_write_heater -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xd0b24d87 ms_sensors_read_temp_and_pressure -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xd8d29263 ms_sensors_ht_read_humidity -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x0c0ad49b ssp_get_sensor_delay -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x130a1702 ssp_enable_sensor -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x1bb6f597 ssp_change_delay -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x462dcb28 ssp_disable_sensor -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x703f7f34 ssp_register_consumer -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x6cabb1e6 ssp_common_buffer_postenable -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x7e8da220 ssp_common_process_data -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x91513d10 ssp_common_buffer_postdisable +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x67b929ad ms_sensors_tp_read_prom +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x6e36da4c ms_sensors_ht_read_humidity +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x9ff04cb2 ms_sensors_show_battery_low +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xd1b346be ms_sensors_read_serial +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xe768ff0c ms_sensors_write_heater +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x4af6ea59 ssp_enable_sensor +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x79507ccf ssp_get_sensor_delay +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xbb7b0aee ssp_disable_sensor +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xc436eb84 ssp_register_consumer +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xc52751b0 ssp_change_delay +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x199a900a ssp_common_process_data +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x4b45196d ssp_common_buffer_postdisable +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x531144ab ssp_common_buffer_postenable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x02eb6848 st_sensors_power_disable EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x074d7047 st_sensors_trigger_handler -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x0b85fef6 st_sensors_validate_device -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x0df040d9 st_sensors_set_odr -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x104b29ef st_sensors_sysfs_sampling_frequency_avail -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x2f77350b st_sensors_sysfs_scale_avail -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x3c92099b st_sensors_deallocate_trigger -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x5bdf544b st_sensors_verify_id -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x6515623d st_sensors_set_axis_enable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x6ad0a67b st_sensors_set_fullscale_by_gain -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x7c1f27bb st_sensors_set_enable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x92a674dd st_sensors_power_disable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xa74ba4e0 st_sensors_allocate_trigger -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xacf5e3c7 st_sensors_init_sensor -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xb5ae5b20 st_sensors_dev_name_probe -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xb6847698 st_sensors_debugfs_reg_access -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xc17e1425 st_sensors_power_enable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xca68cad0 st_sensors_read_info_raw -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xd2d36b86 st_sensors_set_dataready_irq -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xe7961c3b st_sensors_get_settings_index -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0x4a2fcdd1 st_sensors_i2c_configure -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_spi 0xc21e9416 st_sensors_spi_configure -EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0xa05ae571 mpu3050_common_remove -EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0xa68f57ad mpu3050_dev_pm_ops -EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0xe9c4db70 mpu3050_common_probe -EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x1d56a9ca st_gyro_common_probe -EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x2d6db582 st_gyro_get_settings -EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0xd099a8b5 st_gyro_common_remove -EXPORT_SYMBOL drivers/iio/humidity/hts221 0x790dbb69 hts221_probe -EXPORT_SYMBOL drivers/iio/humidity/hts221 0xefe665a0 hts221_pm_ops -EXPORT_SYMBOL drivers/iio/imu/adis_lib 0xa025b7d2 adis_debugfs_reg_access -EXPORT_SYMBOL drivers/iio/imu/adis_lib 0xb610dd70 adis_enable_irq -EXPORT_SYMBOL drivers/iio/imu/bmi160/bmi160_core 0x542d66c4 bmi160_regmap_config +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x11c6195f st_sensors_deallocate_trigger +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x2a9ae77f st_sensors_sysfs_sampling_frequency_avail +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x4932ae20 st_sensors_get_settings_index +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x52e4473f st_sensors_dev_name_probe +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x5c8f9981 st_sensors_set_odr +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x6e829c06 st_sensors_allocate_trigger +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x772e44eb st_sensors_power_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x906af9dc st_sensors_sysfs_scale_avail +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xa1b45567 st_sensors_set_fullscale_by_gain +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xb3d37714 st_sensors_set_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xb3e4ad52 st_sensors_set_axis_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xbc7ebdd2 st_sensors_validate_device +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xbe4d85c3 st_sensors_debugfs_reg_access +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xd6a850b0 st_sensors_init_sensor +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xe1bddb4c st_sensors_read_info_raw +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xe44d21d4 st_sensors_verify_id +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xfc6baa9c st_sensors_set_dataready_irq +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0x7afcd944 st_sensors_i2c_configure +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_spi 0x05614b21 st_sensors_spi_configure +EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0x28fff9a7 mpu3050_dev_pm_ops +EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0x6ca84319 mpu3050_common_probe +EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0x9b288bdf mpu3050_common_remove +EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x28e33761 st_gyro_common_remove +EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x3c24d803 st_gyro_common_probe +EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x40bbfccc st_gyro_get_settings +EXPORT_SYMBOL drivers/iio/humidity/hts221 0xde161da2 hts221_probe +EXPORT_SYMBOL drivers/iio/humidity/hts221 0xfb7777db hts221_pm_ops +EXPORT_SYMBOL drivers/iio/imu/adis_lib 0xa8c5cb66 adis_debugfs_reg_access +EXPORT_SYMBOL drivers/iio/imu/adis_lib 0xe39f655c adis_enable_irq EXPORT_SYMBOL drivers/iio/imu/bmi160/bmi160_core 0xca19cfae bmi160_enable_irq -EXPORT_SYMBOL drivers/iio/imu/fxos8700_core 0xe2ea0830 fxos8700_regmap_config -EXPORT_SYMBOL drivers/iio/imu/st_lsm6dsx/st_lsm6dsx 0xeedffa49 st_lsm6dsx_pm_ops -EXPORT_SYMBOL drivers/iio/imu/st_lsm6dsx/st_lsm6dsx 0xf450642e st_lsm6dsx_probe +EXPORT_SYMBOL drivers/iio/imu/bmi160/bmi160_core 0xeb94b71e bmi160_regmap_config +EXPORT_SYMBOL drivers/iio/imu/fxos8700_core 0x0b00db5d fxos8700_regmap_config +EXPORT_SYMBOL drivers/iio/imu/st_lsm6dsx/st_lsm6dsx 0x3fc3c5ec st_lsm6dsx_pm_ops +EXPORT_SYMBOL drivers/iio/imu/st_lsm6dsx/st_lsm6dsx 0x8a413a7c st_lsm6dsx_probe +EXPORT_SYMBOL drivers/iio/industrialio 0x0a7df12e __iio_device_register +EXPORT_SYMBOL drivers/iio/industrialio 0x17fcc340 __iio_trigger_register EXPORT_SYMBOL drivers/iio/industrialio 0x2d6bcdcb iio_trigger_generic_data_rdy_poll -EXPORT_SYMBOL drivers/iio/industrialio 0x3d9dd217 iio_trigger_unregister -EXPORT_SYMBOL drivers/iio/industrialio 0x3ecc323d iio_trigger_notify_done -EXPORT_SYMBOL drivers/iio/industrialio 0x49b178c4 iio_trigger_validate_own_device -EXPORT_SYMBOL drivers/iio/industrialio 0x55187ac3 iio_device_set_clock -EXPORT_SYMBOL drivers/iio/industrialio 0x5b3346d7 iio_trigger_poll_chained -EXPORT_SYMBOL drivers/iio/industrialio 0x6bad4f9d iio_trigger_set_immutable -EXPORT_SYMBOL drivers/iio/industrialio 0x6c9b5b97 iio_device_free -EXPORT_SYMBOL drivers/iio/industrialio 0x6e70bbc1 iio_trigger_free -EXPORT_SYMBOL drivers/iio/industrialio 0x7bfa1153 iio_trigger_poll -EXPORT_SYMBOL drivers/iio/industrialio 0x81f1793e iio_push_event -EXPORT_SYMBOL drivers/iio/industrialio 0x90c82eaf __iio_trigger_register -EXPORT_SYMBOL drivers/iio/industrialio 0x96a7db13 __iio_device_register -EXPORT_SYMBOL drivers/iio/industrialio 0xb55179cf iio_read_const_attr -EXPORT_SYMBOL drivers/iio/industrialio 0xbfacb996 iio_device_alloc -EXPORT_SYMBOL drivers/iio/industrialio 0xd4d655fb iio_buffer_init -EXPORT_SYMBOL drivers/iio/industrialio 0xd7a7085f iio_device_get_clock +EXPORT_SYMBOL drivers/iio/industrialio 0x332ff981 iio_trigger_validate_own_device +EXPORT_SYMBOL drivers/iio/industrialio 0x3c5ef3c1 iio_bus_type +EXPORT_SYMBOL drivers/iio/industrialio 0x3f9e8325 iio_trigger_notify_done +EXPORT_SYMBOL drivers/iio/industrialio 0x55d1b7e0 iio_trigger_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0x5d7357da iio_device_free +EXPORT_SYMBOL drivers/iio/industrialio 0x608a13c9 iio_device_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0x68a52e3f iio_trigger_set_immutable +EXPORT_SYMBOL drivers/iio/industrialio 0x735a42f5 iio_buffer_init +EXPORT_SYMBOL drivers/iio/industrialio 0x86396073 iio_device_get_clock +EXPORT_SYMBOL drivers/iio/industrialio 0x8d8e4b4b iio_get_time_res +EXPORT_SYMBOL drivers/iio/industrialio 0xa38e7dee iio_read_const_attr +EXPORT_SYMBOL drivers/iio/industrialio 0xa6043b85 iio_push_event +EXPORT_SYMBOL drivers/iio/industrialio 0xadfbd438 iio_trigger_using_own +EXPORT_SYMBOL drivers/iio/industrialio 0xb5be166f iio_trigger_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0xbbc57c2f iio_trigger_free +EXPORT_SYMBOL drivers/iio/industrialio 0xbc2247b2 iio_device_set_clock +EXPORT_SYMBOL drivers/iio/industrialio 0xc6d6abd5 iio_get_time_ns +EXPORT_SYMBOL drivers/iio/industrialio 0xce61f516 iio_trigger_poll_chained EXPORT_SYMBOL drivers/iio/industrialio 0xdf76bbeb iio_pollfunc_store_time -EXPORT_SYMBOL drivers/iio/industrialio 0xe653a96a iio_trigger_using_own -EXPORT_SYMBOL drivers/iio/industrialio 0xeb9333a5 iio_get_time_ns -EXPORT_SYMBOL drivers/iio/industrialio 0xebabe2de iio_device_unregister -EXPORT_SYMBOL drivers/iio/industrialio 0xf1747267 iio_bus_type -EXPORT_SYMBOL drivers/iio/industrialio 0xf626c85d iio_trigger_alloc -EXPORT_SYMBOL drivers/iio/industrialio 0xfcb9ff8f iio_get_time_res -EXPORT_SYMBOL drivers/iio/industrialio 0xfd22d1c1 iio_read_mount_matrix -EXPORT_SYMBOL drivers/iio/industrialio-configfs 0xaef99321 iio_configfs_subsys -EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x189d0c09 iio_sw_device_create -EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x8040ec2e iio_unregister_sw_device_type -EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x983cdc6c iio_register_sw_device_type -EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0xf18434ac iio_sw_device_destroy -EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x3993c939 iio_unregister_sw_trigger_type -EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0xba282e1f iio_sw_trigger_create -EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0xc4bf0647 iio_register_sw_trigger_type -EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0xdc6f89a5 iio_sw_trigger_destroy -EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x3aab0818 iio_triggered_event_setup -EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x9e529e09 iio_triggered_event_cleanup -EXPORT_SYMBOL drivers/iio/light/st_uvis25_core 0x0a2ae9e4 st_uvis25_pm_ops -EXPORT_SYMBOL drivers/iio/light/st_uvis25_core 0x96fe3605 st_uvis25_probe -EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0x0bd2b286 bmc150_magn_pm_ops -EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0x4534c5f3 bmc150_magn_probe -EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0x82cf8062 bmc150_magn_remove -EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0xc5145197 bmc150_magn_regmap_config -EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0x5e2fd584 hmc5843_common_resume -EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0x6a9f4c84 hmc5843_common_suspend -EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0x836fac45 hmc5843_common_probe -EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0xb1df9035 hmc5843_common_remove -EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x7e96debd st_magn_common_remove -EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0xbc997e23 st_magn_get_settings -EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0xc34aeb22 st_magn_common_probe -EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x33854d6d bmp280_common_probe -EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x66999976 bmp180_regmap_config -EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x8c1f4414 bmp280_regmap_config -EXPORT_SYMBOL drivers/iio/pressure/bmp280 0xb4580aa7 bmp280_dev_pm_ops -EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0x25551a56 ms5611_probe -EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0xcf84cffd ms5611_remove -EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x3454fe9a st_press_get_settings -EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x8e8c0eaa st_press_common_probe -EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0xf883864f st_press_common_remove -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x0996bc1f ib_cm_notify -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x11d101d2 ib_cm_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x249afea8 ib_send_cm_dreq -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x2ac56b3e ib_send_cm_mra -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x47e4561f ib_send_cm_sidr_req +EXPORT_SYMBOL drivers/iio/industrialio 0xe784262c iio_trigger_poll +EXPORT_SYMBOL drivers/iio/industrialio 0xe97e5cf3 iio_device_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0xf11be9f9 iio_read_mount_matrix +EXPORT_SYMBOL drivers/iio/industrialio-configfs 0x4ad30803 iio_configfs_subsys +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x3cd7764d iio_register_sw_device_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x42b6670e iio_unregister_sw_device_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x96323dd3 iio_sw_device_destroy +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x99a64e7d iio_sw_device_create +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x06ac9043 iio_sw_trigger_create +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x0c9ba1ca iio_register_sw_trigger_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x204faaa2 iio_unregister_sw_trigger_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x8282cb9c iio_sw_trigger_destroy +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x3f828049 iio_triggered_event_cleanup +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0xf9e44e5a iio_triggered_event_setup +EXPORT_SYMBOL drivers/iio/light/st_uvis25_core 0x109bc013 st_uvis25_pm_ops +EXPORT_SYMBOL drivers/iio/light/st_uvis25_core 0x268f8f15 st_uvis25_probe +EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0x316b9f7b bmc150_magn_regmap_config +EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0x85a21c8c bmc150_magn_pm_ops +EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0xc9c1305f bmc150_magn_probe +EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0xcdbaf072 bmc150_magn_remove +EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0x1546115c hmc5843_common_probe +EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0xa7a72a41 hmc5843_common_suspend +EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0xedffd4d0 hmc5843_common_remove +EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0xf2400a28 hmc5843_common_resume +EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0xa6b9ea72 st_magn_common_remove +EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0xd14f376d st_magn_get_settings +EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0xd816329e st_magn_common_probe +EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x65443502 bmp280_dev_pm_ops +EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x7ac6866a bmp180_regmap_config +EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x90405b08 bmp280_regmap_config +EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x98ab8560 bmp280_common_probe +EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0x45e7b810 ms5611_probe +EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0xc308c6cf ms5611_remove +EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x0c8ffc38 st_press_common_probe +EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x70909763 st_press_common_remove +EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0xa55d4444 st_press_get_settings +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x10fb6b41 ib_send_cm_rtu +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x34e0f2fd ib_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x3bbceb6b ib_send_cm_sidr_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x42733fe0 ib_send_cm_rej +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x488215fa ib_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x49fc0922 ib_send_cm_drep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x5abfaa32 ib_send_cm_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x633cec79 ib_cm_init_qp_attr EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x69824a14 ibcm_reject_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x6a22fd98 ib_send_cm_rej -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x6fc1405e ib_send_cm_rtu -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x7b7e8783 ib_create_cm_id -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x94e231cc ib_cm_insert_listen -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x9f41adb9 ib_send_cm_drep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xa65cdb64 ib_destroy_cm_id -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xa693dad8 ib_send_cm_req -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xb0d4d81c ib_send_cm_rep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xb1393623 ib_cm_listen -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xb3dd1be6 ib_send_cm_sidr_rep -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0162dc38 roce_gid_type_mask_support -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x01a0cf2e ib_reg_user_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x022811ef rdma_copy_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x03432cd1 ib_rdmacg_uncharge -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x03795927 rdma_port_get_link_layer -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x07ba8ae0 rdma_get_gid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0919cbad ib_drain_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x09e27a09 ib_mr_pool_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0acb2bbc ib_attach_mcast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0e5dc6fb ib_check_mr_status -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x11126f43 ib_get_vf_guid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x170a0de1 ib_device_get_by_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x70abb012 ib_cm_insert_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x93820421 ib_send_cm_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xa407d06f ib_send_cm_sidr_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xbceca8e1 ib_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xbcf19a4f ib_send_cm_dreq +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xcd0381a3 ib_send_cm_mra +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xed35feb1 ib_cm_notify +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x011ab097 ib_modify_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x039db589 ib_set_device_ops +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x05b72507 rdma_umap_priv_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c7661f1 ib_device_get_by_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0d136f31 rdma_restrack_get_byid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0dbb9078 roce_gid_type_mask_support +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0dfd3305 ib_alloc_xrcd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0e17b87d ib_create_srq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0f048709 ib_drain_rq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0fb23bf2 ibdev_info +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x11a781ab ib_destroy_qp_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1328668f rdma_destroy_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x13e24a8b ib_get_vf_guid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1454c1fc rdma_destroy_ah_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x149c7a69 ibdev_emerg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x164eb09d ib_find_gid EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x184621a4 ib_get_rdma_header_version -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x18529bae rdma_nl_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x18955230 rdma_hold_gid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x18b510a3 ib_open_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x18f7d9dd ib_dealloc_pd_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1a9f2301 ib_get_device_fw_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x18d4458d ib_cq_pool_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x19120843 ib_dispatch_event +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1a26fcb7 rdma_nl_multicast EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1b037462 __rdma_block_iter_start -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1d6a9556 rdma_link_unregister -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1f7c9208 ib_rdmacg_try_charge -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x21a8cf90 rdma_nl_unicast_wait -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x21e15f04 rdma_addr_cancel -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x21ebb1b6 ib_create_qp_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x22178eae rdma_nl_put_driver_u64 -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2295eba9 rdma_put_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1b2cf77e ib_destroy_wq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1dec2adc rdma_read_gid_attr_ndev_rcu +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e293489 _ib_alloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1f650736 rdma_user_mmap_entry_get_pgoff +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2087cd84 rdma_restrack_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2102f784 ib_create_qp_user EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x22f3cf93 ib_pack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2391cf9b rdma_read_gid_hw_context -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x26301070 ib_create_qp_kernel +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x23617992 ib_port_register_client_groups +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x261e27d3 rdma_rw_ctx_post EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x279d853d ib_sa_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x27a4bcf9 rdma_nl_put_driver_u64_hex -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x27b06b64 rdma_link_register -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2a41273b ib_modify_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2c2ddeee ib_get_cached_port_state -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2c757664 ib_dealloc_xrcd_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2c7b2e6d ib_dispatch_event -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2d5081ce ib_port_unregister_client_groups -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2dffd515 ib_cq_pool_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2ea6bdb8 rdma_user_mmap_io -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2fb4ff6a ib_destroy_cq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x27ceda53 ib_free_recv_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x28a1a710 ib_get_eth_speed +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x28dba681 __ib_alloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2bc295fa ib_get_cached_subnet_prefix +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2c0e1258 ib_set_vf_link_state +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2db45124 ib_init_ah_from_mcmember +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2edaaa42 ib_sg_to_pages EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2fc70b9e ib_get_gids_from_rdma_hdr EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x305e5701 rdma_addr_size_kss -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x30ad77ba ib_unregister_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x319824ff rdma_resolve_ip -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3211e38e ib_close_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x324600c4 rdma_create_user_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x354d9b74 ib_find_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x35845fb7 ib_set_vf_guid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x35fdbf21 ib_mr_pool_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3cc6f146 rdma_read_gid_attr_ndev_rcu -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3e519322 ib_alloc_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3e55f655 rdma_rw_mr_factor -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3e779a81 rdma_restrack_get_byid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x310f2ce7 rdma_modify_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x31198c7b rdma_nl_register +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3121c4ff ib_cq_pool_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x323db741 rdma_rw_ctx_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x32493e0a ib_map_mr_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x33ba4b53 ib_device_set_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x34acfac0 ib_rdmacg_try_charge +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3637b407 ib_advise_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x36da6c1c ib_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3a680c96 ibdev_notice +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3a84d4e8 ib_get_device_fw_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3cf303ce ib_dma_virt_map_sg EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3fc2387c ib_ud_header_unpack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x40150967 rdma_rw_ctx_wrs -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x410ed2dc ib_create_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x417798a6 ib_drain_sq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x42df32f1 rdma_find_gid EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x434c5d10 zgid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x440ba242 ib_unregister_device_queued +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x45a841bb ib_create_wq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x45daa658 ib_alloc_mr EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x45fb8985 rdma_nl_chk_listeners -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x48bf20d6 rdma_modify_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4920eb3b ib_drain_sq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4a7d4874 rdma_restrack_add -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4b06a90a ib_get_vf_config -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4d4ec51a rdma_query_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x464d246a ib_mad_kernel_rmpp_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4806d149 rdma_restrack_new +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4a87f215 ib_modify_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4b2487d6 ib_alloc_mr_integrity +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4ced8046 ib_register_mad_agent 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 0x4f59acb2 ib_dereg_mr_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x50fdb1df ib_create_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x519ebadd ibnl_put_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x523e417f ib_query_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x53ab550b ib_close_qp EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x55bb02f3 ib_cache_gid_type_str -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x563c815a rdma_move_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x59f75458 rdma_nl_put_driver_u32_hex -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5a578394 rdma_rw_ctx_signature_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5a80d94e ib_get_net_dev_by_params -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5e4fa573 ib_device_get_by_name -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5f5308e2 ib_dma_virt_map_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x56f786ac ib_get_vf_config +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5aa765b5 rdma_dev_access_netns +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5af06507 ib_open_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5cf4a73d __ib_alloc_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5e9d5996 ib_get_net_dev_by_params +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5f79abd5 ibdev_warn 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 0x6325824b rdma_rw_ctx_post -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x651e522c ib_destroy_srq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x65bfa345 ib_port_sysfs_get_ibdev_kobj -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x671bcbb9 ib_port_immutable_read -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x67c130f7 rdma_query_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x68a56860 ib_free_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6909193d ib_sg_to_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x69a0ae18 ib_detach_mcast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b814ad3 ib_create_srq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x63e03e3b rdma_user_mmap_entry_insert +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6527d072 rdma_nl_put_driver_u32 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x68db2d13 __ib_create_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x69e71cca ib_qp_usecnt_inc EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b958320 ib_ud_ip4_csum -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6d3e278a ib_free_recv_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6e3e4a11 ibdev_warn +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6cd33c22 ib_process_cq_direct +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6d131247 ib_query_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6d9dd5f4 ibdev_crit +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6df1ec43 ib_port_sysfs_get_ibdev_kobj +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6e1e598c ib_set_client_data EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f3614b6 rdma_is_zero_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6fe54a78 ib_get_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x70be28a5 rdma_create_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x71f42eee ib_resize_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6fa2b383 ib_get_rmpp_segment +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6fdfe10e ib_destroy_cq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x703b51f0 ib_sa_guid_info_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x724d71aa rdma_rw_ctx_wrs +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x73464f9f rdma_find_gid_by_port EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x73baf9a2 ib_modify_qp_is_ok -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x74777c16 rdma_nl_register +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x74c0415f ib_sa_get_mcmember_rec EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x75a729a0 rdma_nl_unregister -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x76326b17 rdma_restrack_parent_name -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x76991240 ib_device_set_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x785e1a90 ib_advise_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7730179f ibnl_put_msg EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x787ccc4c ib_get_mad_data_offset -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7a943e32 ib_unregister_event_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7aace19d ib_mr_pool_destroy -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7b4cdb0f ib_process_cq_direct -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7bd480b4 rdma_user_mmap_entry_get_pgoff -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7c216e5a rdma_nl_put_driver_string -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7cd647ab rdma_alloc_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8412e1a8 ib_create_wq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x846b4e01 ib_create_qp_security -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x851ce17a ibdev_emerg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x78d9d662 rdma_restrack_count +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x793b44fd ib_find_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x79e8dc61 ib_dealloc_pd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7b6545f5 ib_modify_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7bf2341c rdma_move_grh_sgid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7c1d54cc ib_qp_usecnt_dec +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7c9de533 rdma_rw_ctx_destroy_signature +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7f4e0c79 ib_init_ah_attr_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7f63a0ae rdma_init_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7f79409e rdma_read_gid_l2_fields +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8094a401 rdma_hold_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x809dbacd ib_reg_user_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x80a284de ib_register_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x80d88fd7 rdma_link_register +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x81728405 ib_mr_pool_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x868faae6 ib_query_qp EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x86cef180 rdma_addr_size -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x86d4dc29 ib_modify_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x885cdf10 ib_sa_get_mcmember_rec -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x88da0b5a ib_destroy_qp_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x898e61f8 ibdev_crit -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8c37892a rdma_nl_unicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8d76f280 ib_modify_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8da94b38 rdma_copy_src_l2_addr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8e469d2c ib_set_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8828d05a rdma_link_unregister +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8d88488a ib_port_immutable_read EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8e7528da __rdma_block_iter_next -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8e7c0bab rdma_query_gid_table -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8ebe3286 rdma_restrack_count -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8ef62210 ib_query_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90a28404 ib_sa_guid_info_rec_query EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90e807c7 ib_cache_gid_parse_type_str -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x943b5737 ib_modify_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x954f5deb rdma_restrack_new -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9570a0e0 rdma_restrack_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9622c325 rdma_user_mmap_entry_remove -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x963bc0fc rdma_replace_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x974102e7 rdma_move_grh_sgid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x91dc2f8b rdma_nl_unicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x96416b13 rdma_query_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9656b755 ib_dereg_mr_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x96e5e67d ib_modify_srq EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x975ff2b9 ib_sa_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x977366f5 __ib_create_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x97804069 ibdev_info -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x99ae3639 ibdev_printk -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9b51a984 ib_modify_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9bc06d90 ib_register_mad_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9bd35454 ib_find_exact_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9c6d13c8 rdma_rw_ctx_destroy_signature -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9dbf1484 rdma_nl_stat_hwcounter_entry -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9dc8fb79 ib_query_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9e16f171 ib_get_cached_lmc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9efc6da5 ib_mad_kernel_rmpp_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9f9985ae ib_unregister_device_and_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa031243c rdma_user_mmap_entry_insert_range -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa0679cc3 ib_qp_usecnt_inc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x993e3087 rdma_user_mmap_entry_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9a4447c2 ib_device_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9ab1a882 ib_post_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9aece4c7 ib_get_vf_stats +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9c7e54c8 rdma_get_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9d2cb93b rdma_restrack_del +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9d346991 rdma_read_gid_hw_context +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa15e959b ib_create_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa2c58f82 ib_get_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa33887ee ib_rdmacg_uncharge +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa418fda7 ib_init_ah_attr_from_path EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa432baf6 ib_unpack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa9f49022 ibnl_put_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaa1cdbd0 rdma_read_gid_l2_fields -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xac667179 rdma_umap_priv_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xad5ae441 ib_device_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa466418c ibdev_err +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa48d0062 rdma_nl_put_driver_string +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa78e3128 rdma_translate_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa791b3af ib_modify_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa8ff0ce1 rdma_query_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaa0d5c1a ib_drain_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaa10dd25 rdma_roce_rescan_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xabc2f66c ib_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xac15687f ib_sa_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xad218de1 rdma_put_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xad2e87f3 rdma_create_ah EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae956dce ib_rate_to_mult -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae9f71e0 __ib_alloc_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xafbcacee rdma_destroy_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb1865a2a ib_register_event_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb2f05e4a ib_get_vf_stats EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb36e4148 ib_sa_pack_path -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb43166b4 ib_set_device_ops -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb6c860b6 _ib_alloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb38ad8aa rdma_user_mmap_entry_remove +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb3e94b5d ib_check_mr_status +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb4fec514 ib_create_qp_security +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb7199c9c rdma_nl_put_driver_u64 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb759b68e ib_get_cached_lmc EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb7852a05 ib_ud_header_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb814a321 ibnl_put_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb88c18b8 ib_drain_rq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb891e3d5 rdma_destroy_ah_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb944bbbc ib_find_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbb908f8b rdma_user_mmap_entry_insert -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbcd2a8fd ib_map_mr_sg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbcd5f989 ib_cq_pool_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc06c1158 ib_find_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc0f4424f ib_init_ah_attr_from_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc3d45abb ib_get_cached_subnet_prefix -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc53d05af rdma_dev_access_netns -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc57dc764 rdma_restrack_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc8169fc0 __ib_alloc_pd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc84ef4e6 ib_get_rmpp_segment -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc8a59729 ib_modify_qp_with_udata -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc92aa74f ib_get_eth_speed -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcb85440d ibdev_notice +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb7ec3c9c rdma_nl_stat_hwcounter_entry +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb87e04de ib_create_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb994f7de ib_sa_path_rec_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb9f8b223 ib_find_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb9fc4d19 ib_detach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbbdca853 rdma_move_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbc0bbdce rdma_restrack_parent_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbd4eb29a rdma_set_cq_moderation +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbe197ce6 rdma_nl_unicast_wait +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbe2a6c40 __ib_alloc_cq_any +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbe7ba524 ib_destroy_srq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc04e8932 ib_register_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc29a9047 ib_dealloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc4b11370 rdma_create_user_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc4dd6ec0 rdma_restrack_set_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc5e7bb28 ib_free_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc8b35644 ib_get_cached_port_state +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xca4c5eab rdma_user_mmap_entry_insert_range +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcc91b7ca rdma_port_get_link_layer +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcd4d167a ib_query_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcd8e998d rdma_restrack_add +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcd9d90e6 rdma_rw_ctx_init EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcfbc053b ib_unregister_driver -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd43f9b0c rdma_rw_ctx_destroy -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd49f0506 ib_alloc_xrcd_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd4f1ccc9 ib_query_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd5160bf1 rdma_translate_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd1ec5a5b ib_create_qp_kernel +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd30c5f89 rdma_rw_ctx_signature_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd48d54ad ib_unregister_device_and_put EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd6636ca6 rdma_addr_size_in6 -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd6c82b22 ib_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd7194b77 ib_dealloc_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd96060a1 ib_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd761aef6 rdma_rw_mr_factor +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd96c7a41 ib_dealloc_xrcd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd9b37de9 ib_port_unregister_client_groups EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda0d50ec ib_sa_cancel_query -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdb5e9775 ib_init_ah_from_mcmember -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdbf69fbc rdma_find_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdcbb705d ib_query_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xde0d23d6 rdma_user_mmap_entry_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xde6c7006 ibdev_alert -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdef5144c __ib_alloc_cq_any -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdfdb587a ib_map_mr_sg_pi -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe0a183b7 ib_alloc_mr_integrity -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe160aba2 rdma_init_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe16f1439 ib_destroy_wq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe391755d ib_qp_usecnt_dec -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe49e03d2 rdma_restrack_del +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdcf9ee9b rdma_copy_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdfbd11f4 ib_unregister_device_queued +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdfe771f2 rdma_copy_src_l2_addr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe11ccdb6 ib_mr_pool_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe51215c0 ib_set_vf_guid EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5840ec6 ib_wc_status_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe59ed8c1 rdma_rw_ctx_init EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5a78c1e ib_sa_unpack_path -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe6f81294 ib_init_ah_attr_from_path -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe798cf2f rdma_set_cq_moderation +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe7144f54 rdma_query_gid_table +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe77aa8eb ib_resize_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe79d9fda rdma_user_mmap_entry_get EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe7b52e5f mult_to_ib_rate -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe8d502b8 rdma_nl_put_driver_u32 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe8a121b4 ib_unregister_event_handler EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9e799fc ib_ud_header_pack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xec7ae2b9 ib_port_register_client_groups -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xef5cece8 ib_free_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xefe5cd3f rdma_roce_rescan_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf04e0b69 ib_post_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf3b6d6d7 rdma_user_mmap_entry_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf3b6ff9e ib_set_vf_link_state -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf45ad789 ib_sa_path_rec_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xea832ce2 ib_device_get_by_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xea8ad8e1 ib_modify_qp_with_udata +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xec6c503a ib_mr_pool_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xed124573 rdma_restrack_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xed658172 ib_unregister_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xee790416 ib_find_exact_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xef7b9699 ib_free_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf0ac569f rdma_nl_put_driver_u32_hex +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf258360b ib_attach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf486ce2a ib_mr_pool_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf4ee83e2 ibdev_alert EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf5dedb30 rdma_node_get_transport +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf69e8a32 rdma_user_mmap_io +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf6a5fd01 rdma_addr_cancel EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf6ed3334 ib_event_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf6ffe811 rdma_find_gid_by_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf7df57d7 rdma_restrack_set_name -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf95daf92 ib_sa_join_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfa2526d4 ib_unregister_mad_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfb65ac25 ib_register_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfc749577 ib_mr_pool_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xffca4354 ibdev_err -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x051107c1 uverbs_uobject_put -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x0fcd53f5 ib_umem_odp_alloc_child -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x13b4946f ib_register_peer_memory_client -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x17780c5c ib_copy_qp_attr_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x18290fb4 ib_umem_copy_from +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf70a2dc1 rdma_alloc_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf7e720d1 rdma_nl_put_driver_u64_hex +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfaf22283 rdma_resolve_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfb37be3a ib_unregister_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfc9f540d rdma_replace_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfd0a5183 ibdev_printk +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfe083637 ib_map_mr_sg_pi +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x045478a6 ib_umem_odp_alloc_child +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x073412d2 ib_umem_odp_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x0b627262 uverbs_fd_class EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1b54bd5d ib_copy_path_rec_from_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1e59cca3 ib_umem_dmabuf_unmap_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x24f2fcb4 ib_umem_dmabuf_get -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x293c548a ib_umem_stop_invalidation_notifier -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x302d6b3b uverbs_destroy_def_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x43e2cab7 ib_umem_odp_alloc_implicit -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x44ed5a45 ib_umem_get -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x46aa3296 uverbs_finalize_uobj_create -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x483aeffe ib_copy_ah_attr_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x571b9585 uverbs_get_flags32 +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1ca8ad7e ib_umem_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1d476d45 flow_resources_add +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x2037c67d uverbs_copy_to_struct_or_zero +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x2a7a9de8 ib_umem_odp_alloc_implicit +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x39747356 ib_umem_get_peer +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x3ac62200 uverbs_finalize_uobj_create +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x59fd588d ib_register_peer_memory_client +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5c9f7e6d flow_resources_alloc +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5d4d4c6f ib_umem_copy_from EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x63057f4b ib_copy_path_rec_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x6b1ae4d6 ib_umem_get_peer -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7371237d ib_uverbs_get_ucontext_file -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7aca077a _uverbs_get_const_signed -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x80e0ecff ib_uverbs_flow_resources_free -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x87d82db5 uverbs_copy_to_struct_or_zero -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x8864a7d1 ib_umem_find_best_pgsz -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x90c7500c ib_umem_dmabuf_map_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x9a997d2e uverbs_idr_class -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x9f5c35f0 ib_umem_odp_map_dma_and_lock -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa867a265 ib_umem_odp_unmap_dma_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xab052901 _uverbs_get_const_unsigned -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xada40b98 ib_umem_release -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xaec94166 ib_umem_odp_release -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xaf709d4c flow_resources_add -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb31c6cb9 uverbs_get_flags64 -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb5a0ec46 uverbs_uobject_fd_release -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb6358080 uverbs_fd_class +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x67c5032c ib_umem_odp_map_dma_and_lock +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x6c455e8d ib_umem_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x76b0a86c _uverbs_alloc +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x778c3731 uverbs_uobject_put +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7a4d6a58 ib_umem_odp_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7a8fe489 ib_umem_dmabuf_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7e701026 _uverbs_get_const_signed +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7eb71d7a ib_copy_ah_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x88035e42 uverbs_get_flags32 +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x8f74cd48 uverbs_copy_to +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x9235cb13 ib_uverbs_flow_resources_free +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x9c2ce880 ib_copy_qp_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xaf6af495 ib_umem_activate_invalidation_notifier +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb53d0024 ib_umem_stop_invalidation_notifier +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb73d8308 uverbs_destroy_def_handler EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xbde5c050 ib_unregister_peer_memory_client -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc697f15e uverbs_copy_to -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc9e17ac5 ib_umem_odp_get -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe26927d7 _uverbs_alloc -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe476e5c4 flow_resources_alloc -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf506071a ib_umem_activate_invalidation_notifier -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x025ee3b5 iw_cm_accept -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x5e0110a2 iw_cm_connect -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6a09ab12 iw_destroy_cm_id -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x7091ac83 iw_create_cm_id -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x83872404 iw_cm_listen -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x9ff243bb iw_cm_reject -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xa7fde34b iw_cm_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xc3194e99 iw_cm_disconnect +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc32c0aab ib_uverbs_get_ucontext_file +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc460d5ca ib_umem_dmabuf_map_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xccc9c978 uverbs_get_flags64 +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xccf9f2ea uverbs_uobject_fd_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd420a988 uverbs_idr_class +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd43438fa ib_umem_odp_unmap_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe03b0335 _uverbs_get_const_unsigned +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe667b4e8 ib_umem_dmabuf_unmap_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf8bd969c ib_umem_find_best_pgsz +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x0bcedb05 iw_cm_disconnect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x0df19808 iw_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x2cd3ca10 iw_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x39d3df3d iw_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x492662f1 iw_cm_connect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x7c00a81a iw_cm_accept +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x9ef63860 iw_cm_reject +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xb8577f4b iw_cm_listen EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf3df871f iwcm_reject_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x00699534 rdma_create_user_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x00a451fc rdma_create_qp -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x06380084 rdma_consumer_reject_data -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0f531502 rdma_bind_addr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x174cb2e8 rdma_join_multicast -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x18cf65d0 rdma_connect_ece -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x21fa0bfd rdma_reject_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x36cef025 rdma_read_gids -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x41df9ebd rdma_leave_multicast -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x44193999 rdma_lock_handler -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4e0448f7 rdma_notify -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5df43d1f rdma_reject -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x667975ba rdma_set_min_rnr_timer -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x698c73b2 rdma_destroy_qp -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6dc28103 rdma_resolve_route -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7052ef0d rdma_connect -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7d43b060 __rdma_create_kernel_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8387001d rdma_set_reuseaddr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x847c5506 rdma_iw_cm_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x86c01ed0 rdma_get_service_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x00f0c86a rdma_get_service_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1df9766d rdma_lock_handler +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1e5428a5 rdma_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x25dd0d0b rdma_reject +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x282ba835 rdma_connect_ece +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2850e9f2 rdma_iw_cm_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2ea7c3ae rdma_disconnect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x300c1b8f rdma_connect_locked +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x32452398 rdma_res_to_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x33c4f68d rdma_set_ib_path +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x35c20d2f __rdma_create_kernel_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3f55f13d rdma_resolve_route +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x44058615 rdma_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x467c2783 rdma_create_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x485af656 rdma_destroy_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4f428ec6 rdma_listen +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5625f7e2 rdma_reject_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x599fdb71 rdma_notify +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x59c83e8d rdma_resolve_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6c83cc46 rdma_consumer_reject_data +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7e08bbe1 rdma_create_user_id EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x921d8093 rdma_connect_locked -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9708a90a rdma_set_service_type -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x976a1db2 rdma_set_afonly -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9ce7d7ff rdma_resolve_addr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb63472bd rdma_set_ib_path -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc6a21553 rdma_unlock_handler -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xca7faae3 rdma_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xcbe867f3 rdma_set_ack_timeout -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xce07dafe rdma_listen -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd34659ad rdma_destroy_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xdd6ace36 rdma_accept -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf48639e4 rdma_disconnect -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf7ac45dc rdma_accept_ece -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xfdeb7b9a rdma_res_to_id -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x05b441b5 rtrs_clt_rdma_cq_direct -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x078621bd rtrs_clt_open -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x2fa314e8 rtrs_clt_put_permit -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x7c36c32f rtrs_clt_get_permit -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xc26f899d rtrs_clt_query -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xd043167c rtrs_clt_close -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xd4d2a730 rtrs_clt_request -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x20e09745 rtrs_rdma_dev_pd_deinit +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9226f24e rdma_set_min_rnr_timer +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x968d41b8 rdma_unlock_handler +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9a64b1ab rdma_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa26e2eb4 rdma_set_afonly +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xaae79e37 rdma_set_ack_timeout +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb1be0176 rdma_read_gids +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb3e9c000 rdma_accept +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc9c74ea6 rdma_bind_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xcb9a6857 rdma_connect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd64a1d53 rdma_accept_ece +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe98956e1 rdma_set_service_type +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe9e212b6 rdma_leave_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xeaef9e9a rdma_set_reuseaddr +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x0ef41aef rtrs_clt_rdma_cq_direct +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x18a6d46b rtrs_clt_open +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x19442b53 rtrs_clt_request +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x29c1b670 rtrs_clt_get_permit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x74d264c5 rtrs_clt_close +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x86e77259 rtrs_clt_query +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xeee3fd92 rtrs_clt_put_permit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x0c896357 rtrs_rdma_dev_pd_init EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x242a8646 rtrs_addr_to_str EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x5b01e41d sockaddr_to_str +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x624c820b rtrs_rdma_dev_pd_deinit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x6a49ca90 rtrs_ib_dev_find_or_add EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x887302f3 rtrs_addr_to_sockaddr -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xa3c69563 rtrs_ib_dev_find_or_add -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xb6571a6d rtrs_ib_dev_put -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xe802b17b rtrs_rdma_dev_pd_init -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x5d1a0e63 rtrs_srv_get_sess_name -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x6a644fd1 rtrs_srv_set_sess_priv -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x8ba59656 rtrs_srv_close -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x8bd90821 rtrs_srv_open -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xc166a9d6 rtrs_srv_resp_rdma -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xca128d03 rtrs_srv_get_queue_depth -EXPORT_SYMBOL drivers/input/gameport/gameport 0x6529968a gameport_unregister_port -EXPORT_SYMBOL drivers/input/gameport/gameport 0x9efedea6 gameport_unregister_driver -EXPORT_SYMBOL drivers/input/gameport/gameport 0x9f8944bc gameport_close -EXPORT_SYMBOL drivers/input/gameport/gameport 0xa3d237c0 gameport_stop_polling -EXPORT_SYMBOL drivers/input/gameport/gameport 0xa53e6b2d gameport_set_phys -EXPORT_SYMBOL drivers/input/gameport/gameport 0xce16543c gameport_open -EXPORT_SYMBOL drivers/input/gameport/gameport 0xcf778758 __gameport_register_port -EXPORT_SYMBOL drivers/input/gameport/gameport 0xdf2be424 __gameport_register_driver -EXPORT_SYMBOL drivers/input/gameport/gameport 0xed02d3e3 gameport_start_polling -EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x083c280b iforce_process_packet -EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x0877457e iforce_send_packet -EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x10cb63bf iforce_init_device -EXPORT_SYMBOL drivers/input/matrix-keymap 0x8863ec3f matrix_keypad_build_keymap -EXPORT_SYMBOL drivers/input/misc/ad714x 0x1a138258 ad714x_enable -EXPORT_SYMBOL drivers/input/misc/ad714x 0x5487b2ac ad714x_probe -EXPORT_SYMBOL drivers/input/misc/ad714x 0xecb87d1a ad714x_disable +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xaaff9660 rtrs_ib_dev_put +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x089ba6b0 rtrs_srv_get_sess_name +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x1364e58f rtrs_srv_set_sess_priv +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x14efa157 rtrs_srv_get_queue_depth +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x3d0476dd rtrs_srv_open +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x76e7ba52 rtrs_srv_resp_rdma +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x9889b1c7 rtrs_srv_close +EXPORT_SYMBOL drivers/input/gameport/gameport 0x22287d8b gameport_start_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0x22437fdf gameport_unregister_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0x418b9d3e __gameport_register_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0x4d3f72bb gameport_open +EXPORT_SYMBOL drivers/input/gameport/gameport 0x4f91f575 gameport_set_phys +EXPORT_SYMBOL drivers/input/gameport/gameport 0x519ce337 __gameport_register_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0xa3965749 gameport_stop_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0xf0d62bba gameport_close +EXPORT_SYMBOL drivers/input/gameport/gameport 0xfd6f6fa3 gameport_unregister_port +EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x1506287b iforce_send_packet +EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x77f8b34e iforce_process_packet +EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0xf97cd51a iforce_init_device +EXPORT_SYMBOL drivers/input/matrix-keymap 0xd2dc4dbd matrix_keypad_build_keymap +EXPORT_SYMBOL drivers/input/misc/ad714x 0x336203d4 ad714x_disable +EXPORT_SYMBOL drivers/input/misc/ad714x 0x6860c861 ad714x_probe +EXPORT_SYMBOL drivers/input/misc/ad714x 0xa0c82bb4 ad714x_enable +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x29b9b294 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 0xaf4847a6 cma3000_init EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0xca3f100a cma3000_suspend -EXPORT_SYMBOL drivers/input/rmi4/rmi_core 0x3a9f371e rmi_unregister_transport_device -EXPORT_SYMBOL drivers/input/sparse-keymap 0x21a2437a sparse_keymap_setup -EXPORT_SYMBOL drivers/input/sparse-keymap 0x442984d7 sparse_keymap_entry_from_keycode -EXPORT_SYMBOL drivers/input/sparse-keymap 0x71551976 sparse_keymap_report_entry -EXPORT_SYMBOL drivers/input/sparse-keymap 0xc5eb3722 sparse_keymap_report_event -EXPORT_SYMBOL drivers/input/sparse-keymap 0xeadb557f sparse_keymap_entry_from_scancode -EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x1d65577a ad7879_probe -EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x6f8894ab ad7879_pm_ops -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x6948b508 detach_capi_ctr -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x773b442d capi_ctr_down -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x91feb130 capi_ctr_handle_message -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x925065c8 attach_capi_ctr -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xad56fcfc capi_ctr_ready +EXPORT_SYMBOL drivers/input/rmi4/rmi_core 0x08d1ee85 rmi_unregister_transport_device +EXPORT_SYMBOL drivers/input/sparse-keymap 0x18da8960 sparse_keymap_report_entry +EXPORT_SYMBOL drivers/input/sparse-keymap 0x1e87b224 sparse_keymap_report_event +EXPORT_SYMBOL drivers/input/sparse-keymap 0x8dac16cd sparse_keymap_entry_from_keycode +EXPORT_SYMBOL drivers/input/sparse-keymap 0xbfca2945 sparse_keymap_entry_from_scancode +EXPORT_SYMBOL drivers/input/sparse-keymap 0xc6678a19 sparse_keymap_setup +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0xc8d254e8 ad7879_probe +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0xe636542e ad7879_pm_ops +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x140be1a9 capi_ctr_handle_message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2708edb1 capi_ctr_ready +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x56e4dafa detach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x6bc4e591 attach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xf702e06f 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 0x4550c6b7 mISDNipac_irq -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x999ac4c0 mISDNisac_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x9c08f1e5 mISDNipac_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xa74e5957 mISDNisac_irq -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x30ae81fc mISDNisar_irq -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x9901400a mISDNisar_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x4567bb64 mISDNipac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x5117d580 mISDNipac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x93290c2f mISDNisac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xf90b013b mISDNisac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x4239a222 mISDNisar_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x4b586984 mISDNisar_init +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x00519b9f queue_ch_frame EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x03a68066 mISDN_FsmRestartTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x11cc190f mISDN_unregister_Bprotocol -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x12d873ba recv_Echannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1e22c892 create_l1 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x0f01f717 mISDN_freebchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1292aad2 mISDN_initdchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1b5992c6 mISDN_register_Bprotocol EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2348cc3c mISDN_FsmFree EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x26236de8 mISDN_clock_update -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x29dabe5a mISDN_clear_bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2d3a1308 mISDNDevName4ch -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2fa9a492 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 0x3a06eef5 mISDN_initdchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x43157e35 mISDN_freebchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x494ea663 mISDN_register_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x3bb3d04c recv_Dchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x3da4d26e mISDN_register_device EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x50c2230c mISDN_FsmChangeState +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x51e8631f recv_Echannel EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x588886a6 l1_event -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x5dac35ee get_next_bframe EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6047df40 mISDN_FsmInitTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x619492cc recv_Dchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6dcf2cad mISDN_ctrl_bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8fd7fa12 mISDN_register_Bprotocol -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9197b147 bchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x637fc670 mISDN_initbchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x882f4e25 recv_Bchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8fe41a13 mISDN_clear_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x946e7001 get_next_bframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x967590fe mISDN_ctrl_bchannel EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9c928457 mISDN_FsmNew -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9e80e281 get_next_dframe -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa0a30139 bchannel_get_rxbuf -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa8e9818a mISDN_initbchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc17ec6f5 mISDN_unregister_device -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc244aa02 recv_Bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa552e016 dchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa7776b5f recv_Bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb4296d5a mISDN_unregister_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xbb3d2ede create_l1 EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc3401729 mISDN_register_clock -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xcaf69144 mISDN_freedchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xcba34603 mISDN_freedchannel EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd285995f mISDN_clock_get EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd5145151 mISDN_FsmEvent +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xdf5dad56 mISDN_unregister_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe532245b recv_Dchannel EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe8f617eb mISDN_unregister_clock -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xea6bb740 queue_ch_frame -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf442c0c4 recv_Bchannel_skb -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf92dd859 dchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xec7a5fab get_next_dframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xfa779a0f bchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xfeb98a51 bchannel_get_rxbuf +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xff8265f9 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 0x0a0c32a4 ti_lmu_common_get_brt_res +EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0x4a3d7a1c 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 0xbd095dbc ti_lmu_common_get_ramp_params +EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0xafebec69 ti_lmu_common_get_ramp_params EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0xced72aae ti_lmu_common_set_brightness -EXPORT_SYMBOL drivers/md/dm-log 0x22d02357 dm_dirty_log_type_unregister -EXPORT_SYMBOL drivers/md/dm-log 0x3de208cd dm_dirty_log_create -EXPORT_SYMBOL drivers/md/dm-log 0xa08d65ea dm_dirty_log_type_register -EXPORT_SYMBOL drivers/md/dm-log 0xc3b136f8 dm_dirty_log_destroy -EXPORT_SYMBOL drivers/md/dm-snapshot 0x4b98664b dm_snap_cow -EXPORT_SYMBOL drivers/md/dm-snapshot 0xb0bd7f33 dm_snap_origin -EXPORT_SYMBOL drivers/md/dm-snapshot 0xc9a93022 dm_exception_store_destroy -EXPORT_SYMBOL drivers/md/dm-snapshot 0xe0a2a22e dm_exception_store_type_register -EXPORT_SYMBOL drivers/md/dm-snapshot 0xeb4ebd6d dm_exception_store_create -EXPORT_SYMBOL drivers/md/dm-snapshot 0xee49bd2a dm_exception_store_type_unregister -EXPORT_SYMBOL drivers/md/raid456 0x99a89472 raid5_set_cache_size -EXPORT_SYMBOL drivers/md/raid456 0xdf8a88e9 r5c_journal_mode_set -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x08ad04b9 flexcop_device_kfree -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x0fee536c flexcop_eeprom_check_mac_addr -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x1f177101 flexcop_sram_ctrl -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x2bce86c5 flexcop_device_exit -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x630af218 flexcop_device_initialize -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x790d87c8 flexcop_pass_dmx_data -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xaa9bc2bb flexcop_device_kmalloc -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xbb4111d6 flexcop_sram_set_dest -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xc79cdb7d flexcop_i2c_request -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xd1119bce flexcop_wan_set_speed -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xd888e8e4 flexcop_pid_feed_control -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xe95e40fd flexcop_dump_reg -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xfb8c67dd flexcop_pass_dmx_packets -EXPORT_SYMBOL drivers/media/common/cx2341x 0x04deb254 cx2341x_handler_set_50hz -EXPORT_SYMBOL drivers/media/common/cx2341x 0x08c85d22 cx2341x_handler_setup +EXPORT_SYMBOL drivers/md/dm-log 0xa2b854be dm_dirty_log_type_unregister +EXPORT_SYMBOL drivers/md/dm-log 0xb1e1873b dm_dirty_log_type_register +EXPORT_SYMBOL drivers/md/dm-log 0xc2a51fc7 dm_dirty_log_create +EXPORT_SYMBOL drivers/md/dm-log 0xc7ea8c0f dm_dirty_log_destroy +EXPORT_SYMBOL drivers/md/dm-snapshot 0x6775b72f dm_exception_store_type_unregister +EXPORT_SYMBOL drivers/md/dm-snapshot 0x7377cfa9 dm_exception_store_destroy +EXPORT_SYMBOL drivers/md/dm-snapshot 0x79116bb9 dm_exception_store_create +EXPORT_SYMBOL drivers/md/dm-snapshot 0xc21def71 dm_snap_cow +EXPORT_SYMBOL drivers/md/dm-snapshot 0xdedf8432 dm_exception_store_type_register +EXPORT_SYMBOL drivers/md/dm-snapshot 0xeed24b51 dm_snap_origin +EXPORT_SYMBOL drivers/md/raid456 0x05b87651 r5c_journal_mode_set +EXPORT_SYMBOL drivers/md/raid456 0x91ec2739 raid5_set_cache_size +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x2a33c145 flexcop_dump_reg +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x2f1a18e6 flexcop_device_kmalloc +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x3009da8e flexcop_sram_set_dest +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x5d307e54 flexcop_i2c_request +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x76e186a0 flexcop_device_initialize +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x7802bd97 flexcop_pid_feed_control +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xa96a3064 flexcop_pass_dmx_data +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xb0842d51 flexcop_device_kfree +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xb47ba308 flexcop_wan_set_speed +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xc9004873 flexcop_pass_dmx_packets +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xcc162d05 flexcop_device_exit +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xd5729cd0 flexcop_sram_ctrl +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xdbfcff1d flexcop_eeprom_check_mac_addr +EXPORT_SYMBOL drivers/media/common/cx2341x 0x0352bc94 cx2341x_handler_set_busy EXPORT_SYMBOL drivers/media/common/cx2341x 0x15ac1bd0 cx2341x_ctrl_query EXPORT_SYMBOL drivers/media/common/cx2341x 0x28240e61 cx2341x_ctrl_get_menu EXPORT_SYMBOL drivers/media/common/cx2341x 0x55aa7c5f cx2341x_mpeg_ctrls EXPORT_SYMBOL drivers/media/common/cx2341x 0x7b4dd2cb cx2341x_fill_defaults -EXPORT_SYMBOL drivers/media/common/cx2341x 0x822f70ea cx2341x_handler_set_busy -EXPORT_SYMBOL drivers/media/common/cx2341x 0xb2ad7a1d cx2341x_handler_init EXPORT_SYMBOL drivers/media/common/cx2341x 0xb2b9efb7 cx2341x_ext_ctrls +EXPORT_SYMBOL drivers/media/common/cx2341x 0xc86247fc 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 0xb5608b9e cypress_load_firmware +EXPORT_SYMBOL drivers/media/common/cx2341x 0xf1ac546c cx2341x_handler_setup +EXPORT_SYMBOL drivers/media/common/cx2341x 0xf72cf5d9 cx2341x_handler_init +EXPORT_SYMBOL drivers/media/common/cypress_firmware 0xa399ee2d cypress_load_firmware EXPORT_SYMBOL drivers/media/common/ttpci-eeprom 0x693e74ba ttpci_eeprom_decode_mac -EXPORT_SYMBOL drivers/media/common/ttpci-eeprom 0xe81448dd ttpci_eeprom_parse_mac +EXPORT_SYMBOL drivers/media/common/ttpci-eeprom 0xfcbfae71 ttpci_eeprom_parse_mac +EXPORT_SYMBOL drivers/media/common/tveeprom 0x09d1062f tveeprom_read EXPORT_SYMBOL drivers/media/common/tveeprom 0x0dbf0296 tveeprom_hauppauge_analog -EXPORT_SYMBOL drivers/media/common/tveeprom 0xb40f57fc 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 0x1d31111d vb2_verify_memory_type EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x1d5f9555 frame_vector_destroy -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x9a851df4 vb2_buffer_in_use +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x409119cf vb2_buffer_in_use EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0xc2d9e090 get_vaddr_frames EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0xc5e5573a frame_vector_to_pages -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0xcf5c2f77 vb2_verify_memory_type EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0xdffb744b frame_vector_to_pfns -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x1094d4c7 vb2_dvb_get_frontend -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x124cb835 vb2_dvb_register_bus -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x59ca4177 vb2_dvb_alloc_frontend -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x9cd089c6 vb2_dvb_find_frontend -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xabda6f95 vb2_dvb_dealloc_frontends -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xeba66a9c vb2_dvb_unregister_bus +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x08698a79 vb2_dvb_get_frontend +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x44f9983b vb2_dvb_find_frontend +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x4ac7794a vb2_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x586c60d2 vb2_dvb_register_bus +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x8793a24e vb2_dvb_unregister_bus +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xaf5fa64f vb2_dvb_alloc_frontend EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-memops 0xa21fa765 vb2_create_framevec EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-memops 0xccd197c7 vb2_destroy_framevec -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-v4l2 0xbcc09e4f vb2_querybuf +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-v4l2 0xf654adbc vb2_querybuf +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x05fffc9c dvb_generic_ioctl EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x064fd246 dvb_ringbuffer_read_user +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x06c08bb5 dvb_frontend_detach EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x08733236 intlog10 -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x142a8c7c dvb_generic_ioctl +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x087b227c dvb_register_frontend EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x15052806 dvb_dmx_swfilter_204 -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x166f86ab dvb_unregister_adapter -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x16bb0439 dvb_ca_en50221_camready_irq -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1a84eca9 dvb_net_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1f269f24 dvb_frontend_reinitialise +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x25134652 dvb_register_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x29c19674 dvb_ca_en50221_release EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x29d58443 dvb_ringbuffer_empty -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2d5b1af0 dvb_frontend_reinitialise -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x35602c4c dvb_unregister_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2d8929fd dvb_net_release EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3b93d71a dvb_frontend_sleep_until -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x43aaefd1 dvb_unregister_frontend EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4502c3be dvb_ringbuffer_flush -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4d48c73f dvb_frontend_suspend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x45f01def dvb_dmxdev_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x50fde0d4 dvb_generic_open EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5830a49a dvb_ringbuffer_flush_spinlock_wakeup -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5aa94ecf dvb_dmxdev_release EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5f2b1d95 intlog2 EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x66a68864 dvb_ringbuffer_avail EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x66bd7694 dvb_ringbuffer_free EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6ab6aac6 dvb_dmx_swfilter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6ed18701 dvb_net_init EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6ef5628b dvb_ringbuffer_read -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7c41fd86 dvb_frontend_detach +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x818ae72a dvb_frontend_suspend EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x82878c35 dvb_ringbuffer_write -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8d8dbe76 dvb_generic_open +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8ed698e3 dvb_dmxdev_release EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8fd6e094 dvb_dmx_swfilter_packets -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x93bf2b6d dvb_dmxdev_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x95d9cd20 dvb_remove_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9677ef6d dvb_unregister_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9b7c8525 dvb_ca_en50221_camchange_irq EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9dffb35d dvb_dmx_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa9d66db7 dvb_ca_en50221_camchange_irq -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xacb04b0b dvb_register_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa44232d5 dvb_unregister_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xaa2c1055 dvb_remove_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xaa8fc4ea dvb_register_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb4ee9250 dvb_ca_en50221_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb4f2ba0f dvb_ca_en50221_camready_irq EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb5a3524f dvb_ringbuffer_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb9f603bc dvb_unregister_frontend EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xbc05d026 dvb_dmx_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xbf480d71 dvb_ca_en50221_frda_irq -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc6e7998a dvb_register_adapter EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xce748c8d dvb_ringbuffer_write_user -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xdd51d768 dvb_ca_en50221_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe1579e84 dvb_register_device -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe49579d5 dvb_generic_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe62af942 dvb_free_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xdbeeacdb dvb_ca_en50221_frda_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe31e4764 dvb_generic_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe5714b0d dvb_free_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe9123d72 dvb_frontend_resume EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xed056cde dvb_dmx_swfilter_raw -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xed80ca68 dvb_ca_en50221_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf5b43177 dvb_net_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf5e8d8ff dvb_frontend_resume -EXPORT_SYMBOL drivers/media/dvb-frontends/ascot2e 0x34df1558 ascot2e_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/atbm8830 0x3119dfda atbm8830_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x0f756085 au8522_init -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x28f72d80 au8522_writereg -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x2f3b3240 au8522_release_state -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x41809fb1 au8522_i2c_gate_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x58b0d488 au8522_readreg -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x995f7b5c au8522_analog_i2c_gate_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x9cf86dcf au8522_sleep -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xbdf74aed au8522_led_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xd01ded09 au8522_get_state -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_dig 0xf23c0bf2 au8522_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/bcm3510 0x486b7c73 bcm3510_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx22700 0xdab9fa81 cx22700_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx22702 0xffa3cb2b cx22702_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24110 0x7eb76d2e cx24110_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x72120702 cx24113_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0xaa0dcd66 cx24113_agc_callback -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24116 0x015a1e8f cx24116_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24120 0x646bee97 cx24120_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x31949216 cx24123_get_tuner_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x9cbfe9f8 cx24123_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2820r 0x2f5d22d8 cxd2820r_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x37053a81 cxd2841er_attach_t_c -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x37f262b2 cxd2841er_attach_s -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2880/cxd2880 0x727be3e1 cxd2880_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x0362d5a6 dib0070_get_rf_output -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x234e399e dib0070_wbd_offset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x379bb8f7 dib0070_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xc4e514d5 dib0070_ctrl_agc_filter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xd8fc3070 dib0070_set_rf_output -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x0de10678 dib0090_gain_control -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x2cc0dc13 dib0090_pwm_gain_reset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x30b7f2bd dib0090_set_switch -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x519fdfae dib0090_fw_register -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x61ecdb98 dib0090_get_current_gain -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x6453ff0a dib0090_update_tuning_table_7090 -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xa742e669 dib0090_set_vga -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xab30c8d6 dib0090_set_dc_servo -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xbfbb61e1 dib0090_register -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xca31bedc dib0090_get_wbd_target -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xcda92f6a dib0090_set_tune_state -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xd62be4c3 dib0090_dcc_freq -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xda1ec907 dib0090_get_tune_state -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xf43dc7b0 dib0090_update_rframp_7090 -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xf75017d2 dib0090_get_wbd_offset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mb 0xb654d955 dib3000mb_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x2e11f7b7 dib3000mc_i2c_enumeration -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x59b65a62 dib3000mc_get_tuner_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x9ef7aa1d dib3000mc_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xb937b6e1 dib3000mc_pid_parse -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xe6715251 dib3000mc_set_config -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xeeb815f9 dib3000mc_pid_control -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x27449a4f dib7000m_pid_filter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x702882f6 dib7000m_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xa0350f42 dib7000m_pid_filter_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xfe5f3d52 dib7000m_get_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000p 0x1b1a7ef4 dib7000p_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib8000 0x9e51dade dib8000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x0aa8475d dib9000_fw_pid_filter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x0b9e1f7e dib9000_get_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x15476738 dib9000_set_gpio -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x3e561d13 dib9000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x6225fc05 dib9000_fw_set_component_bus_speed -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x6d688bdf dib9000_i2c_enumeration -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x83f8249b dib9000_set_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x9bd2fec3 dib9000_get_slave_frontend -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xb77c3f7e dib9000_fw_pid_filter_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xb8d79c3e dib9000_get_component_bus_interface -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xc8cdc5b9 dib9000_get_tuner_interface -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xe657bc7c dib9000_set_slave_frontend -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xead5058e dib9000_firmware_post_pll_init -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x1993a24a dibx000_i2c_set_speed -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x1f60aef5 dibx000_init_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x521f715b dibx000_reset_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x53b74e95 dibx000_exit_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x95421824 dibx000_get_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0xdb5c6051 drx39xxj_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/drxd 0x2af32227 drxd_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/drxk 0xecce94bb drxk_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ds3000 0x15bf81b8 ds3000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dvb-pll 0x5ceb33cc dvb_pll_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x3f8d4039 dvb_dummy_fe_ofdm_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x72873831 dvb_dummy_fe_qam_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x94436451 dvb_dummy_fe_qpsk_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ec100 0x4e5166c9 ec100_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0x8eab5986 helene_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0x9e4ce747 helene_attach_s -EXPORT_SYMBOL drivers/media/dvb-frontends/horus3a 0xb15ce210 horus3a_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/isl6405 0xffb2808c isl6405_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/isl6421 0x14cbdbe0 isl6421_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/isl6423 0x1702de17 isl6423_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/itd1000 0x2d7daeeb itd1000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ix2505v 0x72824f6a ix2505v_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/l64781 0xd2a37cee l64781_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lg2160 0x6501b52a lg2160_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3305 0x559d03b5 lgdt3305_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3306a 0x6648a610 lgdt3306a_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt330x 0x2502188e lgdt330x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gl5 0x901171fb lgs8gl5_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gxx 0x88cf6f62 lgs8gxx_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh25 0xbfabe87c lnbh25_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh29 0x15a316c7 lnbh29_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0xff4cd8de lnbp21_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0xff8cbb76 lnbh24_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp22 0xa00d2a57 lnbp22_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0xac082534 m88ds3103_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0xbf2f5380 m88ds3103_get_agc_pwm -EXPORT_SYMBOL drivers/media/dvb-frontends/m88rs2000 0x7da9933b m88rs2000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a16 0xcadf8392 mb86a16_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a20s 0x72bb8c89 mb86a20s_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mt312 0x5bc492b2 mt312_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mt352 0x9cb29d35 mt352_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/nxt200x 0xab680b81 nxt200x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/nxt6000 0xc1f310c6 nxt6000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/or51132 0x5de4c357 or51132_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/or51211 0x0904e163 or51211_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1409 0xc16b1726 s5h1409_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1411 0x62c6efdb s5h1411_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0xdcf161e0 s5h1420_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0xe8eafe91 s5h1420_get_tuner_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1432 0xecc4a344 s5h1432_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s921 0xe7fc7b27 s921_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/si21xx 0xfeee96fb si21xx_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/sp887x 0x23036c9d sp887x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stb0899 0x0fa392ec stb0899_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stb6000 0xf4a1a416 stb6000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stb6100 0x3b4aac01 stb6100_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0288 0xe31aa7ca stv0288_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0297 0x33e19dd0 stv0297_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0299 0xaae0ebf7 stv0299_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x20a32c71 stv0367ddb_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x53d77f14 stv0367cab_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x876bca56 stv0367ter_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0900 0xeb6f8246 stv0900_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv090x 0x6f41cc3b stv090x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110 0xfd062d3a stv6110_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110x 0x6422d152 stv6110x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10021 0xbdc4028f tda10021_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10023 0x7a83a6b8 tda10023_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10048 0x538858be tda10048_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x109437dc tda10045_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0xe4f7e186 tda10046_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10086 0x9d0b3eeb tda10086_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda665x 0x6d150224 tda665x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda8083 0xc5c82250 tda8083_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda8261 0xe2f3e5f5 tda8261_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda826x 0x9eb80772 tda826x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ts2020 0x1e140e97 ts2020_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tua6100 0x529b5173 tua6100_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ves1820 0x3ada620c ves1820_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ves1x93 0x3a6072eb ves1x93_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0x2bc040d8 zd1301_demod_get_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0x7a81d7b4 zd1301_demod_get_dvb_frontend -EXPORT_SYMBOL drivers/media/dvb-frontends/zl10036 0x0a1d77c0 zl10036_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/zl10039 0x17c39e16 zl10039_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/zl10353 0x82349c30 zl10353_attach -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x1fdae64d flexcop_dma_free -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x7ab2eef0 flexcop_dma_control_size_irq -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xb9ed3997 flexcop_dma_config -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xc48a4206 flexcop_dma_allocate -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xcf058f58 flexcop_dma_config_timer -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xe47791ef flexcop_dma_control_timer_irq -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xf459292c flexcop_dma_xfer_control -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xaccda31e bt878 -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xcacd39e5 bt878_stop -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xd37ab3b2 bt878_device_control +EXPORT_SYMBOL drivers/media/dvb-frontends/ascot2e 0x56a3a83e ascot2e_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/atbm8830 0x993b56ef atbm8830_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x11f615b4 au8522_init +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x16d6c709 au8522_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x33d6944a au8522_release_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x4284e668 au8522_writereg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x4e10e402 au8522_led_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x56f9e590 au8522_sleep +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x5739891f au8522_readreg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x88eb3c3e au8522_analog_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xe9197bd9 au8522_get_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_dig 0x01ab544b au8522_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/bcm3510 0x3930e4df bcm3510_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22700 0x913876a5 cx22700_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22702 0xa02a076d cx22702_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24110 0x3536e10a cx24110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x14ab8587 cx24113_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x5caf9887 cx24113_agc_callback +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24116 0xb95e5d2e cx24116_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24120 0x1934036b cx24120_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x0751dbc2 cx24123_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x893c4206 cx24123_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2820r 0x019115d3 cxd2820r_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x0f09e731 cxd2841er_attach_t_c +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x93b622d1 cxd2841er_attach_s +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2880/cxd2880 0x6644af4d cxd2880_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x1da20166 dib0070_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x4e7e8b37 dib0070_set_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x6285d07a dib0070_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xa3bd515b dib0070_get_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xa45a0ef8 dib0070_ctrl_agc_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x14fc1671 dib0090_update_tuning_table_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x15b36be8 dib0090_dcc_freq +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x3693312c dib0090_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x4609e595 dib0090_get_current_gain +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x47e62f9a dib0090_fw_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x4f7f4fb7 dib0090_gain_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x64d4bf59 dib0090_update_rframp_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x65d95a55 dib0090_set_dc_servo +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x7f67dd76 dib0090_set_vga +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x93b4a022 dib0090_get_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x9908e630 dib0090_get_wbd_target +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x9b32d6f0 dib0090_pwm_gain_reset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xd6fecbb3 dib0090_get_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xe7b0c639 dib0090_set_switch +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xf54464c0 dib0090_set_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mb 0x16067204 dib3000mb_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x524f874c dib3000mc_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x564195e2 dib3000mc_pid_parse +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x5f02a33c dib3000mc_set_config +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xb4c768a1 dib3000mc_get_tuner_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xd6143071 dib3000mc_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xf2f378d7 dib3000mc_pid_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x0c0a75fe dib7000m_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x19f3c225 dib7000m_pid_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x7ed569ec dib7000m_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xdbc9068f dib7000m_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000p 0xec8bf7ee dib7000p_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib8000 0x7b084f2d dib8000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x21621ff3 dib9000_fw_pid_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x2d432411 dib9000_firmware_post_pll_init +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x3777cc9a dib9000_get_slave_frontend +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x3cd6fd2d dib9000_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x3f888aac dib9000_set_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x4aa38865 dib9000_fw_set_component_bus_speed +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x67ffbbe4 dib9000_get_tuner_interface +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x69d75743 dib9000_set_slave_frontend +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x71667fbe dib9000_get_component_bus_interface +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x7cccac8a dib9000_set_gpio +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xb6b83809 dib9000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xcc74a4d9 dib9000_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xe03e9271 dib9000_fw_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x35f7b721 dibx000_init_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x42fc00b1 dibx000_i2c_set_speed +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xc750371a dibx000_reset_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xd169ffc6 dibx000_exit_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xd1a6adb5 dibx000_get_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0x9169ad04 drx39xxj_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxd 0x7e5368a8 drxd_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxk 0x99e907d0 drxk_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ds3000 0xa8670eed ds3000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb-pll 0x301d94e3 dvb_pll_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x3164849d dvb_dummy_fe_qpsk_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x5fd29f16 dvb_dummy_fe_qam_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x9aaaa0f5 dvb_dummy_fe_ofdm_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ec100 0x986ce993 ec100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0x4e1b03ac helene_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0x7a995335 helene_attach_s +EXPORT_SYMBOL drivers/media/dvb-frontends/horus3a 0xd3205f76 horus3a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6405 0xdee77620 isl6405_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6421 0xbf76101e isl6421_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6423 0x1d362b10 isl6423_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/itd1000 0xa139e0d2 itd1000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ix2505v 0x37fa8ecc ix2505v_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/l64781 0xeff081bc l64781_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lg2160 0x1d585ab6 lg2160_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3305 0xdbabed28 lgdt3305_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3306a 0xd432bf45 lgdt3306a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt330x 0x7958dda7 lgdt330x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gl5 0xdb90fddf lgs8gl5_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gxx 0x6a4ec943 lgs8gxx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh25 0xd685244f lnbh25_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh29 0x3daddb54 lnbh29_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x06fa345b lnbp21_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x1e8ea242 lnbh24_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp22 0x0713367d lnbp22_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0xc7246e18 m88ds3103_get_agc_pwm +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0xcba734dd m88ds3103_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88rs2000 0xb6f02c6a m88rs2000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a16 0x01a0e1f3 mb86a16_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a20s 0x7ece81b1 mb86a20s_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt312 0x32ea5e81 mt312_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt352 0x379929ce mt352_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt200x 0xbd0a5278 nxt200x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt6000 0xa6403359 nxt6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51132 0x4b869aae or51132_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51211 0x66e06412 or51211_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1409 0xd856eb69 s5h1409_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1411 0xe459a3c5 s5h1411_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x50422e81 s5h1420_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0xc0657e8b s5h1420_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1432 0x6a5bef5a s5h1432_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s921 0xc578e4e2 s921_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/si21xx 0xa1675abd si21xx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/sp887x 0xeb611119 sp887x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb0899 0x43fdd990 stb0899_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6000 0xe414087b stb6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6100 0xfc34e4ed stb6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0288 0xdb167a7a stv0288_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0297 0x3d77210f stv0297_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0299 0x0f08fa2a stv0299_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x4c14a837 stv0367ter_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x98a81d75 stv0367cab_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0xebdc4e10 stv0367ddb_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0900 0xde792922 stv0900_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv090x 0x0ba5d575 stv090x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110 0xb032c032 stv6110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110x 0xcce24acf stv6110x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10021 0x89353b1e tda10021_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10023 0xb1da19e9 tda10023_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10048 0xbc875d0b tda10048_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x1603204e tda10045_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0xe260f614 tda10046_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10086 0xd873ff4d tda10086_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda665x 0xe1b3dce2 tda665x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8083 0x8e49ae74 tda8083_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8261 0x2464d275 tda8261_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda826x 0xa98f74b9 tda826x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ts2020 0x6b339dfc ts2020_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tua6100 0x422efd1e tua6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1820 0xf35c3146 ves1820_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1x93 0x36157fd3 ves1x93_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0x3122962d zd1301_demod_get_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0xef952949 zd1301_demod_get_dvb_frontend +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10036 0x1c18e8db zl10036_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10039 0x7815a98c zl10039_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10353 0x717e108b zl10353_attach +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x1e456b96 flexcop_dma_free +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x2f49c09e flexcop_dma_config_timer +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x371eb8f8 flexcop_dma_control_timer_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x4fbed239 flexcop_dma_xfer_control +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x5592c92e flexcop_dma_allocate +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x76599d03 flexcop_dma_config +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x89bf2483 flexcop_dma_control_size_irq +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x17fae6e0 bt878 +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x8eb75999 bt878_device_control +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xbc0eba5d bt878_stop +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xbc19d3c4 bt878_start EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xd5d0bdef bt878_num -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xe73f0b33 bt878_start +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x0aa47ddc bttv_sub_unregister EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x11dc4b6d bttv_gpio_enable -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x848bb8ee bttv_sub_register +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x72c19dd9 bttv_get_pcidev EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x8ecf4acc bttv_write_gpio -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xa168aedc bttv_get_pcidev +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xa0cbc8e6 bttv_sub_register EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xbcf2d2fb bttv_read_gpio -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xd5297a17 bttv_sub_unregister -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x0a6b0fc7 dst_comm_init -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x14616a23 write_dst -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x357a65b4 dst_attach +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x15a798e5 dst_pio_disable +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x1a5a4d02 dst_wait_dst_ready +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x415f8baf dst_error_recovery EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x43a983fd dst_check_sum -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x5a2a4804 read_dst -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x5d19bde0 dst_pio_disable -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x79a82633 dst_error_bailout -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xcc3a3f6a dst_wait_dst_ready -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xe21b15c5 dst_error_recovery -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xe8b81b41 rdc_reset_state -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst_ca 0x2a26057f dst_ca_attach -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x0345780f cx18_ext_init -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x1b7201c9 cx18_release_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x280435e9 cx18_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x6ccc4a6c write_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x7044ec15 rdc_reset_state +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x9a459fdd dst_attach +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xc87dc086 read_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xf2dd5080 dst_comm_init +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xf71fdc46 dst_error_bailout +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst_ca 0x3857b923 dst_ca_attach EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2cdea06d cx18_reset_ir_gpio -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xd8f173da cx18_stop_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xf0ab6355 cx18_claim_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x36cdcbfe cx18_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x489bb9fb cx18_ext_init +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x5e011313 cx18_claim_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x99bb933e cx18_release_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xaf6ef297 cx18_stop_v4l2_encode_stream EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0x6ff7510d altera_ci_tuner_reset EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xbd2ab821 altera_ci_init EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xdb3faf38 altera_ci_release EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xe66b9812 altera_ci_irq -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x013d819a cx25821_sram_channel_dump_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x2983860d cx25821_risc_databuffer_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x31ad5008 cx25821_sram_channel_dump_audio EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x44b517f5 cx25821_print_irqbits -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x53bf0f51 cx25821_set_gpiopin_direction -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x84617ccf cx25821_sram_channel_setup_audio -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xca6b641e cx25821_risc_databuffer_audio -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xe830c468 cx25821_riscmem_alloc +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x746275ed cx25821_dev_unregister +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xab7d35a3 cx25821_dev_get +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xb1a54fe2 cx25821_set_gpiopin_direction EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xe9050411 cx25821_sram_channels -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xef4c4c74 cx25821_dev_get -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xf74da7cd cx25821_dev_unregister -EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x3a80d17e vp3054_i2c_probe -EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0xc741dc36 vp3054_i2c_remove -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x13dd68fd cx88_set_freq -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x2ba04d47 cx88_querycap -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xa46fe723 cx88_enum_input -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xa567bb1d cx88_video_mux -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x27911f8b cx8802_unregister_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x415fa754 cx8802_start_dma -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x7fba243f cx8802_cancel_buffers -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x9062cea3 cx8802_register_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xa71e108d cx8802_buf_prepare -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xb2a979be cx8802_buf_queue -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xb7d75ba9 cx8802_get_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x0afec2c4 cx88_core_irq -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x0fc96c62 cx88_core_put -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x2637b233 cx88_sram_channel_dump -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x2b22aae8 cx88_dsp_detect_stereo_sap -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x476cde68 cx88_sram_channel_setup -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x51d632ac cx88_ir_start +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xf400745b cx25821_sram_channel_setup_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xf7bd5093 cx25821_riscmem_alloc +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x0964fe1e vp3054_i2c_probe +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0xc5214da2 vp3054_i2c_remove +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x0a1e66be cx88_querycap +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xe6a2ce97 cx88_set_freq +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xe8fee1af cx88_enum_input +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xec45ef7a cx88_video_mux +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x1ca0e331 cx8802_unregister_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x4c739440 cx8802_buf_queue +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x66a3cc10 cx8802_start_dma +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x82d69a3f cx8802_cancel_buffers +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x9a99800c cx8802_get_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xa5c01ec1 cx8802_register_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xceedb3d9 cx8802_buf_prepare +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x0120a902 cx88_core_get +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x0b612212 cx88_core_put +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x1e1c4a3b cx88_sram_channel_setup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x214fb68e cx88_set_scale +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x257da273 cx88_sram_channel_dump +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x2dd1d88f cx88_risc_databuffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x35fc6985 cx88_ir_stop +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x39f0a8c6 cx88_vdev_init +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4ce6fa49 cx88_reset EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x5edb7ae5 cx88_print_irqbits EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6141c8c5 cx88_tuner_callback -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x618ac447 cx88_set_scale -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x69cff478 cx88_set_tvnorm -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x730c7482 cx88_reset -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x789139a7 cx88_ir_stop -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x793df3bc cx88_set_tvaudio -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7a2c2f61 cx88_set_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7213bb28 cx88_get_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7c304ce9 cx88_risc_buffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x81165618 cx88_core_irq EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x8d88137a cx88_sram_channels EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x904b8696 cx88_audio_thread -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xcac7033e cx88_risc_buffer -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xce722be4 cx88_vdev_init -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xde61971d cx88_get_stereo -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xe74d7336 cx88_shutdown -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xed7658e5 cx88_core_get -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xf2dd5fc6 cx88_wakeup -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xfa998808 cx88_risc_databuffer -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xfed708e6 cx88_newstation -EXPORT_SYMBOL drivers/media/pci/ddbridge/ddbridge-dummy-fe 0x4771d76c ddbridge_dummy_fe_qam_attach -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x05441aa2 ivtv_ext_init -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x067a4c9e ivtv_vapi -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x0b5eb13e ivtv_api -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x10b72ba2 ivtv_udma_alloc +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xb0d6e163 cx88_set_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xbffb0c75 cx88_set_tvnorm +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xc3e56e7c cx88_dsp_detect_stereo_sap +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xc695d387 cx88_set_tvaudio +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xc9eee761 cx88_newstation +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xe92f9a71 cx88_ir_start +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xf5ac27d3 cx88_shutdown +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xf87b8e89 cx88_wakeup +EXPORT_SYMBOL drivers/media/pci/ddbridge/ddbridge-dummy-fe 0xae71b370 ddbridge_dummy_fe_qam_attach +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x02f3b594 ivtv_set_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x0327018b ivtv_vapi +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x05972626 ivtv_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x0e286622 ivtv_firmware_check EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x14f67530 ivtv_debug -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x1da72c6b ivtv_udma_unmap -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x2a25397f ivtv_clear_irq_mask -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x30321b54 ivtv_start_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x367cb677 ivtv_stop_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x399554a6 ivtv_udma_prepare -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x66cc4e57 ivtv_init_on_first_open -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x72860c31 ivtv_reset_ir_gpio -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x817a8868 ivtv_release_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x82ddcf1f ivtv_set_irq_mask -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xc11d1c4f ivtv_udma_setup -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xcc23e500 ivtv_firmware_check -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xee93d28c ivtv_vapi_result -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xf85e9e7b ivtv_claim_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x1b2add8a ivtv_udma_prepare +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x25b44a12 ivtv_vapi_result +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x34e3f8d3 ivtv_udma_unmap +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x4e0254ec ivtv_clear_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x57379387 ivtv_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x5adbe0fe ivtv_release_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x5b243a1b ivtv_udma_setup +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x5be0840c ivtv_init_on_first_open +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x74bf1515 ivtv_claim_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x9f397edd ivtv_udma_alloc +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xb0f4f157 ivtv_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xc7a38aa7 ivtv_api +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xd7b552e6 ivtv_ext_init EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x04e83446 saa7134_tuner_callback EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x1211df5d saa7134_devlist -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x30fd3a5f saa7134_ts_unregister -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x31edc5c1 saa7134_set_dmabits -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x43917afb saa7134_tvaudio_setmute +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x35978dde saa7134_tvaudio_setmute +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x3fa0716f saa_dsp_writel +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x427b3dba saa7134_dmasound_exit EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x4e418c3a saa7134_devlist_lock -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x4f607672 saa7134_ts_register -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x51536e59 saa7134_pgtable_free +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x5c9ae986 saa7134_pgtable_build EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x730c4be3 saa7134_boards -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x762043ed saa7134_set_gpio -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x8cd70189 saa7134_pgtable_build -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x9b1cee48 saa7134_dmasound_exit -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xbf70763d saa7134_pgtable_alloc -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xdbbf2228 saa_dsp_writel -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xfa331630 saa7134_dmasound_init -EXPORT_SYMBOL drivers/media/radio/tea575x 0x3d5c7c9c snd_tea575x_hw_init -EXPORT_SYMBOL drivers/media/radio/tea575x 0x717429f3 snd_tea575x_set_freq -EXPORT_SYMBOL drivers/media/radio/tea575x 0x7be8d6e7 snd_tea575x_init -EXPORT_SYMBOL drivers/media/radio/tea575x 0x82808fdb snd_tea575x_enum_freq_bands -EXPORT_SYMBOL drivers/media/radio/tea575x 0x9921e6a3 snd_tea575x_s_hw_freq_seek -EXPORT_SYMBOL drivers/media/radio/tea575x 0xa4950ecd snd_tea575x_g_tuner -EXPORT_SYMBOL drivers/media/radio/tea575x 0xae984b06 snd_tea575x_exit +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x7d8c19c7 saa7134_ts_register +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x848c87d0 saa7134_pgtable_free +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xaa079926 saa7134_set_gpio +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xc63cc230 saa7134_set_dmabits +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xd42e67e0 saa7134_dmasound_init +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xd56de8e2 saa7134_ts_unregister +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xec25ddf5 saa7134_pgtable_alloc +EXPORT_SYMBOL drivers/media/radio/tea575x 0x41bcd438 snd_tea575x_g_tuner +EXPORT_SYMBOL drivers/media/radio/tea575x 0x57028978 snd_tea575x_exit +EXPORT_SYMBOL drivers/media/radio/tea575x 0x85b465c0 snd_tea575x_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0xb3ee10de snd_tea575x_hw_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0xc6054fdb snd_tea575x_set_freq +EXPORT_SYMBOL drivers/media/radio/tea575x 0xc8d97a0a snd_tea575x_enum_freq_bands +EXPORT_SYMBOL drivers/media/radio/tea575x 0xf91e925a snd_tea575x_s_hw_freq_seek EXPORT_SYMBOL drivers/media/rc/rc-core 0x2ad91f6e ir_raw_gen_pl EXPORT_SYMBOL drivers/media/rc/rc-core 0x7cf52901 ir_raw_gen_manchester -EXPORT_SYMBOL drivers/media/rc/rc-core 0x8c313a43 ir_raw_handler_register +EXPORT_SYMBOL drivers/media/rc/rc-core 0x842161f0 ir_raw_handler_register EXPORT_SYMBOL drivers/media/rc/rc-core 0x9e12e343 ir_raw_gen_pd -EXPORT_SYMBOL drivers/media/rc/rc-core 0xae3a577d ir_raw_handler_unregister EXPORT_SYMBOL drivers/media/rc/rc-core 0xb5516017 ir_raw_encode_carrier +EXPORT_SYMBOL drivers/media/rc/rc-core 0xb5fcf5df ir_raw_handler_unregister EXPORT_SYMBOL drivers/media/rc/rc-core 0xf446074f ir_raw_encode_scancode -EXPORT_SYMBOL drivers/media/tuners/fc0011 0x8dce1205 fc0011_attach -EXPORT_SYMBOL drivers/media/tuners/fc0012 0xc3e4cb4a fc0012_attach -EXPORT_SYMBOL drivers/media/tuners/fc0013 0x930f50fb fc0013_attach -EXPORT_SYMBOL drivers/media/tuners/fc0013 0x96a8d8d3 fc0013_rc_cal_reset -EXPORT_SYMBOL drivers/media/tuners/fc0013 0xa5348233 fc0013_rc_cal_add -EXPORT_SYMBOL drivers/media/tuners/max2165 0xec7c3c18 max2165_attach -EXPORT_SYMBOL drivers/media/tuners/mc44s803 0x80cef3de mc44s803_attach -EXPORT_SYMBOL drivers/media/tuners/mt2060 0x10d48135 mt2060_attach -EXPORT_SYMBOL drivers/media/tuners/mt2131 0x9f1be09c mt2131_attach -EXPORT_SYMBOL drivers/media/tuners/mt2266 0x579c592f mt2266_attach -EXPORT_SYMBOL drivers/media/tuners/mxl5005s 0x27f53f6f mxl5005s_attach -EXPORT_SYMBOL drivers/media/tuners/qt1010 0x7a369c5f qt1010_attach -EXPORT_SYMBOL drivers/media/tuners/tda18218 0x100f00fb tda18218_attach +EXPORT_SYMBOL drivers/media/tuners/fc0011 0x0af240ee fc0011_attach +EXPORT_SYMBOL drivers/media/tuners/fc0012 0x6763a162 fc0012_attach +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x30cad103 fc0013_rc_cal_reset +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x44c6f53d fc0013_attach +EXPORT_SYMBOL drivers/media/tuners/fc0013 0xb8b20a8e fc0013_rc_cal_add +EXPORT_SYMBOL drivers/media/tuners/max2165 0x2f6a3cd3 max2165_attach +EXPORT_SYMBOL drivers/media/tuners/mc44s803 0xa8c03e4d mc44s803_attach +EXPORT_SYMBOL drivers/media/tuners/mt2060 0x8d604f18 mt2060_attach +EXPORT_SYMBOL drivers/media/tuners/mt2131 0x02af2eb1 mt2131_attach +EXPORT_SYMBOL drivers/media/tuners/mt2266 0xb78f8f24 mt2266_attach +EXPORT_SYMBOL drivers/media/tuners/mxl5005s 0x52d2ac04 mxl5005s_attach +EXPORT_SYMBOL drivers/media/tuners/qt1010 0x9a254a54 qt1010_attach +EXPORT_SYMBOL drivers/media/tuners/tda18218 0x5d3bedf3 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/tuner-xc2028 0x63f768dd xc2028_attach -EXPORT_SYMBOL drivers/media/tuners/xc4000 0x211db25e xc4000_attach -EXPORT_SYMBOL drivers/media/tuners/xc5000 0x446681f4 xc5000_attach -EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x368b9847 cx231xx_register_extension -EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x8474184f cx231xx_unregister_extension -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x167bc521 dvb_usbv2_generic_write_locked -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x21df8488 dvb_usbv2_suspend -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x252bde03 dvb_usbv2_generic_rw_locked -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x3ae43726 dvb_usbv2_resume -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x6630dd98 dvb_usbv2_disconnect -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x6d24b65f dvb_usbv2_probe -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x86e20579 dvb_usbv2_reset_resume -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x8cee00e9 dvb_usbv2_generic_rw -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xbdfe2bfc dvb_usbv2_generic_write -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x0b610f10 dvb_usb_device_init -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x0d7bf413 usb_cypress_load_firmware -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x2b5b8532 dvb_usb_generic_write -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x3eb78529 dvb_usb_device_exit -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x49857854 dvb_usb_generic_rw +EXPORT_SYMBOL drivers/media/tuners/tuner-xc2028 0x13cf6df0 xc2028_attach +EXPORT_SYMBOL drivers/media/tuners/xc4000 0xa782fe40 xc4000_attach +EXPORT_SYMBOL drivers/media/tuners/xc5000 0x58f29e9f xc5000_attach +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x63d297e3 cx231xx_register_extension +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0xf9aa0928 cx231xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x06664716 dvb_usbv2_generic_rw_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x0a663772 dvb_usbv2_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x569a99f2 dvb_usbv2_generic_write_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x67d1075b dvb_usbv2_disconnect +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x6d862d31 dvb_usbv2_reset_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xa01664af dvb_usbv2_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xd8bf2f4c dvb_usbv2_suspend +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xdbcdd0cf dvb_usbv2_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xe1050974 dvb_usbv2_probe +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x16b76627 dvb_usb_device_init +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x24128ac1 dvb_usb_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x605b6088 dvb_usb_nec_rc_key_to_event +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x7e28a13d 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 0xd4759ca8 dvb_usb_nec_rc_key_to_event +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xafa300e6 usb_cypress_load_firmware +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xe0969081 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 0x6f145eb5 af9005_rc_decode +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x6cba16df 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 0x21cc4749 dibusb_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x0252c8d8 dibusb_read_eeprom_byte +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x02a4c6e3 dibusb_pid_filter +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x182e2a35 dibusb_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x3caecc8f dibusb_i2c_algo +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x3e6f7b00 dibusb_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x6f6b3c88 dibusb_pid_filter_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 0xa008a9d2 dibusb_rc_query -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xa3a21105 dibusb2_0_streaming_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xa56353cf dibusb_pid_filter_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xac1d87b0 dibusb_read_eeprom_byte -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xbe3c9236 dibusb_i2c_algo -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xe1553581 dibusb_pid_filter -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xeb598a7e dibusb2_0_power_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xfe490697 dibusb_streaming_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0x0aedfa7a dibusb_dib3000mc_tuner_attach -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0xe0c60616 dibusb_dib3000mc_frontend_attach -EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x5b53b6ad em28xx_unregister_extension -EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0xb1ae1595 em28xx_register_extension -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x260956ed go7007_register_encoder -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x33601cf8 go7007_snd_init -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x4526b4a8 go7007_alloc -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x5433d468 go7007_read_interrupt -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x5a5d9073 go7007_boot_encoder -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x7d29ef5f go7007_read_addr -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xabffa214 go7007_parse_video_stream -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xf2e44f6e go7007_snd_remove -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xff5b1775 go7007_update_board -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x01f766e2 gspca_expo_autogain -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x23faea30 gspca_resume -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x61e225a8 gspca_suspend -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x8b64745a gspca_frame_add +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xc7c1144f dibusb_rc_query +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xf05a59e7 dibusb2_0_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xff388bf4 dibusb2_0_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0x6182989e dibusb_dib3000mc_frontend_attach +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0xa72ace89 dibusb_dib3000mc_tuner_attach +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x0fc4d358 em28xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0xf17611f5 em28xx_register_extension +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x11ec168f go7007_update_board +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x223e01b7 go7007_register_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x225eb95e go7007_snd_remove +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x47bb914a go7007_read_interrupt +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x602b760a go7007_boot_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x68141aa9 go7007_read_addr +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x97c7f237 go7007_parse_video_stream +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xb3151fff go7007_alloc +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xff94a484 go7007_snd_init +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x06f75d04 gspca_resume +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x0c713374 gspca_suspend +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x40596fce gspca_dev_probe +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x5b0e4f5e gspca_dev_probe2 +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x5decd6fa gspca_frame_add +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x6119b97d gspca_coarse_grained_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x8b1c7aef gspca_disconnect EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9670af2c gspca_debug -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9c03a99f gspca_dev_probe2 -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xc95a04c0 gspca_disconnect -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xdad40906 gspca_coarse_grained_expo_autogain -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xf63e55ee gspca_dev_probe -EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x638d52a4 tm6000_unregister_extension -EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x9cb86b3b tm6000_register_extension -EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0xe44e7ccd tm6000_init_digital_mode -EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x88ed109c ttusbdecfe_dvbt_attach -EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0xa32a1156 ttusbdecfe_dvbs_attach -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x0ba4e57e v4l2_async_notifier_register -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x1472fd38 v4l2_async_notifier_init -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x32de4665 v4l2_async_register_subdev -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x3cbaae0e v4l2_async_notifier_unregister -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x4c71eafd v4l2_async_unregister_subdev -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xd2100731 v4l2_async_subdev_notifier_register -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x1bb78e18 v4l2_m2m_mmap -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x2b10fb13 v4l2_m2m_buf_done_and_job_finish +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9767e590 gspca_expo_autogain +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x561f8c49 tm6000_register_extension +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x57854672 tm6000_unregister_extension +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x9f805a9c tm6000_init_digital_mode +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x141fbd7c ttusbdecfe_dvbs_attach +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x3fd8bcb6 ttusbdecfe_dvbt_attach +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x4c1a2e8f v4l2_async_notifier_init +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x6170703a v4l2_async_notifier_register +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x72a713b9 v4l2_async_subdev_notifier_register +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x7a1e61ee v4l2_async_unregister_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x9c029ab3 v4l2_async_register_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xf43b1030 v4l2_async_notifier_unregister +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x338b4e5f v4l2_m2m_buf_done_and_job_finish +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x3b6f2108 v4l2_m2m_job_finish EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x459e133f v4l2_m2m_get_curr_priv EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x5352d022 v4l2_m2m_resume -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x96f95393 v4l2_m2m_job_finish -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xa397ff36 v4l2_m2m_get_vq +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x7ccc3b3d v4l2_m2m_get_vq +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x85809466 v4l2_m2m_mmap EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xf626dd03 v4l2_m2m_suspend -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x042769b6 v4l2_ctrl_new_int_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x05fb68ee v4l2_ctrl_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x01854303 v4l2_ctrl_g_ctrl_int64 EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0614dd5a v4l2_video_std_frame_period EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x082737e8 v4l2_ctrl_merge -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x08681e62 v4l2_ctrl_new_fwnode_properties -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0d25f208 v4l2_g_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x11bcee8f v4l2_ctrl_new_std_compound EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x123959a1 v4l2_type_names +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x14883342 v4l2_ctrl_handler_init_class +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x154f08e7 v4l2_ctrl_notify EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x16244fe5 v4l2_prio_check -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x18177860 video_unregister_device -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1db51721 v4l2_ctrl_handler_init_class -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x20810a8e v4l2_ctrl_activate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1721425e video_device_release +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1af74fbc v4l2_ctrl_new_int_menu EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2342f1ae v4l2_prio_open -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x26505942 video_device_release_empty +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2453d2f3 __v4l2_ctrl_modify_range EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x28b12cc9 v4l2_format_info -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x28ed6bbb __v4l2_ctrl_grab -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x297ef4d4 video_devdata -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2a110714 v4l2_ctrl_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2a875102 v4l2_ctrl_request_complete -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2be4dfde v4l2_ctrl_new_std_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2c17f73c __v4l2_ctrl_s_ctrl_string +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2c79c11a __video_register_device EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x315de2cf v4l2_ctrl_get_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x322e4c9f v4l2_ctrl_subscribe_event EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x32d43420 v4l2_ctrl_get_name -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x35f36b24 __v4l2_ctrl_modify_range -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x38f18631 v4l2_ctrl_new_std_menu_items -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3928d16c v4l2_ctrl_handler_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x33d8245c v4l2_ctrl_handler_free +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x35dedc63 video_unregister_device EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3adbd595 v4l2_field_names EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3bdd0f94 v4l2_prio_change -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x40f1e500 v4l2_ctrl_handler_free -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4463d6ed __v4l2_ctrl_s_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x49501120 v4l2_subdev_call_wrappers -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4e6d0b58 v4l2_ctrl_auto_cluster -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x50dfbc3c v4l2_ctrl_g_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x55f13a82 video_device_alloc -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5852eeee v4l2_subdev_init -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x65f83e36 v4l2_ctrl_request_setup -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6ab6ab63 video_ioctl2 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7785c3da __video_register_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3d3476b9 v4l2_ctrl_radio_filter +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3f36e0a5 v4l2_ctrl_subdev_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x44c8fe66 v4l2_ctrl_handler_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x45ac803e v4l2_ctrl_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x527bc7ff video_device_release_empty +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x54b06457 __v4l2_ctrl_grab +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5adc4e93 v4l2_ctrl_new_std +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x60f991cb v4l2_ctrl_sub_ev_ops +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x62a2ce14 v4l2_ctrl_new_custom +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6390a02e v4l2_g_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6558eccd __v4l2_ctrl_s_ctrl_string +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x66fb2d72 v4l2_try_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6811b864 v4l2_subdev_call_wrappers +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x68d2ca0d v4l2_queryctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x69c3eb39 v4l2_ctrl_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6ebd2869 v4l2_ctrl_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7a41dedf video_ioctl2 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7c643d73 v4l2_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7c8a1ce0 v4l2_query_ext_ctrl EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8106095a v4l2_prio_max +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x813fa7c3 v4l2_ctrl_subdev_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x88953e61 v4l2_subdev_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x88cb4202 v4l2_ctrl_new_std_menu EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x89e3897d v4l2_ctrl_query_fill -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8affcf16 v4l2_ctrl_new_custom -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8deb1edc video_device_release -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa4a543c5 v4l2_ctrl_handler_setup -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xaba54f98 v4l2_ctrl_add_handler -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xacf3adcc v4l2_queryctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xae54ed98 v4l2_ctrl_subdev_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb10720c6 v4l2_ctrl_poll -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb1714b6a v4l2_ctrl_new_std +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8dca6be1 v4l2_querymenu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x94cd0207 v4l2_ctrl_new_std_menu_items +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xac44e63a __v4l2_ctrl_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb53712c2 v4l2_ctrl_cluster EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb77b0159 v4l2_prio_init EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbc5671dc v4l_printk_ioctl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc2c0e89a v4l2_ctrl_radio_filter -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc438ac30 __v4l2_ctrl_s_ctrl_compound -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcc6f1ccd v4l2_ctrl_find +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xca5f5200 v4l2_ctrl_request_complete +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcbb47ddf v4l2_ctrl_poll +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcc35e75a v4l2_ctrl_add_handler EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcda04a5b v4l2_prio_close -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcf787039 v4l2_try_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xce95fce9 v4l2_ctrl_new_fwnode_properties +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcff5f2b5 v4l2_ctrl_auto_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd0f312a1 video_devdata EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd16d9c01 v4l2_ctrl_get_int_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd57d5146 v4l2_query_ext_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd9aec9b4 __v4l2_ctrl_s_ctrl_int64 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdc2831fa v4l2_querymenu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd72451bb v4l2_ctrl_request_setup EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdc7e0128 v4l2_ctrl_fill -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdf1730a3 v4l2_ctrl_notify -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe1ffcb2d v4l2_ctrl_new_std_compound EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2b92059 v4l2_video_std_construct -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe4d63f90 v4l2_ctrl_sub_ev_ops -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe93f9e70 v4l2_ctrl_g_ctrl_int64 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xeb302e8b v4l2_s_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xec357f8e v4l2_s_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xefa021e3 v4l2_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe5ac7e63 video_device_alloc +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe7de6438 __v4l2_ctrl_s_ctrl_compound EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf3251e7b v4l2_norm_to_name +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf41fde48 v4l2_ctrl_find +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf43580fe v4l2_ctrl_activate EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf50fecbc v4l2_ctrl_replace -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf72fb268 v4l2_ctrl_subdev_subscribe_event -EXPORT_SYMBOL drivers/memstick/core/memstick 0x1de261d2 memstick_free_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x26525a15 memstick_add_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x2b193f31 memstick_alloc_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x36588e9c memstick_unregister_driver -EXPORT_SYMBOL drivers/memstick/core/memstick 0x3f55dfed memstick_new_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0x42046519 memstick_detect_change +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf636d9e7 v4l2_ctrl_handler_setup +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf8cfe91e __v4l2_ctrl_s_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfb4cd763 v4l2_s_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfd2f5d13 v4l2_s_ctrl +EXPORT_SYMBOL drivers/memstick/core/memstick 0x042435ef memstick_detect_change +EXPORT_SYMBOL drivers/memstick/core/memstick 0x139bbf58 memstick_unregister_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0x35bfb0dc memstick_add_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x43904759 memstick_alloc_host EXPORT_SYMBOL drivers/memstick/core/memstick 0x4a4e5778 memstick_init_req_sg -EXPORT_SYMBOL drivers/memstick/core/memstick 0x99b198e6 memstick_register_driver -EXPORT_SYMBOL drivers/memstick/core/memstick 0x9d9bc689 memstick_set_rw_addr +EXPORT_SYMBOL drivers/memstick/core/memstick 0x4d3ca98f memstick_next_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0x65559103 memstick_free_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x98e6ebcb memstick_resume_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xa68a1550 memstick_suspend_host EXPORT_SYMBOL drivers/memstick/core/memstick 0xae50437c memstick_init_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0xdc9c9bc3 memstick_resume_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0xf14edfea memstick_remove_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0xf5827095 memstick_suspend_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0xfb577dda memstick_next_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0xb362850c memstick_new_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0xbec07d46 memstick_register_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0xe4f852ae memstick_set_rw_addr +EXPORT_SYMBOL drivers/memstick/core/memstick 0xf7678424 memstick_remove_host EXPORT_SYMBOL drivers/memstick/host/r592 0x52f1b23b memstick_debug_get_tpc_name -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x04573a57 mpt_attach -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x080f4014 mpt_halt_firmware -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x14160765 mpt_free_fw_memory -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1fc4fe4f mpt_GetIocState -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x229cdbf2 mpt_set_taskmgmt_in_progress_flag -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x29656955 mpt_free_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x47d5ffce mpt_put_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x49a10eb2 mpt_print_ioc_summary +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0004211a mpt_Soft_Hard_ResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0728a755 mpt_suspend +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x15a01e06 mpt_detach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1bfacf12 mpt_raid_phys_disk_pg0 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x27689d31 mpt_put_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4871a1a3 mpt_device_driver_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4939d622 mpt_get_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4de0e6a1 mpt_config EXPORT_SYMBOL drivers/message/fusion/mptbase 0x502108d0 mpt_fwfault_debug -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x55b10e2f mpt_resume +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x51a0e647 mpt_findImVolumes +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x5c1f32e1 mptbase_sas_persist_operation EXPORT_SYMBOL drivers/message/fusion/mptbase 0x610b257e mpt_reset_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x618020a8 mpt_suspend -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x6979913f mpt_reset_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x6a51c896 mpt_device_driver_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x6ebf29f7 mpt_set_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x6f835cc5 mpt_put_msg_frame_hi_pri +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x704c39b4 mpt_HardResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x741a3b59 mpt_register EXPORT_SYMBOL drivers/message/fusion/mptbase 0x74a0134a mpt_device_driver_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7c4b3fe2 mpt_config -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7d78a1cc mpt_send_handshake_request -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7fff1702 mpt_get_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x88163ee0 mptbase_sas_persist_operation -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x88e4c2ac mpt_alloc_fw_memory -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x88f186c2 mpt_raid_phys_disk_pg1 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x75b42aa5 mpt_alloc_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x778c6bad mpt_halt_firmware +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x809d818e mpt_event_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x81b814e6 mpt_send_handshake_request +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x88aacf21 mpt_print_ioc_summary +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x8b3680fe mpt_reset_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x8d97b708 mpt_resume +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x918c2ae8 mpt_free_msg_frame EXPORT_SYMBOL drivers/message/fusion/mptbase 0x981efe92 mpt_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa123b2e1 mpt_verify_adapter -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa4ab9d31 mpt_raid_phys_disk_pg0 -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb043df92 mpt_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xbbd6d5e2 mpt_clear_taskmgmt_in_progress_flag -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc272e5b7 mpt_event_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdb0a7d24 mpt_Soft_Hard_ResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa426433e mpt_raid_phys_disk_pg1 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xbae6fca6 mpt_attach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xbc97563b mpt_clear_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc0fa7cd5 mpt_free_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd4a9da6a mpt_verify_adapter +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd95f4c78 mpt_raid_phys_disk_get_num_paths EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdd805159 ioc_list -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdfdc0cdf mpt_put_msg_frame_hi_pri EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe6c1e126 mpt_event_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe89476ab mpt_findImVolumes -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xeffd698e mpt_detach -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf0140de9 mpt_raid_phys_disk_get_num_paths -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xff32d409 mpt_HardResetHandler -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x0b7a15bf mptscsih_resume -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x0fab55ae mptscsih_ioc_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x258af254 mptscsih_taskmgmt_response_code -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3f52d24c mptscsih_suspend -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x40c09963 mptscsih_host_attrs -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x41d5c859 mptscsih_bus_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x46ba638d mptscsih_host_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x5890cdb0 mptscsih_qcmd -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x5c2214b2 mptscsih_taskmgmt_complete -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x6b6f61be mptscsih_slave_configure -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x76cade9b mptscsih_slave_destroy -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x78cb3a8a mptscsih_remove -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7cfdd63e mptscsih_flush_running_cmds -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7fd65f2f mptscsih_get_scsi_lookup -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x8185dec0 mptscsih_IssueTaskMgmt -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x86c63f73 mptscsih_event_process -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x8c310111 mptscsih_io_done -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x987975d2 mptscsih_raid_id_to_num -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xab6bcd8d mptscsih_abort -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb558257d mptscsih_bios_param -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xbc3b2544 mptscsih_info -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe460a6c8 mptscsih_change_queue_depth -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe4b08ed5 mptscsih_show_info -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe64c28ef mptscsih_shutdown -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xea10febd mptscsih_is_phys_disk -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf1d90d47 mptscsih_dev_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xfa4497f5 mptscsih_scandv_complete -EXPORT_SYMBOL drivers/mfd/axp20x 0x1991f2c4 axp20x_device_probe -EXPORT_SYMBOL drivers/mfd/axp20x 0x248c698f axp20x_match_device -EXPORT_SYMBOL drivers/mfd/axp20x 0x57a718e5 axp20x_device_remove -EXPORT_SYMBOL drivers/mfd/dln2 0x14836afa dln2_transfer -EXPORT_SYMBOL drivers/mfd/dln2 0x54846b8f dln2_register_event_cb -EXPORT_SYMBOL drivers/mfd/dln2 0xf5e69be7 dln2_unregister_event_cb -EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x20a2707d pasic3_write_register -EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x4b98f55c pasic3_read_register -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x0f0a3e14 mc13xxx_get_flags -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x24a4ff36 mc13xxx_irq_status -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x6264b3d3 mc13xxx_irq_request -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x669fa295 mc13xxx_reg_rmw -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x72c66b98 mc13xxx_reg_write -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x76486987 mc13xxx_irq_free -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x9db8c9d6 mc13xxx_unlock -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xb9f8349f mc13xxx_reg_read -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xcd88e287 mc13xxx_lock -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xdd44f373 mc13xxx_irq_unmask -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xef4ea5e3 mc13xxx_irq_mask +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe72e5bcd mpt_GetIocState +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x0952c169 mptscsih_qcmd +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x31fa07b5 mptscsih_host_attrs +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3902535d mptscsih_shutdown +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x4d333a90 mptscsih_remove +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x50107cb9 mptscsih_scandv_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x545a466a mptscsih_ioc_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7767e497 mptscsih_raid_id_to_num +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7a60d993 mptscsih_dev_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7d7d7f4a mptscsih_show_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x807868f7 mptscsih_bus_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x8d16b059 mptscsih_bios_param +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x8d277af4 mptscsih_IssueTaskMgmt +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x9c3040e6 mptscsih_taskmgmt_response_code +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x9e6b7546 mptscsih_slave_destroy +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x9f96e69e mptscsih_slave_configure +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa583d2ff mptscsih_suspend +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa8ee83a4 mptscsih_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xafed669e mptscsih_io_done +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb1002dde mptscsih_is_phys_disk +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xbb8b8f76 mptscsih_abort +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xbcbef938 mptscsih_event_process +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xbdb9ec0e mptscsih_change_queue_depth +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xcb42ecb4 mptscsih_flush_running_cmds +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xde3783c2 mptscsih_get_scsi_lookup +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe45800cc mptscsih_resume +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf7d8445a mptscsih_host_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf90154a6 mptscsih_taskmgmt_complete +EXPORT_SYMBOL drivers/mfd/axp20x 0x37bea254 axp20x_device_probe +EXPORT_SYMBOL drivers/mfd/axp20x 0x6366e236 axp20x_match_device +EXPORT_SYMBOL drivers/mfd/axp20x 0xf195965a axp20x_device_remove +EXPORT_SYMBOL drivers/mfd/dln2 0x0f58491d dln2_transfer +EXPORT_SYMBOL drivers/mfd/dln2 0x63625cd9 dln2_unregister_event_cb +EXPORT_SYMBOL drivers/mfd/dln2 0xdb26e446 dln2_register_event_cb +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x63716408 pasic3_read_register +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0xff30a727 pasic3_write_register +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x15c87e98 mc13xxx_get_flags +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x30473cf6 mc13xxx_reg_rmw +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x3b93abc0 mc13xxx_unlock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x5f1e5b1c mc13xxx_reg_write +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x88977020 mc13xxx_reg_read +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xa7c65b2e mc13xxx_irq_request +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xb9760b12 mc13xxx_lock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xc0ac0fa7 mc13xxx_irq_status +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xdff1b3c8 mc13xxx_irq_unmask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xf9d199aa mc13xxx_irq_free +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xfa7c0695 mc13xxx_irq_mask EXPORT_SYMBOL drivers/mfd/tps65010 0x02d4ad0f tps65013_set_low_pwr EXPORT_SYMBOL drivers/mfd/tps65010 0x0c6ad2cf tps65010_config_vdcdc2 EXPORT_SYMBOL drivers/mfd/tps65010 0x28485130 tps65010_config_vregs1 @@ -2321,197 +2321,197 @@ 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 0x0695b4e7 wm8994_irq_exit -EXPORT_SYMBOL drivers/mfd/wm8994 0x1c98b790 wm1811_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994 0x83fab5bd wm8958_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994 0xb1c00e24 wm8994_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994 0xd344bb7c wm8994_irq_init -EXPORT_SYMBOL drivers/mfd/wm8994 0xde3253ce wm8994_base_regmap_config -EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x85be9427 ad_dpot_remove -EXPORT_SYMBOL drivers/misc/ad525x_dpot 0xfc37d9d8 ad_dpot_probe +EXPORT_SYMBOL drivers/mfd/wm8994 0x0cd3f9ce wm8994_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0x3ee94257 wm8958_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0x8c0b7a66 wm8994_irq_exit +EXPORT_SYMBOL drivers/mfd/wm8994 0xa18b407a wm1811_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0xbd29ffb9 wm8994_irq_init +EXPORT_SYMBOL drivers/mfd/wm8994 0xe8ec6f72 wm8994_base_regmap_config +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0xa6ce2a3d ad_dpot_remove +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0xe28695d8 ad_dpot_probe EXPORT_SYMBOL drivers/misc/altera-stapl/altera-stapl 0x5bafa76e altera_init -EXPORT_SYMBOL drivers/misc/c2port/core 0x2820cebb c2port_device_register -EXPORT_SYMBOL drivers/misc/c2port/core 0x382143e4 c2port_device_unregister +EXPORT_SYMBOL drivers/misc/c2port/core 0x1ec693a7 c2port_device_register +EXPORT_SYMBOL drivers/misc/c2port/core 0xd9e48eb7 c2port_device_unregister +EXPORT_SYMBOL drivers/misc/tifm_core 0x0f7a689a tifm_free_adapter EXPORT_SYMBOL drivers/misc/tifm_core 0x0ffb277f tifm_queue_work -EXPORT_SYMBOL drivers/misc/tifm_core 0x24b0f1dd tifm_eject -EXPORT_SYMBOL drivers/misc/tifm_core 0x2b3fb9b5 tifm_free_device -EXPORT_SYMBOL drivers/misc/tifm_core 0x2b6da673 tifm_alloc_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0x36f6f1d2 tifm_map_sg -EXPORT_SYMBOL drivers/misc/tifm_core 0x4e363418 tifm_free_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0x7e66fbd9 tifm_add_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0x906d3328 tifm_unregister_driver -EXPORT_SYMBOL drivers/misc/tifm_core 0x91cc4f0a tifm_unmap_sg -EXPORT_SYMBOL drivers/misc/tifm_core 0x9bf7ee83 tifm_remove_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0xd564432e tifm_alloc_device -EXPORT_SYMBOL drivers/misc/tifm_core 0xf3f36adc tifm_has_ms_pif -EXPORT_SYMBOL drivers/misc/tifm_core 0xf64487e3 tifm_register_driver -EXPORT_SYMBOL drivers/mmc/host/cqhci 0xb49bbeda cqhci_irq -EXPORT_SYMBOL drivers/mmc/host/cqhci 0xd1580c53 cqhci_pltfm_init -EXPORT_SYMBOL drivers/mmc/host/cqhci 0xf10c9536 cqhci_resume -EXPORT_SYMBOL drivers/mmc/host/cqhci 0xf81b3512 cqhci_deactivate -EXPORT_SYMBOL drivers/mmc/host/cqhci 0xfa2c2cc0 cqhci_init -EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0x23a78c64 mmc_spi_put_pdata -EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0x3c695e50 mmc_spi_get_pdata -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x0fa7bdad cfi_build_cmd_addr -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x316abcc1 cfi_build_cmd -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x41b57f36 cfi_read_pri -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x52e8608c cfi_send_gen_cmd -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x643da869 cfi_varsize_frob -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x7401f03a cfi_merge_status -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xab9807f6 cfi_fixup +EXPORT_SYMBOL drivers/misc/tifm_core 0x140dda3c tifm_alloc_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x1d781d7e tifm_free_device +EXPORT_SYMBOL drivers/misc/tifm_core 0x242b1d22 tifm_unmap_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0x3d04ee96 tifm_alloc_device +EXPORT_SYMBOL drivers/misc/tifm_core 0x4275c89e tifm_remove_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x4da59833 tifm_register_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0x52c4a632 tifm_eject +EXPORT_SYMBOL drivers/misc/tifm_core 0x71da9413 tifm_has_ms_pif +EXPORT_SYMBOL drivers/misc/tifm_core 0x853b35c2 tifm_unregister_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0x8ad6a8ad tifm_add_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xae3ef744 tifm_map_sg +EXPORT_SYMBOL drivers/mmc/host/cqhci 0x2bce99a4 cqhci_resume +EXPORT_SYMBOL drivers/mmc/host/cqhci 0x50975e58 cqhci_pltfm_init +EXPORT_SYMBOL drivers/mmc/host/cqhci 0x5f28d43a cqhci_irq +EXPORT_SYMBOL drivers/mmc/host/cqhci 0x7fd7aead cqhci_init +EXPORT_SYMBOL drivers/mmc/host/cqhci 0x854ab077 cqhci_deactivate +EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0x5b5a2913 mmc_spi_put_pdata +EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0xb5230b7c mmc_spi_get_pdata +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x31bc311d cfi_build_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x6d90d9a3 cfi_varsize_frob +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x7a045053 cfi_merge_status +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x7dd0592c cfi_send_gen_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x8c721851 cfi_build_cmd_addr +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x9dc567f6 cfi_fixup +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xc129505e cfi_read_pri EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xff9fa623 cfi_udelay -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x21a1d659 register_mtd_chip_driver -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x5bfc23cb unregister_mtd_chip_driver -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x96b6ce9f map_destroy -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xaa6ed3d1 do_map_probe -EXPORT_SYMBOL drivers/mtd/chips/gen_probe 0x2144ba45 mtd_do_chip_probe -EXPORT_SYMBOL drivers/mtd/lpddr/lpddr_cmds 0x124d3abd lpddr_cmdset -EXPORT_SYMBOL drivers/mtd/maps/map_funcs 0x55378d8b simple_map_init -EXPORT_SYMBOL drivers/mtd/mtd 0xc0ddfa9b mtd_concat_destroy -EXPORT_SYMBOL drivers/mtd/mtd 0xc4f15f80 mtd_concat_create -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x0aba96bc nand_ecc_get_sw_engine -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x40db46fa nand_ecc_finish_io_req -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x85fc6af0 nand_ecc_sw_bch_init_ctx -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x953b6b2c nand_ecc_sw_hamming_correct -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x97d6f4df nand_ecc_get_on_die_hw_engine -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x9f2df6de nand_ecc_sw_bch_get_engine -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xa701a110 nand_ecc_sw_bch_cleanup_ctx -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xa70dbc67 nand_ecc_sw_hamming_calculate -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xb2bc83d8 of_get_nand_ecc_user_config -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xb4a6ac5b nand_ecc_sw_bch_calculate -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xbac9d8a4 nand_ecc_prepare_io_req -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xc4213030 nand_ecc_sw_hamming_init_ctx -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xcfd492c9 nand_ecc_sw_hamming_cleanup_ctx -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xd2b03fa7 nand_ecc_init_ctx -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xd4605dec nand_ecc_sw_hamming_get_engine -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xd5390a8a nand_ecc_is_strong_enough +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x2ffb2efa register_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xb0ff9989 unregister_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xead00d69 do_map_probe +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xfc5c83be map_destroy +EXPORT_SYMBOL drivers/mtd/chips/gen_probe 0x5eda7bce mtd_do_chip_probe +EXPORT_SYMBOL drivers/mtd/lpddr/lpddr_cmds 0x2127461e lpddr_cmdset +EXPORT_SYMBOL drivers/mtd/maps/map_funcs 0x4c114fc9 simple_map_init +EXPORT_SYMBOL drivers/mtd/mtd 0x0aa38736 mtd_concat_destroy +EXPORT_SYMBOL drivers/mtd/mtd 0x53d9d85c mtd_concat_create +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x0a80e051 nand_ecc_sw_bch_calculate +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x16973e9c nand_ecc_sw_bch_correct +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x454fcc54 nand_ecc_sw_hamming_get_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x45d6e491 nand_ecc_finish_io_req +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x5c8a9f65 nand_ecc_get_sw_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x6638a33a nand_ecc_sw_hamming_init_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x687cd343 nand_ecc_sw_hamming_calculate +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x7a32450d nand_ecc_sw_hamming_cleanup_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x8b2b2a48 nand_ecc_prepare_io_req +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x969dcf97 nand_ecc_sw_hamming_correct +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xa3b79eca nand_ecc_init_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xa998adbe nand_ecc_cleanup_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xb4576567 nand_ecc_sw_bch_cleanup_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xbc8428b0 of_get_nand_ecc_user_config +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xc1c50b79 nand_ecc_get_on_die_hw_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xe1d6acf1 nand_ecc_is_strong_enough +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xe5450f98 nand_ecc_sw_bch_init_ctx EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xe6db989b ecc_sw_hamming_correct -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xea253662 nand_ecc_sw_bch_correct -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xf582c7b0 nand_ecc_cleanup_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xfbff06f7 nand_ecc_sw_bch_get_engine EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xff4351b0 ecc_sw_hamming_calculate -EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0x1421bf15 onenand_addr -EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0x505b1f25 flexonenand_region -EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x069613f9 denali_init +EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0x222e9dd0 flexonenand_region +EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0xdbed0256 onenand_addr EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x30db096f denali_calc_ecc_bytes -EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x87db61e7 denali_remove -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x07cd759a nand_read_page_raw -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x27885a80 rawnand_sw_hamming_correct -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x3f2fd806 rawnand_sw_hamming_calculate -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x617670ab nand_get_set_features_notsupp -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x6c74d7e6 rawnand_sw_bch_correct -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x739349c4 nand_scan_with_ids -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x7ae2cb05 nand_create_bbt -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x7d214d55 rawnand_sw_bch_init -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x886291e4 rawnand_sw_bch_cleanup -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x8c099052 nand_write_oob_std +EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0xc181a7f6 denali_init +EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0xe08eddea denali_remove +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x0cb892e8 nand_write_oob_std +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x10378e89 nand_scan_with_ids +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x13437845 rawnand_sw_hamming_calculate +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x2ea0ab10 nand_read_page_raw +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x2f13cee7 rawnand_sw_bch_correct +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x3a50d4e0 rawnand_sw_bch_cleanup +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x3ceabc15 nand_create_bbt +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x42d13cea rawnand_dt_parse_gpio_cs +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x4ca9a7e0 rawnand_sw_hamming_init +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x88f8d06a nand_write_page_raw EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x8ecbb3b8 nand_check_erased_ecc_chunk -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x8f7ef98c nand_monolithic_write_page_raw -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x9cdf34d5 rawnand_dt_parse_gpio_cs -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xabe21e8c nand_read_oob_std -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xae04ea15 rawnand_sw_hamming_init -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xc602fb4c nand_monolithic_read_page_raw -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xc6634c32 nand_write_page_raw -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xfad604ed rawnand_sw_hamming_cleanup -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x00f63c7a arcnet_send_packet -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x0495a705 arc_raw_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x3a2ef5e7 arcnet_unregister_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x3e6b5ace free_arcdev -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6438095b arcnet_close +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x9041ae69 rawnand_sw_bch_init +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xc035181f nand_monolithic_read_page_raw +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xcda85f33 nand_monolithic_write_page_raw +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xce42d31b nand_get_set_features_notsupp +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xe94aeaec rawnand_sw_hamming_cleanup +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xf7c01a5e rawnand_sw_hamming_correct +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xf7c0e7ad nand_read_oob_std +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x09b9ea09 alloc_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x1ebdc84a arcnet_send_packet +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x1ec88f3c arcnet_close +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x5da80734 arc_bcast_proto EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x8a40a764 arc_proto_map -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x8b35326a alloc_arcdev -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x8b43c2c5 arc_bcast_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x90a9a9f9 arc_proto_default -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xb5844d11 arcnet_timeout -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xbb98112f arcnet_open +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x760099d1 arc_proto_default +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x7b35530c free_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x933cfab0 arcnet_unregister_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xba19d060 arc_raw_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xbd07c6de arcnet_timeout +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xe614ba8a arcnet_open EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecb730b0 arcnet_interrupt -EXPORT_SYMBOL drivers/net/arcnet/com20020 0xa045534a com20020_netdev_ops -EXPORT_SYMBOL drivers/net/arcnet/com20020 0xa16b34a1 com20020_found -EXPORT_SYMBOL drivers/net/arcnet/com20020 0xc89b894a com20020_check -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x01d417bf b53_mirror_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x02bdfd0a b53_get_mac_eee -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x055c9bbb b53_imp_vlan_setup -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x0eb98054 b53_vlan_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x16df966c b53_phylink_mac_link_state -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x1e0642a9 b53_fdb_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x2120af11 b53_br_fast_age -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x26fce955 b53_br_flags_pre -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x2f3eeda3 b53_switch_alloc -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x3139b064 b53_br_flags -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x31604182 b53_get_ethtool_stats -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x438eac6d b53_mdb_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x43dc2211 b53_mdb_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x44d50c97 b53_switch_register -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x4665f610 b53_enable_port -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x483863ce b53_phylink_validate -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x4fa96777 b53_br_leave -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x5984ac15 b53_phylink_mac_link_up -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x70b11a7f b53_setup_devlink_resources -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x76d59182 b53_br_set_stp_state -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x82c68526 b53_get_strings -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x85870135 b53_configure_vlan -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x8be25ffc b53_set_mac_eee -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x8e6cbda2 b53_eee_enable_set -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x94fefd5b b53_phylink_mac_an_restart -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x9b70c0a2 b53_fdb_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xad925659 b53_switch_detect -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb35be756 b53_get_sset_count -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb84ac717 b53_phylink_mac_link_down -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xbcf7a607 b53_vlan_filtering -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc64ca2fd b53_fdb_dump -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc77cd2fb b53_br_join -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc9b8f1d9 b53_brcm_hdr_setup -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd5007bff b53_phylink_mac_config -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd8bcb57b b53_vlan_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xe52cdee5 b53_get_ethtool_phy_stats -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf8341990 b53_eee_init -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf8c70e6e b53_get_tag_protocol -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xfa62a266 b53_disable_port -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xfc937d84 b53_port_event -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xff09cbe0 b53_mirror_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x1936d507 b53_serdes_phylink_validate -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x386aa2e4 b53_serdes_init -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xbe4132af b53_serdes_an_restart -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xc3d76e7a b53_serdes_config -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xd5fcabe4 b53_serdes_link_set -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xedf72a86 b53_serdes_link_state -EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x61abf528 lan9303_shutdown -EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x693ffc20 lan9303_probe +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xfd0185c8 arc_proto_map +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x570a48ac com20020_check +EXPORT_SYMBOL drivers/net/arcnet/com20020 0xe1114391 com20020_found +EXPORT_SYMBOL drivers/net/arcnet/com20020 0xfa3424a5 com20020_netdev_ops +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x00460630 b53_phylink_validate +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x004c05c7 b53_phylink_mac_link_down +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x01adc2b2 b53_br_fast_age +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x033d7d88 b53_eee_enable_set +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x0c7183e3 b53_vlan_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x19f57bd8 b53_mirror_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x291a9a6d b53_br_flags_pre +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x2e08b17e b53_br_set_stp_state +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x307058ff b53_port_event +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x390e8ebb b53_setup_devlink_resources +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x4585d800 b53_get_sset_count +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x4904e3de b53_phylink_mac_link_state +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x4e3efe37 b53_get_tag_protocol +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x5718b9bc b53_phylink_mac_an_restart +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x57fa40a3 b53_mdb_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x594475ba b53_switch_detect +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x59e988b3 b53_enable_port +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x5af36f8c b53_get_ethtool_phy_stats +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x644dad6a b53_mirror_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x64b84bc8 b53_vlan_filtering +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x669e91f8 b53_vlan_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x73a50fbd b53_br_flags +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7439ab5b b53_phylink_mac_link_up +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7c25e7fb b53_get_ethtool_stats +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7f396eaf b53_brcm_hdr_setup +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x85cc4da3 b53_br_join +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x95718a80 b53_fdb_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x9d2a7108 b53_eee_init +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa0fbdea9 b53_phylink_mac_config +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xaf25f81f b53_imp_vlan_setup +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb05cef39 b53_fdb_dump +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb571fb9a b53_get_strings +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb5ba2398 b53_br_leave +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb78374aa b53_disable_port +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc65a4597 b53_switch_register +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc9714373 b53_get_mac_eee +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd25633b3 b53_mdb_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd57dc6af b53_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd8bc9ed4 b53_fdb_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xdd18b0cf b53_configure_vlan +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xff7717b9 b53_set_mac_eee +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x386cd75f b53_serdes_an_restart +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x67255800 b53_serdes_link_set +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x744ae895 b53_serdes_init +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xa96c4b3a b53_serdes_link_state +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xa9f586aa b53_serdes_phylink_validate +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xb114adb1 b53_serdes_config +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x4c5443eb lan9303_remove +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x6c12beaf lan9303_shutdown +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xa5f5870e lan9303_probe EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xada83f40 lan9303_register_set -EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xe2945126 lan9303_remove -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz8795 0x935b2860 ksz8_switch_register -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz9477 0x04fd02e7 ksz9477_switch_register -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0x3a487668 ksz_switch_alloc -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0xb51a7638 ksz_switch_remove -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0xf28620eb ksz_switch_register -EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x0664e52f vsc73xx_probe -EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x27f78874 vsc73xx_shutdown -EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x4d97985f vsc73xx_remove +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz8795 0x40b729d8 ksz8_switch_register +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz9477 0xdfb75f33 ksz9477_switch_register +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0x774c99b5 ksz_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0xa256cc83 ksz_switch_register +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0xedc2e2bd ksz_switch_remove EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x99d242fe vsc73xx_is_addr_valid -EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x059b1a75 xrs700x_switch_register -EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x4815a2bd xrs700x_switch_remove +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x9b23d244 vsc73xx_remove +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0xc7fce848 vsc73xx_probe +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0xf309b4a8 vsc73xx_shutdown +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x02cc1873 xrs700x_switch_shutdown +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x5a926605 xrs700x_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x5d255719 xrs700x_switch_register +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x73a2d963 xrs700x_switch_remove EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x83b7b667 xrs7003f_info EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x8972bf7e xrs7004f_info EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xb25facfa xrs7003e_info EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xb89aa5e3 xrs7004e_info -EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xc45085a9 xrs700x_switch_alloc -EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xe8357f6f xrs700x_switch_shutdown +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x0298b7bc ei_open EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x119721ac ei_interrupt -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x4a1919e1 ei_poll -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x584f9924 ei_open -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x5b682cb2 ei_set_multicast_list -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xb874394d ei_start_xmit -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xc1325ad8 NS8390_init -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xc1cbb879 ei_tx_timeout -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xc8518aec ei_get_stats -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xe9d21801 ei_netdev_ops -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xfc013a95 ei_close -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xfef85713 __alloc_ei_netdev -EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnxt/bnxt_en 0x5f70852b bnxt_ulp_probe +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x36cb0f38 ei_netdev_ops +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x460848ba NS8390_init +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x4be6ed27 __alloc_ei_netdev +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x51e39209 ei_start_xmit +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x7810d3ae ei_poll +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xaa30e2ef ei_tx_timeout +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xaf15787c ei_close +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xafe8017a ei_get_stats +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xdae7f6b2 ei_set_multicast_list +EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnxt/bnxt_en 0x93b033b6 bnxt_ulp_probe EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x636af174 cnic_unregister_driver -EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0xc036da0d cnic_register_driver -EXPORT_SYMBOL drivers/net/ethernet/cavium/common/cavium_ptp 0xd129b43c cavium_ptp_get -EXPORT_SYMBOL drivers/net/ethernet/cavium/common/cavium_ptp 0xf11bf882 cavium_ptp_put +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x8ae687a3 cnic_register_driver +EXPORT_SYMBOL drivers/net/ethernet/cavium/common/cavium_ptp 0x16d11efa cavium_ptp_get +EXPORT_SYMBOL drivers/net/ethernet/cavium/common/cavium_ptp 0xaa542a4a 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 @@ -2529,313 +2529,314 @@ EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xff987a02 bgx_set_xcast_mode EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_xcv 0x13912e4b xcv_init_hw EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_xcv 0x4f739dc0 xcv_setup_link -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x2d6f6f2e t3_l2e_free -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x36542c92 dev2t3cdev -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x39d669f8 cxgb3_unregister_client -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x4fb0b11a t3_l2t_send_event -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x51347618 cxgb3_ofld_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x72551ec6 cxgb3_free_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x7ff7b436 cxgb3_alloc_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x800d5719 t3_register_cpl_handler -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x8962c24c cxgb3_queue_tid_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x99877a9c cxgb3_alloc_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x9e323fe8 t3_l2t_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xb69fd99e cxgb3_register_client -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xc98e3ac3 t3_l2t_send_slow -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xccb5670b cxgb3_remove_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xce530b58 cxgb3_free_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xeedf463f cxgb3_insert_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x08c68881 cxgb4_clip_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x098ec18b cxgb4_free_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0bebfcdd cxgb4_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x0898e502 cxgb3_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x0e47d63b cxgb3_insert_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x2ef70286 cxgb3_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x3246e76b t3_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x4c220258 cxgb3_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x70eb3dba t3_l2e_free +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x73c82cf3 cxgb3_queue_tid_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x85ce56a2 dev2t3cdev +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x9939614f cxgb3_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xaaeb4459 cxgb3_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xb48e49d5 t3_l2t_send_event +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xb84e2af8 t3_l2t_send_slow +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xcd4169bf cxgb3_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xe258a7b1 cxgb3_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xe53b967c t3_register_cpl_handler +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xff2b3d94 cxgb3_register_client EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0f1a5528 cxgb4_unregister_uld -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x12f20259 cxgb4_port_idx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x14983432 cxgb4_ring_tx_db -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x154e9e85 cxgb4_smt_alloc_switching -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x166d7986 cxgb4_create_server -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x168a74d5 cxgb4_alloc_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x16feee00 cxgb4_immdata_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x17011ad0 cxgb4_l2t_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x18c8646d cxgb4_flush_eq_cache -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1ab52bb7 cxgb4_inline_tx_skb -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x22187774 cxgb4_register_uld -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x254d917e cxgb4_get_tcp_stats -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2fa2c587 cxgb4_clip_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1020e408 cxgb4_create_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x125ba7e2 t4_cleanup_clip_tbl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1573ddb5 cxgb4_bar2_sge_qregs +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x173f2386 cxgb4_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1b2ee4e6 cxgb4_pktgl_to_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1dc801bc cxgb4_get_srq_entry +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2705c7b9 cxgb4_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x298bb368 cxgb4_clip_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2cbb5695 cxgb4_smt_alloc_switching +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3de5b65a cxgb4_sync_txq_pidx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3fd15034 cxgb4_l2t_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4884c84b cxgb4_read_sge_timestamp +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x50c7fb7d cxgb4_alloc_sftid EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x50ee5c07 cxgb4_best_aligned_mtu -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x588c345b cxgb4_port_viid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5b34d04d t4_cleanup_clip_tbl -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5f8f241e cxgb4_reclaim_completed_tx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x67fe6064 cxgb4_map_skb -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6943fe85 cxgb4_ofld_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6af3160a cxgb4_read_tpte -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6ea963b8 cxgb4_remove_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7fee8301 cxgb4_pktgl_to_skb -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x81cee282 cxgb4_l2t_alloc_switching -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x93600a47 cxgb4_read_sge_timestamp -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9572715f cxgb4_alloc_sftid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9762bf7b cxgb4_port_chan -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x99ae52b7 cxgb4_update_root_dev_clip -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9bc1d5ea cxgb4_alloc_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa19413ce cxgb4_iscsi_init -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xac2e2a22 cxgb4_check_l2t_valid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xba43a3c5 cxgb4_remove_server -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xbbf10bc9 cxgb4_remove_server_filter -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xbff729eb cxgb4_crypto_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc1e2d17a cxgb4_bar2_sge_qregs -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc689bcc9 cxgb4_select_ntuple -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd0e060f5 cxgb4_create_server_filter -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd29236da cxgb4_get_srq_entry -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd361637f cxgb4_write_sgl -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd3cc5e68 cxgb4_dbfifo_count -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd3e9f9e9 cxgb4_port_e2cchan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5228894a cxgb4_remove_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5781df29 cxgb4_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5cb9a45c cxgb4_register_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x63a6bbd9 cxgb4_port_viid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6d5d7624 cxgb4_map_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6e1f3f06 cxgb4_dbfifo_count +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7d26b996 cxgb4_ring_tx_db +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7da55cfb cxgb4_port_chan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7dd0150e cxgb4_write_partial_sgl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x824cf5dc cxgb4_remove_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9283940c cxgb4_port_e2cchan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9821c717 cxgb4_select_ntuple +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9c23f139 cxgb4_immdata_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa034b6ed cxgb4_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa1eecacc cxgb4_reclaim_completed_tx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa2ef7ab5 cxgb4_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa3db2827 cxgb4_inline_tx_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa4769791 cxgb4_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xaf9178e1 cxgb4_create_server6 +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb79168b4 cxgb4_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb8fb68f6 cxgb4_clip_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc1c0210a cxgb4_flush_eq_cache +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd028c68a cxgb4_get_tcp_stats EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd69a0294 cxgb4_best_mtu -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd7e10894 cxgb4_create_server6 -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe33687a7 cxgb4_sync_txq_pidx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe4710fb8 cxgb4_write_partial_sgl -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf0533039 cxgb4_l2t_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xdfae2ed0 cxgb4_write_sgl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe31e5625 cxgb4_check_l2t_valid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe666c6cf cxgb4_port_idx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe7964d0c cxgb4_update_root_dev_clip +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xebeea5d3 cxgb4_iscsi_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf013e005 cxgb4_l2t_release EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf1fb0fde cxgb4_smt_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf3194c5a cxgb4_l2t_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x17154ebc cxgb_find_route6 +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf9835db6 cxgb4_create_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf9ac4ebc cxgb4_l2t_alloc_switching +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xfc7dff9f cxgb4_crypto_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xff927e32 cxgb4_read_tpte 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 0x39cd1c3c cxgbi_ppm_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x3b9ddd92 cxgbi_ppm_ppod_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x99b87284 cxgb_find_route -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xc81a19bc cxgbi_ppm_make_ppod_hdr -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xd15aeb71 cxgbi_ppm_init -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xd96717d4 cxgbi_ppm_ppods_reserve -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x32f6236b vnic_dev_unregister -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x66301bd2 vnic_dev_register -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x7b6f2490 enic_api_devcmd_proxy_by_index -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x98edff36 vnic_dev_get_res -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xba6723d6 vnic_dev_get_pdev -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xf11cf7f2 vnic_dev_get_res_count -EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x12654459 be_roce_register_driver +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x3c976326 cxgbi_ppm_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x586f1979 cxgb_find_route6 +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x6ae697b1 cxgb_find_route +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x960743c0 cxgbi_ppm_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xa448772a cxgbi_ppm_make_ppod_hdr +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xaaf90252 cxgbi_ppm_ppods_reserve +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xf12ea47d cxgbi_ppm_ppod_release +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x16f51ddf enic_api_devcmd_proxy_by_index +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x5140f266 vnic_dev_get_res_count +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x751d512a vnic_dev_get_pdev +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x9fae73c3 vnic_dev_get_res +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xc0aa561a vnic_dev_unregister +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xfa428c10 vnic_dev_register +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x27c43e4e 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 0x743315cb be_roce_unregister_driver -EXPORT_SYMBOL drivers/net/ethernet/freescale/enetc/fsl-enetc-ierb 0xbe5eb6fc enetc_ierb_register_pf +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x97808262 be_roce_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/freescale/enetc/fsl-enetc-ierb 0x80d0028d enetc_ierb_register_pf EXPORT_SYMBOL drivers/net/ethernet/freescale/enetc/fsl-enetc-ptp 0x5431a304 enetc_phc_index -EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0x375a7eae iavf_unregister_client -EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0xe6d82584 iavf_register_client -EXPORT_SYMBOL drivers/net/ethernet/marvell/prestera/prestera 0x74f5415d prestera_device_register -EXPORT_SYMBOL drivers/net/ethernet/marvell/prestera/prestera 0xb0432754 prestera_device_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x002a357f mlx4_get_module_info -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0c030cfc mlx4_get_slave_pkey_gid_tbl_len -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1843ba10 mlx4_gen_guid_change_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1c789c2c mlx4_get_roce_gid_from_slave -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1cd1bf5c mlx4_gen_pkey_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x321bd525 mlx4_SET_PORT_user_mac -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x32b83aee mlx4_get_slave_from_roce_gid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3b1c8d57 mlx4_SET_PORT_BEACON -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4b20174c mlx4_test_async -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x53a5afff mlx4_assign_eq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5468e312 mlx4_is_eq_vector_valid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x596756ef mlx4_ALLOCATE_VPP_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6fb190e8 mlx4_SET_PORT_user_mtu -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6fefb5d9 mlx4_SET_PORT_VXLAN -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x73a19fc1 mlx4_gen_slaves_port_mgt_ev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7417665e mlx4_SET_PORT_qpn_calc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x769a0f49 mlx4_query_diag_counters -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7e720d1b mlx4_get_eqs_per_port +EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0x2fac6943 iavf_register_client +EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0x56d99f73 iavf_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/marvell/prestera/prestera 0xa1d858fe prestera_device_unregister +EXPORT_SYMBOL drivers/net/ethernet/marvell/prestera/prestera 0xb9d8d98a prestera_device_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0011f6af mlx4_get_parav_qkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x00ec7a4f mlx4_test_interrupt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x040aaa6e mlx4_query_diag_counters +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x07d602b6 mlx4_SET_PORT_general +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0b39065b mlx4_SET_VPORT_QOS_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x13206a9b mlx4_gen_guid_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x32206b4c mlx4_is_slave_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3c6c9d16 mlx4_get_is_vlan_offload_disabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x429ad86f mlx4_is_eq_vector_valid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x48377d09 mlx4_assign_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x535e8175 mlx4_SET_VPORT_QOS_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5e3cb3d2 mlx4_SET_PORT_BEACON +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6132e949 set_and_calc_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x619864f9 mlx4_sync_pkey_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x631370f2 mlx4_SET_PORT_user_mtu +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6e3d3917 set_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x72dc9738 mlx4_test_async +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7753bbb3 mlx4_SET_PORT_PRIO2TC +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x786caea0 mlx4_ALLOCATE_VPP_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7f25453d mlx4_get_module_info 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 0x8a64bae6 mlx4_get_is_vlan_offload_disabled -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8c795eef mlx4_is_eq_shared -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x95fc4c2d mlx4_SET_PORT_SCHEDULER -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9b8dda18 mlx4_test_interrupt -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9df83e78 mlx4_get_slave_port_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9e536897 mlx4_SET_VPORT_QOS_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa0dbb7bc mlx4_SET_VPORT_QOS_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa27af091 mlx4_get_slave_node_guid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa3139aa3 set_and_calc_slave_port_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa8409adf mlx4_get_cpu_rmap -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa84ff050 mlx4_SET_PORT_fcs_check -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaa30e738 mlx4_gen_port_state_change_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaafd462b mlx4_max_tc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xafbe34d2 mlx4_is_slave_active -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb28466ab mlx4_SET_MCAST_FLTR -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb2fc6fc3 mlx4_release_eq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb3dce2fe mlx4_SET_PORT_general -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb4be6571 set_phv_bit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb9c68471 mlx4_sync_pkey_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb9ec4b1f mlx4_ALLOCATE_VPP_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd2015994 mlx4_SET_PORT_PRIO2TC -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe59e690e mlx4_get_parav_qkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf1a42c5f mlx4_eq_get_irq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf3f24219 mlx4_tunnel_steer_add -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf735d74e get_phv_bit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfaab5530 mlx4_put_slave_node_guid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x01394193 mlx5_get_uars_page -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x09836e28 __traceiter_mlx5_fs_del_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0cda98a5 mlx5_fpga_mem_read -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0eb6232a mlx5_core_query_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x11028dca mlx5_fpga_sbu_conn_destroy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x11c9c5a3 mlx5_eswitch_unregister_vport_reps -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x12029a3d mlx5_debug_qp_add -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1425d2db mlx5_eswitch_vport_match_metadata_enabled -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x17dd70a2 mlx5_core_alloc_transport_domain -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1b3cd8ea mlx5_eq_notifier_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1bef7e5b __traceiter_mlx5_fw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1ca5d691 mlx5_core_query_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1ceff421 mlx5_fc_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8d314372 mlx4_SET_MCAST_FLTR +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8ddab0f1 mlx4_put_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8ef10ef8 mlx4_tunnel_steer_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x90498a28 mlx4_get_slave_pkey_gid_tbl_len +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x91152d26 mlx4_release_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x999159ab get_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9b2ca117 mlx4_get_roce_gid_from_slave +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9c0c1a88 mlx4_gen_port_state_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9c9462e9 mlx4_SET_PORT_qpn_calc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa21a708f mlx4_get_eqs_per_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa66f8b41 mlx4_ALLOCATE_VPP_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xacc35496 mlx4_get_slave_from_roce_gid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbf2e04dc mlx4_get_cpu_rmap +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcd81c9cc mlx4_gen_pkey_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcda210d8 mlx4_get_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xce66e91d mlx4_is_eq_shared +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdb92f7f2 mlx4_SET_PORT_SCHEDULER +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xde47325f mlx4_gen_slaves_port_mgt_ev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe11aec34 mlx4_eq_get_irq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe4e8ffe0 mlx4_max_tc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe81335a8 mlx4_SET_PORT_fcs_check +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeb685996 mlx4_SET_PORT_VXLAN +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeff5fd51 mlx4_get_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfc25e88b mlx4_SET_PORT_user_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x015ceb78 mlx5_core_alloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x04710ce0 mlx5_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x04eddf31 mlx5_core_destroy_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x07f5a7cb mlx5_cmd_exec_cb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x085cdd81 mlx5_rdma_rn_get_params +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0fcfa9f4 mlx5_fpga_sbu_conn_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x102edcb6 mlx5_core_modify_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1368d744 mlx5_core_dealloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x157fae75 mlx5_rsc_dump_cmd_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1b371362 mlx5_lag_is_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1cc8be7d mlx5_core_destroy_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1d0b7746 mlx5_mpfs_del_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1d6f0096 mlx5_alloc_bfreg 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 0x1f9924bf mlx5_qp_debugfs_init -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x20111aff __traceiter_mlx5_fs_add_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1fa62239 mlx5_eswitch_get_core_dev 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 0x256d50f3 mlx5_rl_remove_rate -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x26f4aea1 mlx5_modify_header_dealloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2d2058f0 mlx5_rl_remove_rate_raw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2fb4eae8 mlx5_rl_add_rate_raw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x24e01646 mlx5_nic_vport_disable_roce +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x25e29f1a mlx5_core_query_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x26f9e7e7 mlx5_mpfs_add_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x27b27c83 mlx5_put_uars_page +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x27ed37c6 mlx5_lag_get_slave_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x286e4df8 mlx5_modify_header_dealloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2892e8c2 mlx5_core_dealloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x28a0a130 mlx5_lag_get_roce_netdev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2bc797fb mlx5_cmd_init_async_ctx +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2db8ff77 mlx5_fpga_get_sbu_caps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x313d2e9a mlx5_eq_create_generic +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x32451bbd mlx5_packet_reformat_alloc 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 0x3305a17d mlx5_eswitch_uplink_get_proto_dev 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 0x35a3ed1b mlx5_lag_is_master -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x360b4a64 mlx5_lag_get_roce_netdev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x39b1be68 mlx5_core_detach_mcg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3ae17fc9 mlx5_alloc_bfreg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3b32400c mlx5_core_destroy_tis -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3f3da6cc mlx5_core_modify_tis -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x439a4675 mlx5_mpfs_del_mac -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4796627c mlx5_fc_destroy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x49aca4ac mlx5_comp_irq_get_affinity_mask -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x49f42dbf mlx5_rl_add_rate -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4a41a3c2 mlx5_core_destroy_tir -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4d5a13fb mlx5_cmd_init_async_ctx +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x35f26d5c mlx5_fpga_sbu_conn_sendmsg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4070dbf0 mlx5_debug_qp_remove +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4097044c mlx5_lag_is_shared_fdb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x466d56f7 mlx5_core_destroy_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x48a6c433 mlx5_debugfs_root +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4a104ea4 __traceiter_mlx5_fs_del_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4a850422 mlx5_vector2eqn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4b1f372b mlx5_create_flow_group 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 0x4e026de0 mlx5_cmd_exec_polling -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4ec14f0e __traceiter_mlx5_fs_del_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x54bf5a2c mlx5_get_flow_namespace +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4e1b16a3 mlx5_core_query_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x517bfdf1 mlx5_rl_add_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x547d1acc mlx5_qp_debugfs_cleanup +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x55448802 mlx5_core_attach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5580809a mlx5_lag_get_peer_mdev 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 0x5ddca1a7 mlx5_core_destroy_psv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5dde4080 mlx5_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x55ae67be mlx5_core_create_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5adc1ff2 mlx5_cmd_exec_polling +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5b75a980 mlx5_core_modify_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5df5eb73 mlx5_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5fb9fb0a __traceiter_mlx5_fs_add_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x60d5c280 mlx5_rl_add_rate_raw 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 0x614f95dc __traceiter_mlx5_fs_add_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x62165e1a mlx5_packet_reformat_dealloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x65f89b83 mlx5_core_destroy_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x61eb562c mlx5_eq_destroy_generic EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x660773e2 mlx5_create_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6684f94f mlx5_core_modify_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x66d878fb mlx5_cmd_alloc_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x66e8f4d8 mlx5_lag_is_roce -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6737ccc1 mlx5_cmd_create_vport_lag -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x690bf37c mlx5_put_uars_page -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6d29e0a0 mlx5_notifier_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6e12cda0 mlx5_core_query_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6825a844 mlx5_core_detach_mcg +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 0x709619b2 mlx5_core_destroy_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7198ab3b mlx5_free_bfreg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x71abf2a7 mlx5_get_flow_namespace +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x71e57b42 mlx5_fs_add_rx_underlay_qpn EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7261330b __SCK__tp_func_mlx5_fs_set_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x72d0828c mlx5_eq_create_generic -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x763cff2b mlx5_del_flow_rules -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x765fff7f mlx5_eswitch_get_vport_metadata_for_match -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7985c683 mlx5_core_destroy_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7ad839c8 mlx5_fpga_sbu_conn_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x74f1f79c mlx5_rl_is_in_range +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x758a164d mlx5_eq_update_ci +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x76637e76 mlx5_fpga_mem_read +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7a29b31d mlx5_fs_remove_rx_underlay_qpn 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 0x7c37c2c7 mlx5_free_bfreg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7c7c60d8 mlx5_lag_is_active -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7f8f022f mlx5_vector2eqn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7f4344f6 mlx5_rsc_dump_next 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 0x8135d5e0 mlx5_core_modify_cq_moderation -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x82219e27 mlx5_create_flow_group -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x84e829a7 mlx5_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8172d4a7 mlx5_core_query_rq 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 0x8927aec7 mlx5_core_create_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8c0fb07e mlx5_lag_is_shared_fdb -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x90222ffa mlx5_lag_get_peer_mdev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9102b11f mlx5_nic_vport_disable_roce -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x93718393 mlx5_core_attach_mcg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x947e8010 mlx5_core_create_tis -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x94aadcbe mlx5_fc_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x903e6ebe mlx5_lag_query_cong_counters +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x92122870 mlx5_lag_is_master +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 0x941c6b84 mlx5_core_modify_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9450e8b3 mlx5_core_roce_gid_set EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x953708bd mlx5_destroy_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x95e3c52f mlx5_core_alloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x95f487cb mlx5_modify_header_alloc EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96eb2c99 mlx5_fc_id -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9748749a mlx5_core_modify_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9865d08e mlx5_cmd_free_uar EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x98edd256 __traceiter_mlx5_fs_del_ft -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x994dcc1c mlx5_destroy_flow_group -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x99734ec0 mlx5_core_create_tir -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9bd225a5 mlx5_debugfs_root +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9a5cbc43 mlx5_core_modify_cq_moderation +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9cc98c31 mlx5_eswitch_unregister_vport_reps 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 0x9d70be7c mlx5_core_create_rqt -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa258e822 mlx5_buf_alloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaba932b3 mlx5_eswitch_add_send_to_vport_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xad19855f mlx5_eq_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa2fd7f84 mlx5_buf_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa34f4bee mlx5_core_create_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa4ede635 mlx5_core_create_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa579d29b mlx5_cmd_cleanup_async_ctx +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa636f1b3 mlx5_eq_get_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa6731482 mlx5_add_flow_rules +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa6aa760a mlx5_cmd_create_vport_lag +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa7cde87c __traceiter_mlx5_fw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa7fa3c8b mlx5_debug_qp_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xab2f9523 mlx5_core_create_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xac7c644d mlx5_core_create_rqt 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 0xb22fef7c mlx5_eswitch_get_core_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb2549394 mlx5_lag_is_sriov -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb27d629d mlx5_fpga_mem_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaf9f78e2 mlx5_rl_remove_rate_raw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xafd9d080 mlx5_fc_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb16d9114 mlx5_eswitch_get_proto_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb1ee7d42 mlx5_fc_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb33b36b8 __traceiter_mlx5_fs_set_fte 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 0xb9ff6920 mlx5_lag_query_cong_counters +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb731ce3e mlx5_eswitch_add_send_to_vport_rule 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 0xbcb3494a mlx5_eswitch_reg_c1_loopback_enabled -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbea13b4d mlx5_packet_reformat_alloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbf965924 mlx5_get_fdb_sub_ns -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc09a2acd mlx5_core_create_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbbd438ae mlx5_get_fdb_sub_ns +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbc1ce55a mlx5_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbcf30c36 mlx5_eq_disable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbd8feda4 mlx5_eswitch_reg_c1_loopback_enabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbdb47219 mlx5_cmd_destroy_vport_lag +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbf79051d mlx5_del_flow_rules +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc0b05bee mlx5_cmd_alloc_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc0b8e3ed mlx5_eswitch_get_encap_mode EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc1c31382 mlx5_create_auto_grouped_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc37003f3 mlx5_eswitch_register_vport_reps -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc9924086 mlx5_add_flow_rules -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc99c949b mlx5_core_query_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc9a701ff mlx5_eswitch_get_vport_metadata_for_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcac90a3d mlx5_eswitch_get_proto_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcb52cc19 mlx5_qp_debugfs_cleanup -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcd87b71d mlx5_rsc_dump_cmd_create -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xce7b5615 mlx5_core_destroy_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd050ee95 mlx5_core_query_vendor_id -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd40a855e mlx5_modify_header_alloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd411c763 mlx5_cmd_cleanup_async_ctx -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd42d1e55 mlx5_rsc_dump_next -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd4ebba13 mlx5_cmd_exec_cb -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd514fd8b mlx5_debug_qp_remove +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc2504280 mlx5_core_destroy_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc86d8afe __traceiter_mlx5_fs_del_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc97354f2 mlx5_packet_reformat_dealloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc9f8df41 mlx5_core_query_vendor_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcb6b84ef mlx5_eq_enable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcbc3d6c0 mlx5_core_modify_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcc711d6c mlx5_core_alloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcd17070a mlx5_lag_is_sriov +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 0xd4a6df41 mlx5_eq_notifier_unregister 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 0xd6eb01d2 mlx5_fpga_mem_write EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd7fe4a48 mlx5_create_lag_demux_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd9463eb5 mlx5_rl_is_in_range -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdb40415d mlx5_eswitch_vport_rep -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdbda65d5 __traceiter_mlx5_fs_del_fg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xde09a14f mlx5_core_roce_gid_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe0e19816 mlx5_eswitch_get_encap_mode +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd8462633 mlx5_eswitch_uplink_get_proto_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd8cde293 mlx5_comp_vectors_count +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdaa4216d mlx5_comp_irq_get_affinity_mask +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdb4c2a1b mlx5_core_destroy_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdb74318b mlx5_fpga_sbu_conn_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdd80e695 mlx5_eswitch_vport_rep +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe25a6513 mlx5_eswitch_vport_match_metadata_enabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe296a3d6 mlx5_core_destroy_mkey EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe2bc3fde __traceiter_mlx5_fs_add_ft -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe4ad415e mlx5_core_create_psv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe4c63a5a mlx5_eq_get_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe437fcdd mlx5_lag_is_roce EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe4e09c2b __tracepoint_mlx5_fw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe9fd791f mlx5_fs_add_rx_underlay_qpn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xea07d014 __traceiter_mlx5_fs_set_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeaaa74de mlx5_eq_enable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe523c922 mlx5_qp_debugfs_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe671cedc mlx5_rl_remove_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe7d407c1 mlx5_get_uars_page 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 0xebbd2ecf mlx5_eq_destroy_generic -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xebed3012 mlx5_mpfs_add_mac -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xecfd1b47 mlx5_eq_update_ci -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xee8f16c8 mlx5_comp_vectors_count -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xef9ac7cf mlx5_core_dealloc_pd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xefaa2c1a mlx5_rdma_rn_get_params -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf046ca3b mlx5_eq_disable -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf0aedd50 mlx5_core_create_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf0e64826 mlx5_core_destroy_rqt -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf12dacfb mlx5_fpga_get_sbu_caps -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf26b26c9 mlx5_fpga_sbu_conn_sendmsg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf48274fb mlx5_fs_remove_rx_underlay_qpn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf5eeb10c mlx5_lag_get_slave_port -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf703fb70 mlx5_query_ib_port_oper -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf70cd134 mlx5_core_dealloc_transport_domain -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf7ec9a10 mlx5_core_modify_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xed54446a mlx5_core_create_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xefbc6868 mlx5_fc_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xefcb283b mlx5_eswitch_get_vport_metadata_for_match +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf3fedab5 mlx5_eq_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf4c83ec1 mlx5_core_query_cq 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 0xfad27e55 mlx5_cmd_free_uar 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 0xfd6b80fc mlx5_cmd_destroy_vport_lag -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxfw/mlxfw 0xf71f0546 mlxfw_firmware_flash -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x010181b9 mlxsw_core_trap_state_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfcd22467 mlx5_core_create_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfd022bab mlx5_eswitch_register_vport_reps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xffb361ab mlx5_query_ib_port_oper +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xffef986d mlx5_eswitch_get_vport_metadata_for_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxfw/mlxfw 0xc99e2265 mlxfw_firmware_flash EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x02dfd3d0 mlxsw_afk_key_info_block_encoding_get EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x07abcc0c mlxsw_afa_block_append_trap EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0ca34ccf mlxsw_core_max_ports EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0e81c09c mlxsw_afk_destroy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x11747a63 mlxsw_core_rx_listener_unregister EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x120a1738 mlxsw_core_port_init EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x15801382 mlxsw_afk_key_info_put EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x18b0ad00 mlxsw_afa_block_append_police EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x19fa5852 mlxsw_core_flush_owq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x1b6dd3d8 mlxsw_core_trap_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x1c6605f6 mlxsw_afa_block_append_qos_switch_prio EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x1cb8f858 mlxsw_reg_trans_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x1dfac1c0 mlxsw_afa_block_append_mirror EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x202693f0 mlxsw_afa_block_cur_set EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x21daf3af mlxsw_afa_block_append_qos_dsfield EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x23eddc68 mlxsw_core_cpu_port_init -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x254c17e1 mlxsw_afa_block_append_mirror +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x279337e0 mlxsw_core_ptp_transmitted EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2c68ced3 mlxsw_core_read_frc_h EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x30d72838 mlxsw_env_get_module_eeprom_by_page EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x35ba2254 mlxsw_afk_values_add_u32 EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x38185d87 mlxsw_afa_block_append_qos_ecn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x3c371416 mlxsw_core_rx_listener_unregister EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x406b4614 mlxsw_afa_block_append_counter 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 @@ -2843,41 +2844,41 @@ EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4a6ed376 mlxsw_core_port_fini EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4b0bae55 mlxsw_core_kvd_sizes_get EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5a099407 mlxsw_afa_block_append_qos_dscp +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5bb7eb05 mlxsw_core_driver_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5cf3dd79 mlxsw_core_bus_device_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5f181da9 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 0x61ea9293 mlxsw_core_event_listener_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x63874d4c mlxsw_core_port_driver_priv EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x65e16da4 mlxsw_afk_key_info_get EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x692ac04e mlxsw_afk_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x712c7620 mlxsw_core_skb_receive EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x71e1d813 mlxsw_core_port_clear EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x749556a2 mlxsw_afk_key_info_subset EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x74eb7c9e mlxsw_core_res_valid EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x77768221 mlxsw_core_module_max_width EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x77d83398 mlxsw_core_read_frc_l EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7f659d4c mlxsw_afa_block_append_vlan_modify -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x80ba4d94 mlxsw_core_trap_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 0x858c30d0 mlxsw_afa_block_create EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x86a40342 mlxsw_core_res_get EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x87b88710 mlxsw_core_event_listener_unregister EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x8854d198 mlxsw_reg_write -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x88cedd51 mlxsw_core_driver_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x8ba5fa7e mlxsw_core_lag_mapping_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x8bc9e4e8 mlxsw_core_port_devlink_port_get EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x902c3533 mlxsw_core_schedule_dw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x9376a302 mlxsw_core_bus_device_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x96d6bc10 mlxsw_afa_create EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x97035a9c mlxsw_afa_block_append_fid_set EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x97cf0ab9 mlxsw_core_port_is_xm 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 0xa7765e88 mlxsw_reg_query -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb0888768 mlxsw_core_port_eth_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa9b20b78 mlxsw_core_rx_listener_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xac54a06e mlxsw_core_trap_unregister EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb5e762fa mlxsw_afk_values_add_buf 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 0xb6936611 mlxsw_core_trap_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb9f797a9 mlxsw_env_module_overheat_counter_get 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 0xbbb7a867 mlxsw_afa_block_append_sampler @@ -2885,119 +2886,118 @@ EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbe82d6cc mlxsw_env_get_module_info EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbfb7df3c mlxsw_core_driver_priv EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbfd01f33 mlxsw_core_port_ib_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc513ec5e mlxsw_core_port_eth_set EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc9c2e4cc mlxsw_core_lag_mapping_clear -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc9f737fd mlxsw_core_skb_transmit EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xca257489 mlxsw_afa_block_append_fwd 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 0xcd0600a4 mlxsw_afa_create EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd1a82f0b mlxsw_core_lag_mapping_get EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd252e62d mlxsw_core_skb_transmit_busy 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 0xd4874014 mlxsw_core_resources_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd60f8825 mlxsw_env_get_module_eeprom EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd71566b9 mlxsw_core_schedule_work EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd84eb6b0 mlxsw_afa_block_append_drop -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd93c7acf mlxsw_core_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd8f17c09 mlxsw_core_trap_state_set EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd9f711ae mlxsw_afa_block_append_mcrouter EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdc31781e mlxsw_reg_trans_write EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdc415cf1 mlxsw_afa_block_continue -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdd6ad4b7 mlxsw_core_ptp_transmitted EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xde4e211f mlxsw_afa_block_append_l4port EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdeb1dc2e mlxsw_afa_block_first_kvdl_index EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe16986dd mlxsw_afa_block_activity_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe41b375b mlxsw_core_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe702d640 mlxsw_core_bus_device_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xecab212a mlxsw_afa_cookie_lookup +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf0401486 mlxsw_core_skb_transmit EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf2ca3bae mlxsw_core_res_query_enabled -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf39275f0 mlxsw_env_get_module_eeprom EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf4909bea mlxsw_core_port_type_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf5df05f1 mlxsw_core_rx_listener_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xfc69228d mlxsw_core_port_devlink_port_get EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xff007c25 mlxsw_core_cpu_port_fini -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0xaef1dfb5 mlxsw_i2c_driver_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0xc4a6b347 mlxsw_i2c_driver_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0x47e656ab mlxsw_pci_driver_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0x6ef6857c mlxsw_pci_driver_register -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0471d02a ocelot_deinit -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0536c229 ocelot_port_pre_bridge_flags -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0ad213cc ocelot_ptp_gettime64 -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0b17e128 ocelot_ptp_adjfine -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0d8dabe8 ocelot_devlink_sb_register -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0e0a485a ocelot_get_sset_count -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0e7bc937 ocelot_mrp_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1016eaee ocelot_sb_occ_max_clear -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x11398177 ocelot_ptp_enable -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1403f7d2 ocelot_drain_cpu_queue -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x141c67fa ocelot_get_strings -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1bbb9910 ocelot_port_bridge_leave -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1bc41e26 ocelot_sb_occ_port_pool_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0x1246b5b4 mlxsw_i2c_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0xf929bee7 mlxsw_i2c_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0x55f62a35 mlxsw_pci_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0xdd967ff2 mlxsw_pci_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x034bb73c ocelot_sb_pool_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x08721525 ocelot_get_txtstamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0e95d6ac ocelot_apply_bridge_fwd_mask +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x16df34bf ocelot_xtr_poll_frame +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x173e716d ocelot_vlan_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1f1f3c4b ocelot_get_strings +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x232ab31a ocelot_can_inject +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x256e1575 ocelot_ptp_adjfine +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x271df3d3 ocelot_port_txtstamp_request EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x274a0e05 ocelot_port_fdb_do_dump -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2c3b4203 ocelot_apply_bridge_fwd_mask -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x30d1ca17 ocelot_ptp_adjtime -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x32bfe2fe ocelot_hwstamp_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x33ba65fe ocelot_port_bridge_join -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x35af6536 ocelot_fdb_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x37f1cf9e ocelot_get_txtstamp -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3902bb33 ocelot_sb_tc_pool_bind_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3bb645f4 ocelot_port_set_maxlen -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x412ce730 ocelot_init_timestamp -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x43b43738 ocelot_port_mdb_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4600df01 ocelot_mact_learn -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4842f480 ocelot_sb_port_pool_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4873c21d ocelot_mact_forget -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x49f2e48b ocelot_sb_occ_tc_port_bind_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x50760cf4 ocelot_port_bridge_flags -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5654f1b8 ocelot_sb_occ_snapshot -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5bf44ccf ocelot_xtr_poll_frame -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5c2358d0 ocelot_sb_tc_pool_bind_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x602405d7 ocelot_mrp_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x67042981 ocelot_ptp_verify -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6767427f ocelot_can_inject -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6b12defe ocelot_hwstamp_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6d79c41f ocelot_bridge_stp_state_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6f022cf5 ocelot_vlan_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x73c77a96 ocelot_ptp_settime64 -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7c83cb7d ocelot_deinit_timestamp -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x807e6b9d ocelot_port_policer_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2ca8823d ocelot_deinit_port +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x32bfc401 ocelot_port_bridge_join +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x35c134df ocelot_deinit_timestamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3c1f8f8e ocelot_port_pre_bridge_flags +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3f9f39a0 ocelot_vcap_filter_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x40af794e ocelot_get_ethtool_stats +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x48a6bbbf ocelot_port_lag_join +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x51e112d3 ocelot_sb_port_pool_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x521e74c4 ocelot_port_bridge_leave +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x52aa6025 ocelot_mrp_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x56b401c2 ocelot_mrp_add_ring_role +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5daff1b7 ocelot_ptp_settime64 +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x659829a8 ocelot_sb_pool_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x70040ddb ocelot_port_bridge_flags +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x72ad5401 ocelot_hwstamp_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x73c41842 ocelot_sb_occ_port_pool_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x757a5852 ocelot_devlink_sb_unregister +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7c06f3ab ocelot_drain_cpu_queue +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7c587ca2 ocelot_ptp_gettime64 +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8513ef2e ocelot_bridge_stp_state_set EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8a85c6a8 ocelot_vcap_block_find_filter_by_id -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x91902a46 ocelot_port_lag_change -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x94658494 ocelot_deinit_port -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x99cc0df0 ocelot_vcap_filter_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9f03f27d ocelot_devlink_sb_unregister -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa4a48db7 ocelot_get_ethtool_stats -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa572ef15 ocelot_vcap_filter_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa84be0e8 ocelot_port_vlan_filtering -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb371e38d ocelot_set_ageing_time -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbbadf81a ocelot_vlan_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc2e6609f ocelot_fdb_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc62cc97f ocelot_sb_port_pool_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc6b66a28 ocelot_get_ts_info -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc9313ddb ocelot_port_policer_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xcb658efd ocelot_port_mdb_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xcdc85aaa ocelot_port_lag_leave -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd20eebf0 ocelot_fdb_dump -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd30cf290 ocelot_mrp_del_ring_role -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd44232c5 ocelot_init_port -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xdfe2bc9c ocelot_get_max_mtu -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe4b4253a ocelot_port_inject_frame -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe77c4c45 ocelot_port_lag_join -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe77f806a ocelot_init -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xee875afc ocelot_sb_pool_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xefb75b03 ocelot_port_txtstamp_request -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf0b94136 ocelot_mrp_add_ring_role -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf3b16024 ocelot_sb_pool_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf9924107 ocelot_vlan_prepare -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x120d2282 qed_get_fcoe_ops +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8e5ec972 ocelot_vcap_filter_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8f4ab010 ocelot_sb_occ_snapshot +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x90f31aa3 ocelot_ptp_verify +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x92d47d6f ocelot_port_policer_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x93e42b19 ocelot_sb_port_pool_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9517a9cf ocelot_mrp_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9d34cd8d ocelot_ptp_adjtime +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9e5bdab0 ocelot_mact_learn +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa573a77d ocelot_mrp_del_ring_role +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa80a3be6 ocelot_set_ageing_time +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa8c7c0aa ocelot_port_lag_change +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa973f59c ocelot_port_policer_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa9c0b08e ocelot_vlan_prepare +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xad6eae9d ocelot_sb_occ_max_clear +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb2b861dc ocelot_get_sset_count +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb72ad506 ocelot_port_set_maxlen +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbac4b1e4 ocelot_hwstamp_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc610d97c ocelot_port_inject_frame +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xca9966a3 ocelot_fdb_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xcb2cd8d6 ocelot_mact_forget +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xcbb634fd ocelot_port_vlan_filtering +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xcd19a6a0 ocelot_init_port +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xcd5dba77 ocelot_sb_occ_tc_port_bind_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xce47cc96 ocelot_fdb_dump +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xcfd4f755 ocelot_fdb_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd919d07b ocelot_init_timestamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xdb686b95 ocelot_get_ts_info +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xdc67371c ocelot_sb_tc_pool_bind_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xdff0815f ocelot_port_mdb_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe29dd3a7 ocelot_port_lag_leave +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xeb84c9d3 ocelot_init +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xed017964 ocelot_deinit +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xef818e0c ocelot_sb_tc_pool_bind_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xeff86cf2 ocelot_devlink_sb_register +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf078fe9e ocelot_ptp_enable +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfa6cfc43 ocelot_get_max_mtu +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfadd7f22 ocelot_vlan_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xffecd367 ocelot_port_mdb_add +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x275f1903 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 0x5c7d03f6 qed_get_iscsi_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x8da1f4a4 qed_get_eth_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x6b2dc2da 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 0xb7795cad qed_get_rdma_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qede/qede 0x78ac1959 qede_rdma_register_driver -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qede/qede 0xfa3330b6 qede_rdma_unregister_driver -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x0c2ea690 hdlcdrv_unregister -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x256e0833 hdlcdrv_arbitrate -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x4f2524f4 hdlcdrv_transmitter -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x709b93ad hdlcdrv_register -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xa4892a3e hdlcdrv_receiver +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xc11ad4f8 qed_get_fcoe_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xeebaea47 qed_get_eth_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qede/qede 0x64bbbf4a qede_rdma_register_driver +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qede/qede 0xa34397e2 qede_rdma_unregister_driver +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x5e1145fa hdlcdrv_register +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x7f3d8e9c hdlcdrv_receiver +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x976222a2 hdlcdrv_arbitrate +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xc27d4198 hdlcdrv_transmitter +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xfee4a30c hdlcdrv_unregister EXPORT_SYMBOL drivers/net/mdio 0x3e17f466 mdio_set_flag EXPORT_SYMBOL drivers/net/mdio 0x424a69a2 mdio45_ethtool_ksettings_get_npage EXPORT_SYMBOL drivers/net/mdio 0x60443957 mdio45_probe @@ -3005,1343 +3005,1343 @@ 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 0x80012ed0 mdiobb_read -EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0x9532a5a5 mdiobb_write -EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0xbfb3521c free_mdio_bitbang -EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0xcec00410 alloc_mdio_bitbang -EXPORT_SYMBOL drivers/net/mdio/mdio-cavium 0x4c5c26d4 cavium_mdiobus_read -EXPORT_SYMBOL drivers/net/mdio/mdio-cavium 0x7136591f cavium_mdiobus_write -EXPORT_SYMBOL drivers/net/mii 0x3e520e0d mii_nway_restart -EXPORT_SYMBOL drivers/net/mii 0x52ec2661 mii_ethtool_gset -EXPORT_SYMBOL drivers/net/mii 0x53a232f5 mii_ethtool_get_link_ksettings -EXPORT_SYMBOL drivers/net/mii 0x6fa2b449 mii_check_gmii_support -EXPORT_SYMBOL drivers/net/mii 0x761dd29e mii_ethtool_set_link_ksettings -EXPORT_SYMBOL drivers/net/mii 0x83565a8c mii_link_ok -EXPORT_SYMBOL drivers/net/mii 0xa627c52f mii_ethtool_sset -EXPORT_SYMBOL drivers/net/mii 0xbdd69648 mii_check_media -EXPORT_SYMBOL drivers/net/mii 0xd9224feb mii_check_link -EXPORT_SYMBOL drivers/net/mii 0xe3d6ae49 generic_mii_ioctl -EXPORT_SYMBOL drivers/net/pcs/pcs-lynx 0x64d207a6 lynx_pcs_create -EXPORT_SYMBOL drivers/net/pcs/pcs-lynx 0x84ef6460 lynx_pcs_destroy -EXPORT_SYMBOL drivers/net/phy/bcm-phy-lib 0x20ae1e90 bcm54xx_auxctl_write -EXPORT_SYMBOL drivers/net/ppp/pppox 0x12119b1e pppox_unbind_sock -EXPORT_SYMBOL drivers/net/ppp/pppox 0x5cdd82ba register_pppox_proto -EXPORT_SYMBOL drivers/net/ppp/pppox 0x6a714336 pppox_compat_ioctl -EXPORT_SYMBOL drivers/net/ppp/pppox 0xccb3418c pppox_ioctl +EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0x05b0d3d3 mdiobb_write +EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0x5ba18675 free_mdio_bitbang +EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0x5ff02abd alloc_mdio_bitbang +EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0x65a91e19 mdiobb_read +EXPORT_SYMBOL drivers/net/mdio/mdio-cavium 0x4845adee cavium_mdiobus_read +EXPORT_SYMBOL drivers/net/mdio/mdio-cavium 0x874beb62 cavium_mdiobus_write +EXPORT_SYMBOL drivers/net/mii 0x007dfce2 mii_ethtool_get_link_ksettings +EXPORT_SYMBOL drivers/net/mii 0x49cba944 mii_check_gmii_support +EXPORT_SYMBOL drivers/net/mii 0x4dfdab9c mii_link_ok +EXPORT_SYMBOL drivers/net/mii 0x7d0101c1 generic_mii_ioctl +EXPORT_SYMBOL drivers/net/mii 0x8aa60e4b mii_ethtool_set_link_ksettings +EXPORT_SYMBOL drivers/net/mii 0x8dbbba95 mii_nway_restart +EXPORT_SYMBOL drivers/net/mii 0x93fde6fb mii_check_link +EXPORT_SYMBOL drivers/net/mii 0xb6ca9596 mii_check_media +EXPORT_SYMBOL drivers/net/mii 0xce1358b1 mii_ethtool_sset +EXPORT_SYMBOL drivers/net/mii 0xd7e477d6 mii_ethtool_gset +EXPORT_SYMBOL drivers/net/pcs/pcs-lynx 0x18a60e9b lynx_pcs_destroy +EXPORT_SYMBOL drivers/net/pcs/pcs-lynx 0xd6f2d286 lynx_pcs_create +EXPORT_SYMBOL drivers/net/phy/bcm-phy-lib 0xd8214e14 bcm54xx_auxctl_write +EXPORT_SYMBOL drivers/net/ppp/pppox 0x342c8b60 pppox_compat_ioctl +EXPORT_SYMBOL drivers/net/ppp/pppox 0x3b1be044 register_pppox_proto +EXPORT_SYMBOL drivers/net/ppp/pppox 0x7de4c638 pppox_unbind_sock +EXPORT_SYMBOL drivers/net/ppp/pppox 0xdf9ed593 pppox_ioctl EXPORT_SYMBOL drivers/net/ppp/pppox 0xe0ff7a18 unregister_pppox_proto -EXPORT_SYMBOL drivers/net/sungem_phy 0x72a56c8c sungem_phy_probe -EXPORT_SYMBOL drivers/net/team/team 0x51dcf0ed team_options_change_check -EXPORT_SYMBOL drivers/net/team/team 0x5cce482f team_option_inst_set_change -EXPORT_SYMBOL drivers/net/team/team 0x8a6a024d team_modeop_port_enter -EXPORT_SYMBOL drivers/net/team/team 0xb303656e team_options_unregister -EXPORT_SYMBOL drivers/net/team/team 0xb4202066 team_modeop_port_change_dev_addr -EXPORT_SYMBOL drivers/net/team/team 0xcdfb3874 team_mode_register -EXPORT_SYMBOL drivers/net/team/team 0xdc4cac9a team_options_register -EXPORT_SYMBOL drivers/net/team/team 0xfb8ed6d7 team_mode_unregister -EXPORT_SYMBOL drivers/net/usb/usbnet 0x2900ce10 usbnet_device_suggests_idle -EXPORT_SYMBOL drivers/net/usb/usbnet 0xad5ef090 usbnet_manage_power -EXPORT_SYMBOL drivers/net/usb/usbnet 0xc5f06655 usbnet_link_change -EXPORT_SYMBOL drivers/net/wan/hdlc 0x14483ce6 alloc_hdlcdev -EXPORT_SYMBOL drivers/net/wan/hdlc 0x26cf726a attach_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0x37e95f1e register_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0x397d1b13 hdlc_open -EXPORT_SYMBOL drivers/net/wan/hdlc 0x4d59bdad unregister_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0x58465f4a unregister_hdlc_device -EXPORT_SYMBOL drivers/net/wan/hdlc 0x77af3603 hdlc_close -EXPORT_SYMBOL drivers/net/wan/hdlc 0x8b8d02c0 hdlc_start_xmit -EXPORT_SYMBOL drivers/net/wan/hdlc 0x95b94c61 detach_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0xa72d7399 hdlc_ioctl -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x010ea6cd ath_rxbuf_alloc -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x107d4ea0 ath_hw_setbssidmask +EXPORT_SYMBOL drivers/net/sungem_phy 0xc084da63 sungem_phy_probe +EXPORT_SYMBOL drivers/net/team/team 0x1389af09 team_options_unregister +EXPORT_SYMBOL drivers/net/team/team 0x560865c1 team_modeop_port_change_dev_addr +EXPORT_SYMBOL drivers/net/team/team 0x5f08ee20 team_mode_register +EXPORT_SYMBOL drivers/net/team/team 0x83b71e64 team_mode_unregister +EXPORT_SYMBOL drivers/net/team/team 0x88704838 team_modeop_port_enter +EXPORT_SYMBOL drivers/net/team/team 0xc1cf577a team_option_inst_set_change +EXPORT_SYMBOL drivers/net/team/team 0xdeacc3ef team_options_register +EXPORT_SYMBOL drivers/net/team/team 0xef7fc483 team_options_change_check +EXPORT_SYMBOL drivers/net/usb/usbnet 0x8094c56f usbnet_link_change +EXPORT_SYMBOL drivers/net/usb/usbnet 0xc54caf59 usbnet_device_suggests_idle +EXPORT_SYMBOL drivers/net/usb/usbnet 0xde18f559 usbnet_manage_power +EXPORT_SYMBOL drivers/net/wan/hdlc 0x26cf5f05 hdlc_close +EXPORT_SYMBOL drivers/net/wan/hdlc 0x35fd5fc1 register_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x3d500293 attach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x49cebc74 unregister_hdlc_device +EXPORT_SYMBOL drivers/net/wan/hdlc 0x53b4e402 alloc_hdlcdev +EXPORT_SYMBOL drivers/net/wan/hdlc 0x554fc025 hdlc_open +EXPORT_SYMBOL drivers/net/wan/hdlc 0x59c147c9 hdlc_ioctl +EXPORT_SYMBOL drivers/net/wan/hdlc 0x92d65f86 unregister_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xa6d66f05 detach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xb6f3e692 hdlc_start_xmit +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x0cdf8b18 ath_rxbuf_alloc EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x108b188f ath_is_49ghz_allowed -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x44c28fa1 ath_hw_get_listen_time +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x19a1a1ec ath_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x23fed41b ath_hw_cycle_counters_update +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x333e3647 ath_key_delete +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x3ad89a63 ath_hw_keysetmac +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x44a01454 dfs_pattern_detector_init EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x4571aea8 ath_is_world_regd -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x760028c4 ath_hw_keysetmac -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x81d43a4c ath_hw_keyreset -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x912ba118 ath_key_delete -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x91533037 ath_key_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x4e604625 ath_hw_setbssidmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x5071f830 ath_hw_get_listen_time +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x552849b2 ath_key_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x6da855fb ath_is_mybeacon EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xa18f224e ath_regd_find_country_by_name -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xa4d73582 ath_regd_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xa7527ee7 ath_is_mybeacon +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xaa0d3e21 ath_regd_init EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xb6588ba6 ath_bus_type_strings -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xc1e41493 ath_reg_notifier_apply -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xc5d32e0e ath_printk -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xd2b3045f ath_hw_cycle_counters_update -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xf459f4ab dfs_pattern_detector_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xc12cd59c ath_hw_keyreset +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xedbc9f1c ath_reg_notifier_apply EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xf98605d5 ath_regd_get_band_ctl +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0104e6b7 ath10k_htc_notify_tx_completion EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x015e5db2 ath10k_debug_mask -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0372fe41 ath10k_core_destroy -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0f8edbcc ath10k_ce_per_engine_service_any -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x162dccb9 ath10k_ce_completed_recv_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x184b3f15 ath10k_htc_rx_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x245890c6 ath10k_core_napi_sync_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2c24a8e2 ath10k_core_create -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2e791cc2 ath10k_print_driver_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x385655fa ath10k_core_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3fc1832c ath10k_ce_free_rri -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x46e46f39 __ath10k_ce_rx_num_free_bufs -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4af04e6f ath10k_ce_enable_interrupt -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x543e470a ath10k_core_free_board_files -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5443d844 ath10k_ce_per_engine_service -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x56afb9cf ath10k_core_register -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x57a14b03 ath10k_ce_rx_update_write_idx -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5aa924bd ath10k_ce_enable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x76a66846 ath10k_ce_disable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x76a7d999 ath10k_warn -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x77eeee87 ath10k_ce_rx_post_buf -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7a5d611a ath10k_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7dfa0abc ath10k_ce_deinit_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x825c2a8e ath10k_core_unregister -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8bc19c73 ath10k_ce_completed_recv_next_nolock -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x96bbe435 ath10k_ce_disable_interrupt -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x98c912d4 __ath10k_ce_send_revert -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x98d49f8b ath10k_core_start_recovery -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x99df1ed1 ath10k_ce_completed_send_next_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x036ab62f ath10k_htt_rx_pktlog_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0ba0cffc ath10k_ce_rx_update_write_idx +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x10d71bf7 ath10k_ce_enable_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x11cfee37 ath10k_ce_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1b987a3c ath10k_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1f10dcbe ath10k_htt_hif_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x29ea03d3 ath10k_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3009918c ath10k_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x370adf14 ath10k_bmi_read_memory +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x433c5a91 ath10k_ce_completed_recv_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x44024688 ath10k_ce_free_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x454d092b ath10k_ce_free_rri +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x47db7faa ath10k_core_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x48f5ce8c ath10k_core_free_board_files +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4c69359b ath10k_htc_tx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4f17aea7 __ath10k_ce_send_revert +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5502c44e ath10k_core_napi_sync_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x56ddfae3 ath10k_ce_completed_send_next_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x577ee410 ath10k_core_napi_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5990396f ath10k_core_start_recovery +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5de572cf ath10k_ce_dump_registers +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x63e77ff2 ath10k_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6ed5d6c4 ath10k_ce_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6f845ed2 ath10k_mac_tx_push_pending +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7db5ca31 ath10k_ce_completed_send_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8196cc81 ath10k_core_fetch_board_file +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x86cc8c4e ath10k_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8cf4bd01 ath10k_coredump_new +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x911ea476 ath10k_ce_cancel_send_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x91ea258c ath10k_ce_alloc_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x92507b70 ath10k_ce_rx_post_buf +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x93caa2ab ath10k_ce_disable_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9536c937 ath10k_ce_send_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x964650dc ath10k_core_check_dt +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x96ab350b ath10k_htt_txrx_compl_task +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x975e6f2f ath10k_print_driver_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x97d0ed4f ath10k_core_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x984c6536 ath10k_htt_rx_hl_indication +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x993532a5 ath10k_core_register +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9b14be0d ath10k_ce_completed_recv_next_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9e4608bf ath10k_ce_alloc_rri EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa1e4849a __tracepoint_ath10k_log_dbg -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa6b1a544 ath10k_htc_notify_tx_completion -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa763ef89 ath10k_core_napi_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa85724c5 ath10k_ce_num_free_src_entries -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xac1aa5f0 ath10k_htc_process_trailer -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xaea84bf7 ath10k_ce_init_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb0181719 ath10k_ce_cancel_send_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb34f3627 ath10k_ce_revoke_recv_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb9d79623 ath10k_ce_free_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xbb3ca8de ath10k_ce_alloc_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xbc9f39f7 ath10k_ce_completed_send_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xbd32440c ath10k_core_stop -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xbe3128b3 ath10k_htt_rx_hl_indication -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xcadd0359 ath10k_coredump_new -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xcd0119c5 ath10k_mac_tx_push_pending -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xcd137192 ath10k_htt_hif_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xce46bdd9 ath10k_ce_send -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xced32bfa ath10k_htt_rx_pktlog_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd31c144b ath10k_ce_send_nolock -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd8a4c132 ath10k_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd9d6bdb9 ath10k_htt_txrx_compl_task -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe369f742 ath10k_coredump_get_mem_layout -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe4c939bb ath10k_core_fetch_board_file -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe8b7e9ad ath10k_core_check_dt -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe906f38e ath10k_ce_alloc_rri -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe91392a4 ath10k_ce_dump_registers -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf68050c8 ath10k_htc_tx_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf7d13b28 ath10k_bmi_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf943655e ath10k_htt_t2h_msg_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xfbc7d5e7 ath10k_bmi_read_memory -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x04b1c69d ath11k_core_suspend -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x2c32c806 ath11k_ce_rx_post_buf -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x2e9ced0c ath11k_ce_get_attr_flags -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x4bc70129 ath11k_core_free -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x4f22e8c7 ath11k_hal_srng_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x60a661e1 ath11k_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x613cb862 ath11k_ce_per_engine_service -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x6bd40905 ath11k_dp_service_srng -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x78d6b38b ath11k_hal_srng_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x79a4884c ath11k_core_resume -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x95e5278e ath11k_qmi_deinit_service -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x96dff08e ath11k_debugfs_soc_destroy -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x9bfab08f ath11k_ce_cleanup_pipes +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xab757fe8 ath10k_ce_send +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb5f7cb2e ath10k_htc_process_trailer +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb71047ec ath10k_ce_revoke_recv_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xbd49e3f9 ath10k_ce_per_engine_service_any +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc2466386 ath10k_ce_num_free_src_entries +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc2798ec7 ath10k_ce_deinit_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xceb7b9f7 __ath10k_ce_rx_num_free_bufs +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xdd4080ea ath10k_coredump_get_mem_layout +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe2932c41 ath10k_ce_per_engine_service +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe594296f ath10k_htc_rx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf1c136a6 ath10k_bmi_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf891d1e1 ath10k_ce_init_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xfa45665b ath10k_core_unregister +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xfbadec21 ath10k_htt_t2h_msg_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x16118902 ath11k_ce_free_pipes +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x1cf97648 ath11k_core_resume +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x5681a666 ath11k_ce_cleanup_pipes +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x6c5aae70 ath11k_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x7e967707 ath11k_ce_per_engine_service +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x7fe224c9 ath11k_hal_srng_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x8cee59d8 ath11k_dp_service_srng +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x9181d32b ath11k_ce_alloc_pipes +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x9bd127f5 ath11k_core_init EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x9c51bcc4 ath11k_debug_mask -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xa3b0edfb ath11k_ce_get_shadow_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xacbefb2d ath11k_core_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xacde8a56 ath11k_warn -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xc41632f9 ath11k_ce_free_pipes -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xc754c21e ath11k_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xcf26eec5 ath11k_core_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xe727a5c3 ath11k_core_alloc -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xe89ded27 ath11k_core_pre_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xec070b1f ath11k_ce_alloc_pipes +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x9ec62e2d ath11k_debugfs_soc_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xaaf7a78d ath11k_core_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xadf8cb80 ath11k_ce_get_shadow_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xc320aba0 ath11k_qmi_deinit_service +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xd3deda5f ath11k_core_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xdb91498a ath11k_core_suspend +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xe458b98e ath11k_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xed448f48 ath11k_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xef40a440 ath11k_core_pre_init EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xf0197188 ath11k_cold_boot_cal +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xf3ce0fc1 ath11k_ce_get_attr_flags +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xf4f769c6 ath11k_core_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xfd28cadf ath11k_ce_rx_post_buf +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xff242346 ath11k_hal_srng_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x0aeabbd4 ath6kl_core_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x11b0a583 ath6kl_cfg80211_resume EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x1354043d ath6kl_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x328cd00e ath6kl_hif_intr_bh_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x33836e75 ath6kl_core_create EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x3502feef ath6kl_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x3a3e36d7 ath6kl_core_rx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x5dd41f29 ath6kl_core_create -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x7ee6c628 ath6kl_core_destroy -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x84167919 ath6kl_cfg80211_resume -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x8f612a18 ath6kl_stop_txrx +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x6e6987e5 ath6kl_core_rx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x84931a4d ath6kl_read_tgt_stats +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x8e11e3b6 ath6kl_cfg80211_suspend EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x91cfb84a ath6kl_hif_rw_comp_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x9375606f ath6kl_core_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xa7be7ab1 ath6kl_hif_intr_bh_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xa015cccb ath6kl_core_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xa91c8d5f ath6kl_core_tx_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 0xbe3497d3 ath6kl_cfg80211_suspend -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xc0cc53a6 ath6kl_read_tgt_stats -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xc10c5f37 ath6kl_core_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xcf941c14 ath6kl_core_cleanup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x05142f09 ath9k_cmn_spectral_init_debug -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x19693062 ath9k_cmn_debug_modal_eeprom -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x19789666 ath9k_cmn_init_channels_rates -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2bc149fe ath9k_cmn_get_hw_crypto_keytype -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x4019500b ath_cmn_process_fft -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x419b4874 ath9k_cmn_beacon_config_adhoc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x51d243b5 ath9k_cmn_setup_ht_cap -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x53a19693 ath9k_cmn_beacon_config_sta -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x5ccf15c9 ath9k_cmn_process_rssi -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x5eafb0e7 ath9k_cmn_debug_base_eeprom -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x6ad0e518 ath9k_cmn_spectral_deinit_debug -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x6e2976ac ath9k_cmn_process_rate -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x70a7ada7 ath9k_cmn_debug_phy_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x8249b69e ath9k_cmn_spectral_scan_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x917fafa5 ath9k_cmn_reload_chainmask -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x954f9f66 ath9k_cmn_spectral_scan_trigger -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x9ec7dc7f ath9k_cmn_debug_recv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb350d446 ath9k_cmn_rx_accept +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xe900b2d3 ath6kl_stop_txrx +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xf6c9eb13 ath6kl_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x0015f7ff ath9k_cmn_reload_chainmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x0d111eae ath9k_cmn_get_hw_crypto_keytype +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x1981f083 ath9k_cmn_init_channels_rates +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2cfaee71 ath_cmn_process_fft +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x3805e216 ath9k_cmn_get_channel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x3e4a0853 ath9k_cmn_spectral_init_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x471cc934 ath9k_cmn_debug_modal_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x6131ecc5 ath9k_cmn_beacon_config_ap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x62294fdd ath9k_cmn_debug_phy_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x69bea873 ath9k_cmn_init_crypto +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x73f37fdd ath9k_cmn_debug_base_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x84ab69d2 ath9k_cmn_spectral_scan_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x966f868e ath9k_cmn_process_rssi +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x99165c0f ath9k_cmn_beacon_config_adhoc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb4207113 ath9k_cmn_beacon_config_sta EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb76fccc7 ath9k_cmn_debug_stat_rx -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb886c5ec ath9k_cmn_rx_skb_postprocess -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xc475dd38 ath9k_cmn_init_crypto +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb9c298f0 ath9k_cmn_spectral_deinit_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xc3987d41 ath9k_cmn_update_txpow +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xc5beeef8 ath9k_cmn_setup_ht_cap EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd2981357 ath9k_cmn_count_streams -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xe5b54454 ath9k_cmn_update_txpow -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf53cf1a7 ath9k_cmn_get_channel -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xfc9bb0e1 ath9k_cmn_beacon_config_ap -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x024efd7a ath9k_hw_setup_statusring -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0274a5d5 ar9003_hw_disable_phy_restart -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x08ec1cd8 ath9k_hw_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0a6a75c9 ath9k_hw_gpio_free -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0bdc5af1 ath9k_hw_setmcastfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0dd942ca ath9k_hw_stopdmarecv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0efcac18 ath9k_hw_btcoex_set_weight -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0f156c97 ath9k_hw_resettxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xdf43785f ath9k_cmn_rx_accept +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xe1e04143 ath9k_cmn_spectral_scan_trigger +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xec45e9f3 ath9k_cmn_process_rate +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf8200a2a ath9k_cmn_rx_skb_postprocess +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xfcc16fc4 ath9k_cmn_debug_recv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0236c0b3 ath9k_hw_setantenna +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0498cb60 ar9003_mci_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x04a25bad ath9k_hw_write_associd +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x071b97e4 ath9k_hw_stopdmarecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0761d5e6 ath9k_hw_setrxabort +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0dd49d27 ath9k_hw_ani_monitor +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0e09da23 ath9k_hw_setmcastfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0e8d6871 ath9k_hw_gpio_free EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0f77dafc ath9k_hw_get_tsf_offset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x121604a4 ath9k_hw_reset_calvalid -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x13163a41 ath_gen_timer_alloc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x14f189b8 ath9k_hw_updatetxtriglevel -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x167e5b96 ar9003_paprd_is_done -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x17dc8403 ath9k_hw_bstuck_nfcal -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x21bcd9ec ath9k_hw_wow_apply_pattern -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x267a3d38 ath9k_hw_check_alive -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x26d3cc16 ath9k_hw_btcoex_init_3wire -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x27a3494e ath9k_hw_set_rx_bufsize -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2aba3f9f ar9003_paprd_init_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2b7233db ath9k_hw_setpower -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2c225a6d ath9k_hw_kill_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2c2e55b7 ath9k_hw_abortpcurecv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2cbe1c89 ath9k_hw_getnf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2cc11c02 ath9k_hw_gpio_request_out -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2f1fb944 ar9003_paprd_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2f67de50 ath9k_hw_beaconinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2fb58769 ath_gen_timer_isr -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2fed699b ath9k_hw_gen_timer_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3ff08d5b ath9k_hw_btcoex_init_2wire -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x408ad53b ath9k_hw_init_global_settings -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x413ac498 ath9k_hw_btcoex_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x422aadca ath9k_hw_set_tx_filter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x44e96a7c ar9003_mci_set_bt_version -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x46040d1d ath9k_hw_set_txpowerlimit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4a09d8e9 ath9k_hw_disable_mib_counters -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4d23be97 ath9k_hw_check_nav -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4d98662b ar9003_paprd_setup_gain_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4f25dbe6 ath9k_hw_setuprxdesc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x559e777d ath9k_hw_phy_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x560fd6b6 ath9k_hw_setantenna -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x56fc9079 ath9k_hw_wow_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x590be441 ath9k_hw_wow_wakeup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5a8f2c15 ath9k_hw_gettxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5a99f4a5 ath9k_hw_getrxfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5b84acd0 ath9k_hw_btcoex_bt_stomp -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5c99c558 ath9k_hw_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x60b6f5cb ath9k_hw_setuptxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x63602891 ath9k_hw_setopmode -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x63c7f0f0 ar9003_paprd_create_curve -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x67f1c649 ath9k_hw_resume_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6ab5bd7d ath9k_hw_name -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6aca3087 ath9k_hw_ani_monitor -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6bad46e2 ath9k_hw_addrxbuf_edma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6f2429d5 ath9k_hw_reset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x70348907 ath9k_hw_beaconq_setup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7044342d ath9k_hw_wait -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x706a147e ath9k_hw_abort_tx_dma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x718bf8e6 ath9k_hw_startpcureceive -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x73969501 ar9003_mci_send_wlan_channels -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x746dc65b ath9k_hw_rxprocdesc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x760bb12c ath9k_hw_gpio_get -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x78e87b9b ath9k_hw_disable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7ca5443f ath9k_hw_set_txq_props -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7e0bf7d4 ath9k_hw_setrxabort -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7e34dede ath9k_hw_intrpend -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7ec39c7d ar9003_mci_state -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7ec6a595 ath9k_hw_gpio_request_in -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7f5ae9a8 ar9003_paprd_populate_single_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x84ec190d ath9k_hw_getchan_noise -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8611e0a4 ath9k_hw_computetxtime -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x870cc2d0 ath9k_hw_btcoex_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x872c31a0 ar9003_hw_bb_watchdog_dbg_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8824eb5c ar9003_get_pll_sqsum_dvc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8f664999 ath_gen_timer_free -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x92777056 ath9k_hw_write_associd -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9311a163 ath9k_hw_putrxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x964cac7d ar9003_is_paprd_enabled -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa08adb5a ath9k_hw_btcoex_init_mci -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa1a7ba4e ath9k_hw_gettsf32 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaa710d90 ath9k_hw_gen_timer_stop -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaca14b4b ath9k_hw_btcoex_init_scheme -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaff4ae34 ath9k_hw_releasetxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb060e55e ath9k_hw_gettsf64 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb1577cd9 ath9k_hw_btcoex_set_concur_txprio -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb1e40012 ath9k_hw_reset_tsf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb49ce148 ath9k_hw_set_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb5159808 ath9k_hw_get_txq_props -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc3d64f3b ath9k_hw_puttxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcc62b664 ath9k_hw_set_tsfadjust -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcd48b67b ath9k_hw_numtxpending -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd040f787 ath9k_hw_btcoex_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd08f4a87 ath9k_hw_set_gpio -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd34c00f5 ar9003_mci_get_interrupt -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd8dc3958 ath9k_hw_setrxfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdb12e8a1 ath9k_hw_enable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe028d60c ath9k_hw_loadnf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe62fbe51 ar9003_mci_cleanup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xeae376e5 ar9003_mci_get_next_gpm_offset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xeb129e4e ar9003_mci_send_message -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xef4452d4 ar9003_mci_setup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf063337b ath9k_hw_stop_dma_queue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf19efbaa ath9k_hw_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf5ce08ef ath9k_hw_settsf64 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf97c89bf ath9k_hw_init_btcoex_hw -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfaea6041 ath9k_hw_process_rxdesc_edma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfb278d24 ath9k_hw_txstart -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfbf4b244 ar9003_hw_bb_watchdog_check -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xffc90e52 ath9k_hw_set_sta_beacon_timers -EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x1792a716 stop_atmel_card -EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x5ad83eb8 atmel_open -EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0xd367e5f4 init_atmel_card -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x0c0feec6 brcmu_pktq_pdeq_tail +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0fe08fc6 ath9k_hw_process_rxdesc_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x110d439a ath_gen_timer_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x139f5de4 ath9k_hw_set_sta_beacon_timers +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x18bc29ca ath9k_hw_set_txpowerlimit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1cb49450 ath9k_hw_btcoex_bt_stomp +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1dbbf1b5 ar9003_paprd_is_done +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x21a52a07 ath9k_hw_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2738a4eb ath9k_hw_resume_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x27a52c9d ath_gen_timer_isr +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x29543c89 ath9k_hw_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2b94a52a ath9k_hw_getrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2d048d75 ath9k_hw_bstuck_nfcal +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2d38ac1b ath9k_hw_setrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2ed1461b ath9k_hw_gettsf32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2f62db14 ath9k_hw_btcoex_init_mci +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x30d6b667 ath9k_hw_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x314eb0f3 ath9k_hw_beaconq_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x32eb07e8 ath9k_hw_settsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x37005677 ath9k_hw_init_global_settings +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x375bc228 ath9k_hw_gpio_get +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3d92b6cc ath9k_hw_btcoex_init_scheme +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x440b60f2 ar9003_get_pll_sqsum_dvc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x44acad4d ath9k_hw_btcoex_set_concur_txprio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x44f608e3 ath9k_hw_puttxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x462ea43e ath9k_hw_set_tx_filter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x47a7ebb9 ath9k_hw_phy_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x48c79ebc ath9k_hw_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x49cc96bf ar9003_mci_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4a093c83 ath9k_hw_reset_calvalid +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4acd33ac ath9k_hw_setup_statusring +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4ca38437 ath9k_hw_putrxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4e35509d ath9k_hw_init_btcoex_hw +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5793fcc2 ar9003_hw_disable_phy_restart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5a66f576 ath9k_hw_set_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5b355ca1 ath9k_hw_txstart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5bec55d5 ath9k_hw_intrpend +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5cb70462 ath9k_hw_setpower +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5d8b31a6 ath_gen_timer_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5dd394d3 ar9003_hw_bb_watchdog_dbg_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5eb68dee ar9003_paprd_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6983f450 ar9003_paprd_create_curve +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6c2d7867 ar9003_mci_send_message +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6d1202ec ath9k_hw_name +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6df4f19d ath9k_hw_btcoex_init_3wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6e4b76ce ath9k_hw_setuprxdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x710d707d ath9k_hw_btcoex_set_weight +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x78684870 ath9k_hw_abort_tx_dma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7c03a4ca ath9k_hw_computetxtime +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7c44599a ath9k_hw_set_rx_bufsize +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7dce41a4 ar9003_hw_bb_watchdog_check +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x803f47e3 ath9k_hw_check_alive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x84831527 ath9k_hw_disable_mib_counters +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x859e32cf ath9k_hw_beaconinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8f964e9a ath9k_hw_rxprocdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x907c00f4 ath9k_hw_wow_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x92a73de2 ar9003_paprd_init_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x957f73cc ath9k_hw_btcoex_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x95d0d15d ath9k_hw_set_gpio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x97962921 ath9k_hw_updatetxtriglevel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x98f8a4c7 ath9k_hw_getnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9c69673d ath9k_hw_btcoex_init_2wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9d0bf6b6 ath9k_hw_wow_apply_pattern +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9df8bb16 ath9k_hw_resettxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9ed758cc ath9k_hw_wow_wakeup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9ff68524 ath9k_hw_abortpcurecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa37996ad ath9k_hw_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa3f3b683 ath9k_hw_gpio_request_in +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa44897ab ath9k_hw_reset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa706732b ath9k_hw_gen_timer_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xabafbf4d ath9k_hw_getchan_noise +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb17c509f ar9003_mci_get_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb3ff536b ath9k_hw_gen_timer_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb59bd61a ath9k_hw_gettsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb77307bd ar9003_paprd_setup_gain_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb797b62c ar9003_mci_state +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb90d6b36 ath9k_hw_wait +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbe841eb0 ath9k_hw_get_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc0858855 ath9k_hw_check_nav +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc1aea0a9 ath9k_hw_numtxpending +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc1cc8be3 ar9003_mci_send_wlan_channels +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc87594bd ath9k_hw_gpio_request_out +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xca4ce452 ath9k_hw_stop_dma_queue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xca715f07 ar9003_is_paprd_enabled +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcc1ff3ef ath9k_hw_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd02d7c45 ath9k_hw_startpcureceive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd5e4e809 ath9k_hw_btcoex_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd73cea72 ar9003_mci_set_bt_version +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd96e53eb ath9k_hw_addrxbuf_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xeae31baf ath9k_hw_kill_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xeb9a5a53 ar9003_paprd_populate_single_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xeef6e3cd ath9k_hw_releasetxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf2de0047 ath9k_hw_setopmode +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf5318c2a ath9k_hw_btcoex_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf5ce9ad7 ath9k_hw_setuptxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf62cc8de ath9k_hw_set_tsfadjust +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf67d0fd8 ar9003_mci_get_next_gpm_offset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf7792fbd ath9k_hw_set_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfab526f4 ath9k_hw_gettxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfe7ff3c3 ath9k_hw_loadnf +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x5823c3ff stop_atmel_card +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x9c9e46f4 atmel_open +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0xc2a6824b init_atmel_card +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x04f83209 brcmu_pktq_penq EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x1906648e brcmu_boardrev_str -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x2d397b12 brcmu_pktq_penq -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x40a4018e brcmu_pktq_pdeq_match -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x63711f19 brcmu_pktq_peek_tail -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x7aa31a07 brcmu_pktq_init -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x8572ce1b brcmu_pkt_buf_free_skb -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x88c418b3 brcmu_pktq_mdeq -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x8caa4c9f brcmu_pktq_flush -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x9053f14b brcmu_pktq_penq_head +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x192cbf13 brcmu_pkt_buf_get_skb +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x2e391920 brcmu_pktq_mdeq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x3b0deda7 brcmu_pktq_pflush +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x4a766ced brcmu_pktq_mlen +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x4e1e5370 brcmu_pktq_pdeq_tail +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x643e9b07 brcmu_pktq_peek_tail +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x702968ad brcmu_pktq_flush +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x96d364c1 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 0xcc21eac5 brcmu_pktq_pflush +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xab6406b6 brcmu_pktq_pdeq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xb0b00869 brcmu_pktq_pdeq_match +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xb55423f3 brcmu_pktq_penq_head +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xcdf904e6 brcmu_pkt_buf_free_skb EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xd6217d91 brcmu_d11_attach -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xe724b1dd brcmu_pktq_pdeq -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xe9790423 brcmu_pktq_mlen -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xefdafb70 brcmu_pkt_buf_get_skb -EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0x6b3a1793 stop_airo_card -EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0x9a25a170 init_airo_card -EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0xf2cb43fc reset_airo_card -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x140b5d52 alloc_libipw -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x1f609cdd libipw_is_valid_channel -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x1f96954a libipw_rx_mgt -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x39d86c9f libipw_rx -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x3df882a2 libipw_channel_to_index -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x463ca492 libipw_get_channel -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x47864583 libipw_wx_get_scan -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x59c7a197 libipw_get_geo -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x5a9cfe42 libipw_wx_get_encode -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x83861f9a libipw_wx_set_encode -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x8be7307e libipw_get_channel_flags -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x93c1fb70 libipw_freq_to_channel -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x9b3ac842 libipw_set_geo -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x9bb3d454 libipw_channel_to_freq -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xa0626749 free_libipw -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xca12ac69 libipw_xmit -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xce09ede8 libipw_txb_free -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xd6b83b0f libipw_wx_set_encodeext -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xef256489 libipw_wx_get_encodeext -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xf5fffff1 libipw_networks_age -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x009e9d97 il_send_rxon_timing -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x009f96ee il_eeprom_free -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x020314dc _il_apm_stop -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x085c6c55 il_get_lowest_plcp -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0b59ade6 il_tx_queue_unmap -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0c6f4176 il_send_lq_cmd -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0ef04e70 il_set_rate -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x10c09d4b il_mac_bss_info_changed -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x121d6295 il_cmd_queue_free -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x14e60128 il_mac_reset_tsf -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1eb8a3ca il_init_scan_params -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x209f0b41 il_wr_prph -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x22396264 il_set_rxon_channel -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x293aee93 il_set_flags_for_band -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x29964e25 il_mac_hw_scan -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2ae51820 il_mac_conf_tx +EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0xab16b05b init_airo_card +EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0xe913ed11 reset_airo_card +EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0xf596a0ec stop_airo_card +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x005c461a libipw_get_geo +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x0c7efa09 libipw_rx +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x1649b091 libipw_xmit +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x1f87f89a libipw_wx_set_encodeext +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x36b61561 libipw_channel_to_freq +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x46653084 libipw_get_channel_flags +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x544fc042 libipw_txb_free +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x58537bd9 libipw_is_valid_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x7af4a796 libipw_wx_get_encodeext +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x849e9fbf libipw_networks_age +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x884acd48 libipw_set_geo +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x98ca0c01 libipw_channel_to_index +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xa50e77a3 libipw_get_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xa959b4b6 alloc_libipw +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xacb13747 free_libipw +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xb2f26ae8 libipw_wx_get_scan +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xce199321 libipw_wx_set_encode +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xd973874e libipw_freq_to_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xda8d4301 libipw_rx_mgt +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xef29823a libipw_wx_get_encode +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x02a3fcd7 il_mac_remove_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x02e972ff il_set_rxon_ht +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x03648da4 il_rd_prph +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0a6c9159 il_mac_sta_remove +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0bdb59ee il_send_add_sta +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0ffc3fa5 il_setup_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x13645add il_mac_change_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x13d5a1fc il_txq_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x144b71a5 il_apm_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x181b3ccd il_full_rxon_required +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1b620707 il_scan_cancel +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1b7ca6aa il_irq_handle_error +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1bd86a8f il_mac_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1dd5d909 il_tx_queue_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1e475ec0 il_power_initialize +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2037bc1a il_eeprom_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x284c9601 il_check_rxon_cmd EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2bf7eea6 il_queue_space -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2f7ac903 il_free_txq_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2fd65634 il_hdl_spectrum_measurement -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x31067756 il_connection_init_rx_config -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x32ac8a06 il_mac_change_interface -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x335ad7be il_mac_sta_remove -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3483e285 il_tx_queue_reset -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x378a8032 il_init_channel_map -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3a415a61 _il_poll_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x40c72ea0 il_rx_queue_alloc +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2ffeb240 il_tx_queue_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3125b213 il_force_reset +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x31f90d0e il_free_txq_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3580ea69 il_send_stats_request +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3b15d24b il_get_lowest_plcp +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3b55af1a il_read_targ_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3c637a94 il_pm_ops +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3ea1907c il_set_tx_power +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3f2f9d66 il_update_stats EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x416bd26a il_debug_level -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4207153c il_get_single_channel_number -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x46c5ec15 il_eeprom_query_addr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4825b6b5 il_cancel_scan_deferred_work -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4bc16014 il_get_active_dwell_time -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4c0656a5 il_send_add_sta -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4ca96132 il_rd_prph -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x501a93b6 il_hdl_error -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x51f2d755 il_send_bt_config -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x52a9c035 il_mac_flush -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5408a759 il_get_passive_dwell_time -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x55ebde8e il_apm_stop -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x56bff2de il_scan_cancel_timeout -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x587c1856 il_add_station_common -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x588ccc78 il_get_channel_info -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5c2bdf5b il_leds_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x60be0473 il_setup_scan_deferred_work -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x60e18cf7 il_force_reset -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x615d5e6f il_add_beacon_time -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6226d0c5 il_tx_cmd_complete -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x69d602f0 il_tx_queue_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6a6a7a61 il_restore_stations -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6bc94721 il_set_decrypted_flag -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6e43b163 il_mac_add_interface -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6e5fa177 il_setup_watchdog -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7106010e il_setup_rx_scan_handlers -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x723c4662 il_fill_probe_req -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x775f1784 il_set_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x78226697 il_set_rxon_hwcrypto -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7b474c14 il_txq_update_write_ptr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7c791ab7 il_mac_config -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7ea6b914 il_hdl_csa -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x849a5073 il_eeprom_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8aa6fb14 il_full_rxon_required -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8bd67073 il_update_stats -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8bef185b il_poll_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8e47b6f4 il_dbgfs_unregister -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9180a576 il_send_cmd_sync -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x94d918ce il_apm_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9bc59d6e il_power_initialize -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9c37a34d il_scan_cancel +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x42484d0b il_hdl_pm_sleep +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x46b9e9fb il_usecs_to_beacons +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4c9b634b il_send_cmd_sync +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x51f8acf3 il_restore_stations +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x52b03cc3 il_tx_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x52d6f4a3 il_send_bt_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x53a7c62f il_hdl_csa +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x593098eb il_init_geos +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x59d88057 il_is_ht40_tx_allowed +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5a57cab6 il_set_flags_for_band +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5f507ec0 il_get_single_channel_number +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6366b37b il_cancel_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x646d060f il_set_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6c5ea151 il_get_passive_dwell_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6dcc74ca il_leds_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x744b69f7 il_send_cmd_pdu_async +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x74b1cef3 il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7c4687de il_hdl_spectrum_measurement +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7de5be5c _il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8298360f il_send_cmd_pdu +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x864aa2bd il_mac_conf_tx +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8d274d0b il_get_free_ucode_key_idx +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9355b2fe il_write_targ_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x938bd70c il_free_geos +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x94556947 il_mac_bss_info_changed +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x96d73d89 il_chswitch_done +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x99d642c0 il_connection_init_rx_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9a4940c2 il_get_active_dwell_time EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9cc714af il_bg_watchdog -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa057d001 il_check_rxon_cmd -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa1400f59 il_irq_handle_error -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xaa4acd5d il_rx_queue_update_write_ptr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xaca107a9 il_alloc_txq_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xadc16ef2 il_cmd_queue_unmap -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xade6ce52 il_clear_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9d97c307 il_set_rate +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa02053f7 il_setup_rx_scan_handlers +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa048656c _il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa135042f il_free_channel_map +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa4947858 il_send_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa5980efb il_clear_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa70560cf il_add_station_common +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xaa08066e il_rx_queue_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xaa450250 il_get_channel_info +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb0e96ff0 il_send_lq_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb4f8c26d il_set_rxon_channel EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb65510a3 il_get_cmd_string -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb7348d18 il_send_cmd_pdu_async +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb703c6f6 il_setup_watchdog +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb73f5a27 il_tx_cmd_protection EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb7bd33ff il_isr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbac1e9e9 il_get_free_ucode_key_idx -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbdfdfa21 il_free_geos -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc347a7d7 il_write_targ_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc4e81860 il_set_tx_power -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc846b5b2 il_send_cmd_pdu -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc8f190d0 il_power_update_mode -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc998f810 il_leds_exit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xce0b0ebd il_is_ht40_tx_allowed -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcf393705 il_send_cmd -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd20a127b il_read_targ_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd7c711b4 il_set_rxon_ht -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd9b3e1ec il_send_stats_request -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd9b4df69 il_init_geos -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe37fa960 il_hdl_pm_sleep -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe42fcb2e il_mac_remove_interface -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe4cd6221 il_clear_ucode_stations -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe9f7aee8 il_hdl_pm_debug_stats -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xea370b6b il_eeprom_query16 -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xeb1d4cf4 il_rx_queue_space -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xec3aec35 il_chswitch_done -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xeeb3f1bd il_usecs_to_beacons -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf0b59613 il_tx_queue_free -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf32dfced il_tx_cmd_protection -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf6a875c5 il_free_channel_map +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb7bef899 il_cmd_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb8ed7685 il_set_rxon_hwcrypto +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbb512a7e il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbbb85f14 il_set_decrypted_flag +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbbe51681 il_tx_queue_reset +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbc401302 il_power_update_mode +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbc6c3ea5 il_scan_cancel_timeout +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc35faee6 il_mac_hw_scan +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc48b5606 il_fill_probe_req +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc87571a6 il_eeprom_query16 +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xda8269b6 il_eeprom_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdafa1613 il_send_rxon_timing +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdcd3e9f9 il_hdl_error +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe09d0141 il_mac_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe259e610 il_hdl_pm_debug_stats +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe37bc504 il_dbgfs_register +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe504eaf6 il_rx_queue_space +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe55262cc il_mac_flush +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe7db1368 il_init_channel_map +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xec7f9198 il_mac_add_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xed2acd48 il_wr_prph +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xed459b29 il_eeprom_query_addr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xef363379 il_dbgfs_unregister +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf2313a8e il_add_beacon_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf29a5ec2 il_leds_exit EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf70a693b il_bcast_addr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfdc8cc9a il_pm_ops -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfe66f9d8 il_dbgfs_register -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x079ed0d4 __traceiter_iwlwifi_dev_ucode_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf7ab11d6 il_init_scan_params +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf84054c8 il_tx_cmd_complete +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfbbc9227 il_alloc_txq_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfe7cb532 il_cmd_queue_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xff67b5de il_rx_queue_alloc +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xff7c1b09 il_clear_ucode_stations 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 0x706ccb15 __traceiter_iwlwifi_dev_ucode_cont_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x6bd5b380 __traceiter_iwlwifi_dev_ucode_wrap_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x7e32e0ee __traceiter_iwlwifi_dev_ucode_event EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x970bf4ef __SCK__tp_func_iwlwifi_dev_ucode_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x9bf28fbb __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 0xc5da8f57 __traceiter_iwlwifi_dev_ucode_cont_event EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd1e69877 __SCK__tp_func_iwlwifi_dev_ucode_cont_event -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x03462e16 hostap_remove_proc -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x125dfce5 hostap_set_antsel +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x0b46c33e hostap_init_proc EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x13abdd5a hostap_dump_tx_header -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x14b8f9cb hostap_set_word -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x1a225c93 hostap_remove_interface -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x244c3e31 hostap_master_start_xmit -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x31c43830 hostap_80211_ops -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x39a62bca hostap_set_hostapd_sta -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x3b590bbe hostap_set_encryption -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x427b93dd hostap_80211_rx -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x50cfef49 hostap_set_string -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x646cf03f hostap_init_ap_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x1474f365 hostap_master_start_xmit +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x1a886f37 hostap_remove_interface +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x1c522bad hostap_add_interface +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x20fc6160 hostap_check_sta_fw_version +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x3d293418 hostap_get_porttype +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x479ef4f0 hostap_remove_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x4fea07a4 hostap_80211_ops +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x55c65c43 hostap_set_antsel +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x5e8cf00f hostap_set_hostapd_sta +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x665a3d8d hostap_set_encryption +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x6e368c70 hostap_free_data EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x75934c58 hostap_set_multicast_list_queue EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7fb75891 hostap_dump_rx_header -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x85a860c4 hostap_set_hostapd -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x88b3af7e hostap_free_data -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x8efe7f8b hostap_setup_dev -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x95eec64e hostap_set_roaming -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xa815ecf0 hostap_handle_sta_tx_exc -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xaf0f2072 hostap_set_auth_algs +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x82066a31 prism2_update_comms_qual +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x8c99bd9f hostap_set_hostapd +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x9a78aa18 hostap_init_ap_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xa1fe31ac hostap_set_string +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xadb07fa4 hostap_handle_sta_tx_exc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb02d6747 hostap_set_auth_algs +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb46157f7 hostap_info_init EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb4b77c8b hostap_80211_get_hdrlen -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb6ac35ce hostap_check_sta_fw_version -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xc2afd207 prism2_update_comms_qual -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xc48abe82 hostap_init_data -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xc7b66cc1 hostap_get_porttype -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xe0f21d35 hostap_info_init -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xe45f521f hostap_info_process -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xe5c70a29 hostap_init_proc -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xed11f3d6 hostap_add_interface -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x117b7ea0 orinoco_up -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x1ec24d81 orinoco_change_mtu -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x32a311dc __orinoco_ev_rx -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x3fa04017 orinoco_open -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x4305f54e free_orinocodev -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x538ea291 orinoco_init -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x6b3b0c2f orinoco_set_multicast_list -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x8aeb3954 orinoco_down -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xa40fb239 alloc_orinocodev -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xaec26ac1 orinoco_tx_timeout -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xaf88f88d orinoco_process_xmit_skb -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xb6418ec2 __orinoco_ev_info -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xb7d57b98 orinoco_if_add +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb7529c07 hostap_set_word +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xc4416b2b hostap_init_data +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xc5af36f9 hostap_setup_dev +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xe47142b5 hostap_set_roaming +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xf5de830d hostap_info_process +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xfe98eeb5 hostap_80211_rx +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x11537f8d orinoco_init +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x189662cf orinoco_up +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x2f2132d4 orinoco_open +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x4ab9b519 orinoco_tx_timeout +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x5a417151 free_orinocodev +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x6d4e7c87 orinoco_process_xmit_skb +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x766477e3 __orinoco_ev_rx +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x7799240f orinoco_change_mtu +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x7ced001b alloc_orinocodev +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x7ff8fa62 orinoco_set_multicast_list +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x86fc508e orinoco_down +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x99dba551 orinoco_stop +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xb3219132 orinoco_if_del EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xc29737d4 hermes_struct_init -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xdd826d4b orinoco_if_del -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xf8daf395 orinoco_stop +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xd972950b __orinoco_ev_info +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xfc9087d3 orinoco_if_add EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xffe27bca orinoco_interrupt -EXPORT_SYMBOL drivers/net/wireless/mediatek/mt76/mt76 0x6d3da4ab mt76_wcid_key_setup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0x1142b8f5 rtl_btc_get_ops_pointer -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0525edb3 rtl92c_phy_query_bb_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x08ccbbf5 rtl92c_phy_set_io_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1417c32d _rtl92c_phy_fw_rf_serial_write -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1b735c0b rtl92c_phy_set_txpower_level -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1ba3fc71 rtl92c_phy_sw_chnl -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2143a560 rtl92c_phy_set_rfpath_switch +EXPORT_SYMBOL drivers/net/wireless/mediatek/mt76/mt76 0xd76adaf8 mt76_wcid_key_setup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0x78518c13 rtl_btc_get_ops_pointer +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x014bdded rtl92c_dm_check_txpower_tracking +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x129daeb1 rtl92c_download_fw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x12d0adc2 _rtl92c_phy_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1a653d9c rtl92c_fill_h2c_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x21c3dd01 _rtl92c_phy_bb8192c_config_parafile 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 0x29a7c233 rtl92c_dm_init_edca_turbo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2c77c1dc rtl92ce_phy_set_rf_on -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2d4fedd6 rtl92c_bt_rssi_state_change -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2eeeebd7 _rtl92c_phy_set_rf_sleep -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3a3ddaf2 _rtl92c_phy_bb8192c_config_parafile -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3a6aafc3 rtl92c_dm_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3ae705bf rtl92c_dm_init_rate_adaptive_mask -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3e5edbf9 rtl92c_phy_update_txpower_dbm -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4257fce0 _rtl92c_phy_rf_serial_write -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x449c87db rtl92c_set_fw_pwrmode_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4f086f44 _rtl92c_phy_txpwr_idx_to_dbm -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5234e044 rtl92c_dm_check_txpower_tracking -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x561673b5 rtl92c_fill_h2c_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5e45e746 rtl92c_phy_set_bb_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5f608977 rtl92c_phy_set_bw_mode -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7b5c11ec rtl92c_download_fw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x82b1eea7 _rtl92c_phy_dbm_to_txpwr_idx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8ecfbe91 rtl92c_phy_iq_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x98944fc7 rtl92c_phy_lc_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa3fc3bc0 _rtl92c_phy_rf_serial_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa6f6e766 rtl92c_firmware_selfreset -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb505ac56 _rtl92c_phy_fw_rf_serial_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb64cb5af _rtl92c_store_pwrindex_diffrate_offset -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xba960dec rtl92c_dm_watchdog -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xcaa98b9b rtl8192_phy_check_is_legal_rfpath -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xccc709dd rtl92c_phy_ap_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xcdb8d16d rtl92c_dm_bt_coexist -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd1c5c1ad rtl92c_dm_rf_saving -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd33f1798 rtl92c_phy_sw_chnl_callback -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xdedbe2cf rtl92c_phy_rf_config -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe17163a4 rtl92c_dm_write_dig -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe457ea7d rtl92c_set_fw_joinbss_report_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe690fdcb _rtl92c_phy_init_bb_rf_register_definition -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf83160e2 rtl92c_set_fw_rsvdpagepkt -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xfce9ac06 rtl92c_phy_set_io -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x0befd900 rtl_pci_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x10328643 rtl_pci_suspend -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x9f15afbb rtl_pci_resume -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xd792b920 rtl_pci_disconnect -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x075f2b89 rtl_usb_suspend -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x42f9d6e1 rtl_usb_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xa219c4fe rtl_usb_disconnect -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xdc1f0f89 rtl_usb_resume -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x00bbddb8 efuse_shadow_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x077f807f rtl_process_phyinfo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x08a44b37 rtl_cam_delete_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2989d804 _rtl92c_store_pwrindex_diffrate_offset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x404e9b3b rtl92c_phy_query_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x46d83083 _rtl92c_phy_fw_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x49706989 _rtl92c_phy_dbm_to_txpwr_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4cdcf23d _rtl92c_phy_fw_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4e8584d6 rtl92c_phy_sw_chnl +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4e8722b6 rtl92c_set_fw_rsvdpagepkt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4f9f78ca rtl92c_phy_sw_chnl_callback +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x51f2e36c rtl92ce_phy_set_rf_on +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x53f5a978 rtl92c_dm_init_edca_turbo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x541f7d61 rtl92c_phy_lc_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x69c08f9b rtl92c_phy_update_txpower_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6c01d61d rtl92c_dm_watchdog +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6eab97df rtl92c_phy_set_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7309a252 _rtl92c_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7e4a1c27 rtl92c_dm_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x82755300 rtl92c_bt_rssi_state_change +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x861b2268 rtl92c_dm_init_rate_adaptive_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x866bedcd rtl92c_set_fw_joinbss_report_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8afe3dc0 rtl92c_phy_ap_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8d2b5d23 rtl92c_dm_rf_saving +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9669a492 _rtl92c_phy_set_rf_sleep +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9b83941c rtl92c_dm_bt_coexist +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa436ddbd _rtl92c_phy_init_bb_rf_register_definition +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xaa71a564 rtl92c_phy_set_rfpath_switch +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb0a0e529 rtl92c_dm_write_dig +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb7286fb7 rtl92c_phy_set_io +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb98bb104 rtl92c_phy_iq_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd28d4047 rtl92c_phy_set_io_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe6bb9b7c rtl92c_set_fw_pwrmode_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xeaf7f56c rtl92c_phy_set_txpower_level +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xeb498124 rtl92c_phy_set_bw_mode +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf039d1a5 rtl92c_phy_rf_config +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf11ba5b2 rtl92c_firmware_selfreset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf1745039 rtl8192_phy_check_is_legal_rfpath +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xfdf37896 _rtl92c_phy_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x2ea8412e rtl_pci_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x39f3efad rtl_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xa36355f2 rtl_pci_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xcb9d409f rtl_pci_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x01160b5d rtl_usb_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x2abbca9b rtl_usb_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x3aa18aad rtl_usb_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xfa292105 rtl_usb_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x07396006 rtl_cam_reset_all_entry EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0b038e24 channel5g_80m -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0d1d594b rtl_rfreg_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0f555e55 rtl_cam_get_free_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x13f6a511 rtl_mrate_idx_to_arfr_id +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x143c42c1 rtlwifi_rate_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1a27764f rtl_cam_del_entry EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1b945315 rtl_addr_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1ca92551 rtl_cmd_send_packet -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x205df245 rtl_get_tcb_desc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x24da541d rtl_dm_diginit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x29426e36 rtl_phy_scan_operation_backup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2e8def24 rtl_cam_del_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x303550d9 rtl_hal_pwrseqcmdparsing EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x30a956d7 rtl_query_rxpwrpercentage -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x39edc5ae rtl_collect_scan_list -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3ff1e58f rtl_ps_disable_nic -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x44c55663 rtl_efuse_shadow_map_update +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x432d05f1 rtl_cam_get_free_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4b4cef78 rtl_ps_disable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4c0a85af efuse_one_byte_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x507d7564 rtl_rx_ampdu_apply EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x54824f58 channel5g -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6735944a rtl_init_rfkill +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5cf22b53 rtl_init_rfkill +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x61d345ba efuse_read_1byte +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x631e719c rtl_get_tcb_desc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6444c1dc rtl_hal_pwrseqcmdparsing +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x653f05c5 rtl_cmd_send_packet +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x715b56aa rtl_cam_empty_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x75e37a69 efuse_power_switch +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x80fc88df rtl_rfreg_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8918332f rtl_send_smps_action +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8a19bc13 rtl_collect_scan_list EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8ea60059 rtl_fw_cb -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x90d8e35e rtl_bb_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbf4bfba9 efuse_read_1byte -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc03a8bd7 efuse_power_switch -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xcd0b7510 rtl_send_smps_action -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xcda004a1 rtl_cam_reset_all_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd2c55c51 efuse_one_byte_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd2c993a3 rtl_ps_enable_nic -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd75e4bc4 rtl_cam_add_one_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd97c3c81 rtl_cam_mark_invalid -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd9df58ba rtl_rx_ampdu_apply -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xdcb44e0c rtlwifi_rate_mapping -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xde9ac2b9 rtl_signal_scale_mapping -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe079e259 rtl_cam_empty_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xeaf8bbe4 rtl_mrate_idx_to_arfr_id +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9757add8 efuse_shadow_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x98f3b875 rtl_c2hcmd_enqueue +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa3671a82 rtl_signal_scale_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xab7e36dc rtl_dm_diginit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xac06bf20 rtl_ps_enable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc7e92013 rtl_efuse_shadow_map_update +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc8560737 rtl_cam_delete_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd17f4dda rtl_cam_add_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd73549be rtl_process_phyinfo 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 0xfe7112bb rtl_c2hcmd_enqueue -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8723d 0x5efe842a rtw8723d_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8821c 0xc33ef3a7 rtw8821c_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822b 0xb51efe98 rtw8822b_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822c 0x5adc95a6 rtw8822c_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x04d216e9 rtw_phy_pwrtrack_get_pwridx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x053c3ee8 __rtw_dbg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x06c79790 rtw_tx_fill_tx_desc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x0d5ff96f rtw_bf_cfg_csi_rate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1206db93 rtw_bf_remove_bfee_mu -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x137fb5f2 rtw_tx_write_data_rsvd_page_get -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x13ce3f20 rtw_bf_phy_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x13fda781 rtw_coex_read_indirect_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x2101af64 rtw_phy_read_rf_sipi -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x215b93c5 rtw_tx_report_enqueue -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x25118ccc rtw_phy_cfg_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x25c3c6f8 rtw_core_deinit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x27723dcc rtw_set_channel_mac -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x2887f240 rtw_fw_do_iqk -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x30220757 rtw_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf62bcd02 rtl_phy_scan_operation_backup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xfb3d94e7 rtl_cam_mark_invalid +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xff4b11c5 rtl_bb_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8723d 0x34fd032d rtw8723d_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8821c 0xa93d74a0 rtw8821c_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822b 0xdf1d799f rtw8822b_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822c 0x30df12a1 rtw8822c_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x02afef93 rtw_bf_remove_bfee_su +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x05763d09 rtw_phy_read_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x0859a72c rtw_rx_fill_rx_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x09092f56 rtw_phy_cfg_bb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x093c2c4c rtw_tx_fill_tx_desc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x0aaa408c rtw_phy_cfg_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x0bc428b1 rtw_phy_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1329eb64 rtw_fw_c2h_cmd_rx_irqsafe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x13660299 rtw_bf_cfg_csi_rate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1acf38eb rtw_parse_tbl_txpwr_lmt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1bb3aa3c rtw_phy_parsing_cfo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x23b6edba rtw_phy_load_tables +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x273ad6a4 rtw_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x2e4fec4a rtw_fw_do_iqk EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x33b3f3c0 rtw_debug_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x36bbb052 rtw_phy_config_swing_table EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x36c5bfca rtw_disable_lps_deep_mode -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x41e842cb rtw_fw_inform_rfk_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x421334b9 rtw_bf_enable_bfee_mu 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 0x471b0526 rtw_register_hw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x50c2db6a rtw_dump_fw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x461989df rtw_phy_write_rf_reg_mix +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x51111cd8 rtw_parse_tbl_phy_cond EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x519c8ba9 rtw_rate_size +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x56701193 rtw_bf_remove_bfee_mu EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x58210e60 rtw_rate_section -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5830ce96 rtw_restore_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5ef8f135 rtw_phy_cfg_bb -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x67432a49 rtw_phy_pwrtrack_need_lck -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6f024179 rtw_bf_remove_bfee_su -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7281ff7c rtw_fw_c2h_cmd_rx_irqsafe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x76e0b1e0 rtw_coex_write_scbd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x809be69e rtw_parse_tbl_phy_cond -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x82993ad4 rtw_phy_get_tx_power_index -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x83790791 rtw_parse_tbl_bb_pg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x849e5505 rtw_fw_c2h_cmd_isr -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x8e30858f rtw_parse_tbl_txpwr_lmt -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x8ed4d7ce rtw_rx_fill_rx_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x90266d4d rtw_phy_pwrtrack_thermal_changed -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x92475e12 rtw_dump_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9ae3a6fe rtw_tx_write_data_h2c_get -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9e352e98 rtw_phy_pwrtrack_get_delta -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xac80c277 rtw_power_mode_change -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb00f0a55 rtw_unregister_hw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb03509c5 rtw_phy_write_rf_reg_mix -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb4caf380 rtw_bf_set_gid_table -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc2d66133 rtw_phy_cfg_agc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc5b57a65 check_hw_ready -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc64ab66d rtw_phy_set_tx_power_level -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc8f039de rtw_phy_pwrtrack_avg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xcb5c18d2 rtw_read8_physical_efuse -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xcdcc4645 rtw_chip_info_setup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd3ae718f rtw_phy_cfg_mac -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd5199e5b rtw_phy_load_tables -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd71c4ee5 rtw_phy_write_rf_reg_sipi -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xdc6f308e rtw_rx_stats -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xdd362994 rtw_phy_parsing_cfo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xdfd3cfaf rtw_phy_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe3584f97 rtw_phy_read_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe3d819de rtw_coex_write_indirect_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xef7abfc6 rtw_phy_pwrtrack_need_iqk -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf585cce7 rtw_phy_config_swing_table -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf9f2c438 rtw_bf_enable_bfee_su -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xff3b50b3 rtw_core_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x2caabb28 rtw_pm_ops -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x9df0d895 rtw_pci_remove -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x9ea547fe rtw_pci_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0xb1471d61 rtw_pci_shutdown -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x2fc0d60b rtw89_core_register -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x375c9909 rtw89_mac_get_err_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x481c5397 rtw89_core_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x6ca03b21 rtw89_ser_notify -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x74bf68fd rtw89_core_fill_txdesc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x765f056d rtw89_chip_info_setup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7cf027de rtw89_core_napi_stop -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x8875e527 rtw89_core_napi_start -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x8a319517 rtw89_core_deinit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xad048432 rtw89_mac_set_err_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xaf34c428 rtw89_phy_read_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xb41f91d3 rtw89_ops -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xb7119f6f rtw89_core_unregister -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xbaa1eb18 rtw8852a_chip_info -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xcb6b8475 rtw89_core_rx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xcef647c3 rtw89_core_napi_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xdc3fb0f3 rtw89_core_napi_deinit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xdeaa67c7 rtw89_phy_write_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe2a1a299 rtw89_core_query_rxdesc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5ceafb4d rtw_tx_report_enqueue +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5ef37e17 rtw_coex_read_indirect_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6afe864e rtw_unregister_hw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6ca45d79 rtw_power_mode_change +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x789891df rtw_dump_fw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7de4f93d check_hw_ready +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x816bd1a8 rtw_bf_enable_bfee_su +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x83c01587 __rtw_dbg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x84731124 rtw_phy_read_rf_sipi +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x87dcc8c3 rtw_coex_write_scbd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x8d95c6e9 rtw_phy_pwrtrack_need_iqk +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x8fde47fc rtw_dump_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x916d83ee rtw_core_deinit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x925312f9 rtw_restore_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9e386484 rtw_phy_cfg_mac +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa0242081 rtw_fw_inform_rfk_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa270ba9a rtw_rx_stats +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa69ecdc2 rtw_parse_tbl_bb_pg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa6b5ba70 rtw_bf_phy_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa6e5a48f rtw_tx_write_data_rsvd_page_get +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa7c69f0d rtw_chip_info_setup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb5a8ea05 rtw_bf_set_gid_table +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb65df548 rtw_phy_pwrtrack_get_pwridx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb91ee470 rtw_tx_write_data_h2c_get +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xbc1c6b95 rtw_phy_pwrtrack_need_lck +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc05b7f42 rtw_register_hw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc166b647 rtw_core_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc7f3e38e rtw_phy_pwrtrack_avg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc9f9fd30 rtw_phy_write_rf_reg_sipi +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xccc7b2d6 rtw_phy_set_tx_power_level +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd53431bf rtw_bf_enable_bfee_mu +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd55afe68 rtw_phy_pwrtrack_thermal_changed +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xdb82df69 rtw_phy_cfg_agc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xdd2766be rtw_read8_physical_efuse +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xdf1f88f5 rtw_phy_get_tx_power_index +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe21bed1d rtw_set_channel_mac +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe5d0ede8 rtw_phy_pwrtrack_get_delta +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe915f577 rtw_fw_c2h_cmd_isr +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xfcc2b89e rtw_coex_write_indirect_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x0d0cead1 rtw_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x621a5673 rtw_pci_shutdown +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x8aed1253 rtw_pci_remove +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0xcbd33d99 rtw_pm_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x01dff0b5 rtw89_mac_get_err_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x07d47151 rtw89_mac_set_err_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x0c085fed rtw89_ser_notify +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x367af95f rtw89_core_query_rxdesc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x3b0fa32a rtw8852a_chip_info +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x3f602d1e rtw89_core_napi_stop +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x49a7e677 rtw89_core_rx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x558a7a81 __rtw89_debug +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x5669572e rtw89_core_napi_deinit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x58ffcb1b rtw89_core_register +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x6ee314ab rtw89_chip_info_setup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7a5ad6f7 rtw89_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x8e7f1b02 rtw89_core_napi_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x8fdb03d4 rtw89_phy_write_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x90694365 rtw89_core_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x9f8b84fa rtw89_core_fill_txdesc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xb6bd2dfb rtw89_core_deinit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xd7f726d1 rtw89_phy_read_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe328caaa rtw89_core_napi_start EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe3f57b04 rtw89_debug_mask -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe616b0c1 __rtw89_debug -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xb876986f rtw89_pm_ops -EXPORT_SYMBOL drivers/net/wireless/rsi/rsi_91x 0xbb5fa765 rsi_config_wowlan -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x18a4b178 wlcore_calc_packet_alignment -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x2fa6ba49 wlcore_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x8c5fd61d wl1271_free_tx_id -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xd7e6c536 wl12xx_is_dummy_packet -EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x043a2387 fdp_nci_probe -EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x2d40d3de fdp_nci_remove -EXPORT_SYMBOL drivers/nfc/microread/microread 0xc5015f3a microread_probe -EXPORT_SYMBOL drivers/nfc/microread/microread 0xe5cd75e6 microread_remove -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x278db1e8 nxp_nci_probe -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x740fd8fa nxp_nci_fw_recv_frame -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xb1c313ee nxp_nci_remove -EXPORT_SYMBOL drivers/nfc/pn533/pn533 0x8a5d4aaf pn533_recv_frame -EXPORT_SYMBOL drivers/nfc/pn544/pn544 0xda00f4e0 pn544_hci_remove -EXPORT_SYMBOL drivers/nfc/pn544/pn544 0xf85abb52 pn544_hci_probe -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x11b4ae64 s3fwrn5_recv_frame -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x2e406403 s3fwrn5_remove -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x6de8254a s3fwrn5_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe90f8df5 rtw89_core_unregister +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x4173c6fa rtw89_pm_ops +EXPORT_SYMBOL drivers/net/wireless/rsi/rsi_91x 0x383ace7c rsi_config_wowlan +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x2c7c53bc wlcore_calc_packet_alignment +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x8b157eed wlcore_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xd979c1aa wl1271_free_tx_id +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xf84e3aa3 wl12xx_is_dummy_packet +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x5b159797 fdp_nci_probe +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x8aad7dc6 fdp_nci_remove +EXPORT_SYMBOL drivers/nfc/microread/microread 0x6a4a12e6 microread_probe +EXPORT_SYMBOL drivers/nfc/microread/microread 0xbf1875b8 microread_remove +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x2143c402 nxp_nci_probe +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x3ed82835 nxp_nci_remove +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x60e79bd1 nxp_nci_fw_recv_frame +EXPORT_SYMBOL drivers/nfc/pn533/pn533 0xc5dc8f6c pn533_recv_frame +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x371a39b9 pn544_hci_probe +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0xfe810c42 pn544_hci_remove +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x15914d1c s3fwrn5_phy_power_ctrl +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x412cbfc8 s3fwrn5_recv_frame EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x774203fc s3fwrn5_phy_set_wake -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x957874d4 s3fwrn5_phy_power_ctrl +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x8e908dd1 s3fwrn5_remove +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xce865aa7 s3fwrn5_probe 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 0x090c69a9 ndlc_remove -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x0d50116d ndlc_recv -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x0e7a4605 ndlc_send -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x2b6b5733 st_nci_vendor_cmds_init -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x453d36c7 ndlc_probe -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x7d6d36ed ndlc_open -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xa9d28f8d ndlc_close -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xc8af9cb8 st_nci_se_deinit -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xeac103bc st_nci_se_io -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xf01f591f st_nci_se_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x00cd9571 st21nfca_se_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x229d355a st21nfca_im_send_dep_req -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x2d6060f4 st21nfca_hci_probe -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x5add8eef st21nfca_dep_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x6857a133 st21nfca_hci_remove -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x685f4c9a st21nfca_connectivity_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x72c0eb46 st21nfca_hci_discover_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x8fec7d06 st21nfca_hci_loopback_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x94ecf822 st21nfca_dep_deinit -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xb981e21a st21nfca_apdu_reader_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xbd91cbd9 st21nfca_im_send_atr_req -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xc12294f1 st21nfca_hci_se_io -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xc2e88693 st21nfca_dep_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xc9c87844 st21nfca_vendor_cmds_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xee83827c st21nfca_hci_disable_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xf14bcc4a st21nfca_se_deinit -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xf275fc8f st21nfca_hci_enable_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xf284fe0f st21nfca_tm_send_dep_res -EXPORT_SYMBOL drivers/ntb/ntb 0x0039cff0 ntb_default_peer_port_idx -EXPORT_SYMBOL drivers/ntb/ntb 0x13b1c863 ntb_msi_peer_addr -EXPORT_SYMBOL drivers/ntb/ntb 0x161e052e ntbm_msi_free_irq -EXPORT_SYMBOL drivers/ntb/ntb 0x1f507b67 ntb_unregister_client -EXPORT_SYMBOL drivers/ntb/ntb 0x21b08bdd ntb_clear_ctx -EXPORT_SYMBOL drivers/ntb/ntb 0x2afd57f4 ntb_unregister_device -EXPORT_SYMBOL drivers/ntb/ntb 0x5460d861 ntb_default_peer_port_count -EXPORT_SYMBOL drivers/ntb/ntb 0x63ddb7ab ntbm_msi_request_threaded_irq -EXPORT_SYMBOL drivers/ntb/ntb 0x77410f60 ntb_register_device -EXPORT_SYMBOL drivers/ntb/ntb 0x80eba7bf ntb_msi_init -EXPORT_SYMBOL drivers/ntb/ntb 0x9229ed99 ntb_msg_event -EXPORT_SYMBOL drivers/ntb/ntb 0xa0bf1506 ntb_default_peer_port_number -EXPORT_SYMBOL drivers/ntb/ntb 0xa3665492 ntb_set_ctx -EXPORT_SYMBOL drivers/ntb/ntb 0xc3a53179 ntb_msi_peer_trigger -EXPORT_SYMBOL drivers/ntb/ntb 0xd5a26bf8 ntb_link_event -EXPORT_SYMBOL drivers/ntb/ntb 0xdc30be27 ntb_default_port_number -EXPORT_SYMBOL drivers/ntb/ntb 0xe16afc2e ntb_msi_clear_mws -EXPORT_SYMBOL drivers/ntb/ntb 0xe3b93bfa ntb_db_event -EXPORT_SYMBOL drivers/ntb/ntb 0xee94ef5d __ntb_register_client -EXPORT_SYMBOL drivers/ntb/ntb 0xf5fb0e42 ntb_msi_setup_mws -EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x876f218c nvdimm_namespace_detach_btt -EXPORT_SYMBOL drivers/nvdimm/nd_btt 0xe312f11d nvdimm_namespace_attach_btt -EXPORT_SYMBOL drivers/parport/parport 0x0339cc88 parport_ieee1284_read_nibble -EXPORT_SYMBOL drivers/parport/parport 0x0ad20474 parport_get_port -EXPORT_SYMBOL drivers/parport/parport 0x0ae3296e parport_del_port -EXPORT_SYMBOL drivers/parport/parport 0x0fe2f3de parport_wait_event -EXPORT_SYMBOL drivers/parport/parport 0x186da584 parport_read -EXPORT_SYMBOL drivers/parport/parport 0x21550662 parport_negotiate -EXPORT_SYMBOL drivers/parport/parport 0x22e44857 parport_release -EXPORT_SYMBOL drivers/parport/parport 0x302f725c parport_claim -EXPORT_SYMBOL drivers/parport/parport 0x3de98a00 parport_ieee1284_ecp_read_data -EXPORT_SYMBOL drivers/parport/parport 0x4a122859 parport_ieee1284_epp_write_addr +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x06e7f5e5 ndlc_close +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x0b89f8a3 st_nci_se_deinit +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x1a286b32 st_nci_se_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x22dd0401 st_nci_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x65b3ebfe ndlc_send +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x6edcaa56 ndlc_remove +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x8f02e0a8 st_nci_se_io +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x9c5d15be ndlc_probe +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xa67cd323 ndlc_recv +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xd0e6ad2d ndlc_open +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x06ab4fcf st21nfca_tm_send_dep_res +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x0a100139 st21nfca_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x185caed0 st21nfca_connectivity_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x1ff9bd03 st21nfca_hci_se_io +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x205faba0 st21nfca_hci_probe +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x296eb9a1 st21nfca_hci_loopback_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x32674354 st21nfca_hci_discover_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x36926f6c st21nfca_hci_remove +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x37ff7289 st21nfca_se_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x39204155 st21nfca_hci_disable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x496ed079 st21nfca_se_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x6a04c3ed st21nfca_im_send_dep_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x70ec4a4d st21nfca_im_send_atr_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x754fd74b st21nfca_apdu_reader_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x8c0a8d46 st21nfca_hci_enable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xb966d5c0 st21nfca_dep_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xccc6fb8d st21nfca_dep_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xe0989f25 st21nfca_dep_event_received +EXPORT_SYMBOL drivers/ntb/ntb 0x10fec981 ntb_unregister_device +EXPORT_SYMBOL drivers/ntb/ntb 0x11bb330f ntb_clear_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0x2cf08992 ntb_msi_setup_mws +EXPORT_SYMBOL drivers/ntb/ntb 0x2d373be5 ntb_db_event +EXPORT_SYMBOL drivers/ntb/ntb 0x3ff3c565 ntbm_msi_request_threaded_irq +EXPORT_SYMBOL drivers/ntb/ntb 0x482b4bec ntb_msi_init +EXPORT_SYMBOL drivers/ntb/ntb 0x4d01c726 ntb_set_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0x4f883ecf ntb_register_device +EXPORT_SYMBOL drivers/ntb/ntb 0x5fe0c347 ntb_unregister_client +EXPORT_SYMBOL drivers/ntb/ntb 0x69ee0140 ntb_msi_peer_addr +EXPORT_SYMBOL drivers/ntb/ntb 0x6ae2a56a ntb_msi_peer_trigger +EXPORT_SYMBOL drivers/ntb/ntb 0x97a65300 ntb_msi_clear_mws +EXPORT_SYMBOL drivers/ntb/ntb 0xa927fb27 ntbm_msi_free_irq +EXPORT_SYMBOL drivers/ntb/ntb 0xc8dcabcb __ntb_register_client +EXPORT_SYMBOL drivers/ntb/ntb 0xd84fd45a ntb_default_peer_port_number +EXPORT_SYMBOL drivers/ntb/ntb 0xe39090cc ntb_default_peer_port_idx +EXPORT_SYMBOL drivers/ntb/ntb 0xf13ad1f5 ntb_default_port_number +EXPORT_SYMBOL drivers/ntb/ntb 0xf82acb73 ntb_default_peer_port_count +EXPORT_SYMBOL drivers/ntb/ntb 0xf8ab6c60 ntb_msg_event +EXPORT_SYMBOL drivers/ntb/ntb 0xf9f39a26 ntb_link_event +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x065da423 nvdimm_namespace_detach_btt +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0xfc860f33 nvdimm_namespace_attach_btt +EXPORT_SYMBOL drivers/parport/parport 0x0d478f9f parport_unregister_driver +EXPORT_SYMBOL drivers/parport/parport 0x22d4a8ad parport_wait_peripheral +EXPORT_SYMBOL drivers/parport/parport 0x2be8b3e8 parport_put_port +EXPORT_SYMBOL drivers/parport/parport 0x3a3e8846 parport_read +EXPORT_SYMBOL drivers/parport/parport 0x3a63dba1 parport_ieee1284_read_nibble +EXPORT_SYMBOL drivers/parport/parport 0x420f118e parport_register_dev_model +EXPORT_SYMBOL drivers/parport/parport 0x46335f31 parport_ieee1284_read_byte +EXPORT_SYMBOL drivers/parport/parport 0x46c2ee74 parport_negotiate +EXPORT_SYMBOL drivers/parport/parport 0x4b037097 parport_unregister_device EXPORT_SYMBOL drivers/parport/parport 0x4d2a941b parport_ieee1284_interrupt -EXPORT_SYMBOL drivers/parport/parport 0x5582314c parport_ieee1284_ecp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0x51b96a6d parport_ieee1284_epp_write_data +EXPORT_SYMBOL drivers/parport/parport 0x57da0e83 parport_write +EXPORT_SYMBOL drivers/parport/parport 0x57da7091 parport_ieee1284_epp_write_addr EXPORT_SYMBOL drivers/parport/parport 0x5e3a3912 parport_irq_handler -EXPORT_SYMBOL drivers/parport/parport 0x650ae411 parport_set_timeout -EXPORT_SYMBOL drivers/parport/parport 0x67c911d4 parport_remove_port -EXPORT_SYMBOL drivers/parport/parport 0x7fb9a3d5 parport_find_base -EXPORT_SYMBOL drivers/parport/parport 0x82db3cd0 parport_write -EXPORT_SYMBOL drivers/parport/parport 0x883692f3 parport_claim_or_block -EXPORT_SYMBOL drivers/parport/parport 0x8d746c56 parport_ieee1284_epp_read_addr -EXPORT_SYMBOL drivers/parport/parport 0x910d6360 parport_register_dev_model -EXPORT_SYMBOL drivers/parport/parport 0x93b3393e parport_ieee1284_write_compat -EXPORT_SYMBOL drivers/parport/parport 0x9580ea81 parport_find_number -EXPORT_SYMBOL drivers/parport/parport 0xa5aa6c5e parport_put_port -EXPORT_SYMBOL drivers/parport/parport 0xa97be62e parport_unregister_device -EXPORT_SYMBOL drivers/parport/parport 0xb21284b9 parport_unregister_driver -EXPORT_SYMBOL drivers/parport/parport 0xbb0add43 __parport_register_driver -EXPORT_SYMBOL drivers/parport/parport 0xbdbb0236 parport_wait_peripheral -EXPORT_SYMBOL drivers/parport/parport 0xcf4365a3 parport_ieee1284_read_byte -EXPORT_SYMBOL drivers/parport/parport 0xd51296a0 parport_ieee1284_epp_read_data -EXPORT_SYMBOL drivers/parport/parport 0xe82f5463 parport_ieee1284_ecp_write_data -EXPORT_SYMBOL drivers/parport/parport 0xeec07449 parport_announce_port -EXPORT_SYMBOL drivers/parport/parport 0xf047f8d5 parport_register_port -EXPORT_SYMBOL drivers/parport/parport 0xf7bf4d76 parport_ieee1284_epp_write_data -EXPORT_SYMBOL drivers/parport/parport_pc 0x1c6deb9e parport_pc_probe_port -EXPORT_SYMBOL drivers/parport/parport_pc 0xcbc7bac0 parport_pc_unregister_port -EXPORT_SYMBOL drivers/regulator/rohm-regulator 0x25560c66 rohm_regulator_set_dvs_levels -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x029e2a18 rpmsg_sendto -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x0e110220 rpmsg_register_device -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x2252d39f unregister_rpmsg_driver -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x348e9cc3 rpmsg_send -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x3ea66809 rpmsg_find_device -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x4172044f rpmsg_trysend_offchannel -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x5837fc13 rpmsg_unregister_device -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x8b165a84 rpmsg_poll -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x8d9fe74e rpmsg_release_channel -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x912367c9 rpmsg_create_channel -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x9e55f3a3 rpmsg_create_ept -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xa167ceb9 rpmsg_trysendto -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xb7e79e42 rpmsg_destroy_ept -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xbaaacbc1 rpmsg_send_offchannel -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xd11a9d13 __register_rpmsg_driver -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xe7ded67f rpmsg_trysend -EXPORT_SYMBOL drivers/rpmsg/rpmsg_ns 0x5bef0fe0 rpmsg_ns_register_device -EXPORT_SYMBOL drivers/rtc/rtc-ds1685 0x1b7c90a1 ds1685_rtc_poweroff -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x0c8f4604 scsi_esp_register +EXPORT_SYMBOL drivers/parport/parport 0x6b4e06d0 __parport_register_driver +EXPORT_SYMBOL drivers/parport/parport 0x7566efa7 parport_ieee1284_epp_read_addr +EXPORT_SYMBOL drivers/parport/parport 0x78eb140a parport_release +EXPORT_SYMBOL drivers/parport/parport 0x99faea8e parport_ieee1284_ecp_write_data +EXPORT_SYMBOL drivers/parport/parport 0x9cf5be0e parport_del_port +EXPORT_SYMBOL drivers/parport/parport 0x9f99f072 parport_ieee1284_ecp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0xa9490966 parport_claim_or_block +EXPORT_SYMBOL drivers/parport/parport 0xaf13f47a parport_find_base +EXPORT_SYMBOL drivers/parport/parport 0xb2e4335b parport_remove_port +EXPORT_SYMBOL drivers/parport/parport 0xbbd822e5 parport_claim +EXPORT_SYMBOL drivers/parport/parport 0xc19a668e parport_ieee1284_ecp_read_data +EXPORT_SYMBOL drivers/parport/parport 0xc75a93f1 parport_ieee1284_write_compat +EXPORT_SYMBOL drivers/parport/parport 0xcbae6073 parport_set_timeout +EXPORT_SYMBOL drivers/parport/parport 0xd0f435ea parport_find_number +EXPORT_SYMBOL drivers/parport/parport 0xd642b0af parport_get_port +EXPORT_SYMBOL drivers/parport/parport 0xdc69cd7d parport_register_port +EXPORT_SYMBOL drivers/parport/parport 0xde0a7f9b parport_ieee1284_epp_read_data +EXPORT_SYMBOL drivers/parport/parport 0xf730f06e parport_wait_event +EXPORT_SYMBOL drivers/parport/parport 0xf983218e parport_announce_port +EXPORT_SYMBOL drivers/parport/parport_pc 0x518221f8 parport_pc_probe_port +EXPORT_SYMBOL drivers/parport/parport_pc 0xd235cd4b parport_pc_unregister_port +EXPORT_SYMBOL drivers/regulator/rohm-regulator 0xa058895b rohm_regulator_set_dvs_levels +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x403d9cd8 rpmsg_send_offchannel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x5163e4cd unregister_rpmsg_driver +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x5c1cda7a rpmsg_create_channel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x73e51c40 rpmsg_create_ept +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x7825b637 rpmsg_release_channel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x790bdee6 rpmsg_destroy_ept +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x83ba2f85 rpmsg_trysendto +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x90480428 rpmsg_trysend_offchannel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x9db2ced7 rpmsg_register_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xa684c915 __register_rpmsg_driver +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xac9dc540 rpmsg_trysend +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xbbe10f7c rpmsg_unregister_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xcf543e4d rpmsg_poll +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xd20553fd rpmsg_find_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xe9791022 rpmsg_send +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xf5492a0c rpmsg_sendto +EXPORT_SYMBOL drivers/rpmsg/rpmsg_ns 0x0dbccc1b rpmsg_ns_register_device +EXPORT_SYMBOL drivers/rtc/rtc-ds1685 0xe075cabf ds1685_rtc_poweroff +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x1bb11dc3 scsi_esp_register EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4a29ab38 scsi_esp_intr -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x72f75f3e scsi_esp_unregister -EXPORT_SYMBOL drivers/scsi/esp_scsi 0xc9a6207d scsi_esp_template -EXPORT_SYMBOL drivers/scsi/esp_scsi 0xe09d7a68 scsi_esp_cmd -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x1e3f8eb0 fcoe_fcf_get_selected -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x2629433e fcoe_transport_attach -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x5f3b2362 fcoe_ctlr_destroy -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x61ca0b39 fcoe_ctlr_init -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x736e94ec fcoe_ctlr_set_fip_mode -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x83fd54bb fcoe_ctlr_recv -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xa4b4962e fcoe_transport_detach -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xcf5b94a7 fcoe_ctlr_link_up -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xf11ccd69 fcoe_ctlr_recv_flogi -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xf83c3e59 fcoe_ctlr_link_down -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xfffc12a3 fcoe_ctlr_els_send -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x01fefa84 fc_eh_abort -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x02f26142 fc_lport_bsg_request -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0718f9b6 fc_vport_id_lookup -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0f05773c fc_fcp_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x112cb004 fc_exch_update_stats -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2235d1f9 fc_exch_init +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x561706c1 scsi_esp_unregister +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xcc22d5f9 scsi_esp_template +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xf350507f scsi_esp_cmd +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x1f4779b5 fcoe_ctlr_recv_flogi +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x276fdf0d fcoe_transport_detach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x4730b1fd fcoe_transport_attach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x7002634c fcoe_ctlr_els_send +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x8208d092 fcoe_ctlr_init +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x931a88f1 fcoe_ctlr_set_fip_mode +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xa85da485 fcoe_fcf_get_selected +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xb53c24c9 fcoe_ctlr_link_up +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xcb61dd04 fcoe_ctlr_recv +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xf94cc724 fcoe_ctlr_destroy +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xfd4348f0 fcoe_ctlr_link_down +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x04ed7e4a fc_set_rport_loss_tmo +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x08e606cb fc_rport_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x093d558b libfc_vport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x12866361 fc_exch_update_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1585a2c7 fc_eh_device_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1a54b812 fc_get_host_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x20dcf4db fc_eh_host_reset EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22b90986 fc_exch_mgr_del +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x23e39b52 fc_get_host_port_state +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x259b5eab fc_exch_seq_send EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2eccbfa6 fc_lport_flogi_resp -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x376bdc99 fc_rport_login -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3b24f4d6 fc_vport_setlink -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x401f4c56 fc_queuecommand -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x418cc44b fc_lport_config -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x435dea7a fc_rport_create -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4844187f fc_lport_iterate -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4acc641f fc_get_host_speed -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x52b8e825 fc_lport_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x551e059e fc_disc_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5e6c32f3 fc_fabric_login -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x66eb207a fc_elsct_send -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6c78ac36 fc_set_rport_loss_tmo +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x31cbbb4c fc_rport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x38bbb768 fc_exch_mgr_list_clone +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x390c816c fc_set_mfs +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3f963eca fc_exch_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4a01e95b fc_seq_assign +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4b2c6ff9 fc_fcp_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x53771437 fc_lport_iterate +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x57800831 fc_linkup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5fb22521 fc_fcp_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x65852fba fc_lport_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x65a165af fc_rport_terminate_io +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6b368e54 fc_exch_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6f299aa4 fc_elsct_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x71cbf2d5 fc_linkdown EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x731837c4 fc_lport_logo_resp -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x77b87174 fc_get_host_stats -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7b82b0c6 libfc_vport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x74346c7b fc_lport_bsg_request +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x75a71cfb fc_vport_id_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x78b9cf35 fc_exch_mgr_free +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7e4003bf fc_lport_recv EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7f3407a7 fc_seq_start_next EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x80e34c44 fc_frame_alloc_fill EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x811811e0 fc_exch_done -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x821884ba fc_disc_config EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8264d30a _fc_frame_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8612b797 fc_linkdown -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8fd25687 fc_elsct_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x921b2382 fc_exch_mgr_add -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x93232c2b fc_rport_terminate_io -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9b6f0d17 fc_rport_lookup -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9cc239a8 fc_lport_set_local_id +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x83610d9a fc_rport_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x87e5e783 fc_fabric_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8dfd2c10 fc_seq_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8f0ff313 fc_disc_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8fabd6de fc_exch_mgr_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9b546350 fc_exch_mgr_add EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9d50ed7e fc_rport_destroy -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9dbdc427 fc_lport_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9f579f39 fc_exch_seq_send -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa1a23536 fc_fc4_register_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9d861da9 fc_vport_setlink +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa152ba6c fc_disc_init EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa1bcd198 fc_cpu_mask -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa611f6c9 fc_set_mfs -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa6a204dc fc_fcp_destroy -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xadee69ba fc_exch_recv EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb0ddd5a1 fc_rport_flush_queue +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb3fcf240 fc_lport_destroy EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb689cd32 fc_frame_crc_check -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb852c732 fc_rport_recv_req +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb9bcfbea fc_fc4_register_provider EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb9c352d9 fc_lport_notifier_head -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbb6f6140 fc_eh_host_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc0c1c303 fc_eh_device_reset EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc2dd8cd4 fc_fill_reply_hdr -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc57921df fc_exch_mgr_free -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcf49c265 fc_seq_send -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd9582f43 fc_fabric_logoff -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xda1acdac fc_get_host_port_state -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xdbc69dc4 fc_exch_mgr_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe3168166 fc_rport_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc786f376 fc_fc4_deregister_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd22a3688 fc_exch_mgr_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd4852df9 fc_eh_abort +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd7c6ce7c fc_get_host_speed +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xdc34cb93 fc_lport_set_local_id +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xde5c1d56 fc_lport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe20e17e0 fc_fabric_login EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe3b928e9 fc_fill_hdr -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe40a1482 fc_seq_assign -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe426a332 fc_lport_recv -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe4e62d9d fc_exch_mgr_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe92a6260 fc_fc4_deregister_provider -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe9df0d31 fc_exch_mgr_list_clone -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xebbfbd0b fc_lport_destroy -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf3d68768 fc_linkup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe66373bf fc_queuecommand +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xea37daa4 fc_rport_recv_req +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf0044fba fc_rport_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf04ced5a fc_slave_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf772c054 fc_elsct_send EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfa4667d1 fc_seq_release -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfd4f596d fc_slave_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfda08d98 fc_lport_config EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfeb5a73f fc_seq_set_resp -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x3e366604 sas_suspend_ha EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x4a8e3d34 try_test_sas_gpio_gp_bit -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x60cc6d24 sas_prep_resume_ha -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xb954a75e sas_resume_ha -EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x3c67a4d8 mraid_mm_register_adp +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x8584f597 sas_prep_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xdc7f7625 sas_suspend_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xe27ce236 sas_resume_ha +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x4b5cd6c7 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 0x19b633b5 qlt_abort_cmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x1f454cd3 qlt_xmit_tm_rsp -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x256e971c qlt_lport_deregister -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x2bb87990 qlt_rdy_to_xfer -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x41c57c70 qlt_stop_phase2 -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x4fd26783 qlt_lport_register -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x743abb82 qlt_stop_phase1 -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xc6813c1c qlt_unreg_sess -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xd29f467e qlt_enable_vha -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xe4f5d7a9 qlt_free_cmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xe7b1168a qlt_xmit_response -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xff96c0a9 qlt_free_mcmd -EXPORT_SYMBOL drivers/scsi/raid_class 0x556ef388 raid_class_attach -EXPORT_SYMBOL drivers/scsi/raid_class 0x7b648191 raid_class_release -EXPORT_SYMBOL drivers/scsi/raid_class 0xa1a6fce6 raid_component_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x26b83ca6 fc_block_rport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x2a4c3a95 fc_eh_timed_out -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x336171ad fc_block_scsi_eh +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x021d3a29 qlt_lport_register +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x22961b7b qlt_xmit_tm_rsp +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x28f0d716 qlt_enable_vha +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x36a2c270 qlt_free_mcmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x49e56e3f qlt_xmit_response +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x5c943ed5 qlt_rdy_to_xfer +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x6dc64282 qlt_stop_phase1 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xa58c0a2e qlt_stop_phase2 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xa80080c7 qlt_lport_deregister +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xbb22b5fb qlt_abort_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xc6af6650 qlt_free_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xd49871c1 qlt_unreg_sess +EXPORT_SYMBOL drivers/scsi/raid_class 0x1c829185 raid_component_add +EXPORT_SYMBOL drivers/scsi/raid_class 0x8b93a3d5 raid_class_release +EXPORT_SYMBOL drivers/scsi/raid_class 0x97dcb104 raid_class_attach +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x08ed93ee fc_host_fpin_rcv +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x325d57ef fc_remote_port_delete EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x375f8bbd fc_get_event_number -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x3d387232 fc_host_post_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x649b5033 fc_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7c433914 fc_find_rport_by_wwpn -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x891eda07 scsi_is_fc_rport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x8a35c117 fc_remote_port_rolechg -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x8b2048e2 fc_remote_port_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x97d9c752 fc_vport_terminate -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x9e122170 fc_host_fpin_rcv -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xa1c71abd fc_host_post_vendor_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xad6fc89b fc_remote_port_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xb413ea08 fc_host_post_fc_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xb685fcdd fc_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xbea03770 fc_vport_create -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xc05627a4 fc_remove_host -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x08198b40 sas_expander_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1b9bded4 sas_phy_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x290531ee sas_port_delete_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2d9ee538 sas_rphy_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2fa8f3c5 sas_rphy_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x417ba6ee sas_get_address -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x44b7788f sas_rphy_remove -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x55718764 sas_port_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5d90ab38 sas_read_port_mode_page -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5dd020dc sas_remove_host -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6a6eb899 sas_phy_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x788337cb scsi_is_sas_port -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7cebc9c0 sas_port_add_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7f48e14b scsi_is_sas_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8a7e2f2c sas_port_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8dc52182 sas_phy_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x9bc880b5 sas_remove_children -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x9c2ad4db sas_rphy_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb1bfe622 sas_port_alloc_num -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb1eda4a3 sas_rphy_unlink -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb244bb7a sas_port_get_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xbab6602e scsi_is_sas_rphy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xbdfc45b8 sas_phy_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc30740b3 sas_port_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xcba1e94a sas_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd76b5607 sas_end_device_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd97d2384 sas_port_mark_backlink -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf21b1a33 sas_port_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xfdb7603e sas_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x48df3d95 fc_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x4f9144f8 fc_host_post_fc_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x54201810 fc_block_scsi_eh +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x6cad02fa fc_remote_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x746921c8 fc_vport_create +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x86151380 fc_block_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xb56a7188 fc_vport_terminate +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xc57314a9 fc_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xc599cddf scsi_is_fc_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xc9acda3b fc_host_post_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xcc1d81d4 fc_remote_port_rolechg +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xe1aedd8a fc_find_rport_by_wwpn +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xe26264a9 fc_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xe4e70c7a fc_host_post_vendor_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xea16fc85 fc_eh_timed_out +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x157aa77d sas_rphy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x24ae177b sas_rphy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x29ddfc63 sas_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2cfeefc7 sas_read_port_mode_page +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2d2beff4 sas_phy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2da53b32 sas_remove_children +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2f46ab78 sas_port_get_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2ff55848 sas_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x31d4af8c sas_get_address +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x37d116a2 sas_phy_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3b60893d sas_expander_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3d42a865 scsi_is_sas_rphy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3f44692a sas_phy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x488e171e sas_rphy_remove +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4f98014f sas_end_device_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5beeffd2 sas_port_alloc_num +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x667bca9f sas_port_mark_backlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x752b7348 sas_port_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7df42e1f sas_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x82ccb91f sas_port_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8f4f9663 sas_port_delete_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa2fd4ed6 sas_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc130a07f sas_rphy_unlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc5db0b11 sas_rphy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xcc7d1def sas_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xcd2b192d scsi_is_sas_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xce2337fe sas_port_add_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xcfaf697e sas_phy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xdf086f93 scsi_is_sas_port +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x213096a1 spi_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x308a1ce1 spi_schedule_dv_device EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x90b047c6 spi_display_xfer_agreement -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xa1e4f77a spi_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xa80d5455 spi_dv_device -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xcfb2d5ef spi_schedule_dv_device -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xf69343d3 spi_release_transport -EXPORT_SYMBOL drivers/scsi/ufs/tc-dwc-g210 0x8b032947 tc_dwc_g210_config_40_bit -EXPORT_SYMBOL drivers/scsi/ufs/tc-dwc-g210 0xa9b20954 tc_dwc_g210_config_20_bit -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x07720e51 ufshcd_alloc_host -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x2b5afff5 ufshcd_shutdown -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x3fedeaeb ufshcd_get_local_unipro_ver -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x40ec1b31 ufshcd_system_resume -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x44c777e1 ufshcd_runtime_suspend -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x4f925aed ufshcd_map_desc_id_to_length -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x56a5dc10 ufshcd_system_suspend -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x95aeba68 ufshcd_runtime_resume -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-dwc 0x788cd4bf ufshcd_dwc_dme_set_attrs -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-dwc 0xec50b2c7 ufshcd_dwc_link_startup_notify +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x4dc29aff spi_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x5227fb12 spi_display_xfer_agreement +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x8798b373 spi_attach_transport +EXPORT_SYMBOL drivers/scsi/ufs/tc-dwc-g210 0x47b0b3de tc_dwc_g210_config_20_bit +EXPORT_SYMBOL drivers/scsi/ufs/tc-dwc-g210 0xc4ab6e7c tc_dwc_g210_config_40_bit +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x0823553c ufshcd_runtime_suspend +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x3e7ca35b ufshcd_shutdown +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x43279af1 ufshcd_runtime_resume +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x75802bd2 ufshcd_alloc_host +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0xb1b3de00 ufshcd_system_resume +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0xc26b03f2 ufshcd_system_suspend +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0xc5ae405a ufshcd_get_local_unipro_ver +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0xd789be4f ufshcd_map_desc_id_to_length +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-dwc 0x4446b07c ufshcd_dwc_dme_set_attrs +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-dwc 0xa25b7e3f ufshcd_dwc_link_startup_notify EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x0ef12cc9 qmi_encode_message -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x1ef9717d qmi_handle_init +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x0f66c2bd qmi_send_indication EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x21ce5888 qmi_response_type_v01_ei -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x2a9f9db4 qmi_txn_cancel -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x371ce098 qmi_send_response +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x46626c3a qmi_add_lookup +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x687093a2 qmi_txn_wait EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x68772745 qmi_decode_message -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x70ac14f2 qmi_add_server -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x87394244 qmi_send_indication -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x998f4139 qmi_send_request -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x9b986db1 qmi_handle_release -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x9d3f442b qmi_add_lookup -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xa799c912 qmi_txn_init -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xc33b679d qmi_txn_wait -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x01b1cbab sdw_nwrite -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x02974373 sdw_stream_remove_slave +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x6cc7ffda qmi_handle_release +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x801ed5ec qmi_txn_cancel +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x99c071af qmi_handle_init +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xa465d8b0 qmi_send_response +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xad4ef79e qmi_send_request +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xd8b74f2a qmi_txn_init +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xf7ad201a qmi_add_server +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x06a385fc sdw_slave_add EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x16d1706b sdw_prepare_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x1d2e62fc sdw_write_no_pm EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x1deee061 sdw_find_row_index -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x3052ef0c sdw_bus_master_add +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x20770d58 sdw_bwrite_no_pm_unlocked +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x269b80ea sdw_stream_add_slave +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x299f37bc sdw_read EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x3b0a8582 sdw_startup_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x3c2671d8 sdw_update_no_pm -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x4294df78 sdw_handle_slave_status +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x4c68b732 sdw_master_read_prop EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x4cde88bf sdw_disable_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x5aa8da53 sdw_clear_slave_status +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x550546ab sdw_bus_master_add +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x5f3b6707 sdw_bus_master_delete EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x60e31fbb sdw_find_col_index -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x6d6992d5 sdw_bus_clk_stop EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x6f95b16b sdw_shutdown_stream EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x71891d59 sdw_deprepare_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x75c70bc8 sdw_read -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x7941d781 sdw_stream_remove_master -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x7c75a447 sdw_slave_read_prop -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x864c89d4 sdw_bread_no_pm_unlocked -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x964543c6 sdw_extract_slave_id +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x74ce344d sdw_bus_clk_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x81478aba sdw_stream_remove_master +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x885ea089 sdw_clear_slave_status +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x949c2587 sdw_read_no_pm +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x97ad1016 sdw_nwrite +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x98843006 sdw_handle_slave_status EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x9e122d79 sdw_alloc_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xa4c32a80 sdw_bus_prep_clk_stop -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xa6d081c4 sdw_stream_add_slave -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xb1da8f54 sdw_nread -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xb20f3e2d sdw_stream_add_master +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xaaf1db32 sdw_bread_no_pm_unlocked +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xab845823 sdw_slave_read_prop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xad250e33 sdw_update_no_pm +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xb3a8b6bc sdw_nread +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xb797f6f7 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 0xc03f2dc6 sdw_write_no_pm -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xc1158e25 sdw_bus_master_delete -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xc2a9f7fe sdw_write -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xc9967a4c sdw_bus_exit_clk_stop -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xca102cc1 sdw_master_read_prop -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xced04947 sdw_update -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xcf675b96 sdw_compare_devid -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xcff0ba0f sdw_bwrite_no_pm_unlocked +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xc148acbb sdw_write +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xc26845fe sdw_bus_prep_clk_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xcbb99759 sdw_compare_devid +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xcbfe022b sdw_extract_slave_id +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xd200d252 sdw_stream_add_master EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xda5bce09 sdw_release_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xdba5ef95 sdw_slave_add -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xe550b57e sdw_read_no_pm EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xf53ba0b8 sdw_rows -EXPORT_SYMBOL drivers/ssb/ssb 0x06de0ddf ssb_device_is_enabled -EXPORT_SYMBOL drivers/ssb/ssb 0x0bebf59f ssb_pcihost_register -EXPORT_SYMBOL drivers/ssb/ssb 0x1424aea3 ssb_device_enable -EXPORT_SYMBOL drivers/ssb/ssb 0x34234be3 ssb_pmu_set_ldo_paref -EXPORT_SYMBOL drivers/ssb/ssb 0x59049898 ssb_chipco_gpio_control -EXPORT_SYMBOL drivers/ssb/ssb 0x60fabe6a ssb_bus_sdiobus_register -EXPORT_SYMBOL drivers/ssb/ssb 0x6f803d11 ssb_bus_suspend -EXPORT_SYMBOL drivers/ssb/ssb 0x79c89f55 ssb_set_devtypedata -EXPORT_SYMBOL drivers/ssb/ssb 0x7c6dbb20 __ssb_driver_register -EXPORT_SYMBOL drivers/ssb/ssb 0x9f8591d4 ssb_pcicore_dev_irqvecs_enable -EXPORT_SYMBOL drivers/ssb/ssb 0xb5298e97 ssb_commit_settings -EXPORT_SYMBOL drivers/ssb/ssb 0xb6ee5748 ssb_clockspeed -EXPORT_SYMBOL drivers/ssb/ssb 0xc319c32e ssb_pmu_set_ldo_voltage +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xfae412cd sdw_stream_remove_slave +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xfce4d793 sdw_bus_exit_clk_stop +EXPORT_SYMBOL drivers/ssb/ssb 0x040cae38 ssb_commit_settings +EXPORT_SYMBOL drivers/ssb/ssb 0x197e1041 __ssb_driver_register +EXPORT_SYMBOL drivers/ssb/ssb 0x2e0887e3 ssb_bus_powerup +EXPORT_SYMBOL drivers/ssb/ssb 0x3843287c ssb_bus_may_powerdown +EXPORT_SYMBOL drivers/ssb/ssb 0x4fdaf385 ssb_clockspeed +EXPORT_SYMBOL drivers/ssb/ssb 0x583154b9 ssb_bus_suspend +EXPORT_SYMBOL drivers/ssb/ssb 0x59d4e80f ssb_bus_sdiobus_register +EXPORT_SYMBOL drivers/ssb/ssb 0x59fd9ee6 ssb_device_enable +EXPORT_SYMBOL drivers/ssb/ssb 0x6068f676 ssb_pmu_set_ldo_voltage +EXPORT_SYMBOL drivers/ssb/ssb 0x607faae1 ssb_device_is_enabled +EXPORT_SYMBOL drivers/ssb/ssb 0x6d9c804c ssb_bus_resume +EXPORT_SYMBOL drivers/ssb/ssb 0x71bed85e ssb_chipco_gpio_control +EXPORT_SYMBOL drivers/ssb/ssb 0x89080ba6 ssb_pcicore_dev_irqvecs_enable +EXPORT_SYMBOL drivers/ssb/ssb 0x8f660c67 ssb_pcihost_register +EXPORT_SYMBOL drivers/ssb/ssb 0xa8cabbc6 ssb_bus_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0xc3fcb8bb ssb_dma_translation +EXPORT_SYMBOL drivers/ssb/ssb 0xc7c3fcab ssb_set_devtypedata EXPORT_SYMBOL drivers/ssb/ssb 0xcb17f1cb ssb_admatch_base -EXPORT_SYMBOL drivers/ssb/ssb 0xcc2b3182 ssb_bus_powerup -EXPORT_SYMBOL drivers/ssb/ssb 0xcefd6b57 ssb_bus_resume -EXPORT_SYMBOL drivers/ssb/ssb 0xd09e5288 ssb_bus_may_powerdown -EXPORT_SYMBOL drivers/ssb/ssb 0xd76cb720 ssb_device_disable -EXPORT_SYMBOL drivers/ssb/ssb 0xd7fc57ce ssb_driver_unregister -EXPORT_SYMBOL drivers/ssb/ssb 0xd83c8887 ssb_bus_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0xcf6cf64c ssb_driver_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0xd103cfa3 ssb_pmu_set_ldo_paref EXPORT_SYMBOL drivers/ssb/ssb 0xdfc7c6ef ssb_admatch_size -EXPORT_SYMBOL drivers/ssb/ssb 0xfd46c4f5 ssb_dma_translation -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x01806f3f fbtft_write_gpio16_wr -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x0737228e fbtft_register_framebuffer -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x0ed6f6e9 fbtft_read_spi -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x1ce63106 fbtft_unregister_framebuffer -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x259da295 fbtft_remove_common -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x2a765e0b fbtft_write_vmem16_bus16 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x2f18c1db fbtft_framebuffer_release -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x3320c4e4 fbtft_probe_common -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x33ed5a47 fbtft_write_vmem8_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x3995e761 fbtft_write_reg8_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x51faf772 fbtft_write_vmem16_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x63ff3fa6 fbtft_write_gpio8_wr -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x68037319 fbtft_register_backlight -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x7e61e1be fbtft_write_spi_emulate_9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x8ebec719 fbtft_unregister_backlight -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x9b3b590f fbtft_write_reg8_bus9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x9d1d37cf fbtft_init_display -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x9d8f53a4 fbtft_write_reg16_bus16 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xa012cc45 fbtft_write_buf_dc -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xa5aafb29 fbtft_write_spi -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xbbbbc815 fbtft_write_vmem16_bus9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc7dd4fd5 fbtft_framebuffer_alloc -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xd4535376 fbtft_write_reg16_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xdcae2bc9 fbtft_dbg_hex -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf764ff16 fbtft_write_gpio16_wr_latched -EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x11da8b02 gbaudio_register_module -EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x57b469cd gbaudio_module_update -EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x6e35c287 gbaudio_unregister_module -EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0xa46c5636 adt7316_probe -EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0xdff3266b ade7854_probe -EXPORT_SYMBOL drivers/staging/media/av7110/sp8870 0x45ac1c5d sp8870_attach -EXPORT_SYMBOL drivers/staging/media/zoran/videocodec 0x056938ec videocodec_register -EXPORT_SYMBOL drivers/staging/media/zoran/videocodec 0x70adfa1c videocodec_attach -EXPORT_SYMBOL drivers/staging/media/zoran/videocodec 0xd84bf545 videocodec_unregister -EXPORT_SYMBOL drivers/staging/media/zoran/videocodec 0xfa3130fc videocodec_detach -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0509b55c rtllib_wx_set_rate -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x051174de rtllib_wx_get_encode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x06637c3b rtllib_wx_set_encode_ext -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0bd52f53 rtllib_wx_set_wap -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x11450504 RemovePeerTS -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1d7a430b dot11d_init +EXPORT_SYMBOL drivers/ssb/ssb 0xff806f09 ssb_device_disable +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x06e95d49 fbtft_read_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x07d1ebc0 fbtft_dbg_hex +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x176e730c fbtft_write_spi_emulate_9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x4d3b6677 fbtft_register_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x4e5cfe50 fbtft_write_buf_dc +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x50be3958 fbtft_probe_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x5bd1ce9c fbtft_write_reg16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x64a8af2c fbtft_write_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x66f1d938 fbtft_write_gpio8_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x74d5fc30 fbtft_init_display +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x7a0ce967 fbtft_write_vmem16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x88ef99e4 fbtft_framebuffer_release +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x8a98a291 fbtft_unregister_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x90b9f7c9 fbtft_write_vmem8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x92ad744b fbtft_register_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xa65b10de fbtft_write_gpio16_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xb3d9a3ae fbtft_write_reg8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xba0c5896 fbtft_remove_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc83afc9f fbtft_write_reg16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc8500518 fbtft_write_vmem16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xcc8ca14c fbtft_write_reg8_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xedf89a4c fbtft_framebuffer_alloc +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xeff3e90b fbtft_write_gpio16_wr_latched +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf83ed073 fbtft_write_vmem16_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xff2d83f9 fbtft_unregister_backlight +EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x3f13dc97 gbaudio_unregister_module +EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0xb71ecc61 gbaudio_module_update +EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0xfd340423 gbaudio_register_module +EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0xb4bc9981 adt7316_probe +EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0x60ccea76 ade7854_probe +EXPORT_SYMBOL drivers/staging/media/av7110/sp8870 0x8dce61d9 sp8870_attach +EXPORT_SYMBOL drivers/staging/media/zoran/videocodec 0x4dcef1ef videocodec_attach +EXPORT_SYMBOL drivers/staging/media/zoran/videocodec 0x9c1b8e4c videocodec_detach +EXPORT_SYMBOL drivers/staging/media/zoran/videocodec 0xc1f01214 videocodec_register +EXPORT_SYMBOL drivers/staging/media/zoran/videocodec 0xd18a94e3 videocodec_unregister +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x033c6ab2 rtllib_wx_set_auth +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0c96cd15 rtllib_wx_set_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x10082689 rtllib_get_beacon +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x13a79006 rtllib_EnableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1c326391 rtllib_MgntDisconnect +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1ce0bc83 rtllib_wx_get_power EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x22166084 rt_global_debug_component -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x295d6b80 notify_wx_assoc_event -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2d12b5ba rtllib_wx_set_rawtx -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2e607b80 rtllib_DisableIntelPromiscuousMode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2ed8db38 rtllib_wx_set_essid -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x33fb1559 rtllib_act_scanning -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x39c1610a rtllib_wx_set_auth -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3ab3f4b7 rtllib_wx_set_freq -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3e6c4aef rtllib_start_send_beacons -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x45563381 rtllib_start_scan_syncro -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x50bb52b0 rtllib_xmit -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x51eff4b8 rtllib_wx_get_name -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x555e13ba rtllib_reset_queue -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x59ea66ea rtllib_get_beacon -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5f6efe73 rtllib_wx_set_mode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x691aec58 rtllib_MgntDisconnect -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6c58c38e rtllib_wx_get_wap -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6da57c49 rtllib_wx_set_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x706ac426 rtllib_stop_scan_syncro -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x70a47e84 rtllib_wx_get_power -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x70eed548 rtllib_legal_channel -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7b9218fc rtllib_wx_set_gen_ie -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7d109fd0 rtllib_stop_send_beacons -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x95a05fcc rtllib_wx_get_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x976400a6 rtllib_softmac_start_protocol -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9d0be265 rtllib_wx_get_rts -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa76bddf6 rtllib_wx_get_mode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa8ed48fe rtllib_rx -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb16bda93 rtllib_ps_tx_ack -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb3f2a9b4 rtllib_wx_get_essid -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc2b6d732 rtllib_wx_get_freq -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xcd394d63 rtllib_sta_ps_send_null_frame -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdd655fc7 alloc_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x300473a1 rtllib_wx_get_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x306dd0c0 rtllib_wx_get_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3bc92223 rtllib_wx_get_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4d0eb06a rtllib_wx_set_gen_ie +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4d1ea1b9 dot11d_channel_map +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4efb3534 rtllib_stop_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x572a4b33 rtllib_wx_set_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5cd2fc3e rtllib_wx_get_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5d4d76d5 rtllib_stop_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x675aca74 rtllib_act_scanning +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7189b910 rtllib_ps_tx_ack +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x720a5dfd rtllib_rx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x75423aa5 rtllib_wx_get_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7661226a rtllib_wx_set_mlme +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7ddb79eb rtllib_wx_get_name +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x80183efc rtllib_wx_set_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x82ab2505 dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x875c96ba HT_update_self_and_peer_setting +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x88b463af rtllib_DisableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8ec6d3c6 RemovePeerTS +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8fd4d793 rtllib_wx_set_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9546980b rtllib_wx_get_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x969d7352 rtllib_xmit +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa4df7993 rtllib_reset_queue +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa6441108 rtllib_wx_set_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa691fa1d rtllib_softmac_stop_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc15fcf15 rtllib_wx_set_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc3267d33 rtllib_sta_ps_send_null_frame +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc46ab97c rtllib_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xca929e97 rtllib_wx_set_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xcab76569 rtllib_stop_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xce7ed933 rtllib_start_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xcefa1e2d rtllib_wx_get_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd3a0bff7 rtllib_wx_set_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd5daff5a alloc_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd7bfcbda rtllib_wx_get_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xda65ecc7 rtllib_start_scan_syncro EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdf78f620 rtllib_wlan_frequencies -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdfd89ca9 HT_update_self_and_peer_setting -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe18291a7 rtllib_wx_set_encode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xea529582 rtllib_softmac_stop_protocol -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xecff2bda dot11d_channel_map -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xed8e0c08 rtllib_wx_set_power -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xee698bad rtllib_stop_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf318c3e5 free_rtllib -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf4b1d5e7 rtllib_EnableIntelPromiscuousMode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xfa860eb8 rtllib_wx_set_rts -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xfd0c96d9 rtllib_wx_get_rate -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xff05ef78 rtllib_wx_set_mlme -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x04b9e511 ieee80211_wx_get_rate_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0ae88148 ieee80211_wx_get_wap_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x11c9e2eb ieee80211_softmac_stop_protocol_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x14134c3f ieee80211_wx_get_mode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x15096265 ieee80211_wake_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x15e8d583 ieee80211_wx_set_power_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x16e9c157 ieee80211_get_beacon_rsl +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe9df737c rtllib_wx_set_rawtx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xec105132 notify_wx_assoc_event +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf001a71c rtllib_wx_set_encode_ext +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf8eda51b free_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xfe6707d2 rtllib_softmac_start_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xff2dd3b4 rtllib_wx_set_essid +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x05c4755c ieee80211_wx_set_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x06909b5a ieee80211_start_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0b15b27f ieee80211_stop_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x108124c2 rtl8192u_dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x11ca8fb8 ieee80211_wx_get_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x12d9fc74 ieee80211_wx_set_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1d1920a7 ieee80211_softmac_stop_protocol_rsl EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1d66a0ff ieee80211_is_shortslot_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2106b199 ieee80211_txb_free_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x22c6e387 ieee80211_ps_tx_ack_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x245f512f ieee80211_start_scan_syncro_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2e108e0b ieee80211_wx_set_encode_ext_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2fcafb11 ieee80211_wx_set_scan_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x34a2a7d9 ieee80211_wx_get_power_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x367177ac dot11d_reset -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3e48571d ieee80211_wx_set_mlme_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x47035ecd ieee80211_wx_get_freq_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5199dcb8 SendDisassociation_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x57d83653 ieee80211_stop_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x581cc3d0 ieee80211_wx_set_wap_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x59bbd0a0 ieee80211_softmac_scan_syncro_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x67925370 ieee80211_start_send_beacons_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6c172c83 ieee80211_wx_get_encode_ext_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6e31a7e3 ieee80211_wx_set_encode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x778c5dc4 rtl8192u_dot11d_init -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7b92d3e5 notify_wx_assoc_event_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7d165b35 ieee80211_wx_get_name_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x876fc00c ieee80211_wx_set_auth_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8b5c68b0 ieee80211_wx_set_rts_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8fcfb469 dot11d_scan_complete -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x902ad0ed ieee80211_softmac_start_protocol_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x97533390 dot11d_update_country_ie -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9d6a2524 dot11d_get_max_tx_pwr_in_dbm -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa72ac69d to_legal_channel -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa93cf19f ieee80211_stop_send_beacons_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb985b1f9 ieee80211_wx_set_freq_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc1cbcbc0 ieee80211_softmac_xmit_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x26f3425f ieee80211_softmac_start_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x32198a63 ieee80211_rx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x34f308f6 ieee80211_wx_get_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3bb700e6 ieee80211_wx_get_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3f087698 ieee80211_wx_set_auth_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x405607b8 ieee80211_disassociate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4b90105e ieee80211_get_beacon_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4e39d6fc ieee80211_wx_get_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x55a2be1f ieee80211_wx_get_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x63dcb959 SendDisassociation_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6410dfdf ieee80211_wx_get_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x64ff4e3e ieee80211_wx_set_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x66de3923 dot11d_update_country_ie +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x68bf9ab7 ieee80211_rx_mgt_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6dd28730 notify_wx_assoc_event_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6f4f7dd4 ieee80211_start_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x711ed41a ieee80211_txb_free_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x71f92c3f ieee80211_wx_get_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7b833086 ieee80211_softmac_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x84f14892 ieee80211_ps_tx_ack_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x87684ca4 ieee80211_stop_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8b7a38df ieee80211_wx_get_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8b95a93e ieee80211_wx_set_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8c3f7d75 dot11d_scan_complete +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8e991775 ieee80211_wx_set_rawtx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8ffad51e ieee80211_wx_set_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x92d48e36 to_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x99db8164 ieee80211_wx_set_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9ae79784 ieee80211_stop_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9fa47690 ieee80211_reset_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa439abf9 ieee80211_wx_get_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb3a69a8d ieee80211_wx_set_mlme_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb6745303 ieee80211_softmac_xmit_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc0679d29 ieee80211_wx_get_name_rsl EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc370a43e ieee80211_wlan_frequencies_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc96c3f76 ieee80211_disassociate_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xca902d85 ieee80211_rx_mgt_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd029cd26 ieee80211_wx_set_essid_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd02f7ded ieee80211_rx_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd14c1425 ieee80211_wx_get_scan_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd75fcafe ieee80211_wx_set_rawtx_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd9a82a28 ieee80211_wx_get_rts_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xdd6b34c3 ieee80211_stop_scan_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe00eac65 ieee80211_wx_set_gen_ie_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe5ae557b ieee80211_wx_get_encode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe70ca84d is_legal_channel -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xea95a30b ieee80211_wx_set_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc53babec ieee80211_wx_get_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc7c7f73f ieee80211_wake_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xccb00bfc dot11d_get_max_tx_pwr_in_dbm +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd4327607 ieee80211_wx_set_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe1cbe9ec ieee80211_wpa_supplicant_ioctl_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe740042a ieee80211_wx_set_encode_ext_rsl EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xecc5fb1b ieee80211_is_54g_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf163bf7c ieee80211_wx_get_essid_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf693f0d6 ieee80211_wpa_supplicant_ioctl_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfa3f0a25 ieee80211_wx_set_rate_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfdf512b9 HTUpdateSelfAndPeerSetting -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xff311008 ieee80211_reset_queue_rsl -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x00aea27d iscsit_build_text_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x09d9555a iscsit_unregister_transport -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x11573f87 iscsit_increment_maxcmdsn -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x279315fb iscsit_build_datain_pdu -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x28f86a1d iscsit_find_cmd_from_itt -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2b40b36c iscsit_setup_scsi_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3cd182f1 iscsi_change_param_sprintf -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3fcee1e3 iscsit_logout_post_handler -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x400da4da iscsit_cause_connection_reinstatement -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x45cb7a6d iscsit_sequence_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x46aadca3 iscsit_check_dataout_hdr -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4e01a4a7 iscsit_get_datain_values -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x521aefab iscsit_aborted_task -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x574870fe iscsit_queue_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x625308aa iscsit_release_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x651c1043 iscsit_register_transport -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6847050e iscsit_process_nop_out -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6d5d7e18 iscsit_stop_dataout_timer -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6ef412e4 iscsit_setup_nop_out -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8138725d iscsit_build_task_mgt_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x86b32ec4 iscsit_process_text_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8704595f iscsit_response_queue -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8a766f3b iscsit_setup_text_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8e07b350 iscsit_handle_snack -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x919ab872 iscsit_find_cmd_from_itt_or_dump -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x934026db iscsit_check_dataout_payload -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x96713682 iscsit_build_nopin_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x98e37f25 iscsit_process_scsi_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9adab036 iscsit_add_reject -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9c6511b0 iscsit_add_cmd_to_immediate_queue -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9c98fcef iscsit_set_unsolicited_dataout -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa410ad74 iscsit_build_logout_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb0a64db2 iscsi_target_check_login_request -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb20e392f iscsit_handle_task_mgt_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb74176b6 iscsit_handle_logout_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbcb42fd8 iscsit_tmr_post_handler -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc368393c iscsit_build_r2ts_for_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc5fa32c9 iscsit_build_rsp_pdu -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd41ab9a5 iscsit_reject_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd898756e iscsit_build_reject -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd9c856bb iscsit_immediate_queue -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe53a51c1 iscsit_free_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe54ae547 __iscsit_check_dataout_hdr -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf2d925c4 iscsit_allocate_cmd +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xeffe0f6c HTUpdateSelfAndPeerSetting +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf21d98b1 is_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf347e3fd ieee80211_wx_set_gen_ie_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf45f60ba ieee80211_wx_set_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf505d8b6 dot11d_reset +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfe4ff959 ieee80211_wx_set_scan_rsl +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x02fadf3c iscsit_queue_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0a8c4fb0 iscsit_handle_task_mgt_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0ffb3517 iscsit_process_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1591e6c7 iscsit_logout_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1610ec5e iscsit_setup_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1ce828c6 iscsit_build_datain_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1d9a2c87 iscsit_find_cmd_from_itt_or_dump +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x205a17ae iscsit_process_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x21bdc4c5 iscsit_get_datain_values +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x233ba099 iscsi_change_param_sprintf +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2bb894f3 iscsit_build_nopin_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x348b8c83 iscsit_response_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3ec7a7ae iscsit_allocate_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5082054c iscsit_build_text_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x51c0eb83 iscsit_register_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x633ecabd iscsit_add_cmd_to_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x65e4c5e9 iscsit_build_rsp_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x66093420 iscsit_build_logout_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6a72b8a4 iscsit_check_dataout_payload +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x89bcd4c0 iscsi_target_check_login_request +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8a42c16f iscsit_cause_connection_reinstatement +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8fbf4f9e iscsit_setup_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x96409cd4 iscsit_aborted_task +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x97bfcb41 iscsit_release_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9e307027 iscsit_handle_logout_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9f2ef645 iscsit_sequence_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa22849de iscsit_process_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa2291aea iscsit_reject_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa4808ca6 iscsit_stop_dataout_timer +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa5262b72 iscsit_set_unsolicited_dataout +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa5bb5aa2 iscsit_add_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb42edf6a iscsit_build_task_mgt_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb43506b6 iscsit_build_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb70db438 iscsit_find_cmd_from_itt +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc34e345a __iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd15893a8 iscsit_unregister_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd18a5a84 iscsit_handle_snack +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd3c9fd3e iscsit_build_r2ts_for_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd5e9baea iscsit_setup_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xdaf0a495 iscsit_increment_maxcmdsn +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe4a609ea iscsit_free_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe96b6c6d iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xea7968ea iscsit_tmr_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xecf70e33 iscsit_immediate_queue EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf34332f0 iscsi_find_param_from_key -EXPORT_SYMBOL drivers/target/target_core_mod 0x0158ce23 sbc_dif_copy_prot -EXPORT_SYMBOL drivers/target/target_core_mod 0x036640a4 core_tpg_check_initiator_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0x03bafd8c transport_alloc_session_tags -EXPORT_SYMBOL drivers/target/target_core_mod 0x05d396d3 __transport_register_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x08286952 sbc_dif_verify +EXPORT_SYMBOL drivers/target/target_core_mod 0x00276b69 target_put_nacl +EXPORT_SYMBOL drivers/target/target_core_mod 0x072a7f40 target_undepend_item EXPORT_SYMBOL drivers/target/target_core_mod 0x0871ffd6 transport_set_vpd_ident -EXPORT_SYMBOL drivers/target/target_core_mod 0x0da545f0 transport_init_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x140dd15f spc_emulate_report_luns +EXPORT_SYMBOL drivers/target/target_core_mod 0x08aacf34 target_cmd_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x1153f30f target_show_dynamic_sessions +EXPORT_SYMBOL drivers/target/target_core_mod 0x1290bbeb target_depend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0x13558b05 target_register_template EXPORT_SYMBOL drivers/target/target_core_mod 0x142072c0 transport_set_vpd_assoc -EXPORT_SYMBOL drivers/target/target_core_mod 0x1b7dbca5 transport_backend_register -EXPORT_SYMBOL drivers/target/target_core_mod 0x1e3c2e91 target_undepend_item -EXPORT_SYMBOL drivers/target/target_core_mod 0x23ecc434 target_show_dynamic_sessions -EXPORT_SYMBOL drivers/target/target_core_mod 0x29a9d154 target_backend_unregister -EXPORT_SYMBOL drivers/target/target_core_mod 0x2a5c2b5a target_cmd_init_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x2ce7fd99 transport_generic_handle_tmr -EXPORT_SYMBOL drivers/target/target_core_mod 0x2f658e21 sbc_get_device_type -EXPORT_SYMBOL drivers/target/target_core_mod 0x306257a6 transport_generic_free_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x38c3bdf5 target_register_template +EXPORT_SYMBOL drivers/target/target_core_mod 0x199aa77b target_complete_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x1b09d5df transport_send_check_condition_and_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0x1d11550d transport_copy_sense_to_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x23eed411 spc_emulate_inquiry_std +EXPORT_SYMBOL drivers/target/target_core_mod 0x246013ec transport_generic_request_failure +EXPORT_SYMBOL drivers/target/target_core_mod 0x295acdba target_cmd_init_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x33c15f50 __target_init_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x34375d96 target_setup_session EXPORT_SYMBOL drivers/target/target_core_mod 0x3a20a9d7 transport_set_vpd_ident_type -EXPORT_SYMBOL drivers/target/target_core_mod 0x3b7860e7 transport_register_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x3d4c6609 target_to_linux_sector -EXPORT_SYMBOL drivers/target/target_core_mod 0x3f6e8de0 transport_kunmap_data_sg -EXPORT_SYMBOL drivers/target/target_core_mod 0x4ab0eaf1 target_get_sess_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x4b7d7c52 core_alua_check_nonop_delay -EXPORT_SYMBOL drivers/target/target_core_mod 0x4d1f5dc3 core_tpg_register -EXPORT_SYMBOL drivers/target/target_core_mod 0x50eabdb5 core_tpg_deregister -EXPORT_SYMBOL drivers/target/target_core_mod 0x54c3e195 target_remove_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x574d9659 sbc_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x5f312202 passthrough_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x5f6d604d spc_emulate_evpd_83 -EXPORT_SYMBOL drivers/target/target_core_mod 0x6296a77b target_put_sess_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x62c03e0c target_complete_cmd_with_sense -EXPORT_SYMBOL drivers/target/target_core_mod 0x6379907b transport_lookup_tmr_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x3d0fe482 target_show_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x3d7f2e31 core_tpg_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x42225fa2 target_execute_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x46e72cd4 target_stop_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x500d96b9 passthrough_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x52bf0cd6 target_configure_unmap_from_queue +EXPORT_SYMBOL drivers/target/target_core_mod 0x53bc85a2 spc_emulate_evpd_83 +EXPORT_SYMBOL drivers/target/target_core_mod 0x53f967e8 transport_generic_free_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x57d15b64 target_set_cmd_data_length +EXPORT_SYMBOL drivers/target/target_core_mod 0x59eddac6 transport_alloc_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0x5a501618 transport_init_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x5a88dc68 target_complete_cmd_with_length +EXPORT_SYMBOL drivers/target/target_core_mod 0x5c64d2c2 transport_wait_for_tasks +EXPORT_SYMBOL drivers/target/target_core_mod 0x5fad4aec target_complete_cmd_with_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0x61934b7e transport_lookup_tmr_lun EXPORT_SYMBOL drivers/target/target_core_mod 0x638bffb7 target_free_sgl -EXPORT_SYMBOL drivers/target/target_core_mod 0x65019dc4 passthrough_pr_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0x683e41ef transport_lookup_cmd_lun -EXPORT_SYMBOL drivers/target/target_core_mod 0x6880ee43 core_tpg_get_initiator_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0x6a286dc2 transport_free_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x6a79b1ba transport_handle_cdb_direct -EXPORT_SYMBOL drivers/target/target_core_mod 0x6b0874fb target_submit_tmr -EXPORT_SYMBOL drivers/target/target_core_mod 0x6d25151f target_cmd_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x6f781dfb target_nacl_find_deve -EXPORT_SYMBOL drivers/target/target_core_mod 0x776f581d target_setup_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x63f6d00c core_allocate_nexus_loss_ua +EXPORT_SYMBOL drivers/target/target_core_mod 0x641a999e transport_kmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x667d8640 transport_backend_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x675299ea passthrough_pr_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x69d91896 transport_deregister_session_configfs +EXPORT_SYMBOL drivers/target/target_core_mod 0x6d684646 transport_free_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x6d966219 target_tpg_has_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x7547b1b1 transport_alloc_session EXPORT_SYMBOL drivers/target/target_core_mod 0x7a1d0d3c target_alloc_sgl -EXPORT_SYMBOL drivers/target/target_core_mod 0x7d2286e6 target_unregister_template -EXPORT_SYMBOL drivers/target/target_core_mod 0x81e899f6 target_complete_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x837df2dc __target_init_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x83e32564 transport_generic_new_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x8f6a6b0f transport_copy_sense_to_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x8fa2a390 target_complete_cmd_with_length -EXPORT_SYMBOL drivers/target/target_core_mod 0x93102404 transport_deregister_session_configfs -EXPORT_SYMBOL drivers/target/target_core_mod 0x936ffd22 target_lun_is_rdonly -EXPORT_SYMBOL drivers/target/target_core_mod 0x9bf8b71c target_depend_item -EXPORT_SYMBOL drivers/target/target_core_mod 0xb3c5e774 target_show_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xb534f29e target_put_nacl -EXPORT_SYMBOL drivers/target/target_core_mod 0xbaca1e25 passthrough_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0xc2b5ebd1 transport_kmap_data_sg -EXPORT_SYMBOL drivers/target/target_core_mod 0xc8c18ac7 target_tpg_has_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0xca537d84 core_allocate_nexus_loss_ua -EXPORT_SYMBOL drivers/target/target_core_mod 0xca570a04 transport_wait_for_tasks -EXPORT_SYMBOL drivers/target/target_core_mod 0xcf5fa021 spc_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0xd238a899 target_set_cmd_data_length -EXPORT_SYMBOL drivers/target/target_core_mod 0xd26d2349 target_stop_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xd48a5795 core_tpg_set_initiator_node_queue_depth -EXPORT_SYMBOL drivers/target/target_core_mod 0xd640f949 core_tpg_set_initiator_node_tag -EXPORT_SYMBOL drivers/target/target_core_mod 0xdb45a32e transport_send_check_condition_and_sense -EXPORT_SYMBOL drivers/target/target_core_mod 0xe08701f2 sbc_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0xe172250b target_submit_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xebee5d99 target_send_busy -EXPORT_SYMBOL drivers/target/target_core_mod 0xedbbb30a target_wait_for_sess_cmds -EXPORT_SYMBOL drivers/target/target_core_mod 0xedd663dc target_execute_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x7d9af40f core_tpg_get_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x84a7b7a5 sbc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x86c21487 transport_generic_new_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x896058ee transport_kunmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x8fc7fb46 target_get_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x92a0bc58 target_unregister_template +EXPORT_SYMBOL drivers/target/target_core_mod 0xa184fd29 transport_lookup_cmd_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0xa2c8accd core_tpg_check_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0xa8a5a38c core_tpg_set_initiator_node_tag +EXPORT_SYMBOL drivers/target/target_core_mod 0xb193947c target_submit_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0xb1bffe98 sbc_get_write_same_sectors +EXPORT_SYMBOL drivers/target/target_core_mod 0xb6de214a transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xb6e72056 target_nacl_find_deve +EXPORT_SYMBOL drivers/target/target_core_mod 0xb9a67b68 sbc_get_device_type +EXPORT_SYMBOL drivers/target/target_core_mod 0xbcb34007 transport_deregister_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xbdaae096 transport_generic_handle_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0xc496ca1a transport_handle_cdb_direct +EXPORT_SYMBOL drivers/target/target_core_mod 0xc6af5219 target_backend_unregister +EXPORT_SYMBOL drivers/target/target_core_mod 0xc8ff64d2 target_submit_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xcaa653c4 spc_emulate_report_luns +EXPORT_SYMBOL drivers/target/target_core_mod 0xcb6a4939 target_remove_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xcc8495ea __transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xd0767ec5 sbc_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0xd1132203 core_alua_check_nonop_delay +EXPORT_SYMBOL drivers/target/target_core_mod 0xd14b47c8 core_tpg_deregister +EXPORT_SYMBOL drivers/target/target_core_mod 0xd7500511 target_lun_is_rdonly +EXPORT_SYMBOL drivers/target/target_core_mod 0xd782908f target_put_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xdac3a7a3 spc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xdb4b7d89 sbc_dif_copy_prot +EXPORT_SYMBOL drivers/target/target_core_mod 0xdcbee89c sbc_dif_verify +EXPORT_SYMBOL drivers/target/target_core_mod 0xe2c22693 core_tpg_set_initiator_node_queue_depth +EXPORT_SYMBOL drivers/target/target_core_mod 0xe3eb1ba4 passthrough_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xe6ac4dd1 target_to_linux_sector +EXPORT_SYMBOL drivers/target/target_core_mod 0xe6f06c6b target_send_busy EXPORT_SYMBOL drivers/target/target_core_mod 0xf2d1aa82 core_tmr_alloc_req EXPORT_SYMBOL drivers/target/target_core_mod 0xf3c2dfe0 transport_set_vpd_proto_id -EXPORT_SYMBOL drivers/target/target_core_mod 0xf44c8cbd transport_deregister_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xf47e16f6 target_configure_unmap_from_queue -EXPORT_SYMBOL drivers/target/target_core_mod 0xf6497d47 transport_generic_request_failure -EXPORT_SYMBOL drivers/target/target_core_mod 0xf66dd4b1 sbc_get_write_same_sectors -EXPORT_SYMBOL drivers/target/target_core_mod 0xfa376611 spc_emulate_inquiry_std -EXPORT_SYMBOL drivers/target/target_core_mod 0xfd92c822 transport_alloc_session -EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0x283f04b8 usb_cdc_wdm_register -EXPORT_SYMBOL drivers/usb/gadget/libcomposite 0x1b9f407e usb_os_desc_prepare_interf_dir -EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0x60f12e6b sl811h_driver -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x0cf83cb5 usb_wwan_dtr_rts -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x1d232e5c usb_wwan_write -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x2354303a usb_wwan_chars_in_buffer -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x24ee49a2 usb_wwan_suspend -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x514c14d9 usb_wwan_close -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x63f54529 usb_wwan_write_room -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xa03bf950 usb_wwan_tiocmset -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xa04c0936 usb_wwan_tiocmget -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xa3d97061 usb_wwan_port_remove -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xab74b35f usb_wwan_resume -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xfa22ef3b usb_wwan_open -EXPORT_SYMBOL drivers/usb/serial/usbserial 0xc56d424c usb_serial_resume -EXPORT_SYMBOL drivers/usb/serial/usbserial 0xec8337f2 usb_serial_suspend -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x29b509c5 mtype_get_type_group_id -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x389a8321 mdev_register_device -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x747e7956 mdev_unregister_device -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x79315959 mdev_unregister_driver -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x7ec564de mdev_get_type_group_id -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x956a4cd6 mtype_get_parent_dev -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xa22d6a67 mdev_register_driver -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xffcb9c7b mdev_parent_dev -EXPORT_SYMBOL drivers/vhost/vhost 0x7bd51ad9 vhost_chr_poll -EXPORT_SYMBOL drivers/vhost/vhost 0xaf220d0e vhost_chr_write_iter +EXPORT_SYMBOL drivers/target/target_core_mod 0xf926ccf7 target_wait_for_sess_cmds +EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0x697985ee usb_cdc_wdm_register +EXPORT_SYMBOL drivers/usb/gadget/libcomposite 0x4dee3050 usb_os_desc_prepare_interf_dir +EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0x6dc02f8d sl811h_driver +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x11fd40a5 usb_wwan_chars_in_buffer +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x336cdcbd usb_wwan_tiocmset +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x3ca79bca usb_wwan_open +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x3f7aab4b usb_wwan_port_remove +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x5a54b922 usb_wwan_tiocmget +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x8a0c918c usb_wwan_close +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xc1f7abfb usb_wwan_resume +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xca77b49f usb_wwan_write_room +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xcdfa9596 usb_wwan_write +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xd7139ae2 usb_wwan_dtr_rts +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xf57f2ae8 usb_wwan_suspend +EXPORT_SYMBOL drivers/usb/serial/usbserial 0x3af261c9 usb_serial_resume +EXPORT_SYMBOL drivers/usb/serial/usbserial 0x9b95b8b8 usb_serial_suspend +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x5c920cb8 mdev_register_driver +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x7265e3af mdev_unregister_driver +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x821b6458 mdev_register_device +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x845e6bdd mdev_parent_dev +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x91c460e7 mdev_unregister_device +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x93077dce mtype_get_parent_dev +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x9cc0301e mtype_get_type_group_id +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xb01fc4ff mdev_get_type_group_id +EXPORT_SYMBOL drivers/vhost/vhost 0x8289f053 vhost_chr_poll +EXPORT_SYMBOL drivers/vhost/vhost 0xbb0daa59 vhost_chr_write_iter EXPORT_SYMBOL drivers/vhost/vringh 0x03f16e62 vringh_notify_enable_kern EXPORT_SYMBOL drivers/vhost/vringh 0x0498feb9 vringh_init_user EXPORT_SYMBOL drivers/vhost/vringh 0x04fde01d vringh_notify_disable_iotlb @@ -4372,127 +4372,127 @@ EXPORT_SYMBOL drivers/vhost/vringh 0xe674e8b2 vringh_getdesc_user EXPORT_SYMBOL drivers/vhost/vringh 0xe7204e1a vringh_init_kern EXPORT_SYMBOL drivers/vhost/vringh 0xea03b482 vringh_getdesc_iotlb -EXPORT_SYMBOL drivers/video/backlight/lcd 0x3c91190c devm_lcd_device_unregister -EXPORT_SYMBOL drivers/video/backlight/lcd 0x9fa1a0a3 devm_lcd_device_register -EXPORT_SYMBOL drivers/video/backlight/lcd 0xb5c47590 lcd_device_unregister -EXPORT_SYMBOL drivers/video/backlight/lcd 0xe1d8affd lcd_device_register -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x045009dc svga_tilecopy -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x0c356c49 svga_tilefill +EXPORT_SYMBOL drivers/video/backlight/lcd 0x148e64cc lcd_device_unregister +EXPORT_SYMBOL drivers/video/backlight/lcd 0x4a2e10d6 lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0x7d74db72 devm_lcd_device_unregister +EXPORT_SYMBOL drivers/video/backlight/lcd 0xf63b3ed2 devm_lcd_device_register +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x11695547 svga_tilecursor EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x17f3f471 svga_set_default_seq_regs EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x1be6dc30 svga_set_textmode_vga_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x46379877 svga_get_caps +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x23f5e441 svga_get_tilemax +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x329b38cd svga_tilefill +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x44c0693a svga_get_caps EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x4ab38ef2 svga_set_default_crt_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x588aca1e svga_get_tilemax -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x7a863be5 svga_tileblit +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x5c6544cf svga_settile EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x83a41489 svga_set_timings EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x84c337c2 svga_wcrt_multi EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x84c97d2a svga_match_format +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x8e567a3f svga_tilecopy +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x966e982c svga_tileblit EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xb0ab2b2e svga_check_timings -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd21acca3 svga_tilecursor EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd22ca511 svga_set_default_atc_regs EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd6ec2c44 svga_compute_pll EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xdcc5a013 svga_wseq_multi EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xe28d2a49 svga_set_default_gfx_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xe56ee296 svga_settile -EXPORT_SYMBOL drivers/video/fbdev/core/syscopyarea 0x60fb64e2 sys_copyarea -EXPORT_SYMBOL drivers/video/fbdev/core/sysfillrect 0x908915ac sys_fillrect -EXPORT_SYMBOL drivers/video/fbdev/core/sysimgblt 0xe488691e sys_imageblit +EXPORT_SYMBOL drivers/video/fbdev/core/syscopyarea 0xe29bfe9d sys_copyarea +EXPORT_SYMBOL drivers/video/fbdev/core/sysfillrect 0xb1faa9e1 sys_fillrect +EXPORT_SYMBOL drivers/video/fbdev/core/sysimgblt 0x928b0276 sys_imageblit +EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x00d4bd40 cyber2000fb_attach 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 0x8e687efe cyber2000fb_attach EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0xb39f68d1 cyber2000fb_enable_extregs -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xeba86722 matroxfb_g450_setpll_cond -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xf369335c matroxfb_g450_setclk -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xfa301ec9 g450_mnp2f -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x2b213ef6 matrox_G100 -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x77acacf5 matrox_mystique -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xbc8629ad DAC1064_global_init -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xe4385f06 DAC1064_global_restore -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_Ti3026 0xe577a3d6 matrox_millennium -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_accel 0x7ec44bd6 matrox_cfbX_init -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x297c0c12 matroxfb_register_driver -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x325a4438 matroxfb_wait_for_sync -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xf027c892 matroxfb_unregister_driver -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xfeb8d50b matroxfb_enable_irq -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x3b82661c matroxfb_g450_connect -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0xc8a250fb matroxfb_g450_shutdown +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xbad0520e g450_mnp2f +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xe477d9f1 matroxfb_g450_setpll_cond +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xfc557a21 matroxfb_g450_setclk +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x42a4b3ef matrox_G100 +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x47b0fc45 DAC1064_global_restore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xc1ca89c1 matrox_mystique +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xdc4a3afd DAC1064_global_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_Ti3026 0x15593200 matrox_millennium +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_accel 0x9cf05453 matrox_cfbX_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x5df5181e matroxfb_unregister_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x8a829e1c matroxfb_enable_irq +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xdacacca1 matroxfb_register_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xf71bf694 matroxfb_wait_for_sync +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x3c40a3f0 matroxfb_g450_shutdown +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0xe1443ebb matroxfb_g450_connect EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x25cf8049 matroxfb_PLL_calcclock -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x27c5a2c8 matroxfb_read_pins -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x639cec87 matroxfb_vgaHWrestore -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x94635b80 matroxfb_vgaHWinit +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x4dac4fcc matroxfb_read_pins +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x4ef5cc0f matroxfb_vgaHWrestore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x655937a0 matroxfb_DAC_in +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x6a581909 matroxfb_vgaHWinit +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x6cf9ca74 matroxfb_DAC_out EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xcdc90c64 matroxfb_var2my -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xd813670e matroxfb_DAC_out -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xf73f2c6a matroxfb_DAC_in 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 0x0d95ac92 virtio_dma_buf_export -EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x12fdb69c virtio_dma_buf_attach -EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0xbc844455 is_virtio_dma_buf -EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0xd13a39c4 virtio_dma_buf_get_uuid -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x15e12324 w1_ds2780_eeprom_cmd -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0xb4cdf7d0 w1_ds2780_io -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x83197b19 w1_ds2781_io -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0xab7d8d2c w1_ds2781_eeprom_cmd -EXPORT_SYMBOL drivers/w1/wire 0x84fc60a2 w1_remove_master_device -EXPORT_SYMBOL drivers/w1/wire 0xc291ff97 w1_unregister_family -EXPORT_SYMBOL drivers/w1/wire 0xf38d08af w1_add_master_device -EXPORT_SYMBOL drivers/w1/wire 0xfd91b9e2 w1_register_family -EXPORT_SYMBOL fs/fscache/fscache 0x0262f5fa __fscache_read_or_alloc_pages -EXPORT_SYMBOL fs/fscache/fscache 0x033f722e __fscache_readpages_cancel -EXPORT_SYMBOL fs/fscache/fscache 0x09a08863 __fscache_alloc_page -EXPORT_SYMBOL fs/fscache/fscache 0x0a247ded __fscache_uncache_page -EXPORT_SYMBOL fs/fscache/fscache 0x16bd9fff fscache_put_operation -EXPORT_SYMBOL fs/fscache/fscache 0x18aebab0 __fscache_unregister_netfs -EXPORT_SYMBOL fs/fscache/fscache 0x2428e951 fscache_object_lookup_negative -EXPORT_SYMBOL fs/fscache/fscache 0x25aa0c9e __fscache_update_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x2d81438d __fscache_wait_on_page_write -EXPORT_SYMBOL fs/fscache/fscache 0x3273f2d3 fscache_op_complete -EXPORT_SYMBOL fs/fscache/fscache 0x34a35e57 fscache_obtained_object -EXPORT_SYMBOL fs/fscache/fscache 0x38cafc6f fscache_object_mark_killed -EXPORT_SYMBOL fs/fscache/fscache 0x4d2d844d fscache_object_retrying_stale -EXPORT_SYMBOL fs/fscache/fscache 0x523cbdaa fscache_withdraw_cache -EXPORT_SYMBOL fs/fscache/fscache 0x5633d0fa __fscache_relinquish_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x68aa6490 fscache_io_error -EXPORT_SYMBOL fs/fscache/fscache 0x68c7886e fscache_mark_pages_cached -EXPORT_SYMBOL fs/fscache/fscache 0x6d2fd7d8 fscache_object_init -EXPORT_SYMBOL fs/fscache/fscache 0x7087b1f1 fscache_init_cache +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x2647ccba virtio_dma_buf_get_uuid +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x5ba7eeb5 virtio_dma_buf_attach +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x60020ed2 is_virtio_dma_buf +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0xa28661f6 virtio_dma_buf_export +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x0016c7a0 w1_ds2780_io +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x3507e7d4 w1_ds2780_eeprom_cmd +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x2168d0da w1_ds2781_io +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0xcca52a95 w1_ds2781_eeprom_cmd +EXPORT_SYMBOL drivers/w1/wire 0x040bfa8d w1_add_master_device +EXPORT_SYMBOL drivers/w1/wire 0x45ce6113 w1_unregister_family +EXPORT_SYMBOL drivers/w1/wire 0x4ece216c w1_remove_master_device +EXPORT_SYMBOL drivers/w1/wire 0x8ad79f19 w1_register_family +EXPORT_SYMBOL fs/fscache/fscache 0x06274e08 __fscache_update_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x0d9e11c4 fscache_add_cache +EXPORT_SYMBOL fs/fscache/fscache 0x15385c1b fscache_object_retrying_stale +EXPORT_SYMBOL fs/fscache/fscache 0x1aa79575 fscache_operation_init +EXPORT_SYMBOL fs/fscache/fscache 0x1dd1fc2f __fscache_read_or_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0x28ea16a6 __fscache_wait_on_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0x2a67acf3 fscache_withdraw_cache +EXPORT_SYMBOL fs/fscache/fscache 0x2f4cc255 __fscache_write_page +EXPORT_SYMBOL fs/fscache/fscache 0x2f58ad62 fscache_object_destroy +EXPORT_SYMBOL fs/fscache/fscache 0x322f1bd8 __fscache_disable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x3b44951f __fscache_attr_changed +EXPORT_SYMBOL fs/fscache/fscache 0x3b46cdfa fscache_mark_page_cached +EXPORT_SYMBOL fs/fscache/fscache 0x3f79652f __fscache_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0x44e2c4d2 __fscache_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0x57eb62e3 fscache_op_complete +EXPORT_SYMBOL fs/fscache/fscache 0x5db1d055 __fscache_uncache_page +EXPORT_SYMBOL fs/fscache/fscache 0x603b3305 fscache_enqueue_operation +EXPORT_SYMBOL fs/fscache/fscache 0x65d55879 __fscache_check_page_write +EXPORT_SYMBOL fs/fscache/fscache 0x687a8962 __fscache_enable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x6a541571 __fscache_begin_read_operation +EXPORT_SYMBOL fs/fscache/fscache 0x6ca62f40 __fscache_readpages_cancel +EXPORT_SYMBOL fs/fscache/fscache 0x6d557d0c __fscache_wait_on_page_write EXPORT_SYMBOL fs/fscache/fscache 0x74530ecd fscache_op_debug_id -EXPORT_SYMBOL fs/fscache/fscache 0x751a6424 fscache_add_cache -EXPORT_SYMBOL fs/fscache/fscache 0x76817578 __fscache_disable_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x7e8af93c __fscache_invalidate -EXPORT_SYMBOL fs/fscache/fscache 0x80eeb4a9 __fscache_attr_changed -EXPORT_SYMBOL fs/fscache/fscache 0x84c7051f __fscache_begin_read_operation -EXPORT_SYMBOL fs/fscache/fscache 0x9191b20d fscache_mark_page_cached -EXPORT_SYMBOL fs/fscache/fscache 0x9a54a561 __fscache_enable_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x9f682bef __fscache_read_or_alloc_page -EXPORT_SYMBOL fs/fscache/fscache 0xa4766f13 fscache_enqueue_operation -EXPORT_SYMBOL fs/fscache/fscache 0xb5594a59 fscache_fsdef_index -EXPORT_SYMBOL fs/fscache/fscache 0xbad806cd fscache_operation_init +EXPORT_SYMBOL fs/fscache/fscache 0x7cbf9cba __fscache_uncache_all_inode_pages +EXPORT_SYMBOL fs/fscache/fscache 0x7dd24137 fscache_obtained_object +EXPORT_SYMBOL fs/fscache/fscache 0x8fe281dc fscache_object_lookup_negative +EXPORT_SYMBOL fs/fscache/fscache 0x957b6451 __fscache_read_or_alloc_pages +EXPORT_SYMBOL fs/fscache/fscache 0x9817b9a4 fscache_put_operation +EXPORT_SYMBOL fs/fscache/fscache 0x9f79b220 fscache_mark_pages_cached +EXPORT_SYMBOL fs/fscache/fscache 0xa856abce fscache_object_mark_killed +EXPORT_SYMBOL fs/fscache/fscache 0xa8e952cd __fscache_acquire_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xae429414 __fscache_relinquish_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xaeae4da3 fscache_fsdef_index +EXPORT_SYMBOL fs/fscache/fscache 0xb02cbb1d fscache_init_cache +EXPORT_SYMBOL fs/fscache/fscache 0xb33c95f6 fscache_check_aux EXPORT_SYMBOL fs/fscache/fscache 0xc22ddd1a fscache_cache_cleared_wq -EXPORT_SYMBOL fs/fscache/fscache 0xc2537a5d __fscache_uncache_all_inode_pages -EXPORT_SYMBOL fs/fscache/fscache 0xd3eddc22 __fscache_register_netfs -EXPORT_SYMBOL fs/fscache/fscache 0xe80f842c fscache_check_aux -EXPORT_SYMBOL fs/fscache/fscache 0xe9ead98c __fscache_check_consistency -EXPORT_SYMBOL fs/fscache/fscache 0xec97ccfc __fscache_wait_on_invalidate -EXPORT_SYMBOL fs/fscache/fscache 0xf169c884 __fscache_acquire_cookie -EXPORT_SYMBOL fs/fscache/fscache 0xf1b9c8c7 __fscache_maybe_release_page -EXPORT_SYMBOL fs/fscache/fscache 0xf39cd7ab fscache_object_destroy -EXPORT_SYMBOL fs/fscache/fscache 0xf676150c __fscache_write_page -EXPORT_SYMBOL fs/fscache/fscache 0xfbcbf0dc __fscache_check_page_write -EXPORT_SYMBOL fs/netfs/netfs 0x17faf511 netfs_write_begin -EXPORT_SYMBOL fs/netfs/netfs 0x1aaa6423 netfs_subreq_terminated -EXPORT_SYMBOL fs/netfs/netfs 0x41c363eb netfs_readahead -EXPORT_SYMBOL fs/netfs/netfs 0x72e2a139 netfs_stats_show -EXPORT_SYMBOL fs/netfs/netfs 0xf6361e2e netfs_readpage +EXPORT_SYMBOL fs/fscache/fscache 0xd0fd4784 __fscache_check_consistency +EXPORT_SYMBOL fs/fscache/fscache 0xd295d17d fscache_io_error +EXPORT_SYMBOL fs/fscache/fscache 0xd67cf278 __fscache_maybe_release_page +EXPORT_SYMBOL fs/fscache/fscache 0xe93e883c __fscache_unregister_netfs +EXPORT_SYMBOL fs/fscache/fscache 0xf1db48f0 __fscache_register_netfs +EXPORT_SYMBOL fs/fscache/fscache 0xfa7d8d78 fscache_object_init +EXPORT_SYMBOL fs/netfs/netfs 0x3941102f netfs_stats_show +EXPORT_SYMBOL fs/netfs/netfs 0x6a03b82b netfs_write_begin +EXPORT_SYMBOL fs/netfs/netfs 0x717cbb23 netfs_readpage +EXPORT_SYMBOL fs/netfs/netfs 0xf49fa167 netfs_readahead +EXPORT_SYMBOL fs/netfs/netfs 0xfbe0ab81 netfs_subreq_terminated EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active -EXPORT_SYMBOL fs/quota/quota_tree 0x6c783365 qtree_release_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0x8cae2f6e qtree_read_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0xae504ece qtree_get_next_id -EXPORT_SYMBOL fs/quota/quota_tree 0xae6f53d6 qtree_entry_unused -EXPORT_SYMBOL fs/quota/quota_tree 0xbffb7fc5 qtree_write_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0xe6c6b6ab qtree_delete_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x39550f1d qtree_release_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x99339771 qtree_get_next_id +EXPORT_SYMBOL fs/quota/quota_tree 0x9f8c52c6 qtree_read_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xc4c3ca51 qtree_write_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xc6198e8a qtree_delete_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xf8c4c13d qtree_entry_unused 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 @@ -4523,14 +4523,14 @@ EXPORT_SYMBOL lib/libcrc32c 0xb15b4109 crc32c EXPORT_SYMBOL lib/lru_cache 0x0641307b lc_destroy EXPORT_SYMBOL lib/lru_cache 0x098d2ed9 lc_try_get +EXPORT_SYMBOL lib/lru_cache 0x16f6e64b lc_seq_dump_details +EXPORT_SYMBOL lib/lru_cache 0x2261a358 lc_seq_printf_stats EXPORT_SYMBOL lib/lru_cache 0x2d47ac83 lc_committed EXPORT_SYMBOL lib/lru_cache 0x2f3dcecb lc_index_of -EXPORT_SYMBOL lib/lru_cache 0x31a17e38 lc_seq_printf_stats EXPORT_SYMBOL lib/lru_cache 0x4522d82a lc_reset EXPORT_SYMBOL lib/lru_cache 0x4cf5f5a8 lc_is_used EXPORT_SYMBOL lib/lru_cache 0x5752f31b lc_del EXPORT_SYMBOL lib/lru_cache 0x7257beee lc_element_by_index -EXPORT_SYMBOL lib/lru_cache 0x8ca868aa lc_seq_dump_details EXPORT_SYMBOL lib/lru_cache 0x9134feb7 lc_get EXPORT_SYMBOL lib/lru_cache 0xb672aa97 lc_create EXPORT_SYMBOL lib/lru_cache 0xbfbe53d5 lc_get_cumulative @@ -4605,815 +4605,816 @@ EXPORT_SYMBOL lib/zstd/zstd_compress 0xefe4f679 ZSTD_CCtxWorkspaceBound EXPORT_SYMBOL lib/zstd/zstd_compress 0xfdf70093 ZSTD_CStreamOutSize EXPORT_SYMBOL lib/zstd/zstd_compress 0xff9c4b56 ZSTD_compressBound -EXPORT_SYMBOL net/6lowpan/6lowpan 0x66fc7632 lowpan_unregister_netdev -EXPORT_SYMBOL net/6lowpan/6lowpan 0x931b56d3 lowpan_register_netdev -EXPORT_SYMBOL net/6lowpan/6lowpan 0xad5ec2ec lowpan_register_netdevice -EXPORT_SYMBOL net/6lowpan/6lowpan 0xb37133df lowpan_unregister_netdevice -EXPORT_SYMBOL net/6lowpan/6lowpan 0xef60dbb5 lowpan_nhc_del -EXPORT_SYMBOL net/6lowpan/6lowpan 0xefb50f14 lowpan_nhc_add -EXPORT_SYMBOL net/802/p8022 0x9eed710f unregister_8022_client -EXPORT_SYMBOL net/802/p8022 0xac36ebc6 register_8022_client -EXPORT_SYMBOL net/802/psnap 0x18e47793 register_snap_client -EXPORT_SYMBOL net/802/psnap 0x437b120c unregister_snap_client -EXPORT_SYMBOL net/9p/9pnet 0x056c2735 p9_client_clunk -EXPORT_SYMBOL net/9p/9pnet 0x0be577aa p9_client_unlinkat -EXPORT_SYMBOL net/9p/9pnet 0x11f8871b p9_client_setattr -EXPORT_SYMBOL net/9p/9pnet 0x14f93c84 p9_client_getlock_dotl -EXPORT_SYMBOL net/9p/9pnet 0x1d3f164c p9_client_fsync -EXPORT_SYMBOL net/9p/9pnet 0x23c68e9d p9_client_symlink -EXPORT_SYMBOL net/9p/9pnet 0x25ce7cd3 p9_client_read_once -EXPORT_SYMBOL net/9p/9pnet 0x26bf8274 p9_client_stat -EXPORT_SYMBOL net/9p/9pnet 0x29ec0cb9 p9_client_lock_dotl -EXPORT_SYMBOL net/9p/9pnet 0x2a2ac629 p9_tag_lookup -EXPORT_SYMBOL net/9p/9pnet 0x2b88ddab p9_client_write -EXPORT_SYMBOL net/9p/9pnet 0x2b9f955f v9fs_get_default_trans -EXPORT_SYMBOL net/9p/9pnet 0x37d267be p9_client_destroy +EXPORT_SYMBOL net/6lowpan/6lowpan 0x0866178c lowpan_register_netdevice +EXPORT_SYMBOL net/6lowpan/6lowpan 0x08b399a1 lowpan_nhc_add +EXPORT_SYMBOL net/6lowpan/6lowpan 0x1d7b0dfd lowpan_nhc_del +EXPORT_SYMBOL net/6lowpan/6lowpan 0x25b9bceb lowpan_unregister_netdev +EXPORT_SYMBOL net/6lowpan/6lowpan 0x41aa28be lowpan_unregister_netdevice +EXPORT_SYMBOL net/6lowpan/6lowpan 0xc3fdfd52 lowpan_register_netdev +EXPORT_SYMBOL net/802/p8022 0x06b7c20e register_8022_client +EXPORT_SYMBOL net/802/p8022 0x6b5f091a unregister_8022_client +EXPORT_SYMBOL net/802/psnap 0x04f91714 register_snap_client +EXPORT_SYMBOL net/802/psnap 0xbe6d8fdb unregister_snap_client +EXPORT_SYMBOL net/9p/9pnet 0x06e8ed66 p9_client_mkdir_dotl +EXPORT_SYMBOL net/9p/9pnet 0x0f621959 p9_client_destroy +EXPORT_SYMBOL net/9p/9pnet 0x0f9f40d5 p9_tag_lookup +EXPORT_SYMBOL net/9p/9pnet 0x236bb5c7 p9_client_rename +EXPORT_SYMBOL net/9p/9pnet 0x296ed89e p9_client_cb +EXPORT_SYMBOL net/9p/9pnet 0x2f5a6e86 p9_client_fsync +EXPORT_SYMBOL net/9p/9pnet 0x326a3a53 p9_client_walk +EXPORT_SYMBOL net/9p/9pnet 0x3a48877c p9_client_unlinkat +EXPORT_SYMBOL net/9p/9pnet 0x3d5ea8d7 p9_is_proto_dotu EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno -EXPORT_SYMBOL net/9p/9pnet 0x3ffa6bd5 p9_client_open -EXPORT_SYMBOL net/9p/9pnet 0x401d9ecc p9_client_mkdir_dotl -EXPORT_SYMBOL net/9p/9pnet 0x40badd2c p9_client_getattr_dotl -EXPORT_SYMBOL net/9p/9pnet 0x4b63abb8 p9_client_link -EXPORT_SYMBOL net/9p/9pnet 0x5d3beddb p9_client_statfs +EXPORT_SYMBOL net/9p/9pnet 0x416fa85f p9_client_getattr_dotl +EXPORT_SYMBOL net/9p/9pnet 0x47a6a1be p9_client_renameat +EXPORT_SYMBOL net/9p/9pnet 0x48215d65 p9_client_stat +EXPORT_SYMBOL net/9p/9pnet 0x4df0b4ba p9_client_wstat +EXPORT_SYMBOL net/9p/9pnet 0x4f2f0847 p9_client_readlink +EXPORT_SYMBOL net/9p/9pnet 0x4f8ae720 p9_client_attach +EXPORT_SYMBOL net/9p/9pnet 0x517a492d p9_client_mknod_dotl +EXPORT_SYMBOL net/9p/9pnet 0x53fa419e p9_client_fcreate +EXPORT_SYMBOL net/9p/9pnet 0x6343916b p9_client_disconnect +EXPORT_SYMBOL net/9p/9pnet 0x6b3b45bb p9_client_statfs +EXPORT_SYMBOL net/9p/9pnet 0x6c6cb9f2 p9_is_proto_dotl +EXPORT_SYMBOL net/9p/9pnet 0x6ec64b6d p9_client_readdir EXPORT_SYMBOL net/9p/9pnet 0x6f8d746b p9dirent_read -EXPORT_SYMBOL net/9p/9pnet 0x72b3b638 p9_client_rename -EXPORT_SYMBOL net/9p/9pnet 0x7331674a p9_client_create_dotl -EXPORT_SYMBOL net/9p/9pnet 0x7cf12d09 p9_client_disconnect -EXPORT_SYMBOL net/9p/9pnet 0x7d673e39 p9_client_create -EXPORT_SYMBOL net/9p/9pnet 0x8e1678ce p9_client_wstat -EXPORT_SYMBOL net/9p/9pnet 0x8f98371f p9_client_fcreate -EXPORT_SYMBOL net/9p/9pnet 0x91c09bb1 v9fs_unregister_trans -EXPORT_SYMBOL net/9p/9pnet 0x97d4b976 p9_client_readdir -EXPORT_SYMBOL net/9p/9pnet 0x982e8224 v9fs_register_trans +EXPORT_SYMBOL net/9p/9pnet 0x77eaeb41 p9_client_read +EXPORT_SYMBOL net/9p/9pnet 0x79add20e v9fs_get_default_trans +EXPORT_SYMBOL net/9p/9pnet 0x7b91dc2b p9_client_getlock_dotl +EXPORT_SYMBOL net/9p/9pnet 0x863e17d0 p9_show_client_options +EXPORT_SYMBOL net/9p/9pnet 0x88cb45b1 p9_release_pages +EXPORT_SYMBOL net/9p/9pnet 0x8be42057 p9_client_clunk EXPORT_SYMBOL net/9p/9pnet 0x984c5e73 p9_fcall_fini -EXPORT_SYMBOL net/9p/9pnet 0xa2a8198b p9_client_remove -EXPORT_SYMBOL net/9p/9pnet 0xa4a2aa59 p9_client_begin_disconnect -EXPORT_SYMBOL net/9p/9pnet 0xa8b5cadc p9_client_read -EXPORT_SYMBOL net/9p/9pnet 0xb377e98c p9_client_mknod_dotl -EXPORT_SYMBOL net/9p/9pnet 0xb4865fd6 p9_client_attach +EXPORT_SYMBOL net/9p/9pnet 0x9f314d9c p9_client_lock_dotl +EXPORT_SYMBOL net/9p/9pnet 0xa00abb01 v9fs_get_trans_by_name +EXPORT_SYMBOL net/9p/9pnet 0xacfddb77 p9_client_symlink +EXPORT_SYMBOL net/9p/9pnet 0xae3a198a p9_client_write EXPORT_SYMBOL net/9p/9pnet 0xb79f25fd p9_parse_header +EXPORT_SYMBOL net/9p/9pnet 0xbb7ed2ce p9_client_create_dotl +EXPORT_SYMBOL net/9p/9pnet 0xbf069bed v9fs_unregister_trans +EXPORT_SYMBOL net/9p/9pnet 0xc084939e p9_client_open +EXPORT_SYMBOL net/9p/9pnet 0xc648eba1 p9_client_create +EXPORT_SYMBOL net/9p/9pnet 0xc77fd072 p9_client_remove +EXPORT_SYMBOL net/9p/9pnet 0xccc3a711 v9fs_register_trans EXPORT_SYMBOL net/9p/9pnet 0xce00d612 p9stat_read -EXPORT_SYMBOL net/9p/9pnet 0xd033f475 p9_client_readlink -EXPORT_SYMBOL net/9p/9pnet 0xd13b91bd p9_show_client_options EXPORT_SYMBOL net/9p/9pnet 0xd384c683 p9stat_free -EXPORT_SYMBOL net/9p/9pnet 0xe4ae5fd3 p9_is_proto_dotu +EXPORT_SYMBOL net/9p/9pnet 0xdaf9f36b p9_client_link +EXPORT_SYMBOL net/9p/9pnet 0xe358d47f p9_client_read_once EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init -EXPORT_SYMBOL net/9p/9pnet 0xe73eaa82 p9_release_pages -EXPORT_SYMBOL net/9p/9pnet 0xe801aea3 p9_client_renameat -EXPORT_SYMBOL net/9p/9pnet 0xea9ea90c p9_client_walk -EXPORT_SYMBOL net/9p/9pnet 0xeb125115 v9fs_get_trans_by_name -EXPORT_SYMBOL net/9p/9pnet 0xef8d3d4f p9_client_cb -EXPORT_SYMBOL net/9p/9pnet 0xf6a88b4d p9_is_proto_dotl +EXPORT_SYMBOL net/9p/9pnet 0xe98bc929 p9_client_setattr +EXPORT_SYMBOL net/9p/9pnet 0xecc3b718 p9_client_begin_disconnect EXPORT_SYMBOL net/9p/9pnet 0xfb019d3e p9_req_put -EXPORT_SYMBOL net/appletalk/appletalk 0x13f8a93f alloc_ltalkdev -EXPORT_SYMBOL net/appletalk/appletalk 0x1f1d5a84 atrtr_get_dev -EXPORT_SYMBOL net/appletalk/appletalk 0x83c0274e aarp_send_ddp -EXPORT_SYMBOL net/appletalk/appletalk 0xfa8e2d00 atalk_find_dev_addr +EXPORT_SYMBOL net/appletalk/appletalk 0x4025fb08 aarp_send_ddp +EXPORT_SYMBOL net/appletalk/appletalk 0x8ceb4218 atalk_find_dev_addr +EXPORT_SYMBOL net/appletalk/appletalk 0xd95e9378 atrtr_get_dev +EXPORT_SYMBOL net/appletalk/appletalk 0xf3869123 alloc_ltalkdev +EXPORT_SYMBOL net/atm/atm 0x24bad3fc atm_init_aal5 EXPORT_SYMBOL net/atm/atm 0x2cc2d52d vcc_hash +EXPORT_SYMBOL net/atm/atm 0x2d662561 deregister_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0x3e617ac0 vcc_process_recv_queue EXPORT_SYMBOL net/atm/atm 0x4443d399 atm_proc_root -EXPORT_SYMBOL net/atm/atm 0x4bb7d590 atm_dev_register -EXPORT_SYMBOL net/atm/atm 0x4f8480eb vcc_release_async -EXPORT_SYMBOL net/atm/atm 0x5c93946c atm_dev_deregister -EXPORT_SYMBOL net/atm/atm 0x6985eb4b atm_charge -EXPORT_SYMBOL net/atm/atm 0x6d9105d9 vcc_process_recv_queue -EXPORT_SYMBOL net/atm/atm 0x786e0b81 atm_init_aal5 -EXPORT_SYMBOL net/atm/atm 0x7cc2c155 atm_dev_lookup -EXPORT_SYMBOL net/atm/atm 0x94bbc660 atm_dev_release_vccs +EXPORT_SYMBOL net/atm/atm 0x47966e4c atm_dev_lookup +EXPORT_SYMBOL net/atm/atm 0x5e628be3 atm_dev_signal_change +EXPORT_SYMBOL net/atm/atm 0x62853a4a vcc_insert_socket +EXPORT_SYMBOL net/atm/atm 0x763331ce register_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0x79e872f3 atm_dev_release_vccs EXPORT_SYMBOL net/atm/atm 0x9feaf287 sonet_subtract_stats -EXPORT_SYMBOL net/atm/atm 0xa4b2591c atm_alloc_charge EXPORT_SYMBOL net/atm/atm 0xaa024146 sonet_copy_stats EXPORT_SYMBOL net/atm/atm 0xca87b453 vcc_sklist_lock -EXPORT_SYMBOL net/atm/atm 0xe5ac677d register_atm_ioctl -EXPORT_SYMBOL net/atm/atm 0xe7761d63 atm_dev_signal_change -EXPORT_SYMBOL net/atm/atm 0xe8c02b52 vcc_insert_socket -EXPORT_SYMBOL net/atm/atm 0xea16708e deregister_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0xe302a72b atm_alloc_charge +EXPORT_SYMBOL net/atm/atm 0xe8c1338f atm_charge +EXPORT_SYMBOL net/atm/atm 0xeb5c4007 atm_dev_register +EXPORT_SYMBOL net/atm/atm 0xf42bdbfc vcc_release_async EXPORT_SYMBOL net/atm/atm 0xf49bc67a atm_pcr_goal -EXPORT_SYMBOL net/ax25/ax25 0x0df8311f ax25_ip_xmit +EXPORT_SYMBOL net/atm/atm 0xf6785b97 atm_dev_deregister +EXPORT_SYMBOL net/ax25/ax25 0x1237541a ax25_linkfail_register EXPORT_SYMBOL net/ax25/ax25 0x14cecd59 ax25_display_timer +EXPORT_SYMBOL net/ax25/ax25 0x20c94695 ax25_find_cb EXPORT_SYMBOL net/ax25/ax25 0x242852b9 ax25_uid_policy EXPORT_SYMBOL net/ax25/ax25 0x4502c65a asc2ax -EXPORT_SYMBOL net/ax25/ax25 0x4f36888f ax25_find_cb +EXPORT_SYMBOL net/ax25/ax25 0x51ebd24e ax25_header_ops EXPORT_SYMBOL net/ax25/ax25 0x53dea1ff ax2asc -EXPORT_SYMBOL net/ax25/ax25 0x555a855c ax25_header_ops -EXPORT_SYMBOL net/ax25/ax25 0x66429d48 ax25_listen_register -EXPORT_SYMBOL net/ax25/ax25 0x7ece5697 ax25_listen_release +EXPORT_SYMBOL net/ax25/ax25 0x6c208d89 ax25_ip_xmit +EXPORT_SYMBOL net/ax25/ax25 0x70e2854f ax25_listen_register +EXPORT_SYMBOL net/ax25/ax25 0x776965f3 ax25_listen_release EXPORT_SYMBOL net/ax25/ax25 0x8ede9e26 ax25_protocol_release -EXPORT_SYMBOL net/ax25/ax25 0xbfbbccf7 ax25_linkfail_release +EXPORT_SYMBOL net/ax25/ax25 0x9d5a6ec9 ax25_send_frame EXPORT_SYMBOL net/ax25/ax25 0xc1444946 ax25cmp +EXPORT_SYMBOL net/ax25/ax25 0xd0965362 ax25_linkfail_release EXPORT_SYMBOL net/ax25/ax25 0xd43ecbf1 null_ax25_address -EXPORT_SYMBOL net/ax25/ax25 0xe31e150a ax25_linkfail_register EXPORT_SYMBOL net/ax25/ax25 0xee02e420 ax25_findbyuid -EXPORT_SYMBOL net/ax25/ax25 0xff3f188a ax25_send_frame -EXPORT_SYMBOL net/bluetooth/bluetooth 0x00c2bc73 bt_sock_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0x03604c1e hci_reset_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x04b21c9a __hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0x04b62e19 bt_procfs_cleanup +EXPORT_SYMBOL net/bluetooth/bluetooth 0x061fe591 hci_register_cb EXPORT_SYMBOL net/bluetooth/bluetooth 0x0718b8b7 bt_info -EXPORT_SYMBOL net/bluetooth/bluetooth 0x085a6184 hci_set_hw_info -EXPORT_SYMBOL net/bluetooth/bluetooth 0x0aad1db9 bt_sock_ioctl -EXPORT_SYMBOL net/bluetooth/bluetooth 0x0d3fc248 bt_accept_dequeue -EXPORT_SYMBOL net/bluetooth/bluetooth 0x0f7a11cf hci_set_fw_info -EXPORT_SYMBOL net/bluetooth/bluetooth 0x0ffe4f40 hci_conn_switch_role -EXPORT_SYMBOL net/bluetooth/bluetooth 0x1797c8ae bt_sock_stream_recvmsg -EXPORT_SYMBOL net/bluetooth/bluetooth 0x1da61e71 l2cap_conn_put -EXPORT_SYMBOL net/bluetooth/bluetooth 0x1f78b6ae hci_unregister_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0caf4cea bt_sock_wait_ready +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0d187177 bt_sock_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0x17343e2f hci_mgmt_chan_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0x1a4eacf7 l2cap_chan_close +EXPORT_SYMBOL net/bluetooth/bluetooth 0x207fc225 hci_get_route EXPORT_SYMBOL net/bluetooth/bluetooth 0x214e4265 bt_warn -EXPORT_SYMBOL net/bluetooth/bluetooth 0x34eeff80 hci_unregister_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x35d7cde7 hci_free_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x3a786d06 hci_conn_security -EXPORT_SYMBOL net/bluetooth/bluetooth 0x3c186783 hci_mgmt_chan_unregister -EXPORT_SYMBOL net/bluetooth/bluetooth 0x46b6b51b l2cap_unregister_user -EXPORT_SYMBOL net/bluetooth/bluetooth 0x470bb770 bt_sock_unlink -EXPORT_SYMBOL net/bluetooth/bluetooth 0x4982062e hci_suspend_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x4fcc8938 l2cap_chan_close -EXPORT_SYMBOL net/bluetooth/bluetooth 0x59bc72a0 bt_accept_unlink -EXPORT_SYMBOL net/bluetooth/bluetooth 0x61cd01f0 bt_sock_poll -EXPORT_SYMBOL net/bluetooth/bluetooth 0x6f682038 __hci_cmd_sync -EXPORT_SYMBOL net/bluetooth/bluetooth 0x75738dbf hci_register_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2bdf2907 bt_sock_poll +EXPORT_SYMBOL net/bluetooth/bluetooth 0x32c83fa7 __hci_cmd_sync_ev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3599acf7 hci_free_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3f001169 l2cap_conn_get +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4bb81f10 hci_recv_frame +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4bfecef6 __hci_cmd_send +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4d7f35a4 l2cap_unregister_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0x52ce8549 hci_conn_switch_role +EXPORT_SYMBOL net/bluetooth/bluetooth 0x53562889 hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5e6969d9 hci_suspend_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x6c320841 bt_sock_ioctl +EXPORT_SYMBOL net/bluetooth/bluetooth 0x75da4179 hci_resume_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x77ff5917 hci_recv_diag +EXPORT_SYMBOL net/bluetooth/bluetooth 0x79bba3c1 bt_accept_unlink 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 0x80c137fe bt_procfs_init +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7dcf406b bt_procfs_init +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7e6263d1 hci_unregister_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7f33613c hci_conn_security +EXPORT_SYMBOL net/bluetooth/bluetooth 0x80c7a67b l2cap_register_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0x825f33d9 l2cap_conn_put +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8e397fc7 hci_unregister_cb EXPORT_SYMBOL net/bluetooth/bluetooth 0x8fea24bd bt_sock_unregister -EXPORT_SYMBOL net/bluetooth/bluetooth 0x9093520a hci_reset_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x93dda092 bt_sock_register -EXPORT_SYMBOL net/bluetooth/bluetooth 0x9468e3c1 l2cap_is_socket -EXPORT_SYMBOL net/bluetooth/bluetooth 0x975555fe bt_procfs_cleanup -EXPORT_SYMBOL net/bluetooth/bluetooth 0x9dd5ef7e l2cap_register_user -EXPORT_SYMBOL net/bluetooth/bluetooth 0x9e1f7871 bt_sock_wait_ready -EXPORT_SYMBOL net/bluetooth/bluetooth 0x9fb44d23 hci_conn_check_secure -EXPORT_SYMBOL net/bluetooth/bluetooth 0xa2d77bdf l2cap_conn_get -EXPORT_SYMBOL net/bluetooth/bluetooth 0xa4e62cfa hci_resume_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xaa26a4aa bt_sock_wait_state -EXPORT_SYMBOL net/bluetooth/bluetooth 0xaffde8e8 bt_sock_reclassify_lock -EXPORT_SYMBOL net/bluetooth/bluetooth 0xc91e9782 __hci_cmd_send -EXPORT_SYMBOL net/bluetooth/bluetooth 0xccf5be89 hci_release_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xce15b940 bt_accept_enqueue -EXPORT_SYMBOL net/bluetooth/bluetooth 0xd315a5d9 hci_recv_frame -EXPORT_SYMBOL net/bluetooth/bluetooth 0xd3fa4654 hci_register_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x922cf1be bt_accept_enqueue +EXPORT_SYMBOL net/bluetooth/bluetooth 0x9230d5b6 hci_conn_check_secure +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb28e3beb hci_set_hw_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb3d47865 bt_accept_dequeue +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc87bdf9f bt_sock_link +EXPORT_SYMBOL net/bluetooth/bluetooth 0xcb2f671f hci_register_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xceda6c73 bt_sock_reclassify_lock +EXPORT_SYMBOL net/bluetooth/bluetooth 0xceefbb19 bt_sock_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd0492e66 bt_sock_wait_state EXPORT_SYMBOL net/bluetooth/bluetooth 0xd7613212 bt_err_ratelimited +EXPORT_SYMBOL net/bluetooth/bluetooth 0xdabb2b21 l2cap_is_socket EXPORT_SYMBOL net/bluetooth/bluetooth 0xddacccf6 bt_warn_ratelimited -EXPORT_SYMBOL net/bluetooth/bluetooth 0xdfb5912b hci_alloc_dev_priv -EXPORT_SYMBOL net/bluetooth/bluetooth 0xe316ed27 hci_recv_diag -EXPORT_SYMBOL net/bluetooth/bluetooth 0xe5f6e5ac hci_cmd_sync -EXPORT_SYMBOL net/bluetooth/bluetooth 0xe6858a73 hci_mgmt_chan_register -EXPORT_SYMBOL net/bluetooth/bluetooth 0xe8246965 __hci_cmd_sync_ev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xec586de6 bt_sock_link -EXPORT_SYMBOL net/bluetooth/bluetooth 0xf135de9e hci_get_route -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x302b1b6b ebt_register_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x55743abb ebt_do_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x892bb58c ebt_register_template -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xc3bf8e3d ebt_unregister_table_pre_exit -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xdde4925a ebt_unregister_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xf2600856 ebt_unregister_template -EXPORT_SYMBOL net/caif/caif 0x0e39bbf5 cfcnfg_add_phy_layer +EXPORT_SYMBOL net/bluetooth/bluetooth 0xdfd4e80d bt_sock_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0xed0c7046 hci_mgmt_chan_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf2b63f42 bt_sock_stream_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf3674116 hci_set_fw_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf6607624 hci_release_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xfdeae35b hci_alloc_dev_priv +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x0755e83c ebt_register_template +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x1c745d90 ebt_unregister_template +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x505bda32 ebt_register_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x6db7c64d ebt_unregister_table_pre_exit +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xa8b686d4 ebt_unregister_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xc872e276 ebt_do_table +EXPORT_SYMBOL net/caif/caif 0x13e5579f caif_connect_client EXPORT_SYMBOL net/caif/caif 0x1446b60a caif_client_register_refcnt +EXPORT_SYMBOL net/caif/caif 0x27677eae get_cfcnfg EXPORT_SYMBOL net/caif/caif 0x2a09f713 cfpkt_fromnative EXPORT_SYMBOL net/caif/caif 0x329dbd06 cfpkt_info EXPORT_SYMBOL net/caif/caif 0x38701a7c cfcnfg_del_phy_layer EXPORT_SYMBOL net/caif/caif 0x3fa84493 cfpkt_add_head EXPORT_SYMBOL net/caif/caif 0x40babbe0 cfpkt_extr_head +EXPORT_SYMBOL net/caif/caif 0x49f48499 cfcnfg_add_phy_layer EXPORT_SYMBOL net/caif/caif 0x4a237e57 cfpkt_tonative +EXPORT_SYMBOL net/caif/caif 0x5c8c9604 caif_disconnect_client EXPORT_SYMBOL net/caif/caif 0x839ddb7b cfcnfg_set_phy_state -EXPORT_SYMBOL net/caif/caif 0x8b6f6ba0 caif_connect_client -EXPORT_SYMBOL net/caif/caif 0x9792f22e get_cfcnfg EXPORT_SYMBOL net/caif/caif 0x9e3e305d cfpkt_set_prio +EXPORT_SYMBOL net/caif/caif 0xac16da49 caif_enroll_dev EXPORT_SYMBOL net/caif/caif 0xb7b6874e caif_free_client -EXPORT_SYMBOL net/caif/caif 0xd2ec72eb caif_enroll_dev -EXPORT_SYMBOL net/caif/caif 0xd407e56a caif_disconnect_client -EXPORT_SYMBOL net/can/can 0x0c1e0e20 can_rx_register -EXPORT_SYMBOL net/can/can 0x66fb99e4 can_sock_destruct -EXPORT_SYMBOL net/can/can 0x74d0bfd8 can_rx_unregister -EXPORT_SYMBOL net/can/can 0x777d2c39 can_proto_unregister -EXPORT_SYMBOL net/can/can 0xaf6c3f29 can_proto_register -EXPORT_SYMBOL net/can/can 0xf44cf1ce can_send -EXPORT_SYMBOL net/ceph/libceph 0x022c186e osd_req_op_extent_update -EXPORT_SYMBOL net/ceph/libceph 0x04848014 ceph_msg_put -EXPORT_SYMBOL net/ceph/libceph 0x0487190d ceph_msg_data_add_bvecs -EXPORT_SYMBOL net/ceph/libceph 0x0da8c0bc ceph_con_close -EXPORT_SYMBOL net/ceph/libceph 0x12c38d82 ceph_copy_from_page_vector +EXPORT_SYMBOL net/can/can 0x24937167 can_sock_destruct +EXPORT_SYMBOL net/can/can 0x65525703 can_rx_register +EXPORT_SYMBOL net/can/can 0x74ecbd3e can_send +EXPORT_SYMBOL net/can/can 0x89ffa9bc can_rx_unregister +EXPORT_SYMBOL net/can/can 0xee3d5352 can_proto_register +EXPORT_SYMBOL net/can/can 0xf4da5509 can_proto_unregister +EXPORT_SYMBOL net/ceph/libceph 0x01deb40a ceph_parse_mon_ips +EXPORT_SYMBOL net/ceph/libceph 0x054a2b83 ceph_osdc_clear_abort_err +EXPORT_SYMBOL net/ceph/libceph 0x084bee84 osd_req_op_xattr_init +EXPORT_SYMBOL net/ceph/libceph 0x0ab71658 ceph_osdc_start_request +EXPORT_SYMBOL net/ceph/libceph 0x0dc41c04 ceph_auth_is_authenticated +EXPORT_SYMBOL net/ceph/libceph 0x161f9fcd ceph_client_gid EXPORT_SYMBOL net/ceph/libceph 0x165b1948 ceph_pagelist_free_reserve -EXPORT_SYMBOL net/ceph/libceph 0x18e95bc3 ceph_cls_unlock -EXPORT_SYMBOL net/ceph/libceph 0x19608987 ceph_parse_param +EXPORT_SYMBOL net/ceph/libceph 0x17bcb11f ceph_msg_new2 +EXPORT_SYMBOL net/ceph/libceph 0x192c1f8c ceph_con_keepalive +EXPORT_SYMBOL net/ceph/libceph 0x1a475500 ceph_monc_stop +EXPORT_SYMBOL net/ceph/libceph 0x1ad866c4 ceph_msg_data_add_pages +EXPORT_SYMBOL net/ceph/libceph 0x1d215d58 ceph_msg_get +EXPORT_SYMBOL net/ceph/libceph 0x1d4eb794 ceph_compare_options +EXPORT_SYMBOL net/ceph/libceph 0x1e05b6ab ceph_monc_renew_subs EXPORT_SYMBOL net/ceph/libceph 0x2087719e ceph_oid_copy +EXPORT_SYMBOL net/ceph/libceph 0x20a0456f ceph_copy_from_page_vector EXPORT_SYMBOL net/ceph/libceph 0x2101cbc9 ceph_oid_destroy -EXPORT_SYMBOL net/ceph/libceph 0x21ec88d4 osd_req_op_extent_osd_data_bio -EXPORT_SYMBOL net/ceph/libceph 0x2243ccf4 ceph_osdc_clear_abort_err -EXPORT_SYMBOL net/ceph/libceph 0x293a3eb2 ceph_cls_break_lock -EXPORT_SYMBOL net/ceph/libceph 0x29d0f58a __ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x238c9218 ceph_osdc_notify_ack +EXPORT_SYMBOL net/ceph/libceph 0x23a73cf4 ceph_cls_lock +EXPORT_SYMBOL net/ceph/libceph 0x253d757a ceph_msg_data_add_bio +EXPORT_SYMBOL net/ceph/libceph 0x25d46d99 ceph_zero_page_vector_range +EXPORT_SYMBOL net/ceph/libceph 0x27919188 ceph_osdc_unwatch +EXPORT_SYMBOL net/ceph/libceph 0x28ded78c ceph_auth_handle_bad_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x2a25b004 ceph_open_session EXPORT_SYMBOL net/ceph/libceph 0x2a983d26 ceph_pagelist_release -EXPORT_SYMBOL net/ceph/libceph 0x2bffb3e2 ceph_msg_data_add_pages -EXPORT_SYMBOL net/ceph/libceph 0x2cc44a28 ceph_osdc_alloc_request -EXPORT_SYMBOL net/ceph/libceph 0x2d73ff81 ceph_monc_validate_auth -EXPORT_SYMBOL net/ceph/libceph 0x30a74abb ceph_osdc_watch +EXPORT_SYMBOL net/ceph/libceph 0x2d5edf4b ceph_msg_data_add_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x2d64c905 ceph_osdc_call +EXPORT_SYMBOL net/ceph/libceph 0x2f8cb768 ceph_auth_add_authorizer_challenge +EXPORT_SYMBOL net/ceph/libceph 0x35f8bf59 ceph_cls_break_lock +EXPORT_SYMBOL net/ceph/libceph 0x36bea729 ceph_monc_wait_osdmap EXPORT_SYMBOL net/ceph/libceph 0x38f2d94e ceph_file_to_extents +EXPORT_SYMBOL net/ceph/libceph 0x393ba160 ceph_release_page_vector EXPORT_SYMBOL net/ceph/libceph 0x3bb3da25 ceph_pg_to_acting_primary EXPORT_SYMBOL net/ceph/libceph 0x3c8d7111 ceph_get_num_objects -EXPORT_SYMBOL net/ceph/libceph 0x3eeb63a1 ceph_cls_lock -EXPORT_SYMBOL net/ceph/libceph 0x413cf90d ceph_wait_for_latest_osdmap +EXPORT_SYMBOL net/ceph/libceph 0x3f509635 ceph_monc_got_map +EXPORT_SYMBOL net/ceph/libceph 0x3f96c3f6 ceph_monc_do_statfs EXPORT_SYMBOL net/ceph/libceph 0x417a9131 ceph_oloc_destroy -EXPORT_SYMBOL net/ceph/libceph 0x42ffb4b2 ceph_con_init -EXPORT_SYMBOL net/ceph/libceph 0x44503910 ceph_osdc_put_request +EXPORT_SYMBOL net/ceph/libceph 0x421a670b ceph_msg_dump +EXPORT_SYMBOL net/ceph/libceph 0x44dc6d37 osd_req_op_extent_osd_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x45509eb4 ceph_print_client_options EXPORT_SYMBOL net/ceph/libceph 0x466b85b8 libceph_compatible -EXPORT_SYMBOL net/ceph/libceph 0x46754545 ceph_osdc_new_request -EXPORT_SYMBOL net/ceph/libceph 0x4710c3cc ceph_monc_get_version_async -EXPORT_SYMBOL net/ceph/libceph 0x4a42d300 ceph_monc_init -EXPORT_SYMBOL net/ceph/libceph 0x4bc1e06a ceph_monc_get_version +EXPORT_SYMBOL net/ceph/libceph 0x485bb015 ceph_osdc_put_request +EXPORT_SYMBOL net/ceph/libceph 0x48a59038 ceph_con_send +EXPORT_SYMBOL net/ceph/libceph 0x4a4eb6ca ceph_osdc_list_watchers EXPORT_SYMBOL net/ceph/libceph 0x4cf4b0aa ceph_pg_poolid_by_name -EXPORT_SYMBOL net/ceph/libceph 0x4e2bdf32 ceph_reset_client_addr -EXPORT_SYMBOL net/ceph/libceph 0x4f522b67 osd_req_op_raw_data_in_pages EXPORT_SYMBOL net/ceph/libceph 0x50603ce3 ceph_decode_entity_addrvec EXPORT_SYMBOL net/ceph/libceph 0x53bde46a ceph_pg_pool_name_by_id -EXPORT_SYMBOL net/ceph/libceph 0x556f5b9d ceph_monc_got_map +EXPORT_SYMBOL net/ceph/libceph 0x55ec802d ceph_put_page_vector EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash -EXPORT_SYMBOL net/ceph/libceph 0x591381d0 ceph_osdc_cancel_request +EXPORT_SYMBOL net/ceph/libceph 0x58540823 ceph_osdc_copy_from EXPORT_SYMBOL net/ceph/libceph 0x5aeeee62 ceph_oid_aprintf -EXPORT_SYMBOL net/ceph/libceph 0x5fe5574a ceph_osdc_abort_requests -EXPORT_SYMBOL net/ceph/libceph 0x6065b5b0 ceph_cls_set_cookie -EXPORT_SYMBOL net/ceph/libceph 0x625f7297 ceph_msg_new2 -EXPORT_SYMBOL net/ceph/libceph 0x6357deca ceph_osdc_list_watchers +EXPORT_SYMBOL net/ceph/libceph 0x5cfef10d osd_req_op_extent_dup_last EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name -EXPORT_SYMBOL net/ceph/libceph 0x638912c2 ceph_auth_invalidate_authorizer -EXPORT_SYMBOL net/ceph/libceph 0x64a12ea1 ceph_cls_assert_locked +EXPORT_SYMBOL net/ceph/libceph 0x64ed4076 ceph_osdc_new_request EXPORT_SYMBOL net/ceph/libceph 0x6a7a38a0 ceph_pr_addr -EXPORT_SYMBOL net/ceph/libceph 0x6c598bf8 ceph_msg_dump -EXPORT_SYMBOL net/ceph/libceph 0x6d6a4bef ceph_create_client +EXPORT_SYMBOL net/ceph/libceph 0x6d5b37f3 osd_req_op_cls_request_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x6d7981a7 ceph_auth_handle_svc_reply_done +EXPORT_SYMBOL net/ceph/libceph 0x6e7b2fce ceph_osdc_get_request EXPORT_SYMBOL net/ceph/libceph 0x6f730838 ceph_object_locator_to_pg -EXPORT_SYMBOL net/ceph/libceph 0x7053a672 ceph_compare_options -EXPORT_SYMBOL net/ceph/libceph 0x70b4c99d ceph_osdc_update_epoch_barrier -EXPORT_SYMBOL net/ceph/libceph 0x72305aa8 osd_req_op_init -EXPORT_SYMBOL net/ceph/libceph 0x774a9bd5 ceph_msg_data_add_pagelist -EXPORT_SYMBOL net/ceph/libceph 0x77ebfcfd ceph_monc_wait_osdmap -EXPORT_SYMBOL net/ceph/libceph 0x78d4783d ceph_print_client_options -EXPORT_SYMBOL net/ceph/libceph 0x7b9396fa ceph_msg_get -EXPORT_SYMBOL net/ceph/libceph 0x83149f27 ceph_auth_add_authorizer_challenge -EXPORT_SYMBOL net/ceph/libceph 0x833f955e ceph_destroy_client -EXPORT_SYMBOL net/ceph/libceph 0x83808a6e osd_req_op_cls_init -EXPORT_SYMBOL net/ceph/libceph 0x84d799f2 ceph_monc_open_session -EXPORT_SYMBOL net/ceph/libceph 0x85024e68 osd_req_op_cls_request_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x72aacdea ceph_msg_new +EXPORT_SYMBOL net/ceph/libceph 0x72c1b57b __ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x73314db8 ceph_con_close +EXPORT_SYMBOL net/ceph/libceph 0x753692a9 osd_req_op_extent_osd_data_bvecs +EXPORT_SYMBOL net/ceph/libceph 0x77ca6c96 ceph_monc_init +EXPORT_SYMBOL net/ceph/libceph 0x7a9e627e ceph_monc_blocklist_add +EXPORT_SYMBOL net/ceph/libceph 0x7acf0e28 ceph_destroy_client +EXPORT_SYMBOL net/ceph/libceph 0x7b5cf238 ceph_osdc_alloc_messages +EXPORT_SYMBOL net/ceph/libceph 0x7bc4b4b5 ceph_cls_lock_info +EXPORT_SYMBOL net/ceph/libceph 0x7c7a2841 __ceph_auth_get_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x7c8a9cd2 ceph_alloc_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x815104ad ceph_monc_want_map +EXPORT_SYMBOL net/ceph/libceph 0x831026f4 ceph_wait_for_latest_osdmap +EXPORT_SYMBOL net/ceph/libceph 0x834371c9 ceph_monc_open_session +EXPORT_SYMBOL net/ceph/libceph 0x84b40f68 ceph_osdc_wait_request EXPORT_SYMBOL net/ceph/libceph 0x86fca7e4 ceph_put_snap_context -EXPORT_SYMBOL net/ceph/libceph 0x889643ee ceph_osdc_alloc_messages -EXPORT_SYMBOL net/ceph/libceph 0x8a2e0a4c ceph_client_gid -EXPORT_SYMBOL net/ceph/libceph 0x8c477984 ceph_osdc_wait_request -EXPORT_SYMBOL net/ceph/libceph 0x8fc12520 ceph_auth_get_authorizer -EXPORT_SYMBOL net/ceph/libceph 0x9091aaf1 ceph_auth_handle_svc_reply_more -EXPORT_SYMBOL net/ceph/libceph 0x913b2e49 ceph_osdc_notify -EXPORT_SYMBOL net/ceph/libceph 0x91d922c2 osd_req_op_alloc_hint_init -EXPORT_SYMBOL net/ceph/libceph 0x965ad365 ceph_con_send +EXPORT_SYMBOL net/ceph/libceph 0x8cdfcda2 ceph_osdc_watch +EXPORT_SYMBOL net/ceph/libceph 0x8d33a2c3 ceph_osdc_sync +EXPORT_SYMBOL net/ceph/libceph 0x9016eb66 ceph_osdc_flush_notifies +EXPORT_SYMBOL net/ceph/libceph 0x93a243c3 osd_req_op_alloc_hint_init +EXPORT_SYMBOL net/ceph/libceph 0x952a4f9c ceph_reset_client_addr +EXPORT_SYMBOL net/ceph/libceph 0x95dead1e ceph_cls_unlock EXPORT_SYMBOL net/ceph/libceph 0x987d3968 ceph_alloc_options -EXPORT_SYMBOL net/ceph/libceph 0x9a8a3aa1 ceph_msg_data_add_bio +EXPORT_SYMBOL net/ceph/libceph 0x9aa47240 ceph_monc_get_version_async +EXPORT_SYMBOL net/ceph/libceph 0x9ac19c83 ceph_auth_handle_svc_reply_more EXPORT_SYMBOL net/ceph/libceph 0x9bc6b539 ceph_find_or_create_string +EXPORT_SYMBOL net/ceph/libceph 0x9c5e70d8 ceph_osdc_notify EXPORT_SYMBOL net/ceph/libceph 0x9ca95932 ceph_create_snap_context -EXPORT_SYMBOL net/ceph/libceph 0x9e2356f9 ceph_auth_handle_bad_authorizer -EXPORT_SYMBOL net/ceph/libceph 0x9e305f4b ceph_osdc_sync +EXPORT_SYMBOL net/ceph/libceph 0x9cb577d6 osd_req_op_extent_init 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 0xa0c4dbb8 osd_req_op_extent_osd_data_bvec_pos -EXPORT_SYMBOL net/ceph/libceph 0xa444cb1f ceph_osdc_maybe_request_map -EXPORT_SYMBOL net/ceph/libceph 0xa50bd3b0 osd_req_op_extent_osd_data_pagelist -EXPORT_SYMBOL net/ceph/libceph 0xa5eee89a osd_req_op_extent_osd_data_pages +EXPORT_SYMBOL net/ceph/libceph 0xa1f86eee osd_req_op_raw_data_in_pages +EXPORT_SYMBOL net/ceph/libceph 0xa31a60dc ceph_cls_set_cookie +EXPORT_SYMBOL net/ceph/libceph 0xa63ca4a7 ceph_osdc_update_epoch_barrier EXPORT_SYMBOL net/ceph/libceph 0xa698f998 ceph_free_lockers -EXPORT_SYMBOL net/ceph/libceph 0xa738b732 ceph_cls_lock_info -EXPORT_SYMBOL net/ceph/libceph 0xa7a20487 osd_req_op_extent_dup_last -EXPORT_SYMBOL net/ceph/libceph 0xa87c1359 ceph_osdc_flush_notifies -EXPORT_SYMBOL net/ceph/libceph 0xa99afb08 osd_req_op_cls_request_data_pages -EXPORT_SYMBOL net/ceph/libceph 0xa9aa1525 ceph_monc_want_map -EXPORT_SYMBOL net/ceph/libceph 0xac0019e7 ceph_monc_renew_subs +EXPORT_SYMBOL net/ceph/libceph 0xab5cac04 ceph_client_addr +EXPORT_SYMBOL net/ceph/libceph 0xad29dd48 ceph_osdc_alloc_request EXPORT_SYMBOL net/ceph/libceph 0xad703657 ceph_auth_destroy_authorizer -EXPORT_SYMBOL net/ceph/libceph 0xadf512b4 ceph_con_keepalive -EXPORT_SYMBOL net/ceph/libceph 0xadfb1271 ceph_msg_new +EXPORT_SYMBOL net/ceph/libceph 0xadb5826a osd_req_op_extent_osd_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0xae3ef43b ceph_auth_get_authorizer EXPORT_SYMBOL net/ceph/libceph 0xafb8a407 ceph_msgr_flush +EXPORT_SYMBOL net/ceph/libceph 0xb2f60f6e ceph_monc_validate_auth +EXPORT_SYMBOL net/ceph/libceph 0xb42496e7 ceph_copy_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xb4d324f9 osd_req_op_cls_init EXPORT_SYMBOL net/ceph/libceph 0xb54676fa ceph_msg_type_name -EXPORT_SYMBOL net/ceph/libceph 0xb5b2e661 ceph_check_fsid -EXPORT_SYMBOL net/ceph/libceph 0xb614cfb3 ceph_copy_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xb63c5340 osd_req_op_extent_osd_data_bio EXPORT_SYMBOL net/ceph/libceph 0xb72c162e ceph_buffer_release -EXPORT_SYMBOL net/ceph/libceph 0xb8b6b270 ceph_monc_do_statfs +EXPORT_SYMBOL net/ceph/libceph 0xbb51e0d2 ceph_con_init +EXPORT_SYMBOL net/ceph/libceph 0xbc2d8306 ceph_parse_param EXPORT_SYMBOL net/ceph/libceph 0xbd2f79ae ceph_oloc_copy EXPORT_SYMBOL net/ceph/libceph 0xbe3879aa ceph_get_snap_context -EXPORT_SYMBOL net/ceph/libceph 0xbf255fee osd_req_op_extent_osd_data -EXPORT_SYMBOL net/ceph/libceph 0xc0dcffcf ceph_auth_is_authenticated -EXPORT_SYMBOL net/ceph/libceph 0xc13f0dd6 ceph_auth_verify_authorizer_reply -EXPORT_SYMBOL net/ceph/libceph 0xc2d306a6 ceph_monc_stop +EXPORT_SYMBOL net/ceph/libceph 0xbe623522 ceph_monc_get_version EXPORT_SYMBOL net/ceph/libceph 0xc366bfa1 ceph_pagelist_truncate -EXPORT_SYMBOL net/ceph/libceph 0xc3c1c5bf ceph_osdc_start_request -EXPORT_SYMBOL net/ceph/libceph 0xca2ab630 osd_req_op_cls_request_data_bvecs +EXPORT_SYMBOL net/ceph/libceph 0xc3e80e49 ceph_copy_user_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xc4d9b02d ceph_auth_verify_authorizer_reply +EXPORT_SYMBOL net/ceph/libceph 0xc73964cd osd_req_op_extent_osd_data EXPORT_SYMBOL net/ceph/libceph 0xca80437b ceph_extent_to_file -EXPORT_SYMBOL net/ceph/libceph 0xcb463d31 ceph_osdc_notify_ack -EXPORT_SYMBOL net/ceph/libceph 0xcf83490e osd_req_op_xattr_init -EXPORT_SYMBOL net/ceph/libceph 0xd278ae02 ceph_open_session -EXPORT_SYMBOL net/ceph/libceph 0xd4a8c7e3 ceph_osdc_get_request +EXPORT_SYMBOL net/ceph/libceph 0xd07fa8fa ceph_check_fsid +EXPORT_SYMBOL net/ceph/libceph 0xd329c3a6 osd_req_op_cls_request_data_pagelist EXPORT_SYMBOL net/ceph/libceph 0xd4d736db ceph_destroy_options EXPORT_SYMBOL net/ceph/libceph 0xd4eb7735 ceph_decode_entity_addr -EXPORT_SYMBOL net/ceph/libceph 0xd7778fa5 ceph_zero_page_vector_range -EXPORT_SYMBOL net/ceph/libceph 0xd7cd213e ceph_osdc_copy_from -EXPORT_SYMBOL net/ceph/libceph 0xda70e07c ceph_alloc_page_vector -EXPORT_SYMBOL net/ceph/libceph 0xdcd92354 ceph_osdc_call -EXPORT_SYMBOL net/ceph/libceph 0xde66fd80 ceph_parse_mon_ips -EXPORT_SYMBOL net/ceph/libceph 0xdeef1788 ceph_monc_blocklist_add -EXPORT_SYMBOL net/ceph/libceph 0xdf633349 ceph_release_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xd6d5ea2f ceph_osdc_cancel_request +EXPORT_SYMBOL net/ceph/libceph 0xd6fa6f8b ceph_osdc_maybe_request_map +EXPORT_SYMBOL net/ceph/libceph 0xd8fce1c0 osd_req_op_cls_response_data_pages +EXPORT_SYMBOL net/ceph/libceph 0xdafee055 ceph_cls_assert_locked +EXPORT_SYMBOL net/ceph/libceph 0xdc9c26b2 ceph_msg_data_add_bvecs EXPORT_SYMBOL net/ceph/libceph 0xdf6ef4a1 ceph_oid_printf EXPORT_SYMBOL net/ceph/libceph 0xdfc091f9 ceph_entity_type_name -EXPORT_SYMBOL net/ceph/libceph 0xdfc867b2 osd_req_op_cls_response_data_pages EXPORT_SYMBOL net/ceph/libceph 0xe022108c ceph_pg_pool_flags -EXPORT_SYMBOL net/ceph/libceph 0xe1c2584a osd_req_op_extent_init -EXPORT_SYMBOL net/ceph/libceph 0xe1dc5a61 ceph_copy_user_to_page_vector -EXPORT_SYMBOL net/ceph/libceph 0xe3334b3a ceph_con_open +EXPORT_SYMBOL net/ceph/libceph 0xe24be6a5 ceph_msg_put +EXPORT_SYMBOL net/ceph/libceph 0xe3a3f73f ceph_osdc_abort_requests EXPORT_SYMBOL net/ceph/libceph 0xe76e7226 ceph_pagelist_alloc -EXPORT_SYMBOL net/ceph/libceph 0xe89e1902 ceph_client_addr -EXPORT_SYMBOL net/ceph/libceph 0xec03a40d __ceph_auth_get_authorizer EXPORT_SYMBOL net/ceph/libceph 0xee120c03 ceph_release_string +EXPORT_SYMBOL net/ceph/libceph 0xee5558a5 ceph_auth_invalidate_authorizer EXPORT_SYMBOL net/ceph/libceph 0xeef6cfa3 ceph_iterate_extents -EXPORT_SYMBOL net/ceph/libceph 0xef1f0112 ceph_auth_handle_svc_reply_done 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 0xf146e612 ceph_osdc_unwatch -EXPORT_SYMBOL net/ceph/libceph 0xf4839e6b osd_req_op_extent_osd_data_bvecs -EXPORT_SYMBOL net/ceph/libceph 0xf922d46e ceph_put_page_vector -EXPORT_SYMBOL net/dccp/dccp_ipv4 0x6b138d07 dccp_syn_ack_timeout -EXPORT_SYMBOL net/dccp/dccp_ipv4 0x739d69b4 dccp_req_err -EXPORT_SYMBOL net/hsr/hsr 0x1393cd22 hsr_get_version -EXPORT_SYMBOL net/hsr/hsr 0x4d0bc787 is_hsr_master -EXPORT_SYMBOL net/ieee802154/ieee802154 0x50e44df4 wpan_phy_unregister -EXPORT_SYMBOL net/ieee802154/ieee802154 0x75180b73 wpan_phy_find -EXPORT_SYMBOL net/ieee802154/ieee802154 0x8fa5533e wpan_phy_for_each -EXPORT_SYMBOL net/ieee802154/ieee802154 0xc0be983b wpan_phy_new -EXPORT_SYMBOL net/ieee802154/ieee802154 0xc35f067b wpan_phy_register -EXPORT_SYMBOL net/ieee802154/ieee802154 0xf0481857 wpan_phy_free -EXPORT_SYMBOL net/ipv4/fou 0x02f516c2 __gue_build_header +EXPORT_SYMBOL net/ceph/libceph 0xf0982966 osd_req_op_extent_update +EXPORT_SYMBOL net/ceph/libceph 0xf6004bd7 osd_req_op_extent_osd_data_bvec_pos +EXPORT_SYMBOL net/ceph/libceph 0xf73c62bc osd_req_op_init +EXPORT_SYMBOL net/ceph/libceph 0xfc02bb9e ceph_create_client +EXPORT_SYMBOL net/ceph/libceph 0xfd585cd8 osd_req_op_cls_request_data_bvecs +EXPORT_SYMBOL net/ceph/libceph 0xfe36e49f ceph_con_open +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x0b4ee5b9 dccp_req_err +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x550f9b06 dccp_syn_ack_timeout +EXPORT_SYMBOL net/hsr/hsr 0x26badce4 hsr_get_version +EXPORT_SYMBOL net/hsr/hsr 0x7a9034a1 is_hsr_master +EXPORT_SYMBOL net/ieee802154/ieee802154 0x2e571ff0 wpan_phy_for_each +EXPORT_SYMBOL net/ieee802154/ieee802154 0x7b5ab11b wpan_phy_register +EXPORT_SYMBOL net/ieee802154/ieee802154 0x8649727e wpan_phy_unregister +EXPORT_SYMBOL net/ieee802154/ieee802154 0x9823f7f9 wpan_phy_new +EXPORT_SYMBOL net/ieee802154/ieee802154 0xa5ecb12a wpan_phy_find +EXPORT_SYMBOL net/ieee802154/ieee802154 0xba34e2a8 wpan_phy_free EXPORT_SYMBOL net/ipv4/fou 0x1757d1a4 fou_encap_hlen -EXPORT_SYMBOL net/ipv4/fou 0xafa53c78 __fou_build_header +EXPORT_SYMBOL net/ipv4/fou 0xa61452cf __gue_build_header +EXPORT_SYMBOL net/ipv4/fou 0xd193656e __fou_build_header EXPORT_SYMBOL net/ipv4/fou 0xf13914b3 gue_encap_hlen -EXPORT_SYMBOL net/ipv4/gre 0xb2efd3f3 gre_parse_header -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x2c5fbb3a ip_tunnel_encap_add_ops -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x40629247 ip_tunnel_get_iflink -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x7849f2db ip_tunnel_get_link_net -EXPORT_SYMBOL net/ipv4/ip_tunnel 0xfaeabaa5 ip_tunnel_encap_del_ops -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x1b8fe1e8 arpt_do_table -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x7f2c534b arpt_unregister_table_pre_exit -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x84f93df0 arpt_register_table -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xd9d5dc65 arpt_unregister_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x2291d2e2 ipt_do_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x280d99ba ipt_unregister_table_exit -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x39b035b4 ipt_register_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x59346b96 ipt_unregister_table_pre_exit -EXPORT_SYMBOL net/ipv4/tunnel4 0x36bdd5bc xfrm4_tunnel_register -EXPORT_SYMBOL net/ipv4/tunnel4 0xb4056aa9 xfrm4_tunnel_deregister -EXPORT_SYMBOL net/ipv4/udp_tunnel 0x39cbe02f udp_sock_create4 -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x1921432c ip6_tnl_rcv -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x1ee03804 ip6_tnl_xmit -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x20919fa3 ip6_tnl_change_mtu -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x6f7f5ddb ip6_tnl_encap_add_ops -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x768fb16e ip6_tnl_get_cap -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x8e6e9d64 ip6_tnl_get_link_net -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x98b87e32 ip6_tnl_get_iflink -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xed9ea853 ip6_tnl_encap_del_ops -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xf25cc400 ip6_tnl_parse_tlv_enc_lim -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x27338236 ip6t_unregister_table_pre_exit -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x3a6b2dc9 ip6t_do_table -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x510424cb ip6t_register_table -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xc595ed9a ip6t_unregister_table_exit -EXPORT_SYMBOL net/ipv6/tunnel6 0xa577696b xfrm6_tunnel_deregister -EXPORT_SYMBOL net/ipv6/tunnel6 0xee641e78 xfrm6_tunnel_register -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x62073157 xfrm6_tunnel_spi_lookup -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xb8c35c9f xfrm6_tunnel_alloc_spi -EXPORT_SYMBOL net/lapb/lapb 0x02a05e9a lapb_unregister -EXPORT_SYMBOL net/lapb/lapb 0x17fb1997 lapb_data_request -EXPORT_SYMBOL net/lapb/lapb 0x1d01ecd4 lapb_connect_request -EXPORT_SYMBOL net/lapb/lapb 0x2b0b2800 lapb_register -EXPORT_SYMBOL net/lapb/lapb 0x466dba24 lapb_data_received -EXPORT_SYMBOL net/lapb/lapb 0x6b82c83a lapb_disconnect_request -EXPORT_SYMBOL net/lapb/lapb 0x71d65555 lapb_setparms -EXPORT_SYMBOL net/lapb/lapb 0xc8293323 lapb_getparms -EXPORT_SYMBOL net/llc/llc 0x12892778 llc_sap_find -EXPORT_SYMBOL net/llc/llc 0x21f10e58 llc_set_station_handler -EXPORT_SYMBOL net/llc/llc 0x33405086 llc_sap_close +EXPORT_SYMBOL net/ipv4/gre 0x5c9a6858 gre_parse_header +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x210083cb ip_tunnel_encap_add_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x29723761 ip_tunnel_encap_del_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xb3721c7c ip_tunnel_get_iflink +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xff4a4be4 ip_tunnel_get_link_net +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x19b69f49 arpt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x491044ce arpt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x7ab3134e arpt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x7ba66bed arpt_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x65bc12d6 ipt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x66917970 ipt_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x69532b34 ipt_unregister_table_exit +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xf7e802c7 ipt_do_table +EXPORT_SYMBOL net/ipv4/tunnel4 0x7914d1ec xfrm4_tunnel_deregister +EXPORT_SYMBOL net/ipv4/tunnel4 0xe35f0f1c xfrm4_tunnel_register +EXPORT_SYMBOL net/ipv4/udp_tunnel 0xae22c776 udp_sock_create4 +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x197358e7 ip6_tnl_get_link_net +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x4fc4dff7 ip6_tnl_xmit +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x5147b8fd ip6_tnl_encap_add_ops +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x615a02d8 ip6_tnl_get_cap +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x645cce19 ip6_tnl_rcv +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x9f04612c ip6_tnl_get_iflink +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xa27d5570 ip6_tnl_parse_tlv_enc_lim +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xcc515577 ip6_tnl_change_mtu +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xd821b6ec ip6_tnl_encap_del_ops +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x33036332 ip6t_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xb7880d4d ip6t_register_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xe68a72df ip6t_unregister_table_exit +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xf6748108 ip6t_do_table +EXPORT_SYMBOL net/ipv6/tunnel6 0x0bbd12e0 xfrm6_tunnel_deregister +EXPORT_SYMBOL net/ipv6/tunnel6 0x9af47cca xfrm6_tunnel_register +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xabc94cda xfrm6_tunnel_alloc_spi +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xe74c976c xfrm6_tunnel_spi_lookup +EXPORT_SYMBOL net/lapb/lapb 0x184af3fa lapb_unregister +EXPORT_SYMBOL net/lapb/lapb 0x188b5e56 lapb_disconnect_request +EXPORT_SYMBOL net/lapb/lapb 0x3810873d lapb_data_received +EXPORT_SYMBOL net/lapb/lapb 0x4fcb4a60 lapb_register +EXPORT_SYMBOL net/lapb/lapb 0x9564e211 lapb_connect_request +EXPORT_SYMBOL net/lapb/lapb 0xac2230e6 lapb_getparms +EXPORT_SYMBOL net/lapb/lapb 0xdf24494e lapb_setparms +EXPORT_SYMBOL net/lapb/lapb 0xfde2c092 lapb_data_request +EXPORT_SYMBOL net/llc/llc 0x07fbafc4 llc_set_station_handler +EXPORT_SYMBOL net/llc/llc 0x359f844b llc_mac_hdr_init EXPORT_SYMBOL net/llc/llc 0x38b92846 llc_remove_pack -EXPORT_SYMBOL net/llc/llc 0x4356fe8a llc_sap_open +EXPORT_SYMBOL net/llc/llc 0x4d479115 llc_sap_close EXPORT_SYMBOL net/llc/llc 0x52d7b2fd llc_sap_list -EXPORT_SYMBOL net/llc/llc 0xa069d1da llc_mac_hdr_init -EXPORT_SYMBOL net/llc/llc 0xc9c4002b llc_build_and_send_ui_pkt -EXPORT_SYMBOL net/llc/llc 0xcc12d288 llc_add_pack -EXPORT_SYMBOL net/mac80211/mac80211 0x024f30f2 ieee80211_generic_frame_duration +EXPORT_SYMBOL net/llc/llc 0x54e17dc9 llc_sap_find +EXPORT_SYMBOL net/llc/llc 0x9cecc792 llc_build_and_send_ui_pkt +EXPORT_SYMBOL net/llc/llc 0xa8e013c4 llc_add_pack +EXPORT_SYMBOL net/llc/llc 0xb20a5624 llc_sap_open +EXPORT_SYMBOL net/mac80211/mac80211 0x02a0c149 __ieee80211_get_tx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x02c52611 ieee80211_chswitch_done EXPORT_SYMBOL net/mac80211/mac80211 0x063f5308 ieee80211_get_tkip_p1k_iv -EXPORT_SYMBOL net/mac80211/mac80211 0x0712c087 ieee80211_beacon_set_cntdwn -EXPORT_SYMBOL net/mac80211/mac80211 0x097ff818 ieee80211_wake_queue -EXPORT_SYMBOL net/mac80211/mac80211 0x0ab30aaf ieee80211_find_sta -EXPORT_SYMBOL net/mac80211/mac80211 0x113ce82b ieee80211_stop_rx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0x14220017 ieee80211_stop_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x07d136d7 ieee80211_txq_schedule_start +EXPORT_SYMBOL net/mac80211/mac80211 0x0982ca58 ieee80211_stop_rx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x0a175ad9 ieee80211_register_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x0bf49467 __ieee80211_create_tpt_led_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0x0e24f950 ieee80211_tx_rate_update +EXPORT_SYMBOL net/mac80211/mac80211 0x0e43e2ef ieee80211_tx_prepare_skb +EXPORT_SYMBOL net/mac80211/mac80211 0x126831e9 ieee80211_sta_set_buffered +EXPORT_SYMBOL net/mac80211/mac80211 0x16a39083 ieee80211_restart_hw EXPORT_SYMBOL net/mac80211/mac80211 0x183dcd3b ieee80211_get_key_rx_seq +EXPORT_SYMBOL net/mac80211/mac80211 0x18f75477 ieee80211_beacon_set_cntdwn +EXPORT_SYMBOL net/mac80211/mac80211 0x198fa47a ieee80211_radar_detected EXPORT_SYMBOL net/mac80211/mac80211 0x19f37f0d ieee80211_update_p2p_noa +EXPORT_SYMBOL net/mac80211/mac80211 0x1a608a32 ieee80211_find_sta EXPORT_SYMBOL net/mac80211/mac80211 0x1a66fc17 ieee80211_get_tkip_rx_p1k -EXPORT_SYMBOL net/mac80211/mac80211 0x1b8f9da4 ieee80211_queue_work -EXPORT_SYMBOL net/mac80211/mac80211 0x1de72476 __ieee80211_get_tx_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x1f5f0ef9 ieee80211_queue_delayed_work -EXPORT_SYMBOL net/mac80211/mac80211 0x258a5209 ieee80211_rate_control_register -EXPORT_SYMBOL net/mac80211/mac80211 0x266777ad ieee80211_restart_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x271e7c8e ieee80211_sched_scan_stopped -EXPORT_SYMBOL net/mac80211/mac80211 0x28e1d630 ieee80211_proberesp_get -EXPORT_SYMBOL net/mac80211/mac80211 0x2a1972db ieee80211_rx_list -EXPORT_SYMBOL net/mac80211/mac80211 0x30190f20 ieee80211_start_tx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0x38a87d7b ieee80211_txq_get_depth -EXPORT_SYMBOL net/mac80211/mac80211 0x39122f0f __ieee80211_create_tpt_led_trigger -EXPORT_SYMBOL net/mac80211/mac80211 0x3d956c32 ieee80211_txq_schedule_start -EXPORT_SYMBOL net/mac80211/mac80211 0x3f12e0cd ieee80211_send_bar -EXPORT_SYMBOL net/mac80211/mac80211 0x44b4605a ieee80211_chswitch_done -EXPORT_SYMBOL net/mac80211/mac80211 0x44ec6a80 ieee80211_iter_keys -EXPORT_SYMBOL net/mac80211/mac80211 0x45843764 ieee80211_send_eosp_nullfunc -EXPORT_SYMBOL net/mac80211/mac80211 0x478552cf ieee80211_mark_rx_ba_filtered_frames -EXPORT_SYMBOL net/mac80211/mac80211 0x4c42e905 ieee80211_nan_func_terminated -EXPORT_SYMBOL net/mac80211/mac80211 0x4cf9575c ieee80211_rx_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x4fec9a7a ieee80211_free_txskb -EXPORT_SYMBOL net/mac80211/mac80211 0x50943c29 ieee80211_ctstoself_duration -EXPORT_SYMBOL net/mac80211/mac80211 0x51a8bf04 ieee80211_get_tx_rates -EXPORT_SYMBOL net/mac80211/mac80211 0x53012d6a ieee80211_stop_tx_ba_cb_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x5424afab ieee80211_sta_eosp -EXPORT_SYMBOL net/mac80211/mac80211 0x5851c47a ieee80211_enable_rssi_reports -EXPORT_SYMBOL net/mac80211/mac80211 0x596463e3 ieee80211_txq_airtime_check -EXPORT_SYMBOL net/mac80211/mac80211 0x597b8cf4 ieee80211_free_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x5ab11b04 ieee80211_queue_stopped -EXPORT_SYMBOL net/mac80211/mac80211 0x5dfa1536 ieee80211_pspoll_get -EXPORT_SYMBOL net/mac80211/mac80211 0x5e0b2745 ieee80211_cqm_beacon_loss_notify -EXPORT_SYMBOL net/mac80211/mac80211 0x62377499 ieee80211_beacon_cntdwn_is_complete -EXPORT_SYMBOL net/mac80211/mac80211 0x62b33f91 ieee80211_sta_uapsd_trigger -EXPORT_SYMBOL net/mac80211/mac80211 0x659407bd ieee80211_alloc_hw_nm -EXPORT_SYMBOL net/mac80211/mac80211 0x673a7355 ieee80211_report_low_ack -EXPORT_SYMBOL net/mac80211/mac80211 0x68036fa2 ieee80211_disable_rssi_reports -EXPORT_SYMBOL net/mac80211/mac80211 0x688c46ea ieee80211_tx_status -EXPORT_SYMBOL net/mac80211/mac80211 0x6c839083 ieee80211_report_wowlan_wakeup -EXPORT_SYMBOL net/mac80211/mac80211 0x6f56b90b ieee80211_stop_queues -EXPORT_SYMBOL net/mac80211/mac80211 0x708d1094 ieee80211_nan_func_match -EXPORT_SYMBOL net/mac80211/mac80211 0x72cf2643 ieee80211_return_txq -EXPORT_SYMBOL net/mac80211/mac80211 0x73064fb7 ieee80211_sta_block_awake -EXPORT_SYMBOL net/mac80211/mac80211 0x73c26317 ieee80211_connection_loss -EXPORT_SYMBOL net/mac80211/mac80211 0x76497f9d ieee80211_beacon_update_cntdwn -EXPORT_SYMBOL net/mac80211/mac80211 0x7750a8c7 rate_control_set_rates -EXPORT_SYMBOL net/mac80211/mac80211 0x78c37c41 ieee80211_ap_probereq_get -EXPORT_SYMBOL net/mac80211/mac80211 0x79bb16c1 ieee80211_get_unsol_bcast_probe_resp_tmpl -EXPORT_SYMBOL net/mac80211/mac80211 0x7e5c6966 ieee80211_txq_may_transmit -EXPORT_SYMBOL net/mac80211/mac80211 0x83244fec ieee80211_tx_status_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x832f6676 ieee80211_register_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x848a865b ieee80211_nullfunc_get -EXPORT_SYMBOL net/mac80211/mac80211 0x873df781 ieee80211_manage_rx_ba_offl -EXPORT_SYMBOL net/mac80211/mac80211 0x89c03a32 ieee80211_sched_scan_results -EXPORT_SYMBOL net/mac80211/mac80211 0x8ec86e38 __ieee80211_get_radio_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x8f45e76c ieee80211_get_tkip_p2k -EXPORT_SYMBOL net/mac80211/mac80211 0x912c446d ieee80211_sta_set_buffered -EXPORT_SYMBOL net/mac80211/mac80211 0x92d342e8 ieee80211_ctstoself_get -EXPORT_SYMBOL net/mac80211/mac80211 0x937d090a ieee80211_next_txq -EXPORT_SYMBOL net/mac80211/mac80211 0x965cce06 ieee80211_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0x1cba3792 ieee80211_disconnect +EXPORT_SYMBOL net/mac80211/mac80211 0x212d61c1 ieee80211_queue_delayed_work +EXPORT_SYMBOL net/mac80211/mac80211 0x22301bbc ieee80211_beacon_get_tim +EXPORT_SYMBOL net/mac80211/mac80211 0x22d303b8 ieee80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/mac80211/mac80211 0x25003775 __ieee80211_get_radio_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x250d90b0 ieee80211_unreserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0x27f933e2 ieee80211_tx_status +EXPORT_SYMBOL net/mac80211/mac80211 0x2ae463a9 __ieee80211_get_rx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x318b23b8 ieee80211_nan_func_terminated +EXPORT_SYMBOL net/mac80211/mac80211 0x3458239c ieee80211_tx_dequeue +EXPORT_SYMBOL net/mac80211/mac80211 0x39a91a7c ieee80211_rts_get +EXPORT_SYMBOL net/mac80211/mac80211 0x39b65d88 ieee80211_rx_ba_timer_expired +EXPORT_SYMBOL net/mac80211/mac80211 0x3d4bd2ef ieee80211_txq_airtime_check +EXPORT_SYMBOL net/mac80211/mac80211 0x409ffeda ieee80211_queue_work +EXPORT_SYMBOL net/mac80211/mac80211 0x44824171 ieee80211_get_unsol_bcast_probe_resp_tmpl +EXPORT_SYMBOL net/mac80211/mac80211 0x45a25424 ieee80211_iter_keys_rcu +EXPORT_SYMBOL net/mac80211/mac80211 0x45b4d83e ieee80211_sched_scan_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0x4840c25f ieee80211_sta_block_awake +EXPORT_SYMBOL net/mac80211/mac80211 0x533ff138 ieee80211_generic_frame_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x58e3f491 ieee80211_unregister_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x5bb7ed4f ieee80211_send_bar +EXPORT_SYMBOL net/mac80211/mac80211 0x61de1328 ieee80211_manage_rx_ba_offl +EXPORT_SYMBOL net/mac80211/mac80211 0x62f3cfe6 ieee80211_rts_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x640bbf49 ieee80211_proberesp_get +EXPORT_SYMBOL net/mac80211/mac80211 0x6524eed7 ieee80211_txq_may_transmit +EXPORT_SYMBOL net/mac80211/mac80211 0x653aa667 ieee80211_wake_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x6b20e074 ieee80211_rate_control_register +EXPORT_SYMBOL net/mac80211/mac80211 0x6da47065 ieee80211_scan_completed +EXPORT_SYMBOL net/mac80211/mac80211 0x7033b5af ieee80211_get_buffered_bc +EXPORT_SYMBOL net/mac80211/mac80211 0x7538673e ieee80211_txq_get_depth +EXPORT_SYMBOL net/mac80211/mac80211 0x793bcde5 ieee80211_get_tkip_p2k +EXPORT_SYMBOL net/mac80211/mac80211 0x7db97c6e ieee80211_report_wowlan_wakeup +EXPORT_SYMBOL net/mac80211/mac80211 0x85a5c020 ieee80211_enable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0x86a89eeb ieee80211_ctstoself_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x86ac3d05 ieee80211_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0x878c57fb ieee80211_rate_control_unregister +EXPORT_SYMBOL net/mac80211/mac80211 0x8980df9e ieee80211_rx_list +EXPORT_SYMBOL net/mac80211/mac80211 0x8ad9b6d9 ieee80211_start_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x8cdeb0da ieee80211_stop_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x8ecd68ae ieee80211_sta_ps_transition +EXPORT_SYMBOL net/mac80211/mac80211 0x94257c57 ieee80211_beacon_cntdwn_is_complete +EXPORT_SYMBOL net/mac80211/mac80211 0x953023da ieee80211_start_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x96365371 ieee80211_wake_queue +EXPORT_SYMBOL net/mac80211/mac80211 0x988bc313 ieee80211_get_fils_discovery_tmpl EXPORT_SYMBOL net/mac80211/mac80211 0x991a0ca0 ieee80211_parse_p2p_noa -EXPORT_SYMBOL net/mac80211/mac80211 0x9cf26bf2 ieee80211_tx_dequeue -EXPORT_SYMBOL net/mac80211/mac80211 0x9dc69843 ieee80211_tx_rate_update -EXPORT_SYMBOL net/mac80211/mac80211 0xa80919ff ieee80211_cqm_rssi_notify -EXPORT_SYMBOL net/mac80211/mac80211 0xaae7416d ieee80211_tx_status_ext -EXPORT_SYMBOL net/mac80211/mac80211 0xaece1b72 ieee80211_reserve_tid -EXPORT_SYMBOL net/mac80211/mac80211 0xb0979e33 ieee80211_beacon_loss -EXPORT_SYMBOL net/mac80211/mac80211 0xb37ecc9c ieee80211_csa_finish -EXPORT_SYMBOL net/mac80211/mac80211 0xb3ae66a1 ieee80211_schedule_txq -EXPORT_SYMBOL net/mac80211/mac80211 0xb3e1ad2c ieee80211_tx_prepare_skb -EXPORT_SYMBOL net/mac80211/mac80211 0xb5cb88f5 __ieee80211_get_assoc_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0xb9c71ddf ieee80211_rts_duration -EXPORT_SYMBOL net/mac80211/mac80211 0xbaa0e206 ieee80211_get_buffered_bc -EXPORT_SYMBOL net/mac80211/mac80211 0xbb25a2d3 ieee80211_unregister_hw -EXPORT_SYMBOL net/mac80211/mac80211 0xbc28e680 ieee80211_disconnect -EXPORT_SYMBOL net/mac80211/mac80211 0xbc5a949f ieee80211_sta_pspoll -EXPORT_SYMBOL net/mac80211/mac80211 0xbd311faa wiphy_to_ieee80211_hw -EXPORT_SYMBOL net/mac80211/mac80211 0xbe4e8f57 ieee80211_scan_completed -EXPORT_SYMBOL net/mac80211/mac80211 0xbec0b101 ieee80211_rate_control_unregister -EXPORT_SYMBOL net/mac80211/mac80211 0xbf87b1ad ieee80211_rts_get -EXPORT_SYMBOL net/mac80211/mac80211 0xc3f27cd9 ieee80211_beacon_get_tim -EXPORT_SYMBOL net/mac80211/mac80211 0xd2c14e1c ieee80211_rx_ba_timer_expired -EXPORT_SYMBOL net/mac80211/mac80211 0xd99b482b ieee80211_wake_queues -EXPORT_SYMBOL net/mac80211/mac80211 0xdd8caaf3 ieee80211_stop_queue +EXPORT_SYMBOL net/mac80211/mac80211 0x9a4f6765 ieee80211_schedule_txq +EXPORT_SYMBOL net/mac80211/mac80211 0x9b12b0ad ieee80211_sta_eosp +EXPORT_SYMBOL net/mac80211/mac80211 0x9e917e8d ieee80211_free_txskb +EXPORT_SYMBOL net/mac80211/mac80211 0xa387e22e ieee80211_sta_register_airtime +EXPORT_SYMBOL net/mac80211/mac80211 0xa48880ea ieee80211_sta_pspoll +EXPORT_SYMBOL net/mac80211/mac80211 0xa77c1244 ieee80211_beacon_update_cntdwn +EXPORT_SYMBOL net/mac80211/mac80211 0xac6cd287 ieee80211_connection_loss +EXPORT_SYMBOL net/mac80211/mac80211 0xae5d3e3f ieee80211_disable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0xaf3b0229 ieee80211_tdls_oper_request +EXPORT_SYMBOL net/mac80211/mac80211 0xaf938721 ieee80211_stop_queues +EXPORT_SYMBOL net/mac80211/mac80211 0xaf9a4ab2 wiphy_to_ieee80211_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xb2502be8 ieee80211_ap_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0xb3e8c62e ieee80211_tx_status_ext +EXPORT_SYMBOL net/mac80211/mac80211 0xb7abca1f ieee80211_csa_finish +EXPORT_SYMBOL net/mac80211/mac80211 0xbd1f1559 rate_control_set_rates +EXPORT_SYMBOL net/mac80211/mac80211 0xbeb76fe8 ieee80211_stop_queue +EXPORT_SYMBOL net/mac80211/mac80211 0xc2f9e18b ieee80211_stop_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xc7e10675 ieee80211_rx_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xcb30db59 ieee80211_return_txq +EXPORT_SYMBOL net/mac80211/mac80211 0xcc6fb62d ieee80211_alloc_hw_nm +EXPORT_SYMBOL net/mac80211/mac80211 0xcc87fce8 ieee80211_reserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0xcd6ae72f ieee80211_send_eosp_nullfunc +EXPORT_SYMBOL net/mac80211/mac80211 0xd43e1a83 ieee80211_queue_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0xd4988e6d ieee80211_tx_status_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xd8e83ae0 ieee80211_free_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xdc71f026 ieee80211_sched_scan_results +EXPORT_SYMBOL net/mac80211/mac80211 0xe3d32068 __ieee80211_get_assoc_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xe50add06 ieee80211_get_tx_rates EXPORT_SYMBOL net/mac80211/mac80211 0xe5752af3 ieee80211_get_bssid -EXPORT_SYMBOL net/mac80211/mac80211 0xebe7c190 ieee80211_iter_keys_rcu -EXPORT_SYMBOL net/mac80211/mac80211 0xeea7d590 ieee80211_radar_detected -EXPORT_SYMBOL net/mac80211/mac80211 0xf285a5c3 ieee80211_start_tx_ba_cb_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0xf2c1b750 ieee80211_tdls_oper_request -EXPORT_SYMBOL net/mac80211/mac80211 0xf2d930dc ieee80211_beacon_get_template -EXPORT_SYMBOL net/mac80211/mac80211 0xf3ac7c1a ieee80211_get_fils_discovery_tmpl -EXPORT_SYMBOL net/mac80211/mac80211 0xf844e2a1 ieee80211_sta_ps_transition -EXPORT_SYMBOL net/mac80211/mac80211 0xf906b32e __ieee80211_get_rx_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0xf97f3888 ieee80211_rx_napi -EXPORT_SYMBOL net/mac80211/mac80211 0xfb21c942 ieee80211_unreserve_tid -EXPORT_SYMBOL net/mac80211/mac80211 0xfc30026e ieee80211_tx_status_8023 -EXPORT_SYMBOL net/mac80211/mac80211 0xfea3f441 ieee80211_sta_register_airtime -EXPORT_SYMBOL net/mac802154/mac802154 0x388416da ieee802154_xmit_complete -EXPORT_SYMBOL net/mac802154/mac802154 0x4dc86f40 ieee802154_free_hw -EXPORT_SYMBOL net/mac802154/mac802154 0x7b8c5cbd ieee802154_stop_queue -EXPORT_SYMBOL net/mac802154/mac802154 0x89ad94ea ieee802154_alloc_hw -EXPORT_SYMBOL net/mac802154/mac802154 0x8e5b0aff ieee802154_register_hw -EXPORT_SYMBOL net/mac802154/mac802154 0xb96fe3be ieee802154_rx_irqsafe -EXPORT_SYMBOL net/mac802154/mac802154 0xe42e84cc ieee802154_wake_queue -EXPORT_SYMBOL net/mac802154/mac802154 0xfc4009c9 ieee802154_unregister_hw -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x0384008e ip_vs_proto_data_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x0d802487 ip_vs_scheduler_err -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x113395d3 ip_vs_conn_put -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x1be01274 unregister_ip_vs_app -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x1ddb9bbb ip_vs_conn_new -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x23227445 ip_vs_nfct_expect_related -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x3ccc6fdb register_ip_vs_app -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x58e8b4e2 ip_vs_tcp_conn_listen -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x6d1c3d84 register_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x97176ef6 ip_vs_new_conn_out -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xaea8adbf register_ip_vs_app_inc -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xbbbb4e42 ip_vs_proto_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xcf7575ff unregister_ip_vs_scheduler +EXPORT_SYMBOL net/mac80211/mac80211 0xe93171ef ieee80211_beacon_get_template +EXPORT_SYMBOL net/mac80211/mac80211 0xe999cbb6 ieee80211_beacon_loss +EXPORT_SYMBOL net/mac80211/mac80211 0xeb715f4d ieee80211_mark_rx_ba_filtered_frames +EXPORT_SYMBOL net/mac80211/mac80211 0xedc38ef6 ieee80211_ctstoself_get +EXPORT_SYMBOL net/mac80211/mac80211 0xf2634441 ieee80211_nan_func_match +EXPORT_SYMBOL net/mac80211/mac80211 0xf3004b78 ieee80211_iter_keys +EXPORT_SYMBOL net/mac80211/mac80211 0xf330d819 ieee80211_rx_napi +EXPORT_SYMBOL net/mac80211/mac80211 0xf5505d58 ieee80211_pspoll_get +EXPORT_SYMBOL net/mac80211/mac80211 0xf8a972f9 ieee80211_sta_uapsd_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0xf8c9deae ieee80211_next_txq +EXPORT_SYMBOL net/mac80211/mac80211 0xfbc3de0f ieee80211_tx_status_8023 +EXPORT_SYMBOL net/mac80211/mac80211 0xfc903607 ieee80211_cqm_rssi_notify +EXPORT_SYMBOL net/mac80211/mac80211 0xfcc71a96 ieee80211_nullfunc_get +EXPORT_SYMBOL net/mac80211/mac80211 0xfcf112fd ieee80211_report_low_ack +EXPORT_SYMBOL net/mac802154/mac802154 0x1f288164 ieee802154_xmit_complete +EXPORT_SYMBOL net/mac802154/mac802154 0x6baa2423 ieee802154_unregister_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x7779ab44 ieee802154_register_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x8e4de26e ieee802154_stop_queue +EXPORT_SYMBOL net/mac802154/mac802154 0xc658d35d ieee802154_rx_irqsafe +EXPORT_SYMBOL net/mac802154/mac802154 0xe9f2f945 ieee802154_alloc_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xfcacf984 ieee802154_free_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xff90d62a ieee802154_wake_queue +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x0ca4261c ip_vs_conn_put +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x1a97768a register_ip_vs_app_inc +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x386c0bf9 ip_vs_proto_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x463aa5ee register_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x5d94161d ip_vs_proto_data_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x73691940 ip_vs_nfct_expect_related +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x9c687eb0 ip_vs_conn_in_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x9f12ce95 ip_vs_new_conn_out +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xa9d9fd91 ip_vs_tcp_conn_listen +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xbdba8c6f ip_vs_scheduler_err EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xda4ed13e ip_vs_conn_in_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xe11d9fb0 ip_vs_conn_out_get -EXPORT_SYMBOL net/netfilter/nf_conntrack 0xaaec3226 nf_ct_ext_add +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd8aaaa13 unregister_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xda51d853 ip_vs_conn_new +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xeb5b1738 ip_vs_conn_out_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xec9d303e register_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xfa5b3968 unregister_ip_vs_app +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x3b08a8f0 nf_ct_destroy +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x7c4d4b9f nf_ct_ext_add EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0xf2a36612 pptp_msg_name -EXPORT_SYMBOL net/netfilter/nf_nat 0x5e3d39b4 __nf_nat_mangle_tcp_packet -EXPORT_SYMBOL net/netfilter/nf_nat 0xa6eac21d nf_nat_setup_info -EXPORT_SYMBOL net/netfilter/nf_nat 0xb70d0c38 nf_nat_mangle_udp_packet -EXPORT_SYMBOL net/netfilter/nf_nat 0xd247eac2 nf_nat_follow_master +EXPORT_SYMBOL net/netfilter/nf_nat 0x1cb256d6 __nf_nat_mangle_tcp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0x74d6a3a3 nf_nat_mangle_udp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0x7697011c nf_nat_setup_info +EXPORT_SYMBOL net/netfilter/nf_nat 0x9c2d8593 nf_nat_follow_master EXPORT_SYMBOL net/netfilter/nft_fib 0xb3c36947 nft_fib_policy EXPORT_SYMBOL net/netfilter/x_tables 0x0d7f5fcd xt_alloc_entry_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0x0d8e2bd5 xt_register_target -EXPORT_SYMBOL net/netfilter/x_tables 0x29738970 xt_unregister_targets -EXPORT_SYMBOL net/netfilter/x_tables 0x36a3c7b9 xt_unregister_target +EXPORT_SYMBOL net/netfilter/x_tables 0x1a8052eb xt_unregister_target +EXPORT_SYMBOL net/netfilter/x_tables 0x33ca895a xt_register_match EXPORT_SYMBOL net/netfilter/x_tables 0x3bf9d084 xt_check_table_hooks -EXPORT_SYMBOL net/netfilter/x_tables 0x3d1098e9 xt_register_match EXPORT_SYMBOL net/netfilter/x_tables 0x48012e28 xt_check_proc_name EXPORT_SYMBOL net/netfilter/x_tables 0x50873741 xt_compat_init_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0x6472918c xt_register_targets -EXPORT_SYMBOL net/netfilter/x_tables 0x6ad27b10 xt_find_table -EXPORT_SYMBOL net/netfilter/x_tables 0x7f4a0792 xt_unregister_matches +EXPORT_SYMBOL net/netfilter/x_tables 0x58645fe6 xt_unregister_matches +EXPORT_SYMBOL net/netfilter/x_tables 0x5f210b50 xt_unregister_targets +EXPORT_SYMBOL net/netfilter/x_tables 0x72d80c58 xt_register_matches +EXPORT_SYMBOL net/netfilter/x_tables 0x73b41d49 xt_find_table +EXPORT_SYMBOL net/netfilter/x_tables 0x73d22988 xt_register_targets EXPORT_SYMBOL net/netfilter/x_tables 0x977fd4bf xt_alloc_table_info -EXPORT_SYMBOL net/netfilter/x_tables 0x985dd281 xt_unregister_match EXPORT_SYMBOL net/netfilter/x_tables 0xa25fc115 xt_compat_check_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0xb5677517 xt_unregister_match +EXPORT_SYMBOL net/netfilter/x_tables 0xc18e16e0 xt_find_match EXPORT_SYMBOL net/netfilter/x_tables 0xcb3e91cc xt_counters_alloc -EXPORT_SYMBOL net/netfilter/x_tables 0xcc33a3f2 xt_register_matches -EXPORT_SYMBOL net/netfilter/x_tables 0xd3e4dd36 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 0xeb5c5b39 xt_register_target EXPORT_SYMBOL net/netfilter/x_tables 0xfef779fa xt_find_jump_offset -EXPORT_SYMBOL net/nfc/hci/hci 0x005b19a3 nfc_hci_reset_pipes -EXPORT_SYMBOL net/nfc/hci/hci 0x036a9bcc nfc_hci_disconnect_gate -EXPORT_SYMBOL net/nfc/hci/hci 0x35106e48 nfc_hci_register_device -EXPORT_SYMBOL net/nfc/hci/hci 0x52112e97 nfc_hci_get_param -EXPORT_SYMBOL net/nfc/hci/hci 0x5675073d nfc_hci_driver_failure -EXPORT_SYMBOL net/nfc/hci/hci 0x63b531c1 nfc_llc_stop -EXPORT_SYMBOL net/nfc/hci/hci 0x6536e934 nfc_hci_connect_gate -EXPORT_SYMBOL net/nfc/hci/hci 0x665251ed nfc_llc_start -EXPORT_SYMBOL net/nfc/hci/hci 0x72da7dc8 nfc_hci_send_cmd_async +EXPORT_SYMBOL net/nfc/hci/hci 0x08592656 nfc_hci_disconnect_all_gates +EXPORT_SYMBOL net/nfc/hci/hci 0x1b9f2bc3 nfc_hci_connect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0x1ced8b76 nfc_hci_free_device +EXPORT_SYMBOL net/nfc/hci/hci 0x32a75d70 nfc_hci_set_param +EXPORT_SYMBOL net/nfc/hci/hci 0x3e5ded6f nfc_hci_allocate_device +EXPORT_SYMBOL net/nfc/hci/hci 0x41d60f33 nfc_hci_unregister_device +EXPORT_SYMBOL net/nfc/hci/hci 0x46c07d4a nfc_hci_get_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0x4c7af2c2 nfc_hci_reset_pipes_per_host +EXPORT_SYMBOL net/nfc/hci/hci 0x591e5e1b nfc_llc_start +EXPORT_SYMBOL net/nfc/hci/hci 0x596527b4 nfc_hci_reset_pipes +EXPORT_SYMBOL net/nfc/hci/hci 0x5bee882a nfc_hci_send_cmd_async +EXPORT_SYMBOL net/nfc/hci/hci 0x61caf2b5 nfc_hci_recv_frame +EXPORT_SYMBOL net/nfc/hci/hci 0x630b72ed nfc_hci_disconnect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0x6b4486f2 nfc_hci_target_discovered EXPORT_SYMBOL net/nfc/hci/hci 0x74fe3670 nfc_hci_result_to_errno -EXPORT_SYMBOL net/nfc/hci/hci 0x799e8fde nfc_hci_free_device -EXPORT_SYMBOL net/nfc/hci/hci 0xa600d2a3 nfc_hci_allocate_device -EXPORT_SYMBOL net/nfc/hci/hci 0xafa83ced nfc_hci_recv_frame -EXPORT_SYMBOL net/nfc/hci/hci 0xb2f11f78 nfc_hci_set_clientdata -EXPORT_SYMBOL net/nfc/hci/hci 0xb37e7bd3 nfc_hci_disconnect_all_gates -EXPORT_SYMBOL net/nfc/hci/hci 0xbb2df116 nfc_hci_get_clientdata -EXPORT_SYMBOL net/nfc/hci/hci 0xbd9192e6 nfc_hci_target_discovered -EXPORT_SYMBOL net/nfc/hci/hci 0xc859eaa1 nfc_hci_reset_pipes_per_host -EXPORT_SYMBOL net/nfc/hci/hci 0xce8466fb nfc_hci_send_cmd -EXPORT_SYMBOL net/nfc/hci/hci 0xd4c5a9eb nfc_hci_send_event +EXPORT_SYMBOL net/nfc/hci/hci 0x8049ffd7 nfc_hci_driver_failure +EXPORT_SYMBOL net/nfc/hci/hci 0x8769e170 nfc_hci_send_event +EXPORT_SYMBOL net/nfc/hci/hci 0x96e12fe6 nfc_hci_get_param +EXPORT_SYMBOL net/nfc/hci/hci 0x998e5b68 nfc_hci_register_device +EXPORT_SYMBOL net/nfc/hci/hci 0xc300b1a4 nfc_hci_set_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0xcc718ae9 nfc_llc_stop EXPORT_SYMBOL net/nfc/hci/hci 0xdd231c55 nfc_hci_sak_to_protocol -EXPORT_SYMBOL net/nfc/hci/hci 0xe9c3efc3 nfc_hci_set_param -EXPORT_SYMBOL net/nfc/hci/hci 0xeb1f2154 nfc_hci_unregister_device -EXPORT_SYMBOL net/nfc/nci/nci 0x10021bde nci_core_reset -EXPORT_SYMBOL net/nfc/nci/nci 0x11de9c11 nci_core_conn_close -EXPORT_SYMBOL net/nfc/nci/nci 0x3a016f16 nci_core_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0x3d9266aa nci_nfcee_mode_set -EXPORT_SYMBOL net/nfc/nci/nci 0x42b0a8f9 nci_hci_send_event -EXPORT_SYMBOL net/nfc/nci/nci 0x500dbb6c nci_hci_send_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0x5819cdcb nci_hci_get_param -EXPORT_SYMBOL net/nfc/nci/nci 0x5b878613 nci_hci_dev_session_init -EXPORT_SYMBOL net/nfc/nci/nci 0x5f285efa nci_send_frame -EXPORT_SYMBOL net/nfc/nci/nci 0x87bcd2a4 nci_hci_set_param -EXPORT_SYMBOL net/nfc/nci/nci 0x9057a407 nci_core_init -EXPORT_SYMBOL net/nfc/nci/nci 0x980558ab nci_unregister_device -EXPORT_SYMBOL net/nfc/nci/nci 0x9e4a6ec1 nci_get_conn_info_by_dest_type_params -EXPORT_SYMBOL net/nfc/nci/nci 0xa2e30b83 nci_free_device -EXPORT_SYMBOL net/nfc/nci/nci 0xa7261d25 nci_set_config -EXPORT_SYMBOL net/nfc/nci/nci 0xa8806ece nci_hci_clear_all_pipes -EXPORT_SYMBOL net/nfc/nci/nci 0xac3ad7cb nci_send_data -EXPORT_SYMBOL net/nfc/nci/nci 0xb6956169 nci_send_cmd +EXPORT_SYMBOL net/nfc/hci/hci 0xf66b52fd nfc_hci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x080e43ff nci_free_device +EXPORT_SYMBOL net/nfc/nci/nci 0x09e112dc nci_req_complete +EXPORT_SYMBOL net/nfc/nci/nci 0x0c531338 nci_hci_clear_all_pipes +EXPORT_SYMBOL net/nfc/nci/nci 0x11048be0 nci_recv_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x184e5cd3 nci_core_init +EXPORT_SYMBOL net/nfc/nci/nci 0x1cd13fa0 nci_core_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x25b33d1e nci_hci_get_param +EXPORT_SYMBOL net/nfc/nci/nci 0x32d14f68 nci_send_data +EXPORT_SYMBOL net/nfc/nci/nci 0x3905c1a3 nci_nfcee_discover +EXPORT_SYMBOL net/nfc/nci/nci 0x40b40a63 nci_hci_set_param +EXPORT_SYMBOL net/nfc/nci/nci 0x4ae15f76 nci_set_config +EXPORT_SYMBOL net/nfc/nci/nci 0x4c02b260 nci_core_reset +EXPORT_SYMBOL net/nfc/nci/nci 0x505c124d nci_register_device +EXPORT_SYMBOL net/nfc/nci/nci 0x51347ec8 nci_hci_connect_gate +EXPORT_SYMBOL net/nfc/nci/nci 0x5533dba4 nci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x617b4627 nci_nfcc_loopback +EXPORT_SYMBOL net/nfc/nci/nci 0x6730d89a nci_hci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x6a542f2b nci_get_conn_info_by_dest_type_params +EXPORT_SYMBOL net/nfc/nci/nci 0x72a95ce2 nci_prop_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x812b8496 nci_core_conn_create +EXPORT_SYMBOL net/nfc/nci/nci 0x836687ad nci_conn_max_data_pkt_payload_size +EXPORT_SYMBOL net/nfc/nci/nci 0x9b59b754 nci_nfcee_mode_set +EXPORT_SYMBOL net/nfc/nci/nci 0xaad045d2 nci_hci_send_event +EXPORT_SYMBOL net/nfc/nci/nci 0xb4c61e2f nci_core_conn_close EXPORT_SYMBOL net/nfc/nci/nci 0xba490602 nci_to_errno -EXPORT_SYMBOL net/nfc/nci/nci 0xbb50b1f0 nci_register_device -EXPORT_SYMBOL net/nfc/nci/nci 0xc1c5a47a nci_hci_open_pipe -EXPORT_SYMBOL net/nfc/nci/nci 0xc8ff0716 nci_core_conn_create -EXPORT_SYMBOL net/nfc/nci/nci 0xcdb9100c nci_allocate_device -EXPORT_SYMBOL net/nfc/nci/nci 0xd812a474 nci_hci_connect_gate -EXPORT_SYMBOL net/nfc/nci/nci 0xe1d54ca7 nci_nfcee_discover -EXPORT_SYMBOL net/nfc/nci/nci 0xe52657bc nci_req_complete -EXPORT_SYMBOL net/nfc/nci/nci 0xef5eefa5 nci_prop_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0xefb3e523 nci_recv_frame -EXPORT_SYMBOL net/nfc/nci/nci 0xf452b6a5 nci_conn_max_data_pkt_payload_size -EXPORT_SYMBOL net/nfc/nci/nci 0xfda20dad nci_nfcc_loopback -EXPORT_SYMBOL net/nfc/nfc 0x0e7b8aca nfc_class -EXPORT_SYMBOL net/nfc/nfc 0x141a90ab nfc_tm_activated -EXPORT_SYMBOL net/nfc/nfc 0x1e6ee191 nfc_find_se -EXPORT_SYMBOL net/nfc/nfc 0x37da147c nfc_vendor_cmd_reply -EXPORT_SYMBOL net/nfc/nfc 0x41015eea nfc_unregister_device -EXPORT_SYMBOL net/nfc/nfc 0x4a33b15d nfc_remove_se -EXPORT_SYMBOL net/nfc/nfc 0x5bb5c9ce nfc_driver_failure -EXPORT_SYMBOL net/nfc/nfc 0x651244d3 nfc_se_transaction -EXPORT_SYMBOL net/nfc/nfc 0x6a69db7f nfc_get_local_general_bytes -EXPORT_SYMBOL net/nfc/nfc 0x752c2304 nfc_proto_register -EXPORT_SYMBOL net/nfc/nfc 0x7729433a nfc_register_device -EXPORT_SYMBOL net/nfc/nfc 0x7b894b79 nfc_proto_unregister -EXPORT_SYMBOL net/nfc/nfc 0x7d86c1f1 nfc_set_remote_general_bytes -EXPORT_SYMBOL net/nfc/nfc 0x813902a2 nfc_targets_found -EXPORT_SYMBOL net/nfc/nfc 0x81c0fb32 nfc_dep_link_is_up -EXPORT_SYMBOL net/nfc/nfc 0x9d19a781 nfc_fw_download_done -EXPORT_SYMBOL net/nfc/nfc 0x9d38be22 nfc_allocate_device -EXPORT_SYMBOL net/nfc/nfc 0xbc4976a5 nfc_send_to_raw_sock -EXPORT_SYMBOL net/nfc/nfc 0xcaf246ca nfc_alloc_recv_skb -EXPORT_SYMBOL net/nfc/nfc 0xd3c2a813 nfc_tm_data_received -EXPORT_SYMBOL net/nfc/nfc 0xdacdcb8f nfc_tm_deactivated -EXPORT_SYMBOL net/nfc/nfc 0xe8112ce2 nfc_target_lost -EXPORT_SYMBOL net/nfc/nfc 0xf3e7b41a nfc_add_se -EXPORT_SYMBOL net/nfc/nfc 0xf8cb748a nfc_se_connectivity -EXPORT_SYMBOL net/nfc/nfc 0xff20ac32 __nfc_alloc_vendor_cmd_reply_skb -EXPORT_SYMBOL net/nfc/nfc_digital 0x345a7833 nfc_digital_unregister_device -EXPORT_SYMBOL net/nfc/nfc_digital 0x438a27fb nfc_digital_register_device -EXPORT_SYMBOL net/nfc/nfc_digital 0xa300d687 nfc_digital_free_device -EXPORT_SYMBOL net/nfc/nfc_digital 0xc41fab2b nfc_digital_allocate_device -EXPORT_SYMBOL net/phonet/phonet 0x0a53923d pn_sock_get_port -EXPORT_SYMBOL net/phonet/phonet 0x176bf8c7 pn_skb_send -EXPORT_SYMBOL net/phonet/phonet 0x28cd5d5d phonet_proto_unregister -EXPORT_SYMBOL net/phonet/phonet 0x529044bc phonet_stream_ops -EXPORT_SYMBOL net/phonet/phonet 0x6d7ec715 phonet_header_ops -EXPORT_SYMBOL net/phonet/phonet 0x7e29ed9d phonet_proto_register -EXPORT_SYMBOL net/phonet/phonet 0xc3072e0b pn_sock_hash -EXPORT_SYMBOL net/phonet/phonet 0xda19d068 pn_sock_unhash -EXPORT_SYMBOL net/rxrpc/rxrpc 0x2b920ab7 rxrpc_sock_set_min_security_level -EXPORT_SYMBOL net/rxrpc/rxrpc 0x3155e260 rxrpc_kernel_abort_call +EXPORT_SYMBOL net/nfc/nci/nci 0xcdf051bc nci_allocate_device +EXPORT_SYMBOL net/nfc/nci/nci 0xcf8b493b nci_hci_dev_session_init +EXPORT_SYMBOL net/nfc/nci/nci 0xdc82e73e nci_hci_open_pipe +EXPORT_SYMBOL net/nfc/nci/nci 0xdf1c52bc nci_send_frame +EXPORT_SYMBOL net/nfc/nci/nci 0xe06eb9bd nci_unregister_device +EXPORT_SYMBOL net/nfc/nfc 0x0d041bae nfc_tm_deactivated +EXPORT_SYMBOL net/nfc/nfc 0x189963a5 nfc_unregister_device +EXPORT_SYMBOL net/nfc/nfc 0x1b625fcf nfc_se_transaction +EXPORT_SYMBOL net/nfc/nfc 0x1beffcb3 nfc_proto_unregister +EXPORT_SYMBOL net/nfc/nfc 0x3362f94f nfc_vendor_cmd_reply +EXPORT_SYMBOL net/nfc/nfc 0x33fcb997 nfc_fw_download_done +EXPORT_SYMBOL net/nfc/nfc 0x3759f745 nfc_driver_failure +EXPORT_SYMBOL net/nfc/nfc 0x4de153b4 nfc_get_local_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0x53741105 nfc_tm_activated +EXPORT_SYMBOL net/nfc/nfc 0x6a4b7801 nfc_dep_link_is_up +EXPORT_SYMBOL net/nfc/nfc 0x87f27cfb nfc_set_remote_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0x95cf937f __nfc_alloc_vendor_cmd_reply_skb +EXPORT_SYMBOL net/nfc/nfc 0x9b79a8b5 nfc_se_connectivity +EXPORT_SYMBOL net/nfc/nfc 0xa6494231 nfc_alloc_recv_skb +EXPORT_SYMBOL net/nfc/nfc 0xa6b543ec nfc_send_to_raw_sock +EXPORT_SYMBOL net/nfc/nfc 0xa6ef0974 nfc_remove_se +EXPORT_SYMBOL net/nfc/nfc 0xa99b5ba6 nfc_find_se +EXPORT_SYMBOL net/nfc/nfc 0xaa4dff16 nfc_register_device +EXPORT_SYMBOL net/nfc/nfc 0xb04c2ff8 nfc_targets_found +EXPORT_SYMBOL net/nfc/nfc 0xb23b7ba2 nfc_proto_register +EXPORT_SYMBOL net/nfc/nfc 0xc175455e nfc_class +EXPORT_SYMBOL net/nfc/nfc 0xd1a5df85 nfc_allocate_device +EXPORT_SYMBOL net/nfc/nfc 0xdce893a8 nfc_add_se +EXPORT_SYMBOL net/nfc/nfc 0xe8c3c32f nfc_tm_data_received +EXPORT_SYMBOL net/nfc/nfc 0xfce6324f nfc_target_lost +EXPORT_SYMBOL net/nfc/nfc_digital 0x2efc08db nfc_digital_register_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x68e58018 nfc_digital_free_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x6d33fd82 nfc_digital_unregister_device +EXPORT_SYMBOL net/nfc/nfc_digital 0xe904049a nfc_digital_allocate_device +EXPORT_SYMBOL net/phonet/phonet 0x7eeb1731 phonet_stream_ops +EXPORT_SYMBOL net/phonet/phonet 0x8bb40092 pn_sock_hash +EXPORT_SYMBOL net/phonet/phonet 0x9e859556 pn_sock_get_port +EXPORT_SYMBOL net/phonet/phonet 0xce5e465f phonet_header_ops +EXPORT_SYMBOL net/phonet/phonet 0xd325a86c pn_skb_send +EXPORT_SYMBOL net/phonet/phonet 0xe7089b9f phonet_proto_register +EXPORT_SYMBOL net/phonet/phonet 0xf13ae7a6 pn_sock_unhash +EXPORT_SYMBOL net/phonet/phonet 0xfdfc7142 phonet_proto_unregister +EXPORT_SYMBOL net/rxrpc/rxrpc 0x0a62be91 rxrpc_kernel_set_tx_length +EXPORT_SYMBOL net/rxrpc/rxrpc 0x168ccb10 rxrpc_kernel_set_max_life +EXPORT_SYMBOL net/rxrpc/rxrpc 0x16bfc23c rxrpc_kernel_send_data +EXPORT_SYMBOL net/rxrpc/rxrpc 0x1784c20d rxrpc_kernel_get_peer +EXPORT_SYMBOL net/rxrpc/rxrpc 0x24b78489 rxrpc_kernel_abort_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0x288e7c1e rxrpc_kernel_begin_call EXPORT_SYMBOL net/rxrpc/rxrpc 0x31bf3ca3 rxrpc_debug_id -EXPORT_SYMBOL net/rxrpc/rxrpc 0x45f3dc98 rxrpc_kernel_charge_accept -EXPORT_SYMBOL net/rxrpc/rxrpc 0x48616046 rxrpc_kernel_send_data -EXPORT_SYMBOL net/rxrpc/rxrpc 0x55c3fb89 rxrpc_kernel_get_srtt -EXPORT_SYMBOL net/rxrpc/rxrpc 0x7019c752 rxrpc_kernel_get_reply_time -EXPORT_SYMBOL net/rxrpc/rxrpc 0x75a34927 rxrpc_kernel_get_peer -EXPORT_SYMBOL net/rxrpc/rxrpc 0x7c17f036 rxrpc_kernel_new_call_notification -EXPORT_SYMBOL net/rxrpc/rxrpc 0x8bf3d488 rxrpc_kernel_get_epoch -EXPORT_SYMBOL net/rxrpc/rxrpc 0xa4ea6539 rxrpc_kernel_check_life -EXPORT_SYMBOL net/rxrpc/rxrpc 0xbba736d3 rxrpc_get_null_key -EXPORT_SYMBOL net/rxrpc/rxrpc 0xbe4b8fd5 rxrpc_kernel_end_call -EXPORT_SYMBOL net/rxrpc/rxrpc 0xc5cb460d rxrpc_kernel_recv_data -EXPORT_SYMBOL net/rxrpc/rxrpc 0xc81e8414 key_type_rxrpc -EXPORT_SYMBOL net/rxrpc/rxrpc 0xd7cb6855 rxrpc_kernel_set_max_life -EXPORT_SYMBOL net/rxrpc/rxrpc 0xe09a67ca rxrpc_kernel_begin_call -EXPORT_SYMBOL net/rxrpc/rxrpc 0xe8e62b9f rxrpc_get_server_data_key -EXPORT_SYMBOL net/rxrpc/rxrpc 0xf0576cbf rxrpc_kernel_set_tx_length -EXPORT_SYMBOL net/sctp/sctp 0x63a0a00c sctp_do_peeloff -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xcce3512b gss_mech_put -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xe6eacc03 gss_mech_get -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xfe7e93f0 gss_pseudoflavor_to_service -EXPORT_SYMBOL net/sunrpc/sunrpc 0x33f849c3 get_srcport -EXPORT_SYMBOL net/sunrpc/sunrpc 0x6988f588 xdr_truncate_encode -EXPORT_SYMBOL net/sunrpc/sunrpc 0x8441203a svc_pool_stats_open -EXPORT_SYMBOL net/sunrpc/sunrpc 0xd558a9f3 xdr_restrict_buflen -EXPORT_SYMBOL net/tipc/tipc 0x2d341e1c tipc_dump_start -EXPORT_SYMBOL net/tipc/tipc 0x6c2b17d4 tipc_dump_done -EXPORT_SYMBOL net/tipc/tipc 0x7ada8836 tipc_sk_fill_sock_diag -EXPORT_SYMBOL net/tipc/tipc 0xd6f4222e tipc_nl_sk_walk -EXPORT_SYMBOL net/tls/tls 0x326f97da tls_get_record -EXPORT_SYMBOL net/wireless/cfg80211 0x001a9039 __cfg80211_alloc_reply_skb -EXPORT_SYMBOL net/wireless/cfg80211 0x02816499 cfg80211_chandef_usable -EXPORT_SYMBOL net/wireless/cfg80211 0x05e109ce cfg80211_radar_event -EXPORT_SYMBOL net/wireless/cfg80211 0x0829ca74 cfg80211_rx_mgmt_khz -EXPORT_SYMBOL net/wireless/cfg80211 0x08633dcb cfg80211_check_combinations -EXPORT_SYMBOL net/wireless/cfg80211 0x0b4c1b63 cfg80211_crit_proto_stopped -EXPORT_SYMBOL net/wireless/cfg80211 0x0b7ad9f1 cfg80211_ibss_joined -EXPORT_SYMBOL net/wireless/cfg80211 0x0ec55b52 cfg80211_rx_assoc_resp -EXPORT_SYMBOL net/wireless/cfg80211 0x1003352d cfg80211_any_usable_channels +EXPORT_SYMBOL net/rxrpc/rxrpc 0x34705e3c rxrpc_kernel_recv_data +EXPORT_SYMBOL net/rxrpc/rxrpc 0x3e5b7c2a rxrpc_kernel_check_life +EXPORT_SYMBOL net/rxrpc/rxrpc 0x54105b28 rxrpc_kernel_get_reply_time +EXPORT_SYMBOL net/rxrpc/rxrpc 0x7016cef7 rxrpc_kernel_charge_accept +EXPORT_SYMBOL net/rxrpc/rxrpc 0x8191bfa9 rxrpc_sock_set_min_security_level +EXPORT_SYMBOL net/rxrpc/rxrpc 0xa02485b8 rxrpc_kernel_get_srtt +EXPORT_SYMBOL net/rxrpc/rxrpc 0xb4efacf3 rxrpc_get_null_key +EXPORT_SYMBOL net/rxrpc/rxrpc 0xcf236f12 rxrpc_kernel_get_epoch +EXPORT_SYMBOL net/rxrpc/rxrpc 0xd7b0fc13 rxrpc_kernel_new_call_notification +EXPORT_SYMBOL net/rxrpc/rxrpc 0xe9ff59fc rxrpc_get_server_data_key +EXPORT_SYMBOL net/rxrpc/rxrpc 0xea05f8b4 key_type_rxrpc +EXPORT_SYMBOL net/rxrpc/rxrpc 0xee6653fc rxrpc_kernel_end_call +EXPORT_SYMBOL net/sctp/sctp 0x752d4a37 sctp_do_peeloff +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x227a976a gss_mech_get +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x40f95c26 gss_pseudoflavor_to_service +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xfdfa2db1 gss_mech_put +EXPORT_SYMBOL net/sunrpc/sunrpc 0x3cd203be xdr_truncate_encode +EXPORT_SYMBOL net/sunrpc/sunrpc 0x9c64dbca svc_pool_stats_open +EXPORT_SYMBOL net/sunrpc/sunrpc 0xae09b403 xdr_restrict_buflen +EXPORT_SYMBOL net/sunrpc/sunrpc 0xd471438e get_srcport +EXPORT_SYMBOL net/tipc/tipc 0x63d6259f tipc_sk_fill_sock_diag +EXPORT_SYMBOL net/tipc/tipc 0x7f62428b tipc_dump_start +EXPORT_SYMBOL net/tipc/tipc 0x97b70b07 tipc_dump_done +EXPORT_SYMBOL net/tipc/tipc 0x9bcad884 tipc_nl_sk_walk +EXPORT_SYMBOL net/tls/tls 0x1cc22352 tls_get_record +EXPORT_SYMBOL net/wireless/cfg80211 0x07f39e03 cfg80211_rx_unexpected_4addr_frame +EXPORT_SYMBOL net/wireless/cfg80211 0x10c8c81f cfg80211_rx_control_port EXPORT_SYMBOL net/wireless/cfg80211 0x117aca91 cfg80211_merge_profile -EXPORT_SYMBOL net/wireless/cfg80211 0x1244f24d cfg80211_bss_iter EXPORT_SYMBOL net/wireless/cfg80211 0x15a37cf3 cfg80211_calculate_bitrate -EXPORT_SYMBOL net/wireless/cfg80211 0x15f47f6c cfg80211_rx_spurious_frame -EXPORT_SYMBOL net/wireless/cfg80211 0x15f83301 cfg80211_tx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x185e5e4b cfg80211_probe_status EXPORT_SYMBOL net/wireless/cfg80211 0x1879fcbd bridge_tunnel_header -EXPORT_SYMBOL net/wireless/cfg80211 0x1a42301f cfg80211_rx_unexpected_4addr_frame +EXPORT_SYMBOL net/wireless/cfg80211 0x1915d014 cfg80211_ibss_joined +EXPORT_SYMBOL net/wireless/cfg80211 0x19557135 cfg80211_bss_flush +EXPORT_SYMBOL net/wireless/cfg80211 0x1a0c9ed3 cfg80211_mgmt_tx_status EXPORT_SYMBOL net/wireless/cfg80211 0x1ce2497f reg_query_regdb_wmm -EXPORT_SYMBOL net/wireless/cfg80211 0x21298f13 cfg80211_mgmt_tx_status +EXPORT_SYMBOL net/wireless/cfg80211 0x1e6c2186 cfg80211_report_obss_beacon_khz +EXPORT_SYMBOL net/wireless/cfg80211 0x214c7214 ieee80211_get_hdrlen_from_skb EXPORT_SYMBOL net/wireless/cfg80211 0x2310adee ieee80211_bss_get_elem -EXPORT_SYMBOL net/wireless/cfg80211 0x26ceabfc cfg80211_probe_status EXPORT_SYMBOL net/wireless/cfg80211 0x275269b3 ieee80211_ie_split_ric +EXPORT_SYMBOL net/wireless/cfg80211 0x27aea44d cfg80211_roamed EXPORT_SYMBOL net/wireless/cfg80211 0x27efff25 ieee80211_s1g_channel_width EXPORT_SYMBOL net/wireless/cfg80211 0x2a5d816f cfg80211_chandef_valid -EXPORT_SYMBOL net/wireless/cfg80211 0x2adf05f9 cfg80211_unregister_wdev -EXPORT_SYMBOL net/wireless/cfg80211 0x2de4c4aa ieee80211_get_num_supported_channels -EXPORT_SYMBOL net/wireless/cfg80211 0x3060552e cfg80211_external_auth_request -EXPORT_SYMBOL net/wireless/cfg80211 0x35663454 cfg80211_ref_bss -EXPORT_SYMBOL net/wireless/cfg80211 0x35f1d841 cfg80211_del_sta_sinfo -EXPORT_SYMBOL net/wireless/cfg80211 0x3690c5e4 cfg80211_rx_control_port -EXPORT_SYMBOL net/wireless/cfg80211 0x37aa3b08 cfg80211_nan_func_terminated -EXPORT_SYMBOL net/wireless/cfg80211 0x382d198b cfg80211_inform_bss_data +EXPORT_SYMBOL net/wireless/cfg80211 0x2f37a742 cfg80211_rx_spurious_frame +EXPORT_SYMBOL net/wireless/cfg80211 0x2f4cfc33 cfg80211_iftype_allowed +EXPORT_SYMBOL net/wireless/cfg80211 0x336248c6 cfg80211_reg_can_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0x373c87fe __cfg80211_send_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x376c1ac8 cfg80211_chandef_usable +EXPORT_SYMBOL net/wireless/cfg80211 0x3790956c cfg80211_inform_bss_frame_data +EXPORT_SYMBOL net/wireless/cfg80211 0x383a91e7 cfg80211_ch_switch_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x3885b0fc cfg80211_ready_on_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x39608443 wiphy_new_nm +EXPORT_SYMBOL net/wireless/cfg80211 0x39a3875c cfg80211_stop_iface EXPORT_SYMBOL net/wireless/cfg80211 0x3d8e5894 cfg80211_chandef_compatible -EXPORT_SYMBOL net/wireless/cfg80211 0x3f3112e4 cfg80211_get_station EXPORT_SYMBOL net/wireless/cfg80211 0x43afadee ieee80211_radiotap_iterator_init -EXPORT_SYMBOL net/wireless/cfg80211 0x43bf9390 cfg80211_tdls_oper_request -EXPORT_SYMBOL net/wireless/cfg80211 0x43d23ce4 wiphy_unregister -EXPORT_SYMBOL net/wireless/cfg80211 0x4897caac regulatory_pre_cac_allowed -EXPORT_SYMBOL net/wireless/cfg80211 0x4b687f06 cfg80211_sched_scan_stopped -EXPORT_SYMBOL net/wireless/cfg80211 0x4c345988 cfg80211_ch_switch_started_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x50dcae30 wiphy_rfkill_start_polling -EXPORT_SYMBOL net/wireless/cfg80211 0x532543f5 cfg80211_register_netdevice -EXPORT_SYMBOL net/wireless/cfg80211 0x576c25d0 cfg80211_update_owe_info_event -EXPORT_SYMBOL net/wireless/cfg80211 0x589f9e81 cfg80211_rx_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0x58f264c9 get_wiphy_regdom -EXPORT_SYMBOL net/wireless/cfg80211 0x5a51a37c cfg80211_rx_unprot_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0x5bb64cec regulatory_hint -EXPORT_SYMBOL net/wireless/cfg80211 0x5c50b4fe cfg80211_get_drvinfo -EXPORT_SYMBOL net/wireless/cfg80211 0x5c875d02 cfg80211_bss_color_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x5e803b8d cfg80211_bss_flush -EXPORT_SYMBOL net/wireless/cfg80211 0x60832361 ieee80211_get_channel_khz -EXPORT_SYMBOL net/wireless/cfg80211 0x60c8c4a7 cfg80211_get_bss -EXPORT_SYMBOL net/wireless/cfg80211 0x60dfbbcb wiphy_read_of_freq_limits -EXPORT_SYMBOL net/wireless/cfg80211 0x61c6f773 cfg80211_stop_iface +EXPORT_SYMBOL net/wireless/cfg80211 0x48105e49 cfg80211_unregister_wdev +EXPORT_SYMBOL net/wireless/cfg80211 0x4b0aec16 cfg80211_sta_opmode_change_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x4b0e0ebf cfg80211_sched_scan_stopped_locked +EXPORT_SYMBOL net/wireless/cfg80211 0x4d3e6b0a cfg80211_reg_can_beacon_relax +EXPORT_SYMBOL net/wireless/cfg80211 0x4d5ff3ed cfg80211_nan_match +EXPORT_SYMBOL net/wireless/cfg80211 0x4da04fcc cfg80211_put_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x4dce9b16 cfg80211_inform_bss_data +EXPORT_SYMBOL net/wireless/cfg80211 0x5007d376 cfg80211_send_layer2_update +EXPORT_SYMBOL net/wireless/cfg80211 0x526822ff cfg80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x5373d941 __cfg80211_alloc_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x57bccaae __cfg80211_alloc_reply_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x57f4821a cfg80211_connect_done EXPORT_SYMBOL net/wireless/cfg80211 0x652aeedf ieee80211_mandatory_rates -EXPORT_SYMBOL net/wireless/cfg80211 0x69b087fd cfg80211_classify8021d +EXPORT_SYMBOL net/wireless/cfg80211 0x67af22db cfg80211_abandon_assoc EXPORT_SYMBOL net/wireless/cfg80211 0x69b18f43 rfc1042_header -EXPORT_SYMBOL net/wireless/cfg80211 0x6a58b195 cfg80211_sched_scan_stopped_locked +EXPORT_SYMBOL net/wireless/cfg80211 0x6a074bba cfg80211_chandef_dfs_required EXPORT_SYMBOL net/wireless/cfg80211 0x6bedf402 ieee80211_freq_khz_to_channel -EXPORT_SYMBOL net/wireless/cfg80211 0x6bef942d cfg80211_conn_failed -EXPORT_SYMBOL net/wireless/cfg80211 0x70741bf5 cfg80211_reg_can_beacon_relax -EXPORT_SYMBOL net/wireless/cfg80211 0x76f3c354 cfg80211_report_obss_beacon_khz +EXPORT_SYMBOL net/wireless/cfg80211 0x6f5b5474 regulatory_pre_cac_allowed +EXPORT_SYMBOL net/wireless/cfg80211 0x701cdd36 cfg80211_cqm_rssi_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x7107ce76 cfg80211_notify_new_peer_candidate +EXPORT_SYMBOL net/wireless/cfg80211 0x735331a5 cfg80211_check_station_change +EXPORT_SYMBOL net/wireless/cfg80211 0x743994d8 ieee80211_get_num_supported_channels +EXPORT_SYMBOL net/wireless/cfg80211 0x7476a882 wiphy_free +EXPORT_SYMBOL net/wireless/cfg80211 0x750088c8 cfg80211_bss_color_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x782e141a cfg80211_ch_switch_started_notify EXPORT_SYMBOL net/wireless/cfg80211 0x79b82a71 cfg80211_find_vendor_elem -EXPORT_SYMBOL net/wireless/cfg80211 0x7abe1be1 cfg80211_notify_new_peer_candidate EXPORT_SYMBOL net/wireless/cfg80211 0x7acb86ed ieee80211_radiotap_iterator_next EXPORT_SYMBOL net/wireless/cfg80211 0x7c3ac925 ieee80211_get_vht_max_nss -EXPORT_SYMBOL net/wireless/cfg80211 0x7eb1c176 cfg80211_connect_done +EXPORT_SYMBOL net/wireless/cfg80211 0x7e44f84d cfg80211_pmksa_candidate_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x7eeddf48 ieee80211_amsdu_to_8023s EXPORT_SYMBOL net/wireless/cfg80211 0x7ef39823 ieee80211_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0x7fa8ab13 get_wiphy_regdom +EXPORT_SYMBOL net/wireless/cfg80211 0x7fb951e2 cfg80211_cac_event EXPORT_SYMBOL net/wireless/cfg80211 0x81874735 ieee80211_get_response_rate -EXPORT_SYMBOL net/wireless/cfg80211 0x822d9870 cfg80211_abandon_assoc -EXPORT_SYMBOL net/wireless/cfg80211 0x88fc0ca4 cfg80211_cqm_txe_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x8b4d2408 cfg80211_tx_mgmt_expired -EXPORT_SYMBOL net/wireless/cfg80211 0x8d7c273c cfg80211_remain_on_channel_expired +EXPORT_SYMBOL net/wireless/cfg80211 0x82f4f999 cfg80211_gtk_rekey_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x83412065 cfg80211_conn_failed +EXPORT_SYMBOL net/wireless/cfg80211 0x8546c95e regulatory_hint +EXPORT_SYMBOL net/wireless/cfg80211 0x8cc5f155 cfg80211_rx_assoc_resp +EXPORT_SYMBOL net/wireless/cfg80211 0x8d1931f4 cfg80211_michael_mic_failure +EXPORT_SYMBOL net/wireless/cfg80211 0x8f2da38b cfg80211_iter_combinations EXPORT_SYMBOL net/wireless/cfg80211 0x8fa02936 cfg80211_free_nan_func -EXPORT_SYMBOL net/wireless/cfg80211 0x923837de cfg80211_reg_can_beacon -EXPORT_SYMBOL net/wireless/cfg80211 0x9974c5e6 ieee80211_get_hdrlen_from_skb -EXPORT_SYMBOL net/wireless/cfg80211 0x999f7f7d cfg80211_michael_mic_failure -EXPORT_SYMBOL net/wireless/cfg80211 0x9aa2ff99 regulatory_set_wiphy_regd +EXPORT_SYMBOL net/wireless/cfg80211 0x90986877 cfg80211_assoc_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0x91720de6 cfg80211_scan_done +EXPORT_SYMBOL net/wireless/cfg80211 0x929b2096 ieee80211_data_to_8023_exthdr +EXPORT_SYMBOL net/wireless/cfg80211 0x949aebc5 cfg80211_cqm_pktloss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x94e6852b cfg80211_rx_unprot_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x95daecd7 wiphy_apply_custom_regulatory +EXPORT_SYMBOL net/wireless/cfg80211 0x97d5d4bc cfg80211_new_sta +EXPORT_SYMBOL net/wireless/cfg80211 0x9b3d2509 cfg80211_port_authorized EXPORT_SYMBOL net/wireless/cfg80211 0x9d6cba30 cfg80211_find_elem_match -EXPORT_SYMBOL net/wireless/cfg80211 0x9f331912 cfg80211_pmksa_candidate_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xa68ba340 cfg80211_disconnected -EXPORT_SYMBOL net/wireless/cfg80211 0xa9d6bbda wiphy_free -EXPORT_SYMBOL net/wireless/cfg80211 0xaa9f04ba wiphy_new_nm -EXPORT_SYMBOL net/wireless/cfg80211 0xabdf7db2 cfg80211_iter_combinations -EXPORT_SYMBOL net/wireless/cfg80211 0xac075955 cfg80211_cqm_rssi_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xad30f9c6 cfg80211_sched_scan_results -EXPORT_SYMBOL net/wireless/cfg80211 0xaf9135ee cfg80211_put_bss -EXPORT_SYMBOL net/wireless/cfg80211 0xb201ae11 cfg80211_nan_match -EXPORT_SYMBOL net/wireless/cfg80211 0xb2bec6b0 cfg80211_unlink_bss -EXPORT_SYMBOL net/wireless/cfg80211 0xb59fab3f cfg80211_gtk_rekey_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xa1a1b648 regulatory_set_wiphy_regd +EXPORT_SYMBOL net/wireless/cfg80211 0xa478e0b6 cfg80211_external_auth_request +EXPORT_SYMBOL net/wireless/cfg80211 0xa5b57889 wiphy_read_of_freq_limits +EXPORT_SYMBOL net/wireless/cfg80211 0xa99113a5 cfg80211_bss_iter +EXPORT_SYMBOL net/wireless/cfg80211 0xa9c64456 cfg80211_get_station +EXPORT_SYMBOL net/wireless/cfg80211 0xaa6d5c60 cfg80211_rx_mgmt_khz +EXPORT_SYMBOL net/wireless/cfg80211 0xad850c51 cfg80211_rx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0xadf7428b freq_reg_info +EXPORT_SYMBOL net/wireless/cfg80211 0xae1d0d16 cfg80211_get_drvinfo +EXPORT_SYMBOL net/wireless/cfg80211 0xae674d18 cfg80211_register_netdevice +EXPORT_SYMBOL net/wireless/cfg80211 0xb12d1b6d cfg80211_tdls_oper_request +EXPORT_SYMBOL net/wireless/cfg80211 0xb38e783b wiphy_unregister EXPORT_SYMBOL net/wireless/cfg80211 0xb73aafb1 ieee80211_chandef_to_operating_class -EXPORT_SYMBOL net/wireless/cfg80211 0xbd283b40 cfg80211_control_port_tx_status -EXPORT_SYMBOL net/wireless/cfg80211 0xbe4b8a38 cfg80211_assoc_timeout -EXPORT_SYMBOL net/wireless/cfg80211 0xc1838f89 cfg80211_ch_switch_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xbc7ad2e3 cfg80211_disconnected +EXPORT_SYMBOL net/wireless/cfg80211 0xbcb9c8f2 wiphy_rfkill_start_polling +EXPORT_SYMBOL net/wireless/cfg80211 0xbdd3af25 cfg80211_tx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0xbe2fd68e cfg80211_nan_func_terminated +EXPORT_SYMBOL net/wireless/cfg80211 0xbf80ca6a cfg80211_unlink_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xc1257b86 regulatory_set_wiphy_regd_sync EXPORT_SYMBOL net/wireless/cfg80211 0xc1b99792 ieee80211_channel_to_freq_khz EXPORT_SYMBOL net/wireless/cfg80211 0xc5dcacef ieee80211_operating_class_to_band -EXPORT_SYMBOL net/wireless/cfg80211 0xca5c0ae4 cfg80211_cac_event -EXPORT_SYMBOL net/wireless/cfg80211 0xcac5bab9 cfg80211_report_wowlan_wakeup -EXPORT_SYMBOL net/wireless/cfg80211 0xcbbfd1a1 ieee80211_amsdu_to_8023s -EXPORT_SYMBOL net/wireless/cfg80211 0xcbd658d2 cfg80211_cqm_pktloss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xc6b862e3 cfg80211_tx_mgmt_expired +EXPORT_SYMBOL net/wireless/cfg80211 0xc7d55cca cfg80211_sched_scan_results EXPORT_SYMBOL net/wireless/cfg80211 0xcc1a7c48 cfg80211_is_element_inherited -EXPORT_SYMBOL net/wireless/cfg80211 0xccf754dd wiphy_apply_custom_regulatory -EXPORT_SYMBOL net/wireless/cfg80211 0xce87336a cfg80211_new_sta -EXPORT_SYMBOL net/wireless/cfg80211 0xd23fe1b6 freq_reg_info -EXPORT_SYMBOL net/wireless/cfg80211 0xd2d53354 cfg80211_sta_opmode_change_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xd2f030db wiphy_rfkill_set_hw_state_reason -EXPORT_SYMBOL net/wireless/cfg80211 0xd49535a7 cfg80211_check_station_change +EXPORT_SYMBOL net/wireless/cfg80211 0xcffc3586 cfg80211_del_sta_sinfo +EXPORT_SYMBOL net/wireless/cfg80211 0xd033b4d5 cfg80211_cqm_txe_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xd38a1ec3 wiphy_register +EXPORT_SYMBOL net/wireless/cfg80211 0xd3e13aa7 cfg80211_report_wowlan_wakeup EXPORT_SYMBOL net/wireless/cfg80211 0xd56d55f3 ieee80211_get_mesh_hdrlen -EXPORT_SYMBOL net/wireless/cfg80211 0xd76bc20d regulatory_set_wiphy_regd_sync -EXPORT_SYMBOL net/wireless/cfg80211 0xd7f645ac cfg80211_ft_event -EXPORT_SYMBOL net/wireless/cfg80211 0xd8268479 ieee80211_data_to_8023_exthdr -EXPORT_SYMBOL net/wireless/cfg80211 0xda87a43c cfg80211_inform_bss_frame_data +EXPORT_SYMBOL net/wireless/cfg80211 0xd6450308 cfg80211_auth_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0xd6953104 cfg80211_check_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0xd9c0b049 cfg80211_radar_event EXPORT_SYMBOL net/wireless/cfg80211 0xdba126c1 reg_initiator_name +EXPORT_SYMBOL net/wireless/cfg80211 0xe0c22221 cfg80211_update_owe_info_event +EXPORT_SYMBOL net/wireless/cfg80211 0xe0dbfb69 ieee80211_get_channel_khz EXPORT_SYMBOL net/wireless/cfg80211 0xe334e6df cfg80211_sinfo_alloc_tid_stats -EXPORT_SYMBOL net/wireless/cfg80211 0xe366f9a2 cfg80211_iftype_allowed -EXPORT_SYMBOL net/wireless/cfg80211 0xe485d86f cfg80211_ready_on_channel -EXPORT_SYMBOL net/wireless/cfg80211 0xe8238e3f __cfg80211_alloc_event_skb -EXPORT_SYMBOL net/wireless/cfg80211 0xee5784c0 cfg80211_auth_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0xe7030188 cfg80211_sched_scan_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0xe8fc3014 cfg80211_classify8021d +EXPORT_SYMBOL net/wireless/cfg80211 0xe91869dc wiphy_rfkill_set_hw_state_reason +EXPORT_SYMBOL net/wireless/cfg80211 0xeb871a05 cfg80211_crit_proto_stopped EXPORT_SYMBOL net/wireless/cfg80211 0xef265f27 cfg80211_chandef_create -EXPORT_SYMBOL net/wireless/cfg80211 0xf51f2087 cfg80211_roamed +EXPORT_SYMBOL net/wireless/cfg80211 0xf37db349 cfg80211_remain_on_channel_expired +EXPORT_SYMBOL net/wireless/cfg80211 0xf5147d00 cfg80211_control_port_tx_status +EXPORT_SYMBOL net/wireless/cfg80211 0xf543cd93 cfg80211_ref_bss EXPORT_SYMBOL net/wireless/cfg80211 0xf5596d89 cfg80211_get_p2p_attr -EXPORT_SYMBOL net/wireless/cfg80211 0xf5f8824b __cfg80211_send_event_skb -EXPORT_SYMBOL net/wireless/cfg80211 0xf765ddaf cfg80211_chandef_dfs_required -EXPORT_SYMBOL net/wireless/cfg80211 0xfd0a90bb cfg80211_port_authorized -EXPORT_SYMBOL net/wireless/cfg80211 0xfd1b227f cfg80211_send_layer2_update -EXPORT_SYMBOL net/wireless/cfg80211 0xfd434ba1 cfg80211_cqm_beacon_loss_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xfdf4a9fa cfg80211_scan_done -EXPORT_SYMBOL net/wireless/cfg80211 0xff651477 wiphy_register -EXPORT_SYMBOL net/wireless/lib80211 0x2192f78c lib80211_crypt_info_init -EXPORT_SYMBOL net/wireless/lib80211 0x29d6d911 lib80211_crypt_delayed_deinit -EXPORT_SYMBOL net/wireless/lib80211 0x335e8a6d lib80211_get_crypto_ops -EXPORT_SYMBOL net/wireless/lib80211 0x6a021e61 lib80211_unregister_crypto_ops -EXPORT_SYMBOL net/wireless/lib80211 0x7a87ba32 lib80211_register_crypto_ops -EXPORT_SYMBOL net/wireless/lib80211 0xd123b67c lib80211_crypt_info_free -EXPORT_SYMBOL sound/ac97_bus 0x1d4f1e1e ac97_bus_type -EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0x5816849c snd_mixer_oss_ioctl_card +EXPORT_SYMBOL net/wireless/cfg80211 0xf6e81a06 cfg80211_get_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xfa5ae752 cfg80211_any_usable_channels +EXPORT_SYMBOL net/wireless/cfg80211 0xfba6feff cfg80211_ft_event +EXPORT_SYMBOL net/wireless/lib80211 0x3b03b27c lib80211_get_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x3dd66b7e lib80211_crypt_info_init +EXPORT_SYMBOL net/wireless/lib80211 0x6ce9e51b lib80211_register_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0xb79f6f60 lib80211_crypt_info_free +EXPORT_SYMBOL net/wireless/lib80211 0xc81bcddd lib80211_crypt_delayed_deinit +EXPORT_SYMBOL net/wireless/lib80211 0xe9788872 lib80211_unregister_crypto_ops +EXPORT_SYMBOL sound/ac97_bus 0xdc56475d ac97_bus_type +EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0x27041ea8 snd_mixer_oss_ioctl_card +EXPORT_SYMBOL sound/core/seq/snd-seq 0x112c4d87 snd_seq_kernel_client_write_poll EXPORT_SYMBOL sound/core/seq/snd-seq 0x1a724fcc snd_seq_kernel_client_ctl -EXPORT_SYMBOL sound/core/seq/snd-seq 0x2a01775a snd_seq_kernel_client_enqueue EXPORT_SYMBOL sound/core/seq/snd-seq 0x3061c52d snd_use_lock_sync_helper +EXPORT_SYMBOL sound/core/seq/snd-seq 0x335ccce4 snd_seq_kernel_client_enqueue EXPORT_SYMBOL sound/core/seq/snd-seq 0x3fb4d161 snd_seq_kernel_client_dispatch -EXPORT_SYMBOL sound/core/seq/snd-seq 0x45463871 snd_seq_kernel_client_write_poll +EXPORT_SYMBOL sound/core/seq/snd-seq 0x417f08dc snd_seq_create_kernel_client EXPORT_SYMBOL sound/core/seq/snd-seq 0x6bb71038 snd_seq_delete_kernel_client EXPORT_SYMBOL sound/core/seq/snd-seq 0x7ac2f329 snd_seq_expand_var_event EXPORT_SYMBOL sound/core/seq/snd-seq 0x7b8699eb snd_seq_event_port_detach -EXPORT_SYMBOL sound/core/seq/snd-seq 0x864053c0 snd_seq_create_kernel_client +EXPORT_SYMBOL sound/core/seq/snd-seq 0xa51a2998 snd_seq_event_port_attach EXPORT_SYMBOL sound/core/seq/snd-seq 0xb8e448a0 snd_seq_set_queue_tempo -EXPORT_SYMBOL sound/core/seq/snd-seq 0xd10d84dc 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-midi-emul 0x6ea09972 snd_midi_channel_alloc_set EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x833a3e07 snd_midi_channel_set_clear @@ -5426,6012 +5427,6019 @@ EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x592f6e9b snd_midi_event_free EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xddcf2191 snd_midi_event_encode_byte EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xe60fb228 snd_midi_event_reset_decode -EXPORT_SYMBOL sound/core/seq/snd-seq-virmidi 0x39bcf11d snd_virmidi_new -EXPORT_SYMBOL sound/core/snd 0x006b6c4d snd_unregister_oss_device -EXPORT_SYMBOL sound/core/snd 0x02bd2be4 snd_jack_set_key -EXPORT_SYMBOL sound/core/snd 0x0547b08e snd_info_create_card_entry -EXPORT_SYMBOL sound/core/snd 0x0ee32fc1 snd_ctl_notify -EXPORT_SYMBOL sound/core/snd 0x14b7f3fe snd_ctl_remove -EXPORT_SYMBOL sound/core/snd 0x17080b48 snd_ctl_find_numid +EXPORT_SYMBOL sound/core/seq/snd-seq-virmidi 0xaa3952eb snd_virmidi_new +EXPORT_SYMBOL sound/core/snd 0x0a0605d5 snd_card_file_remove +EXPORT_SYMBOL sound/core/snd 0x0c3818e6 snd_ctl_make_virtual_master +EXPORT_SYMBOL sound/core/snd 0x141d4524 snd_ctl_add EXPORT_SYMBOL sound/core/snd 0x18e1683f snd_dma_program EXPORT_SYMBOL sound/core/snd 0x191e88cf snd_dma_pointer +EXPORT_SYMBOL sound/core/snd 0x1956e09e snd_ctl_remove_id EXPORT_SYMBOL sound/core/snd 0x198788b4 snd_lookup_oss_minor_data -EXPORT_SYMBOL sound/core/snd 0x1bc514b4 snd_ctl_boolean_stereo_info -EXPORT_SYMBOL sound/core/snd 0x1bd5acfb snd_ctl_register_ioctl_compat -EXPORT_SYMBOL sound/core/snd 0x1e5c8716 snd_ctl_replace -EXPORT_SYMBOL sound/core/snd 0x22bb4cd0 snd_card_free +EXPORT_SYMBOL sound/core/snd 0x1c3a819c snd_card_new +EXPORT_SYMBOL sound/core/snd 0x1fb1cbd6 snd_ctl_boolean_mono_info EXPORT_SYMBOL sound/core/snd 0x24a94b26 snd_info_get_line -EXPORT_SYMBOL sound/core/snd 0x2e965682 snd_ctl_remove_id +EXPORT_SYMBOL sound/core/snd 0x2a150eef snd_jack_new +EXPORT_SYMBOL sound/core/snd 0x2b8efb65 snd_unregister_device +EXPORT_SYMBOL sound/core/snd 0x2dc6f8cf _snd_ctl_add_follower +EXPORT_SYMBOL sound/core/snd 0x2dc9a0a5 snd_ctl_find_numid +EXPORT_SYMBOL sound/core/snd 0x2e79ec64 snd_ctl_find_id +EXPORT_SYMBOL sound/core/snd 0x2f6d805e snd_component_add EXPORT_SYMBOL sound/core/snd 0x342a2354 copy_to_user_fromio -EXPORT_SYMBOL sound/core/snd 0x3556552e snd_jack_add_new_kctl -EXPORT_SYMBOL sound/core/snd 0x373ae926 snd_ctl_unregister_ioctl -EXPORT_SYMBOL sound/core/snd 0x37b85439 snd_jack_report +EXPORT_SYMBOL sound/core/snd 0x34ccb230 snd_pci_quirk_lookup +EXPORT_SYMBOL sound/core/snd 0x351d5da7 snd_ctl_remove +EXPORT_SYMBOL sound/core/snd 0x3667a3d1 snd_ctl_register_ioctl EXPORT_SYMBOL sound/core/snd 0x3971b4df snd_ecards_limit -EXPORT_SYMBOL sound/core/snd 0x39b2efbd snd_info_create_module_entry -EXPORT_SYMBOL sound/core/snd 0x4569474e snd_component_add -EXPORT_SYMBOL sound/core/snd 0x457a0a5a _snd_ctl_add_follower +EXPORT_SYMBOL sound/core/snd 0x3d27a1a9 snd_seq_root EXPORT_SYMBOL sound/core/snd 0x4a3ea5c0 snd_request_card -EXPORT_SYMBOL sound/core/snd 0x4efa1d66 snd_ctl_make_virtual_master -EXPORT_SYMBOL sound/core/snd 0x53af3c10 snd_ctl_notify_one -EXPORT_SYMBOL sound/core/snd 0x53e22d2d snd_unregister_device -EXPORT_SYMBOL sound/core/snd 0x6759a9e9 snd_card_disconnect -EXPORT_SYMBOL sound/core/snd 0x705e0f06 snd_power_wait -EXPORT_SYMBOL sound/core/snd 0x70a6e572 snd_card_file_add +EXPORT_SYMBOL sound/core/snd 0x4af06770 snd_info_create_module_entry +EXPORT_SYMBOL sound/core/snd 0x4e94c7c4 snd_info_register +EXPORT_SYMBOL sound/core/snd 0x5723060c snd_info_create_card_entry +EXPORT_SYMBOL sound/core/snd 0x5fe1a5ee snd_ctl_register_ioctl_compat +EXPORT_SYMBOL sound/core/snd 0x60f3f4b5 snd_ctl_rename_id +EXPORT_SYMBOL sound/core/snd 0x657f573b snd_card_free +EXPORT_SYMBOL sound/core/snd 0x6c6cf019 snd_ctl_boolean_stereo_info +EXPORT_SYMBOL sound/core/snd 0x6f147508 snd_ctl_notify 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 0x7ae8ee36 snd_ctl_add -EXPORT_SYMBOL sound/core/snd 0x819ace2b snd_card_register -EXPORT_SYMBOL sound/core/snd 0x81cc5638 snd_register_oss_device -EXPORT_SYMBOL sound/core/snd 0x8786ccb5 snd_seq_root +EXPORT_SYMBOL sound/core/snd 0x75171652 snd_jack_add_new_kctl +EXPORT_SYMBOL sound/core/snd 0x7ee03c7f snd_ctl_notify_one +EXPORT_SYMBOL sound/core/snd 0x800fa20d snd_mixer_oss_notify_callback +EXPORT_SYMBOL sound/core/snd 0x885203e2 snd_ctl_free_one +EXPORT_SYMBOL sound/core/snd 0x8a001c3c snd_ctl_unregister_ioctl EXPORT_SYMBOL sound/core/snd 0x8df3789f snd_oss_info_register EXPORT_SYMBOL sound/core/snd 0x8f595b11 snd_major -EXPORT_SYMBOL sound/core/snd 0x913d255f snd_mixer_oss_notify_callback -EXPORT_SYMBOL sound/core/snd 0x92e8174f snd_jack_set_parent -EXPORT_SYMBOL sound/core/snd 0x971df279 snd_ctl_boolean_mono_info -EXPORT_SYMBOL sound/core/snd 0x97af08e8 snd_card_free_when_closed -EXPORT_SYMBOL sound/core/snd 0x97b4ee47 snd_info_register -EXPORT_SYMBOL sound/core/snd 0x993b57af snd_device_register +EXPORT_SYMBOL sound/core/snd 0x94efecb9 snd_device_new +EXPORT_SYMBOL sound/core/snd 0x97699e8d snd_info_free_entry EXPORT_SYMBOL sound/core/snd 0x9e6d79f8 snd_info_get_str -EXPORT_SYMBOL sound/core/snd 0xa7b21316 snd_ctl_unregister_ioctl_compat -EXPORT_SYMBOL sound/core/snd 0xab2f86cd snd_pci_quirk_lookup -EXPORT_SYMBOL sound/core/snd 0xaea9312d snd_info_free_entry +EXPORT_SYMBOL sound/core/snd 0xa5909600 snd_power_wait +EXPORT_SYMBOL sound/core/snd 0xaabc99e6 snd_ctl_unregister_ioctl_compat +EXPORT_SYMBOL sound/core/snd 0xb013643a snd_card_file_add EXPORT_SYMBOL sound/core/snd 0xb2e5ae4a snd_lookup_minor_data -EXPORT_SYMBOL sound/core/snd 0xb679154e snd_ctl_free_one -EXPORT_SYMBOL sound/core/snd 0xc5741ad2 snd_jack_new +EXPORT_SYMBOL sound/core/snd 0xbd1a3e76 snd_jack_set_parent EXPORT_SYMBOL sound/core/snd 0xc5a6d10b release_and_free_resource +EXPORT_SYMBOL sound/core/snd 0xc9c5afed snd_ctl_replace EXPORT_SYMBOL sound/core/snd 0xcc6a729f snd_ctl_enum_info -EXPORT_SYMBOL sound/core/snd 0xddacc1f6 snd_ctl_find_id -EXPORT_SYMBOL sound/core/snd 0xdf8bf68e snd_device_free -EXPORT_SYMBOL sound/core/snd 0xe0b19c05 snd_register_device -EXPORT_SYMBOL sound/core/snd 0xe4274ea1 snd_card_set_id -EXPORT_SYMBOL sound/core/snd 0xefee159b snd_ctl_register_ioctl -EXPORT_SYMBOL sound/core/snd 0xf0b15f44 snd_ctl_rename_id -EXPORT_SYMBOL sound/core/snd 0xf48deb8c snd_device_new -EXPORT_SYMBOL sound/core/snd 0xfdcb8431 snd_card_new -EXPORT_SYMBOL sound/core/snd 0xfdf93495 snd_card_file_remove -EXPORT_SYMBOL sound/core/snd 0xff8dbb70 snd_ctl_new1 +EXPORT_SYMBOL sound/core/snd 0xcf0c11c4 snd_device_register +EXPORT_SYMBOL sound/core/snd 0xd5f67b9e snd_card_free_when_closed +EXPORT_SYMBOL sound/core/snd 0xda3eee52 snd_device_free +EXPORT_SYMBOL sound/core/snd 0xe0d3013b snd_card_disconnect +EXPORT_SYMBOL sound/core/snd 0xe636d298 snd_jack_set_key +EXPORT_SYMBOL sound/core/snd 0xed24b19a snd_register_device +EXPORT_SYMBOL sound/core/snd 0xef9e9f20 snd_card_set_id +EXPORT_SYMBOL sound/core/snd 0xf3013c94 snd_card_register +EXPORT_SYMBOL sound/core/snd 0xf72fb731 snd_unregister_oss_device +EXPORT_SYMBOL sound/core/snd 0xf7c2de37 snd_jack_report +EXPORT_SYMBOL sound/core/snd 0xfa35b977 snd_ctl_new1 +EXPORT_SYMBOL sound/core/snd 0xfb2f24ca snd_register_oss_device EXPORT_SYMBOL sound/core/snd 0xfffd89db copy_from_user_toio -EXPORT_SYMBOL sound/core/snd-hwdep 0x5d1d11c7 snd_hwdep_new +EXPORT_SYMBOL sound/core/snd-compress 0x444ecef1 snd_compr_free_pages +EXPORT_SYMBOL sound/core/snd-compress 0xf2c0e759 snd_compr_malloc_pages +EXPORT_SYMBOL sound/core/snd-hwdep 0x2438dc69 snd_hwdep_new EXPORT_SYMBOL sound/core/snd-pcm 0x0283dfe3 _snd_pcm_hw_params_any +EXPORT_SYMBOL sound/core/snd-pcm 0x0433d604 snd_pcm_lib_free_vmalloc_buffer EXPORT_SYMBOL sound/core/snd-pcm 0x04cda566 snd_interval_refine -EXPORT_SYMBOL sound/core/snd-pcm 0x07dc0c22 _snd_pcm_lib_alloc_vmalloc_buffer -EXPORT_SYMBOL sound/core/snd-pcm 0x0aaa44d0 snd_pcm_hw_constraint_minmax +EXPORT_SYMBOL sound/core/snd-pcm 0x0944dcff snd_pcm_hw_constraint_step +EXPORT_SYMBOL sound/core/snd-pcm 0x0b04936c snd_pcm_stop EXPORT_SYMBOL sound/core/snd-pcm 0x11eba48e snd_pcm_create_iec958_consumer_hw_params -EXPORT_SYMBOL sound/core/snd-pcm 0x1be4353f snd_pcm_new_internal +EXPORT_SYMBOL sound/core/snd-pcm 0x13aed9dd snd_pcm_lib_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x16c807f2 snd_pcm_hw_rule_add +EXPORT_SYMBOL sound/core/snd-pcm 0x17bd8a15 snd_pcm_set_managed_buffer EXPORT_SYMBOL sound/core/snd-pcm 0x1d027e4b snd_pcm_format_signed -EXPORT_SYMBOL sound/core/snd-pcm 0x203adc90 snd_pcm_new_stream -EXPORT_SYMBOL sound/core/snd-pcm 0x2266227f snd_pcm_hw_param_first -EXPORT_SYMBOL sound/core/snd-pcm 0x2799b3e3 snd_pcm_lib_malloc_pages -EXPORT_SYMBOL sound/core/snd-pcm 0x2915dbff snd_pcm_hw_constraint_ratnums -EXPORT_SYMBOL sound/core/snd-pcm 0x30fc2a87 snd_pcm_lib_mmap_iomem -EXPORT_SYMBOL sound/core/snd-pcm 0x3729dea4 snd_pcm_mmap_data +EXPORT_SYMBOL sound/core/snd-pcm 0x1de0a0ec snd_pcm_hw_constraint_msbits +EXPORT_SYMBOL sound/core/snd-pcm 0x1fdbd804 snd_pcm_hw_constraint_integer +EXPORT_SYMBOL sound/core/snd-pcm 0x2e85046d snd_dma_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x2feba6ab snd_pcm_release_substream +EXPORT_SYMBOL sound/core/snd-pcm 0x2ff8ab3a snd_pcm_mmap_data +EXPORT_SYMBOL sound/core/snd-pcm 0x30c578b3 snd_pcm_lib_preallocate_pages_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0x32813189 snd_pcm_lib_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0x35c58080 _snd_pcm_lib_alloc_vmalloc_buffer EXPORT_SYMBOL sound/core/snd-pcm 0x3796bdcc snd_pcm_format_little_endian -EXPORT_SYMBOL sound/core/snd-pcm 0x37f8b688 snd_pcm_hw_constraint_integer -EXPORT_SYMBOL sound/core/snd-pcm 0x391ca05b snd_pcm_lib_get_vmalloc_page -EXPORT_SYMBOL sound/core/snd-pcm 0x394d6af2 snd_pcm_lib_preallocate_pages_for_all -EXPORT_SYMBOL sound/core/snd-pcm 0x39931631 snd_pcm_lib_free_pages EXPORT_SYMBOL sound/core/snd-pcm 0x39bf9301 _snd_pcm_hw_param_setempty -EXPORT_SYMBOL sound/core/snd-pcm 0x412d2ccb snd_pcm_hw_constraint_ranges -EXPORT_SYMBOL sound/core/snd-pcm 0x45019f2a snd_sgbuf_get_addr -EXPORT_SYMBOL sound/core/snd-pcm 0x45c947a1 snd_pcm_hw_constraint_ratdens -EXPORT_SYMBOL sound/core/snd-pcm 0x49566605 snd_pcm_hw_rule_add -EXPORT_SYMBOL sound/core/snd-pcm 0x4b09653d snd_pcm_set_sync -EXPORT_SYMBOL sound/core/snd-pcm 0x4df57568 snd_sgbuf_get_chunk_size +EXPORT_SYMBOL sound/core/snd-pcm 0x3cfd4f21 snd_pcm_hw_refine +EXPORT_SYMBOL sound/core/snd-pcm 0x4b670e3b snd_pcm_period_elapsed 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 0x512aab98 snd_pcm_lib_preallocate_free_for_all EXPORT_SYMBOL sound/core/snd-pcm 0x52e3e4a5 snd_pcm_hw_param_value -EXPORT_SYMBOL sound/core/snd-pcm 0x5329a4f8 snd_pcm_create_iec958_consumer -EXPORT_SYMBOL sound/core/snd-pcm 0x555ea31f snd_pcm_stop -EXPORT_SYMBOL sound/core/snd-pcm 0x55cf1bdb snd_pcm_new -EXPORT_SYMBOL sound/core/snd-pcm 0x55dc323b snd_pcm_hw_constraint_pow2 -EXPORT_SYMBOL sound/core/snd-pcm 0x5a10fb9f snd_pcm_hw_param_last -EXPORT_SYMBOL sound/core/snd-pcm 0x5bebe556 snd_pcm_hw_refine +EXPORT_SYMBOL sound/core/snd-pcm 0x5798a2f6 snd_pcm_new EXPORT_SYMBOL sound/core/snd-pcm 0x5e7f4920 snd_pcm_format_set_silence -EXPORT_SYMBOL sound/core/snd-pcm 0x6054f104 snd_pcm_period_elapsed +EXPORT_SYMBOL sound/core/snd-pcm 0x63d3d150 snd_pcm_lib_mmap_iomem 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 0x69c06f83 snd_pcm_hw_constraint_msbits -EXPORT_SYMBOL sound/core/snd-pcm 0x6c9417e7 snd_pcm_set_managed_buffer_all -EXPORT_SYMBOL sound/core/snd-pcm 0x6cbe04a1 snd_pcm_lib_ioctl EXPORT_SYMBOL sound/core/snd-pcm 0x6ef8fcd8 snd_pcm_format_linear -EXPORT_SYMBOL sound/core/snd-pcm 0x73abe333 __snd_pcm_lib_xfer -EXPORT_SYMBOL sound/core/snd-pcm 0x77b9b65b snd_pcm_release_substream -EXPORT_SYMBOL sound/core/snd-pcm 0x78a8349b snd_pcm_lib_preallocate_free_for_all -EXPORT_SYMBOL sound/core/snd-pcm 0x7caa11ca snd_pcm_period_elapsed_under_stream_lock +EXPORT_SYMBOL sound/core/snd-pcm 0x7117dd3a snd_pcm_set_sync +EXPORT_SYMBOL sound/core/snd-pcm 0x72ef276c snd_dma_alloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x81b38218 snd_pcm_set_managed_buffer_all EXPORT_SYMBOL sound/core/snd-pcm 0x834dc955 snd_pcm_format_size -EXPORT_SYMBOL sound/core/snd-pcm 0x83c49cc7 snd_pcm_suspend_all -EXPORT_SYMBOL sound/core/snd-pcm 0x894ab06d snd_pcm_lib_preallocate_pages -EXPORT_SYMBOL sound/core/snd-pcm 0x89cfef6f snd_dma_buffer_mmap -EXPORT_SYMBOL sound/core/snd-pcm 0x8c4c40c3 snd_pcm_hw_rule_noresample +EXPORT_SYMBOL sound/core/snd-pcm 0x8884de62 snd_pcm_hw_constraint_ranges +EXPORT_SYMBOL sound/core/snd-pcm 0x8bbe4a75 snd_pcm_new_internal +EXPORT_SYMBOL sound/core/snd-pcm 0x92c9c042 snd_pcm_kernel_ioctl EXPORT_SYMBOL sound/core/snd-pcm 0x94098ff8 snd_interval_list -EXPORT_SYMBOL sound/core/snd-pcm 0x95747841 snd_dma_alloc_pages_fallback -EXPORT_SYMBOL sound/core/snd-pcm 0x97ad1c22 snd_pcm_set_managed_buffer -EXPORT_SYMBOL sound/core/snd-pcm 0x9985b474 snd_pcm_hw_constraint_step +EXPORT_SYMBOL sound/core/snd-pcm 0x975fbaa4 snd_pcm_hw_constraint_list +EXPORT_SYMBOL sound/core/snd-pcm 0x9cbcad8b snd_pcm_open_substream +EXPORT_SYMBOL sound/core/snd-pcm 0xa4b26875 snd_pcm_new_stream EXPORT_SYMBOL sound/core/snd-pcm 0xa61aa028 snd_pcm_format_unsigned +EXPORT_SYMBOL sound/core/snd-pcm 0xa63f48a1 snd_pcm_hw_rule_noresample +EXPORT_SYMBOL sound/core/snd-pcm 0xa7efe588 snd_sgbuf_get_addr EXPORT_SYMBOL sound/core/snd-pcm 0xac437f7b snd_interval_ratnum -EXPORT_SYMBOL sound/core/snd-pcm 0xb2e8bfcc snd_dma_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xae6bc303 snd_pcm_hw_param_last +EXPORT_SYMBOL sound/core/snd-pcm 0xb3a12428 snd_pcm_hw_constraint_ratdens +EXPORT_SYMBOL sound/core/snd-pcm 0xb528fe80 snd_pcm_set_ops +EXPORT_SYMBOL sound/core/snd-pcm 0xb6039863 snd_sgbuf_get_page EXPORT_SYMBOL sound/core/snd-pcm 0xb9638db4 snd_pcm_rate_to_rate_bit -EXPORT_SYMBOL sound/core/snd-pcm 0xbea8599d snd_pcm_hw_constraint_list -EXPORT_SYMBOL sound/core/snd-pcm 0xbf226c1c snd_dma_alloc_pages -EXPORT_SYMBOL sound/core/snd-pcm 0xc3a9d279 snd_pcm_open_substream -EXPORT_SYMBOL sound/core/snd-pcm 0xc84d8341 snd_pcm_lib_free_vmalloc_buffer -EXPORT_SYMBOL sound/core/snd-pcm 0xdc15b164 snd_pcm_kernel_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0xbb013cac snd_dma_buffer_mmap +EXPORT_SYMBOL sound/core/snd-pcm 0xbd70a3d6 snd_pcm_hw_constraint_pow2 +EXPORT_SYMBOL sound/core/snd-pcm 0xbfdda279 snd_pcm_hw_constraint_mask64 +EXPORT_SYMBOL sound/core/snd-pcm 0xc36b69b9 snd_pcm_lib_get_vmalloc_page +EXPORT_SYMBOL sound/core/snd-pcm 0xd0769aa7 snd_dma_alloc_pages_fallback +EXPORT_SYMBOL sound/core/snd-pcm 0xd575a102 snd_pcm_period_elapsed_under_stream_lock +EXPORT_SYMBOL sound/core/snd-pcm 0xd7ff5058 snd_pcm_hw_constraint_ratnums +EXPORT_SYMBOL sound/core/snd-pcm 0xd9f14c9d snd_pcm_lib_preallocate_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xe3c2fcef snd_pcm_create_iec958_consumer EXPORT_SYMBOL sound/core/snd-pcm 0xe56a9336 snd_pcm_format_width -EXPORT_SYMBOL sound/core/snd-pcm 0xe9d76258 snd_pcm_set_ops -EXPORT_SYMBOL sound/core/snd-pcm 0xfa4e9a2d snd_sgbuf_get_page -EXPORT_SYMBOL sound/core/snd-pcm 0xfbfb6177 snd_pcm_hw_constraint_mask64 +EXPORT_SYMBOL sound/core/snd-pcm 0xe60fced5 snd_sgbuf_get_chunk_size +EXPORT_SYMBOL sound/core/snd-pcm 0xe6f7eb54 snd_pcm_suspend_all +EXPORT_SYMBOL sound/core/snd-pcm 0xe8b8172b snd_pcm_hw_constraint_minmax +EXPORT_SYMBOL sound/core/snd-pcm 0xedce8c72 snd_pcm_lib_malloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xf2145e80 snd_pcm_hw_param_first +EXPORT_SYMBOL sound/core/snd-pcm 0xf63c1bb6 __snd_pcm_lib_xfer EXPORT_SYMBOL sound/core/snd-pcm 0xff6104d0 snd_pcm_rate_bit_to_rate -EXPORT_SYMBOL sound/core/snd-rawmidi 0x0a2e4003 snd_rawmidi_kernel_write -EXPORT_SYMBOL sound/core/snd-rawmidi 0x1907d5ba snd_rawmidi_set_ops -EXPORT_SYMBOL sound/core/snd-rawmidi 0x29406dc7 snd_rawmidi_transmit_empty -EXPORT_SYMBOL sound/core/snd-rawmidi 0x304e863e snd_rawmidi_drain_output -EXPORT_SYMBOL sound/core/snd-rawmidi 0x321cd8e6 snd_rawmidi_drop_output -EXPORT_SYMBOL sound/core/snd-rawmidi 0x3a76d93b snd_rawmidi_transmit -EXPORT_SYMBOL sound/core/snd-rawmidi 0x41a025d1 snd_rawmidi_receive -EXPORT_SYMBOL sound/core/snd-rawmidi 0x4fe2a710 snd_rawmidi_transmit_peek -EXPORT_SYMBOL sound/core/snd-rawmidi 0x75b9f0a2 snd_rawmidi_drain_input -EXPORT_SYMBOL sound/core/snd-rawmidi 0x84796b53 snd_rawmidi_kernel_release -EXPORT_SYMBOL sound/core/snd-rawmidi 0x86705802 snd_rawmidi_kernel_open -EXPORT_SYMBOL sound/core/snd-rawmidi 0x9182d8a3 snd_rawmidi_info_select -EXPORT_SYMBOL sound/core/snd-rawmidi 0x9fdccf20 snd_rawmidi_kernel_read -EXPORT_SYMBOL sound/core/snd-rawmidi 0xa56623c3 snd_rawmidi_input_params -EXPORT_SYMBOL sound/core/snd-rawmidi 0xa5cfa8e0 __snd_rawmidi_transmit_ack -EXPORT_SYMBOL sound/core/snd-rawmidi 0xade2c3e4 snd_rawmidi_transmit_ack -EXPORT_SYMBOL sound/core/snd-rawmidi 0xced8a04d snd_rawmidi_proceed -EXPORT_SYMBOL sound/core/snd-rawmidi 0xed80bbd5 snd_rawmidi_output_params -EXPORT_SYMBOL sound/core/snd-rawmidi 0xf3981f6b __snd_rawmidi_transmit_peek -EXPORT_SYMBOL sound/core/snd-rawmidi 0xf54d1d7c snd_rawmidi_new +EXPORT_SYMBOL sound/core/snd-rawmidi 0x036917df snd_rawmidi_input_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0x0f6668a8 snd_rawmidi_output_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0x1ae9b552 snd_rawmidi_proceed +EXPORT_SYMBOL sound/core/snd-rawmidi 0x21d8cab0 snd_rawmidi_kernel_open +EXPORT_SYMBOL sound/core/snd-rawmidi 0x2e632aeb snd_rawmidi_drain_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0x312718d4 snd_rawmidi_transmit_empty +EXPORT_SYMBOL sound/core/snd-rawmidi 0x32b32ce3 snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0x4e0a509a snd_rawmidi_info_select +EXPORT_SYMBOL sound/core/snd-rawmidi 0x53e3428c snd_rawmidi_kernel_read +EXPORT_SYMBOL sound/core/snd-rawmidi 0x67e7ebe1 snd_rawmidi_kernel_write +EXPORT_SYMBOL sound/core/snd-rawmidi 0x68115a6e snd_rawmidi_drop_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0x77018f8b snd_rawmidi_set_ops +EXPORT_SYMBOL sound/core/snd-rawmidi 0x7f558756 snd_rawmidi_kernel_release +EXPORT_SYMBOL sound/core/snd-rawmidi 0x808766bd snd_rawmidi_new +EXPORT_SYMBOL sound/core/snd-rawmidi 0x8daefc3d snd_rawmidi_drain_input +EXPORT_SYMBOL sound/core/snd-rawmidi 0x9367057d snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0xb646fc4a snd_rawmidi_transmit +EXPORT_SYMBOL sound/core/snd-rawmidi 0xc6041490 snd_rawmidi_receive +EXPORT_SYMBOL sound/core/snd-rawmidi 0xce833066 __snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0xf9fe1dad __snd_rawmidi_transmit_ack EXPORT_SYMBOL sound/core/snd-seq-device 0x091def1c snd_seq_autoload_exit EXPORT_SYMBOL sound/core/snd-seq-device 0x370a0736 snd_seq_autoload_init EXPORT_SYMBOL sound/core/snd-seq-device 0x6339b6d0 snd_seq_device_load_drivers -EXPORT_SYMBOL sound/core/snd-seq-device 0xeb8d3ee5 snd_seq_device_new -EXPORT_SYMBOL sound/core/snd-timer 0x0554bf70 snd_timer_notify -EXPORT_SYMBOL sound/core/snd-timer 0x3502a0c6 snd_timer_continue -EXPORT_SYMBOL sound/core/snd-timer 0x489a4382 snd_timer_instance_new -EXPORT_SYMBOL sound/core/snd-timer 0x749f62c9 snd_timer_start -EXPORT_SYMBOL sound/core/snd-timer 0x79f70d87 snd_timer_open -EXPORT_SYMBOL sound/core/snd-timer 0x84c646dc snd_timer_interrupt -EXPORT_SYMBOL sound/core/snd-timer 0xb55ff32f snd_timer_stop -EXPORT_SYMBOL sound/core/snd-timer 0xbf6439d4 snd_timer_new -EXPORT_SYMBOL sound/core/snd-timer 0xcb9e6347 snd_timer_resolution -EXPORT_SYMBOL sound/core/snd-timer 0xd30cb92a snd_timer_global_register -EXPORT_SYMBOL sound/core/snd-timer 0xd619ae51 snd_timer_pause -EXPORT_SYMBOL sound/core/snd-timer 0xdb5ca0df snd_timer_global_free -EXPORT_SYMBOL sound/core/snd-timer 0xe3eec925 snd_timer_close -EXPORT_SYMBOL sound/core/snd-timer 0xeffb4109 snd_timer_global_new -EXPORT_SYMBOL sound/core/snd-timer 0xf39c4185 snd_timer_instance_free -EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x4155f5e3 snd_mpu401_uart_new +EXPORT_SYMBOL sound/core/snd-seq-device 0xc4a6d59e snd_seq_device_new +EXPORT_SYMBOL sound/core/snd-timer 0x0b54fa2e snd_timer_new +EXPORT_SYMBOL sound/core/snd-timer 0x15c8b2e5 snd_timer_notify +EXPORT_SYMBOL sound/core/snd-timer 0x1ccf824d snd_timer_continue +EXPORT_SYMBOL sound/core/snd-timer 0x2d37a691 snd_timer_stop +EXPORT_SYMBOL sound/core/snd-timer 0x45329eed snd_timer_global_register +EXPORT_SYMBOL sound/core/snd-timer 0x8888e2e1 snd_timer_global_new +EXPORT_SYMBOL sound/core/snd-timer 0x89240d25 snd_timer_instance_free +EXPORT_SYMBOL sound/core/snd-timer 0x946d5f8d snd_timer_interrupt +EXPORT_SYMBOL sound/core/snd-timer 0xaa0a3fe4 snd_timer_global_free +EXPORT_SYMBOL sound/core/snd-timer 0xc52decdf snd_timer_instance_new +EXPORT_SYMBOL sound/core/snd-timer 0xca1aac25 snd_timer_open +EXPORT_SYMBOL sound/core/snd-timer 0xd79da494 snd_timer_resolution +EXPORT_SYMBOL sound/core/snd-timer 0xd9af1eff snd_timer_start +EXPORT_SYMBOL sound/core/snd-timer 0xdf50e3ca snd_timer_pause +EXPORT_SYMBOL sound/core/snd-timer 0xef67acce snd_timer_close EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x6d629c59 snd_mpu401_uart_interrupt_tx EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0xc0fec227 snd_mpu401_uart_interrupt +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0xf92fd801 snd_mpu401_uart_new EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x05060a19 snd_opl3_regmap -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x06ecc7d3 snd_opl3_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x5db024b6 snd_opl3_init -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x629ca9fa snd_opl3_hwdep_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xcfbc492b snd_opl3_find_patch -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xd7689415 snd_opl3_create -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xd7ae9c89 snd_opl3_interrupt -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xdc50a96f snd_opl3_reset -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xebb9111f snd_opl3_load_patch -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xf5158034 snd_opl3_timer_new -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x00962167 snd_vx_check_reg_bit +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x22f26330 snd_opl3_reset +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x4eb772e2 snd_opl3_init +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x7e53679d snd_opl3_find_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x8245de81 snd_opl3_load_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x86e159df snd_opl3_interrupt +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x9188c855 snd_opl3_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xd70e606e snd_opl3_hwdep_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xe4d19740 snd_opl3_timer_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xfd128724 snd_opl3_create +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x08d55c7e snd_vx_free_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x1b97b835 snd_vx_create EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x226138b0 snd_vx_threaded_irq_handler -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x605e6b56 snd_vx_dsp_load -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x62d9575c snd_vx_create -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x685d9994 snd_vx_free_firmware -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x96af9195 snd_vx_suspend -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x98a41cb4 snd_vx_dsp_boot -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xb3ed1f60 snd_vx_setup_firmware -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xc20e00e9 snd_vx_load_boot_image -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xcadcb93a snd_vx_resume +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x2836fcda snd_vx_suspend +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x3c5127e4 snd_vx_load_boot_image +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x61aba1a7 snd_vx_setup_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xbbc1f6d4 snd_vx_check_reg_bit +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xcf648fc5 snd_vx_dsp_boot +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xd74c0759 snd_vx_resume +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xd9a16603 snd_vx_dsp_load EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf1f04d23 snd_vx_irq_handler -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x0131fa47 fw_iso_resources_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x02e76b0b cmp_connection_check_used -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x037fcfc5 cmp_connection_release -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x125360af cmp_connection_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x18084c70 avc_general_get_sig_fmt -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x1fc3c6ab fw_iso_resources_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x06992e11 fw_iso_resources_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x07d18614 amdtp_stream_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x0eb265c3 amdtp_stream_set_parameters +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x1ad8e73c fw_iso_resources_update EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x20254e45 amdtp_syt_intervals -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2c706551 cmp_connection_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2e9c386e amdtp_stream_update -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x38c62d0c fcp_bus_reset -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x39d461a9 amdtp_stream_get_max_payload -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x4cd4f73e amdtp_stream_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3d11ab13 amdtp_stream_pcm_abort +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x42c51c3c amdtp_stream_get_max_payload +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x4eb2bd87 amdtp_stream_init EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x53ca18e8 amdtp_rate_table -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x56eab4ee cmp_connection_establish -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x5e81c0d5 cmp_connection_break -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x6485931e cmp_connection_reserve -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x76f1ca29 amdtp_stream_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x79aafdc3 iso_packets_buffer_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7bb188e7 fw_iso_resources_allocate -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x85da8afd amdtp_stream_pcm_prepare -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x88257f99 amdtp_stream_pcm_abort -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x9799e858 avc_general_get_plug_info -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa1437fe2 amdtp_stream_add_pcm_hw_constraints -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb8f94761 amdtp_stream_set_parameters -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc91567fc cmp_connection_update -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xcccda2e1 snd_fw_transaction -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe35e4294 fw_iso_resources_free -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xf2199020 iso_packets_buffer_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xf430365a fw_iso_resources_update -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xf57e27d3 avc_general_set_sig_fmt -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xf61d182d fcp_avc_transaction -EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x9c4ae9d9 snd_ak4113_resume -EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0xce874a5b snd_ak4113_suspend -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x090ada92 snd_ak4114_reg_write -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x354ca37e snd_ak4114_external_rate -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x3ff5590a snd_ak4114_create -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x42ebaba2 snd_ak4114_check_rate_and_errors -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x55e7679c snd_ak4114_reinit -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x964ac7c3 snd_ak4114_suspend -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xa4d7faca snd_ak4114_resume -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xfd2c566a snd_ak4114_build -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x7d2bdff6 snd_akm4xxx_init -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x95a1ea6b snd_akm4xxx_build_controls -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xd21c3805 snd_akm4xxx_write -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xe92ae0ab snd_akm4xxx_reset -EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x54fe0330 snd_pt2258_reset -EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0xdd8cc7eb snd_pt2258_build_controls -EXPORT_SYMBOL sound/i2c/snd-i2c 0x14aceea8 snd_i2c_device_free -EXPORT_SYMBOL sound/i2c/snd-i2c 0x64d36bcc snd_i2c_bus_create -EXPORT_SYMBOL sound/i2c/snd-i2c 0xa628b26b snd_i2c_device_create -EXPORT_SYMBOL sound/i2c/snd-i2c 0xb48b0227 snd_i2c_readbytes -EXPORT_SYMBOL sound/i2c/snd-i2c 0xc0893dbe snd_i2c_sendbytes -EXPORT_SYMBOL sound/i2c/snd-i2c 0xf7b11439 snd_i2c_probeaddr -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x14677897 snd_sbdsp_get_byte -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x18c183bc snd_sbmixer_suspend -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x38ae3e8f snd_sbdsp_create -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x62966da8 snd_sbmixer_read -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x836c8d54 snd_sbmixer_new -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xa6219976 snd_sbdsp_reset -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xc112ab54 snd_sbdsp_command -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xe79f92e7 snd_sbmixer_add_ctl -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xea4cfc04 snd_sbmixer_write -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xf1e1dfb1 snd_sbmixer_resume -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x082cc041 snd_ac97_tune_hardware -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x11f6055b snd_ac97_pcm_open -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x16d7de9a snd_ac97_suspend -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x2b172950 snd_ac97_bus -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x38d7b69d snd_ac97_get_short_name -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x425bd599 snd_ac97_read -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x8d4b197d snd_ac97_resume -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xa4097dc6 snd_ac97_pcm_close -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xa6347ec0 snd_ac97_pcm_assign -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xbc74f729 snd_ac97_write_cache -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xc2bda6c1 snd_ac97_update_bits -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xc65e12fe snd_ac97_set_rate -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xce2b1a2b snd_ac97_pcm_double_rate_rules -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xd1f3cb12 snd_ac97_write -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xd2b52b89 snd_ac97_mixer -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xe51444e1 snd_ac97_update_power -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xfac356fb snd_ac97_update -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x0e813edc snd_ice1712_akm4xxx_free -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x625457f3 snd_ice1712_akm4xxx_build_controls -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xba599f25 snd_ice1712_akm4xxx_init -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x1b104fac oxygen_pci_pm -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x3073b719 oxygen_read_ac97 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x427de6e8 oxygen_write_spi -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x45587a59 oxygen_update_dac_routing -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x6da6ce9a oxygen_read16 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x6dc2dade oxygen_pci_shutdown -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x7506d7aa oxygen_write16_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x8cf2da5b oxygen_pci_probe -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xa5791778 oxygen_write_uart -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xa69b6fdf oxygen_write16 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xae3b9157 oxygen_read32 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xbbeef1c8 oxygen_write_ac97_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xbd9466aa oxygen_reset_uart -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xc2f110f1 oxygen_write8 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xe264055f oxygen_read8 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xe2ed8969 oxygen_write8_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xe5af9f11 oxygen_write32 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xe94d944f oxygen_write32_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xeb8964e0 oxygen_write_i2c -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xfce3a1db oxygen_write_ac97 +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x5f8e8186 fw_iso_resources_allocate +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7965abb7 avc_general_set_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7e95f1b0 fcp_bus_reset +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7ef06b3c iso_packets_buffer_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x85e9db2b cmp_connection_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x910db882 fcp_avc_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x97107676 amdtp_stream_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x9dae3afb avc_general_get_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xac378bc8 cmp_connection_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xaef19944 cmp_connection_release +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xafe5ec7c avc_general_get_plug_info +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb1001da4 cmp_connection_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb2185fb0 amdtp_stream_pcm_prepare +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc1881ed3 snd_fw_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd42f2a79 iso_packets_buffer_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe79101f0 amdtp_stream_add_pcm_hw_constraints +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe79b5ed0 cmp_connection_establish +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xeb9a32ab cmp_connection_check_used +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xee3356e1 cmp_connection_reserve +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xf61a8e1c cmp_connection_break +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xf6230bd8 fw_iso_resources_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xfd85ea37 fw_iso_resources_free +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x53827076 snd_ak4113_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0xc523e943 snd_ak4113_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x29e9e4f3 snd_ak4114_check_rate_and_errors +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x38ca2be7 snd_ak4114_reinit +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x4ca8ee1c snd_ak4114_build +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x691fce15 snd_ak4114_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x8278e2c9 snd_ak4114_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xa6c10b9a snd_ak4114_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xaec73059 snd_ak4114_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xebb5d438 snd_ak4114_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x19aa216e snd_akm4xxx_init +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x2b9f6168 snd_akm4xxx_build_controls +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x302e5081 snd_akm4xxx_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xd2324cc0 snd_akm4xxx_reset +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x86556bbe snd_pt2258_build_controls +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0xb6ab2abd snd_pt2258_reset +EXPORT_SYMBOL sound/i2c/snd-i2c 0x8fcfe112 snd_i2c_sendbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0x9330f691 snd_i2c_probeaddr +EXPORT_SYMBOL sound/i2c/snd-i2c 0x9e2e032e snd_i2c_readbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0xc7bb48a2 snd_i2c_device_free +EXPORT_SYMBOL sound/i2c/snd-i2c 0xcb5d3160 snd_i2c_device_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0xd2c362fc snd_i2c_bus_create +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x0423cd4c snd_sbmixer_suspend +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x0e5a6daf snd_sbmixer_resume +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x14da7053 snd_sbdsp_create +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x5ee2d33e snd_sbdsp_command +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x63a99f4d snd_sbdsp_get_byte +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xa0c0da98 snd_sbmixer_new +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xa9aeebeb snd_sbmixer_write +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xd911fd4e snd_sbdsp_reset +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xde45d347 snd_sbmixer_read +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xea1d1939 snd_sbmixer_add_ctl +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x3dd76589 snd_ac97_resume +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x4c96c756 snd_ac97_set_rate +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x6414e2e8 snd_ac97_get_short_name +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x65359e98 snd_ac97_update +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x76bd9185 snd_ac97_update_bits +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x779354bf snd_ac97_pcm_open +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x7f05c9e0 snd_ac97_pcm_double_rate_rules +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x8554e529 snd_ac97_bus +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x8821a20c snd_ac97_tune_hardware +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x889a5303 snd_ac97_pcm_close +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x993bfde4 snd_ac97_write_cache +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xbe53402e snd_ac97_mixer +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xc1d55301 snd_ac97_update_power +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xc8f6857d snd_ac97_pcm_assign +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xcfc697cb snd_ac97_suspend +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xda2ab898 snd_ac97_read +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xf0744226 snd_ac97_write +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x164234a4 snd_ice1712_akm4xxx_free +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x34f90204 snd_ice1712_akm4xxx_init +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x4b0241d0 snd_ice1712_akm4xxx_build_controls +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x01061021 oxygen_write_ac97_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x1e7f6b6d oxygen_pci_shutdown +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x279ed8e6 oxygen_update_dac_routing +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x28e4dff1 oxygen_read8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x35a357bd oxygen_write32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x609fee0d oxygen_write8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x79c91a3f oxygen_pci_probe +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x7eaa385b oxygen_write32_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x8bc19fcc oxygen_reset_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x94073518 oxygen_pci_pm +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x96c56155 oxygen_write_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x981a5016 oxygen_read_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xac3754bc oxygen_write_spi +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xb868e11e oxygen_write_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xc8536acd oxygen_write16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xcdb1eac5 oxygen_write8_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xeb019c7c oxygen_read16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xf05082b0 oxygen_write16_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xf67d7a5c oxygen_read32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xfd72d110 oxygen_write_i2c EXPORT_SYMBOL sound/soc/amd/acp_audio_dma 0xea74f232 bt_uart_enable -EXPORT_SYMBOL sound/soc/codecs/snd-soc-adau1372 0x79346ec7 adau1372_probe -EXPORT_SYMBOL sound/soc/codecs/snd-soc-lpass-wsa-macro 0xd78335e1 wsa_macro_set_spkr_mode -EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0x5a9f1f02 pcm3060_regmap -EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0xa0d79feb pcm3060_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-adau1372 0xeac1a3ff adau1372_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-lpass-wsa-macro 0x9ab8efba wsa_macro_set_spkr_mode +EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0x327394cd pcm3060_regmap +EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0xdd6294b6 pcm3060_probe EXPORT_SYMBOL sound/soc/codecs/snd-soc-rt715 0xed2acb24 hda_to_sdw -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x369ea2f7 tlv320aic23_probe -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x84c0faaa tlv320aic23_regmap -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x3ad19177 aic32x4_regmap_config -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0xdce9f8bf aic32x4_remove -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0xfd816185 aic32x4_probe -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic3x 0x5f204227 aic3x_remove -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic3x 0xaa69655d aic3x_probe -EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x03673591 wcd_mbhc_init -EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x1ec76190 wcd_dt_parse_mbhc_data +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0xbf61a27c tlv320aic23_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0xf62ca511 tlv320aic23_regmap +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x97439dd6 aic32x4_regmap_config +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0xe6e88d70 aic32x4_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0xf9f62099 aic32x4_remove +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic3x 0x67748c19 aic3x_remove +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic3x 0xfbca383c aic3x_probe EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x3a195ca9 wcd_mbhc_get_impedance -EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x3a9d04f6 wcd_mbhc_start +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x4d6c8a68 wcd_dt_parse_mbhc_data EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x789ebe56 wcd_mbhc_set_hph_type EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 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/snd-soc-core 0x5e6b6820 snd_soc_alloc_ac97_component -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x00897583 snd_sof_parse_module_memcpy -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x03cf6f19 sof_mailbox_read -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x0bee7394 snd_sof_pci_update_bits -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x0c6185c9 sof_io_read -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x139d026c snd_sof_load_firmware -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x17bbab91 sof_machine_check -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x18712167 sof_mailbox_write +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0xef6fb9e2 wcd_mbhc_init +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0xfcdc3384 wcd_mbhc_start +EXPORT_SYMBOL sound/soc/snd-soc-core 0xf9d49b0e snd_soc_alloc_ac97_component +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x0111b915 snd_sof_runtime_suspend +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x04475456 snd_sof_free_trace +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x045718b6 snd_sof_dsp_update_bits +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x0871a528 sof_mailbox_write +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x0ac24e05 sof_fw_ready +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x0b66e030 snd_sof_resume +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x0d325abd snd_sof_get_status +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x1358f113 snd_sof_ipc_msgs_rx +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x19817cb3 snd_sof_suspend +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x1c31e135 snd_sof_ipc_stream_posn EXPORT_SYMBOL sound/soc/sof/snd-sof 0x1d22a5ea sof_ipc_tx_message_no_pm -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x22ca6c7f snd_sof_ipc_reply -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x23d9d11a snd_sof_dsp_update_bits64 -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x23e12740 sof_dai_get_mclk -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x2f6af061 sof_fw_ready -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x33e70a55 snd_sof_device_probe_completed -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x3414f0e1 snd_sof_suspend -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x3812686d sof_pcm_dai_link_fixup -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x39ac8a71 sof_block_write -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x408ddab8 snd_sof_complete -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x438c0a53 snd_sof_fw_unload -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x440384f7 sof_machine_unregister -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x48377d11 sof_io_write -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x49563461 snd_sof_load_topology -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x4e3e5d5d snd_sof_dsp_update_bits_forced -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x5125214d snd_sof_ipc_valid -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x543a03cf snd_sof_ipc_set_get_comp_data -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x61ecd2e3 sof_io_write64 -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x621f5984 sof_machine_register -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x706be097 snd_sof_dsp_update_bits64_unlocked -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x713ecfcf snd_sof_load_firmware_memcpy -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x78eddbf1 sof_block_read -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x7e18b503 snd_sof_ipc_free -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x8b148491 snd_sof_dsp_panic -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x9acf4457 snd_sof_trace_notify_for_error -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x9aecd897 snd_sof_prepare -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x9f1b7b4a snd_sof_get_status -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa7742d63 snd_sof_runtime_resume -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa7f56b39 snd_sof_device_shutdown -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa82d5bdc snd_sof_ipc_msgs_rx -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xad4e9ab5 snd_sof_run_firmware -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb2fd9f20 snd_sof_fw_parse_ext_data -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb80af39f snd_sof_release_trace -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xbbd16ae2 snd_sof_create_page_table -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xbdc64369 snd_sof_resume -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc2ca6ab1 snd_sof_ipc_init -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc9b08a5a snd_sof_device_remove -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xccfbd55b sof_io_read64 +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x226fb317 snd_sof_ipc_init +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x265f6762 snd_sof_ipc_set_get_comp_data +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x2c59ded7 snd_sof_dsp_mailbox_init +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x2ce431e7 snd_sof_runtime_resume +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x309ff7b7 snd_sof_complete +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x331fe1d7 snd_sof_pcm_period_elapsed +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x351eedae snd_sof_handle_fw_exception +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x35f57d03 snd_sof_pci_update_bits +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x404d35e1 snd_sof_load_firmware +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x421f662a snd_sof_create_page_table +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x45ff4a41 snd_sof_load_topology +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x4f9eb569 snd_sof_release_trace +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x59ca37c0 snd_sof_init_trace +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x62309e06 sof_io_read +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x66e502bc snd_sof_ipc_reply +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x67dc3932 snd_sof_run_firmware +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x67f1c003 sof_machine_unregister +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x72d43bd0 snd_sof_device_probe +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x736c581e snd_sof_prepare +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x73ce0eb9 snd_sof_runtime_idle +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x74b55498 snd_sof_dsp_update_bits_forced +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x7ad499f0 snd_sof_dsp_panic +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x82adad84 sof_machine_register +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x8519bc5c sof_io_write +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x8558b08d sof_block_read +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x86ec310e sof_pcm_dai_link_fixup +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x8f9dba92 snd_sof_dsp_update_bits64 +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x8fa96c9b snd_sof_dsp_only_d0i3_compatible_stream_active +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x94df3917 snd_sof_ipc_valid +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa5bdb04d snd_sof_parse_module_memcpy +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xaaccf670 sof_machine_check +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb97563c8 sof_dai_get_bclk +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xbc67979f sof_mailbox_read +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xbe6e6fe1 sof_io_write64 +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc2fe2df9 snd_sof_load_firmware_raw +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc711d033 snd_sof_fw_parse_ext_data +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc7496acc snd_sof_ipc_free +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xcdeceaf5 snd_sof_fw_unload EXPORT_SYMBOL sound/soc/sof/snd-sof 0xcfdc5f98 sof_ipc_tx_message -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd23021f2 snd_sof_runtime_idle -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd4dbab91 snd_sof_runtime_suspend -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xe0c86900 snd_sof_dsp_only_d0i3_compatible_stream_active -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xe1c54ada snd_sof_init_trace -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xe382b590 snd_sof_dsp_update_bits_unlocked -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xe54bea80 sof_dai_get_bclk -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xe6486d3b snd_sof_dsp_mailbox_init -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xe67af8cc snd_sof_ipc_stream_posn -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xeb5655af snd_sof_load_firmware_raw -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf1c2c002 snd_sof_device_probe -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf50f1268 snd_sof_free_trace -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf9a17f8d snd_sof_handle_fw_exception -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xfa3d15a4 snd_sof_pcm_period_elapsed -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xfb66e595 snd_sof_dsp_update_bits -EXPORT_SYMBOL sound/soundcore 0x0c91bd0f register_sound_special_device -EXPORT_SYMBOL sound/soundcore 0x20a52f32 register_sound_dsp +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd157d69c snd_sof_dsp_update_bits_unlocked +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd1e01cf6 sof_io_read64 +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd1edc1b1 sof_block_write +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xda250e65 snd_sof_device_probe_completed +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xda4a3d8a sof_dai_get_mclk +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xdb73d452 snd_sof_trace_notify_for_error +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xdbd9600b snd_sof_load_firmware_memcpy +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xef4006c1 snd_sof_device_shutdown +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf9eaa709 snd_sof_dsp_update_bits64_unlocked +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xfad55f8d snd_sof_device_remove +EXPORT_SYMBOL sound/soundcore 0x1179fa83 sound_class +EXPORT_SYMBOL sound/soundcore 0x4e9c4315 register_sound_special_device +EXPORT_SYMBOL sound/soundcore 0x52c26ca9 register_sound_dsp EXPORT_SYMBOL sound/soundcore 0x7afc9d8a unregister_sound_mixer -EXPORT_SYMBOL sound/soundcore 0x8e7fabe5 register_sound_mixer EXPORT_SYMBOL sound/soundcore 0x99c95fa5 unregister_sound_special -EXPORT_SYMBOL sound/soundcore 0xa3a8a93d sound_class +EXPORT_SYMBOL sound/soundcore 0xc8e5f148 register_sound_special EXPORT_SYMBOL sound/soundcore 0xcd083b10 unregister_sound_dsp -EXPORT_SYMBOL sound/soundcore 0xf5f15474 register_sound_special +EXPORT_SYMBOL sound/soundcore 0xd7760e62 register_sound_mixer EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x16756dc0 snd_usbmidi_input_start EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x63343b1d snd_usbmidi_input_stop -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x873bf1f7 __snd_usbmidi_create +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xa0eba600 __snd_usbmidi_create EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xb2af19e1 snd_usbmidi_resume EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xbed43a41 snd_usbmidi_suspend EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xd9d2bb03 snd_usbmidi_disconnect +EXPORT_SYMBOL vmlinux 0x00005e13 devm_gen_pool_create EXPORT_SYMBOL vmlinux 0x00148653 vsnprintf -EXPORT_SYMBOL vmlinux 0x001f5252 proc_create_data +EXPORT_SYMBOL vmlinux 0x001decf7 dev_addr_init +EXPORT_SYMBOL vmlinux 0x0030cb44 d_genocide EXPORT_SYMBOL vmlinux 0x003a7a96 h_ipi_redirect -EXPORT_SYMBOL vmlinux 0x00492c2f paca_ptrs -EXPORT_SYMBOL vmlinux 0x00688fe7 cdev_device_del -EXPORT_SYMBOL vmlinux 0x006cc082 jbd2_log_start_commit -EXPORT_SYMBOL vmlinux 0x006e8942 iw_handler_get_thrspy -EXPORT_SYMBOL vmlinux 0x00739bcd devfreq_recommended_opp -EXPORT_SYMBOL vmlinux 0x00817b18 sock_no_listen -EXPORT_SYMBOL vmlinux 0x00915abf show_init_ipc_ns +EXPORT_SYMBOL vmlinux 0x005badf2 pci_free_irq +EXPORT_SYMBOL vmlinux 0x005f05f9 input_unregister_device +EXPORT_SYMBOL vmlinux 0x00890f57 pcix_set_mmrbc +EXPORT_SYMBOL vmlinux 0x0090441f netdev_update_features +EXPORT_SYMBOL vmlinux 0x00921bbc phy_reset_after_clk_enable EXPORT_SYMBOL vmlinux 0x009249fe gen_pool_virt_to_phys -EXPORT_SYMBOL vmlinux 0x0097a330 phy_init_eee -EXPORT_SYMBOL vmlinux 0x00a7ea99 inet6_del_protocol -EXPORT_SYMBOL vmlinux 0x00ac64ad phy_attached_info -EXPORT_SYMBOL vmlinux 0x00b30148 brioctl_set +EXPORT_SYMBOL vmlinux 0x00a2dc03 security_task_getsecid_subj +EXPORT_SYMBOL vmlinux 0x00ac2f61 genphy_read_lpa EXPORT_SYMBOL vmlinux 0x00b4e615 posix_acl_equiv_mode -EXPORT_SYMBOL vmlinux 0x00c565d9 mini_qdisc_pair_init -EXPORT_SYMBOL vmlinux 0x00c5d544 rtc_add_groups +EXPORT_SYMBOL vmlinux 0x00b7cba3 mipi_dsi_set_maximum_return_packet_size +EXPORT_SYMBOL vmlinux 0x00bd8ced alloc_etherdev_mqs EXPORT_SYMBOL vmlinux 0x00d7e722 vme_lm_count -EXPORT_SYMBOL vmlinux 0x00dc2b7d sk_filter_trim_cap -EXPORT_SYMBOL vmlinux 0x00de1559 dma_map_page_attrs -EXPORT_SYMBOL vmlinux 0x00ea562e tty_register_device +EXPORT_SYMBOL vmlinux 0x00d854ca softnet_data EXPORT_SYMBOL vmlinux 0x01000e51 schedule -EXPORT_SYMBOL vmlinux 0x010719e9 sock_from_file +EXPORT_SYMBOL vmlinux 0x011b1bc7 of_find_mipi_dsi_host_by_node +EXPORT_SYMBOL vmlinux 0x011c309a __module_put_and_exit EXPORT_SYMBOL vmlinux 0x0129c4f8 par_io_data_set EXPORT_SYMBOL vmlinux 0x012a97fc xor_altivec_4 -EXPORT_SYMBOL vmlinux 0x0131a7ef put_devmap_managed_page +EXPORT_SYMBOL vmlinux 0x01305094 of_phy_get_and_connect EXPORT_SYMBOL vmlinux 0x0140c525 gen_pool_create EXPORT_SYMBOL vmlinux 0x0147812c kblockd_mod_delayed_work_on EXPORT_SYMBOL vmlinux 0x015af7f4 system_state +EXPORT_SYMBOL vmlinux 0x015b3d74 __devm_mdiobus_register EXPORT_SYMBOL vmlinux 0x01757935 rdmacg_register_device EXPORT_SYMBOL vmlinux 0x017de3d5 nr_cpu_ids -EXPORT_SYMBOL vmlinux 0x0184e6f5 neigh_for_each EXPORT_SYMBOL vmlinux 0x018574a1 mb_cache_entry_delete +EXPORT_SYMBOL vmlinux 0x01865d2b devm_input_allocate_device EXPORT_SYMBOL vmlinux 0x0188cd88 vme_alloc_consistent -EXPORT_SYMBOL vmlinux 0x0192555c touchscreen_report_pos EXPORT_SYMBOL vmlinux 0x01982074 xa_set_mark EXPORT_SYMBOL vmlinux 0x0199c3bd ethtool_intersect_link_masks -EXPORT_SYMBOL vmlinux 0x01a62817 noop_qdisc -EXPORT_SYMBOL vmlinux 0x01ac5e42 tcp_fastopen_defer_connect -EXPORT_SYMBOL vmlinux 0x01bf29f4 pagecache_write_begin +EXPORT_SYMBOL vmlinux 0x01adb5c6 import_iovec +EXPORT_SYMBOL vmlinux 0x01b7c667 xfrm_init_replay EXPORT_SYMBOL vmlinux 0x01bf55fc paddr_vmcoreinfo_note -EXPORT_SYMBOL vmlinux 0x01cb25ad pci_release_resource -EXPORT_SYMBOL vmlinux 0x01d3c2c0 xattr_full_name -EXPORT_SYMBOL vmlinux 0x01dce5b5 bio_integrity_prep -EXPORT_SYMBOL vmlinux 0x01dee81b sock_alloc -EXPORT_SYMBOL vmlinux 0x01e03d29 md_bitmap_endwrite -EXPORT_SYMBOL vmlinux 0x01e80272 get_user_pages_remote EXPORT_SYMBOL vmlinux 0x01e80408 timer_interrupt -EXPORT_SYMBOL vmlinux 0x01ee3c56 block_read_full_page -EXPORT_SYMBOL vmlinux 0x01f01432 get_tree_nodev -EXPORT_SYMBOL vmlinux 0x01f8332b netdev_class_remove_file_ns -EXPORT_SYMBOL vmlinux 0x0205cfa9 phy_attach_direct +EXPORT_SYMBOL vmlinux 0x01ebcf00 vio_find_node +EXPORT_SYMBOL vmlinux 0x01fd1cb2 param_set_short +EXPORT_SYMBOL vmlinux 0x0202e905 simple_pin_fs EXPORT_SYMBOL vmlinux 0x020dbf27 bitmap_alloc EXPORT_SYMBOL vmlinux 0x02124474 ip_send_check +EXPORT_SYMBOL vmlinux 0x02141455 add_to_page_cache_locked +EXPORT_SYMBOL vmlinux 0x021bb5ff scsi_partsize +EXPORT_SYMBOL vmlinux 0x021fc0fd create_empty_buffers EXPORT_SYMBOL vmlinux 0x0228925f iowrite64_hi_lo -EXPORT_SYMBOL vmlinux 0x022f99be pci_try_set_mwi -EXPORT_SYMBOL vmlinux 0x02338f61 get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0x02311c85 blk_rq_map_user_iov +EXPORT_SYMBOL vmlinux 0x02434c58 tty_unregister_device EXPORT_SYMBOL vmlinux 0x0248efd3 kstrtobool_from_user -EXPORT_SYMBOL vmlinux 0x0249d56c unregister_netdevice_notifier_dev_net -EXPORT_SYMBOL vmlinux 0x024a2f4c sb_set_blocksize -EXPORT_SYMBOL vmlinux 0x024d12bf vfs_get_tree EXPORT_SYMBOL vmlinux 0x024e21fc unregister_sysctl_table -EXPORT_SYMBOL vmlinux 0x025876a8 kthread_create_worker -EXPORT_SYMBOL vmlinux 0x025aad73 netdev_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0x024e6a2c xfrm_trans_queue +EXPORT_SYMBOL vmlinux 0x024f0fd7 block_truncate_page +EXPORT_SYMBOL vmlinux 0x0253cbc6 tcp_rcv_state_process EXPORT_SYMBOL vmlinux 0x025c1602 __debugger_sstep +EXPORT_SYMBOL vmlinux 0x026761a0 netpoll_setup EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues -EXPORT_SYMBOL vmlinux 0x027fddc0 vfs_dedupe_file_range -EXPORT_SYMBOL vmlinux 0x02808216 param_get_ullong -EXPORT_SYMBOL vmlinux 0x0285904c csum_and_copy_from_iter EXPORT_SYMBOL vmlinux 0x0296695f refcount_warn_saturate -EXPORT_SYMBOL vmlinux 0x029bd558 page_pool_release_page EXPORT_SYMBOL vmlinux 0x029fcfb3 abort_creds -EXPORT_SYMBOL vmlinux 0x02a18c74 nf_conntrack_destroy EXPORT_SYMBOL vmlinux 0x02b3a92d try_wait_for_completion +EXPORT_SYMBOL vmlinux 0x02b75f2b to_nd_pfn EXPORT_SYMBOL vmlinux 0x02b8ab42 sg_copy_to_buffer -EXPORT_SYMBOL vmlinux 0x02b9792b sync_mapping_buffers EXPORT_SYMBOL vmlinux 0x02c065f8 ucc_set_qe_mux_mii_mng EXPORT_SYMBOL vmlinux 0x02c3c40e __debugger_break_match -EXPORT_SYMBOL vmlinux 0x02d03b76 sync_inode_metadata +EXPORT_SYMBOL vmlinux 0x02cc399a fddi_type_trans EXPORT_SYMBOL vmlinux 0x02df50b0 jiffies -EXPORT_SYMBOL vmlinux 0x02e085f8 set_create_files_as -EXPORT_SYMBOL vmlinux 0x02e649ee param_set_hexint -EXPORT_SYMBOL vmlinux 0x02f72d47 crypto_sha1_update -EXPORT_SYMBOL vmlinux 0x03023b24 pci_fixup_cardbus -EXPORT_SYMBOL vmlinux 0x0308932e mnt_set_expiry -EXPORT_SYMBOL vmlinux 0x031405bf __ip_select_ident -EXPORT_SYMBOL vmlinux 0x031a243b tty_lock -EXPORT_SYMBOL vmlinux 0x0325ee61 of_graph_get_port_parent -EXPORT_SYMBOL vmlinux 0x03323c38 security_sctp_sk_clone -EXPORT_SYMBOL vmlinux 0x0332a979 loop_register_transfer +EXPORT_SYMBOL vmlinux 0x02faf7de nosteal_pipe_buf_ops +EXPORT_SYMBOL vmlinux 0x03149af0 pci_write_vpd +EXPORT_SYMBOL vmlinux 0x0314c045 rtas EXPORT_SYMBOL vmlinux 0x0334795d icst307_s2div EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl -EXPORT_SYMBOL vmlinux 0x033d9230 scsi_scan_host -EXPORT_SYMBOL vmlinux 0x03535713 input_unregister_handle +EXPORT_SYMBOL vmlinux 0x033a8371 cdrom_release +EXPORT_SYMBOL vmlinux 0x034c0853 jbd2_journal_dirty_metadata +EXPORT_SYMBOL vmlinux 0x03586b7e netlink_unicast +EXPORT_SYMBOL vmlinux 0x03608f8f shrink_dcache_parent +EXPORT_SYMBOL vmlinux 0x0360d67f make_flow_keys_digest EXPORT_SYMBOL vmlinux 0x0366307a console_suspend_enabled +EXPORT_SYMBOL vmlinux 0x037008cf inet_offloads +EXPORT_SYMBOL vmlinux 0x037306dc nf_log_trace EXPORT_SYMBOL vmlinux 0x037a0cba kfree +EXPORT_SYMBOL vmlinux 0x037a4f39 dns_query EXPORT_SYMBOL vmlinux 0x03815f35 ledtrig_disk_activity -EXPORT_SYMBOL vmlinux 0x0381aa09 __pci_register_driver -EXPORT_SYMBOL vmlinux 0x0383f740 stream_open -EXPORT_SYMBOL vmlinux 0x038a1d9b security_socket_getpeersec_dgram -EXPORT_SYMBOL vmlinux 0x038aac64 dup_iter +EXPORT_SYMBOL vmlinux 0x0389a852 param_get_hexint +EXPORT_SYMBOL vmlinux 0x038a8651 proc_create_data EXPORT_SYMBOL vmlinux 0x0397edd5 fb_edid_to_monspecs -EXPORT_SYMBOL vmlinux 0x03a04995 srp_timed_out -EXPORT_SYMBOL vmlinux 0x03b1de61 simple_transaction_release -EXPORT_SYMBOL vmlinux 0x03bc8a05 cdrom_dummy_generic_packet -EXPORT_SYMBOL vmlinux 0x03c56a13 inet_put_port -EXPORT_SYMBOL vmlinux 0x03cd40f5 scsi_block_requests -EXPORT_SYMBOL vmlinux 0x03d196c8 udp_read_sock -EXPORT_SYMBOL vmlinux 0x03f090b8 sock_set_mark -EXPORT_SYMBOL vmlinux 0x03f41eac igrab +EXPORT_SYMBOL vmlinux 0x039aa0c0 xsk_tx_peek_release_desc_batch +EXPORT_SYMBOL vmlinux 0x03a21a89 unix_detach_fds +EXPORT_SYMBOL vmlinux 0x03c0822b elv_rb_add +EXPORT_SYMBOL vmlinux 0x03d6339b pcie_capability_clear_and_set_dword +EXPORT_SYMBOL vmlinux 0x03fa2fe9 pci_request_regions EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram -EXPORT_SYMBOL vmlinux 0x04096028 __serio_register_port -EXPORT_SYMBOL vmlinux 0x041f6d9e dev_deactivate -EXPORT_SYMBOL vmlinux 0x043567e2 of_find_i2c_adapter_by_node -EXPORT_SYMBOL vmlinux 0x043cdde1 blk_mq_run_hw_queue -EXPORT_SYMBOL vmlinux 0x04442536 nobh_truncate_page +EXPORT_SYMBOL vmlinux 0x04110330 free_buffer_head +EXPORT_SYMBOL vmlinux 0x04113651 uart_match_port +EXPORT_SYMBOL vmlinux 0x042e2c68 d_prune_aliases +EXPORT_SYMBOL vmlinux 0x043e0807 sync_inode_metadata +EXPORT_SYMBOL vmlinux 0x0447092b fifo_create_dflt EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator +EXPORT_SYMBOL vmlinux 0x04581b97 inet6_protos +EXPORT_SYMBOL vmlinux 0x045f7f6e inet6_unregister_protosw +EXPORT_SYMBOL vmlinux 0x0460ee13 blkdev_get_by_path +EXPORT_SYMBOL vmlinux 0x046801d3 decrementer_clockevent EXPORT_SYMBOL vmlinux 0x0474edef kstrtou16_from_user -EXPORT_SYMBOL vmlinux 0x047c68c6 rdmacg_uncharge -EXPORT_SYMBOL vmlinux 0x0484bbf3 current_in_userns EXPORT_SYMBOL vmlinux 0x04863e28 hdmi_audio_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0x048891ef vlan_dev_vlan_proto EXPORT_SYMBOL vmlinux 0x0489ab0c _raw_read_lock_irq -EXPORT_SYMBOL vmlinux 0x048ceb77 ipv4_specific -EXPORT_SYMBOL vmlinux 0x04901e4e __pagevec_release -EXPORT_SYMBOL vmlinux 0x049e5874 security_inode_getsecctx -EXPORT_SYMBOL vmlinux 0x04ae356c blk_queue_virt_boundary -EXPORT_SYMBOL vmlinux 0x04b975eb bdevname +EXPORT_SYMBOL vmlinux 0x049ae69d register_netdevice_notifier_net +EXPORT_SYMBOL vmlinux 0x04aaecff put_cmsg_scm_timestamping64 +EXPORT_SYMBOL vmlinux 0x04b1a596 d_add_ci +EXPORT_SYMBOL vmlinux 0x04b239d6 skb_split +EXPORT_SYMBOL vmlinux 0x04d7b59c pcie_capability_read_dword EXPORT_SYMBOL vmlinux 0x04d9bf4e blk_set_stacking_limits EXPORT_SYMBOL vmlinux 0x04e1b263 ns_capable_setid +EXPORT_SYMBOL vmlinux 0x04e768bc md_update_sb EXPORT_SYMBOL vmlinux 0x04ea5d10 ksize EXPORT_SYMBOL vmlinux 0x04f158be cpu_sibling_map -EXPORT_SYMBOL vmlinux 0x0514532f udp_skb_destructor +EXPORT_SYMBOL vmlinux 0x050dfcd9 netif_napi_add EXPORT_SYMBOL vmlinux 0x05186ca4 flush_icache_range EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch -EXPORT_SYMBOL vmlinux 0x05363a27 vme_register_error_handler -EXPORT_SYMBOL vmlinux 0x053fc793 mipi_dsi_dcs_get_display_brightness +EXPORT_SYMBOL vmlinux 0x05270687 phy_start +EXPORT_SYMBOL vmlinux 0x05288f50 tcf_idr_create_from_flags +EXPORT_SYMBOL vmlinux 0x052f4993 inet6_ioctl +EXPORT_SYMBOL vmlinux 0x05391208 napi_disable +EXPORT_SYMBOL vmlinux 0x0540ba08 regset_get EXPORT_SYMBOL vmlinux 0x054496b4 schedule_timeout_interruptible -EXPORT_SYMBOL vmlinux 0x05453807 of_find_matching_node_and_match -EXPORT_SYMBOL vmlinux 0x056ba366 jbd2_trans_will_send_data_barrier -EXPORT_SYMBOL vmlinux 0x0570bd12 phy_resume -EXPORT_SYMBOL vmlinux 0x058cfcc3 d_instantiate_new -EXPORT_SYMBOL vmlinux 0x05996133 skb_copy_datagram_iter -EXPORT_SYMBOL vmlinux 0x05b25abc devm_nvmem_cell_put -EXPORT_SYMBOL vmlinux 0x05b5e18a phy_modify_paged -EXPORT_SYMBOL vmlinux 0x05c88419 md_reload_sb -EXPORT_SYMBOL vmlinux 0x05d76aee scsi_target_resume -EXPORT_SYMBOL vmlinux 0x05d94741 fs_context_for_reconfigure -EXPORT_SYMBOL vmlinux 0x05defa43 ip_frag_next -EXPORT_SYMBOL vmlinux 0x05e481eb phy_mac_interrupt -EXPORT_SYMBOL vmlinux 0x05e7363c dmaengine_get_unmap_data -EXPORT_SYMBOL vmlinux 0x05fae7db pci_bus_read_config_byte -EXPORT_SYMBOL vmlinux 0x05fd8f98 netdev_set_tc_queue +EXPORT_SYMBOL vmlinux 0x05477422 __mmap_lock_do_trace_released +EXPORT_SYMBOL vmlinux 0x05578fb6 devm_request_any_context_irq +EXPORT_SYMBOL vmlinux 0x0561650a tcp_set_rcvlowat +EXPORT_SYMBOL vmlinux 0x057191b6 dst_cow_metrics_generic +EXPORT_SYMBOL vmlinux 0x057b69ca __scm_destroy +EXPORT_SYMBOL vmlinux 0x0587322b fb_class +EXPORT_SYMBOL vmlinux 0x0590a6c2 blk_get_request +EXPORT_SYMBOL vmlinux 0x059ec6bc ptp_clock_unregister +EXPORT_SYMBOL vmlinux 0x05a4a5e2 mipi_dsi_dcs_get_pixel_format +EXPORT_SYMBOL vmlinux 0x05ca1d3e __inode_add_bytes +EXPORT_SYMBOL vmlinux 0x05fac50e seq_write EXPORT_SYMBOL vmlinux 0x06093a08 dma_fence_signal_timestamp_locked -EXPORT_SYMBOL vmlinux 0x0612d843 vfs_parse_fs_param_source EXPORT_SYMBOL vmlinux 0x061651be strcat -EXPORT_SYMBOL vmlinux 0x062496ed blk_mq_run_hw_queues +EXPORT_SYMBOL vmlinux 0x061bcb68 phy_modify_paged +EXPORT_SYMBOL vmlinux 0x062d61f5 simple_unlink EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user +EXPORT_SYMBOL vmlinux 0x063f428d insert_inode_locked4 EXPORT_SYMBOL vmlinux 0x063fbb83 ns_capable EXPORT_SYMBOL vmlinux 0x0668b595 _kstrtoul -EXPORT_SYMBOL vmlinux 0x06781614 devm_clk_get_optional -EXPORT_SYMBOL vmlinux 0x067822ef __cancel_dirty_page -EXPORT_SYMBOL vmlinux 0x068ad991 file_modified -EXPORT_SYMBOL vmlinux 0x06927b90 bioset_init +EXPORT_SYMBOL vmlinux 0x06717c84 lock_rename +EXPORT_SYMBOL vmlinux 0x0672e460 blk_queue_virt_boundary +EXPORT_SYMBOL vmlinux 0x067ec6c2 km_state_notify +EXPORT_SYMBOL vmlinux 0x068c4996 pcim_iomap_table +EXPORT_SYMBOL vmlinux 0x06a0670c mmc_request_done +EXPORT_SYMBOL vmlinux 0x06a39708 inode_newsize_ok +EXPORT_SYMBOL vmlinux 0x06a51640 udp_pre_connect EXPORT_SYMBOL vmlinux 0x06a86bc1 iowrite16 +EXPORT_SYMBOL vmlinux 0x06af7a0f netdev_notice +EXPORT_SYMBOL vmlinux 0x06b318d8 mmc_wait_for_req_done +EXPORT_SYMBOL vmlinux 0x06b4dee8 vm_iomap_memory +EXPORT_SYMBOL vmlinux 0x06c53b65 lookup_one_len EXPORT_SYMBOL vmlinux 0x06c8f2de slhc_compress -EXPORT_SYMBOL vmlinux 0x06d112ea vme_unregister_bridge -EXPORT_SYMBOL vmlinux 0x06ed9873 generic_permission -EXPORT_SYMBOL vmlinux 0x06f05bd4 locks_delete_block +EXPORT_SYMBOL vmlinux 0x06ce5f64 ilookup5_nowait +EXPORT_SYMBOL vmlinux 0x06dc0ac6 scsi_remove_host +EXPORT_SYMBOL vmlinux 0x06eb6074 udp_gro_complete +EXPORT_SYMBOL vmlinux 0x06f3a4aa blk_queue_split EXPORT_SYMBOL vmlinux 0x06f677c3 _raw_spin_unlock_bh -EXPORT_SYMBOL vmlinux 0x06f6ffb6 t10_pi_type1_crc -EXPORT_SYMBOL vmlinux 0x06f958e9 gnet_stats_copy_rate_est -EXPORT_SYMBOL vmlinux 0x0708eaa2 of_parse_phandle_with_fixed_args -EXPORT_SYMBOL vmlinux 0x071e47db blk_integrity_unregister +EXPORT_SYMBOL vmlinux 0x06fdea06 __cleancache_init_shared_fs +EXPORT_SYMBOL vmlinux 0x07198e74 xfrm_state_delete_tunnel +EXPORT_SYMBOL vmlinux 0x072060f9 sock_no_shutdown EXPORT_SYMBOL vmlinux 0x072f901c vme_master_rmw -EXPORT_SYMBOL vmlinux 0x077c38ec xfrm_unregister_type_offload -EXPORT_SYMBOL vmlinux 0x077fef96 nd_pfn_probe -EXPORT_SYMBOL vmlinux 0x0799d786 blkdev_issue_flush +EXPORT_SYMBOL vmlinux 0x07413d24 ip_route_input_noref +EXPORT_SYMBOL vmlinux 0x07474b7b kernel_listen +EXPORT_SYMBOL vmlinux 0x075cd873 register_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x07799a3a ppp_unregister_channel +EXPORT_SYMBOL vmlinux 0x077b7ec8 textsearch_find_continuous +EXPORT_SYMBOL vmlinux 0x07802eea param_get_byte +EXPORT_SYMBOL vmlinux 0x0795713a d_tmpfile EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap -EXPORT_SYMBOL vmlinux 0x07a899ac mmc_wait_for_cmd -EXPORT_SYMBOL vmlinux 0x07b9cc53 skb_flow_dissect_hash +EXPORT_SYMBOL vmlinux 0x07a9c815 sk_reset_timer EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit -EXPORT_SYMBOL vmlinux 0x07dbd728 sget_fc -EXPORT_SYMBOL vmlinux 0x07e8fed1 tcp_create_openreq_child -EXPORT_SYMBOL vmlinux 0x07eb8ca0 thermal_zone_device_critical +EXPORT_SYMBOL vmlinux 0x07ce47d9 file_path EXPORT_SYMBOL vmlinux 0x07f57478 pci_unmap_iospace EXPORT_SYMBOL vmlinux 0x0800473f __cond_resched EXPORT_SYMBOL vmlinux 0x0805f2c8 ecryptfs_get_auth_tok_key +EXPORT_SYMBOL vmlinux 0x080d6956 dm_table_get_md +EXPORT_SYMBOL vmlinux 0x0814b05d ip6_frag_init +EXPORT_SYMBOL vmlinux 0x081f5ddd pipe_unlock +EXPORT_SYMBOL vmlinux 0x08211933 of_n_size_cells EXPORT_SYMBOL vmlinux 0x08249512 iwe_stream_add_point -EXPORT_SYMBOL vmlinux 0x08280f86 reuseport_add_sock EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses -EXPORT_SYMBOL vmlinux 0x08385680 xfrm_lookup EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister -EXPORT_SYMBOL vmlinux 0x08407d93 of_read_drc_info_cell -EXPORT_SYMBOL vmlinux 0x0842bb4d xfrm_policy_byid -EXPORT_SYMBOL vmlinux 0x084b80c3 simple_rename -EXPORT_SYMBOL vmlinux 0x084ee93a stop_tty -EXPORT_SYMBOL vmlinux 0x0867e266 vfs_tmpfile -EXPORT_SYMBOL vmlinux 0x0872d661 gnet_stats_copy_basic_hw -EXPORT_SYMBOL vmlinux 0x087b5da3 of_io_request_and_map EXPORT_SYMBOL vmlinux 0x0882a449 security_xfrm_policy_alloc -EXPORT_SYMBOL vmlinux 0x08a7dbe7 neigh_direct_output -EXPORT_SYMBOL vmlinux 0x08b5e5f3 blk_mq_init_allocated_queue -EXPORT_SYMBOL vmlinux 0x08c5f6b9 twl6040_reg_write -EXPORT_SYMBOL vmlinux 0x08e01852 pm_vt_switch_unregister -EXPORT_SYMBOL vmlinux 0x08e6848d tso_build_data -EXPORT_SYMBOL vmlinux 0x08f5db54 tcf_idr_create -EXPORT_SYMBOL vmlinux 0x08f84e2f simple_nosetlease -EXPORT_SYMBOL vmlinux 0x09047997 pci_set_mwi -EXPORT_SYMBOL vmlinux 0x090e6e57 md_reap_sync_thread -EXPORT_SYMBOL vmlinux 0x090fae14 tty_port_destroy -EXPORT_SYMBOL vmlinux 0x09313da5 dquot_disable -EXPORT_SYMBOL vmlinux 0x0940727c _dev_notice -EXPORT_SYMBOL vmlinux 0x094d0248 iov_iter_kvec -EXPORT_SYMBOL vmlinux 0x095844d0 agp_allocate_memory -EXPORT_SYMBOL vmlinux 0x0969e15c bdev_dax_pgoff +EXPORT_SYMBOL vmlinux 0x0887ed10 radix__local_flush_tlb_mm +EXPORT_SYMBOL vmlinux 0x08880119 kernel_sock_ip_overhead +EXPORT_SYMBOL vmlinux 0x08932919 keyring_search +EXPORT_SYMBOL vmlinux 0x08a64a03 ip_generic_getfrag +EXPORT_SYMBOL vmlinux 0x08a97505 param_ops_invbool +EXPORT_SYMBOL vmlinux 0x08a989b3 kmem_cache_alloc_bulk +EXPORT_SYMBOL vmlinux 0x08b43a70 mroute6_is_socket +EXPORT_SYMBOL vmlinux 0x08b710c0 set_cached_acl +EXPORT_SYMBOL vmlinux 0x08daf345 blk_mq_complete_request +EXPORT_SYMBOL vmlinux 0x0909927b I_BDEV +EXPORT_SYMBOL vmlinux 0x090d1fc4 devm_extcon_unregister_notifier_all +EXPORT_SYMBOL vmlinux 0x0958b9bf fs_param_is_blob +EXPORT_SYMBOL vmlinux 0x09598dad scsi_vpd_tpg_id EXPORT_SYMBOL vmlinux 0x096a7e99 mutex_lock EXPORT_SYMBOL vmlinux 0x09769037 dmt_modes +EXPORT_SYMBOL vmlinux 0x09777969 blk_queue_chunk_sectors +EXPORT_SYMBOL vmlinux 0x097d96c7 open_exec EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap -EXPORT_SYMBOL vmlinux 0x09982ef3 dev_close +EXPORT_SYMBOL vmlinux 0x098e0c12 vfs_fileattr_get +EXPORT_SYMBOL vmlinux 0x098f14e3 phy_suspend +EXPORT_SYMBOL vmlinux 0x099057ae vmemmap EXPORT_SYMBOL vmlinux 0x0998cc3c hdmi_infoframe_unpack -EXPORT_SYMBOL vmlinux 0x09a3aace tso_start -EXPORT_SYMBOL vmlinux 0x09b68d33 audit_log_start +EXPORT_SYMBOL vmlinux 0x099f3710 send_sig +EXPORT_SYMBOL vmlinux 0x09aa43fd pskb_expand_head +EXPORT_SYMBOL vmlinux 0x09d42340 mmc_card_is_blockaddr EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions +EXPORT_SYMBOL vmlinux 0x0a037b89 t10_pi_type1_ip +EXPORT_SYMBOL vmlinux 0x0a1441ff km_policy_expired EXPORT_SYMBOL vmlinux 0x0a1dbc76 tcp_rx_skb_cache_key -EXPORT_SYMBOL vmlinux 0x0a1fd873 ip6mr_rule_default -EXPORT_SYMBOL vmlinux 0x0a27ab83 from_kprojid +EXPORT_SYMBOL vmlinux 0x0a1f8e7d mipi_dsi_dcs_exit_sleep_mode EXPORT_SYMBOL vmlinux 0x0a2a0bce nla_append -EXPORT_SYMBOL vmlinux 0x0a3f6e69 uart_remove_one_port -EXPORT_SYMBOL vmlinux 0x0a4488f4 inet_csk_reset_keepalive_timer -EXPORT_SYMBOL vmlinux 0x0a46cd0b scsi_device_resume -EXPORT_SYMBOL vmlinux 0x0a56d8b1 seq_puts -EXPORT_SYMBOL vmlinux 0x0a6007fd i2c_verify_client +EXPORT_SYMBOL vmlinux 0x0a357221 setup_arg_pages +EXPORT_SYMBOL vmlinux 0x0a4f8031 pcie_print_link_status +EXPORT_SYMBOL vmlinux 0x0a55d43c inode_needs_sync +EXPORT_SYMBOL vmlinux 0x0a58beab tso_build_hdr +EXPORT_SYMBOL vmlinux 0x0a5d6c60 buffer_migrate_page EXPORT_SYMBOL vmlinux 0x0a770832 register_memory_notifier -EXPORT_SYMBOL vmlinux 0x0a78aee7 devm_register_reboot_notifier -EXPORT_SYMBOL vmlinux 0x0a858cfa con_is_visible -EXPORT_SYMBOL vmlinux 0x0a9b2ed2 fixed_size_llseek +EXPORT_SYMBOL vmlinux 0x0a780058 devm_request_resource +EXPORT_SYMBOL vmlinux 0x0a8af074 i2c_smbus_write_i2c_block_data +EXPORT_SYMBOL vmlinux 0x0a93defd flow_rule_match_ip EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq -EXPORT_SYMBOL vmlinux 0x0aa724ee __breadahead -EXPORT_SYMBOL vmlinux 0x0aa9e8c1 get_user_pages_locked -EXPORT_SYMBOL vmlinux 0x0aabeda4 tty_wait_until_sent EXPORT_SYMBOL vmlinux 0x0aaccc92 pci_remap_iospace -EXPORT_SYMBOL vmlinux 0x0ac6e532 flow_rule_match_enc_ipv6_addrs -EXPORT_SYMBOL vmlinux 0x0acdfdfc pcie_capability_read_dword +EXPORT_SYMBOL vmlinux 0x0ab7ac1d ipv6_sock_mc_join EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all -EXPORT_SYMBOL vmlinux 0x0ae222a9 dev_uc_sync_multiple -EXPORT_SYMBOL vmlinux 0x0aeac21e fs_param_is_s32 -EXPORT_SYMBOL vmlinux 0x0afc8dc5 pci_clear_master -EXPORT_SYMBOL vmlinux 0x0b14af26 mod_zone_page_state -EXPORT_SYMBOL vmlinux 0x0b18a374 pcie_bandwidth_available +EXPORT_SYMBOL vmlinux 0x0aeaf5f8 blk_mq_stop_hw_queue +EXPORT_SYMBOL vmlinux 0x0af62f34 inode_sub_bytes +EXPORT_SYMBOL vmlinux 0x0afb77d8 phy_drivers_register +EXPORT_SYMBOL vmlinux 0x0b0dbab5 dquot_get_dqblk +EXPORT_SYMBOL vmlinux 0x0b144aee scsi_target_resume +EXPORT_SYMBOL vmlinux 0x0b17d1ba skb_checksum_help EXPORT_SYMBOL vmlinux 0x0b19b445 ioread8 EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user -EXPORT_SYMBOL vmlinux 0x0b26e93d nexthop_res_grp_activity_update +EXPORT_SYMBOL vmlinux 0x0b1c458d devm_pci_remap_cfgspace +EXPORT_SYMBOL vmlinux 0x0b2807a9 fib_notifier_ops_register +EXPORT_SYMBOL vmlinux 0x0b2b990b qdisc_put EXPORT_SYMBOL vmlinux 0x0b2e1ec7 h_get_mpp -EXPORT_SYMBOL vmlinux 0x0b34fc0a qdisc_put_unlocked -EXPORT_SYMBOL vmlinux 0x0b3a7fa5 mr_table_dump -EXPORT_SYMBOL vmlinux 0x0b3e9921 tcp_rtx_synack +EXPORT_SYMBOL vmlinux 0x0b4463af sock_alloc +EXPORT_SYMBOL vmlinux 0x0b48554e __dquot_alloc_space +EXPORT_SYMBOL vmlinux 0x0b4923a8 mmc_release_host +EXPORT_SYMBOL vmlinux 0x0b49bbca i2c_smbus_read_word_data +EXPORT_SYMBOL vmlinux 0x0b4ad306 jbd2_journal_init_inode +EXPORT_SYMBOL vmlinux 0x0b54832d pps_lookup_dev EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol -EXPORT_SYMBOL vmlinux 0x0b74e57b eth_mac_addr -EXPORT_SYMBOL vmlinux 0x0b78e1c7 phy_trigger_machine -EXPORT_SYMBOL vmlinux 0x0b7bd19b tcp_openreq_init_rwin +EXPORT_SYMBOL vmlinux 0x0b87a8cd __serio_register_driver EXPORT_SYMBOL vmlinux 0x0b8a6338 neigh_proc_dointvec_jiffies -EXPORT_SYMBOL vmlinux 0x0b8eb812 xfrm6_rcv_tnl +EXPORT_SYMBOL vmlinux 0x0b8e019b fs_param_is_path EXPORT_SYMBOL vmlinux 0x0ba0b938 vm_brk -EXPORT_SYMBOL vmlinux 0x0ba111c0 ip_fraglist_prepare -EXPORT_SYMBOL vmlinux 0x0bc291df ip_queue_xmit +EXPORT_SYMBOL vmlinux 0x0ba139fd dev_get_mac_address EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type -EXPORT_SYMBOL vmlinux 0x0be584e9 register_quota_format -EXPORT_SYMBOL vmlinux 0x0be67e0d device_get_mac_address +EXPORT_SYMBOL vmlinux 0x0bcfa66d pci_bus_find_capability +EXPORT_SYMBOL vmlinux 0x0be5fdd3 rtnl_create_link EXPORT_SYMBOL vmlinux 0x0bf0e4a2 __SCK__tp_func_spi_transfer_stop EXPORT_SYMBOL vmlinux 0x0bf36885 do_wait_intr +EXPORT_SYMBOL vmlinux 0x0bf7afa1 mipi_dsi_dcs_write +EXPORT_SYMBOL vmlinux 0x0bf8428f kill_anon_super +EXPORT_SYMBOL vmlinux 0x0bf8703d ip_output EXPORT_SYMBOL vmlinux 0x0bfc1d1a check_zeroed_user +EXPORT_SYMBOL vmlinux 0x0c0e20eb netdev_next_lower_dev_rcu EXPORT_SYMBOL vmlinux 0x0c0f79af ZSTD_getDictID_fromFrame +EXPORT_SYMBOL vmlinux 0x0c231052 i2c_smbus_xfer EXPORT_SYMBOL vmlinux 0x0c25ec48 secure_tcpv6_seq -EXPORT_SYMBOL vmlinux 0x0c46a9fe put_cmsg -EXPORT_SYMBOL vmlinux 0x0c56a28d get_bitmap_from_slot -EXPORT_SYMBOL vmlinux 0x0c5eb020 mdiobus_write -EXPORT_SYMBOL vmlinux 0x0c62e2bf find_vma -EXPORT_SYMBOL vmlinux 0x0c643ba8 of_count_phandle_with_args -EXPORT_SYMBOL vmlinux 0x0c65c396 km_state_notify -EXPORT_SYMBOL vmlinux 0x0c66ffe9 page_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0x0c4636c6 phy_init_eee +EXPORT_SYMBOL vmlinux 0x0c663255 mmc_add_host EXPORT_SYMBOL vmlinux 0x0c6bdc3f vme_master_read -EXPORT_SYMBOL vmlinux 0x0c7af94b param_get_ushort -EXPORT_SYMBOL vmlinux 0x0c8569b0 kthread_associate_blkcg -EXPORT_SYMBOL vmlinux 0x0ca64e3e netdev_alert -EXPORT_SYMBOL vmlinux 0x0ca7883c xfrm_policy_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x0c6d5884 dquot_release +EXPORT_SYMBOL vmlinux 0x0c7cc057 hdmi_infoframe_log +EXPORT_SYMBOL vmlinux 0x0ca0488e truncate_inode_pages_range EXPORT_SYMBOL vmlinux 0x0cb11bc7 __SCK__tp_func_dma_fence_enable_signal EXPORT_SYMBOL vmlinux 0x0cb12092 xa_destroy +EXPORT_SYMBOL vmlinux 0x0cba8b51 __xfrm_init_state +EXPORT_SYMBOL vmlinux 0x0cbc63b5 flow_block_cb_setup_simple EXPORT_SYMBOL vmlinux 0x0cc4b4b6 crc_ccitt_false -EXPORT_SYMBOL vmlinux 0x0cc7366b devm_request_any_context_irq +EXPORT_SYMBOL vmlinux 0x0cd0dabc dma_resv_init EXPORT_SYMBOL vmlinux 0x0cd5835b ipv6_flowlabel_exclusive -EXPORT_SYMBOL vmlinux 0x0cdbc081 __sock_cmsg_send +EXPORT_SYMBOL vmlinux 0x0cd70cc3 xp_free EXPORT_SYMBOL vmlinux 0x0cdce87c rfkill_set_hw_state_reason EXPORT_SYMBOL vmlinux 0x0ce19729 mb_cache_entry_touch -EXPORT_SYMBOL vmlinux 0x0ce2f5db vga_con -EXPORT_SYMBOL vmlinux 0x0cec1287 phy_request_interrupt EXPORT_SYMBOL vmlinux 0x0cf98ca0 __xa_alloc EXPORT_SYMBOL vmlinux 0x0d07f543 get_anon_bdev EXPORT_SYMBOL vmlinux 0x0d0a5789 _raw_write_unlock_irqrestore -EXPORT_SYMBOL vmlinux 0x0d13f529 mmc_cqe_request_done -EXPORT_SYMBOL vmlinux 0x0d1dd8ef xfrm_input_resume +EXPORT_SYMBOL vmlinux 0x0d1097b3 ip_defrag EXPORT_SYMBOL vmlinux 0x0d2ca20f ucc_fast_get_qe_cr_subblock -EXPORT_SYMBOL vmlinux 0x0d2f9d79 simple_statfs -EXPORT_SYMBOL vmlinux 0x0d3d5d00 pci_scan_root_bus +EXPORT_SYMBOL vmlinux 0x0d335ba7 devm_kvasprintf EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type +EXPORT_SYMBOL vmlinux 0x0d56cd8e dput +EXPORT_SYMBOL vmlinux 0x0d5731f9 devfreq_add_device +EXPORT_SYMBOL vmlinux 0x0d5c8b19 devm_free_irq +EXPORT_SYMBOL vmlinux 0x0d604b77 pcie_capability_write_word EXPORT_SYMBOL vmlinux 0x0d61eeee __bitmap_subset -EXPORT_SYMBOL vmlinux 0x0d7125df pci_release_selected_regions -EXPORT_SYMBOL vmlinux 0x0d73b144 pci_release_regions -EXPORT_SYMBOL vmlinux 0x0d7e3335 lock_two_nondirectories -EXPORT_SYMBOL vmlinux 0x0db9a105 scsi_vpd_lun_id -EXPORT_SYMBOL vmlinux 0x0dcd3bde ip_tunnel_parse_protocol -EXPORT_SYMBOL vmlinux 0x0de22e1b fifo_set_limit -EXPORT_SYMBOL vmlinux 0x0de36d04 blk_mq_alloc_tag_set -EXPORT_SYMBOL vmlinux 0x0de44233 user_path_create -EXPORT_SYMBOL vmlinux 0x0de6b2a4 dev_getbyhwaddr_rcu -EXPORT_SYMBOL vmlinux 0x0df4f8f5 __blockdev_direct_IO -EXPORT_SYMBOL vmlinux 0x0e053cd7 tcp_seq_start +EXPORT_SYMBOL vmlinux 0x0d8232d4 xfrm_lookup_route +EXPORT_SYMBOL vmlinux 0x0d9364e8 jbd2_journal_unlock_updates +EXPORT_SYMBOL vmlinux 0x0d9bb7f2 dev_mc_sync_multiple +EXPORT_SYMBOL vmlinux 0x0da59e27 __inc_zone_page_state +EXPORT_SYMBOL vmlinux 0x0da5af17 gro_find_receive_by_type +EXPORT_SYMBOL vmlinux 0x0db1b188 devm_ioremap_np +EXPORT_SYMBOL vmlinux 0x0db7dc1d simple_nosetlease +EXPORT_SYMBOL vmlinux 0x0dca95fb __netif_schedule +EXPORT_SYMBOL vmlinux 0x0de98d53 tty_write_room +EXPORT_SYMBOL vmlinux 0x0dedc76b jbd2_journal_set_features +EXPORT_SYMBOL vmlinux 0x0dee4d4a mipi_dsi_picture_parameter_set +EXPORT_SYMBOL vmlinux 0x0df7bf10 jbd2_fc_begin_commit EXPORT_SYMBOL vmlinux 0x0e17678a siphash_4u64 -EXPORT_SYMBOL vmlinux 0x0e284e5c cdrom_number_of_slots +EXPORT_SYMBOL vmlinux 0x0e1d395d iov_iter_revert +EXPORT_SYMBOL vmlinux 0x0e1ee126 __scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x0e35e7ec reuseport_attach_prog +EXPORT_SYMBOL vmlinux 0x0e37e4de __sk_backlog_rcv EXPORT_SYMBOL vmlinux 0x0e4262c6 __siphash_unaligned -EXPORT_SYMBOL vmlinux 0x0e6d7e49 netdev_crit +EXPORT_SYMBOL vmlinux 0x0e45fdb2 ip6mr_rule_default +EXPORT_SYMBOL vmlinux 0x0e47ad43 dma_find_channel EXPORT_SYMBOL vmlinux 0x0e74ad2d utf8ncursor -EXPORT_SYMBOL vmlinux 0x0e7f9bd2 generic_error_remove_page -EXPORT_SYMBOL vmlinux 0x0e9e3d7d tag_pages_for_writeback EXPORT_SYMBOL vmlinux 0x0ea3c74e tasklet_kill EXPORT_SYMBOL vmlinux 0x0ea593f6 hdmi_drm_infoframe_init -EXPORT_SYMBOL vmlinux 0x0eb1e9f6 page_pool_put_page -EXPORT_SYMBOL vmlinux 0x0eb37247 proc_create +EXPORT_SYMBOL vmlinux 0x0eb29007 sock_i_uid +EXPORT_SYMBOL vmlinux 0x0eb3ad1e skb_udp_tunnel_segment EXPORT_SYMBOL vmlinux 0x0eb6eb87 add_taint EXPORT_SYMBOL vmlinux 0x0ec5babe vme_dma_free -EXPORT_SYMBOL vmlinux 0x0ee9b595 twl6030_mmc_card_detect -EXPORT_SYMBOL vmlinux 0x0ef68d93 xfrm_state_flush +EXPORT_SYMBOL vmlinux 0x0ec76d62 i8042_remove_filter +EXPORT_SYMBOL vmlinux 0x0ed0b16a seq_path +EXPORT_SYMBOL vmlinux 0x0ed92a80 mipi_dsi_host_register +EXPORT_SYMBOL vmlinux 0x0edb8601 kill_pgrp EXPORT_SYMBOL vmlinux 0x0f09cc34 schedule_timeout_killable -EXPORT_SYMBOL vmlinux 0x0f11f13c rproc_coredump_add_custom_segment -EXPORT_SYMBOL vmlinux 0x0f2cf550 ww_mutex_lock_interruptible -EXPORT_SYMBOL vmlinux 0x0f62e880 pci_ep_cfs_add_epf_group -EXPORT_SYMBOL vmlinux 0x0f6c43d5 __dev_direct_xmit -EXPORT_SYMBOL vmlinux 0x0f811b57 alloc_pages_vma +EXPORT_SYMBOL vmlinux 0x0f38967b get_tree_bdev +EXPORT_SYMBOL vmlinux 0x0f44e6c8 vme_unregister_driver +EXPORT_SYMBOL vmlinux 0x0f540583 fb_set_suspend +EXPORT_SYMBOL vmlinux 0x0f6dbb25 i2c_smbus_write_block_data +EXPORT_SYMBOL vmlinux 0x0f779ff6 __zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0x0f79ef06 mfd_remove_devices +EXPORT_SYMBOL vmlinux 0x0f7da865 nd_dev_to_uuid EXPORT_SYMBOL vmlinux 0x0f86f560 kthread_delayed_work_timer_fn EXPORT_SYMBOL vmlinux 0x0f89ce1c dma_fence_signal_locked -EXPORT_SYMBOL vmlinux 0x0f8a6c28 tcp_seq_next -EXPORT_SYMBOL vmlinux 0x0f9252aa __inode_sub_bytes -EXPORT_SYMBOL vmlinux 0x0f936bfc mr_mfc_seq_idx -EXPORT_SYMBOL vmlinux 0x0f9f788b xfrm6_protocol_register -EXPORT_SYMBOL vmlinux 0x0fa4a909 device_add_disk +EXPORT_SYMBOL vmlinux 0x0f928d94 read_cache_page EXPORT_SYMBOL vmlinux 0x0fab1ab0 hdmi_spd_infoframe_pack EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 -EXPORT_SYMBOL vmlinux 0x0fbdaf05 page_pool_return_skb_page -EXPORT_SYMBOL vmlinux 0x0fc69f70 timestamp_truncate -EXPORT_SYMBOL vmlinux 0x0fcb3ce8 param_set_charp +EXPORT_SYMBOL vmlinux 0x0fd28536 inet_sock_destruct EXPORT_SYMBOL vmlinux 0x0fd902db mb_cache_entry_create -EXPORT_SYMBOL vmlinux 0x0feab01c pci_scan_bus +EXPORT_SYMBOL vmlinux 0x0fe39aa1 mmc_set_data_timeout +EXPORT_SYMBOL vmlinux 0x0feec92e vfs_mknod +EXPORT_SYMBOL vmlinux 0x0ff04c3e sk_dst_check EXPORT_SYMBOL vmlinux 0x0fff5afc time64_to_tm +EXPORT_SYMBOL vmlinux 0x1017da5a generic_copy_file_range EXPORT_SYMBOL vmlinux 0x1025009a cpm_muram_alloc_fixed -EXPORT_SYMBOL vmlinux 0x1026943b inet6_offloads EXPORT_SYMBOL vmlinux 0x102936ec qe_clock_source -EXPORT_SYMBOL vmlinux 0x10296c88 tcf_action_exec EXPORT_SYMBOL vmlinux 0x1035c7c2 __release_region -EXPORT_SYMBOL vmlinux 0x1038884f sk_alloc -EXPORT_SYMBOL vmlinux 0x104aa841 kmem_cache_free -EXPORT_SYMBOL vmlinux 0x104c9b90 init_net +EXPORT_SYMBOL vmlinux 0x103799dc make_kgid +EXPORT_SYMBOL vmlinux 0x103b951f kobject_add +EXPORT_SYMBOL vmlinux 0x103d179a jbd2_journal_set_triggers +EXPORT_SYMBOL vmlinux 0x104bcb02 __dquot_transfer EXPORT_SYMBOL vmlinux 0x1057a279 bsearch EXPORT_SYMBOL vmlinux 0x1068004b gf128mul_bbe -EXPORT_SYMBOL vmlinux 0x107ce501 config_item_init_type_name +EXPORT_SYMBOL vmlinux 0x107783bf sdev_enable_disk_events EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd -EXPORT_SYMBOL vmlinux 0x109cab61 jbd2_fc_wait_bufs -EXPORT_SYMBOL vmlinux 0x10a4471f kernel_read +EXPORT_SYMBOL vmlinux 0x10838756 pcie_capability_write_dword +EXPORT_SYMBOL vmlinux 0x10a50fc3 tcf_block_get +EXPORT_SYMBOL vmlinux 0x10a56534 simple_transaction_read +EXPORT_SYMBOL vmlinux 0x10aedf6f ll_rw_block +EXPORT_SYMBOL vmlinux 0x10be77ee skb_find_text EXPORT_SYMBOL vmlinux 0x10c3f57e __gnet_stats_copy_queue -EXPORT_SYMBOL vmlinux 0x10c52b03 uart_write_wakeup +EXPORT_SYMBOL vmlinux 0x10c8cf3e __destroy_inode +EXPORT_SYMBOL vmlinux 0x10cc96fd migrate_vma_pages EXPORT_SYMBOL vmlinux 0x10d9f885 scsi_sense_desc_find EXPORT_SYMBOL vmlinux 0x10e0f124 __pud_index_size EXPORT_SYMBOL vmlinux 0x10e6f74a free_contig_range -EXPORT_SYMBOL vmlinux 0x10e8bd85 blk_cleanup_queue -EXPORT_SYMBOL vmlinux 0x10f5c160 tty_port_tty_set -EXPORT_SYMBOL vmlinux 0x10fb2b17 __sk_receive_skb -EXPORT_SYMBOL vmlinux 0x1101eb03 request_firmware_nowait -EXPORT_SYMBOL vmlinux 0x11044e3e skb_dequeue_tail +EXPORT_SYMBOL vmlinux 0x10eb45d3 pcie_capability_clear_and_set_word EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype -EXPORT_SYMBOL vmlinux 0x110bdb8b sync_blockdev -EXPORT_SYMBOL vmlinux 0x11187140 consume_skb +EXPORT_SYMBOL vmlinux 0x110f4466 dev_set_alias EXPORT_SYMBOL vmlinux 0x111fa7c9 qe_pin_set_dedicated -EXPORT_SYMBOL vmlinux 0x11355484 agp_backend_release -EXPORT_SYMBOL vmlinux 0x113bdbd1 dev_load -EXPORT_SYMBOL vmlinux 0x1142b7eb unregister_nexthop_notifier -EXPORT_SYMBOL vmlinux 0x1150a95f textsearch_unregister -EXPORT_SYMBOL vmlinux 0x115639cd d_alloc +EXPORT_SYMBOL vmlinux 0x112bd547 udp_read_sock +EXPORT_SYMBOL vmlinux 0x113117dc unlock_rename +EXPORT_SYMBOL vmlinux 0x114396e2 mmc_cqe_start_req +EXPORT_SYMBOL vmlinux 0x114ce67b get_fs_type EXPORT_SYMBOL vmlinux 0x116627c9 ioremap_prot +EXPORT_SYMBOL vmlinux 0x1166c84d poll_freewait EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init -EXPORT_SYMBOL vmlinux 0x1175566e flow_indr_dev_setup_offload +EXPORT_SYMBOL vmlinux 0x11802afc discard_new_inode EXPORT_SYMBOL vmlinux 0x1182d83a cpuidle_disable -EXPORT_SYMBOL vmlinux 0x11862d19 generic_file_mmap -EXPORT_SYMBOL vmlinux 0x119b2f45 rproc_coredump_add_segment -EXPORT_SYMBOL vmlinux 0x119c02df pci_unmap_rom -EXPORT_SYMBOL vmlinux 0x11b92b62 param_ops_ushort -EXPORT_SYMBOL vmlinux 0x11bd5d03 devm_devfreq_unregister_notifier -EXPORT_SYMBOL vmlinux 0x11c7f292 ethtool_op_get_link -EXPORT_SYMBOL vmlinux 0x11cd70c8 __hw_addr_ref_sync_dev EXPORT_SYMBOL vmlinux 0x11d189b1 __tracepoint_kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0x11d1b889 inet_del_protocol EXPORT_SYMBOL vmlinux 0x11e0ec41 dm_read_arg EXPORT_SYMBOL vmlinux 0x11e30762 chacha_block_generic +EXPORT_SYMBOL vmlinux 0x11ec443b vlan_dev_vlan_proto EXPORT_SYMBOL vmlinux 0x11f47d8c utf8_strncmp -EXPORT_SYMBOL vmlinux 0x11f51f29 generic_file_splice_read -EXPORT_SYMBOL vmlinux 0x11f7ed4c hex_to_bin -EXPORT_SYMBOL vmlinux 0x11fb5bb2 textsearch_prepare +EXPORT_SYMBOL vmlinux 0x11f8a267 audit_log_start +EXPORT_SYMBOL vmlinux 0x11fa4bed unregister_qdisc EXPORT_SYMBOL vmlinux 0x11ffdfee ucc_slow_stop_tx EXPORT_SYMBOL vmlinux 0x120b336a __rb_insert_augmented -EXPORT_SYMBOL vmlinux 0x122742ac elv_rb_find -EXPORT_SYMBOL vmlinux 0x12376d18 pci_enable_atomic_ops_to_root +EXPORT_SYMBOL vmlinux 0x120b4f95 mark_info_dirty +EXPORT_SYMBOL vmlinux 0x120de59f of_mdio_find_bus +EXPORT_SYMBOL vmlinux 0x1212ecc5 get_cached_acl_rcu +EXPORT_SYMBOL vmlinux 0x121f383d mnt_set_expiry EXPORT_SYMBOL vmlinux 0x124bad4d kstrtobool -EXPORT_SYMBOL vmlinux 0x124f8f9d input_mt_report_pointer_emulation -EXPORT_SYMBOL vmlinux 0x12634981 __dev_get_by_flags -EXPORT_SYMBOL vmlinux 0x12680a24 filemap_write_and_wait_range -EXPORT_SYMBOL vmlinux 0x126fc551 register_netdevice_notifier_net -EXPORT_SYMBOL vmlinux 0x1285ab4f sock_no_connect -EXPORT_SYMBOL vmlinux 0x129537df skb_page_frag_refill -EXPORT_SYMBOL vmlinux 0x12b9a8ba pci_enable_msix_range -EXPORT_SYMBOL vmlinux 0x12c4aad1 ndo_dflt_fdb_add -EXPORT_SYMBOL vmlinux 0x12c6d6ae pci_find_capability +EXPORT_SYMBOL vmlinux 0x12540a94 rproc_mem_entry_init +EXPORT_SYMBOL vmlinux 0x12630210 phy_set_asym_pause +EXPORT_SYMBOL vmlinux 0x12670754 fb_pan_display +EXPORT_SYMBOL vmlinux 0x1274606b param_get_bool +EXPORT_SYMBOL vmlinux 0x1274bdb9 simple_setattr +EXPORT_SYMBOL vmlinux 0x128ad253 zpool_unregister_driver +EXPORT_SYMBOL vmlinux 0x12aa65ee of_platform_device_create +EXPORT_SYMBOL vmlinux 0x12b6d5fd input_mt_drop_unused +EXPORT_SYMBOL vmlinux 0x12bbfb51 xattr_full_name EXPORT_SYMBOL vmlinux 0x12cabc89 siphash_2u64 -EXPORT_SYMBOL vmlinux 0x12ce3747 seq_read +EXPORT_SYMBOL vmlinux 0x12cb8894 fwnode_phy_find_device EXPORT_SYMBOL vmlinux 0x12e5ef0c rtas_set_power_level +EXPORT_SYMBOL vmlinux 0x12eae086 inet_csk_init_xmit_timers EXPORT_SYMBOL vmlinux 0x12f6f69c fb_videomode_to_var -EXPORT_SYMBOL vmlinux 0x12f77260 tcf_generic_walker -EXPORT_SYMBOL vmlinux 0x12faeb0c skb_checksum -EXPORT_SYMBOL vmlinux 0x130f62f0 __i2c_transfer -EXPORT_SYMBOL vmlinux 0x1310b326 inet6_bind +EXPORT_SYMBOL vmlinux 0x1304aadb iov_iter_pipe +EXPORT_SYMBOL vmlinux 0x1310d645 jbd2_journal_update_sb_errno EXPORT_SYMBOL vmlinux 0x13110126 request_resource -EXPORT_SYMBOL vmlinux 0x1317167e generic_write_checks -EXPORT_SYMBOL vmlinux 0x131f5d39 ppp_register_net_channel +EXPORT_SYMBOL vmlinux 0x131394f2 mdio_device_free +EXPORT_SYMBOL vmlinux 0x131d02a9 nf_ip6_checksum EXPORT_SYMBOL vmlinux 0x13243d4b wl1251_get_platform_data -EXPORT_SYMBOL vmlinux 0x133bc5fb tty_port_close_start +EXPORT_SYMBOL vmlinux 0x1337d2cf vfio_unpin_pages EXPORT_SYMBOL vmlinux 0x133eed38 gen_pool_dma_zalloc_algo +EXPORT_SYMBOL vmlinux 0x1345d6b5 __skb_warn_lro_forwarding EXPORT_SYMBOL vmlinux 0x134cdd34 inet_frag_rbtree_purge -EXPORT_SYMBOL vmlinux 0x1384d4cf eth_header_cache_update -EXPORT_SYMBOL vmlinux 0x1391c2ac rproc_elf_load_segments +EXPORT_SYMBOL vmlinux 0x1352d2cc rproc_coredump_set_elf_info +EXPORT_SYMBOL vmlinux 0x13582cc5 vfs_getattr +EXPORT_SYMBOL vmlinux 0x135c99bb __mod_lruvec_page_state +EXPORT_SYMBOL vmlinux 0x136bf986 sock_set_priority +EXPORT_SYMBOL vmlinux 0x138064b4 sync_blockdev +EXPORT_SYMBOL vmlinux 0x1398ba29 inet_frag_reasm_prepare +EXPORT_SYMBOL vmlinux 0x1398f11a __mdiobus_read EXPORT_SYMBOL vmlinux 0x139f2189 __kfifo_alloc -EXPORT_SYMBOL vmlinux 0x13c445f7 ipv6_sock_mc_join EXPORT_SYMBOL vmlinux 0x13c49cc2 _copy_from_user -EXPORT_SYMBOL vmlinux 0x13ce24ba eth_commit_mac_addr_change +EXPORT_SYMBOL vmlinux 0x13c7a05a __xfrm_route_forward EXPORT_SYMBOL vmlinux 0x13cead77 __SCK__tp_func_kmem_cache_alloc_node EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out -EXPORT_SYMBOL vmlinux 0x13d7ebed scsi_eh_prep_cmnd +EXPORT_SYMBOL vmlinux 0x13d40d41 kthread_bind EXPORT_SYMBOL vmlinux 0x13d928f5 __SCK__tp_func_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x13dc1c0f dquot_resume +EXPORT_SYMBOL vmlinux 0x13dda34e tcp_sendpage EXPORT_SYMBOL vmlinux 0x13e1b2d5 current_stack_frame +EXPORT_SYMBOL vmlinux 0x13ec0663 ata_print_version EXPORT_SYMBOL vmlinux 0x13f53da6 CMO_PageSize -EXPORT_SYMBOL vmlinux 0x140f18a0 mmc_can_discard -EXPORT_SYMBOL vmlinux 0x141326a1 jbd2_journal_lock_updates -EXPORT_SYMBOL vmlinux 0x1414f0fd of_graph_get_next_endpoint -EXPORT_SYMBOL vmlinux 0x14174876 netif_carrier_on -EXPORT_SYMBOL vmlinux 0x14294023 devm_ioremap_np +EXPORT_SYMBOL vmlinux 0x1417ec7e dev_add_offload +EXPORT_SYMBOL vmlinux 0x142a2494 always_delete_dentry EXPORT_SYMBOL vmlinux 0x1435c5ce __SCK__tp_func_kmalloc_node -EXPORT_SYMBOL vmlinux 0x1439b8e3 phy_register_fixup_for_id -EXPORT_SYMBOL vmlinux 0x143b1a61 xfrm_policy_walk_done -EXPORT_SYMBOL vmlinux 0x14596a67 sock_sendmsg +EXPORT_SYMBOL vmlinux 0x143fbde7 tty_check_change +EXPORT_SYMBOL vmlinux 0x143fefa1 dev_uc_flush EXPORT_SYMBOL vmlinux 0x14605535 dma_fence_context_alloc +EXPORT_SYMBOL vmlinux 0x1460f861 sg_alloc_append_table_from_pages EXPORT_SYMBOL vmlinux 0x146289b7 crc16_table -EXPORT_SYMBOL vmlinux 0x147688fd blk_mq_end_request +EXPORT_SYMBOL vmlinux 0x146b6624 scsicam_bios_param EXPORT_SYMBOL vmlinux 0x147e0857 gen_pool_dma_alloc_algo -EXPORT_SYMBOL vmlinux 0x147e9f35 blk_rq_map_user -EXPORT_SYMBOL vmlinux 0x147eb024 tcp_sendmsg -EXPORT_SYMBOL vmlinux 0x1484e599 param_ops_string -EXPORT_SYMBOL vmlinux 0x1487ff7b dquot_load_quota_sb -EXPORT_SYMBOL vmlinux 0x14917799 vm_mmap -EXPORT_SYMBOL vmlinux 0x1499bccc fqdir_init +EXPORT_SYMBOL vmlinux 0x148a785e kill_litter_super +EXPORT_SYMBOL vmlinux 0x14953240 mipi_dsi_dcs_set_pixel_format +EXPORT_SYMBOL vmlinux 0x14984eea rtnl_set_sk_err +EXPORT_SYMBOL vmlinux 0x1498857a netlink_kernel_release +EXPORT_SYMBOL vmlinux 0x1499d7ca pci_read_config_byte EXPORT_SYMBOL vmlinux 0x14a2b413 gen_pool_first_fit_order_align -EXPORT_SYMBOL vmlinux 0x14a91192 mmc_set_data_timeout -EXPORT_SYMBOL vmlinux 0x14b87462 mount_single +EXPORT_SYMBOL vmlinux 0x14b621df register_mii_timestamper +EXPORT_SYMBOL vmlinux 0x14c65ddc sock_no_bind EXPORT_SYMBOL vmlinux 0x14c67e3e tcp_tx_delay_enabled -EXPORT_SYMBOL vmlinux 0x14d3affc ppp_input_error -EXPORT_SYMBOL vmlinux 0x14d6d082 param_set_ulong -EXPORT_SYMBOL vmlinux 0x14fe1778 inet_frags_fini -EXPORT_SYMBOL vmlinux 0x1500d9a2 insert_inode_locked4 -EXPORT_SYMBOL vmlinux 0x15062ac0 __xfrm_policy_check +EXPORT_SYMBOL vmlinux 0x14ce4310 input_mt_assign_slots +EXPORT_SYMBOL vmlinux 0x14d5d899 kthread_destroy_worker +EXPORT_SYMBOL vmlinux 0x14e0225e param_set_int +EXPORT_SYMBOL vmlinux 0x14e046d6 neigh_sysctl_unregister +EXPORT_SYMBOL vmlinux 0x14eb618b netdev_master_upper_dev_get +EXPORT_SYMBOL vmlinux 0x14f57946 fb_show_logo +EXPORT_SYMBOL vmlinux 0x14f5ea1c finish_open EXPORT_SYMBOL vmlinux 0x151f4898 schedule_timeout_uninterruptible EXPORT_SYMBOL vmlinux 0x1526b301 unix_tot_inflight -EXPORT_SYMBOL vmlinux 0x153f6866 giveup_fpu +EXPORT_SYMBOL vmlinux 0x15295f54 ptp_clock_index +EXPORT_SYMBOL vmlinux 0x153ca588 register_nexthop_notifier EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy -EXPORT_SYMBOL vmlinux 0x15743318 zap_page_range -EXPORT_SYMBOL vmlinux 0x157ccf99 mmc_cqe_start_req -EXPORT_SYMBOL vmlinux 0x158b62fa jbd2_journal_revoke -EXPORT_SYMBOL vmlinux 0x15912fde devfreq_monitor_resume -EXPORT_SYMBOL vmlinux 0x1596f9fb jbd2_transaction_committed -EXPORT_SYMBOL vmlinux 0x15995964 of_scan_pci_bridge -EXPORT_SYMBOL vmlinux 0x159a97dc nd_integrity_init -EXPORT_SYMBOL vmlinux 0x159e7f09 rproc_free -EXPORT_SYMBOL vmlinux 0x15ad82bd register_md_personality -EXPORT_SYMBOL vmlinux 0x15afdeaf kmem_cache_shrink -EXPORT_SYMBOL vmlinux 0x15b888c2 udp_prot +EXPORT_SYMBOL vmlinux 0x1556f8bf tcp_md5_do_del +EXPORT_SYMBOL vmlinux 0x156a0fdf sock_wmalloc +EXPORT_SYMBOL vmlinux 0x157e5549 md_write_end +EXPORT_SYMBOL vmlinux 0x15a81723 kset_register +EXPORT_SYMBOL vmlinux 0x15b5c83b phy_ethtool_get_stats EXPORT_SYMBOL vmlinux 0x15bafe29 unregister_md_cluster_operations EXPORT_SYMBOL vmlinux 0x15bed7a5 LZ4_decompress_safe_partial -EXPORT_SYMBOL vmlinux 0x15bffe05 md_write_start -EXPORT_SYMBOL vmlinux 0x15c031a4 inet_twsk_deschedule_put -EXPORT_SYMBOL vmlinux 0x15c4a152 __page_frag_cache_drain -EXPORT_SYMBOL vmlinux 0x15edb722 page_pool_update_nid +EXPORT_SYMBOL vmlinux 0x15e26e4f mmc_is_req_done +EXPORT_SYMBOL vmlinux 0x15f1abe1 scsi_host_alloc +EXPORT_SYMBOL vmlinux 0x16078937 __sk_mem_reduce_allocated EXPORT_SYMBOL vmlinux 0x160bd45c rtas_token -EXPORT_SYMBOL vmlinux 0x161bf85d pm8606_osc_enable -EXPORT_SYMBOL vmlinux 0x1622e8cb PDE_DATA +EXPORT_SYMBOL vmlinux 0x16113f74 __sk_mem_schedule EXPORT_SYMBOL vmlinux 0x16286538 iowrite64be_lo_hi EXPORT_SYMBOL vmlinux 0x162893fd hashlen_string -EXPORT_SYMBOL vmlinux 0x162b97ec dev_remove_offload -EXPORT_SYMBOL vmlinux 0x162caf85 bio_chain -EXPORT_SYMBOL vmlinux 0x162d4475 mark_buffer_dirty_inode EXPORT_SYMBOL vmlinux 0x16316a10 ZSTD_getFrameContentSize +EXPORT_SYMBOL vmlinux 0x1632524b add_random_ready_callback EXPORT_SYMBOL vmlinux 0x1632bc21 kvasprintf_const -EXPORT_SYMBOL vmlinux 0x1650d497 drop_super -EXPORT_SYMBOL vmlinux 0x1671e5e5 xfrm_state_lookup +EXPORT_SYMBOL vmlinux 0x1639454f init_pseudo +EXPORT_SYMBOL vmlinux 0x163fe4d4 blk_queue_flag_clear +EXPORT_SYMBOL vmlinux 0x16488777 inet_addr_type_table +EXPORT_SYMBOL vmlinux 0x165a6019 dquot_initialize +EXPORT_SYMBOL vmlinux 0x16760a04 framebuffer_alloc EXPORT_SYMBOL vmlinux 0x167c5967 print_hex_dump -EXPORT_SYMBOL vmlinux 0x16900af8 ps2_init -EXPORT_SYMBOL vmlinux 0x16946038 seq_putc +EXPORT_SYMBOL vmlinux 0x167f1b36 request_key_tag EXPORT_SYMBOL vmlinux 0x169938c1 __sysfs_match_string -EXPORT_SYMBOL vmlinux 0x16a53288 xsk_clear_tx_need_wakeup -EXPORT_SYMBOL vmlinux 0x16b38ccc __nd_driver_register -EXPORT_SYMBOL vmlinux 0x16c29646 xp_raw_get_data -EXPORT_SYMBOL vmlinux 0x16d72173 devfreq_monitor_stop +EXPORT_SYMBOL vmlinux 0x169e75f7 ucc_of_parse_tdm +EXPORT_SYMBOL vmlinux 0x16ab6f13 neigh_table_clear +EXPORT_SYMBOL vmlinux 0x16b90e0f __xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x16b9b493 find_inode_rcu +EXPORT_SYMBOL vmlinux 0x16c246fe pci_match_id +EXPORT_SYMBOL vmlinux 0x16cb07c9 of_get_compatible_child EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait -EXPORT_SYMBOL vmlinux 0x17101454 new_inode -EXPORT_SYMBOL vmlinux 0x1713ed38 vfs_fsync_range -EXPORT_SYMBOL vmlinux 0x1721ce7f padata_set_cpumask +EXPORT_SYMBOL vmlinux 0x16e32f5b flow_rule_match_enc_ipv4_addrs +EXPORT_SYMBOL vmlinux 0x16ea4a03 vfs_mkdir +EXPORT_SYMBOL vmlinux 0x16f571d6 del_random_ready_callback +EXPORT_SYMBOL vmlinux 0x16f96295 of_graph_get_endpoint_count +EXPORT_SYMBOL vmlinux 0x171cff92 sdev_prefix_printk +EXPORT_SYMBOL vmlinux 0x171f75f8 vfs_llseek +EXPORT_SYMBOL vmlinux 0x17432034 dev_activate +EXPORT_SYMBOL vmlinux 0x175734b4 inet_protos +EXPORT_SYMBOL vmlinux 0x175f353f tty_port_tty_get EXPORT_SYMBOL vmlinux 0x17648396 dev_base_lock -EXPORT_SYMBOL vmlinux 0x1766987a phy_device_create -EXPORT_SYMBOL vmlinux 0x17858926 gnet_stats_finish_copy +EXPORT_SYMBOL vmlinux 0x177a14db scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x1785e43d __put_user_ns EXPORT_SYMBOL vmlinux 0x178c4894 qe_upload_firmware -EXPORT_SYMBOL vmlinux 0x178e87de inode_needs_sync -EXPORT_SYMBOL vmlinux 0x17ba2356 of_get_next_parent -EXPORT_SYMBOL vmlinux 0x17d1d20c pci_request_selected_regions -EXPORT_SYMBOL vmlinux 0x17e0bce0 add_random_ready_callback -EXPORT_SYMBOL vmlinux 0x17e1d536 free_cgroup_ns +EXPORT_SYMBOL vmlinux 0x178df10d key_move +EXPORT_SYMBOL vmlinux 0x17b5a665 xfrm_state_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x17b8afb2 filemap_invalidate_lock_two +EXPORT_SYMBOL vmlinux 0x17d19f9c path_has_submounts +EXPORT_SYMBOL vmlinux 0x17ddf5ab tcp_setsockopt +EXPORT_SYMBOL vmlinux 0x17eb1141 qdisc_watchdog_cancel EXPORT_SYMBOL vmlinux 0x17ef3544 swake_up_one -EXPORT_SYMBOL vmlinux 0x17ef7a45 proc_set_user EXPORT_SYMBOL vmlinux 0x17f341a0 i8042_lock_chip +EXPORT_SYMBOL vmlinux 0x17f5976e xp_dma_map +EXPORT_SYMBOL vmlinux 0x17fc8bac del_gendisk +EXPORT_SYMBOL vmlinux 0x1823c6e7 __napi_schedule EXPORT_SYMBOL vmlinux 0x18255c0d __init_rwsem EXPORT_SYMBOL vmlinux 0x18345b8e __bitmap_replace -EXPORT_SYMBOL vmlinux 0x1835f9ac max8998_update_reg -EXPORT_SYMBOL vmlinux 0x183afcdb input_alloc_absinfo -EXPORT_SYMBOL vmlinux 0x184c3d19 jbd2_fc_release_bufs -EXPORT_SYMBOL vmlinux 0x184ffb15 agp_alloc_page_array -EXPORT_SYMBOL vmlinux 0x18740afa udp_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0x184c6963 config_item_get +EXPORT_SYMBOL vmlinux 0x18723d11 neigh_ifdown EXPORT_SYMBOL vmlinux 0x187884a8 cpm_muram_free +EXPORT_SYMBOL vmlinux 0x18866756 md_check_recovery +EXPORT_SYMBOL vmlinux 0x18869289 pcie_set_mps EXPORT_SYMBOL vmlinux 0x188ea314 jiffies_to_timespec64 -EXPORT_SYMBOL vmlinux 0x1897d525 tcf_action_set_ctrlact -EXPORT_SYMBOL vmlinux 0x18af89b2 scsi_free_host_dev -EXPORT_SYMBOL vmlinux 0x18cdc41a __splice_from_pipe +EXPORT_SYMBOL vmlinux 0x18c1fef0 pci_request_region +EXPORT_SYMBOL vmlinux 0x18cab27b nvdimm_namespace_disk_name +EXPORT_SYMBOL vmlinux 0x18d6b24d seq_open_private +EXPORT_SYMBOL vmlinux 0x18d94737 security_sk_classify_flow +EXPORT_SYMBOL vmlinux 0x18df3346 __of_get_address EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start -EXPORT_SYMBOL vmlinux 0x18eee5ea jbd2_journal_set_triggers -EXPORT_SYMBOL vmlinux 0x18fb63af dev_get_flags -EXPORT_SYMBOL vmlinux 0x1909e296 dma_get_sgtable_attrs -EXPORT_SYMBOL vmlinux 0x191e6293 proc_remove -EXPORT_SYMBOL vmlinux 0x1921b74b sg_miter_next -EXPORT_SYMBOL vmlinux 0x192f94fb neigh_resolve_output -EXPORT_SYMBOL vmlinux 0x194425f1 mipi_dsi_driver_unregister +EXPORT_SYMBOL vmlinux 0x191f3478 page_get_link +EXPORT_SYMBOL vmlinux 0x1923f883 nd_btt_version +EXPORT_SYMBOL vmlinux 0x193a1038 ethtool_virtdev_set_link_ksettings EXPORT_SYMBOL vmlinux 0x19567d06 vfio_info_cap_shift -EXPORT_SYMBOL vmlinux 0x1959b6f7 jbd2_journal_inode_ranged_write -EXPORT_SYMBOL vmlinux 0x1966a5a8 ipv6_sock_mc_drop +EXPORT_SYMBOL vmlinux 0x1966c58c pci_add_new_bus EXPORT_SYMBOL vmlinux 0x196a5a99 radix_tree_tag_get -EXPORT_SYMBOL vmlinux 0x196de668 mmc_add_host +EXPORT_SYMBOL vmlinux 0x1974d405 d_invalidate EXPORT_SYMBOL vmlinux 0x1984d421 out_of_line_wait_on_bit EXPORT_SYMBOL vmlinux 0x198620d7 security_add_mnt_opt -EXPORT_SYMBOL vmlinux 0x198ada6b serio_open -EXPORT_SYMBOL vmlinux 0x19914549 get_tz_trend -EXPORT_SYMBOL vmlinux 0x199ec9d4 hash_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0x19918d5b pm860x_bulk_write +EXPORT_SYMBOL vmlinux 0x1996114a d_alloc_name +EXPORT_SYMBOL vmlinux 0x199e737a finalize_exec EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp -EXPORT_SYMBOL vmlinux 0x19adee23 gnet_stats_start_copy -EXPORT_SYMBOL vmlinux 0x19aedfdd serial8250_register_8250_port +EXPORT_SYMBOL vmlinux 0x199fdbf1 xfrm4_rcv_encap +EXPORT_SYMBOL vmlinux 0x19af0ad6 dcache_dir_lseek +EXPORT_SYMBOL vmlinux 0x19b13937 seq_escape EXPORT_SYMBOL vmlinux 0x19b16b34 up_read -EXPORT_SYMBOL vmlinux 0x19ba3d30 flow_rule_match_enc_opts -EXPORT_SYMBOL vmlinux 0x19bce76c tcp_sendpage +EXPORT_SYMBOL vmlinux 0x19baa08f tcp_enter_quickack_mode EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec -EXPORT_SYMBOL vmlinux 0x19bfc3dc vfs_clone_file_range -EXPORT_SYMBOL vmlinux 0x19d28e5f pm860x_reg_write +EXPORT_SYMBOL vmlinux 0x19d13ff3 skb_vlan_push +EXPORT_SYMBOL vmlinux 0x19d30077 phy_ethtool_set_link_ksettings EXPORT_SYMBOL vmlinux 0x19d68628 xa_get_mark +EXPORT_SYMBOL vmlinux 0x19d849b3 __block_write_begin +EXPORT_SYMBOL vmlinux 0x19f7a1c4 ip6_output +EXPORT_SYMBOL vmlinux 0x1a18eb89 neigh_sysctl_register EXPORT_SYMBOL vmlinux 0x1a1bac9c ZSTD_decompressDCtx -EXPORT_SYMBOL vmlinux 0x1a1ddca7 single_open_size -EXPORT_SYMBOL vmlinux 0x1a2ad31c fb_get_mode -EXPORT_SYMBOL vmlinux 0x1a380a0c pci_bus_size_bridges -EXPORT_SYMBOL vmlinux 0x1a43af33 make_bad_inode -EXPORT_SYMBOL vmlinux 0x1a465eb1 dquot_scan_active -EXPORT_SYMBOL vmlinux 0x1a5243a9 pci_read_config_word -EXPORT_SYMBOL vmlinux 0x1a57f3ca super_setup_bdi_name -EXPORT_SYMBOL vmlinux 0x1a80eed5 dmam_free_coherent +EXPORT_SYMBOL vmlinux 0x1a453471 eth_type_trans +EXPORT_SYMBOL vmlinux 0x1a53da03 dma_sync_single_for_device +EXPORT_SYMBOL vmlinux 0x1a5b6ca5 _dev_info EXPORT_SYMBOL vmlinux 0x1a9a433c prandom_u32_state +EXPORT_SYMBOL vmlinux 0x1aa203a9 block_read_full_page EXPORT_SYMBOL vmlinux 0x1aa2b3f1 tlbie_capable EXPORT_SYMBOL vmlinux 0x1aa9fba0 vfio_dma_rw +EXPORT_SYMBOL vmlinux 0x1aab497f neigh_changeaddr +EXPORT_SYMBOL vmlinux 0x1ab96093 tty_port_put +EXPORT_SYMBOL vmlinux 0x1ac0cfdd dm_register_target EXPORT_SYMBOL vmlinux 0x1ac5d3cb strcspn -EXPORT_SYMBOL vmlinux 0x1ae76c6c security_path_unlink -EXPORT_SYMBOL vmlinux 0x1aee8594 tty_hangup +EXPORT_SYMBOL vmlinux 0x1acd459f mipi_dsi_driver_unregister EXPORT_SYMBOL vmlinux 0x1af62a99 panic_notifier_list EXPORT_SYMBOL vmlinux 0x1afdc244 mutex_trylock EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist -EXPORT_SYMBOL vmlinux 0x1b27db8f free_netdev -EXPORT_SYMBOL vmlinux 0x1b30db02 xfrm_state_walk_done -EXPORT_SYMBOL vmlinux 0x1b388c7e pci_bus_read_config_dword -EXPORT_SYMBOL vmlinux 0x1b44d113 input_enable_softrepeat -EXPORT_SYMBOL vmlinux 0x1b460c21 ip6_frag_next -EXPORT_SYMBOL vmlinux 0x1b48142c write_one_page -EXPORT_SYMBOL vmlinux 0x1b5e9ab6 vmf_insert_mixed +EXPORT_SYMBOL vmlinux 0x1b019c09 mmc_can_gpio_cd +EXPORT_SYMBOL vmlinux 0x1b13abf2 qe_pin_request +EXPORT_SYMBOL vmlinux 0x1b1d8ccb make_bad_inode +EXPORT_SYMBOL vmlinux 0x1b34089d of_phy_is_fixed_link +EXPORT_SYMBOL vmlinux 0x1b408fa9 skb_append +EXPORT_SYMBOL vmlinux 0x1b4b16a8 cdrom_dummy_generic_packet EXPORT_SYMBOL vmlinux 0x1b625d33 enable_kernel_vsx EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton -EXPORT_SYMBOL vmlinux 0x1b6c1bf8 pci_scan_single_device +EXPORT_SYMBOL vmlinux 0x1b71a3a2 page_cache_prev_miss EXPORT_SYMBOL vmlinux 0x1b777357 rdmacg_unregister_device -EXPORT_SYMBOL vmlinux 0x1b77ecd1 param_ops_int -EXPORT_SYMBOL vmlinux 0x1b7f8f38 mmc_erase_group_aligned EXPORT_SYMBOL vmlinux 0x1b8b95ad i8042_unlock_chip -EXPORT_SYMBOL vmlinux 0x1b929993 mdiobus_is_registered_device -EXPORT_SYMBOL vmlinux 0x1b9fd85a migrate_vma_setup +EXPORT_SYMBOL vmlinux 0x1b8de08e kernel_sock_shutdown +EXPORT_SYMBOL vmlinux 0x1b973cb9 phy_ethtool_get_eee +EXPORT_SYMBOL vmlinux 0x1ba4c484 d_alloc_parallel EXPORT_SYMBOL vmlinux 0x1ba59527 __kmalloc_node EXPORT_SYMBOL vmlinux 0x1baae9d6 dma_fence_init EXPORT_SYMBOL vmlinux 0x1bb51249 tcp_have_smc -EXPORT_SYMBOL vmlinux 0x1bcd012b genphy_aneg_done +EXPORT_SYMBOL vmlinux 0x1bbcdf7f scsi_register_interface +EXPORT_SYMBOL vmlinux 0x1bcff732 tcp_add_backlog EXPORT_SYMBOL vmlinux 0x1bd59dbe vme_free_consistent -EXPORT_SYMBOL vmlinux 0x1bd759fd netdev_upper_dev_unlink -EXPORT_SYMBOL vmlinux 0x1c051bdf fiemap_prep -EXPORT_SYMBOL vmlinux 0x1c1c9174 netpoll_send_udp -EXPORT_SYMBOL vmlinux 0x1c30a663 mr_mfc_seq_next -EXPORT_SYMBOL vmlinux 0x1c30e5a5 bio_advance +EXPORT_SYMBOL vmlinux 0x1be8ded8 balance_dirty_pages_ratelimited +EXPORT_SYMBOL vmlinux 0x1bfc34d7 reuseport_add_sock +EXPORT_SYMBOL vmlinux 0x1c050fca udp_seq_ops +EXPORT_SYMBOL vmlinux 0x1c366e0f submit_bh EXPORT_SYMBOL vmlinux 0x1c36fa97 proc_dointvec_userhz_jiffies EXPORT_SYMBOL vmlinux 0x1c3e02e4 memcmp -EXPORT_SYMBOL vmlinux 0x1c578465 request_firmware_into_buf EXPORT_SYMBOL vmlinux 0x1c5e3878 icst525_idx2s -EXPORT_SYMBOL vmlinux 0x1c70c8b9 tcp_ld_RTO_revert EXPORT_SYMBOL vmlinux 0x1c7cfdb1 __init_swait_queue_head -EXPORT_SYMBOL vmlinux 0x1c8a808a dmaenginem_async_device_register -EXPORT_SYMBOL vmlinux 0x1c9a4702 request_firmware +EXPORT_SYMBOL vmlinux 0x1c832073 phy_remove_link_mode +EXPORT_SYMBOL vmlinux 0x1c88779c seq_file_path EXPORT_SYMBOL vmlinux 0x1ca1b1be radix_tree_delete EXPORT_SYMBOL vmlinux 0x1ca527fa ioread64be_hi_lo -EXPORT_SYMBOL vmlinux 0x1cbace98 twl6040_get_pll -EXPORT_SYMBOL vmlinux 0x1cbdb087 __brelse +EXPORT_SYMBOL vmlinux 0x1cb1131d __brelse EXPORT_SYMBOL vmlinux 0x1cc11154 __SCK__tp_func_mmap_lock_start_locking -EXPORT_SYMBOL vmlinux 0x1cce5912 vfs_create_mount -EXPORT_SYMBOL vmlinux 0x1cd55ead unregister_shrinker +EXPORT_SYMBOL vmlinux 0x1cc3383c mmc_of_parse +EXPORT_SYMBOL vmlinux 0x1ccaa3cd nd_btt_arena_is_valid +EXPORT_SYMBOL vmlinux 0x1cd98878 dev_get_phys_port_name EXPORT_SYMBOL vmlinux 0x1cde0a51 wait_for_completion_killable EXPORT_SYMBOL vmlinux 0x1ce15d0a __irq_regs -EXPORT_SYMBOL vmlinux 0x1cf832ab no_llseek -EXPORT_SYMBOL vmlinux 0x1d072e5f phy_device_remove EXPORT_SYMBOL vmlinux 0x1d07e365 memdup_user_nul -EXPORT_SYMBOL vmlinux 0x1d0d7df9 tcf_idr_create_from_flags -EXPORT_SYMBOL vmlinux 0x1d156a16 blk_queue_max_discard_sectors +EXPORT_SYMBOL vmlinux 0x1d1195a4 devfreq_suspend_device +EXPORT_SYMBOL vmlinux 0x1d273adb vm_map_ram EXPORT_SYMBOL vmlinux 0x1d2d6d15 wait_iff_congested -EXPORT_SYMBOL vmlinux 0x1d58fac4 xp_alloc +EXPORT_SYMBOL vmlinux 0x1d513780 netif_device_detach +EXPORT_SYMBOL vmlinux 0x1d57f467 tcf_idr_check_alloc EXPORT_SYMBOL vmlinux 0x1d5cedae __tracepoint_kfree EXPORT_SYMBOL vmlinux 0x1d669a8b __percpu_counter_sum -EXPORT_SYMBOL vmlinux 0x1d704940 __sk_queue_drop_skb -EXPORT_SYMBOL vmlinux 0x1d71ca3e __hw_addr_ref_unsync_dev +EXPORT_SYMBOL vmlinux 0x1d66fc36 jbd2_fc_end_commit_fallback +EXPORT_SYMBOL vmlinux 0x1d691edc done_path_create +EXPORT_SYMBOL vmlinux 0x1d6e04b8 vga_client_register +EXPORT_SYMBOL vmlinux 0x1d769a7a of_create_pci_dev +EXPORT_SYMBOL vmlinux 0x1d7c1d7d tcp_sock_set_keepintvl +EXPORT_SYMBOL vmlinux 0x1d8da108 sock_alloc_file EXPORT_SYMBOL vmlinux 0x1d8edd01 dma_fence_wait_timeout -EXPORT_SYMBOL vmlinux 0x1dc42600 vfs_unlink -EXPORT_SYMBOL vmlinux 0x1dc5c536 kernel_sock_shutdown +EXPORT_SYMBOL vmlinux 0x1dac02c0 pm8606_osc_disable +EXPORT_SYMBOL vmlinux 0x1dae987e __kfree_skb EXPORT_SYMBOL vmlinux 0x1dc6c93b lookup_user_key -EXPORT_SYMBOL vmlinux 0x1dcf2ce8 finish_open EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap -EXPORT_SYMBOL vmlinux 0x1ddca70f iov_iter_advance -EXPORT_SYMBOL vmlinux 0x1ddd643c flow_hash_from_keys EXPORT_SYMBOL vmlinux 0x1de4ccb2 get_sg_io_hdr -EXPORT_SYMBOL vmlinux 0x1dfd68b1 posix_acl_update_mode +EXPORT_SYMBOL vmlinux 0x1dea5b85 dev_deactivate EXPORT_SYMBOL vmlinux 0x1dfddab3 __bswapdi2 EXPORT_SYMBOL vmlinux 0x1e0a0c24 mod_timer_pending -EXPORT_SYMBOL vmlinux 0x1e19540e dst_discard_out +EXPORT_SYMBOL vmlinux 0x1e189a2e pci_request_irq EXPORT_SYMBOL vmlinux 0x1e1992cc __memset64 -EXPORT_SYMBOL vmlinux 0x1e1c9682 udp_pre_connect EXPORT_SYMBOL vmlinux 0x1e1e140e ns_to_timespec64 -EXPORT_SYMBOL vmlinux 0x1e200f9c unregister_netdevice_notifier_net -EXPORT_SYMBOL vmlinux 0x1e2068e3 pci_iomap_range -EXPORT_SYMBOL vmlinux 0x1e21778f pci_claim_resource -EXPORT_SYMBOL vmlinux 0x1e52c91f dev_mc_add -EXPORT_SYMBOL vmlinux 0x1e5af7f5 of_phy_get_and_connect -EXPORT_SYMBOL vmlinux 0x1e63f762 __dev_get_by_name -EXPORT_SYMBOL vmlinux 0x1e64b600 mmc_detect_change +EXPORT_SYMBOL vmlinux 0x1e22b377 dev_trans_start +EXPORT_SYMBOL vmlinux 0x1e2d0078 security_inode_listsecurity +EXPORT_SYMBOL vmlinux 0x1e670c66 pci_free_irq_vectors +EXPORT_SYMBOL vmlinux 0x1e679ab9 iw_handler_set_spy EXPORT_SYMBOL vmlinux 0x1e6adaa0 bitmap_print_bitmask_to_buf -EXPORT_SYMBOL vmlinux 0x1e6bab1d skb_put EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr -EXPORT_SYMBOL vmlinux 0x1e874c5b config_item_get +EXPORT_SYMBOL vmlinux 0x1e7e0f64 pcie_get_readrq +EXPORT_SYMBOL vmlinux 0x1e7f5b0c netdev_set_tc_queue EXPORT_SYMBOL vmlinux 0x1e875885 add_wait_queue -EXPORT_SYMBOL vmlinux 0x1e8a0321 of_device_is_big_endian -EXPORT_SYMBOL vmlinux 0x1e9691c6 dma_resv_add_excl_fence +EXPORT_SYMBOL vmlinux 0x1e99f6d3 devm_devfreq_unregister_opp_notifier EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu -EXPORT_SYMBOL vmlinux 0x1ec0eec6 softnet_data +EXPORT_SYMBOL vmlinux 0x1eab87d9 bd_abort_claiming +EXPORT_SYMBOL vmlinux 0x1eb066f1 param_ops_long +EXPORT_SYMBOL vmlinux 0x1ed09b0f dquot_acquire EXPORT_SYMBOL vmlinux 0x1ed7eb60 __sg_free_table EXPORT_SYMBOL vmlinux 0x1edb69d6 ktime_get_raw_ts64 -EXPORT_SYMBOL vmlinux 0x1ef9d7df dquot_set_dqinfo -EXPORT_SYMBOL vmlinux 0x1f260c5c dev_uc_flush -EXPORT_SYMBOL vmlinux 0x1f60f590 netdev_lower_get_first_private_rcu -EXPORT_SYMBOL vmlinux 0x1f631250 kmem_cache_create_usercopy -EXPORT_SYMBOL vmlinux 0x1f65f8d9 __dev_set_mtu -EXPORT_SYMBOL vmlinux 0x1f6f359f sockfd_lookup -EXPORT_SYMBOL vmlinux 0x1f8569f5 bio_put -EXPORT_SYMBOL vmlinux 0x1f9794e0 kern_path -EXPORT_SYMBOL vmlinux 0x1fa00ca2 dm_table_get_size -EXPORT_SYMBOL vmlinux 0x1fb04140 mdio_device_register +EXPORT_SYMBOL vmlinux 0x1ee0f2cf input_reset_device +EXPORT_SYMBOL vmlinux 0x1ee86ce3 tty_do_resize +EXPORT_SYMBOL vmlinux 0x1ef9c5fc tcp_req_err +EXPORT_SYMBOL vmlinux 0x1f0a8d2d pci_prepare_to_sleep +EXPORT_SYMBOL vmlinux 0x1f1cc058 tty_devnum +EXPORT_SYMBOL vmlinux 0x1f3dc734 mdio_driver_register +EXPORT_SYMBOL vmlinux 0x1f52e6ed of_find_all_nodes +EXPORT_SYMBOL vmlinux 0x1f6d8c1f scsi_add_host_with_dma +EXPORT_SYMBOL vmlinux 0x1f6daaf7 nf_unregister_sockopt +EXPORT_SYMBOL vmlinux 0x1f936b60 unload_nls +EXPORT_SYMBOL vmlinux 0x1f967735 from_kuid +EXPORT_SYMBOL vmlinux 0x1f9c4779 of_find_mipi_dsi_device_by_node +EXPORT_SYMBOL vmlinux 0x1fa2d264 release_pages +EXPORT_SYMBOL vmlinux 0x1fad67f8 vfs_get_fsid EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio -EXPORT_SYMBOL vmlinux 0x1fc76b50 cont_write_begin +EXPORT_SYMBOL vmlinux 0x1fbfd267 generic_fadvise +EXPORT_SYMBOL vmlinux 0x1fc4e837 input_setup_polling EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag -EXPORT_SYMBOL vmlinux 0x1fd4302a jbd2_journal_grab_journal_head -EXPORT_SYMBOL vmlinux 0x1fe0fc8e lease_get_mtime -EXPORT_SYMBOL vmlinux 0x1ff598b9 audit_log -EXPORT_SYMBOL vmlinux 0x1ff86222 xfrm_if_register_cb -EXPORT_SYMBOL vmlinux 0x1ffe5417 pps_lookup_dev +EXPORT_SYMBOL vmlinux 0x1fd8ab8d __frontswap_load +EXPORT_SYMBOL vmlinux 0x1fe9495d pci_ep_cfs_remove_epf_group +EXPORT_SYMBOL vmlinux 0x1fee4f59 param_ops_short +EXPORT_SYMBOL vmlinux 0x1ff02696 d_drop EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul +EXPORT_SYMBOL vmlinux 0x200a5b2e to_nd_btt EXPORT_SYMBOL vmlinux 0x200b2041 in6addr_any -EXPORT_SYMBOL vmlinux 0x200bc012 unlock_page -EXPORT_SYMBOL vmlinux 0x2016dc65 scsi_remove_device -EXPORT_SYMBOL vmlinux 0x2024529f mmc_erase -EXPORT_SYMBOL vmlinux 0x20389e8d wait_for_key_construction +EXPORT_SYMBOL vmlinux 0x2013e9eb udp_ioctl +EXPORT_SYMBOL vmlinux 0x2021b46b seq_release +EXPORT_SYMBOL vmlinux 0x202af609 vfs_clone_file_range +EXPORT_SYMBOL vmlinux 0x20359d15 mark_buffer_dirty_inode +EXPORT_SYMBOL vmlinux 0x2041afd7 cdev_add EXPORT_SYMBOL vmlinux 0x204af5b5 netlbl_audit_start EXPORT_SYMBOL vmlinux 0x204c19f5 tcp_alloc_md5sig_pool EXPORT_SYMBOL vmlinux 0x204c5067 scsi_dev_info_add_list -EXPORT_SYMBOL vmlinux 0x2053e33b from_kgid -EXPORT_SYMBOL vmlinux 0x206db339 cleancache_register_ops -EXPORT_SYMBOL vmlinux 0x20721ad8 of_graph_parse_endpoint -EXPORT_SYMBOL vmlinux 0x20834541 init_special_inode -EXPORT_SYMBOL vmlinux 0x2090604d of_phy_connect -EXPORT_SYMBOL vmlinux 0x20949aa3 mipi_dsi_host_register -EXPORT_SYMBOL vmlinux 0x209bcd83 pcim_enable_device -EXPORT_SYMBOL vmlinux 0x209c0d47 cdc_parse_cdc_header +EXPORT_SYMBOL vmlinux 0x2058a644 input_unregister_handler +EXPORT_SYMBOL vmlinux 0x20a1baf6 iw_handler_get_spy EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data -EXPORT_SYMBOL vmlinux 0x20ae6f6a of_graph_get_endpoint_by_regs -EXPORT_SYMBOL vmlinux 0x20b9508d fscrypt_setup_filename -EXPORT_SYMBOL vmlinux 0x20cef107 tcp_v4_mtu_reduced -EXPORT_SYMBOL vmlinux 0x20d07298 tty_register_ldisc -EXPORT_SYMBOL vmlinux 0x20d31783 xfrm_replay_seqhi +EXPORT_SYMBOL vmlinux 0x20aaf602 pci_bus_read_dev_vendor_id +EXPORT_SYMBOL vmlinux 0x20c5e20d __skb_gro_checksum_complete +EXPORT_SYMBOL vmlinux 0x20ca8c57 datagram_poll +EXPORT_SYMBOL vmlinux 0x20d3a2d8 mmc_retune_unpause EXPORT_SYMBOL vmlinux 0x20d65e40 fb_find_nearest_mode +EXPORT_SYMBOL vmlinux 0x20fcc89b blk_mq_requeue_request EXPORT_SYMBOL vmlinux 0x20fff6ec ZSTD_DStreamInSize -EXPORT_SYMBOL vmlinux 0x2101d0a2 devm_devfreq_remove_device EXPORT_SYMBOL vmlinux 0x21059cd7 audit_log_task_context -EXPORT_SYMBOL vmlinux 0x211097b5 i2c_smbus_write_word_data -EXPORT_SYMBOL vmlinux 0x211d1a59 blkdev_issue_zeroout -EXPORT_SYMBOL vmlinux 0x2127141d __cgroup_bpf_run_filter_sock_addr +EXPORT_SYMBOL vmlinux 0x2115f77d ps2_sendbyte +EXPORT_SYMBOL vmlinux 0x211d56e8 dev_lstats_read +EXPORT_SYMBOL vmlinux 0x2120097c dev_vprintk_emit EXPORT_SYMBOL vmlinux 0x213a738d memregion_alloc -EXPORT_SYMBOL vmlinux 0x213c6b7a fb_prepare_logo +EXPORT_SYMBOL vmlinux 0x213d2c4f mark_buffer_write_io_error EXPORT_SYMBOL vmlinux 0x213e4965 ps2_is_keyboard_id EXPORT_SYMBOL vmlinux 0x215a8ec8 slhc_init -EXPORT_SYMBOL vmlinux 0x216a97f8 page_symlink +EXPORT_SYMBOL vmlinux 0x2165b633 eth_header_parse_protocol +EXPORT_SYMBOL vmlinux 0x2170088f mpage_readpage EXPORT_SYMBOL vmlinux 0x218e600b pci_add_resource_offset +EXPORT_SYMBOL vmlinux 0x21aaab66 end_buffer_read_sync +EXPORT_SYMBOL vmlinux 0x21abdb6e vga_put +EXPORT_SYMBOL vmlinux 0x21abfa6b inet6_del_protocol EXPORT_SYMBOL vmlinux 0x21b60242 bit_waitqueue +EXPORT_SYMBOL vmlinux 0x21b858c5 ata_dev_printk EXPORT_SYMBOL vmlinux 0x21bdb523 errseq_check_and_advance EXPORT_SYMBOL vmlinux 0x21be37e1 hdmi_avi_infoframe_check -EXPORT_SYMBOL vmlinux 0x21c5a16c load_nls -EXPORT_SYMBOL vmlinux 0x21cfdd37 jbd2_journal_get_write_access -EXPORT_SYMBOL vmlinux 0x21d1231c readahead_expand +EXPORT_SYMBOL vmlinux 0x21be4012 uart_update_timeout +EXPORT_SYMBOL vmlinux 0x21bf9c0e dma_resv_reserve_shared +EXPORT_SYMBOL vmlinux 0x21c85a3b kobject_del +EXPORT_SYMBOL vmlinux 0x21ccf484 __lock_page +EXPORT_SYMBOL vmlinux 0x21d12d4f gnet_stats_start_copy_compat EXPORT_SYMBOL vmlinux 0x21e13cb3 inet_peer_xrlim_allow -EXPORT_SYMBOL vmlinux 0x21e8b87a netif_napi_add +EXPORT_SYMBOL vmlinux 0x21ea5e45 fb_set_cmap +EXPORT_SYMBOL vmlinux 0x22219c84 try_to_release_page EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq -EXPORT_SYMBOL vmlinux 0x2239e406 mipi_dsi_generic_read -EXPORT_SYMBOL vmlinux 0x223da4d5 kernel_recvmsg -EXPORT_SYMBOL vmlinux 0x2243be59 scsi_mode_sense -EXPORT_SYMBOL vmlinux 0x22487c43 vfs_link -EXPORT_SYMBOL vmlinux 0x225a97fe dev_addr_add -EXPORT_SYMBOL vmlinux 0x22670926 input_get_keycode -EXPORT_SYMBOL vmlinux 0x22803bc2 __sk_dst_check -EXPORT_SYMBOL vmlinux 0x229b6d87 neigh_parms_alloc -EXPORT_SYMBOL vmlinux 0x229ba4b2 inet_sendpage +EXPORT_SYMBOL vmlinux 0x2231aedf ip_sock_set_mtu_discover +EXPORT_SYMBOL vmlinux 0x22405117 tcp_v4_destroy_sock +EXPORT_SYMBOL vmlinux 0x2273e7c8 thaw_super +EXPORT_SYMBOL vmlinux 0x228cc402 skb_flow_dissect_ct +EXPORT_SYMBOL vmlinux 0x229e0513 qdisc_hash_del +EXPORT_SYMBOL vmlinux 0x229e8080 mdio_device_reset +EXPORT_SYMBOL vmlinux 0x22a9351d of_graph_get_next_endpoint EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound -EXPORT_SYMBOL vmlinux 0x22d1377d scsi_change_queue_depth -EXPORT_SYMBOL vmlinux 0x22d2ea85 sock_setsockopt -EXPORT_SYMBOL vmlinux 0x22f907c8 tcp_parse_options -EXPORT_SYMBOL vmlinux 0x230a6777 rt_dst_alloc -EXPORT_SYMBOL vmlinux 0x2333d982 __quota_error -EXPORT_SYMBOL vmlinux 0x2336b006 put_cmsg_scm_timestamping +EXPORT_SYMBOL vmlinux 0x22b90b47 scsi_host_put +EXPORT_SYMBOL vmlinux 0x22c3a2ea bio_integrity_add_page EXPORT_SYMBOL vmlinux 0x233917d1 mac_vmode_to_var -EXPORT_SYMBOL vmlinux 0x233b64c4 tcf_idrinfo_destroy EXPORT_SYMBOL vmlinux 0x233cab92 cpumask_next -EXPORT_SYMBOL vmlinux 0x2348fd6a inet_unregister_protosw +EXPORT_SYMBOL vmlinux 0x233d38f1 dma_sync_sg_for_cpu +EXPORT_SYMBOL vmlinux 0x2348e39d generic_iommu_put_resv_regions EXPORT_SYMBOL vmlinux 0x23619cff jiffies_64 EXPORT_SYMBOL vmlinux 0x2364c85a tasklet_init -EXPORT_SYMBOL vmlinux 0x2375a710 generic_copy_file_range -EXPORT_SYMBOL vmlinux 0x23817d01 __inet_stream_connect +EXPORT_SYMBOL vmlinux 0x237347aa from_kprojid_munged EXPORT_SYMBOL vmlinux 0x238b099f mipi_dsi_packet_format_is_short EXPORT_SYMBOL vmlinux 0x2392d2e8 __traceiter_dma_fence_signaled -EXPORT_SYMBOL vmlinux 0x23983f73 flow_rule_match_eth_addrs -EXPORT_SYMBOL vmlinux 0x239ffd0d genphy_setup_forced -EXPORT_SYMBOL vmlinux 0x23a25e41 nf_hook_slow_list -EXPORT_SYMBOL vmlinux 0x23a31b96 agp_unbind_memory +EXPORT_SYMBOL vmlinux 0x23978de7 input_get_timestamp +EXPORT_SYMBOL vmlinux 0x23a687dd __sk_receive_skb +EXPORT_SYMBOL vmlinux 0x23b3082d phy_ethtool_set_wol EXPORT_SYMBOL vmlinux 0x23b5b617 mempool_create EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path -EXPORT_SYMBOL vmlinux 0x23c31ca0 security_inode_notifysecctx -EXPORT_SYMBOL vmlinux 0x23cdadbf tcp_mtu_to_mss EXPORT_SYMBOL vmlinux 0x23daa989 mipi_dsi_create_packet -EXPORT_SYMBOL vmlinux 0x23e85d1f devm_pci_remap_iospace -EXPORT_SYMBOL vmlinux 0x23e9eaf9 pneigh_enqueue EXPORT_SYMBOL vmlinux 0x23ee13fd mb_cache_entry_find_first +EXPORT_SYMBOL vmlinux 0x23ee7684 security_sk_clone EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node -EXPORT_SYMBOL vmlinux 0x2406fe1f md_done_sync -EXPORT_SYMBOL vmlinux 0x240abe44 pci_bus_write_config_dword -EXPORT_SYMBOL vmlinux 0x240e7016 keyring_clear -EXPORT_SYMBOL vmlinux 0x241e00a0 ip_mc_join_group +EXPORT_SYMBOL vmlinux 0x240bdbe4 __skb_checksum_complete +EXPORT_SYMBOL vmlinux 0x241026b6 dma_async_tx_descriptor_init +EXPORT_SYMBOL vmlinux 0x2410e8b1 get_tree_single +EXPORT_SYMBOL vmlinux 0x241dd8e7 dquot_load_quota_inode EXPORT_SYMBOL vmlinux 0x24212d86 __frontswap_invalidate_page -EXPORT_SYMBOL vmlinux 0x242aba58 config_group_init_type_name -EXPORT_SYMBOL vmlinux 0x2433e2ef devm_gen_pool_create +EXPORT_SYMBOL vmlinux 0x24276db1 mmc_retune_pause +EXPORT_SYMBOL vmlinux 0x242a57ab remove_conflicting_pci_framebuffers EXPORT_SYMBOL vmlinux 0x24428be5 strncpy_from_user -EXPORT_SYMBOL vmlinux 0x24447bd4 rtas -EXPORT_SYMBOL vmlinux 0x2449dca4 ethtool_virtdev_set_link_ksettings -EXPORT_SYMBOL vmlinux 0x24519a0f unlock_two_nondirectories +EXPORT_SYMBOL vmlinux 0x24455ade dump_skip_to +EXPORT_SYMBOL vmlinux 0x2448b9db finish_swait +EXPORT_SYMBOL vmlinux 0x24497158 netlink_ns_capable +EXPORT_SYMBOL vmlinux 0x244b3cb0 phy_set_sym_pause +EXPORT_SYMBOL vmlinux 0x2452476d tty_port_lower_dtr_rts EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline -EXPORT_SYMBOL vmlinux 0x245a6d62 dev_change_carrier +EXPORT_SYMBOL vmlinux 0x246cd398 twl6040_power EXPORT_SYMBOL vmlinux 0x2484adc3 __kfifo_to_user_r -EXPORT_SYMBOL vmlinux 0x2492ae56 tcp_conn_request -EXPORT_SYMBOL vmlinux 0x24a21bd5 inode_add_bytes -EXPORT_SYMBOL vmlinux 0x24a3201b debugfs_create_automount -EXPORT_SYMBOL vmlinux 0x24ad5f46 vme_irq_request +EXPORT_SYMBOL vmlinux 0x248cbd7e agp_collect_device_status +EXPORT_SYMBOL vmlinux 0x248dbb3f generic_file_direct_write +EXPORT_SYMBOL vmlinux 0x2494bb99 devm_pci_remap_cfg_resource +EXPORT_SYMBOL vmlinux 0x24b0f45a devm_rproc_add +EXPORT_SYMBOL vmlinux 0x24b11200 put_devmap_managed_page EXPORT_SYMBOL vmlinux 0x24d273d1 add_timer -EXPORT_SYMBOL vmlinux 0x24d8c9ee vfs_mkdir -EXPORT_SYMBOL vmlinux 0x24f1222f mfd_cell_disable -EXPORT_SYMBOL vmlinux 0x24f8c28a fscrypt_free_inode -EXPORT_SYMBOL vmlinux 0x24fa4386 mdio_device_remove +EXPORT_SYMBOL vmlinux 0x24f487bc __do_once_done +EXPORT_SYMBOL vmlinux 0x24f48df0 flow_rule_match_mpls +EXPORT_SYMBOL vmlinux 0x2500969f giveup_all EXPORT_SYMBOL vmlinux 0x2505bf18 kstrtol_from_user EXPORT_SYMBOL vmlinux 0x250788f0 rename_lock -EXPORT_SYMBOL vmlinux 0x25136ff9 register_shrinker +EXPORT_SYMBOL vmlinux 0x2507efe8 skb_prepare_seq_read +EXPORT_SYMBOL vmlinux 0x250ea7cd from_kgid_munged +EXPORT_SYMBOL vmlinux 0x251cdbbd d_delete EXPORT_SYMBOL vmlinux 0x252332f1 __SCK__tp_func_mmap_lock_released -EXPORT_SYMBOL vmlinux 0x2525e786 tcf_exts_dump_stats -EXPORT_SYMBOL vmlinux 0x252bea50 agp_bridge -EXPORT_SYMBOL vmlinux 0x25314c4b nd_region_to_nstype -EXPORT_SYMBOL vmlinux 0x253bd296 lookup_one_len_unlocked -EXPORT_SYMBOL vmlinux 0x254acbc2 block_commit_write +EXPORT_SYMBOL vmlinux 0x25369a40 mipi_dsi_dcs_set_display_on EXPORT_SYMBOL vmlinux 0x254c9287 ioremap -EXPORT_SYMBOL vmlinux 0x25567764 param_get_int -EXPORT_SYMBOL vmlinux 0x256bf559 phy_get_internal_delay +EXPORT_SYMBOL vmlinux 0x254df716 sock_set_keepalive +EXPORT_SYMBOL vmlinux 0x256eab54 pcie_set_readrq EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid +EXPORT_SYMBOL vmlinux 0x258248e1 dquot_quota_on EXPORT_SYMBOL vmlinux 0x258d2f76 net_dim_get_tx_moderation -EXPORT_SYMBOL vmlinux 0x259557b6 rc5t583_ext_power_req_config -EXPORT_SYMBOL vmlinux 0x259b2d7d blk_get_request -EXPORT_SYMBOL vmlinux 0x25b33be7 d_exact_alias -EXPORT_SYMBOL vmlinux 0x25bd6196 tcp_v4_do_rcv -EXPORT_SYMBOL vmlinux 0x25ccb57b bio_clone_fast -EXPORT_SYMBOL vmlinux 0x25dce68a pci_iomap +EXPORT_SYMBOL vmlinux 0x25abb281 cpufreq_get_policy EXPORT_SYMBOL vmlinux 0x25e58a09 hdmi_avi_infoframe_init +EXPORT_SYMBOL vmlinux 0x25e64e7e unregister_shrinker EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free -EXPORT_SYMBOL vmlinux 0x25ec36e5 single_open EXPORT_SYMBOL vmlinux 0x260a095a __sg_alloc_table +EXPORT_SYMBOL vmlinux 0x2623d772 padata_do_parallel +EXPORT_SYMBOL vmlinux 0x26361c98 generic_file_readonly_mmap EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions EXPORT_SYMBOL vmlinux 0x263c3152 bcmp -EXPORT_SYMBOL vmlinux 0x2642cc73 i2c_smbus_write_byte_data -EXPORT_SYMBOL vmlinux 0x267f17d6 neigh_seq_stop +EXPORT_SYMBOL vmlinux 0x26521bdc __dev_direct_xmit +EXPORT_SYMBOL vmlinux 0x26571f48 io_uring_get_socket +EXPORT_SYMBOL vmlinux 0x26740b57 ipv6_find_hdr EXPORT_SYMBOL vmlinux 0x2688ec10 bitmap_zalloc -EXPORT_SYMBOL vmlinux 0x26912546 mmc_of_parse_clk_phase -EXPORT_SYMBOL vmlinux 0x26a22c4e nd_pfn_validate -EXPORT_SYMBOL vmlinux 0x26a71bdc inet6_csk_route_req -EXPORT_SYMBOL vmlinux 0x26b391f8 unregister_netdev -EXPORT_SYMBOL vmlinux 0x26bd3760 tty_port_init +EXPORT_SYMBOL vmlinux 0x26a74936 devm_devfreq_remove_device +EXPORT_SYMBOL vmlinux 0x26a97e42 secure_tcpv6_ts_off +EXPORT_SYMBOL vmlinux 0x26c9df0b jbd2_journal_restart +EXPORT_SYMBOL vmlinux 0x26ccaac0 devm_devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0x26cf8912 pagecache_get_page EXPORT_SYMBOL vmlinux 0x26e298e0 unregister_memory_notifier -EXPORT_SYMBOL vmlinux 0x26e5714d kmem_cache_free_bulk EXPORT_SYMBOL vmlinux 0x26f8f0b8 iowrite16be -EXPORT_SYMBOL vmlinux 0x27003350 misc_register -EXPORT_SYMBOL vmlinux 0x27092f55 locks_copy_lock EXPORT_SYMBOL vmlinux 0x270cf88f dump_stack_lvl +EXPORT_SYMBOL vmlinux 0x2718bf0d flow_rule_match_icmp +EXPORT_SYMBOL vmlinux 0x271ab4d1 phy_ethtool_get_wol +EXPORT_SYMBOL vmlinux 0x27202628 kill_fasync EXPORT_SYMBOL vmlinux 0x272a8933 udp_memory_allocated -EXPORT_SYMBOL vmlinux 0x272cf3e7 uart_update_timeout EXPORT_SYMBOL vmlinux 0x2733eaf7 scsi_dev_info_list_add_keyed -EXPORT_SYMBOL vmlinux 0x27475a24 tcp_sock_set_user_timeout +EXPORT_SYMBOL vmlinux 0x2742088e get_user_pages EXPORT_SYMBOL vmlinux 0x27479d14 param_free_charp -EXPORT_SYMBOL vmlinux 0x274af97d netif_rx_ni -EXPORT_SYMBOL vmlinux 0x274c0c07 get_cached_acl -EXPORT_SYMBOL vmlinux 0x274de783 ipv6_dev_mc_dec -EXPORT_SYMBOL vmlinux 0x2756a4a6 kill_pid EXPORT_SYMBOL vmlinux 0x275dfee4 ucc_slow_free EXPORT_SYMBOL vmlinux 0x275f3d49 hdmi_vendor_infoframe_check -EXPORT_SYMBOL vmlinux 0x2771c1ce setup_arg_pages +EXPORT_SYMBOL vmlinux 0x276243ad nf_log_unbind_pf +EXPORT_SYMBOL vmlinux 0x27679b39 of_phy_connect +EXPORT_SYMBOL vmlinux 0x276c3e2a __ip_mc_inc_group EXPORT_SYMBOL vmlinux 0x27756bc8 scsi_sanitize_inquiry_string +EXPORT_SYMBOL vmlinux 0x277a93c4 netdev_sk_get_lowest_dev EXPORT_SYMBOL vmlinux 0x277ecee1 down_write +EXPORT_SYMBOL vmlinux 0x278158d8 vfs_fsync EXPORT_SYMBOL vmlinux 0x2782b393 xfrm_state_walk_init EXPORT_SYMBOL vmlinux 0x27864d57 memparse -EXPORT_SYMBOL vmlinux 0x2797ec57 phy_support_asym_pause -EXPORT_SYMBOL vmlinux 0x27a1901d tcf_block_put_ext +EXPORT_SYMBOL vmlinux 0x278c02e8 tcf_exts_change +EXPORT_SYMBOL vmlinux 0x27a2e4c1 twl6040_set_bits EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync +EXPORT_SYMBOL vmlinux 0x27c40851 no_seek_end_llseek +EXPORT_SYMBOL vmlinux 0x27ca119c machine_id EXPORT_SYMBOL vmlinux 0x27cdca93 pci_add_resource -EXPORT_SYMBOL vmlinux 0x27d2c64e devm_rproc_alloc -EXPORT_SYMBOL vmlinux 0x2814bea9 devm_of_find_backlight +EXPORT_SYMBOL vmlinux 0x27cf2d06 netlink_rcv_skb +EXPORT_SYMBOL vmlinux 0x27ddd195 inet_proto_csum_replace16 +EXPORT_SYMBOL vmlinux 0x280a719f mmc_of_parse_voltage EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek -EXPORT_SYMBOL vmlinux 0x281fb5b3 devm_memunmap -EXPORT_SYMBOL vmlinux 0x282082c1 dquot_mark_dquot_dirty -EXPORT_SYMBOL vmlinux 0x28269eed flow_rule_match_enc_ipv4_addrs -EXPORT_SYMBOL vmlinux 0x2827e643 sync_file_create -EXPORT_SYMBOL vmlinux 0x282bc2d9 sock_bindtoindex -EXPORT_SYMBOL vmlinux 0x2835387e pci_pme_active -EXPORT_SYMBOL vmlinux 0x28369832 inode_update_time -EXPORT_SYMBOL vmlinux 0x284ccfb6 __zerocopy_sg_from_iter -EXPORT_SYMBOL vmlinux 0x2864f1f4 rproc_of_resm_mem_entry_init -EXPORT_SYMBOL vmlinux 0x286e1808 phy_ethtool_ksettings_get +EXPORT_SYMBOL vmlinux 0x2835c061 tcp_create_openreq_child +EXPORT_SYMBOL vmlinux 0x2838e287 skb_trim +EXPORT_SYMBOL vmlinux 0x285635db mmc_erase +EXPORT_SYMBOL vmlinux 0x28598d66 vme_master_request +EXPORT_SYMBOL vmlinux 0x285cec5a tcf_block_netif_keep_dst +EXPORT_SYMBOL vmlinux 0x28659fbe vfs_get_super EXPORT_SYMBOL vmlinux 0x2875a315 utf32_to_utf8 -EXPORT_SYMBOL vmlinux 0x2886fa87 d_mark_dontcache -EXPORT_SYMBOL vmlinux 0x288c333d unregister_fib_notifier -EXPORT_SYMBOL vmlinux 0x28944258 mmc_retune_pause -EXPORT_SYMBOL vmlinux 0x28b5d5e3 dma_set_mask -EXPORT_SYMBOL vmlinux 0x28b61ebb i2c_transfer -EXPORT_SYMBOL vmlinux 0x28d73a1a d_rehash +EXPORT_SYMBOL vmlinux 0x287e60a5 begin_new_exec +EXPORT_SYMBOL vmlinux 0x28818865 sync_inodes_sb +EXPORT_SYMBOL vmlinux 0x2889bdb3 input_enable_softrepeat +EXPORT_SYMBOL vmlinux 0x289ee3ae reuseport_alloc +EXPORT_SYMBOL vmlinux 0x28b13e66 buffer_check_dirty_writeback +EXPORT_SYMBOL vmlinux 0x28cae950 tcp_seq_start +EXPORT_SYMBOL vmlinux 0x28cf073d iov_iter_get_pages_alloc +EXPORT_SYMBOL vmlinux 0x28e4d002 mipi_dsi_compression_mode +EXPORT_SYMBOL vmlinux 0x28e6fe4b request_firmware_into_buf +EXPORT_SYMBOL vmlinux 0x28f19c86 pci_scan_slot EXPORT_SYMBOL vmlinux 0x28f94604 __ubsan_handle_builtin_unreachable +EXPORT_SYMBOL vmlinux 0x2903905b vfs_get_link EXPORT_SYMBOL vmlinux 0x291ee747 csum_and_copy_to_user -EXPORT_SYMBOL vmlinux 0x293f792f simple_transaction_set -EXPORT_SYMBOL vmlinux 0x29500d3c nf_log_register -EXPORT_SYMBOL vmlinux 0x29502e05 sock_i_uid -EXPORT_SYMBOL vmlinux 0x295c9cbf xfrm_state_free +EXPORT_SYMBOL vmlinux 0x291fcde2 agp_unbind_memory +EXPORT_SYMBOL vmlinux 0x292825e2 md_reload_sb +EXPORT_SYMBOL vmlinux 0x292fdf0d iterate_supers_type EXPORT_SYMBOL vmlinux 0x29604158 napi_busy_loop -EXPORT_SYMBOL vmlinux 0x296c998e sg_miter_skip -EXPORT_SYMBOL vmlinux 0x297acf29 pci_write_config_byte -EXPORT_SYMBOL vmlinux 0x2998dfdb vfs_fileattr_set -EXPORT_SYMBOL vmlinux 0x29a48aee tcp_select_initial_window -EXPORT_SYMBOL vmlinux 0x29c43e12 dma_async_device_register +EXPORT_SYMBOL vmlinux 0x29914e1d xfrm6_rcv_tnl +EXPORT_SYMBOL vmlinux 0x299163f0 security_sb_clone_mnt_opts +EXPORT_SYMBOL vmlinux 0x299e6b1f skb_copy +EXPORT_SYMBOL vmlinux 0x29b52ed8 dst_destroy +EXPORT_SYMBOL vmlinux 0x29d3a7f1 netdev_lower_get_next +EXPORT_SYMBOL vmlinux 0x29deb597 pci_enable_ptm EXPORT_SYMBOL vmlinux 0x29e1e204 hdmi_audio_infoframe_pack -EXPORT_SYMBOL vmlinux 0x29f4e0f4 sk_send_sigurg -EXPORT_SYMBOL vmlinux 0x29f688b9 d_genocide -EXPORT_SYMBOL vmlinux 0x2a177202 seg6_hmac_info_add -EXPORT_SYMBOL vmlinux 0x2a1b8812 tcp_sock_set_keepcnt -EXPORT_SYMBOL vmlinux 0x2a1c5751 fc_mount -EXPORT_SYMBOL vmlinux 0x2a25431d iov_iter_gap_alignment -EXPORT_SYMBOL vmlinux 0x2a2a7aa9 set_page_dirty +EXPORT_SYMBOL vmlinux 0x29f93068 xfrm_init_state +EXPORT_SYMBOL vmlinux 0x2a01918b inet_frag_find +EXPORT_SYMBOL vmlinux 0x2a026e31 security_sctp_sk_clone +EXPORT_SYMBOL vmlinux 0x2a065580 __dec_node_page_state +EXPORT_SYMBOL vmlinux 0x2a0782dc of_count_phandle_with_args +EXPORT_SYMBOL vmlinux 0x2a1d4a71 inet_unregister_protosw +EXPORT_SYMBOL vmlinux 0x2a1d4e89 inet_put_port EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature -EXPORT_SYMBOL vmlinux 0x2a3c91c9 ata_port_printk -EXPORT_SYMBOL vmlinux 0x2a51ce9d twl6040_clear_bits -EXPORT_SYMBOL vmlinux 0x2a6ffacb rproc_of_parse_firmware -EXPORT_SYMBOL vmlinux 0x2a70425e dma_map_sg_attrs -EXPORT_SYMBOL vmlinux 0x2a763543 register_netdev +EXPORT_SYMBOL vmlinux 0x2a58d740 msi_desc_to_pci_dev +EXPORT_SYMBOL vmlinux 0x2a6280d9 tcp_mmap EXPORT_SYMBOL vmlinux 0x2a8a0b96 page_frag_alloc_align -EXPORT_SYMBOL vmlinux 0x2a8b55aa skb_clone_sk EXPORT_SYMBOL vmlinux 0x2a8e32b1 _raw_spin_unlock_irqrestore EXPORT_SYMBOL vmlinux 0x2a9a3905 vme_master_get -EXPORT_SYMBOL vmlinux 0x2aa0cf64 __phy_resume -EXPORT_SYMBOL vmlinux 0x2ad38e44 blk_queue_physical_block_size -EXPORT_SYMBOL vmlinux 0x2ae1459a __netlink_ns_capable -EXPORT_SYMBOL vmlinux 0x2ae2109c I_BDEV -EXPORT_SYMBOL vmlinux 0x2ae26e6e iterate_supers_type -EXPORT_SYMBOL vmlinux 0x2ae4270c netdev_port_same_parent_id -EXPORT_SYMBOL vmlinux 0x2af00241 netdev_notify_peers -EXPORT_SYMBOL vmlinux 0x2b0e35ec pnv_cxl_release_hwirq_ranges -EXPORT_SYMBOL vmlinux 0x2b125f20 netlink_unicast -EXPORT_SYMBOL vmlinux 0x2b31ae9a devfreq_monitor_suspend -EXPORT_SYMBOL vmlinux 0x2b3ecd71 i2c_smbus_read_byte_data -EXPORT_SYMBOL vmlinux 0x2b45b77c __SetPageMovable +EXPORT_SYMBOL vmlinux 0x2abe3667 pcibus_to_node +EXPORT_SYMBOL vmlinux 0x2aef8968 ww_mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0x2b21d171 __sk_queue_drop_skb +EXPORT_SYMBOL vmlinux 0x2b28aa61 bdi_alloc +EXPORT_SYMBOL vmlinux 0x2b2d72e0 phy_set_max_speed +EXPORT_SYMBOL vmlinux 0x2b30ac3b scsi_change_queue_depth +EXPORT_SYMBOL vmlinux 0x2b503d4a input_event EXPORT_SYMBOL vmlinux 0x2b68bd2f del_timer +EXPORT_SYMBOL vmlinux 0x2b6c434b block_is_partially_uptodate +EXPORT_SYMBOL vmlinux 0x2b7938a5 stop_tty +EXPORT_SYMBOL vmlinux 0x2b7dc7bf xsk_tx_release EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock -EXPORT_SYMBOL vmlinux 0x2bb5834d dma_map_resource -EXPORT_SYMBOL vmlinux 0x2bb6df90 uart_resume_port -EXPORT_SYMBOL vmlinux 0x2bc7e070 inode_get_bytes -EXPORT_SYMBOL vmlinux 0x2be79821 sk_page_frag_refill -EXPORT_SYMBOL vmlinux 0x2c175325 jbd2_journal_clear_features -EXPORT_SYMBOL vmlinux 0x2c1c3a6e fqdir_exit +EXPORT_SYMBOL vmlinux 0x2bb685fb get_tree_single_reconf +EXPORT_SYMBOL vmlinux 0x2bc59009 cont_write_begin +EXPORT_SYMBOL vmlinux 0x2bdf4d8c inet_shutdown +EXPORT_SYMBOL vmlinux 0x2be547ef blk_queue_max_discard_sectors +EXPORT_SYMBOL vmlinux 0x2bea4f9c get_unmapped_area +EXPORT_SYMBOL vmlinux 0x2beab764 notify_change +EXPORT_SYMBOL vmlinux 0x2c008b27 is_subdir +EXPORT_SYMBOL vmlinux 0x2c182150 __skb_free_datagram_locked +EXPORT_SYMBOL vmlinux 0x2c254ec1 tty_port_hangup EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar -EXPORT_SYMBOL vmlinux 0x2c2b082b pci_disable_msi -EXPORT_SYMBOL vmlinux 0x2c2e5304 of_mdiobus_phy_device_register -EXPORT_SYMBOL vmlinux 0x2c3fc4fb pcie_capability_clear_and_set_dword -EXPORT_SYMBOL vmlinux 0x2c402fa6 simple_unlink -EXPORT_SYMBOL vmlinux 0x2c4ab994 devm_alloc_etherdev_mqs -EXPORT_SYMBOL vmlinux 0x2c51ff37 nd_btt_probe -EXPORT_SYMBOL vmlinux 0x2c5c20cf locks_lock_inode_wait -EXPORT_SYMBOL vmlinux 0x2c7dabe2 bioset_init_from_src -EXPORT_SYMBOL vmlinux 0x2c8fbb51 seg6_hmac_net_init -EXPORT_SYMBOL vmlinux 0x2ca346d2 inet_offloads -EXPORT_SYMBOL vmlinux 0x2cb55200 drop_super_exclusive -EXPORT_SYMBOL vmlinux 0x2cbfe3a7 empty_aops +EXPORT_SYMBOL vmlinux 0x2c5d5a90 filemap_flush +EXPORT_SYMBOL vmlinux 0x2c670ae4 xsk_clear_tx_need_wakeup +EXPORT_SYMBOL vmlinux 0x2cb1f72e __i2c_transfer EXPORT_SYMBOL vmlinux 0x2ccd059a dim_on_top -EXPORT_SYMBOL vmlinux 0x2cd5ba94 xfrm_state_check_expire -EXPORT_SYMBOL vmlinux 0x2ce262d6 nf_unregister_sockopt -EXPORT_SYMBOL vmlinux 0x2cebbfe9 phy_attached_info_irq -EXPORT_SYMBOL vmlinux 0x2d03695b jbd2_journal_init_inode +EXPORT_SYMBOL vmlinux 0x2ccf49d9 unix_attach_fds +EXPORT_SYMBOL vmlinux 0x2cd31c5e bio_copy_data_iter +EXPORT_SYMBOL vmlinux 0x2ce05966 i2c_smbus_read_byte_data +EXPORT_SYMBOL vmlinux 0x2ce0d5a1 vio_register_device_node +EXPORT_SYMBOL vmlinux 0x2ce4d27a shrink_dcache_sb +EXPORT_SYMBOL vmlinux 0x2ce9863b __f_setown +EXPORT_SYMBOL vmlinux 0x2cee8cd7 kmem_cache_alloc_trace +EXPORT_SYMBOL vmlinux 0x2cf70e11 dquot_file_open +EXPORT_SYMBOL vmlinux 0x2d06f8f4 put_fs_context +EXPORT_SYMBOL vmlinux 0x2d119b83 vfs_statfs EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock -EXPORT_SYMBOL vmlinux 0x2d1431e7 eth_gro_receive -EXPORT_SYMBOL vmlinux 0x2d15c5e2 filemap_fault EXPORT_SYMBOL vmlinux 0x2d192c70 sg_zero_buffer -EXPORT_SYMBOL vmlinux 0x2d1a145c input_setup_polling -EXPORT_SYMBOL vmlinux 0x2d1a2082 pci_bus_write_config_word -EXPORT_SYMBOL vmlinux 0x2d284c95 pci_set_master -EXPORT_SYMBOL vmlinux 0x2d2dc06e dma_resv_init +EXPORT_SYMBOL vmlinux 0x2d2b0d17 serio_rescan EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged -EXPORT_SYMBOL vmlinux 0x2d328ef7 skb_checksum_setup EXPORT_SYMBOL vmlinux 0x2d3385d3 system_wq +EXPORT_SYMBOL vmlinux 0x2d34d359 of_find_matching_node_and_match +EXPORT_SYMBOL vmlinux 0x2d398906 __seq_open_private EXPORT_SYMBOL vmlinux 0x2d39b0a7 kstrdup +EXPORT_SYMBOL vmlinux 0x2d4319de sock_create_kern +EXPORT_SYMBOL vmlinux 0x2d486f89 dev_uc_unsync EXPORT_SYMBOL vmlinux 0x2d4c773a hdmi_spd_infoframe_init EXPORT_SYMBOL vmlinux 0x2d4daef5 find_font -EXPORT_SYMBOL vmlinux 0x2d59355b __ip_queue_xmit -EXPORT_SYMBOL vmlinux 0x2d6be4d8 xfrm6_rcv +EXPORT_SYMBOL vmlinux 0x2d51c847 devm_pci_alloc_host_bridge +EXPORT_SYMBOL vmlinux 0x2d5714d1 wait_for_key_construction +EXPORT_SYMBOL vmlinux 0x2d71e00b release_sock +EXPORT_SYMBOL vmlinux 0x2d7721f8 __traceiter_mmap_lock_released EXPORT_SYMBOL vmlinux 0x2d994605 security_inode_copy_up_xattr -EXPORT_SYMBOL vmlinux 0x2dbd9277 pci_find_parent_resource +EXPORT_SYMBOL vmlinux 0x2d9c5bbf devfreq_register_notifier EXPORT_SYMBOL vmlinux 0x2dc4e156 prepare_to_wait -EXPORT_SYMBOL vmlinux 0x2dcac03d param_get_hexint +EXPORT_SYMBOL vmlinux 0x2dcdd5ee migrate_page EXPORT_SYMBOL vmlinux 0x2dcdea36 chip_to_vas_id EXPORT_SYMBOL vmlinux 0x2dce19f1 __wait_on_bit -EXPORT_SYMBOL vmlinux 0x2ddf227d param_set_invbool -EXPORT_SYMBOL vmlinux 0x2def8398 sock_set_keepalive -EXPORT_SYMBOL vmlinux 0x2df82978 mipi_dsi_attach +EXPORT_SYMBOL vmlinux 0x2de3497d agp_generic_insert_memory +EXPORT_SYMBOL vmlinux 0x2e088924 tty_register_driver +EXPORT_SYMBOL vmlinux 0x2e12c355 cdrom_mode_sense +EXPORT_SYMBOL vmlinux 0x2e1c048e phy_mii_ioctl EXPORT_SYMBOL vmlinux 0x2e1ca751 clk_put EXPORT_SYMBOL vmlinux 0x2e1fab2f _raw_read_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0x2e22982a of_node_get EXPORT_SYMBOL vmlinux 0x2e2b40d2 strncat -EXPORT_SYMBOL vmlinux 0x2e30c375 tcp_stream_memory_free -EXPORT_SYMBOL vmlinux 0x2e52722c dev_get_by_index_rcu +EXPORT_SYMBOL vmlinux 0x2e2cd384 tty_port_raise_dtr_rts +EXPORT_SYMBOL vmlinux 0x2e4564e2 __hw_addr_ref_unsync_dev EXPORT_SYMBOL vmlinux 0x2e5fe036 __skb_ext_put -EXPORT_SYMBOL vmlinux 0x2e6d1c46 key_validate -EXPORT_SYMBOL vmlinux 0x2e750724 send_sig_info -EXPORT_SYMBOL vmlinux 0x2e8924fc iov_iter_pipe -EXPORT_SYMBOL vmlinux 0x2e952dc4 of_chosen -EXPORT_SYMBOL vmlinux 0x2e953402 d_invalidate -EXPORT_SYMBOL vmlinux 0x2e9bb365 genphy_restart_aneg -EXPORT_SYMBOL vmlinux 0x2ea2f421 ipv6_chk_addr -EXPORT_SYMBOL vmlinux 0x2ea576f7 kobject_put -EXPORT_SYMBOL vmlinux 0x2ea5f6c3 nvdimm_bus_lock -EXPORT_SYMBOL vmlinux 0x2eae6a3d ilookup +EXPORT_SYMBOL vmlinux 0x2e697fd8 nd_device_notify +EXPORT_SYMBOL vmlinux 0x2e6b2bb3 dev_get_by_index +EXPORT_SYMBOL vmlinux 0x2e817d54 iov_iter_npages +EXPORT_SYMBOL vmlinux 0x2e831c66 inet_frags_init +EXPORT_SYMBOL vmlinux 0x2e8b2656 devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0x2ea4ec3a cdrom_get_media_event EXPORT_SYMBOL vmlinux 0x2ec6bba0 errseq_set -EXPORT_SYMBOL vmlinux 0x2ecbe841 alloc_skb_with_frags -EXPORT_SYMBOL vmlinux 0x2ed2c5a3 netif_set_real_num_tx_queues -EXPORT_SYMBOL vmlinux 0x2ed669e8 rproc_get_by_phandle +EXPORT_SYMBOL vmlinux 0x2ed99c38 sk_filter_trim_cap +EXPORT_SYMBOL vmlinux 0x2ee322c8 scsi_add_device EXPORT_SYMBOL vmlinux 0x2ee4c2b1 hdmi_avi_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0x2ef1a734 skb_copy_expand -EXPORT_SYMBOL vmlinux 0x2ef9e2af d_find_any_alias +EXPORT_SYMBOL vmlinux 0x2ee8858c nf_hook_slow EXPORT_SYMBOL vmlinux 0x2f000c44 __percpu_counter_compare -EXPORT_SYMBOL vmlinux 0x2f004121 tcp_shutdown EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc -EXPORT_SYMBOL vmlinux 0x2f102a4e wait_on_page_bit EXPORT_SYMBOL vmlinux 0x2f1254d1 ucc_tdm_init -EXPORT_SYMBOL vmlinux 0x2f289233 mntput +EXPORT_SYMBOL vmlinux 0x2f1a5b14 kmalloc_caches +EXPORT_SYMBOL vmlinux 0x2f23758b vfs_copy_file_range +EXPORT_SYMBOL vmlinux 0x2f2a9e73 vme_irq_free EXPORT_SYMBOL vmlinux 0x2f2e91b2 security_ib_alloc_security +EXPORT_SYMBOL vmlinux 0x2f46218b generic_perform_write +EXPORT_SYMBOL vmlinux 0x2f496ad4 truncate_pagecache +EXPORT_SYMBOL vmlinux 0x2f4f2720 ip_sock_set_freebind +EXPORT_SYMBOL vmlinux 0x2f537885 jbd2_journal_revoke +EXPORT_SYMBOL vmlinux 0x2f59a306 inet_addr_type_dev_table +EXPORT_SYMBOL vmlinux 0x2f5a6c10 pagevec_lookup_range +EXPORT_SYMBOL vmlinux 0x2f6095cd scsi_host_lookup +EXPORT_SYMBOL vmlinux 0x2f60c77b unlock_buffer +EXPORT_SYMBOL vmlinux 0x2f688bab bio_free_pages EXPORT_SYMBOL vmlinux 0x2f7754a8 dma_pool_free -EXPORT_SYMBOL vmlinux 0x2f819dc2 fs_param_is_u32 EXPORT_SYMBOL vmlinux 0x2f8264bd gtm_get_timer16 -EXPORT_SYMBOL vmlinux 0x2f93c0e0 netif_device_detach -EXPORT_SYMBOL vmlinux 0x2faae8e9 pci_find_hose_for_OF_device -EXPORT_SYMBOL vmlinux 0x2fac1072 rawv6_mh_filter_register +EXPORT_SYMBOL vmlinux 0x2f8a6a2e tty_wait_until_sent +EXPORT_SYMBOL vmlinux 0x2f8cfee9 redirty_page_for_writepage +EXPORT_SYMBOL vmlinux 0x2f97e8d6 remove_watch_from_object EXPORT_SYMBOL vmlinux 0x2fae96de rtas_data_buf_lock -EXPORT_SYMBOL vmlinux 0x2fb1d5f7 vc_resize -EXPORT_SYMBOL vmlinux 0x2fb3bf9c param_ops_byte +EXPORT_SYMBOL vmlinux 0x2fb46dc6 register_netdevice +EXPORT_SYMBOL vmlinux 0x2fb4f460 of_get_next_parent EXPORT_SYMBOL vmlinux 0x2fb6de5d add_device_randomness -EXPORT_SYMBOL vmlinux 0x2fc4493f pci_enable_wake -EXPORT_SYMBOL vmlinux 0x2fc4f980 seq_open_private +EXPORT_SYMBOL vmlinux 0x2fc50150 nobh_truncate_page EXPORT_SYMBOL vmlinux 0x2fc78fcc xa_erase -EXPORT_SYMBOL vmlinux 0x2fceb55b __devm_request_region -EXPORT_SYMBOL vmlinux 0x2fd66573 genphy_resume -EXPORT_SYMBOL vmlinux 0x2fd703f2 sk_stream_error +EXPORT_SYMBOL vmlinux 0x2fce09e4 __find_get_block +EXPORT_SYMBOL vmlinux 0x2fdfba53 scsi_device_put EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier -EXPORT_SYMBOL vmlinux 0x2fe3e58c ip_mc_inc_group -EXPORT_SYMBOL vmlinux 0x30013740 __cleancache_init_fs -EXPORT_SYMBOL vmlinux 0x3031da15 tcp_add_backlog -EXPORT_SYMBOL vmlinux 0x303f01d8 key_link -EXPORT_SYMBOL vmlinux 0x304f77c8 iov_iter_get_pages_alloc +EXPORT_SYMBOL vmlinux 0x2fe2551c super_setup_bdi +EXPORT_SYMBOL vmlinux 0x2ff76f7b dm_table_event +EXPORT_SYMBOL vmlinux 0x300b53c9 devm_backlight_device_unregister +EXPORT_SYMBOL vmlinux 0x30261958 tcf_exts_destroy +EXPORT_SYMBOL vmlinux 0x3045f1b4 genphy_handle_interrupt_no_ack EXPORT_SYMBOL vmlinux 0x3052fecd ptp_convert_timestamp EXPORT_SYMBOL vmlinux 0x305cf10a security_binder_transfer_binder -EXPORT_SYMBOL vmlinux 0x306bf536 sock_cmsg_send -EXPORT_SYMBOL vmlinux 0x3074beb1 rproc_elf_sanity_check +EXPORT_SYMBOL vmlinux 0x30697ad3 set_binfmt +EXPORT_SYMBOL vmlinux 0x308533d7 blk_dump_rq_flags +EXPORT_SYMBOL vmlinux 0x308685a9 page_pool_alloc_pages +EXPORT_SYMBOL vmlinux 0x308b1e2f of_find_node_by_name EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep -EXPORT_SYMBOL vmlinux 0x309ec33a rproc_get_by_child +EXPORT_SYMBOL vmlinux 0x30a22e3b tcf_unregister_action EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user -EXPORT_SYMBOL vmlinux 0x30ac7ee6 ipv6_skip_exthdr EXPORT_SYMBOL vmlinux 0x30acfde9 hsiphash_2u32 -EXPORT_SYMBOL vmlinux 0x30b1b399 neigh_carrier_down -EXPORT_SYMBOL vmlinux 0x30b4a46e input_flush_device EXPORT_SYMBOL vmlinux 0x30b8b35c cpu_to_chip_id -EXPORT_SYMBOL vmlinux 0x30cba4d8 dm_kcopyd_copy -EXPORT_SYMBOL vmlinux 0x30d2812d path_get -EXPORT_SYMBOL vmlinux 0x30e45025 __register_chrdev -EXPORT_SYMBOL vmlinux 0x30e8bdd7 generic_parse_monolithic +EXPORT_SYMBOL vmlinux 0x30be0392 tcf_idr_cleanup +EXPORT_SYMBOL vmlinux 0x30e082ab xfrm_register_type +EXPORT_SYMBOL vmlinux 0x30f83056 param_set_ushort EXPORT_SYMBOL vmlinux 0x3102d70b frontswap_curr_pages -EXPORT_SYMBOL vmlinux 0x31099f17 validate_slab_cache -EXPORT_SYMBOL vmlinux 0x3111de80 agp_create_memory +EXPORT_SYMBOL vmlinux 0x3106723d key_type_keyring +EXPORT_SYMBOL vmlinux 0x310c74f3 tty_port_alloc_xmit_buf +EXPORT_SYMBOL vmlinux 0x311fc892 get_tree_keyed EXPORT_SYMBOL vmlinux 0x3126a9e8 siphash_1u64 -EXPORT_SYMBOL vmlinux 0x3146abcf pin_user_pages_remote -EXPORT_SYMBOL vmlinux 0x3164ddc2 xp_free -EXPORT_SYMBOL vmlinux 0x3173a8e4 __vfs_getxattr -EXPORT_SYMBOL vmlinux 0x31839c4b of_find_node_by_type -EXPORT_SYMBOL vmlinux 0x31882b57 vme_bus_num +EXPORT_SYMBOL vmlinux 0x31279928 mdio_find_bus +EXPORT_SYMBOL vmlinux 0x312ca212 genphy_c37_config_aneg +EXPORT_SYMBOL vmlinux 0x31310179 dev_loopback_xmit +EXPORT_SYMBOL vmlinux 0x313ef947 inet_release +EXPORT_SYMBOL vmlinux 0x3150e202 sock_pfree +EXPORT_SYMBOL vmlinux 0x31541c38 scsi_bios_ptable +EXPORT_SYMBOL vmlinux 0x3164e208 simple_dir_inode_operations +EXPORT_SYMBOL vmlinux 0x317126dd jbd2_journal_start +EXPORT_SYMBOL vmlinux 0x317a23c8 xfrm_policy_walk_done +EXPORT_SYMBOL vmlinux 0x31831302 __alloc_skb +EXPORT_SYMBOL vmlinux 0x31a5cd73 inet_add_protocol EXPORT_SYMBOL vmlinux 0x31b1a41c __debugger_fault_handler -EXPORT_SYMBOL vmlinux 0x31d23f64 neigh_sysctl_unregister -EXPORT_SYMBOL vmlinux 0x31d4936b tcp_md5_hash_skb_data -EXPORT_SYMBOL vmlinux 0x31d70f37 seg6_hmac_validate_skb -EXPORT_SYMBOL vmlinux 0x31da2901 sock_register -EXPORT_SYMBOL vmlinux 0x31eed319 fs_param_is_blockdev -EXPORT_SYMBOL vmlinux 0x31fae001 tcp_initialize_rcv_mss -EXPORT_SYMBOL vmlinux 0x31fc4f7e cdrom_ioctl -EXPORT_SYMBOL vmlinux 0x3205f511 mmc_wait_for_req +EXPORT_SYMBOL vmlinux 0x31b27421 file_check_and_advance_wb_err +EXPORT_SYMBOL vmlinux 0x31beb6d7 ipv6_select_ident +EXPORT_SYMBOL vmlinux 0x31c9c177 scsi_is_sdev_device +EXPORT_SYMBOL vmlinux 0x31cb5b90 devm_of_iomap +EXPORT_SYMBOL vmlinux 0x31d352be devm_nvmem_cell_put +EXPORT_SYMBOL vmlinux 0x31e0cc26 netdev_set_num_tc EXPORT_SYMBOL vmlinux 0x3217c3a3 __memset32 -EXPORT_SYMBOL vmlinux 0x322927d2 backlight_device_register +EXPORT_SYMBOL vmlinux 0x3222787b gro_cells_receive +EXPORT_SYMBOL vmlinux 0x3233ae4f __dec_zone_page_state EXPORT_SYMBOL vmlinux 0x32394d4b qe_issue_cmd -EXPORT_SYMBOL vmlinux 0x32406b1a mmc_alloc_host -EXPORT_SYMBOL vmlinux 0x3242a51f iterate_dir -EXPORT_SYMBOL vmlinux 0x3249a9f1 poll_freewait -EXPORT_SYMBOL vmlinux 0x325ab7fb close_fd_get_file -EXPORT_SYMBOL vmlinux 0x3262d22c vfio_register_notifier -EXPORT_SYMBOL vmlinux 0x326b1e5c __mod_lruvec_page_state +EXPORT_SYMBOL vmlinux 0x323b2e99 nf_log_unregister +EXPORT_SYMBOL vmlinux 0x326cf369 jbd2_journal_abort +EXPORT_SYMBOL vmlinux 0x3274e7e4 xfrm_policy_register_afinfo +EXPORT_SYMBOL vmlinux 0x327ace4f tc_setup_cb_add +EXPORT_SYMBOL vmlinux 0x327b5def vme_bus_num EXPORT_SYMBOL vmlinux 0x327c84bf vme_lm_attach -EXPORT_SYMBOL vmlinux 0x327d6319 tcp_sock_set_cork -EXPORT_SYMBOL vmlinux 0x328325da xfrm6_rcv_encap EXPORT_SYMBOL vmlinux 0x3283e6b0 prandom_seed_full_state -EXPORT_SYMBOL vmlinux 0x328cc6b8 blk_mq_delay_run_hw_queues -EXPORT_SYMBOL vmlinux 0x328d0661 phy_stop -EXPORT_SYMBOL vmlinux 0x32a06790 jbd2_journal_put_journal_head +EXPORT_SYMBOL vmlinux 0x32a68c3a blk_mq_stop_hw_queues +EXPORT_SYMBOL vmlinux 0x32ae1af6 tcp_fastopen_defer_connect +EXPORT_SYMBOL vmlinux 0x32b3068b md_register_thread EXPORT_SYMBOL vmlinux 0x32b7d5b2 lockref_put_not_zero -EXPORT_SYMBOL vmlinux 0x32ca877b flush_dcache_icache_page EXPORT_SYMBOL vmlinux 0x32ce3777 radix_tree_preload -EXPORT_SYMBOL vmlinux 0x330f877d scsi_track_queue_full -EXPORT_SYMBOL vmlinux 0x3329f98e da903x_query_status -EXPORT_SYMBOL vmlinux 0x33473372 _dev_alert -EXPORT_SYMBOL vmlinux 0x335b89cc eth_header_parse -EXPORT_SYMBOL vmlinux 0x33673e23 __mmc_claim_host -EXPORT_SYMBOL vmlinux 0x336d1812 vio_register_device_node +EXPORT_SYMBOL vmlinux 0x32fa1b4a mmc_wait_for_req +EXPORT_SYMBOL vmlinux 0x32fa5714 ethtool_notify +EXPORT_SYMBOL vmlinux 0x32fdf109 backlight_device_get_by_name +EXPORT_SYMBOL vmlinux 0x3327ed9e xfrm_unregister_type_offload +EXPORT_SYMBOL vmlinux 0x33353723 security_locked_down +EXPORT_SYMBOL vmlinux 0x33447f54 vfio_register_notifier +EXPORT_SYMBOL vmlinux 0x334705da proto_unregister +EXPORT_SYMBOL vmlinux 0x33522cf5 bio_copy_data +EXPORT_SYMBOL vmlinux 0x33629ae7 page_symlink +EXPORT_SYMBOL vmlinux 0x336754df __blkdev_issue_zeroout EXPORT_SYMBOL vmlinux 0x33736a1d __genradix_ptr_alloc -EXPORT_SYMBOL vmlinux 0x337b6660 ip_sock_set_mtu_discover -EXPORT_SYMBOL vmlinux 0x338d4e88 delete_from_page_cache -EXPORT_SYMBOL vmlinux 0x3397f112 forget_all_cached_acls -EXPORT_SYMBOL vmlinux 0x33a838b0 send_sig_mceerr -EXPORT_SYMBOL vmlinux 0x33aff7eb inet_csk_complete_hashdance -EXPORT_SYMBOL vmlinux 0x33b73469 tty_chars_in_buffer +EXPORT_SYMBOL vmlinux 0x33743f5a generic_pipe_buf_release +EXPORT_SYMBOL vmlinux 0x337af13e pci_stop_and_remove_bus_device +EXPORT_SYMBOL vmlinux 0x3387bfc1 rtc_add_groups +EXPORT_SYMBOL vmlinux 0x33918dc1 __icmp_send +EXPORT_SYMBOL vmlinux 0x33b16b68 scsi_get_device_flags_keyed EXPORT_SYMBOL vmlinux 0x33b84f74 copy_page -EXPORT_SYMBOL vmlinux 0x33becdd3 vfs_create -EXPORT_SYMBOL vmlinux 0x33c690ea __free_pages -EXPORT_SYMBOL vmlinux 0x33d80d73 dquot_release -EXPORT_SYMBOL vmlinux 0x33e742e7 pcie_ptm_enabled +EXPORT_SYMBOL vmlinux 0x33d6fdbe flow_block_cb_lookup +EXPORT_SYMBOL vmlinux 0x33d7fd21 remove_proc_entry +EXPORT_SYMBOL vmlinux 0x33df72a8 unix_destruct_scm EXPORT_SYMBOL vmlinux 0x33f0768c cpufreq_quick_get_max -EXPORT_SYMBOL vmlinux 0x33f7819e devm_get_clk_from_child EXPORT_SYMBOL vmlinux 0x33fc2a31 get_user_ifreq EXPORT_SYMBOL vmlinux 0x33fcf44a __kfifo_out_r -EXPORT_SYMBOL vmlinux 0x34081a6a kmem_cache_destroy -EXPORT_SYMBOL vmlinux 0x342c03de sock_bind_add -EXPORT_SYMBOL vmlinux 0x342efbd6 gro_cells_init -EXPORT_SYMBOL vmlinux 0x34510a67 dma_unmap_resource +EXPORT_SYMBOL vmlinux 0x342c337f __skb_get_hash +EXPORT_SYMBOL vmlinux 0x3459c1cc of_get_next_cpu_node +EXPORT_SYMBOL vmlinux 0x345aad3a vfs_parse_fs_param_source EXPORT_SYMBOL vmlinux 0x345c8916 strict_msr_control -EXPORT_SYMBOL vmlinux 0x347485da nf_setsockopt -EXPORT_SYMBOL vmlinux 0x34911ed4 security_inode_listsecurity +EXPORT_SYMBOL vmlinux 0x34777770 mmc_retune_timer_stop +EXPORT_SYMBOL vmlinux 0x3499bfa1 simple_get_link EXPORT_SYMBOL vmlinux 0x349cba85 strchr -EXPORT_SYMBOL vmlinux 0x34a24b7d clear_bdi_congested -EXPORT_SYMBOL vmlinux 0x34b28241 __frontswap_test -EXPORT_SYMBOL vmlinux 0x34b8e891 inet_getname +EXPORT_SYMBOL vmlinux 0x34aecaa0 proc_remove +EXPORT_SYMBOL vmlinux 0x34b3dc30 netif_receive_skb_core +EXPORT_SYMBOL vmlinux 0x34be1737 set_create_files_as +EXPORT_SYMBOL vmlinux 0x34c00791 dev_mc_init EXPORT_SYMBOL vmlinux 0x34c7cdbc lookup_bdev -EXPORT_SYMBOL vmlinux 0x34dff7c0 is_nd_dax -EXPORT_SYMBOL vmlinux 0x34e07b45 tcp_prot +EXPORT_SYMBOL vmlinux 0x34d7ac80 mdiobus_read_nested EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue -EXPORT_SYMBOL vmlinux 0x3513fdfd do_splice_direct -EXPORT_SYMBOL vmlinux 0x35169aaf inet_proto_csum_replace_by_diff +EXPORT_SYMBOL vmlinux 0x3503f814 gnet_stats_copy_app +EXPORT_SYMBOL vmlinux 0x350885fe dquot_alloc EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier +EXPORT_SYMBOL vmlinux 0x351e18ad dmaenginem_async_device_register +EXPORT_SYMBOL vmlinux 0x3524c179 fs_bio_set EXPORT_SYMBOL vmlinux 0x35257e6c epapr_hypercall_start EXPORT_SYMBOL vmlinux 0x352bb201 xa_store -EXPORT_SYMBOL vmlinux 0x352c07f8 input_mt_init_slots -EXPORT_SYMBOL vmlinux 0x352c5270 bio_devname EXPORT_SYMBOL vmlinux 0x3539f11b match_strlcpy -EXPORT_SYMBOL vmlinux 0x354d8d13 dquot_get_state -EXPORT_SYMBOL vmlinux 0x35515dd3 sock_kmalloc -EXPORT_SYMBOL vmlinux 0x3554b6ef kthread_destroy_worker +EXPORT_SYMBOL vmlinux 0x353f3111 poll_initwait +EXPORT_SYMBOL vmlinux 0x3541d213 eth_get_headlen +EXPORT_SYMBOL vmlinux 0x35469c5e __scsi_iterate_devices +EXPORT_SYMBOL vmlinux 0x354d9ded skb_csum_hwoffload_help +EXPORT_SYMBOL vmlinux 0x3556c688 jbd2_journal_load +EXPORT_SYMBOL vmlinux 0x355927e8 vfs_iter_read +EXPORT_SYMBOL vmlinux 0x355c71d3 padata_free_shell EXPORT_SYMBOL vmlinux 0x356461c8 rtc_time64_to_tm EXPORT_SYMBOL vmlinux 0x3573e0d0 radix_tree_lookup_slot -EXPORT_SYMBOL vmlinux 0x358fe91d mipi_dsi_dcs_write_buffer -EXPORT_SYMBOL vmlinux 0x3596f686 set_binfmt -EXPORT_SYMBOL vmlinux 0x359f192e module_put +EXPORT_SYMBOL vmlinux 0x358df577 __inet_hash +EXPORT_SYMBOL vmlinux 0x35974aad xfrm_trans_queue_net EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 +EXPORT_SYMBOL vmlinux 0x35aab312 udp_skb_destructor +EXPORT_SYMBOL vmlinux 0x35b7201f sched_autogroup_create_attach +EXPORT_SYMBOL vmlinux 0x35bb75f7 nobh_write_begin EXPORT_SYMBOL vmlinux 0x35c32767 xor_altivec_2 -EXPORT_SYMBOL vmlinux 0x35d1e97a no_seek_end_llseek_size -EXPORT_SYMBOL vmlinux 0x361fbd79 vfs_dedupe_file_range_one -EXPORT_SYMBOL vmlinux 0x362ffa24 dcb_ieee_delapp -EXPORT_SYMBOL vmlinux 0x36353e90 d_drop -EXPORT_SYMBOL vmlinux 0x363f8996 param_get_invbool -EXPORT_SYMBOL vmlinux 0x364d21b2 blk_queue_io_min -EXPORT_SYMBOL vmlinux 0x365244ba sk_reset_timer +EXPORT_SYMBOL vmlinux 0x35cce52f phy_ethtool_get_sset_count +EXPORT_SYMBOL vmlinux 0x35d7cdcd genphy_read_status_fixed +EXPORT_SYMBOL vmlinux 0x35e04874 ps2_drain +EXPORT_SYMBOL vmlinux 0x35e4ca2c dev_mc_add_global +EXPORT_SYMBOL vmlinux 0x35f1c646 generic_fillattr +EXPORT_SYMBOL vmlinux 0x361f2c79 __xfrm_state_destroy +EXPORT_SYMBOL vmlinux 0x3620cae9 open_with_fake_path +EXPORT_SYMBOL vmlinux 0x3626c46d sk_stream_kill_queues +EXPORT_SYMBOL vmlinux 0x3647da8c neigh_update EXPORT_SYMBOL vmlinux 0x365acda7 set_normalized_timespec64 EXPORT_SYMBOL vmlinux 0x365e7911 kstrdup_const -EXPORT_SYMBOL vmlinux 0x3666ac2a clocksource_change_rating -EXPORT_SYMBOL vmlinux 0x367c5cfe __mdiobus_read -EXPORT_SYMBOL vmlinux 0x3697d257 peernet2id -EXPORT_SYMBOL vmlinux 0x36b44534 account_page_redirty +EXPORT_SYMBOL vmlinux 0x366df83c devm_of_mdiobus_register +EXPORT_SYMBOL vmlinux 0x366fdbdf ppp_register_channel +EXPORT_SYMBOL vmlinux 0x3673ea95 nf_log_bind_pf EXPORT_SYMBOL vmlinux 0x36c7d2fe dma_fence_default_wait -EXPORT_SYMBOL vmlinux 0x36ca011f __skb_pad -EXPORT_SYMBOL vmlinux 0x36d59b46 bdi_alloc -EXPORT_SYMBOL vmlinux 0x36dbb7a8 release_pages EXPORT_SYMBOL vmlinux 0x36eaafe2 __cpu_active_mask -EXPORT_SYMBOL vmlinux 0x36f568d6 get_tree_keyed +EXPORT_SYMBOL vmlinux 0x36ecb3c6 simple_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0x36f7be4a __d_drop +EXPORT_SYMBOL vmlinux 0x36f8cb96 mipi_dsi_dcs_set_column_address +EXPORT_SYMBOL vmlinux 0x3718b941 simple_fill_super +EXPORT_SYMBOL vmlinux 0x371d0d15 thermal_cdev_update EXPORT_SYMBOL vmlinux 0x371d2130 check_legacy_ioport -EXPORT_SYMBOL vmlinux 0x37236046 tty_port_free_xmit_buf -EXPORT_SYMBOL vmlinux 0x3725da48 mipi_dsi_dcs_nop +EXPORT_SYMBOL vmlinux 0x37304889 fib_notifier_ops_unregister EXPORT_SYMBOL vmlinux 0x3737d9a9 ZSTD_DStreamWorkspaceBound EXPORT_SYMBOL vmlinux 0x37383edd rtas_get_power_level EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn EXPORT_SYMBOL vmlinux 0x3755f990 gf128mul_init_64k_bbe -EXPORT_SYMBOL vmlinux 0x3758b812 iov_iter_single_seg_count -EXPORT_SYMBOL vmlinux 0x375cd656 dm_kobject_release -EXPORT_SYMBOL vmlinux 0x375fc050 ipmi_platform_add -EXPORT_SYMBOL vmlinux 0x376396e1 sock_pfree +EXPORT_SYMBOL vmlinux 0x37710191 inode_dio_wait EXPORT_SYMBOL vmlinux 0x37746fde ZSTD_initDStream -EXPORT_SYMBOL vmlinux 0x37994340 genl_register_family -EXPORT_SYMBOL vmlinux 0x37ae9e60 call_netdevice_notifiers +EXPORT_SYMBOL vmlinux 0x3776c0f3 __quota_error +EXPORT_SYMBOL vmlinux 0x378c14b5 get_vm_area +EXPORT_SYMBOL vmlinux 0x3794253f __page_cache_alloc +EXPORT_SYMBOL vmlinux 0x379ea89b jbd2_journal_stop +EXPORT_SYMBOL vmlinux 0x37ad5ac5 blk_rq_init +EXPORT_SYMBOL vmlinux 0x37b629bb bio_uninit +EXPORT_SYMBOL vmlinux 0x37b79d92 serio_reconnect EXPORT_SYMBOL vmlinux 0x37b8b39e screen_info -EXPORT_SYMBOL vmlinux 0x37b9df80 of_find_node_opts_by_path +EXPORT_SYMBOL vmlinux 0x37bc2067 rproc_alloc EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs -EXPORT_SYMBOL vmlinux 0x37ec5e65 pci_restore_state +EXPORT_SYMBOL vmlinux 0x37c48d4c param_ops_uint +EXPORT_SYMBOL vmlinux 0x37e9ab24 crypto_sha256_update EXPORT_SYMBOL vmlinux 0x37f40aa5 _raw_write_lock_irq -EXPORT_SYMBOL vmlinux 0x37fda54d bio_add_pc_page EXPORT_SYMBOL vmlinux 0x38026cb6 complete EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus -EXPORT_SYMBOL vmlinux 0x3827957b skb_trim -EXPORT_SYMBOL vmlinux 0x382dbe17 pcim_iomap_table -EXPORT_SYMBOL vmlinux 0x3847fb85 skb_expand_head -EXPORT_SYMBOL vmlinux 0x384a563f dquot_get_dqblk +EXPORT_SYMBOL vmlinux 0x381da5f3 devfreq_add_governor +EXPORT_SYMBOL vmlinux 0x383150bc input_get_keycode +EXPORT_SYMBOL vmlinux 0x383e9958 md_bitmap_end_sync +EXPORT_SYMBOL vmlinux 0x384f3a08 napi_build_skb +EXPORT_SYMBOL vmlinux 0x3854483b vga_set_legacy_decoding EXPORT_SYMBOL vmlinux 0x3854774b kstrtoll -EXPORT_SYMBOL vmlinux 0x3863666a tcf_idr_cleanup -EXPORT_SYMBOL vmlinux 0x3873f855 dev_mc_sync -EXPORT_SYMBOL vmlinux 0x387854b7 cfb_fillrect -EXPORT_SYMBOL vmlinux 0x387f07b8 ip_fraglist_init -EXPORT_SYMBOL vmlinux 0x387f33a6 dump_align +EXPORT_SYMBOL vmlinux 0x38555388 sock_no_accept +EXPORT_SYMBOL vmlinux 0x3859d92c ata_link_printk +EXPORT_SYMBOL vmlinux 0x385aa688 tcp_sock_set_nodelay +EXPORT_SYMBOL vmlinux 0x385c054b xfrm_input_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x3874ead5 __cgroup_bpf_run_filter_sk +EXPORT_SYMBOL vmlinux 0x387a2604 __dev_set_mtu +EXPORT_SYMBOL vmlinux 0x38845366 padata_free EXPORT_SYMBOL vmlinux 0x38869d88 kstat -EXPORT_SYMBOL vmlinux 0x388fb9af try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x38901db8 prepare_to_swait_exclusive EXPORT_SYMBOL vmlinux 0x3891ffc8 ecryptfs_fill_auth_tok -EXPORT_SYMBOL vmlinux 0x3892193c ata_scsi_cmd_error_handler EXPORT_SYMBOL vmlinux 0x389617b0 LZ4_decompress_fast_continue -EXPORT_SYMBOL vmlinux 0x38a5997d dquot_load_quota_inode +EXPORT_SYMBOL vmlinux 0x389daa70 blk_mq_end_request +EXPORT_SYMBOL vmlinux 0x38a2fde3 input_set_keycode +EXPORT_SYMBOL vmlinux 0x38a35e31 dcb_ieee_getapp_mask EXPORT_SYMBOL vmlinux 0x38a71b7e pci_free_resource_list -EXPORT_SYMBOL vmlinux 0x38a9bf32 i2c_smbus_read_block_data EXPORT_SYMBOL vmlinux 0x38a9f7c5 in6addr_loopback -EXPORT_SYMBOL vmlinux 0x38b32aad unregister_tcf_proto_ops -EXPORT_SYMBOL vmlinux 0x38b7aeb7 iw_handler_set_thrspy -EXPORT_SYMBOL vmlinux 0x38d0ef2c nf_log_trace -EXPORT_SYMBOL vmlinux 0x38d6b21a netif_receive_skb +EXPORT_SYMBOL vmlinux 0x38b7072d input_mt_get_slot_by_key +EXPORT_SYMBOL vmlinux 0x38bba525 pci_map_rom +EXPORT_SYMBOL vmlinux 0x38c3cc18 ptp_clock_register EXPORT_SYMBOL vmlinux 0x38de28cd revert_creds -EXPORT_SYMBOL vmlinux 0x38f0e8d5 mmc_command_done -EXPORT_SYMBOL vmlinux 0x38f0fc45 scm_detach_fds EXPORT_SYMBOL vmlinux 0x38f48af7 put_user_ifreq EXPORT_SYMBOL vmlinux 0x38fb9933 tty_std_termios -EXPORT_SYMBOL vmlinux 0x39017917 tcp_v4_send_check -EXPORT_SYMBOL vmlinux 0x390b19f3 setattr_prepare -EXPORT_SYMBOL vmlinux 0x391104af security_tun_dev_attach -EXPORT_SYMBOL vmlinux 0x39161d73 pcim_iounmap_regions -EXPORT_SYMBOL vmlinux 0x391ee165 sock_diag_put_filterinfo +EXPORT_SYMBOL vmlinux 0x3909435a phy_attach_direct +EXPORT_SYMBOL vmlinux 0x391c33d5 inet_getname +EXPORT_SYMBOL vmlinux 0x3921fcb8 pci_ep_cfs_add_epf_group +EXPORT_SYMBOL vmlinux 0x39263ce5 iunique EXPORT_SYMBOL vmlinux 0x3939f8f0 rfkill_pause_polling +EXPORT_SYMBOL vmlinux 0x394133d7 vlan_ioctl_set EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p EXPORT_SYMBOL vmlinux 0x394a1e11 phy_sfp_attach -EXPORT_SYMBOL vmlinux 0x3954c031 blk_rq_count_integrity_sg +EXPORT_SYMBOL vmlinux 0x3950682c fget EXPORT_SYMBOL vmlinux 0x3955fcf6 __kfifo_in_r -EXPORT_SYMBOL vmlinux 0x395a3029 adjust_managed_page_count -EXPORT_SYMBOL vmlinux 0x395afa6e pcibios_resource_to_bus -EXPORT_SYMBOL vmlinux 0x3968ff8f bio_integrity_add_page -EXPORT_SYMBOL vmlinux 0x39841041 freezing_slow_path -EXPORT_SYMBOL vmlinux 0x3988b1ff twl6040_reg_read -EXPORT_SYMBOL vmlinux 0x399088da fs_context_for_submount -EXPORT_SYMBOL vmlinux 0x3991ca5b mipi_dsi_dcs_set_display_brightness +EXPORT_SYMBOL vmlinux 0x3977ffbd pcim_iounmap_regions +EXPORT_SYMBOL vmlinux 0x3979c560 nf_log_register +EXPORT_SYMBOL vmlinux 0x3984ae47 qdisc_watchdog_schedule_range_ns +EXPORT_SYMBOL vmlinux 0x398c4fbf tc_setup_cb_destroy +EXPORT_SYMBOL vmlinux 0x3995afd0 mmc_retune_release EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow EXPORT_SYMBOL vmlinux 0x399ad043 __kfifo_dma_out_finish_r EXPORT_SYMBOL vmlinux 0x39b52d19 __bitmap_and -EXPORT_SYMBOL vmlinux 0x39c14e96 flow_indr_dev_unregister -EXPORT_SYMBOL vmlinux 0x39c6d6cb phy_register_fixup -EXPORT_SYMBOL vmlinux 0x39ca4f12 __netif_schedule -EXPORT_SYMBOL vmlinux 0x39d608c6 watchdog_unregister_governor -EXPORT_SYMBOL vmlinux 0x39de1d1c tcp_enter_quickack_mode -EXPORT_SYMBOL vmlinux 0x39de9e51 tcp_req_err -EXPORT_SYMBOL vmlinux 0x39e39bca sb_min_blocksize -EXPORT_SYMBOL vmlinux 0x39e76731 fb_class +EXPORT_SYMBOL vmlinux 0x39c3cf87 scsi_scan_target +EXPORT_SYMBOL vmlinux 0x39e4e16e zpool_register_driver +EXPORT_SYMBOL vmlinux 0x39f66c2a pcie_bandwidth_available EXPORT_SYMBOL vmlinux 0x39f9e18c dma_fence_wait_any_timeout -EXPORT_SYMBOL vmlinux 0x3a03f9ab follow_down -EXPORT_SYMBOL vmlinux 0x3a09d35f generic_ro_fops +EXPORT_SYMBOL vmlinux 0x39fef051 inet_dgram_ops EXPORT_SYMBOL vmlinux 0x3a13f54a sgl_alloc +EXPORT_SYMBOL vmlinux 0x3a205f60 iov_iter_alignment EXPORT_SYMBOL vmlinux 0x3a2f6702 sg_alloc_table -EXPORT_SYMBOL vmlinux 0x3a481369 md_bitmap_free -EXPORT_SYMBOL vmlinux 0x3a49a160 phy_ethtool_set_eee EXPORT_SYMBOL vmlinux 0x3a4f9d28 rng_is_initialized -EXPORT_SYMBOL vmlinux 0x3a514d88 iget5_locked -EXPORT_SYMBOL vmlinux 0x3a57942c touchscreen_parse_properties +EXPORT_SYMBOL vmlinux 0x3a552697 generic_set_encrypted_ci_d_ops +EXPORT_SYMBOL vmlinux 0x3a667556 dm_get_device +EXPORT_SYMBOL vmlinux 0x3a6b33c3 cfb_fillrect +EXPORT_SYMBOL vmlinux 0x3a72daf5 phy_start_cable_test +EXPORT_SYMBOL vmlinux 0x3a7d7fc0 rt6_lookup EXPORT_SYMBOL vmlinux 0x3a875620 __xa_store -EXPORT_SYMBOL vmlinux 0x3a8befc4 of_get_ibm_chip_id -EXPORT_SYMBOL vmlinux 0x3a91088e config_item_put -EXPORT_SYMBOL vmlinux 0x3ab340ac nd_btt_version +EXPORT_SYMBOL vmlinux 0x3a89ba22 xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x3a9b7aab scsi_command_normalize_sense +EXPORT_SYMBOL vmlinux 0x3aa99d5f netdev_unbind_sb_channel +EXPORT_SYMBOL vmlinux 0x3aac07ad generic_fill_statx_attr EXPORT_SYMBOL vmlinux 0x3ab7b1cc scsi_set_sense_field_pointer -EXPORT_SYMBOL vmlinux 0x3afdc588 __d_lookup_done -EXPORT_SYMBOL vmlinux 0x3b19ea7c block_write_full_page -EXPORT_SYMBOL vmlinux 0x3b30e84d register_mii_tstamp_controller +EXPORT_SYMBOL vmlinux 0x3ac1cecb vfs_unlink +EXPORT_SYMBOL vmlinux 0x3ae77587 __skb_vlan_pop +EXPORT_SYMBOL vmlinux 0x3ae912b0 kernel_param_lock +EXPORT_SYMBOL vmlinux 0x3af7f1ad wait_on_page_bit_killable +EXPORT_SYMBOL vmlinux 0x3b053a35 set_blocksize +EXPORT_SYMBOL vmlinux 0x3b0cb888 param_ops_ushort +EXPORT_SYMBOL vmlinux 0x3b29a86f get_tz_trend +EXPORT_SYMBOL vmlinux 0x3b2a1a70 tcf_exts_dump_stats EXPORT_SYMBOL vmlinux 0x3b321462 LZ4_setStreamDecode -EXPORT_SYMBOL vmlinux 0x3b5e69db mmc_gpio_set_cd_isr +EXPORT_SYMBOL vmlinux 0x3b43b9c7 agp_backend_acquire +EXPORT_SYMBOL vmlinux 0x3b55c00b pci_remove_bus +EXPORT_SYMBOL vmlinux 0x3b5e5ae1 rproc_remove_subdev EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left EXPORT_SYMBOL vmlinux 0x3b6c41ea kstrtouint -EXPORT_SYMBOL vmlinux 0x3b9bf45d qe_pin_request -EXPORT_SYMBOL vmlinux 0x3b9ca061 genphy_soft_reset -EXPORT_SYMBOL vmlinux 0x3bb36751 jbd2_journal_check_used_features -EXPORT_SYMBOL vmlinux 0x3bbdeb52 __traceiter_mmap_lock_acquire_returned +EXPORT_SYMBOL vmlinux 0x3b995f70 kern_unmount_array +EXPORT_SYMBOL vmlinux 0x3bbba1c9 bio_put +EXPORT_SYMBOL vmlinux 0x3bbe566c __register_chrdev EXPORT_SYMBOL vmlinux 0x3bbed9a5 register_sysctl_paths -EXPORT_SYMBOL vmlinux 0x3bc08961 __napi_schedule -EXPORT_SYMBOL vmlinux 0x3bc770df ip_cmsg_recv_offset -EXPORT_SYMBOL vmlinux 0x3bdee50a pci_disable_msix +EXPORT_SYMBOL vmlinux 0x3bc41ea5 simple_lookup +EXPORT_SYMBOL vmlinux 0x3bd97786 clk_get +EXPORT_SYMBOL vmlinux 0x3bde975d __set_page_dirty_buffers +EXPORT_SYMBOL vmlinux 0x3be18f94 invalidate_bdev EXPORT_SYMBOL vmlinux 0x3be7643e security_xfrm_policy_free +EXPORT_SYMBOL vmlinux 0x3bf2e567 dev_uc_add_excl EXPORT_SYMBOL vmlinux 0x3bfb09fa gen_pool_has_addr -EXPORT_SYMBOL vmlinux 0x3c06a14e napi_complete_done +EXPORT_SYMBOL vmlinux 0x3c043f02 blk_mq_start_hw_queues +EXPORT_SYMBOL vmlinux 0x3c0a6269 __netlink_kernel_create EXPORT_SYMBOL vmlinux 0x3c185c61 page_put_link -EXPORT_SYMBOL vmlinux 0x3c1ffef7 poll_initwait +EXPORT_SYMBOL vmlinux 0x3c1a577a fscrypt_ioctl_get_policy +EXPORT_SYMBOL vmlinux 0x3c205791 inet6_getname +EXPORT_SYMBOL vmlinux 0x3c286872 __ip_select_ident EXPORT_SYMBOL vmlinux 0x3c3215c4 qe_immr -EXPORT_SYMBOL vmlinux 0x3c37f5e1 pci_domain_nr EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip EXPORT_SYMBOL vmlinux 0x3c3ff9fd sprintf -EXPORT_SYMBOL vmlinux 0x3c9186b3 vme_master_mmap -EXPORT_SYMBOL vmlinux 0x3c962f00 is_subdir -EXPORT_SYMBOL vmlinux 0x3c96a831 __seq_open_private -EXPORT_SYMBOL vmlinux 0x3cc9f067 agp_generic_alloc_user -EXPORT_SYMBOL vmlinux 0x3cd32779 remap_vmalloc_range -EXPORT_SYMBOL vmlinux 0x3cd72c09 dma_free_attrs -EXPORT_SYMBOL vmlinux 0x3cd92d7f release_sock +EXPORT_SYMBOL vmlinux 0x3c5382bd jbd2_journal_forget +EXPORT_SYMBOL vmlinux 0x3c964079 dma_free_attrs +EXPORT_SYMBOL vmlinux 0x3cc4a8eb in_dev_finish_destroy EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq -EXPORT_SYMBOL vmlinux 0x3cec1029 nvdimm_check_and_set_ro -EXPORT_SYMBOL vmlinux 0x3cf6bdf9 component_match_add_typed -EXPORT_SYMBOL vmlinux 0x3d3a1b31 noop_fsync -EXPORT_SYMBOL vmlinux 0x3d3c28cc __generic_file_write_iter -EXPORT_SYMBOL vmlinux 0x3d514484 eeh_dev_release -EXPORT_SYMBOL vmlinux 0x3d547159 __xfrm_decode_session +EXPORT_SYMBOL vmlinux 0x3ce57d96 __ip_mc_dec_group +EXPORT_SYMBOL vmlinux 0x3cfcb9be __vfs_setxattr +EXPORT_SYMBOL vmlinux 0x3d128043 device_add_disk +EXPORT_SYMBOL vmlinux 0x3d132e90 fwnode_mdiobus_register_phy +EXPORT_SYMBOL vmlinux 0x3d3ea2e3 xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0x3d450b0f pci_request_selected_regions_exclusive +EXPORT_SYMBOL vmlinux 0x3d4c7c47 file_modified +EXPORT_SYMBOL vmlinux 0x3d4e07b4 rtnl_notify EXPORT_SYMBOL vmlinux 0x3d56e7b3 utf8_unload -EXPORT_SYMBOL vmlinux 0x3d8a1623 ip_getsockopt -EXPORT_SYMBOL vmlinux 0x3dabe003 fb_validate_mode +EXPORT_SYMBOL vmlinux 0x3d649c28 qdisc_reset +EXPORT_SYMBOL vmlinux 0x3d8a724a register_qdisc +EXPORT_SYMBOL vmlinux 0x3da3a1ba xfrm_stateonly_find 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 0x3dae823e proto_register -EXPORT_SYMBOL vmlinux 0x3dc2edb5 param_ops_bint +EXPORT_SYMBOL vmlinux 0x3dbd47c4 posix_acl_chmod +EXPORT_SYMBOL vmlinux 0x3dcb1c30 phy_driver_register EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data -EXPORT_SYMBOL vmlinux 0x3ddafbcf __devm_release_region -EXPORT_SYMBOL vmlinux 0x3ddbadf0 mmc_cqe_post_req -EXPORT_SYMBOL vmlinux 0x3ddfff44 drop_nlink -EXPORT_SYMBOL vmlinux 0x3df62282 netif_stacked_transfer_operstate +EXPORT_SYMBOL vmlinux 0x3dd2eedd __traceiter_module_get EXPORT_SYMBOL vmlinux 0x3dfb86b9 resource_list_create_entry EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head -EXPORT_SYMBOL vmlinux 0x3e0b96c1 __cleancache_invalidate_fs +EXPORT_SYMBOL vmlinux 0x3e0b6ace prepare_to_swait_event +EXPORT_SYMBOL vmlinux 0x3e317673 param_ops_string EXPORT_SYMBOL vmlinux 0x3e3bad0a __tasklet_hi_schedule -EXPORT_SYMBOL vmlinux 0x3e413f6b backlight_device_get_by_name -EXPORT_SYMBOL vmlinux 0x3e442af7 sock_alloc_file -EXPORT_SYMBOL vmlinux 0x3e4d402a of_graph_get_remote_port -EXPORT_SYMBOL vmlinux 0x3e57b250 security_sctp_assoc_request -EXPORT_SYMBOL vmlinux 0x3e5a17a4 key_task_permission -EXPORT_SYMBOL vmlinux 0x3e6cc4b3 seq_write -EXPORT_SYMBOL vmlinux 0x3e73844d mmc_can_trim -EXPORT_SYMBOL vmlinux 0x3e819753 phy_detach +EXPORT_SYMBOL vmlinux 0x3e576e78 scsi_report_opcode +EXPORT_SYMBOL vmlinux 0x3e6e0f11 lock_page_memcg +EXPORT_SYMBOL vmlinux 0x3e7b0fda seq_put_decimal_ll +EXPORT_SYMBOL vmlinux 0x3e8130e0 phy_get_c45_ids +EXPORT_SYMBOL vmlinux 0x3e95616a tcp_init_sock EXPORT_SYMBOL vmlinux 0x3ea1b6e4 __stack_chk_fail -EXPORT_SYMBOL vmlinux 0x3eb0d319 sg_alloc_append_table_from_pages -EXPORT_SYMBOL vmlinux 0x3ed54365 phy_start_cable_test -EXPORT_SYMBOL vmlinux 0x3edd9b16 jbd2_journal_flush +EXPORT_SYMBOL vmlinux 0x3ea1d14d blk_queue_dma_alignment +EXPORT_SYMBOL vmlinux 0x3ea9a594 input_unregister_handle +EXPORT_SYMBOL vmlinux 0x3eae2664 inet_sk_rebuild_header +EXPORT_SYMBOL vmlinux 0x3ec98cd5 kmem_cache_free +EXPORT_SYMBOL vmlinux 0x3ecc2295 netdev_pick_tx +EXPORT_SYMBOL vmlinux 0x3ed64205 dcb_ieee_getapp_prio_dscp_mask_map +EXPORT_SYMBOL vmlinux 0x3ee224e1 skb_vlan_pop +EXPORT_SYMBOL vmlinux 0x3ee29faf blk_mq_run_hw_queue +EXPORT_SYMBOL vmlinux 0x3efa73ff bio_init EXPORT_SYMBOL vmlinux 0x3efe1703 phy_unregister_fixup_for_id EXPORT_SYMBOL vmlinux 0x3f0eabd2 xxh64_update -EXPORT_SYMBOL vmlinux 0x3f105d0e pci_ep_cfs_remove_epf_group -EXPORT_SYMBOL vmlinux 0x3f2de39e tty_unregister_device -EXPORT_SYMBOL vmlinux 0x3f38515c block_invalidatepage +EXPORT_SYMBOL vmlinux 0x3f3b78df agp_generic_type_to_mask_type EXPORT_SYMBOL vmlinux 0x3f406a3b enable_kernel_altivec EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd -EXPORT_SYMBOL vmlinux 0x3f4f361c max8998_bulk_read -EXPORT_SYMBOL vmlinux 0x3f621c3d napi_build_skb -EXPORT_SYMBOL vmlinux 0x3f63f054 pci_enable_msi -EXPORT_SYMBOL vmlinux 0x3f69b7b6 fbcon_update_vcs -EXPORT_SYMBOL vmlinux 0x3f6cc566 md_cluster_ops -EXPORT_SYMBOL vmlinux 0x3f776de9 mmc_retune_timer_stop -EXPORT_SYMBOL vmlinux 0x3f82b07a request_key_rcu +EXPORT_SYMBOL vmlinux 0x3f48b73d jbd2_journal_grab_journal_head +EXPORT_SYMBOL vmlinux 0x3f5709be dev_get_by_index_rcu +EXPORT_SYMBOL vmlinux 0x3f62e073 of_match_device +EXPORT_SYMBOL vmlinux 0x3f832159 agp_alloc_bridge EXPORT_SYMBOL vmlinux 0x3f89071b security_ib_pkey_access -EXPORT_SYMBOL vmlinux 0x3f90ff4f par_io_of_config -EXPORT_SYMBOL vmlinux 0x3f9727e5 agp_find_bridge -EXPORT_SYMBOL vmlinux 0x3fbe9f01 copy_page_to_iter +EXPORT_SYMBOL vmlinux 0x3f98c992 jbd2_transaction_committed +EXPORT_SYMBOL vmlinux 0x3f9f02e6 vme_dma_list_free +EXPORT_SYMBOL vmlinux 0x3fb039e0 tty_chars_in_buffer +EXPORT_SYMBOL vmlinux 0x3fbe936b pci_assign_resource EXPORT_SYMBOL vmlinux 0x3fbf3c89 vme_slave_set -EXPORT_SYMBOL vmlinux 0x3fc0f25f param_array_ops -EXPORT_SYMBOL vmlinux 0x3fd6c5ae xsk_clear_rx_need_wakeup +EXPORT_SYMBOL vmlinux 0x3fcf4401 security_old_inode_init_security +EXPORT_SYMBOL vmlinux 0x3fd2c4ed sg_miter_stop EXPORT_SYMBOL vmlinux 0x3fd78f3b register_chrdev_region EXPORT_SYMBOL vmlinux 0x3fe2ccbe memweight -EXPORT_SYMBOL vmlinux 0x3fff048c pm860x_bulk_read -EXPORT_SYMBOL vmlinux 0x40076cd2 dev_add_offload -EXPORT_SYMBOL vmlinux 0x401706d9 security_sock_rcv_skb -EXPORT_SYMBOL vmlinux 0x401bf9b3 agp_generic_type_to_mask_type -EXPORT_SYMBOL vmlinux 0x402b8270 secpath_set +EXPORT_SYMBOL vmlinux 0x3fee6191 security_path_unlink +EXPORT_SYMBOL vmlinux 0x4015462d xfrm_find_acq +EXPORT_SYMBOL vmlinux 0x402e0abf fscrypt_put_encryption_info +EXPORT_SYMBOL vmlinux 0x4057c5cc padata_alloc_shell EXPORT_SYMBOL vmlinux 0x405b6e05 srp_parse_tmo -EXPORT_SYMBOL vmlinux 0x405ef33a serio_unregister_port -EXPORT_SYMBOL vmlinux 0x40612815 filemap_invalidate_unlock_two -EXPORT_SYMBOL vmlinux 0x407b0aae dma_unmap_page_attrs -EXPORT_SYMBOL vmlinux 0x40938b54 eth_prepare_mac_addr_change +EXPORT_SYMBOL vmlinux 0x406dd6ac generic_pipe_buf_get +EXPORT_SYMBOL vmlinux 0x40721936 bio_clone_fast +EXPORT_SYMBOL vmlinux 0x407dbf97 of_get_next_child +EXPORT_SYMBOL vmlinux 0x40822d75 kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x40963cfa netif_rx_any_context EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem -EXPORT_SYMBOL vmlinux 0x40a0df57 mmc_card_is_blockaddr +EXPORT_SYMBOL vmlinux 0x409f721e ipv6_sock_mc_drop +EXPORT_SYMBOL vmlinux 0x40a1e50f pcim_pin_device +EXPORT_SYMBOL vmlinux 0x40a99a98 flow_rule_match_ipv4_addrs EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc -EXPORT_SYMBOL vmlinux 0x40b18440 tc_setup_cb_reoffload -EXPORT_SYMBOL vmlinux 0x40c660bd notify_change +EXPORT_SYMBOL vmlinux 0x40c2626e iget5_locked +EXPORT_SYMBOL vmlinux 0x40c2828f phy_ethtool_ksettings_set EXPORT_SYMBOL vmlinux 0x40c7247c si_meminfo +EXPORT_SYMBOL vmlinux 0x40ca482f bdevname EXPORT_SYMBOL vmlinux 0x40cb3d84 cpumask_any_distribute EXPORT_SYMBOL vmlinux 0x40d04664 console_trylock EXPORT_SYMBOL vmlinux 0x40d59096 unregister_restart_handler EXPORT_SYMBOL vmlinux 0x40d84a37 ZSTD_getFrameParams -EXPORT_SYMBOL vmlinux 0x40e87b8f __filemap_set_wb_err -EXPORT_SYMBOL vmlinux 0x40ea1847 pci_choose_state -EXPORT_SYMBOL vmlinux 0x41172d24 flow_rule_match_enc_ip -EXPORT_SYMBOL vmlinux 0x41232067 scsi_device_set_state -EXPORT_SYMBOL vmlinux 0x412c9487 tcp_mmap +EXPORT_SYMBOL vmlinux 0x411390df pci_enable_device +EXPORT_SYMBOL vmlinux 0x4118632e __alloc_disk_node EXPORT_SYMBOL vmlinux 0x412f893c page_offline_begin -EXPORT_SYMBOL vmlinux 0x41405eeb __skb_gso_segment -EXPORT_SYMBOL vmlinux 0x41467398 __dquot_free_space +EXPORT_SYMBOL vmlinux 0x414519d5 proc_create EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user -EXPORT_SYMBOL vmlinux 0x4158462f clk_get -EXPORT_SYMBOL vmlinux 0x4158bffa dquot_free_inode -EXPORT_SYMBOL vmlinux 0x415f7cdd udp6_set_csum -EXPORT_SYMBOL vmlinux 0x417f8a4f mnt_drop_write_file -EXPORT_SYMBOL vmlinux 0x417fa617 tty_insert_flip_string_fixed_flag -EXPORT_SYMBOL vmlinux 0x4183d289 rproc_del +EXPORT_SYMBOL vmlinux 0x4153136d iput +EXPORT_SYMBOL vmlinux 0x417d7c23 flow_rule_match_ports +EXPORT_SYMBOL vmlinux 0x41816de2 inet_sendmsg EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time -EXPORT_SYMBOL vmlinux 0x41a7a25c console_start +EXPORT_SYMBOL vmlinux 0x418bdf1e pps_register_source +EXPORT_SYMBOL vmlinux 0x419180b1 __bread_gfp +EXPORT_SYMBOL vmlinux 0x4198e08e netdev_get_xmit_slave EXPORT_SYMBOL vmlinux 0x41abd4db _raw_write_trylock EXPORT_SYMBOL vmlinux 0x41ae718a __percpu_counter_init -EXPORT_SYMBOL vmlinux 0x41d2eb43 may_setattr -EXPORT_SYMBOL vmlinux 0x41d605d7 __neigh_for_each_release -EXPORT_SYMBOL vmlinux 0x41e391b2 mdio_device_free -EXPORT_SYMBOL vmlinux 0x41e53aa9 dump_emit +EXPORT_SYMBOL vmlinux 0x41b48beb rproc_add_subdev +EXPORT_SYMBOL vmlinux 0x41ce6405 tty_schedule_flip +EXPORT_SYMBOL vmlinux 0x41f20e87 ptp_clock_event EXPORT_SYMBOL vmlinux 0x420964e3 __nla_parse +EXPORT_SYMBOL vmlinux 0x42120604 vmf_insert_pfn_prot EXPORT_SYMBOL vmlinux 0x42160169 flush_workqueue +EXPORT_SYMBOL vmlinux 0x4222e60f dev_mc_del_global +EXPORT_SYMBOL vmlinux 0x422d3a90 param_get_charp EXPORT_SYMBOL vmlinux 0x4230a8d7 sg_nents_for_len -EXPORT_SYMBOL vmlinux 0x4233810e param_ops_charp -EXPORT_SYMBOL vmlinux 0x423ba94f rproc_detach +EXPORT_SYMBOL vmlinux 0x4239e31e eeh_dev_release EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp -EXPORT_SYMBOL vmlinux 0x4250a1c6 disk_start_io_acct -EXPORT_SYMBOL vmlinux 0x4250f1d6 vga_get -EXPORT_SYMBOL vmlinux 0x42541688 netif_device_attach EXPORT_SYMBOL vmlinux 0x42595e58 vgacon_text_force -EXPORT_SYMBOL vmlinux 0x425ed91d ip6_frag_init -EXPORT_SYMBOL vmlinux 0x42652501 fwnode_get_phy_id -EXPORT_SYMBOL vmlinux 0x426cfba0 tcf_qevent_handle -EXPORT_SYMBOL vmlinux 0x426fb946 address_space_init_once -EXPORT_SYMBOL vmlinux 0x427352d8 d_move +EXPORT_SYMBOL vmlinux 0x4270e430 vma_set_file EXPORT_SYMBOL vmlinux 0x42736793 _raw_spin_trylock_bh -EXPORT_SYMBOL vmlinux 0x42746699 udp_seq_stop -EXPORT_SYMBOL vmlinux 0x4274e22c simple_pin_fs -EXPORT_SYMBOL vmlinux 0x4291d27f phy_ethtool_set_link_ksettings -EXPORT_SYMBOL vmlinux 0x42968b21 irq_domain_set_info -EXPORT_SYMBOL vmlinux 0x42a1f238 km_policy_expired -EXPORT_SYMBOL vmlinux 0x42b03d6a iw_handler_set_spy -EXPORT_SYMBOL vmlinux 0x42b63455 fb_set_cmap -EXPORT_SYMBOL vmlinux 0x42da7505 xp_dma_sync_for_cpu_slow +EXPORT_SYMBOL vmlinux 0x427b4e26 skb_copy_and_csum_dev +EXPORT_SYMBOL vmlinux 0x42821867 dump_skip +EXPORT_SYMBOL vmlinux 0x42a27edc tcp_sock_set_keepcnt +EXPORT_SYMBOL vmlinux 0x42c327e6 agp_generic_remove_memory +EXPORT_SYMBOL vmlinux 0x42d83456 mmc_cqe_request_done EXPORT_SYMBOL vmlinux 0x42f030bd dma_fence_chain_find_seqno EXPORT_SYMBOL vmlinux 0x42f1b900 fb_pad_unaligned_buffer EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages -EXPORT_SYMBOL vmlinux 0x4307ed49 __lock_sock_fast EXPORT_SYMBOL vmlinux 0x431ec3a9 __nla_validate -EXPORT_SYMBOL vmlinux 0x431f0c61 vga_put -EXPORT_SYMBOL vmlinux 0x43246eb2 agp_generic_destroy_page -EXPORT_SYMBOL vmlinux 0x43437100 blk_mq_init_queue +EXPORT_SYMBOL vmlinux 0x4323f5c2 blk_mq_delay_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x43350918 agp_put_bridge +EXPORT_SYMBOL vmlinux 0x4336dd74 xfrm_if_register_cb +EXPORT_SYMBOL vmlinux 0x434491f5 to_ndd +EXPORT_SYMBOL vmlinux 0x434684ff fixed_size_llseek +EXPORT_SYMBOL vmlinux 0x434d16d4 migrate_page_move_mapping EXPORT_SYMBOL vmlinux 0x4351577a fb_parse_edid -EXPORT_SYMBOL vmlinux 0x4351ad6f param_get_short -EXPORT_SYMBOL vmlinux 0x4354d691 udp_lib_unhash +EXPORT_SYMBOL vmlinux 0x4354af69 simple_transaction_release +EXPORT_SYMBOL vmlinux 0x436a8f65 __i2c_smbus_xfer EXPORT_SYMBOL vmlinux 0x437a0d6d __sock_tx_timestamp +EXPORT_SYMBOL vmlinux 0x437b928b md_bitmap_cond_end_sync EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security -EXPORT_SYMBOL vmlinux 0x4391b0a9 devm_clk_release_clkdev -EXPORT_SYMBOL vmlinux 0x43a3c688 udp_disconnect EXPORT_SYMBOL vmlinux 0x43a4938f vm_get_page_prot +EXPORT_SYMBOL vmlinux 0x43b4d387 mfd_cell_enable +EXPORT_SYMBOL vmlinux 0x43b66b6c param_ops_bool +EXPORT_SYMBOL vmlinux 0x43c5544d vfs_dedupe_file_range_one EXPORT_SYMBOL vmlinux 0x43c82edf wait_for_completion_io_timeout +EXPORT_SYMBOL vmlinux 0x43ce7300 misc_register EXPORT_SYMBOL vmlinux 0x43d22fb9 groups_alloc -EXPORT_SYMBOL vmlinux 0x43f1ab95 inet_recvmsg -EXPORT_SYMBOL vmlinux 0x43fce10e pcibios_bus_to_resource -EXPORT_SYMBOL vmlinux 0x4407dd32 agp_generic_mask_memory -EXPORT_SYMBOL vmlinux 0x4407ea15 dma_sync_single_for_cpu -EXPORT_SYMBOL vmlinux 0x442a5e14 filemap_fdatawrite_range -EXPORT_SYMBOL vmlinux 0x4430ce05 xfrm_init_state +EXPORT_SYMBOL vmlinux 0x43fae9f4 pci_find_hose_for_OF_device +EXPORT_SYMBOL vmlinux 0x441cdd60 pci_enable_atomic_ops_to_root +EXPORT_SYMBOL vmlinux 0x44267ef1 scsi_unblock_requests EXPORT_SYMBOL vmlinux 0x44469a76 crc_ccitt_false_table -EXPORT_SYMBOL vmlinux 0x444af583 udp_lib_get_port -EXPORT_SYMBOL vmlinux 0x445a07b3 page_mapping +EXPORT_SYMBOL vmlinux 0x44488135 page_pool_release_page +EXPORT_SYMBOL vmlinux 0x445778f3 unregister_mii_tstamp_controller EXPORT_SYMBOL vmlinux 0x4462d35e cpufreq_get_hw_max_freq -EXPORT_SYMBOL vmlinux 0x44649daf kobject_add EXPORT_SYMBOL vmlinux 0x446dec79 inetpeer_invalidate_tree -EXPORT_SYMBOL vmlinux 0x4470b482 xsk_tx_peek_desc -EXPORT_SYMBOL vmlinux 0x4472891d mdio_driver_unregister -EXPORT_SYMBOL vmlinux 0x447e2b06 compat_ptr_ioctl EXPORT_SYMBOL vmlinux 0x4488bc8a prepare_to_wait_event -EXPORT_SYMBOL vmlinux 0x448e8029 netdev_name_node_alt_create -EXPORT_SYMBOL vmlinux 0x44a0ad07 md_bitmap_end_sync EXPORT_SYMBOL vmlinux 0x44a6e90a irq_cpu_rmap_add -EXPORT_SYMBOL vmlinux 0x44c41dc5 nf_register_net_hook -EXPORT_SYMBOL vmlinux 0x44c5fc58 would_dump -EXPORT_SYMBOL vmlinux 0x44c63a80 of_parse_phandle -EXPORT_SYMBOL vmlinux 0x44dd6ee3 mmc_cqe_recovery +EXPORT_SYMBOL vmlinux 0x44b36c5e twl6030_mmc_card_detect +EXPORT_SYMBOL vmlinux 0x44b50253 adjust_managed_page_count +EXPORT_SYMBOL vmlinux 0x44bf9360 ndo_dflt_fdb_add +EXPORT_SYMBOL vmlinux 0x44c84e25 of_scan_pci_bridge +EXPORT_SYMBOL vmlinux 0x44d90875 blk_mq_init_queue +EXPORT_SYMBOL vmlinux 0x44dbf0e8 of_root +EXPORT_SYMBOL vmlinux 0x44dc8b2a vfs_create EXPORT_SYMBOL vmlinux 0x44e03d3a gen_pool_dma_zalloc EXPORT_SYMBOL vmlinux 0x44e9a829 match_token -EXPORT_SYMBOL vmlinux 0x44ec6897 deactivate_super -EXPORT_SYMBOL vmlinux 0x44f40bd6 dec_zone_page_state EXPORT_SYMBOL vmlinux 0x45006cee default_red -EXPORT_SYMBOL vmlinux 0x4505ef95 param_set_int +EXPORT_SYMBOL vmlinux 0x4504b529 generic_file_mmap +EXPORT_SYMBOL vmlinux 0x4508e32c mipi_dsi_dcs_set_tear_off EXPORT_SYMBOL vmlinux 0x450bd37e __pmd_index_size EXPORT_SYMBOL vmlinux 0x450d640b dma_fence_enable_sw_signaling -EXPORT_SYMBOL vmlinux 0x451268a0 devm_input_allocate_device -EXPORT_SYMBOL vmlinux 0x45174d59 should_remove_suid -EXPORT_SYMBOL vmlinux 0x451e60de setup_new_exec +EXPORT_SYMBOL vmlinux 0x451b13a6 inet_add_offload +EXPORT_SYMBOL vmlinux 0x4521679d generic_file_write_iter EXPORT_SYMBOL vmlinux 0x452287df gen_pool_best_fit EXPORT_SYMBOL vmlinux 0x452ba683 ipv6_ext_hdr EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled +EXPORT_SYMBOL vmlinux 0x4543261b pci_bus_write_config_byte EXPORT_SYMBOL vmlinux 0x45535485 xxh32_update -EXPORT_SYMBOL vmlinux 0x456770b4 __destroy_inode EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user -EXPORT_SYMBOL vmlinux 0x4587e2be unix_attach_fds -EXPORT_SYMBOL vmlinux 0x459704ae devm_extcon_unregister_notifier_all -EXPORT_SYMBOL vmlinux 0x459b6585 file_remove_privs -EXPORT_SYMBOL vmlinux 0x45a3ec41 writeback_inodes_sb_nr -EXPORT_SYMBOL vmlinux 0x45af8b8a tcf_exts_terse_dump -EXPORT_SYMBOL vmlinux 0x45c2b5eb sock_i_ino -EXPORT_SYMBOL vmlinux 0x45cf44ba fscrypt_fname_disk_to_usr -EXPORT_SYMBOL vmlinux 0x45e8155d truncate_pagecache_range +EXPORT_SYMBOL vmlinux 0x45807dd9 d_add +EXPORT_SYMBOL vmlinux 0x459d585a to_nd_dax +EXPORT_SYMBOL vmlinux 0x45a042d8 reuseport_stop_listen_sock +EXPORT_SYMBOL vmlinux 0x45ab91f1 console_start +EXPORT_SYMBOL vmlinux 0x45bb792e tso_start +EXPORT_SYMBOL vmlinux 0x45be41f3 generic_permission +EXPORT_SYMBOL vmlinux 0x45c57198 filemap_map_pages +EXPORT_SYMBOL vmlinux 0x45d28121 delete_from_page_cache +EXPORT_SYMBOL vmlinux 0x45f757d3 napi_consume_skb +EXPORT_SYMBOL vmlinux 0x45fc8d63 ip_frag_next +EXPORT_SYMBOL vmlinux 0x45fee9f6 fb_prepare_logo EXPORT_SYMBOL vmlinux 0x46001d34 percpu_counter_add_batch -EXPORT_SYMBOL vmlinux 0x46177462 km_new_mapping +EXPORT_SYMBOL vmlinux 0x460f4a34 flow_hash_from_keys EXPORT_SYMBOL vmlinux 0x461d16ca sg_nents EXPORT_SYMBOL vmlinux 0x461ebfa0 __copy_tofrom_user -EXPORT_SYMBOL vmlinux 0x4634495d dev_pm_opp_unregister_notifier +EXPORT_SYMBOL vmlinux 0x4638872d __cleancache_get_page +EXPORT_SYMBOL vmlinux 0x4650e9ea simple_transaction_set EXPORT_SYMBOL vmlinux 0x46632bbe dma_fence_allocate_private_stub -EXPORT_SYMBOL vmlinux 0x46684695 kobject_del EXPORT_SYMBOL vmlinux 0x466c14a7 __delay +EXPORT_SYMBOL vmlinux 0x466dff0e ilookup EXPORT_SYMBOL vmlinux 0x4674ec42 __pgd_val_bits +EXPORT_SYMBOL vmlinux 0x467cf181 md_done_sync EXPORT_SYMBOL vmlinux 0x467df16d netdev_rss_key_fill +EXPORT_SYMBOL vmlinux 0x467f998f inet6_bind +EXPORT_SYMBOL vmlinux 0x4682d8bf pagevec_lookup_range_tag EXPORT_SYMBOL vmlinux 0x469a6ec7 tcp_parse_md5sig_option -EXPORT_SYMBOL vmlinux 0x469e2129 iov_iter_zero -EXPORT_SYMBOL vmlinux 0x46c14739 mark_buffer_async_write +EXPORT_SYMBOL vmlinux 0x46bf9ab2 skb_push EXPORT_SYMBOL vmlinux 0x46c47fb6 __node_distance -EXPORT_SYMBOL vmlinux 0x46e14454 netif_receive_skb_core +EXPORT_SYMBOL vmlinux 0x46edbc9a jbd2_journal_start_reserved EXPORT_SYMBOL vmlinux 0x46f9f2b5 xa_find_after EXPORT_SYMBOL vmlinux 0x47065c73 cpm_muram_offset -EXPORT_SYMBOL vmlinux 0x470764d5 iov_iter_xarray -EXPORT_SYMBOL vmlinux 0x470af6d1 mipi_dsi_dcs_soft_reset -EXPORT_SYMBOL vmlinux 0x4710fdb1 dm_table_event -EXPORT_SYMBOL vmlinux 0x47230978 qdisc_hash_add -EXPORT_SYMBOL vmlinux 0x47697b9d vmf_insert_mixed_prot +EXPORT_SYMBOL vmlinux 0x4733d8d5 param_set_copystring +EXPORT_SYMBOL vmlinux 0x473da91a napi_enable +EXPORT_SYMBOL vmlinux 0x474d609c tcf_block_put_ext +EXPORT_SYMBOL vmlinux 0x475e5693 unpin_user_pages +EXPORT_SYMBOL vmlinux 0x475faf52 flow_indr_block_cb_alloc EXPORT_SYMBOL vmlinux 0x47709e42 free_anon_bdev -EXPORT_SYMBOL vmlinux 0x4776b112 netdev_change_features -EXPORT_SYMBOL vmlinux 0x4781df8e configfs_register_group +EXPORT_SYMBOL vmlinux 0x47810e99 arch_free_page +EXPORT_SYMBOL vmlinux 0x478190b8 xfrm_register_type_offload +EXPORT_SYMBOL vmlinux 0x47859dd1 elv_rb_find EXPORT_SYMBOL vmlinux 0x47a0cdcb mb_cache_entry_find_next -EXPORT_SYMBOL vmlinux 0x47a26283 phy_get_eee_err -EXPORT_SYMBOL vmlinux 0x47aa5b6e nvmem_get_mac_address +EXPORT_SYMBOL vmlinux 0x47a3de20 mmput_async +EXPORT_SYMBOL vmlinux 0x47ac714a inode_owner_or_capable +EXPORT_SYMBOL vmlinux 0x47bc24b4 get_acl 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 0x47ce89ce napi_get_frags EXPORT_SYMBOL vmlinux 0x47cfd825 kstrtouint_from_user -EXPORT_SYMBOL vmlinux 0x47f7e9e1 flow_indr_dev_register -EXPORT_SYMBOL vmlinux 0x4800c9a5 phy_free_interrupt -EXPORT_SYMBOL vmlinux 0x4805016d skb_tunnel_check_pmtu -EXPORT_SYMBOL vmlinux 0x4808b813 flow_block_cb_incref +EXPORT_SYMBOL vmlinux 0x47deda95 kernel_bind +EXPORT_SYMBOL vmlinux 0x47f5294a vfs_path_lookup +EXPORT_SYMBOL vmlinux 0x47f8d635 __get_hash_from_flowi6 +EXPORT_SYMBOL vmlinux 0x47f8f6c1 __traceiter_mmap_lock_start_locking +EXPORT_SYMBOL vmlinux 0x4802efa2 devm_ioremap_wc +EXPORT_SYMBOL vmlinux 0x4814a037 netpoll_cleanup +EXPORT_SYMBOL vmlinux 0x481e8d23 generic_file_splice_read +EXPORT_SYMBOL vmlinux 0x4828af16 tty_unthrottle EXPORT_SYMBOL vmlinux 0x4829a47e memcpy EXPORT_SYMBOL vmlinux 0x4829cf6b fscrypt_enqueue_decrypt_work -EXPORT_SYMBOL vmlinux 0x483ba78a input_allocate_device -EXPORT_SYMBOL vmlinux 0x483ff88c jbd2_fc_end_commit -EXPORT_SYMBOL vmlinux 0x48404434 tcf_em_tree_destroy +EXPORT_SYMBOL vmlinux 0x482fbd0e freezing_slow_path EXPORT_SYMBOL vmlinux 0x4841bdee strnchr EXPORT_SYMBOL vmlinux 0x4848cfb1 phy_mipi_dphy_get_default_config -EXPORT_SYMBOL vmlinux 0x484f3fba inet6_register_protosw EXPORT_SYMBOL vmlinux 0x484f6edf ktime_get_coarse_real_ts64 -EXPORT_SYMBOL vmlinux 0x48532048 generic_file_read_iter EXPORT_SYMBOL vmlinux 0x4859b8bb rtc_year_days -EXPORT_SYMBOL vmlinux 0x485ccbf0 param_ops_invbool -EXPORT_SYMBOL vmlinux 0x485ed289 gro_cells_receive -EXPORT_SYMBOL vmlinux 0x48679551 padata_free_shell -EXPORT_SYMBOL vmlinux 0x4869ddd7 fwnode_get_mac_address +EXPORT_SYMBOL vmlinux 0x485d5223 start_tty +EXPORT_SYMBOL vmlinux 0x485f8b1a eth_prepare_mac_addr_change EXPORT_SYMBOL vmlinux 0x486c17db __xa_erase EXPORT_SYMBOL vmlinux 0x4871d75d clk_hw_register_clkdev +EXPORT_SYMBOL vmlinux 0x48814235 udp_lib_get_port +EXPORT_SYMBOL vmlinux 0x488866e3 tcp_parse_options EXPORT_SYMBOL vmlinux 0x489f6e0b rdma_dim -EXPORT_SYMBOL vmlinux 0x48a4955e d_make_root EXPORT_SYMBOL vmlinux 0x48a81d7e vfio_group_pin_pages EXPORT_SYMBOL vmlinux 0x48a91171 string_get_size -EXPORT_SYMBOL vmlinux 0x48a95e43 security_dentry_create_files_as -EXPORT_SYMBOL vmlinux 0x48abe710 twl6040_get_vibralr_status -EXPORT_SYMBOL vmlinux 0x48b6b5d0 inet_sock_destruct +EXPORT_SYMBOL vmlinux 0x48aa78ac xfrm_state_lookup_byspi EXPORT_SYMBOL vmlinux 0x48b99a13 vme_lm_free -EXPORT_SYMBOL vmlinux 0x48d31580 flow_rule_match_ipv4_addrs -EXPORT_SYMBOL vmlinux 0x48d6d626 phy_set_sym_pause -EXPORT_SYMBOL vmlinux 0x48d98e82 mpage_readahead -EXPORT_SYMBOL vmlinux 0x48dd33e7 netdev_upper_dev_link -EXPORT_SYMBOL vmlinux 0x48dde7a2 remove_conflicting_pci_framebuffers -EXPORT_SYMBOL vmlinux 0x48e6d7bf vmalloc_to_page +EXPORT_SYMBOL vmlinux 0x48dfb580 param_ops_ullong +EXPORT_SYMBOL vmlinux 0x48e41102 param_ops_ulong +EXPORT_SYMBOL vmlinux 0x48e55c80 __frontswap_test EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert -EXPORT_SYMBOL vmlinux 0x49180a3e lookup_one -EXPORT_SYMBOL vmlinux 0x4928338b pcim_set_mwi -EXPORT_SYMBOL vmlinux 0x4936d60d dcb_getapp -EXPORT_SYMBOL vmlinux 0x4940aac3 input_set_min_poll_interval -EXPORT_SYMBOL vmlinux 0x494fa709 mount_nodev -EXPORT_SYMBOL vmlinux 0x4951891f locks_copy_conflock +EXPORT_SYMBOL vmlinux 0x49048a38 ata_std_end_eh +EXPORT_SYMBOL vmlinux 0x4914c17a inet_register_protosw +EXPORT_SYMBOL vmlinux 0x494033ea kernel_sendpage EXPORT_SYMBOL vmlinux 0x495231ea mul_u64_u64_div_u64 -EXPORT_SYMBOL vmlinux 0x4967eadc radix__local_flush_tlb_page -EXPORT_SYMBOL vmlinux 0x4969e997 devm_extcon_unregister_notifier -EXPORT_SYMBOL vmlinux 0x496dcd91 inet_protos -EXPORT_SYMBOL vmlinux 0x497bede6 end_page_writeback -EXPORT_SYMBOL vmlinux 0x4986007d mount_bdev +EXPORT_SYMBOL vmlinux 0x4985892b dquot_quota_on_mount EXPORT_SYMBOL vmlinux 0x498e9128 ZSTD_findDecompressedSize -EXPORT_SYMBOL vmlinux 0x4991caba simple_dir_inode_operations -EXPORT_SYMBOL vmlinux 0x4993b846 alloc_etherdev_mqs EXPORT_SYMBOL vmlinux 0x499bfc6d __per_cpu_offset EXPORT_SYMBOL vmlinux 0x499f0ecf nd_sb_checksum -EXPORT_SYMBOL vmlinux 0x49b6b408 mmc_request_done -EXPORT_SYMBOL vmlinux 0x49c2bcbb inet_sk_rebuild_header -EXPORT_SYMBOL vmlinux 0x4a034e46 writeback_inodes_sb -EXPORT_SYMBOL vmlinux 0x4a0c4627 blk_queue_flag_clear -EXPORT_SYMBOL vmlinux 0x4a17be19 input_inject_event -EXPORT_SYMBOL vmlinux 0x4a26850a to_ndd -EXPORT_SYMBOL vmlinux 0x4a327da5 unpin_user_page -EXPORT_SYMBOL vmlinux 0x4a3392c8 xfrm_find_acq -EXPORT_SYMBOL vmlinux 0x4a37d26a netif_rx -EXPORT_SYMBOL vmlinux 0x4a3c59f2 ll_rw_block +EXPORT_SYMBOL vmlinux 0x49a99ee1 __bio_clone_fast +EXPORT_SYMBOL vmlinux 0x49ac6cce mipi_dsi_dcs_set_display_off +EXPORT_SYMBOL vmlinux 0x49bc158a dev_get_iflink +EXPORT_SYMBOL vmlinux 0x49c3500a security_path_mknod +EXPORT_SYMBOL vmlinux 0x49d51ac2 __break_lease +EXPORT_SYMBOL vmlinux 0x49dfbe6d crypto_sha256_finup +EXPORT_SYMBOL vmlinux 0x49e8d64b __neigh_create +EXPORT_SYMBOL vmlinux 0x49f241df page_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0x4a094482 filemap_page_mkwrite EXPORT_SYMBOL vmlinux 0x4a453f53 iowrite32 EXPORT_SYMBOL vmlinux 0x4a55c8ea ioremap_wc -EXPORT_SYMBOL vmlinux 0x4a78c5ca vfs_copy_file_range -EXPORT_SYMBOL vmlinux 0x4a7d0a73 fib_default_rule_add -EXPORT_SYMBOL vmlinux 0x4a8617d5 generic_fillattr +EXPORT_SYMBOL vmlinux 0x4a59bca9 sock_kzfree_s +EXPORT_SYMBOL vmlinux 0x4a59e5e1 xfrm_unregister_km +EXPORT_SYMBOL vmlinux 0x4a67b651 unpin_user_page_range_dirty_lock +EXPORT_SYMBOL vmlinux 0x4a680e43 configfs_register_group +EXPORT_SYMBOL vmlinux 0x4a6b3b27 dcb_getapp +EXPORT_SYMBOL vmlinux 0x4a707fb6 md_integrity_register +EXPORT_SYMBOL vmlinux 0x4a783b0e sg_miter_start +EXPORT_SYMBOL vmlinux 0x4a81c58c of_read_drc_info_cell EXPORT_SYMBOL vmlinux 0x4a8a6949 get_random_bytes_arch +EXPORT_SYMBOL vmlinux 0x4a8fa7ca rproc_report_crash EXPORT_SYMBOL vmlinux 0x4a93576a ucc_fast_free -EXPORT_SYMBOL vmlinux 0x4a942ef8 dev_get_stats EXPORT_SYMBOL vmlinux 0x4a96a8eb xxh32_digest -EXPORT_SYMBOL vmlinux 0x4aa78ac4 nf_register_sockopt +EXPORT_SYMBOL vmlinux 0x4a9d2385 input_flush_device +EXPORT_SYMBOL vmlinux 0x4aac1b96 km_policy_notify +EXPORT_SYMBOL vmlinux 0x4ab7489c thaw_bdev +EXPORT_SYMBOL vmlinux 0x4ac57bb5 jbd2_journal_check_used_features +EXPORT_SYMBOL vmlinux 0x4ad1d62a i2c_get_adapter EXPORT_SYMBOL vmlinux 0x4ad2a57a opal_event_request +EXPORT_SYMBOL vmlinux 0x4ad44de4 mdio_device_remove +EXPORT_SYMBOL vmlinux 0x4ae03a2c fault_in_iov_iter_readable +EXPORT_SYMBOL vmlinux 0x4ae428b4 phy_attached_print EXPORT_SYMBOL vmlinux 0x4aea463f crc32_le_shift -EXPORT_SYMBOL vmlinux 0x4af3b765 md_write_end EXPORT_SYMBOL vmlinux 0x4af6ddf0 kstrtou16 +EXPORT_SYMBOL vmlinux 0x4b072e92 PDE_DATA EXPORT_SYMBOL vmlinux 0x4b085dbf agp3_generic_configure -EXPORT_SYMBOL vmlinux 0x4b257ce5 tcp_v4_syn_recv_sock -EXPORT_SYMBOL vmlinux 0x4b2787e0 skb_flow_get_icmp_tci -EXPORT_SYMBOL vmlinux 0x4b3e5ebd t10_pi_type3_crc -EXPORT_SYMBOL vmlinux 0x4b3ea050 pci_rebar_get_possible_sizes -EXPORT_SYMBOL vmlinux 0x4b3f5047 input_unregister_handler -EXPORT_SYMBOL vmlinux 0x4b49d4e7 default_qdisc_ops -EXPORT_SYMBOL vmlinux 0x4b4bfd21 devm_backlight_device_register +EXPORT_SYMBOL vmlinux 0x4b2fa79f input_register_device +EXPORT_SYMBOL vmlinux 0x4b3789a2 try_to_writeback_inodes_sb EXPORT_SYMBOL vmlinux 0x4b5fd49e dm_kcopyd_do_callback -EXPORT_SYMBOL vmlinux 0x4b6c2679 tcp_get_cookie_sock -EXPORT_SYMBOL vmlinux 0x4b7f1221 vfs_mkobj -EXPORT_SYMBOL vmlinux 0x4b8a855e gro_find_complete_by_type -EXPORT_SYMBOL vmlinux 0x4bc4d9a2 fscrypt_decrypt_block_inplace -EXPORT_SYMBOL vmlinux 0x4be8d49b fib6_info_hw_flags_set -EXPORT_SYMBOL vmlinux 0x4bec603d in6_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x4b871760 ip6_err_gen_icmpv6_unreach +EXPORT_SYMBOL vmlinux 0x4b874e41 logfc +EXPORT_SYMBOL vmlinux 0x4b9c6526 netdev_has_any_upper_dev +EXPORT_SYMBOL vmlinux 0x4ba6d2e3 kmem_cache_alloc_node_trace +EXPORT_SYMBOL vmlinux 0x4bab9be8 alloc_fcdev +EXPORT_SYMBOL vmlinux 0x4bba480b crypto_sha1_finup +EXPORT_SYMBOL vmlinux 0x4bbb2194 tso_count_descs +EXPORT_SYMBOL vmlinux 0x4bdefa01 blk_queue_max_segments EXPORT_SYMBOL vmlinux 0x4bef1c67 empty_name -EXPORT_SYMBOL vmlinux 0x4bfb4006 flow_rule_match_enc_keyid -EXPORT_SYMBOL vmlinux 0x4bfcc37e pci_bus_add_devices -EXPORT_SYMBOL vmlinux 0x4c18d921 pagecache_isize_extended -EXPORT_SYMBOL vmlinux 0x4c19ec87 xfrm_input_register_afinfo -EXPORT_SYMBOL vmlinux 0x4c33bda1 nobh_writepage +EXPORT_SYMBOL vmlinux 0x4c001f66 of_get_cpu_state_node +EXPORT_SYMBOL vmlinux 0x4c0b531d sg_miter_skip +EXPORT_SYMBOL vmlinux 0x4c1e7f4a rproc_of_resm_mem_entry_init +EXPORT_SYMBOL vmlinux 0x4c27f674 pcibios_bus_to_resource +EXPORT_SYMBOL vmlinux 0x4c284140 arp_send EXPORT_SYMBOL vmlinux 0x4c38d4e0 utf8_strncasecmp_folded EXPORT_SYMBOL vmlinux 0x4c416eb9 LZ4_decompress_fast -EXPORT_SYMBOL vmlinux 0x4c532e7d __traceiter_spi_transfer_start -EXPORT_SYMBOL vmlinux 0x4c5b5d6b netdev_unbind_sb_channel -EXPORT_SYMBOL vmlinux 0x4c755a64 get_watch_queue -EXPORT_SYMBOL vmlinux 0x4c8740ba write_dirty_buffer -EXPORT_SYMBOL vmlinux 0x4c9aa418 of_node_name_eq -EXPORT_SYMBOL vmlinux 0x4cb47dcd ip6_route_me_harder -EXPORT_SYMBOL vmlinux 0x4cb5e440 skb_copy_datagram_from_iter -EXPORT_SYMBOL vmlinux 0x4cba2c7b vlan_ioctl_set +EXPORT_SYMBOL vmlinux 0x4c46dc51 udp_lib_unhash +EXPORT_SYMBOL vmlinux 0x4c5926f0 rps_may_expire_flow +EXPORT_SYMBOL vmlinux 0x4c676d5d pci_claim_resource +EXPORT_SYMBOL vmlinux 0x4c6f3ae8 free_task +EXPORT_SYMBOL vmlinux 0x4c7e0a92 netif_set_real_num_tx_queues +EXPORT_SYMBOL vmlinux 0x4c8c30da vlan_vids_del_by_dev +EXPORT_SYMBOL vmlinux 0x4c91c361 pin_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0x4c95f712 rproc_elf_load_rsc_table EXPORT_SYMBOL vmlinux 0x4cba441d iwe_stream_add_event -EXPORT_SYMBOL vmlinux 0x4cc20e10 ata_print_version EXPORT_SYMBOL vmlinux 0x4cc6534b cpu_l2_cache_map -EXPORT_SYMBOL vmlinux 0x4ccebb15 dma_resv_copy_fences -EXPORT_SYMBOL vmlinux 0x4ccf468a dev_printk_emit -EXPORT_SYMBOL vmlinux 0x4ce98a77 xfrm_register_type_offload -EXPORT_SYMBOL vmlinux 0x4cfa0734 xfrm_sad_getinfo -EXPORT_SYMBOL vmlinux 0x4d12844e blk_execute_rq -EXPORT_SYMBOL vmlinux 0x4d29b30d inode_newsize_ok -EXPORT_SYMBOL vmlinux 0x4d321227 xfrm_unregister_type -EXPORT_SYMBOL vmlinux 0x4d365cac __alloc_disk_node -EXPORT_SYMBOL vmlinux 0x4d4e4ffd jbd2_journal_init_jbd_inode -EXPORT_SYMBOL vmlinux 0x4d5777f9 hmm_range_fault -EXPORT_SYMBOL vmlinux 0x4d60f3e6 end_buffer_write_sync +EXPORT_SYMBOL vmlinux 0x4cf65be3 genphy_update_link +EXPORT_SYMBOL vmlinux 0x4d132035 sock_no_getname +EXPORT_SYMBOL vmlinux 0x4d237c7e pci_release_region +EXPORT_SYMBOL vmlinux 0x4d2807d4 watchdog_unregister_governor EXPORT_SYMBOL vmlinux 0x4d65cbd5 csum_ipv6_magic EXPORT_SYMBOL vmlinux 0x4d6ae35f rps_sock_flow_table -EXPORT_SYMBOL vmlinux 0x4d73a530 pci_alloc_host_bridge -EXPORT_SYMBOL vmlinux 0x4d7daafa sock_no_recvmsg -EXPORT_SYMBOL vmlinux 0x4d7fd2f4 tcf_get_next_chain -EXPORT_SYMBOL vmlinux 0x4d8c65a5 xfrm_stateonly_find +EXPORT_SYMBOL vmlinux 0x4d74607c inet_del_offload +EXPORT_SYMBOL vmlinux 0x4d74df40 ___pskb_trim +EXPORT_SYMBOL vmlinux 0x4d858db5 agp3_generic_tlbflush +EXPORT_SYMBOL vmlinux 0x4d8a15d3 __lock_buffer EXPORT_SYMBOL vmlinux 0x4d924f20 memremap EXPORT_SYMBOL vmlinux 0x4d95d6d1 memcpy_flushcache EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase -EXPORT_SYMBOL vmlinux 0x4db8501f xfrm_state_alloc -EXPORT_SYMBOL vmlinux 0x4dbe1271 wait_on_page_private_2 -EXPORT_SYMBOL vmlinux 0x4dc49b7d d_find_alias -EXPORT_SYMBOL vmlinux 0x4dee4a0e mmc_gpio_get_ro +EXPORT_SYMBOL vmlinux 0x4daa37af __phy_read_mmd +EXPORT_SYMBOL vmlinux 0x4db0f517 xfrm_sad_getinfo +EXPORT_SYMBOL vmlinux 0x4dcd55b4 sock_bindtoindex +EXPORT_SYMBOL vmlinux 0x4dcfea18 put_ipc_ns +EXPORT_SYMBOL vmlinux 0x4dde2859 drop_nlink +EXPORT_SYMBOL vmlinux 0x4de2b81e dma_resv_add_excl_fence +EXPORT_SYMBOL vmlinux 0x4de578d4 flow_rule_match_meta EXPORT_SYMBOL vmlinux 0x4df02057 crc32_be EXPORT_SYMBOL vmlinux 0x4df2ea84 gen_estimator_read -EXPORT_SYMBOL vmlinux 0x4e049c1d update_devfreq -EXPORT_SYMBOL vmlinux 0x4e2fd5cd security_sk_classify_flow +EXPORT_SYMBOL vmlinux 0x4e019cb1 ip_sock_set_pktinfo +EXPORT_SYMBOL vmlinux 0x4e1a6a27 phy_attached_info +EXPORT_SYMBOL vmlinux 0x4e1ae2eb blk_mq_alloc_tag_set +EXPORT_SYMBOL vmlinux 0x4e1f8824 pneigh_enqueue +EXPORT_SYMBOL vmlinux 0x4e20afc0 locks_free_lock +EXPORT_SYMBOL vmlinux 0x4e335173 __free_pages EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int EXPORT_SYMBOL vmlinux 0x4e36cdc4 __ubsan_handle_divrem_overflow -EXPORT_SYMBOL vmlinux 0x4e468ed4 copy_page_from_iter_atomic +EXPORT_SYMBOL vmlinux 0x4e413930 mach_pseries EXPORT_SYMBOL vmlinux 0x4e547048 __kmalloc_node_track_caller -EXPORT_SYMBOL vmlinux 0x4e5eff53 unregister_mii_tstamp_controller -EXPORT_SYMBOL vmlinux 0x4e636951 set_cached_acl +EXPORT_SYMBOL vmlinux 0x4e5d6f83 flush_all_to_thread EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder +EXPORT_SYMBOL vmlinux 0x4e6c66f2 bmap EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console -EXPORT_SYMBOL vmlinux 0x4e7408fa xp_set_rxq_info -EXPORT_SYMBOL vmlinux 0x4e7cc2e4 kern_unmount -EXPORT_SYMBOL vmlinux 0x4e95efbe page_pool_destroy -EXPORT_SYMBOL vmlinux 0x4e97e7f3 from_kuid -EXPORT_SYMBOL vmlinux 0x4eaa8db0 pnv_cxl_ioda_msi_setup -EXPORT_SYMBOL vmlinux 0x4ead3afb inet6_ioctl +EXPORT_SYMBOL vmlinux 0x4e81ed15 _dev_alert +EXPORT_SYMBOL vmlinux 0x4e853305 __skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x4e9b0e52 mipi_dsi_dcs_set_tear_on +EXPORT_SYMBOL vmlinux 0x4ead2868 iw_handler_get_thrspy EXPORT_SYMBOL vmlinux 0x4eada8f7 security_secid_to_secctx EXPORT_SYMBOL vmlinux 0x4eb7ae3d hvc_get_chars -EXPORT_SYMBOL vmlinux 0x4ec0755b serio_unregister_child_port EXPORT_SYMBOL vmlinux 0x4ec54e78 bitmap_to_arr32 -EXPORT_SYMBOL vmlinux 0x4ec6e298 generic_perform_write -EXPORT_SYMBOL vmlinux 0x4ed0491a ipv6_chk_addr_and_flags -EXPORT_SYMBOL vmlinux 0x4ee30a08 can_nice -EXPORT_SYMBOL vmlinux 0x4f03aed3 clear_user_page -EXPORT_SYMBOL vmlinux 0x4f0c3d21 vfs_readlink -EXPORT_SYMBOL vmlinux 0x4f10091c tcp_v4_destroy_sock -EXPORT_SYMBOL vmlinux 0x4f1b14ab no_seek_end_llseek -EXPORT_SYMBOL vmlinux 0x4f1b4102 netdev_adjacent_change_prepare +EXPORT_SYMBOL vmlinux 0x4ee98240 __pskb_copy_fclone +EXPORT_SYMBOL vmlinux 0x4eeb4017 dm_put_device +EXPORT_SYMBOL vmlinux 0x4f07b5cf generic_file_open EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create EXPORT_SYMBOL vmlinux 0x4f2250ba rtc_tm_to_time64 -EXPORT_SYMBOL vmlinux 0x4f2fb89e dev_mc_add_excl -EXPORT_SYMBOL vmlinux 0x4f63e335 make_kgid -EXPORT_SYMBOL vmlinux 0x4f867533 tty_port_hangup -EXPORT_SYMBOL vmlinux 0x4f9a8c88 proc_mkdir +EXPORT_SYMBOL vmlinux 0x4f2540a1 neigh_event_ns +EXPORT_SYMBOL vmlinux 0x4f338e56 ip6_xmit +EXPORT_SYMBOL vmlinux 0x4f507b02 vfs_ioctl +EXPORT_SYMBOL vmlinux 0x4f5c4329 vio_unregister_device +EXPORT_SYMBOL vmlinux 0x4f5e5179 ethtool_rx_flow_rule_destroy +EXPORT_SYMBOL vmlinux 0x4f85309c tso_build_data +EXPORT_SYMBOL vmlinux 0x4fa43c33 udp_seq_start +EXPORT_SYMBOL vmlinux 0x4fa65229 mmc_gpio_set_cd_wake EXPORT_SYMBOL vmlinux 0x4fa65563 gen_pool_destroy -EXPORT_SYMBOL vmlinux 0x4fb2aef9 ps2_handle_response -EXPORT_SYMBOL vmlinux 0x4fc45c2e of_get_next_available_child -EXPORT_SYMBOL vmlinux 0x4fdbd110 nobh_write_begin +EXPORT_SYMBOL vmlinux 0x4fa67108 i2c_verify_client +EXPORT_SYMBOL vmlinux 0x4fd9a785 phy_ethtool_get_link_ksettings EXPORT_SYMBOL vmlinux 0x4fdee897 i8042_command -EXPORT_SYMBOL vmlinux 0x4fe69070 netdev_has_upper_dev -EXPORT_SYMBOL vmlinux 0x4fe83eaa serio_bus -EXPORT_SYMBOL vmlinux 0x4ff640c0 register_console +EXPORT_SYMBOL vmlinux 0x4fe75023 gnet_stats_copy_queue +EXPORT_SYMBOL vmlinux 0x4feb5c6d __register_binfmt +EXPORT_SYMBOL vmlinux 0x4ff37a8f kobject_get EXPORT_SYMBOL vmlinux 0x4ffb59bf __SCK__tp_func_kfree +EXPORT_SYMBOL vmlinux 0x50013a60 pci_ep_cfs_remove_epc_group +EXPORT_SYMBOL vmlinux 0x500603f9 nd_region_to_nstype EXPORT_SYMBOL vmlinux 0x50097088 security_tun_dev_free_security EXPORT_SYMBOL vmlinux 0x5009c71d glob_match -EXPORT_SYMBOL vmlinux 0x5011fa2c _dev_emerg -EXPORT_SYMBOL vmlinux 0x502ad5b9 blk_put_queue +EXPORT_SYMBOL vmlinux 0x500e6cf4 config_group_find_item +EXPORT_SYMBOL vmlinux 0x501b7ea5 xfrm_state_lookup +EXPORT_SYMBOL vmlinux 0x5031a993 dev_addr_flush +EXPORT_SYMBOL vmlinux 0x50465526 key_payload_reserve +EXPORT_SYMBOL vmlinux 0x504b6f6c register_shrinker +EXPORT_SYMBOL vmlinux 0x504bd956 netif_carrier_on +EXPORT_SYMBOL vmlinux 0x504fe34b blk_mq_start_stopped_hw_queues EXPORT_SYMBOL vmlinux 0x50624917 sha1_init EXPORT_SYMBOL vmlinux 0x506dff1a __genradix_free +EXPORT_SYMBOL vmlinux 0x5071843f no_llseek +EXPORT_SYMBOL vmlinux 0x5077a6aa vlan_dev_real_dev +EXPORT_SYMBOL vmlinux 0x5077e8ff dev_printk_emit EXPORT_SYMBOL vmlinux 0x5079c9d7 __pte_index_size -EXPORT_SYMBOL vmlinux 0x50800927 dmam_alloc_attrs -EXPORT_SYMBOL vmlinux 0x5091f852 of_translate_dma_address -EXPORT_SYMBOL vmlinux 0x5093072e __mod_node_page_state +EXPORT_SYMBOL vmlinux 0x50856d81 dev_open +EXPORT_SYMBOL vmlinux 0x5087167d scsi_alloc_sgtables +EXPORT_SYMBOL vmlinux 0x508c3130 md_error +EXPORT_SYMBOL vmlinux 0x508dcf3b serial8250_do_set_termios +EXPORT_SYMBOL vmlinux 0x509881c8 netdev_master_upper_dev_link +EXPORT_SYMBOL vmlinux 0x509e2eff param_get_uint EXPORT_SYMBOL vmlinux 0x50a4698c fb_videomode_to_modelist -EXPORT_SYMBOL vmlinux 0x50aae56a mmc_can_gpio_cd -EXPORT_SYMBOL vmlinux 0x50ae19f8 __mdiobus_write +EXPORT_SYMBOL vmlinux 0x50afc51f free_inode_nonrcu EXPORT_SYMBOL vmlinux 0x50b73ce2 rfkill_find_type EXPORT_SYMBOL vmlinux 0x50be748d security_ib_free_security -EXPORT_SYMBOL vmlinux 0x50cdf3c9 write_inode_now EXPORT_SYMBOL vmlinux 0x50cf7585 hex2bin EXPORT_SYMBOL vmlinux 0x50d035c2 vsscanf -EXPORT_SYMBOL vmlinux 0x50d17779 dev_activate -EXPORT_SYMBOL vmlinux 0x50d496d9 mmc_calc_max_discard -EXPORT_SYMBOL vmlinux 0x50e65fb6 mdiobus_unregister_device -EXPORT_SYMBOL vmlinux 0x50e822ac unix_get_socket -EXPORT_SYMBOL vmlinux 0x50f13f19 dma_find_channel -EXPORT_SYMBOL vmlinux 0x50f50052 end_buffer_async_write +EXPORT_SYMBOL vmlinux 0x50e6fa2f input_grab_device EXPORT_SYMBOL vmlinux 0x50f91491 __genradix_ptr -EXPORT_SYMBOL vmlinux 0x51032073 tcf_qevent_dump -EXPORT_SYMBOL vmlinux 0x5114a6b0 twl6040_set_pll -EXPORT_SYMBOL vmlinux 0x512871f7 qdisc_offload_graft_helper +EXPORT_SYMBOL vmlinux 0x510adf93 ip_setsockopt +EXPORT_SYMBOL vmlinux 0x51129fd4 netdev_name_node_alt_destroy +EXPORT_SYMBOL vmlinux 0x511bae0a blk_mq_kick_requeue_list EXPORT_SYMBOL vmlinux 0x512afb54 nla_put_nohdr -EXPORT_SYMBOL vmlinux 0x513e61ad __mmap_lock_do_trace_start_locking -EXPORT_SYMBOL vmlinux 0x51543275 pci_ep_cfs_add_epc_group -EXPORT_SYMBOL vmlinux 0x5156f875 irq_set_chip +EXPORT_SYMBOL vmlinux 0x513760a8 __hw_addr_unsync_dev +EXPORT_SYMBOL vmlinux 0x514b5db2 tcp_mss_to_mtu EXPORT_SYMBOL vmlinux 0x51641162 opal_unlock_from_suspend -EXPORT_SYMBOL vmlinux 0x516b82dd reuseport_attach_prog -EXPORT_SYMBOL vmlinux 0x516ffef1 __skb_vlan_pop -EXPORT_SYMBOL vmlinux 0x51d0a07a ___pskb_trim -EXPORT_SYMBOL vmlinux 0x51f2b21c key_payload_reserve -EXPORT_SYMBOL vmlinux 0x51f5f0db fscrypt_zeroout_range +EXPORT_SYMBOL vmlinux 0x5171d3ce do_clone_file_range +EXPORT_SYMBOL vmlinux 0x51993084 sock_set_reuseport +EXPORT_SYMBOL vmlinux 0x51b53c84 skb_ext_add +EXPORT_SYMBOL vmlinux 0x51baebc6 sock_no_sendpage_locked +EXPORT_SYMBOL vmlinux 0x51cdedb2 sock_kfree_s EXPORT_SYMBOL vmlinux 0x51f86a1a blk_limits_io_opt -EXPORT_SYMBOL vmlinux 0x51fe95e7 pipe_unlock -EXPORT_SYMBOL vmlinux 0x5201deef dquot_reclaim_space_nodirty -EXPORT_SYMBOL vmlinux 0x5209c488 md_wait_for_blocked_rdev +EXPORT_SYMBOL vmlinux 0x52033cbf __mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x520b4fd5 may_umount_tree +EXPORT_SYMBOL vmlinux 0x520cfcc3 __dynamic_dev_dbg +EXPORT_SYMBOL vmlinux 0x521676dc nvmem_get_mac_address EXPORT_SYMBOL vmlinux 0x52185192 __nla_reserve_nohdr -EXPORT_SYMBOL vmlinux 0x52353a71 filemap_fdatawait_range_keep_errors -EXPORT_SYMBOL vmlinux 0x52402fac xfrm_dev_state_flush -EXPORT_SYMBOL vmlinux 0x524e695e skb_ext_add -EXPORT_SYMBOL vmlinux 0x5254dc0a param_set_copystring +EXPORT_SYMBOL vmlinux 0x521d0f6f skb_copy_bits +EXPORT_SYMBOL vmlinux 0x52336bb3 radix__flush_all_mm +EXPORT_SYMBOL vmlinux 0x52362eee dev_get_port_parent_id +EXPORT_SYMBOL vmlinux 0x52363968 dev_addr_del +EXPORT_SYMBOL vmlinux 0x52377a85 consume_skb +EXPORT_SYMBOL vmlinux 0x523f1c2b nd_dax_probe +EXPORT_SYMBOL vmlinux 0x525364c3 of_phy_register_fixed_link EXPORT_SYMBOL vmlinux 0x525db41a csum_partial_copy_generic -EXPORT_SYMBOL vmlinux 0x5261ec08 jbd2_fc_begin_commit EXPORT_SYMBOL vmlinux 0x526eef2c hdmi_vendor_infoframe_pack -EXPORT_SYMBOL vmlinux 0x52821706 phy_connect -EXPORT_SYMBOL vmlinux 0x52916892 dev_alloc_name +EXPORT_SYMBOL vmlinux 0x5275c1bb inet6_add_offload +EXPORT_SYMBOL vmlinux 0x528c8aab tcp_read_sock +EXPORT_SYMBOL vmlinux 0x52909765 netdev_lower_get_next_private EXPORT_SYMBOL vmlinux 0x52983a4f vme_master_write -EXPORT_SYMBOL vmlinux 0x52a4f8f8 pci_reenable_device -EXPORT_SYMBOL vmlinux 0x52a821d4 pnv_cxl_release_hwirqs -EXPORT_SYMBOL vmlinux 0x52b0442c vfs_get_link +EXPORT_SYMBOL vmlinux 0x52ab2cd3 xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x52adefff uart_add_one_port EXPORT_SYMBOL vmlinux 0x52ba6325 __cpuhp_setup_state -EXPORT_SYMBOL vmlinux 0x52c6d69a blk_mq_unique_tag -EXPORT_SYMBOL vmlinux 0x52c9ea65 iov_iter_init -EXPORT_SYMBOL vmlinux 0x52cc1ab6 flow_rule_match_enc_control +EXPORT_SYMBOL vmlinux 0x52cc28ca xfrm_policy_unregister_afinfo EXPORT_SYMBOL vmlinux 0x52d717da xz_dec_init EXPORT_SYMBOL vmlinux 0x52dcb85b __traceiter_kmalloc -EXPORT_SYMBOL vmlinux 0x52e5b1a5 security_sb_mnt_opts_compat +EXPORT_SYMBOL vmlinux 0x52de8f35 d_instantiate +EXPORT_SYMBOL vmlinux 0x52e114a5 jbd2_journal_ack_err +EXPORT_SYMBOL vmlinux 0x52e2be5b wake_up_process +EXPORT_SYMBOL vmlinux 0x52e896fd mmu_feature_keys EXPORT_SYMBOL vmlinux 0x52ecbc75 crc_ccitt -EXPORT_SYMBOL vmlinux 0x52ee2b62 __dec_zone_page_state EXPORT_SYMBOL vmlinux 0x5308e350 __vmalloc_start -EXPORT_SYMBOL vmlinux 0x530a8f31 dentry_path_raw EXPORT_SYMBOL vmlinux 0x530b1e98 pm_suspend +EXPORT_SYMBOL vmlinux 0x53172cf2 unregister_mii_timestamper EXPORT_SYMBOL vmlinux 0x533206b5 sort_r -EXPORT_SYMBOL vmlinux 0x5336806b of_device_get_match_data EXPORT_SYMBOL vmlinux 0x5338184f ethtool_sprintf -EXPORT_SYMBOL vmlinux 0x533caa56 radix__flush_tlb_mm -EXPORT_SYMBOL vmlinux 0x5343bd89 ptp_find_pin -EXPORT_SYMBOL vmlinux 0x53574d04 xfrm_state_update -EXPORT_SYMBOL vmlinux 0x536a62c6 kernel_listen -EXPORT_SYMBOL vmlinux 0x536bbef4 agp_generic_create_gatt_table -EXPORT_SYMBOL vmlinux 0x537321b2 xfrm_input_unregister_afinfo -EXPORT_SYMBOL vmlinux 0x5374ac6f mipi_dsi_dcs_enter_sleep_mode -EXPORT_SYMBOL vmlinux 0x5389c8ad genl_notify -EXPORT_SYMBOL vmlinux 0x538a7d38 pci_alloc_irq_vectors_affinity -EXPORT_SYMBOL vmlinux 0x53ae8884 input_set_abs_params -EXPORT_SYMBOL vmlinux 0x53b0f557 agp_free_memory -EXPORT_SYMBOL vmlinux 0x53b86f0f dput -EXPORT_SYMBOL vmlinux 0x53bcce13 __xfrm_dst_lookup -EXPORT_SYMBOL vmlinux 0x53c87045 of_get_mac_address -EXPORT_SYMBOL vmlinux 0x53db7fde __ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0x53397fea security_sctp_bind_connect +EXPORT_SYMBOL vmlinux 0x5345bd93 inet_proto_csum_replace4 +EXPORT_SYMBOL vmlinux 0x534cbedf qdisc_watchdog_init +EXPORT_SYMBOL vmlinux 0x5356c2ec secpath_set +EXPORT_SYMBOL vmlinux 0x53691171 scsi_print_command +EXPORT_SYMBOL vmlinux 0x537ea3e4 dev_driver_string +EXPORT_SYMBOL vmlinux 0x539285e8 udp_lib_getsockopt +EXPORT_SYMBOL vmlinux 0x539f2fb8 xfrm6_protocol_deregister +EXPORT_SYMBOL vmlinux 0x53d1fcfc uart_write_wakeup EXPORT_SYMBOL vmlinux 0x53fa36d1 ZSTD_decompressBlock -EXPORT_SYMBOL vmlinux 0x5405247f mipi_dsi_dcs_set_display_on -EXPORT_SYMBOL vmlinux 0x54087c96 vfs_iocb_iter_read -EXPORT_SYMBOL vmlinux 0x5409ce95 finalize_exec -EXPORT_SYMBOL vmlinux 0x5409d3d4 dma_pool_create +EXPORT_SYMBOL vmlinux 0x54120f32 rproc_detach EXPORT_SYMBOL vmlinux 0x5412c7c7 up -EXPORT_SYMBOL vmlinux 0x5413d4c1 __tcf_em_tree_match -EXPORT_SYMBOL vmlinux 0x5419e005 register_netdevice_notifier_dev_net +EXPORT_SYMBOL vmlinux 0x5421f41d generic_setlease +EXPORT_SYMBOL vmlinux 0x54244b01 flow_rule_match_enc_ipv6_addrs EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start -EXPORT_SYMBOL vmlinux 0x5474cb84 qdisc_class_hash_grow -EXPORT_SYMBOL vmlinux 0x5481c16b dquot_initialize_needed -EXPORT_SYMBOL vmlinux 0x5487e643 xfrm_state_add +EXPORT_SYMBOL vmlinux 0x544dc148 mmc_register_driver +EXPORT_SYMBOL vmlinux 0x5453c30f vga_con +EXPORT_SYMBOL vmlinux 0x546795a4 dquot_transfer +EXPORT_SYMBOL vmlinux 0x546ed38f qdisc_watchdog_init_clockid +EXPORT_SYMBOL vmlinux 0x549cb608 pnv_phb_to_cxl_mode +EXPORT_SYMBOL vmlinux 0x549d73fa mpage_readahead +EXPORT_SYMBOL vmlinux 0x54a02dee qdisc_tree_reduce_backlog EXPORT_SYMBOL vmlinux 0x54b1fac6 __ubsan_handle_load_invalid_value -EXPORT_SYMBOL vmlinux 0x54da84ba dump_skip_to +EXPORT_SYMBOL vmlinux 0x54b3236b dev_queue_xmit_accel +EXPORT_SYMBOL vmlinux 0x54ba682c tty_insert_flip_string_flags +EXPORT_SYMBOL vmlinux 0x54d5db0d i2c_add_adapter EXPORT_SYMBOL vmlinux 0x54e3d5fd __pmd_frag_nr EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp +EXPORT_SYMBOL vmlinux 0x54f7a93f kmem_cache_create_usercopy EXPORT_SYMBOL vmlinux 0x5506b8f7 netlbl_bitmap_setbit -EXPORT_SYMBOL vmlinux 0x5514e6ec ip_options_compile -EXPORT_SYMBOL vmlinux 0x55192f1c mdio_find_bus +EXPORT_SYMBOL vmlinux 0x551785f3 dquot_get_next_id EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color -EXPORT_SYMBOL vmlinux 0x55239c4e mdiobus_register_device -EXPORT_SYMBOL vmlinux 0x5543e077 do_clone_file_range +EXPORT_SYMBOL vmlinux 0x5536a3ed mmc_hw_reset +EXPORT_SYMBOL vmlinux 0x5547681c clocksource_unregister EXPORT_SYMBOL vmlinux 0x554ae3a4 irq_poll_sched -EXPORT_SYMBOL vmlinux 0x554b933a rio_query_mport +EXPORT_SYMBOL vmlinux 0x554b6848 fib_default_rule_add +EXPORT_SYMBOL vmlinux 0x55536611 tcp_release_cb +EXPORT_SYMBOL vmlinux 0x555ccb07 uart_suspend_port EXPORT_SYMBOL vmlinux 0x55686530 __arch_clear_user EXPORT_SYMBOL vmlinux 0x556b5d62 __kfifo_dma_in_prepare_r -EXPORT_SYMBOL vmlinux 0x557272c3 vfs_get_fsid +EXPORT_SYMBOL vmlinux 0x55712f4e set_anon_super +EXPORT_SYMBOL vmlinux 0x55830e7d framebuffer_release +EXPORT_SYMBOL vmlinux 0x5584abef neigh_resolve_output EXPORT_SYMBOL vmlinux 0x558b281d aes_expandkey -EXPORT_SYMBOL vmlinux 0x55ac1e85 sock_common_getsockopt -EXPORT_SYMBOL vmlinux 0x55bcee8c nd_btt_arena_is_valid -EXPORT_SYMBOL vmlinux 0x55c3f099 redraw_screen -EXPORT_SYMBOL vmlinux 0x55d12d04 fwnode_graph_parse_endpoint +EXPORT_SYMBOL vmlinux 0x55928a52 mmc_remove_host +EXPORT_SYMBOL vmlinux 0x55988604 mr_mfc_seq_idx +EXPORT_SYMBOL vmlinux 0x55b1ac9b of_graph_get_remote_endpoint +EXPORT_SYMBOL vmlinux 0x55b777ce generic_delete_inode +EXPORT_SYMBOL vmlinux 0x55be1e52 page_pool_update_nid +EXPORT_SYMBOL vmlinux 0x55cc507a lease_get_mtime +EXPORT_SYMBOL vmlinux 0x55ce6587 xfrm6_protocol_register +EXPORT_SYMBOL vmlinux 0x55d9558c dst_dev_put EXPORT_SYMBOL vmlinux 0x55e31703 ethtool_convert_link_mode_to_legacy_u32 +EXPORT_SYMBOL vmlinux 0x55e47066 security_inet_conn_established EXPORT_SYMBOL vmlinux 0x55e5ee64 radix_tree_delete_item -EXPORT_SYMBOL vmlinux 0x55f4a0cc mr_vif_seq_idx -EXPORT_SYMBOL vmlinux 0x55f610a1 of_translate_address -EXPORT_SYMBOL vmlinux 0x55ff540f security_inode_setsecctx -EXPORT_SYMBOL vmlinux 0x560b87a4 inet_release -EXPORT_SYMBOL vmlinux 0x561a8111 ip_route_me_harder -EXPORT_SYMBOL vmlinux 0x56201311 generic_file_llseek -EXPORT_SYMBOL vmlinux 0x5628ef92 grab_cache_page_write_begin -EXPORT_SYMBOL vmlinux 0x562b93a0 skb_queue_head +EXPORT_SYMBOL vmlinux 0x55f09f6c alloc_netdev_mqs +EXPORT_SYMBOL vmlinux 0x55feb791 padata_alloc +EXPORT_SYMBOL vmlinux 0x5604e166 __sk_mem_raise_allocated EXPORT_SYMBOL vmlinux 0x562e9776 fsl_lbc_find EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user +EXPORT_SYMBOL vmlinux 0x563d525c __post_watch_notification +EXPORT_SYMBOL vmlinux 0x5642374a dev_pm_opp_register_notifier EXPORT_SYMBOL vmlinux 0x56470118 __warn_printk -EXPORT_SYMBOL vmlinux 0x564834dd device_match_acpi_dev EXPORT_SYMBOL vmlinux 0x56555401 nla_put_64bit -EXPORT_SYMBOL vmlinux 0x5668fe52 serio_close -EXPORT_SYMBOL vmlinux 0x567770f2 mipi_dsi_picture_parameter_set EXPORT_SYMBOL vmlinux 0x56802ae8 rps_cpu_mask -EXPORT_SYMBOL vmlinux 0x568a43c9 param_get_ulong -EXPORT_SYMBOL vmlinux 0x5696e305 pci_add_new_bus -EXPORT_SYMBOL vmlinux 0x56a2c6f6 kmem_cache_create +EXPORT_SYMBOL vmlinux 0x5687213a qdisc_hash_add +EXPORT_SYMBOL vmlinux 0x569537d2 pci_resize_resource +EXPORT_SYMBOL vmlinux 0x5696277b srp_rport_get +EXPORT_SYMBOL vmlinux 0x56996785 kern_unmount +EXPORT_SYMBOL vmlinux 0x56a8f033 md_bitmap_sync_with_cluster EXPORT_SYMBOL vmlinux 0x56ac2a7c _atomic_dec_and_lock_irqsave -EXPORT_SYMBOL vmlinux 0x56af54a0 bdi_put -EXPORT_SYMBOL vmlinux 0x56b93723 input_match_device_id EXPORT_SYMBOL vmlinux 0x56c2b95b rtas_progress EXPORT_SYMBOL vmlinux 0x56c3db64 __tracepoint_kmalloc EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg -EXPORT_SYMBOL vmlinux 0x56cd0446 skb_kill_datagram -EXPORT_SYMBOL vmlinux 0x56d377a0 __dynamic_ibdev_dbg -EXPORT_SYMBOL vmlinux 0x56dc05fa sock_edemux -EXPORT_SYMBOL vmlinux 0x56de55df capable_wrt_inode_uidgid +EXPORT_SYMBOL vmlinux 0x56d0546b genphy_resume +EXPORT_SYMBOL vmlinux 0x56d2297e n_tty_ioctl_helper +EXPORT_SYMBOL vmlinux 0x56d343dd phy_get_internal_delay EXPORT_SYMBOL vmlinux 0x56de5ace __cpuhp_remove_state -EXPORT_SYMBOL vmlinux 0x56ed5790 __qdisc_calculate_pkt_len EXPORT_SYMBOL vmlinux 0x56f6c7de lockref_get_not_zero -EXPORT_SYMBOL vmlinux 0x57045ebc ptp_find_pin_unlocked -EXPORT_SYMBOL vmlinux 0x57070170 __set_page_dirty_no_writeback -EXPORT_SYMBOL vmlinux 0x570ad43c tcp_md5_do_del -EXPORT_SYMBOL vmlinux 0x5711e2cd inet_addr_type_table +EXPORT_SYMBOL vmlinux 0x57187e4e inet_csk_reqsk_queue_drop +EXPORT_SYMBOL vmlinux 0x5722bf44 security_task_getsecid_obj EXPORT_SYMBOL vmlinux 0x572ae748 dma_fence_chain_ops -EXPORT_SYMBOL vmlinux 0x574b6268 generic_block_bmap +EXPORT_SYMBOL vmlinux 0x573a20b3 input_mt_init_slots EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region -EXPORT_SYMBOL vmlinux 0x57511f88 param_set_ushort EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put -EXPORT_SYMBOL vmlinux 0x5760bb5d __scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x575c6618 __vio_register_driver +EXPORT_SYMBOL vmlinux 0x5760b557 module_put EXPORT_SYMBOL vmlinux 0x57674fd7 __sw_hweight16 -EXPORT_SYMBOL vmlinux 0x5776c438 vme_register_driver EXPORT_SYMBOL vmlinux 0x578a408b ZSTD_initDCtx EXPORT_SYMBOL vmlinux 0x5792f848 strlcpy -EXPORT_SYMBOL vmlinux 0x57958572 param_get_uint -EXPORT_SYMBOL vmlinux 0x579ad93c vfs_statfs -EXPORT_SYMBOL vmlinux 0x57a631dc page_cache_next_miss -EXPORT_SYMBOL vmlinux 0x57aa83f0 __skb_recv_datagram -EXPORT_SYMBOL vmlinux 0x57b44972 textsearch_find_continuous -EXPORT_SYMBOL vmlinux 0x57ef7d73 mfd_remove_devices +EXPORT_SYMBOL vmlinux 0x57943a41 page_cache_next_miss +EXPORT_SYMBOL vmlinux 0x5794f3bf param_set_byte +EXPORT_SYMBOL vmlinux 0x57c49103 skb_seq_read EXPORT_SYMBOL vmlinux 0x57f38cdc qe_get_firmware_info +EXPORT_SYMBOL vmlinux 0x57f7e5b9 _dev_emerg +EXPORT_SYMBOL vmlinux 0x580bf89c netpoll_send_udp EXPORT_SYMBOL vmlinux 0x58125fbb nla_reserve_64bit EXPORT_SYMBOL vmlinux 0x5818fe3c posix_acl_from_mode EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate -EXPORT_SYMBOL vmlinux 0x5824d7ea tcp_gro_complete -EXPORT_SYMBOL vmlinux 0x58271bfb blk_cleanup_disk +EXPORT_SYMBOL vmlinux 0x5822d0af write_inode_now EXPORT_SYMBOL vmlinux 0x58272b1d prepare_creds +EXPORT_SYMBOL vmlinux 0x582b0ea9 backlight_device_register EXPORT_SYMBOL vmlinux 0x582b6275 xfrm_if_unregister_cb +EXPORT_SYMBOL vmlinux 0x58363957 jbd2_journal_start_commit EXPORT_SYMBOL vmlinux 0x5838f6c9 rtc_valid_tm -EXPORT_SYMBOL vmlinux 0x5852ca21 pci_save_state -EXPORT_SYMBOL vmlinux 0x587291a4 inet_csk_init_xmit_timers +EXPORT_SYMBOL vmlinux 0x586f54e1 blk_queue_update_dma_alignment +EXPORT_SYMBOL vmlinux 0x587111c4 cdrom_get_last_written EXPORT_SYMBOL vmlinux 0x587b0954 kvasprintf EXPORT_SYMBOL vmlinux 0x587b892e qe_get_num_of_risc +EXPORT_SYMBOL vmlinux 0x587c26a1 __tty_alloc_driver EXPORT_SYMBOL vmlinux 0x587f22d7 devmap_managed_key -EXPORT_SYMBOL vmlinux 0x58a58f85 mmc_card_alternative_gpt_sector +EXPORT_SYMBOL vmlinux 0x58858026 filemap_fdatawrite_range +EXPORT_SYMBOL vmlinux 0x5886cff6 hmm_range_fault +EXPORT_SYMBOL vmlinux 0x588d428d vme_register_error_handler +EXPORT_SYMBOL vmlinux 0x5890c4de security_unix_stream_connect +EXPORT_SYMBOL vmlinux 0x5893aad4 xfrm_policy_delete +EXPORT_SYMBOL vmlinux 0x5894e48e __ip_queue_xmit +EXPORT_SYMBOL vmlinux 0x589667b7 devfreq_remove_device +EXPORT_SYMBOL vmlinux 0x589aad24 bioset_exit +EXPORT_SYMBOL vmlinux 0x58a0550a grab_cache_page_write_begin EXPORT_SYMBOL vmlinux 0x58acf24b mdiobus_register_board_info -EXPORT_SYMBOL vmlinux 0x58b41b6e neigh_table_init +EXPORT_SYMBOL vmlinux 0x58ad6043 i2c_smbus_write_byte_data EXPORT_SYMBOL vmlinux 0x58b4645c dev_close_many EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard -EXPORT_SYMBOL vmlinux 0x58be63f7 of_iomap -EXPORT_SYMBOL vmlinux 0x58bffd5f page_readlink -EXPORT_SYMBOL vmlinux 0x58c4b766 scsi_remove_host -EXPORT_SYMBOL vmlinux 0x58c5f45d get_acl +EXPORT_SYMBOL vmlinux 0x58c51e35 nf_ct_attach +EXPORT_SYMBOL vmlinux 0x58ce83d6 of_find_node_opts_by_path EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io -EXPORT_SYMBOL vmlinux 0x58ea3d03 tty_port_close_end -EXPORT_SYMBOL vmlinux 0x58f7ea73 inet_frag_pull_head -EXPORT_SYMBOL vmlinux 0x59017a13 jbd2_journal_start_reserved -EXPORT_SYMBOL vmlinux 0x59045ac1 _dev_err -EXPORT_SYMBOL vmlinux 0x592e5846 pci_dev_driver -EXPORT_SYMBOL vmlinux 0x59389c4d seg6_hmac_net_exit +EXPORT_SYMBOL vmlinux 0x5903099a mipi_dsi_shutdown_peripheral +EXPORT_SYMBOL vmlinux 0x590730ae netdev_printk +EXPORT_SYMBOL vmlinux 0x59495522 vme_dma_list_exec +EXPORT_SYMBOL vmlinux 0x5949f241 hash_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0x594bc385 __traceiter_spi_transfer_stop EXPORT_SYMBOL vmlinux 0x594bf15b ioport_map -EXPORT_SYMBOL vmlinux 0x594f06b2 skb_copy_header -EXPORT_SYMBOL vmlinux 0x59530ae2 mmc_of_parse +EXPORT_SYMBOL vmlinux 0x5952ebd2 udp_set_csum +EXPORT_SYMBOL vmlinux 0x5959dc78 phy_mac_interrupt EXPORT_SYMBOL vmlinux 0x595d0946 empty_zero_page EXPORT_SYMBOL vmlinux 0x595d8002 hdmi_infoframe_pack +EXPORT_SYMBOL vmlinux 0x596c3c2c mark_buffer_async_write +EXPORT_SYMBOL vmlinux 0x59732703 dev_change_flags EXPORT_SYMBOL vmlinux 0x59757699 refcount_dec_and_lock_irqsave -EXPORT_SYMBOL vmlinux 0x5977dd63 blk_pre_runtime_resume EXPORT_SYMBOL vmlinux 0x59894fa7 down_write_trylock -EXPORT_SYMBOL vmlinux 0x598ea95f generic_pipe_buf_release -EXPORT_SYMBOL vmlinux 0x599b11ab md_check_no_bitmap EXPORT_SYMBOL vmlinux 0x599b4888 qe_setbrg -EXPORT_SYMBOL vmlinux 0x599d329b blk_queue_alignment_offset EXPORT_SYMBOL vmlinux 0x599fb41c kvmalloc_node EXPORT_SYMBOL vmlinux 0x59a2f0ee packing -EXPORT_SYMBOL vmlinux 0x59a98112 crypto_sha256_update -EXPORT_SYMBOL vmlinux 0x59ad0c97 __starget_for_each_device +EXPORT_SYMBOL vmlinux 0x59a8a980 __register_nls +EXPORT_SYMBOL vmlinux 0x59b397be rproc_free EXPORT_SYMBOL vmlinux 0x59b4ac3e tcp_memory_allocated -EXPORT_SYMBOL vmlinux 0x59b7a06f set_disk_ro -EXPORT_SYMBOL vmlinux 0x59be2d0f input_mt_assign_slots -EXPORT_SYMBOL vmlinux 0x59c21eeb bd_abort_claiming -EXPORT_SYMBOL vmlinux 0x59d18845 __alloc_skb -EXPORT_SYMBOL vmlinux 0x59df1c71 __do_once_done -EXPORT_SYMBOL vmlinux 0x5a009d87 i2c_get_adapter +EXPORT_SYMBOL vmlinux 0x59c1a4b5 flow_block_cb_alloc +EXPORT_SYMBOL vmlinux 0x59c7767a mdiobus_is_registered_device +EXPORT_SYMBOL vmlinux 0x59f9ae17 kern_path EXPORT_SYMBOL vmlinux 0x5a025f7b arch_local_irq_restore EXPORT_SYMBOL vmlinux 0x5a032030 gtm_put_timer16 EXPORT_SYMBOL vmlinux 0x5a088923 up_write EXPORT_SYMBOL vmlinux 0x5a0b73d0 zlib_deflateInit2 -EXPORT_SYMBOL vmlinux 0x5a17b6b7 unlock_rename -EXPORT_SYMBOL vmlinux 0x5a22483d sock_efree -EXPORT_SYMBOL vmlinux 0x5a26bfb5 dquot_get_next_dqblk +EXPORT_SYMBOL vmlinux 0x5a1ab261 inet6_del_offload +EXPORT_SYMBOL vmlinux 0x5a1fa0e3 find_vma +EXPORT_SYMBOL vmlinux 0x5a2067ea tc_cleanup_flow_action +EXPORT_SYMBOL vmlinux 0x5a234b7c dev_mc_unsync +EXPORT_SYMBOL vmlinux 0x5a23f4e7 con_set_default_unimap EXPORT_SYMBOL vmlinux 0x5a290250 hdmi_drm_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0x5a37ef40 input_mt_drop_unused +EXPORT_SYMBOL vmlinux 0x5a2f065e flow_rule_alloc +EXPORT_SYMBOL vmlinux 0x5a3d3f2c unregister_nls +EXPORT_SYMBOL vmlinux 0x5a4203a1 skb_expand_head +EXPORT_SYMBOL vmlinux 0x5a43120a unregister_fib_notifier EXPORT_SYMBOL vmlinux 0x5a44f8cb __crypto_memneq +EXPORT_SYMBOL vmlinux 0x5a497cd5 seg6_hmac_net_init EXPORT_SYMBOL vmlinux 0x5a4d313e gf128mul_4k_lle -EXPORT_SYMBOL vmlinux 0x5a65d8a4 max8998_write_reg -EXPORT_SYMBOL vmlinux 0x5a6c1654 reuseport_select_sock -EXPORT_SYMBOL vmlinux 0x5a740972 md_update_sb +EXPORT_SYMBOL vmlinux 0x5a5e89cc ipv6_push_frag_opts +EXPORT_SYMBOL vmlinux 0x5a6676d2 __set_page_dirty_nobuffers +EXPORT_SYMBOL vmlinux 0x5a75d54f fs_context_for_mount +EXPORT_SYMBOL vmlinux 0x5a807117 vlan_filter_drop_vids EXPORT_SYMBOL vmlinux 0x5a8ae15a ZSTD_initDDict EXPORT_SYMBOL vmlinux 0x5a921311 strncmp -EXPORT_SYMBOL vmlinux 0x5a9dbb72 put_cmsg_scm_timestamping64 +EXPORT_SYMBOL vmlinux 0x5a99a0d7 flow_get_u32_dst EXPORT_SYMBOL vmlinux 0x5a9f1d63 memmove -EXPORT_SYMBOL vmlinux 0x5aae0058 jbd2_complete_transaction -EXPORT_SYMBOL vmlinux 0x5aca37ce netdev_txq_to_tc -EXPORT_SYMBOL vmlinux 0x5acf7e77 bh_uptodate_or_lock -EXPORT_SYMBOL vmlinux 0x5ad62bd9 scmd_printk +EXPORT_SYMBOL vmlinux 0x5abbf923 pm_vt_switch_required +EXPORT_SYMBOL vmlinux 0x5acd0972 cdev_device_del +EXPORT_SYMBOL vmlinux 0x5ad906d0 single_release +EXPORT_SYMBOL vmlinux 0x5adf5009 ipv6_dev_get_saddr EXPORT_SYMBOL vmlinux 0x5ae1154b __traceiter_kfree -EXPORT_SYMBOL vmlinux 0x5aeeda04 dma_resv_add_shared_fence -EXPORT_SYMBOL vmlinux 0x5af18563 udp_lib_getsockopt -EXPORT_SYMBOL vmlinux 0x5af8fab9 vm_iomap_memory -EXPORT_SYMBOL vmlinux 0x5b1c01bb md_finish_reshape -EXPORT_SYMBOL vmlinux 0x5b2c51b2 param_get_charp +EXPORT_SYMBOL vmlinux 0x5aff7ed5 phy_init_hw +EXPORT_SYMBOL vmlinux 0x5b0417f4 phy_connect +EXPORT_SYMBOL vmlinux 0x5b077d50 ata_scsi_cmd_error_handler +EXPORT_SYMBOL vmlinux 0x5b0918ba dev_alloc_name +EXPORT_SYMBOL vmlinux 0x5b145815 seq_vprintf +EXPORT_SYMBOL vmlinux 0x5b2873f8 pci_bus_read_config_dword EXPORT_SYMBOL vmlinux 0x5b36d5dd utf8agemax -EXPORT_SYMBOL vmlinux 0x5b3973f0 unregister_nls -EXPORT_SYMBOL vmlinux 0x5b3eb716 __xfrm_state_destroy EXPORT_SYMBOL vmlinux 0x5b43f1f1 rtas_service_present -EXPORT_SYMBOL vmlinux 0x5b49ed04 request_key_with_auxdata +EXPORT_SYMBOL vmlinux 0x5b55ffd4 lease_modify EXPORT_SYMBOL vmlinux 0x5b56860c vm_munmap -EXPORT_SYMBOL vmlinux 0x5b60fac4 input_free_device -EXPORT_SYMBOL vmlinux 0x5b67bd54 phy_connect_direct -EXPORT_SYMBOL vmlinux 0x5b6b4dec kernel_sock_ip_overhead +EXPORT_SYMBOL vmlinux 0x5b5ad506 sock_no_ioctl +EXPORT_SYMBOL vmlinux 0x5b6249b0 sock_from_file EXPORT_SYMBOL vmlinux 0x5b760467 proc_do_large_bitmap -EXPORT_SYMBOL vmlinux 0x5b79f649 netdev_adjacent_change_commit -EXPORT_SYMBOL vmlinux 0x5b95ef05 seq_hex_dump +EXPORT_SYMBOL vmlinux 0x5b7ad712 napi_gro_frags +EXPORT_SYMBOL vmlinux 0x5b8f02f9 netpoll_print_options EXPORT_SYMBOL vmlinux 0x5b9828c5 dma_spin_lock -EXPORT_SYMBOL vmlinux 0x5ba40ab0 unregister_qdisc -EXPORT_SYMBOL vmlinux 0x5bb44afc scsi_print_sense -EXPORT_SYMBOL vmlinux 0x5bbf34af dev_set_threaded +EXPORT_SYMBOL vmlinux 0x5b9ed091 unregister_md_personality +EXPORT_SYMBOL vmlinux 0x5ba3bbe5 flow_block_cb_free +EXPORT_SYMBOL vmlinux 0x5ba44ad1 agp_free_memory +EXPORT_SYMBOL vmlinux 0x5ba51c0c pnv_cxl_ioda_msi_setup +EXPORT_SYMBOL vmlinux 0x5ba56896 neigh_connected_output +EXPORT_SYMBOL vmlinux 0x5bc013ec pps_unregister_source +EXPORT_SYMBOL vmlinux 0x5bce0dad vfs_iocb_iter_read +EXPORT_SYMBOL vmlinux 0x5bd20a06 napi_gro_flush EXPORT_SYMBOL vmlinux 0x5bd4ff88 flow_action_cookie_create -EXPORT_SYMBOL vmlinux 0x5bd6a379 bio_copy_data_iter -EXPORT_SYMBOL vmlinux 0x5be15c2c ip_setsockopt -EXPORT_SYMBOL vmlinux 0x5be3b536 netpoll_print_options +EXPORT_SYMBOL vmlinux 0x5bd92cec inet_csk_prepare_forced_close EXPORT_SYMBOL vmlinux 0x5be63c5b crc32c_csum_stub -EXPORT_SYMBOL vmlinux 0x5bf987d0 generic_shutdown_super -EXPORT_SYMBOL vmlinux 0x5c052941 agp_generic_alloc_by_type -EXPORT_SYMBOL vmlinux 0x5c34f95d cdrom_mode_sense -EXPORT_SYMBOL vmlinux 0x5c376df2 complete_request_key -EXPORT_SYMBOL vmlinux 0x5c3c448b mr_table_alloc +EXPORT_SYMBOL vmlinux 0x5beefc1e skb_unlink +EXPORT_SYMBOL vmlinux 0x5bf4fe6a fwnode_graph_parse_endpoint +EXPORT_SYMBOL vmlinux 0x5bfd4ccf of_node_name_prefix +EXPORT_SYMBOL vmlinux 0x5c0cc29b dquot_set_dqblk +EXPORT_SYMBOL vmlinux 0x5c0e1f78 __genphy_config_aneg +EXPORT_SYMBOL vmlinux 0x5c1713c5 fwnode_mdio_find_device +EXPORT_SYMBOL vmlinux 0x5c1a0f6f ip_sock_set_tos +EXPORT_SYMBOL vmlinux 0x5c21651d sock_wfree +EXPORT_SYMBOL vmlinux 0x5c2f7d92 __pci_register_driver +EXPORT_SYMBOL vmlinux 0x5c32a884 devfreq_register_opp_notifier EXPORT_SYMBOL vmlinux 0x5c3c7387 kstrtoull -EXPORT_SYMBOL vmlinux 0x5c41416f nd_namespace_blk_validate -EXPORT_SYMBOL vmlinux 0x5c4950f6 __neigh_create -EXPORT_SYMBOL vmlinux 0x5c6839dc tcp_sync_mss -EXPORT_SYMBOL vmlinux 0x5c6cc3f6 inet_rcv_saddr_equal -EXPORT_SYMBOL vmlinux 0x5c8c22c8 input_set_max_poll_interval +EXPORT_SYMBOL vmlinux 0x5c46a876 locks_copy_lock +EXPORT_SYMBOL vmlinux 0x5c4f703d tty_port_destroy +EXPORT_SYMBOL vmlinux 0x5c5ee23b copy_string_kernel +EXPORT_SYMBOL vmlinux 0x5c7d89f7 param_set_hexint EXPORT_SYMBOL vmlinux 0x5c905b8a xmon -EXPORT_SYMBOL vmlinux 0x5c91a12a xfrm_state_walk -EXPORT_SYMBOL vmlinux 0x5c9bd4e4 mipi_dsi_dcs_set_pixel_format -EXPORT_SYMBOL vmlinux 0x5ca08606 nd_device_register -EXPORT_SYMBOL vmlinux 0x5cbc9010 pagevec_lookup_range_tag -EXPORT_SYMBOL vmlinux 0x5cc8cc52 file_ns_capable -EXPORT_SYMBOL vmlinux 0x5cce182e tcp_set_rcvlowat -EXPORT_SYMBOL vmlinux 0x5cd04e15 zero_fill_bio -EXPORT_SYMBOL vmlinux 0x5cea60ee fasync_helper -EXPORT_SYMBOL vmlinux 0x5cf1c1d5 scsi_set_medium_removal +EXPORT_SYMBOL vmlinux 0x5ca17564 fb_firmware_edid +EXPORT_SYMBOL vmlinux 0x5ca33bef block_page_mkwrite +EXPORT_SYMBOL vmlinux 0x5ca467fb jbd2_journal_wipe +EXPORT_SYMBOL vmlinux 0x5ca808cc skb_add_rx_frag +EXPORT_SYMBOL vmlinux 0x5ca977bb nvdimm_namespace_common_probe +EXPORT_SYMBOL vmlinux 0x5ce84d51 register_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x5ceb227c tcp_check_req EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor -EXPORT_SYMBOL vmlinux 0x5d1a9d18 prepare_to_swait_event -EXPORT_SYMBOL vmlinux 0x5d1c1977 blk_post_runtime_suspend -EXPORT_SYMBOL vmlinux 0x5d261ecd netif_tx_wake_queue -EXPORT_SYMBOL vmlinux 0x5d274a48 ptp_cancel_worker_sync -EXPORT_SYMBOL vmlinux 0x5d295ccb napi_enable -EXPORT_SYMBOL vmlinux 0x5d387c40 reuseport_stop_listen_sock -EXPORT_SYMBOL vmlinux 0x5d49904d ptp_schedule_worker +EXPORT_SYMBOL vmlinux 0x5cf70e6f simple_link +EXPORT_SYMBOL vmlinux 0x5d3379c3 ipv6_skip_exthdr +EXPORT_SYMBOL vmlinux 0x5d3924de xattr_supported_namespace EXPORT_SYMBOL vmlinux 0x5d49aabc init_wait_var_entry -EXPORT_SYMBOL vmlinux 0x5d4d62e5 netdev_printk -EXPORT_SYMBOL vmlinux 0x5d4d8f63 vlan_filter_drop_vids -EXPORT_SYMBOL vmlinux 0x5d5fa092 sync_dirty_buffer -EXPORT_SYMBOL vmlinux 0x5d64690e __blkdev_issue_zeroout -EXPORT_SYMBOL vmlinux 0x5d64c7bc i2c_smbus_write_i2c_block_data -EXPORT_SYMBOL vmlinux 0x5d652e68 eth_get_headlen -EXPORT_SYMBOL vmlinux 0x5d82f042 md_bitmap_start_sync -EXPORT_SYMBOL vmlinux 0x5d972acb pci_get_class -EXPORT_SYMBOL vmlinux 0x5db22cb7 phy_device_free -EXPORT_SYMBOL vmlinux 0x5dc7b940 skb_eth_pop -EXPORT_SYMBOL vmlinux 0x5de86484 arp_create -EXPORT_SYMBOL vmlinux 0x5df0fbc4 netpoll_send_skb +EXPORT_SYMBOL vmlinux 0x5d4c0349 ilookup5 +EXPORT_SYMBOL vmlinux 0x5d5170ed call_fib_notifiers +EXPORT_SYMBOL vmlinux 0x5d74d105 genphy_suspend +EXPORT_SYMBOL vmlinux 0x5d94c80a iov_iter_get_pages +EXPORT_SYMBOL vmlinux 0x5d98f174 flow_block_cb_priv +EXPORT_SYMBOL vmlinux 0x5dc982c3 mmc_cqe_recovery +EXPORT_SYMBOL vmlinux 0x5ddc63dd jbd2_journal_try_to_free_buffers EXPORT_SYMBOL vmlinux 0x5df49be6 radix_tree_gang_lookup -EXPORT_SYMBOL vmlinux 0x5df870ab mmc_wait_for_req_done EXPORT_SYMBOL vmlinux 0x5dffb495 ZSTD_decompress_usingDDict +EXPORT_SYMBOL vmlinux 0x5e095632 sched_autogroup_detach EXPORT_SYMBOL vmlinux 0x5e0ccb9f sha1_transform -EXPORT_SYMBOL vmlinux 0x5e1f1663 frontswap_register_ops -EXPORT_SYMBOL vmlinux 0x5e31ee0f i2c_smbus_read_i2c_block_data_or_emulated -EXPORT_SYMBOL vmlinux 0x5e36f42a phy_attached_print +EXPORT_SYMBOL vmlinux 0x5e16ad3d __mdiobus_write +EXPORT_SYMBOL vmlinux 0x5e21e2c8 tcp_timewait_state_process +EXPORT_SYMBOL vmlinux 0x5e234df8 param_set_ullong +EXPORT_SYMBOL vmlinux 0x5e263019 nf_ct_get_tuple_skb +EXPORT_SYMBOL vmlinux 0x5e3223ea thread_group_exited EXPORT_SYMBOL vmlinux 0x5e373fb4 gf128mul_64k_bbe -EXPORT_SYMBOL vmlinux 0x5e4886b5 datagram_poll -EXPORT_SYMBOL vmlinux 0x5e49bbfc tty_write_room -EXPORT_SYMBOL vmlinux 0x5e4b7efc nosteal_pipe_buf_ops +EXPORT_SYMBOL vmlinux 0x5e647a77 xfrm6_rcv_spi +EXPORT_SYMBOL vmlinux 0x5e6c27da ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0x5e6e3736 scsi_report_device_reset +EXPORT_SYMBOL vmlinux 0x5e711932 __dst_destroy_metrics_generic +EXPORT_SYMBOL vmlinux 0x5e7ff6df blk_queue_alignment_offset +EXPORT_SYMBOL vmlinux 0x5e8d02ba mipi_dsi_dcs_write_buffer EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask +EXPORT_SYMBOL vmlinux 0x5e95e428 scsi_eh_finish_cmd EXPORT_SYMBOL vmlinux 0x5e99dfca uaccess_flush_key -EXPORT_SYMBOL vmlinux 0x5eb0f91f wait_on_page_bit_killable +EXPORT_SYMBOL vmlinux 0x5ea188c8 vme_irq_request EXPORT_SYMBOL vmlinux 0x5eb24829 dm_shift_arg -EXPORT_SYMBOL vmlinux 0x5ebf8c9e read_cache_page_gfp +EXPORT_SYMBOL vmlinux 0x5eb7a111 jbd2_journal_destroy +EXPORT_SYMBOL vmlinux 0x5ec2a9b8 of_mdiobus_child_is_phy EXPORT_SYMBOL vmlinux 0x5ec4aee6 put_sg_io_hdr EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch -EXPORT_SYMBOL vmlinux 0x5ed1ca0f __sk_mem_schedule EXPORT_SYMBOL vmlinux 0x5ed90adc int_to_scsilun -EXPORT_SYMBOL vmlinux 0x5edcda49 copy_page_from_iter EXPORT_SYMBOL vmlinux 0x5eddb914 lockref_put_return -EXPORT_SYMBOL vmlinux 0x5ee16721 flow_get_u32_src -EXPORT_SYMBOL vmlinux 0x5efb50a5 devfreq_update_interval -EXPORT_SYMBOL vmlinux 0x5efd042e skb_ensure_writable +EXPORT_SYMBOL vmlinux 0x5eed1059 jbd2_journal_extend EXPORT_SYMBOL vmlinux 0x5efdd68b __tracepoint_mmap_lock_released +EXPORT_SYMBOL vmlinux 0x5efe1cdd bdev_dax_pgoff +EXPORT_SYMBOL vmlinux 0x5f07c842 serio_unregister_driver EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters -EXPORT_SYMBOL vmlinux 0x5f0fbd55 inet_ioctl -EXPORT_SYMBOL vmlinux 0x5f15212b ip_do_fragment -EXPORT_SYMBOL vmlinux 0x5f3c6480 block_write_begin -EXPORT_SYMBOL vmlinux 0x5f4dd98f unix_destruct_scm +EXPORT_SYMBOL vmlinux 0x5f0b3ce7 sk_alloc +EXPORT_SYMBOL vmlinux 0x5f47080a kobject_get_unless_zero EXPORT_SYMBOL vmlinux 0x5f5441c8 __ubsan_handle_alignment_assumption EXPORT_SYMBOL vmlinux 0x5f6b889c rproc_va_to_pa -EXPORT_SYMBOL vmlinux 0x5f7dd00b __put_user_ns +EXPORT_SYMBOL vmlinux 0x5f767765 pnv_cxl_get_irq_count +EXPORT_SYMBOL vmlinux 0x5f82a6b1 mmc_free_host +EXPORT_SYMBOL vmlinux 0x5f87efbf eth_header EXPORT_SYMBOL vmlinux 0x5f8a2728 isa_io_base -EXPORT_SYMBOL vmlinux 0x5f8c25dd i2c_add_adapter EXPORT_SYMBOL vmlinux 0x5f99383a ioread64_hi_lo -EXPORT_SYMBOL vmlinux 0x5fa28717 udp_poll -EXPORT_SYMBOL vmlinux 0x5fadfce6 alloc_buffer_head +EXPORT_SYMBOL vmlinux 0x5fa0c645 tcp_prot EXPORT_SYMBOL vmlinux 0x5fb516f8 xa_find -EXPORT_SYMBOL vmlinux 0x5fb905ba agp_generic_alloc_pages -EXPORT_SYMBOL vmlinux 0x5fc43bf4 vme_dma_list_free -EXPORT_SYMBOL vmlinux 0x5fc4f39c __ip_options_compile +EXPORT_SYMBOL vmlinux 0x5fbfeba4 pci_write_config_byte +EXPORT_SYMBOL vmlinux 0x5fc3aeea __sock_cmsg_send EXPORT_SYMBOL vmlinux 0x5fc67252 ioread16_rep EXPORT_SYMBOL vmlinux 0x5fc72f0e alloc_pages_exact -EXPORT_SYMBOL vmlinux 0x5fda6e88 phy_set_asym_pause -EXPORT_SYMBOL vmlinux 0x5feee944 dev_get_iflink +EXPORT_SYMBOL vmlinux 0x5fdf0b70 unregister_netdevice_notifier_net EXPORT_SYMBOL vmlinux 0x5ffedf63 __nla_put_nohdr EXPORT_SYMBOL vmlinux 0x6005c351 zpool_has_pool EXPORT_SYMBOL vmlinux 0x600683d3 do_unblank_screen EXPORT_SYMBOL vmlinux 0x6016531a gen_pool_set_algo -EXPORT_SYMBOL vmlinux 0x60177bcb skb_prepare_seq_read -EXPORT_SYMBOL vmlinux 0x601ef7a7 __xfrm_state_delete EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create +EXPORT_SYMBOL vmlinux 0x602545d8 phy_free_interrupt +EXPORT_SYMBOL vmlinux 0x60265979 fscrypt_setup_filename EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier -EXPORT_SYMBOL vmlinux 0x6037412a inet_reqsk_alloc -EXPORT_SYMBOL vmlinux 0x6039a89b blk_mq_tag_to_rq +EXPORT_SYMBOL vmlinux 0x603e588c rproc_add +EXPORT_SYMBOL vmlinux 0x603f0986 dev_getbyhwaddr_rcu +EXPORT_SYMBOL vmlinux 0x604528b8 get_user_pages_locked +EXPORT_SYMBOL vmlinux 0x605276ca dma_set_mask EXPORT_SYMBOL vmlinux 0x605790dc fiemap_fill_next_extent -EXPORT_SYMBOL vmlinux 0x6079ff36 is_nd_pfn -EXPORT_SYMBOL vmlinux 0x607a58ab iov_iter_bvec -EXPORT_SYMBOL vmlinux 0x607b5a04 blk_queue_chunk_sectors +EXPORT_SYMBOL vmlinux 0x60757500 tc_setup_cb_replace +EXPORT_SYMBOL vmlinux 0x6078781f kvmppc_hv_find_lock_hpte +EXPORT_SYMBOL vmlinux 0x60787961 truncate_pagecache_range +EXPORT_SYMBOL vmlinux 0x608655dd vfio_pin_pages EXPORT_SYMBOL vmlinux 0x6091b333 unregister_chrdev_region -EXPORT_SYMBOL vmlinux 0x6096afa9 sock_no_linger +EXPORT_SYMBOL vmlinux 0x60968d4b dst_discard_out +EXPORT_SYMBOL vmlinux 0x609ba53d blk_queue_segment_boundary EXPORT_SYMBOL vmlinux 0x609bcd98 in6_pton EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net -EXPORT_SYMBOL vmlinux 0x60a6594a pcie_get_speed_cap -EXPORT_SYMBOL vmlinux 0x60c67a47 tcp_mss_to_mtu -EXPORT_SYMBOL vmlinux 0x60cd8021 phy_driver_register -EXPORT_SYMBOL vmlinux 0x60cdd9d9 configfs_depend_item +EXPORT_SYMBOL vmlinux 0x60c7598a icmp6_send EXPORT_SYMBOL vmlinux 0x60d8ab30 vme_lm_get -EXPORT_SYMBOL vmlinux 0x60e21a92 pcibios_fixup_bus -EXPORT_SYMBOL vmlinux 0x60fe58ce starget_for_each_device +EXPORT_SYMBOL vmlinux 0x60e1b30d mmc_gpiod_request_cd +EXPORT_SYMBOL vmlinux 0x60f42e68 of_translate_dma_address +EXPORT_SYMBOL vmlinux 0x60fd2196 kern_path_create +EXPORT_SYMBOL vmlinux 0x611725de pnv_cxl_release_hwirqs EXPORT_SYMBOL vmlinux 0x6118dc26 start_thread EXPORT_SYMBOL vmlinux 0x6121bd54 dql_init +EXPORT_SYMBOL vmlinux 0x6125557d of_get_i2c_adapter_by_node EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit -EXPORT_SYMBOL vmlinux 0x612b3db0 pps_unregister_source -EXPORT_SYMBOL vmlinux 0x613939ce tcp_sock_set_quickack -EXPORT_SYMBOL vmlinux 0x61505797 kmalloc_caches -EXPORT_SYMBOL vmlinux 0x615496d9 bio_uninit +EXPORT_SYMBOL vmlinux 0x6129dc05 vlan_vid_add +EXPORT_SYMBOL vmlinux 0x6134edee pagecache_write_end +EXPORT_SYMBOL vmlinux 0x61373d9c netif_set_xps_queue +EXPORT_SYMBOL vmlinux 0x61380e58 skb_dequeue_tail +EXPORT_SYMBOL vmlinux 0x614fdca2 netif_tx_wake_queue +EXPORT_SYMBOL vmlinux 0x6152df79 inet_sk_set_state EXPORT_SYMBOL vmlinux 0x615911d7 __bitmap_set EXPORT_SYMBOL vmlinux 0x6160b320 complete_and_exit EXPORT_SYMBOL vmlinux 0x6167e72c vmalloc_no_huge -EXPORT_SYMBOL vmlinux 0x616ab367 xfrm_user_policy -EXPORT_SYMBOL vmlinux 0x616ad5de security_sk_clone -EXPORT_SYMBOL vmlinux 0x6181059e watchdog_register_governor -EXPORT_SYMBOL vmlinux 0x6187ec30 sk_stop_timer_sync +EXPORT_SYMBOL vmlinux 0x61833d74 of_get_parent +EXPORT_SYMBOL vmlinux 0x6188b20f rawv6_mh_filter_register EXPORT_SYMBOL vmlinux 0x618911fc numa_node +EXPORT_SYMBOL vmlinux 0x61970f5c jbd2_journal_get_undo_access EXPORT_SYMBOL vmlinux 0x619cb7dd simple_read_from_buffer -EXPORT_SYMBOL vmlinux 0x61a30e00 set_user_nice +EXPORT_SYMBOL vmlinux 0x61ab3f36 page_pool_return_skb_page EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull +EXPORT_SYMBOL vmlinux 0x61c1553f netif_set_real_num_rx_queues EXPORT_SYMBOL vmlinux 0x61cb246f _raw_write_lock -EXPORT_SYMBOL vmlinux 0x61d6f9e6 tcf_block_netif_keep_dst EXPORT_SYMBOL vmlinux 0x61e272c9 sha256_final +EXPORT_SYMBOL vmlinux 0x61e79b11 of_device_get_match_data EXPORT_SYMBOL vmlinux 0x61ea189b fb_pad_aligned_buffer -EXPORT_SYMBOL vmlinux 0x6202011d icmpv6_ndo_send -EXPORT_SYMBOL vmlinux 0x6203751b migrate_vma_pages -EXPORT_SYMBOL vmlinux 0x62056567 dev_mc_del_global +EXPORT_SYMBOL vmlinux 0x61ee20f7 generic_listxattr +EXPORT_SYMBOL vmlinux 0x620e247c arp_tbl EXPORT_SYMBOL vmlinux 0x6214aef2 cpufreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x621855fe devm_devfreq_register_notifier EXPORT_SYMBOL vmlinux 0x6228c21f smp_call_function_single -EXPORT_SYMBOL vmlinux 0x6254deeb flow_rule_match_ip -EXPORT_SYMBOL vmlinux 0x625af022 pci_match_id -EXPORT_SYMBOL vmlinux 0x626a266a param_ops_ullong -EXPORT_SYMBOL vmlinux 0x62736a06 proc_create_seq_private +EXPORT_SYMBOL vmlinux 0x62350621 touch_atime +EXPORT_SYMBOL vmlinux 0x6235232f simple_release_fs +EXPORT_SYMBOL vmlinux 0x623bc247 blk_mq_free_tag_set +EXPORT_SYMBOL vmlinux 0x6241bdd1 bio_reset +EXPORT_SYMBOL vmlinux 0x624eaa38 block_write_full_page +EXPORT_SYMBOL vmlinux 0x626f2449 jbd2_journal_put_journal_head EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister +EXPORT_SYMBOL vmlinux 0x627cd173 sock_i_ino EXPORT_SYMBOL vmlinux 0x6280f5d8 radix_tree_tag_clear EXPORT_SYMBOL vmlinux 0x62849ac7 dev_valid_name -EXPORT_SYMBOL vmlinux 0x62953539 tcp_read_sock -EXPORT_SYMBOL vmlinux 0x62966c31 nf_unregister_net_hooks -EXPORT_SYMBOL vmlinux 0x629f2ae3 input_get_timestamp -EXPORT_SYMBOL vmlinux 0x62a18883 fs_bio_set -EXPORT_SYMBOL vmlinux 0x62ada81a kthread_create_on_node -EXPORT_SYMBOL vmlinux 0x62ba3c38 ipv6_select_ident +EXPORT_SYMBOL vmlinux 0x628deb2b cdrom_ioctl +EXPORT_SYMBOL vmlinux 0x629d30d0 mfd_remove_devices_late +EXPORT_SYMBOL vmlinux 0x62a7b85a ip6_fraglist_prepare EXPORT_SYMBOL vmlinux 0x62bf6edf utf8agemin -EXPORT_SYMBOL vmlinux 0x62c5cf29 xp_dma_sync_for_device_slow -EXPORT_SYMBOL vmlinux 0x62f64a46 pagevec_lookup_range -EXPORT_SYMBOL vmlinux 0x62f95f56 bio_alloc_bioset +EXPORT_SYMBOL vmlinux 0x62d4fe54 pci_save_state +EXPORT_SYMBOL vmlinux 0x62d5d5d8 put_disk +EXPORT_SYMBOL vmlinux 0x62e86b53 unregister_netdevice_notifier_dev_net +EXPORT_SYMBOL vmlinux 0x62ee5b46 empty_aops +EXPORT_SYMBOL vmlinux 0x6309c000 posix_acl_update_mode +EXPORT_SYMBOL vmlinux 0x630a5ddf linkwatch_fire_event EXPORT_SYMBOL vmlinux 0x63187451 pcie_aspm_support_enabled EXPORT_SYMBOL vmlinux 0x631d06aa cpu_rmap_put -EXPORT_SYMBOL vmlinux 0x63396822 shrink_dcache_sb -EXPORT_SYMBOL vmlinux 0x63a1b4f6 key_put -EXPORT_SYMBOL vmlinux 0x63a31f73 super_setup_bdi +EXPORT_SYMBOL vmlinux 0x633d932d dev_load +EXPORT_SYMBOL vmlinux 0x6349c505 param_get_int +EXPORT_SYMBOL vmlinux 0x63523d3a truncate_inode_pages +EXPORT_SYMBOL vmlinux 0x6387faa2 pci_pme_active +EXPORT_SYMBOL vmlinux 0x63995b9d netdev_crit +EXPORT_SYMBOL vmlinux 0x639d19cf blk_mq_init_allocated_queue EXPORT_SYMBOL vmlinux 0x63a58370 flow_action_cookie_destroy +EXPORT_SYMBOL vmlinux 0x63a66484 nf_ip_checksum EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region +EXPORT_SYMBOL vmlinux 0x63a9a1b9 pci_enable_device_mem +EXPORT_SYMBOL vmlinux 0x63af7ab3 pm860x_page_bulk_read +EXPORT_SYMBOL vmlinux 0x63b94d68 get_mem_cgroup_from_mm EXPORT_SYMBOL vmlinux 0x63bffd8e neigh_proc_dointvec -EXPORT_SYMBOL vmlinux 0x63c01d4d pci_bus_assign_resources EXPORT_SYMBOL vmlinux 0x63c4d61f __bitmap_weight -EXPORT_SYMBOL vmlinux 0x63c61e40 zpool_register_driver -EXPORT_SYMBOL vmlinux 0x63c897bd neigh_changeaddr -EXPORT_SYMBOL vmlinux 0x63d37189 pci_fixup_device -EXPORT_SYMBOL vmlinux 0x63db74c1 fs_lookup_param +EXPORT_SYMBOL vmlinux 0x63cc0d25 inet_csk_delete_keepalive_timer +EXPORT_SYMBOL vmlinux 0x63ced75a fs_context_for_reconfigure +EXPORT_SYMBOL vmlinux 0x63dc1d09 xfrm_policy_hash_rebuild EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink -EXPORT_SYMBOL vmlinux 0x63f7e1dc seq_vprintf -EXPORT_SYMBOL vmlinux 0x63ffc727 vfs_fsync +EXPORT_SYMBOL vmlinux 0x63f258f4 trace_raw_output_prep +EXPORT_SYMBOL vmlinux 0x63fa453c truncate_inode_pages_final +EXPORT_SYMBOL vmlinux 0x63fe432a proc_create_seq_private EXPORT_SYMBOL vmlinux 0x6405dcd3 slhc_toss +EXPORT_SYMBOL vmlinux 0x6407c3fa netif_schedule_queue +EXPORT_SYMBOL vmlinux 0x640d172a fget_raw +EXPORT_SYMBOL vmlinux 0x641031ec kobject_init EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off -EXPORT_SYMBOL vmlinux 0x641ba940 migrate_page -EXPORT_SYMBOL vmlinux 0x641be43a netlink_kernel_release -EXPORT_SYMBOL vmlinux 0x641d4fde tcp_recvmsg -EXPORT_SYMBOL vmlinux 0x642c6a51 pci_select_bars -EXPORT_SYMBOL vmlinux 0x64366436 add_watch_to_object +EXPORT_SYMBOL vmlinux 0x641c04a6 bh_uptodate_or_lock +EXPORT_SYMBOL vmlinux 0x642e1bbd sock_init_data +EXPORT_SYMBOL vmlinux 0x643ac8cb forget_cached_acl EXPORT_SYMBOL vmlinux 0x643f3068 __tracepoint_spi_transfer_stop -EXPORT_SYMBOL vmlinux 0x64411082 follow_down_one -EXPORT_SYMBOL vmlinux 0x645712d3 linkwatch_fire_event -EXPORT_SYMBOL vmlinux 0x645823f4 configfs_register_subsystem -EXPORT_SYMBOL vmlinux 0x646e4504 rtnl_configure_link +EXPORT_SYMBOL vmlinux 0x6456e6b5 set_anon_super_fc +EXPORT_SYMBOL vmlinux 0x64650ada reuseport_detach_sock +EXPORT_SYMBOL vmlinux 0x646b6476 security_sctp_assoc_request EXPORT_SYMBOL vmlinux 0x6481ffe0 hsiphash_1u32 EXPORT_SYMBOL vmlinux 0x64831cb8 xa_extract EXPORT_SYMBOL vmlinux 0x648eb59d gc_inflight_list +EXPORT_SYMBOL vmlinux 0x64957682 unregister_console +EXPORT_SYMBOL vmlinux 0x6495fb35 md_bitmap_endwrite EXPORT_SYMBOL vmlinux 0x64999478 congestion_wait -EXPORT_SYMBOL vmlinux 0x64a2d1ed file_open_root EXPORT_SYMBOL vmlinux 0x64a9c928 default_blu EXPORT_SYMBOL vmlinux 0x64aa92bf refcount_dec_and_mutex_lock -EXPORT_SYMBOL vmlinux 0x64ae3587 from_kuid_munged -EXPORT_SYMBOL vmlinux 0x64b39af3 single_release +EXPORT_SYMBOL vmlinux 0x64ac6f15 sk_wait_data EXPORT_SYMBOL vmlinux 0x64bbc288 string_unescape -EXPORT_SYMBOL vmlinux 0x64c79fcb cad_pid -EXPORT_SYMBOL vmlinux 0x64e461ec inode_set_bytes -EXPORT_SYMBOL vmlinux 0x64f916df d_delete -EXPORT_SYMBOL vmlinux 0x6507a0ae devm_rproc_add -EXPORT_SYMBOL vmlinux 0x650b5e81 scsi_get_device_flags_keyed +EXPORT_SYMBOL vmlinux 0x64ccf500 unlock_two_nondirectories +EXPORT_SYMBOL vmlinux 0x64d45812 clocksource_change_rating +EXPORT_SYMBOL vmlinux 0x64d5fd25 rtnl_unicast +EXPORT_SYMBOL vmlinux 0x64e19be6 netdev_change_features +EXPORT_SYMBOL vmlinux 0x64e668e6 clear_bdi_congested +EXPORT_SYMBOL vmlinux 0x6506874c watchdog_register_governor +EXPORT_SYMBOL vmlinux 0x65091c21 xfrm_state_walk +EXPORT_SYMBOL vmlinux 0x650f4e0b jbd2_fc_get_buf +EXPORT_SYMBOL vmlinux 0x651002db genphy_read_abilities +EXPORT_SYMBOL vmlinux 0x6512d174 ppp_register_net_channel EXPORT_SYMBOL vmlinux 0x6513a3fa fb_get_color_depth +EXPORT_SYMBOL vmlinux 0x6514c1e6 flow_get_u32_src +EXPORT_SYMBOL vmlinux 0x65196c8d writeback_inodes_sb_nr EXPORT_SYMBOL vmlinux 0x651a4139 test_taint EXPORT_SYMBOL vmlinux 0x652032cb mac_pton EXPORT_SYMBOL vmlinux 0x652ce9aa nla_memcmp EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob EXPORT_SYMBOL vmlinux 0x65464c16 clkdev_drop -EXPORT_SYMBOL vmlinux 0x6550329b sk_common_release -EXPORT_SYMBOL vmlinux 0x656130fc mmc_can_erase -EXPORT_SYMBOL vmlinux 0x65625f74 get_tree_single_reconf +EXPORT_SYMBOL vmlinux 0x6560df11 tty_hangup +EXPORT_SYMBOL vmlinux 0x6569fd55 of_clk_get EXPORT_SYMBOL vmlinux 0x656c1a0e string_escape_mem +EXPORT_SYMBOL vmlinux 0x656c47a5 iov_iter_xarray EXPORT_SYMBOL vmlinux 0x656e4a6e snprintf EXPORT_SYMBOL vmlinux 0x657b9994 radix_tree_next_chunk +EXPORT_SYMBOL vmlinux 0x6585ff45 ip6_dst_hoplimit EXPORT_SYMBOL vmlinux 0x658ce1a8 xxh64_reset -EXPORT_SYMBOL vmlinux 0x658f45f1 dev_set_alias -EXPORT_SYMBOL vmlinux 0x659a7d8b tc_setup_cb_call -EXPORT_SYMBOL vmlinux 0x659d629c blk_mq_requeue_request +EXPORT_SYMBOL vmlinux 0x65921197 of_pci_range_to_resource +EXPORT_SYMBOL vmlinux 0x6598f149 skb_flow_dissect_meta EXPORT_SYMBOL vmlinux 0x659ded26 xfrm_flush_gc +EXPORT_SYMBOL vmlinux 0x65a54c31 proc_set_size +EXPORT_SYMBOL vmlinux 0x65a68ad4 rproc_coredump_add_segment +EXPORT_SYMBOL vmlinux 0x65a6d69e filp_close +EXPORT_SYMBOL vmlinux 0x65b5b6ae devfreq_monitor_stop +EXPORT_SYMBOL vmlinux 0x65b9e8c2 zap_page_range +EXPORT_SYMBOL vmlinux 0x65bd7a00 tty_flip_buffer_push EXPORT_SYMBOL vmlinux 0x65cf8831 ZSTD_decompress_usingDict -EXPORT_SYMBOL vmlinux 0x65d8b571 generic_file_write_iter 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 0x660565be sock_wfree -EXPORT_SYMBOL vmlinux 0x662f15ea mmc_unregister_driver +EXPORT_SYMBOL vmlinux 0x660652f8 ip_frag_init +EXPORT_SYMBOL vmlinux 0x661e4090 mdiobus_free +EXPORT_SYMBOL vmlinux 0x662f4933 pci_choose_state EXPORT_SYMBOL vmlinux 0x6633f972 __traceiter_dma_fence_enable_signal -EXPORT_SYMBOL vmlinux 0x665088db security_sb_remount +EXPORT_SYMBOL vmlinux 0x66427739 sockfd_lookup +EXPORT_SYMBOL vmlinux 0x6649a240 dquot_quotactl_sysfile_ops +EXPORT_SYMBOL vmlinux 0x66541807 inet_frag_reasm_finish +EXPORT_SYMBOL vmlinux 0x6658d3dc flow_rule_match_control +EXPORT_SYMBOL vmlinux 0x665dd016 mem_cgroup_from_task EXPORT_SYMBOL vmlinux 0x66628bf3 ip_tunnel_metadata_cnt EXPORT_SYMBOL vmlinux 0x666863dc par_io_config_pin -EXPORT_SYMBOL vmlinux 0x6672e9f3 register_cdrom EXPORT_SYMBOL vmlinux 0x6673f96d xxh32_reset -EXPORT_SYMBOL vmlinux 0x66749069 input_register_device -EXPORT_SYMBOL vmlinux 0x66947bcd rtnetlink_put_metrics -EXPORT_SYMBOL vmlinux 0x66ad4042 inet_register_protosw -EXPORT_SYMBOL vmlinux 0x66b1e271 misc_deregister +EXPORT_SYMBOL vmlinux 0x6678f2de uart_remove_one_port +EXPORT_SYMBOL vmlinux 0x668b3e9b fb_set_var +EXPORT_SYMBOL vmlinux 0x66aa588f pci_bus_size_bridges +EXPORT_SYMBOL vmlinux 0x66aade62 sock_enable_timestamps +EXPORT_SYMBOL vmlinux 0x66b191d3 param_get_ullong EXPORT_SYMBOL vmlinux 0x66b4cc41 kmemdup +EXPORT_SYMBOL vmlinux 0x66bac134 lock_two_nondirectories +EXPORT_SYMBOL vmlinux 0x66be0b9e textsearch_destroy EXPORT_SYMBOL vmlinux 0x66ca02ee cpumask_any_but -EXPORT_SYMBOL vmlinux 0x66cc16d1 i2c_smbus_write_byte -EXPORT_SYMBOL vmlinux 0x66e2bc97 cdrom_get_last_written -EXPORT_SYMBOL vmlinux 0x67056ed9 xfrm_lookup_route -EXPORT_SYMBOL vmlinux 0x672422bc neigh_destroy -EXPORT_SYMBOL vmlinux 0x673b58a9 devm_kvasprintf -EXPORT_SYMBOL vmlinux 0x673e5786 pcix_get_max_mmrbc +EXPORT_SYMBOL vmlinux 0x66ca9025 tcp_v4_md5_hash_skb +EXPORT_SYMBOL vmlinux 0x66f92e3f gnet_stats_start_copy +EXPORT_SYMBOL vmlinux 0x66fb9f82 xfrm4_protocol_register +EXPORT_SYMBOL vmlinux 0x66fd16a1 pcim_iomap +EXPORT_SYMBOL vmlinux 0x670320e1 inet_csk_accept +EXPORT_SYMBOL vmlinux 0x6703ff83 agp_enable +EXPORT_SYMBOL vmlinux 0x6717264d pci_ep_cfs_add_epc_group +EXPORT_SYMBOL vmlinux 0x6720884d blk_mq_run_hw_queues +EXPORT_SYMBOL vmlinux 0x6727d102 register_netdevice_notifier_dev_net +EXPORT_SYMBOL vmlinux 0x673522e9 __inet_stream_connect +EXPORT_SYMBOL vmlinux 0x673834d8 get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0x673f3751 flow_rule_match_vlan EXPORT_SYMBOL vmlinux 0x673f815e agp_bridges +EXPORT_SYMBOL vmlinux 0x673f8188 jbd2_journal_errno EXPORT_SYMBOL vmlinux 0x67412d2f ucc_slow_enable EXPORT_SYMBOL vmlinux 0x6749d53f hdmi_vendor_infoframe_init -EXPORT_SYMBOL vmlinux 0x67518b0e pci_bus_type -EXPORT_SYMBOL vmlinux 0x6765a0b9 of_find_mipi_dsi_host_by_node +EXPORT_SYMBOL vmlinux 0x675b8f1b genphy_aneg_done +EXPORT_SYMBOL vmlinux 0x67614796 blk_queue_bounce_limit +EXPORT_SYMBOL vmlinux 0x6771e364 rproc_da_to_va +EXPORT_SYMBOL vmlinux 0x67769443 __scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x677c6f36 mr_dump +EXPORT_SYMBOL vmlinux 0x677cc83c seq_lseek +EXPORT_SYMBOL vmlinux 0x67887295 deactivate_locked_super EXPORT_SYMBOL vmlinux 0x678b96ec dma_pool_alloc -EXPORT_SYMBOL vmlinux 0x678fb5b0 skb_checksum_help -EXPORT_SYMBOL vmlinux 0x679265d0 of_find_node_by_phandle -EXPORT_SYMBOL vmlinux 0x67a29bec sk_capable -EXPORT_SYMBOL vmlinux 0x67b0fd6c posix_test_lock +EXPORT_SYMBOL vmlinux 0x67929407 vfs_link +EXPORT_SYMBOL vmlinux 0x6798ba37 starget_for_each_device +EXPORT_SYMBOL vmlinux 0x679ec4b3 nd_pfn_validate +EXPORT_SYMBOL vmlinux 0x67b407da pnv_cxl_release_hwirq_ranges EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu -EXPORT_SYMBOL vmlinux 0x67c74be8 free_buffer_head -EXPORT_SYMBOL vmlinux 0x67d7c22f sock_alloc_send_skb -EXPORT_SYMBOL vmlinux 0x67fbdcc5 __phy_read_mmd +EXPORT_SYMBOL vmlinux 0x67bbb07d sk_send_sigurg +EXPORT_SYMBOL vmlinux 0x67bcb495 of_n_addr_cells +EXPORT_SYMBOL vmlinux 0x67c37560 kernel_write +EXPORT_SYMBOL vmlinux 0x67e2bd7f fuse_dequeue_forget +EXPORT_SYMBOL vmlinux 0x67f2d40e agp_find_bridge EXPORT_SYMBOL vmlinux 0x67fc472c gen_pool_dma_alloc_align -EXPORT_SYMBOL vmlinux 0x67fd6349 alloc_pages -EXPORT_SYMBOL vmlinux 0x6815c2a6 phy_device_register +EXPORT_SYMBOL vmlinux 0x6802834b tcp_getsockopt EXPORT_SYMBOL vmlinux 0x681b6670 is_firmware_framebuffer -EXPORT_SYMBOL vmlinux 0x683142e8 ihold -EXPORT_SYMBOL vmlinux 0x683847b0 inet_csk_destroy_sock +EXPORT_SYMBOL vmlinux 0x68200cd4 md_write_start +EXPORT_SYMBOL vmlinux 0x682ffbc9 input_set_max_poll_interval EXPORT_SYMBOL vmlinux 0x683a9560 __gnet_stats_copy_basic -EXPORT_SYMBOL vmlinux 0x683b96f3 __xfrm_init_state +EXPORT_SYMBOL vmlinux 0x6856220c simple_dentry_operations EXPORT_SYMBOL vmlinux 0x685687b0 idr_replace -EXPORT_SYMBOL vmlinux 0x686581ef __udp_disconnect EXPORT_SYMBOL vmlinux 0x686818bb down_read -EXPORT_SYMBOL vmlinux 0x686a41c2 _dev_warn +EXPORT_SYMBOL vmlinux 0x68759e8d netif_rx_ni EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval -EXPORT_SYMBOL vmlinux 0x687fe843 nf_reinject -EXPORT_SYMBOL vmlinux 0x688e3bfa vfio_unpin_pages +EXPORT_SYMBOL vmlinux 0x68807763 ata_port_printk +EXPORT_SYMBOL vmlinux 0x688655bf pin_user_pages +EXPORT_SYMBOL vmlinux 0x6895ec72 unregister_binfmt +EXPORT_SYMBOL vmlinux 0x6899ef7b flow_rule_match_tcp +EXPORT_SYMBOL vmlinux 0x68a277c5 __ClearPageMovable EXPORT_SYMBOL vmlinux 0x68a30ffe shared_processor -EXPORT_SYMBOL vmlinux 0x68a5f2be __test_set_page_writeback -EXPORT_SYMBOL vmlinux 0x68d66a87 tcf_action_check_ctrlact -EXPORT_SYMBOL vmlinux 0x68d79a55 phy_mii_ioctl -EXPORT_SYMBOL vmlinux 0x68dd9163 dev_get_by_napi_id -EXPORT_SYMBOL vmlinux 0x68e445e4 devm_free_irq -EXPORT_SYMBOL vmlinux 0x68f0bb54 __xfrm_route_forward +EXPORT_SYMBOL vmlinux 0x68b205e6 pci_read_config_word +EXPORT_SYMBOL vmlinux 0x68b3aae0 inetdev_by_index +EXPORT_SYMBOL vmlinux 0x68c485c7 dma_mmap_attrs +EXPORT_SYMBOL vmlinux 0x68d66eae mmc_gpio_get_cd +EXPORT_SYMBOL vmlinux 0x68ebff7f tcp_sock_set_keepidle EXPORT_SYMBOL vmlinux 0x68fb581a icst307_idx2s -EXPORT_SYMBOL vmlinux 0x69002c07 dev_get_port_parent_id +EXPORT_SYMBOL vmlinux 0x68fdb060 sock_create_lite EXPORT_SYMBOL vmlinux 0x6909440b __pgd_table_size -EXPORT_SYMBOL vmlinux 0x690dd85d blk_post_runtime_resume -EXPORT_SYMBOL vmlinux 0x6910bf35 pldmfw_op_pci_match_record -EXPORT_SYMBOL vmlinux 0x691110db serial8250_do_set_termios +EXPORT_SYMBOL vmlinux 0x690a64bf cfb_copyarea EXPORT_SYMBOL vmlinux 0x6917a77e __traceiter_kmem_cache_free -EXPORT_SYMBOL vmlinux 0x692ffd12 try_to_release_page -EXPORT_SYMBOL vmlinux 0x6931e628 mmc_gpiod_request_cd_irq -EXPORT_SYMBOL vmlinux 0x6947c6bd tty_vhangup +EXPORT_SYMBOL vmlinux 0x692301a2 sb_set_blocksize +EXPORT_SYMBOL vmlinux 0x69388dbf udp_push_pending_frames EXPORT_SYMBOL vmlinux 0x69585523 __ksize EXPORT_SYMBOL vmlinux 0x69668826 netdev_increment_features EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days -EXPORT_SYMBOL vmlinux 0x697727f5 mmc_of_parse_voltage EXPORT_SYMBOL vmlinux 0x697ed5f0 memcpy_and_pad -EXPORT_SYMBOL vmlinux 0x6982815b blk_integrity_compare -EXPORT_SYMBOL vmlinux 0x6989a237 vio_unregister_device -EXPORT_SYMBOL vmlinux 0x69b7b2c2 simple_getattr -EXPORT_SYMBOL vmlinux 0x69b95e64 config_group_init -EXPORT_SYMBOL vmlinux 0x69d0c351 netpoll_parse_options -EXPORT_SYMBOL vmlinux 0x69dac585 block_write_end +EXPORT_SYMBOL vmlinux 0x697f5378 security_inode_copy_up +EXPORT_SYMBOL vmlinux 0x698f62e4 xfrm_state_flush +EXPORT_SYMBOL vmlinux 0x69991c36 blk_cleanup_disk +EXPORT_SYMBOL vmlinux 0x69a6e6a4 xfrm_input_resume +EXPORT_SYMBOL vmlinux 0x69ae2853 pci_scan_bridge +EXPORT_SYMBOL vmlinux 0x69b0ce05 node_data +EXPORT_SYMBOL vmlinux 0x69b567ff vfs_dup_fs_context +EXPORT_SYMBOL vmlinux 0x69be7bd1 param_get_invbool +EXPORT_SYMBOL vmlinux 0x69c75635 __devm_request_region EXPORT_SYMBOL vmlinux 0x69dd3b5b crc32_le EXPORT_SYMBOL vmlinux 0x69de8757 vme_check_window -EXPORT_SYMBOL vmlinux 0x69e8ca4e __cgroup_bpf_run_filter_sock_ops -EXPORT_SYMBOL vmlinux 0x69eb2a1d xfrm_trans_queue -EXPORT_SYMBOL vmlinux 0x69ef79ff forget_cached_acl -EXPORT_SYMBOL vmlinux 0x69efe361 twl6040_set_bits -EXPORT_SYMBOL vmlinux 0x69f56762 scsi_add_host_with_dma -EXPORT_SYMBOL vmlinux 0x6a0330bf file_check_and_advance_wb_err +EXPORT_SYMBOL vmlinux 0x69df2554 iget_failed +EXPORT_SYMBOL vmlinux 0x69edf6b3 generic_parse_monolithic +EXPORT_SYMBOL vmlinux 0x69fcb427 send_sig_info EXPORT_SYMBOL vmlinux 0x6a03751f sgl_free_order EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree -EXPORT_SYMBOL vmlinux 0x6a0e5f55 submit_bio_wait -EXPORT_SYMBOL vmlinux 0x6a249ce3 key_instantiate_and_link -EXPORT_SYMBOL vmlinux 0x6a26ae6b pm860x_page_bulk_read -EXPORT_SYMBOL vmlinux 0x6a3fde22 skb_copy_and_hash_datagram_iter -EXPORT_SYMBOL vmlinux 0x6a5322f5 sk_mc_loop +EXPORT_SYMBOL vmlinux 0x6a09af96 jbd2_complete_transaction +EXPORT_SYMBOL vmlinux 0x6a0bc072 nf_log_packet +EXPORT_SYMBOL vmlinux 0x6a188c05 nlmsg_notify +EXPORT_SYMBOL vmlinux 0x6a1a23ad is_nd_dax +EXPORT_SYMBOL vmlinux 0x6a2e3302 tty_register_device +EXPORT_SYMBOL vmlinux 0x6a2e41e3 reuseport_select_sock +EXPORT_SYMBOL vmlinux 0x6a3a5d13 put_watch_queue +EXPORT_SYMBOL vmlinux 0x6a4c3499 __ip_options_compile +EXPORT_SYMBOL vmlinux 0x6a50fac6 bdi_register EXPORT_SYMBOL vmlinux 0x6a5cb5ee __get_free_pages EXPORT_SYMBOL vmlinux 0x6a5ecb18 unregister_module_notifier EXPORT_SYMBOL vmlinux 0x6a5fa363 sigprocmask -EXPORT_SYMBOL vmlinux 0x6a655565 generic_listxattr +EXPORT_SYMBOL vmlinux 0x6a620cb4 ip6_frag_next EXPORT_SYMBOL vmlinux 0x6a6e05bf kstrtou8 -EXPORT_SYMBOL vmlinux 0x6a7fe092 scsi_scan_target EXPORT_SYMBOL vmlinux 0x6a82d8f8 atomic_dec_and_mutex_lock -EXPORT_SYMBOL vmlinux 0x6a922fee ww_mutex_lock -EXPORT_SYMBOL vmlinux 0x6a9bf60c sock_no_sendpage_locked EXPORT_SYMBOL vmlinux 0x6aa11aa6 sgl_free_n_order -EXPORT_SYMBOL vmlinux 0x6aab3548 dm_mq_kick_requeue_list -EXPORT_SYMBOL vmlinux 0x6ade22e3 generic_write_end +EXPORT_SYMBOL vmlinux 0x6aa33a08 pm860x_page_reg_write +EXPORT_SYMBOL vmlinux 0x6abe6674 tcp_md5_hash_skb_data +EXPORT_SYMBOL vmlinux 0x6acef98d d_instantiate_anon +EXPORT_SYMBOL vmlinux 0x6ad37013 mntput +EXPORT_SYMBOL vmlinux 0x6ad83879 ethtool_op_get_ts_info EXPORT_SYMBOL vmlinux 0x6ade6454 trace_print_array_seq -EXPORT_SYMBOL vmlinux 0x6ae0d310 backlight_force_update -EXPORT_SYMBOL vmlinux 0x6ae8746d nexthop_bucket_set_hw_flags +EXPORT_SYMBOL vmlinux 0x6adf6b51 __pskb_pull_tail +EXPORT_SYMBOL vmlinux 0x6ae6530c __remove_inode_hash EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset -EXPORT_SYMBOL vmlinux 0x6afd7b44 find_inode_nowait +EXPORT_SYMBOL vmlinux 0x6b045b0b tcf_action_set_ctrlact EXPORT_SYMBOL vmlinux 0x6b10bee1 _copy_to_user -EXPORT_SYMBOL vmlinux 0x6b1ab9f0 blk_mq_delay_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x6b131a19 max8925_set_bits EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack +EXPORT_SYMBOL vmlinux 0x6b544aa1 __cgroup_bpf_run_filter_sock_addr EXPORT_SYMBOL vmlinux 0x6b55acd0 rtnl_lock_killable -EXPORT_SYMBOL vmlinux 0x6b736d65 skb_eth_push -EXPORT_SYMBOL vmlinux 0x6b7734f3 scsi_get_host_dev +EXPORT_SYMBOL vmlinux 0x6b651dc4 mr_fill_mroute +EXPORT_SYMBOL vmlinux 0x6b7b707d rproc_set_firmware EXPORT_SYMBOL vmlinux 0x6b853d06 ns_to_kernel_old_timeval EXPORT_SYMBOL vmlinux 0x6b8bf149 netif_receive_skb_list +EXPORT_SYMBOL vmlinux 0x6b9425cb mmc_wait_for_cmd EXPORT_SYMBOL vmlinux 0x6b9d1c95 security_req_classify_flow +EXPORT_SYMBOL vmlinux 0x6ba588c4 nvdimm_bus_lock EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev -EXPORT_SYMBOL vmlinux 0x6bcdbcf6 genphy_read_status_fixed -EXPORT_SYMBOL vmlinux 0x6bcf3c5b decrementer_clockevent EXPORT_SYMBOL vmlinux 0x6bdeab7f down_read_interruptible -EXPORT_SYMBOL vmlinux 0x6be3ad66 pci_dev_put -EXPORT_SYMBOL vmlinux 0x6bedd6dc serial8250_set_isa_configurator +EXPORT_SYMBOL vmlinux 0x6be1e047 tcp_initialize_rcv_mss EXPORT_SYMBOL vmlinux 0x6bf181c1 __tracepoint_kmem_cache_free EXPORT_SYMBOL vmlinux 0x6bf49262 _raw_write_unlock_bh EXPORT_SYMBOL vmlinux 0x6bf6c6d3 dma_fence_chain_init +EXPORT_SYMBOL vmlinux 0x6c12f875 netdev_class_create_file_ns EXPORT_SYMBOL vmlinux 0x6c28be5a vfio_info_add_capability +EXPORT_SYMBOL vmlinux 0x6c2ad067 inet_frag_kill +EXPORT_SYMBOL vmlinux 0x6c3824be noop_fsync +EXPORT_SYMBOL vmlinux 0x6c4ebb61 srp_start_tl_fail_timers EXPORT_SYMBOL vmlinux 0x6c5dae23 scsi_kmap_atomic_sg -EXPORT_SYMBOL vmlinux 0x6c607e02 mdiobus_write_nested +EXPORT_SYMBOL vmlinux 0x6c60053e of_device_register EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb -EXPORT_SYMBOL vmlinux 0x6c63a78d iw_handler_get_spy -EXPORT_SYMBOL vmlinux 0x6c77e05e xfrm6_input_addr EXPORT_SYMBOL vmlinux 0x6c7a0323 __tracepoint_kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0x6c8ae1ea del_gendisk -EXPORT_SYMBOL vmlinux 0x6c9f46b2 xfrm_init_replay +EXPORT_SYMBOL vmlinux 0x6c84090e inode_get_bytes +EXPORT_SYMBOL vmlinux 0x6c8ad93d simple_rename +EXPORT_SYMBOL vmlinux 0x6c90d9b6 pci_reenable_device +EXPORT_SYMBOL vmlinux 0x6c93a8f2 dev_set_allmulti +EXPORT_SYMBOL vmlinux 0x6c96a97c skb_checksum_setup +EXPORT_SYMBOL vmlinux 0x6c9cd21d input_open_device +EXPORT_SYMBOL vmlinux 0x6ca4a2e9 pagecache_write_begin EXPORT_SYMBOL vmlinux 0x6cb46525 netlbl_catmap_walk EXPORT_SYMBOL vmlinux 0x6cc09945 ioread32_rep -EXPORT_SYMBOL vmlinux 0x6cc52abb iter_file_splice_write -EXPORT_SYMBOL vmlinux 0x6cd294a3 ps2_cmd_aborted -EXPORT_SYMBOL vmlinux 0x6cd30240 ip_options_rcv_srr -EXPORT_SYMBOL vmlinux 0x6cd72565 pci_disable_device -EXPORT_SYMBOL vmlinux 0x6ceb38fd genphy_read_abilities +EXPORT_SYMBOL vmlinux 0x6cd1995f _copy_from_iter +EXPORT_SYMBOL vmlinux 0x6cd4dd82 tcp_shutdown EXPORT_SYMBOL vmlinux 0x6cf0d67d qe_get_num_of_snums -EXPORT_SYMBOL vmlinux 0x6cf96a43 rproc_shutdown -EXPORT_SYMBOL vmlinux 0x6d090b0a cookie_timestamp_decode -EXPORT_SYMBOL vmlinux 0x6d0b4d6a tty_port_alloc_xmit_buf -EXPORT_SYMBOL vmlinux 0x6d1a9407 sock_no_shutdown +EXPORT_SYMBOL vmlinux 0x6cf20064 tag_pages_for_writeback +EXPORT_SYMBOL vmlinux 0x6d00744d vme_init_bridge +EXPORT_SYMBOL vmlinux 0x6d03560e of_graph_get_remote_port +EXPORT_SYMBOL vmlinux 0x6d0b8139 block_write_end EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies -EXPORT_SYMBOL vmlinux 0x6d56adfa tcp_seq_stop +EXPORT_SYMBOL vmlinux 0x6d56c92f phy_attached_info_irq EXPORT_SYMBOL vmlinux 0x6d58f69e agp3_generic_sizes -EXPORT_SYMBOL vmlinux 0x6d59307a nexthop_set_hw_flags EXPORT_SYMBOL vmlinux 0x6d7c7dcc bitmap_cut -EXPORT_SYMBOL vmlinux 0x6d9c7237 try_lookup_one_len -EXPORT_SYMBOL vmlinux 0x6dac7c53 ipv6_push_frag_opts -EXPORT_SYMBOL vmlinux 0x6db09eb4 nf_log_unbind_pf -EXPORT_SYMBOL vmlinux 0x6db8d99b filemap_invalidate_lock_two -EXPORT_SYMBOL vmlinux 0x6db95fee splice_direct_to_actor +EXPORT_SYMBOL vmlinux 0x6d7c9718 agp_alloc_page_array +EXPORT_SYMBOL vmlinux 0x6d7eb5d6 _dev_printk +EXPORT_SYMBOL vmlinux 0x6d80da92 fb_find_mode +EXPORT_SYMBOL vmlinux 0x6d81ae57 dcache_dir_open +EXPORT_SYMBOL vmlinux 0x6d87eb8f i2c_smbus_read_i2c_block_data_or_emulated +EXPORT_SYMBOL vmlinux 0x6d8dee9f __mark_inode_dirty +EXPORT_SYMBOL vmlinux 0x6d8fc311 from_kprojid +EXPORT_SYMBOL vmlinux 0x6d917579 xfrm_spd_getinfo +EXPORT_SYMBOL vmlinux 0x6da2b771 netlink_net_capable +EXPORT_SYMBOL vmlinux 0x6da96c9a udplite_prot +EXPORT_SYMBOL vmlinux 0x6dacd189 pci_fixup_cardbus +EXPORT_SYMBOL vmlinux 0x6db71e05 agp_generic_destroy_page +EXPORT_SYMBOL vmlinux 0x6db73b75 vfs_fsync_range +EXPORT_SYMBOL vmlinux 0x6dbaa2c3 unlock_new_inode EXPORT_SYMBOL vmlinux 0x6dcf857f uuid_null -EXPORT_SYMBOL vmlinux 0x6ddf07f3 register_mii_timestamper +EXPORT_SYMBOL vmlinux 0x6dd54480 nvdimm_namespace_locked +EXPORT_SYMBOL vmlinux 0x6dda0836 blk_rq_append_bio EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction -EXPORT_SYMBOL vmlinux 0x6dfebb1b pcim_iomap_regions -EXPORT_SYMBOL vmlinux 0x6e0631f7 __get_hash_from_flowi6 -EXPORT_SYMBOL vmlinux 0x6e0a6f00 xfrm_policy_bysel_ctx -EXPORT_SYMBOL vmlinux 0x6e189d64 kthread_blkcg -EXPORT_SYMBOL vmlinux 0x6e34c398 phy_driver_unregister -EXPORT_SYMBOL vmlinux 0x6e512eb5 dst_destroy +EXPORT_SYMBOL vmlinux 0x6df8b9f6 fscrypt_decrypt_bio +EXPORT_SYMBOL vmlinux 0x6dffd1c5 follow_down_one +EXPORT_SYMBOL vmlinux 0x6e134c9f mmc_can_gpio_ro +EXPORT_SYMBOL vmlinux 0x6e3731f6 devfreq_update_target +EXPORT_SYMBOL vmlinux 0x6e4bcc71 netdev_err EXPORT_SYMBOL vmlinux 0x6e5b8651 xz_dec_run +EXPORT_SYMBOL vmlinux 0x6e5f0412 mmc_can_discard EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock -EXPORT_SYMBOL vmlinux 0x6e7abf06 input_reset_device -EXPORT_SYMBOL vmlinux 0x6e8110a7 of_match_node +EXPORT_SYMBOL vmlinux 0x6e755c3f inet6_release +EXPORT_SYMBOL vmlinux 0x6e78c91e rt_dst_alloc +EXPORT_SYMBOL vmlinux 0x6e79df46 __module_get EXPORT_SYMBOL vmlinux 0x6e9a448d __pte_frag_nr EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put -EXPORT_SYMBOL vmlinux 0x6ea573dd tty_name EXPORT_SYMBOL vmlinux 0x6ea9363b force_sig -EXPORT_SYMBOL vmlinux 0x6eb4c219 qdisc_reset -EXPORT_SYMBOL vmlinux 0x6ebef31f netpoll_setup -EXPORT_SYMBOL vmlinux 0x6ebf6850 inet_bind -EXPORT_SYMBOL vmlinux 0x6ec682f6 of_graph_get_remote_port_parent -EXPORT_SYMBOL vmlinux 0x6ed82393 pci_alloc_dev -EXPORT_SYMBOL vmlinux 0x6efd5ae9 inc_nlink +EXPORT_SYMBOL vmlinux 0x6ec3c46f __mod_node_page_state +EXPORT_SYMBOL vmlinux 0x6eecf2ab __napi_schedule_irqoff +EXPORT_SYMBOL vmlinux 0x6ef88643 kill_block_super +EXPORT_SYMBOL vmlinux 0x6ef8a68c touchscreen_report_pos +EXPORT_SYMBOL vmlinux 0x6f003c87 user_revoke EXPORT_SYMBOL vmlinux 0x6f08b1c6 mempool_exit -EXPORT_SYMBOL vmlinux 0x6f094028 d_instantiate_anon -EXPORT_SYMBOL vmlinux 0x6f1206c8 agp_generic_alloc_page +EXPORT_SYMBOL vmlinux 0x6f0bc2b7 cpufreq_generic_suspend EXPORT_SYMBOL vmlinux 0x6f1283ee idr_for_each -EXPORT_SYMBOL vmlinux 0x6f226cf4 xsk_tx_completed -EXPORT_SYMBOL vmlinux 0x6f26b0b2 netlink_broadcast_filtered -EXPORT_SYMBOL vmlinux 0x6f592735 pm860x_set_bits -EXPORT_SYMBOL vmlinux 0x6f7ec5db scsi_report_opcode +EXPORT_SYMBOL vmlinux 0x6f1c3044 dqget +EXPORT_SYMBOL vmlinux 0x6f31d734 security_socket_getpeersec_dgram +EXPORT_SYMBOL vmlinux 0x6f39e46f xfrm_lookup_with_ifid +EXPORT_SYMBOL vmlinux 0x6f439248 set_capacity +EXPORT_SYMBOL vmlinux 0x6f593f0a inet_rtx_syn_ack +EXPORT_SYMBOL vmlinux 0x6f59e3a2 cookie_ecn_ok +EXPORT_SYMBOL vmlinux 0x6f5a349a pcie_get_width_cap +EXPORT_SYMBOL vmlinux 0x6f5b999f unregister_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x6f776263 vfs_create_mount +EXPORT_SYMBOL vmlinux 0x6f7e0288 set_bh_page EXPORT_SYMBOL vmlinux 0x6f8f674a bpf_dispatcher_xdp_func -EXPORT_SYMBOL vmlinux 0x6f906ce8 i2c_clients_command -EXPORT_SYMBOL vmlinux 0x6fb06b2a kobject_set_name +EXPORT_SYMBOL vmlinux 0x6f902b14 can_nice +EXPORT_SYMBOL vmlinux 0x6f941f23 sock_no_listen EXPORT_SYMBOL vmlinux 0x6fb49676 queue_rcu_work -EXPORT_SYMBOL vmlinux 0x6fbc1daf mdio_driver_register +EXPORT_SYMBOL vmlinux 0x6fc10f5e load_nls_default +EXPORT_SYMBOL vmlinux 0x6fc2f335 in6_dev_finish_destroy EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog -EXPORT_SYMBOL vmlinux 0x6fd4769a tcf_classify EXPORT_SYMBOL vmlinux 0x6fd9c35a __clzdi2 -EXPORT_SYMBOL vmlinux 0x6fea64ba jbd2_journal_try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x6ff41b59 ether_setup +EXPORT_SYMBOL vmlinux 0x6ffeb3de dcb_ieee_getapp_default_prio_mask EXPORT_SYMBOL vmlinux 0x70002fe8 siphash_1u32 -EXPORT_SYMBOL vmlinux 0x700522b6 uart_register_driver -EXPORT_SYMBOL vmlinux 0x70206874 giveup_altivec -EXPORT_SYMBOL vmlinux 0x702272c9 blk_get_queue +EXPORT_SYMBOL vmlinux 0x700d3ba9 sock_set_rcvbuf +EXPORT_SYMBOL vmlinux 0x7017dd4d padata_do_serial EXPORT_SYMBOL vmlinux 0x704115b3 qe_usb_clock_set -EXPORT_SYMBOL vmlinux 0x70495fd6 __remove_inode_hash +EXPORT_SYMBOL vmlinux 0x7042a2a3 dquot_writeback_dquots +EXPORT_SYMBOL vmlinux 0x70492d64 udp_sendmsg +EXPORT_SYMBOL vmlinux 0x704e582c input_free_device EXPORT_SYMBOL vmlinux 0x7054a3e4 request_dma -EXPORT_SYMBOL vmlinux 0x705e6108 unload_nls -EXPORT_SYMBOL vmlinux 0x70912ef6 simple_transaction_read -EXPORT_SYMBOL vmlinux 0x70a46e57 i2c_register_driver -EXPORT_SYMBOL vmlinux 0x70b130bf iov_iter_discard -EXPORT_SYMBOL vmlinux 0x70bc2531 is_nvdimm_bus_locked -EXPORT_SYMBOL vmlinux 0x70c5aacd shrink_dcache_parent -EXPORT_SYMBOL vmlinux 0x70c929dd fwnode_phy_find_device -EXPORT_SYMBOL vmlinux 0x70d35b10 __skb_get_hash -EXPORT_SYMBOL vmlinux 0x70d73641 tcp_rcv_established -EXPORT_SYMBOL vmlinux 0x70da04a3 phy_write_paged -EXPORT_SYMBOL vmlinux 0x70fa3af9 tty_port_raise_dtr_rts -EXPORT_SYMBOL vmlinux 0x70fce3ab skb_checksum_trimmed -EXPORT_SYMBOL vmlinux 0x71026b92 agp_enable +EXPORT_SYMBOL vmlinux 0x705bb8d1 dma_async_device_register +EXPORT_SYMBOL vmlinux 0x70744794 dev_remove_offload +EXPORT_SYMBOL vmlinux 0x70a85860 seq_puts +EXPORT_SYMBOL vmlinux 0x70aea6c4 write_one_page +EXPORT_SYMBOL vmlinux 0x70c1dffe mipi_dsi_turn_on_peripheral +EXPORT_SYMBOL vmlinux 0x70c328e9 t10_pi_type3_ip +EXPORT_SYMBOL vmlinux 0x70c37b6f neigh_destroy +EXPORT_SYMBOL vmlinux 0x70cfdd7a ppp_output_wakeup +EXPORT_SYMBOL vmlinux 0x70d93753 pci_scan_root_bus_bridge +EXPORT_SYMBOL vmlinux 0x70dfc239 kiocb_set_cancel_fn +EXPORT_SYMBOL vmlinux 0x70efad4f genphy_write_mmd_unsupported +EXPORT_SYMBOL vmlinux 0x710179e4 filemap_check_errors +EXPORT_SYMBOL vmlinux 0x71054585 textsearch_register +EXPORT_SYMBOL vmlinux 0x7108be20 get_phy_device EXPORT_SYMBOL vmlinux 0x710929e9 wait_for_completion_killable_timeout -EXPORT_SYMBOL vmlinux 0x711cceae pci_pme_capable -EXPORT_SYMBOL vmlinux 0x71295132 ps2_drain +EXPORT_SYMBOL vmlinux 0x711d66bd md_handle_request EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc -EXPORT_SYMBOL vmlinux 0x71303f40 udp_push_pending_frames EXPORT_SYMBOL vmlinux 0x7131bf58 tty_termios_hw_change -EXPORT_SYMBOL vmlinux 0x71351e98 filemap_fdatawrite_wbc -EXPORT_SYMBOL vmlinux 0x71360bd8 d_prune_aliases EXPORT_SYMBOL vmlinux 0x71380ac8 cpumask_next_wrap -EXPORT_SYMBOL vmlinux 0x71390567 fib_notifier_ops_unregister -EXPORT_SYMBOL vmlinux 0x714049f9 blk_queue_flag_set -EXPORT_SYMBOL vmlinux 0x7150e684 inode_init_always +EXPORT_SYMBOL vmlinux 0x713c57a9 of_device_is_compatible +EXPORT_SYMBOL vmlinux 0x713d298d tcp_peek_len +EXPORT_SYMBOL vmlinux 0x7151301c md_write_inc EXPORT_SYMBOL vmlinux 0x715a5ed0 vprintk -EXPORT_SYMBOL vmlinux 0x7161e249 posix_acl_chmod -EXPORT_SYMBOL vmlinux 0x716436c7 get_cached_acl_rcu +EXPORT_SYMBOL vmlinux 0x716dcbeb ipv6_mc_check_mld EXPORT_SYMBOL vmlinux 0x7171121c overflowgid +EXPORT_SYMBOL vmlinux 0x7173f01f xsk_set_tx_need_wakeup +EXPORT_SYMBOL vmlinux 0x717acc48 pm_vt_switch_unregister +EXPORT_SYMBOL vmlinux 0x717c93dd km_query +EXPORT_SYMBOL vmlinux 0x7180e95f unpin_user_pages_dirty_lock EXPORT_SYMBOL vmlinux 0x7186f151 posix_acl_to_xattr -EXPORT_SYMBOL vmlinux 0x7195b90e configfs_unregister_subsystem +EXPORT_SYMBOL vmlinux 0x718cc086 dst_release_immediate EXPORT_SYMBOL vmlinux 0x7199f832 cpumask_any_and_distribute -EXPORT_SYMBOL vmlinux 0x719ecf9c __skb_checksum_complete EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy -EXPORT_SYMBOL vmlinux 0x71bcb14a nd_device_unregister -EXPORT_SYMBOL vmlinux 0x71c7d1b0 _dev_info -EXPORT_SYMBOL vmlinux 0x71de4003 netpoll_poll_disable -EXPORT_SYMBOL vmlinux 0x71ee0181 to_nd_pfn -EXPORT_SYMBOL vmlinux 0x71f9389e simple_release_fs -EXPORT_SYMBOL vmlinux 0x72030e6e pci_back_from_sleep +EXPORT_SYMBOL vmlinux 0x71d7459a vfs_tmpfile +EXPORT_SYMBOL vmlinux 0x71e10ee9 backlight_device_get_by_type +EXPORT_SYMBOL vmlinux 0x71fce6c6 dcb_setapp +EXPORT_SYMBOL vmlinux 0x720743db ip6tun_encaps EXPORT_SYMBOL vmlinux 0x720a27a7 __register_blkdev -EXPORT_SYMBOL vmlinux 0x72154ce8 gnet_stats_copy_queue -EXPORT_SYMBOL vmlinux 0x72192c0d ipv6_setsockopt -EXPORT_SYMBOL vmlinux 0x72317805 of_graph_get_remote_node -EXPORT_SYMBOL vmlinux 0x72347b21 pnv_phb_to_cxl_mode +EXPORT_SYMBOL vmlinux 0x72153bd9 migrate_page_copy +EXPORT_SYMBOL vmlinux 0x721e9afd __vfs_removexattr +EXPORT_SYMBOL vmlinux 0x722905a8 unmap_mapping_range +EXPORT_SYMBOL vmlinux 0x722b98da __udp_disconnect +EXPORT_SYMBOL vmlinux 0x7234948b end_buffer_write_sync EXPORT_SYMBOL vmlinux 0x724ddac7 utf8version_is_supported -EXPORT_SYMBOL vmlinux 0x7251148a kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0x725ecc4d tcf_exts_dump EXPORT_SYMBOL vmlinux 0x72608c0e do_uaccess_flush -EXPORT_SYMBOL vmlinux 0x726b4c15 dev_uc_add_excl -EXPORT_SYMBOL vmlinux 0x726dd53e netdev_state_change -EXPORT_SYMBOL vmlinux 0x729cfed0 mfd_remove_devices_late +EXPORT_SYMBOL vmlinux 0x72651a9f skb_copy_datagram_iter +EXPORT_SYMBOL vmlinux 0x7284360a xfrm_policy_insert +EXPORT_SYMBOL vmlinux 0x7288c92a scsi_block_when_processing_errors EXPORT_SYMBOL vmlinux 0x72a50966 ucc_fast_disable -EXPORT_SYMBOL vmlinux 0x72ab9e50 find_get_pages_contig EXPORT_SYMBOL vmlinux 0x72b243d4 free_dma -EXPORT_SYMBOL vmlinux 0x72b49f1c sock_no_bind +EXPORT_SYMBOL vmlinux 0x72b570b3 xfrm_dst_ifdown EXPORT_SYMBOL vmlinux 0x72b9d287 default_grn -EXPORT_SYMBOL vmlinux 0x72c28d3c devm_of_clk_del_provider +EXPORT_SYMBOL vmlinux 0x72bd9a2a rproc_coredump_add_custom_segment EXPORT_SYMBOL vmlinux 0x72c98139 __arch_hweight64 -EXPORT_SYMBOL vmlinux 0x72d04ecf skb_find_text -EXPORT_SYMBOL vmlinux 0x72d727ff devm_of_iomap -EXPORT_SYMBOL vmlinux 0x72e7c41c devm_clk_put +EXPORT_SYMBOL vmlinux 0x72cd5711 path_put +EXPORT_SYMBOL vmlinux 0x72cff61c vm_mmap EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type -EXPORT_SYMBOL vmlinux 0x72fff72a dcb_ieee_getapp_prio_dscp_mask_map +EXPORT_SYMBOL vmlinux 0x7308be0f genphy_check_and_restart_aneg +EXPORT_SYMBOL vmlinux 0x730f2bac inet6_offloads EXPORT_SYMBOL vmlinux 0x73109446 down_interruptible +EXPORT_SYMBOL vmlinux 0x7313c6e7 import_single_range +EXPORT_SYMBOL vmlinux 0x7314753e i2c_smbus_read_byte EXPORT_SYMBOL vmlinux 0x7315a4e9 twl6030_mmc_card_detect_config +EXPORT_SYMBOL vmlinux 0x7317355d pci_enable_device_io EXPORT_SYMBOL vmlinux 0x731a747a pci_io_base -EXPORT_SYMBOL vmlinux 0x731e7113 giveup_all -EXPORT_SYMBOL vmlinux 0x73213a09 dev_get_by_name_rcu -EXPORT_SYMBOL vmlinux 0x73270b06 mdiobus_unregister -EXPORT_SYMBOL vmlinux 0x732a4fdc inet_addr_type_dev_table EXPORT_SYMBOL vmlinux 0x732dd326 groups_free -EXPORT_SYMBOL vmlinux 0x7368d369 rproc_elf_get_boot_addr -EXPORT_SYMBOL vmlinux 0x736e4a54 cfb_imageblit +EXPORT_SYMBOL vmlinux 0x73338807 fwnode_irq_get +EXPORT_SYMBOL vmlinux 0x73375f46 xsk_tx_peek_desc +EXPORT_SYMBOL vmlinux 0x73429b9d phy_resume +EXPORT_SYMBOL vmlinux 0x7343539a devm_memunmap +EXPORT_SYMBOL vmlinux 0x73499a98 scsi_host_busy +EXPORT_SYMBOL vmlinux 0x736e2a0d devm_memremap +EXPORT_SYMBOL vmlinux 0x73790965 ipv6_dev_mc_dec +EXPORT_SYMBOL vmlinux 0x737b0a8a netlink_capable EXPORT_SYMBOL vmlinux 0x7380dffa argv_split -EXPORT_SYMBOL vmlinux 0x73983a4d serio_interrupt +EXPORT_SYMBOL vmlinux 0x7381baf6 __dquot_free_space EXPORT_SYMBOL vmlinux 0x73998efa cpm_muram_free_addr EXPORT_SYMBOL vmlinux 0x739fd00f __SCK__tp_func_module_get -EXPORT_SYMBOL vmlinux 0x73a05dd1 xfrm6_protocol_deregister +EXPORT_SYMBOL vmlinux 0x73a2b761 ethtool_op_get_link EXPORT_SYMBOL vmlinux 0x73abb180 alloc_contig_range -EXPORT_SYMBOL vmlinux 0x73adf2ab dev_open -EXPORT_SYMBOL vmlinux 0x73cb5c3d fb_firmware_edid -EXPORT_SYMBOL vmlinux 0x73cda04b __ps2_command -EXPORT_SYMBOL vmlinux 0x73dca1b9 of_node_put -EXPORT_SYMBOL vmlinux 0x73e504b0 lock_sock_nested -EXPORT_SYMBOL vmlinux 0x740125c1 blk_mq_queue_stopped +EXPORT_SYMBOL vmlinux 0x73ad0dbb flow_rule_match_enc_control +EXPORT_SYMBOL vmlinux 0x73c6ea5a pfifo_fast_ops +EXPORT_SYMBOL vmlinux 0x73d1fff0 blk_mq_start_hw_queue +EXPORT_SYMBOL vmlinux 0x73fa41d5 tcp_splice_read +EXPORT_SYMBOL vmlinux 0x740a38d4 eth_mac_addr EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace EXPORT_SYMBOL vmlinux 0x7412ed5b kvfree_sensitive +EXPORT_SYMBOL vmlinux 0x741e02c8 __sock_queue_rcv_skb EXPORT_SYMBOL vmlinux 0x742578a5 wait_for_random_bytes EXPORT_SYMBOL vmlinux 0x7429e20c kstrtos8 -EXPORT_SYMBOL vmlinux 0x743166c7 __scm_destroy EXPORT_SYMBOL vmlinux 0x7439fd86 radix_tree_lookup EXPORT_SYMBOL vmlinux 0x7453d3e8 security_release_secctx -EXPORT_SYMBOL vmlinux 0x74756585 md_write_inc +EXPORT_SYMBOL vmlinux 0x746ace9b kernel_sendmsg_locked +EXPORT_SYMBOL vmlinux 0x7475eb1e netif_stacked_transfer_operstate EXPORT_SYMBOL vmlinux 0x7483dc59 pci_dev_present EXPORT_SYMBOL vmlinux 0x748842e0 prepare_to_wait_exclusive -EXPORT_SYMBOL vmlinux 0x7491a533 nf_log_set -EXPORT_SYMBOL vmlinux 0x74983f53 path_has_submounts -EXPORT_SYMBOL vmlinux 0x749dbd64 fput -EXPORT_SYMBOL vmlinux 0x74a31139 neigh_update -EXPORT_SYMBOL vmlinux 0x74a97e72 input_close_device +EXPORT_SYMBOL vmlinux 0x7490e9e2 xfrm4_protocol_deregister +EXPORT_SYMBOL vmlinux 0x74a3ef95 register_quota_format +EXPORT_SYMBOL vmlinux 0x74a4a198 blk_set_queue_depth +EXPORT_SYMBOL vmlinux 0x74bdba02 nobh_writepage +EXPORT_SYMBOL vmlinux 0x74bf9171 __serio_register_port EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 EXPORT_SYMBOL vmlinux 0x74c18454 gen_replace_estimator -EXPORT_SYMBOL vmlinux 0x74c4e86b get_vm_area -EXPORT_SYMBOL vmlinux 0x74e04f1b ip6_dst_alloc -EXPORT_SYMBOL vmlinux 0x74e37a32 _dev_printk +EXPORT_SYMBOL vmlinux 0x74ccacea fib6_info_hw_flags_set +EXPORT_SYMBOL vmlinux 0x74d17d24 __skb_pad +EXPORT_SYMBOL vmlinux 0x74e37821 __generic_file_write_iter EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable EXPORT_SYMBOL vmlinux 0x74f1cd69 __cpu_present_mask -EXPORT_SYMBOL vmlinux 0x74f9b906 redirty_page_for_writepage -EXPORT_SYMBOL vmlinux 0x7516488a of_n_size_cells -EXPORT_SYMBOL vmlinux 0x7520d50e simple_rmdir -EXPORT_SYMBOL vmlinux 0x75376529 vfs_getattr_nosec +EXPORT_SYMBOL vmlinux 0x74f62250 neigh_for_each +EXPORT_SYMBOL vmlinux 0x75016b67 __skb_wait_for_more_packets +EXPORT_SYMBOL vmlinux 0x75033f26 gnet_stats_finish_copy +EXPORT_SYMBOL vmlinux 0x751a92e6 __skb_recv_udp +EXPORT_SYMBOL vmlinux 0x751d7630 genl_notify +EXPORT_SYMBOL vmlinux 0x7532408a fb_get_buffer_offset +EXPORT_SYMBOL vmlinux 0x753279de vfs_parse_fs_string EXPORT_SYMBOL vmlinux 0x7538b132 agp_off -EXPORT_SYMBOL vmlinux 0x754de007 pci_read_vpd -EXPORT_SYMBOL vmlinux 0x755afa4c input_set_timestamp -EXPORT_SYMBOL vmlinux 0x7567cfcd security_old_inode_init_security -EXPORT_SYMBOL vmlinux 0x75779a85 filemap_check_errors -EXPORT_SYMBOL vmlinux 0x757d5960 module_layout -EXPORT_SYMBOL vmlinux 0x75808536 proc_create_single_data +EXPORT_SYMBOL vmlinux 0x75557bd2 inc_node_page_state +EXPORT_SYMBOL vmlinux 0x7556b474 tcp_v4_conn_request +EXPORT_SYMBOL vmlinux 0x755c4a70 skb_store_bits +EXPORT_SYMBOL vmlinux 0x7581a7c0 skb_tx_error +EXPORT_SYMBOL vmlinux 0x758e49e0 skb_dequeue +EXPORT_SYMBOL vmlinux 0x75a7b2fc sync_filesystem EXPORT_SYMBOL vmlinux 0x75aa6ca1 __kernel_virt_start EXPORT_SYMBOL vmlinux 0x75bda77a seq_hlist_next -EXPORT_SYMBOL vmlinux 0x75c64e60 fsl_lbc_ctrl_dev +EXPORT_SYMBOL vmlinux 0x75c5ead1 fqdir_init EXPORT_SYMBOL vmlinux 0x75d0deb9 nsecs_to_jiffies64 +EXPORT_SYMBOL vmlinux 0x75d2b35a sock_no_mmap EXPORT_SYMBOL vmlinux 0x75d499dd vmcore_add_device_dump -EXPORT_SYMBOL vmlinux 0x75d68826 mr_vif_seq_next -EXPORT_SYMBOL vmlinux 0x75ea5a9d bio_integrity_alloc -EXPORT_SYMBOL vmlinux 0x7600fa00 netlink_set_err +EXPORT_SYMBOL vmlinux 0x75dd02b2 pci_set_mwi +EXPORT_SYMBOL vmlinux 0x75dd4efe inet_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0x75f168ca __traceiter_spi_transfer_start +EXPORT_SYMBOL vmlinux 0x75f42311 genl_unregister_family +EXPORT_SYMBOL vmlinux 0x75ff095d of_parse_phandle_with_fixed_args EXPORT_SYMBOL vmlinux 0x760a0f4f yield -EXPORT_SYMBOL vmlinux 0x7617da37 set_blocksize +EXPORT_SYMBOL vmlinux 0x76101ffe __cgroup_bpf_run_filter_sock_ops EXPORT_SYMBOL vmlinux 0x7618af39 hdmi_infoframe_check -EXPORT_SYMBOL vmlinux 0x7618d4e3 ip_ct_attach -EXPORT_SYMBOL vmlinux 0x7621e7c4 dev_uc_del +EXPORT_SYMBOL vmlinux 0x761b54b5 inode_set_bytes EXPORT_SYMBOL vmlinux 0x7624249e dim_park_tired -EXPORT_SYMBOL vmlinux 0x763a1e06 of_platform_bus_probe +EXPORT_SYMBOL vmlinux 0x76312326 md_cluster_ops +EXPORT_SYMBOL vmlinux 0x76349be0 __dev_get_by_index EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq -EXPORT_SYMBOL vmlinux 0x765330c5 module_refcount +EXPORT_SYMBOL vmlinux 0x76523281 param_set_bool +EXPORT_SYMBOL vmlinux 0x765a9a7b dev_add_pack EXPORT_SYMBOL vmlinux 0x765ff474 crc_t10dif_generic -EXPORT_SYMBOL vmlinux 0x76600b6d serio_rescan -EXPORT_SYMBOL vmlinux 0x7665fb8a md_bitmap_cond_end_sync EXPORT_SYMBOL vmlinux 0x766a0927 mempool_alloc_pages -EXPORT_SYMBOL vmlinux 0x766b1fb4 to_nd_dax -EXPORT_SYMBOL vmlinux 0x766f12c1 __dynamic_dev_dbg -EXPORT_SYMBOL vmlinux 0x769c8587 alloc_netdev_mqs +EXPORT_SYMBOL vmlinux 0x76813d92 new_inode +EXPORT_SYMBOL vmlinux 0x76919e76 ww_mutex_unlock +EXPORT_SYMBOL vmlinux 0x769ed6a5 blk_post_runtime_resume EXPORT_SYMBOL vmlinux 0x769f6e64 errseq_check -EXPORT_SYMBOL vmlinux 0x76a57c8e rproc_alloc -EXPORT_SYMBOL vmlinux 0x76abdce4 tc_setup_flow_action -EXPORT_SYMBOL vmlinux 0x76af0ae6 xfrm_policy_walk -EXPORT_SYMBOL vmlinux 0x76b2caae dev_change_proto_down_reason -EXPORT_SYMBOL vmlinux 0x76c97db7 rproc_put -EXPORT_SYMBOL vmlinux 0x76d0df0c of_get_next_child +EXPORT_SYMBOL vmlinux 0x76a23999 call_netdevice_notifiers +EXPORT_SYMBOL vmlinux 0x76bf45c5 radix__local_flush_tlb_page EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode -EXPORT_SYMBOL vmlinux 0x77071dd8 nf_ct_get_tuple_skb -EXPORT_SYMBOL vmlinux 0x77192838 qdisc_watchdog_init -EXPORT_SYMBOL vmlinux 0x77196fd8 logfc +EXPORT_SYMBOL vmlinux 0x7714b57f tcf_action_update_stats EXPORT_SYMBOL vmlinux 0x77234d37 downgrade_write +EXPORT_SYMBOL vmlinux 0x77264483 iterate_dir +EXPORT_SYMBOL vmlinux 0x772a373d bio_integrity_clone EXPORT_SYMBOL vmlinux 0x7732159c free_irq_cpu_rmap -EXPORT_SYMBOL vmlinux 0x77346488 seq_release EXPORT_SYMBOL vmlinux 0x77358855 iomem_resource EXPORT_SYMBOL vmlinux 0x773fa409 __kfifo_dma_in_finish_r -EXPORT_SYMBOL vmlinux 0x77508e82 blk_mq_free_tag_set -EXPORT_SYMBOL vmlinux 0x775a1990 ip_output -EXPORT_SYMBOL vmlinux 0x775e2cc0 reuseport_alloc -EXPORT_SYMBOL vmlinux 0x7763a47b tty_register_driver -EXPORT_SYMBOL vmlinux 0x7777eb53 edac_mc_find +EXPORT_SYMBOL vmlinux 0x7745e6b0 pldmfw_flash_image +EXPORT_SYMBOL vmlinux 0x774653e6 simple_rmdir +EXPORT_SYMBOL vmlinux 0x77468978 serial8250_set_isa_configurator +EXPORT_SYMBOL vmlinux 0x775c69e9 dev_close +EXPORT_SYMBOL vmlinux 0x777e56cd free_cgroup_ns EXPORT_SYMBOL vmlinux 0x77808a48 vm_event_states EXPORT_SYMBOL vmlinux 0x7791193f icst525_s2div -EXPORT_SYMBOL vmlinux 0x779ef37e mpage_readpage +EXPORT_SYMBOL vmlinux 0x77945b35 tcp_stream_memory_free +EXPORT_SYMBOL vmlinux 0x77b1bf4d capable_wrt_inode_uidgid +EXPORT_SYMBOL vmlinux 0x77ba7225 d_alloc EXPORT_SYMBOL vmlinux 0x77bc13a0 strim -EXPORT_SYMBOL vmlinux 0x77d3ab30 discard_new_inode -EXPORT_SYMBOL vmlinux 0x77d84b91 jbd2_journal_extend -EXPORT_SYMBOL vmlinux 0x77e188a3 __block_write_full_page +EXPORT_SYMBOL vmlinux 0x77ca39f7 ethtool_get_phc_vclocks +EXPORT_SYMBOL vmlinux 0x77e73f4d md_set_array_sectors EXPORT_SYMBOL vmlinux 0x77e9eb37 aes_encrypt -EXPORT_SYMBOL vmlinux 0x77fb39ee mmc_can_gpio_ro EXPORT_SYMBOL vmlinux 0x77fee50d register_sysctl_table EXPORT_SYMBOL vmlinux 0x7807f0f8 schedule_timeout_idle -EXPORT_SYMBOL vmlinux 0x78141474 flow_rule_match_meta -EXPORT_SYMBOL vmlinux 0x7816acd7 phy_drivers_unregister +EXPORT_SYMBOL vmlinux 0x7809eb62 udp_poll +EXPORT_SYMBOL vmlinux 0x7814981f inet_dgram_connect EXPORT_SYMBOL vmlinux 0x7824cd9b neigh_proc_dointvec_ms_jiffies -EXPORT_SYMBOL vmlinux 0x7827d5d9 pci_get_slot -EXPORT_SYMBOL vmlinux 0x782abc51 dquot_file_open -EXPORT_SYMBOL vmlinux 0x782c9e39 xfrm_state_insert -EXPORT_SYMBOL vmlinux 0x7831c910 config_item_set_name +EXPORT_SYMBOL vmlinux 0x7827ad3b ppp_register_compressor EXPORT_SYMBOL vmlinux 0x7834defd vfio_group_unpin_pages -EXPORT_SYMBOL vmlinux 0x78390c3c agp_alloc_bridge EXPORT_SYMBOL vmlinux 0x7846af3e __kfifo_len_r -EXPORT_SYMBOL vmlinux 0x7847f6d1 kobject_get -EXPORT_SYMBOL vmlinux 0x7850cdfd qdisc_watchdog_init_clockid -EXPORT_SYMBOL vmlinux 0x78615f0f flow_block_cb_setup_simple -EXPORT_SYMBOL vmlinux 0x7863ad7c vfs_llseek -EXPORT_SYMBOL vmlinux 0x787db60c iget_locked +EXPORT_SYMBOL vmlinux 0x784a129e pci_write_config_dword +EXPORT_SYMBOL vmlinux 0x78801c47 tty_unregister_ldisc EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback EXPORT_SYMBOL vmlinux 0x78851d2f _outsb -EXPORT_SYMBOL vmlinux 0x788b0bac mfd_add_devices -EXPORT_SYMBOL vmlinux 0x789590d1 block_truncate_page -EXPORT_SYMBOL vmlinux 0x789942d5 xfrm_lookup_with_ifid EXPORT_SYMBOL vmlinux 0x789affb1 frontswap_tmem_exclusive_gets EXPORT_SYMBOL vmlinux 0x78a16f48 aes_decrypt +EXPORT_SYMBOL vmlinux 0x78a2c96e get_watch_queue EXPORT_SYMBOL vmlinux 0x78a9e905 _numa_mem_ -EXPORT_SYMBOL vmlinux 0x78b0619b __skb_recv_udp +EXPORT_SYMBOL vmlinux 0x78b5fc14 dcbnl_cee_notify +EXPORT_SYMBOL vmlinux 0x78b79bb0 try_lookup_one_len EXPORT_SYMBOL vmlinux 0x78b887ed vsprintf -EXPORT_SYMBOL vmlinux 0x78b9fa48 register_tcf_proto_ops -EXPORT_SYMBOL vmlinux 0x78bd39af pci_dev_get -EXPORT_SYMBOL vmlinux 0x78d8720e xfrm_parse_spi +EXPORT_SYMBOL vmlinux 0x78bf3f52 is_nvdimm_bus_locked +EXPORT_SYMBOL vmlinux 0x78db1aae netdev_class_remove_file_ns EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices -EXPORT_SYMBOL vmlinux 0x78f22f66 of_root -EXPORT_SYMBOL vmlinux 0x78fbb924 clear_page_dirty_for_io +EXPORT_SYMBOL vmlinux 0x78f60295 sync_mapping_buffers EXPORT_SYMBOL vmlinux 0x790bafd4 blk_stack_limits -EXPORT_SYMBOL vmlinux 0x792bd1f0 fuse_dequeue_forget -EXPORT_SYMBOL vmlinux 0x793fc55c mipi_dsi_dcs_read -EXPORT_SYMBOL vmlinux 0x79468547 udp_seq_next -EXPORT_SYMBOL vmlinux 0x79514dd1 jbd2_journal_set_features +EXPORT_SYMBOL vmlinux 0x7911f999 netdev_bind_sb_channel_queue +EXPORT_SYMBOL vmlinux 0x7912b5a8 inet_csk_reset_keepalive_timer +EXPORT_SYMBOL vmlinux 0x7927ec8a page_pool_put_page +EXPORT_SYMBOL vmlinux 0x793ce704 of_find_compatible_node +EXPORT_SYMBOL vmlinux 0x793d6c97 xp_alloc +EXPORT_SYMBOL vmlinux 0x7947ef9c napi_schedule_prep +EXPORT_SYMBOL vmlinux 0x79508cce dev_set_mac_address_user +EXPORT_SYMBOL vmlinux 0x79583541 devm_rproc_alloc +EXPORT_SYMBOL vmlinux 0x796c1a6d blk_mq_delay_run_hw_queue +EXPORT_SYMBOL vmlinux 0x7972c260 dquot_reclaim_space_nodirty EXPORT_SYMBOL vmlinux 0x79739c3c utf8nagemin -EXPORT_SYMBOL vmlinux 0x797a9162 fs_param_is_path -EXPORT_SYMBOL vmlinux 0x798101c5 flow_indr_block_cb_alloc EXPORT_SYMBOL vmlinux 0x7984eefc key_update +EXPORT_SYMBOL vmlinux 0x79906309 skb_pull +EXPORT_SYMBOL vmlinux 0x79951db0 component_match_add_release +EXPORT_SYMBOL vmlinux 0x79951f4b __blockdev_direct_IO +EXPORT_SYMBOL vmlinux 0x79a197b8 of_mdiobus_phy_device_register +EXPORT_SYMBOL vmlinux 0x79a28b61 skb_page_frag_refill EXPORT_SYMBOL vmlinux 0x79a33f85 vme_get_size +EXPORT_SYMBOL vmlinux 0x79a988a2 skb_get_hash_perturb EXPORT_SYMBOL vmlinux 0x79aa04a2 get_random_bytes -EXPORT_SYMBOL vmlinux 0x79c39097 __icmp_send -EXPORT_SYMBOL vmlinux 0x79cb61fb napi_get_frags +EXPORT_SYMBOL vmlinux 0x79b989ec ps2_init EXPORT_SYMBOL vmlinux 0x79d6e540 __cpu_dying_mask -EXPORT_SYMBOL vmlinux 0x79dfe2b1 eth_header_cache -EXPORT_SYMBOL vmlinux 0x79e9e413 pin_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0x79dc65d7 mipi_dsi_dcs_set_display_brightness +EXPORT_SYMBOL vmlinux 0x79e92fc5 backlight_device_set_brightness EXPORT_SYMBOL vmlinux 0x79ec8f93 blk_start_plug +EXPORT_SYMBOL vmlinux 0x79f3b26b dmam_alloc_attrs +EXPORT_SYMBOL vmlinux 0x79f9561f kmem_cache_size EXPORT_SYMBOL vmlinux 0x7a09a064 seg6_hmac_compute EXPORT_SYMBOL vmlinux 0x7a1bcd59 gf128mul_x8_ble EXPORT_SYMBOL vmlinux 0x7a2d6c97 __debugger_ipi -EXPORT_SYMBOL vmlinux 0x7a2e1e39 inet_addr_type -EXPORT_SYMBOL vmlinux 0x7a4bd702 input_mt_get_slot_by_key -EXPORT_SYMBOL vmlinux 0x7a681faa vfs_parse_fs_string +EXPORT_SYMBOL vmlinux 0x7a5758bc max8925_reg_write +EXPORT_SYMBOL vmlinux 0x7a68513a __skb_checksum_complete_head EXPORT_SYMBOL vmlinux 0x7a71741f __xa_cmpxchg +EXPORT_SYMBOL vmlinux 0x7a7444ab ip_fraglist_init +EXPORT_SYMBOL vmlinux 0x7a79a31d tcf_action_check_ctrlact EXPORT_SYMBOL vmlinux 0x7a7de0d6 mempool_init_node -EXPORT_SYMBOL vmlinux 0x7a8a56c2 nvdimm_namespace_locked +EXPORT_SYMBOL vmlinux 0x7a9359c4 inc_node_state EXPORT_SYMBOL vmlinux 0x7a95e5ae do_settimeofday64 EXPORT_SYMBOL vmlinux 0x7a968137 ucc_slow_restart_tx +EXPORT_SYMBOL vmlinux 0x7a9ce81e qdisc_offload_graft_helper +EXPORT_SYMBOL vmlinux 0x7aa129cc phy_do_ioctl_running EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree -EXPORT_SYMBOL vmlinux 0x7aa800cd try_module_get EXPORT_SYMBOL vmlinux 0x7ab5f8c3 _insw_ns EXPORT_SYMBOL vmlinux 0x7ab88a45 system_freezing_cnt EXPORT_SYMBOL vmlinux 0x7aba86db node_to_cpumask_map +EXPORT_SYMBOL vmlinux 0x7ac78497 dma_sync_sg_for_device +EXPORT_SYMBOL vmlinux 0x7ac9a654 filemap_fdatawait_range_keep_errors EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt +EXPORT_SYMBOL vmlinux 0x7adabb4b md_wait_for_blocked_rdev EXPORT_SYMBOL vmlinux 0x7adc0fbf rb_replace_node_rcu EXPORT_SYMBOL vmlinux 0x7ae5d317 qe_get_snum -EXPORT_SYMBOL vmlinux 0x7af0d920 key_unlink -EXPORT_SYMBOL vmlinux 0x7afa3f9d blk_queue_update_dma_alignment -EXPORT_SYMBOL vmlinux 0x7b0884e0 cdev_del -EXPORT_SYMBOL vmlinux 0x7b3d7b89 tcf_qevent_validate_change -EXPORT_SYMBOL vmlinux 0x7b446d17 blk_rq_map_integrity_sg +EXPORT_SYMBOL vmlinux 0x7b01b3a0 eth_gro_complete +EXPORT_SYMBOL vmlinux 0x7b2238c4 inode_permission +EXPORT_SYMBOL vmlinux 0x7b27fce6 csum_and_copy_from_iter +EXPORT_SYMBOL vmlinux 0x7b2acb0c tty_name +EXPORT_SYMBOL vmlinux 0x7b499b0c mr_mfc_seq_next +EXPORT_SYMBOL vmlinux 0x7b4fdba0 end_buffer_async_write EXPORT_SYMBOL vmlinux 0x7b5b8f31 sha256_update -EXPORT_SYMBOL vmlinux 0x7b5bcaf8 tcp_sock_set_keepintvl -EXPORT_SYMBOL vmlinux 0x7b64aa4c get_agp_version -EXPORT_SYMBOL vmlinux 0x7b6dc2d7 pci_read_config_byte -EXPORT_SYMBOL vmlinux 0x7b8d8fb9 scsi_device_lookup_by_target -EXPORT_SYMBOL vmlinux 0x7ba1afcd tc_setup_cb_replace -EXPORT_SYMBOL vmlinux 0x7bac2946 fs_param_is_blob -EXPORT_SYMBOL vmlinux 0x7bb5c354 tcp_simple_retransmit -EXPORT_SYMBOL vmlinux 0x7bb6955d iterate_fd +EXPORT_SYMBOL vmlinux 0x7b617870 inet6_add_protocol +EXPORT_SYMBOL vmlinux 0x7b75da2b __scsi_execute +EXPORT_SYMBOL vmlinux 0x7b879b65 i2c_smbus_read_block_data +EXPORT_SYMBOL vmlinux 0x7b8d6ae0 xp_raw_get_dma +EXPORT_SYMBOL vmlinux 0x7ba9258f input_set_capability EXPORT_SYMBOL vmlinux 0x7bbccd05 nr_node_ids +EXPORT_SYMBOL vmlinux 0x7bd28233 dma_map_sg_attrs EXPORT_SYMBOL vmlinux 0x7bd8f50d radix_tree_gang_lookup_tag -EXPORT_SYMBOL vmlinux 0x7c01346a __wait_on_buffer -EXPORT_SYMBOL vmlinux 0x7c10ce78 pci_clear_mwi -EXPORT_SYMBOL vmlinux 0x7c12fc7c xp_raw_get_dma EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement -EXPORT_SYMBOL vmlinux 0x7c36badd crypto_sha1_finup -EXPORT_SYMBOL vmlinux 0x7c389856 __hw_addr_sync_dev -EXPORT_SYMBOL vmlinux 0x7c3b9fd2 bio_init +EXPORT_SYMBOL vmlinux 0x7c27b2ed pci_find_next_bus +EXPORT_SYMBOL vmlinux 0x7c2c75b1 security_binder_transfer_file EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get -EXPORT_SYMBOL vmlinux 0x7c5e9cd3 rps_may_expire_flow -EXPORT_SYMBOL vmlinux 0x7c60ad4e kmem_cache_alloc_trace +EXPORT_SYMBOL vmlinux 0x7c4f206d vme_register_driver +EXPORT_SYMBOL vmlinux 0x7c594665 devm_clk_get_optional +EXPORT_SYMBOL vmlinux 0x7c5df3b4 __neigh_event_send EXPORT_SYMBOL vmlinux 0x7c63a098 radix_tree_insert -EXPORT_SYMBOL vmlinux 0x7c7d3a31 tty_port_carrier_raised -EXPORT_SYMBOL vmlinux 0x7c9b8f2d pmem_sector_size +EXPORT_SYMBOL vmlinux 0x7c7d06de finish_no_open EXPORT_SYMBOL vmlinux 0x7c9ca58f __sg_page_iter_next -EXPORT_SYMBOL vmlinux 0x7c9f5975 remove_arg_zero +EXPORT_SYMBOL vmlinux 0x7caa5755 cdev_set_parent +EXPORT_SYMBOL vmlinux 0x7cae10a3 kernel_read EXPORT_SYMBOL vmlinux 0x7cb1aea1 devlink_dpipe_header_ethernet -EXPORT_SYMBOL vmlinux 0x7cbdc135 devm_mfd_add_devices -EXPORT_SYMBOL vmlinux 0x7cd15e84 tc_setup_cb_add +EXPORT_SYMBOL vmlinux 0x7cc9c9df wireless_send_event EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid EXPORT_SYMBOL vmlinux 0x7ce58981 kvrealloc -EXPORT_SYMBOL vmlinux 0x7cee4f0b mini_qdisc_pair_swap +EXPORT_SYMBOL vmlinux 0x7ce83a76 flow_rule_match_enc_opts +EXPORT_SYMBOL vmlinux 0x7ce9f971 scsi_vpd_lun_id +EXPORT_SYMBOL vmlinux 0x7cf1ade6 blk_pm_runtime_init EXPORT_SYMBOL vmlinux 0x7cf35220 vme_master_free +EXPORT_SYMBOL vmlinux 0x7cf66ac8 agp_generic_alloc_pages +EXPORT_SYMBOL vmlinux 0x7cf875b5 d_find_any_alias EXPORT_SYMBOL vmlinux 0x7cfe368d net_dim_get_def_tx_moderation -EXPORT_SYMBOL vmlinux 0x7d02b7d4 vm_insert_page EXPORT_SYMBOL vmlinux 0x7d0db45c jiffies_to_clock_t -EXPORT_SYMBOL vmlinux 0x7d215a00 dst_init -EXPORT_SYMBOL vmlinux 0x7d239769 dma_set_coherent_mask -EXPORT_SYMBOL vmlinux 0x7d375f93 __page_cache_alloc -EXPORT_SYMBOL vmlinux 0x7d3e3d71 mmc_retune_unpause +EXPORT_SYMBOL vmlinux 0x7d108fba seq_read +EXPORT_SYMBOL vmlinux 0x7d48442c md_bitmap_start_sync EXPORT_SYMBOL vmlinux 0x7d4b176a netlbl_catmap_setbit EXPORT_SYMBOL vmlinux 0x7d5e1008 __crc32c_le_shift -EXPORT_SYMBOL vmlinux 0x7d66e434 devm_devfreq_register_notifier -EXPORT_SYMBOL vmlinux 0x7d6a8d1b qdisc_watchdog_schedule_range_ns +EXPORT_SYMBOL vmlinux 0x7d6cda01 scsi_is_host_device EXPORT_SYMBOL vmlinux 0x7d74d522 kstrtoull_from_user -EXPORT_SYMBOL vmlinux 0x7d79805c netpoll_poll_dev -EXPORT_SYMBOL vmlinux 0x7d79fe61 vga_client_register -EXPORT_SYMBOL vmlinux 0x7d80f320 __nlmsg_put +EXPORT_SYMBOL vmlinux 0x7d78c017 dget_parent EXPORT_SYMBOL vmlinux 0x7d845f0e _raw_spin_lock_irq -EXPORT_SYMBOL vmlinux 0x7d96ba65 security_d_instantiate +EXPORT_SYMBOL vmlinux 0x7d849a60 skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x7d93fbef ptp_cancel_worker_sync EXPORT_SYMBOL vmlinux 0x7daece67 quota_send_warning +EXPORT_SYMBOL vmlinux 0x7db2d7de netdev_has_upper_dev_all_rcu +EXPORT_SYMBOL vmlinux 0x7db90d21 skb_headers_offset_update +EXPORT_SYMBOL vmlinux 0x7dbf1125 eth_header_cache EXPORT_SYMBOL vmlinux 0x7dc97879 rtas_get_error_log_max -EXPORT_SYMBOL vmlinux 0x7dde9f13 lru_cache_add -EXPORT_SYMBOL vmlinux 0x7dee8d28 fb_blank +EXPORT_SYMBOL vmlinux 0x7dcfa3b2 dev_set_group +EXPORT_SYMBOL vmlinux 0x7dd66470 __skb_gso_segment +EXPORT_SYMBOL vmlinux 0x7dd747d2 devm_ioport_map +EXPORT_SYMBOL vmlinux 0x7de3f59b xfrm_input EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args -EXPORT_SYMBOL vmlinux 0x7df0419c udplite_prot +EXPORT_SYMBOL vmlinux 0x7df36e66 scsi_rescan_device EXPORT_SYMBOL vmlinux 0x7dfc8277 isa_mem_base -EXPORT_SYMBOL vmlinux 0x7e16cbcb register_netdevice -EXPORT_SYMBOL vmlinux 0x7e187aca nonseekable_open -EXPORT_SYMBOL vmlinux 0x7e286533 mr_mfc_find_parent +EXPORT_SYMBOL vmlinux 0x7e093528 rproc_resource_cleanup +EXPORT_SYMBOL vmlinux 0x7e231a10 pcim_iounmap +EXPORT_SYMBOL vmlinux 0x7e240afb nd_region_release_lane +EXPORT_SYMBOL vmlinux 0x7e25f2ad pci_select_bars +EXPORT_SYMBOL vmlinux 0x7e2a433d __fs_parse EXPORT_SYMBOL vmlinux 0x7e2d6436 ida_free EXPORT_SYMBOL vmlinux 0x7e3191f6 try_to_del_timer_sync -EXPORT_SYMBOL vmlinux 0x7e4009af ilookup5_nowait +EXPORT_SYMBOL vmlinux 0x7e3b4ffe phy_read_mmd +EXPORT_SYMBOL vmlinux 0x7e48c218 fscrypt_fname_disk_to_usr EXPORT_SYMBOL vmlinux 0x7e4cdc54 __cond_resched_rwlock_write -EXPORT_SYMBOL vmlinux 0x7e557526 mmc_release_host -EXPORT_SYMBOL vmlinux 0x7e692a35 vif_device_init -EXPORT_SYMBOL vmlinux 0x7e740b8a lease_modify -EXPORT_SYMBOL vmlinux 0x7e82c49e xfrm_spd_getinfo -EXPORT_SYMBOL vmlinux 0x7e8a478b inet_csk_reqsk_queue_drop_and_put -EXPORT_SYMBOL vmlinux 0x7e9c1cb3 mdiobus_read -EXPORT_SYMBOL vmlinux 0x7eadbed7 of_graph_get_port_by_id -EXPORT_SYMBOL vmlinux 0x7ee0afbb make_kprojid -EXPORT_SYMBOL vmlinux 0x7ee120cb skb_mac_gso_segment -EXPORT_SYMBOL vmlinux 0x7ee2f10f pnv_pci_get_phb_node -EXPORT_SYMBOL vmlinux 0x7efc4f4c devm_ioremap +EXPORT_SYMBOL vmlinux 0x7e51f20f key_revoke +EXPORT_SYMBOL vmlinux 0x7e5639fb current_time +EXPORT_SYMBOL vmlinux 0x7e771d19 pin_user_pages_remote +EXPORT_SYMBOL vmlinux 0x7e86da79 param_get_short +EXPORT_SYMBOL vmlinux 0x7e984e99 generic_key_instantiate +EXPORT_SYMBOL vmlinux 0x7eb811a3 i2c_smbus_read_i2c_block_data +EXPORT_SYMBOL vmlinux 0x7ecda09b i2c_del_driver +EXPORT_SYMBOL vmlinux 0x7ecf8429 bio_devname +EXPORT_SYMBOL vmlinux 0x7ed352a5 vmap +EXPORT_SYMBOL vmlinux 0x7ee9928e seq_pad +EXPORT_SYMBOL vmlinux 0x7ef1fa27 genlmsg_multicast_allns +EXPORT_SYMBOL vmlinux 0x7efbdf06 scsi_dma_map EXPORT_SYMBOL vmlinux 0x7f02188f __msecs_to_jiffies -EXPORT_SYMBOL vmlinux 0x7f027d6b thaw_bdev EXPORT_SYMBOL vmlinux 0x7f03b6a9 crc_ccitt_table -EXPORT_SYMBOL vmlinux 0x7f10f8af fs_param_is_u64 +EXPORT_SYMBOL vmlinux 0x7f13f751 jbd2_fc_release_bufs EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs -EXPORT_SYMBOL vmlinux 0x7f25717a ipv6_dev_get_saddr -EXPORT_SYMBOL vmlinux 0x7f472f5c fscrypt_ioctl_get_policy +EXPORT_SYMBOL vmlinux 0x7f2aeae4 vio_cmo_set_dev_desired +EXPORT_SYMBOL vmlinux 0x7f302bcc tcf_exts_num_actions +EXPORT_SYMBOL vmlinux 0x7f3959af xfrm_state_add +EXPORT_SYMBOL vmlinux 0x7f3f0f9d bio_endio +EXPORT_SYMBOL vmlinux 0x7f483b1b device_match_acpi_dev EXPORT_SYMBOL vmlinux 0x7f52071a net_dim EXPORT_SYMBOL vmlinux 0x7f5b4fe4 sg_free_table +EXPORT_SYMBOL vmlinux 0x7f627dd5 blk_cleanup_queue EXPORT_SYMBOL vmlinux 0x7f71fb97 xa_load +EXPORT_SYMBOL vmlinux 0x7f7adb9a d_lookup EXPORT_SYMBOL vmlinux 0x7f7f7bb4 irq_poll_disable -EXPORT_SYMBOL vmlinux 0x7fa2f109 max8925_bulk_write -EXPORT_SYMBOL vmlinux 0x7faef7db dump_page -EXPORT_SYMBOL vmlinux 0x7fd6fac2 nvdimm_namespace_disk_name +EXPORT_SYMBOL vmlinux 0x7f85496f phy_queue_state_machine +EXPORT_SYMBOL vmlinux 0x7fb83d24 complete_request_key +EXPORT_SYMBOL vmlinux 0x7fd805c5 d_alloc_anon EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node -EXPORT_SYMBOL vmlinux 0x7fe779bd security_task_getsecid_obj -EXPORT_SYMBOL vmlinux 0x8001194f unregister_mii_timestamper -EXPORT_SYMBOL vmlinux 0x802b1f7f ip_local_deliver -EXPORT_SYMBOL vmlinux 0x8030694b may_umount -EXPORT_SYMBOL vmlinux 0x8033536a simple_dir_operations +EXPORT_SYMBOL vmlinux 0x7feec743 inet_sendpage +EXPORT_SYMBOL vmlinux 0x7ffe64e2 mmc_calc_max_discard EXPORT_SYMBOL vmlinux 0x803ddbb6 __posix_acl_create -EXPORT_SYMBOL vmlinux 0x804658b2 __frontswap_load -EXPORT_SYMBOL vmlinux 0x80553e29 dm_table_get_md -EXPORT_SYMBOL vmlinux 0x805fd511 inet_stream_connect -EXPORT_SYMBOL vmlinux 0x80908e8a bio_integrity_trim +EXPORT_SYMBOL vmlinux 0x8040efce input_release_device +EXPORT_SYMBOL vmlinux 0x806114ec pci_find_resource +EXPORT_SYMBOL vmlinux 0x80783f2e rproc_elf_sanity_check +EXPORT_SYMBOL vmlinux 0x808fe3d8 rproc_elf_get_boot_addr EXPORT_SYMBOL vmlinux 0x809712ff hdmi_avi_infoframe_pack -EXPORT_SYMBOL vmlinux 0x809f9c9b shmem_aops -EXPORT_SYMBOL vmlinux 0x80a239d2 kfree_skb_partial -EXPORT_SYMBOL vmlinux 0x80a37d69 pci_remove_bus -EXPORT_SYMBOL vmlinux 0x80a81627 __blk_alloc_disk -EXPORT_SYMBOL vmlinux 0x80c2ae93 scsi_is_host_device -EXPORT_SYMBOL vmlinux 0x80c9f62d mntget +EXPORT_SYMBOL vmlinux 0x80b20b75 input_mt_report_slot_state +EXPORT_SYMBOL vmlinux 0x80bdad62 blk_queue_physical_block_size EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd -EXPORT_SYMBOL vmlinux 0x80cf61d4 inet_get_local_port_range +EXPORT_SYMBOL vmlinux 0x80cc6b3a flow_indr_dev_setup_offload EXPORT_SYMBOL vmlinux 0x80d68d3e fb_register_client -EXPORT_SYMBOL vmlinux 0x80dcce79 simple_symlink_inode_operations -EXPORT_SYMBOL vmlinux 0x80dda307 inet_frag_destroy EXPORT_SYMBOL vmlinux 0x80e5f86f fscrypt_fname_alloc_buffer +EXPORT_SYMBOL vmlinux 0x80ec803e init_task +EXPORT_SYMBOL vmlinux 0x80edc35a inode_nohighmem EXPORT_SYMBOL vmlinux 0x810bef7e sg_free_append_table EXPORT_SYMBOL vmlinux 0x8112b3d2 scsi_build_sense_buffer -EXPORT_SYMBOL vmlinux 0x8116f373 skb_csum_hwoffload_help EXPORT_SYMBOL vmlinux 0x81188c30 match_string -EXPORT_SYMBOL vmlinux 0x811b85e8 regset_get -EXPORT_SYMBOL vmlinux 0x811e6a70 uart_get_baud_rate -EXPORT_SYMBOL vmlinux 0x81391007 qdisc_watchdog_cancel -EXPORT_SYMBOL vmlinux 0x8141e476 vme_dma_list_exec -EXPORT_SYMBOL vmlinux 0x814c5261 security_dentry_init_security +EXPORT_SYMBOL vmlinux 0x8135a958 devm_devfreq_add_device +EXPORT_SYMBOL vmlinux 0x8140ed83 kthread_create_on_node +EXPORT_SYMBOL vmlinux 0x8152498c xsk_tx_completed EXPORT_SYMBOL vmlinux 0x81533963 sysfs_format_mac -EXPORT_SYMBOL vmlinux 0x81599ae5 sock_set_reuseaddr +EXPORT_SYMBOL vmlinux 0x81562d57 sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0x8159cb3e __vlan_find_dev_deep_rcu EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal EXPORT_SYMBOL vmlinux 0x816347c6 agp_device_command -EXPORT_SYMBOL vmlinux 0x817328fe genphy_update_link -EXPORT_SYMBOL vmlinux 0x81733d96 pcix_get_mmrbc -EXPORT_SYMBOL vmlinux 0x81739bb9 mmc_set_blocklen -EXPORT_SYMBOL vmlinux 0x8174cf9e dev_vprintk_emit +EXPORT_SYMBOL vmlinux 0x816b9583 devm_backlight_device_register +EXPORT_SYMBOL vmlinux 0x8175f37a __cleancache_invalidate_fs EXPORT_SYMBOL vmlinux 0x818416e1 scsi_set_sense_information +EXPORT_SYMBOL vmlinux 0x818c467b mdio_device_create EXPORT_SYMBOL vmlinux 0x818edf97 cpm_muram_alloc -EXPORT_SYMBOL vmlinux 0x8192331e blk_set_queue_depth -EXPORT_SYMBOL vmlinux 0x819748dc clk_bulk_get_all -EXPORT_SYMBOL vmlinux 0x819fc6b4 netdev_bind_sb_channel_queue +EXPORT_SYMBOL vmlinux 0x81915732 netdev_upper_dev_unlink EXPORT_SYMBOL vmlinux 0x81a07f4e _atomic_dec_and_lock -EXPORT_SYMBOL vmlinux 0x81a3cd60 vma_set_file -EXPORT_SYMBOL vmlinux 0x81a82866 tcp_getsockopt -EXPORT_SYMBOL vmlinux 0x81abd333 sk_stream_wait_connect -EXPORT_SYMBOL vmlinux 0x81ae5c2d scsi_print_result -EXPORT_SYMBOL vmlinux 0x81af3bdd rproc_add_subdev -EXPORT_SYMBOL vmlinux 0x81b0e917 rproc_da_to_va +EXPORT_SYMBOL vmlinux 0x81a27a9a mmc_card_alternative_gpt_sector +EXPORT_SYMBOL vmlinux 0x81a55a98 lru_cache_add +EXPORT_SYMBOL vmlinux 0x81a8b134 __starget_for_each_device EXPORT_SYMBOL vmlinux 0x81b20e8b ucc_fast_transmit_on_demand -EXPORT_SYMBOL vmlinux 0x81bee472 sock_no_mmap EXPORT_SYMBOL vmlinux 0x81c0a84f rtas_set_indicator -EXPORT_SYMBOL vmlinux 0x81c968cb srp_rport_put -EXPORT_SYMBOL vmlinux 0x81d59648 mipi_dsi_shutdown_peripheral -EXPORT_SYMBOL vmlinux 0x81d9f9ca pci_write_config_dword +EXPORT_SYMBOL vmlinux 0x81c69ed9 skb_flow_dissect_tunnel_info +EXPORT_SYMBOL vmlinux 0x81cc90f7 mipi_dsi_generic_read +EXPORT_SYMBOL vmlinux 0x81d13bda clk_add_alias +EXPORT_SYMBOL vmlinux 0x81d1a5b5 file_write_and_wait_range EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset -EXPORT_SYMBOL vmlinux 0x81e48d78 cdrom_mode_select -EXPORT_SYMBOL vmlinux 0x81f70116 i2c_smbus_read_i2c_block_data -EXPORT_SYMBOL vmlinux 0x81ff3b1b seq_file_path -EXPORT_SYMBOL vmlinux 0x820c9060 devm_ioremap_wc -EXPORT_SYMBOL vmlinux 0x821007a5 posix_lock_file +EXPORT_SYMBOL vmlinux 0x81df72d7 vfs_rename +EXPORT_SYMBOL vmlinux 0x820885c5 tcp_child_process EXPORT_SYMBOL vmlinux 0x821559d6 __vmalloc_end -EXPORT_SYMBOL vmlinux 0x8236c68d end_buffer_read_sync -EXPORT_SYMBOL vmlinux 0x823cdf03 crypto_sha512_finup -EXPORT_SYMBOL vmlinux 0x826f6f6e netdev_get_xmit_slave +EXPORT_SYMBOL vmlinux 0x821cd365 max8925_reg_read +EXPORT_SYMBOL vmlinux 0x8221e235 i2c_transfer_buffer_flags +EXPORT_SYMBOL vmlinux 0x8236470d frontswap_register_ops +EXPORT_SYMBOL vmlinux 0x82594696 eth_commit_mac_addr_change +EXPORT_SYMBOL vmlinux 0x826122b4 rtnetlink_put_metrics EXPORT_SYMBOL vmlinux 0x828062b1 __frontswap_init -EXPORT_SYMBOL vmlinux 0x828735e6 ps2_begin_command -EXPORT_SYMBOL vmlinux 0x82bc3d87 seg6_hmac_info_del +EXPORT_SYMBOL vmlinux 0x828308e4 bioset_integrity_create +EXPORT_SYMBOL vmlinux 0x8294de82 __dev_kfree_skb_irq +EXPORT_SYMBOL vmlinux 0x8299282b inet_csk_destroy_sock +EXPORT_SYMBOL vmlinux 0x82a5a73f mdiobus_write_nested +EXPORT_SYMBOL vmlinux 0x82b19da1 blk_rq_map_integrity_sg +EXPORT_SYMBOL vmlinux 0x82c7b3c0 may_setattr EXPORT_SYMBOL vmlinux 0x82c87ad5 nr_online_nodes -EXPORT_SYMBOL vmlinux 0x82cfac74 begin_new_exec -EXPORT_SYMBOL vmlinux 0x82d18562 __scsi_execute -EXPORT_SYMBOL vmlinux 0x82dd24a2 mmc_get_card -EXPORT_SYMBOL vmlinux 0x82e79983 pci_get_domain_bus_and_slot +EXPORT_SYMBOL vmlinux 0x82cdb202 pcie_get_speed_cap +EXPORT_SYMBOL vmlinux 0x82cec1a1 blk_mq_queue_stopped +EXPORT_SYMBOL vmlinux 0x82d36273 key_task_permission +EXPORT_SYMBOL vmlinux 0x82dc7d05 srp_reconnect_rport +EXPORT_SYMBOL vmlinux 0x82e5ac08 dquot_disable +EXPORT_SYMBOL vmlinux 0x82e6ba9b phy_request_interrupt EXPORT_SYMBOL vmlinux 0x82f48ad3 call_usermodehelper_setup -EXPORT_SYMBOL vmlinux 0x830e624c generic_pipe_buf_try_steal -EXPORT_SYMBOL vmlinux 0x8327559b rtnl_notify -EXPORT_SYMBOL vmlinux 0x832ddc5f genphy_read_mmd_unsupported -EXPORT_SYMBOL vmlinux 0x833618c5 dev_mc_flush -EXPORT_SYMBOL vmlinux 0x83373c88 phy_ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0x83001310 nvdimm_bus_unlock +EXPORT_SYMBOL vmlinux 0x8300d22e d_rehash +EXPORT_SYMBOL vmlinux 0x8304da99 simple_recursive_removal +EXPORT_SYMBOL vmlinux 0x83067a7f netdev_has_upper_dev +EXPORT_SYMBOL vmlinux 0x8324c7f7 security_inode_init_security +EXPORT_SYMBOL vmlinux 0x8328aa25 of_graph_get_port_by_id +EXPORT_SYMBOL vmlinux 0x833d6c90 d_obtain_root +EXPORT_SYMBOL vmlinux 0x833dd23e vmf_insert_pfn EXPORT_SYMBOL vmlinux 0x834658ac cmxgcr_lock -EXPORT_SYMBOL vmlinux 0x834661a6 deactivate_locked_super -EXPORT_SYMBOL vmlinux 0x8347ad32 simple_link -EXPORT_SYMBOL vmlinux 0x8351934b filemap_fdatawait_keep_errors -EXPORT_SYMBOL vmlinux 0x83536afd security_path_mkdir +EXPORT_SYMBOL vmlinux 0x834714ee genphy_read_mmd_unsupported +EXPORT_SYMBOL vmlinux 0x83518b23 md_reap_sync_thread EXPORT_SYMBOL vmlinux 0x83581089 gf128mul_init_4k_lle -EXPORT_SYMBOL vmlinux 0x835eba0f __traceiter_mmap_lock_start_locking +EXPORT_SYMBOL vmlinux 0x83762274 dm_table_get_size +EXPORT_SYMBOL vmlinux 0x83773260 iptun_encaps EXPORT_SYMBOL vmlinux 0x837b7b09 __dynamic_pr_debug +EXPORT_SYMBOL vmlinux 0x837e263c __hw_addr_sync_dev +EXPORT_SYMBOL vmlinux 0x8387a57d phy_device_register EXPORT_SYMBOL vmlinux 0x838d2bc8 siphash_3u32 +EXPORT_SYMBOL vmlinux 0x83a9738c genlmsg_put +EXPORT_SYMBOL vmlinux 0x83a99b97 flow_rule_match_ct +EXPORT_SYMBOL vmlinux 0x83aefce4 filp_open EXPORT_SYMBOL vmlinux 0x83b2094d __cond_resched_rwlock_read -EXPORT_SYMBOL vmlinux 0x83be63b1 generic_fill_statx_attr +EXPORT_SYMBOL vmlinux 0x83b4c1e0 pci_bus_read_config_byte +EXPORT_SYMBOL vmlinux 0x83b91338 dm_mq_kick_requeue_list EXPORT_SYMBOL vmlinux 0x83c52fba xfrm4_protocol_init -EXPORT_SYMBOL vmlinux 0x83d87f60 proto_unregister -EXPORT_SYMBOL vmlinux 0x83d92db4 ipv6_find_hdr -EXPORT_SYMBOL vmlinux 0x83f48212 elv_rb_latter_request +EXPORT_SYMBOL vmlinux 0x83e48127 devm_alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0x83f2c8df xp_set_rxq_info +EXPORT_SYMBOL vmlinux 0x83fd56cd pci_try_set_mwi EXPORT_SYMBOL vmlinux 0x840342c6 sgl_free EXPORT_SYMBOL vmlinux 0x84156834 __next_node_in -EXPORT_SYMBOL vmlinux 0x8419a57e pci_find_resource -EXPORT_SYMBOL vmlinux 0x8419faf3 cdrom_open -EXPORT_SYMBOL vmlinux 0x841e4ec7 devm_mdiobus_alloc_size -EXPORT_SYMBOL vmlinux 0x841ede97 pci_request_region +EXPORT_SYMBOL vmlinux 0x8424a62b generic_shutdown_super +EXPORT_SYMBOL vmlinux 0x842730ca free_netdev EXPORT_SYMBOL vmlinux 0x842c8e9d ioread16 -EXPORT_SYMBOL vmlinux 0x84390a01 proc_create_mount_point -EXPORT_SYMBOL vmlinux 0x8441ed56 migrate_page_move_mapping -EXPORT_SYMBOL vmlinux 0x846a00c7 tcp_enter_cwr -EXPORT_SYMBOL vmlinux 0x84759412 ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0x844f7e27 textsearch_prepare +EXPORT_SYMBOL vmlinux 0x847883a3 vlan_vids_add_by_dev EXPORT_SYMBOL vmlinux 0x84823cf3 nla_strscpy -EXPORT_SYMBOL vmlinux 0x848cf89b inet_frag_reasm_finish EXPORT_SYMBOL vmlinux 0x848d372e iowrite8 -EXPORT_SYMBOL vmlinux 0x849deeda generic_splice_sendpage -EXPORT_SYMBOL vmlinux 0x84b8bfed xfrm4_rcv_encap +EXPORT_SYMBOL vmlinux 0x84b234f0 of_find_property EXPORT_SYMBOL vmlinux 0x84bd69bf dq_data_lock -EXPORT_SYMBOL vmlinux 0x84bf937d vlan_vid_del +EXPORT_SYMBOL vmlinux 0x84be97da page_pool_create EXPORT_SYMBOL vmlinux 0x84c03e9a rtnl_nla_parse_ifla -EXPORT_SYMBOL vmlinux 0x84ea0e9b netlink_ns_capable -EXPORT_SYMBOL vmlinux 0x84f16c00 xfrm_state_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x84c337fa tty_port_tty_set +EXPORT_SYMBOL vmlinux 0x84cfc706 __xfrm_dst_lookup EXPORT_SYMBOL vmlinux 0x84f3c134 proc_doulongvec_minmax -EXPORT_SYMBOL vmlinux 0x84fa518b security_inode_init_security -EXPORT_SYMBOL vmlinux 0x84fb5aa4 component_match_add_release -EXPORT_SYMBOL vmlinux 0x85041784 unregister_binfmt -EXPORT_SYMBOL vmlinux 0x850ef3aa padata_alloc_shell +EXPORT_SYMBOL vmlinux 0x84f56ccb dev_change_proto_down +EXPORT_SYMBOL vmlinux 0x850c3e5a phy_start_cable_test_tdr +EXPORT_SYMBOL vmlinux 0x85231c06 genphy_config_eee_advert EXPORT_SYMBOL vmlinux 0x85250ccc xa_store_range -EXPORT_SYMBOL vmlinux 0x852dbabc inet_csk_delete_keepalive_timer -EXPORT_SYMBOL vmlinux 0x855ed012 param_set_long +EXPORT_SYMBOL vmlinux 0x852be343 writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0x853c07a9 fasync_helper +EXPORT_SYMBOL vmlinux 0x8555a46d inet_reqsk_alloc EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked +EXPORT_SYMBOL vmlinux 0x856e3bdf fs_param_is_bool +EXPORT_SYMBOL vmlinux 0x85771403 input_set_timestamp EXPORT_SYMBOL vmlinux 0x8591d7d5 ledtrig_mtd_activity EXPORT_SYMBOL vmlinux 0x8597eb47 plpar_hcall -EXPORT_SYMBOL vmlinux 0x859d1055 dev_change_proto_down_generic -EXPORT_SYMBOL vmlinux 0x85ae5b74 sock_no_accept +EXPORT_SYMBOL vmlinux 0x859ce029 vfs_readlink +EXPORT_SYMBOL vmlinux 0x85a7dfb7 mdiobus_register_device EXPORT_SYMBOL vmlinux 0x85b4cf2f utf8nlen EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states -EXPORT_SYMBOL vmlinux 0x85b920f9 phy_ethtool_get_sset_count EXPORT_SYMBOL vmlinux 0x85bd1608 __request_region -EXPORT_SYMBOL vmlinux 0x85d67942 pci_bus_find_capability +EXPORT_SYMBOL vmlinux 0x85c9c4bc __dynamic_netdev_dbg EXPORT_SYMBOL vmlinux 0x85df9b6c strsep -EXPORT_SYMBOL vmlinux 0x85e26dc2 follow_pfn -EXPORT_SYMBOL vmlinux 0x85e62414 tcp_md5_hash_key -EXPORT_SYMBOL vmlinux 0x85ef8e22 trace_raw_output_prep EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn EXPORT_SYMBOL vmlinux 0x85fbc931 slhc_uncompress -EXPORT_SYMBOL vmlinux 0x861cb0f1 tty_schedule_flip +EXPORT_SYMBOL vmlinux 0x8631bcc7 elv_rb_former_request EXPORT_SYMBOL vmlinux 0x863a276a color_table -EXPORT_SYMBOL vmlinux 0x8644cba8 kill_fasync -EXPORT_SYMBOL vmlinux 0x8655611e vm_map_pages -EXPORT_SYMBOL vmlinux 0x8662ce1e dev_uc_add +EXPORT_SYMBOL vmlinux 0x863e073a serio_interrupt +EXPORT_SYMBOL vmlinux 0x867100c1 key_alloc +EXPORT_SYMBOL vmlinux 0x8676fc01 no_seek_end_llseek_size +EXPORT_SYMBOL vmlinux 0x867895ea of_io_request_and_map EXPORT_SYMBOL vmlinux 0x867c5319 __traceiter_dma_fence_emit -EXPORT_SYMBOL vmlinux 0x867d46f2 dentry_open +EXPORT_SYMBOL vmlinux 0x86842639 neigh_seq_next EXPORT_SYMBOL vmlinux 0x868acba5 get_options +EXPORT_SYMBOL vmlinux 0x868bb661 max8998_bulk_read +EXPORT_SYMBOL vmlinux 0x869c7250 mmc_can_erase +EXPORT_SYMBOL vmlinux 0x86a13727 ip_options_compile EXPORT_SYMBOL vmlinux 0x86b1026f proc_douintvec EXPORT_SYMBOL vmlinux 0x86b45a9b mutex_lock_killable -EXPORT_SYMBOL vmlinux 0x86b8c116 skb_tx_error -EXPORT_SYMBOL vmlinux 0x86bf1001 pci_stop_and_remove_bus_device -EXPORT_SYMBOL vmlinux 0x86d3e1ec sock_common_setsockopt EXPORT_SYMBOL vmlinux 0x86d52ba5 lookup_constant -EXPORT_SYMBOL vmlinux 0x86d5cd2f inode_insert5 EXPORT_SYMBOL vmlinux 0x86db1cbb rtas_flash_term_hook -EXPORT_SYMBOL vmlinux 0x86f8c01c pcim_pin_device +EXPORT_SYMBOL vmlinux 0x86f28c4c eth_platform_get_mac_address +EXPORT_SYMBOL vmlinux 0x86f8b05e devm_get_clk_from_child EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user -EXPORT_SYMBOL vmlinux 0x8711d949 blk_queue_max_write_same_sectors +EXPORT_SYMBOL vmlinux 0x87055baa config_item_get_unless_zero EXPORT_SYMBOL vmlinux 0x8714563b csum_and_copy_from_user +EXPORT_SYMBOL vmlinux 0x872616a2 seq_read_iter EXPORT_SYMBOL vmlinux 0x872a5283 gen_pool_dma_zalloc_align -EXPORT_SYMBOL vmlinux 0x8736b378 netdev_info +EXPORT_SYMBOL vmlinux 0x8732b75a mmc_erase_group_aligned EXPORT_SYMBOL vmlinux 0x873a53ea __arch_hweight8 EXPORT_SYMBOL vmlinux 0x8756c914 do_wait_intr_irq +EXPORT_SYMBOL vmlinux 0x8758974d fs_param_is_enum EXPORT_SYMBOL vmlinux 0x8761c87b rps_needed +EXPORT_SYMBOL vmlinux 0x87664e37 input_close_device EXPORT_SYMBOL vmlinux 0x87761528 __traceiter_kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0x87763a20 i2c_smbus_xfer -EXPORT_SYMBOL vmlinux 0x878110ab sched_autogroup_detach +EXPORT_SYMBOL vmlinux 0x87792f65 tcp_simple_retransmit EXPORT_SYMBOL vmlinux 0x878469bd ZSTD_decompressStream -EXPORT_SYMBOL vmlinux 0x87a046c3 __mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x87866b1f vlan_for_each +EXPORT_SYMBOL vmlinux 0x878e4e82 vfs_parse_fs_param +EXPORT_SYMBOL vmlinux 0x879d3523 jbd2_journal_init_jbd_inode EXPORT_SYMBOL vmlinux 0x87a21cb3 __ubsan_handle_out_of_bounds -EXPORT_SYMBOL vmlinux 0x87a323ee dma_sync_single_for_device -EXPORT_SYMBOL vmlinux 0x87a47b67 scsi_unblock_requests -EXPORT_SYMBOL vmlinux 0x87b06477 skb_copy_and_csum_datagram_msg +EXPORT_SYMBOL vmlinux 0x87a77e7d t10_pi_type3_crc +EXPORT_SYMBOL vmlinux 0x87a8ef4b migrate_page_states +EXPORT_SYMBOL vmlinux 0x87ac4835 file_fdatawait_range EXPORT_SYMBOL vmlinux 0x87b8798d sg_next -EXPORT_SYMBOL vmlinux 0x87c083c6 pcie_set_mps -EXPORT_SYMBOL vmlinux 0x87ecc479 dev_pre_changeaddr_notify -EXPORT_SYMBOL vmlinux 0x87fed79b __tty_alloc_driver -EXPORT_SYMBOL vmlinux 0x88013332 handle_edge_irq -EXPORT_SYMBOL vmlinux 0x8812afd3 open_exec -EXPORT_SYMBOL vmlinux 0x881adc75 sched_autogroup_create_attach +EXPORT_SYMBOL vmlinux 0x87e0431c bdi_put +EXPORT_SYMBOL vmlinux 0x87ef2d0a pskb_extract +EXPORT_SYMBOL vmlinux 0x87f68675 dma_unmap_resource +EXPORT_SYMBOL vmlinux 0x8808d782 msi_bitmap_free_hwirqs +EXPORT_SYMBOL vmlinux 0x8810dc74 rtc_add_group +EXPORT_SYMBOL vmlinux 0x88178bbc dcache_dir_close EXPORT_SYMBOL vmlinux 0x881bad5e phy_mipi_dphy_config_validate -EXPORT_SYMBOL vmlinux 0x881e16cf mipi_dsi_dcs_write -EXPORT_SYMBOL vmlinux 0x882a1f4f tty_kref_put -EXPORT_SYMBOL vmlinux 0x883c2dce tcp_release_cb -EXPORT_SYMBOL vmlinux 0x886cca10 dquot_initialize -EXPORT_SYMBOL vmlinux 0x8871340d generic_writepages -EXPORT_SYMBOL vmlinux 0x88799270 inet_frag_queue_insert -EXPORT_SYMBOL vmlinux 0x887fdc8a __phy_write_mmd +EXPORT_SYMBOL vmlinux 0x88288251 ppp_input +EXPORT_SYMBOL vmlinux 0x882b3bc0 loop_register_transfer +EXPORT_SYMBOL vmlinux 0x883a3c81 is_nd_btt +EXPORT_SYMBOL vmlinux 0x883e50ed generic_file_read_iter +EXPORT_SYMBOL vmlinux 0x8841ab22 dev_set_mac_address +EXPORT_SYMBOL vmlinux 0x884e4a30 mmc_start_request +EXPORT_SYMBOL vmlinux 0x885515b3 page_zero_new_buffers +EXPORT_SYMBOL vmlinux 0x88589a87 input_inject_event +EXPORT_SYMBOL vmlinux 0x8879b6b9 flow_rule_match_eth_addrs +EXPORT_SYMBOL vmlinux 0x887d4e7f path_is_under EXPORT_SYMBOL vmlinux 0x88822d38 unregister_blocking_lsm_notifier EXPORT_SYMBOL vmlinux 0x8888f1fe xxh32 +EXPORT_SYMBOL vmlinux 0x8896efec rproc_get_by_child EXPORT_SYMBOL vmlinux 0x88993295 dma_fence_match_context -EXPORT_SYMBOL vmlinux 0x88a52c6e i2c_transfer_buffer_flags +EXPORT_SYMBOL vmlinux 0x889b3c2d dm_kcopyd_zero EXPORT_SYMBOL vmlinux 0x88abb78b ZSTD_insertBlock -EXPORT_SYMBOL vmlinux 0x88b9a236 vme_dma_request -EXPORT_SYMBOL vmlinux 0x88bee078 free_inode_nonrcu -EXPORT_SYMBOL vmlinux 0x88c0a2d0 xsk_tx_release -EXPORT_SYMBOL vmlinux 0x88cf7ec7 thermal_cdev_update +EXPORT_SYMBOL vmlinux 0x88b78bab sg_alloc_table_from_pages_segment EXPORT_SYMBOL vmlinux 0x88db9f48 __check_object_size -EXPORT_SYMBOL vmlinux 0x88de9f06 eth_platform_get_mac_address EXPORT_SYMBOL vmlinux 0x88e1d0f0 page_frag_free -EXPORT_SYMBOL vmlinux 0x88f6f168 unpin_user_page_range_dirty_lock EXPORT_SYMBOL vmlinux 0x88ff3cd0 gen_pool_free_owner -EXPORT_SYMBOL vmlinux 0x89180078 jbd2_journal_forget -EXPORT_SYMBOL vmlinux 0x8918684a simple_write_begin -EXPORT_SYMBOL vmlinux 0x8919f9a2 qdisc_create_dflt -EXPORT_SYMBOL vmlinux 0x891c23da srp_rport_get -EXPORT_SYMBOL vmlinux 0x8923770c xfrm_policy_flush -EXPORT_SYMBOL vmlinux 0x8941ceff _copy_from_iter -EXPORT_SYMBOL vmlinux 0x89446d9c put_ipc_ns -EXPORT_SYMBOL vmlinux 0x89481668 arp_xmit +EXPORT_SYMBOL vmlinux 0x89230d22 copy_page_from_iter_atomic +EXPORT_SYMBOL vmlinux 0x8939fc7e scsi_get_host_dev +EXPORT_SYMBOL vmlinux 0x894ac70a con_is_bound EXPORT_SYMBOL vmlinux 0x895577b0 numa_cpu_lookup_table -EXPORT_SYMBOL vmlinux 0x895e82c2 i2c_smbus_read_word_data +EXPORT_SYMBOL vmlinux 0x89558fc5 mipi_dsi_dcs_get_power_mode +EXPORT_SYMBOL vmlinux 0x8957637e page_mapping +EXPORT_SYMBOL vmlinux 0x89681ee4 component_match_add_typed +EXPORT_SYMBOL vmlinux 0x8981baad jbd2_journal_clear_features +EXPORT_SYMBOL vmlinux 0x8988c560 fuse_mount_destroy EXPORT_SYMBOL vmlinux 0x89898459 kvm_irq_bypass +EXPORT_SYMBOL vmlinux 0x8991b3ec of_find_node_with_property +EXPORT_SYMBOL vmlinux 0x8994d1a7 tcp_v4_send_check +EXPORT_SYMBOL vmlinux 0x89aaa683 ndo_dflt_fdb_dump +EXPORT_SYMBOL vmlinux 0x89b6748e __scm_send +EXPORT_SYMBOL vmlinux 0x89c601b3 mipi_dsi_driver_register_full +EXPORT_SYMBOL vmlinux 0x89d5bfdf scsi_remove_target EXPORT_SYMBOL vmlinux 0x89d93ef7 __nla_reserve_64bit -EXPORT_SYMBOL vmlinux 0x89edcb80 dev_get_mac_address -EXPORT_SYMBOL vmlinux 0x89f2e09e crypto_sha512_update -EXPORT_SYMBOL vmlinux 0x89f8391f iov_iter_npages -EXPORT_SYMBOL vmlinux 0x8a060eb6 param_set_ullong -EXPORT_SYMBOL vmlinux 0x8a084961 dma_alloc_attrs -EXPORT_SYMBOL vmlinux 0x8a23b78e pci_free_irq -EXPORT_SYMBOL vmlinux 0x8a2efdc4 file_fdatawait_range +EXPORT_SYMBOL vmlinux 0x89fbafe1 __lock_sock_fast +EXPORT_SYMBOL vmlinux 0x8a0f85fc __nd_driver_register +EXPORT_SYMBOL vmlinux 0x8a137496 ptp_schedule_worker +EXPORT_SYMBOL vmlinux 0x8a17441a security_inet_conn_request +EXPORT_SYMBOL vmlinux 0x8a1997d1 netif_set_real_num_queues +EXPORT_SYMBOL vmlinux 0x8a3601a0 d_obtain_alias EXPORT_SYMBOL vmlinux 0x8a362caa dma_fence_signal_timestamp EXPORT_SYMBOL vmlinux 0x8a47043d LZ4_decompress_safe_continue EXPORT_SYMBOL vmlinux 0x8a490c90 rfkill_set_sw_state -EXPORT_SYMBOL vmlinux 0x8a529fea udp_lib_setsockopt -EXPORT_SYMBOL vmlinux 0x8a5338a3 task_work_add +EXPORT_SYMBOL vmlinux 0x8a5322d2 inc_zone_page_state EXPORT_SYMBOL vmlinux 0x8a54050b __pud_cache_index -EXPORT_SYMBOL vmlinux 0x8a5649b4 flow_rule_match_mpls -EXPORT_SYMBOL vmlinux 0x8a61cf01 rdmacg_try_charge +EXPORT_SYMBOL vmlinux 0x8a5e912b neigh_seq_start +EXPORT_SYMBOL vmlinux 0x8a6752fa pcix_get_mmrbc EXPORT_SYMBOL vmlinux 0x8a7094ba vm_brk_flags -EXPORT_SYMBOL vmlinux 0x8a797485 skb_dequeue EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory -EXPORT_SYMBOL vmlinux 0x8a90becf tcf_exts_validate +EXPORT_SYMBOL vmlinux 0x8a80cdc9 scsi_test_unit_ready EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab -EXPORT_SYMBOL vmlinux 0x8a9ab370 __cgroup_bpf_run_filter_skb -EXPORT_SYMBOL vmlinux 0x8aa0835b tty_unlock -EXPORT_SYMBOL vmlinux 0x8aaaf7d8 netdev_lower_state_changed -EXPORT_SYMBOL vmlinux 0x8ab9be81 tty_flip_buffer_push +EXPORT_SYMBOL vmlinux 0x8a9f2cae security_sb_remount +EXPORT_SYMBOL vmlinux 0x8aa332a9 radix__flush_pmd_tlb_range EXPORT_SYMBOL vmlinux 0x8ac3334b net_dim_get_def_rx_moderation EXPORT_SYMBOL vmlinux 0x8ac3bb12 dma_fence_get_stub EXPORT_SYMBOL vmlinux 0x8ac743de sg_copy_buffer +EXPORT_SYMBOL vmlinux 0x8ad34bcb seg6_hmac_info_lookup EXPORT_SYMBOL vmlinux 0x8ad39905 dma_fence_remove_callback -EXPORT_SYMBOL vmlinux 0x8ae03f50 md_integrity_register +EXPORT_SYMBOL vmlinux 0x8aee6b23 kthread_stop EXPORT_SYMBOL vmlinux 0x8b0088d1 LZ4_decompress_safe_usingDict -EXPORT_SYMBOL vmlinux 0x8b01e333 sock_wake_async -EXPORT_SYMBOL vmlinux 0x8b0383fb netdev_has_upper_dev_all_rcu +EXPORT_SYMBOL vmlinux 0x8b014125 __put_page +EXPORT_SYMBOL vmlinux 0x8b04bde6 d_exact_alias EXPORT_SYMBOL vmlinux 0x8b07b51d flow_block_cb_is_busy -EXPORT_SYMBOL vmlinux 0x8b0a0544 seq_pad -EXPORT_SYMBOL vmlinux 0x8b1094e1 ip_generic_getfrag -EXPORT_SYMBOL vmlinux 0x8b1150cd dquot_alloc_inode -EXPORT_SYMBOL vmlinux 0x8b14bae9 eth_header_parse_protocol -EXPORT_SYMBOL vmlinux 0x8b49964d scsi_partsize +EXPORT_SYMBOL vmlinux 0x8b155334 irq_set_chip +EXPORT_SYMBOL vmlinux 0x8b17e962 sock_setsockopt +EXPORT_SYMBOL vmlinux 0x8b5e6b58 d_hash_and_lookup EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid -EXPORT_SYMBOL vmlinux 0x8b7b011f neigh_connected_output +EXPORT_SYMBOL vmlinux 0x8b63ae49 jbd2_journal_lock_updates EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p -EXPORT_SYMBOL vmlinux 0x8b8b6821 rproc_coredump_set_elf_info +EXPORT_SYMBOL vmlinux 0x8b89d4aa scsi_device_get +EXPORT_SYMBOL vmlinux 0x8b8fc673 vme_new_dma_list EXPORT_SYMBOL vmlinux 0x8b910be2 errseq_sample +EXPORT_SYMBOL vmlinux 0x8b9530eb input_handler_for_each_handle EXPORT_SYMBOL vmlinux 0x8b95ba41 dma_fence_signal EXPORT_SYMBOL vmlinux 0x8b9ea582 ZSTD_copyDCtx -EXPORT_SYMBOL vmlinux 0x8bad481c phy_get_c45_ids -EXPORT_SYMBOL vmlinux 0x8bb942df vio_disable_interrupts -EXPORT_SYMBOL vmlinux 0x8bc2bcba rt_mutex_base_init -EXPORT_SYMBOL vmlinux 0x8be0797b proc_symlink +EXPORT_SYMBOL vmlinux 0x8ba11783 pci_pme_capable +EXPORT_SYMBOL vmlinux 0x8baac38a mmc_gpiod_request_ro +EXPORT_SYMBOL vmlinux 0x8bc0154b pm860x_set_bits +EXPORT_SYMBOL vmlinux 0x8bc38dd9 _dev_crit +EXPORT_SYMBOL vmlinux 0x8bc9b005 udp_sk_rx_dst_set EXPORT_SYMBOL vmlinux 0x8be189ab ucc_slow_disable -EXPORT_SYMBOL vmlinux 0x8c17f71d page_mapped -EXPORT_SYMBOL vmlinux 0x8c1b9580 sync_inodes_sb -EXPORT_SYMBOL vmlinux 0x8c371f1f agp_collect_device_status -EXPORT_SYMBOL vmlinux 0x8c4c571f skb_vlan_push -EXPORT_SYMBOL vmlinux 0x8c51f1d4 genphy_loopback -EXPORT_SYMBOL vmlinux 0x8c630e53 pcie_get_mps -EXPORT_SYMBOL vmlinux 0x8c6ff2b0 qdisc_tree_reduce_backlog -EXPORT_SYMBOL vmlinux 0x8c70cb00 dqput -EXPORT_SYMBOL vmlinux 0x8c76724e pci_free_host_bridge -EXPORT_SYMBOL vmlinux 0x8c769ee5 jbd2_journal_destroy -EXPORT_SYMBOL vmlinux 0x8c79d45d tcf_idr_search +EXPORT_SYMBOL vmlinux 0x8c14b078 redraw_screen +EXPORT_SYMBOL vmlinux 0x8c193428 pci_bus_alloc_resource +EXPORT_SYMBOL vmlinux 0x8c48f196 agp_generic_alloc_by_type +EXPORT_SYMBOL vmlinux 0x8c7a662e single_open_size EXPORT_SYMBOL vmlinux 0x8c8569cb kstrtoint -EXPORT_SYMBOL vmlinux 0x8c8769e6 phy_register_fixup_for_uid -EXPORT_SYMBOL vmlinux 0x8c8a41db inode_init_once -EXPORT_SYMBOL vmlinux 0x8ca46aba md_bitmap_sync_with_cluster -EXPORT_SYMBOL vmlinux 0x8ca4e3ac udp_seq_ops -EXPORT_SYMBOL vmlinux 0x8cab0617 config_group_find_item +EXPORT_SYMBOL vmlinux 0x8ca7ec03 netpoll_send_skb EXPORT_SYMBOL vmlinux 0x8caf9305 uuid_is_valid -EXPORT_SYMBOL vmlinux 0x8cc01da8 __skb_flow_dissect EXPORT_SYMBOL vmlinux 0x8cc53d20 __par_io_config_pin EXPORT_SYMBOL vmlinux 0x8cc79cab iowrite16_rep -EXPORT_SYMBOL vmlinux 0x8ccd1a95 iov_iter_alignment -EXPORT_SYMBOL vmlinux 0x8cd63f79 jbd2_wait_inode_data -EXPORT_SYMBOL vmlinux 0x8cf8f866 rtc_add_group -EXPORT_SYMBOL vmlinux 0x8d0eb7f1 con_set_default_unimap -EXPORT_SYMBOL vmlinux 0x8d24ad08 dquot_resume +EXPORT_SYMBOL vmlinux 0x8ce378e8 user_path_at_empty +EXPORT_SYMBOL vmlinux 0x8ce4f8a1 mount_nodev +EXPORT_SYMBOL vmlinux 0x8ce63842 input_mt_sync_frame +EXPORT_SYMBOL vmlinux 0x8ce78469 fs_param_is_u64 +EXPORT_SYMBOL vmlinux 0x8d202e42 km_report EXPORT_SYMBOL vmlinux 0x8d2753bc radix_tree_gang_lookup_tag_slot -EXPORT_SYMBOL vmlinux 0x8d3f9332 skb_copy -EXPORT_SYMBOL vmlinux 0x8d435a9c scm_fp_dup -EXPORT_SYMBOL vmlinux 0x8d52287b kmem_cache_alloc_node_trace +EXPORT_SYMBOL vmlinux 0x8d2a9e3a pci_get_subsys +EXPORT_SYMBOL vmlinux 0x8d446f36 sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0x8d4e649b ps2_command EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq -EXPORT_SYMBOL vmlinux 0x8d5cd4aa tty_port_close -EXPORT_SYMBOL vmlinux 0x8d6ad965 devfreq_add_device +EXPORT_SYMBOL vmlinux 0x8d58f490 xfrm_unregister_type +EXPORT_SYMBOL vmlinux 0x8d5c4d13 memcpy_page_flushcache EXPORT_SYMBOL vmlinux 0x8d73278e hex_asc_upper -EXPORT_SYMBOL vmlinux 0x8d901911 security_inode_copy_up -EXPORT_SYMBOL vmlinux 0x8d90a7db sock_no_sendmsg_locked +EXPORT_SYMBOL vmlinux 0x8d7e277d of_mdio_find_device EXPORT_SYMBOL vmlinux 0x8d9ce724 trace_print_hex_dump_seq -EXPORT_SYMBOL vmlinux 0x8d9ffe33 flow_block_cb_decref -EXPORT_SYMBOL vmlinux 0x8da309ba sock_queue_rcv_skb -EXPORT_SYMBOL vmlinux 0x8daca325 md_unregister_thread -EXPORT_SYMBOL vmlinux 0x8dad7b5c netdev_adjacent_change_abort -EXPORT_SYMBOL vmlinux 0x8db35ebe vio_enable_interrupts -EXPORT_SYMBOL vmlinux 0x8db98ce0 blk_mq_stop_hw_queues -EXPORT_SYMBOL vmlinux 0x8dc0ea78 textsearch_register +EXPORT_SYMBOL vmlinux 0x8dc01879 scsi_report_bus_reset +EXPORT_SYMBOL vmlinux 0x8dc76928 ps2_end_command EXPORT_SYMBOL vmlinux 0x8ddd8aad schedule_timeout +EXPORT_SYMBOL vmlinux 0x8de11e57 tcf_register_action +EXPORT_SYMBOL vmlinux 0x8de4a66e pm860x_reg_write +EXPORT_SYMBOL vmlinux 0x8de912c7 xfrm_state_free +EXPORT_SYMBOL vmlinux 0x8dea77f8 kobject_put EXPORT_SYMBOL vmlinux 0x8df4afd9 qe_put_snum EXPORT_SYMBOL vmlinux 0x8df92f66 memchr_inv EXPORT_SYMBOL vmlinux 0x8df9dd10 guid_null -EXPORT_SYMBOL vmlinux 0x8e2db8e7 truncate_inode_pages_final -EXPORT_SYMBOL vmlinux 0x8e37cf46 jbd2_journal_free_reserved -EXPORT_SYMBOL vmlinux 0x8e39d6b6 pci_bus_claim_resources -EXPORT_SYMBOL vmlinux 0x8e43082a arch_free_page -EXPORT_SYMBOL vmlinux 0x8e464d54 ata_link_printk -EXPORT_SYMBOL vmlinux 0x8e46a3b9 dcb_ieee_setapp +EXPORT_SYMBOL vmlinux 0x8e176c9b blk_integrity_compare +EXPORT_SYMBOL vmlinux 0x8e22f1b8 splice_direct_to_actor +EXPORT_SYMBOL vmlinux 0x8e27ffb3 lookup_one_len_unlocked +EXPORT_SYMBOL vmlinux 0x8e3e0f7d fault_in_readable +EXPORT_SYMBOL vmlinux 0x8e3ecb83 xfrm_register_km EXPORT_SYMBOL vmlinux 0x8e4c60a3 cpm_muram_dma -EXPORT_SYMBOL vmlinux 0x8e50adc4 configfs_unregister_group -EXPORT_SYMBOL vmlinux 0x8e57a4fe pci_map_rom -EXPORT_SYMBOL vmlinux 0x8e6755fb scsi_bios_ptable -EXPORT_SYMBOL vmlinux 0x8e68c977 clk_add_alias -EXPORT_SYMBOL vmlinux 0x8e693313 alloc_fcdev +EXPORT_SYMBOL vmlinux 0x8e77321e pnv_pci_get_phb_node +EXPORT_SYMBOL vmlinux 0x8e7b2b75 agp_allocate_memory EXPORT_SYMBOL vmlinux 0x8e93bd24 security_secctx_to_secid -EXPORT_SYMBOL vmlinux 0x8e96b4ef devfreq_suspend_device -EXPORT_SYMBOL vmlinux 0x8eaeae9a flush_signals -EXPORT_SYMBOL vmlinux 0x8eb44c26 devm_pci_remap_cfg_resource -EXPORT_SYMBOL vmlinux 0x8eb8f827 build_skb_around -EXPORT_SYMBOL vmlinux 0x8ebbc706 flush_all_to_thread -EXPORT_SYMBOL vmlinux 0x8ec582a0 rproc_set_firmware -EXPORT_SYMBOL vmlinux 0x8ecca488 unregister_md_personality +EXPORT_SYMBOL vmlinux 0x8e9aabe5 security_d_instantiate +EXPORT_SYMBOL vmlinux 0x8ea105e3 path_is_mountpoint +EXPORT_SYMBOL vmlinux 0x8ebe36dd inet_stream_ops +EXPORT_SYMBOL vmlinux 0x8ec09393 security_inode_setsecctx +EXPORT_SYMBOL vmlinux 0x8ec52f26 make_kprojid +EXPORT_SYMBOL vmlinux 0x8ecc23a5 inet_ioctl +EXPORT_SYMBOL vmlinux 0x8ee950bb try_to_free_buffers EXPORT_SYMBOL vmlinux 0x8eec42b2 __debugger_bpt -EXPORT_SYMBOL vmlinux 0x8ef4cfb9 sget +EXPORT_SYMBOL vmlinux 0x8ef99f84 _dev_notice +EXPORT_SYMBOL vmlinux 0x8efafd49 mdiobus_read EXPORT_SYMBOL vmlinux 0x8f01afd6 twl6030_interrupt_mask -EXPORT_SYMBOL vmlinux 0x8f559478 buffer_migrate_page +EXPORT_SYMBOL vmlinux 0x8f102930 phy_detach +EXPORT_SYMBOL vmlinux 0x8f5022eb sock_bind_add +EXPORT_SYMBOL vmlinux 0x8f53a868 dev_uc_del +EXPORT_SYMBOL vmlinux 0x8f585bd4 radix__flush_tlb_page +EXPORT_SYMBOL vmlinux 0x8f67fe8a dcache_readdir EXPORT_SYMBOL vmlinux 0x8f68da79 __cpu_online_mask -EXPORT_SYMBOL vmlinux 0x8f7b89e2 truncate_setsize +EXPORT_SYMBOL vmlinux 0x8f796e56 of_phy_deregister_fixed_link +EXPORT_SYMBOL vmlinux 0x8f90bfc9 of_node_to_nid EXPORT_SYMBOL vmlinux 0x8f996a30 ethtool_convert_legacy_u32_to_link_mode -EXPORT_SYMBOL vmlinux 0x8f999b78 devm_request_resource -EXPORT_SYMBOL vmlinux 0x8fb18c6b sock_gettstamp -EXPORT_SYMBOL vmlinux 0x8fd94aba put_watch_queue -EXPORT_SYMBOL vmlinux 0x8fece56f read_cache_pages -EXPORT_SYMBOL vmlinux 0x8ff3ec14 pps_register_source +EXPORT_SYMBOL vmlinux 0x8fb0e923 follow_pfn EXPORT_SYMBOL vmlinux 0x8ff89ed0 seg6_hmac_exit +EXPORT_SYMBOL vmlinux 0x8ffa09bb ppc_md +EXPORT_SYMBOL vmlinux 0x8ffc4ed7 nexthop_bucket_set_hw_flags EXPORT_SYMBOL vmlinux 0x90006be6 dm_kcopyd_client_flush -EXPORT_SYMBOL vmlinux 0x90049b40 pipe_lock +EXPORT_SYMBOL vmlinux 0x90116cb7 devm_extcon_register_notifier +EXPORT_SYMBOL vmlinux 0x901e6d5c udp_disconnect EXPORT_SYMBOL vmlinux 0x9023361b proc_dointvec_minmax -EXPORT_SYMBOL vmlinux 0x90241bb3 import_single_range -EXPORT_SYMBOL vmlinux 0x902c7320 inet_del_offload +EXPORT_SYMBOL vmlinux 0x90253177 scsi_ioctl +EXPORT_SYMBOL vmlinux 0x902a60d2 dup_iter EXPORT_SYMBOL vmlinux 0x902d8722 vme_slave_get +EXPORT_SYMBOL vmlinux 0x9035fe0b jbd2_journal_finish_inode_data_buffers +EXPORT_SYMBOL vmlinux 0x903bd4fc devfreq_unregister_notifier EXPORT_SYMBOL vmlinux 0x905695ab sg_copy_from_buffer EXPORT_SYMBOL vmlinux 0x90576ec4 vmemdup_user -EXPORT_SYMBOL vmlinux 0x905b0369 pcim_iomap -EXPORT_SYMBOL vmlinux 0x90681f99 jbd2_journal_release_jbd_inode -EXPORT_SYMBOL vmlinux 0x9073dde1 ethtool_op_get_ts_info -EXPORT_SYMBOL vmlinux 0x9083fb8d pci_resize_resource -EXPORT_SYMBOL vmlinux 0x90cb89a6 ethtool_rx_flow_rule_create -EXPORT_SYMBOL vmlinux 0x90e7cf2c km_query -EXPORT_SYMBOL vmlinux 0x90fdc99e phy_loopback -EXPORT_SYMBOL vmlinux 0x90fe0ce1 dev_getfirstbyhwtype -EXPORT_SYMBOL vmlinux 0x9107d3fe msi_bitmap_free_hwirqs -EXPORT_SYMBOL vmlinux 0x910b3657 fscrypt_encrypt_pagecache_blocks -EXPORT_SYMBOL vmlinux 0x91117b63 sdev_prefix_printk +EXPORT_SYMBOL vmlinux 0x9062b8be configfs_register_default_group +EXPORT_SYMBOL vmlinux 0x906692f4 __page_frag_cache_drain +EXPORT_SYMBOL vmlinux 0x907796c5 devm_pci_remap_iospace +EXPORT_SYMBOL vmlinux 0x908d75b6 write_cache_pages +EXPORT_SYMBOL vmlinux 0x90c1106a request_key_with_auxdata +EXPORT_SYMBOL vmlinux 0x90d9ee84 ip_route_me_harder +EXPORT_SYMBOL vmlinux 0x90e2b5d7 kobject_set_name +EXPORT_SYMBOL vmlinux 0x90ebd00d security_inode_notifysecctx +EXPORT_SYMBOL vmlinux 0x9102940f mac_find_mode +EXPORT_SYMBOL vmlinux 0x9109ef34 kfree_skb +EXPORT_SYMBOL vmlinux 0x910a6fe7 md_finish_reshape EXPORT_SYMBOL vmlinux 0x912557ce rtas_busy_delay -EXPORT_SYMBOL vmlinux 0x9126cf4b submit_bio -EXPORT_SYMBOL vmlinux 0x913388ab __genphy_config_aneg -EXPORT_SYMBOL vmlinux 0x9138e416 devm_devfreq_add_device +EXPORT_SYMBOL vmlinux 0x912bd20c nf_unregister_net_hook +EXPORT_SYMBOL vmlinux 0x913bdb3b i2c_smbus_write_word_data +EXPORT_SYMBOL vmlinux 0x914164cc devm_of_clk_del_provider +EXPORT_SYMBOL vmlinux 0x914b3b8e remap_pfn_range +EXPORT_SYMBOL vmlinux 0x915be020 tcp_time_wait EXPORT_SYMBOL vmlinux 0x915e1208 tb_ticks_per_usec EXPORT_SYMBOL vmlinux 0x9166fada strncpy +EXPORT_SYMBOL vmlinux 0x916755d7 page_pool_alloc_frag EXPORT_SYMBOL vmlinux 0x916758a3 node_states EXPORT_SYMBOL vmlinux 0x9168c033 rtas_get_sensor -EXPORT_SYMBOL vmlinux 0x9195008c inode_init_owner +EXPORT_SYMBOL vmlinux 0x9171df24 of_phy_find_device +EXPORT_SYMBOL vmlinux 0x91877673 try_module_get EXPORT_SYMBOL vmlinux 0x919c58f3 __clzsi2 EXPORT_SYMBOL vmlinux 0x919d1163 tty_termios_baud_rate EXPORT_SYMBOL vmlinux 0x91a488ac __netdev_alloc_frag_align EXPORT_SYMBOL vmlinux 0x91a7b1da qdisc_class_hash_remove -EXPORT_SYMBOL vmlinux 0x91aeb419 config_item_get_unless_zero EXPORT_SYMBOL vmlinux 0x91c0980e icst_hz -EXPORT_SYMBOL vmlinux 0x91cae3db phy_start_cable_test_tdr -EXPORT_SYMBOL vmlinux 0x91ee7c1e fscrypt_free_bounce_page +EXPORT_SYMBOL vmlinux 0x91cf6338 srp_timed_out +EXPORT_SYMBOL vmlinux 0x91d1636b mfd_add_devices EXPORT_SYMBOL vmlinux 0x91f68ea1 __hw_addr_sync -EXPORT_SYMBOL vmlinux 0x92246e1a dcache_dir_open -EXPORT_SYMBOL vmlinux 0x9228068b get_tree_single +EXPORT_SYMBOL vmlinux 0x91f9734b __fib6_flush_trees +EXPORT_SYMBOL vmlinux 0x9208be16 serio_unregister_child_port +EXPORT_SYMBOL vmlinux 0x920dc5d0 d_move +EXPORT_SYMBOL vmlinux 0x920e613a fiemap_prep +EXPORT_SYMBOL vmlinux 0x92141dc7 tcf_em_register EXPORT_SYMBOL vmlinux 0x922f45a6 __bitmap_clear +EXPORT_SYMBOL vmlinux 0x9235c400 __qdisc_calculate_pkt_len EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get +EXPORT_SYMBOL vmlinux 0x92498e19 jbd2_journal_submit_inode_data_buffers EXPORT_SYMBOL vmlinux 0x9251f0d2 wait_for_completion EXPORT_SYMBOL vmlinux 0x9258c776 hdmi_vendor_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0x925c6ff9 param_ops_ulong -EXPORT_SYMBOL vmlinux 0x925d36f3 genphy_c37_read_status -EXPORT_SYMBOL vmlinux 0x9274cc8e fb_set_suspend -EXPORT_SYMBOL vmlinux 0x9288a5a0 param_ops_hexint +EXPORT_SYMBOL vmlinux 0x927506d1 rawv6_mh_filter_unregister +EXPORT_SYMBOL vmlinux 0x928f0f1f pci_wait_for_pending_transaction EXPORT_SYMBOL vmlinux 0x9291cd3b memdup_user EXPORT_SYMBOL vmlinux 0x92997ed8 _printk -EXPORT_SYMBOL vmlinux 0x92a7cae4 generic_file_fsync +EXPORT_SYMBOL vmlinux 0x92b5d053 configfs_unregister_group EXPORT_SYMBOL vmlinux 0x92b9b180 slash_name -EXPORT_SYMBOL vmlinux 0x92cbdcda xattr_supported_namespace +EXPORT_SYMBOL vmlinux 0x92cd0f5a twl6040_set_pll EXPORT_SYMBOL vmlinux 0x92d5838e request_threaded_irq -EXPORT_SYMBOL vmlinux 0x92ddb47e pci_enable_device_mem -EXPORT_SYMBOL vmlinux 0x92de7ad3 __traceiter_spi_transfer_stop +EXPORT_SYMBOL vmlinux 0x92e0ca14 jbd2__journal_start EXPORT_SYMBOL vmlinux 0x92ec510d jiffies64_to_msecs -EXPORT_SYMBOL vmlinux 0x92f193c8 devm_clk_get EXPORT_SYMBOL vmlinux 0x92fa5abb vme_lm_detach EXPORT_SYMBOL vmlinux 0x93022ba6 __scsi_format_command EXPORT_SYMBOL vmlinux 0x9305f8e6 cpufreq_get -EXPORT_SYMBOL vmlinux 0x930df699 page_pool_create -EXPORT_SYMBOL vmlinux 0x932d4616 __dquot_alloc_space -EXPORT_SYMBOL vmlinux 0x932e4120 gnet_stats_start_copy_compat -EXPORT_SYMBOL vmlinux 0x934294fe netlink_rcv_skb -EXPORT_SYMBOL vmlinux 0x93666d06 tcp_time_wait -EXPORT_SYMBOL vmlinux 0x936bd284 vme_bus_type +EXPORT_SYMBOL vmlinux 0x930cd42a nonseekable_open +EXPORT_SYMBOL vmlinux 0x93124b21 fbcon_update_vcs +EXPORT_SYMBOL vmlinux 0x9329d4c0 iov_iter_single_seg_count +EXPORT_SYMBOL vmlinux 0x932a071f dentry_open +EXPORT_SYMBOL vmlinux 0x932cfdc9 xfrm_policy_walk +EXPORT_SYMBOL vmlinux 0x93668fde phy_get_pause +EXPORT_SYMBOL vmlinux 0x9372555f scsi_remove_device +EXPORT_SYMBOL vmlinux 0x93740fbc config_item_set_name EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid -EXPORT_SYMBOL vmlinux 0x93828aa2 netif_set_xps_queue -EXPORT_SYMBOL vmlinux 0x939e0e67 tty_devnum -EXPORT_SYMBOL vmlinux 0x939f54ab padata_do_parallel +EXPORT_SYMBOL vmlinux 0x938be2e6 sock_rfree +EXPORT_SYMBOL vmlinux 0x93907f2d pmem_sector_size EXPORT_SYMBOL vmlinux 0x93a6e0b2 io_schedule +EXPORT_SYMBOL vmlinux 0x93aee8e6 kill_pid EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier -EXPORT_SYMBOL vmlinux 0x93d96e6d pm860x_page_reg_write -EXPORT_SYMBOL vmlinux 0x93e176dd phy_advertise_supported -EXPORT_SYMBOL vmlinux 0x93e2acc3 configfs_depend_item_unlocked -EXPORT_SYMBOL vmlinux 0x93ed977c inet_dgram_connect +EXPORT_SYMBOL vmlinux 0x93c13da2 tty_unlock +EXPORT_SYMBOL vmlinux 0x93c9d6db blk_execute_rq +EXPORT_SYMBOL vmlinux 0x93d84c0b memory_cgrp_subsys +EXPORT_SYMBOL vmlinux 0x93e14019 rt_mutex_base_init +EXPORT_SYMBOL vmlinux 0x93edc78b netdev_adjacent_change_commit +EXPORT_SYMBOL vmlinux 0x93ef9544 tcp_rcv_established EXPORT_SYMBOL vmlinux 0x93f12561 nla_put -EXPORT_SYMBOL vmlinux 0x93f4147c truncate_pagecache -EXPORT_SYMBOL vmlinux 0x93fea44e blk_mq_start_request +EXPORT_SYMBOL vmlinux 0x93f69612 jbd2_journal_invalidatepage +EXPORT_SYMBOL vmlinux 0x9415f7eb security_sock_rcv_skb +EXPORT_SYMBOL vmlinux 0x94163b60 dquot_free_inode +EXPORT_SYMBOL vmlinux 0x941f5801 i2c_transfer +EXPORT_SYMBOL vmlinux 0x9420d0d8 __d_lookup_done +EXPORT_SYMBOL vmlinux 0x94258a2e dmam_pool_create EXPORT_SYMBOL vmlinux 0x9428f816 dim_turn -EXPORT_SYMBOL vmlinux 0x9431038f skb_free_datagram -EXPORT_SYMBOL vmlinux 0x943c47bc tcp_make_synack -EXPORT_SYMBOL vmlinux 0x9441d7f3 security_sock_graft EXPORT_SYMBOL vmlinux 0x944375db _totalram_pages -EXPORT_SYMBOL vmlinux 0x9447ca85 mr_mfc_find_any EXPORT_SYMBOL vmlinux 0x944a564d is_console_locked EXPORT_SYMBOL vmlinux 0x94667988 trace_print_flags_seq EXPORT_SYMBOL vmlinux 0x946a23b5 default_amr -EXPORT_SYMBOL vmlinux 0x946c64cc simple_open -EXPORT_SYMBOL vmlinux 0x947a6f06 vfs_get_super -EXPORT_SYMBOL vmlinux 0x9484677f follow_up -EXPORT_SYMBOL vmlinux 0x9495a12b nf_register_net_hooks +EXPORT_SYMBOL vmlinux 0x94811ede phy_connect_direct +EXPORT_SYMBOL vmlinux 0x94838fe4 lookup_one +EXPORT_SYMBOL vmlinux 0x9491f52b set_posix_acl EXPORT_SYMBOL vmlinux 0x94961283 vunmap +EXPORT_SYMBOL vmlinux 0x94a3b925 devm_register_netdev EXPORT_SYMBOL vmlinux 0x94a5fd84 proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0x94a8ec00 mdiobus_scan EXPORT_SYMBOL vmlinux 0x94a9a4aa _raw_spin_lock_irqsave EXPORT_SYMBOL vmlinux 0x94bf03ca utf8_to_utf32 -EXPORT_SYMBOL vmlinux 0x94c80e8e srp_reconnect_rport +EXPORT_SYMBOL vmlinux 0x94dec8fb pps_event EXPORT_SYMBOL vmlinux 0x94e50ad4 call_fib_notifier -EXPORT_SYMBOL vmlinux 0x94e63e46 find_get_pages_range_tag -EXPORT_SYMBOL vmlinux 0x95073fc6 blk_sync_queue +EXPORT_SYMBOL vmlinux 0x94eb0984 pci_irq_vector +EXPORT_SYMBOL vmlinux 0x94ef08b8 simple_getattr +EXPORT_SYMBOL vmlinux 0x9503ed1f tcf_block_get_ext EXPORT_SYMBOL vmlinux 0x9507c90f copy_fsxattr_to_user -EXPORT_SYMBOL vmlinux 0x950fd34f blk_pm_runtime_init +EXPORT_SYMBOL vmlinux 0x950dc0d4 reuseport_migrate_sock EXPORT_SYMBOL vmlinux 0x9514151a _mcount -EXPORT_SYMBOL vmlinux 0x95153556 jbd2_journal_abort -EXPORT_SYMBOL vmlinux 0x9518c146 __ip_mc_dec_group -EXPORT_SYMBOL vmlinux 0x952bd1c5 xsk_uses_need_wakeup -EXPORT_SYMBOL vmlinux 0x954bcc74 cdev_set_parent +EXPORT_SYMBOL vmlinux 0x95153fd7 rproc_add_carveout +EXPORT_SYMBOL vmlinux 0x952c2cdc module_layout +EXPORT_SYMBOL vmlinux 0x952fe1d7 backlight_force_update +EXPORT_SYMBOL vmlinux 0x9540b9df tcf_idr_search EXPORT_SYMBOL vmlinux 0x954cef6f init_on_alloc EXPORT_SYMBOL vmlinux 0x954f099c idr_preload -EXPORT_SYMBOL vmlinux 0x955cd4ab unregister_netdevice_queue -EXPORT_SYMBOL vmlinux 0x9578f36f srp_start_tl_fail_timers -EXPORT_SYMBOL vmlinux 0x95955eaf inet_pton_with_scope -EXPORT_SYMBOL vmlinux 0x95a27222 remove_proc_entry -EXPORT_SYMBOL vmlinux 0x95b2c676 __scsi_print_sense +EXPORT_SYMBOL vmlinux 0x9550c6c7 tty_port_open +EXPORT_SYMBOL vmlinux 0x95646c8d sock_no_connect +EXPORT_SYMBOL vmlinux 0x95a93556 shmem_aops EXPORT_SYMBOL vmlinux 0x95c6c48a qe_pin_set_gpio -EXPORT_SYMBOL vmlinux 0x95d8689f __scm_send -EXPORT_SYMBOL vmlinux 0x95d8a12f vfs_symlink -EXPORT_SYMBOL vmlinux 0x95fd2fab __blk_mq_end_request -EXPORT_SYMBOL vmlinux 0x9610ee7f console_stop -EXPORT_SYMBOL vmlinux 0x9616a2eb inode_io_list_del -EXPORT_SYMBOL vmlinux 0x96185710 eth_gro_complete -EXPORT_SYMBOL vmlinux 0x961b2346 take_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0x95c721a6 kmem_cache_shrink +EXPORT_SYMBOL vmlinux 0x95ca12d1 passthru_features_check +EXPORT_SYMBOL vmlinux 0x95d040f9 __mmap_lock_do_trace_acquire_returned +EXPORT_SYMBOL vmlinux 0x95d6bb05 _copy_from_iter_nocache +EXPORT_SYMBOL vmlinux 0x95e5903a giveup_altivec +EXPORT_SYMBOL vmlinux 0x95f35386 param_set_long +EXPORT_SYMBOL vmlinux 0x95f65720 qdisc_put_unlocked +EXPORT_SYMBOL vmlinux 0x960a4c7e tcp_select_initial_window +EXPORT_SYMBOL vmlinux 0x960e9faa inet_frag_pull_head +EXPORT_SYMBOL vmlinux 0x961af46b __mmap_lock_do_trace_start_locking +EXPORT_SYMBOL vmlinux 0x96228cc6 kfree_skb_partial EXPORT_SYMBOL vmlinux 0x962c4977 clkdev_add -EXPORT_SYMBOL vmlinux 0x9648978d io_uring_get_socket -EXPORT_SYMBOL vmlinux 0x964eb69b neigh_lookup_nodev -EXPORT_SYMBOL vmlinux 0x9658a39f xfrm_state_lookup_byspi -EXPORT_SYMBOL vmlinux 0x96744566 netdev_warn -EXPORT_SYMBOL vmlinux 0x9677f8d1 scsi_add_device -EXPORT_SYMBOL vmlinux 0x968054c8 sock_no_getname +EXPORT_SYMBOL vmlinux 0x96340bb9 input_register_handler +EXPORT_SYMBOL vmlinux 0x9640553e sock_set_reuseaddr +EXPORT_SYMBOL vmlinux 0x965cf583 par_io_of_config +EXPORT_SYMBOL vmlinux 0x96831f6c inet_csk_reqsk_queue_drop_and_put EXPORT_SYMBOL vmlinux 0x96848186 scnprintf +EXPORT_SYMBOL vmlinux 0x96873a55 inet_select_addr +EXPORT_SYMBOL vmlinux 0x968af1eb filemap_fdatawrite_wbc EXPORT_SYMBOL vmlinux 0x969987fc lockref_get_not_dead EXPORT_SYMBOL vmlinux 0x969f154d trace_seq_hex_dump EXPORT_SYMBOL vmlinux 0x96b29254 strncasecmp -EXPORT_SYMBOL vmlinux 0x96bb9f80 input_open_device -EXPORT_SYMBOL vmlinux 0x96bbfaa8 flow_block_cb_free +EXPORT_SYMBOL vmlinux 0x96b2c10f pci_dev_put +EXPORT_SYMBOL vmlinux 0x96b69cf4 ip_tunnel_parse_protocol EXPORT_SYMBOL vmlinux 0x96c17136 fb_var_to_videomode EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string -EXPORT_SYMBOL vmlinux 0x96d03c6e devm_release_resource +EXPORT_SYMBOL vmlinux 0x96cf8ba4 mmc_unregister_driver EXPORT_SYMBOL vmlinux 0x96fab350 dim_park_on_top -EXPORT_SYMBOL vmlinux 0x9702b682 iov_iter_get_pages -EXPORT_SYMBOL vmlinux 0x970ac031 netdev_set_num_tc +EXPORT_SYMBOL vmlinux 0x9716620d filemap_fdatawait_range EXPORT_SYMBOL vmlinux 0x971ec27c hvc_put_chars -EXPORT_SYMBOL vmlinux 0x973911a7 filemap_map_pages +EXPORT_SYMBOL vmlinux 0x9720cc4d tcp_filter +EXPORT_SYMBOL vmlinux 0x97318338 mdiobus_write EXPORT_SYMBOL vmlinux 0x973c09e5 __pgd_index_size EXPORT_SYMBOL vmlinux 0x9746eb89 ZSTD_decompressBegin_usingDict -EXPORT_SYMBOL vmlinux 0x974817e9 jbd2_journal_blocks_per_page -EXPORT_SYMBOL vmlinux 0x974f3ddc scsi_print_command +EXPORT_SYMBOL vmlinux 0x9751db44 tcf_generic_walker +EXPORT_SYMBOL vmlinux 0x9766cfa1 md_bitmap_unplug +EXPORT_SYMBOL vmlinux 0x976ab7df of_parse_phandle +EXPORT_SYMBOL vmlinux 0x976ffd34 vga_get +EXPORT_SYMBOL vmlinux 0x97886bc5 ip_check_defrag EXPORT_SYMBOL vmlinux 0x97934ecf del_timer_sync -EXPORT_SYMBOL vmlinux 0x979f4757 radix__flush_pmd_tlb_range +EXPORT_SYMBOL vmlinux 0x979f9918 ipv6_getsockopt EXPORT_SYMBOL vmlinux 0x97a57333 crc_t10dif_update +EXPORT_SYMBOL vmlinux 0x97a8342b inet_recvmsg +EXPORT_SYMBOL vmlinux 0x97aa99ef tcf_exts_validate EXPORT_SYMBOL vmlinux 0x97adb487 utf8s_to_utf16s EXPORT_SYMBOL vmlinux 0x97bdfa60 scsi_dev_info_remove_list -EXPORT_SYMBOL vmlinux 0x97e19f52 registered_fb +EXPORT_SYMBOL vmlinux 0x97d7c49c uart_get_baud_rate +EXPORT_SYMBOL vmlinux 0x97dd2818 vmalloc_to_page +EXPORT_SYMBOL vmlinux 0x97e63aa0 vfs_setpos EXPORT_SYMBOL vmlinux 0x97ed2212 __tracepoint_spi_transfer_start +EXPORT_SYMBOL vmlinux 0x97efa5e1 tcp_seq_next EXPORT_SYMBOL vmlinux 0x97f03d6f vio_cmo_entitlement_update -EXPORT_SYMBOL vmlinux 0x9820b1e5 eth_header -EXPORT_SYMBOL vmlinux 0x9829f664 d_add +EXPORT_SYMBOL vmlinux 0x9802013a sk_capable +EXPORT_SYMBOL vmlinux 0x98172900 tcf_qevent_validate_change +EXPORT_SYMBOL vmlinux 0x98185fbd sock_edemux EXPORT_SYMBOL vmlinux 0x9829fc11 __kfifo_out_peek_r -EXPORT_SYMBOL vmlinux 0x9831ac81 ioc_lookup_icq -EXPORT_SYMBOL vmlinux 0x98412860 ps2_handle_ack +EXPORT_SYMBOL vmlinux 0x983dbc9a blk_mq_rq_cpu EXPORT_SYMBOL vmlinux 0x985b14fd percpu_counter_set -EXPORT_SYMBOL vmlinux 0x985bf187 skb_append -EXPORT_SYMBOL vmlinux 0x986464ad phy_attach -EXPORT_SYMBOL vmlinux 0x987eb056 icmp_ndo_send -EXPORT_SYMBOL vmlinux 0x98869b53 blk_mq_start_hw_queue -EXPORT_SYMBOL vmlinux 0x989598e5 arp_tbl -EXPORT_SYMBOL vmlinux 0x989a2492 init_pseudo -EXPORT_SYMBOL vmlinux 0x98c306ee jbd2_journal_load +EXPORT_SYMBOL vmlinux 0x9860b8af agp_generic_free_by_type +EXPORT_SYMBOL vmlinux 0x986ec7af pci_scan_single_device +EXPORT_SYMBOL vmlinux 0x988bfff5 param_ops_charp +EXPORT_SYMBOL vmlinux 0x98936885 pci_get_class +EXPORT_SYMBOL vmlinux 0x9896444e tcf_get_next_proto +EXPORT_SYMBOL vmlinux 0x989b7351 __napi_alloc_skb +EXPORT_SYMBOL vmlinux 0x98c6eddc scsi_scan_host EXPORT_SYMBOL vmlinux 0x98c89ade security_xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x98ced152 tty_port_carrier_raised EXPORT_SYMBOL vmlinux 0x98cf60b3 strlen EXPORT_SYMBOL vmlinux 0x98e508ef ignore_console_lock_warning -EXPORT_SYMBOL vmlinux 0x98f3bebe inc_node_page_state -EXPORT_SYMBOL vmlinux 0x991d4b82 create_empty_buffers -EXPORT_SYMBOL vmlinux 0x991ed462 ip_sock_set_recverr -EXPORT_SYMBOL vmlinux 0x99375402 __cgroup_bpf_run_filter_sk +EXPORT_SYMBOL vmlinux 0x98e7f599 _copy_to_iter +EXPORT_SYMBOL vmlinux 0x98ea7693 generic_read_dir +EXPORT_SYMBOL vmlinux 0x990f5aea dma_alloc_attrs +EXPORT_SYMBOL vmlinux 0x992a2940 pci_dev_driver EXPORT_SYMBOL vmlinux 0x9939eba0 backlight_unregister_notifier -EXPORT_SYMBOL vmlinux 0x99489c08 generic_fadvise -EXPORT_SYMBOL vmlinux 0x994b254f mount_subtree +EXPORT_SYMBOL vmlinux 0x994446e7 sock_wake_async EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable -EXPORT_SYMBOL vmlinux 0x99822fdf d_tmpfile -EXPORT_SYMBOL vmlinux 0x9982ae0d __hw_addr_unsync_dev -EXPORT_SYMBOL vmlinux 0x99935518 pm860x_reg_read +EXPORT_SYMBOL vmlinux 0x9961bd5c unix_get_socket +EXPORT_SYMBOL vmlinux 0x9969ca68 devm_release_resource EXPORT_SYMBOL vmlinux 0x999e8297 vfree -EXPORT_SYMBOL vmlinux 0x99a4da67 uart_get_divisor -EXPORT_SYMBOL vmlinux 0x99bdc1a9 netdev_class_create_file_ns -EXPORT_SYMBOL vmlinux 0x99ce3e91 tcp_sock_set_syncnt +EXPORT_SYMBOL vmlinux 0x99bcce9c sk_free EXPORT_SYMBOL vmlinux 0x99d472b1 net_dim_get_rx_moderation -EXPORT_SYMBOL vmlinux 0x99d96822 security_unix_may_send EXPORT_SYMBOL vmlinux 0x99daa9bf try_offline_node -EXPORT_SYMBOL vmlinux 0x99de85f0 skb_realloc_headroom -EXPORT_SYMBOL vmlinux 0x99f0d705 bprm_change_interp -EXPORT_SYMBOL vmlinux 0x99f5940d mipi_dsi_generic_write +EXPORT_SYMBOL vmlinux 0x99dc3446 input_match_device_id +EXPORT_SYMBOL vmlinux 0x99f065ea vc_resize EXPORT_SYMBOL vmlinux 0x99f9638f __napi_alloc_frag_align -EXPORT_SYMBOL vmlinux 0x9a01bf56 user_revoke EXPORT_SYMBOL vmlinux 0x9a0c3a18 vme_unregister_error_handler -EXPORT_SYMBOL vmlinux 0x9a0d9dc2 mmc_hw_reset -EXPORT_SYMBOL vmlinux 0x9a0e4cec twl6040_get_sysclk -EXPORT_SYMBOL vmlinux 0x9a1808ad rproc_vq_interrupt -EXPORT_SYMBOL vmlinux 0x9a19ec50 make_flow_keys_digest +EXPORT_SYMBOL vmlinux 0x9a1862b3 tcf_classify EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk -EXPORT_SYMBOL vmlinux 0x9a485ab2 sock_common_recvmsg +EXPORT_SYMBOL vmlinux 0x9a43ae14 nvdimm_namespace_capacity EXPORT_SYMBOL vmlinux 0x9a583306 netlbl_bitmap_walk -EXPORT_SYMBOL vmlinux 0x9a61963b inet_confirm_addr -EXPORT_SYMBOL vmlinux 0x9a65b6e0 scsi_eh_finish_cmd -EXPORT_SYMBOL vmlinux 0x9a677fb7 scsi_print_sense_hdr -EXPORT_SYMBOL vmlinux 0x9a6c7957 netdev_master_upper_dev_get -EXPORT_SYMBOL vmlinux 0x9a6f3d41 set_anon_super_fc -EXPORT_SYMBOL vmlinux 0x9a6f7c67 of_find_node_with_property +EXPORT_SYMBOL vmlinux 0x9a594698 dev_set_promiscuity EXPORT_SYMBOL vmlinux 0x9a73b032 ZSTD_initDStream_usingDDict -EXPORT_SYMBOL vmlinux 0x9a78828f __netlink_kernel_create -EXPORT_SYMBOL vmlinux 0x9a7f0872 scsi_rescan_device -EXPORT_SYMBOL vmlinux 0x9aa29f3f of_pci_range_to_resource +EXPORT_SYMBOL vmlinux 0x9a903918 tcp_v4_md5_lookup +EXPORT_SYMBOL vmlinux 0x9aaeab5a rdmacg_uncharge EXPORT_SYMBOL vmlinux 0x9aaeefce sysctl_nf_log_all_netns -EXPORT_SYMBOL vmlinux 0x9abdf4ce dev_lstats_read -EXPORT_SYMBOL vmlinux 0x9ac048a2 phy_config_aneg -EXPORT_SYMBOL vmlinux 0x9ac8478f pskb_expand_head +EXPORT_SYMBOL vmlinux 0x9ab21c24 fs_param_is_string EXPORT_SYMBOL vmlinux 0x9acde112 gtm_ack_timer16 EXPORT_SYMBOL vmlinux 0x9ae47436 _find_last_bit -EXPORT_SYMBOL vmlinux 0x9b1a0d4c genphy_write_mmd_unsupported +EXPORT_SYMBOL vmlinux 0x9afd1f85 tcf_idr_create +EXPORT_SYMBOL vmlinux 0x9afd68fa prepare_kernel_cred +EXPORT_SYMBOL vmlinux 0x9b06e740 netdev_adjacent_change_abort +EXPORT_SYMBOL vmlinux 0x9b0d5c51 pcie_relaxed_ordering_enabled EXPORT_SYMBOL vmlinux 0x9b2560b9 gf128mul_init_4k_bbe +EXPORT_SYMBOL vmlinux 0x9b3330d2 tcp_ld_RTO_revert EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier EXPORT_SYMBOL vmlinux 0x9b420478 utf8_strncasecmp +EXPORT_SYMBOL vmlinux 0x9b44d833 i2c_del_adapter EXPORT_SYMBOL vmlinux 0x9b496b21 posix_acl_alloc -EXPORT_SYMBOL vmlinux 0x9b4ad086 input_grab_device -EXPORT_SYMBOL vmlinux 0x9b612c60 ww_mutex_unlock -EXPORT_SYMBOL vmlinux 0x9b704007 param_ops_bool -EXPORT_SYMBOL vmlinux 0x9b94e876 md_check_recovery -EXPORT_SYMBOL vmlinux 0x9baeebca neigh_table_clear -EXPORT_SYMBOL vmlinux 0x9bb07fec ip_check_defrag +EXPORT_SYMBOL vmlinux 0x9b6ce8cf vfs_mkobj +EXPORT_SYMBOL vmlinux 0x9b90c197 ipv6_chk_addr +EXPORT_SYMBOL vmlinux 0x9ba08838 xp_dma_unmap EXPORT_SYMBOL vmlinux 0x9bb4e317 ioread32be -EXPORT_SYMBOL vmlinux 0x9bbcaa0a dev_addr_del -EXPORT_SYMBOL vmlinux 0x9bc264d5 scsi_host_put +EXPORT_SYMBOL vmlinux 0x9bbedc16 flow_indr_dev_register EXPORT_SYMBOL vmlinux 0x9bd048a5 cpumask_next_and -EXPORT_SYMBOL vmlinux 0x9bdca048 mroute6_is_socket -EXPORT_SYMBOL vmlinux 0x9bed929d jbd2_journal_errno -EXPORT_SYMBOL vmlinux 0x9bee18a7 unpin_user_pages_dirty_lock -EXPORT_SYMBOL vmlinux 0x9bef0b96 skb_store_bits -EXPORT_SYMBOL vmlinux 0x9c0dd6fd register_filesystem -EXPORT_SYMBOL vmlinux 0x9c11f115 neigh_parms_release -EXPORT_SYMBOL vmlinux 0x9c232d97 skb_headers_offset_update -EXPORT_SYMBOL vmlinux 0x9c3a8afb __insert_inode_hash -EXPORT_SYMBOL vmlinux 0x9c48f02f tty_unregister_driver +EXPORT_SYMBOL vmlinux 0x9bd2fc02 __cancel_dirty_page +EXPORT_SYMBOL vmlinux 0x9be43a67 pci_set_power_state +EXPORT_SYMBOL vmlinux 0x9c0ea9a7 param_get_string +EXPORT_SYMBOL vmlinux 0x9c11d75b bio_integrity_alloc +EXPORT_SYMBOL vmlinux 0x9c20eed2 vio_unregister_driver +EXPORT_SYMBOL vmlinux 0x9c272e1e sk_net_capable +EXPORT_SYMBOL vmlinux 0x9c39f81d ram_aops +EXPORT_SYMBOL vmlinux 0x9c3da6c9 sock_alloc_send_pskb +EXPORT_SYMBOL vmlinux 0x9c54c6eb pci_write_config_word EXPORT_SYMBOL vmlinux 0x9c5a2ada ucc_fast_dump_regs -EXPORT_SYMBOL vmlinux 0x9c5e5b05 __sk_mem_raise_allocated -EXPORT_SYMBOL vmlinux 0x9c799686 pid_task +EXPORT_SYMBOL vmlinux 0x9c6d1594 tty_kref_put +EXPORT_SYMBOL vmlinux 0x9c6fdded tc_setup_cb_call +EXPORT_SYMBOL vmlinux 0x9c74520c xfrm_dev_state_flush +EXPORT_SYMBOL vmlinux 0x9c7b6d53 bio_alloc_bioset EXPORT_SYMBOL vmlinux 0x9c86b9ab fileattr_fill_flags -EXPORT_SYMBOL vmlinux 0x9c9ab3e7 mark_buffer_dirty -EXPORT_SYMBOL vmlinux 0x9ca46468 rtnl_link_get_net +EXPORT_SYMBOL vmlinux 0x9c992769 dev_uc_init +EXPORT_SYMBOL vmlinux 0x9ca431cb default_llseek +EXPORT_SYMBOL vmlinux 0x9ca5af6e register_filesystem EXPORT_SYMBOL vmlinux 0x9cab34a6 rfkill_set_led_trigger_name +EXPORT_SYMBOL vmlinux 0x9cc63cb8 phy_ethtool_get_strings +EXPORT_SYMBOL vmlinux 0x9cced16a xsk_clear_rx_need_wakeup EXPORT_SYMBOL vmlinux 0x9ccf7171 vme_dma_pci_attribute -EXPORT_SYMBOL vmlinux 0x9cd558bc tty_driver_kref_put -EXPORT_SYMBOL vmlinux 0x9cd58953 phy_write_mmd +EXPORT_SYMBOL vmlinux 0x9cd1e2e6 xfrm_lookup EXPORT_SYMBOL vmlinux 0x9cdfb3f7 sysctl_fb_tunnels_only_for_init_net -EXPORT_SYMBOL vmlinux 0x9cee4238 remap_pfn_range +EXPORT_SYMBOL vmlinux 0x9cf70ecc bio_integrity_trim +EXPORT_SYMBOL vmlinux 0x9cfa1fbc cdrom_open +EXPORT_SYMBOL vmlinux 0x9d080c61 iov_iter_zero EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier -EXPORT_SYMBOL vmlinux 0x9d13228c jbd2__journal_restart EXPORT_SYMBOL vmlinux 0x9d14983a ppc_enable_pmcs -EXPORT_SYMBOL vmlinux 0x9d157073 skb_unlink -EXPORT_SYMBOL vmlinux 0x9d1de249 vme_master_request +EXPORT_SYMBOL vmlinux 0x9d23aa6b pci_release_resource EXPORT_SYMBOL vmlinux 0x9d250156 __nla_put EXPORT_SYMBOL vmlinux 0x9d2ab8ac __tasklet_schedule EXPORT_SYMBOL vmlinux 0x9d2e7707 unregister_sysrq_key -EXPORT_SYMBOL vmlinux 0x9d3f32d7 dquot_quota_on_mount -EXPORT_SYMBOL vmlinux 0x9d46346e remove_proc_subtree -EXPORT_SYMBOL vmlinux 0x9d68037c scsi_block_when_processing_errors -EXPORT_SYMBOL vmlinux 0x9d7c3ea6 bio_integrity_clone -EXPORT_SYMBOL vmlinux 0x9d905b7f skb_udp_tunnel_segment -EXPORT_SYMBOL vmlinux 0x9d910937 file_path -EXPORT_SYMBOL vmlinux 0x9d935aca page_pool_put_page_bulk +EXPORT_SYMBOL vmlinux 0x9d7c63cc edac_mc_find EXPORT_SYMBOL vmlinux 0x9d96a9b0 mmu_hash_ops EXPORT_SYMBOL vmlinux 0x9d97ab2c audit_log_object_context -EXPORT_SYMBOL vmlinux 0x9d9e6d3d dma_async_tx_descriptor_init -EXPORT_SYMBOL vmlinux 0x9da88813 security_binder_transfer_file -EXPORT_SYMBOL vmlinux 0x9dab03d5 pci_enable_ptm -EXPORT_SYMBOL vmlinux 0x9db67291 ipv6_dev_find -EXPORT_SYMBOL vmlinux 0x9dc1bbcf __alloc_pages +EXPORT_SYMBOL vmlinux 0x9d98784c ip_fraglist_prepare +EXPORT_SYMBOL vmlinux 0x9daa5acd jbd2_journal_blocks_per_page +EXPORT_SYMBOL vmlinux 0x9dc85e46 alloc_pages_vma EXPORT_SYMBOL vmlinux 0x9dd8dd57 load_fp_state +EXPORT_SYMBOL vmlinux 0x9de42255 netlink_broadcast EXPORT_SYMBOL vmlinux 0x9de706b5 mempool_destroy -EXPORT_SYMBOL vmlinux 0x9df5c5bc vga_set_legacy_decoding +EXPORT_SYMBOL vmlinux 0x9df67337 may_umount +EXPORT_SYMBOL vmlinux 0x9df96b6d of_chosen +EXPORT_SYMBOL vmlinux 0x9e0a7fba dev_pick_tx_zero EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node EXPORT_SYMBOL vmlinux 0x9e0fa5ae hsiphash_3u32 -EXPORT_SYMBOL vmlinux 0x9e12e3be kernel_getpeername EXPORT_SYMBOL vmlinux 0x9e13f6f6 gf128mul_lle -EXPORT_SYMBOL vmlinux 0x9e1998ca mmc_can_secure_erase_trim -EXPORT_SYMBOL vmlinux 0x9e1b3dec scsi_remove_target -EXPORT_SYMBOL vmlinux 0x9e1f215d netdev_update_features -EXPORT_SYMBOL vmlinux 0x9e4f8936 netif_rx_any_context +EXPORT_SYMBOL vmlinux 0x9e2a4312 sock_no_sendpage +EXPORT_SYMBOL vmlinux 0x9e3ba434 sock_no_sendmsg_locked +EXPORT_SYMBOL vmlinux 0x9e421a4c tty_vhangup EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy EXPORT_SYMBOL vmlinux 0x9e61bb05 set_freezable -EXPORT_SYMBOL vmlinux 0x9e6e6399 security_skb_classify_flow -EXPORT_SYMBOL vmlinux 0x9e78dd3b generic_set_encrypted_ci_d_ops -EXPORT_SYMBOL vmlinux 0x9e875330 jbd2_journal_restart -EXPORT_SYMBOL vmlinux 0x9e930de4 set_nlink +EXPORT_SYMBOL vmlinux 0x9e8d0ba9 __hw_addr_ref_sync_dev +EXPORT_SYMBOL vmlinux 0x9e93fd5b __traceiter_mmap_lock_acquire_returned EXPORT_SYMBOL vmlinux 0x9e97375d rtas_busy_delay_time EXPORT_SYMBOL vmlinux 0x9e99837e __nla_put_64bit EXPORT_SYMBOL vmlinux 0x9e9eab95 devcgroup_check_permission EXPORT_SYMBOL vmlinux 0x9e9fdd9d memunmap -EXPORT_SYMBOL vmlinux 0x9ea20d61 blk_queue_max_write_zeroes_sectors -EXPORT_SYMBOL vmlinux 0x9ea2dca3 keyring_search -EXPORT_SYMBOL vmlinux 0x9ea44c0a inet_frag_find EXPORT_SYMBOL vmlinux 0x9eacf8a5 kstrndup -EXPORT_SYMBOL vmlinux 0x9ebcbe78 sk_stream_kill_queues EXPORT_SYMBOL vmlinux 0x9ec0e639 twl6030_interrupt_unmask +EXPORT_SYMBOL vmlinux 0x9ec2f139 pipe_lock EXPORT_SYMBOL vmlinux 0x9ec6ca96 ktime_get_real_ts64 -EXPORT_SYMBOL vmlinux 0x9ec8a10e skb_add_rx_frag +EXPORT_SYMBOL vmlinux 0x9ec84ecf fsync_bdev EXPORT_SYMBOL vmlinux 0x9ed978de vme_lm_set -EXPORT_SYMBOL vmlinux 0x9ee30847 request_key_tag -EXPORT_SYMBOL vmlinux 0x9ef07f73 ndo_dflt_fdb_del -EXPORT_SYMBOL vmlinux 0x9f03338a vlan_vid_add -EXPORT_SYMBOL vmlinux 0x9f26dddb find_inode_rcu -EXPORT_SYMBOL vmlinux 0x9f4597b0 ppp_input +EXPORT_SYMBOL vmlinux 0x9ef9dbf1 security_dentry_create_files_as +EXPORT_SYMBOL vmlinux 0x9f050087 __generic_file_fsync +EXPORT_SYMBOL vmlinux 0x9f058b5b nf_getsockopt +EXPORT_SYMBOL vmlinux 0x9f0b293d nobh_write_end +EXPORT_SYMBOL vmlinux 0x9f14686b mod_node_page_state +EXPORT_SYMBOL vmlinux 0x9f3e1746 md_integrity_add_rdev EXPORT_SYMBOL vmlinux 0x9f46ced8 __sw_hweight64 +EXPORT_SYMBOL vmlinux 0x9f4c58ff pci_msi_vec_count EXPORT_SYMBOL vmlinux 0x9f50b770 keyring_restrict -EXPORT_SYMBOL vmlinux 0x9f542e3d t10_pi_type1_ip EXPORT_SYMBOL vmlinux 0x9f54ead7 gro_cells_destroy -EXPORT_SYMBOL vmlinux 0x9f563568 pci_wake_from_d3 -EXPORT_SYMBOL vmlinux 0x9f8812c2 mr_rtm_dumproute +EXPORT_SYMBOL vmlinux 0x9f5e92ba ndisc_mc_map +EXPORT_SYMBOL vmlinux 0x9f6bce67 input_alloc_absinfo +EXPORT_SYMBOL vmlinux 0x9f969d42 netif_receive_skb EXPORT_SYMBOL vmlinux 0x9f984513 strrchr -EXPORT_SYMBOL vmlinux 0x9f9fe08c md_bitmap_close_sync -EXPORT_SYMBOL vmlinux 0x9fa0565a mmc_sw_reset -EXPORT_SYMBOL vmlinux 0x9fa6eef8 netif_carrier_off EXPORT_SYMBOL vmlinux 0x9fa7184a cancel_delayed_work_sync +EXPORT_SYMBOL vmlinux 0x9fa98f4d set_nlink EXPORT_SYMBOL vmlinux 0x9fad518e irq_stat -EXPORT_SYMBOL vmlinux 0x9fbae919 inode_sub_bytes -EXPORT_SYMBOL vmlinux 0x9fbc321f fb_set_var -EXPORT_SYMBOL vmlinux 0x9fbf31f5 submit_bio_noacct -EXPORT_SYMBOL vmlinux 0x9fdcd165 md_bitmap_unplug EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many -EXPORT_SYMBOL vmlinux 0x9fed8f17 seg6_hmac_info_lookup +EXPORT_SYMBOL vmlinux 0x9fe00fdd agp_generic_enable +EXPORT_SYMBOL vmlinux 0x9fe3e306 __splice_from_pipe EXPORT_SYMBOL vmlinux 0x9feed7ce timer_reduce +EXPORT_SYMBOL vmlinux 0x9ff40ca0 inet_csk_clear_xmit_timers EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog -EXPORT_SYMBOL vmlinux 0x9fff4463 mmc_gpio_set_cd_wake -EXPORT_SYMBOL vmlinux 0xa0059ab6 md_handle_request +EXPORT_SYMBOL vmlinux 0xa005b52a __dynamic_ibdev_dbg +EXPORT_SYMBOL vmlinux 0xa00e9384 ps2_handle_ack +EXPORT_SYMBOL vmlinux 0xa010e585 blk_queue_update_dma_pad EXPORT_SYMBOL vmlinux 0xa01d3df6 font_vga_8x16 -EXPORT_SYMBOL vmlinux 0xa01e25c9 jbd2_journal_get_create_access EXPORT_SYMBOL vmlinux 0xa0262284 radix_tree_iter_delete +EXPORT_SYMBOL vmlinux 0xa02b6991 xp_raw_get_data +EXPORT_SYMBOL vmlinux 0xa0334953 tcf_get_next_chain EXPORT_SYMBOL vmlinux 0xa033d747 next_arg EXPORT_SYMBOL vmlinux 0xa0436e98 in6addr_linklocal_allnodes +EXPORT_SYMBOL vmlinux 0xa04721cd __ps2_command +EXPORT_SYMBOL vmlinux 0xa053455b wait_on_page_private_2 EXPORT_SYMBOL vmlinux 0xa057df8f twl_set_regcache_bypass EXPORT_SYMBOL vmlinux 0xa05b6be2 psched_ppscfg_precompute -EXPORT_SYMBOL vmlinux 0xa05c4bb3 mdio_device_create -EXPORT_SYMBOL vmlinux 0xa06e89ce sock_init_data -EXPORT_SYMBOL vmlinux 0xa07057fe ppp_output_wakeup -EXPORT_SYMBOL vmlinux 0xa0714383 phy_disconnect -EXPORT_SYMBOL vmlinux 0xa0726984 __mark_inode_dirty +EXPORT_SYMBOL vmlinux 0xa05e9026 udp_prot +EXPORT_SYMBOL vmlinux 0xa0620c5d pci_iounmap +EXPORT_SYMBOL vmlinux 0xa0634ea6 xfrm_parse_spi +EXPORT_SYMBOL vmlinux 0xa0765453 flow_rule_match_basic EXPORT_SYMBOL vmlinux 0xa07a37f0 memchr EXPORT_SYMBOL vmlinux 0xa07d1b3c tasklet_setup -EXPORT_SYMBOL vmlinux 0xa0824502 mdiobus_free +EXPORT_SYMBOL vmlinux 0xa0800637 ip_local_deliver EXPORT_SYMBOL vmlinux 0xa084749a __bitmap_or +EXPORT_SYMBOL vmlinux 0xa089d249 invalidate_inode_buffers +EXPORT_SYMBOL vmlinux 0xa0910153 jbd2_journal_begin_ordered_truncate EXPORT_SYMBOL vmlinux 0xa095e02e generic_check_addressable -EXPORT_SYMBOL vmlinux 0xa0976e2d blk_queue_max_hw_sectors -EXPORT_SYMBOL vmlinux 0xa097ee7d xfrm4_protocol_deregister -EXPORT_SYMBOL vmlinux 0xa0a8c0e6 kernel_write +EXPORT_SYMBOL vmlinux 0xa0a1fc39 mmc_of_parse_clk_phase +EXPORT_SYMBOL vmlinux 0xa0a6ce43 is_bad_inode +EXPORT_SYMBOL vmlinux 0xa0adb84a blkdev_compat_ptr_ioctl EXPORT_SYMBOL vmlinux 0xa0ae1e73 siphash_3u64 +EXPORT_SYMBOL vmlinux 0xa0af1541 key_validate EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 -EXPORT_SYMBOL vmlinux 0xa0b9b493 vmemmap -EXPORT_SYMBOL vmlinux 0xa0bee45f security_inode_invalidate_secctx -EXPORT_SYMBOL vmlinux 0xa0c337f2 jbd2_journal_stop -EXPORT_SYMBOL vmlinux 0xa0c6f27b page_pool_alloc_pages -EXPORT_SYMBOL vmlinux 0xa0cf5958 fddi_type_trans +EXPORT_SYMBOL vmlinux 0xa0b99858 dquot_claim_space_nodirty +EXPORT_SYMBOL vmlinux 0xa0c86eee inc_nlink EXPORT_SYMBOL vmlinux 0xa0d87339 qdisc_get_rtab EXPORT_SYMBOL vmlinux 0xa0dad88e netdev_adjacent_get_private +EXPORT_SYMBOL vmlinux 0xa0e27488 locks_copy_conflock +EXPORT_SYMBOL vmlinux 0xa0e87aec vfs_getattr_nosec 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 0xa0f59dd2 pci_irq_get_affinity +EXPORT_SYMBOL vmlinux 0xa0f4bf4c inet_csk_complete_hashdance +EXPORT_SYMBOL vmlinux 0xa0f883c6 zerocopy_sg_from_iter EXPORT_SYMBOL vmlinux 0xa0fbac79 wake_up_bit -EXPORT_SYMBOL vmlinux 0xa1010691 tcf_block_get +EXPORT_SYMBOL vmlinux 0xa0ff975d devfreq_update_status EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max -EXPORT_SYMBOL vmlinux 0xa11986db kernel_connect +EXPORT_SYMBOL vmlinux 0xa10e9901 __breadahead +EXPORT_SYMBOL vmlinux 0xa10fdd00 __tty_insert_flip_char EXPORT_SYMBOL vmlinux 0xa120e187 commit_creds -EXPORT_SYMBOL vmlinux 0xa1311deb md_bitmap_startwrite -EXPORT_SYMBOL vmlinux 0xa134b341 flow_block_cb_lookup -EXPORT_SYMBOL vmlinux 0xa1593828 mmc_is_req_done -EXPORT_SYMBOL vmlinux 0xa162c5dd param_set_bint -EXPORT_SYMBOL vmlinux 0xa16500d7 vfs_getattr -EXPORT_SYMBOL vmlinux 0xa16a8b80 devfreq_monitor_start -EXPORT_SYMBOL vmlinux 0xa170ff88 uart_suspend_port -EXPORT_SYMBOL vmlinux 0xa17281bc bio_copy_data -EXPORT_SYMBOL vmlinux 0xa184cbcb nf_ct_attach -EXPORT_SYMBOL vmlinux 0xa1866479 radix__flush_tlb_page -EXPORT_SYMBOL vmlinux 0xa1971194 sock_kzfree_s -EXPORT_SYMBOL vmlinux 0xa197a5a5 vfs_iter_read -EXPORT_SYMBOL vmlinux 0xa19eabf8 d_alloc_anon -EXPORT_SYMBOL vmlinux 0xa1a19230 netdev_bonding_info_change +EXPORT_SYMBOL vmlinux 0xa14532b4 fs_context_for_submount +EXPORT_SYMBOL vmlinux 0xa16a1aca pcim_iomap_regions +EXPORT_SYMBOL vmlinux 0xa178af12 ipv6_chk_prefix +EXPORT_SYMBOL vmlinux 0xa18a82ed vme_bus_error_handler +EXPORT_SYMBOL vmlinux 0xa18c2347 blk_queue_max_hw_sectors EXPORT_SYMBOL vmlinux 0xa1b8f774 security_binder_transaction -EXPORT_SYMBOL vmlinux 0xa1babafb dev_get_phys_port_name -EXPORT_SYMBOL vmlinux 0xa1d7c7f3 mipi_dsi_compression_mode -EXPORT_SYMBOL vmlinux 0xa1db8618 clear_nlink +EXPORT_SYMBOL vmlinux 0xa1c0eb60 bioset_init_from_src EXPORT_SYMBOL vmlinux 0xa1eaa2cd mempool_init -EXPORT_SYMBOL vmlinux 0xa204bf0f of_mdio_find_device EXPORT_SYMBOL vmlinux 0xa2060911 inet_current_timestamp -EXPORT_SYMBOL vmlinux 0xa211d28e blkdev_get_by_dev -EXPORT_SYMBOL vmlinux 0xa21bc72d pcix_set_mmrbc -EXPORT_SYMBOL vmlinux 0xa22ba203 skb_seq_read -EXPORT_SYMBOL vmlinux 0xa22c356a param_get_long -EXPORT_SYMBOL vmlinux 0xa22c8d40 dquot_get_next_id +EXPORT_SYMBOL vmlinux 0xa21ec740 xfrm_state_register_afinfo +EXPORT_SYMBOL vmlinux 0xa2382486 elv_bio_merge_ok +EXPORT_SYMBOL vmlinux 0xa23bf74b mount_subtree EXPORT_SYMBOL vmlinux 0xa23ffc04 groups_sort -EXPORT_SYMBOL vmlinux 0xa240449a vfs_path_lookup -EXPORT_SYMBOL vmlinux 0xa24222ab tcf_exts_change EXPORT_SYMBOL vmlinux 0xa24f23d8 __request_module EXPORT_SYMBOL vmlinux 0xa25b90ab utf8byte -EXPORT_SYMBOL vmlinux 0xa2613f1f fsync_bdev EXPORT_SYMBOL vmlinux 0xa263892b fscrypt_fname_free_buffer EXPORT_SYMBOL vmlinux 0xa2660e90 __tracepoint_dma_fence_signaled -EXPORT_SYMBOL vmlinux 0xa26e6efa __napi_schedule_irqoff -EXPORT_SYMBOL vmlinux 0xa2715472 unlock_page_memcg +EXPORT_SYMBOL vmlinux 0xa26f2dc7 audit_log +EXPORT_SYMBOL vmlinux 0xa27559c9 _dev_warn +EXPORT_SYMBOL vmlinux 0xa2761295 vio_h_cop_sync +EXPORT_SYMBOL vmlinux 0xa27d2218 devm_ioremap EXPORT_SYMBOL vmlinux 0xa28cfcc0 gen_estimator_active -EXPORT_SYMBOL vmlinux 0xa28f14cf tcf_block_get_ext -EXPORT_SYMBOL vmlinux 0xa2936ce0 ptp_clock_event -EXPORT_SYMBOL vmlinux 0xa2a01e48 dma_sync_wait -EXPORT_SYMBOL vmlinux 0xa2b5dc98 disk_end_io_acct +EXPORT_SYMBOL vmlinux 0xa2a80e7f input_allocate_device +EXPORT_SYMBOL vmlinux 0xa2aedbb4 request_partial_firmware_into_buf EXPORT_SYMBOL vmlinux 0xa2bbed37 crash_shutdown_register -EXPORT_SYMBOL vmlinux 0xa2bdb382 xsk_tx_peek_release_desc_batch -EXPORT_SYMBOL vmlinux 0xa2c22de9 of_find_i2c_device_by_node -EXPORT_SYMBOL vmlinux 0xa2d50cab set_posix_acl EXPORT_SYMBOL vmlinux 0xa2d7ec8d __SCK__tp_func_kmem_cache_free -EXPORT_SYMBOL vmlinux 0xa2e70c93 phy_set_max_speed -EXPORT_SYMBOL vmlinux 0xa31f6e0d seg6_push_hmac -EXPORT_SYMBOL vmlinux 0xa324fe61 radix__flush_tlb_range +EXPORT_SYMBOL vmlinux 0xa2ea9bf4 dev_graft_qdisc +EXPORT_SYMBOL vmlinux 0xa30ab652 twl6040_get_vibralr_status +EXPORT_SYMBOL vmlinux 0xa30e0816 bdev_check_media_change +EXPORT_SYMBOL vmlinux 0xa31fdc54 pci_disable_msi +EXPORT_SYMBOL vmlinux 0xa321ee67 fscrypt_decrypt_pagecache_blocks +EXPORT_SYMBOL vmlinux 0xa340b295 netdev_rx_csum_fault EXPORT_SYMBOL vmlinux 0xa34ea576 trace_print_hex_seq -EXPORT_SYMBOL vmlinux 0xa361aa3d sock_set_rcvbuf +EXPORT_SYMBOL vmlinux 0xa3515c49 netdev_features_change +EXPORT_SYMBOL vmlinux 0xa352650c max8998_write_reg EXPORT_SYMBOL vmlinux 0xa366ff8d xa_get_order -EXPORT_SYMBOL vmlinux 0xa369bcfd register_qdisc -EXPORT_SYMBOL vmlinux 0xa374bcf2 vme_bus_error_handler -EXPORT_SYMBOL vmlinux 0xa37a5f83 register_md_cluster_operations +EXPORT_SYMBOL vmlinux 0xa382ca45 kernel_accept EXPORT_SYMBOL vmlinux 0xa38e691a ioremap_bot EXPORT_SYMBOL vmlinux 0xa39b4cf2 udelay -EXPORT_SYMBOL vmlinux 0xa39ce740 __skb_flow_get_ports -EXPORT_SYMBOL vmlinux 0xa3b9cd1e dev_mc_init -EXPORT_SYMBOL vmlinux 0xa3baf8bd vme_new_dma_list +EXPORT_SYMBOL vmlinux 0xa3a82739 mach_powernv EXPORT_SYMBOL vmlinux 0xa3be8342 __ubsan_handle_type_mismatch -EXPORT_SYMBOL vmlinux 0xa3c6df5a __f_setown +EXPORT_SYMBOL vmlinux 0xa3c0a1ef flush_signals +EXPORT_SYMBOL vmlinux 0xa3cc7898 tcp_v4_mtu_reduced +EXPORT_SYMBOL vmlinux 0xa3ddb03c seg6_hmac_info_del +EXPORT_SYMBOL vmlinux 0xa3ddbe1f __getblk_gfp +EXPORT_SYMBOL vmlinux 0xa3eba16b vfs_fileattr_set +EXPORT_SYMBOL vmlinux 0xa3ef19c6 pin_user_pages_locked EXPORT_SYMBOL vmlinux 0xa3fb735a blk_set_default_limits -EXPORT_SYMBOL vmlinux 0xa3fbaf9e __netdev_alloc_skb -EXPORT_SYMBOL vmlinux 0xa3fc073c devm_pci_alloc_host_bridge EXPORT_SYMBOL vmlinux 0xa3fea172 sha224_final -EXPORT_SYMBOL vmlinux 0xa43d346e devm_devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0xa40578b1 of_node_put +EXPORT_SYMBOL vmlinux 0xa417fb28 tty_port_block_til_ready +EXPORT_SYMBOL vmlinux 0xa428cef2 blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0xa430ebc4 dst_release +EXPORT_SYMBOL vmlinux 0xa43ccc47 clear_nlink +EXPORT_SYMBOL vmlinux 0xa43f64d0 input_mt_report_pointer_emulation +EXPORT_SYMBOL vmlinux 0xa458a9fb irq_domain_set_info EXPORT_SYMBOL vmlinux 0xa458c78c posix_acl_valid -EXPORT_SYMBOL vmlinux 0xa4607c0f __sk_mem_reclaim -EXPORT_SYMBOL vmlinux 0xa471ce2f vme_init_bridge -EXPORT_SYMBOL vmlinux 0xa484fe8c file_update_time -EXPORT_SYMBOL vmlinux 0xa49140f1 fifo_create_dflt +EXPORT_SYMBOL vmlinux 0xa4664e95 jbd2_journal_get_write_access +EXPORT_SYMBOL vmlinux 0xa4700362 task_work_add +EXPORT_SYMBOL vmlinux 0xa478592e scsi_device_set_state +EXPORT_SYMBOL vmlinux 0xa47bef60 phy_attach +EXPORT_SYMBOL vmlinux 0xa4898a94 tcp_openreq_init_rwin EXPORT_SYMBOL vmlinux 0xa49a9b46 mempool_alloc -EXPORT_SYMBOL vmlinux 0xa4b168c5 of_node_to_nid +EXPORT_SYMBOL vmlinux 0xa49ea20b mdio_device_register EXPORT_SYMBOL vmlinux 0xa4b94fea iowrite8_rep -EXPORT_SYMBOL vmlinux 0xa4babe46 phy_find_first -EXPORT_SYMBOL vmlinux 0xa4bd2d2d inet_csk_accept +EXPORT_SYMBOL vmlinux 0xa4c1caaf pci_rebar_get_possible_sizes +EXPORT_SYMBOL vmlinux 0xa4c487cd twl6040_get_sysclk +EXPORT_SYMBOL vmlinux 0xa4cad2ed end_page_writeback EXPORT_SYMBOL vmlinux 0xa4d4f0e6 global_cache_flush -EXPORT_SYMBOL vmlinux 0xa5090062 bio_add_page +EXPORT_SYMBOL vmlinux 0xa503b88b pci_disable_link_state EXPORT_SYMBOL vmlinux 0xa50a3da7 _find_next_bit -EXPORT_SYMBOL vmlinux 0xa510121f thaw_super -EXPORT_SYMBOL vmlinux 0xa51e0079 md_bitmap_update_sb -EXPORT_SYMBOL vmlinux 0xa51f8d1f input_set_capability +EXPORT_SYMBOL vmlinux 0xa510ee79 arch_debugfs_dir EXPORT_SYMBOL vmlinux 0xa524175b __put_cred -EXPORT_SYMBOL vmlinux 0xa532f647 __ip4_datagram_connect -EXPORT_SYMBOL vmlinux 0xa53416b6 mdiobus_get_phy -EXPORT_SYMBOL vmlinux 0xa53b6478 __cleancache_get_page -EXPORT_SYMBOL vmlinux 0xa54b34f9 flow_rule_match_tcp +EXPORT_SYMBOL vmlinux 0xa52ed79e netdev_emerg +EXPORT_SYMBOL vmlinux 0xa53f97f6 max8998_update_reg EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color -EXPORT_SYMBOL vmlinux 0xa59595ef nvdimm_bus_unlock -EXPORT_SYMBOL vmlinux 0xa5a0d3e5 fs_context_for_mount +EXPORT_SYMBOL vmlinux 0xa56da35d sock_release +EXPORT_SYMBOL vmlinux 0xa574f89b vme_register_bridge +EXPORT_SYMBOL vmlinux 0xa58045b7 xfrm_input_register_afinfo EXPORT_SYMBOL vmlinux 0xa5ac3e33 ZSTD_DCtxWorkspaceBound -EXPORT_SYMBOL vmlinux 0xa5b7e919 bioset_integrity_create -EXPORT_SYMBOL vmlinux 0xa5cc8a2a __vlan_find_dev_deep_rcu -EXPORT_SYMBOL vmlinux 0xa5dcfc21 ps2_sliced_command -EXPORT_SYMBOL vmlinux 0xa5e527a6 of_get_cpu_state_node -EXPORT_SYMBOL vmlinux 0xa5e88b38 pci_unregister_driver -EXPORT_SYMBOL vmlinux 0xa5f22fc0 of_get_next_cpu_node -EXPORT_SYMBOL vmlinux 0xa5f3e23d ipv6_dev_mc_inc -EXPORT_SYMBOL vmlinux 0xa5f5c7b4 pci_request_regions -EXPORT_SYMBOL vmlinux 0xa5f719f1 pci_bus_write_config_byte -EXPORT_SYMBOL vmlinux 0xa6080cc1 inc_zone_page_state -EXPORT_SYMBOL vmlinux 0xa60b9e8e rtnl_create_link +EXPORT_SYMBOL vmlinux 0xa5b16cac __insert_inode_hash +EXPORT_SYMBOL vmlinux 0xa5c6168c xfrm_policy_destroy +EXPORT_SYMBOL vmlinux 0xa5e8a427 super_setup_bdi_name +EXPORT_SYMBOL vmlinux 0xa5ef5b44 gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0xa5ef985e sock_cmsg_send EXPORT_SYMBOL vmlinux 0xa61ced89 qdisc_put_rtab -EXPORT_SYMBOL vmlinux 0xa6240106 input_handler_for_each_handle +EXPORT_SYMBOL vmlinux 0xa61db4f9 serio_close +EXPORT_SYMBOL vmlinux 0xa628a8d2 i2c_smbus_write_byte EXPORT_SYMBOL vmlinux 0xa635d2a6 profile_pc +EXPORT_SYMBOL vmlinux 0xa63fde34 proc_create_mount_point EXPORT_SYMBOL vmlinux 0xa648e561 __ubsan_handle_shift_out_of_bounds -EXPORT_SYMBOL vmlinux 0xa64e4994 skb_flow_dissect_tunnel_info EXPORT_SYMBOL vmlinux 0xa6579f21 __pud_val_bits EXPORT_SYMBOL vmlinux 0xa65972b8 _memcpy_toio -EXPORT_SYMBOL vmlinux 0xa66a1e2c ptp_clock_unregister -EXPORT_SYMBOL vmlinux 0xa67c9e93 skb_try_coalesce -EXPORT_SYMBOL vmlinux 0xa67f4984 tcf_qevent_init EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid -EXPORT_SYMBOL vmlinux 0xa68628f1 of_node_name_prefix -EXPORT_SYMBOL vmlinux 0xa6a3fa43 dev_uc_unsync -EXPORT_SYMBOL vmlinux 0xa6a8bd85 flow_rule_match_basic -EXPORT_SYMBOL vmlinux 0xa6b19990 _copy_from_iter_nocache -EXPORT_SYMBOL vmlinux 0xa6d0a391 tty_port_lower_dtr_rts -EXPORT_SYMBOL vmlinux 0xa6d0e6a2 migrate_page_states -EXPORT_SYMBOL vmlinux 0xa6fe3ce4 udp_lib_rehash -EXPORT_SYMBOL vmlinux 0xa7048c1e netdev_refcnt_read +EXPORT_SYMBOL vmlinux 0xa682a2d2 agp_copy_info +EXPORT_SYMBOL vmlinux 0xa68bda64 agp_generic_mask_memory +EXPORT_SYMBOL vmlinux 0xa68f19b2 ip_ct_attach +EXPORT_SYMBOL vmlinux 0xa696fd33 dmam_free_coherent +EXPORT_SYMBOL vmlinux 0xa6a0fc03 ps2_handle_response +EXPORT_SYMBOL vmlinux 0xa6a1138f napi_complete_done +EXPORT_SYMBOL vmlinux 0xa6a5b55b flow_rule_match_enc_ip +EXPORT_SYMBOL vmlinux 0xa6ab1fdc skb_put +EXPORT_SYMBOL vmlinux 0xa6b1a799 sock_no_recvmsg +EXPORT_SYMBOL vmlinux 0xa6b3a901 __blk_rq_map_sg +EXPORT_SYMBOL vmlinux 0xa6ce4dd8 blk_rq_unmap_user +EXPORT_SYMBOL vmlinux 0xa6f59831 padata_set_cpumask +EXPORT_SYMBOL vmlinux 0xa6ffe8bb kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0xa70ddb69 param_get_ushort EXPORT_SYMBOL vmlinux 0xa70fb761 flow_keys_basic_dissector -EXPORT_SYMBOL vmlinux 0xa711ac4c security_task_getsecid_subj +EXPORT_SYMBOL vmlinux 0xa71ca6d5 regset_get_alloc EXPORT_SYMBOL vmlinux 0xa71d2e2c ioread16be -EXPORT_SYMBOL vmlinux 0xa72877f4 jbd2_journal_get_undo_access -EXPORT_SYMBOL vmlinux 0xa729756a configfs_undepend_item +EXPORT_SYMBOL vmlinux 0xa7272111 of_get_cpu_node +EXPORT_SYMBOL vmlinux 0xa7387cf8 clk_hw_get_clk EXPORT_SYMBOL vmlinux 0xa74c9877 refcount_dec_and_rtnl_lock -EXPORT_SYMBOL vmlinux 0xa7502c72 ether_setup +EXPORT_SYMBOL vmlinux 0xa755e91e key_reject_and_link +EXPORT_SYMBOL vmlinux 0xa75ab71c skb_flow_dissect_hash +EXPORT_SYMBOL vmlinux 0xa762a187 read_cache_pages +EXPORT_SYMBOL vmlinux 0xa76ee2bc key_invalidate EXPORT_SYMBOL vmlinux 0xa77b1ed6 __wait_on_bit_lock -EXPORT_SYMBOL vmlinux 0xa77bd711 mmc_remove_host EXPORT_SYMBOL vmlinux 0xa77bfd29 register_inet6addr_validator_notifier -EXPORT_SYMBOL vmlinux 0xa77e16a5 sock_recvmsg +EXPORT_SYMBOL vmlinux 0xa77ef2a0 generic_splice_sendpage +EXPORT_SYMBOL vmlinux 0xa784d6dc dev_mc_add EXPORT_SYMBOL vmlinux 0xa78af5f3 ioread32 EXPORT_SYMBOL vmlinux 0xa79bff2d hpage_shift -EXPORT_SYMBOL vmlinux 0xa79d0996 gro_find_receive_by_type -EXPORT_SYMBOL vmlinux 0xa7be6567 eth_validate_addr -EXPORT_SYMBOL vmlinux 0xa7cf04cc param_set_short +EXPORT_SYMBOL vmlinux 0xa7b206b3 scsi_free_host_dev +EXPORT_SYMBOL vmlinux 0xa7b58a4a __netdev_alloc_skb +EXPORT_SYMBOL vmlinux 0xa7d0865a remap_vmalloc_range +EXPORT_SYMBOL vmlinux 0xa7e6056d giveup_fpu EXPORT_SYMBOL vmlinux 0xa7eedcc4 call_usermodehelper -EXPORT_SYMBOL vmlinux 0xa81bd4ed jbd2_journal_force_commit_nested -EXPORT_SYMBOL vmlinux 0xa8256811 __sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0xa7f1ccaf dev_mc_flush +EXPORT_SYMBOL vmlinux 0xa820ecc7 fscrypt_free_bounce_page +EXPORT_SYMBOL vmlinux 0xa82247e5 rproc_elf_load_segments +EXPORT_SYMBOL vmlinux 0xa8236084 scmd_printk +EXPORT_SYMBOL vmlinux 0xa838b4ba rproc_del 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 0xa85ef9c8 generic_iommu_put_resv_regions -EXPORT_SYMBOL vmlinux 0xa860ec2b vme_unregister_driver -EXPORT_SYMBOL vmlinux 0xa86222ac ppp_unit_number EXPORT_SYMBOL vmlinux 0xa8694ecd kblockd_schedule_work -EXPORT_SYMBOL vmlinux 0xa8742286 genphy_handle_interrupt_no_ack -EXPORT_SYMBOL vmlinux 0xa87f7ed1 inet_frag_kill +EXPORT_SYMBOL vmlinux 0xa87e1338 pci_disable_link_state_locked EXPORT_SYMBOL vmlinux 0xa8896319 __xa_clear_mark -EXPORT_SYMBOL vmlinux 0xa8943e67 fscrypt_has_permitted_context -EXPORT_SYMBOL vmlinux 0xa8b86575 __traceiter_mmap_lock_released +EXPORT_SYMBOL vmlinux 0xa897ad49 bio_add_page +EXPORT_SYMBOL vmlinux 0xa8b16326 fb_get_mode +EXPORT_SYMBOL vmlinux 0xa8b6b055 scsi_print_sense +EXPORT_SYMBOL vmlinux 0xa8bcf0f2 pci_bus_write_config_word +EXPORT_SYMBOL vmlinux 0xa8bd47a2 phy_write_mmd EXPORT_SYMBOL vmlinux 0xa8caa845 clk_bulk_put_all -EXPORT_SYMBOL vmlinux 0xa8cfb120 register_fib_notifier -EXPORT_SYMBOL vmlinux 0xa8f66653 dquot_quota_on +EXPORT_SYMBOL vmlinux 0xa8cb4f18 dev_change_proto_down_generic +EXPORT_SYMBOL vmlinux 0xa8cbf91d pci_find_capability +EXPORT_SYMBOL vmlinux 0xa8cef9a0 uart_unregister_driver +EXPORT_SYMBOL vmlinux 0xa8e31824 sock_recvmsg +EXPORT_SYMBOL vmlinux 0xa8e74189 neigh_xmit EXPORT_SYMBOL vmlinux 0xa8f6c843 ip_frag_ecn_table -EXPORT_SYMBOL vmlinux 0xa8ff8dde con_copy_unimap -EXPORT_SYMBOL vmlinux 0xa907af2c seq_lseek -EXPORT_SYMBOL vmlinux 0xa9085441 dma_sync_sg_for_cpu -EXPORT_SYMBOL vmlinux 0xa90c8371 xfrm_find_acq_byseq +EXPORT_SYMBOL vmlinux 0xa8f7da1d dst_alloc EXPORT_SYMBOL vmlinux 0xa90ca0de flush_rcu_work EXPORT_SYMBOL vmlinux 0xa916b694 strnlen EXPORT_SYMBOL vmlinux 0xa924b4aa __traceiter_kmem_cache_alloc_node -EXPORT_SYMBOL vmlinux 0xa928c390 jbd2_fc_end_commit_fallback -EXPORT_SYMBOL vmlinux 0xa928da0c node_data -EXPORT_SYMBOL vmlinux 0xa934bc4b flow_get_u32_dst -EXPORT_SYMBOL vmlinux 0xa950e16f xfrm_policy_alloc -EXPORT_SYMBOL vmlinux 0xa9570552 inet6_add_offload -EXPORT_SYMBOL vmlinux 0xa95985e4 input_get_poll_interval -EXPORT_SYMBOL vmlinux 0xa9604c6b seq_release_private +EXPORT_SYMBOL vmlinux 0xa9269547 wait_on_page_bit +EXPORT_SYMBOL vmlinux 0xa94a3189 configfs_remove_default_groups EXPORT_SYMBOL vmlinux 0xa965ca81 reciprocal_value -EXPORT_SYMBOL vmlinux 0xa969e8db param_set_uint -EXPORT_SYMBOL vmlinux 0xa96dd3c3 devfreq_update_target +EXPORT_SYMBOL vmlinux 0xa96bc589 proc_mkdir +EXPORT_SYMBOL vmlinux 0xa971bdf4 neigh_seq_stop EXPORT_SYMBOL vmlinux 0xa976957d bitmap_remap -EXPORT_SYMBOL vmlinux 0xa9794492 bpf_prog_get_type_path -EXPORT_SYMBOL vmlinux 0xa97ece93 vfs_rename +EXPORT_SYMBOL vmlinux 0xa984b28b netdev_state_change +EXPORT_SYMBOL vmlinux 0xa9873589 dquot_operations EXPORT_SYMBOL vmlinux 0xa99b39c2 prandom_bytes -EXPORT_SYMBOL vmlinux 0xa9a3189e devfreq_remove_governor -EXPORT_SYMBOL vmlinux 0xa9a61556 tty_port_tty_get -EXPORT_SYMBOL vmlinux 0xa9c247ff rtnl_unicast -EXPORT_SYMBOL vmlinux 0xa9c616f9 inet_sendmsg -EXPORT_SYMBOL vmlinux 0xa9ddef16 n_tty_ioctl_helper +EXPORT_SYMBOL vmlinux 0xa99e93cb tcp_md5_hash_key +EXPORT_SYMBOL vmlinux 0xa9a380d1 input_mt_destroy_slots +EXPORT_SYMBOL vmlinux 0xa9ccd1e8 alloc_anon_inode +EXPORT_SYMBOL vmlinux 0xa9d769f8 jbd2_log_wait_commit EXPORT_SYMBOL vmlinux 0xa9dffce5 mempool_free -EXPORT_SYMBOL vmlinux 0xaa0183ba xfrm_state_delete_tunnel +EXPORT_SYMBOL vmlinux 0xa9f51eed generic_error_remove_page +EXPORT_SYMBOL vmlinux 0xaa08887e dev_remove_pack +EXPORT_SYMBOL vmlinux 0xaa0aa3f5 netdev_txq_to_tc EXPORT_SYMBOL vmlinux 0xaa0c318b vscnprintf -EXPORT_SYMBOL vmlinux 0xaa13db7a dev_trans_start +EXPORT_SYMBOL vmlinux 0xaa11057a netdev_master_upper_dev_get_rcu +EXPORT_SYMBOL vmlinux 0xaa160ce7 generic_update_time +EXPORT_SYMBOL vmlinux 0xaa175b8a dev_get_flags EXPORT_SYMBOL vmlinux 0xaa19e4aa _kstrtol -EXPORT_SYMBOL vmlinux 0xaa1d18dd xfrm_policy_insert +EXPORT_SYMBOL vmlinux 0xaa236d83 alloc_skb_with_frags +EXPORT_SYMBOL vmlinux 0xaa2d3cd8 sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0xaa3d608d arp_xmit +EXPORT_SYMBOL vmlinux 0xaa3f44c2 agp_generic_free_gatt_table EXPORT_SYMBOL vmlinux 0xaa3f6f04 radix__flush_tlb_kernel_range -EXPORT_SYMBOL vmlinux 0xaa534903 md_integrity_add_rdev -EXPORT_SYMBOL vmlinux 0xaa5cfb63 flow_rule_match_ipv6_addrs -EXPORT_SYMBOL vmlinux 0xaa6253a0 tty_unregister_ldisc -EXPORT_SYMBOL vmlinux 0xaa645138 netdev_master_upper_dev_get_rcu -EXPORT_SYMBOL vmlinux 0xaa65128b __pskb_pull_tail -EXPORT_SYMBOL vmlinux 0xaa670d11 tcf_action_dump_1 +EXPORT_SYMBOL vmlinux 0xaa3ffa0d pcibios_fixup_bus +EXPORT_SYMBOL vmlinux 0xaa5146fd follow_down +EXPORT_SYMBOL vmlinux 0xaa595aaf genphy_loopback +EXPORT_SYMBOL vmlinux 0xaa60c5e8 dquot_alloc_inode +EXPORT_SYMBOL vmlinux 0xaa60ecba mfd_cell_disable EXPORT_SYMBOL vmlinux 0xaa6f23ad rfkill_get_led_trigger_name -EXPORT_SYMBOL vmlinux 0xaa745090 mipi_dsi_dcs_set_page_address -EXPORT_SYMBOL vmlinux 0xaa7edfe6 __pskb_copy_fclone -EXPORT_SYMBOL vmlinux 0xaa899e24 kmem_cache_alloc_bulk +EXPORT_SYMBOL vmlinux 0xaa83534f md_wakeup_thread EXPORT_SYMBOL vmlinux 0xaa9179c4 ida_alloc_range -EXPORT_SYMBOL vmlinux 0xaa923b3c freeze_super +EXPORT_SYMBOL vmlinux 0xaaa49be4 sock_common_recvmsg +EXPORT_SYMBOL vmlinux 0xaaa4a2ac sk_ns_capable EXPORT_SYMBOL vmlinux 0xaaa4b9bc hchacha_block_generic EXPORT_SYMBOL vmlinux 0xaab2ee91 complete_all -EXPORT_SYMBOL vmlinux 0xaac91952 ip4_datagram_connect -EXPORT_SYMBOL vmlinux 0xaaccddde blk_mq_start_stopped_hw_queues 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 0xaafa7723 blk_mq_start_hw_queues +EXPORT_SYMBOL vmlinux 0xaae26076 add_to_pipe EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp -EXPORT_SYMBOL vmlinux 0xab0dc80d seq_path +EXPORT_SYMBOL vmlinux 0xaafe6eb1 netdev_notify_peers +EXPORT_SYMBOL vmlinux 0xab0482d6 blk_set_runtime_active +EXPORT_SYMBOL vmlinux 0xab0f5ec5 md_bitmap_update_sb EXPORT_SYMBOL vmlinux 0xab3697e4 irq_poll_init +EXPORT_SYMBOL vmlinux 0xab3af077 flow_rule_match_ipv6_addrs EXPORT_SYMBOL vmlinux 0xab3b75ea vme_dma_pattern_attribute -EXPORT_SYMBOL vmlinux 0xab44fea2 rtnl_set_sk_err -EXPORT_SYMBOL vmlinux 0xab513280 machine_id -EXPORT_SYMBOL vmlinux 0xab52da71 ip_frag_init +EXPORT_SYMBOL vmlinux 0xab4ac153 dcb_ieee_delapp EXPORT_SYMBOL vmlinux 0xab63baa5 unregister_inetaddr_validator_notifier -EXPORT_SYMBOL vmlinux 0xab656a08 dec_node_page_state +EXPORT_SYMBOL vmlinux 0xab6d5b3b hex_to_bin +EXPORT_SYMBOL vmlinux 0xab73571a sock_create EXPORT_SYMBOL vmlinux 0xab781570 fb_get_options -EXPORT_SYMBOL vmlinux 0xab89c298 mdio_device_reset -EXPORT_SYMBOL vmlinux 0xab99d8f7 __netif_napi_del -EXPORT_SYMBOL vmlinux 0xabd42944 security_socket_socketpair -EXPORT_SYMBOL vmlinux 0xabe555c0 unix_detach_fds -EXPORT_SYMBOL vmlinux 0xabe7f832 nobh_write_end +EXPORT_SYMBOL vmlinux 0xab9283e2 dma_sync_single_for_cpu +EXPORT_SYMBOL vmlinux 0xab9ce0f2 refresh_frequency_limits +EXPORT_SYMBOL vmlinux 0xab9e2668 generic_writepages +EXPORT_SYMBOL vmlinux 0xaba4a0a0 mipi_dsi_dcs_enter_sleep_mode EXPORT_SYMBOL vmlinux 0xabeb9438 skb_flow_dissector_init -EXPORT_SYMBOL vmlinux 0xabec2feb of_device_unregister -EXPORT_SYMBOL vmlinux 0xabefc4bc mr_fill_mroute EXPORT_SYMBOL vmlinux 0xabf32f29 utf16s_to_utf8s -EXPORT_SYMBOL vmlinux 0xac0205c5 blk_mq_complete_request -EXPORT_SYMBOL vmlinux 0xac12582d of_find_property -EXPORT_SYMBOL vmlinux 0xac18e7e1 ip6_fraglist_init +EXPORT_SYMBOL vmlinux 0xac0cd78c ppp_input_error +EXPORT_SYMBOL vmlinux 0xac1510e4 radix__flush_tlb_mm EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier -EXPORT_SYMBOL vmlinux 0xac1bf430 dev_addr_init -EXPORT_SYMBOL vmlinux 0xac299d92 tcf_register_action +EXPORT_SYMBOL vmlinux 0xac2f7985 netdev_refcnt_read +EXPORT_SYMBOL vmlinux 0xac314531 dma_set_coherent_mask EXPORT_SYMBOL vmlinux 0xac3201b0 udp_flow_hashrnd +EXPORT_SYMBOL vmlinux 0xac3667a5 user_path_create EXPORT_SYMBOL vmlinux 0xac430423 __pmd_val_bits +EXPORT_SYMBOL vmlinux 0xac465f59 fc_mount +EXPORT_SYMBOL vmlinux 0xac46db5d pci_release_regions +EXPORT_SYMBOL vmlinux 0xac5245e1 tc_setup_cb_reoffload EXPORT_SYMBOL vmlinux 0xac5fcec0 in4_pton +EXPORT_SYMBOL vmlinux 0xac60fc3e copy_page_to_iter +EXPORT_SYMBOL vmlinux 0xac79cdca pcibios_resource_to_bus +EXPORT_SYMBOL vmlinux 0xac7adc16 page_mapped EXPORT_SYMBOL vmlinux 0xac8597d5 mb_cache_entry_get -EXPORT_SYMBOL vmlinux 0xaca121f6 devfreq_resume_device -EXPORT_SYMBOL vmlinux 0xaca8f33b flow_rule_match_enc_ports -EXPORT_SYMBOL vmlinux 0xaca9edbe __frontswap_store +EXPORT_SYMBOL vmlinux 0xac87ddf2 con_is_visible +EXPORT_SYMBOL vmlinux 0xaca8ea50 pci_fixup_device EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu -EXPORT_SYMBOL vmlinux 0xacc7351c netdev_next_lower_dev_rcu -EXPORT_SYMBOL vmlinux 0xacc868c1 xfrm_policy_hash_rebuild +EXPORT_SYMBOL vmlinux 0xacc2ee94 __cleancache_put_page +EXPORT_SYMBOL vmlinux 0xacd6347a scsi_track_queue_full EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache +EXPORT_SYMBOL vmlinux 0xacdafec4 mr_rtm_dumproute EXPORT_SYMBOL vmlinux 0xacddd806 ptp_get_vclocks_index +EXPORT_SYMBOL vmlinux 0xacf3c3c0 security_tun_dev_attach EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup EXPORT_SYMBOL vmlinux 0xacf649bf audit_log_task_info +EXPORT_SYMBOL vmlinux 0xad010b6d lookup_positive_unlocked EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex EXPORT_SYMBOL vmlinux 0xad128dc1 __tracepoint_dma_fence_enable_signal +EXPORT_SYMBOL vmlinux 0xad2246bd tcf_em_unregister EXPORT_SYMBOL vmlinux 0xad357133 __traceiter_kmalloc_node +EXPORT_SYMBOL vmlinux 0xad4ea9b3 tcp_v4_syn_recv_sock EXPORT_SYMBOL vmlinux 0xad50cebb i8253_lock -EXPORT_SYMBOL vmlinux 0xad607071 xfrm_dst_ifdown -EXPORT_SYMBOL vmlinux 0xad62dfbe jbd2__journal_start -EXPORT_SYMBOL vmlinux 0xad6aa5b4 dev_queue_xmit +EXPORT_SYMBOL vmlinux 0xad584c00 netdev_reset_tc +EXPORT_SYMBOL vmlinux 0xad6d3e25 pci_scan_root_bus EXPORT_SYMBOL vmlinux 0xad73041f autoremove_wake_function -EXPORT_SYMBOL vmlinux 0xad97b8a8 devm_register_netdev +EXPORT_SYMBOL vmlinux 0xad85c050 tty_driver_kref_put +EXPORT_SYMBOL vmlinux 0xad8b5161 generic_pipe_buf_try_steal EXPORT_SYMBOL vmlinux 0xad995dac netdev_stats_to_stats64 -EXPORT_SYMBOL vmlinux 0xadb862ef devm_extcon_register_notifier +EXPORT_SYMBOL vmlinux 0xadb5b3cb genphy_restart_aneg +EXPORT_SYMBOL vmlinux 0xadbc241f uart_register_driver EXPORT_SYMBOL vmlinux 0xadbeed61 mipi_dsi_packet_format_is_long +EXPORT_SYMBOL vmlinux 0xadbfe64f jbd2_journal_release_jbd_inode EXPORT_SYMBOL vmlinux 0xadc044b7 vfio_set_irqs_validate_and_prepare -EXPORT_SYMBOL vmlinux 0xadcb7bc6 inode_owner_or_capable EXPORT_SYMBOL vmlinux 0xadcba50b ZSTD_findFrameCompressedSize EXPORT_SYMBOL vmlinux 0xadd139d4 rfs_needed -EXPORT_SYMBOL vmlinux 0xadd6a26f wireless_spy_update -EXPORT_SYMBOL vmlinux 0xade42eff netdev_lower_get_next_private +EXPORT_SYMBOL vmlinux 0xadd2a194 __wait_on_buffer +EXPORT_SYMBOL vmlinux 0xaddf5400 nf_reinject +EXPORT_SYMBOL vmlinux 0xade2c34c con_copy_unimap +EXPORT_SYMBOL vmlinux 0xade8e957 xp_dma_sync_for_device_slow +EXPORT_SYMBOL vmlinux 0xadedf1fb rproc_boot +EXPORT_SYMBOL vmlinux 0xadfd08b9 flow_indr_dev_unregister EXPORT_SYMBOL vmlinux 0xadfdfcef __bitmap_andnot -EXPORT_SYMBOL vmlinux 0xae01a63a of_get_parent EXPORT_SYMBOL vmlinux 0xae04012c __vmalloc -EXPORT_SYMBOL vmlinux 0xae065d2f pldmfw_flash_image -EXPORT_SYMBOL vmlinux 0xae0be564 mipi_dsi_turn_on_peripheral -EXPORT_SYMBOL vmlinux 0xae0e24aa tcp_timewait_state_process -EXPORT_SYMBOL vmlinux 0xae1eccc1 locks_remove_posix +EXPORT_SYMBOL vmlinux 0xae07a3e5 fault_in_iov_iter_writeable +EXPORT_SYMBOL vmlinux 0xae2b3364 fscrypt_zeroout_range EXPORT_SYMBOL vmlinux 0xae316c11 icmpv6_err_convert -EXPORT_SYMBOL vmlinux 0xae38350e input_event -EXPORT_SYMBOL vmlinux 0xae45e2aa skb_split -EXPORT_SYMBOL vmlinux 0xae47ff8c blk_queue_split EXPORT_SYMBOL vmlinux 0xae4c8439 __pte_table_size -EXPORT_SYMBOL vmlinux 0xae53a0d9 scsi_host_lookup -EXPORT_SYMBOL vmlinux 0xae5c4e7a sock_no_socketpair -EXPORT_SYMBOL vmlinux 0xae5eea33 inet_select_addr -EXPORT_SYMBOL vmlinux 0xae7cd513 netdev_set_sb_channel +EXPORT_SYMBOL vmlinux 0xae53b8b2 simple_empty +EXPORT_SYMBOL vmlinux 0xae64e1cf of_graph_get_port_parent EXPORT_SYMBOL vmlinux 0xaeac049a generate_random_guid -EXPORT_SYMBOL vmlinux 0xaeb4287c get_phy_device -EXPORT_SYMBOL vmlinux 0xaec4425c iptun_encaps -EXPORT_SYMBOL vmlinux 0xaecaa908 security_lock_kernel_down -EXPORT_SYMBOL vmlinux 0xaee2136a dqget -EXPORT_SYMBOL vmlinux 0xaeeb9a28 skb_dump -EXPORT_SYMBOL vmlinux 0xaef24cc3 phys_mem_access_prot -EXPORT_SYMBOL vmlinux 0xaf1075af phy_start_aneg -EXPORT_SYMBOL vmlinux 0xaf2c8092 neigh_seq_next +EXPORT_SYMBOL vmlinux 0xaeb51b82 tcp_close +EXPORT_SYMBOL vmlinux 0xaef7c102 vme_lm_request +EXPORT_SYMBOL vmlinux 0xaf05aa71 rtnl_configure_link +EXPORT_SYMBOL vmlinux 0xaf1273b4 agp_generic_create_gatt_table EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level -EXPORT_SYMBOL vmlinux 0xaf466194 pm860x_bulk_write -EXPORT_SYMBOL vmlinux 0xaf4a9191 vio_get_attribute -EXPORT_SYMBOL vmlinux 0xaf6796f1 rproc_elf_find_loaded_rsc_table +EXPORT_SYMBOL vmlinux 0xaf5b5ea7 qdisc_create_dflt +EXPORT_SYMBOL vmlinux 0xaf6e60a9 inode_io_list_del +EXPORT_SYMBOL vmlinux 0xaf736189 iov_iter_gap_alignment +EXPORT_SYMBOL vmlinux 0xaf7913d7 param_set_charp +EXPORT_SYMBOL vmlinux 0xaf7a2d6e flow_block_cb_incref +EXPORT_SYMBOL vmlinux 0xaf7ed920 kthread_blkcg +EXPORT_SYMBOL vmlinux 0xaf81eaa7 tcp_v4_do_rcv +EXPORT_SYMBOL vmlinux 0xaf850b2f set_page_dirty +EXPORT_SYMBOL vmlinux 0xaf8cb4e2 blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0xaf8f533a nd_namespace_blk_validate +EXPORT_SYMBOL vmlinux 0xaf8f8707 kernel_getsockname +EXPORT_SYMBOL vmlinux 0xaf933897 scsi_set_medium_removal EXPORT_SYMBOL vmlinux 0xafc06bcd wait_for_completion_io EXPORT_SYMBOL vmlinux 0xafc08054 dotdot_name -EXPORT_SYMBOL vmlinux 0xafc3a760 fs_param_is_string -EXPORT_SYMBOL vmlinux 0xafc8b5b4 kvmppc_hv_find_lock_hpte -EXPORT_SYMBOL vmlinux 0xafd14de2 mipi_dsi_device_register_full -EXPORT_SYMBOL vmlinux 0xafddd5b5 inet_add_protocol -EXPORT_SYMBOL vmlinux 0xaff7d788 genphy_check_and_restart_aneg -EXPORT_SYMBOL vmlinux 0xb0055617 udp6_seq_ops -EXPORT_SYMBOL vmlinux 0xb011e56a tcf_exts_destroy -EXPORT_SYMBOL vmlinux 0xb0122c75 __inc_zone_page_state +EXPORT_SYMBOL vmlinux 0xafc7d950 phy_support_sym_pause +EXPORT_SYMBOL vmlinux 0xafd5b2c9 xfrm_policy_flush +EXPORT_SYMBOL vmlinux 0xaffe1146 __ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0xaffe343e phy_ethtool_nway_reset +EXPORT_SYMBOL vmlinux 0xb01284de genphy_soft_reset EXPORT_SYMBOL vmlinux 0xb01bebf9 xfrm_get_acqseq -EXPORT_SYMBOL vmlinux 0xb01e0d12 inet6_protos -EXPORT_SYMBOL vmlinux 0xb023a8b3 xp_can_alloc -EXPORT_SYMBOL vmlinux 0xb0381f5c inet_listen -EXPORT_SYMBOL vmlinux 0xb046702c locks_free_lock -EXPORT_SYMBOL vmlinux 0xb0505f26 tcp_sock_set_nodelay -EXPORT_SYMBOL vmlinux 0xb056eb51 scsi_device_lookup -EXPORT_SYMBOL vmlinux 0xb05cb171 dcb_ieee_getapp_dscp_prio_mask_map +EXPORT_SYMBOL vmlinux 0xb0298a1e dec_node_page_state +EXPORT_SYMBOL vmlinux 0xb05eea57 drop_super_exclusive EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max -EXPORT_SYMBOL vmlinux 0xb072a794 __bread_gfp -EXPORT_SYMBOL vmlinux 0xb07b0b7c register_nexthop_notifier -EXPORT_SYMBOL vmlinux 0xb0836d1b dm_kcopyd_zero +EXPORT_SYMBOL vmlinux 0xb083443e handle_edge_irq +EXPORT_SYMBOL vmlinux 0xb096b84b devm_register_reboot_notifier EXPORT_SYMBOL vmlinux 0xb0a0da0c rational_best_approximation -EXPORT_SYMBOL vmlinux 0xb0ba53a2 skb_copy_and_csum_dev +EXPORT_SYMBOL vmlinux 0xb0a8404c blk_rq_count_integrity_sg +EXPORT_SYMBOL vmlinux 0xb0ab5204 cdc_parse_cdc_header EXPORT_SYMBOL vmlinux 0xb0e10781 get_option -EXPORT_SYMBOL vmlinux 0xb0f0d587 input_release_device EXPORT_SYMBOL vmlinux 0xb0f389ee utf8_normalize EXPORT_SYMBOL vmlinux 0xb10e7df4 __kfifo_dma_in_prepare -EXPORT_SYMBOL vmlinux 0xb121da1e nd_device_notify -EXPORT_SYMBOL vmlinux 0xb12bdc8c scsi_device_quiesce -EXPORT_SYMBOL vmlinux 0xb12c7e64 generic_file_llseek_size +EXPORT_SYMBOL vmlinux 0xb121de93 fd_install EXPORT_SYMBOL vmlinux 0xb12cbacb fb_unregister_client -EXPORT_SYMBOL vmlinux 0xb1322568 neigh_event_ns -EXPORT_SYMBOL vmlinux 0xb132c1c5 netdev_features_change -EXPORT_SYMBOL vmlinux 0xb13cdab1 proc_set_size -EXPORT_SYMBOL vmlinux 0xb13f62f0 dquot_acquire -EXPORT_SYMBOL vmlinux 0xb1420977 agp_generic_enable EXPORT_SYMBOL vmlinux 0xb147a855 dql_reset -EXPORT_SYMBOL vmlinux 0xb1499bf3 __fib6_flush_trees EXPORT_SYMBOL vmlinux 0xb14ab1ef hdmi_audio_infoframe_init EXPORT_SYMBOL vmlinux 0xb14fc46a find_next_clump8 EXPORT_SYMBOL vmlinux 0xb15bd8fa tb_ticks_per_sec -EXPORT_SYMBOL vmlinux 0xb1667c17 d_obtain_root -EXPORT_SYMBOL vmlinux 0xb1743a64 vc_cons +EXPORT_SYMBOL vmlinux 0xb15f5c43 dma_unmap_page_attrs +EXPORT_SYMBOL vmlinux 0xb172c144 twl6040_get_pll +EXPORT_SYMBOL vmlinux 0xb19189a2 vm_map_pages +EXPORT_SYMBOL vmlinux 0xb1951d62 skb_try_coalesce +EXPORT_SYMBOL vmlinux 0xb1993457 nf_setsockopt EXPORT_SYMBOL vmlinux 0xb19d55df fsl_upm_run_pattern -EXPORT_SYMBOL vmlinux 0xb1a3e108 pci_disable_link_state -EXPORT_SYMBOL vmlinux 0xb1acaaca vmf_insert_pfn_prot -EXPORT_SYMBOL vmlinux 0xb1b5457f param_get_bool -EXPORT_SYMBOL vmlinux 0xb1bcb1b2 dma_resv_fini -EXPORT_SYMBOL vmlinux 0xb1bcc7cd kill_block_super +EXPORT_SYMBOL vmlinux 0xb1b57b03 phy_validate_pause +EXPORT_SYMBOL vmlinux 0xb1b7f943 bdev_read_only EXPORT_SYMBOL vmlinux 0xb1c3a01a oops_in_progress EXPORT_SYMBOL vmlinux 0xb1c5c64e gtm_set_exact_timer16 -EXPORT_SYMBOL vmlinux 0xb1cb1c1e mipi_dsi_dcs_exit_sleep_mode +EXPORT_SYMBOL vmlinux 0xb1cafede block_invalidatepage +EXPORT_SYMBOL vmlinux 0xb1d28601 sock_gettstamp EXPORT_SYMBOL vmlinux 0xb1d3a15c blk_finish_plug -EXPORT_SYMBOL vmlinux 0xb1d9b70d __tty_insert_flip_char +EXPORT_SYMBOL vmlinux 0xb1d6e8ba xfrm6_input_addr EXPORT_SYMBOL vmlinux 0xb1ddf995 jiffies_64_to_clock_t -EXPORT_SYMBOL vmlinux 0xb1f65c7e pci_read_config_dword -EXPORT_SYMBOL vmlinux 0xb227878e mac_find_mode +EXPORT_SYMBOL vmlinux 0xb1e969a7 build_skb_around +EXPORT_SYMBOL vmlinux 0xb1ec0a37 neigh_direct_output +EXPORT_SYMBOL vmlinux 0xb20a63d3 param_get_long +EXPORT_SYMBOL vmlinux 0xb20e62fd xfrm_state_update +EXPORT_SYMBOL vmlinux 0xb2132969 insert_inode_locked +EXPORT_SYMBOL vmlinux 0xb21cc7d5 write_dirty_buffer EXPORT_SYMBOL vmlinux 0xb22e16d5 radix_tree_maybe_preload EXPORT_SYMBOL vmlinux 0xb23027c1 kstrtos16_from_user -EXPORT_SYMBOL vmlinux 0xb2401823 d_hash_and_lookup -EXPORT_SYMBOL vmlinux 0xb2455b27 xp_dma_map -EXPORT_SYMBOL vmlinux 0xb2579ce5 phy_ethtool_get_strings -EXPORT_SYMBOL vmlinux 0xb26ff89b dev_graft_qdisc -EXPORT_SYMBOL vmlinux 0xb293d79b seq_read_iter +EXPORT_SYMBOL vmlinux 0xb23a4453 pci_find_bus +EXPORT_SYMBOL vmlinux 0xb2437744 dquot_mark_dquot_dirty +EXPORT_SYMBOL vmlinux 0xb2650ddd md_flush_request +EXPORT_SYMBOL vmlinux 0xb270bfa7 vme_slot_num +EXPORT_SYMBOL vmlinux 0xb280b0fc kernel_recvmsg +EXPORT_SYMBOL vmlinux 0xb290dbf6 skb_free_datagram EXPORT_SYMBOL vmlinux 0xb2acc4cd __msr_check_and_clear EXPORT_SYMBOL vmlinux 0xb2acd9e5 free_bucket_spinlocks -EXPORT_SYMBOL vmlinux 0xb2ad32b2 sk_free -EXPORT_SYMBOL vmlinux 0xb2b4cc53 pci_irq_vector -EXPORT_SYMBOL vmlinux 0xb2be934b fget -EXPORT_SYMBOL vmlinux 0xb2c60c66 dev_set_mac_address_user -EXPORT_SYMBOL vmlinux 0xb2d03570 devm_memremap -EXPORT_SYMBOL vmlinux 0xb2d94647 pci_enable_device_io -EXPORT_SYMBOL vmlinux 0xb2dc84b8 setattr_copy -EXPORT_SYMBOL vmlinux 0xb2e5dbc8 __blk_mq_alloc_disk -EXPORT_SYMBOL vmlinux 0xb2ec9db2 of_find_node_by_name +EXPORT_SYMBOL vmlinux 0xb2c715d9 __devm_release_region +EXPORT_SYMBOL vmlinux 0xb2eb8302 register_cdrom EXPORT_SYMBOL vmlinux 0xb2f35c6a xxh64 EXPORT_SYMBOL vmlinux 0xb2f579c7 __cpuhp_remove_state_cpuslocked -EXPORT_SYMBOL vmlinux 0xb2fc616f get_user_pages +EXPORT_SYMBOL vmlinux 0xb2fc3e45 generic_file_llseek EXPORT_SYMBOL vmlinux 0xb2fcb56d queue_delayed_work_on +EXPORT_SYMBOL vmlinux 0xb308963d netdev_set_sb_channel EXPORT_SYMBOL vmlinux 0xb308c97d wait_woken +EXPORT_SYMBOL vmlinux 0xb309000d ip_queue_xmit EXPORT_SYMBOL vmlinux 0xb30b9822 vme_master_set -EXPORT_SYMBOL vmlinux 0xb31f45ab ipv6_mc_check_mld +EXPORT_SYMBOL vmlinux 0xb31c8816 udp_flush_pending_frames EXPORT_SYMBOL vmlinux 0xb320cc0e sg_init_one EXPORT_SYMBOL vmlinux 0xb3258f79 __ubsan_handle_type_mismatch_v1 -EXPORT_SYMBOL vmlinux 0xb32eb1a8 seq_escape -EXPORT_SYMBOL vmlinux 0xb34f0399 tcp_mtup_init +EXPORT_SYMBOL vmlinux 0xb33b4a28 skb_orphan_partial +EXPORT_SYMBOL vmlinux 0xb340f944 phy_read_paged EXPORT_SYMBOL vmlinux 0xb350f6f2 dqstats +EXPORT_SYMBOL vmlinux 0xb3636922 mmc_gpio_get_ro +EXPORT_SYMBOL vmlinux 0xb3650116 scsi_device_lookup EXPORT_SYMBOL vmlinux 0xb3687850 out_of_line_wait_on_bit_lock -EXPORT_SYMBOL vmlinux 0xb36a7ddb inode_dio_wait -EXPORT_SYMBOL vmlinux 0xb37a6400 sock_set_sndtimeo -EXPORT_SYMBOL vmlinux 0xb3814e7c xfrm6_rcv_spi -EXPORT_SYMBOL vmlinux 0xb3899e7a clear_inode -EXPORT_SYMBOL vmlinux 0xb39fed8d sock_no_sendpage +EXPORT_SYMBOL vmlinux 0xb3b4d5f7 dquot_drop EXPORT_SYMBOL vmlinux 0xb3bd68cc security_secmark_relabel_packet EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string -EXPORT_SYMBOL vmlinux 0xb3d73369 vfs_fileattr_get EXPORT_SYMBOL vmlinux 0xb3e3ac95 _raw_read_lock -EXPORT_SYMBOL vmlinux 0xb3ecdc1b pin_user_pages_locked -EXPORT_SYMBOL vmlinux 0xb3f3bce3 sg_alloc_table_from_pages_segment +EXPORT_SYMBOL vmlinux 0xb3e41fd6 of_find_node_by_type EXPORT_SYMBOL vmlinux 0xb3f49446 kstrtos8_from_user +EXPORT_SYMBOL vmlinux 0xb3f545a8 crypto_sha1_update EXPORT_SYMBOL vmlinux 0xb3f548ad kmemdup_nul EXPORT_SYMBOL vmlinux 0xb3f7646e kthread_should_stop -EXPORT_SYMBOL vmlinux 0xb3f9e0ab security_locked_down -EXPORT_SYMBOL vmlinux 0xb4054545 kthread_create_worker_on_cpu -EXPORT_SYMBOL vmlinux 0xb41c950d __cleancache_invalidate_inode -EXPORT_SYMBOL vmlinux 0xb41d01b1 truncate_inode_pages +EXPORT_SYMBOL vmlinux 0xb3fc7a44 file_ns_capable +EXPORT_SYMBOL vmlinux 0xb40e7f50 param_set_invbool EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked -EXPORT_SYMBOL vmlinux 0xb4250ca9 cdev_alloc -EXPORT_SYMBOL vmlinux 0xb42953eb vlan_for_each -EXPORT_SYMBOL vmlinux 0xb4346430 hdmi_infoframe_log -EXPORT_SYMBOL vmlinux 0xb434c187 __skb_free_datagram_locked -EXPORT_SYMBOL vmlinux 0xb435426a skb_flow_dissect_meta +EXPORT_SYMBOL vmlinux 0xb4402e3b clear_inode EXPORT_SYMBOL vmlinux 0xb4424b2b proc_doulongvec_ms_jiffies_minmax EXPORT_SYMBOL vmlinux 0xb44478a6 qe_pin_free -EXPORT_SYMBOL vmlinux 0xb44599e8 netlink_capable -EXPORT_SYMBOL vmlinux 0xb44e7e59 pfifo_qdisc_ops -EXPORT_SYMBOL vmlinux 0xb4691eb8 dquot_alloc -EXPORT_SYMBOL vmlinux 0xb470105e phy_support_sym_pause +EXPORT_SYMBOL vmlinux 0xb44ae427 of_parse_phandle_with_args +EXPORT_SYMBOL vmlinux 0xb44cc680 pci_back_from_sleep +EXPORT_SYMBOL vmlinux 0xb451a06b of_graph_get_endpoint_by_regs +EXPORT_SYMBOL vmlinux 0xb4585d04 kmem_cache_create +EXPORT_SYMBOL vmlinux 0xb4662e41 _dev_err +EXPORT_SYMBOL vmlinux 0xb46f55eb show_init_ipc_ns EXPORT_SYMBOL vmlinux 0xb473e2c2 lockref_get EXPORT_SYMBOL vmlinux 0xb47be20e pseries_disable_reloc_on_exc -EXPORT_SYMBOL vmlinux 0xb47d6777 uart_unregister_driver -EXPORT_SYMBOL vmlinux 0xb4844ea7 blackhole_netdev -EXPORT_SYMBOL vmlinux 0xb48aa066 __inode_add_bytes -EXPORT_SYMBOL vmlinux 0xb48c77f0 ip_defrag +EXPORT_SYMBOL vmlinux 0xb4866fd5 phy_do_ioctl EXPORT_SYMBOL vmlinux 0xb48d4d22 security_sb_eat_lsm_opts -EXPORT_SYMBOL vmlinux 0xb48db133 netdev_notice -EXPORT_SYMBOL vmlinux 0xb4956446 xfrm_input -EXPORT_SYMBOL vmlinux 0xb49ca7c4 xfrm_state_delete -EXPORT_SYMBOL vmlinux 0xb4bca0b2 truncate_inode_pages_range -EXPORT_SYMBOL vmlinux 0xb4bf72a6 dcbnl_ieee_notify -EXPORT_SYMBOL vmlinux 0xb4c25ca9 serio_unregister_driver -EXPORT_SYMBOL vmlinux 0xb4d83bfd __dst_destroy_metrics_generic +EXPORT_SYMBOL vmlinux 0xb498bf64 would_dump +EXPORT_SYMBOL vmlinux 0xb4ad6cc7 scm_detach_fds +EXPORT_SYMBOL vmlinux 0xb4bc4bd6 clean_bdev_aliases +EXPORT_SYMBOL vmlinux 0xb4c67573 blkdev_issue_flush +EXPORT_SYMBOL vmlinux 0xb4cbc25a gro_cells_init +EXPORT_SYMBOL vmlinux 0xb4cc9b10 dm_kcopyd_copy +EXPORT_SYMBOL vmlinux 0xb4d340d6 agp_bridge EXPORT_SYMBOL vmlinux 0xb4f13d2a abort -EXPORT_SYMBOL vmlinux 0xb5137615 skb_push -EXPORT_SYMBOL vmlinux 0xb51498aa sk_stream_wait_close -EXPORT_SYMBOL vmlinux 0xb519a0f0 del_random_ready_callback -EXPORT_SYMBOL vmlinux 0xb51eb150 dev_addr_flush +EXPORT_SYMBOL vmlinux 0xb4fed4df __bforget +EXPORT_SYMBOL vmlinux 0xb50a1399 vme_unregister_bridge +EXPORT_SYMBOL vmlinux 0xb52aef6d freeze_super EXPORT_SYMBOL vmlinux 0xb539b516 dma_fence_array_ops -EXPORT_SYMBOL vmlinux 0xb53f9ae1 ps2_end_command -EXPORT_SYMBOL vmlinux 0xb5551aef fuse_mount_destroy EXPORT_SYMBOL vmlinux 0xb555f9f3 gtm_get_specific_timer16 +EXPORT_SYMBOL vmlinux 0xb5708ab6 sg_miter_next EXPORT_SYMBOL vmlinux 0xb57343c2 frontswap_shrink -EXPORT_SYMBOL vmlinux 0xb57a97dd input_register_handler +EXPORT_SYMBOL vmlinux 0xb583d491 scsi_register_driver EXPORT_SYMBOL vmlinux 0xb58aeaab kernel_cpustat -EXPORT_SYMBOL vmlinux 0xb5961a45 blk_rq_unmap_user EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev +EXPORT_SYMBOL vmlinux 0xb5a4d4d1 inet_csk_reqsk_queue_add EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy EXPORT_SYMBOL vmlinux 0xb5b63711 fileattr_fill_xflags -EXPORT_SYMBOL vmlinux 0xb5b9195e nd_dev_to_uuid +EXPORT_SYMBOL vmlinux 0xb5c512ba dec_zone_page_state +EXPORT_SYMBOL vmlinux 0xb5c7b525 ipmr_rule_default +EXPORT_SYMBOL vmlinux 0xb5cf0a2b skb_tunnel_check_pmtu +EXPORT_SYMBOL vmlinux 0xb5d49487 pci_enable_msi EXPORT_SYMBOL vmlinux 0xb5e73116 flush_delayed_work -EXPORT_SYMBOL vmlinux 0xb5f370af input_unregister_device -EXPORT_SYMBOL vmlinux 0xb609f841 scsi_dma_map -EXPORT_SYMBOL vmlinux 0xb60fe4d0 read_cache_page -EXPORT_SYMBOL vmlinux 0xb6237fb3 of_device_is_compatible -EXPORT_SYMBOL vmlinux 0xb62ba6bb vfs_dup_fs_context +EXPORT_SYMBOL vmlinux 0xb600b9fc security_inode_invalidate_secctx +EXPORT_SYMBOL vmlinux 0xb6139253 inet_frag_queue_insert EXPORT_SYMBOL vmlinux 0xb633f115 irq_poll_enable EXPORT_SYMBOL vmlinux 0xb6361231 mutex_is_locked -EXPORT_SYMBOL vmlinux 0xb642971e param_get_byte -EXPORT_SYMBOL vmlinux 0xb64a7d61 seq_bprintf -EXPORT_SYMBOL vmlinux 0xb64e6b01 phy_do_ioctl_running EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt EXPORT_SYMBOL vmlinux 0xb67c9280 utf8cursor EXPORT_SYMBOL vmlinux 0xb67fec0e uuid_parse -EXPORT_SYMBOL vmlinux 0xb681706c dev_remove_pack EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin EXPORT_SYMBOL vmlinux 0xb6acaa13 phy_sfp_detach -EXPORT_SYMBOL vmlinux 0xb6afa126 of_get_property -EXPORT_SYMBOL vmlinux 0xb6cffdc1 qdisc_hash_del -EXPORT_SYMBOL vmlinux 0xb6e0d27c blk_queue_segment_boundary +EXPORT_SYMBOL vmlinux 0xb6d05a56 jbd2_journal_inode_ranged_write +EXPORT_SYMBOL vmlinux 0xb6e124a1 pagecache_isize_extended EXPORT_SYMBOL vmlinux 0xb6e36ce2 psched_ratecfg_precompute -EXPORT_SYMBOL vmlinux 0xb6ef0f37 inet_proto_csum_replace4 -EXPORT_SYMBOL vmlinux 0xb6f57ab7 pci_get_device +EXPORT_SYMBOL vmlinux 0xb6e4f785 nf_log_set +EXPORT_SYMBOL vmlinux 0xb6f15b81 sk_common_release +EXPORT_SYMBOL vmlinux 0xb6f9b04a generic_block_bmap EXPORT_SYMBOL vmlinux 0xb6fde909 close_fd EXPORT_SYMBOL vmlinux 0xb70289d9 call_usermodehelper_exec -EXPORT_SYMBOL vmlinux 0xb70ceeff dst_dev_put +EXPORT_SYMBOL vmlinux 0xb706792f rproc_of_parse_firmware +EXPORT_SYMBOL vmlinux 0xb70b593d ipmi_platform_add EXPORT_SYMBOL vmlinux 0xb71589f0 skip_spaces EXPORT_SYMBOL vmlinux 0xb716323e set_security_override_from_ctx +EXPORT_SYMBOL vmlinux 0xb71889c7 ihold EXPORT_SYMBOL vmlinux 0xb71ed69f __hw_addr_unsync EXPORT_SYMBOL vmlinux 0xb720e1ab mem_section -EXPORT_SYMBOL vmlinux 0xb73e0973 of_phy_find_device -EXPORT_SYMBOL vmlinux 0xb742b87f rproc_report_crash -EXPORT_SYMBOL vmlinux 0xb7640104 uart_match_port +EXPORT_SYMBOL vmlinux 0xb727d35c iterate_fd +EXPORT_SYMBOL vmlinux 0xb72c4721 vio_disable_interrupts +EXPORT_SYMBOL vmlinux 0xb73c0893 jbd2_wait_inode_data +EXPORT_SYMBOL vmlinux 0xb73c4222 param_set_bint +EXPORT_SYMBOL vmlinux 0xb74aab9e drop_super +EXPORT_SYMBOL vmlinux 0xb751bd14 disk_start_io_acct EXPORT_SYMBOL vmlinux 0xb7688155 ucc_slow_init EXPORT_SYMBOL vmlinux 0xb784154f utf8_casefold_hash -EXPORT_SYMBOL vmlinux 0xb786c339 page_cache_prev_miss EXPORT_SYMBOL vmlinux 0xb78debe3 LZ4_decompress_fast_usingDict -EXPORT_SYMBOL vmlinux 0xb7902ab6 udp_ioctl -EXPORT_SYMBOL vmlinux 0xb7a81a49 __inet_hash -EXPORT_SYMBOL vmlinux 0xb7a85301 vme_irq_generate -EXPORT_SYMBOL vmlinux 0xb7b5ea58 udp6_csum_init +EXPORT_SYMBOL vmlinux 0xb7a51cda fs_param_is_fd EXPORT_SYMBOL vmlinux 0xb7bc6adc seqno_fence_ops -EXPORT_SYMBOL vmlinux 0xb7bfac4f i2c_verify_adapter -EXPORT_SYMBOL vmlinux 0xb7c0a260 phy_get_pause EXPORT_SYMBOL vmlinux 0xb7c0f443 sort EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags -EXPORT_SYMBOL vmlinux 0xb7cce239 vio_find_node +EXPORT_SYMBOL vmlinux 0xb7cae492 from_kuid_munged +EXPORT_SYMBOL vmlinux 0xb7cbd2b6 mmc_cqe_post_req EXPORT_SYMBOL vmlinux 0xb7d2ef3d gen_pool_dma_alloc -EXPORT_SYMBOL vmlinux 0xb7dc2cc5 backlight_device_set_brightness -EXPORT_SYMBOL vmlinux 0xb801d388 netdev_lower_get_next_private_rcu -EXPORT_SYMBOL vmlinux 0xb808adb8 dev_add_pack -EXPORT_SYMBOL vmlinux 0xb81e88f6 mpage_writepage -EXPORT_SYMBOL vmlinux 0xb822baf5 netdev_sk_get_lowest_dev -EXPORT_SYMBOL vmlinux 0xb826dce3 dcache_dir_lseek -EXPORT_SYMBOL vmlinux 0xb82a6463 nvdimm_namespace_common_probe +EXPORT_SYMBOL vmlinux 0xb7ea8f2c __tcf_em_tree_match +EXPORT_SYMBOL vmlinux 0xb7ee922f __netlink_dump_start +EXPORT_SYMBOL vmlinux 0xb7f5501a nvdimm_check_and_set_ro +EXPORT_SYMBOL vmlinux 0xb7f92cb8 udp_seq_next +EXPORT_SYMBOL vmlinux 0xb80a802d phy_trigger_machine EXPORT_SYMBOL vmlinux 0xb83129db ZSTD_decompressContinue -EXPORT_SYMBOL vmlinux 0xb8336302 pcie_capability_clear_and_set_word -EXPORT_SYMBOL vmlinux 0xb862c7b6 ip_route_input_noref -EXPORT_SYMBOL vmlinux 0xb86708c9 fwnode_irq_get +EXPORT_SYMBOL vmlinux 0xb83d364a param_ops_hexint +EXPORT_SYMBOL vmlinux 0xb865a077 of_node_name_eq +EXPORT_SYMBOL vmlinux 0xb866c45a pci_bus_add_devices EXPORT_SYMBOL vmlinux 0xb868ac5c register_sysrq_key -EXPORT_SYMBOL vmlinux 0xb8822bc6 pnv_cxl_alloc_hwirqs -EXPORT_SYMBOL vmlinux 0xb885592d iunique -EXPORT_SYMBOL vmlinux 0xb89506dd phy_sfp_probe +EXPORT_SYMBOL vmlinux 0xb876a1a3 input_register_handle +EXPORT_SYMBOL vmlinux 0xb87d99e6 nf_log_unset EXPORT_SYMBOL vmlinux 0xb89b6e6b guid_parse -EXPORT_SYMBOL vmlinux 0xb89e46e2 phy_validate_pause +EXPORT_SYMBOL vmlinux 0xb8a35f08 filemap_range_has_page +EXPORT_SYMBOL vmlinux 0xb8ad0dd5 __blk_alloc_disk EXPORT_SYMBOL vmlinux 0xb8b043f2 kfree_link -EXPORT_SYMBOL vmlinux 0xb8b08335 i2c_del_driver EXPORT_SYMBOL vmlinux 0xb8b9f817 kmalloc_order_trace -EXPORT_SYMBOL vmlinux 0xb8c1f847 skb_orphan_partial -EXPORT_SYMBOL vmlinux 0xb8c56c8e insert_inode_locked -EXPORT_SYMBOL vmlinux 0xb8dd7281 pcibus_to_node -EXPORT_SYMBOL vmlinux 0xb8e40d8d tcp_child_process +EXPORT_SYMBOL vmlinux 0xb8bd30d0 bpf_prog_get_type_path +EXPORT_SYMBOL vmlinux 0xb8e80e8a mmc_detect_change EXPORT_SYMBOL vmlinux 0xb9056bb6 remove_conflicting_framebuffers +EXPORT_SYMBOL vmlinux 0xb9060d3a fwnode_get_mac_address EXPORT_SYMBOL vmlinux 0xb907513f unpoison_memory +EXPORT_SYMBOL vmlinux 0xb90b34a8 keyring_clear EXPORT_SYMBOL vmlinux 0xb911bb58 minmax_running_max -EXPORT_SYMBOL vmlinux 0xb9363e18 simple_dentry_operations +EXPORT_SYMBOL vmlinux 0xb9129b20 scsi_block_requests +EXPORT_SYMBOL vmlinux 0xb91c3dc2 pci_scan_bus +EXPORT_SYMBOL vmlinux 0xb91cf688 mipi_dsi_dcs_get_display_brightness EXPORT_SYMBOL vmlinux 0xb94339c4 qdisc_put_stab +EXPORT_SYMBOL vmlinux 0xb94413ae iov_iter_kvec EXPORT_SYMBOL vmlinux 0xb9478d90 hdmi_drm_infoframe_unpack_only -EXPORT_SYMBOL vmlinux 0xb951978f freeze_bdev -EXPORT_SYMBOL vmlinux 0xb953c3d7 pfifo_fast_ops -EXPORT_SYMBOL vmlinux 0xb956b4d3 elv_rb_former_request -EXPORT_SYMBOL vmlinux 0xb959aac4 scsi_alloc_sgtables -EXPORT_SYMBOL vmlinux 0xb96b7458 arch_debugfs_dir -EXPORT_SYMBOL vmlinux 0xb96fcdcd vlan_dev_real_dev -EXPORT_SYMBOL vmlinux 0xb9708130 sk_wait_data +EXPORT_SYMBOL vmlinux 0xb94ea3e7 km_new_mapping +EXPORT_SYMBOL vmlinux 0xb95480c0 mdiobus_unregister_device +EXPORT_SYMBOL vmlinux 0xb960c1af phy_ethtool_set_eee EXPORT_SYMBOL vmlinux 0xb97220ff bitmap_parse -EXPORT_SYMBOL vmlinux 0xb97a5c76 dquot_operations -EXPORT_SYMBOL vmlinux 0xb9823b2f blk_queue_io_opt -EXPORT_SYMBOL vmlinux 0xb9db5e21 tty_port_open +EXPORT_SYMBOL vmlinux 0xb98de798 kset_unregister +EXPORT_SYMBOL vmlinux 0xb9988a45 tcp_sock_set_user_timeout +EXPORT_SYMBOL vmlinux 0xb9b3964d __dev_remove_pack +EXPORT_SYMBOL vmlinux 0xb9bee164 devfreq_monitor_suspend +EXPORT_SYMBOL vmlinux 0xb9c9c318 seq_bprintf +EXPORT_SYMBOL vmlinux 0xb9d4ae55 scsi_device_quiesce EXPORT_SYMBOL vmlinux 0xb9e8e2cc in6addr_sitelocal_allrouters -EXPORT_SYMBOL vmlinux 0xb9f2fad6 netdev_err -EXPORT_SYMBOL vmlinux 0xb9f56962 kernel_accept -EXPORT_SYMBOL vmlinux 0xb9fc18a1 agp3_generic_tlbflush +EXPORT_SYMBOL vmlinux 0xb9f948b3 kthread_create_worker_on_cpu EXPORT_SYMBOL vmlinux 0xba0676e2 vm_zone_stat EXPORT_SYMBOL vmlinux 0xba1008c8 __crc32c_le -EXPORT_SYMBOL vmlinux 0xba4512ad remove_watch_from_object -EXPORT_SYMBOL vmlinux 0xba467c9c xfrm_policy_register_afinfo +EXPORT_SYMBOL vmlinux 0xba113f88 __ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0xba27b9cc devm_ioremap_resource +EXPORT_SYMBOL vmlinux 0xba2c8dbd of_device_is_available EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy +EXPORT_SYMBOL vmlinux 0xba5234cd account_page_redirty EXPORT_SYMBOL vmlinux 0xba53adab nla_policy_len +EXPORT_SYMBOL vmlinux 0xba5bcf55 config_item_init_type_name +EXPORT_SYMBOL vmlinux 0xba6452a9 tcp_poll EXPORT_SYMBOL vmlinux 0xba67a355 nmi_panic EXPORT_SYMBOL vmlinux 0xba691c85 _insb EXPORT_SYMBOL vmlinux 0xba707a78 qe_get_brg_clk -EXPORT_SYMBOL vmlinux 0xba99f65e __check_sticky -EXPORT_SYMBOL vmlinux 0xba9f8bd7 scsicam_bios_param -EXPORT_SYMBOL vmlinux 0xbaa1ad55 dev_pick_tx_zero -EXPORT_SYMBOL vmlinux 0xbaa6b3ea param_get_string -EXPORT_SYMBOL vmlinux 0xbaabfdda dev_uc_init -EXPORT_SYMBOL vmlinux 0xbb04937e of_mdio_find_bus +EXPORT_SYMBOL vmlinux 0xba7229fe mmc_run_bkops EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset -EXPORT_SYMBOL vmlinux 0xbb0a38d4 blkdev_issue_discard -EXPORT_SYMBOL vmlinux 0xbb15e367 dm_get_device +EXPORT_SYMBOL vmlinux 0xbb19eb38 pmem_should_map_pages EXPORT_SYMBOL vmlinux 0xbb24f607 init_cdrom_command -EXPORT_SYMBOL vmlinux 0xbb2c8324 netpoll_cleanup +EXPORT_SYMBOL vmlinux 0xbb349b78 sk_page_frag_refill EXPORT_SYMBOL vmlinux 0xbb35675b __bitmap_intersects +EXPORT_SYMBOL vmlinux 0xbb37ab24 pci_set_master +EXPORT_SYMBOL vmlinux 0xbb3a00e9 pfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0xbb3bcddd ip_mc_leave_group EXPORT_SYMBOL vmlinux 0xbb3e9e90 __pmd_table_size +EXPORT_SYMBOL vmlinux 0xbb44242b dcb_ieee_setapp EXPORT_SYMBOL vmlinux 0xbb4f4766 simple_write_to_buffer -EXPORT_SYMBOL vmlinux 0xbb60f26d scsi_is_target_device -EXPORT_SYMBOL vmlinux 0xbb776aa2 inet_csk_reqsk_queue_drop -EXPORT_SYMBOL vmlinux 0xbb796e69 max8925_bulk_read +EXPORT_SYMBOL vmlinux 0xbb54e7c5 ip6_find_1stfragopt EXPORT_SYMBOL vmlinux 0xbb7b414e gtm_stop_timer16 -EXPORT_SYMBOL vmlinux 0xbb8186ee inode_set_flags -EXPORT_SYMBOL vmlinux 0xbb8d2357 bio_free_pages -EXPORT_SYMBOL vmlinux 0xbba6cfc1 always_delete_dentry -EXPORT_SYMBOL vmlinux 0xbba6f69d jbd2_journal_unlock_updates +EXPORT_SYMBOL vmlinux 0xbb7fa82c vm_insert_pages +EXPORT_SYMBOL vmlinux 0xbb82b87e alloc_pages +EXPORT_SYMBOL vmlinux 0xbb94d560 tcf_qevent_dump +EXPORT_SYMBOL vmlinux 0xbba64e34 of_device_alloc EXPORT_SYMBOL vmlinux 0xbba75607 down_killable -EXPORT_SYMBOL vmlinux 0xbbac24ed dev_get_phys_port_id -EXPORT_SYMBOL vmlinux 0xbbb39e66 dev_set_group -EXPORT_SYMBOL vmlinux 0xbbbdab3b input_set_poll_interval -EXPORT_SYMBOL vmlinux 0xbbc96d24 give_up_console -EXPORT_SYMBOL vmlinux 0xbbd961a3 xfrm_state_lookup_byaddr -EXPORT_SYMBOL vmlinux 0xbbe3c718 mmput_async +EXPORT_SYMBOL vmlinux 0xbbb7ef12 blk_queue_io_opt +EXPORT_SYMBOL vmlinux 0xbbc57a1b address_space_init_once +EXPORT_SYMBOL vmlinux 0xbbc6c86a devfreq_resume_device +EXPORT_SYMBOL vmlinux 0xbbd4af44 freeze_bdev +EXPORT_SYMBOL vmlinux 0xbbe640ab netif_skb_features EXPORT_SYMBOL vmlinux 0xbbe80fdb kmalloc_order -EXPORT_SYMBOL vmlinux 0xbc016bc8 framebuffer_alloc -EXPORT_SYMBOL vmlinux 0xbc2511bb padata_alloc -EXPORT_SYMBOL vmlinux 0xbc27cd84 d_splice_alias +EXPORT_SYMBOL vmlinux 0xbbec0d2a blk_queue_max_write_same_sectors +EXPORT_SYMBOL vmlinux 0xbbee0637 phy_device_create +EXPORT_SYMBOL vmlinux 0xbbfb488d phy_sfp_probe +EXPORT_SYMBOL vmlinux 0xbc075132 xsk_get_pool_from_qid +EXPORT_SYMBOL vmlinux 0xbc248e7a ioc_lookup_icq +EXPORT_SYMBOL vmlinux 0xbc27632e tcf_em_tree_validate EXPORT_SYMBOL vmlinux 0xbc316de4 tty_termios_input_baud_rate +EXPORT_SYMBOL vmlinux 0xbc344647 ip6_fraglist_init +EXPORT_SYMBOL vmlinux 0xbc3cd818 vfs_iocb_iter_write EXPORT_SYMBOL vmlinux 0xbc42c17f mutex_unlock -EXPORT_SYMBOL vmlinux 0xbc695b2e blk_queue_max_segments -EXPORT_SYMBOL vmlinux 0xbc69acbe mdiobus_setup_mdiodev_from_board_info -EXPORT_SYMBOL vmlinux 0xbc6c7317 vfs_mknod -EXPORT_SYMBOL vmlinux 0xbc6db854 lock_rename +EXPORT_SYMBOL vmlinux 0xbc49b41d ppp_unit_number +EXPORT_SYMBOL vmlinux 0xbc5d14af netdev_name_node_alt_create +EXPORT_SYMBOL vmlinux 0xbc70fbf6 i2c_clients_command +EXPORT_SYMBOL vmlinux 0xbc76439a blk_pre_runtime_resume +EXPORT_SYMBOL vmlinux 0xbc938a06 elv_rb_latter_request EXPORT_SYMBOL vmlinux 0xbc982b06 eeh_subsystem_flags -EXPORT_SYMBOL vmlinux 0xbca37ec6 pcie_capability_write_dword +EXPORT_SYMBOL vmlinux 0xbca12248 mark_buffer_dirty EXPORT_SYMBOL vmlinux 0xbcab6ee6 sscanf EXPORT_SYMBOL vmlinux 0xbcad0c22 gen_new_estimator -EXPORT_SYMBOL vmlinux 0xbcb85705 dev_get_by_name -EXPORT_SYMBOL vmlinux 0xbcc7d3f5 pneigh_lookup -EXPORT_SYMBOL vmlinux 0xbcdbcedd make_kuid -EXPORT_SYMBOL vmlinux 0xbce0c761 seq_open +EXPORT_SYMBOL vmlinux 0xbcb9d48b devm_of_find_backlight +EXPORT_SYMBOL vmlinux 0xbcc56777 devfreq_monitor_resume +EXPORT_SYMBOL vmlinux 0xbcc8101a ipv6_chk_custom_prefix +EXPORT_SYMBOL vmlinux 0xbcd9d814 peernet2id +EXPORT_SYMBOL vmlinux 0xbcde8831 netdev_info +EXPORT_SYMBOL vmlinux 0xbced7386 of_platform_bus_probe EXPORT_SYMBOL vmlinux 0xbcf150f9 xor_altivec_5 -EXPORT_SYMBOL vmlinux 0xbcf3f2ce d_alloc_name EXPORT_SYMBOL vmlinux 0xbcf54e7f _raw_write_lock_bh -EXPORT_SYMBOL vmlinux 0xbd16739a __lock_buffer +EXPORT_SYMBOL vmlinux 0xbd07a947 sock_no_socketpair +EXPORT_SYMBOL vmlinux 0xbd0c14e6 generic_file_fsync +EXPORT_SYMBOL vmlinux 0xbd2e99d6 pci_restore_state EXPORT_SYMBOL vmlinux 0xbd393ca3 ioread64be_lo_hi -EXPORT_SYMBOL vmlinux 0xbd43c31c filp_open EXPORT_SYMBOL vmlinux 0xbd462b55 __kfifo_init -EXPORT_SYMBOL vmlinux 0xbd4c6dfb backlight_device_unregister EXPORT_SYMBOL vmlinux 0xbd628752 __tracepoint_mmap_lock_start_locking EXPORT_SYMBOL vmlinux 0xbd6841d4 crc16 -EXPORT_SYMBOL vmlinux 0xbd6a284a mipi_dsi_dcs_set_display_off -EXPORT_SYMBOL vmlinux 0xbd7235aa vm_map_pages_zero -EXPORT_SYMBOL vmlinux 0xbd7525d1 sock_create_kern -EXPORT_SYMBOL vmlinux 0xbd792f31 mipi_dsi_dcs_get_power_mode -EXPORT_SYMBOL vmlinux 0xbd7ec712 key_type_keyring -EXPORT_SYMBOL vmlinux 0xbd9bc8a6 generic_file_direct_write -EXPORT_SYMBOL vmlinux 0xbd9d71fc nvdimm_namespace_capacity -EXPORT_SYMBOL vmlinux 0xbdc7259f vmap -EXPORT_SYMBOL vmlinux 0xbdca0fff __breadahead_gfp -EXPORT_SYMBOL vmlinux 0xbdcb27c2 unregister_key_type -EXPORT_SYMBOL vmlinux 0xbdd671a3 rproc_add -EXPORT_SYMBOL vmlinux 0xbde65bfa d_add_ci -EXPORT_SYMBOL vmlinux 0xbde98483 vme_lm_request -EXPORT_SYMBOL vmlinux 0xbded36b5 jbd2_fc_get_buf -EXPORT_SYMBOL vmlinux 0xbdeded06 devfreq_update_status -EXPORT_SYMBOL vmlinux 0xbdffff11 kill_pgrp -EXPORT_SYMBOL vmlinux 0xbe015ada padata_free +EXPORT_SYMBOL vmlinux 0xbd69c803 __blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0xbd7571d7 skb_coalesce_rx_frag +EXPORT_SYMBOL vmlinux 0xbd87c973 cdev_device_add +EXPORT_SYMBOL vmlinux 0xbd9a9bda unregister_nexthop_notifier +EXPORT_SYMBOL vmlinux 0xbd9bf455 tcf_idr_release +EXPORT_SYMBOL vmlinux 0xbdb7b8d3 submit_bio +EXPORT_SYMBOL vmlinux 0xbdcc8a6c devm_devfreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0xbdd458a6 mmc_set_blocklen +EXPORT_SYMBOL vmlinux 0xbdf0f2b3 tcp_disconnect EXPORT_SYMBOL vmlinux 0xbe118c52 __tracepoint_mmap_lock_acquire_returned EXPORT_SYMBOL vmlinux 0xbe1427af __printk_cpu_unlock -EXPORT_SYMBOL vmlinux 0xbe1f9ad0 mark_buffer_write_io_error -EXPORT_SYMBOL vmlinux 0xbe3750f4 cdev_device_add +EXPORT_SYMBOL vmlinux 0xbe14d9d5 blk_mq_unique_tag +EXPORT_SYMBOL vmlinux 0xbe1c69ec inet_rcv_saddr_equal +EXPORT_SYMBOL vmlinux 0xbe233f05 pcie_capability_read_word EXPORT_SYMBOL vmlinux 0xbe4eb6ed secure_dccpv6_sequence_number -EXPORT_SYMBOL vmlinux 0xbe57f677 tcf_em_unregister +EXPORT_SYMBOL vmlinux 0xbe51f71e tcp_sendmsg EXPORT_SYMBOL vmlinux 0xbe5a24e9 xxh32_copy_state -EXPORT_SYMBOL vmlinux 0xbe60bc5c memcpy_page_flushcache -EXPORT_SYMBOL vmlinux 0xbe63d306 ppp_register_compressor -EXPORT_SYMBOL vmlinux 0xbe7e9a93 napi_gro_frags -EXPORT_SYMBOL vmlinux 0xbea1e715 vio_h_cop_sync -EXPORT_SYMBOL vmlinux 0xbee43fde update_region +EXPORT_SYMBOL vmlinux 0xbe8c609b dcbnl_ieee_notify +EXPORT_SYMBOL vmlinux 0xbeb7d1b0 mod_zone_page_state +EXPORT_SYMBOL vmlinux 0xbec0389b of_graph_get_remote_port_parent +EXPORT_SYMBOL vmlinux 0xbed99f20 sb_min_blocksize +EXPORT_SYMBOL vmlinux 0xbee110f7 unregister_key_type +EXPORT_SYMBOL vmlinux 0xbee77b90 __phy_resume +EXPORT_SYMBOL vmlinux 0xbee9fe42 scsi_is_target_device +EXPORT_SYMBOL vmlinux 0xbef2db38 mipi_dsi_detach EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule -EXPORT_SYMBOL vmlinux 0xbefa5a98 dev_driver_string -EXPORT_SYMBOL vmlinux 0xbefe84eb dev_set_promiscuity +EXPORT_SYMBOL vmlinux 0xbef7d062 blkdev_issue_write_same +EXPORT_SYMBOL vmlinux 0xbefc2fe3 jbd2_submit_inode_data +EXPORT_SYMBOL vmlinux 0xbf0c789f input_set_abs_params +EXPORT_SYMBOL vmlinux 0xbf130a24 bioset_init +EXPORT_SYMBOL vmlinux 0xbf1d5596 flow_rule_match_enc_ports +EXPORT_SYMBOL vmlinux 0xbf228f04 should_remove_suid EXPORT_SYMBOL vmlinux 0xbf2408cd tcp_hashinfo -EXPORT_SYMBOL vmlinux 0xbf2d6bff vme_irq_handler -EXPORT_SYMBOL vmlinux 0xbf33b2b5 flow_rule_match_ct -EXPORT_SYMBOL vmlinux 0xbf3eeac3 kfree_skb_list -EXPORT_SYMBOL vmlinux 0xbf4a7522 __put_page +EXPORT_SYMBOL vmlinux 0xbf278d60 netdev_port_same_parent_id +EXPORT_SYMBOL vmlinux 0xbf289f41 mipi_dsi_device_register_full +EXPORT_SYMBOL vmlinux 0xbf3aebf4 kthread_associate_blkcg +EXPORT_SYMBOL vmlinux 0xbf49425a sget +EXPORT_SYMBOL vmlinux 0xbf4df9b2 skb_realloc_headroom EXPORT_SYMBOL vmlinux 0xbf596f45 _insl_ns EXPORT_SYMBOL vmlinux 0xbf59c419 posix_acl_init -EXPORT_SYMBOL vmlinux 0xbf63ec34 udp_flush_pending_frames -EXPORT_SYMBOL vmlinux 0xbf646d03 devm_pci_remap_cfgspace +EXPORT_SYMBOL vmlinux 0xbf5fc298 ptp_find_pin_unlocked +EXPORT_SYMBOL vmlinux 0xbf616718 pldmfw_op_pci_match_record +EXPORT_SYMBOL vmlinux 0xbf6887d0 configfs_depend_item EXPORT_SYMBOL vmlinux 0xbf6908b2 _raw_spin_lock -EXPORT_SYMBOL vmlinux 0xbf69cb25 dev_set_mac_address -EXPORT_SYMBOL vmlinux 0xbf754040 sock_alloc_send_pskb -EXPORT_SYMBOL vmlinux 0xbf7c2a00 mdiobus_alloc_size -EXPORT_SYMBOL vmlinux 0xbf8645e4 sk_net_capable -EXPORT_SYMBOL vmlinux 0xbf903833 nlmsg_notify +EXPORT_SYMBOL vmlinux 0xbf74fe58 sock_kmalloc +EXPORT_SYMBOL vmlinux 0xbf929750 bdi_set_max_ratio +EXPORT_SYMBOL vmlinux 0xbf985c04 vme_slave_request EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set -EXPORT_SYMBOL vmlinux 0xbfb63e8e rproc_coredump_using_sections -EXPORT_SYMBOL vmlinux 0xbfb79f61 __vio_register_driver -EXPORT_SYMBOL vmlinux 0xbfb97dd6 agp_copy_info +EXPORT_SYMBOL vmlinux 0xbf9f963f mipi_dsi_dcs_set_page_address +EXPORT_SYMBOL vmlinux 0xbfbd1891 skb_checksum_trimmed +EXPORT_SYMBOL vmlinux 0xbfbfc382 nf_register_net_hook EXPORT_SYMBOL vmlinux 0xbfc177bc iowrite32_rep -EXPORT_SYMBOL vmlinux 0xbfc32af3 unlock_new_inode -EXPORT_SYMBOL vmlinux 0xbfe4dd99 netlink_broadcast -EXPORT_SYMBOL vmlinux 0xbfe58ca1 wait_on_page_private_2_killable -EXPORT_SYMBOL vmlinux 0xbfe9018d devm_backlight_device_unregister +EXPORT_SYMBOL vmlinux 0xbfea3bd5 dev_uc_sync_multiple EXPORT_SYMBOL vmlinux 0xbfee3ad5 loop_unregister_transfer -EXPORT_SYMBOL vmlinux 0xbff2eff0 page_get_link +EXPORT_SYMBOL vmlinux 0xbfef77c8 get_ipc_ns_exported +EXPORT_SYMBOL vmlinux 0xbff03c6d cdrom_check_events EXPORT_SYMBOL vmlinux 0xbff8182c plpar_hcall_norets -EXPORT_SYMBOL vmlinux 0xc00eaa47 tty_port_block_til_ready -EXPORT_SYMBOL vmlinux 0xc01faac3 pcie_capability_write_word EXPORT_SYMBOL vmlinux 0xc0243ea6 nla_reserve_nohdr EXPORT_SYMBOL vmlinux 0xc02f1469 dma_fence_array_create -EXPORT_SYMBOL vmlinux 0xc0412418 _dev_crit -EXPORT_SYMBOL vmlinux 0xc05a2c6c blk_queue_max_segment_size -EXPORT_SYMBOL vmlinux 0xc062ac53 inet_add_offload +EXPORT_SYMBOL vmlinux 0xc0364007 fault_in_writeable +EXPORT_SYMBOL vmlinux 0xc03b9ba9 clk_bulk_get_all +EXPORT_SYMBOL vmlinux 0xc0582950 vme_dma_request +EXPORT_SYMBOL vmlinux 0xc063409a seq_release_private +EXPORT_SYMBOL vmlinux 0xc07430c6 sock_diag_put_filterinfo EXPORT_SYMBOL vmlinux 0xc0763484 rfkill_blocked EXPORT_SYMBOL vmlinux 0xc07b0863 fb_destroy_modedb -EXPORT_SYMBOL vmlinux 0xc089e49c of_get_child_by_name EXPORT_SYMBOL vmlinux 0xc0afb5d7 cgroup_bpf_enabled_key EXPORT_SYMBOL vmlinux 0xc0b2664d devlink_dpipe_header_ipv4 EXPORT_SYMBOL vmlinux 0xc0b346d8 opal_nx_coproc_init -EXPORT_SYMBOL vmlinux 0xc0b3c97d cpufreq_generic_suspend EXPORT_SYMBOL vmlinux 0xc0bca0f1 ZSTD_nextSrcSizeToDecompress -EXPORT_SYMBOL vmlinux 0xc0cb22ae netlink_ack -EXPORT_SYMBOL vmlinux 0xc0cb8727 mmc_start_request -EXPORT_SYMBOL vmlinux 0xc0cb94f1 sock_queue_err_skb EXPORT_SYMBOL vmlinux 0xc0d6d78f __var_waitqueue -EXPORT_SYMBOL vmlinux 0xc0d75708 blk_set_runtime_active -EXPORT_SYMBOL vmlinux 0xc0d9754d vga_remove_vgacon EXPORT_SYMBOL vmlinux 0xc0ff12fb nla_strdup EXPORT_SYMBOL vmlinux 0xc0ff21c1 input_get_new_minor -EXPORT_SYMBOL vmlinux 0xc10f522d __page_symlink -EXPORT_SYMBOL vmlinux 0xc11290fd phy_aneg_done -EXPORT_SYMBOL vmlinux 0xc11e3046 vfs_rmdir -EXPORT_SYMBOL vmlinux 0xc1202279 inet_accept -EXPORT_SYMBOL vmlinux 0xc12ad917 finish_no_open -EXPORT_SYMBOL vmlinux 0xc12f0400 kern_path_create -EXPORT_SYMBOL vmlinux 0xc12fb258 md_set_array_sectors -EXPORT_SYMBOL vmlinux 0xc130434a blk_rq_map_user_iov +EXPORT_SYMBOL vmlinux 0xc103db46 nd_device_unregister +EXPORT_SYMBOL vmlinux 0xc10c721e pnv_cxl_alloc_hwirqs +EXPORT_SYMBOL vmlinux 0xc11c3e34 twl6040_clear_bits +EXPORT_SYMBOL vmlinux 0xc12d7e35 sock_sendmsg EXPORT_SYMBOL vmlinux 0xc134b38b ns_capable_noaudit -EXPORT_SYMBOL vmlinux 0xc14c102b xfrm_unregister_km +EXPORT_SYMBOL vmlinux 0xc139a28e skb_dump +EXPORT_SYMBOL vmlinux 0xc14598fc disk_stack_limits +EXPORT_SYMBOL vmlinux 0xc14c87b6 kfree_skb_list +EXPORT_SYMBOL vmlinux 0xc15011e3 remove_arg_zero EXPORT_SYMBOL vmlinux 0xc1514a3b free_irq -EXPORT_SYMBOL vmlinux 0xc161f6e2 scsi_register_driver EXPORT_SYMBOL vmlinux 0xc16410b9 ZSTD_getDictID_fromDDict EXPORT_SYMBOL vmlinux 0xc16be39d iter_div_u64_rem -EXPORT_SYMBOL vmlinux 0xc18e26a3 devm_nvmem_unregister -EXPORT_SYMBOL vmlinux 0xc1a0d763 scsi_eh_restore_cmnd -EXPORT_SYMBOL vmlinux 0xc1c5df47 start_tty +EXPORT_SYMBOL vmlinux 0xc1804caf posix_lock_file +EXPORT_SYMBOL vmlinux 0xc1a6c251 sock_queue_err_skb EXPORT_SYMBOL vmlinux 0xc1ce2bd1 gen_pool_fixed_alloc EXPORT_SYMBOL vmlinux 0xc1d5d504 scsi_cmd_allowed EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget -EXPORT_SYMBOL vmlinux 0xc1e1c891 request_partial_firmware_into_buf -EXPORT_SYMBOL vmlinux 0xc1ea7bc4 blk_mq_alloc_request -EXPORT_SYMBOL vmlinux 0xc1edec62 radix__local_flush_tlb_mm -EXPORT_SYMBOL vmlinux 0xc1f036c2 of_find_compatible_node -EXPORT_SYMBOL vmlinux 0xc1fac06b fget_raw -EXPORT_SYMBOL vmlinux 0xc227ecd5 generic_key_instantiate +EXPORT_SYMBOL vmlinux 0xc1da2b91 xsk_set_rx_need_wakeup +EXPORT_SYMBOL vmlinux 0xc1e3748d make_kuid +EXPORT_SYMBOL vmlinux 0xc24193ff key_unlink EXPORT_SYMBOL vmlinux 0xc2424641 agp3_generic_cleanup +EXPORT_SYMBOL vmlinux 0xc246a868 pcie_ptm_enabled EXPORT_SYMBOL vmlinux 0xc2490212 _raw_read_lock_bh -EXPORT_SYMBOL vmlinux 0xc258b09a scsi_ioctl -EXPORT_SYMBOL vmlinux 0xc2648a8d rt6_lookup +EXPORT_SYMBOL vmlinux 0xc25674ca md_check_no_bitmap +EXPORT_SYMBOL vmlinux 0xc2599eb8 scsi_target_quiesce EXPORT_SYMBOL vmlinux 0xc267960e utf8_validate -EXPORT_SYMBOL vmlinux 0xc27ba43d zpool_unregister_driver -EXPORT_SYMBOL vmlinux 0xc283d844 dm_register_target +EXPORT_SYMBOL vmlinux 0xc26da265 do_SAK +EXPORT_SYMBOL vmlinux 0xc280cf3d skb_eth_pop +EXPORT_SYMBOL vmlinux 0xc285f6bf iget_locked +EXPORT_SYMBOL vmlinux 0xc290fe75 of_iomap EXPORT_SYMBOL vmlinux 0xc29bf967 strspn -EXPORT_SYMBOL vmlinux 0xc29d1e1c vme_slave_request -EXPORT_SYMBOL vmlinux 0xc2c65d68 sock_no_sendmsg EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices -EXPORT_SYMBOL vmlinux 0xc2eb47b1 netif_set_real_num_queues -EXPORT_SYMBOL vmlinux 0xc2f8235e tcf_em_tree_validate +EXPORT_SYMBOL vmlinux 0xc2e73cef inet_proto_csum_replace_by_diff +EXPORT_SYMBOL vmlinux 0xc2ee91d4 ptp_find_pin +EXPORT_SYMBOL vmlinux 0xc2f0460b udp6_seq_ops +EXPORT_SYMBOL vmlinux 0xc2ff20b9 of_cpu_node_to_id +EXPORT_SYMBOL vmlinux 0xc30546b4 phy_loopback EXPORT_SYMBOL vmlinux 0xc3055d20 usleep_range_state +EXPORT_SYMBOL vmlinux 0xc3068dd6 sk_stream_wait_connect +EXPORT_SYMBOL vmlinux 0xc30a923f __skb_checksum +EXPORT_SYMBOL vmlinux 0xc31038be pci_get_device EXPORT_SYMBOL vmlinux 0xc310b981 strnstr -EXPORT_SYMBOL vmlinux 0xc311b6ce ppp_dev_name -EXPORT_SYMBOL vmlinux 0xc31aeadc d_set_fallthru +EXPORT_SYMBOL vmlinux 0xc31b5de3 blk_queue_flag_set EXPORT_SYMBOL vmlinux 0xc31db0ce is_vmalloc_addr -EXPORT_SYMBOL vmlinux 0xc31f1410 rproc_remove_subdev EXPORT_SYMBOL vmlinux 0xc32c71af register_inetaddr_validator_notifier -EXPORT_SYMBOL vmlinux 0xc330bc0a register_framebuffer -EXPORT_SYMBOL vmlinux 0xc361b732 blk_queue_bounce_limit +EXPORT_SYMBOL vmlinux 0xc331adb9 __block_write_full_page +EXPORT_SYMBOL vmlinux 0xc341a53a nexthop_res_grp_activity_update +EXPORT_SYMBOL vmlinux 0xc3483570 inet_get_local_port_range +EXPORT_SYMBOL vmlinux 0xc34e18b4 of_find_i2c_adapter_by_node +EXPORT_SYMBOL vmlinux 0xc35a0b48 md_bitmap_free +EXPORT_SYMBOL vmlinux 0xc372d4a5 skb_ensure_writable +EXPORT_SYMBOL vmlinux 0xc3767585 skb_copy_expand EXPORT_SYMBOL vmlinux 0xc37f9c6e cpufreq_update_policy -EXPORT_SYMBOL vmlinux 0xc3813eb0 clocksource_unregister -EXPORT_SYMBOL vmlinux 0xc3876200 default_llseek EXPORT_SYMBOL vmlinux 0xc38c83b8 mod_timer +EXPORT_SYMBOL vmlinux 0xc38e1879 tcf_exts_terse_dump +EXPORT_SYMBOL vmlinux 0xc3a8fb11 mount_bdev +EXPORT_SYMBOL vmlinux 0xc3b709fb mr_table_dump EXPORT_SYMBOL vmlinux 0xc3c37185 cpu_rmap_update -EXPORT_SYMBOL vmlinux 0xc3c8eaa3 jbd2_journal_force_commit -EXPORT_SYMBOL vmlinux 0xc3cad99e sock_rfree -EXPORT_SYMBOL vmlinux 0xc3df9711 pci_msix_vec_count -EXPORT_SYMBOL vmlinux 0xc3e74b02 generic_remap_file_range_prep -EXPORT_SYMBOL vmlinux 0xc3f07182 simple_transaction_get -EXPORT_SYMBOL vmlinux 0xc4189112 get_task_cred +EXPORT_SYMBOL vmlinux 0xc3d831d7 fscrypt_free_inode +EXPORT_SYMBOL vmlinux 0xc3d887ba __check_sticky +EXPORT_SYMBOL vmlinux 0xc3d933af max8925_bulk_read +EXPORT_SYMBOL vmlinux 0xc3e55069 fsl_lbc_ctrl_dev +EXPORT_SYMBOL vmlinux 0xc3ea88e8 __neigh_for_each_release +EXPORT_SYMBOL vmlinux 0xc414db66 udp6_set_csum EXPORT_SYMBOL vmlinux 0xc41bc980 iwe_stream_add_value EXPORT_SYMBOL vmlinux 0xc4212ab9 qdisc_class_hash_insert -EXPORT_SYMBOL vmlinux 0xc430f4c6 tcp_setsockopt -EXPORT_SYMBOL vmlinux 0xc43ba9f4 kernel_bind +EXPORT_SYMBOL vmlinux 0xc447f5bc __sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0xc44fa472 mipi_dsi_dcs_soft_reset +EXPORT_SYMBOL vmlinux 0xc4577340 dquot_get_state +EXPORT_SYMBOL vmlinux 0xc465b942 netlbl_calipso_ops_register EXPORT_SYMBOL vmlinux 0xc4708199 cpm_muram_addr -EXPORT_SYMBOL vmlinux 0xc4723c52 serial8250_do_pm +EXPORT_SYMBOL vmlinux 0xc476d7cf crypto_sha512_finup EXPORT_SYMBOL vmlinux 0xc4777aa9 __ctzsi2 -EXPORT_SYMBOL vmlinux 0xc47a7eae inet_rtx_syn_ack -EXPORT_SYMBOL vmlinux 0xc47ca389 netif_schedule_queue -EXPORT_SYMBOL vmlinux 0xc4a510c2 elevator_alloc +EXPORT_SYMBOL vmlinux 0xc4799322 pcim_enable_device +EXPORT_SYMBOL vmlinux 0xc485b820 register_framebuffer +EXPORT_SYMBOL vmlinux 0xc49673e2 __phy_write_mmd +EXPORT_SYMBOL vmlinux 0xc49d96c5 flow_rule_match_enc_keyid EXPORT_SYMBOL vmlinux 0xc4ae915e arch_touch_nmi_watchdog -EXPORT_SYMBOL vmlinux 0xc4c2c62a km_report -EXPORT_SYMBOL vmlinux 0xc4c2f8a0 mmc_put_card EXPORT_SYMBOL vmlinux 0xc4cdf48f _raw_read_unlock_bh -EXPORT_SYMBOL vmlinux 0xc4d71816 clean_bdev_aliases -EXPORT_SYMBOL vmlinux 0xc4f78c74 blk_rq_init -EXPORT_SYMBOL vmlinux 0xc4ff86f4 __find_get_block +EXPORT_SYMBOL vmlinux 0xc4db1718 inet6_register_protosw +EXPORT_SYMBOL vmlinux 0xc4edff96 icmp_ndo_send +EXPORT_SYMBOL vmlinux 0xc4f40a85 vlan_vid_del +EXPORT_SYMBOL vmlinux 0xc50edd9b vme_irq_generate EXPORT_SYMBOL vmlinux 0xc51a3640 down_write_killable -EXPORT_SYMBOL vmlinux 0xc527c587 kernel_sendmsg -EXPORT_SYMBOL vmlinux 0xc5306a35 inet6_unregister_protosw -EXPORT_SYMBOL vmlinux 0xc53f9522 kill_anon_super -EXPORT_SYMBOL vmlinux 0xc54a0216 ps2_command -EXPORT_SYMBOL vmlinux 0xc5510c0c simple_recursive_removal -EXPORT_SYMBOL vmlinux 0xc55631a2 param_ops_short -EXPORT_SYMBOL vmlinux 0xc5577864 genphy_read_status -EXPORT_SYMBOL vmlinux 0xc5586fae nf_ip6_checksum -EXPORT_SYMBOL vmlinux 0xc55d41c9 fwnode_mdiobus_phy_device_register -EXPORT_SYMBOL vmlinux 0xc561d487 pskb_extract -EXPORT_SYMBOL vmlinux 0xc56a1ab2 mmc_free_host +EXPORT_SYMBOL vmlinux 0xc55ba7ed fifo_set_limit EXPORT_SYMBOL vmlinux 0xc58d5a90 kstrtoll_from_user -EXPORT_SYMBOL vmlinux 0xc5916143 __dev_kfree_skb_irq -EXPORT_SYMBOL vmlinux 0xc5946a54 elv_rb_del EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete -EXPORT_SYMBOL vmlinux 0xc59ee685 current_time +EXPORT_SYMBOL vmlinux 0xc59cab83 pnv_cxl_alloc_hwirq_ranges EXPORT_SYMBOL vmlinux 0xc5a3367a __tracepoint_dma_fence_emit EXPORT_SYMBOL vmlinux 0xc5a396fd udplite_table +EXPORT_SYMBOL vmlinux 0xc5a746b5 of_find_node_by_phandle +EXPORT_SYMBOL vmlinux 0xc5a94bd0 rtnl_kfree_skbs EXPORT_SYMBOL vmlinux 0xc5b6f236 queue_work_on -EXPORT_SYMBOL vmlinux 0xc5c0fb62 skb_vlan_untag +EXPORT_SYMBOL vmlinux 0xc5bbae3b mipi_dsi_generic_write +EXPORT_SYMBOL vmlinux 0xc5bf27c7 send_sig_mceerr +EXPORT_SYMBOL vmlinux 0xc5c2a09d seg6_hmac_net_exit EXPORT_SYMBOL vmlinux 0xc5d9c46c agp_try_unsupported_boot +EXPORT_SYMBOL vmlinux 0xc5dba3ad get_agp_version EXPORT_SYMBOL vmlinux 0xc5e74216 release_resource EXPORT_SYMBOL vmlinux 0xc5f7e801 sg_last -EXPORT_SYMBOL vmlinux 0xc60880c0 __fs_parse -EXPORT_SYMBOL vmlinux 0xc60b5467 flow_rule_match_ports +EXPORT_SYMBOL vmlinux 0xc603a7ee xfrm_state_insert EXPORT_SYMBOL vmlinux 0xc60d0620 __num_online_cpus +EXPORT_SYMBOL vmlinux 0xc61a9ab6 __netif_napi_del EXPORT_SYMBOL vmlinux 0xc61b8087 idr_destroy EXPORT_SYMBOL vmlinux 0xc61ca65e iowrite64be_hi_lo -EXPORT_SYMBOL vmlinux 0xc623f453 tcf_unregister_action -EXPORT_SYMBOL vmlinux 0xc62db6c6 tty_port_put +EXPORT_SYMBOL vmlinux 0xc6262c27 lock_sock_nested +EXPORT_SYMBOL vmlinux 0xc62dad4a scsi_dma_unmap EXPORT_SYMBOL vmlinux 0xc631580a console_unlock EXPORT_SYMBOL vmlinux 0xc633d82d phy_unregister_fixup EXPORT_SYMBOL vmlinux 0xc6369552 sync_file_get_fence -EXPORT_SYMBOL vmlinux 0xc64eba1a devfreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0xc645447c blk_queue_logical_block_size +EXPORT_SYMBOL vmlinux 0xc6532171 pci_bus_set_ops +EXPORT_SYMBOL vmlinux 0xc65a8ab9 i2c_put_adapter EXPORT_SYMBOL vmlinux 0xc65af6e2 posix_acl_from_xattr +EXPORT_SYMBOL vmlinux 0xc65e2561 pci_get_slot EXPORT_SYMBOL vmlinux 0xc65e4e97 secure_dccp_sequence_number EXPORT_SYMBOL vmlinux 0xc664b528 mempool_create_node EXPORT_SYMBOL vmlinux 0xc666a132 crc_t10dif EXPORT_SYMBOL vmlinux 0xc66a8304 cpu_rmap_add -EXPORT_SYMBOL vmlinux 0xc671713f set_page_dirty_lock -EXPORT_SYMBOL vmlinux 0xc6764d9a param_ops_long -EXPORT_SYMBOL vmlinux 0xc682a00c dev_pick_tx_cpu_id -EXPORT_SYMBOL vmlinux 0xc68a9c9f mipi_dsi_dcs_set_column_address -EXPORT_SYMBOL vmlinux 0xc68f7fcb __inc_node_page_state -EXPORT_SYMBOL vmlinux 0xc69c6ff7 qdisc_offload_dump_helper -EXPORT_SYMBOL vmlinux 0xc6a7574e tcp_poll -EXPORT_SYMBOL vmlinux 0xc6c434fe dcb_ieee_getapp_mask +EXPORT_SYMBOL vmlinux 0xc69717b9 pci_iomap_range +EXPORT_SYMBOL vmlinux 0xc6bf4e58 jbd2_fc_end_commit +EXPORT_SYMBOL vmlinux 0xc6c3ce2c netif_tx_stop_all_queues EXPORT_SYMBOL vmlinux 0xc6cb465a __kfifo_max_r EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable -EXPORT_SYMBOL vmlinux 0xc6cc1f0a fb_show_logo -EXPORT_SYMBOL vmlinux 0xc6d00241 tcf_em_tree_dump +EXPORT_SYMBOL vmlinux 0xc6cd1536 jbd2_journal_flush EXPORT_SYMBOL vmlinux 0xc6d09aa9 release_firmware EXPORT_SYMBOL vmlinux 0xc6d6af46 ppc_pci_io -EXPORT_SYMBOL vmlinux 0xc6d87aeb neigh_seq_start -EXPORT_SYMBOL vmlinux 0xc6e1eda8 dma_async_device_unregister +EXPORT_SYMBOL vmlinux 0xc6e0d755 vfs_rmdir EXPORT_SYMBOL vmlinux 0xc6f3b3fc refcount_dec_if_one EXPORT_SYMBOL vmlinux 0xc6f46339 init_timer_key -EXPORT_SYMBOL vmlinux 0xc70f4fbf __cleancache_init_shared_fs +EXPORT_SYMBOL vmlinux 0xc6fb6ba3 request_firmware +EXPORT_SYMBOL vmlinux 0xc71f2cca tty_register_ldisc EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port -EXPORT_SYMBOL vmlinux 0xc72aadc8 tcp_close -EXPORT_SYMBOL vmlinux 0xc7513137 dev_queue_xmit_accel -EXPORT_SYMBOL vmlinux 0xc75e0f67 udp_set_csum -EXPORT_SYMBOL vmlinux 0xc75e10b0 sock_set_reuseport -EXPORT_SYMBOL vmlinux 0xc7688faa genphy_suspend +EXPORT_SYMBOL vmlinux 0xc725bde3 validate_sp +EXPORT_SYMBOL vmlinux 0xc72f07ff seg6_push_hmac +EXPORT_SYMBOL vmlinux 0xc76ed1de __dev_get_by_flags EXPORT_SYMBOL vmlinux 0xc781bd9f rfkill_resume_polling EXPORT_SYMBOL vmlinux 0xc7856a3d inet6addr_notifier_call_chain -EXPORT_SYMBOL vmlinux 0xc79d51d8 pmem_should_map_pages +EXPORT_SYMBOL vmlinux 0xc786e291 block_write_begin +EXPORT_SYMBOL vmlinux 0xc7880166 nd_integrity_init +EXPORT_SYMBOL vmlinux 0xc78d5e61 dma_resv_copy_fences +EXPORT_SYMBOL vmlinux 0xc791497e rproc_put +EXPORT_SYMBOL vmlinux 0xc7a34963 fwnode_mdiobus_phy_device_register EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock -EXPORT_SYMBOL vmlinux 0xc7ad5f22 phy_reset_after_clk_enable -EXPORT_SYMBOL vmlinux 0xc7b579cd dev_pm_opp_register_notifier -EXPORT_SYMBOL vmlinux 0xc7bfd1fc textsearch_destroy EXPORT_SYMBOL vmlinux 0xc7c1107a LZ4_decompress_safe +EXPORT_SYMBOL vmlinux 0xc7cab759 update_region EXPORT_SYMBOL vmlinux 0xc7d094b5 dm_read_arg_group EXPORT_SYMBOL vmlinux 0xc7f484b1 ida_destroy -EXPORT_SYMBOL vmlinux 0xc8027e9e flow_block_cb_priv -EXPORT_SYMBOL vmlinux 0xc80978d1 bh_submit_read -EXPORT_SYMBOL vmlinux 0xc80a25f9 cfb_copyarea -EXPORT_SYMBOL vmlinux 0xc827ca63 tcf_idr_release -EXPORT_SYMBOL vmlinux 0xc83be4f7 touch_buffer +EXPORT_SYMBOL vmlinux 0xc81c5def pci_setup_cardbus +EXPORT_SYMBOL vmlinux 0xc82b3cf5 pci_disable_device +EXPORT_SYMBOL vmlinux 0xc83eb0af jbd2_journal_force_commit +EXPORT_SYMBOL vmlinux 0xc842dd10 nd_region_acquire_lane EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu -EXPORT_SYMBOL vmlinux 0xc85545bc ucc_of_parse_tdm -EXPORT_SYMBOL vmlinux 0xc8580c7e pm_vt_switch_required -EXPORT_SYMBOL vmlinux 0xc8718d9b tcp_filter +EXPORT_SYMBOL vmlinux 0xc8666b85 ppp_unregister_compressor EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes EXPORT_SYMBOL vmlinux 0xc8827b75 sysctl_vals -EXPORT_SYMBOL vmlinux 0xc88c4bec find_inode_by_ino_rcu +EXPORT_SYMBOL vmlinux 0xc884b385 d_instantiate_new EXPORT_SYMBOL vmlinux 0xc890c008 zlib_deflateEnd -EXPORT_SYMBOL vmlinux 0xc89efb50 __scsi_add_device +EXPORT_SYMBOL vmlinux 0xc897eb29 xfrm_policy_bysel_ctx +EXPORT_SYMBOL vmlinux 0xc8a370d8 pci_domain_nr EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread -EXPORT_SYMBOL vmlinux 0xc8b19268 mark_info_dirty -EXPORT_SYMBOL vmlinux 0xc8b8c54d __sock_queue_rcv_skb -EXPORT_SYMBOL vmlinux 0xc8bb012a blk_rq_map_kern -EXPORT_SYMBOL vmlinux 0xc8d8506e inode_permission +EXPORT_SYMBOL vmlinux 0xc8b214ec do_splice_direct +EXPORT_SYMBOL vmlinux 0xc8cbe9be mipi_dsi_attach +EXPORT_SYMBOL vmlinux 0xc8cf85fc tcp_make_synack EXPORT_SYMBOL vmlinux 0xc8dcc62a krealloc -EXPORT_SYMBOL vmlinux 0xc8e665b4 unregister_quota_format +EXPORT_SYMBOL vmlinux 0xc8ddc105 of_find_backlight_by_node +EXPORT_SYMBOL vmlinux 0xc8f4b65e registered_fb EXPORT_SYMBOL vmlinux 0xc8f5a95a wait_for_completion_interruptible_timeout -EXPORT_SYMBOL vmlinux 0xc8f62fb0 dev_change_flags +EXPORT_SYMBOL vmlinux 0xc8fbb43d pci_msix_vec_count +EXPORT_SYMBOL vmlinux 0xc913e9f5 xfrm6_rcv_encap EXPORT_SYMBOL vmlinux 0xc916dd46 __SCK__tp_func_kmalloc -EXPORT_SYMBOL vmlinux 0xc917e097 free_task -EXPORT_SYMBOL vmlinux 0xc9234ef2 max8925_reg_read -EXPORT_SYMBOL vmlinux 0xc936c5fd __bforget -EXPORT_SYMBOL vmlinux 0xc93f8f82 set_capacity -EXPORT_SYMBOL vmlinux 0xc93fdf04 devm_ioport_unmap -EXPORT_SYMBOL vmlinux 0xc947144f of_find_all_nodes -EXPORT_SYMBOL vmlinux 0xc94f9b51 tcp_disconnect +EXPORT_SYMBOL vmlinux 0xc91fb7ef submit_bio_wait +EXPORT_SYMBOL vmlinux 0xc92ade81 security_lock_kernel_down +EXPORT_SYMBOL vmlinux 0xc9371b2f mmc_gpio_set_cd_isr +EXPORT_SYMBOL vmlinux 0xc94bb18c of_clk_get_by_name +EXPORT_SYMBOL vmlinux 0xc94c77e6 console_stop EXPORT_SYMBOL vmlinux 0xc955cb2c down_trylock -EXPORT_SYMBOL vmlinux 0xc961a377 bdi_set_max_ratio +EXPORT_SYMBOL vmlinux 0xc955ce1d tcp_conn_request EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters -EXPORT_SYMBOL vmlinux 0xc96bcf27 kthread_stop -EXPORT_SYMBOL vmlinux 0xc96e022b phy_ethtool_get_wol +EXPORT_SYMBOL vmlinux 0xc96fb3ba ip_do_fragment EXPORT_SYMBOL vmlinux 0xc972449f mempool_alloc_slab -EXPORT_SYMBOL vmlinux 0xc9743fb6 pci_wait_for_pending_transaction +EXPORT_SYMBOL vmlinux 0xc9787c13 igrab EXPORT_SYMBOL vmlinux 0xc97d7443 wait_for_completion_timeout +EXPORT_SYMBOL vmlinux 0xc97fd06b sk_error_report +EXPORT_SYMBOL vmlinux 0xc9814b82 xfrm_alloc_spi EXPORT_SYMBOL vmlinux 0xc9822234 clk_register_clkdev EXPORT_SYMBOL vmlinux 0xc9831ad7 flow_keys_dissector -EXPORT_SYMBOL vmlinux 0xc98618cb devm_iounmap +EXPORT_SYMBOL vmlinux 0xc996163f mmc_sw_reset EXPORT_SYMBOL vmlinux 0xc99e2a55 twl_rev -EXPORT_SYMBOL vmlinux 0xc9acf71e to_nd_btt -EXPORT_SYMBOL vmlinux 0xc9b8b395 __cleancache_put_page -EXPORT_SYMBOL vmlinux 0xc9bf8396 tcf_em_register +EXPORT_SYMBOL vmlinux 0xc9a5811c tcp_get_cookie_sock EXPORT_SYMBOL vmlinux 0xc9dc3d79 __pte_frag_size_shift EXPORT_SYMBOL vmlinux 0xc9df055a xfrm_policy_walk_init -EXPORT_SYMBOL vmlinux 0xc9df6d3e alloc_fddidev -EXPORT_SYMBOL vmlinux 0xc9f999c1 generic_update_time +EXPORT_SYMBOL vmlinux 0xc9f3af9e submit_bio_noacct +EXPORT_SYMBOL vmlinux 0xc9f4cadd of_parse_phandle_with_args_map +EXPORT_SYMBOL vmlinux 0xca0db48e jbd2_journal_clear_err EXPORT_SYMBOL vmlinux 0xca15413f ZSTD_resetDStream EXPORT_SYMBOL vmlinux 0xca21ebd3 bitmap_free -EXPORT_SYMBOL vmlinux 0xca2bf649 is_nd_btt +EXPORT_SYMBOL vmlinux 0xca2c4752 init_special_inode EXPORT_SYMBOL vmlinux 0xca3b28c6 store_vr_state EXPORT_SYMBOL vmlinux 0xca431c05 wake_bit_function -EXPORT_SYMBOL vmlinux 0xca48f5fb eth_type_trans -EXPORT_SYMBOL vmlinux 0xca50a315 pci_prepare_to_sleep +EXPORT_SYMBOL vmlinux 0xca529f6e of_graph_parse_endpoint EXPORT_SYMBOL vmlinux 0xca5f3154 radix_tree_iter_resume -EXPORT_SYMBOL vmlinux 0xca883fe1 ptp_clock_register -EXPORT_SYMBOL vmlinux 0xca92f75c tcf_exts_dump +EXPORT_SYMBOL vmlinux 0xca6e3dd3 tcp_seq_stop +EXPORT_SYMBOL vmlinux 0xca6fdf76 t10_pi_type1_crc +EXPORT_SYMBOL vmlinux 0xca88cf22 tcf_action_exec +EXPORT_SYMBOL vmlinux 0xca8cbc59 devm_request_threaded_irq EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next -EXPORT_SYMBOL vmlinux 0xcacf119d agp_bind_memory -EXPORT_SYMBOL vmlinux 0xcae19f4c done_path_create -EXPORT_SYMBOL vmlinux 0xcaec95be genlmsg_multicast_allns -EXPORT_SYMBOL vmlinux 0xcaef112f phy_ethtool_get_eee +EXPORT_SYMBOL vmlinux 0xcaa41329 __ip_dev_find +EXPORT_SYMBOL vmlinux 0xcabcbd02 ip_mc_join_group +EXPORT_SYMBOL vmlinux 0xcabd463f mpage_writepages +EXPORT_SYMBOL vmlinux 0xcad74add dump_align +EXPORT_SYMBOL vmlinux 0xcae1ba55 ip_getsockopt +EXPORT_SYMBOL vmlinux 0xcae74c31 vme_master_mmap +EXPORT_SYMBOL vmlinux 0xcaec6d05 security_socket_socketpair EXPORT_SYMBOL vmlinux 0xcaf2c603 scsi_sd_pm_domain EXPORT_SYMBOL vmlinux 0xcb0288ea ledtrig_cpu -EXPORT_SYMBOL vmlinux 0xcb03c54f ppp_channel_index -EXPORT_SYMBOL vmlinux 0xcb128c11 __mmap_lock_do_trace_released -EXPORT_SYMBOL vmlinux 0xcb15a038 inet6_getname -EXPORT_SYMBOL vmlinux 0xcb19e97b seq_dentry -EXPORT_SYMBOL vmlinux 0xcb1b7637 sock_release -EXPORT_SYMBOL vmlinux 0xcb25c3b5 serio_reconnect -EXPORT_SYMBOL vmlinux 0xcb275fa9 __register_binfmt -EXPORT_SYMBOL vmlinux 0xcb298a8b tcf_action_update_stats -EXPORT_SYMBOL vmlinux 0xcb2d5638 key_move +EXPORT_SYMBOL vmlinux 0xcb08c7b7 xfrm_state_check_expire +EXPORT_SYMBOL vmlinux 0xcb2aa17e kmem_cache_free_bulk EXPORT_SYMBOL vmlinux 0xcb2ea0b5 finish_wait -EXPORT_SYMBOL vmlinux 0xcb2f6763 d_instantiate -EXPORT_SYMBOL vmlinux 0xcb319e69 nf_log_bind_pf -EXPORT_SYMBOL vmlinux 0xcb33e6e7 max8925_set_bits +EXPORT_SYMBOL vmlinux 0xcb2fea98 dma_map_resource EXPORT_SYMBOL vmlinux 0xcb3ae215 call_blocking_lsm_notifier +EXPORT_SYMBOL vmlinux 0xcb3b602e phy_error EXPORT_SYMBOL vmlinux 0xcb3c8a7d ___ratelimit -EXPORT_SYMBOL vmlinux 0xcb3eddd8 dquot_writeback_dquots -EXPORT_SYMBOL vmlinux 0xcb4cd31a ip6_xmit -EXPORT_SYMBOL vmlinux 0xcb50b66a unlock_buffer -EXPORT_SYMBOL vmlinux 0xcb8fab0d filemap_page_mkwrite -EXPORT_SYMBOL vmlinux 0xcb93e89d icmp6_send -EXPORT_SYMBOL vmlinux 0xcba90d20 vlan_filter_push_vids -EXPORT_SYMBOL vmlinux 0xcbbb73bd __task_pid_nr_ns -EXPORT_SYMBOL vmlinux 0xcbbfc6f5 pci_bus_read_config_word +EXPORT_SYMBOL vmlinux 0xcb453e02 phy_device_remove +EXPORT_SYMBOL vmlinux 0xcb5985b4 device_get_mac_address +EXPORT_SYMBOL vmlinux 0xcb5ad020 phy_advertise_supported +EXPORT_SYMBOL vmlinux 0xcb5d24e7 inet_confirm_addr +EXPORT_SYMBOL vmlinux 0xcb619f83 ip_cmsg_recv_offset +EXPORT_SYMBOL vmlinux 0xcb6af292 devm_nvmem_unregister +EXPORT_SYMBOL vmlinux 0xcb6ca289 __netlink_ns_capable +EXPORT_SYMBOL vmlinux 0xcb6cdf9a rproc_get_by_phandle +EXPORT_SYMBOL vmlinux 0xcb7c8631 neigh_lookup_nodev +EXPORT_SYMBOL vmlinux 0xcb8e4a94 d_splice_alias +EXPORT_SYMBOL vmlinux 0xcb90b5dd dev_uc_add +EXPORT_SYMBOL vmlinux 0xcb96cfd7 __cleancache_invalidate_page +EXPORT_SYMBOL vmlinux 0xcb9b00ca vio_get_attribute +EXPORT_SYMBOL vmlinux 0xcb9b54c0 netpoll_poll_enable +EXPORT_SYMBOL vmlinux 0xcbbc7fbf configfs_undepend_item +EXPORT_SYMBOL vmlinux 0xcbc03f03 security_sock_graft EXPORT_SYMBOL vmlinux 0xcbc3b94e eeh_check_failure EXPORT_SYMBOL vmlinux 0xcbc88a23 ZSTD_isFrame EXPORT_SYMBOL vmlinux 0xcbd4898c fortify_panic EXPORT_SYMBOL vmlinux 0xcbdbde47 __debugger_iabr_match +EXPORT_SYMBOL vmlinux 0xcbf6a5bc xfrm_state_lookup_byaddr EXPORT_SYMBOL vmlinux 0xcbfb33e4 init_opal_dev -EXPORT_SYMBOL vmlinux 0xcbfd3da6 napi_gro_receive +EXPORT_SYMBOL vmlinux 0xcc127f70 netdev_adjacent_change_prepare +EXPORT_SYMBOL vmlinux 0xcc172c5a mdiobus_setup_mdiodev_from_board_info +EXPORT_SYMBOL vmlinux 0xcc1babbf pcim_iomap_regions_request_all EXPORT_SYMBOL vmlinux 0xcc23002a hdmi_infoframe_pack_only EXPORT_SYMBOL vmlinux 0xcc248d26 serial8250_suspend_port +EXPORT_SYMBOL vmlinux 0xcc312e7c neigh_lookup EXPORT_SYMBOL vmlinux 0xcc328a5c reservation_ww_class -EXPORT_SYMBOL vmlinux 0xcc3f6b90 i8042_install_filter EXPORT_SYMBOL vmlinux 0xcc445ceb __sg_page_iter_dma_next -EXPORT_SYMBOL vmlinux 0xcc4ac74c inetdev_by_index +EXPORT_SYMBOL vmlinux 0xcc4de385 stream_open EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible EXPORT_SYMBOL vmlinux 0xcc5d22d9 can_do_mlock -EXPORT_SYMBOL vmlinux 0xcc603fbf netdev_master_upper_dev_link EXPORT_SYMBOL vmlinux 0xcc626c2c completion_done -EXPORT_SYMBOL vmlinux 0xcc679347 scsi_host_busy -EXPORT_SYMBOL vmlinux 0xcc7c1fe1 __devm_mdiobus_register +EXPORT_SYMBOL vmlinux 0xcc70f4e7 mount_single +EXPORT_SYMBOL vmlinux 0xcc7b2b46 sk_stream_wait_close +EXPORT_SYMBOL vmlinux 0xcc7f5b49 unregister_netdev +EXPORT_SYMBOL vmlinux 0xcc8afcdf simple_open +EXPORT_SYMBOL vmlinux 0xcc923b9b pcim_set_mwi EXPORT_SYMBOL vmlinux 0xccb6eac8 dma_fence_free EXPORT_SYMBOL vmlinux 0xccc66e43 security_binder_set_context_mgr +EXPORT_SYMBOL vmlinux 0xccc7795d mmc_put_card +EXPORT_SYMBOL vmlinux 0xcccb5926 dquot_get_next_dqblk EXPORT_SYMBOL vmlinux 0xccd4c999 __sg_page_iter_start -EXPORT_SYMBOL vmlinux 0xcce4f598 vme_slot_num +EXPORT_SYMBOL vmlinux 0xcce10ce3 __skb_flow_dissect +EXPORT_SYMBOL vmlinux 0xcce42ea4 sk_stream_error EXPORT_SYMBOL vmlinux 0xccef37e4 ZSTD_DStreamOutSize -EXPORT_SYMBOL vmlinux 0xccf2641c generic_cont_expand_simple EXPORT_SYMBOL vmlinux 0xccfb9e07 dst_default_metrics EXPORT_SYMBOL vmlinux 0xccfd2ebc scsi_dev_info_list_del_keyed -EXPORT_SYMBOL vmlinux 0xcd0222d2 __blkdev_issue_discard -EXPORT_SYMBOL vmlinux 0xcd1773b7 kernel_getsockname +EXPORT_SYMBOL vmlinux 0xcd00b955 cdrom_mode_select +EXPORT_SYMBOL vmlinux 0xcd0c501a dma_sync_wait +EXPORT_SYMBOL vmlinux 0xcd0ef7e6 disk_end_io_acct EXPORT_SYMBOL vmlinux 0xcd256667 tcp_md5_needed EXPORT_SYMBOL vmlinux 0xcd279169 nla_find -EXPORT_SYMBOL vmlinux 0xcd2bc662 seq_put_decimal_ll -EXPORT_SYMBOL vmlinux 0xcd2c9a72 xsk_get_pool_from_qid -EXPORT_SYMBOL vmlinux 0xcd411f03 __block_write_begin -EXPORT_SYMBOL vmlinux 0xcd6668b3 pci_ep_cfs_remove_epc_group -EXPORT_SYMBOL vmlinux 0xcd684c96 reuseport_migrate_sock +EXPORT_SYMBOL vmlinux 0xcd5fcc43 pci_bus_type +EXPORT_SYMBOL vmlinux 0xcd6b1cc6 of_get_ibm_chip_id +EXPORT_SYMBOL vmlinux 0xcd7a3420 netdev_lower_dev_get_private EXPORT_SYMBOL vmlinux 0xcd86c87f __cond_resched_lock +EXPORT_SYMBOL vmlinux 0xcd990198 xsk_uses_need_wakeup +EXPORT_SYMBOL vmlinux 0xcd9bc74e seq_putc EXPORT_SYMBOL vmlinux 0xcdc0349c add_wait_queue_exclusive EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel -EXPORT_SYMBOL vmlinux 0xcdc8e815 mr_dump -EXPORT_SYMBOL vmlinux 0xcddeb76c max8998_read_reg +EXPORT_SYMBOL vmlinux 0xcdd72648 file_remove_privs EXPORT_SYMBOL vmlinux 0xcde77bcc free_opal_dev -EXPORT_SYMBOL vmlinux 0xcde7fa68 ip6tun_encaps EXPORT_SYMBOL vmlinux 0xcdee038f _raw_spin_trylock -EXPORT_SYMBOL vmlinux 0xcdf2b706 of_get_i2c_adapter_by_node -EXPORT_SYMBOL vmlinux 0xcdf35c60 _copy_to_iter -EXPORT_SYMBOL vmlinux 0xce08e610 get_ipc_ns_exported +EXPORT_SYMBOL vmlinux 0xcdf367ed key_put EXPORT_SYMBOL vmlinux 0xce18bbe1 fsl_lbc_addr -EXPORT_SYMBOL vmlinux 0xce27ce4f kfree_skb EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake -EXPORT_SYMBOL vmlinux 0xce31d190 netdev_lower_get_next -EXPORT_SYMBOL vmlinux 0xce40b47f flow_rule_match_icmp +EXPORT_SYMBOL vmlinux 0xce3c75ed agp_generic_destroy_pages EXPORT_SYMBOL vmlinux 0xce4cdb8e fb_find_best_mode EXPORT_SYMBOL vmlinux 0xce4e47b6 __kfifo_skip_r -EXPORT_SYMBOL vmlinux 0xce56d8c0 of_n_addr_cells EXPORT_SYMBOL vmlinux 0xce5ac24f zlib_inflate_workspacesize -EXPORT_SYMBOL vmlinux 0xce5accf4 pci_scan_bridge -EXPORT_SYMBOL vmlinux 0xce644b0d iov_iter_fault_in_readable +EXPORT_SYMBOL vmlinux 0xce621c04 rdmacg_try_charge +EXPORT_SYMBOL vmlinux 0xce6d3fbe nd_btt_probe +EXPORT_SYMBOL vmlinux 0xce6d57e0 fput EXPORT_SYMBOL vmlinux 0xce731b34 ucc_slow_get_qe_cr_subblock -EXPORT_SYMBOL vmlinux 0xce785fda devm_extcon_register_notifier_all EXPORT_SYMBOL vmlinux 0xce807151 idr_get_next -EXPORT_SYMBOL vmlinux 0xce90f6be dquot_commit_info -EXPORT_SYMBOL vmlinux 0xce958583 fb_find_mode +EXPORT_SYMBOL vmlinux 0xce962bd0 setup_new_exec EXPORT_SYMBOL vmlinux 0xcea13239 proc_dobool EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul -EXPORT_SYMBOL vmlinux 0xceb421e6 from_kprojid_munged -EXPORT_SYMBOL vmlinux 0xcebf974c pcie_print_link_status -EXPORT_SYMBOL vmlinux 0xcec58b08 generic_setlease +EXPORT_SYMBOL vmlinux 0xceb8ff51 d_find_alias +EXPORT_SYMBOL vmlinux 0xcec17650 phys_mem_access_prot +EXPORT_SYMBOL vmlinux 0xcec2d885 default_qdisc_ops EXPORT_SYMBOL vmlinux 0xcec5feeb cur_cpu_spec EXPORT_SYMBOL vmlinux 0xcec766f1 __memset16 -EXPORT_SYMBOL vmlinux 0xced2457c kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0xced944d7 unregister_cdrom +EXPORT_SYMBOL vmlinux 0xcec86655 pm8606_osc_enable EXPORT_SYMBOL vmlinux 0xceec8abd __mb_cache_entry_free -EXPORT_SYMBOL vmlinux 0xcef396cf sk_stop_timer EXPORT_SYMBOL vmlinux 0xcefcd99a serial8250_unregister_port -EXPORT_SYMBOL vmlinux 0xcf19156b pcim_iomap_regions_request_all -EXPORT_SYMBOL vmlinux 0xcf347e95 tty_insert_flip_string_flags -EXPORT_SYMBOL vmlinux 0xcf4af66e cdrom_release -EXPORT_SYMBOL vmlinux 0xcf552ab1 kiocb_set_cancel_fn -EXPORT_SYMBOL vmlinux 0xcf5ccd5d buffer_check_dirty_writeback -EXPORT_SYMBOL vmlinux 0xcf5d480a twl6040_power -EXPORT_SYMBOL vmlinux 0xcf66de64 netlbl_calipso_ops_register -EXPORT_SYMBOL vmlinux 0xcf831db5 put_disk -EXPORT_SYMBOL vmlinux 0xcf8cb302 get_unmapped_area -EXPORT_SYMBOL vmlinux 0xcf926aac dev_disable_lro +EXPORT_SYMBOL vmlinux 0xcf083a37 tty_unregister_driver +EXPORT_SYMBOL vmlinux 0xcf2028b5 nexthop_set_hw_flags +EXPORT_SYMBOL vmlinux 0xcf4cdd1d dquot_quota_off +EXPORT_SYMBOL vmlinux 0xcf6c2d32 cdev_del +EXPORT_SYMBOL vmlinux 0xcf7ad996 twl6040_reg_read +EXPORT_SYMBOL vmlinux 0xcf7b2441 icmpv6_ndo_send EXPORT_SYMBOL vmlinux 0xcf9a189a down_timeout EXPORT_SYMBOL vmlinux 0xcf9b558d touchscreen_set_mt_pos -EXPORT_SYMBOL vmlinux 0xcfa78a1b __set_page_dirty_nobuffers -EXPORT_SYMBOL vmlinux 0xcfaecc3f pagecache_get_page EXPORT_SYMBOL vmlinux 0xcfd884a8 __hsiphash_unaligned -EXPORT_SYMBOL vmlinux 0xcfdd39dc __sk_backlog_rcv -EXPORT_SYMBOL vmlinux 0xcff8d634 of_device_is_available -EXPORT_SYMBOL vmlinux 0xd02bc965 inet_sk_set_state -EXPORT_SYMBOL vmlinux 0xd02f4955 __netdev_notify_peers -EXPORT_SYMBOL vmlinux 0xd030a3e0 __break_lease +EXPORT_SYMBOL vmlinux 0xcfdddf1d xfrm_user_policy +EXPORT_SYMBOL vmlinux 0xcfe82d19 netdev_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0xd012d085 add_watch_to_object +EXPORT_SYMBOL vmlinux 0xd017cca1 of_get_next_available_child +EXPORT_SYMBOL vmlinux 0xd029440e pci_clear_master +EXPORT_SYMBOL vmlinux 0xd048842e mmc_can_secure_erase_trim EXPORT_SYMBOL vmlinux 0xd04c1a64 sysctl_devconf_inherit_init_net -EXPORT_SYMBOL vmlinux 0xd052604f pci_request_selected_regions_exclusive EXPORT_SYMBOL vmlinux 0xd0654aba woken_wake_function -EXPORT_SYMBOL vmlinux 0xd065e596 set_bh_page EXPORT_SYMBOL vmlinux 0xd0760fc0 kfree_sensitive -EXPORT_SYMBOL vmlinux 0xd080bb84 sync_filesystem -EXPORT_SYMBOL vmlinux 0xd08e92e8 ipv6_chk_prefix -EXPORT_SYMBOL vmlinux 0xd0ab872b path_put +EXPORT_SYMBOL vmlinux 0xd0775d79 param_ops_int +EXPORT_SYMBOL vmlinux 0xd08b9e00 max8925_bulk_write +EXPORT_SYMBOL vmlinux 0xd08f3778 seq_dentry +EXPORT_SYMBOL vmlinux 0xd0930e2f devm_clk_get +EXPORT_SYMBOL vmlinux 0xd0957b65 mdiobus_unregister EXPORT_SYMBOL vmlinux 0xd0ae5f55 __printk_cpu_trylock -EXPORT_SYMBOL vmlinux 0xd0b72147 sdev_enable_disk_events -EXPORT_SYMBOL vmlinux 0xd0de9d3e agp_generic_insert_memory -EXPORT_SYMBOL vmlinux 0xd0e0dfe5 kern_unmount_array -EXPORT_SYMBOL vmlinux 0xd0e67072 rfkill_alloc -EXPORT_SYMBOL vmlinux 0xd0e875a6 jbd2_journal_finish_inode_data_buffers -EXPORT_SYMBOL vmlinux 0xd0f256f2 pci_bus_set_ops +EXPORT_SYMBOL vmlinux 0xd0bc7e5f netdev_upper_dev_link +EXPORT_SYMBOL vmlinux 0xd0c3de1b of_device_is_big_endian +EXPORT_SYMBOL vmlinux 0xd0e3fd74 take_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0xd0e46909 input_mt_report_finger_count EXPORT_SYMBOL vmlinux 0xd0fe8d51 sg_pcopy_from_buffer EXPORT_SYMBOL vmlinux 0xd0fef3b2 agp_free_key -EXPORT_SYMBOL vmlinux 0xd11477c4 jbd2_journal_dirty_metadata -EXPORT_SYMBOL vmlinux 0xd116cc77 jbd2_journal_invalidatepage +EXPORT_SYMBOL vmlinux 0xd101eb8e register_mii_tstamp_controller +EXPORT_SYMBOL vmlinux 0xd110c816 sk_mc_loop +EXPORT_SYMBOL vmlinux 0xd120ebd1 blk_sync_queue EXPORT_SYMBOL vmlinux 0xd1262886 rtas_data_buf -EXPORT_SYMBOL vmlinux 0xd131735d inet6_add_protocol -EXPORT_SYMBOL vmlinux 0xd13cfad2 dev_mc_unsync -EXPORT_SYMBOL vmlinux 0xd1405d30 pci_scan_root_bus_bridge -EXPORT_SYMBOL vmlinux 0xd144612c sock_enable_timestamps -EXPORT_SYMBOL vmlinux 0xd1503ddf sk_error_report +EXPORT_SYMBOL vmlinux 0xd1427da6 current_in_userns EXPORT_SYMBOL vmlinux 0xd15eada0 nla_reserve -EXPORT_SYMBOL vmlinux 0xd16184c3 of_create_pci_dev -EXPORT_SYMBOL vmlinux 0xd16cddf4 udp_sendmsg -EXPORT_SYMBOL vmlinux 0xd1707f0f netpoll_poll_enable +EXPORT_SYMBOL vmlinux 0xd1778217 pci_disable_msix +EXPORT_SYMBOL vmlinux 0xd179c18e bio_chain EXPORT_SYMBOL vmlinux 0xd1816f32 frontswap_writethrough -EXPORT_SYMBOL vmlinux 0xd18655ba ip_sock_set_pktinfo -EXPORT_SYMBOL vmlinux 0xd19067d1 gnet_stats_copy_basic -EXPORT_SYMBOL vmlinux 0xd1a946c7 inet_frags_init -EXPORT_SYMBOL vmlinux 0xd1b94b12 __module_get -EXPORT_SYMBOL vmlinux 0xd1c8c000 reuseport_detach_sock -EXPORT_SYMBOL vmlinux 0xd1d2fd4d xfrm_register_km +EXPORT_SYMBOL vmlinux 0xd1867e40 dm_table_run_md_queue_async +EXPORT_SYMBOL vmlinux 0xd186ba27 mini_qdisc_pair_block_init +EXPORT_SYMBOL vmlinux 0xd18c893d tcf_em_tree_destroy +EXPORT_SYMBOL vmlinux 0xd19f0e4e gro_find_complete_by_type +EXPORT_SYMBOL vmlinux 0xd1a7cff7 mdiobus_get_phy EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string -EXPORT_SYMBOL vmlinux 0xd1d92cdf block_page_mkwrite -EXPORT_SYMBOL vmlinux 0xd1e4fd0e flow_rule_match_cvlan -EXPORT_SYMBOL vmlinux 0xd1f18878 kernel_sendpage_locked -EXPORT_SYMBOL vmlinux 0xd20abdb6 scsi_host_alloc -EXPORT_SYMBOL vmlinux 0xd2170aed devfreq_register_opp_notifier -EXPORT_SYMBOL vmlinux 0xd21b6bf9 rawv6_mh_filter_unregister +EXPORT_SYMBOL vmlinux 0xd1de7f67 blk_mq_tagset_wait_completed_request +EXPORT_SYMBOL vmlinux 0xd1e7a789 devm_clk_hw_register_clkdev +EXPORT_SYMBOL vmlinux 0xd1f11e42 tcp_recvmsg +EXPORT_SYMBOL vmlinux 0xd1fbaaa1 security_path_mkdir +EXPORT_SYMBOL vmlinux 0xd2138881 ppp_channel_index EXPORT_SYMBOL vmlinux 0xd21c5139 iowrite64_lo_hi -EXPORT_SYMBOL vmlinux 0xd21dfd2a cdev_add -EXPORT_SYMBOL vmlinux 0xd2289ada has_capability -EXPORT_SYMBOL vmlinux 0xd22914c2 of_parse_phandle_with_args_map -EXPORT_SYMBOL vmlinux 0xd248807c vlan_vids_del_by_dev +EXPORT_SYMBOL vmlinux 0xd22018a6 netlink_set_err EXPORT_SYMBOL vmlinux 0xd2582f8f __SCK__tp_func_mmap_lock_acquire_returned +EXPORT_SYMBOL vmlinux 0xd25bb297 dump_page EXPORT_SYMBOL vmlinux 0xd25d4f74 console_blank_hook -EXPORT_SYMBOL vmlinux 0xd2715c23 udp_seq_start +EXPORT_SYMBOL vmlinux 0xd260b01e crypto_sha512_update +EXPORT_SYMBOL vmlinux 0xd2765689 inet_accept EXPORT_SYMBOL vmlinux 0xd2779731 blk_limits_io_min EXPORT_SYMBOL vmlinux 0xd27b25dd blk_check_plugged -EXPORT_SYMBOL vmlinux 0xd2919828 mipi_dsi_dcs_set_tear_scanline -EXPORT_SYMBOL vmlinux 0xd2aec18a pci_write_config_word -EXPORT_SYMBOL vmlinux 0xd2b4cd21 vfio_unregister_notifier +EXPORT_SYMBOL vmlinux 0xd27b6b58 noop_llseek +EXPORT_SYMBOL vmlinux 0xd2800691 nf_conntrack_destroy +EXPORT_SYMBOL vmlinux 0xd291d79b ipv4_specific +EXPORT_SYMBOL vmlinux 0xd293b4ba __sock_create +EXPORT_SYMBOL vmlinux 0xd2952a76 f_setown +EXPORT_SYMBOL vmlinux 0xd297a159 tcp_ioctl +EXPORT_SYMBOL vmlinux 0xd2a3f356 seq_put_decimal_ull +EXPORT_SYMBOL vmlinux 0xd2ba7afb simple_dir_operations +EXPORT_SYMBOL vmlinux 0xd2baacf8 migrate_vma_setup +EXPORT_SYMBOL vmlinux 0xd2c451de mr_mfc_find_any_parent EXPORT_SYMBOL vmlinux 0xd2c99738 __kmalloc_track_caller -EXPORT_SYMBOL vmlinux 0xd2d0734b skb_set_owner_w +EXPORT_SYMBOL vmlinux 0xd2d3cf35 of_device_unregister EXPORT_SYMBOL vmlinux 0xd2da1048 register_netdevice_notifier +EXPORT_SYMBOL vmlinux 0xd2e153dc alloc_buffer_head EXPORT_SYMBOL vmlinux 0xd2e2a9d0 hdmi_spd_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0xd2edcded netdev_has_any_upper_dev -EXPORT_SYMBOL vmlinux 0xd2f88f19 dquot_transfer -EXPORT_SYMBOL vmlinux 0xd2f938ed jbd2_journal_clear_err -EXPORT_SYMBOL vmlinux 0xd30c84d1 of_phy_is_fixed_link +EXPORT_SYMBOL vmlinux 0xd2e389fb tcp_get_md5sig_pool +EXPORT_SYMBOL vmlinux 0xd2e8a18c iw_handler_set_thrspy EXPORT_SYMBOL vmlinux 0xd31ccb06 of_machine_is_compatible +EXPORT_SYMBOL vmlinux 0xd31f1e0b filemap_fdatawait_keep_errors +EXPORT_SYMBOL vmlinux 0xd320e14d module_refcount +EXPORT_SYMBOL vmlinux 0xd32a0eb2 vmf_insert_mixed_mkwrite +EXPORT_SYMBOL vmlinux 0xd334e03b dma_get_sgtable_attrs +EXPORT_SYMBOL vmlinux 0xd3397e3f tcp_rtx_synack +EXPORT_SYMBOL vmlinux 0xd344c279 locks_delete_block +EXPORT_SYMBOL vmlinux 0xd345b097 vme_dma_list_add +EXPORT_SYMBOL vmlinux 0xd34c48c6 scsi_device_resume +EXPORT_SYMBOL vmlinux 0xd3505326 devfreq_remove_governor EXPORT_SYMBOL vmlinux 0xd3543063 memcg_kmem_enabled_key EXPORT_SYMBOL vmlinux 0xd35a6d31 mempool_kmalloc +EXPORT_SYMBOL vmlinux 0xd3616cfc config_item_put EXPORT_SYMBOL vmlinux 0xd36dc10c get_random_u32 EXPORT_SYMBOL vmlinux 0xd36e3d59 prandom_bytes_state -EXPORT_SYMBOL vmlinux 0xd38055a7 key_invalidate -EXPORT_SYMBOL vmlinux 0xd393e0eb dst_cow_metrics_generic -EXPORT_SYMBOL vmlinux 0xd3977240 __netlink_dump_start -EXPORT_SYMBOL vmlinux 0xd3a7817e unmap_mapping_range -EXPORT_SYMBOL vmlinux 0xd3b77910 tso_count_descs -EXPORT_SYMBOL vmlinux 0xd3d1440c vme_irq_free -EXPORT_SYMBOL vmlinux 0xd3e2cc68 pcie_relaxed_ordering_enabled -EXPORT_SYMBOL vmlinux 0xd3e5d17c blk_queue_dma_alignment -EXPORT_SYMBOL vmlinux 0xd3ea6a1b dev_loopback_xmit +EXPORT_SYMBOL vmlinux 0xd3772b17 of_get_child_by_name +EXPORT_SYMBOL vmlinux 0xd388b1c6 __alloc_pages +EXPORT_SYMBOL vmlinux 0xd399de5d md_bitmap_close_sync +EXPORT_SYMBOL vmlinux 0xd39b11ad unlock_page +EXPORT_SYMBOL vmlinux 0xd3a0e6df nf_hook_slow_list +EXPORT_SYMBOL vmlinux 0xd3e99bf1 input_set_min_poll_interval EXPORT_SYMBOL vmlinux 0xd3eaf1ed devlink_dpipe_entry_clear -EXPORT_SYMBOL vmlinux 0xd3f6d2e7 path_is_mountpoint +EXPORT_SYMBOL vmlinux 0xd3ef762a input_set_poll_interval EXPORT_SYMBOL vmlinux 0xd406d266 fb_mode_is_equal -EXPORT_SYMBOL vmlinux 0xd416ef9a tty_driver_flush_buffer -EXPORT_SYMBOL vmlinux 0xd41aeda2 agp_generic_destroy_pages -EXPORT_SYMBOL vmlinux 0xd42059ac dev_mc_add_global +EXPORT_SYMBOL vmlinux 0xd42c12f3 xfrm_policy_byid +EXPORT_SYMBOL vmlinux 0xd44182e9 netdev_alert +EXPORT_SYMBOL vmlinux 0xd4434359 textsearch_unregister +EXPORT_SYMBOL vmlinux 0xd443b560 pci_dev_get EXPORT_SYMBOL vmlinux 0xd45cc6ca bin2hex -EXPORT_SYMBOL vmlinux 0xd4688b50 pcim_iounmap -EXPORT_SYMBOL vmlinux 0xd46de155 dquot_quotactl_sysfile_ops -EXPORT_SYMBOL vmlinux 0xd4758787 inet_dgram_ops -EXPORT_SYMBOL vmlinux 0xd487c23d kset_unregister -EXPORT_SYMBOL vmlinux 0xd488b780 bio_kmalloc +EXPORT_SYMBOL vmlinux 0xd47a9049 mr_mfc_find_any +EXPORT_SYMBOL vmlinux 0xd47bfa40 vlan_filter_push_vids +EXPORT_SYMBOL vmlinux 0xd47cbb19 simple_statfs +EXPORT_SYMBOL vmlinux 0xd48b8cc4 config_group_init +EXPORT_SYMBOL vmlinux 0xd48bb9c7 deactivate_super EXPORT_SYMBOL vmlinux 0xd48fdeef dql_completed -EXPORT_SYMBOL vmlinux 0xd4a1f02f bdev_read_only EXPORT_SYMBOL vmlinux 0xd4bb4a82 inet6addr_validator_notifier_call_chain +EXPORT_SYMBOL vmlinux 0xd4cff59f locks_remove_posix EXPORT_SYMBOL vmlinux 0xd4d7c068 fsl_upm_find -EXPORT_SYMBOL vmlinux 0xd4daa432 import_iovec -EXPORT_SYMBOL vmlinux 0xd4e34b25 blk_mq_kick_requeue_list -EXPORT_SYMBOL vmlinux 0xd4e6c534 of_phy_deregister_fixed_link -EXPORT_SYMBOL vmlinux 0xd4ec50b0 ipv6_chk_custom_prefix -EXPORT_SYMBOL vmlinux 0xd4f582a0 mipi_dsi_device_unregister EXPORT_SYMBOL vmlinux 0xd4fa5a87 __kfifo_dma_out_prepare EXPORT_SYMBOL vmlinux 0xd4fd0ec2 radix_tree_tag_set -EXPORT_SYMBOL vmlinux 0xd5109bde scsi_vpd_tpg_id -EXPORT_SYMBOL vmlinux 0xd5236d9d xsk_set_tx_need_wakeup -EXPORT_SYMBOL vmlinux 0xd524ba73 xfrm4_protocol_register +EXPORT_SYMBOL vmlinux 0xd4fedcdd mr_vif_seq_idx +EXPORT_SYMBOL vmlinux 0xd50923e2 tcp_v4_connect +EXPORT_SYMBOL vmlinux 0xd51fa778 __mdiobus_register +EXPORT_SYMBOL vmlinux 0xd5215403 path_get EXPORT_SYMBOL vmlinux 0xd5263820 mb_cache_destroy -EXPORT_SYMBOL vmlinux 0xd538618b generic_pipe_buf_get -EXPORT_SYMBOL vmlinux 0xd53b2033 dquot_set_dqblk -EXPORT_SYMBOL vmlinux 0xd53b4b14 security_sb_set_mnt_opts -EXPORT_SYMBOL vmlinux 0xd548ec9d jbd2_journal_inode_ranged_wait -EXPORT_SYMBOL vmlinux 0xd57a6f24 xfrm_policy_destroy -EXPORT_SYMBOL vmlinux 0xd58574a6 tcp_syn_ack_timeout -EXPORT_SYMBOL vmlinux 0xd58b9a68 thread_group_exited +EXPORT_SYMBOL vmlinux 0xd5283385 genphy_c37_read_status +EXPORT_SYMBOL vmlinux 0xd5298444 __tcp_md5_do_lookup +EXPORT_SYMBOL vmlinux 0xd52d4d50 xp_dma_sync_for_cpu_slow +EXPORT_SYMBOL vmlinux 0xd53f1def get_cached_acl +EXPORT_SYMBOL vmlinux 0xd54492e7 security_inode_getsecctx +EXPORT_SYMBOL vmlinux 0xd5546402 nf_unregister_net_hooks +EXPORT_SYMBOL vmlinux 0xd56280c5 backlight_device_unregister +EXPORT_SYMBOL vmlinux 0xd569fb45 sock_no_linger EXPORT_SYMBOL vmlinux 0xd58e70dd net_rand_noise -EXPORT_SYMBOL vmlinux 0xd5aa1235 skb_copy_bits +EXPORT_SYMBOL vmlinux 0xd58fbbb9 blk_rq_map_user +EXPORT_SYMBOL vmlinux 0xd59c8f14 security_sb_mnt_opts_compat +EXPORT_SYMBOL vmlinux 0xd59fad23 __scsi_add_device EXPORT_SYMBOL vmlinux 0xd5b12f7d radix_tree_replace_slot -EXPORT_SYMBOL vmlinux 0xd5b242fc open_with_fake_path EXPORT_SYMBOL vmlinux 0xd5b3d0d5 xxh64_copy_state -EXPORT_SYMBOL vmlinux 0xd5bad748 unregister_framebuffer -EXPORT_SYMBOL vmlinux 0xd5bbb0a2 nf_log_unset +EXPORT_SYMBOL vmlinux 0xd5b91ad9 of_get_mac_address EXPORT_SYMBOL vmlinux 0xd5be130e cpu_core_map -EXPORT_SYMBOL vmlinux 0xd5c965a4 bfifo_qdisc_ops -EXPORT_SYMBOL vmlinux 0xd5e8ef0d genphy_read_lpa -EXPORT_SYMBOL vmlinux 0xd5efc905 disk_stack_limits +EXPORT_SYMBOL vmlinux 0xd5ce1277 iov_iter_bvec +EXPORT_SYMBOL vmlinux 0xd5eaeedc pm860x_bulk_read +EXPORT_SYMBOL vmlinux 0xd6034a8e vio_enable_interrupts +EXPORT_SYMBOL vmlinux 0xd604bfa6 unpin_user_page EXPORT_SYMBOL vmlinux 0xd60736ec gf128mul_free_64k -EXPORT_SYMBOL vmlinux 0xd62066a0 write_cache_pages -EXPORT_SYMBOL vmlinux 0xd62413ae get_tree_bdev -EXPORT_SYMBOL vmlinux 0xd625116c km_policy_notify -EXPORT_SYMBOL vmlinux 0xd6304ee0 nf_unregister_net_hook -EXPORT_SYMBOL vmlinux 0xd631be00 ip_mc_check_igmp -EXPORT_SYMBOL vmlinux 0xd63fcda6 jbd2_submit_inode_data +EXPORT_SYMBOL vmlinux 0xd61dc593 i8042_install_filter +EXPORT_SYMBOL vmlinux 0xd62397db pci_release_selected_regions +EXPORT_SYMBOL vmlinux 0xd6397b90 fscrypt_has_permitted_context EXPORT_SYMBOL vmlinux 0xd63fd8d1 utf8nagemax -EXPORT_SYMBOL vmlinux 0xd6569afc __napi_alloc_skb -EXPORT_SYMBOL vmlinux 0xd65e8026 kernel_sendmsg_locked -EXPORT_SYMBOL vmlinux 0xd6731e88 configfs_register_default_group -EXPORT_SYMBOL vmlinux 0xd67b070b wake_up_process +EXPORT_SYMBOL vmlinux 0xd6444a0f ip_tunnel_header_ops +EXPORT_SYMBOL vmlinux 0xd648b915 tty_lock +EXPORT_SYMBOL vmlinux 0xd64aab06 dm_table_get_mode +EXPORT_SYMBOL vmlinux 0xd64ee3dc unregister_framebuffer +EXPORT_SYMBOL vmlinux 0xd6699666 devm_extcon_unregister_notifier +EXPORT_SYMBOL vmlinux 0xd6770547 set_bdi_congested +EXPORT_SYMBOL vmlinux 0xd6848f5a skb_copy_and_csum_bits EXPORT_SYMBOL vmlinux 0xd688716b dm_kcopyd_client_create EXPORT_SYMBOL vmlinux 0xd68c5a1f adjust_resource EXPORT_SYMBOL vmlinux 0xd69948fb proc_dointvec EXPORT_SYMBOL vmlinux 0xd6a91f54 twl_i2c_read +EXPORT_SYMBOL vmlinux 0xd6c1541f mmc_gpiod_request_cd_irq +EXPORT_SYMBOL vmlinux 0xd6dbdd21 blk_put_queue EXPORT_SYMBOL vmlinux 0xd6eaaea1 full_name_hash EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc EXPORT_SYMBOL vmlinux 0xd6fd4053 __arch_hweight32 EXPORT_SYMBOL vmlinux 0xd6fde043 is_module_sig_enforced +EXPORT_SYMBOL vmlinux 0xd6fec502 tcf_idrinfo_destroy +EXPORT_SYMBOL vmlinux 0xd7055c2d devfreq_update_interval EXPORT_SYMBOL vmlinux 0xd70d35a1 gf128mul_4k_bbe -EXPORT_SYMBOL vmlinux 0xd710c206 blk_integrity_register -EXPORT_SYMBOL vmlinux 0xd7201f42 input_mt_report_finger_count +EXPORT_SYMBOL vmlinux 0xd721c83f posix_test_lock +EXPORT_SYMBOL vmlinux 0xd722baf0 tty_port_free_xmit_buf +EXPORT_SYMBOL vmlinux 0xd729fd6b register_console EXPORT_SYMBOL vmlinux 0xd738ca1b phy_unregister_fixup_for_uid -EXPORT_SYMBOL vmlinux 0xd741586c memory_cgrp_subsys -EXPORT_SYMBOL vmlinux 0xd764ec3e mipi_dsi_dcs_set_tear_off -EXPORT_SYMBOL vmlinux 0xd779f909 md_flush_request +EXPORT_SYMBOL vmlinux 0xd73bbfe5 __cleancache_init_fs +EXPORT_SYMBOL vmlinux 0xd73dd1f7 inode_set_flags +EXPORT_SYMBOL vmlinux 0xd7500993 bh_submit_read +EXPORT_SYMBOL vmlinux 0xd7617ee2 nd_device_register EXPORT_SYMBOL vmlinux 0xd786c0ea plpar_hcall9 -EXPORT_SYMBOL vmlinux 0xd797eaf9 ethtool_get_phc_vclocks -EXPORT_SYMBOL vmlinux 0xd7c5850c inet6_release +EXPORT_SYMBOL vmlinux 0xd7977a42 pci_alloc_dev +EXPORT_SYMBOL vmlinux 0xd7b46d94 __vfs_getxattr +EXPORT_SYMBOL vmlinux 0xd7bdd37c rproc_coredump_using_sections EXPORT_SYMBOL vmlinux 0xd7d280ad irq_poll_complete -EXPORT_SYMBOL vmlinux 0xd7d94e3f kthread_bind -EXPORT_SYMBOL vmlinux 0xd7d9f57a pnv_cxl_get_irq_count -EXPORT_SYMBOL vmlinux 0xd7dbcf11 genlmsg_put -EXPORT_SYMBOL vmlinux 0xd7dcb121 pci_free_irq_vectors +EXPORT_SYMBOL vmlinux 0xd7df2ff5 blkdev_put EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll -EXPORT_SYMBOL vmlinux 0xd7e85f75 xfrm_alloc_spi EXPORT_SYMBOL vmlinux 0xd7ea7094 nf_unregister_queue_handler -EXPORT_SYMBOL vmlinux 0xd7f4cdf3 dcbnl_cee_notify -EXPORT_SYMBOL vmlinux 0xd80f342a tcp_rcv_state_process -EXPORT_SYMBOL vmlinux 0xd8261777 mipi_dsi_dcs_set_tear_on -EXPORT_SYMBOL vmlinux 0xd8414bf7 dm_table_get_mode +EXPORT_SYMBOL vmlinux 0xd7f66aea rproc_shutdown +EXPORT_SYMBOL vmlinux 0xd7f92bee blkdev_get_by_dev +EXPORT_SYMBOL vmlinux 0xd818ab71 dma_pool_create +EXPORT_SYMBOL vmlinux 0xd8233cbb dcb_ieee_getapp_dscp_prio_mask_map +EXPORT_SYMBOL vmlinux 0xd828f934 inet6_csk_route_req +EXPORT_SYMBOL vmlinux 0xd842432f zero_fill_bio +EXPORT_SYMBOL vmlinux 0xd8497f30 sock_dequeue_err_skb +EXPORT_SYMBOL vmlinux 0xd84ac2c2 qdisc_class_hash_grow EXPORT_SYMBOL vmlinux 0xd8548b30 gen_pool_first_fit -EXPORT_SYMBOL vmlinux 0xd869d954 tty_hung_up_p -EXPORT_SYMBOL vmlinux 0xd86d5b97 dmam_pool_create -EXPORT_SYMBOL vmlinux 0xd874c9a7 ppp_register_channel -EXPORT_SYMBOL vmlinux 0xd88fad1b dcache_readdir +EXPORT_SYMBOL vmlinux 0xd884a379 update_devfreq +EXPORT_SYMBOL vmlinux 0xd8938a61 dma_resv_add_shared_fence EXPORT_SYMBOL vmlinux 0xd89da37f movable_zone EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format -EXPORT_SYMBOL vmlinux 0xd8acb512 mmc_run_bkops EXPORT_SYMBOL vmlinux 0xd8b61304 get_default_font -EXPORT_SYMBOL vmlinux 0xd8e4aa9d pcie_capability_read_word -EXPORT_SYMBOL vmlinux 0xd8efdc23 prepare_kernel_cred -EXPORT_SYMBOL vmlinux 0xd8fd0aac build_skb -EXPORT_SYMBOL vmlinux 0xd901afc4 neigh_ifdown -EXPORT_SYMBOL vmlinux 0xd918e6da of_phy_register_fixed_link +EXPORT_SYMBOL vmlinux 0xd8cc7710 tcp_syn_ack_timeout +EXPORT_SYMBOL vmlinux 0xd8d790a9 md_bitmap_startwrite +EXPORT_SYMBOL vmlinux 0xd8eb3cda timestamp_truncate +EXPORT_SYMBOL vmlinux 0xd8f4f505 jbd2_journal_get_create_access +EXPORT_SYMBOL vmlinux 0xd8fb6b6d tcp_sock_set_cork +EXPORT_SYMBOL vmlinux 0xd8fd20c9 __blk_mq_alloc_disk +EXPORT_SYMBOL vmlinux 0xd907d361 mmc_get_card EXPORT_SYMBOL vmlinux 0xd91f6ab6 strnlen_user -EXPORT_SYMBOL vmlinux 0xd91f72d1 dns_query EXPORT_SYMBOL vmlinux 0xd923e3bf dma_fence_add_callback -EXPORT_SYMBOL vmlinux 0xd931930e submit_bh +EXPORT_SYMBOL vmlinux 0xd92b8541 pci_free_host_bridge EXPORT_SYMBOL vmlinux 0xd93427b3 __alloc_bucket_spinlocks -EXPORT_SYMBOL vmlinux 0xd93cf222 blk_mq_stop_hw_queue -EXPORT_SYMBOL vmlinux 0xd9641444 clk_hw_get_clk -EXPORT_SYMBOL vmlinux 0xd96d8d7a mmc_gpiod_request_cd -EXPORT_SYMBOL vmlinux 0xd975e04d i2c_put_adapter +EXPORT_SYMBOL vmlinux 0xd93f5fbf csum_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0xd949e7f3 uart_get_divisor +EXPORT_SYMBOL vmlinux 0xd94db918 keyring_alloc +EXPORT_SYMBOL vmlinux 0xd950ef05 sget_fc +EXPORT_SYMBOL vmlinux 0xd9858e22 page_pool_put_page_bulk EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages -EXPORT_SYMBOL vmlinux 0xd9923077 inet_dev_addr_type -EXPORT_SYMBOL vmlinux 0xd99e128e msi_desc_to_pci_dev -EXPORT_SYMBOL vmlinux 0xd9acedfc devm_devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0xd999eab6 gnet_stats_copy_basic_hw +EXPORT_SYMBOL vmlinux 0xd9a3e272 ethtool_rx_flow_rule_create +EXPORT_SYMBOL vmlinux 0xd9a5d2f4 jbd2_log_start_commit +EXPORT_SYMBOL vmlinux 0xd9b3c41a serio_open EXPORT_SYMBOL vmlinux 0xd9b8eaea __SCK__tp_func_dma_fence_signaled EXPORT_SYMBOL vmlinux 0xd9bac924 tty_termios_copy_hw -EXPORT_SYMBOL vmlinux 0xd9beda61 invalidate_mapping_pages -EXPORT_SYMBOL vmlinux 0xd9bfb4ae vmf_insert_mixed_mkwrite -EXPORT_SYMBOL vmlinux 0xd9c34b44 d_lookup -EXPORT_SYMBOL vmlinux 0xd9c80a36 __cleancache_invalidate_page -EXPORT_SYMBOL vmlinux 0xd9cb764c backlight_device_get_by_type +EXPORT_SYMBOL vmlinux 0xd9c22d7c ipv6_dev_find EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler EXPORT_SYMBOL vmlinux 0xd9d952d1 crypto_aes_sbox -EXPORT_SYMBOL vmlinux 0xda0ef2ed tcp_ioctl -EXPORT_SYMBOL vmlinux 0xda14fb1a key_alloc +EXPORT_SYMBOL vmlinux 0xda05af7c __xfrm_policy_check +EXPORT_SYMBOL vmlinux 0xda297345 sk_stop_timer_sync +EXPORT_SYMBOL vmlinux 0xda38c6f2 flow_rule_match_cvlan EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open -EXPORT_SYMBOL vmlinux 0xda544517 dev_uc_sync -EXPORT_SYMBOL vmlinux 0xda68fab0 lookup_one_len +EXPORT_SYMBOL vmlinux 0xda566260 skb_queue_purge EXPORT_SYMBOL vmlinux 0xda72a7ec ZSTD_nextInputType -EXPORT_SYMBOL vmlinux 0xda85a8d6 input_mt_report_slot_state EXPORT_SYMBOL vmlinux 0xda89ea3b ip_idents_reserve -EXPORT_SYMBOL vmlinux 0xda900d4d is_bad_inode -EXPORT_SYMBOL vmlinux 0xdab0f349 tc_setup_cb_destroy -EXPORT_SYMBOL vmlinux 0xdabcfac5 of_cpu_node_to_id +EXPORT_SYMBOL vmlinux 0xda92769d dma_map_page_attrs +EXPORT_SYMBOL vmlinux 0xdaa46cca nd_pfn_probe +EXPORT_SYMBOL vmlinux 0xdaa893e7 __breadahead_gfp +EXPORT_SYMBOL vmlinux 0xdabd1b14 bfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0xdac0a823 blk_mq_alloc_request EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region EXPORT_SYMBOL vmlinux 0xdac545b9 lockref_get_or_lock -EXPORT_SYMBOL vmlinux 0xdacd3961 __of_get_address -EXPORT_SYMBOL vmlinux 0xdacf8a16 inode_nohighmem -EXPORT_SYMBOL vmlinux 0xdad25590 input_register_handle -EXPORT_SYMBOL vmlinux 0xdae71fae ip6_output -EXPORT_SYMBOL vmlinux 0xdaebe434 udp_gro_receive -EXPORT_SYMBOL vmlinux 0xdaf38d30 __generic_file_fsync -EXPORT_SYMBOL vmlinux 0xdb001cc3 tcp_md5_do_add -EXPORT_SYMBOL vmlinux 0xdb3261ee ppp_unregister_channel +EXPORT_SYMBOL vmlinux 0xdae2401f pcie_get_mps +EXPORT_SYMBOL vmlinux 0xdae42e03 kthread_create_worker +EXPORT_SYMBOL vmlinux 0xdaedab9b load_nls +EXPORT_SYMBOL vmlinux 0xdaf0059d dev_pm_opp_unregister_notifier +EXPORT_SYMBOL vmlinux 0xdb34d2b9 unlock_page_memcg +EXPORT_SYMBOL vmlinux 0xdb3d7ae7 pci_request_regions_exclusive +EXPORT_SYMBOL vmlinux 0xdb45d83e find_inode_nowait +EXPORT_SYMBOL vmlinux 0xdb4b4194 skb_flow_get_icmp_tci +EXPORT_SYMBOL vmlinux 0xdb5467c0 find_inode_by_ino_rcu +EXPORT_SYMBOL vmlinux 0xdb5cf8c1 dquot_scan_active +EXPORT_SYMBOL vmlinux 0xdb641f8c genphy_read_status +EXPORT_SYMBOL vmlinux 0xdb658d50 blk_get_queue EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy +EXPORT_SYMBOL vmlinux 0xdb6e7c2e noop_qdisc EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free -EXPORT_SYMBOL vmlinux 0xdb7bd1ad neigh_xmit -EXPORT_SYMBOL vmlinux 0xdb8394c6 of_match_device -EXPORT_SYMBOL vmlinux 0xdb8efb2d skb_clone -EXPORT_SYMBOL vmlinux 0xdb8f6920 mfd_cell_enable -EXPORT_SYMBOL vmlinux 0xdb9bd31d tcf_qevent_destroy -EXPORT_SYMBOL vmlinux 0xdbaf6dc1 inc_node_state +EXPORT_SYMBOL vmlinux 0xdb8521f0 mipi_dsi_dcs_read +EXPORT_SYMBOL vmlinux 0xdb876565 tcp_mtu_to_mss +EXPORT_SYMBOL vmlinux 0xdb939744 ip_mc_check_igmp +EXPORT_SYMBOL vmlinux 0xdbad2939 mr_vif_seq_next +EXPORT_SYMBOL vmlinux 0xdbb5f242 phy_drivers_unregister +EXPORT_SYMBOL vmlinux 0xdbde9de3 is_nd_pfn EXPORT_SYMBOL vmlinux 0xdbdf6c92 ioport_resource -EXPORT_SYMBOL vmlinux 0xdbe91939 __neigh_set_probe_once -EXPORT_SYMBOL vmlinux 0xdbef0817 mdiobus_read_nested +EXPORT_SYMBOL vmlinux 0xdbe9bb24 fscrypt_encrypt_block_inplace +EXPORT_SYMBOL vmlinux 0xdbeb39cd blk_mq_delay_run_hw_queues +EXPORT_SYMBOL vmlinux 0xdbef74c9 netpoll_poll_dev EXPORT_SYMBOL vmlinux 0xdbf3110e gen_pool_first_fit_align EXPORT_SYMBOL vmlinux 0xdbfa0017 cpu_all_bits +EXPORT_SYMBOL vmlinux 0xdc0b7500 flush_dcache_icache_page EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems -EXPORT_SYMBOL vmlinux 0xdc17c373 kobject_init +EXPORT_SYMBOL vmlinux 0xdc194f85 netif_carrier_off +EXPORT_SYMBOL vmlinux 0xdc1d6e06 kernel_param_unlock +EXPORT_SYMBOL vmlinux 0xdc398338 cdev_init +EXPORT_SYMBOL vmlinux 0xdc3a41e1 __invalidate_device EXPORT_SYMBOL vmlinux 0xdc3fcbc9 __sw_hweight8 EXPORT_SYMBOL vmlinux 0xdc3fcbcb __mutex_init -EXPORT_SYMBOL vmlinux 0xdc42e2f1 rproc_add_carveout -EXPORT_SYMBOL vmlinux 0xdc45c60d rtnl_kfree_skbs EXPORT_SYMBOL vmlinux 0xdc49c198 reciprocal_value_adv EXPORT_SYMBOL vmlinux 0xdc512134 backlight_register_notifier -EXPORT_SYMBOL vmlinux 0xdc632afc tty_unthrottle -EXPORT_SYMBOL vmlinux 0xdc826331 __inet6_lookup_established -EXPORT_SYMBOL vmlinux 0xdc8d4dd4 path_is_under -EXPORT_SYMBOL vmlinux 0xdc93b09c tcp_peek_len +EXPORT_SYMBOL vmlinux 0xdc76e104 fs_param_is_u32 EXPORT_SYMBOL vmlinux 0xdc9498dd down -EXPORT_SYMBOL vmlinux 0xdc971d1b configfs_unregister_default_group -EXPORT_SYMBOL vmlinux 0xdc97f2ff netif_tx_stop_all_queues -EXPORT_SYMBOL vmlinux 0xdc99f639 iov_iter_revert -EXPORT_SYMBOL vmlinux 0xdc9c0691 blk_queue_logical_block_size -EXPORT_SYMBOL vmlinux 0xdc9e27e0 key_revoke -EXPORT_SYMBOL vmlinux 0xdca4aa32 pci_disable_link_state_locked -EXPORT_SYMBOL vmlinux 0xdcb2d2cd pci_enable_device +EXPORT_SYMBOL vmlinux 0xdca5297f skb_abort_seq_read +EXPORT_SYMBOL vmlinux 0xdca79869 bio_advance EXPORT_SYMBOL vmlinux 0xdcb3e5f1 mutex_lock_interruptible EXPORT_SYMBOL vmlinux 0xdcb764ad memset -EXPORT_SYMBOL vmlinux 0xdcbc50b4 genphy_c37_config_aneg -EXPORT_SYMBOL vmlinux 0xdcbc6e43 devm_request_threaded_irq -EXPORT_SYMBOL vmlinux 0xdcf68b99 filemap_range_has_page -EXPORT_SYMBOL vmlinux 0xdcff50a5 mmc_gpiod_request_ro -EXPORT_SYMBOL vmlinux 0xdd07232e pci_find_next_bus -EXPORT_SYMBOL vmlinux 0xdd0ca951 unregister_filesystem -EXPORT_SYMBOL vmlinux 0xdd133f40 devm_ioport_map -EXPORT_SYMBOL vmlinux 0xdd1d5b61 kernel_param_unlock -EXPORT_SYMBOL vmlinux 0xdd1e3183 vfs_setpos -EXPORT_SYMBOL vmlinux 0xdd24042a dst_release +EXPORT_SYMBOL vmlinux 0xdcc869b2 neigh_parms_alloc +EXPORT_SYMBOL vmlinux 0xdce54c05 tty_port_close +EXPORT_SYMBOL vmlinux 0xdcea0fb3 unregister_netdevice_queue +EXPORT_SYMBOL vmlinux 0xdd066806 copy_page_from_iter +EXPORT_SYMBOL vmlinux 0xdd17d795 udp6_csum_init +EXPORT_SYMBOL vmlinux 0xdd2c0af0 mdio_bus_type EXPORT_SYMBOL vmlinux 0xdd2c169b mb_cache_create -EXPORT_SYMBOL vmlinux 0xdd3285f4 fscrypt_encrypt_block_inplace -EXPORT_SYMBOL vmlinux 0xdd3cff0f prepare_to_swait_exclusive -EXPORT_SYMBOL vmlinux 0xdd4c3465 of_find_backlight_by_node +EXPORT_SYMBOL vmlinux 0xdd2d72af __skb_flow_get_ports +EXPORT_SYMBOL vmlinux 0xdd407f09 netdev_bonding_info_change +EXPORT_SYMBOL vmlinux 0xdd57da6d arp_create +EXPORT_SYMBOL vmlinux 0xdd5cc375 phy_get_eee_err EXPORT_SYMBOL vmlinux 0xdd64e639 strscpy -EXPORT_SYMBOL vmlinux 0xdd73f3c6 netlink_net_capable -EXPORT_SYMBOL vmlinux 0xdd7b533e security_sb_clone_mnt_opts -EXPORT_SYMBOL vmlinux 0xdd7c506b csum_and_copy_to_iter -EXPORT_SYMBOL vmlinux 0xdd843db3 invalidate_inode_buffers +EXPORT_SYMBOL vmlinux 0xdd7b3a73 blk_integrity_unregister EXPORT_SYMBOL vmlinux 0xdd849d51 scsi_get_sense_info_fld -EXPORT_SYMBOL vmlinux 0xdd86d558 inet_sk_rx_dst_set -EXPORT_SYMBOL vmlinux 0xdd9d7237 phy_drivers_register +EXPORT_SYMBOL vmlinux 0xdd9898a1 agp_generic_alloc_page +EXPORT_SYMBOL vmlinux 0xddab60de phy_start_aneg EXPORT_SYMBOL vmlinux 0xddafdd31 vm_node_stat EXPORT_SYMBOL vmlinux 0xddb3769b lockref_mark_dead -EXPORT_SYMBOL vmlinux 0xddc2b47f inet_frag_reasm_prepare -EXPORT_SYMBOL vmlinux 0xddc6df0d __i2c_smbus_xfer -EXPORT_SYMBOL vmlinux 0xdddc5566 __dev_get_by_index -EXPORT_SYMBOL vmlinux 0xddf0c355 invalidate_bdev -EXPORT_SYMBOL vmlinux 0xde00d210 jbd2_journal_check_available_features -EXPORT_SYMBOL vmlinux 0xde03d542 of_node_get -EXPORT_SYMBOL vmlinux 0xde07c650 dev_get_by_index -EXPORT_SYMBOL vmlinux 0xde0de7a7 scsi_register_interface -EXPORT_SYMBOL vmlinux 0xde0f3d84 pcie_get_readrq -EXPORT_SYMBOL vmlinux 0xde1bb4d0 inet_csk_clear_xmit_timers -EXPORT_SYMBOL vmlinux 0xde3c9067 nf_log_packet +EXPORT_SYMBOL vmlinux 0xddba780e param_set_uint +EXPORT_SYMBOL vmlinux 0xddbeaf2f da903x_query_status +EXPORT_SYMBOL vmlinux 0xddd141fe of_find_i2c_device_by_node +EXPORT_SYMBOL vmlinux 0xddd51581 pci_bus_claim_resources +EXPORT_SYMBOL vmlinux 0xdddc8d36 d_set_fallthru +EXPORT_SYMBOL vmlinux 0xdde6a880 file_update_time +EXPORT_SYMBOL vmlinux 0xde070afb qdisc_offload_dump_helper +EXPORT_SYMBOL vmlinux 0xde23a991 dev_change_carrier EXPORT_SYMBOL vmlinux 0xde461484 set_groups EXPORT_SYMBOL vmlinux 0xde4d4ace dim_calc_stats -EXPORT_SYMBOL vmlinux 0xde6375bc dma_mmap_attrs -EXPORT_SYMBOL vmlinux 0xde7558fd netdev_lower_dev_get_private -EXPORT_SYMBOL vmlinux 0xde8217d8 of_find_mipi_dsi_device_by_node -EXPORT_SYMBOL vmlinux 0xde8ec797 mmc_register_driver +EXPORT_SYMBOL vmlinux 0xde83109a security_unix_may_send +EXPORT_SYMBOL vmlinux 0xde8b0299 flow_block_cb_decref +EXPORT_SYMBOL vmlinux 0xde908547 tty_driver_flush_buffer EXPORT_SYMBOL vmlinux 0xde91448c load_vr_state -EXPORT_SYMBOL vmlinux 0xde991388 ip6_find_1stfragopt -EXPORT_SYMBOL vmlinux 0xde99e8ce crypto_sha256_finup +EXPORT_SYMBOL vmlinux 0xde92e59b mr_mfc_find_parent +EXPORT_SYMBOL vmlinux 0xde95811c end_page_private_2 EXPORT_SYMBOL vmlinux 0xde9b17ed agp3_generic_fetch_size -EXPORT_SYMBOL vmlinux 0xdea87ef3 ip_sock_set_freebind -EXPORT_SYMBOL vmlinux 0xdeb7517d d_set_d_op -EXPORT_SYMBOL vmlinux 0xdeba5272 __d_drop -EXPORT_SYMBOL vmlinux 0xdebb633a of_mdiobus_child_is_phy -EXPORT_SYMBOL vmlinux 0xdec8646f user_path_at_empty +EXPORT_SYMBOL vmlinux 0xdea0491b srp_rport_put +EXPORT_SYMBOL vmlinux 0xdeadf13e blk_queue_io_min EXPORT_SYMBOL vmlinux 0xded39a6b gen_kill_estimator +EXPORT_SYMBOL vmlinux 0xdede5a4f phy_register_fixup_for_uid +EXPORT_SYMBOL vmlinux 0xdee6cd51 skb_queue_tail +EXPORT_SYMBOL vmlinux 0xdeef2bff jbd2_journal_inode_ranged_wait EXPORT_SYMBOL vmlinux 0xdef7c893 fb_match_mode -EXPORT_SYMBOL vmlinux 0xdefda15b nf_hook_slow -EXPORT_SYMBOL vmlinux 0xdefdaf64 simple_get_link EXPORT_SYMBOL vmlinux 0xdf00b5d7 percpu_counter_destroy -EXPORT_SYMBOL vmlinux 0xdf08d08a i2c_smbus_write_block_data -EXPORT_SYMBOL vmlinux 0xdf1be994 flow_block_cb_alloc +EXPORT_SYMBOL vmlinux 0xdf191b4d dm_io EXPORT_SYMBOL vmlinux 0xdf256037 kstrtou8_from_user EXPORT_SYMBOL vmlinux 0xdf2c2742 rb_last -EXPORT_SYMBOL vmlinux 0xdf39645e netdev_emerg -EXPORT_SYMBOL vmlinux 0xdf3f594c sock_create -EXPORT_SYMBOL vmlinux 0xdf527e7f cdrom_get_media_event +EXPORT_SYMBOL vmlinux 0xdf393190 dquot_commit_info +EXPORT_SYMBOL vmlinux 0xdf3fdf4a cfb_imageblit +EXPORT_SYMBOL vmlinux 0xdf50689b vm_insert_page EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier -EXPORT_SYMBOL vmlinux 0xdf6b89f3 fscrypt_put_encryption_info -EXPORT_SYMBOL vmlinux 0xdf6e9237 __skb_checksum_complete_head -EXPORT_SYMBOL vmlinux 0xdf73bbee dquot_quota_off -EXPORT_SYMBOL vmlinux 0xdf74f8a9 init_task -EXPORT_SYMBOL vmlinux 0xdf7b268e __vfs_setxattr -EXPORT_SYMBOL vmlinux 0xdf7e050d iput -EXPORT_SYMBOL vmlinux 0xdf86992f dev_change_proto_down +EXPORT_SYMBOL vmlinux 0xdf5e3ba2 xfrm_find_acq_byseq +EXPORT_SYMBOL vmlinux 0xdf62f25d init_net +EXPORT_SYMBOL vmlinux 0xdf6529e1 skb_copy_and_hash_datagram_iter EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid EXPORT_SYMBOL vmlinux 0xdf93b9d8 timespec64_to_jiffies -EXPORT_SYMBOL vmlinux 0xdfb6043a agp_generic_free_gatt_table -EXPORT_SYMBOL vmlinux 0xdfb77248 proc_mkdir_mode -EXPORT_SYMBOL vmlinux 0xdfc442ec flow_rule_match_control -EXPORT_SYMBOL vmlinux 0xdfcb5ca6 __neigh_event_send +EXPORT_SYMBOL vmlinux 0xdf9fedde eth_header_cache_update EXPORT_SYMBOL vmlinux 0xdfcc992c current_work -EXPORT_SYMBOL vmlinux 0xdfdcd8af param_set_byte EXPORT_SYMBOL vmlinux 0xdfdfa9e7 utf8nfdi -EXPORT_SYMBOL vmlinux 0xdfee04a6 xp_dma_unmap +EXPORT_SYMBOL vmlinux 0xdfe6981d alloc_fddidev EXPORT_SYMBOL vmlinux 0xdff905e5 vme_slave_free EXPORT_SYMBOL vmlinux 0xdffc80fc vesa_modes -EXPORT_SYMBOL vmlinux 0xe01ca920 of_clk_get +EXPORT_SYMBOL vmlinux 0xdffef3d7 pskb_trim_rcsum_slow +EXPORT_SYMBOL vmlinux 0xe003c671 jbd2_journal_check_available_features +EXPORT_SYMBOL vmlinux 0xe00a70ad ps2_sliced_command EXPORT_SYMBOL vmlinux 0xe022e639 gen_pool_alloc_algo_owner -EXPORT_SYMBOL vmlinux 0xe0277f8d qdisc_put -EXPORT_SYMBOL vmlinux 0xe032c97a page_zero_new_buffers +EXPORT_SYMBOL vmlinux 0xe0295b51 __cgroup_bpf_run_filter_skb +EXPORT_SYMBOL vmlinux 0xe036b0b9 devm_mdiobus_alloc_size EXPORT_SYMBOL vmlinux 0xe0419ac4 kstrtos16 -EXPORT_SYMBOL vmlinux 0xe059366a ram_aops -EXPORT_SYMBOL vmlinux 0xe0730492 skb_queue_tail -EXPORT_SYMBOL vmlinux 0xe07a0ce4 __vfs_removexattr -EXPORT_SYMBOL vmlinux 0xe07ca23c skb_flow_dissect_ct +EXPORT_SYMBOL vmlinux 0xe0561ee4 devfreq_monitor_start +EXPORT_SYMBOL vmlinux 0xe06bea85 __xfrm_decode_session EXPORT_SYMBOL vmlinux 0xe080e8f0 set_current_groups EXPORT_SYMBOL vmlinux 0xe091c977 list_sort +EXPORT_SYMBOL vmlinux 0xe0920635 __set_page_dirty_no_writeback EXPORT_SYMBOL vmlinux 0xe0955f76 utf8_casefold -EXPORT_SYMBOL vmlinux 0xe0a4f2a1 dcache_dir_close +EXPORT_SYMBOL vmlinux 0xe0acd840 vc_cons +EXPORT_SYMBOL vmlinux 0xe0ad4295 filemap_write_and_wait_range EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free -EXPORT_SYMBOL vmlinux 0xe0bd09a1 vlan_uses_dev +EXPORT_SYMBOL vmlinux 0xe0ba8eb8 fs_lookup_param EXPORT_SYMBOL vmlinux 0xe0bef318 icst_hz_to_vco -EXPORT_SYMBOL vmlinux 0xe0cea017 phy_ethtool_ksettings_set -EXPORT_SYMBOL vmlinux 0xe0ef2da0 __skb_gro_checksum_complete -EXPORT_SYMBOL vmlinux 0xe0f7f257 rproc_boot -EXPORT_SYMBOL vmlinux 0xe1054787 gnet_stats_copy_app -EXPORT_SYMBOL vmlinux 0xe118a23f blk_mq_tagset_wait_completed_request +EXPORT_SYMBOL vmlinux 0xe0cef9e3 mini_qdisc_pair_init +EXPORT_SYMBOL vmlinux 0xe0ddc861 tty_port_close_end +EXPORT_SYMBOL vmlinux 0xe0e266b8 read_cache_page_gfp +EXPORT_SYMBOL vmlinux 0xe0ebd558 tcf_chain_get_by_act +EXPORT_SYMBOL vmlinux 0xe110429f __frontswap_store EXPORT_SYMBOL vmlinux 0xe11ca997 ZSTD_getDictID_fromDict EXPORT_SYMBOL vmlinux 0xe123f3d9 dma_fence_release EXPORT_SYMBOL vmlinux 0xe12bda79 vme_dma_free_attribute -EXPORT_SYMBOL vmlinux 0xe12da6ab dma_resv_reserve_shared -EXPORT_SYMBOL vmlinux 0xe135a9f1 security_path_mknod -EXPORT_SYMBOL vmlinux 0xe14844ca tcf_chain_put_by_act -EXPORT_SYMBOL vmlinux 0xe153d041 kernel_param_lock -EXPORT_SYMBOL vmlinux 0xe1958e7e devfreq_unregister_opp_notifier -EXPORT_SYMBOL vmlinux 0xe196b7bf padata_do_serial -EXPORT_SYMBOL vmlinux 0xe1a1f94a refresh_frequency_limits +EXPORT_SYMBOL vmlinux 0xe13082d4 fb_validate_mode +EXPORT_SYMBOL vmlinux 0xe143c630 tcf_block_put +EXPORT_SYMBOL vmlinux 0xe1453d65 udp_lib_rehash +EXPORT_SYMBOL vmlinux 0xe147202a nf_register_net_hooks +EXPORT_SYMBOL vmlinux 0xe16b6975 vfs_dedupe_file_range +EXPORT_SYMBOL vmlinux 0xe1772932 scsi_host_get +EXPORT_SYMBOL vmlinux 0xe19511d5 wait_on_page_private_2_killable +EXPORT_SYMBOL vmlinux 0xe198f41b simple_write_begin EXPORT_SYMBOL vmlinux 0xe1a4f16a secure_ipv6_port_ephemeral -EXPORT_SYMBOL vmlinux 0xe1aabff9 dump_skip -EXPORT_SYMBOL vmlinux 0xe1bb9b6b __set_page_dirty_buffers -EXPORT_SYMBOL vmlinux 0xe1d09ba7 mpage_writepages +EXPORT_SYMBOL vmlinux 0xe1b09205 tcp_gro_complete +EXPORT_SYMBOL vmlinux 0xe1c3a3f0 mipi_dsi_dcs_nop +EXPORT_SYMBOL vmlinux 0xe1cee940 elv_rb_del EXPORT_SYMBOL vmlinux 0xe1dcf64a audit_log_format -EXPORT_SYMBOL vmlinux 0xe1e3ca4b inet_stream_ops -EXPORT_SYMBOL vmlinux 0xe1ef89bb get_mem_cgroup_from_mm -EXPORT_SYMBOL vmlinux 0xe208c329 scsi_target_quiesce -EXPORT_SYMBOL vmlinux 0xe20a887c netif_skb_features -EXPORT_SYMBOL vmlinux 0xe20ca7b6 end_page_private_2 +EXPORT_SYMBOL vmlinux 0xe1e832a3 simple_transaction_get +EXPORT_SYMBOL vmlinux 0xe1ef29b9 dst_init +EXPORT_SYMBOL vmlinux 0xe1f5cadb iov_iter_discard +EXPORT_SYMBOL vmlinux 0xe205ced6 rt_dst_clone +EXPORT_SYMBOL vmlinux 0xe21a636f jbd2_fc_wait_bufs EXPORT_SYMBOL vmlinux 0xe21f18ac __genradix_iter_peek EXPORT_SYMBOL vmlinux 0xe2304303 mac_map_monitor_sense +EXPORT_SYMBOL vmlinux 0xe24106ac __page_symlink +EXPORT_SYMBOL vmlinux 0xe24362ca inet_addr_type EXPORT_SYMBOL vmlinux 0xe25d20d3 __xa_alloc_cyclic +EXPORT_SYMBOL vmlinux 0xe27057bc uart_resume_port EXPORT_SYMBOL vmlinux 0xe273d75d alloc_cpu_rmap -EXPORT_SYMBOL vmlinux 0xe29f9587 netif_set_real_num_rx_queues +EXPORT_SYMBOL vmlinux 0xe28debad cdev_alloc +EXPORT_SYMBOL vmlinux 0xe2a70b75 netif_device_attach +EXPORT_SYMBOL vmlinux 0xe2af98c5 generic_ro_fops +EXPORT_SYMBOL vmlinux 0xe2bee027 __nlmsg_put +EXPORT_SYMBOL vmlinux 0xe2c2af95 neigh_table_init +EXPORT_SYMBOL vmlinux 0xe2c50561 pci_irq_get_affinity +EXPORT_SYMBOL vmlinux 0xe2c74709 vm_map_pages_zero +EXPORT_SYMBOL vmlinux 0xe2c92ae6 from_kgid EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp -EXPORT_SYMBOL vmlinux 0xe2e80d52 blk_pre_runtime_suspend -EXPORT_SYMBOL vmlinux 0xe301d5ba rt_dst_clone +EXPORT_SYMBOL vmlinux 0xe2d6db96 netpoll_parse_options +EXPORT_SYMBOL vmlinux 0xe30c5fd8 __inode_sub_bytes +EXPORT_SYMBOL vmlinux 0xe314cdd8 alloc_file_pseudo +EXPORT_SYMBOL vmlinux 0xe31f875b inode_init_owner +EXPORT_SYMBOL vmlinux 0xe32978b8 devm_ioport_unmap EXPORT_SYMBOL vmlinux 0xe32ab4d8 xxh64_digest -EXPORT_SYMBOL vmlinux 0xe337512f finish_swait -EXPORT_SYMBOL vmlinux 0xe382b15f mmc_retune_release -EXPORT_SYMBOL vmlinux 0xe38c9204 mr_mfc_find_any_parent -EXPORT_SYMBOL vmlinux 0xe3900d0a pin_user_pages +EXPORT_SYMBOL vmlinux 0xe336419d xp_can_alloc +EXPORT_SYMBOL vmlinux 0xe347cb69 dev_mc_del +EXPORT_SYMBOL vmlinux 0xe34e813e ww_mutex_lock +EXPORT_SYMBOL vmlinux 0xe3583ee6 vfs_get_tree +EXPORT_SYMBOL vmlinux 0xe379474c pci_bus_read_config_word +EXPORT_SYMBOL vmlinux 0xe389d135 dma_resv_fini +EXPORT_SYMBOL vmlinux 0xe39801c8 security_dentry_init_security EXPORT_SYMBOL vmlinux 0xe39b2ea5 sha256 -EXPORT_SYMBOL vmlinux 0xe3ac9bd1 keyring_alloc -EXPORT_SYMBOL vmlinux 0xe3b0b20e dcb_setapp +EXPORT_SYMBOL vmlinux 0xe39ba109 mmc_alloc_host +EXPORT_SYMBOL vmlinux 0xe39d242a skb_checksum +EXPORT_SYMBOL vmlinux 0xe3a7579f iov_iter_advance +EXPORT_SYMBOL vmlinux 0xe3c34ca5 vga_remove_vgacon +EXPORT_SYMBOL vmlinux 0xe3dcdbf2 of_translate_address EXPORT_SYMBOL vmlinux 0xe3ec2f2b alloc_chrdev_region EXPORT_SYMBOL vmlinux 0xe3f29f70 __init_waitqueue_head -EXPORT_SYMBOL vmlinux 0xe3fe004e fscrypt_ioctl_set_policy EXPORT_SYMBOL vmlinux 0xe3feba56 tasklet_unlock_spin_wait EXPORT_SYMBOL vmlinux 0xe3ff2c41 get_random_u64 -EXPORT_SYMBOL vmlinux 0xe405a533 rproc_resource_cleanup -EXPORT_SYMBOL vmlinux 0xe40b14c5 mem_cgroup_from_task +EXPORT_SYMBOL vmlinux 0xe4019a75 cookie_timestamp_decode +EXPORT_SYMBOL vmlinux 0xe402e625 request_key_rcu +EXPORT_SYMBOL vmlinux 0xe407ff90 set_user_nice +EXPORT_SYMBOL vmlinux 0xe4154cd7 dev_get_by_napi_id EXPORT_SYMBOL vmlinux 0xe419bc99 iowrite32be -EXPORT_SYMBOL vmlinux 0xe41ff89e nd_region_acquire_lane -EXPORT_SYMBOL vmlinux 0xe423f9cd pci_request_irq +EXPORT_SYMBOL vmlinux 0xe428935d genphy_setup_forced +EXPORT_SYMBOL vmlinux 0xe431f53a netlink_broadcast_filtered EXPORT_SYMBOL vmlinux 0xe4329092 __ctzdi2 -EXPORT_SYMBOL vmlinux 0xe447a51f do_SAK -EXPORT_SYMBOL vmlinux 0xe45b0abc tcp_v4_md5_lookup -EXPORT_SYMBOL vmlinux 0xe4613dbb ping_prot -EXPORT_SYMBOL vmlinux 0xe4865fe7 simple_lookup -EXPORT_SYMBOL vmlinux 0xe4a1f744 sock_set_priority -EXPORT_SYMBOL vmlinux 0xe4a79e6f security_unix_stream_connect +EXPORT_SYMBOL vmlinux 0xe4461fb9 proto_register +EXPORT_SYMBOL vmlinux 0xe45523c1 tcf_action_dump_1 +EXPORT_SYMBOL vmlinux 0xe481f7f0 ip_sock_set_recverr +EXPORT_SYMBOL vmlinux 0xe484963d clk_bulk_get +EXPORT_SYMBOL vmlinux 0xe4922d2c dev_get_by_name +EXPORT_SYMBOL vmlinux 0xe4b63658 page_pool_destroy +EXPORT_SYMBOL vmlinux 0xe4b7dcfe phy_ethtool_ksettings_get EXPORT_SYMBOL vmlinux 0xe4bc2c2f hdmi_drm_infoframe_pack +EXPORT_SYMBOL vmlinux 0xe4c229c5 phy_find_first +EXPORT_SYMBOL vmlinux 0xe4e6f459 filemap_fault EXPORT_SYMBOL vmlinux 0xe4e7cff3 tcp_sockets_allocated +EXPORT_SYMBOL vmlinux 0xe4e9dcaa of_graph_get_remote_node +EXPORT_SYMBOL vmlinux 0xe4ece84c netpoll_poll_disable +EXPORT_SYMBOL vmlinux 0xe4ed3d8c dmaengine_get_unmap_data EXPORT_SYMBOL vmlinux 0xe4efb700 register_sysctl +EXPORT_SYMBOL vmlinux 0xe504c6de param_ops_bint EXPORT_SYMBOL vmlinux 0xe5052c35 gtm_set_timer16 -EXPORT_SYMBOL vmlinux 0xe5059cb2 vio_unregister_driver +EXPORT_SYMBOL vmlinux 0xe520a370 close_fd_get_file EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq -EXPORT_SYMBOL vmlinux 0xe532ff46 tcp_splice_read -EXPORT_SYMBOL vmlinux 0xe5451e33 ppp_unregister_compressor -EXPORT_SYMBOL vmlinux 0xe55f3bd0 __skb_try_recv_datagram -EXPORT_SYMBOL vmlinux 0xe56529fc sg_miter_start -EXPORT_SYMBOL vmlinux 0xe56e1dda sock_dequeue_err_skb -EXPORT_SYMBOL vmlinux 0xe57f0237 vfio_pin_pages +EXPORT_SYMBOL vmlinux 0xe5343386 vfio_unregister_notifier +EXPORT_SYMBOL vmlinux 0xe53a28a1 pci_alloc_host_bridge +EXPORT_SYMBOL vmlinux 0xe5470a8a configfs_unregister_subsystem +EXPORT_SYMBOL vmlinux 0xe5598a38 bio_kmalloc +EXPORT_SYMBOL vmlinux 0xe5788ca4 param_array_ops EXPORT_SYMBOL vmlinux 0xe58090ca security_ib_endport_manage_subnet -EXPORT_SYMBOL vmlinux 0xe58d0118 md_error +EXPORT_SYMBOL vmlinux 0xe5879c94 pcix_get_max_mmrbc EXPORT_SYMBOL vmlinux 0xe590dea3 sk_busy_loop_end -EXPORT_SYMBOL vmlinux 0xe5947d5d t10_pi_type3_ip -EXPORT_SYMBOL vmlinux 0xe59e6254 validate_sp -EXPORT_SYMBOL vmlinux 0xe5b403e2 simple_setattr +EXPORT_SYMBOL vmlinux 0xe59f3486 ping_prot +EXPORT_SYMBOL vmlinux 0xe5aa4ee1 dev_getfirstbyhwtype EXPORT_SYMBOL vmlinux 0xe5bc9a53 slhc_free EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen -EXPORT_SYMBOL vmlinux 0xe5d139a3 reuseport_detach_prog +EXPORT_SYMBOL vmlinux 0xe5cbeaec find_get_pages_contig +EXPORT_SYMBOL vmlinux 0xe5d49696 pci_read_config_dword EXPORT_SYMBOL vmlinux 0xe5d71a61 __cpu_possible_mask +EXPORT_SYMBOL vmlinux 0xe5e695b3 neigh_carrier_down EXPORT_SYMBOL vmlinux 0xe613a798 inet_addr_is_any -EXPORT_SYMBOL vmlinux 0xe6390be5 elv_bio_merge_ok -EXPORT_SYMBOL vmlinux 0xe64f6105 pci_assign_resource -EXPORT_SYMBOL vmlinux 0xe65a5611 dquot_claim_space_nodirty -EXPORT_SYMBOL vmlinux 0xe65fff25 PageMovable +EXPORT_SYMBOL vmlinux 0xe61c2ff3 blk_queue_max_write_zeroes_sectors +EXPORT_SYMBOL vmlinux 0xe627e2c1 napi_gro_receive +EXPORT_SYMBOL vmlinux 0xe62dc32a skb_set_owner_w +EXPORT_SYMBOL vmlinux 0xe6360bee dev_disable_lro +EXPORT_SYMBOL vmlinux 0xe63ae44f netdev_warn +EXPORT_SYMBOL vmlinux 0xe643f1f9 inet_frags_fini +EXPORT_SYMBOL vmlinux 0xe65e0f14 neigh_app_ns EXPORT_SYMBOL vmlinux 0xe691ac7f ZSTD_decompressBegin -EXPORT_SYMBOL vmlinux 0xe6934dc2 ip6_dst_hoplimit EXPORT_SYMBOL vmlinux 0xe694077f gen_pool_for_each_chunk -EXPORT_SYMBOL vmlinux 0xe69bfd31 fscrypt_decrypt_pagecache_blocks -EXPORT_SYMBOL vmlinux 0xe6aec307 lookup_positive_unlocked -EXPORT_SYMBOL vmlinux 0xe6b17a0c bdev_check_media_change +EXPORT_SYMBOL vmlinux 0xe69fca9a pci_request_selected_regions +EXPORT_SYMBOL vmlinux 0xe6a999c7 skb_clone +EXPORT_SYMBOL vmlinux 0xe6b821ae sdev_disable_disk_events +EXPORT_SYMBOL vmlinux 0xe6c94709 get_tree_nodev EXPORT_SYMBOL vmlinux 0xe6d2458e do_trace_netlink_extack -EXPORT_SYMBOL vmlinux 0xe6e377c5 dev_mc_sync_multiple -EXPORT_SYMBOL vmlinux 0xe705ae76 md_register_thread -EXPORT_SYMBOL vmlinux 0xe70e4f12 fwnode_mdio_find_device -EXPORT_SYMBOL vmlinux 0xe715bfaa phy_print_status -EXPORT_SYMBOL vmlinux 0xe7165c1d sock_create_lite -EXPORT_SYMBOL vmlinux 0xe718eee5 tcp_connect -EXPORT_SYMBOL vmlinux 0xe72a82b8 __mmap_lock_do_trace_acquire_returned -EXPORT_SYMBOL vmlinux 0xe72b81cc mark_page_accessed +EXPORT_SYMBOL vmlinux 0xe6e835d7 tcp_sock_set_syncnt +EXPORT_SYMBOL vmlinux 0xe6fc18ca pci_find_parent_resource +EXPORT_SYMBOL vmlinux 0xe70de167 cdrom_number_of_slots +EXPORT_SYMBOL vmlinux 0xe7186ff9 i2c_register_driver +EXPORT_SYMBOL vmlinux 0xe720a2ff mark_page_accessed EXPORT_SYMBOL vmlinux 0xe7324b9a utf8nfdicf -EXPORT_SYMBOL vmlinux 0xe7456389 balance_dirty_pages_ratelimited -EXPORT_SYMBOL vmlinux 0xe74eb0d3 dma_sync_sg_for_device -EXPORT_SYMBOL vmlinux 0xe7525442 ethtool_rx_flow_rule_destroy -EXPORT_SYMBOL vmlinux 0xe7596b8d pcie_get_width_cap -EXPORT_SYMBOL vmlinux 0xe75f91cf vmf_insert_pfn -EXPORT_SYMBOL vmlinux 0xe761f04a generic_file_readonly_mmap +EXPORT_SYMBOL vmlinux 0xe73c5741 sock_alloc_send_skb +EXPORT_SYMBOL vmlinux 0xe74042f2 tty_port_close_start +EXPORT_SYMBOL vmlinux 0xe740aec3 phy_aneg_done +EXPORT_SYMBOL vmlinux 0xe7457e49 d_make_root +EXPORT_SYMBOL vmlinux 0xe746c2bf blk_mq_tag_to_rq +EXPORT_SYMBOL vmlinux 0xe75fcafb invalidate_mapping_pages EXPORT_SYMBOL vmlinux 0xe76335c5 __debugger -EXPORT_SYMBOL vmlinux 0xe77aebf2 radix__flush_all_mm -EXPORT_SYMBOL vmlinux 0xe79b08e1 phy_remove_link_mode -EXPORT_SYMBOL vmlinux 0xe7b332ae of_mdiobus_register +EXPORT_SYMBOL vmlinux 0xe76580cd __filemap_set_wb_err +EXPORT_SYMBOL vmlinux 0xe7826f98 xfrm_replay_seqhi +EXPORT_SYMBOL vmlinux 0xe7bf72fc devm_extcon_register_notifier_all +EXPORT_SYMBOL vmlinux 0xe7c06935 readahead_expand EXPORT_SYMBOL vmlinux 0xe7ce7439 _memcpy_fromio EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next -EXPORT_SYMBOL vmlinux 0xe7eee183 block_is_partially_uptodate -EXPORT_SYMBOL vmlinux 0xe81e52a0 pci_setup_cardbus -EXPORT_SYMBOL vmlinux 0xe828897f __getblk_gfp -EXPORT_SYMBOL vmlinux 0xe869f93e mipi_dsi_dcs_get_pixel_format -EXPORT_SYMBOL vmlinux 0xe873469d simple_empty -EXPORT_SYMBOL vmlinux 0xe8741ec5 filp_close -EXPORT_SYMBOL vmlinux 0xe8784782 sk_dst_check +EXPORT_SYMBOL vmlinux 0xe7dcfec8 file_open_root +EXPORT_SYMBOL vmlinux 0xe7e1bc45 security_skb_classify_flow +EXPORT_SYMBOL vmlinux 0xe7e224ca ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0xe7e50d59 gnet_stats_copy_rate_est +EXPORT_SYMBOL vmlinux 0xe7f960d7 dev_change_proto_down_reason +EXPORT_SYMBOL vmlinux 0xe80c99e2 qdisc_warn_nonwc +EXPORT_SYMBOL vmlinux 0xe819614c mpage_writepage +EXPORT_SYMBOL vmlinux 0xe819a040 validate_slab_cache +EXPORT_SYMBOL vmlinux 0xe8361a1b nf_register_queue_handler +EXPORT_SYMBOL vmlinux 0xe875711e sock_efree EXPORT_SYMBOL vmlinux 0xe878cc22 radix_tree_tagged -EXPORT_SYMBOL vmlinux 0xe87b0bae scsi_report_bus_reset -EXPORT_SYMBOL vmlinux 0xe88472ef lock_page_memcg -EXPORT_SYMBOL vmlinux 0xe8896100 of_graph_is_present EXPORT_SYMBOL vmlinux 0xe8b5c3c3 __tracepoint_module_get +EXPORT_SYMBOL vmlinux 0xe8b61756 mmc_detect_card_removed EXPORT_SYMBOL vmlinux 0xe8b80834 security_cred_getsecid -EXPORT_SYMBOL vmlinux 0xe8babd8a blkdev_issue_write_same +EXPORT_SYMBOL vmlinux 0xe8c50e5e bprm_change_interp EXPORT_SYMBOL vmlinux 0xe8d54c77 xa_clear_mark -EXPORT_SYMBOL vmlinux 0xe8e570f7 __serio_register_driver -EXPORT_SYMBOL vmlinux 0xe905cda8 dev_set_mtu +EXPORT_SYMBOL vmlinux 0xe8ed6a1d clear_page_dirty_for_io +EXPORT_SYMBOL vmlinux 0xe903870f proc_mkdir_mode EXPORT_SYMBOL vmlinux 0xe909997a bitmap_print_list_to_buf +EXPORT_SYMBOL vmlinux 0xe9143223 rproc_vq_interrupt EXPORT_SYMBOL vmlinux 0xe914e41e strcpy -EXPORT_SYMBOL vmlinux 0xe92c93e0 agp_generic_remove_memory +EXPORT_SYMBOL vmlinux 0xe9244fa2 skb_clone_sk +EXPORT_SYMBOL vmlinux 0xe926c9c0 md_unregister_thread +EXPORT_SYMBOL vmlinux 0xe93ad00b dquot_set_dqinfo EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino -EXPORT_SYMBOL vmlinux 0xe9687c70 netdev_reset_tc -EXPORT_SYMBOL vmlinux 0xe96c484a secure_tcpv6_ts_off -EXPORT_SYMBOL vmlinux 0xe974db18 ilookup5 -EXPORT_SYMBOL vmlinux 0xe99f8add fib_notifier_ops_register -EXPORT_SYMBOL vmlinux 0xe9b3eef3 scsi_device_put -EXPORT_SYMBOL vmlinux 0xe9b40fba mipi_dsi_detach -EXPORT_SYMBOL vmlinux 0xe9b6ee13 tcp_v4_connect -EXPORT_SYMBOL vmlinux 0xe9cd4e21 bio_reset -EXPORT_SYMBOL vmlinux 0xe9d3ba4d agp_backend_acquire -EXPORT_SYMBOL vmlinux 0xe9e0d2eb file_write_and_wait_range -EXPORT_SYMBOL vmlinux 0xe9ea57c3 jbd2_journal_ack_err -EXPORT_SYMBOL vmlinux 0xe9ed05c5 kernel_sendpage -EXPORT_SYMBOL vmlinux 0xe9f4db87 may_umount_tree +EXPORT_SYMBOL vmlinux 0xe95d4444 page_readlink +EXPORT_SYMBOL vmlinux 0xe97eaf08 dev_uc_sync +EXPORT_SYMBOL vmlinux 0xe98ee7d7 fscrypt_decrypt_block_inplace +EXPORT_SYMBOL vmlinux 0xe9b6a21b inet_frag_destroy +EXPORT_SYMBOL vmlinux 0xe9bbc95b phy_driver_unregister +EXPORT_SYMBOL vmlinux 0xe9c29e86 security_path_rename +EXPORT_SYMBOL vmlinux 0xe9c56b83 kernel_connect +EXPORT_SYMBOL vmlinux 0xe9e6c176 max8998_read_reg +EXPORT_SYMBOL vmlinux 0xe9eda5a4 inet_stream_connect EXPORT_SYMBOL vmlinux 0xe9f7149c zlib_deflate_workspacesize EXPORT_SYMBOL vmlinux 0xe9fc8b01 gen_pool_add_owner -EXPORT_SYMBOL vmlinux 0xea02367f skb_copy_and_csum_bits -EXPORT_SYMBOL vmlinux 0xea16d3b0 km_state_expired -EXPORT_SYMBOL vmlinux 0xea1ff188 phy_ethtool_get_stats -EXPORT_SYMBOL vmlinux 0xea356a9e dst_alloc +EXPORT_SYMBOL vmlinux 0xe9ff6a1b skb_copy_header +EXPORT_SYMBOL vmlinux 0xea080e34 tcf_qevent_handle +EXPORT_SYMBOL vmlinux 0xea0e7dce find_get_pages_range_tag +EXPORT_SYMBOL vmlinux 0xea1971de km_state_expired +EXPORT_SYMBOL vmlinux 0xea2a9711 serial8250_register_8250_port +EXPORT_SYMBOL vmlinux 0xea35689e request_firmware_nowait EXPORT_SYMBOL vmlinux 0xea3c8e4e scsilun_to_int -EXPORT_SYMBOL vmlinux 0xea3f92e2 seq_escape_mem EXPORT_SYMBOL vmlinux 0xea426e43 mempool_resize -EXPORT_SYMBOL vmlinux 0xea42fc9d i2c_del_adapter -EXPORT_SYMBOL vmlinux 0xea5e3b6e cdrom_check_events -EXPORT_SYMBOL vmlinux 0xea6e17db mdio_bus_type +EXPORT_SYMBOL vmlinux 0xea5f87e0 of_find_device_by_node +EXPORT_SYMBOL vmlinux 0xea61c339 remove_proc_subtree +EXPORT_SYMBOL vmlinux 0xea62de19 mdiobus_alloc_size EXPORT_SYMBOL vmlinux 0xea6f9a36 zlib_deflate_dfltcc_enabled EXPORT_SYMBOL vmlinux 0xea778fab sg_pcopy_to_buffer -EXPORT_SYMBOL vmlinux 0xea78166e napi_consume_skb +EXPORT_SYMBOL vmlinux 0xea7792d9 tcf_qevent_destroy +EXPORT_SYMBOL vmlinux 0xea78baef blk_mq_tagset_busy_iter +EXPORT_SYMBOL vmlinux 0xea7959d8 pm860x_reg_read +EXPORT_SYMBOL vmlinux 0xea7ab472 filemap_invalidate_unlock_two EXPORT_SYMBOL vmlinux 0xea80392f on_each_cpu_cond_mask -EXPORT_SYMBOL vmlinux 0xea81d1c3 scsi_dma_unmap -EXPORT_SYMBOL vmlinux 0xea8975ca __lock_page -EXPORT_SYMBOL vmlinux 0xea8d20ca input_set_keycode -EXPORT_SYMBOL vmlinux 0xeaa85405 tcf_chain_get_by_act -EXPORT_SYMBOL vmlinux 0xeab593b8 xfrm_register_type -EXPORT_SYMBOL vmlinux 0xeab5b877 i2c_smbus_read_byte -EXPORT_SYMBOL vmlinux 0xeade7af6 skb_recv_datagram -EXPORT_SYMBOL vmlinux 0xeaf5aae8 d_path +EXPORT_SYMBOL vmlinux 0xeab3e448 blk_put_request +EXPORT_SYMBOL vmlinux 0xeac721d8 phy_config_aneg +EXPORT_SYMBOL vmlinux 0xeae31564 inet_twsk_deschedule_put +EXPORT_SYMBOL vmlinux 0xeae36bdb reuseport_detach_prog +EXPORT_SYMBOL vmlinux 0xeaf5a881 __dev_get_by_name EXPORT_SYMBOL vmlinux 0xeafc141f __posix_acl_chmod -EXPORT_SYMBOL vmlinux 0xeb06ad84 dma_supported -EXPORT_SYMBOL vmlinux 0xeb1b1eed register_key_type +EXPORT_SYMBOL vmlinux 0xeb03a598 pci_bus_assign_resources +EXPORT_SYMBOL vmlinux 0xeb0c2ec0 kernel_sendmsg EXPORT_SYMBOL vmlinux 0xeb233a45 __kmalloc -EXPORT_SYMBOL vmlinux 0xeb2bc5d2 pskb_trim_rcsum_slow -EXPORT_SYMBOL vmlinux 0xeb2bfea5 vfs_ioctl -EXPORT_SYMBOL vmlinux 0xeb2fa7c6 tcp_v4_md5_hash_skb EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end -EXPORT_SYMBOL vmlinux 0xeb3e5b69 __ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0xeb39cf72 ip6_dst_alloc +EXPORT_SYMBOL vmlinux 0xeb4002f2 __sk_mem_reclaim EXPORT_SYMBOL vmlinux 0xeb44339a free_pages_exact -EXPORT_SYMBOL vmlinux 0xeb4d2c9f filemap_flush -EXPORT_SYMBOL vmlinux 0xeb65831c fb_get_buffer_offset +EXPORT_SYMBOL vmlinux 0xeb4682ae single_open +EXPORT_SYMBOL vmlinux 0xeb46dfb4 __pagevec_release +EXPORT_SYMBOL vmlinux 0xeb575c7f vfs_iter_write +EXPORT_SYMBOL vmlinux 0xeb6393d7 fwnode_get_phy_id +EXPORT_SYMBOL vmlinux 0xeb809b27 seg6_hmac_validate_skb +EXPORT_SYMBOL vmlinux 0xeb8b73a4 config_group_init_type_name EXPORT_SYMBOL vmlinux 0xeb8c7b7b cxl_use_count EXPORT_SYMBOL vmlinux 0xeb8f2d4f __pmd_frag_size_shift EXPORT_SYMBOL vmlinux 0xeb9e913d sgl_alloc_order EXPORT_SYMBOL vmlinux 0xeb9eef52 match_uint EXPORT_SYMBOL vmlinux 0xeba2a1f7 rtas_indicator_present -EXPORT_SYMBOL vmlinux 0xebbf8ad1 ndo_dflt_fdb_dump -EXPORT_SYMBOL vmlinux 0xebc1c1ef dm_put_device +EXPORT_SYMBOL vmlinux 0xebaf248a fscrypt_encrypt_pagecache_blocks EXPORT_SYMBOL vmlinux 0xebd32cdd dma_fence_get_status -EXPORT_SYMBOL vmlinux 0xebd656ad __scsi_iterate_devices -EXPORT_SYMBOL vmlinux 0xebdb15ea rproc_mem_entry_init -EXPORT_SYMBOL vmlinux 0xebf5ce14 tcp_get_md5sig_pool -EXPORT_SYMBOL vmlinux 0xec0635df ip6_fraglist_prepare -EXPORT_SYMBOL vmlinux 0xec120d5d mmc_gpio_get_cd -EXPORT_SYMBOL vmlinux 0xec12a73d __post_watch_notification -EXPORT_SYMBOL vmlinux 0xec14b821 scsi_is_sdev_device +EXPORT_SYMBOL vmlinux 0xebe6f52d vfs_fadvise +EXPORT_SYMBOL vmlinux 0xebebc163 msi_bitmap_alloc_hwirqs +EXPORT_SYMBOL vmlinux 0xebff382f tcp_sync_mss +EXPORT_SYMBOL vmlinux 0xec00899b netdev_lower_get_first_private_rcu +EXPORT_SYMBOL vmlinux 0xec17d96d ndo_dflt_fdb_del EXPORT_SYMBOL vmlinux 0xec1b39bc set_security_override +EXPORT_SYMBOL vmlinux 0xec1fff57 put_cmsg +EXPORT_SYMBOL vmlinux 0xec2b84b4 xfrm_state_walk_done +EXPORT_SYMBOL vmlinux 0xec306dd2 inode_add_bytes +EXPORT_SYMBOL vmlinux 0xec309951 agp_backend_release EXPORT_SYMBOL vmlinux 0xec33c668 __SCK__tp_func_spi_transfer_start -EXPORT_SYMBOL vmlinux 0xec3a84c1 sock_wmalloc -EXPORT_SYMBOL vmlinux 0xec40317f nd_region_release_lane -EXPORT_SYMBOL vmlinux 0xec40aa3b __tcp_md5_do_lookup -EXPORT_SYMBOL vmlinux 0xec441b90 ndisc_mc_map +EXPORT_SYMBOL vmlinux 0xec42b793 mnt_drop_write_file EXPORT_SYMBOL vmlinux 0xec4d9e3a clk_get_sys EXPORT_SYMBOL vmlinux 0xec4fb493 remove_wait_queue -EXPORT_SYMBOL vmlinux 0xec5122ab vme_register_bridge -EXPORT_SYMBOL vmlinux 0xec625d0e vfs_parse_fs_param -EXPORT_SYMBOL vmlinux 0xec78a3ea tcf_get_next_proto -EXPORT_SYMBOL vmlinux 0xec8adcd1 bdi_register -EXPORT_SYMBOL vmlinux 0xec8b49ba inet_proto_csum_replace16 -EXPORT_SYMBOL vmlinux 0xec8e2f29 of_device_register +EXPORT_SYMBOL vmlinux 0xec572792 tty_port_init +EXPORT_SYMBOL vmlinux 0xec5b6807 max8998_bulk_write +EXPORT_SYMBOL vmlinux 0xec67d57e inode_init_once +EXPORT_SYMBOL vmlinux 0xec68c968 seq_printf +EXPORT_SYMBOL vmlinux 0xec85d8de pci_enable_msix_range +EXPORT_SYMBOL vmlinux 0xec8d2bd5 dm_kobject_release EXPORT_SYMBOL vmlinux 0xec97ead8 __kernel_io_start -EXPORT_SYMBOL vmlinux 0xecb748ef pci_release_region +EXPORT_SYMBOL vmlinux 0xeca793e7 skb_mac_gso_segment +EXPORT_SYMBOL vmlinux 0xecb2c104 dm_unregister_target EXPORT_SYMBOL vmlinux 0xecbb926f xor_altivec_3 -EXPORT_SYMBOL vmlinux 0xecdc22c0 put_fs_context EXPORT_SYMBOL vmlinux 0xece784c2 rb_first -EXPORT_SYMBOL vmlinux 0xecf91c58 alloc_anon_inode -EXPORT_SYMBOL vmlinux 0xed279648 skb_abort_seq_read -EXPORT_SYMBOL vmlinux 0xed2ec19d tcf_exts_num_actions -EXPORT_SYMBOL vmlinux 0xed402d3e pcie_set_readrq -EXPORT_SYMBOL vmlinux 0xed42dd2f scsi_report_device_reset +EXPORT_SYMBOL vmlinux 0xed46ba71 build_skb EXPORT_SYMBOL vmlinux 0xed5376c5 __printk_wait_on_cpu_lock -EXPORT_SYMBOL vmlinux 0xed54704c ip_sock_set_tos +EXPORT_SYMBOL vmlinux 0xed617750 ps2_begin_command +EXPORT_SYMBOL vmlinux 0xed653065 devm_mfd_add_devices EXPORT_SYMBOL vmlinux 0xed656e30 udp_encap_disable -EXPORT_SYMBOL vmlinux 0xed81b418 skb_pull -EXPORT_SYMBOL vmlinux 0xed91d139 __sock_create +EXPORT_SYMBOL vmlinux 0xed716272 tcp_connect +EXPORT_SYMBOL vmlinux 0xed85bc30 inode_update_time +EXPORT_SYMBOL vmlinux 0xed85e90a forget_all_cached_acls +EXPORT_SYMBOL vmlinux 0xed86ddf4 sock_set_sndtimeo +EXPORT_SYMBOL vmlinux 0xed9d6a28 pci_clear_mwi +EXPORT_SYMBOL vmlinux 0xeda05e06 pci_alloc_irq_vectors_affinity +EXPORT_SYMBOL vmlinux 0xedb47f89 inet_bind EXPORT_SYMBOL vmlinux 0xedb5b8f5 unix_gc_lock +EXPORT_SYMBOL vmlinux 0xedba452c phy_register_fixup EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp EXPORT_SYMBOL vmlinux 0xedc03953 iounmap -EXPORT_SYMBOL vmlinux 0xedcce721 of_get_compatible_child -EXPORT_SYMBOL vmlinux 0xede3ff58 vm_insert_pages -EXPORT_SYMBOL vmlinux 0xedf44af3 devfreq_remove_device -EXPORT_SYMBOL vmlinux 0xee11e0c5 dev_mc_del -EXPORT_SYMBOL vmlinux 0xee208614 jbd2_journal_start_commit +EXPORT_SYMBOL vmlinux 0xedd22cfb pci_unmap_rom +EXPORT_SYMBOL vmlinux 0xedd86983 vif_device_init +EXPORT_SYMBOL vmlinux 0xedefd1ac rproc_elf_find_loaded_rsc_table +EXPORT_SYMBOL vmlinux 0xedf65421 pci_iomap +EXPORT_SYMBOL vmlinux 0xee169aa6 __scsi_print_sense EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable -EXPORT_SYMBOL vmlinux 0xee330f52 __dev_remove_pack -EXPORT_SYMBOL vmlinux 0xee39f8dd passthru_features_check -EXPORT_SYMBOL vmlinux 0xee48c7f2 blkdev_get_by_path -EXPORT_SYMBOL vmlinux 0xee49905c dm_io -EXPORT_SYMBOL vmlinux 0xee49bd69 sk_ns_capable +EXPORT_SYMBOL vmlinux 0xee2e92f9 of_mdiobus_register +EXPORT_SYMBOL vmlinux 0xee358acc sock_no_sendmsg +EXPORT_SYMBOL vmlinux 0xee4569f3 cad_pid EXPORT_SYMBOL vmlinux 0xee58e970 fb_add_videomode -EXPORT_SYMBOL vmlinux 0xee5a44c0 jbd2_journal_update_sb_errno -EXPORT_SYMBOL vmlinux 0xee64565d blk_dump_rq_flags +EXPORT_SYMBOL vmlinux 0xee6e39f5 inet_dev_addr_type +EXPORT_SYMBOL vmlinux 0xee76f70c mr_table_alloc EXPORT_SYMBOL vmlinux 0xee8c02e9 vprintk_emit EXPORT_SYMBOL vmlinux 0xee8d74d6 jiffies64_to_nsecs EXPORT_SYMBOL vmlinux 0xee8ef74e down_read_killable EXPORT_SYMBOL vmlinux 0xee91879b rb_first_postorder -EXPORT_SYMBOL vmlinux 0xee936139 __bio_clone_fast -EXPORT_SYMBOL vmlinux 0xeea20377 cpufreq_get_policy -EXPORT_SYMBOL vmlinux 0xeea91540 tcp_check_req +EXPORT_SYMBOL vmlinux 0xee970a20 devm_iounmap +EXPORT_SYMBOL vmlinux 0xeea71839 register_netdev EXPORT_SYMBOL vmlinux 0xeea9dbaf bitmap_bitremap -EXPORT_SYMBOL vmlinux 0xeeada958 blk_mq_tagset_busy_iter -EXPORT_SYMBOL vmlinux 0xeec0b5c0 framebuffer_release -EXPORT_SYMBOL vmlinux 0xeed4f768 blk_queue_update_dma_pad +EXPORT_SYMBOL vmlinux 0xeeb047d8 ipv6_dev_mc_inc +EXPORT_SYMBOL vmlinux 0xeec21e00 dqput EXPORT_SYMBOL vmlinux 0xeed5bcca __pud_table_size -EXPORT_SYMBOL vmlinux 0xeee61888 phy_read_paged EXPORT_SYMBOL vmlinux 0xeee75d91 ucc_fast_init -EXPORT_SYMBOL vmlinux 0xeeeaf9e9 __skb_wait_for_more_packets EXPORT_SYMBOL vmlinux 0xeeff2850 refcount_dec_and_lock -EXPORT_SYMBOL vmlinux 0xef02a627 param_ops_uint -EXPORT_SYMBOL vmlinux 0xef30af0c jbd2_journal_init_dev -EXPORT_SYMBOL vmlinux 0xef478772 nd_dax_probe -EXPORT_SYMBOL vmlinux 0xef5fb4c9 unpin_user_pages -EXPORT_SYMBOL vmlinux 0xef64f928 security_inet_conn_request -EXPORT_SYMBOL vmlinux 0xef68f3e1 vfs_iter_write +EXPORT_SYMBOL vmlinux 0xef1b5467 blk_queue_max_segment_size +EXPORT_SYMBOL vmlinux 0xef419975 ps2_cmd_aborted +EXPORT_SYMBOL vmlinux 0xef4605da iov_iter_init +EXPORT_SYMBOL vmlinux 0xef51af3a param_get_ulong +EXPORT_SYMBOL vmlinux 0xef71598b generic_remap_file_range_prep EXPORT_SYMBOL vmlinux 0xef71a22c wait_for_completion_interruptible -EXPORT_SYMBOL vmlinux 0xef78ecd5 trace_event_printf -EXPORT_SYMBOL vmlinux 0xef872b45 of_device_alloc -EXPORT_SYMBOL vmlinux 0xefaa484e vfs_fadvise +EXPORT_SYMBOL vmlinux 0xef72febf of_graph_is_present +EXPORT_SYMBOL vmlinux 0xef772dab jbd2_journal_free_reserved +EXPORT_SYMBOL vmlinux 0xef7aa44c __inc_node_page_state +EXPORT_SYMBOL vmlinux 0xef97efeb trace_event_printf EXPORT_SYMBOL vmlinux 0xefaf2e4f tcf_queue_work -EXPORT_SYMBOL vmlinux 0xefbc169b pci_scan_slot -EXPORT_SYMBOL vmlinux 0xefd59167 pm8606_osc_disable -EXPORT_SYMBOL vmlinux 0xefde710c mdiobus_scan +EXPORT_SYMBOL vmlinux 0xefc54368 configfs_unregister_default_group +EXPORT_SYMBOL vmlinux 0xefc6200d vmf_insert_mixed_prot +EXPORT_SYMBOL vmlinux 0xefdd41c1 dma_unmap_sg_attrs +EXPORT_SYMBOL vmlinux 0xefecbea5 jbd2_journal_init_dev EXPORT_SYMBOL vmlinux 0xefeefc09 __SCK__tp_func_dma_fence_emit -EXPORT_SYMBOL vmlinux 0xeffcb55d noop_llseek +EXPORT_SYMBOL vmlinux 0xeff6d1ff configfs_register_subsystem EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list EXPORT_SYMBOL vmlinux 0xf008a885 seg6_hmac_init -EXPORT_SYMBOL vmlinux 0xf0154ee2 security_sctp_bind_connect -EXPORT_SYMBOL vmlinux 0xf02daa4b pci_get_subsys -EXPORT_SYMBOL vmlinux 0xf03147dd security_path_rename +EXPORT_SYMBOL vmlinux 0xf01250d7 pci_wake_from_d3 +EXPORT_SYMBOL vmlinux 0xf01bd5f3 pid_task EXPORT_SYMBOL vmlinux 0xf0329ad1 down_read_trylock -EXPORT_SYMBOL vmlinux 0xf04f309f vme_dma_list_add -EXPORT_SYMBOL vmlinux 0xf053eeed tcp_v4_conn_request -EXPORT_SYMBOL vmlinux 0xf06067bc tcf_block_put -EXPORT_SYMBOL vmlinux 0xf06cdffd __invalidate_device +EXPORT_SYMBOL vmlinux 0xf0390dba tcf_chain_put_by_act +EXPORT_SYMBOL vmlinux 0xf04701e9 pneigh_lookup +EXPORT_SYMBOL vmlinux 0xf06ba6d9 elevator_alloc +EXPORT_SYMBOL vmlinux 0xf06bd9be configfs_depend_item_unlocked EXPORT_SYMBOL vmlinux 0xf07350bd proc_dointvec_ms_jiffies -EXPORT_SYMBOL vmlinux 0xf073f9b3 blk_put_request -EXPORT_SYMBOL vmlinux 0xf07a9ede xfrm_trans_queue_net +EXPORT_SYMBOL vmlinux 0xf076dedc unregister_quota_format +EXPORT_SYMBOL vmlinux 0xf07a3654 seg6_hmac_info_add +EXPORT_SYMBOL vmlinux 0xf07b4bbf skb_vlan_untag EXPORT_SYMBOL vmlinux 0xf07fe9a0 lockref_put_or_lock -EXPORT_SYMBOL vmlinux 0xf08ed4ce ata_dev_printk +EXPORT_SYMBOL vmlinux 0xf089c1c2 xfrm4_rcv +EXPORT_SYMBOL vmlinux 0xf0936216 jbd2_journal_force_commit_nested EXPORT_SYMBOL vmlinux 0xf09b5d9a get_zeroed_page -EXPORT_SYMBOL vmlinux 0xf0af281e dev_set_allmulti -EXPORT_SYMBOL vmlinux 0xf0c5e33d of_parse_phandle_with_args -EXPORT_SYMBOL vmlinux 0xf0d53333 ipmr_rule_default -EXPORT_SYMBOL vmlinux 0xf0defe3a dma_unmap_sg_attrs -EXPORT_SYMBOL vmlinux 0xf0e1886e vm_map_ram -EXPORT_SYMBOL vmlinux 0xf0fd319f fscrypt_decrypt_bio -EXPORT_SYMBOL vmlinux 0xf1019842 pagecache_write_end +EXPORT_SYMBOL vmlinux 0xf0a772e6 dump_emit +EXPORT_SYMBOL vmlinux 0xf0d4a244 __SetPageMovable +EXPORT_SYMBOL vmlinux 0xf0ef74ab fscrypt_ioctl_set_policy EXPORT_SYMBOL vmlinux 0xf102033e slhc_remember -EXPORT_SYMBOL vmlinux 0xf1064d0b __traceiter_module_get -EXPORT_SYMBOL vmlinux 0xf107b92c devm_of_mdiobus_register +EXPORT_SYMBOL vmlinux 0xf1056a23 dev_queue_xmit +EXPORT_SYMBOL vmlinux 0xf105ca2e phy_stop +EXPORT_SYMBOL vmlinux 0xf10d1bd9 phy_print_status EXPORT_SYMBOL vmlinux 0xf110d1cb pseries_enable_reloc_on_exc -EXPORT_SYMBOL vmlinux 0xf116fc87 pci_iounmap EXPORT_SYMBOL vmlinux 0xf11dd46e _page_poisoning_enabled_early -EXPORT_SYMBOL vmlinux 0xf11f11d1 vfs_iocb_iter_write +EXPORT_SYMBOL vmlinux 0xf12fa44b phy_device_free EXPORT_SYMBOL vmlinux 0xf1349228 swake_up_locked -EXPORT_SYMBOL vmlinux 0xf148fe41 netdev_name_node_alt_destroy -EXPORT_SYMBOL vmlinux 0xf14b2a02 ip6_err_gen_icmpv6_unreach -EXPORT_SYMBOL vmlinux 0xf15f26ab kset_register -EXPORT_SYMBOL vmlinux 0xf18ba002 mipi_dsi_set_maximum_return_packet_size -EXPORT_SYMBOL vmlinux 0xf1940a7b tso_build_hdr -EXPORT_SYMBOL vmlinux 0xf195aaad touch_atime +EXPORT_SYMBOL vmlinux 0xf1392409 __blk_mq_end_request +EXPORT_SYMBOL vmlinux 0xf1483ee9 security_sb_set_mnt_opts +EXPORT_SYMBOL vmlinux 0xf16da362 seq_hex_dump EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps EXPORT_SYMBOL vmlinux 0xf1969a8e __usecs_to_jiffies -EXPORT_SYMBOL vmlinux 0xf1999066 kill_litter_super -EXPORT_SYMBOL vmlinux 0xf1a3fc7b get_thermal_instance -EXPORT_SYMBOL vmlinux 0xf1a9e51d dquot_commit -EXPORT_SYMBOL vmlinux 0xf1ab1163 vlan_vids_add_by_dev -EXPORT_SYMBOL vmlinux 0xf1bf10f2 param_set_bool -EXPORT_SYMBOL vmlinux 0xf1c6af7d __ClearPageMovable +EXPORT_SYMBOL vmlinux 0xf19a0246 sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0xf1b9b086 register_key_type +EXPORT_SYMBOL vmlinux 0xf1c047a3 __mmc_claim_host +EXPORT_SYMBOL vmlinux 0xf1c200a8 udp_seq_stop +EXPORT_SYMBOL vmlinux 0xf1c683ea mmc_can_trim EXPORT_SYMBOL vmlinux 0xf1d18e90 _outsw_ns EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy EXPORT_SYMBOL vmlinux 0xf1e046cc panic +EXPORT_SYMBOL vmlinux 0xf1e34cf4 __netdev_notify_peers +EXPORT_SYMBOL vmlinux 0xf1e7d63f scsi_eh_restore_cmnd EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun -EXPORT_SYMBOL vmlinux 0xf1f125be load_nls_default -EXPORT_SYMBOL vmlinux 0xf1f930b1 __scsi_device_lookup -EXPORT_SYMBOL vmlinux 0xf2206929 phy_ethtool_nway_reset -EXPORT_SYMBOL vmlinux 0xf2382f41 genphy_config_eee_advert -EXPORT_SYMBOL vmlinux 0xf23da2f3 add_to_page_cache_locked +EXPORT_SYMBOL vmlinux 0xf21248d4 __dev_kfree_skb_any EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in EXPORT_SYMBOL vmlinux 0xf241461f __xa_insert +EXPORT_SYMBOL vmlinux 0xf2474860 ip6_route_me_harder +EXPORT_SYMBOL vmlinux 0xf2495bcb phy_support_asym_pause +EXPORT_SYMBOL vmlinux 0xf24b09d7 kmem_cache_destroy +EXPORT_SYMBOL vmlinux 0xf2529a87 vmf_insert_mixed +EXPORT_SYMBOL vmlinux 0xf255c16c mini_qdisc_pair_swap +EXPORT_SYMBOL vmlinux 0xf2822559 skb_kill_datagram EXPORT_SYMBOL vmlinux 0xf28404cf devlink_dpipe_header_ipv6 -EXPORT_SYMBOL vmlinux 0xf28bbb5a pci_set_power_state EXPORT_SYMBOL vmlinux 0xf28cf0ae __hw_addr_init -EXPORT_SYMBOL vmlinux 0xf293674c __module_put_and_exit +EXPORT_SYMBOL vmlinux 0xf29da959 setattr_copy EXPORT_SYMBOL vmlinux 0xf29f8515 __kfifo_dma_out_prepare_r -EXPORT_SYMBOL vmlinux 0xf29fe343 vio_cmo_set_dev_desired -EXPORT_SYMBOL vmlinux 0xf2bf0d27 skb_get_hash_perturb +EXPORT_SYMBOL vmlinux 0xf2ac3b53 tcp_mtup_init EXPORT_SYMBOL vmlinux 0xf2c43f3f zlib_deflate -EXPORT_SYMBOL vmlinux 0xf2e0bec6 tcp_sock_set_keepidle EXPORT_SYMBOL vmlinux 0xf2e5bd87 security_free_mnt_opts EXPORT_SYMBOL vmlinux 0xf2f53617 memregion_free -EXPORT_SYMBOL vmlinux 0xf3016886 udp_gro_complete EXPORT_SYMBOL vmlinux 0xf3107926 sha224_update -EXPORT_SYMBOL vmlinux 0xf31295f7 ata_std_end_eh -EXPORT_SYMBOL vmlinux 0xf33f97a6 configfs_remove_default_groups +EXPORT_SYMBOL vmlinux 0xf3239e9c sock_register +EXPORT_SYMBOL vmlinux 0xf332a7a8 xfrm6_rcv +EXPORT_SYMBOL vmlinux 0xf336c5ef inet_listen EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head EXPORT_SYMBOL vmlinux 0xf34f3bc3 dma_fence_chain_walk EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier -EXPORT_SYMBOL vmlinux 0xf3587782 of_graph_get_endpoint_count -EXPORT_SYMBOL vmlinux 0xf35d58f2 tty_check_change -EXPORT_SYMBOL vmlinux 0xf3693d75 xfrm4_rcv -EXPORT_SYMBOL vmlinux 0xf373a5c9 in_dev_finish_destroy -EXPORT_SYMBOL vmlinux 0xf38fff4c devm_ioremap_resource +EXPORT_SYMBOL vmlinux 0xf35bb6d2 inet_pton_with_scope +EXPORT_SYMBOL vmlinux 0xf36539db ipv6_chk_addr_and_flags +EXPORT_SYMBOL vmlinux 0xf36e7a23 compat_ptr_ioctl EXPORT_SYMBOL vmlinux 0xf3916987 global_cursor_default -EXPORT_SYMBOL vmlinux 0xf39d0bec mini_qdisc_pair_block_init -EXPORT_SYMBOL vmlinux 0xf3a1de67 sk_stream_wait_memory +EXPORT_SYMBOL vmlinux 0xf393b23c devfreq_recommended_opp +EXPORT_SYMBOL vmlinux 0xf3981d66 rtnl_link_get_net +EXPORT_SYMBOL vmlinux 0xf39bb183 tty_hung_up_p +EXPORT_SYMBOL vmlinux 0xf3a34ba2 bio_split EXPORT_SYMBOL vmlinux 0xf3a57892 release_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0xf3afb8c3 dquot_load_quota_sb +EXPORT_SYMBOL vmlinux 0xf3b1dbda pci_unregister_driver EXPORT_SYMBOL vmlinux 0xf3b30a06 utf8version_latest -EXPORT_SYMBOL vmlinux 0xf3bbf4dd agp_generic_free_by_type -EXPORT_SYMBOL vmlinux 0xf3ddb735 set_anon_super +EXPORT_SYMBOL vmlinux 0xf3c25d1a devm_clk_release_clkdev EXPORT_SYMBOL vmlinux 0xf3e0e1df allocate_resource EXPORT_SYMBOL vmlinux 0xf3e6402e __bitmap_equal -EXPORT_SYMBOL vmlinux 0xf3f82f52 seq_put_decimal_ull -EXPORT_SYMBOL vmlinux 0xf4120cc9 dquot_destroy +EXPORT_SYMBOL vmlinux 0xf3eb92f1 rio_query_mport +EXPORT_SYMBOL vmlinux 0xf3f51ad7 blk_rq_map_kern +EXPORT_SYMBOL vmlinux 0xf42ab4b4 d_mark_dontcache EXPORT_SYMBOL vmlinux 0xf42d64ca proc_dostring -EXPORT_SYMBOL vmlinux 0xf4372297 md_wakeup_thread +EXPORT_SYMBOL vmlinux 0xf435313c sock_set_mark +EXPORT_SYMBOL vmlinux 0xf445f518 register_fib_notifier EXPORT_SYMBOL vmlinux 0xf44a904a net_ns_barrier +EXPORT_SYMBOL vmlinux 0xf451dad4 get_task_cred +EXPORT_SYMBOL vmlinux 0xf4610d9d jbd2__journal_restart +EXPORT_SYMBOL vmlinux 0xf4635e3c proc_create_single_data +EXPORT_SYMBOL vmlinux 0xf46619fe blk_post_runtime_suspend EXPORT_SYMBOL vmlinux 0xf472017a swake_up_all EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const -EXPORT_SYMBOL vmlinux 0xf48e7fda dm_unregister_target -EXPORT_SYMBOL vmlinux 0xf495a641 of_find_net_device_by_node -EXPORT_SYMBOL vmlinux 0xf49db75f mipi_dsi_host_unregister -EXPORT_SYMBOL vmlinux 0xf4a4cf78 seq_printf -EXPORT_SYMBOL vmlinux 0xf4aad4f2 pci_msi_vec_count +EXPORT_SYMBOL vmlinux 0xf48f1160 skb_eth_push EXPORT_SYMBOL vmlinux 0xf4bdbeb9 __frontswap_invalidate_area -EXPORT_SYMBOL vmlinux 0xf4d40894 d_alloc_parallel -EXPORT_SYMBOL vmlinux 0xf4d4ed9b dquot_drop -EXPORT_SYMBOL vmlinux 0xf4d711c6 __skb_warn_lro_forwarding EXPORT_SYMBOL vmlinux 0xf4db35bc stpcpy EXPORT_SYMBOL vmlinux 0xf4df0099 cred_fscmp EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock -EXPORT_SYMBOL vmlinux 0xf4f62a2b pci_bus_alloc_resource -EXPORT_SYMBOL vmlinux 0xf4f9317c jbd2_journal_begin_ordered_truncate -EXPORT_SYMBOL vmlinux 0xf5025f95 cdev_init -EXPORT_SYMBOL vmlinux 0xf5063c00 msi_bitmap_alloc_hwirqs -EXPORT_SYMBOL vmlinux 0xf50f2056 xfrm_state_register_afinfo -EXPORT_SYMBOL vmlinux 0xf5137cef sdev_disable_disk_events -EXPORT_SYMBOL vmlinux 0xf519ab7d __dec_node_page_state -EXPORT_SYMBOL vmlinux 0xf51e56cc max8998_bulk_write -EXPORT_SYMBOL vmlinux 0xf5241f25 qdisc_warn_nonwc +EXPORT_SYMBOL vmlinux 0xf5054d9a key_link +EXPORT_SYMBOL vmlinux 0xf508a82c blk_pre_runtime_suspend +EXPORT_SYMBOL vmlinux 0xf508c90e skb_queue_head +EXPORT_SYMBOL vmlinux 0xf51583a5 seq_escape_mem +EXPORT_SYMBOL vmlinux 0xf530c0cc scsi_print_result EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy EXPORT_SYMBOL vmlinux 0xf53f722e trace_print_symbols_seq +EXPORT_SYMBOL vmlinux 0xf546738b sk_stream_wait_memory EXPORT_SYMBOL vmlinux 0xf5488fd9 idr_alloc_cyclic -EXPORT_SYMBOL vmlinux 0xf556ca20 filemap_fdatawrite EXPORT_SYMBOL vmlinux 0xf55b3b3d __arch_hweight16 -EXPORT_SYMBOL vmlinux 0xf56d7846 mach_powernv -EXPORT_SYMBOL vmlinux 0xf56d9339 mach_pseries -EXPORT_SYMBOL vmlinux 0xf57e0b08 filemap_fdatawait_range -EXPORT_SYMBOL vmlinux 0xf57e76fc from_kgid_munged +EXPORT_SYMBOL vmlinux 0xf55c4235 scm_fp_dup +EXPORT_SYMBOL vmlinux 0xf56cbacf setattr_prepare EXPORT_SYMBOL vmlinux 0xf591753d nf_hooks_needed +EXPORT_SYMBOL vmlinux 0xf5990e40 __inet6_lookup_established +EXPORT_SYMBOL vmlinux 0xf59d3200 dquot_initialize_needed EXPORT_SYMBOL vmlinux 0xf5a20ed2 __genradix_prealloc EXPORT_SYMBOL vmlinux 0xf5a62ecc _memset_io -EXPORT_SYMBOL vmlinux 0xf5a68d68 mod_node_page_state -EXPORT_SYMBOL vmlinux 0xf5ac07b4 fs_param_is_enum -EXPORT_SYMBOL vmlinux 0xf5bfe77b bio_endio -EXPORT_SYMBOL vmlinux 0xf5c0e07f uart_add_one_port -EXPORT_SYMBOL vmlinux 0xf5d85e54 fwnode_mdiobus_register_phy +EXPORT_SYMBOL vmlinux 0xf5b4092f vlan_dev_vlan_id +EXPORT_SYMBOL vmlinux 0xf5b47102 tcf_qevent_init +EXPORT_SYMBOL vmlinux 0xf5b7886b vme_bus_type +EXPORT_SYMBOL vmlinux 0xf5bc4e1c clear_user_page +EXPORT_SYMBOL vmlinux 0xf5d5b3ed pci_enable_wake EXPORT_SYMBOL vmlinux 0xf5e1558d crash_shutdown_unregister +EXPORT_SYMBOL vmlinux 0xf5e4bec7 tty_insert_flip_string_fixed_flag EXPORT_SYMBOL vmlinux 0xf5e7ea40 ktime_get_coarse_ts64 -EXPORT_SYMBOL vmlinux 0xf5f1ca6b dcb_ieee_getapp_default_prio_mask +EXPORT_SYMBOL vmlinux 0xf5f07103 mipi_dsi_host_unregister +EXPORT_SYMBOL vmlinux 0xf5f3cc79 udp_gro_receive +EXPORT_SYMBOL vmlinux 0xf5fd5fc6 ip_options_rcv_srr +EXPORT_SYMBOL vmlinux 0xf611ed35 neigh_parms_release EXPORT_SYMBOL vmlinux 0xf6150d63 __xa_set_mark EXPORT_SYMBOL vmlinux 0xf62c39fe ucc_slow_graceful_stop_tx -EXPORT_SYMBOL vmlinux 0xf6363dfc rproc_elf_load_rsc_table +EXPORT_SYMBOL vmlinux 0xf63e3b7c of_find_net_device_by_node EXPORT_SYMBOL vmlinux 0xf643d104 hsiphash_4u32 -EXPORT_SYMBOL vmlinux 0xf64b194c dquot_quota_sync -EXPORT_SYMBOL vmlinux 0xf64dfb60 flow_rule_alloc -EXPORT_SYMBOL vmlinux 0xf65bf66a skb_vlan_pop -EXPORT_SYMBOL vmlinux 0xf6629403 generic_read_dir +EXPORT_SYMBOL vmlinux 0xf647c593 generic_cont_expand_simple +EXPORT_SYMBOL vmlinux 0xf64c1d7c serio_bus +EXPORT_SYMBOL vmlinux 0xf6520b73 eth_header_parse +EXPORT_SYMBOL vmlinux 0xf6644717 genl_register_family EXPORT_SYMBOL vmlinux 0xf665f74f sock_load_diag_module -EXPORT_SYMBOL vmlinux 0xf6679bec zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0xf66f565d get_thermal_instance EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier -EXPORT_SYMBOL vmlinux 0xf684e12e phy_init_hw -EXPORT_SYMBOL vmlinux 0xf695157b __register_nls -EXPORT_SYMBOL vmlinux 0xf6a05aaf dm_table_run_md_queue_async -EXPORT_SYMBOL vmlinux 0xf6ae2dc3 phy_start -EXPORT_SYMBOL vmlinux 0xf6aeb715 of_clk_get_by_name -EXPORT_SYMBOL vmlinux 0xf6b979c5 __ip_dev_find -EXPORT_SYMBOL vmlinux 0xf6ba6a0d devm_clk_hw_register_clkdev -EXPORT_SYMBOL vmlinux 0xf6c72d43 __dynamic_netdev_dbg -EXPORT_SYMBOL vmlinux 0xf6cb2cd8 wireless_send_event -EXPORT_SYMBOL vmlinux 0xf6d27276 arp_send +EXPORT_SYMBOL vmlinux 0xf68b6479 block_commit_write +EXPORT_SYMBOL vmlinux 0xf68b789d dentry_path_raw +EXPORT_SYMBOL vmlinux 0xf6a9c3bc __cleancache_invalidate_inode +EXPORT_SYMBOL vmlinux 0xf6ae8357 netdev_lower_state_changed +EXPORT_SYMBOL vmlinux 0xf6cfe716 __neigh_set_probe_once EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit -EXPORT_SYMBOL vmlinux 0xf6edb058 __blk_rq_map_sg EXPORT_SYMBOL vmlinux 0xf6f9d58d init_on_free EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor -EXPORT_SYMBOL vmlinux 0xf6fe3b82 netdev_pick_tx -EXPORT_SYMBOL vmlinux 0xf71d9b0b __kfree_skb -EXPORT_SYMBOL vmlinux 0xf7214963 cookie_ecn_ok -EXPORT_SYMBOL vmlinux 0xf72cfead ip_mc_leave_group -EXPORT_SYMBOL vmlinux 0xf73743fe pci_write_vpd +EXPORT_SYMBOL vmlinux 0xf702db8a pci_get_domain_bus_and_slot +EXPORT_SYMBOL vmlinux 0xf72e488a thermal_zone_device_critical EXPORT_SYMBOL vmlinux 0xf738d1be register_blocking_lsm_notifier -EXPORT_SYMBOL vmlinux 0xf73e1e0c fd_install -EXPORT_SYMBOL vmlinux 0xf74698ea napi_disable -EXPORT_SYMBOL vmlinux 0xf7483546 sock_no_ioctl -EXPORT_SYMBOL vmlinux 0xf755b01c send_sig -EXPORT_SYMBOL vmlinux 0xf7571288 security_inet_conn_established +EXPORT_SYMBOL vmlinux 0xf7425080 sk_stop_timer +EXPORT_SYMBOL vmlinux 0xf748ba93 migrate_vma_finalize +EXPORT_SYMBOL vmlinux 0xf76bacfc of_get_property EXPORT_SYMBOL vmlinux 0xf77337a1 hdmi_audio_infoframe_check -EXPORT_SYMBOL vmlinux 0xf78953f6 tcp_init_sock -EXPORT_SYMBOL vmlinux 0xf7909e2c netdev_rx_csum_fault -EXPORT_SYMBOL vmlinux 0xf79aab26 fs_param_is_bool -EXPORT_SYMBOL vmlinux 0xf7a0046d get_fs_type -EXPORT_SYMBOL vmlinux 0xf7a19ef7 con_is_bound -EXPORT_SYMBOL vmlinux 0xf7ac2648 clk_bulk_get -EXPORT_SYMBOL vmlinux 0xf7bd0c1c add_to_pipe +EXPORT_SYMBOL vmlinux 0xf77594f7 param_ops_byte +EXPORT_SYMBOL vmlinux 0xf79535b2 set_disk_ro +EXPORT_SYMBOL vmlinux 0xf7a54e5f udp_lib_setsockopt +EXPORT_SYMBOL vmlinux 0xf7b597bb serial8250_do_pm +EXPORT_SYMBOL vmlinux 0xf7b5d373 wireless_spy_update EXPORT_SYMBOL vmlinux 0xf7c2df39 __wake_up_bit -EXPORT_SYMBOL vmlinux 0xf7c4195e phy_ethtool_set_wol EXPORT_SYMBOL vmlinux 0xf7c48778 __tracepoint_kmalloc_node -EXPORT_SYMBOL vmlinux 0xf7cbbfe2 blk_mq_rq_cpu -EXPORT_SYMBOL vmlinux 0xf7d311b0 pps_event +EXPORT_SYMBOL vmlinux 0xf7ca2314 dev_get_phys_port_id EXPORT_SYMBOL vmlinux 0xf7d31de9 kstrtoul_from_user -EXPORT_SYMBOL vmlinux 0xf7ede578 bioset_exit +EXPORT_SYMBOL vmlinux 0xf7fde847 bio_integrity_prep +EXPORT_SYMBOL vmlinux 0xf8019a86 mntget EXPORT_SYMBOL vmlinux 0xf811e69d scsi_eh_flush_done_q +EXPORT_SYMBOL vmlinux 0xf812bf88 unregister_filesystem EXPORT_SYMBOL vmlinux 0xf812cff6 memscan EXPORT_SYMBOL vmlinux 0xf812e574 _raw_read_lock_irqsave EXPORT_SYMBOL vmlinux 0xf82abc1d isa_dma_bridge_buggy EXPORT_SYMBOL vmlinux 0xf82ec573 rb_prev -EXPORT_SYMBOL vmlinux 0xf8393ad3 page_pool_alloc_frag -EXPORT_SYMBOL vmlinux 0xf83a0011 fb_pan_display -EXPORT_SYMBOL vmlinux 0xf83a08e0 regset_get_alloc -EXPORT_SYMBOL vmlinux 0xf84a2b71 ptp_clock_index +EXPORT_SYMBOL vmlinux 0xf83542bc devm_clk_put +EXPORT_SYMBOL vmlinux 0xf848dc93 locks_lock_inode_wait +EXPORT_SYMBOL vmlinux 0xf848dcda generic_file_llseek_size EXPORT_SYMBOL vmlinux 0xf84bd6ee bpf_stats_enabled_key -EXPORT_SYMBOL vmlinux 0xf8606026 locks_init_lock -EXPORT_SYMBOL vmlinux 0xf876e11a __dquot_transfer +EXPORT_SYMBOL vmlinux 0xf854e6a3 kernel_getpeername +EXPORT_SYMBOL vmlinux 0xf8662afd radix__flush_tlb_range +EXPORT_SYMBOL vmlinux 0xf86e3b0b dquot_commit +EXPORT_SYMBOL vmlinux 0xf8806cf8 rfkill_alloc EXPORT_SYMBOL vmlinux 0xf888ca21 sg_init_table -EXPORT_SYMBOL vmlinux 0xf8894b29 nf_getsockopt -EXPORT_SYMBOL vmlinux 0xf89833b2 __dev_kfree_skb_any EXPORT_SYMBOL vmlinux 0xf8b05467 __nla_reserve -EXPORT_SYMBOL vmlinux 0xf8b3f19c elv_rb_add EXPORT_SYMBOL vmlinux 0xf8bf8e22 ZSTD_DDictWorkspaceBound -EXPORT_SYMBOL vmlinux 0xf8cfaa2d pci_request_regions_exclusive +EXPORT_SYMBOL vmlinux 0xf8c55173 tcf_em_tree_dump +EXPORT_SYMBOL vmlinux 0xf8ce1fd0 kernel_sendpage_locked EXPORT_SYMBOL vmlinux 0xf8d07858 bitmap_from_arr32 EXPORT_SYMBOL vmlinux 0xf8e1115e _outsl_ns -EXPORT_SYMBOL vmlinux 0xf8e346d1 bmap -EXPORT_SYMBOL vmlinux 0xf8f166f3 phy_do_ioctl +EXPORT_SYMBOL vmlinux 0xf8e53b6f set_page_dirty_lock +EXPORT_SYMBOL vmlinux 0xf8e76e6c give_up_console EXPORT_SYMBOL vmlinux 0xf8f61ebc wake_up_var -EXPORT_SYMBOL vmlinux 0xf919da21 inet6_del_offload -EXPORT_SYMBOL vmlinux 0xf9265f34 dst_release_immediate +EXPORT_SYMBOL vmlinux 0xf8f7b8c2 dquot_quota_sync +EXPORT_SYMBOL vmlinux 0xf8fef1ad __test_set_page_writeback +EXPORT_SYMBOL vmlinux 0xf90f909e proc_symlink +EXPORT_SYMBOL vmlinux 0xf91dbed8 fs_param_is_s32 +EXPORT_SYMBOL vmlinux 0xf937fd5c blackhole_netdev EXPORT_SYMBOL vmlinux 0xf93fd09c fb_find_mode_cvt +EXPORT_SYMBOL vmlinux 0xf9421f3f fqdir_exit +EXPORT_SYMBOL vmlinux 0xf944413f PageMovable +EXPORT_SYMBOL vmlinux 0xf94467d6 d_path +EXPORT_SYMBOL vmlinux 0xf948066d fs_param_is_blockdev +EXPORT_SYMBOL vmlinux 0xf950f43a agp_create_memory EXPORT_SYMBOL vmlinux 0xf971cea8 utf8len EXPORT_SYMBOL vmlinux 0xf9722676 twl_i2c_write -EXPORT_SYMBOL vmlinux 0xf973e204 of_find_device_by_node -EXPORT_SYMBOL vmlinux 0xf9815fa9 ps2_sendbyte -EXPORT_SYMBOL vmlinux 0xf995a8f8 inet_shutdown EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep -EXPORT_SYMBOL vmlinux 0xf9a892c8 fs_param_is_fd -EXPORT_SYMBOL vmlinux 0xf9adb9a5 phy_error +EXPORT_SYMBOL vmlinux 0xf9a75863 locks_init_lock EXPORT_SYMBOL vmlinux 0xf9b1cdcd smp_call_function_many -EXPORT_SYMBOL vmlinux 0xf9b8ab7d inet_del_protocol +EXPORT_SYMBOL vmlinux 0xf9bbae9e brioctl_set EXPORT_SYMBOL vmlinux 0xf9c0b663 strlcat +EXPORT_SYMBOL vmlinux 0xf9c771b6 sock_recv_errqueue +EXPORT_SYMBOL vmlinux 0xf9c9595b inode_init_always +EXPORT_SYMBOL vmlinux 0xf9c9e0c0 serio_unregister_port EXPORT_SYMBOL vmlinux 0xf9ca2eb4 kstrtoint_from_user -EXPORT_SYMBOL vmlinux 0xf9d84c33 d_obtain_alias -EXPORT_SYMBOL vmlinux 0xf9e535e4 jbd2_journal_start -EXPORT_SYMBOL vmlinux 0xf9eb98fe sg_miter_stop EXPORT_SYMBOL vmlinux 0xf9f3696e __cpuhp_setup_state_cpuslocked +EXPORT_SYMBOL vmlinux 0xf9fa2c0d touch_buffer EXPORT_SYMBOL vmlinux 0xfa08c34a page_offline_end +EXPORT_SYMBOL vmlinux 0xfa1fd73e has_capability +EXPORT_SYMBOL vmlinux 0xfa234740 scsi_mode_sense +EXPORT_SYMBOL vmlinux 0xfa24ac0f netif_rx +EXPORT_SYMBOL vmlinux 0xfa2a8961 __skb_try_recv_datagram EXPORT_SYMBOL vmlinux 0xfa2e5f32 i2c_smbus_pec -EXPORT_SYMBOL vmlinux 0xfa449285 set_bdi_congested -EXPORT_SYMBOL vmlinux 0xfa49b1bf __sk_mem_reduce_allocated -EXPORT_SYMBOL vmlinux 0xfa4ad3f4 kmem_cache_size -EXPORT_SYMBOL vmlinux 0xfa4d68d9 inet_csk_reqsk_queue_add -EXPORT_SYMBOL vmlinux 0xfa581d3a call_fib_notifiers +EXPORT_SYMBOL vmlinux 0xfa415902 __task_pid_nr_ns EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier -EXPORT_SYMBOL vmlinux 0xfa6f56ba neigh_lookup -EXPORT_SYMBOL vmlinux 0xfa765c9a input_mt_destroy_slots +EXPORT_SYMBOL vmlinux 0xfa704727 get_user_pages_remote +EXPORT_SYMBOL vmlinux 0xfa73aed5 tcp_md5_do_add +EXPORT_SYMBOL vmlinux 0xfa7657f4 dev_set_mtu +EXPORT_SYMBOL vmlinux 0xfa76c8fc tcp_sock_set_quickack +EXPORT_SYMBOL vmlinux 0xfa7d0afb bio_add_pc_page +EXPORT_SYMBOL vmlinux 0xfa84bd71 ip_mc_inc_group EXPORT_SYMBOL vmlinux 0xfa873ad0 prandom_seed -EXPORT_SYMBOL vmlinux 0xfa989c78 migrate_vma_finalize +EXPORT_SYMBOL vmlinux 0xfa8d15e1 dev_pre_changeaddr_notify +EXPORT_SYMBOL vmlinux 0xfa940f30 agp_bind_memory EXPORT_SYMBOL vmlinux 0xfa9c2ece _raw_read_trylock +EXPORT_SYMBOL vmlinux 0xfa9e3ab8 fb_blank +EXPORT_SYMBOL vmlinux 0xfaa13c3c dev_set_threaded EXPORT_SYMBOL vmlinux 0xfaaa12d0 _page_poisoning_enabled -EXPORT_SYMBOL vmlinux 0xfab5076d migrate_page_copy -EXPORT_SYMBOL vmlinux 0xfab77bd5 flow_rule_match_vlan -EXPORT_SYMBOL vmlinux 0xfabb5aec inet_csk_prepare_forced_close +EXPORT_SYMBOL vmlinux 0xfaadb821 dma_supported +EXPORT_SYMBOL vmlinux 0xfaaf2574 phy_modify_paged_changed EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max -EXPORT_SYMBOL vmlinux 0xfae0ce13 devfreq_add_governor -EXPORT_SYMBOL vmlinux 0xfae320ec of_get_cpu_node -EXPORT_SYMBOL vmlinux 0xfaf4bb0a neigh_sysctl_register -EXPORT_SYMBOL vmlinux 0xfb118e8f __skb_checksum +EXPORT_SYMBOL vmlinux 0xfb0243e4 tc_setup_flow_action +EXPORT_SYMBOL vmlinux 0xfb19ad19 iter_file_splice_write +EXPORT_SYMBOL vmlinux 0xfb1cfa65 i2c_verify_adapter EXPORT_SYMBOL vmlinux 0xfb232c7e idr_get_next_ul -EXPORT_SYMBOL vmlinux 0xfb2cce7a scsi_host_get +EXPORT_SYMBOL vmlinux 0xfb2eec4f register_md_personality +EXPORT_SYMBOL vmlinux 0xfb348fea fault_in_safe_writeable EXPORT_SYMBOL vmlinux 0xfb384d37 kasprintf -EXPORT_SYMBOL vmlinux 0xfb404234 max8925_reg_write EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending -EXPORT_SYMBOL vmlinux 0xfb6f67d0 key_reject_and_link -EXPORT_SYMBOL vmlinux 0xfb758555 jbd2_journal_submit_inode_data_buffers -EXPORT_SYMBOL vmlinux 0xfb7c7d26 kobject_get_unless_zero -EXPORT_SYMBOL vmlinux 0xfb935dd1 mmc_detect_card_removed -EXPORT_SYMBOL vmlinux 0xfb97c6eb sock_recv_errqueue -EXPORT_SYMBOL vmlinux 0xfb9a132f phy_read_mmd +EXPORT_SYMBOL vmlinux 0xfb81601e dev_pick_tx_cpu_id +EXPORT_SYMBOL vmlinux 0xfb88435c dev_mc_sync +EXPORT_SYMBOL vmlinux 0xfb8b6ef2 scsi_print_sense_hdr +EXPORT_SYMBOL vmlinux 0xfba44595 vfs_symlink EXPORT_SYMBOL vmlinux 0xfba7ddd2 match_u64 EXPORT_SYMBOL vmlinux 0xfbaaf01e console_lock EXPORT_SYMBOL vmlinux 0xfbab1bb1 ioread8_rep -EXPORT_SYMBOL vmlinux 0xfbabc823 bio_split EXPORT_SYMBOL vmlinux 0xfbad3cf0 scsi_normalize_sense EXPORT_SYMBOL vmlinux 0xfbb8a761 strscpy_pad -EXPORT_SYMBOL vmlinux 0xfbc36b8c napi_gro_flush EXPORT_SYMBOL vmlinux 0xfbc4f89e io_schedule_timeout -EXPORT_SYMBOL vmlinux 0xfbdf3d93 tcf_idr_check_alloc -EXPORT_SYMBOL vmlinux 0xfbdfe179 nf_log_unregister -EXPORT_SYMBOL vmlinux 0xfbecce5f genl_unregister_family -EXPORT_SYMBOL vmlinux 0xfbf6eb88 ip_tunnel_header_ops -EXPORT_SYMBOL vmlinux 0xfc07f7a3 phy_modify_paged_changed +EXPORT_SYMBOL vmlinux 0xfbdfccf2 phy_write_paged +EXPORT_SYMBOL vmlinux 0xfc06bf29 skb_copy_datagram_from_iter +EXPORT_SYMBOL vmlinux 0xfc11daf7 dma_async_device_unregister EXPORT_SYMBOL vmlinux 0xfc198352 override_creds +EXPORT_SYMBOL vmlinux 0xfc1a7b42 scsi_eh_prep_cmnd +EXPORT_SYMBOL vmlinux 0xfc1de622 of_match_node EXPORT_SYMBOL vmlinux 0xfc399557 utf8_load EXPORT_SYMBOL vmlinux 0xfc39e32f ioport_unmap -EXPORT_SYMBOL vmlinux 0xfc509abb xsk_set_rx_need_wakeup -EXPORT_SYMBOL vmlinux 0xfc75bb04 simple_fill_super -EXPORT_SYMBOL vmlinux 0xfc75ce84 __skb_ext_del -EXPORT_SYMBOL vmlinux 0xfc848a35 tty_do_resize -EXPORT_SYMBOL vmlinux 0xfc8a7e6b blkdev_put -EXPORT_SYMBOL vmlinux 0xfc986fd3 scsi_device_get -EXPORT_SYMBOL vmlinux 0xfcac0749 blk_mq_delay_run_hw_queue -EXPORT_SYMBOL vmlinux 0xfcae4f62 agp_put_bridge +EXPORT_SYMBOL vmlinux 0xfc445336 paca_ptrs +EXPORT_SYMBOL vmlinux 0xfc4b19e5 eth_validate_addr +EXPORT_SYMBOL vmlinux 0xfc5afadf skb_copy_and_csum_datagram_msg EXPORT_SYMBOL vmlinux 0xfcb27ff0 percpu_counter_sync -EXPORT_SYMBOL vmlinux 0xfcc27078 unregister_console +EXPORT_SYMBOL vmlinux 0xfcb42884 inode_insert5 +EXPORT_SYMBOL vmlinux 0xfcb50e29 netdev_lower_get_next_private_rcu +EXPORT_SYMBOL vmlinux 0xfcb593bc jbd2_trans_will_send_data_barrier EXPORT_SYMBOL vmlinux 0xfcce2f7d ucc_fast_enable EXPORT_SYMBOL vmlinux 0xfcd1819a hdmi_spd_infoframe_check -EXPORT_SYMBOL vmlinux 0xfcde337a blk_rq_append_bio +EXPORT_SYMBOL vmlinux 0xfcdee259 touchscreen_parse_properties EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq -EXPORT_SYMBOL vmlinux 0xfd217b6f alloc_file_pseudo -EXPORT_SYMBOL vmlinux 0xfd452965 try_to_writeback_inodes_sb -EXPORT_SYMBOL vmlinux 0xfd65d4fb xfrm_policy_delete -EXPORT_SYMBOL vmlinux 0xfd670187 generic_file_open -EXPORT_SYMBOL vmlinux 0xfd67f3f5 pnv_cxl_alloc_hwirq_ranges -EXPORT_SYMBOL vmlinux 0xfd78bd34 tc_cleanup_flow_action -EXPORT_SYMBOL vmlinux 0xfda5f58a jbd2_journal_wipe +EXPORT_SYMBOL vmlinux 0xfced2c6b tcp_enter_cwr +EXPORT_SYMBOL vmlinux 0xfcf1ff00 blk_mq_start_request +EXPORT_SYMBOL vmlinux 0xfd22e476 __sk_dst_check +EXPORT_SYMBOL vmlinux 0xfd2bade9 blk_integrity_register +EXPORT_SYMBOL vmlinux 0xfd2e6731 input_get_poll_interval +EXPORT_SYMBOL vmlinux 0xfd641355 nf_register_sockopt +EXPORT_SYMBOL vmlinux 0xfd66bb3d dev_mc_add_excl +EXPORT_SYMBOL vmlinux 0xfd69905e misc_deregister +EXPORT_SYMBOL vmlinux 0xfd7032d0 follow_up +EXPORT_SYMBOL vmlinux 0xfd776a42 put_cmsg_scm_timestamping +EXPORT_SYMBOL vmlinux 0xfd9de769 dev_get_stats +EXPORT_SYMBOL vmlinux 0xfda622d5 dev_get_by_name_rcu EXPORT_SYMBOL vmlinux 0xfda9581f prandom_u32 -EXPORT_SYMBOL vmlinux 0xfdb7af15 generic_delete_inode +EXPORT_SYMBOL vmlinux 0xfdaae389 debugfs_create_automount EXPORT_SYMBOL vmlinux 0xfdcc8a0e fb_find_best_display EXPORT_SYMBOL vmlinux 0xfdd4216d pcibios_align_resource EXPORT_SYMBOL vmlinux 0xfdd6bbad __wake_up -EXPORT_SYMBOL vmlinux 0xfdda92a0 mipi_dsi_driver_register_full -EXPORT_SYMBOL vmlinux 0xfde9327f pci_find_bus EXPORT_SYMBOL vmlinux 0xfded48ed enable_kernel_fp -EXPORT_SYMBOL vmlinux 0xfdf758af __mdiobus_register -EXPORT_SYMBOL vmlinux 0xfdf778bc phy_suspend EXPORT_SYMBOL vmlinux 0xfdfcdd5f __csum_partial -EXPORT_SYMBOL vmlinux 0xfe00ec4d ethtool_notify EXPORT_SYMBOL vmlinux 0xfe029963 unregister_inetaddr_notifier -EXPORT_SYMBOL vmlinux 0xfe042d59 phy_queue_state_machine -EXPORT_SYMBOL vmlinux 0xfe04a43b dget_parent EXPORT_SYMBOL vmlinux 0xfe052363 ioread64_lo_hi +EXPORT_SYMBOL vmlinux 0xfe080ef6 key_instantiate_and_link +EXPORT_SYMBOL vmlinux 0xfe12d841 proc_set_user +EXPORT_SYMBOL vmlinux 0xfe1a52e0 dquot_destroy EXPORT_SYMBOL vmlinux 0xfe1d2e94 key_create_or_update -EXPORT_SYMBOL vmlinux 0xfe2309f9 copy_string_kernel -EXPORT_SYMBOL vmlinux 0xfe27b550 i8042_remove_filter -EXPORT_SYMBOL vmlinux 0xfe335af5 blkdev_compat_ptr_ioctl -EXPORT_SYMBOL vmlinux 0xfe339f45 vlan_dev_vlan_id +EXPORT_SYMBOL vmlinux 0xfe290226 netlink_ack +EXPORT_SYMBOL vmlinux 0xfe2a904a cleancache_register_ops +EXPORT_SYMBOL vmlinux 0xfe37ba61 phy_register_fixup_for_id EXPORT_SYMBOL vmlinux 0xfe487975 init_wait_entry -EXPORT_SYMBOL vmlinux 0xfe51b01a sock_kfree_s +EXPORT_SYMBOL vmlinux 0xfe515828 param_set_ulong EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz -EXPORT_SYMBOL vmlinux 0xfe5d8464 jbd2_log_wait_commit -EXPORT_SYMBOL vmlinux 0xfe9158a6 f_setown +EXPORT_SYMBOL vmlinux 0xfe6fad61 d_set_d_op +EXPORT_SYMBOL vmlinux 0xfe7967df dev_addr_add +EXPORT_SYMBOL vmlinux 0xfe87acd1 generic_write_end EXPORT_SYMBOL vmlinux 0xfe916dc6 hex_dump_to_buffer +EXPORT_SYMBOL vmlinux 0xfe9d4069 rc5t583_ext_power_req_config +EXPORT_SYMBOL vmlinux 0xfe9feed3 filemap_fdatawrite EXPORT_SYMBOL vmlinux 0xfeb5d0aa verify_spi_info -EXPORT_SYMBOL vmlinux 0xfed229f5 of_graph_get_remote_endpoint +EXPORT_SYMBOL vmlinux 0xfec63da6 pci_bus_write_config_dword +EXPORT_SYMBOL vmlinux 0xfec9cf8a twl6040_reg_write +EXPORT_SYMBOL vmlinux 0xfed823da mipi_dsi_device_unregister 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 0xfef28ada seq_open EXPORT_SYMBOL vmlinux 0xfefcb98e vme_dma_vme_attribute +EXPORT_SYMBOL vmlinux 0xff023359 sync_file_create EXPORT_SYMBOL vmlinux 0xff1765c7 rtas_call EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start EXPORT_SYMBOL vmlinux 0xff282521 rfkill_register -EXPORT_SYMBOL vmlinux 0xff2d2f36 nf_ip_checksum -EXPORT_SYMBOL vmlinux 0xff5522eb pci_bus_read_dev_vendor_id +EXPORT_SYMBOL vmlinux 0xff2b114a eth_gro_receive +EXPORT_SYMBOL vmlinux 0xff3c350a mipi_dsi_dcs_set_tear_scanline +EXPORT_SYMBOL vmlinux 0xff3ed3ad __skb_ext_del EXPORT_SYMBOL vmlinux 0xff6878cf fb_default_cmap -EXPORT_SYMBOL vmlinux 0xff78f687 scsi_command_normalize_sense -EXPORT_SYMBOL vmlinux 0xff79dab8 input_mt_sync_frame -EXPORT_SYMBOL vmlinux 0xff8a6eaf ppc_md -EXPORT_SYMBOL vmlinux 0xff93e0cf of_platform_device_create -EXPORT_SYMBOL vmlinux 0xff9fe47c neigh_app_ns -EXPORT_SYMBOL vmlinux 0xffc6f30f skb_coalesce_rx_frag +EXPORT_SYMBOL vmlinux 0xff6dca31 generic_write_checks +EXPORT_SYMBOL vmlinux 0xff896751 phy_disconnect +EXPORT_SYMBOL vmlinux 0xff8cc1aa get_bitmap_from_slot +EXPORT_SYMBOL vmlinux 0xff951db7 vlan_uses_dev +EXPORT_SYMBOL vmlinux 0xffa037c9 unregister_cdrom +EXPORT_SYMBOL vmlinux 0xffac76d3 truncate_setsize +EXPORT_SYMBOL vmlinux 0xffb4d7a2 ppp_dev_name +EXPORT_SYMBOL vmlinux 0xffc45a68 mdio_driver_unregister EXPORT_SYMBOL vmlinux 0xffcc4ec7 tcp_bpf_bypass_getsockopt -EXPORT_SYMBOL vmlinux 0xffdf4bb1 skb_queue_purge +EXPORT_SYMBOL vmlinux 0xffd69ad3 agp_generic_alloc_user +EXPORT_SYMBOL vmlinux 0xffd9cf24 vme_irq_handler +EXPORT_SYMBOL vmlinux 0xffe10706 pci_read_vpd +EXPORT_SYMBOL vmlinux 0xffe5e4f5 mmc_command_done EXPORT_SYMBOL vmlinux 0xffe690fd udp_table -EXPORT_SYMBOL vmlinux 0xffe763c2 iget_failed -EXPORT_SYMBOL vmlinux 0xffe84450 devfreq_register_notifier -EXPORT_SYMBOL vmlinux 0xffed3a04 nf_register_queue_handler EXPORT_SYMBOL vmlinux 0xffeedf6a delayed_work_timer_fn -EXPORT_SYMBOL vmlinux 0xfffd45a5 scsi_test_unit_ready -EXPORT_SYMBOL vmlinux 0xffffa1a4 napi_schedule_prep -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x00e9f83b kvmppc_h_logical_ci_store -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x0538de34 kvmppc_ld -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x088c9f07 kvmppc_h_stuff_tce -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x08b593c3 kvm_unmap_gfn -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x0cb51426 gfn_to_page_many_atomic -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x0df89a5b kvm_put_kvm_no_destroy -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x10339fa9 kvm_vcpu_mark_page_dirty -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x1439195c kvm_map_gfn -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x150896cc kvmppc_h_logical_ci_load -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x179f4129 kvmppc_core_pending_dec -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x1887e48e kvm_vcpu_is_visible_gfn -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x192b2f99 kvm_put_kvm -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x1c858eae kvm_io_bus_get_dev -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x1ccefba8 kvm_vcpu_map -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x1ded7504 kvm_write_guest -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x2308bebd kvmppc_hv_ops -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x245a920d kvmppc_sanity_check -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x248b4f4a kvmppc_handle_load -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x26cef33c kvmppc_core_queue_data_storage +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x0196b627 kvmppc_st +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x01c684fe kvm_get_dirty_log +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x03705d27 kvm_release_page_clean +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x03af10db kvm_write_guest_offset_cached +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x04d7ee6e gfn_to_page +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x0692d5ec kvmppc_prepare_to_enter +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x0be16c37 kvm_read_guest_cached +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x0e305040 file_is_kvm +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x0ee93d9a kvm_init +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x118e30d6 kvm_set_memory_region +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x1c32b452 kvmppc_core_queue_inst_storage +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x1dba2646 kvmppc_hv_ops +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x1e870610 kvmppc_xics_rm_complete +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x21287d76 mark_page_dirty +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x23a5f1cc kvm_vcpu_read_guest +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x23f5c312 __kvm_set_memory_region EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x27046576 kvm_exit -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x280347a7 kvm_get_kvm -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x30112bf2 kvm_vcpu_read_guest_atomic -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x305f8ff3 kvm_is_visible_gfn -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x31766be6 kvm_init -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x32829b3e kvmppc_core_prepare_to_enter -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x383e2322 kvmppc_load_last_inst -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x384c0b95 file_is_kvm -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x38835ea5 kvmppc_h_put_tce_indirect -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x38a5fc79 gfn_to_pfn_prot +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x2c26e507 kvm_vcpu_gfn_to_page +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x2c64ce45 kvm_read_guest +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x2c74e531 kvmppc_handle_load +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x3630bb32 kvmppc_h_logical_ci_load EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x39fd83db halt_poll_ns_shrink +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x3b26b08a kvmppc_xics_clr_mapped +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x3c20c259 kvmppc_emulate_mmio +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x419fae7d kvm_vcpu_on_spin +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x422c8e0a kvmppc_gpa_to_pfn +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x43e79182 kvm_vcpu_mark_page_dirty EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x44c100ab __SCK__tp_func_kvm_ppc_instr EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x485cd7f6 kvm_rebooting -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x4a287a35 kvm_vcpu_kick EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x4e3fd1b4 kvm_release_pfn_clean -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x50a23174 kvmppc_core_queue_dec -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x51148c01 kvm_read_guest -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x538c0179 gfn_to_memslot -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x53cba5d3 kvm_vcpu_read_guest +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x514960b7 kvm_vcpu_read_guest_atomic +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x53d02b2e gfn_to_pfn EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x541d37b9 gfn_to_hva_memslot -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x56fdc35c kvmppc_xive_set_mapped +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x576a7bd4 vcpu_put +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x581f35d7 kvm_get_kvm +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x592b57c2 kvm_vcpu_block +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x595437cd kvmppc_ld EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x59e640c0 halt_poll_ns -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x5bbb2410 mark_page_dirty_in_slot +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x5d69fcc9 kvm_is_visible_gfn +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x5eac8fc0 kvm_write_guest_page EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x5fb8848b halt_poll_ns_grow_start -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x634ba4d5 kvmppc_set_msr -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x65b14716 kvm_write_guest_offset_cached +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x61518f8d kvm_vcpu_wake_up +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x64e7507e gfn_to_page_many_atomic +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x657f1eaa kvm_vcpu_kick +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x6586dafd kvm_clear_guest EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x66066f2a gfn_to_pfn_memslot_atomic EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x6620e750 __tracepoint_kvm_ppc_instr -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x66c8d13f kvmppc_core_queue_machine_check EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x6892e3c3 kvm_set_pfn_accessed -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x6c1d7a5b kvmppc_xive_clr_mapped -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x6c3875ab kvm_release_page_clean -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x72213f3e __kvm_set_memory_region -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x74389440 kvm_vcpu_write_guest -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x7465f570 kvm_read_guest_page -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x75fa09c7 kvmppc_xics_hcall -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x7753652b kvm_clear_guest -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x7859d7bd kvm_read_guest_cached -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x7af8efa7 kvm_vcpu_gfn_to_pfn +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x6c4a9504 kvm_io_bus_get_dev +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x7226916f kvm_get_kvm_safe +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x763905b1 gfn_to_hva +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x79f2c956 kvmppc_rtas_hcall EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x7afe324e halt_poll_ns_grow +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x7c7e94af kvm_flush_remote_tlbs EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x7c94c99a kvm_release_pfn_dirty -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x7ca06eda kvm_set_memory_region -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x7cac3eef gfn_to_page EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x7d3b3e08 __traceiter_kvm_ppc_instr +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x7dddee13 kvm_vcpu_gfn_to_pfn_atomic +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x7e6af594 kvmppc_sanity_check EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x7efc9a9f gfn_to_pfn_memslot -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x7fd33497 kvm_get_running_vcpu -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x80175948 kvm_vcpu_unmap -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x8697aecc kvmppc_xive_push_vcpu -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x86e3ada2 kvm_vcpu_gfn_to_pfn_atomic -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x8a836fb9 kvm_vcpu_gfn_to_page -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x8aeb55ab kvmppc_kvm_pv -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x8be576ab kvm_flush_remote_tlbs -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x91ba697b kvm_vcpu_gfn_to_hva -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x98277666 kvm_irq_has_notifier -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x9bc0be07 kvm_vcpu_wake_up -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x9fc1897f kvm_vcpu_yield_to +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x7fd73504 kvmppc_book3s_queue_irqprio +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x832681f8 kvmppc_h_put_tce_indirect +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x835230d9 kvm_vcpu_map +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x85bf0960 mark_page_dirty_in_slot +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x874f23f7 kvm_io_bus_write +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x8bfd9a65 kvm_map_gfn +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x9409eb1a kvm_vcpu_destroy +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x97a3a0f7 kvm_vcpu_yield_to +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x98c13c80 kvm_irq_has_notifier +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x9b9741bf gfn_to_pfn_prot +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x9df699e3 kvm_vcpu_write_guest_page +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x9e5d8bb9 kvmppc_xive_set_mapped +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xa032aced kvm_vcpu_gfn_to_pfn +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xa05dc4f5 kvmppc_load_last_inst +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xa1bc2d9e kvmppc_core_pending_dec EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xa1c4231f kvm_set_pfn_dirty -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xa6cdb2ca kvmppc_rtas_hcall -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xa6d3c17a kvmppc_handle_store -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xa76be0f5 kvm_vcpu_destroy -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xaab6e7f0 kvmppc_prepare_to_enter -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xab2cafd4 vcpu_load +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xa5d3a40f kvm_write_guest +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xa8fda77b kvm_get_running_vcpu +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xa9d626c5 kvm_unmap_gfn EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xab59d373 kvmppc_free_lpid -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xad5f69df kvm_gfn_to_hva_cache_init -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xafbb2895 kvmppc_core_queue_program -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xb302cb5d kvm_make_all_cpus_request -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xb38b06e9 kvmppc_xics_clr_mapped -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xb4f10779 kvm_write_guest_page -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xb65c9967 kvmppc_xive_pull_vcpu -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xb7149a11 kvmppc_core_dequeue_dec -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xb71e8a26 kvm_get_dirty_log -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xb9564f64 kvmppc_st -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xbe3593ef kvmppc_xive_rearm_escalation -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xbfe7be50 kvm_get_kvm_safe -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xc52ee930 kvmppc_emulate_mmio -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xc680a17f kvm_release_page_dirty +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xab7c33df kvmppc_xive_rearm_escalation +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xacdf24a2 kvmppc_core_queue_machine_check +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xaefdd50b kvmppc_xics_hcall +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xb451a005 kvmppc_handle_store +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xb54fcf9f kvmppc_set_msr +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xb5f87407 kvm_vcpu_gfn_to_hva +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xb7eeb49b kvmppc_core_queue_dec +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xb9f66dc1 kvmppc_kvm_pv +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xba42e9ba kvmppc_core_queue_data_storage +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xbace7069 gfn_to_memslot +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xbf6a6308 kvm_vcpu_unmap +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xbffcbca8 kvmppc_core_prepare_to_enter +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xc0da2c5f kvm_release_page_dirty +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xc42c58a6 kvmppc_h_put_tce EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xc70e4b59 kvmppc_claim_lpid +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xc8aedbc0 kvmppc_core_queue_program +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xc994b2c1 kvmppc_core_dequeue_dec +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xcb411c75 kvm_make_all_cpus_request EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xcc44961f kvmppc_alloc_lpid -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xd0d8d21e kvm_read_guest_offset_cached -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xd55b2b1a kvmppc_core_queue_inst_storage +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xd12f4512 kvm_put_kvm +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xd17d2890 kvmppc_xive_clr_mapped +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xd21ab6f9 kvmppc_pr_ops +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xd2624497 kvmppc_xive_xics_hcall +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xd2b51815 kvmppc_xive_push_vcpu +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xd6f70d50 kvmppc_xics_set_mapped +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xd6fcc013 kvmppc_h_stuff_tce +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xd764988d kvmppc_h_logical_ci_store EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xd8d5e0ef __gfn_to_pfn_memslot -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xdcac1077 vcpu_put -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xdff58fdc kvmppc_gpa_to_pfn -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xe12fb062 kvm_io_bus_write -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xe3e42092 kvm_vcpu_block -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xe4c5879a kvm_vcpu_read_guest_page -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xe7c80391 mark_page_dirty -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xe8245098 kvm_debugfs_dir -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xe93588f6 gfn_to_pfn -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xeb1e94cf kvmppc_h_put_tce -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xeca82e02 kvmppc_pr_ops -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xee999014 kvmppc_xics_set_mapped -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xef86517b gfn_to_hva -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xef96583a kvm_write_guest_cached -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xf031d65a kvmppc_book3s_queue_irqprio -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xf410f7f7 kvmppc_xics_rm_complete +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xdc27b75b kvm_debugfs_dir +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xdd3bb44a kvm_put_kvm_no_destroy +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xdda120f1 kvm_read_guest_offset_cached +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xdfa9f791 kvm_gfn_to_hva_cache_init +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xe08889ff kvmppc_xive_pull_vcpu +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xebae2b54 kvm_vcpu_write_guest +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xeef4a760 kvm_vcpu_read_guest_page EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xf4da3546 kvmppc_init_lpid -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xf5ef4ea7 kvmppc_xive_xics_hcall -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xf8e844e0 kvm_vcpu_on_spin -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xfccf1b3e kvm_vcpu_write_guest_page -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm-pr 0xf3b37d57 kvmppc_emulate_instruction -EXPORT_SYMBOL_GPL crypto/af_alg 0x0ef697fb af_alg_release -EXPORT_SYMBOL_GPL crypto/af_alg 0x1f8b8fb0 af_alg_wmem_wakeup -EXPORT_SYMBOL_GPL crypto/af_alg 0x2029aef1 af_alg_release_parent -EXPORT_SYMBOL_GPL crypto/af_alg 0x23a99473 af_alg_async_cb -EXPORT_SYMBOL_GPL crypto/af_alg 0x31947a3e af_alg_free_sg -EXPORT_SYMBOL_GPL crypto/af_alg 0x32cb8d45 af_alg_get_rsgl -EXPORT_SYMBOL_GPL crypto/af_alg 0x52b77f0f af_alg_wait_for_data -EXPORT_SYMBOL_GPL crypto/af_alg 0x58a24c4c af_alg_pull_tsgl -EXPORT_SYMBOL_GPL crypto/af_alg 0x613e2673 af_alg_alloc_areq -EXPORT_SYMBOL_GPL crypto/af_alg 0x63d79837 af_alg_unregister_type -EXPORT_SYMBOL_GPL crypto/af_alg 0x6872b1b4 af_alg_accept -EXPORT_SYMBOL_GPL crypto/af_alg 0x6ef7ee39 af_alg_sendmsg -EXPORT_SYMBOL_GPL crypto/af_alg 0x931f55bb af_alg_register_type -EXPORT_SYMBOL_GPL crypto/af_alg 0xd5e0738c af_alg_free_resources -EXPORT_SYMBOL_GPL crypto/af_alg 0xe3e776cb af_alg_make_sg -EXPORT_SYMBOL_GPL crypto/af_alg 0xe9ea4700 af_alg_poll -EXPORT_SYMBOL_GPL crypto/af_alg 0xf02a5d76 af_alg_count_tsgl -EXPORT_SYMBOL_GPL crypto/af_alg 0xfabe6cc0 af_alg_sendpage +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xf5f61999 kvm_write_guest_cached +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xf79749d8 kvm_read_guest_page +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xf9d90f55 vcpu_load +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xff684609 kvm_vcpu_is_visible_gfn +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm-pr 0x8c287bcd kvmppc_emulate_instruction +EXPORT_SYMBOL_GPL crypto/af_alg 0x2a0f2f8d af_alg_register_type +EXPORT_SYMBOL_GPL crypto/af_alg 0x2c161748 af_alg_sendmsg +EXPORT_SYMBOL_GPL crypto/af_alg 0x2cc0ea62 af_alg_wmem_wakeup +EXPORT_SYMBOL_GPL crypto/af_alg 0x386d7c6f af_alg_alloc_areq +EXPORT_SYMBOL_GPL crypto/af_alg 0x462bd2b6 af_alg_async_cb +EXPORT_SYMBOL_GPL crypto/af_alg 0x4c40fd3e af_alg_pull_tsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0x5f2dcf4e af_alg_unregister_type +EXPORT_SYMBOL_GPL crypto/af_alg 0x663810e8 af_alg_make_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x6f4913b7 af_alg_free_resources +EXPORT_SYMBOL_GPL crypto/af_alg 0x71ed5b6d af_alg_release_parent +EXPORT_SYMBOL_GPL crypto/af_alg 0xa242ff23 af_alg_poll +EXPORT_SYMBOL_GPL crypto/af_alg 0xa378f165 af_alg_accept +EXPORT_SYMBOL_GPL crypto/af_alg 0xa3ae845f af_alg_release +EXPORT_SYMBOL_GPL crypto/af_alg 0xa7e535d6 af_alg_wait_for_data +EXPORT_SYMBOL_GPL crypto/af_alg 0xacb02f77 af_alg_count_tsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0xc4748160 af_alg_sendpage +EXPORT_SYMBOL_GPL crypto/af_alg 0xedb0ee7c af_alg_get_rsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0xfa913b54 af_alg_free_sg +EXPORT_SYMBOL_GPL crypto/asymmetric_keys/asym_tpm 0x6b61bf5c asym_tpm_subtype EXPORT_SYMBOL_GPL crypto/asymmetric_keys/asym_tpm 0x7430f97c tpm_key_create -EXPORT_SYMBOL_GPL crypto/asymmetric_keys/asym_tpm 0x76aedbcf asym_tpm_subtype -EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0xed88f55c async_memcpy -EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x5b8bbd1f async_syndrome_val -EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0xcf8306bd async_gen_syndrome -EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x48c5a55f async_raid6_2data_recov -EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0xc7232a51 async_raid6_datap_recov -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x0d9c67e4 async_tx_submit -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x1e146e09 async_trigger_callback -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xa9e1031c async_tx_quiesce -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xb29d7456 __async_tx_find_channel -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x1131e5f8 async_xor_val -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x6da0bef6 async_xor_offs -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x732b9bab async_xor -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x8f7ef669 async_xor_val_offs +EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0x7799d843 async_memcpy +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x2833defb async_syndrome_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x2feb179e async_gen_syndrome +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x745a2f8c async_raid6_datap_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0xffaa8a81 async_raid6_2data_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x5f4ce200 async_trigger_callback +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xc807af51 __async_tx_find_channel +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xd2ac41e6 async_tx_quiesce +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xd55794ba async_tx_submit +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x14bded84 async_xor +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x2847226d async_xor_val_offs +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x319f049f async_xor_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xc9f32cdd async_xor_offs EXPORT_SYMBOL_GPL crypto/authenc 0x2479193e crypto_authenc_extractkeys -EXPORT_SYMBOL_GPL crypto/blowfish_common 0x8ca23baa blowfish_setkey +EXPORT_SYMBOL_GPL crypto/blowfish_common 0xcdd3e515 blowfish_setkey EXPORT_SYMBOL_GPL crypto/cast5_generic 0x188d9d26 __cast5_decrypt -EXPORT_SYMBOL_GPL crypto/cast5_generic 0xaf2aa8f8 cast5_setkey +EXPORT_SYMBOL_GPL crypto/cast5_generic 0xbb04ca90 cast5_setkey EXPORT_SYMBOL_GPL crypto/cast5_generic 0xef81a4af __cast5_encrypt -EXPORT_SYMBOL_GPL crypto/cast6_generic 0x1032f82b cast6_setkey +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x38205930 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 @@ -11439,85 +11447,116 @@ 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 0x2ddcfe58 cryptd_aead_queued -EXPORT_SYMBOL_GPL crypto/cryptd 0x4b437077 cryptd_free_ahash -EXPORT_SYMBOL_GPL crypto/cryptd 0x6a4aa321 cryptd_alloc_aead -EXPORT_SYMBOL_GPL crypto/cryptd 0x82002280 cryptd_skcipher_queued -EXPORT_SYMBOL_GPL crypto/cryptd 0x8e0094eb cryptd_shash_desc -EXPORT_SYMBOL_GPL crypto/cryptd 0xa6bc3314 cryptd_aead_child -EXPORT_SYMBOL_GPL crypto/cryptd 0xb3ebef64 cryptd_alloc_skcipher -EXPORT_SYMBOL_GPL crypto/cryptd 0xb4dea858 cryptd_free_skcipher -EXPORT_SYMBOL_GPL crypto/cryptd 0xcb21010e cryptd_ahash_queued -EXPORT_SYMBOL_GPL crypto/cryptd 0xd0d72cbb cryptd_alloc_ahash -EXPORT_SYMBOL_GPL crypto/cryptd 0xef036251 cryptd_skcipher_child -EXPORT_SYMBOL_GPL crypto/cryptd 0xf4e72af3 cryptd_free_aead -EXPORT_SYMBOL_GPL crypto/cryptd 0xfc1c7913 cryptd_ahash_child -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x1223ef64 crypto_finalize_aead_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x18f3728f crypto_engine_stop -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x1900d1ae crypto_engine_exit -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x32ff9186 crypto_finalize_skcipher_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x365f102b crypto_finalize_akcipher_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x3cc393b7 crypto_transfer_skcipher_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x89097b5b crypto_transfer_aead_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x90c1760b crypto_finalize_hash_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xa76900ab crypto_transfer_akcipher_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xa8a81a04 crypto_engine_start -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xc77661d1 crypto_transfer_hash_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xe1a1af32 crypto_engine_alloc_init_and_set -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xfe14320f crypto_engine_alloc_init +EXPORT_SYMBOL_GPL crypto/cryptd 0x2748a92b cryptd_aead_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0x2778d491 cryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/cryptd 0x3259cade cryptd_alloc_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0x4717bf8f cryptd_free_skcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0x55666aef cryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0x5d2f8e49 cryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x66e60f02 cryptd_free_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0x7ea8b032 cryptd_alloc_skcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0x8395a356 cryptd_skcipher_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0x888e5f82 cryptd_aead_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x99d81bdd cryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0xa5961013 cryptd_skcipher_child +EXPORT_SYMBOL_GPL crypto/cryptd 0xe243b365 cryptd_ahash_queued +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x20ec2c87 crypto_transfer_aead_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x2f164e89 crypto_engine_exit +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x46c1a37d crypto_transfer_skcipher_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x527bd176 crypto_engine_start +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x679e3cc2 crypto_transfer_akcipher_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x6920695b crypto_transfer_hash_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x6e7c5209 crypto_engine_stop +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x70391222 crypto_finalize_skcipher_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x71a2936d crypto_finalize_akcipher_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x84988435 crypto_finalize_hash_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xd53723cb crypto_engine_alloc_init +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xf1c72eab crypto_finalize_aead_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xfc50714b crypto_engine_alloc_init_and_set EXPORT_SYMBOL_GPL crypto/ecdh_generic 0x33b866ce crypto_ecdh_decode_key EXPORT_SYMBOL_GPL crypto/ecdh_generic 0x7475be8e crypto_ecdh_key_len EXPORT_SYMBOL_GPL crypto/ecdh_generic 0xb230d2ec crypto_ecdh_encode_key EXPORT_SYMBOL_GPL crypto/serpent_generic 0x4eb4c55e __serpent_encrypt -EXPORT_SYMBOL_GPL crypto/serpent_generic 0x56bf418b serpent_setkey +EXPORT_SYMBOL_GPL crypto/serpent_generic 0xb547bb21 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_generic 0x0bddca87 sm3_zero_message_hash -EXPORT_SYMBOL_GPL crypto/twofish_common 0xe200cbab twofish_setkey +EXPORT_SYMBOL_GPL crypto/twofish_common 0xc556f30b twofish_setkey EXPORT_SYMBOL_GPL crypto/twofish_common 0xe22b7787 __twofish_setkey -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x01fdea74 ahci_ops -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x0603c0d2 ahci_dev_classify -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x1660dceb ahci_reset_em -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x1d66d70a ahci_init_controller -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x1dd8d14c ahci_start_engine -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x3fabb6ce ahci_save_initial_config -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x455e771e ahci_check_ready -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x479117bf ahci_reset_controller -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x65754f53 ahci_fill_cmd_slot -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x67ab6878 ahci_start_fis_rx -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x68c3815d ahci_print_info -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x69610627 ahci_port_resume -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x70d77b58 ahci_shost_attrs -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x7da83474 ahci_set_em_messages -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x80758320 ahci_kick_engine -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x88bc63ac ahci_sdev_attrs -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x91c7ea4a ahci_stop_engine -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x99667683 ahci_do_hardreset -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xa2943096 ahci_qc_issue -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xb24b564f ahci_error_handler -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xc6af4faf ahci_do_softreset -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xceb5c1a7 ahci_pmp_retry_srst_ops -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xdb4b1911 ahci_handle_port_intr +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x0ef1d765 speakup_info +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x1e39eb14 synth_putws +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x1f52d718 spk_synth_get_index +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x3082eb5e spk_var_show +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x41a160e5 synth_buffer_empty +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x42787226 synth_add +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x4449e1dd synth_buffer_clear +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x466f5eb7 synth_putwc +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x4fd47a4b synth_remove +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x53b1cb10 spk_synth_is_alive_nop +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x6788306b spk_var_store +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x6b249f40 spk_ttyio_synth_probe +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x76d40046 synth_buffer_skip_nonlatin1 +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x7749f401 spk_do_catch_up_unicode +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x7c907b24 spk_ttyio_ops +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x7f164d1e 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 0xa6d68da7 spk_synth_flush +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xaadb0612 synth_buffer_peek +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xad2f8de9 synth_current +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xb0b33c4d spk_ttyio_synth_immediate +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xb4df4dc5 spk_synth_is_alive_restart +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xba0088e0 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 0xc6a06d16 spk_get_var +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xd8fd86cf synth_release_region +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xe194d0ef synth_printf +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xe5ceb408 spk_ttyio_release +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x097eb70f ahci_print_info +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x207b6905 ahci_reset_em +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x3954340f ahci_host_activate +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x3aefe363 ahci_port_resume +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x574371d1 ahci_check_ready +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x738a60d9 ahci_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x774ad28b ahci_set_em_messages +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x7b6cc4d4 ahci_shost_attrs +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x83cca8a5 ahci_init_controller +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x850a5419 ahci_stop_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x8a335c7b ahci_start_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x94cfcabd ahci_fill_cmd_slot +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x9d96338f ahci_do_hardreset +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xa8a46c81 ahci_qc_issue +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xaa4b2d40 ahci_pmp_retry_srst_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xaf231d6f ahci_reset_controller +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xb07dbafa ahci_kick_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xb1efcd1c ahci_error_handler +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xbb8d820b ahci_start_fis_rx +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xc5ac1157 ahci_save_initial_config +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xe8dcce63 ahci_sdev_attrs EXPORT_SYMBOL_GPL drivers/ata/libahci 0xea50dad3 ahci_ignore_sss -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xf771f3e5 ahci_host_activate -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x00019507 ahci_platform_enable_regulators -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x07ba2c5e ahci_platform_suspend -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x116dcc52 ahci_platform_enable_resources -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x43517c72 ahci_platform_ops -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x450c6750 ahci_platform_disable_regulators -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x646c6055 ahci_platform_resume_host -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x733c5a31 ahci_platform_init_host -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x88d57ff5 ahci_platform_disable_clks -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x9bad6d7e ahci_platform_suspend_host -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x9f6185d4 ahci_platform_enable_clks -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xae8ef7ac ahci_platform_shutdown -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xc323d997 ahci_platform_enable_phys -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xc3c3ee7f ahci_platform_disable_resources -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xcf4bfc3e ahci_platform_get_resources -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xd49723b6 ahci_platform_disable_phys -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xfc885573 ahci_platform_resume -EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0x04ef3dad __pata_platform_probe -EXPORT_SYMBOL_GPL drivers/ata/pata_sis 0x565bc077 sis_info133_for_sata +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xedb66f8b ahci_handle_port_intr +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xf0324c02 ahci_dev_classify +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xf2465db0 ahci_do_softreset +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x00ec7373 ahci_platform_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x0270f35c ahci_platform_suspend +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x14a60d50 ahci_platform_suspend_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x3d11a6bb ahci_platform_resume +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x4287fcbf ahci_platform_disable_phys +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x634a6224 ahci_platform_resume_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x79b883d3 ahci_platform_enable_clks +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x94f634fc ahci_platform_init_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x9893bc76 ahci_platform_enable_phys +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xa3acc31a ahci_platform_disable_clks +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xab23adf1 ahci_platform_shutdown +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xc243e091 ahci_platform_enable_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xcdceab91 ahci_platform_enable_regulators +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xddaa143f ahci_platform_disable_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xfa0a7d29 ahci_platform_get_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xfcbfcc8a ahci_platform_disable_regulators +EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0x7dd58fbd __pata_platform_probe +EXPORT_SYMBOL_GPL drivers/ata/pata_sis 0x14d5b52a 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 @@ -11545,244 +11584,244 @@ EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xbf4774db ks0108_writecontrol EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xedde6df2 ks0108_page EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xfee8ef7b ks0108_address -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-i3c 0x1627dba3 __devm_regmap_init_i3c -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0xd4c3ca21 __regmap_init_sccb -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0xe0da5226 __devm_regmap_init_sccb -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw 0x58d9596e __regmap_init_sdw -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw 0x9559e9ab __devm_regmap_init_sdw -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw-mbq 0x84275f85 __regmap_init_sdw_mbq -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw-mbq 0xdebc99e7 __devm_regmap_init_sdw_mbq -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0x3744b36d __devm_regmap_init_slimbus -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0x514b8003 __regmap_init_slimbus -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spi-avmm 0x5941e3a2 __regmap_init_spi_avmm -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spi-avmm 0xca638483 __devm_regmap_init_spi_avmm -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x3f182fa3 __regmap_init_spmi_base -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x5ba330a4 __regmap_init_spmi_ext -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xb1fab079 __devm_regmap_init_spmi_ext -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xc790d84a __devm_regmap_init_spmi_base -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0x25fe3a59 __devm_regmap_init_w1 -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0xc7a09209 __regmap_init_w1 -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x00a1cb5e bcma_chipco_gpio_outen -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x0c4083e5 bcma_pmu_get_bus_clock -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x1e79f8db bcma_pmu_spuravoid_pllupdate -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x30a3b23b bcma_chipco_chipctl_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x3bf1167f bcma_chipco_gpio_control -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x3ddc51ec bcma_chipco_gpio_out -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x4fa9701e __bcma_driver_register -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x65d01a33 bcma_chipco_b_mii_write -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x6aabacf0 bcma_core_disable -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x73d2aba3 bcma_core_is_enabled -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7bacd0a9 bcma_chipco_pll_read -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x8266133e bcma_chipco_pll_write -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x903523f1 bcma_host_pci_irq_ctl -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x91ebc670 bcma_host_pci_up -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x923aee47 bcma_chipco_regctl_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x9ba35aad bcma_core_pll_ctl -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa3fd6f2d bcma_find_core_unit -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xaa4d4e93 bcma_chipco_get_alp_clock -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc9a5eeff bcma_chipco_pll_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd6f5c0ef bcma_core_enable -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe609756c bcma_host_pci_down -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xebe079ef bcma_driver_unregister -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf2944a6f bcma_core_set_clockmode -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xfa3ef71f bcma_core_pci_power_save -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x0397fc56 btbcm_read_pcm_int_params -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x22227d86 btbcm_setup_apple -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x391fd1b7 btbcm_finalize -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x46757df3 btbcm_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x8a78f4c5 btbcm_write_pcm_int_params -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xb68d36d0 btbcm_setup_patchram -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xc726e557 btbcm_initialize -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xd1263e40 btbcm_check_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x0dbc883f btintel_enter_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x1f16b1e7 btintel_load_ddc_config -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x24f3ddb4 btintel_send_intel_reset -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x2979b692 btintel_read_version -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x384484b3 btintel_set_diag -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x39ea0ca7 btintel_read_boot_params -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x4c88dddd btintel_download_firmware -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x5d44a6c8 btintel_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x825ca1fd btintel_version_info -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x8cd0e86f btintel_secure_send_result -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x95407415 btintel_set_event_mask_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xa37a4e94 btintel_exit_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xb22d36be btintel_configure_setup -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xd60da04d btintel_bootup -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xdd71a778 btintel_check_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xe4d7fbb0 btintel_regmap_init -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x14596cf6 btmrvl_send_hscfg_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x1b679dc2 btmrvl_register_hdev -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x291d4140 btmrvl_enable_ps -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x42f527d2 btmrvl_pscan_window_reporting -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x4ee49d0f btmrvl_process_event -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x66d97733 btmrvl_enable_hs -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x9cf27487 btmrvl_send_module_cfg_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xa90efa96 btmrvl_add_card -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xb7ec47e1 btmrvl_remove_card -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xd03773b4 btmrvl_interrupt -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xd83362c4 btmrvl_check_evtpkt -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x211351b4 qca_uart_setup -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x22c98c4d qca_set_bdaddr_rome -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x66461b47 qca_read_soc_version -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xe7318452 qca_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xf21035e3 qca_send_pre_shutdown_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x000bfb38 btrtl_set_quirks -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x911a7a77 btrtl_initialize -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x9693add1 btrtl_shutdown_realtek +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-i3c 0xbb6846c0 __devm_regmap_init_i3c +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0x398ad28e __devm_regmap_init_sccb +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0x84a8090e __regmap_init_sccb +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw 0x4a936fa2 __devm_regmap_init_sdw +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw 0x8732af70 __regmap_init_sdw +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw-mbq 0x2e4e9529 __regmap_init_sdw_mbq +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw-mbq 0x617541de __devm_regmap_init_sdw_mbq +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0x11017669 __regmap_init_slimbus +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0xcabfd2e9 __devm_regmap_init_slimbus +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spi-avmm 0xd270908d __devm_regmap_init_spi_avmm +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spi-avmm 0xff588238 __regmap_init_spi_avmm +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x39301971 __regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x65db160f __devm_regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x8521b45b __devm_regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xdd44cee0 __regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0x0ad6e1be __regmap_init_w1 +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0xd0bb5cce __devm_regmap_init_w1 +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x055dee55 bcma_chipco_pll_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x1c6d275d bcma_chipco_b_mii_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x2ecc10cd bcma_chipco_pll_read +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x3be5f2b0 bcma_core_pci_power_save +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x44a3cb46 bcma_host_pci_up +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x4a745308 bcma_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x5c395626 bcma_chipco_gpio_outen +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x5f6e7fe7 bcma_core_is_enabled +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x78b94bb2 bcma_core_pll_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7e7a6d4d bcma_chipco_pll_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x94d5b45a bcma_driver_unregister +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa62efb04 bcma_chipco_chipctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xb7c8142a __bcma_driver_register +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xbc30a2b1 bcma_core_set_clockmode +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xbed5bd86 bcma_chipco_regctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc660686e bcma_chipco_gpio_out +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd88a1526 bcma_find_core_unit +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe175f41f bcma_core_disable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf2f52147 bcma_host_pci_down +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf31c5210 bcma_host_pci_irq_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf6bc5748 bcma_chipco_get_alp_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf80b48a7 bcma_core_enable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xfab6c04a bcma_chipco_gpio_control +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xffd8fca1 bcma_pmu_get_bus_clock +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x0083232f btbcm_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x4d1a9e92 btbcm_finalize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x6187a13a btbcm_setup_patchram +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x927500dc btbcm_write_pcm_int_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xb0360e12 btbcm_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xc9c7916f btbcm_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xeb3113c6 btbcm_setup_apple +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xf7e3d12f btbcm_read_pcm_int_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x41d2148c btintel_exit_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x4d861ad4 btintel_version_info +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x5a2b45ae btintel_set_diag +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x5e99ea99 btintel_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x7e0d8a3f btintel_download_firmware +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x7e9c9c96 btintel_set_event_mask_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x8507fd93 btintel_configure_setup +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x8f09eba1 btintel_enter_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x9773a096 btintel_secure_send_result +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xae81bae8 btintel_read_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xafaafe0d btintel_load_ddc_config +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xb14c0929 btintel_send_intel_reset +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xb4982970 btintel_bootup +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xd93e2a71 btintel_read_boot_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xe8cfe887 btintel_regmap_init +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xfcd85c6c btintel_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x261f7166 btmrvl_add_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x29ac94b1 btmrvl_interrupt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x2dac313c btmrvl_send_module_cfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x3d937eac btmrvl_process_event +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x542ec522 btmrvl_enable_hs +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x65af41a9 btmrvl_enable_ps +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x70b59ad7 btmrvl_pscan_window_reporting +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x9246a80a btmrvl_check_evtpkt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xab8c0ae9 btmrvl_register_hdev +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xbb14ca23 btmrvl_send_hscfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xe51bf3d9 btmrvl_remove_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x16a4f360 qca_read_soc_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x61adf0e3 qca_uart_setup +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x7e00c884 qca_send_pre_shutdown_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x89692be1 qca_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xe732abbf qca_set_bdaddr_rome +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x26be616d btrtl_shutdown_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x635e2aac btrtl_set_quirks +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x9c5c3d79 btrtl_initialize EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xaf78f260 btrtl_free -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xee7eea98 btrtl_download_firmware -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xf0c6af37 btrtl_setup_realtek -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xfde4aa9d btrtl_get_uart_settings -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0xb55394bc hci_uart_tx_wakeup -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0xf04f71c6 hci_uart_unregister_device -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0xf0e1db2c h4_recv_buf -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0xf16cc3ba hci_uart_register_device -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x03903239 mhi_soc_reset -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x0ba25574 mhi_download_rddm_image -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x1fc324cd mhi_driver_unregister -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x23b6d745 mhi_device_get_sync -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x25d57ab4 mhi_queue_skb -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x2beaead9 mhi_queue_dma -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x2fcfaadf mhi_force_rddm_mode -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x3ece65dd mhi_pm_resume -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x4e4eaf3e mhi_pm_resume_force -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x5f3b1641 mhi_prepare_for_power_up -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x743bf6dd mhi_get_exec_env -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x74af37bc mhi_poll -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x7c3a4540 __mhi_driver_register -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x7d7c4ed3 mhi_device_put -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x7eb013a3 mhi_notify -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x92229aa8 mhi_unprepare_from_transfer -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x9d1092fa mhi_register_controller -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x9f774d60 mhi_queue_buf -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xaa004ff5 mhi_alloc_controller -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xce79c217 mhi_queue_is_full -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xcf826d14 mhi_unprepare_after_power_down -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xd4cd396f mhi_unregister_controller -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xd798d6f1 mhi_free_controller -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xe121aa5c mhi_pm_suspend -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xe33fea0a mhi_async_power_up -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xea3d7ee9 mhi_device_get -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xed9cab5f mhi_get_free_desc_count -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xeebdb51d mhi_get_mhi_state -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xf2d35fc7 mhi_power_down -EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xfb0e1090 mhi_prepare_for_transfer -EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x4f2ede1e moxtet_device_write -EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x65167f0d moxtet_device_written -EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x80213c50 moxtet_device_read -EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x9873bfde __moxtet_register_driver +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xb0112d5f btrtl_get_uart_settings +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xbfc9cfe1 btrtl_setup_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xd03f838b btrtl_download_firmware +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x11e7a2af hci_uart_tx_wakeup +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x16ceb9aa h4_recv_buf +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x63b03538 hci_uart_unregister_device +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0xc941f921 hci_uart_register_device +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x06a789c1 mhi_get_free_desc_count +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x1b002dec mhi_pm_suspend +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x2536303b mhi_queue_skb +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x273a6bd4 mhi_soc_reset +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x3a5cf3b0 mhi_free_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x4090619e mhi_prepare_for_transfer +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x459fde13 mhi_unprepare_from_transfer +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x55038f05 __mhi_driver_register +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x590143c2 mhi_poll +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x5d5fd9c1 mhi_device_get_sync +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x62f14c20 mhi_unregister_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x6a0c18c0 mhi_force_rddm_mode +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x75f12c16 mhi_register_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x81e16ba8 mhi_device_put +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x8c51bb9c mhi_queue_buf +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x8f4c932c mhi_queue_dma +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x915db69b mhi_device_get +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xa5c0cfc9 mhi_unprepare_after_power_down +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xaa8457f2 mhi_driver_unregister +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xaceef4e1 mhi_notify +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xad05cb01 mhi_download_rddm_image +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xbe03e1cb mhi_queue_is_full +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xc0f09bf3 mhi_pm_resume +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xd2766ce1 mhi_alloc_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xdc41c849 mhi_async_power_up +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xeb2c07cb mhi_get_exec_env +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xee5223f8 mhi_get_mhi_state +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xee919f55 mhi_prepare_for_power_up +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xefe1a2cd mhi_pm_resume_force +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xf3227b3a mhi_power_down +EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x0850497f moxtet_device_write +EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x6b861621 moxtet_device_written +EXPORT_SYMBOL_GPL drivers/bus/moxtet 0xa163f31e moxtet_device_read +EXPORT_SYMBOL_GPL drivers/bus/moxtet 0xf8913a7d __moxtet_register_driver EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x0cd330f4 range_unknown -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x150f9ef4 comedi_nscans_left -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x20aa1167 comedi_driver_register +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x0e96d6a7 comedi_alloc_spriv +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x0eb86f7a comedi_nsamples_left +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x1086bd13 comedi_buf_read_free EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x21102f87 range_0_32mA -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x2563965a comedi_driver_unregister -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x2b141efa comedi_request_region -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x2c8fe536 comedi_inc_scan_progress +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x28559bac comedi_buf_read_alloc +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x29c899ca comedi_buf_write_alloc EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x2f0ad9d3 range_bipolar5 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x36829444 comedi_load_firmware -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x36bf4d82 comedi_alloc_subdev_readback -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x3aed6780 comedi_readback_insn_read -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x3ed221c0 comedi_buf_write_alloc -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x40c6a666 comedi_buf_read_free +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x31748f44 comedi_dio_update_state +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x31d1ea2c comedi_dio_insn_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x31e86629 comedi_inc_scan_progress +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x374a1230 comedi_nscans_left +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x39ad7f43 comedi_is_subdevice_running EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4236eaaf range_4_20mA -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4972efa4 comedi_buf_read_n_available +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x428f1c9d comedi_request_region +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x468538a1 comedi_load_firmware EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4fe634f3 range_bipolar2_5 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x613e7d46 comedi_auto_config -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x69720780 comedi_dio_update_state -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x6e4bac99 comedi_buf_read_samples -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x7cebfc78 comedi_handle_events -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x7f3f6647 comedi_dio_insn_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x50363dff comedi_alloc_subdev_readback +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x56f5dd52 comedi_buf_write_free +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x5a23ae6a comedi_buf_write_samples +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x612b4f2e comedi_buf_read_samples +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x665126a8 comedi_handle_events +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x6e74752b comedi_auto_unconfig +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x760f74ab comedi_readback_insn_read EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x8113872c range_unipolar10 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x8308e2d5 comedi_is_subdevice_running -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x84c460ba comedi_alloc_devpriv -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x8d1e085b comedi_set_spriv_auto_free -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x95d2c43c comedi_buf_write_free -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x9e1971d5 comedi_dev_get_from_minor -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xb1dc3848 comedi_bytes_per_scan_cmd -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xb5b98d48 comedi_buf_read_alloc +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x81f88424 comedi_driver_register +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x83ef4ce6 comedi_bytes_per_scan +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x86aa969e comedi_buf_read_n_available +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x906cdca8 comedi_dev_get_from_minor +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x972ecd76 comedi_check_chanlist +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x98221e4e comedi_driver_unregister +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xad417ef1 comedi_event +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xb25b8ed3 comedi_alloc_devpriv +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xb60171eb comedi_dev_put EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xb679cebc range_0_20mA EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xbb52fc7f range_bipolar10 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xbc6a0d83 comedi_event EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xbdbe75c6 range_unipolar2_5 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xc008f6be comedi_alloc_spriv -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xc2796901 comedi_timeout -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xc4ffeab3 comedi_auto_unconfig -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xcb705974 comedi_nsamples_left -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xda0d2e0b comedi_set_hw_dev -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xda8a4f58 comedi_buf_write_samples +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xbf09c43b comedi_bytes_per_scan_cmd +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xc5e8d696 comedi_alloc_subdevices +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xc9920938 __comedi_request_region +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xcdd1cfb7 comedi_set_hw_dev +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xce53a483 comedi_auto_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xd8d74eae comedi_legacy_detach EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xdb2044b2 range_unipolar5 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xe520c709 comedi_legacy_detach -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xe70d810f __comedi_request_region -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xe9ab31b3 comedi_dev_put -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xf3a5e199 comedi_check_chanlist -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xfd92be3f comedi_alloc_subdevices -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xffe651b1 comedi_bytes_per_scan -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x21258636 comedi_pci_detach -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x62d711a2 comedi_pci_disable -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x97937b57 comedi_pci_auto_unconfig -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x9cc405fd comedi_pci_driver_register -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xce72c51d comedi_to_pci_dev -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xdd6c05ea comedi_pci_enable -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xe86a119e comedi_pci_auto_config -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xf950cee2 comedi_pci_driver_unregister -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x0c734557 comedi_to_usb_dev -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x96e49f87 comedi_usb_auto_unconfig -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x98475b50 comedi_usb_auto_config -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x9a586a85 comedi_to_usb_interface -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0xc2aaa5bd comedi_usb_driver_register -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0xcc5bd1b7 comedi_usb_driver_unregister -EXPORT_SYMBOL_GPL drivers/comedi/drivers/addi_watchdog 0x77071278 addi_watchdog_init +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xdbdc98fd comedi_timeout +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xddc69feb comedi_set_spriv_auto_free +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x53e8ce4f comedi_pci_auto_unconfig +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x7a294479 comedi_pci_driver_unregister +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x7f22f2cd comedi_pci_enable +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x7f877e6a comedi_pci_detach +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x9e5355d1 comedi_pci_driver_register +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xdefdbabe comedi_pci_auto_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xfba145fb comedi_to_pci_dev +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xff0a8c47 comedi_pci_disable +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x289a0ee8 comedi_usb_driver_register +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x2f2dec5a comedi_to_usb_dev +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x30b57338 comedi_usb_auto_unconfig +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x6d47802f comedi_to_usb_interface +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x89d210af comedi_usb_driver_unregister +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0xb29984f7 comedi_usb_auto_config EXPORT_SYMBOL_GPL drivers/comedi/drivers/addi_watchdog 0x79f4a6cf addi_watchdog_reset -EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_dio200_common 0x9c8f4bf2 amplc_dio200_set_enhance -EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_dio200_common 0xa5ca32f5 amplc_dio200_common_attach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_pc236_common 0x304e34ad amplc_pc236_common_attach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x00c026a2 comedi_8254_read -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x14d0d37c comedi_8254_set_busy -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x17c8c564 comedi_8254_cascade_ns_to_timer -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x28ed3aeb comedi_8254_ns_to_timer -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x454f37bc comedi_8254_load -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x552d249f comedi_8254_pacer_enable -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x629217f4 comedi_8254_subdevice_init -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x74ac7828 comedi_8254_init -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x838709b6 comedi_8254_update_divisors -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xb37a1441 comedi_8254_status -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xc6bc7697 comedi_8254_mm_init -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xda2191c5 comedi_8254_set_mode -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xfbd2e61e comedi_8254_write -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0x4c208d73 subdev_8255_init -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0x73703dee subdev_8255_mm_init -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0xba475dd3 subdev_8255_regbase +EXPORT_SYMBOL_GPL drivers/comedi/drivers/addi_watchdog 0xfd50a34e addi_watchdog_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_dio200_common 0x7404e81b amplc_dio200_common_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_dio200_common 0xd5662f44 amplc_dio200_set_enhance +EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_pc236_common 0x30d35b1d amplc_pc236_common_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x39e210eb comedi_8254_load +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x55de0c8f comedi_8254_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x7419a335 comedi_8254_set_mode +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x845a9151 comedi_8254_status +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x8b325f40 comedi_8254_mm_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x96aff620 comedi_8254_subdevice_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xaa107abc comedi_8254_read +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xb58a2984 comedi_8254_update_divisors +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xb8ffc3ed comedi_8254_pacer_enable +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xc192e68e comedi_8254_ns_to_timer +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xdce02b25 comedi_8254_write +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xfa619fda comedi_8254_cascade_ns_to_timer +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xffb8a75e comedi_8254_set_busy +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0x0989cf78 subdev_8255_regbase +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0x82c1020b subdev_8255_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0x864f21be subdev_8255_mm_init EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_isadma 0x12fba874 comedi_isadma_disable +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_isadma 0x13918b84 comedi_isadma_poll +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_isadma 0x150a9b76 comedi_isadma_free EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_isadma 0x4a17474e comedi_isadma_disable_on_sample -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_isadma 0x65b0a4a4 comedi_isadma_alloc +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_isadma 0xc6e6b4e6 comedi_isadma_alloc EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_isadma 0xca784d4b comedi_isadma_set_mode -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_isadma 0xd435cf39 comedi_isadma_free -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_isadma 0xde72311f comedi_isadma_poll EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_isadma 0xea878430 comedi_isadma_program -EXPORT_SYMBOL_GPL drivers/comedi/drivers/das08 0x1ab8fca5 das08_common_attach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x045e9b7c mite_attach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x0da22a3f mite_sync_dma -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x0f318ff4 mite_dma_arm -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x1a34789d mite_buf_change -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x2c195b64 mite_bytes_in_transit -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x4633c77d mite_ack_linkc -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x6b51d86c mite_init_ring_descriptors -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x8c81b725 mite_release_channel -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xb57c3ae2 mite_free_ring -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xc3439bba mite_dma_disarm -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xc5cf3547 mite_prep_dma -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xd10469ff mite_alloc_ring -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xd4725e42 mite_request_channel_in_range -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xdd2dc89a mite_done -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xe3a43d87 mite_detach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xfab5c926 mite_request_channel -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_common 0x96bdec94 labpc_common_detach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_common 0xc8368f6c labpc_common_attach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_isadma 0x1cc014db labpc_drain_dma -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_isadma 0x2306c02f labpc_handle_dma_status -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_isadma 0x32430c10 labpc_free_dma_chan -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_isadma 0x5e435235 labpc_setup_dma -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_isadma 0x963d4065 labpc_init_dma_chan +EXPORT_SYMBOL_GPL drivers/comedi/drivers/das08 0x67e063ba das08_common_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x0041502c mite_sync_dma +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x1323b699 mite_release_channel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x271a18d5 mite_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x418c02b4 mite_dma_arm +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x45faf448 mite_prep_dma +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x4c310ac7 mite_detach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x54c972f4 mite_dma_disarm +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x551c1be3 mite_done +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x83ff2d58 mite_request_channel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xa8b72214 mite_ack_linkc +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xade1984c mite_request_channel_in_range +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xba858053 mite_init_ring_descriptors +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xba9f0e73 mite_buf_change +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xdc652bf3 mite_bytes_in_transit +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xea02c43c mite_free_ring +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xfcbedbfa mite_alloc_ring +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_common 0x35a6b9e4 labpc_common_detach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_common 0xec8849dd labpc_common_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_isadma 0x2af7f16d labpc_setup_dma +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_isadma 0x34aff579 labpc_free_dma_chan +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_isadma 0x6a923b96 labpc_init_dma_chan +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_isadma 0x741819ce labpc_handle_dma_status +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_isadma 0xa39bacb1 labpc_drain_dma EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x076bc308 ni_find_route_source EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x0921123e ni_lookup_route_register EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x1facf7f8 ni_is_cmd_dest @@ -11793,681 +11832,681 @@ 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 0x5f1104d7 ni_tio_write -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x6266e43b ni_tio_set_gate_src_raw -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x780a654c ni_tio_set_gate_src -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x7f210e6a ni_tio_insn_config -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x9a7e1e44 ni_tio_get_routing -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xa4bb8374 ni_tio_read -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xaeb974b6 ni_gpct_device_construct -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xb3defd1b ni_tio_insn_read -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xc45effd3 ni_tio_arm -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xd0c9008d ni_tio_unset_routing -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xd2d50378 ni_gpct_device_destroy -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xdd010e0f ni_tio_init_counter -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xe0521a68 ni_tio_insn_write -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xe07a4b3d ni_tio_set_bits -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xec951e3c ni_tio_set_routing -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xfa7ba903 ni_tio_get_soft_copy -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x030c74e3 ni_tio_handle_interrupt -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x51f8af95 ni_tio_cmdtest -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x6d74c0c9 ni_tio_set_mite_channel -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xb1845683 ni_tio_acknowledge -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xb39a8480 ni_tio_cmd -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xe0129682 ni_tio_cancel -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x14173636 comedi_close -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x21e1cf7d comedi_get_n_channels -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x2f2765fe comedi_find_subdevice_by_type -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x309536b1 comedi_open -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x6b74c368 comedi_dio_config -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x6c463289 comedi_dio_get_config -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xfab736a9 comedi_dio_bitfield2 +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x1e33a608 ni_gpct_device_construct +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x2a8244fc ni_tio_insn_write +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x34a143ba ni_tio_get_soft_copy +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x51ed58af ni_tio_insn_read +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x52deaa89 ni_tio_get_routing +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x533c2ffd ni_tio_arm +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x5ea0f41a ni_tio_set_routing +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x64c97f67 ni_tio_unset_routing +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x6762a43a ni_tio_set_gate_src +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x799e1b05 ni_tio_read +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x7e0b7eb5 ni_tio_insn_config +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x813a0e88 ni_tio_init_counter +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x8f7c7db9 ni_tio_write +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x9325c08d ni_gpct_device_destroy +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xb7be5beb ni_tio_set_bits +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xf827a055 ni_tio_set_gate_src_raw +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x2643484e ni_tio_set_mite_channel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x2b74bb5f ni_tio_handle_interrupt +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x3c2dea95 ni_tio_cmd +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x60663cab ni_tio_cancel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xaede5840 ni_tio_cmdtest +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xfa0e93dc ni_tio_acknowledge +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x1de5ab49 comedi_get_n_channels +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x75e944fd comedi_close +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x7d84ee2e comedi_find_subdevice_by_type +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xa6e28d42 comedi_open +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xaf2293f7 comedi_dio_config +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xb0e567f7 comedi_dio_get_config +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xd395ffa3 comedi_dio_bitfield2 EXPORT_SYMBOL_GPL drivers/counter/counter 0x01aab51b counter_count_direction_str -EXPORT_SYMBOL_GPL drivers/counter/counter 0x1ebf89f7 counter_device_enum_read -EXPORT_SYMBOL_GPL drivers/counter/counter 0x20aa863e counter_register -EXPORT_SYMBOL_GPL drivers/counter/counter 0x3ab18e49 counter_unregister -EXPORT_SYMBOL_GPL drivers/counter/counter 0x4315ee1e devm_counter_unregister -EXPORT_SYMBOL_GPL drivers/counter/counter 0x46e3f8a7 counter_signal_enum_read -EXPORT_SYMBOL_GPL drivers/counter/counter 0x630f9438 counter_device_enum_available_read -EXPORT_SYMBOL_GPL drivers/counter/counter 0x65b2de6d counter_count_enum_write -EXPORT_SYMBOL_GPL drivers/counter/counter 0x8a2b1dbf counter_device_enum_write -EXPORT_SYMBOL_GPL drivers/counter/counter 0x9124541d counter_signal_enum_write -EXPORT_SYMBOL_GPL drivers/counter/counter 0xb1030854 counter_count_enum_available_read -EXPORT_SYMBOL_GPL drivers/counter/counter 0xc67836c6 counter_count_enum_read -EXPORT_SYMBOL_GPL drivers/counter/counter 0xcb7b8808 devm_counter_register +EXPORT_SYMBOL_GPL drivers/counter/counter 0x2107583b counter_unregister +EXPORT_SYMBOL_GPL drivers/counter/counter 0x37e86614 devm_counter_register +EXPORT_SYMBOL_GPL drivers/counter/counter 0x646499ff counter_signal_enum_available_read +EXPORT_SYMBOL_GPL drivers/counter/counter 0x6d0c9b6e counter_count_enum_write +EXPORT_SYMBOL_GPL drivers/counter/counter 0x766c0dd0 counter_device_enum_available_read +EXPORT_SYMBOL_GPL drivers/counter/counter 0x7ae383a2 counter_device_enum_read +EXPORT_SYMBOL_GPL drivers/counter/counter 0x8ba995f4 counter_signal_enum_write +EXPORT_SYMBOL_GPL drivers/counter/counter 0x8c645d6f counter_signal_enum_read +EXPORT_SYMBOL_GPL drivers/counter/counter 0x92f7c774 counter_device_enum_write +EXPORT_SYMBOL_GPL drivers/counter/counter 0xcc0f259b counter_register +EXPORT_SYMBOL_GPL drivers/counter/counter 0xdec4c22a counter_count_enum_available_read +EXPORT_SYMBOL_GPL drivers/counter/counter 0xe0098a19 counter_count_enum_read +EXPORT_SYMBOL_GPL drivers/counter/counter 0xe3a4745f devm_counter_unregister EXPORT_SYMBOL_GPL drivers/counter/counter 0xee526d0f counter_count_mode_str -EXPORT_SYMBOL_GPL drivers/counter/counter 0xf7d20c73 counter_signal_enum_available_read -EXPORT_SYMBOL_GPL drivers/crypto/nx/nx-compress 0x0afc87c4 nx842_crypto_decompress -EXPORT_SYMBOL_GPL drivers/crypto/nx/nx-compress 0x0c74675c nx842_crypto_compress -EXPORT_SYMBOL_GPL drivers/crypto/nx/nx-compress 0x577a918c nx842_crypto_exit -EXPORT_SYMBOL_GPL drivers/crypto/nx/nx-compress 0x8608f486 nx842_crypto_init -EXPORT_SYMBOL_GPL drivers/dax/device_dax 0xcb7d44ae dev_dax_probe -EXPORT_SYMBOL_GPL drivers/dax/pmem/dax_pmem_core 0x2441258b __dax_pmem_probe -EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0x457b62b0 dw_edma_remove -EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0xe3221006 dw_edma_probe -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x13ee20fa dw_dma_probe -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x1b89d3d9 dw_dma_filter -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x20d40f88 idma32_dma_probe -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x230624cd dw_dma_remove -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x2bbc3cf0 do_dw_dma_disable -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x5a8c604d do_dw_dma_enable -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xd23e23c7 idma32_dma_remove -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x0ae3e27e fsl_edma_disable_request -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x243cdae3 fsl_edma_free_chan_resources -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x51dfb0a9 fsl_edma_free_desc -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x636db630 fsl_edma_prep_slave_sg -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x6c989b41 fsl_edma_chan_mux -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x6ce67715 fsl_edma_alloc_chan_resources -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x8a29ea7e fsl_edma_terminate_all -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x8dd2b92e fsl_edma_slave_config -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x94f9455d fsl_edma_pause -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x97bda8d7 fsl_edma_cleanup_vchan -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xaa270652 fsl_edma_resume -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xb4350207 fsl_edma_setup_regs -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xd120f61a fsl_edma_xfer_desc -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xe8911e54 fsl_edma_issue_pending -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xf954db60 fsl_edma_tx_status -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xfcf338e8 fsl_edma_prep_dma_cyclic -EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0x05058890 hidma_mgmt_init_sys -EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0x44cf3aaa hidma_mgmt_setup -EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x0ae838ce vchan_find_desc -EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x47a686c9 vchan_init -EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0xe1ae1a0b vchan_tx_submit -EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0xeddb276b vchan_dma_desc_free_list -EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0xfd1477b2 vchan_tx_desc_free +EXPORT_SYMBOL_GPL drivers/crypto/nx/nx-compress 0x6ceb657e nx842_crypto_init +EXPORT_SYMBOL_GPL drivers/crypto/nx/nx-compress 0xa1391d4b nx842_crypto_exit +EXPORT_SYMBOL_GPL drivers/crypto/nx/nx-compress 0xaca88589 nx842_crypto_compress +EXPORT_SYMBOL_GPL drivers/crypto/nx/nx-compress 0xc23602df nx842_crypto_decompress +EXPORT_SYMBOL_GPL drivers/dax/device_dax 0xff64b037 dev_dax_probe +EXPORT_SYMBOL_GPL drivers/dax/pmem/dax_pmem_core 0x21c3aa25 __dax_pmem_probe +EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0x51e15a5f dw_edma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0x8d57a1ba dw_edma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x34048eea do_dw_dma_disable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x5295c950 idma32_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x5d340b6a dw_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x75534ef7 do_dw_dma_enable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xc5435c9b idma32_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xd76b66a8 dw_dma_filter +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xe794c28e dw_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x185c88e8 fsl_edma_tx_status +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x26318c77 fsl_edma_disable_request +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x625d87c3 fsl_edma_cleanup_vchan +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x6afcf238 fsl_edma_prep_dma_cyclic +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x7f3eb190 fsl_edma_slave_config +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x862fdeb8 fsl_edma_free_chan_resources +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x99e712dd fsl_edma_resume +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xa39be4b3 fsl_edma_prep_slave_sg +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xa6bdc228 fsl_edma_setup_regs +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xa9549fc9 fsl_edma_issue_pending +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xad77f02a fsl_edma_terminate_all +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xc806a2b1 fsl_edma_free_desc +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xcc0e9e7f fsl_edma_pause +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xe81329d9 fsl_edma_chan_mux +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xf0cc1216 fsl_edma_alloc_chan_resources +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xfe50818a fsl_edma_xfer_desc +EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0x2c9fbeb7 hidma_mgmt_init_sys +EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0x8d807825 hidma_mgmt_setup +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x98831630 vchan_find_desc +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0xcbfcfa36 vchan_dma_desc_free_list +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0xd9b69656 vchan_tx_desc_free +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0xe7507efd vchan_init +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0xe7f59bf0 vchan_tx_submit EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0xe86fb5c7 fw_card_release -EXPORT_SYMBOL_GPL drivers/fpga/altera-pr-ip-core 0x23b4ff56 alt_pr_register -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x22b1fa16 dfl_fpga_cdev_assign_port -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x2a0847ee dfl_fpga_port_ops_add -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x3f481ad4 dfl_fpga_port_ops_get -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x4568bfd5 dfl_fpga_enum_info_add_dfl -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x4cfffa99 dfl_fpga_feature_devs_remove -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x5d291b7e dfl_fpga_dev_feature_init -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x74305e4a dfl_fpga_enum_info_free -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x78d94070 dfl_fpga_port_ops_put -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x81852477 dfl_feature_ioctl_get_num_irqs -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x91a07742 dfl_fpga_dev_ops_register -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x96444848 dfl_fpga_dev_feature_uinit -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xa55f8135 dfl_fpga_enum_info_alloc -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xa65fde67 dfl_fpga_cdev_config_ports_pf -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xa9900c77 dfl_fpga_set_irq_triggers -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xb393fece dfl_fpga_dev_ops_unregister -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xc06cb350 dfl_fpga_port_ops_del -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xc0b52854 dfl_fpga_feature_devs_enumerate -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xcc56a53a __dfl_fpga_cdev_find_port -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xd6972bca dfl_fpga_cdev_config_ports_vf -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xea85d49c dfl_fpga_cdev_release_port -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xef5e17c3 dfl_feature_ioctl_set_irq -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xf0d300b2 dfl_fpga_enum_info_add_irq -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xf1ce05b5 dfl_fpga_check_port_id -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x020093b4 fpga_bridge_free +EXPORT_SYMBOL_GPL drivers/fpga/altera-pr-ip-core 0xee1b7f75 alt_pr_register +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x293f0500 dfl_fpga_cdev_release_port +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x2af40a0f dfl_fpga_feature_devs_remove +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x2d23f1ba dfl_fpga_cdev_config_ports_vf +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x3a42563d dfl_fpga_check_port_id +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x4b6d3261 dfl_fpga_cdev_config_ports_pf +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x5020ebf8 dfl_fpga_set_irq_triggers +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x52931612 dfl_fpga_enum_info_alloc +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x7fe4d438 dfl_fpga_dev_feature_uinit +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x8ca57895 dfl_fpga_port_ops_get +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x8db4f140 dfl_feature_ioctl_set_irq +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x9054fdb3 dfl_fpga_port_ops_put +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x921ccf9e dfl_fpga_dev_feature_init +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xb98ce993 dfl_fpga_dev_ops_register +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xc15f4d48 dfl_fpga_enum_info_add_irq +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xcc0e4e89 dfl_fpga_port_ops_del +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xd112712c __dfl_fpga_cdev_find_port +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xdfa70c55 dfl_fpga_cdev_assign_port +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xe36e3c07 dfl_fpga_feature_devs_enumerate +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xe37f8e03 dfl_fpga_enum_info_free +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xe4e812bc dfl_fpga_enum_info_add_dfl +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xe73751aa dfl_fpga_port_ops_add +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xf48807dd dfl_fpga_dev_ops_unregister +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xfebc2188 dfl_feature_ioctl_get_num_irqs EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x0633c4b9 fpga_bridges_enable -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x077fece2 fpga_bridge_get_to_list EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x0b2b884c fpga_bridges_put -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x22a30f70 of_fpga_bridge_get EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x2c8167cf fpga_bridges_disable -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x489af6fd fpga_bridge_disable -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x5b328d35 fpga_bridge_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x620b9c62 devm_fpga_bridge_create -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x646dbdba fpga_bridge_unregister -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x80b94e58 fpga_bridge_put -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xac9282b3 of_fpga_bridge_get_to_list -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xd0771175 fpga_bridge_register -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xf5bec53b fpga_bridge_enable -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xf616b2ab fpga_bridge_create -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x12cc4624 fpga_mgr_unregister -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x1c65e7a0 devm_fpga_mgr_create -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x31046cda fpga_mgr_put -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x3c8c0877 fpga_mgr_create -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x3cdb155e fpga_mgr_register -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x47478268 fpga_mgr_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x6382a7e5 fpga_mgr_unlock -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x6c2cdb89 fpga_mgr_load -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x791d048d fpga_mgr_lock -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x7e71c850 fpga_image_info_alloc -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xc60757c5 fpga_image_info_free -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xc826faaf of_fpga_mgr_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xe13f198a fpga_mgr_free -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xf58a2825 devm_fpga_mgr_register -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x1d7c04fa fpga_region_register -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x2fd9d866 fpga_region_program_fpga -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x77de90a3 fpga_region_unregister -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x9a6ccbf2 fpga_region_create -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0xc702868d fpga_region_class_find -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0xc954bb46 devm_fpga_region_create -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0xeb302ac5 fpga_region_free -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x19f8e31c fsi_driver_register -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x26932a8f fsi_master_rescan +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x2cbca8fe fpga_bridge_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x34b4ed74 fpga_bridge_disable +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x4fb7348c of_fpga_bridge_get_to_list +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x7c10216b fpga_bridge_create +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x8f436e93 fpga_bridge_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xc077c0e7 fpga_bridge_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xc0c25a0c of_fpga_bridge_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xc2ce2d45 fpga_bridge_enable +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xcaec3388 fpga_bridge_get_to_list +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xd201c4df fpga_bridge_free +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xe10a3680 devm_fpga_bridge_create +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xe2261398 fpga_bridge_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x026557e8 fpga_mgr_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x0c2ca392 fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x1a515504 devm_fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x22ea9b33 fpga_mgr_create +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x3830f5e9 fpga_image_info_alloc +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x524a314b fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x736ed63d fpga_mgr_free +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x80b22f10 fpga_mgr_load +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x81572a21 fpga_mgr_unlock +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x825756c4 of_fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x86f8df2e devm_fpga_mgr_create +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xca744cd9 fpga_mgr_lock +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xd6038723 fpga_image_info_free +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xfbf193f6 fpga_mgr_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x2e8d8630 fpga_region_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x404ba590 fpga_region_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x4378e4a7 fpga_region_create +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x730ecbfe fpga_region_free +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x81fc66e0 fpga_region_program_fpga +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x84750ca4 fpga_region_class_find +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x8a23316f devm_fpga_region_create +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x016b5672 fsi_bus_type +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x0916c8dc fsi_master_register +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x37dcc3e6 fsi_master_rescan EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x3a93847e fsi_slave_claim_range -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x451c1372 fsi_device_read EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x5a57d574 fsi_free_minor -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x6bc61f31 fsi_get_new_minor +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x69de5fa7 fsi_master_unregister +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x6a0067a9 fsi_get_new_minor +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x7236e3bd fsi_driver_unregister EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x78060f23 fsi_slave_read -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x7abc0196 fsi_device_write -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x96519879 fsi_cdev_type -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xa1d01a39 fsi_bus_type -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xaf5d95d1 fsi_master_unregister +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x7f9c9738 fsi_driver_register +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xcbe106fc fsi_cdev_type EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xce22aee2 fsi_slave_release_range EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xd942f235 fsi_slave_write -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xf7f892e7 fsi_master_register -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xf962c503 fsi_driver_unregister -EXPORT_SYMBOL_GPL drivers/fsi/fsi-occ 0x03f309be fsi_occ_submit -EXPORT_SYMBOL_GPL drivers/fsi/fsi-sbefifo 0x3a3a497d sbefifo_submit -EXPORT_SYMBOL_GPL drivers/fsi/fsi-sbefifo 0x77c74c0f sbefifo_parse_status -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x3e4fddf2 gnss_put_device -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x4358bd04 gnss_register_device -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x9b69d1cf gnss_insert_raw -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0xc0e357f2 gnss_deregister_device -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0xc428e063 gnss_allocate_device -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x088ecc39 gnss_serial_allocate -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x0daa438a gnss_serial_free -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x15a96dec gnss_serial_pm_ops -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x97fe1bd7 gnss_serial_deregister -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0xb01e4b8f gnss_serial_register -EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x1e87051a __max730x_probe -EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0xe88f67b7 __max730x_remove +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xde0fa6e2 fsi_device_read +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xe8cb1002 fsi_device_write +EXPORT_SYMBOL_GPL drivers/fsi/fsi-occ 0x70d831e8 fsi_occ_submit +EXPORT_SYMBOL_GPL drivers/fsi/fsi-sbefifo 0x3e654259 sbefifo_parse_status +EXPORT_SYMBOL_GPL drivers/fsi/fsi-sbefifo 0xea3348ab sbefifo_submit +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x38646920 gnss_allocate_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x83585dc8 gnss_deregister_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0xabd24a1f gnss_register_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0xe7a3b01e gnss_insert_raw +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0xef1d7975 gnss_put_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x0ce6984b gnss_serial_pm_ops +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x60b61f64 gnss_serial_deregister +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x6933e01b gnss_serial_register +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0xdd077542 gnss_serial_free +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0xf2d84855 gnss_serial_allocate +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x0297b402 __max730x_remove +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x4b428289 __max730x_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x15620f6d analogix_dp_unbind +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x381152b0 analogix_dp_probe EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x3ee0dd60 anx_dp_aux_transfer -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x40161a6d analogix_dp_bind -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x490e2c97 analogix_dp_suspend -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x4e8db4d2 analogix_dp_resume -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x6ca9d277 analogix_dp_start_crc -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x83edb1db analogix_dp_probe -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xafb2da50 analogix_dp_unbind -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xbe4f2ff0 analogix_dp_stop_crc -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xfd6a773c analogix_dp_remove -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x0811eb4e dw_hdmi_bind +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x74adc4fe analogix_dp_bind +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x85e4a2e1 analogix_dp_stop_crc +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x91138254 analogix_dp_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xc32f64b4 analogix_dp_suspend +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xcd4bf574 analogix_dp_start_crc +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xd63d2cd9 analogix_dp_resume EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x09340e05 dw_hdmi_set_channel_count EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x094f6fc5 dw_hdmi_phy_i2c_set_addr EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x1461e227 dw_hdmi_set_channel_status EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x157e02b6 dw_hdmi_phy_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 0x2d663fa6 dw_hdmi_probe 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 0x4423fd92 dw_hdmi_set_high_tmds_clock_ratio EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x4a9b174f dw_hdmi_remove EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x6712b5a7 dw_hdmi_phy_gen2_txpwron EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x7d8a3aee dw_hdmi_phy_i2c_write +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x8a62658b dw_hdmi_set_plugged_cb +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x8d07588c dw_hdmi_bind 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 0x9477a08b dw_hdmi_set_high_tmds_clock_ratio +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x99a4670b dw_hdmi_probe 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 0xa8a84559 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 0xf5922009 dw_hdmi_phy_update_hpd -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x015ecca3 drm_gem_dumb_map_offset -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x02d41f6f drm_gem_shmem_mmap -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x068ae8f1 drm_gem_cma_dumb_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x081ba303 drm_gem_cma_mmap -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x08939f3e drm_gem_cma_dumb_create_internal -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x0f48799c drm_gem_shmem_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x18f71e12 drm_crtc_add_crc_entry -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x1ba97be6 drm_get_unmapped_area -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x1f17fb57 drm_gem_shmem_prime_import_sg_table -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x24e661af drm_of_component_match_add -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x2a3dd0be drm_class_device_register -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x35e6ec6f drm_gem_shmem_free_object -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x36163443 drm_do_get_edid -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x49433804 drm_of_encoder_active_endpoint -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x50f202a0 drm_of_lvds_get_dual_link_pixel_order -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x5e17d328 drm_gem_cma_vmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x028db752 drm_gem_shmem_mmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x02e55d00 drm_gem_cma_dumb_create_internal +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x033f5832 drm_gem_cma_free_object +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x11d6c224 drm_gem_cma_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x2e589c16 drm_gem_cma_prime_import_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x2ec074fa of_get_drm_display_mode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x38ab2aa7 drm_get_unmapped_area +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x4393b50c drm_gem_shmem_prime_import_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x500e3bc9 drm_gem_shmem_get_pages_sgt +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x54136808 drm_gem_shmem_free_object +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x5de74408 drm_class_device_register +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x62391bd6 drm_gem_shmem_get_sg_table EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x66cf2f64 drm_display_mode_from_videomode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x716a07ea drm_gem_cma_vm_ops -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x7f1e6ec9 drm_gem_shmem_get_sg_table -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x814362e2 drm_gem_cma_get_sg_table -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x8272e211 drm_of_find_panel_or_bridge -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x8c350448 of_get_drm_display_mode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x9715a04c drm_hdcp_check_ksvs_revoked -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x9c7320a2 drm_bridge_get_edid -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xa31abd9e drmm_kstrdup -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xa87a6fb4 drm_bridge_detect -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xaa8f2c1b drm_bridge_hpd_notify -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xab9c89ec drm_gem_shmem_get_pages_sgt +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x685e1e66 drm_bridge_hpd_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x8c13e65e drm_of_encoder_active_endpoint +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x971997ab drm_of_find_panel_or_bridge +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xa22ef32a drm_bridge_get_modes +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xa3b80ddb drm_gem_cma_dumb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xad394e4c drm_of_component_match_add EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xad885165 drm_bus_flags_from_videomode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xaf50747c drm_gem_cma_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xb14b91f2 drm_class_device_unregister -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xc56d5748 drm_gem_cma_free_object -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xd92499ec drm_bridge_hpd_disable -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xde454f68 drm_gem_cma_prime_import_sg_table -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xe53802da drm_bridge_get_modes -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xf8e82a71 drm_gem_shmem_dumb_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xfa30154c drm_bridge_hpd_enable +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xb1f71e12 drm_crtc_add_crc_entry +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xb6ba3f14 drm_gem_cma_get_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xb8c8541b drm_gem_shmem_dumb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xba55bf32 drm_bridge_hpd_notify +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xbc9da5f9 drm_gem_dumb_map_offset +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xbe497109 drm_gem_cma_vmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xccced9ce drm_bridge_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xcd8281a3 drm_hdcp_check_ksvs_revoked +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xd06665cc drm_bridge_detect +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xdb9c98c6 drmm_kstrdup +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xdc408143 drm_gem_shmem_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xdd021287 drm_gem_cma_mmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xe72a0a46 drm_class_device_unregister +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xed083c44 drm_of_lvds_get_dual_link_pixel_order +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xf537b38e drm_do_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xf5711051 drm_gem_cma_vm_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xfd325c29 drm_bridge_hpd_enable EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xfe9f72f3 drm_display_mode_to_videomode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dp_aux_bus 0x838b638d of_dp_aux_depopulate_ep_devices -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dp_aux_bus 0xb80a14c4 dp_aux_dp_driver_unregister -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dp_aux_bus 0xe38f3e93 __dp_aux_dp_driver_register -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dp_aux_bus 0xed21de1a devm_of_dp_aux_populate_ep_devices -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x0fc91a5f drm_fb_cma_get_gem_addr -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x694d0ef0 drm_bridge_connector_init -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x6a3644b0 drm_gem_fb_create_with_funcs -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x6b1991f8 drm_fb_cma_get_gem_obj -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x6d7334df drm_gem_fb_afbc_init -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x763b902b drm_bridge_connector_enable_hpd -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x93d04e86 drm_gem_fb_get_obj -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x9d8eb85b drm_gem_fb_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xa8793902 drm_gem_plane_helper_prepare_fb -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xc3c0f8b1 drm_bridge_connector_disable_hpd -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xd622c4a2 drm_gem_fb_init_with_funcs -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xe7057cf1 drm_fb_cma_sync_non_coherent -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xfeb74ce9 drm_gem_fb_create_with_dirty -EXPORT_SYMBOL_GPL drivers/gpu/drm/panel/panel-samsung-s6e63m0 0x198fb833 s6e63m0_probe -EXPORT_SYMBOL_GPL drivers/gpu/drm/panel/panel-samsung-s6e63m0 0x973f6801 s6e63m0_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dp_aux_bus 0x135e56cc dp_aux_dp_driver_unregister +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dp_aux_bus 0x2bc084c4 __dp_aux_dp_driver_register +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dp_aux_bus 0x39685278 devm_of_dp_aux_populate_ep_devices +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dp_aux_bus 0x3d020246 of_dp_aux_depopulate_ep_devices +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x1fe666c9 drm_gem_fb_init_with_funcs +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x23c3025f drm_bridge_connector_enable_hpd +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x2c09cd44 drm_fb_cma_sync_non_coherent +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x3791fc7a drm_gem_fb_create_with_dirty +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x3e75955c drm_gem_fb_afbc_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x512f74e6 drm_gem_plane_helper_prepare_fb +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x6e6b0524 drm_fb_cma_get_gem_obj +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xa5fb3ee2 drm_gem_fb_create_with_funcs +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xc9b4e28d drm_bridge_connector_disable_hpd +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xd53f3307 drm_gem_fb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xd9742aa7 drm_gem_fb_get_obj +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xd98e9dc9 drm_fb_cma_get_gem_addr +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xfbd2f346 drm_bridge_connector_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/panel/panel-samsung-s6e63m0 0x152ac556 s6e63m0_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/panel/panel-samsung-s6e63m0 0xf880c856 s6e63m0_probe +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x0197d22c gb_interface_request_mode_switch EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x02f46d26 __tracepoint_gb_message_submit +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x0350f7d0 greybus_register_driver +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x05cb6acb gb_debugfs_get 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 0x1cabad04 gb_operation_request_send_sync_timeout -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x1de1b9f3 greybus_register_driver -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x1f7df8a4 greybus_deregister_driver -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x22dd05ba gb_operation_result -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x25a851b6 gb_hd_cport_release_reserved -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x26c82a19 gb_hd_del -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x3ed2cc98 __traceiter_gb_hd_create -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x421513c4 gb_connection_enable -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x4b664faf gb_hd_put -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x51294184 gb_operation_get -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x52352074 gb_connection_disable_rx -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x5530b171 greybus_message_sent +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x1d6d0644 greybus_data_rcvd +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x23aface6 __traceiter_gb_hd_release +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x2510f0ce gb_connection_enable_tx +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x29bc4d2f gb_operation_create_flags +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x2ba76843 gb_hd_put +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x2ce17908 __traceiter_gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x34ae7362 gb_hd_cport_reserve +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x36608219 gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x40f7fbed gb_svc_intf_set_power_mode +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x42896f8d gb_hd_cport_release_reserved +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x4d3ffbb7 gb_connection_latency_tag_enable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x57f0c20d gb_connection_create_offloaded EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x5ad3f2d7 __tracepoint_gb_hd_add EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x5c0a8043 __tracepoint_gb_hd_in EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6213634d __tracepoint_gb_hd_create -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x624dba02 __traceiter_gb_hd_release -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x66cd8355 greybus_data_rcvd +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x67e16b93 __traceiter_gb_hd_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x69d347f1 gb_operation_request_send +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6b38a813 greybus_deregister_driver EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6d3bb9ec __SCK__tp_func_gb_message_submit -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6d3bec39 gb_connection_create_flags -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x72638a4f __traceiter_gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6eaa94ca gb_hd_add +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6eae7e76 gb_operation_get +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x705e46bd gb_connection_disable EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x81e221fb __SCK__tp_func_gb_hd_create -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x841791f5 gb_hd_add -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x856a664a gb_connection_disable_forced -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x8830815b gb_connection_destroy +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x8451758c gb_hd_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x895bb806 gb_operation_sync_timeout EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x89f514a1 __SCK__tp_func_gb_hd_in -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x8f1d3b6a gb_connection_create -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x996a34d7 gb_connection_enable_tx -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x99d44386 __traceiter_gb_hd_in -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x9a494eca gb_hd_create -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x9dd84072 gb_hd_output -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x9edd7d12 gb_operation_response_alloc -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x9f332e6b gb_operation_unidirectional_timeout -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xa3cff62e gb_operation_request_send +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x9111c90f gb_connection_latency_tag_disable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x96443544 __traceiter_gb_hd_add EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xa416e2da __tracepoint_gb_hd_del -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xa4dae965 gb_hd_shutdown -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xa95a7cb2 gb_operation_put -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xb26b8478 __traceiter_gb_message_submit -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xb5750ec4 gb_connection_create_offloaded -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xbf4e6a18 gb_svc_intf_set_power_mode -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xc01bcb6c gb_connection_latency_tag_disable -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xc3848a63 gb_hd_cport_reserve -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xc8a9ba85 gb_operation_cancel -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xccc220bb gb_interface_request_mode_switch +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xac05b9fd gb_connection_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xb146155f __traceiter_gb_message_submit +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xb98d08de greybus_message_sent +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xb9fb49d2 gb_operation_unidirectional_timeout +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xbaa7151e gb_connection_destroy +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xc040c803 gb_connection_create_flags +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xc60511ec gb_operation_result +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd01b48ad gb_connection_disable_rx +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd090b79e gb_operation_get_payload_size_max EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd3e646d9 __tracepoint_gb_hd_release -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd5c93545 gb_connection_disable -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd8fe00f9 gb_operation_sync_timeout -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe0416fdf gb_operation_get_payload_size_max -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe2f1e1f3 gb_operation_create_flags +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd73cd4b5 gb_operation_cancel +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd7a4ee0e gb_hd_shutdown +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe01afe11 __traceiter_gb_hd_in +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe0595e3a gb_operation_put +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe3580a95 gb_connection_enable EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xeac79e1a __SCK__tp_func_gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf086a6e9 gb_connection_disable_forced EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf107a122 __SCK__tp_func_gb_hd_release -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf7ae82d1 gb_connection_latency_tag_enable -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf9a1a5f8 __traceiter_gb_hd_add -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xff72f7d2 gb_debugfs_get +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf4729b94 gb_operation_request_send_sync_timeout +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf5f149d2 gb_hd_output +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf6337614 gb_operation_response_alloc EXPORT_SYMBOL_GPL drivers/hid/hid 0x05495392 hid_debug -EXPORT_SYMBOL_GPL drivers/hid/hid 0x09f4b1e4 hid_lookup_quirk -EXPORT_SYMBOL_GPL drivers/hid/hid 0x11e0e36c __hid_register_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0x09fc3174 hid_compare_device_paths +EXPORT_SYMBOL_GPL drivers/hid/hid 0x138f7713 hidinput_count_leds +EXPORT_SYMBOL_GPL drivers/hid/hid 0x16dc0f1d hidinput_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x173ffbf0 hid_dump_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x18440d77 hid_open_report EXPORT_SYMBOL_GPL drivers/hid/hid 0x19d52f1f hid_quirks_exit -EXPORT_SYMBOL_GPL drivers/hid/hid 0x1ab1cd34 hid_match_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0x1de1068c hidinput_count_leds -EXPORT_SYMBOL_GPL drivers/hid/hid 0x208bcdec hidinput_calc_abs_res -EXPORT_SYMBOL_GPL drivers/hid/hid 0x380709c8 __hid_request -EXPORT_SYMBOL_GPL drivers/hid/hid 0x38617c19 hid_hw_close -EXPORT_SYMBOL_GPL drivers/hid/hid 0x3aeab7a4 hid_debug_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0x42737308 hidraw_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x42d02414 hid_destroy_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0x4793625b hid_compare_device_paths -EXPORT_SYMBOL_GPL drivers/hid/hid 0x4d87b0d6 hid_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x4f21b9b3 hid_dump_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0x5eb2a884 hid_output_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x60f49d20 hidinput_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x634b09dd hid_check_keys_pressed -EXPORT_SYMBOL_GPL drivers/hid/hid 0x63feba2f hid_add_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0x646635fd hid_unregister_driver -EXPORT_SYMBOL_GPL drivers/hid/hid 0x6d861aa8 hid_dump_input -EXPORT_SYMBOL_GPL drivers/hid/hid 0x75881cdc hidinput_find_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0x7a7d09bd hid_field_extract -EXPORT_SYMBOL_GPL drivers/hid/hid 0x84261159 hid_validate_values +EXPORT_SYMBOL_GPL drivers/hid/hid 0x1b7a3451 hid_match_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x2129b8a8 hid_report_raw_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x22ccefb1 hid_hw_close +EXPORT_SYMBOL_GPL drivers/hid/hid 0x342a1b7a hid_debug_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x344f399d hidinput_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x415c4880 hid_unregister_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0x48717544 hid_validate_values +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4bb56580 __hid_register_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4f655add hid_allocate_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x50f50711 hid_dump_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x59a3fbdd hid_dump_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x5ab15c7c hid_alloc_report_buf +EXPORT_SYMBOL_GPL drivers/hid/hid 0x5de60e20 hidinput_calc_abs_res +EXPORT_SYMBOL_GPL drivers/hid/hid 0x6194ba12 hid_add_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8221d15b hid_setup_resolution_multiplier +EXPORT_SYMBOL_GPL drivers/hid/hid 0x82b2ba19 hidraw_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x85c6bccd hid_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8701f54b hid_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8ae365b7 hid_destroy_device EXPORT_SYMBOL_GPL drivers/hid/hid 0x8b13a8b8 hid_snto32 -EXPORT_SYMBOL_GPL drivers/hid/hid 0x8b80469a hid_report_raw_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0x902d2426 hid_dump_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x94549e02 hid_resolv_usage -EXPORT_SYMBOL_GPL drivers/hid/hid 0x94be3c96 hidraw_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x9517322d hid_setup_resolution_multiplier -EXPORT_SYMBOL_GPL drivers/hid/hid 0x9596948b hid_allocate_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0x98f44de9 hidinput_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0xac67afed hid_input_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0xad9d5833 hid_dump_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0xb328415f hidinput_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0xbd0538af hid_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0xbdb2a4b6 hid_hw_start -EXPORT_SYMBOL_GPL drivers/hid/hid 0xc3b3d239 hid_register_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0xcf70ce0e hid_set_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0xd47b3283 hidinput_get_led_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0xdfecbd23 hid_hw_open -EXPORT_SYMBOL_GPL drivers/hid/hid 0xe5733054 hid_hw_stop -EXPORT_SYMBOL_GPL drivers/hid/hid 0xe74c9f8e hid_ignore -EXPORT_SYMBOL_GPL drivers/hid/hid 0xedfff406 hidraw_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0xf01ed0aa hid_parse_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0xf39f6086 hid_alloc_report_buf -EXPORT_SYMBOL_GPL drivers/hid/hid 0xf552be0f hid_open_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x92946b0c hid_resolv_usage +EXPORT_SYMBOL_GPL drivers/hid/hid 0x96ad81ca hid_field_extract +EXPORT_SYMBOL_GPL drivers/hid/hid 0x9ac9d60a hidinput_find_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x9b6ceef5 hid_dump_input +EXPORT_SYMBOL_GPL drivers/hid/hid 0x9cff83f6 hid_parse_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x9ebc900f hid_input_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xab83c3e6 hidraw_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb19494b9 hid_hw_stop +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb2c303d2 __hid_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0xbd042e6a hid_hw_start +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd426f780 hid_register_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd570483a hidinput_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd60c775d hid_check_keys_pressed +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd94c3379 hid_lookup_quirk +EXPORT_SYMBOL_GPL drivers/hid/hid 0xdd3b314a hid_ignore +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf17bbf22 hid_set_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf23e5804 hid_output_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf6b5d51e hid_hw_open +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf8c0bc11 hidraw_disconnect EXPORT_SYMBOL_GPL drivers/hid/hid 0xfa355613 hid_quirks_init +EXPORT_SYMBOL_GPL drivers/hid/hid 0xfa668eb4 hidinput_get_led_field +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x11d30050 roccat_connect EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x2f622ea1 roccat_disconnect EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x3e4427c8 roccat_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x42c343f4 roccat_connect -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x63070aa4 roccat_common2_sysfs_read -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x6697d79b roccat_common2_device_init_struct -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x7485f622 roccat_common2_send -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x99de51b4 roccat_common2_receive -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xc82a2939 roccat_common2_sysfs_write -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xd2700352 roccat_common2_send_with_status -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x28356e89 sensor_hub_set_feature -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x2d337208 sensor_hub_input_attr_get_raw_value -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x98c8da81 sensor_hub_register_callback -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x997bba2c sensor_hub_device_open -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xaa2658c7 hid_sensor_get_usage_index -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xb1d7a19f sensor_hub_device_close -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xd5be228d sensor_hub_remove_callback -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xd71151d6 sensor_hub_input_get_attribute_info -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xe2a1f833 sensor_hub_get_feature -EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x4c4f451d i2c_hid_ll_driver -EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x9604f6d2 i2c_hid_core_pm -EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0xa9e5a327 i2c_hid_core_shutdown -EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0xdb3de4f6 i2c_hid_core_probe -EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0xeade746c i2c_hid_core_remove -EXPORT_SYMBOL_GPL drivers/hid/uhid 0xb0eb721b uhid_hid_driver -EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x4a8b9728 hiddev_hid_event -EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0xa7fc8c19 usb_hid_driver -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x0a915aba hsi_unregister_port_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x15730391 hsi_claim_port -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x1e14bd2d hsi_register_client_driver -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x285aa761 hsi_async -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x38015bbb hsi_new_client -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x38dcb429 hsi_free_msg -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x39f8658f hsi_register_port_event +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x62fea1e5 roccat_common2_sysfs_write +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x7719a9f7 roccat_common2_sysfs_read +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xb6bfbb87 roccat_common2_send_with_status +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xe6427f97 roccat_common2_receive +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xf528b7a8 roccat_common2_device_init_struct +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xf75c7af2 roccat_common2_send +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x27713150 sensor_hub_set_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x47747e63 sensor_hub_device_open +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x553d5b52 sensor_hub_get_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x85f9d59f sensor_hub_input_get_attribute_info +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x9cd17840 sensor_hub_input_attr_get_raw_value +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xc7f5f9a7 sensor_hub_remove_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xd1875ed8 hid_sensor_get_usage_index +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xefa92c40 sensor_hub_device_close +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xfcc23d2b sensor_hub_register_callback +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x126b59b4 i2c_hid_ll_driver +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x1685698a i2c_hid_core_remove +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x1c79ff3a i2c_hid_core_pm +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x4fa5139a i2c_hid_core_shutdown +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x6d9ce592 i2c_hid_core_probe +EXPORT_SYMBOL_GPL drivers/hid/uhid 0x435d2075 uhid_hid_driver +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0xc9dac980 usb_hid_driver +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0xf9f7bb15 hiddev_hid_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x0ec38690 hsi_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x2f652f0e hsi_port_unregister_clients +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x3a590103 hsi_async +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x3e3f4b2e hsi_unregister_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x4ca761da hsi_add_clients_from_dt EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5210a5bf hsi_board_list -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5ab9f078 hsi_remove_client -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5d74e328 hsi_register_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x6218e90c hsi_put_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xac51fe34 hsi_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xac5dbfa3 hsi_add_clients_from_dt -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xb5f77a7e hsi_release_port -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xba3a842a hsi_alloc_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xd2e2ae51 hsi_port_unregister_clients -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xe1ca82d2 hsi_unregister_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xee65f848 hsi_get_channel_id_by_name -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xf3cfaa69 hsi_alloc_msg -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x9fc24ac8 adt7x10_dev_pm_ops -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0xbf31684a adt7x10_probe -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0xe7e46ffc adt7x10_remove +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5c38a2d6 hsi_free_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x6505e9ab hsi_new_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x74283759 hsi_register_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x7fa7ed95 hsi_claim_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x8ed10875 hsi_unregister_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x9d025c50 hsi_remove_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xab29f943 hsi_put_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xaf7526f6 hsi_get_channel_id_by_name +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xb49995a2 hsi_alloc_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xc5420d3b hsi_register_client_driver +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xc5cab511 hsi_register_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xe24c6afa hsi_release_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xf14436a1 hsi_alloc_controller +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x521e147e adt7x10_probe +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x523204c2 adt7x10_dev_pm_ops +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x892206b0 adt7x10_remove EXPORT_SYMBOL_GPL drivers/hwmon/ltc2947-core 0x5cbb5274 ltc2947_core_probe +EXPORT_SYMBOL_GPL drivers/hwmon/ltc2947-core 0x9155d942 ltc2947_pm_ops EXPORT_SYMBOL_GPL drivers/hwmon/ltc2947-core 0xbc54f93e ltc2947_of_match -EXPORT_SYMBOL_GPL drivers/hwmon/ltc2947-core 0xfbcc804d ltc2947_pm_ops -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x144fa76f intel_th_free -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x368a7b04 intel_th_trace_enable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x4759b444 intel_th_driver_unregister -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x64685b06 intel_th_driver_register -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x7b422b44 intel_th_trace_switch -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x8c0a108e intel_th_set_output -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xa13543d5 intel_th_output_enable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xe0c5a82d intel_th_trace_disable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xfacfd216 intel_th_alloc -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x223b8c6e intel_th_msu_buffer_register -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x25a29683 intel_th_msu_buffer_unregister -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x5c0d3f02 intel_th_msc_window_unlock -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x2c155dcd stm_register_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x39ba75df stm_source_write -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x59098114 stm_source_register_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x5b1189b6 stm_source_unregister_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x6892313e stm_unregister_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x9e7ef0d2 stm_unregister_protocol -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xcad9d285 stm_register_protocol -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xf331682c stm_data_write -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xf5a14a2c to_pdrv_policy_node -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x78ebcd31 i2c_mux_alloc -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x965f05a9 i2c_root_adapter -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xa4bfd8da i2c_mux_add_adapter -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xb3e43e2e i2c_mux_del_adapters -EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x6edfe3d7 i2c_handle_smbus_alert -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x204cc900 dev_to_i3cdev -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x2364687a i3c_device_match_id -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x2a49203f i3c_device_free_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x2bc7afcf i3c_generic_ibi_recycle_slot -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x3bb285ef i3c_driver_unregister -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x474eb760 i3c_driver_register_with_owner -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x4e18d68d i3c_device_disable_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x59423a58 i3c_master_disec_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x5cc900f0 i3c_device_request_ibi +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x1819f301 intel_th_alloc +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x1f244015 intel_th_driver_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x22591444 intel_th_free +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x4c4f9470 intel_th_set_output +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x4c84d53e intel_th_output_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x52aa1646 intel_th_trace_switch +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x951f3403 intel_th_trace_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xb93c3b95 intel_th_trace_disable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xc595585c intel_th_driver_register +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x892a12f1 intel_th_msu_buffer_register +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0xb3df4866 intel_th_msc_window_unlock +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0xe2f9309a intel_th_msu_buffer_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x1684afaa stm_unregister_protocol +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x2a3631ee stm_source_write +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x3277cdca stm_source_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x4483b0bd stm_register_protocol +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x90f05e81 stm_source_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xceca430a to_pdrv_policy_node +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xcfc60cc4 stm_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xd5584be7 stm_data_write +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xf384e1f7 stm_unregister_device +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x4cb81149 i2c_mux_alloc +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x6eba2b7e i2c_root_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xc7804ab1 i2c_mux_del_adapters +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xe023915c i2c_mux_add_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xbed68687 i2c_handle_smbus_alert +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x2a914971 i3c_driver_register_with_owner +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x2f83ebbc i3c_master_set_info +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x346a0bce i3c_device_disable_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x3aa198ef i3c_generic_ibi_recycle_slot +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x3d0cb423 i3c_master_add_i3c_dev_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x40131d8d dev_to_i3cdev +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x4ae78ad0 i3c_device_free_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x5560ebc0 i3c_generic_ibi_alloc_pool +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x58d18c86 i3c_device_match_id +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x66df7b33 i3cdev_to_dev EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x76fe3e05 i3c_generic_ibi_free_pool -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x8083b941 i3c_master_do_daa -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x8d3d6d94 i3c_device_do_priv_xfers -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x98b122a0 i3c_master_add_i3c_dev_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x9c6d68b5 i3c_device_enable_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xa3c34edc i3cdev_to_dev -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xae1d1f70 i3c_generic_ibi_alloc_pool -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xaf462dd8 i3c_master_defslvs_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xb1160ed8 i3c_master_set_info -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xbf02053b i3c_master_unregister -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xc4221b0e i3c_master_register -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xc7e82182 i3c_master_enec_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xce068998 i3c_master_entdaa_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xe9785e5c i3c_master_queue_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xee0bc71a i3c_device_get_info -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xee5eb143 i3c_generic_ibi_get_free_slot -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xfc434f82 i3c_master_get_free_addr -EXPORT_SYMBOL_GPL drivers/iio/accel/adxl372 0x100f986e adxl372_readable_noinc_reg -EXPORT_SYMBOL_GPL drivers/iio/accel/adxl372 0x5bd6b927 adxl372_probe -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x24fad383 bmc150_accel_core_remove -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x91de0c37 bmc150_accel_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x9eef360c bmc150_accel_core_probe -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xc12eb00e bmc150_regmap_conf -EXPORT_SYMBOL_GPL drivers/iio/accel/bmi088-accel-core 0x2fcc0fce bmi088_accel_core_probe -EXPORT_SYMBOL_GPL drivers/iio/accel/bmi088-accel-core 0x56ec27ce bmi088_accel_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/accel/bmi088-accel-core 0x607bd30d bmi088_regmap_conf -EXPORT_SYMBOL_GPL drivers/iio/accel/bmi088-accel-core 0xbebd73f5 bmi088_accel_core_remove -EXPORT_SYMBOL_GPL drivers/iio/accel/fxls8962af-core 0x1679ecc3 fxls8962af_i2c_regmap_conf -EXPORT_SYMBOL_GPL drivers/iio/accel/fxls8962af-core 0x514b6637 fxls8962af_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/accel/fxls8962af-core 0xb4a77806 fxls8962af_spi_regmap_conf -EXPORT_SYMBOL_GPL drivers/iio/accel/fxls8962af-core 0xb8fff86f fxls8962af_core_probe -EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0x36961e39 mma7455_core_regmap -EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0x5d90d3e5 mma7455_core_probe -EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0x89ee8d9e mma7455_core_remove -EXPORT_SYMBOL_GPL drivers/iio/adc/ad7091r-base 0x4b519b8e ad7091r_probe -EXPORT_SYMBOL_GPL drivers/iio/adc/ad7091r-base 0xe32970fe ad7091r_regmap_config -EXPORT_SYMBOL_GPL drivers/iio/adc/ad7606 0x169f7ec3 ad7606_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/adc/ad7606 0xf42b868a ad7606_probe -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x1af0f56c ad_sd_init -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x1f8193eb ad_sd_calibrate_all -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x408e02f2 ad_sd_read_reg -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x4101ebe4 devm_ad_sd_setup_buffer_and_trigger -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x43aff590 ad_sd_validate_trigger -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x4b22f898 ad_sd_set_comm -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x5ed0d3e9 ad_sd_reset -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x73120abc ad_sd_calibrate -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x85a2e1d4 ad_sigma_delta_single_conversion -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xf02ffbc1 ad_sd_write_reg -EXPORT_SYMBOL_GPL drivers/iio/adc/adi-axi-adc 0x4523872d devm_adi_axi_adc_conv_register -EXPORT_SYMBOL_GPL drivers/iio/adc/adi-axi-adc 0x4be020ae adi_axi_adc_conv_priv -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x05627846 iio_channel_cb_get_iio_dev +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x775f6105 i3c_master_disec_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x80f65686 i3c_generic_ibi_get_free_slot +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x81fbeb1d i3c_master_register +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x8768cfb5 i3c_master_defslvs_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x8860cdd7 i3c_device_request_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x8d6259ed i3c_master_queue_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xa27837eb i3c_master_entdaa_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xb19ee9ef i3c_master_do_daa +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xbac55ab7 i3c_driver_unregister +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xc3f3445d i3c_master_enec_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xe24de736 i3c_device_enable_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xe5d3185a i3c_master_get_free_addr +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xf1cc4cfe i3c_device_do_priv_xfers +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xfc6c931c i3c_master_unregister +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xfdeea5d4 i3c_device_get_info +EXPORT_SYMBOL_GPL drivers/iio/accel/adxl372 0x5b9faa96 adxl372_probe +EXPORT_SYMBOL_GPL drivers/iio/accel/adxl372 0x6f51ea8b adxl372_readable_noinc_reg +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x71859587 bmc150_accel_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x77207d9d bmc150_regmap_conf +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xa0d1d26b bmc150_accel_core_probe +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xab5a746e bmc150_accel_core_remove +EXPORT_SYMBOL_GPL drivers/iio/accel/bmi088-accel-core 0x0aa3160c bmi088_accel_core_remove +EXPORT_SYMBOL_GPL drivers/iio/accel/bmi088-accel-core 0x1e475e70 bmi088_accel_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/accel/bmi088-accel-core 0x6fb0e5cc bmi088_accel_core_probe +EXPORT_SYMBOL_GPL drivers/iio/accel/bmi088-accel-core 0xffe1a2f5 bmi088_regmap_conf +EXPORT_SYMBOL_GPL drivers/iio/accel/fxls8962af-core 0x09746ffa fxls8962af_core_probe +EXPORT_SYMBOL_GPL drivers/iio/accel/fxls8962af-core 0x1defa99b fxls8962af_spi_regmap_conf +EXPORT_SYMBOL_GPL drivers/iio/accel/fxls8962af-core 0x9f0a95aa fxls8962af_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/accel/fxls8962af-core 0xbf313d5e fxls8962af_i2c_regmap_conf +EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0x856ffe66 mma7455_core_regmap +EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0xbec50379 mma7455_core_remove +EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0xeaf493d8 mma7455_core_probe +EXPORT_SYMBOL_GPL drivers/iio/adc/ad7091r-base 0x4039ec89 ad7091r_regmap_config +EXPORT_SYMBOL_GPL drivers/iio/adc/ad7091r-base 0xa0081bc1 ad7091r_probe +EXPORT_SYMBOL_GPL drivers/iio/adc/ad7606 0x020e6cb8 ad7606_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/adc/ad7606 0x6a2577cb ad7606_probe +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x34b6dc95 ad_sd_calibrate +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x54898dab ad_sd_write_reg +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x637a38ab ad_sd_validate_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x7b1eb8cd ad_sd_set_comm +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x7b8d4bb9 ad_sigma_delta_single_conversion +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x9ff57523 ad_sd_read_reg +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xb92fbac8 devm_ad_sd_setup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xbd7f5f4e ad_sd_init +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xd753f110 ad_sd_reset +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xf2326322 ad_sd_calibrate_all +EXPORT_SYMBOL_GPL drivers/iio/adc/adi-axi-adc 0xaa4c0148 devm_adi_axi_adc_conv_register +EXPORT_SYMBOL_GPL drivers/iio/adc/adi-axi-adc 0xd1a4c1b4 adi_axi_adc_conv_priv 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 0x74e0757c iio_channel_get_all_cb +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x3b9def4a iio_channel_cb_get_channels EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x7a711aef iio_channel_start_all_cb EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x9acf62ab iio_channel_cb_set_buffer_watermark -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0xa47a800b iio_channel_cb_get_channels -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x0e46148d iio_dma_buffer_block_list_abort -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x593d5348 iio_dma_buffer_set_bytes_per_datum -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x5fc365a3 iio_dma_buffer_disable -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x6325256c iio_dma_buffer_read -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x74a7771f iio_dma_buffer_exit -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x78757446 iio_dma_buffer_set_length -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xb6a45c4c iio_dma_buffer_data_available -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xc1aae05d iio_dma_buffer_request_update -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xcf42ab53 iio_dma_buffer_block_done -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xe198b4d6 iio_dma_buffer_release -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xf3b7e4e5 iio_dma_buffer_init -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xf510897a iio_dma_buffer_enable -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dmaengine 0x9f157c49 devm_iio_dmaengine_buffer_setup -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x1f2514d7 devm_iio_hw_consumer_alloc +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0xa1a83294 iio_channel_cb_get_iio_dev +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0xe83ead0b iio_channel_get_all_cb +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x47412497 iio_dma_buffer_block_done +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x547899be iio_dma_buffer_disable +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x5dd92f62 iio_dma_buffer_data_available +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x703f9ab1 iio_dma_buffer_init +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x8960cf84 iio_dma_buffer_block_list_abort +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x93f0a27e iio_dma_buffer_exit +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xa017f4a7 iio_dma_buffer_set_bytes_per_datum +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xb8a04d52 iio_dma_buffer_request_update +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xdf529523 iio_dma_buffer_read +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xe726f839 iio_dma_buffer_enable +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xf4e62afd iio_dma_buffer_release +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xf9aa0ab1 iio_dma_buffer_set_length +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dmaengine 0x65372589 devm_iio_dmaengine_buffer_setup EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x3391543d iio_hw_consumer_disable +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x53126e28 iio_hw_consumer_alloc EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x9671bc15 iio_hw_consumer_free EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0xbf358fa9 iio_hw_consumer_enable -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0xd95af9b5 iio_hw_consumer_alloc -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-triggered-buffer 0x7b13646b devm_iio_triggered_buffer_setup_ext -EXPORT_SYMBOL_GPL drivers/iio/buffer/kfifo_buf 0xa91390a5 devm_iio_kfifo_buffer_setup_ext -EXPORT_SYMBOL_GPL drivers/iio/chemical/bme680_core 0x47a51edb bme680_core_probe -EXPORT_SYMBOL_GPL drivers/iio/chemical/sps30 0x0977c489 sps30_probe -EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0x5793c216 ad5592r_remove -EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0x9f5ea5aa ad5592r_probe -EXPORT_SYMBOL_GPL drivers/iio/dac/ad5686 0x1ba6adf7 ad5686_remove -EXPORT_SYMBOL_GPL drivers/iio/dac/ad5686 0x84d48248 ad5686_probe -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x05e59671 bmg160_core_remove -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x1e997239 bmg160_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x3ff18cb6 bmg160_core_probe -EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0x62afb399 fxas21002c_core_probe -EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0x7fd049bd fxas21002c_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0xc40199bd fxas21002c_core_remove -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x0aa8da0f __adis_check_status -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x48181fea devm_adis_setup_buffer_and_trigger -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x512e37ad __adis_write_reg -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x805261a0 adis_single_conversion -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x91b5d962 adis_init -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xb36ea357 __adis_initial_startup -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xbd0cfd88 __adis_read_reg -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xc00e1fbf adis_update_scan_mode -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xc3de4dea devm_adis_probe_trigger -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xe2e41e1b __adis_update_bits_base -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xed0e4ee7 __adis_reset -EXPORT_SYMBOL_GPL drivers/iio/imu/bmi160/bmi160_core 0x593a329a bmi160_core_probe -EXPORT_SYMBOL_GPL drivers/iio/imu/fxos8700_core 0xccb9b265 fxos8700_core_probe -EXPORT_SYMBOL_GPL drivers/iio/imu/inv_icm42600/inv-icm42600 0xb314c01c inv_icm42600_core_probe -EXPORT_SYMBOL_GPL drivers/iio/imu/inv_icm42600/inv-icm42600 0xdb319029 inv_icm42600_regmap_config -EXPORT_SYMBOL_GPL drivers/iio/imu/inv_icm42600/inv-icm42600 0xdd306e5e inv_icm42600_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0xcda6fd53 inv_mpu_core_probe -EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0xd3f88a47 inv_mpu_pmops -EXPORT_SYMBOL_GPL drivers/iio/imu/st_lsm9ds0/st_lsm9ds0 0x23d7221b st_lsm9ds0_probe -EXPORT_SYMBOL_GPL drivers/iio/imu/st_lsm9ds0/st_lsm9ds0 0x6e7e7b8f st_lsm9ds0_remove -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x02c3170a iio_write_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0aa860f2 iio_device_id -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x13b0a69b iio_map_array_unregister -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1dfcd8e3 iio_read_channel_average_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x209b9dab iio_channel_release_all -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x255f88d4 iio_read_channel_processed +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0xcd45fd7c devm_iio_hw_consumer_alloc +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-triggered-buffer 0xe4decb8e devm_iio_triggered_buffer_setup_ext +EXPORT_SYMBOL_GPL drivers/iio/buffer/kfifo_buf 0x773d4b77 devm_iio_kfifo_buffer_setup_ext +EXPORT_SYMBOL_GPL drivers/iio/chemical/bme680_core 0xc8d9d528 bme680_core_probe +EXPORT_SYMBOL_GPL drivers/iio/chemical/sps30 0xb5e4879d sps30_probe +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0xcbcc2e4a ad5592r_remove +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0xdb53b34a ad5592r_probe +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5686 0x3bb4ed8d ad5686_remove +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5686 0xc4b6b18a ad5686_probe +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x0afaf4fc bmg160_core_probe +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x7629f1ac bmg160_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xcee62ab5 bmg160_core_remove +EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0x4a63b1ca fxas21002c_core_probe +EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0x68ee652b fxas21002c_core_remove +EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0xb191ba20 fxas21002c_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x1c1d0966 __adis_write_reg +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x2ff10d4a adis_init +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x373281dd __adis_check_status +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x5f4c2e32 adis_update_scan_mode +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x67305d46 adis_single_conversion +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x77f237e2 devm_adis_setup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x9200b250 __adis_read_reg +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xbbc69670 __adis_initial_startup +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xc2bb0eb6 __adis_update_bits_base +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xf1abd89e devm_adis_probe_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xf8c2ca89 __adis_reset +EXPORT_SYMBOL_GPL drivers/iio/imu/bmi160/bmi160_core 0xba88894c bmi160_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/fxos8700_core 0x69b207f3 fxos8700_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_icm42600/inv-icm42600 0xb826dad3 inv_icm42600_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_icm42600/inv-icm42600 0xe681ac8e inv_icm42600_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_icm42600/inv-icm42600 0xfe59beb0 inv_icm42600_regmap_config +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0x1df1805b inv_mpu_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0xbb4809d2 inv_mpu_pmops +EXPORT_SYMBOL_GPL drivers/iio/imu/st_lsm9ds0/st_lsm9ds0 0x5ce5aec2 st_lsm9ds0_remove +EXPORT_SYMBOL_GPL drivers/iio/imu/st_lsm9ds0/st_lsm9ds0 0xe6fa3030 st_lsm9ds0_probe +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0a03f675 devm_iio_channel_get_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x128ca97f iio_device_id +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1750ec24 iio_read_channel_average_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1e575887 iio_dealloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x20865d74 iio_read_channel_offset +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x24218fae iio_read_avail_channel_raw EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x26f6b499 iio_str_to_fixpoint -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2899048d iio_channel_get_all -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x289b72a0 iio_read_channel_offset -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x28ce445f iio_get_channel_type -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2b188f8c iio_buffer_put -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2bf3d2ac devm_of_iio_channel_get_by_name -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3adb1409 of_iio_channel_get_by_name -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3e034ab7 devm_iio_channel_get -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x42697d45 iio_enum_available_read -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4599ebf6 iio_validate_scan_mask_onehot -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4a2f9616 iio_device_release_direct_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2746ae54 iio_device_attach_buffer +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2aa9cd7e iio_push_to_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2f69dfa8 iio_channel_release_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x30058e16 iio_write_channel_ext_info +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3539fff3 iio_enum_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x36b96ec2 iio_get_debugfs_dentry +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x42dfa5b1 iio_read_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x45bc3abc __devm_iio_device_register EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4dce7dd4 iio_format_value -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x50650e1e devm_iio_device_alloc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x507e7e9b iio_map_array_register -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5a3aff7f iio_read_channel_ext_info -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5c5955d8 iio_get_debugfs_dentry -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5cf969c2 iio_push_to_buffers -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6293e0bc iio_read_avail_channel_attribute -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x629c9729 iio_update_buffers -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6e27f100 iio_show_mount_matrix -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x74537b6c iio_read_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7825d94e iio_channel_get -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x79af7b19 iio_device_claim_direct_mode -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x80e2668c iio_write_channel_attribute -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8c9c137c __devm_iio_trigger_register -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x97ff4cea iio_write_channel_ext_info -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9c00eedf devm_iio_trigger_alloc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9ffe3dd5 iio_buffer_get -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa66ee75f iio_dealloc_pollfunc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xafe2ce89 iio_read_channel_attribute -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb330a6d7 iio_get_channel_ext_info_count -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb58e47e2 iio_read_avail_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc7d75f8e __devm_iio_device_register -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc7f4c496 iio_enum_write -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc8e67c42 iio_channel_release -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd026a1e9 iio_read_channel_scale -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd365f988 devm_iio_channel_get_all -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd6c762ea iio_device_attach_buffer -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd84dc1e9 iio_alloc_pollfunc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xec7bf1fa iio_convert_raw_to_processed -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf3c37781 iio_read_max_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf5abda60 iio_read_channel_processed_scale -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf9ecbe5a iio_enum_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x51ff9d40 iio_convert_raw_to_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x583c00c9 iio_map_array_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6110c352 iio_buffer_put +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6e255524 iio_alloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x74024a07 iio_read_channel_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x76c0b9e2 iio_channel_release +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x80a689b7 iio_enum_available_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x813d889e iio_buffer_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x82fa5ca5 devm_iio_device_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x85eba772 iio_channel_get_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x890f5828 iio_map_array_unregister +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8e1403cf iio_get_channel_type +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x910381c3 iio_read_channel_processed_scale +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x91f00f0a of_iio_channel_get_by_name +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x98fca331 iio_read_channel_attribute +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa93e3e1d devm_iio_trigger_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xaba3be33 iio_update_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb1907aa8 iio_device_claim_direct_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xbb74ae48 devm_iio_channel_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xbe1df1f2 iio_write_channel_attribute +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xbe7ae5c0 iio_device_release_direct_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc21e7254 iio_get_channel_ext_info_count +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc4950c6c iio_read_avail_channel_attribute +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xce3af1b2 iio_read_channel_scale +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xcf6ce238 iio_channel_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd0fe6207 iio_read_channel_ext_info +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd1557cf1 iio_validate_scan_mask_onehot +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xeaf71868 iio_write_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf2c0f164 iio_show_mount_matrix +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf6e20b8f iio_read_max_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf8cfe3b9 iio_enum_write +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xfa3c0e07 __devm_iio_trigger_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xfe810f82 devm_of_iio_channel_get_by_name EXPORT_SYMBOL_GPL drivers/iio/magnetometer/rm3100-core 0x0a1424e0 rm3100_volatile_table -EXPORT_SYMBOL_GPL drivers/iio/magnetometer/rm3100-core 0x6bc0d622 rm3100_common_probe +EXPORT_SYMBOL_GPL drivers/iio/magnetometer/rm3100-core 0x72286169 rm3100_common_probe EXPORT_SYMBOL_GPL drivers/iio/magnetometer/rm3100-core 0xaa911f08 rm3100_readable_table EXPORT_SYMBOL_GPL drivers/iio/magnetometer/rm3100-core 0xcc7209be rm3100_writable_table -EXPORT_SYMBOL_GPL drivers/iio/pressure/mpl115 0x6d647a5c mpl115_probe -EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0x4f3a92a5 zpa2326_isreg_readable -EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0x91590f73 zpa2326_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0xbb05597a zpa2326_probe -EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0xc2fea897 zpa2326_isreg_precious -EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0xc4b4881f zpa2326_isreg_writeable -EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0xfaccc753 zpa2326_remove +EXPORT_SYMBOL_GPL drivers/iio/pressure/mpl115 0xf522a521 mpl115_probe +EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0x2d3cee95 zpa2326_isreg_precious +EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0x3b093a98 zpa2326_remove +EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0x569a36d5 zpa2326_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0x6a8ff463 zpa2326_probe +EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0xbb76067d zpa2326_isreg_writeable +EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0xe585ee8a zpa2326_isreg_readable EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x04cf44c7 rtrs_init_hb -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x2b717266 rtrs_post_recv_empty -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x30c64a29 rtrs_iu_post_rdma_write_imm -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x385b0bb1 rtrs_send_hb_ack -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x65fdf33b rtrs_start_hb -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x6b84a5ee rtrs_cq_qp_create -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x748845a4 rtrs_iu_post_recv -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xa338595a rtrs_iu_post_send -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xb11e153c rtrs_iu_free -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xb4d31858 rtrs_stop_hb -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xb727247f rtrs_cq_qp_destroy -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xea835681 rtrs_iu_alloc -EXPORT_SYMBOL_GPL drivers/input/ff-memless 0xf8310e9d input_ff_create_memless -EXPORT_SYMBOL_GPL drivers/input/matrix-keymap 0x4b5863e6 matrix_keypad_parse_properties -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x36fab3dc adxl34x_probe +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x042f6c72 rtrs_start_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x24ba9a04 rtrs_iu_post_recv +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x3fc4ef66 rtrs_send_hb_ack +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x49afc788 rtrs_iu_post_send +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x4ce8d846 rtrs_cq_qp_create +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x63e7a726 rtrs_init_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x6e144a99 rtrs_post_recv_empty +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x7b52018f rtrs_iu_post_rdma_write_imm +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xa82de134 rtrs_iu_free +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xbed83f41 rtrs_cq_qp_destroy +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xe679651c rtrs_iu_alloc +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xf2044e9e rtrs_stop_hb +EXPORT_SYMBOL_GPL drivers/input/ff-memless 0xf17e2be5 input_ff_create_memless +EXPORT_SYMBOL_GPL drivers/input/matrix-keymap 0xf2d56334 matrix_keypad_parse_properties +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x2efb2e1c adxl34x_probe EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x49a4fcbd adxl34x_remove EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x66535a18 adxl34x_suspend EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xe4586827 adxl34x_resume -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x03a69b60 rmi_2d_sensor_rel_report -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x0ad36789 rmi_2d_sensor_abs_process -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x2acd3e6e rmi_driver_suspend -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x2c340698 __rmi_register_function_handler -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x4362bb12 rmi_of_property_read_u32 -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x4d3c0a0f rmi_driver_resume -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x6945488e rmi_unregister_function_handler -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x7c10fbfb rmi_2d_sensor_configure_input -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x921221e7 rmi_register_transport_device -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x9a9d86dd rmi_2d_sensor_of_probe -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xe74a3123 rmi_set_attn_data -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xf1a1a1b1 rmi_2d_sensor_abs_report -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xfed8c003 rmi_dbg -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x609ada10 cyttsp4_remove -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x6b89faae cyttsp4_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xa8f41442 cyttsp4_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x29f0c56e cyttsp_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0xe87fb932 cyttsp_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x616580b4 cyttsp_i2c_write_block_data -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0xf1ab285e cyttsp_i2c_read_block_data -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x2214edd5 tsc200x_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x3675c758 tsc200x_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xbf37f312 tsc200x_remove -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xc16c49ef tsc200x_regmap_config -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x03201927 wm97xx_register_mach_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x229272d6 wm97xx_get_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x2b7c8073 wm9713_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x6bb5c7bf wm97xx_reg_write -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x726a17c6 wm97xx_read_aux_adc -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x7ab64e8a wm97xx_set_suspend_mode -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x9470389a wm97xx_config_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xa8c507f2 wm97xx_set_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xa8f7d9e7 wm97xx_unregister_mach_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xd69fddda wm97xx_reg_read -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xe7d680ed wm9712_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xfa689db7 wm9705_codec +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x069f7d18 rmi_set_attn_data +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x09605411 rmi_of_property_read_u32 +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x35f78ab4 rmi_unregister_function_handler +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x410c207b __rmi_register_function_handler +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x5a26b772 rmi_2d_sensor_abs_report +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x9efb10cd rmi_driver_resume +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xd46e83e7 rmi_2d_sensor_abs_process +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xd98a7af0 rmi_dbg +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xda136866 rmi_2d_sensor_of_probe +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xdb90fd08 rmi_2d_sensor_configure_input +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xe79bc1fc rmi_2d_sensor_rel_report +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xed1135c0 rmi_register_transport_device +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xff74a470 rmi_driver_suspend +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xe24e8cc3 cyttsp4_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xf6d233c1 cyttsp4_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xfc4a3374 cyttsp4_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0xbc3449b8 cyttsp_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0xc33abc54 cyttsp_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x590b687c cyttsp_i2c_write_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x84f3cb2e cyttsp_i2c_read_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x7f0a1774 tsc200x_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x94f3cb47 tsc200x_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xa0a175c6 tsc200x_regmap_config +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xe9af7bb6 tsc200x_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x0fb3ea40 wm9712_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x1125dd42 wm97xx_get_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x120df71a wm9705_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x1697f166 wm97xx_set_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x330ca931 wm97xx_set_suspend_mode +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x532f7442 wm97xx_read_aux_adc +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x6c3e050a wm97xx_config_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x73400d4a wm97xx_reg_read +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x7cd7ea25 wm97xx_unregister_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xc319eade wm9713_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xd3664025 wm97xx_reg_write +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xf4769d56 wm97xx_register_mach_ops EXPORT_SYMBOL_GPL drivers/iommu/iova 0x07fa098a alloc_iova_fast EXPORT_SYMBOL_GPL drivers/iommu/iova 0x192c1467 put_iova_domain EXPORT_SYMBOL_GPL drivers/iommu/iova 0x21f6078d __free_iova @@ -12479,59 +12518,60 @@ EXPORT_SYMBOL_GPL drivers/iommu/iova 0xc7061ef3 iova_cache_put EXPORT_SYMBOL_GPL drivers/iommu/iova 0xdda7295e alloc_iova EXPORT_SYMBOL_GPL drivers/iommu/iova 0xe3c5537e find_iova -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x1a0b60d4 ipack_device_init -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x2c694dd2 ipack_bus_register -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x2e0365f7 ipack_driver_register -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x31508a66 ipack_put_device -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x471872f5 ipack_device_del -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x83bdc6a9 ipack_device_add -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x8a18dedc ipack_get_device -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xc3b2d5a5 ipack_driver_unregister -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xfe5b6160 ipack_bus_unregister -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x93a3c910 led_get_flash_fault -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x981540bb devm_led_classdev_flash_unregister -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xa188586c led_set_flash_timeout -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xb3acad53 devm_led_classdev_flash_register_ext -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xca619615 led_update_flash_brightness -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xdb7e5f07 led_classdev_flash_unregister -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xdea43482 led_classdev_flash_register_ext -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xe570f859 led_set_flash_brightness -EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x6fd33f99 led_mc_calc_color_components -EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x84cdbeaa led_classdev_multicolor_register_ext -EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0xa96376e9 devm_led_classdev_multicolor_unregister -EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0xb893168e devm_led_classdev_multicolor_register_ext -EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0xea0b0639 led_classdev_multicolor_unregister -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x069b9a98 lp55xx_register_sysfs -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x0d2bb600 lp55xx_update_bits -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x2ab3561e lp55xx_deinit_device -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x529bd184 lp55xx_of_populate_pdata -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x6490736c lp55xx_read -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x68e2c41d lp55xx_register_leds -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xbf31ac5b lp55xx_is_extclk_used -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xef3c5683 lp55xx_unregister_sysfs -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xef7ad890 lp55xx_write -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xf7913a13 lp55xx_init_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x0c27b7bb ipack_bus_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x1b6f9163 ipack_driver_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x2357d957 ipack_get_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x2fd86ae1 ipack_bus_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x92bd594b ipack_put_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x938b4256 ipack_device_del +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xaa78e9c3 ipack_device_init +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xb74df941 ipack_device_add +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xda4c19b8 ipack_driver_register +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x4b5c6e5a led_set_flash_timeout +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x60b08fa8 led_update_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x6fdfcf33 led_get_flash_fault +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x7da42a4c led_classdev_flash_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xa086cefd devm_led_classdev_flash_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xac037d9a led_classdev_flash_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xb3450129 devm_led_classdev_flash_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xc42921b7 led_set_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x28ca775f led_classdev_multicolor_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x73f6d4c7 led_classdev_multicolor_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x9da51d72 devm_led_classdev_multicolor_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0xa5c61542 led_mc_calc_color_components +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0xdba9cfe0 devm_led_classdev_multicolor_register_ext +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x1365c452 lp55xx_read +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x2a993465 lp55xx_is_extclk_used +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x2b9f9b96 lp55xx_register_leds +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x345cadba lp55xx_write +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x53034366 lp55xx_init_device +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x72d331b8 lp55xx_register_sysfs +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xad0ce2a3 lp55xx_of_populate_pdata +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xc9e140d9 lp55xx_deinit_device +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xd1194482 lp55xx_unregister_sysfs +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xfd2d8226 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/macintosh/windfarm_core 0x0a0527be wf_register_client -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x289b7778 wf_unregister_sensor -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x3a1352e1 wf_get_control +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x0aa28bba wf_put_sensor +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x65b050d4 wf_unregister_control EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x75147afa wf_set_overtemp -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xa00018cc wf_unregister_control -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xba1b90cc wf_put_control +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x802b4dd2 wf_unregister_sensor +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x8e7405f4 wf_register_sensor +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x90a4cd10 wf_get_control +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x9ac0fe07 wf_get_sensor EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xbcace2a5 wf_unregister_client -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xc49a6cd1 wf_get_sensor -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xc7b0988b wf_put_sensor -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xe6365d21 wf_register_sensor +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xbcdb6c0b wf_register_control +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xbfc7d709 wf_put_control EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xed82a14f wf_clear_overtemp -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xef592371 wf_register_control 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 0x0af55263 __traceiter_bcache_journal_write EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0bc0be45 __SCK__tp_func_bcache_bypass_sequential -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0bdfac40 __traceiter_bcache_bypass_sequential +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0ec61d01 __traceiter_bcache_btree_cache_cannibalize 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 @@ -12543,109 +12583,108 @@ 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 0x2446f648 __traceiter_bcache_btree_read 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 0x3257d343 __tracepoint_bcache_gc_copy +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3748a085 __traceiter_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x378398b7 __traceiter_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x38a991d9 __traceiter_bcache_btree_node_alloc 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 0x4b7be74e __traceiter_bcache_btree_set_root -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4c1cbadb __traceiter_bcache_gc_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4d92c071 __traceiter_bcache_btree_insert_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4f6ef993 __traceiter_bcache_btree_node_free 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 0x57b73867 __traceiter_bcache_btree_node_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5b856ab5 __traceiter_bcache_journal_full EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5cc8cb86 __tracepoint_bcache_btree_insert_key EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5d9c8fc8 __SCK__tp_func_bcache_cache_insert EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 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 0x62c9c67b __traceiter_bcache_read 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 0x67369cd3 __traceiter_bcache_alloc_fail EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x690dd415 __tracepoint_bcache_btree_node_alloc -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x69965143 __traceiter_bcache_read_retry -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6bc7f13f __traceiter_bcache_btree_node_split EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6e74dca7 __SCK__tp_func_bcache_btree_node_free -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x701445cb __traceiter_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x70c981bf __traceiter_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x784ff51a __traceiter_bcache_btree_node_compact 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 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 0x8ad20d61 __SCK__tp_func_bcache_request_start -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8c7bc007 __traceiter_bcache_gc_start EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x902cb523 __tracepoint_bcache_gc_copy_collision -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x915e745f __traceiter_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9059035d __traceiter_bcache_gc_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x90b2e670 __traceiter_bcache_request_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9737336e __traceiter_bcache_write 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 0x9cbaf105 __traceiter_bcache_journal_write EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9ce21c84 __SCK__tp_func_bcache_journal_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa0de5bd1 __traceiter_bcache_btree_read 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 0xa64134e4 __SCK__tp_func_bcache_journal_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa820a4ad __traceiter_bcache_btree_node_split EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa842a5c8 __SCK__tp_func_bcache_invalidate -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa8c0fd58 __traceiter_bcache_btree_cache_cannibalize -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xaa32f27a __traceiter_bcache_bypass_congested +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa94d8e2c __traceiter_bcache_gc_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xab6ba2dc __traceiter_bcache_read_retry EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xad6440b4 __traceiter_bcache_gc_copy -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xae5fae1e __traceiter_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb1a24ba9 __traceiter_bcache_bypass_congested +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb4cf36bd __traceiter_bcache_invalidate EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb5a62a8c __traceiter_bcache_cache_insert -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb78e9399 __traceiter_bcache_btree_node_alloc 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 0xbac8bb52 __traceiter_bcache_btree_insert_key EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xbc268695 __tracepoint_bcache_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xbe7bbadb __traceiter_bcache_journal_full EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc1857470 __tracepoint_bcache_bypass_congested -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc595adc1 __traceiter_bcache_btree_node_compact +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc6bf5ba4 __traceiter_bcache_btree_set_root EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc78d7102 __tracepoint_bcache_invalidate -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc85a8a2a __traceiter_bcache_request_end EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc8ae4213 __SCK__tp_func_bcache_btree_node_alloc EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xce48d6f4 __tracepoint_bcache_alloc_fail EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xda06fe86 __SCK__tp_func_bcache_btree_node_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xda5fdaae __traceiter_bcache_journal_entry_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xdd016264 __traceiter_bcache_journal_entry_full EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe16c06b3 __SCK__tp_func_bcache_gc_start EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe202b8e6 __tracepoint_bcache_bypass_sequential -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe73c7653 __traceiter_bcache_read EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xec29e22a __traceiter_bcache_gc_copy_collision EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xec92a163 __SCK__tp_func_bcache_btree_cache_cannibalize EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xed37c90e __tracepoint_bcache_cache_insert -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xed7bee84 __traceiter_bcache_btree_node_free EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xee55d047 __tracepoint_bcache_journal_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xeeec14ed __traceiter_bcache_alloc_fail EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xef7eec02 __tracepoint_bcache_btree_gc_coalesce +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf2c0b786 __traceiter_bcache_bypass_sequential 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 0xf9cc0a18 __traceiter_bcache_write 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 0x063cf61a dm_cell_visit_release EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x17dd39d6 dm_deferred_set_create +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x1b2adf74 dm_cell_quiesce_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x23414967 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 0x34fc2040 dm_bio_detain -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x446e33ce dm_cell_visit_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x5a3bc273 dm_cell_get_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x392f5c0c dm_get_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x3c1e3117 dm_cell_error +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x54353fda dm_cell_unlock_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x63cbd2cf dm_bio_prison_free_cell_v2 EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x6791a44e dm_deferred_entry_dec -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x718505e4 dm_cell_promote_or_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x6e9e1d8a dm_cell_promote_or_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x70aae71c dm_cell_release EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x753e20b2 dm_bio_prison_create -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x7a612e34 dm_bio_prison_free_cell_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x82d7dbea dm_cell_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x87e88dfc dm_cell_error -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xa169acdb dm_get_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xa8993049 dm_cell_put_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xa8a66444 dm_bio_prison_alloc_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xac5c415a dm_bio_prison_free_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x83667423 dm_bio_detain +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x84110464 dm_cell_put_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x9540f030 dm_cell_lock_promote_v2 EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xace9b57b dm_bio_prison_destroy_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb371b870 dm_cell_lock_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 0xbc02115e dm_cell_unlock_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb70e4472 dm_cell_lock_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb9d4ef4e dm_cell_get_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xbed1188a dm_bio_prison_alloc_cell EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xca2e3a88 dm_deferred_entry_inc -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xcaabd0ce dm_cell_quiesce_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xd2cbdc9b dm_cell_lock_promote_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xcec5e089 dm_cell_release_no_holder EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xd99e003d dm_bio_prison_create_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xdbabc507 dm_bio_prison_alloc_cell_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xe94aba53 dm_cell_release_no_holder +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xdefa7cf0 dm_bio_prison_alloc_cell_v2 EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x0ad0dc4f dm_bufio_mark_buffer_dirty EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x111ab12a dm_bufio_mark_partial_buffer_dirty EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x24772bfe dm_bufio_get @@ -12659,8 +12698,8 @@ EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xa82b2066 dm_bufio_write_dirty_buffers EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xb04f56ab dm_bufio_read EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xb2438d54 dm_bufio_release_move +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xbed05f21 dm_bufio_client_create EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xc0d7df85 dm_bufio_new -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xc0ffb794 dm_bufio_client_create EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xc90df7e5 dm_bufio_prefetch EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xc9a3422d dm_bufio_write_dirty_buffers_async EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xcd2ba798 dm_bufio_forget @@ -12672,48 +12711,47 @@ 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 0x0efbca4c btracker_promotion_already_present +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x33e0797a dm_cache_policy_unregister EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x5adc2807 btracker_destroy EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x5de611a9 btracker_nr_writebacks_queued -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x73dc12f0 dm_cache_policy_register EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x7890d535 dm_cache_policy_get_name EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x87bee547 btracker_queue EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x890723f7 dm_cache_policy_get_version 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 0xadbefda4 dm_cache_policy_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xb5c4dc64 dm_cache_policy_register EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xbf1a2968 btracker_create -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xc043a56d dm_cache_policy_unregister EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xccfe6409 btracker_nr_demotions_queued EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xcf8c2590 dm_cache_policy_get_hint_size EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xe1bdae47 dm_cache_policy_create -EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x524b5b9b dm_register_path_selector -EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x8c9281c4 dm_unregister_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x1a501605 dm_unregister_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0xffa61279 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 0x2e2a36c4 dm_rh_delay EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x38972f23 dm_rh_region_to_sector EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x38efaf5a dm_region_hash_destroy EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x3a18389a dm_rh_update_states -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x4b2d3960 dm_rh_inc_pending +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x43748bbd dm_rh_delay EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x57e16c3e dm_rh_get_state EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x5f4a6e61 dm_rh_dec -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x70de41f5 dm_rh_bio_to_region +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x76ad58a5 dm_rh_mark_nosync EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7774620f dm_rh_stop_recovery EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7d053fc5 dm_rh_start_recovery EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7d5e1815 dm_rh_get_region_key -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x956983a2 dm_rh_mark_nosync +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x8c7f6af0 dm_region_hash_create +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x8e75aa3e dm_rh_inc_pending EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa53387c7 dm_rh_flush +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa5bac3be dm_rh_dirty_log EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa83588eb dm_rh_recovery_end EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xbe38a431 dm_rh_recovery_prepare -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xd5ccb46d dm_rh_dirty_log +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xc8fc2e93 dm_rh_bio_to_region EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xd8aa4284 dm_rh_region_context -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xd99b5474 dm_region_hash_create 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 EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x11fbbe02 dm_bitset_set_bit EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x15085586 dm_btree_cursor_begin EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x1816383d dm_btree_find_highest_key -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x1828c628 dm_block_manager_create 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 0x1ba7cc87 dm_array_new EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x1e3f728d dm_block_data @@ -12761,6 +12799,7 @@ EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x9290e07a dm_tm_read_lock EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x932a6ffc dm_tm_shadow_block EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x9341b376 dm_bitset_cursor_get_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x9596704f dm_block_manager_create EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x95a52abd dm_bm_is_read_only EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x9718cffa dm_sm_disk_open EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x9955fef4 dm_bitset_cursor_begin @@ -12783,75 +12822,75 @@ EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xe8438eb5 dm_array_del EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf82dba90 dm_btree_empty EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xfce51d79 dm_array_empty -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x0f31535a cec_delete_adapter -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x1ac72566 cec_s_log_addrs -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x33f4aaf4 cec_queue_pin_cec_event -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x3a3d9ce0 cec_queue_pin_5v_event -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x3a75b1c1 cec_notifier_cec_adap_register -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x3e159fe6 cec_transmit_msg -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x3e1d8e76 cec_register_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x0456bf55 cec_notifier_parse_hdmi_phandle +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x1062ddac cec_notifier_conn_register +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x175edef1 cec_transmit_done_ts +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x2492ae8a cec_s_phys_addr_from_edid +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x2d460099 cec_fill_conn_info_from_drm +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x2fbf57cd cec_notifier_cec_adap_register +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x314e295e cec_allocate_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x3f793361 cec_queue_pin_cec_event +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x442a34a1 cec_queue_pin_hpd_event +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x548003d4 cec_s_log_addrs +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x5ef458f3 cec_transmit_attempt_done_ts +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x626ab42d cec_s_conn_info EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x67e1dfdc cec_notifier_set_phys_addr_from_edid -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x68b3f565 cec_s_conn_info -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x75116330 cec_s_phys_addr -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x8be798d2 cec_notifier_parse_hdmi_phandle -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x8d63571f cec_notifier_cec_adap_unregister -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x990d120e cec_notifier_conn_register +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x69fef6c4 cec_received_msg_ts EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xa01fbb6b cec_notifier_set_phys_addr -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xa64b18ad cec_s_phys_addr_from_edid -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xae3fc7e3 cec_unregister_adapter EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xaee236c6 cec_notifier_conn_unregister -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xb45ec8b1 cec_fill_conn_info_from_drm +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xb5af0f88 cec_unregister_adapter EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xbe4de675 cec_get_edid_phys_addr -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xd8e46b06 cec_queue_pin_hpd_event -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xe5d62121 cec_transmit_attempt_done_ts -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xe9f8db56 cec_transmit_done_ts -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xf5048dcf cec_received_msg_ts -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xfb1e4f1d cec_allocate_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xc96759c1 cec_notifier_cec_adap_unregister +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xcc5291af cec_delete_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xd45e1ab6 cec_queue_pin_5v_event +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xdc533bdb cec_register_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xe2de6fc6 cec_transmit_msg +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xe7958165 cec_s_phys_addr EXPORT_SYMBOL_GPL drivers/media/common/b2c2/b2c2-flexcop 0x66c0289a b2c2_flexcop_debug -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x146165cf saa7146_wait_for_debi_done -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x1ce9a35c saa7146_vfree_destroy_pgtable -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x6088a5ca saa7146_pgtable_free -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x6a287f3b saa7146_pgtable_build_single -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xa214387d saa7146_unregister_extension -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xad320c98 saa7146_pgtable_alloc -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xd8739382 saa7146_setgpio -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xdddb2418 saa7146_vmalloc_build_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x1f29963c saa7146_vmalloc_build_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x25f93d08 saa7146_vfree_destroy_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x475281ea saa7146_pgtable_free +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x6edc9d46 saa7146_pgtable_build_single +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x751b0bb2 saa7146_pgtable_alloc +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x8b10f905 saa7146_unregister_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xa15e6fbc saa7146_i2c_adapter_prepare +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xbaa9f9a0 saa7146_setgpio +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xc0364a9f saa7146_register_extension EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe3cd9b5c saa7146_debug -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xf3339773 saa7146_register_extension -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xf615d96a saa7146_i2c_adapter_prepare -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x3f75497a saa7146_register_device -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x47b2168f saa7146_stop_preview -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x4d7cb421 saa7146_vv_release -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x6cfdf46a saa7146_vv_init -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x7a7631c6 saa7146_set_hps_source_and_sync -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xa56c7086 saa7146_unregister_device -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xd291a2ed saa7146_start_preview -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x06df1e7d sms_board_led_feedback -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x0d487848 smscore_putbuffer -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x115d0530 smscore_register_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x15c17c92 smscore_start_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x20149060 smscore_get_device_mode +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xf92e035a saa7146_wait_for_debi_done +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x48511204 saa7146_register_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x7a09661b saa7146_stop_preview +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x84c445fe saa7146_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xa665c5c7 saa7146_start_preview +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xcd9f5e0f saa7146_set_hps_source_and_sync +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xd06e8fac saa7146_vv_release +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xd225962f saa7146_vv_init +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x1338f91c smscore_onresponse EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x21e36bf2 smscore_registry_getmode -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x2a02a176 smscore_register_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x25460780 smscore_unregister_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x2df268db smscore_register_hotplug EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x34bf0e61 smscore_translate_msg EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x37d91069 smsendian_handle_tx_message EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x45284ae9 smsendian_handle_rx_message -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x53dfb9a5 sms_board_lna_control -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x65324210 sms_board_power -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x6e35d2f8 smscore_register_hotplug -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7056b94f smscore_get_board_id -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x70c8abcc smscore_onresponse -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x710034dd smscore_set_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x489cc1c0 smscore_register_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x58d73541 smscore_get_board_id EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x74ee9098 sms_board_load_modules EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7c576277 smsendian_handle_message_header EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x844539ae sms_get_board -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x92f6c918 smscore_unregister_hotplug -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x9454eb99 smscore_unregister_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x96fe654b sms_board_event +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x8b968f6d smscore_set_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x97470afe sms_board_led_feedback EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x99a81ab3 smsclient_sendrequest -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xb28a7103 sms_board_setup +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xa8bf2c41 smscore_get_device_mode +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xaadf234b smscore_register_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xb6860240 sms_board_setup +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbba3f63e sms_board_event EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbbdb5c42 smscore_unregister_client -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xedec68bf smscore_getbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbc3824f2 smscore_start_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xd37891af smscore_putbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xf096e9de smscore_getbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xf25f2fcd smscore_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xf7a1991a sms_board_lna_control +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xffbdb4d4 sms_board_power EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x03005a48 tpg_alloc EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x040dc7cd tpg_aspect_strings EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x4d1d285c tpg_init @@ -12869,319 +12908,319 @@ EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xce8159bb tpg_pattern_strings EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xf4aef3a4 tpg_gen_text EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xf65c5e46 tpg_fillbuffer -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x01240a8e __traceiter_vb2_dqbuf EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x07729fd4 __SCK__tp_func_vb2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x124da640 vb2_request_buffer_cnt -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x17ed6548 vb2_write -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x1c4671be __traceiter_vb2_buf_done -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x1c7d3025 vb2_thread_stop -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x242ad6ea vb2_core_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x119345ff vb2_core_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x1e637e49 vb2_thread_start 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 0x2e20f23e vb2_core_streamon -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x2fb2dc3a vb2_core_streamoff -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x436f32a7 __traceiter_vb2_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x472dd6a2 vb2_core_poll -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x4a52977f __traceiter_vb2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x568f0037 vb2_core_create_bufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x5aec8923 vb2_core_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x2924bd75 vb2_buffer_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x2af44767 vb2_core_streamoff +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x2bf7e24a vb2_plane_cookie +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x3b343935 vb2_wait_for_all_buffers +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x450a1b43 vb2_core_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x46524f95 vb2_core_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x46b4c7b1 __traceiter_vb2_buf_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x481ed91a vb2_core_create_bufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x48d7df5b vb2_core_queue_init +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x4938e52f vb2_core_queue_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x628134ef __traceiter_vb2_qbuf EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x630b24d3 __tracepoint_vb2_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x6c043bf4 vb2_core_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x72e1d093 vb2_core_querybuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x7faed2c1 vb2_buffer_done -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x80ddc378 vb2_queue_error -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x81693651 vb2_mmap -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x81d768e8 vb2_thread_start -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x83d9114d vb2_discard_done -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x868544c6 vb2_core_queue_release -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x951225a0 vb2_core_expbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xacb820fd vb2_core_queue_init +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x69268cfb vb2_core_querybuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x8b75c7a5 vb2_thread_stop +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x97c5ca2d __traceiter_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x9dbb70a7 vb2_discard_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xa287a7be vb2_mmap +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xaea2f5f6 vb2_queue_error +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xb2c44cd6 vb2_write 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 0xbc7e7aca vb2_plane_vaddr -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xc772618f vb2_read +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xbd8a5979 vb2_core_expbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xc439f38e vb2_request_buffer_cnt +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xc51deed9 vb2_core_prepare_buf 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 0xd1beba6f vb2_wait_for_all_buffers -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xe8b2fd63 vb2_plane_cookie -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xf3dcbcf4 vb2_core_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xceb3348e __traceiter_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xd925cd0f vb2_read +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xdff40119 vb2_core_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xe32f4044 vb2_core_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xf6b1f93c 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 0xfa8d30ed vb2_request_object_is_buffer -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0x660fa756 vb2_dma_contig_memops -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0xccfa5a4b vb2_dma_contig_set_max_seg_size -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-sg 0xad56a66d vb2_dma_sg_memops -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-memops 0xcf19a28e vb2_common_vm_ops -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x08d29885 vb2_fop_mmap -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x094fa2dc _vb2_fop_release -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x154fa256 vb2_ioctl_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x15bc85a5 vb2_ioctl_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x177065bb vb2_video_unregister_device -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x18cfcb33 vb2_ops_wait_finish -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x22986617 vb2_ioctl_reqbufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x23daef4b vb2_streamon -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x265de255 vb2_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x2771ea8a vb2_fop_read -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x46bf1020 vb2_queue_change_type -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x47066e3f vb2_request_queue -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x4a5b64fc vb2_fop_release -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x4a630529 vb2_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x6e7eb6fd vb2_find_timestamp -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x830e8755 vb2_ops_wait_prepare -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x83f97ea9 vb2_expbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x841ec189 vb2_streamoff -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x8ad36590 vb2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x903bd891 vb2_queue_init -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x904c3014 vb2_request_validate -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x9b16385f vb2_create_bufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x9c6f6132 vb2_poll -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xa06c4e40 vb2_ioctl_querybuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xa0cde6a7 vb2_ioctl_streamoff -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xae582734 vb2_ioctl_create_bufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xbb0463dc vb2_reqbufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xcf8bd5f0 vb2_ioctl_streamon -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xd6935e55 vb2_queue_release -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xd7d8884e vb2_fop_write -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xdcc47431 vb2_ioctl_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xe1ca6c2e vb2_ioctl_expbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xe98425a6 vb2_fop_poll -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xfe12a682 vb2_queue_init_name -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-vmalloc 0x4a73317e vb2_vmalloc_memops -EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0x168d5a3f dvb_module_release -EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0x2d37b95e dvb_module_probe -EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0xa92480e6 dvb_create_media_graph -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/as102_fe 0x0a317155 as102_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24117 0x95c7e929 cx24117_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/gp8psk-fe 0x379b70ba gp8psk_fe_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mxl5xx 0x0cd379f7 mxl5xx_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0910 0x57c8f8d2 stv0910_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv6111 0x24694929 stv6111_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0xdc765f5e tda18271c2dd_attach -EXPORT_SYMBOL_GPL drivers/media/i2c/aptina-pll 0x0b8200c6 aptina_pll_calculate -EXPORT_SYMBOL_GPL drivers/media/i2c/ccs-pll 0x1f1ebddf ccs_pll_calculate -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x01e7e5a1 max9271_verify_id -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x2791b043 max9271_set_translation -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x27fbb456 max9271_set_gpios -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x5e647dff max9271_set_high_threshold -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x5eb2b54e max9271_configure_gmsl_link -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x62df296d max9271_enable_gpios -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x7ae9f053 max9271_clear_gpios -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xcf070c27 max9271_set_deserializer_address -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xdfa6e946 max9271_wake_up -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xe06a776e max9271_set_serial_link -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xe8562f47 max9271_configure_i2c -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xf062708e max9271_set_address -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xf34ddf99 max9271_disable_gpios -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x07004605 media_devnode_remove -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x0b34d751 media_create_pad_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x16320007 media_remove_intf_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x20379b7d media_get_pad_index -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x21681344 media_device_delete -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x2634efa0 __media_remove_intf_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x263811c3 media_create_pad_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x3caf5f55 media_entity_remove_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x3ec6a7cf media_device_usb_allocate -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x468ef640 __media_remove_intf_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x4c1eed04 media_request_object_complete -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x4de2aeb3 media_device_unregister_entity -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x535ce732 media_device_unregister_entity_notify -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x549cf045 media_graph_walk_cleanup -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x579822ed media_entity_setup_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x63ede56f media_graph_walk_next -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x6c238705 media_graph_walk_start -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x6caa6343 media_device_register_entity -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x873ce604 media_entity_remote_pad -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x898618f1 media_device_cleanup -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x8ae4b725 media_device_unregister -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x8e846733 __media_entity_setup_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x8fbf11ba __media_entity_remove_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x9391657c media_entity_find_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x9b0abd36 __media_pipeline_start -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x9ba96455 __media_device_usb_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x9ca59459 media_remove_intf_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xa1b20ad8 media_device_register_entity_notify -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xa21ed3cd media_request_object_unbind -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xa4c56d15 media_graph_walk_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xa5915820 media_entity_pads_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xa641cde0 media_request_object_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xabe59971 media_entity_get_fwnode_pad -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xad5eb782 media_pipeline_start -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xae670500 __media_pipeline_stop -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xb3e11229 media_request_object_put -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xb50a90f5 media_create_intf_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xbcce0bea media_device_pci_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc13d27a6 media_devnode_create -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc19518d7 media_device_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xcfb0a507 __media_device_register -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xda206057 media_request_object_find -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe5bdcc6b media_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xfc4cc4ef vb2_plane_vaddr +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0x01c1f718 vb2_dma_contig_set_max_seg_size +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0x0dcb75f7 vb2_dma_contig_memops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-sg 0x486890e8 vb2_dma_sg_memops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-memops 0x61e79126 vb2_common_vm_ops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x02a1e9a0 vb2_ops_wait_prepare +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x08e06740 vb2_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x0b929a17 vb2_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x1a9ecc68 vb2_request_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x202f8210 vb2_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x209bddd9 vb2_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x2c4c9c53 vb2_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x3375c491 vb2_create_bufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x368ee71f vb2_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x39087232 vb2_ops_wait_finish +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x419f04e4 vb2_queue_init_name +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x4318fc3e vb2_queue_init +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x44d4baee _vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x48566bc4 vb2_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x512e8c30 vb2_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x5206f341 vb2_fop_write +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x55ad7474 vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x5bedd429 vb2_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x5f61472d vb2_video_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x68d38bc2 vb2_fop_read +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x8635be35 vb2_expbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x8757d949 vb2_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x8a02aa9c vb2_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xb58314dc vb2_fop_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xbc981289 vb2_queue_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xbee1f927 vb2_request_validate +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xc0a25a4a vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xc1fee3fa vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xc4c49664 vb2_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xcd6024d9 vb2_queue_change_type +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xcde6fd8f vb2_find_timestamp +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xdc77564c vb2_streamoff +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xe1374deb vb2_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xffe42afd vb2_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-vmalloc 0xd74478e7 vb2_vmalloc_memops +EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0x28a6bc1e dvb_module_probe +EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0x5140845d dvb_create_media_graph +EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0xf0ce4f66 dvb_module_release +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/as102_fe 0x668d5e63 as102_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24117 0xde46650d cx24117_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/gp8psk-fe 0x92a441b3 gp8psk_fe_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mxl5xx 0x3a8628e7 mxl5xx_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0910 0xc108d60f stv0910_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv6111 0x4bbf7eb3 stv6111_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0x415d9e1d tda18271c2dd_attach +EXPORT_SYMBOL_GPL drivers/media/i2c/aptina-pll 0x73fd0226 aptina_pll_calculate +EXPORT_SYMBOL_GPL drivers/media/i2c/ccs-pll 0xbd883247 ccs_pll_calculate +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x0464136b max9271_set_high_threshold +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x091d5ed6 max9271_set_deserializer_address +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x0c22c50e max9271_set_serial_link +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x6169501e max9271_clear_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x6aad8cdd max9271_configure_i2c +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x6e5ec240 max9271_set_address +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x8aa79130 max9271_set_translation +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x9f39f03e max9271_configure_gmsl_link +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xbc1b686f max9271_wake_up +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xcdc32d16 max9271_disable_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xea2da366 max9271_verify_id +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xed74216d max9271_set_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xf2e1cf22 max9271_enable_gpios +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x0b1889bb media_request_object_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x0ea6ec91 media_device_unregister_entity_notify +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x10af95b9 __media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x11d27959 media_device_cleanup +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x1393756f media_device_register_entity_notify +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x29adeeba media_graph_walk_next +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x2e39681c __media_device_register +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x42ef369f media_create_pad_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x43446d42 media_entity_get_fwnode_pad +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x4a8afaee media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x4ce03d6c media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x5e345ad8 __media_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x60614f55 media_request_put +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x61dd6766 __media_remove_intf_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x626231c6 media_create_intf_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x67c68079 media_request_object_find +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x6e32b57f media_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7117a3e3 media_devnode_remove +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7a37acb0 media_device_register_entity +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7a3edd97 media_graph_walk_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7ba82ed0 media_remove_intf_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7ef78b52 media_device_unregister_entity +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x82a9b2d9 media_device_unregister +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x83e928da __media_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x87a6499e media_devnode_create +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x8f1def2f media_graph_walk_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xa14416af media_request_get_by_fd +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xa20b3d54 media_create_pad_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xa615c522 media_request_object_put +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xa98f7d41 media_request_object_unbind +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xb09e5532 __media_device_usb_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xbb205665 media_request_object_bind +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xbf4cca20 media_remove_intf_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc32f3058 media_get_pad_index +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc545e282 media_device_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xcf855e97 media_entity_pads_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xcfb48679 media_entity_find_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd32b990f media_graph_walk_cleanup +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd4267330 media_device_delete +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe37df678 __media_entity_remove_links EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe5ceecd6 media_entity_enum_cleanup -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe5f788b3 media_request_get_by_fd -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xed970839 media_request_object_bind -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xfa5105f8 media_request_put +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe639197a media_device_usb_allocate +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xed9d5edb media_entity_remote_pad +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xee9bae79 media_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf7cefa84 __media_remove_intf_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf8cd5585 media_device_pci_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf8daf7cf media_request_object_complete EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xfc781c47 __media_entity_enum_init -EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0x7fd01d4e cx88_setup_xc3028 -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x01db06b8 mantis_input_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x14a18a64 mantis_gpio_set_bits -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x3cc7394f mantis_i2c_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x452aba3c mantis_input_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x57f1b597 mantis_frontend_soft_reset -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x5c1d8874 mantis_dvb_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x5c53fa6f mantis_stream_control -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x68551725 mantis_dma_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x81359055 mantis_ca_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x910050a4 mantis_dma_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x9bfa7149 mantis_ca_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xa548cff5 mantis_dvb_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xad05193e mantis_frontend_power -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xbb00fa1c mantis_pci_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xc0d86a58 mantis_pci_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xc5927ece mantis_i2c_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xcc831ac7 mantis_uart_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xde5ae6ae mantis_uart_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xf6fa2747 mantis_get_mac -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x139c6e74 saa7134_s_std -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x3c256362 saa7134_ts_qops -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x4122d302 saa7134_g_frequency -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x6782a4a4 saa7134_g_std -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x684f5e27 saa7134_querycap -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x6b0da6f3 saa7134_ts_start_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x6bfffebe saa7134_enum_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x70eca51a saa7134_s_tuner -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x7d546d5d saa7134_vb2_buffer_queue -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x82c53e5f saa7134_g_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x8368299c saa7134_g_tuner -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x97b7555e saa7134_ts_buffer_init -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xa76fb27f saa7134_s_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xd4267477 saa7134_querystd -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xda2c2d16 saa7134_stop_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xdce62517 saa7134_s_frequency -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xdec02f39 saa7134_ts_queue_setup -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xf9136d56 saa7134_ts_stop_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xfeffde09 saa7134_ts_buffer_prepare -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x247cc721 ttpci_budget_debiread -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x4cad1b1b ttpci_budget_debiwrite +EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0xdf881a61 cx88_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x15e2feb7 mantis_input_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x2fe4f79a mantis_get_mac +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x31f829c9 mantis_frontend_power +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x61bb3e36 mantis_uart_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x6ec25d3e mantis_stream_control +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x6f55093d mantis_input_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xa5cff90e mantis_gpio_set_bits +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xbc89f463 mantis_pci_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xbe748386 mantis_frontend_soft_reset +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xc9c90070 mantis_dvb_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xca9c8f32 mantis_i2c_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xd12da75a mantis_uart_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xd89401ca mantis_dma_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xe1e86b3a mantis_dvb_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xe2bde478 mantis_i2c_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xf0b56a80 mantis_dma_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xf17a056b mantis_pci_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xf301b24a mantis_ca_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xf7621b40 mantis_ca_exit +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x04f3f360 saa7134_s_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x1ff13793 saa7134_ts_buffer_prepare +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x289da7a1 saa7134_enum_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x29bbac0f saa7134_s_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x4077271e saa7134_g_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x45a3067e saa7134_g_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x6c5429e3 saa7134_ts_queue_setup +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x7ee07018 saa7134_ts_qops +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x7faeb8ca saa7134_querystd +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x81540ef7 saa7134_ts_start_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x969717de saa7134_s_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xa0aa237c saa7134_ts_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xaeef381b saa7134_ts_buffer_init +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xb49eb788 saa7134_querycap +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xcf2507f8 saa7134_vb2_buffer_queue +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xd0e7c6cd saa7134_s_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xd96469fe saa7134_g_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xf437ec10 saa7134_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xfeeed3cb saa7134_g_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x10beb233 ttpci_budget_debiwrite +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x49633534 ttpci_budget_deinit +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x5c72bb45 ttpci_budget_irq10_handler EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x7948c222 budget_debug -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x8d78f188 ttpci_budget_init -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xa128fce1 ttpci_budget_set_video_port -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xe42d1561 ttpci_budget_init_hooks -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xea52d253 ttpci_budget_irq10_handler -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xf9fbde8d ttpci_budget_deinit -EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0x611e3136 mccic_shutdown -EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0xa1be5f83 mccic_register -EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0xaf719251 mccic_suspend -EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0xc6ac74f5 mccic_resume -EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0xea867846 mccic_irq -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x05c4b0c0 xvip_cleanup_resources -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x3cdedd2b xvip_clr_and_set +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x9ad07c11 ttpci_budget_set_video_port +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xdbdfee4e ttpci_budget_init +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xe122b296 ttpci_budget_debiread +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xfb0ba99b ttpci_budget_init_hooks +EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0x4672a6d6 mccic_register +EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0x4e6943f5 mccic_suspend +EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0xa56b1384 mccic_resume +EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0xb30c67a6 mccic_shutdown +EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0xf8e7478b mccic_irq +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x148322ef xvip_cleanup_resources +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x2e5c3a9d xvip_of_get_format EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x43738fab xvip_set_format_size -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x509231e3 xvip_enum_mbus_code -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x562deb91 xvip_init_resources -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x5c8a3aac xvip_of_get_format -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xab33d756 xvip_clr_or_set -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xae3d1507 xvip_enum_frame_size +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x68730ee4 xvip_clr_and_set +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xa777cd98 xvip_enum_frame_size EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xb67940fb xvip_get_format_by_fourcc +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xc9077a4f 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 0xe831ad62 xvip_init_resources +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xfe131d55 xvip_enum_mbus_code EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0x3c16a6b1 xvtc_generator_stop EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0x47d7900b xvtc_generator_start -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0x9c5ec062 xvtc_of_get EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0xa8a0f912 xvtc_put -EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x2a618d6c radio_tea5777_exit -EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0xfaaaf30f radio_tea5777_init -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x513a095e si470x_viddev_template -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x9a508798 si470x_set_freq -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xe08164e7 si470x_stop -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xee04773a si470x_start -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xef7532af si470x_ctrl_ops -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x0726ec17 rc_g_keycode_from_table -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x09eb6718 ir_raw_event_store_with_timeout -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x129db465 lirc_scancode_event -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x4c33f73e rc_unregister_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x4ca27e0a devm_rc_allocate_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x5f473fcb ir_raw_event_store_edge -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x618e668b rc_register_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x68e468b7 rc_keyup -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x70323ad2 rc_keydown -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x8603a673 ir_raw_event_store_with_filter -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xacb35725 rc_repeat +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0xd8526d1c xvtc_of_get +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x84e86cfb radio_tea5777_exit +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0xe0ad0221 radio_tea5777_init +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x1ccfb4f6 si470x_stop +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x574df2bd si470x_viddev_template +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x93aeabe4 si470x_set_freq +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xdad65abb si470x_ctrl_ops +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xe5e8fb48 si470x_start +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x091f77ed ir_raw_event_store_with_filter +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x155c8cd4 rc_keydown_notimeout +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x27422a1a ir_raw_event_store_edge +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x28edb3e2 ir_raw_event_handle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x443bc7f8 devm_rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x476a87d9 rc_unregister_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x4ebef97f ir_raw_event_store +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x53dfb8d3 rc_free_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x5912997e rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x5c36afa9 rc_repeat +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x88ddc2bc lirc_scancode_event +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x9297ab3d ir_raw_event_set_idle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xa251174e rc_keyup +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xa9e4e115 rc_keydown EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xaf1c6040 rc_map_register -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb699fcdb rc_allocate_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xbbc1115b ir_raw_event_set_idle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb68ee496 rc_g_keycode_from_table EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xbef1458e rc_map_get -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xc4aecba4 ir_raw_event_handle -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xcf741822 rc_keydown_notimeout -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xd42350af devm_rc_register_device EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xd7875151 rc_map_unregister -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xe8983c05 rc_free_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xeee2162a ir_raw_event_store -EXPORT_SYMBOL_GPL drivers/media/tuners/mt2063 0x29fe3a0d mt2063_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/mt20xx 0x6db298e0 microtune_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5007t 0x1abdd601 mxl5007t_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/r820t 0xb4d15304 r820t_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda18271 0x96b120d0 tda18271_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda827x 0x258d73e8 tda827x_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x1f384cea tda829x_probe -EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x513c55d1 tda829x_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda9887 0x3ae20f9d tda9887_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x1c030952 tea5761_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0xe0175ab0 tea5761_autodetection -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x859e64cc tea5767_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0xffb469c0 tea5767_autodetection -EXPORT_SYMBOL_GPL drivers/media/tuners/tuner-simple 0x10630c34 simple_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xee0f9565 devm_rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xf382adc4 rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xf7848890 ir_raw_event_store_with_timeout +EXPORT_SYMBOL_GPL drivers/media/tuners/mt2063 0x01f0f79e mt2063_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mt20xx 0x5ea130a9 microtune_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5007t 0x2209a66f mxl5007t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/r820t 0x1c3bdae5 r820t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda18271 0x3ae63183 tda18271_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda827x 0x6aa0cfd9 tda827x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x283e8656 tda829x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x64e26c7e tda829x_probe +EXPORT_SYMBOL_GPL drivers/media/tuners/tda9887 0xfb9951ce tda9887_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0xdd785701 tea5761_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0xfdcd1d9d tea5761_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x644c9ac8 tea5767_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0xea485356 tea5767_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tuner-simple 0xf4100900 simple_tuner_attach EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x017ea7c7 cx231xx_tuner_callback -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x07177c31 cx231xx_set_alt_setting -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x0dd10d2f cx231xx_dev_init -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x25ed2075 cx231xx_unmute_audio -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x4015eae2 cx231xx_capture_start -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x4615b807 cx231xx_demod_reset -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x4c6352b5 cx231xx_dev_uninit -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x7bd480c3 cx231xx_enable_i2c_port_3 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x8734c805 is_fw_load -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x895b3a65 cx231xx_set_mode -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x904f0330 cx231xx_uninit_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xac375f26 cx231xx_get_i2c_adap -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xae93e15c cx231xx_enable656 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xcdd28e38 cx231xx_init_vbi_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xd1a1cf7e cx231xx_send_usb_command -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xd21020fa cx231xx_uninit_bulk -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xd5c843d6 cx231xx_uninit_vbi_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xd79377ca cx231xx_send_gpio_cmd -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xe3b005c1 cx231xx_init_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xfbabe46d cx231xx_disable656 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xfd704256 cx231xx_init_bulk -EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0xaf15fefc mxl111sf_demod_attach -EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0xade7e3d7 mxl111sf_tuner_attach -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x014f73a5 em28xx_gpio_set -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x15536dc4 em28xx_alloc_urbs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x1e539d99 em28xx_audio_setup -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x27340e30 em28xx_uninit_usb_xfer -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x31b37fe5 em28xx_read_reg -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x50433dd0 em28xx_setup_xc3028 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x5c50fca4 em28xx_set_mode -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x608d7ec9 em28xx_init_camera -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x61df8dba em28xx_write_regs +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x03b2dd8c cx231xx_send_gpio_cmd +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x300a4ba8 cx231xx_enable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x3316c9ef cx231xx_set_alt_setting +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x334541c9 cx231xx_dev_init +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x3994591e cx231xx_disable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x3b5b1a69 cx231xx_get_i2c_adap +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x432073f9 cx231xx_uninit_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x57e7cfbb cx231xx_init_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x63fb2b37 cx231xx_send_usb_command +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x65d1c883 cx231xx_init_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x8b4a3957 cx231xx_unmute_audio +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x9a1dda67 cx231xx_uninit_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xb750b0b1 cx231xx_dev_uninit +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xb9a7fd09 cx231xx_capture_start +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xbc0c1e53 cx231xx_demod_reset +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xbd45aca5 cx231xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xe8e07930 is_fw_load +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xee1519f0 cx231xx_init_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xeeb886d5 cx231xx_enable_i2c_port_3 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xf9090d15 cx231xx_uninit_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0x177ef7b0 mxl111sf_demod_attach +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0x6dd391b3 mxl111sf_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x129aa94f em28xx_read_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x27aae09f em28xx_find_led +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x30c1b2ca em28xx_stop_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x32ea409f em28xx_toggle_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x3894eb6d em28xx_uninit_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x4502a36b em28xx_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x45034265 em28xx_audio_setup +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x4522f626 em28xx_read_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x59bd28f5 em28xx_init_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x5dbc79a2 em28xx_alloc_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x61660965 em28xx_write_regs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x70748b1b em28xx_write_ac97 EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x721f7cc7 em28xx_free_device -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7d65c334 em28xx_toggle_reg_bits EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7fc8652c em28xx_tuner_callback -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x872636c3 em28xx_audio_analog_set -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x8c92fa87 em28xx_find_led EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x921d7c65 em28xx_boards -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x9e0132f9 em28xx_write_ac97 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xc11574b2 em28xx_write_reg -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xd63e2a0f em28xx_read_ac97 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xea222c3c em28xx_stop_urbs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xf4a0e2f7 em28xx_init_usb_xfer -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xfd498cab em28xx_write_reg_bits -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x0e8d5cb7 tm6000_set_reg -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x1d001183 tm6000_set_audio_bitrate +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x98090eac em28xx_write_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xa25ff84c em28xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xb275ebd8 em28xx_audio_analog_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xcd05157c em28xx_gpio_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xe5531955 em28xx_write_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xf7d22696 em28xx_init_camera +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x1afab0b0 tm6000_set_audio_bitrate EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x2309a6d6 tm6000_xc5000_callback -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x2dcd1aff tm6000_get_reg -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x49fbafae tm6000_set_reg_mask +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x73fe2e10 tm6000_set_reg +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x7c97cb11 tm6000_set_reg_mask EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x89b611dd tm6000_debug +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xd4e2deaf tm6000_get_reg EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xdff8e89d tm6000_tuner_callback -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x4eb2111e __v4l2_async_notifier_add_i2c_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x540862f8 __v4l2_async_notifier_add_fwnode_remote_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x870ab596 v4l2_async_notifier_cleanup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0xc3f23504 __v4l2_async_notifier_add_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0xf58e54c0 __v4l2_async_notifier_add_fwnode_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x3e00eedc __v4l2_async_notifier_add_i2c_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x51bbba02 __v4l2_async_notifier_add_fwnode_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x64bd3471 __v4l2_async_notifier_add_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x880c2f0c __v4l2_async_notifier_add_fwnode_remote_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0xd52bd488 v4l2_async_notifier_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 @@ -13199,427 +13238,427 @@ EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xef15cc44 v4l2_hdmi_rx_colorimetry 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 0x360edd4c v4l2_flash_indicator_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x8fc9ce18 v4l2_flash_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0xd9d68a74 v4l2_flash_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x3ea8de38 v4l2_flash_indicator_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x75d0be4f v4l2_flash_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0xe2cf5043 v4l2_flash_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x114df3ce v4l2_fwnode_parse_link +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x4c61553a v4l2_async_notifier_parse_fwnode_endpoints +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x534786d0 v4l2_fwnode_endpoint_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x58016520 v4l2_fwnode_put_link EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x612ddce5 v4l2_fwnode_connector_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x61b6b00a v4l2_fwnode_endpoint_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x6412c1ee v4l2_async_notifier_parse_fwnode_endpoints -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x73dfe4aa v4l2_fwnode_endpoint_alloc_parse -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x74dbbc7f v4l2_fwnode_endpoint_parse -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x80ba9ba7 v4l2_fwnode_connector_add_link -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xadae40b3 v4l2_fwnode_device_parse -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xb580fcc3 v4l2_fwnode_connector_parse -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xbb486f3a v4l2_fwnode_put_link -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xc4960209 v4l2_fwnode_parse_link -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xcc6de31e v4l2_async_register_subdev_sensor -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x030fa57a v4l2_m2m_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x04f4b437 v4l2_m2m_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0b83b341 v4l2_m2m_next_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x14228fa9 v4l2_m2m_ctx_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x171c8d39 v4l2_m2m_ioctl_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x19e09c21 v4l2_m2m_ioctl_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1ad48145 v4l2_m2m_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1d06bb5b v4l2_m2m_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x32219157 v4l2_m2m_buf_remove_by_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x382c38c7 v4l2_m2m_fop_mmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4478cc2d v4l2_m2m_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x44ddf85a v4l2_m2m_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4a822a86 v4l2_m2m_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4b2dae16 v4l2_m2m_buf_copy_metadata -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4d249c89 v4l2_m2m_ioctl_stateless_try_decoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x546f2710 v4l2_m2m_fop_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5fb9e71a v4l2_m2m_decoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x66cf225b v4l2_m2m_ioctl_try_decoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x70d85798 v4l2_m2m_update_stop_streaming_state +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x6f94dca3 v4l2_fwnode_endpoint_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x893cb5ae v4l2_fwnode_device_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x9d702358 v4l2_fwnode_endpoint_alloc_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xae6f8c69 v4l2_fwnode_connector_add_link +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xcc0bbbce v4l2_fwnode_connector_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xe69bde77 v4l2_async_register_subdev_sensor +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0071277d v4l2_m2m_update_stop_streaming_state +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x06b030fa v4l2_m2m_last_buffer_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x07dc8fe4 v4l2_m2m_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x129b2856 v4l2_m2m_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x12c7c2a5 v4l2_m2m_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1db56925 v4l2_m2m_ioctl_stateless_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1fb68e8d v4l2_m2m_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x30692c92 v4l2_m2m_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3085e434 v4l2_m2m_ioctl_try_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x38ad4b3f v4l2_m2m_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x39aa87c7 v4l2_m2m_buf_copy_metadata +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x41c79c47 v4l2_m2m_ioctl_try_encoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4681d618 v4l2_m2m_buf_remove_by_idx +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x57559048 v4l2_m2m_ioctl_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5d544955 v4l2_m2m_encoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5debe0c7 v4l2_m2m_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5ee56bc1 v4l2_m2m_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6cd0bf34 v4l2_m2m_poll EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x730f2eae v4l2_m2m_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x739d71c5 v4l2_m2m_ioctl_encoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8115c248 v4l2_m2m_ioctl_decoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8c7f0e0d v4l2_m2m_buf_remove_by_idx -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x92297627 v4l2_m2m_ioctl_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x927bc863 v4l2_m2m_ioctl_try_encoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa7b4fa02 v4l2_m2m_last_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa7ed3b72 v4l2_m2m_ioctl_stateless_decoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb481b564 v4l2_m2m_ioctl_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb51ca458 v4l2_m2m_encoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb72ff741 v4l2_m2m_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xbad81a82 v4l2_m2m_request_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc1958526 v4l2_m2m_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc2d1bd09 v4l2_m2m_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x76a81c94 v4l2_m2m_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7ad1b3d8 v4l2_m2m_fop_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7dee4ee0 v4l2_m2m_next_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x81fa8073 v4l2_m2m_buf_remove +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x84dfb27b v4l2_m2m_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x858f8299 v4l2_m2m_update_start_streaming_state +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8babd8d7 v4l2_m2m_ioctl_stateless_try_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x92cadbec v4l2_m2m_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x93055d79 v4l2_m2m_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x9663217a v4l2_m2m_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa00aa0f0 v4l2_m2m_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa0488a90 v4l2_m2m_ioctl_encoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa81a329c v4l2_m2m_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xacc9e109 v4l2_m2m_ctx_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb312bf03 v4l2_m2m_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb505e952 v4l2_m2m_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb5217687 v4l2_m2m_try_schedule +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb9b90124 v4l2_m2m_ctx_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xbd2a1238 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 0xd6297c2d v4l2_m2m_ctx_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xdaf0a3f9 v4l2_m2m_last_buffer_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe06d7e1b v4l2_m2m_ioctl_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe775cdbd v4l2_m2m_register_media_controller -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe8bed51d v4l2_m2m_ioctl_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xecf4dd31 v4l2_m2m_ioctl_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xed580661 v4l2_m2m_try_schedule +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd11db7de v4l2_m2m_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd1d907a3 v4l2_m2m_last_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd2941012 v4l2_m2m_register_media_controller +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd8b15050 v4l2_m2m_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xddcfe419 v4l2_m2m_request_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe7700afa v4l2_m2m_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xeaf0dfef v4l2_m2m_ioctl_streamon EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf13ff84d v4l2_m2m_unregister_media_controller -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf18311c8 v4l2_m2m_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf377b6dc v4l2_m2m_ioctl_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf5eaf517 v4l2_m2m_buf_remove -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xfde5517a v4l2_m2m_update_start_streaming_state -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xffc2910c v4l2_m2m_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x1dc41110 videobuf_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x20359abb videobuf_queue_core_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x2d44d048 videobuf_queue_cancel -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x41a6a25e videobuf_waiton -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x41bc97f9 videobuf_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x4547b1c0 videobuf_iolock -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x4921ff25 videobuf_mmap_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x644c89a1 videobuf_alloc_vb -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x6531538b videobuf_read_stream -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x6eb7793e videobuf_queue_is_busy -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x71cf3e13 videobuf_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x73a7623f videobuf_read_one -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x76159bc2 __videobuf_mmap_setup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x8bc6dbe4 videobuf_queue_to_vaddr -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x8c59e76e videobuf_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x9043aeef videobuf_poll_stream -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xc09fb38c videobuf_mmap_mapper -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xc29bdc28 videobuf_read_start -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xe6718cee videobuf_next_field -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xe9522983 videobuf_mmap_setup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xea6563dd videobuf_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xec499032 videobuf_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xf7b0a58f videobuf_read_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xfa2fcb92 videobuf_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x1103ea7a videobuf_dma_unmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x01477ec0 videobuf_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x14f79b65 videobuf_mmap_mapper +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x1d7d7b0b videobuf_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x1dee0195 videobuf_poll_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x272a8381 videobuf_waiton +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x3cc2d307 videobuf_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x5e249c79 videobuf_queue_to_vaddr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x60857e62 videobuf_iolock +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x66735128 videobuf_alloc_vb +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x68c043c9 videobuf_queue_cancel +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x79c2018d videobuf_next_field +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x7d1efae1 __videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x87b33b92 videobuf_queue_is_busy +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x88853831 videobuf_mmap_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x91544318 videobuf_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x98c29804 videobuf_read_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xb4f46d44 videobuf_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xb73c8a61 videobuf_queue_core_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xbea86492 videobuf_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xc8fc62b0 videobuf_read_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xca92ffd2 videobuf_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xcc33263b videobuf_read_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xe072c8e7 videobuf_read_one +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xed30d857 videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x16220710 videobuf_dma_unmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x1f36857b 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 0x74057dfc videobuf_to_dma -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xbee5a4f0 videobuf_queue_sg_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xbfcc878f videobuf_dma_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x16f62f6c videobuf_queue_vmalloc_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0xccbe7d1f videobuf_vmalloc_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0xd5fc735c videobuf_to_vmalloc -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x024e7155 v4l2_i2c_new_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x037f5560 v4l2_subdev_link_validate_default -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x10f148f9 v4l_enable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x8e55752e videobuf_queue_sg_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xd94c559a videobuf_dma_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x0b455acf videobuf_queue_vmalloc_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x0c72ade4 videobuf_vmalloc_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x1af06155 videobuf_to_vmalloc +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x01f7d834 v4l_disable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x06542938 v4l2_event_subdev_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0870a9d9 v4l2_get_link_freq +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x09dba868 v4l2_event_unsubscribe EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x11f3044c __SCK__tp_func_vb2_v4l2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x15b19c0d v4l2_ctrl_request_hdl_ctrl_find -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x19e7e251 v4l2_device_unregister -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x21c5b909 __traceiter_vb2_v4l2_buf_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x24428970 v4l2_fh_del -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x25b33dc0 __v4l2_device_register_subdev_nodes -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2a63bf9b v4l2_event_unsubscribe_all +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x124c0be9 v4l2_fh_is_singular +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x16ee7051 __traceiter_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x24711fea v4l2_event_dequeue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x24abccbc 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 0x34ebeacf v4l2_i2c_subdev_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3e236b20 v4l2_subdev_link_validate +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x32f2615c v4l2_subdev_get_fwnode_pad_1_to_1 +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3af02386 __v4l2_device_register_subdev_nodes +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3dcc198d v4l2_src_change_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3f5c248a v4l2_event_queue_fh EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x452f53b1 __tracepoint_vb2_v4l2_buf_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x46044eaf v4l2_device_register EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x46ac032f __tracepoint_vb2_v4l2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5037180b v4l2_fh_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x51310d4b v4l2_device_put -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x52845df0 v4l2_event_pending -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x52b869b8 __v4l2_ctrl_handler_setup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x565bc89c v4l2_i2c_subdev_set_name -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x592cb953 v4l2_create_fwnode_links_to_pad -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x59c349fe v4l2_mc_create_media_graph -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x59d50abf __traceiter_vb2_v4l2_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5bcd1211 v4l2_event_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5bce8e24 v4l2_event_queue_fh -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5bff0fa2 v4l2_subdev_alloc_state -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5fe054c7 v4l2_spi_new_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x69c42657 v4l_vb2q_enable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x491b4588 v4l2_pipeline_pm_get +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x49c4d0fa v4l2_create_fwnode_links_to_pad +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4df32a46 v4l2_device_set_name +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x52f77de4 v4l2_s_parm_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5fb89808 v4l2_subdev_notify_event +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x68a120e5 __traceiter_vb2_v4l2_qbuf EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6a2de036 __tracepoint_vb2_v4l2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6a4b48df v4l2_event_subscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6a5b2702 v4l2_subdev_get_fwnode_pad_1_to_1 -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6cd4da71 v4l2_event_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6b3cf551 v4l2_device_unregister EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6ce1c95c __SCK__tp_func_vb2_v4l2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6dd4dcd6 v4l2_fh_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6e4cb794 v4l2_pipeline_pm_put EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6e9acc41 v4l2_fill_pixfmt_mp -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x71056c8e __traceiter_vb2_v4l2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7655b880 v4l2_src_change_event_subscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x870b78e2 v4l2_fh_is_singular -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8839cd5d v4l2_event_subdev_unsubscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x905e65c0 v4l2_device_disconnect -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x96bc5d15 v4l2_compat_ioctl32 -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9b9cfbaa v4l2_pipeline_link_notify +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x70ab95b5 v4l2_fh_open +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7a8bfcf6 v4l2_spi_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7afcccec v4l2_subdev_link_validate +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7b5496e2 v4l2_event_unsubscribe_all +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7c3c6726 v4l2_pipeline_pm_put +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x876e7821 __traceiter_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8b456a55 v4l2_mc_create_media_graph +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8ce55992 v4l2_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9043d072 v4l2_i2c_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9570ec6a v4l2_fh_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x99228b7d __traceiter_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9d16a7c8 v4l2_event_pending EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9fef35ac v4l2_apply_frmsize_constraints -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa3a09771 v4l2_s_parm_cap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa7f518aa v4l2_fh_open -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa99f43a6 v4l2_device_set_name -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xaa4ad615 v4l2_src_change_event_subdev_subscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb05d0669 v4l2_fh_add +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa5cee935 v4l_enable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa63eedf8 v4l2_device_register +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa66caa28 v4l2_fh_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa89d23ee v4l2_ctrl_request_hdl_ctrl_find +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xace81dd4 v4l2_src_change_event_subdev_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xae89fe08 v4l2_i2c_subdev_set_name +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb085d90d v4l2_device_disconnect EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb13d41a0 v4l2_subdev_free_state -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb28d363f v4l2_event_wake_all -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb52cfcd0 v4l2_event_dequeue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb873fb6f v4l2_device_register_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc15b0b74 v4l2_i2c_subdev_addr -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc39a1039 v4l2_g_parm_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb4017f14 v4l2_event_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb619d697 v4l_vb2q_enable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc0352275 v4l2_device_unregister_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc424d846 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 0xc929b7ee v4l2_device_unregister_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc9fb4a1b v4l2_i2c_new_subdev_board +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc81e40dc v4l2_fh_add EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcc501597 v4l2_fill_pixfmt -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd05c0b40 v4l2_get_link_freq -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd5d279fa v4l2_fh_exit -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xdca4caf7 v4l2_pipeline_pm_get -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xdf398f24 v4l2_spi_subdev_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe1478bd0 v4l2_ctrl_request_hdl_find +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd2d87ef2 v4l2_i2c_subdev_addr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd9dedfda v4l2_subdev_alloc_state +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xdaab0dba v4l2_create_fwnode_links +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xdcdeebc7 v4l2_fh_exit +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xdd2ebe00 v4l2_i2c_new_subdev_board +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xddf85bb1 v4l2_event_wake_all EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe2822320 __v4l2_find_nearest_size EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe5a33113 __SCK__tp_func_vb2_v4l2_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xeafbade5 v4l2_create_fwnode_links -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xedff3111 v4l_disable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe6c35414 __v4l2_ctrl_handler_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe761e3a0 v4l2_device_put +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe9780548 v4l2_device_register_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xea50498a v4l2_fh_del +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf1e29c6a v4l2_spi_subdev_init 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 0xfb6dfbb7 __traceiter_vb2_v4l2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfeb32d10 v4l2_subdev_notify_event -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x7a33da7d pm80x_regmap_config -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xc4c7f4c1 pm80x_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfa6ad138 v4l2_i2c_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfa8fca55 v4l2_g_parm_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfa9165dc v4l2_ctrl_request_hdl_find +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfd30a387 v4l2_pipeline_link_notify +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x0fe55134 pm80x_init +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x7801bd09 pm80x_regmap_config +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xa5fca8d3 pm80x_pm_ops EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xd99fd720 pm80x_deinit -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xe1a0e9d2 pm80x_pm_ops -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x0be1a124 arizona_dev_init -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x0f37c7cb cs47l24_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x1518eb96 wm8997_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x239ae857 wm5102_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x2cf1f025 wm5110_patch -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x32683ea3 wm8998_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x0314d160 wm5102_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x065cbc6a arizona_clk32k_enable +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x16c724fa arizona_request_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x2b982769 wm8997_patch +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x2df6c4b2 arizona_clk32k_disable EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x3dc526a9 arizona_of_match +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x402c102c wm5102_spi_regmap EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x4048fbbc wm8997_aod EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x4c087981 wm5110_aod -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x60a2291b wm5102_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x6b65a541 arizona_free_irq -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x6c666e02 arizona_clk32k_enable -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x8836e17c arizona_pm_ops -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x9df17d26 wm5110_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xa5f70789 wm8997_patch +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x51dec6d8 wm8998_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x5a98cbe1 arizona_dev_init +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x5e43699a arizona_free_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x660b1030 arizona_dev_exit +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x76ae13ed wm8997_i2c_regmap EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xa6b70564 wm8997_irq EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xa727bd3b cs47l24_irq EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xaaf78759 wm5110_irq -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xab2c065c cs47l24_patch -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xc71db230 arizona_dev_exit +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xbd7f4411 wm5110_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xc28ec356 arizona_set_irq_wake +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xc57dd01d cs47l24_patch EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xc81b43ab wm5110_revd_irq -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xce57a2df arizona_request_irq -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xdec9bc6a wm5110_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xe149c57f arizona_set_irq_wake -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xf035c5c2 arizona_clk32k_disable -EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0x3508b581 atc260x_device_probe -EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0x3ba6532a atc260x_match_device -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x557b6edb da9150_bulk_read -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x7ab2f3f0 da9150_set_bits -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x7ceca86f da9150_write_qif -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xc56dc309 da9150_read_qif -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xc806b442 da9150_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xf3a9c37d da9150_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xfdb4bd3f da9150_bulk_write +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xc883d987 cs47l24_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xd5281bdd arizona_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xfc75a357 wm5110_patch +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xfe47855d wm5110_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0x49542f35 atc260x_device_probe +EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0xd172cab9 atc260x_match_device +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x061b2515 da9150_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x0b7be882 da9150_bulk_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x110b9659 da9150_read_qif +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x6d94056b da9150_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x7a9531f6 da9150_bulk_read +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x9cb93624 da9150_write_qif +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xb358d351 da9150_reg_write EXPORT_SYMBOL_GPL drivers/mfd/gateworks-gsc 0xa142a524 gsc_read EXPORT_SYMBOL_GPL drivers/mfd/gateworks-gsc 0xb7abd1c4 gsc_write EXPORT_SYMBOL_GPL drivers/mfd/iqs62x 0xa436f4de iqs62x_events -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x136c449e kempld_write32 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x1eeb3f97 kempld_read16 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x22365616 kempld_get_mutex -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x28e179eb kempld_write16 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x5e899eae kempld_write8 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x8125c320 kempld_read8 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x94395efc kempld_release_mutex -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x9f9c7fd8 kempld_read32 -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x403b48ae lm3533_read -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x4caa6e67 lm3533_update -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xf6504952 lm3533_write -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x4a20460f lm3533_ctrlbank_disable -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x90bc08ae lm3533_ctrlbank_get_brightness -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xb1ec5b1c lm3533_ctrlbank_get_pwm -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xb6fc72db lm3533_ctrlbank_enable -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xb96ff4cf lm3533_ctrlbank_set_pwm -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xf42c38c4 lm3533_ctrlbank_set_max_current -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xf92d6e24 lm3533_ctrlbank_set_brightness -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x105bf752 lp3943_read_byte -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x82902338 lp3943_write_byte -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xd413db3e lp3943_update_bits -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x0c459dea cs47l15_patch +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x1f12b5f9 kempld_release_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x45dc3391 kempld_read32 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x4c875c0e kempld_write16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x5a99bb11 kempld_write8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x8d2f9558 kempld_write32 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xd254dee8 kempld_read8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xe6d0d1ec kempld_read16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xeed8485a kempld_get_mutex +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x711b1cbb lm3533_read +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x7e5bb0d2 lm3533_write +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xbd4458f9 lm3533_update +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x02500674 lm3533_ctrlbank_set_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x062d92a8 lm3533_ctrlbank_set_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x348686b0 lm3533_ctrlbank_disable +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x696e47ed lm3533_ctrlbank_get_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x740364ad lm3533_ctrlbank_get_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x7454df1a lm3533_ctrlbank_enable +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x989fea4d lm3533_ctrlbank_set_max_current +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x27742ff4 lp3943_write_byte +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x6995b62a lp3943_update_bits +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xe62b4482 lp3943_read_byte +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x0d92e053 cs47l15_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x0d9f3c13 cs47l15_16bit_spi_regmap EXPORT_SYMBOL_GPL drivers/mfd/madera 0x0f379262 madera_of_match -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x0f74dde7 cs47l90_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x0f7901a7 cs47l90_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x108857e8 madera_dev_init -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x17a1aa57 cs47l85_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x17ac7617 cs47l85_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x25d3312f cs47l35_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x25deed6f cs47l35_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x38f5c61a cs47l92_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x38f81a5a cs47l92_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x4c41c0eb cs47l90_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x4c4c1cab cs47l90_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x5494b75b cs47l85_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x54996b1b cs47l85_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x60e90ac1 cs47l85_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x66e62c23 cs47l35_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x66ebf063 cs47l35_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x76a819f8 madera_dev_exit -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x7bc0db16 cs47l92_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x7bcd0756 cs47l92_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x93422469 cs47l90_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xa2bb9ab3 cs47l35_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xac2586ef cs47l15_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xac285aaf cs47l15_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xbc2f3781 cs47l92_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x47d31b97 cs47l92_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x4b1ee779 cs47l35_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x4ea7fd5f cs47l15_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x4eaa211f cs47l15_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x59bd19d4 madera_dev_exit +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x7091862d madera_dev_init +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x84645793 cs47l35_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x84698bd3 cs47l35_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x8733bfd8 cs47l85_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x9942a0a6 cs47l92_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x994f7ce6 cs47l92_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xaeb2a274 madera_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xaec3bb5b cs47l90_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xaece671b cs47l90_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xb616cceb cs47l85_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xb61b10ab cs47l85_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xc7514a9f cs47l35_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xc75c96df cs47l35_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xda77bdaa cs47l92_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xda7a61ea cs47l92_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xe6d48732 cs47l15_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xea3b16fd cs47l90_patch EXPORT_SYMBOL_GPL drivers/mfd/madera 0xebe384cb madera_name_from_type -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xef109be3 cs47l15_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xef1d47a3 cs47l15_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xfaf952fe madera_pm_ops -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x2317d859 mc13xxx_common_exit -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x2ca9ddf7 mc13xxx_variant_mc13783 -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x38fd452d mc13xxx_common_init -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x3ea6289f mc13xxx_variant_mc34708 -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x6c1396d7 mc13xxx_variant_mc13892 -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x8760f5c7 mc13xxx_adc_do_conversion +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xedf6a657 cs47l90_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xedfb7a17 cs47l90_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xf523d1e7 cs47l85_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xf52e0da7 cs47l85_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x2b622477 mc13xxx_variant_mc34708 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x396dd11f mc13xxx_variant_mc13783 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x441380eb mc13xxx_adc_do_conversion +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x79d79a3f mc13xxx_variant_mc13892 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x988f713c mc13xxx_common_exit +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xc42c8f79 mc13xxx_common_init EXPORT_SYMBOL_GPL drivers/mfd/motorola-cpcap 0xa226dbe8 cpcap_sense_virq -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x2946605f pcf50633_irq_mask_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x35e4f417 pcf50633_irq_mask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x39452e00 pcf50633_free_irq -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x3d4b5139 pcf50633_read_block -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x66b7566f pcf50633_write_block -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x8914789b pcf50633_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x8ed498a3 pcf50633_reg_set_bit_mask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x93b6cf29 pcf50633_irq_unmask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x9e12f58b pcf50633_register_irq -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xa13557d3 pcf50633_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xab48a80b pcf50633_reg_clear_bits -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0xbf705703 pcf50633_adc_sync_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0xd4fb81bf pcf50633_adc_async_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x53071724 pcf50633_gpio_set -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x8793dc43 pcf50633_gpio_invert_set -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x9b7779b5 pcf50633_gpio_power_supply_set -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xba3d8f63 pcf50633_gpio_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xf173839d pcf50633_gpio_invert_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x0cee1f69 pcf50633_write_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x52ece826 pcf50633_reg_set_bit_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x69745245 pcf50633_irq_mask_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xab2cde76 pcf50633_irq_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xae3c4746 pcf50633_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xb9d0a1ca pcf50633_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xba4cd80d pcf50633_register_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xc469ba57 pcf50633_read_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xd227d47a pcf50633_irq_unmask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xd7ce134a pcf50633_reg_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xde2c1556 pcf50633_free_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x90d331b3 pcf50633_adc_sync_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0xe0cc75ca pcf50633_adc_async_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x104dafcf pcf50633_gpio_invert_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x44ab85ef pcf50633_gpio_invert_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x4927e57a pcf50633_gpio_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x6b93c6cd pcf50633_gpio_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xae47520c pcf50633_gpio_power_supply_set EXPORT_SYMBOL_GPL drivers/mfd/rave-sp 0x43e53ef9 rave_sp_exec -EXPORT_SYMBOL_GPL drivers/mfd/rave-sp 0xbcbd8351 devm_rave_sp_register_event_notifier +EXPORT_SYMBOL_GPL drivers/mfd/rave-sp 0xe348096c 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 0x07c465c0 si476x_core_is_in_am_receiver_mode -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x140485c6 si476x_core_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x173e95e8 si476x_core_cmd_fm_tune_freq -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x18884305 si476x_core_cmd_fm_phase_diversity -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x2eba8e39 si476x_core_i2c_xfer -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x378dd645 si476x_core_is_a_secondary_tuner -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x38eec15f si476x_core_cmd_am_seek_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3a382bb5 si476x_core_cmd_fm_rds_blockcount -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x44638ea6 si476x_core_cmd_zif_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x49263c2e si476x_core_cmd_fm_acf_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4ed96eb2 si476x_core_set_power_state -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x589fe26b si476x_core_stop -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x59f03068 si476x_core_cmd_fm_phase_div_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5b1c594e devm_regmap_init_si476x -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x618fdceb si476x_core_has_diversity -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6256deff si476x_core_cmd_fm_rsq_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x745c8425 si476x_core_cmd_ana_audio_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x747fc172 si476x_core_has_am -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x795a9e44 si476x_core_cmd_am_tune_freq -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8330c00c si476x_core_cmd_power_up -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x85ea6fee si476x_core_cmd_dig_audio_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x880b967d si476x_core_cmd_agc_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8cb0806f si476x_core_cmd_func_info -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9d3c1659 si476x_core_cmd_set_property -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa0553ba7 si476x_core_cmd_fm_rds_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa1ee9d57 si476x_core_cmd_get_property -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb731eac9 si476x_core_is_a_primary_tuner -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc2bdde66 si476x_core_cmd_ic_link_gpo_ctl_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc9535ec8 si476x_core_cmd_power_down -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xccb39f33 si476x_core_cmd_fm_seek_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd69552a8 si476x_core_is_powered_up -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe4d65588 si476x_core_cmd_am_rsq_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xeac8d972 si476x_core_cmd_am_acf_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xebd4ce52 si476x_core_cmd_intb_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x1d9917d5 sm501_misc_control -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x34d0fddf sm501_set_clock -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x41e3cb0d sm501_unit_power -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x523319ff sm501_find_clock -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x6c088741 sm501_modify_reg -EXPORT_SYMBOL_GPL drivers/mfd/stmfx 0x18bf7091 stmfx_function_enable -EXPORT_SYMBOL_GPL drivers/mfd/stmfx 0xf0b33d3a stmfx_function_disable -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x43e3dd08 am335x_tsc_se_clr -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x45f67177 am335x_tsc_se_set_cache -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xdfe6a114 am335x_tsc_se_set_once -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xfd483bb7 am335x_tsc_se_adc_done -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x2c9f4c75 tps65218_set_bits -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x33ffc6e6 tps65218_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xb6b79885 tps65218_clear_bits -EXPORT_SYMBOL_GPL drivers/mfd/ucb1400_core 0xaffc86ab ucb1400_adc_read -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x09fe5417 alcor_write8 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x643965dc alcor_write32be -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x6f1df22c alcor_read8 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x750ced73 alcor_read32 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x9ae76c0c alcor_read32be -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xaded7658 alcor_write32 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xdc95539b alcor_write16 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x08190625 rtsx_pci_write_phy_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x21ae5311 rtsx_pci_card_power_on -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x24d33496 rtsx_pci_add_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x2c0cb148 rtsx_pci_card_power_off -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x3eb6c4e8 rtsx_pci_switch_output_voltage -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x438f27c8 rtsx_pci_complete_unfinished_transfer -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x49d3f59a rtsx_pci_read_ppbuf -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x4e5bc72c rtsx_pci_dma_transfer -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x5a1a1d83 rtsx_pci_switch_clock -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x68bf9a35 rtsx_pci_dma_unmap_sg -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x6a04ca00 rtsx_pci_card_pull_ctl_disable -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x74302185 rtsx_pci_transfer_data -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x746e54d8 rtsx_pci_send_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x74bc957e rtsx_pci_read_phy_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x7e6da201 rtsx_pci_stop_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x82ad7bb9 rtsx_pci_card_exist -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x8a49933d rtsx_pci_send_cmd_no_wait -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x90646e25 rtsx_pci_write_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x999ffc62 rtsx_pci_card_pull_ctl_enable -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xd609d70f rtsx_pci_start_run -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xe0625347 rtsx_pci_dma_map_sg -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xec3fd387 rtsx_pci_read_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xee42e159 rtsx_pci_write_ppbuf -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xf0931913 rtsx_pci_card_exclusive_check -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x067553c4 rtsx_usb_get_card_status -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x09af72ff rtsx_usb_write_ppbuf -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x22b8bcf5 rtsx_usb_card_exclusive_check -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x255cb4b8 rtsx_usb_switch_clock -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x49ca50e4 rtsx_usb_add_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x7da872f9 rtsx_usb_read_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x87e8f646 rtsx_usb_ep0_read_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x8e889288 rtsx_usb_send_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xb10cb569 rtsx_usb_read_ppbuf -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xc4bf088b rtsx_usb_transfer_data -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xc60e519c rtsx_usb_ep0_write_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xc832e80b rtsx_usb_write_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xfc8dd1d2 rtsx_usb_get_rsp -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x27daeead cb710_set_irq_handler -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xd2cc8609 cb710_sg_dwiter_write_next_block -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xf4e3230c cb710_pci_update_config_reg -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xf837e427 cb710_sg_dwiter_read_next_block -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x0084aeaf cxllib_set_device_dma -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x06d535b8 cxl_read_adapter_vpd -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x10228739 cxllib_get_PE_attributes -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x12903a65 cxllib_handle_fault -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x1e63fb27 cxl_fops_get_context -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x24f8f341 cxl_set_driver_ops -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x28f3beae cxl_start_work -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x3321f533 cxl_unmap_afu_irq -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x38c21348 cxl_release_context -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x399f7557 cxl_perst_reloads_same_image -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x40ca08f4 cxllib_switch_phb_mode -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x40ec8bc2 cxl_allocate_afu_irqs -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x4b702d31 cxl_psa_map -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x53c36e69 cxl_fd_open -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x64c32d51 cxl_process_element -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x6b768d82 cxl_fd_poll -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x6c5a5610 cxl_get_priv -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x7a97e290 cxl_stop_context -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x847a51ba cxl_afu_reset +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x069aa18b si476x_core_cmd_fm_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0a46dc90 si476x_core_cmd_func_info +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x12a0e674 si476x_core_has_am +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x12b83933 si476x_core_cmd_agc_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x16936add si476x_core_is_a_secondary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x18cb8552 si476x_core_cmd_am_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x1fb387a5 si476x_core_cmd_power_down +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x1fcf6b7d si476x_core_stop +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x2f695618 si476x_core_cmd_fm_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4551d692 si476x_core_cmd_set_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x490476f5 si476x_core_cmd_fm_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4b2ebffc si476x_core_cmd_power_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4be2f2a3 si476x_core_is_a_primary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4ed140a9 devm_regmap_init_si476x +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5893e0fa si476x_core_cmd_am_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5ed2db2e si476x_core_set_power_state +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5f6815da si476x_core_cmd_am_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x69254de7 si476x_core_cmd_am_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6e66e181 si476x_core_cmd_fm_rds_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x70be5905 si476x_core_cmd_fm_rds_blockcount +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x791e9635 si476x_core_cmd_get_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7a8d7615 si476x_core_cmd_intb_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7b63eb3a si476x_core_cmd_fm_phase_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x87997f2c si476x_core_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x99923c6a si476x_core_cmd_fm_phase_div_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa37d7e8e si476x_core_cmd_ic_link_gpo_ctl_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb8dafd8b si476x_core_cmd_zif_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xbec8897d si476x_core_is_powered_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc0bec654 si476x_core_cmd_ana_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc8fe4016 si476x_core_i2c_xfer +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd4d19509 si476x_core_cmd_dig_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd782dde4 si476x_core_cmd_fm_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xec5d8d99 si476x_core_is_in_am_receiver_mode +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf1a6f9c4 si476x_core_has_diversity +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x32ba57e8 sm501_find_clock +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x428517f0 sm501_set_clock +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x563a7a5c sm501_unit_power +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xf0eefe9c sm501_modify_reg +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xfbee41b2 sm501_misc_control +EXPORT_SYMBOL_GPL drivers/mfd/stmfx 0xbf4930d6 stmfx_function_disable +EXPORT_SYMBOL_GPL drivers/mfd/stmfx 0xca621630 stmfx_function_enable +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x6ea71a8c am335x_tsc_se_set_once +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x74dac699 am335x_tsc_se_set_cache +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x8d4ff0e0 am335x_tsc_se_clr +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xa5e075ee am335x_tsc_se_adc_done +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x0cc311cf tps65218_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x41c6c9b4 tps65218_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x7f279867 tps65218_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/ucb1400_core 0x2be1a82b ucb1400_adc_read +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x1df0af73 alcor_read32 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x2d77654d alcor_write32be +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x78b48c2e alcor_write16 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x8d487e99 alcor_read8 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x9a178f73 alcor_write8 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x9d614e92 alcor_write32 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xdc7d7fdc alcor_read32be +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x07abbddf rtsx_pci_card_power_off +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x0c844cd2 rtsx_pci_read_phy_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x0e3d4bcc rtsx_pci_add_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x1d74fcbf rtsx_pci_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x207e5f62 rtsx_pci_card_pull_ctl_disable +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x3543d08e rtsx_pci_transfer_data +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x3be8a5d6 rtsx_pci_card_exist +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x3f98efac rtsx_pci_write_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x4621bfa2 rtsx_pci_read_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x5af31ad0 rtsx_pci_complete_unfinished_transfer +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x6dd7e479 rtsx_pci_write_phy_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x7b21b95b rtsx_pci_send_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x86f8ae80 rtsx_pci_dma_map_sg +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x90cbee4b rtsx_pci_switch_clock +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x9e08ec94 rtsx_pci_send_cmd_no_wait +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xbc47049e rtsx_pci_start_run +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xc00d2e39 rtsx_pci_write_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xc61e7056 rtsx_pci_card_pull_ctl_enable +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xce317b53 rtsx_pci_switch_output_voltage +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xdb2c0172 rtsx_pci_card_power_on +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xde253080 rtsx_pci_stop_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xe05df8c2 rtsx_pci_dma_unmap_sg +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xf585da8a rtsx_pci_read_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xf6162c79 rtsx_pci_dma_transfer +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x25a4e457 rtsx_usb_send_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x2d1f8acd rtsx_usb_ep0_write_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x55be042f rtsx_usb_add_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x709e86fc rtsx_usb_switch_clock +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x78fef757 rtsx_usb_read_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x79b2e728 rtsx_usb_get_card_status +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x8fd30702 rtsx_usb_read_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x904ff97d rtsx_usb_transfer_data +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x9aca305a rtsx_usb_ep0_read_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xbebba276 rtsx_usb_write_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xc38e6e99 rtsx_usb_get_rsp +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xe067e93b rtsx_usb_write_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xe4bde389 rtsx_usb_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x06bedffc cb710_sg_dwiter_read_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x734aedae cb710_set_irq_handler +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x9fd4de15 cb710_sg_dwiter_write_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xe51fe81a cb710_pci_update_config_reg +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x05f652c5 cxl_start_work +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x06d36190 cxl_fd_release +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x18382569 cxl_fd_poll +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x1fb243f4 cxl_free_afu_irqs +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x29e0ddd2 cxl_set_master +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x3148c63c cxllib_switch_phb_mode +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x38702d53 cxl_read_adapter_vpd +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x398dd78f cxllib_get_xsl_config +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x3c034b97 cxl_fd_mmap +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x45b3e50a cxllib_slot_is_supported +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x4d110217 cxl_stop_context +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x543d7e23 cxl_release_context +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x613f8fcc cxl_afu_reset +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x61a16f96 cxl_fd_read +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x61d818b9 cxl_context_events_pending +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x62ce229e cxl_get_context +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x66badcf3 cxl_fd_open +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x698bc957 cxl_process_element +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x7eb90078 cxl_get_fd +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x85435da8 cxl_get_priv EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x8740bc47 cxl_psa_unmap -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x8c07a292 cxllib_get_xsl_config -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x8e44ec7d cxllib_slot_is_supported -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x9434cd12 cxl_fd_release -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x9469c726 cxl_pci_to_afu -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xaa0102f6 cxl_set_priv -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xad22cc07 cxl_pci_to_cfg_record -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xb1e4afa5 cxl_fd_ioctl -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xbd2d40b3 cxl_fd_read -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xc0638752 cxl_map_afu_irq -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xd60473d8 cxl_set_master -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xdb9ffe6f cxl_dev_context_init -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xdbd42102 cxl_context_events_pending -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xdde704fc cxl_get_fd -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xe19ca24b cxl_start_context -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xf9770fe9 cxl_free_afu_irqs -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xfdb73888 cxl_fd_mmap -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xff2e3297 cxl_get_context +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x8d335917 cxl_unmap_afu_irq +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x9917dcb0 cxl_pci_to_cfg_record +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xa4cdd665 cxl_perst_reloads_same_image +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xafb666ba cxl_pci_to_afu +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xb140ffb8 cxllib_get_PE_attributes +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xb4a29f10 cxl_set_driver_ops +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xbdf6f802 cxl_fd_ioctl +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xcfa27a2c cxl_psa_map +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xd216cdea cxl_fops_get_context +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xd3e17f87 cxl_set_priv +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xda05d9c5 cxl_allocate_afu_irqs +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xeb34255f cxl_map_afu_irq +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xeb9bef76 cxl_dev_context_init +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xef13850b cxllib_set_device_dma +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xf2751b73 cxllib_handle_fault +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xf7e2a985 cxl_start_context 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 @@ -13633,693 +13672,697 @@ 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 0x0557d09e enclosure_component_register -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x1300ea77 enclosure_add_device -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x227f05a8 enclosure_find -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x8fafcd60 enclosure_register -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xc4791674 enclosure_component_alloc -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xc6c68f42 enclosure_unregister -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xd3b90430 enclosure_for_each_device -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xe3ff33c5 enclosure_remove_device -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x44266a80 lis3lv02d_joystick_enable -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x44e67e2b lis3lv02d_poweron -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x51090a05 lis3lv02d_remove_fs -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x9d46179c lis3lv02d_init_dt -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xa87307e9 lis3_dev -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xb40c4d3f lis3lv02d_poweroff -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xb5bc062d lis3lv02d_joystick_disable -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xd544bb7e lis3lv02d_init_device -EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x048ff42e ocxl_context_detach -EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x07b48c1a ocxl_afu_set_private -EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x13a0bc17 ocxl_global_mmio_set64 -EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x17380b9e ocxl_context_alloc -EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x17d66e00 ocxl_global_mmio_clear32 -EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x1b4affee ocxl_link_release -EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x1f6e337d ocxl_afu_get_private +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x0d8e76c0 enclosure_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x1bbb066d enclosure_add_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x477cdde3 enclosure_remove_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x50a3cdeb enclosure_component_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x7c934c84 enclosure_component_alloc +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x86707345 enclosure_for_each_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xa724ccf4 enclosure_unregister +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xd0c46f64 enclosure_find +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x1c6289bf lis3lv02d_joystick_enable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x4e7fcf97 lis3lv02d_poweron +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x5236cfc2 lis3lv02d_poweroff +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x6b794285 lis3lv02d_joystick_disable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xb4c1240d lis3lv02d_init_device +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xd190cada lis3_dev +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xda192db5 lis3lv02d_init_dt +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xf49a955f lis3lv02d_remove_fs +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x192336ed ocxl_global_mmio_set32 +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x1ae14eb0 ocxl_afu_irq_free +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x1fd752cc ocxl_config_set_afu_state EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x2d876dd2 ocxl_link_remove_pe -EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x2e5b5bee ocxl_afu_get -EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x2f15f056 ocxl_config_set_actag -EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x48b218d4 ocxl_context_attach -EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x54b0f85d ocxl_function_close +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x2f7ea398 ocxl_global_mmio_write64 +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x36d8314b ocxl_function_close +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x42c1f49a ocxl_afu_set_private +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x467eaa9e ocxl_irq_set_handler +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x4fcb03f1 ocxl_afu_config +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x51a47e91 ocxl_config_get_actag_info +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x55dfd1a3 ocxl_function_config EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x5d8814ea ocxl_link_free_irq -EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x61b28a49 ocxl_afu_irq_free -EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x62939d12 ocxl_global_mmio_set32 -EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x66e54f05 ocxl_global_mmio_clear64 -EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x6cb551be ocxl_irq_set_handler -EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x743c7172 ocxl_config_read_function -EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x7fb95a28 ocxl_config_read_afu -EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x84a594b6 ocxl_config_set_TL -EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x85893a1d ocxl_function_afu_list -EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x8eb50786 ocxl_config_set_afu_pasid -EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x94aa0cfc ocxl_config_set_afu_state -EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x9a07878a ocxl_link_add_pe -EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xaa0a2f0a ocxl_config_get_actag_info -EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xaa2e7e53 ocxl_context_free -EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xaaeafb9d ocxl_function_open -EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xaf150dfe ocxl_config_terminate_pasid -EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xb757afe7 ocxl_global_mmio_write64 -EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xba1ad51e ocxl_function_config -EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xc0a66dc0 ocxl_link_setup -EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xc6648ee2 ocxl_global_mmio_write32 -EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xce91db01 ocxl_afu_irq_alloc -EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xd010733f ocxl_afu_irq_get_addr -EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xd13eef57 ocxl_global_mmio_read32 +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x613abda4 ocxl_global_mmio_clear64 +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x7db2d291 ocxl_config_terminate_pasid +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x841e12ec ocxl_afu_put +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x8901e957 ocxl_global_mmio_clear32 +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x8a0ef289 ocxl_function_open +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x9359bae0 ocxl_function_fetch_afu +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x94e46f4f ocxl_config_set_actag +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x9ccddb45 ocxl_global_mmio_read32 +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xa8290375 ocxl_context_attach +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xabb1474d ocxl_config_set_TL +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xad27d007 ocxl_config_read_afu +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xae852721 ocxl_config_set_afu_actag +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xb20863be ocxl_link_setup +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xb320cd7e ocxl_afu_irq_get_addr +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xb49d5934 ocxl_link_add_pe +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xba0a5119 ocxl_afu_get +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xba4b576a ocxl_config_read_function +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xbe7e07ee ocxl_link_release +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xc3987bba ocxl_context_free +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xc745f76b ocxl_global_mmio_write32 +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xc84eeaf7 ocxl_function_afu_list +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xccd60894 ocxl_context_alloc +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xcf5a14ed ocxl_global_mmio_read64 EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xd57e0fa7 ocxl_link_irq_alloc -EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xd8d04512 ocxl_config_set_afu_actag -EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xdcfa71ac ocxl_afu_config -EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xe0207a7f ocxl_global_mmio_read64 -EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xebc791f2 ocxl_function_fetch_afu -EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xf40a5390 ocxl_afu_put -EXPORT_SYMBOL_GPL drivers/misc/pvpanic/pvpanic 0x9c46144b devm_pvpanic_probe +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xdd635f9c ocxl_context_detach +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xe322de71 ocxl_afu_irq_alloc +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xe5dfc441 ocxl_config_set_afu_pasid +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xeeccbdbf ocxl_afu_get_private +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xf118621e ocxl_global_mmio_set64 +EXPORT_SYMBOL_GPL drivers/misc/pvpanic/pvpanic 0xd6c40579 devm_pvpanic_probe EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0x472340b2 st_unregister EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0xc8e56e36 st_register -EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0x1cef0750 uacce_alloc -EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0xa05eaa98 uacce_register -EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0xe1eb3c3e uacce_remove -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x042c13e8 sdhci_reset -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x0b5b34ba sdhci_request -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x0e64d999 sdhci_execute_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x109d71df sdhci_calc_clk -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x134d76e8 __sdhci_set_timeout -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x19a698c0 sdhci_setup_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x2852a61a sdhci_adma_write_desc -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x2a98bfd4 sdhci_start_signal_voltage_switch -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x3c4c9774 sdhci_runtime_suspend_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x3c83cf92 sdhci_runtime_resume_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x41990ced sdhci_end_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x55318a0d sdhci_set_ios -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x623ecc61 sdhci_set_power_and_bus_voltage -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x6555ab0c sdhci_set_uhs_signaling -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x833a746f sdhci_resume_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x835a6c1a sdhci_cqe_disable -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x84b2370f sdhci_abort_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x86b572e9 sdhci_dumpregs -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x86e67deb sdhci_enable_v4_mode -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x88b51daa sdhci_set_power -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x8aa7d275 sdhci_set_data_timeout_irq -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x8cd836f9 sdhci_send_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x8d3c42c4 sdhci_reset_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x9177c569 sdhci_set_power_noreg -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x97658e23 sdhci_set_clock -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x9da4b371 __sdhci_read_caps -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xad3a2ac3 sdhci_add_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xb3e9828b sdhci_remove_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xb9017d4c sdhci_set_bus_width -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xbdd1c7b0 sdhci_free_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xbef79df9 sdhci_suspend_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc0774654 sdhci_alloc_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc988d93c sdhci_cqe_enable -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xd6a32e0f sdhci_request_atomic -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xdd985c21 sdhci_cleanup_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xdee7e65f sdhci_start_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe19ed46c sdhci_cqe_irq -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe72131c6 __sdhci_add_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xebd620f4 sdhci_enable_sdio_irq -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xf66875f2 sdhci_enable_clk -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xfc9e1a0e sdhci_switch_external_dma -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x19901a2e sdhci_pltfm_clk_get_max_clock -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x703302ce sdhci_pltfm_suspend -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x7367925c sdhci_pltfm_register -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x758270b4 sdhci_pltfm_pmops -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x9647a3be sdhci_pltfm_free -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x9cca0478 sdhci_pltfm_unregister -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xbc9a0c13 sdhci_pltfm_resume -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xce21292a sdhci_pltfm_init -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xf7ad2be9 sdhci_get_property -EXPORT_SYMBOL_GPL drivers/most/most_core 0x4dd38c9d most_deregister_interface -EXPORT_SYMBOL_GPL drivers/most/most_core 0x57553495 most_submit_mbo -EXPORT_SYMBOL_GPL drivers/most/most_core 0x78370866 channel_has_mbo -EXPORT_SYMBOL_GPL drivers/most/most_core 0x7cccc199 most_deregister_component -EXPORT_SYMBOL_GPL drivers/most/most_core 0x8b6c64d6 most_get_mbo -EXPORT_SYMBOL_GPL drivers/most/most_core 0x9ac1e667 most_stop_enqueue -EXPORT_SYMBOL_GPL drivers/most/most_core 0xa742be9f most_register_configfs_subsys -EXPORT_SYMBOL_GPL drivers/most/most_core 0xc68eb8ee most_register_interface -EXPORT_SYMBOL_GPL drivers/most/most_core 0xcf5352b9 most_resume_enqueue -EXPORT_SYMBOL_GPL drivers/most/most_core 0xd24d9db3 most_start_channel -EXPORT_SYMBOL_GPL drivers/most/most_core 0xe31fc8f1 most_register_component -EXPORT_SYMBOL_GPL drivers/most/most_core 0xec22adff most_deregister_configfs_subsys -EXPORT_SYMBOL_GPL drivers/most/most_core 0xf85cd333 most_put_mbo -EXPORT_SYMBOL_GPL drivers/most/most_core 0xfc22a412 most_stop_channel -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x555a3942 cfi_cmdset_0001 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x6a731caa cfi_cmdset_0003 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x976d393c cfi_cmdset_0200 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x0bb5c58e cfi_cmdset_0006 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x75e78e5e cfi_cmdset_0002 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x861e41d8 cfi_cmdset_0701 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0xe420e8d9 cfi_cmdset_0020 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x85e53a1e cfi_qry_mode_on -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x872fc2a4 cfi_qry_present -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xf74d4249 cfi_qry_mode_off -EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0x1721953c hyperbus_unregister_device -EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0x678b5ca5 hyperbus_register_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x028f333f mtd_read_fact_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x02ec087e __register_mtd_parser -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0aa0465b mtd_del_partition +EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0x269c4d4f uacce_register +EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0x3cde4927 uacce_remove +EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0xfeb4dcec uacce_alloc +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x09d7426e sdhci_set_power +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x0f1039fb sdhci_set_power_noreg +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x129849b3 sdhci_execute_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x145ae504 sdhci_abort_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x18c48a35 sdhci_remove_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x1bd6ae49 sdhci_cqe_disable +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x2181dec3 sdhci_request +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x21a50902 sdhci_enable_v4_mode +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x248f40bf sdhci_cqe_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x27d43e6a __sdhci_add_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x2bffebb2 sdhci_reset_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x34476a36 sdhci_set_power_and_bus_voltage +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x3eb61930 sdhci_cqe_enable +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x44b7b6f8 sdhci_set_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x491c879d sdhci_switch_external_dma +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x529fbf37 sdhci_set_data_timeout_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x5470f3b0 sdhci_cleanup_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x56891f11 sdhci_start_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x632751b5 sdhci_end_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x6561cdea sdhci_set_ios +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x6746fab2 sdhci_set_bus_width +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x6dc570aa sdhci_adma_write_desc +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x777a27ce sdhci_alloc_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x7de16811 sdhci_runtime_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x8d3c324d sdhci_set_uhs_signaling +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x99337682 sdhci_start_signal_voltage_switch +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x9ca8429b sdhci_runtime_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x9df1cb96 sdhci_free_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x9fb5b909 sdhci_send_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xb3ba15c2 sdhci_request_atomic +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xb61673be sdhci_enable_clk +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xba574e62 __sdhci_read_caps +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xbef15e8f sdhci_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xbf820950 sdhci_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xbff66f97 sdhci_calc_clk +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xdd410967 sdhci_reset +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xeba82068 sdhci_enable_sdio_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xfafd2368 __sdhci_set_timeout +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xfe36903b sdhci_setup_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xfe80ae8e sdhci_dumpregs +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xffd5f53a sdhci_add_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x15844e51 sdhci_pltfm_register +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x3a55e927 sdhci_pltfm_suspend +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x4126760e sdhci_get_property +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x64f2e428 sdhci_pltfm_unregister +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x7da81ee4 sdhci_pltfm_pmops +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x8965c5d2 sdhci_pltfm_resume +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xbed715a1 sdhci_pltfm_init +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xd0288256 sdhci_pltfm_clk_get_max_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xff89bf76 sdhci_pltfm_free +EXPORT_SYMBOL_GPL drivers/most/most_core 0x0b374095 most_get_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0x2c97e91b most_deregister_configfs_subsys +EXPORT_SYMBOL_GPL drivers/most/most_core 0x5b039ac9 channel_has_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0x752134b2 most_deregister_component +EXPORT_SYMBOL_GPL drivers/most/most_core 0x7c79354a most_deregister_interface +EXPORT_SYMBOL_GPL drivers/most/most_core 0x7ee730d4 most_start_channel +EXPORT_SYMBOL_GPL drivers/most/most_core 0x8e6681cb most_resume_enqueue +EXPORT_SYMBOL_GPL drivers/most/most_core 0x9b13bb66 most_submit_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0xa3d42350 most_stop_enqueue +EXPORT_SYMBOL_GPL drivers/most/most_core 0xac311d2a most_put_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0xc1019383 most_register_component +EXPORT_SYMBOL_GPL drivers/most/most_core 0xc4c98007 most_register_interface +EXPORT_SYMBOL_GPL drivers/most/most_core 0xe7c186fa most_stop_channel +EXPORT_SYMBOL_GPL drivers/most/most_core 0xf7447dba most_register_configfs_subsys +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x1c936562 cfi_cmdset_0200 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xdea4651c cfi_cmdset_0001 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xe18d40f4 cfi_cmdset_0003 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x0de01d86 cfi_cmdset_0701 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x804b99d0 cfi_cmdset_0006 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xfe19d200 cfi_cmdset_0002 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0x6fdeb487 cfi_cmdset_0020 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x088bfaae cfi_qry_present +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xac5935c1 cfi_qry_mode_on +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xbeb5f406 cfi_qry_mode_off +EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0x3bfe4e5d hyperbus_register_device +EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0xc5c17302 hyperbus_unregister_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0794b0d2 mtd_get_user_prot_info EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0c2cf296 mtd_table_mutex -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0c6890f1 mtd_writev -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0c7ae9e2 mtd_read_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0dcafb3f mtd_unpoint -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0ec79622 mtd_write_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x113ea4d6 mtd_ooblayout_free -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x179e249f mtd_block_markbad -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1c5e634b mtd_read_oob -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x22ac7176 mtd_panic_write -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x264399ab mtd_block_isbad -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2a645926 mtd_block_isreserved -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2d19c509 mtd_add_partition -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2ea38d0b mtd_get_fact_prot_info -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3031f74f mtd_ooblayout_get_eccbytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x384a12cc mtd_get_unmapped_area -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3df42541 mtd_erase_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x41d88833 mtd_ooblayout_get_databytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4ae39860 mtd_ooblayout_ecc -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4e6a4a56 kill_mtd_super -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4e92c1bb mtd_ooblayout_find_eccregion -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x61be4099 __mtd_next_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x63889b9e mtd_ooblayout_set_eccbytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6ad92858 put_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x722283e5 mtd_lock -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x77584474 get_mtd_device_nm -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x77799a1f mtd_unlock -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x77d94440 unregister_mtd_user -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x89c047d3 mtd_wunit_to_pairing_info -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8e0e152b __get_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x929fbffc get_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9469db5c mtd_get_device_size -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x96c6bc9b mtd_ooblayout_set_databytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9d5d349b mtd_point -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa8df9231 mtd_kmalloc_up_to -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xaf31885d mtd_erase -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xaf36c824 get_tree_mtd -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb2ef6ca0 register_mtd_user -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb4ef741b mtd_write_oob -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xba2d32b8 mtd_ooblayout_count_eccbytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xbd2ddc68 mtd_ooblayout_count_freebytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc700cb17 __put_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc758d29b mtd_pairing_groups -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd42c8317 mtd_lock_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd6cfd6b8 mtd_get_user_prot_info -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd835c1fc deregister_mtd_parser -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd8b2e22c mtd_device_parse_register -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xdabf9a37 mtd_is_locked -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xdc311060 mtd_write -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe3c64db1 mtd_device_unregister -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf328a43e mtd_read -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xfb9c0319 mtd_pairing_info_to_wunit -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x08a37472 deregister_mtd_blktrans -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x257c7147 del_mtd_blktrans_dev -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x29859607 mtd_blktrans_cease_background -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x9d316555 add_mtd_blktrans_dev -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xf3c6b5b7 register_mtd_blktrans -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x041ba5bd nanddev_cleanup -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x0b218679 nand_get_large_page_ooblayout -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x104ca2b7 nanddev_isreserved -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x17c8227d nand_ecc_tweak_req -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x26baade4 nanddev_bbt_set_block_status -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x2cefce75 nanddev_erase -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x5f5217bc nanddev_mtd_erase -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x91fb2d16 nanddev_bbt_cleanup -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x93fd616b nanddev_init -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x9417e70c nanddev_mtd_max_bad_blocks -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x94a74a2f nand_ecc_restore_req -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x965fe51c nanddev_bbt_get_block_status -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x9c8f1fd8 nand_ecc_init_req_tweaking -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x9d0d0269 nanddev_isbad -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xba512acf nanddev_bbt_update -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xbf67dbdb nanddev_ecc_engine_cleanup -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xbfcc4de0 nanddev_markbad -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xc062cd6e nanddev_ecc_engine_init -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xd5880ca4 nand_get_small_page_ooblayout -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xdec76b34 nand_ecc_cleanup_req_tweaking -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xfbf4fc28 nand_get_large_page_hamming_ooblayout -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xfe39faa8 nanddev_bbt_init -EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0x84983c2c onenand_release -EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0xf3972bef onenand_scan -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/denali 0x65a07cd6 denali_chip_init -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x01369901 nand_readid_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x05185129 nand_erase_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x0f06eca1 nand_read_oob_op +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x13b343ce __put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x142144b0 mtd_add_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1574d604 get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1aaec1f5 mtd_ooblayout_count_freebytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2ab0d86d mtd_pairing_groups +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2c5d6b4f mtd_device_unregister +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2d31b027 mtd_ooblayout_count_eccbytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2e1da0d6 mtd_read_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x31c66dd2 mtd_wunit_to_pairing_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3591becf mtd_ooblayout_get_databytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x40329694 mtd_unpoint +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x40a3c53b mtd_is_locked +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4652f08e mtd_write_oob +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4f1dcd10 get_mtd_device_nm +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5d717d48 mtd_kmalloc_up_to +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x608f8f70 mtd_point +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6218e848 mtd_panic_write +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x62c1ec82 __register_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x63e7a0a3 mtd_unlock +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6ab27206 kill_mtd_super +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6bcdd0f7 mtd_writev +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x707fd68b mtd_erase_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7f1be5cf mtd_ooblayout_free +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x87aa5471 deregister_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x89d12eb4 mtd_write +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8c1d4555 mtd_del_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8d2edffa mtd_read +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x93815140 mtd_pairing_info_to_wunit +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x941a3722 mtd_get_fact_prot_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x979501cc put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa1509f05 mtd_erase +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa965cd5b mtd_read_fact_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xaccdd0a9 register_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb1125373 mtd_ooblayout_set_eccbytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb1f137f9 mtd_write_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb2bf8556 get_tree_mtd +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb6d461e4 mtd_ooblayout_find_eccregion +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xbd4d3d7c mtd_block_isreserved +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xbd8296c0 mtd_lock_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc2291e64 mtd_ooblayout_ecc +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc3e7728d mtd_device_parse_register +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc47e8d13 mtd_get_device_size +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc887ef02 __mtd_next_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc97736be __get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd5f83282 mtd_lock +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xdfa7ff76 mtd_block_isbad +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe48e47bc unregister_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xeaee62d4 mtd_ooblayout_set_databytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xec1d9511 mtd_read_oob +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xee7ea1ef mtd_ooblayout_get_eccbytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf393aab2 mtd_block_markbad +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf8de73d7 mtd_get_unmapped_area +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x30ae4f6e deregister_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x60120921 mtd_blktrans_cease_background +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x877b87b6 del_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xf40e13e5 add_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xfff65d7c register_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x0261a100 nanddev_isbad +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x16a0b883 nand_ecc_cleanup_req_tweaking +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x2284da61 nanddev_markbad +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x2d448c7e nanddev_bbt_get_block_status +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x3321dfe0 nand_get_large_page_ooblayout +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x37cfba08 nanddev_bbt_cleanup +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x48fdc9c0 nanddev_bbt_set_block_status +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x58586f76 nand_ecc_tweak_req +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x5c05b7c2 nanddev_isreserved +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x72d70c0d nanddev_bbt_init +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x980b5556 nanddev_mtd_max_bad_blocks +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xa0c9d156 nanddev_mtd_erase +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xa3377719 nanddev_erase +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xb2f63b3f nanddev_bbt_update +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xb962af22 nand_ecc_init_req_tweaking +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xbf857c05 nanddev_cleanup +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xc2d662f0 nanddev_ecc_engine_init +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xd1d23f50 nand_ecc_restore_req +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xd777e357 nanddev_init +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xec270cd1 nand_get_large_page_hamming_ooblayout +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xed88553d nand_get_small_page_ooblayout +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xf0fb9264 nanddev_ecc_engine_cleanup +EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0x3d20a51b onenand_release +EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0xd42bbdbb onenand_scan +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/denali 0x8b9bafc2 denali_chip_init +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x05de53e2 nand_soft_waitrdy +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x06b7336b nand_wait_ready +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x07a9ba7d nand_read_oob_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x0a46fcba nand_ecc_choose_conf EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x11091291 nand_extract_bits +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x194222a5 nand_prog_page_end_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x1bc25c14 nand_cleanup +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x26e79f57 nand_read_page_op EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x2d368c4c nand_subop_get_addr_start_off -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x39263f40 nand_ecc_choose_conf -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x450f0d43 nand_prog_page_end_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x4d90a917 nand_prog_page_begin_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x3ce0c5b1 nand_read_page_hwecc_oob_first +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x413dedee nand_readid_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x45881c4a nand_change_read_column_op EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x5632e63d nand_subop_get_num_addr_cyc -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x58f5f40e nand_reset -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x67a1cb3b nand_cleanup -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x6a5a2c62 nand_read_page_hwecc_oob_first -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x6fceab37 nand_decode_ext_id -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x781290b1 nand_op_parser_exec_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x785e5036 nand_deselect_target -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x7d27cdf7 nand_gpio_waitrdy -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x8110d77c nand_read_page_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x880f8600 nand_write_data_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x8ba8d1e2 nand_reset_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x8ebc3d61 nand_select_target -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xb08fa168 nand_prog_page_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xb2fa9f9c nand_soft_waitrdy -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xb4f761d6 nand_change_write_column_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xcc3808bc nand_wait_ready -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xcf64ba8c nand_status_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x56b3a053 nand_read_data_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x6e54f168 nand_decode_ext_id +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x776a37d5 nand_op_parser_exec_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x783156f3 nand_reset +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x8befbf18 nand_write_data_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x8fe065b8 nand_prog_page_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x99da08ff nand_status_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x99e9556c nand_deselect_target +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x9a0b7e03 nand_reset_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xc11921b3 nand_prog_page_begin_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 0xe12b9117 nand_change_read_column_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xe5efc63d nand_read_data_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/sm_common 0xe2aa9ec9 sm_register_device -EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0x09eabc38 spi_nor_restore -EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0xb3a4f599 spi_nor_scan -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x0d4963b9 ubi_leb_read -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x10fcb83b ubi_close_volume -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x1c56d335 ubi_leb_erase +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xd5673cb9 nand_select_target +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xe9dbf294 nand_gpio_waitrdy +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xfcf0cd2d nand_erase_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xfcf7e92e nand_change_write_column_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/sm_common 0xeaedc121 sm_register_device +EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0x100f5a83 spi_nor_restore +EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0x736cf985 spi_nor_scan +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x12be6169 ubi_open_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x267e8385 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 0x5b55aab9 ubi_leb_write -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x60de14e7 ubi_leb_change EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x66011ab6 ubi_get_device_info -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x78c9a131 ubi_leb_map +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x6da16b8b ubi_do_get_device_info EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x85a8ee76 ubi_unregister_volume_notifier -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x87aa35c3 ubi_open_volume_path -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x88cf718f ubi_leb_read_sg -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x93d6795a ubi_is_mapped -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x94040613 ubi_open_volume_nm -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xa4baa9e3 ubi_do_get_device_info -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xa5c7d47a ubi_get_volume_info -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xe930a2ea ubi_leb_unmap -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xeb7231fa ubi_open_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xa6209d82 ubi_leb_erase +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xa84d14c7 ubi_leb_read +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xaf2d1035 ubi_open_volume_nm +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xbf06a3d3 ubi_leb_read_sg +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xcd34e09a ubi_get_volume_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xcd5f2f66 ubi_close_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xcf202292 ubi_leb_unmap +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xda23d5cc ubi_is_mapped +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xdb431406 ubi_leb_change +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf394add7 ubi_leb_write EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf5ee9ba8 ubi_register_volume_notifier -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x14cefeb3 mux_control_deselect -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x40931419 mux_control_get -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x4691836b mux_chip_unregister -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x4b8796ee devm_mux_chip_register -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x50304a2d mux_chip_register -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x5da3c3bd devm_mux_control_get -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xa0199c54 mux_control_states -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xc020a4a0 devm_mux_chip_alloc -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xc4549d1f mux_control_put -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xc66e33ac mux_control_try_select -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xd21ce870 mux_control_select -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xd420355b mux_chip_free -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xeb3e3596 mux_chip_alloc -EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x8a8fd73e devm_arcnet_led_init -EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0xcc5ca6c7 arcnet_led_event -EXPORT_SYMBOL_GPL drivers/net/bareudp 0x33685437 bareudp_dev_create -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x3c9826ad register_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x3de54f98 c_can_power_up -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x5cc9c945 unregister_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x7e4ea456 c_can_power_down -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x89da45f1 alloc_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xa18194f3 free_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x0921c49c unregister_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x2aa4811c free_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x9d7df836 register_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xf4bb457b alloc_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x05a682ad can_bus_off +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf8c71800 ubi_leb_map +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x13720aa1 mux_control_put +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x267a7aa7 devm_mux_control_get +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x3cec2fec mux_control_get +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x6dfc219d mux_chip_alloc +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x8a05042b mux_control_states +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x9779289a devm_mux_chip_alloc +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xa0fb4867 mux_control_deselect +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xb400c9c0 mux_control_select +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xb4fb3507 mux_chip_free +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xc3ecd9ec mux_chip_register +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xeae568b6 mux_chip_unregister +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xfcaaa7af devm_mux_chip_register +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xfcf33f7a mux_control_try_select +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x9f16865b arcnet_led_event +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0xf8ea2bf3 devm_arcnet_led_init +EXPORT_SYMBOL_GPL drivers/net/bareudp 0x9b17683c bareudp_dev_create +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x6bb74491 c_can_power_down +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x70b73b02 free_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x894dd70e register_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xbb3b073c unregister_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xc8161e61 c_can_power_up +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xfaa4223a alloc_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x112b76a7 free_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xae1766a1 alloc_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xc707be56 unregister_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xd40c5aef register_cc770dev EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x10d892eb can_get_state_str -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x15cce3c6 can_rx_offload_irq_offload_fifo -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x1ad18adf can_rx_offload_queue_sorted -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x20df6b6e register_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x23b5908c alloc_canfd_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x2ee1b07d can_rx_offload_irq_finish -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x431d33e4 can_rx_offload_queue_tail -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x4eba8709 can_rx_offload_get_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x54b49c89 open_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x54cabd94 can_rx_offload_add_fifo -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x5a89fd6d safe_candev_priv +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x270f934c safe_candev_priv +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x27afaed1 close_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x2ef1e6df register_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x3391d24f can_change_mtu +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x36ceaa60 can_rx_offload_del +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x3c879b00 alloc_candev_mqs +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x3e29cd49 alloc_can_err_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x41876f6a can_rx_offload_add_manual +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x466436b3 can_change_state +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x4edf0a9b can_rx_offload_irq_finish +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x594e2998 can_free_echo_skb EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6047ede6 can_fd_len2dlc -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6063181a can_rx_offload_irq_offload_timestamp -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6272b9b8 can_free_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x685b4725 can_rx_offload_threaded_irq_finish -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6892c303 free_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x7f2dd4bf unregister_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x86931dda can_get_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x898aad80 can_rx_offload_add_timestamp -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x8e40af02 alloc_candev_mqs -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x8fc3aa3e of_can_transceiver -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xb6665684 can_rx_offload_enable -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xba394e83 alloc_can_err_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xc5c23b9c can_put_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xcdd4b7cd can_change_state -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xd0f41a1e can_rx_offload_del -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xdb1f6dc7 can_rx_offload_add_manual -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xe14eb20c can_skb_get_frame_len -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xe4960664 alloc_can_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x64224e9e can_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6d80a695 can_rx_offload_queue_sorted +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6f804e3e alloc_canfd_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x7f9fe7e8 can_rx_offload_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x81e414d8 can_rx_offload_add_timestamp +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x85062064 of_can_transceiver +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x87aa7b52 can_bus_off +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x92c14e3d alloc_can_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x9ddaf8b5 can_rx_offload_irq_offload_fifo +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xaac16531 can_rx_offload_enable +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xbc35a517 unregister_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xbd7c7bbb can_rx_offload_queue_tail +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xc2b00861 open_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xd45899d0 can_put_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xd9f22140 can_skb_get_frame_len +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xdb13a4a6 free_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xee1b520c can_rx_offload_irq_offload_timestamp EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf12d9387 can_fd_dlc2len -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf8ff513e close_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf9338e9e can_change_mtu -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x23e51544 m_can_class_free_dev -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x5009a5c2 m_can_class_resume -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x56bab5ae m_can_init_ram -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x63926723 m_can_class_allocate_dev -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x6c06c906 m_can_class_get_clocks -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xa51c4dc9 m_can_class_suspend -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xdc1e9880 m_can_class_unregister -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xfe97931c m_can_class_register +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf84f3a0b can_rx_offload_add_fifo +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xfcf4f0a5 can_rx_offload_threaded_irq_finish +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x14c7fe8e m_can_class_get_clocks +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x46c0a0a2 m_can_class_unregister +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x54d3c352 m_can_class_allocate_dev +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x5ea696c7 m_can_init_ram +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x5ec17885 m_can_class_free_dev +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x67553fbc m_can_class_suspend +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x7a981c76 m_can_class_resume +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xf5a44a38 m_can_class_register +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x22c31718 alloc_sja1000dev EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xa0c33c56 register_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xdb4480ee unregister_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xe6718e3f free_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xfb731153 alloc_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/dsa/lan9303-core 0x959216a3 lan9303_indirect_phy_ops -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x18c43ec2 ksz_port_bridge_leave -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x207c1bfe ksz_port_fdb_dump -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x27ab451e ksz_init_mib_timer -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x36c086cb ksz_mac_link_down -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x5edf7ecc ksz_get_ethtool_stats -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x63834327 ksz_sset_count -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x6afb60c5 ksz_enable_port -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x762082f1 ksz_port_fast_age -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x9f827a51 ksz_phy_write16 -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xa0bf48c5 ksz_port_mdb_del -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xa71e650d ksz_port_mdb_add -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xcdf662f8 ksz_port_bridge_join -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xe1c8d96a ksz_phy_read16 -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xe26d2999 ksz_update_port_member -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x0792a3f4 rtl8366_enable_vlan4k -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x0ae1d9f5 rtl8366rb_variant -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x1f557c25 rtl8366_vlan_filtering -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x2b272831 rtl8366_enable_vlan -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x351e2fa1 rtl8366_set_pvid -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x35ed91c2 rtl8366_set_vlan -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x529b55bf rtl8366_vlan_add -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x5b7725ea rtl8366_init_vlan -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x76d55793 rtl8366_mc_is_used -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x8b64c5ca realtek_smi_write_reg_noack -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x91a17acb rtl8366_get_strings -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x9990e025 rtl8366_reset_vlan -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xa462dfbc rtl8366_get_sset_count -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xd7f264c8 rtl8366_get_ethtool_stats -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xeaceee9f rtl8366_vlan_del +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x56b10472 unregister_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xc4d124e9 register_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xcea94820 free_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/dsa/lan9303-core 0x11494f73 lan9303_indirect_phy_ops +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x00040bd3 ksz_port_mdb_del +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x0eb6089c ksz_mac_link_down +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x17792ee4 ksz_port_mdb_add +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x23a27a64 ksz_port_bridge_join +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x43655e16 ksz_phy_read16 +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x697164a2 ksz_update_port_member +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x74ca5636 ksz_enable_port +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x763feba2 ksz_sset_count +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x7a72404c ksz_port_bridge_leave +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x9ee2ddb5 ksz_phy_write16 +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x9fda4fd7 ksz_get_ethtool_stats +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xc19a5694 ksz_port_fast_age +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xe7cc20d8 ksz_init_mib_timer +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xe831094a ksz_port_fdb_dump +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x06b7edee rtl8366_enable_vlan4k +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x1150ee1d rtl8366_vlan_add +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x1bb12aff rtl8366_get_ethtool_stats +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x2eeb8607 rtl8366_enable_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x3454e08d rtl8366_init_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x3bcb0fa4 rtl8366_get_sset_count +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x58c8ab76 rtl8366rb_variant +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x68203d7b realtek_smi_write_reg_noack +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xa13861d6 rtl8366_get_strings +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xaa288aab rtl8366_vlan_del +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xbfbed9cb rtl8366_reset_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xe7d595bf rtl8366_mc_is_used +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xe97967d3 rtl8366_set_pvid +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xf4071b35 rtl8366_vlan_filtering +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xfed21c56 rtl8366_set_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0x562fca35 enetc_mdio_write 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 0xb84d7c75 enetc_mdio_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0xcbd796ef enetc_mdio_read -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0xff587078 enetc_hw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0x2bcc46fa i40e_client_device_unregister -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0x4cee1ef8 i40e_client_device_register -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x1ed4159d ice_rdma_request_reset -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x23726a8e ice_get_qos_params -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x58f5d7be ice_add_rdma_qset -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x61256d05 ice_rdma_update_vsi_filter -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xfee637f0 ice_del_rdma_qset -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x01ac33f2 mlx4_multicast_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x03157f8b mlx4_phys_to_slaves_pport_actv -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x03b310e1 mlx4_wol_read -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x043ce24b mlx4_qp_reserve_range -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x05d2df07 mlx4_get_internal_clock_params -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0c8237ee mlx4_xrcd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0d3b3c5d mlx4_read_clock -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x11ef2ec1 mlx4_mr_hw_change_pd -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x13b49c7a mlx4_cq_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x13ed0894 mlx4_replace_zero_macs -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1ab21c88 mlx4_srq_arm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1e06e71a mlx4_srq_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1e4bc03d mlx4_cq_resize -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1f4631fb mlx4_update_qp -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2046989b mlx4_unregister_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x245b0a45 mlx4_counter_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x24cac34a mlx4_register_interface -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x254000fa mlx4_qp_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2650db6a mlx4_set_vf_link_state -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x287f4b2a mlx4_mr_hw_change_access -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2e58dbd3 mlx4_set_vf_spoofchk -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2fe87e9d mlx4_vf_get_enable_smi_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x339df7d2 mlx4_qp_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x341a27b3 mlx4_flow_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3972247e mlx4_get_protocol_dev -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x397edce7 mlx4_find_cached_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3ae812bf mlx4_mtt_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3b1d84ee mlx4_phys_to_slave_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3b889ac0 mlx4_get_vf_config -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3fe7c7cf mlx4_unregister_interface -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x45d47a85 mlx4_vf_smi_enabled -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x46a8aa54 __mlx4_unregister_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4913bd1c mlx4_unicast_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x49350847 mlx4_register_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4a11c964 mlx4_get_devlink_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4cbefbda mlx4_uar_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4e54c85c mlx4_bond -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x500162fc mlx4_CLOSE_PORT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x54be9d24 mlx4_mr_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x58ed1f27 mlx4_vf_set_enable_smi_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5a912adf mlx4_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5b7dccae __mlx4_cmd -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5cf55fa1 mlx4_set_vf_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5d3082ce mlx4_FLOW_STEERING_IB_UC_QP_RANGE -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x626482ee mlx4_free_hwq_res -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6450cc03 mlx4_get_base_qpn -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x685c9c53 mlx4_multicast_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x693d0fc6 mlx4_mr_hw_write_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6bb018cc mlx4_get_active_ports -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6d24cb3d mlx4_set_vf_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6f73a30b mlx4_find_cached_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7323158e mlx4_get_vf_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7464bfa3 mlx4_alloc_cmd_mailbox -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x75f3d8b9 mlx4_unicast_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x764cc8e9 mlx4_unregister_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x775c83b9 mlx4_qp_release_range -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7a62de1c mlx4_free_cmd_mailbox -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7ade4e4a mlx4_wol_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7af5fdce mlx4_srq_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7b62af0a mlx4_mw_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7bfbe6b8 mlx4_pd_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7d122eac mlx4_get_admin_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7d8f24d6 mlx4_config_vxlan_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x83fb10b4 mlx4_get_base_gid_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x89e53021 mlx4_uar_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8b52019d mlx4_set_admin_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8c9a0015 mlx4_buf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8caa58cc mlx4_flow_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8fb14f61 mlx4_mtt_addr -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8fe804b2 mlx4_db_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x90bbd795 mlx4_flow_steer_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x96d78ba8 mlx4_mw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9f3df81c mlx4_config_dev_retrieval -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9fa01e87 mlx4_cq_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa3ef004b __mlx4_replace_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xae06b0c3 mlx4_INIT_PORT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb472d8b2 mlx4_counter_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb8e6604b mlx4_get_default_counter_index -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbc5dec06 mlx4_get_slave_default_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbca38995 mlx4_mr_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbd1970af mlx4_cq_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbef3d0b9 mlx4_mtt_cleanup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc2ab5d9c mlx4_mr_rereg_mem_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc356da7c mlx4_buf_write_mtt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc77fc6b0 mlx4_flow_steer_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc93d1f35 mlx4_mr_hw_get_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc96e3380 mlx4_qp_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcb239d2f mlx4_db_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcbfa2355 mlx4_multicast_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcc29396f mlx4_phys_to_slaves_pport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xce1044d8 mlx4_set_vf_rate -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcf34c27b mlx4_bf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd0d0f9d5 mlx4_mr_rereg_mem_cleanup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd1bba56c mlx4_qp_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd1e51b23 __mlx4_register_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd30465c3 mlx4_mr_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd668576b mlx4_pd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdc3d4233 mlx4_mw_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdd221b3e mlx4_get_counter_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xde58ae30 mlx4_alloc_hwq_res -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe08a0af6 mlx4_hw_rule_sz -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe0ff38ae mlx4_register_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe14304cc mlx4_unicast_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe277aaaf mlx4_qp_to_ready -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe38f31a1 mlx4_srq_lookup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe4aba42a mlx4_xrcd_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe658da92 mlx4_unbond -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe8ea8860 mlx4_port_map_set -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeb3a42ae mlx4_write_mtt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xef274017 mlx4_unicast_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf5ca9d42 mlx4_map_sw_to_hw_steering_mode -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf7664737 mlx4_SYNC_TPT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf7910481 mlx4_mr_hw_put_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf81c5e70 mlx4_qp_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf96864e8 mlx4_ACCESS_PTYS_REG -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfacfafab mlx4_config_roce_v2_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfad23e1a mlx4_slave_convert_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfb772c56 mlx4_map_sw_to_hw_steering_id -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfcda2c8f mlx4_srq_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfe1dc329 mlx4_multicast_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xffb7f550 mlx4_bf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x006a25df mlx5_core_reserved_gids_count -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x01283913 mlx5_query_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0x7598b3ab enetc_hw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0x9482534a enetc_mdio_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0x080d6b97 i40e_client_device_register +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0x70ec8185 i40e_client_device_unregister +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x0286c470 ice_rdma_update_vsi_filter +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x5352a0f5 ice_rdma_request_reset +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xb22404b7 ice_get_qos_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xc5e05f11 ice_del_rdma_qset +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xdb371010 ice_add_rdma_qset +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x01e7c46f mlx4_replace_zero_macs +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x01fd52df mlx4_mr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x03ecea04 mlx4_set_vf_spoofchk +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x068aea9d mlx4_mr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x06b5e648 mlx4_xrcd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x07fee0b0 mlx4_unregister_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0b8812ce mlx4_hw_rule_sz +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0cf00360 mlx4_bf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1365ea4e mlx4_unicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x16142c3a mlx4_get_base_qpn +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1778b587 mlx4_phys_to_slaves_pport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x18d820b1 mlx4_get_internal_clock_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1c912922 mlx4_mtt_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2110f0a9 mlx4_get_base_gid_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x21f175cd mlx4_qp_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x232dc429 mlx4_flow_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x23ed00f8 mlx4_vf_smi_enabled +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x286bde72 mlx4_pd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2881f837 mlx4_mr_rereg_mem_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x29c3aa00 mlx4_map_sw_to_hw_steering_id +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2baa8b84 mlx4_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2d6fdb95 mlx4_find_cached_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x303ebcda mlx4_ACCESS_PTYS_REG +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x322c509c mlx4_mr_hw_get_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3389d5ce mlx4_unbond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x34aaf898 mlx4_mtt_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x356e2e32 mlx4_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x36ef9b0f mlx4_flow_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3a7f6034 mlx4_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3cf3f109 mlx4_srq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3e975f06 mlx4_get_slave_default_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x40c3f7ad mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4494538f mlx4_phys_to_slave_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x47e2c043 mlx4_bf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4863f64a mlx4_buf_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4a9bc9fc mlx4_INIT_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4c079faf mlx4_FLOW_STEERING_IB_UC_QP_RANGE +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4fbe9586 mlx4_multicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x507c9547 mlx4_port_map_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x52a5ebde mlx4_mr_hw_change_pd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x55b94b7c mlx4_cq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5668fd7b mlx4_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x57d998d3 mlx4_unicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5a78e4be mlx4_get_counter_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5b626533 mlx4_register_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5cb00e62 mlx4_mw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5cbef0cb mlx4_wol_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x61c11cff mlx4_uar_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6431e68d mlx4_set_vf_link_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x65adf7d3 mlx4_mw_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6741e63b mlx4_CLOSE_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6b309686 mlx4_config_vxlan_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6df9e6d1 mlx4_get_vf_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6e0dfa0f mlx4_set_vf_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6e7a0d61 mlx4_mtt_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x708a59e3 mlx4_vf_get_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x74d4e15e mlx4_config_roce_v2_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7734fe58 mlx4_multicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x774428ee mlx4_map_sw_to_hw_steering_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x77ac034f mlx4_unregister_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7a537504 mlx4_mw_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7bd75496 mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7c82be1c __mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7dfbb392 mlx4_phys_to_slaves_pport_actv +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7e3add8d mlx4_unicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7e458c2d mlx4_counter_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x81aa820b mlx4_qp_release_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x834520c3 __mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x83b561b9 mlx4_mr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x841fe759 mlx4_qp_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x886c68f4 mlx4_srq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x90267fc1 mlx4_uar_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x91b0db7b mlx4_wol_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x92e1c288 mlx4_cq_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x97108018 mlx4_qp_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9a957b20 mlx4_get_devlink_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9bf47014 __mlx4_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9ff6bdbd mlx4_qp_to_ready +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa0a78837 mlx4_pd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa10036d3 mlx4_mr_hw_change_access +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa1a97c67 mlx4_srq_lookup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa963f3cd mlx4_set_vf_rate +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xab004a0a mlx4_get_active_ports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaeaef4e8 mlx4_set_vf_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb114dc9d mlx4_get_protocol_dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb4876a45 mlx4_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb821bc91 mlx4_qp_reserve_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xba243b2e mlx4_srq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbc6438f2 mlx4_read_clock +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc0799328 mlx4_slave_convert_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc2d63dc8 mlx4_alloc_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc3163f94 mlx4_mr_hw_put_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc3fda8a3 mlx4_cq_resize +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc53882bb mlx4_free_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc72e9a06 mlx4_free_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xca169508 mlx4_get_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcb09b12d mlx4_SYNC_TPT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcfd35c20 mlx4_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd05dd60d mlx4_get_default_counter_index +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd1ff61c8 mlx4_config_dev_retrieval +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd31d9cdd mlx4_update_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd3d1c218 mlx4_alloc_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd472b6d4 mlx4_flow_steer_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd564c2bd mlx4_unicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd695cc90 mlx4_set_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdb821db9 mlx4_bond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdc6a3856 mlx4_multicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xde4a7414 mlx4_find_cached_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdf4d980a mlx4_register_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdf556334 mlx4_mr_hw_write_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe461aad3 mlx4_cq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe508d55f mlx4_multicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe89a062f mlx4_get_vf_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf1e9c855 mlx4_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf46fca96 mlx4_flow_steer_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf7dd95dd mlx4_counter_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf8d35ee3 __mlx4_replace_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf907e08d mlx4_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf9d631c5 mlx4_srq_arm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfed69e92 mlx4_mr_rereg_mem_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfef69894 mlx4_vf_set_enable_smi_admin 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 0x0a8b9a65 mlx5_query_module_eeprom_by_page -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0cf24a57 mlx5_dm_sw_icm_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x107d89e7 mlx5_db_alloc_node -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x15bf0f8c mlx5_core_query_ib_ppcnt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1643748f mlx5_nic_vport_enable_roce -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1cced293 mlx5_query_port_vl_hw_cap -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2373a877 mlx5_query_nic_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2450958d mlx5_modify_nic_vport_promisc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2e71359c mlx5_db_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x35e756ff mlx5_set_port_wol -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x398106cc mlx5_eswitch_get_total_vports -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3fa3f8ab mlx5_set_port_prio_tc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x43a126e5 mlx5_query_port_pause -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x43ac2de4 mlx5_query_port_prio_tc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4db9ae30 mlx5_query_nic_vport_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4e89426a mlx5_query_port_pfc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5262701d mlx5_core_query_sq_state -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x554e2860 mlx5_core_modify_hca_vport_context -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5a1aaccc mlx5_set_port_pause -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5adf7649 mlx5_query_nic_vport_promisc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x68b58b42 mlx5_accel_esp_modify_xfrm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6fa8d75e mlx5_query_port_max_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x70505730 mlx5_query_port_oper_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7930166c mlx5_query_hca_vport_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x799d0b8d mlx5_query_port_ptys -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x79de964d mlx5_query_nic_vport_mac_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7c66edff mlx5_query_nic_vport_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7c6a6c36 mlx5_nic_vport_affiliate_multiport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0988493e mlx5_set_port_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0bd90e4e mlx5_query_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1363703c mlx5_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x13a23f2e mlx5_query_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x180d9cdb mlx5_nic_vport_enable_roce +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x19f2e1af mlx5_core_reserved_gids_count +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1a8dbbf2 mlx5_modify_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1afb807a mlx5_query_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1f4100ca mlx5_core_query_vport_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2135e342 mlx5_core_query_sq_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2172d383 mlx5_query_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x23b92d65 mlx5_set_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2e26b0c3 mlx5_query_min_inline +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x325075ac mlx5_nic_vport_affiliate_multiport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x335f0024 mlx5_query_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x375806e7 mlx5_set_port_tc_group +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x37d89603 mlx5_query_port_vl_hw_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x38c39870 mlx5_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x393da5f7 mlx5_core_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3cc23124 mlx5_query_port_tc_group +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x41a3b08d mlx5_db_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x42d6ec6f mlx5_dm_sw_icm_dealloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x435d3228 mlx5_query_port_oper_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x47730b7d mlx5_set_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x47f62fd8 mlx5_query_nic_vport_qkey_viol_cntr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4accb6c9 mlx5_nic_vport_unaffiliate_multiport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4efd4190 mlx5_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5018cd06 mlx5_eswitch_get_total_vports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x52fd15af mlx5_set_port_prio_tc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x56d9e7af mlx5_modify_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x57d1c070 mlx5_set_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5fcfecdd mlx5_query_nic_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x70c2f175 mlx5_frag_buf_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7133508c mlx5_query_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x72a337d8 mlx5_query_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7648350b mlx5_nic_vport_update_local_lb +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x76b4651e mlx5_query_hca_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x77c51ad4 mlx5_query_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x785abb63 mlx5_set_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8137cb40 mlx5_modify_port_ets_rate_limit 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 0x85cb18d1 mlx5_modify_nic_vport_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x88aef3f7 mlx5_eswitch_mode -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8919706d mlx5_query_min_inline -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8f56db95 mlx5_set_port_admin_status -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8ff390e7 mlx5_core_access_reg -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9024479e mlx5_query_hca_vport_node_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x996e5ad5 mlx5_set_port_pfc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa5e53c2d mlx5_query_nic_vport_min_inline +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x88620b32 mlx5_query_nic_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8f2dc594 mlx5_accel_esp_destroy_xfrm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x92ae8450 mlx5_query_port_prio_tc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9c03669c mlx5_modify_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9de9dd78 mlx5_accel_esp_modify_xfrm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa0982b88 mlx5_set_port_tc_bw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa2a1c401 mlx5_accel_esp_create_xfrm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa2fdbd70 mlx5_modify_nic_vport_mac_list EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa75f49d6 mlx5_fill_page_array -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa9c67ca4 mlx5_set_port_tc_group -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaf28e88e mlx5_query_port_admin_status -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaf55113a mlx5_modify_nic_vport_mac_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaf8b1beb mlx5_set_port_caps -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb1438aa0 mlx5_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb1a092b3 mlx5_query_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb1daabda mlx5_core_query_vport_counter -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb2e7706a mlx5_modify_port_ets_rate_limit -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb4549785 mlx5_query_module_eeprom -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb4b59024 mlx5_query_hca_vport_pkey -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbeadeed1 mlx5_set_port_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc2c1e188 mlx5_query_nic_vport_node_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc4026559 mlx5_set_port_tc_bw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xca01be37 mlx5_dm_sw_icm_dealloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xca18d30d mlx5_query_port_tc_bw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcafdd815 mlx5_accel_esp_create_xfrm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcdc6ab29 mlx5_nic_vport_update_local_lb -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcf19ad7d mlx5_frag_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd389758d mlx5_query_port_tc_group -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdb19fb04 mlx5_query_nic_vport_qkey_viol_cntr -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdba3f4ef mlx5_modify_nic_vport_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdec3be7a mlx5_query_hca_vport_context -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe0c76929 mlx5_query_hca_vport_gid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe27c2045 mlx5_toggle_port_link -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe3c5de0e mlx5_query_nic_vport_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe816a465 mlx5_frag_buf_alloc_node -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeb2dd640 mlx5_query_port_wol -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xec7fbaa8 mlx5_nic_vport_unaffiliate_multiport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf11d74e0 mlx5_modify_nic_vport_vlans -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf19a172b mlx5_accel_ipsec_device_caps -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf2eabd59 mlx5_accel_esp_destroy_xfrm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf9604822 mlx5_nic_vport_query_local_lb -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfd608db6 mlx5_db_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x4a9821a6 ks8851_probe_common -EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x687d304c ks8851_remove_common -EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x6aeaed2a ks8851_resume -EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0xf207248d ks8851_suspend -EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0xbbb85fca devm_regmap_init_encx24j600 +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaccd6719 mlx5_query_port_ptys +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xae7cc316 mlx5_query_port_max_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xafa9ad52 mlx5_query_nic_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb95d708a mlx5_toggle_port_link +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbed93dc4 mlx5_query_hca_vport_gid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc0f12709 mlx5_nic_vport_query_local_lb +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc7ca54ea mlx5_query_module_eeprom_by_page +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd0bfe381 mlx5_accel_ipsec_device_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd1095bcc mlx5_query_nic_vport_min_inline +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd1698543 mlx5_eswitch_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd2382b01 mlx5_query_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd55b39e9 mlx5_query_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdc2df4c6 mlx5_frag_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xde99626f mlx5_modify_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdff5c296 mlx5_core_modify_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe127fbf0 mlx5_query_module_eeprom +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe4ee1b4c mlx5_query_hca_vport_pkey +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe650142c mlx5_set_port_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeb3af2d0 mlx5_query_hca_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xed1006dd mlx5_dm_sw_icm_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf1b1e95f mlx5_query_port_tc_bw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf452160a mlx5_core_query_ib_ppcnt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfb4bbca9 mlx5_query_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x03d32f4f ks8851_probe_common +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x77015378 ks8851_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0xa5254ca6 ks8851_remove_common +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0xc9693bf8 ks8851_suspend +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0xbe621b41 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 0x01943d10 ocelot_regmap_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2f10fefd __ocelot_rmw_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x34e7fc5e __ocelot_read_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x57e317a2 __ocelot_write_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6231bf98 ocelot_cls_flower_replace -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x66293b31 ocelot_regfields_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x828c43f8 ocelot_phylink_mac_link_up -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x93c1940f ocelot_port_readl -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa305161c ocelot_port_writel -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xaefc8c09 ocelot_cls_flower_destroy -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb69f36d6 ocelot_port_rmwl -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc13897c8 ocelot_phylink_mac_link_down -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc1f2d4d6 ocelot_cls_flower_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x04029d31 ocelot_phylink_mac_link_up +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x14da8331 ocelot_cls_flower_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x49ce825b ocelot_port_readl +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4b5e25f6 ocelot_cls_flower_destroy +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x72bdb1da ocelot_phylink_mac_link_down +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7b759777 __ocelot_read_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7f63d9bc __ocelot_rmw_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8e4b9bd4 ocelot_cls_flower_replace +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xaf67b8f0 __ocelot_write_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb97d628f ocelot_port_rmwl +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc4595b30 ocelot_regmap_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xeb5709b6 ocelot_regfields_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xef0f6e6a ocelot_port_writel 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 0x201b919e stmmac_bus_clks_config -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x4df601d4 stmmac_suspend -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x89df6322 stmmac_init_tstamp_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x3adbf192 stmmac_suspend +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x4cf38b79 stmmac_bus_clks_config EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x92d778bb stmmac_get_mac_addr -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xcc783fb6 stmmac_dvr_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x99979566 stmmac_resume EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xd1cc24db stmmac_set_mac_addr -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xd48ff09b stmmac_dvr_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xf2761686 stmmac_resume -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x1cb67de9 stmmac_pltfr_pm_ops -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x363f9188 stmmac_get_platform_resources -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x42f723b0 stmmac_remove_config_dt -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xc23bf10d stmmac_pltfr_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xd8871ef0 stmmac_probe_config_dt -EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x53700784 w5100_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xc544dfb2 w5100_ops_priv -EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xc9e7e3a6 w5100_pm_ops -EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xcf7f3f7e w5100_probe -EXPORT_SYMBOL_GPL drivers/net/geneve 0x70d49cb2 geneve_dev_create_fb -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x37011731 ipvlan_link_delete -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x4ecff0ee ipvlan_count_rx -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x97e764f6 ipvlan_link_new -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xcfdca8e1 ipvlan_link_register -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xfeeb4cac ipvlan_link_setup -EXPORT_SYMBOL_GPL drivers/net/macsec 0xdfbb59f4 macsec_pn_wrapped -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x2fd152cf macvlan_common_newlink -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x6d2585c8 macvlan_dellink -EXPORT_SYMBOL_GPL drivers/net/macvlan 0xa7089ea7 macvlan_common_setup -EXPORT_SYMBOL_GPL drivers/net/macvlan 0xe7bf970c macvlan_link_register -EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-i2c 0x783235d1 mdio_i2c_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xe1a39b01 stmmac_dvr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xeaae4c44 stmmac_init_tstamp_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xee92b106 stmmac_dvr_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x05d73803 stmmac_pltfr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x48884f67 stmmac_probe_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x63dd0bbf stmmac_remove_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x6e5a7d87 stmmac_get_platform_resources +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xfeb0adfc stmmac_pltfr_pm_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x0b0b5905 w5100_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x0d51d609 w5100_ops_priv +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x7bfc21d7 w5100_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xa01d1c34 w5100_pm_ops +EXPORT_SYMBOL_GPL drivers/net/geneve 0xfda396f8 geneve_dev_create_fb +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x195b8d27 ipvlan_link_delete +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x2de91999 ipvlan_link_new +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x3c4e972e ipvlan_link_setup +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x468a8a58 ipvlan_count_rx +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x5a75dc88 ipvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/macsec 0x95b3f3aa macsec_pn_wrapped +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xb7696c5c macvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xd849419c macvlan_dellink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xe0e60ebe macvlan_common_setup +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xfc05f1ae macvlan_common_newlink +EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-i2c 0xc105a906 mdio_i2c_alloc +EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-mux 0x55faf067 mdio_mux_init EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-mux 0x6318757f mdio_mux_uninit -EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-mux 0xdf160be0 mdio_mux_init -EXPORT_SYMBOL_GPL drivers/net/net_failover 0x2fc069c6 net_failover_destroy -EXPORT_SYMBOL_GPL drivers/net/net_failover 0x562fe783 net_failover_create -EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x27bc5fa1 xpcs_config_eee -EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x5287389e xpcs_destroy -EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x8d238ef7 xpcs_create -EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x9926c06e xpcs_validate -EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xbf739b2f xpcs_get_an_mode +EXPORT_SYMBOL_GPL drivers/net/net_failover 0x8356e609 net_failover_create +EXPORT_SYMBOL_GPL drivers/net/net_failover 0xe57f532b net_failover_destroy +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x1cb58c65 xpcs_config_eee +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x3270b845 xpcs_create +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x493e2140 xpcs_destroy +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x73955756 xpcs_validate +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x84c6561f xpcs_get_an_mode +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xbc01786f xpcs_do_config EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xe05362b0 xpcs_link_up -EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xf5bd0f54 xpcs_do_config -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x1cd5dd18 bcm_phy_write_shadow -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x1e6b2350 bcm_phy_set_eee -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x2720a649 __bcm_phy_write_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x31e0e809 bcm_phy_write_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x376b1aae bcm_phy_get_stats -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x39d77be8 bcm_phy_cable_test_get_status -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x3c3d136d bcm_phy_config_intr -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x42263760 bcm_phy_28nm_a0b0_afe_config_init -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x47eb5258 __bcm_phy_read_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x4ddc6070 bcm_phy_get_strings -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x5960b2d2 bcm_phy_cable_test_get_status_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x611db5bd bcm54xx_auxctl_read -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x62b0df71 bcm_phy_read_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x6af2dbd5 __bcm_phy_modify_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x705d5fad bcm_phy_handle_interrupt -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7482aca7 __bcm_phy_modify_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x87cc2528 bcm_phy_modify_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x8db8b158 bcm_phy_enable_apd -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x99bc525a bcm_phy_modify_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x99efd2b0 bcm_phy_read_misc -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x9aec16d8 bcm_phy_write_misc -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x9eda9ad2 bcm_phy_read_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xaab3dac5 bcm_phy_r_rc_cal_reset -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb84db0c2 bcm_phy_get_sset_count -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xbb0f9ce9 bcm_phy_enable_jumbo -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xbb8117fb __bcm_phy_read_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xbc1a5cd4 bcm_phy_cable_test_start -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc0fe8fe3 __bcm_phy_write_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc9d076a5 bcm_phy_downshift_get -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xcb26c6ad bcm_phy_ack_intr -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xd0bde82e bcm_phy_cable_test_start_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xd0f53210 bcm_phy_downshift_set -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xd63ec1a3 bcm_phy_write_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xed9962b3 bcm_phy_read_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x0c207dc6 bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x0ca1301e bcm_phy_cable_test_start_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x13fb8892 bcm_phy_r_rc_cal_reset +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x1e9427dd bcm_phy_enable_jumbo +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x30db8723 __bcm_phy_write_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x3203682d bcm_phy_28nm_a0b0_afe_config_init +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x427a6c28 bcm_phy_write_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x4fd4c067 bcm_phy_modify_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x533593f4 __bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x5801ed49 bcm_phy_downshift_get +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x61565d5b bcm_phy_ack_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x670809e8 __bcm_phy_modify_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x6fce6911 bcm_phy_write_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x74d77e00 bcm_phy_cable_test_get_status +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7869903f bcm_phy_write_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7e8453c4 bcm_phy_get_sset_count +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x80684242 bcm_phy_downshift_set +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x8162574f __bcm_phy_modify_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x84e58a0f bcm_phy_handle_interrupt +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x85e59aff bcm_phy_cable_test_get_status_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x87445589 __bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x8e876927 bcm_phy_read_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x934071ec bcm_phy_cable_test_start +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x97e990c0 bcm_phy_read_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x9b2019cc __bcm_phy_read_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa5958b49 bcm54xx_auxctl_read +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa9be9ec0 bcm_phy_modify_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xaf8af6bd bcm_phy_enable_apd +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xbbcd3263 bcm_phy_config_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc4bc61fe bcm_phy_read_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xd0e43c5f bcm_phy_set_eee +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xd8d82dbb bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe013854c bcm_phy_get_strings +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe2942f05 bcm_phy_get_stats +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x06d01c0e phylink_connect_phy EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x08213956 phylink_ethtool_get_wol +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x0a735d5e phylink_mii_c22_pcs_get_state +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x0cdba7fd phylink_mii_c45_pcs_get_state EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x12135396 phylink_mac_change EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x131e8b94 phylink_helper_basex_speed 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 0x1a7c46cb phylink_mii_c45_pcs_get_state -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x25fa90cd phylink_create +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x1fbb4df7 phylink_mii_c22_pcs_set_advertisement EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x2c8e28ee phylink_ethtool_get_eee +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x2d4ddabe phylink_of_phy_connect +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x330794ef phylink_mii_c22_pcs_config 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 @@ -14327,1815 +14370,1811 @@ EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x6831eccf phylink_ethtool_ksettings_get EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x6fa426d2 phylink_ethtool_nway_reset EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x825c7340 phylink_get_eee_err -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x8e591788 phylink_mii_c22_pcs_an_restart +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x84b30398 phylink_create EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x911fcd6c phylink_start EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x983276da phylink_disconnect_phy EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x9ad6f36d phylink_decode_usxgmii_word -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xa42cf7b3 phylink_mii_c22_pcs_config -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xade63e0b phylink_connect_phy -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xb04c3609 phylink_mii_c22_pcs_set_advertisement -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xbc8be63f phylink_of_phy_connect +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xacefb80b phylink_mii_c22_pcs_an_restart 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 0xc3906c58 phylink_ethtool_ksettings_set -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xcdbff1eb phylink_fwnode_phy_connect EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xdcb0a2c0 phylink_stop EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xde66f4a7 phylink_mii_ioctl -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xe43a49b4 phylink_mii_c22_pcs_get_state EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xe8c137ed phylink_set_pcs +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xe9492d1b phylink_fwnode_phy_connect EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xec02ebe0 phylink_init_eee EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xf3083a1d phylink_destroy EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xf8fe5642 phylink_ethtool_get_pauseparam -EXPORT_SYMBOL_GPL drivers/net/tap 0x21030aba tap_get_minor -EXPORT_SYMBOL_GPL drivers/net/tap 0x329913d8 tap_handle_frame -EXPORT_SYMBOL_GPL drivers/net/tap 0x4eb080c3 tap_free_minor -EXPORT_SYMBOL_GPL drivers/net/tap 0x6b05b4d0 tap_destroy_cdev -EXPORT_SYMBOL_GPL drivers/net/tap 0x71fa2efd tap_queue_resize -EXPORT_SYMBOL_GPL drivers/net/tap 0x73d0b0dc tap_get_ptr_ring -EXPORT_SYMBOL_GPL drivers/net/tap 0xa5d6c959 tap_get_socket -EXPORT_SYMBOL_GPL drivers/net/tap 0xb3fa8855 tap_create_cdev -EXPORT_SYMBOL_GPL drivers/net/tap 0xee0dfe07 tap_del_queues -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x0b22a4c1 usbnet_cdc_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x1a5c0f40 usbnet_ether_cdc_bind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x781c1d0b usbnet_cdc_update_filter -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x79b10fcc usbnet_cdc_bind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x7e1ee437 usbnet_cdc_status -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xfd2869d6 usbnet_generic_cdc_bind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x089a7fff cdc_ncm_rx_verify_ndp16 -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x24669aeb cdc_ncm_rx_verify_nth32 -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x294af4db cdc_ncm_change_mtu -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x78af6b66 cdc_ncm_tx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x8ea59c9f cdc_ncm_rx_verify_nth16 -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x93884177 cdc_ncm_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xb20c50ed cdc_ncm_select_altsetting -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xb58b56da cdc_ncm_rx_verify_ndp32 -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xcf6b96d6 cdc_ncm_rx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xd3d561cc cdc_ncm_fill_tx_frame -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xf7778d1f cdc_ncm_bind_common -EXPORT_SYMBOL_GPL drivers/net/usb/r8152 0xa94957d4 rtl8152_get_version -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x4b514036 rndis_status -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x574e46ab rndis_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x67f379c5 rndis_tx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x6b63f22e rndis_command -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x92d14a37 generic_rndis_bind -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xb541d81e rndis_rx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x05bc0144 usbnet_skb_return -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x126da176 usbnet_write_cmd_async -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x13c3f5c8 usbnet_get_link_ksettings_mii -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x265a017c usbnet_open -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x30dad557 usbnet_purge_paused_rxq -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x363aa36b usbnet_status_start -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x388cea2f usbnet_probe -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x44000bd2 usbnet_set_link_ksettings_mii -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4994cad4 usbnet_get_ethernet_addr -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x55bd30ea usbnet_set_rx_mode -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5ded1d08 usbnet_start_xmit -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5eb03546 usbnet_resume_rx -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x61b662fe usbnet_pause_rx -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x62966cbc usbnet_nway_reset -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x63927a88 usbnet_write_cmd_nopm -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6c78acb0 usbnet_get_msglevel -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x73b9c176 usbnet_suspend -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8c614138 usbnet_defer_kevent -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x94198ee9 usbnet_disconnect -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa2f5c96c usbnet_stop -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa917a28f usbnet_read_cmd -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xafae0d61 usbnet_resume -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb05532f6 usbnet_get_endpoints -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb6552a3e usbnet_write_cmd -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb6bec908 usbnet_change_mtu -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc97a9635 usbnet_status_stop -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xdae8e6fc usbnet_get_link -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe6524d1d usbnet_get_drvinfo -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe7d4ccc0 usbnet_get_link_ksettings_internal -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xec8be17a usbnet_set_msglevel -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xeef13a60 usbnet_unlink_rx_urbs -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xfd77c38e usbnet_tx_timeout -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xfd9c03ad usbnet_read_cmd_nopm -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xff704e62 usbnet_update_max_qlen -EXPORT_SYMBOL_GPL drivers/net/vxlan 0x991f2cef vxlan_dev_create -EXPORT_SYMBOL_GPL drivers/net/vxlan 0x9d893c55 vxlan_fdb_replay -EXPORT_SYMBOL_GPL drivers/net/vxlan 0xa742125d vxlan_fdb_find_uc -EXPORT_SYMBOL_GPL drivers/net/vxlan 0xeac7658d vxlan_fdb_clear_offload -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/ipw2x00/libipw 0x7622c709 libipw_rx_any -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x043a9da6 il_mac_tx_last_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x129def2d il_remove_station -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8d364b08 il_prep_station -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc78c9c4a il_dealloc_bcast_stations -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe99ed004 _il_grab_nic_access -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x04be11e9 iwl_finish_nic_init -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x06333bf2 iwl_fw_dbg_read_d3_debug_data -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x074a970f iwl_set_bits_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x19a703e5 iwl_write8 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1c80bf82 iwl_fw_dbg_collect_trig +EXPORT_SYMBOL_GPL drivers/net/tap 0x01b2e5ae tap_get_ptr_ring +EXPORT_SYMBOL_GPL drivers/net/tap 0x040df3d6 tap_get_minor +EXPORT_SYMBOL_GPL drivers/net/tap 0x2763e79c tap_destroy_cdev +EXPORT_SYMBOL_GPL drivers/net/tap 0x4520e631 tap_handle_frame +EXPORT_SYMBOL_GPL drivers/net/tap 0x69e4cc00 tap_queue_resize +EXPORT_SYMBOL_GPL drivers/net/tap 0x9ece11c1 tap_free_minor +EXPORT_SYMBOL_GPL drivers/net/tap 0xafb4fdda tap_create_cdev +EXPORT_SYMBOL_GPL drivers/net/tap 0xb5da070f tap_del_queues +EXPORT_SYMBOL_GPL drivers/net/tap 0xb73935b1 tap_get_socket +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x1e342ea0 usbnet_ether_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x4d37417b usbnet_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x51bb3915 usbnet_cdc_update_filter +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xbd4d1ae5 usbnet_generic_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xe1b8fc40 usbnet_cdc_status +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xf8737040 usbnet_cdc_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x280ac4ef cdc_ncm_rx_verify_nth32 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x4e5e1d99 cdc_ncm_rx_verify_ndp16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x6c8cc408 cdc_ncm_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x6e5bbe7e cdc_ncm_rx_verify_ndp32 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x7a935129 cdc_ncm_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x88ebc7a5 cdc_ncm_select_altsetting +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xaebfece0 cdc_ncm_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xb011d0a5 cdc_ncm_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xc1c2ad51 cdc_ncm_rx_verify_nth16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xc1e7e496 cdc_ncm_fill_tx_frame +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xdc68a641 cdc_ncm_bind_common +EXPORT_SYMBOL_GPL drivers/net/usb/r8152 0x158f35b2 rtl8152_get_version +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x1f6c584a rndis_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x26360f48 rndis_command +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x45ef4944 rndis_status +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x4f446bff rndis_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xd58e2f0e generic_rndis_bind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xee73872e rndis_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x02633359 usbnet_resume_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x0acf0ec5 usbnet_purge_paused_rxq +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x10ab49b1 usbnet_get_endpoints +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2e6ffce0 usbnet_nway_reset +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x340ffd93 usbnet_suspend +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4655aa5e usbnet_get_drvinfo +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x48b59e93 usbnet_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5162453e usbnet_read_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x62a5fd07 usbnet_set_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x82475958 usbnet_set_link_ksettings_mii +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x84917027 usbnet_tx_timeout +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x879be197 usbnet_update_max_qlen +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8b566321 usbnet_get_link_ksettings_mii +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8c0809a1 usbnet_open +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x974c25c2 usbnet_set_rx_mode +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa222e7df usbnet_defer_kevent +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xabc75ba0 usbnet_disconnect +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb0a4ae1d usbnet_status_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xbf8ad920 usbnet_probe +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc7e7bda9 usbnet_write_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc9c15e5b usbnet_skb_return +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xca7884e6 usbnet_unlink_rx_urbs +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xcd603239 usbnet_get_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd9d55a56 usbnet_write_cmd_async +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xdaf8e8d3 usbnet_pause_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xdb9c4608 usbnet_resume +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xdca8dd20 usbnet_write_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xddfc670e usbnet_read_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe272f02a usbnet_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xee08351d usbnet_start_xmit +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf1c8b6e3 usbnet_get_link +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf3560093 usbnet_status_start +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xfb815804 usbnet_get_link_ksettings_internal +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xfce6c5c3 usbnet_get_ethernet_addr +EXPORT_SYMBOL_GPL drivers/net/vxlan 0x074ecdb0 vxlan_fdb_find_uc +EXPORT_SYMBOL_GPL drivers/net/vxlan 0x917c0f99 vxlan_fdb_clear_offload +EXPORT_SYMBOL_GPL drivers/net/vxlan 0xb38d2c6d vxlan_fdb_replay +EXPORT_SYMBOL_GPL drivers/net/vxlan 0xd743c650 vxlan_dev_create +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/ipw2x00/libipw 0x4f828808 libipw_rx_any +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1e21fc09 _il_grab_nic_access +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2c3bc538 il_remove_station +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5b98486f il_dealloc_bcast_stations +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x71863ddb il_prep_station +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa9833e08 il_mac_tx_last_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x01676da8 iwl_fw_dbg_stop_sync +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x027c25b1 __iwl_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x05f6a9bd iwl_read_external_nvm +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x0ee3185d iwl_fw_start_dbg_conf +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1204190a iwl_write_prph_no_grab +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1248d980 iwl_write_direct32 EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1ee1c386 iwl_wait_notification EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x229d8b26 iwl_init_notification_wait -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x256e1099 iwl_fw_runtime_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x24785826 iwl_parse_eeprom_data EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2710c362 iwl_dump_desc_assert -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2a63edfe iwl_cmd_groups_verify_sorted +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2ae8faa3 iwl_write32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x3202a0ee iwl_read_prph EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x35033c81 iwl_phy_db_free EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x35307150 iwl_notification_wait -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x3b599cc7 iwl_get_cmd_string -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x40d5cb15 __iwl_info -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x43727679 iwl_dbg_tlv_del_timers -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x45c321a3 iwl_read_external_nvm -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x488c21d7 iwl_parse_nvm_mcc_info -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x4a24e44e iwl_poll_bit -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x4eabbbbf iwl_write_direct32 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x54fc222a iwl_read_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x58831960 iwl_write32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x3653e88c iwl_fw_runtime_init +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x38aca566 iwl_set_soc_latency +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x443c3eff iwl_read_direct32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x4643c5a9 iwl_parse_nvm_mcc_info +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x489f59ad __iwl_warn +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x4ac6768c iwl_set_bits_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x4fe9998a iwl_write_prph64_no_grab +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x511955ed iwl_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x52c6fbdb iwl_clear_bits_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x56ce35eb iwl_init_paging EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5987fe45 iwl_fw_lookup_assert_desc EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5c52e109 iwl_opmode_deregister -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5eedccd5 _iwl_dbg_tlv_time_point -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5fb7ea75 iwl_set_soc_latency -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x6586fb65 iwl_fwrt_dump_error_logs -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x6bea267f iwl_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5d7c27c6 iwl_read_prph_no_grab +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x63d84e82 iwl_fw_dbg_collect_desc +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x6561e7eb iwl_fw_runtime_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x682e1e54 iwl_fw_dbg_stop_restart_recording +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x6c878065 iwl_fw_dbg_collect EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x6e4a86d9 iwl_notification_wait_init EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x724e8822 iwl_remove_notification EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x7307e077 iwl_abort_notification_waits +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x736a6d99 __iwl_crit EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x776221bf iwl_send_phy_db_data -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x78da48d0 iwl_parse_nvm_data -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x80c8217e iwl_fw_runtime_init -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x823f01b4 iwl_get_shared_mem_conf -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x83845277 __iwl_err -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x899c0dee iwl_read_direct32 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8c04f3cc iwl_write_direct64 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x7913ffc6 iwl_opmode_register +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x7e86154b iwl_write8 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x828aa72e iwl_free_fw_paging +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8ae8face iwl_dbg_tlv_del_timers +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8cc5e3d8 iwl_finish_nic_init EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8cd2f16c iwl_fw_lookup_notif_ver -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8d400847 iwl_poll_direct_bit -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x93c8d0d6 iwl_force_nmi -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x966cf61d iwl_fw_start_dbg_conf -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x9a2c5113 iwl_write64 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x9c43aefa __iwl_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x9d44b82e iwl_write_prph_no_grab -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa1c88bf8 iwl_fw_runtime_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa578644f iwl_read_prph_no_grab +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8f2ccb32 iwl_poll_bit +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x913f273c iwl_get_shared_mem_conf +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x97333025 iwl_write64 EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa9f05394 iwlwifi_mod_params -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb03e67e6 iwl_fw_dbg_stop_sync +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xaf931306 iwl_write_direct64 EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb1338340 iwl_fw_lookup_cmd_ver -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb89332a9 iwl_clear_bits_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xbca89ccf iwl_fw_dbg_stop_restart_recording -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc03a5bb4 iwl_configure_rxq -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc39bc9f2 iwl_read32 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc3f35068 __iwl_crit -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc66c1a25 iwl_phy_db_init -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc6ee53e4 iwl_fw_dbg_collect +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb379361e iwl_parse_nvm_data +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb42d0438 iwl_get_nvm +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb57e5db0 iwl_get_cmd_string +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb8ad867b iwl_fw_dbg_read_d3_debug_data +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xbf43fe30 iwl_fw_dbg_error_collect +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc0826101 iwl_write_prph_delay +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc1143055 iwl_fwrt_dump_error_logs +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc1970a37 iwl_trans_send_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc4b5f4a8 iwl_poll_direct_bit EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xce0c6460 iwl_phy_db_set_section -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xcf13079b iwl_fw_dbg_collect_desc -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd0b77c9b iwl_write_prph64_no_grab -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd23b8d5e iwl_opmode_register -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd8c2f9b5 iwl_parse_eeprom_data -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe2dbd30d iwl_trans_send_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe5d8c758 iwl_fw_dbg_error_collect +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd3d728b7 iwl_fw_dbg_collect_trig +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd3f68061 iwl_pnvm_load +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xdda2c5f2 iwl_read32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe4a2f50f iwl_cmd_groups_verify_sorted +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe51636cd __iwl_info +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe6606466 _iwl_dbg_tlv_time_point +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe7af81a9 iwl_force_nmi +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe7d529d1 iwl_set_bits_mask_prph EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xea1b26fc iwl_nvm_fixups -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xec4f3639 __iwl_warn -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xefb35481 iwl_free_fw_paging -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf354ebd9 iwl_get_nvm -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf3856d1f iwl_write_prph_delay -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf42ac404 iwl_init_paging -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf8d86290 iwl_pnvm_load -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xfbeefd53 iwl_set_bits_mask_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x3e9ce896 p54_register_common -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x54b3d4e4 p54_unregister_common -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x5b610193 p54_parse_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x5d70202f p54_init_common -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x78ef88f0 p54_parse_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xa23b9dbf p54_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xb029fd58 p54_free_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xf835028c p54_free_common -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xfc0bcda1 p54_read_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x056571f5 lbs_queue_event -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x071e8379 lbs_cmd_copyback -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x10b589ba lbs_send_tx_feedback -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x210c7eb1 lbs_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x292f7baf __lbs_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x43824734 lbs_stop_card +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf56a331b __iwl_err +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf6657743 iwl_fw_runtime_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xfae2acd6 iwl_phy_db_init +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xfe2f8fee iwl_configure_rxq +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x067b82c2 p54_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x39736623 p54_init_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x48aa17ee p54_unregister_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x5b8bc916 p54_free_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x9c20ee45 p54_free_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xa35b5a4d p54_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xb80f47f3 p54_parse_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xe0b635a3 p54_parse_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xe6f3a8c6 p54_register_common +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x0755b1fa lbs_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x1489711f lbs_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x2517f480 lbs_notify_command_response +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x2be77da4 lbs_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x4c2c402e lbs_stop_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x527afae4 __lbs_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x55621ff1 lbs_send_tx_feedback EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x5fdf38b8 lbs_disablemesh -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x6276d16a lbs_host_to_card_done -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x80bf1418 lbs_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xa2b9cfec lbs_notify_command_response -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xb451caab lbs_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xc03a6ee4 lbs_start_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xd9f32ec4 lbs_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xdc1d2811 lbs_process_rxed_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xeb9e101d lbs_get_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x9a194026 lbs_get_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x9b917921 lbs_host_to_card_done +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xa6e1cd1a lbs_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xb167969e lbs_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xd37cc7c2 lbs_start_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xd92ea1fa lbs_queue_event +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xe444bdaa lbs_process_rxed_packet EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xf64277de lbs_debug -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xf95ac1d2 lbs_host_sleep_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xfe254e75 lbs_get_firmware_async -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x039bb83e lbtf_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x1a394d8f lbtf_cmd_response_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x5a269524 lbtf_send_tx_feedback -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x8bbfaf98 lbtf_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x90dff47a lbtf_cmd_copyback -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xa69ddb00 lbtf_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xbb920811 __lbtf_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xf8460d81 lbs_host_sleep_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xfb16eae4 lbs_get_firmware_async +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x44478a40 lbtf_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x596197f7 lbtf_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x981df5c9 lbtf_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xa05a74a0 __lbtf_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xb436ad9b lbtf_cmd_response_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xbeb4bc0a lbtf_add_card EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xc85e6899 lbtf_debug -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xcb5a8fb9 lbtf_bcn_sent -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x0714fe0d mwifiex_del_virtual_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x19919f31 mwifiex_init_shutdown_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x3ec76be5 mwifiex_process_hs_config -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x504a9b33 mwifiex_dnld_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x522f7e7f mwifiex_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x58a9c1e6 mwifiex_reinit_sw -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x5994ded2 mwifiex_main_process -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x68214688 mwifiex_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x6dabd575 mwifiex_multi_chan_resync -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x79cab7f1 mwifiex_disable_auto_ds -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x856e5d7e mwifiex_write_data_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x887b39ec mwifiex_upload_device_dump -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x9133ea11 mwifiex_shutdown_sw -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x95a2388b mwifiex_process_sleep_confirm_resp -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x9ab41ba9 mwifiex_add_virtual_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xa23ff8ad mwifiex_queue_main_work -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xad211386 mwifiex_cancel_hs -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xb9485fa1 mwifiex_fw_dump_event -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xbb0d112a mwifiex_enable_hs -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xc89499b1 mwifiex_prepare_fw_dump_info +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xe7db0700 lbtf_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xf959c11d lbtf_bcn_sent +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x03190fca mwifiex_fw_dump_event +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x0bc56d48 mwifiex_dnld_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x275dad31 mwifiex_main_process +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x2a29512d mwifiex_reinit_sw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x3c39ba36 mwifiex_prepare_fw_dump_info +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x67c74408 mwifiex_init_shutdown_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x6ac4c2a1 mwifiex_shutdown_sw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x6ddde39f mwifiex_deauthenticate_all +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x734be30c mwifiex_process_hs_config +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x758a1ca6 mwifiex_upload_device_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x7b8714de mwifiex_add_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x9bdf556e mwifiex_enable_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x9d7f6638 mwifiex_queue_main_work +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xa065da0e mwifiex_del_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xa16d49a2 mwifiex_disable_auto_ds +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xb6ef1029 _mwifiex_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xbca5840d mwifiex_handle_rx_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xc3bf3e79 mwifiex_write_data_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xca112811 mwifiex_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xcbd1ca0c mwifiex_multi_chan_resync +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xcd369e51 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 0xdebdcb64 _mwifiex_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xe90faaf9 mwifiex_drv_info_dump -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xed09cbca mwifiex_deauthenticate_all -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xeef5bc22 mwifiex_handle_rx_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x02b6bdec mt76_dma_cleanup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x050028f8 mt76_alloc_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0aeee212 mt76_txq_schedule_all -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0c57ba92 mt76_tx_status_lock -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x103cd6ec mt76_rx_aggr_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x11054413 mt76_get_of_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x11a3dd34 mt76_has_tx_pending -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x129d9ec9 __mt76_set_tx_blocked +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xf3be55b0 mwifiex_drv_info_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xf5178750 mwifiex_cancel_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xfc3e6117 mwifiex_process_sleep_confirm_resp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x00bf8659 mt76_sw_scan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x075ca388 mt76_txq_schedule_all +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0dbb5b8a mt76_wake_tx_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x135f583f mt76_stop_tx_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x17d35768 mt76_set_tim EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x17f568e9 mt76_rates -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1acb4954 mt76_mcu_msg_alloc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1cba1b4a mt76_mcu_send_and_get_msg -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1dcc3238 mt76_mmio_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x18833d07 mt76_queue_tx_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1d251a9b mt76_set_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1e3d39bb mt76_mcu_rx_event 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 0x216350b8 mt76_tx_status_skb_done -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x26bc638e mt76_sta_state -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2841c02a mt76_set_irq_mask -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2ca93a36 mt76_insert_ccmp_hdr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2f7de91c mt76_get_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x387ab57a mt76_sw_scan_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3c73db5e __mt76_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3fd8cfd4 mt76_set_stream_caps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x41286a80 mt76_set_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x41792c3e mt76_get_min_avg_rssi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x46fb2153 mt76_tx_status_skb_get -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x516047ff mt76_update_survey -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5a2997ae mt76_tx_status_check -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5ac29123 __traceiter_dev_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5ada1694 mt76_queue_tx_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5b486ad8 mt76_token_release +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x22c41079 mt76_unregister_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x258702b1 mt76_tx_status_skb_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x29d17568 mt76_has_tx_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2b702352 __mt76_poll_msec +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2dcd5824 mt76_get_rate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2e0e59ba mt76_update_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x313466eb mt76_insert_ccmp_hdr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x33e06225 mt76_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3885fe5b mt76_seq_puts_array +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3b228ee9 mt76_alloc_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3f89fb2f mt76_update_survey_active_time +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x40362216 mt76_get_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x41dcc619 mt76_csa_check +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x425db5f0 mt76_eeprom_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x450d7e59 mt76_eeprom_override +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5407cd0b __traceiter_dev_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x554a6e82 mt76_put_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5a2df6a1 __mt76_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5c22c260 mt76_tx_worker_run EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5d1b4e42 __tracepoint_mac_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x654461c8 mt76_get_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x68267bcc mt76_eeprom_override -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x695bbac9 mt76_tx_check_agg_ssn -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6c20b2ba mt76_get_rate_power_limits -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6d960587 __traceiter_mac_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6e289f30 mt76_update_survey_active_time -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x70c0edbb mt76_pci_disable_aspm -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7162035c mt76_wake_tx_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x788d0d25 mt76_csa_finish -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x79e71234 mt76_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7be3f548 __mt76_poll_msec -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7d7420c3 mt76_queues_read +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5de2fbba mt76_mcu_msg_alloc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6190224a mt76_get_rate_power_limits +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x63397eaf mt76_alloc_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x68cd3119 mt76_dma_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6a7c5e5d mt76_queues_read +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6ac77804 mt76_mcu_send_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x71a2d22f mt76_txq_schedule +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x71d28050 mt76_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7520a362 __traceiter_mac_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x77b07a3f mt76_token_consume +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7bcf93bd mt76_pci_disable_aspm +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7c97073b mt76_sta_state +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x803b8217 mt76_dma_rx_poll EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x805fc13a __SCK__tp_func_dev_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x82cb3879 mt76_unregister_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x84c81c3f mt76_mcu_send_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x84fbc68e mt76_get_rate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x89ae978e mt76_token_consume -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8a42d0d8 mt76_rx_poll_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8cc912c6 mt76_register_debugfs_fops -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8ee4138c __mt76_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8f4f412a mt76_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9c3cb242 mt76_register_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9cbf0247 mt76_dma_rx_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa87accec mt76_tx_status_skb_add -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa8d372bc mt76_tx_status_unlock -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb0b2d20e mt76_stop_tx_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb12db90d mt76_mcu_rx_event -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xba76ea38 mt76_init_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbadce245 mt76_seq_puts_array -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbd4264c1 mt76_skb_adjust_pad -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbd558bd8 mt76_set_tim -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbe3e83a4 mt76_sw_scan -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc3e7e213 mt76_dma_attach -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc4536e50 mt76_mcu_get_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x83814dd4 __mt76_set_tx_blocked +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x83b3cced mt76_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x84ac6062 mt76_set_irq_mask +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x87ab8a5a mt76_register_debugfs_fops +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x87f5b58c mt76_skb_adjust_pad +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x89e26ab9 mt76_mmio_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8a473226 mt76_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x946e1721 mt76_dma_attach +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x97e86877 mt76_tx_status_skb_done +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa13c5b93 mt76_mcu_skb_send_and_get_msg +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa26ca783 mt76_release_buffered_frames +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xaaf11ba5 mt76_tx_check_agg_ssn +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xae5fb40f mt76_free_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb0a06899 mt76_unregister_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb5ad91f8 mt76_token_release +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb9f94986 mt76_tx_status_unlock +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbbe36513 mt76_csa_finish +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbcbb90e9 mt76_get_of_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbd8bfd79 mt76_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbff19538 mt76_set_stream_caps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc44d3a7d __mt76_sta_remove EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc6315d8e __SCK__tp_func_mac_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc64d32c8 mt76_rx_poll_complete EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc6634315 mt76_ac_to_hwq -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xca524c01 mt76_get_survey -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xce842314 mt76_eeprom_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xce87058b mt76_txq_schedule -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xcee13cc7 mt76_unregister_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd18d99ae mt76_put_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd1fc025d mt76_csa_check -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd46c43df mt76_tx_worker_run -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd68ae0e0 mt76_sta_pre_rcu_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd8f0525a mt76_mcu_skb_send_and_get_msg -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe31de81d mt76_release_buffered_frames +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xca779c55 mt76_init_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd817cea8 mt76_rx_aggr_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xdd003090 mt76_mcu_get_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xddae58c1 mt76_tx_status_check +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xdfc12021 mt76_rx_aggr_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe217b9f8 mt76_tx_status_skb_get +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe33f31ec mt76_mcu_send_and_get_msg EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe40b66ef mt76_wcid_alloc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xef51759f mt76_register_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf82cce54 mt76_alloc_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf876bb8b __mt76_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xfbb2568f mt76_free_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xfd7d7c62 mt76_rx_aggr_start -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x08aa5b82 mt76_connac_mcu_set_vif_ps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x10e09272 mt76_connac_mcu_sta_update_hdr_trans -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x12b8390b mt76_connac_pm_wake -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x15719d09 mt76_connac_mcu_beacon_loss_iter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x18bae754 mt76_connac_mcu_wtbl_hdr_trans_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x3188ce8e mt76_connac_sta_state_dp -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x3529cd99 mt76_connac_mcu_wtbl_ht_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x388fd2fa mt76_connac_mcu_update_arp_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x3f2009d1 mt76_connac_pm_queue_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4bb7d3ac mt76_connac_mcu_sta_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x51f70010 mt76_connac_pm_dequeue_skbs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x6160c26f mt76_connac_mcu_set_hif_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x65488b3b mt76_connac_mcu_start_patch -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x6618df8e mt76_connac_mcu_set_channel_domain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x74948ee3 mt76_connac_mcu_get_nic_capability -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x78db6546 mt76_connac_mcu_set_rts_thresh -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7a9c662e mt76_connac_mcu_cancel_hw_scan -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7b667a67 mt76_connac_mcu_alloc_sta_req -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7c4c28cc mt76_connac_mcu_patch_sem_ctrl -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x804a7c73 mt76_connac_mcu_alloc_wtbl_req -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x81a37065 mt76_connac_mcu_set_suspend_iter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x88075ea3 mt76_connac_mcu_update_gtk_rekey -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x8881d971 mt76_connac_mcu_hw_scan -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x8f4ff9cd mt76_connac_mcu_set_deep_sleep -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x8fa4af1d mt76_connac_mcu_sta_basic_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf0c6f342 mt76_sta_pre_rcu_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf7648f81 __mt76_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xfc1389da mt76_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xfc64f8de mt76_tx_status_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xfdc8171c mt76_register_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xffb88bab mt76_get_min_avg_rssi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x00370a90 mt76_connac_mcu_start_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x0de13df2 mt76_connac_mcu_set_hif_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x0ee809d8 mt76_connac_mcu_hw_scan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x1003a20e mt76_connac_sta_state_dp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x175f73dc mt76_connac_mcu_update_gtk_rekey +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x17cffb9f mt76_connac_mcu_beacon_loss_iter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x28ec7b99 mt76_connac_free_pending_tx_skbs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x2ab2291b mt76_connac_power_save_sched +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x2c0eaf32 mt76_connac_mcu_set_vif_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x2ff94edc mt76_connac_mcu_start_patch +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x37a26388 mt76_connac_mcu_wtbl_generic_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x3ffb13ef mt76_connac_mcu_add_nested_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x410775ad mt76_connac_mcu_patch_sem_ctrl +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x418942a5 mt76_connac_mcu_set_suspend_iter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x43d6ba2c mt76_connac_mcu_sched_scan_enable +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x54007dde mt76_connac_mcu_uni_add_bss +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x572ae30c mt76_connac_mcu_init_download +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x62292374 mt76_connac_mcu_sta_basic_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x63ab9b36 mt76_connac_mcu_sta_ba +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x6598e7cc mt76_connac_mcu_sched_scan_req +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x82a20c9d mt76_connac_mcu_alloc_sta_req +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x83ef18aa mt76_connac_mcu_chip_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x8497b752 mt76_connac_mcu_sta_tlv EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x908ca40c mt76_connac_wowlan_support -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x93ec9cd1 mt76_connac_mcu_set_mac_enable -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x97fb033c mt76_connac_mcu_wtbl_ba_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x98de2862 mt76_connac_mcu_wtbl_generic_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x9db2b891 mt76_connac_mcu_sta_ba_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xaf1dc9ed mt76_connac_free_pending_tx_skbs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb8dc04fc mt76_connac_mcu_start_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc3406314 mt76_connac_mcu_add_nested_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc3f1ae2b mt76_connac_power_save_sched -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc43cdf90 mt76_connac_mcu_uni_add_bss -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc4f66f67 mt76_connac_mcu_uni_add_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xce4ee41d mt76_connac_mcu_sched_scan_enable -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd1da1ea4 mt76_connac_mcu_coredump_event -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd83dbe9a mt76_connac_mcu_set_rate_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd9dcc0fc mt76_connac_mcu_sta_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe23a96d6 mt76_connac_mcu_sched_scan_req -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe4bd2b7b mt76_connac_mcu_chip_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xec35c65f mt76_connac_mcu_init_download -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf32dcd04 mt76_connac_mcu_sta_ba -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x48fb082d mt76s_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x5681eb9e mt76s_deinit -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x967f1a8f mt76s_alloc_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x03bb49b9 mt76u_single_wr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x1e826745 mt76u_alloc_mcu_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x4bf84116 mt76u_stop_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x523db572 mt76u_queues_deinit -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x881c71da mt76u_stop_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xa51afab2 mt76u_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xaaac2048 mt76u_resume_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xb6796c01 mt76u_vendor_request -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xbb8a55fe mt76u_alloc_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x140a7a56 mt7615_mcu_reg_wr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x199f1562 mt7615_mcu_exit -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x1af3adb3 mt7622_trigger_hif_int -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x1d7fbfbe mt7615_mac_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x25e18c82 mt7615_mac_sta_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x299031f5 mt7615_txp_skb_unmap -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x2d536194 mt7615_mcu_parse_response -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x3f49a1f9 mt7615_init_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x4fdc7af0 mt7615_mac_write_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x52d51138 mt7615_thermal_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x544f1e37 mt7615_unregister_ext_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x5ab0d865 mt7615_mcu_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x5aff3aff mt7615_ops -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x64ac3cf1 mt7615_mac_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x6b2d560f mt7615_mac_set_rates -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x8842663a mt7615_mcu_fill_msg -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x8e96b32b mt7615_init_debugfs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xaf2535ee mt7615_update_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xb386a11e mt7615_queue_rx_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xb7650614 mt7615_register_ext_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xc6d550dd mt7615_init_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xc927cdcd mt7615_wait_for_mcu_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xc9f48ad1 mt7615_eeprom_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xcde4c710 mt7615_mcu_reg_rr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xd5900935 mt7615_sta_ps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xec4446ef mt7615_init_work -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xf2249031 mt7615_mcu_restart -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xf27d4a5a __mt7663_load_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xf3a9889b mt7615_tx_token_put -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615e 0x996e2bcf mt7615_dma_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x937e2507 mt76_connac_mcu_set_rate_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x99ffd3e2 mt76_connac_mcu_update_arp_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa01db589 mt76_connac_mcu_set_mac_enable +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa818cfc9 mt76_connac_mcu_wtbl_ht_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xae8b475c mt76_connac_mcu_coredump_event +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xaf17c5b1 mt76_connac_mcu_get_nic_capability +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb6a3e82f mt76_connac_mcu_sta_update_hdr_trans +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc0b5fb39 mt76_connac_pm_dequeue_skbs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xca62c013 mt76_connac_mcu_set_rts_thresh +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd9ac132c mt76_connac_mcu_uni_add_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xda804434 mt76_connac_mcu_wtbl_hdr_trans_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe1e70ca2 mt76_connac_mcu_sta_ba_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xeb21a6bb mt76_connac_mcu_alloc_wtbl_req +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xec841223 mt76_connac_pm_queue_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xed4d0aac mt76_connac_mcu_set_deep_sleep +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf30e8bff mt76_connac_mcu_cancel_hw_scan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf6b9efd1 mt76_connac_mcu_set_channel_domain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xfb54b641 mt76_connac_mcu_wtbl_ba_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xfbad8324 mt76_connac_mcu_sta_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xfc5b9678 mt76_connac_pm_wake +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x3855c366 mt76s_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x4c662b87 mt76s_alloc_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x90c4775e mt76s_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x05d44583 mt76u_alloc_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x33f86ec5 mt76u_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x68e5fcbb mt76u_stop_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x6a18afd6 mt76u_single_wr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x81f7d12b mt76u_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xd246ae7d mt76u_stop_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xd46f5e12 mt76u_queues_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xd738bdcf mt76u_alloc_mcu_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xe5382fef mt76u_resume_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x029ee82e mt7615_mac_sta_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x02a6bc5c mt7615_thermal_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x054620dc mt7615_update_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x1b13ce07 mt7615_txp_skb_unmap +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x27678c1d mt7615_mcu_fill_msg +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x395de584 mt7615_mcu_exit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x3c6b73fa mt7615_tx_token_put +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x3ce36b5a __mt7663_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x3e3579dc mt7615_mcu_reg_rr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x47055346 mt7615_sta_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x4711a9f5 mt7615_mcu_parse_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x4f96ba4d mt7615_mac_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x5151231c mt7615_mac_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x54899099 mt7615_init_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x69057bbc mt7615_mac_set_rates +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x7e0ea6ca mt7615_mac_write_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x91b72b37 mt7615_unregister_ext_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x933b3757 mt7615_wait_for_mcu_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x9613c529 mt7615_init_work +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x9d74f627 mt7615_init_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xbe1df04b mt7615_mcu_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xc532c69d mt7615_mcu_restart +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xc987a955 mt7615_register_ext_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xccd97a1b mt7615_queue_rx_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xd17096d5 mt7622_trigger_hif_int +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xe0c083ef mt7615_init_debugfs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xf4831d8d mt7615_mcu_reg_wr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xf56d7b93 mt7615_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xf8699d45 mt7615_eeprom_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615e 0x9fb70403 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 0x8f363c3d mt7663_usb_sdio_register_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0xc7dec1ad mt7663_usb_sdio_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0xce24fa2c mt7663_usb_sdio_tx_status_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0xff036e6a mt7663_usb_sdio_tx_prepare_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x0458f414 mt76x0_chip_onoff -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x274a90cb mt76x0_register_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x28361f8f mt76x0_mac_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x31a4b773 mt76x0_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x6b2146ec mt76x0_phy_calibrate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x75e92c13 mt76x0_init_hardware -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x01450bff mt76x02_init_agc_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x02d3b4e3 mt76x02_mac_setaddr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x03d2da97 mt76x02_rx_poll_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0xad050a87 mt7663_usb_sdio_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0xdbb1702a mt7663_usb_sdio_tx_status_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0xe0f19384 mt7663_usb_sdio_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0xf3fd3aa7 mt7663_usb_sdio_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x68cf65eb mt76x0_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x791f0c53 mt76x0_init_hardware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x7a6b4754 mt76x0_phy_calibrate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x7f891a6e mt76x0_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x8195e654 mt76x0_mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x88272cc6 mt76x0_chip_onoff +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x02bccae8 mt76x02_mac_write_txwi EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0462ce68 mt76x02_add_rate_power_offset -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x06f366f0 mt76x02_set_tx_ackto -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x09308495 mt76x02_queue_rx_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0bf37ae5 mt76x02_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x07c2929d mt76x02_sw_scan_complete EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0d4023ec mt76x02_get_max_rate_power -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0e2c97a5 mt76x02_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x142b2fc3 mt76x02_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x15e473e3 mt76x02_ampdu_action -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x283b682c mt76x02_mac_start -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2da78bc1 mt76x02_mac_write_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2e26caae mt76x02_mac_reset_counters -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x34589e40 mt76x02_eeprom_copy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x15ab4c4f mt76x02_update_beacon_iter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1d617659 mt76x02_mcu_calibrate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x23a07dd2 mt76x02_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x241940a4 mt76x02_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x26b58826 mt76x02_mcu_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2d61eb84 mt76x02_enqueue_buffered_bc EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x35d2834d mt76x02_limit_rate_power -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3708e5e6 mt76x02_resync_beacon_timer -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3f6a4a64 mt76x02_set_coverage_class -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x423dbee2 mt76x02_mac_shared_key_setup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4386e7c8 mt76x02_mcu_calibrate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x465bf967 mt76x02_phy_set_band -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4ae2aa5d mt76x02_phy_set_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x536e3731 mt76x02_sta_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x36f51356 mt76x02_phy_set_bw +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x39d7f027 mt76x02_get_lna_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3b0e0f6a mt76x02_mac_setaddr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3bdd0c5f mt76x02_set_ethtool_fwver +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3d73d601 mt76x02_init_agc_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4150dd23 mt76x02_reconfig_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x416dffdf mt76x02_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4763afe7 mt76x02_rx_poll_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5134427b mt76x02_mcu_parse_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x54f55cfb mt76x02_eeprom_copy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x57a6bbd8 mt76x02_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5892f2ca mt76x02_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5a003111 mt76x02_mac_set_beacon EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5bd84fd5 mt76x02_rates -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5dc2e429 mt76x02_init_debugfs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x65bb17e4 mt76x02_edcca_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x68f0928a mt76x02_phy_adjust_vga_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6ff155e0 mt76x02_remove_hdr_pad -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x73332fce mt76x02_phy_dfs_adjust_agc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x77af9859 mt76x02_mac_wcid_setup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x799910fa mt76x02_tx_status_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7c7cbecb mt76x02e_init_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7d56ca63 mt76x02_dma_disable -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7f7e3359 mt76x02_mcu_function_select -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x822aca10 mt76x02_remove_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x83825459 mt76x02_update_beacon_iter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8bcf2e5f mt76x02_dfs_init_params -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8eb9868a mt76x02_tx_set_txpwr_auto -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x904e194a mt76x02_enqueue_buffered_bc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x60aca8fe mt76x02_update_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6411c06b mt76x02_init_debugfs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x65627dd5 mt76x02_mcu_function_select +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6b68869d mt76x02_mac_shared_key_setup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6f403afc mt76x02_dfs_init_params +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7353c5db mt76x02_get_efuse_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x78385f84 mt76x02_phy_set_band +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x79606640 mt76x02_phy_dfs_adjust_agc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7b94c91d mt76x02_edcca_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x819b4ae0 mt76x02_dma_disable +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x838d4452 mt76x02_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x83d36b6c mt76x02_ext_pa_enabled +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8a5837e8 mt76x02e_init_beacon_config EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x91d5b9ee mt76x02_irq_handler -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x92da8bec mt76x02_set_rts_threshold -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x95e86cfc mt76x02_mac_cc_reset -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x978c5b6e mt76x02_phy_set_rxpath -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x97b4c55e mt76x02_mcu_msg_send -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x98e478f2 mt76x02_get_lna_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9a9184ba mt76x02_phy_set_bw -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa4cf927e mt76x02_add_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa816235e mt76x02_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xaef892e8 mt76x02_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb06636aa mt76x02_mac_set_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb7a14d78 mt76x02_mcu_set_radio_state -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xbe5a55ee mt76x02_set_ethtool_fwver -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc6f98607 mt76x02_ext_pa_enabled -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc7e3b842 mt76x02_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd0c44d94 mt76x02_init_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd17d005a mt76x02_update_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd85ad7d1 mt76x02_eeprom_parse_hw_cap -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xdb2d9864 mt76x02_mcu_parse_response -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe03f465a mt76x02_configure_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe0f1d76a mt76x02_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe1657718 mt76x02_mcu_cleanup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe9bbbb4d mt76x02_init_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xec709e42 mt76x02_phy_set_txdac -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xee005cd1 mt76x02_tx_prepare_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf361ee6b mt76x02_sw_scan_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf47f455e mt76x02_get_efuse_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf6429c62 mt76x02_dma_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf8b3b715 mt76x02_get_rx_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf98c2c97 mt76x02_config_mac_addr_list -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xfbc269a1 mt76x02_reconfig_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xfc862c0b mt76x02_sta_rate_tbl_update -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x3a2e4f3c mt76x02u_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x3ba89926 mt76x02u_mcu_fw_send_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x64f18590 mt76x02u_mac_start -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x7cb1578f mt76x02u_mcu_fw_reset -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x9068d03f mt76x02u_init_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xae0da8ab mt76x02u_tx_prepare_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xc497abbb mt76x02u_init_mcu -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xf164bd67 mt76x02u_exit_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x025c7d6d mt76x2_mcu_load_cr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x0382bbc4 mt76x2_phy_update_channel_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x09581c40 mt76x2_get_temp_comp -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x0f31da68 mt76x2_get_rate_power -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x25fda6f3 mt76x2_read_rx_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x37a9d621 mt76x2_mcu_set_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x4cfec2aa mt76x2_init_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x4db8f4df mt76x2_phy_tssi_compensate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x643885ee mt76x2_mcu_init_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x6fbe998f mt76_write_mac_initvals -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x85d18ae0 mt76x2_get_power_info -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x9f6b4fd3 mt76x2_mcu_tssi_comp -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xa30cedce mt76x2_apply_gain_adj -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xac3c42a6 mt76x2_configure_tx_delay -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xdb341b3d mt76x2_eeprom_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xe84419d2 mt76x2_mac_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xee750b9e mt76x2_phy_set_txpower_regs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xeebc52a2 mt76x2_reset_wlan -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xfa33199a mt76x2_phy_set_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x0cd36575 host_wakeup_notify -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x7594933e chip_allow_sleep -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x83292512 host_sleep_notify -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x8cec71f6 chip_wakeup -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xc97f179f wilc_netdev_cleanup -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xd7c9109c wilc_handle_isr -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xda9412b9 wilc_cfg80211_init -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x02b6dcbc qtnf_core_attach +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x92ebe3b0 mt76x02_phy_adjust_vga_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9cb02d06 mt76x02_tx_status_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9d21cda2 mt76x02_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9e7e553f mt76x02_mcu_msg_send +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa3ee7892 mt76x02_mac_cc_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa6d87770 mt76x02_phy_set_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa9c79291 mt76x02_set_coverage_class +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xaa9420e9 mt76x02_phy_set_txdac +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xac8346e5 mt76x02_sta_rate_tbl_update +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb03b4002 mt76x02_get_rx_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb0ca3eb2 mt76x02_dma_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xbb964b21 mt76x02_mcu_set_radio_state +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xbbec4761 mt76x02_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xbd32bdc8 mt76x02_remove_hdr_pad +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xbdea7364 mt76x02_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc36c09e7 mt76x02_config_mac_addr_list +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc7d9aff1 mt76x02_mac_wcid_setup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xcbaad867 mt76x02_set_tx_ackto +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xcbc8da98 mt76x02_init_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xcc5da1eb mt76x02_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd080f1c3 mt76x02_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd1b70e80 mt76x02_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd1baf3bf mt76x02_mac_reset_counters +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd4851e71 mt76x02_sta_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd84c568a mt76x02_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xdb3317a6 mt76x02_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xdf1d2625 mt76x02_resync_beacon_timer +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe0b0afba mt76x02_mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe7633e7d mt76x02_queue_rx_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf1975668 mt76x02_phy_set_rxpath +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf2f7314f mt76x02_eeprom_parse_hw_cap +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf89d54ed mt76x02_tx_set_txpwr_auto +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x373b5855 mt76x02u_exit_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x3a9c2a71 mt76x02u_mcu_fw_send_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x4628f624 mt76x02u_mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x48157ee2 mt76x02u_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x6fa66386 mt76x02u_mcu_fw_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xa624c7cb mt76x02u_init_mcu +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xe365de71 mt76x02u_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xf48be1b7 mt76x02u_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x014bf8d6 mt76x2_eeprom_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x163e12c4 mt76x2_phy_set_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x23673ba5 mt76_write_mac_initvals +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x2b3d2b4f mt76x2_get_rate_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x2ceecb97 mt76x2_phy_set_txpower_regs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x41653c87 mt76x2_phy_update_channel_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x4326a26f mt76x2_init_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x55db2846 mt76x2_read_rx_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x62c4829c mt76x2_get_temp_comp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x6f362724 mt76x2_apply_gain_adj +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x71025737 mt76x2_mcu_set_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x9ff86ef5 mt76x2_reset_wlan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xba6777c6 mt76x2_get_power_info +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xbb0e57b7 mt76x2_mcu_load_cr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xc46327c9 mt76x2_mcu_init_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xd2028a54 mt76x2_configure_tx_delay +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xe3c7f48d mt76x2_mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xe6386b64 mt76x2_mcu_tssi_comp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xf8f81216 mt76x2_phy_tssi_compensate +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x008207fc host_sleep_notify +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x6b73e14a chip_wakeup +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x74cc894f wilc_cfg80211_init +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x7793b5c4 wilc_handle_isr +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xa7bd13cf wilc_netdev_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xbdfe764b chip_allow_sleep +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xe58712da host_wakeup_notify +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x0e9a602c qtnf_classify_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x11a59457 qtnf_core_detach EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x31fab83c qtnf_chipid_to_string -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x43652379 qtnf_classify_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xa93eb6ef qtnf_trans_handle_rx_ctl_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xc4d00996 qtnf_core_detach -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xe8a47fac qtnf_get_debugfs_dir -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xefb4c9e9 qtnf_wake_all_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x0be17415 rt2800_txdone_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x100df500 rt2800_ampdu_action -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x10a50461 rt2800_txstatus_timeout -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x10e18ccb rt2800_config_shared_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x131a77bd rt2800_txdone_nostatus -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x1a1c0398 rt2800_config_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x1b1d1875 rt2800_get_tsf -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x1d310a05 rt2800_write_tx_data -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x1dcdfbf7 rt2800_config_erp -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x2409a48a rt2800_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x35520afd rt2800_wait_wpdma_ready -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x37714861 rt2800_enable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x490629f5 rt2800_load_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x4c320fff rt2800_clear_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x5302e9dc rt2800_reset_tuner -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x547dc820 rt2800_write_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x5798eea6 rt2800_config_ant -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x59c1c934 rt2800_link_tuner -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x5b073772 rt2800_check_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6684dbc0 rt2800_pre_reset_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7497e12c rt2800_rfkill_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x76b378fd rt2800_process_rxwi -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x79cae251 rt2800_disable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7b3c42ef rt2800_probe_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x8a00352b rt2800_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x8b2a2e73 rt2800_gain_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x8b790d73 rt2800_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x8e6f9caa rt2800_link_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x9735334c rt2800_wait_csr_ready -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa1e7d228 rt2800_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa44f39f2 rt2800_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb08561ec rt2800_config_pairwise_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb7fb8a83 rt2800_read_eeprom_efuse -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xbc831ebb rt2800_set_rts_threshold -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc04ae65b rt2800_watchdog -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc12a55b8 rt2800_get_txwi_rxwi_size -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd0c425eb rt2800_disable_wpdma -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xdbab1068 rt2800_txstatus_pending -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xdd05978d rt2800_vco_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xde0361cc rt2800_get_key_seq -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xde6ca154 rt2800_mcu_request -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe9ad55a9 rt2800_get_survey -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf7bc6818 rt2800_efuse_detect -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xfc1354df rt2800_config_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x08ee6231 rt2800mmio_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x15326d7f rt2800mmio_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x435844f0 qtnf_trans_handle_rx_ctl_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x81431d01 qtnf_core_attach +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xa98da0e8 qtnf_wake_all_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xeb1ce93a qtnf_get_debugfs_dir +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x034383d7 rt2800_txstatus_timeout +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x176f1f14 rt2800_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x187462c0 rt2800_config_ant +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x1bf6ea1e rt2800_link_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x1d880aed rt2800_vco_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x280ebe15 rt2800_efuse_detect +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x283d39bd rt2800_disable_wpdma +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x38c092c3 rt2800_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x391e81c8 rt2800_write_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x3fd76774 rt2800_link_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x40280486 rt2800_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x48b7db72 rt2800_get_key_seq +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x4ca18858 rt2800_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x5800b82d rt2800_txdone_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x5bb3a3dd rt2800_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6b3d2c98 rt2800_wait_wpdma_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6ba07feb rt2800_pre_reset_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x749fc750 rt2800_mcu_request +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7872d6c8 rt2800_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x81c0c317 rt2800_txstatus_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x8a7d5d53 rt2800_check_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x9cc6194a rt2800_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x9dfe80b1 rt2800_read_eeprom_efuse +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa97f2eee rt2800_probe_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb545bf8c rt2800_get_tsf +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb8ccb252 rt2800_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xbd5b858e rt2800_process_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc07d0936 rt2800_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc62c19f2 rt2800_config_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd8d0829d rt2800_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd9be1d93 rt2800_get_txwi_rxwi_size +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe23a53b8 rt2800_gain_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe2b98dbc rt2800_write_tx_data +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe2f6349b rt2800_clear_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe7d0bde3 rt2800_config_shared_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe83e1971 rt2800_wait_csr_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf0531d8d rt2800_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf30ed78c rt2800_txdone_nostatus +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf3af2f11 rt2800_config_pairwise_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf68c75d7 rt2800_config_erp +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf7caa461 rt2800_reset_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xfcf7e7db rt2800_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xfe2a1bf0 rt2800_config_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xff2cdb23 rt2800_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x0e9b6d2f rt2800mmio_fill_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x153f7976 rt2800mmio_init_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x1edf531e rt2800mmio_probe_hw EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x32ac3645 rt2800mmio_rxdone_tasklet EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x3d741c87 rt2800mmio_pretbtt_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x3ffdd052 rt2800mmio_enable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x45f21b3a rt2800mmio_stop_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x47a5d045 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 0x5fa4db64 rt2800mmio_interrupt -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x6e948174 rt2800mmio_clear_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x7b9b489b rt2800mmio_probe_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x804fdc79 rt2800mmio_toggle_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x807e99d7 rt2800mmio_start_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x941204d8 rt2800mmio_init_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x682af621 rt2800mmio_queue_init +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x6ea275ea rt2800mmio_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x87cd2702 rt2800mmio_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x88570c56 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 0x9ca3b5a9 rt2800mmio_get_txwi EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x9f3c8921 rt2800mmio_txstatus_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xa25d046b rt2800mmio_get_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xbdc3bd13 rt2800mmio_get_dma_done -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xcdd1d6b3 rt2800mmio_write_tx_desc -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xcf18c884 rt2800mmio_init_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xcf3b4332 rt2800mmio_queue_init -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xebb98eeb rt2800mmio_fill_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x000907a5 rt2x00queue_start_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x041fc306 rt2x00lib_probe_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x113f2426 rt2x00mac_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x18ad7456 rt2x00mac_get_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1960e81d rt2x00mac_reconfig_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x22a10ad0 rt2x00queue_start_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x27a6a400 rt2x00mac_flush -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x2c9d0dfc rt2x00lib_dmastart -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x30731b7b rt2x00lib_beacondone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3a4a3911 rt2x00lib_dmadone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3acb540c rt2x00lib_txdone_noinfo -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x405f459c rt2x00queue_map_txskb -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x5b24976d rt2x00lib_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x68653192 rt2x00lib_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x69873646 rt2x00mac_add_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x75b1dcf1 rt2x00queue_unmap_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x76659f16 rt2x00mac_bss_info_changed -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x8204d7a5 rt2x00lib_set_mac_address -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x8b43cadd rt2x00queue_get_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x92684c74 rt2x00queue_pause_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x987eb9cb rt2x00mac_sw_scan_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x9a93412f rt2x00mac_rfkill_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa4e24a5d rt2x00queue_flush_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xae579f45 rt2x00lib_txdone_nomatch -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb09fce2e rt2x00mac_start -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb4236a74 rt2x00mac_configure_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb47c672e rt2x00mac_get_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb6b660f2 rt2x00mac_sw_scan_start -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb8a6182e rt2x00lib_get_bssidx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb967bf13 rt2x00mac_tx_frames_pending -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xba7c0154 rt2x00queue_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xbc5ea29d rt2x00queue_for_each_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xbd452594 rt2x00mac_set_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xbe489d74 rt2x00lib_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd16e546b rt2x00lib_remove_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd3027a78 rt2x00lib_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd5ffcd0a rt2x00mac_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd91cfdb9 rt2x00queue_unpause_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe26eccd5 rt2x00queue_stop_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe9359db0 rt2x00mac_remove_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xedc3f995 rt2x00mac_set_tim -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf216b38a rt2x00mac_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf3c7ad42 rt2x00mac_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf6dc46da rt2x00mac_get_ringparam -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf7f9aa1d rt2x00mac_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xfd106e19 rt2x00queue_stop_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xfef201b9 rt2x00lib_pretbtt -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x185b183a rt2x00mmio_initialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x2b0ee956 rt2x00mmio_regbusy_read -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x3611eb00 rt2x00mmio_uninitialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x5dc69791 rt2x00mmio_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xe8c746cc rt2x00mmio_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0xbf9c290a rt2x00pci_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0xe4f1b4c2 rt2x00pci_pm_ops -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0xe81e591e rt2x00pci_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x16c61dd8 rt2x00usb_register_read_async -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x275238e1 rt2x00usb_vendor_request -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x3402a08e rt2x00usb_uninitialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x470b8e5f rt2x00usb_kick_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x724564c0 rt2x00usb_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x745e43e4 rt2x00usb_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x7a2be541 rt2x00usb_initialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x92b9688c rt2x00usb_vendor_req_buff_lock -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xa2767623 rt2x00usb_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xad1afcbd rt2x00usb_disconnect -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xbb0f2ef8 rt2x00usb_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xc213442d rt2x00usb_clear_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xc8896da7 rt2x00usb_disable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xd27daa76 rt2x00usb_watchdog -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xdd0f94ae rt2x00usb_vendor_request_buff -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xe710476d rt2x00usb_regbusy_read -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x357b7ab2 dm_savepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x591cbc2e dm_restorepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x672cacd8 dm_writepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe90024f5 rtl92c_set_p2p_ps_offload_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0db07632 rtl8723_enable_fw_download -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0fe6b470 rtl8723_phy_reload_adda_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x226d01d2 rtl8723_phy_rf_serial_read -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x25d134b9 rtl8723_phy_path_adda_on +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xa52368e7 rt2800mmio_get_dma_done +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xa750f0ae rt2800mmio_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xae72b76c rt2800mmio_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xca5da59f rt2800mmio_write_tx_desc +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xd11e6aef rt2800mmio_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xdba99ca6 rt2800mmio_get_entry_state +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xdd7a9f05 rt2800mmio_init_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xfecaab9e rt2800mmio_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x022bdd3f rt2x00lib_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x08715f30 rt2x00queue_flush_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1c7dad0b rt2x00lib_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1e773143 rt2x00mac_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x23d019ea rt2x00queue_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3573184a rt2x00queue_for_each_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3b5f0478 rt2x00queue_get_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3e640a83 rt2x00lib_set_mac_address +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3fa96c7e rt2x00mac_reconfig_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x43ee12e1 rt2x00mac_get_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4dce5d41 rt2x00lib_txdone_nomatch +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x5006f1b3 rt2x00mac_sw_scan_start +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x57923c24 rt2x00mac_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x57be0676 rt2x00mac_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x5ba3f19f rt2x00queue_pause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x5c11f5cb rt2x00mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x61e7d3a0 rt2x00lib_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x62682dc2 rt2x00queue_start_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x634fc765 rt2x00queue_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x63a4e446 rt2x00mac_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x64dc659c rt2x00mac_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x684eab86 rt2x00mac_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7cd1fb29 rt2x00mac_set_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x82eb669b rt2x00lib_dmadone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x849b766c rt2x00lib_remove_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x85de4a60 rt2x00lib_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x89f8d8f8 rt2x00queue_unpause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x90459f9c rt2x00mac_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x95f7b3a9 rt2x00mac_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x9f730389 rt2x00mac_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa1821bfe rt2x00queue_unmap_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb020108e rt2x00lib_pretbtt +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc407a1b0 rt2x00mac_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc518e780 rt2x00lib_dmastart +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc657893b rt2x00lib_probe_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xcf172acc rt2x00mac_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd2899af7 rt2x00queue_map_txskb +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd829ecaf rt2x00queue_stop_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe024d207 rt2x00lib_get_bssidx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe3bf1b49 rt2x00mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe4981220 rt2x00mac_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe85d96ea rt2x00lib_beacondone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xece45a5b rt2x00mac_tx_frames_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xef4e4302 rt2x00lib_txdone_noinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf149394a rt2x00mac_get_ringparam +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf2b8af91 rt2x00queue_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf815f2f6 rt2x00mac_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x9e1fae05 rt2x00mmio_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xa6da5fa3 rt2x00mmio_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xd64443e0 rt2x00mmio_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xe98a3e32 rt2x00mmio_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xf7e88791 rt2x00mmio_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x21844eb5 rt2x00pci_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x9f7b28dd rt2x00pci_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0xb15b1813 rt2x00pci_pm_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x13c4a1ad rt2x00usb_disconnect +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x189d6f11 rt2x00usb_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x21d3c408 rt2x00usb_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x365ece49 rt2x00usb_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x4d4391b0 rt2x00usb_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x501f3392 rt2x00usb_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x7499bb18 rt2x00usb_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x7e5cea69 rt2x00usb_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xadd56234 rt2x00usb_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xade00b52 rt2x00usb_register_read_async +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xb0a80b1b rt2x00usb_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xb61a9266 rt2x00usb_vendor_req_buff_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xb75efe5a rt2x00usb_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xd3a9b4af rt2x00usb_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xdae750f6 rt2x00usb_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xf234e387 rt2x00usb_vendor_request_buff +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x561146df dm_savepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5ceb3e9e dm_writepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x95353b90 dm_restorepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf594a5d4 rtl92c_set_p2p_ps_offload_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x008064ef rtl8723_fw_free_to_go +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x21f79da8 rtl8723_phy_path_adda_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x2c3e98d2 rtl8723_write_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x351390f0 rtl8723_phy_save_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x3b523102 rtl8723_phy_mac_setting_calibration 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 0x44315a29 rtl8723_dm_init_dynamic_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x44a622f4 rtl8723_phy_save_mac_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x4941d3e3 rtl8723_save_adda_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x4df7105f rtl8723_phy_reload_mac_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x5535b01e rtl8723_download_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6648175c rtl8723_write_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x67d73230 rtl8723_phy_path_a_standby -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6c8aa5d0 rtl8723_phy_set_bb_reg -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x7b4c1f76 rtl8723_dm_init_edca_turbo -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x7f086d06 rtl8723ae_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x495e1164 rtl8723_save_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x4cdba6b3 rtl8723_cmd_send_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x51db9257 rtl8723_phy_rf_serial_read +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6166f1c0 rtl8723be_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x65eef463 rtl8723_dm_init_dynamic_bb_powersaving +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x68fd5c33 rtl8723_dm_init_edca_turbo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6e03ff08 rtl8723_phy_rf_serial_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x81a41019 rtl8723_phy_txpwr_idx_to_dbm 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 0x8ff2d75c rtl8723_phy_path_a_fill_iqk_matrix -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x98448b21 rtl8723_phy_rf_serial_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xac66dca2 rtl8723_phy_mac_setting_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb2faf3f2 rtl8723_phy_txpwr_idx_to_dbm -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xbabaac28 rtl8723be_firmware_selfreset -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xc399803c rtl8723_phy_init_bb_rf_reg_def -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xc8a4e995 rtl8723_fw_free_to_go -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xcee3e63a rtl8723_phy_query_bb_reg -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd72e34a4 rtl8723_dm_init_dynamic_bb_powersaving -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe49944cc rtl8723_cmd_send_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xed93e431 rtl8723_phy_pi_mode_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8dba1c8e rtl8723_enable_fw_download +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa7e931fb rtl8723_dm_init_dynamic_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xaaf2872e rtl8723_phy_set_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xc440ec71 rtl8723_phy_reload_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xcab0bfbb rtl8723_phy_init_bb_rf_reg_def +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xcc823d63 rtl8723_phy_path_a_standby +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xcdd6a9ca rtl8723_phy_pi_mode_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd723300c rtl8723_phy_reload_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xecf54f02 rtl8723ae_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xedf05e8f rtl8723_phy_query_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf851b1c9 rtl8723_phy_path_a_fill_iqk_matrix +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xfee918bc rtl8723_download_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0a81ed09 rtl_tx_mgmt_proc EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0d0b6636 rtl_global_var -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x14cdbd0e rtl_ips_nic_on -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x19bb046d rtl_is_special_data -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x26dea41d rtl_fw_block_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x27c941f3 rtl_get_hwinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x132ad751 rtl_init_rx_config +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2693e176 rtl_deinit_rfkill 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 0x2d9a5c06 rtl_ops EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2e5382f9 rtl_fill_dummy -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x41a856cc rtl_init_rx_config -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4a27258b rtl_efuse_ops_init -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x52dc2bc1 rtl_lps_enter -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x63f4d1cb rtl_set_tx_report -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x653173c1 rtl_deinit_core -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6706b7dc read_efuse_byte -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x68586546 rtl_recognize_peer +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3163cc6a rtl_lps_leave +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x38270c6e rtl_get_hwinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3c7b1973 rtl_fw_block_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x40d42917 rtl_efuse_ops_init +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x56cc3820 read_efuse_byte +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5b212cb9 rtl_deinit_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6096e663 rtl_p2p_info +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x63f9825d rtl_get_hal_edca_param +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6904a47b rtl_ips_nic_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6909ec2d rtl_beacon_statistic EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6db3ba37 rtl_update_beacon_work_callback -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x702436ac rtl_tx_report_handler -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7216dd1e rtl_beacon_statistic -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x76022f82 rtl_action_proc -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x94d60231 rtl_swlps_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x78f26eac rtl_recognize_peer +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7b3ed7e0 rtl_tx_report_handler EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x97e05663 rtl_tid_to_ac -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb6ed89a9 rtl_p2p_info -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbd98d921 rtl_fw_page_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xca003aa9 rtl_get_hal_edca_param -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd4542ffe rtl_tx_mgmt_proc -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd770af92 rtl_tx_ackqueue -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd994ce8e rtl_lps_leave -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd9d5d301 rtl_deinit_deferred_work -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe2fe2057 rtl_ops -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe4bd19c5 rtl_deinit_rfkill -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xeb98878f rtl_init_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9e108061 rtl_action_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa3eb1b7a rtl_is_special_data +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb0b53ea9 rtl_deinit_deferred_work +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb81194c3 rtl_lps_enter +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xba6ac01d rtl_tx_ackqueue +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbc7c6b97 rtl_fw_page_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe2f52b30 rtl_set_tx_report +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe61f0141 rtl_init_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf42ba922 rtl_swlps_beacon EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x0f5c3ce9 rsi_zone_enabled -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x2274d00e rsi_read_pkt -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x330a3b3f rsi_91x_init -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x61e87f4e rsi_91x_deinit -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xc4c09ede rsi_mac80211_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x44254aca rsi_91x_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xc3fedcee rsi_mac80211_detach EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xcd173710 rsi_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xd372ba3b rsi_hal_device_init -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x9da592e5 cw1200_core_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xe3d03d15 cw1200_irq_handler -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xece290a9 cw1200_can_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xff9dbc67 cw1200_core_release -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xbb91c16a wl1251_free_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xe7a4557e wl1251_alloc_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xebf699b1 wl1251_init_ieee80211 -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x00b6a495 wlcore_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xd5a8cab6 rsi_read_pkt +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xe0f30959 rsi_hal_device_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xeef9d03d rsi_91x_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x0254ae9a cw1200_can_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x40005c87 cw1200_irq_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x975a6c94 cw1200_core_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xe34234bf cw1200_core_release +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x41d5e198 wl1251_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xb1b460a0 wl1251_init_ieee80211 +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xd4dbb4ac wl1251_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x013f1af9 wl1271_cmd_send +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x02ce96a1 wlcore_event_roc_complete EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x06d3b27e wl12xx_debug_level -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0ad408c4 wlcore_event_max_tx_failure -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0b768a20 wlcore_event_ba_rx_constraint -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0c3eb807 wl1271_acx_pm_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1a4dcd9b wlcore_cmd_wait_for_event_or_timeout +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x12653bb2 wl1271_cmd_test +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x16ed7d3d wl1271_acx_set_ht_capabilities +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1c0c7bb2 wlcore_scan_sched_scan_results +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1ffb0959 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 0x256779db wlcore_disable_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2d4bb373 wl1271_acx_set_ht_capabilities -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2fa2fde5 wl1271_cmd_data_path -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3a62afd2 wl1271_cmd_test -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3da0a961 wlcore_event_beacon_loss -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3e4ebad8 wl12xx_cmd_build_probe_req -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x456ab1d1 wlcore_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x49b76a99 wlcore_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5e601af8 wlcore_cmd_generic_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5e74b23d wlcore_set_scan_chan_params -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x64f39db8 wlcore_disable_interrupts_nosync -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6796bf69 wlcore_event_dummy_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x787ed97d wl1271_tx_min_rate_get -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x79f62d82 wlcore_synchronize_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x82226cc9 wl1271_tx_flush -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x83a008b9 wlcore_event_inactive_sta -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x83d7a78a wlcore_free_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x848e3af3 wlcore_translate_addr +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x21b15a4f wlcore_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x22d45aa8 wl12xx_cmd_build_probe_req +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x231491fa wlcore_disable_interrupts_nosync +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x326a5054 wlcore_boot_run_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x345274f7 wlcore_synchronize_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x392eec55 wlcore_set_scan_chan_params +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3995a23f wlcore_event_sched_scan_completed +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x399c16d9 wlcore_event_channel_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x45001211 wlcore_translate_addr +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x48d4382a wl1271_cmd_configure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4a5889b2 wl1271_acx_init_mem_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4c82c3a0 wl1271_tx_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x556f789b wlcore_enable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x573a7278 wlcore_event_max_tx_failure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5f374b25 wl1271_tx_min_rate_get +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6f59ea1a wlcore_cmd_generic_cfg EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x85498cd1 wl1271_format_buffer -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x88b0417a wlcore_scan_sched_scan_ssid_list -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x88d9052b wl1271_cmd_send -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8ad62402 wlcore_event_sched_scan_completed -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9145d771 wlcore_event_channel_switch -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x92630045 wlcore_scan_sched_scan_results -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x938dc997 wlcore_event_rssi_trigger -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9bd9dde0 wlcore_event_fw_logger -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9cb12d06 wl1271_acx_init_mem_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa7d0549b wlcore_boot_upload_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xaf08425c wlcore_boot_upload_nvs -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb00079b1 wl12xx_acx_mem_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xbb6ad08c wlcore_set_partition -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc5980140 wlcore_event_roc_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xcec8e551 wl1271_acx_sleep_auth -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe7d5a620 wlcore_event_soft_gemini_sense -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xeefc3f50 wlcore_enable_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf0feafc9 wlcore_alloc_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf34f1ce9 wl1271_cmd_configure -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf3ee5e92 wl1271_debugfs_update_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf5a6560f wlcore_boot_run_firmware -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x1bbf8932 nfcmrvl_nci_register_dev -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x378a8603 nfcmrvl_nci_recv_frame -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x3daaf233 nfcmrvl_nci_unregister_dev -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x50044e28 nfcmrvl_parse_dt -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x02050ca3 pn53x_unregister_nfc -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x224319ee pn53x_common_init -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x2e9546fe pn532_i2c_nfc_alloc -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x46e137b3 pn533_finalize_setup -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x6915d297 pn53x_register_nfc -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x8e076324 pn53x_common_clean +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x86dc0d00 wlcore_event_inactive_sta +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x875a014d wlcore_disable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x989fd5be wl1271_cmd_data_path +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa73266a8 wlcore_boot_upload_nvs +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb468e0b2 wlcore_event_ba_rx_constraint +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb9ce5460 wlcore_boot_upload_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xbbfe2d9e wlcore_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xbf9a7c18 wlcore_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc0992e78 wlcore_event_rssi_trigger +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc7616de8 wl1271_acx_pm_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xcbf04c49 wl1271_debugfs_update_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xcfe3d79b wlcore_set_partition +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd57c8e3b wlcore_scan_sched_scan_ssid_list +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd587fc05 wl12xx_acx_mem_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd8afb2d4 wlcore_event_dummy_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xda055415 wlcore_event_beacon_loss +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xdb8e019a wlcore_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe41ae625 wlcore_event_fw_logger +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe4776382 wl1271_acx_sleep_auth +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe861647b wlcore_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xedb720e3 wlcore_cmd_wait_for_event_or_timeout +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x17b5bc10 nfcmrvl_nci_unregister_dev +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xa584097b nfcmrvl_nci_register_dev +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xd5024ff7 nfcmrvl_nci_recv_frame +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xfbb595b2 nfcmrvl_parse_dt +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x3a1d2394 pn533_rx_frame_is_cmd_response +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x3e9a6712 pn533_finalize_setup +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x42a1060e pn53x_unregister_nfc +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x6f10094d pn532_i2c_nfc_alloc +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x6fd811c0 pn53x_common_init +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xc3fcdef5 pn53x_register_nfc EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xdecfd339 pn533_rx_frame_is_ack -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xe502c9ef pn533_rx_frame_is_cmd_response -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x195d37cb st_nci_discover_se -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x204fd6e1 st_nci_hci_load_session -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x44ec232c st_nci_disable_se -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x4d810d7a st_nci_hci_cmd_received -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x754e9e37 st_nci_hci_event_received -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xb8d2f648 st_nci_probe -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xc7e1d89b st_nci_remove -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xd68b8581 st_nci_enable_se -EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x34990633 st95hf_spi_recv_echo_res -EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x6ef64fc2 st95hf_spi_send -EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0xd99b1dbc st95hf_spi_recv_response +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xe5e0a983 pn53x_common_clean +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x057e84c3 st_nci_hci_cmd_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x2142bbe8 st_nci_hci_event_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x33e9f3d5 st_nci_remove +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x4f4579c7 st_nci_hci_load_session +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x5f047ffa st_nci_discover_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xadf5278b st_nci_probe +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xbfbbff13 st_nci_disable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xeae2f347 st_nci_enable_se +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x0a5688e6 st95hf_spi_send +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0xafebb869 st95hf_spi_recv_response +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0xd075ef19 st95hf_spi_recv_echo_res EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x0862001f ntb_transport_tx_free_entry +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x2b6d3d52 ntb_transport_unregister_client EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x30934216 ntb_transport_max_size +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x309d61d3 ntb_transport_register_client 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 0x44122a86 ntb_transport_register_client EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x82e6c13d ntb_transport_qp_num EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x9c992c8f ntb_transport_link_up -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xab858f65 ntb_transport_unregister_client +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xb10cb0c1 ntb_transport_create_queue EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc270dc24 ntb_transport_free_queue EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc37d9036 ntb_transport_rx_remove EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xd40e7a02 ntb_transport_rx_enqueue -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xe9624ddf ntb_transport_create_queue EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf55d6313 ntb_transport_register_client_dev EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf9eb813f ntb_transport_unregister_client_dev -EXPORT_SYMBOL_GPL drivers/nvdimm/nd_virtio 0x9fabea65 virtio_pmem_host_ack -EXPORT_SYMBOL_GPL drivers/nvdimm/nd_virtio 0xbab26338 async_pmem_flush -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0329ceeb nvme_sync_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1123b9a0 nvme_stop_ctrl +EXPORT_SYMBOL_GPL drivers/nvdimm/nd_virtio 0x5766127c virtio_pmem_host_ack +EXPORT_SYMBOL_GPL drivers/nvdimm/nd_virtio 0x75a93c59 async_pmem_flush +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x049e48a9 __nvme_check_ready +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x06ad4231 nvme_uninit_ctrl EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x11abc494 __SCK__tp_func_nvme_sq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x206fbe12 __nvme_submit_sync_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x26303560 nvme_wait_freeze -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2a7b8af3 nvme_sync_io_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x37ec4715 nvme_stop_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x4119b7d0 nvme_fail_nonready_command -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x43acd1c7 nvme_shutdown_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x47e3f96d nvme_unfreeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1615b9aa nvme_host_path_error +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x188fd984 nvme_change_ctrl_state +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x20e407e3 nvme_disable_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x289f27cc nvme_complete_rq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x29e3ae06 __traceiter_nvme_sq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2a6bcf04 nvme_wait_freeze_timeout +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3b46e2f9 nvme_kill_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3ffcc5d5 nvme_get_features +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x426dc3fc nvme_set_features +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x42728816 nvme_cleanup_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x431ff499 nvme_try_sched_reset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x446d3988 nvme_setup_cmd EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x49224181 nvme_reset_wq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x4fedebc4 nvme_remove_namespaces -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x523e2e38 nvme_change_ctrl_state -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x546ab463 nvme_init_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x5ee7ecd2 nvme_uninit_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x50fe5ce6 nvme_cancel_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x5a7701b7 nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x5e6b0afa nvme_cancel_admin_tagset EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x64b62862 nvme_wq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x73458d09 nvme_get_features -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x75017b67 nvme_complete_rq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7d084e8d nvme_start_freeze -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7e3cc412 nvme_try_sched_reset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x68be9475 nvme_start_freeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x6c2a0e3b nvme_stop_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x6e92b9d3 nvme_wait_freeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x72a8558b nvme_stop_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7d274c10 nvme_stop_keep_alive +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7d92991f nvme_reset_ctrl EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x813cf212 nvme_io_timeout -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x847d5f99 nvme_init_ctrl_finish +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x838d9f5b nvme_init_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x87558688 nvme_unfreeze EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8a9c70ed nvme_sec_submit -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8cd86258 nvme_cleanup_cmd EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8e7ec2b6 __tracepoint_nvme_sq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x93f62e27 nvme_complete_async_event -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x94b19a01 nvme_disable_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x956842be nvme_wait_reset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x99e4e441 nvme_submit_sync_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa1fca778 nvme_kill_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xaebab866 nvme_start_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xaf14c208 __nvme_check_ready -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb06b71e1 nvme_cancel_tagset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb37420db nvme_set_features -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb3fb76ba nvme_set_queue_count -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb588e665 nvme_setup_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc257b048 nvme_stop_keep_alive +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x99ad338a nvme_init_ctrl_finish +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa7a1d774 nvme_complete_async_event +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb4037607 nvme_cancel_tagset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb9a28a8d nvme_delete_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xbafb35f5 nvme_enable_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xbddb34ae nvme_start_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xbed53111 nvme_shutdown_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc4bafad0 nvme_wait_reset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd285690f __nvme_submit_sync_cmd 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 0xd86b0956 nvme_alloc_request -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xdd4bb8d2 nvme_start_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe0e160a5 nvme_wait_freeze_timeout -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe361acee __traceiter_nvme_sq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe81ff69e nvme_cancel_admin_tagset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xeb90b1b1 nvme_reset_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xef01d285 nvme_enable_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf90a78ed nvme_delete_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xff2ca0d0 nvme_cancel_request -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xfff5bd74 nvme_host_path_error -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x1ab67a06 nvmf_ip_options_match -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x3d8530c5 nvmf_get_address +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xdcf894f6 nvme_sync_io_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xdf6e0dd3 nvme_set_queue_count +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe025260f nvme_alloc_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe242d922 nvme_sync_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe6635fe3 nvme_fail_nonready_command +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf069b0ef nvme_start_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf9c82c25 nvme_remove_namespaces +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x1abcfc25 nvmf_get_address +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x29d07a07 nvmf_reg_read64 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x327c2b31 nvmf_ip_options_match EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x51c659eb nvmf_free_options -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x6f140056 nvmf_should_reconnect -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x714b0d3f nvmf_unregister_transport -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x9476960b nvmf_reg_read64 -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xa5ac5ad2 nvmf_register_transport -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xa7f6ed8d nvmf_reg_write32 -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xc14f8feb nvmf_connect_admin_queue -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xc576cfc6 nvmf_connect_io_queue -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xd91cb50a nvmf_reg_read32 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x6d70903f nvmf_reg_write32 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x73ed2762 nvmf_should_reconnect +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x9fe2f1a6 nvmf_connect_io_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xa67c530b nvmf_unregister_transport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xb9b56c52 nvmf_connect_admin_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xcf392120 nvmf_reg_read32 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xdd9d24a7 nvmf_register_transport EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x0d12e564 nvme_fc_register_remoteport EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x3884f8b8 nvme_fc_unregister_localport EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x3e33ac54 nvme_fc_rescan_remoteport EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x8a9cf5a7 nvme_fc_set_remoteport_devloss +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x96cc0ef7 nvme_fc_register_localport EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0xbb0e18a6 nvme_fc_rcv_ls_req -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0xcbb7f1c6 nvme_fc_register_localport EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0xfca9dc99 nvme_fc_unregister_remoteport -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x421e6a35 nvmet_register_transport -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x48fa66e1 nvmet_req_alloc_sgls -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x4f01ad97 nvmet_req_init -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x5748350d nvmet_check_transfer_len -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x844b13d3 nvmet_req_free_sgls -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x94257a3d nvmet_sq_init -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x973b83d2 nvmet_unregister_transport -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x98d6bd35 nvmet_sq_destroy -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x9cdffd62 nvmet_ctrl_fatal_error -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xcd41b78c nvmet_req_uninit -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xf3b97340 nvmet_req_complete +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x00f4f58d nvmet_req_uninit +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x02c78674 nvmet_req_init +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x1c82c61b nvmet_register_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x5bc1a921 nvmet_ctrl_fatal_error +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x6b1c957f nvmet_req_alloc_sgls +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x8f35ecec nvmet_unregister_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xa1e1e706 nvmet_req_complete +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xaa6cb898 nvmet_sq_destroy +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xc0fa689d nvmet_check_transfer_len +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xc13ad481 nvmet_req_free_sgls +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xc9b7ef09 nvmet_sq_init EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x0b98123d nvmet_fc_rcv_ls_req EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x1048b92a nvmet_fc_rcv_fcp_req EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x4a013682 nvmet_fc_invalidate_host EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x7fa5302a nvmet_fc_rcv_fcp_abort -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x92467bc4 nvmet_fc_register_targetport EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x9ef76d99 nvmet_fc_unregister_targetport -EXPORT_SYMBOL_GPL drivers/pci/hotplug/pnv-php 0x2eb7f51f pnv_php_set_slot_power_state -EXPORT_SYMBOL_GPL drivers/pci/hotplug/pnv-php 0x7d4b18f3 pnv_php_find_slot +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0xc4ba85c8 nvmet_fc_register_targetport +EXPORT_SYMBOL_GPL drivers/pci/hotplug/pnv-php 0x23f12857 pnv_php_set_slot_power_state +EXPORT_SYMBOL_GPL drivers/pci/hotplug/pnv-php 0xba3d91d4 pnv_php_find_slot EXPORT_SYMBOL_GPL drivers/pci/hotplug/rpaphp 0x01cc7086 rpaphp_slot_head -EXPORT_SYMBOL_GPL drivers/pci/hotplug/rpaphp 0x1b23ea4e rpaphp_check_drc_props -EXPORT_SYMBOL_GPL drivers/pci/hotplug/rpaphp 0x336996e1 rpaphp_add_slot -EXPORT_SYMBOL_GPL drivers/pci/hotplug/rpaphp 0x754d4f69 rpaphp_deregister_slot -EXPORT_SYMBOL_GPL drivers/pci/switch/switchtec 0x21227ae2 switchtec_class -EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0x1825b9a6 mcp23x17_regmap -EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0x285e1d49 mcp23x08_regmap -EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0xb81d460d mcp23s08_probe_one -EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0x3726f7e1 devm_reboot_mode_register -EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0x5326361e reboot_mode_register -EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0x9a8668cd reboot_mode_unregister -EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0xfbbea9a6 devm_reboot_mode_unregister -EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0x47db110f bq27xxx_battery_update -EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0x4e572973 bq27xxx_battery_setup -EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0xee738c8b bq27xxx_battery_teardown -EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x2c30edd4 pcf50633_mbc_get_status -EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x8334f976 pcf50633_mbc_usb_curlim_set -EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0xfa2e2207 pcf50633_mbc_get_usb_online_status -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x0f6d1b31 ptp_qoriq_adjfine -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x1de9edbb ptp_qoriq_enable +EXPORT_SYMBOL_GPL drivers/pci/hotplug/rpaphp 0x46224783 rpaphp_add_slot +EXPORT_SYMBOL_GPL drivers/pci/hotplug/rpaphp 0x9cb85a25 rpaphp_deregister_slot +EXPORT_SYMBOL_GPL drivers/pci/hotplug/rpaphp 0x9d1d2fc2 rpaphp_check_drc_props +EXPORT_SYMBOL_GPL drivers/pci/switch/switchtec 0x2589f642 switchtec_class +EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0x47a41d52 mcp23x08_regmap +EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0x77dfb9bd mcp23x17_regmap +EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0x90a04823 mcp23s08_probe_one +EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0x0316fe30 reboot_mode_register +EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0x11212f8f devm_reboot_mode_unregister +EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0x7be43090 devm_reboot_mode_register +EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0xd4dbb075 reboot_mode_unregister +EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0x67687352 bq27xxx_battery_update +EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0xad975ed4 bq27xxx_battery_setup +EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0xcafd3af6 bq27xxx_battery_teardown +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x3e5549dc pcf50633_mbc_get_usb_online_status +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0xbf344572 pcf50633_mbc_get_status +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0xc5149ddb pcf50633_mbc_usb_curlim_set +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x04361952 ptp_qoriq_settime EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x2eae82b0 ptp_qoriq_isr -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x578b6dcf ptp_qoriq_adjtime -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x79581177 ptp_qoriq_free -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x9dd65df3 ptp_qoriq_gettime -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xc3b35f9e ptp_qoriq_settime -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xe9b8e2ef extts_clean_up -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xf0caaaf2 ptp_qoriq_init -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x2118a54d mc13xxx_regulator_ops -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x217b4b06 mc13xxx_get_num_regulators_dt -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x92961727 mc13xxx_fixed_regulator_set_voltage -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xeb371c12 mc13xxx_fixed_regulator_ops -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xf21a48e8 mc13xxx_parse_regulators_dt -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x064a9485 wm8350_register_led -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x55de8887 wm8350_register_regulator -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x657eaef2 wm8350_dcdc_set_slot -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x9a12a024 wm8350_ldo_set_slot -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xa4761ec8 wm8350_dcdc25_set_mode -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xbb8e9595 wm8350_isink_set_flash -EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0xc4b384f6 wm8400_register_regulator +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x56149e9a extts_clean_up +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x67d7b5b8 ptp_qoriq_gettime +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x7f765651 ptp_qoriq_enable +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xb0837aa4 ptp_qoriq_adjfine +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xb63a818f ptp_qoriq_adjtime +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xd0689c74 ptp_qoriq_init +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xf7356f7c ptp_qoriq_free +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x1d9713bb mc13xxx_fixed_regulator_set_voltage +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x31468261 mc13xxx_parse_regulators_dt +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x42823879 mc13xxx_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xa479daa4 mc13xxx_get_num_regulators_dt +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xc526ceb1 mc13xxx_fixed_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x023618db wm8350_isink_set_flash +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x1c80c2f0 wm8350_dcdc_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xa5069e0a wm8350_register_regulator +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xb02ca1b2 wm8350_register_led +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xec1c596b wm8350_ldo_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xff504417 wm8350_dcdc25_set_mode +EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0x0f704a61 wm8400_register_regulator EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0x149236da qcom_glink_native_remove +EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0xac139c9c qcom_glink_native_probe EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0xf14f5684 qcom_glink_ssr_notify -EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0xf87c3f6a qcom_glink_native_probe EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0xfd2d5a1d qcom_glink_native_unregister -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x01590d81 cxgbi_ep_poll -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0dcb53d7 cxgbi_sock_free_cpl_skbs -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0ed44d7d cxgbi_sock_purge_wr_queue -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0fa0723e cxgbi_conn_alloc_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1171e719 cxgbi_conn_init_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x19d43a57 cxgbi_sock_skb_entail -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x21a17f1a cxgbi_destroy_session -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x235bdda9 cxgbi_hbas_add -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x277efd65 cxgbi_sock_fail_act_open -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2cccd5cd cxgbi_get_host_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3a219a04 cxgbi_device_portmap_create -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x40eb7a20 cxgbi_create_conn -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4b0031f0 cxgbi_parse_pdu_itt -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5129457e cxgbi_get_conn_stats -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x60d3c323 cxgbi_sock_act_open_req_arp_failure -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x67b4cefc cxgbi_iscsi_cleanup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6a312d62 cxgbi_sock_select_mss -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x70467881 cxgbi_ddp_ppm_setup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x76f4cf7b cxgbi_sock_closed -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7819bf8f cxgbi_device_find_by_netdev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x01acfb33 cxgbi_sock_purge_wr_queue +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0fd32504 cxgbi_sock_skb_entail +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x16b08e42 cxgbi_device_unregister +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1892258f cxgbi_sock_rcv_abort_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1afe7942 cxgbi_sock_rcv_peer_close +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2f2ae94c cxgbi_ddp_ppm_setup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x30ff2313 cxgbi_device_find_by_netdev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3533fb32 cxgbi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3b858c98 cxgbi_sock_fail_act_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x482d79fc cxgbi_ep_connect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4d3ba1c3 cxgbi_set_conn_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4ebf44ad cxgbi_conn_pdu_ready +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x50ad5e75 cxgbi_sock_free_cpl_skbs +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x529de53d cxgbi_set_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x58f88a8b cxgbi_conn_alloc_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x62590915 cxgbi_sock_established +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x69364aef cxgbi_device_register +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6e99c739 cxgbi_ep_poll +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6eeeb4f5 cxgbi_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7596b2f6 cxgbi_conn_tx_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7bb675c3 cxgbi_ep_disconnect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7ceb17ce cxgbi_sock_rcv_close_conn_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7e6fddce cxgbi_get_host_param EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fdb6004 cxgbi_device_unregister_all -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x819d9502 cxgbi_device_find_by_netdev_rcu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8e3cce76 cxgbi_conn_tx_open -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8e726200 cxgbi_conn_pdu_ready -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9a063ae5 cxgbi_cleanup_task -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9cf7b6ff cxgbi_ep_disconnect -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9d219943 cxgbi_sock_rcv_wr_ack -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa26c126d cxgbi_sock_established -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb3dc7512 cxgbi_device_find_by_lldev -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb7365469 cxgbi_iscsi_init -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb808f37e cxgbi_sock_rcv_peer_close -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbbc860c3 cxgbi_create_session -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbcc67832 cxgbi_set_host_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbd145c9d cxgbi_sock_rcv_close_conn_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x83ff45ad cxgbi_sock_closed +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x94ac976b cxgbi_sock_check_wr_invariants +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9b62d2f0 cxgbi_device_find_by_lldev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9e8961fa cxgbi_hbas_remove +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa9228bba cxgbi_iscsi_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb11b53b5 cxgbi_hbas_add +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb2e4b724 cxgbi_conn_xmit_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb6c76d61 cxgbi_conn_init_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb95c178b cxgbi_sock_act_open_req_arp_failure +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbb5c75ab cxgbi_sock_rcv_wr_ack EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc011af75 cxgbi_ddp_set_one_ppod -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc4fb8d10 cxgbi_device_portmap_cleanup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc8edeb56 cxgbi_ep_connect -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc904fcf7 cxgbi_get_ep_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc9de30af cxgbi_sock_rcv_abort_rpl -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd3e3204e cxgbi_bind_conn -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdb40b548 cxgbi_device_unregister -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdc2aa88e cxgbi_device_register -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdcbdbb4d cxgbi_set_conn_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xded5164e cxgbi_sock_check_wr_invariants -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe95cf63d cxgbi_hbas_remove +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc5f658ae cxgbi_sock_select_mss +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc7a5111f cxgbi_device_portmap_create +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xcc8951c1 cxgbi_get_ep_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xcfca1d0c cxgbi_parse_pdu_itt +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe4586403 cxgbi_bind_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xea01b5ff cxgbi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xec1c2a7c cxgbi_create_conn EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xef346615 cxgbi_attr_is_visible -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf17c0b0a cxgbi_conn_xmit_pdu -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x049fd893 fcoe_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x1736573f fcoe_get_paged_crc_eof -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x1ead4e16 fcoe_ctlr_device_delete -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x328f8a9a fcoe_fc_crc -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x35992736 __fcoe_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x409d08a6 fcoe_libfc_config -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x444daf5a fcoe_fcf_device_add -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x6d214138 fcoe_validate_vport_create -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x7251f9d4 fcoe_ctlr_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf2211742 cxgbi_device_find_by_netdev_rcu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf2b3aa50 cxgbi_device_portmap_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xfc967ac0 cxgbi_get_conn_stats +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xfe100232 cxgbi_iscsi_init +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x094cd112 fcoe_start_io +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x21395311 fcoe_get_wwn +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x419e5540 fcoe_validate_vport_create +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x4e3e4ec3 fcoe_check_wait_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x61178985 fcoe_libfc_config +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x6c6abdbb fcoe_fcf_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x6dbdd467 fcoe_fc_crc +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x771a0ffa fcoe_ctlr_get_lesb EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x7e92994b fcoe_wwn_from_mac -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x831209bf fcoe_get_wwn -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x865d84d9 fcoe_fcf_device_delete -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x90d41cfc fcoe_link_speed_update +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x8d01a2a6 fcoe_clean_pending_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xb22bd9cf __fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xb5525973 fcoe_ctlr_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xb7642244 fcoe_link_speed_update EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xbac58840 fcoe_queue_timer -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xd163f747 fcoe_check_wait_queue -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xd65be877 fcoe_start_io -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xdb90cdc4 fcoe_ctlr_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xc5409992 fcoe_get_paged_crc_eof +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xca75383f fcoe_fcf_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf015c550 fcoe_get_lesb EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf167cb7a fcoe_wwn_to_str -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf7704933 fcoe_clean_pending_queue -EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0xbe449e1c fdomain_create -EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0xd39c5865 fdomain_destroy -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x0d73e6c5 iscsi_boot_destroy_kset -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x344ef2d9 iscsi_boot_create_target -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x417c6c25 iscsi_boot_create_kset -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x6ec8ac7e iscsi_boot_create_acpitbl -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xbadf8eda iscsi_boot_create_ethernet -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xd347004c iscsi_boot_create_initiator -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xf1835da1 iscsi_boot_create_host_kset +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf2405698 fcoe_ctlr_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0x46f83313 fdomain_create +EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0x8700eb99 fdomain_destroy +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x2184e62e iscsi_boot_create_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x3c855572 iscsi_boot_destroy_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x5787b10a iscsi_boot_create_target +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x6564ed94 iscsi_boot_create_initiator +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x7171e653 iscsi_boot_create_acpitbl +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xda9d7320 iscsi_boot_create_host_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xff1f6be5 iscsi_boot_create_ethernet EXPORT_SYMBOL_GPL drivers/scsi/libfc/libfc 0x66f43542 fc_seq_els_rsp_send -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x03155050 iscsi_host_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x08dc5a86 iscsi_eh_cmd_timed_out +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x019ab3d6 iscsi_session_recovery_timedout +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x029b60d4 iscsi_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0767112b iscsi_itt_to_ctask +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0b54667d iscsi_session_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0eb54d1c iscsi_eh_recover_target EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x17afe9ee iscsi_conn_failure -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1b509919 iscsi_queuecommand -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1ec9a385 iscsi_eh_abort -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x21605c6e iscsi_session_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x27727d56 iscsi_requeue_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x27828ae2 __iscsi_put_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2bf9c38d iscsi_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x15218139 iscsi_update_cmdsn +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x17d5198e iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1a7b876a iscsi_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3057df21 iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x32dcbd17 iscsi_host_add EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4a1b66db iscsi_put_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4a46f728 iscsi_session_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4b6db03d iscsi_conn_start -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x57a103e1 iscsi_host_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5e000489 iscsi_host_add -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6e7f6f92 iscsi_host_get_max_scsi_cmds -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6fe649a8 iscsi_itt_to_ctask -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x737c84c3 iscsi_conn_bind -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x75de990a iscsi_conn_unbind -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x87880bec iscsi_update_cmdsn -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8804573d iscsi_host_set_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x88f56a02 iscsi_suspend_queue -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8ab2f47f __iscsi_get_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x44140081 iscsi_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x475f1309 iscsi_eh_device_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x52879752 iscsi_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5496949d iscsi_host_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5ac82235 iscsi_eh_abort +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x64d63f84 iscsi_conn_unbind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x65db68ed iscsi_conn_bind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x675ed6cb iscsi_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6c4d0604 __iscsi_get_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x77c5c304 iscsi_suspend_tx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x78a49265 iscsi_host_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7a9b889d iscsi_prep_data_out_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7f0de073 __iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d033f07 iscsi_complete_scsi_task EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9bb70086 iscsi_session_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa0e53203 iscsi_session_recovery_timedout -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa408f770 iscsi_host_remove -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa4d29f46 iscsi_host_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xaf785f33 iscsi_verify_itt -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb0ddda23 iscsi_conn_queue_work -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb33ab6f4 iscsi_complete_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbd40f141 iscsi_conn_stop -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbdbfe996 iscsi_eh_session_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc13e676d iscsi_eh_device_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc270a779 iscsi_complete_scsi_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc2d970f2 iscsi_session_failure -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xccd88785 __iscsi_complete_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xce68285f iscsi_suspend_tx -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcf88a468 iscsi_eh_recover_target -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe174caa3 iscsi_set_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe80732ff iscsi_prep_data_out_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9ed839ed iscsi_conn_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa22aa24f iscsi_host_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xaa242bb5 iscsi_host_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xadce7cba iscsi_itt_to_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbab3bf58 iscsi_conn_queue_work +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbc66a202 iscsi_eh_cmd_timed_out +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc02be0dd iscsi_host_get_max_scsi_cmds +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc1055684 iscsi_conn_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcf90fa82 iscsi_session_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdb6611d6 iscsi_suspend_queue +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xde313e78 iscsi_host_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe01896a3 __iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe15bed03 iscsi_session_setup EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeab9cbd5 iscsi_conn_get_addr_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf1250768 iscsi_itt_to_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf2802e8a iscsi_conn_send_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf4c01ff3 iscsi_conn_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf704898e iscsi_conn_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfe43182d iscsi_conn_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x234d8aee iscsi_tcp_r2tpool_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x24047a13 iscsi_tcp_cleanup_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x33237996 iscsi_tcp_dgst_header -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x37315d9f iscsi_segment_seek_sg -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x3e64ae00 iscsi_tcp_conn_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x4fc4c1e4 iscsi_tcp_segment_unmap -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x4fdf85e0 iscsi_tcp_recv_skb -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x51c8ab91 iscsi_tcp_task_xmit -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xb762f3df iscsi_tcp_segment_done -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xbf3d8cdd iscsi_segment_init_linear -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xd40892e4 iscsi_tcp_r2tpool_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xd625a316 iscsi_tcp_hdr_recv_prep -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xd63bf8b2 iscsi_tcp_conn_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xe1a7192f iscsi_tcp_task_init -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xe7236e16 iscsi_tcp_set_max_r2t -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xea6e1275 iscsi_tcp_conn_get_stats -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xf266094d iscsi_tcp_recv_segment_is_hdr -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x03f1e2f3 sas_phy_reset -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2589ee80 sas_notify_phy_event -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x29799a82 sas_unregister_ha -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2bc5b393 sas_drain_work -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4de59ee5 sas_bios_param -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x518c51cc sas_alloc_slow_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6e1abfd2 sas_change_queue_depth -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x74f9432a sas_register_ha -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x78efe5b3 sas_slave_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7e1cb465 sas_slave_configure -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7f283076 sas_get_local_phy -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8ec96d26 sas_free_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9133b2f4 sas_eh_target_reset_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x916bea13 sas_target_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9d162cd6 sas_request_addr -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb222dea5 sas_queuecommand -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb773397e sas_eh_device_reset_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc66f47b7 sas_ata_schedule_reset -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc6877d1f sas_eh_abort_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xcb462f86 sas_alloc_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xcd51e66a sas_notify_port_event -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd445db8f sas_ssp_task_response -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xda484cfb dev_attr_phy_event_threshold -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe660ceaa sas_ioctl -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xee54964d sas_target_destroy -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf7d3029a sas_domain_attach_transport -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xfe9351a8 sas_task_abort -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_fc 0x64da9c4e fc_eh_should_retry_cmd -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x060e8158 __traceiter_iscsi_dbg_session +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeb95c1f9 iscsi_conn_stop +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xed45b1db iscsi_session_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeedcf1b0 iscsi_conn_start +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf1ebdd47 iscsi_requeue_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfa209db3 iscsi_verify_itt +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfa67c9cc iscsi_conn_send_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfdc3e4f6 iscsi_eh_session_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x0158e094 iscsi_tcp_set_max_r2t +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x0188c009 iscsi_tcp_r2tpool_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x02681155 iscsi_tcp_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x04449d31 iscsi_tcp_task_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x1c4730bc iscsi_tcp_recv_segment_is_hdr +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x1e135e1d iscsi_tcp_segment_unmap +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x29c16c6f iscsi_tcp_segment_done +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x2bc6d8b7 iscsi_tcp_r2tpool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x355be083 iscsi_tcp_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x4a417fe7 iscsi_tcp_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x4a90ca90 iscsi_segment_seek_sg +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x4b1867df iscsi_tcp_dgst_header +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x5d32ca98 iscsi_tcp_recv_skb +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x92306655 iscsi_tcp_hdr_recv_prep +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xb3479523 iscsi_tcp_task_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xb4dae87a iscsi_segment_init_linear +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xd551e06b iscsi_tcp_conn_get_stats +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x02e577e0 sas_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0d74d366 sas_target_destroy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1b5541ba sas_alloc_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x284f6ea9 sas_eh_device_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x42e334ff sas_phy_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x49375ba6 sas_unregister_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5372dad8 sas_eh_abort_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x58d31279 sas_ata_schedule_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x703c0f6e sas_eh_target_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7069202e sas_task_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x71fc5c4d sas_alloc_slow_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7403477a sas_notify_phy_event +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x79c425fd sas_notify_port_event +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7f819e09 sas_request_addr +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7fbf252f sas_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9abb7777 dev_attr_phy_event_threshold +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9c0ce4bf sas_domain_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa069fbdc sas_bios_param +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa1b71f4f sas_slave_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb4df7b77 sas_free_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc0d9f799 sas_slave_configure +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc5d6fc5e sas_drain_work +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd16c464b sas_get_local_phy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xdde058bd sas_change_queue_depth +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe527ff1d sas_ssp_task_response +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xeaa2c17d sas_register_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf9d42ee4 sas_ioctl +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_fc 0x6ec20c8a fc_eh_should_retry_cmd +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x03174276 iscsi_is_session_dev EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0736dd10 __tracepoint_iscsi_dbg_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x075a96b5 iscsi_flashnode_bus_match -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x086d68ee __traceiter_iscsi_dbg_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0bbdb5ac iscsi_put_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0cc3f685 iscsi_find_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0eb4dd2c iscsi_scan_finished -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x10f57d7a iscsi_unblock_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x11d12474 iscsi_conn_login_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x124744f2 iscsi_is_session_dev -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1a8df6de iscsi_create_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2095fd76 iscsi_dbg_trace -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x262b87e7 iscsi_add_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2d060e17 iscsi_destroy_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3179db34 __traceiter_iscsi_dbg_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x096ddcbe iscsi_destroy_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0bb0a147 iscsi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0c30f089 iscsi_add_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1e66bb98 iscsi_get_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1f605120 iscsi_post_host_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x282b694c iscsi_lookup_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2b1602df iscsi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x30bccb33 iscsi_scan_finished EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3785e561 __tracepoint_iscsi_dbg_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x41cd2560 iscsi_recv_pdu -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x48c7e111 __traceiter_iscsi_dbg_sw_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4b4ff50b iscsi_register_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4d522e99 iscsi_alloc_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4f4b25ac iscsi_get_port_speed_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x38f699ed iscsi_find_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3927384e iscsi_conn_login_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x39ea7f27 iscsi_unregister_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3f9b29f6 iscsi_ping_comp_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x47f229ef __traceiter_iscsi_dbg_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4915e164 iscsi_register_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4b1b1405 iscsi_destroy_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4d7d1462 iscsi_session_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5231c8ed iscsi_offload_mesg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x558b3c3f iscsi_destroy_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x57d0f993 iscsi_destroy_all_flashnode EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x584a31ab __SCK__tp_func_iscsi_dbg_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x591b97de iscsi_unblock_session EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5bfaa2c3 __tracepoint_iscsi_dbg_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5d92bdba iscsi_destroy_all_flashnode -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5f37383c iscsi_create_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x66811e9d iscsi_create_flashnode_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x66f9a5d0 iscsi_destroy_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x681c6806 iscsi_flashnode_bus_match EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x699fe53e iscsi_get_discovery_parent_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6b2578bc iscsi_block_scsi_eh EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x71b768b0 __SCK__tp_func_iscsi_dbg_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x753e9b56 iscsi_get_port_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7774e45e iscsi_put_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x78ae68fc __traceiter_iscsi_dbg_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x79e28ed6 iscsi_create_iface -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7d7fa769 iscsi_find_flashnode_conn EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x84a005f1 iscsi_get_router_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8523e5cd 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 0x8f27c44b iscsi_free_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x92984ae1 iscsi_create_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x97c2c2a1 iscsi_post_host_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9a728ce8 iscsi_offload_mesg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9a950790 iscsi_lookup_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9b8519b1 iscsi_block_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa03771ba iscsi_ping_comp_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa77be665 iscsi_destroy_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa7df2690 iscsi_remove_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8aa96337 iscsi_create_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x92b7e317 iscsi_put_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9883bbd6 iscsi_session_chkready +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x989c98ae iscsi_get_port_speed_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9cbf6585 iscsi_alloc_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9d4af078 iscsi_find_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9e9024ca iscsi_dbg_trace +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa4edbe5e iscsi_create_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa8339802 iscsi_create_endpoint 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 0xb6a23812 iscsi_host_for_each_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xabbaa9fd iscsi_remove_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb254c209 iscsi_recv_pdu +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb841e80f iscsi_put_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbadc0f8a __traceiter_iscsi_dbg_sw_tcp EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc071179 iscsi_get_ipaddress_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd45aaa31 iscsi_unregister_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc74352cd __traceiter_iscsi_dbg_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc86677b5 iscsi_free_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xcb398c69 iscsi_host_for_each_session EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd4e55f1e __tracepoint_iscsi_dbg_sw_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdbea144a iscsi_create_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdd287a0d iscsi_get_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xde48790f iscsi_conn_error_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xde7fc876 iscsi_session_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe4085396 iscsi_session_chkready +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd82b573e iscsi_get_port_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xde21f351 __traceiter_iscsi_dbg_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe06acb24 iscsi_create_flashnode_sess EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe4c79fa6 __SCK__tp_func_iscsi_dbg_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xebbf4c96 iscsi_is_session_online -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xeeddb2cf iscsi_destroy_iface -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x052a14c4 sas_is_tlr_enabled -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x536a8117 sas_enable_tlr -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x601c7d0a sas_disable_tlr -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xe7a59e05 sas_tlr_supported -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x0454d5e2 spi_populate_tag_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xecbc5f0a iscsi_conn_error_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf30c25c8 iscsi_is_session_online +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf77e44cf iscsi_destroy_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfbbbb768 iscsi_block_scsi_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfdf79eed __traceiter_iscsi_dbg_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x3fe34e56 sas_is_tlr_enabled +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x516d0b51 sas_enable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x8944cdab sas_disable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x9954c340 sas_tlr_supported EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x0ef06974 spi_populate_ppr_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x4e5fbc65 spi_populate_tag_msg EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xa0c71dac spi_populate_sync_msg EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xcffa2aff spi_populate_width_msg -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x11d5d548 ufshcd_dme_configure_adapt -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x1eb68ead ufshcd_dme_get_attr -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x2a083ac9 ufshcd_dme_set_attr -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x38f53487 ufshcd_hba_stop -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x4fe72ca4 ufshcd_link_recovery -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x5107c4fd ufshcd_suspend_prepare -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x533cef8b ufshcd_init -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x55797e2a ufshcd_auto_hibern8_update -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x61345949 ufshcd_make_hba_operational -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x6eafe226 ufshcd_dump_regs +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x1df44e79 ufshcd_resume_complete +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x2530360b ufshcd_remove +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x28f50e4f ufshcd_dealloc_host +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x3a15d885 ufshcd_update_evt_hist +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x3b21c7b0 ufshcd_auto_hibern8_update +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x44778424 ufshcd_dump_regs +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x470294d4 ufshcd_dme_get_attr +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x4ca472f7 ufshcd_release +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x4dc53c81 ufshcd_dme_set_attr +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x4ef712f6 ufshcd_uic_hibern8_exit +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x4fc2ff7a ufshcd_dme_configure_adapt EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x723b1abf ufshcd_delay_us -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x74c924de ufshcd_resume_complete -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x7fbb309a ufshcd_hba_enable -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x8d062d1e ufshcd_dealloc_host -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x8f28c7f6 ufshcd_fixup_dev_quirks -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x962c6b12 ufshcd_uic_hibern8_exit -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xb185834a ufshcd_config_pwr_mode -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xbcc6acd7 ufshcd_release -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xbd34a689 ufshcd_hold -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xc5089d88 ufshcd_update_evt_hist -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xe613cbb8 ufshcd_remove +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x745fffd4 ufshcd_make_hba_operational +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x8466eee0 ufshcd_config_pwr_mode +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x863467fd ufshcd_init +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x87d00ce7 ufshcd_hba_enable +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x967131b1 ufshcd_hba_stop +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xa276d483 ufshcd_suspend_prepare +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xa642503e ufshcd_link_recovery +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xf41bf1f0 ufshcd_fixup_dev_quirks +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xfb21517f ufshcd_hold +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x08ad71c1 ufshcd_pltfrm_init EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x54c946de ufshcd_init_pwr_dev_param -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xa29cc11c ufshcd_pltfrm_shutdown -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xebb2bbeb ufshcd_pltfrm_init +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x8d4133b1 ufshcd_pltfrm_shutdown EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xff85cd6b ufshcd_get_pwr_dev_param -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x17a95fdb siox_master_alloc -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x984e990e siox_device_connected -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xc0e344ad siox_master_register -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xc8b26556 siox_master_unregister -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xce13d92c siox_device_synced -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xeb7312fc __siox_driver_register -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x09cbfc33 slim_stream_disable -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x2114f320 of_slim_get_device -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x3550c9c1 slim_register_controller -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x3616f490 slim_readb -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x457b6847 slim_xfer_msg -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x46188f15 slim_get_device -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x46d21249 slim_writeb -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x558cfb37 slim_alloc_txn_tid -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x66d1ea0c slim_read -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x706d3c13 slim_stream_prepare -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x75f96b01 slim_driver_unregister -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x863cef85 slim_ctrl_clk_pause -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x897e0606 slim_stream_allocate -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x8ad6aec4 slim_free_txn_tid -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x8e8e9c09 slim_device_report_present -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x8fe1d5f3 slim_get_logical_addr -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x9576d7e5 slim_stream_free -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xa0a5d891 slim_stream_enable -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xa2140531 slimbus_bus -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xadd157eb slim_write -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xbcc6cc29 slim_msg_response -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xbfed2bef slim_report_absent -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xc329abfb slim_unregister_controller -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xda953eab slim_stream_unprepare -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xf119f4c6 __slim_driver_register -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xf42a2c1d slim_do_transfer -EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x60024a34 sdw_unregister_driver -EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0xe3279a61 __sdw_register_driver -EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0xf02859e7 sdw_bus_type -EXPORT_SYMBOL_GPL drivers/spi/spi-altera-core 0x6cfe0c0e altera_spi_init_master +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x08710f28 siox_master_alloc +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x0b09689b siox_master_register +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x12c9829b __siox_driver_register +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x2ca7b315 siox_device_synced +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x5538cac8 siox_device_connected +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x61471ebf siox_master_unregister +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x03e0e90d slim_register_controller +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x0dc4242f slim_do_transfer +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x111ad325 slim_get_device +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x12612b86 slim_stream_prepare +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x1d007685 slim_unregister_controller +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x22134f90 slim_readb +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x2ed3bda8 slim_stream_enable +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x350d631f slim_write +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x38b7b5cf slim_ctrl_clk_pause +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x477e4755 slim_stream_unprepare +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x5169f122 slim_report_absent +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x58cbb2a2 slim_writeb +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x63827a3c slim_alloc_txn_tid +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x66c3bd99 slim_free_txn_tid +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x6795b942 slim_driver_unregister +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x73a07a80 of_slim_get_device +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x74bba76c slim_stream_disable +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x7c5583a9 __slim_driver_register +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x9788f7a7 slim_xfer_msg +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xa9f25e43 slimbus_bus +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xbe508268 slim_msg_response +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xce02f65f slim_stream_free +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xd6d11daf slim_stream_allocate +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xdc8159a8 slim_device_report_present +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xeb546a51 slim_get_logical_addr +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xf412922a slim_read +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x1a0fba2e sdw_bus_type +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x1a8d4f0e __sdw_register_driver +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0xe34e0f0d sdw_unregister_driver +EXPORT_SYMBOL_GPL drivers/spi/spi-altera-core 0x19945423 altera_spi_init_master EXPORT_SYMBOL_GPL drivers/spi/spi-altera-core 0xb9edd149 altera_spi_irq -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x2b6b4e00 spi_bitbang_start -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x5a96f6dc spi_bitbang_init -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x69f75285 spi_bitbang_stop -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x87997e79 spi_bitbang_cleanup -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x896cd997 spi_bitbang_setup -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x972c2eae spi_bitbang_setup_transfer -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x0a3ec260 dw_spi_dma_setup_mfld -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x1170c9d7 dw_spi_remove_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x22008b2f dw_spi_resume_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x35550f4a dw_spi_dma_setup_generic -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x36425bbb dw_spi_check_status -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x3c043597 dw_spi_suspend_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x47f42863 dw_spi_set_cs -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x5fb5a50a dw_spi_update_config -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xdde0f65e dw_spi_add_host -EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x175c533f spi_test_run_tests -EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x68e0dea7 spi_test_run_test -EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x739dae3f spi_test_execute_msg -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x00c8996c spmi_controller_add -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x1267cdbd spmi_controller_alloc -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x15c464e3 __spmi_driver_register -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x1eec901b spmi_command_sleep -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x29e64023 spmi_device_alloc -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x41b17fdc spmi_ext_register_readl -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x4b1004d1 spmi_device_add -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x667fa4e4 spmi_device_remove -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x67439f0d spmi_ext_register_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x6fe75eaf spmi_controller_remove -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x7165d116 spmi_ext_register_writel -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x914ef75b spmi_ext_register_read -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x9c8f418e spmi_register_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x9d2b7763 spmi_command_wakeup -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xa1281a21 spmi_register_read -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xb681298b spmi_command_shutdown -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xe83dfd60 spmi_register_zero_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xf084f21e spmi_command_reset -EXPORT_SYMBOL_GPL drivers/ssb/ssb 0x43b5ec16 ssb_pmu_spuravoid_pllupdate -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x1ab14579 anybuss_start_init -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x2936ec87 anybuss_client_driver_unregister -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x46ff802e anybuss_write_input -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x51c1010d anybuss_send_ext -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x60ee69b3 anybuss_read_output -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x69448341 anybuss_recv_msg -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x72c5344b anybuss_set_power -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x74be6c11 anybuss_client_driver_register -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x88f0f040 anybuss_finish_init -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x9f4b3067 devm_anybuss_host_common_probe -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xab6ea2b3 anybuss_host_common_probe -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xe89b4894 anybuss_send_msg +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x23ccd287 spi_bitbang_init +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x44629a17 spi_bitbang_setup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x931b55d8 spi_bitbang_setup_transfer +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xb981d16e spi_bitbang_stop +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xc1171bea spi_bitbang_start +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xee7386f6 spi_bitbang_cleanup +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x2f1e3a89 dw_spi_dma_setup_mfld +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x353ae05b dw_spi_remove_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x39c65248 dw_spi_dma_setup_generic +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x5b27306c dw_spi_update_config +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x5cd97cb7 dw_spi_set_cs +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x8e411b64 dw_spi_suspend_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xa3511d1e dw_spi_resume_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xd3b22231 dw_spi_check_status +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xdc6afd84 dw_spi_add_host +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x695011f0 spi_test_run_tests +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x8a137617 spi_test_execute_msg +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0xdddbbd78 spi_test_run_test +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x15c74fdc spmi_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x1a359d5e spmi_command_wakeup +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x1b52c91c spmi_controller_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x22981bab spmi_ext_register_readl +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x35078240 spmi_register_zero_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x42b26665 spmi_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x515ab3a1 spmi_command_shutdown +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x55c2ac73 spmi_ext_register_writel +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x5fdadf0e spmi_device_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x66d94ca7 spmi_controller_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x6a2a0536 spmi_command_sleep +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x7d3ff52b __spmi_driver_register +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x843ec882 spmi_ext_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x871b051f spmi_device_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xca9e3d86 spmi_controller_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xe2cc8e47 spmi_command_reset +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xe85ddfb8 spmi_ext_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xf5a7d36a spmi_device_add +EXPORT_SYMBOL_GPL drivers/ssb/ssb 0x8a708e3b ssb_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x15a7cbb9 anybuss_write_input +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x22a72fb8 anybuss_read_fbctrl +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x3895496f anybuss_send_msg +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x3f1ff8e6 devm_anybuss_host_common_probe +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x4655a77a anybuss_host_common_probe +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x784bf75e anybuss_send_ext +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x97f7e463 anybuss_start_init +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xa6bcf993 anybuss_set_power +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xab5bfa7f anybuss_recv_msg +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xb6aad7b9 anybuss_finish_init +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xd19fe383 anybuss_client_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xd22acea2 anybuss_read_output +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xfbc69871 anybuss_client_driver_register EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xfce879ad anybuss_host_common_remove -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xff973270 anybuss_read_fbctrl -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x00d2cf43 fieldbus_dev_register -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x1b849cf3 fieldbus_dev_unregister -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x2caf4c33 fieldbus_dev_area_updated -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0xd23fb3b1 fieldbus_dev_online_changed -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x020a3371 gb_audio_apbridgea_unregister_cport -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x16fd5977 gb_audio_apbridgea_start_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x20e81235 gb_audio_apbridgea_prepare_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x2764e146 gb_audio_apbridgea_shutdown_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x57961eaa gb_audio_apbridgea_start_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x76023b29 gb_audio_apbridgea_set_rx_data_size -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x7847d4e9 gb_audio_apbridgea_stop_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x7b89f0ca gb_audio_apbridgea_set_config -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x9fb59459 gb_audio_apbridgea_set_tx_data_size -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xb7aa005d gb_audio_apbridgea_stop_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xcdc3cf3b gb_audio_apbridgea_register_cport -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xe88935f2 gb_audio_apbridgea_shutdown_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xef05c681 gb_audio_apbridgea_prepare_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x146e108c gb_audio_gb_get_pcm -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x2e606704 gb_audio_gb_enable_widget -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x3ebcd629 gb_audio_gb_set_tx_data_size -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x82875024 gb_audio_gb_set_rx_data_size -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x90df0f45 gb_audio_gb_deactivate_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x974f1b69 gb_audio_gb_get_topology -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x9a9fbba7 gb_audio_gb_get_control -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x9e5cdfb2 gb_audio_gb_disable_widget -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xb9471c31 gb_audio_gb_deactivate_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xcd2bc3c6 gb_audio_gb_activate_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xcdd87275 gb_audio_gb_set_control -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xd38b251c gb_audio_gb_set_pcm -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xe4b3d0b2 gb_audio_gb_activate_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x1455e7ff gb_audio_manager_put_module +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x2580420f fieldbus_dev_register +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x6522e164 fieldbus_dev_online_changed +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0xba6ac0aa fieldbus_dev_area_updated +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0xbfa49d03 fieldbus_dev_unregister +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x04f111d0 gb_audio_apbridgea_set_rx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x0943b876 gb_audio_apbridgea_set_tx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x29fff06c gb_audio_apbridgea_stop_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x7a5b4761 gb_audio_apbridgea_shutdown_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x7ee34bfe gb_audio_apbridgea_prepare_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x8a0038d8 gb_audio_apbridgea_stop_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xa0ab4bdb gb_audio_apbridgea_start_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xabbd8170 gb_audio_apbridgea_unregister_cport +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xd4fbde87 gb_audio_apbridgea_set_config +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xd9a48fd5 gb_audio_apbridgea_shutdown_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xdd1c834a gb_audio_apbridgea_prepare_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xe3bd06df gb_audio_apbridgea_register_cport +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xf7b85931 gb_audio_apbridgea_start_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x02855be9 gb_audio_gb_set_pcm +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x085f99d3 gb_audio_gb_deactivate_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x51c1c566 gb_audio_gb_set_control +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x53589691 gb_audio_gb_activate_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x5d906b67 gb_audio_gb_get_topology +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x6f6a87d4 gb_audio_gb_enable_widget +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x8581e039 gb_audio_gb_set_rx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xa3f5774b gb_audio_gb_disable_widget +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xa97691bb gb_audio_gb_deactivate_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xadea0e89 gb_audio_gb_set_tx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xe10091ba gb_audio_gb_get_pcm +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xe7732b34 gb_audio_gb_get_control +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xf2719ef9 gb_audio_gb_activate_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 0x211a644e gb_audio_manager_get_module +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x247334ab 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 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 0x9aa7cc76 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 0x1df6bcf5 gb_gbphy_deregister_driver -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0x795e7493 gb_gbphy_register_driver -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0x74dbc194 gb_spilib_master_init -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0xc97eecb6 gb_spilib_master_exit -EXPORT_SYMBOL_GPL drivers/staging/iio/addac/adt7316 0x5739a4a6 adt7316_pm_ops -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x35257897 target_submit_prep -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x6919f823 target_queue_submission -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x79d0bed1 target_submit -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xad79af1d target_init_cmd +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0x1b69005d gb_gbphy_deregister_driver +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0xc1d485aa gb_gbphy_register_driver +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0x1c46c239 gb_spilib_master_init +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0xdb131c65 gb_spilib_master_exit +EXPORT_SYMBOL_GPL drivers/staging/iio/addac/adt7316 0x7c80725b adt7316_pm_ops +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x20535e84 target_queue_submission +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x26ada8b6 target_submit +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x790f8feb target_init_cmd +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xe3c15481 target_submit_prep EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x01d23ee1 tb_property_create_dir -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x05d3bf78 tb_unregister_service_driver -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x09cc0819 tb_register_service_driver -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x15a62bf2 tb_xdomain_release_out_hopid -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x23f0bc68 tb_ring_start -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x35cefa84 tb_xdomain_disable_paths -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x362df284 __tb_ring_enqueue +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x07bf3df2 tb_xdomain_enable_paths +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x1d1bd999 tb_xdomain_release_in_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x1fa84f87 tb_ring_free +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x2163f97a tb_ring_alloc_rx +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x22a4f3d4 tb_xdomain_lane_bonding_enable +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x249c1428 tb_xdomain_alloc_in_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x2f5be244 tb_xdomain_alloc_out_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x32b1094c tb_xdomain_find_by_uuid EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x393b4f2f tb_property_free_dir +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x3a76e7a1 tb_xdomain_find_by_route +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x462341a2 tb_unregister_service_driver 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 0x4e729d86 tb_xdomain_response +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x55af6c56 tb_xdomain_type EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x603249ed tb_unregister_property_dir EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x658e3d97 tb_property_add_immediate -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x66bdb8d9 tb_ring_alloc_tx -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x6e82b075 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 0x7f7dc735 tb_xdomain_find_by_uuid -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x80dd5a40 tb_service_type -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x8870f1ca tb_xdomain_release_in_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x7a1ffc62 tb_register_service_driver EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x8b62f95e tb_property_add_dir -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x9f62c972 tb_xdomain_alloc_in_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x9304e693 tb_xdomain_release_out_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xa28890ba tb_ring_stop EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xa3d2b403 tb_property_add_data -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xa60a5b48 tb_ring_free -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xaf8d2a0b tb_ring_stop -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xb4e4a329 tb_ring_poll_complete -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xb6a22a7d tb_xdomain_request +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xae5ede9f tb_ring_poll EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xb7c7cdce tb_property_add_text -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xd00b0274 tb_xdomain_alloc_out_hopid -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xd35415c2 tb_ring_poll -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xd77d88ae tb_xdomain_find_by_route -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xdde13d9a tb_xdomain_enable_paths -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xe45b37d2 tb_xdomain_response -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xec521151 tb_ring_alloc_rx -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xecc2ba91 tb_xdomain_lane_bonding_enable +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xba6a48ab tb_ring_alloc_tx +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xbbf08663 tb_service_type +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xc885861c tb_xdomain_disable_paths +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xccd09f8f tb_xdomain_lane_bonding_disable +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xd399be61 tb_ring_start +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xe8022748 tb_ring_poll_complete +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xeecc7d71 __tb_ring_enqueue EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xf1cfd1ff tb_register_property_dir EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xf76028c7 tb_unregister_protocol_handler -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xf7a2be69 tb_xdomain_lane_bonding_disable -EXPORT_SYMBOL_GPL drivers/uio/uio 0x0a2ae77e uio_event_notify -EXPORT_SYMBOL_GPL drivers/uio/uio 0x17911741 uio_unregister_device -EXPORT_SYMBOL_GPL drivers/uio/uio 0x829ec339 __devm_uio_register_device -EXPORT_SYMBOL_GPL drivers/uio/uio 0xbd23cf42 __uio_register_device -EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x1bd1845d usbatm_usb_probe -EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x9203f112 usbatm_usb_disconnect -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x077f21da cdns_drd_gadget_on -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x1070af70 cdns_init -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x37f4c73b cdns_clear_vbus -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x55464714 cdns_set_vbus -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x7c8e73e7 cdns_drd_gadget_off -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x9fd2d4c5 cdns_resume -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xa4e907bc cdns_suspend -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xcf46e7de cdns_remove -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xdf6f9a08 cdns_power_is_lost -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x6d83ee17 ci_hdrc_remove_device -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x714cfb31 hw_phymode_configure -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xa5b5cd6e ci_hdrc_query_available_role -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xb93a6703 ci_hdrc_add_device -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x1ee29b50 imx_usbmisc_init -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x34a79324 imx_usbmisc_hsic_set_connect -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x7100f3c9 imx_usbmisc_charger_detection -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xb9b139f1 imx_usbmisc_set_wakeup -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xc04a98bf imx_usbmisc_init_post -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xe857d563 imx_usbmisc_hsic_set_clk -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x3aceb868 ulpi_unregister_interface -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x5fb8ef2b ulpi_unregister_driver -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x9716225e ulpi_write -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xb3b01e8c ulpi_read -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xdc12bd9a __ulpi_register_driver -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xdea87f48 ulpi_register_interface -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x2eeafa07 u_audio_get_volume -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x321fe4bc u_audio_start_capture -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x587017c9 g_audio_setup -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x704f3426 g_audio_cleanup -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x73aab760 u_audio_stop_playback -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x825bccfb u_audio_get_mute -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x9f807cd7 u_audio_set_volume -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xaff72520 u_audio_start_playback -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xb9806b92 u_audio_stop_capture -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xc6b79a85 u_audio_set_mute -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x11e2cb52 gether_get_host_addr_cdc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x1d342395 gether_get_dev_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x4d2813bd gether_set_gadget -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x5d2b87e1 gether_get_host_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x682ac210 gether_setup_name -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x78e59930 gether_set_host_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x852293e4 gether_set_dev_addr +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xfd861cf1 tb_xdomain_request +EXPORT_SYMBOL_GPL drivers/uio/uio 0x0a9a1930 __uio_register_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0x39c17043 uio_unregister_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0xb71c0aa6 uio_event_notify +EXPORT_SYMBOL_GPL drivers/uio/uio 0xd32879c8 __devm_uio_register_device +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x19dd4cd0 usbatm_usb_probe +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x2541a6c3 usbatm_usb_disconnect +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x21ab18fb cdns_drd_gadget_off +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x4646bc94 cdns_init +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x49c5eb73 cdns_drd_gadget_on +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x6f728307 cdns_remove +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x945dcf99 cdns_suspend +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x9d9fb0be cdns_resume +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xb4dbdc57 cdns_set_vbus +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xf44dcc00 cdns_clear_vbus +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xf978be7a cdns_power_is_lost +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x17c852e8 hw_phymode_configure +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x500e39e8 ci_hdrc_query_available_role +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xc901d84f ci_hdrc_remove_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xca0f8943 ci_hdrc_add_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x0640122c imx_usbmisc_init +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x1afea3bf imx_usbmisc_hsic_set_clk +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x2b31d0dc imx_usbmisc_charger_detection +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x62a450da imx_usbmisc_hsic_set_connect +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x9886c81b imx_usbmisc_set_wakeup +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xe1051aca imx_usbmisc_init_post +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x238e192e ulpi_register_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x39833dd4 ulpi_write +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x5a257802 ulpi_read +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xa8c3d402 ulpi_unregister_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xcdabaa22 ulpi_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xefe1094a __ulpi_register_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x08226cdb u_audio_get_volume +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x09de98df u_audio_stop_capture +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x0d4256bc u_audio_stop_playback +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x10b4fde8 u_audio_start_capture +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x403c97c8 g_audio_cleanup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x4d48a461 u_audio_set_volume +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x8b707ed2 g_audio_setup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xa690f9d7 u_audio_get_mute +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xb5e699d6 u_audio_start_playback +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xfb9bcc20 u_audio_set_mute +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x038b9f51 gether_get_ifname +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x202d8fe1 gether_set_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x282614b0 gether_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x46ac8d68 gether_set_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x4c8ce923 gether_setup_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x62656958 gether_set_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x6bcc2d0f gether_get_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x7acafb96 gether_set_ifname EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8878cfa6 gether_cleanup -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x9a6bdee8 gether_get_qmult -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xa5391dff gether_get_host_addr_u8 -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xa7f9b43c gether_set_qmult -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xb5ccf486 gether_register_netdev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xbbf341e3 gether_get_ifname -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xc06dddf3 gether_set_ifname -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xc2d194c4 gether_setup_name_default -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xe7984e46 gether_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xeb982273 gether_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x0c542250 gserial_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x88edc60c gether_register_netdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8b6c8bc4 gether_get_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xa4f0e222 gether_setup_name_default +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xc2980c85 gether_get_host_addr_u8 +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xcec1ecd2 gether_set_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xd7b97ec6 gether_get_host_addr_cdc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xe070f7b4 gether_get_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xf7b53ca7 gether_disconnect EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x33bfdca2 gserial_alloc_line EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x4a3df9d0 gs_alloc_req EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x60db48f5 gserial_get_console EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x60ea48a0 gs_free_req -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x91c8223a gserial_suspend -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x990cba3e gserial_resume +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x72db2465 gserial_suspend +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x993a8aa4 gserial_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xae80f2ac 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 0xe0d480cd 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 0xf1452dad gserial_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x0f21e017 ffs_single_dev EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x1f1383f6 ffs_lock -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x5a3501e2 ffs_name_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x9280d7b4 ffs_single_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x107b5a84 fsg_lun_fsync_sub -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x12328947 fsg_show_file +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x73a6360a ffs_name_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x000627b8 fsg_lun_open EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x141fce2a fsg_common_remove_luns EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1710b539 fsg_fs_bulk_out_desc EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1ccb58f7 fsg_common_set_num_buffers -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x24a5ec82 fsg_store_cdrom -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x28d429c4 fsg_common_set_cdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1d58d76a fsg_show_inquiry_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x203b321c fsg_store_file EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2933ee1d fsg_ss_bulk_in_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2dcc9240 fsg_show_cdrom EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x398778e1 fsg_ss_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x3ae7a919 fsg_lun_fsync_sub 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 0x3dc625eb 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 0x46ec0b25 fsg_store_nofua +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x4a4935bd fsg_show_removable 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 0x58cdfdcd fsg_show_ro +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x5ad46795 fsg_store_ro +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x5e688ca4 fsg_show_ro +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x5fca466a fsg_lun_close +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x61d1e78b 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 0x73ac74be 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 0x8165b0dc fsg_show_removable -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x81b76ea7 fsg_common_remove_lun -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x81d4028f 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 0x8e382b20 fsg_store_file -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x90736c8e fsg_show_inquiry_string -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x9118044d fsg_show_cdrom +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x87ba00a0 fsg_store_nofua EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x95cffb3e fsg_hs_bulk_in_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x97fe3d0d fsg_store_removable +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x965b1bc6 fsg_common_remove_lun EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x9a0221c7 fsg_common_free_buffers +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x9a4a260e fsg_store_cdrom +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa5c6d412 fsg_store_removable EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa5cae92f fsg_ss_bulk_out_comp_desc EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa5f99b69 fsg_fs_function EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xab6c68ac fsg_config_from_params EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb3adf38d store_cdrom_address EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 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 0xc6063b80 fsg_store_inquiry_string 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 0xdeb161f9 fsg_store_ro -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xe44458c3 fsg_show_nofua +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf1d92566 fsg_common_set_cdev EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf4efc0c8 fsg_ss_bulk_out_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xfe49ea6d fsg_store_inquiry_string -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x01027ab4 rndis_borrow_net -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x11ac0147 rndis_free_response -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x60d8f322 rndis_set_param_vendor -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x75cf9817 rndis_deregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x77bf8e5d rndis_add_hdr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x7cbfbd59 rndis_rm_hdr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x9c1862cf rndis_signal_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x9d7923ee rndis_uninit -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xa82bb76f rndis_msg_parser -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xab009590 rndis_set_host_mac -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xc833d5c1 rndis_register -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xc9841e9b rndis_set_param_medium -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xe80b10fb rndis_signal_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xf10c424c rndis_set_param_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xf6ad8944 rndis_get_next_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x09fbf130 rndis_set_param_medium +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x20ea1a7c rndis_free_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x20f684d9 rndis_add_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x5d337e2e rndis_set_host_mac +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x69dd5247 rndis_borrow_net +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x6f737798 rndis_signal_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x80ce3594 rndis_rm_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x8d25e2ad rndis_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x93915a36 rndis_signal_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xa1b1127d rndis_msg_parser +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xa86157d1 rndis_deregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xaca80304 rndis_get_next_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xd1fd8e2c rndis_uninit +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xd8a7521f rndis_set_param_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xe6eb1745 rndis_set_param_vendor +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0ae3ed33 usb_remove_function EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0c589aba usb_validate_langid EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0cb7e477 usb_ep_autoconfig_release -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x14badd7d usb_add_config -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x171ced60 usb_get_function_instance -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x1752c559 usb_remove_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x1bd7b5e0 usb_composite_overwrite_options -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x1d0d7c64 usb_function_register -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x1df3fa89 usb_add_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x22a43cdb usb_get_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x13802461 usb_function_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x1c4d33a2 usb_add_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x28ba0113 usb_composite_overwrite_options +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2bc4a02c usb_string_ids_tab EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2e09263f usb_copy_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2e5bb493 usb_otg_descriptor_alloc -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x34c7297d usb_composite_probe -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3afe4e83 usb_ep_autoconfig -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3e7a82b5 usb_function_activate -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3fb25e7c usb_ep_autoconfig_ss -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x44f3bc18 usb_composite_setup_continue -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x46676cff usb_add_config_only +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x39b0fbf5 usb_string_ids_n +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4530efc8 usb_ep_autoconfig_reset EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4beb505d usb_gadget_get_string -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5023d52d usb_free_all_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x51845567 usb_otg_descriptor_init -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5a95f09e usb_string_ids_n -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x618b86c1 usb_gstrings_attach -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6653abba usb_string_ids_tab -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7a9030fe usb_put_function_instance -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7c7e4983 unregister_gadget_item -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8634dc2a usb_ep_autoconfig_reset -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x9ba337cf config_ep_by_speed_and_alt -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa1e836d9 usb_assign_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4c945a92 usb_add_config +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4ecc1201 usb_put_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5475407a usb_ep_autoconfig_ss +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x564d0f58 usb_composite_probe +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5842c66d usb_ep_autoconfig +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x59d6ce06 usb_interface_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5e055b86 config_ep_by_speed +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5e36f009 usb_otg_descriptor_init +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5e8b8c51 usb_otg_descriptor_alloc +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8ca5c324 config_ep_by_speed_and_alt +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x95025cd9 unregister_gadget_item +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa0381a7b usb_free_all_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb30bd418 usb_assign_descriptors EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb775db55 alloc_ep_req -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xbc8bd96e usb_function_deactivate -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc1845d8d usb_put_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xbf053a2b usb_function_activate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc2ff4e55 usb_function_deactivate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc55a6311 usb_add_config_only +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xce489695 usb_composite_setup_continue EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd2ea2134 usb_descriptor_fillbuf -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd34c5d02 usb_interface_id -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd5e5a4f5 usb_string_id -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xdd998c28 usb_function_unregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xdefc2564 usb_composite_unregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe88b9e0d config_ep_by_speed +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd2f866ee usb_composite_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd3ed42af usb_get_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd7724da3 usb_function_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xda13949f usb_get_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe5be7e1e usb_string_id EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf474a207 usb_gadget_config_buf -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x20ee267d udc_remove -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x2b0aa89d empty_req_queue -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x37773a67 init_dma_pools -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x44fe3b1c udc_enable_dev_setup_interrupts +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf86a53be usb_put_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xfe67db8a usb_gstrings_attach +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x506fa582 empty_req_queue EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x5d01d078 udc_irq -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x78bac83e gadget_release -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x7ef6e817 free_dma_pools -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xa5c885fd udc_mask_unused_interrupts -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xc461a719 udc_probe -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xf185d05e udc_basic_init -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x01990a75 usb_gadget_vbus_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x67638283 udc_enable_dev_setup_interrupts +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x7e4d1f58 udc_probe +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x7f917357 free_dma_pools +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x9ebe301a init_dma_pools +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xa32946eb udc_remove +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xb286f8c0 udc_mask_unused_interrupts +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xd55b0394 gadget_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xf03a4161 udc_basic_init EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x01b12bfb usb_ep_free_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x0831045e usb_gadget_frame_number +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x07f604c8 usb_gadget_check_config EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x0a8c3b4b usb_ep_set_halt EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x0acfe2e7 usb_ep_set_wedge EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x0d90d784 usb_ep_fifo_flush -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x188737d4 usb_gadget_set_selfpowered -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x2ed3bb94 usb_gadget_deactivate -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x3a1a5b88 usb_gadget_map_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x1056fac2 usb_add_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x1698c2e9 usb_gadget_ep_match_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x1a6eabd7 usb_gadget_vbus_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x2ad35ff4 usb_gadget_udc_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x2ef94295 usb_del_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x34b73cbb usb_add_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x34b8f217 usb_udc_vbus_handler +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x4831f893 usb_gadget_vbus_draw EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x49d9f030 usb_ep_fifo_status +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x4e035870 usb_add_gadget_udc_release EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x506ab3a9 usb_ep_queue EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x50b88f41 usb_get_gadget_udc_name -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x5b7c0df0 usb_add_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x5af4324c usb_del_gadget EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x5fc294ef usb_ep_clear_halt -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x6248c216 usb_udc_vbus_handler -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x643bf2be usb_gadget_unmap_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x6bae8f2c usb_gadget_map_request_by_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x767ab988 usb_gadget_probe_driver EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x7a41b9f2 usb_ep_set_maxpacket_limit EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x7be89624 usb_gadget_giveback_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x82cb14ff usb_gadget_wakeup +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x843d3924 usb_gadget_deactivate +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x84c633c8 usb_gadget_vbus_connect EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x882077d5 usb_ep_dequeue -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x8add46bc usb_gadget_udc_reset -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x8c1819c8 usb_gadget_ep_match_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x960396b5 usb_gadget_check_config +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x93ab23d0 gadget_find_ep_by_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x99369e7e usb_gadget_set_state EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x9eb52803 usb_ep_disable -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa9960dc4 usb_add_gadget_udc_release EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa9e74462 usb_ep_alloc_request EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xaf201fa6 usb_ep_enable -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xb8f268b2 usb_gadget_clear_selfpowered -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xba0179be usb_initialize_gadget -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xbb987578 usb_gadget_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xbe49d090 usb_add_gadget -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc93d96bf usb_del_gadget_udc -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xcddab4a3 usb_gadget_vbus_draw -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xd69445fc usb_gadget_unmap_request_by_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xdffb1dac usb_gadget_unregister_driver -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xe2939013 usb_gadget_activate -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xe6d63c06 usb_gadget_vbus_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xe9e292ff usb_del_gadget -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xef29d7a9 usb_gadget_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xf16ef4b9 gadget_find_ep_by_name -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xf81ecf8b usb_gadget_set_state -EXPORT_SYMBOL_GPL drivers/usb/host/xhci-pci-renesas 0x7042dd35 renesas_xhci_check_request_fw -EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x17827d8c ezusb_fx1_set_reset -EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x1fffc611 ezusb_fx1_ihex_firmware_download -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x0f247acc ftdi_elan_gone_away -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x5d7ed0c3 usb_ftdi_elan_edset_empty -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x770f90d5 usb_ftdi_elan_edset_flush -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x7cc86b8b usb_ftdi_elan_write_pcimem -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x9e49b4bf usb_ftdi_elan_read_pcimem -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x9ff7dcba usb_ftdi_elan_edset_single -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xa1e6352e usb_ftdi_elan_edset_input -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xecaf2cfe usb_ftdi_elan_edset_output -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xfeea612d usb_ftdi_elan_edset_setup +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xb1975688 usb_gadget_set_selfpowered +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xb2ebf8fe usb_gadget_wakeup +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xb3805ffe usb_gadget_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xb61ade24 usb_gadget_probe_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xb7229bb3 usb_initialize_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc08f115a usb_gadget_activate +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc49b7443 usb_gadget_unmap_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xce62f24d usb_gadget_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xd0813c1c usb_gadget_frame_number +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xd870e3cf usb_gadget_clear_selfpowered +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xe648da28 usb_gadget_map_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xeda4b5ff usb_gadget_unmap_request_by_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xf29dbd08 usb_gadget_map_request_by_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xfecaf308 usb_gadget_disconnect +EXPORT_SYMBOL_GPL drivers/usb/host/xhci-pci-renesas 0x24fe5ef1 renesas_xhci_check_request_fw +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x73500e2c ezusb_fx1_ihex_firmware_download +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0xcfa9a774 ezusb_fx1_set_reset +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x0ba9b12d usb_ftdi_elan_edset_setup +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x4847f96a usb_ftdi_elan_edset_output +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x4a6ec819 ftdi_elan_gone_away +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x57d76ab0 usb_ftdi_elan_write_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x9c783a61 usb_ftdi_elan_edset_single +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xe5cc74c8 usb_ftdi_elan_read_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xe93b0013 usb_ftdi_elan_edset_flush +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xf2f89b8c usb_ftdi_elan_edset_empty +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xfbc013a4 usb_ftdi_elan_edset_input 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 0x0ee88742 musb_interrupt EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x2734197f musb_readb -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x47306ff7 musb_root_disconnect -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x5b101afc musb_set_host +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x3b9f0f33 musb_set_host +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x5fa35215 musb_get_mode +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x61b5d71a musb_root_disconnect EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x669594ad musb_clearw EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x6af8c6dc musb_writel EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x719a5e41 musb_readw -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x885cb39f musb_get_mode +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x7432a772 musb_interrupt +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xad2dc131 musb_queue_resume_work EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xade3e56c musb_writew -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xc637bc05 musb_queue_resume_work -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xdd3a3d0d musb_set_peripheral +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xc457ac69 musb_set_peripheral EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xe59efb0e musb_clearb EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xf0f95e51 musb_readl -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x44ef2709 usb_gen_phy_init -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x6bae037b usb_gen_phy_shutdown -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x6fd30616 usb_phy_generic_register -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0xe10248f8 usb_phy_generic_unregister -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0xf4101962 usb_phy_gen_create_phy -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-isp1301 0xcf1eb029 isp1301_get_client -EXPORT_SYMBOL_GPL drivers/usb/serial/usb_wwan 0x0300ab72 usb_wwan_port_probe -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x013e46e4 usb_serial_generic_read_bulk_callback -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x187a4322 usb_serial_generic_write -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x1db1fd1c usb_serial_port_softint -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x1ec96e38 usb_serial_generic_tiocmiwait -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x22c74953 usb_serial_generic_close -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x33484510 usb_serial_claim_interface -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x34600a63 usb_serial_generic_resume -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x4c4d3683 usb_serial_generic_get_icount -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x5bbfaab7 usb_serial_generic_chars_in_buffer -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x612f4660 usb_serial_generic_open -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x862f73e5 usb_serial_register_drivers -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x865419d9 usb_serial_handle_dcd_change -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x882537bc usb_serial_generic_write_bulk_callback -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x8ed6942b usb_serial_generic_unthrottle -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xa01163c8 usb_serial_generic_write_start -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xa07d01ba usb_serial_generic_wait_until_sent -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xa99b562a usb_serial_generic_submit_read_urbs -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xd6b6d8e8 usb_serial_generic_process_read_urb -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xe4beedcd usb_serial_deregister_drivers -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xf230cf1b usb_serial_generic_throttle -EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0x17ff5b84 dp_altmode_remove -EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0x5a5e50ff dp_altmode_probe -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0x02296551 tcpci_register_port +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x120d3b8a usb_gen_phy_shutdown +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x1ce06b55 usb_phy_generic_register +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0xb2012c8c usb_phy_gen_create_phy +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0xc9e4ed7b usb_gen_phy_init +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0xda16098c usb_phy_generic_unregister +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-isp1301 0x4b1eca86 isp1301_get_client +EXPORT_SYMBOL_GPL drivers/usb/serial/usb_wwan 0xd83bc5d9 usb_wwan_port_probe +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x2328aa4f usb_serial_generic_wait_until_sent +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x26fea60d usb_serial_generic_unthrottle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x2b8d90b4 usb_serial_generic_tiocmiwait +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x3d39ea47 usb_serial_generic_submit_read_urbs +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x44041883 usb_serial_port_softint +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x47385b55 usb_serial_deregister_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x47c2a520 usb_serial_generic_process_read_urb +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x4d587328 usb_serial_generic_get_icount +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x6ea9d630 usb_serial_generic_throttle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x72c7b2a0 usb_serial_register_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x7bef2cde usb_serial_generic_write_start +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x9d1bc214 usb_serial_generic_read_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xa9c6b1e8 usb_serial_generic_close +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xb1b7c4b5 usb_serial_generic_open +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xb54e800f usb_serial_generic_chars_in_buffer +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xc5955f7c usb_serial_handle_dcd_change +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xc71a7fec usb_serial_generic_write +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xca3ee482 usb_serial_generic_write_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xe3b2e6d0 usb_serial_generic_resume +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xf89dc1a3 usb_serial_claim_interface +EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0x42842020 dp_altmode_probe +EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0xe21562f4 dp_altmode_remove EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0x6f497a3c tcpci_irq +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0x98c74d78 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 0x38543c84 tcpm_register_port EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x3b84657b tcpm_pd_transmit_complete EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x76eeda4b tcpm_unregister_port EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x9e0bd753 tcpm_pd_hard_reset EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 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 0xd61260d5 tcpm_register_port EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xea220941 tcpm_tcpc_reset EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xeb779665 tcpm_sourcing_vbus -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x01a9e1e2 fwnode_typec_mux_get -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x02af3b9f typec_altmode2port -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x044810b5 typec_altmode_put_plug -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x0898e705 typec_register_cable -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x0fb67890 typec_mux_get_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x12ebba67 typec_switch_unregister -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x1897e111 typec_set_orientation -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x1a2cd6f3 typec_set_mode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x1bfc481f typec_set_pwr_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x1c954865 typec_set_pwr_opmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x1dc32560 typec_partner_set_pd_revision -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x243eee1b typec_mux_unregister -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x29c49584 typec_altmode_exit -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2c7277c1 __typec_altmode_register_driver +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x02749dcd typec_partner_set_identity +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x0556a1f3 typec_get_negotiated_svdm_version +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x0a0d2744 typec_switch_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x0ba7661f typec_partner_set_pd_revision +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x0bb0c2ec typec_cable_set_identity +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x0de8fadb typec_set_vconn_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x1f95c1dd typec_altmode_put_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x20336a67 typec_altmode_notify +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2a8af24c typec_set_mode EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2d1e301d typec_find_power_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x3196ae43 typec_switch_register -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x3297c9ee typec_mux_put -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x37a72e91 typec_register_partner -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x462edbf2 typec_unlink_port -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x4d0ba768 typec_plug_register_altmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x4f58d1ab typec_cable_put -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x561454e7 typec_partner_set_num_altmodes -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x57c14ebf typec_link_port -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5d7f25b3 typec_unregister_port -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x62932e36 typec_unregister_altmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x66bb7594 typec_cable_set_identity -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6805fa7d typec_altmode_update_active -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x68260fba typec_mux_set -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6ba1c033 typec_switch_put -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x89170582 typec_partner_set_identity -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x8a53aa70 fwnode_typec_switch_get +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2d913092 typec_mux_set +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2f06479e typec_port_register_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x30cad894 fwnode_typec_switch_get +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x315f06a2 typec_partner_register_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x363c27c8 typec_register_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x3a3931cd typec_unregister_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x3bd512b4 typec_altmode2port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x43ce4f44 typec_set_pwr_opmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x441e6b34 typec_port_register_altmodes +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x44326e30 typec_unregister_partner +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x44b02fc0 typec_altmode_vdm +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x44b4bbb3 typec_match_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x4582edec typec_mux_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x49436177 typec_altmode_get_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5a773e4a typec_cable_get +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x612838b8 typec_mux_put +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x62b88d85 typec_altmode_update_active +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x65581914 typec_cable_put +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6c080d53 fwnode_typec_mux_get +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6df0608b typec_switch_register +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x735a6bb9 typec_switch_put +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7608702e typec_mux_register +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x79b2c020 typec_altmode_exit +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7b48b484 typec_get_orientation +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x85aa6700 typec_altmode_get_partner +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x899add21 typec_altmode_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x8ff5b5da typec_set_orientation EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9049491e typec_find_port_data_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x913ebd01 typec_altmode_notify -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x934df1b0 typec_match_altmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x95eb65a7 typec_altmode_get_plug -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x96672617 typec_altmode_vdm -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9826eef1 typec_get_negotiated_svdm_version -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x991477c7 typec_plug_set_num_altmodes -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa01a45b1 typec_partner_set_svdm_version +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x918995b6 typec_set_data_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x92310607 typec_unlink_port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x959453e0 typec_altmode_attention EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa254de98 typec_find_orientation -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb0a7c36b typec_set_vconn_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb0d86d1d typec_switch_set_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xbc991df2 typec_mux_register -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xbee6586f typec_mux_set_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc1173314 typec_get_orientation -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc1322ba2 typec_altmode_enter -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc6674092 typec_altmode_get_partner -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc9a0ecaf typec_register_port -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xcac6e066 typec_switch_get_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xcc1dbe24 typec_partner_register_altmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd35c509d typec_unregister_partner -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd47060b4 typec_cable_is_active -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd7706d90 typec_port_register_altmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xde6595f3 typec_register_plug -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xdeca7b13 typec_altmode_unregister_driver -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xdf77ccfb typec_set_data_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe230ef52 typec_unregister_plug -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe49176c7 typec_port_register_altmodes -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe74ff5ea typec_switch_set +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa2d61e72 typec_register_cable +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa98538cb typec_partner_set_svdm_version +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb37423c9 typec_register_partner +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb4118a26 typec_set_pwr_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb867f5ba typec_link_port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xba65ff4d typec_plug_register_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xbea83783 typec_cable_is_active +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xbeaa894e typec_register_port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xcdd5ac2b typec_switch_set_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd3f74a2a typec_mux_set_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd4c1e40d typec_unregister_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd6d97f14 typec_unregister_cable +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd97d985a typec_unregister_port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xda993d9a typec_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xdbde7da2 typec_switch_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe094604c typec_partner_set_num_altmodes +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe231b093 typec_altmode_enter EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xeafc1eb8 typec_find_port_power_role EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf1234a8b typec_find_pwr_opmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf2f6b6b0 typec_get_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf9e6cc8c typec_altmode_attention -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xfad9092d typec_unregister_cable -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xfc8efcb4 typec_cable_get -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x0db19ffb ucsi_send_command -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x1b9d80ea ucsi_create -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x465af50a ucsi_connector_change -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x70f48acc ucsi_get_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x9cf2ca6b ucsi_unregister -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xa2d004f7 ucsi_destroy -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xd71d2a41 ucsi_register -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xdc149383 ucsi_set_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xe90f5a14 ucsi_resume -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x10cd7ae8 dev_attr_usbip_debug -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x31bdad23 usbip_stop_eh -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x432907f1 usbip_start_eh -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x4803c88d usbip_in_eh -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x6eb6e496 usbip_pad_iso -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x75cfecbd usbip_dump_urb +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf20975d6 typec_mux_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf3b02e17 typec_switch_set +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xfb0c0a7b typec_plug_set_num_altmodes +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xfcabc606 __typec_altmode_register_driver +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x561c3e88 ucsi_send_command +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x5ef9f9e6 ucsi_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x73a50861 ucsi_create +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xb5fa8b25 ucsi_resume +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xc044154a ucsi_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xc5e10b84 ucsi_register +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xce0be5f3 ucsi_connector_change +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xed52edc2 ucsi_set_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xf686699c ucsi_destroy +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x0161f36d usbip_recv_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x207a4420 usbip_dump_urb +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x3e5b5fb1 usbip_recv +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x5ae1b251 usbip_in_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x7681db6f usbip_recv_xbuff EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x78b72f44 usbip_debug_flag -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x7ad242d4 usbip_event_add -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x7dcba7c0 usbip_recv -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x848dd7f8 usbip_recv_xbuff -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x97ccb96f usbip_pack_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x8e670768 usbip_pad_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x929eaa3b usbip_stop_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xa8a29131 usbip_alloc_iso_desc_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xb36766ed usbip_event_add +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xb7809331 usbip_event_happened +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xbf2dd5e0 usbip_pack_pdu EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd02753dc usbip_header_correct_endian +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xdd7957a7 dev_attr_usbip_debug EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe1ea0586 usbip_dump_header -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xefb532c8 usbip_recv_iso -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xf6da602f usbip_event_happened -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xf913baa1 usbip_alloc_iso_desc_pdu -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x08e87070 __vdpa_register_driver -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x10b32dac vdpa_unregister_device -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x438f322f vdpa_register_device -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x528387a7 vdpa_mgmtdev_unregister -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x5993971e _vdpa_register_device -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x6964df54 vdpa_unregister_driver -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x6edeee71 __vdpa_alloc_device -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xb7f34402 _vdpa_unregister_device -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xc5fcc4c8 vdpa_mgmtdev_register -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa_sim/vdpa_sim 0x45177773 vdpasim_create -EXPORT_SYMBOL_GPL drivers/vfio/mdev/mdev 0xc043706d mdev_bus_type -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x074d085e vhost_dequeue_msg -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0b192d77 vhost_add_used_n -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0b89e96c vhost_poll_flush -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0f65a78e vhost_log_write -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x142e17c2 vhost_enqueue_msg -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x17924d36 vhost_poll_stop -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x24f01b2e vhost_poll_start -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2a88cf18 vhost_dev_ioctl -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2e4c13e7 vhost_dev_cleanup -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3ca95d5d vhost_dev_check_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x40f2d9dc vhost_add_used -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4d930633 vhost_enable_notify -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x51181f27 vhost_dev_stop -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x58b60f6f vhost_exceeds_weight -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5e0c5ebb vhost_add_used_and_signal_n -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5f823efc vhost_chr_read_iter -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x670edbca vhost_poll_queue -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6893af16 vhost_has_work -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x793423ab vhost_vq_init_access -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x79df5afc vhost_dev_has_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x855bc880 vhost_disable_notify -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8b419caa vhost_dev_set_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8cb97898 vhost_vq_access_ok -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9e14350a vhost_vq_avail_empty -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa6704e4d vhost_poll_init +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xec81af64 usbip_start_eh +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x302c8bf7 vdpa_register_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x4555a9c1 vdpa_unregister_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x53c5770c vdpa_mgmtdev_unregister +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x64b94b1f vdpa_unregister_driver +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x8cc59189 vdpa_mgmtdev_register +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x99d4c268 __vdpa_register_driver +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xae72c3af _vdpa_register_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xc9f5783a __vdpa_alloc_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xce3b01ef _vdpa_unregister_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa_sim/vdpa_sim 0xf4fe5cad vdpasim_create +EXPORT_SYMBOL_GPL drivers/vfio/mdev/mdev 0x8cd21ba2 mdev_bus_type +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x02e14620 vhost_log_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x084432b9 vhost_dev_cleanup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0a315118 vq_meta_prefetch +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0e1c3f82 vhost_poll_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x119ce794 vhost_vq_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x18bc1922 vhost_dev_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1a6e8aee vhost_dev_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x22c071ce vhost_disable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2d25d8c4 vhost_chr_read_iter +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2de0acc8 vhost_vring_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3b309a85 vhost_init_device_iotlb +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x46a8e9e8 vhost_add_used_and_signal_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x47b2384a vhost_enqueue_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x496a9360 vhost_poll_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4c834fd2 vhost_add_used +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5fabce0b vhost_dev_has_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6aa25f48 vhost_dev_reset_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6c0b1e74 vhost_poll_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x70b797ac vhost_has_work +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7a28f760 vhost_dev_set_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7dca8654 vhost_enable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8f5df0ce vhost_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x98011a94 vhost_work_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x98ea2288 vhost_new_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9c1c5883 vhost_work_dev_flush EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa909cfc5 vhost_work_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa90e575b vhost_new_msg -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb008faa7 vhost_work_queue -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb82508e8 vhost_log_access_ok -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xbb3ed152 vhost_vq_is_setup -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xcd5970c8 vhost_vring_ioctl -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xcfc4eba3 vhost_init_device_iotlb -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd03e2ccd vhost_dev_reset_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd74b61a9 vhost_dev_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd879d82b vq_meta_prefetch -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe391a25f vhost_signal -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe5cbc0ba vhost_discard_vq_desc -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xedf98d38 vhost_work_dev_flush -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xef8d392e vhost_set_backend_features -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf52754dc vhost_get_vq_desc -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfb890ece vhost_add_used_and_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb3fac654 vhost_add_used_and_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb843c6a5 vhost_vq_avail_empty +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xbf53b931 vhost_dequeue_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc3351846 vhost_dev_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xcaa1c14a vhost_set_backend_features +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xce6f9a2c vhost_discard_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd3f8716d vhost_log_write +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd45a4134 vhost_poll_start +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd571e913 vhost_get_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xda2e0f82 vhost_exceeds_weight +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xde7558e0 vhost_dev_check_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe090cd55 vhost_poll_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe9327865 vhost_vq_is_setup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe990f483 vhost_vq_init_access +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xeec6c61c vhost_add_used_n EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfd2b3e45 vhost_dev_reset_owner_prepare EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0x38ff875f vhost_iotlb_add_range EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0x5f4e5249 vhost_iotlb_reset @@ -16146,374 +16185,373 @@ 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 0x2369deff ili9320_suspend -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x24505d47 ili9320_remove -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x41e967a4 ili9320_write -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x47f1920a ili9320_write_regs -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x6d0cdcd4 ili9320_probe_spi -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x827a1613 ili9320_shutdown -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xa18d4e1b ili9320_resume -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0xe43563cf fb_ddc_read -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x7c2ac51e fb_sys_read -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0xc30f4187 fb_sys_write -EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x8e4b835a sis_free_new -EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0xf4dd5017 sis_malloc_new -EXPORT_SYMBOL_GPL drivers/w1/wire 0x1c3c68e2 w1_reset_resume_command -EXPORT_SYMBOL_GPL drivers/w1/wire 0x1e5f380c w1_reset_bus -EXPORT_SYMBOL_GPL drivers/w1/wire 0x31fcef13 w1_write_8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0x4cab68d1 w1_reset_select_slave +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x5d49f452 ili9320_write +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x744699e7 ili9320_shutdown +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x8025376b ili9320_probe_spi +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x8fbb75bf ili9320_remove +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xa3e1ec35 ili9320_resume +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xdbacbb0b ili9320_write_regs +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xf45545ac ili9320_suspend +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0x2ca1c358 fb_ddc_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x0b4bbfc1 fb_sys_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x478b0cf3 fb_sys_write +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x0dd905e3 sis_malloc_new +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0xdf257bf6 sis_free_new +EXPORT_SYMBOL_GPL drivers/w1/wire 0x0d536ded w1_triplet +EXPORT_SYMBOL_GPL drivers/w1/wire 0x33dee27b w1_next_pullup +EXPORT_SYMBOL_GPL drivers/w1/wire 0x38271d07 w1_write_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x4ad74567 w1_write_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x6135dc81 w1_reset_select_slave EXPORT_SYMBOL_GPL drivers/w1/wire 0x63757e92 w1_calc_crc8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0x68194b24 w1_read_block -EXPORT_SYMBOL_GPL drivers/w1/wire 0xb70be618 w1_read_8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0xbaa66a0c w1_touch_block -EXPORT_SYMBOL_GPL drivers/w1/wire 0xbec2acf2 w1_triplet -EXPORT_SYMBOL_GPL drivers/w1/wire 0xc191b1d8 w1_write_block -EXPORT_SYMBOL_GPL drivers/w1/wire 0xe0955d4f w1_next_pullup -EXPORT_SYMBOL_GPL drivers/w1/wire 0xeff2a452 w1_touch_bit -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x0a395a94 dlm_posix_get +EXPORT_SYMBOL_GPL drivers/w1/wire 0x743becaf w1_touch_bit +EXPORT_SYMBOL_GPL drivers/w1/wire 0x821c9c19 w1_reset_bus +EXPORT_SYMBOL_GPL drivers/w1/wire 0xa9968cb2 w1_reset_resume_command +EXPORT_SYMBOL_GPL drivers/w1/wire 0xc449661f w1_read_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0xdda1e97d w1_read_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0xf3c9a6c2 w1_touch_block +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x0db28b53 dlm_posix_lock EXPORT_SYMBOL_GPL fs/dlm/dlm 0x4b62826c dlm_unlock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x597d3487 dlm_posix_get EXPORT_SYMBOL_GPL fs/dlm/dlm 0x647d6170 dlm_lock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x98f8bf20 dlm_posix_lock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xc05eebab dlm_posix_unlock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x8db7202b 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/fscache/fscache 0x092cf98e fscache_object_sleep_till_congested -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x392dac64 lockd_up +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x08869127 nlmclnt_proc +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x70df076d lockd_down EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77e35ccc nlmsvc_unlock_all_by_ip -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x796ba786 nlmclnt_done -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xaf5f37d1 nlmsvc_unlock_all_by_sb -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xc0a9fb20 nlmclnt_init -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xd9fbcec0 nlmclnt_proc -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xf1f46263 lockd_down -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xf939c4c6 nlmsvc_ops +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x8cdf7248 nlmclnt_init +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xb9741327 nlmsvc_unlock_all_by_sb +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xd1555644 nlmclnt_done +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xed9bfe68 nlmsvc_ops +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xffdfa4ef lockd_up +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0220a227 nfs_post_op_update_inode_force_wcc EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0294c6a2 nfs_callback_nr_threads -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0548766f nfs_free_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x08fc42db nfs_wb_all -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0b0f2fc6 nfs_server_insert_lists -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0cd894e5 nfs_path -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0f1bd6df nfs_get_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10172f02 nfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x065d16de nfs_file_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x077302ca nfs_add_or_obtain +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x091731c5 nfs_server_insert_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x09bbe337 nfs_server_remove_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0b52f9ec nfs_init_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10918271 __traceiter_nfs_xdr_status EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10962bc2 nfs_auth_info_match -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x13c07153 nfs_create_rpc_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1400ddf1 nfs_server_remove_lists -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x173d759f nfs_show_options -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x17abf46b nfs_close_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x18e16fb9 nfs_access_zap_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x19528b50 nfs_commit_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1ceeb67d alloc_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1e5643eb nfs4_label_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1ee5ffcb nfs_wait_on_request -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1f0b5fa0 nfs_lookup -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1f499989 nfs_file_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x203d39af nfs_clone_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10d85676 nfs_umount_begin +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x113fec4e nfs_put_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1289aedc nfs_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1353ebcc nfs_init_server_rpcclient +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x13e5b70f nfs_get_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1eb23f4b nfs4_label_alloc EXPORT_SYMBOL_GPL fs/nfs/nfs 0x22d795a8 _nfs_display_fhandle_hash -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x253675ff nfs_file_mmap -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x25d1e4f6 nfs_do_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x23dfa0fd nfs_alloc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x24f59bd0 nfs_request_remove_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2681f132 nfs_flock EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2b3d9e63 nfs_get_lock_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2c919cab nfs_unlink -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2e97a031 nfs_writeback_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2efbdd8b nfs_client_init_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2f1a6267 nfs_probe_fsinfo -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2f544e12 nfs_request_remove_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26a4d858 nfs_alloc_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26cd0310 nfs_refresh_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x287c1b95 nfs_sb_active +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x28a50727 nfs_clear_verifier_delegated +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x28ee00ce nfs_statfs +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2d29b4c8 nfs_revalidate_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2fc0599e nfs_commitdata_alloc EXPORT_SYMBOL_GPL fs/nfs/nfs 0x30496988 __tracepoint_nfs_fsync_enter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x33d8ee8e nfs_atomic_open -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x35381fb2 nfs_open -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3944f697 nfs_initiate_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39bc6e30 nfs_init_server_rpcclient +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x323da134 unregister_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x33eed14e nfs4_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x34a21197 nfs_commitdata_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x35267edc nfs_inode_attach_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x36b1b470 register_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x388f18a8 nfs_generic_pgio EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3a8019d6 nfs_file_set_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3af9fd1d nfs_pageio_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3bb97a5f nfs_setattr_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3d567082 nfs_post_op_update_inode_force_wcc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3a496f32 nfs_try_get_tree +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3b970897 nfs_file_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3d1007aa nfs_scan_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3dac4952 nfs_free_inode EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f2690f2 nfs_check_flags -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f2ccc8d nfs_force_lookup_revalidate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40735766 nfs_mkdir EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40739385 nfs_wait_bit_killable -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40826c70 nfs_flock -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4223e874 nfs_permission EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f2c81f nfs4_client_id_uniquifier EXPORT_SYMBOL_GPL fs/nfs/nfs 0x44cc3a41 __tracepoint_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x45dde05f nfs_sops -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x47948d76 nfs_commitdata_release -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4a2c1ad6 nfs_retry_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4a4520de nfs_create -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4aa5529f __traceiter_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4bd6adf5 nfs_client_init_is_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x453cd627 nfs_release_request +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x473c72b8 nfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x478ba508 nfs_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x49f1a3a6 nfs_client_for_each_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4a93eaf3 nfs_post_op_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4c5be5b0 nfs_access_get_cached EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4d141932 nfs_wait_client_init_complete EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x531eace0 nfs_drop_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x53fa9c4e nfs_sb_active -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5478e297 nfs_free_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x54f33d52 nfs_pageio_resend +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x53dc56f4 nfs_get_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x578933e5 nfs_free_client EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584b8482 nfs_inc_attr_generation_counter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x58a629c3 nfs_access_add_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x596adaa2 nfs_create EXPORT_SYMBOL_GPL fs/nfs/nfs 0x59923eb3 __tracepoint_nfs_xdr_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x59cd91a2 nfs_instantiate -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5f0dbb03 nfs_pageio_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x60691a4c nfs_init_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6088c341 nfs_commit_free -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6473e64b nfs_lock -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x65674932 nfs_fs_type -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x659f62dd nfs_fscache_open_file -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6618c9fb nfs_pgio_header_free -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x682f90eb nfs_mark_client_ready -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x691ea68b nfs_release_request -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x69382e72 nfs_kill_super -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6a211b35 nfs_sb_deactive -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6adc7a15 __traceiter_nfs_fsync_enter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6bc1f1a8 nfs_mkdir -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6c6d3c6a nfs_access_get_cached -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6cddaa31 nfs_init_cinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5ab727c2 nfs_access_zap_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5bb57d31 nfs_client_init_is_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6000e437 nfs_sync_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x60ffea87 nfs_initiate_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x617fd411 nfs_may_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x62fd499b nfs_show_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x63e4c164 nfs_pgio_header_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x67c1e230 nfs_file_fsync +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6a5d6db5 __traceiter_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6bf0b384 nfs_wait_on_request +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6c642e3c nfs_initiate_commit EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6e81f032 __SCK__tp_func_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x70b224d0 nfs_commitdata_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x71d8e14a nfs_fhget +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7011163b nfs_lock EXPORT_SYMBOL_GPL fs/nfs/nfs 0x73dff4c0 __SCK__tp_func_nfs_xdr_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x780cd682 nfs_inode_attach_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7a7f85a1 nfs_rename -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7aa68617 nfs_clear_verifier_delegated -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7b2b0c8c nfs_reconfigure -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7bf85315 register_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x75980d49 nfs_reconfigure +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x79b33bc8 nfs_file_mmap +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7b9a177f nfs_fhget EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7c9722ba nfs_dreq_bytes_left -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7d32358e nfs_file_llseek -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7db0d0cd nfs_umount_begin -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7f537319 nfs_async_iocounter_wait -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8180a2d0 nfs_check_cache_invalid -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x82ee7202 nfs_pgio_header_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7d8831bd put_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7e25fbd9 nfs_close_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7e8d526b nfs_invalidate_atime +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7f728d27 nfs_show_stats +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x809c8fc8 nfs_pgio_current_mirror +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x80ea224d get_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x81d39c16 __traceiter_nfs_fsync_enter EXPORT_SYMBOL_GPL fs/nfs/nfs 0x832e8f0b nfs_alloc_fattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8385b29b nfs_submount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x84e491f7 nfs_show_devname -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x857053c7 nfs_symlink -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8cddda97 __traceiter_nfs_xdr_bad_filehandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8d857e6a nfs_revalidate_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x83840779 nfs_setattr_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x853e9e89 nfs4_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x85722105 nfs_link +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8724c2f9 nfs_getattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8c9d2bc6 nfs_file_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8d72b892 nfs_show_devname +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8db2fc80 nfs_clone_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8df9b8a6 nfs_set_cache_invalid +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9023c3e8 alloc_nfs_open_context EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90a5530f nfsiod_workqueue EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91d1fe52 max_session_slots -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9378272f nfs_create_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x93a2b4d9 nfs_zap_acl_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x927ca6ab nfs_commit_free EXPORT_SYMBOL_GPL fs/nfs/nfs 0x95007f7e __SCK__tp_func_nfs_xdr_bad_filehandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x96da8229 nfs_getattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x985228d2 nfs_alloc_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9890d225 nfs_rmdir -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x98a9e64f nfs_mknod +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x96eb42a6 nfs_show_options EXPORT_SYMBOL_GPL fs/nfs/nfs 0x98b0ece8 nfs_init_timeout_values -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x99eb0da2 nfs_refresh_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9c0a1265 nfs_invalidate_atime -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9c668502 nfs4_dentry_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9eaf69c7 nfs_clear_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa0570b80 nfs_put_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9933542c nfs_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x993598e0 nfs_put_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9ab25288 nfs_setsecurity +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9c1c337a nfs_mark_client_ready +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9dac89cc nfs_probe_fsinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9e3214cb nfs_zap_acl_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9f1aee38 nfs_write_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9fe01994 nfs_kill_super EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa05ca625 nfs_fattr_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa234cc3e nfs_file_fsync -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa28a7f6f __traceiter_nfs_xdr_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa2ca489c nfs_file_release -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa3e29ef1 nfs_pgio_current_mirror -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa5000d0f nfs_pgheader_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa52f8f5b nfs_client_for_each_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa6c81f56 nfs_generic_pgio -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa7cfaa75 nfs_may_open -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa85dfce9 nfs_request_add_commit_list_locked +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa1bf7be4 nfs_fscache_open_file +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa4ae48e1 nfs_rename +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa4e4a0ca nfs_pgio_header_free EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e9e1ae send_implementation_id -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa93aa144 nfs_put_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa9d2dd32 nfs_permission EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaafd4acc max_session_cb_slots -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xabc6fc2c nfs_init_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xacdb90c6 nfs_scan_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xad2d6607 nfs_post_op_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb01197ee nfs_file_write -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb028fb7e nfs_show_stats -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb14c3824 unregister_nfs_version -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb1e1216b nfs_try_get_tree -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb7b4236e nfs_link -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb80202f7 nfs_initiate_pgio -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb8596fff nfs_request_add_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc2800e0c nfs_statfs +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xab27c009 nfs_retry_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xac962b80 nfs_do_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaca8af5b nfs_atomic_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xacc7ef8e nfs_lookup +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xad0e8138 nfs_clear_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb6d113a7 nfs_setattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbaba274e nfs_symlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbd1c52f7 nfs_mknod +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbf3f86cf nfs_wb_all +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbfe95be6 nfs_filemap_write_and_wait_range +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc09a2fad nfs_pageio_reset_read_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc18a09ef nfs_sops +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc1951e59 nfs_create_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc31084d7 nfs_file_llseek EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3a2be67 nfs_net_id -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3fbd39a nfs_server_copy_userdata -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc7266f87 nfs_free_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc84d536b nfs_filemap_write_and_wait_range -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc91db830 nfs4_fs_type -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd5d82b31 nfs_alloc_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xda023a41 nfs_setsecurity +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3b94ee7 nfs_file_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc4928332 nfs_rmdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc6a16840 nfs_create_rpc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc77e365a nfs_client_init_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc88dd26c nfs_instantiate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc9637e0e nfs_drop_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcaf1f67a nfs_set_verifier +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcb900ffb nfs_async_iocounter_wait +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcbd5697a nfs_unlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xce89b4c2 nfs_file_set_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd0d0e980 nfs_pageio_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd126edd9 __traceiter_nfs_xdr_bad_filehandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd39021af nfs_init_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd54bf788 nfs_writeback_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd705d8bc nfs_commit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd7868e2c nfs_dentry_operations EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdbe08d76 nfs_sync_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xded47425 put_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdf6edd83 nfs_set_verifier -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe3ab74ba nfs_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdc1b04b2 nfs_wait_client_init_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdf0d5702 nfs_server_copy_userdata +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe2bd822d nfs_sb_deactive EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe70507df __tracepoint_nfs_xdr_bad_filehandle EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe832ae85 nfs_access_set_mask -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf00be657 nfs_pageio_reset_read_mds -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf0ace637 nfs_pageio_reset_write_mds -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf19e0c03 nfs_setattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf243a4b4 nfs_show_path -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf246894c get_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf269563c nfs_alloc_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf711f8fe nfs_file_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf9622016 nfs_write_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xee6049d4 nfs_force_lookup_revalidate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf00458fb nfs_pgheader_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf2eb518b nfs_access_add_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf43d8a46 nfs_pageio_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf8048e9b nfs_init_cinfo EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf96f04c4 __SCK__tp_func_nfs_fsync_enter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfa0ab50c nfs_add_or_obtain +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfa8dee5a nfs_pageio_reset_write_mds EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc619abd _nfs_display_fhandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfd73b863 nfs_set_cache_invalid -EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0xdf224606 nfs3_set_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0495080a nfs4_delete_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfcf69a6d nfs_check_cache_invalid +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfd558705 nfs_request_add_commit_list_locked +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfea036c0 nfs_free_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xff196d18 nfs_request_add_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xff1d45b9 nfs_alloc_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xffe85144 nfs_pageio_resend +EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0xc393a003 nfs3_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x00205c23 __traceiter_nfs4_pnfs_commit_ds EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x06f313e8 nfs41_sequence_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x075421e7 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 0x09425cd2 pnfs_generic_recover_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x09f1160d pnfs_read_done_resend_to_mds EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0aebca68 __tracepoint_ff_layout_read_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0bd95b22 pnfs_put_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0e6b221f pnfs_set_layoutcommit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0c2f7574 nfs_remove_bad_delegation +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0d8a91c4 __traceiter_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 0x0ff289f3 __SCK__tp_func_pnfs_mds_fallback_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x10cac322 pnfs_ld_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x11c90bcb pnfs_alloc_commit_array -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x14c0dcb7 nfs4_init_ds_session -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x16f18621 nfs4_pnfs_ds_add -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x190a1db8 pnfs_ld_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x10e7cfd6 pnfs_generic_write_commit_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x112cd96d nfs4_schedule_stateid_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x11f8098f pnfs_write_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x142ee0ed nfs41_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x14d9f831 nfs4_find_get_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x17f1c83d nfs42_proc_layouterror +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x18056b50 nfs4_pnfs_ds_put +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1b7c5d2b nfs4_put_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1c262435 __traceiter_pnfs_mds_fallback_write_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2135f147 __traceiter_pnfs_mds_fallback_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x24df2065 pnfs_generic_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x26730796 nfs4_mark_deviceid_unavailable EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x27ad47ea __SCK__tp_func_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2b651941 pnfs_layout_mark_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2bdbb690 pnfs_ld_write_done EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x30a44ac3 __SCK__tp_func_ff_layout_write_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x31923441 pnfs_generic_pg_check_range -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x32ab5b47 nfs4_decode_mp_ds_addr EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x32bb6e05 __tracepoint_ff_layout_write_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x37373845 pnfs_generic_layout_insert_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x38d6445c __traceiter_pnfs_mds_fallback_read_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4a992348 nfs4_find_or_create_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4aa54838 pnfs_generic_pg_cleanup -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4ec836c7 pnfs_register_layoutdriver -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x501b845c pnfs_generic_clear_request_commit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x50e48ed9 __traceiter_pnfs_mds_fallback_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x51f47f97 pnfs_error_mark_layout_for_return -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5308f397 pnfs_generic_scan_commit_lists +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x350dd52d nfs4_proc_getdeviceinfo +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3b0eb694 pnfs_generic_pg_check_range +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3b743c7f __traceiter_pnfs_mds_fallback_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3d1442bb pnfs_generic_pg_cleanup +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4eebf765 pnfs_report_layoutstat +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x51b6d9a6 pnfs_generic_layout_insert_lseg EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x533c198f __SCK__tp_func_nfs4_pnfs_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5584027f pnfs_update_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x560f908c nfs4_setup_sequence -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5772a4a9 pnfs_destroy_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x53802049 nfs4_init_ds_session +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x55bc4fa3 pnfs_unregister_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x564015f0 pnfs_set_lo_fail EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x579126b8 __SCK__tp_func_pnfs_mds_fallback_read_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5815f62d pnfs_error_mark_layout_for_return EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5a4314e9 __SCK__tp_func_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5cdada29 pnfs_generic_pg_readpages EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5ce462a3 __tracepoint_pnfs_mds_fallback_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5e457565 __traceiter_pnfs_mds_fallback_pg_get_mirror_count -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5fac8994 nfs4_put_deviceid_node -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5fb6caab pnfs_report_layoutstat -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x603f4835 pnfs_free_commit_array EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6085edbd nfs_map_string_to_numeric -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x662b8568 pnfs_layoutcommit_inode -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6685ee19 pnfs_generic_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x622c71d4 nfs4_mark_deviceid_available +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x63b19e2b nfs4_test_session_trunk EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6ac2e92c nfs4_test_deviceid_unavailable -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6c86aa26 __traceiter_pnfs_mds_fallback_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6ca03ddf nfs_remove_bad_delegation -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6ca59f60 pnfs_read_done_resend_to_mds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6e67ea6f __traceiter_pnfs_mds_fallback_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6f2ac33d nfs4_find_get_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x706133ad nfs4_proc_getdeviceinfo -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7061ca52 __traceiter_ff_layout_commit_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x71eb951f pnfs_generic_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x730abcad pnfs_generic_pg_check_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x737665f3 pnfs_generic_sync -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x747d44de __traceiter_ff_layout_write_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x76c9f484 nfs4_schedule_session_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6b06f8ec nfs4_find_or_create_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6c71e9c5 pnfs_update_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6d93fe89 nfs4_set_rw_stateid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7336dc96 pnfs_generic_pg_check_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x74aaa63b pnfs_put_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x76e94cf4 nfs4_setup_sequence EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x785c06ab __SCK__tp_func_ff_layout_read_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x78e22525 __traceiter_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x79410a77 nfs4_schedule_session_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x79c090bc nfs4_pnfs_ds_connect +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x79c4fc9d nfs4_schedule_lease_recovery 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 0x7b54b36d __traceiter_ff_layout_write_error EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7cd013a8 __SCK__tp_func_pnfs_mds_fallback_pg_get_mirror_count +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7d0a5bf2 pnfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x812c9943 __traceiter_pnfs_mds_fallback_read_pagelist EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x82409884 __tracepoint_pnfs_mds_fallback_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8c8f974d pnfs_layout_mark_request_commit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x96ad0a03 __traceiter_pnfs_mds_fallback_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8495a454 nfs4_delete_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x856e9824 pnfs_generic_scan_commit_lists +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x86818d69 __traceiter_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x88fd3a36 nfs4_schedule_migration_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8ad7a7de pnfs_generic_clear_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9318980b __traceiter_pnfs_mds_fallback_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x946165e2 pnfs_generic_pg_test EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x974a1614 __tracepoint_pnfs_mds_fallback_pg_init_write EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9a1a74c3 __tracepoint_nfs4_pnfs_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9ba5d9b1 pnfs_add_commit_array -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9ca96f3f nfs4_mark_deviceid_available -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9cb174ba pnfs_read_resend_pnfs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9d43f9d5 __traceiter_nfs4_pnfs_commit_ds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9eeb48eb pnfs_generic_search_commit_reqs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9f7acd60 pnfs_generic_commit_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9fe42aa1 pnfs_generic_recover_commit_reqs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa2708840 nfs4_schedule_stateid_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa77c3b5f pnfs_generic_pg_readpages -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xaa6108ef pnfs_generic_prepare_to_resend_writes -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xabfc6eed nfs4_pnfs_ds_connect -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xadf1a2f7 pnfs_set_lo_fail -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb2bac566 nfs4_schedule_lease_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9b0f039a nfs4_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9b57be69 __traceiter_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9b9040eb __traceiter_ff_layout_commit_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9f42e2b1 pnfs_ld_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa3bae7cd __traceiter_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa857bb8f pnfs_generic_ds_cinfo_release_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xaac1240c pnfs_free_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb22f10bc nfs4_pnfs_ds_add +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb352d7d4 pnfs_generic_commit_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb3589af0 pnfs_read_resend_pnfs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb9806d94 pnfs_register_layoutdriver EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xba53a1ef __SCK__tp_func_pnfs_mds_fallback_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbb8e3d40 nfs4_mark_deviceid_unavailable -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbc7fc05f nfs4_test_session_trunk -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbc86685e nfs4_schedule_lease_moved_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbf3cf2d2 pnfs_write_done_resend_to_mds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc19a5bff pnfs_nfs_generic_sync -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc4bf3d34 __traceiter_pnfs_mds_fallback_write_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbf040005 pnfs_alloc_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc4ee39e5 nfs4_decode_mp_ds_addr +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc6dc493a pnfs_generic_prepare_to_resend_writes EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc7a9d954 __SCK__tp_func_nfs4_pnfs_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc947b71d nfs4_schedule_migration_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcaa21934 pnfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc8c3c93a pnfs_generic_search_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xce9706b3 pnfs_generic_pg_writepages 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 0xd1a64fd2 nfs4_pnfs_ds_put -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xda38f4cf nfs42_proc_layouterror -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdc3e913f __traceiter_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd1a31ea8 nfs4_test_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd4072684 nfs4_init_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd41b468a __traceiter_pnfs_mds_fallback_pg_get_mirror_count +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd7ddb702 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 0xdfaf64b7 pnfs_layoutcommit_inode EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe19f5ee0 __tracepoint_pnfs_mds_fallback_write_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe3add4ae pnfs_generic_pg_writepages -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe7ca3fea pnfs_unregister_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe6030338 nfs4_sequence_done EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xeae8522f __tracepoint_nfs4_pnfs_commit_ds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xeb24f512 nfs4_sequence_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xebed1c69 nfs4_set_rw_stateid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xecbce2e1 __traceiter_ff_layout_read_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xebba9049 pnfs_add_commit_array 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 0xf5d61c6d nfs4_set_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf6c1375f nfs4_init_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf1b261a1 pnfs_destroy_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf3ac7ec1 pnfs_generic_ds_cinfo_destroy +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf6133307 pnfs_set_layoutcommit EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf7801360 nfs41_maxgetdevinfo_overhead -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf824b271 pnfs_generic_ds_cinfo_destroy EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf999267e pnfs_generic_commit_release -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfdc83228 pnfs_generic_write_commit_done -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x003750e9 locks_start_grace +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfc71808d pnfs_generic_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfd6ac4cf nfs4_schedule_lease_moved_recovery +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x0562159c locks_start_grace EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fe1e1ad locks_end_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x33c99dd1 locks_in_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xd96aa334 opens_in_grace -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x25b446bb nfsacl_decode -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x38d922cd nfs_stream_encode_acl -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x6aa10a65 nfs_stream_decode_acl -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xf7875a5d nfsacl_encode -EXPORT_SYMBOL_GPL fs/nfsd/nfsd 0x12ed4527 nfsd4_ssc_init_umount_work +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x90bd32c0 opens_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xe34f9dcb locks_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x0930aaf8 nfsacl_encode +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x7134a377 nfs_stream_decode_acl +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x8e3d77a9 nfs_stream_encode_acl +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xb191b4e6 nfsacl_decode +EXPORT_SYMBOL_GPL fs/nfsd/nfsd 0xb7382e04 nfsd4_ssc_init_umount_work +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x12cba55e o2nm_get_node_by_ip EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1b89c6ee o2hb_fill_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x2fb141f5 o2nm_node_put 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 0x81a17396 mlog_and_bits -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x8abbff52 o2nm_node_put -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x96f54ac7 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 0xb2ca7939 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 0xbe7c0fdc o2hb_register_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xbf029061 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 0xcd724042 o2nm_node_get +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xc8aa6642 o2nm_node_get EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd859ac8c o2net_fill_node_map -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xdadda388 o2hb_setup_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xdb634069 o2nm_get_node_by_ip +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xe2b763db o2nm_get_node_by_num +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xed24b5cb 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 0xfbdfe8c6 o2hb_unregister_callback EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xfe1298f3 o2net_register_handler -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x17025457 dlmunlock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x5493ea5a dlm_print_one_lock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x1fd299d9 dlm_unregister_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x26687eda dlm_register_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x34ce2967 dlmlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x3fbbeb5d dlm_register_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x4db98c48 dlm_print_one_lock EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7a1211f8 dlm_setup_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x82e120ad dlm_register_domain -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xbbeb8a0b dlm_register_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xcef75469 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 0xe2afe82b dlmlock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xfac25686 dlm_unregister_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 EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x1475f64b ocfs2_dlm_lvb_valid -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4980d329 ocfs2_stack_glue_register +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x1ca4a47b ocfs2_stack_glue_register +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x3f2a7e5b ocfs2_stack_glue_unregister EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4d3af7fa ocfs2_cluster_hangup -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x59b02ed6 ocfs2_plock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x6462ef43 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 0xa3c9c556 ocfs2_stack_glue_unregister -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xa7b397ec ocfs2_kset +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xaa483594 ocfs2_kset EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xaf969565 ocfs2_dlm_lock EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbbc4ef97 ocfs2_stack_supports_plocks EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xc5196999 ocfs2_dlm_unlock @@ -16521,11 +16559,11 @@ EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xcafdd707 ocfs2_dlm_lock_status EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xd344e4ee ocfs2_stack_glue_set_max_proto_version EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xd806a273 ocfs2_dlm_dump_lksb -EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0x193ccef4 unregister_pstore_device +EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0x2b3501a1 register_pstore_device EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0x43cc3d4b pstore_blk_get_config -EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0xc68bd0b4 register_pstore_device -EXPORT_SYMBOL_GPL fs/pstore/pstore_zone 0x2b56a393 unregister_pstore_zone -EXPORT_SYMBOL_GPL fs/pstore/pstore_zone 0x395f25b1 register_pstore_zone +EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0x8e1bb817 unregister_pstore_device +EXPORT_SYMBOL_GPL fs/pstore/pstore_zone 0x83f89515 unregister_pstore_zone +EXPORT_SYMBOL_GPL fs/pstore/pstore_zone 0xd22758bc 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 @@ -16550,8 +16588,8 @@ EXPORT_SYMBOL_GPL lib/crypto/libpoly1305 0xf3945fcd poly1305_final_generic EXPORT_SYMBOL_GPL lib/crypto/libsm4 0x24e254e8 sm4_expandkey EXPORT_SYMBOL_GPL lib/crypto/libsm4 0xfa81970e sm4_crypt_block -EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x0c66174e notifier_err_inject_init -EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x2aaeb6b1 notifier_err_inject_dir +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x35a4162f notifier_err_inject_dir +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0xe1b7a5d5 notifier_err_inject_init EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x1803a6ed raid6_2data_recov EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x2b30f429 raid6_call EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0xe4b051cf raid6_datap_recov @@ -16561,1062 +16599,1063 @@ 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 0x32cc5c14 lowpan_header_decompress -EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x9742b6c5 lowpan_header_compress -EXPORT_SYMBOL_GPL net/802/garp 0x507b07e6 garp_register_application -EXPORT_SYMBOL_GPL net/802/garp 0x92314d00 garp_request_leave -EXPORT_SYMBOL_GPL net/802/garp 0x97ecbeed garp_unregister_application -EXPORT_SYMBOL_GPL net/802/garp 0xafad53f2 garp_init_applicant -EXPORT_SYMBOL_GPL net/802/garp 0xcc2a2883 garp_request_join -EXPORT_SYMBOL_GPL net/802/garp 0xe1bcf5e0 garp_uninit_applicant -EXPORT_SYMBOL_GPL net/802/mrp 0x384f0e70 mrp_request_join -EXPORT_SYMBOL_GPL net/802/mrp 0x7847252d mrp_unregister_application -EXPORT_SYMBOL_GPL net/802/mrp 0xb4b4f176 mrp_init_applicant -EXPORT_SYMBOL_GPL net/802/mrp 0xcef3d215 mrp_register_application -EXPORT_SYMBOL_GPL net/802/mrp 0xd39a3d7f mrp_uninit_applicant -EXPORT_SYMBOL_GPL net/802/mrp 0xefda5cbd mrp_request_leave -EXPORT_SYMBOL_GPL net/802/stp 0x21a157cb stp_proto_register -EXPORT_SYMBOL_GPL net/802/stp 0x3f37bb60 stp_proto_unregister -EXPORT_SYMBOL_GPL net/9p/9pnet 0xc07e3491 p9_client_xattrcreate -EXPORT_SYMBOL_GPL net/9p/9pnet 0xfd2d2792 p9_client_xattrwalk +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x158b1721 lowpan_header_decompress +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x4edd3780 lowpan_header_compress +EXPORT_SYMBOL_GPL net/802/garp 0x1c69e0e7 garp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/garp 0x657d7a50 garp_init_applicant +EXPORT_SYMBOL_GPL net/802/garp 0x7e3b0c90 garp_request_join +EXPORT_SYMBOL_GPL net/802/garp 0x7fe7786c garp_request_leave +EXPORT_SYMBOL_GPL net/802/garp 0x981e20bf garp_unregister_application +EXPORT_SYMBOL_GPL net/802/garp 0xd499cbd9 garp_register_application +EXPORT_SYMBOL_GPL net/802/mrp 0x0e6dd7cc mrp_unregister_application +EXPORT_SYMBOL_GPL net/802/mrp 0x3bf8bdc5 mrp_request_join +EXPORT_SYMBOL_GPL net/802/mrp 0x61771121 mrp_init_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0x715bf184 mrp_request_leave +EXPORT_SYMBOL_GPL net/802/mrp 0x74a4df0d mrp_register_application +EXPORT_SYMBOL_GPL net/802/mrp 0x9e22aac8 mrp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/stp 0xa6d106c7 stp_proto_unregister +EXPORT_SYMBOL_GPL net/802/stp 0xdf9c3f9e stp_proto_register +EXPORT_SYMBOL_GPL net/9p/9pnet 0x2c58a0d7 p9_client_xattrwalk +EXPORT_SYMBOL_GPL net/9p/9pnet 0xd217b97b p9_client_xattrcreate EXPORT_SYMBOL_GPL net/atm/atm 0xb09faf79 register_atmdevice_notifier EXPORT_SYMBOL_GPL net/atm/atm 0xcfb6a3da unregister_atmdevice_notifier EXPORT_SYMBOL_GPL net/ax25/ax25 0xac93ae05 ax25_bcast EXPORT_SYMBOL_GPL net/ax25/ax25 0xaeb7451e ax25_defaddr -EXPORT_SYMBOL_GPL net/ax25/ax25 0xb9c66daf ax25_register_pid -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x0a5adb1f l2cap_chan_connect -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x1e66610a bt_debugfs -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x53c5cc23 l2cap_add_psm -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xa04d1d3a l2cap_chan_create -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xb101bb35 l2cap_chan_del -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xb82b937f l2cap_chan_set_defaults -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xc34db2d0 l2cap_chan_send -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xe3e5caa7 l2cap_chan_put -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xe75bfd24 l2cap_chan_list -EXPORT_SYMBOL_GPL net/bluetooth/hidp/hidp 0x0e879c44 hidp_hid_driver -EXPORT_SYMBOL_GPL net/bridge/bridge 0x0059b89d br_vlan_get_pvid_rcu -EXPORT_SYMBOL_GPL net/bridge/bridge 0x07dfe861 br_port_get_stp_state -EXPORT_SYMBOL_GPL net/bridge/bridge 0x547b5bba br_dev_queue_push_xmit -EXPORT_SYMBOL_GPL net/bridge/bridge 0x593f9916 br_multicast_list_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0x753bc01f br_vlan_get_pvid -EXPORT_SYMBOL_GPL net/bridge/bridge 0x78e142a4 br_multicast_has_querier_anywhere -EXPORT_SYMBOL_GPL net/bridge/bridge 0x7f4f91e7 br_multicast_enabled -EXPORT_SYMBOL_GPL net/bridge/bridge 0x8191fb09 br_handle_frame_finish -EXPORT_SYMBOL_GPL net/bridge/bridge 0x8d478dd1 br_get_ageing_time -EXPORT_SYMBOL_GPL net/bridge/bridge 0xa24e919e br_fdb_find_port -EXPORT_SYMBOL_GPL net/bridge/bridge 0xabe1143d br_vlan_get_info_rcu -EXPORT_SYMBOL_GPL net/bridge/bridge 0xad6cac0b br_multicast_router -EXPORT_SYMBOL_GPL net/bridge/bridge 0xae84a3b6 br_forward -EXPORT_SYMBOL_GPL net/bridge/bridge 0xb067d4d2 br_vlan_enabled -EXPORT_SYMBOL_GPL net/bridge/bridge 0xba8f9da1 nf_br_ops -EXPORT_SYMBOL_GPL net/bridge/bridge 0xbb89a7d3 br_fdb_clear_offload -EXPORT_SYMBOL_GPL net/bridge/bridge 0xccf1bc75 br_forward_finish -EXPORT_SYMBOL_GPL net/bridge/bridge 0xda8a3dce br_multicast_has_router_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0xf1b77b18 br_vlan_get_proto -EXPORT_SYMBOL_GPL net/bridge/bridge 0xf80ed6fd br_port_flag_is_set -EXPORT_SYMBOL_GPL net/bridge/bridge 0xfa0c764b br_vlan_get_info -EXPORT_SYMBOL_GPL net/bridge/bridge 0xfcdf1a5d br_multicast_has_querier_adjacent -EXPORT_SYMBOL_GPL net/core/failover 0x312ef155 failover_slave_unregister -EXPORT_SYMBOL_GPL net/core/failover 0x8dd9720f failover_register -EXPORT_SYMBOL_GPL net/core/failover 0xa1f1a28f failover_unregister -EXPORT_SYMBOL_GPL net/dccp/dccp 0x000a1f20 dccp_parse_options -EXPORT_SYMBOL_GPL net/dccp/dccp 0x05870658 dccp_make_response -EXPORT_SYMBOL_GPL net/dccp/dccp 0x077f7d3a dccp_insert_option +EXPORT_SYMBOL_GPL net/ax25/ax25 0xb6d9090f ax25_register_pid +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x047d1383 l2cap_add_psm +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x3e9af2b5 l2cap_chan_connect +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x4f9f9c20 l2cap_chan_del +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x5f8834fd l2cap_chan_put +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x66a5ce0c l2cap_chan_create +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x9048f90b bt_debugfs +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x92dc01a0 l2cap_chan_set_defaults +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xdaeeeb4e l2cap_chan_send +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xff2da68b l2cap_chan_list +EXPORT_SYMBOL_GPL net/bluetooth/hidp/hidp 0x688c89d6 hidp_hid_driver +EXPORT_SYMBOL_GPL net/bridge/bridge 0x0709b9ce br_vlan_get_info_rcu +EXPORT_SYMBOL_GPL net/bridge/bridge 0x0e2b1878 br_vlan_get_pvid_rcu +EXPORT_SYMBOL_GPL net/bridge/bridge 0x12c87231 br_vlan_get_info +EXPORT_SYMBOL_GPL net/bridge/bridge 0x15ca3464 br_vlan_get_pvid +EXPORT_SYMBOL_GPL net/bridge/bridge 0x1d61615b br_multicast_has_querier_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x329133f5 br_vlan_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0x3953251a br_port_flag_is_set +EXPORT_SYMBOL_GPL net/bridge/bridge 0x47bd6c05 br_multicast_has_querier_anywhere +EXPORT_SYMBOL_GPL net/bridge/bridge 0x67cb79c1 br_multicast_has_router_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x6ce05254 nf_br_ops +EXPORT_SYMBOL_GPL net/bridge/bridge 0x784ad639 br_multicast_router +EXPORT_SYMBOL_GPL net/bridge/bridge 0x8a4ccb3c br_multicast_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0x8d61dd3b br_forward_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0x92201a64 br_port_get_stp_state +EXPORT_SYMBOL_GPL net/bridge/bridge 0x9d9cc5b0 br_dev_queue_push_xmit +EXPORT_SYMBOL_GPL net/bridge/bridge 0xb42b99e8 br_get_ageing_time +EXPORT_SYMBOL_GPL net/bridge/bridge 0xb8df4dd1 br_fdb_clear_offload +EXPORT_SYMBOL_GPL net/bridge/bridge 0xbb632f70 br_forward +EXPORT_SYMBOL_GPL net/bridge/bridge 0xcdb6d280 br_multicast_list_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0xceab4ff2 br_fdb_find_port +EXPORT_SYMBOL_GPL net/bridge/bridge 0xf4c38956 br_handle_frame_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0xf97d16e3 br_vlan_get_proto +EXPORT_SYMBOL_GPL net/core/failover 0x248c84e9 failover_slave_unregister +EXPORT_SYMBOL_GPL net/core/failover 0xc02829a7 failover_register +EXPORT_SYMBOL_GPL net/core/failover 0xe8266878 failover_unregister +EXPORT_SYMBOL_GPL net/dccp/dccp 0x00fc1dc2 dccp_poll +EXPORT_SYMBOL_GPL net/dccp/dccp 0x03a521b6 dccp_recvmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0x05c9b9b7 dccp_sync_mss +EXPORT_SYMBOL_GPL net/dccp/dccp 0x09c531db dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x0a56b4ec dccp_feat_signal_nn_change +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1385c18e inet_dccp_listen EXPORT_SYMBOL_GPL net/dccp/dccp 0x182ec2bf dccp_ackvec_parsed_add -EXPORT_SYMBOL_GPL net/dccp/dccp 0x214f23e1 dccp_check_req -EXPORT_SYMBOL_GPL net/dccp/dccp 0x265f795d dccp_sendmsg -EXPORT_SYMBOL_GPL net/dccp/dccp 0x28444f5f dccp_getsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0x2a255634 dccp_child_process -EXPORT_SYMBOL_GPL net/dccp/dccp 0x2d632ec4 dccp_feat_nn_get -EXPORT_SYMBOL_GPL net/dccp/dccp 0x30557cbc dccp_feat_signal_nn_change -EXPORT_SYMBOL_GPL net/dccp/dccp 0x3172a2bc dccp_shutdown -EXPORT_SYMBOL_GPL net/dccp/dccp 0x3613ed67 dccp_disconnect -EXPORT_SYMBOL_GPL net/dccp/dccp 0x3738560d dccp_reqsk_send_ack -EXPORT_SYMBOL_GPL net/dccp/dccp 0x3a23d283 dccp_rcv_state_process -EXPORT_SYMBOL_GPL net/dccp/dccp 0x431cc39a inet_dccp_listen -EXPORT_SYMBOL_GPL net/dccp/dccp 0x489d6333 dccp_connect +EXPORT_SYMBOL_GPL net/dccp/dccp 0x273361ad dccp_disconnect +EXPORT_SYMBOL_GPL net/dccp/dccp 0x27af5ba8 dccp_rcv_state_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0x2bb395b3 dccp_set_state +EXPORT_SYMBOL_GPL net/dccp/dccp 0x43c85904 dccp_sendmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0x47de2a6d dccp_child_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0x485ddd75 dccp_destroy_sock EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge -EXPORT_SYMBOL_GPL net/dccp/dccp 0x5820300d dccp_recvmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4f53944b dccp_ioctl +EXPORT_SYMBOL_GPL net/dccp/dccp 0x57e32fec dccp_send_sync EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics -EXPORT_SYMBOL_GPL net/dccp/dccp 0x753a3f1a dccp_send_sync -EXPORT_SYMBOL_GPL net/dccp/dccp 0x7aa62c2f dccp_poll -EXPORT_SYMBOL_GPL net/dccp/dccp 0x7ec63531 dccp_set_state +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5bd81435 dccp_shutdown +EXPORT_SYMBOL_GPL net/dccp/dccp 0x6dcb00fa dccp_parse_options +EXPORT_SYMBOL_GPL net/dccp/dccp 0x71964e50 dccp_init_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7196e013 dccp_make_response EXPORT_SYMBOL_GPL net/dccp/dccp 0x80993155 dccp_timestamp EXPORT_SYMBOL_GPL net/dccp/dccp 0x86be7924 dccp_packet_name +EXPORT_SYMBOL_GPL net/dccp/dccp 0x8a5ee25e dccp_ctl_make_reset +EXPORT_SYMBOL_GPL net/dccp/dccp 0x8d207a4e dccp_done EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup -EXPORT_SYMBOL_GPL net/dccp/dccp 0x9a116ace dccp_setsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0xacc5a70d dccp_ctl_make_reset -EXPORT_SYMBOL_GPL net/dccp/dccp 0xb6cbb556 dccp_ioctl +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9d682bc4 dccp_feat_nn_get +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9dd88661 dccp_insert_option +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa62c7d12 dccp_reqsk_init +EXPORT_SYMBOL_GPL net/dccp/dccp 0xb1185687 dccp_close +EXPORT_SYMBOL_GPL net/dccp/dccp 0xbb7dd68c dccp_check_req +EXPORT_SYMBOL_GPL net/dccp/dccp 0xbccf9b05 dccp_reqsk_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0xbd644967 dccp_getsockopt EXPORT_SYMBOL_GPL net/dccp/dccp 0xbd65b356 dccp_hashinfo -EXPORT_SYMBOL_GPL net/dccp/dccp 0xc697a883 dccp_destroy_sock -EXPORT_SYMBOL_GPL net/dccp/dccp 0xd13e0f75 dccp_create_openreq_child -EXPORT_SYMBOL_GPL net/dccp/dccp 0xd754fe8e dccp_sync_mss +EXPORT_SYMBOL_GPL net/dccp/dccp 0xbd80a757 dccp_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0xcc16e8de dccp_connect EXPORT_SYMBOL_GPL net/dccp/dccp 0xd75b7072 dccp_orphan_count -EXPORT_SYMBOL_GPL net/dccp/dccp 0xe33ac01d dccp_reqsk_init -EXPORT_SYMBOL_GPL net/dccp/dccp 0xe5e2f9f7 dccp_close -EXPORT_SYMBOL_GPL net/dccp/dccp 0xe91b3a57 dccp_send_ack -EXPORT_SYMBOL_GPL net/dccp/dccp 0xf1366825 dccp_done +EXPORT_SYMBOL_GPL net/dccp/dccp 0xdf6b9b1f dccp_rcv_established +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf1a8dfb6 dccp_create_openreq_child EXPORT_SYMBOL_GPL net/dccp/dccp 0xf5080cfc dccp_death_row -EXPORT_SYMBOL_GPL net/dccp/dccp 0xf61eeb87 dccp_rcv_established -EXPORT_SYMBOL_GPL net/dccp/dccp 0xf66c1bd9 dccp_init_sock -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x36f143ba dccp_invalid_packet -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x96afc776 dccp_v4_connect -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xc190e647 dccp_v4_request_recv_sock -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xeb9c8518 dccp_v4_send_check -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xebbb4a37 dccp_v4_do_rcv -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xf1533205 dccp_v4_conn_request -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x076208cb dsa_tag_8021q_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x0d2ea4d6 dsa_devlink_param_set -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x11f44242 dsa_devlink_params_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x14e1d18d dsa_devlink_resource_occ_get_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x1a1404b2 dsa_tag_8021q_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x28f8de01 dsa_switch_suspend -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x2e7aa2e5 dsa_devlink_param_get -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x3b37a2b3 dsa_port_get_phy_strings -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x3c692377 dsa_slave_dev_check -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x3d99195d dsa_devlink_region_create +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x0d6644fe dccp_v4_request_recv_sock +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x2f6965bd dccp_invalid_packet +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x3fd4f2d8 dccp_v4_connect +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x50a5be67 dccp_v4_conn_request +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x5ad2bf51 dccp_v4_do_rcv +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xfe2675aa dccp_v4_send_check +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x064e9614 dsa_dev_to_net_device +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x0a156459 dsa_devlink_param_set +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x163e3df1 dsa_port_get_phy_sset_count +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x18d24eae dsa_port_get_phy_strings +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x2c2c7f3a dsa_tag_8021q_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x36936049 dsa_8021q_rx_vid +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x36f1a730 dsa_devlink_params_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x3815c47d dsa_devlink_param_get +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x38e7f644 dsa_8021q_rcv +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x3ca1903e dsa_devlink_resource_occ_get_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x3ea59c81 dsa_8021q_xmit EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x417d1fed dsa_8021q_rx_switch_id -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x44d71237 dsa_tag_8021q_bridge_tx_fwd_unoffload -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x50b87892 dsa_devlink_resources_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x50ee5c40 dsa_dev_to_net_device -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x544a9c69 dsa_8021q_tx_vid -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x5922fb30 dsa_8021q_rx_vid EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x5928bba7 vid_is_dsa_8021q_rxvlan -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x770da0b7 dsa_8021q_xmit -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x83f5bf63 dsa_port_get_phy_sset_count -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x8741665a dsa_devlink_resource_occ_get_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x942e222c dsa_devlink_resource_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x9647bcd1 dsa_devlink_port_region_create -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x96484bfd dsa_unregister_switch +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x5d1ec6e0 dsa_devlink_params_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x624a07f3 dsa_switch_find +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x65e7dde7 dsa_8021q_tx_vid +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x6fb7dce5 dsa_switch_resume +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x712723e4 dsa_tag_8021q_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x77b87881 dsa_devlink_resources_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x7f17b91c dsa_port_get_ethtool_phy_stats +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x8e451fcd dsa_enqueue_skb +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x991e49cc dsa_switch_suspend +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x9d8b7433 dsa_port_phylink_mac_change +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x9e33d5b5 dsa_register_switch EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x9e59271d dsa_8021q_rx_source_port -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xa1011bb4 dsa_switch_resume -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xab31e184 dsa_port_from_netdev -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xb5082fd2 dsa_tag_drivers_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x9fbed28c dsa_port_from_netdev +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xa55e5e42 dsa_tag_drivers_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xac11a278 dsa_tag_8021q_bridge_tx_fwd_offload +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xaf8a89ac dsa_devlink_resource_occ_get_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xb7093e5e dsa_tag_drivers_register EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xbe3856fc dsa_8021q_bridge_tx_fwd_offload_vid -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc0bada48 dsa_tag_8021q_bridge_tx_fwd_offload +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xbe48c511 dsa_slave_dev_check EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc23e8d5f dsa_devlink_region_destroy -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc9caf96d dsa_switch_shutdown -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xd58b6a15 dsa_devlink_params_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xd5e7185f dsa_register_switch -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xdd9e4d9d dsa_8021q_rcv -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xe7000555 dsa_port_get_ethtool_phy_stats -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xed1661a9 dsa_switch_find +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc2fed5ae dsa_devlink_resource_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc42af5f7 dsa_switch_shutdown +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc5b07b86 dsa_devlink_region_create +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xcf28932a dsa_tag_8021q_bridge_tx_fwd_unoffload +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xe741d5ed dsa_unregister_switch EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf13e1803 vid_is_dsa_8021q -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf6136f01 dsa_tag_drivers_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf27c5dd2 dsa_devlink_port_region_create EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf6f3b5c8 vid_is_dsa_8021q_txvlan -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf7cb8529 dsa_port_phylink_mac_change -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xfe7bb255 dsa_enqueue_skb -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x27f52e30 ieee802154_hdr_push +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x3771a353 ieee802154_hdr_pull +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x42089034 ieee802154_hdr_peek_addrs +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x8000c757 ieee802154_hdr_push EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x87e2553b ieee802154_max_payload -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x916d8d3a ieee802154_hdr_peek_addrs -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xaf6e7f5c ieee802154_hdr_pull -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xb40ecf4b ieee802154_hdr_peek +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xf66d468e ieee802154_hdr_peek 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 0x993f1465 ife_encode +EXPORT_SYMBOL_GPL net/ife/ife 0x6b83d0df ife_encode +EXPORT_SYMBOL_GPL net/ife/ife 0x82bfdb3d ife_decode EXPORT_SYMBOL_GPL net/ife/ife 0xe7888e98 ife_tlv_meta_encode -EXPORT_SYMBOL_GPL net/ife/ife 0xee2097ad ife_decode -EXPORT_SYMBOL_GPL net/ipv4/esp4 0x627d8e44 esp_input_done2 -EXPORT_SYMBOL_GPL net/ipv4/esp4 0x8cd87390 esp_output_tail -EXPORT_SYMBOL_GPL net/ipv4/esp4 0xecf42373 esp_output_head -EXPORT_SYMBOL_GPL net/ipv4/gre 0x1817fcb8 gre_add_protocol -EXPORT_SYMBOL_GPL net/ipv4/gre 0x49bb3270 gre_del_protocol -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x23519559 inet_diag_msg_attrs_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x2a00a41f inet_diag_dump_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x644341a2 inet_diag_dump_one_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x6b10ef9b inet_diag_msg_common_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x7aadefd0 inet_diag_bc_sk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x834fb2e6 inet_diag_find_one_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x8c661904 inet_sk_diag_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xe86cf8a5 inet_diag_register -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xec9b6832 inet_diag_unregister -EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0xe9064d2d gretap_fb_dev_create -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x11d4bad0 ip_tunnel_siocdevprivate -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x14f32ef4 ip_tunnel_dellink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x15bd68bc ip_tunnel_rcv -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x1dc3eb06 ip_tunnel_changelink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x2ca50855 ip_md_tunnel_xmit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x54b53aaf ip_tunnel_lookup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x578bc51d __ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x5f49c0b3 ip_tunnel_init -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x6fccc28a ip_tunnel_xmit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x7296a36f ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x80eb3ecd ip_tunnel_uninit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xaa98dcc8 ip_tunnel_encap_setup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xb50fbcdc ip_tunnel_setup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xc6d8898a ip_tunnel_delete_nets -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xd5ac400c ip_tunnel_init_net -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xd756313d ip_tunnel_ctl -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xedc02253 ip_tunnel_newlink -EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0xe66caeab arpt_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0xc81cc1a0 ipt_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x5025b670 nf_defrag_ipv4_disable -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x7ebebbb5 nf_defrag_ipv4_enable -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0xd3612eef nf_dup_ipv4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x349b5a81 nf_reject_ip_tcphdr_get -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x5342fe36 nf_reject_skb_v4_unreach -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x5c495b9f nf_send_unreach -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x8514d312 nf_reject_iphdr_put -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x9412c226 nf_reject_ip_tcphdr_put -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xf2fdd95e nf_reject_skb_v4_tcp_reset -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xfb7f25f5 nf_send_reset -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_socket_ipv4 0x9852f1ef nf_sk_lookup_slow_v4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x1c827087 nf_tproxy_get_sock_v4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0xa7ff0d65 nf_tproxy_laddr4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0xdc5bf003 nf_tproxy_handle_time_wait4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0x379e2dc4 nft_fib4_eval_type -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0x8d2e23a2 nft_fib4_eval -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xb366b093 tcp_vegas_get_info -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xc68afd25 tcp_vegas_init -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xceecb893 tcp_vegas_state -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xf1594400 tcp_vegas_cwnd_event -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xfab15ab2 tcp_vegas_pkts_acked -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x17f6bd1f udp_tun_rx_dst -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x8026c1d1 udp_tunnel_drop_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x8c07aab9 udp_tunnel_xmit_skb -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x91f1f4d4 udp_tunnel_notify_add_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x937234b5 setup_udp_tunnel_sock -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xa0df7ad7 udp_tunnel_sock_release -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xb79168c2 udp_tunnel_push_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xbf98fcef udp_tunnel_notify_del_rx_port -EXPORT_SYMBOL_GPL net/ipv6/esp6 0x28251b3d esp6_input_done2 -EXPORT_SYMBOL_GPL net/ipv6/esp6 0x5292829a esp6_output_tail -EXPORT_SYMBOL_GPL net/ipv6/esp6 0xaf0b4a3e esp6_output_head -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x18f782f5 ip6_tnl_encap_setup -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x229dfd10 ip6_tnl_xmit_ctl -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x704c71da ip6_tnl_rcv_ctl -EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x6d62d1c9 udp_sock_create6 -EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0xc893e2c6 udp_tunnel6_xmit_skb -EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0xb592ed54 ip6t_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x07dbb7c4 nf_ct_frag6_gather -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x834f3710 nf_defrag_ipv6_disable -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xcc4c84c4 nf_defrag_ipv6_enable -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0xf56176bc nf_dup_ipv6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x083b830e nf_reject_skb_v6_unreach -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x2f59b62e nf_send_reset6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x6847941f nf_reject_ip6hdr_put -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x8d3be93e nf_reject_ip6_tcphdr_put -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x9d9ecb3f nf_send_unreach6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xa2feb9de nf_reject_ip6_tcphdr_get -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xfa9d0aa2 nf_reject_skb_v6_tcp_reset -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_socket_ipv6 0x1f355086 nf_sk_lookup_slow_v6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x0c129fae nf_tproxy_get_sock_v6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x7a4b3f50 nf_tproxy_handle_time_wait6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x9814cd8a nf_tproxy_laddr6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0x7f86410a nft_fib6_eval_type -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0xa8cfd780 nft_fib6_eval -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x0084457a l2tp_tunnel_inc_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x01f937e4 l2tp_session_inc_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x1ab37153 l2tp_tunnel_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x288b6ca7 l2tp_session_set_header_len -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x2ef98172 l2tp_session_get -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x3074e214 l2tp_tunnel_register -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x38d2fa8c l2tp_session_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x4275d5a4 l2tp_sk_to_tunnel -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x45422108 l2tp_xmit_skb -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x5a158c61 l2tp_tunnel_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x6ba76b54 l2tp_tunnel_get_session -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x8ae739d0 l2tp_tunnel_get_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x97e72228 l2tp_session_get_by_ifname -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xa1518f13 l2tp_session_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb1fbf815 l2tp_session_dec_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xc871134e l2tp_session_register -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd94ad887 l2tp_tunnel_dec_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xe98887d6 l2tp_session_get_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xee93a830 l2tp_recv_common -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf1ef20bc l2tp_tunnel_get -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xfdabad07 l2tp_udp_encap_recv -EXPORT_SYMBOL_GPL net/l2tp/l2tp_ip 0xa9549151 l2tp_ioctl -EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x1eff38a6 l2tp_nl_register_ops +EXPORT_SYMBOL_GPL net/ipv4/esp4 0x3ce9e936 esp_output_head +EXPORT_SYMBOL_GPL net/ipv4/esp4 0x6428d3d8 esp_input_done2 +EXPORT_SYMBOL_GPL net/ipv4/esp4 0xe9cbf4c5 esp_output_tail +EXPORT_SYMBOL_GPL net/ipv4/gre 0x5663f1b9 gre_del_protocol +EXPORT_SYMBOL_GPL net/ipv4/gre 0x872e7796 gre_add_protocol +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x071fcfa8 inet_diag_msg_common_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x09ff1277 inet_diag_find_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x3c54ccdb inet_sk_diag_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x4885877b inet_diag_msg_attrs_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x4ee1ab91 inet_diag_register +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x7367f698 inet_diag_bc_sk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x8e6026b2 inet_diag_unregister +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x9d3c12dc inet_diag_dump_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xe850fb96 inet_diag_dump_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0xcccc6e3d gretap_fb_dev_create +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x1b11a457 ip_tunnel_delete_nets +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x2706c1bb ip_tunnel_lookup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x3fa88a39 ip_tunnel_changelink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x4e8b87e4 ip_tunnel_siocdevprivate +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x4f3d62ab ip_tunnel_init +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x62d91b8a __ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x64940684 ip_tunnel_newlink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x8046ec74 ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x93c1c339 ip_md_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x9fa4996f ip_tunnel_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xa404092e ip_tunnel_uninit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xaef35752 ip_tunnel_dellink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xb71cdc4b ip_tunnel_ctl +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xd32f8242 ip_tunnel_encap_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xe0378e29 ip_tunnel_rcv +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xe5e92141 ip_tunnel_init_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xead1323b ip_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0xb17849fc arpt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0x459c9027 ipt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x84950583 nf_defrag_ipv4_disable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0xe126346f nf_defrag_ipv4_enable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0xe04b5751 nf_dup_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x086955c8 nf_reject_skb_v4_tcp_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x1b65aa11 nf_reject_ip_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x29967d60 nf_send_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x3388ee9b nf_reject_ip_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x52319635 nf_reject_iphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x7ec90c30 nf_send_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xca88ba94 nf_reject_skb_v4_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_socket_ipv4 0x3c03f504 nf_sk_lookup_slow_v4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x36a85ec1 nf_tproxy_laddr4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x7e486b41 nf_tproxy_get_sock_v4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x837e59aa nf_tproxy_handle_time_wait4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0x6d87c816 nft_fib4_eval_type +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0x79e0ec85 nft_fib4_eval +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x04144dbf tcp_vegas_pkts_acked +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x6db99d11 tcp_vegas_init +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x7a15938d tcp_vegas_cwnd_event +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x85ce745b tcp_vegas_get_info +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x96b4d2cf tcp_vegas_state +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x0207c20a udp_tunnel_drop_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x17ad16c6 udp_tun_rx_dst +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x2535d93a udp_tunnel_notify_del_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x77f6facc setup_udp_tunnel_sock +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x7bbbb297 udp_tunnel_push_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xa19a9f50 udp_tunnel_notify_add_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xec31bb54 udp_tunnel_sock_release +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xf8dba74a udp_tunnel_xmit_skb +EXPORT_SYMBOL_GPL net/ipv6/esp6 0xc6b50501 esp6_output_tail +EXPORT_SYMBOL_GPL net/ipv6/esp6 0xc8655605 esp6_output_head +EXPORT_SYMBOL_GPL net/ipv6/esp6 0xca623823 esp6_input_done2 +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x469ea4e0 ip6_tnl_rcv_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x5f641504 ip6_tnl_xmit_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xaccf5bc3 ip6_tnl_encap_setup +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x29eb8b6e udp_sock_create6 +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x6874e364 udp_tunnel6_xmit_skb +EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0x887c1255 ip6t_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x8c1a8636 nf_ct_frag6_gather +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x9eabcb0e nf_defrag_ipv6_disable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xbefe2fcb nf_defrag_ipv6_enable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0xcb07216f nf_dup_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x5740be0f nf_send_unreach6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x6f87a2f4 nf_reject_ip6_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x8222fd9a nf_reject_ip6hdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x87430919 nf_send_reset6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xa3e8c49a nf_reject_ip6_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xcb5513ba nf_reject_skb_v6_unreach +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xfe31f75f nf_reject_skb_v6_tcp_reset +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_socket_ipv6 0xbb64546d nf_sk_lookup_slow_v6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x312317ee nf_tproxy_laddr6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x58daf93d nf_tproxy_get_sock_v6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0xb9743eaf nf_tproxy_handle_time_wait6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0x028b5e92 nft_fib6_eval +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0x31f88c22 nft_fib6_eval_type +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x0829bb6e l2tp_session_set_header_len +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x12f9fa83 l2tp_recv_common +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x175477e7 l2tp_tunnel_dec_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x2625b782 l2tp_tunnel_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x31a5e00e l2tp_session_register +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x44d9315a l2tp_tunnel_get_session +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x456b34d3 l2tp_session_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x634dc5e0 l2tp_tunnel_get +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x69a9f6a7 l2tp_session_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x76e288d3 l2tp_udp_encap_recv +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x867ee9a8 l2tp_xmit_skb +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x993aae75 l2tp_tunnel_inc_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xa45edf2e l2tp_session_dec_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xcad51bef l2tp_tunnel_register +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xdbb7363a l2tp_session_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xee7d13a4 l2tp_session_get_by_ifname +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf46acedf l2tp_session_inc_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf663dbd4 l2tp_tunnel_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf6917401 l2tp_tunnel_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xfc15357e l2tp_session_get +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xfe323320 l2tp_sk_to_tunnel +EXPORT_SYMBOL_GPL net/l2tp/l2tp_ip 0x7bdc3972 l2tp_ioctl +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x166fa19e l2tp_nl_register_ops EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x04c4b538 ieee80211_calc_tx_airtime -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x0854bf5f ieee80211_vif_to_wdev -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x0869bfcf ieee80211_calc_rx_airtime -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x0953b19f ieee80211_remain_on_channel_expired -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x303fc5cb wdev_to_ieee80211_vif -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x383562ed ieeee80211_obss_color_collision_notify +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x043574b4 ieee80211_color_change_finish +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x0fb728ad ieee80211_iter_chan_contexts_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x1228077d ieee80211_request_smps +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x1ad5ff27 ieee80211_remain_on_channel_expired +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x1b279fec ieee80211_calc_rx_airtime +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x2140d6c7 ieee80211_find_sta_by_ifaddr +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x2bda8b21 ieee80211_ave_rssi +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x30a0a504 ieee80211_vif_to_wdev +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x48953fec ieee80211_calc_tx_airtime EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x5250cf98 ieee80211_tkip_add_iv EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x59c13bed ieee80211_key_mic_failure -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x6600a589 ieee80211_iterate_stations_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x6d72bdda ieee80211_gtk_rekey_notify -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x709d9959 ieee80211_iterate_interfaces -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x71926d95 ieee80211_gtk_rekey_add -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x76d0739a ieee80211_update_mu_groups -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x98ba30a6 ieee80211_iterate_active_interfaces_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7469d4dc ieeee80211_obss_color_collision_notify +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7a54ac70 ieee80211_iterate_stations_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7fbf996b ieee80211_resume_disconnect +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x96482e2f ieee80211_update_mu_groups +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x9ec79952 ieee80211_gtk_rekey_notify EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xa1247034 ieee80211_remove_key EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xa4b2b77e ieee80211_key_replay -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xa7491bc3 ieee80211_ave_rssi -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd24df624 ieee80211_iter_chan_contexts_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd5c3e840 ieee80211_ready_on_channel +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xac887916 ieee80211_ready_on_channel +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xaf563dcd ieee80211_iterate_active_interfaces_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xb9578589 ieee80211_gtk_rekey_add +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd015c445 ieee80211_iterate_interfaces +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd7184c71 wdev_to_ieee80211_vif EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd8e09da4 ieee80211_set_key_rx_seq -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xece95707 ieee80211_resume_disconnect -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xee2c0925 ieee80211_color_change_finish -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf1096e7a ieee80211_request_smps -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xfbfbf8b7 ieee80211_iterate_active_interfaces_mtx -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xfed629f3 ieee80211_find_sta_by_ifaddr -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x03ef08f7 mpls_output_possible -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x5bd5197c nla_put_labels +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf400457e ieee80211_iterate_active_interfaces_mtx +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x3bfecc81 mpls_output_possible +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x45d19259 mpls_stats_inc_outucastpkts EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x7670b536 nla_get_labels -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xe292282a mpls_dev_mtu -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xf4564148 mpls_pkt_too_big -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xfe25fa2b mpls_stats_inc_outucastpkts -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x05af5012 ip_set_put_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x0892018d ip_set_del -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x1c1324c7 ip_set_put_flags -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x1d0ed98c ip_set_type_register +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x9ba4a0c7 mpls_pkt_too_big +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xaadd3a30 mpls_dev_mtu +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xb4ee4d51 nla_put_labels +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x03095913 ip_set_type_register +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x0ac2489a ip_set_nfnl_get_byindex EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x22d966c6 ip_set_range_to_cidr -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x26b5aa37 ip_set_get_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x334f3298 ip_set_match_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x35bffe14 ip_set_get_byname +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x2b30505f ip_set_match_extensions EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x4a6e3a0d ip_set_test -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x4e00d6ae ip_set_nfnl_get_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x530d2c71 ip_set_nfnl_put -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x74c52d8a ip_set_put_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x75186562 ip_set_get_ip6_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x39968999 ip_set_put_flags +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x50df8d83 ip_set_get_ip6_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x56146dfb ip_set_add +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x72383e12 ip_set_get_ip4_port EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7924b6de ip_set_hostmask_map EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x81fff2d1 ip_set_netmask_map -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x87a7188e ip_set_add -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x87beb5d2 ip_set_init_comment +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x84a03e73 ip_set_elem_len +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x896af159 ip_set_get_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x899381fa ip_set_type_unregister +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x987f4d43 ip_set_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9d97bf99 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 0xaa4e5350 ip_set_get_ip4_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xc23775ec ip_set_elem_len -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xc454008e ip_set_name_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xc991d997 ip_set_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf2d2b1ce ip_set_type_unregister +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xabd5e1af ip_set_put_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xb014bbee ip_set_get_byname +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xb5d8f29d ip_set_nfnl_put +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xb7458b9d ip_set_init_comment +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xba1e290b ip_set_del +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xe0a61049 ip_set_test +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xe6d18152 ip_set_put_extensions EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf3b4d4ae ip_set_alloc -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x12cddb95 register_ip_vs_pe -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x59fbc245 ip_vs_conn_in_get_proto -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xb7ef02fa unregister_ip_vs_pe -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xcc7b4901 ip_vs_conn_out_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x0bf52596 register_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x0f19c244 ip_vs_conn_out_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x2f1f2340 unregister_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x37fe26b8 ip_vs_conn_in_get_proto EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x162e96f1 nf_conncount_cache_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x18813c59 nf_conncount_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x23d2bf1a nf_conncount_count -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x352e5478 nf_conncount_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xb8ff6103 nf_conncount_gc_list -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xd8e3e380 nf_conncount_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x4d605e3d nf_conncount_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x5d74596b nf_conncount_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xaae412a8 nf_conncount_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xe2ae0585 nf_conncount_count +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xebd996e6 nf_conncount_gc_list EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xf2728e70 nf_conncount_list_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x004ec982 nf_ct_seq_offset +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x00efea4a nf_ct_helper_expectfn_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x067a3bb9 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 0x0e40f13c __nf_conntrack_helper_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0fb220be nf_ct_expect_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x11d2f642 nf_ct_unexpect_related -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x12ec238a nf_ct_expect_iterate_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x13184d42 nf_ct_helper_log -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x162caf05 nf_conntrack_helper_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1b60b7c9 nf_ct_timeout_put_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x20116d79 nf_ct_seq_adjust -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2422c8df nf_ct_kill_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0bcd2e40 nf_ct_seq_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0c6f6761 __nf_ct_refresh_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0d001ee4 nf_nat_helper_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x172432cb nf_ct_tcp_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1ab4dc38 nf_ct_helper_log +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1ff0961a nf_conntrack_tuple_taken +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2072e000 __nf_ct_expect_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2240f169 nf_ct_tmpl_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x231ecf01 nf_conntrack_alter_reply +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x25021bd6 nf_ct_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x253bea73 nf_ct_netns_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x25f7d2dd 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 0x2933f70a nf_nat_helper_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2dcb91ec nf_ct_seqadj_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2f9f9bd5 nf_connlabels_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3b089f0e nf_ct_expect_iterate_net -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3c15f79e nf_conntrack_tuple_taken -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3c7e442b nf_confirm -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3ce31615 nf_nat_helper_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x423dc4e8 nf_l4proto_log_invalid -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x44606c37 nf_conntrack_count -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x451c7f6c nf_ct_helper_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x456b8b9d nf_conntrack_helper_try_module_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x49824efb nf_ct_timeout_find_get_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4c3243f2 nf_ct_deliver_cached_events -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4f1031ac nf_ct_get_id -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4f2bfe98 __nf_ct_expect_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x509706d2 nf_ct_helper_expectfn_find_by_symbol -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x538772e5 nf_ct_l4proto_log_invalid -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x55423cd8 nf_conntrack_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x61ce4781 nf_conntrack_alter_reply -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x684b63d8 nf_conntrack_eventmask_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x28f2d8e5 nf_ct_helper_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2c5241c3 nf_ct_unlink_expect_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2cfe9efe nf_ct_expect_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2e7fd145 nf_ct_unexpect_related +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x327523d6 nf_ct_gre_keymap_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x341fe298 nf_conntrack_helper_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3896c835 nf_ct_delete +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3c65b59e nf_ct_port_tuple_to_nlattr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x420cb339 nf_ct_extend_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4ba692ed nf_ct_expect_related_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4cb354d0 nf_ct_helper_expectfn_find_by_symbol +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x554d1e84 nf_connlabels_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5c1b099a nf_ct_seqadj_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5e9e976e __nf_conntrack_helper_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x606ccf8f nf_ct_remove_expectations +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x64800c88 nf_conntrack_hash_check_insert +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x650748b4 nf_conntrack_eventmask_report EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x693c3961 nf_ct_helper_hash -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x697f6838 nf_ct_l4proto_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6b5dbb38 nf_nat_helper_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6ce080aa nf_conntrack_helper_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6f0077a6 nf_connlabels_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6f5ea786 nf_ct_helper_expectfn_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x72d5356b nf_ct_untimeout -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x74c813ae nf_conntrack_unregister_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x75e1fb4c nf_ct_get_tuplepr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7db4ce63 nf_ct_netns_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7db644fb nf_conntrack_in -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7e2216d5 nf_ct_unconfirmed_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x824afcaf nf_ct_set_timeout -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8a2c96f7 nf_conntrack_helpers_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6ccf332c nf_ct_untimeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6fe65a4f nf_ct_remove_expect +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x71b8c67c nf_ct_netns_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x765821cd nf_conntrack_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x766ecfbf nf_conntrack_in +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7c3f9737 nf_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7da92248 nf_ct_set_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7f041e80 nf_ct_set_auto_assign_helper_warned +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7f47161d nf_ct_timeout_put_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x862f25a2 nf_ct_iterate_cleanup_net +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x87a8f7c7 nf_ct_helper_expectfn_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x89aaee33 nf_ct_unconfirmed_destroy EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8a66c4fc nf_conntrack_expect_lock -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ce6a0a1 nf_ct_destroy_timeout -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8efc6350 nf_conntrack_helpers_register EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ffe7e89 nf_conntrack_htable_size -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9088cf79 __nf_conntrack_confirm -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x97769224 nf_ct_gre_keymap_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x979149ea nf_ct_helper_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9a459983 nf_conntrack_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9c760ed8 nf_connlabels_replace -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9caabe5b nf_conntrack_hash_check_insert -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa41bc540 nf_ct_port_tuple_to_nlattr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa4a1c87a nf_ct_helper_expectfn_find_by_name -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa4a3ae77 nf_ct_expect_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xaa3b9a3f nf_ct_remove_expect +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x90fbc0ff nf_ct_bridge_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9234f30c nf_ct_expect_iterate_net +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9a751088 nf_ct_acct_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9e6fa90e nf_ct_iterate_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa0250207 nf_conntrack_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa0f489a8 nf_conntrack_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa2c38f2e nf_ct_tmpl_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa4b01a88 nf_ct_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa6cdd567 nf_nat_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xaa29b46d nf_conntrack_helper_try_module_get EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xafbd6cf5 nf_ct_port_nlattr_to_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb3707450 nf_ct_expect_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb467e8dc nf_ct_acct_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb614c87c __nf_ct_refresh_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xba216e1a nf_conntrack_register_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbf0188c9 nf_ct_helper_expectfn_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbf293318 nf_ct_gre_keymap_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xafbfa1e9 nf_ct_extend_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb0c42092 nf_ct_bridge_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb15e1495 nf_ct_l4proto_log_invalid +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb783a2b1 nf_ct_timeout_find_get_hook EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc18ac88d nf_ct_expect_hsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc1a121b6 __nf_ct_try_assign_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc268d110 nf_conntrack_count +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc35a6bf0 nf_ct_destroy_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc3af2e57 nf_conntrack_helper_register EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc40f284c nf_ct_helper_hsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc8969037 nf_ct_expect_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc8f87f52 nf_conntrack_helper_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcd152820 nf_ct_tmpl_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcefe15f4 nf_ct_bridge_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd3483418 nf_ct_iterate_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc8787d05 nf_ct_expect_iterate_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xca5f4398 nf_l4proto_log_invalid +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcc169bf2 nf_ct_seq_offset +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcc290e80 nf_connlabels_replace +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd041a5bf nf_ct_get_tuplepr EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd505c3e0 nf_ct_port_nlattr_tuple_size -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd907f27a nf_ct_iterate_cleanup_net -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xda7b6852 nf_ct_tmpl_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdc5ab097 nf_ct_remove_expectations -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdef91b54 nf_ct_tcp_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd6c0bc56 nf_ct_get_id +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd7664a9f nf_conntrack_unregister_notifier EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdf0aed48 nf_ct_port_nla_policy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe056f417 nf_ct_netns_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe291f1e8 nf_conntrack_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe735efa1 nf_ct_unlink_expect_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xeae27521 nf_ct_bridge_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe08ec701 nf_connlabels_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe3163241 nf_ct_kill_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe363db09 nf_nat_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe3f36831 __nf_ct_try_assign_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe61d02d7 nf_ct_gre_keymap_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe995bff7 __nf_conntrack_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xeaa572a9 nf_ct_expect_init EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xec8beba6 nf_ct_expect_hash -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xee989246 nf_ct_expect_related_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xede8147e nf_ct_expect_alloc EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xeebad536 nf_conntrack_lock -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf3737d27 nf_ct_extend_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf0b234e6 nf_conntrack_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf0e72678 nf_ct_expect_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf0ec54d0 nf_ct_helper_ext_add EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf5d116b3 nf_ct_extend_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf6f94500 nf_ct_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf68c65b1 nf_ct_deliver_cached_events +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf8df8c6a nf_conntrack_helpers_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfd166c54 nf_conntrack_helpers_register EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfe731af8 nf_ct_invert_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xff00e5f7 nf_ct_delete EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xff40b965 nf_conntrack_locks -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0x50292eeb nf_nat_amanda_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0xaf9b6462 nf_conntrack_broadcast_help -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0x5975a113 nf_nat_ftp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x09e781b2 nat_h245_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x32c3f294 set_ras_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x48ed9ea3 nat_t120_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x867124c0 nat_rtp_rtcp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x8fe7492f set_h225_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xa6b6953d set_h245_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xcb8d505c set_sig_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xd540b188 nat_callforwarding_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xe29af8a1 nat_q931_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xec980ab4 get_h225_addr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0x3b388257 nf_nat_irc_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x1efeac30 nf_nat_pptp_hook_exp_gre -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x1ff8b286 nf_nat_pptp_hook_expectfn -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x50bc2fde nf_nat_pptp_hook_outbound -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x69447551 nf_nat_pptp_hook_inbound -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x2f335366 ct_sip_parse_address_param -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x32030a9f ct_sip_parse_numerical_param -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x3b6009d8 nf_nat_sip_hooks -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x6bce16bc ct_sip_get_header -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xb29bdcca ct_sip_get_sdp_header -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xd55f6228 ct_sip_parse_request -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xfad59ede ct_sip_parse_header_uri -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0x8fa70642 nf_nat_snmp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0x0361ec3b nf_nat_tftp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x1820d2f3 nf_fwd_netdev_egress -EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0xacc01ace nft_fwd_dup_netdev_offload -EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0xc47c7fd2 nf_dup_netdev_egress -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x0c6221ee nf_flow_offload_ip_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x117f1f17 flow_offload_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x141ae5d0 nf_flow_table_cleanup -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x202eaf71 flow_offload_teardown -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x23bc9b03 nf_flow_rule_route_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x2ca194c2 flow_offload_refresh -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x38ac9ff2 flow_offload_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x4c506fc8 nf_flow_dnat_port -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x62b77c46 nf_flow_table_init -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x64853f01 flow_offload_route_init -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x732d632f flow_offload_add -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x8cdeb641 nf_flow_snat_port -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xab44377d nf_flow_rule_route_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xb50a7f02 nf_flow_offload_ipv6_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xc424fb27 nf_flow_table_offload_setup -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xd688621b nf_flow_table_free -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xe194f3c7 flow_offload_free -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x090d399d nf_nat_inet_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x16c8c26e nf_nat_masquerade_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x351302b6 nf_nat_ipv4_register_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3705460d nf_nat_icmpv6_reply_translation +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0x99bd592f nf_nat_amanda_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0xb047a32e nf_conntrack_broadcast_help +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0xc22045a6 nf_nat_ftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x0d7d512a nat_h245_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x19587fbc set_h245_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x2dd084a9 nat_rtp_rtcp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x57b3579c get_h225_addr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x666b4dc8 set_ras_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x6857a772 set_h225_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x7290fc0a nat_callforwarding_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x79a5fc63 nat_t120_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x938a0eb3 nat_q931_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xd29b2dec set_sig_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0xdac5eeed nf_nat_irc_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x029563b9 nf_nat_pptp_hook_expectfn +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x78bdf18a nf_nat_pptp_hook_exp_gre +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xb1d07bab nf_nat_pptp_hook_inbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xbc53329e nf_nat_pptp_hook_outbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x3cf8057f ct_sip_parse_header_uri +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x5b3bf277 ct_sip_parse_request +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x80745d9f ct_sip_parse_address_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xa04ccf69 ct_sip_parse_numerical_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xcbfa9480 ct_sip_get_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xd53cdf62 nf_nat_sip_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xf826dea2 ct_sip_get_sdp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0x6591a62c nf_nat_snmp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0xd74ad421 nf_nat_tftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0xb5c52d16 nf_dup_netdev_egress +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0xe20b2aca nf_fwd_netdev_egress +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0xee465f57 nft_fwd_dup_netdev_offload +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x0168dd08 flow_offload_add +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x0a67ba09 nf_flow_table_cleanup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x0d25e722 nf_flow_offload_ip_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x2ad3a70c flow_offload_free +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x2f7c5b93 nf_flow_dnat_port +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x35f4579c nf_flow_rule_route_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x373b6962 nf_flow_table_offload_setup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x3ceae05b nf_flow_rule_route_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x5fa60f7f nf_flow_table_free +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x7838c598 flow_offload_teardown +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x7d1a5fa1 nf_flow_table_init +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x88d67911 nf_flow_offload_ipv6_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xb5229774 flow_offload_route_init +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xc3655cda nf_flow_snat_port +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xdacf7d0b flow_offload_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xdb55f030 flow_offload_refresh +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xecf94dba flow_offload_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x07ad5939 nf_nat_redirect_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x13f0a110 nf_nat_icmpv6_reply_translation +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x1a4de0be nf_nat_ipv6_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x21d430b9 nf_nat_redirect_ipv6 EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3bc17c49 nf_nat_masquerade_inet_register_notifiers -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x494b002a nf_nat_packet -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x4dc5de04 nf_nat_redirect_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x5a4e3a31 nf_ct_nat_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x5c04dc1d nf_nat_ipv4_unregister_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x86ccecef nf_nat_inet_unregister_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x9af2f050 nf_nat_masquerade_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x9c982b3d nf_nat_redirect_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd6b047ba nf_nat_ipv6_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x424a6230 nf_nat_ipv4_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x62c3be7b nf_nat_masquerade_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x73762074 nf_ct_nat_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xa06cfd5a nf_nat_inet_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xb365ee46 nf_nat_icmp_reply_translation +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xb7882701 nf_nat_ipv4_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xc0d77db1 nf_nat_alloc_null_binding +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xc960fbd7 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 0xdaee3c1b nf_nat_inet_register_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xebad195a nf_nat_alloc_null_binding -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xf607c5ad nf_nat_ipv6_unregister_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xfa3463ae nf_nat_icmp_reply_translation -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x0aef8ca3 ipv6_synproxy_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x1ddaf79a nf_synproxy_ipv4_init +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xdb6b6f1f nf_nat_inet_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xdd68a727 nf_nat_masquerade_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xe9a5ba39 nf_nat_inet_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xfca514c2 nf_nat_packet +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x1083d5b7 ipv4_synproxy_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x19ac370b nf_synproxy_ipv6_init +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x1e169f9c 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 0x46fdf9dd synproxy_send_client_synack -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x5b586c7a nf_synproxy_ipv6_fini -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x6eb026b4 synproxy_recv_client_ack -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x78c8badf ipv4_synproxy_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x8aa50496 nf_synproxy_ipv4_fini -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x98e616a9 synproxy_parse_options -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xc29843b8 synproxy_recv_client_ack_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x26937185 synproxy_send_client_synack_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x4025b080 nf_synproxy_ipv6_fini +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x479f1817 nf_synproxy_ipv4_init +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x957cf694 synproxy_recv_client_ack +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xa82ae051 synproxy_recv_client_ack_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xc235a58e ipv6_synproxy_hook EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xca9fc082 synproxy_net_id -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xcc279f76 nf_synproxy_ipv6_init -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xdb4c8e3a synproxy_send_client_synack_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x02d76ae7 nf_tables_deactivate_flowtable -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x035f9b83 nft_meta_set_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xcc3c644f synproxy_parse_options +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xfaa7512f synproxy_send_client_synack EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x06c6ca47 nft_meta_policy -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0be54c46 nft_do_chain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0f850ee0 nft_set_catchall_gc -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1607cf00 nft_register_flowtable_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x16bd6cb0 nft_unregister_expr -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x181e23ee nft_meta_set_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0bfa97ce nft_request_module +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x16d607ec nft_register_obj +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x17334e43 nft_unregister_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1836768d nft_unregister_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x24dcf992 nf_tables_bind_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2b653f31 nft_set_lookup_global +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3182919a nft_data_dump EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3251d762 nf_tables_trans_destroy_flush_work -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3525e280 __nft_release_basechain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3888508c nft_obj_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3d8c1fa4 nft_meta_get_dump -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3e617769 nft_request_module EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x41b71e65 nft_trace_enabled -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4320ecea nf_tables_destroy_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4bdb7965 nft_meta_set_dump -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4dd7d461 nft_dump_register -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x51bccaf0 nft_register_chain_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x54b04c21 nft_parse_register_store -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5692c64f nft_meta_get_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x447e67c5 nft_parse_register_store +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4608f78b nft_unregister_flowtable_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4f1ab2fa nft_meta_get_init EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5deee9df nft_chain_validate_hooks -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6262542e nft_set_elem_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x68039fdb nft_unregister_flowtable_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6143ec6c nft_obj_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6b55f23b nft_data_init EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6ceabdf5 nft_data_release EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6e0e81b4 nft_chain_validate_dependency -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7d57563a nft_set_lookup_global -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x836c1579 nf_tables_bind_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8af823b8 nf_tables_deactivate_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x949c4f60 nft_meta_get_init -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9746ee9e nft_data_dump -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x99c4ac94 nft_obj_notify -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9f5647c4 nft_data_init -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9feec9a7 nft_register_expr -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb45583dc nft_unregister_chain_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbc1cecfa nft_meta_set_validate -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xca4d3629 nft_flowtable_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcc6a1ba6 nft_register_obj -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcca8a65c nft_unregister_obj +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x76250f9f nft_meta_set_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x78e40307 nft_chain_validate +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7b2374ef nft_meta_set_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x80c2dbb6 nft_set_catchall_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x841f04d9 nft_meta_set_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8b966766 nft_flowtable_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8f2f4cb5 nft_unregister_obj +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x973170ea nft_set_catchall_gc +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9c3091c2 nf_tables_deactivate_flowtable +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa44ae36b nft_register_flowtable_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa48c75f2 nft_register_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa8fa9093 nft_do_chain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb61ff425 nft_meta_get_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc025d9f5 nft_set_elem_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc442ab89 nft_dump_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcc9500d5 nf_tables_destroy_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcd55040d nft_obj_notify +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcf5701f5 nf_tables_deactivate_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd7ca88a1 nft_meta_get_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xdb306e7c nft_meta_set_destroy 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 0xe32dd83a nft_chain_validate -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe8183d2d nft_set_catchall_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xfccea377 nft_meta_set_eval -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x0da16d60 nfnetlink_unicast -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x2da3c804 nfnetlink_subsys_register -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x3bb419d9 nfnetlink_subsys_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xfa24e8e3 nft_meta_set_validate +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xfd6cd1a2 __nft_release_basechain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xfebae446 nft_register_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x0f8375fa nfnetlink_broadcast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x136c8fc5 nfnetlink_subsys_register +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x29264829 nfnetlink_subsys_unregister +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5060098f nfnetlink_set_err EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x6dc54deb nfnetlink_set_err +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x724564ed nfnetlink_unicast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xce8b92bc nfnetlink_has_listeners EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xe014e474 nfnetlink_has_listeners -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xea62765c nfnetlink_broadcast -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xf74735c0 nfnetlink_send -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x321a2c54 nfnl_acct_update -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x594290b0 nfnl_acct_find_get -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x7bb3cfa8 nfnl_acct_overquota +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xe0af7508 nfnetlink_send +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x5b711994 nfnl_acct_overquota +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x92971d61 nfnl_acct_find_get EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbecf5d14 nfnl_acct_put +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xe287b80a nfnl_acct_update +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x1456a5b8 nf_osf_find +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x1457ad4a nf_osf_match EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x35eff5e0 nf_osf_fingers -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x9b7960e5 nf_osf_match -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0xe990b774 nf_osf_find -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x05636e77 nft_fib_store_result -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x721c75af nft_fib_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x74b357eb nft_fib_validate -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xc342484e nft_fib_init -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x135d20df nft_reject_init +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x363d60c0 nft_fib_store_result +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x92c2c27c nft_fib_init +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xc9d955c2 nft_fib_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xe02e0748 nft_fib_validate EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x1de558c1 nft_reject_icmpv6_code +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x28e328bd nft_reject_validate EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x6081751d nft_reject_policy -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x8a154382 nft_reject_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xab654f9d nft_reject_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x6cd2eaff nft_reject_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xb3f14c14 nft_reject_init EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xe2c84666 nft_reject_icmp_code -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x022895c7 xt_compat_match_from_user EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x04e27719 xt_compat_flush_offsets -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x1e36af7b xt_unregister_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x21dd3d13 xt_compat_match_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x247580c3 xt_hook_ops_alloc -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3829cced xt_register_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x46101f0a xt_replace_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x6b099eba xt_compat_target_from_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x720cac8b xt_check_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x05dd098a xt_register_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x09c961a8 xt_table_unlock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x1a65db2d xt_replace_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x21720e4f xt_compat_match_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x2939770d xt_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x304c2a1d xt_request_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x39b7e48e xt_request_find_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x590e3257 xt_hook_ops_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5d7c82c2 xt_proto_init +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5f77374d xt_request_find_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x6485c26c xt_compat_target_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x707b3ea9 xt_unregister_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x76a81469 xt_compat_target_offset EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7bce4603 xt_data_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7d79ba7c xt_unregister_template +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7ddbd83b xt_check_match 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 0x8490b8ba xt_request_find_match -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x8a02627a xt_request_find_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9a6221d0 xt_compat_match_from_user EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9c995c69 xt_percpu_counter_alloc -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa5888c7b xt_register_template EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa7c94f1d xt_compat_lock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa9c26d38 xt_compat_target_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xabbf26c9 xt_compat_match_offset -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xad21f454 xt_check_target -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xb67fc471 xt_request_find_table_lock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xb834c851 xt_unregister_template -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbabe32b5 xt_find_table_lock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbe1aa925 xt_target_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xb505ba60 xt_proto_fini +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbc6f7e98 xt_match_to_user EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbfacb837 xt_percpu_counter_free -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc2ca64a3 xt_compat_target_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc14b71f2 xt_compat_target_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc691ee5b xt_register_template EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc7fae024 xt_compat_calc_jump -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd1b4ecb4 xt_match_to_user EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd1e246a2 xt_compat_unlock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd3b62dd3 xt_check_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd3f7a33c xt_target_to_user EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd3fcc511 xt_tee_enabled EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd9bb821b xt_copy_counters EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xddf68fc6 xt_find_revision -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xdffcecd9 xt_proto_init -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xeaa2f521 xt_table_unlock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xfc680e8d xt_proto_fini -EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x098b63ba xt_rateest_lookup -EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x65e98d7f xt_rateest_put -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x55d8bba0 nci_spi_read -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xe17e785e nci_spi_allocate_spi -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xef29f825 nci_spi_send -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x9bf6bfed nci_uart_unregister -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xa0864f0a nci_uart_register -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xd7608cb0 nci_uart_set_config -EXPORT_SYMBOL_GPL net/nsh/nsh 0x5558fa41 nsh_pop -EXPORT_SYMBOL_GPL net/nsh/nsh 0xd4816c47 nsh_push -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x1388cb7a ovs_netdev_tunnel_destroy -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x1b447dd5 ovs_vport_free -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x5fd6417b __ovs_vport_ops_register -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xc5b29e4a ovs_vport_alloc -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xda4d6b9f ovs_vport_ops_unregister -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xdf631c63 ovs_netdev_link -EXPORT_SYMBOL_GPL net/psample/psample 0x3008e741 psample_group_put -EXPORT_SYMBOL_GPL net/psample/psample 0x3d4fe12d psample_group_get -EXPORT_SYMBOL_GPL net/psample/psample 0x60be3b18 psample_group_take -EXPORT_SYMBOL_GPL net/psample/psample 0xa7430164 psample_sample_packet +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe4ff5350 xt_compat_match_to_user +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x1e421b9b xt_rateest_put +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0xc25e8f1a xt_rateest_lookup +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x1d214092 nci_spi_read +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xabdc7720 nci_spi_allocate_spi +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xd9c075ef nci_spi_send +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x43fb6933 nci_uart_unregister +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x4913aceb nci_uart_set_config +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x6193cdd4 nci_uart_register +EXPORT_SYMBOL_GPL net/nsh/nsh 0x1678cbd5 nsh_push +EXPORT_SYMBOL_GPL net/nsh/nsh 0xec6421cf nsh_pop +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x445746d7 ovs_vport_ops_unregister +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x4fbb8968 ovs_netdev_tunnel_destroy +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x5d13ca01 ovs_vport_alloc +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x7bdd3e02 ovs_vport_free +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xb1d4fa7f __ovs_vport_ops_register +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xf48ba94d ovs_netdev_link +EXPORT_SYMBOL_GPL net/psample/psample 0x34b359ce psample_group_put +EXPORT_SYMBOL_GPL net/psample/psample 0x7ece2db3 psample_sample_packet +EXPORT_SYMBOL_GPL net/psample/psample 0xbab6cf63 psample_group_take +EXPORT_SYMBOL_GPL net/psample/psample 0xdcd5290c psample_group_get EXPORT_SYMBOL_GPL net/qrtr/ns 0x8d25501f qrtr_ns_remove EXPORT_SYMBOL_GPL net/qrtr/ns 0xa47e91ba qrtr_ns_init -EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x2e6157fc qrtr_endpoint_post -EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x4e8b21f8 qrtr_endpoint_register -EXPORT_SYMBOL_GPL net/qrtr/qrtr 0xff4d4343 qrtr_endpoint_unregister +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x0c4291e5 qrtr_endpoint_register +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x19b7b3e8 qrtr_endpoint_post +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x5f3f9723 qrtr_endpoint_unregister EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq -EXPORT_SYMBOL_GPL net/rds/rds 0x04b6df80 rds_conn_connect_if_down -EXPORT_SYMBOL_GPL net/rds/rds 0x0faf876a rds_rdma_send_complete -EXPORT_SYMBOL_GPL net/rds/rds 0x115a5a43 rds_send_path_reset -EXPORT_SYMBOL_GPL net/rds/rds 0x19192fac rds_trans_unregister -EXPORT_SYMBOL_GPL net/rds/rds 0x1c65a571 rds_send_drop_acked -EXPORT_SYMBOL_GPL net/rds/rds 0x25e76c5e rds_trans_register -EXPORT_SYMBOL_GPL net/rds/rds 0x26a5d284 rds_conn_destroy +EXPORT_SYMBOL_GPL net/rds/rds 0x0ad38773 rds_rdma_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x2a34e1f8 rds_trans_register EXPORT_SYMBOL_GPL net/rds/rds 0x2b0d543c rds_message_add_extension EXPORT_SYMBOL_GPL net/rds/rds 0x36087aa4 rds_stats +EXPORT_SYMBOL_GPL net/rds/rds 0x3fe5b83a rds_conn_path_drop EXPORT_SYMBOL_GPL net/rds/rds 0x45a4781e rds_addr_cmp +EXPORT_SYMBOL_GPL net/rds/rds 0x5742745f rds_info_register_func +EXPORT_SYMBOL_GPL net/rds/rds 0x57750c6b rds_send_ping 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 0x5ddee1ca rds_conn_create_outgoing -EXPORT_SYMBOL_GPL net/rds/rds 0x5ec5089c rds_for_each_conn_info -EXPORT_SYMBOL_GPL net/rds/rds 0x646a49d4 rds_info_register_func -EXPORT_SYMBOL_GPL net/rds/rds 0x64d378ab rds_connect_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x633c7563 rds_conn_destroy +EXPORT_SYMBOL_GPL net/rds/rds 0x68533397 rds_conn_path_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0x68d7d892 rds_message_unmapped +EXPORT_SYMBOL_GPL net/rds/rds 0x6efaec21 rds_inc_put +EXPORT_SYMBOL_GPL net/rds/rds 0x78d2bf77 rds_send_path_reset +EXPORT_SYMBOL_GPL net/rds/rds 0x7aaac320 rds_for_each_conn_info EXPORT_SYMBOL_GPL net/rds/rds 0x7b399e66 rds_page_remainder_alloc EXPORT_SYMBOL_GPL net/rds/rds 0x85e4e520 rds_stats_info_copy -EXPORT_SYMBOL_GPL net/rds/rds 0x963fb752 rds_conn_drop -EXPORT_SYMBOL_GPL net/rds/rds 0xa1a95fee rds_info_deregister_func -EXPORT_SYMBOL_GPL net/rds/rds 0xa3f5d1eb rds_inc_init -EXPORT_SYMBOL_GPL net/rds/rds 0xa6f4dcd4 rds_conn_create -EXPORT_SYMBOL_GPL net/rds/rds 0xa8c1f91e rds_atomic_send_complete -EXPORT_SYMBOL_GPL net/rds/rds 0xac4e539d rds_recv_incoming -EXPORT_SYMBOL_GPL net/rds/rds 0xadba8a5f rds_connect_path_complete -EXPORT_SYMBOL_GPL net/rds/rds 0xb464c7ff rds_message_unmapped -EXPORT_SYMBOL_GPL net/rds/rds 0xc0b62eda rds_conn_path_drop +EXPORT_SYMBOL_GPL net/rds/rds 0x8793dd8c rds_info_deregister_func +EXPORT_SYMBOL_GPL net/rds/rds 0x8bf57f68 rds_connect_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x9e47d8bf rds_conn_create_outgoing +EXPORT_SYMBOL_GPL net/rds/rds 0x9ec8da17 rds_conn_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0x9edf0345 rds_inc_init +EXPORT_SYMBOL_GPL net/rds/rds 0xa24d3157 rds_message_addref +EXPORT_SYMBOL_GPL net/rds/rds 0xa4412e83 rds_connect_path_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xacdc395f rds_send_path_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0xb507658f rds_atomic_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xb56e7b8b rds_conn_create +EXPORT_SYMBOL_GPL net/rds/rds 0xb771ea2b rds_inc_path_init EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy -EXPORT_SYMBOL_GPL net/rds/rds 0xc82e9f0c rds_message_put -EXPORT_SYMBOL_GPL net/rds/rds 0xccbd461d rds_send_ping -EXPORT_SYMBOL_GPL net/rds/rds 0xd1c24646 rds_message_addref -EXPORT_SYMBOL_GPL net/rds/rds 0xe040d368 rds_send_path_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0xc800214f rds_trans_unregister +EXPORT_SYMBOL_GPL net/rds/rds 0xce55585e rds_recv_incoming +EXPORT_SYMBOL_GPL net/rds/rds 0xd6e7438b rds_conn_drop +EXPORT_SYMBOL_GPL net/rds/rds 0xd8a204a5 rds_send_xmit +EXPORT_SYMBOL_GPL net/rds/rds 0xdc36c3d2 rds_send_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0xe989dba4 rds_message_put EXPORT_SYMBOL_GPL net/rds/rds 0xee41973e rds_cong_map_updated -EXPORT_SYMBOL_GPL net/rds/rds 0xf0fade08 rds_send_xmit -EXPORT_SYMBOL_GPL net/rds/rds 0xf24a2ba5 rds_inc_path_init -EXPORT_SYMBOL_GPL net/rds/rds 0xf3c4ccfe rds_inc_put -EXPORT_SYMBOL_GPL net/rds/rds 0xfa819e96 rds_conn_path_connect_if_down -EXPORT_SYMBOL_GPL net/sched/sch_pie 0x3cf5eb28 pie_process_dequeue +EXPORT_SYMBOL_GPL net/sched/sch_pie 0x3c64b127 pie_drop_early EXPORT_SYMBOL_GPL net/sched/sch_pie 0x6ce9b467 pie_calculate_probability -EXPORT_SYMBOL_GPL net/sched/sch_pie 0xfdf75c72 pie_drop_early +EXPORT_SYMBOL_GPL net/sched/sch_pie 0xf98edc62 pie_process_dequeue EXPORT_SYMBOL_GPL net/sched/sch_taprio 0x5fc3c6ed taprio_offload_free EXPORT_SYMBOL_GPL net/sched/sch_taprio 0xa7f08102 taprio_offload_get -EXPORT_SYMBOL_GPL net/sctp/sctp 0x291273bf sctp_for_each_endpoint -EXPORT_SYMBOL_GPL net/sctp/sctp 0x47927d4d sctp_transport_traverse_process -EXPORT_SYMBOL_GPL net/sctp/sctp 0x6a8bcdd0 sctp_get_sctp_info -EXPORT_SYMBOL_GPL net/sctp/sctp 0xee2ea138 sctp_transport_lookup_process -EXPORT_SYMBOL_GPL net/smc/smc 0x1984c110 smcd_handle_event -EXPORT_SYMBOL_GPL net/smc/smc 0x3ba82233 smcd_handle_irq -EXPORT_SYMBOL_GPL net/smc/smc 0x40ce246b smcd_unregister_dev -EXPORT_SYMBOL_GPL net/smc/smc 0x56fc8b76 smcd_alloc_dev -EXPORT_SYMBOL_GPL net/smc/smc 0x570ef31b smc_proto6 -EXPORT_SYMBOL_GPL net/smc/smc 0x658fcba9 smcd_free_dev -EXPORT_SYMBOL_GPL net/smc/smc 0x9df8fb23 smc_proto -EXPORT_SYMBOL_GPL net/smc/smc 0xacfa5531 smcd_register_dev -EXPORT_SYMBOL_GPL net/smc/smc 0xba788b87 smc_unhash_sk -EXPORT_SYMBOL_GPL net/smc/smc 0xcac86ed2 smc_hash_sk +EXPORT_SYMBOL_GPL net/sctp/sctp 0x41cf5e2f sctp_for_each_endpoint +EXPORT_SYMBOL_GPL net/sctp/sctp 0x5fdcc621 sctp_transport_lookup_process +EXPORT_SYMBOL_GPL net/sctp/sctp 0x78245e31 sctp_transport_traverse_process +EXPORT_SYMBOL_GPL net/sctp/sctp 0xa7b5fae4 sctp_get_sctp_info +EXPORT_SYMBOL_GPL net/smc/smc 0x57b8441d smcd_unregister_dev +EXPORT_SYMBOL_GPL net/smc/smc 0x70466dcb smcd_register_dev +EXPORT_SYMBOL_GPL net/smc/smc 0x72ba63e4 smcd_free_dev +EXPORT_SYMBOL_GPL net/smc/smc 0x76adca4f smcd_handle_event +EXPORT_SYMBOL_GPL net/smc/smc 0xad2f1ddc smc_unhash_sk +EXPORT_SYMBOL_GPL net/smc/smc 0xad415cc3 smcd_alloc_dev +EXPORT_SYMBOL_GPL net/smc/smc 0xb5c023e3 smc_proto +EXPORT_SYMBOL_GPL net/smc/smc 0xcc420973 smc_proto6 +EXPORT_SYMBOL_GPL net/smc/smc 0xd0fea30d smc_hash_sk +EXPORT_SYMBOL_GPL net/smc/smc 0xf5dd90ef smcd_handle_irq 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 0x48a3c7df svcauth_gss_flavor -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x65bf5986 svcauth_gss_register_pseudoflavor -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x8a00fa90 gss_mech_unregister -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xbdb62450 gss_mech_register +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x7da19dd5 svcauth_gss_register_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x9d64d1ea gss_mech_register EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xd7673035 g_verify_token_header -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x002b5892 rpcauth_lookup_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x006bad7b cache_seq_stop_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x013b15f5 xdr_reserve_space_vec -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05b5337e sunrpc_cache_unregister_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xea5c20eb gss_mech_unregister +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xf74cd07c svcauth_gss_flavor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0039a6da cache_seq_start_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00f5a230 rpc_call_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x02067a21 xprt_unpin_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x024e86ea svc_xprt_init +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x035ebb52 xdr_stream_decode_string_dup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x03746ee8 xprt_force_disconnect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x03a8c3c3 svc_reserve +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0509c54f rpc_num_bc_slots 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 0x06d15f7e svc_age_temp_xprts_now -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x096dd314 rpc_killall_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x09f314ec rpc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0a775a62 rpc_clone_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0b4836ba xdr_read_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f3e6c98 rpc_unlink -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f96ae7c svc_prepare_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x06a12478 rpc_put_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x071170b7 xprt_lookup_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0992b120 svc_print_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0a56b3fe rpc_release_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0c20978f xprt_wake_pending_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0e72bfc0 rpc_shutdown_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0fcc37f4 cache_unregister_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x120a5008 rpc_d_lookup_sb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1217b890 rpc_alloc_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x12416f33 sunrpc_cache_update +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x12d07774 svc_xprt_deferred_close EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x14b462ac rpc_machine_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x14f11330 xdr_process_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x15086337 svc_shutdown_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x160f2fbd rpc_clnt_swap_activate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x17475f60 xprt_register_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x17e8a4f0 rpc_restart_call -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1aaaafdf cache_create_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1b22b7d0 xprt_unpin_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1bf5aabf xprt_pin_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1c3ad1f0 svc_rpcb_setup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1c46c3d3 xprt_request_get_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1db84a13 rpc_run_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x154436f6 rpc_count_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x15b9dc2d xprt_wake_up_backlog +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x15e45c94 cache_register_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1726c84e svc_generic_init_request +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x173dd41b xdr_enter_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x181d9c2b xprt_reconnect_backoff +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x18ff7454 rpc_clnt_swap_activate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x191125e3 svc_alien_sock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x194e4b39 write_bytes_to_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x19a48a96 rpc_max_bc_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1b0c5a50 xprt_unlock_connect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1b81e0c6 csum_partial_copy_to_xdr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1b8e3cc5 svc_reg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1bad431b rpc_mkpipe_dentry +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1c0513d9 sunrpc_destroy_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1cb73773 rpc_clnt_setup_test_and_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1d0f0677 rpc_mkpipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1d38d0b2 rpc_clnt_swap_deactivate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e01f4a8 svc_sock_update_bufs EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e119a79 rpcauth_get_pseudoflavor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e4e7409 sunrpc_cache_register_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1ecdf83e xprt_release_xprt_cong EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f2a9970 rpc_ntop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f95e7d6 rpc_clone_client_set_auth -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x21a653e9 xdr_buf_trim -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x22d3d482 xprt_force_disconnect -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2325f866 svc_addsock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2336a053 rpcauth_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2380312a xprt_lock_connect -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x23e0bf7b rpc_find_or_alloc_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x258d94f8 rpcauth_unwrap_resp_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x270d5300 rpc_uaddr2sockaddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2817a994 bc_svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1fd7f7f2 rpc_clnt_iterate_for_each_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2007f510 svc_destroy +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x21340673 rpc_find_or_alloc_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x22db10bd xprt_pin_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x25263946 rpc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x26d99e6c svc_xprt_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x277d1bb3 rpc_put_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x27e9fdb5 xdr_init_decode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x28ec397b rpc_clnt_add_xprt EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2de6fc00 rpc_put_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2ef5ac5d rpc_malloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x29819e86 rpc_peeraddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x298d8ff3 rpc_sleep_on +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2a3fc47f sunrpc_cache_register_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2b3d18d1 xdr_terminate_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2b98927e gssd_running +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2c87b6fc auth_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2e6e299a xprt_disconnect_done +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2e769404 svc_fill_symlink_pathname +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2e92c7bf rpc_remove_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2fa291b4 xprt_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3093e326 svc_rqst_replace_page EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31fcde2e rpc_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x327856cf svc_rpcb_cleanup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3319a634 svc_xprt_do_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31c7dcdb rpc_pton +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31d46e96 svc_exit_thread EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x34c25cc9 rpc_init_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x37554eba rpcauth_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x384dca8c svc_close_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x384dfb16 xdr_shift_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x35a045eb rpc_sleep_on_priority +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x37857c77 xprt_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x385d2314 svc_seq_show EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x392f58aa xdr_stream_subsegment -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x395b7c11 xprt_unregister_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x39c21579 auth_domain_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3a36ffdf rpc_destroy_pipe_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3abf1b42 svc_auth_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3af87b13 svc_generic_rpcbind_set -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3c573d16 svc_create_pooled -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3d772974 xdr_encode_word -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3dc10e82 xprt_wake_up_backlog -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3e089c42 xprt_disconnect_done -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3e4fead6 svc_rqst_alloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f441290 rpc_proc_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f551913 xdr_reserve_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3a5dbf12 rpc_localaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3bdba5e1 auth_domain_put EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f9a2b0b rpcauth_get_gssinfo -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x414d9923 xprt_adjust_cwnd -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x415d6191 rpc_call_sync -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x42da92ff svc_authenticate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x431226d1 rpc_pton -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x453bb4bb svc_set_num_threads +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x418d7fd0 xdr_buf_from_iov +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x44321072 svc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x44633f95 svc_rqst_alloc EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x453efa54 svc_pool_map -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x46cca864 put_rpccred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x46ce32ab rpc_localaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x48eca9fe rpc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x48f49c2f xdr_reserve_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x48fdcbac xdr_page_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x493fed2f xdr_encode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4a0fffbf rpc_unlink EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4afedab1 xprtiod_workqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4b9bcf40 rpc_add_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4c77f3e4 rpc_release_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4da75227 svc_xprt_received +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4b08364c svc_auth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4babe2ae cache_create_net EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4dac77f0 xdr_encode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4dee4b60 rpc_init_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e544e6c rpc_wake_up_next EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e8f6ca7 sunrpc_net_id -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4eac730d rpc_switch_client_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4ed6b8ba svc_wake_up -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4f3b8942 rpc_setbufsize -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x511a40d0 sunrpc_destroy_cache_detail -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53163e9e rpc_get_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4ed6f0cb rpc_bind_new_program +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4fe2b94c svcauth_unix_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x50eca0db svc_age_temp_xprts_now +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x52314217 rpc_call_sync EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53c7f4cd sunrpc_cache_update -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x545f583a rpc_delay -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x55f99b67 xprt_update_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5744ef68 xprt_alloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5798a306 xprt_wait_for_buffer_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x590e27f6 read_bytes_from_xdr_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x593b9aba unix_domain_find -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x597fc88a rpc_clnt_swap_deactivate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53900851 rpc_put_task_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x549712eb svc_rqst_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x587a5a3a rpc_clnt_test_and_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5911c8fe rpc_proc_register EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a45ba31 svc_auth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5aafad23 rpcauth_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5c1e2114 rpc_get_sb_net EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5c543c40 rpc_wake_up_status -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5cc0ecdf sunrpc_init_cache_detail -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5cc571be xprt_write_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5d38a9c7 sunrpc_cache_pipe_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5d85530d svc_proc_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5df5473e rpc_put_sb_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5e20f4cc rpc_wake_up_first -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5e62a884 rpc_put_task_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x603a24f7 rpc_sleep_on_priority -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x620ed500 svc_reg_xprt_class -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66036a00 svc_seq_show -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x661724af rpc_mkpipe_dentry -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6638c54b xdr_buf_subsegment -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x663b3968 xdr_stream_pos -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66c7f8c6 cache_unregister_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6709b8e4 svc_rpcbind_set_version -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x68a4a056 rpc_force_rebind -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x69fb77de svc_sock_update_bufs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6a0f8875 rpc_shutdown_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6a7736f0 xdr_init_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6a9daba4 rpc_exit -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6acd4c8b xdr_stream_decode_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6af1d826 xprt_wake_pending_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6b0e2584 svc_create_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6b111c90 rpc_bind_new_program -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6b966376 svc_rqst_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6ce5bba0 xprt_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6d61233c xdr_commit_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6ea7ab6c svc_alien_sock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6f3bef8b sunrpc_cache_lookup_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5e34cb9c xdr_encode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5e74484d svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x60594233 xprt_request_get_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x607280aa svc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x61aa8ae8 xdr_stream_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x626427bd cache_seq_next_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x62e05db7 cache_destroy_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x631c8b1c rpc_task_release_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x63295c71 rpcauth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x660ee8dd rpc_restart_call +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x692eb9b6 svc_recv +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6938b128 xprt_reconnect_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6a30d013 _copy_from_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6a3c6aae svc_create_pooled +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6b583282 put_rpccred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6b5c5906 xdr_write_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6b9b3433 xdr_reserve_space_vec +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6d02c594 xdr_commit_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6d6cfb34 xdr_stream_decode_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7082ebf7 svc_find_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71bf49b1 svc_set_num_threads_sync EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fa908a cache_flush -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x72f59b23 rpc_clnt_xprt_switch_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x73939e21 rpcauth_init_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x755657d0 rpc_mkpipe_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x75cd729c rpc_wake_up_next -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x76118e66 svc_generic_init_request -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x76d56b38 rpc_count_iostats_metrics -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x77055cd9 svc_drop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x73c1152f xprt_wait_for_buffer_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x73faa84c svc_xprt_names +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7589aa31 xdr_read_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x767f0c8d rpc_clnt_xprt_switch_has_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x76856444 svc_set_num_threads +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x76ab3332 xprt_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x78575402 xprt_lock_connect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x78df8929 sunrpc_cache_unhash +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7951d918 rpcauth_wrap_req_encode 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 0x7b0c702d xprt_reserve_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7b50f8fa xprt_alloc_slot -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7b9ebef0 write_bytes_to_xdr_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7c4ceeab xprt_free_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7b9bd93a rpc_malloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7bbf9161 xprt_register_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7c71e706 cache_seq_stop_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7c886171 rpc_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7d1a405b xdr_decode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7d3dff1f rpcauth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7d6228b0 rpc_run_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7d7f82b8 rpc_sleep_on_timeout EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de9b97d svc_rqst_replace_page -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7ee6e156 cache_destroy_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80a8b409 rpc_task_release_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x82f7d41f rpc_call_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x82fabe69 svc_xprt_enqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x834902fc rpc_init_pipe_dir_head -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x83fe0278 rpc_count_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x85a82df8 rpc_remove_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8639c3b6 rpcauth_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x866c66ad rpc_max_bc_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x86d16fc9 svc_exit_thread -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x874acb3a cache_purge -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x87dc9266 xdr_expand_hole -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x891ddb5c rpcb_getport_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8affe4d4 svc_proc_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8b0c3524 rpc_peeraddr2str -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8b5f84ad xdr_stream_decode_opaque -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8c3d7b76 xdr_inline_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8f54f6b4 rpc_clnt_xprt_switch_has_addr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8fd2a473 svc_destroy -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x906cec5a xprt_reserve_xprt_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x912c7a3d rpc_clnt_setup_test_and_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9223fe4b csum_partial_copy_to_xdr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x92516338 xprt_complete_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9327f2ff svc_encode_result_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x94918423 svc_reserve -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x968b3d15 xdr_terminate_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x97a2c371 cache_register_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9886de0e svc_xprt_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9995bb97 rpc_sleep_on_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9a2b8f7e xprt_wait_for_reply_request_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9e1851b8 rpc_restart_call_prepare +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7f29f23e rpcb_getport_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8188fab9 rpcauth_lookupcred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x844cf426 svc_generic_rpcbind_set +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x84945df8 svc_prepare_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x87565884 xprt_complete_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8765b234 rpc_prepare_reply_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x87bca947 rpc_task_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x87c2076d xprt_adjust_cwnd +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x88120360 sunrpc_cache_lookup_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x892aad26 xprt_reserve_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8a96ea8b xprt_destroy_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8ba7f1ea unix_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8be9d5d1 rpc_clnt_show_stats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8ca388b8 rpc_add_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8cc5aaff auth_domain_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8d7f0ea7 sunrpc_cache_pipe_upcall_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x90678b6a rpc_call_null +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x91d6293a svc_drop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x94fb01f2 rpc_switch_client_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x95b7b325 xdr_inline_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9c16fd20 xprt_release_rqst_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9f1d21e1 rpc_wake_up_first EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa13acdb8 svc_pool_map_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa186f67f xdr_align_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa1bf523f rpc_prepare_reply_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa3105ca6 rpc_sleep_on -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa5364aeb rpc_pipe_generic_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa5646043 rpc_peeraddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa5e9c65c __rpc_wait_for_completion_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa140fa58 rpc_wake_up_queued_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa14f221f rpc_pipe_generic_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa2421ac7 sunrpc_cache_pipe_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa3c71e8f bc_svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa42484db rpc_clone_client_set_auth +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa498dcb1 xprt_unregister_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa4d9172d rpc_setbufsize EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa60d45d7 rpc_destroy_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa630dbeb gssd_running -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa6d81d76 svc_xprt_copy_addrs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa992f2e1 xprt_release_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xabec42bb _copy_from_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xad4a5f57 xdr_init_decode_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf1dbd7b rpc_clnt_xprt_switch_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa67403b4 svc_fill_write_vector +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa7b720d1 xprt_reserve_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa90b6cdf xprt_write_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaa065820 svc_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaa268a91 xprt_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaac96ece xprt_setup_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xab0a9914 svc_xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xabc80efe svc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xae0fe22a sunrpc_cache_unregister_pipefs EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb13245b3 auth_domain_find -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb201a575 svcauth_unix_purge -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb2126869 cache_check +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb183e2a5 rpc_clnt_xprt_switch_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb20d7724 xdr_expand_hole +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb23385fa svc_xprt_copy_addrs EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb312d0c4 svc_pool_map_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb4028b6f xprt_release_xprt EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb64e3916 rpc_alloc_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb74d0406 svc_find_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb78538b5 xdr_encode_array2 -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb9aa6e59 xprt_add_backlog -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbb7ac48b svc_print_addr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbc5cc95a svc_fill_symlink_pathname -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbc8053c2 svc_process -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbd56af88 svc_xprt_init -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbed8018c rpc_queue_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbef6e180 sunrpc_cache_unhash -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf5aa557 xprt_release_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb779fb25 xdr_decode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xba7fcf88 xdr_stream_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbbbd9457 xprt_add_backlog +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbbee83de rpc_uaddr2sockaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbc8041c6 xdr_process_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbd4bc113 xdr_buf_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbd8f04c7 rpc_count_iostats_metrics +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbed56bed rpc_init_pipe_dir_head EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc05d2e9e cache_seq_start_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc11b7fb6 xdr_stream_decode_opaque_dup EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12435e3 rpc_calc_rto -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc1e812de rpc_d_lookup_sb -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc6a460f4 rpc_clnt_test_and_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc6c61390 svcauth_unix_set_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc71e8a79 svc_bind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc1bd6e5f sunrpc_init_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc1e693e8 cache_check +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc37e3488 rpc_call_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc41714be xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc4cd8bac read_bytes_from_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc4d435b2 rpcauth_stringify_acceptor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc4f8a48e __rpc_wait_for_completion_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc529dd31 svc_create_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc5c44a8e xdr_stream_decode_opaque_dup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc635f15b rpcauth_init_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc66bb3bc rpc_clnt_xprt_switch_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc6b82b63 svc_close_xprt EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc99bcffa xprt_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcbb6d397 rpc_num_bc_slots -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcc283923 rpcauth_init_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcd45cd66 rpc_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcdfb447c svc_set_num_threads_sync -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce19163f rpcauth_wrap_req_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce579fd4 xdr_init_decode EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce678a59 xdr_decode_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcf5d4a84 rpc_init_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd07c8114 svc_xprt_names -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd3c81c58 svc_fill_write_vector -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd50ec607 xprt_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd62ed332 sunrpc_cache_pipe_upcall_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd6c3ea1b xdr_init_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd79df05d xprt_destroy_backchannel -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd7d48088 cache_seq_next_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd816ce6c rpcauth_stringify_acceptor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdb1efa6a rpc_set_connect_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdc050060 rpc_call_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce689750 rpcauth_lookup_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcf460999 xdr_align_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcfc5e496 svcauth_unix_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd4c09ce6 rpc_exit +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd5def06a svc_bind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd6d07554 rpc_destroy_pipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd7244f1f svc_addsock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd7631de2 rpcauth_unwrap_resp_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd7925c83 xdr_inline_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd9d1ab90 rpc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xda3a2d12 xprt_free_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xda9a9142 rpc_peeraddr2str +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdad4bea4 rpc_force_rebind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdb91c231 rpc_clone_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdba4c5bb xprt_wait_for_reply_request_def +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdc066b4b xdr_stream_decode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdcb86781 svc_max_payload EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd691402 xprt_find_transport_ident -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xddf72b70 xprt_wait_for_reply_request_def -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xde148ae4 svc_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdebd68c4 xprt_setup_backchannel -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdef7ea51 rpcauth_destroy_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdf198df7 rpc_net_ns -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdfadefca rpc_wake_up_queued_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe0895014 auth_domain_lookup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1b87831 rpc_proc_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe538caa8 xdr_inline_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdde1250d svc_xprt_received +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xde04b8a6 svc_rpcbind_set_version +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe29c791f svc_shutdown_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe2fe68f9 rpcauth_destroy_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe3969352 xdr_init_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe3fbd298 rpc_sleep_on_priority_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe42d5298 xdr_buf_trim +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe4e4505b rpc_set_connect_timeout EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe6ba22fc xprt_release_rqst_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe6d56667 rpc_task_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe76a1b65 xdr_stream_decode_string_dup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe9337c4e xprt_reconnect_backoff +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe665c555 svc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe68f5c17 rpc_killall_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe8201707 svc_authenticate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe8d3eea4 xdr_shift_buf EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xea432fe6 xdr_write_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xea84e1dd rpc_clnt_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xecb6e90e rpcauth_lookupcred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedb56b77 svc_recv +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xea19146c svc_rpcb_cleanup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xea86070d svc_rpcb_setup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeaf65023 rpc_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xebcf35e2 xprt_wait_for_reply_request_rtt 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 0xeec36f74 rpc_sleep_on_priority_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xef1e3e3f xdr_page_pos -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf27d68f4 xdr_decode_array2 -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf33290cb svc_unreg_xprt_class -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf363eb61 svc_xprt_deferred_close -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf43df4c7 xdr_buf_from_iov -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf49ec71c rpc_call_null -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf5ac44c0 rpc_clnt_show_stats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf6ef4940 xprt_reconnect_delay -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf7ea48c0 rpc_clnt_iterate_for_each_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf8f580e0 xprt_lookup_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf903e845 xdr_enter_page -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfaa17e6d xprt_unlock_connect -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfcf0464f xdr_decode_word -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfd978d64 svc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xefef644a rpc_net_ns +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf0d289a1 xprt_update_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf102628b rpcauth_init_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf1b640e2 svc_encode_result_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf2ebdf5f cache_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf6fd4eca rpc_restart_call_prepare +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf75da3a9 rpc_queue_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf8738c10 svc_xprt_do_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfddf2c12 svc_unreg_xprt_class EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfe26476e rpc_free_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfe8f9b51 svc_set_client -EXPORT_SYMBOL_GPL net/tls/tls 0x1514d12d tls_device_sk_destruct -EXPORT_SYMBOL_GPL net/tls/tls 0x18df11b5 tls_offload_tx_resync_request -EXPORT_SYMBOL_GPL net/tls/tls 0x59633b88 tls_encrypt_skb -EXPORT_SYMBOL_GPL net/tls/tls 0xd1623748 tls_validate_xmit_skb +EXPORT_SYMBOL_GPL net/tls/tls 0x0c6f6bff tls_encrypt_skb +EXPORT_SYMBOL_GPL net/tls/tls 0x890adb9f tls_device_sk_destruct +EXPORT_SYMBOL_GPL net/tls/tls 0x9ad8dc6c tls_offload_tx_resync_request +EXPORT_SYMBOL_GPL net/tls/tls 0x9cb48773 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 0x03cf292b virtio_transport_stream_is_active -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x0a99b25d virtio_transport_stream_has_data -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x0dd702f6 virtio_transport_dgram_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x11399f65 virtio_transport_inc_tx_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x1356a129 virtio_transport_destruct -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x1fcf4eda virtio_transport_get_credit -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2a36f948 virtio_transport_notify_send_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2d2594ac virtio_transport_dgram_bind -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x36e1bb4f virtio_transport_free_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x386dd04b virtio_transport_put_credit -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x3b33bb89 virtio_transport_stream_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x3fb853a4 virtio_transport_notify_recv_pre_block -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x42d47e17 virtio_transport_shutdown -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x43dfce9a virtio_transport_dgram_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x46ef6ad7 virtio_transport_do_socket_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x47da6a7e virtio_transport_notify_recv_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x5efda86a virtio_transport_connect -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x672e3c6a virtio_transport_notify_recv_post_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x6e49674d virtio_transport_stream_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x780a90f4 virtio_transport_recv_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7df82706 virtio_transport_notify_buffer_size -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x828915ff virtio_transport_release -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x8dad79c9 virtio_transport_deliver_tap_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x9884df0c virtio_transport_seqpacket_has_data -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x9b935179 virtio_transport_seqpacket_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xacbe78f4 virtio_transport_notify_send_pre_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb4300104 virtio_transport_notify_recv_pre_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x03c78933 virtio_transport_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x049b897e virtio_transport_seqpacket_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x07b2a91d virtio_transport_notify_send_pre_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x16f9f9a8 virtio_transport_notify_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x27b3406d virtio_transport_stream_rcvhiwat +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x305e55de virtio_transport_notify_poll_out +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x38d92c78 virtio_transport_free_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x4ee314be virtio_transport_stream_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x55d12794 virtio_transport_destruct +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x5b249475 virtio_transport_notify_poll_in +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x610ec430 virtio_transport_get_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x646c99cd virtio_transport_notify_recv_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x64a1f18c virtio_transport_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x682b7f43 virtio_transport_dgram_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x70272178 virtio_transport_deliver_tap_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7415b963 virtio_transport_notify_send_post_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x8ec9d5bb virtio_transport_notify_recv_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x91f8d44e virtio_transport_inc_tx_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x953e63b7 virtio_transport_notify_send_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x9b095390 virtio_transport_notify_send_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa1cb3217 virtio_transport_notify_recv_pre_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xaa6e7bc5 virtio_transport_seqpacket_has_data EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xbabd30f5 virtio_transport_dgram_allow -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xbc32d4ff virtio_transport_notify_poll_out -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xbd08d855 virtio_transport_stream_has_space -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xbe476263 virtio_transport_notify_poll_in -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd05b16ed virtio_transport_notify_send_post_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd53f6b20 virtio_transport_notify_send_pre_block -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf22c79ae virtio_transport_stream_rcvhiwat -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xfc943273 virtio_transport_seqpacket_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x09c4bef3 vsock_remove_bound -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0c060671 vsock_add_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xbe519009 virtio_transport_dgram_bind +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xc4fff236 virtio_transport_release +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xc519d197 virtio_transport_connect +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xca23385d virtio_transport_put_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd123020e virtio_transport_shutdown +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xda63aba2 virtio_transport_recv_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe25b3ce2 virtio_transport_dgram_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe4d8777a virtio_transport_do_socket_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe81ad6ee virtio_transport_stream_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf1253471 virtio_transport_stream_is_active +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf142aa14 virtio_transport_notify_recv_post_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xfb0f95a5 virtio_transport_seqpacket_dequeue EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0e9bc9b6 vsock_addr_unbind -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x20938ad1 vsock_core_get_transport -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2781779f vsock_remove_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x16a6b513 vsock_find_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x16d1952f vsock_remove_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x1cb55f93 vsock_insert_connected EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x284e07d8 vsock_bind_table -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2e21fd1c vsock_remove_connected EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x3ceb1b99 vsock_table_lock EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x3d4b0fca vsock_addr_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x428c4f33 vsock_deliver_tap -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x45e9b145 vsock_enqueue_accept +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4147f815 vsock_assign_transport +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x489eb7f2 vsock_remove_connected EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4b99648c vsock_addr_bound -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4d12472b vsock_core_register -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x6ebb5aa0 vsock_add_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x5f4231c5 vsock_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x66b78b2b vsock_core_get_transport EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x77c14317 vsock_addr_cast -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7b2a1a96 vsock_find_bound_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x83ce8346 vsock_for_each_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x82b725ce vsock_find_bound_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x8a678786 vsock_stream_has_data 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 0xad718f8b vsock_assign_transport +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xa7d93c39 vsock_remove_pending EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xaf2674b5 vsock_addr_equals_addr -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbb852e98 vsock_remove_sock -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbe6e5614 vsock_find_connected_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc4ab095c vsock_insert_connected -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd6cdb79d vsock_remove_tap -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xeb3da9c5 vsock_stream_has_data -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xec61fce8 vsock_core_unregister +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xafb2acee vsock_remove_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbd8bdbf1 vsock_add_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbf1264bb vsock_deliver_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbf96e9fa vsock_core_unregister +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc1392da5 vsock_core_register +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc65cb6c6 vsock_remove_sock +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc6bfbdfb vsock_enqueue_accept +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd01c317d vsock_create_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xe7baa047 vsock_add_tap EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xec96eadf vsock_addr_validate -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xefe1dc5d vsock_create_connected -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf7829a35 vsock_stream_has_space -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x06e21ed5 cfg80211_wext_giwname -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x3477ed0b cfg80211_wext_giwfrag -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x4fc165d3 cfg80211_pmsr_complete -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x53921ed3 cfg80211_shutdown_all_interfaces -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x56352258 cfg80211_pmsr_report -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x6cbdf860 cfg80211_wext_siwrts -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x6d26f5af cfg80211_wext_giwscan -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x6d77e555 cfg80211_wext_siwscan -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x6dec4fe1 cfg80211_wext_giwrange -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x820c942a cfg80211_wext_giwrts -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x85202869 cfg80211_wext_giwretry -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xa290f4e9 cfg80211_wext_siwfrag -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xb5270066 cfg80211_vendor_cmd_reply -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xc47fbd4e cfg80211_vendor_cmd_get_sender -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xcf5dcd47 cfg80211_wext_siwmode -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xff93e78d cfg80211_wext_giwmode +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xfd2be433 vsock_for_each_connected_socket +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x02afc8c9 cfg80211_vendor_cmd_get_sender +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x118c5ac9 cfg80211_pmsr_complete +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x1cc06bff cfg80211_wext_giwretry +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x24fb7ddc cfg80211_wext_giwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x34509c68 cfg80211_wext_siwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x455d2395 cfg80211_wext_siwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x46782a05 cfg80211_pmsr_report +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x51374099 cfg80211_wext_giwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x6ae93241 cfg80211_shutdown_all_interfaces +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x8689dd21 cfg80211_vendor_cmd_reply +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x8e0e4dcd cfg80211_wext_giwrange +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x9f136d01 cfg80211_wext_giwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xb3b9f34b cfg80211_wext_giwname +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xc02b5612 cfg80211_wext_siwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xc3fb70b6 cfg80211_wext_siwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xd10d3176 cfg80211_wext_giwmode 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 @@ -17629,6332 +17668,6390 @@ 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 0x02a3e09a ipcomp_output -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x19b2cef9 ipcomp_input -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x4c196acd ipcomp_init_state -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xf4e76d3b ipcomp_destroy +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x12d7b746 ipcomp_init_state +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x910ab007 ipcomp_input +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xc71e9202 ipcomp_output +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xfbf2ad70 ipcomp_destroy EXPORT_SYMBOL_GPL net/xfrm/xfrm_user 0x4a0c7516 xfrm_msg_min EXPORT_SYMBOL_GPL net/xfrm/xfrm_user 0xe2521b1c xfrma_policy -EXPORT_SYMBOL_GPL sound/ac97_bus 0xbf2d2100 snd_ac97_reset +EXPORT_SYMBOL_GPL sound/ac97_bus 0x97918165 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 0x09304377 snd_ctl_sync_vmaster -EXPORT_SYMBOL_GPL sound/core/snd 0x19432789 snd_ctl_get_preferred_subdevice -EXPORT_SYMBOL_GPL sound/core/snd 0x226cbb61 snd_card_add_dev_attr -EXPORT_SYMBOL_GPL sound/core/snd 0x2bdac5bc snd_ctl_activate_id -EXPORT_SYMBOL_GPL sound/core/snd 0x2e85e1ff snd_ctl_disconnect_layer -EXPORT_SYMBOL_GPL sound/core/snd 0x5ce7870e snd_device_disconnect -EXPORT_SYMBOL_GPL sound/core/snd 0x68373886 snd_ctl_add_vmaster_hook -EXPORT_SYMBOL_GPL sound/core/snd 0x97534c37 snd_devm_request_dma -EXPORT_SYMBOL_GPL sound/core/snd 0xa683d486 snd_card_rw_proc_new -EXPORT_SYMBOL_GPL sound/core/snd 0xacb1fc4b snd_ctl_apply_vmaster_followers -EXPORT_SYMBOL_GPL sound/core/snd 0xb28f6652 snd_power_ref_and_wait -EXPORT_SYMBOL_GPL sound/core/snd 0xb87bcc9e snd_device_initialize -EXPORT_SYMBOL_GPL sound/core/snd 0xc13c072c snd_device_get_state -EXPORT_SYMBOL_GPL sound/core/snd 0xc9b8e852 snd_card_disconnect_sync -EXPORT_SYMBOL_GPL sound/core/snd 0xd17bf61a snd_devm_card_new -EXPORT_SYMBOL_GPL sound/core/snd 0xd296e685 snd_ctl_register_layer -EXPORT_SYMBOL_GPL sound/core/snd 0xd94808a0 snd_card_ref +EXPORT_SYMBOL_GPL sound/core/snd 0x15482f7b snd_card_free_on_error +EXPORT_SYMBOL_GPL sound/core/snd 0x157cd78c snd_card_add_dev_attr +EXPORT_SYMBOL_GPL sound/core/snd 0x2c8ddfe7 snd_ctl_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/core/snd 0x3178595d snd_device_disconnect +EXPORT_SYMBOL_GPL sound/core/snd 0x35207552 snd_power_ref_and_wait +EXPORT_SYMBOL_GPL sound/core/snd 0x3f2d725a snd_ctl_disconnect_layer +EXPORT_SYMBOL_GPL sound/core/snd 0x6bdbf503 snd_ctl_get_preferred_subdevice +EXPORT_SYMBOL_GPL sound/core/snd 0x77b57cd6 snd_card_ref +EXPORT_SYMBOL_GPL sound/core/snd 0x7c616096 snd_ctl_apply_vmaster_followers +EXPORT_SYMBOL_GPL sound/core/snd 0x7de7e858 snd_devm_card_new +EXPORT_SYMBOL_GPL sound/core/snd 0x81c089ca snd_ctl_register_layer +EXPORT_SYMBOL_GPL sound/core/snd 0x88be4d60 snd_devm_request_dma +EXPORT_SYMBOL_GPL sound/core/snd 0x97ec5c6f snd_card_rw_proc_new +EXPORT_SYMBOL_GPL sound/core/snd 0xa1e54038 snd_device_initialize +EXPORT_SYMBOL_GPL sound/core/snd 0xbe73ffcb snd_ctl_sync_vmaster +EXPORT_SYMBOL_GPL sound/core/snd 0xbea543f1 snd_card_disconnect_sync +EXPORT_SYMBOL_GPL sound/core/snd 0xc6e51201 snd_device_get_state EXPORT_SYMBOL_GPL sound/core/snd 0xfaf598c6 snd_ctl_request_layer +EXPORT_SYMBOL_GPL sound/core/snd 0xff123014 snd_ctl_activate_id +EXPORT_SYMBOL_GPL sound/core/snd-compress 0x310a70d8 snd_compress_new +EXPORT_SYMBOL_GPL sound/core/snd-compress 0x3ff4cd77 snd_compr_stop_error EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x04e1b99f snd_pcm_std_chmaps EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x09e913c1 snd_pcm_alt_chmaps -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x2f56ca32 snd_pcm_stream_unlock +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x2c2a1457 snd_pcm_fill_iec958_consumer +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x2e51ce07 snd_pcm_stop_xrun +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x4ac1bd84 snd_pcm_stream_unlock +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x5265bb3f snd_pcm_stream_lock_irq EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x5c407196 snd_pcm_fill_iec958_consumer_hw_params +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x5f897fc2 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 0x64c1192a snd_devm_alloc_pages -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x6b27bf26 snd_pcm_stop_xrun +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x8462f355 snd_pcm_add_chmap_ctls EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x8d864069 snd_pcm_rate_range_to_bits -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x94b304c7 snd_pcm_stream_lock -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x987ec5e6 snd_pcm_stream_unlock_irqrestore EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xa286a234 snd_pcm_format_name +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xa98d4eb7 snd_pcm_stream_unlock_irqrestore EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xab8bc1a2 snd_pcm_rate_mask_intersect -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xb343ba49 snd_pcm_stream_lock_irq -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xcc9c00a0 _snd_pcm_stream_lock_irqsave -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xd63c7860 snd_pcm_hw_constraint_eld -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xd7e5de08 snd_pcm_lib_default_mmap -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xe6708a3b snd_pcm_stream_unlock_irq -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xfbff7c64 snd_pcm_add_chmap_ctls -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xfd15c2d9 snd_pcm_fill_iec958_consumer -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x0fb23680 snd_dmaengine_pcm_request_channel -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x12276ae1 snd_hwparams_to_dma_slave_config -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x45ae2d23 snd_dmaengine_pcm_open -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x54bdc11d snd_dmaengine_pcm_open_request_chan -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x5f8472b8 snd_dmaengine_pcm_close -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x74393fda snd_dmaengine_pcm_get_chan -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x795bd77e snd_dmaengine_pcm_trigger -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x810ae542 snd_dmaengine_pcm_pointer -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x9fdb65a2 snd_dmaengine_pcm_set_config_from_dai_data -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xa0bea05d snd_dmaengine_pcm_refine_runtime_hwparams -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xec687c9c snd_dmaengine_pcm_close_release_chan -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xf2fd940a snd_dmaengine_pcm_pointer_no_residue -EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0x015916c9 __snd_seq_driver_register -EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0x4ae64ead snd_seq_driver_unregister -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x088da546 amdtp_am824_add_pcm_hw_constraints -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x33a5aa38 amdtp_am824_set_parameters -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x37347d42 amdtp_domain_start -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x7188b082 amdtp_am824_set_midi_position -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x71d53021 amdtp_am824_midi_trigger -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x728efbf4 amdtp_domain_stop -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x96428f01 amdtp_domain_stream_pcm_ack -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xacca57e6 amdtp_am824_set_pcm_position -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xb2b30619 amdtp_am824_init -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xdd7b10f5 amdtp_domain_init -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xe9d0fffa amdtp_domain_add_stream -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xf36b3c38 amdtp_domain_destroy -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xfce6dee3 amdtp_domain_stream_pcm_pointer -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0f7958ca snd_hdac_stream_cleanup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0f8fb1ab snd_hdac_device_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x10449c67 snd_hdac_power_down -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1114f03d snd_hdac_bus_update_rirb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x123ad577 snd_hdac_bus_init_cmd_io -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1380cb20 snd_hdac_is_supported_format -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x167a7894 snd_hdac_get_stream_stripe_ctl -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x18a9d6be snd_hdac_bus_get_response -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x18fe4305 snd_hdac_regmap_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1f78dc07 snd_hdac_bus_init_chip -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1fa728bd _snd_hdac_read_parm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x206116bc snd_hdac_dsp_prepare -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x20ce7545 snd_hdac_device_register -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x21837708 snd_hdac_refresh_widgets -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2b43afaa snd_hdac_bus_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2c7a7f1b snd_hdac_device_unregister -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2cb48209 snd_hdac_bus_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x314b8a23 snd_hdac_codec_write -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x335b83e4 snd_hdac_acomp_register_notifier +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xb40c7ca6 snd_pcm_stream_lock +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xb854d0b3 snd_pcm_hw_constraint_eld +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xbe5a3427 _snd_pcm_stream_lock_irqsave +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xea87e60e snd_devm_alloc_pages +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xec6256e5 snd_pcm_stream_unlock_irq +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x2dac0167 snd_dmaengine_pcm_refine_runtime_hwparams +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x413bb506 snd_dmaengine_pcm_open_request_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x5f91e2a7 snd_dmaengine_pcm_request_channel +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x8f63baab snd_dmaengine_pcm_set_config_from_dai_data +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x9dd4cbb6 snd_dmaengine_pcm_close +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xb8f565c1 snd_dmaengine_pcm_trigger +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xc68c5368 snd_dmaengine_pcm_pointer_no_residue +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xd433f2f1 snd_dmaengine_pcm_open +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xd80cce97 snd_dmaengine_pcm_close_release_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xd84568d6 snd_dmaengine_pcm_pointer +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xf20c2397 snd_hwparams_to_dma_slave_config +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xf7069912 snd_dmaengine_pcm_get_chan +EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0xdfa3dc36 __snd_seq_driver_register +EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0xec7d34a5 snd_seq_driver_unregister +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x1808041f amdtp_am824_set_pcm_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x1808241a amdtp_am824_add_pcm_hw_constraints +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x207e6a6d amdtp_domain_add_stream +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x4dbd5bd1 amdtp_domain_stream_pcm_pointer +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x69b6afb4 amdtp_am824_set_parameters +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x8b344c28 amdtp_am824_init +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xa6818901 amdtp_domain_init +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xd10c8082 amdtp_domain_stop +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xd22ed85a amdtp_am824_set_midi_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xe5e8a86c amdtp_domain_start +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xe864eccf amdtp_am824_midi_trigger +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xed0cd888 amdtp_domain_stream_pcm_ack +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xefcee62e amdtp_domain_destroy +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x00d136ba snd_hdac_dsp_prepare +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x02a7d7ad snd_hdac_bus_free_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x05101477 snd_hdac_channel_allocation +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x057904bf snd_hdac_acomp_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x10176938 snd_hdac_bus_stop_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x11bf2ec4 snd_hdac_bus_init_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x12648818 snd_hdac_codec_write +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1587154d hdac_get_device_id +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x18051f96 _snd_hdac_read_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1be9f328 snd_hdac_power_down_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1fdb9a9d snd_hdac_bus_exit_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x209e0bb6 snd_hdac_codec_link_down +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2222b302 snd_hdac_read_parm_uncached +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x22577b38 snd_hdac_power_up +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x257c7cbe snd_hdac_display_power +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x268fbe5f snd_hdac_stream_timecounter_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x29e5f367 snd_hdac_regmap_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2c636295 snd_hdac_bus_enter_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x30991f4f snd_hdac_is_supported_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x35b71ccc snd_hdac_codec_modalias +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x35d855cd snd_hdac_bus_handle_stream_irq EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3bd544c2 snd_hdac_get_active_channels -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x429ee808 snd_hdac_add_chmap_ctls -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x449036e8 snd_hdac_check_power_state -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x44963cd0 snd_hdac_acomp_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x470fd5d7 snd_hdac_register_chmap_ops +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3f0efa57 snd_hdac_bus_reset_link +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x41210282 snd_hdac_get_connections +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x41c5cd15 snd_hdac_bus_parse_capabilities +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x42d66fef snd_hdac_sync_power_state +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x438c61ac snd_hdac_bus_link_power +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x488ada63 snd_hdac_codec_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4a615e72 snd_hdac_register_chmap_ops EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4c7ec4b6 snd_hdac_get_ch_alloc_from_ca -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x52cfe90e snd_hdac_device_set_chip_name -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x566b4ecc snd_hdac_stream_setup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x57de829c snd_hdac_power_down_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4d35bebd snd_hdac_stream_sync +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x505d64fd snd_hdac_check_power_state +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x527c53de snd_hdac_acomp_register_notifier EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5c07cb49 snd_hdac_calc_stream_format -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5c33dd61 snd_hdac_acomp_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5daa28fd snd_hdac_dsp_cleanup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5faa01bd snd_hdac_stream_clear -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x66da28a8 snd_hdac_regmap_update_raw_once +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x608c3a18 snd_hdac_acomp_get_eld +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x641ebb35 snd_hdac_get_stream EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x67bfe791 snd_hdac_spk_to_chmap -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x67cd25ff snd_hdac_bus_link_power -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6a4d4910 snd_hdac_sync_audio_rate -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6a77d409 snd_hdac_channel_allocation -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6b73165c snd_hdac_query_supported_pcm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6bc4e731 snd_hdac_set_codec_wakeup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6cd474e5 snd_hdac_dsp_trigger -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x70375dc7 snd_hdac_stream_start +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6909cd65 snd_hdac_stream_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6b0ed1ea snd_hdac_power_up_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6e1815bc snd_hdac_stream_clear +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6f5a92ed snd_hdac_stream_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x71568619 snd_hdac_stream_stop +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x74b0812c snd_hdac_regmap_write_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x763e3981 snd_hdac_get_stream_stripe_ctl EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x77c754a8 snd_hdac_chmap_to_spk_mask -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7a9c1aeb snd_hda_bus_type -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7ab44ee1 snd_hdac_read -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7d2cdc71 snd_hdac_regmap_add_vendor_verb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7d46d349 snd_hdac_codec_modalias -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8034356c snd_hdac_bus_alloc_stream_pages -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x89f82e9a snd_hdac_get_sub_nodes -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8ae0701a snd_hdac_bus_handle_stream_irq -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8c9e67b9 snd_hdac_bus_free_stream_pages -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8e2df677 snd_hdac_override_parm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9022e199 snd_hdac_codec_link_up -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x98bebf69 snd_hdac_power_up +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x782d05ad snd_hdac_stream_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x797525ef snd_hdac_device_set_chip_name +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7adcac12 snd_hdac_get_sub_nodes +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x86113a5a snd_hdac_stream_assign +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x861adc06 snd_hdac_bus_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x867bd644 snd_hdac_device_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x874d79e7 snd_hdac_bus_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x883fce9a snd_hdac_dsp_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x88821b8f snd_hdac_bus_stop_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8dc77c3a snd_hdac_set_codec_wakeup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8e5f7278 snd_hda_bus_type +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9a79c348 snd_hdac_bus_send_cmd EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9a8e1877 snd_array_free -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9c943f6e snd_hdac_stream_setup_periods -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9d37dfb8 snd_hdac_bus_exec_verb_unlocked -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9f94746f snd_hdac_acomp_get_eld -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa3160641 snd_hdac_device_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa5252be5 snd_hdac_regmap_write_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa85d5c11 snd_hdac_stream_sync_trigger -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xac101376 snd_hdac_stream_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xad384fd9 snd_hdac_get_stream -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xaf4a56f4 snd_hdac_stream_stop -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xaffd74d9 snd_hdac_read_parm_uncached -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb0944a95 snd_hdac_bus_parse_capabilities -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbc7f6964 snd_hdac_codec_read -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbda8b5e7 snd_hdac_regmap_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbdccc78d hdac_get_device_id +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa1efca98 snd_hdac_codec_link_up +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa78cf35c snd_hdac_acomp_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa7912d5e snd_hdac_bus_get_response +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xaabf350c snd_hdac_stream_sync_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xab830c69 snd_hdac_regmap_update_raw_once +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb1433b09 snd_hdac_regmap_add_vendor_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb3f76d01 snd_hdac_regmap_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb46cfa91 snd_hdac_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xba48bd21 snd_hdac_override_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbb12a30f snd_hdac_bus_exec_verb_unlocked +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbb2d93b8 snd_hdac_device_register EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe7dd7dc snd_array_new -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe81c37d snd_hdac_power_up_pm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc4892ab2 snd_hdac_stream_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc63c43c4 snd_hdac_bus_reset_link -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcf23ed70 snd_hdac_stream_assign -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcfc833e6 snd_hdac_get_connections -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd2a01759 snd_hdac_regmap_read_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd453bf4b snd_hdac_bus_stop_cmd_io -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdbe5669a snd_hdac_setup_channel_mapping -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdcfb8be6 snd_hdac_bus_enter_link_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdd15fd7e snd_hdac_stream_sync -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdf072bb1 snd_hdac_display_power -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdf1f099d snd_hdac_sync_power_state -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe373c445 snd_hdac_regmap_sync +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc6cd3358 snd_hdac_device_unregister +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc946d230 snd_hdac_sync_audio_rate +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xca5b6a3c snd_hdac_bus_alloc_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcae1aefd snd_hdac_bus_update_rirb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcae6fa98 snd_hdac_regmap_update_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcbe6dd97 snd_hdac_refresh_widgets +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd011ae7e snd_hdac_add_chmap_ctls +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd3723a24 snd_hdac_stream_release +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd8e4d34d snd_hdac_bus_init_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd939a1d5 snd_hdac_power_down EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe4e07754 snd_hdac_print_channel_allocation -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe8f838fc snd_hdac_codec_link_down -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xea8e178b snd_hdac_regmap_update_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf0828e13 snd_hdac_stream_release -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf1995f2a snd_hdac_bus_exit_link_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf49f469e snd_hdac_stream_timecounter_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf5d7fccc snd_hdac_bus_stop_chip -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfcf173fa snd_hdac_stream_set_params -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfe3d55a6 snd_hdac_bus_send_cmd -EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x8271962f snd_intel_dsp_driver_probe -EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0xc70e0e2a snd_intel_acpi_dsp_driver_probe -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x4bc7a4a2 snd_ak4113_reg_write -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x7fc922b5 snd_ak4113_check_rate_and_errors -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x9ab12e03 snd_ak4113_external_rate -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xb50c009d snd_ak4113_build -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xbb8eb468 snd_ak4113_reinit -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xf8a9ed04 snd_ak4113_create -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x00fc8f29 snd_hda_jack_detect_state_mst +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xec58d99d snd_hdac_regmap_sync +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xedbc8521 snd_hdac_stream_set_params +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xee1a70e0 snd_hdac_stream_start +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xee6409e4 snd_hdac_regmap_read_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf345ec0e snd_hdac_stream_setup_periods +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf593d1c3 snd_hdac_query_supported_pcm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf887a4e6 snd_hdac_stream_setup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfabb83b9 snd_hdac_setup_channel_mapping +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfc1daa5b snd_hdac_dsp_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xff09dcc1 snd_hdac_device_exit +EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0xb2473cf6 snd_intel_acpi_dsp_driver_probe +EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0xec3fcb86 snd_intel_dsp_driver_probe +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x317007ef snd_ak4113_create +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x33414bcf snd_ak4113_check_rate_and_errors +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xa00af5af snd_ak4113_external_rate +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xabc60aa7 snd_ak4113_reg_write +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xde72eeb9 snd_ak4113_build +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xea2cb04e snd_ak4113_reinit +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0014d94d snd_hda_jack_detect_enable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x02964db2 snd_hda_codec_pcm_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x05825bd6 snd_hda_multi_out_dig_prepare EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0676f5ac snd_hda_get_input_pin_attr -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x082279b9 snd_hda_pick_pin_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x093b5622 azx_get_position -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0a30077a snd_hda_add_new_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0d064339 snd_hda_spdif_ctls_assign -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0ddc6d10 azx_stop_chip -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0f8f3233 snd_hda_codec_set_pin_target -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x102521f5 snd_hda_apply_pincfgs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x131080ca snd_hda_add_verbs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x16771524 snd_hda_add_vmaster_hook -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1692d06e snd_hda_check_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x17ca12d7 snd_hda_get_num_devices -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x17ed224b snd_hda_get_bool_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x19264ac8 snd_hda_get_connections -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1a631321 __snd_hda_add_vmaster -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1ab9e2af snd_hda_codec_pcm_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1bac206d snd_hda_codec_device_new -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1c1cbc7d snd_hda_spdif_ctls_unassign -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1d0848e4 snd_hda_pick_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2499df1d snd_hda_jack_report_sync -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x27022186 snd_hda_get_conn_index -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x27b2622a azx_init_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x27b2f255 snd_hda_jack_tbl_get_mst -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2fec34ce snd_hda_lock_devices -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x30df28ca azx_bus_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x32726559 snd_hda_codec_parse_pcms -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x328a3c57 __snd_hda_codec_cleanup_stream -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x35dbf3be snd_hda_mixer_amp_switch_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x38b31ea6 snd_hda_set_vmaster_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0691d182 snd_hda_pick_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x08972871 snd_hda_correct_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x09feeea7 snd_hda_mixer_amp_switch_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0e55b5a7 snd_hda_codec_eapd_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0fa0b7cb snd_hda_get_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x12396f51 snd_hda_get_connections +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x152b5670 query_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x15a503e7 azx_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x161ccafa snd_hda_jack_bind_keymap +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1857d490 snd_hda_set_vmaster_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x193e3b98 azx_stop_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1f5f4143 snd_hda_codec_device_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x21a06493 snd_hda_override_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x22cc4fd5 snd_hda_get_int_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x258804cf snd_hda_get_conn_index +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x29190b17 snd_hda_detach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2936d18f snd_hda_codec_load_dsp_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x29f879a1 snd_hda_enable_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x29fda52d hda_codec_driver_unregister +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2f4f5e74 snd_hda_codec_amp_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x324f6589 snd_hda_input_mux_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3292c026 snd_hda_mixer_amp_volume_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x37732f69 snd_hda_jack_set_button_state EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x38ce402b azx_interrupt -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x39ae29cb snd_hda_multi_out_dig_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3c48460c snd_hda_codec_eapd_power_filter -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x41aa5fe9 snd_hda_get_int_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x44a25ec0 snd_hda_attach_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x45cfbbff azx_free_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x49e2b3b7 snd_hda_jack_bind_keymap -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4a07e661 snd_hda_codec_configure -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4b0ffb7d snd_hda_mixer_amp_switch_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4c8a03d0 snd_hda_mixer_amp_volume_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4e53b8eb snd_hda_jack_detect_enable -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4ec8e373 snd_hda_codec_set_name -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x501ad7a6 snd_hda_correct_pin_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x50a3dc2c hda_get_autocfg_input_label -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5104489d snd_hda_create_spdif_share_sw -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x56693316 snd_hda_codec_update_widgets -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5b74dc40 snd_hda_jack_unsol_event -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x63134e50 snd_hda_multi_out_analog_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6719da58 snd_hda_jack_add_kctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6834ca6c snd_hda_get_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x694159c0 snd_hda_jack_set_button_state -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6ccc4746 snd_hda_codec_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x70896ef6 snd_hda_spdif_out_of_nid -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x75207d96 snd_hda_multi_out_analog_open -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7607dd76 snd_hda_codec_load_dsp_trigger -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x767577a5 snd_hda_sequence_write -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x77ee4851 snd_hda_ctl_add -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x79055714 snd_hda_multi_out_analog_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7f1d467d snd_hda_codec_new -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7f94b73e snd_hda_parse_pin_defcfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x854da282 snd_hda_mixer_amp_switch_get_beep -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x856873d3 snd_hda_apply_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x89892b71 __hda_codec_driver_register -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8e2b5af8 snd_hda_mixer_amp_volume_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8e5455a7 snd_hda_jack_pin_sense -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x90befd17 snd_hda_codec_build_controls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x929b8376 snd_hda_codec_load_dsp_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x93192e2e snd_hda_codec_get_pincfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x93ac969e snd_hda_get_pin_label -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9442242f snd_hda_codec_setup_stream -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x968043f6 azx_stop_all_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x96ad5d06 snd_hda_jack_detect_enable_callback_mst -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x99d51af1 snd_hda_jack_poll_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9ab009bc snd_hda_multi_out_dig_close -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9ac20ca4 snd_hda_mixer_amp_tlv -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9b4fbb18 snd_hda_input_mux_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9cd30986 azx_codec_configure -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9fe43776 snd_hda_shutup_pins -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa0015573 azx_init_chip -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa21b2806 snd_hda_jack_set_dirty_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa2ca2ce7 snd_hda_create_dig_out_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaa68a468 snd_hda_jack_tbl_get_from_tag -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xac037b99 hda_codec_driver_unregister -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xac59a4c4 azx_get_pos_posbuf -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xadc655dc azx_get_pos_lpib -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xae70723f snd_hda_mixer_amp_switch_put_beep -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb1866da9 snd_hda_override_conn_list -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb2cda059 snd_hda_get_default_vref -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb550a36b snd_hda_enable_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb7cd7837 snd_hda_jack_set_gating_jack -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb9f8321f snd_hda_codec_get_pin_target -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbcda9ef9 snd_hda_add_imux_item -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbd0284ea _snd_hda_set_pin_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc0d4ec1e snd_hda_codec_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc0ed4274 snd_hda_detach_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc25f8092 snd_hda_multi_out_dig_open -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc4ba8f23 query_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc57b2b8e snd_hda_multi_out_dig_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xca0d3cf7 snd_hda_codec_amp_stereo -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcd1b257f snd_hda_check_amp_list_power -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcf4aec3e snd_hda_codec_set_power_to_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd1e64603 snd_hda_enum_helper_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd5e903c5 snd_hda_load_patch -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdb987d0d snd_hda_codec_amp_init_stereo -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdd3264bb snd_hda_find_mixer_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe0cf4783 snd_hda_codec_amp_update +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3b792dc1 snd_hda_get_default_vref +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3e71e9a3 snd_hda_jack_detect_enable_callback_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3e8375af snd_hda_lock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x41cd0590 snd_hda_codec_build_controls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x432e8044 snd_hda_mixer_amp_switch_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x43653727 azx_init_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4509d2f4 snd_hda_add_imux_item +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x45b57d3f snd_hda_create_spdif_in_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x47cc1d69 snd_hda_jack_poll_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4e4c125e snd_hda_jack_add_kctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4eb56288 azx_init_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4f53beca snd_hda_codec_amp_update +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x52f7a70e snd_hda_codec_get_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x53abbce7 snd_hda_ctl_add +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x545be3de snd_hda_sync_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x582f2790 snd_hda_multi_out_analog_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5d4ddd00 snd_hda_codec_pcm_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x61547126 azx_get_pos_lpib +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x63808366 snd_hda_jack_add_kctl_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x65e47f17 snd_hda_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6700f753 snd_hda_add_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x67091163 snd_hda_get_bool_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x673dd97d snd_hda_codec_set_power_to_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6897ab48 snd_hda_codec_setup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6ab433c5 snd_hda_jack_unsol_event +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6c2253b0 azx_bus_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6f4b4bce snd_hda_codec_parse_pcms +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x77342ab8 azx_get_pos_posbuf +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x77d811a9 snd_hda_jack_tbl_get_from_tag +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x79664c4f snd_hda_codec_set_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7970990d hda_get_autocfg_input_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7a47a48b azx_probe_codecs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7cc73b37 snd_hda_get_num_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7d5968c9 snd_hda_create_spdif_share_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x80109ec6 snd_hda_apply_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x805edee6 snd_hda_mixer_amp_switch_get_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x80a43ae6 snd_hda_unlock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x81ba7f56 snd_hda_codec_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x823468ec snd_hda_codec_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8305d00f snd_hda_get_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x85a7ca88 snd_hda_set_dev_select +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8611d216 snd_hda_codec_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x868dbcad snd_hda_set_power_save +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x894788b1 azx_get_position +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8e280e27 snd_hda_multi_out_analog_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x92717704 snd_hda_mixer_amp_volume_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x927f8c40 snd_hda_codec_cleanup_for_unbind +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x937e326e __snd_hda_codec_cleanup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x949c44fb snd_hda_multi_out_dig_close +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x94f77390 snd_hda_apply_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x95ad9a04 snd_hda_apply_pincfgs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9630322f azx_stop_all_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x96331234 __hda_codec_driver_register +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x969c3469 snd_hda_multi_out_dig_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9c099890 is_jack_detectable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9ca23424 snd_hda_override_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa4ab6373 snd_hda_codec_update_widgets +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa59d159f snd_hda_codec_set_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa6365f5e snd_hda_load_patch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa91d5985 snd_hda_mixer_amp_switch_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa9ee7eac snd_hda_enum_helper_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xad64e88d azx_free_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb088e6a1 snd_hda_codec_amp_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb0f27d02 snd_hda_jack_report_sync +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb3a322d8 snd_hda_multi_out_analog_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb5f2c43c snd_hda_codec_load_dsp_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb735b553 snd_hda_create_dig_out_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb75b0b9d snd_hda_get_pin_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb9c443be _snd_hda_set_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbfaf54dc snd_hda_check_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc654b89f snd_hda_codec_set_name +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc9365975 snd_hda_get_dev_select +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc976860d snd_hda_attach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcb5547b3 snd_hda_jack_detect_state_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcc6ae0e3 snd_hda_spdif_ctls_unassign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcf084775 snd_hda_add_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcf4b2402 snd_hda_jack_tbl_get_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd8a119e7 snd_hda_mixer_amp_volume_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xda067ab0 snd_hda_codec_amp_init_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xda69357f snd_hda_spdif_ctls_assign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdea89682 snd_hda_jack_set_dirty_all EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe118de5d snd_pcm_2_1_chmaps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe2f1ecda snd_hda_codec_set_pincfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe584250d snd_hda_codec_pcm_new -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe743bb1a snd_hda_jack_add_kctl_mst -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe7483329 snd_hda_get_dev_select -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe8622312 snd_hda_set_power_save -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe903f553 snd_hda_add_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe48566dc snd_hda_codec_load_dsp_trigger +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe5d7befd __snd_hda_add_vmaster +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe6999270 snd_hda_parse_pin_defcfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe832dd2b snd_hda_add_new_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xea4044cc snd_hda_mixer_amp_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xecaf9283 snd_hda_multi_out_dig_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xed08fc0a snd_hda_jack_pin_sense +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xed55e4cb snd_hda_check_amp_list_power EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeda3a721 snd_print_pcm_bits -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf0ff523b snd_hda_mixer_amp_volume_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf133d55e snd_hda_codec_amp_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf4b2f057 azx_probe_codecs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf6686833 snd_hda_create_spdif_in_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf7760e48 is_jack_detectable -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf77aaa96 snd_hda_mixer_amp_switch_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf7c451ca snd_hda_unlock_devices -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf860ca14 snd_hda_codec_load_dsp_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf8a991cb snd_hda_apply_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf1467ffc snd_hda_pick_pin_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf2cc6a3d snd_hda_codec_get_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf67efa96 snd_hda_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf6bfb82f snd_hda_shutup_pins EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf8dc35ac snd_hda_input_mux_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfbf8d770 snd_hda_codec_cleanup_for_unbind -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfcd0e506 snd_hda_get_conn_list -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfcd8aea8 snd_hda_set_dev_select -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfee33dbd snd_hda_sync_vmaster_hook -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xffeec3f8 snd_hda_override_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x01d9c3a5 snd_hda_gen_update_outputs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x024123d9 snd_hda_gen_add_kctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x0ef09924 snd_hda_gen_add_micmute_led_cdev -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x1a8ad5c6 snd_hda_gen_add_mute_led_cdev -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x1b0294ac snd_hda_get_path_from_idx -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x1ee09b17 snd_hda_gen_line_automute -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x1f867560 snd_hda_gen_path_power_filter -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x4ba25d32 snd_hda_gen_hp_automute -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x51327c4b snd_hda_add_new_path -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x68e70600 snd_hda_gen_parse_auto_config -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x708d38ea snd_hda_gen_free +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfaeebad8 snd_hda_jack_set_gating_jack +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfcaf3160 snd_hda_spdif_out_of_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfce307fc snd_hda_sequence_write +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfd40b8a1 snd_hda_mixer_amp_switch_put_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfd70ebfb snd_hda_find_mixer_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x0d74ece4 snd_hda_gen_mic_autoswitch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x113de848 snd_hda_gen_hp_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x18bb58a2 snd_hda_gen_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x1ac9763b snd_hda_gen_check_power_status +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x240fb05f snd_hda_gen_path_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x35bf52e0 snd_hda_gen_free +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x54a21439 snd_hda_gen_build_controls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x60364d45 snd_hda_get_path_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x69fc554c snd_hda_gen_add_micmute_led_cdev 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 0x82b29bb4 snd_hda_gen_spec_init EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x871a6e44 hda_extra_out_badness -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x8b29f115 snd_hda_activate_path -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x8f35c6ce snd_hda_gen_build_pcms -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x9822a238 snd_hda_gen_build_controls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xa07fcf67 snd_hda_gen_fix_pin_power -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xa16d54bf snd_hda_gen_mic_autoswitch -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xb26b0b5e snd_hda_gen_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xc9e2dc2a snd_hda_gen_stream_pm -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xd3b39d6d snd_hda_gen_check_power_status -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xd990dd33 snd_hda_gen_spec_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xfde75fcf snd_hda_get_path_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x95e9f763 snd_hda_gen_line_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x97080f64 snd_hda_get_path_from_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xa329a763 snd_hda_gen_parse_auto_config +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xaa908a21 snd_hda_gen_fix_pin_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xc93615d5 snd_hda_add_new_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xdf677222 snd_hda_gen_build_pcms +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xe21deddd snd_hda_gen_add_kctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xe6b91058 snd_hda_gen_update_outputs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xe94010c3 snd_hda_gen_add_mute_led_cdev +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xf33d02d1 snd_hda_gen_stream_pm +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xfa55c9fe snd_hda_activate_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 0x9e118f29 adau1372_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0x4967b223 adau1761_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0x8036449e adau1761_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x113ee2ed adau17x1_precious_register -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x4975b26f adau17x1_readable_register -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x4e3bc0b6 adau17x1_resume -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x7e25227e adau17x1_add_widgets -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x8d036d2e adau17x1_volatile_register -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x8d467edb adau17x1_dai_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xaf4c0551 adau17x1_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xafe0d9ce adau17x1_add_routes -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xf04b12e6 adau17x1_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xff83df1d adau17x1_set_micbias_voltage -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau7118 0x839b5c17 adau7118_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x41d32b7e cs4271_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1372 0x7f4283cf adau1372_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0x8fde134c adau1761_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0x9d80db10 adau1761_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x357d9ce1 adau17x1_precious_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x4b219b46 adau17x1_volatile_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x4b774477 adau17x1_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x4bb2ab29 adau17x1_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x74c486e7 adau17x1_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x96860d94 adau17x1_add_routes +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x97f57e85 adau17x1_add_widgets +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xc77706ca adau17x1_readable_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xcd7af3c6 adau17x1_set_micbias_voltage +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xd2b91d91 adau17x1_resume +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau7118 0xb185e073 adau7118_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0x65c634e6 cs35l41_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0xb699e133 cs35l41_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0xc71c6c26 cs35l41_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x405941d3 cs35l41_test_key_unlock +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x4a62344c cs35l41_register_errata_patch +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x4e29bc4f cs35l41_regmap_spi +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x5cd44ffb cs35l41_otp_unpack +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x5df29ae8 cs35l41_set_channels +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x83e06881 cs35l41_test_key_lock +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xdb6f5d30 cs35l41_boost_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xf87cba90 cs35l41_regmap_i2c +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x3f3ed5e1 cs4271_probe EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x7d05786f cs4271_dt_ids -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0xb823bf56 cs4271_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x0e8375bb cs42l51_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x24328258 cs42l51_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x96faa92c cs4271_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x31ab5049 cs42l51_suspend EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x375ad98c cs42l51_of_match -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x6edce116 cs42l51_resume -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x8fae0ef9 cs42l51_suspend -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xa3847097 cs42l51_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xa98de737 cs42l51_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xb2da428f cs42l51_resume +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xedb7893c cs42l51_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xfbbfc0fd cs42l51_regmap EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x0245c4f2 cs42xx8_of_match -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x48065dad cs42xx8_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x174547e1 cs42xx8_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x43f9f87d cs42xx8_pm EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x7cac7292 cs42888_data -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x9c5b4325 cs42xx8_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xcaad3c66 cs42xx8_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xa542f3a9 cs42xx8_regmap_config EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xcd3794c9 cs42448_data -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x14516a2b es8328_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x7b912b91 es8328_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x7944563a max98373_slot_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x7f5d913c soc_codec_dev_max98373 -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0xb661db95 max98373_reset -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0xbe01d11f soc_codec_dev_max98373_sdw -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8824 0x7c5e328c nau8824_enable_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x270379b4 pcm1789_common_exit -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x480ed10a pcm1789_common_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x5e47fffc pcm1789_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0x59f753d4 pcm179x_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0x5d3c9ae7 pcm179x_common_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0x121d4d3b pcm186x_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0x38c9f65d pcm186x_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x068ef286 pcm3168a_pm_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x247e8aa6 pcm3168a_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x82ededb1 pcm3168a_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0xc2f012fa pcm3168a_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x320fde93 pcm512x_pm_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x496953dd pcm512x_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x7b67989d pcm512x_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x811b5dac pcm512x_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x327b2793 es8328_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x87bc0f11 es8328_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x3b489d61 soc_codec_dev_max98373 +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x89aa6fd7 max98373_slot_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x901b67cd max98373_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0xc8789c99 soc_codec_dev_max98373_sdw +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x2af27505 mt6358_set_mtkaif_calibration_phase +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x4fb248f6 mt6358_mtkaif_calibration_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x664f4f51 mt6358_set_mtkaif_protocol +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x6b631675 mt6358_mtkaif_calibration_disable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8824 0xa36c9a90 nau8824_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x03d301b7 pcm1789_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x6d9876b5 pcm1789_common_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0xc419a26c pcm1789_common_exit +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0x0463ad9f pcm179x_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0xd6560786 pcm179x_common_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0x60f24637 pcm186x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0x7643cf9e pcm186x_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x045dba06 pcm3168a_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x1bb1b58f pcm3168a_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x200137a5 pcm3168a_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0xe20b2963 pcm3168a_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x1152e3b7 pcm512x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x5a79a70c pcm512x_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x69029345 pcm512x_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xca31b66a pcm512x_remove EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x5dc92cdf rl6231_pll_calc EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x70617a04 rl6231_get_clk_info EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x8d7fa148 rl6231_get_pre_div EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0xdba4502f rl6231_calc_dmic_clk -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x4f2f3429 rt5640_enable_micbias1_for_ovcd -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x7b93d843 rt5640_disable_micbias1_for_ovcd -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xa7a4a5ca rt5640_dmic_enable -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xb95e893d rt5640_detect_headset -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xc4847c9e rt5640_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xef1f7ca7 rt5640_set_ovcd_params -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0x0ce636e3 rt5645_set_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0xe8f2f8e3 rt5645_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5659 0xe8fc2188 rt5659_set_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x16f3d6b2 rt5682_apply_patch_list +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x29cb5709 rt5640_disable_micbias1_for_ovcd +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x3d13902b rt5640_detect_headset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x59768cad rt5640_dmic_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x5e1eb226 rt5640_enable_micbias1_for_ovcd +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x85ed2991 rt5640_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xd4732149 rt5640_set_ovcd_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0x01058f30 rt5645_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0x655ab521 rt5645_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5659 0xe7a44090 rt5659_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x11ca7eb9 rt5682_headset_detect EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x28730696 rt5682_supply_names -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x2f2c880c rt5682_aif1_dai_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x5407b19f rt5682_soc_component_dev -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x55370aa1 rt5682_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x2f802916 rt5682_soc_component_dev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x3b678861 rt5682_aif1_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x460c9501 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 0x5d36428f rt5682_calibrate -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x5da1d871 rt5682_readable_register -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x8d078449 rt5682_headset_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x991d8901 rt5682_volatile_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x871cff87 rt5682_parse_dt EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xb897de56 rt5682_reg -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xbfc770a0 rt5682_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xc41b330f rt5682_aif2_dai_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xc8d725ac rt5682_parse_dt -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x2eeb46a4 sigmadsp_setup -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x488cb365 sigmadsp_reset -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x9d4d79a6 devm_sigmadsp_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xd0b48c6d sigmadsp_attach -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xd3cd7a4d sigmadsp_restrict_params -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-i2c 0xe2dfbe4e devm_sigmadsp_init_i2c -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-regmap 0x155a6c42 devm_sigmadsp_init_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0xc1dafd8f ssm2602_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0xdc14143b ssm2602_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic32x4 0x1e94f20b aic32x4_register_clocks -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic3x 0x11948d60 aic3x_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0x0bf3a022 ts3a227e_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xbf5321fe rt5682_calibrate +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xcdd7e1e5 rt5682_volatile_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xce11a85a rt5682_readable_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xd0503362 rt5682_aif2_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xe2b1e4ae rt5682_apply_patch_list +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xe78f620f rt5682_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x30bb0d6e sigmadsp_attach +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x544f1a81 sigmadsp_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x674b75df sigmadsp_setup +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x9d422284 sigmadsp_restrict_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xda68183d devm_sigmadsp_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-i2c 0x396c0e5f devm_sigmadsp_init_i2c +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-regmap 0x4aabb382 devm_sigmadsp_init_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x8180ea70 ssm2602_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0xebaf7819 ssm2602_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic32x4 0x25efcd3c aic32x4_register_clocks +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic3x 0x60ddd40b aic3x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0x76d59250 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 0x304d873f wcd938x_sdw_hw_params -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x3ecb17a0 wcd938x_sdw_device_get -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x6f7498e2 wcd938x_sdw_set_sdw_stream -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0xbff75418 wcd938x_sdw_free -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0xd44e99e7 wcd938x_swr_get_current_bank -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x746b78d3 wm8804_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xa346e823 wm8804_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xb8739c8e wm8804_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xbde5cc98 wm8804_pm -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0x2b0865a3 wm8903_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0xe477fa86 wm8962_mic_detect -EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0x90daa710 fsl_asrc_component +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x5cb10bc9 wcd938x_sdw_device_get +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0xafc8a208 wcd938x_sdw_free +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0xc875fc80 wcd938x_sdw_set_sdw_stream +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0xcb005608 wcd938x_swr_get_current_bank +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0xd9a31e3f wcd938x_sdw_hw_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x03ea570b wm_adsp_early_event +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x0abaa46d wm_adsp1_event +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x1872270e wm_adsp2_component_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x2d6913ed wm_adsp2_set_dspclk +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x3d1f81be wm_adsp_event +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x40ed9ad5 wm_adsp_fw_put +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x42d4eb68 wm_adsp_compr_get_caps +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x4b88cb78 wm_adsp_write_ctl +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x4f4a92e2 wm_adsp2_preloader_get +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 0x5f413f83 wm_adsp_compr_free +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x640a4a3e wm_adsp_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x7612a601 wm_adsp_compr_pointer +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x82e5e327 wm_adsp_compr_open +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x85165dc6 wm_adsp2_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x85f10698 wm_adsp_fw_get +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x869ea6ca wm_adsp_compr_copy +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x8a560eaf wm_adsp2_preloader_put +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xac936771 wm_adsp2_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xc7460a40 wm_adsp_compr_trigger +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xd2828929 wm_adsp_read_ctl +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xd29a185e wm_adsp1_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xdb382ed1 wm_adsp_fw_enum +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xdd3c79ef wm_adsp2_bus_error +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xdf50539e wm_adsp_compr_handle_irq +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xe07f9473 wm_adsp2_component_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xe77355e4 wm_halo_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xea38ee07 wm_halo_bus_error +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x18d1f70e wm8804_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x3a0a3701 wm8804_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x5f6bcca3 wm8804_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xf4f82450 wm8804_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0x840ad667 wm8903_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0xe94c0528 wm8962_mic_detect +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0x78c17b5f 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 0x952c42b0 audio_graph_parse_of -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x02e62d1e asoc_simple_set_dailink_name -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x0d1d8b47 asoc_simple_parse_pin_switches -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x0dd66546 asoc_simple_canonicalize_platform -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x1004311f asoc_simple_init_jack -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x20d62644 asoc_simple_parse_routing -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x33672680 asoc_simple_parse_daifmt -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x3e477a54 asoc_simple_remove -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x3e56f135 asoc_simple_parse_card_name -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x5c5abe84 asoc_simple_be_hw_params_fixup -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x612cbd79 asoc_graph_card_probe -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x8b1a3abd asoc_simple_parse_widgets -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x8c30cdf4 asoc_simple_clean_reference -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xa737a8a1 asoc_simple_startup -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xade2830e asoc_simple_parse_convert -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xc2491ca8 asoc_simple_hw_params -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xd4bace35 asoc_simple_init_priv -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xd71047b1 asoc_simple_dai_init -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xf14c559d asoc_simple_canonicalize_cpu +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-audio-graph-card 0xf254fd4b audio_graph_parse_of +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x05f4f9ca asoc_simple_init_priv +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x07e54b4c asoc_simple_parse_widgets +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x177f1f87 asoc_simple_parse_convert +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x1860a1b7 asoc_simple_canonicalize_platform +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x1fa8f269 asoc_simple_shutdown +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x2c655af1 asoc_simple_parse_card_name +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x32c3034e asoc_simple_hw_params +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x67233b2e asoc_simple_remove +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x849c4094 asoc_simple_init_jack +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x8f700df4 asoc_simple_dai_init +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x96c6c59a asoc_simple_parse_daifmt +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xaa684688 asoc_simple_canonicalize_cpu +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xb5dae7e5 asoc_simple_parse_routing +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xbfe88ce7 asoc_simple_be_hw_params_fixup +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xc0062d86 asoc_simple_parse_clk +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xc35b3905 asoc_graph_card_probe +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xd360b264 asoc_simple_set_dailink_name +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xd9c88161 asoc_simple_clean_reference +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xf1bac0fb asoc_simple_startup EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xf3bafb75 asoc_simple_convert_fixup -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xf3e6cb04 asoc_simple_parse_clk -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xf5cd77e5 asoc_simple_shutdown -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x012c70fc snd_soc_tplg_widget_bind_event -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0321bfbb snd_soc_info_volsw_range -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0637f7fa snd_soc_dpcm_fe_can_update -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0668f9e4 snd_soc_bytes_put -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x067a8ba0 snd_soc_add_pcm_runtime -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0891e58c snd_soc_of_parse_audio_simple_widgets -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x09b0cd6c snd_soc_dapm_mixer_update_power -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x09b4a207 soc_ac97_ops -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0a545f31 snd_soc_add_component_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0b27e799 snd_soc_runtime_calc_hw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0d589f98 snd_soc_component_update_bits_async -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0f9e3349 snd_soc_dapm_enable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1303d20b snd_soc_new_ac97_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1451adeb snd_soc_component_init_regmap -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1487efda snd_soc_info_volsw_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x17faa2c1 snd_soc_component_force_enable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x187158f0 snd_soc_get_volsw_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x190c9247 snd_soc_component_compr_get_codec_caps -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1a2b5420 snd_soc_dpcm_runtime_update -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1a690a82 snd_soc_component_update_bits -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1ab40b19 snd_soc_component_compr_set_metadata -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1b90ee12 devm_snd_soc_register_card -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1c72793a snd_soc_jack_report -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1d2e48fe snd_soc_card_get_kcontrol -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1f184a0a snd_soc_component_read -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1f5fb8d3 snd_soc_of_parse_card_name -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x22fc92f2 snd_soc_free_ac97_component +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xf542e9e0 asoc_simple_parse_pin_switches +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x03b924c4 devm_snd_soc_register_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x043a61ab snd_soc_of_parse_audio_routing +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x06b968cf snd_soc_component_init_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x07a41f0c snd_soc_of_get_slot_mask +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x08851b52 snd_soc_free_ac97_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x09066c90 snd_soc_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x09f07b80 snd_soc_component_compr_pointer +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0b4b3a11 snd_soc_tplg_component_load +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0c0263f5 snd_soc_jack_add_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0c3c8f60 snd_soc_dapm_kcontrol_dapm +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1033e92f snd_soc_component_disable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x10ea7991 snd_soc_dapm_weak_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x121b89b8 snd_soc_component_compr_free +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x13250ba3 snd_soc_dapm_mixer_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x134c5c22 snd_soc_dai_compr_get_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x141aa0f9 snd_soc_component_async_complete +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x16f3aa41 snd_soc_get_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x17996017 snd_soc_component_read_field +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x17d50bfb snd_soc_bytes_put +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x19076996 snd_soc_component_exit_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1a10f696 snd_soc_runtime_set_dai_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1cda13b5 snd_dmaengine_pcm_prepare_slave_config +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1cf98bc9 snd_soc_of_put_dai_link_codecs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1e4031f7 snd_soc_dapm_get_pin_status +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1e6052c4 snd_soc_dapm_sync_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1f572da0 snd_soc_component_set_jack +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1f7b61f1 snd_soc_of_parse_card_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x206f92df snd_soc_set_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x24c503aa null_dailink_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x24f1a7a2 snd_soc_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x24f2d3ba snd_soc_resume EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2541a979 snd_soc_calc_frame_size -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x254f5f70 snd_soc_unregister_component_by_driver -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x25676f72 snd_soc_dai_active -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x26cb48eb snd_soc_component_disable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2ab71774 snd_soc_dapm_new_widgets -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2b7f185a snd_soc_find_dai -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2be453b9 snd_soc_component_test_bits -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2bf79d01 snd_soc_component_compr_free -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2cdc754b snd_soc_put_volsw_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2ece4694 snd_soc_lookup_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x31c7e70b snd_soc_component_async_complete -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x344bcedd snd_soc_close_delayed_work -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x34aff965 snd_soc_of_get_dai_name -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x351e120b snd_soc_get_pcm_runtime -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x389cf328 snd_soc_component_read_field -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x39ab66c4 snd_soc_dai_set_bclk_ratio -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x39b6bbce snd_soc_dapm_kcontrol_widget -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3a4a7be3 snd_soc_dapm_add_routes -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3bd6eeab snd_soc_get_strobe -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3c7c8d07 snd_soc_set_runtime_hwparams -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3de64f1a snd_soc_dai_action -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x40c4f70d snd_soc_card_jack_new -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4139abce snd_soc_dai_compr_set_metadata -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x41f35e15 snd_soc_unregister_dai -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x42ac6afe snd_soc_component_compr_trigger -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x42bd0975 snd_soc_jack_add_pins -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4621cea2 snd_soc_component_compr_get_metadata -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x46416e76 snd_soc_tplg_component_load -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x472c8cd8 dapm_regulator_event -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x48acb7ed snd_soc_dai_digital_mute -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x48f00d9f snd_soc_dai_set_sysclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4bece5ed snd_soc_lookup_component_nolocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4f4e60b4 snd_soc_dapm_get_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5188f6c5 snd_soc_put_xr_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x523aeb83 snd_soc_dai_compr_ack -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x53b80673 snd_soc_dai_set_tristate -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x53dbcaad snd_soc_bytes_get -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x55fa65fb snd_soc_dai_get_channel_map -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x579975e8 snd_soc_jack_free_gpios -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x585e7e4e snd_soc_dapm_ignore_suspend -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x62c65166 snd_soc_register_card -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x63f25989 snd_soc_component_set_sysclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x65611f91 dpcm_be_dai_trigger -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x67210779 snd_soc_component_disable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6954828c snd_soc_put_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x696dfe93 dapm_pinctrl_event -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x697461db snd_soc_runtime_set_dai_fmt -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6b37d8e0 snd_soc_dapm_get_pin_switch -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6b727d00 snd_soc_dapm_weak_routes -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6f22656d snd_soc_dai_set_channel_map -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x709bae44 snd_soc_unregister_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7163c8cc snd_soc_card_add_dai_link -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7190def6 devm_snd_soc_register_dai -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x71b39b0f snd_soc_set_ac97_ops_of_reset -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7527714e snd_soc_poweroff -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x755eee2e snd_soc_dai_compr_get_metadata -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x75d6912f snd_soc_suspend -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x76baacc8 snd_soc_component_compr_get_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7756d7d7 snd_soc_jack_notifier_register -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x788592aa snd_soc_dpcm_can_be_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7b62d9f8 snd_soc_runtime_action -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7ca90154 snd_soc_dapm_mux_update_power -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7d3c2495 snd_soc_component_nc_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x258daa29 snd_soc_unregister_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2825d1f6 snd_soc_add_dai_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x28b1a20f snd_soc_unregister_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2afd6190 dapm_clock_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2bc84a06 snd_soc_debugfs_root +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2be44837 snd_soc_add_card_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2ce2f563 snd_soc_dapm_nc_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2eca7d93 snd_soc_component_write_field +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2f10be76 snd_soc_dapm_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x303bd7db snd_soc_lookup_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x312dc3b2 snd_soc_card_remove_dai_link +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x31ba4e72 dapm_mark_endpoints_dirty +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x31bc51fb snd_soc_get_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3241bfc2 snd_soc_component_update_bits_async +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x33fde06a snd_soc_component_compr_get_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x35d139d3 snd_soc_dapm_force_bias_level +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x376c417e snd_soc_component_test_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x382f9389 snd_soc_component_compr_set_metadata +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x390b210b snd_soc_dai_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x395454f4 snd_soc_dapm_disable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x39d359fc snd_soc_dai_action +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x39da753c snd_soc_dapm_info_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3ae1e900 snd_soc_of_get_dai_link_codecs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x410cfd71 snd_soc_pm_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4302b579 devm_snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x44b0bfca snd_soc_info_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x47b83051 snd_soc_daifmt_parse_format +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x48b351c7 snd_soc_dapm_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x48cfa274 snd_soc_dai_compr_set_metadata +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4936d963 snd_soc_put_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4aba2b58 snd_soc_unregister_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4c3dc184 snd_soc_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4e1bcf85 snd_soc_component_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x502bcd45 snd_soc_dai_compr_ack +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x50666f53 snd_dmaengine_pcm_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x528ace3c snd_soc_find_dai_with_mutex +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x54c62c93 snd_soc_component_force_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x551c517a snd_soc_bytes_info +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x556c26bb snd_soc_dapm_add_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x55e68aea snd_soc_jack_report +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5775d263 snd_soc_get_dai_id +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5a1b4d56 dapm_regulator_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5ae544bc snd_soc_component_nc_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5f8f6583 snd_soc_component_compr_get_caps +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x616f53db snd_soc_component_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x61f0b4e0 snd_soc_of_parse_node_prefix +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x666cd2d8 snd_soc_dapm_disable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x67c17890 snd_soc_tplg_widget_bind_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x69cf4adc snd_soc_new_ac97_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6be52314 snd_soc_dapm_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6bee366f snd_soc_component_compr_copy +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6d91876a snd_soc_component_update_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6f3865df snd_soc_dai_compr_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6f78ac51 dapm_pinctrl_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x70c23803 snd_soc_dai_compr_shutdown +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7252104c snd_soc_component_compr_ack +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x725ad983 snd_soc_dapm_update_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x72be5a1c snd_soc_component_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x73c384a3 snd_soc_dapm_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x751b5d8f snd_soc_component_compr_open +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x75f63259 snd_soc_of_parse_aux_devs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x763cd95e snd_soc_dapm_nc_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x78a721bf snd_soc_jack_add_zones EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e606130 snd_soc_calc_bclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e7f01c2 snd_soc_of_parse_tdm_slot -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7f34ff26 snd_soc_dai_compr_startup -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8219212f snd_soc_remove_pcm_runtime -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x827e4778 snd_soc_jack_add_zones -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x82acc9f3 snd_soc_bytes_info -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x83836fa8 snd_soc_component_compr_ack -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x84ebfe83 snd_soc_dapm_force_enable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x86a32bf1 snd_soc_of_parse_aux_devs -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x86d95b85 snd_soc_component_compr_set_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x86d973c7 dapm_kcontrol_get_value -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8783e93b snd_soc_dai_compr_pointer -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x890563ac snd_soc_of_parse_node_prefix -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8a18330d snd_soc_dapm_nc_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8cbbce08 snd_soc_dai_link_set_capabilities -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8cf035e3 snd_soc_dai_set_pll -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8ede0df5 snd_soc_dai_compr_shutdown -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x901c4aef dapm_clock_event -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9065faf8 snd_soc_component_compr_open -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x93740318 snd_soc_component_enable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x963de5fa snd_soc_limit_volume -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9741edd2 snd_soc_dpcm_can_be_free_stop -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9a8c52bb snd_soc_add_card_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9ab23fdf snd_soc_dai_compr_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7f86c8a3 snd_soc_set_ac97_ops_of_reset +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x80525613 snd_soc_card_jack_new +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8157ac7a snd_soc_component_compr_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x82299f40 snd_soc_component_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x83011075 snd_soc_add_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8456d6e8 snd_soc_component_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x860bd916 snd_soc_dapm_get_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x879f2739 soc_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8840ffa2 snd_soc_info_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x89d75f9d snd_soc_jack_free_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x89fc62a8 snd_soc_dpcm_get_substream +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8b32a432 snd_soc_get_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8c004dae snd_soc_dpcm_runtime_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8ca31b84 snd_soc_dai_set_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8e68edaa snd_soc_dai_link_set_capabilities +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8eb5e3e4 snd_soc_component_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x930cac4b snd_soc_component_get_pin_status +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x94401eff snd_soc_add_component_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x96df0a09 snd_soc_of_parse_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9792bc11 snd_soc_get_pcm_runtime +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x98397e00 snd_soc_of_parse_audio_simple_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x98fe7536 snd_soc_dapm_put_pin_switch EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9bfde704 snd_soc_daifmt_clock_provider_fliped -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9ca22d6e snd_soc_dai_compr_get_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9d2678f0 dapm_mark_endpoints_dirty -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9daf2ef0 snd_soc_dapm_new_control -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9dece1eb snd_soc_component_write -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9f1654c1 snd_soc_register_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa1259f31 snd_soc_dapm_free -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa209993b snd_soc_put_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa2542cd0 snd_soc_dapm_init -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa3dc4c03 snd_soc_component_force_enable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa3e8ab25 snd_soc_dapm_get_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa514e5f5 snd_soc_get_dai_name -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa59d90f9 snd_soc_debugfs_root -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa7b151e7 snd_soc_dai_compr_set_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa88f51b4 snd_soc_jack_add_gpios -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa8d5f272 snd_soc_put_volsw_range -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa91a7ba1 snd_soc_find_dai_with_mutex -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xab320d5c snd_soc_daifmt_parse_format -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xabd7656e snd_soc_component_compr_copy -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xac983c03 snd_soc_dapm_kcontrol_dapm -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xad3f666b snd_soc_component_compr_pointer -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xad5ff729 snd_soc_dapm_put_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xad68486c snd_soc_jack_add_gpiods -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xadb895fa snd_soc_dpcm_be_can_update -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb0679a5c snd_soc_dapm_new_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb07a1fdc snd_soc_resume -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb150fb3d snd_soc_of_parse_audio_routing -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb26180a2 snd_soc_component_set_pll -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb3081e7c snd_soc_component_initialize -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb836cc98 snd_soc_info_xr_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb836fc7e snd_soc_get_dai_id -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb8aa2f62 snd_soc_pm_ops -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb8e9e353 snd_soc_unregister_card -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbad57624 devm_snd_dmaengine_pcm_register -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbc80413a snd_soc_info_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbe94de3f snd_soc_of_put_dai_link_codecs -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbff4e1c2 snd_soc_dapm_info_pin_switch -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc2321651 snd_soc_get_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc2da5129 snd_soc_dapm_put_pin_switch -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc31f2656 snd_soc_put_strobe -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc4919a1f snd_soc_dapm_disable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc49e2d4f snd_dmaengine_pcm_prepare_slave_config -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc4d0e1c9 snd_soc_component_get_pin_status -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc56ff055 snd_soc_dai_set_tdm_slot -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc57bf9c5 snd_soc_set_ac97_ops -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc66a2618 snd_soc_of_get_slot_mask +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9ed14e1e snd_soc_dapm_force_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9f9671fb devm_snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa19aeaf5 snd_soc_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa2ec714c snd_soc_component_nc_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa52c3d67 snd_soc_dai_compr_get_metadata +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa677ebc1 snd_soc_lookup_component_nolocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa799949f snd_soc_dai_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa9f25f32 snd_soc_dai_active +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaa818c91 snd_soc_component_initialize +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaaaf31aa snd_soc_remove_pcm_runtime +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xab09bca8 snd_soc_dai_set_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb0572c92 snd_soc_bytes_tlv_callback +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb4e91aad snd_soc_put_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb52a3ef0 dpcm_be_dai_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb79457a2 snd_soc_component_compr_get_codec_caps +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb9dd6c9d snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb9f75c8b snd_soc_of_get_dai_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xba131d57 snd_soc_dpcm_be_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xba3d2e2f snd_soc_dai_compr_startup +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbabcb7c3 snd_soc_add_pcm_runtime +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbaf10322 snd_soc_runtime_calc_hw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbbdce2d6 snd_soc_new_compress +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbc69bbbc snd_soc_dapm_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbe93c541 snd_soc_dapm_stream_stop +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbf296f1d snd_soc_dapm_init +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc06c2cd1 snd_soc_jack_get_type +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc0d22046 snd_soc_set_runtime_hwparams +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc3451fae snd_soc_component_compr_get_metadata +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc4ac149d snd_soc_dapm_new_control +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc56d7b66 snd_soc_cnew +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc5838095 snd_soc_close_delayed_work +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc5e02332 snd_soc_daifmt_parse_clock_provider_raw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc6505ba7 snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc7ec3470 snd_soc_dai_set_bclk_ratio EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8269f94 snd_soc_params_to_frame_size -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc85241df snd_soc_dapm_sync_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc86cd646 snd_soc_dapm_enable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcd9cc434 snd_soc_dapm_sync -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xce0116e1 snd_soc_dapm_force_enable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xce2fde71 snd_soc_tplg_component_remove -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcf4fd552 snd_soc_jack_notifier_unregister -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd01f6da7 snd_soc_component_compr_get_caps -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd1d7c6ca snd_soc_cnew -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd1daca4c snd_soc_daifmt_parse_clock_provider_raw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd3048775 snd_soc_dapm_del_routes -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd4af8ef6 snd_soc_dai_set_clkdiv -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd51d7e51 snd_soc_dpcm_get_substream -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd5b8a5b6 null_dailink_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd7c29fca snd_soc_link_compr_set_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdcc192b8 snd_soc_dapm_update_dai -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xddb2fbe8 snd_soc_add_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdf2f816e snd_dmaengine_pcm_register -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdfe4d135 snd_soc_info_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe0a38a63 snd_soc_of_get_dai_link_codecs -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe13c8ee3 snd_soc_bytes_info_ext -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe2687a19 snd_soc_dapm_get_pin_status -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe34f0d44 snd_soc_get_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe5177df4 devm_snd_soc_register_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe530a838 snd_soc_rtdcom_lookup -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe62155ab snd_soc_link_compr_shutdown -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe993660d snd_soc_get_volsw_range -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xea245c6a snd_soc_component_nc_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb372e3c snd_soc_component_exit_regmap -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb50d91d snd_soc_component_write_field +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc97781a3 snd_soc_dai_get_channel_map +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc9fd46a9 snd_soc_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcb15949d snd_soc_dapm_force_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcce1180b snd_soc_dapm_sync +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcd003459 snd_soc_runtime_action +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcebbaf34 snd_soc_component_force_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd04389d3 snd_soc_tplg_component_remove +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd0d91c05 snd_soc_dpcm_can_be_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd13aa92f snd_soc_dai_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd32fa0a7 snd_soc_jack_notifier_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd4d61e14 snd_soc_dai_digital_mute +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd7055fd5 snd_soc_rtdcom_lookup +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd7b2e30d snd_soc_link_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd80a889d snd_soc_bytes_info_ext +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd819c462 snd_soc_dai_set_channel_map +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd871d838 snd_soc_dpcm_fe_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdad0e20f dapm_kcontrol_get_value +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdaea0e2c snd_soc_dapm_new_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdc257c8b snd_soc_get_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdc4fd8c3 snd_soc_jack_notifier_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xddf522bb snd_soc_link_compr_startup +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xde8a41c3 snd_soc_dapm_kcontrol_widget +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdf27ab98 snd_soc_dapm_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe0399081 snd_soc_jack_add_pins +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe17c0330 snd_soc_jack_add_gpiods +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe3015492 snd_soc_dapm_del_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe31021c5 snd_soc_info_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe3299cd7 snd_soc_find_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe4549343 snd_soc_limit_volume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe4d57d6d snd_soc_get_dai_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe58c9d51 snd_soc_put_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe66f6c57 snd_soc_card_add_dai_link +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe966bfee snd_soc_component_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xea0ac591 snd_soc_dpcm_can_be_free_stop +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeabf5000 snd_soc_info_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb0d092a snd_soc_link_compr_shutdown EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb711ae7 snd_soc_params_to_bclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xed2b3f02 snd_soc_add_dai_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xedc0c6a3 snd_dmaengine_pcm_unregister -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeea9deee snd_soc_dapm_nc_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf1234c2e snd_soc_card_remove_dai_link -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf1418c83 snd_soc_dapm_disable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf3e9a026 snd_soc_dapm_stream_stop -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf4c3bf6d snd_soc_link_compr_startup +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xebfd6545 snd_soc_dai_compr_pointer +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xecc40552 snd_soc_dai_set_clkdiv +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xed8f28e5 snd_soc_unregister_component_by_driver +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xef1cc306 snd_soc_bytes_get +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xef4bcfcb snd_soc_poweroff +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf0f66b73 snd_soc_info_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf1477bc2 snd_soc_put_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf4bd7981 snd_soc_card_get_kcontrol +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf541af1c snd_soc_dapm_free +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf753864b snd_soc_dapm_ignore_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf7e39ab2 snd_soc_register_component EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf9622dd1 snd_soc_daifmt_clock_provider_from_bitmap -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfaddabc0 snd_soc_dapm_put_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfaee6218 snd_soc_get_xr_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfb53c8ef snd_soc_dai_set_fmt -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfbeb73b6 snd_soc_bytes_tlv_callback -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfc2f07fc snd_soc_dapm_force_bias_level -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfe239f37 snd_soc_jack_get_type -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfe91622f snd_soc_component_enable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfeef5138 snd_soc_component_set_jack -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x1f178606 snd_sof_dbg_memory_info_init -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x552d508f snd_sof_debugfs_io_item -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x8dd91bde snd_sof_dbg_init -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0xdd627a7e snd_sof_debugfs_buf_item -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0xf9c84215 snd_sof_free_debug -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x1a6739b8 line6_read_serial_number +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfa82eb3d snd_soc_dai_set_tristate +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfb5ad84f devm_snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfc189978 snd_soc_component_disable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfc4d735d snd_soc_dapm_new_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfe82952f snd_soc_dapm_mux_update_power +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x1063f990 snd_sof_dbg_memory_info_init +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x2bac8161 snd_sof_dbg_init +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0xabd90668 snd_sof_debugfs_buf_item +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0xba6edc67 snd_sof_free_debug +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0xc7e5c8ad snd_sof_debugfs_io_item +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x09bfebec line6_send_sysex_message +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x0fcceeb7 line6_disconnect +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x1eb368d9 line6_version_request_async EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x202a1b1b line6_midi_id -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x3afc5023 line6_alloc_sysex_buffer -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x452a7051 line6_init_pcm -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x4c7a1f1e line6_pcm_release -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x5f90cbc0 line6_version_request_async -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x63b8b12f line6_send_raw_message_async -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x650e0ded line6_read_data -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x853a3141 line6_suspend -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x9d9d27f2 line6_resume -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xa2320a6f line6_init_midi -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xa471f32c line6_write_data -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xad3b68ee line6_disconnect -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xbc5a4471 line6_send_sysex_message -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xc786b518 line6_probe -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xe7140540 line6_send_raw_message -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xe9dbe3cf line6_pcm_acquire -EXPORT_SYMBOL_GPL vmlinux 0x0003392d bsg_remove_queue -EXPORT_SYMBOL_GPL vmlinux 0x000a0dcc devres_remove_group -EXPORT_SYMBOL_GPL vmlinux 0x000aa470 vp_modern_remove -EXPORT_SYMBOL_GPL vmlinux 0x000f7fa3 fat_get_dotdot_entry -EXPORT_SYMBOL_GPL vmlinux 0x001ab808 dev_pm_qos_hide_latency_limit -EXPORT_SYMBOL_GPL vmlinux 0x0020aca9 phy_set_speed -EXPORT_SYMBOL_GPL vmlinux 0x002acf0b fwnode_create_software_node -EXPORT_SYMBOL_GPL vmlinux 0x0036dcad trace_event_ignore_this_pid -EXPORT_SYMBOL_GPL vmlinux 0x004f2a04 rio_map_outb_region +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x32a580e8 line6_pcm_acquire +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x35afc1aa line6_write_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x43a4b026 line6_send_raw_message +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x594d6adc line6_alloc_sysex_buffer +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x5e37cc4f line6_init_pcm +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x5ef03223 line6_resume +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x7f5b905f line6_read_serial_number +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x8a0f8e81 line6_send_raw_message_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x8ec9255f line6_probe +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x996ebcb6 line6_pcm_release +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xc499c332 line6_suspend +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xcf779094 line6_read_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xdfd325e4 line6_init_midi +EXPORT_SYMBOL_GPL vmlinux 0x0002b098 devm_regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x0004ab1a bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0009a506 anon_inode_getfd +EXPORT_SYMBOL_GPL vmlinux 0x000ecc93 rio_release_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x0028c5d0 cpuidle_get_cpu_driver EXPORT_SYMBOL_GPL vmlinux 0x00513f58 get_timespec64 -EXPORT_SYMBOL_GPL vmlinux 0x005af6b9 devm_usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0x00527782 lwtstate_free +EXPORT_SYMBOL_GPL vmlinux 0x0056cc6d pciserial_init_ports +EXPORT_SYMBOL_GPL vmlinux 0x00575650 gpiochip_get_desc +EXPORT_SYMBOL_GPL vmlinux 0x00661479 gpiochip_irq_unmap +EXPORT_SYMBOL_GPL vmlinux 0x006742c7 ata_sff_lost_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x007661a0 ata_bmdma_irq_clear +EXPORT_SYMBOL_GPL vmlinux 0x007c6149 crypto_unregister_ahash EXPORT_SYMBOL_GPL vmlinux 0x008539f0 klp_shadow_alloc -EXPORT_SYMBOL_GPL vmlinux 0x00a21dab rio_mport_get_physefb -EXPORT_SYMBOL_GPL vmlinux 0x00a3d45d iommu_sva_get_pasid -EXPORT_SYMBOL_GPL vmlinux 0x00a8fb14 pin_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0x008650d3 regulator_get_voltage_rdev +EXPORT_SYMBOL_GPL vmlinux 0x008ee3c9 of_irq_parse_one +EXPORT_SYMBOL_GPL vmlinux 0x0095af4d bus_register +EXPORT_SYMBOL_GPL vmlinux 0x009664a1 fwnode_remove_software_node +EXPORT_SYMBOL_GPL vmlinux 0x009c1f65 virtqueue_detach_unused_buf +EXPORT_SYMBOL_GPL vmlinux 0x00c5ee02 generic_fh_to_parent +EXPORT_SYMBOL_GPL vmlinux 0x00c9bdb3 crypto_alloc_tfm_node +EXPORT_SYMBOL_GPL vmlinux 0x00d2231d devm_pwm_get EXPORT_SYMBOL_GPL vmlinux 0x00d4c500 usb_decode_interval -EXPORT_SYMBOL_GPL vmlinux 0x00ecc00f devlink_trap_report -EXPORT_SYMBOL_GPL vmlinux 0x01030917 rq_flush_dcache_pages -EXPORT_SYMBOL_GPL vmlinux 0x011d6f7d pci_walk_bus -EXPORT_SYMBOL_GPL vmlinux 0x0126c41c fsnotify_find_mark -EXPORT_SYMBOL_GPL vmlinux 0x012a0d50 ack_all_badblocks -EXPORT_SYMBOL_GPL vmlinux 0x01322f48 clk_hw_register_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0x0146967e tracing_snapshot_cond_disable -EXPORT_SYMBOL_GPL vmlinux 0x014fd2be usb_hcd_start_port_resume -EXPORT_SYMBOL_GPL vmlinux 0x0159893e pm_generic_freeze_late +EXPORT_SYMBOL_GPL vmlinux 0x00d9e0a6 devm_kasprintf +EXPORT_SYMBOL_GPL vmlinux 0x00ebc6fe skb_copy_ubufs +EXPORT_SYMBOL_GPL vmlinux 0x00eef30d usb_control_msg_send +EXPORT_SYMBOL_GPL vmlinux 0x010119e7 regulator_map_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x010359b8 crypto_enqueue_request +EXPORT_SYMBOL_GPL vmlinux 0x010f5967 regmap_read +EXPORT_SYMBOL_GPL vmlinux 0x0114b410 class_destroy +EXPORT_SYMBOL_GPL vmlinux 0x01275015 gpiod_export_link +EXPORT_SYMBOL_GPL vmlinux 0x012f72b3 sysfs_remove_bin_file EXPORT_SYMBOL_GPL vmlinux 0x0159c819 usb_bus_idr -EXPORT_SYMBOL_GPL vmlinux 0x015a19e8 dm_path_uevent -EXPORT_SYMBOL_GPL vmlinux 0x017b9a62 spi_split_transfers_maxsize +EXPORT_SYMBOL_GPL vmlinux 0x015e9dec spi_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x016af7c3 device_match_any +EXPORT_SYMBOL_GPL vmlinux 0x01726f32 skb_zerocopy +EXPORT_SYMBOL_GPL vmlinux 0x017ebebb nvdimm_delete EXPORT_SYMBOL_GPL vmlinux 0x01866a57 ezx_pcap_set_bits EXPORT_SYMBOL_GPL vmlinux 0x01907648 klist_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0x019af09b max8997_bulk_write -EXPORT_SYMBOL_GPL vmlinux 0x019e1267 sb800_prefetch +EXPORT_SYMBOL_GPL vmlinux 0x01922e06 gpiochip_free_own_desc +EXPORT_SYMBOL_GPL vmlinux 0x019c33a4 devm_power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0x019fcfaf regulator_list_voltage_pickable_linear_range EXPORT_SYMBOL_GPL vmlinux 0x01a0cb78 property_entries_free -EXPORT_SYMBOL_GPL vmlinux 0x01a0ddc1 ncsi_register_dev -EXPORT_SYMBOL_GPL vmlinux 0x01ab613e sdio_f0_writeb +EXPORT_SYMBOL_GPL vmlinux 0x01af81da regulator_get_error_flags +EXPORT_SYMBOL_GPL vmlinux 0x01b08fde rdev_clear_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x01cb98f9 kvmppc_check_need_tlb_flush +EXPORT_SYMBOL_GPL vmlinux 0x01d20914 blk_stat_enable_accounting EXPORT_SYMBOL_GPL vmlinux 0x01e1a8de kgdb_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x01ed7202 pcibios_scan_phb -EXPORT_SYMBOL_GPL vmlinux 0x01fb6298 thermal_zone_device_enable +EXPORT_SYMBOL_GPL vmlinux 0x020426e3 adp5520_set_bits EXPORT_SYMBOL_GPL vmlinux 0x0207a6c6 reset_control_bulk_acquire -EXPORT_SYMBOL_GPL vmlinux 0x02119d6d crypto_stats_compress -EXPORT_SYMBOL_GPL vmlinux 0x021bea2b vas_register_api_powernv +EXPORT_SYMBOL_GPL vmlinux 0x021968af ata_sff_hsm_move +EXPORT_SYMBOL_GPL vmlinux 0x0229d60e ethnl_cable_test_result +EXPORT_SYMBOL_GPL vmlinux 0x0230ea36 ehci_suspend EXPORT_SYMBOL_GPL vmlinux 0x02394899 play_idle_precise -EXPORT_SYMBOL_GPL vmlinux 0x023f2428 __netpoll_setup EXPORT_SYMBOL_GPL vmlinux 0x024d13dd request_free_mem_region -EXPORT_SYMBOL_GPL vmlinux 0x02526eb0 stmpe_disable -EXPORT_SYMBOL_GPL vmlinux 0x02667d37 __clk_hw_register_gate -EXPORT_SYMBOL_GPL vmlinux 0x026bfab0 fwnode_get_phy_node -EXPORT_SYMBOL_GPL vmlinux 0x02705cd5 __vfs_setxattr_noperm -EXPORT_SYMBOL_GPL vmlinux 0x02a0a03f serial8250_request_dma -EXPORT_SYMBOL_GPL vmlinux 0x02a1962d __dma_request_channel -EXPORT_SYMBOL_GPL vmlinux 0x02a7b209 of_get_named_gpio_flags -EXPORT_SYMBOL_GPL vmlinux 0x02b193d1 relay_flush -EXPORT_SYMBOL_GPL vmlinux 0x02baa81c fscrypt_prepare_new_inode -EXPORT_SYMBOL_GPL vmlinux 0x02bcfae3 led_trigger_blink_oneshot -EXPORT_SYMBOL_GPL vmlinux 0x02c18977 bpf_redirect_info -EXPORT_SYMBOL_GPL vmlinux 0x02ca1614 crypto_mod_put -EXPORT_SYMBOL_GPL vmlinux 0x02d3196d phy_init -EXPORT_SYMBOL_GPL vmlinux 0x02dc5655 tracing_snapshot_cond_enable -EXPORT_SYMBOL_GPL vmlinux 0x02ec568a regmap_async_complete_cb -EXPORT_SYMBOL_GPL vmlinux 0x030dc92d cpu_device_create +EXPORT_SYMBOL_GPL vmlinux 0x0252d7ff devm_request_pci_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0x025c35b7 usb_phy_roothub_resume +EXPORT_SYMBOL_GPL vmlinux 0x02760baa ata_bmdma32_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x02a0d278 pci_status_get_and_clear_errors +EXPORT_SYMBOL_GPL vmlinux 0x02b35387 vfio_pci_core_match +EXPORT_SYMBOL_GPL vmlinux 0x02d99867 pci_hp_add +EXPORT_SYMBOL_GPL vmlinux 0x02f36552 devfreq_event_set_event +EXPORT_SYMBOL_GPL vmlinux 0x02f5f305 devlink_port_params_register +EXPORT_SYMBOL_GPL vmlinux 0x02f8a15a sdio_readw +EXPORT_SYMBOL_GPL vmlinux 0x0305f181 pci_epc_mem_free_addr EXPORT_SYMBOL_GPL vmlinux 0x0312b3b0 reset_controller_add_lookup -EXPORT_SYMBOL_GPL vmlinux 0x03218089 irq_remove_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x031edb9b ohci_hub_control EXPORT_SYMBOL_GPL vmlinux 0x0321cdbf of_alias_get_highest_id -EXPORT_SYMBOL_GPL vmlinux 0x03225c36 badblocks_clear -EXPORT_SYMBOL_GPL vmlinux 0x0335e770 bus_sort_breadthfirst +EXPORT_SYMBOL_GPL vmlinux 0x0325143f bio_add_zone_append_page EXPORT_SYMBOL_GPL vmlinux 0x033832c7 usb_amd_hang_symptom_quirk -EXPORT_SYMBOL_GPL vmlinux 0x03415ad4 skb_complete_wifi_ack EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list -EXPORT_SYMBOL_GPL vmlinux 0x0357d199 skb_mpls_push -EXPORT_SYMBOL_GPL vmlinux 0x03677cee security_path_truncate +EXPORT_SYMBOL_GPL vmlinux 0x036a8fa2 crypto_aes_set_key +EXPORT_SYMBOL_GPL vmlinux 0x036ad502 rt_mutex_trylock EXPORT_SYMBOL_GPL vmlinux 0x036de383 perf_event_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x0378f83f inode_congested -EXPORT_SYMBOL_GPL vmlinux 0x03904f0e clk_hw_get_rate -EXPORT_SYMBOL_GPL vmlinux 0x039364cf d_exchange +EXPORT_SYMBOL_GPL vmlinux 0x03715bfb irq_chip_release_resources_parent +EXPORT_SYMBOL_GPL vmlinux 0x037a4e9f clk_hw_round_rate +EXPORT_SYMBOL_GPL vmlinux 0x037b1be3 mptcp_pm_get_add_addr_signal_max +EXPORT_SYMBOL_GPL vmlinux 0x0380084d dev_pm_opp_get_freq +EXPORT_SYMBOL_GPL vmlinux 0x0380d5dd ata_scsi_slave_config EXPORT_SYMBOL_GPL vmlinux 0x03952887 ktime_add_safe +EXPORT_SYMBOL_GPL vmlinux 0x03be0232 regmap_get_device EXPORT_SYMBOL_GPL vmlinux 0x03c12dfe cancel_work_sync -EXPORT_SYMBOL_GPL vmlinux 0x03c8a852 ata_cable_sata +EXPORT_SYMBOL_GPL vmlinux 0x03c7df26 rtnl_delete_link EXPORT_SYMBOL_GPL vmlinux 0x03ce7234 sched_smt_present -EXPORT_SYMBOL_GPL vmlinux 0x03ceac72 sk_msg_free_nocharge -EXPORT_SYMBOL_GPL vmlinux 0x03d0cc73 max8997_update_reg -EXPORT_SYMBOL_GPL vmlinux 0x03df1598 dev_pm_opp_remove -EXPORT_SYMBOL_GPL vmlinux 0x03f2bf0f lp8788_read_multi_bytes -EXPORT_SYMBOL_GPL vmlinux 0x0400d30d genphy_c45_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0x03ea38be serial8250_read_char +EXPORT_SYMBOL_GPL vmlinux 0x03fa7750 devm_gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0x04024288 rio_route_add_entry EXPORT_SYMBOL_GPL vmlinux 0x0402cbbf preempt_notifier_inc +EXPORT_SYMBOL_GPL vmlinux 0x040427c3 fat_attach +EXPORT_SYMBOL_GPL vmlinux 0x040a0ac4 wbt_disable_default +EXPORT_SYMBOL_GPL vmlinux 0x0411dffd regcache_sync +EXPORT_SYMBOL_GPL vmlinux 0x041330f0 dev_attr_em_message +EXPORT_SYMBOL_GPL vmlinux 0x04177335 crypto_register_aeads +EXPORT_SYMBOL_GPL vmlinux 0x041e2097 debugfs_create_x8 EXPORT_SYMBOL_GPL vmlinux 0x041e8b10 xas_find -EXPORT_SYMBOL_GPL vmlinux 0x04258134 __devm_regmap_init_mmio_clk EXPORT_SYMBOL_GPL vmlinux 0x04258796 opal_flash_read EXPORT_SYMBOL_GPL vmlinux 0x042c9a04 em_cpu_get -EXPORT_SYMBOL_GPL vmlinux 0x04309a41 dax_layout_busy_page_range -EXPORT_SYMBOL_GPL vmlinux 0x0433a2cf tty_kclose -EXPORT_SYMBOL_GPL vmlinux 0x04412803 of_led_get -EXPORT_SYMBOL_GPL vmlinux 0x04425fcd led_classdev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0454b4c4 wwan_register_ops -EXPORT_SYMBOL_GPL vmlinux 0x0460f532 pstore_unregister +EXPORT_SYMBOL_GPL vmlinux 0x04334393 pinmux_generic_get_function_count +EXPORT_SYMBOL_GPL vmlinux 0x043cdb66 mmu_notifier_get_locked +EXPORT_SYMBOL_GPL vmlinux 0x043f26b0 power_supply_external_power_changed +EXPORT_SYMBOL_GPL vmlinux 0x04573d28 synth_event_trace EXPORT_SYMBOL_GPL vmlinux 0x0465a073 regmap_reg_in_ranges -EXPORT_SYMBOL_GPL vmlinux 0x046cd927 device_match_of_node +EXPORT_SYMBOL_GPL vmlinux 0x0466ee42 divider_round_rate_parent +EXPORT_SYMBOL_GPL vmlinux 0x0468bb42 ata_wait_after_reset EXPORT_SYMBOL_GPL vmlinux 0x046f359e of_overlay_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x047ce759 regmap_raw_write -EXPORT_SYMBOL_GPL vmlinux 0x047d55bb fuse_dev_alloc +EXPORT_SYMBOL_GPL vmlinux 0x04702ec3 kvmppc_hpte_hv_fault +EXPORT_SYMBOL_GPL vmlinux 0x0473e1d1 ata_pci_bmdma_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0x047703e4 serdev_controller_alloc EXPORT_SYMBOL_GPL vmlinux 0x048b5f8d twl4030_audio_get_mclk -EXPORT_SYMBOL_GPL vmlinux 0x04a4ab9d dma_async_device_channel_register -EXPORT_SYMBOL_GPL vmlinux 0x04a4fbf6 devfreq_get_devfreq_by_node -EXPORT_SYMBOL_GPL vmlinux 0x04b182ff irq_set_chip_and_handler_name +EXPORT_SYMBOL_GPL vmlinux 0x048bce9b crypto_unregister_scomp +EXPORT_SYMBOL_GPL vmlinux 0x048d0e13 ata_sas_async_probe +EXPORT_SYMBOL_GPL vmlinux 0x04b16702 of_genpd_parse_idle_states +EXPORT_SYMBOL_GPL vmlinux 0x04b2f9b7 crypto_shash_final EXPORT_SYMBOL_GPL vmlinux 0x04bf0092 io_cgrp_subsys_enabled_key EXPORT_SYMBOL_GPL vmlinux 0x04c4f603 mpi_get_buffer EXPORT_SYMBOL_GPL vmlinux 0x04c8aebf console_verbose EXPORT_SYMBOL_GPL vmlinux 0x04d3becc inet_twsk_purge EXPORT_SYMBOL_GPL vmlinux 0x04df8fbc lzo1x_decompress_safe -EXPORT_SYMBOL_GPL vmlinux 0x04eab87f pci_epc_init_notify -EXPORT_SYMBOL_GPL vmlinux 0x04f2f7ad kvmhv_vcpu_entry_p9 -EXPORT_SYMBOL_GPL vmlinux 0x04fadc2f __kernel_write -EXPORT_SYMBOL_GPL vmlinux 0x05161209 device_property_read_u32_array -EXPORT_SYMBOL_GPL vmlinux 0x0516332c regulator_bulk_set_supply_names -EXPORT_SYMBOL_GPL vmlinux 0x051b00ee __fscrypt_prepare_setattr -EXPORT_SYMBOL_GPL vmlinux 0x051b3504 thermal_zone_of_sensor_register -EXPORT_SYMBOL_GPL vmlinux 0x0524461d of_hwspin_lock_get_id_byname +EXPORT_SYMBOL_GPL vmlinux 0x0505007e tcp_bpf_sendmsg_redir +EXPORT_SYMBOL_GPL vmlinux 0x0523fccb inet_csk_get_port EXPORT_SYMBOL_GPL vmlinux 0x052c9aed ktime_get_real_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0x053a1545 md_rdev_clear -EXPORT_SYMBOL_GPL vmlinux 0x053b3cfd __fl6_sock_lookup +EXPORT_SYMBOL_GPL vmlinux 0x052d9c10 gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0x052f54cf unregister_virtio_driver EXPORT_SYMBOL_GPL vmlinux 0x053d738a __SCK__tp_func_br_fdb_update -EXPORT_SYMBOL_GPL vmlinux 0x053ed111 pci_reset_bus EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt -EXPORT_SYMBOL_GPL vmlinux 0x055025a2 platform_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x054fbeb9 trace_event_buffer_lock_reserve EXPORT_SYMBOL_GPL vmlinux 0x0558ab4a freq_qos_update_request EXPORT_SYMBOL_GPL vmlinux 0x055de877 srcu_notifier_chain_register EXPORT_SYMBOL_GPL vmlinux 0x05610897 of_changeset_destroy -EXPORT_SYMBOL_GPL vmlinux 0x0565e16d pci_hp_add -EXPORT_SYMBOL_GPL vmlinux 0x05698ebc spi_busnum_to_master -EXPORT_SYMBOL_GPL vmlinux 0x0569a608 serial8250_tx_chars -EXPORT_SYMBOL_GPL vmlinux 0x057caf3e do_unregister_con_driver -EXPORT_SYMBOL_GPL vmlinux 0x057fc828 sk_psock_init +EXPORT_SYMBOL_GPL vmlinux 0x056d59c0 edac_mc_alloc EXPORT_SYMBOL_GPL vmlinux 0x05883efb __traceiter_suspend_resume EXPORT_SYMBOL_GPL vmlinux 0x058c6377 for_each_kernel_tracepoint -EXPORT_SYMBOL_GPL vmlinux 0x0599f239 devm_of_phy_provider_unregister -EXPORT_SYMBOL_GPL vmlinux 0x05a06a8a blkcg_root -EXPORT_SYMBOL_GPL vmlinux 0x05b0f14a led_trigger_remove -EXPORT_SYMBOL_GPL vmlinux 0x05bbdf28 msi_desc_to_pci_sysdata -EXPORT_SYMBOL_GPL vmlinux 0x05ed353b ehci_suspend -EXPORT_SYMBOL_GPL vmlinux 0x05f9e964 usb_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x05c63347 devm_pm_opp_register_set_opp_helper +EXPORT_SYMBOL_GPL vmlinux 0x05d5e3c2 devm_devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0x05da2f87 dev_pm_opp_get_required_pstate +EXPORT_SYMBOL_GPL vmlinux 0x05e9395c device_set_node +EXPORT_SYMBOL_GPL vmlinux 0x05f87a3b pci_cfg_access_trylock +EXPORT_SYMBOL_GPL vmlinux 0x05fb75b3 screen_glyph +EXPORT_SYMBOL_GPL vmlinux 0x0602ecf0 scsi_internal_device_unblock_nowait EXPORT_SYMBOL_GPL vmlinux 0x06055a23 __tracepoint_pelt_se_tp -EXPORT_SYMBOL_GPL vmlinux 0x06073b27 tc3589x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x06090b29 debugfs_create_devm_seqfile +EXPORT_SYMBOL_GPL vmlinux 0x06173c96 devm_gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x0619f61f da903x_unregister_notifier EXPORT_SYMBOL_GPL vmlinux 0x06209f49 phy_lookup_setting -EXPORT_SYMBOL_GPL vmlinux 0x0624a190 led_get_default_pattern +EXPORT_SYMBOL_GPL vmlinux 0x0626ac14 devres_open_group EXPORT_SYMBOL_GPL vmlinux 0x0626da5f od_unregister_powersave_bias_handler EXPORT_SYMBOL_GPL vmlinux 0x06285d2a leds_list_lock -EXPORT_SYMBOL_GPL vmlinux 0x0636962a sk_msg_free -EXPORT_SYMBOL_GPL vmlinux 0x0636a56f class_find_device -EXPORT_SYMBOL_GPL vmlinux 0x06380b8d pci_find_next_ht_capability -EXPORT_SYMBOL_GPL vmlinux 0x063b65d2 thermal_zone_device_register +EXPORT_SYMBOL_GPL vmlinux 0x062d84a3 mpc8xxx_spi_rx_buf_u32 +EXPORT_SYMBOL_GPL vmlinux 0x063cf8a6 mbox_chan_received_data +EXPORT_SYMBOL_GPL vmlinux 0x064398a2 misc_cg_try_charge EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry -EXPORT_SYMBOL_GPL vmlinux 0x0688886d auxiliary_device_init -EXPORT_SYMBOL_GPL vmlinux 0x068ab7d3 sdio_get_host_pm_caps -EXPORT_SYMBOL_GPL vmlinux 0x0695a2ca rtnl_get_net_ns_capable -EXPORT_SYMBOL_GPL vmlinux 0x069da1e7 spi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x06a07a40 tty_port_install -EXPORT_SYMBOL_GPL vmlinux 0x06a8291a gpiod_to_irq -EXPORT_SYMBOL_GPL vmlinux 0x06aae22b vfs_removexattr -EXPORT_SYMBOL_GPL vmlinux 0x06c7700c extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0670ddaa rdev_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x0684f82e pci_bus_max_busnr +EXPORT_SYMBOL_GPL vmlinux 0x0690ed30 tty_kopen_shared +EXPORT_SYMBOL_GPL vmlinux 0x069c83e7 usb_hub_clear_tt_buffer +EXPORT_SYMBOL_GPL vmlinux 0x06a9ca5e crypto_register_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x06ae4ded blk_mq_unfreeze_queue +EXPORT_SYMBOL_GPL vmlinux 0x06c64dba usb_deregister EXPORT_SYMBOL_GPL vmlinux 0x06cca30b ring_buffer_record_off -EXPORT_SYMBOL_GPL vmlinux 0x06d73ba0 debugfs_create_file_unsafe -EXPORT_SYMBOL_GPL vmlinux 0x06dd2e1c ip6_dst_lookup -EXPORT_SYMBOL_GPL vmlinux 0x06eade88 genpd_dev_pm_attach -EXPORT_SYMBOL_GPL vmlinux 0x06ed6a77 fl6_merge_options -EXPORT_SYMBOL_GPL vmlinux 0x07013686 devlink_port_unregister -EXPORT_SYMBOL_GPL vmlinux 0x070f0411 __fscrypt_encrypt_symlink +EXPORT_SYMBOL_GPL vmlinux 0x06d803b2 debugfs_real_fops +EXPORT_SYMBOL_GPL vmlinux 0x06f62613 spi_res_release +EXPORT_SYMBOL_GPL vmlinux 0x06fe4a21 __auxiliary_device_add +EXPORT_SYMBOL_GPL vmlinux 0x070884dd nvmem_cell_read_u32 EXPORT_SYMBOL_GPL vmlinux 0x07242d92 put_dax -EXPORT_SYMBOL_GPL vmlinux 0x0731584d tpm_chip_register -EXPORT_SYMBOL_GPL vmlinux 0x0743c895 __traceiter_sched_update_nr_running_tp -EXPORT_SYMBOL_GPL vmlinux 0x0745013e fib_rule_matchall +EXPORT_SYMBOL_GPL vmlinux 0x0728e2d8 of_genpd_del_provider +EXPORT_SYMBOL_GPL vmlinux 0x073182f3 auxiliary_device_init +EXPORT_SYMBOL_GPL vmlinux 0x0739c340 crypto_stats_kpp_compute_shared_secret +EXPORT_SYMBOL_GPL vmlinux 0x073d59b2 tcp_slow_start EXPORT_SYMBOL_GPL vmlinux 0x07483e13 cn_del_callback -EXPORT_SYMBOL_GPL vmlinux 0x0749c1b8 irq_setup_alt_chip EXPORT_SYMBOL_GPL vmlinux 0x074f98db synth_event_add_field -EXPORT_SYMBOL_GPL vmlinux 0x0759d581 tps65912_device_init -EXPORT_SYMBOL_GPL vmlinux 0x075f8828 ata_scsi_dma_need_drain +EXPORT_SYMBOL_GPL vmlinux 0x0750e971 spi_slave_abort +EXPORT_SYMBOL_GPL vmlinux 0x07545c0f cpufreq_dbs_governor_start +EXPORT_SYMBOL_GPL vmlinux 0x075a2b30 ethnl_cable_test_step EXPORT_SYMBOL_GPL vmlinux 0x076356e7 sfp_may_have_phy EXPORT_SYMBOL_GPL vmlinux 0x07646cee ata_tf_to_fis -EXPORT_SYMBOL_GPL vmlinux 0x076bf600 sock_diag_unregister_inet_compat -EXPORT_SYMBOL_GPL vmlinux 0x07971b6c pci_enable_ats -EXPORT_SYMBOL_GPL vmlinux 0x07a07338 gpiod_get_optional -EXPORT_SYMBOL_GPL vmlinux 0x07ad3a1b spi_take_timestamp_pre +EXPORT_SYMBOL_GPL vmlinux 0x0764eb7b sata_pmp_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x077142aa dm_bio_from_per_bio_data +EXPORT_SYMBOL_GPL vmlinux 0x07759d2a pm_generic_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x077cf629 devres_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x078c3dd7 usb_put_intf +EXPORT_SYMBOL_GPL vmlinux 0x07b07f12 ata_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x07b0d7f7 nd_cmd_out_size EXPORT_SYMBOL_GPL vmlinux 0x07b21f85 kdb_get_kbd_char +EXPORT_SYMBOL_GPL vmlinux 0x07b24dab usb_get_phy EXPORT_SYMBOL_GPL vmlinux 0x07b52e38 rtnl_unregister -EXPORT_SYMBOL_GPL vmlinux 0x07ba262a bpfilter_umh_cleanup EXPORT_SYMBOL_GPL vmlinux 0x07be6905 net_inc_egress_queue -EXPORT_SYMBOL_GPL vmlinux 0x07c554a0 dev_pm_domain_set -EXPORT_SYMBOL_GPL vmlinux 0x07cddaf7 pm_generic_suspend_noirq -EXPORT_SYMBOL_GPL vmlinux 0x07eb61b7 usb_unlink_urb -EXPORT_SYMBOL_GPL vmlinux 0x07f42fc6 sk_msg_recvmsg -EXPORT_SYMBOL_GPL vmlinux 0x07f66ce5 extcon_unregister_notifier_all -EXPORT_SYMBOL_GPL vmlinux 0x07f913d2 mmu_interval_read_begin -EXPORT_SYMBOL_GPL vmlinux 0x08077f8b fscrypt_ioctl_remove_key_all_users -EXPORT_SYMBOL_GPL vmlinux 0x08092135 sec_irq_init +EXPORT_SYMBOL_GPL vmlinux 0x07c3de16 devlink_port_region_create +EXPORT_SYMBOL_GPL vmlinux 0x07d77171 __traceiter_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x07d8afa3 pcie_update_link_speed +EXPORT_SYMBOL_GPL vmlinux 0x07dceb6a wakeup_source_create +EXPORT_SYMBOL_GPL vmlinux 0x07edb695 dma_resv_get_fences +EXPORT_SYMBOL_GPL vmlinux 0x07ef1f9a stmpe_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x07f9333a __pm_runtime_resume EXPORT_SYMBOL_GPL vmlinux 0x08135613 dax_write_cache -EXPORT_SYMBOL_GPL vmlinux 0x0817b3ce dev_nit_active -EXPORT_SYMBOL_GPL vmlinux 0x0828d609 mc146818_get_time -EXPORT_SYMBOL_GPL vmlinux 0x0828d75e devm_hwspin_lock_free +EXPORT_SYMBOL_GPL vmlinux 0x08195169 ip6_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0x081caceb devm_clk_hw_unregister +EXPORT_SYMBOL_GPL vmlinux 0x081ffc4a ndo_dflt_bridge_getlink +EXPORT_SYMBOL_GPL vmlinux 0x083afea7 dma_run_dependencies EXPORT_SYMBOL_GPL vmlinux 0x084470c0 tracepoint_srcu -EXPORT_SYMBOL_GPL vmlinux 0x084ea692 rtc_update_irq -EXPORT_SYMBOL_GPL vmlinux 0x08512cde relay_close -EXPORT_SYMBOL_GPL vmlinux 0x08554c10 scsi_dh_attached_handler_name -EXPORT_SYMBOL_GPL vmlinux 0x0875b8b7 __kthread_init_worker +EXPORT_SYMBOL_GPL vmlinux 0x085b512c inet6_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x085ca37f regmap_exit +EXPORT_SYMBOL_GPL vmlinux 0x087125ec __regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0x0877cfee inet_unhash EXPORT_SYMBOL_GPL vmlinux 0x087f5dc5 wm831x_of_match -EXPORT_SYMBOL_GPL vmlinux 0x08808fc8 synth_event_add_next_val -EXPORT_SYMBOL_GPL vmlinux 0x088c6a69 platform_irq_count -EXPORT_SYMBOL_GPL vmlinux 0x08b1c066 irq_domain_pop_irq +EXPORT_SYMBOL_GPL vmlinux 0x088d9bda gpiochip_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0x08915818 rtc_read_time +EXPORT_SYMBOL_GPL vmlinux 0x0896c19c l3mdev_table_lookup_register +EXPORT_SYMBOL_GPL vmlinux 0x08bf46b0 class_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0x08c14fee pm_generic_runtime_suspend EXPORT_SYMBOL_GPL vmlinux 0x08c78cf7 offline_and_remove_memory -EXPORT_SYMBOL_GPL vmlinux 0x08db6c69 spi_res_alloc -EXPORT_SYMBOL_GPL vmlinux 0x08f9115d devm_request_pci_bus_resources -EXPORT_SYMBOL_GPL vmlinux 0x08ff1b14 mpic_subsys -EXPORT_SYMBOL_GPL vmlinux 0x090f1742 flush_fp_to_thread -EXPORT_SYMBOL_GPL vmlinux 0x09152a17 genphy_c45_read_pma -EXPORT_SYMBOL_GPL vmlinux 0x091bc3b5 query_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0x08ce811a uart_handle_dcd_change +EXPORT_SYMBOL_GPL vmlinux 0x08e86412 vfio_assign_device_set EXPORT_SYMBOL_GPL vmlinux 0x091c824a machine_power_off +EXPORT_SYMBOL_GPL vmlinux 0x091ce862 usb_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x091e177c pci_epc_clear_bar EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies -EXPORT_SYMBOL_GPL vmlinux 0x0924e8c6 edac_device_del_device -EXPORT_SYMBOL_GPL vmlinux 0x0930a1f1 dmaengine_desc_set_metadata_len -EXPORT_SYMBOL_GPL vmlinux 0x0931e724 bpf_map_inc_not_zero EXPORT_SYMBOL_GPL vmlinux 0x093786cf synth_event_add_field_str -EXPORT_SYMBOL_GPL vmlinux 0x093fdcf3 led_compose_name EXPORT_SYMBOL_GPL vmlinux 0x094af376 xas_load -EXPORT_SYMBOL_GPL vmlinux 0x095b244b blk_rq_err_bytes -EXPORT_SYMBOL_GPL vmlinux 0x096e4249 nvmem_cell_read_u32 -EXPORT_SYMBOL_GPL vmlinux 0x096e4bea clk_hw_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0975d186 sk_msg_alloc -EXPORT_SYMBOL_GPL vmlinux 0x097be31b devm_pinctrl_get -EXPORT_SYMBOL_GPL vmlinux 0x097e0620 devm_power_supply_register_no_ws -EXPORT_SYMBOL_GPL vmlinux 0x09a9cf67 attribute_container_find_class_device -EXPORT_SYMBOL_GPL vmlinux 0x09b53a64 kthread_park +EXPORT_SYMBOL_GPL vmlinux 0x0952111c virtqueue_get_buf_ctx +EXPORT_SYMBOL_GPL vmlinux 0x0972d19a clk_hw_get_num_parents +EXPORT_SYMBOL_GPL vmlinux 0x09b33007 input_ff_event EXPORT_SYMBOL_GPL vmlinux 0x09b53e14 interval_tree_remove EXPORT_SYMBOL_GPL vmlinux 0x09b5b2e8 rhashtable_free_and_destroy -EXPORT_SYMBOL_GPL vmlinux 0x09d3a7dc __vfs_setxattr_locked -EXPORT_SYMBOL_GPL vmlinux 0x09f2d8d0 dma_buf_put -EXPORT_SYMBOL_GPL vmlinux 0x09f38587 skb_gso_validate_network_len -EXPORT_SYMBOL_GPL vmlinux 0x09f490a8 xfrm_local_error -EXPORT_SYMBOL_GPL vmlinux 0x0a004688 xdp_return_frame_rx_napi -EXPORT_SYMBOL_GPL vmlinux 0x0a08401c regulator_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x0a0d7914 dev_forward_skb -EXPORT_SYMBOL_GPL vmlinux 0x0a347ba4 access_process_vm -EXPORT_SYMBOL_GPL vmlinux 0x0a4126a5 pci_common_swizzle -EXPORT_SYMBOL_GPL vmlinux 0x0a42067d fscrypt_symlink_getattr +EXPORT_SYMBOL_GPL vmlinux 0x09c6ce8b tpm_tis_remove +EXPORT_SYMBOL_GPL vmlinux 0x09d092de spi_write_then_read +EXPORT_SYMBOL_GPL vmlinux 0x09d66902 crypto_stats_skcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x09dddba4 user_destroy +EXPORT_SYMBOL_GPL vmlinux 0x09e28aa5 get_current_tty +EXPORT_SYMBOL_GPL vmlinux 0x09f78c02 dev_pm_opp_of_add_table +EXPORT_SYMBOL_GPL vmlinux 0x0a0b8c7e ncsi_unregister_dev +EXPORT_SYMBOL_GPL vmlinux 0x0a2b894d pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0x0a307f2d genphy_c45_pma_setup_forced +EXPORT_SYMBOL_GPL vmlinux 0x0a38577d edac_device_add_device EXPORT_SYMBOL_GPL vmlinux 0x0a463293 __tracepoint_error_report_end +EXPORT_SYMBOL_GPL vmlinux 0x0a4dbb2c fscrypt_drop_inode EXPORT_SYMBOL_GPL vmlinux 0x0a51ae5b virq_to_hw +EXPORT_SYMBOL_GPL vmlinux 0x0a51efdb virtqueue_is_broken +EXPORT_SYMBOL_GPL vmlinux 0x0a688531 rcu_read_unlock_trace_special EXPORT_SYMBOL_GPL vmlinux 0x0a6c4041 cn_netlink_send -EXPORT_SYMBOL_GPL vmlinux 0x0a710420 do_tcp_sendpages +EXPORT_SYMBOL_GPL vmlinux 0x0a6e28f9 of_icc_bulk_get EXPORT_SYMBOL_GPL vmlinux 0x0a7ceb30 __tracepoint_non_standard_event -EXPORT_SYMBOL_GPL vmlinux 0x0a7cf96d device_match_devt -EXPORT_SYMBOL_GPL vmlinux 0x0a8d6a0b device_attach +EXPORT_SYMBOL_GPL vmlinux 0x0a92a0d8 transport_class_register EXPORT_SYMBOL_GPL vmlinux 0x0a94684a unregister_ftrace_function -EXPORT_SYMBOL_GPL vmlinux 0x0a961dcc divider_round_rate_parent -EXPORT_SYMBOL_GPL vmlinux 0x0a99ba57 dst_cache_get_ip6 -EXPORT_SYMBOL_GPL vmlinux 0x0a9fd291 mmc_cmdq_disable -EXPORT_SYMBOL_GPL vmlinux 0x0aa5d472 pnv_ocxl_set_tl_conf -EXPORT_SYMBOL_GPL vmlinux 0x0aa6dded class_compat_remove_link -EXPORT_SYMBOL_GPL vmlinux 0x0aacba33 sata_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x0aad64ea cpufreq_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x0a9f4f44 fsnotify_find_mark +EXPORT_SYMBOL_GPL vmlinux 0x0aa18fe8 syscon_regmap_lookup_by_phandle_args +EXPORT_SYMBOL_GPL vmlinux 0x0aa2ccc0 pinmux_generic_get_function_groups +EXPORT_SYMBOL_GPL vmlinux 0x0aa5e6bc pci_epc_get_msi +EXPORT_SYMBOL_GPL vmlinux 0x0aa7256c devm_kstrdup_const EXPORT_SYMBOL_GPL vmlinux 0x0abcbf05 pkcs7_parse_message -EXPORT_SYMBOL_GPL vmlinux 0x0ad09703 ata_std_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x0ad55e4f devm_of_phy_get -EXPORT_SYMBOL_GPL vmlinux 0x0ade1af9 fs_dax_get_by_bdev -EXPORT_SYMBOL_GPL vmlinux 0x0adeb7c2 debugfs_create_blob -EXPORT_SYMBOL_GPL vmlinux 0x0adf554f __traceiter_kfree_skb -EXPORT_SYMBOL_GPL vmlinux 0x0ae43924 event_triggers_post_call -EXPORT_SYMBOL_GPL vmlinux 0x0ae88ac4 uart_try_toggle_sysrq -EXPORT_SYMBOL_GPL vmlinux 0x0aede04e pci_generic_config_read32 EXPORT_SYMBOL_GPL vmlinux 0x0af40724 iommu_alloc_resv_region EXPORT_SYMBOL_GPL vmlinux 0x0af4798b usb_wait_anchor_empty_timeout +EXPORT_SYMBOL_GPL vmlinux 0x0af694c5 usb_unpoison_urb +EXPORT_SYMBOL_GPL vmlinux 0x0af9d94e phy_pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0x0b01d050 iommu_aux_get_pasid EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct -EXPORT_SYMBOL_GPL vmlinux 0x0b0a5cf7 sysfs_notify -EXPORT_SYMBOL_GPL vmlinux 0x0b154f21 sysfs_remove_groups -EXPORT_SYMBOL_GPL vmlinux 0x0b1e9f5d devlink_region_snapshot_id_get +EXPORT_SYMBOL_GPL vmlinux 0x0b2a2b56 icc_enable +EXPORT_SYMBOL_GPL vmlinux 0x0b2c229a gpiochip_find EXPORT_SYMBOL_GPL vmlinux 0x0b2db2d5 remove_resource -EXPORT_SYMBOL_GPL vmlinux 0x0b406ffc ata_sas_port_alloc -EXPORT_SYMBOL_GPL vmlinux 0x0b62fedf class_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0b6ce7b8 devres_release -EXPORT_SYMBOL_GPL vmlinux 0x0b72a64a serial8250_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0x0b8252b2 lwtunnel_encap_del_ops -EXPORT_SYMBOL_GPL vmlinux 0x0b86e14d tracing_snapshot_cond -EXPORT_SYMBOL_GPL vmlinux 0x0b8b2380 power_supply_am_i_supplied -EXPORT_SYMBOL_GPL vmlinux 0x0b9b7b03 usb_urb_ep_type_check -EXPORT_SYMBOL_GPL vmlinux 0x0bad3abf stmpe_block_write -EXPORT_SYMBOL_GPL vmlinux 0x0bb820c9 iomap_dio_iopoll +EXPORT_SYMBOL_GPL vmlinux 0x0b3e5970 task_active_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x0b3ebfcf pci_epc_set_msi +EXPORT_SYMBOL_GPL vmlinux 0x0b42ecb3 ohci_restart +EXPORT_SYMBOL_GPL vmlinux 0x0b6b0a90 adp5520_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x0b75af8f ipv6_stub +EXPORT_SYMBOL_GPL vmlinux 0x0b8816d8 usb_role_switch_register +EXPORT_SYMBOL_GPL vmlinux 0x0b8ecf16 blkg_conf_finish +EXPORT_SYMBOL_GPL vmlinux 0x0b994a7d pm_clk_create +EXPORT_SYMBOL_GPL vmlinux 0x0b9e0738 crypto_find_alg +EXPORT_SYMBOL_GPL vmlinux 0x0ba1cad2 pm_generic_thaw_noirq +EXPORT_SYMBOL_GPL vmlinux 0x0ba6f08f dev_fill_forward_path +EXPORT_SYMBOL_GPL vmlinux 0x0baf699f spi_new_ancillary_device EXPORT_SYMBOL_GPL vmlinux 0x0bbdc9b2 remove_memory -EXPORT_SYMBOL_GPL vmlinux 0x0bc27aa2 cpuidle_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x0bc47020 rio_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x0bdfbbac regulator_set_active_discharge_regmap -EXPORT_SYMBOL_GPL vmlinux 0x0be2ea3c rio_request_mport_dma -EXPORT_SYMBOL_GPL vmlinux 0x0bebec4b bio_start_io_acct_time +EXPORT_SYMBOL_GPL vmlinux 0x0bc55012 __netdev_watchdog_up +EXPORT_SYMBOL_GPL vmlinux 0x0bc6824a usb_submit_urb +EXPORT_SYMBOL_GPL vmlinux 0x0be6a74e platform_device_add_resources +EXPORT_SYMBOL_GPL vmlinux 0x0bea95c4 wm8350_read_auxadc EXPORT_SYMBOL_GPL vmlinux 0x0bf32478 __SCK__tp_func_pelt_rt_tp EXPORT_SYMBOL_GPL vmlinux 0x0bfa3a19 rcu_idle_exit -EXPORT_SYMBOL_GPL vmlinux 0x0c12ff50 spi_finalize_current_message -EXPORT_SYMBOL_GPL vmlinux 0x0c1e078f vp_modern_set_features +EXPORT_SYMBOL_GPL vmlinux 0x0c12193d rcuwait_wake_up EXPORT_SYMBOL_GPL vmlinux 0x0c2c5802 work_busy -EXPORT_SYMBOL_GPL vmlinux 0x0c30251b dma_buf_move_notify +EXPORT_SYMBOL_GPL vmlinux 0x0c2ea430 dst_cache_get EXPORT_SYMBOL_GPL vmlinux 0x0c32ff8a edac_pci_alloc_index -EXPORT_SYMBOL_GPL vmlinux 0x0c3adfc7 dev_pm_qos_remove_request -EXPORT_SYMBOL_GPL vmlinux 0x0c3affd2 xdp_build_skb_from_frame -EXPORT_SYMBOL_GPL vmlinux 0x0c3b16a8 ata_pci_device_do_resume EXPORT_SYMBOL_GPL vmlinux 0x0c402cac replay_system_reset -EXPORT_SYMBOL_GPL vmlinux 0x0c492b92 driver_attach -EXPORT_SYMBOL_GPL vmlinux 0x0c557ece is_current_mnt_ns -EXPORT_SYMBOL_GPL vmlinux 0x0c63c30a regulator_bulk_free -EXPORT_SYMBOL_GPL vmlinux 0x0c731a35 irq_domain_create_legacy -EXPORT_SYMBOL_GPL vmlinux 0x0c7dd31e __alloc_pages_bulk -EXPORT_SYMBOL_GPL vmlinux 0x0c826c3e put_pid +EXPORT_SYMBOL_GPL vmlinux 0x0c4e7d06 __devm_regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0x0c592b57 security_path_chown +EXPORT_SYMBOL_GPL vmlinux 0x0c5ee348 __rio_local_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x0c60e556 of_property_read_u32_index +EXPORT_SYMBOL_GPL vmlinux 0x0c62c6a3 inet_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x0c6dede0 inet6_sk_rebuild_header +EXPORT_SYMBOL_GPL vmlinux 0x0c6fa88b eeh_pe_mark_isolated +EXPORT_SYMBOL_GPL vmlinux 0x0c791cf5 platform_irqchip_probe +EXPORT_SYMBOL_GPL vmlinux 0x0c7b1846 devlink_sb_register +EXPORT_SYMBOL_GPL vmlinux 0x0c7dcd5b __strp_unpause EXPORT_SYMBOL_GPL vmlinux 0x0c88c1c3 pci_vpd_find_id_string -EXPORT_SYMBOL_GPL vmlinux 0x0c92501d pci_dev_run_wake -EXPORT_SYMBOL_GPL vmlinux 0x0c9bfbd1 devlink_rate_leaf_destroy -EXPORT_SYMBOL_GPL vmlinux 0x0c9db548 devm_hwmon_device_register_with_groups -EXPORT_SYMBOL_GPL vmlinux 0x0ca601bc spi_new_device +EXPORT_SYMBOL_GPL vmlinux 0x0c94babf icc_set_tag +EXPORT_SYMBOL_GPL vmlinux 0x0ca5c51f devfreq_event_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x0ca9077d devlink_region_create +EXPORT_SYMBOL_GPL vmlinux 0x0cad596c pci_epf_add_vepf +EXPORT_SYMBOL_GPL vmlinux 0x0cadd23d sysfs_remove_mount_point +EXPORT_SYMBOL_GPL vmlinux 0x0cb76be4 of_icc_get_by_index +EXPORT_SYMBOL_GPL vmlinux 0x0cbbc861 key_type_user EXPORT_SYMBOL_GPL vmlinux 0x0cbe3ee2 software_node_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0ccd5a12 __hwspin_unlock -EXPORT_SYMBOL_GPL vmlinux 0x0cd851a5 vp_modern_queue_vector -EXPORT_SYMBOL_GPL vmlinux 0x0cdbe03f devm_reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x0cc0fb8b pci_generic_config_read32 +EXPORT_SYMBOL_GPL vmlinux 0x0ccc1ee2 pm_generic_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0x0ccc2a18 dma_max_mapping_size +EXPORT_SYMBOL_GPL vmlinux 0x0ce1aa8e __inet_lookup_established EXPORT_SYMBOL_GPL vmlinux 0x0ce3ee5a mmu_kernel_ssize -EXPORT_SYMBOL_GPL vmlinux 0x0ce99228 usb_bulk_msg -EXPORT_SYMBOL_GPL vmlinux 0x0cfe2c6f of_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0x0d045a90 vfio_pci_core_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x0d061e19 i2c_dw_validate_speed EXPORT_SYMBOL_GPL vmlinux 0x0d125ab6 trace_seq_putmem -EXPORT_SYMBOL_GPL vmlinux 0x0d25319f xhci_ext_cap_init +EXPORT_SYMBOL_GPL vmlinux 0x0d290c07 balloon_aops +EXPORT_SYMBOL_GPL vmlinux 0x0d30692d ip6_route_input_lookup +EXPORT_SYMBOL_GPL vmlinux 0x0d3bdb2f pci_load_and_free_saved_state EXPORT_SYMBOL_GPL vmlinux 0x0d459213 work_on_cpu_safe +EXPORT_SYMBOL_GPL vmlinux 0x0d469bca __mnt_drop_write EXPORT_SYMBOL_GPL vmlinux 0x0d4961de nf_log_buf_open -EXPORT_SYMBOL_GPL vmlinux 0x0d4b0c06 xfrm_audit_state_replay_overflow -EXPORT_SYMBOL_GPL vmlinux 0x0d4c42b5 ata_slave_link_init -EXPORT_SYMBOL_GPL vmlinux 0x0d5a047c isa_bridge_pcidev -EXPORT_SYMBOL_GPL vmlinux 0x0d5cd818 platform_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0d4ba73c pm_generic_resume_early EXPORT_SYMBOL_GPL vmlinux 0x0d5cecc6 ima_measure_critical_data -EXPORT_SYMBOL_GPL vmlinux 0x0d6e1909 phy_put -EXPORT_SYMBOL_GPL vmlinux 0x0d7af59c sysfs_remove_file_from_group +EXPORT_SYMBOL_GPL vmlinux 0x0d651dd1 lochnagar_update_config +EXPORT_SYMBOL_GPL vmlinux 0x0d74e7f9 da9052_disable_irq EXPORT_SYMBOL_GPL vmlinux 0x0d7f0a73 nf_hooks_lwtunnel_sysctl_handler -EXPORT_SYMBOL_GPL vmlinux 0x0d82b933 nvdimm_bus_add_badrange -EXPORT_SYMBOL_GPL vmlinux 0x0da5046e inet_csk_clone_lock -EXPORT_SYMBOL_GPL vmlinux 0x0dab9218 watchdog_register_device -EXPORT_SYMBOL_GPL vmlinux 0x0dacbeb4 ncsi_unregister_dev -EXPORT_SYMBOL_GPL vmlinux 0x0dc0a9d1 __pm_runtime_use_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0x0dcff6df pcie_flr -EXPORT_SYMBOL_GPL vmlinux 0x0dd6483c i2c_recover_bus +EXPORT_SYMBOL_GPL vmlinux 0x0d9d38ba udp_tunnel_nic_ops +EXPORT_SYMBOL_GPL vmlinux 0x0da2ea7c dev_attr_link_power_management_policy +EXPORT_SYMBOL_GPL vmlinux 0x0da743f9 devm_extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x0db0e212 devfreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x0dc1b947 crypto_unregister_aeads +EXPORT_SYMBOL_GPL vmlinux 0x0dd4c4d9 irq_chip_enable_parent EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order -EXPORT_SYMBOL_GPL vmlinux 0x0ddd07d5 pinconf_generic_dump_config +EXPORT_SYMBOL_GPL vmlinux 0x0ddd5dfb dev_pm_genpd_set_next_wakeup EXPORT_SYMBOL_GPL vmlinux 0x0de06988 cpu_first_thread_of_core -EXPORT_SYMBOL_GPL vmlinux 0x0df7ab94 skb_zerocopy_headlen +EXPORT_SYMBOL_GPL vmlinux 0x0df0b8b8 __traceiter_devlink_trap_report EXPORT_SYMBOL_GPL vmlinux 0x0e0a168b btree_insert -EXPORT_SYMBOL_GPL vmlinux 0x0e0a67d2 hwmon_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0e453df5 platform_get_resource -EXPORT_SYMBOL_GPL vmlinux 0x0e4afed6 fsnotify_get_group +EXPORT_SYMBOL_GPL vmlinux 0x0e438f18 crypto_ahash_digest EXPORT_SYMBOL_GPL vmlinux 0x0e521b82 btree_update -EXPORT_SYMBOL_GPL vmlinux 0x0e61427e tty_buffer_lock_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x0e62e978 phy_configure +EXPORT_SYMBOL_GPL vmlinux 0x0e5c5de1 blk_queue_write_cache +EXPORT_SYMBOL_GPL vmlinux 0x0e6991ac rio_request_inb_mbox EXPORT_SYMBOL_GPL vmlinux 0x0e6b79af static_key_disable_cpuslocked -EXPORT_SYMBOL_GPL vmlinux 0x0e8ece1e spi_mem_dtr_supports_op -EXPORT_SYMBOL_GPL vmlinux 0x0e8f251c inet6_compat_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x0e9af4bd pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0e6c58a8 task_user_regset_view +EXPORT_SYMBOL_GPL vmlinux 0x0e84100a blk_mq_complete_request_remote +EXPORT_SYMBOL_GPL vmlinux 0x0e945406 trace_event_reg EXPORT_SYMBOL_GPL vmlinux 0x0ea2a72b usb_scuttle_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x0ea3e1cc set_task_ioprio -EXPORT_SYMBOL_GPL vmlinux 0x0ea4bb4b root_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0ed33d9e crypto_stats_skcipher_encrypt -EXPORT_SYMBOL_GPL vmlinux 0x0ed97281 i2c_client_type -EXPORT_SYMBOL_GPL vmlinux 0x0ee2f1b6 scsi_eh_ready_devs -EXPORT_SYMBOL_GPL vmlinux 0x0ee38156 sk_psock_drop +EXPORT_SYMBOL_GPL vmlinux 0x0eb46138 usb_unlocked_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x0ec38c2f device_find_child_by_name +EXPORT_SYMBOL_GPL vmlinux 0x0ee7b348 rio_map_outb_region EXPORT_SYMBOL_GPL vmlinux 0x0ee8e400 kvmppc_h_set_xdabr -EXPORT_SYMBOL_GPL vmlinux 0x0ee9a7a3 dev_pm_opp_is_turbo -EXPORT_SYMBOL_GPL vmlinux 0x0eea63e6 fuse_conn_destroy +EXPORT_SYMBOL_GPL vmlinux 0x0eea1fcf espintcp_queue_out EXPORT_SYMBOL_GPL vmlinux 0x0eecfcde of_get_videomode EXPORT_SYMBOL_GPL vmlinux 0x0f097e24 __wait_rcu_gp +EXPORT_SYMBOL_GPL vmlinux 0x0f0f9768 dm_table_device_name +EXPORT_SYMBOL_GPL vmlinux 0x0f14e4af pci_stop_root_bus EXPORT_SYMBOL_GPL vmlinux 0x0f180070 ring_buffer_free_read_page -EXPORT_SYMBOL_GPL vmlinux 0x0f4e8d96 trace_array_destroy -EXPORT_SYMBOL_GPL vmlinux 0x0f641300 devm_gpio_request -EXPORT_SYMBOL_GPL vmlinux 0x0fa52b53 bpf_prog_inc -EXPORT_SYMBOL_GPL vmlinux 0x0fa6d7c6 spi_mem_dirmap_write -EXPORT_SYMBOL_GPL vmlinux 0x0facca63 dev_pm_opp_find_level_ceil -EXPORT_SYMBOL_GPL vmlinux 0x0fb8bd08 ata_link_online -EXPORT_SYMBOL_GPL vmlinux 0x0fbb3eba irqchip_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0x0f30699f dw_pcie_ep_linkup +EXPORT_SYMBOL_GPL vmlinux 0x0f44804c regulator_set_ramp_delay_regmap +EXPORT_SYMBOL_GPL vmlinux 0x0f67ebcd pcibios_unmap_io_space +EXPORT_SYMBOL_GPL vmlinux 0x0f6c59d6 xfrm_local_error +EXPORT_SYMBOL_GPL vmlinux 0x0f6cc0a6 pnv_ocxl_map_xsl_regs +EXPORT_SYMBOL_GPL vmlinux 0x0f6e3025 kvm_free_hpt_cma +EXPORT_SYMBOL_GPL vmlinux 0x0f7ee08a wm831x_device_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x0f8f2ef5 of_dma_request_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x0fadd0d4 usb_free_urb +EXPORT_SYMBOL_GPL vmlinux 0x0fb9b316 rio_request_outb_dbell EXPORT_SYMBOL_GPL vmlinux 0x0fbb7344 memremap_compat_align -EXPORT_SYMBOL_GPL vmlinux 0x0fc6e5f7 ehci_hub_control -EXPORT_SYMBOL_GPL vmlinux 0x0fc89d3d bpf_offload_dev_netdev_register -EXPORT_SYMBOL_GPL vmlinux 0x0fca08eb regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x0fc01b1e crypto_alloc_sync_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x0fd1c724 vp_modern_get_num_queues EXPORT_SYMBOL_GPL vmlinux 0x0fd4610e kmem_dump_obj -EXPORT_SYMBOL_GPL vmlinux 0x0fd9b58f pci_epf_bind -EXPORT_SYMBOL_GPL vmlinux 0x0fe43b29 of_scan_bus -EXPORT_SYMBOL_GPL vmlinux 0x0fe83884 fsnotify_put_group +EXPORT_SYMBOL_GPL vmlinux 0x0fd64dd2 vp_modern_map_vq_notify +EXPORT_SYMBOL_GPL vmlinux 0x0fda614e tcp_rate_check_app_limited +EXPORT_SYMBOL_GPL vmlinux 0x0feed4e6 devm_device_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0x0fff77db pcie_bus_configure_settings EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on -EXPORT_SYMBOL_GPL vmlinux 0x10188afb __spi_alloc_controller -EXPORT_SYMBOL_GPL vmlinux 0x102ce1bf generic_online_page -EXPORT_SYMBOL_GPL vmlinux 0x102f1d9d rio_free_net -EXPORT_SYMBOL_GPL vmlinux 0x103a230d eeh_pe_reset -EXPORT_SYMBOL_GPL vmlinux 0x10426450 security_kernel_post_read_file -EXPORT_SYMBOL_GPL vmlinux 0x104bf4d1 nvdimm_has_flush -EXPORT_SYMBOL_GPL vmlinux 0x1056c257 ata_cable_80wire -EXPORT_SYMBOL_GPL vmlinux 0x10613dcb phy_modify_mmd_changed +EXPORT_SYMBOL_GPL vmlinux 0x101a2e9f pci_generic_config_write32 +EXPORT_SYMBOL_GPL vmlinux 0x102a8a32 regulator_set_voltage_time +EXPORT_SYMBOL_GPL vmlinux 0x1030e98b trace_seq_path +EXPORT_SYMBOL_GPL vmlinux 0x10358d78 platform_get_irq +EXPORT_SYMBOL_GPL vmlinux 0x106295ce icmp_build_probe +EXPORT_SYMBOL_GPL vmlinux 0x1074aa92 aead_init_geniv +EXPORT_SYMBOL_GPL vmlinux 0x10846de6 vfs_getxattr EXPORT_SYMBOL_GPL vmlinux 0x108a0acd bstr_printf -EXPORT_SYMBOL_GPL vmlinux 0x1092cae8 blockdev_superblock -EXPORT_SYMBOL_GPL vmlinux 0x109beb97 xfrm_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0x108a8297 fuse_do_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x108ed1ad fscrypt_show_test_dummy_encryption +EXPORT_SYMBOL_GPL vmlinux 0x109e3d82 __devres_alloc_node +EXPORT_SYMBOL_GPL vmlinux 0x10b4a90e sched_trace_cfs_rq_avg EXPORT_SYMBOL_GPL vmlinux 0x10b77a09 kvmppc_p9_enter_guest -EXPORT_SYMBOL_GPL vmlinux 0x10bf866f splice_to_pipe EXPORT_SYMBOL_GPL vmlinux 0x10bfcf97 get_state_synchronize_srcu -EXPORT_SYMBOL_GPL vmlinux 0x10cb1bed pci_device_is_present -EXPORT_SYMBOL_GPL vmlinux 0x10d6fac1 bsg_job_done -EXPORT_SYMBOL_GPL vmlinux 0x10d749e7 addrconf_add_linklocal -EXPORT_SYMBOL_GPL vmlinux 0x10dbddaf tty_port_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0x10c07bac i2c_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x10c7d062 msg_zerocopy_alloc +EXPORT_SYMBOL_GPL vmlinux 0x10d0c9d8 phy_led_triggers_unregister +EXPORT_SYMBOL_GPL vmlinux 0x10d92f3c spi_add_device +EXPORT_SYMBOL_GPL vmlinux 0x10e03870 sec_irq_init EXPORT_SYMBOL_GPL vmlinux 0x10ecc52c usb_amd_quirk_pll_enable -EXPORT_SYMBOL_GPL vmlinux 0x10f28b32 nvmem_cell_read_u64 +EXPORT_SYMBOL_GPL vmlinux 0x10f589c2 hwspin_lock_register +EXPORT_SYMBOL_GPL vmlinux 0x10f63700 nf_queue +EXPORT_SYMBOL_GPL vmlinux 0x10f73aa7 pinctrl_register +EXPORT_SYMBOL_GPL vmlinux 0x10fe0fe2 synth_event_trace_end EXPORT_SYMBOL_GPL vmlinux 0x10fe219a __wake_up_locked_key_bookmark +EXPORT_SYMBOL_GPL vmlinux 0x110e7379 dm_send_uevents EXPORT_SYMBOL_GPL vmlinux 0x1114011d threads_shift -EXPORT_SYMBOL_GPL vmlinux 0x1114f4d6 dev_pm_qos_expose_latency_tolerance EXPORT_SYMBOL_GPL vmlinux 0x111e6dfc pnv_get_supported_cpuidle_states -EXPORT_SYMBOL_GPL vmlinux 0x1120496f genphy_c45_an_config_aneg -EXPORT_SYMBOL_GPL vmlinux 0x11354011 ip_valid_fib_dump_req -EXPORT_SYMBOL_GPL vmlinux 0x113fefd9 __sync_filesystem -EXPORT_SYMBOL_GPL vmlinux 0x1143369e class_create_file_ns -EXPORT_SYMBOL_GPL vmlinux 0x11531f75 of_reconfig_get_state_change -EXPORT_SYMBOL_GPL vmlinux 0x115deeaa wm8350_device_init -EXPORT_SYMBOL_GPL vmlinux 0x115f2079 device_property_present -EXPORT_SYMBOL_GPL vmlinux 0x11626580 spi_controller_dma_unmap_mem_op_data +EXPORT_SYMBOL_GPL vmlinux 0x1129a1b4 relay_open +EXPORT_SYMBOL_GPL vmlinux 0x112bdbcf crypto_register_kpp +EXPORT_SYMBOL_GPL vmlinux 0x1133ad35 _proc_mkdir +EXPORT_SYMBOL_GPL vmlinux 0x11352d5e pm_clk_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x11570ceb vp_modern_probe +EXPORT_SYMBOL_GPL vmlinux 0x115fa607 crypto_register_rng +EXPORT_SYMBOL_GPL vmlinux 0x115fea8f devlink_region_snapshot_id_get EXPORT_SYMBOL_GPL vmlinux 0x11638a69 xive_native_alloc_vp_block -EXPORT_SYMBOL_GPL vmlinux 0x116763de mptcp_subflow_request_sock_ops -EXPORT_SYMBOL_GPL vmlinux 0x117866d5 do_splice_to -EXPORT_SYMBOL_GPL vmlinux 0x1182cdf5 __devm_regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0x1167e578 ip6_route_output_flags_noref +EXPORT_SYMBOL_GPL vmlinux 0x11743735 ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0x1181d9e3 pwm_put EXPORT_SYMBOL_GPL vmlinux 0x118b539e blkg_rwstat_init +EXPORT_SYMBOL_GPL vmlinux 0x118f21dc wait_on_page_writeback_killable EXPORT_SYMBOL_GPL vmlinux 0x11a2e0ac crypto_dh_key_len -EXPORT_SYMBOL_GPL vmlinux 0x11b098f5 dma_can_mmap -EXPORT_SYMBOL_GPL vmlinux 0x11b32c15 edac_device_free_ctl_info -EXPORT_SYMBOL_GPL vmlinux 0x11d92171 usb_block_urb +EXPORT_SYMBOL_GPL vmlinux 0x11a8b2eb wb_writeout_inc +EXPORT_SYMBOL_GPL vmlinux 0x11bebc27 blk_clear_pm_only +EXPORT_SYMBOL_GPL vmlinux 0x11ca55a4 proc_create_net_single EXPORT_SYMBOL_GPL vmlinux 0x11df0e75 devlink_fmsg_binary_pair_nest_start -EXPORT_SYMBOL_GPL vmlinux 0x11ee06ba bus_register -EXPORT_SYMBOL_GPL vmlinux 0x11eece90 devm_device_remove_group -EXPORT_SYMBOL_GPL vmlinux 0x11f2b02b __traceiter_br_fdb_external_learn_add -EXPORT_SYMBOL_GPL vmlinux 0x11f6c747 dma_request_chan -EXPORT_SYMBOL_GPL vmlinux 0x11f8901b debugfs_create_x64 -EXPORT_SYMBOL_GPL vmlinux 0x121bd569 kvmppc_find_table +EXPORT_SYMBOL_GPL vmlinux 0x11e04a29 ata_bmdma_stop +EXPORT_SYMBOL_GPL vmlinux 0x11f38d96 __vfs_setxattr_noperm EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier -EXPORT_SYMBOL_GPL vmlinux 0x121ea850 devm_hwspin_lock_unregister +EXPORT_SYMBOL_GPL vmlinux 0x12293aa0 reset_control_get_count EXPORT_SYMBOL_GPL vmlinux 0x1234e483 get_cpu_iowait_time_us -EXPORT_SYMBOL_GPL vmlinux 0x12490793 ima_file_check -EXPORT_SYMBOL_GPL vmlinux 0x1249f69b crypto_comp_decompress +EXPORT_SYMBOL_GPL vmlinux 0x12474e11 usb_driver_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0x1250f2c8 of_reserved_mem_device_init_by_idx EXPORT_SYMBOL_GPL vmlinux 0x12537dae __tracepoint_napi_poll -EXPORT_SYMBOL_GPL vmlinux 0x1255e113 ata_pci_device_suspend -EXPORT_SYMBOL_GPL vmlinux 0x125ebad2 dev_pm_get_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0x1257a5fb _copy_from_iter_flushcache EXPORT_SYMBOL_GPL vmlinux 0x12661fb6 register_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0x1268175f __page_file_index EXPORT_SYMBOL_GPL vmlinux 0x1268f357 resume_device_irqs -EXPORT_SYMBOL_GPL vmlinux 0x126eae3c gpiochip_enable_irq -EXPORT_SYMBOL_GPL vmlinux 0x12745b7e dw_pcie_setup_rc -EXPORT_SYMBOL_GPL vmlinux 0x1276aef9 register_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0x126ac6db iommu_unmap_fast EXPORT_SYMBOL_GPL vmlinux 0x1289a7f3 call_srcu -EXPORT_SYMBOL_GPL vmlinux 0x128eb2ad dma_get_merge_boundary -EXPORT_SYMBOL_GPL vmlinux 0x12918e2d wakeup_sources_walk_next +EXPORT_SYMBOL_GPL vmlinux 0x128c1546 iomap_page_mkwrite +EXPORT_SYMBOL_GPL vmlinux 0x128ff4c0 copro_handle_mm_fault EXPORT_SYMBOL_GPL vmlinux 0x129334ae sfp_parse_support -EXPORT_SYMBOL_GPL vmlinux 0x12994717 platform_device_register_full -EXPORT_SYMBOL_GPL vmlinux 0x129b8373 pm_generic_restore_early -EXPORT_SYMBOL_GPL vmlinux 0x12abea7e tc3589x_block_read -EXPORT_SYMBOL_GPL vmlinux 0x12b69a00 devm_gpiod_get_index_optional -EXPORT_SYMBOL_GPL vmlinux 0x12d9546f tpm_chip_alloc -EXPORT_SYMBOL_GPL vmlinux 0x12dda1fa phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0x1297a297 wwan_unregister_ops +EXPORT_SYMBOL_GPL vmlinux 0x12beab1f pci_msi_mask_irq +EXPORT_SYMBOL_GPL vmlinux 0x12dcf978 rio_release_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x12dd9910 led_compose_name +EXPORT_SYMBOL_GPL vmlinux 0x12e1331d mmc_regulator_set_vqmmc +EXPORT_SYMBOL_GPL vmlinux 0x12e3a4b7 usb_driver_claim_interface +EXPORT_SYMBOL_GPL vmlinux 0x12e7948c fwnode_property_read_u32_array EXPORT_SYMBOL_GPL vmlinux 0x12ee1173 memory_group_unregister -EXPORT_SYMBOL_GPL vmlinux 0x12f68df9 regmap_get_val_endian -EXPORT_SYMBOL_GPL vmlinux 0x12f7f10b fat_dir_empty -EXPORT_SYMBOL_GPL vmlinux 0x13038411 rio_inb_pwrite_handler -EXPORT_SYMBOL_GPL vmlinux 0x1312cb42 device_del -EXPORT_SYMBOL_GPL vmlinux 0x131a5b4d irq_domain_update_bus_token +EXPORT_SYMBOL_GPL vmlinux 0x12f0e24e device_set_wakeup_capable +EXPORT_SYMBOL_GPL vmlinux 0x12f1c1d1 tpm_tis_resume EXPORT_SYMBOL_GPL vmlinux 0x131a5ed7 regmap_del_irq_chip EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq -EXPORT_SYMBOL_GPL vmlinux 0x1327d611 spi_mem_driver_register_with_owner -EXPORT_SYMBOL_GPL vmlinux 0x132b50ec sched_trace_cfs_rq_avg EXPORT_SYMBOL_GPL vmlinux 0x133969d7 __trace_printk -EXPORT_SYMBOL_GPL vmlinux 0x133a4cc7 edac_mc_find_csrow_by_page -EXPORT_SYMBOL_GPL vmlinux 0x133f00d3 regcache_cache_only -EXPORT_SYMBOL_GPL vmlinux 0x133f1341 fuse_dev_install -EXPORT_SYMBOL_GPL vmlinux 0x1341fead subsys_system_register -EXPORT_SYMBOL_GPL vmlinux 0x13513d3b pnv_ocxl_spa_setup -EXPORT_SYMBOL_GPL vmlinux 0x1359b2e4 fat_build_inode +EXPORT_SYMBOL_GPL vmlinux 0x134075c8 fuse_dev_install +EXPORT_SYMBOL_GPL vmlinux 0x134883ea phy_init +EXPORT_SYMBOL_GPL vmlinux 0x135a9bfd ipv6_proxy_select_ident +EXPORT_SYMBOL_GPL vmlinux 0x136070ca ip6_datagram_recv_ctl EXPORT_SYMBOL_GPL vmlinux 0x136209db power_supply_reg_notifier EXPORT_SYMBOL_GPL vmlinux 0x13640660 get_cached_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0x1375d852 edac_mc_find_csrow_by_page EXPORT_SYMBOL_GPL vmlinux 0x1376982c __wake_up_locked_key -EXPORT_SYMBOL_GPL vmlinux 0x1378fe52 vp_modern_generation -EXPORT_SYMBOL_GPL vmlinux 0x1389e826 regulator_list_hardware_vsel +EXPORT_SYMBOL_GPL vmlinux 0x13854fb0 iomap_zero_range +EXPORT_SYMBOL_GPL vmlinux 0x138ab86f of_clk_src_simple_get EXPORT_SYMBOL_GPL vmlinux 0x138e0957 dax_write_cache_enabled +EXPORT_SYMBOL_GPL vmlinux 0x138efd16 devm_of_platform_depopulate EXPORT_SYMBOL_GPL vmlinux 0x13935b2e add_wait_queue_priority -EXPORT_SYMBOL_GPL vmlinux 0x13b766a5 pm_genpd_remove -EXPORT_SYMBOL_GPL vmlinux 0x13c56de2 rt_mutex_trylock +EXPORT_SYMBOL_GPL vmlinux 0x1394bbae pci_iomap_wc_range +EXPORT_SYMBOL_GPL vmlinux 0x139fd3c2 cpu_remove_dev_attr_group +EXPORT_SYMBOL_GPL vmlinux 0x13a0648a serdev_device_write_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x13c61eaf crypto_shash_finup EXPORT_SYMBOL_GPL vmlinux 0x13ce87e8 asn1_ber_decoder EXPORT_SYMBOL_GPL vmlinux 0x13d2ca0c dev_pm_opp_cpumask_remove_table -EXPORT_SYMBOL_GPL vmlinux 0x13d6a8e5 umd_unload_blob -EXPORT_SYMBOL_GPL vmlinux 0x13de05de fsverity_verify_bio +EXPORT_SYMBOL_GPL vmlinux 0x13d76c65 __vfs_removexattr_locked +EXPORT_SYMBOL_GPL vmlinux 0x13de77a3 badblocks_check +EXPORT_SYMBOL_GPL vmlinux 0x13e74278 devm_rtc_nvmem_register EXPORT_SYMBOL_GPL vmlinux 0x13ed8784 sdev_evt_alloc +EXPORT_SYMBOL_GPL vmlinux 0x13fa122b usb_poison_urb EXPORT_SYMBOL_GPL vmlinux 0x13fab921 cpuidle_unregister_device EXPORT_SYMBOL_GPL vmlinux 0x1403ad09 cpufreq_add_update_util_hook -EXPORT_SYMBOL_GPL vmlinux 0x141da008 eeh_pe_configure +EXPORT_SYMBOL_GPL vmlinux 0x14131f65 sch_frag_xmit_hook +EXPORT_SYMBOL_GPL vmlinux 0x141430eb clockevents_unbind_device EXPORT_SYMBOL_GPL vmlinux 0x141f38bf ktime_get_raw_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0x14272d46 fwnode_usb_role_switch_get -EXPORT_SYMBOL_GPL vmlinux 0x143b401a power_supply_class -EXPORT_SYMBOL_GPL vmlinux 0x144fdbf0 power_supply_get_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x145e31af tty_ldisc_ref_wait +EXPORT_SYMBOL_GPL vmlinux 0x14325419 da9052_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0x143b3df3 fib6_get_table +EXPORT_SYMBOL_GPL vmlinux 0x14561375 iomap_dio_rw +EXPORT_SYMBOL_GPL vmlinux 0x14601925 sk_msg_free +EXPORT_SYMBOL_GPL vmlinux 0x146940a8 crypto_stats_get EXPORT_SYMBOL_GPL vmlinux 0x146cc88f bpf_master_redirect_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x14815570 kvm_alloc_hpt_cma -EXPORT_SYMBOL_GPL vmlinux 0x149964ef cpuidle_unregister -EXPORT_SYMBOL_GPL vmlinux 0x14a7879d pid_nr_ns -EXPORT_SYMBOL_GPL vmlinux 0x14a8d2be ip6_dst_lookup_tunnel -EXPORT_SYMBOL_GPL vmlinux 0x14ab3b91 nvdimm_bus_unregister -EXPORT_SYMBOL_GPL vmlinux 0x14ad9659 usb_hcd_poll_rh_status -EXPORT_SYMBOL_GPL vmlinux 0x14c17051 usb_put_hcd -EXPORT_SYMBOL_GPL vmlinux 0x14cefc6e vring_del_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x148d5029 da9052_request_irq +EXPORT_SYMBOL_GPL vmlinux 0x14c40bfb ncsi_start_dev EXPORT_SYMBOL_GPL vmlinux 0x14d01690 clk_mux_index_to_val -EXPORT_SYMBOL_GPL vmlinux 0x14d56053 __reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0x14ed8a20 sata_pmp_qc_defer_cmd_switch -EXPORT_SYMBOL_GPL vmlinux 0x14ff5fec validate_xmit_skb_list -EXPORT_SYMBOL_GPL vmlinux 0x15056610 of_i2c_setup_smbus_alert -EXPORT_SYMBOL_GPL vmlinux 0x1517760c devlink_resource_size_get +EXPORT_SYMBOL_GPL vmlinux 0x14dba376 kvmppc_h_protect +EXPORT_SYMBOL_GPL vmlinux 0x14e914a0 dev_pm_opp_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0x14fb5f63 rtc_class_open +EXPORT_SYMBOL_GPL vmlinux 0x151bfb0e nvdimm_security_setup_events +EXPORT_SYMBOL_GPL vmlinux 0x151c377e pinconf_generic_dt_free_map +EXPORT_SYMBOL_GPL vmlinux 0x151ce1b6 pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x152187e5 regulator_set_voltage_time_sel +EXPORT_SYMBOL_GPL vmlinux 0x152369c0 dma_vunmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x152ff8cf rio_release_dma +EXPORT_SYMBOL_GPL vmlinux 0x15362638 sysfs_create_files EXPORT_SYMBOL_GPL vmlinux 0x1537c7f2 opal_ipmi_recv EXPORT_SYMBOL_GPL vmlinux 0x153b60a6 klist_del -EXPORT_SYMBOL_GPL vmlinux 0x154c2ad4 ata_sff_lost_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x1546ca90 extcon_set_state_sync +EXPORT_SYMBOL_GPL vmlinux 0x154724e0 alloc_skb_for_msg +EXPORT_SYMBOL_GPL vmlinux 0x154d0af4 kvmppc_h_bulk_remove EXPORT_SYMBOL_GPL vmlinux 0x15510a89 devlink_fmsg_binary_put -EXPORT_SYMBOL_GPL vmlinux 0x155bf191 iomap_seek_data -EXPORT_SYMBOL_GPL vmlinux 0x155e0261 cpufreq_dbs_governor_limits -EXPORT_SYMBOL_GPL vmlinux 0x157c0c73 pci_stop_root_bus -EXPORT_SYMBOL_GPL vmlinux 0x1599d6e6 dev_coredumpsg -EXPORT_SYMBOL_GPL vmlinux 0x15b5de7e blk_mq_flush_busy_ctxs +EXPORT_SYMBOL_GPL vmlinux 0x15636b7d device_add +EXPORT_SYMBOL_GPL vmlinux 0x15653b4a kthread_use_mm +EXPORT_SYMBOL_GPL vmlinux 0x156b2c44 device_destroy +EXPORT_SYMBOL_GPL vmlinux 0x1583b0fd irq_domain_translate_twocell +EXPORT_SYMBOL_GPL vmlinux 0x15868ba9 debugfs_attr_write +EXPORT_SYMBOL_GPL vmlinux 0x1591202d pnv_ocxl_map_lpar +EXPORT_SYMBOL_GPL vmlinux 0x15a76141 vp_modern_set_status +EXPORT_SYMBOL_GPL vmlinux 0x15ad74ed do_splice_from +EXPORT_SYMBOL_GPL vmlinux 0x15ade1cc filter_irq_stacks +EXPORT_SYMBOL_GPL vmlinux 0x15bb47cf thermal_cooling_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x15c04077 cpufreq_driver_resolve_freq EXPORT_SYMBOL_GPL vmlinux 0x15c21e5e nl_table_lock EXPORT_SYMBOL_GPL vmlinux 0x15c60a71 __tracepoint_pelt_dl_tp -EXPORT_SYMBOL_GPL vmlinux 0x15c623af pinmux_generic_get_function_name -EXPORT_SYMBOL_GPL vmlinux 0x15d35789 peernet2id_alloc -EXPORT_SYMBOL_GPL vmlinux 0x15d6e8cb of_thermal_get_trip_points -EXPORT_SYMBOL_GPL vmlinux 0x15d9e417 devlink_trap_policers_unregister -EXPORT_SYMBOL_GPL vmlinux 0x15de2067 vfio_pci_core_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x15cacc24 crypto_register_scomps +EXPORT_SYMBOL_GPL vmlinux 0x15d56645 is_pnv_opal_msi EXPORT_SYMBOL_GPL vmlinux 0x15ea2648 hwpoison_filter_flags_mask -EXPORT_SYMBOL_GPL vmlinux 0x15f2d16d icc_set_tag -EXPORT_SYMBOL_GPL vmlinux 0x15fb182c lwtstate_free -EXPORT_SYMBOL_GPL vmlinux 0x160b1b8a crypto_unregister_kpp -EXPORT_SYMBOL_GPL vmlinux 0x161e82b3 class_interface_register -EXPORT_SYMBOL_GPL vmlinux 0x1626bcbf netdev_walk_all_upper_dev_rcu -EXPORT_SYMBOL_GPL vmlinux 0x1629448b dm_start_time_ns_from_clone -EXPORT_SYMBOL_GPL vmlinux 0x162c9475 edac_mc_add_mc_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x15fe98dc ehci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0x160d78e4 fib_rules_register +EXPORT_SYMBOL_GPL vmlinux 0x1611b451 dm_report_zones +EXPORT_SYMBOL_GPL vmlinux 0x162b9627 vas_paste_crb +EXPORT_SYMBOL_GPL vmlinux 0x16303155 gpiochip_line_is_valid +EXPORT_SYMBOL_GPL vmlinux 0x16354908 __devm_irq_alloc_descs EXPORT_SYMBOL_GPL vmlinux 0x16369a27 xive_native_sync_queue -EXPORT_SYMBOL_GPL vmlinux 0x1644c9d0 eeh_pe_get_state -EXPORT_SYMBOL_GPL vmlinux 0x164dcd8d regmap_exit -EXPORT_SYMBOL_GPL vmlinux 0x164dd43e xhci_resume -EXPORT_SYMBOL_GPL vmlinux 0x16542321 platform_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x166d08bb trace_output_call -EXPORT_SYMBOL_GPL vmlinux 0x167986d1 pci_epc_add_epf -EXPORT_SYMBOL_GPL vmlinux 0x167ea3c1 driver_find_device -EXPORT_SYMBOL_GPL vmlinux 0x1682e9e2 ata_bmdma_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x163cbc1f ata_sff_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0x164bcede md_start +EXPORT_SYMBOL_GPL vmlinux 0x164f29ca pci_epc_map_msi_irq +EXPORT_SYMBOL_GPL vmlinux 0x1660c17a phy_led_trigger_change_speed +EXPORT_SYMBOL_GPL vmlinux 0x1667e45c rt_mutex_lock +EXPORT_SYMBOL_GPL vmlinux 0x166a1d2d mm_iommu_get +EXPORT_SYMBOL_GPL vmlinux 0x1677e893 regulator_map_voltage_iterate +EXPORT_SYMBOL_GPL vmlinux 0x1687e4f4 inet_twsk_alloc EXPORT_SYMBOL_GPL vmlinux 0x1687ec20 tty_get_frame_size EXPORT_SYMBOL_GPL vmlinux 0x1690b503 usb_role_switch_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x16992fa7 usb_find_alt_setting -EXPORT_SYMBOL_GPL vmlinux 0x169d2fdf fwnode_graph_get_port_parent -EXPORT_SYMBOL_GPL vmlinux 0x16a5eaaf pci_try_reset_function EXPORT_SYMBOL_GPL vmlinux 0x16c5ec08 alarm_expires_remaining -EXPORT_SYMBOL_GPL vmlinux 0x16cb2420 io_cgrp_subsys +EXPORT_SYMBOL_GPL vmlinux 0x16c98cdc vfs_listxattr +EXPORT_SYMBOL_GPL vmlinux 0x16cd41a6 bpf_event_output +EXPORT_SYMBOL_GPL vmlinux 0x16d0f04a dma_alloc_noncontiguous EXPORT_SYMBOL_GPL vmlinux 0x16d2855d __wake_up_locked +EXPORT_SYMBOL_GPL vmlinux 0x16d4c470 is_swiotlb_active EXPORT_SYMBOL_GPL vmlinux 0x16da1f88 devlink_fmsg_u32_put -EXPORT_SYMBOL_GPL vmlinux 0x16dc36ba pci_epf_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x16de9426 ethnl_cable_test_alloc -EXPORT_SYMBOL_GPL vmlinux 0x16e1889d wm831x_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x16f57ac2 regulator_disable_deferred +EXPORT_SYMBOL_GPL vmlinux 0x16eabc2b regmap_get_val_endian +EXPORT_SYMBOL_GPL vmlinux 0x16efb3a2 serial8250_release_dma +EXPORT_SYMBOL_GPL vmlinux 0x16f2b366 mbox_request_channel_byname +EXPORT_SYMBOL_GPL vmlinux 0x16faaa7f crypto_type_has_alg +EXPORT_SYMBOL_GPL vmlinux 0x16ff76a8 alloc_dax_region EXPORT_SYMBOL_GPL vmlinux 0x170cc36c put_timespec64 EXPORT_SYMBOL_GPL vmlinux 0x171874b2 blocking_notifier_call_chain_robust -EXPORT_SYMBOL_GPL vmlinux 0x1721013e pinctrl_enable -EXPORT_SYMBOL_GPL vmlinux 0x172baba2 edac_pci_free_ctl_info -EXPORT_SYMBOL_GPL vmlinux 0x17340087 dev_pm_genpd_resume +EXPORT_SYMBOL_GPL vmlinux 0x1731f2d2 fuse_sync_release +EXPORT_SYMBOL_GPL vmlinux 0x174678ca inode_dax EXPORT_SYMBOL_GPL vmlinux 0x17480d56 x509_free_certificate -EXPORT_SYMBOL_GPL vmlinux 0x17496440 regmap_get_reg_stride EXPORT_SYMBOL_GPL vmlinux 0x174c6274 ring_buffer_time_stamp -EXPORT_SYMBOL_GPL vmlinux 0x174fe544 sysfs_remove_device_from_node EXPORT_SYMBOL_GPL vmlinux 0x17528d89 idr_alloc -EXPORT_SYMBOL_GPL vmlinux 0x1759a93b usb_hub_release_port +EXPORT_SYMBOL_GPL vmlinux 0x1756833c pm_generic_suspend EXPORT_SYMBOL_GPL vmlinux 0x176031a7 devlink_fmsg_string_put -EXPORT_SYMBOL_GPL vmlinux 0x1764b893 of_pci_get_max_link_speed EXPORT_SYMBOL_GPL vmlinux 0x177c338d twl_get_version -EXPORT_SYMBOL_GPL vmlinux 0x1783346e set_primary_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x179b3b5b badblocks_exit -EXPORT_SYMBOL_GPL vmlinux 0x17a463f9 proc_mkdir_data -EXPORT_SYMBOL_GPL vmlinux 0x17b3ceae pm_generic_suspend_late -EXPORT_SYMBOL_GPL vmlinux 0x17b5a36d pinctrl_generic_get_group_count +EXPORT_SYMBOL_GPL vmlinux 0x177d4dbe iomap_file_buffered_write +EXPORT_SYMBOL_GPL vmlinux 0x17807e59 __traceiter_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0x178c32ae vfs_truncate +EXPORT_SYMBOL_GPL vmlinux 0x1794e751 of_reserved_mem_device_init_by_name +EXPORT_SYMBOL_GPL vmlinux 0x17ad05f1 tpm_send EXPORT_SYMBOL_GPL vmlinux 0x17c2cbfc hash__alloc_context_id -EXPORT_SYMBOL_GPL vmlinux 0x17d9f584 switchdev_handle_port_obj_add -EXPORT_SYMBOL_GPL vmlinux 0x17db84bd sata_pmp_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x17ec5d0c ethtool_set_ethtool_phy_ops -EXPORT_SYMBOL_GPL vmlinux 0x17fa0283 uart_get_rs485_mode +EXPORT_SYMBOL_GPL vmlinux 0x17c70c8a perf_event_disable +EXPORT_SYMBOL_GPL vmlinux 0x17dfd527 dm_path_uevent +EXPORT_SYMBOL_GPL vmlinux 0x17e89dc2 device_create +EXPORT_SYMBOL_GPL vmlinux 0x17e9c766 of_clk_hw_onecell_get +EXPORT_SYMBOL_GPL vmlinux 0x17f73d8f subsys_interface_register +EXPORT_SYMBOL_GPL vmlinux 0x17ffe31d crypto_stats_skcipher_encrypt EXPORT_SYMBOL_GPL vmlinux 0x18008c59 ring_buffer_resize -EXPORT_SYMBOL_GPL vmlinux 0x1813b18b gpiod_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x18204e08 platform_msi_domain_alloc_irqs -EXPORT_SYMBOL_GPL vmlinux 0x18354613 sk_msg_zerocopy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0x18074dca fib_nl_newrule +EXPORT_SYMBOL_GPL vmlinux 0x1815cfb3 proc_create_net_single_write +EXPORT_SYMBOL_GPL vmlinux 0x1824b004 unregister_asymmetric_key_parser EXPORT_SYMBOL_GPL vmlinux 0x1843e540 cpu_bit_bitmap -EXPORT_SYMBOL_GPL vmlinux 0x184c6ae9 pci_epf_unbind -EXPORT_SYMBOL_GPL vmlinux 0x1857cfda ata_host_suspend -EXPORT_SYMBOL_GPL vmlinux 0x185b6bb7 usb_hcd_is_primary_hcd +EXPORT_SYMBOL_GPL vmlinux 0x18459668 virtqueue_enable_cb EXPORT_SYMBOL_GPL vmlinux 0x18654dea trace_seq_bitmask +EXPORT_SYMBOL_GPL vmlinux 0x1869be53 tpm_chip_start +EXPORT_SYMBOL_GPL vmlinux 0x188ba012 nvdimm_in_overwrite EXPORT_SYMBOL_GPL vmlinux 0x189f874d powernv_get_random_long -EXPORT_SYMBOL_GPL vmlinux 0x18b7364d rtnl_af_register -EXPORT_SYMBOL_GPL vmlinux 0x18ceaa75 eeh_dev_open -EXPORT_SYMBOL_GPL vmlinux 0x18cf5960 irq_chip_mask_parent +EXPORT_SYMBOL_GPL vmlinux 0x18a473e9 strp_unpause +EXPORT_SYMBOL_GPL vmlinux 0x18aa4f51 regmap_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0x18c462ea devm_fwnode_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x18d19bc8 watchdog_unregister_device EXPORT_SYMBOL_GPL vmlinux 0x18da5130 sbitmap_get_shallow -EXPORT_SYMBOL_GPL vmlinux 0x18dcb7bb of_dma_is_coherent EXPORT_SYMBOL_GPL vmlinux 0x18e4f8aa swphy_read_reg -EXPORT_SYMBOL_GPL vmlinux 0x18ea07a4 sysfs_remove_files +EXPORT_SYMBOL_GPL vmlinux 0x18f1c4f9 iommu_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x18fa0f3a pinctrl_register_and_init EXPORT_SYMBOL_GPL vmlinux 0x18fb2caf cpus_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0x18fc1652 get_pid_task +EXPORT_SYMBOL_GPL vmlinux 0x18fd824c perf_pmu_unregister EXPORT_SYMBOL_GPL vmlinux 0x1902178a srp_tmo_valid -EXPORT_SYMBOL_GPL vmlinux 0x19032360 debugfs_create_symlink -EXPORT_SYMBOL_GPL vmlinux 0x19038fe8 clk_register_fixed_rate -EXPORT_SYMBOL_GPL vmlinux 0x1914ecc8 power_supply_changed -EXPORT_SYMBOL_GPL vmlinux 0x193b50a7 init_uts_ns +EXPORT_SYMBOL_GPL vmlinux 0x190511e7 ping_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0x1908629f of_pm_clk_add_clks +EXPORT_SYMBOL_GPL vmlinux 0x191d31d9 rtnl_register_module +EXPORT_SYMBOL_GPL vmlinux 0x19206d1c clk_hw_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x19290111 __devm_clk_hw_register_divider +EXPORT_SYMBOL_GPL vmlinux 0x193a1ed1 devm_gpio_request EXPORT_SYMBOL_GPL vmlinux 0x193dfdf6 klp_get_prev_state -EXPORT_SYMBOL_GPL vmlinux 0x193f9d70 iommu_dev_disable_feature -EXPORT_SYMBOL_GPL vmlinux 0x1947deca pci_hp_create_module_link -EXPORT_SYMBOL_GPL vmlinux 0x194b2a76 tcp_abort -EXPORT_SYMBOL_GPL vmlinux 0x194f3d53 netdev_set_default_ethtool_ops -EXPORT_SYMBOL_GPL vmlinux 0x19551efb mddev_init -EXPORT_SYMBOL_GPL vmlinux 0x195a7823 vp_modern_get_features -EXPORT_SYMBOL_GPL vmlinux 0x196148b9 ping_queue_rcv_skb +EXPORT_SYMBOL_GPL vmlinux 0x193edb26 device_wakeup_disable +EXPORT_SYMBOL_GPL vmlinux 0x194caab1 thermal_add_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0x194f09e7 l3mdev_ifindex_lookup_by_table_id +EXPORT_SYMBOL_GPL vmlinux 0x195012eb fsnotify_add_mark +EXPORT_SYMBOL_GPL vmlinux 0x1954ace0 fib_rules_dump +EXPORT_SYMBOL_GPL vmlinux 0x1962d61a pci_disable_ats EXPORT_SYMBOL_GPL vmlinux 0x196f0c8b badrange_init EXPORT_SYMBOL_GPL vmlinux 0x19821689 __tracepoint_fdb_delete -EXPORT_SYMBOL_GPL vmlinux 0x198705ff vas_register_api_pseries -EXPORT_SYMBOL_GPL vmlinux 0x1995d6d7 devlink_dpipe_entry_ctx_prepare EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled +EXPORT_SYMBOL_GPL vmlinux 0x19a58ad6 regulator_notifier_call_chain EXPORT_SYMBOL_GPL vmlinux 0x19a81e33 sbitmap_add_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0x19b33841 tty_set_ldisc -EXPORT_SYMBOL_GPL vmlinux 0x19b42c50 i2c_new_client_device +EXPORT_SYMBOL_GPL vmlinux 0x19b1ce1e platform_get_irq_byname_optional EXPORT_SYMBOL_GPL vmlinux 0x19c20269 soc_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x19c6adc4 usb_sg_wait -EXPORT_SYMBOL_GPL vmlinux 0x19cd55f6 ata_pio_need_iordy -EXPORT_SYMBOL_GPL vmlinux 0x19ce35b1 crypto_register_acomp -EXPORT_SYMBOL_GPL vmlinux 0x19dc01f1 device_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0x19e3ac6a dev_pm_domain_detach +EXPORT_SYMBOL_GPL vmlinux 0x19c59ebb debugfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0x19cede3d pci_hp_create_module_link EXPORT_SYMBOL_GPL vmlinux 0x19e81304 btree_alloc -EXPORT_SYMBOL_GPL vmlinux 0x1a090535 genphy_c45_aneg_done -EXPORT_SYMBOL_GPL vmlinux 0x1a0eb49d ip6_route_output_flags_noref +EXPORT_SYMBOL_GPL vmlinux 0x19f009da blk_queue_can_use_dma_map_merging +EXPORT_SYMBOL_GPL vmlinux 0x19f6873d icc_disable +EXPORT_SYMBOL_GPL vmlinux 0x19fea2af crypto_unregister_akcipher EXPORT_SYMBOL_GPL vmlinux 0x1a10c32b crypto_ft_tab EXPORT_SYMBOL_GPL vmlinux 0x1a146ec3 usb_ep_type_string -EXPORT_SYMBOL_GPL vmlinux 0x1a299c09 trace_event_buffer_commit -EXPORT_SYMBOL_GPL vmlinux 0x1a3c0a1b crypto_register_akcipher -EXPORT_SYMBOL_GPL vmlinux 0x1a425519 rio_request_outb_dbell -EXPORT_SYMBOL_GPL vmlinux 0x1a5f456e dma_need_sync -EXPORT_SYMBOL_GPL vmlinux 0x1a61016d cdrom_multisession -EXPORT_SYMBOL_GPL vmlinux 0x1a624d57 phy_resolve_aneg_linkmode +EXPORT_SYMBOL_GPL vmlinux 0x1a1bea2c ohci_hub_status_data +EXPORT_SYMBOL_GPL vmlinux 0x1a2929cf dev_pm_opp_get_suspend_opp_freq +EXPORT_SYMBOL_GPL vmlinux 0x1a6631c4 l3mdev_table_lookup_unregister EXPORT_SYMBOL_GPL vmlinux 0x1a6bf28f fsnotify_get_cookie -EXPORT_SYMBOL_GPL vmlinux 0x1a725689 unix_peer_get EXPORT_SYMBOL_GPL vmlinux 0x1a77903a of_alias_get_alias_list -EXPORT_SYMBOL_GPL vmlinux 0x1a845eb3 pcie_aspm_capable EXPORT_SYMBOL_GPL vmlinux 0x1a876574 __tracepoint_attach_device_to_domain -EXPORT_SYMBOL_GPL vmlinux 0x1a878648 of_css -EXPORT_SYMBOL_GPL vmlinux 0x1a940a61 ethnl_cable_test_result -EXPORT_SYMBOL_GPL vmlinux 0x1a998d64 mmu_interval_notifier_insert +EXPORT_SYMBOL_GPL vmlinux 0x1a9aeb3f crypto_stats_compress EXPORT_SYMBOL_GPL vmlinux 0x1a9c20b1 xive_cleanup_irq_data -EXPORT_SYMBOL_GPL vmlinux 0x1aa9f530 of_alias_get_id +EXPORT_SYMBOL_GPL vmlinux 0x1aa98c21 dma_buf_vmap +EXPORT_SYMBOL_GPL vmlinux 0x1aaeeea7 inet_twsk_hashdance +EXPORT_SYMBOL_GPL vmlinux 0x1ab8014d kobject_uevent +EXPORT_SYMBOL_GPL vmlinux 0x1abd9938 tty_port_tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x1ac6b436 skb_segment_list EXPORT_SYMBOL_GPL vmlinux 0x1acd18c8 cpuset_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x1adbb073 regmap_multi_reg_write_bypassed -EXPORT_SYMBOL_GPL vmlinux 0x1addc578 of_icc_xlate_onecell -EXPORT_SYMBOL_GPL vmlinux 0x1ae4f644 devlink_health_reporter_create +EXPORT_SYMBOL_GPL vmlinux 0x1ad48480 sata_lpm_ignore_phy_events +EXPORT_SYMBOL_GPL vmlinux 0x1ade9311 fb_bl_default_curve +EXPORT_SYMBOL_GPL vmlinux 0x1ae29aa9 debugfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x1aebb562 sysfs_remove_link_from_group EXPORT_SYMBOL_GPL vmlinux 0x1af267f8 int_pow -EXPORT_SYMBOL_GPL vmlinux 0x1b01bc19 attribute_container_register -EXPORT_SYMBOL_GPL vmlinux 0x1b05fd86 i2c_dw_configure_master -EXPORT_SYMBOL_GPL vmlinux 0x1b07ab09 regulator_sync_voltage -EXPORT_SYMBOL_GPL vmlinux 0x1b0cc2c6 pci_reset_function_locked -EXPORT_SYMBOL_GPL vmlinux 0x1b176706 pci_cfg_access_unlock -EXPORT_SYMBOL_GPL vmlinux 0x1b223d2e virtqueue_get_buf +EXPORT_SYMBOL_GPL vmlinux 0x1afa253b nf_hook_entries_delete_raw +EXPORT_SYMBOL_GPL vmlinux 0x1b015f82 blk_queue_flag_test_and_set +EXPORT_SYMBOL_GPL vmlinux 0x1b14fb01 pci_common_swizzle +EXPORT_SYMBOL_GPL vmlinux 0x1b264c1e crypto_register_templates EXPORT_SYMBOL_GPL vmlinux 0x1b320af7 pnv_pci_get_presence_state -EXPORT_SYMBOL_GPL vmlinux 0x1b396b71 virtqueue_add_outbuf -EXPORT_SYMBOL_GPL vmlinux 0x1b3e0082 blk_stat_enable_accounting -EXPORT_SYMBOL_GPL vmlinux 0x1b493dd5 phy_set_mode_ext -EXPORT_SYMBOL_GPL vmlinux 0x1b4fd569 pci_platform_power_transition +EXPORT_SYMBOL_GPL vmlinux 0x1b3565e3 devm_memremap_pages +EXPORT_SYMBOL_GPL vmlinux 0x1b3c4deb perf_event_update_userpage +EXPORT_SYMBOL_GPL vmlinux 0x1b410772 bsg_register_queue EXPORT_SYMBOL_GPL vmlinux 0x1b5059ce ata_id_xfermask -EXPORT_SYMBOL_GPL vmlinux 0x1b507e26 devm_hwspin_lock_register -EXPORT_SYMBOL_GPL vmlinux 0x1b5a2c50 shmem_read_mapping_page_gfp -EXPORT_SYMBOL_GPL vmlinux 0x1b7ec271 regmap_write +EXPORT_SYMBOL_GPL vmlinux 0x1b5311bb clk_hw_get_name +EXPORT_SYMBOL_GPL vmlinux 0x1b6892fb md_stop_writes +EXPORT_SYMBOL_GPL vmlinux 0x1b8745b6 devm_gpiod_get EXPORT_SYMBOL_GPL vmlinux 0x1b8822d8 pinctrl_gpio_direction_output +EXPORT_SYMBOL_GPL vmlinux 0x1b8c1905 call_switchdev_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x1b92535c pm_generic_poweroff_late EXPORT_SYMBOL_GPL vmlinux 0x1b92e41d inet_putpeer +EXPORT_SYMBOL_GPL vmlinux 0x1b93aecb phy_set_speed EXPORT_SYMBOL_GPL vmlinux 0x1b9664d1 __destroy_context +EXPORT_SYMBOL_GPL vmlinux 0x1b9681ea pktgen_xfrm_outer_mode_output +EXPORT_SYMBOL_GPL vmlinux 0x1b9ebbb9 fwnode_graph_get_remote_node EXPORT_SYMBOL_GPL vmlinux 0x1bad8403 inet_hashinfo_init -EXPORT_SYMBOL_GPL vmlinux 0x1bb7a6b6 vas_tx_win_open -EXPORT_SYMBOL_GPL vmlinux 0x1bbe53c1 gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0x1bbf7eee spi_busnum_to_master EXPORT_SYMBOL_GPL vmlinux 0x1bc5eebe pinctrl_gpio_direction_input -EXPORT_SYMBOL_GPL vmlinux 0x1bd6b1cd em_pd_get -EXPORT_SYMBOL_GPL vmlinux 0x1bdd6d9c dev_pm_opp_get_max_transition_latency -EXPORT_SYMBOL_GPL vmlinux 0x1be6f3aa ksm_madvise +EXPORT_SYMBOL_GPL vmlinux 0x1bc847b6 sock_diag_save_cookie +EXPORT_SYMBOL_GPL vmlinux 0x1bce23d1 devm_krealloc +EXPORT_SYMBOL_GPL vmlinux 0x1bde1797 clk_hw_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x1be3589d handle_simple_irq +EXPORT_SYMBOL_GPL vmlinux 0x1be74e25 regmap_can_raw_write EXPORT_SYMBOL_GPL vmlinux 0x1bee4974 sg_alloc_table_chained -EXPORT_SYMBOL_GPL vmlinux 0x1bfed7af scsi_autopm_get_device -EXPORT_SYMBOL_GPL vmlinux 0x1c0cc168 virtio_break_device -EXPORT_SYMBOL_GPL vmlinux 0x1c17bcc2 __traceiter_rpm_return_int -EXPORT_SYMBOL_GPL vmlinux 0x1c33e552 fscrypt_show_test_dummy_encryption -EXPORT_SYMBOL_GPL vmlinux 0x1c395956 of_reset_control_array_get -EXPORT_SYMBOL_GPL vmlinux 0x1c396e86 key_type_user +EXPORT_SYMBOL_GPL vmlinux 0x1c0741f1 crypto_stats_rng_seed +EXPORT_SYMBOL_GPL vmlinux 0x1c0fca34 auxiliary_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1c1c1ff5 sata_async_notification +EXPORT_SYMBOL_GPL vmlinux 0x1c4b0f88 lwtunnel_fill_encap +EXPORT_SYMBOL_GPL vmlinux 0x1c4b2cc3 pinctrl_dev_get_devname +EXPORT_SYMBOL_GPL vmlinux 0x1c506dcd tty_port_register_device_attr_serdev EXPORT_SYMBOL_GPL vmlinux 0x1c5541bd cpufreq_boost_enabled -EXPORT_SYMBOL_GPL vmlinux 0x1c58a4cf iommu_enable_nesting EXPORT_SYMBOL_GPL vmlinux 0x1c5b1f28 irq_free_descs -EXPORT_SYMBOL_GPL vmlinux 0x1c5c8aaa rio_unregister_mport EXPORT_SYMBOL_GPL vmlinux 0x1c5ff742 clk_get_phase -EXPORT_SYMBOL_GPL vmlinux 0x1c614609 device_for_each_child_reverse EXPORT_SYMBOL_GPL vmlinux 0x1c62e34d opal_get_sensor_data -EXPORT_SYMBOL_GPL vmlinux 0x1c75db2b devm_get_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x1c671182 devm_led_classdev_register_ext +EXPORT_SYMBOL_GPL vmlinux 0x1c6a2761 agp_remove_bridge EXPORT_SYMBOL_GPL vmlinux 0x1c7df74c kvm_hv_vm_activated -EXPORT_SYMBOL_GPL vmlinux 0x1c800354 ehci_reset EXPORT_SYMBOL_GPL vmlinux 0x1c80d27d btree_geo128 +EXPORT_SYMBOL_GPL vmlinux 0x1c8231d2 fib_nh_common_init EXPORT_SYMBOL_GPL vmlinux 0x1c87a811 __round_jiffies_up EXPORT_SYMBOL_GPL vmlinux 0x1c8bca8d emulate_vsx_store -EXPORT_SYMBOL_GPL vmlinux 0x1c8f64ba __inode_attach_wb -EXPORT_SYMBOL_GPL vmlinux 0x1c97ff51 sfp_add_phy -EXPORT_SYMBOL_GPL vmlinux 0x1ca9b709 class_remove_file_ns -EXPORT_SYMBOL_GPL vmlinux 0x1cb14d85 icc_std_aggregate +EXPORT_SYMBOL_GPL vmlinux 0x1ca81ee9 bpf_trace_run9 +EXPORT_SYMBOL_GPL vmlinux 0x1cade29d ata_sas_slave_configure +EXPORT_SYMBOL_GPL vmlinux 0x1cb80096 uart_set_options EXPORT_SYMBOL_GPL vmlinux 0x1cbd92b0 cpu_mitigations_off -EXPORT_SYMBOL_GPL vmlinux 0x1cbe2210 clk_hw_rate_is_protected -EXPORT_SYMBOL_GPL vmlinux 0x1cbe569a usb_choose_configuration -EXPORT_SYMBOL_GPL vmlinux 0x1cbe87ad devlink_register -EXPORT_SYMBOL_GPL vmlinux 0x1cc783cd __raw_v6_lookup -EXPORT_SYMBOL_GPL vmlinux 0x1cdacaf9 tcp_set_state -EXPORT_SYMBOL_GPL vmlinux 0x1cdb35af kset_create_and_add -EXPORT_SYMBOL_GPL vmlinux 0x1cdf939b crypto_grab_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x1ce172d9 devlink_port_attrs_pci_pf_set -EXPORT_SYMBOL_GPL vmlinux 0x1ce27ad8 gpiochip_line_is_persistent -EXPORT_SYMBOL_GPL vmlinux 0x1ce5a4a4 ping_get_port -EXPORT_SYMBOL_GPL vmlinux 0x1ce5f875 regmap_irq_get_domain -EXPORT_SYMBOL_GPL vmlinux 0x1ceda84f transport_add_device +EXPORT_SYMBOL_GPL vmlinux 0x1cc5981a proc_mkdir_data +EXPORT_SYMBOL_GPL vmlinux 0x1cd5a093 rio_unregister_driver EXPORT_SYMBOL_GPL vmlinux 0x1cef3226 usb_bus_idr_lock -EXPORT_SYMBOL_GPL vmlinux 0x1cfc7ac1 usb_enable_intel_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0x1cfc6208 platform_device_add EXPORT_SYMBOL_GPL vmlinux 0x1cfe4101 clkdev_hw_create -EXPORT_SYMBOL_GPL vmlinux 0x1d0c7324 of_clk_add_provider -EXPORT_SYMBOL_GPL vmlinux 0x1d1bb1d8 pci_user_write_config_byte +EXPORT_SYMBOL_GPL vmlinux 0x1d07ce4f bio_trim +EXPORT_SYMBOL_GPL vmlinux 0x1d148fbc __rio_local_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x1d20163b regulator_set_current_limit EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state -EXPORT_SYMBOL_GPL vmlinux 0x1d3ebbaa regmap_fields_update_bits_base -EXPORT_SYMBOL_GPL vmlinux 0x1d487895 __sock_recv_wifi_status -EXPORT_SYMBOL_GPL vmlinux 0x1d4cd896 phy_package_leave -EXPORT_SYMBOL_GPL vmlinux 0x1d53f233 crypto_comp_compress -EXPORT_SYMBOL_GPL vmlinux 0x1d63bdce mptcp_pm_get_subflows_max -EXPORT_SYMBOL_GPL vmlinux 0x1d706183 wm831x_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0x1d750020 __blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0x1d41c08f __usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0x1d4cb041 iommu_sva_unbind_gpasid +EXPORT_SYMBOL_GPL vmlinux 0x1d502507 spi_setup +EXPORT_SYMBOL_GPL vmlinux 0x1d65b704 usb_hcd_unmap_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x1d6dd30e edac_pci_release_generic_ctl EXPORT_SYMBOL_GPL vmlinux 0x1d77b0f8 unix_socket_table -EXPORT_SYMBOL_GPL vmlinux 0x1d7f46df skcipher_walk_aead_decrypt -EXPORT_SYMBOL_GPL vmlinux 0x1da81507 srp_release_transport -EXPORT_SYMBOL_GPL vmlinux 0x1dae05f4 rio_mport_chk_dev_access -EXPORT_SYMBOL_GPL vmlinux 0x1db26cda edac_device_add_device -EXPORT_SYMBOL_GPL vmlinux 0x1db40ab3 __account_locked_vm -EXPORT_SYMBOL_GPL vmlinux 0x1db60950 extcon_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x1ddb3267 pingv6_prot -EXPORT_SYMBOL_GPL vmlinux 0x1ddd49d3 page_cache_ra_unbounded -EXPORT_SYMBOL_GPL vmlinux 0x1de46a30 of_icc_get_by_index +EXPORT_SYMBOL_GPL vmlinux 0x1d7faba0 ack_all_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x1da7750f regulator_set_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x1dab21b4 ping_queue_rcv_skb +EXPORT_SYMBOL_GPL vmlinux 0x1dc76b15 crypto_hash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0x1dc77879 serial8250_modem_status +EXPORT_SYMBOL_GPL vmlinux 0x1dc843e6 nvdimm_bus_add_badrange +EXPORT_SYMBOL_GPL vmlinux 0x1dda2a3e devm_nvmem_cell_get +EXPORT_SYMBOL_GPL vmlinux 0x1deeaacf ip6_dst_lookup_flow EXPORT_SYMBOL_GPL vmlinux 0x1df33284 opal_prd_msg -EXPORT_SYMBOL_GPL vmlinux 0x1df41f6c spi_mem_dirmap_read -EXPORT_SYMBOL_GPL vmlinux 0x1df64d57 blk_mq_sched_mark_restart_hctx EXPORT_SYMBOL_GPL vmlinux 0x1dfa5dbd mpi_invm -EXPORT_SYMBOL_GPL vmlinux 0x1e0486a3 spi_add_device +EXPORT_SYMBOL_GPL vmlinux 0x1dfd03c8 blk_ksm_register EXPORT_SYMBOL_GPL vmlinux 0x1e0670c6 reset_control_release EXPORT_SYMBOL_GPL vmlinux 0x1e0cf235 opal_get_sensor_data_u64 -EXPORT_SYMBOL_GPL vmlinux 0x1e0f9f5e pwm_adjust_config -EXPORT_SYMBOL_GPL vmlinux 0x1e209328 devm_pinctrl_register -EXPORT_SYMBOL_GPL vmlinux 0x1e22c944 pci_max_pasids -EXPORT_SYMBOL_GPL vmlinux 0x1e2b9511 devm_namespace_disable -EXPORT_SYMBOL_GPL vmlinux 0x1e2d5fac pci_set_host_bridge_release +EXPORT_SYMBOL_GPL vmlinux 0x1e169263 devm_clk_bulk_get_all +EXPORT_SYMBOL_GPL vmlinux 0x1e19e465 encrypt_blob +EXPORT_SYMBOL_GPL vmlinux 0x1e2cfb99 bio_release_pages +EXPORT_SYMBOL_GPL vmlinux 0x1e336f62 pci_bridge_secondary_bus_reset +EXPORT_SYMBOL_GPL vmlinux 0x1e3a5bcd bio_clone_blkg_association +EXPORT_SYMBOL_GPL vmlinux 0x1e40fe24 crypto_grab_aead EXPORT_SYMBOL_GPL vmlinux 0x1e424d61 user_preparse -EXPORT_SYMBOL_GPL vmlinux 0x1e4acce5 kstrdup_quotable_cmdline -EXPORT_SYMBOL_GPL vmlinux 0x1e5a0858 crypto_skcipher_setkey -EXPORT_SYMBOL_GPL vmlinux 0x1e7570a4 dw_pcie_find_ext_capability -EXPORT_SYMBOL_GPL vmlinux 0x1e767f27 dw_pcie_ep_init -EXPORT_SYMBOL_GPL vmlinux 0x1e780064 vfio_device_put +EXPORT_SYMBOL_GPL vmlinux 0x1e59e5a0 tcp_twsk_destructor +EXPORT_SYMBOL_GPL vmlinux 0x1e72add8 of_pci_get_devfn +EXPORT_SYMBOL_GPL vmlinux 0x1e74ad56 blk_mq_sched_mark_restart_hctx EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart -EXPORT_SYMBOL_GPL vmlinux 0x1e80e263 devm_hwrng_register -EXPORT_SYMBOL_GPL vmlinux 0x1e818a14 iommu_dev_enable_feature -EXPORT_SYMBOL_GPL vmlinux 0x1e873b28 crypto_unregister_aead -EXPORT_SYMBOL_GPL vmlinux 0x1e87c691 apply_to_page_range EXPORT_SYMBOL_GPL vmlinux 0x1e8fac8e wireless_nlevent_flush -EXPORT_SYMBOL_GPL vmlinux 0x1e9825fd devlink_param_driverinit_value_get EXPORT_SYMBOL_GPL vmlinux 0x1e9c590a usb_find_common_endpoints_reverse -EXPORT_SYMBOL_GPL vmlinux 0x1e9ea2e5 debugfs_read_file_bool -EXPORT_SYMBOL_GPL vmlinux 0x1eab510c devm_clk_hw_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x1ea9747f __clk_hw_register_gate +EXPORT_SYMBOL_GPL vmlinux 0x1ead57d8 crypto_grab_shash +EXPORT_SYMBOL_GPL vmlinux 0x1eb9086e platform_bus_type EXPORT_SYMBOL_GPL vmlinux 0x1eb9516e round_jiffies_relative EXPORT_SYMBOL_GPL vmlinux 0x1ebf6c2a pci_power_names +EXPORT_SYMBOL_GPL vmlinux 0x1ecaa4ed mmc_pwrseq_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1ed13636 devlink_reload_disable EXPORT_SYMBOL_GPL vmlinux 0x1ed4d2eb percpu_ref_kill_and_confirm EXPORT_SYMBOL_GPL vmlinux 0x1edac5c3 xive_native_enable_vp +EXPORT_SYMBOL_GPL vmlinux 0x1ee46ed0 vfs_removexattr EXPORT_SYMBOL_GPL vmlinux 0x1ee4d4fb ftrace_set_notrace -EXPORT_SYMBOL_GPL vmlinux 0x1eeeed88 devm_gpiod_get -EXPORT_SYMBOL_GPL vmlinux 0x1ef3e0dc ethnl_cable_test_free +EXPORT_SYMBOL_GPL vmlinux 0x1eee7108 of_rescan_bus EXPORT_SYMBOL_GPL vmlinux 0x1efaa06f __tracepoint_xhci_dbg_quirks EXPORT_SYMBOL_GPL vmlinux 0x1f050e36 pnv_pci_set_power_state EXPORT_SYMBOL_GPL vmlinux 0x1f0cb5bf pm_power_off_prepare -EXPORT_SYMBOL_GPL vmlinux 0x1f0cea0f crypto_stats_skcipher_decrypt -EXPORT_SYMBOL_GPL vmlinux 0x1f22131d crypto_register_algs -EXPORT_SYMBOL_GPL vmlinux 0x1f361feb usb_hcd_pci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x1f112456 sock_diag_check_cookie +EXPORT_SYMBOL_GPL vmlinux 0x1f292afb crypto_unregister_rng +EXPORT_SYMBOL_GPL vmlinux 0x1f2b6a9b spi_res_alloc EXPORT_SYMBOL_GPL vmlinux 0x1f38a4f6 mpi_set_highbit -EXPORT_SYMBOL_GPL vmlinux 0x1f3fb62f fscrypt_mergeable_bio EXPORT_SYMBOL_GPL vmlinux 0x1f449588 mctrl_gpio_disable_ms +EXPORT_SYMBOL_GPL vmlinux 0x1f4a7371 regulator_get_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0x1f551326 screen_glyph_unicode EXPORT_SYMBOL_GPL vmlinux 0x1f563160 bpf_offload_dev_priv -EXPORT_SYMBOL_GPL vmlinux 0x1f5bc012 extcon_get_extcon_dev -EXPORT_SYMBOL_GPL vmlinux 0x1f5bf799 gpiochip_lock_as_irq -EXPORT_SYMBOL_GPL vmlinux 0x1f656a06 hwpoison_filter -EXPORT_SYMBOL_GPL vmlinux 0x1f68337e dma_alloc_noncontiguous -EXPORT_SYMBOL_GPL vmlinux 0x1f845681 clk_hw_register_composite +EXPORT_SYMBOL_GPL vmlinux 0x1f57c521 gpiochip_reqres_irq +EXPORT_SYMBOL_GPL vmlinux 0x1f5c00c1 ipv6_opt_accepted +EXPORT_SYMBOL_GPL vmlinux 0x1f654c75 transport_add_device +EXPORT_SYMBOL_GPL vmlinux 0x1f6af66a wm8350_block_read +EXPORT_SYMBOL_GPL vmlinux 0x1f775347 irq_chip_set_type_parent +EXPORT_SYMBOL_GPL vmlinux 0x1f81ba03 bpf_trace_run4 EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout -EXPORT_SYMBOL_GPL vmlinux 0x1f9daeca gpiod_set_transitory EXPORT_SYMBOL_GPL vmlinux 0x1fa1d95c sha256_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x1fa37567 irq_chip_disable_parent -EXPORT_SYMBOL_GPL vmlinux 0x1fad65db flush_altivec_to_thread -EXPORT_SYMBOL_GPL vmlinux 0x1fad8bb0 of_clk_src_simple_get -EXPORT_SYMBOL_GPL vmlinux 0x1fc63722 skb_send_sock_locked -EXPORT_SYMBOL_GPL vmlinux 0x1fc9afda sysfs_merge_group -EXPORT_SYMBOL_GPL vmlinux 0x1fc9fdf2 sk_msg_memcopy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0x1fa515ec uhci_check_and_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0x1facbdaf devm_device_add_group +EXPORT_SYMBOL_GPL vmlinux 0x1faec446 xfrm_audit_state_notfound +EXPORT_SYMBOL_GPL vmlinux 0x1fb9b35b mddev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x1fc274c7 wbc_detach_inode +EXPORT_SYMBOL_GPL vmlinux 0x1fc9a3cc anon_transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x1fcc1d3b blk_ksm_update_capabilities +EXPORT_SYMBOL_GPL vmlinux 0x1fcce48c mpc8xxx_spi_tx_buf_u8 EXPORT_SYMBOL_GPL vmlinux 0x1fdb2659 proc_douintvec_minmax +EXPORT_SYMBOL_GPL vmlinux 0x1fe1267e srp_rport_del +EXPORT_SYMBOL_GPL vmlinux 0x1fe18178 regmap_raw_write +EXPORT_SYMBOL_GPL vmlinux 0x1fe20d57 preempt_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1fe5403e platform_device_add_data +EXPORT_SYMBOL_GPL vmlinux 0x1fe57046 irq_domain_free_irqs_common EXPORT_SYMBOL_GPL vmlinux 0x1fe6e504 gpiod_add_hogs -EXPORT_SYMBOL_GPL vmlinux 0x20024121 kthread_unuse_mm +EXPORT_SYMBOL_GPL vmlinux 0x20005689 do_unbind_con_driver +EXPORT_SYMBOL_GPL vmlinux 0x2009608d ata_msleep EXPORT_SYMBOL_GPL vmlinux 0x2009e400 devlink_info_board_serial_number_put -EXPORT_SYMBOL_GPL vmlinux 0x2023a24e platform_find_device_by_driver -EXPORT_SYMBOL_GPL vmlinux 0x202cc9a5 tty_release_struct +EXPORT_SYMBOL_GPL vmlinux 0x20142456 regulator_set_soft_start_regmap +EXPORT_SYMBOL_GPL vmlinux 0x20223168 tpmm_chip_alloc EXPORT_SYMBOL_GPL vmlinux 0x202d4ed6 nvmem_cell_write -EXPORT_SYMBOL_GPL vmlinux 0x203616eb pm_generic_resume -EXPORT_SYMBOL_GPL vmlinux 0x204a114e adp5520_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x205b153e nf_hook_entries_delete_raw -EXPORT_SYMBOL_GPL vmlinux 0x205ec841 devm_free_pages -EXPORT_SYMBOL_GPL vmlinux 0x206c144f pci_user_write_config_word -EXPORT_SYMBOL_GPL vmlinux 0x206ec797 regulator_list_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0x20338b63 rio_unregister_scan +EXPORT_SYMBOL_GPL vmlinux 0x2035e549 inet6_csk_xmit +EXPORT_SYMBOL_GPL vmlinux 0x2043baf4 usb_root_hub_lost_power +EXPORT_SYMBOL_GPL vmlinux 0x20581190 of_nvmem_device_get +EXPORT_SYMBOL_GPL vmlinux 0x20712822 pci_epc_get_msix +EXPORT_SYMBOL_GPL vmlinux 0x2078df8e of_thermal_is_trip_valid +EXPORT_SYMBOL_GPL vmlinux 0x20793cab wbt_enable_default EXPORT_SYMBOL_GPL vmlinux 0x20835a9f __xdp_release_frame -EXPORT_SYMBOL_GPL vmlinux 0x208917ef sched_set_normal -EXPORT_SYMBOL_GPL vmlinux 0x2089abda ata_pci_shutdown_one -EXPORT_SYMBOL_GPL vmlinux 0x208f6f9a usb_pipe_type_check -EXPORT_SYMBOL_GPL vmlinux 0x2096e51c inet6_lookup_listener -EXPORT_SYMBOL_GPL vmlinux 0x20ab31fb ata_port_abort +EXPORT_SYMBOL_GPL vmlinux 0x20b8cdb1 gov_update_cpu_data +EXPORT_SYMBOL_GPL vmlinux 0x20c4c844 irq_gc_ack_set_bit EXPORT_SYMBOL_GPL vmlinux 0x20c55ffc of_get_display_timing -EXPORT_SYMBOL_GPL vmlinux 0x20e353c7 phy_led_trigger_change_speed -EXPORT_SYMBOL_GPL vmlinux 0x20e77270 iomap_migrate_page -EXPORT_SYMBOL_GPL vmlinux 0x20e88da9 spi_mem_poll_status -EXPORT_SYMBOL_GPL vmlinux 0x20ffa2d9 usb_clear_halt -EXPORT_SYMBOL_GPL vmlinux 0x2105b57f skb_clone_tx_timestamp -EXPORT_SYMBOL_GPL vmlinux 0x2107e86c serdev_device_set_tiocm +EXPORT_SYMBOL_GPL vmlinux 0x20d18e22 access_process_vm +EXPORT_SYMBOL_GPL vmlinux 0x20f408bf tps6586x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x20f44457 virtqueue_add_sgs +EXPORT_SYMBOL_GPL vmlinux 0x21078b62 tpm_try_get_ops +EXPORT_SYMBOL_GPL vmlinux 0x2111800c fuse_dev_fiq_ops +EXPORT_SYMBOL_GPL vmlinux 0x211295d3 iommu_group_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x2112c48f filemap_read EXPORT_SYMBOL_GPL vmlinux 0x211850f5 htab_hash_mask -EXPORT_SYMBOL_GPL vmlinux 0x2130ed80 of_pci_get_devfn EXPORT_SYMBOL_GPL vmlinux 0x21385152 alarm_cancel -EXPORT_SYMBOL_GPL vmlinux 0x213a26d8 vfio_init_group_dev -EXPORT_SYMBOL_GPL vmlinux 0x2153a3e0 user_describe -EXPORT_SYMBOL_GPL vmlinux 0x216d6536 irq_chip_set_affinity_parent +EXPORT_SYMBOL_GPL vmlinux 0x213ba5d8 pm_clk_suspend +EXPORT_SYMBOL_GPL vmlinux 0x21616ec1 phy_check_downshift EXPORT_SYMBOL_GPL vmlinux 0x216de4e1 rcu_get_gp_kthreads_prio EXPORT_SYMBOL_GPL vmlinux 0x2176e42a hwpoison_filter_memcg -EXPORT_SYMBOL_GPL vmlinux 0x217d9e45 sbitmap_bitmap_show -EXPORT_SYMBOL_GPL vmlinux 0x218bd9a2 pm_wakeup_ws_event -EXPORT_SYMBOL_GPL vmlinux 0x218ed5b5 tcp_enter_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0x2195841d power_supply_powers +EXPORT_SYMBOL_GPL vmlinux 0x219d4a3c component_bind_all +EXPORT_SYMBOL_GPL vmlinux 0x21a444df irq_domain_create_legacy EXPORT_SYMBOL_GPL vmlinux 0x21a563da clk_get_accuracy -EXPORT_SYMBOL_GPL vmlinux 0x21a7b460 extcon_set_property_sync EXPORT_SYMBOL_GPL vmlinux 0x21ac8b77 iommu_group_get_by_id -EXPORT_SYMBOL_GPL vmlinux 0x21b4b331 show_class_attr_string -EXPORT_SYMBOL_GPL vmlinux 0x21bcc8c7 power_supply_put_battery_info +EXPORT_SYMBOL_GPL vmlinux 0x21b77aee subsys_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x21c0dacc blk_mq_alloc_sq_tag_set +EXPORT_SYMBOL_GPL vmlinux 0x21c1d8ce __sock_recv_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x21c2f66f led_trigger_unregister EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher EXPORT_SYMBOL_GPL vmlinux 0x21ce3ed1 dev_fetch_sw_netstats +EXPORT_SYMBOL_GPL vmlinux 0x21d40779 fwnode_get_named_gpiod EXPORT_SYMBOL_GPL vmlinux 0x21d78b12 xas_create_range -EXPORT_SYMBOL_GPL vmlinux 0x21db4dfa wm831x_reg_lock -EXPORT_SYMBOL_GPL vmlinux 0x21e3e11d wm8350_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x21d8afbc pnv_ocxl_get_actag +EXPORT_SYMBOL_GPL vmlinux 0x21e2ea7b cpufreq_generic_init +EXPORT_SYMBOL_GPL vmlinux 0x21e96633 netdev_set_default_ethtool_ops +EXPORT_SYMBOL_GPL vmlinux 0x21f57e8a devfreq_event_enable_edev EXPORT_SYMBOL_GPL vmlinux 0x2200061c __tracepoint_pelt_irq_tp -EXPORT_SYMBOL_GPL vmlinux 0x2201554d power_supply_set_input_current_limit_from_supplier -EXPORT_SYMBOL_GPL vmlinux 0x22047a84 nvdimm_name -EXPORT_SYMBOL_GPL vmlinux 0x22066998 sock_diag_save_cookie -EXPORT_SYMBOL_GPL vmlinux 0x220ab0d2 apply_to_existing_page_range +EXPORT_SYMBOL_GPL vmlinux 0x22015285 usb_hc_died +EXPORT_SYMBOL_GPL vmlinux 0x220365bf pcibios_map_io_space +EXPORT_SYMBOL_GPL vmlinux 0x22065581 virtio_add_status +EXPORT_SYMBOL_GPL vmlinux 0x220b3dbb transport_configure_device EXPORT_SYMBOL_GPL vmlinux 0x2211a4c0 blk_op_str -EXPORT_SYMBOL_GPL vmlinux 0x2219e58c vfio_device_get_from_dev EXPORT_SYMBOL_GPL vmlinux 0x221eab6d scatterwalk_copychunks -EXPORT_SYMBOL_GPL vmlinux 0x221fb839 device_property_read_string_array -EXPORT_SYMBOL_GPL vmlinux 0x222f8d18 fuse_free_conn -EXPORT_SYMBOL_GPL vmlinux 0x2230e84f __udp4_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x22407749 nf_hook_entries_insert_raw -EXPORT_SYMBOL_GPL vmlinux 0x2241c996 subsys_dev_iter_init -EXPORT_SYMBOL_GPL vmlinux 0x2243a19d dev_pm_opp_get_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0x222d5544 sk_msg_memcopy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0x223dc21e extcon_set_property_sync +EXPORT_SYMBOL_GPL vmlinux 0x22417652 bio_associate_blkg_from_css EXPORT_SYMBOL_GPL vmlinux 0x224f51bf nvmem_device_cell_read -EXPORT_SYMBOL_GPL vmlinux 0x2269edb3 blk_mq_sched_try_insert_merge -EXPORT_SYMBOL_GPL vmlinux 0x2271a891 sysfs_create_group -EXPORT_SYMBOL_GPL vmlinux 0x227376d7 tcp_unregister_congestion_control -EXPORT_SYMBOL_GPL vmlinux 0x22764de4 led_trigger_register -EXPORT_SYMBOL_GPL vmlinux 0x2282e658 gpiochip_line_is_valid -EXPORT_SYMBOL_GPL vmlinux 0x22c1d1f5 devlink_resource_occ_get_register -EXPORT_SYMBOL_GPL vmlinux 0x22cab5eb regulator_allow_bypass -EXPORT_SYMBOL_GPL vmlinux 0x22cbcd85 __clk_hw_register_divider +EXPORT_SYMBOL_GPL vmlinux 0x226706c7 skb_complete_wifi_ack +EXPORT_SYMBOL_GPL vmlinux 0x2271be2a pci_epc_add_epf +EXPORT_SYMBOL_GPL vmlinux 0x2277aff7 kthread_mod_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0x227d4a98 addrconf_add_linklocal +EXPORT_SYMBOL_GPL vmlinux 0x228e532f vring_transport_features +EXPORT_SYMBOL_GPL vmlinux 0x22bccd3c ata_scsi_unlock_native_capacity +EXPORT_SYMBOL_GPL vmlinux 0x22c5ae06 crypto_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x22ced129 mnt_want_write_file +EXPORT_SYMBOL_GPL vmlinux 0x22d1c7fb compat_only_sysfs_link_entry_to_kobj EXPORT_SYMBOL_GPL vmlinux 0x22d60537 tcf_frag_xmit_count EXPORT_SYMBOL_GPL vmlinux 0x22d9409b iomap_sort_ioends -EXPORT_SYMBOL_GPL vmlinux 0x22f0ae10 add_swap_extent -EXPORT_SYMBOL_GPL vmlinux 0x22f8f034 xhci_dbg_trace +EXPORT_SYMBOL_GPL vmlinux 0x22e0d26f ethnl_cable_test_amplitude +EXPORT_SYMBOL_GPL vmlinux 0x22e29ce5 ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0x22e47558 rio_mport_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x22fc389c rio_request_inb_pwrite EXPORT_SYMBOL_GPL vmlinux 0x22fd08ba cpuacct_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x23090a1b sock_diag_register -EXPORT_SYMBOL_GPL vmlinux 0x23398b58 of_address_to_resource +EXPORT_SYMBOL_GPL vmlinux 0x22ff07ff __pm_relax +EXPORT_SYMBOL_GPL vmlinux 0x2303b995 rio_mport_initialize +EXPORT_SYMBOL_GPL vmlinux 0x2332965a iommu_domain_free EXPORT_SYMBOL_GPL vmlinux 0x23412816 rtc_tm_to_ktime EXPORT_SYMBOL_GPL vmlinux 0x234cf416 devlink_fmsg_string_pair_put +EXPORT_SYMBOL_GPL vmlinux 0x23559467 mmc_cmdq_disable EXPORT_SYMBOL_GPL vmlinux 0x2358af18 xas_init_marks -EXPORT_SYMBOL_GPL vmlinux 0x235b4b74 blk_ksm_update_capabilities -EXPORT_SYMBOL_GPL vmlinux 0x23619e91 pnv_ocxl_map_xsl_regs -EXPORT_SYMBOL_GPL vmlinux 0x237e290d netdev_rx_handler_unregister +EXPORT_SYMBOL_GPL vmlinux 0x235c8232 usb_hcd_poll_rh_status +EXPORT_SYMBOL_GPL vmlinux 0x236619df rtnl_get_net_ns_capable +EXPORT_SYMBOL_GPL vmlinux 0x236b2bfb sdio_writeb_readb +EXPORT_SYMBOL_GPL vmlinux 0x236d0825 gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0x237bada6 genphy_c45_restart_aneg EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node -EXPORT_SYMBOL_GPL vmlinux 0x2386ae23 sk_msg_free_partial -EXPORT_SYMBOL_GPL vmlinux 0x2391d65e sata_scr_write +EXPORT_SYMBOL_GPL vmlinux 0x238ac4b7 clk_register_gate +EXPORT_SYMBOL_GPL vmlinux 0x23963988 pid_vnr +EXPORT_SYMBOL_GPL vmlinux 0x2396b160 iommu_add_device EXPORT_SYMBOL_GPL vmlinux 0x2396c7f0 clk_set_parent EXPORT_SYMBOL_GPL vmlinux 0x23984f3c __traceiter_sched_overutilized_tp -EXPORT_SYMBOL_GPL vmlinux 0x239e8c01 pci_check_and_unmask_intx -EXPORT_SYMBOL_GPL vmlinux 0x23c75cc1 devm_irq_alloc_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x23d74910 usb_alloc_coherent -EXPORT_SYMBOL_GPL vmlinux 0x23e156e6 pinconf_generic_dt_free_map -EXPORT_SYMBOL_GPL vmlinux 0x23efaa26 verify_signature -EXPORT_SYMBOL_GPL vmlinux 0x23f0459a __phy_modify_mmd_changed -EXPORT_SYMBOL_GPL vmlinux 0x240481bd blk_mq_pci_map_queues -EXPORT_SYMBOL_GPL vmlinux 0x241a57af crypto_register_skciphers +EXPORT_SYMBOL_GPL vmlinux 0x23a0a524 nd_cmd_in_size +EXPORT_SYMBOL_GPL vmlinux 0x23a69431 perf_aux_output_skip +EXPORT_SYMBOL_GPL vmlinux 0x23c490f9 irq_chip_disable_parent +EXPORT_SYMBOL_GPL vmlinux 0x23ca9812 phy_resolve_aneg_linkmode +EXPORT_SYMBOL_GPL vmlinux 0x23d1a934 device_link_add +EXPORT_SYMBOL_GPL vmlinux 0x23d62f2f ipv4_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0x23df03f6 blockdev_superblock +EXPORT_SYMBOL_GPL vmlinux 0x23f50d9e phy_put +EXPORT_SYMBOL_GPL vmlinux 0x241f4c90 vfio_device_put EXPORT_SYMBOL_GPL vmlinux 0x2421097b mpi_const -EXPORT_SYMBOL_GPL vmlinux 0x24243b10 extcon_get_edev_name -EXPORT_SYMBOL_GPL vmlinux 0x2452a7bb spi_finalize_current_transfer +EXPORT_SYMBOL_GPL vmlinux 0x2424a5d7 iommu_fwspec_add_ids +EXPORT_SYMBOL_GPL vmlinux 0x242e1885 of_get_pci_domain_nr +EXPORT_SYMBOL_GPL vmlinux 0x24300ff3 dev_pm_opp_adjust_voltage +EXPORT_SYMBOL_GPL vmlinux 0x24415ed9 devm_clk_hw_get_clk EXPORT_SYMBOL_GPL vmlinux 0x24579eaa synchronize_srcu -EXPORT_SYMBOL_GPL vmlinux 0x245b944b devm_mbox_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x245a98d9 inet_csk_listen_stop EXPORT_SYMBOL_GPL vmlinux 0x24638e92 register_kretprobes -EXPORT_SYMBOL_GPL vmlinux 0x2472e3fa open_related_ns -EXPORT_SYMBOL_GPL vmlinux 0x247771c2 serial8250_em485_start_tx -EXPORT_SYMBOL_GPL vmlinux 0x247b65e2 icc_link_create +EXPORT_SYMBOL_GPL vmlinux 0x24677a6d generic_device_group +EXPORT_SYMBOL_GPL vmlinux 0x246b3041 gpiochip_unlock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0x246c6ac5 dpm_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x246ef1f3 mmu_interval_notifier_remove +EXPORT_SYMBOL_GPL vmlinux 0x247decb4 gov_attr_set_get EXPORT_SYMBOL_GPL vmlinux 0x2484e789 vbin_printf +EXPORT_SYMBOL_GPL vmlinux 0x2487f854 led_classdev_register_ext EXPORT_SYMBOL_GPL vmlinux 0x248bc867 raw_notifier_call_chain_robust EXPORT_SYMBOL_GPL vmlinux 0x248e1473 kfree_strarray EXPORT_SYMBOL_GPL vmlinux 0x24ad11db wakeup_sources_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0x24b814fb dax_copy_to_iter +EXPORT_SYMBOL_GPL vmlinux 0x24ae15fa rio_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x24ae4168 tpm2_get_tpm_pt EXPORT_SYMBOL_GPL vmlinux 0x24b9f356 mmu_partition_table_set_entry -EXPORT_SYMBOL_GPL vmlinux 0x24c25c09 sysfs_unbreak_active_protection +EXPORT_SYMBOL_GPL vmlinux 0x24d65f92 wakeup_source_destroy +EXPORT_SYMBOL_GPL vmlinux 0x24d67719 regulator_get EXPORT_SYMBOL_GPL vmlinux 0x24da0093 rcu_inkernel_boot_has_ended -EXPORT_SYMBOL_GPL vmlinux 0x24dc16db bsg_register_queue -EXPORT_SYMBOL_GPL vmlinux 0x24deeb2d skcipher_walk_virt EXPORT_SYMBOL_GPL vmlinux 0x24e58b8c net_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x24ea5014 mmu_notifier_put EXPORT_SYMBOL_GPL vmlinux 0x24eb7e32 leds_list EXPORT_SYMBOL_GPL vmlinux 0x24ecb936 rhashtable_walk_exit -EXPORT_SYMBOL_GPL vmlinux 0x24f14be7 udp6_lib_lookup EXPORT_SYMBOL_GPL vmlinux 0x24f39c39 reset_control_reset EXPORT_SYMBOL_GPL vmlinux 0x24f63dcf ata_xfer_mask2mode +EXPORT_SYMBOL_GPL vmlinux 0x24f6d1a0 security_inode_permission +EXPORT_SYMBOL_GPL vmlinux 0x24f9da42 wm8400_reset_codec_reg_cache +EXPORT_SYMBOL_GPL vmlinux 0x24fa7d08 devm_gpio_request_one EXPORT_SYMBOL_GPL vmlinux 0x24fc50f4 kdb_unregister -EXPORT_SYMBOL_GPL vmlinux 0x25019431 stmpe_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x25033944 usb_queue_reset_device -EXPORT_SYMBOL_GPL vmlinux 0x250c8f49 fixed_phy_set_link_update -EXPORT_SYMBOL_GPL vmlinux 0x2513b5c1 of_genpd_add_device -EXPORT_SYMBOL_GPL vmlinux 0x251fc492 thermal_zone_get_slope -EXPORT_SYMBOL_GPL vmlinux 0x252b9498 posix_acl_default_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0x2506def0 device_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0x2508bba1 clk_gate_ops +EXPORT_SYMBOL_GPL vmlinux 0x250e5133 get_pid_task +EXPORT_SYMBOL_GPL vmlinux 0x251a3b62 of_device_uevent_modalias +EXPORT_SYMBOL_GPL vmlinux 0x252d7233 gov_attr_set_init EXPORT_SYMBOL_GPL vmlinux 0x25301bc6 arch_wb_cache_pmem EXPORT_SYMBOL_GPL vmlinux 0x25379e73 clk_set_min_rate -EXPORT_SYMBOL_GPL vmlinux 0x2544200a pm_generic_thaw_noirq -EXPORT_SYMBOL_GPL vmlinux 0x254f1c24 syscon_node_to_regmap -EXPORT_SYMBOL_GPL vmlinux 0x25508920 follow_pte -EXPORT_SYMBOL_GPL vmlinux 0x25575ba9 page_cache_async_ra -EXPORT_SYMBOL_GPL vmlinux 0x2558425f usb_kill_urb -EXPORT_SYMBOL_GPL vmlinux 0x25585b8b ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0x253dc019 ata_sff_tf_read +EXPORT_SYMBOL_GPL vmlinux 0x25481c8c clk_hw_is_prepared +EXPORT_SYMBOL_GPL vmlinux 0x25487f3a bio_start_io_acct +EXPORT_SYMBOL_GPL vmlinux 0x254cff80 pci_disable_pasid EXPORT_SYMBOL_GPL vmlinux 0x2559d24d kvmppc_h_set_dabr -EXPORT_SYMBOL_GPL vmlinux 0x25650e4e __rio_local_read_config_8 -EXPORT_SYMBOL_GPL vmlinux 0x2567a3e0 of_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0x256b6b58 mmc_regulator_set_ocr -EXPORT_SYMBOL_GPL vmlinux 0x256c7aee inet6_csk_addr2sockaddr -EXPORT_SYMBOL_GPL vmlinux 0x2570d754 device_create_file +EXPORT_SYMBOL_GPL vmlinux 0x2580bfed switchdev_handle_port_attr_set +EXPORT_SYMBOL_GPL vmlinux 0x2583ed2b to_software_node +EXPORT_SYMBOL_GPL vmlinux 0x258cd2b3 of_prop_next_u32 EXPORT_SYMBOL_GPL vmlinux 0x2592fc6c console_printk +EXPORT_SYMBOL_GPL vmlinux 0x259538d2 extcon_sync EXPORT_SYMBOL_GPL vmlinux 0x259564eb __hrtimer_get_remaining -EXPORT_SYMBOL_GPL vmlinux 0x259f02fc tcp_reno_ssthresh -EXPORT_SYMBOL_GPL vmlinux 0x25aad652 gen10g_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0x25a9a4ad devm_device_add_groups +EXPORT_SYMBOL_GPL vmlinux 0x25b19619 shash_free_singlespawn_instance EXPORT_SYMBOL_GPL vmlinux 0x25bbfa9a security_kernel_load_data -EXPORT_SYMBOL_GPL vmlinux 0x25bed7be devres_release_group -EXPORT_SYMBOL_GPL vmlinux 0x25ca7972 register_user_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x25d29b66 of_cpufreq_cooling_register -EXPORT_SYMBOL_GPL vmlinux 0x25e1a074 fwnode_find_reference -EXPORT_SYMBOL_GPL vmlinux 0x25f0cc21 pwm_get_chip_data -EXPORT_SYMBOL_GPL vmlinux 0x25f84831 nf_queue_entry_free -EXPORT_SYMBOL_GPL vmlinux 0x25ffbcea set_selection_kernel -EXPORT_SYMBOL_GPL vmlinux 0x260fddb4 devm_irq_setup_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x2614244f usb_hub_claim_port -EXPORT_SYMBOL_GPL vmlinux 0x262e534e __devm_irq_alloc_descs -EXPORT_SYMBOL_GPL vmlinux 0x263adfaa device_get_dma_attr -EXPORT_SYMBOL_GPL vmlinux 0x2642171c devm_gpiod_get_index -EXPORT_SYMBOL_GPL vmlinux 0x264b3985 sfp_bus_add_upstream -EXPORT_SYMBOL_GPL vmlinux 0x264ebd0f perf_aux_output_flag +EXPORT_SYMBOL_GPL vmlinux 0x25c45748 set_thread_tidr +EXPORT_SYMBOL_GPL vmlinux 0x25ccffaa mbox_client_txdone +EXPORT_SYMBOL_GPL vmlinux 0x25d165f3 sata_scr_read +EXPORT_SYMBOL_GPL vmlinux 0x25d378c6 bpf_redirect_info +EXPORT_SYMBOL_GPL vmlinux 0x25d67fbf bpf_prog_alloc +EXPORT_SYMBOL_GPL vmlinux 0x260cd000 skcipher_walk_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x2615af1e is_current_mnt_ns +EXPORT_SYMBOL_GPL vmlinux 0x261cb223 pci_epc_raise_irq +EXPORT_SYMBOL_GPL vmlinux 0x262abe38 vfio_pci_core_sriov_configure +EXPORT_SYMBOL_GPL vmlinux 0x262d8a44 vga_default_device +EXPORT_SYMBOL_GPL vmlinux 0x262f8300 sbitmap_bitmap_show +EXPORT_SYMBOL_GPL vmlinux 0x263b0669 perf_aux_output_end +EXPORT_SYMBOL_GPL vmlinux 0x264a860f pcibios_finish_adding_to_bus EXPORT_SYMBOL_GPL vmlinux 0x26520970 vm_memory_committed EXPORT_SYMBOL_GPL vmlinux 0x265bbef9 kexec_crash_loaded +EXPORT_SYMBOL_GPL vmlinux 0x26676156 pwm_request EXPORT_SYMBOL_GPL vmlinux 0x266a4b08 tasklet_unlock -EXPORT_SYMBOL_GPL vmlinux 0x266ee883 icc_sync_state +EXPORT_SYMBOL_GPL vmlinux 0x2674230f vp_modern_queue_address EXPORT_SYMBOL_GPL vmlinux 0x267df662 smp_call_on_cpu -EXPORT_SYMBOL_GPL vmlinux 0x2680f003 pci_cfg_access_lock -EXPORT_SYMBOL_GPL vmlinux 0x268d7c07 icc_node_create +EXPORT_SYMBOL_GPL vmlinux 0x267ecf34 tc3589x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x268ba711 bio_associate_blkg EXPORT_SYMBOL_GPL vmlinux 0x26918054 freq_qos_remove_notifier -EXPORT_SYMBOL_GPL vmlinux 0x2692c575 iomap_file_unshare -EXPORT_SYMBOL_GPL vmlinux 0x26a8669b mmc_app_cmd -EXPORT_SYMBOL_GPL vmlinux 0x26aa2946 ip6_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x269f053b nvdimm_bus_unregister EXPORT_SYMBOL_GPL vmlinux 0x26ab4755 put_old_itimerspec32 -EXPORT_SYMBOL_GPL vmlinux 0x26b0691e extcon_get_state -EXPORT_SYMBOL_GPL vmlinux 0x26b205ff __auxiliary_device_add -EXPORT_SYMBOL_GPL vmlinux 0x26b4e970 unregister_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x26b212a0 regulator_get_mode +EXPORT_SYMBOL_GPL vmlinux 0x26bb098b fb_deferred_io_open EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense -EXPORT_SYMBOL_GPL vmlinux 0x26d0a73e watchdog_set_restart_priority -EXPORT_SYMBOL_GPL vmlinux 0x26e29744 genphy_c45_read_link -EXPORT_SYMBOL_GPL vmlinux 0x26e83104 sysfs_add_link_to_group -EXPORT_SYMBOL_GPL vmlinux 0x26ec739e __mnt_is_readonly +EXPORT_SYMBOL_GPL vmlinux 0x26d10eba of_pwm_xlate_with_flags +EXPORT_SYMBOL_GPL vmlinux 0x26de67c5 vfio_pci_core_disable +EXPORT_SYMBOL_GPL vmlinux 0x26e666ca devm_pm_clk_create EXPORT_SYMBOL_GPL vmlinux 0x26ed2186 register_vmap_purge_notifier -EXPORT_SYMBOL_GPL vmlinux 0x272597cb vfio_pci_core_write -EXPORT_SYMBOL_GPL vmlinux 0x27261931 __fscrypt_prepare_link +EXPORT_SYMBOL_GPL vmlinux 0x2703957a of_clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0x2707924d __bio_crypt_clone +EXPORT_SYMBOL_GPL vmlinux 0x270b6784 wm8350_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x27262a48 inet_twsk_put EXPORT_SYMBOL_GPL vmlinux 0x272721ee unregister_kretprobe -EXPORT_SYMBOL_GPL vmlinux 0x274a63d9 devm_spi_mem_dirmap_destroy +EXPORT_SYMBOL_GPL vmlinux 0x272ec43b gpiochip_lock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0x273f51dc sysfs_unbreak_active_protection +EXPORT_SYMBOL_GPL vmlinux 0x2747610e fwnode_count_parents EXPORT_SYMBOL_GPL vmlinux 0x274dd1a3 sg_free_table_chained -EXPORT_SYMBOL_GPL vmlinux 0x27535dca kvmppc_h_protect -EXPORT_SYMBOL_GPL vmlinux 0x275d8852 usb_control_msg -EXPORT_SYMBOL_GPL vmlinux 0x276d9337 blk_ksm_is_superset -EXPORT_SYMBOL_GPL vmlinux 0x27815755 kobject_uevent +EXPORT_SYMBOL_GPL vmlinux 0x27a4ed25 platform_add_devices EXPORT_SYMBOL_GPL vmlinux 0x27a79eab __wake_up_pollfree +EXPORT_SYMBOL_GPL vmlinux 0x27b26338 sk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x27b45d10 rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0x27c634f3 simple_attr_write EXPORT_SYMBOL_GPL vmlinux 0x27ce3ec0 cpu_latency_qos_request_active -EXPORT_SYMBOL_GPL vmlinux 0x27da6b34 i2c_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x27d5f5db sdio_release_host +EXPORT_SYMBOL_GPL vmlinux 0x27da9be2 mmput +EXPORT_SYMBOL_GPL vmlinux 0x27dac4b6 fuse_conn_destroy EXPORT_SYMBOL_GPL vmlinux 0x27dc9471 __tracepoint_br_fdb_update -EXPORT_SYMBOL_GPL vmlinux 0x27e618ec sdio_align_size +EXPORT_SYMBOL_GPL vmlinux 0x27e8d60e devres_close_group +EXPORT_SYMBOL_GPL vmlinux 0x27f3de89 led_init_default_state_get EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter EXPORT_SYMBOL_GPL vmlinux 0x27fa66e1 nr_free_buffer_pages -EXPORT_SYMBOL_GPL vmlinux 0x28098255 phy_destroy -EXPORT_SYMBOL_GPL vmlinux 0x280a4044 __inet_lookup_established +EXPORT_SYMBOL_GPL vmlinux 0x2825c795 blk_mq_sched_try_merge EXPORT_SYMBOL_GPL vmlinux 0x282cdabc usb_led_activity -EXPORT_SYMBOL_GPL vmlinux 0x282f75b7 vfio_pci_core_init_device -EXPORT_SYMBOL_GPL vmlinux 0x2836f613 device_property_read_u16_array -EXPORT_SYMBOL_GPL vmlinux 0x28372fb2 rio_unregister_scan -EXPORT_SYMBOL_GPL vmlinux 0x28411152 dma_max_mapping_size -EXPORT_SYMBOL_GPL vmlinux 0x28493025 tcp_bpf_update_proto -EXPORT_SYMBOL_GPL vmlinux 0x28520237 skcipher_walk_aead_encrypt -EXPORT_SYMBOL_GPL vmlinux 0x285dcf55 devres_get -EXPORT_SYMBOL_GPL vmlinux 0x285edfbd device_remove_groups -EXPORT_SYMBOL_GPL vmlinux 0x2860460a alloc_skb_for_msg +EXPORT_SYMBOL_GPL vmlinux 0x2833af0a mnt_want_write +EXPORT_SYMBOL_GPL vmlinux 0x28398d36 kvmppc_host_rm_ops_hv +EXPORT_SYMBOL_GPL vmlinux 0x28430a36 dm_start_time_ns_from_clone +EXPORT_SYMBOL_GPL vmlinux 0x28435173 regulator_bulk_set_supply_names +EXPORT_SYMBOL_GPL vmlinux 0x2844147e shmem_file_setup +EXPORT_SYMBOL_GPL vmlinux 0x284e1dca regulator_map_voltage_pickable_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x2855520f mbox_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x285d74a8 kernfs_put EXPORT_SYMBOL_GPL vmlinux 0x2864abc9 klist_node_attached EXPORT_SYMBOL_GPL vmlinux 0x286cc647 async_synchronize_cookie_domain -EXPORT_SYMBOL_GPL vmlinux 0x287245b5 regulator_list_voltage_linear_range -EXPORT_SYMBOL_GPL vmlinux 0x2872f3a3 edac_mc_handle_error +EXPORT_SYMBOL_GPL vmlinux 0x2880b4bf gpiod_get_array_value EXPORT_SYMBOL_GPL vmlinux 0x2882d40e usb_role_switch_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2885a2e8 bus_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x2888b8eb dev_get_tstats64 -EXPORT_SYMBOL_GPL vmlinux 0x28964f37 serial8250_clear_and_reinit_fifos -EXPORT_SYMBOL_GPL vmlinux 0x28a8bc1c bpf_trace_run11 +EXPORT_SYMBOL_GPL vmlinux 0x288f6f6e __rio_local_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x28934430 pinctrl_remove_gpio_range EXPORT_SYMBOL_GPL vmlinux 0x28a8f935 usb_anchor_suspend_wakeups EXPORT_SYMBOL_GPL vmlinux 0x28aa6a67 call_rcu EXPORT_SYMBOL_GPL vmlinux 0x28ab4fb9 pinctrl_gpio_free -EXPORT_SYMBOL_GPL vmlinux 0x28af5567 iomap_writepages EXPORT_SYMBOL_GPL vmlinux 0x28b030d2 of_overlay_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0x28bbd2a7 devm_regmap_field_free -EXPORT_SYMBOL_GPL vmlinux 0x28c1e28c raw_unhash_sk -EXPORT_SYMBOL_GPL vmlinux 0x28c65c5d clk_bulk_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x28bcf253 uprobe_unregister +EXPORT_SYMBOL_GPL vmlinux 0x28c1618e ip_route_output_key_hash EXPORT_SYMBOL_GPL vmlinux 0x28c8a3db mmu_psize_defs -EXPORT_SYMBOL_GPL vmlinux 0x28c8b242 debugfs_create_bool -EXPORT_SYMBOL_GPL vmlinux 0x28d92d49 rio_request_outb_mbox -EXPORT_SYMBOL_GPL vmlinux 0x28f47b47 ata_pci_sff_activate_host +EXPORT_SYMBOL_GPL vmlinux 0x2907a112 dev_pm_opp_enable +EXPORT_SYMBOL_GPL vmlinux 0x290a9c3d srp_release_transport EXPORT_SYMBOL_GPL vmlinux 0x291876f3 mpi_ec_get_affine -EXPORT_SYMBOL_GPL vmlinux 0x292ecd3f __clk_mux_determine_rate_closest -EXPORT_SYMBOL_GPL vmlinux 0x293ef3aa crypto_create_tfm_node +EXPORT_SYMBOL_GPL vmlinux 0x291bdb9f apply_to_page_range +EXPORT_SYMBOL_GPL vmlinux 0x29380f94 device_remove_bin_file EXPORT_SYMBOL_GPL vmlinux 0x2940032d pnv_pci_get_power_state -EXPORT_SYMBOL_GPL vmlinux 0x29442446 wait_for_stable_page -EXPORT_SYMBOL_GPL vmlinux 0x2945f1ba lwtunnel_output -EXPORT_SYMBOL_GPL vmlinux 0x2955b184 nvdimm_region_notify -EXPORT_SYMBOL_GPL vmlinux 0x2962e21d xhci_reset_bandwidth -EXPORT_SYMBOL_GPL vmlinux 0x29668320 hwspin_lock_request -EXPORT_SYMBOL_GPL vmlinux 0x296a196b gpiod_set_value -EXPORT_SYMBOL_GPL vmlinux 0x2979f82b fwnode_graph_get_remote_port -EXPORT_SYMBOL_GPL vmlinux 0x29827045 iommu_domain_free +EXPORT_SYMBOL_GPL vmlinux 0x294f3fd6 spi_replace_transfers +EXPORT_SYMBOL_GPL vmlinux 0x2954ae41 iommu_uapi_sva_bind_gpasid +EXPORT_SYMBOL_GPL vmlinux 0x2969b22d regulator_list_voltage_table EXPORT_SYMBOL_GPL vmlinux 0x2986e853 iommu_tce_kill -EXPORT_SYMBOL_GPL vmlinux 0x298e54eb led_classdev_register_ext -EXPORT_SYMBOL_GPL vmlinux 0x299fccd3 devm_clk_bulk_get_optional -EXPORT_SYMBOL_GPL vmlinux 0x29a288da dw_pcie_find_capability -EXPORT_SYMBOL_GPL vmlinux 0x29a80d9c tty_port_register_device_serdev +EXPORT_SYMBOL_GPL vmlinux 0x299b24cc tps6586x_set_bits EXPORT_SYMBOL_GPL vmlinux 0x29aa48d0 radix__flush_tlb_lpid_page -EXPORT_SYMBOL_GPL vmlinux 0x29b10894 genphy_c45_read_status -EXPORT_SYMBOL_GPL vmlinux 0x29b5bb14 device_property_read_string -EXPORT_SYMBOL_GPL vmlinux 0x29c1712d devm_spi_mem_dirmap_create -EXPORT_SYMBOL_GPL vmlinux 0x29c69b19 sock_map_unhash -EXPORT_SYMBOL_GPL vmlinux 0x29ea452d iommu_del_device +EXPORT_SYMBOL_GPL vmlinux 0x29cd05e8 devlink_params_unpublish +EXPORT_SYMBOL_GPL vmlinux 0x29e0be5a __clk_hw_register_fixed_rate EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async -EXPORT_SYMBOL_GPL vmlinux 0x2a05be81 cpufreq_freq_transition_end +EXPORT_SYMBOL_GPL vmlinux 0x2a03ced7 ohci_resume +EXPORT_SYMBOL_GPL vmlinux 0x2a075fea transport_remove_device EXPORT_SYMBOL_GPL vmlinux 0x2a0a40fa mdio_bus_init -EXPORT_SYMBOL_GPL vmlinux 0x2a1a944b regmap_read -EXPORT_SYMBOL_GPL vmlinux 0x2a1fb35e mmc_send_abort_tuning -EXPORT_SYMBOL_GPL vmlinux 0x2a215bc3 gpiochip_irq_domain_deactivate -EXPORT_SYMBOL_GPL vmlinux 0x2a23d868 ata_sff_dev_select -EXPORT_SYMBOL_GPL vmlinux 0x2a28e6a0 gpiochip_generic_request +EXPORT_SYMBOL_GPL vmlinux 0x2a293daf cpufreq_dbs_governor_stop EXPORT_SYMBOL_GPL vmlinux 0x2a336698 opal_rtc_write -EXPORT_SYMBOL_GPL vmlinux 0x2a4cfb3f pcie_reset_flr -EXPORT_SYMBOL_GPL vmlinux 0x2a55e011 pwm_get -EXPORT_SYMBOL_GPL vmlinux 0x2a5d76a0 devm_extcon_dev_allocate -EXPORT_SYMBOL_GPL vmlinux 0x2a5ee6a9 dw_pcie_host_init +EXPORT_SYMBOL_GPL vmlinux 0x2a49cc95 rdev_get_name +EXPORT_SYMBOL_GPL vmlinux 0x2a53b82f usb_of_get_interface_node EXPORT_SYMBOL_GPL vmlinux 0x2a61a357 cleanup_srcu_struct EXPORT_SYMBOL_GPL vmlinux 0x2a62cb3a ring_buffer_overrun_cpu -EXPORT_SYMBOL_GPL vmlinux 0x2a645a1f console_drivers EXPORT_SYMBOL_GPL vmlinux 0x2a678a13 __suspend_report_result -EXPORT_SYMBOL_GPL vmlinux 0x2a68eaf6 mm_iommu_preregistered EXPORT_SYMBOL_GPL vmlinux 0x2a7316da __SCK__tp_func_neigh_cleanup_and_release -EXPORT_SYMBOL_GPL vmlinux 0x2a8eb85c regulator_desc_list_voltage_linear -EXPORT_SYMBOL_GPL vmlinux 0x2a9f5b4a blk_mq_sched_try_merge -EXPORT_SYMBOL_GPL vmlinux 0x2aa4eeb3 inet_csk_get_port -EXPORT_SYMBOL_GPL vmlinux 0x2abba274 virtqueue_get_vring_size -EXPORT_SYMBOL_GPL vmlinux 0x2abf9c3c pm_clk_create -EXPORT_SYMBOL_GPL vmlinux 0x2acc421e tpm1_do_selftest -EXPORT_SYMBOL_GPL vmlinux 0x2ace22ef vfio_pci_core_request -EXPORT_SYMBOL_GPL vmlinux 0x2acf0d04 elv_rqhash_add -EXPORT_SYMBOL_GPL vmlinux 0x2acf9643 tpm2_flush_context -EXPORT_SYMBOL_GPL vmlinux 0x2b0094bf iomap_seek_hole +EXPORT_SYMBOL_GPL vmlinux 0x2a7527ba nd_blk_region_set_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x2a836769 of_usb_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x2a856a1b ohci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x2a926bd0 powercap_register_control_type +EXPORT_SYMBOL_GPL vmlinux 0x2aa59fb3 vas_register_api_powernv +EXPORT_SYMBOL_GPL vmlinux 0x2ab1c473 trace_event_buffer_commit +EXPORT_SYMBOL_GPL vmlinux 0x2ab39620 icc_put +EXPORT_SYMBOL_GPL vmlinux 0x2ab95fbe thermal_zone_bind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0x2ab9930d led_set_brightness_nosleep +EXPORT_SYMBOL_GPL vmlinux 0x2ac101a8 regmap_check_range_table +EXPORT_SYMBOL_GPL vmlinux 0x2aeeaa5b fb_deferred_io_fsync +EXPORT_SYMBOL_GPL vmlinux 0x2afccc19 devm_hwmon_device_register_with_info +EXPORT_SYMBOL_GPL vmlinux 0x2b0179d4 of_property_read_u64 +EXPORT_SYMBOL_GPL vmlinux 0x2b18eff9 __pm_runtime_set_status EXPORT_SYMBOL_GPL vmlinux 0x2b1bae0e cpu_to_core_id EXPORT_SYMBOL_GPL vmlinux 0x2b1fba0f xive_native_disable_queue -EXPORT_SYMBOL_GPL vmlinux 0x2b22190a ata_bmdma_irq_clear -EXPORT_SYMBOL_GPL vmlinux 0x2b26ddea hvc_poll -EXPORT_SYMBOL_GPL vmlinux 0x2b3b38e2 sata_scr_write_flush -EXPORT_SYMBOL_GPL vmlinux 0x2b40976b pci_status_get_and_clear_errors +EXPORT_SYMBOL_GPL vmlinux 0x2b2f3452 devm_pm_opp_set_regulators +EXPORT_SYMBOL_GPL vmlinux 0x2b2f9d3a regulator_list_voltage +EXPORT_SYMBOL_GPL vmlinux 0x2b37ff22 fuse_abort_conn +EXPORT_SYMBOL_GPL vmlinux 0x2b3e0550 regulator_register EXPORT_SYMBOL_GPL vmlinux 0x2b4147ed kvmppc_hcall_impl_hv_realmode +EXPORT_SYMBOL_GPL vmlinux 0x2b446096 i2c_bus_type EXPORT_SYMBOL_GPL vmlinux 0x2b4509dd devlink_health_reporter_state_update -EXPORT_SYMBOL_GPL vmlinux 0x2b5a59a8 devlink_port_param_value_changed -EXPORT_SYMBOL_GPL vmlinux 0x2b5a6aa0 usb_add_phy +EXPORT_SYMBOL_GPL vmlinux 0x2b505e1e dev_pm_opp_of_remove_table EXPORT_SYMBOL_GPL vmlinux 0x2b5c303b smp_send_reschedule +EXPORT_SYMBOL_GPL vmlinux 0x2b5d5d58 gpiod_set_raw_value_cansleep EXPORT_SYMBOL_GPL vmlinux 0x2b6150fb power_supply_temp2resist_simple +EXPORT_SYMBOL_GPL vmlinux 0x2b6be02e elv_rqhash_del EXPORT_SYMBOL_GPL vmlinux 0x2b6d960d synth_event_cmd_init -EXPORT_SYMBOL_GPL vmlinux 0x2b94b4eb mptcp_pm_get_add_addr_signal_max +EXPORT_SYMBOL_GPL vmlinux 0x2b79c2c3 pnv_ocxl_get_xsl_irq +EXPORT_SYMBOL_GPL vmlinux 0x2b801e7e security_path_truncate +EXPORT_SYMBOL_GPL vmlinux 0x2b840b53 regulator_get_hardware_vsel_register +EXPORT_SYMBOL_GPL vmlinux 0x2b888b9a dev_pm_opp_remove_all_dynamic EXPORT_SYMBOL_GPL vmlinux 0x2b952517 clk_has_parent -EXPORT_SYMBOL_GPL vmlinux 0x2ba01941 clk_hw_unregister_fixed_rate -EXPORT_SYMBOL_GPL vmlinux 0x2ba21b08 handle_mm_fault -EXPORT_SYMBOL_GPL vmlinux 0x2ba22626 pci_disable_pri +EXPORT_SYMBOL_GPL vmlinux 0x2b993a82 xhci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x2bb2b5b0 xfrm_audit_state_delete EXPORT_SYMBOL_GPL vmlinux 0x2bb9095f radix__flush_pwc_lpid -EXPORT_SYMBOL_GPL vmlinux 0x2bc0b27a devlink_net -EXPORT_SYMBOL_GPL vmlinux 0x2bc9e9db platform_get_mem_or_io -EXPORT_SYMBOL_GPL vmlinux 0x2bcc4116 extcon_find_edev_by_node -EXPORT_SYMBOL_GPL vmlinux 0x2bd842eb pci_sriov_configure_simple -EXPORT_SYMBOL_GPL vmlinux 0x2beb9aef regmap_test_bits -EXPORT_SYMBOL_GPL vmlinux 0x2c0ee291 of_property_count_elems_of_size +EXPORT_SYMBOL_GPL vmlinux 0x2bf20b11 clk_hw_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0x2c0d580f tcp_bpf_update_proto +EXPORT_SYMBOL_GPL vmlinux 0x2c14357a vp_modern_set_queue_enable EXPORT_SYMBOL_GPL vmlinux 0x2c208607 power_supply_is_system_supplied -EXPORT_SYMBOL_GPL vmlinux 0x2c28bb31 devlink_param_unregister EXPORT_SYMBOL_GPL vmlinux 0x2c3054f9 net_inc_ingress_queue EXPORT_SYMBOL_GPL vmlinux 0x2c36cc85 __tracepoint_unmap -EXPORT_SYMBOL_GPL vmlinux 0x2c4646cc dev_pm_opp_get_max_clock_latency -EXPORT_SYMBOL_GPL vmlinux 0x2c47049d task_cputime_adjusted -EXPORT_SYMBOL_GPL vmlinux 0x2c490ec0 strp_init +EXPORT_SYMBOL_GPL vmlinux 0x2c3b583e xfrm_dev_offload_ok EXPORT_SYMBOL_GPL vmlinux 0x2c635527 arch_invalidate_pmem +EXPORT_SYMBOL_GPL vmlinux 0x2c63f301 of_irq_to_resource_table +EXPORT_SYMBOL_GPL vmlinux 0x2c6606d7 msg_zerocopy_realloc +EXPORT_SYMBOL_GPL vmlinux 0x2c66635f of_get_named_gpio_flags EXPORT_SYMBOL_GPL vmlinux 0x2c66ac85 devlink_info_serial_number_put -EXPORT_SYMBOL_GPL vmlinux 0x2c672290 pci_num_vf -EXPORT_SYMBOL_GPL vmlinux 0x2c7397af xfrm_audit_state_notfound_simple +EXPORT_SYMBOL_GPL vmlinux 0x2c768560 vfio_unregister_iommu_driver EXPORT_SYMBOL_GPL vmlinux 0x2c790d4a __tracepoint_sched_util_est_cfs_tp EXPORT_SYMBOL_GPL vmlinux 0x2c7db649 irq_dispose_mapping -EXPORT_SYMBOL_GPL vmlinux 0x2c816c5b crypto_alg_extsize +EXPORT_SYMBOL_GPL vmlinux 0x2c8c5a2e phy_optional_get EXPORT_SYMBOL_GPL vmlinux 0x2c8dd6b8 edac_mem_types -EXPORT_SYMBOL_GPL vmlinux 0x2c924aba dm_internal_resume +EXPORT_SYMBOL_GPL vmlinux 0x2c97736e security_path_chmod EXPORT_SYMBOL_GPL vmlinux 0x2c97f8a2 of_reconfig_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x2c9a67e9 led_trigger_rename_static -EXPORT_SYMBOL_GPL vmlinux 0x2cbb1b9b tty_port_tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x2cb187bb device_set_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0x2cb2e45e ip_route_output_flow +EXPORT_SYMBOL_GPL vmlinux 0x2cb8e0ab pci_platform_power_transition +EXPORT_SYMBOL_GPL vmlinux 0x2cbf6227 i2c_parse_fw_timings EXPORT_SYMBOL_GPL vmlinux 0x2cd5df3a opal_ipmi_send EXPORT_SYMBOL_GPL vmlinux 0x2cd88f51 kvm_hv_vm_deactivated -EXPORT_SYMBOL_GPL vmlinux 0x2cdfbb1c kstrdup_quotable_file +EXPORT_SYMBOL_GPL vmlinux 0x2cdd3046 mptcp_subflow_request_sock_ops +EXPORT_SYMBOL_GPL vmlinux 0x2ce32fb4 dev_pm_opp_free_cpufreq_table EXPORT_SYMBOL_GPL vmlinux 0x2ce61f33 __SCK__tp_func_br_fdb_add -EXPORT_SYMBOL_GPL vmlinux 0x2cea0747 dma_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x2ce9cf93 hwspin_lock_free EXPORT_SYMBOL_GPL vmlinux 0x2cea32ee unregister_oldmem_pfn_is_ram -EXPORT_SYMBOL_GPL vmlinux 0x2cfe7fce sdio_release_irq -EXPORT_SYMBOL_GPL vmlinux 0x2d001c8a fwnode_get_name -EXPORT_SYMBOL_GPL vmlinux 0x2d06c9ca security_inode_mkdir -EXPORT_SYMBOL_GPL vmlinux 0x2d0b1e59 ata_qc_get_active -EXPORT_SYMBOL_GPL vmlinux 0x2d1248cc iomap_file_buffered_write +EXPORT_SYMBOL_GPL vmlinux 0x2cec4a77 fscrypt_get_symlink EXPORT_SYMBOL_GPL vmlinux 0x2d1b02d2 usermodehelper_read_lock_wait -EXPORT_SYMBOL_GPL vmlinux 0x2d202579 phy_speed_up -EXPORT_SYMBOL_GPL vmlinux 0x2d24a7a2 nvdimm_bus_register +EXPORT_SYMBOL_GPL vmlinux 0x2d1f62d6 pci_hp_remove_module_link EXPORT_SYMBOL_GPL vmlinux 0x2d2dd36f kobj_ns_grab_current -EXPORT_SYMBOL_GPL vmlinux 0x2d3c1453 device_pm_wait_for_dev -EXPORT_SYMBOL_GPL vmlinux 0x2d3c1e11 dev_pm_opp_detach_genpd +EXPORT_SYMBOL_GPL vmlinux 0x2d2f4332 ata_std_prereset +EXPORT_SYMBOL_GPL vmlinux 0x2d3520bd rio_add_mport_pw_handler EXPORT_SYMBOL_GPL vmlinux 0x2d41e6f5 __trace_puts -EXPORT_SYMBOL_GPL vmlinux 0x2d583705 sdio_set_host_pm_flags -EXPORT_SYMBOL_GPL vmlinux 0x2d5c9e33 bpf_offload_dev_create +EXPORT_SYMBOL_GPL vmlinux 0x2d5b14bd __netpoll_setup EXPORT_SYMBOL_GPL vmlinux 0x2d5f69b3 rcu_read_unlock_strict -EXPORT_SYMBOL_GPL vmlinux 0x2d5ffef2 pinctrl_utils_reserve_map -EXPORT_SYMBOL_GPL vmlinux 0x2d67e4df get_task_pid -EXPORT_SYMBOL_GPL vmlinux 0x2d71a46d serdev_device_wait_until_sent -EXPORT_SYMBOL_GPL vmlinux 0x2d75b299 of_genpd_add_provider_simple -EXPORT_SYMBOL_GPL vmlinux 0x2d779340 ata_sff_busy_sleep -EXPORT_SYMBOL_GPL vmlinux 0x2d7b1d73 bpf_preload_ops -EXPORT_SYMBOL_GPL vmlinux 0x2db2185f ping_rcv -EXPORT_SYMBOL_GPL vmlinux 0x2dc95b3a __traceiter_add_device_to_group -EXPORT_SYMBOL_GPL vmlinux 0x2dc99860 vfs_truncate -EXPORT_SYMBOL_GPL vmlinux 0x2dcc6453 vp_modern_set_queue_enable -EXPORT_SYMBOL_GPL vmlinux 0x2dcce2ca skb_zerocopy -EXPORT_SYMBOL_GPL vmlinux 0x2dded904 mpc8xxx_spi_tx_buf_u16 -EXPORT_SYMBOL_GPL vmlinux 0x2dfd6c30 tty_port_register_device +EXPORT_SYMBOL_GPL vmlinux 0x2d70d48b __dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0x2d75d530 __udp_gso_segment +EXPORT_SYMBOL_GPL vmlinux 0x2d774984 dw_pcie_write_dbi +EXPORT_SYMBOL_GPL vmlinux 0x2d78a1f6 mctrl_gpio_init_noauto +EXPORT_SYMBOL_GPL vmlinux 0x2d81436b crypto_register_acomps +EXPORT_SYMBOL_GPL vmlinux 0x2d93af57 early_find_capability +EXPORT_SYMBOL_GPL vmlinux 0x2d97da5e sock_diag_register +EXPORT_SYMBOL_GPL vmlinux 0x2d98fb98 gpiod_get_value +EXPORT_SYMBOL_GPL vmlinux 0x2d9ee7c7 skb_to_sgvec_nomark +EXPORT_SYMBOL_GPL vmlinux 0x2da5ac72 ata_sff_data_xfer32 +EXPORT_SYMBOL_GPL vmlinux 0x2db6b3ce invalidate_inode_pages2 +EXPORT_SYMBOL_GPL vmlinux 0x2db8f9d9 iomap_fiemap +EXPORT_SYMBOL_GPL vmlinux 0x2dc9eed6 of_modalias_node +EXPORT_SYMBOL_GPL vmlinux 0x2dd48c0d __platform_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x2de1e036 virtqueue_notify +EXPORT_SYMBOL_GPL vmlinux 0x2de36ebe clk_hw_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x2de82ce0 store_sampling_rate +EXPORT_SYMBOL_GPL vmlinux 0x2de993ef blk_mq_update_nr_hw_queues +EXPORT_SYMBOL_GPL vmlinux 0x2def79e4 ptp_classify_raw EXPORT_SYMBOL_GPL vmlinux 0x2e028ae6 rcutorture_get_gp_data -EXPORT_SYMBOL_GPL vmlinux 0x2e1a573b __devres_alloc_node -EXPORT_SYMBOL_GPL vmlinux 0x2e1abd01 devm_reset_control_array_get -EXPORT_SYMBOL_GPL vmlinux 0x2e22ddea pci_assign_unassigned_bridge_resources +EXPORT_SYMBOL_GPL vmlinux 0x2e0510a5 account_locked_vm +EXPORT_SYMBOL_GPL vmlinux 0x2e0833a4 sata_scr_write_flush +EXPORT_SYMBOL_GPL vmlinux 0x2e1072ac task_cputime_adjusted +EXPORT_SYMBOL_GPL vmlinux 0x2e11ea84 fsverity_verify_bio +EXPORT_SYMBOL_GPL vmlinux 0x2e1c7f7b thermal_zone_of_sensor_register EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace -EXPORT_SYMBOL_GPL vmlinux 0x2e4c6618 pin_get_name -EXPORT_SYMBOL_GPL vmlinux 0x2e552f5c governor_sysfs_ops -EXPORT_SYMBOL_GPL vmlinux 0x2e582919 platform_add_devices +EXPORT_SYMBOL_GPL vmlinux 0x2e2bece1 irq_set_default_host +EXPORT_SYMBOL_GPL vmlinux 0x2e2c1aa7 blk_queue_required_elevator_features +EXPORT_SYMBOL_GPL vmlinux 0x2e2f7eee devm_thermal_add_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0x2e58fad5 regulator_disable_regmap EXPORT_SYMBOL_GPL vmlinux 0x2e59822f irq_set_affinity +EXPORT_SYMBOL_GPL vmlinux 0x2e5d21b9 rio_mport_read_config_16 EXPORT_SYMBOL_GPL vmlinux 0x2e66298c __SCK__tp_func_sched_util_est_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x2e694f34 of_mpc8xxx_spi_probe +EXPORT_SYMBOL_GPL vmlinux 0x2e733023 iommu_sva_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0x2e763266 register_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x2e7d07ed vfs_lock_file +EXPORT_SYMBOL_GPL vmlinux 0x2e7e8bb8 ima_file_hash +EXPORT_SYMBOL_GPL vmlinux 0x2e7e905f skb_gso_validate_network_len EXPORT_SYMBOL_GPL vmlinux 0x2e8afb4f vfio_spapr_pci_eeh_open -EXPORT_SYMBOL_GPL vmlinux 0x2e96484d pinctrl_lookup_state -EXPORT_SYMBOL_GPL vmlinux 0x2e9f09d6 devlink_traps_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2eb17ccd sock_diag_destroy +EXPORT_SYMBOL_GPL vmlinux 0x2e8c309c bpf_trace_run11 +EXPORT_SYMBOL_GPL vmlinux 0x2e9d71c4 genphy_c45_check_and_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0x2ea0ddfc iommu_set_pgtable_quirks EXPORT_SYMBOL_GPL vmlinux 0x2ebb19fd execute_in_process_context EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable -EXPORT_SYMBOL_GPL vmlinux 0x2ecb6f0c bd_link_disk_holder -EXPORT_SYMBOL_GPL vmlinux 0x2eea1ce7 ata_wait_register -EXPORT_SYMBOL_GPL vmlinux 0x2f088353 l3mdev_fib_table_by_index +EXPORT_SYMBOL_GPL vmlinux 0x2ebf7fae wbc_account_cgroup_owner +EXPORT_SYMBOL_GPL vmlinux 0x2ec4b72a iptunnel_metadata_reply +EXPORT_SYMBOL_GPL vmlinux 0x2ec6a0f1 ip6_dst_lookup_tunnel +EXPORT_SYMBOL_GPL vmlinux 0x2ec73cbf tpm_put_ops +EXPORT_SYMBOL_GPL vmlinux 0x2ecfd065 make_device_exclusive_range +EXPORT_SYMBOL_GPL vmlinux 0x2ed1b476 pinctrl_add_gpio_ranges +EXPORT_SYMBOL_GPL vmlinux 0x2ed6a738 kvmppc_add_revmap_chain +EXPORT_SYMBOL_GPL vmlinux 0x2edd52ab usb_remove_hcd +EXPORT_SYMBOL_GPL vmlinux 0x2ee46f03 pinctrl_select_state EXPORT_SYMBOL_GPL vmlinux 0x2f0d9053 usb_otg_state_string -EXPORT_SYMBOL_GPL vmlinux 0x2f1840c0 srp_rport_del +EXPORT_SYMBOL_GPL vmlinux 0x2f12b75e rdev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x2f1de831 regulator_set_bypass_regmap EXPORT_SYMBOL_GPL vmlinux 0x2f1ea064 __SCK__tp_func_xdp_bulk_tx -EXPORT_SYMBOL_GPL vmlinux 0x2f2511c0 crypto_register_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x2f200ab2 dma_mmap_pages EXPORT_SYMBOL_GPL vmlinux 0x2f2c95c4 flush_work -EXPORT_SYMBOL_GPL vmlinux 0x2f3193c6 scsi_mode_select -EXPORT_SYMBOL_GPL vmlinux 0x2f3c4594 ata_pci_bmdma_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0x2f309f2e eeh_iommu_group_to_pe EXPORT_SYMBOL_GPL vmlinux 0x2f4880df static_key_slow_dec EXPORT_SYMBOL_GPL vmlinux 0x2f49c46f sched_trace_rd_span -EXPORT_SYMBOL_GPL vmlinux 0x2f60e352 usb_disable_xhci_ports -EXPORT_SYMBOL_GPL vmlinux 0x2f6d543e mmc_poll_for_busy -EXPORT_SYMBOL_GPL vmlinux 0x2f6e73a3 dax_supported -EXPORT_SYMBOL_GPL vmlinux 0x2f728b1e md_run -EXPORT_SYMBOL_GPL vmlinux 0x2f76d3fb rdev_get_name +EXPORT_SYMBOL_GPL vmlinux 0x2f50e208 devm_of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x2f666939 debugfs_file_put +EXPORT_SYMBOL_GPL vmlinux 0x2f90a337 clean_acked_data_enable +EXPORT_SYMBOL_GPL vmlinux 0x2f9b6941 crypto_stats_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0x2fae1f25 devm_of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2fb3818b pci_dev_trylock EXPORT_SYMBOL_GPL vmlinux 0x2fc1e0fe kmem_valid_obj -EXPORT_SYMBOL_GPL vmlinux 0x2fd8656e nd_cmd_in_size -EXPORT_SYMBOL_GPL vmlinux 0x2fe5fada lwtunnel_input -EXPORT_SYMBOL_GPL vmlinux 0x2feb06b5 fwnode_property_read_string -EXPORT_SYMBOL_GPL vmlinux 0x2ff31a85 is_virtio_device -EXPORT_SYMBOL_GPL vmlinux 0x2ffad193 debugfs_create_size_t +EXPORT_SYMBOL_GPL vmlinux 0x2fc8d763 devm_extcon_dev_allocate +EXPORT_SYMBOL_GPL vmlinux 0x2fcd9ef2 gpiochip_irq_domain_deactivate +EXPORT_SYMBOL_GPL vmlinux 0x2fe86ad1 pci_remove_device_node_info +EXPORT_SYMBOL_GPL vmlinux 0x2ff9856a synth_event_create EXPORT_SYMBOL_GPL vmlinux 0x2ffbd18c opal_message_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2ffd539e cxl_update_properties -EXPORT_SYMBOL_GPL vmlinux 0x3016adbc __rio_local_read_config_16 -EXPORT_SYMBOL_GPL vmlinux 0x3017f25e pcibios_claim_one_bus +EXPORT_SYMBOL_GPL vmlinux 0x300486ed platform_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x30079a4d power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0x300b2c4d ata_cable_sata EXPORT_SYMBOL_GPL vmlinux 0x301832fb opal_async_get_token_interruptible -EXPORT_SYMBOL_GPL vmlinux 0x301fe0d4 sysfs_create_groups -EXPORT_SYMBOL_GPL vmlinux 0x3025441d trace_event_buffer_lock_reserve -EXPORT_SYMBOL_GPL vmlinux 0x303a64ed fuse_dev_alloc_install -EXPORT_SYMBOL_GPL vmlinux 0x3056a457 nvmem_cell_read_u16 -EXPORT_SYMBOL_GPL vmlinux 0x305cffe2 iommu_aux_get_pasid +EXPORT_SYMBOL_GPL vmlinux 0x3026d61c __inode_attach_wb +EXPORT_SYMBOL_GPL vmlinux 0x3033a366 devm_bitmap_alloc +EXPORT_SYMBOL_GPL vmlinux 0x30441920 bgpio_init +EXPORT_SYMBOL_GPL vmlinux 0x304b6339 ipv6_recv_error +EXPORT_SYMBOL_GPL vmlinux 0x3051390f clk_mux_ro_ops EXPORT_SYMBOL_GPL vmlinux 0x3061cfce ring_buffer_entries_cpu -EXPORT_SYMBOL_GPL vmlinux 0x306bc29c dev_pm_genpd_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0x307b4383 __traceiter_br_fdb_add -EXPORT_SYMBOL_GPL vmlinux 0x307cc0ed screen_pos -EXPORT_SYMBOL_GPL vmlinux 0x3092beb0 fsstack_copy_attr_all -EXPORT_SYMBOL_GPL vmlinux 0x30b64fdc dm_send_uevents -EXPORT_SYMBOL_GPL vmlinux 0x30d0d2e0 path_noexec -EXPORT_SYMBOL_GPL vmlinux 0x30d16275 mddev_unlock -EXPORT_SYMBOL_GPL vmlinux 0x30ef942b ata_sas_port_resume -EXPORT_SYMBOL_GPL vmlinux 0x310182c2 devm_regulator_put +EXPORT_SYMBOL_GPL vmlinux 0x3065bb90 kobject_init_and_add +EXPORT_SYMBOL_GPL vmlinux 0x306caace pci_epc_get_features +EXPORT_SYMBOL_GPL vmlinux 0x3075b7ad set_capacity_and_notify +EXPORT_SYMBOL_GPL vmlinux 0x30a8415c sdio_disable_func +EXPORT_SYMBOL_GPL vmlinux 0x30ac28cf stmpe_disable +EXPORT_SYMBOL_GPL vmlinux 0x30b2dd01 register_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x30b5e21a cpufreq_dbs_governor_exit +EXPORT_SYMBOL_GPL vmlinux 0x30c7b12f restore_online_page_callback +EXPORT_SYMBOL_GPL vmlinux 0x30e11887 kthread_func +EXPORT_SYMBOL_GPL vmlinux 0x30e18b61 __ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0x30f8e15b kset_find_obj EXPORT_SYMBOL_GPL vmlinux 0x31019477 __ftrace_vbprintk -EXPORT_SYMBOL_GPL vmlinux 0x310243f3 regmap_reinit_cache -EXPORT_SYMBOL_GPL vmlinux 0x3115f956 fib_rules_lookup +EXPORT_SYMBOL_GPL vmlinux 0x310bfdcf inet6_hash +EXPORT_SYMBOL_GPL vmlinux 0x311092e9 regmap_raw_read EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave EXPORT_SYMBOL_GPL vmlinux 0x31269173 alarm_init -EXPORT_SYMBOL_GPL vmlinux 0x314a80d1 of_usb_host_tpl_support -EXPORT_SYMBOL_GPL vmlinux 0x31563e28 spi_controller_resume -EXPORT_SYMBOL_GPL vmlinux 0x315abde9 fuse_direct_io -EXPORT_SYMBOL_GPL vmlinux 0x3178c789 bdev_disk_changed -EXPORT_SYMBOL_GPL vmlinux 0x3181d833 of_prop_next_string +EXPORT_SYMBOL_GPL vmlinux 0x3127bc2d of_pci_range_parser_one +EXPORT_SYMBOL_GPL vmlinux 0x313e18e6 devlink_port_type_eth_set +EXPORT_SYMBOL_GPL vmlinux 0x31575834 cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0x315c7921 irq_domain_translate_onecell +EXPORT_SYMBOL_GPL vmlinux 0x315e1474 __mmdrop +EXPORT_SYMBOL_GPL vmlinux 0x316f23d3 crypto_alloc_aead +EXPORT_SYMBOL_GPL vmlinux 0x3173363d devlink_param_driverinit_value_set +EXPORT_SYMBOL_GPL vmlinux 0x3179170d skb_mpls_pop +EXPORT_SYMBOL_GPL vmlinux 0x3182ca23 debugfs_create_u64 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 0x3192d768 cpufreq_remove_update_util_hook -EXPORT_SYMBOL_GPL vmlinux 0x3199f497 da9052_disable_irq_nosync -EXPORT_SYMBOL_GPL vmlinux 0x319d9ca0 __netdev_watchdog_up -EXPORT_SYMBOL_GPL vmlinux 0x31a8c643 of_pci_find_child_device EXPORT_SYMBOL_GPL vmlinux 0x31a95e8b ring_buffer_record_enable_cpu -EXPORT_SYMBOL_GPL vmlinux 0x31b55f76 bdi_dev_name EXPORT_SYMBOL_GPL vmlinux 0x31c7970f pciserial_suspend_ports -EXPORT_SYMBOL_GPL vmlinux 0x31c8c680 rio_route_add_entry -EXPORT_SYMBOL_GPL vmlinux 0x31ca488b icc_disable -EXPORT_SYMBOL_GPL vmlinux 0x31d70996 dw_pcie_wait_for_link -EXPORT_SYMBOL_GPL vmlinux 0x31e4d5cb pm_runtime_allow -EXPORT_SYMBOL_GPL vmlinux 0x31e84030 __pci_reset_function_locked -EXPORT_SYMBOL_GPL vmlinux 0x31e9c754 divider_recalc_rate -EXPORT_SYMBOL_GPL vmlinux 0x31f1ce4f sysfs_create_link -EXPORT_SYMBOL_GPL vmlinux 0x31f9bd71 usb_disable_ltm -EXPORT_SYMBOL_GPL vmlinux 0x32096307 acct_bioset_exit -EXPORT_SYMBOL_GPL vmlinux 0x320cb2b2 raw_seq_start -EXPORT_SYMBOL_GPL vmlinux 0x320de5c7 unregister_pernet_subsys -EXPORT_SYMBOL_GPL vmlinux 0x321ce7fa fwnode_get_named_child_node +EXPORT_SYMBOL_GPL vmlinux 0x31d19f9f __fscrypt_inode_uses_inline_crypto +EXPORT_SYMBOL_GPL vmlinux 0x31d9b976 __traceiter_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0x32079660 __irq_domain_alloc_fwnode EXPORT_SYMBOL_GPL vmlinux 0x3224b2a9 mpi_read_raw_from_sgl -EXPORT_SYMBOL_GPL vmlinux 0x322c67cb devres_remove -EXPORT_SYMBOL_GPL vmlinux 0x323112eb __phy_modify_mmd -EXPORT_SYMBOL_GPL vmlinux 0x323faf1a crypto_alloc_shash -EXPORT_SYMBOL_GPL vmlinux 0x324770e4 smpboot_register_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0x324ff4e3 pm_genpd_remove_subdomain EXPORT_SYMBOL_GPL vmlinux 0x325888a3 __tracepoint_neigh_update EXPORT_SYMBOL_GPL vmlinux 0x325c9448 srcu_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x326c0666 genphy_c45_pma_read_abilities EXPORT_SYMBOL_GPL vmlinux 0x326cefe5 hwpoison_filter_dev_minor -EXPORT_SYMBOL_GPL vmlinux 0x327d77cb gpiochip_populate_parent_fwspec_fourcell EXPORT_SYMBOL_GPL vmlinux 0x32804d31 dev_pm_opp_of_cpumask_remove_table -EXPORT_SYMBOL_GPL vmlinux 0x32916c0f dev_fill_forward_path -EXPORT_SYMBOL_GPL vmlinux 0x32988757 fib_nh_common_init +EXPORT_SYMBOL_GPL vmlinux 0x329b9c56 of_genpd_add_provider_onecell +EXPORT_SYMBOL_GPL vmlinux 0x329dff8d __traceiter_napi_poll EXPORT_SYMBOL_GPL vmlinux 0x32ab06cc irq_percpu_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0x32b13105 of_get_fb_videomode +EXPORT_SYMBOL_GPL vmlinux 0x32bae0d4 mmu_notifier_register EXPORT_SYMBOL_GPL vmlinux 0x32bc0fcf preempt_notifier_dec -EXPORT_SYMBOL_GPL vmlinux 0x32bdab73 anon_transport_class_unregister EXPORT_SYMBOL_GPL vmlinux 0x32c3cb4e class_compat_register -EXPORT_SYMBOL_GPL vmlinux 0x32c64ea2 icc_get_name -EXPORT_SYMBOL_GPL vmlinux 0x32d79f53 pinctrl_find_gpio_range_from_pin -EXPORT_SYMBOL_GPL vmlinux 0x32da7a24 irq_domain_free_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x32df3f4e early_find_capability -EXPORT_SYMBOL_GPL vmlinux 0x32f3f58a usb_register_dev +EXPORT_SYMBOL_GPL vmlinux 0x32c53edc wakeup_source_remove +EXPORT_SYMBOL_GPL vmlinux 0x32c8104c irq_domain_free_fwnode EXPORT_SYMBOL_GPL vmlinux 0x330010b6 cpuset_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x331bfaea serdev_device_get_tiocm -EXPORT_SYMBOL_GPL vmlinux 0x3322b364 anon_inode_getfd_secure +EXPORT_SYMBOL_GPL vmlinux 0x3302ca3f fsverity_ioctl_enable +EXPORT_SYMBOL_GPL vmlinux 0x331ab3f5 pinctrl_utils_add_config +EXPORT_SYMBOL_GPL vmlinux 0x331f4ae9 lwtunnel_input +EXPORT_SYMBOL_GPL vmlinux 0x3349a1d1 pinctrl_utils_add_map_configs EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0x335e8684 fib_add_nexthop -EXPORT_SYMBOL_GPL vmlinux 0x3362829d fwnode_property_get_reference_args -EXPORT_SYMBOL_GPL vmlinux 0x338634ae rtnl_delete_link -EXPORT_SYMBOL_GPL vmlinux 0x339a6679 devm_devfreq_event_remove_edev -EXPORT_SYMBOL_GPL vmlinux 0x33b40efb __traceiter_block_rq_remap -EXPORT_SYMBOL_GPL vmlinux 0x33bf7f0f crypto_ahash_digest -EXPORT_SYMBOL_GPL vmlinux 0x33db6968 fsnotify_alloc_user_group -EXPORT_SYMBOL_GPL vmlinux 0x33e04fdf devlink_dpipe_table_register +EXPORT_SYMBOL_GPL vmlinux 0x3379211d max8997_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0x337c12d6 sdio_writel +EXPORT_SYMBOL_GPL vmlinux 0x337cc638 dw_pcie_ep_init_complete +EXPORT_SYMBOL_GPL vmlinux 0x338ec9ae irq_gc_mask_clr_bit +EXPORT_SYMBOL_GPL vmlinux 0x338ee9ff param_set_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0x33a12263 spi_controller_dma_unmap_mem_op_data +EXPORT_SYMBOL_GPL vmlinux 0x33a3cf3b of_irq_parse_and_map_pci +EXPORT_SYMBOL_GPL vmlinux 0x33cb10ba dax_writeback_mapping_range +EXPORT_SYMBOL_GPL vmlinux 0x33db6501 ping_get_port +EXPORT_SYMBOL_GPL vmlinux 0x33e03c43 edac_pci_add_device +EXPORT_SYMBOL_GPL vmlinux 0x33e13986 device_property_present +EXPORT_SYMBOL_GPL vmlinux 0x33e60604 iommu_sva_bind_device +EXPORT_SYMBOL_GPL vmlinux 0x33e79220 i2c_match_id EXPORT_SYMBOL_GPL vmlinux 0x33efc8c8 trace_clock_local -EXPORT_SYMBOL_GPL vmlinux 0x33faa69c clk_mux_determine_rate_flags -EXPORT_SYMBOL_GPL vmlinux 0x340569a1 raw_seq_next -EXPORT_SYMBOL_GPL vmlinux 0x341237fc pinctrl_force_sleep -EXPORT_SYMBOL_GPL vmlinux 0x342067a8 __mdiobus_modify_changed -EXPORT_SYMBOL_GPL vmlinux 0x3428b799 alloc_empty_file -EXPORT_SYMBOL_GPL vmlinux 0x343a256e fib_nl_delrule -EXPORT_SYMBOL_GPL vmlinux 0x343dde1f register_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x33fc3aea sysfs_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x33fd94d4 class_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x34036587 pstore_unregister +EXPORT_SYMBOL_GPL vmlinux 0x340f9224 eeh_pe_configure +EXPORT_SYMBOL_GPL vmlinux 0x341b9db5 pwmchip_add +EXPORT_SYMBOL_GPL vmlinux 0x341d7282 dmaengine_desc_set_metadata_len +EXPORT_SYMBOL_GPL vmlinux 0x3428565c serdev_device_write +EXPORT_SYMBOL_GPL vmlinux 0x34365d9f vfs_setlease +EXPORT_SYMBOL_GPL vmlinux 0x34391c24 crypto_unregister_aead +EXPORT_SYMBOL_GPL vmlinux 0x343985cf spi_mem_dirmap_create +EXPORT_SYMBOL_GPL vmlinux 0x343dfb3a pm_generic_suspend_late EXPORT_SYMBOL_GPL vmlinux 0x34407691 crypto_has_ahash -EXPORT_SYMBOL_GPL vmlinux 0x3440a89e serdev_device_set_parity -EXPORT_SYMBOL_GPL vmlinux 0x3441cc40 input_ff_flush EXPORT_SYMBOL_GPL vmlinux 0x344361a1 kdb_register -EXPORT_SYMBOL_GPL vmlinux 0x3444bde1 crypto_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x344559dd extcon_get_state EXPORT_SYMBOL_GPL vmlinux 0x344a2c84 iomap_dio_complete -EXPORT_SYMBOL_GPL vmlinux 0x344a72fc gpiod_set_raw_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x344e8d99 dax_region_put EXPORT_SYMBOL_GPL vmlinux 0x3450ad94 mpi_set_ui -EXPORT_SYMBOL_GPL vmlinux 0x346816b5 do_take_over_console -EXPORT_SYMBOL_GPL vmlinux 0x3479b07b rdev_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x347f4bc5 device_set_wakeup_capable -EXPORT_SYMBOL_GPL vmlinux 0x3491b79e rio_attach_device -EXPORT_SYMBOL_GPL vmlinux 0x349734f3 ata_host_register -EXPORT_SYMBOL_GPL vmlinux 0x349c2e5b pci_sriov_set_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0x34635669 dev_pm_opp_get_level +EXPORT_SYMBOL_GPL vmlinux 0x34661e2a init_uts_ns +EXPORT_SYMBOL_GPL vmlinux 0x3467d533 vas_register_api_pseries +EXPORT_SYMBOL_GPL vmlinux 0x347eb0f1 mptcp_token_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x34964eb7 perf_event_period +EXPORT_SYMBOL_GPL vmlinux 0x349737bb __vfs_removexattr_noperm +EXPORT_SYMBOL_GPL vmlinux 0x34985dc3 srp_rport_add +EXPORT_SYMBOL_GPL vmlinux 0x34a3c8f5 ksm_madvise +EXPORT_SYMBOL_GPL vmlinux 0x34a59a88 get_task_pid EXPORT_SYMBOL_GPL vmlinux 0x34a7b142 __SCK__tp_func_rpm_suspend -EXPORT_SYMBOL_GPL vmlinux 0x34aa32ed debugfs_create_regset32 -EXPORT_SYMBOL_GPL vmlinux 0x34bba896 icmp_build_probe -EXPORT_SYMBOL_GPL vmlinux 0x34c2ce55 fwnode_handle_put -EXPORT_SYMBOL_GPL vmlinux 0x34cd4f16 pinctrl_force_default -EXPORT_SYMBOL_GPL vmlinux 0x34eaf7bd ip6_push_pending_frames -EXPORT_SYMBOL_GPL vmlinux 0x34f776b4 usb_phy_set_charger_state +EXPORT_SYMBOL_GPL vmlinux 0x34af9d35 phy_package_leave +EXPORT_SYMBOL_GPL vmlinux 0x34e600b9 md_allow_write +EXPORT_SYMBOL_GPL vmlinux 0x34ea2617 nf_nat_hook +EXPORT_SYMBOL_GPL vmlinux 0x34edff0e kvmppc_h_get_tce +EXPORT_SYMBOL_GPL vmlinux 0x34f675d2 devfreq_event_get_edev_by_phandle EXPORT_SYMBOL_GPL vmlinux 0x34fc4ad3 __tracepoint_block_split -EXPORT_SYMBOL_GPL vmlinux 0x350e9136 device_link_del EXPORT_SYMBOL_GPL vmlinux 0x350f6ce5 tasklet_unlock_wait -EXPORT_SYMBOL_GPL vmlinux 0x351143ba nd_tbl -EXPORT_SYMBOL_GPL vmlinux 0x3524d139 rio_mport_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x3517fbaa __traceiter_sched_util_est_cfs_tp EXPORT_SYMBOL_GPL vmlinux 0x352b3813 maxim_charger_calc_reg_current EXPORT_SYMBOL_GPL vmlinux 0x352ec68b bpf_offload_dev_destroy -EXPORT_SYMBOL_GPL vmlinux 0x35345c72 ata_sas_port_destroy -EXPORT_SYMBOL_GPL vmlinux 0x35439e81 pci_ioremap_bar -EXPORT_SYMBOL_GPL vmlinux 0x355051e9 sysfs_change_owner -EXPORT_SYMBOL_GPL vmlinux 0x355c4450 iommu_page_response -EXPORT_SYMBOL_GPL vmlinux 0x355fe872 pinctrl_parse_index_with_args +EXPORT_SYMBOL_GPL vmlinux 0x35337110 badblocks_set +EXPORT_SYMBOL_GPL vmlinux 0x35526fc7 elv_register +EXPORT_SYMBOL_GPL vmlinux 0x355b0cba pm_generic_restore_noirq +EXPORT_SYMBOL_GPL vmlinux 0x3560502d get_kernel_pages +EXPORT_SYMBOL_GPL vmlinux 0x35672c3c clk_hw_get_rate EXPORT_SYMBOL_GPL vmlinux 0x3567743b vfio_external_user_iommu_id -EXPORT_SYMBOL_GPL vmlinux 0x356e2cc8 nvdimm_has_cache -EXPORT_SYMBOL_GPL vmlinux 0x35797a9a pinctrl_remove_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x357e04cb skb_consume_udp EXPORT_SYMBOL_GPL vmlinux 0x358ff60f twl_get_hfclk_rate -EXPORT_SYMBOL_GPL vmlinux 0x35939c99 dm_internal_suspend_fast -EXPORT_SYMBOL_GPL vmlinux 0x35a81b9b sock_inuse_get -EXPORT_SYMBOL_GPL vmlinux 0x35ba4f09 virtqueue_disable_cb -EXPORT_SYMBOL_GPL vmlinux 0x35bec56f blk_mq_freeze_queue_wait_timeout -EXPORT_SYMBOL_GPL vmlinux 0x35c8c130 of_rescan_bus -EXPORT_SYMBOL_GPL vmlinux 0x35cde49d regulator_is_supported_voltage +EXPORT_SYMBOL_GPL vmlinux 0x35a6e531 bpf_trace_run8 +EXPORT_SYMBOL_GPL vmlinux 0x35be0101 wm831x_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x35c7aab6 l3mdev_master_ifindex_rcu +EXPORT_SYMBOL_GPL vmlinux 0x35d17c43 sk_set_peek_off +EXPORT_SYMBOL_GPL vmlinux 0x35e3dbb4 unregister_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x35f47c2e xdp_build_skb_from_frame +EXPORT_SYMBOL_GPL vmlinux 0x35f56bf2 tc3589x_block_write +EXPORT_SYMBOL_GPL vmlinux 0x35f87046 devlink_dpipe_action_put +EXPORT_SYMBOL_GPL vmlinux 0x35fdf418 pci_try_reset_function EXPORT_SYMBOL_GPL vmlinux 0x36075bb5 iommu_group_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x3609b131 crypto_shash_alg_has_setkey -EXPORT_SYMBOL_GPL vmlinux 0x361022c5 iommu_unmap_fast -EXPORT_SYMBOL_GPL vmlinux 0x3618acce of_reserved_mem_device_init_by_name -EXPORT_SYMBOL_GPL vmlinux 0x361b622c virtio_check_driver_offered_feature +EXPORT_SYMBOL_GPL vmlinux 0x3611aa14 da903x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x361951b0 pinctrl_generic_get_group_name +EXPORT_SYMBOL_GPL vmlinux 0x36214022 i2c_new_client_device EXPORT_SYMBOL_GPL vmlinux 0x36242943 switchdev_deferred_process -EXPORT_SYMBOL_GPL vmlinux 0x363807b0 bio_start_io_acct -EXPORT_SYMBOL_GPL vmlinux 0x364c446e nvmem_cell_read_u8 -EXPORT_SYMBOL_GPL vmlinux 0x364cc8ce i2c_adapter_type -EXPORT_SYMBOL_GPL vmlinux 0x36564309 tpm_put_ops +EXPORT_SYMBOL_GPL vmlinux 0x363ca773 of_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x36553f60 ata_wait_register +EXPORT_SYMBOL_GPL vmlinux 0x365aa7e1 ata_qc_get_active EXPORT_SYMBOL_GPL vmlinux 0x365b45d1 __tracepoint_sched_update_nr_running_tp -EXPORT_SYMBOL_GPL vmlinux 0x366dfa76 blk_mq_quiesce_queue_nowait -EXPORT_SYMBOL_GPL vmlinux 0x367df8d4 crypto_alloc_acomp +EXPORT_SYMBOL_GPL vmlinux 0x366fc5ba usb_role_switch_get +EXPORT_SYMBOL_GPL vmlinux 0x369f2ac4 fib6_check_nexthop EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot -EXPORT_SYMBOL_GPL vmlinux 0x36a28081 sk_msg_clone -EXPORT_SYMBOL_GPL vmlinux 0x36ae9e24 dev_pm_opp_of_find_icc_paths -EXPORT_SYMBOL_GPL vmlinux 0x36c0048f ata_std_postreset -EXPORT_SYMBOL_GPL vmlinux 0x36ce8281 serdev_device_add -EXPORT_SYMBOL_GPL vmlinux 0x36cf8c2f register_trace_event -EXPORT_SYMBOL_GPL vmlinux 0x36ec854d devm_extcon_dev_register -EXPORT_SYMBOL_GPL vmlinux 0x36ed43ce PageHuge -EXPORT_SYMBOL_GPL vmlinux 0x37133c2c spi_alloc_device -EXPORT_SYMBOL_GPL vmlinux 0x37175ee4 usb_free_urb -EXPORT_SYMBOL_GPL vmlinux 0x3721facc nexthop_select_path -EXPORT_SYMBOL_GPL vmlinux 0x37272212 dev_pm_qos_update_user_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0x372d0b43 pcibios_map_io_space -EXPORT_SYMBOL_GPL vmlinux 0x373d57b6 blkdev_report_zones +EXPORT_SYMBOL_GPL vmlinux 0x36ab7f9d switchdev_bridge_port_offload +EXPORT_SYMBOL_GPL vmlinux 0x36b4bd5e skb_mpls_update_lse +EXPORT_SYMBOL_GPL vmlinux 0x36c568e4 kernel_read_file +EXPORT_SYMBOL_GPL vmlinux 0x36e1db9a locks_release_private +EXPORT_SYMBOL_GPL vmlinux 0x36ea53a4 __ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0x36f06dd2 pm_runtime_suspended_time +EXPORT_SYMBOL_GPL vmlinux 0x36f1b1e0 fscrypt_ioctl_get_nonce +EXPORT_SYMBOL_GPL vmlinux 0x36f7dcca pci_disable_rom +EXPORT_SYMBOL_GPL vmlinux 0x3707c890 extcon_get_property +EXPORT_SYMBOL_GPL vmlinux 0x371f6275 dev_pm_put_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0x37305d32 raw_abort EXPORT_SYMBOL_GPL vmlinux 0x374c53e1 ata_get_cmd_descript -EXPORT_SYMBOL_GPL vmlinux 0x375f248d spi_get_device_id -EXPORT_SYMBOL_GPL vmlinux 0x376363be tps80031_ext_power_req_config +EXPORT_SYMBOL_GPL vmlinux 0x3756b4c5 gpio_to_desc +EXPORT_SYMBOL_GPL vmlinux 0x375e5d78 vfio_register_group_dev +EXPORT_SYMBOL_GPL vmlinux 0x3765f0de scsi_internal_device_block_nowait +EXPORT_SYMBOL_GPL vmlinux 0x376feb5b sysfs_create_link_nowarn +EXPORT_SYMBOL_GPL vmlinux 0x3777cf8a devm_pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x37796b89 __inet_lookup_listener EXPORT_SYMBOL_GPL vmlinux 0x377bbcbc pm_suspend_target_state -EXPORT_SYMBOL_GPL vmlinux 0x37a088da of_platform_device_destroy -EXPORT_SYMBOL_GPL vmlinux 0x37a8cd28 regmap_get_val_bytes -EXPORT_SYMBOL_GPL vmlinux 0x37af684e scsi_dh_attach -EXPORT_SYMBOL_GPL vmlinux 0x37bc310c led_trigger_register_simple +EXPORT_SYMBOL_GPL vmlinux 0x37aedbea devm_phy_put EXPORT_SYMBOL_GPL vmlinux 0x37bf7be3 percpu_ref_exit -EXPORT_SYMBOL_GPL vmlinux 0x37cee8e9 fuse_fill_super_common -EXPORT_SYMBOL_GPL vmlinux 0x37d3ee9b ata_port_wait_eh -EXPORT_SYMBOL_GPL vmlinux 0x37ecfb7d mnt_want_write +EXPORT_SYMBOL_GPL vmlinux 0x37c1ea11 devm_hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x37d279d4 crypto_grab_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x37dbd859 pm_runtime_allow EXPORT_SYMBOL_GPL vmlinux 0x3801776b __ioread32_copy -EXPORT_SYMBOL_GPL vmlinux 0x38127e30 blk_ksm_init_passthrough -EXPORT_SYMBOL_GPL vmlinux 0x381672d1 dev_pm_opp_disable +EXPORT_SYMBOL_GPL vmlinux 0x38146985 cpuidle_unregister_driver EXPORT_SYMBOL_GPL vmlinux 0x38268b62 icc_bulk_enable -EXPORT_SYMBOL_GPL vmlinux 0x382e768e phy_save_page +EXPORT_SYMBOL_GPL vmlinux 0x38308315 trace_put_event_file EXPORT_SYMBOL_GPL vmlinux 0x38374815 clear_selection -EXPORT_SYMBOL_GPL vmlinux 0x383b9969 blk_steal_bios -EXPORT_SYMBOL_GPL vmlinux 0x3840d750 dev_pm_opp_xlate_required_opp -EXPORT_SYMBOL_GPL vmlinux 0x384560b6 irq_of_parse_and_map -EXPORT_SYMBOL_GPL vmlinux 0x384b1615 vp_modern_get_driver_features -EXPORT_SYMBOL_GPL vmlinux 0x384b844d dma_vmap_noncontiguous -EXPORT_SYMBOL_GPL vmlinux 0x3852ce5d nvdimm_provider_data -EXPORT_SYMBOL_GPL vmlinux 0x385adbdf stmpe_block_read -EXPORT_SYMBOL_GPL vmlinux 0x385ba692 param_set_uint_minmax -EXPORT_SYMBOL_GPL vmlinux 0x3860e438 ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0x383c164a sata_scr_valid +EXPORT_SYMBOL_GPL vmlinux 0x384bf679 peernet2id_alloc +EXPORT_SYMBOL_GPL vmlinux 0x384f2f3b crypto_register_ahashes +EXPORT_SYMBOL_GPL vmlinux 0x385bc3a7 usb_disable_ltm +EXPORT_SYMBOL_GPL vmlinux 0x385c96ed device_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0x3860bfa5 dev_pm_domain_attach EXPORT_SYMBOL_GPL vmlinux 0x3866e217 nvmem_device_write -EXPORT_SYMBOL_GPL vmlinux 0x38696fb4 devm_thermal_zone_of_sensor_unregister -EXPORT_SYMBOL_GPL vmlinux 0x388c5049 genphy_c45_an_disable_aneg -EXPORT_SYMBOL_GPL vmlinux 0x38926324 simple_attr_release -EXPORT_SYMBOL_GPL vmlinux 0x3896d9de __percpu_down_read +EXPORT_SYMBOL_GPL vmlinux 0x387ae1c3 usb_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x387fb1b0 skb_pull_rcsum +EXPORT_SYMBOL_GPL vmlinux 0x3881e9b4 nd_blk_memremap_flags +EXPORT_SYMBOL_GPL vmlinux 0x388202af vp_modern_generation +EXPORT_SYMBOL_GPL vmlinux 0x388dcbb8 sata_scr_write +EXPORT_SYMBOL_GPL vmlinux 0x38907ccb of_device_request_module EXPORT_SYMBOL_GPL vmlinux 0x389b64a2 static_key_count -EXPORT_SYMBOL_GPL vmlinux 0x38a5a699 vfs_cancel_lock EXPORT_SYMBOL_GPL vmlinux 0x38aa1397 gpiod_add_lookup_table -EXPORT_SYMBOL_GPL vmlinux 0x38be859c __rio_local_read_config_32 -EXPORT_SYMBOL_GPL vmlinux 0x38cb970f bd_prepare_to_claim -EXPORT_SYMBOL_GPL vmlinux 0x38cbd12c vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x38acdf6d dev_pm_qos_hide_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x38b268fa edac_pci_alloc_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0x38c041b5 fwnode_device_is_available +EXPORT_SYMBOL_GPL vmlinux 0x38c23c1c sysfs_notify +EXPORT_SYMBOL_GPL vmlinux 0x38c93577 dev_pm_qos_remove_request EXPORT_SYMBOL_GPL vmlinux 0x38d23562 badrange_add -EXPORT_SYMBOL_GPL vmlinux 0x38d5b858 phy_restore_page -EXPORT_SYMBOL_GPL vmlinux 0x38dc2f8c strp_stop +EXPORT_SYMBOL_GPL vmlinux 0x38d3ffa6 tps6586x_read +EXPORT_SYMBOL_GPL vmlinux 0x38da42d7 usb_sg_init EXPORT_SYMBOL_GPL vmlinux 0x38e1fde7 mpi_set EXPORT_SYMBOL_GPL vmlinux 0x38e5bc5a clk_set_rate_range -EXPORT_SYMBOL_GPL vmlinux 0x38fdffbe devm_regmap_field_bulk_alloc -EXPORT_SYMBOL_GPL vmlinux 0x39162bcc metadata_dst_free_percpu -EXPORT_SYMBOL_GPL vmlinux 0x394a8d99 bpf_trace_run10 -EXPORT_SYMBOL_GPL vmlinux 0x394dfb77 devm_regulator_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x39557131 pcie_aspm_enabled -EXPORT_SYMBOL_GPL vmlinux 0x3957ffca serdev_device_write -EXPORT_SYMBOL_GPL vmlinux 0x395ec24b bpf_trace_run4 -EXPORT_SYMBOL_GPL vmlinux 0x3962a761 pci_user_read_config_word -EXPORT_SYMBOL_GPL vmlinux 0x397d9a24 generic_fsdax_supported +EXPORT_SYMBOL_GPL vmlinux 0x38edf250 find_extend_vma +EXPORT_SYMBOL_GPL vmlinux 0x38fd53cb of_dma_router_register +EXPORT_SYMBOL_GPL vmlinux 0x391e3620 tpm_pcr_extend +EXPORT_SYMBOL_GPL vmlinux 0x3921ec41 transport_setup_device +EXPORT_SYMBOL_GPL vmlinux 0x392c74c1 find_mci_by_dev +EXPORT_SYMBOL_GPL vmlinux 0x3938b7a0 regmap_async_complete +EXPORT_SYMBOL_GPL vmlinux 0x393abbfc posix_acl_create +EXPORT_SYMBOL_GPL vmlinux 0x39609faf aead_exit_geniv +EXPORT_SYMBOL_GPL vmlinux 0x39671941 fib_rules_seq_read +EXPORT_SYMBOL_GPL vmlinux 0x39741a91 ata_slave_link_init EXPORT_SYMBOL_GPL vmlinux 0x397e2142 __SCK__tp_func_sched_cpu_capacity_tp -EXPORT_SYMBOL_GPL vmlinux 0x39872242 usb_hcd_setup_local_mem -EXPORT_SYMBOL_GPL vmlinux 0x398ba69a extcon_get_property -EXPORT_SYMBOL_GPL vmlinux 0x399c00e0 kgdb_register_io_module -EXPORT_SYMBOL_GPL vmlinux 0x39a2c69c devlink_flash_update_timeout_notify +EXPORT_SYMBOL_GPL vmlinux 0x399c8a25 ata_dev_set_feature EXPORT_SYMBOL_GPL vmlinux 0x39a7affc driver_deferred_probe_timeout EXPORT_SYMBOL_GPL vmlinux 0x39aa4888 usb_role_string -EXPORT_SYMBOL_GPL vmlinux 0x39aa566f misc_cg_try_charge -EXPORT_SYMBOL_GPL vmlinux 0x39ad1d2e led_sysfs_enable -EXPORT_SYMBOL_GPL vmlinux 0x39afe71e crypto_unregister_template -EXPORT_SYMBOL_GPL vmlinux 0x39b3a0d7 of_reserved_mem_device_init_by_idx -EXPORT_SYMBOL_GPL vmlinux 0x39b6851e of_irq_to_resource_table -EXPORT_SYMBOL_GPL vmlinux 0x39c0053d mmu_interval_notifier_remove -EXPORT_SYMBOL_GPL vmlinux 0x39c32710 kvmppc_do_h_remove +EXPORT_SYMBOL_GPL vmlinux 0x39b64d98 edac_device_free_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0x39b97d7c devlink_resources_unregister +EXPORT_SYMBOL_GPL vmlinux 0x39c1d836 badblocks_show EXPORT_SYMBOL_GPL vmlinux 0x39c32aca __SCK__tp_func_neigh_event_send_done -EXPORT_SYMBOL_GPL vmlinux 0x39cec21c iommu_detach_device -EXPORT_SYMBOL_GPL vmlinux 0x39cef99a pci_ecam_map_bus -EXPORT_SYMBOL_GPL vmlinux 0x39cfb630 dax_layout_busy_page -EXPORT_SYMBOL_GPL vmlinux 0x39d8c8f4 of_property_read_u64 +EXPORT_SYMBOL_GPL vmlinux 0x39c3c31b subsys_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x39d0c028 crypto_unregister_rngs EXPORT_SYMBOL_GPL vmlinux 0x39ded098 rdma_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x39f5013f tpm_pm_suspend -EXPORT_SYMBOL_GPL vmlinux 0x39fef5ab copro_calculate_slb -EXPORT_SYMBOL_GPL vmlinux 0x3a09819e lwtunnel_get_encap_size -EXPORT_SYMBOL_GPL vmlinux 0x3a0e4081 sdio_release_host -EXPORT_SYMBOL_GPL vmlinux 0x3a14aac0 iommu_domain_alloc -EXPORT_SYMBOL_GPL vmlinux 0x3a151daa input_ff_event -EXPORT_SYMBOL_GPL vmlinux 0x3a15ac34 sdio_writesb +EXPORT_SYMBOL_GPL vmlinux 0x3a070d49 net_ns_get_ownership +EXPORT_SYMBOL_GPL vmlinux 0x3a11a2f1 devm_free_pages EXPORT_SYMBOL_GPL vmlinux 0x3a24fb2f percpu_ref_resurrect -EXPORT_SYMBOL_GPL vmlinux 0x3a3c98b0 bio_release_pages +EXPORT_SYMBOL_GPL vmlinux 0x3a4c4cd8 da9052_free_irq EXPORT_SYMBOL_GPL vmlinux 0x3a4f6a32 ata_sff_interrupt EXPORT_SYMBOL_GPL vmlinux 0x3a536bd7 ring_buffer_read_finish +EXPORT_SYMBOL_GPL vmlinux 0x3a554504 inverse_translate EXPORT_SYMBOL_GPL vmlinux 0x3a55981a static_key_enable_cpuslocked -EXPORT_SYMBOL_GPL vmlinux 0x3a5dee6b alloc_dax_region EXPORT_SYMBOL_GPL vmlinux 0x3a74e484 __tracepoint_sched_util_est_se_tp -EXPORT_SYMBOL_GPL vmlinux 0x3a81ff0b tty_perform_flush -EXPORT_SYMBOL_GPL vmlinux 0x3a89600b __mmdrop -EXPORT_SYMBOL_GPL vmlinux 0x3a8a754e __traceiter_xdp_exception +EXPORT_SYMBOL_GPL vmlinux 0x3a79105f devlink_flash_update_status_notify EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial -EXPORT_SYMBOL_GPL vmlinux 0x3a9c03f4 vfs_read -EXPORT_SYMBOL_GPL vmlinux 0x3aaa1272 vfs_setlease -EXPORT_SYMBOL_GPL vmlinux 0x3ab1ecd0 gpiod_get_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x3a9eeb31 pinctrl_force_sleep +EXPORT_SYMBOL_GPL vmlinux 0x3aa49ac3 usb_get_maximum_speed +EXPORT_SYMBOL_GPL vmlinux 0x3aa899b4 nvmem_cell_read_variable_le_u32 +EXPORT_SYMBOL_GPL vmlinux 0x3ab20533 pci_cfg_access_unlock +EXPORT_SYMBOL_GPL vmlinux 0x3ab3a07e ata_sff_queue_pio_task +EXPORT_SYMBOL_GPL vmlinux 0x3ab5f74d wm8350_device_init +EXPORT_SYMBOL_GPL vmlinux 0x3abe3b49 devm_regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x3ac523cd list_lru_count_one EXPORT_SYMBOL_GPL vmlinux 0x3acdf325 twl4030_audio_enable_resource -EXPORT_SYMBOL_GPL vmlinux 0x3ae18282 stmpe_set_altfunc -EXPORT_SYMBOL_GPL vmlinux 0x3ae763f3 ethnl_cable_test_step -EXPORT_SYMBOL_GPL vmlinux 0x3af26ded housekeeping_affine -EXPORT_SYMBOL_GPL vmlinux 0x3afcd76f devlink_dpipe_entry_ctx_append -EXPORT_SYMBOL_GPL vmlinux 0x3afe6f7f pci_bus_resource_n +EXPORT_SYMBOL_GPL vmlinux 0x3adde93d device_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x3ae11d9b ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0x3ae69ee4 __inet_twsk_schedule +EXPORT_SYMBOL_GPL vmlinux 0x3b03761f get_slice_psize EXPORT_SYMBOL_GPL vmlinux 0x3b1d9ae4 __srcu_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0x3b2260f6 serial8250_rpm_get -EXPORT_SYMBOL_GPL vmlinux 0x3b342e11 gpiochip_remove_pin_ranges -EXPORT_SYMBOL_GPL vmlinux 0x3b4b37c4 gov_attr_set_init +EXPORT_SYMBOL_GPL vmlinux 0x3b27125d iommu_detach_group +EXPORT_SYMBOL_GPL vmlinux 0x3b2a90fd blk_ksm_destroy +EXPORT_SYMBOL_GPL vmlinux 0x3b3966ce of_thermal_get_trip_points +EXPORT_SYMBOL_GPL vmlinux 0x3b3b74e0 ata_scsi_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x3b3c3156 wakeup_sources_walk_start +EXPORT_SYMBOL_GPL vmlinux 0x3b4a983c tpm1_getcap EXPORT_SYMBOL_GPL vmlinux 0x3b4c240a display_timings_release -EXPORT_SYMBOL_GPL vmlinux 0x3b5edf6c iomap_releasepage EXPORT_SYMBOL_GPL vmlinux 0x3b610584 __tracepoint_sched_cpu_capacity_tp -EXPORT_SYMBOL_GPL vmlinux 0x3b637468 da903x_write -EXPORT_SYMBOL_GPL vmlinux 0x3b648227 gpiod_get_index -EXPORT_SYMBOL_GPL vmlinux 0x3b66b811 inode_dax -EXPORT_SYMBOL_GPL vmlinux 0x3b6c01ae scsi_ioctl_block_when_processing_errors EXPORT_SYMBOL_GPL vmlinux 0x3b757ff3 mm_account_pinned_pages -EXPORT_SYMBOL_GPL vmlinux 0x3b774f33 crypto_grab_spawn -EXPORT_SYMBOL_GPL vmlinux 0x3b826184 tcp_slow_start +EXPORT_SYMBOL_GPL vmlinux 0x3b896814 skb_scrub_packet EXPORT_SYMBOL_GPL vmlinux 0x3b8f4788 rhashtable_walk_peek -EXPORT_SYMBOL_GPL vmlinux 0x3b9516e0 clone_private_mount EXPORT_SYMBOL_GPL vmlinux 0x3b95f543 klp_shadow_free EXPORT_SYMBOL_GPL vmlinux 0x3ba01b47 get_compat_sigset -EXPORT_SYMBOL_GPL vmlinux 0x3bd7d4ed ata_ehi_clear_desc +EXPORT_SYMBOL_GPL vmlinux 0x3bc0fc74 ata_timing_compute +EXPORT_SYMBOL_GPL vmlinux 0x3bcfae83 device_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0x3bdb3947 ata_bmdma_qc_issue EXPORT_SYMBOL_GPL vmlinux 0x3bdb5d28 alg_test EXPORT_SYMBOL_GPL vmlinux 0x3bdc0e0c __tracepoint_neigh_event_send_done -EXPORT_SYMBOL_GPL vmlinux 0x3be60f28 extcon_get_property_capability -EXPORT_SYMBOL_GPL vmlinux 0x3bebb628 pci_epf_alloc_space +EXPORT_SYMBOL_GPL vmlinux 0x3bec7dfe vp_modern_get_driver_features +EXPORT_SYMBOL_GPL vmlinux 0x3beee258 ip4_datagram_release_cb EXPORT_SYMBOL_GPL vmlinux 0x3bf17755 mpi_read_buffer -EXPORT_SYMBOL_GPL vmlinux 0x3bfd19fe led_set_brightness +EXPORT_SYMBOL_GPL vmlinux 0x3c105130 trace_event_raw_init +EXPORT_SYMBOL_GPL vmlinux 0x3c190bad skcipher_walk_done EXPORT_SYMBOL_GPL vmlinux 0x3c1c3725 rcu_fwd_progress_check EXPORT_SYMBOL_GPL vmlinux 0x3c2b68f7 of_changeset_apply -EXPORT_SYMBOL_GPL vmlinux 0x3c34f2f5 mmu_notifier_put +EXPORT_SYMBOL_GPL vmlinux 0x3c2d241e input_ff_erase +EXPORT_SYMBOL_GPL vmlinux 0x3c2f3199 spi_mem_dtr_supports_op EXPORT_SYMBOL_GPL vmlinux 0x3c357c8f sbitmap_queue_resize EXPORT_SYMBOL_GPL vmlinux 0x3c37cbf8 machine_check_print_event_info EXPORT_SYMBOL_GPL vmlinux 0x3c3c85d8 __SCK__tp_func_kfree_skb -EXPORT_SYMBOL_GPL vmlinux 0x3c3db029 mctrl_gpio_free -EXPORT_SYMBOL_GPL vmlinux 0x3c6378e2 od_register_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0x3c3dc812 of_platform_default_populate +EXPORT_SYMBOL_GPL vmlinux 0x3c4a7e51 msg_zerocopy_callback +EXPORT_SYMBOL_GPL vmlinux 0x3c57a547 page_cache_async_ra +EXPORT_SYMBOL_GPL vmlinux 0x3c5820e1 ata_bmdma_error_handler EXPORT_SYMBOL_GPL vmlinux 0x3c681dc4 ring_buffer_record_disable -EXPORT_SYMBOL_GPL vmlinux 0x3c791dca sysfs_remove_file_ns -EXPORT_SYMBOL_GPL vmlinux 0x3c815cae raw_seq_stop -EXPORT_SYMBOL_GPL vmlinux 0x3c86161f clk_mux_ops -EXPORT_SYMBOL_GPL vmlinux 0x3c8ad40e fib_table_lookup -EXPORT_SYMBOL_GPL vmlinux 0x3c9e5fcd devm_pm_opp_set_clkname -EXPORT_SYMBOL_GPL vmlinux 0x3cb895ab devlink_dpipe_headers_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3c6be3c1 devlink_dpipe_table_resource_set +EXPORT_SYMBOL_GPL vmlinux 0x3c7e0b55 of_clk_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0x3c8f55b3 nfs_ssc_register +EXPORT_SYMBOL_GPL vmlinux 0x3c8f6ace ethnl_cable_test_fault_length +EXPORT_SYMBOL_GPL vmlinux 0x3c9355ed ipv4_redirect +EXPORT_SYMBOL_GPL vmlinux 0x3cbacc38 device_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x3cbd3b5a evm_verifyxattr +EXPORT_SYMBOL_GPL vmlinux 0x3cced4a0 fat_time_unix2fat EXPORT_SYMBOL_GPL vmlinux 0x3cd06035 add_input_randomness EXPORT_SYMBOL_GPL vmlinux 0x3cd1b510 trace_vbprintk -EXPORT_SYMBOL_GPL vmlinux 0x3cd9f307 nvdimm_security_setup_events +EXPORT_SYMBOL_GPL vmlinux 0x3cd2f20f xfrm_audit_policy_add +EXPORT_SYMBOL_GPL vmlinux 0x3cd95cdc ehci_adjust_port_wakeup_flags +EXPORT_SYMBOL_GPL vmlinux 0x3cd9b833 fscrypt_mergeable_bio_bh +EXPORT_SYMBOL_GPL vmlinux 0x3cdb5c5c irq_domain_simple_ops EXPORT_SYMBOL_GPL vmlinux 0x3ce650fd phy_10gbit_features EXPORT_SYMBOL_GPL vmlinux 0x3cf69baf slice_get_unmapped_area -EXPORT_SYMBOL_GPL vmlinux 0x3cf7b7e2 skb_gso_validate_mac_len EXPORT_SYMBOL_GPL vmlinux 0x3cfb796d kvmppc_save_tm_hv -EXPORT_SYMBOL_GPL vmlinux 0x3cfd9dae __netpoll_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x3d1eb1a4 gpiochip_populate_parent_fwspec_twocell -EXPORT_SYMBOL_GPL vmlinux 0x3d26dffc virtqueue_enable_cb_prepare -EXPORT_SYMBOL_GPL vmlinux 0x3d298ae0 spi_controller_dma_map_mem_op_data -EXPORT_SYMBOL_GPL vmlinux 0x3d2e3f51 devres_add +EXPORT_SYMBOL_GPL vmlinux 0x3d09a93a mddev_init_writes_pending +EXPORT_SYMBOL_GPL vmlinux 0x3d2852ed irq_domain_remove +EXPORT_SYMBOL_GPL vmlinux 0x3d2dfe69 phy_pm_runtime_put EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end -EXPORT_SYMBOL_GPL vmlinux 0x3d39323d perf_event_pause -EXPORT_SYMBOL_GPL vmlinux 0x3d400196 switchdev_port_attr_set +EXPORT_SYMBOL_GPL vmlinux 0x3d426750 shash_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0x3d47e6d7 ipv6_bpf_stub +EXPORT_SYMBOL_GPL vmlinux 0x3d4c3e09 of_reset_control_array_get EXPORT_SYMBOL_GPL vmlinux 0x3d510a7b rcu_jiffies_till_stall_check -EXPORT_SYMBOL_GPL vmlinux 0x3d5d8982 rio_alloc_net EXPORT_SYMBOL_GPL vmlinux 0x3d612305 iommu_direction_to_tce_perm EXPORT_SYMBOL_GPL vmlinux 0x3d6666d7 verify_pkcs7_signature -EXPORT_SYMBOL_GPL vmlinux 0x3d6aaf5c debugfs_attr_write +EXPORT_SYMBOL_GPL vmlinux 0x3d751685 usb_clear_halt EXPORT_SYMBOL_GPL vmlinux 0x3d866e05 __SCK__tp_func_block_rq_insert EXPORT_SYMBOL_GPL vmlinux 0x3d867dd0 raw_v4_hashinfo EXPORT_SYMBOL_GPL vmlinux 0x3d8baf3b zs_huge_class_size -EXPORT_SYMBOL_GPL vmlinux 0x3d9b79a7 irq_chip_release_resources_parent +EXPORT_SYMBOL_GPL vmlinux 0x3d975efb rt_mutex_unlock EXPORT_SYMBOL_GPL vmlinux 0x3d9bbf75 wwan_port_txon +EXPORT_SYMBOL_GPL vmlinux 0x3da13115 pm_clk_runtime_resume EXPORT_SYMBOL_GPL vmlinux 0x3daa2540 nf_hooks_lwtunnel_enabled EXPORT_SYMBOL_GPL vmlinux 0x3db31b1d inet_getpeer -EXPORT_SYMBOL_GPL vmlinux 0x3dd35ba3 shash_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0x3dbdd738 crypto_hash_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x3dbefc59 iommu_capable +EXPORT_SYMBOL_GPL vmlinux 0x3dc79dfd usb_register_dev +EXPORT_SYMBOL_GPL vmlinux 0x3dd4dd23 pm_genpd_add_subdomain +EXPORT_SYMBOL_GPL vmlinux 0x3ddb29d2 devm_get_free_pages EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final -EXPORT_SYMBOL_GPL vmlinux 0x3df5b6f1 seg6_do_srh_inline -EXPORT_SYMBOL_GPL vmlinux 0x3df6ef06 mmu_interval_notifier_insert_locked EXPORT_SYMBOL_GPL vmlinux 0x3df6efe6 pnv_ocxl_unmap_lpar -EXPORT_SYMBOL_GPL vmlinux 0x3df7944f usb_wakeup_notification -EXPORT_SYMBOL_GPL vmlinux 0x3dfd95b7 devm_clk_hw_register -EXPORT_SYMBOL_GPL vmlinux 0x3e079a7e device_add -EXPORT_SYMBOL_GPL vmlinux 0x3e1ca0d5 strp_process -EXPORT_SYMBOL_GPL vmlinux 0x3e242713 crypto_shash_finup -EXPORT_SYMBOL_GPL vmlinux 0x3e2e24c1 task_cgroup_path -EXPORT_SYMBOL_GPL vmlinux 0x3e3f792f em_dev_register_perf_domain -EXPORT_SYMBOL_GPL vmlinux 0x3e5a47be tun_get_socket -EXPORT_SYMBOL_GPL vmlinux 0x3e5f55d9 devm_pm_opp_of_add_table -EXPORT_SYMBOL_GPL vmlinux 0x3e6a56d2 regmap_register_patch +EXPORT_SYMBOL_GPL vmlinux 0x3dfd90c0 wm8350_gpio_config +EXPORT_SYMBOL_GPL vmlinux 0x3dfe738f tty_release_struct +EXPORT_SYMBOL_GPL vmlinux 0x3e01be04 irq_chip_mask_ack_parent +EXPORT_SYMBOL_GPL vmlinux 0x3e0351bf blk_queue_zone_write_granularity +EXPORT_SYMBOL_GPL vmlinux 0x3e05d89e ata_sas_port_init +EXPORT_SYMBOL_GPL vmlinux 0x3e082d5f crypto_stats_kpp_set_secret +EXPORT_SYMBOL_GPL vmlinux 0x3e0d13bb __traceiter_xdp_bulk_tx +EXPORT_SYMBOL_GPL vmlinux 0x3e1160b5 usb_phy_set_charger_current +EXPORT_SYMBOL_GPL vmlinux 0x3e16f9c8 led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3e18bca1 irq_domain_free_irqs_parent +EXPORT_SYMBOL_GPL vmlinux 0x3e196857 platform_device_put +EXPORT_SYMBOL_GPL vmlinux 0x3e3cc503 dw_pcie_host_deinit +EXPORT_SYMBOL_GPL vmlinux 0x3e4122c5 dma_buf_get EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer -EXPORT_SYMBOL_GPL vmlinux 0x3e718455 blk_mq_queue_inflight -EXPORT_SYMBOL_GPL vmlinux 0x3e71b7eb da903x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x3e74d830 netlink_has_listeners -EXPORT_SYMBOL_GPL vmlinux 0x3e76d1c7 rio_add_net -EXPORT_SYMBOL_GPL vmlinux 0x3e9f645b genphy_c45_pma_setup_forced -EXPORT_SYMBOL_GPL vmlinux 0x3ea9e311 debugfs_create_x32 -EXPORT_SYMBOL_GPL vmlinux 0x3ec4cb8d cn_add_callback +EXPORT_SYMBOL_GPL vmlinux 0x3e7b1cb3 regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x3e8ec351 dev_pm_domain_detach +EXPORT_SYMBOL_GPL vmlinux 0x3e9131d5 dev_pm_opp_find_freq_ceil_by_volt +EXPORT_SYMBOL_GPL vmlinux 0x3e91915e bsg_job_done +EXPORT_SYMBOL_GPL vmlinux 0x3ea8baaa pci_set_cacheline_size +EXPORT_SYMBOL_GPL vmlinux 0x3eb61aea nvdimm_kobj +EXPORT_SYMBOL_GPL vmlinux 0x3ec8edd4 kick_process +EXPORT_SYMBOL_GPL vmlinux 0x3ec8fdda unregister_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x3ecbf243 housekeeping_affine EXPORT_SYMBOL_GPL vmlinux 0x3ecdaa2b __find_linux_pte -EXPORT_SYMBOL_GPL vmlinux 0x3ee923cb regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x3ed09ce3 vfio_uninit_group_dev +EXPORT_SYMBOL_GPL vmlinux 0x3edef12c hvc_alloc EXPORT_SYMBOL_GPL vmlinux 0x3ef051c8 crypto_inc -EXPORT_SYMBOL_GPL vmlinux 0x3ef3add6 clk_hw_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0x3ef8e2e1 sysfs_add_link_to_group EXPORT_SYMBOL_GPL vmlinux 0x3efd1889 dax_direct_access -EXPORT_SYMBOL_GPL vmlinux 0x3f1c2e55 scsi_get_vpd_page -EXPORT_SYMBOL_GPL vmlinux 0x3f1d9012 usb_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x3f1f4e84 devm_usb_put_phy EXPORT_SYMBOL_GPL vmlinux 0x3f2092e3 fl6_update_dst -EXPORT_SYMBOL_GPL vmlinux 0x3f2e85d4 ip6_datagram_send_ctl +EXPORT_SYMBOL_GPL vmlinux 0x3f20bc89 of_platform_device_destroy +EXPORT_SYMBOL_GPL vmlinux 0x3f2c811a usb_remove_phy +EXPORT_SYMBOL_GPL vmlinux 0x3f2e86a1 synth_event_gen_cmd_array_start EXPORT_SYMBOL_GPL vmlinux 0x3f2fca68 list_lru_add -EXPORT_SYMBOL_GPL vmlinux 0x3f43bdba vp_modern_probe EXPORT_SYMBOL_GPL vmlinux 0x3f491f49 reset_control_bulk_reset -EXPORT_SYMBOL_GPL vmlinux 0x3f509686 __clk_hw_register_fixed_rate -EXPORT_SYMBOL_GPL vmlinux 0x3f615a3a crypto_shoot_alg -EXPORT_SYMBOL_GPL vmlinux 0x3f781ab2 devfreq_event_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0x3f82bf85 bus_rescan_devices +EXPORT_SYMBOL_GPL vmlinux 0x3f4d34ee fat_free_clusters +EXPORT_SYMBOL_GPL vmlinux 0x3f4e7915 is_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x3f6ad15b devlink_port_param_driverinit_value_set +EXPORT_SYMBOL_GPL vmlinux 0x3f78543b pci_dev_run_wake +EXPORT_SYMBOL_GPL vmlinux 0x3f7a6d97 devm_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x3f7e8667 da903x_set_bits EXPORT_SYMBOL_GPL vmlinux 0x3f84bcd7 dax_alive -EXPORT_SYMBOL_GPL vmlinux 0x3f898df9 input_class EXPORT_SYMBOL_GPL vmlinux 0x3f8ab72e devlink_fmsg_bool_put -EXPORT_SYMBOL_GPL vmlinux 0x3f9a2d0c usb_ifnum_to_if -EXPORT_SYMBOL_GPL vmlinux 0x3fa6353a msg_zerocopy_callback -EXPORT_SYMBOL_GPL vmlinux 0x3facf463 ata_sas_tport_delete -EXPORT_SYMBOL_GPL vmlinux 0x3fb704ad devm_platform_ioremap_resource_byname -EXPORT_SYMBOL_GPL vmlinux 0x3fb770f4 edac_pci_alloc_ctl_info -EXPORT_SYMBOL_GPL vmlinux 0x3fc9db7c wm831x_device_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x3fe2da26 fixed_phy_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3fb34f95 bio_alloc_kiocb +EXPORT_SYMBOL_GPL vmlinux 0x3fba26fe pcibios_scan_phb +EXPORT_SYMBOL_GPL vmlinux 0x3fbe00de fscrypt_set_bio_crypt_ctx +EXPORT_SYMBOL_GPL vmlinux 0x3fc044b9 kobject_get_path +EXPORT_SYMBOL_GPL vmlinux 0x3fce8f69 sfp_register_socket +EXPORT_SYMBOL_GPL vmlinux 0x3fcfeeda __devm_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x3fddd452 irq_domain_push_irq EXPORT_SYMBOL_GPL vmlinux 0x3fe35aea irq_bypass_unregister_consumer EXPORT_SYMBOL_GPL vmlinux 0x3fe6c346 devlink_fmsg_binary_pair_put EXPORT_SYMBOL_GPL vmlinux 0x3ff82085 public_key_signature_free +EXPORT_SYMBOL_GPL vmlinux 0x3ffc43bb devm_of_icc_get EXPORT_SYMBOL_GPL vmlinux 0x3ffdacf3 timerqueue_iterate_next -EXPORT_SYMBOL_GPL vmlinux 0x40136d11 usb_get_intf -EXPORT_SYMBOL_GPL vmlinux 0x402b502e split_page -EXPORT_SYMBOL_GPL vmlinux 0x402e84c2 dm_bio_get_target_bio_nr -EXPORT_SYMBOL_GPL vmlinux 0x402f78b3 i2c_add_numbered_adapter -EXPORT_SYMBOL_GPL vmlinux 0x402ff977 bpf_map_inc_with_uref +EXPORT_SYMBOL_GPL vmlinux 0x402ed2de devm_usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0x40317e1a ip6_append_data +EXPORT_SYMBOL_GPL vmlinux 0x40342c62 msi_desc_to_pci_sysdata EXPORT_SYMBOL_GPL vmlinux 0x4036f99e synchronize_srcu_expedited -EXPORT_SYMBOL_GPL vmlinux 0x40399021 __rt_mutex_init EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one -EXPORT_SYMBOL_GPL vmlinux 0x404422a9 __rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0x40430097 iommu_sva_get_pasid EXPORT_SYMBOL_GPL vmlinux 0x4044ca16 pkcs7_verify -EXPORT_SYMBOL_GPL vmlinux 0x404e3074 ata_scsi_queuecmd -EXPORT_SYMBOL_GPL vmlinux 0x405504c9 fat_sync_inode -EXPORT_SYMBOL_GPL vmlinux 0x40635608 clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0x4059c96a sbitmap_queue_show 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 0x407489fb iomap_swapfile_activate -EXPORT_SYMBOL_GPL vmlinux 0x4091ae61 platform_get_irq_byname +EXPORT_SYMBOL_GPL vmlinux 0x4079997c shake_page EXPORT_SYMBOL_GPL vmlinux 0x4099f919 tun_ptr_free +EXPORT_SYMBOL_GPL vmlinux 0x409c3eda of_msi_configure EXPORT_SYMBOL_GPL vmlinux 0x40b5be99 xive_native_populate_irq_data -EXPORT_SYMBOL_GPL vmlinux 0x40c2e63e gpiochip_irq_domain_activate +EXPORT_SYMBOL_GPL vmlinux 0x40be3b56 serial8250_do_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x40bee646 mpc8xxx_spi_tx_buf_u16 +EXPORT_SYMBOL_GPL vmlinux 0x40c36d2c i2c_adapter_type +EXPORT_SYMBOL_GPL vmlinux 0x40d0e638 hwmon_notify_event EXPORT_SYMBOL_GPL vmlinux 0x40f0683e reset_control_put +EXPORT_SYMBOL_GPL vmlinux 0x40f2ec99 rtnl_af_register EXPORT_SYMBOL_GPL vmlinux 0x40f48f16 pkcs7_validate_trust 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 0x41091cac regulator_put -EXPORT_SYMBOL_GPL vmlinux 0x4115c1d6 wm8350_block_write +EXPORT_SYMBOL_GPL vmlinux 0x411f9b1f skb_mpls_dec_ttl +EXPORT_SYMBOL_GPL vmlinux 0x4123e66f kernel_kobj EXPORT_SYMBOL_GPL vmlinux 0x412bc681 ring_buffer_empty_cpu -EXPORT_SYMBOL_GPL vmlinux 0x413bd335 of_pci_address_to_resource -EXPORT_SYMBOL_GPL vmlinux 0x4146b6a4 nfnl_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0x4146daf2 pci_check_and_mask_intx +EXPORT_SYMBOL_GPL vmlinux 0x41472fa2 sdio_f0_readb EXPORT_SYMBOL_GPL vmlinux 0x414d119a videomode_from_timings EXPORT_SYMBOL_GPL vmlinux 0x414d7aae xive_native_get_queue_state -EXPORT_SYMBOL_GPL vmlinux 0x416c6af2 crypto_skcipher_encrypt -EXPORT_SYMBOL_GPL vmlinux 0x417613d7 clk_hw_unregister_divider +EXPORT_SYMBOL_GPL vmlinux 0x41571449 of_phy_put +EXPORT_SYMBOL_GPL vmlinux 0x4159a4e4 spi_mem_exec_op +EXPORT_SYMBOL_GPL vmlinux 0x4161241d blkcg_print_blkgs +EXPORT_SYMBOL_GPL vmlinux 0x4161e7bf i2c_recover_bus EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval EXPORT_SYMBOL_GPL vmlinux 0x418873cc irq_bypass_register_producer -EXPORT_SYMBOL_GPL vmlinux 0x418da14f do_splice_from +EXPORT_SYMBOL_GPL vmlinux 0x418b7635 __devm_regmap_init +EXPORT_SYMBOL_GPL vmlinux 0x418fa21c dev_pm_opp_get_of_node EXPORT_SYMBOL_GPL vmlinux 0x419e7efd sfp_module_stop -EXPORT_SYMBOL_GPL vmlinux 0x41a77a3f ohci_resume -EXPORT_SYMBOL_GPL vmlinux 0x41ab6f00 devfreq_event_disable_edev -EXPORT_SYMBOL_GPL vmlinux 0x41b8a8f9 devres_for_each_res +EXPORT_SYMBOL_GPL vmlinux 0x41ae8eec genphy_c45_read_pma EXPORT_SYMBOL_GPL vmlinux 0x41b9a6e6 bsg_unregister_queue -EXPORT_SYMBOL_GPL vmlinux 0x41ba5046 dma_buf_unpin -EXPORT_SYMBOL_GPL vmlinux 0x41baf60c devm_led_classdev_register_ext -EXPORT_SYMBOL_GPL vmlinux 0x41e2828e tps65912_device_exit +EXPORT_SYMBOL_GPL vmlinux 0x41ba0747 gpiod_set_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x41cfec9c ata_scsi_dma_need_drain +EXPORT_SYMBOL_GPL vmlinux 0x41d8aa64 devm_platform_get_irqs_affinity +EXPORT_SYMBOL_GPL vmlinux 0x41db05eb devm_regulator_register +EXPORT_SYMBOL_GPL vmlinux 0x41e01bc4 pci_find_host_bridge +EXPORT_SYMBOL_GPL vmlinux 0x41e5363b fib_alias_hw_flags_set EXPORT_SYMBOL_GPL vmlinux 0x41ed3cec eventfd_ctx_remove_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0x41fe9228 spi_mem_default_supports_op +EXPORT_SYMBOL_GPL vmlinux 0x41ffaa28 sdio_writew EXPORT_SYMBOL_GPL vmlinux 0x42041512 i2c_get_dma_safe_msg_buf +EXPORT_SYMBOL_GPL vmlinux 0x420e61d2 sata_port_ops EXPORT_SYMBOL_GPL vmlinux 0x420f3d01 nvmem_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x421ab6b7 sata_async_notification -EXPORT_SYMBOL_GPL vmlinux 0x4229d39d gpiod_put -EXPORT_SYMBOL_GPL vmlinux 0x422aba65 __fscrypt_prepare_lookup +EXPORT_SYMBOL_GPL vmlinux 0x421250b2 wm8350_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x421a9834 tpm_get_random EXPORT_SYMBOL_GPL vmlinux 0x42378add ftrace_set_filter_ip -EXPORT_SYMBOL_GPL vmlinux 0x424969df pm_clk_remove +EXPORT_SYMBOL_GPL vmlinux 0x423b18e7 __clocksource_update_freq_scale +EXPORT_SYMBOL_GPL vmlinux 0x424cbc39 irq_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x4256ea0e init_phb_dynamic +EXPORT_SYMBOL_GPL vmlinux 0x4257137f phy_start_machine EXPORT_SYMBOL_GPL vmlinux 0x42635d55 pm_suspend_global_flags -EXPORT_SYMBOL_GPL vmlinux 0x4266e744 devm_gpiod_put_array -EXPORT_SYMBOL_GPL vmlinux 0x4271d654 driver_find -EXPORT_SYMBOL_GPL vmlinux 0x42723e6a __vfs_removexattr_noperm +EXPORT_SYMBOL_GPL vmlinux 0x4269cbb2 usb_get_descriptor EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active -EXPORT_SYMBOL_GPL vmlinux 0x4286ad42 dma_get_any_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0x429d8bdc regulator_set_voltage_rdev -EXPORT_SYMBOL_GPL vmlinux 0x42c8e419 regulator_set_bypass_regmap -EXPORT_SYMBOL_GPL vmlinux 0x42ca0e05 gpiod_set_raw_value -EXPORT_SYMBOL_GPL vmlinux 0x42ccde25 strp_check_rcv -EXPORT_SYMBOL_GPL vmlinux 0x42d59abe xdp_master_redirect +EXPORT_SYMBOL_GPL vmlinux 0x42c46dbd xhci_ext_cap_init +EXPORT_SYMBOL_GPL vmlinux 0x42c969c2 perf_aux_output_begin +EXPORT_SYMBOL_GPL vmlinux 0x42cd6f97 gpiochip_line_is_open_drain +EXPORT_SYMBOL_GPL vmlinux 0x42cf5a80 icc_get_name +EXPORT_SYMBOL_GPL vmlinux 0x42e0b97b of_usb_get_dr_mode_by_phy +EXPORT_SYMBOL_GPL vmlinux 0x42e3ac9e do_unregister_con_driver EXPORT_SYMBOL_GPL vmlinux 0x42e9d0da ring_buffer_unlock_commit EXPORT_SYMBOL_GPL vmlinux 0x42ef0bc4 stop_machine +EXPORT_SYMBOL_GPL vmlinux 0x42f51b1e dma_buf_unmap_attachment EXPORT_SYMBOL_GPL vmlinux 0x42f728aa mctrl_gpio_get_outputs -EXPORT_SYMBOL_GPL vmlinux 0x43031bb7 udp_init_sock +EXPORT_SYMBOL_GPL vmlinux 0x43048faf seg6_do_srh_inline +EXPORT_SYMBOL_GPL vmlinux 0x4309bb3e usb_altnum_to_altsetting EXPORT_SYMBOL_GPL vmlinux 0x430d88ec __traceiter_arm_event EXPORT_SYMBOL_GPL vmlinux 0x430fdf91 alarm_restart -EXPORT_SYMBOL_GPL vmlinux 0x431d0826 phy_power_on -EXPORT_SYMBOL_GPL vmlinux 0x431fb67a __clocksource_register_scale +EXPORT_SYMBOL_GPL vmlinux 0x43125ed8 skcipher_walk_async +EXPORT_SYMBOL_GPL vmlinux 0x431f1380 flush_vsx_to_thread EXPORT_SYMBOL_GPL vmlinux 0x432702e6 mm_iommu_mapped_inc -EXPORT_SYMBOL_GPL vmlinux 0x4329f22f extcon_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4334d3e0 bus_for_each_drv -EXPORT_SYMBOL_GPL vmlinux 0x43415727 vfs_listxattr -EXPORT_SYMBOL_GPL vmlinux 0x435302e0 iommu_uapi_sva_unbind_gpasid -EXPORT_SYMBOL_GPL vmlinux 0x435dcbf9 bpf_offload_dev_match -EXPORT_SYMBOL_GPL vmlinux 0x436d528e regmap_noinc_write +EXPORT_SYMBOL_GPL vmlinux 0x432b4b02 __pci_epc_create +EXPORT_SYMBOL_GPL vmlinux 0x432c2646 check_move_unevictable_pages +EXPORT_SYMBOL_GPL vmlinux 0x432fc5c2 fsnotify_alloc_user_group +EXPORT_SYMBOL_GPL vmlinux 0x4341ab7b ata_sff_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x43643a29 devlink_traps_unregister EXPORT_SYMBOL_GPL vmlinux 0x436d817f mpi_clear_bit -EXPORT_SYMBOL_GPL vmlinux 0x436f306d of_pci_parse_bus_range EXPORT_SYMBOL_GPL vmlinux 0x437eb1df ipv6_mod_enabled -EXPORT_SYMBOL_GPL vmlinux 0x4383d903 spi_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0x43a94675 fat_flush_inodes +EXPORT_SYMBOL_GPL vmlinux 0x4385ce59 sk_msg_alloc +EXPORT_SYMBOL_GPL vmlinux 0x43924cbc regmap_field_read +EXPORT_SYMBOL_GPL vmlinux 0x43945eec class_dev_iter_exit EXPORT_SYMBOL_GPL vmlinux 0x43aa319e lease_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x43c3e8d3 blk_rq_unprep_clone -EXPORT_SYMBOL_GPL vmlinux 0x43cc2d95 noop_backing_dev_info -EXPORT_SYMBOL_GPL vmlinux 0x43d96733 led_set_brightness_sync -EXPORT_SYMBOL_GPL vmlinux 0x43dd9d02 pci_remove_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x43ba9294 linear_hugepage_index +EXPORT_SYMBOL_GPL vmlinux 0x43bfa0c6 fscrypt_d_revalidate +EXPORT_SYMBOL_GPL vmlinux 0x43ca9a41 tpm_is_tpm2 +EXPORT_SYMBOL_GPL vmlinux 0x43ce2322 gpiochip_populate_parent_fwspec_twocell +EXPORT_SYMBOL_GPL vmlinux 0x43e89365 nvdimm_blk_region_create +EXPORT_SYMBOL_GPL vmlinux 0x43f40503 ata_link_offline EXPORT_SYMBOL_GPL vmlinux 0x43f56e82 ata_xfer_mode2shift EXPORT_SYMBOL_GPL vmlinux 0x43f81957 clk_round_rate EXPORT_SYMBOL_GPL vmlinux 0x43f92edd wait_for_initramfs +EXPORT_SYMBOL_GPL vmlinux 0x43fdc59f irq_create_mapping_affinity EXPORT_SYMBOL_GPL vmlinux 0x4401e6c2 mpi_cmpabs +EXPORT_SYMBOL_GPL vmlinux 0x44032ac7 dev_pm_opp_put_supported_hw +EXPORT_SYMBOL_GPL vmlinux 0x440873b2 dma_resv_test_signaled +EXPORT_SYMBOL_GPL vmlinux 0x441cfffe lwtunnel_state_alloc +EXPORT_SYMBOL_GPL vmlinux 0x442c06da devm_pci_epc_destroy EXPORT_SYMBOL_GPL vmlinux 0x442deaa9 poll_state_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x442fa619 perf_pmu_migrate_context +EXPORT_SYMBOL_GPL vmlinux 0x4432fb08 sk_set_memalloc EXPORT_SYMBOL_GPL vmlinux 0x4439bcd2 __SCK__tp_func_neigh_event_send_dead -EXPORT_SYMBOL_GPL vmlinux 0x444e7191 of_clk_src_onecell_get +EXPORT_SYMBOL_GPL vmlinux 0x44469b8d devm_regmap_add_irq_chip_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x444e69a8 led_trigger_remove EXPORT_SYMBOL_GPL vmlinux 0x445a09c0 nvmem_device_cell_write -EXPORT_SYMBOL_GPL vmlinux 0x4466a883 fuse_do_open -EXPORT_SYMBOL_GPL vmlinux 0x446a665c unregister_wide_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x447ef994 dev_pm_opp_add +EXPORT_SYMBOL_GPL vmlinux 0x4460b233 mctrl_gpio_init EXPORT_SYMBOL_GPL vmlinux 0x447f237f pnv_ocxl_unmap_xsl_regs EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe -EXPORT_SYMBOL_GPL vmlinux 0x448f2603 __traceiter_br_fdb_update +EXPORT_SYMBOL_GPL vmlinux 0x4484be23 dequeue_signal +EXPORT_SYMBOL_GPL vmlinux 0x448a9a4e hrtimer_sleeper_start_expires +EXPORT_SYMBOL_GPL vmlinux 0x4491db28 ata_std_sched_eh EXPORT_SYMBOL_GPL vmlinux 0x449fa45d btree_remove -EXPORT_SYMBOL_GPL vmlinux 0x44ab81bb regulator_set_mode -EXPORT_SYMBOL_GPL vmlinux 0x44acb04b dev_pm_opp_sync_regulators -EXPORT_SYMBOL_GPL vmlinux 0x44aee336 iomap_dio_rw +EXPORT_SYMBOL_GPL vmlinux 0x44a608df acct_bioset_exit +EXPORT_SYMBOL_GPL vmlinux 0x44acc071 rio_request_dma EXPORT_SYMBOL_GPL vmlinux 0x44b09de0 iommu_tce_check_ioba -EXPORT_SYMBOL_GPL vmlinux 0x44b1154c __devm_rtc_register_device +EXPORT_SYMBOL_GPL vmlinux 0x44b1a3ee devm_led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x44b4983d spi_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0x44b5c580 pci_epf_alloc_space +EXPORT_SYMBOL_GPL vmlinux 0x44b61285 __devm_of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0x44ba68b4 edac_mc_handle_error EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x44bc9028 governor_sysfs_ops EXPORT_SYMBOL_GPL vmlinux 0x44cf8cf0 blk_zone_cond_str -EXPORT_SYMBOL_GPL vmlinux 0x44dab86c usb_hcd_pci_probe -EXPORT_SYMBOL_GPL vmlinux 0x4505fc64 crypto_unregister_scomp +EXPORT_SYMBOL_GPL vmlinux 0x44ebb086 relay_late_setup_files EXPORT_SYMBOL_GPL vmlinux 0x4507f4a8 cpuhp_tasks_frozen -EXPORT_SYMBOL_GPL vmlinux 0x4509021f scsi_flush_work +EXPORT_SYMBOL_GPL vmlinux 0x45137837 devm_irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x45193d96 handle_bad_irq EXPORT_SYMBOL_GPL vmlinux 0x452e49ab sbitmap_queue_init_node EXPORT_SYMBOL_GPL vmlinux 0x4531624f usb_decode_ctrl EXPORT_SYMBOL_GPL vmlinux 0x4531ab62 copy_from_kernel_nofault -EXPORT_SYMBOL_GPL vmlinux 0x454e67d1 __traceiter_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x453dae5b iommu_dev_feature_enabled +EXPORT_SYMBOL_GPL vmlinux 0x453e486a regulator_get_current_limit_regmap +EXPORT_SYMBOL_GPL vmlinux 0x4541ce1b debugfs_create_u32 EXPORT_SYMBOL_GPL vmlinux 0x45558f56 clk_unregister_fixed_factor EXPORT_SYMBOL_GPL vmlinux 0x45597170 inet_peer_base_init -EXPORT_SYMBOL_GPL vmlinux 0x4564f47f add_disk_randomness -EXPORT_SYMBOL_GPL vmlinux 0x4565b91e bus_set_iommu -EXPORT_SYMBOL_GPL vmlinux 0x456ea1af tcp_unregister_ulp +EXPORT_SYMBOL_GPL vmlinux 0x456ab8cf crypto_larval_kill EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list -EXPORT_SYMBOL_GPL vmlinux 0x458094a4 fwnode_property_read_u16_array -EXPORT_SYMBOL_GPL vmlinux 0x4599462f of_clk_hw_onecell_get -EXPORT_SYMBOL_GPL vmlinux 0x45a39f59 is_skb_forwardable -EXPORT_SYMBOL_GPL vmlinux 0x45ba896a nfs_ssc_client_tbl -EXPORT_SYMBOL_GPL vmlinux 0x45c37112 usb_put_dev -EXPORT_SYMBOL_GPL vmlinux 0x45c4af75 da9055_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0x45d2f7ab call_switchdev_notifiers -EXPORT_SYMBOL_GPL vmlinux 0x45e92582 device_node_to_regmap -EXPORT_SYMBOL_GPL vmlinux 0x45f0df9d akcipher_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x45f13084 sata_scr_valid -EXPORT_SYMBOL_GPL vmlinux 0x45f1f2e7 usb_hcd_link_urb_to_ep +EXPORT_SYMBOL_GPL vmlinux 0x457abe98 pci_traverse_device_nodes +EXPORT_SYMBOL_GPL vmlinux 0x457b115f fs_kobj +EXPORT_SYMBOL_GPL vmlinux 0x4595d3b3 devlink_health_reporter_create +EXPORT_SYMBOL_GPL vmlinux 0x4599f3a0 da9052_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x45be9040 irq_domain_associate +EXPORT_SYMBOL_GPL vmlinux 0x45c2551e uart_get_rs485_mode +EXPORT_SYMBOL_GPL vmlinux 0x45ee0d46 dma_buf_end_cpu_access EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue -EXPORT_SYMBOL_GPL vmlinux 0x4601a03b ata_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x460f97e0 devm_clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0x4611c44e dma_resv_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x461bdee6 devm_extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0x461c647a perf_event_create_kernel_counter EXPORT_SYMBOL_GPL vmlinux 0x46269814 __tracepoint_neigh_event_send_dead -EXPORT_SYMBOL_GPL vmlinux 0x463407d9 trace_define_field -EXPORT_SYMBOL_GPL vmlinux 0x464b879e find_asymmetric_key -EXPORT_SYMBOL_GPL vmlinux 0x465595e4 power_supply_unregister -EXPORT_SYMBOL_GPL vmlinux 0x465ce6d7 ethnl_cable_test_pulse +EXPORT_SYMBOL_GPL vmlinux 0x462ba79b key_set_timeout +EXPORT_SYMBOL_GPL vmlinux 0x46301ce2 debugfs_create_bool +EXPORT_SYMBOL_GPL vmlinux 0x46370cf3 platform_get_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0x463e2db8 nfs42_ssc_register +EXPORT_SYMBOL_GPL vmlinux 0x4640e07e nvmem_cell_read_u64 EXPORT_SYMBOL_GPL vmlinux 0x467eb7de vas_unregister_api_pseries -EXPORT_SYMBOL_GPL vmlinux 0x46844686 platform_device_register EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x468914db regmap_field_update_bits_base EXPORT_SYMBOL_GPL vmlinux 0x4692f673 copy_mc_generic -EXPORT_SYMBOL_GPL vmlinux 0x46a66185 devlink_params_publish -EXPORT_SYMBOL_GPL vmlinux 0x46b8ad4f wm8350_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x46b9c640 ata_sas_sync_probe -EXPORT_SYMBOL_GPL vmlinux 0x46cb2a9c screen_glyph_unicode -EXPORT_SYMBOL_GPL vmlinux 0x46d7ce13 crypto_enqueue_request_head +EXPORT_SYMBOL_GPL vmlinux 0x46d5fbb1 dma_get_required_mask EXPORT_SYMBOL_GPL vmlinux 0x46e465de klist_init +EXPORT_SYMBOL_GPL vmlinux 0x46ed49fd skb_segment +EXPORT_SYMBOL_GPL vmlinux 0x46f045d8 vp_modern_get_status +EXPORT_SYMBOL_GPL vmlinux 0x46f250b7 fscrypt_ioctl_add_key EXPORT_SYMBOL_GPL vmlinux 0x46f42be0 devlink_fmsg_u8_put +EXPORT_SYMBOL_GPL vmlinux 0x46fd8ef5 fuse_dev_operations EXPORT_SYMBOL_GPL vmlinux 0x4705c76c trace_seq_to_user -EXPORT_SYMBOL_GPL vmlinux 0x4707e81a regulator_map_voltage_ascend -EXPORT_SYMBOL_GPL vmlinux 0x4708008d crypto_destroy_tfm -EXPORT_SYMBOL_GPL vmlinux 0x47094995 inet_hash -EXPORT_SYMBOL_GPL vmlinux 0x47149b69 mmc_pwrseq_unregister -EXPORT_SYMBOL_GPL vmlinux 0x471addbc dw_pcie_ep_linkup +EXPORT_SYMBOL_GPL vmlinux 0x4707a88b scsi_build_sense +EXPORT_SYMBOL_GPL vmlinux 0x471dfd1d tpm_pm_resume EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request -EXPORT_SYMBOL_GPL vmlinux 0x4725a245 udp4_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x47288a02 auxiliary_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4744b4e9 vfio_virqfd_disable -EXPORT_SYMBOL_GPL vmlinux 0x474e93e6 crypto_stats_get -EXPORT_SYMBOL_GPL vmlinux 0x4752a126 of_clk_del_provider -EXPORT_SYMBOL_GPL vmlinux 0x4752bece __mmc_send_status +EXPORT_SYMBOL_GPL vmlinux 0x472bb606 dev_pm_opp_of_get_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0x473b2085 irq_to_desc +EXPORT_SYMBOL_GPL vmlinux 0x474404b5 relay_buf_full +EXPORT_SYMBOL_GPL vmlinux 0x4754686b tcp_register_ulp EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier -EXPORT_SYMBOL_GPL vmlinux 0x47751a30 usb_lock_device_for_reset -EXPORT_SYMBOL_GPL vmlinux 0x4776a908 clk_hw_is_prepared +EXPORT_SYMBOL_GPL vmlinux 0x47718894 usb_set_device_state +EXPORT_SYMBOL_GPL vmlinux 0x4775d1fa pci_find_next_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0x477a4071 regcache_sync_region +EXPORT_SYMBOL_GPL vmlinux 0x4785c1f9 strp_done EXPORT_SYMBOL_GPL vmlinux 0x47884890 system_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0x478cb978 __clk_mux_determine_rate EXPORT_SYMBOL_GPL vmlinux 0x478debf5 phy_10gbit_fec_features EXPORT_SYMBOL_GPL vmlinux 0x478e81f8 tcp_orphan_count EXPORT_SYMBOL_GPL vmlinux 0x479f7d4b clk_bulk_disable EXPORT_SYMBOL_GPL vmlinux 0x47aad3b9 have_governor_per_policy +EXPORT_SYMBOL_GPL vmlinux 0x47af410f serial8250_rpm_put EXPORT_SYMBOL_GPL vmlinux 0x47b7a692 cpu_feature_keys -EXPORT_SYMBOL_GPL vmlinux 0x47bbca23 serdev_device_open -EXPORT_SYMBOL_GPL vmlinux 0x47d11afc rtc_class_open -EXPORT_SYMBOL_GPL vmlinux 0x47d8f909 proc_create_net_single_write EXPORT_SYMBOL_GPL vmlinux 0x47de0dc7 clk_unregister_mux -EXPORT_SYMBOL_GPL vmlinux 0x47e8c5b5 cpufreq_dbs_governor_exit -EXPORT_SYMBOL_GPL vmlinux 0x47eed14c sdio_readl +EXPORT_SYMBOL_GPL vmlinux 0x47e1b263 regulator_get_linear_step EXPORT_SYMBOL_GPL vmlinux 0x480305ca kmsg_dump_rewind -EXPORT_SYMBOL_GPL vmlinux 0x48036a81 xdp_do_redirect -EXPORT_SYMBOL_GPL vmlinux 0x48178653 tps6586x_writes +EXPORT_SYMBOL_GPL vmlinux 0x481e8e55 lp8788_update_bits EXPORT_SYMBOL_GPL vmlinux 0x481f9b7d mpi_mulm +EXPORT_SYMBOL_GPL vmlinux 0x48201d05 __traceiter_sched_cpu_capacity_tp +EXPORT_SYMBOL_GPL vmlinux 0x48249326 clk_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x48249d4d sk_msg_trim EXPORT_SYMBOL_GPL vmlinux 0x482c30de sbitmap_prepare_to_wait -EXPORT_SYMBOL_GPL vmlinux 0x483ca4a3 blk_clear_pm_only -EXPORT_SYMBOL_GPL vmlinux 0x4850a7ed devfreq_event_remove_edev -EXPORT_SYMBOL_GPL vmlinux 0x485cd764 fscrypt_ioctl_get_nonce -EXPORT_SYMBOL_GPL vmlinux 0x487071ea __phy_modify +EXPORT_SYMBOL_GPL vmlinux 0x4845b80a cdrom_multisession +EXPORT_SYMBOL_GPL vmlinux 0x4875febd regulator_set_active_discharge_regmap +EXPORT_SYMBOL_GPL vmlinux 0x48797d79 ip6_dst_lookup EXPORT_SYMBOL_GPL vmlinux 0x487ac245 usb_poison_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x488c4e50 pnv_ocxl_get_xsl_irq -EXPORT_SYMBOL_GPL vmlinux 0x489f3b1e hwmon_device_register_with_info +EXPORT_SYMBOL_GPL vmlinux 0x489290d7 device_initialize +EXPORT_SYMBOL_GPL vmlinux 0x48a373f7 gpiochip_line_is_open_source EXPORT_SYMBOL_GPL vmlinux 0x48a3a923 pkcs7_get_content_data EXPORT_SYMBOL_GPL vmlinux 0x48a3d20b mctrl_gpio_get -EXPORT_SYMBOL_GPL vmlinux 0x48aa072a dev_pm_opp_remove_all_dynamic -EXPORT_SYMBOL_GPL vmlinux 0x48c0c8f9 __platform_driver_probe +EXPORT_SYMBOL_GPL vmlinux 0x48b721c7 pci_scan_child_bus +EXPORT_SYMBOL_GPL vmlinux 0x48b9c515 sata_link_resume +EXPORT_SYMBOL_GPL vmlinux 0x48c1f865 dev_pm_domain_start EXPORT_SYMBOL_GPL vmlinux 0x48c32847 __SCK__tp_func_sched_util_est_se_tp -EXPORT_SYMBOL_GPL vmlinux 0x48d6c50b l3mdev_ifindex_lookup_by_table_id -EXPORT_SYMBOL_GPL vmlinux 0x48dd2e2e cgroup_path_ns -EXPORT_SYMBOL_GPL vmlinux 0x48e97bff edac_mc_alloc -EXPORT_SYMBOL_GPL vmlinux 0x48fddb1d icc_enable -EXPORT_SYMBOL_GPL vmlinux 0x492366b9 clk_hw_round_rate +EXPORT_SYMBOL_GPL vmlinux 0x48c60ad8 icc_link_destroy +EXPORT_SYMBOL_GPL vmlinux 0x48cec1fd phy_driver_is_genphy_10g +EXPORT_SYMBOL_GPL vmlinux 0x48dd229e pinmux_generic_get_function +EXPORT_SYMBOL_GPL vmlinux 0x48ddbdaf class_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x48f2dc88 md_kick_rdev_from_array +EXPORT_SYMBOL_GPL vmlinux 0x48f80e0f of_pci_parse_bus_range EXPORT_SYMBOL_GPL vmlinux 0x49242bc7 freezer_cgrp_subsys_on_dfl_key EXPORT_SYMBOL_GPL vmlinux 0x4934bdd0 crypto_check_attr_type +EXPORT_SYMBOL_GPL vmlinux 0x49380ee7 tty_port_register_device EXPORT_SYMBOL_GPL vmlinux 0x4939ebcd numa_map_to_online_node -EXPORT_SYMBOL_GPL vmlinux 0x494fc76b sk_set_memalloc -EXPORT_SYMBOL_GPL vmlinux 0x49553d86 tty_find_polling_driver -EXPORT_SYMBOL_GPL vmlinux 0x49559445 edac_get_sysfs_subsys -EXPORT_SYMBOL_GPL vmlinux 0x4957bb6b cpufreq_frequency_table_get_index EXPORT_SYMBOL_GPL vmlinux 0x49608959 migrate_disable -EXPORT_SYMBOL_GPL vmlinux 0x496a57ca blk_mq_unquiesce_queue -EXPORT_SYMBOL_GPL vmlinux 0x497073d2 usb_control_msg_recv -EXPORT_SYMBOL_GPL vmlinux 0x497c5d16 md_do_sync +EXPORT_SYMBOL_GPL vmlinux 0x4987317b root_device_unregister EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue +EXPORT_SYMBOL_GPL vmlinux 0x4990d3f6 mmc_sanitize +EXPORT_SYMBOL_GPL vmlinux 0x499bb7a7 of_clk_get_parent_count +EXPORT_SYMBOL_GPL vmlinux 0x499c338c device_get_named_child_node +EXPORT_SYMBOL_GPL vmlinux 0x499d1d03 blk_req_needs_zone_write_lock +EXPORT_SYMBOL_GPL vmlinux 0x49a94adf blkdev_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x49b1a3ad pm_genpd_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x49b783e8 devres_destroy +EXPORT_SYMBOL_GPL vmlinux 0x49b93d03 task_cls_state EXPORT_SYMBOL_GPL vmlinux 0x49cd25ed alloc_workqueue +EXPORT_SYMBOL_GPL vmlinux 0x49d5d095 mctrl_gpio_free +EXPORT_SYMBOL_GPL vmlinux 0x49d80a62 devlink_resource_register +EXPORT_SYMBOL_GPL vmlinux 0x49de5e82 fscrypt_prepare_symlink +EXPORT_SYMBOL_GPL vmlinux 0x49e057a8 device_show_ulong +EXPORT_SYMBOL_GPL vmlinux 0x49e27d93 crypto_unregister_acomp EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0x49ebf1ce phy_pm_runtime_forbid EXPORT_SYMBOL_GPL vmlinux 0x49f3b073 irq_get_percpu_devid_partition -EXPORT_SYMBOL_GPL vmlinux 0x49f94cad cpu_remove_dev_attr_group -EXPORT_SYMBOL_GPL vmlinux 0x49fca9cb pinctrl_add_gpio_ranges EXPORT_SYMBOL_GPL vmlinux 0x4a026413 mm_iommu_mapped_dec -EXPORT_SYMBOL_GPL vmlinux 0x4a15f8fb usb_intf_get_dma_device +EXPORT_SYMBOL_GPL vmlinux 0x4a126454 crypto_register_skciphers EXPORT_SYMBOL_GPL vmlinux 0x4a17ed66 sysrq_mask -EXPORT_SYMBOL_GPL vmlinux 0x4a26639e dev_attr_ncq_prio_enable -EXPORT_SYMBOL_GPL vmlinux 0x4a2dc0ba da9052_enable_irq -EXPORT_SYMBOL_GPL vmlinux 0x4a5f56f9 gpiochip_irq_unmap -EXPORT_SYMBOL_GPL vmlinux 0x4a64f817 ata_sff_drain_fifo +EXPORT_SYMBOL_GPL vmlinux 0x4a1ea3d1 tpm_get_timeouts +EXPORT_SYMBOL_GPL vmlinux 0x4a2127ed sdio_signal_irq +EXPORT_SYMBOL_GPL vmlinux 0x4a215652 __vfs_setxattr_locked +EXPORT_SYMBOL_GPL vmlinux 0x4a3a5ef0 mptcp_get_reset_option +EXPORT_SYMBOL_GPL vmlinux 0x4a3bc175 fat_fill_super +EXPORT_SYMBOL_GPL vmlinux 0x4a41251c regmap_multi_reg_write_bypassed +EXPORT_SYMBOL_GPL vmlinux 0x4a45e5bd clk_hw_unregister_mux +EXPORT_SYMBOL_GPL vmlinux 0x4a4fbce2 devm_clk_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4a53a999 devm_blk_ksm_init +EXPORT_SYMBOL_GPL vmlinux 0x4a5ab54d blk_rq_err_bytes +EXPORT_SYMBOL_GPL vmlinux 0x4a9e861a __mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x4a9ef7e6 rdev_set_badblocks EXPORT_SYMBOL_GPL vmlinux 0x4a9f047a tm_enable -EXPORT_SYMBOL_GPL vmlinux 0x4aa40e5e of_device_modalias -EXPORT_SYMBOL_GPL vmlinux 0x4aa999b4 page_cache_sync_ra EXPORT_SYMBOL_GPL vmlinux 0x4aaa6cb7 __xas_prev -EXPORT_SYMBOL_GPL vmlinux 0x4ab890d4 unregister_asymmetric_key_parser -EXPORT_SYMBOL_GPL vmlinux 0x4ac4e3a1 __traceiter_neigh_timer_handler -EXPORT_SYMBOL_GPL vmlinux 0x4ac54f06 of_platform_populate -EXPORT_SYMBOL_GPL vmlinux 0x4adabf9d usb_hcd_unmap_urb_setup_for_dma -EXPORT_SYMBOL_GPL vmlinux 0x4ae05b36 tpm_try_get_ops -EXPORT_SYMBOL_GPL vmlinux 0x4afd8ae2 class_interface_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4b14b4e1 vfio_external_group_match_file -EXPORT_SYMBOL_GPL vmlinux 0x4b250792 rio_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x4b2a7004 to_nvdimm_bus -EXPORT_SYMBOL_GPL vmlinux 0x4b308131 dma_get_required_mask -EXPORT_SYMBOL_GPL vmlinux 0x4b369c83 sdev_evt_send_simple -EXPORT_SYMBOL_GPL vmlinux 0x4b3a8316 of_genpd_parse_idle_states -EXPORT_SYMBOL_GPL vmlinux 0x4b4babc7 vfio_iommu_group_put -EXPORT_SYMBOL_GPL vmlinux 0x4b4ecc92 copro_flush_all_slbs +EXPORT_SYMBOL_GPL vmlinux 0x4ab27403 __bio_try_merge_page +EXPORT_SYMBOL_GPL vmlinux 0x4abf3a04 devlink_param_publish +EXPORT_SYMBOL_GPL vmlinux 0x4ad6304c dev_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x4af96ba9 nd_region_dev +EXPORT_SYMBOL_GPL vmlinux 0x4b168168 dev_attr_ncq_prio_enable +EXPORT_SYMBOL_GPL vmlinux 0x4b26d768 device_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0x4b29a984 serial8250_do_set_mctrl EXPORT_SYMBOL_GPL vmlinux 0x4b51f74c ata_xfer_mode2mask +EXPORT_SYMBOL_GPL vmlinux 0x4b605ab0 device_create_file EXPORT_SYMBOL_GPL vmlinux 0x4b6474e2 vas_init_tx_win_attr +EXPORT_SYMBOL_GPL vmlinux 0x4b6f4261 xfrm_state_afinfo_get_rcu +EXPORT_SYMBOL_GPL vmlinux 0x4b7024aa handle_irq_desc EXPORT_SYMBOL_GPL vmlinux 0x4b72009e dynamic_debug_exec_queries -EXPORT_SYMBOL_GPL vmlinux 0x4b869293 devm_serdev_device_open -EXPORT_SYMBOL_GPL vmlinux 0x4b8cb27f xfrm_audit_state_notfound -EXPORT_SYMBOL_GPL vmlinux 0x4baaa3de devfreq_event_get_edev_count -EXPORT_SYMBOL_GPL vmlinux 0x4bacce79 crypto_unregister_acomps -EXPORT_SYMBOL_GPL vmlinux 0x4bbe6ede regmap_field_read -EXPORT_SYMBOL_GPL vmlinux 0x4bbeca4e devm_kmemdup +EXPORT_SYMBOL_GPL vmlinux 0x4b748703 pci_epc_destroy +EXPORT_SYMBOL_GPL vmlinux 0x4b7e137f hwspin_lock_request +EXPORT_SYMBOL_GPL vmlinux 0x4b9d0b9d security_file_permission +EXPORT_SYMBOL_GPL vmlinux 0x4b9dc959 dev_set_name +EXPORT_SYMBOL_GPL vmlinux 0x4baa7257 kthread_flush_worker +EXPORT_SYMBOL_GPL vmlinux 0x4badaaf1 mptcp_pm_get_add_addr_accept_max +EXPORT_SYMBOL_GPL vmlinux 0x4bb41232 sysfs_groups_change_owner EXPORT_SYMBOL_GPL vmlinux 0x4bd6f08b misc_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x4bdd1db3 scsi_check_sense -EXPORT_SYMBOL_GPL vmlinux 0x4bea2236 sched_show_task -EXPORT_SYMBOL_GPL vmlinux 0x4becef8a bpf_prog_free EXPORT_SYMBOL_GPL vmlinux 0x4bef0884 pgtable_cache_add -EXPORT_SYMBOL_GPL vmlinux 0x4c069e32 __devm_reset_control_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0x4c292a23 ipv4_sk_redirect -EXPORT_SYMBOL_GPL vmlinux 0x4c451223 balloon_page_list_enqueue -EXPORT_SYMBOL_GPL vmlinux 0x4c4f4b03 pstore_register +EXPORT_SYMBOL_GPL vmlinux 0x4bffb0d9 tty_standard_install +EXPORT_SYMBOL_GPL vmlinux 0x4c030b2a __traceiter_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x4c081655 crypto_alg_mod_lookup +EXPORT_SYMBOL_GPL vmlinux 0x4c0a3432 ip6_datagram_send_ctl +EXPORT_SYMBOL_GPL vmlinux 0x4c0ea676 power_supply_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x4c1217df eeh_dev_check_failure +EXPORT_SYMBOL_GPL vmlinux 0x4c18c945 led_trigger_blink_oneshot +EXPORT_SYMBOL_GPL vmlinux 0x4c20526f devm_clk_hw_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x4c272fa9 extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4c2a0fa7 led_classdev_resume +EXPORT_SYMBOL_GPL vmlinux 0x4c393a62 clockevent_delta2ns +EXPORT_SYMBOL_GPL vmlinux 0x4c3c6dea serial8250_clear_and_reinit_fifos +EXPORT_SYMBOL_GPL vmlinux 0x4c449d0d gpiod_set_transitory EXPORT_SYMBOL_GPL vmlinux 0x4c549b36 __traceiter_xhci_dbg_quirks -EXPORT_SYMBOL_GPL vmlinux 0x4c582d00 of_usb_update_otg_caps -EXPORT_SYMBOL_GPL vmlinux 0x4c5f65db devm_pinctrl_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4c636a88 balloon_page_enqueue -EXPORT_SYMBOL_GPL vmlinux 0x4c649839 of_dma_controller_free -EXPORT_SYMBOL_GPL vmlinux 0x4c6853fc xdp_return_frame -EXPORT_SYMBOL_GPL vmlinux 0x4c77f1dd page_mkclean -EXPORT_SYMBOL_GPL vmlinux 0x4c8a0dd5 nexthop_for_each_fib6_nh -EXPORT_SYMBOL_GPL vmlinux 0x4c8cfd82 debugfs_create_u64 -EXPORT_SYMBOL_GPL vmlinux 0x4c8f1608 device_show_ulong -EXPORT_SYMBOL_GPL vmlinux 0x4c958cf2 add_page_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x4c5f37ee of_irq_get_byname +EXPORT_SYMBOL_GPL vmlinux 0x4c70ad83 iomap_seek_data +EXPORT_SYMBOL_GPL vmlinux 0x4c758594 platform_get_irq_byname +EXPORT_SYMBOL_GPL vmlinux 0x4c9a73e9 usb_hcd_check_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0x4ca68408 dax_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4ca722b2 virtqueue_enable_cb_prepare +EXPORT_SYMBOL_GPL vmlinux 0x4cac96ba stmpe_block_read EXPORT_SYMBOL_GPL vmlinux 0x4cb27100 ktime_get_snapshot -EXPORT_SYMBOL_GPL vmlinux 0x4cb46dfa irq_set_chained_handler_and_data EXPORT_SYMBOL_GPL vmlinux 0x4cb81fda __SCK__tp_func_wbc_writepage -EXPORT_SYMBOL_GPL vmlinux 0x4cc79359 subsys_dev_iter_next -EXPORT_SYMBOL_GPL vmlinux 0x4cea1a23 cpuidle_get_cpu_driver -EXPORT_SYMBOL_GPL vmlinux 0x4ceb1341 em_dev_unregister_perf_domain -EXPORT_SYMBOL_GPL vmlinux 0x4cf1501a tty_ldisc_receive_buf +EXPORT_SYMBOL_GPL vmlinux 0x4cc3ff70 usb_anchor_urb +EXPORT_SYMBOL_GPL vmlinux 0x4cef9e52 devlink_port_attrs_set +EXPORT_SYMBOL_GPL vmlinux 0x4cf17d4b spi_bus_unlock +EXPORT_SYMBOL_GPL vmlinux 0x4cf1f7de fat_dir_empty EXPORT_SYMBOL_GPL vmlinux 0x4cf699b8 vfio_pci_core_set_params -EXPORT_SYMBOL_GPL vmlinux 0x4cf94bf4 bio_associate_blkg -EXPORT_SYMBOL_GPL vmlinux 0x4cfabdfe da9052_disable_irq EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable -EXPORT_SYMBOL_GPL vmlinux 0x4d08a23c icc_provider_add -EXPORT_SYMBOL_GPL vmlinux 0x4d0e861d md_kick_rdev_from_array -EXPORT_SYMBOL_GPL vmlinux 0x4d1cc964 ping_err -EXPORT_SYMBOL_GPL vmlinux 0x4d327ed0 gov_attr_set_get +EXPORT_SYMBOL_GPL vmlinux 0x4d2faeec devm_hwspin_lock_request_specific +EXPORT_SYMBOL_GPL vmlinux 0x4d32ff60 device_find_child +EXPORT_SYMBOL_GPL vmlinux 0x4d34d4bc tcp_reno_undo_cwnd EXPORT_SYMBOL_GPL vmlinux 0x4d3a0696 __SCK__tp_func_rpm_idle -EXPORT_SYMBOL_GPL vmlinux 0x4d42ef7e rio_enable_rx_tx_port +EXPORT_SYMBOL_GPL vmlinux 0x4d4d20ba phy_get EXPORT_SYMBOL_GPL vmlinux 0x4d4d7b79 blk_mq_map_queues -EXPORT_SYMBOL_GPL vmlinux 0x4d566e74 of_platform_depopulate -EXPORT_SYMBOL_GPL vmlinux 0x4d5d98d6 user_destroy +EXPORT_SYMBOL_GPL vmlinux 0x4d56334c get_governor_parent_kobj +EXPORT_SYMBOL_GPL vmlinux 0x4d656731 spi_controller_dma_map_mem_op_data +EXPORT_SYMBOL_GPL vmlinux 0x4d6a5174 ping_unhash +EXPORT_SYMBOL_GPL vmlinux 0x4d6affd1 ata_sff_dma_pause EXPORT_SYMBOL_GPL vmlinux 0x4d6d0bbc iommu_group_ref_get EXPORT_SYMBOL_GPL vmlinux 0x4d7272e4 migrate_enable -EXPORT_SYMBOL_GPL vmlinux 0x4d78882b input_ff_erase -EXPORT_SYMBOL_GPL vmlinux 0x4d79f11f extcon_set_property_capability -EXPORT_SYMBOL_GPL vmlinux 0x4d906cb1 class_for_each_device -EXPORT_SYMBOL_GPL vmlinux 0x4d9c93f3 crypto_find_alg +EXPORT_SYMBOL_GPL vmlinux 0x4da16f11 fwnode_handle_get EXPORT_SYMBOL_GPL vmlinux 0x4da50ab8 sbitmap_get +EXPORT_SYMBOL_GPL vmlinux 0x4da9a9bd debugfs_create_u8 +EXPORT_SYMBOL_GPL vmlinux 0x4dab13a4 devm_memunmap_pages +EXPORT_SYMBOL_GPL vmlinux 0x4dab43c3 crypto_unregister_skciphers +EXPORT_SYMBOL_GPL vmlinux 0x4dac34ce skcipher_walk_complete EXPORT_SYMBOL_GPL vmlinux 0x4dae16e4 i2c_put_dma_safe_msg_buf +EXPORT_SYMBOL_GPL vmlinux 0x4dc05326 pm_runtime_set_autosuspend_delay EXPORT_SYMBOL_GPL vmlinux 0x4dc52c09 pnv_power9_force_smt4_catch -EXPORT_SYMBOL_GPL vmlinux 0x4dd1e3d6 key_type_encrypted -EXPORT_SYMBOL_GPL vmlinux 0x4dd55895 iommu_device_sysfs_remove EXPORT_SYMBOL_GPL vmlinux 0x4dd9d14d cn_netlink_send_mult +EXPORT_SYMBOL_GPL vmlinux 0x4de119c2 cpufreq_cooling_unregister EXPORT_SYMBOL_GPL vmlinux 0x4de17ab3 usb_state_string -EXPORT_SYMBOL_GPL vmlinux 0x4de6c931 __rtnl_link_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4de9b3c7 __hwspin_trylock -EXPORT_SYMBOL_GPL vmlinux 0x4dedc4a4 mddev_suspend -EXPORT_SYMBOL_GPL vmlinux 0x4df898bf __ip6_local_out EXPORT_SYMBOL_GPL vmlinux 0x4dff61e5 wwan_port_txoff -EXPORT_SYMBOL_GPL vmlinux 0x4e05540c fat_fill_super -EXPORT_SYMBOL_GPL vmlinux 0x4e0accc3 devlink_param_driverinit_value_set -EXPORT_SYMBOL_GPL vmlinux 0x4e13d354 usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0x4e0e9309 blk_freeze_queue_start +EXPORT_SYMBOL_GPL vmlinux 0x4e122b40 sysfs_add_device_to_node EXPORT_SYMBOL_GPL vmlinux 0x4e17c613 ata_sff_queue_delayed_work -EXPORT_SYMBOL_GPL vmlinux 0x4e2e8887 __nvdimm_create -EXPORT_SYMBOL_GPL vmlinux 0x4e321987 inet6_csk_xmit -EXPORT_SYMBOL_GPL vmlinux 0x4e38d7d8 set_capacity_and_notify -EXPORT_SYMBOL_GPL vmlinux 0x4e39412e ata_timing_compute -EXPORT_SYMBOL_GPL vmlinux 0x4e40018d sdio_f0_readb -EXPORT_SYMBOL_GPL vmlinux 0x4e42dc2f tty_port_register_device_attr_serdev +EXPORT_SYMBOL_GPL vmlinux 0x4e292304 serial8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x4e2b6fde dev_pm_qos_hide_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0x4e2b82f5 pci_epc_get +EXPORT_SYMBOL_GPL vmlinux 0x4e2dcccb ata_scsi_port_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x4e43835e pnv_pci_get_slot_id EXPORT_SYMBOL_GPL vmlinux 0x4e46aa18 rhashtable_walk_enter -EXPORT_SYMBOL_GPL vmlinux 0x4e4d5b32 regmap_can_raw_write -EXPORT_SYMBOL_GPL vmlinux 0x4e51026a dma_alloc_pages -EXPORT_SYMBOL_GPL vmlinux 0x4e652d74 __rio_local_write_config_16 -EXPORT_SYMBOL_GPL vmlinux 0x4e7106ec ethnl_cable_test_finished +EXPORT_SYMBOL_GPL vmlinux 0x4e51d7fc dm_get_md +EXPORT_SYMBOL_GPL vmlinux 0x4e5c1519 memunmap_pages +EXPORT_SYMBOL_GPL vmlinux 0x4e6458be md_stop +EXPORT_SYMBOL_GPL vmlinux 0x4e65fca6 tty_buffer_lock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x4e71faaf gpiod_toggle_active_low EXPORT_SYMBOL_GPL vmlinux 0x4e74878e __tracepoint_devlink_hwerr -EXPORT_SYMBOL_GPL vmlinux 0x4e77b07a serial8250_em485_stop_tx -EXPORT_SYMBOL_GPL vmlinux 0x4e7b9b9e pcibios_unmap_io_space -EXPORT_SYMBOL_GPL vmlinux 0x4e8bd881 irq_gc_mask_set_bit -EXPORT_SYMBOL_GPL vmlinux 0x4e8f6808 usb_hcd_pci_remove -EXPORT_SYMBOL_GPL vmlinux 0x4e987f26 usb_get_maximum_speed -EXPORT_SYMBOL_GPL vmlinux 0x4e9f3493 regulator_suspend_enable +EXPORT_SYMBOL_GPL vmlinux 0x4e8cf4a7 wbc_attach_and_unlock_inode +EXPORT_SYMBOL_GPL vmlinux 0x4e8fbb4c blk_mq_debugfs_rq_show +EXPORT_SYMBOL_GPL vmlinux 0x4e958f76 lwtunnel_encap_del_ops EXPORT_SYMBOL_GPL vmlinux 0x4eac5fc1 cpu_mitigations_auto_nosmt -EXPORT_SYMBOL_GPL vmlinux 0x4eaffbd9 dev_pm_domain_attach_by_name EXPORT_SYMBOL_GPL vmlinux 0x4eb39d4e __tracepoint_tcp_bad_csum -EXPORT_SYMBOL_GPL vmlinux 0x4eb728f4 of_clk_hw_register -EXPORT_SYMBOL_GPL vmlinux 0x4ec3681f blk_mark_disk_dead -EXPORT_SYMBOL_GPL vmlinux 0x4eca1e67 get_net_ns_by_pid -EXPORT_SYMBOL_GPL vmlinux 0x4ecb68ca usb_deregister -EXPORT_SYMBOL_GPL vmlinux 0x4ed3093a crypto_unregister_skciphers -EXPORT_SYMBOL_GPL vmlinux 0x4eef5df4 class_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x4eb6461d regulator_get_voltage_sel_pickable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x4eb7e5c9 of_find_spi_device_by_node +EXPORT_SYMBOL_GPL vmlinux 0x4ebe148d device_phy_find_device +EXPORT_SYMBOL_GPL vmlinux 0x4ebf6eb0 tps6586x_writes +EXPORT_SYMBOL_GPL vmlinux 0x4ec3f9af set_task_ioprio +EXPORT_SYMBOL_GPL vmlinux 0x4ec9ac3e xhci_add_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x4ed6fa54 __nf_ip6_route +EXPORT_SYMBOL_GPL vmlinux 0x4ed722eb rio_mport_send_doorbell +EXPORT_SYMBOL_GPL vmlinux 0x4edad1db security_kernel_post_read_file +EXPORT_SYMBOL_GPL vmlinux 0x4ee78c21 usb_hcd_is_primary_hcd +EXPORT_SYMBOL_GPL vmlinux 0x4ee9f70f cpuidle_register +EXPORT_SYMBOL_GPL vmlinux 0x4ef54227 sdio_claim_host EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context -EXPORT_SYMBOL_GPL vmlinux 0x4efcd897 vfs_submount +EXPORT_SYMBOL_GPL vmlinux 0x4ef6b9c3 blkdev_report_zones EXPORT_SYMBOL_GPL vmlinux 0x4efcf021 mpi_normalize -EXPORT_SYMBOL_GPL vmlinux 0x4f206d6b cgroup_attach_task_all -EXPORT_SYMBOL_GPL vmlinux 0x4f276ffa skb_pull_rcsum -EXPORT_SYMBOL_GPL vmlinux 0x4f2c8699 setfl +EXPORT_SYMBOL_GPL vmlinux 0x4f058406 pci_slots_kset +EXPORT_SYMBOL_GPL vmlinux 0x4f084c2e dma_can_mmap +EXPORT_SYMBOL_GPL vmlinux 0x4f187ee9 fsnotify_put_mark EXPORT_SYMBOL_GPL vmlinux 0x4f2c996d kmsg_dump_get_line -EXPORT_SYMBOL_GPL vmlinux 0x4f34a63e regmap_fields_read -EXPORT_SYMBOL_GPL vmlinux 0x4f3c9a29 kthread_queue_delayed_work -EXPORT_SYMBOL_GPL vmlinux 0x4f5161e9 iterate_mounts -EXPORT_SYMBOL_GPL vmlinux 0x4f5920bb serial8250_update_uartclk -EXPORT_SYMBOL_GPL vmlinux 0x4f5efc25 n_tty_inherit_ops +EXPORT_SYMBOL_GPL vmlinux 0x4f476d93 tty_ldisc_ref_wait +EXPORT_SYMBOL_GPL vmlinux 0x4f64e8a2 dev_attr_ncq_prio_supported +EXPORT_SYMBOL_GPL vmlinux 0x4f691699 __phy_modify EXPORT_SYMBOL_GPL vmlinux 0x4f6a07fe show_rcu_gp_kthreads +EXPORT_SYMBOL_GPL vmlinux 0x4f6be978 pci_add_dynid +EXPORT_SYMBOL_GPL vmlinux 0x4f7246b8 hash_page_mm EXPORT_SYMBOL_GPL vmlinux 0x4f72a987 uart_parse_options -EXPORT_SYMBOL_GPL vmlinux 0x4fd5cdea __clk_mux_determine_rate -EXPORT_SYMBOL_GPL vmlinux 0x4fd91cc0 handle_fasteoi_irq +EXPORT_SYMBOL_GPL vmlinux 0x4f838b7a simple_attr_release +EXPORT_SYMBOL_GPL vmlinux 0x4f8998cf component_master_del +EXPORT_SYMBOL_GPL vmlinux 0x4f9703a7 tcp_ca_get_key_by_name +EXPORT_SYMBOL_GPL vmlinux 0x4f9c46c2 devfreq_event_get_edev_count +EXPORT_SYMBOL_GPL vmlinux 0x4f9ed440 fuse_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x4fa60911 subsys_find_device_by_id +EXPORT_SYMBOL_GPL vmlinux 0x4fa7f6c1 sysfs_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0x4fa84984 kill_pid_usb_asyncio +EXPORT_SYMBOL_GPL vmlinux 0x4fb6924e extcon_set_state +EXPORT_SYMBOL_GPL vmlinux 0x4fbb3c6e usb_string +EXPORT_SYMBOL_GPL vmlinux 0x4fc67800 cpufreq_cpu_get_raw EXPORT_SYMBOL_GPL vmlinux 0x4fdc945d sata_deb_timing_normal EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier EXPORT_SYMBOL_GPL vmlinux 0x4fe9ff3b __sbitmap_queue_get -EXPORT_SYMBOL_GPL vmlinux 0x4fff451b vfs_test_lock -EXPORT_SYMBOL_GPL vmlinux 0x50003d70 rtc_update_irq_enable -EXPORT_SYMBOL_GPL vmlinux 0x500563b1 vfio_uninit_group_dev -EXPORT_SYMBOL_GPL vmlinux 0x500775ef dma_request_chan_by_mask -EXPORT_SYMBOL_GPL vmlinux 0x502568eb serial8250_do_set_mctrl -EXPORT_SYMBOL_GPL vmlinux 0x505aa742 clk_hw_unregister_gate -EXPORT_SYMBOL_GPL vmlinux 0x506202f1 spi_mem_dirmap_create -EXPORT_SYMBOL_GPL vmlinux 0x506be23c pci_epc_get_features -EXPORT_SYMBOL_GPL vmlinux 0x507e0dfa tps6586x_read +EXPORT_SYMBOL_GPL vmlinux 0x4ffa7f8b __blk_req_zone_write_unlock +EXPORT_SYMBOL_GPL vmlinux 0x500b95d7 of_property_read_u64_index +EXPORT_SYMBOL_GPL vmlinux 0x5020c642 usb_urb_ep_type_check +EXPORT_SYMBOL_GPL vmlinux 0x5032c28c ip6_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x5035cfb4 thermal_zone_of_sensor_unregister +EXPORT_SYMBOL_GPL vmlinux 0x50381455 firmware_request_cache +EXPORT_SYMBOL_GPL vmlinux 0x503939ee __traceiter_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0x50437dd3 phy_calibrate +EXPORT_SYMBOL_GPL vmlinux 0x50455c12 tcf_dev_queue_xmit +EXPORT_SYMBOL_GPL vmlinux 0x5055a20a devlink_port_attrs_pci_sf_set +EXPORT_SYMBOL_GPL vmlinux 0x505875dc __fscrypt_prepare_setattr +EXPORT_SYMBOL_GPL vmlinux 0x507f49e4 xdp_return_frame_rx_napi EXPORT_SYMBOL_GPL vmlinux 0x508377eb xive_native_free_irq -EXPORT_SYMBOL_GPL vmlinux 0x508b04ad driver_create_file -EXPORT_SYMBOL_GPL vmlinux 0x508eaeca blk_mq_start_stopped_hw_queue -EXPORT_SYMBOL_GPL vmlinux 0x5090b2ad fwnode_property_present +EXPORT_SYMBOL_GPL vmlinux 0x5083dd71 fwnode_property_match_string EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start -EXPORT_SYMBOL_GPL vmlinux 0x5092039a led_classdev_notify_brightness_hw_changed -EXPORT_SYMBOL_GPL vmlinux 0x509252fe devm_regulator_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x50931a76 register_virtio_device -EXPORT_SYMBOL_GPL vmlinux 0x50bebc60 bpf_event_output -EXPORT_SYMBOL_GPL vmlinux 0x50d3a587 wakeup_source_create -EXPORT_SYMBOL_GPL vmlinux 0x50d9ed6c __hwspin_lock_timeout +EXPORT_SYMBOL_GPL vmlinux 0x509553ac tcp_ca_openreq_child +EXPORT_SYMBOL_GPL vmlinux 0x5096316f virtqueue_add_outbuf EXPORT_SYMBOL_GPL vmlinux 0x50dd1af5 blocking_notifier_chain_register EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num -EXPORT_SYMBOL_GPL vmlinux 0x50f6cf53 phy_resolve_aneg_pause +EXPORT_SYMBOL_GPL vmlinux 0x50ef6722 sk_msg_free_partial +EXPORT_SYMBOL_GPL vmlinux 0x50f071a2 crypto_register_template EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up -EXPORT_SYMBOL_GPL vmlinux 0x510c6de4 serial8250_rx_chars -EXPORT_SYMBOL_GPL vmlinux 0x51188d83 hvc_remove -EXPORT_SYMBOL_GPL vmlinux 0x51220af7 crypto_register_aead +EXPORT_SYMBOL_GPL vmlinux 0x50febe8d perf_event_refresh +EXPORT_SYMBOL_GPL vmlinux 0x510602de pcibios_claim_one_bus +EXPORT_SYMBOL_GPL vmlinux 0x511fbedf of_clk_get_from_provider +EXPORT_SYMBOL_GPL vmlinux 0x5131149c pci_find_vsec_capability EXPORT_SYMBOL_GPL vmlinux 0x51390c96 rcu_barrier_tasks_rude -EXPORT_SYMBOL_GPL vmlinux 0x51418141 devm_init_badblocks -EXPORT_SYMBOL_GPL vmlinux 0x5144b882 metadata_dst_alloc -EXPORT_SYMBOL_GPL vmlinux 0x514df0d7 clk_gate_ops -EXPORT_SYMBOL_GPL vmlinux 0x514e6055 file_ra_state_init +EXPORT_SYMBOL_GPL vmlinux 0x5144a76c power_supply_put +EXPORT_SYMBOL_GPL vmlinux 0x514a043e pin_user_pages_fast EXPORT_SYMBOL_GPL vmlinux 0x515b390f __SCK__tp_func_remove_device_from_group -EXPORT_SYMBOL_GPL vmlinux 0x515c09fc genphy_c45_pma_suspend -EXPORT_SYMBOL_GPL vmlinux 0x5163b04e vp_modern_get_num_queues -EXPORT_SYMBOL_GPL vmlinux 0x516a601b __lock_page_killable -EXPORT_SYMBOL_GPL vmlinux 0x516b81fc of_get_required_opp_performance_state -EXPORT_SYMBOL_GPL vmlinux 0x51769795 ipv4_redirect -EXPORT_SYMBOL_GPL vmlinux 0x5184efcc usb_autopm_put_interface_async -EXPORT_SYMBOL_GPL vmlinux 0x519894e1 unregister_trace_event -EXPORT_SYMBOL_GPL vmlinux 0x5199a273 inet6_hash_connect -EXPORT_SYMBOL_GPL vmlinux 0x519c7ba5 gpiochip_get_data +EXPORT_SYMBOL_GPL vmlinux 0x516573d7 br_fdb_test_addr_hook +EXPORT_SYMBOL_GPL vmlinux 0x519caf16 reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x519e1a70 pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x51a05541 dummy_irq_chip EXPORT_SYMBOL_GPL vmlinux 0x51a348cc usb_role_switch_set_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x51a5ce09 rio_unlock_device +EXPORT_SYMBOL_GPL vmlinux 0x51b4e48d fscrypt_ioctl_get_policy_ex EXPORT_SYMBOL_GPL vmlinux 0x51b65a26 rtc_lock -EXPORT_SYMBOL_GPL vmlinux 0x51bf3fe9 crypto_inst_setname -EXPORT_SYMBOL_GPL vmlinux 0x51d14133 switchdev_bridge_port_unoffload -EXPORT_SYMBOL_GPL vmlinux 0x51d770c8 pci_host_probe -EXPORT_SYMBOL_GPL vmlinux 0x51e85e5f usb_autopm_get_interface_no_resume -EXPORT_SYMBOL_GPL vmlinux 0x5206ab57 ohci_restart -EXPORT_SYMBOL_GPL vmlinux 0x521e9cad devm_memremap_pages +EXPORT_SYMBOL_GPL vmlinux 0x51bec88a edac_device_handle_ue_count +EXPORT_SYMBOL_GPL vmlinux 0x51c01bf4 sdio_retune_crc_enable +EXPORT_SYMBOL_GPL vmlinux 0x5204f9f2 gpiod_set_debounce +EXPORT_SYMBOL_GPL vmlinux 0x522142ed tty_encode_baud_rate EXPORT_SYMBOL_GPL vmlinux 0x52252316 clk_unregister_fixed_rate -EXPORT_SYMBOL_GPL vmlinux 0x52267a9a nd_blk_region_set_provider_data EXPORT_SYMBOL_GPL vmlinux 0x5236497d trace_clock -EXPORT_SYMBOL_GPL vmlinux 0x523cf741 devm_power_supply_register -EXPORT_SYMBOL_GPL vmlinux 0x523e6c9a virtqueue_add_inbuf_ctx +EXPORT_SYMBOL_GPL vmlinux 0x523d930f regulator_map_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0x524c18a0 gpiod_set_array_value EXPORT_SYMBOL_GPL vmlinux 0x526bcf2a wwan_port_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x52b0d8aa init_phb_dynamic +EXPORT_SYMBOL_GPL vmlinux 0x528e7aa9 fib_rules_unregister +EXPORT_SYMBOL_GPL vmlinux 0x528f4741 subsys_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x529033c9 of_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0x52a59bf5 __traceiter_rpm_resume EXPORT_SYMBOL_GPL vmlinux 0x52b1e3c7 pci_flags -EXPORT_SYMBOL_GPL vmlinux 0x52b4aa7e led_init_default_state_get +EXPORT_SYMBOL_GPL vmlinux 0x52b765a2 subsys_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0x52bf15b5 __pneigh_lookup +EXPORT_SYMBOL_GPL vmlinux 0x52c335ee cpci_hp_unregister_bus EXPORT_SYMBOL_GPL vmlinux 0x52c35e83 call_rcu_tasks_trace -EXPORT_SYMBOL_GPL vmlinux 0x52c44879 wm831x_set_bits EXPORT_SYMBOL_GPL vmlinux 0x52c9a973 hrtimer_try_to_cancel -EXPORT_SYMBOL_GPL vmlinux 0x52d41528 __udp6_lib_lookup EXPORT_SYMBOL_GPL vmlinux 0x52d54fce devlink_info_version_stored_put -EXPORT_SYMBOL_GPL vmlinux 0x52e6080c ndo_dflt_bridge_getlink -EXPORT_SYMBOL_GPL vmlinux 0x52e896fd mmu_feature_keys -EXPORT_SYMBOL_GPL vmlinux 0x52f426ab dev_pm_genpd_set_performance_state +EXPORT_SYMBOL_GPL vmlinux 0x52d7498b pci_find_next_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x52eeadd6 ping_init_sock +EXPORT_SYMBOL_GPL vmlinux 0x52fc450c gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x53001a21 crypto_alloc_rng EXPORT_SYMBOL_GPL vmlinux 0x53012944 __tracepoint_rpm_resume -EXPORT_SYMBOL_GPL vmlinux 0x53029a7e pinctrl_utils_add_map_mux -EXPORT_SYMBOL_GPL vmlinux 0x530d37cb bpf_prog_inc_not_zero -EXPORT_SYMBOL_GPL vmlinux 0x53118ceb noop_invalidatepage -EXPORT_SYMBOL_GPL vmlinux 0x53167287 md_bitmap_load -EXPORT_SYMBOL_GPL vmlinux 0x531b82c3 mm_kobj +EXPORT_SYMBOL_GPL vmlinux 0x530a515a xfrm_audit_state_replay_overflow +EXPORT_SYMBOL_GPL vmlinux 0x530a8341 devm_regulator_put +EXPORT_SYMBOL_GPL vmlinux 0x531e5eb7 iommu_get_domain_for_dev +EXPORT_SYMBOL_GPL vmlinux 0x53202547 usb_hcd_link_urb_to_ep EXPORT_SYMBOL_GPL vmlinux 0x53291f6d iommu_tce_table_put EXPORT_SYMBOL_GPL vmlinux 0x532b90b5 kprobe_event_cmd_init +EXPORT_SYMBOL_GPL vmlinux 0x5333ca77 da903x_update EXPORT_SYMBOL_GPL vmlinux 0x5335dd11 atomic_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x533f8a35 clean_acked_data_enable -EXPORT_SYMBOL_GPL vmlinux 0x5348b4d2 pfn_to_online_page -EXPORT_SYMBOL_GPL vmlinux 0x5350c065 dma_mmap_noncontiguous EXPORT_SYMBOL_GPL vmlinux 0x5358864e devlink_fmsg_binary_pair_nest_end EXPORT_SYMBOL_GPL vmlinux 0x536822e3 sfp_module_insert -EXPORT_SYMBOL_GPL vmlinux 0x536d1400 iommu_group_for_each_dev EXPORT_SYMBOL_GPL vmlinux 0x537252cf __SCK__tp_func_rpm_return_int -EXPORT_SYMBOL_GPL vmlinux 0x5384d6d7 debugfs_real_fops +EXPORT_SYMBOL_GPL vmlinux 0x5385fbf1 __devm_reset_control_bulk_get EXPORT_SYMBOL_GPL vmlinux 0x53884839 kvmhv_load_host_pmu +EXPORT_SYMBOL_GPL vmlinux 0x538c1241 scsi_get_vpd_page EXPORT_SYMBOL_GPL vmlinux 0x538d073d phy_duplex_to_str -EXPORT_SYMBOL_GPL vmlinux 0x5391f35c mm_iommu_new -EXPORT_SYMBOL_GPL vmlinux 0x5397bf9f usb_phy_set_event -EXPORT_SYMBOL_GPL vmlinux 0x53a7c611 inet_unhash -EXPORT_SYMBOL_GPL vmlinux 0x53bea370 dw_pcie_host_deinit +EXPORT_SYMBOL_GPL vmlinux 0x53b36aa8 security_inode_mkdir +EXPORT_SYMBOL_GPL vmlinux 0x53bdc49e iomap_dio_iopoll EXPORT_SYMBOL_GPL vmlinux 0x53c089f5 property_entries_dup -EXPORT_SYMBOL_GPL vmlinux 0x53ceecda debugfs_print_regs32 EXPORT_SYMBOL_GPL vmlinux 0x53d7c01e __traceiter_cpu_idle EXPORT_SYMBOL_GPL vmlinux 0x53d9f73a sensor_group_enable -EXPORT_SYMBOL_GPL vmlinux 0x53deb502 regulator_set_voltage_sel_regmap -EXPORT_SYMBOL_GPL vmlinux 0x53f4c7cb fuse_dax_cancel_work -EXPORT_SYMBOL_GPL vmlinux 0x53fb90a8 gpiod_set_raw_array_value -EXPORT_SYMBOL_GPL vmlinux 0x5401a0b0 vfs_fallocate -EXPORT_SYMBOL_GPL vmlinux 0x540c33c1 shash_ahash_update -EXPORT_SYMBOL_GPL vmlinux 0x541633bd devlink_port_health_reporter_create +EXPORT_SYMBOL_GPL vmlinux 0x53da95bc regmap_field_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0x54153db5 dev_pm_opp_find_freq_ceil EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run EXPORT_SYMBOL_GPL vmlinux 0x54215db5 visitor64 -EXPORT_SYMBOL_GPL vmlinux 0x54251a5a da903x_update -EXPORT_SYMBOL_GPL vmlinux 0x5431aab9 cookie_tcp_reqsk_alloc -EXPORT_SYMBOL_GPL vmlinux 0x543b758f do_truncate -EXPORT_SYMBOL_GPL vmlinux 0x543cc0ea rio_release_outb_dbell -EXPORT_SYMBOL_GPL vmlinux 0x544279d2 srp_attach_transport -EXPORT_SYMBOL_GPL vmlinux 0x54462459 usb_hcd_giveback_urb +EXPORT_SYMBOL_GPL vmlinux 0x542c8e17 spi_sync_locked EXPORT_SYMBOL_GPL vmlinux 0x545025e5 nvmem_add_cell_table -EXPORT_SYMBOL_GPL vmlinux 0x5462197b nvdimm_cmd_mask EXPORT_SYMBOL_GPL vmlinux 0x546c5565 ppc_tb_freq -EXPORT_SYMBOL_GPL vmlinux 0x547f4be0 to_nvdimm_bus_dev -EXPORT_SYMBOL_GPL vmlinux 0x5484f291 iptunnel_metadata_reply -EXPORT_SYMBOL_GPL vmlinux 0x5493e0d2 dst_cache_get_ip4 -EXPORT_SYMBOL_GPL vmlinux 0x54948bb3 sdio_enable_func +EXPORT_SYMBOL_GPL vmlinux 0x5485e2ad dev_pm_opp_unregister_set_opp_helper +EXPORT_SYMBOL_GPL vmlinux 0x548e3967 ata_sas_port_destroy EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq -EXPORT_SYMBOL_GPL vmlinux 0x549fecf5 regmap_field_bulk_free -EXPORT_SYMBOL_GPL vmlinux 0x54a80b34 regulator_disable_regmap -EXPORT_SYMBOL_GPL vmlinux 0x54a851a5 pm_genpd_remove_subdomain +EXPORT_SYMBOL_GPL vmlinux 0x549616ee of_mm_gpiochip_add_data EXPORT_SYMBOL_GPL vmlinux 0x54a9fc07 sbitmap_resize -EXPORT_SYMBOL_GPL vmlinux 0x54b816b5 usb_interrupt_msg -EXPORT_SYMBOL_GPL vmlinux 0x54d6bb56 inet_twsk_alloc -EXPORT_SYMBOL_GPL vmlinux 0x54ea2fca bpf_map_put -EXPORT_SYMBOL_GPL vmlinux 0x54eba3d4 switchdev_bridge_port_offload -EXPORT_SYMBOL_GPL vmlinux 0x5504ef0b regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x54ac9600 __device_reset +EXPORT_SYMBOL_GPL vmlinux 0x54bb4ad3 of_clk_del_provider +EXPORT_SYMBOL_GPL vmlinux 0x54c422c6 regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x54c7c222 phy_remove_lookup +EXPORT_SYMBOL_GPL vmlinux 0x54e467da pci_ioremap_wc_bar +EXPORT_SYMBOL_GPL vmlinux 0x54fe19d6 pm_runtime_no_callbacks EXPORT_SYMBOL_GPL vmlinux 0x550f3e05 i2c_freq_mode_string -EXPORT_SYMBOL_GPL vmlinux 0x5510fa0c sk_free_unlock_clone -EXPORT_SYMBOL_GPL vmlinux 0x55113e00 vfs_write -EXPORT_SYMBOL_GPL vmlinux 0x55130d4f sk_psock_msg_verdict -EXPORT_SYMBOL_GPL vmlinux 0x551acd56 bpf_prog_alloc -EXPORT_SYMBOL_GPL vmlinux 0x55249ae5 gpiod_toggle_active_low +EXPORT_SYMBOL_GPL vmlinux 0x5515f185 xhci_gen_setup EXPORT_SYMBOL_GPL vmlinux 0x55339365 flush_delayed_fput -EXPORT_SYMBOL_GPL vmlinux 0x5535a6d2 dev_pm_opp_find_freq_floor -EXPORT_SYMBOL_GPL vmlinux 0x553b373d hwspin_lock_unregister EXPORT_SYMBOL_GPL vmlinux 0x553b49a4 cpufreq_get_driver_data -EXPORT_SYMBOL_GPL vmlinux 0x554018af gov_update_cpu_data +EXPORT_SYMBOL_GPL vmlinux 0x553efd8e devlink_params_publish EXPORT_SYMBOL_GPL vmlinux 0x55417264 unregister_vt_notifier -EXPORT_SYMBOL_GPL vmlinux 0x554fe26e __devm_pci_epc_create -EXPORT_SYMBOL_GPL vmlinux 0x556022d9 __pci_hp_initialize +EXPORT_SYMBOL_GPL vmlinux 0x55466097 __traceiter_neigh_update_done +EXPORT_SYMBOL_GPL vmlinux 0x55470243 devm_clk_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x5558a451 tcp_leave_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0x556a4a97 led_blink_set +EXPORT_SYMBOL_GPL vmlinux 0x556abbe7 bus_create_file EXPORT_SYMBOL_GPL vmlinux 0x556e4390 clk_get_rate +EXPORT_SYMBOL_GPL vmlinux 0x5578012d tpm_default_chip EXPORT_SYMBOL_GPL vmlinux 0x55784228 regmap_irq_get_virq -EXPORT_SYMBOL_GPL vmlinux 0x557bd119 mmc_regulator_set_vqmmc -EXPORT_SYMBOL_GPL vmlinux 0x557e7440 blk_queue_max_zone_append_sectors -EXPORT_SYMBOL_GPL vmlinux 0x558214b7 devres_destroy +EXPORT_SYMBOL_GPL vmlinux 0x557f2ea9 md_rdev_init EXPORT_SYMBOL_GPL vmlinux 0x5588879e kvmppc_entry_trampoline -EXPORT_SYMBOL_GPL vmlinux 0x55912872 inverse_translate -EXPORT_SYMBOL_GPL vmlinux 0x55ab19d4 devfreq_event_reset_event -EXPORT_SYMBOL_GPL vmlinux 0x55c64653 __page_file_mapping +EXPORT_SYMBOL_GPL vmlinux 0x55bbd8b9 rdev_get_id +EXPORT_SYMBOL_GPL vmlinux 0x55bcf00d da903x_register_notifier EXPORT_SYMBOL_GPL vmlinux 0x55c76a23 ksys_sync_helper -EXPORT_SYMBOL_GPL vmlinux 0x55e35ece dev_pm_qos_add_ancestor_request +EXPORT_SYMBOL_GPL vmlinux 0x55e75966 inet_csk_listen_start EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout EXPORT_SYMBOL_GPL vmlinux 0x55f093a9 opal_write_oppanel_async EXPORT_SYMBOL_GPL vmlinux 0x56054c05 crypto_it_tab +EXPORT_SYMBOL_GPL vmlinux 0x560a2e79 ethnl_cable_test_finished EXPORT_SYMBOL_GPL vmlinux 0x56173654 pcap_set_ts_bits -EXPORT_SYMBOL_GPL vmlinux 0x561e5b67 rio_register_mport +EXPORT_SYMBOL_GPL vmlinux 0x561b6611 device_create_with_groups EXPORT_SYMBOL_GPL vmlinux 0x56256e8a orderly_poweroff EXPORT_SYMBOL_GPL vmlinux 0x56310925 regulator_mode_to_status -EXPORT_SYMBOL_GPL vmlinux 0x5652f401 ata_bmdma_status -EXPORT_SYMBOL_GPL vmlinux 0x5665579b relay_buf_full -EXPORT_SYMBOL_GPL vmlinux 0x56ae141a fib_nl_newrule -EXPORT_SYMBOL_GPL vmlinux 0x56b29044 set_online_page_callback -EXPORT_SYMBOL_GPL vmlinux 0x56b77040 find_get_pid -EXPORT_SYMBOL_GPL vmlinux 0x56d92468 preempt_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x56daf37d ip4_datagram_release_cb -EXPORT_SYMBOL_GPL vmlinux 0x56e48c83 power_supply_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x56e5a1d5 of_pinctrl_get -EXPORT_SYMBOL_GPL vmlinux 0x56e6f2df cgroup_get_e_css +EXPORT_SYMBOL_GPL vmlinux 0x56338de1 proc_get_parent_data +EXPORT_SYMBOL_GPL vmlinux 0x5640d0b1 is_skb_forwardable +EXPORT_SYMBOL_GPL vmlinux 0x56600742 iommu_attach_group +EXPORT_SYMBOL_GPL vmlinux 0x56791bd2 __hwspin_unlock +EXPORT_SYMBOL_GPL vmlinux 0x5681b538 posix_clock_register +EXPORT_SYMBOL_GPL vmlinux 0x5697620e ip6_pol_route +EXPORT_SYMBOL_GPL vmlinux 0x56a76073 tpm2_get_cc_attrs_tbl +EXPORT_SYMBOL_GPL vmlinux 0x56acb92e iomap_readahead +EXPORT_SYMBOL_GPL vmlinux 0x56ae8260 usb_hcd_setup_local_mem +EXPORT_SYMBOL_GPL vmlinux 0x56b7fc8d skb_morph +EXPORT_SYMBOL_GPL vmlinux 0x56c6500f iommu_present +EXPORT_SYMBOL_GPL vmlinux 0x56cbc00c regmap_write +EXPORT_SYMBOL_GPL vmlinux 0x56d2ae49 device_link_remove +EXPORT_SYMBOL_GPL vmlinux 0x56e5712e device_match_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x56f3d0ce fwnode_get_phy_node EXPORT_SYMBOL_GPL vmlinux 0x56fbb130 no_hash_pointers -EXPORT_SYMBOL_GPL vmlinux 0x570f72fd __traceiter_rpm_idle -EXPORT_SYMBOL_GPL vmlinux 0x572959fa pci_epc_linkup -EXPORT_SYMBOL_GPL vmlinux 0x572a25d5 of_irq_parse_one -EXPORT_SYMBOL_GPL vmlinux 0x572ced66 dev_pm_opp_register_set_opp_helper +EXPORT_SYMBOL_GPL vmlinux 0x5709c899 fib_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x570ffea0 yield_to +EXPORT_SYMBOL_GPL vmlinux 0x57151abd sdio_retune_hold_now +EXPORT_SYMBOL_GPL vmlinux 0x5718c9cf irq_chip_mask_parent +EXPORT_SYMBOL_GPL vmlinux 0x5729e865 serial8250_do_set_divisor EXPORT_SYMBOL_GPL vmlinux 0x5736a330 mm_iommu_ua_to_hpa -EXPORT_SYMBOL_GPL vmlinux 0x573989a2 __ata_ehi_push_desc EXPORT_SYMBOL_GPL vmlinux 0x573b5453 ipv6_fixup_options -EXPORT_SYMBOL_GPL vmlinux 0x5742c7e0 alloc_dax -EXPORT_SYMBOL_GPL vmlinux 0x574ce221 usb_remove_phy -EXPORT_SYMBOL_GPL vmlinux 0x57530259 devm_clk_bulk_get_all -EXPORT_SYMBOL_GPL vmlinux 0x5759896f pm_generic_thaw_early -EXPORT_SYMBOL_GPL vmlinux 0x5776e5f8 gpio_to_desc -EXPORT_SYMBOL_GPL vmlinux 0x57833f7c __irq_resolve_mapping +EXPORT_SYMBOL_GPL vmlinux 0x573c1da3 devm_of_platform_populate +EXPORT_SYMBOL_GPL vmlinux 0x57520d69 devm_i2c_new_dummy_device +EXPORT_SYMBOL_GPL vmlinux 0x5761044b devm_regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x576a1033 usb_reset_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x577d56a6 gpiochip_remove_pin_ranges EXPORT_SYMBOL_GPL vmlinux 0x578eeb4d hugetlb_cgrp_subsys_enabled_key EXPORT_SYMBOL_GPL vmlinux 0x5790e7a0 pci_unlock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0x5796d3ed ata_sff_drain_fifo EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all EXPORT_SYMBOL_GPL vmlinux 0x57ad4be0 opal_int_eoi -EXPORT_SYMBOL_GPL vmlinux 0x57ae3d41 metadata_dst_free -EXPORT_SYMBOL_GPL vmlinux 0x57ba2a73 dev_pm_qos_expose_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0x57b4a356 init_user_ns +EXPORT_SYMBOL_GPL vmlinux 0x57c8c941 serdev_device_set_tiocm +EXPORT_SYMBOL_GPL vmlinux 0x57d29eb7 mbox_request_channel EXPORT_SYMBOL_GPL vmlinux 0x57d4050a xhci_get_endpoint_index -EXPORT_SYMBOL_GPL vmlinux 0x57d410eb __fat_fs_error -EXPORT_SYMBOL_GPL vmlinux 0x57de4b35 blk_execute_rq_nowait -EXPORT_SYMBOL_GPL vmlinux 0x57e04b4a fuse_conn_put -EXPORT_SYMBOL_GPL vmlinux 0x57e1f4fd class_dev_iter_next -EXPORT_SYMBOL_GPL vmlinux 0x57e73fa2 regmap_write_async +EXPORT_SYMBOL_GPL vmlinux 0x57e3d079 vfio_pci_core_read EXPORT_SYMBOL_GPL vmlinux 0x57f576b9 mpi_ec_curve_point +EXPORT_SYMBOL_GPL vmlinux 0x57f6a083 ip6_route_output_flags EXPORT_SYMBOL_GPL vmlinux 0x57f70547 secure_ipv4_port_ephemeral -EXPORT_SYMBOL_GPL vmlinux 0x58096f89 _copy_mc_to_iter -EXPORT_SYMBOL_GPL vmlinux 0x580ab479 generic_fh_to_parent -EXPORT_SYMBOL_GPL vmlinux 0x58108838 mbox_chan_txdone -EXPORT_SYMBOL_GPL vmlinux 0x58116f5d icst_clk_register -EXPORT_SYMBOL_GPL vmlinux 0x5816c6a4 clk_hw_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0x57f8b8fc __page_mapcount +EXPORT_SYMBOL_GPL vmlinux 0x581ced45 dev_pm_opp_put_opp_table +EXPORT_SYMBOL_GPL vmlinux 0x581e75a4 kill_device +EXPORT_SYMBOL_GPL vmlinux 0x5825c8f3 dma_async_device_channel_unregister +EXPORT_SYMBOL_GPL vmlinux 0x582e43fd dst_cache_set_ip6 +EXPORT_SYMBOL_GPL vmlinux 0x582ec8ed wm831x_reg_write EXPORT_SYMBOL_GPL vmlinux 0x5831e062 cpus_read_trylock -EXPORT_SYMBOL_GPL vmlinux 0x584dc273 pci_user_write_config_dword -EXPORT_SYMBOL_GPL vmlinux 0x58578424 gpiod_set_config -EXPORT_SYMBOL_GPL vmlinux 0x585beae1 regulator_bulk_enable -EXPORT_SYMBOL_GPL vmlinux 0x585e504d kernfs_get -EXPORT_SYMBOL_GPL vmlinux 0x586b1d03 pci_msi_create_irq_domain -EXPORT_SYMBOL_GPL vmlinux 0x587152c3 fat_time_fat2unix -EXPORT_SYMBOL_GPL vmlinux 0x58725c0d hwspin_lock_get_id +EXPORT_SYMBOL_GPL vmlinux 0x583ec2b8 netdev_rx_handler_unregister +EXPORT_SYMBOL_GPL vmlinux 0x585b6117 fixed_phy_register_with_gpiod +EXPORT_SYMBOL_GPL vmlinux 0x587316dd to_nvdimm_bus EXPORT_SYMBOL_GPL vmlinux 0x5879a27d sfp_get_module_info EXPORT_SYMBOL_GPL vmlinux 0x5892f832 release_pmc_hardware -EXPORT_SYMBOL_GPL vmlinux 0x589e3581 ata_sff_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x589f67f5 md_start -EXPORT_SYMBOL_GPL vmlinux 0x58a8b9cd iommu_group_remove_device -EXPORT_SYMBOL_GPL vmlinux 0x58c89615 divider_determine_rate -EXPORT_SYMBOL_GPL vmlinux 0x58d88fcb kobject_rename +EXPORT_SYMBOL_GPL vmlinux 0x58aed414 __traceiter_neigh_event_send_dead +EXPORT_SYMBOL_GPL vmlinux 0x58bbbd50 phy_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0x58d296cd inet6_lookup EXPORT_SYMBOL_GPL vmlinux 0x58def6ca sfp_module_remove -EXPORT_SYMBOL_GPL vmlinux 0x590149a7 of_dma_request_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x58ed0749 usb_control_msg_recv EXPORT_SYMBOL_GPL vmlinux 0x5909fc18 opal_tpo_read -EXPORT_SYMBOL_GPL vmlinux 0x591ab6e7 regmap_multi_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x591f5905 dev_set_name -EXPORT_SYMBOL_GPL vmlinux 0x5924f29e gpiod_set_consumer_name -EXPORT_SYMBOL_GPL vmlinux 0x5955578a of_phy_simple_xlate -EXPORT_SYMBOL_GPL vmlinux 0x59565191 yield_to -EXPORT_SYMBOL_GPL vmlinux 0x5962b9c9 devlink_sb_register +EXPORT_SYMBOL_GPL vmlinux 0x5914f683 led_trigger_unregister_simple +EXPORT_SYMBOL_GPL vmlinux 0x592941d7 ata_std_qc_defer +EXPORT_SYMBOL_GPL vmlinux 0x598138c8 ima_file_check EXPORT_SYMBOL_GPL vmlinux 0x5986d190 kdb_printf -EXPORT_SYMBOL_GPL vmlinux 0x59a88204 thermal_zone_of_sensor_unregister EXPORT_SYMBOL_GPL vmlinux 0x59b2adbf input_ff_effect_from_user EXPORT_SYMBOL_GPL vmlinux 0x59be22bc kvmhv_save_guest_pmu -EXPORT_SYMBOL_GPL vmlinux 0x59c2ebad __pm_runtime_disable EXPORT_SYMBOL_GPL vmlinux 0x59c43dc9 __traceiter_non_standard_event -EXPORT_SYMBOL_GPL vmlinux 0x59c65be8 aead_init_geniv -EXPORT_SYMBOL_GPL vmlinux 0x59d72fbd smpboot_unregister_percpu_thread -EXPORT_SYMBOL_GPL vmlinux 0x59dffa4a scsi_target_block -EXPORT_SYMBOL_GPL vmlinux 0x59e3cf70 bpf_prog_select_runtime -EXPORT_SYMBOL_GPL vmlinux 0x59e7a1a1 usb_phy_get_charger_current -EXPORT_SYMBOL_GPL vmlinux 0x59eaf2c8 __of_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x59ca0702 dma_buf_move_notify +EXPORT_SYMBOL_GPL vmlinux 0x59e02056 crypto_stats_ahash_update EXPORT_SYMBOL_GPL vmlinux 0x59f32720 mpi_subm -EXPORT_SYMBOL_GPL vmlinux 0x5a0797ce security_path_rmdir -EXPORT_SYMBOL_GPL vmlinux 0x5a07b1cc pinctrl_select_default_state +EXPORT_SYMBOL_GPL vmlinux 0x5a0a94bb cpufreq_enable_fast_switch EXPORT_SYMBOL_GPL vmlinux 0x5a12e60c __SCK__tp_func_sched_update_nr_running_tp -EXPORT_SYMBOL_GPL vmlinux 0x5a1bd414 tty_port_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x5a15eb65 tcp_set_keepalive +EXPORT_SYMBOL_GPL vmlinux 0x5a17ab4f pinctrl_utils_free_map EXPORT_SYMBOL_GPL vmlinux 0x5a1d134a rcu_momentary_dyntick_idle -EXPORT_SYMBOL_GPL vmlinux 0x5a1e58e2 pci_hp_add_devices -EXPORT_SYMBOL_GPL vmlinux 0x5a29157e iommu_fwspec_init -EXPORT_SYMBOL_GPL vmlinux 0x5a2cf641 l3mdev_table_lookup_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5a30c727 ata_scsi_change_queue_depth -EXPORT_SYMBOL_GPL vmlinux 0x5a312c64 devm_gpiod_put -EXPORT_SYMBOL_GPL vmlinux 0x5a3c463d da903x_read -EXPORT_SYMBOL_GPL vmlinux 0x5a3cc7dd rdev_clear_badblocks -EXPORT_SYMBOL_GPL vmlinux 0x5a411ca7 vfio_unregister_iommu_driver -EXPORT_SYMBOL_GPL vmlinux 0x5a49c973 devm_remove_action +EXPORT_SYMBOL_GPL vmlinux 0x5a21dad3 device_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x5a31311e rio_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x5a32fcbe vp_modern_set_features +EXPORT_SYMBOL_GPL vmlinux 0x5a4334ec regmap_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0x5a48d670 __fat_fs_error EXPORT_SYMBOL_GPL vmlinux 0x5a49dbc9 timerqueue_del +EXPORT_SYMBOL_GPL vmlinux 0x5a536f21 __rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5a5e8065 sock_prot_inuse_get EXPORT_SYMBOL_GPL vmlinux 0x5a6cdb52 nf_ct_zone_dflt -EXPORT_SYMBOL_GPL vmlinux 0x5a73b558 fat_detach -EXPORT_SYMBOL_GPL vmlinux 0x5a7584db perf_event_release_kernel EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify -EXPORT_SYMBOL_GPL vmlinux 0x5a96452d create_signature +EXPORT_SYMBOL_GPL vmlinux 0x5a83ea57 usb_alloc_coherent EXPORT_SYMBOL_GPL vmlinux 0x5ab09745 edac_get_owner -EXPORT_SYMBOL_GPL vmlinux 0x5ab214f3 regmap_get_raw_write_max -EXPORT_SYMBOL_GPL vmlinux 0x5add1364 genphy_c45_pma_resume -EXPORT_SYMBOL_GPL vmlinux 0x5ae0232a msg_zerocopy_realloc -EXPORT_SYMBOL_GPL vmlinux 0x5af2ab46 usb_remove_hcd -EXPORT_SYMBOL_GPL vmlinux 0x5af53851 cpufreq_register_governor -EXPORT_SYMBOL_GPL vmlinux 0x5afce6ff powercap_unregister_zone -EXPORT_SYMBOL_GPL vmlinux 0x5b138ebb vp_modern_set_status -EXPORT_SYMBOL_GPL vmlinux 0x5b1af0b5 tty_ldisc_flush -EXPORT_SYMBOL_GPL vmlinux 0x5b1bc679 hwspin_lock_request_specific -EXPORT_SYMBOL_GPL vmlinux 0x5b1d42a7 mbox_client_peek_data +EXPORT_SYMBOL_GPL vmlinux 0x5ab24773 regulator_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0x5ab52675 i2c_dw_adjust_bus_speed +EXPORT_SYMBOL_GPL vmlinux 0x5abe96a4 key_type_encrypted +EXPORT_SYMBOL_GPL vmlinux 0x5af74cc5 __rt_mutex_init +EXPORT_SYMBOL_GPL vmlinux 0x5b021826 fat_alloc_new_dir +EXPORT_SYMBOL_GPL vmlinux 0x5b115dc9 iommu_group_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x5b16d4c0 serdev_device_remove EXPORT_SYMBOL_GPL vmlinux 0x5b21ceff ring_buffer_iter_peek EXPORT_SYMBOL_GPL vmlinux 0x5b35c4f9 vfio_group_set_kvm -EXPORT_SYMBOL_GPL vmlinux 0x5b54e7fd devlink_port_params_register -EXPORT_SYMBOL_GPL vmlinux 0x5b60bd3c aead_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x5b6659ea bpf_trace_run10 EXPORT_SYMBOL_GPL vmlinux 0x5b6b0329 swiotlb_max_segment -EXPORT_SYMBOL_GPL vmlinux 0x5b81a177 rio_request_inb_mbox -EXPORT_SYMBOL_GPL vmlinux 0x5b81c004 task_cls_state -EXPORT_SYMBOL_GPL vmlinux 0x5b84b1bd platform_get_resource_byname -EXPORT_SYMBOL_GPL vmlinux 0x5b880402 gpiochip_add_pin_range -EXPORT_SYMBOL_GPL vmlinux 0x5b97ee4f ip6_route_output_flags -EXPORT_SYMBOL_GPL vmlinux 0x5ba2c29b __rio_local_write_config_8 -EXPORT_SYMBOL_GPL vmlinux 0x5ba8f78b pci_msi_mask_irq +EXPORT_SYMBOL_GPL vmlinux 0x5b78f175 power_supply_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5b84aeb4 serial8250_rpm_put_tx +EXPORT_SYMBOL_GPL vmlinux 0x5b9929a4 iommu_dev_disable_feature +EXPORT_SYMBOL_GPL vmlinux 0x5b9d3bfa mm_iommu_new +EXPORT_SYMBOL_GPL vmlinux 0x5b9fd4d4 devlink_param_register EXPORT_SYMBOL_GPL vmlinux 0x5bb288b4 enable_kprobe -EXPORT_SYMBOL_GPL vmlinux 0x5bb76b4b hash_page_mm -EXPORT_SYMBOL_GPL vmlinux 0x5bba688e debugfs_create_devm_seqfile +EXPORT_SYMBOL_GPL vmlinux 0x5bb2a227 led_classdev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x5bb54f4c crypto_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x5bbd2097 tty_port_link_device EXPORT_SYMBOL_GPL vmlinux 0x5bbdfa26 scatterwalk_ffwd -EXPORT_SYMBOL_GPL vmlinux 0x5bc46438 tps6586x_set_bits EXPORT_SYMBOL_GPL vmlinux 0x5bc950fe regulator_irq_helper_cancel +EXPORT_SYMBOL_GPL vmlinux 0x5bca1c94 dma_buf_vunmap EXPORT_SYMBOL_GPL vmlinux 0x5bd0748f crypto_del_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x5bd74b01 dw_pcie_ep_init_complete EXPORT_SYMBOL_GPL vmlinux 0x5bdae35b usb_phy_roothub_set_mode EXPORT_SYMBOL_GPL vmlinux 0x5bdbac4e rcu_unexpedite_gp -EXPORT_SYMBOL_GPL vmlinux 0x5bdc5455 xhci_drop_endpoint -EXPORT_SYMBOL_GPL vmlinux 0x5be7273d disk_uevent -EXPORT_SYMBOL_GPL vmlinux 0x5be90e36 sata_set_spd -EXPORT_SYMBOL_GPL vmlinux 0x5bf01679 synth_event_trace -EXPORT_SYMBOL_GPL vmlinux 0x5bf5948d vfio_pci_core_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x5c0fd08d kernfs_find_and_get_ns -EXPORT_SYMBOL_GPL vmlinux 0x5c120a3f extcon_register_notifier_all -EXPORT_SYMBOL_GPL vmlinux 0x5c17c26a icc_nodes_remove -EXPORT_SYMBOL_GPL vmlinux 0x5c1aece0 rio_dma_prep_slave_sg -EXPORT_SYMBOL_GPL vmlinux 0x5c2310c4 stmpe_enable +EXPORT_SYMBOL_GPL vmlinux 0x5be04775 wm8350_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0x5c1948a2 rio_unregister_mport +EXPORT_SYMBOL_GPL vmlinux 0x5c1bf98b sdio_memcpy_fromio +EXPORT_SYMBOL_GPL vmlinux 0x5c2aee34 devlink_register EXPORT_SYMBOL_GPL vmlinux 0x5c2bcd37 bpf_warn_invalid_xdp_action EXPORT_SYMBOL_GPL vmlinux 0x5c38c3a6 xas_store EXPORT_SYMBOL_GPL vmlinux 0x5c3bbd06 __SCK__tp_func_mc_event -EXPORT_SYMBOL_GPL vmlinux 0x5c513f67 kthread_cancel_delayed_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x5c404f64 devfreq_get_devfreq_by_node +EXPORT_SYMBOL_GPL vmlinux 0x5c43d17b usb_autopm_put_interface_no_suspend +EXPORT_SYMBOL_GPL vmlinux 0x5c4766bb free_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x5c53fcb2 add_page_wait_queue EXPORT_SYMBOL_GPL vmlinux 0x5c5a1b16 tick_broadcast_control +EXPORT_SYMBOL_GPL vmlinux 0x5c5a37b9 pci_check_and_unmask_intx EXPORT_SYMBOL_GPL vmlinux 0x5c5c6826 phy_10gbit_full_features -EXPORT_SYMBOL_GPL vmlinux 0x5c79848d ncsi_vlan_rx_kill_vid +EXPORT_SYMBOL_GPL vmlinux 0x5c701cb8 class_remove_file_ns EXPORT_SYMBOL_GPL vmlinux 0x5c82016e __SCK__tp_func_napi_poll -EXPORT_SYMBOL_GPL vmlinux 0x5c8f4492 pci_destroy_slot -EXPORT_SYMBOL_GPL vmlinux 0x5c932b9b pinctrl_generic_get_group_name -EXPORT_SYMBOL_GPL vmlinux 0x5c94220d pinctrl_generic_get_group_pins -EXPORT_SYMBOL_GPL vmlinux 0x5c98d73b do_xdp_generic -EXPORT_SYMBOL_GPL vmlinux 0x5ca2998d virtqueue_enable_cb -EXPORT_SYMBOL_GPL vmlinux 0x5ca2e8bb sched_trace_rq_cpu -EXPORT_SYMBOL_GPL vmlinux 0x5ca5e60e irq_get_irq_data -EXPORT_SYMBOL_GPL vmlinux 0x5caa3dea ata_std_qc_defer +EXPORT_SYMBOL_GPL vmlinux 0x5c8e0ac2 watchdog_set_restart_priority EXPORT_SYMBOL_GPL vmlinux 0x5cad8fc3 power_supply_ocv2cap_simple -EXPORT_SYMBOL_GPL vmlinux 0x5cb44dd4 usb_enable_ltm +EXPORT_SYMBOL_GPL vmlinux 0x5cb01b5a gpiochip_irq_map EXPORT_SYMBOL_GPL vmlinux 0x5cb99d97 kernstart_addr +EXPORT_SYMBOL_GPL vmlinux 0x5cbbe578 mddev_unlock +EXPORT_SYMBOL_GPL vmlinux 0x5cbda2df spi_async +EXPORT_SYMBOL_GPL vmlinux 0x5ccc9e78 dev_pm_opp_set_clkname +EXPORT_SYMBOL_GPL vmlinux 0x5cceb651 __alloc_pages_bulk EXPORT_SYMBOL_GPL vmlinux 0x5cd305ed digsig_verify -EXPORT_SYMBOL_GPL vmlinux 0x5cdb1afd mmc_send_tuning +EXPORT_SYMBOL_GPL vmlinux 0x5cdac0a5 dev_pm_qos_update_user_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x5cdb60c0 phy_resolve_aneg_pause +EXPORT_SYMBOL_GPL vmlinux 0x5cdf678e cpufreq_dbs_governor_init +EXPORT_SYMBOL_GPL vmlinux 0x5ce105b2 put_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x5ced5060 percpu_free_rwsem EXPORT_SYMBOL_GPL vmlinux 0x5cede0a7 xdp_flush_frame_bulk -EXPORT_SYMBOL_GPL vmlinux 0x5cf51a7d switchdev_handle_fdb_add_to_device -EXPORT_SYMBOL_GPL vmlinux 0x5d1d48e1 elv_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5d1d5cfd pci_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x5d0415aa fib6_new_table +EXPORT_SYMBOL_GPL vmlinux 0x5d1b772c virtio_device_restore EXPORT_SYMBOL_GPL vmlinux 0x5d2bc42a reset_control_rearm -EXPORT_SYMBOL_GPL vmlinux 0x5d2f67f0 devm_gpiod_get_from_of_node -EXPORT_SYMBOL_GPL vmlinux 0x5d338289 memremap_pages -EXPORT_SYMBOL_GPL vmlinux 0x5d45d148 fat_update_time -EXPORT_SYMBOL_GPL vmlinux 0x5d490886 tps6586x_update -EXPORT_SYMBOL_GPL vmlinux 0x5d5f3e26 rio_release_dma -EXPORT_SYMBOL_GPL vmlinux 0x5d6a2071 blk_mq_freeze_queue_wait -EXPORT_SYMBOL_GPL vmlinux 0x5d7b07f4 lwtunnel_cmp_encap +EXPORT_SYMBOL_GPL vmlinux 0x5d2d0a51 spi_controller_suspend +EXPORT_SYMBOL_GPL vmlinux 0x5d3d00c1 i2c_client_type +EXPORT_SYMBOL_GPL vmlinux 0x5d46ff4e ata_pci_device_do_resume +EXPORT_SYMBOL_GPL vmlinux 0x5d51ea31 pci_epc_linkup +EXPORT_SYMBOL_GPL vmlinux 0x5d53cbac genphy_c45_read_status +EXPORT_SYMBOL_GPL vmlinux 0x5d575a18 blk_mq_sched_try_insert_merge +EXPORT_SYMBOL_GPL vmlinux 0x5d721df8 irq_setup_alt_chip EXPORT_SYMBOL_GPL vmlinux 0x5d8476d3 bpf_sk_storage_diag_alloc -EXPORT_SYMBOL_GPL vmlinux 0x5d90a899 gpiod_get_value -EXPORT_SYMBOL_GPL vmlinux 0x5d970161 devm_kasprintf -EXPORT_SYMBOL_GPL vmlinux 0x5d9bbe59 kthread_func +EXPORT_SYMBOL_GPL vmlinux 0x5d87b090 sb800_prefetch +EXPORT_SYMBOL_GPL vmlinux 0x5d8b5f8e crypto_alloc_kpp +EXPORT_SYMBOL_GPL vmlinux 0x5d8dda8e led_update_brightness EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact -EXPORT_SYMBOL_GPL vmlinux 0x5db90d04 __mmc_poll_for_busy -EXPORT_SYMBOL_GPL vmlinux 0x5dc58138 wm831x_auxadc_read_uv -EXPORT_SYMBOL_GPL vmlinux 0x5dea3aaa phy_start_machine -EXPORT_SYMBOL_GPL vmlinux 0x5decabbc virtqueue_detach_unused_buf -EXPORT_SYMBOL_GPL vmlinux 0x5deeb170 cgroup_get_from_path -EXPORT_SYMBOL_GPL vmlinux 0x5df5ea84 inet6_lookup -EXPORT_SYMBOL_GPL vmlinux 0x5df6f6dd ata_std_prereset -EXPORT_SYMBOL_GPL vmlinux 0x5df7a4f8 nvdimm_kobj -EXPORT_SYMBOL_GPL vmlinux 0x5dfc9b8d devm_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x5dc5843d __pm_runtime_idle +EXPORT_SYMBOL_GPL vmlinux 0x5dc701ed fscrypt_file_open +EXPORT_SYMBOL_GPL vmlinux 0x5dce6f48 device_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x5dd076d5 pm_clk_init +EXPORT_SYMBOL_GPL vmlinux 0x5dd9ed76 gpiod_get_from_of_node +EXPORT_SYMBOL_GPL vmlinux 0x5de9f27f blk_mq_alloc_request_hctx +EXPORT_SYMBOL_GPL vmlinux 0x5df7fa19 get_cpu_device +EXPORT_SYMBOL_GPL vmlinux 0x5dfe8938 of_genpd_remove_subdomain EXPORT_SYMBOL_GPL vmlinux 0x5e00aea4 ucall_norets -EXPORT_SYMBOL_GPL vmlinux 0x5e0495b8 fixed_phy_change_carrier +EXPORT_SYMBOL_GPL vmlinux 0x5e06c5b3 pci_generic_config_write EXPORT_SYMBOL_GPL vmlinux 0x5e173309 cpu_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x5e27631d edac_pci_release_generic_ctl -EXPORT_SYMBOL_GPL vmlinux 0x5e2b483c bpf_sk_storage_diag_put -EXPORT_SYMBOL_GPL vmlinux 0x5e44a084 cpci_hp_register_bus -EXPORT_SYMBOL_GPL vmlinux 0x5e4decfe nvmem_device_get +EXPORT_SYMBOL_GPL vmlinux 0x5e1c5a62 dev_pm_opp_find_freq_exact +EXPORT_SYMBOL_GPL vmlinux 0x5e2d0ca4 of_map_id EXPORT_SYMBOL_GPL vmlinux 0x5e515be6 ktime_get_ts64 +EXPORT_SYMBOL_GPL vmlinux 0x5e5497ca irq_chip_set_affinity_parent EXPORT_SYMBOL_GPL vmlinux 0x5e5c1583 sbitmap_queue_wake_all -EXPORT_SYMBOL_GPL vmlinux 0x5e67d75f dst_cache_get -EXPORT_SYMBOL_GPL vmlinux 0x5e727143 sdio_retune_crc_enable +EXPORT_SYMBOL_GPL vmlinux 0x5e6c97b3 tun_get_tx_ring EXPORT_SYMBOL_GPL vmlinux 0x5e798ffb divider_get_val +EXPORT_SYMBOL_GPL vmlinux 0x5e7a4a6b led_trigger_read EXPORT_SYMBOL_GPL vmlinux 0x5e85415b ring_buffer_consume -EXPORT_SYMBOL_GPL vmlinux 0x5e929a77 of_irq_find_parent -EXPORT_SYMBOL_GPL vmlinux 0x5e9df6ff of_regulator_match +EXPORT_SYMBOL_GPL vmlinux 0x5ea08915 is_xive_irq +EXPORT_SYMBOL_GPL vmlinux 0x5ea25b49 tty_set_ldisc 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 0x5eb719a3 tpm_tis_remove -EXPORT_SYMBOL_GPL vmlinux 0x5eb8d6bd ata_sas_port_init +EXPORT_SYMBOL_GPL vmlinux 0x5ebbb0bf spi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x5ebe1812 dma_get_slave_channel EXPORT_SYMBOL_GPL vmlinux 0x5ec62549 ata_dev_classify EXPORT_SYMBOL_GPL vmlinux 0x5ed0da6c tm_disable -EXPORT_SYMBOL_GPL vmlinux 0x5ed9b41b device_remove_software_node -EXPORT_SYMBOL_GPL vmlinux 0x5ee17a01 virtio_config_changed -EXPORT_SYMBOL_GPL vmlinux 0x5ee88e6f dma_resv_get_fences -EXPORT_SYMBOL_GPL vmlinux 0x5ef0b63e cpufreq_freq_attr_scaling_available_freqs -EXPORT_SYMBOL_GPL vmlinux 0x5ef25172 __inet_inherit_port -EXPORT_SYMBOL_GPL vmlinux 0x5ef32190 vp_modern_get_queue_enable -EXPORT_SYMBOL_GPL vmlinux 0x5efb51c2 devm_of_clk_add_hw_provider -EXPORT_SYMBOL_GPL vmlinux 0x5f08ba26 gpiod_set_array_value -EXPORT_SYMBOL_GPL vmlinux 0x5f21205c of_find_spi_device_by_node +EXPORT_SYMBOL_GPL vmlinux 0x5ed46a71 blk_set_pm_only +EXPORT_SYMBOL_GPL vmlinux 0x5ef261aa uart_handle_cts_change +EXPORT_SYMBOL_GPL vmlinux 0x5efef070 i2c_dw_configure_master +EXPORT_SYMBOL_GPL vmlinux 0x5f103db7 __cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0x5f18b2aa l3mdev_update_flow EXPORT_SYMBOL_GPL vmlinux 0x5f23e3fa insert_resource -EXPORT_SYMBOL_GPL vmlinux 0x5f2c770f crypto_alloc_ahash -EXPORT_SYMBOL_GPL vmlinux 0x5f49014c dev_pm_opp_of_add_table_noclk -EXPORT_SYMBOL_GPL vmlinux 0x5f56617d regmap_parse_val +EXPORT_SYMBOL_GPL vmlinux 0x5f3f4005 skb_zerocopy_headlen EXPORT_SYMBOL_GPL vmlinux 0x5f58db42 alarm_start +EXPORT_SYMBOL_GPL vmlinux 0x5f5b7059 virtqueue_kick_prepare +EXPORT_SYMBOL_GPL vmlinux 0x5f5d03cc devlink_resource_occ_get_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5f616705 blk_poll EXPORT_SYMBOL_GPL vmlinux 0x5f6f1e9e dax_get_private -EXPORT_SYMBOL_GPL vmlinux 0x5f72c7df serdev_device_write_buf -EXPORT_SYMBOL_GPL vmlinux 0x5f72e67d sdio_retune_release -EXPORT_SYMBOL_GPL vmlinux 0x5f79d140 __page_mapcount -EXPORT_SYMBOL_GPL vmlinux 0x5f90c586 subsys_interface_register -EXPORT_SYMBOL_GPL vmlinux 0x5f929555 rio_lock_device -EXPORT_SYMBOL_GPL vmlinux 0x5f981f86 gpiod_get_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x5f9978f0 __bio_add_page -EXPORT_SYMBOL_GPL vmlinux 0x5fa1c841 pci_load_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x5f6fd34b ata_scsi_slave_destroy +EXPORT_SYMBOL_GPL vmlinux 0x5f831326 of_pci_dma_range_parser_init +EXPORT_SYMBOL_GPL vmlinux 0x5f8693b1 usb_hub_release_port EXPORT_SYMBOL_GPL vmlinux 0x5fa625ed mpi_ec_mul_point -EXPORT_SYMBOL_GPL vmlinux 0x5faf67c0 pci_epc_put -EXPORT_SYMBOL_GPL vmlinux 0x5fb4ea78 devm_regulator_irq_helper -EXPORT_SYMBOL_GPL vmlinux 0x5fc488e6 tc3589x_block_write -EXPORT_SYMBOL_GPL vmlinux 0x5fcadaf9 dev_pm_qos_hide_flags -EXPORT_SYMBOL_GPL vmlinux 0x5fd0c0b8 crypto_stats_akcipher_verify -EXPORT_SYMBOL_GPL vmlinux 0x5fd310bd usb_enable_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0x5fe401bd dev_attr_em_message -EXPORT_SYMBOL_GPL vmlinux 0x5ff9fe21 msg_zerocopy_alloc +EXPORT_SYMBOL_GPL vmlinux 0x5fa8f90a of_regulator_match +EXPORT_SYMBOL_GPL vmlinux 0x5fb69c15 blk_mq_flush_busy_ctxs +EXPORT_SYMBOL_GPL vmlinux 0x5fc45000 device_dma_supported +EXPORT_SYMBOL_GPL vmlinux 0x5fc89cd9 serdev_device_set_baudrate +EXPORT_SYMBOL_GPL vmlinux 0x5fd2578c regulator_desc_list_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0x5fdfcd57 __tracepoint_pelt_thermal_tp +EXPORT_SYMBOL_GPL vmlinux 0x5fe20068 fixed_phy_register +EXPORT_SYMBOL_GPL vmlinux 0x5ff6c389 irq_domain_create_simple EXPORT_SYMBOL_GPL vmlinux 0x6000187c opal_check_token -EXPORT_SYMBOL_GPL vmlinux 0x60015da2 vfio_register_iommu_driver -EXPORT_SYMBOL_GPL vmlinux 0x6003482b pci_find_next_capability EXPORT_SYMBOL_GPL vmlinux 0x60091316 clk_notifier_register EXPORT_SYMBOL_GPL vmlinux 0x600cc455 mmu_slb_size -EXPORT_SYMBOL_GPL vmlinux 0x600fb898 usb_driver_set_configuration -EXPORT_SYMBOL_GPL vmlinux 0x601d7160 device_store_bool -EXPORT_SYMBOL_GPL vmlinux 0x60202c76 vp_modern_get_queue_size -EXPORT_SYMBOL_GPL vmlinux 0x6031ba71 usb_get_current_frame_number -EXPORT_SYMBOL_GPL vmlinux 0x6040f7c1 gpiod_get_from_of_node -EXPORT_SYMBOL_GPL vmlinux 0x6044ef93 kvmppc_h_clear_ref +EXPORT_SYMBOL_GPL vmlinux 0x600f96af pinconf_generic_dt_subnode_to_map +EXPORT_SYMBOL_GPL vmlinux 0x601dfb40 irq_domain_update_bus_token +EXPORT_SYMBOL_GPL vmlinux 0x602eda8c thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x60324cf8 setfl +EXPORT_SYMBOL_GPL vmlinux 0x60372397 rio_inb_pwrite_handler +EXPORT_SYMBOL_GPL vmlinux 0x60387615 netdev_is_rx_handler_busy +EXPORT_SYMBOL_GPL vmlinux 0x603b7181 mmc_app_cmd EXPORT_SYMBOL_GPL vmlinux 0x604722fd devices_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x604c6dde of_clk_add_hw_provider -EXPORT_SYMBOL_GPL vmlinux 0x607a7160 devm_regulator_register +EXPORT_SYMBOL_GPL vmlinux 0x6064ab95 led_blink_set_oneshot +EXPORT_SYMBOL_GPL vmlinux 0x606f3fb5 dw_pcie_wait_for_link EXPORT_SYMBOL_GPL vmlinux 0x607c4683 devlink_info_version_fixed_put EXPORT_SYMBOL_GPL vmlinux 0x6081884a usb_unlink_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x60862a16 pm_generic_restore_noirq -EXPORT_SYMBOL_GPL vmlinux 0x608757ab pci_assign_unassigned_bus_resources -EXPORT_SYMBOL_GPL vmlinux 0x608fb4cc __pm_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0x6090f8bf nvdimm_to_bus +EXPORT_SYMBOL_GPL vmlinux 0x60874254 shash_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0x608c7356 cpufreq_cpu_get EXPORT_SYMBOL_GPL vmlinux 0x6091797f synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x6092a53c pci_ioremap_bar EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier -EXPORT_SYMBOL_GPL vmlinux 0x60a32d8f kvmppc_h_clear_mod EXPORT_SYMBOL_GPL vmlinux 0x60a32ea9 pm_power_off EXPORT_SYMBOL_GPL vmlinux 0x60a634c4 vfio_info_cap_add -EXPORT_SYMBOL_GPL vmlinux 0x60a64959 skb_to_sgvec_nomark -EXPORT_SYMBOL_GPL vmlinux 0x60ad06d0 rio_release_inb_mbox -EXPORT_SYMBOL_GPL vmlinux 0x60b40666 wakeup_sources_walk_start -EXPORT_SYMBOL_GPL vmlinux 0x60b5d950 xdp_attachment_setup -EXPORT_SYMBOL_GPL vmlinux 0x60d58efa pcibios_free_controller -EXPORT_SYMBOL_GPL vmlinux 0x60e73e48 vfio_pci_core_read +EXPORT_SYMBOL_GPL vmlinux 0x60aec042 wakeup_source_unregister +EXPORT_SYMBOL_GPL vmlinux 0x60b70abc devm_gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0x60c1e0c3 regmap_noinc_write +EXPORT_SYMBOL_GPL vmlinux 0x60c4b33e crypto_mod_get +EXPORT_SYMBOL_GPL vmlinux 0x60d13a9a clockevents_register_device +EXPORT_SYMBOL_GPL vmlinux 0x60d7b7e7 of_pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0x60e21714 __traceiter_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0x60e4ad0e kthread_cancel_work_sync EXPORT_SYMBOL_GPL vmlinux 0x60ebc96f ring_buffer_read_prepare -EXPORT_SYMBOL_GPL vmlinux 0x60f46698 elv_rqhash_del -EXPORT_SYMBOL_GPL vmlinux 0x61013033 gpiod_direction_output -EXPORT_SYMBOL_GPL vmlinux 0x6103451e clk_fractional_divider_ops -EXPORT_SYMBOL_GPL vmlinux 0x61070610 sfp_bus_find_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x610efbc7 fwnode_remove_software_node -EXPORT_SYMBOL_GPL vmlinux 0x61134c43 wwan_port_rx +EXPORT_SYMBOL_GPL vmlinux 0x60f5c39a do_take_over_console +EXPORT_SYMBOL_GPL vmlinux 0x60fab8b7 phy_exit +EXPORT_SYMBOL_GPL vmlinux 0x60ff870a d_walk +EXPORT_SYMBOL_GPL vmlinux 0x6127b99e devm_irq_alloc_generic_chip EXPORT_SYMBOL_GPL vmlinux 0x6129fb93 sfp_remove_phy EXPORT_SYMBOL_GPL vmlinux 0x612bfd89 errno_to_blk_status -EXPORT_SYMBOL_GPL vmlinux 0x612eb643 __traceiter_rpm_resume -EXPORT_SYMBOL_GPL vmlinux 0x6131bef9 __devm_of_phy_provider_register -EXPORT_SYMBOL_GPL vmlinux 0x61379081 vp_modern_get_status -EXPORT_SYMBOL_GPL vmlinux 0x613de3b9 devm_led_trigger_register -EXPORT_SYMBOL_GPL vmlinux 0x613e98d7 usb_unanchor_urb EXPORT_SYMBOL_GPL vmlinux 0x6146c01f hrtimer_active EXPORT_SYMBOL_GPL vmlinux 0x614adcb7 of_overlay_remove_all EXPORT_SYMBOL_GPL vmlinux 0x615beeb5 __cpuhp_state_add_instance EXPORT_SYMBOL_GPL vmlinux 0x615d3447 kernel_read_file_from_path +EXPORT_SYMBOL_GPL vmlinux 0x6163c0e5 dev_pm_opp_of_add_table_noclk +EXPORT_SYMBOL_GPL vmlinux 0x616bf08c inode_sb_list_add EXPORT_SYMBOL_GPL vmlinux 0x6181e79f timerqueue_add -EXPORT_SYMBOL_GPL vmlinux 0x61944db1 virtqueue_add_sgs +EXPORT_SYMBOL_GPL vmlinux 0x618bd74a ata_sff_port_ops EXPORT_SYMBOL_GPL vmlinux 0x6198dfea __ring_buffer_alloc EXPORT_SYMBOL_GPL vmlinux 0x6199ad5d crypto_has_skcipher EXPORT_SYMBOL_GPL vmlinux 0x619a8194 threads_core_mask -EXPORT_SYMBOL_GPL vmlinux 0x61a05ea5 simple_attr_write -EXPORT_SYMBOL_GPL vmlinux 0x61a676c6 devm_of_platform_populate -EXPORT_SYMBOL_GPL vmlinux 0x61b83033 perf_tp_event -EXPORT_SYMBOL_GPL vmlinux 0x61bd9fc3 pci_epc_raise_irq +EXPORT_SYMBOL_GPL vmlinux 0x61b05c58 gpiod_set_raw_value EXPORT_SYMBOL_GPL vmlinux 0x61c1ca29 __SCK__tp_func_add_device_to_group -EXPORT_SYMBOL_GPL vmlinux 0x61c2fff3 usb_root_hub_lost_power -EXPORT_SYMBOL_GPL vmlinux 0x61c30c67 usb_debug_root -EXPORT_SYMBOL_GPL vmlinux 0x61ea9cc4 nd_blk_region_provider_data -EXPORT_SYMBOL_GPL vmlinux 0x61eb4d4d dev_coredumpm -EXPORT_SYMBOL_GPL vmlinux 0x61ed0a44 sysfs_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x61cae748 rio_route_clr_table +EXPORT_SYMBOL_GPL vmlinux 0x61e1d5ac mmc_pwrseq_register +EXPORT_SYMBOL_GPL vmlinux 0x61e2b7c3 serdev_device_get_tiocm +EXPORT_SYMBOL_GPL vmlinux 0x61e839c0 fwnode_property_read_string_array EXPORT_SYMBOL_GPL vmlinux 0x61f67c92 phy_gbit_features_array -EXPORT_SYMBOL_GPL vmlinux 0x61fd24fb devlink_reload_disable -EXPORT_SYMBOL_GPL vmlinux 0x62045494 debugfs_file_put -EXPORT_SYMBOL_GPL vmlinux 0x620a37aa dma_buf_unmap_attachment -EXPORT_SYMBOL_GPL vmlinux 0x6227b395 ata_sff_pause +EXPORT_SYMBOL_GPL vmlinux 0x61f9d676 dma_buf_dynamic_attach +EXPORT_SYMBOL_GPL vmlinux 0x62110c89 xhci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x6228257b usb_pipe_type_check EXPORT_SYMBOL_GPL vmlinux 0x622c7922 register_oom_notifier EXPORT_SYMBOL_GPL vmlinux 0x62377a7b blk_io_schedule -EXPORT_SYMBOL_GPL vmlinux 0x623a18ef udp_abort -EXPORT_SYMBOL_GPL vmlinux 0x6245fb6b __blkg_prfill_u64 EXPORT_SYMBOL_GPL vmlinux 0x6246a629 synchronize_rcu_tasks_trace -EXPORT_SYMBOL_GPL vmlinux 0x6249b6fe fwnode_get_named_gpiod -EXPORT_SYMBOL_GPL vmlinux 0x6249f330 gpiod_set_raw_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x624fa90d kthread_flush_work +EXPORT_SYMBOL_GPL vmlinux 0x6248495a i2c_handle_smbus_host_notify EXPORT_SYMBOL_GPL vmlinux 0x6257dda7 clk_rate_exclusive_get -EXPORT_SYMBOL_GPL vmlinux 0x62598234 regcache_cache_bypass +EXPORT_SYMBOL_GPL vmlinux 0x62592336 of_clk_add_hw_provider EXPORT_SYMBOL_GPL vmlinux 0x6259d291 clk_restore_context +EXPORT_SYMBOL_GPL vmlinux 0x62679a9a __platform_register_drivers EXPORT_SYMBOL_GPL vmlinux 0x628148be _kvmppc_restore_tm_pr -EXPORT_SYMBOL_GPL vmlinux 0x6291f6d5 scsi_internal_device_unblock_nowait -EXPORT_SYMBOL_GPL vmlinux 0x62985da3 blkcg_policy_register -EXPORT_SYMBOL_GPL vmlinux 0x629e9011 invalidate_inode_pages2 +EXPORT_SYMBOL_GPL vmlinux 0x62a410fb devm_pinctrl_register_and_init +EXPORT_SYMBOL_GPL vmlinux 0x62ba923b sched_show_task EXPORT_SYMBOL_GPL vmlinux 0x62bb09bf clocks_calc_mult_shift -EXPORT_SYMBOL_GPL vmlinux 0x62d86ce8 devm_rtc_device_register -EXPORT_SYMBOL_GPL vmlinux 0x62e66595 regulator_map_voltage_linear -EXPORT_SYMBOL_GPL vmlinux 0x62efa2e8 irq_to_desc -EXPORT_SYMBOL_GPL vmlinux 0x62f31d0a tty_buffer_unlock_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x6309880e __devm_regmap_init -EXPORT_SYMBOL_GPL vmlinux 0x6310bd0f irq_domain_free_irqs_parent +EXPORT_SYMBOL_GPL vmlinux 0x62db2b87 pci_msi_create_irq_domain +EXPORT_SYMBOL_GPL vmlinux 0x62e3f860 __tcp_send_ack +EXPORT_SYMBOL_GPL vmlinux 0x62f17acb dw_pcie_setup_rc +EXPORT_SYMBOL_GPL vmlinux 0x630f5028 mmu_notifier_range_update_to_read_only EXPORT_SYMBOL_GPL vmlinux 0x63150e06 clk_get_parent EXPORT_SYMBOL_GPL vmlinux 0x63197685 s2idle_wake -EXPORT_SYMBOL_GPL vmlinux 0x6334169b __traceiter_tcp_bad_csum -EXPORT_SYMBOL_GPL vmlinux 0x6337523c ata_sff_prereset -EXPORT_SYMBOL_GPL vmlinux 0x63448141 led_trigger_set_default -EXPORT_SYMBOL_GPL vmlinux 0x6345666e dma_buf_vmap +EXPORT_SYMBOL_GPL vmlinux 0x631c34d4 fwnode_create_software_node +EXPORT_SYMBOL_GPL vmlinux 0x632dd4ae driver_find_device +EXPORT_SYMBOL_GPL vmlinux 0x63352b7c preempt_notifier_register EXPORT_SYMBOL_GPL vmlinux 0x634b9d42 __SCK__tp_func_block_unplug -EXPORT_SYMBOL_GPL vmlinux 0x63567204 scsi_host_block -EXPORT_SYMBOL_GPL vmlinux 0x63615f19 ata_sff_dev_classify -EXPORT_SYMBOL_GPL vmlinux 0x637a0224 icst_clk_setup -EXPORT_SYMBOL_GPL vmlinux 0x638c971c crypto_stats_akcipher_decrypt -EXPORT_SYMBOL_GPL vmlinux 0x63953657 pci_epc_map_addr -EXPORT_SYMBOL_GPL vmlinux 0x63957cd2 clk_register_mux_table -EXPORT_SYMBOL_GPL vmlinux 0x63a2a29d pinctrl_utils_add_map_configs -EXPORT_SYMBOL_GPL vmlinux 0x63a4dadf ata_bmdma_port_start32 -EXPORT_SYMBOL_GPL vmlinux 0x63aedd8d rio_mport_get_efb -EXPORT_SYMBOL_GPL vmlinux 0x63b6eae1 evm_inode_init_security +EXPORT_SYMBOL_GPL vmlinux 0x634ddda2 spi_mem_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x635873ac of_property_count_elems_of_size +EXPORT_SYMBOL_GPL vmlinux 0x635f8e59 scsi_dh_set_params +EXPORT_SYMBOL_GPL vmlinux 0x63740eca to_nd_region +EXPORT_SYMBOL_GPL vmlinux 0x637b67bb devm_thermal_zone_of_sensor_register +EXPORT_SYMBOL_GPL vmlinux 0x6383a00e usb_hcd_unmap_urb_setup_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x63893359 devm_clk_bulk_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x63a54a60 __root_device_register EXPORT_SYMBOL_GPL vmlinux 0x63c08029 clk_bulk_unprepare -EXPORT_SYMBOL_GPL vmlinux 0x63c71297 sk_set_peek_off -EXPORT_SYMBOL_GPL vmlinux 0x63dd8e88 debugfs_create_u32 -EXPORT_SYMBOL_GPL vmlinux 0x64113189 __traceiter_block_bio_remap -EXPORT_SYMBOL_GPL vmlinux 0x6415440f crypto_unregister_acomp +EXPORT_SYMBOL_GPL vmlinux 0x63c0de88 driver_find +EXPORT_SYMBOL_GPL vmlinux 0x63c143fb usb_put_dev +EXPORT_SYMBOL_GPL vmlinux 0x63ceda5f usb_alloc_streams +EXPORT_SYMBOL_GPL vmlinux 0x63d312d4 dm_accept_partial_bio +EXPORT_SYMBOL_GPL vmlinux 0x63d69c30 platform_msi_domain_free_irqs +EXPORT_SYMBOL_GPL vmlinux 0x63dadc00 pinctrl_find_gpio_range_from_pin_nolock +EXPORT_SYMBOL_GPL vmlinux 0x63dd0f92 devm_create_dev_dax +EXPORT_SYMBOL_GPL vmlinux 0x63f0f144 bd_unlink_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0x63fd3815 crypto_shoot_alg +EXPORT_SYMBOL_GPL vmlinux 0x6401e9b6 rio_mport_chk_dev_access EXPORT_SYMBOL_GPL vmlinux 0x6418789c xa_delete_node -EXPORT_SYMBOL_GPL vmlinux 0x641f47cd ata_scsi_port_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x641fc93f iommu_set_fault_handler -EXPORT_SYMBOL_GPL vmlinux 0x64397bde misc_cg_uncharge -EXPORT_SYMBOL_GPL vmlinux 0x643d6db5 inet_twsk_put -EXPORT_SYMBOL_GPL vmlinux 0x644e8b06 usb_set_interface -EXPORT_SYMBOL_GPL vmlinux 0x6452c945 blk_queue_set_zoned -EXPORT_SYMBOL_GPL vmlinux 0x646060ff clk_gate_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x642d85ec device_store_int +EXPORT_SYMBOL_GPL vmlinux 0x644ac22d tty_port_install +EXPORT_SYMBOL_GPL vmlinux 0x645979a3 fib4_rule_default EXPORT_SYMBOL_GPL vmlinux 0x64609d25 __tracepoint_devlink_trap_report -EXPORT_SYMBOL_GPL vmlinux 0x6462f48f wbc_detach_inode -EXPORT_SYMBOL_GPL vmlinux 0x646affca ip6_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x647964cf percpu_free_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x648c2c06 fat_add_entries EXPORT_SYMBOL_GPL vmlinux 0x64925270 __dax_synchronous EXPORT_SYMBOL_GPL vmlinux 0x6493a2df rht_bucket_nested -EXPORT_SYMBOL_GPL vmlinux 0x64af3c36 virtqueue_get_vring -EXPORT_SYMBOL_GPL vmlinux 0x64b882d2 pm_clk_remove_clk -EXPORT_SYMBOL_GPL vmlinux 0x64baaa9e blk_req_needs_zone_write_lock -EXPORT_SYMBOL_GPL vmlinux 0x64bb34d5 xdp_rxq_info_unreg_mem_model -EXPORT_SYMBOL_GPL vmlinux 0x64c6e681 crypto_alloc_tfm_node -EXPORT_SYMBOL_GPL vmlinux 0x64d0e738 dev_pm_opp_set_opp -EXPORT_SYMBOL_GPL vmlinux 0x64d25c69 rtc_alarm_irq_enable -EXPORT_SYMBOL_GPL vmlinux 0x64d2c15f kvmppc_do_h_enter -EXPORT_SYMBOL_GPL vmlinux 0x64d30815 pci_traverse_device_nodes +EXPORT_SYMBOL_GPL vmlinux 0x64c2c255 ata_sff_dev_select EXPORT_SYMBOL_GPL vmlinux 0x64e27c4f synth_event_delete +EXPORT_SYMBOL_GPL vmlinux 0x64ee926e exportfs_encode_fh EXPORT_SYMBOL_GPL vmlinux 0x64f36620 dax_flush -EXPORT_SYMBOL_GPL vmlinux 0x64f5f6a4 gpiod_get_raw_value EXPORT_SYMBOL_GPL vmlinux 0x64f74abf __tracepoint_pelt_cfs_tp -EXPORT_SYMBOL_GPL vmlinux 0x650baff9 get_cpu_device -EXPORT_SYMBOL_GPL vmlinux 0x651028e1 mctrl_gpio_init_noauto -EXPORT_SYMBOL_GPL vmlinux 0x6513e1c5 ping_bind -EXPORT_SYMBOL_GPL vmlinux 0x6518b95f fuse_abort_conn -EXPORT_SYMBOL_GPL vmlinux 0x6519de66 device_destroy -EXPORT_SYMBOL_GPL vmlinux 0x652a48dd fib6_rule_default +EXPORT_SYMBOL_GPL vmlinux 0x64fac119 ata_eh_freeze_port +EXPORT_SYMBOL_GPL vmlinux 0x64fc212e blkg_rwstat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0x65140c67 ip6_push_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x651a2818 attribute_container_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6531267a crypto_register_rngs EXPORT_SYMBOL_GPL vmlinux 0x6531a37f mpi_add EXPORT_SYMBOL_GPL vmlinux 0x653723f3 sbitmap_del_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0x6538d1b1 led_trigger_unregister_simple -EXPORT_SYMBOL_GPL vmlinux 0x653e42b2 fuse_mount_remove EXPORT_SYMBOL_GPL vmlinux 0x6545268e __tracepoint_neigh_cleanup_and_release -EXPORT_SYMBOL_GPL vmlinux 0x655be2ac mmu_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0x65675bef screen_glyph -EXPORT_SYMBOL_GPL vmlinux 0x6568c34c icc_put -EXPORT_SYMBOL_GPL vmlinux 0x656e962b pci_scan_child_bus -EXPORT_SYMBOL_GPL vmlinux 0x65c0a222 fib_rules_seq_read -EXPORT_SYMBOL_GPL vmlinux 0x65c275bd synth_event_trace_array -EXPORT_SYMBOL_GPL vmlinux 0x65ca6564 blk_bio_list_merge +EXPORT_SYMBOL_GPL vmlinux 0x655d6175 iomap_ioend_try_merge +EXPORT_SYMBOL_GPL vmlinux 0x65a2c292 dev_pm_opp_put_regulators +EXPORT_SYMBOL_GPL vmlinux 0x65ac252a trace_define_field +EXPORT_SYMBOL_GPL vmlinux 0x65b062a7 dev_pm_opp_remove_table +EXPORT_SYMBOL_GPL vmlinux 0x65b14ab9 devres_find +EXPORT_SYMBOL_GPL vmlinux 0x65be9f3e rtc_read_alarm +EXPORT_SYMBOL_GPL vmlinux 0x65c7a807 anon_transport_class_unregister EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers -EXPORT_SYMBOL_GPL vmlinux 0x65debc73 pid_vnr -EXPORT_SYMBOL_GPL vmlinux 0x65e36cc0 proc_create_net_data -EXPORT_SYMBOL_GPL vmlinux 0x65e94c44 validate_xmit_xfrm +EXPORT_SYMBOL_GPL vmlinux 0x65ce60cd spi_mem_dirmap_destroy EXPORT_SYMBOL_GPL vmlinux 0x65eac411 raw_v6_hashinfo -EXPORT_SYMBOL_GPL vmlinux 0x660900ce led_classdev_resume -EXPORT_SYMBOL_GPL vmlinux 0x660c821d devlink_dpipe_entry_ctx_close -EXPORT_SYMBOL_GPL vmlinux 0x6611900a i2c_new_dummy_device -EXPORT_SYMBOL_GPL vmlinux 0x6613d03b devm_namespace_enable +EXPORT_SYMBOL_GPL vmlinux 0x65f3adfa debugfs_create_file_unsafe +EXPORT_SYMBOL_GPL vmlinux 0x65f7983f md_bitmap_load +EXPORT_SYMBOL_GPL vmlinux 0x6603a2bc fat_time_fat2unix EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol -EXPORT_SYMBOL_GPL vmlinux 0x66231b32 devlink_port_register -EXPORT_SYMBOL_GPL vmlinux 0x6626528c check_move_unevictable_pages -EXPORT_SYMBOL_GPL vmlinux 0x66305adc devm_pinctrl_put -EXPORT_SYMBOL_GPL vmlinux 0x6630e16c devm_hwspin_lock_request_specific +EXPORT_SYMBOL_GPL vmlinux 0x66197072 udp_bpf_update_proto +EXPORT_SYMBOL_GPL vmlinux 0x661be130 tty_get_pgrp +EXPORT_SYMBOL_GPL vmlinux 0x66309ffe ata_bmdma_port_intr EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity -EXPORT_SYMBOL_GPL vmlinux 0x6638febf pci_ecam_create EXPORT_SYMBOL_GPL vmlinux 0x663bb448 devlink_fmsg_obj_nest_end -EXPORT_SYMBOL_GPL vmlinux 0x664650d5 devm_regulator_get_optional -EXPORT_SYMBOL_GPL vmlinux 0x664962be sata_link_resume -EXPORT_SYMBOL_GPL vmlinux 0x664e528a regulator_disable -EXPORT_SYMBOL_GPL vmlinux 0x664ff54f nf_checksum_partial +EXPORT_SYMBOL_GPL vmlinux 0x663d1885 iomap_bmap +EXPORT_SYMBOL_GPL vmlinux 0x664a6a45 dw_pcie_host_init +EXPORT_SYMBOL_GPL vmlinux 0x6651692d cxl_update_properties EXPORT_SYMBOL_GPL vmlinux 0x665e92a0 clk_set_duty_cycle -EXPORT_SYMBOL_GPL vmlinux 0x66664e77 irq_domain_associate -EXPORT_SYMBOL_GPL vmlinux 0x666d7b96 sdio_readw +EXPORT_SYMBOL_GPL vmlinux 0x665f3a43 rtc_alarm_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0x66625dbb dbs_update +EXPORT_SYMBOL_GPL vmlinux 0x666bdc96 crypto_register_ahash +EXPORT_SYMBOL_GPL vmlinux 0x667064b3 inet6_compat_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x6680108b clk_register_fixed_rate EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x668b1615 ipv6_bpf_stub +EXPORT_SYMBOL_GPL vmlinux 0x66a1e2ea devlink_reload_enable EXPORT_SYMBOL_GPL vmlinux 0x66afb53b unix_table_lock EXPORT_SYMBOL_GPL vmlinux 0x66b97421 sfp_link_up -EXPORT_SYMBOL_GPL vmlinux 0x66c3369c __regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0x66bb3751 phy_pm_runtime_get +EXPORT_SYMBOL_GPL vmlinux 0x66c146a6 __crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0x66d3e069 of_changeset_action +EXPORT_SYMBOL_GPL vmlinux 0x66d7beb9 xfrm_state_mtu EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr +EXPORT_SYMBOL_GPL vmlinux 0x66e02075 fscrypt_symlink_getattr +EXPORT_SYMBOL_GPL vmlinux 0x66e832eb ipv6_dup_options +EXPORT_SYMBOL_GPL vmlinux 0x6706f87c klp_get_state +EXPORT_SYMBOL_GPL vmlinux 0x67087c82 pci_epc_map_addr EXPORT_SYMBOL_GPL vmlinux 0x670ce365 ftrace_set_filter -EXPORT_SYMBOL_GPL vmlinux 0x6721ff97 usb_hcd_end_port_resume -EXPORT_SYMBOL_GPL vmlinux 0x6725a267 pm_runtime_barrier -EXPORT_SYMBOL_GPL vmlinux 0x6735c770 __traceiter_sched_util_est_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x6721869a sdio_writesb +EXPORT_SYMBOL_GPL vmlinux 0x67224d8a of_phy_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0x6727a0e6 sk_msg_return +EXPORT_SYMBOL_GPL vmlinux 0x672d444a devlink_dpipe_match_put +EXPORT_SYMBOL_GPL vmlinux 0x6732b737 fwnode_graph_get_remote_endpoint EXPORT_SYMBOL_GPL vmlinux 0x6735d56e tcp_ca_get_name_by_key -EXPORT_SYMBOL_GPL vmlinux 0x67399740 percpu_down_write EXPORT_SYMBOL_GPL vmlinux 0x67429c91 __SCK__tp_func_block_bio_remap -EXPORT_SYMBOL_GPL vmlinux 0x675098da blkcg_deactivate_policy -EXPORT_SYMBOL_GPL vmlinux 0x6753592b platform_device_add_resources -EXPORT_SYMBOL_GPL vmlinux 0x675e9180 devlink_sb_unregister -EXPORT_SYMBOL_GPL vmlinux 0x6764504a rt_mutex_lock -EXPORT_SYMBOL_GPL vmlinux 0x67739feb wm831x_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0x67750096 uart_console_write -EXPORT_SYMBOL_GPL vmlinux 0x677f7afc ata_port_schedule_eh -EXPORT_SYMBOL_GPL vmlinux 0x6785f99e acomp_request_alloc +EXPORT_SYMBOL_GPL vmlinux 0x67448e42 gpiod_set_config +EXPORT_SYMBOL_GPL vmlinux 0x67536cd6 of_icc_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0x6757a22c sdio_claim_irq +EXPORT_SYMBOL_GPL vmlinux 0x676c6323 pci_assign_unassigned_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0x67739e1e simple_attr_open +EXPORT_SYMBOL_GPL vmlinux 0x6786be25 spi_bus_lock +EXPORT_SYMBOL_GPL vmlinux 0x678e4f2c fsverity_verify_page +EXPORT_SYMBOL_GPL vmlinux 0x6792d167 trace_output_call EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits -EXPORT_SYMBOL_GPL vmlinux 0x679c114f debugfs_lookup -EXPORT_SYMBOL_GPL vmlinux 0x67a04be0 transport_configure_device +EXPORT_SYMBOL_GPL vmlinux 0x6796c108 __clk_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0x67a08af2 sdio_readsb +EXPORT_SYMBOL_GPL vmlinux 0x67a4ac10 validate_xmit_xfrm +EXPORT_SYMBOL_GPL vmlinux 0x67a8e816 ata_sas_port_alloc +EXPORT_SYMBOL_GPL vmlinux 0x67b1eb91 dst_cache_get_ip4 EXPORT_SYMBOL_GPL vmlinux 0x67da9f7c sha512_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x67e6772a iomap_is_partially_uptodate +EXPORT_SYMBOL_GPL vmlinux 0x67e17b30 raw_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x67e710a6 tcp_sendmsg_locked EXPORT_SYMBOL_GPL vmlinux 0x67f1a6a9 register_kprobes -EXPORT_SYMBOL_GPL vmlinux 0x67fc53da max8997_write_reg -EXPORT_SYMBOL_GPL vmlinux 0x681ae8d7 tcp_leave_memory_pressure -EXPORT_SYMBOL_GPL vmlinux 0x6826565a usb_store_new_id +EXPORT_SYMBOL_GPL vmlinux 0x68009fda tcp_unregister_ulp +EXPORT_SYMBOL_GPL vmlinux 0x68044f7b sock_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0x6812acc4 of_irq_find_parent +EXPORT_SYMBOL_GPL vmlinux 0x6814c2fe dst_blackhole_redirect +EXPORT_SYMBOL_GPL vmlinux 0x68225162 fwnode_get_parent EXPORT_SYMBOL_GPL vmlinux 0x682ff057 ring_buffer_commit_overrun_cpu -EXPORT_SYMBOL_GPL vmlinux 0x6845e9d8 dma_buf_attach -EXPORT_SYMBOL_GPL vmlinux 0x684a53c5 devlink_rate_leaf_create -EXPORT_SYMBOL_GPL vmlinux 0x6855a946 device_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x683871f7 regmap_write_async +EXPORT_SYMBOL_GPL vmlinux 0x6842779f pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0x685d45e1 report_iommu_fault +EXPORT_SYMBOL_GPL vmlinux 0x68626d1e device_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x6865f76c sysfs_add_file_to_group +EXPORT_SYMBOL_GPL vmlinux 0x68661609 __phy_modify_mmd +EXPORT_SYMBOL_GPL vmlinux 0x686b529e dax_copy_from_iter EXPORT_SYMBOL_GPL vmlinux 0x68786f2e xive_native_configure_queue -EXPORT_SYMBOL_GPL vmlinux 0x6884d730 simple_attr_read -EXPORT_SYMBOL_GPL vmlinux 0x688e21e9 devlink_port_param_driverinit_value_set -EXPORT_SYMBOL_GPL vmlinux 0x68921df2 serial8250_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0x68936d58 devlink_rate_leaf_create EXPORT_SYMBOL_GPL vmlinux 0x68952493 rcu_note_context_switch -EXPORT_SYMBOL_GPL vmlinux 0x689fa7bd devlink_remote_reload_actions_performed -EXPORT_SYMBOL_GPL vmlinux 0x68b4dd1f sched_trace_rq_cpu_capacity -EXPORT_SYMBOL_GPL vmlinux 0x68bfd9e6 switchdev_port_obj_add -EXPORT_SYMBOL_GPL vmlinux 0x68c63f6a lwtunnel_build_state -EXPORT_SYMBOL_GPL vmlinux 0x68da623e pm_schedule_suspend -EXPORT_SYMBOL_GPL vmlinux 0x68f509b3 mptcp_pm_get_add_addr_accept_max -EXPORT_SYMBOL_GPL vmlinux 0x68fbf08f subsys_virtual_register -EXPORT_SYMBOL_GPL vmlinux 0x69021a7d vfio_pci_core_register_device +EXPORT_SYMBOL_GPL vmlinux 0x6898cb81 strp_process +EXPORT_SYMBOL_GPL vmlinux 0x68ab26cb device_move +EXPORT_SYMBOL_GPL vmlinux 0x68bfab99 devm_led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0x68e04d3c io_cgrp_subsys +EXPORT_SYMBOL_GPL vmlinux 0x68e2c087 debugfs_print_regs32 EXPORT_SYMBOL_GPL vmlinux 0x6909a38b opal_rtc_read EXPORT_SYMBOL_GPL vmlinux 0x690f585e phy_basic_ports_array -EXPORT_SYMBOL_GPL vmlinux 0x69101e3b nd_region_dev +EXPORT_SYMBOL_GPL vmlinux 0x6912c596 crypto_stats_aead_decrypt EXPORT_SYMBOL_GPL vmlinux 0x6913865a trace_clock_jiffies EXPORT_SYMBOL_GPL vmlinux 0x6928269b xive_native_disable_vp -EXPORT_SYMBOL_GPL vmlinux 0x69344e3c regulator_is_equal +EXPORT_SYMBOL_GPL vmlinux 0x69467a7a led_trigger_rename_static +EXPORT_SYMBOL_GPL vmlinux 0x6947dada dev_attr_unload_heads +EXPORT_SYMBOL_GPL vmlinux 0x6953b2cf devlink_resource_occ_get_register EXPORT_SYMBOL_GPL vmlinux 0x69637b2c __traceiter_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0x6966d2b7 irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x696b6aaa dev_nit_active EXPORT_SYMBOL_GPL vmlinux 0x696f2b63 of_changeset_init -EXPORT_SYMBOL_GPL vmlinux 0x6971f6ff edac_pci_handle_pe -EXPORT_SYMBOL_GPL vmlinux 0x69779f1a clk_hw_get_parent_index +EXPORT_SYMBOL_GPL vmlinux 0x69771c94 regmap_register_patch EXPORT_SYMBOL_GPL vmlinux 0x697a199b inet_hashinfo2_init_mod EXPORT_SYMBOL_GPL vmlinux 0x697c5d0d tracing_snapshot_alloc EXPORT_SYMBOL_GPL vmlinux 0x697cbbb4 threads_per_core -EXPORT_SYMBOL_GPL vmlinux 0x697e4681 vfio_pci_core_match -EXPORT_SYMBOL_GPL vmlinux 0x69a127b1 eventfd_ctx_fileget -EXPORT_SYMBOL_GPL vmlinux 0x69c08cfa devm_request_free_mem_region +EXPORT_SYMBOL_GPL vmlinux 0x6988e8b2 ata_host_detach +EXPORT_SYMBOL_GPL vmlinux 0x698c76d6 devm_kstrdup +EXPORT_SYMBOL_GPL vmlinux 0x69a2b595 fs_dax_get_by_bdev +EXPORT_SYMBOL_GPL vmlinux 0x69aba345 fuse_conn_get +EXPORT_SYMBOL_GPL vmlinux 0x69c3de70 spi_statistics_add_transfer_stats EXPORT_SYMBOL_GPL vmlinux 0x69cf0632 mpi_fromstr -EXPORT_SYMBOL_GPL vmlinux 0x69e5d4f0 ata_host_alloc_pinfo +EXPORT_SYMBOL_GPL vmlinux 0x69d006bf __pci_hp_register EXPORT_SYMBOL_GPL vmlinux 0x69e683de uuid_gen -EXPORT_SYMBOL_GPL vmlinux 0x69e80f63 ata_sff_wait_ready -EXPORT_SYMBOL_GPL vmlinux 0x69ea6565 fwnode_graph_get_next_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x69e83605 mc146818_get_time EXPORT_SYMBOL_GPL vmlinux 0x69ee2220 linear_range_get_selector_high +EXPORT_SYMBOL_GPL vmlinux 0x69fc8c97 to_of_pinfo +EXPORT_SYMBOL_GPL vmlinux 0x6a00fecb regmap_mmio_attach_clk EXPORT_SYMBOL_GPL vmlinux 0x6a05b65b fb_videomode_from_videomode -EXPORT_SYMBOL_GPL vmlinux 0x6a06cc43 aead_geniv_alloc -EXPORT_SYMBOL_GPL vmlinux 0x6a0ae18e led_trigger_event +EXPORT_SYMBOL_GPL vmlinux 0x6a0ebdce devlink_trap_report EXPORT_SYMBOL_GPL vmlinux 0x6a1733eb iommu_group_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6a184c2b cpu_subsys -EXPORT_SYMBOL_GPL vmlinux 0x6a1d118a usb_alloc_urb -EXPORT_SYMBOL_GPL vmlinux 0x6a1dfc75 crypto_register_scomp -EXPORT_SYMBOL_GPL vmlinux 0x6a1f0403 alloc_page_buffers -EXPORT_SYMBOL_GPL vmlinux 0x6a3e69b5 sock_diag_put_meminfo +EXPORT_SYMBOL_GPL vmlinux 0x6a1c9cff elv_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6a28e371 tpm2_probe +EXPORT_SYMBOL_GPL vmlinux 0x6a2ae624 tty_ldisc_flush +EXPORT_SYMBOL_GPL vmlinux 0x6a344fa7 blkcg_policy_register EXPORT_SYMBOL_GPL vmlinux 0x6a421062 memory_failure_queue EXPORT_SYMBOL_GPL vmlinux 0x6a460dc5 schedule_hrtimeout EXPORT_SYMBOL_GPL vmlinux 0x6a4f623b mmu_notifier_synchronize -EXPORT_SYMBOL_GPL vmlinux 0x6a58c4a3 regmap_async_complete +EXPORT_SYMBOL_GPL vmlinux 0x6a582c2c serial8250_rpm_get EXPORT_SYMBOL_GPL vmlinux 0x6a5e2bde __cookie_v6_init_sequence -EXPORT_SYMBOL_GPL vmlinux 0x6a60d909 sk_attach_filter -EXPORT_SYMBOL_GPL vmlinux 0x6a6e9168 posix_acl_create -EXPORT_SYMBOL_GPL vmlinux 0x6a739b38 ata_dev_next -EXPORT_SYMBOL_GPL vmlinux 0x6a7405ce kernfs_put -EXPORT_SYMBOL_GPL vmlinux 0x6a78bb7c sk_clear_memalloc -EXPORT_SYMBOL_GPL vmlinux 0x6a7ed483 dma_free_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x6a789b27 tty_perform_flush +EXPORT_SYMBOL_GPL vmlinux 0x6a7beeec serdev_device_write_buf EXPORT_SYMBOL_GPL vmlinux 0x6a8441be cpci_hp_start -EXPORT_SYMBOL_GPL vmlinux 0x6a86d45b of_mm_gpiochip_remove -EXPORT_SYMBOL_GPL vmlinux 0x6a87c6c4 fsnotify_add_mark -EXPORT_SYMBOL_GPL vmlinux 0x6a8df0f2 l3mdev_master_upper_ifindex_by_index_rcu -EXPORT_SYMBOL_GPL vmlinux 0x6aaa5ac5 mpc8xxx_spi_tx_buf_u32 -EXPORT_SYMBOL_GPL vmlinux 0x6ad0807a usb_ep0_reinit -EXPORT_SYMBOL_GPL vmlinux 0x6ae8a227 usb_phy_set_charger_current -EXPORT_SYMBOL_GPL vmlinux 0x6af22bed icc_set_bw -EXPORT_SYMBOL_GPL vmlinux 0x6b0571b0 dax_iomap_fault -EXPORT_SYMBOL_GPL vmlinux 0x6b17eb1a ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0x6a84f32a pci_generic_config_read +EXPORT_SYMBOL_GPL vmlinux 0x6a87c075 sock_diag_put_meminfo +EXPORT_SYMBOL_GPL vmlinux 0x6a9c8601 add_swap_extent +EXPORT_SYMBOL_GPL vmlinux 0x6ac147f1 iommu_unregister_device_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0x6acae8be usb_phy_set_event +EXPORT_SYMBOL_GPL vmlinux 0x6acf123f __traceiter_block_unplug EXPORT_SYMBOL_GPL vmlinux 0x6b198c77 led_colors +EXPORT_SYMBOL_GPL vmlinux 0x6b214f91 thermal_cooling_device_register EXPORT_SYMBOL_GPL vmlinux 0x6b2b69f7 static_key_enable -EXPORT_SYMBOL_GPL vmlinux 0x6b3170d5 irq_domain_associate_many +EXPORT_SYMBOL_GPL vmlinux 0x6b38792a crypto_shash_tfm_digest +EXPORT_SYMBOL_GPL vmlinux 0x6b3a66ef skb_zerocopy_iter_stream EXPORT_SYMBOL_GPL vmlinux 0x6b413c9b sfp_link_down -EXPORT_SYMBOL_GPL vmlinux 0x6b5f17fd kthread_flush_worker -EXPORT_SYMBOL_GPL vmlinux 0x6b6013b7 dw_pcie_upconfig_setup -EXPORT_SYMBOL_GPL vmlinux 0x6b618345 devm_i2c_add_adapter -EXPORT_SYMBOL_GPL vmlinux 0x6b736709 dev_pm_opp_set_regulators +EXPORT_SYMBOL_GPL vmlinux 0x6b46ce14 strp_init +EXPORT_SYMBOL_GPL vmlinux 0x6b4c7102 ata_link_next +EXPORT_SYMBOL_GPL vmlinux 0x6b4c9d00 usb_store_new_id +EXPORT_SYMBOL_GPL vmlinux 0x6b73241d ncsi_register_dev EXPORT_SYMBOL_GPL vmlinux 0x6b81c38b power_supply_unreg_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6b87012d serial8250_get_port -EXPORT_SYMBOL_GPL vmlinux 0x6b942dc7 eeh_pe_set_option -EXPORT_SYMBOL_GPL vmlinux 0x6b9471b4 vfs_getxattr_alloc +EXPORT_SYMBOL_GPL vmlinux 0x6b92b47c gpiochip_irq_domain_activate EXPORT_SYMBOL_GPL vmlinux 0x6ba36c6a hwpoison_filter_flags_value -EXPORT_SYMBOL_GPL vmlinux 0x6bc8cc02 securityfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0x6bbf90e8 unix_outq_len +EXPORT_SYMBOL_GPL vmlinux 0x6bc64c5a switchdev_handle_port_obj_del +EXPORT_SYMBOL_GPL vmlinux 0x6bca4dca mddev_resume EXPORT_SYMBOL_GPL vmlinux 0x6bcdedc0 mpi_point_init EXPORT_SYMBOL_GPL vmlinux 0x6bd1aa56 stack_trace_save -EXPORT_SYMBOL_GPL vmlinux 0x6bdd9e3a of_property_read_string -EXPORT_SYMBOL_GPL vmlinux 0x6be0943d subsys_dev_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0x6c1a920f of_get_regulator_init_data +EXPORT_SYMBOL_GPL vmlinux 0x6bd7cc8d dev_fill_metadata_dst +EXPORT_SYMBOL_GPL vmlinux 0x6bd7dc34 mm_kobj +EXPORT_SYMBOL_GPL vmlinux 0x6bec993d pinconf_generic_parse_dt_config EXPORT_SYMBOL_GPL vmlinux 0x6c205008 mpi_print +EXPORT_SYMBOL_GPL vmlinux 0x6c2fb49e proc_create_net_data_write +EXPORT_SYMBOL_GPL vmlinux 0x6c392a62 free_fib_info EXPORT_SYMBOL_GPL vmlinux 0x6c3f70e0 guid_gen EXPORT_SYMBOL_GPL vmlinux 0x6c4b6684 reset_control_assert -EXPORT_SYMBOL_GPL vmlinux 0x6c5418b3 rio_mport_initialize EXPORT_SYMBOL_GPL vmlinux 0x6c5ad0cd kmsg_dump_register -EXPORT_SYMBOL_GPL vmlinux 0x6c62af2e dev_get_regmap -EXPORT_SYMBOL_GPL vmlinux 0x6c667639 thermal_zone_get_temp -EXPORT_SYMBOL_GPL vmlinux 0x6c6709b3 usb_get_maximum_ssp_rate -EXPORT_SYMBOL_GPL vmlinux 0x6c810ad9 unix_inq_len -EXPORT_SYMBOL_GPL vmlinux 0x6c851990 extcon_get_edev_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x6c9042ae i2c_dw_validate_speed +EXPORT_SYMBOL_GPL vmlinux 0x6c652a4d eeh_pe_inject_err +EXPORT_SYMBOL_GPL vmlinux 0x6c7b435f mc146818_does_rtc_work +EXPORT_SYMBOL_GPL vmlinux 0x6c801705 virtio_config_changed EXPORT_SYMBOL_GPL vmlinux 0x6c956075 __SCK__tp_func_devlink_hwerr +EXPORT_SYMBOL_GPL vmlinux 0x6ca202a3 crypto_lookup_template EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain -EXPORT_SYMBOL_GPL vmlinux 0x6cb983a9 da9052_adc_manual_read -EXPORT_SYMBOL_GPL vmlinux 0x6ccd4e9e iomap_fiemap -EXPORT_SYMBOL_GPL vmlinux 0x6cd3a784 sata_lpm_ignore_phy_events -EXPORT_SYMBOL_GPL vmlinux 0x6ce37755 gpiochip_unlock_as_irq -EXPORT_SYMBOL_GPL vmlinux 0x6ce4dcbd pci_intx -EXPORT_SYMBOL_GPL vmlinux 0x6ce93073 tcp_set_keepalive +EXPORT_SYMBOL_GPL vmlinux 0x6cc93c31 bpfilter_ops +EXPORT_SYMBOL_GPL vmlinux 0x6cd25075 ata_port_desc +EXPORT_SYMBOL_GPL vmlinux 0x6cdbf1ba serdev_controller_remove +EXPORT_SYMBOL_GPL vmlinux 0x6ce016c9 sysfs_group_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x6cf55a2d phy_destroy EXPORT_SYMBOL_GPL vmlinux 0x6d09843f copy_bpf_fprog_from_user EXPORT_SYMBOL_GPL vmlinux 0x6d0ae550 pinctrl_gpio_request -EXPORT_SYMBOL_GPL vmlinux 0x6d0c308f dm_accept_partial_bio -EXPORT_SYMBOL_GPL vmlinux 0x6d1064c5 fwnode_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0x6d0aeffd blk_req_zone_write_trylock +EXPORT_SYMBOL_GPL vmlinux 0x6d10a9b5 user_update +EXPORT_SYMBOL_GPL vmlinux 0x6d117ae6 devm_spi_mem_dirmap_create +EXPORT_SYMBOL_GPL vmlinux 0x6d2d5454 dma_vmap_noncontiguous EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list -EXPORT_SYMBOL_GPL vmlinux 0x6d325911 br_fdb_test_addr_hook -EXPORT_SYMBOL_GPL vmlinux 0x6d34df3f pci_epc_stop -EXPORT_SYMBOL_GPL vmlinux 0x6d35b090 irq_get_default_host -EXPORT_SYMBOL_GPL vmlinux 0x6d39375e skcipher_walk_async -EXPORT_SYMBOL_GPL vmlinux 0x6d3ea90f task_user_regset_view -EXPORT_SYMBOL_GPL vmlinux 0x6d5ca787 pinctrl_register -EXPORT_SYMBOL_GPL vmlinux 0x6d67b5ab wbt_enable_default +EXPORT_SYMBOL_GPL vmlinux 0x6d313a99 __trace_note_message +EXPORT_SYMBOL_GPL vmlinux 0x6d491ccd bpf_offload_dev_netdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6d4b2952 fuse_send_init EXPORT_SYMBOL_GPL vmlinux 0x6d6fec1f ktime_mono_to_any +EXPORT_SYMBOL_GPL vmlinux 0x6d79a4c6 xfrm_audit_policy_delete EXPORT_SYMBOL_GPL vmlinux 0x6d7e951e rcu_exp_batches_completed -EXPORT_SYMBOL_GPL vmlinux 0x6d843571 tpm_tis_resume EXPORT_SYMBOL_GPL vmlinux 0x6d8d503d cpu_latency_qos_update_request -EXPORT_SYMBOL_GPL vmlinux 0x6d936476 devm_hwmon_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x6da1bea2 sysfs_update_group +EXPORT_SYMBOL_GPL vmlinux 0x6d9ce44f shash_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x6dad252c mbox_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6dae1e86 ata_dummy_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x6db38051 usb_add_phy_dev EXPORT_SYMBOL_GPL vmlinux 0x6dbaafd3 put_old_timespec32 -EXPORT_SYMBOL_GPL vmlinux 0x6dc7458c crypto_shash_update -EXPORT_SYMBOL_GPL vmlinux 0x6dc779b1 i2c_generic_scl_recovery -EXPORT_SYMBOL_GPL vmlinux 0x6dd10d73 securityfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x6dbef211 iommu_del_device +EXPORT_SYMBOL_GPL vmlinux 0x6dc035eb blk_rq_unprep_clone +EXPORT_SYMBOL_GPL vmlinux 0x6dc68034 serial8250_em485_start_tx +EXPORT_SYMBOL_GPL vmlinux 0x6dc9e556 alarmtimer_get_rtcdev +EXPORT_SYMBOL_GPL vmlinux 0x6dd28f2f devm_bitmap_zalloc +EXPORT_SYMBOL_GPL vmlinux 0x6dd3da20 ata_cable_80wire EXPORT_SYMBOL_GPL vmlinux 0x6dd5680d sprint_symbol_build_id -EXPORT_SYMBOL_GPL vmlinux 0x6dd6cdd1 pci_msi_unmask_irq +EXPORT_SYMBOL_GPL vmlinux 0x6ddcbf01 regulator_is_enabled_regmap +EXPORT_SYMBOL_GPL vmlinux 0x6de8876a power_supply_get_battery_info +EXPORT_SYMBOL_GPL vmlinux 0x6df0ad95 debugfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0x6dfaae2b regulator_get_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0x6e0053b1 __dev_change_net_namespace EXPORT_SYMBOL_GPL vmlinux 0x6e09d93d __SCK__tp_func_map -EXPORT_SYMBOL_GPL vmlinux 0x6e112b23 sysfs_create_link_nowarn -EXPORT_SYMBOL_GPL vmlinux 0x6e1349b7 do_unbind_con_driver -EXPORT_SYMBOL_GPL vmlinux 0x6e1462b7 tpm_chip_stop -EXPORT_SYMBOL_GPL vmlinux 0x6e1fa668 ata_sas_scsi_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x6e31e471 crypto_enqueue_request -EXPORT_SYMBOL_GPL vmlinux 0x6e34bb08 xhci_get_ep_ctx +EXPORT_SYMBOL_GPL vmlinux 0x6e146637 edac_device_alloc_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0x6e1fc1d4 cpuidle_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x6e2ae72c fl6_merge_options EXPORT_SYMBOL_GPL vmlinux 0x6e3ff83a edac_device_alloc_index -EXPORT_SYMBOL_GPL vmlinux 0x6e4b6ac0 perf_aux_output_skip +EXPORT_SYMBOL_GPL vmlinux 0x6e417a12 bus_sort_breadthfirst EXPORT_SYMBOL_GPL vmlinux 0x6e4bc056 spi_res_free EXPORT_SYMBOL_GPL vmlinux 0x6e59f821 __tracepoint_wbc_writepage -EXPORT_SYMBOL_GPL vmlinux 0x6e7397d4 bpf_prog_create_from_user +EXPORT_SYMBOL_GPL vmlinux 0x6e67e3d1 crypto_stats_rng_generate EXPORT_SYMBOL_GPL vmlinux 0x6e7943ec iommu_group_id -EXPORT_SYMBOL_GPL vmlinux 0x6e7984fb serial8250_em485_config -EXPORT_SYMBOL_GPL vmlinux 0x6e823b13 of_platform_default_populate -EXPORT_SYMBOL_GPL vmlinux 0x6e87ab97 of_remove_property +EXPORT_SYMBOL_GPL vmlinux 0x6e87ce77 regmap_fields_read EXPORT_SYMBOL_GPL vmlinux 0x6e89a560 regmap_irq_chip_get_base -EXPORT_SYMBOL_GPL vmlinux 0x6e8a44bc irq_domain_create_hierarchy -EXPORT_SYMBOL_GPL vmlinux 0x6e92b587 devm_regulator_get_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x6e933cdf of_device_uevent_modalias -EXPORT_SYMBOL_GPL vmlinux 0x6e9440c2 cpufreq_enable_fast_switch -EXPORT_SYMBOL_GPL vmlinux 0x6ea941fd of_property_read_u64_index -EXPORT_SYMBOL_GPL vmlinux 0x6ea9b9d1 sbitmap_show +EXPORT_SYMBOL_GPL vmlinux 0x6e938b6c __irq_domain_add +EXPORT_SYMBOL_GPL vmlinux 0x6e9e79d9 debugfs_lookup +EXPORT_SYMBOL_GPL vmlinux 0x6eb78a44 of_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0x6ebda851 tcp_unregister_congestion_control EXPORT_SYMBOL_GPL vmlinux 0x6ebe366f ktime_get_mono_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0x6ec7d13d usb_get_status -EXPORT_SYMBOL_GPL vmlinux 0x6ecf9f28 input_ff_destroy -EXPORT_SYMBOL_GPL vmlinux 0x6ed1138f thermal_cooling_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6ecc03f1 crypto_unregister_scomps +EXPORT_SYMBOL_GPL vmlinux 0x6ee3071d fat_build_inode EXPORT_SYMBOL_GPL vmlinux 0x6ee8c94b sfp_get_module_eeprom EXPORT_SYMBOL_GPL vmlinux 0x6ef6b54f ktime_get_boot_fast_ns EXPORT_SYMBOL_GPL vmlinux 0x6f0088d9 xive_native_sync_source -EXPORT_SYMBOL_GPL vmlinux 0x6f0f40d5 dev_pm_set_dedicated_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x6f0523f4 crypto_dequeue_request +EXPORT_SYMBOL_GPL vmlinux 0x6f1180d8 pinmux_generic_add_function EXPORT_SYMBOL_GPL vmlinux 0x6f12560a get_old_timespec32 +EXPORT_SYMBOL_GPL vmlinux 0x6f1327b4 devm_platform_ioremap_resource +EXPORT_SYMBOL_GPL vmlinux 0x6f18efd2 bio_end_io_acct_remapped +EXPORT_SYMBOL_GPL vmlinux 0x6f1992b0 ata_dummy_port_info +EXPORT_SYMBOL_GPL vmlinux 0x6f1a3d21 pci_disable_pri +EXPORT_SYMBOL_GPL vmlinux 0x6f1b35a2 is_software_node EXPORT_SYMBOL_GPL vmlinux 0x6f2017de misc_cg_set_capacity -EXPORT_SYMBOL_GPL vmlinux 0x6f29b7f7 usb_put_intf -EXPORT_SYMBOL_GPL vmlinux 0x6f2a1d29 skb_mpls_pop -EXPORT_SYMBOL_GPL vmlinux 0x6f53ed82 crypto_register_shash -EXPORT_SYMBOL_GPL vmlinux 0x6f5c300a max8997_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0x6f66d2e6 of_add_property -EXPORT_SYMBOL_GPL vmlinux 0x6f686e9a security_file_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x6f732339 tcp_register_ulp +EXPORT_SYMBOL_GPL vmlinux 0x6f7c6f9a srp_remove_host EXPORT_SYMBOL_GPL vmlinux 0x6f7e6040 irq_has_action -EXPORT_SYMBOL_GPL vmlinux 0x6f981703 irq_create_fwspec_mapping +EXPORT_SYMBOL_GPL vmlinux 0x6f807586 regulator_force_disable +EXPORT_SYMBOL_GPL vmlinux 0x6f840a41 thermal_zone_device_update +EXPORT_SYMBOL_GPL vmlinux 0x6f8d50f8 gpiochip_line_is_irq +EXPORT_SYMBOL_GPL vmlinux 0x6f91c185 fwnode_property_read_string EXPORT_SYMBOL_GPL vmlinux 0x6f9e763b timecounter_read -EXPORT_SYMBOL_GPL vmlinux 0x6fad398e tpm_pm_resume -EXPORT_SYMBOL_GPL vmlinux 0x6faf8272 rio_route_get_entry -EXPORT_SYMBOL_GPL vmlinux 0x6fc29b16 scsi_schedule_eh -EXPORT_SYMBOL_GPL vmlinux 0x6fcc4fce bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6f9fac1d uprobe_register_refctr +EXPORT_SYMBOL_GPL vmlinux 0x6faacbe8 fuse_free_conn EXPORT_SYMBOL_GPL vmlinux 0x6fcef6ab ring_buffer_reset -EXPORT_SYMBOL_GPL vmlinux 0x6fd07697 crypto_unregister_instance -EXPORT_SYMBOL_GPL vmlinux 0x6fe3637e pci_find_next_ext_capability -EXPORT_SYMBOL_GPL vmlinux 0x6fe3de02 usb_get_dev -EXPORT_SYMBOL_GPL vmlinux 0x6fe5f537 iommu_iova_to_phys +EXPORT_SYMBOL_GPL vmlinux 0x6fd76540 unregister_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x6fe177f1 devm_pwmchip_add +EXPORT_SYMBOL_GPL vmlinux 0x6fe37e01 rio_dev_get EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x6ffe18f6 mptcp_subflow_init_cookie_req EXPORT_SYMBOL_GPL vmlinux 0x7006586e iommu_get_group_resv_regions -EXPORT_SYMBOL_GPL vmlinux 0x700aa666 sysfs_unmerge_group -EXPORT_SYMBOL_GPL vmlinux 0x701c5835 trace_put_event_file -EXPORT_SYMBOL_GPL vmlinux 0x7021f282 store_sampling_rate -EXPORT_SYMBOL_GPL vmlinux 0x70237712 skcipher_alloc_instance_simple -EXPORT_SYMBOL_GPL vmlinux 0x70265ce8 debugfs_write_file_bool -EXPORT_SYMBOL_GPL vmlinux 0x703bc44a phy_create +EXPORT_SYMBOL_GPL vmlinux 0x702e2883 eeh_pe_reset +EXPORT_SYMBOL_GPL vmlinux 0x703f30f8 gpiod_count +EXPORT_SYMBOL_GPL vmlinux 0x7042c8dc platform_device_register +EXPORT_SYMBOL_GPL vmlinux 0x7042d26a pseries_eeh_init_edev_recursive EXPORT_SYMBOL_GPL vmlinux 0x704f24ae kvmppc_restore_tm_hv +EXPORT_SYMBOL_GPL vmlinux 0x705254a6 sched_trace_cfs_rq_cpu +EXPORT_SYMBOL_GPL vmlinux 0x70565e95 vring_del_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x705968e3 pci_find_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0x705ab7dc invalidate_inode_pages2_range +EXPORT_SYMBOL_GPL vmlinux 0x7063220b netdev_walk_all_lower_dev_rcu +EXPORT_SYMBOL_GPL vmlinux 0x70636643 evm_inode_init_security EXPORT_SYMBOL_GPL vmlinux 0x7073c04f phy_10_100_features_array -EXPORT_SYMBOL_GPL vmlinux 0x707d0479 call_switchdev_blocking_notifiers -EXPORT_SYMBOL_GPL vmlinux 0x7088951e rio_route_clr_table -EXPORT_SYMBOL_GPL vmlinux 0x7095827c sysfs_remove_file_self -EXPORT_SYMBOL_GPL vmlinux 0x70a253f7 component_del -EXPORT_SYMBOL_GPL vmlinux 0x70a9d37f dax_inode -EXPORT_SYMBOL_GPL vmlinux 0x70aefe58 irq_alloc_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x70b60f38 wwan_unregister_ops +EXPORT_SYMBOL_GPL vmlinux 0x70744dfc kernfs_path_from_node +EXPORT_SYMBOL_GPL vmlinux 0x708f0717 trace_array_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7099fa8f get_net_ns +EXPORT_SYMBOL_GPL vmlinux 0x70a0b5f2 vfio_pci_core_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x70b460de usb_get_role_switch_default_mode +EXPORT_SYMBOL_GPL vmlinux 0x70be43e9 handle_fasteoi_nmi EXPORT_SYMBOL_GPL vmlinux 0x70c2c7ea pids_cgrp_subsys_on_dfl_key EXPORT_SYMBOL_GPL vmlinux 0x70c52dc5 nf_skb_duplicated +EXPORT_SYMBOL_GPL vmlinux 0x70c6003b __devm_pci_epc_create +EXPORT_SYMBOL_GPL vmlinux 0x70c672a1 serial8250_do_startup EXPORT_SYMBOL_GPL vmlinux 0x70c6d827 mc146818_set_time -EXPORT_SYMBOL_GPL vmlinux 0x70c6efec pnv_pci_get_slot_id EXPORT_SYMBOL_GPL vmlinux 0x70cf032f usb_hcd_irq -EXPORT_SYMBOL_GPL vmlinux 0x70dc3c94 phy_exit -EXPORT_SYMBOL_GPL vmlinux 0x70de901d blkdev_zone_mgmt EXPORT_SYMBOL_GPL vmlinux 0x70e06e33 pkcs7_free_message -EXPORT_SYMBOL_GPL vmlinux 0x70e74949 cpufreq_cpu_get_raw -EXPORT_SYMBOL_GPL vmlinux 0x70f22b8e l3mdev_update_flow +EXPORT_SYMBOL_GPL vmlinux 0x70e38054 pci_host_common_remove +EXPORT_SYMBOL_GPL vmlinux 0x70f34be6 devm_power_supply_register_no_ws EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x712caef4 find_extend_vma -EXPORT_SYMBOL_GPL vmlinux 0x713088d6 pci_disable_pasid -EXPORT_SYMBOL_GPL vmlinux 0x713e0b7e usb_role_switch_find_by_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x714a4db2 icc_link_destroy -EXPORT_SYMBOL_GPL vmlinux 0x714b96bf fwnode_get_nth_parent +EXPORT_SYMBOL_GPL vmlinux 0x711cc10a divider_recalc_rate +EXPORT_SYMBOL_GPL vmlinux 0x71297257 fat_scan +EXPORT_SYMBOL_GPL vmlinux 0x713fa854 usb_alloc_dev EXPORT_SYMBOL_GPL vmlinux 0x71549330 unregister_net_sysctl_table +EXPORT_SYMBOL_GPL vmlinux 0x7158d7b5 devm_gpiod_put_array EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized EXPORT_SYMBOL_GPL vmlinux 0x71650819 add_bootloader_randomness -EXPORT_SYMBOL_GPL vmlinux 0x716bb287 badblocks_store -EXPORT_SYMBOL_GPL vmlinux 0x71706d44 fwnode_property_read_u32_array -EXPORT_SYMBOL_GPL vmlinux 0x7174b3d2 ata_bmdma_post_internal_cmd +EXPORT_SYMBOL_GPL vmlinux 0x717c4534 bpf_map_inc +EXPORT_SYMBOL_GPL vmlinux 0x717df55f receive_fd +EXPORT_SYMBOL_GPL vmlinux 0x718a37c7 devm_spi_mem_dirmap_destroy +EXPORT_SYMBOL_GPL vmlinux 0x719a754c pinctrl_force_default EXPORT_SYMBOL_GPL vmlinux 0x719e17ff clk_notifier_unregister EXPORT_SYMBOL_GPL vmlinux 0x71a20f4a __SCK__tp_func_non_standard_event -EXPORT_SYMBOL_GPL vmlinux 0x71a3356c pci_epc_multi_mem_init -EXPORT_SYMBOL_GPL vmlinux 0x71a69d45 of_property_read_u32_index -EXPORT_SYMBOL_GPL vmlinux 0x71a94319 i2c_dw_adjust_bus_speed +EXPORT_SYMBOL_GPL vmlinux 0x71ab45b7 l3mdev_fib_table_rcu +EXPORT_SYMBOL_GPL vmlinux 0x71ac8e77 tty_buffer_unlock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x71acb9f7 dma_buf_map_attachment +EXPORT_SYMBOL_GPL vmlinux 0x71af99d9 regmap_mmio_detach_clk EXPORT_SYMBOL_GPL vmlinux 0x71b15008 lwtunnel_valid_encap_type -EXPORT_SYMBOL_GPL vmlinux 0x71b6ae80 relay_switch_subbuf EXPORT_SYMBOL_GPL vmlinux 0x71b6cf94 dst_cache_reset_now -EXPORT_SYMBOL_GPL vmlinux 0x71b6d61d platform_irqchip_probe EXPORT_SYMBOL_GPL vmlinux 0x71c059d8 __traceiter_map -EXPORT_SYMBOL_GPL vmlinux 0x71c2206d fwnode_graph_get_remote_node -EXPORT_SYMBOL_GPL vmlinux 0x71c33b23 blk_queue_rq_timeout -EXPORT_SYMBOL_GPL vmlinux 0x71c60a6c bpf_trace_run5 +EXPORT_SYMBOL_GPL vmlinux 0x71d88999 sysfs_remove_device_from_node +EXPORT_SYMBOL_GPL vmlinux 0x71db48bb iommu_fwspec_init EXPORT_SYMBOL_GPL vmlinux 0x71f6670b __cookie_v6_check -EXPORT_SYMBOL_GPL vmlinux 0x720fcb33 __udp_gso_segment -EXPORT_SYMBOL_GPL vmlinux 0x720fe447 vfio_group_iommu_domain -EXPORT_SYMBOL_GPL vmlinux 0x7218be42 regulator_is_enabled_regmap -EXPORT_SYMBOL_GPL vmlinux 0x72296bcc __fsnotify_parent -EXPORT_SYMBOL_GPL vmlinux 0x724481dd phy_get -EXPORT_SYMBOL_GPL vmlinux 0x72493023 iommu_device_unlink -EXPORT_SYMBOL_GPL vmlinux 0x724d9dde blk_mq_alloc_request_hctx -EXPORT_SYMBOL_GPL vmlinux 0x7253408d crypto_stats_akcipher_encrypt -EXPORT_SYMBOL_GPL vmlinux 0x725a3336 dev_pm_opp_get_suspend_opp_freq -EXPORT_SYMBOL_GPL vmlinux 0x725bd306 gpiod_export +EXPORT_SYMBOL_GPL vmlinux 0x71fd1a49 blkcg_root +EXPORT_SYMBOL_GPL vmlinux 0x71ff825c devm_regulator_irq_helper +EXPORT_SYMBOL_GPL vmlinux 0x72009661 split_page +EXPORT_SYMBOL_GPL vmlinux 0x72080401 sk_free_unlock_clone EXPORT_SYMBOL_GPL vmlinux 0x7262702b sfp_get_module_eeprom_by_page EXPORT_SYMBOL_GPL vmlinux 0x7265f2b0 pci_vpd_check_csum -EXPORT_SYMBOL_GPL vmlinux 0x726686bc ata_eh_analyze_ncq_error -EXPORT_SYMBOL_GPL vmlinux 0x726b853c ncsi_start_dev +EXPORT_SYMBOL_GPL vmlinux 0x726bea14 pm_runtime_force_suspend +EXPORT_SYMBOL_GPL vmlinux 0x72765fde rio_request_outb_mbox EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events +EXPORT_SYMBOL_GPL vmlinux 0x7280c1fd spi_mem_adjust_op_size EXPORT_SYMBOL_GPL vmlinux 0x7283161b percpu_ref_switch_to_percpu -EXPORT_SYMBOL_GPL vmlinux 0x7284c097 ata_do_set_mode -EXPORT_SYMBOL_GPL vmlinux 0x72863e7d metadata_dst_alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0x728b4c45 irq_get_domain_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x728ec8c0 device_remove_file_self -EXPORT_SYMBOL_GPL vmlinux 0x729c81f3 virtqueue_get_buf_ctx -EXPORT_SYMBOL_GPL vmlinux 0x72a15f23 irq_gc_set_wake -EXPORT_SYMBOL_GPL vmlinux 0x72b2c993 devm_pwmchip_add -EXPORT_SYMBOL_GPL vmlinux 0x72b43000 sdio_readsb -EXPORT_SYMBOL_GPL vmlinux 0x72be730c pinctrl_generic_get_group -EXPORT_SYMBOL_GPL vmlinux 0x72bf634a is_pnv_opal_msi +EXPORT_SYMBOL_GPL vmlinux 0x72868aa4 regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7295b6dd alloc_empty_file +EXPORT_SYMBOL_GPL vmlinux 0x72b70005 platform_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0x72c5a65d __fscrypt_prepare_rename +EXPORT_SYMBOL_GPL vmlinux 0x72c5ab9e lwtunnel_build_state +EXPORT_SYMBOL_GPL vmlinux 0x72c85e47 to_nvdimm_bus_dev EXPORT_SYMBOL_GPL vmlinux 0x72d267dc nvmem_del_cell_lookups -EXPORT_SYMBOL_GPL vmlinux 0x72deae3c espintcp_push_skb -EXPORT_SYMBOL_GPL vmlinux 0x72e9a35e led_put -EXPORT_SYMBOL_GPL vmlinux 0x72eb1729 serial8250_init_port EXPORT_SYMBOL_GPL vmlinux 0x72edf918 __tracepoint_kfree_skb -EXPORT_SYMBOL_GPL vmlinux 0x7309d5d1 pci_epf_create -EXPORT_SYMBOL_GPL vmlinux 0x730d01bc fat_getattr -EXPORT_SYMBOL_GPL vmlinux 0x730ef701 dmaengine_desc_get_metadata_ptr -EXPORT_SYMBOL_GPL vmlinux 0x7317ecff security_kernel_read_file -EXPORT_SYMBOL_GPL vmlinux 0x731cda24 tcp_ca_openreq_child -EXPORT_SYMBOL_GPL vmlinux 0x732d2fd6 security_inode_create -EXPORT_SYMBOL_GPL vmlinux 0x734e4767 spi_async -EXPORT_SYMBOL_GPL vmlinux 0x73536320 clk_mux_val_to_index -EXPORT_SYMBOL_GPL vmlinux 0x7362a870 i2c_adapter_depth +EXPORT_SYMBOL_GPL vmlinux 0x7302a3c3 nd_blk_region_to_dimm +EXPORT_SYMBOL_GPL vmlinux 0x73188a83 da903x_write +EXPORT_SYMBOL_GPL vmlinux 0x73208fb9 usb_unanchor_urb +EXPORT_SYMBOL_GPL vmlinux 0x7325e274 blk_insert_cloned_request +EXPORT_SYMBOL_GPL vmlinux 0x73389311 mbox_free_channel +EXPORT_SYMBOL_GPL vmlinux 0x734ffdf9 call_switchdev_blocking_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x73671549 power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0x736e8f12 crypto_skcipher_decrypt EXPORT_SYMBOL_GPL vmlinux 0x7378ca41 xas_nomem -EXPORT_SYMBOL_GPL vmlinux 0x738d09f1 blkg_conf_prep +EXPORT_SYMBOL_GPL vmlinux 0x7390b8e1 cpuidle_get_driver +EXPORT_SYMBOL_GPL vmlinux 0x73a3e399 dma_buf_attach EXPORT_SYMBOL_GPL vmlinux 0x73a48b4a ata_sff_std_ports EXPORT_SYMBOL_GPL vmlinux 0x73a5a37c poll_state_synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0x73ad43c1 kstrdup_quotable_cmdline +EXPORT_SYMBOL_GPL vmlinux 0x73aece84 inet6_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x73b2104d icst_clk_setup +EXPORT_SYMBOL_GPL vmlinux 0x73bc913c component_del EXPORT_SYMBOL_GPL vmlinux 0x73c2554f __iowrite64_copy -EXPORT_SYMBOL_GPL vmlinux 0x73c9ebde get_net_ns +EXPORT_SYMBOL_GPL vmlinux 0x73c99e66 nvdimm_to_bus EXPORT_SYMBOL_GPL vmlinux 0x73cc8631 oiap -EXPORT_SYMBOL_GPL vmlinux 0x73f5e003 gpiod_set_debounce -EXPORT_SYMBOL_GPL vmlinux 0x73f8cf17 dma_buf_get -EXPORT_SYMBOL_GPL vmlinux 0x73fa9acb fscrypt_file_open -EXPORT_SYMBOL_GPL vmlinux 0x7407c44f pm_clk_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0x740e76fc is_software_node -EXPORT_SYMBOL_GPL vmlinux 0x74129f00 dev_pm_qos_flags -EXPORT_SYMBOL_GPL vmlinux 0x74139dac posix_acl_access_xattr_handler -EXPORT_SYMBOL_GPL vmlinux 0x741742a2 kthread_unpark +EXPORT_SYMBOL_GPL vmlinux 0x73e6e284 ata_port_pbar_desc +EXPORT_SYMBOL_GPL vmlinux 0x73edf68a fib_info_nh_uses_dev +EXPORT_SYMBOL_GPL vmlinux 0x741063d6 regmap_field_bulk_alloc EXPORT_SYMBOL_GPL vmlinux 0x74199b26 opal_leds_set_ind -EXPORT_SYMBOL_GPL vmlinux 0x741dc367 rio_register_scan -EXPORT_SYMBOL_GPL vmlinux 0x7425f885 blkdev_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x742a2421 md_bitmap_copy_from_slot -EXPORT_SYMBOL_GPL vmlinux 0x7436b155 device_store_int -EXPORT_SYMBOL_GPL vmlinux 0x74381402 pinctrl_dev_get_name EXPORT_SYMBOL_GPL vmlinux 0x743a165e ata_pack_xfermask -EXPORT_SYMBOL_GPL vmlinux 0x74442af1 regulator_get_voltage_sel_regmap -EXPORT_SYMBOL_GPL vmlinux 0x745676ba pci_probe_reset_bus -EXPORT_SYMBOL_GPL vmlinux 0x7470900e kvm_free_hpt_cma -EXPORT_SYMBOL_GPL vmlinux 0x749478f5 ip6_flush_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x743c63c0 gpiochip_add_data_with_key +EXPORT_SYMBOL_GPL vmlinux 0x744948d8 wwan_register_ops +EXPORT_SYMBOL_GPL vmlinux 0x74677065 phy_modify_mmd +EXPORT_SYMBOL_GPL vmlinux 0x747f98a0 addrconf_prefix_rcv_add_addr EXPORT_SYMBOL_GPL vmlinux 0x74b5ea68 lcm_not_zero EXPORT_SYMBOL_GPL vmlinux 0x74baf17a tracing_is_on -EXPORT_SYMBOL_GPL vmlinux 0x74bc58bb skb_partial_csum_set -EXPORT_SYMBOL_GPL vmlinux 0x74c67d1b driver_unregister EXPORT_SYMBOL_GPL vmlinux 0x74c7bffa stack_trace_snprint -EXPORT_SYMBOL_GPL vmlinux 0x74cb09b7 get_current_tty -EXPORT_SYMBOL_GPL vmlinux 0x74d0f6bb device_show_int -EXPORT_SYMBOL_GPL vmlinux 0x74de9ecf usb_hcd_unmap_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x74c7dab9 of_phandle_iterator_next +EXPORT_SYMBOL_GPL vmlinux 0x74d69182 usb_find_alt_setting +EXPORT_SYMBOL_GPL vmlinux 0x74e2a5d5 pci_sriov_get_totalvfs EXPORT_SYMBOL_GPL vmlinux 0x74e73871 housekeeping_overridden -EXPORT_SYMBOL_GPL vmlinux 0x74ecb563 pm_genpd_init -EXPORT_SYMBOL_GPL vmlinux 0x75019258 pci_device_group -EXPORT_SYMBOL_GPL vmlinux 0x75031036 memunmap_pages -EXPORT_SYMBOL_GPL vmlinux 0x750b6ba5 device_get_next_child_node -EXPORT_SYMBOL_GPL vmlinux 0x751134af wakeup_source_unregister -EXPORT_SYMBOL_GPL vmlinux 0x7513180d device_get_named_child_node +EXPORT_SYMBOL_GPL vmlinux 0x74ea2ca8 dev_pm_genpd_resume +EXPORT_SYMBOL_GPL vmlinux 0x750cbf30 regulator_list_voltage_linear_range EXPORT_SYMBOL_GPL vmlinux 0x75133f6e visitor128 -EXPORT_SYMBOL_GPL vmlinux 0x75166661 bpf_trace_run2 -EXPORT_SYMBOL_GPL vmlinux 0x751bea23 edac_mc_del_mc EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status -EXPORT_SYMBOL_GPL vmlinux 0x752aedbf ip_route_output_flow -EXPORT_SYMBOL_GPL vmlinux 0x75300e65 sdio_readb -EXPORT_SYMBOL_GPL vmlinux 0x75454c82 icc_node_del -EXPORT_SYMBOL_GPL vmlinux 0x754a3589 __pm_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x752cd38f crypto_comp_decompress EXPORT_SYMBOL_GPL vmlinux 0x754ba823 trace_seq_puts -EXPORT_SYMBOL_GPL vmlinux 0x7554636e crypto_shash_tfm_digest -EXPORT_SYMBOL_GPL vmlinux 0x755cb86d pktgen_xfrm_outer_mode_output -EXPORT_SYMBOL_GPL vmlinux 0x755ef27c kernel_kobj -EXPORT_SYMBOL_GPL vmlinux 0x75626365 debugfs_create_ulong -EXPORT_SYMBOL_GPL vmlinux 0x75793d6d exportfs_decode_fh_raw -EXPORT_SYMBOL_GPL vmlinux 0x757a5547 inet6_hash +EXPORT_SYMBOL_GPL vmlinux 0x7563d637 public_key_subtype +EXPORT_SYMBOL_GPL vmlinux 0x756f4142 __get_task_comm EXPORT_SYMBOL_GPL vmlinux 0x757cfe35 xive_native_get_vp_info -EXPORT_SYMBOL_GPL vmlinux 0x758dc6b1 regmap_check_range_table EXPORT_SYMBOL_GPL vmlinux 0x759139cb of_pci_check_probe_only -EXPORT_SYMBOL_GPL vmlinux 0x759e02ca regulator_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x75a2c620 __platform_register_drivers -EXPORT_SYMBOL_GPL vmlinux 0x75a9e976 bio_add_zone_append_page -EXPORT_SYMBOL_GPL vmlinux 0x75c71b50 blk_queue_max_discard_segments +EXPORT_SYMBOL_GPL vmlinux 0x75a1fd44 debugfs_attr_read EXPORT_SYMBOL_GPL vmlinux 0x75cbfb09 add_interrupt_randomness 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 0x760cc6e1 __devm_clk_hw_register_divider +EXPORT_SYMBOL_GPL vmlinux 0x75f1b834 __traceiter_neigh_timer_handler +EXPORT_SYMBOL_GPL vmlinux 0x7601273e regmap_noinc_read +EXPORT_SYMBOL_GPL vmlinux 0x76071a2e devlink_port_type_ib_set EXPORT_SYMBOL_GPL vmlinux 0x7612743a srcu_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x7634b8a2 dev_pm_opp_of_register_em -EXPORT_SYMBOL_GPL vmlinux 0x763cdffc regulator_set_load -EXPORT_SYMBOL_GPL vmlinux 0x763d91d9 device_match_name -EXPORT_SYMBOL_GPL vmlinux 0x764eef37 usb_hcd_check_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0x76160933 firmware_request_platform +EXPORT_SYMBOL_GPL vmlinux 0x761cc568 pci_enable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x762484c7 tun_get_socket +EXPORT_SYMBOL_GPL vmlinux 0x762bff2d usb_hcd_platform_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x7637deb4 i2c_dw_prepare_clk EXPORT_SYMBOL_GPL vmlinux 0x764ffefa page_reporting_register -EXPORT_SYMBOL_GPL vmlinux 0x76585a38 da903x_writes +EXPORT_SYMBOL_GPL vmlinux 0x7653daab pinctrl_parse_index_with_args +EXPORT_SYMBOL_GPL vmlinux 0x765a6d9d gpiochip_relres_irq +EXPORT_SYMBOL_GPL vmlinux 0x76614642 fwnode_find_reference EXPORT_SYMBOL_GPL vmlinux 0x7665ee72 crypto_dh_decode_key -EXPORT_SYMBOL_GPL vmlinux 0x766b22e7 blk_poll +EXPORT_SYMBOL_GPL vmlinux 0x76735735 sfp_add_phy +EXPORT_SYMBOL_GPL vmlinux 0x76738a8d proc_create_net_data +EXPORT_SYMBOL_GPL vmlinux 0x7673bf60 inet6_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x767ea322 xdp_rxq_info_reg EXPORT_SYMBOL_GPL vmlinux 0x7681946c unregister_pm_notifier -EXPORT_SYMBOL_GPL vmlinux 0x7684825c cpu_add_dev_attr_group +EXPORT_SYMBOL_GPL vmlinux 0x7695618c crypto_shash_digest +EXPORT_SYMBOL_GPL vmlinux 0x7697ef1f devm_gpiochip_add_data_with_key EXPORT_SYMBOL_GPL vmlinux 0x769cefb5 percpu_ref_switch_to_atomic -EXPORT_SYMBOL_GPL vmlinux 0x76a69cc9 xfrm_audit_policy_add -EXPORT_SYMBOL_GPL vmlinux 0x76d4cf8a devm_mbox_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x76a47ede edac_mc_free +EXPORT_SYMBOL_GPL vmlinux 0x76bbc708 pm_genpd_opp_to_performance_state +EXPORT_SYMBOL_GPL vmlinux 0x76be49da exportfs_decode_fh_raw +EXPORT_SYMBOL_GPL vmlinux 0x76d36424 devlink_port_attrs_pci_pf_set +EXPORT_SYMBOL_GPL vmlinux 0x76d52793 devlink_dpipe_table_counter_enabled EXPORT_SYMBOL_GPL vmlinux 0x76d9b876 clk_set_rate +EXPORT_SYMBOL_GPL vmlinux 0x76e3f88c sysfs_remove_link EXPORT_SYMBOL_GPL vmlinux 0x76eeeb0f sha384_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x76f258b2 alloc_page_buffers EXPORT_SYMBOL_GPL vmlinux 0x76f2abe0 btree_lookup -EXPORT_SYMBOL_GPL vmlinux 0x76f91c47 rio_del_device -EXPORT_SYMBOL_GPL vmlinux 0x76fa9c7f mbox_request_channel_byname -EXPORT_SYMBOL_GPL vmlinux 0x7700b83e rt_mutex_unlock -EXPORT_SYMBOL_GPL vmlinux 0x77077b37 tpm_chip_start -EXPORT_SYMBOL_GPL vmlinux 0x7717cb34 ata_pci_sff_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0x7700ddf9 devm_clk_register +EXPORT_SYMBOL_GPL vmlinux 0x771c7fba sdio_align_size EXPORT_SYMBOL_GPL vmlinux 0x77222306 ring_buffer_read_page +EXPORT_SYMBOL_GPL vmlinux 0x77269f11 ata_bmdma_dumb_qc_prep EXPORT_SYMBOL_GPL vmlinux 0x7729cbdd task_handoff_register -EXPORT_SYMBOL_GPL vmlinux 0x7732588b pinctrl_put -EXPORT_SYMBOL_GPL vmlinux 0x773a44b2 rio_del_mport_pw_handler -EXPORT_SYMBOL_GPL vmlinux 0x773f74a6 ata_sff_exec_command +EXPORT_SYMBOL_GPL vmlinux 0x773b4f89 crypto_stats_aead_encrypt EXPORT_SYMBOL_GPL vmlinux 0x774f16ef __tracepoint_cpu_idle EXPORT_SYMBOL_GPL vmlinux 0x7757b51a clk_unregister -EXPORT_SYMBOL_GPL vmlinux 0x7764c1af regulator_set_ramp_delay_regmap -EXPORT_SYMBOL_GPL vmlinux 0x776aa072 pci_epc_mem_exit -EXPORT_SYMBOL_GPL vmlinux 0x776aaa7f _proc_mkdir -EXPORT_SYMBOL_GPL vmlinux 0x776b764b perf_get_aux -EXPORT_SYMBOL_GPL vmlinux 0x778730d1 fuse_file_poll -EXPORT_SYMBOL_GPL vmlinux 0x77880738 klp_enable_patch +EXPORT_SYMBOL_GPL vmlinux 0x776948fb __traceiter_br_fdb_add +EXPORT_SYMBOL_GPL vmlinux 0x77796cfc gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x77808b62 skb_clone_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x7782bef2 kobject_move +EXPORT_SYMBOL_GPL vmlinux 0x7790cb0a tracing_snapshot_cond_disable EXPORT_SYMBOL_GPL vmlinux 0x7791e066 dw_pcie_read -EXPORT_SYMBOL_GPL vmlinux 0x7797450a devfreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x7795e203 pci_epf_unbind +EXPORT_SYMBOL_GPL vmlinux 0x77a8af8f mmu_interval_notifier_insert_locked EXPORT_SYMBOL_GPL vmlinux 0x77ae495d usb_speed_string -EXPORT_SYMBOL_GPL vmlinux 0x77c08867 gpiochip_irq_map +EXPORT_SYMBOL_GPL vmlinux 0x77cb7a07 vfio_group_get_external_user_from_dev +EXPORT_SYMBOL_GPL vmlinux 0x77d8eab7 regulator_desc_list_voltage_linear_range EXPORT_SYMBOL_GPL vmlinux 0x77e75be3 sfp_bus_put +EXPORT_SYMBOL_GPL vmlinux 0x77ea8d0d clk_hw_unregister_gate EXPORT_SYMBOL_GPL vmlinux 0x77ecf68d memalloc_socks_key -EXPORT_SYMBOL_GPL vmlinux 0x77eefa86 edac_pci_create_generic_ctl -EXPORT_SYMBOL_GPL vmlinux 0x77f4ccb5 crypto_hash_walk_done -EXPORT_SYMBOL_GPL vmlinux 0x77f7bf6f devlink_param_publish -EXPORT_SYMBOL_GPL vmlinux 0x77fe129d sdio_memcpy_fromio EXPORT_SYMBOL_GPL vmlinux 0x78041b8f byte_rev_table -EXPORT_SYMBOL_GPL vmlinux 0x78162726 devres_open_group -EXPORT_SYMBOL_GPL vmlinux 0x7816ad55 ata_port_pbar_desc -EXPORT_SYMBOL_GPL vmlinux 0x781c0591 devm_of_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0x78289b5c lwtunnel_fill_encap -EXPORT_SYMBOL_GPL vmlinux 0x782b299e tty_encode_baud_rate -EXPORT_SYMBOL_GPL vmlinux 0x78332df7 evm_verifyxattr -EXPORT_SYMBOL_GPL vmlinux 0x7836e564 __pci_epf_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x783ad634 pci_epc_set_bar -EXPORT_SYMBOL_GPL vmlinux 0x7856a233 generic_handle_domain_irq +EXPORT_SYMBOL_GPL vmlinux 0x78306b19 badblocks_store +EXPORT_SYMBOL_GPL vmlinux 0x78310e46 crypto_grab_ahash +EXPORT_SYMBOL_GPL vmlinux 0x7835a00a devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0x783d64de dev_pm_opp_set_prop_name +EXPORT_SYMBOL_GPL vmlinux 0x783f4649 iommu_dev_enable_feature EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available -EXPORT_SYMBOL_GPL vmlinux 0x785b39e1 clk_hw_get_parent_by_index -EXPORT_SYMBOL_GPL vmlinux 0x7878e528 gpiochip_line_is_open_drain +EXPORT_SYMBOL_GPL vmlinux 0x786f9014 crypto_shash_setkey EXPORT_SYMBOL_GPL vmlinux 0x787c882b lzo1x_1_compress +EXPORT_SYMBOL_GPL vmlinux 0x78828211 rio_register_driver EXPORT_SYMBOL_GPL vmlinux 0x788bfbad ring_buffer_empty -EXPORT_SYMBOL_GPL vmlinux 0x7899a0b0 mmc_regulator_get_supply EXPORT_SYMBOL_GPL vmlinux 0x789c73d9 rcu_cpu_stall_suppress_at_boot -EXPORT_SYMBOL_GPL vmlinux 0x78a32d5e kthread_data -EXPORT_SYMBOL_GPL vmlinux 0x78b2d945 list_lru_count_one -EXPORT_SYMBOL_GPL vmlinux 0x78c3c6ca phy_pm_runtime_get -EXPORT_SYMBOL_GPL vmlinux 0x78c8a53b xfrm_state_mtu -EXPORT_SYMBOL_GPL vmlinux 0x78d1f66b __iptunnel_pull_header +EXPORT_SYMBOL_GPL vmlinux 0x78ce3da3 sata_link_scr_lpm +EXPORT_SYMBOL_GPL vmlinux 0x78d2c3d4 blk_bio_list_merge +EXPORT_SYMBOL_GPL vmlinux 0x78db2b9b bpf_prog_free EXPORT_SYMBOL_GPL vmlinux 0x78e58a4e xive_native_has_single_escalation -EXPORT_SYMBOL_GPL vmlinux 0x78e60871 __serdev_device_driver_register -EXPORT_SYMBOL_GPL vmlinux 0x78ee411c dma_buf_export -EXPORT_SYMBOL_GPL vmlinux 0x78f0222f handle_level_irq -EXPORT_SYMBOL_GPL vmlinux 0x7915ff53 component_bind_all +EXPORT_SYMBOL_GPL vmlinux 0x78e6398e transport_destroy_device +EXPORT_SYMBOL_GPL vmlinux 0x78fec121 uart_console_write +EXPORT_SYMBOL_GPL vmlinux 0x79142c90 devm_regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x7917cb72 __traceiter_xdp_exception +EXPORT_SYMBOL_GPL vmlinux 0x7918989e crypto_register_instance EXPORT_SYMBOL_GPL vmlinux 0x7918d817 memory_failure -EXPORT_SYMBOL_GPL vmlinux 0x791fe9fa udp_cmsg_send +EXPORT_SYMBOL_GPL vmlinux 0x791f95ef __bio_add_page 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 0x7948bccf pwm_put EXPORT_SYMBOL_GPL vmlinux 0x794b7271 orderly_reboot -EXPORT_SYMBOL_GPL vmlinux 0x794c1aea of_clk_set_defaults -EXPORT_SYMBOL_GPL vmlinux 0x794f56ab fscrypt_set_context -EXPORT_SYMBOL_GPL vmlinux 0x7962714d hwmon_device_register -EXPORT_SYMBOL_GPL vmlinux 0x7977fec6 fwnode_graph_get_remote_port_parent -EXPORT_SYMBOL_GPL vmlinux 0x7981164c device_set_of_node_from_dev -EXPORT_SYMBOL_GPL vmlinux 0x79841e6b modify_user_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x798694e6 tps6586x_write -EXPORT_SYMBOL_GPL vmlinux 0x798c25c5 __traceiter_detach_device_from_domain -EXPORT_SYMBOL_GPL vmlinux 0x79a420d4 dw_pcie_write_dbi -EXPORT_SYMBOL_GPL vmlinux 0x79d75b1d pm_runtime_set_autosuspend_delay +EXPORT_SYMBOL_GPL vmlinux 0x795509d4 wm831x_auxadc_read +EXPORT_SYMBOL_GPL vmlinux 0x79654e8f devm_regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x796ba25e of_devfreq_cooling_register_power +EXPORT_SYMBOL_GPL vmlinux 0x79749458 of_platform_populate +EXPORT_SYMBOL_GPL vmlinux 0x797859e2 usb_kill_urb +EXPORT_SYMBOL_GPL vmlinux 0x7992d084 pinctrl_pm_select_idle_state +EXPORT_SYMBOL_GPL vmlinux 0x799782dd __regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0x79a15153 irq_chip_set_wake_parent +EXPORT_SYMBOL_GPL vmlinux 0x79a85491 bpf_trace_run1 +EXPORT_SYMBOL_GPL vmlinux 0x79ba69e4 debugfs_create_regset32 +EXPORT_SYMBOL_GPL vmlinux 0x79c48e83 dm_disk +EXPORT_SYMBOL_GPL vmlinux 0x79c5311c crypto_shash_alg_has_setkey +EXPORT_SYMBOL_GPL vmlinux 0x79c5faf6 inet_send_prepare +EXPORT_SYMBOL_GPL vmlinux 0x79c65597 pci_set_host_bridge_release +EXPORT_SYMBOL_GPL vmlinux 0x79cbdae4 bio_start_io_acct_time EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park -EXPORT_SYMBOL_GPL vmlinux 0x79e2e234 sch_frag_xmit_hook -EXPORT_SYMBOL_GPL vmlinux 0x79ec1b7e usb_unlocked_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x79e9206b serdev_device_add +EXPORT_SYMBOL_GPL vmlinux 0x79eec320 pci_sriov_set_totalvfs EXPORT_SYMBOL_GPL vmlinux 0x79f697e4 lzorle1x_1_compress -EXPORT_SYMBOL_GPL vmlinux 0x79fdf4b5 clk_hw_set_parent -EXPORT_SYMBOL_GPL vmlinux 0x7a063337 wm8350_block_read -EXPORT_SYMBOL_GPL vmlinux 0x7a1150e8 pwm_capture -EXPORT_SYMBOL_GPL vmlinux 0x7a26646f iommu_group_add_device -EXPORT_SYMBOL_GPL vmlinux 0x7a2a904c gpiochip_add_data_with_key +EXPORT_SYMBOL_GPL vmlinux 0x79f97fb4 nvdimm_has_flush +EXPORT_SYMBOL_GPL vmlinux 0x7a062504 crypto_alloc_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x7a0da537 regmap_get_raw_read_max +EXPORT_SYMBOL_GPL vmlinux 0x7a139d46 fsverity_prepare_setattr EXPORT_SYMBOL_GPL vmlinux 0x7a33f504 power_supply_find_ocv2cap_table -EXPORT_SYMBOL_GPL vmlinux 0x7a4054e2 regulator_unregister -EXPORT_SYMBOL_GPL vmlinux 0x7a48a91f iomap_page_mkwrite -EXPORT_SYMBOL_GPL vmlinux 0x7a5e72dc max8997_read_reg +EXPORT_SYMBOL_GPL vmlinux 0x7a5baa5e pm_clk_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7a60f234 devm_kfree +EXPORT_SYMBOL_GPL vmlinux 0x7a6be8d3 __devm_spi_alloc_controller +EXPORT_SYMBOL_GPL vmlinux 0x7a6ca1ef led_get_default_pattern EXPORT_SYMBOL_GPL vmlinux 0x7a73e605 wm831x_isinkv_values -EXPORT_SYMBOL_GPL vmlinux 0x7a762e99 devlink_port_param_driverinit_value_get +EXPORT_SYMBOL_GPL vmlinux 0x7a7afaaf int_active_memcg +EXPORT_SYMBOL_GPL vmlinux 0x7a803235 __devm_regmap_init_mmio_clk EXPORT_SYMBOL_GPL vmlinux 0x7a81541b async_synchronize_cookie -EXPORT_SYMBOL_GPL vmlinux 0x7a8a769a skb_segment_list -EXPORT_SYMBOL_GPL vmlinux 0x7a8ca8d4 skb_segment +EXPORT_SYMBOL_GPL vmlinux 0x7a92eff2 fwnode_get_phy_mode EXPORT_SYMBOL_GPL vmlinux 0x7a944007 rcu_idle_enter EXPORT_SYMBOL_GPL vmlinux 0x7a98f4b4 copy_from_user_nofault EXPORT_SYMBOL_GPL vmlinux 0x7a9e4c23 software_node_register_node_group -EXPORT_SYMBOL_GPL vmlinux 0x7aa740a6 vas_rx_win_open -EXPORT_SYMBOL_GPL vmlinux 0x7ab5c76c led_trigger_set -EXPORT_SYMBOL_GPL vmlinux 0x7ab9ead6 srp_stop_rport_timers +EXPORT_SYMBOL_GPL vmlinux 0x7aa02c98 crypto_alloc_base +EXPORT_SYMBOL_GPL vmlinux 0x7aa78466 clk_hw_get_parent_index +EXPORT_SYMBOL_GPL vmlinux 0x7aa9082e pm_runtime_set_memalloc_noio +EXPORT_SYMBOL_GPL vmlinux 0x7ab7b2f9 power_supply_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x7abb0d64 devfreq_event_add_edev EXPORT_SYMBOL_GPL vmlinux 0x7abf441b ehci_cf_port_reset_rwsem EXPORT_SYMBOL_GPL vmlinux 0x7ac722bd phy_all_ports_features_array -EXPORT_SYMBOL_GPL vmlinux 0x7ac723a6 device_link_add EXPORT_SYMBOL_GPL vmlinux 0x7ad02a41 asn1_encode_tag EXPORT_SYMBOL_GPL vmlinux 0x7ad1ded1 pinctrl_register_mappings -EXPORT_SYMBOL_GPL vmlinux 0x7ad42d17 led_trigger_write -EXPORT_SYMBOL_GPL vmlinux 0x7ae14a4d devm_spi_register_controller -EXPORT_SYMBOL_GPL vmlinux 0x7aeb9f11 blk_mq_unfreeze_queue -EXPORT_SYMBOL_GPL vmlinux 0x7aebe827 sdio_disable_func +EXPORT_SYMBOL_GPL vmlinux 0x7ad69a82 divider_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0x7ae29888 __traceiter_br_fdb_external_learn_add +EXPORT_SYMBOL_GPL vmlinux 0x7ae53b16 balloon_page_list_enqueue +EXPORT_SYMBOL_GPL vmlinux 0x7ae99490 __kernel_write +EXPORT_SYMBOL_GPL vmlinux 0x7afaafd1 paste_selection EXPORT_SYMBOL_GPL vmlinux 0x7afcb7db __kprobe_event_add_fields -EXPORT_SYMBOL_GPL vmlinux 0x7afe2fe4 icc_node_add -EXPORT_SYMBOL_GPL vmlinux 0x7aff46d3 component_unbind_all -EXPORT_SYMBOL_GPL vmlinux 0x7b03d066 cpufreq_cooling_unregister -EXPORT_SYMBOL_GPL vmlinux 0x7b0ece06 vfio_pci_core_sriov_configure +EXPORT_SYMBOL_GPL vmlinux 0x7b0fd8c6 nexthop_find_by_id EXPORT_SYMBOL_GPL vmlinux 0x7b178afe unlock_system_sleep -EXPORT_SYMBOL_GPL vmlinux 0x7b18df54 netlink_remove_tap +EXPORT_SYMBOL_GPL vmlinux 0x7b1c0da2 usb_queue_reset_device EXPORT_SYMBOL_GPL vmlinux 0x7b1df89f pci_address_to_pio -EXPORT_SYMBOL_GPL vmlinux 0x7b1ebca9 i2c_dw_prepare_clk -EXPORT_SYMBOL_GPL vmlinux 0x7b28748c devm_rtc_nvmem_register -EXPORT_SYMBOL_GPL vmlinux 0x7b29c135 get_slice_psize -EXPORT_SYMBOL_GPL vmlinux 0x7b46944e virtio_device_freeze +EXPORT_SYMBOL_GPL vmlinux 0x7b3bf379 pinctrl_find_gpio_range_from_pin +EXPORT_SYMBOL_GPL vmlinux 0x7b412f46 devm_regmap_field_bulk_alloc EXPORT_SYMBOL_GPL vmlinux 0x7b4ff8f4 badrange_forget -EXPORT_SYMBOL_GPL vmlinux 0x7b4ffd3b relay_late_setup_files +EXPORT_SYMBOL_GPL vmlinux 0x7b54687c od_register_powersave_bias_handler EXPORT_SYMBOL_GPL vmlinux 0x7b5a4926 sha1_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x7b5ec4e4 tty_buffer_set_limit +EXPORT_SYMBOL_GPL vmlinux 0x7b75d498 pci_user_read_config_word EXPORT_SYMBOL_GPL vmlinux 0x7b783824 ppc_breakpoint_available -EXPORT_SYMBOL_GPL vmlinux 0x7b8a3551 synth_event_trace_start +EXPORT_SYMBOL_GPL vmlinux 0x7b861ca2 usb_add_hcd +EXPORT_SYMBOL_GPL vmlinux 0x7b8bc2e9 clk_hw_get_parent_by_index EXPORT_SYMBOL_GPL vmlinux 0x7b8ea197 ethtool_params_from_link_mode -EXPORT_SYMBOL_GPL vmlinux 0x7b946f5b tcp_done +EXPORT_SYMBOL_GPL vmlinux 0x7b93f715 serial8250_em485_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7b959521 pwm_capture EXPORT_SYMBOL_GPL vmlinux 0x7b9793a2 get_cpu_idle_time_us -EXPORT_SYMBOL_GPL vmlinux 0x7ba4168b fwnode_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x7b9c9f3b netlink_strict_get_check +EXPORT_SYMBOL_GPL vmlinux 0x7b9fb1a2 find_pid_ns EXPORT_SYMBOL_GPL vmlinux 0x7bb045a7 __request_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0x7bb1c5b5 inet_csk_listen_stop -EXPORT_SYMBOL_GPL vmlinux 0x7bcf58a1 acct_bioset_init -EXPORT_SYMBOL_GPL vmlinux 0x7bdc288e clockevents_register_device -EXPORT_SYMBOL_GPL vmlinux 0x7be6857c dev_pm_genpd_set_next_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x7bef3f63 xhci_run -EXPORT_SYMBOL_GPL vmlinux 0x7bf37c52 fib4_rule_default -EXPORT_SYMBOL_GPL vmlinux 0x7c0d923d tpm_calc_ordinal_duration -EXPORT_SYMBOL_GPL vmlinux 0x7c19489a pinctrl_find_gpio_range_from_pin_nolock +EXPORT_SYMBOL_GPL vmlinux 0x7bcc5811 irq_chip_request_resources_parent +EXPORT_SYMBOL_GPL vmlinux 0x7bd5d43c ata_cable_unknown +EXPORT_SYMBOL_GPL vmlinux 0x7bd9ff7c driver_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x7be0fd17 nvmem_cell_read_variable_le_u64 +EXPORT_SYMBOL_GPL vmlinux 0x7bea61c2 regulator_set_load +EXPORT_SYMBOL_GPL vmlinux 0x7c00575f ata_sas_port_suspend EXPORT_SYMBOL_GPL vmlinux 0x7c291e86 show_rcu_tasks_trace_gp_kthread -EXPORT_SYMBOL_GPL vmlinux 0x7c3447af of_irq_parse_and_map_pci +EXPORT_SYMBOL_GPL vmlinux 0x7c33c357 pinctrl_get EXPORT_SYMBOL_GPL vmlinux 0x7c37bc89 pseries_ioei_notifier_list EXPORT_SYMBOL_GPL vmlinux 0x7c3d8a4b icc_bulk_put -EXPORT_SYMBOL_GPL vmlinux 0x7c42c9c6 class_destroy -EXPORT_SYMBOL_GPL vmlinux 0x7c6374bc sdio_memcpy_toio +EXPORT_SYMBOL_GPL vmlinux 0x7c437eb2 __fsnotify_parent +EXPORT_SYMBOL_GPL vmlinux 0x7c4450e0 icst_clk_register +EXPORT_SYMBOL_GPL vmlinux 0x7c4836b9 sdio_retune_release +EXPORT_SYMBOL_GPL vmlinux 0x7c54340e usb_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x7c58a227 __traceiter_pelt_thermal_tp +EXPORT_SYMBOL_GPL vmlinux 0x7c6c4087 usb_hub_find_child EXPORT_SYMBOL_GPL vmlinux 0x7c73a9e0 klist_add_head -EXPORT_SYMBOL_GPL vmlinux 0x7c8130dc usb_deregister_dev +EXPORT_SYMBOL_GPL vmlinux 0x7c75166a usb_enable_ltm +EXPORT_SYMBOL_GPL vmlinux 0x7c7b8976 syscon_regmap_lookup_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x7c7c23bf of_remove_property +EXPORT_SYMBOL_GPL vmlinux 0x7c831dc8 fat_search_long +EXPORT_SYMBOL_GPL vmlinux 0x7c92a422 pinctrl_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x7c94b014 crypto_ahash_setkey EXPORT_SYMBOL_GPL vmlinux 0x7c9a7371 clk_prepare +EXPORT_SYMBOL_GPL vmlinux 0x7ca46ca5 dev_queue_xmit_nit +EXPORT_SYMBOL_GPL vmlinux 0x7cad5995 regulator_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x7cb51604 spi_mem_dirmap_read +EXPORT_SYMBOL_GPL vmlinux 0x7cbe6e27 iommu_tce_xchg_no_kill +EXPORT_SYMBOL_GPL vmlinux 0x7ccac0b7 da9052_disable_irq_nosync EXPORT_SYMBOL_GPL vmlinux 0x7cceaf92 zs_pool_stats EXPORT_SYMBOL_GPL vmlinux 0x7cd6f042 cpufreq_get_current_driver -EXPORT_SYMBOL_GPL vmlinux 0x7ce3539f devres_close_group -EXPORT_SYMBOL_GPL vmlinux 0x7ce9b939 irq_chip_enable_parent +EXPORT_SYMBOL_GPL vmlinux 0x7cd7086a mbox_chan_txdone +EXPORT_SYMBOL_GPL vmlinux 0x7cdd8ed8 rio_free_net EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0x7cecd285 irq_set_default_host -EXPORT_SYMBOL_GPL vmlinux 0x7cf37ef3 sdio_claim_irq -EXPORT_SYMBOL_GPL vmlinux 0x7cf4a50d debugfs_create_atomic_t -EXPORT_SYMBOL_GPL vmlinux 0x7d00855b exportfs_encode_fh +EXPORT_SYMBOL_GPL vmlinux 0x7cef7074 irq_set_chip_and_handler_name EXPORT_SYMBOL_GPL vmlinux 0x7d00c65b nd_synchronize -EXPORT_SYMBOL_GPL vmlinux 0x7d05dd8c pwm_request_from_chip -EXPORT_SYMBOL_GPL vmlinux 0x7d0768d1 md_find_rdev_nr_rcu -EXPORT_SYMBOL_GPL vmlinux 0x7d1b48b5 bpf_trace_run6 +EXPORT_SYMBOL_GPL vmlinux 0x7d0d40c3 regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0x7d142cb7 bio_iov_iter_get_pages EXPORT_SYMBOL_GPL vmlinux 0x7d1bb1d4 tnum_strn -EXPORT_SYMBOL_GPL vmlinux 0x7d27ecba devm_kmalloc -EXPORT_SYMBOL_GPL vmlinux 0x7d29c753 __fsnotify_inode_delete -EXPORT_SYMBOL_GPL vmlinux 0x7d3259ac inet6_destroy_sock -EXPORT_SYMBOL_GPL vmlinux 0x7d4d5577 wm831x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x7d1fa6cc dm_internal_suspend_noflush +EXPORT_SYMBOL_GPL vmlinux 0x7d2ac9e6 ata_link_abort +EXPORT_SYMBOL_GPL vmlinux 0x7d33b77f dma_free_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x7d3a85dd hwmon_device_register +EXPORT_SYMBOL_GPL vmlinux 0x7d3c2957 dm_internal_suspend_fast +EXPORT_SYMBOL_GPL vmlinux 0x7d452b22 of_genpd_add_provider_simple +EXPORT_SYMBOL_GPL vmlinux 0x7d47c149 divider_ro_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0x7d4abe38 subsys_system_register +EXPORT_SYMBOL_GPL vmlinux 0x7d4d33b3 genphy_c45_read_link +EXPORT_SYMBOL_GPL vmlinux 0x7d54d2e9 PageHuge EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq -EXPORT_SYMBOL_GPL vmlinux 0x7d6400e2 devm_bitmap_alloc -EXPORT_SYMBOL_GPL vmlinux 0x7d643c1a crypto_register_aeads -EXPORT_SYMBOL_GPL vmlinux 0x7d809966 crypto_dequeue_request -EXPORT_SYMBOL_GPL vmlinux 0x7dacdbee wm8350_gpio_config -EXPORT_SYMBOL_GPL vmlinux 0x7dc6a60a perf_aux_output_end -EXPORT_SYMBOL_GPL vmlinux 0x7dd61a6b ip6_sk_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x7d643409 debugfs_rename +EXPORT_SYMBOL_GPL vmlinux 0x7d81712a wakeup_source_register +EXPORT_SYMBOL_GPL vmlinux 0x7d98aa3c pci_pri_supported +EXPORT_SYMBOL_GPL vmlinux 0x7d9e152c dma_alloc_pages +EXPORT_SYMBOL_GPL vmlinux 0x7da057ea of_i2c_setup_smbus_alert +EXPORT_SYMBOL_GPL vmlinux 0x7dd5389f regmap_add_irq_chip_fwnode EXPORT_SYMBOL_GPL vmlinux 0x7dda30af unregister_tracepoint_module_notifier EXPORT_SYMBOL_GPL vmlinux 0x7ddd5fd4 idr_find EXPORT_SYMBOL_GPL vmlinux 0x7de6cc23 io_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x7df5007a wm831x_auxadc_read -EXPORT_SYMBOL_GPL vmlinux 0x7df7e1fe device_link_remove +EXPORT_SYMBOL_GPL vmlinux 0x7dee528e fsnotify_init_mark EXPORT_SYMBOL_GPL vmlinux 0x7dff2a0c kvmhv_load_guest_pmu -EXPORT_SYMBOL_GPL vmlinux 0x7dffb2cd rio_request_dma -EXPORT_SYMBOL_GPL vmlinux 0x7e062381 pci_host_common_remove EXPORT_SYMBOL_GPL vmlinux 0x7e07f6c7 reserve_pmc_hardware EXPORT_SYMBOL_GPL vmlinux 0x7e1e1bd3 iommu_tce_check_gpa -EXPORT_SYMBOL_GPL vmlinux 0x7e23c41b dax_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x7e231886 irq_chip_retrigger_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0x7e24ff25 pwm_set_chip_data +EXPORT_SYMBOL_GPL vmlinux 0x7e2d84df task_cgroup_path EXPORT_SYMBOL_GPL vmlinux 0x7e3bdecd __ftrace_vprintk -EXPORT_SYMBOL_GPL vmlinux 0x7e4685e5 clk_hw_get_name -EXPORT_SYMBOL_GPL vmlinux 0x7e4f89cd of_genpd_add_provider_onecell +EXPORT_SYMBOL_GPL vmlinux 0x7e3ebd41 wm831x_auxadc_read_uv +EXPORT_SYMBOL_GPL vmlinux 0x7e45fca2 filemap_range_needs_writeback +EXPORT_SYMBOL_GPL vmlinux 0x7e5d5920 vp_modern_get_features EXPORT_SYMBOL_GPL vmlinux 0x7e5db80b pstore_name_to_type +EXPORT_SYMBOL_GPL vmlinux 0x7e610eb8 relay_flush EXPORT_SYMBOL_GPL vmlinux 0x7e64181d usb_calc_bus_time -EXPORT_SYMBOL_GPL vmlinux 0x7e7e20ff __clocksource_update_freq_scale -EXPORT_SYMBOL_GPL vmlinux 0x7e7e3ef9 dm_post_suspending +EXPORT_SYMBOL_GPL vmlinux 0x7e6441a5 irq_generic_chip_ops EXPORT_SYMBOL_GPL vmlinux 0x7e7e3f58 ring_buffer_reset_cpu -EXPORT_SYMBOL_GPL vmlinux 0x7e834480 crypto_skcipher_decrypt -EXPORT_SYMBOL_GPL vmlinux 0x7e876aa6 __ndisc_fill_addr_option +EXPORT_SYMBOL_GPL vmlinux 0x7e854673 rio_unmap_outb_region +EXPORT_SYMBOL_GPL vmlinux 0x7e896a97 get_dev_pagemap EXPORT_SYMBOL_GPL vmlinux 0x7e917894 __SCK__tp_func_unmap -EXPORT_SYMBOL_GPL vmlinux 0x7e9713fb fuse_dev_fiq_ops +EXPORT_SYMBOL_GPL vmlinux 0x7ea6d804 regmap_fields_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0x7ea6e2db powercap_register_zone EXPORT_SYMBOL_GPL vmlinux 0x7eb1795e __tracepoint_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0x7eb2462c xfrm_audit_state_notfound_simple EXPORT_SYMBOL_GPL vmlinux 0x7eb808d0 add_cpu -EXPORT_SYMBOL_GPL vmlinux 0x7ebaf689 devm_pm_opp_set_supported_hw -EXPORT_SYMBOL_GPL vmlinux 0x7ebe649b __traceiter_rpm_suspend -EXPORT_SYMBOL_GPL vmlinux 0x7ed22149 ata_std_bios_param -EXPORT_SYMBOL_GPL vmlinux 0x7ed7b1cd of_genpd_remove_subdomain -EXPORT_SYMBOL_GPL vmlinux 0x7ee1185b devm_release_action -EXPORT_SYMBOL_GPL vmlinux 0x7ee1ca76 sdio_retune_crc_disable +EXPORT_SYMBOL_GPL vmlinux 0x7ec6e54f fuse_request_end +EXPORT_SYMBOL_GPL vmlinux 0x7eda20ef dst_cache_get_ip6 +EXPORT_SYMBOL_GPL vmlinux 0x7ee711de crypto_aead_decrypt EXPORT_SYMBOL_GPL vmlinux 0x7eea6b8b pcap_adc_async -EXPORT_SYMBOL_GPL vmlinux 0x7effcb37 pcie_bus_configure_settings -EXPORT_SYMBOL_GPL vmlinux 0x7f389be9 wm8350_reg_lock -EXPORT_SYMBOL_GPL vmlinux 0x7f42a7e6 clk_hw_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x7ef21000 da9052_adc_read_temp +EXPORT_SYMBOL_GPL vmlinux 0x7ef24965 rtc_initialize_alarm +EXPORT_SYMBOL_GPL vmlinux 0x7f0dcc3d crypto_unregister_kpp +EXPORT_SYMBOL_GPL vmlinux 0x7f1c9313 rio_mport_class +EXPORT_SYMBOL_GPL vmlinux 0x7f20a2f1 irq_get_default_host +EXPORT_SYMBOL_GPL vmlinux 0x7f25ee3f __platform_create_bundle +EXPORT_SYMBOL_GPL vmlinux 0x7f343f27 of_console_check +EXPORT_SYMBOL_GPL vmlinux 0x7f45c773 xdp_convert_zc_to_xdp_frame +EXPORT_SYMBOL_GPL vmlinux 0x7f48e2b2 debugfs_create_x16 +EXPORT_SYMBOL_GPL vmlinux 0x7f4c9ca5 fsl_mc_device_group +EXPORT_SYMBOL_GPL vmlinux 0x7f4f3f38 ptp_parse_header EXPORT_SYMBOL_GPL vmlinux 0x7f524652 unregister_kprobe -EXPORT_SYMBOL_GPL vmlinux 0x7f5ce47c handle_fasteoi_nmi -EXPORT_SYMBOL_GPL vmlinux 0x7f628999 irq_domain_translate_twocell +EXPORT_SYMBOL_GPL vmlinux 0x7f547a0a bus_rescan_devices +EXPORT_SYMBOL_GPL vmlinux 0x7f555185 fsverity_ioctl_measure +EXPORT_SYMBOL_GPL vmlinux 0x7f58f45a pinctrl_find_and_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x7f6d9b9e sfp_bus_add_upstream +EXPORT_SYMBOL_GPL vmlinux 0x7f6dd8a0 of_mm_gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0x7f6e5c7e devlink_port_param_driverinit_value_get +EXPORT_SYMBOL_GPL vmlinux 0x7f7200d4 uprobe_register EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata -EXPORT_SYMBOL_GPL vmlinux 0x7f7e7509 regulator_get_error_flags -EXPORT_SYMBOL_GPL vmlinux 0x7f81eecf mbox_free_channel -EXPORT_SYMBOL_GPL vmlinux 0x7f8a98c0 bsg_job_put -EXPORT_SYMBOL_GPL vmlinux 0x7fa17e78 rt_mutex_lock_interruptible -EXPORT_SYMBOL_GPL vmlinux 0x7fa3ac01 fib_alias_hw_flags_set -EXPORT_SYMBOL_GPL vmlinux 0x7fa8f03c sched_setattr_nocheck +EXPORT_SYMBOL_GPL vmlinux 0x7f8bc1b3 ip_icmp_error_rfc4884 +EXPORT_SYMBOL_GPL vmlinux 0x7f958372 __traceiter_devlink_hwerr +EXPORT_SYMBOL_GPL vmlinux 0x7f96413e firmware_kobj +EXPORT_SYMBOL_GPL vmlinux 0x7f9b93bb iptunnel_handle_offloads +EXPORT_SYMBOL_GPL vmlinux 0x7f9dbd56 sata_link_hardreset EXPORT_SYMBOL_GPL vmlinux 0x7fafdec9 clk_fixed_factor_ops -EXPORT_SYMBOL_GPL vmlinux 0x7fd0741e bsg_setup_queue -EXPORT_SYMBOL_GPL vmlinux 0x7fe05568 mpc8xxx_spi_rx_buf_u32 -EXPORT_SYMBOL_GPL vmlinux 0x7ff9fe1b devm_bitmap_zalloc -EXPORT_SYMBOL_GPL vmlinux 0x7ffeafdf da903x_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x801325a4 irq_domain_disconnect_hierarchy -EXPORT_SYMBOL_GPL vmlinux 0x80143211 crypto_alloc_base -EXPORT_SYMBOL_GPL vmlinux 0x80172d92 iommu_present -EXPORT_SYMBOL_GPL vmlinux 0x8017e309 crypto_ahash_setkey -EXPORT_SYMBOL_GPL vmlinux 0x802e6e77 relay_file_operations -EXPORT_SYMBOL_GPL vmlinux 0x802f2d04 eeh_dev_check_failure -EXPORT_SYMBOL_GPL vmlinux 0x80495b1e cpufreq_generic_attr +EXPORT_SYMBOL_GPL vmlinux 0x7fee68b8 pinctrl_utils_add_map_mux +EXPORT_SYMBOL_GPL vmlinux 0x800409d8 pinctrl_dev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x801402af pci_walk_bus +EXPORT_SYMBOL_GPL vmlinux 0x802ad156 dev_pm_genpd_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0x802c33e6 of_detach_node +EXPORT_SYMBOL_GPL vmlinux 0x803ee0b3 __pci_hp_initialize EXPORT_SYMBOL_GPL vmlinux 0x805667cf devlink_fmsg_u64_put +EXPORT_SYMBOL_GPL vmlinux 0x805ffc2c pci_epc_set_bar +EXPORT_SYMBOL_GPL vmlinux 0x8069c877 xdp_rxq_info_unused +EXPORT_SYMBOL_GPL vmlinux 0x8072986e extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x80759661 __skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x807deafa phy_package_join EXPORT_SYMBOL_GPL vmlinux 0x807fdcc4 call_rcu_tasks_rude -EXPORT_SYMBOL_GPL vmlinux 0x8085f16b unmap_mapping_pages +EXPORT_SYMBOL_GPL vmlinux 0x808beed6 __traceiter_block_rq_remap EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested -EXPORT_SYMBOL_GPL vmlinux 0x80b05900 vfio_pci_register_dev_region -EXPORT_SYMBOL_GPL vmlinux 0x80b5fefa xhci_check_bandwidth -EXPORT_SYMBOL_GPL vmlinux 0x80b6ed8c rio_release_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x80ab7bce tcp_reno_ssthresh +EXPORT_SYMBOL_GPL vmlinux 0x80b99700 gpiod_export EXPORT_SYMBOL_GPL vmlinux 0x80badff4 __tracepoint_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0x80c0025c register_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x80c4adf8 attribute_container_classdev_to_container EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close -EXPORT_SYMBOL_GPL vmlinux 0x80c71434 to_nd_region +EXPORT_SYMBOL_GPL vmlinux 0x80c6fbc6 gpiod_get_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x80cc5402 devm_reset_controller_register EXPORT_SYMBOL_GPL vmlinux 0x80d5e57a mpi_free -EXPORT_SYMBOL_GPL vmlinux 0x80dac9db locks_release_private -EXPORT_SYMBOL_GPL vmlinux 0x80dccdf8 fuse_get_unique -EXPORT_SYMBOL_GPL vmlinux 0x80e1fb57 device_for_each_child -EXPORT_SYMBOL_GPL vmlinux 0x80fcbae8 device_add_groups -EXPORT_SYMBOL_GPL vmlinux 0x81077602 phy_set_media +EXPORT_SYMBOL_GPL vmlinux 0x80f2b98f umd_unload_blob +EXPORT_SYMBOL_GPL vmlinux 0x80f38440 __mdiobus_modify_changed +EXPORT_SYMBOL_GPL vmlinux 0x80f661f0 spi_mem_get_name +EXPORT_SYMBOL_GPL vmlinux 0x810e5b78 sk_msg_free_nocharge EXPORT_SYMBOL_GPL vmlinux 0x81117221 do_h_rpt_invalidate_prt +EXPORT_SYMBOL_GPL vmlinux 0x8113bb4b driver_for_each_device EXPORT_SYMBOL_GPL vmlinux 0x811dc334 usb_unregister_notify -EXPORT_SYMBOL_GPL vmlinux 0x814d4599 sysfs_groups_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x8140c186 shmem_truncate_range +EXPORT_SYMBOL_GPL vmlinux 0x814ffc84 xfrm_output +EXPORT_SYMBOL_GPL vmlinux 0x81533e38 crypto_mod_put EXPORT_SYMBOL_GPL vmlinux 0x815588a6 clk_enable +EXPORT_SYMBOL_GPL vmlinux 0x81586a9e of_pci_address_to_resource EXPORT_SYMBOL_GPL vmlinux 0x815fda83 sed_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x81621107 icc_get EXPORT_SYMBOL_GPL vmlinux 0x81674f78 btree_grim_visitor EXPORT_SYMBOL_GPL vmlinux 0x816a41ca cpufreq_update_limits -EXPORT_SYMBOL_GPL vmlinux 0x816dd509 sdio_writeb +EXPORT_SYMBOL_GPL vmlinux 0x81748a52 synth_event_trace_start +EXPORT_SYMBOL_GPL vmlinux 0x81775263 __traceiter_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0x817902ff mmc_send_tuning +EXPORT_SYMBOL_GPL vmlinux 0x817ee55b mpic_subsys EXPORT_SYMBOL_GPL vmlinux 0x8180cede asn1_encode_sequence -EXPORT_SYMBOL_GPL vmlinux 0x81870e4f sysfs_add_device_to_node -EXPORT_SYMBOL_GPL vmlinux 0x819ee19a of_property_read_variable_u32_array -EXPORT_SYMBOL_GPL vmlinux 0x81a6bb34 generic_access_phys +EXPORT_SYMBOL_GPL vmlinux 0x81912ceb pci_epc_mem_exit +EXPORT_SYMBOL_GPL vmlinux 0x819142d6 vp_modern_remove +EXPORT_SYMBOL_GPL vmlinux 0x8195f3aa watchdog_notify_pretimeout +EXPORT_SYMBOL_GPL vmlinux 0x81a7d76a pm_runtime_irq_safe EXPORT_SYMBOL_GPL vmlinux 0x81a7f541 percpu_ref_init -EXPORT_SYMBOL_GPL vmlinux 0x81cf80be spi_take_timestamp_post -EXPORT_SYMBOL_GPL vmlinux 0x81d2f077 genphy_c45_loopback -EXPORT_SYMBOL_GPL vmlinux 0x81e385de dm_table_device_name -EXPORT_SYMBOL_GPL vmlinux 0x81f1d09a irq_domain_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x81c75a74 dev_pm_set_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x81d3211f bpf_offload_dev_match +EXPORT_SYMBOL_GPL vmlinux 0x81e668d7 fsstack_copy_attr_all EXPORT_SYMBOL_GPL vmlinux 0x81f372a2 unregister_ftrace_export -EXPORT_SYMBOL_GPL vmlinux 0x820a100c __regmap_init -EXPORT_SYMBOL_GPL vmlinux 0x820b59c3 pinmux_generic_get_function_groups -EXPORT_SYMBOL_GPL vmlinux 0x820ed3a8 regulator_bulk_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x821d8d7e dev_pm_opp_put_opp_table +EXPORT_SYMBOL_GPL vmlinux 0x81f56f42 query_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0x81f92b0a xfrm_output_resume +EXPORT_SYMBOL_GPL vmlinux 0x81fff60f usb_hub_claim_port +EXPORT_SYMBOL_GPL vmlinux 0x82007268 inet_csk_route_child_sock +EXPORT_SYMBOL_GPL vmlinux 0x820330d1 stmpe_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x820b002f lwtunnel_get_encap_size +EXPORT_SYMBOL_GPL vmlinux 0x820bd65d device_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x821196b0 key_type_logon +EXPORT_SYMBOL_GPL vmlinux 0x82146e9f __pm_runtime_suspend EXPORT_SYMBOL_GPL vmlinux 0x82226c53 pinctrl_unregister_mappings -EXPORT_SYMBOL_GPL vmlinux 0x822eb60a nvmem_register -EXPORT_SYMBOL_GPL vmlinux 0x82371568 __traceiter_pelt_irq_tp -EXPORT_SYMBOL_GPL vmlinux 0x823b8d38 ip6_redirect -EXPORT_SYMBOL_GPL vmlinux 0x824ee6ad transport_class_register -EXPORT_SYMBOL_GPL vmlinux 0x8251b4ae wm8400_reset_codec_reg_cache -EXPORT_SYMBOL_GPL vmlinux 0x8258f5a6 cpu_add_dev_attr -EXPORT_SYMBOL_GPL vmlinux 0x8268a6c2 ata_bmdma_dumb_qc_prep -EXPORT_SYMBOL_GPL vmlinux 0x8269ff6b tcp_twsk_destructor -EXPORT_SYMBOL_GPL vmlinux 0x82747f5e __nf_ip6_route -EXPORT_SYMBOL_GPL vmlinux 0x8282ca29 anon_transport_class_register -EXPORT_SYMBOL_GPL vmlinux 0x82849546 fb_deferred_io_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x8242b5a6 perf_trace_run_bpf_submit +EXPORT_SYMBOL_GPL vmlinux 0x824396df sysfs_update_groups +EXPORT_SYMBOL_GPL vmlinux 0x824be624 tty_ldisc_ref +EXPORT_SYMBOL_GPL vmlinux 0x824d22c8 sk_psock_drop +EXPORT_SYMBOL_GPL vmlinux 0x8252e0ef css_next_descendant_pre +EXPORT_SYMBOL_GPL vmlinux 0x8274c09f usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0x827fddd0 tcp_twsk_unique +EXPORT_SYMBOL_GPL vmlinux 0x8292288d devm_platform_ioremap_resource_byname EXPORT_SYMBOL_GPL vmlinux 0x82a80545 __SCK__tp_func_fdb_delete -EXPORT_SYMBOL_GPL vmlinux 0x82ba5d4c of_irq_get_byname EXPORT_SYMBOL_GPL vmlinux 0x82bbf30b __tracepoint_map -EXPORT_SYMBOL_GPL vmlinux 0x82d00ae1 evict_inodes +EXPORT_SYMBOL_GPL vmlinux 0x82c19d37 fwnode_graph_get_remote_port_parent +EXPORT_SYMBOL_GPL vmlinux 0x82c7d229 fsnotify_destroy_mark EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure -EXPORT_SYMBOL_GPL vmlinux 0x82ee89f1 iommu_fwspec_add_ids -EXPORT_SYMBOL_GPL vmlinux 0x82f609d2 security_path_symlink +EXPORT_SYMBOL_GPL vmlinux 0x82d79d34 register_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0x82f59340 dev_pm_opp_set_regulators EXPORT_SYMBOL_GPL vmlinux 0x82ff4b95 clk_hw_unregister_fixed_factor EXPORT_SYMBOL_GPL vmlinux 0x830e8e17 rhltable_init +EXPORT_SYMBOL_GPL vmlinux 0x831c22b2 usb_enable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x8337642f ata_eh_analyze_ncq_error EXPORT_SYMBOL_GPL vmlinux 0x8339df73 klist_add_behind EXPORT_SYMBOL_GPL vmlinux 0x833b5211 mce_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x833bc2dc devm_nvdimm_memremap +EXPORT_SYMBOL_GPL vmlinux 0x8345790e pm_genpd_add_device EXPORT_SYMBOL_GPL vmlinux 0x8349a895 nvmem_device_put -EXPORT_SYMBOL_GPL vmlinux 0x835689c4 kobject_uevent_env -EXPORT_SYMBOL_GPL vmlinux 0x83685733 pci_hp_remove_module_link +EXPORT_SYMBOL_GPL vmlinux 0x836b856a edac_device_handle_ce_count EXPORT_SYMBOL_GPL vmlinux 0x836d61d0 atomic_notifier_chain_register EXPORT_SYMBOL_GPL vmlinux 0x83743837 hash__has_transparent_hugepage -EXPORT_SYMBOL_GPL vmlinux 0x837f3dae __inet_lookup_listener -EXPORT_SYMBOL_GPL vmlinux 0x838dfde9 usb_add_hcd -EXPORT_SYMBOL_GPL vmlinux 0x83911855 rio_unmap_outb_region -EXPORT_SYMBOL_GPL vmlinux 0x839a9e76 cgroup_get_from_id -EXPORT_SYMBOL_GPL vmlinux 0x83ac0914 ata_sff_queue_pio_task -EXPORT_SYMBOL_GPL vmlinux 0x83b30ebe usb_phy_roothub_suspend +EXPORT_SYMBOL_GPL vmlinux 0x837a81dc devfreq_cooling_em_register +EXPORT_SYMBOL_GPL vmlinux 0x837f04c9 bd_prepare_to_claim +EXPORT_SYMBOL_GPL vmlinux 0x838c584f devres_for_each_res +EXPORT_SYMBOL_GPL vmlinux 0x8395206a dw_pcie_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x83b49de0 pci_epc_set_msix EXPORT_SYMBOL_GPL vmlinux 0x83b6b3f1 alarm_forward_now -EXPORT_SYMBOL_GPL vmlinux 0x83e2c2d6 bsg_job_get -EXPORT_SYMBOL_GPL vmlinux 0x83ecec89 devm_nvmem_cell_get -EXPORT_SYMBOL_GPL vmlinux 0x83eeedb7 exportfs_encode_inode_fh -EXPORT_SYMBOL_GPL vmlinux 0x83f2a979 put_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0x83f4d06d fat_alloc_new_dir -EXPORT_SYMBOL_GPL vmlinux 0x83facd55 devlink_params_unregister +EXPORT_SYMBOL_GPL vmlinux 0x83c288bb fuse_dev_alloc_install +EXPORT_SYMBOL_GPL vmlinux 0x83e09097 tcp_is_ulp_esp +EXPORT_SYMBOL_GPL vmlinux 0x83ef0ac6 is_nvdimm_sync +EXPORT_SYMBOL_GPL vmlinux 0x83f6e796 pfn_to_online_page +EXPORT_SYMBOL_GPL vmlinux 0x83faf9fe fat_get_dotdot_entry +EXPORT_SYMBOL_GPL vmlinux 0x83fb3d53 usb_phy_roothub_alloc +EXPORT_SYMBOL_GPL vmlinux 0x83ff6337 dev_pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x840f4acc kgdb_unregister_io_module EXPORT_SYMBOL_GPL vmlinux 0x84106f36 devlink_trap_ctx_priv -EXPORT_SYMBOL_GPL vmlinux 0x8424ffeb iommu_group_get +EXPORT_SYMBOL_GPL vmlinux 0x8416b5dd bpf_prog_sub +EXPORT_SYMBOL_GPL vmlinux 0x841bbd8f pinctrl_count_index_with_args +EXPORT_SYMBOL_GPL vmlinux 0x841dd394 pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0x841edce8 regmap_field_update_bits_base EXPORT_SYMBOL_GPL vmlinux 0x84264ced fs_umode_to_ftype -EXPORT_SYMBOL_GPL vmlinux 0x842a8efc regmap_field_free -EXPORT_SYMBOL_GPL vmlinux 0x843626cb __synth_event_gen_cmd_start -EXPORT_SYMBOL_GPL vmlinux 0x843a7faa pci_enable_pasid -EXPORT_SYMBOL_GPL vmlinux 0x84407673 i2c_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x842b0161 regulator_list_hardware_vsel +EXPORT_SYMBOL_GPL vmlinux 0x84310098 tty_get_icount +EXPORT_SYMBOL_GPL vmlinux 0x84475ca9 debugfs_create_u16 EXPORT_SYMBOL_GPL vmlinux 0x844c2f3d vfio_spapr_pci_eeh_release -EXPORT_SYMBOL_GPL vmlinux 0x844fdb3c virtio_max_dma_size +EXPORT_SYMBOL_GPL vmlinux 0x844f78a4 scsi_eh_ready_devs EXPORT_SYMBOL_GPL vmlinux 0x84502a47 blk_status_to_errno -EXPORT_SYMBOL_GPL vmlinux 0x8455c78d irq_chip_retrigger_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0x84555af3 dev_pm_opp_sync_regulators +EXPORT_SYMBOL_GPL vmlinux 0x845648e0 crypto_unregister_acomps EXPORT_SYMBOL_GPL vmlinux 0x845dbf3b scatterwalk_map_and_copy EXPORT_SYMBOL_GPL vmlinux 0x8462cb62 atapi_cmd_type -EXPORT_SYMBOL_GPL vmlinux 0x84688be3 crypto_unregister_ahashes -EXPORT_SYMBOL_GPL vmlinux 0x846b34d4 __traceiter_neigh_update -EXPORT_SYMBOL_GPL vmlinux 0x8472c9de irq_domain_xlate_onecell -EXPORT_SYMBOL_GPL vmlinux 0x8476882d i2c_new_smbus_alert_device -EXPORT_SYMBOL_GPL vmlinux 0x847d4cdc iommu_map_sg -EXPORT_SYMBOL_GPL vmlinux 0x847dd7fc ptp_parse_header -EXPORT_SYMBOL_GPL vmlinux 0x849485f4 __irq_domain_add -EXPORT_SYMBOL_GPL vmlinux 0x849aa8ba devm_regulator_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0x849d054e devm_krealloc -EXPORT_SYMBOL_GPL vmlinux 0x84a33f46 regulator_irq_helper +EXPORT_SYMBOL_GPL vmlinux 0x84748f00 class_compat_create_link +EXPORT_SYMBOL_GPL vmlinux 0x848ba91b scsi_unregister_device_handler +EXPORT_SYMBOL_GPL vmlinux 0x849abb44 bus_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x849e2920 blk_ksm_intersect_modes EXPORT_SYMBOL_GPL vmlinux 0x84a8d0eb of_changeset_revert -EXPORT_SYMBOL_GPL vmlinux 0x84db54f1 simple_attr_open -EXPORT_SYMBOL_GPL vmlinux 0x84dd38d6 pci_epc_set_msi +EXPORT_SYMBOL_GPL vmlinux 0x84b42fd0 usb_get_intf +EXPORT_SYMBOL_GPL vmlinux 0x84b8ad69 dm_device_name +EXPORT_SYMBOL_GPL vmlinux 0x84c2107f page_cache_sync_ra +EXPORT_SYMBOL_GPL vmlinux 0x84d21909 fib6_rule_default +EXPORT_SYMBOL_GPL vmlinux 0x84d95f65 blk_mq_freeze_queue_wait +EXPORT_SYMBOL_GPL vmlinux 0x84dd3450 ata_sas_port_start +EXPORT_SYMBOL_GPL vmlinux 0x84e700f4 platform_get_resource +EXPORT_SYMBOL_GPL vmlinux 0x84e95803 nvdimm_region_notify EXPORT_SYMBOL_GPL vmlinux 0x84ef27f5 synth_event_add_fields +EXPORT_SYMBOL_GPL vmlinux 0x84fb46dd tps6586x_reads EXPORT_SYMBOL_GPL vmlinux 0x8506baa8 clk_unregister_gate EXPORT_SYMBOL_GPL vmlinux 0x850bb6db devlink_health_reporter_destroy -EXPORT_SYMBOL_GPL vmlinux 0x851719d1 ohci_hub_status_data +EXPORT_SYMBOL_GPL vmlinux 0x8517a020 pinctrl_generic_get_group EXPORT_SYMBOL_GPL vmlinux 0x851e6003 usb_phy_roothub_calibrate EXPORT_SYMBOL_GPL vmlinux 0x851fe124 __SCK__tp_func_fib6_table_lookup -EXPORT_SYMBOL_GPL vmlinux 0x853f6d48 vfio_pci_core_mmap EXPORT_SYMBOL_GPL vmlinux 0x85484fe8 register_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0x85495621 dev_pm_opp_init_cpufreq_table +EXPORT_SYMBOL_GPL vmlinux 0x8552416c of_dma_simple_xlate EXPORT_SYMBOL_GPL vmlinux 0x85540ebc nvmem_cell_put -EXPORT_SYMBOL_GPL vmlinux 0x8557606a find_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0x85890165 of_clk_get_parent_name -EXPORT_SYMBOL_GPL vmlinux 0x8589fb9a serial8250_rpm_get_tx -EXPORT_SYMBOL_GPL vmlinux 0x858e175f blk_ksm_init -EXPORT_SYMBOL_GPL vmlinux 0x85a1fe62 ata_pci_bmdma_init -EXPORT_SYMBOL_GPL vmlinux 0x85a8ccd1 reset_controller_unregister -EXPORT_SYMBOL_GPL vmlinux 0x85aa0bcd of_clk_get_parent_count -EXPORT_SYMBOL_GPL vmlinux 0x85b3ed94 dma_buf_pin +EXPORT_SYMBOL_GPL vmlinux 0x855681ba pinctrl_generic_get_group_count +EXPORT_SYMBOL_GPL vmlinux 0x855cc20e of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x85612e52 wm831x_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0x8562994f ata_host_activate +EXPORT_SYMBOL_GPL vmlinux 0x85689b27 pci_restore_msi_state +EXPORT_SYMBOL_GPL vmlinux 0x85694b5c stmpe_block_write +EXPORT_SYMBOL_GPL vmlinux 0x8585557c driver_create_file +EXPORT_SYMBOL_GPL vmlinux 0x859c95b0 pci_epc_put +EXPORT_SYMBOL_GPL vmlinux 0x85ad78c0 xfrm_audit_state_icvfail +EXPORT_SYMBOL_GPL vmlinux 0x85aecaeb pci_pasid_features EXPORT_SYMBOL_GPL vmlinux 0x85b4f55e xas_set_mark -EXPORT_SYMBOL_GPL vmlinux 0x85c69d39 switchdev_handle_fdb_del_to_device -EXPORT_SYMBOL_GPL vmlinux 0x85ca5834 __put_task_struct EXPORT_SYMBOL_GPL vmlinux 0x85cdc67d proc_dou8vec_minmax -EXPORT_SYMBOL_GPL vmlinux 0x85d39eec of_clk_hw_simple_get -EXPORT_SYMBOL_GPL vmlinux 0x85da4752 dst_blackhole_mtu -EXPORT_SYMBOL_GPL vmlinux 0x85df39d8 pinctrl_add_gpio_range -EXPORT_SYMBOL_GPL vmlinux 0x85f16e51 dm_per_bio_data -EXPORT_SYMBOL_GPL vmlinux 0x85fabdd5 kvmppc_h_get_tce +EXPORT_SYMBOL_GPL vmlinux 0x85d67c8f pm_generic_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x85e9a68b devfreq_event_get_event +EXPORT_SYMBOL_GPL vmlinux 0x85ebc82f __class_register +EXPORT_SYMBOL_GPL vmlinux 0x85ed420c security_file_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x85f11ec5 blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0x85f32827 mm_iommu_preregistered +EXPORT_SYMBOL_GPL vmlinux 0x85f64f3d regulator_suspend_disable +EXPORT_SYMBOL_GPL vmlinux 0x85f896de serial8250_do_get_mctrl +EXPORT_SYMBOL_GPL vmlinux 0x85fb7f97 shmem_zero_setup +EXPORT_SYMBOL_GPL vmlinux 0x8610af15 tty_port_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x8616c03f da903x_read +EXPORT_SYMBOL_GPL vmlinux 0x861c1739 devm_usb_get_phy_by_node EXPORT_SYMBOL_GPL vmlinux 0x862258db timecounter_init -EXPORT_SYMBOL_GPL vmlinux 0x8624958d securityfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0x862852e9 raw_unhash_sk EXPORT_SYMBOL_GPL vmlinux 0x862bb17b linear_range_values_in_range_array -EXPORT_SYMBOL_GPL vmlinux 0x862eaccf dummy_con -EXPORT_SYMBOL_GPL vmlinux 0x8633ba92 sysfs_file_change_owner -EXPORT_SYMBOL_GPL vmlinux 0x8638dfa5 rio_mport_read_config_8 -EXPORT_SYMBOL_GPL vmlinux 0x863a14c6 gpiod_export_link -EXPORT_SYMBOL_GPL vmlinux 0x863b1bb6 vring_transport_features -EXPORT_SYMBOL_GPL vmlinux 0x863cb64c gpiod_set_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x862fa895 devres_remove +EXPORT_SYMBOL_GPL vmlinux 0x864615cc crypto_unregister_template +EXPORT_SYMBOL_GPL vmlinux 0x864a9fd0 sysfs_create_link +EXPORT_SYMBOL_GPL vmlinux 0x864af260 regulator_list_voltage_linear EXPORT_SYMBOL_GPL vmlinux 0x86585a33 devlink_fmsg_obj_nest_start -EXPORT_SYMBOL_GPL vmlinux 0x86668b78 ping_getfrag -EXPORT_SYMBOL_GPL vmlinux 0x866cb088 srp_rport_add +EXPORT_SYMBOL_GPL vmlinux 0x865d40b7 posix_clock_unregister +EXPORT_SYMBOL_GPL vmlinux 0x86692bb0 dax_iomap_fault +EXPORT_SYMBOL_GPL vmlinux 0x866ae5e2 __fscrypt_prepare_readdir +EXPORT_SYMBOL_GPL vmlinux 0x86715645 usb_register_driver EXPORT_SYMBOL_GPL vmlinux 0x8677245d unregister_switchdev_blocking_notifier -EXPORT_SYMBOL_GPL vmlinux 0x8680eb95 crypto_alg_mod_lookup EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get -EXPORT_SYMBOL_GPL vmlinux 0x86a163f2 debugfs_create_file -EXPORT_SYMBOL_GPL vmlinux 0x86b31f36 strp_done +EXPORT_SYMBOL_GPL vmlinux 0x86929e81 pinconf_generic_dt_node_to_map +EXPORT_SYMBOL_GPL vmlinux 0x869d122c hwpoison_filter +EXPORT_SYMBOL_GPL vmlinux 0x869f73a5 ata_port_freeze +EXPORT_SYMBOL_GPL vmlinux 0x86a9fb5e of_devfreq_cooling_register EXPORT_SYMBOL_GPL vmlinux 0x86b427ce clkdev_create +EXPORT_SYMBOL_GPL vmlinux 0x86bfc348 regulator_set_voltage_sel_pickable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x86c4106a nvdimm_clear_poison EXPORT_SYMBOL_GPL vmlinux 0x86c961b3 __set_dax_synchronous -EXPORT_SYMBOL_GPL vmlinux 0x86cc6cb0 mctrl_gpio_init +EXPORT_SYMBOL_GPL vmlinux 0x86cd538d vfio_pci_core_uninit_device +EXPORT_SYMBOL_GPL vmlinux 0x86cd567f anon_inode_getfile +EXPORT_SYMBOL_GPL vmlinux 0x86d65efa pm_clk_resume +EXPORT_SYMBOL_GPL vmlinux 0x86d8c95a pci_epc_init_notify EXPORT_SYMBOL_GPL vmlinux 0x86dda6ef rtm_getroute_parse_ip_proto -EXPORT_SYMBOL_GPL vmlinux 0x86edc66f usb_wakeup_enabled_descendants +EXPORT_SYMBOL_GPL vmlinux 0x86df6e78 crypto_hash_alg_has_setkey +EXPORT_SYMBOL_GPL vmlinux 0x86e23c2a bpf_sk_storage_diag_put +EXPORT_SYMBOL_GPL vmlinux 0x86e41e50 mbox_flush +EXPORT_SYMBOL_GPL vmlinux 0x86f338e2 sock_gen_put +EXPORT_SYMBOL_GPL vmlinux 0x86f519ce fscrypt_prepare_new_inode EXPORT_SYMBOL_GPL vmlinux 0x86f6b99d synchronize_rcu_expedited EXPORT_SYMBOL_GPL vmlinux 0x86f85114 net_dec_egress_queue -EXPORT_SYMBOL_GPL vmlinux 0x8704702f cpufreq_driver_target -EXPORT_SYMBOL_GPL vmlinux 0x872bf887 mptcp_get_reset_option -EXPORT_SYMBOL_GPL vmlinux 0x87331cf0 spi_controller_suspend -EXPORT_SYMBOL_GPL vmlinux 0x87403f68 blk_add_driver_data +EXPORT_SYMBOL_GPL vmlinux 0x86fbd298 fat_flush_inodes +EXPORT_SYMBOL_GPL vmlinux 0x8706ae74 clk_register +EXPORT_SYMBOL_GPL vmlinux 0x871536be crypto_alloc_acomp +EXPORT_SYMBOL_GPL vmlinux 0x8715df1b to_nvdimm +EXPORT_SYMBOL_GPL vmlinux 0x8718e778 pci_get_dsn +EXPORT_SYMBOL_GPL vmlinux 0x873adff4 nfs_ssc_client_tbl +EXPORT_SYMBOL_GPL vmlinux 0x873d8e84 pm_runtime_force_resume +EXPORT_SYMBOL_GPL vmlinux 0x875513ef ip6_flush_pending_frames EXPORT_SYMBOL_GPL vmlinux 0x875582b7 nvmem_del_cell_table -EXPORT_SYMBOL_GPL vmlinux 0x875bd800 wakeup_source_add -EXPORT_SYMBOL_GPL vmlinux 0x876a3fb8 of_changeset_action -EXPORT_SYMBOL_GPL vmlinux 0x8786f226 led_trigger_unregister -EXPORT_SYMBOL_GPL vmlinux 0x879a781f ata_sff_dma_pause -EXPORT_SYMBOL_GPL vmlinux 0x87be9f1e dev_pm_opp_get_voltage -EXPORT_SYMBOL_GPL vmlinux 0x87c6154f regulator_get_voltage_sel_pickable_regmap -EXPORT_SYMBOL_GPL vmlinux 0x87cefc97 regulator_get -EXPORT_SYMBOL_GPL vmlinux 0x87d4150b rdev_get_regmap -EXPORT_SYMBOL_GPL vmlinux 0x87d9527a fsverity_file_open -EXPORT_SYMBOL_GPL vmlinux 0x87da0b42 phy_driver_is_genphy +EXPORT_SYMBOL_GPL vmlinux 0x876498c3 of_reserved_mem_lookup +EXPORT_SYMBOL_GPL vmlinux 0x877fb198 of_css +EXPORT_SYMBOL_GPL vmlinux 0x87803c42 da9052_adc_manual_read +EXPORT_SYMBOL_GPL vmlinux 0x87928ad8 ata_pci_device_resume +EXPORT_SYMBOL_GPL vmlinux 0x87971efa xhci_get_ep_ctx +EXPORT_SYMBOL_GPL vmlinux 0x8798b186 phy_driver_is_genphy +EXPORT_SYMBOL_GPL vmlinux 0x87bdcc57 pci_ecam_free +EXPORT_SYMBOL_GPL vmlinux 0x87c00a86 register_net_sysctl +EXPORT_SYMBOL_GPL vmlinux 0x87ebd1d8 scsi_autopm_get_device +EXPORT_SYMBOL_GPL vmlinux 0x87f2def7 crypto_shash_update EXPORT_SYMBOL_GPL vmlinux 0x87f77435 srcu_batches_completed -EXPORT_SYMBOL_GPL vmlinux 0x880967fc clk_multiplier_ops -EXPORT_SYMBOL_GPL vmlinux 0x882a55cc divider_ro_round_rate_parent -EXPORT_SYMBOL_GPL vmlinux 0x882be333 sdio_writew -EXPORT_SYMBOL_GPL vmlinux 0x883f74e2 pci_bridge_secondary_bus_reset -EXPORT_SYMBOL_GPL vmlinux 0x8847d9e9 blk_mq_complete_request_remote +EXPORT_SYMBOL_GPL vmlinux 0x88058d4b usb_hcd_giveback_urb +EXPORT_SYMBOL_GPL vmlinux 0x8805ce8e page_cache_ra_unbounded +EXPORT_SYMBOL_GPL vmlinux 0x8813eaf3 irq_domain_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0x881b2705 inet_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0x8821bf2a __ndisc_fill_addr_option +EXPORT_SYMBOL_GPL vmlinux 0x882b1086 extcon_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x882f240c edac_mc_del_mc +EXPORT_SYMBOL_GPL vmlinux 0x8838bea5 security_inode_create EXPORT_SYMBOL_GPL vmlinux 0x885528a6 ring_buffer_discard_commit -EXPORT_SYMBOL_GPL vmlinux 0x885d5475 pskb_put -EXPORT_SYMBOL_GPL vmlinux 0x886d2b25 da903x_reads -EXPORT_SYMBOL_GPL vmlinux 0x888bbca7 irq_domain_xlate_twocell +EXPORT_SYMBOL_GPL vmlinux 0x885a8396 __spi_alloc_controller +EXPORT_SYMBOL_GPL vmlinux 0x886b8d44 udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x8875ae70 pm_wakeup_ws_event EXPORT_SYMBOL_GPL vmlinux 0x888c5be5 irq_bypass_register_consumer +EXPORT_SYMBOL_GPL vmlinux 0x88941a63 divider_ro_round_rate_parent EXPORT_SYMBOL_GPL vmlinux 0x8896df7d mm_unaccount_pinned_pages +EXPORT_SYMBOL_GPL vmlinux 0x88a88061 rio_release_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0x88a89a81 securityfs_remove EXPORT_SYMBOL_GPL vmlinux 0x88ab6fe3 kgdb_active EXPORT_SYMBOL_GPL vmlinux 0x88b4ae92 ring_buffer_normalize_time_stamp -EXPORT_SYMBOL_GPL vmlinux 0x88beb20c anon_inode_getfile -EXPORT_SYMBOL_GPL vmlinux 0x88bf310e scsi_target_unblock -EXPORT_SYMBOL_GPL vmlinux 0x88cb5cd0 __traceiter_neigh_cleanup_and_release -EXPORT_SYMBOL_GPL vmlinux 0x88e55185 xfrm_dev_state_add -EXPORT_SYMBOL_GPL vmlinux 0x88f1847e rio_request_inb_dbell -EXPORT_SYMBOL_GPL vmlinux 0x8906f66c rtc_set_alarm -EXPORT_SYMBOL_GPL vmlinux 0x89079821 fw_devlink_purge_absent_suppliers -EXPORT_SYMBOL_GPL vmlinux 0x890f1d45 iommu_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x88c65fd7 pci_epf_free_space +EXPORT_SYMBOL_GPL vmlinux 0x88ddbc17 irq_chip_set_vcpu_affinity_parent +EXPORT_SYMBOL_GPL vmlinux 0x88e0d3a0 mmc_send_status +EXPORT_SYMBOL_GPL vmlinux 0x88f77f50 debugfs_file_get +EXPORT_SYMBOL_GPL vmlinux 0x88fc65a8 serdev_device_write_flush +EXPORT_SYMBOL_GPL vmlinux 0x890bbafd devm_release_action EXPORT_SYMBOL_GPL vmlinux 0x890f4f97 __kprobe_event_gen_cmd_start +EXPORT_SYMBOL_GPL vmlinux 0x89105ef9 xfrm_audit_state_replay +EXPORT_SYMBOL_GPL vmlinux 0x8911492b usb_interrupt_msg +EXPORT_SYMBOL_GPL vmlinux 0x89126274 pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0x8920cbe6 __hwspin_trylock EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state -EXPORT_SYMBOL_GPL vmlinux 0x89269302 device_match_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x8926a6e5 devlink_dpipe_table_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8939c9c4 i2c_new_dummy_device EXPORT_SYMBOL_GPL vmlinux 0x893abbdd devlink_fmsg_u32_pair_put -EXPORT_SYMBOL_GPL vmlinux 0x89433f5f devm_regmap_add_irq_chip EXPORT_SYMBOL_GPL vmlinux 0x89485687 iommu_group_put -EXPORT_SYMBOL_GPL vmlinux 0x8952b1e5 sysfs_rename_link_ns +EXPORT_SYMBOL_GPL vmlinux 0x8948c563 sdio_retune_crc_disable EXPORT_SYMBOL_GPL vmlinux 0x8954dc8e __SCK__tp_func_br_fdb_external_learn_add -EXPORT_SYMBOL_GPL vmlinux 0x89553fd8 netlink_strict_get_check -EXPORT_SYMBOL_GPL vmlinux 0x89930b27 phy_check_downshift +EXPORT_SYMBOL_GPL vmlinux 0x89559396 i2c_new_ancillary_device +EXPORT_SYMBOL_GPL vmlinux 0x89580630 pm_runtime_autosuspend_expiration +EXPORT_SYMBOL_GPL vmlinux 0x8966b333 of_usb_host_tpl_support +EXPORT_SYMBOL_GPL vmlinux 0x896fd59e switchdev_bridge_port_unoffload +EXPORT_SYMBOL_GPL vmlinux 0x89816f22 device_pm_wait_for_dev +EXPORT_SYMBOL_GPL vmlinux 0x89834f4b phy_pm_runtime_get_sync +EXPORT_SYMBOL_GPL vmlinux 0x89861da2 xdp_rxq_info_unreg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0x89a1ac5f ata_port_wait_eh EXPORT_SYMBOL_GPL vmlinux 0x89ae7aa0 rsa_parse_pub_key +EXPORT_SYMBOL_GPL vmlinux 0x89b26944 blk_mq_start_stopped_hw_queue +EXPORT_SYMBOL_GPL vmlinux 0x89b59099 power_supply_changed EXPORT_SYMBOL_GPL vmlinux 0x89bbafc6 usb_register_notify -EXPORT_SYMBOL_GPL vmlinux 0x89bc1bbf ata_bmdma32_port_ops EXPORT_SYMBOL_GPL vmlinux 0x89c429e4 __tracepoint_mc_event -EXPORT_SYMBOL_GPL vmlinux 0x89c99d2e usb_string -EXPORT_SYMBOL_GPL vmlinux 0x89e393c6 netlink_add_tap -EXPORT_SYMBOL_GPL vmlinux 0x89f368cd usb_get_urb -EXPORT_SYMBOL_GPL vmlinux 0x89f53591 device_dma_supported -EXPORT_SYMBOL_GPL vmlinux 0x89f90981 phy_calibrate -EXPORT_SYMBOL_GPL vmlinux 0x8a09df14 fwnode_get_next_available_child_node -EXPORT_SYMBOL_GPL vmlinux 0x8a20a499 synth_event_trace_end -EXPORT_SYMBOL_GPL vmlinux 0x8a24a550 spi_res_add -EXPORT_SYMBOL_GPL vmlinux 0x8a3854aa blk_lld_busy -EXPORT_SYMBOL_GPL vmlinux 0x8a3dfce2 device_store_ulong -EXPORT_SYMBOL_GPL vmlinux 0x8a3e96fe __fscrypt_prepare_readdir +EXPORT_SYMBOL_GPL vmlinux 0x89cb83e7 ata_pci_shutdown_one +EXPORT_SYMBOL_GPL vmlinux 0x89d44474 pwm_free +EXPORT_SYMBOL_GPL vmlinux 0x89edc85b mm_iommu_newdev +EXPORT_SYMBOL_GPL vmlinux 0x89f2cb86 relay_subbufs_consumed +EXPORT_SYMBOL_GPL vmlinux 0x8a028e91 dev_pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x8a048261 ata_ncq_sdev_attrs +EXPORT_SYMBOL_GPL vmlinux 0x8a0c2e16 ata_sff_irq_on +EXPORT_SYMBOL_GPL vmlinux 0x8a3cd022 pci_sriov_configure_simple EXPORT_SYMBOL_GPL vmlinux 0x8a3f84ba linear_range_get_selector_low -EXPORT_SYMBOL_GPL vmlinux 0x8a45ff78 scsi_host_busy_iter EXPORT_SYMBOL_GPL vmlinux 0x8a554a36 mpc8xxx_spi_strmode -EXPORT_SYMBOL_GPL vmlinux 0x8a56da3d debugfs_file_get EXPORT_SYMBOL_GPL vmlinux 0x8a62b81b sfp_upstream_stop -EXPORT_SYMBOL_GPL vmlinux 0x8a65097b irq_setup_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x8a6ed08c register_net_sysctl -EXPORT_SYMBOL_GPL vmlinux 0x8a7a1d6c thermal_zone_get_offset +EXPORT_SYMBOL_GPL vmlinux 0x8a63bb43 hwspin_lock_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8a7b5ddc scsi_flush_work +EXPORT_SYMBOL_GPL vmlinux 0x8a7f0736 pci_epc_mem_alloc_addr EXPORT_SYMBOL_GPL vmlinux 0x8a83fb45 mpi_point_free_parts +EXPORT_SYMBOL_GPL vmlinux 0x8a9a96dc nl_table EXPORT_SYMBOL_GPL vmlinux 0x8a9dbcad opal_message_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x8ab0037b fuse_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x8aac0c8e pci_user_read_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x8aae7881 fwnode_property_get_reference_args +EXPORT_SYMBOL_GPL vmlinux 0x8ab06745 tpm_transmit_cmd EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files -EXPORT_SYMBOL_GPL vmlinux 0x8ac57901 pwmchip_remove -EXPORT_SYMBOL_GPL vmlinux 0x8ad8c953 __netpoll_free -EXPORT_SYMBOL_GPL vmlinux 0x8aeaa849 ip6_local_out -EXPORT_SYMBOL_GPL vmlinux 0x8afe0c38 fwnode_get_next_parent -EXPORT_SYMBOL_GPL vmlinux 0x8afe969b __traceiter_neigh_event_send_dead -EXPORT_SYMBOL_GPL vmlinux 0x8b0eef38 of_dma_xlate_by_chan_id +EXPORT_SYMBOL_GPL vmlinux 0x8abb4aad spi_mem_driver_register_with_owner +EXPORT_SYMBOL_GPL vmlinux 0x8ac36724 __class_create +EXPORT_SYMBOL_GPL vmlinux 0x8acb3229 gpiod_set_value +EXPORT_SYMBOL_GPL vmlinux 0x8aeed434 devm_regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8af0a8ab vfio_pci_core_finish_enable +EXPORT_SYMBOL_GPL vmlinux 0x8af5e171 i2c_new_smbus_alert_device +EXPORT_SYMBOL_GPL vmlinux 0x8b029ef6 of_alias_get_id +EXPORT_SYMBOL_GPL vmlinux 0x8b052ec8 inet6_destroy_sock +EXPORT_SYMBOL_GPL vmlinux 0x8b0cc203 hwspin_lock_request_specific EXPORT_SYMBOL_GPL vmlinux 0x8b149c36 clk_is_match -EXPORT_SYMBOL_GPL vmlinux 0x8b32043b inet_ctl_sock_create -EXPORT_SYMBOL_GPL vmlinux 0x8b346097 ata_ncq_sdev_attrs -EXPORT_SYMBOL_GPL vmlinux 0x8b3d231e pm_clk_resume +EXPORT_SYMBOL_GPL vmlinux 0x8b1b03a3 component_add +EXPORT_SYMBOL_GPL vmlinux 0x8b1c4d85 dw_pcie_ep_init_notify +EXPORT_SYMBOL_GPL vmlinux 0x8b28521d sata_std_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x8b3b788a crypto_stats_akcipher_decrypt EXPORT_SYMBOL_GPL vmlinux 0x8b4100aa rhashtable_walk_next -EXPORT_SYMBOL_GPL vmlinux 0x8b412454 nf_ip_route -EXPORT_SYMBOL_GPL vmlinux 0x8b470fcb dm_disk +EXPORT_SYMBOL_GPL vmlinux 0x8b473061 devm_free_percpu EXPORT_SYMBOL_GPL vmlinux 0x8b487f00 trace_seq_vprintf -EXPORT_SYMBOL_GPL vmlinux 0x8b4e10d3 pm_genpd_add_subdomain -EXPORT_SYMBOL_GPL vmlinux 0x8b5600ae __get_task_comm EXPORT_SYMBOL_GPL vmlinux 0x8b6c761a __xive_enabled EXPORT_SYMBOL_GPL vmlinux 0x8b7a698b __tracepoint_xdp_exception -EXPORT_SYMBOL_GPL vmlinux 0x8b8c7893 devm_nvmem_device_put -EXPORT_SYMBOL_GPL vmlinux 0x8b8e024d pm_runtime_force_suspend -EXPORT_SYMBOL_GPL vmlinux 0x8ba4b51c pci_slots_kset -EXPORT_SYMBOL_GPL vmlinux 0x8bab59b8 sched_trace_rq_avg_rt -EXPORT_SYMBOL_GPL vmlinux 0x8bc75cca ip6_pol_route -EXPORT_SYMBOL_GPL vmlinux 0x8be14294 tty_standard_install -EXPORT_SYMBOL_GPL vmlinux 0x8bef58c7 of_icc_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x8b8014fa pm_generic_restore_early +EXPORT_SYMBOL_GPL vmlinux 0x8b82190a usb_ifnum_to_if +EXPORT_SYMBOL_GPL vmlinux 0x8b84ac2a icc_node_add +EXPORT_SYMBOL_GPL vmlinux 0x8b955d4b sdio_release_irq +EXPORT_SYMBOL_GPL vmlinux 0x8b9be9fc dax_inode +EXPORT_SYMBOL_GPL vmlinux 0x8ba12df0 ata_sff_softreset +EXPORT_SYMBOL_GPL vmlinux 0x8bafc4b1 __inet_inherit_port +EXPORT_SYMBOL_GPL vmlinux 0x8bb4e389 bus_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x8bb9fa60 phy_power_off +EXPORT_SYMBOL_GPL vmlinux 0x8bbca83d watchdog_set_last_hw_keepalive +EXPORT_SYMBOL_GPL vmlinux 0x8bc8f3d3 security_path_symlink +EXPORT_SYMBOL_GPL vmlinux 0x8bd01e11 of_fdt_unflatten_tree +EXPORT_SYMBOL_GPL vmlinux 0x8bd0837a __kthread_should_park +EXPORT_SYMBOL_GPL vmlinux 0x8bf46a6b request_firmware_direct +EXPORT_SYMBOL_GPL vmlinux 0x8c00b198 mmc_get_ext_csd EXPORT_SYMBOL_GPL vmlinux 0x8c0215f2 pm_system_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x8c03990d mddev_resume +EXPORT_SYMBOL_GPL vmlinux 0x8c02e335 irq_domain_alloc_irqs_parent EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue -EXPORT_SYMBOL_GPL vmlinux 0x8c051a9e perf_pmu_unregister -EXPORT_SYMBOL_GPL vmlinux 0x8c0973fd pm_genpd_add_device +EXPORT_SYMBOL_GPL vmlinux 0x8c0e413c bpf_prog_inc EXPORT_SYMBOL_GPL vmlinux 0x8c0ed103 rcu_check_boost_fail -EXPORT_SYMBOL_GPL vmlinux 0x8c3d5469 of_msi_configure -EXPORT_SYMBOL_GPL vmlinux 0x8c417069 phy_remove_lookup -EXPORT_SYMBOL_GPL vmlinux 0x8c51ad2d fib_rules_dump -EXPORT_SYMBOL_GPL vmlinux 0x8c5ddb48 bd_unlink_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0x8c407d92 input_device_enabled +EXPORT_SYMBOL_GPL vmlinux 0x8c6ac24f usb_free_streams EXPORT_SYMBOL_GPL vmlinux 0x8c743fb6 reset_control_status -EXPORT_SYMBOL_GPL vmlinux 0x8c78d7cd nf_queue_nf_hook_drop -EXPORT_SYMBOL_GPL vmlinux 0x8c7f989c devm_hwspin_lock_request EXPORT_SYMBOL_GPL vmlinux 0x8c89e3b8 usb_phy_roothub_power_off -EXPORT_SYMBOL_GPL vmlinux 0x8c8d3942 kthread_queue_work -EXPORT_SYMBOL_GPL vmlinux 0x8cb2a564 fwnode_graph_get_remote_endpoint -EXPORT_SYMBOL_GPL vmlinux 0x8cd087f3 pinconf_generic_dt_subnode_to_map +EXPORT_SYMBOL_GPL vmlinux 0x8c94cbff __fscrypt_prepare_link +EXPORT_SYMBOL_GPL vmlinux 0x8c9f841f pci_max_pasids +EXPORT_SYMBOL_GPL vmlinux 0x8cbbfc53 usb_init_urb +EXPORT_SYMBOL_GPL vmlinux 0x8cc1e242 pci_intx EXPORT_SYMBOL_GPL vmlinux 0x8cd94f86 pernet_ops_rwsem EXPORT_SYMBOL_GPL vmlinux 0x8ce2d446 __tracepoint_block_rq_remap -EXPORT_SYMBOL_GPL vmlinux 0x8cfea003 ping_hash -EXPORT_SYMBOL_GPL vmlinux 0x8cff2b82 firmware_request_platform -EXPORT_SYMBOL_GPL vmlinux 0x8d0a86cb devlink_dpipe_table_counter_enabled +EXPORT_SYMBOL_GPL vmlinux 0x8ce40764 cpu_add_dev_attr_group +EXPORT_SYMBOL_GPL vmlinux 0x8cedf5fe tty_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0x8d055aed gpiochip_add_pin_range EXPORT_SYMBOL_GPL vmlinux 0x8d0abf3a __tracepoint_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0x8d1dfe7a scsi_autopm_put_device +EXPORT_SYMBOL_GPL vmlinux 0x8d20463a regulator_bulk_unregister_supply_alias EXPORT_SYMBOL_GPL vmlinux 0x8d22bb58 iommu_group_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8d24e3d2 sock_map_close +EXPORT_SYMBOL_GPL vmlinux 0x8d2c7f67 wm831x_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x8d320744 handle_level_irq EXPORT_SYMBOL_GPL vmlinux 0x8d3330b6 cpuacct_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x8d3ab921 usb_role_switch_get -EXPORT_SYMBOL_GPL vmlinux 0x8d55e35e cpufreq_freq_attr_scaling_boost_freqs -EXPORT_SYMBOL_GPL vmlinux 0x8d689880 pm_runtime_set_memalloc_noio +EXPORT_SYMBOL_GPL vmlinux 0x8d396805 __mmc_poll_for_busy +EXPORT_SYMBOL_GPL vmlinux 0x8d4144a4 generic_access_phys +EXPORT_SYMBOL_GPL vmlinux 0x8d4509a3 __traceiter_devlink_hwmsg +EXPORT_SYMBOL_GPL vmlinux 0x8d663553 virtqueue_get_desc_addr +EXPORT_SYMBOL_GPL vmlinux 0x8d674d14 akcipher_register_instance EXPORT_SYMBOL_GPL vmlinux 0x8d6dc201 ppc64_caches -EXPORT_SYMBOL_GPL vmlinux 0x8d7a8b0e xdp_return_frame_bulk +EXPORT_SYMBOL_GPL vmlinux 0x8d75d945 devm_thermal_zone_of_sensor_unregister EXPORT_SYMBOL_GPL vmlinux 0x8d7e3373 hwpoison_filter_dev_major -EXPORT_SYMBOL_GPL vmlinux 0x8d832d23 uhci_reset_hc -EXPORT_SYMBOL_GPL vmlinux 0x8d85a876 pci_add_device_node_info -EXPORT_SYMBOL_GPL vmlinux 0x8da3b239 espintcp_queue_out -EXPORT_SYMBOL_GPL vmlinux 0x8da4de70 disk_force_media_change -EXPORT_SYMBOL_GPL vmlinux 0x8da9586c attribute_container_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8da9904a iomap_invalidatepage EXPORT_SYMBOL_GPL vmlinux 0x8dafdded lwtunnel_valid_encap_type_attr -EXPORT_SYMBOL_GPL vmlinux 0x8db2c038 fwnode_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x8db17fb0 regulator_set_suspend_voltage +EXPORT_SYMBOL_GPL vmlinux 0x8db39ee2 spi_controller_resume +EXPORT_SYMBOL_GPL vmlinux 0x8dbf0c13 blk_mq_quiesce_queue_nowait EXPORT_SYMBOL_GPL vmlinux 0x8dbf5a20 kvmppc_hv_entry_trampoline -EXPORT_SYMBOL_GPL vmlinux 0x8dbf620d irq_domain_create_simple +EXPORT_SYMBOL_GPL vmlinux 0x8dc4a32a usb_match_one_id EXPORT_SYMBOL_GPL vmlinux 0x8dd218b0 icc_bulk_disable -EXPORT_SYMBOL_GPL vmlinux 0x8dd2e750 devlink_dpipe_table_resource_set -EXPORT_SYMBOL_GPL vmlinux 0x8dd7a85f ata_sas_queuecmd -EXPORT_SYMBOL_GPL vmlinux 0x8deeeae4 nvdimm_setup_pfn +EXPORT_SYMBOL_GPL vmlinux 0x8dd70572 pci_epf_destroy +EXPORT_SYMBOL_GPL vmlinux 0x8ddebd03 md_new_event +EXPORT_SYMBOL_GPL vmlinux 0x8df50a93 xhci_drop_endpoint EXPORT_SYMBOL_GPL vmlinux 0x8df51555 cpufreq_show_cpus -EXPORT_SYMBOL_GPL vmlinux 0x8dfa505c tty_get_icount -EXPORT_SYMBOL_GPL vmlinux 0x8e031f1c iommu_tce_xchg_no_kill -EXPORT_SYMBOL_GPL vmlinux 0x8e0e3bcd usb_driver_claim_interface -EXPORT_SYMBOL_GPL vmlinux 0x8e2b27f6 sbitmap_queue_show +EXPORT_SYMBOL_GPL vmlinux 0x8e03d2b8 xdp_return_frame +EXPORT_SYMBOL_GPL vmlinux 0x8e064da4 skcipher_walk_virt +EXPORT_SYMBOL_GPL vmlinux 0x8e10b856 i2c_add_numbered_adapter +EXPORT_SYMBOL_GPL vmlinux 0x8e200c68 __clk_hw_register_mux EXPORT_SYMBOL_GPL vmlinux 0x8e2e2f74 xas_split -EXPORT_SYMBOL_GPL vmlinux 0x8e3ac47b of_devfreq_cooling_register -EXPORT_SYMBOL_GPL vmlinux 0x8e3b69d4 i2c_probe_func_quick_read EXPORT_SYMBOL_GPL vmlinux 0x8e44823a sfp_select_interface -EXPORT_SYMBOL_GPL vmlinux 0x8e4b8be6 fwnode_count_parents -EXPORT_SYMBOL_GPL vmlinux 0x8e4caec9 dma_buf_begin_cpu_access EXPORT_SYMBOL_GPL vmlinux 0x8e4eb451 bpf_sk_storage_diag_free -EXPORT_SYMBOL_GPL vmlinux 0x8e4ee9d7 mmc_cmdq_enable -EXPORT_SYMBOL_GPL vmlinux 0x8e5f1fd5 usb_sg_cancel EXPORT_SYMBOL_GPL vmlinux 0x8e6b1a9e net_selftest_get_count -EXPORT_SYMBOL_GPL vmlinux 0x8e7a6d20 device_set_node -EXPORT_SYMBOL_GPL vmlinux 0x8e86af8f ata_pci_sff_init_one +EXPORT_SYMBOL_GPL vmlinux 0x8e7a1665 __hwspin_lock_timeout +EXPORT_SYMBOL_GPL vmlinux 0x8e837fb6 gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0x8e861c92 device_get_dma_attr EXPORT_SYMBOL_GPL vmlinux 0x8e92f7c4 static_key_slow_inc -EXPORT_SYMBOL_GPL vmlinux 0x8eab7798 kobject_create_and_add -EXPORT_SYMBOL_GPL vmlinux 0x8eacf13a phy_pm_runtime_put +EXPORT_SYMBOL_GPL vmlinux 0x8eaae4b2 dev_pm_opp_get_opp_count +EXPORT_SYMBOL_GPL vmlinux 0x8eac7c53 ata_std_bios_param EXPORT_SYMBOL_GPL vmlinux 0x8ead800c user_free_preparse -EXPORT_SYMBOL_GPL vmlinux 0x8edb5bb3 pciserial_init_ports +EXPORT_SYMBOL_GPL vmlinux 0x8eafcbff pm_generic_freeze +EXPORT_SYMBOL_GPL vmlinux 0x8eb4c811 get_task_mm +EXPORT_SYMBOL_GPL vmlinux 0x8ebb2700 __scsi_init_queue +EXPORT_SYMBOL_GPL vmlinux 0x8ebb9cd8 device_register +EXPORT_SYMBOL_GPL vmlinux 0x8edd4c8e dev_pm_opp_xlate_required_opp +EXPORT_SYMBOL_GPL vmlinux 0x8ee3e42f 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 0x8eeec4b4 __traceiter_fdb_delete EXPORT_SYMBOL_GPL vmlinux 0x8effb505 phy_gbit_features +EXPORT_SYMBOL_GPL vmlinux 0x8effbce3 platform_device_alloc EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp -EXPORT_SYMBOL_GPL vmlinux 0x8f17eee8 tcp_reno_undo_cwnd -EXPORT_SYMBOL_GPL vmlinux 0x8f203b53 __devm_alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0x8f2ee9f2 fwnode_graph_get_endpoint_by_id -EXPORT_SYMBOL_GPL vmlinux 0x8f44f974 __cpufreq_driver_target -EXPORT_SYMBOL_GPL vmlinux 0x8f50114e clk_hw_get_num_parents -EXPORT_SYMBOL_GPL vmlinux 0x8f54e199 rio_mport_get_feature -EXPORT_SYMBOL_GPL vmlinux 0x8f5fc31b crypto_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x8f615603 transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8f195ddd palmas_ext_control_req_config +EXPORT_SYMBOL_GPL vmlinux 0x8f2d2c71 regulator_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0x8f36106e klp_enable_patch +EXPORT_SYMBOL_GPL vmlinux 0x8f4afe8b vfio_pci_core_register_device +EXPORT_SYMBOL_GPL vmlinux 0x8f5289ec pnv_ocxl_set_tl_conf +EXPORT_SYMBOL_GPL vmlinux 0x8f582a75 fat_setattr EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative -EXPORT_SYMBOL_GPL vmlinux 0x8f77babe dm_internal_suspend_noflush +EXPORT_SYMBOL_GPL vmlinux 0x8f718528 sched_setattr_nocheck +EXPORT_SYMBOL_GPL vmlinux 0x8f7662e9 edac_pci_handle_pe EXPORT_SYMBOL_GPL vmlinux 0x8f786bee fs_umode_to_dtype -EXPORT_SYMBOL_GPL vmlinux 0x8f7aa9ea pci_reset_function -EXPORT_SYMBOL_GPL vmlinux 0x8f7c5d14 shmem_truncate_range EXPORT_SYMBOL_GPL vmlinux 0x8f83638e housekeeping_cpumask -EXPORT_SYMBOL_GPL vmlinux 0x8f88ee44 crypto_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x8f875ea5 __traceiter_tcp_bad_csum +EXPORT_SYMBOL_GPL vmlinux 0x8faf83cd sbitmap_show EXPORT_SYMBOL_GPL vmlinux 0x8fb04d68 pnv_ocxl_spa_release -EXPORT_SYMBOL_GPL vmlinux 0x8fb2fa3b noop_direct_IO -EXPORT_SYMBOL_GPL vmlinux 0x8fc00588 fsnotify_init_mark EXPORT_SYMBOL_GPL vmlinux 0x8fc12788 software_node_unregister_node_group -EXPORT_SYMBOL_GPL vmlinux 0x8fc9fb95 gpiod_get_array -EXPORT_SYMBOL_GPL vmlinux 0x8fde485a perf_pmu_register -EXPORT_SYMBOL_GPL vmlinux 0x8fe815e8 spi_mem_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0x8ff57064 da903x_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x8fd764a6 show_class_attr_string +EXPORT_SYMBOL_GPL vmlinux 0x8fe12bcb class_interface_register +EXPORT_SYMBOL_GPL vmlinux 0x8fec5245 icc_provider_add +EXPORT_SYMBOL_GPL vmlinux 0x8ff5de15 metadata_dst_free_percpu EXPORT_SYMBOL_GPL vmlinux 0x8ff60436 mpi_ec_add_points +EXPORT_SYMBOL_GPL vmlinux 0x8ff8113b dev_pm_qos_expose_latency_limit EXPORT_SYMBOL_GPL vmlinux 0x8ffe792f tracepoint_probe_register_prio_may_exist -EXPORT_SYMBOL_GPL vmlinux 0x9001dfae kset_find_obj -EXPORT_SYMBOL_GPL vmlinux 0x90036c87 tcp_sendpage_locked -EXPORT_SYMBOL_GPL vmlinux 0x90081e05 regulator_register -EXPORT_SYMBOL_GPL vmlinux 0x901027f5 debugfs_rename -EXPORT_SYMBOL_GPL vmlinux 0x9017a24f devlink_trap_policers_register -EXPORT_SYMBOL_GPL vmlinux 0x901ed48b xdp_rxq_info_reg -EXPORT_SYMBOL_GPL vmlinux 0x90224e82 pci_create_root_bus -EXPORT_SYMBOL_GPL vmlinux 0x9025a1dd skb_zerocopy_iter_dgram -EXPORT_SYMBOL_GPL vmlinux 0x902ea4a4 serdev_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0x902835e1 devlink_rate_leaf_destroy +EXPORT_SYMBOL_GPL vmlinux 0x902f3919 con_debug_enter EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move -EXPORT_SYMBOL_GPL vmlinux 0x90548b41 tpm_get_random -EXPORT_SYMBOL_GPL vmlinux 0x905d85aa debugfs_create_x16 -EXPORT_SYMBOL_GPL vmlinux 0x90603aba clk_register_divider_table +EXPORT_SYMBOL_GPL vmlinux 0x9045f735 pnv_ocxl_get_pasid_count +EXPORT_SYMBOL_GPL vmlinux 0x90607b73 crypto_spawn_tfm2 +EXPORT_SYMBOL_GPL vmlinux 0x9065dc03 pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x9068381f xdp_rxq_info_is_reg EXPORT_SYMBOL_GPL vmlinux 0x90688bcd devlink_info_driver_name_put -EXPORT_SYMBOL_GPL vmlinux 0x9069a9cb pci_epc_map_msi_irq +EXPORT_SYMBOL_GPL vmlinux 0x90808be9 of_irq_get +EXPORT_SYMBOL_GPL vmlinux 0x908327ca ehci_handshake +EXPORT_SYMBOL_GPL vmlinux 0x9092e6fd crypto_alloc_ahash EXPORT_SYMBOL_GPL vmlinux 0x90ad66b1 software_node_unregister_nodes -EXPORT_SYMBOL_GPL vmlinux 0x90ae73e3 iommu_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x90caaaed dmaengine_desc_attach_metadata -EXPORT_SYMBOL_GPL vmlinux 0x90d78db3 dma_buf_detach +EXPORT_SYMBOL_GPL vmlinux 0x90ad74b4 rt_mutex_lock_interruptible +EXPORT_SYMBOL_GPL vmlinux 0x90ba1ad6 pci_hp_add_devices +EXPORT_SYMBOL_GPL vmlinux 0x90cf9999 devres_release +EXPORT_SYMBOL_GPL vmlinux 0x90d6d5d6 exportfs_encode_inode_fh EXPORT_SYMBOL_GPL vmlinux 0x90d937b4 __tracepoint_pelt_rt_tp -EXPORT_SYMBOL_GPL vmlinux 0x90e8f405 rio_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x90f2ef0d __traceiter_devlink_hwmsg -EXPORT_SYMBOL_GPL vmlinux 0x910647ee class_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x90f9e948 fuse_conn_init EXPORT_SYMBOL_GPL vmlinux 0x911d18ae dev_pm_opp_of_cpumask_add_table -EXPORT_SYMBOL_GPL vmlinux 0x911e305d extcon_sync -EXPORT_SYMBOL_GPL vmlinux 0x9122c48f find_vpid -EXPORT_SYMBOL_GPL vmlinux 0x912e3d93 inet_csk_route_child_sock -EXPORT_SYMBOL_GPL vmlinux 0x9135d6f8 unregister_cxl_calls -EXPORT_SYMBOL_GPL vmlinux 0x9136ad4d transport_setup_device -EXPORT_SYMBOL_GPL vmlinux 0x9143fc3c device_initialize -EXPORT_SYMBOL_GPL vmlinux 0x91501c0c sata_link_hardreset -EXPORT_SYMBOL_GPL vmlinux 0x91629c52 netdev_walk_all_lower_dev -EXPORT_SYMBOL_GPL vmlinux 0x91695b64 sysfs_remove_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x916e58e4 to_nvdimm -EXPORT_SYMBOL_GPL vmlinux 0x91751238 soc_device_match -EXPORT_SYMBOL_GPL vmlinux 0x91760f6d devm_kfree -EXPORT_SYMBOL_GPL vmlinux 0x9185ccda pnv_ocxl_get_tl_cap +EXPORT_SYMBOL_GPL vmlinux 0x9163d32a pci_epc_multi_mem_init +EXPORT_SYMBOL_GPL vmlinux 0x9166d3e9 user_read +EXPORT_SYMBOL_GPL vmlinux 0x9172ddf5 uart_try_toggle_sysrq +EXPORT_SYMBOL_GPL vmlinux 0x91752868 trace_event_ignore_this_pid +EXPORT_SYMBOL_GPL vmlinux 0x917e0bb5 pcie_reset_flr +EXPORT_SYMBOL_GPL vmlinux 0x918232b9 platform_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x918374db irq_chip_set_parent_state +EXPORT_SYMBOL_GPL vmlinux 0x918868cf set_primary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x9188bcf7 sched_trace_rq_nr_running +EXPORT_SYMBOL_GPL vmlinux 0x918c05f2 phy_speed_up EXPORT_SYMBOL_GPL vmlinux 0x91955a9f start_poll_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0x91ab7a36 security_path_chmod +EXPORT_SYMBOL_GPL vmlinux 0x919adfaf debugfs_create_ulong +EXPORT_SYMBOL_GPL vmlinux 0x91a43888 wm8350_block_write +EXPORT_SYMBOL_GPL vmlinux 0x91b6c000 mmu_interval_read_begin EXPORT_SYMBOL_GPL vmlinux 0x91b774a1 mpi_scanval -EXPORT_SYMBOL_GPL vmlinux 0x91c4c754 dax_writeback_mapping_range +EXPORT_SYMBOL_GPL vmlinux 0x91bd9d8f dw8250_setup_port EXPORT_SYMBOL_GPL vmlinux 0x91c6e5b0 pcap_to_irq -EXPORT_SYMBOL_GPL vmlinux 0x91d0c0f8 ata_do_dev_read_id +EXPORT_SYMBOL_GPL vmlinux 0x91e14251 sata_pmp_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x91e2d47f gpiod_unexport EXPORT_SYMBOL_GPL vmlinux 0x91ea8726 asn1_encode_boolean +EXPORT_SYMBOL_GPL vmlinux 0x91f1229f genphy_c45_an_disable_aneg EXPORT_SYMBOL_GPL vmlinux 0x91f1a7cc iommu_release_ownership -EXPORT_SYMBOL_GPL vmlinux 0x92007d56 find_mci_by_dev -EXPORT_SYMBOL_GPL vmlinux 0x9205a44d dev_attr_em_message_type -EXPORT_SYMBOL_GPL vmlinux 0x920a1fb4 _copy_from_iter_flushcache +EXPORT_SYMBOL_GPL vmlinux 0x92052475 serial8250_rpm_get_tx +EXPORT_SYMBOL_GPL vmlinux 0x92093bec spi_register_controller EXPORT_SYMBOL_GPL vmlinux 0x920cc389 visitorl -EXPORT_SYMBOL_GPL vmlinux 0x92115e45 spi_mem_supports_op -EXPORT_SYMBOL_GPL vmlinux 0x92162003 pci_add_dynid -EXPORT_SYMBOL_GPL vmlinux 0x9219dd75 crypto_register_templates -EXPORT_SYMBOL_GPL vmlinux 0x921e5d69 iomap_zero_range EXPORT_SYMBOL_GPL vmlinux 0x92238bcb xas_find_marked -EXPORT_SYMBOL_GPL vmlinux 0x9231071a vp_modern_map_vq_notify -EXPORT_SYMBOL_GPL vmlinux 0x92365c9a devlink_resource_occ_get_unregister -EXPORT_SYMBOL_GPL vmlinux 0x923818f8 dm_put +EXPORT_SYMBOL_GPL vmlinux 0x922841e5 scsi_dh_attached_handler_name EXPORT_SYMBOL_GPL vmlinux 0x9241b358 __static_key_slow_dec_deferred -EXPORT_SYMBOL_GPL vmlinux 0x9242a08d spi_mem_exec_op -EXPORT_SYMBOL_GPL vmlinux 0x924617fc crypto_get_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x92477b9a msg_zerocopy_put_abort EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object -EXPORT_SYMBOL_GPL vmlinux 0x925560ed __hvc_resize -EXPORT_SYMBOL_GPL vmlinux 0x925ae7f7 ping_seq_start -EXPORT_SYMBOL_GPL vmlinux 0x929a78ea __traceiter_pelt_dl_tp +EXPORT_SYMBOL_GPL vmlinux 0x92651a0f devm_gpiod_get_from_of_node +EXPORT_SYMBOL_GPL vmlinux 0x928f61df fuse_conn_put +EXPORT_SYMBOL_GPL vmlinux 0x929e3054 ip6_redirect EXPORT_SYMBOL_GPL vmlinux 0x92a13e8e __wake_up_sync -EXPORT_SYMBOL_GPL vmlinux 0x92a515de tps65912_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x92a2f507 spi_mem_default_supports_op EXPORT_SYMBOL_GPL vmlinux 0x92aa373b idr_alloc_u32 -EXPORT_SYMBOL_GPL vmlinux 0x92ad3fc9 dev_pm_opp_of_get_opp_desc_node -EXPORT_SYMBOL_GPL vmlinux 0x92b83d33 serial8250_release_dma -EXPORT_SYMBOL_GPL vmlinux 0x92b9b1c2 devlink_port_params_unregister +EXPORT_SYMBOL_GPL vmlinux 0x92c05513 device_show_int EXPORT_SYMBOL_GPL vmlinux 0x92c925fb xas_clear_mark -EXPORT_SYMBOL_GPL vmlinux 0x92ce52cc regulator_get_current_limit EXPORT_SYMBOL_GPL vmlinux 0x92d31cfb fixed_phy_add -EXPORT_SYMBOL_GPL vmlinux 0x92d73c11 dma_async_device_channel_unregister EXPORT_SYMBOL_GPL vmlinux 0x92db8f68 do_trace_rcu_torture_read -EXPORT_SYMBOL_GPL vmlinux 0x92dfae11 regmap_field_alloc -EXPORT_SYMBOL_GPL vmlinux 0x92e44b32 inet6_sk_rebuild_header EXPORT_SYMBOL_GPL vmlinux 0x92e8e9ab fsverity_enqueue_verify_work -EXPORT_SYMBOL_GPL vmlinux 0x92eb9399 pinmux_generic_get_function -EXPORT_SYMBOL_GPL vmlinux 0x92f00a9e dev_queue_xmit_nit +EXPORT_SYMBOL_GPL vmlinux 0x92ed539e aead_register_instance EXPORT_SYMBOL_GPL vmlinux 0x92f0aa28 opal_tpo_write -EXPORT_SYMBOL_GPL vmlinux 0x92fefdc0 pcibios_free_controller_deferred -EXPORT_SYMBOL_GPL vmlinux 0x930321e1 ata_sff_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x93190e85 desc_to_gpio -EXPORT_SYMBOL_GPL vmlinux 0x932054fa umd_cleanup_helper -EXPORT_SYMBOL_GPL vmlinux 0x9322fd5d i2c_new_ancillary_device +EXPORT_SYMBOL_GPL vmlinux 0x930b9b59 of_clk_get_parent_name +EXPORT_SYMBOL_GPL vmlinux 0x930ec4eb pcie_aspm_capable EXPORT_SYMBOL_GPL vmlinux 0x93255b2b ring_buffer_lock_reserve EXPORT_SYMBOL_GPL vmlinux 0x9327c693 freq_qos_remove_request EXPORT_SYMBOL_GPL vmlinux 0x932c8d7a linear_range_get_value_array -EXPORT_SYMBOL_GPL vmlinux 0x932f2395 fwnode_handle_get -EXPORT_SYMBOL_GPL vmlinux 0x933cebf1 fat_attach -EXPORT_SYMBOL_GPL vmlinux 0x933f4db7 power_supply_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0x933546bb dev_attr_em_message_type EXPORT_SYMBOL_GPL vmlinux 0x934a0aee kvmppc_subcore_exit_guest -EXPORT_SYMBOL_GPL vmlinux 0x93524b43 serial8250_rx_dma_flush -EXPORT_SYMBOL_GPL vmlinux 0x93560726 dev_pm_opp_adjust_voltage -EXPORT_SYMBOL_GPL vmlinux 0x935a8ab9 __vring_new_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0x937ec411 ata_cable_unknown -EXPORT_SYMBOL_GPL vmlinux 0x9383e1c9 devm_gpiochip_add_data_with_key +EXPORT_SYMBOL_GPL vmlinux 0x937f5f54 serial8250_tx_chars +EXPORT_SYMBOL_GPL vmlinux 0x93807883 sdio_enable_func +EXPORT_SYMBOL_GPL vmlinux 0x93834dd4 of_clk_parent_fill EXPORT_SYMBOL_GPL vmlinux 0x9384cd49 ata_tf_from_fis -EXPORT_SYMBOL_GPL vmlinux 0x939a92f2 gpiochip_find -EXPORT_SYMBOL_GPL vmlinux 0x939e2c58 bpf_trace_run12 -EXPORT_SYMBOL_GPL vmlinux 0x93a96a61 fscrypt_fname_siphash -EXPORT_SYMBOL_GPL vmlinux 0x93aca345 iommu_register_device_fault_handler -EXPORT_SYMBOL_GPL vmlinux 0x93b89dad of_map_id -EXPORT_SYMBOL_GPL vmlinux 0x93c7e8ea tpm_send +EXPORT_SYMBOL_GPL vmlinux 0x9388dd07 ipv4_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x938b551f devlink_trap_groups_unregister +EXPORT_SYMBOL_GPL vmlinux 0x93920df8 nexthop_select_path +EXPORT_SYMBOL_GPL vmlinux 0x93b1dd13 switchdev_handle_fdb_add_to_device +EXPORT_SYMBOL_GPL vmlinux 0x93b2abce blk_mq_freeze_queue_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x93c05c07 dev_err_probe EXPORT_SYMBOL_GPL vmlinux 0x93c7edeb usb_find_common_endpoints -EXPORT_SYMBOL_GPL vmlinux 0x93e28689 iommu_unmap +EXPORT_SYMBOL_GPL vmlinux 0x93d2dd66 usb_enable_intel_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0x93d97d28 pci_find_next_capability EXPORT_SYMBOL_GPL vmlinux 0x93edef07 devlink_health_report +EXPORT_SYMBOL_GPL vmlinux 0x93efd71e of_device_modalias EXPORT_SYMBOL_GPL vmlinux 0x93f2de8f sbitmap_weight EXPORT_SYMBOL_GPL vmlinux 0x93f55fe0 power_supply_batinfo_ocv2cap -EXPORT_SYMBOL_GPL vmlinux 0x940843f6 irq_gc_mask_clr_bit -EXPORT_SYMBOL_GPL vmlinux 0x940dec3b devm_phy_destroy -EXPORT_SYMBOL_GPL vmlinux 0x941781c7 kill_device +EXPORT_SYMBOL_GPL vmlinux 0x93f809b9 bpf_trace_run3 +EXPORT_SYMBOL_GPL vmlinux 0x93ff88e9 rio_local_set_device_id +EXPORT_SYMBOL_GPL vmlinux 0x94091c26 thermal_zone_get_offset +EXPORT_SYMBOL_GPL vmlinux 0x9414ac2d iommu_page_response +EXPORT_SYMBOL_GPL vmlinux 0x9417ab14 tpm_chip_register +EXPORT_SYMBOL_GPL vmlinux 0x941b2768 kvmppc_inject_interrupt_hv +EXPORT_SYMBOL_GPL vmlinux 0x941e2142 pci_create_slot EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put -EXPORT_SYMBOL_GPL vmlinux 0x941f31e6 mm_iommu_put -EXPORT_SYMBOL_GPL vmlinux 0x941f7b15 stmpe_set_bits EXPORT_SYMBOL_GPL vmlinux 0x9425bb34 nvmem_dev_name EXPORT_SYMBOL_GPL vmlinux 0x9430b198 trace_dump_stack -EXPORT_SYMBOL_GPL vmlinux 0x943469c7 devm_pm_opp_attach_genpd +EXPORT_SYMBOL_GPL vmlinux 0x94349ed8 pcibios_free_controller_deferred EXPORT_SYMBOL_GPL vmlinux 0x9436e405 memory_group_register_dynamic -EXPORT_SYMBOL_GPL vmlinux 0x943b3d2c pinctrl_pm_select_idle_state -EXPORT_SYMBOL_GPL vmlinux 0x9442d593 __vfs_removexattr_locked -EXPORT_SYMBOL_GPL vmlinux 0x94522efb crypto_register_kpp +EXPORT_SYMBOL_GPL vmlinux 0x943c8c03 crypto_unregister_alg +EXPORT_SYMBOL_GPL vmlinux 0x94402a47 mptcp_token_get_sock +EXPORT_SYMBOL_GPL vmlinux 0x94428c0b devm_gpiod_get_index EXPORT_SYMBOL_GPL vmlinux 0x946dd559 sha224_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x9479c333 crypto_unregister_aeads +EXPORT_SYMBOL_GPL vmlinux 0x948af10a of_dma_controller_free EXPORT_SYMBOL_GPL vmlinux 0x949b5176 devlink_region_snapshot_create EXPORT_SYMBOL_GPL vmlinux 0x949f7342 __alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0x94cc2b0f __ip6_datagram_connect -EXPORT_SYMBOL_GPL vmlinux 0x94d4569d fixup_user_fault -EXPORT_SYMBOL_GPL vmlinux 0x94da4751 pci_ignore_hotplug +EXPORT_SYMBOL_GPL vmlinux 0x94b240e1 misc_cg_uncharge +EXPORT_SYMBOL_GPL vmlinux 0x94bc28e4 rio_mport_get_physefb +EXPORT_SYMBOL_GPL vmlinux 0x94c17999 event_triggers_call +EXPORT_SYMBOL_GPL vmlinux 0x94d8eaea bpf_prog_select_runtime EXPORT_SYMBOL_GPL vmlinux 0x94ef4d05 cpci_hp_stop +EXPORT_SYMBOL_GPL vmlinux 0x94f4200e __ata_change_queue_depth EXPORT_SYMBOL_GPL vmlinux 0x9504df26 irq_wake_thread +EXPORT_SYMBOL_GPL vmlinux 0x950975c7 tracing_cond_snapshot_data +EXPORT_SYMBOL_GPL vmlinux 0x950f2bc3 em_dev_register_perf_domain +EXPORT_SYMBOL_GPL vmlinux 0x9512f295 crypto_stats_akcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x95189900 iommu_aux_attach_device EXPORT_SYMBOL_GPL vmlinux 0x951a2773 crypto_has_alg +EXPORT_SYMBOL_GPL vmlinux 0x95249810 pwm_adjust_config EXPORT_SYMBOL_GPL vmlinux 0x952664c5 do_exit -EXPORT_SYMBOL_GPL vmlinux 0x95283d19 pci_get_dsn -EXPORT_SYMBOL_GPL vmlinux 0x953015eb ata_noop_qc_prep -EXPORT_SYMBOL_GPL vmlinux 0x953bd490 rtc_initialize_alarm +EXPORT_SYMBOL_GPL vmlinux 0x952e0fbc class_dev_iter_next EXPORT_SYMBOL_GPL vmlinux 0x953e1b9e ktime_get_real_seconds +EXPORT_SYMBOL_GPL vmlinux 0x954606c1 put_pid +EXPORT_SYMBOL_GPL vmlinux 0x954a05fc scsi_target_block +EXPORT_SYMBOL_GPL vmlinux 0x9553d37b usb_unlink_urb EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn -EXPORT_SYMBOL_GPL vmlinux 0x95641170 devm_hwrng_unregister -EXPORT_SYMBOL_GPL vmlinux 0x95652161 crypto_unregister_templates +EXPORT_SYMBOL_GPL vmlinux 0x955b2bd8 umd_cleanup_helper +EXPORT_SYMBOL_GPL vmlinux 0x95636f9c devm_mbox_controller_register EXPORT_SYMBOL_GPL vmlinux 0x956ac400 ring_buffer_dropped_events_cpu -EXPORT_SYMBOL_GPL vmlinux 0x9575beb7 devm_kstrdup_const EXPORT_SYMBOL_GPL vmlinux 0x95843030 mpi_ec_init +EXPORT_SYMBOL_GPL vmlinux 0x958caecb nf_route EXPORT_SYMBOL_GPL vmlinux 0x958df3ac zs_free +EXPORT_SYMBOL_GPL vmlinux 0x958e320d badblocks_exit EXPORT_SYMBOL_GPL vmlinux 0x9593ef31 register_ftrace_export -EXPORT_SYMBOL_GPL vmlinux 0x95ac6798 regcache_mark_dirty -EXPORT_SYMBOL_GPL vmlinux 0x95ad8f30 crypto_hash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0x959967d0 device_bind_driver +EXPORT_SYMBOL_GPL vmlinux 0x9599fbf7 serdev_device_set_parity +EXPORT_SYMBOL_GPL vmlinux 0x95a73755 edac_pci_free_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0x95b0ff69 watchdog_init_timeout EXPORT_SYMBOL_GPL vmlinux 0x95b6fec4 xive_native_free_vp_block +EXPORT_SYMBOL_GPL vmlinux 0x95b90566 bpf_verifier_log_write EXPORT_SYMBOL_GPL vmlinux 0x95bc9078 btree_free -EXPORT_SYMBOL_GPL vmlinux 0x95c5ada2 iommu_detach_group -EXPORT_SYMBOL_GPL vmlinux 0x95de361c list_lru_walk_one +EXPORT_SYMBOL_GPL vmlinux 0x95ce9027 crypto_unregister_shash +EXPORT_SYMBOL_GPL vmlinux 0x95d90c09 sk_detach_filter +EXPORT_SYMBOL_GPL vmlinux 0x95db76be __vring_new_virtqueue EXPORT_SYMBOL_GPL vmlinux 0x95e102ab tracepoint_probe_register -EXPORT_SYMBOL_GPL vmlinux 0x95ecc5bb kernfs_path_from_node -EXPORT_SYMBOL_GPL vmlinux 0x95f6a9cd ata_common_sdev_attrs -EXPORT_SYMBOL_GPL vmlinux 0x9600fafa sysfs_create_files -EXPORT_SYMBOL_GPL vmlinux 0x96037bbf pnv_ocxl_get_pasid_count -EXPORT_SYMBOL_GPL vmlinux 0x9603ffe3 regmap_bulk_write -EXPORT_SYMBOL_GPL vmlinux 0x9608dbf9 rtc_read_alarm +EXPORT_SYMBOL_GPL vmlinux 0x9600011c noop_direct_IO +EXPORT_SYMBOL_GPL vmlinux 0x960e1a82 genphy_c45_loopback +EXPORT_SYMBOL_GPL vmlinux 0x960e396f thermal_zone_unbind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0x960f803e dev_pm_opp_get_max_clock_latency EXPORT_SYMBOL_GPL vmlinux 0x961286e0 ring_buffer_read_events_cpu -EXPORT_SYMBOL_GPL vmlinux 0x9613f7ab compat_only_sysfs_link_entry_to_kobj -EXPORT_SYMBOL_GPL vmlinux 0x962bc601 device_set_wakeup_enable -EXPORT_SYMBOL_GPL vmlinux 0x963728e9 device_release_driver +EXPORT_SYMBOL_GPL vmlinux 0x961da420 gov_attr_set_put +EXPORT_SYMBOL_GPL vmlinux 0x962a5bbe serial8250_rx_chars +EXPORT_SYMBOL_GPL vmlinux 0x963be783 bsg_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0x96427694 pci_stop_and_remove_bus_device_locked +EXPORT_SYMBOL_GPL vmlinux 0x96505237 vp_modern_queue_vector +EXPORT_SYMBOL_GPL vmlinux 0x965300c8 irq_domain_create_hierarchy EXPORT_SYMBOL_GPL vmlinux 0x96554810 register_keyboard_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9656f1df devm_regmap_field_alloc -EXPORT_SYMBOL_GPL vmlinux 0x966606e2 pnv_ocxl_get_actag -EXPORT_SYMBOL_GPL vmlinux 0x9668ef75 mptcp_token_get_sock -EXPORT_SYMBOL_GPL vmlinux 0x96866525 pci_epf_free_space -EXPORT_SYMBOL_GPL vmlinux 0x96ac197f blkg_lookup_slowpath -EXPORT_SYMBOL_GPL vmlinux 0x96b3e77b devm_memunmap_pages +EXPORT_SYMBOL_GPL vmlinux 0x96618da1 device_store_ulong +EXPORT_SYMBOL_GPL vmlinux 0x96669d0e xdp_do_redirect +EXPORT_SYMBOL_GPL vmlinux 0x96785c34 thp_get_unmapped_area +EXPORT_SYMBOL_GPL vmlinux 0x967cbd84 dst_blackhole_mtu +EXPORT_SYMBOL_GPL vmlinux 0x967ecb90 dma_async_device_channel_register +EXPORT_SYMBOL_GPL vmlinux 0x9680b981 cpufreq_driver_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0x9696ad61 iomap_writepages +EXPORT_SYMBOL_GPL vmlinux 0x969f04aa cpu_device_create +EXPORT_SYMBOL_GPL vmlinux 0x96b1d665 usb_disable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x96b69898 ata_pci_device_do_suspend +EXPORT_SYMBOL_GPL vmlinux 0x96c4b19f cpci_hp_register_controller EXPORT_SYMBOL_GPL vmlinux 0x96ca63f5 __rht_bucket_nested EXPORT_SYMBOL_GPL vmlinux 0x96cc48b9 xive_native_default_eq_shift -EXPORT_SYMBOL_GPL vmlinux 0x96e31a41 usb_get_hcd -EXPORT_SYMBOL_GPL vmlinux 0x96f9bd5c crypto_unregister_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x96efc4ca gpiod_get_raw_value +EXPORT_SYMBOL_GPL vmlinux 0x96f2b7fa bpf_trace_run12 +EXPORT_SYMBOL_GPL vmlinux 0x96f3c06f blk_queue_set_zoned +EXPORT_SYMBOL_GPL vmlinux 0x96f4927d virtqueue_get_buf +EXPORT_SYMBOL_GPL vmlinux 0x96f9a01b __SCK__tp_func_pelt_thermal_tp +EXPORT_SYMBOL_GPL vmlinux 0x970434d9 fwnode_usb_role_switch_get EXPORT_SYMBOL_GPL vmlinux 0x97053efa smp_call_function_any -EXPORT_SYMBOL_GPL vmlinux 0x97115f9d perf_event_disable +EXPORT_SYMBOL_GPL vmlinux 0x970a9dc3 tty_set_termios +EXPORT_SYMBOL_GPL vmlinux 0x970b2441 inet_csk_reqsk_queue_hash_add +EXPORT_SYMBOL_GPL vmlinux 0x97104430 i2c_for_each_dev EXPORT_SYMBOL_GPL vmlinux 0x9714e0bb ktime_get_raw -EXPORT_SYMBOL_GPL vmlinux 0x973a8a8d device_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0x974199f9 tty_port_register_device_serdev +EXPORT_SYMBOL_GPL vmlinux 0x974d7fea of_genpd_add_device EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same -EXPORT_SYMBOL_GPL vmlinux 0x97679966 unregister_virtio_driver -EXPORT_SYMBOL_GPL vmlinux 0x97802133 trace_array_set_clr_event -EXPORT_SYMBOL_GPL vmlinux 0x97934c22 sched_trace_cfs_rq_path -EXPORT_SYMBOL_GPL vmlinux 0x979cb1cb rdev_get_dev -EXPORT_SYMBOL_GPL vmlinux 0x979eb53a regmap_mmio_detach_clk -EXPORT_SYMBOL_GPL vmlinux 0x97b50931 serdev_controller_remove -EXPORT_SYMBOL_GPL vmlinux 0x97bd6a90 rio_mport_read_config_32 -EXPORT_SYMBOL_GPL vmlinux 0x97dc5737 xdp_rxq_info_unused +EXPORT_SYMBOL_GPL vmlinux 0x9758b91c __devm_regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0x976feefc perf_tp_event +EXPORT_SYMBOL_GPL vmlinux 0x9771d514 ethtool_set_ethtool_phy_ops +EXPORT_SYMBOL_GPL vmlinux 0x978836e4 __udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x978a639d scsi_dh_attach +EXPORT_SYMBOL_GPL vmlinux 0x97cba322 phy_save_page +EXPORT_SYMBOL_GPL vmlinux 0x97dd4f9f __hvc_resize EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent -EXPORT_SYMBOL_GPL vmlinux 0x97e3cc8d dev_pm_opp_enable -EXPORT_SYMBOL_GPL vmlinux 0x97e3d2b3 mpc8xxx_spi_probe -EXPORT_SYMBOL_GPL vmlinux 0x97ee32ce dma_resv_wait_timeout -EXPORT_SYMBOL_GPL vmlinux 0x97f9e25d skb_mpls_dec_ttl -EXPORT_SYMBOL_GPL vmlinux 0x97fdc9a5 clk_register_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0x981950f2 ata_port_desc -EXPORT_SYMBOL_GPL vmlinux 0x982a3a6c dev_pm_opp_free_cpufreq_table +EXPORT_SYMBOL_GPL vmlinux 0x9807a177 debugfs_create_size_t +EXPORT_SYMBOL_GPL vmlinux 0x980968e9 adp5520_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x982291b2 iommu_device_link +EXPORT_SYMBOL_GPL vmlinux 0x9832156a __netif_set_xps_queue EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick +EXPORT_SYMBOL_GPL vmlinux 0x983c0db0 dst_blackhole_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0x98503a63 mpi_alloc +EXPORT_SYMBOL_GPL vmlinux 0x9853a8df ata_common_sdev_attrs EXPORT_SYMBOL_GPL vmlinux 0x985453e1 lease_unregister_notifier EXPORT_SYMBOL_GPL vmlinux 0x9855a697 opal_xscom_read -EXPORT_SYMBOL_GPL vmlinux 0x9861bfc5 pm_relax -EXPORT_SYMBOL_GPL vmlinux 0x987302b0 devm_pinctrl_register_and_init +EXPORT_SYMBOL_GPL vmlinux 0x985c3dd3 switchdev_handle_fdb_del_to_device +EXPORT_SYMBOL_GPL vmlinux 0x98610634 dev_pm_opp_remove +EXPORT_SYMBOL_GPL vmlinux 0x9876df82 extcon_get_property_capability +EXPORT_SYMBOL_GPL vmlinux 0x98797494 edac_pci_del_device EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9886fecb tcp_bpf_sendmsg_redir -EXPORT_SYMBOL_GPL vmlinux 0x98876689 rio_mport_send_doorbell +EXPORT_SYMBOL_GPL vmlinux 0x987e8b43 udp_destruct_sock +EXPORT_SYMBOL_GPL vmlinux 0x987f2504 devlink_rate_nodes_destroy +EXPORT_SYMBOL_GPL vmlinux 0x987fdb9a dw_pcie_ep_init +EXPORT_SYMBOL_GPL vmlinux 0x98865ff1 sk_clear_memalloc EXPORT_SYMBOL_GPL vmlinux 0x989074ff kmsg_dump_reason_str -EXPORT_SYMBOL_GPL vmlinux 0x98924963 init_user_ns -EXPORT_SYMBOL_GPL vmlinux 0x9893c04f fuse_simple_background -EXPORT_SYMBOL_GPL vmlinux 0x989a2e70 gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0x98993a72 genphy_c45_read_mdix +EXPORT_SYMBOL_GPL vmlinux 0x989a806b crypto_register_acomp +EXPORT_SYMBOL_GPL vmlinux 0x989a8c7f pwmchip_remove EXPORT_SYMBOL_GPL vmlinux 0x989b73b3 sbitmap_init_node EXPORT_SYMBOL_GPL vmlinux 0x98b142fa blk_fill_rwbs +EXPORT_SYMBOL_GPL vmlinux 0x98bcc046 dev_coredumpv EXPORT_SYMBOL_GPL vmlinux 0x98c59274 __tracepoint_rpm_idle -EXPORT_SYMBOL_GPL vmlinux 0x98ca98f6 of_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0x98d942d9 usb_autopm_get_interface_async -EXPORT_SYMBOL_GPL vmlinux 0x98e800f8 gpiochip_free_own_desc -EXPORT_SYMBOL_GPL vmlinux 0x98ed4494 crypto_lookup_template +EXPORT_SYMBOL_GPL vmlinux 0x98d1086d eeh_pe_get_state +EXPORT_SYMBOL_GPL vmlinux 0x98d95e90 bpf_prog_put +EXPORT_SYMBOL_GPL vmlinux 0x98dd28fd register_cxl_calls +EXPORT_SYMBOL_GPL vmlinux 0x98e8c0e2 usb_hcd_map_urb_for_dma EXPORT_SYMBOL_GPL vmlinux 0x98ee62b2 ring_buffer_record_disable_cpu -EXPORT_SYMBOL_GPL vmlinux 0x98efe968 dax_finish_sync_fault -EXPORT_SYMBOL_GPL vmlinux 0x98f1ae0e extcon_dev_free -EXPORT_SYMBOL_GPL vmlinux 0x98f3c613 user_read EXPORT_SYMBOL_GPL vmlinux 0x98fa1e20 dm_get_reserved_rq_based_ios -EXPORT_SYMBOL_GPL vmlinux 0x990fc5f6 of_console_check -EXPORT_SYMBOL_GPL vmlinux 0x991db3d8 skb_mpls_update_lse -EXPORT_SYMBOL_GPL vmlinux 0x9931f141 pci_set_cacheline_size -EXPORT_SYMBOL_GPL vmlinux 0x99481d90 xhci_add_endpoint -EXPORT_SYMBOL_GPL vmlinux 0x9957c35b eeh_iommu_group_to_pe +EXPORT_SYMBOL_GPL vmlinux 0x990ba2ee gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0x990e1be4 usb_hcd_end_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x99113b5b regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9913ea8f devm_phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0x99168795 __traceiter_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0x991b0c6c blk_trace_remove +EXPORT_SYMBOL_GPL vmlinux 0x9928fc69 tty_mode_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x994af727 of_get_phy_mode EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on EXPORT_SYMBOL_GPL vmlinux 0x9968aacb __audit_log_nfcfg +EXPORT_SYMBOL_GPL vmlinux 0x996c5b44 tpm_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0x9974a4fe nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0x99848da0 clockevents_config_and_register EXPORT_SYMBOL_GPL vmlinux 0x9986cabc hrtimer_init -EXPORT_SYMBOL_GPL vmlinux 0x99891b01 dev_pm_opp_init_cpufreq_table -EXPORT_SYMBOL_GPL vmlinux 0x998b28bc edac_mc_free EXPORT_SYMBOL_GPL vmlinux 0x998d79d6 x509_decode_time -EXPORT_SYMBOL_GPL vmlinux 0x99c1f2eb power_supply_powers -EXPORT_SYMBOL_GPL vmlinux 0x99c63c52 ata_sff_tf_read +EXPORT_SYMBOL_GPL vmlinux 0x999b0f99 tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x999ddb04 cpu_add_dev_attr +EXPORT_SYMBOL_GPL vmlinux 0x99b6a9e1 fsstack_copy_inode_size +EXPORT_SYMBOL_GPL vmlinux 0x99b9d6ec sock_diag_unregister +EXPORT_SYMBOL_GPL vmlinux 0x99c6b4ae of_get_fb_videomode EXPORT_SYMBOL_GPL vmlinux 0x99dd730c page_reporting_unregister EXPORT_SYMBOL_GPL vmlinux 0x99f018c4 nvmem_cell_read EXPORT_SYMBOL_GPL vmlinux 0x99f2d00a sysfs_emit_at -EXPORT_SYMBOL_GPL vmlinux 0x99f68144 devlink_dpipe_table_unregister -EXPORT_SYMBOL_GPL vmlinux 0x99fa092c devfreq_get_devfreq_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x9a0562c8 gpiod_get -EXPORT_SYMBOL_GPL vmlinux 0x9a075813 regmap_noinc_read +EXPORT_SYMBOL_GPL vmlinux 0x99f64f7e disk_update_readahead +EXPORT_SYMBOL_GPL vmlinux 0x9a06bcf6 dm_internal_resume_fast +EXPORT_SYMBOL_GPL vmlinux 0x9a09a49e tty_init_termios EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name -EXPORT_SYMBOL_GPL vmlinux 0x9a1e57eb nvdimm_blk_region_create -EXPORT_SYMBOL_GPL vmlinux 0x9a629e5d bpf_offload_dev_netdev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x9a66f853 lp8788_update_bits -EXPORT_SYMBOL_GPL vmlinux 0x9a7dcb9a __regmap_init_spi -EXPORT_SYMBOL_GPL vmlinux 0x9a8c3e04 ata_link_next -EXPORT_SYMBOL_GPL vmlinux 0x9a984fe1 cpuidle_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x9aaef1db pcie_update_link_speed -EXPORT_SYMBOL_GPL vmlinux 0x9aaf4c43 skb_cow_data -EXPORT_SYMBOL_GPL vmlinux 0x9ab120f0 skb_complete_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x9a3c98af power_supply_set_battery_charged +EXPORT_SYMBOL_GPL vmlinux 0x9a40e302 mm_iommu_put +EXPORT_SYMBOL_GPL vmlinux 0x9a527ffb fwnode_graph_get_port_parent +EXPORT_SYMBOL_GPL vmlinux 0x9a693d80 dev_pm_set_dedicated_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x9a75196b stmpe_enable +EXPORT_SYMBOL_GPL vmlinux 0x9a822d38 cgroup_get_from_id +EXPORT_SYMBOL_GPL vmlinux 0x9a8427b1 simple_attr_read +EXPORT_SYMBOL_GPL vmlinux 0x9a9c65e7 regmap_get_raw_write_max +EXPORT_SYMBOL_GPL vmlinux 0x9aa7e3d3 devm_namespace_disable EXPORT_SYMBOL_GPL vmlinux 0x9ac11b74 suspend_set_ops -EXPORT_SYMBOL_GPL vmlinux 0x9ac2abe0 tpm_default_chip -EXPORT_SYMBOL_GPL vmlinux 0x9ac681bf sfp_register_socket -EXPORT_SYMBOL_GPL vmlinux 0x9ac95ddc scsi_queue_work +EXPORT_SYMBOL_GPL vmlinux 0x9ac2d3f9 bus_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9ad78d3d dma_buf_put +EXPORT_SYMBOL_GPL vmlinux 0x9ad8534a dev_pm_qos_expose_latency_tolerance EXPORT_SYMBOL_GPL vmlinux 0x9adf08c3 mmu_linear_psize -EXPORT_SYMBOL_GPL vmlinux 0x9ae4ffb7 d_walk -EXPORT_SYMBOL_GPL vmlinux 0x9ae9ccc4 dma_run_dependencies +EXPORT_SYMBOL_GPL vmlinux 0x9ae16582 firmware_request_nowarn +EXPORT_SYMBOL_GPL vmlinux 0x9ae89af7 pci_iov_virtfn_devfn EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty -EXPORT_SYMBOL_GPL vmlinux 0x9aedf5cb dev_pm_opp_put_clkname -EXPORT_SYMBOL_GPL vmlinux 0x9af19769 tty_init_termios +EXPORT_SYMBOL_GPL vmlinux 0x9aed5bf8 ata_qc_complete_multiple EXPORT_SYMBOL_GPL vmlinux 0x9af49514 icc_bulk_set_bw -EXPORT_SYMBOL_GPL vmlinux 0x9b017b07 serial8250_read_char -EXPORT_SYMBOL_GPL vmlinux 0x9b019562 dma_get_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0x9b05d843 blk_queue_can_use_dma_map_merging -EXPORT_SYMBOL_GPL vmlinux 0x9b0ac94c tcp_reno_cong_avoid -EXPORT_SYMBOL_GPL vmlinux 0x9b0f3cb2 uart_insert_char +EXPORT_SYMBOL_GPL vmlinux 0x9af5baf1 pci_cfg_access_lock +EXPORT_SYMBOL_GPL vmlinux 0x9b0743a0 rtnl_put_cacheinfo +EXPORT_SYMBOL_GPL vmlinux 0x9b0857d7 gpiod_set_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x9b12419d iomap_readpage EXPORT_SYMBOL_GPL vmlinux 0x9b130ca5 h_query_vas_capabilities -EXPORT_SYMBOL_GPL vmlinux 0x9b3af61c virtqueue_enable_cb_delayed -EXPORT_SYMBOL_GPL vmlinux 0x9b46754f usb_phy_roothub_resume -EXPORT_SYMBOL_GPL vmlinux 0x9b472de0 vfio_unregister_group_dev +EXPORT_SYMBOL_GPL vmlinux 0x9b18a08a disk_uevent +EXPORT_SYMBOL_GPL vmlinux 0x9b18d159 nf_hook_entries_insert_raw +EXPORT_SYMBOL_GPL vmlinux 0x9b2250e3 usb_autopm_get_interface +EXPORT_SYMBOL_GPL vmlinux 0x9b230082 __pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0x9b368749 iommu_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x9b4371ec dm_set_target_max_io_len +EXPORT_SYMBOL_GPL vmlinux 0x9b4daf11 tcp_reno_cong_avoid EXPORT_SYMBOL_GPL vmlinux 0x9b555c8c pm_suspend_default_s2idle -EXPORT_SYMBOL_GPL vmlinux 0x9b669550 pci_epc_mem_free_addr -EXPORT_SYMBOL_GPL vmlinux 0x9b6c18a7 serial8250_do_startup +EXPORT_SYMBOL_GPL vmlinux 0x9b559003 usb_block_urb +EXPORT_SYMBOL_GPL vmlinux 0x9b57a59d __rtnl_link_register EXPORT_SYMBOL_GPL vmlinux 0x9b6ec967 ring_buffer_size EXPORT_SYMBOL_GPL vmlinux 0x9b70c6ff tracepoint_probe_register_prio +EXPORT_SYMBOL_GPL vmlinux 0x9b7f18ee clk_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0x9b83dc83 crypto_stats_decompress EXPORT_SYMBOL_GPL vmlinux 0x9b896724 devlink_param_value_str_fill -EXPORT_SYMBOL_GPL vmlinux 0x9b905898 regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x9b8baf2e rio_mport_get_feature +EXPORT_SYMBOL_GPL vmlinux 0x9b8d9551 dev_pm_opp_attach_genpd +EXPORT_SYMBOL_GPL vmlinux 0x9b8fe9dc devlink_port_params_unregister EXPORT_SYMBOL_GPL vmlinux 0x9b9071cb get_old_itimerspec32 -EXPORT_SYMBOL_GPL vmlinux 0x9b92c97c gpiochip_is_requested EXPORT_SYMBOL_GPL vmlinux 0x9b92d16e pinctrl_gpio_set_config EXPORT_SYMBOL_GPL vmlinux 0x9ba2bb2b gpio_request_array -EXPORT_SYMBOL_GPL vmlinux 0x9bcedc45 rdev_set_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x9bbc39b0 vfio_group_get_external_user EXPORT_SYMBOL_GPL vmlinux 0x9bcf9f7d housekeeping_enabled -EXPORT_SYMBOL_GPL vmlinux 0x9bd6104c gpiod_get_raw_array_value_cansleep EXPORT_SYMBOL_GPL vmlinux 0x9bde79bc xive_tima_os +EXPORT_SYMBOL_GPL vmlinux 0x9be0c1b7 l3mdev_master_upper_ifindex_by_index_rcu EXPORT_SYMBOL_GPL vmlinux 0x9be30d27 mhp_get_pluggable_range +EXPORT_SYMBOL_GPL vmlinux 0x9be4cd2f pm_runtime_barrier +EXPORT_SYMBOL_GPL vmlinux 0x9bec2f95 dev_pm_opp_is_turbo EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui -EXPORT_SYMBOL_GPL vmlinux 0x9bf66652 adp5520_write -EXPORT_SYMBOL_GPL vmlinux 0x9bf9ec90 devlink_params_register -EXPORT_SYMBOL_GPL vmlinux 0x9c0ba620 iommu_aux_detach_device -EXPORT_SYMBOL_GPL vmlinux 0x9c31ce87 rio_local_get_device_id -EXPORT_SYMBOL_GPL vmlinux 0x9c332dc6 dax_iomap_rw -EXPORT_SYMBOL_GPL vmlinux 0x9c515092 usb_get_descriptor -EXPORT_SYMBOL_GPL vmlinux 0x9c52fad0 __xdp_build_skb_from_frame -EXPORT_SYMBOL_GPL vmlinux 0x9c652176 input_ff_upload +EXPORT_SYMBOL_GPL vmlinux 0x9c0efb77 lwtunnel_output +EXPORT_SYMBOL_GPL vmlinux 0x9c1c40d6 devlink_net +EXPORT_SYMBOL_GPL vmlinux 0x9c42f943 __traceiter_pelt_dl_tp +EXPORT_SYMBOL_GPL vmlinux 0x9c595810 clk_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0x9c62f96d uart_xchar_out EXPORT_SYMBOL_GPL vmlinux 0x9c6febfc add_uevent_var -EXPORT_SYMBOL_GPL vmlinux 0x9c78b13b pci_enable_rom +EXPORT_SYMBOL_GPL vmlinux 0x9c7882cd regulator_disable EXPORT_SYMBOL_GPL vmlinux 0x9c803020 usb_phy_roothub_power_on -EXPORT_SYMBOL_GPL vmlinux 0x9c8371bb usb_find_interface -EXPORT_SYMBOL_GPL vmlinux 0x9c8cf5a0 of_usb_get_phy_mode EXPORT_SYMBOL_GPL vmlinux 0x9c8e8aa0 rhashtable_walk_stop -EXPORT_SYMBOL_GPL vmlinux 0x9c927e45 addrconf_prefix_rcv_add_addr -EXPORT_SYMBOL_GPL vmlinux 0x9cc4da88 dev_attr_unload_heads +EXPORT_SYMBOL_GPL vmlinux 0x9c96e839 usb_get_dr_mode +EXPORT_SYMBOL_GPL vmlinux 0x9c9aede9 __irq_set_handler +EXPORT_SYMBOL_GPL vmlinux 0x9ca9eae5 fsverity_ioctl_read_metadata +EXPORT_SYMBOL_GPL vmlinux 0x9cab7572 skb_gso_validate_mac_len +EXPORT_SYMBOL_GPL vmlinux 0x9caffae0 fsnotify_get_group +EXPORT_SYMBOL_GPL vmlinux 0x9cb7d977 sdio_set_block_size EXPORT_SYMBOL_GPL vmlinux 0x9cc4f70a register_pm_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9cd1a28e of_detach_node -EXPORT_SYMBOL_GPL vmlinux 0x9cdc0c36 balloon_page_alloc -EXPORT_SYMBOL_GPL vmlinux 0x9ce812e9 crypto_register_acomps +EXPORT_SYMBOL_GPL vmlinux 0x9cdbf2b3 vmf_insert_pfn_pmd_prot EXPORT_SYMBOL_GPL vmlinux 0x9cf37c44 __iowrite32_copy -EXPORT_SYMBOL_GPL vmlinux 0x9cf4a96b iommu_sva_bind_device -EXPORT_SYMBOL_GPL vmlinux 0x9d05407d inet6_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x9d085634 ping_seq_start EXPORT_SYMBOL_GPL vmlinux 0x9d09e8ae ring_buffer_event_data +EXPORT_SYMBOL_GPL vmlinux 0x9d12168d ata_host_register +EXPORT_SYMBOL_GPL vmlinux 0x9d188b18 fuse_do_open +EXPORT_SYMBOL_GPL vmlinux 0x9d1e2945 rio_del_mport_pw_handler +EXPORT_SYMBOL_GPL vmlinux 0x9d235c49 __pm_runtime_use_autosuspend EXPORT_SYMBOL_GPL vmlinux 0x9d2f49ef __SCK__tp_func_pelt_se_tp EXPORT_SYMBOL_GPL vmlinux 0x9d340c7a hwrng_register -EXPORT_SYMBOL_GPL vmlinux 0x9d66dced genphy_c45_read_lpa -EXPORT_SYMBOL_GPL vmlinux 0x9d8e8b30 set_thread_tidr -EXPORT_SYMBOL_GPL vmlinux 0x9da26da8 pm_clk_add_clk +EXPORT_SYMBOL_GPL vmlinux 0x9d413fe8 devm_regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9d5682c2 thermal_zone_of_get_sensor_id +EXPORT_SYMBOL_GPL vmlinux 0x9d57d1dd cpufreq_dbs_governor_limits +EXPORT_SYMBOL_GPL vmlinux 0x9d57f9bd eeh_pe_state_mark +EXPORT_SYMBOL_GPL vmlinux 0x9d63b6e4 edac_pci_create_generic_ctl +EXPORT_SYMBOL_GPL vmlinux 0x9d6dbefc balloon_page_enqueue +EXPORT_SYMBOL_GPL vmlinux 0x9d945f83 regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x9d9a90b5 ata_bmdma_post_internal_cmd +EXPORT_SYMBOL_GPL vmlinux 0x9d9e86a1 sk_msg_zerocopy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0x9da2e7da em_pd_get EXPORT_SYMBOL_GPL vmlinux 0x9dad4fc6 iommu_tce_table_get -EXPORT_SYMBOL_GPL vmlinux 0x9daf970f sched_trace_cfs_rq_cpu -EXPORT_SYMBOL_GPL vmlinux 0x9dafc296 virtqueue_get_avail_addr -EXPORT_SYMBOL_GPL vmlinux 0x9dc7857c blk_freeze_queue_start -EXPORT_SYMBOL_GPL vmlinux 0x9dc90bae syscon_regmap_lookup_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x9dcb981c fat_add_entries -EXPORT_SYMBOL_GPL vmlinux 0x9df4406c spi_statistics_add_transfer_stats +EXPORT_SYMBOL_GPL vmlinux 0x9db0e15f of_clk_hw_simple_get +EXPORT_SYMBOL_GPL vmlinux 0x9db25bd4 unregister_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x9dbb1aa8 md_bitmap_resize +EXPORT_SYMBOL_GPL vmlinux 0x9dc573c1 devm_pm_opp_set_supported_hw +EXPORT_SYMBOL_GPL vmlinux 0x9dcb0921 verify_signature +EXPORT_SYMBOL_GPL vmlinux 0x9dd9ac48 devlink_param_driverinit_value_get +EXPORT_SYMBOL_GPL vmlinux 0x9dfba52a devm_spi_register_controller +EXPORT_SYMBOL_GPL vmlinux 0x9dfe31c0 md_find_rdev_nr_rcu EXPORT_SYMBOL_GPL vmlinux 0x9e097d0b blocking_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x9e09a0b7 gpiod_is_active_low -EXPORT_SYMBOL_GPL vmlinux 0x9e148651 pm_generic_suspend -EXPORT_SYMBOL_GPL vmlinux 0x9e247ecb gpiochip_line_is_open_source -EXPORT_SYMBOL_GPL vmlinux 0x9e25cbb9 irq_chip_set_wake_parent -EXPORT_SYMBOL_GPL vmlinux 0x9e2b2231 pci_dev_trylock +EXPORT_SYMBOL_GPL vmlinux 0x9e0e1bee dma_request_chan +EXPORT_SYMBOL_GPL vmlinux 0x9e19b27e mbox_client_peek_data +EXPORT_SYMBOL_GPL vmlinux 0x9e1e81e3 crypto_larval_alloc +EXPORT_SYMBOL_GPL vmlinux 0x9e2ea183 irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x9e399c3d nvdimm_provider_data EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field -EXPORT_SYMBOL_GPL vmlinux 0x9e4d1936 crypto_register_rng -EXPORT_SYMBOL_GPL vmlinux 0x9e61eb02 device_register -EXPORT_SYMBOL_GPL vmlinux 0x9e7e6bfe devlink_region_snapshot_id_put -EXPORT_SYMBOL_GPL vmlinux 0x9e8b265b __crypto_alloc_tfm -EXPORT_SYMBOL_GPL vmlinux 0x9e8d4196 pinctrl_generic_remove_group -EXPORT_SYMBOL_GPL vmlinux 0x9e9086e1 thermal_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x9e65c10c genphy_c45_read_lpa +EXPORT_SYMBOL_GPL vmlinux 0x9e6684d5 blkdev_zone_mgmt +EXPORT_SYMBOL_GPL vmlinux 0x9e889843 sock_diag_register_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0x9e925a4c pci_enable_ats +EXPORT_SYMBOL_GPL vmlinux 0x9e9a4b85 usb_bulk_msg EXPORT_SYMBOL_GPL vmlinux 0x9e9b913d __tracepoint_arm_event -EXPORT_SYMBOL_GPL vmlinux 0x9ea4e4ae nf_checksum -EXPORT_SYMBOL_GPL vmlinux 0x9ea966fb sdio_set_block_size EXPORT_SYMBOL_GPL vmlinux 0x9ec1f364 kvmppc_subcore_enter_guest EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9ed55a25 irq_create_of_mapping +EXPORT_SYMBOL_GPL vmlinux 0x9ed6c86f xhci_dbg_trace +EXPORT_SYMBOL_GPL vmlinux 0x9ee46cd2 sdio_unregister_driver EXPORT_SYMBOL_GPL vmlinux 0x9eebdde7 mpi_point_new +EXPORT_SYMBOL_GPL vmlinux 0x9ef33312 dev_coredumpsg EXPORT_SYMBOL_GPL vmlinux 0x9ef58bc5 inet_ehash_locks_alloc -EXPORT_SYMBOL_GPL vmlinux 0x9efaee15 pm_runtime_enable -EXPORT_SYMBOL_GPL vmlinux 0x9f0df238 blkdev_nr_zones -EXPORT_SYMBOL_GPL vmlinux 0x9f147440 kernfs_notify -EXPORT_SYMBOL_GPL vmlinux 0x9f168276 serial8250_do_set_ldisc -EXPORT_SYMBOL_GPL vmlinux 0x9f2aa2ba ata_bmdma_port_intr -EXPORT_SYMBOL_GPL vmlinux 0x9f2f73c6 crypto_aes_set_key -EXPORT_SYMBOL_GPL vmlinux 0x9f33edb3 transport_remove_device -EXPORT_SYMBOL_GPL vmlinux 0x9f3973d4 pci_test_config_bits +EXPORT_SYMBOL_GPL vmlinux 0x9f142783 devm_power_supply_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x9f1ab6e4 vfio_device_get_from_dev +EXPORT_SYMBOL_GPL vmlinux 0x9f24c07d fwnode_property_read_u64_array EXPORT_SYMBOL_GPL vmlinux 0x9f4c4aa0 spi_delay_to_ns EXPORT_SYMBOL_GPL vmlinux 0x9f56c4b9 __SCK__tp_func_devlink_hwmsg -EXPORT_SYMBOL_GPL vmlinux 0x9f59c59a __strp_unpause -EXPORT_SYMBOL_GPL vmlinux 0x9f6f4310 devm_thermal_zone_of_sensor_register -EXPORT_SYMBOL_GPL vmlinux 0x9f981333 is_transparent_hugepage -EXPORT_SYMBOL_GPL vmlinux 0x9fa4f946 edac_pci_add_device -EXPORT_SYMBOL_GPL vmlinux 0x9fa79b12 of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9f5897a8 iommu_uapi_cache_invalidate +EXPORT_SYMBOL_GPL vmlinux 0x9f5de24c ping_rcv +EXPORT_SYMBOL_GPL vmlinux 0x9f665e96 regulator_is_equal +EXPORT_SYMBOL_GPL vmlinux 0x9f82b2b5 pinctrl_dev_get_name +EXPORT_SYMBOL_GPL vmlinux 0x9f8af6db __spi_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x9f9d10aa trace_get_event_file +EXPORT_SYMBOL_GPL vmlinux 0x9fa34bc6 crypto_alloc_acomp_node +EXPORT_SYMBOL_GPL vmlinux 0x9fa6dc2d iommu_map_atomic +EXPORT_SYMBOL_GPL vmlinux 0x9fb4ad2e lwtunnel_encap_add_ops +EXPORT_SYMBOL_GPL vmlinux 0x9fc8d594 ping_hash +EXPORT_SYMBOL_GPL vmlinux 0x9fca1952 synth_event_trace_array EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x9fe3fb28 sata_scr_read +EXPORT_SYMBOL_GPL vmlinux 0x9fde5c09 __clk_mux_determine_rate_closest EXPORT_SYMBOL_GPL vmlinux 0x9fe899b7 get_cpu_idle_time EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm EXPORT_SYMBOL_GPL vmlinux 0xa01a8d9b nd_cmd_bus_desc -EXPORT_SYMBOL_GPL vmlinux 0xa0222bd2 init_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0xa031cb95 icc_provider_del -EXPORT_SYMBOL_GPL vmlinux 0xa045a58b iommu_dev_feature_enabled -EXPORT_SYMBOL_GPL vmlinux 0xa04f4819 platform_device_put +EXPORT_SYMBOL_GPL vmlinux 0xa032a063 sysfs_remove_files +EXPORT_SYMBOL_GPL vmlinux 0xa037a98b dma_need_sync +EXPORT_SYMBOL_GPL vmlinux 0xa04f5d07 page_mkclean EXPORT_SYMBOL_GPL vmlinux 0xa04f945a cpus_read_lock -EXPORT_SYMBOL_GPL vmlinux 0xa05ffd4e __traceiter_devlink_trap_report -EXPORT_SYMBOL_GPL vmlinux 0xa0622d03 da9052_request_irq -EXPORT_SYMBOL_GPL vmlinux 0xa068964b fat_remove_entries -EXPORT_SYMBOL_GPL vmlinux 0xa07e3388 ip6_input +EXPORT_SYMBOL_GPL vmlinux 0xa0502028 cpufreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0xa070310d xdp_attachment_setup EXPORT_SYMBOL_GPL vmlinux 0xa080c5e5 smp_call_function_single_async EXPORT_SYMBOL_GPL vmlinux 0xa08337ed btree_init -EXPORT_SYMBOL_GPL vmlinux 0xa0844408 pci_probe_reset_slot -EXPORT_SYMBOL_GPL vmlinux 0xa084ad97 shmem_file_setup -EXPORT_SYMBOL_GPL vmlinux 0xa08eef93 rio_unlock_device -EXPORT_SYMBOL_GPL vmlinux 0xa09ac2a8 edac_device_handle_ue_count -EXPORT_SYMBOL_GPL vmlinux 0xa0c02c87 dev_pm_qos_hide_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0xa08512e5 regulator_set_mode +EXPORT_SYMBOL_GPL vmlinux 0xa0a3963b generic_fh_to_dentry +EXPORT_SYMBOL_GPL vmlinux 0xa0b0bd0e platform_msi_domain_alloc_irqs +EXPORT_SYMBOL_GPL vmlinux 0xa0c43026 blk_mq_freeze_queue EXPORT_SYMBOL_GPL vmlinux 0xa0d3456d nr_swap_pages -EXPORT_SYMBOL_GPL vmlinux 0xa0d5afcf scsi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0xa0e422c9 sk_psock_tls_strp_read -EXPORT_SYMBOL_GPL vmlinux 0xa0f07427 ip_icmp_error_rfc4884 -EXPORT_SYMBOL_GPL vmlinux 0xa11504e6 bpf_trace_run9 -EXPORT_SYMBOL_GPL vmlinux 0xa1195f6f pm_runtime_suspended_time -EXPORT_SYMBOL_GPL vmlinux 0xa1239e54 clockevents_config_and_register -EXPORT_SYMBOL_GPL vmlinux 0xa12a1e8f ata_sas_async_probe -EXPORT_SYMBOL_GPL vmlinux 0xa12e4bab fat_truncate_time -EXPORT_SYMBOL_GPL vmlinux 0xa1379a81 devm_phy_put +EXPORT_SYMBOL_GPL vmlinux 0xa0d786f2 dev_pm_genpd_set_performance_state +EXPORT_SYMBOL_GPL vmlinux 0xa0dd637a crypto_register_algs +EXPORT_SYMBOL_GPL vmlinux 0xa0e1ac6c dax_copy_to_iter +EXPORT_SYMBOL_GPL vmlinux 0xa1082417 bus_remove_file +EXPORT_SYMBOL_GPL vmlinux 0xa111bc46 rtc_set_time +EXPORT_SYMBOL_GPL vmlinux 0xa112b897 gpiochip_generic_config +EXPORT_SYMBOL_GPL vmlinux 0xa114a0d1 dev_pm_opp_of_add_table_indexed +EXPORT_SYMBOL_GPL vmlinux 0xa11f67f5 cpufreq_disable_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0xa131b2ae rtc_update_irq +EXPORT_SYMBOL_GPL vmlinux 0xa136b4ce virtio_check_driver_offered_feature +EXPORT_SYMBOL_GPL vmlinux 0xa13af56c strp_data_ready EXPORT_SYMBOL_GPL vmlinux 0xa13b2962 pnv_ocxl_tlb_invalidate -EXPORT_SYMBOL_GPL vmlinux 0xa13d7b88 iommu_unregister_device_fault_handler -EXPORT_SYMBOL_GPL vmlinux 0xa154b209 lp8788_read_byte -EXPORT_SYMBOL_GPL vmlinux 0xa155bc91 vfs_setxattr -EXPORT_SYMBOL_GPL vmlinux 0xa1615de1 regmap_get_max_register +EXPORT_SYMBOL_GPL vmlinux 0xa1475433 clk_fixed_rate_ops +EXPORT_SYMBOL_GPL vmlinux 0xa14aa563 rio_mport_read_config_32 EXPORT_SYMBOL_GPL vmlinux 0xa184d5f2 mmu_vmalloc_psize -EXPORT_SYMBOL_GPL vmlinux 0xa18fe2b0 i2c_dw_probe_master -EXPORT_SYMBOL_GPL vmlinux 0xa195ed28 ipv6_stub -EXPORT_SYMBOL_GPL vmlinux 0xa1a9fcb0 ata_sff_wait_after_reset -EXPORT_SYMBOL_GPL vmlinux 0xa1bf7f7c devm_clk_register -EXPORT_SYMBOL_GPL vmlinux 0xa1ca6058 ata_dev_set_feature -EXPORT_SYMBOL_GPL vmlinux 0xa1d6eeec tty_kopen_shared +EXPORT_SYMBOL_GPL vmlinux 0xa18917b5 crypto_spawn_tfm +EXPORT_SYMBOL_GPL vmlinux 0xa189881c dev_pm_opp_detach_genpd +EXPORT_SYMBOL_GPL vmlinux 0xa18dc877 device_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xa19ac60c iommu_map_sg +EXPORT_SYMBOL_GPL vmlinux 0xa19c277b usb_hcd_unlink_urb_from_ep +EXPORT_SYMBOL_GPL vmlinux 0xa1a62555 scsi_nl_sock +EXPORT_SYMBOL_GPL vmlinux 0xa1d18ff3 crypto_stats_kpp_generate_public_key EXPORT_SYMBOL_GPL vmlinux 0xa1d8004a videomode_from_timing -EXPORT_SYMBOL_GPL vmlinux 0xa1df6a44 devfreq_cooling_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa1e40407 ata_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0xa1de8dbc devm_usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0xa1e24107 virtqueue_get_avail_addr +EXPORT_SYMBOL_GPL vmlinux 0xa1ec5282 extcon_dev_register EXPORT_SYMBOL_GPL vmlinux 0xa1ed9c8b add_hwgenerator_randomness -EXPORT_SYMBOL_GPL vmlinux 0xa1ef8ab4 spi_register_controller -EXPORT_SYMBOL_GPL vmlinux 0xa1f644b7 platform_device_add_data +EXPORT_SYMBOL_GPL vmlinux 0xa1f4d3ef ping_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0xa1f4f723 extcon_set_property +EXPORT_SYMBOL_GPL vmlinux 0xa1f82db4 vfs_submount +EXPORT_SYMBOL_GPL vmlinux 0xa204f9f1 __traceiter_sched_util_est_se_tp EXPORT_SYMBOL_GPL vmlinux 0xa20d01ba __trace_bprintk -EXPORT_SYMBOL_GPL vmlinux 0xa23da816 fscrypt_ioctl_get_policy_ex +EXPORT_SYMBOL_GPL vmlinux 0xa20d3546 mmc_switch +EXPORT_SYMBOL_GPL vmlinux 0xa21a23d7 __traceiter_pelt_se_tp +EXPORT_SYMBOL_GPL vmlinux 0xa222f4db fat_detach +EXPORT_SYMBOL_GPL vmlinux 0xa24ff483 iommu_enable_nesting EXPORT_SYMBOL_GPL vmlinux 0xa2500ef6 __SCK__tp_func_powernv_throttle -EXPORT_SYMBOL_GPL vmlinux 0xa25cf64d lp8788_write_byte -EXPORT_SYMBOL_GPL vmlinux 0xa25fc1d4 of_prop_next_u32 +EXPORT_SYMBOL_GPL vmlinux 0xa2527d57 crypto_register_scomp EXPORT_SYMBOL_GPL vmlinux 0xa26340e2 key_type_trusted -EXPORT_SYMBOL_GPL vmlinux 0xa263c703 of_nvmem_device_get -EXPORT_SYMBOL_GPL vmlinux 0xa269530d blk_req_zone_write_trylock -EXPORT_SYMBOL_GPL vmlinux 0xa26bce48 task_active_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0xa26c91ae percpu_up_write EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested -EXPORT_SYMBOL_GPL vmlinux 0xa286fccc wm8350_clear_bits -EXPORT_SYMBOL_GPL vmlinux 0xa28f3f3a usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0xa28481ec usb_hcd_pci_probe EXPORT_SYMBOL_GPL vmlinux 0xa295afd5 list_lru_destroy EXPORT_SYMBOL_GPL vmlinux 0xa298af95 xive_native_get_queue_info +EXPORT_SYMBOL_GPL vmlinux 0xa29e0eb5 get_device EXPORT_SYMBOL_GPL vmlinux 0xa2b0820d __SCK__tp_func_cpu_idle -EXPORT_SYMBOL_GPL vmlinux 0xa2ddc0e1 bpf_map_inc -EXPORT_SYMBOL_GPL vmlinux 0xa2de77b2 pci_epf_remove_vepf +EXPORT_SYMBOL_GPL vmlinux 0xa2b4ec01 virtqueue_enable_cb_delayed +EXPORT_SYMBOL_GPL vmlinux 0xa2d8c1a9 serial8250_em485_config EXPORT_SYMBOL_GPL vmlinux 0xa2e1b3ef trace_printk_init_buffers -EXPORT_SYMBOL_GPL vmlinux 0xa2eb2f09 ip_build_and_send_pkt -EXPORT_SYMBOL_GPL vmlinux 0xa316db44 genphy_c45_config_aneg -EXPORT_SYMBOL_GPL vmlinux 0xa33c7f01 user_update +EXPORT_SYMBOL_GPL vmlinux 0xa2e72efb dm_suspended +EXPORT_SYMBOL_GPL vmlinux 0xa2f1dc82 anon_inode_getfd_secure +EXPORT_SYMBOL_GPL vmlinux 0xa2fe0b4b sdio_memcpy_toio +EXPORT_SYMBOL_GPL vmlinux 0xa300a0d0 nvdimm_setup_pfn +EXPORT_SYMBOL_GPL vmlinux 0xa312caf4 debugfs_create_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xa3205a91 locks_alloc_lock +EXPORT_SYMBOL_GPL vmlinux 0xa3214b88 ata_platform_remove_one +EXPORT_SYMBOL_GPL vmlinux 0xa33328d9 usb_hcd_amd_remote_wakeup_quirk +EXPORT_SYMBOL_GPL vmlinux 0xa33b7b66 of_icc_get EXPORT_SYMBOL_GPL vmlinux 0xa33d91a8 btree_get_prev -EXPORT_SYMBOL_GPL vmlinux 0xa3479daf rtc_read_time -EXPORT_SYMBOL_GPL vmlinux 0xa354a37a power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0xa3540825 ehci_reset +EXPORT_SYMBOL_GPL vmlinux 0xa35c957c vfio_iommu_group_get +EXPORT_SYMBOL_GPL vmlinux 0xa35d6007 led_trigger_register EXPORT_SYMBOL_GPL vmlinux 0xa36f50fb is_binary_blacklisted -EXPORT_SYMBOL_GPL vmlinux 0xa371adb3 crypto_drop_spawn +EXPORT_SYMBOL_GPL vmlinux 0xa36f8a53 regmap_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0xa377296a max8997_read_reg +EXPORT_SYMBOL_GPL vmlinux 0xa37b4114 pinctrl_pm_select_sleep_state EXPORT_SYMBOL_GPL vmlinux 0xa38602cd drain_workqueue EXPORT_SYMBOL_GPL vmlinux 0xa389a49a profile_event_register EXPORT_SYMBOL_GPL vmlinux 0xa38a9f71 get_itimerspec64 -EXPORT_SYMBOL_GPL vmlinux 0xa3969c99 regulator_set_voltage +EXPORT_SYMBOL_GPL vmlinux 0xa38d43cd fixed_phy_unregister EXPORT_SYMBOL_GPL vmlinux 0xa3a04602 btree_geo64 EXPORT_SYMBOL_GPL vmlinux 0xa3a2d9af walk_system_ram_range -EXPORT_SYMBOL_GPL vmlinux 0xa3ae0f13 sysfs_remove_link -EXPORT_SYMBOL_GPL vmlinux 0xa3ae486b serial8250_do_set_divisor +EXPORT_SYMBOL_GPL vmlinux 0xa3b18f4d regulator_count_voltages +EXPORT_SYMBOL_GPL vmlinux 0xa3b1e4b5 flush_fp_to_thread EXPORT_SYMBOL_GPL vmlinux 0xa3b56555 hpte_page_sizes +EXPORT_SYMBOL_GPL vmlinux 0xa3b8e6ca perf_event_enable EXPORT_SYMBOL_GPL vmlinux 0xa3b958ce reset_hung_task_detector -EXPORT_SYMBOL_GPL vmlinux 0xa3c2d87d sock_gen_put +EXPORT_SYMBOL_GPL vmlinux 0xa3e08dd2 fwnode_get_name +EXPORT_SYMBOL_GPL vmlinux 0xa3e5462d fw_devlink_purge_absent_suppliers +EXPORT_SYMBOL_GPL vmlinux 0xa3ea9b56 __nvdimm_create EXPORT_SYMBOL_GPL vmlinux 0xa3ece414 freezer_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xa3eec76a uhci_check_and_reset_hc -EXPORT_SYMBOL_GPL vmlinux 0xa3efe5fc bpf_prog_put EXPORT_SYMBOL_GPL vmlinux 0xa3f12f69 __crypto_xor -EXPORT_SYMBOL_GPL vmlinux 0xa4009d2a led_stop_software_blink +EXPORT_SYMBOL_GPL vmlinux 0xa3f53ee5 of_led_get EXPORT_SYMBOL_GPL vmlinux 0xa4031b7f sfp_parse_port +EXPORT_SYMBOL_GPL vmlinux 0xa403c7e2 l3mdev_link_scope_lookup +EXPORT_SYMBOL_GPL vmlinux 0xa407c679 fib_add_nexthop EXPORT_SYMBOL_GPL vmlinux 0xa410a295 devlink_region_destroy -EXPORT_SYMBOL_GPL vmlinux 0xa41a8b81 __traceiter_sched_util_est_cfs_tp -EXPORT_SYMBOL_GPL vmlinux 0xa4211ff6 dev_pm_opp_unregister_set_opp_helper +EXPORT_SYMBOL_GPL vmlinux 0xa414b633 crypto_register_shash +EXPORT_SYMBOL_GPL vmlinux 0xa435bb16 clk_mux_determine_rate_flags EXPORT_SYMBOL_GPL vmlinux 0xa44a1307 interval_tree_iter_first +EXPORT_SYMBOL_GPL vmlinux 0xa44c6c49 dev_pm_opp_of_get_opp_desc_node EXPORT_SYMBOL_GPL vmlinux 0xa45c7b90 stack_trace_print +EXPORT_SYMBOL_GPL vmlinux 0xa469c02e crypto_grab_spawn +EXPORT_SYMBOL_GPL vmlinux 0xa47ddb67 mm_iommu_is_devmem EXPORT_SYMBOL_GPL vmlinux 0xa48196c8 kdb_poll_idx -EXPORT_SYMBOL_GPL vmlinux 0xa4970fca class_compat_create_link +EXPORT_SYMBOL_GPL vmlinux 0xa483f147 spi_get_next_queued_message EXPORT_SYMBOL_GPL vmlinux 0xa4ab7c1c ring_buffer_overruns EXPORT_SYMBOL_GPL vmlinux 0xa4b07fe7 ring_buffer_change_overwrite +EXPORT_SYMBOL_GPL vmlinux 0xa4ba14bf virtqueue_get_vring_size EXPORT_SYMBOL_GPL vmlinux 0xa4c00324 asn1_encode_octet_string -EXPORT_SYMBOL_GPL vmlinux 0xa4c50308 kvmppc_check_need_tlb_flush -EXPORT_SYMBOL_GPL vmlinux 0xa4cdd382 bpf_verifier_log_write -EXPORT_SYMBOL_GPL vmlinux 0xa4d9b71f security_inode_setattr -EXPORT_SYMBOL_GPL vmlinux 0xa4fb98a3 nd_blk_region_to_dimm -EXPORT_SYMBOL_GPL vmlinux 0xa4fe8886 of_resolve_phandles -EXPORT_SYMBOL_GPL vmlinux 0xa5107029 ehci_init_driver -EXPORT_SYMBOL_GPL vmlinux 0xa519dcdb kvmppc_hpte_hv_fault +EXPORT_SYMBOL_GPL vmlinux 0xa4c5cd06 devm_ioremap_uc +EXPORT_SYMBOL_GPL vmlinux 0xa4e03e6d agp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0xa4e8bdfd usb_register_device_driver +EXPORT_SYMBOL_GPL vmlinux 0xa514b7e0 dm_post_suspending +EXPORT_SYMBOL_GPL vmlinux 0xa515d5c2 devfreq_event_disable_edev +EXPORT_SYMBOL_GPL vmlinux 0xa526b590 dw_pcie_find_capability EXPORT_SYMBOL_GPL vmlinux 0xa531471e clk_save_context -EXPORT_SYMBOL_GPL vmlinux 0xa535751d of_property_read_variable_u8_array -EXPORT_SYMBOL_GPL vmlinux 0xa5368408 ata_pci_bmdma_init_one -EXPORT_SYMBOL_GPL vmlinux 0xa547c64d irq_chip_request_resources_parent -EXPORT_SYMBOL_GPL vmlinux 0xa553d0e3 inet_csk_route_req -EXPORT_SYMBOL_GPL vmlinux 0xa554eab7 __pci_hp_register -EXPORT_SYMBOL_GPL vmlinux 0xa5581488 device_create -EXPORT_SYMBOL_GPL vmlinux 0xa55904ba ata_host_start -EXPORT_SYMBOL_GPL vmlinux 0xa56866b6 __mnt_drop_write -EXPORT_SYMBOL_GPL vmlinux 0xa57373e6 ata_bmdma_port_ops -EXPORT_SYMBOL_GPL vmlinux 0xa595312a device_phy_find_device +EXPORT_SYMBOL_GPL vmlinux 0xa5472783 dev_pm_get_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0xa54febae percpu_up_write +EXPORT_SYMBOL_GPL vmlinux 0xa5802ff9 virtqueue_add_inbuf_ctx +EXPORT_SYMBOL_GPL vmlinux 0xa58b68d3 regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xa5a12ef6 devm_clk_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0xa5ab24eb dev_pm_genpd_suspend +EXPORT_SYMBOL_GPL vmlinux 0xa5ada976 cpu_subsys EXPORT_SYMBOL_GPL vmlinux 0xa5b00659 ppc_proc_freq -EXPORT_SYMBOL_GPL vmlinux 0xa5b74da0 i2c_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0xa5b7a4db tty_register_device_attr -EXPORT_SYMBOL_GPL vmlinux 0xa5cfb31e led_set_brightness_nopm +EXPORT_SYMBOL_GPL vmlinux 0xa5b2c02d attribute_container_find_class_device +EXPORT_SYMBOL_GPL vmlinux 0xa5b6a80f fwnode_graph_get_remote_port +EXPORT_SYMBOL_GPL vmlinux 0xa5c69d02 rio_mport_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0xa5c9464d tc3589x_block_read +EXPORT_SYMBOL_GPL vmlinux 0xa5ca2dfb pci_msi_unmask_irq EXPORT_SYMBOL_GPL vmlinux 0xa5d7c388 pstore_type_to_name -EXPORT_SYMBOL_GPL vmlinux 0xa5dc43df __traceiter_tcp_send_reset -EXPORT_SYMBOL_GPL vmlinux 0xa5e09f70 fat_setattr -EXPORT_SYMBOL_GPL vmlinux 0xa5e13ea0 blk_set_pm_only +EXPORT_SYMBOL_GPL vmlinux 0xa5d85111 gpiod_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xa5e69322 open_related_ns +EXPORT_SYMBOL_GPL vmlinux 0xa5ee7443 genpd_dev_pm_attach_by_id EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full -EXPORT_SYMBOL_GPL vmlinux 0xa5f4701d get_dev_pagemap -EXPORT_SYMBOL_GPL vmlinux 0xa5fc22c7 __traceiter_sched_cpu_capacity_tp -EXPORT_SYMBOL_GPL vmlinux 0xa606139b device_init_wakeup -EXPORT_SYMBOL_GPL vmlinux 0xa6070dfb tcp_is_ulp_esp -EXPORT_SYMBOL_GPL vmlinux 0xa60a6ff5 netdev_walk_all_lower_dev_rcu -EXPORT_SYMBOL_GPL vmlinux 0xa6188a5b xdp_rxq_info_unreg -EXPORT_SYMBOL_GPL vmlinux 0xa63781b8 crypto_stats_kpp_generate_public_key -EXPORT_SYMBOL_GPL vmlinux 0xa63a7c88 crypto_register_template +EXPORT_SYMBOL_GPL vmlinux 0xa5fe6eed irq_domain_xlate_twocell +EXPORT_SYMBOL_GPL vmlinux 0xa64736cc ata_cable_40wire +EXPORT_SYMBOL_GPL vmlinux 0xa64a4f10 regulator_suspend_enable +EXPORT_SYMBOL_GPL vmlinux 0xa64dc74b pci_store_saved_state +EXPORT_SYMBOL_GPL vmlinux 0xa64fbc1b clk_gate_restore_context +EXPORT_SYMBOL_GPL vmlinux 0xa6516740 icc_node_create EXPORT_SYMBOL_GPL vmlinux 0xa65f3c8c __tracepoint_block_bio_complete -EXPORT_SYMBOL_GPL vmlinux 0xa661f86d devm_regmap_field_bulk_free -EXPORT_SYMBOL_GPL vmlinux 0xa66a7a57 sched_trace_rq_nr_running -EXPORT_SYMBOL_GPL vmlinux 0xa68134af irq_chip_unmask_parent -EXPORT_SYMBOL_GPL vmlinux 0xa685a654 dma_resv_test_signaled +EXPORT_SYMBOL_GPL vmlinux 0xa6643de9 device_add_groups +EXPORT_SYMBOL_GPL vmlinux 0xa670f0c3 devm_regmap_field_free EXPORT_SYMBOL_GPL vmlinux 0xa68f18e6 iommu_take_ownership -EXPORT_SYMBOL_GPL vmlinux 0xa698693a pinctrl_find_and_add_gpio_range EXPORT_SYMBOL_GPL vmlinux 0xa6a088b7 fscrypt_match_name +EXPORT_SYMBOL_GPL vmlinux 0xa6a64f4d gpiochip_is_requested +EXPORT_SYMBOL_GPL vmlinux 0xa6ace919 ata_host_suspend EXPORT_SYMBOL_GPL vmlinux 0xa6af1e35 __SCK__tp_func_block_rq_remap EXPORT_SYMBOL_GPL vmlinux 0xa6b06f65 ata_sff_queue_work -EXPORT_SYMBOL_GPL vmlinux 0xa6b1aa92 tpm_pcr_extend EXPORT_SYMBOL_GPL vmlinux 0xa6b21ef2 dpm_suspend_end -EXPORT_SYMBOL_GPL vmlinux 0xa6b57716 rio_mport_write_config_8 EXPORT_SYMBOL_GPL vmlinux 0xa6b5ee5b __SCK__tp_func_block_split +EXPORT_SYMBOL_GPL vmlinux 0xa6c7be05 debugfs_write_file_bool EXPORT_SYMBOL_GPL vmlinux 0xa6d1e06f splpar_spin_yield -EXPORT_SYMBOL_GPL vmlinux 0xa6de7cda fib6_new_table +EXPORT_SYMBOL_GPL vmlinux 0xa6d93e74 ata_sff_postreset EXPORT_SYMBOL_GPL vmlinux 0xa6e1a69d kick_all_cpus_sync +EXPORT_SYMBOL_GPL vmlinux 0xa6e9b0a6 devm_regmap_field_bulk_free EXPORT_SYMBOL_GPL vmlinux 0xa6ee15ca __tracepoint_rpm_suspend -EXPORT_SYMBOL_GPL vmlinux 0xa6f28b74 phy_validate -EXPORT_SYMBOL_GPL vmlinux 0xa70917d0 blkcg_print_blkgs +EXPORT_SYMBOL_GPL vmlinux 0xa6fb6410 mpc8xxx_spi_rx_buf_u8 EXPORT_SYMBOL_GPL vmlinux 0xa709c835 fib6_info_destroy_rcu -EXPORT_SYMBOL_GPL vmlinux 0xa70bd42f crypto_register_shashes -EXPORT_SYMBOL_GPL vmlinux 0xa7174b1f xfrm_state_afinfo_get_rcu -EXPORT_SYMBOL_GPL vmlinux 0xa719c212 dev_pm_qos_expose_flags -EXPORT_SYMBOL_GPL vmlinux 0xa720ed24 invalidate_inode_pages2_range -EXPORT_SYMBOL_GPL vmlinux 0xa74e60a7 fscrypt_get_symlink -EXPORT_SYMBOL_GPL vmlinux 0xa759d764 pci_epc_destroy -EXPORT_SYMBOL_GPL vmlinux 0xa7a989d7 synth_event_gen_cmd_array_start +EXPORT_SYMBOL_GPL vmlinux 0xa7121f66 crypto_req_done +EXPORT_SYMBOL_GPL vmlinux 0xa72ec502 __traceiter_sched_update_nr_running_tp +EXPORT_SYMBOL_GPL vmlinux 0xa73a8d38 bus_for_each_drv +EXPORT_SYMBOL_GPL vmlinux 0xa73aa136 xfrm_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0xa73b453d ata_dev_pair +EXPORT_SYMBOL_GPL vmlinux 0xa73f7c6f crypto_register_shashes +EXPORT_SYMBOL_GPL vmlinux 0xa73fa628 bpf_map_put +EXPORT_SYMBOL_GPL vmlinux 0xa744ee13 ata_host_alloc_pinfo +EXPORT_SYMBOL_GPL vmlinux 0xa75b191a pci_find_bus_by_node +EXPORT_SYMBOL_GPL vmlinux 0xa76674ed virtio_device_freeze +EXPORT_SYMBOL_GPL vmlinux 0xa776874e devm_phy_package_join +EXPORT_SYMBOL_GPL vmlinux 0xa77a596d find_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0xa77ceb7f kthread_flush_work +EXPORT_SYMBOL_GPL vmlinux 0xa7910f84 get_net_ns_by_pid +EXPORT_SYMBOL_GPL vmlinux 0xa79d27a3 ata_host_put +EXPORT_SYMBOL_GPL vmlinux 0xa7a0670f iomap_seek_hole +EXPORT_SYMBOL_GPL vmlinux 0xa7c2718b raw_seq_start EXPORT_SYMBOL_GPL vmlinux 0xa7cba284 housekeeping_any_cpu -EXPORT_SYMBOL_GPL vmlinux 0xa7d1bbe3 devm_phy_create -EXPORT_SYMBOL_GPL vmlinux 0xa7e4fa78 devres_find -EXPORT_SYMBOL_GPL vmlinux 0xa7ef2769 __traceiter_block_rq_insert -EXPORT_SYMBOL_GPL vmlinux 0xa8170a3d dma_get_slave_caps -EXPORT_SYMBOL_GPL vmlinux 0xa81acae0 crypto_stats_kpp_set_secret -EXPORT_SYMBOL_GPL vmlinux 0xa8204fda skb_tstamp_tx -EXPORT_SYMBOL_GPL vmlinux 0xa83a0b22 clk_mux_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0xa84faef1 __traceiter_pelt_rt_tp -EXPORT_SYMBOL_GPL vmlinux 0xa85096c2 tcp_register_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0xa7d5770a clk_hw_unregister_divider +EXPORT_SYMBOL_GPL vmlinux 0xa7d655c9 rio_alloc_net +EXPORT_SYMBOL_GPL vmlinux 0xa7ee3ba7 usb_mon_register +EXPORT_SYMBOL_GPL vmlinux 0xa7f5217a __raw_v6_lookup +EXPORT_SYMBOL_GPL vmlinux 0xa7f698b5 iomap_swapfile_activate +EXPORT_SYMBOL_GPL vmlinux 0xa80c4db6 ata_std_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xa8107ad0 gpiod_to_irq +EXPORT_SYMBOL_GPL vmlinux 0xa818c56c devlink_resource_size_get +EXPORT_SYMBOL_GPL vmlinux 0xa81a9931 powercap_unregister_control_type +EXPORT_SYMBOL_GPL vmlinux 0xa8327527 pm_generic_poweroff_noirq +EXPORT_SYMBOL_GPL vmlinux 0xa843ab67 security_inode_setattr +EXPORT_SYMBOL_GPL vmlinux 0xa84b2f2b iterate_mounts +EXPORT_SYMBOL_GPL vmlinux 0xa84d0941 device_create_managed_software_node EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xa861795b pm_generic_resume_noirq -EXPORT_SYMBOL_GPL vmlinux 0xa87d67b1 ohci_suspend +EXPORT_SYMBOL_GPL vmlinux 0xa851e249 fork_usermode_driver +EXPORT_SYMBOL_GPL vmlinux 0xa85d5686 crypto_unregister_algs +EXPORT_SYMBOL_GPL vmlinux 0xa867c26b serdev_device_open +EXPORT_SYMBOL_GPL vmlinux 0xa86cdd8f ip6_datagram_connect_v6_only EXPORT_SYMBOL_GPL vmlinux 0xa87f7aec sbitmap_any_bit_set -EXPORT_SYMBOL_GPL vmlinux 0xa87fb220 crypto_remove_spawns -EXPORT_SYMBOL_GPL vmlinux 0xa884af9b shmem_file_setup_with_mnt -EXPORT_SYMBOL_GPL vmlinux 0xa89df40b irq_chip_set_parent_state -EXPORT_SYMBOL_GPL vmlinux 0xa8a095fc __clk_get_hw -EXPORT_SYMBOL_GPL vmlinux 0xa8b861e1 nvmem_cell_get -EXPORT_SYMBOL_GPL vmlinux 0xa8da11ba hwspin_lock_free -EXPORT_SYMBOL_GPL vmlinux 0xa8df646e devm_of_led_get -EXPORT_SYMBOL_GPL vmlinux 0xa8e4c6c9 nf_queue_entry_get_refs -EXPORT_SYMBOL_GPL vmlinux 0xa8e719d5 i2c_handle_smbus_host_notify -EXPORT_SYMBOL_GPL vmlinux 0xa90204f4 bus_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0xa902f02a uprobe_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa929c977 ata_host_resume -EXPORT_SYMBOL_GPL vmlinux 0xa92c551b crypto_unregister_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xa890ee78 fwnode_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0xa89fc91f device_remove_properties +EXPORT_SYMBOL_GPL vmlinux 0xa8b4d511 pinctrl_generic_add_group +EXPORT_SYMBOL_GPL vmlinux 0xa8c41656 ping_seq_next +EXPORT_SYMBOL_GPL vmlinux 0xa8e6c1c1 dm_bio_get_target_bio_nr +EXPORT_SYMBOL_GPL vmlinux 0xa8ff9877 cpufreq_freq_attr_scaling_boost_freqs +EXPORT_SYMBOL_GPL vmlinux 0xa92beecd usb_reset_configuration EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds -EXPORT_SYMBOL_GPL vmlinux 0xa9382023 blk_mq_quiesce_queue -EXPORT_SYMBOL_GPL vmlinux 0xa9383471 mmc_crypto_prepare_req -EXPORT_SYMBOL_GPL vmlinux 0xa9422895 ahash_register_instance -EXPORT_SYMBOL_GPL vmlinux 0xa9492efd reset_controller_register -EXPORT_SYMBOL_GPL vmlinux 0xa956ab4b iptunnel_xmit -EXPORT_SYMBOL_GPL vmlinux 0xa95a255a skb_splice_bits -EXPORT_SYMBOL_GPL vmlinux 0xa969ed49 fuse_sync_release -EXPORT_SYMBOL_GPL vmlinux 0xa97862a2 __fscrypt_prepare_rename +EXPORT_SYMBOL_GPL vmlinux 0xa9328c17 acomp_request_alloc +EXPORT_SYMBOL_GPL vmlinux 0xa9633676 blkcg_deactivate_policy +EXPORT_SYMBOL_GPL vmlinux 0xa969b005 dev_pm_opp_find_freq_floor +EXPORT_SYMBOL_GPL vmlinux 0xa96d4cb1 dev_pm_opp_put EXPORT_SYMBOL_GPL vmlinux 0xa99b8e70 __SCK__tp_func_xdp_exception EXPORT_SYMBOL_GPL vmlinux 0xa99ef899 devlink_fmsg_bool_pair_put EXPORT_SYMBOL_GPL vmlinux 0xa9a0ee26 pnv_pci_get_device_tree -EXPORT_SYMBOL_GPL vmlinux 0xa9aa27b1 kobj_sysfs_ops -EXPORT_SYMBOL_GPL vmlinux 0xa9b194b9 msg_zerocopy_put_abort -EXPORT_SYMBOL_GPL vmlinux 0xa9b3378f crypto_aead_setkey -EXPORT_SYMBOL_GPL vmlinux 0xa9c0b48e skb_consume_udp -EXPORT_SYMBOL_GPL vmlinux 0xa9c69bc2 tps6586x_reads +EXPORT_SYMBOL_GPL vmlinux 0xa9b26b15 do_tcp_sendpages +EXPORT_SYMBOL_GPL vmlinux 0xa9bc77bd securityfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0xa9c9dce5 icc_set_bw EXPORT_SYMBOL_GPL vmlinux 0xa9ce341e usb_show_dynids -EXPORT_SYMBOL_GPL vmlinux 0xa9d73b08 perf_pmu_migrate_context +EXPORT_SYMBOL_GPL vmlinux 0xa9d2f34f __percpu_down_read +EXPORT_SYMBOL_GPL vmlinux 0xa9d62b3a vfio_pci_core_enable +EXPORT_SYMBOL_GPL vmlinux 0xa9dd07ed md_account_bio EXPORT_SYMBOL_GPL vmlinux 0xa9e18049 task_handoff_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa9f1aa80 of_thermal_get_ntrips -EXPORT_SYMBOL_GPL vmlinux 0xaa0f00eb __dev_change_net_namespace +EXPORT_SYMBOL_GPL vmlinux 0xa9e6e909 blkg_conf_prep +EXPORT_SYMBOL_GPL vmlinux 0xaa0411e0 vfs_kern_mount +EXPORT_SYMBOL_GPL vmlinux 0xaa0a1c3b rio_release_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0xaa0f7100 pm_schedule_suspend EXPORT_SYMBOL_GPL vmlinux 0xaa1758c5 gen_pool_avail -EXPORT_SYMBOL_GPL vmlinux 0xaa21ecb9 get_device_system_crosststamp +EXPORT_SYMBOL_GPL vmlinux 0xaa1e9172 netdev_walk_all_lower_dev +EXPORT_SYMBOL_GPL vmlinux 0xaa1f67d1 __sock_recv_ts_and_drops EXPORT_SYMBOL_GPL vmlinux 0xaa230f88 perf_unregister_guest_info_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xaa23466a acomp_request_free -EXPORT_SYMBOL_GPL vmlinux 0xaa3d697a account_locked_vm -EXPORT_SYMBOL_GPL vmlinux 0xaa4889df scsi_nl_sock -EXPORT_SYMBOL_GPL vmlinux 0xaa4f313e nvdimm_in_overwrite +EXPORT_SYMBOL_GPL vmlinux 0xaa43527e blkcg_root_css +EXPORT_SYMBOL_GPL vmlinux 0xaa63fc7d soc_device_register EXPORT_SYMBOL_GPL vmlinux 0xaa6a50f9 __static_key_deferred_flush -EXPORT_SYMBOL_GPL vmlinux 0xaa6ac6e6 ata_sas_port_start -EXPORT_SYMBOL_GPL vmlinux 0xaa82faef regmap_field_bulk_alloc -EXPORT_SYMBOL_GPL vmlinux 0xaa84a7ae fsverity_verify_page -EXPORT_SYMBOL_GPL vmlinux 0xaa8623e3 fscrypt_ioctl_add_key -EXPORT_SYMBOL_GPL vmlinux 0xaa96ebf2 security_file_permission -EXPORT_SYMBOL_GPL vmlinux 0xaa970822 kvmppc_h_enter +EXPORT_SYMBOL_GPL vmlinux 0xaa73330e ping_err +EXPORT_SYMBOL_GPL vmlinux 0xaa873887 cpci_hp_register_bus +EXPORT_SYMBOL_GPL vmlinux 0xaa9ed716 gpiod_to_chip EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump EXPORT_SYMBOL_GPL vmlinux 0xaaaa5ec9 cpu_latency_qos_remove_request -EXPORT_SYMBOL_GPL vmlinux 0xaaab2b7f agp_add_bridge -EXPORT_SYMBOL_GPL vmlinux 0xaab6db4b of_property_read_variable_u64_array -EXPORT_SYMBOL_GPL vmlinux 0xaabafcf5 rio_release_inb_dbell -EXPORT_SYMBOL_GPL vmlinux 0xaae6eb3f blk_abort_request -EXPORT_SYMBOL_GPL vmlinux 0xab0228fb rio_dma_prep_xfer -EXPORT_SYMBOL_GPL vmlinux 0xab196fca ata_host_activate -EXPORT_SYMBOL_GPL vmlinux 0xab27f91f virtqueue_is_broken -EXPORT_SYMBOL_GPL vmlinux 0xab4c004b mpc8xxx_spi_rx_buf_u16 -EXPORT_SYMBOL_GPL vmlinux 0xab5758bc ata_bmdma_qc_issue -EXPORT_SYMBOL_GPL vmlinux 0xab629560 posix_clock_unregister -EXPORT_SYMBOL_GPL vmlinux 0xab63368d attribute_container_classdev_to_container -EXPORT_SYMBOL_GPL vmlinux 0xab6bc7a9 dev_pm_opp_of_get_sharing_cpus -EXPORT_SYMBOL_GPL vmlinux 0xab711d32 crypto_grab_aead -EXPORT_SYMBOL_GPL vmlinux 0xab7a65c8 pinctrl_pm_select_sleep_state +EXPORT_SYMBOL_GPL vmlinux 0xaab6b110 iommu_device_sysfs_remove +EXPORT_SYMBOL_GPL vmlinux 0xaac98994 devm_kmalloc +EXPORT_SYMBOL_GPL vmlinux 0xaae3110e nvdimm_badblocks_populate +EXPORT_SYMBOL_GPL vmlinux 0xab0335bd scsi_register_device_handler +EXPORT_SYMBOL_GPL vmlinux 0xab1147bf __sync_filesystem +EXPORT_SYMBOL_GPL vmlinux 0xab1df51a kthread_unpark +EXPORT_SYMBOL_GPL vmlinux 0xab2b7128 virtio_break_device +EXPORT_SYMBOL_GPL vmlinux 0xab2e8e05 nvmem_cell_read_u8 +EXPORT_SYMBOL_GPL vmlinux 0xab3dc032 dev_pm_opp_find_level_exact +EXPORT_SYMBOL_GPL vmlinux 0xab494d2a kernfs_notify +EXPORT_SYMBOL_GPL vmlinux 0xab596ad1 sfp_bus_find_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xab5fb1e9 perf_get_aux +EXPORT_SYMBOL_GPL vmlinux 0xab6da49f sched_trace_cfs_rq_path +EXPORT_SYMBOL_GPL vmlinux 0xab7ecac1 devfreq_cooling_unregister +EXPORT_SYMBOL_GPL vmlinux 0xab8d5701 device_match_of_node +EXPORT_SYMBOL_GPL vmlinux 0xab8e200a phy_pm_runtime_forbid EXPORT_SYMBOL_GPL vmlinux 0xab9bd884 perf_register_guest_info_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xab9f1fb6 perf_event_sysfs_show -EXPORT_SYMBOL_GPL vmlinux 0xabbcdfa7 pwm_apply_state -EXPORT_SYMBOL_GPL vmlinux 0xabc02329 bpf_prog_get_type_dev -EXPORT_SYMBOL_GPL vmlinux 0xabc5632f __traceiter_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0xabac48a6 ata_sff_data_xfer +EXPORT_SYMBOL_GPL vmlinux 0xabafef7b usb_find_interface +EXPORT_SYMBOL_GPL vmlinux 0xabb12eea rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0xabc33d24 gpiod_is_active_low EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate -EXPORT_SYMBOL_GPL vmlinux 0xabcce57c inet_ehash_nolisten -EXPORT_SYMBOL_GPL vmlinux 0xabcd0dab pm_clk_suspend -EXPORT_SYMBOL_GPL vmlinux 0xabcf9eda to_nd_blk_region -EXPORT_SYMBOL_GPL vmlinux 0xabec79cd hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0xabdbc95d regulator_set_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0xabebde9e sdio_set_host_pm_flags +EXPORT_SYMBOL_GPL vmlinux 0xabecb843 mpc8xxx_spi_rx_buf_u16 +EXPORT_SYMBOL_GPL vmlinux 0xabf3fdd3 dev_xdp_prog_count EXPORT_SYMBOL_GPL vmlinux 0xac0624b4 vfio_spapr_iommu_eeh_ioctl -EXPORT_SYMBOL_GPL vmlinux 0xac072db6 devlink_port_attrs_pci_vf_set -EXPORT_SYMBOL_GPL vmlinux 0xac08ce1e sock_diag_check_cookie -EXPORT_SYMBOL_GPL vmlinux 0xac104340 irq_chip_set_vcpu_affinity_parent -EXPORT_SYMBOL_GPL vmlinux 0xac18c875 nvmem_cell_read_variable_le_u64 -EXPORT_SYMBOL_GPL vmlinux 0xac1b9804 ata_host_init -EXPORT_SYMBOL_GPL vmlinux 0xac228d23 sdio_writeb_readb -EXPORT_SYMBOL_GPL vmlinux 0xac2dbb34 clk_fixed_rate_ops -EXPORT_SYMBOL_GPL vmlinux 0xac474d19 __devm_spi_alloc_controller -EXPORT_SYMBOL_GPL vmlinux 0xac47d668 ata_scsi_slave_destroy -EXPORT_SYMBOL_GPL vmlinux 0xac59703a devm_regulator_bulk_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0xac5b5b51 md_stop -EXPORT_SYMBOL_GPL vmlinux 0xac681d51 __class_create -EXPORT_SYMBOL_GPL vmlinux 0xac6b67f2 pm_wakeup_dev_event -EXPORT_SYMBOL_GPL vmlinux 0xac7b45ae xfrm_output_resume -EXPORT_SYMBOL_GPL vmlinux 0xaca6161d fork_usermode_driver -EXPORT_SYMBOL_GPL vmlinux 0xacaf4205 xfrm_audit_state_replay +EXPORT_SYMBOL_GPL vmlinux 0xac1a97a7 iommu_device_register +EXPORT_SYMBOL_GPL vmlinux 0xac2126ef icc_link_create +EXPORT_SYMBOL_GPL vmlinux 0xac29329b usb_hcd_resume_root_hub +EXPORT_SYMBOL_GPL vmlinux 0xac433349 vfio_pci_core_mmap +EXPORT_SYMBOL_GPL vmlinux 0xac4d5ac8 mptcp_subflow_init_cookie_req +EXPORT_SYMBOL_GPL vmlinux 0xac5e2b8b dm_table_set_type +EXPORT_SYMBOL_GPL vmlinux 0xac5eb2d4 iomap_is_partially_uptodate +EXPORT_SYMBOL_GPL vmlinux 0xac68058a loop_backing_file +EXPORT_SYMBOL_GPL vmlinux 0xac6a0ed7 pci_create_root_bus +EXPORT_SYMBOL_GPL vmlinux 0xac89f102 __clk_hw_register_divider +EXPORT_SYMBOL_GPL vmlinux 0xac8a96c4 regcache_cache_bypass +EXPORT_SYMBOL_GPL vmlinux 0xac8fda03 genpd_dev_pm_attach +EXPORT_SYMBOL_GPL vmlinux 0xacb01c0e of_hwspin_lock_get_id_byname EXPORT_SYMBOL_GPL vmlinux 0xacb4d88c clk_rate_exclusive_put -EXPORT_SYMBOL_GPL vmlinux 0xacbd8c4e inet_hash_connect -EXPORT_SYMBOL_GPL vmlinux 0xace0febd paste_selection -EXPORT_SYMBOL_GPL vmlinux 0xacee5086 ata_scsi_unlock_native_capacity -EXPORT_SYMBOL_GPL vmlinux 0xacfa4c91 hvc_instantiate +EXPORT_SYMBOL_GPL vmlinux 0xacc53b02 ata_sff_freeze +EXPORT_SYMBOL_GPL vmlinux 0xacdfa67e blk_ksm_reprogram_all_keys +EXPORT_SYMBOL_GPL vmlinux 0xacee5056 regulator_enable +EXPORT_SYMBOL_GPL vmlinux 0xacefb0f9 sysfs_remove_file_from_group +EXPORT_SYMBOL_GPL vmlinux 0xacf92a6d set_selection_kernel EXPORT_SYMBOL_GPL vmlinux 0xacfe997e powerpc_firmware_features EXPORT_SYMBOL_GPL vmlinux 0xad12bb7a gen_pool_size -EXPORT_SYMBOL_GPL vmlinux 0xad1fc9cf crypto_unregister_rng -EXPORT_SYMBOL_GPL vmlinux 0xad213f93 nf_queue +EXPORT_SYMBOL_GPL vmlinux 0xad1bfad5 tpm2_flush_context +EXPORT_SYMBOL_GPL vmlinux 0xad1c3141 spi_split_transfers_maxsize EXPORT_SYMBOL_GPL vmlinux 0xad25602f __tracepoint_sched_overutilized_tp -EXPORT_SYMBOL_GPL vmlinux 0xad259c11 of_genpd_add_subdomain -EXPORT_SYMBOL_GPL vmlinux 0xad2ead13 pci_epf_destroy +EXPORT_SYMBOL_GPL vmlinux 0xad271d33 devm_devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0xad33c617 switchdev_port_attr_set +EXPORT_SYMBOL_GPL vmlinux 0xad3fc064 pci_epc_unmap_addr EXPORT_SYMBOL_GPL vmlinux 0xad42dff8 __SCK__tp_func_tcp_bad_csum -EXPORT_SYMBOL_GPL vmlinux 0xad4c1a77 regulator_enable +EXPORT_SYMBOL_GPL vmlinux 0xad4ac61d metadata_dst_alloc_percpu EXPORT_SYMBOL_GPL vmlinux 0xad4e6259 remove_cpu -EXPORT_SYMBOL_GPL vmlinux 0xad561a83 phy_speed_down -EXPORT_SYMBOL_GPL vmlinux 0xad62a5bd bus_find_device +EXPORT_SYMBOL_GPL vmlinux 0xad4f4393 page_endio EXPORT_SYMBOL_GPL vmlinux 0xad645234 register_switchdev_notifier -EXPORT_SYMBOL_GPL vmlinux 0xad6d26a7 tty_put_char +EXPORT_SYMBOL_GPL vmlinux 0xad6c13f9 nvmem_device_get +EXPORT_SYMBOL_GPL vmlinux 0xad714515 ata_pci_device_suspend EXPORT_SYMBOL_GPL vmlinux 0xad76a3f0 __SCK__tp_func_neigh_update_done -EXPORT_SYMBOL_GPL vmlinux 0xad7a950a inet_csk_listen_start -EXPORT_SYMBOL_GPL vmlinux 0xad8eba88 rio_pw_enable -EXPORT_SYMBOL_GPL vmlinux 0xad99e3ba dev_pm_opp_find_freq_ceil_by_volt +EXPORT_SYMBOL_GPL vmlinux 0xad800613 cpufreq_table_index_unsorted +EXPORT_SYMBOL_GPL vmlinux 0xad81f930 pinconf_generic_dump_config +EXPORT_SYMBOL_GPL vmlinux 0xad8202d1 inet_csk_route_req +EXPORT_SYMBOL_GPL vmlinux 0xad8a9a27 md_run EXPORT_SYMBOL_GPL vmlinux 0xada38766 dst_cache_destroy -EXPORT_SYMBOL_GPL vmlinux 0xadaa21bb device_get_child_node_count -EXPORT_SYMBOL_GPL vmlinux 0xadac1c44 pci_remove_device_node_info -EXPORT_SYMBOL_GPL vmlinux 0xadb1861f blk_revalidate_disk_zones -EXPORT_SYMBOL_GPL vmlinux 0xadb98b0f get_kernel_pages -EXPORT_SYMBOL_GPL vmlinux 0xadd26a03 ip_route_output_tunnel -EXPORT_SYMBOL_GPL vmlinux 0xadddf495 fsnotify_alloc_group -EXPORT_SYMBOL_GPL vmlinux 0xade5a5df platform_device_del -EXPORT_SYMBOL_GPL vmlinux 0xadf5ac65 ipv6_dup_options -EXPORT_SYMBOL_GPL vmlinux 0xae005ebd ping_unhash -EXPORT_SYMBOL_GPL vmlinux 0xae06c719 blk_trace_setup +EXPORT_SYMBOL_GPL vmlinux 0xada9544d __traceiter_block_split +EXPORT_SYMBOL_GPL vmlinux 0xadbb708c blk_trace_setup +EXPORT_SYMBOL_GPL vmlinux 0xadc1cce6 kvmppc_do_h_remove +EXPORT_SYMBOL_GPL vmlinux 0xadc7df92 device_add_properties +EXPORT_SYMBOL_GPL vmlinux 0xaddf5c64 device_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0xadfe0513 __devm_clk_hw_register_mux +EXPORT_SYMBOL_GPL vmlinux 0xae0fac3f register_wide_hw_breakpoint EXPORT_SYMBOL_GPL vmlinux 0xae1051b0 net_cls_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xae18fafa crypto_shash_setkey -EXPORT_SYMBOL_GPL vmlinux 0xae27723d dax_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0xae34cc9f devm_led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0xae362166 gpiod_direction_input +EXPORT_SYMBOL_GPL vmlinux 0xae393666 devm_pm_opp_attach_genpd +EXPORT_SYMBOL_GPL vmlinux 0xae395f92 rio_mport_write_config_32 EXPORT_SYMBOL_GPL vmlinux 0xae39f80e dst_cache_init EXPORT_SYMBOL_GPL vmlinux 0xae442152 dawr_force_enable -EXPORT_SYMBOL_GPL vmlinux 0xae534e7b crypto_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0xae5f9359 __audit_inode_child +EXPORT_SYMBOL_GPL vmlinux 0xae62deda device_add_software_node EXPORT_SYMBOL_GPL vmlinux 0xae64f1dd __tracepoint_block_bio_remap -EXPORT_SYMBOL_GPL vmlinux 0xae655d67 led_init_core EXPORT_SYMBOL_GPL vmlinux 0xae69b1c1 usermodehelper_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0xae71d525 crypto_unregister_ahashes +EXPORT_SYMBOL_GPL vmlinux 0xae7ad015 tpm_pm_suspend EXPORT_SYMBOL_GPL vmlinux 0xae7c231d mpi_cmp -EXPORT_SYMBOL_GPL vmlinux 0xae7eb491 crypto_mod_get -EXPORT_SYMBOL_GPL vmlinux 0xae8397f2 dax_copy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0xae7d42b0 clk_gate_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xae86ec60 __fput_sync EXPORT_SYMBOL_GPL vmlinux 0xae87cad0 memstart_addr -EXPORT_SYMBOL_GPL vmlinux 0xae8c7920 dev_coredumpv -EXPORT_SYMBOL_GPL vmlinux 0xae96d086 pci_epf_type_add_cfs -EXPORT_SYMBOL_GPL vmlinux 0xae98aa85 skb_defer_rx_timestamp -EXPORT_SYMBOL_GPL vmlinux 0xaea16b5c vfio_pci_core_close_device -EXPORT_SYMBOL_GPL vmlinux 0xaeae1e2b regulator_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0xaeb2cce7 bpf_prog_create -EXPORT_SYMBOL_GPL vmlinux 0xaeb6f90a device_add_properties +EXPORT_SYMBOL_GPL vmlinux 0xae93da34 pm_clk_add_clk +EXPORT_SYMBOL_GPL vmlinux 0xae9dfea9 md_submit_discard_bio +EXPORT_SYMBOL_GPL vmlinux 0xaea27246 cpufreq_generic_attr +EXPORT_SYMBOL_GPL vmlinux 0xaeb64a1b of_usb_update_otg_caps +EXPORT_SYMBOL_GPL vmlinux 0xaeb6bbbb __auxiliary_driver_register +EXPORT_SYMBOL_GPL vmlinux 0xaebbfd06 spi_take_timestamp_pre +EXPORT_SYMBOL_GPL vmlinux 0xaec793e1 handle_mm_fault EXPORT_SYMBOL_GPL vmlinux 0xaec9921f hash_page -EXPORT_SYMBOL_GPL vmlinux 0xaed02ed0 usb_disable_lpm -EXPORT_SYMBOL_GPL vmlinux 0xaedc5932 iomap_finish_ioends -EXPORT_SYMBOL_GPL vmlinux 0xaeeaea81 of_modalias_node -EXPORT_SYMBOL_GPL vmlinux 0xaef5899f ata_sff_data_xfer -EXPORT_SYMBOL_GPL vmlinux 0xaefae2ea nfs42_ssc_register -EXPORT_SYMBOL_GPL vmlinux 0xaf04a4f3 cpufreq_dbs_governor_stop +EXPORT_SYMBOL_GPL vmlinux 0xaeca2bb6 vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0xaefa5378 crypto_alg_extsize EXPORT_SYMBOL_GPL vmlinux 0xaf076aec nd_fletcher64 -EXPORT_SYMBOL_GPL vmlinux 0xaf18cc09 is_nvdimm_sync -EXPORT_SYMBOL_GPL vmlinux 0xaf1d180c vga_default_device -EXPORT_SYMBOL_GPL vmlinux 0xaf1d1cb6 iommu_map_atomic +EXPORT_SYMBOL_GPL vmlinux 0xaf17f772 xfrm_audit_state_add EXPORT_SYMBOL_GPL vmlinux 0xaf1e10da opal_int_set_mfrr -EXPORT_SYMBOL_GPL vmlinux 0xaf1f3607 ata_platform_remove_one -EXPORT_SYMBOL_GPL vmlinux 0xaf31cb72 pci_iomap_wc_range +EXPORT_SYMBOL_GPL vmlinux 0xaf22b450 vfs_write +EXPORT_SYMBOL_GPL vmlinux 0xaf2fa0a5 ethnl_cable_test_free EXPORT_SYMBOL_GPL vmlinux 0xaf3a44e9 __SCK__tp_func_sched_overutilized_tp -EXPORT_SYMBOL_GPL vmlinux 0xaf3f645f wm8350_read_auxadc EXPORT_SYMBOL_GPL vmlinux 0xaf4014ff usb_amd_quirk_pll_check -EXPORT_SYMBOL_GPL vmlinux 0xaf543385 cpufreq_table_index_unsorted -EXPORT_SYMBOL_GPL vmlinux 0xaf5ee356 __platform_driver_register -EXPORT_SYMBOL_GPL vmlinux 0xaf69d86f fs_kobj +EXPORT_SYMBOL_GPL vmlinux 0xaf4147e8 edac_mc_add_mc_with_groups +EXPORT_SYMBOL_GPL vmlinux 0xaf437e21 pci_iomap_wc +EXPORT_SYMBOL_GPL vmlinux 0xaf4990db vfio_pci_register_dev_region +EXPORT_SYMBOL_GPL vmlinux 0xaf517207 __traceiter_pelt_rt_tp +EXPORT_SYMBOL_GPL vmlinux 0xaf649086 key_type_asymmetric +EXPORT_SYMBOL_GPL vmlinux 0xaf6c2336 tpm_pcr_read EXPORT_SYMBOL_GPL vmlinux 0xaf793668 __alloc_percpu_gfp EXPORT_SYMBOL_GPL vmlinux 0xaf852873 cpuidle_register_device -EXPORT_SYMBOL_GPL vmlinux 0xaf9f0f74 ping_common_sendmsg -EXPORT_SYMBOL_GPL vmlinux 0xafb69085 inet_send_prepare +EXPORT_SYMBOL_GPL vmlinux 0xaf96f591 ata_sff_wait_ready +EXPORT_SYMBOL_GPL vmlinux 0xafa0308d rio_request_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0xafacef1e br_ip6_fragment +EXPORT_SYMBOL_GPL vmlinux 0xafb2d8ab phy_set_media +EXPORT_SYMBOL_GPL vmlinux 0xafb382ae xdp_rxq_info_reg_mem_model EXPORT_SYMBOL_GPL vmlinux 0xafbe6c9e kvmppc_hwrng_present -EXPORT_SYMBOL_GPL vmlinux 0xafc3dd7c rcu_read_unlock_trace_special -EXPORT_SYMBOL_GPL vmlinux 0xafc98bd7 pnv_ocxl_map_lpar -EXPORT_SYMBOL_GPL vmlinux 0xafd50c1e divider_ro_determine_rate -EXPORT_SYMBOL_GPL vmlinux 0xafdd7786 fuse_send_init +EXPORT_SYMBOL_GPL vmlinux 0xafcafc36 devm_pm_opp_of_add_table +EXPORT_SYMBOL_GPL vmlinux 0xafd23cb8 kthread_data +EXPORT_SYMBOL_GPL vmlinux 0xafd2c4f4 usb_put_hcd EXPORT_SYMBOL_GPL vmlinux 0xafddd545 ata_id_c_string EXPORT_SYMBOL_GPL vmlinux 0xafeb58c1 __SCK__tp_func_io_page_fault -EXPORT_SYMBOL_GPL vmlinux 0xafedde18 netif_carrier_event -EXPORT_SYMBOL_GPL vmlinux 0xb01cc884 usb_get_dr_mode -EXPORT_SYMBOL_GPL vmlinux 0xb02975ce bpf_prog_add +EXPORT_SYMBOL_GPL vmlinux 0xafec8500 dax_layout_busy_page +EXPORT_SYMBOL_GPL vmlinux 0xaff1e18e driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xaff36f4d pci_device_group +EXPORT_SYMBOL_GPL vmlinux 0xaff555d0 pci_host_common_probe +EXPORT_SYMBOL_GPL vmlinux 0xb0017d69 fwnode_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0xb021c870 badblocks_clear +EXPORT_SYMBOL_GPL vmlinux 0xb025f8ec blkg_lookup_slowpath EXPORT_SYMBOL_GPL vmlinux 0xb02e08f2 vmalloc_to_phys +EXPORT_SYMBOL_GPL vmlinux 0xb036eb13 nf_queue_entry_free EXPORT_SYMBOL_GPL vmlinux 0xb049a294 __SCK__tp_func_pelt_irq_tp -EXPORT_SYMBOL_GPL vmlinux 0xb056a375 ata_cable_ignore +EXPORT_SYMBOL_GPL vmlinux 0xb049fe74 icc_std_aggregate EXPORT_SYMBOL_GPL vmlinux 0xb063af49 xas_split_alloc EXPORT_SYMBOL_GPL vmlinux 0xb06634ec opal_xscom_write +EXPORT_SYMBOL_GPL vmlinux 0xb06c5988 vma_kernel_pagesize EXPORT_SYMBOL_GPL vmlinux 0xb0747ed2 rcu_cpu_stall_suppress +EXPORT_SYMBOL_GPL vmlinux 0xb074f1a7 switchdev_port_obj_add EXPORT_SYMBOL_GPL vmlinux 0xb077e70a clk_unprepare -EXPORT_SYMBOL_GPL vmlinux 0xb07b5d86 tcp_get_info +EXPORT_SYMBOL_GPL vmlinux 0xb08837b7 crypto_enqueue_request_head +EXPORT_SYMBOL_GPL vmlinux 0xb08c11c7 pci_add_device_node_info +EXPORT_SYMBOL_GPL vmlinux 0xb095c771 fwnode_get_named_child_node +EXPORT_SYMBOL_GPL vmlinux 0xb0995d95 pci_hp_del +EXPORT_SYMBOL_GPL vmlinux 0xb09b7c2c srp_attach_transport +EXPORT_SYMBOL_GPL vmlinux 0xb09b8a51 input_ff_destroy +EXPORT_SYMBOL_GPL vmlinux 0xb0a351d3 kthread_park +EXPORT_SYMBOL_GPL vmlinux 0xb0b802a0 kvmppc_h_enter EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset -EXPORT_SYMBOL_GPL vmlinux 0xb0cf870f rio_dev_put EXPORT_SYMBOL_GPL vmlinux 0xb0d1656c gpio_free_array -EXPORT_SYMBOL_GPL vmlinux 0xb0ded7cf edac_device_alloc_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0xb0d8a51b nf_queue_entry_get_refs +EXPORT_SYMBOL_GPL vmlinux 0xb0e37517 set_secondary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xb0edee10 ata_link_online EXPORT_SYMBOL_GPL vmlinux 0xb0f73f8e __wake_up_locked_sync_key -EXPORT_SYMBOL_GPL vmlinux 0xb0fb24bf crypto_rng_reset -EXPORT_SYMBOL_GPL vmlinux 0xb107b81a iommu_report_device_fault +EXPORT_SYMBOL_GPL vmlinux 0xb10c4d15 fwnode_gpiod_get_index EXPORT_SYMBOL_GPL vmlinux 0xb10d964d devlink_fmsg_pair_nest_end +EXPORT_SYMBOL_GPL vmlinux 0xb111f3f2 ahash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xb1176520 of_property_read_variable_u16_array EXPORT_SYMBOL_GPL vmlinux 0xb11d9000 tty_dev_name_to_number -EXPORT_SYMBOL_GPL vmlinux 0xb1272099 gpiod_get_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xb13e7993 pci_epc_unmap_addr -EXPORT_SYMBOL_GPL vmlinux 0xb14bd5d4 gpiochip_request_own_desc -EXPORT_SYMBOL_GPL vmlinux 0xb1559de2 dw_pcie_ep_init_notify -EXPORT_SYMBOL_GPL vmlinux 0xb15c6b05 regmap_add_irq_chip_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xb1410704 fsnotify_put_group EXPORT_SYMBOL_GPL vmlinux 0xb1647fc2 devlink_info_version_running_put -EXPORT_SYMBOL_GPL vmlinux 0xb1650c53 lochnagar_update_config -EXPORT_SYMBOL_GPL vmlinux 0xb1762ac5 vfio_register_group_dev -EXPORT_SYMBOL_GPL vmlinux 0xb17edfef rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb16681f0 dev_pm_opp_register_set_opp_helper +EXPORT_SYMBOL_GPL vmlinux 0xb16c0214 fixed_phy_set_link_update +EXPORT_SYMBOL_GPL vmlinux 0xb173b217 bpf_trace_run2 +EXPORT_SYMBOL_GPL vmlinux 0xb1815846 devlink_dpipe_headers_unregister EXPORT_SYMBOL_GPL vmlinux 0xb18429eb suspend_device_irqs -EXPORT_SYMBOL_GPL vmlinux 0xb1849723 usb_register_driver -EXPORT_SYMBOL_GPL vmlinux 0xb18b96ee dev_pm_opp_find_freq_ceil -EXPORT_SYMBOL_GPL vmlinux 0xb1a4c8cb dev_xdp_prog_count -EXPORT_SYMBOL_GPL vmlinux 0xb1afb067 dev_pm_disable_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0xb1b56716 firmware_kobj -EXPORT_SYMBOL_GPL vmlinux 0xb1beb623 __dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0xb18470d5 scsi_host_block +EXPORT_SYMBOL_GPL vmlinux 0xb194914f netlink_remove_tap +EXPORT_SYMBOL_GPL vmlinux 0xb1afcd63 skb_append_pagefrags +EXPORT_SYMBOL_GPL vmlinux 0xb1b09dfb phy_modify EXPORT_SYMBOL_GPL vmlinux 0xb1bed25d dpm_resume_start -EXPORT_SYMBOL_GPL vmlinux 0xb1bf9243 is_swiotlb_active -EXPORT_SYMBOL_GPL vmlinux 0xb1d7b4b0 irq_domain_reset_irq_data -EXPORT_SYMBOL_GPL vmlinux 0xb1de61c5 devlink_trap_groups_register +EXPORT_SYMBOL_GPL vmlinux 0xb1cf58c6 dev_pm_enable_wake_irq EXPORT_SYMBOL_GPL vmlinux 0xb1e25684 __trace_bputs -EXPORT_SYMBOL_GPL vmlinux 0xb1f44ae4 mnt_want_write_file +EXPORT_SYMBOL_GPL vmlinux 0xb1f174d3 devm_extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb1f3f127 cgroup_get_e_css +EXPORT_SYMBOL_GPL vmlinux 0xb1fbf46a mmc_cmdq_enable EXPORT_SYMBOL_GPL vmlinux 0xb1fc1782 pci_speed_string -EXPORT_SYMBOL_GPL vmlinux 0xb2031748 scsi_free_sgtables -EXPORT_SYMBOL_GPL vmlinux 0xb20c93b5 loop_backing_file +EXPORT_SYMBOL_GPL vmlinux 0xb2063891 ip6_route_lookup +EXPORT_SYMBOL_GPL vmlinux 0xb2065d42 blk_execute_rq_nowait +EXPORT_SYMBOL_GPL vmlinux 0xb21400f2 pci_epc_start +EXPORT_SYMBOL_GPL vmlinux 0xb21a7f7a iommu_group_get EXPORT_SYMBOL_GPL vmlinux 0xb2210d64 reset_control_deassert -EXPORT_SYMBOL_GPL vmlinux 0xb2296812 regulator_set_drvdata -EXPORT_SYMBOL_GPL vmlinux 0xb2316ac8 ehci_adjust_port_wakeup_flags -EXPORT_SYMBOL_GPL vmlinux 0xb2353047 thermal_zone_device_update EXPORT_SYMBOL_GPL vmlinux 0xb2405efc secure_tcp_seq -EXPORT_SYMBOL_GPL vmlinux 0xb24aa258 i2c_get_device_id -EXPORT_SYMBOL_GPL vmlinux 0xb2510e0b of_irq_parse_raw -EXPORT_SYMBOL_GPL vmlinux 0xb25bb7f2 rtc_set_time -EXPORT_SYMBOL_GPL vmlinux 0xb2632bf3 scsi_build_sense -EXPORT_SYMBOL_GPL vmlinux 0xb2687ab2 of_icc_get +EXPORT_SYMBOL_GPL vmlinux 0xb2481e62 of_phandle_iterator_init +EXPORT_SYMBOL_GPL vmlinux 0xb24c017d sysfs_file_change_owner +EXPORT_SYMBOL_GPL vmlinux 0xb2694ee5 devlink_unregister EXPORT_SYMBOL_GPL vmlinux 0xb26a1add elfcorehdr_addr -EXPORT_SYMBOL_GPL vmlinux 0xb26b588a __sock_recv_ts_and_drops -EXPORT_SYMBOL_GPL vmlinux 0xb26dc720 gpiod_get_array_value +EXPORT_SYMBOL_GPL vmlinux 0xb26a85f0 unregister_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0xb26de312 netlink_has_listeners +EXPORT_SYMBOL_GPL vmlinux 0xb27fc8ef devlink_trap_policers_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb2813ef0 of_nvmem_cell_get +EXPORT_SYMBOL_GPL vmlinux 0xb282a596 ata_pci_bmdma_clear_simplex +EXPORT_SYMBOL_GPL vmlinux 0xb2846d9c perf_event_pause EXPORT_SYMBOL_GPL vmlinux 0xb29533ee zs_malloc -EXPORT_SYMBOL_GPL vmlinux 0xb29cf9cb gpiochip_add_pingroup_range EXPORT_SYMBOL_GPL vmlinux 0xb2a653fc confirm_error_lock -EXPORT_SYMBOL_GPL vmlinux 0xb2abc0a8 cpufreq_driver_resolve_freq -EXPORT_SYMBOL_GPL vmlinux 0xb2bb3675 crypto_spawn_tfm2 +EXPORT_SYMBOL_GPL vmlinux 0xb2b1ebc2 xhci_run +EXPORT_SYMBOL_GPL vmlinux 0xb2bdb88c sysfs_unmerge_group EXPORT_SYMBOL_GPL vmlinux 0xb2c1732e rcu_gp_set_torture_wait -EXPORT_SYMBOL_GPL vmlinux 0xb2cd5176 trace_get_event_file +EXPORT_SYMBOL_GPL vmlinux 0xb2dcaca6 clk_hw_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0xb2ddc101 ohci_setup EXPORT_SYMBOL_GPL vmlinux 0xb2e764e8 suspend_valid_only_mem -EXPORT_SYMBOL_GPL vmlinux 0xb2f8ccd7 devm_pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0xb2e7adc0 ip_fib_metrics_init +EXPORT_SYMBOL_GPL vmlinux 0xb2fea06c kobj_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0xb307b171 blk_next_bio EXPORT_SYMBOL_GPL vmlinux 0xb307c909 devlink_fmsg_u64_pair_put -EXPORT_SYMBOL_GPL vmlinux 0xb316b9c0 tcp_sendmsg_locked -EXPORT_SYMBOL_GPL vmlinux 0xb317f30c security_path_chown -EXPORT_SYMBOL_GPL vmlinux 0xb32c9940 ping_close -EXPORT_SYMBOL_GPL vmlinux 0xb33a5a93 __traceiter_block_split -EXPORT_SYMBOL_GPL vmlinux 0xb35f40a1 led_set_brightness_nosleep -EXPORT_SYMBOL_GPL vmlinux 0xb35f7f36 wbt_disable_default -EXPORT_SYMBOL_GPL vmlinux 0xb36cdba3 debugfs_create_file_size +EXPORT_SYMBOL_GPL vmlinux 0xb310d52a devfreq_get_devfreq_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xb313d1bd usb_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0xb3195af3 regmap_attach_dev +EXPORT_SYMBOL_GPL vmlinux 0xb321a997 of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb3274a95 ata_bmdma_port_start +EXPORT_SYMBOL_GPL vmlinux 0xb3376898 noop_invalidatepage +EXPORT_SYMBOL_GPL vmlinux 0xb3431643 mpc8xxx_spi_probe +EXPORT_SYMBOL_GPL vmlinux 0xb3465d5d phy_pm_runtime_put_sync +EXPORT_SYMBOL_GPL vmlinux 0xb35984d3 is_transparent_hugepage +EXPORT_SYMBOL_GPL vmlinux 0xb3749582 cgroup_attach_task_all +EXPORT_SYMBOL_GPL vmlinux 0xb375b66e regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0xb378c98a pnv_ocxl_get_tl_cap +EXPORT_SYMBOL_GPL vmlinux 0xb37b0654 rio_mport_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0xb3815b8e balloon_page_list_dequeue +EXPORT_SYMBOL_GPL vmlinux 0xb390bf7c pm_generic_resume_noirq +EXPORT_SYMBOL_GPL vmlinux 0xb39124c7 devlink_dpipe_entry_ctx_close EXPORT_SYMBOL_GPL vmlinux 0xb39aca9f blocking_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb3ae8abf fib_rules_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb3b15b4b register_wide_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0xb3bf14ed mnt_drop_write -EXPORT_SYMBOL_GPL vmlinux 0xb3c21394 usb_for_each_port -EXPORT_SYMBOL_GPL vmlinux 0xb3c23c97 nf_ipv6_ops -EXPORT_SYMBOL_GPL vmlinux 0xb3cc12b4 of_mpc8xxx_spi_probe -EXPORT_SYMBOL_GPL vmlinux 0xb3df2683 of_genpd_remove_last -EXPORT_SYMBOL_GPL vmlinux 0xb3e1d7de gpiochip_generic_config -EXPORT_SYMBOL_GPL vmlinux 0xb40c81b8 regulator_bulk_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0xb40f3e88 restore_online_page_callback -EXPORT_SYMBOL_GPL vmlinux 0xb41451a3 clockevents_unbind_device -EXPORT_SYMBOL_GPL vmlinux 0xb41e7574 devlink_port_region_create -EXPORT_SYMBOL_GPL vmlinux 0xb41fb444 pinctrl_register_and_init -EXPORT_SYMBOL_GPL vmlinux 0xb422c231 __tcp_send_ack +EXPORT_SYMBOL_GPL vmlinux 0xb39bc821 sata_link_debounce +EXPORT_SYMBOL_GPL vmlinux 0xb3c6dd70 cpuidle_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb3d11a54 usb_match_id +EXPORT_SYMBOL_GPL vmlinux 0xb400b295 dev_pm_disable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xb4014115 edac_device_del_device +EXPORT_SYMBOL_GPL vmlinux 0xb403323d relay_close +EXPORT_SYMBOL_GPL vmlinux 0xb40cbcd7 gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0xb411357b wm831x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xb43c7b71 dma_buf_unpin EXPORT_SYMBOL_GPL vmlinux 0xb43f9365 ktime_get -EXPORT_SYMBOL_GPL vmlinux 0xb448b4c1 cpufreq_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xb4445a8a nvdimm_pmem_region_create +EXPORT_SYMBOL_GPL vmlinux 0xb44a8c52 xhci_shutdown EXPORT_SYMBOL_GPL vmlinux 0xb44e18ea audit_enabled -EXPORT_SYMBOL_GPL vmlinux 0xb45111c0 crypto_shash_final -EXPORT_SYMBOL_GPL vmlinux 0xb45afa03 pinctrl_dev_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0xb45e6b0e devm_usb_get_phy_by_node -EXPORT_SYMBOL_GPL vmlinux 0xb4622eaf kernel_read_file -EXPORT_SYMBOL_GPL vmlinux 0xb4699a15 __auxiliary_driver_register -EXPORT_SYMBOL_GPL vmlinux 0xb48061ad pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0xb46e8d4f do_splice_to EXPORT_SYMBOL_GPL vmlinux 0xb488588e tb_to_ns +EXPORT_SYMBOL_GPL vmlinux 0xb48d3d7e strp_stop EXPORT_SYMBOL_GPL vmlinux 0xb48f0638 software_node_register -EXPORT_SYMBOL_GPL vmlinux 0xb497aea7 fsl_mc_device_group -EXPORT_SYMBOL_GPL vmlinux 0xb4a7960c register_asymmetric_key_parser -EXPORT_SYMBOL_GPL vmlinux 0xb4b791c0 pci_bus_max_busnr -EXPORT_SYMBOL_GPL vmlinux 0xb4b89bd8 exportfs_decode_fh +EXPORT_SYMBOL_GPL vmlinux 0xb4914322 device_release_driver +EXPORT_SYMBOL_GPL vmlinux 0xb4927a37 regulator_map_voltage_ascend EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb4bc4603 dev_attr_ncq_prio_supported -EXPORT_SYMBOL_GPL vmlinux 0xb4c0104e __skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0xb4e403d0 put_device EXPORT_SYMBOL_GPL vmlinux 0xb4ea7cf7 kgdb_connected EXPORT_SYMBOL_GPL vmlinux 0xb4eda0da ring_buffer_event_length +EXPORT_SYMBOL_GPL vmlinux 0xb4f541bf of_thermal_get_ntrips EXPORT_SYMBOL_GPL vmlinux 0xb501b2df nd_cmd_dimm_desc -EXPORT_SYMBOL_GPL vmlinux 0xb50bdd92 crypto_larval_kill -EXPORT_SYMBOL_GPL vmlinux 0xb50dc9ac __sock_recv_timestamp +EXPORT_SYMBOL_GPL vmlinux 0xb5048011 pci_assign_unassigned_bridge_resources +EXPORT_SYMBOL_GPL vmlinux 0xb511a6b9 fat_getattr EXPORT_SYMBOL_GPL vmlinux 0xb51fbd64 edac_op_state -EXPORT_SYMBOL_GPL vmlinux 0xb524ee86 crypto_ahash_final -EXPORT_SYMBOL_GPL vmlinux 0xb53c4321 blk_ksm_register -EXPORT_SYMBOL_GPL vmlinux 0xb545e704 usb_free_coherent -EXPORT_SYMBOL_GPL vmlinux 0xb56b28e5 ata_dummy_port_ops -EXPORT_SYMBOL_GPL vmlinux 0xb584010e nvmem_cell_read_variable_le_u32 -EXPORT_SYMBOL_GPL vmlinux 0xb58c64da pci_epf_add_vepf +EXPORT_SYMBOL_GPL vmlinux 0xb539c0af tty_save_termios +EXPORT_SYMBOL_GPL vmlinux 0xb54eaf16 dw_pcie_read_dbi +EXPORT_SYMBOL_GPL vmlinux 0xb57170b2 regulator_set_pull_down_regmap +EXPORT_SYMBOL_GPL vmlinux 0xb574aa66 fsnotify_alloc_group +EXPORT_SYMBOL_GPL vmlinux 0xb57ad292 pm_generic_thaw_early +EXPORT_SYMBOL_GPL vmlinux 0xb5952dc3 dax_iomap_rw EXPORT_SYMBOL_GPL vmlinux 0xb5a04f05 xive_native_has_save_restore +EXPORT_SYMBOL_GPL vmlinux 0xb5a251a9 dev_pm_opp_get_max_transition_latency +EXPORT_SYMBOL_GPL vmlinux 0xb5a38d91 clean_acked_data_disable EXPORT_SYMBOL_GPL vmlinux 0xb5aa10af atomic_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb5b79924 tpm_chip_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb5beb78c ncsi_vlan_rx_add_vid -EXPORT_SYMBOL_GPL vmlinux 0xb5c58ac6 phy_modify_mmd -EXPORT_SYMBOL_GPL vmlinux 0xb5e0150b ip6_sk_redirect -EXPORT_SYMBOL_GPL vmlinux 0xb5f32ea0 dev_pm_opp_put -EXPORT_SYMBOL_GPL vmlinux 0xb5f48676 extcon_set_state_sync +EXPORT_SYMBOL_GPL vmlinux 0xb5aa4f92 serial8250_update_uartclk +EXPORT_SYMBOL_GPL vmlinux 0xb5ae43ed clk_mux_val_to_index +EXPORT_SYMBOL_GPL vmlinux 0xb5b59330 irq_domain_set_hwirq_and_chip +EXPORT_SYMBOL_GPL vmlinux 0xb5ba4f2d clk_register_divider_table +EXPORT_SYMBOL_GPL vmlinux 0xb5bcbe26 perf_event_release_kernel +EXPORT_SYMBOL_GPL vmlinux 0xb5f4bdfd of_property_read_variable_u64_array EXPORT_SYMBOL_GPL vmlinux 0xb60b5707 of_i8042_aux_irq -EXPORT_SYMBOL_GPL vmlinux 0xb613f175 nd_cmd_out_size -EXPORT_SYMBOL_GPL vmlinux 0xb617de1b mbox_flush -EXPORT_SYMBOL_GPL vmlinux 0xb61b73bf shash_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0xb61421cc pci_bus_resource_n EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb62e65e0 vfio_group_get_external_user_from_dev +EXPORT_SYMBOL_GPL vmlinux 0xb6264690 skcipher_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xb62893c6 ohci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0xb63118f3 tpm_tis_core_init EXPORT_SYMBOL_GPL vmlinux 0xb6357e53 cpuidle_enable_device -EXPORT_SYMBOL_GPL vmlinux 0xb63c12b3 balloon_page_list_dequeue +EXPORT_SYMBOL_GPL vmlinux 0xb6377b96 transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb63d0c3f mptcp_pm_get_local_addr_max EXPORT_SYMBOL_GPL vmlinux 0xb6410433 mpi_addm EXPORT_SYMBOL_GPL vmlinux 0xb643c250 xics_wake_cpu -EXPORT_SYMBOL_GPL vmlinux 0xb646a815 of_pm_clk_add_clk +EXPORT_SYMBOL_GPL vmlinux 0xb647cbb9 input_ff_flush EXPORT_SYMBOL_GPL vmlinux 0xb6490b11 pnv_power9_force_smt4_release -EXPORT_SYMBOL_GPL vmlinux 0xb6494eed crypto_alloc_acomp_node +EXPORT_SYMBOL_GPL vmlinux 0xb64e63c4 to_nd_desc +EXPORT_SYMBOL_GPL vmlinux 0xb654b7c9 usb_hcd_pci_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0xb654fc61 ip_build_and_send_pkt EXPORT_SYMBOL_GPL vmlinux 0xb655f91b pci_epc_get_next_free_bar -EXPORT_SYMBOL_GPL vmlinux 0xb65a049f sysfs_remove_mount_point -EXPORT_SYMBOL_GPL vmlinux 0xb6753deb crypto_unregister_scomps +EXPORT_SYMBOL_GPL vmlinux 0xb664103e __regmap_init +EXPORT_SYMBOL_GPL vmlinux 0xb665d910 skb_defer_rx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0xb66b6891 devm_regulator_get EXPORT_SYMBOL_GPL vmlinux 0xb6787346 sfp_unregister_socket +EXPORT_SYMBOL_GPL vmlinux 0xb679bec3 sk_msg_clone EXPORT_SYMBOL_GPL vmlinux 0xb6888188 klp_shadow_get_or_alloc -EXPORT_SYMBOL_GPL vmlinux 0xb68c5428 sdio_register_driver -EXPORT_SYMBOL_GPL vmlinux 0xb6918d9d sata_std_hardreset -EXPORT_SYMBOL_GPL vmlinux 0xb691c8bd fuse_do_ioctl -EXPORT_SYMBOL_GPL vmlinux 0xb69acaa2 blkg_conf_finish -EXPORT_SYMBOL_GPL vmlinux 0xb6a2b29a tty_prepare_flip_string -EXPORT_SYMBOL_GPL vmlinux 0xb6a45786 serial8250_do_get_mctrl -EXPORT_SYMBOL_GPL vmlinux 0xb6b0a919 devm_phy_get -EXPORT_SYMBOL_GPL vmlinux 0xb6c427d2 usb_free_streams +EXPORT_SYMBOL_GPL vmlinux 0xb69bed92 sysfs_create_mount_point +EXPORT_SYMBOL_GPL vmlinux 0xb6a34599 cpufreq_unregister_governor +EXPORT_SYMBOL_GPL vmlinux 0xb6b9b2c6 usb_wakeup_enabled_descendants +EXPORT_SYMBOL_GPL vmlinux 0xb6c5c371 virtqueue_disable_cb +EXPORT_SYMBOL_GPL vmlinux 0xb6e02fb3 ata_sff_dev_classify EXPORT_SYMBOL_GPL vmlinux 0xb6e6d99d clk_disable -EXPORT_SYMBOL_GPL vmlinux 0xb6e7230e usb_hub_clear_tt_buffer -EXPORT_SYMBOL_GPL vmlinux 0xb6ec3a62 devm_thermal_add_hwmon_sysfs -EXPORT_SYMBOL_GPL vmlinux 0xb6f6a555 of_dma_simple_xlate -EXPORT_SYMBOL_GPL vmlinux 0xb708a4e9 platform_device_add -EXPORT_SYMBOL_GPL vmlinux 0xb71591cc blk_next_bio -EXPORT_SYMBOL_GPL vmlinux 0xb7191ac5 rdev_get_id -EXPORT_SYMBOL_GPL vmlinux 0xb730bec2 blkcg_root_css +EXPORT_SYMBOL_GPL vmlinux 0xb6e94b07 of_dma_is_coherent +EXPORT_SYMBOL_GPL vmlinux 0xb6fa40b3 wm8350_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0xb71679f2 devm_regmap_del_irq_chip EXPORT_SYMBOL_GPL vmlinux 0xb7329c06 clk_set_phase EXPORT_SYMBOL_GPL vmlinux 0xb73713d7 nvmem_add_cell_lookups +EXPORT_SYMBOL_GPL vmlinux 0xb7404c3d usb_phy_roothub_suspend +EXPORT_SYMBOL_GPL vmlinux 0xb7462d23 of_add_property +EXPORT_SYMBOL_GPL vmlinux 0xb749ca27 ata_qc_complete EXPORT_SYMBOL_GPL vmlinux 0xb74c31cd wwan_remove_port -EXPORT_SYMBOL_GPL vmlinux 0xb75ba361 rio_add_mport_pw_handler -EXPORT_SYMBOL_GPL vmlinux 0xb75e562e pm_clk_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0xb767d4ae power_supply_set_battery_charged -EXPORT_SYMBOL_GPL vmlinux 0xb77579e0 pci_hp_del -EXPORT_SYMBOL_GPL vmlinux 0xb778dbb3 irq_create_mapping_affinity +EXPORT_SYMBOL_GPL vmlinux 0xb752ffcb vfs_test_lock +EXPORT_SYMBOL_GPL vmlinux 0xb755729f sk_msg_return_zero +EXPORT_SYMBOL_GPL vmlinux 0xb775059a usb_get_maximum_ssp_rate EXPORT_SYMBOL_GPL vmlinux 0xb786bf75 pci_write_msi_msg EXPORT_SYMBOL_GPL vmlinux 0xb78cc0d3 crypto_chain -EXPORT_SYMBOL_GPL vmlinux 0xb78cd630 device_find_child_by_name -EXPORT_SYMBOL_GPL vmlinux 0xb79082df fwnode_get_next_child_node -EXPORT_SYMBOL_GPL vmlinux 0xb79264d2 dma_release_channel -EXPORT_SYMBOL_GPL vmlinux 0xb799e0ef fuse_dev_operations +EXPORT_SYMBOL_GPL vmlinux 0xb7907096 blk_abort_request +EXPORT_SYMBOL_GPL vmlinux 0xb792486a validate_xmit_skb_list +EXPORT_SYMBOL_GPL vmlinux 0xb7945af5 devlink_dpipe_table_register +EXPORT_SYMBOL_GPL vmlinux 0xb794aedb do_truncate +EXPORT_SYMBOL_GPL vmlinux 0xb79b13fb handle_untracked_irq EXPORT_SYMBOL_GPL vmlinux 0xb7a387fc synchronize_rcu_tasks_rude -EXPORT_SYMBOL_GPL vmlinux 0xb7b93532 switchdev_port_obj_del -EXPORT_SYMBOL_GPL vmlinux 0xb7c2a015 __skb_get_hash_symmetric +EXPORT_SYMBOL_GPL vmlinux 0xb7a74b33 irq_domain_reset_irq_data +EXPORT_SYMBOL_GPL vmlinux 0xb7a92833 power_supply_am_i_supplied +EXPORT_SYMBOL_GPL vmlinux 0xb7aff6bf inet_hash +EXPORT_SYMBOL_GPL vmlinux 0xb7b7001e icc_node_del +EXPORT_SYMBOL_GPL vmlinux 0xb7be4ac1 cdrom_read_tocentry +EXPORT_SYMBOL_GPL vmlinux 0xb7be6426 gpiochip_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0xb7c023f4 crypto_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0xb7c152ac devm_regmap_add_irq_chip EXPORT_SYMBOL_GPL vmlinux 0xb7c69a63 unregister_vmap_purge_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb7c71916 of_clk_parent_fill EXPORT_SYMBOL_GPL vmlinux 0xb7cc0cff __tracepoint_br_fdb_add EXPORT_SYMBOL_GPL vmlinux 0xb7d17fa0 pgtable_cache -EXPORT_SYMBOL_GPL vmlinux 0xb7d6edbf ata_sas_port_suspend -EXPORT_SYMBOL_GPL vmlinux 0xb7dd4818 clk_register -EXPORT_SYMBOL_GPL vmlinux 0xb7fe92f8 remove_phb_dynamic -EXPORT_SYMBOL_GPL vmlinux 0xb8189a22 devm_phy_package_join +EXPORT_SYMBOL_GPL vmlinux 0xb7db1335 rio_add_device +EXPORT_SYMBOL_GPL vmlinux 0xb7dbbadc rio_mport_get_efb +EXPORT_SYMBOL_GPL vmlinux 0xb7e4d5f3 dev_pm_opp_set_opp +EXPORT_SYMBOL_GPL vmlinux 0xb80488fe usb_choose_configuration +EXPORT_SYMBOL_GPL vmlinux 0xb8133a75 ata_sff_check_status EXPORT_SYMBOL_GPL vmlinux 0xb81f89df __xas_next -EXPORT_SYMBOL_GPL vmlinux 0xb823bb11 get_governor_parent_kobj -EXPORT_SYMBOL_GPL vmlinux 0xb83d5700 da9052_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0xb841e86c devfreq_event_get_edev_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0xb846dd02 ata_sas_slave_configure +EXPORT_SYMBOL_GPL vmlinux 0xb8211579 ata_ehi_clear_desc +EXPORT_SYMBOL_GPL vmlinux 0xb825edef hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb8363c81 devm_hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0xb83d382e usb_create_shared_hcd +EXPORT_SYMBOL_GPL vmlinux 0xb8446ebd crypto_register_alg EXPORT_SYMBOL_GPL vmlinux 0xb847585f is_hash_blacklisted -EXPORT_SYMBOL_GPL vmlinux 0xb84f02ce spi_mem_get_name -EXPORT_SYMBOL_GPL vmlinux 0xb85076d2 iommu_map -EXPORT_SYMBOL_GPL vmlinux 0xb8599106 skb_append_pagefrags -EXPORT_SYMBOL_GPL vmlinux 0xb87d1314 debugfs_remove +EXPORT_SYMBOL_GPL vmlinux 0xb8600bd5 da9055_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0xb86337a6 gpiochip_line_is_persistent +EXPORT_SYMBOL_GPL vmlinux 0xb872c5ae __pci_epf_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xb875665d bpf_prog_create_from_user +EXPORT_SYMBOL_GPL vmlinux 0xb880fe52 param_set_uint_minmax EXPORT_SYMBOL_GPL vmlinux 0xb88dbfce irq_set_irqchip_state -EXPORT_SYMBOL_GPL vmlinux 0xb890c252 pci_epc_get_msix +EXPORT_SYMBOL_GPL vmlinux 0xb890c3a4 pinctrl_generic_get_group_pins EXPORT_SYMBOL_GPL vmlinux 0xb8993fac __tracepoint_remove_device_from_group EXPORT_SYMBOL_GPL vmlinux 0xb89e69b1 jump_label_update_timeout +EXPORT_SYMBOL_GPL vmlinux 0xb8aae12b pm_runtime_get_if_active EXPORT_SYMBOL_GPL vmlinux 0xb8c644ab mce_unregister_notifier EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put -EXPORT_SYMBOL_GPL vmlinux 0xb8e3ff09 dev_pm_qos_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb8eaf6e6 of_pci_dma_range_parser_init -EXPORT_SYMBOL_GPL vmlinux 0xb8f98ab5 vfio_assign_device_set -EXPORT_SYMBOL_GPL vmlinux 0xb8ff6e15 tcp_twsk_unique -EXPORT_SYMBOL_GPL vmlinux 0xb9054bc1 event_triggers_call -EXPORT_SYMBOL_GPL vmlinux 0xb90acc87 driver_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0xb8dfaa4d __mmc_send_status +EXPORT_SYMBOL_GPL vmlinux 0xb8e78de0 devm_gpiod_unhinge +EXPORT_SYMBOL_GPL vmlinux 0xb8ea716c mmc_regulator_get_supply +EXPORT_SYMBOL_GPL vmlinux 0xb8eec56a serial8250_do_set_ldisc +EXPORT_SYMBOL_GPL vmlinux 0xb9025b06 nd_tbl +EXPORT_SYMBOL_GPL vmlinux 0xb906b715 devm_fwnode_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xb9093ad6 nvdimm_bus_register +EXPORT_SYMBOL_GPL vmlinux 0xb909e12f ata_bmdma_qc_prep EXPORT_SYMBOL_GPL vmlinux 0xb90b01b2 hrtimer_forward -EXPORT_SYMBOL_GPL vmlinux 0xb90ff380 usb_autopm_get_interface EXPORT_SYMBOL_GPL vmlinux 0xb912560d static_key_disable -EXPORT_SYMBOL_GPL vmlinux 0xb918311d kgdb_unregister_io_module -EXPORT_SYMBOL_GPL vmlinux 0xb91cbc93 of_property_match_string -EXPORT_SYMBOL_GPL vmlinux 0xb9274e5f wm831x_reg_unlock -EXPORT_SYMBOL_GPL vmlinux 0xb93e3569 cpci_hp_unregister_controller -EXPORT_SYMBOL_GPL vmlinux 0xb9406e45 __traceiter_napi_poll -EXPORT_SYMBOL_GPL vmlinux 0xb94654cb pci_set_pcie_reset_state -EXPORT_SYMBOL_GPL vmlinux 0xb94876fe ima_file_hash -EXPORT_SYMBOL_GPL vmlinux 0xb94991f3 mmc_send_status -EXPORT_SYMBOL_GPL vmlinux 0xb953bba3 ata_eh_freeze_port -EXPORT_SYMBOL_GPL vmlinux 0xb95c7936 fscrypt_d_revalidate -EXPORT_SYMBOL_GPL vmlinux 0xb95eba1d sysfs_remove_group +EXPORT_SYMBOL_GPL vmlinux 0xb914d215 dev_get_tstats64 +EXPORT_SYMBOL_GPL vmlinux 0xb918b37c irq_get_domain_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xb92134f0 usb_get_current_frame_number +EXPORT_SYMBOL_GPL vmlinux 0xb92360d9 nfnl_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0xb9307cb1 __reset_control_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0xb95b76a3 virtio_max_dma_size +EXPORT_SYMBOL_GPL vmlinux 0xb95f95c6 perf_event_read_value +EXPORT_SYMBOL_GPL vmlinux 0xb960655a usb_autopm_put_interface_async +EXPORT_SYMBOL_GPL vmlinux 0xb9641647 input_ff_upload +EXPORT_SYMBOL_GPL vmlinux 0xb964f4b6 regulator_sync_voltage +EXPORT_SYMBOL_GPL vmlinux 0xb9660442 kvmppc_clear_ref_hpte EXPORT_SYMBOL_GPL vmlinux 0xb9681621 xdp_do_flush -EXPORT_SYMBOL_GPL vmlinux 0xb97c9ef4 dev_pm_opp_get_required_pstate +EXPORT_SYMBOL_GPL vmlinux 0xb96904d3 __traceiter_pelt_irq_tp +EXPORT_SYMBOL_GPL vmlinux 0xb97fcf1b devm_of_led_get EXPORT_SYMBOL_GPL vmlinux 0xb9852d11 __traceiter_mc_event -EXPORT_SYMBOL_GPL vmlinux 0xb988d81f blk_mq_debugfs_rq_show EXPORT_SYMBOL_GPL vmlinux 0xb98bb315 phy_gbit_fibre_features +EXPORT_SYMBOL_GPL vmlinux 0xb98dd266 dma_mmap_noncontiguous EXPORT_SYMBOL_GPL vmlinux 0xb99df747 xive_native_has_queue_state_support -EXPORT_SYMBOL_GPL vmlinux 0xb9b11a30 of_clk_get_from_provider +EXPORT_SYMBOL_GPL vmlinux 0xb9a6daf6 devm_gpio_free +EXPORT_SYMBOL_GPL vmlinux 0xb9a7d866 scsi_schedule_eh EXPORT_SYMBOL_GPL vmlinux 0xb9b9df41 usb_amd_dev_put EXPORT_SYMBOL_GPL vmlinux 0xb9c425de register_syscore_ops -EXPORT_SYMBOL_GPL vmlinux 0xb9cfcac8 crypto_register_rngs EXPORT_SYMBOL_GPL vmlinux 0xb9d025c9 llist_del_first -EXPORT_SYMBOL_GPL vmlinux 0xb9d16c62 devm_gpio_free -EXPORT_SYMBOL_GPL vmlinux 0xb9e4ac4b kthread_cancel_work_sync -EXPORT_SYMBOL_GPL vmlinux 0xb9ed12c3 mbox_controller_register -EXPORT_SYMBOL_GPL vmlinux 0xb9fe91b8 pm_generic_restore -EXPORT_SYMBOL_GPL vmlinux 0xba02aafc pci_stop_and_remove_bus_device_locked +EXPORT_SYMBOL_GPL vmlinux 0xb9df249a platform_bus +EXPORT_SYMBOL_GPL vmlinux 0xb9ec377e iommu_iova_to_phys +EXPORT_SYMBOL_GPL vmlinux 0xb9f90767 of_i2c_get_board_info EXPORT_SYMBOL_GPL vmlinux 0xba057786 kernel_read_file_from_path_initns EXPORT_SYMBOL_GPL vmlinux 0xba158769 rtas_cancel_event_scan +EXPORT_SYMBOL_GPL vmlinux 0xba173adb pid_nr_ns EXPORT_SYMBOL_GPL vmlinux 0xba2b7f64 cpufreq_generic_get +EXPORT_SYMBOL_GPL vmlinux 0xba342c9b sk_msg_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0xba42096a find_vpid +EXPORT_SYMBOL_GPL vmlinux 0xba42b323 usb_unlocked_enable_lpm EXPORT_SYMBOL_GPL vmlinux 0xba4b1b3d alarm_forward -EXPORT_SYMBOL_GPL vmlinux 0xba4e9ce7 of_device_request_module -EXPORT_SYMBOL_GPL vmlinux 0xba517c54 devlink_dpipe_action_put -EXPORT_SYMBOL_GPL vmlinux 0xba5eb774 transport_destroy_device -EXPORT_SYMBOL_GPL vmlinux 0xba5eed70 gpiod_count -EXPORT_SYMBOL_GPL vmlinux 0xba683184 udp_destruct_sock -EXPORT_SYMBOL_GPL vmlinux 0xba7a7d98 crypto_spawn_tfm -EXPORT_SYMBOL_GPL vmlinux 0xba8ced71 dev_pm_opp_get_opp_count -EXPORT_SYMBOL_GPL vmlinux 0xbaa32956 __blk_mq_debugfs_rq_show -EXPORT_SYMBOL_GPL vmlinux 0xbaa76f66 ata_host_detach -EXPORT_SYMBOL_GPL vmlinux 0xbab0f23e pci_epc_clear_bar +EXPORT_SYMBOL_GPL vmlinux 0xba654e0c security_kernel_read_file +EXPORT_SYMBOL_GPL vmlinux 0xba6b948f devlink_dpipe_entry_ctx_prepare +EXPORT_SYMBOL_GPL vmlinux 0xba6d0821 usb_hcd_start_port_resume +EXPORT_SYMBOL_GPL vmlinux 0xba9ca335 iomap_file_unshare +EXPORT_SYMBOL_GPL vmlinux 0xbaadc16d ata_port_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0xbaaf0e89 init_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xbab679d9 md_bitmap_copy_from_slot EXPORT_SYMBOL_GPL vmlinux 0xbab9a9f0 maxim_charger_currents -EXPORT_SYMBOL_GPL vmlinux 0xbaca6cb4 of_phy_put -EXPORT_SYMBOL_GPL vmlinux 0xbae42846 led_trigger_read +EXPORT_SYMBOL_GPL vmlinux 0xbad0d519 genphy_c45_pma_suspend +EXPORT_SYMBOL_GPL vmlinux 0xbae5e5fa of_pci_find_child_device +EXPORT_SYMBOL_GPL vmlinux 0xbaf09122 usb_for_each_port EXPORT_SYMBOL_GPL vmlinux 0xbaf22757 kvfree_call_rcu EXPORT_SYMBOL_GPL vmlinux 0xbaf6850c fsnotify_wait_marks_destroyed -EXPORT_SYMBOL_GPL vmlinux 0xbb09057d shake_page EXPORT_SYMBOL_GPL vmlinux 0xbb0ab47b debug_locks -EXPORT_SYMBOL_GPL vmlinux 0xbb107b7f regulator_get_hardware_vsel_register +EXPORT_SYMBOL_GPL vmlinux 0xbb0f441a iptunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0xbb210fc3 rq_flush_dcache_pages EXPORT_SYMBOL_GPL vmlinux 0xbb24f372 __SCK__tp_func_attach_device_to_domain -EXPORT_SYMBOL_GPL vmlinux 0xbb260ed3 __of_phy_provider_register -EXPORT_SYMBOL_GPL vmlinux 0xbb27870d pci_hp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0xbb2e1298 sata_pmp_qc_defer_cmd_switch EXPORT_SYMBOL_GPL vmlinux 0xbb32c978 unregister_kretprobes -EXPORT_SYMBOL_GPL vmlinux 0xbb3551a4 devlink_traps_register -EXPORT_SYMBOL_GPL vmlinux 0xbb597407 fscrypt_ioctl_remove_key +EXPORT_SYMBOL_GPL vmlinux 0xbb4e08e9 phy_speed_down +EXPORT_SYMBOL_GPL vmlinux 0xbb590445 pci_user_write_config_byte EXPORT_SYMBOL_GPL vmlinux 0xbb6a3cbd devlink_fmsg_arr_pair_nest_start +EXPORT_SYMBOL_GPL vmlinux 0xbb6ad3a0 __list_lru_init EXPORT_SYMBOL_GPL vmlinux 0xbb6f025a asymmetric_key_generate_id EXPORT_SYMBOL_GPL vmlinux 0xbb7195a5 xdp_warn -EXPORT_SYMBOL_GPL vmlinux 0xbb7262d2 tty_buffer_set_limit -EXPORT_SYMBOL_GPL vmlinux 0xbb79bd9e devm_create_dev_dax -EXPORT_SYMBOL_GPL vmlinux 0xbb92c42e perf_event_create_kernel_counter -EXPORT_SYMBOL_GPL vmlinux 0xbb9a947c scsi_host_complete_all_commands -EXPORT_SYMBOL_GPL vmlinux 0xbb9bc4d5 scsi_host_unblock -EXPORT_SYMBOL_GPL vmlinux 0xbba01a5c adp5520_read -EXPORT_SYMBOL_GPL vmlinux 0xbbabdd31 virtqueue_notify -EXPORT_SYMBOL_GPL vmlinux 0xbbbeff18 serial8250_rpm_put_tx -EXPORT_SYMBOL_GPL vmlinux 0xbbe08251 rio_mport_read_config_16 -EXPORT_SYMBOL_GPL vmlinux 0xbbe2f5ff crypto_alloc_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xbb8135e6 platform_unregister_drivers +EXPORT_SYMBOL_GPL vmlinux 0xbb8c4fc4 __of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0xbb911c9f skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0xbba30668 inet_csk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0xbbc1ce88 devm_init_badblocks +EXPORT_SYMBOL_GPL vmlinux 0xbbc77009 led_trigger_register_simple +EXPORT_SYMBOL_GPL vmlinux 0xbbccdafc __pm_stay_awake EXPORT_SYMBOL_GPL vmlinux 0xbbe56404 sprint_OID +EXPORT_SYMBOL_GPL vmlinux 0xbbe5d198 extcon_get_extcon_dev EXPORT_SYMBOL_GPL vmlinux 0xbbebf3cf vas_unregister_api_powernv EXPORT_SYMBOL_GPL vmlinux 0xbbf4dfbe phy_basic_t1_features -EXPORT_SYMBOL_GPL vmlinux 0xbc381f4c __mmu_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0xbc3c2deb seg6_do_srh_encap +EXPORT_SYMBOL_GPL vmlinux 0xbbf9784d pci_test_config_bits +EXPORT_SYMBOL_GPL vmlinux 0xbc2a55ea phy_modify_mmd_changed +EXPORT_SYMBOL_GPL vmlinux 0xbc2baaa0 register_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xbc3a052d devm_hwspin_lock_register EXPORT_SYMBOL_GPL vmlinux 0xbc3f2cb0 timecounter_cyc2time -EXPORT_SYMBOL_GPL vmlinux 0xbc4404ce css_next_descendant_pre -EXPORT_SYMBOL_GPL vmlinux 0xbc5b464c ata_sff_qc_fill_rtf -EXPORT_SYMBOL_GPL vmlinux 0xbc6b46fa of_get_pci_domain_nr +EXPORT_SYMBOL_GPL vmlinux 0xbc402273 vfs_cancel_lock +EXPORT_SYMBOL_GPL vmlinux 0xbc469bd2 scsi_check_sense +EXPORT_SYMBOL_GPL vmlinux 0xbc5eb365 ata_bmdma_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xbc663158 power_supply_get_by_name EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0xbc6e664a md_rdev_init -EXPORT_SYMBOL_GPL vmlinux 0xbc6f63cd key_type_logon -EXPORT_SYMBOL_GPL vmlinux 0xbc85b209 dequeue_signal -EXPORT_SYMBOL_GPL vmlinux 0xbc8b2778 xdp_rxq_info_is_reg -EXPORT_SYMBOL_GPL vmlinux 0xbc9346fa hrtimer_sleeper_start_expires -EXPORT_SYMBOL_GPL vmlinux 0xbc94281a __devm_reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0xbc95ca04 iommu_attach_group -EXPORT_SYMBOL_GPL vmlinux 0xbcaa9671 key_set_timeout -EXPORT_SYMBOL_GPL vmlinux 0xbcab4b72 of_gen_pool_get -EXPORT_SYMBOL_GPL vmlinux 0xbcb194c9 of_irq_get -EXPORT_SYMBOL_GPL vmlinux 0xbcbba2f3 fsstack_copy_inode_size -EXPORT_SYMBOL_GPL vmlinux 0xbcbe0d31 cpufreq_generic_init +EXPORT_SYMBOL_GPL vmlinux 0xbc6f164a dev_pm_domain_attach_by_id +EXPORT_SYMBOL_GPL vmlinux 0xbc75cb05 usb_role_switch_find_by_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xbc9741e4 scsi_dh_activate +EXPORT_SYMBOL_GPL vmlinux 0xbcbc406d thermal_zone_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbcbcaab8 ehci_resume EXPORT_SYMBOL_GPL vmlinux 0xbcc15e75 ktime_get_coarse_with_offset +EXPORT_SYMBOL_GPL vmlinux 0xbcc50fc8 hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0xbccc65ff hwspin_lock_get_id EXPORT_SYMBOL_GPL vmlinux 0xbccfd4d8 register_oldmem_pfn_is_ram -EXPORT_SYMBOL_GPL vmlinux 0xbcd03079 get_user_pages_fast_only -EXPORT_SYMBOL_GPL vmlinux 0xbcd2f727 __irq_alloc_domain_generic_chips +EXPORT_SYMBOL_GPL vmlinux 0xbcd09bb7 fsverity_file_open EXPORT_SYMBOL_GPL vmlinux 0xbcdd5b99 iommu_group_set_name EXPORT_SYMBOL_GPL vmlinux 0xbcf1f0e6 zs_create_pool -EXPORT_SYMBOL_GPL vmlinux 0xbd0567cd rio_set_port_lockout -EXPORT_SYMBOL_GPL vmlinux 0xbd061f70 pci_epc_start -EXPORT_SYMBOL_GPL vmlinux 0xbd0e99cc ehci_resume +EXPORT_SYMBOL_GPL vmlinux 0xbd0d6e8e nvmem_cell_get +EXPORT_SYMBOL_GPL vmlinux 0xbd11e92a metadata_dst_alloc EXPORT_SYMBOL_GPL vmlinux 0xbd2d8f02 klist_add_tail -EXPORT_SYMBOL_GPL vmlinux 0xbd3fc4ad crypto_stats_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0xbd318594 of_clk_src_onecell_get +EXPORT_SYMBOL_GPL vmlinux 0xbd3703f1 tps6586x_write EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq -EXPORT_SYMBOL_GPL vmlinux 0xbd4f2575 component_master_add_with_match -EXPORT_SYMBOL_GPL vmlinux 0xbd535135 stmpe811_adc_common_init -EXPORT_SYMBOL_GPL vmlinux 0xbd54e307 cpufreq_cpu_get +EXPORT_SYMBOL_GPL vmlinux 0xbd4430e7 __phy_modify_mmd_changed EXPORT_SYMBOL_GPL vmlinux 0xbd5704ec __tracepoint_xdp_bulk_tx -EXPORT_SYMBOL_GPL vmlinux 0xbd6cae0b devlink_params_unpublish -EXPORT_SYMBOL_GPL vmlinux 0xbd78ad70 to_software_node EXPORT_SYMBOL_GPL vmlinux 0xbd7aaaee add_memory -EXPORT_SYMBOL_GPL vmlinux 0xbd920d69 pinctrl_pm_select_default_state -EXPORT_SYMBOL_GPL vmlinux 0xbd98f1c1 ip6_datagram_recv_ctl -EXPORT_SYMBOL_GPL vmlinux 0xbd9d7eaf eventfd_fget -EXPORT_SYMBOL_GPL vmlinux 0xbdb1e184 iommu_add_device +EXPORT_SYMBOL_GPL vmlinux 0xbd85f9ba devres_release_group +EXPORT_SYMBOL_GPL vmlinux 0xbd88a075 ata_sas_tport_add +EXPORT_SYMBOL_GPL vmlinux 0xbd932b2e sched_trace_rq_avg_rt +EXPORT_SYMBOL_GPL vmlinux 0xbd99d12f vfs_getxattr_alloc +EXPORT_SYMBOL_GPL vmlinux 0xbd9ce322 ata_sas_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0xbd9e1a72 fwnode_property_present +EXPORT_SYMBOL_GPL vmlinux 0xbda08466 of_reconfig_get_state_change EXPORT_SYMBOL_GPL vmlinux 0xbdb72342 __tracepoint_devlink_hwmsg -EXPORT_SYMBOL_GPL vmlinux 0xbdbc4935 pci_epc_get_msi -EXPORT_SYMBOL_GPL vmlinux 0xbdbe2f5c tcp_get_syncookie_mss -EXPORT_SYMBOL_GPL vmlinux 0xbdbf38f8 proc_create_net_data_write -EXPORT_SYMBOL_GPL vmlinux 0xbdc983b5 dev_pm_opp_get_level -EXPORT_SYMBOL_GPL vmlinux 0xbdcd6603 regulator_force_disable -EXPORT_SYMBOL_GPL vmlinux 0xbdce69f3 of_dma_router_register -EXPORT_SYMBOL_GPL vmlinux 0xbdda1cae kvmppc_invalidate_hpte -EXPORT_SYMBOL_GPL vmlinux 0xbde8761c extcon_set_state +EXPORT_SYMBOL_GPL vmlinux 0xbdb97e99 blk_steal_bios +EXPORT_SYMBOL_GPL vmlinux 0xbdc2c63c devm_pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0xbdd761a5 inet_ctl_sock_create +EXPORT_SYMBOL_GPL vmlinux 0xbde28905 vfio_pci_core_close_device +EXPORT_SYMBOL_GPL vmlinux 0xbde4cbc3 __put_task_struct +EXPORT_SYMBOL_GPL vmlinux 0xbde9e067 blk_revalidate_disk_zones +EXPORT_SYMBOL_GPL vmlinux 0xbdebcb5b md_do_sync EXPORT_SYMBOL_GPL vmlinux 0xbdefb8fb __srcu_read_lock -EXPORT_SYMBOL_GPL vmlinux 0xbdf35a56 genphy_c45_pma_read_abilities -EXPORT_SYMBOL_GPL vmlinux 0xbe0e2e22 eeh_pe_inject_err -EXPORT_SYMBOL_GPL vmlinux 0xbe10d77f pin_user_pages_fast_only -EXPORT_SYMBOL_GPL vmlinux 0xbe229416 dm_get_md -EXPORT_SYMBOL_GPL vmlinux 0xbe24e689 dev_pm_opp_remove_table -EXPORT_SYMBOL_GPL vmlinux 0xbe27c5c6 pci_user_read_config_dword -EXPORT_SYMBOL_GPL vmlinux 0xbe40359f sata_pmp_port_ops -EXPORT_SYMBOL_GPL vmlinux 0xbe524428 device_bind_driver -EXPORT_SYMBOL_GPL vmlinux 0xbe576dea debugfs_attr_read -EXPORT_SYMBOL_GPL vmlinux 0xbe58a2bc blk_crypto_evict_key -EXPORT_SYMBOL_GPL vmlinux 0xbe5ac4f2 rio_map_inb_region -EXPORT_SYMBOL_GPL vmlinux 0xbe677a25 skb_morph +EXPORT_SYMBOL_GPL vmlinux 0xbdf57ec0 of_irq_to_resource +EXPORT_SYMBOL_GPL vmlinux 0xbdfd23be pci_dev_unlock +EXPORT_SYMBOL_GPL vmlinux 0xbdfdc3b6 __xdp_build_skb_from_frame +EXPORT_SYMBOL_GPL vmlinux 0xbe068f5b stmpe_set_altfunc +EXPORT_SYMBOL_GPL vmlinux 0xbe0e72a1 ata_scsi_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0xbe207cd5 sk_psock_msg_verdict +EXPORT_SYMBOL_GPL vmlinux 0xbe2a9aaa device_del +EXPORT_SYMBOL_GPL vmlinux 0xbe4e7000 debugfs_create_x32 +EXPORT_SYMBOL_GPL vmlinux 0xbe62f5f9 ata_std_postreset EXPORT_SYMBOL_GPL vmlinux 0xbe687e88 wake_up_all_idle_cpus -EXPORT_SYMBOL_GPL vmlinux 0xbe68bc45 spi_async_locked +EXPORT_SYMBOL_GPL vmlinux 0xbe7603ef __ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0xbe7e5f93 kvmppc_h_clear_mod +EXPORT_SYMBOL_GPL vmlinux 0xbe7fbfa0 platform_irq_count +EXPORT_SYMBOL_GPL vmlinux 0xbe824e9b vfio_register_iommu_driver EXPORT_SYMBOL_GPL vmlinux 0xbe96dfd8 of_reconfig_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbe97e219 devlink_is_reload_failed +EXPORT_SYMBOL_GPL vmlinux 0xbe995de9 xfrm_dev_state_add EXPORT_SYMBOL_GPL vmlinux 0xbe9a83d5 dw_pcie_write -EXPORT_SYMBOL_GPL vmlinux 0xbe9d0269 nvdimm_pmem_region_create -EXPORT_SYMBOL_GPL vmlinux 0xbe9f6d98 regulator_set_current_limit -EXPORT_SYMBOL_GPL vmlinux 0xbea05bf6 iomap_bmap +EXPORT_SYMBOL_GPL vmlinux 0xbe9ab708 irqchip_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0xbea4130d eventfd_ctx_fileget EXPORT_SYMBOL_GPL vmlinux 0xbea5ff1e static_key_initialized EXPORT_SYMBOL_GPL vmlinux 0xbea63e77 klist_iter_init_node -EXPORT_SYMBOL_GPL vmlinux 0xbeaf2aee blk_mq_rdma_map_queues -EXPORT_SYMBOL_GPL vmlinux 0xbeb6a73d handle_untracked_irq -EXPORT_SYMBOL_GPL vmlinux 0xbeb70df8 devm_clk_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0xbeb96809 crypto_stats_decompress -EXPORT_SYMBOL_GPL vmlinux 0xbec08953 irq_domain_add_legacy -EXPORT_SYMBOL_GPL vmlinux 0xbec4a724 usb_unlocked_disable_lpm -EXPORT_SYMBOL_GPL vmlinux 0xbee2a706 iommu_fwspec_free -EXPORT_SYMBOL_GPL vmlinux 0xbef46875 cpufreq_dbs_governor_start -EXPORT_SYMBOL_GPL vmlinux 0xbef995c9 __reset_control_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0xbeab1c3e gpiochip_get_data +EXPORT_SYMBOL_GPL vmlinux 0xbeaf631d ata_host_alloc +EXPORT_SYMBOL_GPL vmlinux 0xbebdd16d __traceiter_br_fdb_update +EXPORT_SYMBOL_GPL vmlinux 0xbed4b1ec bpf_trace_run6 +EXPORT_SYMBOL_GPL vmlinux 0xbedbddeb debugfs_create_blob +EXPORT_SYMBOL_GPL vmlinux 0xbee91990 virtqueue_get_vring +EXPORT_SYMBOL_GPL vmlinux 0xbef7f2b5 tpm_chip_stop +EXPORT_SYMBOL_GPL vmlinux 0xbf02c284 crypto_aead_setkey EXPORT_SYMBOL_GPL vmlinux 0xbf041102 register_vt_notifier -EXPORT_SYMBOL_GPL vmlinux 0xbf07a630 led_blink_set EXPORT_SYMBOL_GPL vmlinux 0xbf1cc04b tty_termios_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0xbf2b7a43 uart_console_device EXPORT_SYMBOL_GPL vmlinux 0xbf314b6a rhashtable_insert_slow -EXPORT_SYMBOL_GPL vmlinux 0xbf5e8b8a pm_generic_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0xbf65c8fe power_supply_get_property -EXPORT_SYMBOL_GPL vmlinux 0xbf71e174 platform_unregister_drivers +EXPORT_SYMBOL_GPL vmlinux 0xbf3427fc nexthop_for_each_fib6_nh +EXPORT_SYMBOL_GPL vmlinux 0xbf34a45f regulator_allow_bypass +EXPORT_SYMBOL_GPL vmlinux 0xbf4b84e3 sk_setup_caps +EXPORT_SYMBOL_GPL vmlinux 0xbf547a50 device_remove_file +EXPORT_SYMBOL_GPL vmlinux 0xbf56187d ata_sff_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xbf585434 genphy_c45_aneg_done +EXPORT_SYMBOL_GPL vmlinux 0xbf5baf98 event_triggers_post_call +EXPORT_SYMBOL_GPL vmlinux 0xbf696d07 crypto_inst_setname +EXPORT_SYMBOL_GPL vmlinux 0xbf721688 devm_request_free_mem_region EXPORT_SYMBOL_GPL vmlinux 0xbf75292e mutex_lock_io -EXPORT_SYMBOL_GPL vmlinux 0xbf8422a7 __ata_change_queue_depth -EXPORT_SYMBOL_GPL vmlinux 0xbf9e7714 __traceiter_neigh_event_send_done -EXPORT_SYMBOL_GPL vmlinux 0xbf9ead6c kvmppc_inject_interrupt_hv -EXPORT_SYMBOL_GPL vmlinux 0xbfb278f7 gpiochip_irqchip_irq_valid +EXPORT_SYMBOL_GPL vmlinux 0xbf97b9ce sysfs_merge_group +EXPORT_SYMBOL_GPL vmlinux 0xbfa09389 pci_enable_rom +EXPORT_SYMBOL_GPL vmlinux 0xbfa09bf2 ip6_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xbfb5d78e nf_queue_nf_hook_drop EXPORT_SYMBOL_GPL vmlinux 0xbfbc5434 pciserial_resume_ports -EXPORT_SYMBOL_GPL vmlinux 0xbfca1e0a usb_reset_endpoint -EXPORT_SYMBOL_GPL vmlinux 0xbfd3292e pm_genpd_remove_device -EXPORT_SYMBOL_GPL vmlinux 0xbfd475f1 kern_mount EXPORT_SYMBOL_GPL vmlinux 0xbfd4f9a4 iommu_flush_tce +EXPORT_SYMBOL_GPL vmlinux 0xbfe032f7 create_signature EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control -EXPORT_SYMBOL_GPL vmlinux 0xbfe99e14 tps6586x_clr_bits -EXPORT_SYMBOL_GPL vmlinux 0xc002bacf balloon_page_dequeue -EXPORT_SYMBOL_GPL vmlinux 0xc003c540 trace_event_buffer_reserve -EXPORT_SYMBOL_GPL vmlinux 0xc00cb9a9 tcf_dev_queue_xmit -EXPORT_SYMBOL_GPL vmlinux 0xc0109347 blk_ksm_reprogram_all_keys -EXPORT_SYMBOL_GPL vmlinux 0xc01f14d5 ata_pci_device_resume -EXPORT_SYMBOL_GPL vmlinux 0xc0299a0c thermal_zone_bind_cooling_device -EXPORT_SYMBOL_GPL vmlinux 0xc039d6f3 regulator_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0xc058d2c0 fscrypt_prepare_symlink -EXPORT_SYMBOL_GPL vmlinux 0xc05a0d4f fixed_phy_register -EXPORT_SYMBOL_GPL vmlinux 0xc0612ab4 skb_to_sgvec +EXPORT_SYMBOL_GPL vmlinux 0xbfeb7528 dmaengine_desc_attach_metadata +EXPORT_SYMBOL_GPL vmlinux 0xbff84b44 remove_phb_dynamic +EXPORT_SYMBOL_GPL vmlinux 0xbffa4d30 gpiochip_populate_parent_fwspec_fourcell +EXPORT_SYMBOL_GPL vmlinux 0xc00dfcf6 spi_async_locked +EXPORT_SYMBOL_GPL vmlinux 0xc0348f95 dev_coredumpm +EXPORT_SYMBOL_GPL vmlinux 0xc034fddb unix_peer_get +EXPORT_SYMBOL_GPL vmlinux 0xc0391770 rio_enable_rx_tx_port +EXPORT_SYMBOL_GPL vmlinux 0xc03c1a22 pm_generic_restore +EXPORT_SYMBOL_GPL vmlinux 0xc0413464 cpufreq_register_governor +EXPORT_SYMBOL_GPL vmlinux 0xc0448e33 ata_pci_bmdma_init_one +EXPORT_SYMBOL_GPL vmlinux 0xc046f386 spi_mem_poll_status EXPORT_SYMBOL_GPL vmlinux 0xc06198b1 hrtimer_start_range_ns EXPORT_SYMBOL_GPL vmlinux 0xc065a455 cpu_core_index_of_thread -EXPORT_SYMBOL_GPL vmlinux 0xc06a1ecf pci_pasid_features -EXPORT_SYMBOL_GPL vmlinux 0xc078b8a8 pci_generic_config_write +EXPORT_SYMBOL_GPL vmlinux 0xc0670187 clk_hw_rate_is_protected +EXPORT_SYMBOL_GPL vmlinux 0xc06ea702 edac_get_sysfs_subsys +EXPORT_SYMBOL_GPL vmlinux 0xc07007a2 dma_buf_mmap +EXPORT_SYMBOL_GPL vmlinux 0xc08110fd devm_reset_control_array_get EXPORT_SYMBOL_GPL vmlinux 0xc090c376 net_selftest_get_strings -EXPORT_SYMBOL_GPL vmlinux 0xc093e2ba device_move -EXPORT_SYMBOL_GPL vmlinux 0xc09729d6 agp_remove_bridge +EXPORT_SYMBOL_GPL vmlinux 0xc094d4d8 pci_rescan_bus +EXPORT_SYMBOL_GPL vmlinux 0xc0966286 hvc_instantiate EXPORT_SYMBOL_GPL vmlinux 0xc0a96e14 rcu_gp_is_expedited -EXPORT_SYMBOL_GPL vmlinux 0xc0ad0b9d wakeup_source_destroy +EXPORT_SYMBOL_GPL vmlinux 0xc0aa3ef9 tty_put_char +EXPORT_SYMBOL_GPL vmlinux 0xc0afb4dd genphy_c45_an_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0xc0c958bf umd_load_blob +EXPORT_SYMBOL_GPL vmlinux 0xc0cea5d1 pci_ats_supported +EXPORT_SYMBOL_GPL vmlinux 0xc0d5c8de file_ra_state_init EXPORT_SYMBOL_GPL vmlinux 0xc0dcb59e edac_layer_name -EXPORT_SYMBOL_GPL vmlinux 0xc0e3efe7 pinconf_generic_parse_dt_config +EXPORT_SYMBOL_GPL vmlinux 0xc0eea227 sysfs_update_group EXPORT_SYMBOL_GPL vmlinux 0xc0f0458a ip_tunnel_unneed_metadata -EXPORT_SYMBOL_GPL vmlinux 0xc0fa5927 devm_device_add_groups +EXPORT_SYMBOL_GPL vmlinux 0xc0fb51ed iommu_uapi_sva_unbind_gpasid EXPORT_SYMBOL_GPL vmlinux 0xc1086e0c sysrq_toggle_support -EXPORT_SYMBOL_GPL vmlinux 0xc108ff4c sk_msg_return +EXPORT_SYMBOL_GPL vmlinux 0xc108e022 flush_altivec_to_thread EXPORT_SYMBOL_GPL vmlinux 0xc10fddb8 name_to_dev_t -EXPORT_SYMBOL_GPL vmlinux 0xc13271b8 __pm_relax -EXPORT_SYMBOL_GPL vmlinux 0xc15880f7 pci_iomap_wc -EXPORT_SYMBOL_GPL vmlinux 0xc15c9752 fuse_request_end +EXPORT_SYMBOL_GPL vmlinux 0xc11e918a phy_modify_changed +EXPORT_SYMBOL_GPL vmlinux 0xc11fc88c perf_event_sysfs_show +EXPORT_SYMBOL_GPL vmlinux 0xc132de96 led_init_core +EXPORT_SYMBOL_GPL vmlinux 0xc15f22b9 nvmem_cell_read_u16 EXPORT_SYMBOL_GPL vmlinux 0xc1743430 cpuidle_disable_device EXPORT_SYMBOL_GPL vmlinux 0xc17515d7 usb_hcds_loaded -EXPORT_SYMBOL_GPL vmlinux 0xc1757d52 regulator_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0xc17a9417 devfreq_event_enable_edev -EXPORT_SYMBOL_GPL vmlinux 0xc1a0116a hwmon_notify_event -EXPORT_SYMBOL_GPL vmlinux 0xc1ac75d3 mm_iommu_newdev -EXPORT_SYMBOL_GPL vmlinux 0xc1bd3bbc regulator_map_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0xc17bb373 crypto_stats_init +EXPORT_SYMBOL_GPL vmlinux 0xc181df38 kstrdup_quotable_file +EXPORT_SYMBOL_GPL vmlinux 0xc1a0e276 clk_hw_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc1a3e6a8 posix_acl_default_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0xc1ab673e irq_domain_associate_many EXPORT_SYMBOL_GPL vmlinux 0xc1d989c5 vfio_external_check_extension +EXPORT_SYMBOL_GPL vmlinux 0xc1db5944 virtqueue_add_inbuf EXPORT_SYMBOL_GPL vmlinux 0xc1ed9c89 cpu_latency_qos_add_request -EXPORT_SYMBOL_GPL vmlinux 0xc20085f6 pm_generic_poweroff EXPORT_SYMBOL_GPL vmlinux 0xc205529e sbitmap_queue_clear +EXPORT_SYMBOL_GPL vmlinux 0xc20f0628 device_rename +EXPORT_SYMBOL_GPL vmlinux 0xc2115434 driver_register EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases -EXPORT_SYMBOL_GPL vmlinux 0xc22b1eef md_allow_write -EXPORT_SYMBOL_GPL vmlinux 0xc22cfd84 __traceiter_devlink_hwerr -EXPORT_SYMBOL_GPL vmlinux 0xc2486bb0 xfrm_audit_state_delete -EXPORT_SYMBOL_GPL vmlinux 0xc24dd264 sock_diag_register_inet_compat -EXPORT_SYMBOL_GPL vmlinux 0xc24f1ec7 eeh_pe_state_mark -EXPORT_SYMBOL_GPL vmlinux 0xc258a378 alarmtimer_get_rtcdev +EXPORT_SYMBOL_GPL vmlinux 0xc23b7dc7 trace_event_buffer_reserve +EXPORT_SYMBOL_GPL vmlinux 0xc240d144 thermal_zone_device_register +EXPORT_SYMBOL_GPL vmlinux 0xc241b8bd phy_create EXPORT_SYMBOL_GPL vmlinux 0xc2692173 wakeup_sources_read_lock +EXPORT_SYMBOL_GPL vmlinux 0xc27370f9 devm_watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0xc27c9b19 em_dev_unregister_perf_domain +EXPORT_SYMBOL_GPL vmlinux 0xc2863362 ncsi_stop_dev EXPORT_SYMBOL_GPL vmlinux 0xc289e46d cpufreq_generic_frequency_table_verify -EXPORT_SYMBOL_GPL vmlinux 0xc28bbeef bio_trim -EXPORT_SYMBOL_GPL vmlinux 0xc29bc601 filemap_range_needs_writeback +EXPORT_SYMBOL_GPL vmlinux 0xc28f67ec pm_relax +EXPORT_SYMBOL_GPL vmlinux 0xc298d9b1 nd_blk_region_provider_data EXPORT_SYMBOL_GPL vmlinux 0xc2a1cbaf __cpuhp_state_remove_instance +EXPORT_SYMBOL_GPL vmlinux 0xc2a62101 screen_pos EXPORT_SYMBOL_GPL vmlinux 0xc2a814db tcp_memory_pressure -EXPORT_SYMBOL_GPL vmlinux 0xc2a83aa5 platform_get_irq_byname_optional -EXPORT_SYMBOL_GPL vmlinux 0xc2ac97dc dev_pm_domain_attach +EXPORT_SYMBOL_GPL vmlinux 0xc2b2405e skb_cow_data EXPORT_SYMBOL_GPL vmlinux 0xc2b9773a __tracepoint_neigh_update_done +EXPORT_SYMBOL_GPL vmlinux 0xc2bc5144 fat_truncate_time EXPORT_SYMBOL_GPL vmlinux 0xc2c1c427 perf_event_cgrp_subsys_on_dfl_key EXPORT_SYMBOL_GPL vmlinux 0xc2c275ff opal_poll_events -EXPORT_SYMBOL_GPL vmlinux 0xc3022402 genphy_c45_check_and_restart_aneg -EXPORT_SYMBOL_GPL vmlinux 0xc308f96c pci_user_read_config_byte -EXPORT_SYMBOL_GPL vmlinux 0xc3216c8b usb_hcd_platform_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xc33b3bfc perf_trace_run_bpf_submit +EXPORT_SYMBOL_GPL vmlinux 0xc2dbd881 bpf_prog_create +EXPORT_SYMBOL_GPL vmlinux 0xc2e33ddb nvdimm_volatile_region_create +EXPORT_SYMBOL_GPL vmlinux 0xc2f9ecf4 kthread_queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0xc30e6f79 dax_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0xc30f4c81 strp_check_rcv +EXPORT_SYMBOL_GPL vmlinux 0xc3106c0b rio_local_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0xc330e6c2 devlink_dpipe_entry_ctx_append +EXPORT_SYMBOL_GPL vmlinux 0xc33ceeb2 devm_remove_action +EXPORT_SYMBOL_GPL vmlinux 0xc33ff35b i2c_probe_func_quick_read EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object -EXPORT_SYMBOL_GPL vmlinux 0xc350eb4f pci_epc_mem_alloc_addr -EXPORT_SYMBOL_GPL vmlinux 0xc3596e82 devm_thermal_of_cooling_device_register -EXPORT_SYMBOL_GPL vmlinux 0xc3612c61 policy_has_boost_freq +EXPORT_SYMBOL_GPL vmlinux 0xc3436b68 ip6_sk_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0xc346ddc8 trace_array_put +EXPORT_SYMBOL_GPL vmlinux 0xc349e5a8 irq_chip_unmask_parent +EXPORT_SYMBOL_GPL vmlinux 0xc352da47 pci_device_is_present +EXPORT_SYMBOL_GPL vmlinux 0xc36696b1 crypto_get_default_null_skcipher EXPORT_SYMBOL_GPL vmlinux 0xc3708747 trace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0xc3798f9b nf_ipv6_ops EXPORT_SYMBOL_GPL vmlinux 0xc3805cd1 fs_ftype_to_dtype -EXPORT_SYMBOL_GPL vmlinux 0xc388a5c2 nexthop_find_by_id EXPORT_SYMBOL_GPL vmlinux 0xc3944258 trace_seq_putmem_hex +EXPORT_SYMBOL_GPL vmlinux 0xc3948735 mptcp_pm_get_subflows_max EXPORT_SYMBOL_GPL vmlinux 0xc3955cb0 hrtimer_cancel -EXPORT_SYMBOL_GPL vmlinux 0xc39c0a1e skcipher_walk_done -EXPORT_SYMBOL_GPL vmlinux 0xc39dde75 usb_enable_lpm -EXPORT_SYMBOL_GPL vmlinux 0xc3ab4f12 scsi_dh_activate -EXPORT_SYMBOL_GPL vmlinux 0xc3b0fccd auxiliary_find_device -EXPORT_SYMBOL_GPL vmlinux 0xc3b7ca43 regulator_set_voltage_time -EXPORT_SYMBOL_GPL vmlinux 0xc3b80e49 inode_sb_list_add -EXPORT_SYMBOL_GPL vmlinux 0xc3b9d12f register_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0xc39e5692 irq_chip_eoi_parent +EXPORT_SYMBOL_GPL vmlinux 0xc3b1db43 nvdimm_flush EXPORT_SYMBOL_GPL vmlinux 0xc3c4c6cc hash_algo_name +EXPORT_SYMBOL_GPL vmlinux 0xc3d15f0c mmc_regulator_set_ocr EXPORT_SYMBOL_GPL vmlinux 0xc3de65ff ring_buffer_bytes_cpu EXPORT_SYMBOL_GPL vmlinux 0xc3ea5305 iommu_default_passthrough +EXPORT_SYMBOL_GPL vmlinux 0xc4011b12 cgrp_dfl_root +EXPORT_SYMBOL_GPL vmlinux 0xc40542e3 sync_page_io +EXPORT_SYMBOL_GPL vmlinux 0xc405f062 device_get_match_data EXPORT_SYMBOL_GPL vmlinux 0xc412fdf3 radix__flush_all_lpid -EXPORT_SYMBOL_GPL vmlinux 0xc415f0da pci_cfg_access_trylock +EXPORT_SYMBOL_GPL vmlinux 0xc41edb8c cpci_hp_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0xc41efc37 tc3589x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xc4210907 zap_vma_ptes +EXPORT_SYMBOL_GPL vmlinux 0xc4226ca4 irq_domain_pop_irq EXPORT_SYMBOL_GPL vmlinux 0xc426c51f klp_shadow_free_all EXPORT_SYMBOL_GPL vmlinux 0xc428068d sata_deb_timing_long -EXPORT_SYMBOL_GPL vmlinux 0xc429d587 regcache_sync -EXPORT_SYMBOL_GPL vmlinux 0xc433362d perf_aux_output_begin -EXPORT_SYMBOL_GPL vmlinux 0xc43341d3 tpm2_get_tpm_pt -EXPORT_SYMBOL_GPL vmlinux 0xc43ebbe4 phy_pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0xc42d6fcd max8997_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0xc43e52d6 usb_deregister_dev EXPORT_SYMBOL_GPL vmlinux 0xc454fc7b twl_get_type -EXPORT_SYMBOL_GPL vmlinux 0xc458570d ohci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0xc45621d2 scsi_ioctl_block_when_processing_errors +EXPORT_SYMBOL_GPL vmlinux 0xc45b0e0f security_path_rmdir EXPORT_SYMBOL_GPL vmlinux 0xc45e246f housekeeping_test_cpu EXPORT_SYMBOL_GPL vmlinux 0xc46324f6 dynevent_create -EXPORT_SYMBOL_GPL vmlinux 0xc46459f7 rtnl_put_cacheinfo -EXPORT_SYMBOL_GPL vmlinux 0xc467eb62 adp5520_clr_bits EXPORT_SYMBOL_GPL vmlinux 0xc46b5e00 btree_merge +EXPORT_SYMBOL_GPL vmlinux 0xc46d90f3 sysfs_break_active_protection EXPORT_SYMBOL_GPL vmlinux 0xc471c67a twl4030_audio_disable_resource -EXPORT_SYMBOL_GPL vmlinux 0xc472048c rio_get_comptag +EXPORT_SYMBOL_GPL vmlinux 0xc47b891e pingv6_prot +EXPORT_SYMBOL_GPL vmlinux 0xc482511f cpufreq_freq_attr_scaling_available_freqs +EXPORT_SYMBOL_GPL vmlinux 0xc48a265d thermal_zone_device_enable EXPORT_SYMBOL_GPL vmlinux 0xc48b7ccf ata_mode_string EXPORT_SYMBOL_GPL vmlinux 0xc4913442 vfio_group_put_external_user -EXPORT_SYMBOL_GPL vmlinux 0xc4a0044e dev_pm_enable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xc496c2e1 component_master_add_with_match EXPORT_SYMBOL_GPL vmlinux 0xc4a31146 rdma_cgrp_subsys_on_dfl_key EXPORT_SYMBOL_GPL vmlinux 0xc4a72936 trusted_tpm_send -EXPORT_SYMBOL_GPL vmlinux 0xc4b03f46 sock_prot_inuse_get -EXPORT_SYMBOL_GPL vmlinux 0xc4c2a4d0 cxl_afu_get -EXPORT_SYMBOL_GPL vmlinux 0xc4cad7ed irq_chip_mask_ack_parent -EXPORT_SYMBOL_GPL vmlinux 0xc4d3b676 regmap_mmio_attach_clk -EXPORT_SYMBOL_GPL vmlinux 0xc4d54e46 tty_set_termios +EXPORT_SYMBOL_GPL vmlinux 0xc4b8f43a crypto_register_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xc4cc6ec7 devlink_port_type_clear +EXPORT_SYMBOL_GPL vmlinux 0xc4e292a8 pci_d3cold_enable +EXPORT_SYMBOL_GPL vmlinux 0xc4e62315 acomp_request_free +EXPORT_SYMBOL_GPL vmlinux 0xc4e88782 ipv6_find_tlv EXPORT_SYMBOL_GPL vmlinux 0xc4f0da12 ktime_get_with_offset -EXPORT_SYMBOL_GPL vmlinux 0xc4f6125d crypto_stats_rng_seed -EXPORT_SYMBOL_GPL vmlinux 0xc4fa5c1e pci_store_saved_state -EXPORT_SYMBOL_GPL vmlinux 0xc503bd1b sysfs_create_mount_point -EXPORT_SYMBOL_GPL vmlinux 0xc508dd9f xhci_init_driver -EXPORT_SYMBOL_GPL vmlinux 0xc533045c thermal_of_cooling_device_register -EXPORT_SYMBOL_GPL vmlinux 0xc53acd2c serdev_device_write_flush -EXPORT_SYMBOL_GPL vmlinux 0xc5411dd5 bpf_trace_run8 -EXPORT_SYMBOL_GPL vmlinux 0xc547c340 crypto_alloc_kpp -EXPORT_SYMBOL_GPL vmlinux 0xc55aa734 regulator_set_soft_start_regmap +EXPORT_SYMBOL_GPL vmlinux 0xc4f27000 of_platform_depopulate +EXPORT_SYMBOL_GPL vmlinux 0xc4f6ecf9 sysfs_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0xc502f5ca percpu_down_write +EXPORT_SYMBOL_GPL vmlinux 0xc505e569 rio_lock_device +EXPORT_SYMBOL_GPL vmlinux 0xc5168026 i2c_dw_probe_master +EXPORT_SYMBOL_GPL vmlinux 0xc5222980 thermal_zone_get_zone_by_name +EXPORT_SYMBOL_GPL vmlinux 0xc531c999 dmaengine_unmap_put +EXPORT_SYMBOL_GPL vmlinux 0xc53f27d6 param_ops_bool_enable_only EXPORT_SYMBOL_GPL vmlinux 0xc55ff962 phy_basic_t1_features_array EXPORT_SYMBOL_GPL vmlinux 0xc5604800 clk_set_rate_exclusive -EXPORT_SYMBOL_GPL vmlinux 0xc5640f3a devm_watchdog_register_device -EXPORT_SYMBOL_GPL vmlinux 0xc5664907 dev_pm_qos_remove_notifier -EXPORT_SYMBOL_GPL vmlinux 0xc5672d4b xfrm_audit_state_icvfail +EXPORT_SYMBOL_GPL vmlinux 0xc5610210 ping_close +EXPORT_SYMBOL_GPL vmlinux 0xc564a840 dax_finish_sync_fault EXPORT_SYMBOL_GPL vmlinux 0xc569d8ce __clk_get_name -EXPORT_SYMBOL_GPL vmlinux 0xc56d2ae1 dev_err_probe EXPORT_SYMBOL_GPL vmlinux 0xc575c737 debug_locks_off EXPORT_SYMBOL_GPL vmlinux 0xc5777fca linear_range_get_selector_low_array -EXPORT_SYMBOL_GPL vmlinux 0xc57bfcf9 sysfs_create_bin_file -EXPORT_SYMBOL_GPL vmlinux 0xc58902cb iomap_invalidatepage -EXPORT_SYMBOL_GPL vmlinux 0xc589eaf7 unregister_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0xc584060d vfio_pci_core_init_device EXPORT_SYMBOL_GPL vmlinux 0xc58a3ee6 icc_node_destroy -EXPORT_SYMBOL_GPL vmlinux 0xc58df77d badblocks_show -EXPORT_SYMBOL_GPL vmlinux 0xc593aa1d __class_register -EXPORT_SYMBOL_GPL vmlinux 0xc598a145 fat_free_clusters -EXPORT_SYMBOL_GPL vmlinux 0xc599221c devm_clk_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xc58a9d94 devm_nvmem_device_get +EXPORT_SYMBOL_GPL vmlinux 0xc58ce326 net_ns_type_operations +EXPORT_SYMBOL_GPL vmlinux 0xc593fab9 mmc_crypto_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0xc596c7cc kobject_rename EXPORT_SYMBOL_GPL vmlinux 0xc5a5c678 uart_parse_earlycon -EXPORT_SYMBOL_GPL vmlinux 0xc5ac0493 __audit_inode_child -EXPORT_SYMBOL_GPL vmlinux 0xc5ac4b16 free_vm_area -EXPORT_SYMBOL_GPL vmlinux 0xc5d1f7a8 regulator_get_bypass_regmap -EXPORT_SYMBOL_GPL vmlinux 0xc5e4d8ff devm_ioremap_uc -EXPORT_SYMBOL_GPL vmlinux 0xc5fb1a29 platform_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc5b18a7d mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0xc5b1f6fc gpiod_direction_output +EXPORT_SYMBOL_GPL vmlinux 0xc5b3c8d2 net_selftest +EXPORT_SYMBOL_GPL vmlinux 0xc5b9dce5 blkcg_policy_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc5c95ffd irq_remove_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xc5e12dfa skcipher_walk_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0xc5f7577b kernfs_find_and_get_ns +EXPORT_SYMBOL_GPL vmlinux 0xc6051d10 gen10g_config_aneg EXPORT_SYMBOL_GPL vmlinux 0xc606cd3c boot_cpuid -EXPORT_SYMBOL_GPL vmlinux 0xc610707b pci_epc_set_msix -EXPORT_SYMBOL_GPL vmlinux 0xc6164ebe devm_of_icc_get EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier -EXPORT_SYMBOL_GPL vmlinux 0xc61a59e8 spi_bus_unlock -EXPORT_SYMBOL_GPL vmlinux 0xc61bbae2 switchdev_handle_port_attr_set -EXPORT_SYMBOL_GPL vmlinux 0xc61f7577 handle_bad_irq +EXPORT_SYMBOL_GPL vmlinux 0xc61ada0d vp_modern_get_queue_size +EXPORT_SYMBOL_GPL vmlinux 0xc6295d8c uhci_reset_hc EXPORT_SYMBOL_GPL vmlinux 0xc6299625 rht_bucket_nested_insert -EXPORT_SYMBOL_GPL vmlinux 0xc62e0951 crypto_unregister_alg -EXPORT_SYMBOL_GPL vmlinux 0xc64fc00b cpuidle_register -EXPORT_SYMBOL_GPL vmlinux 0xc65d9767 crypto_stats_aead_decrypt -EXPORT_SYMBOL_GPL vmlinux 0xc65ff790 __fscrypt_inode_uses_inline_crypto +EXPORT_SYMBOL_GPL vmlinux 0xc62ae4e1 skcipher_alloc_instance_simple +EXPORT_SYMBOL_GPL vmlinux 0xc635209f extcon_register_notifier_all +EXPORT_SYMBOL_GPL vmlinux 0xc63d11bb dst_cache_set_ip4 +EXPORT_SYMBOL_GPL vmlinux 0xc6418c56 clk_hw_get_flags +EXPORT_SYMBOL_GPL vmlinux 0xc6435c42 pci_find_ext_capability EXPORT_SYMBOL_GPL vmlinux 0xc662ecda __tracepoint_br_fdb_external_learn_add +EXPORT_SYMBOL_GPL vmlinux 0xc668cb5c sysfs_create_group EXPORT_SYMBOL_GPL vmlinux 0xc66b77b1 iommu_group_set_iommudata EXPORT_SYMBOL_GPL vmlinux 0xc672a391 irq_work_sync EXPORT_SYMBOL_GPL vmlinux 0xc6779093 ring_buffer_record_enable -EXPORT_SYMBOL_GPL vmlinux 0xc67dee3d irq_domain_translate_onecell -EXPORT_SYMBOL_GPL vmlinux 0xc690d3bc regmap_raw_write_async -EXPORT_SYMBOL_GPL vmlinux 0xc693cc66 irq_domain_xlate_onetwocell +EXPORT_SYMBOL_GPL vmlinux 0xc67943d9 bsg_job_put +EXPORT_SYMBOL_GPL vmlinux 0xc67bc365 xdp_master_redirect +EXPORT_SYMBOL_GPL vmlinux 0xc67ec58f usb_set_interface +EXPORT_SYMBOL_GPL vmlinux 0xc684dff0 devm_phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0xc686c3c0 sk_psock_tls_strp_read EXPORT_SYMBOL_GPL vmlinux 0xc697b0f7 nvmem_device_read EXPORT_SYMBOL_GPL vmlinux 0xc69b7ee5 zs_destroy_pool -EXPORT_SYMBOL_GPL vmlinux 0xc69dc43e phy_create_lookup +EXPORT_SYMBOL_GPL vmlinux 0xc69b9acc tpm1_do_selftest EXPORT_SYMBOL_GPL vmlinux 0xc6a4a872 __clk_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0xc6d0d9d6 rio_local_set_device_id -EXPORT_SYMBOL_GPL vmlinux 0xc6d1bcc1 dm_internal_resume_fast -EXPORT_SYMBOL_GPL vmlinux 0xc6e01597 of_irq_to_resource -EXPORT_SYMBOL_GPL vmlinux 0xc6e22b80 devm_gpiod_unhinge +EXPORT_SYMBOL_GPL vmlinux 0xc6a4d52d gpiod_set_consumer_name +EXPORT_SYMBOL_GPL vmlinux 0xc6ab8027 __iomap_dio_rw +EXPORT_SYMBOL_GPL vmlinux 0xc6cf712d udp4_hwcsum +EXPORT_SYMBOL_GPL vmlinux 0xc6d55624 xdp_rxq_info_unreg EXPORT_SYMBOL_GPL vmlinux 0xc6e5bcf3 linear_range_get_selector_within -EXPORT_SYMBOL_GPL vmlinux 0xc6f5dc74 iommu_uapi_cache_invalidate -EXPORT_SYMBOL_GPL vmlinux 0xc6f6bb26 fsnotify_destroy_mark -EXPORT_SYMBOL_GPL vmlinux 0xc6ff6ee2 __device_reset -EXPORT_SYMBOL_GPL vmlinux 0xc70f385e gpiod_get_direction +EXPORT_SYMBOL_GPL vmlinux 0xc6f78d6d regulator_bulk_enable EXPORT_SYMBOL_GPL vmlinux 0xc71e64a9 snmp_get_cpu_field -EXPORT_SYMBOL_GPL vmlinux 0xc7243eb4 nfs_ssc_register -EXPORT_SYMBOL_GPL vmlinux 0xc7261760 relay_reset -EXPORT_SYMBOL_GPL vmlinux 0xc72dc835 devm_phy_optional_get -EXPORT_SYMBOL_GPL vmlinux 0xc761d6a7 mpc8xxx_spi_rx_buf_u8 -EXPORT_SYMBOL_GPL vmlinux 0xc765b726 led_sysfs_disable -EXPORT_SYMBOL_GPL vmlinux 0xc77b3264 dst_cache_set_ip6 -EXPORT_SYMBOL_GPL vmlinux 0xc77e8e26 spi_get_next_queued_message -EXPORT_SYMBOL_GPL vmlinux 0xc77ede5d __spi_register_driver -EXPORT_SYMBOL_GPL vmlinux 0xc79c9e63 irq_chip_get_parent_state +EXPORT_SYMBOL_GPL vmlinux 0xc72873b6 extcon_set_property_capability +EXPORT_SYMBOL_GPL vmlinux 0xc731315b ip_route_output_tunnel +EXPORT_SYMBOL_GPL vmlinux 0xc732df7c dma_free_pages +EXPORT_SYMBOL_GPL vmlinux 0xc737b29e usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0xc740528f __traceiter_neigh_cleanup_and_release +EXPORT_SYMBOL_GPL vmlinux 0xc7417fc5 rio_del_device +EXPORT_SYMBOL_GPL vmlinux 0xc74a11bc smpboot_unregister_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0xc74b8928 bus_set_iommu +EXPORT_SYMBOL_GPL vmlinux 0xc74e3bfa pci_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0xc75d0907 thermal_remove_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0xc76117b4 wwan_create_port +EXPORT_SYMBOL_GPL vmlinux 0xc7659bb7 devlink_param_unpublish +EXPORT_SYMBOL_GPL vmlinux 0xc76ae0e4 nfs_ssc_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc76f8da1 spi_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xc77d6a55 fscrypt_ioctl_remove_key +EXPORT_SYMBOL_GPL vmlinux 0xc782ed68 pci_generic_ecam_ops +EXPORT_SYMBOL_GPL vmlinux 0xc785ef67 mpc8xxx_spi_tx_buf_u32 +EXPORT_SYMBOL_GPL vmlinux 0xc78619a0 devlink_region_snapshot_id_put +EXPORT_SYMBOL_GPL vmlinux 0xc79ea534 get_net_ns_by_fd +EXPORT_SYMBOL_GPL vmlinux 0xc79eea79 devm_hwrng_unregister EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch +EXPORT_SYMBOL_GPL vmlinux 0xc7a7e43f __netpoll_free EXPORT_SYMBOL_GPL vmlinux 0xc7a7e770 clk_bulk_enable -EXPORT_SYMBOL_GPL vmlinux 0xc7af249a bpf_trace_run1 -EXPORT_SYMBOL_GPL vmlinux 0xc7b0cdf0 pinmux_generic_remove_function -EXPORT_SYMBOL_GPL vmlinux 0xc7cb05f1 __bio_try_merge_page +EXPORT_SYMBOL_GPL vmlinux 0xc7b1b49c device_match_name +EXPORT_SYMBOL_GPL vmlinux 0xc7b1d823 spi_mem_supports_op EXPORT_SYMBOL_GPL vmlinux 0xc7e376d4 klist_next EXPORT_SYMBOL_GPL vmlinux 0xc7e64fc2 asn1_encode_integer -EXPORT_SYMBOL_GPL vmlinux 0xc7e8ae90 uart_handle_cts_change +EXPORT_SYMBOL_GPL vmlinux 0xc7ea0827 tty_buffer_request_room EXPORT_SYMBOL_GPL vmlinux 0xc7fa4aa9 kobj_ns_drop -EXPORT_SYMBOL_GPL vmlinux 0xc7ffba72 of_reserved_mem_device_release -EXPORT_SYMBOL_GPL vmlinux 0xc80161f3 netdev_is_rx_handler_busy -EXPORT_SYMBOL_GPL vmlinux 0xc817dafe dma_map_sgtable -EXPORT_SYMBOL_GPL vmlinux 0xc81f5531 sysfs_chmod_file +EXPORT_SYMBOL_GPL vmlinux 0xc81497f8 sock_prot_inuse_add +EXPORT_SYMBOL_GPL vmlinux 0xc81ffa9c clk_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0xc82545ff vfio_pci_core_write +EXPORT_SYMBOL_GPL vmlinux 0xc826cf58 spi_new_device EXPORT_SYMBOL_GPL vmlinux 0xc82b3a88 __SCK__tp_func_rpm_resume EXPORT_SYMBOL_GPL vmlinux 0xc82c721f klist_remove -EXPORT_SYMBOL_GPL vmlinux 0xc832ed80 pci_host_common_probe -EXPORT_SYMBOL_GPL vmlinux 0xc83e4db0 usb_autopm_put_interface_no_suspend -EXPORT_SYMBOL_GPL vmlinux 0xc8445219 pci_disable_rom -EXPORT_SYMBOL_GPL vmlinux 0xc84dbfe7 ata_msleep -EXPORT_SYMBOL_GPL vmlinux 0xc84e9001 ehci_setup -EXPORT_SYMBOL_GPL vmlinux 0xc854bda7 device_remove_file +EXPORT_SYMBOL_GPL vmlinux 0xc832d681 regcache_mark_dirty EXPORT_SYMBOL_GPL vmlinux 0xc8594d3d reset_control_acquire -EXPORT_SYMBOL_GPL vmlinux 0xc87cd861 power_supply_property_is_writeable -EXPORT_SYMBOL_GPL vmlinux 0xc88add3e ata_link_abort -EXPORT_SYMBOL_GPL vmlinux 0xc890408a lwtunnel_encap_add_ops -EXPORT_SYMBOL_GPL vmlinux 0xc896ed7c crypto_ahash_finup -EXPORT_SYMBOL_GPL vmlinux 0xc8989dbb platform_get_irq -EXPORT_SYMBOL_GPL vmlinux 0xc8a4772a vmf_insert_pfn_pmd_prot -EXPORT_SYMBOL_GPL vmlinux 0xc8a64939 dm_device_name -EXPORT_SYMBOL_GPL vmlinux 0xc8acc6bd wait_on_page_writeback_killable -EXPORT_SYMBOL_GPL vmlinux 0xc8bbf84c inet_twsk_hashdance -EXPORT_SYMBOL_GPL vmlinux 0xc8bea82c wwan_create_port -EXPORT_SYMBOL_GPL vmlinux 0xc8c4da5a usb_alloc_streams -EXPORT_SYMBOL_GPL vmlinux 0xc8c7c859 blkcg_policy_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc85bfa81 bpf_preload_ops +EXPORT_SYMBOL_GPL vmlinux 0xc8600535 pci_user_write_config_dword +EXPORT_SYMBOL_GPL vmlinux 0xc861b506 generic_handle_domain_irq +EXPORT_SYMBOL_GPL vmlinux 0xc890fc82 rio_dev_put +EXPORT_SYMBOL_GPL vmlinux 0xc899c05c pm_generic_resume +EXPORT_SYMBOL_GPL vmlinux 0xc8a17509 mm_iommu_lookup +EXPORT_SYMBOL_GPL vmlinux 0xc8b4c51b __traceiter_neigh_update +EXPORT_SYMBOL_GPL vmlinux 0xc8be9fa6 pci_num_vf +EXPORT_SYMBOL_GPL vmlinux 0xc8d78237 noop_backing_dev_info +EXPORT_SYMBOL_GPL vmlinux 0xc8d96698 blk_add_driver_data EXPORT_SYMBOL_GPL vmlinux 0xc8ddd5b5 kstrdup_quotable -EXPORT_SYMBOL_GPL vmlinux 0xc9039671 __fput_sync -EXPORT_SYMBOL_GPL vmlinux 0xc90e419d phy_reset -EXPORT_SYMBOL_GPL vmlinux 0xc913451c pinctrl_select_state -EXPORT_SYMBOL_GPL vmlinux 0xc9149bc5 serdev_device_write_room -EXPORT_SYMBOL_GPL vmlinux 0xc91c5e04 ping_recvmsg -EXPORT_SYMBOL_GPL vmlinux 0xc91ca424 thermal_zone_get_zone_by_name -EXPORT_SYMBOL_GPL vmlinux 0xc91e1259 bus_remove_file +EXPORT_SYMBOL_GPL vmlinux 0xc8e62b7a of_address_to_resource +EXPORT_SYMBOL_GPL vmlinux 0xc8ed135f dev_pm_opp_set_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0xc8fd79ca cgroup_get_from_path EXPORT_SYMBOL_GPL vmlinux 0xc91fdf58 percpu_ref_is_zero -EXPORT_SYMBOL_GPL vmlinux 0xc936713f crypto_alloc_sync_skcipher -EXPORT_SYMBOL_GPL vmlinux 0xc93adac0 dev_pm_opp_get_of_node +EXPORT_SYMBOL_GPL vmlinux 0xc9276e3e dev_get_regmap +EXPORT_SYMBOL_GPL vmlinux 0xc9309d30 crypto_aead_setauthsize +EXPORT_SYMBOL_GPL vmlinux 0xc938516b regmap_reinit_cache +EXPORT_SYMBOL_GPL vmlinux 0xc939e888 phy_create_lookup +EXPORT_SYMBOL_GPL vmlinux 0xc93a548c scsi_host_complete_all_commands EXPORT_SYMBOL_GPL vmlinux 0xc93ee1e7 usb_phy_roothub_init -EXPORT_SYMBOL_GPL vmlinux 0xc94415d0 ata_bmdma_error_handler -EXPORT_SYMBOL_GPL vmlinux 0xc9523a8f soc_device_register -EXPORT_SYMBOL_GPL vmlinux 0xc953bd15 ata_sff_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0xc94a6487 devm_usb_get_phy_by_phandle EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist -EXPORT_SYMBOL_GPL vmlinux 0xc9598cad usb_set_configuration -EXPORT_SYMBOL_GPL vmlinux 0xc9621748 mmc_crypto_setup_queue EXPORT_SYMBOL_GPL vmlinux 0xc9641b48 visitor32 -EXPORT_SYMBOL_GPL vmlinux 0xc9649f93 dev_pm_opp_set_sharing_cpus -EXPORT_SYMBOL_GPL vmlinux 0xc9675ab2 tpm2_probe -EXPORT_SYMBOL_GPL vmlinux 0xc9761dba pm_generic_thaw +EXPORT_SYMBOL_GPL vmlinux 0xc9810960 mmu_notifier_unregister EXPORT_SYMBOL_GPL vmlinux 0xc9827693 __bpf_call_base -EXPORT_SYMBOL_GPL vmlinux 0xc98587fc fscrypt_set_bio_crypt_ctx_bh -EXPORT_SYMBOL_GPL vmlinux 0xc99971e1 sata_link_scr_lpm -EXPORT_SYMBOL_GPL vmlinux 0xc9ac82ec gpiod_direction_input +EXPORT_SYMBOL_GPL vmlinux 0xc9839722 devm_i2c_add_adapter +EXPORT_SYMBOL_GPL vmlinux 0xc9902cd3 console_drivers +EXPORT_SYMBOL_GPL vmlinux 0xc99f5c9c usb_get_status +EXPORT_SYMBOL_GPL vmlinux 0xc9a290d8 vring_create_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0xc9a7603b kvmppc_find_table +EXPORT_SYMBOL_GPL vmlinux 0xc9ac7f7c fb_deferred_io_init +EXPORT_SYMBOL_GPL vmlinux 0xc9b60516 led_trigger_event EXPORT_SYMBOL_GPL vmlinux 0xc9c17e9f start_poll_synchronize_srcu EXPORT_SYMBOL_GPL vmlinux 0xc9c56873 perf_trace_buf_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc9c6050b do_xdp_generic EXPORT_SYMBOL_GPL vmlinux 0xc9c6a27a xive_native_set_queue_state -EXPORT_SYMBOL_GPL vmlinux 0xc9d1038b spi_write_then_read -EXPORT_SYMBOL_GPL vmlinux 0xc9e8d476 __traceiter_attach_device_to_domain EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu -EXPORT_SYMBOL_GPL vmlinux 0xc9edde89 spi_unregister_controller -EXPORT_SYMBOL_GPL vmlinux 0xc9fb6de1 tty_port_tty_hangup +EXPORT_SYMBOL_GPL vmlinux 0xc9f26485 bus_get_device_klist +EXPORT_SYMBOL_GPL vmlinux 0xc9fbf6d0 iommu_register_device_fault_handler EXPORT_SYMBOL_GPL vmlinux 0xc9fd634a usb_role_switch_put -EXPORT_SYMBOL_GPL vmlinux 0xca03541f mptcp_token_iter_next -EXPORT_SYMBOL_GPL vmlinux 0xca121938 __traceiter_neigh_update_done -EXPORT_SYMBOL_GPL vmlinux 0xca203b32 pm_generic_poweroff_late -EXPORT_SYMBOL_GPL vmlinux 0xca2e6fe4 pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0xca1b4ca6 regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xca28e080 desc_to_gpio +EXPORT_SYMBOL_GPL vmlinux 0xca39b263 debugfs_read_file_bool +EXPORT_SYMBOL_GPL vmlinux 0xca431741 of_scan_bus EXPORT_SYMBOL_GPL vmlinux 0xca454a34 vt_get_leds EXPORT_SYMBOL_GPL vmlinux 0xca4b5c51 idr_remove -EXPORT_SYMBOL_GPL vmlinux 0xca685eba serial8250_modem_status +EXPORT_SYMBOL_GPL vmlinux 0xca61ed7f bpf_offload_dev_create +EXPORT_SYMBOL_GPL vmlinux 0xca62c02a pci_epf_type_add_cfs +EXPORT_SYMBOL_GPL vmlinux 0xca645066 __irq_resolve_mapping +EXPORT_SYMBOL_GPL vmlinux 0xca78aa7b find_get_pid +EXPORT_SYMBOL_GPL vmlinux 0xca78cfdd usb_add_phy EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop -EXPORT_SYMBOL_GPL vmlinux 0xca7df6c6 ipv4_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0xca82ee60 of_pci_range_parser_one -EXPORT_SYMBOL_GPL vmlinux 0xca851f31 vfio_iommu_group_get +EXPORT_SYMBOL_GPL vmlinux 0xca80b9fd nd_region_provider_data +EXPORT_SYMBOL_GPL vmlinux 0xca81dbb0 usb_disable_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0xca864f25 tcp_enter_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0xca8d7438 debugfs_create_x64 EXPORT_SYMBOL_GPL vmlinux 0xca94bf41 btree_last -EXPORT_SYMBOL_GPL vmlinux 0xca976379 gpiod_get_index_optional -EXPORT_SYMBOL_GPL vmlinux 0xca998f3b sdio_signal_irq EXPORT_SYMBOL_GPL vmlinux 0xca9a1d5e ring_buffer_free -EXPORT_SYMBOL_GPL vmlinux 0xcaaa19a2 wakeup_source_register EXPORT_SYMBOL_GPL vmlinux 0xcaacedee sbitmap_queue_min_shallow_depth -EXPORT_SYMBOL_GPL vmlinux 0xcabd8a60 __traceiter_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0xcab4486a pm_clk_add EXPORT_SYMBOL_GPL vmlinux 0xcabe04de cpuidle_resume_and_unlock -EXPORT_SYMBOL_GPL vmlinux 0xcace3306 nvdimm_delete -EXPORT_SYMBOL_GPL vmlinux 0xcad335c6 mmc_pwrseq_register -EXPORT_SYMBOL_GPL vmlinux 0xcadab04e ata_sff_thaw +EXPORT_SYMBOL_GPL vmlinux 0xcac8e805 pwm_apply_state +EXPORT_SYMBOL_GPL vmlinux 0xcad486e4 __pm_runtime_disable EXPORT_SYMBOL_GPL vmlinux 0xcadab7df blkg_rwstat_exit -EXPORT_SYMBOL_GPL vmlinux 0xcaee0658 dst_blackhole_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0xcb09dcb9 ata_dev_disable -EXPORT_SYMBOL_GPL vmlinux 0xcb0ca554 devm_rtc_allocate_device +EXPORT_SYMBOL_GPL vmlinux 0xcadcc799 devlink_port_health_reporter_create EXPORT_SYMBOL_GPL vmlinux 0xcb15eee9 sdhci_pci_get_data +EXPORT_SYMBOL_GPL vmlinux 0xcb2659ca pci_disable_sriov EXPORT_SYMBOL_GPL vmlinux 0xcb2bfe2b nvmem_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xcb30d6ec ata_sff_check_status -EXPORT_SYMBOL_GPL vmlinux 0xcb362b53 fsverity_cleanup_inode +EXPORT_SYMBOL_GPL vmlinux 0xcb2d0f6f usb_phy_get_charger_current +EXPORT_SYMBOL_GPL vmlinux 0xcb391a52 regulator_put +EXPORT_SYMBOL_GPL vmlinux 0xcb3a0236 genphy_c45_pma_resume +EXPORT_SYMBOL_GPL vmlinux 0xcb450d0a mmc_send_abort_tuning EXPORT_SYMBOL_GPL vmlinux 0xcb561441 mem_dump_obj -EXPORT_SYMBOL_GPL vmlinux 0xcb64135e dw_pcie_read_dbi -EXPORT_SYMBOL_GPL vmlinux 0xcb78f625 trace_event_raw_init -EXPORT_SYMBOL_GPL vmlinux 0xcb84e3bc wm8350_reg_unlock -EXPORT_SYMBOL_GPL vmlinux 0xcb9030c5 spi_slave_abort -EXPORT_SYMBOL_GPL vmlinux 0xcbadde92 iommu_device_sysfs_add -EXPORT_SYMBOL_GPL vmlinux 0xcbb5851f debugfs_create_u8 -EXPORT_SYMBOL_GPL vmlinux 0xcbd3b670 __traceiter_xdp_bulk_tx -EXPORT_SYMBOL_GPL vmlinux 0xcbe080b0 regulator_get_mode +EXPORT_SYMBOL_GPL vmlinux 0xcb69ccc2 led_stop_software_blink +EXPORT_SYMBOL_GPL vmlinux 0xcb74e74d wm8350_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0xcba146bb irq_domain_add_legacy +EXPORT_SYMBOL_GPL vmlinux 0xcbb25a7a crypto_rng_reset +EXPORT_SYMBOL_GPL vmlinux 0xcbc51dcc led_put +EXPORT_SYMBOL_GPL vmlinux 0xcbd3bbca pinctrl_get_group_pins +EXPORT_SYMBOL_GPL vmlinux 0xcbd4f843 crypto_alloc_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xcbd690a4 pinctrl_pm_select_default_state EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages -EXPORT_SYMBOL_GPL vmlinux 0xcbe66be9 tpm_pcr_read -EXPORT_SYMBOL_GPL vmlinux 0xcbe87c7d regulator_set_voltage_time_sel -EXPORT_SYMBOL_GPL vmlinux 0xcbfb311f rio_mport_class -EXPORT_SYMBOL_GPL vmlinux 0xcc011862 da9052_adc_read_temp -EXPORT_SYMBOL_GPL vmlinux 0xcc028df1 ata_dev_pair +EXPORT_SYMBOL_GPL vmlinux 0xcbf0e77c pci_hp_destroy +EXPORT_SYMBOL_GPL vmlinux 0xcbf2e3fd devm_mbox_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcbf492d3 devm_device_remove_group +EXPORT_SYMBOL_GPL vmlinux 0xcbf6e8a0 led_set_brightness_nopm EXPORT_SYMBOL_GPL vmlinux 0xcc0f1009 power_supply_notifier -EXPORT_SYMBOL_GPL vmlinux 0xcc1d1620 ethnl_cable_test_amplitude +EXPORT_SYMBOL_GPL vmlinux 0xcc2cac77 ata_pci_sff_init_one EXPORT_SYMBOL_GPL vmlinux 0xcc2dbfd8 irq_domain_check_msi_remap -EXPORT_SYMBOL_GPL vmlinux 0xcc318714 free_fib_info EXPORT_SYMBOL_GPL vmlinux 0xcc39c03e nvmem_unregister -EXPORT_SYMBOL_GPL vmlinux 0xcc48583b fscrypt_mergeable_bio_bh -EXPORT_SYMBOL_GPL vmlinux 0xcc4baf87 trace_array_get_by_name -EXPORT_SYMBOL_GPL vmlinux 0xcc4c0e71 spi_setup -EXPORT_SYMBOL_GPL vmlinux 0xcc4d5bc6 make_device_exclusive_range -EXPORT_SYMBOL_GPL vmlinux 0xcc54fdbd param_set_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0xcc39fcc8 irq_chip_get_parent_state +EXPORT_SYMBOL_GPL vmlinux 0xcc3afea1 of_get_required_opp_performance_state +EXPORT_SYMBOL_GPL vmlinux 0xcc6d4e80 kern_mount EXPORT_SYMBOL_GPL vmlinux 0xcc765276 list_lru_walk_node -EXPORT_SYMBOL_GPL vmlinux 0xcc854cb1 umd_load_blob -EXPORT_SYMBOL_GPL vmlinux 0xcc862496 device_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0xcc7cfcc2 pci_epf_create +EXPORT_SYMBOL_GPL vmlinux 0xcc8803ea fat_sync_inode +EXPORT_SYMBOL_GPL vmlinux 0xcc8b30ff devm_of_phy_get_by_index +EXPORT_SYMBOL_GPL vmlinux 0xcc8e1fa8 __skb_get_hash_symmetric EXPORT_SYMBOL_GPL vmlinux 0xcc9268fc hwpoison_filter_enable EXPORT_SYMBOL_GPL vmlinux 0xcc935375 walk_iomem_res_desc -EXPORT_SYMBOL_GPL vmlinux 0xcca51441 devm_device_add_group -EXPORT_SYMBOL_GPL vmlinux 0xcca7cbb6 serial8250_do_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xccc9b372 dma_buf_map_attachment -EXPORT_SYMBOL_GPL vmlinux 0xcccd68e8 nvdimm_flush +EXPORT_SYMBOL_GPL vmlinux 0xcc9e73cf dma_buf_fd +EXPORT_SYMBOL_GPL vmlinux 0xccb337a4 ata_bmdma_port_start32 +EXPORT_SYMBOL_GPL vmlinux 0xccb4a882 add_to_page_cache_lru +EXPORT_SYMBOL_GPL vmlinux 0xcccd3bcc regcache_drop_region EXPORT_SYMBOL_GPL vmlinux 0xcccfb2fa sata_deb_timing_hotplug EXPORT_SYMBOL_GPL vmlinux 0xccd86806 ata_id_string -EXPORT_SYMBOL_GPL vmlinux 0xccdd007c xfrm_audit_policy_delete -EXPORT_SYMBOL_GPL vmlinux 0xcce874bd regulator_set_pull_down_regmap -EXPORT_SYMBOL_GPL vmlinux 0xccf48d27 gpiod_unexport +EXPORT_SYMBOL_GPL vmlinux 0xcce1a886 blk_mq_free_request +EXPORT_SYMBOL_GPL vmlinux 0xcce6b013 regulator_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xcce8ad01 sata_sff_hardreset EXPORT_SYMBOL_GPL vmlinux 0xccf52bc9 sfp_upstream_start -EXPORT_SYMBOL_GPL vmlinux 0xccfa2bf4 ping_seq_next -EXPORT_SYMBOL_GPL vmlinux 0xcd14880d dev_pm_opp_find_freq_exact +EXPORT_SYMBOL_GPL vmlinux 0xccf553c1 gpiochip_generic_request +EXPORT_SYMBOL_GPL vmlinux 0xcd06e781 usb_of_has_combined_node +EXPORT_SYMBOL_GPL vmlinux 0xcd080b7d syscon_regmap_lookup_by_phandle_optional +EXPORT_SYMBOL_GPL vmlinux 0xcd08b13b icc_nodes_remove +EXPORT_SYMBOL_GPL vmlinux 0xcd22ce64 sched_set_fifo_low EXPORT_SYMBOL_GPL vmlinux 0xcd24e146 hash_digest_size -EXPORT_SYMBOL_GPL vmlinux 0xcd28f070 ata_pci_remove_one -EXPORT_SYMBOL_GPL vmlinux 0xcd29e833 debugfs_create_u16 -EXPORT_SYMBOL_GPL vmlinux 0xcd457db3 ata_std_sched_eh +EXPORT_SYMBOL_GPL vmlinux 0xcd291643 vas_rx_win_open +EXPORT_SYMBOL_GPL vmlinux 0xcd344f14 __clk_get_hw +EXPORT_SYMBOL_GPL vmlinux 0xcd3c5bc8 watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0xcd3e8ee4 __udp_enqueue_schedule_skb +EXPORT_SYMBOL_GPL vmlinux 0xcd64b6b6 usb_sg_cancel EXPORT_SYMBOL_GPL vmlinux 0xcd6f2dc9 nf_log_buf_add -EXPORT_SYMBOL_GPL vmlinux 0xcd863b8b mbox_client_txdone -EXPORT_SYMBOL_GPL vmlinux 0xcd8a26bf uart_console_device +EXPORT_SYMBOL_GPL vmlinux 0xcd91443d tps6586x_irq_get_virq 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 0xcdb4616d regmap_get_device EXPORT_SYMBOL_GPL vmlinux 0xcdb6adcc ras_userspace_consumers -EXPORT_SYMBOL_GPL vmlinux 0xcdc88528 regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xcdbeb9e3 __irq_alloc_domain_generic_chips EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs -EXPORT_SYMBOL_GPL vmlinux 0xcdcd85a4 ncsi_stop_dev +EXPORT_SYMBOL_GPL vmlinux 0xcdcaabfd devlink_flash_update_timeout_notify EXPORT_SYMBOL_GPL vmlinux 0xcdd1a841 xive_tima -EXPORT_SYMBOL_GPL vmlinux 0xcde38025 dev_pm_put_subsys_data -EXPORT_SYMBOL_GPL vmlinux 0xcde926d3 wait_on_page_writeback -EXPORT_SYMBOL_GPL vmlinux 0xce1c6fc7 unregister_virtio_device -EXPORT_SYMBOL_GPL vmlinux 0xce1e28f7 iommu_capable -EXPORT_SYMBOL_GPL vmlinux 0xce2c2634 fib_nexthop_info -EXPORT_SYMBOL_GPL vmlinux 0xce370d07 irq_chip_set_type_parent -EXPORT_SYMBOL_GPL vmlinux 0xce3df648 usb_unpoison_urb -EXPORT_SYMBOL_GPL vmlinux 0xce40ae64 sk_detach_filter +EXPORT_SYMBOL_GPL vmlinux 0xcdff81e6 fwnode_graph_get_endpoint_by_id +EXPORT_SYMBOL_GPL vmlinux 0xce16a874 nf_checksum_partial +EXPORT_SYMBOL_GPL vmlinux 0xce1a3daa ata_sff_busy_sleep +EXPORT_SYMBOL_GPL vmlinux 0xce28d463 sdio_f0_writeb +EXPORT_SYMBOL_GPL vmlinux 0xce43ad8f ata_sff_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0xce561941 vp_modern_get_queue_enable EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching -EXPORT_SYMBOL_GPL vmlinux 0xce83388d crypto_register_alg +EXPORT_SYMBOL_GPL vmlinux 0xce6dd952 ethnl_cable_test_pulse +EXPORT_SYMBOL_GPL vmlinux 0xce721de5 dax_layout_busy_page_range +EXPORT_SYMBOL_GPL vmlinux 0xce7afd35 bpf_map_inc_with_uref +EXPORT_SYMBOL_GPL vmlinux 0xce84d236 fb_deferred_io_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xce892da3 da903x_writes +EXPORT_SYMBOL_GPL vmlinux 0xcea36e53 ipv4_sk_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0xceb1f126 mpi_read_raw_data EXPORT_SYMBOL_GPL vmlinux 0xceb4b99c klist_prev -EXPORT_SYMBOL_GPL vmlinux 0xceb4dbda spi_res_release -EXPORT_SYMBOL_GPL vmlinux 0xceb76958 devfreq_cooling_em_register -EXPORT_SYMBOL_GPL vmlinux 0xcec1098b blk_ksm_destroy -EXPORT_SYMBOL_GPL vmlinux 0xcee13758 uprobe_register +EXPORT_SYMBOL_GPL vmlinux 0xceb6c822 power_supply_set_property +EXPORT_SYMBOL_GPL vmlinux 0xcebf5470 wakeup_sources_walk_next +EXPORT_SYMBOL_GPL vmlinux 0xced10d84 sched_trace_rq_avg_irq +EXPORT_SYMBOL_GPL vmlinux 0xced86a7b nfs42_ssc_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcedc02fe dm_internal_resume EXPORT_SYMBOL_GPL vmlinux 0xcee1641c kgdb_unregister_nmi_console -EXPORT_SYMBOL_GPL vmlinux 0xcee5593b filemap_read +EXPORT_SYMBOL_GPL vmlinux 0xcee1e0b5 scsi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xcee1f604 unregister_cxl_calls +EXPORT_SYMBOL_GPL vmlinux 0xcee811f2 usb_of_get_companion_dev EXPORT_SYMBOL_GPL vmlinux 0xcee88e7a of_overlay_fdt_apply +EXPORT_SYMBOL_GPL vmlinux 0xcf12200e cpufreq_register_driver EXPORT_SYMBOL_GPL vmlinux 0xcf133159 alarm_start_relative -EXPORT_SYMBOL_GPL vmlinux 0xcf14bbec bio_associate_blkg_from_css -EXPORT_SYMBOL_GPL vmlinux 0xcf1f725e devm_blk_ksm_init -EXPORT_SYMBOL_GPL vmlinux 0xcf20d0ad palmas_ext_control_req_config -EXPORT_SYMBOL_GPL vmlinux 0xcf27f826 devlink_dpipe_headers_register +EXPORT_SYMBOL_GPL vmlinux 0xcf162258 debugfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0xcf183eed of_pci_get_max_link_speed +EXPORT_SYMBOL_GPL vmlinux 0xcf1933bb mmc_crypto_prepare_req +EXPORT_SYMBOL_GPL vmlinux 0xcf1d5b02 spi_res_add EXPORT_SYMBOL_GPL vmlinux 0xcf28f55e trace_clock_global -EXPORT_SYMBOL_GPL vmlinux 0xcf2c3604 __page_file_index -EXPORT_SYMBOL_GPL vmlinux 0xcf356bd2 pci_pri_supported -EXPORT_SYMBOL_GPL vmlinux 0xcf42f862 of_dma_controller_register -EXPORT_SYMBOL_GPL vmlinux 0xcf44514d pci_generic_ecam_ops -EXPORT_SYMBOL_GPL vmlinux 0xcf5314e2 kick_process -EXPORT_SYMBOL_GPL vmlinux 0xcf665190 usb_match_id -EXPORT_SYMBOL_GPL vmlinux 0xcf7c1658 dm_bio_from_per_bio_data -EXPORT_SYMBOL_GPL vmlinux 0xcf8653df dma_mmap_pages -EXPORT_SYMBOL_GPL vmlinux 0xcf9672b9 con_debug_enter -EXPORT_SYMBOL_GPL vmlinux 0xcfa9d057 pinctrl_utils_free_map -EXPORT_SYMBOL_GPL vmlinux 0xcfa9fc26 bpf_trace_run7 -EXPORT_SYMBOL_GPL vmlinux 0xcfbd6495 watchdog_notify_pretimeout -EXPORT_SYMBOL_GPL vmlinux 0xcfc1b388 int_active_memcg +EXPORT_SYMBOL_GPL vmlinux 0xcf36df65 raw_seq_next +EXPORT_SYMBOL_GPL vmlinux 0xcf40f932 synth_event_add_next_val +EXPORT_SYMBOL_GPL vmlinux 0xcf41f581 stmpe811_adc_common_init +EXPORT_SYMBOL_GPL vmlinux 0xcf4494ce devm_nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0xcf4eb20b bpfilter_umh_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xcf722d1b crypto_unregister_templates +EXPORT_SYMBOL_GPL vmlinux 0xcfb86c19 dev_pm_genpd_add_notifier EXPORT_SYMBOL_GPL vmlinux 0xcfc5108a devlink_fmsg_u8_pair_put +EXPORT_SYMBOL_GPL vmlinux 0xcfc6d46b device_remove_software_node EXPORT_SYMBOL_GPL vmlinux 0xcfc7b4e4 rcu_barrier_tasks_trace -EXPORT_SYMBOL_GPL vmlinux 0xcfca8905 tpm_transmit_cmd -EXPORT_SYMBOL_GPL vmlinux 0xcfcf00b6 crypto_alloc_aead -EXPORT_SYMBOL_GPL vmlinux 0xcfd14bc1 ata_pci_bmdma_clear_simplex -EXPORT_SYMBOL_GPL vmlinux 0xcfd42ac1 xfrm_audit_state_add -EXPORT_SYMBOL_GPL vmlinux 0xcfd7e7a0 bus_get_device_klist -EXPORT_SYMBOL_GPL vmlinux 0xcfd8503d __traceiter_remove_device_from_group -EXPORT_SYMBOL_GPL vmlinux 0xcfe2a5ac regulator_enable_regmap -EXPORT_SYMBOL_GPL vmlinux 0xcff480b5 udp_bpf_update_proto -EXPORT_SYMBOL_GPL vmlinux 0xcff8c86c fat_time_unix2fat -EXPORT_SYMBOL_GPL vmlinux 0xcffc968a aead_exit_geniv -EXPORT_SYMBOL_GPL vmlinux 0xcfff5370 pci_load_and_free_saved_state -EXPORT_SYMBOL_GPL vmlinux 0xd01e6a53 gpiod_to_chip -EXPORT_SYMBOL_GPL vmlinux 0xd02b0c64 tcp_rate_check_app_limited -EXPORT_SYMBOL_GPL vmlinux 0xd02e328a hrtimer_init_sleeper -EXPORT_SYMBOL_GPL vmlinux 0xd034c74c blk_update_request -EXPORT_SYMBOL_GPL vmlinux 0xd0376557 pci_disable_ats +EXPORT_SYMBOL_GPL vmlinux 0xcfcc078b nvmem_device_find +EXPORT_SYMBOL_GPL vmlinux 0xcfd17274 clk_fractional_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0xcfdf11d2 device_attach +EXPORT_SYMBOL_GPL vmlinux 0xd0053563 dev_pm_opp_add +EXPORT_SYMBOL_GPL vmlinux 0xd031b70d cpufreq_policy_transition_delay_us +EXPORT_SYMBOL_GPL vmlinux 0xd03b38c4 i2c_generic_scl_recovery EXPORT_SYMBOL_GPL vmlinux 0xd03eaf4c schedule_hrtimeout_range -EXPORT_SYMBOL_GPL vmlinux 0xd03f089b fb_deferred_io_fsync -EXPORT_SYMBOL_GPL vmlinux 0xd045e089 dm_copy_name_and_uuid -EXPORT_SYMBOL_GPL vmlinux 0xd046d5ee pci_ecam_free +EXPORT_SYMBOL_GPL vmlinux 0xd04ae826 pci_probe_reset_slot EXPORT_SYMBOL_GPL vmlinux 0xd04aedfd __SCK__tp_func_arm_event -EXPORT_SYMBOL_GPL vmlinux 0xd050fb17 sock_map_close EXPORT_SYMBOL_GPL vmlinux 0xd0530c53 srcu_init_notifier_head -EXPORT_SYMBOL_GPL vmlinux 0xd0628e75 dev_pm_opp_put_regulators +EXPORT_SYMBOL_GPL vmlinux 0xd05f6c99 pci_enable_pasid EXPORT_SYMBOL_GPL vmlinux 0xd06524ba raw_notifier_chain_unregister EXPORT_SYMBOL_GPL vmlinux 0xd067d3c5 system_freezable_power_efficient_wq -EXPORT_SYMBOL_GPL vmlinux 0xd06d11cd crypto_shash_digest -EXPORT_SYMBOL_GPL vmlinux 0xd07acf01 regulator_map_voltage_pickable_linear_range -EXPORT_SYMBOL_GPL vmlinux 0xd0aac36a component_master_del -EXPORT_SYMBOL_GPL vmlinux 0xd0b701ab __udp_enqueue_schedule_skb -EXPORT_SYMBOL_GPL vmlinux 0xd0bc33eb crypto_alloc_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xd072e8bf blk_queue_rq_timeout +EXPORT_SYMBOL_GPL vmlinux 0xd076f95d iommu_fwspec_free +EXPORT_SYMBOL_GPL vmlinux 0xd07bc4b4 pinmux_generic_get_function_name +EXPORT_SYMBOL_GPL vmlinux 0xd0a72a08 pm_clk_remove_clk +EXPORT_SYMBOL_GPL vmlinux 0xd0b4d5eb nf_ip_route EXPORT_SYMBOL_GPL vmlinux 0xd0bea361 irq_set_affinity_hint EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart -EXPORT_SYMBOL_GPL vmlinux 0xd0c8df82 devm_regmap_add_irq_chip_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xd0d358cb sdio_get_host_pm_caps EXPORT_SYMBOL_GPL vmlinux 0xd0db0f12 run_dax -EXPORT_SYMBOL_GPL vmlinux 0xd0e2ccf5 tty_ldisc_deref -EXPORT_SYMBOL_GPL vmlinux 0xd0ea1848 pci_find_vsec_capability -EXPORT_SYMBOL_GPL vmlinux 0xd111bc96 pci_enable_sriov -EXPORT_SYMBOL_GPL vmlinux 0xd12a319d __scsi_init_queue -EXPORT_SYMBOL_GPL vmlinux 0xd12c1b63 copro_handle_mm_fault -EXPORT_SYMBOL_GPL vmlinux 0xd12d7f78 sk_msg_trim +EXPORT_SYMBOL_GPL vmlinux 0xd0dcf4e8 usb_free_coherent +EXPORT_SYMBOL_GPL vmlinux 0xd0f2b14d __devm_rtc_register_device +EXPORT_SYMBOL_GPL vmlinux 0xd0f473b8 replace_page_cache_page +EXPORT_SYMBOL_GPL vmlinux 0xd1061b5a __traceiter_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0xd12564b6 dev_pm_opp_of_register_em +EXPORT_SYMBOL_GPL vmlinux 0xd12fd8a7 usb_hcd_pci_remove EXPORT_SYMBOL_GPL vmlinux 0xd1386738 x509_cert_parse +EXPORT_SYMBOL_GPL vmlinux 0xd146db76 input_class EXPORT_SYMBOL_GPL vmlinux 0xd1481de7 mpi_clear -EXPORT_SYMBOL_GPL vmlinux 0xd14f1d4e debugfs_create_x8 +EXPORT_SYMBOL_GPL vmlinux 0xd1504e73 of_get_regulator_init_data EXPORT_SYMBOL_GPL vmlinux 0xd159586c net_prio_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xd167871d blk_mq_unquiesce_queue +EXPORT_SYMBOL_GPL vmlinux 0xd16a5b9c tty_find_polling_driver EXPORT_SYMBOL_GPL vmlinux 0xd16a8cef __tracepoint_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0xd17842ae devlink_params_register EXPORT_SYMBOL_GPL vmlinux 0xd17d2a22 phy_basic_features -EXPORT_SYMBOL_GPL vmlinux 0xd185102d regulator_bulk_disable -EXPORT_SYMBOL_GPL vmlinux 0xd194ddd3 tty_save_termios -EXPORT_SYMBOL_GPL vmlinux 0xd195cc5c ip6_append_data -EXPORT_SYMBOL_GPL vmlinux 0xd19f9f50 dma_wait_for_async_tx -EXPORT_SYMBOL_GPL vmlinux 0xd1a19d59 dma_buf_fd -EXPORT_SYMBOL_GPL vmlinux 0xd1a71bb1 __devm_regmap_init_spi -EXPORT_SYMBOL_GPL vmlinux 0xd1a9a2cb component_add_typed +EXPORT_SYMBOL_GPL vmlinux 0xd1a3e12b thermal_zone_get_slope EXPORT_SYMBOL_GPL vmlinux 0xd1a9ca15 __SCK__tp_func_neigh_update +EXPORT_SYMBOL_GPL vmlinux 0xd1be55e0 sock_diag_destroy +EXPORT_SYMBOL_GPL vmlinux 0xd1ca329e ata_dev_next EXPORT_SYMBOL_GPL vmlinux 0xd1cbc23c add_timer_on -EXPORT_SYMBOL_GPL vmlinux 0xd1d42e2f set_secondary_fwnode -EXPORT_SYMBOL_GPL vmlinux 0xd1df4487 dev_pm_opp_of_remove_table -EXPORT_SYMBOL_GPL vmlinux 0xd1ed1fda ohci_setup +EXPORT_SYMBOL_GPL vmlinux 0xd1dae6e5 __platform_driver_probe EXPORT_SYMBOL_GPL vmlinux 0xd1f2eee2 nf_logger_find_get -EXPORT_SYMBOL_GPL vmlinux 0xd1f3ea0e scsi_register_device_handler -EXPORT_SYMBOL_GPL vmlinux 0xd1fb7ac0 pci_d3cold_enable -EXPORT_SYMBOL_GPL vmlinux 0xd2050439 irq_chip_ack_parent +EXPORT_SYMBOL_GPL vmlinux 0xd1fd5b4e crypto_unregister_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xd1ff18ab generic_online_page +EXPORT_SYMBOL_GPL vmlinux 0xd20a0f21 iommu_detach_device +EXPORT_SYMBOL_GPL vmlinux 0xd20ea0f4 serial8250_get_port +EXPORT_SYMBOL_GPL vmlinux 0xd2159bdd rio_register_scan EXPORT_SYMBOL_GPL vmlinux 0xd217e9e6 trace_set_clr_event -EXPORT_SYMBOL_GPL vmlinux 0xd217eb4c rtc_class_close EXPORT_SYMBOL_GPL vmlinux 0xd21b61bd async_schedule_node_domain EXPORT_SYMBOL_GPL vmlinux 0xd21f1d35 __SCK__tp_func_tcp_send_reset -EXPORT_SYMBOL_GPL vmlinux 0xd226a47d md_submit_discard_bio -EXPORT_SYMBOL_GPL vmlinux 0xd2298ec2 device_show_bool -EXPORT_SYMBOL_GPL vmlinux 0xd22f4096 kvmppc_h_bulk_remove -EXPORT_SYMBOL_GPL vmlinux 0xd2303c62 serdev_controller_add -EXPORT_SYMBOL_GPL vmlinux 0xd2352ae3 watchdog_set_last_hw_keepalive -EXPORT_SYMBOL_GPL vmlinux 0xd23f9950 devm_nvmem_device_get -EXPORT_SYMBOL_GPL vmlinux 0xd249a8bc iomap_truncate_page +EXPORT_SYMBOL_GPL vmlinux 0xd24f5234 irq_gc_mask_set_bit +EXPORT_SYMBOL_GPL vmlinux 0xd2513b44 pci_d3cold_disable +EXPORT_SYMBOL_GPL vmlinux 0xd254e9a2 pinctrl_lookup_state +EXPORT_SYMBOL_GPL vmlinux 0xd2587ffc register_asymmetric_key_parser EXPORT_SYMBOL_GPL vmlinux 0xd260af0d ring_buffer_write EXPORT_SYMBOL_GPL vmlinux 0xd2640fd4 list_lru_count_node EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative -EXPORT_SYMBOL_GPL vmlinux 0xd2a34e0f net_ns_type_operations -EXPORT_SYMBOL_GPL vmlinux 0xd2a637b7 usb_of_get_interface_node +EXPORT_SYMBOL_GPL vmlinux 0xd28bb15f devlink_dpipe_headers_register +EXPORT_SYMBOL_GPL vmlinux 0xd2937fe2 inet_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xd2a55a5c fuse_direct_io +EXPORT_SYMBOL_GPL vmlinux 0xd2a7dec7 dma_get_any_slave_channel EXPORT_SYMBOL_GPL vmlinux 0xd2b10a05 ata_timing_find_mode -EXPORT_SYMBOL_GPL vmlinux 0xd2d079f2 dev_pm_opp_put_prop_name -EXPORT_SYMBOL_GPL vmlinux 0xd2dd37b2 extcon_set_property -EXPORT_SYMBOL_GPL vmlinux 0xd2dfc60a irq_domain_set_hwirq_and_chip -EXPORT_SYMBOL_GPL vmlinux 0xd2e658f0 device_create_bin_file -EXPORT_SYMBOL_GPL vmlinux 0xd2f9e6e4 irq_find_matching_fwspec -EXPORT_SYMBOL_GPL vmlinux 0xd30759a1 blk_ksm_intersect_modes -EXPORT_SYMBOL_GPL vmlinux 0xd3090adf pci_hp_destroy -EXPORT_SYMBOL_GPL vmlinux 0xd309c2d2 of_phy_get -EXPORT_SYMBOL_GPL vmlinux 0xd3150f62 devlink_param_register +EXPORT_SYMBOL_GPL vmlinux 0xd2b4073a irq_domain_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0xd2bf2036 led_sysfs_disable +EXPORT_SYMBOL_GPL vmlinux 0xd2ca0267 dev_pm_opp_get_max_volt_latency +EXPORT_SYMBOL_GPL vmlinux 0xd2d273ed class_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0xd2e8ea29 ata_sff_exec_command +EXPORT_SYMBOL_GPL vmlinux 0xd31083be pm_clk_remove +EXPORT_SYMBOL_GPL vmlinux 0xd3112259 crypto_register_aead +EXPORT_SYMBOL_GPL vmlinux 0xd3181efd regulator_bulk_register_supply_alias EXPORT_SYMBOL_GPL vmlinux 0xd31a2ac5 ring_buffer_oldest_event_ts -EXPORT_SYMBOL_GPL vmlinux 0xd3208059 sched_set_fifo EXPORT_SYMBOL_GPL vmlinux 0xd320ebaf pci_epc_get_first_free_bar -EXPORT_SYMBOL_GPL vmlinux 0xd32c8948 skb_scrub_packet -EXPORT_SYMBOL_GPL vmlinux 0xd349dd3c crypto_aead_setauthsize -EXPORT_SYMBOL_GPL vmlinux 0xd34ee5f8 __percpu_init_rwsem +EXPORT_SYMBOL_GPL vmlinux 0xd32838fe of_property_read_variable_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xd328e1cb tty_kopen_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xd32cdf16 iommu_unmap +EXPORT_SYMBOL_GPL vmlinux 0xd3319ae6 device_init_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xd3563beb pci_epc_write_header +EXPORT_SYMBOL_GPL vmlinux 0xd359d87b ata_sff_tf_load +EXPORT_SYMBOL_GPL vmlinux 0xd3674365 pinmux_generic_remove_function EXPORT_SYMBOL_GPL vmlinux 0xd36760ef __usb_get_extra_descriptor -EXPORT_SYMBOL_GPL vmlinux 0xd36f71a3 __bio_crypt_clone -EXPORT_SYMBOL_GPL vmlinux 0xd37cc8fa of_property_read_variable_u16_array -EXPORT_SYMBOL_GPL vmlinux 0xd385b27c crypto_alloc_rng -EXPORT_SYMBOL_GPL vmlinux 0xd38f788b mdiobus_modify +EXPORT_SYMBOL_GPL vmlinux 0xd3821441 iommu_device_unlink +EXPORT_SYMBOL_GPL vmlinux 0xd3854ba0 bsg_job_get +EXPORT_SYMBOL_GPL vmlinux 0xd385904f dev_pm_qos_hide_flags +EXPORT_SYMBOL_GPL vmlinux 0xd39494bd irq_gc_set_wake EXPORT_SYMBOL_GPL vmlinux 0xd39e9848 put_itimerspec64 -EXPORT_SYMBOL_GPL vmlinux 0xd3a0b930 ata_qc_complete_multiple EXPORT_SYMBOL_GPL vmlinux 0xd3a5e9f8 xas_pause -EXPORT_SYMBOL_GPL vmlinux 0xd3ab2073 cpufreq_cpu_put +EXPORT_SYMBOL_GPL vmlinux 0xd3a5f8b6 sk_msg_is_readable EXPORT_SYMBOL_GPL vmlinux 0xd3b22dbd vas_init_rx_win_attr -EXPORT_SYMBOL_GPL vmlinux 0xd3cd74c7 virtqueue_kick +EXPORT_SYMBOL_GPL vmlinux 0xd3c0ef0e trace_array_printk +EXPORT_SYMBOL_GPL vmlinux 0xd3cf336d blk_ksm_is_superset EXPORT_SYMBOL_GPL vmlinux 0xd3ec851c __traceiter_unmap +EXPORT_SYMBOL_GPL vmlinux 0xd3f07211 clk_register_mux_table EXPORT_SYMBOL_GPL vmlinux 0xd3f0cd42 misc_cg_res_total_usage +EXPORT_SYMBOL_GPL vmlinux 0xd400f736 srp_stop_rport_timers EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq -EXPORT_SYMBOL_GPL vmlinux 0xd405eeb5 fib6_check_nexthop -EXPORT_SYMBOL_GPL vmlinux 0xd412830f nf_ct_hook -EXPORT_SYMBOL_GPL vmlinux 0xd413e932 __fib_lookup -EXPORT_SYMBOL_GPL vmlinux 0xd41feefd blk_queue_write_cache EXPORT_SYMBOL_GPL vmlinux 0xd42f1d4e show_rcu_tasks_rude_gp_kthread -EXPORT_SYMBOL_GPL vmlinux 0xd4312ff1 usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0xd434d71c adp5520_read +EXPORT_SYMBOL_GPL vmlinux 0xd43629e5 rtc_set_alarm +EXPORT_SYMBOL_GPL vmlinux 0xd449f3c7 of_gen_pool_get EXPORT_SYMBOL_GPL vmlinux 0xd44a5eac kgdb_register_nmi_console -EXPORT_SYMBOL_GPL vmlinux 0xd459d81a i2c_new_scanned_device -EXPORT_SYMBOL_GPL vmlinux 0xd462bd90 regmap_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0xd46becb0 tpm2_get_cc_attrs_tbl -EXPORT_SYMBOL_GPL vmlinux 0xd46fe7ab uprobe_register_refctr -EXPORT_SYMBOL_GPL vmlinux 0xd480ba53 pwm_free -EXPORT_SYMBOL_GPL vmlinux 0xd487017f xdp_rxq_info_reg_mem_model -EXPORT_SYMBOL_GPL vmlinux 0xd4912a2f scsi_dh_set_params +EXPORT_SYMBOL_GPL vmlinux 0xd4788467 pm_generic_thaw +EXPORT_SYMBOL_GPL vmlinux 0xd487bd33 _copy_mc_to_iter +EXPORT_SYMBOL_GPL vmlinux 0xd491f58b sdio_register_driver EXPORT_SYMBOL_GPL vmlinux 0xd4935851 __SCK__tp_func_suspend_resume -EXPORT_SYMBOL_GPL vmlinux 0xd4967d5c devlink_port_type_eth_set -EXPORT_SYMBOL_GPL vmlinux 0xd49f3138 tc3589x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xd4a93b4d nvdimm_volatile_region_create -EXPORT_SYMBOL_GPL vmlinux 0xd4ac152a irq_domain_simple_ops -EXPORT_SYMBOL_GPL vmlinux 0xd4b38e2e relay_open +EXPORT_SYMBOL_GPL vmlinux 0xd4a52567 xhci_check_bandwidth EXPORT_SYMBOL_GPL vmlinux 0xd4b6157e devlink_health_reporter_recovery_done EXPORT_SYMBOL_GPL vmlinux 0xd4b9a616 reset_control_bulk_put EXPORT_SYMBOL_GPL vmlinux 0xd4c14632 system_unbound_wq EXPORT_SYMBOL_GPL vmlinux 0xd4cbdbe3 __SCK__tp_func_devlink_trap_report -EXPORT_SYMBOL_GPL vmlinux 0xd4d7cb98 cpufreq_policy_transition_delay_us -EXPORT_SYMBOL_GPL vmlinux 0xd4d99a18 phy_pm_runtime_put_sync -EXPORT_SYMBOL_GPL vmlinux 0xd4dafd61 of_genpd_del_provider -EXPORT_SYMBOL_GPL vmlinux 0xd4dfd167 dev_attr_link_power_management_policy +EXPORT_SYMBOL_GPL vmlinux 0xd4d4e988 devlink_traps_register +EXPORT_SYMBOL_GPL vmlinux 0xd4daa147 device_match_devt +EXPORT_SYMBOL_GPL vmlinux 0xd4dd4890 vfio_pci_core_request +EXPORT_SYMBOL_GPL vmlinux 0xd4e3f5a6 kvmppc_do_h_enter EXPORT_SYMBOL_GPL vmlinux 0xd4e6d7e0 linear_range_get_value -EXPORT_SYMBOL_GPL vmlinux 0xd4fe1614 __root_device_register -EXPORT_SYMBOL_GPL vmlinux 0xd4fe580c device_change_owner +EXPORT_SYMBOL_GPL vmlinux 0xd4ed5648 pcibios_free_controller +EXPORT_SYMBOL_GPL vmlinux 0xd4f3468a devlink_trap_groups_register +EXPORT_SYMBOL_GPL vmlinux 0xd5013d17 of_cpufreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0xd50f0997 xhci_reset_bandwidth +EXPORT_SYMBOL_GPL vmlinux 0xd5290e4e regulator_unregister_notifier EXPORT_SYMBOL_GPL vmlinux 0xd5301b2c linear_range_get_max_value -EXPORT_SYMBOL_GPL vmlinux 0xd534ad7b of_hwspin_lock_get_id EXPORT_SYMBOL_GPL vmlinux 0xd5474690 usb_role_switch_set_role -EXPORT_SYMBOL_GPL vmlinux 0xd558f896 ptp_classify_raw EXPORT_SYMBOL_GPL vmlinux 0xd55ad93b iommu_group_get_iommudata -EXPORT_SYMBOL_GPL vmlinux 0xd561ecd6 pm_generic_freeze -EXPORT_SYMBOL_GPL vmlinux 0xd571d970 virtio_add_status -EXPORT_SYMBOL_GPL vmlinux 0xd58c20d6 badblocks_init -EXPORT_SYMBOL_GPL vmlinux 0xd58e8626 dbs_update -EXPORT_SYMBOL_GPL vmlinux 0xd59134f7 mmc_switch +EXPORT_SYMBOL_GPL vmlinux 0xd56228c2 ata_sas_port_stop +EXPORT_SYMBOL_GPL vmlinux 0xd566180e sysfs_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xd58eea2d pskb_put EXPORT_SYMBOL_GPL vmlinux 0xd59a1587 linkmode_resolve_pause -EXPORT_SYMBOL_GPL vmlinux 0xd5a16f9f usb_mon_register -EXPORT_SYMBOL_GPL vmlinux 0xd5a51d93 sk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0xd5ac1484 ata_sff_qc_fill_rtf EXPORT_SYMBOL_GPL vmlinux 0xd5afa49b btree_visitor -EXPORT_SYMBOL_GPL vmlinux 0xd5bd574a devm_nvdimm_memremap -EXPORT_SYMBOL_GPL vmlinux 0xd5c0089a device_property_match_string -EXPORT_SYMBOL_GPL vmlinux 0xd5c70aa1 pci_restore_msi_state -EXPORT_SYMBOL_GPL vmlinux 0xd5c8200a dev_pm_genpd_suspend -EXPORT_SYMBOL_GPL vmlinux 0xd5c9ea60 get_net_ns_by_fd -EXPORT_SYMBOL_GPL vmlinux 0xd5ceacd0 tty_ldisc_ref -EXPORT_SYMBOL_GPL vmlinux 0xd5e103d4 kill_pid_usb_asyncio -EXPORT_SYMBOL_GPL vmlinux 0xd5e5dc3a shash_register_instance -EXPORT_SYMBOL_GPL vmlinux 0xd5f07584 xdp_convert_zc_to_xdp_frame -EXPORT_SYMBOL_GPL vmlinux 0xd5f39889 __list_lru_init -EXPORT_SYMBOL_GPL vmlinux 0xd5f9f46e regulator_set_voltage_sel_pickable_regmap -EXPORT_SYMBOL_GPL vmlinux 0xd61320f2 nf_nat_hook -EXPORT_SYMBOL_GPL vmlinux 0xd6246589 ip6_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0xd5b058c1 devlink_free +EXPORT_SYMBOL_GPL vmlinux 0xd5c686ed vas_win_close +EXPORT_SYMBOL_GPL vmlinux 0xd5ce190d dev_pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0xd5cff39a dev_pm_opp_get_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0xd5ee5b22 powercap_unregister_zone +EXPORT_SYMBOL_GPL vmlinux 0xd6048439 vfio_init_group_dev +EXPORT_SYMBOL_GPL vmlinux 0xd614e9e2 devm_rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0xd617a2a1 __dma_request_channel +EXPORT_SYMBOL_GPL vmlinux 0xd629d806 espintcp_push_skb EXPORT_SYMBOL_GPL vmlinux 0xd62b92a4 usb_unpoison_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0xd632bb62 usb_hcd_map_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0xd644aa61 iommu_group_add_device EXPORT_SYMBOL_GPL vmlinux 0xd64ed259 __memcat_p EXPORT_SYMBOL_GPL vmlinux 0xd653b126 sched_clock -EXPORT_SYMBOL_GPL vmlinux 0xd65931ff proc_create_net_single -EXPORT_SYMBOL_GPL vmlinux 0xd668b370 devm_device_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0xd66de32c mbox_send_message +EXPORT_SYMBOL_GPL vmlinux 0xd66ecdd0 clk_bulk_get_optional EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget -EXPORT_SYMBOL_GPL vmlinux 0xd6838e00 pm_clk_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0xd6878c5d trace_array_printk -EXPORT_SYMBOL_GPL vmlinux 0xd68d421f __pneigh_lookup -EXPORT_SYMBOL_GPL vmlinux 0xd69a0e76 clk_divider_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0xd69fb58e clk_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0xd673796f extcon_unregister_notifier_all +EXPORT_SYMBOL_GPL vmlinux 0xd68f01c9 tty_port_tty_hangup +EXPORT_SYMBOL_GPL vmlinux 0xd6942d9e cgroup_path_ns EXPORT_SYMBOL_GPL vmlinux 0xd6a43677 opal_async_release_token -EXPORT_SYMBOL_GPL vmlinux 0xd6aa6997 __clk_hw_register_mux -EXPORT_SYMBOL_GPL vmlinux 0xd6ac53c7 tty_get_pgrp -EXPORT_SYMBOL_GPL vmlinux 0xd6b531eb securityfs_create_file -EXPORT_SYMBOL_GPL vmlinux 0xd6bb2413 devm_platform_ioremap_resource +EXPORT_SYMBOL_GPL vmlinux 0xd6a8922b devlink_sb_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd6b9dcb7 regmap_get_reg_stride EXPORT_SYMBOL_GPL vmlinux 0xd6bf625a btree_init_mempool -EXPORT_SYMBOL_GPL vmlinux 0xd6e0f6c6 device_create_with_groups -EXPORT_SYMBOL_GPL vmlinux 0xd6e8ac3a lwtunnel_xmit -EXPORT_SYMBOL_GPL vmlinux 0xd6efcba0 usb_create_shared_hcd +EXPORT_SYMBOL_GPL vmlinux 0xd6c59973 serial8250_request_dma +EXPORT_SYMBOL_GPL vmlinux 0xd6c733e4 blk_mq_hctx_set_fq_lock_class +EXPORT_SYMBOL_GPL vmlinux 0xd6caa836 of_clk_add_provider +EXPORT_SYMBOL_GPL vmlinux 0xd6d88cb1 pin_user_pages_fast_only +EXPORT_SYMBOL_GPL vmlinux 0xd6dc1f29 vfio_external_group_match_file +EXPORT_SYMBOL_GPL vmlinux 0xd6e8c383 usb_lock_device_for_reset +EXPORT_SYMBOL_GPL vmlinux 0xd6f1c30d clk_multiplier_ops EXPORT_SYMBOL_GPL vmlinux 0xd6feefa5 agp_num_entries +EXPORT_SYMBOL_GPL vmlinux 0xd71b9c36 devlink_param_unregister EXPORT_SYMBOL_GPL vmlinux 0xd7293ffc percpu_ref_reinit -EXPORT_SYMBOL_GPL vmlinux 0xd73b4e42 sock_diag_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd73b9b83 i2c_parse_fw_timings -EXPORT_SYMBOL_GPL vmlinux 0xd74ea8de firmware_request_nowarn +EXPORT_SYMBOL_GPL vmlinux 0xd739f814 synth_event_add_val +EXPORT_SYMBOL_GPL vmlinux 0xd74165f6 regulator_set_current_limit_regmap +EXPORT_SYMBOL_GPL vmlinux 0xd7466752 bpf_trace_run7 EXPORT_SYMBOL_GPL vmlinux 0xd75b20aa rsa_parse_priv_key +EXPORT_SYMBOL_GPL vmlinux 0xd760dbd0 perf_aux_output_flag +EXPORT_SYMBOL_GPL vmlinux 0xd7674878 rio_request_mport_dma EXPORT_SYMBOL_GPL vmlinux 0xd768e985 regulator_has_full_constraints EXPORT_SYMBOL_GPL vmlinux 0xd76e4a35 ioremap_phb EXPORT_SYMBOL_GPL vmlinux 0xd774957d mpi_write_to_sgl -EXPORT_SYMBOL_GPL vmlinux 0xd78240f6 crypto_stats_aead_encrypt -EXPORT_SYMBOL_GPL vmlinux 0xd78e5757 regulator_get_linear_step -EXPORT_SYMBOL_GPL vmlinux 0xd7901766 phy_driver_is_genphy_10g -EXPORT_SYMBOL_GPL vmlinux 0xd7ab2a99 mmput -EXPORT_SYMBOL_GPL vmlinux 0xd7af436a devm_gpiod_get_optional -EXPORT_SYMBOL_GPL vmlinux 0xd7b1a7c5 dev_pm_set_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0xd7b5881d bpf_prog_destroy -EXPORT_SYMBOL_GPL vmlinux 0xd7bf0b0a vc_scrolldelta_helper +EXPORT_SYMBOL_GPL vmlinux 0xd77e48be to_nd_blk_region +EXPORT_SYMBOL_GPL vmlinux 0xd782fbc8 device_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0xd78426d7 fuse_simple_background +EXPORT_SYMBOL_GPL vmlinux 0xd7c21ddf vp_modern_set_queue_size 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 0xd81b9c3e xfrm_dev_offload_ok -EXPORT_SYMBOL_GPL vmlinux 0xd821a8ff usb_of_has_combined_node -EXPORT_SYMBOL_GPL vmlinux 0xd8284638 phy_led_triggers_register -EXPORT_SYMBOL_GPL vmlinux 0xd8329ff2 tracing_cond_snapshot_data +EXPORT_SYMBOL_GPL vmlinux 0xd7de275d blk_trace_startstop +EXPORT_SYMBOL_GPL vmlinux 0xd7df9e48 da903x_reads +EXPORT_SYMBOL_GPL vmlinux 0xd7ed5207 i2c_adapter_depth +EXPORT_SYMBOL_GPL vmlinux 0xd81368f2 sdev_evt_send_simple +EXPORT_SYMBOL_GPL vmlinux 0xd8197326 device_show_bool +EXPORT_SYMBOL_GPL vmlinux 0xd81d31bb gpiod_get_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xd824f60f fwnode_graph_get_next_endpoint +EXPORT_SYMBOL_GPL vmlinux 0xd82bc061 fscrypt_set_bio_crypt_ctx_bh +EXPORT_SYMBOL_GPL vmlinux 0xd83ff743 dmaengine_desc_get_metadata_ptr +EXPORT_SYMBOL_GPL vmlinux 0xd845b9fb tps65912_device_init EXPORT_SYMBOL_GPL vmlinux 0xd84d35bd dax_read_lock -EXPORT_SYMBOL_GPL vmlinux 0xd85e4afa cdrom_read_tocentry -EXPORT_SYMBOL_GPL vmlinux 0xd86b58f9 rcuwait_wake_up +EXPORT_SYMBOL_GPL vmlinux 0xd84f34a2 extcon_find_edev_by_node +EXPORT_SYMBOL_GPL vmlinux 0xd8643d32 ata_sas_port_resume +EXPORT_SYMBOL_GPL vmlinux 0xd86485f7 lp8788_read_multi_bytes +EXPORT_SYMBOL_GPL vmlinux 0xd874847d ata_do_set_mode +EXPORT_SYMBOL_GPL vmlinux 0xd8788af4 clk_hw_unregister_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0xd87fbb33 dma_map_sgtable EXPORT_SYMBOL_GPL vmlinux 0xd87fc0a0 usb_amd_prefetch_quirk -EXPORT_SYMBOL_GPL vmlinux 0xd887e067 udp4_hwcsum -EXPORT_SYMBOL_GPL vmlinux 0xd89820e5 usb_submit_urb -EXPORT_SYMBOL_GPL vmlinux 0xd89feaff sysfs_remove_link_from_group -EXPORT_SYMBOL_GPL vmlinux 0xd8a977e8 pcibios_alloc_controller -EXPORT_SYMBOL_GPL vmlinux 0xd8c150b8 pwm_set_chip_data -EXPORT_SYMBOL_GPL vmlinux 0xd8cf90f6 regulator_set_current_limit_regmap -EXPORT_SYMBOL_GPL vmlinux 0xd8f7b1ca spi_sync -EXPORT_SYMBOL_GPL vmlinux 0xd8f8c4e8 dst_blackhole_redirect +EXPORT_SYMBOL_GPL vmlinux 0xd8a396a3 fib_new_table +EXPORT_SYMBOL_GPL vmlinux 0xd8d40d59 kvmppc_h_clear_ref +EXPORT_SYMBOL_GPL vmlinux 0xd8de9637 dm_hold +EXPORT_SYMBOL_GPL vmlinux 0xd8e17e20 serdev_device_wait_until_sent +EXPORT_SYMBOL_GPL vmlinux 0xd8e41a97 phy_validate +EXPORT_SYMBOL_GPL vmlinux 0xd8ebc8b0 vfs_fallocate EXPORT_SYMBOL_GPL vmlinux 0xd8fbb14d net_cls_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xd9094bed trace_array_put -EXPORT_SYMBOL_GPL vmlinux 0xd90cfe67 device_reprobe -EXPORT_SYMBOL_GPL vmlinux 0xd90e8105 skb_zerocopy_iter_stream -EXPORT_SYMBOL_GPL vmlinux 0xd9133c85 devm_gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0xd9044b90 cpu_remove_dev_attr +EXPORT_SYMBOL_GPL vmlinux 0xd90d17ae devlink_port_attrs_pci_vf_set +EXPORT_SYMBOL_GPL vmlinux 0xd91350f7 seg6_do_srh_encap EXPORT_SYMBOL_GPL vmlinux 0xd91dbd1f xdp_alloc_skb_bulk -EXPORT_SYMBOL_GPL vmlinux 0xd91e6f57 clk_divider_ops -EXPORT_SYMBOL_GPL vmlinux 0xd9258dd6 strp_unpause EXPORT_SYMBOL_GPL vmlinux 0xd92ef192 security_kernel_post_load_data -EXPORT_SYMBOL_GPL vmlinux 0xd9316d9d iomap_writepage -EXPORT_SYMBOL_GPL vmlinux 0xd931e7c9 __kthread_should_park -EXPORT_SYMBOL_GPL vmlinux 0xd935153f relay_subbufs_consumed -EXPORT_SYMBOL_GPL vmlinux 0xd93a0a7e pci_epc_remove_epf -EXPORT_SYMBOL_GPL vmlinux 0xd95ef852 sched_trace_rq_avg_dl +EXPORT_SYMBOL_GPL vmlinux 0xd94ddef4 gpiod_get_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xd950ac10 tpm_chip_unregister EXPORT_SYMBOL_GPL vmlinux 0xd96babb4 interval_tree_iter_next -EXPORT_SYMBOL_GPL vmlinux 0xd978c80b mbox_request_channel -EXPORT_SYMBOL_GPL vmlinux 0xd9a96dd6 preempt_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd9b911dc debugfs_create_u32_array -EXPORT_SYMBOL_GPL vmlinux 0xd9bd2fac clean_acked_data_disable -EXPORT_SYMBOL_GPL vmlinux 0xd9be052b uart_handle_dcd_change -EXPORT_SYMBOL_GPL vmlinux 0xd9bf603e dma_buf_dynamic_attach -EXPORT_SYMBOL_GPL vmlinux 0xd9c12202 hwspin_lock_register -EXPORT_SYMBOL_GPL vmlinux 0xd9cfa41f iommu_device_register -EXPORT_SYMBOL_GPL vmlinux 0xd9cfbe61 crypto_grab_shash -EXPORT_SYMBOL_GPL vmlinux 0xd9dc88ec __put_net +EXPORT_SYMBOL_GPL vmlinux 0xd982d1f5 raw_hash_sk +EXPORT_SYMBOL_GPL vmlinux 0xd98928b4 gpiochip_generic_free +EXPORT_SYMBOL_GPL vmlinux 0xd98a11e4 generic_fsdax_supported +EXPORT_SYMBOL_GPL vmlinux 0xd9978ad2 fib_rule_matchall +EXPORT_SYMBOL_GPL vmlinux 0xd9b17e4e devlink_remote_reload_actions_performed +EXPORT_SYMBOL_GPL vmlinux 0xd9b5381b udp_abort +EXPORT_SYMBOL_GPL vmlinux 0xd9da54e9 switchdev_handle_port_obj_add +EXPORT_SYMBOL_GPL vmlinux 0xd9e1da07 ata_port_abort EXPORT_SYMBOL_GPL vmlinux 0xd9e24457 ring_buffer_peek -EXPORT_SYMBOL_GPL vmlinux 0xd9eeeb78 vring_create_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0xd9f647b5 fib_info_nh_uses_dev +EXPORT_SYMBOL_GPL vmlinux 0xd9eff113 __sock_recv_wifi_status +EXPORT_SYMBOL_GPL vmlinux 0xd9f5a054 fib_nexthop_info +EXPORT_SYMBOL_GPL vmlinux 0xd9fdc7ff dax_supported EXPORT_SYMBOL_GPL vmlinux 0xd9ff2172 ezx_pcap_write -EXPORT_SYMBOL_GPL vmlinux 0xda010458 __regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0xd9ff9be2 crypto_destroy_tfm +EXPORT_SYMBOL_GPL vmlinux 0xda00ced7 iomap_writepage EXPORT_SYMBOL_GPL vmlinux 0xda0947de kmsg_dump_unregister -EXPORT_SYMBOL_GPL vmlinux 0xda0fd49f thermal_add_hwmon_sysfs -EXPORT_SYMBOL_GPL vmlinux 0xda22ef8a ata_dummy_port_info -EXPORT_SYMBOL_GPL vmlinux 0xda28d988 devm_of_platform_depopulate -EXPORT_SYMBOL_GPL vmlinux 0xda3058a8 decrypt_blob +EXPORT_SYMBOL_GPL vmlinux 0xda0b7296 dma_buf_pin +EXPORT_SYMBOL_GPL vmlinux 0xda12b21c usb_asmedia_modifyflowcontrol +EXPORT_SYMBOL_GPL vmlinux 0xda1644f5 usb_control_msg +EXPORT_SYMBOL_GPL vmlinux 0xda2ea261 pci_epf_unregister_driver EXPORT_SYMBOL_GPL vmlinux 0xda320d31 sfp_module_start -EXPORT_SYMBOL_GPL vmlinux 0xda404dc6 tty_port_default_client_ops -EXPORT_SYMBOL_GPL vmlinux 0xda442fc3 vas_win_close -EXPORT_SYMBOL_GPL vmlinux 0xda44e012 kvmppc_clear_ref_hpte -EXPORT_SYMBOL_GPL vmlinux 0xda4738ba dst_cache_set_ip4 -EXPORT_SYMBOL_GPL vmlinux 0xda595291 tty_port_link_device -EXPORT_SYMBOL_GPL vmlinux 0xda5a581d ata_cable_40wire -EXPORT_SYMBOL_GPL vmlinux 0xda5c4dc7 da903x_clr_bits -EXPORT_SYMBOL_GPL vmlinux 0xda643efd fixed_phy_register_with_gpiod -EXPORT_SYMBOL_GPL vmlinux 0xda669a00 usb_set_device_state -EXPORT_SYMBOL_GPL vmlinux 0xda6dfe39 perf_event_read_value -EXPORT_SYMBOL_GPL vmlinux 0xda765ba9 vfs_kern_mount -EXPORT_SYMBOL_GPL vmlinux 0xda7849a1 rio_add_device -EXPORT_SYMBOL_GPL vmlinux 0xda790700 powercap_register_control_type -EXPORT_SYMBOL_GPL vmlinux 0xda7cd03e pm_generic_resume_early -EXPORT_SYMBOL_GPL vmlinux 0xda8621c4 devlink_reload_enable -EXPORT_SYMBOL_GPL vmlinux 0xda871788 clockevent_delta2ns -EXPORT_SYMBOL_GPL vmlinux 0xda89622d tty_buffer_request_room -EXPORT_SYMBOL_GPL vmlinux 0xda8a5287 fb_deferred_io_init -EXPORT_SYMBOL_GPL vmlinux 0xda8b2d36 perf_event_update_userpage +EXPORT_SYMBOL_GPL vmlinux 0xda32a133 serial8250_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0xda4ba296 regmap_multi_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xda6fc32d follow_pte +EXPORT_SYMBOL_GPL vmlinux 0xda8abc71 platform_get_mem_or_io EXPORT_SYMBOL_GPL vmlinux 0xda8e1302 software_node_find_by_name -EXPORT_SYMBOL_GPL vmlinux 0xda90ec9e nvmem_device_find -EXPORT_SYMBOL_GPL vmlinux 0xda913532 ipv6_opt_accepted -EXPORT_SYMBOL_GPL vmlinux 0xda976d06 badblocks_set -EXPORT_SYMBOL_GPL vmlinux 0xda9eff32 regcache_sync_region -EXPORT_SYMBOL_GPL vmlinux 0xdab27b19 cpufreq_disable_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0xdaa2420a crypto_unregister_instance +EXPORT_SYMBOL_GPL vmlinux 0xdaa70dd3 thermal_zone_get_temp +EXPORT_SYMBOL_GPL vmlinux 0xdab2cc39 nf_checksum EXPORT_SYMBOL_GPL vmlinux 0xdab5a1eb interval_tree_insert -EXPORT_SYMBOL_GPL vmlinux 0xdacb1e0d dev_fwnode -EXPORT_SYMBOL_GPL vmlinux 0xdadea535 to_of_pinfo -EXPORT_SYMBOL_GPL vmlinux 0xdaf04aa0 sysfs_add_file_to_group +EXPORT_SYMBOL_GPL vmlinux 0xdad4accf rdev_get_regmap +EXPORT_SYMBOL_GPL vmlinux 0xdadb16f8 __fscrypt_prepare_lookup +EXPORT_SYMBOL_GPL vmlinux 0xdaf2540e pci_vfs_assigned EXPORT_SYMBOL_GPL vmlinux 0xdaf4dfb3 fb_mode_option EXPORT_SYMBOL_GPL vmlinux 0xdaf5c16e __cookie_v4_check -EXPORT_SYMBOL_GPL vmlinux 0xdaf6305c dev_pm_opp_of_add_table -EXPORT_SYMBOL_GPL vmlinux 0xdaf8b3f7 __iomap_dio_rw -EXPORT_SYMBOL_GPL vmlinux 0xdaf967c6 synth_event_create -EXPORT_SYMBOL_GPL vmlinux 0xdb01a017 regcache_drop_region -EXPORT_SYMBOL_GPL vmlinux 0xdb0538c7 scsi_autopm_put_device -EXPORT_SYMBOL_GPL vmlinux 0xdb092772 iomap_ioend_try_merge -EXPORT_SYMBOL_GPL vmlinux 0xdb0f0bb2 led_trigger_blink -EXPORT_SYMBOL_GPL vmlinux 0xdb175754 md_find_rdev_rcu +EXPORT_SYMBOL_GPL vmlinux 0xdb1a4f4d virtqueue_poll +EXPORT_SYMBOL_GPL vmlinux 0xdb1fa155 pci_hp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0xdb2ca7d5 irq_of_parse_and_map +EXPORT_SYMBOL_GPL vmlinux 0xdb33946e fsl8250_handle_irq EXPORT_SYMBOL_GPL vmlinux 0xdb3794ce emulate_vsx_load -EXPORT_SYMBOL_GPL vmlinux 0xdb3c5334 dm_report_zones -EXPORT_SYMBOL_GPL vmlinux 0xdb3dbc9e devfreq_event_set_event EXPORT_SYMBOL_GPL vmlinux 0xdb3f25b5 __irq_alloc_descs -EXPORT_SYMBOL_GPL vmlinux 0xdb57bb0d vfs_lock_file +EXPORT_SYMBOL_GPL vmlinux 0xdb771fa0 power_supply_put_battery_info +EXPORT_SYMBOL_GPL vmlinux 0xdb7c1f17 __lock_page_killable EXPORT_SYMBOL_GPL vmlinux 0xdb8a1b3f usermodehelper_read_trylock -EXPORT_SYMBOL_GPL vmlinux 0xdb9bb123 vfio_pci_core_err_handlers -EXPORT_SYMBOL_GPL vmlinux 0xdb9e62ed ata_wait_after_reset -EXPORT_SYMBOL_GPL vmlinux 0xdbb9d150 dm_set_target_max_io_len -EXPORT_SYMBOL_GPL vmlinux 0xdbbffabd dev_pm_opp_set_supported_hw +EXPORT_SYMBOL_GPL vmlinux 0xdba1b308 switchdev_port_obj_del EXPORT_SYMBOL_GPL vmlinux 0xdbc72ac2 xive_native_alloc_irq_on_chip -EXPORT_SYMBOL_GPL vmlinux 0xdbd681ac posix_clock_register -EXPORT_SYMBOL_GPL vmlinux 0xdbd87dad pinmux_generic_get_function_count +EXPORT_SYMBOL_GPL vmlinux 0xdbcd7c6e rtc_update_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0xdbd88424 wm831x_set_bits EXPORT_SYMBOL_GPL vmlinux 0xdbdb0e8b request_any_context_irq +EXPORT_SYMBOL_GPL vmlinux 0xdbe4d57e devm_nvmem_device_put +EXPORT_SYMBOL_GPL vmlinux 0xdbe72bcc __iptunnel_pull_header EXPORT_SYMBOL_GPL vmlinux 0xdbe8d8a0 __SCK__tp_func_cpu_frequency -EXPORT_SYMBOL_GPL vmlinux 0xdbee3ada of_pwm_xlate_with_flags EXPORT_SYMBOL_GPL vmlinux 0xdbeeece6 tracepoint_probe_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdbf0e171 clk_divider_ro_ops EXPORT_SYMBOL_GPL vmlinux 0xdbf6cfb1 ftrace_ops_set_global_filter EXPORT_SYMBOL_GPL vmlinux 0xdbf7cb70 mpi_get_nbits -EXPORT_SYMBOL_GPL vmlinux 0xdbfb61e2 __irq_domain_alloc_fwnode EXPORT_SYMBOL_GPL vmlinux 0xdc0b2b5b opal_flash_write -EXPORT_SYMBOL_GPL vmlinux 0xdc16343d gpiod_direction_output_raw -EXPORT_SYMBOL_GPL vmlinux 0xdc26ce53 skcipher_register_instance -EXPORT_SYMBOL_GPL vmlinux 0xdc271d4b led_blink_set_oneshot -EXPORT_SYMBOL_GPL vmlinux 0xdc30a40a vfio_pci_core_uninit_device -EXPORT_SYMBOL_GPL vmlinux 0xdc352e65 pci_generic_config_read -EXPORT_SYMBOL_GPL vmlinux 0xdc374abd hvc_alloc -EXPORT_SYMBOL_GPL vmlinux 0xdc3e95a7 devm_pm_opp_set_regulators +EXPORT_SYMBOL_GPL vmlinux 0xdc14f86e ip_valid_fib_dump_req +EXPORT_SYMBOL_GPL vmlinux 0xdc1eab8b ehci_setup +EXPORT_SYMBOL_GPL vmlinux 0xdc41e9d7 ata_pci_sff_init_host EXPORT_SYMBOL_GPL vmlinux 0xdc43bdc6 pci_vpd_find_ro_info_keyword -EXPORT_SYMBOL_GPL vmlinux 0xdc4480ae devm_regulator_get EXPORT_SYMBOL_GPL vmlinux 0xdc45a5db edac_stop_work -EXPORT_SYMBOL_GPL vmlinux 0xdc4afc97 devlink_alloc_ns -EXPORT_SYMBOL_GPL vmlinux 0xdc532f80 mm_iommu_get -EXPORT_SYMBOL_GPL vmlinux 0xdc62008e spi_sync_locked +EXPORT_SYMBOL_GPL vmlinux 0xdc47e167 crypto_unregister_shashes +EXPORT_SYMBOL_GPL vmlinux 0xdc5ed8db led_classdev_notify_brightness_hw_changed +EXPORT_SYMBOL_GPL vmlinux 0xdc5f2f78 kthread_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xdc615e0e tty_buffer_space_avail EXPORT_SYMBOL_GPL vmlinux 0xdc6596fa irq_set_parent -EXPORT_SYMBOL_GPL vmlinux 0xdc74d326 mmu_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0xdc75f148 proc_get_parent_data +EXPORT_SYMBOL_GPL vmlinux 0xdc748f6a usb_sg_wait EXPORT_SYMBOL_GPL vmlinux 0xdc825d6c usb_amd_quirk_pll_disable -EXPORT_SYMBOL_GPL vmlinux 0xdc83f1a6 __pm_stay_awake EXPORT_SYMBOL_GPL vmlinux 0xdc841b74 misc_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xdc93abaf pci_epc_get -EXPORT_SYMBOL_GPL vmlinux 0xdc9727c7 perf_event_addr_filters_sync EXPORT_SYMBOL_GPL vmlinux 0xdc97af2e syscore_suspend EXPORT_SYMBOL_GPL vmlinux 0xdc9fa232 raw_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xdca8d318 fat_remove_entries +EXPORT_SYMBOL_GPL vmlinux 0xdcbb3555 fuse_dax_cancel_work EXPORT_SYMBOL_GPL vmlinux 0xdcbcffbf rhashtable_destroy -EXPORT_SYMBOL_GPL vmlinux 0xdcdae125 ip_fib_metrics_init -EXPORT_SYMBOL_GPL vmlinux 0xdce18302 usb_match_one_id +EXPORT_SYMBOL_GPL vmlinux 0xdcce2c21 kset_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0xdcdbdaa5 dma_get_slave_caps +EXPORT_SYMBOL_GPL vmlinux 0xdce38410 xhci_resume +EXPORT_SYMBOL_GPL vmlinux 0xdce60f81 device_get_child_node_count +EXPORT_SYMBOL_GPL vmlinux 0xdceb2499 register_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0xdcff3651 blk_crypto_evict_key +EXPORT_SYMBOL_GPL vmlinux 0xdd04c5c9 regulator_irq_helper +EXPORT_SYMBOL_GPL vmlinux 0xdd04ed39 class_unregister EXPORT_SYMBOL_GPL vmlinux 0xdd0762df set_worker_desc -EXPORT_SYMBOL_GPL vmlinux 0xdd143f6d dev_pm_clear_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xdd091bf9 tps6586x_update +EXPORT_SYMBOL_GPL vmlinux 0xdd0b2d06 skb_zerocopy_iter_dgram +EXPORT_SYMBOL_GPL vmlinux 0xdd276106 kvmppc_set_msr_hv +EXPORT_SYMBOL_GPL vmlinux 0xdd2bec78 gpiochip_request_own_desc +EXPORT_SYMBOL_GPL vmlinux 0xdd2ffd3a kvmppc_h_remove EXPORT_SYMBOL_GPL vmlinux 0xdd391eff profile_event_unregister -EXPORT_SYMBOL_GPL vmlinux 0xdd3ded4d devm_hwmon_device_register_with_info -EXPORT_SYMBOL_GPL vmlinux 0xdd41baf2 pinctrl_dev_get_devname -EXPORT_SYMBOL_GPL vmlinux 0xdd484236 of_property_read_string_helper +EXPORT_SYMBOL_GPL vmlinux 0xdd4a3149 blkdev_nr_zones +EXPORT_SYMBOL_GPL vmlinux 0xdd5d2737 tcp_abort +EXPORT_SYMBOL_GPL vmlinux 0xdd61e0fa ip6_sk_redirect EXPORT_SYMBOL_GPL vmlinux 0xdd626ee3 fuse_len_args -EXPORT_SYMBOL_GPL vmlinux 0xdd697732 software_node_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xdd699e46 scsi_queue_work EXPORT_SYMBOL_GPL vmlinux 0xdd6ddcec __traceiter_error_report_end -EXPORT_SYMBOL_GPL vmlinux 0xdd6fe2bf regmap_attach_dev -EXPORT_SYMBOL_GPL vmlinux 0xdd72a5f6 nvdimm_badblocks_populate -EXPORT_SYMBOL_GPL vmlinux 0xdd776605 ipv6_proxy_select_ident -EXPORT_SYMBOL_GPL vmlinux 0xdd7fb1bf kill_dev_dax +EXPORT_SYMBOL_GPL vmlinux 0xdd77f658 blk_mq_quiesce_queue +EXPORT_SYMBOL_GPL vmlinux 0xdd7cce17 pstore_register +EXPORT_SYMBOL_GPL vmlinux 0xdd7d3894 of_dma_xlate_by_chan_id EXPORT_SYMBOL_GPL vmlinux 0xdd81d8f6 __SCK__tp_func_block_bio_complete -EXPORT_SYMBOL_GPL vmlinux 0xdd8cbf47 perf_event_period -EXPORT_SYMBOL_GPL vmlinux 0xdda418fd mmu_notifier_get_locked -EXPORT_SYMBOL_GPL vmlinux 0xddb0c7c6 rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdd93d099 debugfs_create_file_size +EXPORT_SYMBOL_GPL vmlinux 0xddb8278b regmap_get_max_register +EXPORT_SYMBOL_GPL vmlinux 0xddb8e578 clk_hw_set_parent EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove -EXPORT_SYMBOL_GPL vmlinux 0xddc9c4e5 devm_regulator_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xddd82a0a usb_hcd_pci_pm_ops -EXPORT_SYMBOL_GPL vmlinux 0xddea2548 pci_iov_virtfn_devfn +EXPORT_SYMBOL_GPL vmlinux 0xddcde5b7 gpiod_get_direction +EXPORT_SYMBOL_GPL vmlinux 0xdde735f5 crypto_skcipher_setkey EXPORT_SYMBOL_GPL vmlinux 0xddf32520 __tracepoint_powernv_throttle -EXPORT_SYMBOL_GPL vmlinux 0xddf5317c of_phandle_iterator_next -EXPORT_SYMBOL_GPL vmlinux 0xddfe84da lwtunnel_state_alloc -EXPORT_SYMBOL_GPL vmlinux 0xde000d7d pci_dev_unlock -EXPORT_SYMBOL_GPL vmlinux 0xde058b49 power_supply_external_power_changed -EXPORT_SYMBOL_GPL vmlinux 0xde265ced tcp_cong_avoid_ai -EXPORT_SYMBOL_GPL vmlinux 0xde2a82c4 ping_init_sock -EXPORT_SYMBOL_GPL vmlinux 0xde2d4c3d gpiochip_reqres_irq -EXPORT_SYMBOL_GPL vmlinux 0xde388631 regmap_raw_read -EXPORT_SYMBOL_GPL vmlinux 0xde3b7e57 dev_pm_opp_get_opp_table -EXPORT_SYMBOL_GPL vmlinux 0xde5663d5 pci_rescan_bus -EXPORT_SYMBOL_GPL vmlinux 0xde571357 pci_sriov_get_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0xddfa074e pci_ecam_map_bus +EXPORT_SYMBOL_GPL vmlinux 0xde093131 driver_deferred_probe_check_state +EXPORT_SYMBOL_GPL vmlinux 0xde6db072 hwmon_device_register_with_info EXPORT_SYMBOL_GPL vmlinux 0xde6f1851 TSS_checkhmac1 -EXPORT_SYMBOL_GPL vmlinux 0xde9cd0ec wbc_account_cgroup_owner -EXPORT_SYMBOL_GPL vmlinux 0xdeaa77b8 devm_platform_get_irqs_affinity -EXPORT_SYMBOL_GPL vmlinux 0xdeb02cc9 usb_get_role_switch_default_mode -EXPORT_SYMBOL_GPL vmlinux 0xdebd7ae6 i2c_match_id -EXPORT_SYMBOL_GPL vmlinux 0xdec35958 crypto_stats_init -EXPORT_SYMBOL_GPL vmlinux 0xdec5f266 bio_end_io_acct_remapped -EXPORT_SYMBOL_GPL vmlinux 0xdecf78df pm_generic_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0xded8d8de vp_modern_queue_address -EXPORT_SYMBOL_GPL vmlinux 0xdedeeff0 dummy_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0xde711782 __traceiter_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0xde8cce56 edac_pci_handle_npe +EXPORT_SYMBOL_GPL vmlinux 0xde9b8d45 fixed_phy_change_carrier +EXPORT_SYMBOL_GPL vmlinux 0xdebe60ef pm_generic_freeze_late +EXPORT_SYMBOL_GPL vmlinux 0xdec8fec0 i2c_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0xdedad9c5 device_unregister EXPORT_SYMBOL_GPL vmlinux 0xdee01ebe analyse_instr -EXPORT_SYMBOL_GPL vmlinux 0xdee81011 nfs42_ssc_unregister -EXPORT_SYMBOL_GPL vmlinux 0xdef89f8a dw8250_setup_port -EXPORT_SYMBOL_GPL vmlinux 0xdef9e18c ip6_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0xdefea4b6 tpm_chip_alloc EXPORT_SYMBOL_GPL vmlinux 0xdeffa0a7 edac_raw_mc_handle_error -EXPORT_SYMBOL_GPL vmlinux 0xdf0a9837 dev_pm_opp_set_clkname EXPORT_SYMBOL_GPL vmlinux 0xdf0f75c6 eventfd_signal -EXPORT_SYMBOL_GPL vmlinux 0xdf1dc9ba crypto_register_scomps +EXPORT_SYMBOL_GPL vmlinux 0xdf11bee7 power_supply_class EXPORT_SYMBOL_GPL vmlinux 0xdf1e9cfa btree_destroy +EXPORT_SYMBOL_GPL vmlinux 0xdf24b1a3 usb_intf_get_dma_device EXPORT_SYMBOL_GPL vmlinux 0xdf2738bb cpu_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xdf3e6189 pm_clk_destroy +EXPORT_SYMBOL_GPL vmlinux 0xdf29fb7e udp_init_sock +EXPORT_SYMBOL_GPL vmlinux 0xdf2aee00 nvdimm_name +EXPORT_SYMBOL_GPL vmlinux 0xdf2bbaa7 skb_mpls_push EXPORT_SYMBOL_GPL vmlinux 0xdf43e19b disable_kprobe -EXPORT_SYMBOL_GPL vmlinux 0xdf6f96e2 is_xive_irq -EXPORT_SYMBOL_GPL vmlinux 0xdf7d5796 gpiochip_get_desc -EXPORT_SYMBOL_GPL vmlinux 0xdf85dff2 dev_pm_domain_start -EXPORT_SYMBOL_GPL vmlinux 0xdf9013d8 fb_bl_default_curve -EXPORT_SYMBOL_GPL vmlinux 0xdf9fd593 ata_pci_sff_init_host +EXPORT_SYMBOL_GPL vmlinux 0xdf44fb38 ata_sas_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xdf467914 dax_region_put +EXPORT_SYMBOL_GPL vmlinux 0xdf562860 __dax_driver_register +EXPORT_SYMBOL_GPL vmlinux 0xdf5fa8aa dw_pcie_upconfig_setup +EXPORT_SYMBOL_GPL vmlinux 0xdf6d2fbc power_supply_property_is_writeable +EXPORT_SYMBOL_GPL vmlinux 0xdf77306f devm_pinctrl_register +EXPORT_SYMBOL_GPL vmlinux 0xdf7e727b ata_sff_pause +EXPORT_SYMBOL_GPL vmlinux 0xdf827595 phy_power_on +EXPORT_SYMBOL_GPL vmlinux 0xdf95c84a gpiochip_add_pingroup_range +EXPORT_SYMBOL_GPL vmlinux 0xdfa652ef usb_debug_root EXPORT_SYMBOL_GPL vmlinux 0xdfcb6c90 mctrl_gpio_set -EXPORT_SYMBOL_GPL vmlinux 0xdfd1d8d5 blk_queue_required_elevator_features -EXPORT_SYMBOL_GPL vmlinux 0xdfe17ce8 tpmm_chip_alloc -EXPORT_SYMBOL_GPL vmlinux 0xdfe2612d virtqueue_get_desc_addr -EXPORT_SYMBOL_GPL vmlinux 0xdfe2b637 blk_mq_virtio_map_queues -EXPORT_SYMBOL_GPL vmlinux 0xdfef9333 replace_page_cache_page -EXPORT_SYMBOL_GPL vmlinux 0xdff2682e receive_fd +EXPORT_SYMBOL_GPL vmlinux 0xdfcd850e acct_bioset_init +EXPORT_SYMBOL_GPL vmlinux 0xdfd6f972 vas_tx_win_open +EXPORT_SYMBOL_GPL vmlinux 0xdfe6d003 dev_pm_domain_attach_by_name EXPORT_SYMBOL_GPL vmlinux 0xdff568cb klist_iter_init -EXPORT_SYMBOL_GPL vmlinux 0xe004846f sk_msg_is_readable +EXPORT_SYMBOL_GPL vmlinux 0xdffab72a wwan_port_rx +EXPORT_SYMBOL_GPL vmlinux 0xdfffa946 dma_request_chan_by_mask EXPORT_SYMBOL_GPL vmlinux 0xe00bc1fa sbitmap_finish_wait -EXPORT_SYMBOL_GPL vmlinux 0xe0141566 __inet_twsk_schedule -EXPORT_SYMBOL_GPL vmlinux 0xe018b33f thermal_zone_of_get_sensor_id -EXPORT_SYMBOL_GPL vmlinux 0xe02896ff dev_pm_opp_find_level_exact -EXPORT_SYMBOL_GPL vmlinux 0xe0478a93 __pm_runtime_idle +EXPORT_SYMBOL_GPL vmlinux 0xe018ed76 aead_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0xe01a2b3a serdev_device_set_flow_control +EXPORT_SYMBOL_GPL vmlinux 0xe01b1662 __reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0xe02bf8a7 phy_set_mode_ext +EXPORT_SYMBOL_GPL vmlinux 0xe02c1736 regmap_test_bits +EXPORT_SYMBOL_GPL vmlinux 0xe02d9e71 spi_mem_dirmap_write +EXPORT_SYMBOL_GPL vmlinux 0xe0394e17 clk_hw_register_composite +EXPORT_SYMBOL_GPL vmlinux 0xe0520b47 tty_ldisc_deref +EXPORT_SYMBOL_GPL vmlinux 0xe05453ea vfio_pci_core_err_handlers EXPORT_SYMBOL_GPL vmlinux 0xe05e2f85 nexthop_free_rcu +EXPORT_SYMBOL_GPL vmlinux 0xe06dca36 class_compat_remove_link +EXPORT_SYMBOL_GPL vmlinux 0xe07e4019 vfs_read +EXPORT_SYMBOL_GPL vmlinux 0xe086f2a6 ip6_input EXPORT_SYMBOL_GPL vmlinux 0xe087cc9c init_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0xe088369e user_describe EXPORT_SYMBOL_GPL vmlinux 0xe089cfcc agp_memory_reserved -EXPORT_SYMBOL_GPL vmlinux 0xe091c7af pci_epc_write_header -EXPORT_SYMBOL_GPL vmlinux 0xe09c8b04 blkg_prfill_rwstat -EXPORT_SYMBOL_GPL vmlinux 0xe0a4466a phy_power_off +EXPORT_SYMBOL_GPL vmlinux 0xe0a9f0e4 clone_private_mount EXPORT_SYMBOL_GPL vmlinux 0xe0b1c103 clk_set_max_rate -EXPORT_SYMBOL_GPL vmlinux 0xe0eadd8d dpm_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0xe0f6202a balloon_aops -EXPORT_SYMBOL_GPL vmlinux 0xe101b54f cpufreq_unregister_governor +EXPORT_SYMBOL_GPL vmlinux 0xe0ca1645 ata_host_resume +EXPORT_SYMBOL_GPL vmlinux 0xe0cfa66a regmap_parse_val +EXPORT_SYMBOL_GPL vmlinux 0xe0d04955 __netpoll_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xe0e2a67b __percpu_init_rwsem +EXPORT_SYMBOL_GPL vmlinux 0xe0f24120 regmap_raw_write_async +EXPORT_SYMBOL_GPL vmlinux 0xe0fd2997 device_store_bool +EXPORT_SYMBOL_GPL vmlinux 0xe1036e82 pinctrl_select_default_state +EXPORT_SYMBOL_GPL vmlinux 0xe103e517 fscrypt_ioctl_get_key_status EXPORT_SYMBOL_GPL vmlinux 0xe108d302 trace_seq_printf -EXPORT_SYMBOL_GPL vmlinux 0xe11e6e65 edac_device_handle_ce_count +EXPORT_SYMBOL_GPL vmlinux 0xe10cd1e1 vfs_setxattr +EXPORT_SYMBOL_GPL vmlinux 0xe11bda3a __rio_local_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0xe11eb03d ncsi_vlan_rx_add_vid EXPORT_SYMBOL_GPL vmlinux 0xe122e1ea register_kprobe -EXPORT_SYMBOL_GPL vmlinux 0xe13520a5 nf_route -EXPORT_SYMBOL_GPL vmlinux 0xe13a70a9 __netif_set_xps_queue -EXPORT_SYMBOL_GPL vmlinux 0xe13b45f5 pwm_request -EXPORT_SYMBOL_GPL vmlinux 0xe141d199 cxl_afu_put -EXPORT_SYMBOL_GPL vmlinux 0xe153decc __rio_local_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0xe129d37a rio_route_get_entry +EXPORT_SYMBOL_GPL vmlinux 0xe12f2bad set_cpus_allowed_ptr +EXPORT_SYMBOL_GPL vmlinux 0xe141ba95 inet_ehash_nolisten +EXPORT_SYMBOL_GPL vmlinux 0xe14c7fef cn_add_callback +EXPORT_SYMBOL_GPL vmlinux 0xe1527ec3 __traceiter_tcp_send_reset +EXPORT_SYMBOL_GPL vmlinux 0xe153b6e8 hvc_remove EXPORT_SYMBOL_GPL vmlinux 0xe161b07b trace_seq_putc -EXPORT_SYMBOL_GPL vmlinux 0xe16e3fe5 bgpio_init -EXPORT_SYMBOL_GPL vmlinux 0xe16f8525 regulator_get_voltage_rdev -EXPORT_SYMBOL_GPL vmlinux 0xe176202c devlink_flash_update_status_notify +EXPORT_SYMBOL_GPL vmlinux 0xe1747023 power_supply_set_input_current_limit_from_supplier EXPORT_SYMBOL_GPL vmlinux 0xe1775ee7 dm_get_reserved_bio_based_ios -EXPORT_SYMBOL_GPL vmlinux 0xe17944d4 strp_data_ready -EXPORT_SYMBOL_GPL vmlinux 0xe17f5dac iommu_device_link -EXPORT_SYMBOL_GPL vmlinux 0xe19c0cfb irq_generic_chip_ops -EXPORT_SYMBOL_GPL vmlinux 0xe1ad8759 clk_hw_unregister_mux -EXPORT_SYMBOL_GPL vmlinux 0xe1b24156 shash_free_singlespawn_instance -EXPORT_SYMBOL_GPL vmlinux 0xe1ba3641 devlink_free -EXPORT_SYMBOL_GPL vmlinux 0xe1bbcc45 tpm1_getcap +EXPORT_SYMBOL_GPL vmlinux 0xe18564a8 dev_pm_opp_disable +EXPORT_SYMBOL_GPL vmlinux 0xe19f09e9 crypto_stats_akcipher_sign +EXPORT_SYMBOL_GPL vmlinux 0xe1a739b4 d_exchange +EXPORT_SYMBOL_GPL vmlinux 0xe1a9f040 blk_rq_prep_clone EXPORT_SYMBOL_GPL vmlinux 0xe1bd6c99 rio_init_mports +EXPORT_SYMBOL_GPL vmlinux 0xe1c19c84 cpufreq_freq_transition_end EXPORT_SYMBOL_GPL vmlinux 0xe1c63523 blk_ksm_get_slot_idx -EXPORT_SYMBOL_GPL vmlinux 0xe1dc8a74 pwmchip_add -EXPORT_SYMBOL_GPL vmlinux 0xe1e2d277 of_pm_clk_add_clks -EXPORT_SYMBOL_GPL vmlinux 0xe1e7fcee md_stop_writes -EXPORT_SYMBOL_GPL vmlinux 0xe1e8af1e pm_runtime_force_resume -EXPORT_SYMBOL_GPL vmlinux 0xe1ee7aa1 ata_link_offline -EXPORT_SYMBOL_GPL vmlinux 0xe1f7528f usb_hcd_amd_remote_wakeup_quirk -EXPORT_SYMBOL_GPL vmlinux 0xe20553cd regulator_list_voltage +EXPORT_SYMBOL_GPL vmlinux 0xe1e0fee4 isa_bridge_pcidev +EXPORT_SYMBOL_GPL vmlinux 0xe1e5e94d fscrypt_fname_siphash EXPORT_SYMBOL_GPL vmlinux 0xe20baeb3 freq_qos_add_request -EXPORT_SYMBOL_GPL vmlinux 0xe20bdc55 clk_register_gate -EXPORT_SYMBOL_GPL vmlinux 0xe20fd1d1 devlink_port_type_ib_set -EXPORT_SYMBOL_GPL vmlinux 0xe21aac0b inet_csk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0xe22b0504 br_ip6_fragment +EXPORT_SYMBOL_GPL vmlinux 0xe212a5d6 dm_put +EXPORT_SYMBOL_GPL vmlinux 0xe219131c fuse_init_fs_context_submount EXPORT_SYMBOL_GPL vmlinux 0xe233762a input_event_from_user -EXPORT_SYMBOL_GPL vmlinux 0xe236d733 get_user_pages_fast -EXPORT_SYMBOL_GPL vmlinux 0xe24924ec devm_free_percpu -EXPORT_SYMBOL_GPL vmlinux 0xe24bd754 of_icc_get_from_provider -EXPORT_SYMBOL_GPL vmlinux 0xe24c3a36 power_supply_get_battery_info -EXPORT_SYMBOL_GPL vmlinux 0xe25196a5 pm_runtime_autosuspend_expiration -EXPORT_SYMBOL_GPL vmlinux 0xe256188f of_devfreq_cooling_register_power -EXPORT_SYMBOL_GPL vmlinux 0xe256273f set_cpus_allowed_ptr -EXPORT_SYMBOL_GPL vmlinux 0xe2597bbb usb_disable_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0xe25a14e5 pci_dev_lock -EXPORT_SYMBOL_GPL vmlinux 0xe26250d2 pm_runtime_irq_safe -EXPORT_SYMBOL_GPL vmlinux 0xe26b7c20 iomap_readpage -EXPORT_SYMBOL_GPL vmlinux 0xe27278b7 dma_buf_vunmap -EXPORT_SYMBOL_GPL vmlinux 0xe2949a8f usb_sg_init -EXPORT_SYMBOL_GPL vmlinux 0xe2962296 ata_sff_postreset -EXPORT_SYMBOL_GPL vmlinux 0xe2ab1ebd handle_simple_irq -EXPORT_SYMBOL_GPL vmlinux 0xe2abc043 virtqueue_kick_prepare -EXPORT_SYMBOL_GPL vmlinux 0xe2b20d3b __traceiter_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0xe24ae846 unmap_mapping_pages +EXPORT_SYMBOL_GPL vmlinux 0xe24eb801 cxl_afu_get +EXPORT_SYMBOL_GPL vmlinux 0xe25160f7 regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0xe270153d dma_buf_export +EXPORT_SYMBOL_GPL vmlinux 0xe28b3c2e skb_partial_csum_set EXPORT_SYMBOL_GPL vmlinux 0xe2b3207a unregister_switchdev_notifier -EXPORT_SYMBOL_GPL vmlinux 0xe2c5c67d pci_bus_add_device +EXPORT_SYMBOL_GPL vmlinux 0xe2c27ef5 usb_autopm_get_interface_async EXPORT_SYMBOL_GPL vmlinux 0xe2ce2b4d evm_set_key -EXPORT_SYMBOL_GPL vmlinux 0xe2deebfb __irq_set_handler -EXPORT_SYMBOL_GPL vmlinux 0xe2e373bf pinctrl_generic_add_group +EXPORT_SYMBOL_GPL vmlinux 0xe2de584f gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0xe2ef65e7 dummy_con +EXPORT_SYMBOL_GPL vmlinux 0xe2f7385f device_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0xe2fb874e usb_get_hcd +EXPORT_SYMBOL_GPL vmlinux 0xe3007f77 cpufreq_cpu_put +EXPORT_SYMBOL_GPL vmlinux 0xe30c5757 relay_reset EXPORT_SYMBOL_GPL vmlinux 0xe31315a4 spi_delay_exec -EXPORT_SYMBOL_GPL vmlinux 0xe3168a1d virtqueue_add_inbuf -EXPORT_SYMBOL_GPL vmlinux 0xe3299a5e tty_kopen_exclusive -EXPORT_SYMBOL_GPL vmlinux 0xe32ae1af tty_wakeup -EXPORT_SYMBOL_GPL vmlinux 0xe33095e8 nfs_ssc_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe33c7a84 param_ops_bool_enable_only -EXPORT_SYMBOL_GPL vmlinux 0xe3476032 devlink_resource_register -EXPORT_SYMBOL_GPL vmlinux 0xe349f280 cpufreq_dbs_governor_init -EXPORT_SYMBOL_GPL vmlinux 0xe36e8842 usb_register_device_driver -EXPORT_SYMBOL_GPL vmlinux 0xe3750bb6 security_inode_permission -EXPORT_SYMBOL_GPL vmlinux 0xe37b4b1e spi_bus_lock -EXPORT_SYMBOL_GPL vmlinux 0xe395ebce driver_register +EXPORT_SYMBOL_GPL vmlinux 0xe32035ae devlink_trap_policers_register +EXPORT_SYMBOL_GPL vmlinux 0xe3271c21 list_lru_walk_one +EXPORT_SYMBOL_GPL vmlinux 0xe33f0f2c pm_wakeup_dev_event +EXPORT_SYMBOL_GPL vmlinux 0xe33f1ac8 crypto_create_tfm_node +EXPORT_SYMBOL_GPL vmlinux 0xe342e7b5 apply_to_existing_page_range +EXPORT_SYMBOL_GPL vmlinux 0xe343fe9f pci_ecam_create +EXPORT_SYMBOL_GPL vmlinux 0xe34558aa badblocks_init +EXPORT_SYMBOL_GPL vmlinux 0xe356d422 wm831x_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0xe37a1a27 dma_release_channel EXPORT_SYMBOL_GPL vmlinux 0xe397caf5 seq_buf_printf -EXPORT_SYMBOL_GPL vmlinux 0xe39818fe blkcg_activate_policy EXPORT_SYMBOL_GPL vmlinux 0xe39d0794 usb_phy_roothub_exit +EXPORT_SYMBOL_GPL vmlinux 0xe3a20af9 ping_getfrag EXPORT_SYMBOL_GPL vmlinux 0xe3aeaa03 freq_qos_add_notifier EXPORT_SYMBOL_GPL vmlinux 0xe3b09712 kprobe_event_delete -EXPORT_SYMBOL_GPL vmlinux 0xe3b745f2 irq_chip_eoi_parent -EXPORT_SYMBOL_GPL vmlinux 0xe3c2cae6 scsi_unregister_device_handler -EXPORT_SYMBOL_GPL vmlinux 0xe3c47561 l3mdev_link_scope_lookup -EXPORT_SYMBOL_GPL vmlinux 0xe3e1c914 kthread_mod_delayed_work -EXPORT_SYMBOL_GPL vmlinux 0xe3e20fc2 blk_trace_remove -EXPORT_SYMBOL_GPL vmlinux 0xe3efaded iommu_sva_unbind_gpasid -EXPORT_SYMBOL_GPL vmlinux 0xe3f43106 generic_device_group -EXPORT_SYMBOL_GPL vmlinux 0xe3f4c013 __traceiter_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0xe3bbce4b pci_epc_remove_epf +EXPORT_SYMBOL_GPL vmlinux 0xe3c9f2df pci_user_write_config_word +EXPORT_SYMBOL_GPL vmlinux 0xe3d7f358 shmem_read_mapping_page_gfp +EXPORT_SYMBOL_GPL vmlinux 0xe3f702f5 pingv6_ops +EXPORT_SYMBOL_GPL vmlinux 0xe403a06b __blkg_prfill_rwstat EXPORT_SYMBOL_GPL vmlinux 0xe40bb23e devlink_health_reporter_priv +EXPORT_SYMBOL_GPL vmlinux 0xe41064e9 fwnode_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0xe41305e6 dev_pm_opp_put_prop_name +EXPORT_SYMBOL_GPL vmlinux 0xe41786c2 dev_forward_skb EXPORT_SYMBOL_GPL vmlinux 0xe4309905 syscore_resume -EXPORT_SYMBOL_GPL vmlinux 0xe46c1f81 devlink_region_create -EXPORT_SYMBOL_GPL vmlinux 0xe4715e36 ata_sff_port_intr -EXPORT_SYMBOL_GPL vmlinux 0xe4729cdf pci_check_and_mask_intx -EXPORT_SYMBOL_GPL vmlinux 0xe47a66be fscrypt_set_bio_crypt_ctx +EXPORT_SYMBOL_GPL vmlinux 0xe440e557 rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe4598f1f pnv_ocxl_spa_setup +EXPORT_SYMBOL_GPL vmlinux 0xe45a4c58 pci_destroy_slot +EXPORT_SYMBOL_GPL vmlinux 0xe46e2bff crypto_skcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0xe47f3fa8 iomap_releasepage +EXPORT_SYMBOL_GPL vmlinux 0xe47fb0ff bpf_trace_run5 +EXPORT_SYMBOL_GPL vmlinux 0xe4964a25 bdev_disk_changed EXPORT_SYMBOL_GPL vmlinux 0xe4971ade tracing_alloc_snapshot -EXPORT_SYMBOL_GPL vmlinux 0xe49ad081 power_supply_put -EXPORT_SYMBOL_GPL vmlinux 0xe4a439f8 sdio_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0xe4af247b spi_replace_transfers +EXPORT_SYMBOL_GPL vmlinux 0xe49d3147 scsi_target_unblock +EXPORT_SYMBOL_GPL vmlinux 0xe49f92e3 component_unbind_all EXPORT_SYMBOL_GPL vmlinux 0xe4b064f9 pcie_link_speed -EXPORT_SYMBOL_GPL vmlinux 0xe4b30d56 dm_get_queue_limits EXPORT_SYMBOL_GPL vmlinux 0xe4b818c3 phy_speed_to_str EXPORT_SYMBOL_GPL vmlinux 0xe4b93f27 public_key_verify_signature EXPORT_SYMBOL_GPL vmlinux 0xe4c2c66c rtc_ktime_to_tm -EXPORT_SYMBOL_GPL vmlinux 0xe4c4c406 udp_tunnel_nic_ops EXPORT_SYMBOL_GPL vmlinux 0xe4e48b12 swphy_validate_state -EXPORT_SYMBOL_GPL vmlinux 0xe4ed5d7a pm_stay_awake -EXPORT_SYMBOL_GPL vmlinux 0xe4f0d275 xhci_gen_setup -EXPORT_SYMBOL_GPL vmlinux 0xe513a7aa devm_gpiod_get_array_optional -EXPORT_SYMBOL_GPL vmlinux 0xe5151694 kvmppc_h_read -EXPORT_SYMBOL_GPL vmlinux 0xe51f19da thermal_zone_device_disable -EXPORT_SYMBOL_GPL vmlinux 0xe521af70 bpf_trace_run3 -EXPORT_SYMBOL_GPL vmlinux 0xe52b6426 kobject_move -EXPORT_SYMBOL_GPL vmlinux 0xe52e64a6 tty_buffer_space_avail -EXPORT_SYMBOL_GPL vmlinux 0xe53ac8c4 crypto_hash_alg_has_setkey -EXPORT_SYMBOL_GPL vmlinux 0xe53c96d0 iommu_uapi_sva_bind_gpasid -EXPORT_SYMBOL_GPL vmlinux 0xe54ebc0b bus_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0xe553cfcb ata_sff_irq_on -EXPORT_SYMBOL_GPL vmlinux 0xe56b1465 driver_remove_file -EXPORT_SYMBOL_GPL vmlinux 0xe574cb98 vp_modern_config_vector -EXPORT_SYMBOL_GPL vmlinux 0xe57b222e thp_get_unmapped_area +EXPORT_SYMBOL_GPL vmlinux 0xe4ed6ccd bus_get_kset +EXPORT_SYMBOL_GPL vmlinux 0xe501d9a1 init_dummy_netdev +EXPORT_SYMBOL_GPL vmlinux 0xe519a239 input_ff_create +EXPORT_SYMBOL_GPL vmlinux 0xe5216115 bus_find_device +EXPORT_SYMBOL_GPL vmlinux 0xe521ab36 power_supply_get_property +EXPORT_SYMBOL_GPL vmlinux 0xe53c048c bpf_map_inc_not_zero +EXPORT_SYMBOL_GPL vmlinux 0xe55a6e08 __fsnotify_inode_delete +EXPORT_SYMBOL_GPL vmlinux 0xe567cb93 kill_dev_dax +EXPORT_SYMBOL_GPL vmlinux 0xe56c9097 __traceiter_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0xe575df42 regmap_get_val_bytes EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe5888409 devlink_dpipe_match_put -EXPORT_SYMBOL_GPL vmlinux 0xe58cdfe2 pci_epc_mem_init -EXPORT_SYMBOL_GPL vmlinux 0xe5b5f18a ata_bmdma_port_start -EXPORT_SYMBOL_GPL vmlinux 0xe5beb189 serial8250_rpm_put +EXPORT_SYMBOL_GPL vmlinux 0xe5a257b8 devm_hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0xe5a3f1ea max8997_update_reg +EXPORT_SYMBOL_GPL vmlinux 0xe5ab91e3 balloon_page_alloc +EXPORT_SYMBOL_GPL vmlinux 0xe5c3c14a pci_probe_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0xe5c8e91d of_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0xe5d1eed4 rio_dma_prep_slave_sg +EXPORT_SYMBOL_GPL vmlinux 0xe5d43fb8 pci_vpd_alloc +EXPORT_SYMBOL_GPL vmlinux 0xe5dee148 vfio_virqfd_enable +EXPORT_SYMBOL_GPL vmlinux 0xe5e926d7 gpiod_get_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xe5ec053a usb_hcd_pci_shutdown EXPORT_SYMBOL_GPL vmlinux 0xe5ec503b __i2c_board_lock -EXPORT_SYMBOL_GPL vmlinux 0xe5f8ac2d crypto_stats_ahash_update -EXPORT_SYMBOL_GPL vmlinux 0xe5feb4a6 pcibios_finish_adding_to_bus -EXPORT_SYMBOL_GPL vmlinux 0xe60206d9 pci_ioremap_wc_bar -EXPORT_SYMBOL_GPL vmlinux 0xe6044eda cpci_hp_unregister_bus EXPORT_SYMBOL_GPL vmlinux 0xe60632a9 edac_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xe6076beb sdev_evt_send EXPORT_SYMBOL_GPL vmlinux 0xe60a5e8d pids_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xe60b9e57 led_sysfs_enable EXPORT_SYMBOL_GPL vmlinux 0xe628bb9f phy_fibre_port_array -EXPORT_SYMBOL_GPL vmlinux 0xe63ba71a device_remove_properties -EXPORT_SYMBOL_GPL vmlinux 0xe6401384 eeh_pe_mark_isolated -EXPORT_SYMBOL_GPL vmlinux 0xe6481e52 blk_mq_free_request -EXPORT_SYMBOL_GPL vmlinux 0xe652fc22 of_phandle_iterator_init -EXPORT_SYMBOL_GPL vmlinux 0xe6541410 ata_sas_tport_add -EXPORT_SYMBOL_GPL vmlinux 0xe6604185 phy_package_join +EXPORT_SYMBOL_GPL vmlinux 0xe628c498 phy_restore_page +EXPORT_SYMBOL_GPL vmlinux 0xe63261c2 ping_common_sendmsg +EXPORT_SYMBOL_GPL vmlinux 0xe632e4c7 __rio_local_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0xe6370e8c pci_epc_mem_init +EXPORT_SYMBOL_GPL vmlinux 0xe64231ad devm_of_clk_add_hw_provider +EXPORT_SYMBOL_GPL vmlinux 0xe64e4363 extcon_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xe6510206 rio_unmap_inb_region +EXPORT_SYMBOL_GPL vmlinux 0xe6555304 rio_add_net +EXPORT_SYMBOL_GPL vmlinux 0xe6611f96 scsi_free_sgtables +EXPORT_SYMBOL_GPL vmlinux 0xe661fd28 class_find_device EXPORT_SYMBOL_GPL vmlinux 0xe6658b50 usb_kill_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0xe6725823 cpu_remove_dev_attr -EXPORT_SYMBOL_GPL vmlinux 0xe67f106e ipv6_recv_error -EXPORT_SYMBOL_GPL vmlinux 0xe68372d9 devm_pm_opp_register_set_opp_helper -EXPORT_SYMBOL_GPL vmlinux 0xe68fda62 of_pci_range_parser_init -EXPORT_SYMBOL_GPL vmlinux 0xe69ffc19 usb_reset_configuration +EXPORT_SYMBOL_GPL vmlinux 0xe667d59c regulator_set_voltage_rdev +EXPORT_SYMBOL_GPL vmlinux 0xe67849a5 __serdev_device_driver_register +EXPORT_SYMBOL_GPL vmlinux 0xe67c424a pcie_aspm_enabled +EXPORT_SYMBOL_GPL vmlinux 0xe67e1461 bpf_prog_get_type_dev +EXPORT_SYMBOL_GPL vmlinux 0xe697e531 devlink_port_register EXPORT_SYMBOL_GPL vmlinux 0xe6a13e7d xive_native_configure_irq -EXPORT_SYMBOL_GPL vmlinux 0xe6a3aff6 vp_modern_set_queue_size -EXPORT_SYMBOL_GPL vmlinux 0xe6b5fcf1 devm_regmap_del_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0xe6bd5024 pci_create_slot -EXPORT_SYMBOL_GPL vmlinux 0xe6bee946 mbox_chan_received_data -EXPORT_SYMBOL_GPL vmlinux 0xe6bf11e7 dev_pm_opp_set_prop_name -EXPORT_SYMBOL_GPL vmlinux 0xe6bfedcc spi_mem_adjust_op_size -EXPORT_SYMBOL_GPL vmlinux 0xe6c1312d mbox_controller_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe6d124cf dev_fill_metadata_dst +EXPORT_SYMBOL_GPL vmlinux 0xe6a8d853 __mnt_is_readonly +EXPORT_SYMBOL_GPL vmlinux 0xe6c8830e ncsi_vlan_rx_kill_vid +EXPORT_SYMBOL_GPL vmlinux 0xe6caaebe led_trigger_blink +EXPORT_SYMBOL_GPL vmlinux 0xe6d29a78 sata_set_spd EXPORT_SYMBOL_GPL vmlinux 0xe6e40502 rcu_get_gp_seq -EXPORT_SYMBOL_GPL vmlinux 0xe6f1d561 net_ns_get_ownership -EXPORT_SYMBOL_GPL vmlinux 0xe6f4cf7c bus_get_kset -EXPORT_SYMBOL_GPL vmlinux 0xe6f71f7e dma_buf_end_cpu_access -EXPORT_SYMBOL_GPL vmlinux 0xe6fc1e73 fscrypt_ioctl_get_key_status +EXPORT_SYMBOL_GPL vmlinux 0xe6eecfb9 tps65912_device_exit EXPORT_SYMBOL_GPL vmlinux 0xe700d767 reset_control_bulk_deassert +EXPORT_SYMBOL_GPL vmlinux 0xe7062e6b thermal_zone_device_disable +EXPORT_SYMBOL_GPL vmlinux 0xe70f3474 rio_map_inb_region EXPORT_SYMBOL_GPL vmlinux 0xe71fe38a trace_print_bitmask_seq -EXPORT_SYMBOL_GPL vmlinux 0xe73250d9 device_get_match_data -EXPORT_SYMBOL_GPL vmlinux 0xe738823a sysfs_break_active_protection -EXPORT_SYMBOL_GPL vmlinux 0xe740a9d9 klp_get_state -EXPORT_SYMBOL_GPL vmlinux 0xe752bbe9 blk_rq_prep_clone +EXPORT_SYMBOL_GPL vmlinux 0xe7369290 bpf_offload_dev_netdev_register +EXPORT_SYMBOL_GPL vmlinux 0xe73943a5 pinctrl_enable +EXPORT_SYMBOL_GPL vmlinux 0xe73ba7b3 serial8250_rx_dma_flush +EXPORT_SYMBOL_GPL vmlinux 0xe7455212 ima_inode_hash +EXPORT_SYMBOL_GPL vmlinux 0xe7515296 phy_reset EXPORT_SYMBOL_GPL vmlinux 0xe753b68d devlink_fmsg_arr_pair_nest_end -EXPORT_SYMBOL_GPL vmlinux 0xe76044d4 fb_deferred_io_open +EXPORT_SYMBOL_GPL vmlinux 0xe75886fe pci_epf_remove_vepf EXPORT_SYMBOL_GPL vmlinux 0xe769232e sprint_symbol_no_offset -EXPORT_SYMBOL_GPL vmlinux 0xe76dc779 extcon_dev_register -EXPORT_SYMBOL_GPL vmlinux 0xe7723a61 power_supply_set_property -EXPORT_SYMBOL_GPL vmlinux 0xe7761fdf regulator_bulk_force_disable EXPORT_SYMBOL_GPL vmlinux 0xe783e261 sysfs_emit -EXPORT_SYMBOL_GPL vmlinux 0xe78d8a08 __trace_note_message -EXPORT_SYMBOL_GPL vmlinux 0xe7993c1c __pci_epc_create +EXPORT_SYMBOL_GPL vmlinux 0xe7873a0a handle_fasteoi_irq EXPORT_SYMBOL_GPL vmlinux 0xe79bf0c4 klp_shadow_get -EXPORT_SYMBOL_GPL vmlinux 0xe7a2e7f3 dev_pm_qos_add_request -EXPORT_SYMBOL_GPL vmlinux 0xe7af1afe syscon_regmap_lookup_by_phandle_args -EXPORT_SYMBOL_GPL vmlinux 0xe7b539e8 sched_trace_rq_avg_irq +EXPORT_SYMBOL_GPL vmlinux 0xe7a4a94f device_driver_attach EXPORT_SYMBOL_GPL vmlinux 0xe7be906b xive_irq_free_data -EXPORT_SYMBOL_GPL vmlinux 0xe7c78642 dev_pm_opp_attach_genpd +EXPORT_SYMBOL_GPL vmlinux 0xe7bf65b4 kgdb_register_io_module +EXPORT_SYMBOL_GPL vmlinux 0xe7c12648 pm_genpd_remove +EXPORT_SYMBOL_GPL vmlinux 0xe7cea3fa fwnode_get_next_available_child_node EXPORT_SYMBOL_GPL vmlinux 0xe7d34db2 opal_async_wait_response -EXPORT_SYMBOL_GPL vmlinux 0xe7d4e397 vfio_group_get_external_user EXPORT_SYMBOL_GPL vmlinux 0xe7d6d2d4 filter_match_preds -EXPORT_SYMBOL_GPL vmlinux 0xe7dea063 md_bitmap_resize -EXPORT_SYMBOL_GPL vmlinux 0xe7ed1ed4 iommu_aux_attach_device +EXPORT_SYMBOL_GPL vmlinux 0xe7da5ad5 phy_select_page EXPORT_SYMBOL_GPL vmlinux 0xe7eee3d5 __cookie_v4_init_sequence EXPORT_SYMBOL_GPL vmlinux 0xe7f18b3c threads_per_subcore -EXPORT_SYMBOL_GPL vmlinux 0xe7f7829f rio_unmap_inb_region +EXPORT_SYMBOL_GPL vmlinux 0xe80c65d9 of_genpd_add_subdomain +EXPORT_SYMBOL_GPL vmlinux 0xe8111bef shmem_file_setup_with_mnt EXPORT_SYMBOL_GPL vmlinux 0xe818b32b ata_bmdma_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xe82c9a8b regulator_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0xe83c10db crypto_grab_ahash -EXPORT_SYMBOL_GPL vmlinux 0xe83e02f8 security_path_link -EXPORT_SYMBOL_GPL vmlinux 0xe84e49d3 md_new_event -EXPORT_SYMBOL_GPL vmlinux 0xe84e96ea led_classdev_suspend +EXPORT_SYMBOL_GPL vmlinux 0xe81d53ca lp8788_write_byte +EXPORT_SYMBOL_GPL vmlinux 0xe82f5a51 dma_buf_begin_cpu_access +EXPORT_SYMBOL_GPL vmlinux 0xe830f385 policy_has_boost_freq +EXPORT_SYMBOL_GPL vmlinux 0xe831be73 serdev_device_close +EXPORT_SYMBOL_GPL vmlinux 0xe83e6993 sched_trace_rq_cpu_capacity +EXPORT_SYMBOL_GPL vmlinux 0xe84b7245 modify_user_hw_breakpoint EXPORT_SYMBOL_GPL vmlinux 0xe84f6e5c pciserial_remove_ports -EXPORT_SYMBOL_GPL vmlinux 0xe850457b mbox_send_message +EXPORT_SYMBOL_GPL vmlinux 0xe850faa7 pwm_get_chip_data +EXPORT_SYMBOL_GPL vmlinux 0xe853ebde ethnl_cable_test_alloc +EXPORT_SYMBOL_GPL vmlinux 0xe85d8b5b fuse_mount_remove EXPORT_SYMBOL_GPL vmlinux 0xe862c4b7 dpm_suspend_start +EXPORT_SYMBOL_GPL vmlinux 0xe8741c3a cookie_tcp_reqsk_alloc EXPORT_SYMBOL_GPL vmlinux 0xe8874a05 irq_work_queue -EXPORT_SYMBOL_GPL vmlinux 0xe8a95785 rio_dev_get EXPORT_SYMBOL_GPL vmlinux 0xe8c0065d memory_group_register_static -EXPORT_SYMBOL_GPL vmlinux 0xe8c2ba5b kvmppc_set_msr_hv -EXPORT_SYMBOL_GPL vmlinux 0xe8dabce8 pci_find_host_bridge -EXPORT_SYMBOL_GPL vmlinux 0xe8dd5971 ata_bmdma_start -EXPORT_SYMBOL_GPL vmlinux 0xe8e32a32 regulator_count_voltages -EXPORT_SYMBOL_GPL vmlinux 0xe8f5bf1c sdev_evt_send -EXPORT_SYMBOL_GPL vmlinux 0xe8fee2a5 page_endio -EXPORT_SYMBOL_GPL vmlinux 0xe90301ff watchdog_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xe8ca93e5 crypto_comp_compress +EXPORT_SYMBOL_GPL vmlinux 0xe8cc2d49 sdio_readl +EXPORT_SYMBOL_GPL vmlinux 0xe8d36761 pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0xe8d70a02 sched_trace_rq_avg_dl +EXPORT_SYMBOL_GPL vmlinux 0xe8e7cfc9 sysfs_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xe8f4aa6a evict_inodes +EXPORT_SYMBOL_GPL vmlinux 0xe8fba72f blk_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0xe8fc272f __account_locked_vm +EXPORT_SYMBOL_GPL vmlinux 0xe8fd1e02 memremap_pages EXPORT_SYMBOL_GPL vmlinux 0xe9069b14 srcutorture_get_gp_data EXPORT_SYMBOL_GPL vmlinux 0xe909eee3 usb_anchor_empty -EXPORT_SYMBOL_GPL vmlinux 0xe90e8cb8 devm_of_phy_get_by_index -EXPORT_SYMBOL_GPL vmlinux 0xe911080b crypto_stats_rng_generate +EXPORT_SYMBOL_GPL vmlinux 0xe90ed55d regulator_disable_deferred EXPORT_SYMBOL_GPL vmlinux 0xe911df29 eventfd_ctx_do_read -EXPORT_SYMBOL_GPL vmlinux 0xe9192722 usb_get_from_anchor -EXPORT_SYMBOL_GPL vmlinux 0xe91c6776 usb_autopm_put_interface -EXPORT_SYMBOL_GPL vmlinux 0xe932e563 encrypt_blob +EXPORT_SYMBOL_GPL vmlinux 0xe91a0850 scsi_host_busy_iter +EXPORT_SYMBOL_GPL vmlinux 0xe920933b blk_mq_pci_map_queues +EXPORT_SYMBOL_GPL vmlinux 0xe9224b6a scsi_host_unblock EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free +EXPORT_SYMBOL_GPL vmlinux 0xe943e66f lwtunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0xe946a14b devm_namespace_enable EXPORT_SYMBOL_GPL vmlinux 0xe9506579 iommu_tce_direction -EXPORT_SYMBOL_GPL vmlinux 0xe959618d ip6_datagram_connect_v6_only -EXPORT_SYMBOL_GPL vmlinux 0xe968f758 pnv_pci_set_tunnel_bar -EXPORT_SYMBOL_GPL vmlinux 0xe97d796f wb_writeout_inc -EXPORT_SYMBOL_GPL vmlinux 0xe9924f0b genphy_c45_read_mdix -EXPORT_SYMBOL_GPL vmlinux 0xe99b7187 __blk_req_zone_write_unlock -EXPORT_SYMBOL_GPL vmlinux 0xe9bcbe92 dev_pm_opp_put_supported_hw -EXPORT_SYMBOL_GPL vmlinux 0xe9c4cbfd gpiochip_remove -EXPORT_SYMBOL_GPL vmlinux 0xe9c931a6 devm_extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe960f136 hvc_poll +EXPORT_SYMBOL_GPL vmlinux 0xe9713a68 dev_pm_clear_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xe9765823 devm_kmemdup +EXPORT_SYMBOL_GPL vmlinux 0xe9801ee6 devm_pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0xe9901f67 eventfd_fget +EXPORT_SYMBOL_GPL vmlinux 0xe996e5df __blk_mq_debugfs_rq_show +EXPORT_SYMBOL_GPL vmlinux 0xe9a299d6 fixup_user_fault +EXPORT_SYMBOL_GPL vmlinux 0xe9a8d64c disk_force_media_change +EXPORT_SYMBOL_GPL vmlinux 0xe9b1b24a regmap_async_complete_cb +EXPORT_SYMBOL_GPL vmlinux 0xe9bfd814 device_change_owner +EXPORT_SYMBOL_GPL vmlinux 0xe9cb4ff1 pci_user_read_config_byte +EXPORT_SYMBOL_GPL vmlinux 0xe9cf3c64 dev_pm_qos_expose_flags EXPORT_SYMBOL_GPL vmlinux 0xe9d1b7cf irq_to_pcap -EXPORT_SYMBOL_GPL vmlinux 0xe9d3e0ca usb_hub_find_child -EXPORT_SYMBOL_GPL vmlinux 0xe9dce4bb devm_nvmem_register -EXPORT_SYMBOL_GPL vmlinux 0xe9e0ec8c net_selftest -EXPORT_SYMBOL_GPL vmlinux 0xe9ee2e60 md_account_bio -EXPORT_SYMBOL_GPL vmlinux 0xe9ff5f42 dev_pm_opp_set_rate +EXPORT_SYMBOL_GPL vmlinux 0xe9defb4d sdio_readb +EXPORT_SYMBOL_GPL vmlinux 0xe9fb428d trace_array_set_clr_event EXPORT_SYMBOL_GPL vmlinux 0xea018bbb mpi_test_bit -EXPORT_SYMBOL_GPL vmlinux 0xea0b94bf led_update_brightness -EXPORT_SYMBOL_GPL vmlinux 0xea0c9ec9 __traceiter_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0xea0ae088 nf_ct_hook EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd -EXPORT_SYMBOL_GPL vmlinux 0xea1443b1 devlink_rate_nodes_destroy +EXPORT_SYMBOL_GPL vmlinux 0xea145367 usb_autopm_get_interface_no_resume +EXPORT_SYMBOL_GPL vmlinux 0xea18cbea get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0xea312420 ata_sff_thaw +EXPORT_SYMBOL_GPL vmlinux 0xea326138 dev_pm_opp_find_level_ceil EXPORT_SYMBOL_GPL vmlinux 0xea38036f ring_buffer_entries +EXPORT_SYMBOL_GPL vmlinux 0xea394e7f of_dma_configure_id EXPORT_SYMBOL_GPL vmlinux 0xea3a23f3 public_key_free -EXPORT_SYMBOL_GPL vmlinux 0xea52c7ac vma_kernel_pagesize -EXPORT_SYMBOL_GPL vmlinux 0xea79b730 gpiochip_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0xea419075 virtqueue_get_used_addr +EXPORT_SYMBOL_GPL vmlinux 0xea4658fa pci_ignore_hotplug +EXPORT_SYMBOL_GPL vmlinux 0xea4b5250 tps80031_ext_power_req_config +EXPORT_SYMBOL_GPL vmlinux 0xea5b5ad1 devm_of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xea691bf0 spi_alloc_device +EXPORT_SYMBOL_GPL vmlinux 0xea6cf683 ata_do_dev_read_id +EXPORT_SYMBOL_GPL vmlinux 0xea79fba5 bpf_prog_inc_not_zero +EXPORT_SYMBOL_GPL vmlinux 0xea84a605 pci_host_probe +EXPORT_SYMBOL_GPL vmlinux 0xea865f7a regulator_bulk_force_disable EXPORT_SYMBOL_GPL vmlinux 0xea88c866 copy_to_user_nofault -EXPORT_SYMBOL_GPL vmlinux 0xeaa743b3 vfio_pci_core_finish_enable -EXPORT_SYMBOL_GPL vmlinux 0xeab444d5 usb_of_get_companion_dev -EXPORT_SYMBOL_GPL vmlinux 0xeac0a3f8 ata_sff_tf_load -EXPORT_SYMBOL_GPL vmlinux 0xeac29c02 uart_set_options -EXPORT_SYMBOL_GPL vmlinux 0xeac554b8 flush_vsx_to_thread +EXPORT_SYMBOL_GPL vmlinux 0xea938688 fwnode_handle_put +EXPORT_SYMBOL_GPL vmlinux 0xea9d984b of_pm_clk_add_clk +EXPORT_SYMBOL_GPL vmlinux 0xeaaf8dcc dev_pm_qos_flags EXPORT_SYMBOL_GPL vmlinux 0xeac6c543 fanout_mutex -EXPORT_SYMBOL_GPL vmlinux 0xeac73727 nvdimm_bus_check_dimm_count -EXPORT_SYMBOL_GPL vmlinux 0xeac79d25 dev_pm_genpd_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0xeacc826b blk_mq_virtio_map_queues EXPORT_SYMBOL_GPL vmlinux 0xead035ee __tracepoint_fib6_table_lookup EXPORT_SYMBOL_GPL vmlinux 0xead3e41b __traceiter_cpu_frequency EXPORT_SYMBOL_GPL vmlinux 0xead486fd crypto_alg_sem @@ -23965,584 +24062,579 @@ -EXPORT_SYMBOL_GPL vmlinux 0xeaee1365 anon_inode_getfd +EXPORT_SYMBOL_GPL vmlinux 0xeae93b16 add_disk_randomness +EXPORT_SYMBOL_GPL vmlinux 0xeae98531 securityfs_create_dir EXPORT_SYMBOL_GPL vmlinux 0xeaf0a57c look_up_OID +EXPORT_SYMBOL_GPL vmlinux 0xeafe0a3a kobject_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0xeb10809a irq_chip_ack_parent EXPORT_SYMBOL_GPL vmlinux 0xeb1a4f29 opal_error_code -EXPORT_SYMBOL_GPL vmlinux 0xeb1c876d usb_driver_release_interface -EXPORT_SYMBOL_GPL vmlinux 0xeb315e75 pci_generic_config_write32 -EXPORT_SYMBOL_GPL vmlinux 0xeb39380b blk_mq_alloc_sq_tag_set -EXPORT_SYMBOL_GPL vmlinux 0xeb4767f2 crypto_register_ahashes -EXPORT_SYMBOL_GPL vmlinux 0xeb56c8cf shmem_zero_setup -EXPORT_SYMBOL_GPL vmlinux 0xeb714c94 mmc_sanitize -EXPORT_SYMBOL_GPL vmlinux 0xeb82edff ata_host_alloc -EXPORT_SYMBOL_GPL vmlinux 0xeb8b76ce fib_nh_common_release -EXPORT_SYMBOL_GPL vmlinux 0xeba047e3 device_find_child -EXPORT_SYMBOL_GPL vmlinux 0xeba53024 subsys_find_device_by_id -EXPORT_SYMBOL_GPL vmlinux 0xebb62781 kvmppc_add_revmap_chain +EXPORT_SYMBOL_GPL vmlinux 0xeb36d5ea __fl6_sock_lookup +EXPORT_SYMBOL_GPL vmlinux 0xeb4a23f4 fwnode_get_next_parent +EXPORT_SYMBOL_GPL vmlinux 0xeb55ece7 gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0xeb681ad7 __blkg_prfill_u64 +EXPORT_SYMBOL_GPL vmlinux 0xeb6c0d1e dev_pm_opp_of_find_icc_paths +EXPORT_SYMBOL_GPL vmlinux 0xeb9b7305 tc3589x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xeb9c8cf6 __blk_req_zone_write_lock +EXPORT_SYMBOL_GPL vmlinux 0xeb9f159d kthread_cancel_delayed_work_sync +EXPORT_SYMBOL_GPL vmlinux 0xebbc03d0 software_node_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xebc8aa22 fwnode_get_nth_parent EXPORT_SYMBOL_GPL vmlinux 0xebc9a09f lock_system_sleep +EXPORT_SYMBOL_GPL vmlinux 0xebca9b4b device_for_each_child_reverse +EXPORT_SYMBOL_GPL vmlinux 0xebcbf273 bd_link_disk_holder EXPORT_SYMBOL_GPL vmlinux 0xebd4cc11 mctrl_gpio_enable_ms -EXPORT_SYMBOL_GPL vmlinux 0xebd992a4 get_device +EXPORT_SYMBOL_GPL vmlinux 0xebe6089a crypto_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0xebe75976 devlink_params_unregister EXPORT_SYMBOL_GPL vmlinux 0xebe7f3f5 srcu_torture_stats_print -EXPORT_SYMBOL_GPL vmlinux 0xebea00fb devm_usb_get_phy_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0xebf30851 tpm_tis_core_init -EXPORT_SYMBOL_GPL vmlinux 0xebf88b35 pm_genpd_opp_to_performance_state -EXPORT_SYMBOL_GPL vmlinux 0xec156e69 devm_extcon_dev_free -EXPORT_SYMBOL_GPL vmlinux 0xec160363 dma_vunmap_noncontiguous -EXPORT_SYMBOL_GPL vmlinux 0xec1bb016 ata_sff_data_xfer32 -EXPORT_SYMBOL_GPL vmlinux 0xec3122aa genpd_dev_pm_attach_by_id EXPORT_SYMBOL_GPL vmlinux 0xec356c53 msr_check_and_set -EXPORT_SYMBOL_GPL vmlinux 0xec39714c nvdimm_clear_poison +EXPORT_SYMBOL_GPL vmlinux 0xec3d02d2 led_trigger_write +EXPORT_SYMBOL_GPL vmlinux 0xec561a89 iomap_truncate_page EXPORT_SYMBOL_GPL vmlinux 0xec5668f6 dax_zero_page_range -EXPORT_SYMBOL_GPL vmlinux 0xec612515 adp5520_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xec751951 netdev_rx_handler_register EXPORT_SYMBOL_GPL vmlinux 0xec774acb cpufreq_frequency_table_verify -EXPORT_SYMBOL_GPL vmlinux 0xec7caad6 ohci_init_driver -EXPORT_SYMBOL_GPL vmlinux 0xec812bc2 virtqueue_get_used_addr EXPORT_SYMBOL_GPL vmlinux 0xec84bfb9 opal_leds_get_ind -EXPORT_SYMBOL_GPL vmlinux 0xec883550 gpiod_get_raw_array_value -EXPORT_SYMBOL_GPL vmlinux 0xec8d2da0 ping_seq_stop -EXPORT_SYMBOL_GPL vmlinux 0xec973069 spi_new_ancillary_device -EXPORT_SYMBOL_GPL vmlinux 0xecc3b075 __usb_create_hcd -EXPORT_SYMBOL_GPL vmlinux 0xecc953a5 devm_platform_get_and_ioremap_resource -EXPORT_SYMBOL_GPL vmlinux 0xecca42b1 bpfilter_ops -EXPORT_SYMBOL_GPL vmlinux 0xecd3ae65 bio_alloc_kiocb -EXPORT_SYMBOL_GPL vmlinux 0xecd41c14 gpiod_get_array_optional -EXPORT_SYMBOL_GPL vmlinux 0xecde2781 clk_hw_get_flags -EXPORT_SYMBOL_GPL vmlinux 0xecf32f60 dmaengine_unmap_put -EXPORT_SYMBOL_GPL vmlinux 0xecfc0386 synth_event_add_val -EXPORT_SYMBOL_GPL vmlinux 0xecfcaeca irq_domain_remove -EXPORT_SYMBOL_GPL vmlinux 0xed1065b3 pm_runtime_get_if_active -EXPORT_SYMBOL_GPL vmlinux 0xed16f590 __dax_driver_register +EXPORT_SYMBOL_GPL vmlinux 0xec85cd35 of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0xec89f906 extcon_get_edev_name +EXPORT_SYMBOL_GPL vmlinux 0xec8a26d5 get_user_pages_fast_only +EXPORT_SYMBOL_GPL vmlinux 0xeca6b35e devm_pm_opp_set_clkname +EXPORT_SYMBOL_GPL vmlinux 0xecaf38fa pci_hp_deregister +EXPORT_SYMBOL_GPL vmlinux 0xecb12783 __udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xecf42993 pci_epc_stop +EXPORT_SYMBOL_GPL vmlinux 0xed032a16 elv_rqhash_add +EXPORT_SYMBOL_GPL vmlinux 0xed05e60d of_resolve_phandles +EXPORT_SYMBOL_GPL vmlinux 0xed1f3868 max8997_write_reg EXPORT_SYMBOL_GPL vmlinux 0xed39b7b8 parse_OID -EXPORT_SYMBOL_GPL vmlinux 0xed4a489b irq_domain_free_irqs_common -EXPORT_SYMBOL_GPL vmlinux 0xed533ec1 serdev_device_set_flow_control -EXPORT_SYMBOL_GPL vmlinux 0xed5e97cb vfio_pci_core_disable -EXPORT_SYMBOL_GPL vmlinux 0xed5f31b2 fuse_conn_init -EXPORT_SYMBOL_GPL vmlinux 0xed6b02a1 raw_hash_sk -EXPORT_SYMBOL_GPL vmlinux 0xed946082 device_rename -EXPORT_SYMBOL_GPL vmlinux 0xed978c12 regulator_set_suspend_voltage -EXPORT_SYMBOL_GPL vmlinux 0xed994232 devm_clk_unregister -EXPORT_SYMBOL_GPL vmlinux 0xedcc2bfd usb_asmedia_modifyflowcontrol -EXPORT_SYMBOL_GPL vmlinux 0xedd2da89 serdev_device_set_baudrate -EXPORT_SYMBOL_GPL vmlinux 0xede3ed9d serdev_device_close -EXPORT_SYMBOL_GPL vmlinux 0xee14dbc4 serdev_controller_alloc -EXPORT_SYMBOL_GPL vmlinux 0xee1e8442 phy_modify +EXPORT_SYMBOL_GPL vmlinux 0xed5eb18d pnv_pci_set_tunnel_bar +EXPORT_SYMBOL_GPL vmlinux 0xed659fd6 of_genpd_remove_last +EXPORT_SYMBOL_GPL vmlinux 0xed666b1f mmu_interval_notifier_insert +EXPORT_SYMBOL_GPL vmlinux 0xed69735b pci_load_saved_state +EXPORT_SYMBOL_GPL vmlinux 0xed7f196f wait_on_page_writeback +EXPORT_SYMBOL_GPL vmlinux 0xed859a74 ata_pci_bmdma_init +EXPORT_SYMBOL_GPL vmlinux 0xedbcb35d dev_pm_opp_set_rate +EXPORT_SYMBOL_GPL vmlinux 0xedc383a7 pci_dev_lock +EXPORT_SYMBOL_GPL vmlinux 0xedc39bbf ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0xeddc18ed driver_attach +EXPORT_SYMBOL_GPL vmlinux 0xedddda56 phy_led_triggers_register +EXPORT_SYMBOL_GPL vmlinux 0xede4bc6b scsi_mode_select +EXPORT_SYMBOL_GPL vmlinux 0xede65f0a pm_clk_destroy +EXPORT_SYMBOL_GPL vmlinux 0xede73959 kvmhv_vcpu_entry_p9 +EXPORT_SYMBOL_GPL vmlinux 0xededba44 gpiod_direction_output_raw +EXPORT_SYMBOL_GPL vmlinux 0xededbcac __traceiter_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0xee10363a sysfs_remove_group +EXPORT_SYMBOL_GPL vmlinux 0xee19c729 cgroup_get_from_fd EXPORT_SYMBOL_GPL vmlinux 0xee1f5126 __tracepoint_neigh_timer_handler +EXPORT_SYMBOL_GPL vmlinux 0xee2402d7 pci_hp_remove_devices +EXPORT_SYMBOL_GPL vmlinux 0xee262bc6 skb_send_sock_locked EXPORT_SYMBOL_GPL vmlinux 0xee38ef57 register_switchdev_blocking_notifier -EXPORT_SYMBOL_GPL vmlinux 0xee4f2eda devlink_resources_unregister +EXPORT_SYMBOL_GPL vmlinux 0xee41a335 unregister_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0xee429c83 serial8250_init_port EXPORT_SYMBOL_GPL vmlinux 0xee518148 kmsg_dump_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0xee5312cf ata_host_start +EXPORT_SYMBOL_GPL vmlinux 0xee63a3c7 ip_local_out 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 0xee7bab93 crypto_grab_akcipher -EXPORT_SYMBOL_GPL vmlinux 0xee7cc7dd blk_mq_hctx_set_fq_lock_class -EXPORT_SYMBOL_GPL vmlinux 0xee7e20aa serdev_device_write_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xee76db45 rio_dma_prep_xfer +EXPORT_SYMBOL_GPL vmlinux 0xee7a6d74 udp_cmsg_send +EXPORT_SYMBOL_GPL vmlinux 0xee819a5e lwtunnel_cmp_encap +EXPORT_SYMBOL_GPL vmlinux 0xee926ed1 led_trigger_set_default +EXPORT_SYMBOL_GPL vmlinux 0xee9f7ccc dev_pm_opp_set_supported_hw +EXPORT_SYMBOL_GPL vmlinux 0xee9fe899 pcibios_alloc_controller +EXPORT_SYMBOL_GPL vmlinux 0xeeb4ea25 decrypt_blob +EXPORT_SYMBOL_GPL vmlinux 0xeec1902e kthread_unuse_mm +EXPORT_SYMBOL_GPL vmlinux 0xeeccf2d4 crypto_drop_spawn EXPORT_SYMBOL_GPL vmlinux 0xeed0cea4 kernel_read_file_from_fd +EXPORT_SYMBOL_GPL vmlinux 0xeed75dbb trace_array_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0xeedaf01c perf_event_addr_filters_sync EXPORT_SYMBOL_GPL vmlinux 0xeedd987e phy_10gbit_features_array -EXPORT_SYMBOL_GPL vmlinux 0xeedf66e2 devlink_param_value_changed EXPORT_SYMBOL_GPL vmlinux 0xeedfcec3 task_work_run -EXPORT_SYMBOL_GPL vmlinux 0xeee7f0a9 ata_bmdma_stop -EXPORT_SYMBOL_GPL vmlinux 0xeeea64c1 subsys_interface_unregister -EXPORT_SYMBOL_GPL vmlinux 0xef22c489 dm_hold +EXPORT_SYMBOL_GPL vmlinux 0xeef0e488 i2c_new_scanned_device +EXPORT_SYMBOL_GPL vmlinux 0xeefd2f0e icc_sync_state +EXPORT_SYMBOL_GPL vmlinux 0xef20a08e pinctrl_utils_reserve_map +EXPORT_SYMBOL_GPL vmlinux 0xef2562a2 __traceiter_fib6_table_lookup EXPORT_SYMBOL_GPL vmlinux 0xef29fcdd clk_bulk_put -EXPORT_SYMBOL_GPL vmlinux 0xef34e8c4 elv_register -EXPORT_SYMBOL_GPL vmlinux 0xef3949b3 usb_phy_roothub_alloc -EXPORT_SYMBOL_GPL vmlinux 0xef3b3abd device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xef2ba6b6 sk_attach_filter +EXPORT_SYMBOL_GPL vmlinux 0xef31c07a sysfs_change_owner +EXPORT_SYMBOL_GPL vmlinux 0xef33e888 pm_genpd_init +EXPORT_SYMBOL_GPL vmlinux 0xef3b6d8e adp5520_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xef4282cc pwm_request_from_chip EXPORT_SYMBOL_GPL vmlinux 0xef464c28 getboottime64 -EXPORT_SYMBOL_GPL vmlinux 0xef4d7b91 ata_sff_hsm_move -EXPORT_SYMBOL_GPL vmlinux 0xef53595e mmu_notifier_range_update_to_read_only -EXPORT_SYMBOL_GPL vmlinux 0xef5480e9 fat_search_long +EXPORT_SYMBOL_GPL vmlinux 0xef4837a0 usb_deregister_device_driver +EXPORT_SYMBOL_GPL vmlinux 0xef4fde6f mddev_init +EXPORT_SYMBOL_GPL vmlinux 0xef51c63e __kthread_init_worker +EXPORT_SYMBOL_GPL vmlinux 0xef51ecaa blk_mark_disk_dead EXPORT_SYMBOL_GPL vmlinux 0xef5db66d regulator_get_init_drvdata -EXPORT_SYMBOL_GPL vmlinux 0xef5fb2fa __traceiter_pelt_se_tp +EXPORT_SYMBOL_GPL vmlinux 0xef6a658a fuse_fill_super_common 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 0xef836fb7 power_supply_register -EXPORT_SYMBOL_GPL vmlinux 0xef83cb22 input_ff_create +EXPORT_SYMBOL_GPL vmlinux 0xef7b51ef __put_net +EXPORT_SYMBOL_GPL vmlinux 0xef9b182b vfio_group_iommu_domain +EXPORT_SYMBOL_GPL vmlinux 0xefa1ea6e pci_set_pcie_reset_state EXPORT_SYMBOL_GPL vmlinux 0xefa2c27d register_tracepoint_module_notifier -EXPORT_SYMBOL_GPL vmlinux 0xefb232a8 __blk_req_zone_write_lock -EXPORT_SYMBOL_GPL vmlinux 0xefb3302d cpuidle_get_driver -EXPORT_SYMBOL_GPL vmlinux 0xefbe9a36 mm_iommu_is_devmem -EXPORT_SYMBOL_GPL vmlinux 0xefd9fe3d regulator_suspend_disable -EXPORT_SYMBOL_GPL vmlinux 0xefe15483 fib6_get_table +EXPORT_SYMBOL_GPL vmlinux 0xefb68dba tcp_cong_avoid_ai +EXPORT_SYMBOL_GPL vmlinux 0xefbe7722 iommu_device_sysfs_add +EXPORT_SYMBOL_GPL vmlinux 0xefbf19a7 devlink_alloc_ns EXPORT_SYMBOL_GPL vmlinux 0xefeafcf1 edac_has_mcs -EXPORT_SYMBOL_GPL vmlinux 0xefedc3b2 usb_amd_pt_check_port -EXPORT_SYMBOL_GPL vmlinux 0xeff0aaf7 fsverity_ioctl_read_metadata -EXPORT_SYMBOL_GPL vmlinux 0xf009e7d6 request_firmware_direct -EXPORT_SYMBOL_GPL vmlinux 0xf01597bf fwnode_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0xf01dd149 usb_altnum_to_altsetting -EXPORT_SYMBOL_GPL vmlinux 0xf034ad18 fsnotify +EXPORT_SYMBOL_GPL vmlinux 0xefed045e irq_domain_xlate_onetwocell +EXPORT_SYMBOL_GPL vmlinux 0xefee2e84 spi_take_timestamp_post +EXPORT_SYMBOL_GPL vmlinux 0xf00096bb shash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xf01adb74 kvmppc_h_read +EXPORT_SYMBOL_GPL vmlinux 0xf0229356 rio_get_comptag +EXPORT_SYMBOL_GPL vmlinux 0xf02aa556 fscrypt_set_test_dummy_encryption +EXPORT_SYMBOL_GPL vmlinux 0xf02d2583 clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0xf034435b serdev_device_write_room +EXPORT_SYMBOL_GPL vmlinux 0xf035d17e devm_hwspin_lock_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf04282d4 smpboot_register_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0xf04da480 kobject_uevent_env EXPORT_SYMBOL_GPL vmlinux 0xf05a52fe asn1_encode_oid -EXPORT_SYMBOL_GPL vmlinux 0xf05e937d devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0xf05c4edf tty_port_default_client_ops EXPORT_SYMBOL_GPL vmlinux 0xf05fbf09 pci_pio_to_address -EXPORT_SYMBOL_GPL vmlinux 0xf073989b sata_sff_hardreset -EXPORT_SYMBOL_GPL vmlinux 0xf07cc07b phy_pm_runtime_get_sync -EXPORT_SYMBOL_GPL vmlinux 0xf07d9327 __platform_create_bundle +EXPORT_SYMBOL_GPL vmlinux 0xf083564c copro_flush_all_slbs +EXPORT_SYMBOL_GPL vmlinux 0xf0879203 led_set_brightness_sync +EXPORT_SYMBOL_GPL vmlinux 0xf0903853 ata_ehi_push_desc EXPORT_SYMBOL_GPL vmlinux 0xf0910075 sfp_bus_del_upstream -EXPORT_SYMBOL_GPL vmlinux 0xf0a735ae pinctrl_utils_add_config -EXPORT_SYMBOL_GPL vmlinux 0xf0ac47f8 tpm_is_tpm2 -EXPORT_SYMBOL_GPL vmlinux 0xf0acc63d dev_attr_sw_activity -EXPORT_SYMBOL_GPL vmlinux 0xf0ad0fdb fscrypt_drop_inode -EXPORT_SYMBOL_GPL vmlinux 0xf0b4b47b irq_domain_push_irq -EXPORT_SYMBOL_GPL vmlinux 0xf0bf99ca ata_port_freeze +EXPORT_SYMBOL_GPL vmlinux 0xf097139a fat_update_time +EXPORT_SYMBOL_GPL vmlinux 0xf0a213e3 regulator_is_supported_voltage +EXPORT_SYMBOL_GPL vmlinux 0xf0b440a2 __fib_lookup EXPORT_SYMBOL_GPL vmlinux 0xf0d02a17 sbitmap_queue_wake_up -EXPORT_SYMBOL_GPL vmlinux 0xf0d3e2cd vas_paste_crb -EXPORT_SYMBOL_GPL vmlinux 0xf0d747de bio_clone_blkg_association -EXPORT_SYMBOL_GPL vmlinux 0xf0e8a2b5 blk_mq_update_nr_hw_queues -EXPORT_SYMBOL_GPL vmlinux 0xf0ecb35a switchdev_handle_port_obj_del -EXPORT_SYMBOL_GPL vmlinux 0xf1026835 phy_led_triggers_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf102db35 tc3589x_reg_write -EXPORT_SYMBOL_GPL vmlinux 0xf10f54c1 blk_trace_startstop -EXPORT_SYMBOL_GPL vmlinux 0xf1284c3b devm_kstrdup -EXPORT_SYMBOL_GPL vmlinux 0xf12eea2e iommu_sva_unbind_device -EXPORT_SYMBOL_GPL vmlinux 0xf146eb92 key_type_asymmetric -EXPORT_SYMBOL_GPL vmlinux 0xf1538088 ata_scsi_slave_config -EXPORT_SYMBOL_GPL vmlinux 0xf164ddec crypto_unregister_algs +EXPORT_SYMBOL_GPL vmlinux 0xf0d239bf crypto_stats_akcipher_verify +EXPORT_SYMBOL_GPL vmlinux 0xf0dd6280 sysfs_rename_link_ns +EXPORT_SYMBOL_GPL vmlinux 0xf0e2d628 genphy_c45_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0xf142503b irq_find_matching_fwspec +EXPORT_SYMBOL_GPL vmlinux 0xf15a78ca usb_get_from_anchor +EXPORT_SYMBOL_GPL vmlinux 0xf1626125 __traceiter_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0xf16f6609 iommu_aux_detach_device +EXPORT_SYMBOL_GPL vmlinux 0xf17961ed nvdimm_cmd_mask EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off +EXPORT_SYMBOL_GPL vmlinux 0xf1874b3b ping_bind +EXPORT_SYMBOL_GPL vmlinux 0xf1994db4 wait_for_stable_page +EXPORT_SYMBOL_GPL vmlinux 0xf1a50122 n_tty_inherit_ops EXPORT_SYMBOL_GPL vmlinux 0xf1a62b6f of_i8042_kbd_irq -EXPORT_SYMBOL_GPL vmlinux 0xf1b03f56 cpci_hp_register_controller -EXPORT_SYMBOL_GPL vmlinux 0xf1ba0a42 ata_sas_port_stop EXPORT_SYMBOL_GPL vmlinux 0xf1c2bafe irq_force_affinity -EXPORT_SYMBOL_GPL vmlinux 0xf1c3bc22 xhci_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xf1ccf430 put_device -EXPORT_SYMBOL_GPL vmlinux 0xf1cf31e8 of_dma_configure_id -EXPORT_SYMBOL_GPL vmlinux 0xf1d3c40c ip6_route_input_lookup -EXPORT_SYMBOL_GPL vmlinux 0xf1e76d25 of_i2c_get_board_info -EXPORT_SYMBOL_GPL vmlinux 0xf1eba845 devlink_trap_groups_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf1ec4e8a devm_power_supply_get_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0xf1f10f85 icc_get -EXPORT_SYMBOL_GPL vmlinux 0xf1f30db0 blk_queue_flag_test_and_set -EXPORT_SYMBOL_GPL vmlinux 0xf1fe5658 virtio_device_restore -EXPORT_SYMBOL_GPL vmlinux 0xf1fe819d ehci_handshake -EXPORT_SYMBOL_GPL vmlinux 0xf21dee38 linear_hugepage_index +EXPORT_SYMBOL_GPL vmlinux 0xf1cf9205 pin_get_name +EXPORT_SYMBOL_GPL vmlinux 0xf1f355b8 blk_update_request +EXPORT_SYMBOL_GPL vmlinux 0xf20a44fe of_property_read_string_helper EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0xf226ba75 virtqueue_poll -EXPORT_SYMBOL_GPL vmlinux 0xf229563f pci_vfs_assigned -EXPORT_SYMBOL_GPL vmlinux 0xf239e402 gov_attr_set_put -EXPORT_SYMBOL_GPL vmlinux 0xf23c6d89 dev_pm_qos_update_request -EXPORT_SYMBOL_GPL vmlinux 0xf23fd469 tty_mode_ioctl -EXPORT_SYMBOL_GPL vmlinux 0xf2412103 devlink_port_attrs_pci_sf_set -EXPORT_SYMBOL_GPL vmlinux 0xf2537dd1 pci_d3cold_disable -EXPORT_SYMBOL_GPL vmlinux 0xf25c8df3 rtnl_register_module -EXPORT_SYMBOL_GPL vmlinux 0xf26a5c22 serdev_device_remove -EXPORT_SYMBOL_GPL vmlinux 0xf26af5fc fsverity_ioctl_enable +EXPORT_SYMBOL_GPL vmlinux 0xf21faa44 __rio_local_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0xf21ff0c0 device_set_of_node_from_dev +EXPORT_SYMBOL_GPL vmlinux 0xf22f2715 crypto_grab_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xf23779a4 __devm_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0xf239c323 devm_hwspin_lock_free +EXPORT_SYMBOL_GPL vmlinux 0xf23faebd blk_mq_rdma_map_queues +EXPORT_SYMBOL_GPL vmlinux 0xf2469a04 usb_wakeup_notification EXPORT_SYMBOL_GPL vmlinux 0xf2800817 of_get_display_timings -EXPORT_SYMBOL_GPL vmlinux 0xf2847d33 perf_event_refresh -EXPORT_SYMBOL_GPL vmlinux 0xf285bd68 fsl8250_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0xf28dc607 syscon_regmap_lookup_by_phandle_optional -EXPORT_SYMBOL_GPL vmlinux 0xf291fc92 fwnode_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0xf28b6062 spi_finalize_current_transfer +EXPORT_SYMBOL_GPL vmlinux 0xf2918cd0 of_hwspin_lock_get_id EXPORT_SYMBOL_GPL vmlinux 0xf2967796 ring_buffer_record_on -EXPORT_SYMBOL_GPL vmlinux 0xf29a644d cgrp_dfl_root -EXPORT_SYMBOL_GPL vmlinux 0xf29c1263 sdio_writel -EXPORT_SYMBOL_GPL vmlinux 0xf29e8507 netdev_rx_handler_register +EXPORT_SYMBOL_GPL vmlinux 0xf29e4283 sched_trace_rq_cpu +EXPORT_SYMBOL_GPL vmlinux 0xf2ac1cd4 __traceiter_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0xf2aea620 posix_acl_access_xattr_handler EXPORT_SYMBOL_GPL vmlinux 0xf2b33cb7 memory_cgrp_subsys_on_dfl_key EXPORT_SYMBOL_GPL vmlinux 0xf2f0b73a xive_native_get_vp_state EXPORT_SYMBOL_GPL vmlinux 0xf2fb61bd vprintk_default -EXPORT_SYMBOL_GPL vmlinux 0xf2fcd34b nl_table -EXPORT_SYMBOL_GPL vmlinux 0xf3009a4c dev_pm_opp_get_max_volt_latency -EXPORT_SYMBOL_GPL vmlinux 0xf30303f2 handle_irq_desc -EXPORT_SYMBOL_GPL vmlinux 0xf30832ae pseries_eeh_init_edev_recursive +EXPORT_SYMBOL_GPL vmlinux 0xf3027ceb __traceiter_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0xf30428fc adp5520_write +EXPORT_SYMBOL_GPL vmlinux 0xf304e952 bpf_prog_add EXPORT_SYMBOL_GPL vmlinux 0xf30a5502 cpufreq_enable_boost_support -EXPORT_SYMBOL_GPL vmlinux 0xf30a732e adp5520_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xf30d1cdd devm_devfreq_event_add_edev -EXPORT_SYMBOL_GPL vmlinux 0xf30d3c0f gpiod_set_value_cansleep EXPORT_SYMBOL_GPL vmlinux 0xf311e156 key_being_used_for -EXPORT_SYMBOL_GPL vmlinux 0xf312bf0b pci_disable_sriov EXPORT_SYMBOL_GPL vmlinux 0xf31632e0 ezx_pcap_read -EXPORT_SYMBOL_GPL vmlinux 0xf317f4e9 serial8250_em485_destroy +EXPORT_SYMBOL_GPL vmlinux 0xf317850b inet6_hash_connect EXPORT_SYMBOL_GPL vmlinux 0xf319c605 vas_copy_crb EXPORT_SYMBOL_GPL vmlinux 0xf31b3fd1 workqueue_set_max_active EXPORT_SYMBOL_GPL vmlinux 0xf331236f btree_geo32 -EXPORT_SYMBOL_GPL vmlinux 0xf3333b96 fuse_dev_release +EXPORT_SYMBOL_GPL vmlinux 0xf33df631 dm_per_bio_data EXPORT_SYMBOL_GPL vmlinux 0xf352023f memory_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xf352433a kvmppc_h_remove +EXPORT_SYMBOL_GPL vmlinux 0xf35768ca dev_pm_qos_add_ancestor_request EXPORT_SYMBOL_GPL vmlinux 0xf3797506 mpi_ec_deinit +EXPORT_SYMBOL_GPL vmlinux 0xf37b971f dw_pcie_own_conf_map_bus EXPORT_SYMBOL_GPL vmlinux 0xf3808cb1 get_state_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0xf385565d devm_pm_clk_create -EXPORT_SYMBOL_GPL vmlinux 0xf3a71901 ipv4_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xf38273b1 udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xf39625ff iommu_report_device_fault +EXPORT_SYMBOL_GPL vmlinux 0xf399af6f tracing_snapshot_cond +EXPORT_SYMBOL_GPL vmlinux 0xf3a83898 blk_ksm_init EXPORT_SYMBOL_GPL vmlinux 0xf3b451ca kdb_poll_funcs -EXPORT_SYMBOL_GPL vmlinux 0xf3bda34e device_wakeup_disable -EXPORT_SYMBOL_GPL vmlinux 0xf3c15270 powercap_unregister_control_type -EXPORT_SYMBOL_GPL vmlinux 0xf3db5010 pci_hp_remove_devices -EXPORT_SYMBOL_GPL vmlinux 0xf3dc6526 blkg_rwstat_recursive_sum -EXPORT_SYMBOL_GPL vmlinux 0xf3f017b6 regulator_get_voltage -EXPORT_SYMBOL_GPL vmlinux 0xf3f2e0de disk_update_readahead -EXPORT_SYMBOL_GPL vmlinux 0xf3fdd09d devm_i2c_new_dummy_device -EXPORT_SYMBOL_GPL vmlinux 0xf4088c3f devfreq_event_get_event -EXPORT_SYMBOL_GPL vmlinux 0xf4116153 phy_modify_changed -EXPORT_SYMBOL_GPL vmlinux 0xf41d7eab devlink_is_reload_failed -EXPORT_SYMBOL_GPL vmlinux 0xf423351d sched_set_fifo_low -EXPORT_SYMBOL_GPL vmlinux 0xf42c9304 usb_anchor_urb -EXPORT_SYMBOL_GPL vmlinux 0xf43fa07b dw_pcie_own_conf_map_bus -EXPORT_SYMBOL_GPL vmlinux 0xf449e979 devm_fwnode_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0xf44b133e iommu_get_domain_for_dev -EXPORT_SYMBOL_GPL vmlinux 0xf450469b crypto_type_has_alg -EXPORT_SYMBOL_GPL vmlinux 0xf4575446 gpiochip_generic_free +EXPORT_SYMBOL_GPL vmlinux 0xf3b64217 ata_host_init +EXPORT_SYMBOL_GPL vmlinux 0xf3b90936 devm_phy_create +EXPORT_SYMBOL_GPL vmlinux 0xf3d946bc fscrypt_ioctl_remove_key_all_users +EXPORT_SYMBOL_GPL vmlinux 0xf3e4b9c3 device_reprobe +EXPORT_SYMBOL_GPL vmlinux 0xf3eba77a devm_serdev_device_open +EXPORT_SYMBOL_GPL vmlinux 0xf3f39550 platform_device_del +EXPORT_SYMBOL_GPL vmlinux 0xf4097d85 iommu_set_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0xf4098504 usb_alloc_urb +EXPORT_SYMBOL_GPL vmlinux 0xf424ae3f kvmppc_invalidate_hpte +EXPORT_SYMBOL_GPL vmlinux 0xf42a7da4 platform_find_device_by_driver +EXPORT_SYMBOL_GPL vmlinux 0xf42bd82c security_path_link +EXPORT_SYMBOL_GPL vmlinux 0xf43752b5 dm_noflush_suspending EXPORT_SYMBOL_GPL vmlinux 0xf4689d50 linkmode_set_pause -EXPORT_SYMBOL_GPL vmlinux 0xf46ed80d iommu_set_pgtable_quirks EXPORT_SYMBOL_GPL vmlinux 0xf46f7c73 __wake_up_sync_key EXPORT_SYMBOL_GPL vmlinux 0xf47654df irq_check_status_bit -EXPORT_SYMBOL_GPL vmlinux 0xf4994b24 device_add_software_node +EXPORT_SYMBOL_GPL vmlinux 0xf47df1c2 fuse_get_unique +EXPORT_SYMBOL_GPL vmlinux 0xf4908a0b cpufreq_freq_transition_begin EXPORT_SYMBOL_GPL vmlinux 0xf4a00349 __tracepoint_block_rq_insert EXPORT_SYMBOL_GPL vmlinux 0xf4af35c2 rcu_gp_is_normal -EXPORT_SYMBOL_GPL vmlinux 0xf4b8c037 of_fdt_unflatten_tree -EXPORT_SYMBOL_GPL vmlinux 0xf4bb53c0 reset_control_get_count -EXPORT_SYMBOL_GPL vmlinux 0xf4cbfdfc nd_region_provider_data -EXPORT_SYMBOL_GPL vmlinux 0xf4ccc991 ata_sff_softreset EXPORT_SYMBOL_GPL vmlinux 0xf4cd9f8f reset_control_bulk_release -EXPORT_SYMBOL_GPL vmlinux 0xf4d66108 crypto_unregister_shashes -EXPORT_SYMBOL_GPL vmlinux 0xf4dcc4e6 pci_hp_deregister -EXPORT_SYMBOL_GPL vmlinux 0xf50d7269 rio_release_inb_pwrite -EXPORT_SYMBOL_GPL vmlinux 0xf5109a40 usb_role_switch_register -EXPORT_SYMBOL_GPL vmlinux 0xf532348a devm_fwnode_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0xf4e49370 cxl_afu_put +EXPORT_SYMBOL_GPL vmlinux 0xf4ec8dbe ata_pci_remove_one +EXPORT_SYMBOL_GPL vmlinux 0xf4fb0d3a wm8350_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xf50bef67 nvdimm_bus_check_dimm_count +EXPORT_SYMBOL_GPL vmlinux 0xf511edfd serial8250_em485_stop_tx +EXPORT_SYMBOL_GPL vmlinux 0xf512764c of_prop_next_string +EXPORT_SYMBOL_GPL vmlinux 0xf513dda7 devres_get +EXPORT_SYMBOL_GPL vmlinux 0xf5270ef7 of_icc_get_from_provider +EXPORT_SYMBOL_GPL vmlinux 0xf539566d __clocksource_register_scale +EXPORT_SYMBOL_GPL vmlinux 0xf53c9ecc devm_thermal_of_cooling_device_register EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm +EXPORT_SYMBOL_GPL vmlinux 0xf551e9a9 skb_to_sgvec EXPORT_SYMBOL_GPL vmlinux 0xf553318d cpuidle_pause_and_lock -EXPORT_SYMBOL_GPL vmlinux 0xf5583654 usb_alloc_dev -EXPORT_SYMBOL_GPL vmlinux 0xf55aff18 dm_table_set_type -EXPORT_SYMBOL_GPL vmlinux 0xf565fa6c thermal_zone_unbind_cooling_device -EXPORT_SYMBOL_GPL vmlinux 0xf5926b32 sock_prot_inuse_add -EXPORT_SYMBOL_GPL vmlinux 0xf59dc8bd firmware_request_cache -EXPORT_SYMBOL_GPL vmlinux 0xf5a28ca4 __devm_clk_hw_register_mux +EXPORT_SYMBOL_GPL vmlinux 0xf5575bd9 pci_remove_root_bus +EXPORT_SYMBOL_GPL vmlinux 0xf5669ecd crypto_alloc_shash +EXPORT_SYMBOL_GPL vmlinux 0xf56b5d86 rio_release_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0xf5a164a7 dma_get_merge_boundary EXPORT_SYMBOL_GPL vmlinux 0xf5a3ba99 linear_range_values_in_range EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus -EXPORT_SYMBOL_GPL vmlinux 0xf5b78267 pm_clk_init +EXPORT_SYMBOL_GPL vmlinux 0xf5ab9efe vfio_unregister_group_dev +EXPORT_SYMBOL_GPL vmlinux 0xf5b0e33e __of_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0xf5b3a8a0 get_device_system_crosststamp +EXPORT_SYMBOL_GPL vmlinux 0xf5ba6720 of_pci_range_parser_init EXPORT_SYMBOL_GPL vmlinux 0xf5cd3243 pnv_ocxl_spa_remove_pe_from_cache -EXPORT_SYMBOL_GPL vmlinux 0xf5d20340 get_task_mm -EXPORT_SYMBOL_GPL vmlinux 0xf5d36bad sk_msg_return_zero -EXPORT_SYMBOL_GPL vmlinux 0xf5df6ae3 platform_bus -EXPORT_SYMBOL_GPL vmlinux 0xf5ec5f1a devm_pci_epc_destroy +EXPORT_SYMBOL_GPL vmlinux 0xf5db3b88 relay_file_operations +EXPORT_SYMBOL_GPL vmlinux 0xf5e3cef2 inode_congested EXPORT_SYMBOL_GPL vmlinux 0xf5f370e0 async_schedule_node -EXPORT_SYMBOL_GPL vmlinux 0xf5f7fe3d regulator_list_voltage_table -EXPORT_SYMBOL_GPL vmlinux 0xf5f828e3 report_iommu_fault -EXPORT_SYMBOL_GPL vmlinux 0xf6057a60 fat_scan -EXPORT_SYMBOL_GPL vmlinux 0xf6198a6f fwnode_device_is_available +EXPORT_SYMBOL_GPL vmlinux 0xf5f4bdad vc_scrolldelta_helper +EXPORT_SYMBOL_GPL vmlinux 0xf5f95582 dev_pm_opp_put_clkname +EXPORT_SYMBOL_GPL vmlinux 0xf5fdb4eb devm_regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xf5ffdf6f uart_insert_char +EXPORT_SYMBOL_GPL vmlinux 0xf60123c5 phy_configure EXPORT_SYMBOL_GPL vmlinux 0xf61ad5af kernstart_virt_addr -EXPORT_SYMBOL_GPL vmlinux 0xf61fffed iptunnel_handle_offloads +EXPORT_SYMBOL_GPL vmlinux 0xf61dea1e ehci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0xf620e182 skb_complete_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0xf636e9a5 usb_autopm_put_interface +EXPORT_SYMBOL_GPL vmlinux 0xf6379b8c rio_register_mport EXPORT_SYMBOL_GPL vmlinux 0xf63961c6 rhashtable_walk_start_check -EXPORT_SYMBOL_GPL vmlinux 0xf6485404 __clk_determine_rate -EXPORT_SYMBOL_GPL vmlinux 0xf65e310b vfs_getxattr +EXPORT_SYMBOL_GPL vmlinux 0xf6485035 dma_buf_detach +EXPORT_SYMBOL_GPL vmlinux 0xf65ab9bf stmpe_reg_write EXPORT_SYMBOL_GPL vmlinux 0xf663ee2f pcap_adc_sync -EXPORT_SYMBOL_GPL vmlinux 0xf68502fa fsverity_prepare_setattr -EXPORT_SYMBOL_GPL vmlinux 0xf6a1f180 fsnotify_put_mark +EXPORT_SYMBOL_GPL vmlinux 0xf667a9ea device_for_each_child +EXPORT_SYMBOL_GPL vmlinux 0xf677ad92 gpiod_set_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0xf67d82ca eeh_dev_open EXPORT_SYMBOL_GPL vmlinux 0xf6a28554 region_intersects -EXPORT_SYMBOL_GPL vmlinux 0xf6b736de mm_iommu_lookup -EXPORT_SYMBOL_GPL vmlinux 0xf6b75309 skcipher_walk_complete +EXPORT_SYMBOL_GPL vmlinux 0xf6a83c2e regulator_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0xf6af014e led_set_brightness +EXPORT_SYMBOL_GPL vmlinux 0xf6aff344 regulator_set_voltage EXPORT_SYMBOL_GPL vmlinux 0xf6bc5dd5 xas_get_mark -EXPORT_SYMBOL_GPL vmlinux 0xf6bdb94e crypto_unregister_ahash EXPORT_SYMBOL_GPL vmlinux 0xf6beee37 __SCK__tp_func_pelt_cfs_tp -EXPORT_SYMBOL_GPL vmlinux 0xf6c48323 to_nd_desc EXPORT_SYMBOL_GPL vmlinux 0xf6c8dc62 cpu_hotplug_enable -EXPORT_SYMBOL_GPL vmlinux 0xf6cbed8c bus_create_file +EXPORT_SYMBOL_GPL vmlinux 0xf6ca5a35 tcp_get_syncookie_mss +EXPORT_SYMBOL_GPL vmlinux 0xf6d1eecb devres_add +EXPORT_SYMBOL_GPL vmlinux 0xf6df566b regulator_get_current_limit EXPORT_SYMBOL_GPL vmlinux 0xf6e05d25 rhashtable_init -EXPORT_SYMBOL_GPL vmlinux 0xf6e497ce ata_pci_device_do_suspend +EXPORT_SYMBOL_GPL vmlinux 0xf6e1fdcc ata_sff_prereset +EXPORT_SYMBOL_GPL vmlinux 0xf6e63061 led_trigger_set EXPORT_SYMBOL_GPL vmlinux 0xf6e772c3 irq_bypass_unregister_producer EXPORT_SYMBOL_GPL vmlinux 0xf6e874f5 ata_timing_merge -EXPORT_SYMBOL_GPL vmlinux 0xf6ea624d watchdog_init_timeout -EXPORT_SYMBOL_GPL vmlinux 0xf6f02615 pm_clk_add -EXPORT_SYMBOL_GPL vmlinux 0xf6f6a710 powercap_register_zone -EXPORT_SYMBOL_GPL vmlinux 0xf7017467 cgroup_get_from_fd -EXPORT_SYMBOL_GPL vmlinux 0xf71393d6 irq_domain_alloc_irqs_parent -EXPORT_SYMBOL_GPL vmlinux 0xf71f5a49 thermal_remove_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0xf6f388eb sched_set_normal +EXPORT_SYMBOL_GPL vmlinux 0xf6f46c9b devm_platform_get_and_ioremap_resource +EXPORT_SYMBOL_GPL vmlinux 0xf6fbd059 l3mdev_fib_table_by_index +EXPORT_SYMBOL_GPL vmlinux 0xf6fd4207 dev_pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0xf7236072 __raw_v4_lookup EXPORT_SYMBOL_GPL vmlinux 0xf72a65ea tty_get_char_size EXPORT_SYMBOL_GPL vmlinux 0xf72ac9fe __sbitmap_queue_get_shallow -EXPORT_SYMBOL_GPL vmlinux 0xf72b09bb inet_csk_reqsk_queue_hash_add -EXPORT_SYMBOL_GPL vmlinux 0xf72ca980 trace_seq_path -EXPORT_SYMBOL_GPL vmlinux 0xf72f1704 component_add -EXPORT_SYMBOL_GPL vmlinux 0xf733dc86 kvmppc_host_rm_ops_hv +EXPORT_SYMBOL_GPL vmlinux 0xf72cf6f7 devm_add_action 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 0xf7582726 kobject_get_path -EXPORT_SYMBOL_GPL vmlinux 0xf75b52ec wakeup_source_remove -EXPORT_SYMBOL_GPL vmlinux 0xf75fd30d devm_clk_hw_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf77fc92d devlink_param_unpublish +EXPORT_SYMBOL_GPL vmlinux 0xf759cfea tps6586x_get_version +EXPORT_SYMBOL_GPL vmlinux 0xf75e11a4 vp_modern_config_vector +EXPORT_SYMBOL_GPL vmlinux 0xf76031d7 rtc_class_close +EXPORT_SYMBOL_GPL vmlinux 0xf76cfe79 tty_kclose +EXPORT_SYMBOL_GPL vmlinux 0xf77b7168 fsnotify +EXPORT_SYMBOL_GPL vmlinux 0xf7800b20 tcp_sendpage_locked +EXPORT_SYMBOL_GPL vmlinux 0xf7829580 gpiod_set_array_value_cansleep EXPORT_SYMBOL_GPL vmlinux 0xf782fb07 percpu_ref_switch_to_atomic_sync -EXPORT_SYMBOL_GPL vmlinux 0xf787cfc4 devm_gpio_request_one -EXPORT_SYMBOL_GPL vmlinux 0xf7905c82 pinctrl_count_index_with_args -EXPORT_SYMBOL_GPL vmlinux 0xf7977b3c tps6586x_get_version +EXPORT_SYMBOL_GPL vmlinux 0xf78b9c9a devm_rtc_allocate_device +EXPORT_SYMBOL_GPL vmlinux 0xf7a6504f dma_wait_for_async_tx +EXPORT_SYMBOL_GPL vmlinux 0xf7a7585e md_find_rdev_rcu EXPORT_SYMBOL_GPL vmlinux 0xf7b5790c alarm_try_to_cancel -EXPORT_SYMBOL_GPL vmlinux 0xf7b9885d usb_hcd_unlink_urb_from_ep +EXPORT_SYMBOL_GPL vmlinux 0xf7b872ec fsverity_cleanup_inode EXPORT_SYMBOL_GPL vmlinux 0xf7bc95b0 devlink_fmsg_pair_nest_start -EXPORT_SYMBOL_GPL vmlinux 0xf7d4a3f4 pm_generic_freeze_noirq +EXPORT_SYMBOL_GPL vmlinux 0xf7d41151 metadata_dst_free EXPORT_SYMBOL_GPL vmlinux 0xf7d961d8 clk_hw_unregister_composite -EXPORT_SYMBOL_GPL vmlinux 0xf7e43a69 of_usb_get_dr_mode_by_phy -EXPORT_SYMBOL_GPL vmlinux 0xf7e70e5b of_mm_gpiochip_add_data -EXPORT_SYMBOL_GPL vmlinux 0xf7ef60df device_match_any -EXPORT_SYMBOL_GPL vmlinux 0xf803dd96 ip_local_out -EXPORT_SYMBOL_GPL vmlinux 0xf805b12f tun_get_tx_ring +EXPORT_SYMBOL_GPL vmlinux 0xf7feec90 dev_pm_opp_get_opp_table +EXPORT_SYMBOL_GPL vmlinux 0xf801e53a regmap_irq_get_domain EXPORT_SYMBOL_GPL vmlinux 0xf80c2042 srcu_barrier -EXPORT_SYMBOL_GPL vmlinux 0xf8169e6f of_reserved_mem_lookup -EXPORT_SYMBOL_GPL vmlinux 0xf823537e gpiochip_relres_irq EXPORT_SYMBOL_GPL vmlinux 0xf82f3657 work_on_cpu -EXPORT_SYMBOL_GPL vmlinux 0xf83abaef tps6586x_irq_get_virq -EXPORT_SYMBOL_GPL vmlinux 0xf84c5a0c dm_noflush_suspending +EXPORT_SYMBOL_GPL vmlinux 0xf84c581e copro_calculate_slb EXPORT_SYMBOL_GPL vmlinux 0xf852d746 __tracepoint_tcp_send_reset -EXPORT_SYMBOL_GPL vmlinux 0xf85ccd25 gpiochip_irqchip_add_domain -EXPORT_SYMBOL_GPL vmlinux 0xf86ccc40 generic_fh_to_dentry -EXPORT_SYMBOL_GPL vmlinux 0xf87057fc badblocks_check -EXPORT_SYMBOL_GPL vmlinux 0xf881949d devm_clk_hw_get_clk -EXPORT_SYMBOL_GPL vmlinux 0xf8826084 bpf_prog_sub -EXPORT_SYMBOL_GPL vmlinux 0xf8905c06 sata_link_debounce -EXPORT_SYMBOL_GPL vmlinux 0xf895ccd8 fuse_init_fs_context_submount -EXPORT_SYMBOL_GPL vmlinux 0xf8a8670a da9052_free_irq -EXPORT_SYMBOL_GPL vmlinux 0xf8afefdd input_device_enabled -EXPORT_SYMBOL_GPL vmlinux 0xf8b6f787 srp_remove_host -EXPORT_SYMBOL_GPL vmlinux 0xf8bd597e iomap_readahead -EXPORT_SYMBOL_GPL vmlinux 0xf8bfb659 sysfs_group_change_owner -EXPORT_SYMBOL_GPL vmlinux 0xf8cf1606 of_thermal_is_trip_valid +EXPORT_SYMBOL_GPL vmlinux 0xf856d153 platform_get_irq_optional +EXPORT_SYMBOL_GPL vmlinux 0xf86fbf8d alloc_dax +EXPORT_SYMBOL_GPL vmlinux 0xf8765b99 devm_gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0xf8772d5d component_add_typed +EXPORT_SYMBOL_GPL vmlinux 0xf8947b16 sysfs_chmod_file +EXPORT_SYMBOL_GPL vmlinux 0xf895786d kvm_alloc_hpt_cma +EXPORT_SYMBOL_GPL vmlinux 0xf899dc80 devfreq_event_reset_event +EXPORT_SYMBOL_GPL vmlinux 0xf89a0c21 dev_attr_sw_activity +EXPORT_SYMBOL_GPL vmlinux 0xf8a69c47 fuse_dev_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf8bf40e0 __synth_event_gen_cmd_start +EXPORT_SYMBOL_GPL vmlinux 0xf8c05c15 fib_rules_lookup EXPORT_SYMBOL_GPL vmlinux 0xf8d0aa97 kvmppc_update_dirty_map -EXPORT_SYMBOL_GPL vmlinux 0xf8d4d5c4 public_key_subtype -EXPORT_SYMBOL_GPL vmlinux 0xf8ebc4eb usb_hcd_resume_root_hub +EXPORT_SYMBOL_GPL vmlinux 0xf8d53988 tcp_done +EXPORT_SYMBOL_GPL vmlinux 0xf8e37b69 hrtimer_init_sleeper EXPORT_SYMBOL_GPL vmlinux 0xf8f3a0fb ata_ratelimit -EXPORT_SYMBOL_GPL vmlinux 0xf8f55353 debugfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0xf8fca78f __regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0xf901a1d9 ata_pci_sff_activate_host +EXPORT_SYMBOL_GPL vmlinux 0xf902e313 __page_file_mapping EXPORT_SYMBOL_GPL vmlinux 0xf9093f5b __tracepoint_cpu_frequency -EXPORT_SYMBOL_GPL vmlinux 0xf911b22d wbc_attach_and_unlock_inode -EXPORT_SYMBOL_GPL vmlinux 0xf913e269 locks_alloc_lock -EXPORT_SYMBOL_GPL vmlinux 0xf91f28b0 mddev_init_writes_pending -EXPORT_SYMBOL_GPL vmlinux 0xf91f801f pci_find_ht_capability -EXPORT_SYMBOL_GPL vmlinux 0xf9242dbc raw_abort -EXPORT_SYMBOL_GPL vmlinux 0xf92dc156 dev_pm_opp_get_freq +EXPORT_SYMBOL_GPL vmlinux 0xf90b6e47 tracing_snapshot_cond_enable +EXPORT_SYMBOL_GPL vmlinux 0xf91a12cb devlink_port_param_value_changed +EXPORT_SYMBOL_GPL vmlinux 0xf92bc0d5 subsys_virtual_register +EXPORT_SYMBOL_GPL vmlinux 0xf92dd3db securityfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0xf9516cae irq_set_chained_handler_and_data EXPORT_SYMBOL_GPL vmlinux 0xf95322f4 kthread_parkme EXPORT_SYMBOL_GPL vmlinux 0xf955e9c5 bprintf -EXPORT_SYMBOL_GPL vmlinux 0xf959d7d0 i2c_of_match_device -EXPORT_SYMBOL_GPL vmlinux 0xf9600988 clk_gate_restore_context -EXPORT_SYMBOL_GPL vmlinux 0xf967f8b9 crypto_larval_alloc EXPORT_SYMBOL_GPL vmlinux 0xf97471ef opal_i2c_request +EXPORT_SYMBOL_GPL vmlinux 0xf987ceae ata_cable_ignore EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies -EXPORT_SYMBOL_GPL vmlinux 0xf9ac8f98 zap_vma_ptes -EXPORT_SYMBOL_GPL vmlinux 0xf9b83e44 platform_msi_domain_free_irqs -EXPORT_SYMBOL_GPL vmlinux 0xf9cdd5b5 dev_pm_domain_attach_by_id -EXPORT_SYMBOL_GPL vmlinux 0xf9d9fad0 ata_host_put -EXPORT_SYMBOL_GPL vmlinux 0xf9ee43da rio_request_inb_pwrite -EXPORT_SYMBOL_GPL vmlinux 0xf9f50dd7 wm8350_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xf9f9bc9e sdio_claim_host -EXPORT_SYMBOL_GPL vmlinux 0xfa1114cb cpufreq_freq_transition_begin +EXPORT_SYMBOL_GPL vmlinux 0xf9b6744e netlink_add_tap +EXPORT_SYMBOL_GPL vmlinux 0xf9bc7246 device_link_del +EXPORT_SYMBOL_GPL vmlinux 0xf9c3ec06 cpufreq_frequency_table_get_index +EXPORT_SYMBOL_GPL vmlinux 0xf9ce32f4 skb_splice_bits +EXPORT_SYMBOL_GPL vmlinux 0xf9d38f1c vfio_virqfd_disable +EXPORT_SYMBOL_GPL vmlinux 0xf9da5929 tps65912_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0xf9e06dbc cpufreq_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xf9f04e3f gpiod_get_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0xf9f245ca usb_get_urb +EXPORT_SYMBOL_GPL vmlinux 0xfa00d978 icc_provider_del EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops -EXPORT_SYMBOL_GPL vmlinux 0xfa20ca59 devm_add_action -EXPORT_SYMBOL_GPL vmlinux 0xfa33e3e8 scsi_internal_device_block_nowait -EXPORT_SYMBOL_GPL vmlinux 0xfa49e523 regulator_desc_list_voltage_linear_range -EXPORT_SYMBOL_GPL vmlinux 0xfa49ffcd xfrm_output -EXPORT_SYMBOL_GPL vmlinux 0xfa5a6209 crypto_unregister_rngs +EXPORT_SYMBOL_GPL vmlinux 0xfa2644eb rio_set_port_lockout +EXPORT_SYMBOL_GPL vmlinux 0xfa304a12 iomap_finish_ioends +EXPORT_SYMBOL_GPL vmlinux 0xfa39786f eeh_pe_set_option +EXPORT_SYMBOL_GPL vmlinux 0xfa3dc898 set_online_page_callback +EXPORT_SYMBOL_GPL vmlinux 0xfa53212d spi_sync +EXPORT_SYMBOL_GPL vmlinux 0xfa655f48 ata_sas_tport_delete EXPORT_SYMBOL_GPL vmlinux 0xfa666974 queue_work_node EXPORT_SYMBOL_GPL vmlinux 0xfa690589 netdev_cmd_to_name -EXPORT_SYMBOL_GPL vmlinux 0xfa6da14e dev_pm_opp_of_add_table_indexed -EXPORT_SYMBOL_GPL vmlinux 0xfa7e5bcf thermal_zone_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xfa916bd6 fwnode_get_parent -EXPORT_SYMBOL_GPL vmlinux 0xfaa7d52b devlink_port_attrs_set -EXPORT_SYMBOL_GPL vmlinux 0xfaa98d9f crypto_stats_kpp_compute_shared_secret -EXPORT_SYMBOL_GPL vmlinux 0xfaaa04b9 crypto_register_ahash +EXPORT_SYMBOL_GPL vmlinux 0xfa7ec78d ata_sas_sync_probe +EXPORT_SYMBOL_GPL vmlinux 0xfa8fc646 regulator_enable_regmap +EXPORT_SYMBOL_GPL vmlinux 0xfa9caeda relay_switch_subbuf +EXPORT_SYMBOL_GPL vmlinux 0xfa9fbb22 pm_generic_freeze_noirq +EXPORT_SYMBOL_GPL vmlinux 0xfaa1d038 dm_copy_name_and_uuid +EXPORT_SYMBOL_GPL vmlinux 0xfab09a9b md_rdev_clear EXPORT_SYMBOL_GPL vmlinux 0xfab30dc0 mdio_bus_exit -EXPORT_SYMBOL_GPL vmlinux 0xfab41f4f sk_setup_caps EXPORT_SYMBOL_GPL vmlinux 0xfab53ed9 pinctrl_gpio_can_use_line -EXPORT_SYMBOL_GPL vmlinux 0xfab85a1b __pm_runtime_set_status +EXPORT_SYMBOL_GPL vmlinux 0xfab86a8b pci_bus_add_device EXPORT_SYMBOL_GPL vmlinux 0xfabb6aff opal_flash_erase -EXPORT_SYMBOL_GPL vmlinux 0xfacc9e33 clk_hw_get_parent -EXPORT_SYMBOL_GPL vmlinux 0xfacfac6e ata_sff_freeze -EXPORT_SYMBOL_GPL vmlinux 0xfad99bda devlink_unregister +EXPORT_SYMBOL_GPL vmlinux 0xfac7d948 vfio_iommu_group_put EXPORT_SYMBOL_GPL vmlinux 0xfad9c827 kill_dax -EXPORT_SYMBOL_GPL vmlinux 0xfadbd9d4 gpiochip_line_is_irq -EXPORT_SYMBOL_GPL vmlinux 0xfaeccb9b inet_csk_addr2sockaddr -EXPORT_SYMBOL_GPL vmlinux 0xfaf350dd pinctrl_get_group_pins -EXPORT_SYMBOL_GPL vmlinux 0xfb03a7ab crypto_req_done -EXPORT_SYMBOL_GPL vmlinux 0xfb041b56 spi_mem_dirmap_destroy -EXPORT_SYMBOL_GPL vmlinux 0xfb041ca0 cpufreq_cooling_register -EXPORT_SYMBOL_GPL vmlinux 0xfb19230c pm_runtime_no_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xfadb0acd blk_ksm_init_passthrough +EXPORT_SYMBOL_GPL vmlinux 0xfb13bbe9 syscon_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0xfb224c4b ata_noop_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0xfb304d01 of_irq_parse_raw EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync -EXPORT_SYMBOL_GPL vmlinux 0xfb53564c crypto_stats_akcipher_sign -EXPORT_SYMBOL_GPL vmlinux 0xfb6764f3 regulator_map_voltage_iterate -EXPORT_SYMBOL_GPL vmlinux 0xfb6ecc65 mmc_get_ext_csd +EXPORT_SYMBOL_GPL vmlinux 0xfb40fc2d kernfs_get +EXPORT_SYMBOL_GPL vmlinux 0xfb471fda fscrypt_mergeable_bio +EXPORT_SYMBOL_GPL vmlinux 0xfb495666 ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0xfb4e6294 perf_pmu_register +EXPORT_SYMBOL_GPL vmlinux 0xfb59f07d blk_queue_max_zone_append_sectors +EXPORT_SYMBOL_GPL vmlinux 0xfb5c5dab bpf_prog_destroy +EXPORT_SYMBOL_GPL vmlinux 0xfb699916 fib_nh_common_release +EXPORT_SYMBOL_GPL vmlinux 0xfb6d1579 devm_hwspin_lock_request EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name EXPORT_SYMBOL_GPL vmlinux 0xfb738290 trace_seq_bprintf +EXPORT_SYMBOL_GPL vmlinux 0xfb789f4a __fscrypt_encrypt_symlink EXPORT_SYMBOL_GPL vmlinux 0xfb7f8928 irq_set_affinity_notifier -EXPORT_SYMBOL_GPL vmlinux 0xfb954a26 pinmux_generic_add_function -EXPORT_SYMBOL_GPL vmlinux 0xfb9825dc usb_of_get_device_node -EXPORT_SYMBOL_GPL vmlinux 0xfba7b755 pingv6_ops +EXPORT_SYMBOL_GPL vmlinux 0xfb80ae12 sched_set_fifo +EXPORT_SYMBOL_GPL vmlinux 0xfb968fd3 tcp_register_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0xfb9d0dd6 devlink_param_value_changed EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action -EXPORT_SYMBOL_GPL vmlinux 0xfbc161a1 tcpv6_prot -EXPORT_SYMBOL_GPL vmlinux 0xfbd48b7a xhci_suspend -EXPORT_SYMBOL_GPL vmlinux 0xfbe16eb5 vfio_virqfd_enable +EXPORT_SYMBOL_GPL vmlinux 0xfbbfc22b extcon_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xfbd483ec fuse_file_poll +EXPORT_SYMBOL_GPL vmlinux 0xfbed8850 ata_dev_disable EXPORT_SYMBOL_GPL vmlinux 0xfbeeb13c phy_gbit_all_ports_features -EXPORT_SYMBOL_GPL vmlinux 0xfbf7b784 fib_rules_register -EXPORT_SYMBOL_GPL vmlinux 0xfbfdbdc0 dm_suspended -EXPORT_SYMBOL_GPL vmlinux 0xfbfe63ac kthread_use_mm +EXPORT_SYMBOL_GPL vmlinux 0xfbfc7b3f tty_port_register_device_attr EXPORT_SYMBOL_GPL vmlinux 0xfbffd601 net_prio_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xfc034d61 rio_pw_enable EXPORT_SYMBOL_GPL vmlinux 0xfc03d97a page_is_ram +EXPORT_SYMBOL_GPL vmlinux 0xfc04fe9a regcache_cache_only +EXPORT_SYMBOL_GPL vmlinux 0xfc0e7750 ata_pio_need_iordy EXPORT_SYMBOL_GPL vmlinux 0xfc14bb2e dm_get_dev_t EXPORT_SYMBOL_GPL vmlinux 0xfc19bc45 crypto_dh_encode_key +EXPORT_SYMBOL_GPL vmlinux 0xfc1a5178 wakeup_source_add EXPORT_SYMBOL_GPL vmlinux 0xfc201b66 sprint_oid +EXPORT_SYMBOL_GPL vmlinux 0xfc207b73 usb_reset_device EXPORT_SYMBOL_GPL vmlinux 0xfc234177 _kvmppc_save_tm_pr -EXPORT_SYMBOL_GPL vmlinux 0xfc2d64b6 sysfs_update_groups -EXPORT_SYMBOL_GPL vmlinux 0xfc2e7731 skb_copy_ubufs -EXPORT_SYMBOL_GPL vmlinux 0xfc40ce0f stmpe_reg_write -EXPORT_SYMBOL_GPL vmlinux 0xfc491ce8 bio_iov_iter_get_pages -EXPORT_SYMBOL_GPL vmlinux 0xfc4ade83 cpufreq_driver_fast_switch -EXPORT_SYMBOL_GPL vmlinux 0xfc5c28ea trace_event_reg -EXPORT_SYMBOL_GPL vmlinux 0xfc5daa9a vfio_pci_core_enable -EXPORT_SYMBOL_GPL vmlinux 0xfc667e2c regmap_get_raw_read_max -EXPORT_SYMBOL_GPL vmlinux 0xfc66b1fc phy_select_page +EXPORT_SYMBOL_GPL vmlinux 0xfc312785 sysfs_create_groups +EXPORT_SYMBOL_GPL vmlinux 0xfc41df6a iommu_map +EXPORT_SYMBOL_GPL vmlinux 0xfc4566fb path_noexec +EXPORT_SYMBOL_GPL vmlinux 0xfc4dcd19 trace_array_init_printk +EXPORT_SYMBOL_GPL vmlinux 0xfc5bd1ef balloon_page_dequeue EXPORT_SYMBOL_GPL vmlinux 0xfc683b45 has_big_cores -EXPORT_SYMBOL_GPL vmlinux 0xfc6fc8ac ip6_route_lookup -EXPORT_SYMBOL_GPL vmlinux 0xfc83b3f4 device_create_managed_software_node -EXPORT_SYMBOL_GPL vmlinux 0xfc8db1ab fib_new_table -EXPORT_SYMBOL_GPL vmlinux 0xfcacc6f3 blk_insert_cloned_request +EXPORT_SYMBOL_GPL vmlinux 0xfc738fff dev_pm_domain_set +EXPORT_SYMBOL_GPL vmlinux 0xfc88e48b unix_inq_len +EXPORT_SYMBOL_GPL vmlinux 0xfc89b755 sk_psock_init +EXPORT_SYMBOL_GPL vmlinux 0xfc8e3559 mmc_poll_for_busy +EXPORT_SYMBOL_GPL vmlinux 0xfc930b0a ata_pci_sff_prepare_host EXPORT_SYMBOL_GPL vmlinux 0xfcaf49b0 trace_handle_return -EXPORT_SYMBOL_GPL vmlinux 0xfcb611e6 __raw_v4_lookup -EXPORT_SYMBOL_GPL vmlinux 0xfcbf1466 fuse_conn_get +EXPORT_SYMBOL_GPL vmlinux 0xfcbcf2f2 virtqueue_kick +EXPORT_SYMBOL_GPL vmlinux 0xfcbdc443 irq_create_of_mapping EXPORT_SYMBOL_GPL vmlinux 0xfcbfec70 add_memory_driver_managed EXPORT_SYMBOL_GPL vmlinux 0xfcc1edd3 memory_block_size_bytes +EXPORT_SYMBOL_GPL vmlinux 0xfcc9412d devlink_port_unregister +EXPORT_SYMBOL_GPL vmlinux 0xfccffc44 __traceiter_block_rq_insert +EXPORT_SYMBOL_GPL vmlinux 0xfcef6f9b sock_diag_unregister_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0xfcf3da54 tcp_set_state EXPORT_SYMBOL_GPL vmlinux 0xfcf9ef73 hw_protection_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xfd207a3d edac_pci_handle_npe -EXPORT_SYMBOL_GPL vmlinux 0xfd2710f9 edac_pci_del_device -EXPORT_SYMBOL_GPL vmlinux 0xfd2fb12a rio_mport_write_config_16 -EXPORT_SYMBOL_GPL vmlinux 0xfd3ef041 perf_event_enable -EXPORT_SYMBOL_GPL vmlinux 0xfd43e0ac init_dummy_netdev -EXPORT_SYMBOL_GPL vmlinux 0xfd46b093 ima_inode_hash -EXPORT_SYMBOL_GPL vmlinux 0xfd471d30 regmap_update_bits_base -EXPORT_SYMBOL_GPL vmlinux 0xfd4a51f7 rtnl_link_register -EXPORT_SYMBOL_GPL vmlinux 0xfd5057d9 tpm_get_timeouts -EXPORT_SYMBOL_GPL vmlinux 0xfd620af9 crypto_unregister_shash -EXPORT_SYMBOL_GPL vmlinux 0xfd6347cd phy_restart_aneg -EXPORT_SYMBOL_GPL vmlinux 0xfd64f7a0 kobject_init_and_add -EXPORT_SYMBOL_GPL vmlinux 0xfd6ab11c ip_route_output_key_hash -EXPORT_SYMBOL_GPL vmlinux 0xfd75681b blk_mq_freeze_queue -EXPORT_SYMBOL_GPL vmlinux 0xfd88b471 mpc8xxx_spi_tx_buf_u8 +EXPORT_SYMBOL_GPL vmlinux 0xfcfde526 usb_driver_release_interface +EXPORT_SYMBOL_GPL vmlinux 0xfd0bceae blk_mq_queue_inflight +EXPORT_SYMBOL_GPL vmlinux 0xfd119a93 auxiliary_find_device +EXPORT_SYMBOL_GPL vmlinux 0xfd23decc splice_to_pipe +EXPORT_SYMBOL_GPL vmlinux 0xfd351322 pinctrl_generic_remove_group +EXPORT_SYMBOL_GPL vmlinux 0xfd5db89e reset_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0xfd94e873 netif_carrier_event +EXPORT_SYMBOL_GPL vmlinux 0xfd9fa913 i2c_of_match_device EXPORT_SYMBOL_GPL vmlinux 0xfda1beea hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0xfda47bec gpiochip_irqchip_irq_valid +EXPORT_SYMBOL_GPL vmlinux 0xfdb23bfc exportfs_decode_fh +EXPORT_SYMBOL_GPL vmlinux 0xfdbd7280 tty_prepare_flip_string EXPORT_SYMBOL_GPL vmlinux 0xfdbd7a17 crypto_get_attr_type -EXPORT_SYMBOL_GPL vmlinux 0xfdc27797 blk_queue_zone_write_granularity -EXPORT_SYMBOL_GPL vmlinux 0xfdd2d769 of_nvmem_cell_get -EXPORT_SYMBOL_GPL vmlinux 0xfdd754ae ipv6_find_tlv -EXPORT_SYMBOL_GPL vmlinux 0xfddf521a usb_init_urb -EXPORT_SYMBOL_GPL vmlinux 0xfde232f5 devlink_port_type_clear -EXPORT_SYMBOL_GPL vmlinux 0xfde7c143 device_driver_attach -EXPORT_SYMBOL_GPL vmlinux 0xfde9320f sdio_retune_hold_now +EXPORT_SYMBOL_GPL vmlinux 0xfdca5b38 usb_ep0_reinit +EXPORT_SYMBOL_GPL vmlinux 0xfdd1d083 xdp_return_frame_bulk +EXPORT_SYMBOL_GPL vmlinux 0xfddeb12a lp8788_read_byte +EXPORT_SYMBOL_GPL vmlinux 0xfdea6c26 gpiochip_irqchip_add_domain EXPORT_SYMBOL_GPL vmlinux 0xfded4202 list_lru_del -EXPORT_SYMBOL_GPL vmlinux 0xfe0377cc l3mdev_master_ifindex_rcu -EXPORT_SYMBOL_GPL vmlinux 0xfe13429d sync_page_io +EXPORT_SYMBOL_GPL vmlinux 0xfe04c2d0 blk_queue_max_discard_segments +EXPORT_SYMBOL_GPL vmlinux 0xfe0ca783 irq_create_fwspec_mapping +EXPORT_SYMBOL_GPL vmlinux 0xfe139a75 bsg_remove_queue EXPORT_SYMBOL_GPL vmlinux 0xfe1a7a7b mpi_point_release -EXPORT_SYMBOL_GPL vmlinux 0xfe1e0abe mptcp_pm_get_local_addr_max +EXPORT_SYMBOL_GPL vmlinux 0xfe207808 usb_of_get_device_node +EXPORT_SYMBOL_GPL vmlinux 0xfe2404b1 usb_for_each_dev EXPORT_SYMBOL_GPL vmlinux 0xfe2c3286 usb_anchor_resume_wakeups -EXPORT_SYMBOL_GPL vmlinux 0xfe2f5bb5 fwnode_connection_find_match -EXPORT_SYMBOL_GPL vmlinux 0xfe355ef2 unix_outq_len -EXPORT_SYMBOL_GPL vmlinux 0xfe45f30a pinconf_generic_dt_node_to_map +EXPORT_SYMBOL_GPL vmlinux 0xfe3c0ca8 pci_epf_bind EXPORT_SYMBOL_GPL vmlinux 0xfe476039 ktime_get_resolution_ns -EXPORT_SYMBOL_GPL vmlinux 0xfe4e182b fscrypt_set_test_dummy_encryption -EXPORT_SYMBOL_GPL vmlinux 0xfe507699 fwnode_property_read_string_array -EXPORT_SYMBOL_GPL vmlinux 0xfe569fd6 l3mdev_fib_table_rcu -EXPORT_SYMBOL_GPL vmlinux 0xfe6a211a ethnl_cable_test_fault_length +EXPORT_SYMBOL_GPL vmlinux 0xfe53768f fwnode_connection_find_match +EXPORT_SYMBOL_GPL vmlinux 0xfe69910e serdev_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0xfe6b0816 tcpv6_prot +EXPORT_SYMBOL_GPL vmlinux 0xfe71d064 of_property_read_variable_u8_array +EXPORT_SYMBOL_GPL vmlinux 0xfe76d420 debugfs_create_atomic_t +EXPORT_SYMBOL_GPL vmlinux 0xfe7ccebd sock_map_unhash +EXPORT_SYMBOL_GPL vmlinux 0xfe8205fc pcie_flr +EXPORT_SYMBOL_GPL vmlinux 0xfe82665f dm_get_queue_limits EXPORT_SYMBOL_GPL vmlinux 0xfe877fd5 xas_find_conflict EXPORT_SYMBOL_GPL vmlinux 0xfe8cdb84 ring_buffer_alloc_read_page -EXPORT_SYMBOL_GPL vmlinux 0xfe9232ad trace_array_init_printk -EXPORT_SYMBOL_GPL vmlinux 0xfe95cd2d nd_blk_memremap_flags EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free -EXPORT_SYMBOL_GPL vmlinux 0xfea8a258 usb_poison_urb -EXPORT_SYMBOL_GPL vmlinux 0xfea9966d pm_generic_poweroff_noirq +EXPORT_SYMBOL_GPL vmlinux 0xfea6b9d3 fscrypt_set_context EXPORT_SYMBOL_GPL vmlinux 0xfeaa1558 opal_async_wait_response_interruptible -EXPORT_SYMBOL_GPL vmlinux 0xfec4becc add_to_page_cache_lru -EXPORT_SYMBOL_GPL vmlinux 0xfec92ec2 tcp_ca_get_key_by_name +EXPORT_SYMBOL_GPL vmlinux 0xfeaa53e5 bdi_dev_name +EXPORT_SYMBOL_GPL vmlinux 0xfeb7183c soc_device_match +EXPORT_SYMBOL_GPL vmlinux 0xfeba425a iomap_migrate_page EXPORT_SYMBOL_GPL vmlinux 0xfed11ed1 usb_mon_deregister -EXPORT_SYMBOL_GPL vmlinux 0xfedbee32 usb_hc_died +EXPORT_SYMBOL_GPL vmlinux 0xfed29db5 tty_ldisc_receive_buf +EXPORT_SYMBOL_GPL vmlinux 0xfed3e84e usb_amd_pt_check_port +EXPORT_SYMBOL_GPL vmlinux 0xfed836cf sdio_writeb EXPORT_SYMBOL_GPL vmlinux 0xfede9222 __tracepoint_suspend_resume -EXPORT_SYMBOL_GPL vmlinux 0xfee72c09 pci_find_bus_by_node -EXPORT_SYMBOL_GPL vmlinux 0xfee96544 usb_add_phy_dev -EXPORT_SYMBOL_GPL vmlinux 0xfeffbd08 platform_get_irq_optional +EXPORT_SYMBOL_GPL vmlinux 0xfeef2a03 fuse_dev_release EXPORT_SYMBOL_GPL vmlinux 0xff05fa13 vring_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xff070ed9 of_reserved_mem_device_release EXPORT_SYMBOL_GPL vmlinux 0xff1666f3 reset_control_bulk_assert -EXPORT_SYMBOL_GPL vmlinux 0xff2556fc fsverity_ioctl_measure EXPORT_SYMBOL_GPL vmlinux 0xff291ecf clk_unregister_divider +EXPORT_SYMBOL_GPL vmlinux 0xff3b2add irq_domain_disconnect_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0xff3dfbf4 crypto_remove_spawns EXPORT_SYMBOL_GPL vmlinux 0xff42c374 usb_role_switch_get_role -EXPORT_SYMBOL_GPL vmlinux 0xff50a0e6 irq_gc_ack_set_bit -EXPORT_SYMBOL_GPL vmlinux 0xff70956f pci_ats_supported -EXPORT_SYMBOL_GPL vmlinux 0xff7df508 register_cxl_calls +EXPORT_SYMBOL_GPL vmlinux 0xff45492c blkcg_activate_policy +EXPORT_SYMBOL_GPL vmlinux 0xff59c747 nvdimm_has_cache +EXPORT_SYMBOL_GPL vmlinux 0xff5ea356 netdev_walk_all_upper_dev_rcu +EXPORT_SYMBOL_GPL vmlinux 0xff6c4609 iommu_domain_alloc EXPORT_SYMBOL_GPL vmlinux 0xff7e33bf mpi_sub_ui EXPORT_SYMBOL_GPL vmlinux 0xff81487d gpiod_remove_lookup_table -EXPORT_SYMBOL_GPL vmlinux 0xff8f0015 usb_deregister_device_driver -EXPORT_SYMBOL_GPL vmlinux 0xff93e334 pci_vpd_alloc +EXPORT_SYMBOL_GPL vmlinux 0xff985dee mdiobus_modify +EXPORT_SYMBOL_GPL vmlinux 0xff9d0363 serdev_controller_add EXPORT_SYMBOL_GPL vmlinux 0xff9e23d1 hugetlb_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xffa68605 spi_finalize_current_message EXPORT_SYMBOL_GPL vmlinux 0xffae8e8b nsecs_to_jiffies -EXPORT_SYMBOL_GPL vmlinux 0xffb5c884 device_remove_bin_file -EXPORT_SYMBOL_GPL vmlinux 0xffb7e885 regulator_get_current_limit_regmap +EXPORT_SYMBOL_GPL vmlinux 0xffb0ca4e fib_nl_delrule +EXPORT_SYMBOL_GPL vmlinux 0xffc00e7f devm_pinctrl_get EXPORT_SYMBOL_GPL vmlinux 0xffc18da1 unregister_kprobes -EXPORT_SYMBOL_GPL vmlinux 0xffdb0743 l3mdev_table_lookup_register -EXPORT_SYMBOL_GPL vmlinux 0xffe4d846 dma_buf_mmap -EXPORT_SYMBOL_GPL vmlinux 0xffe5b8e8 regulator_list_voltage_pickable_linear_range -EXPORT_SYMBOL_GPL vmlinux 0xfff44129 usb_control_msg_send +EXPORT_SYMBOL_GPL vmlinux 0xffdf7b65 usb_phy_set_charger_state +EXPORT_SYMBOL_GPL vmlinux 0xffe90899 tcp_get_info +EXPORT_SYMBOL_GPL vmlinux 0xfff29e71 gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0xffffaf61 devm_gpiod_get_index_optional FIRMWARE_LOADER_PRIVATE EXPORT_SYMBOL_GPL 0xd3ae7756 fw_fallback_config vmlinux -IIO_HID EXPORT_SYMBOL 0x03c48a55 hid_sensor_setup_trigger drivers/iio/common/hid-sensors/hid-sensor-trigger -IIO_HID EXPORT_SYMBOL 0x07cf8046 hid_sensor_read_raw_hyst_rel_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0x08a091bc hid_sensor_convert_timestamp drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0x1ee07b34 hid_sensor_power_state drivers/iio/common/hid-sensors/hid-sensor-trigger -IIO_HID EXPORT_SYMBOL 0x30fd6eab hid_sensor_write_raw_hyst_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0x3b2d59ff hid_sensor_read_raw_hyst_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x0b63cbfc hid_sensor_setup_trigger drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0x15ca8db8 hid_sensor_power_state drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0x1e398b49 hid_sensor_write_samp_freq_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x554384a8 hid_sensor_convert_timestamp drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x6a024fb3 hid_sensor_parse_common_attributes drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x6c4b5f0a hid_sensor_read_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 0x8b3dbdb7 hid_sensor_remove_trigger drivers/iio/common/hid-sensors/hid-sensor-trigger -IIO_HID EXPORT_SYMBOL 0x986f9fac hid_sensor_write_raw_hyst_rel_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0xcf15110f hid_sensor_pm_ops drivers/iio/common/hid-sensors/hid-sensor-trigger -IIO_HID EXPORT_SYMBOL 0xd5184395 hid_sensor_parse_common_attributes drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0xf55363c7 hid_sensor_read_samp_freq_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0xf8fbc10e hid_sensor_write_samp_freq_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x105d3c6e hid_sensor_batch_mode_supported drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x4dc737b4 hid_sensor_get_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x5d7c3a3a hid_sensor_read_poll_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x76f7c4e3 hid_sensor_set_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common -LTC2497 EXPORT_SYMBOL 0xd30677a1 ltc2497core_probe drivers/iio/adc/ltc2497-core -LTC2497 EXPORT_SYMBOL 0xdf89b349 ltc2497core_remove drivers/iio/adc/ltc2497-core -MCB EXPORT_SYMBOL_GPL 0x0c3dab56 mcb_alloc_dev drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x1a855f57 __mcb_register_driver drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x2f1fb851 mcb_unregister_driver drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x453a8e0b mcb_get_resource drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x6ac5b84a mcb_release_bus drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x92fb27a7 mcb_alloc_bus drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0xb508b0da mcb_device_register drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0xbf8d8440 mcb_bus_add_devices drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0xc4bf6e60 mcb_request_mem drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0xd544e525 mcb_free_dev drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0xe03debee mcb_bus_get drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0xe9feca33 mcb_get_irq drivers/mcb/mcb +IIO_HID EXPORT_SYMBOL 0x8256576f hid_sensor_read_raw_hyst_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0xdf59e7f2 hid_sensor_write_raw_hyst_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0xe729565a hid_sensor_write_raw_hyst_rel_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0xea63c35d hid_sensor_read_raw_hyst_rel_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0xecd6c799 hid_sensor_pm_ops drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0xfa23bce2 hid_sensor_remove_trigger drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x12511ad1 hid_sensor_set_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x36d9a060 hid_sensor_batch_mode_supported drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0xa2c5088d hid_sensor_read_poll_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0xf17ce466 hid_sensor_get_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common +LTC2497 EXPORT_SYMBOL 0x2b0c3a30 ltc2497core_remove drivers/iio/adc/ltc2497-core +LTC2497 EXPORT_SYMBOL 0x8d8b9e09 ltc2497core_probe drivers/iio/adc/ltc2497-core +MCB EXPORT_SYMBOL_GPL 0x098af46a mcb_bus_put drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x42c8611a mcb_alloc_dev drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x46a4b93a mcb_device_register drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x4a08b1aa mcb_release_bus drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x50c6d873 mcb_unregister_driver drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x8c306674 mcb_get_resource drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x95850180 mcb_alloc_bus drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x9b90dc13 __mcb_register_driver drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xae2bece4 chameleon_parse_cells drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xaed3e4ef mcb_get_irq drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xbcadad54 mcb_free_dev drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xcbc65614 mcb_request_mem drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xe4c97311 mcb_bus_add_devices drivers/mcb/mcb MCB EXPORT_SYMBOL_GPL 0xeb2c8905 mcb_release_mem drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0xec9bd533 chameleon_parse_cells drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0xf5dee9e9 mcb_bus_put drivers/mcb/mcb -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x07e66cd0 nvme_command_effects drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x71046d27 nvme_find_get_ns drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x84c7ed55 nvme_execute_passthru_rq drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xcae76670 nvme_put_ns drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xf94587dc nvme_ctrl_from_file drivers/nvme/host/nvme-core -PMBUS EXPORT_SYMBOL_GPL 0x0c153f50 pmbus_clear_cache drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x1b30dedb pmbus_do_probe drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x41b4addb pmbus_check_byte_register drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x45840045 pmbus_clear_faults drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x49fac464 pmbus_get_fan_rate_device drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x6e5143c7 pmbus_regulator_ops drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x74fb8c77 pmbus_read_byte_data drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x78cadcb6 pmbus_update_fan drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x7e031401 pmbus_update_byte_data drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x9622409d pmbus_set_page drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x9a0a6638 pmbus_get_driver_info drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x9a9fe1d4 pmbus_set_update drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xa02ea73e pmbus_write_byte drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xa7b0050f pmbus_get_debugfs_dir drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xc38171dc pmbus_get_fan_rate_cached drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xcc19f46c pmbus_write_word_data drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xe22ef507 pmbus_read_word_data drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xf9aecd18 pmbus_write_byte_data drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xfa601d40 pmbus_check_word_register drivers/hwmon/pmbus/pmbus_core -USB_STORAGE EXPORT_SYMBOL_GPL 0x035531ca usb_stor_Bulk_transport drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x03f29df2 usb_stor_bulk_transfer_sg drivers/usb/storage/usb-storage +MCB EXPORT_SYMBOL_GPL 0xf3dfd5ea mcb_bus_get drivers/mcb/mcb +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x11822b2e nvme_put_ns drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x326e846c nvme_execute_passthru_rq drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x56612d1c nvme_ctrl_from_file drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x690cb422 nvme_command_effects drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xc4a8f072 nvme_find_get_ns drivers/nvme/host/nvme-core +PMBUS EXPORT_SYMBOL_GPL 0x0aa6e484 pmbus_regulator_ops drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x1986c01f pmbus_check_word_register drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x1f25b3d9 pmbus_update_fan drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x244bcabe pmbus_clear_cache drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x3c856f16 pmbus_write_byte_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x3dfe44dd pmbus_get_debugfs_dir drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x5f07f356 pmbus_clear_faults drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x6f4ff63b pmbus_get_fan_rate_cached drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x734cedb1 pmbus_update_byte_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x752ac0d4 pmbus_do_probe drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x9023f885 pmbus_write_word_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x9d16512c pmbus_write_byte drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xaa4f6c2e pmbus_set_page drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xadcceac2 pmbus_read_byte_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xaf61f755 pmbus_check_byte_register drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xb00c7130 pmbus_get_driver_info drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xeab831c7 pmbus_read_word_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xed4c822a pmbus_set_update drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xff52a541 pmbus_get_fan_rate_device drivers/hwmon/pmbus/pmbus_core +USB_STORAGE EXPORT_SYMBOL_GPL 0x091f7d2b usb_stor_host_template_init drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x1405331d usb_stor_Bulk_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x1af77fb1 usb_stor_access_xfer_buf 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 0x217030b7 usb_stor_bulk_srb drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x2cb3d0b1 usb_stor_Bulk_reset drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x31f77b5d usb_stor_probe2 drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x355f0fe9 usb_stor_reset_resume drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x4b8984ae usb_stor_transparent_scsi_command drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x5291e00b usb_stor_disconnect drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x5eb47618 usb_stor_CB_transport drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x716d6dbf usb_stor_probe1 drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x75e374fa usb_stor_post_reset drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x7a0a516c usb_stor_adjust_quirks drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x7db7157b usb_stor_CB_reset drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x89f38c66 usb_stor_resume drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x8c16e54f usb_stor_host_template_init drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x947389e9 fill_inquiry_response drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x9ac7e9a6 usb_stor_access_xfer_buf drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xace74de4 usb_stor_pre_reset drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xbeb26b2c usb_stor_bulk_transfer_buf drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xc6f08db9 usb_stor_control_msg drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xcbe22ecb usb_stor_suspend drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xdfdb1853 usb_stor_set_xfer_buf drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xef8c8f79 usb_stor_ctrl_transfer drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xfb8d056d usb_stor_clear_halt drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x1d3eda7b usb_stor_control_msg drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x265287e1 fill_inquiry_response drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x26e75cb1 usb_stor_post_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x37bbb422 usb_stor_ctrl_transfer drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x522b9c92 usb_stor_CB_transport drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x63f66d49 usb_stor_bulk_transfer_buf drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x7653ae5a usb_stor_pre_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x7928c307 usb_stor_Bulk_transport drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x813eac38 usb_stor_probe2 drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x971cd9e4 usb_stor_disconnect drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x9e1fe515 usb_stor_bulk_srb drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xa4167073 usb_stor_CB_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xc0da9f27 usb_stor_probe1 drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xcc81d5dd usb_stor_bulk_transfer_sg drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xcfbc2021 usb_stor_reset_resume drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xd55c18d4 usb_stor_suspend drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xdb1e8d30 usb_stor_transparent_scsi_command drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xe0b85105 usb_stor_clear_halt drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xea156cd0 usb_stor_adjust_quirks drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xf37ddb02 usb_stor_set_xfer_buf drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xf843ce0b usb_stor_resume drivers/usb/storage/usb-storage diff -u linux-intel-iotg-5.15-5.15.0/debian.master/abi/ppc64el/generic.modules linux-intel-iotg-5.15-5.15.0/debian.master/abi/ppc64el/generic.modules --- linux-intel-iotg-5.15-5.15.0/debian.master/abi/ppc64el/generic.modules +++ linux-intel-iotg-5.15-5.15.0/debian.master/abi/ppc64el/generic.modules @@ -2389,7 +2389,6 @@ libahci_platform libarc4 libblake2s -libblake2s-generic libceph libchacha libchacha20poly1305 @@ -4405,6 +4404,7 @@ snd-bt87x snd-ca0106 snd-cmipci +snd-compress snd-cs4281 snd-cs46xx snd-ctl-led @@ -4532,6 +4532,10 @@ snd-soc-cs35l34 snd-soc-cs35l35 snd-soc-cs35l36 +snd-soc-cs35l41 +snd-soc-cs35l41-i2c +snd-soc-cs35l41-lib +snd-soc-cs35l41-spi snd-soc-cs4234 snd-soc-cs4265 snd-soc-cs4270 @@ -4691,6 +4695,7 @@ snd-soc-wcd934x snd-soc-wcd938x snd-soc-wcd938x-sdw +snd-soc-wm-adsp snd-soc-wm8510 snd-soc-wm8523 snd-soc-wm8524 @@ -4761,6 +4766,18 @@ spaceorb sparse-keymap spcp8x5 +speakup +speakup_acntsa +speakup_apollo +speakup_audptr +speakup_bns +speakup_decext +speakup_dectlk +speakup_dummy +speakup_ltlk +speakup_soft +speakup_spkout +speakup_txprt speedfax speedtch spi-altera-core diff -u linux-intel-iotg-5.15-5.15.0/debian.master/abi/s390x/generic linux-intel-iotg-5.15-5.15.0/debian.master/abi/s390x/generic --- linux-intel-iotg-5.15-5.15.0/debian.master/abi/s390x/generic +++ linux-intel-iotg-5.15-5.15.0/debian.master/abi/s390x/generic @@ -1,6 +1,6 @@ -CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x446a2d23 crypto_cipher_encrypt_one vmlinux -CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x4e38fd3f crypto_cipher_setkey vmlinux -CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0xf40c9f49 crypto_cipher_decrypt_one vmlinux +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x40382de7 crypto_cipher_encrypt_one vmlinux +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x67d71a71 crypto_cipher_setkey vmlinux +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x9b51200f crypto_cipher_decrypt_one vmlinux EXPORT_SYMBOL crypto/blake2b_generic 0xe13c4380 blake2b_compress_generic EXPORT_SYMBOL crypto/ecc 0x16e410ff vli_from_be64 EXPORT_SYMBOL crypto/ecc 0x188a1647 ecc_is_pubkey_valid_full @@ -18,1455 +18,1457 @@ 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 0x41e0866e crypto_nhpoly1305_update -EXPORT_SYMBOL crypto/nhpoly1305 0x69564243 crypto_nhpoly1305_init -EXPORT_SYMBOL crypto/nhpoly1305 0x7cd77103 crypto_nhpoly1305_final_helper -EXPORT_SYMBOL crypto/nhpoly1305 0x90e66fd3 crypto_nhpoly1305_setkey -EXPORT_SYMBOL crypto/nhpoly1305 0xe62e931a crypto_nhpoly1305_update_helper -EXPORT_SYMBOL crypto/nhpoly1305 0xf4cf5ce7 crypto_nhpoly1305_final -EXPORT_SYMBOL crypto/sha3_generic 0x327cc20e crypto_sha3_update -EXPORT_SYMBOL crypto/sha3_generic 0x5108fa1f crypto_sha3_final -EXPORT_SYMBOL crypto/sha3_generic 0x7f57ab11 crypto_sha3_init -EXPORT_SYMBOL crypto/sm2_generic 0x5f90cc1a sm2_compute_z_digest -EXPORT_SYMBOL crypto/sm3_generic 0x40fd74f6 crypto_sm3_update -EXPORT_SYMBOL crypto/sm3_generic 0x8028fb5d crypto_sm3_final -EXPORT_SYMBOL crypto/sm3_generic 0xbb32b14f crypto_sm3_finup +EXPORT_SYMBOL crypto/nhpoly1305 0x07c9e486 crypto_nhpoly1305_update_helper +EXPORT_SYMBOL crypto/nhpoly1305 0x67e93698 crypto_nhpoly1305_final_helper +EXPORT_SYMBOL crypto/nhpoly1305 0x7f28ee34 crypto_nhpoly1305_final +EXPORT_SYMBOL crypto/nhpoly1305 0x83689f2c crypto_nhpoly1305_init +EXPORT_SYMBOL crypto/nhpoly1305 0x95b91467 crypto_nhpoly1305_update +EXPORT_SYMBOL crypto/nhpoly1305 0xe58bc814 crypto_nhpoly1305_setkey +EXPORT_SYMBOL crypto/sha3_generic 0x0cb4aa54 crypto_sha3_final +EXPORT_SYMBOL crypto/sha3_generic 0xb2e91d54 crypto_sha3_update +EXPORT_SYMBOL crypto/sha3_generic 0xceca4b17 crypto_sha3_init +EXPORT_SYMBOL crypto/sm2_generic 0x756613c9 sm2_compute_z_digest +EXPORT_SYMBOL crypto/sm3_generic 0x7e351cac crypto_sm3_final +EXPORT_SYMBOL crypto/sm3_generic 0xb52ff222 crypto_sm3_update +EXPORT_SYMBOL crypto/sm3_generic 0xf036ae7a crypto_sm3_finup EXPORT_SYMBOL crypto/xor 0x5b6c00e6 xor_blocks EXPORT_SYMBOL drivers/block/drbd/drbd 0x127a5901 drbd_set_st_err_str EXPORT_SYMBOL drivers/block/drbd/drbd 0x35131b36 drbd_role_str EXPORT_SYMBOL drivers/block/drbd/drbd 0x7730f22d drbd_conn_str EXPORT_SYMBOL drivers/block/drbd/drbd 0xaf27bebf drbd_disk_str -EXPORT_SYMBOL drivers/gpu/drm/drm 0x005e86f1 drm_plane_create_scaling_filter_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x008baca3 drm_display_info_set_bus_formats -EXPORT_SYMBOL drivers/gpu/drm/drm 0x011eea6c __drmm_add_action -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0147af05 drm_client_modeset_commit_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0163e74f drm_gem_dmabuf_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x017aeede drm_property_create_enum -EXPORT_SYMBOL drivers/gpu/drm/drm 0x01f5c48b drm_syncobj_find_fence -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0235130b drm_dev_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0x02c6daf3 drm_connector_attach_content_protection_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x010a8fc6 drm_crtc_init_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x015186b7 drm_atomic_get_new_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x01bc9371 drm_crtc_vblank_helper_get_vblank_timestamp_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x021d4cca drm_mode_find_dmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0x025a9151 drm_gtf_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0279986a drm_bridge_chain_mode_fixup EXPORT_SYMBOL drivers/gpu/drm/drm 0x03156232 __drm_get_edid_firmware_path -EXPORT_SYMBOL drivers/gpu/drm/drm 0x032964a7 drm_read -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0349d790 drm_send_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x038f9038 drm_vblank_work_schedule -EXPORT_SYMBOL drivers/gpu/drm/drm 0x04ffe2f9 drm_syncobj_replace_fence -EXPORT_SYMBOL drivers/gpu/drm/drm 0x05418299 drm_crtc_set_max_vblank_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0x05602831 drm_connector_list_iter_end -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0658fa38 drm_plane_enable_fb_damage_clips +EXPORT_SYMBOL drivers/gpu/drm/drm 0x03c7d524 drm_gem_lock_reservations +EXPORT_SYMBOL drivers/gpu/drm/drm 0x043c056d drm_writeback_queue_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0x044fef53 drm_debugfs_create_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0x04763588 drm_set_preferred_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x04ffd49e drm_i2c_encoder_mode_fixup EXPORT_SYMBOL drivers/gpu/drm/drm 0x065e86ac drm_detect_hdmi_monitor -EXPORT_SYMBOL drivers/gpu/drm/drm 0x06fe271c drm_debugfs_remove_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0x067961eb drm_atomic_get_old_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x06a98013 drm_release EXPORT_SYMBOL drivers/gpu/drm/drm 0x070b28aa drm_ht_remove_item -EXPORT_SYMBOL drivers/gpu/drm/drm 0x073732db drm_bridge_chain_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x073a15a7 drm_bridge_chain_mode_fixup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0771bbf3 drm_invalid_op -EXPORT_SYMBOL drivers/gpu/drm/drm 0x077796e8 drm_atomic_bridge_chain_pre_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x089c5c3f drm_gem_dmabuf_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0937c9f5 drm_panel_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x096cb9b4 drm_gem_prime_import_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0723b8be drm_modeset_lock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x081e9c9e drm_property_create_object +EXPORT_SYMBOL drivers/gpu/drm/drm 0x085d91bb drm_mode_create_hdmi_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0883c0c1 __drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm 0x08dbed28 drm_atomic_state_default_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a6af8c7 drm_property_create_bitmask EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a72f765 drm_clflush_virt_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0b804510 drm_gem_shmem_create_with_handle -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0c5a9444 drm_prime_gem_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d4ae644 drm_gem_create_mmap_offset_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a845187 drm_send_event_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0aee7502 drm_is_current_master +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0b09dcb3 drm_mode_config_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0b41e666 drm_atomic_state_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0c53450c drm_debugfs_remove_files EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d9b4753 drm_mode_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0e642b40 drm_connector_attach_vrr_capable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0e88185d __devm_drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ec86674 drm_gem_unmap_dma_buf +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f168a40 drm_state_dump 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 0x10318bcc drm_atomic_nonblocking_commit EXPORT_SYMBOL drivers/gpu/drm/drm 0x107742a9 drm_get_subpixel_order_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x10d62bdf drm_connector_update_edid_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x11934368 drm_writeback_signal_completion -EXPORT_SYMBOL drivers/gpu/drm/drm 0x11b23c53 drm_gem_shmem_pin -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1211a075 drm_ioctl_permit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x127f6c0e drm_master_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x12c244be drm_atomic_get_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x12e00513 drm_atomic_set_mode_prop_for_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x13b291d0 drm_framebuffer_plane_height -EXPORT_SYMBOL drivers/gpu/drm/drm 0x14290b0b drm_hdmi_avi_infoframe_quant_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x144af41b drm_client_modeset_check -EXPORT_SYMBOL drivers/gpu/drm/drm 0x145a1db6 drm_i2c_encoder_restore -EXPORT_SYMBOL drivers/gpu/drm/drm 0x164980c3 drm_atomic_set_fence_for_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0x16b974c1 drm_atomic_bridge_chain_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x197b4a04 drm_atomic_state_default_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x199c6a36 drm_mode_create_tv_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x19aa5a66 drm_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a0bb879 drm_crtc_vblank_helper_get_vblank_timestamp -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a34f283 drm_crtc_init_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x122de89b drm_mode_create_content_type_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x12c04d04 drm_syncobj_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x13471e5f drm_atomic_bridge_chain_post_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x137b429b drm_connector_attach_tv_margin_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x13f3cf7f drm_gem_shmem_madvise +EXPORT_SYMBOL drivers/gpu/drm/drm 0x141a7db1 drm_mode_is_420 +EXPORT_SYMBOL drivers/gpu/drm/drm 0x17c5a0bb drm_crtc_vblank_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x17e0319e drm_modeset_lock_single_interruptible +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1835e757 drm_gem_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x185b26a4 drm_any_plane_has_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0x19ce46d4 drm_gem_map_dma_buf +EXPORT_SYMBOL drivers/gpu/drm/drm 0x19f3c8b8 drm_gem_fence_array_add_implicit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a1868d4 drm_atomic_bridge_chain_pre_enable EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a411479 drm_syncobj_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1aca54c2 drm_atomic_nonblocking_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1b3ee075 drm_client_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c523c1d drm_framebuffer_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d0b0ce9 drm_hdmi_avi_infoframe_from_display_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1eb5c830 drm_crtc_vblank_restore -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1ef0b402 drm_modeset_acquire_fini -EXPORT_SYMBOL drivers/gpu/drm/drm 0x209d69b7 drm_encoder_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1b6ab5b9 drm_gem_prime_fd_to_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1ca6cf2a drm_plane_create_scaling_filter_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1e49c94a drm_gem_free_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1e548648 drm_plane_create_zpos_immutable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1e5f3af2 drm_mode_prune_invalid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1eb2aec5 drm_add_modes_noedid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1f8f0158 drm_modeset_acquire_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2027cdbf drm_crtc_send_vblank_event EXPORT_SYMBOL drivers/gpu/drm/drm 0x2183c08c drm_mm_scan_add_block EXPORT_SYMBOL drivers/gpu/drm/drm 0x21c85f83 drm_gem_fence_array_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x21d89703 drm_gem_create_mmap_offset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x23dbefec drm_connector_attach_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x221dc3a3 drm_bridge_chain_mode_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x246c04e4 drm_framebuffer_init EXPORT_SYMBOL drivers/gpu/drm/drm 0x24d124ac drm_mode_equal_no_clocks_no_stereo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x25104cb6 drm_connector_atomic_hdr_metadata_equal EXPORT_SYMBOL drivers/gpu/drm/drm 0x25ce17ce drm_flip_work_queue_task EXPORT_SYMBOL drivers/gpu/drm/drm 0x25daad93 __drm_mm_interval_first -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2612b653 drm_bridge_chain_post_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x274928a4 drm_gem_shmem_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x274b1512 drm_atomic_check_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0x25ed8a8a drm_master_internal_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x269fc0f6 drm_send_event_timestamp_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x27421071 drm_panel_get_modes EXPORT_SYMBOL drivers/gpu/drm/drm 0x2754dad8 drm_mm_reserve_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0x275f1e37 drm_atomic_bridge_chain_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x27700868 drm_set_preferred_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2772a15a drm_atomic_add_affected_connectors -EXPORT_SYMBOL drivers/gpu/drm/drm 0x286c9e5d drm_crtc_accurate_vblank_count EXPORT_SYMBOL drivers/gpu/drm/drm 0x28779e52 drm_printf -EXPORT_SYMBOL drivers/gpu/drm/drm 0x29b94f16 drm_i2c_encoder_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0x28882786 drm_gem_handle_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0x28a82af7 drm_atomic_bridge_chain_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x28b68b0b drm_mode_create_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x28d4baca drm_writeback_connector_init EXPORT_SYMBOL drivers/gpu/drm/drm 0x29f078d1 drm_mode_legacy_fb_format -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a81f489 drm_gem_unmap_dma_buf EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a962499 drm_mm_scan_init_with_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2b77a06e drmm_mode_config_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2bca51e6 drm_clflush_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c138384 __drmm_add_action_or_reset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c6ec0aa drm_crtc_wait_one_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c9446c9 drm_probe_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a9f22e5 drm_atomic_set_fb_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2bacb25b drm_gem_shmem_purge_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c6da342 drm_client_rotation EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d50570f drm_rect_calc_hscale -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2de7addb drm_color_lut_check -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e1fa686 drm_gem_map_detach -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e4dc757 drm_mode_create_content_type_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d9e0281 drm_plane_create_alpha_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2dc0b364 drm_i2c_encoder_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e5935f6 drm_hdmi_vendor_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ebf4402 drm_gem_mmap_obj EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ed3c600 drm_mode_debug_printmodeline -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f5b53bc drm_mode_probed_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x30cb5064 drm_i2c_encoder_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2edbb01b drm_crtc_vblank_restore +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3085a2b0 drm_property_replace_global_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x31023acd drm_client_framebuffer_flush +EXPORT_SYMBOL drivers/gpu/drm/drm 0x31118ae8 drm_display_info_set_bus_formats +EXPORT_SYMBOL drivers/gpu/drm/drm 0x314de58e drm_gem_vunmap EXPORT_SYMBOL drivers/gpu/drm/drm 0x31b8a5e3 __drm_set_edid_firmware_path EXPORT_SYMBOL drivers/gpu/drm/drm 0x32a0cc37 drm_print_bits -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3348a9c7 drm_modeset_unlock -EXPORT_SYMBOL drivers/gpu/drm/drm 0x33504c04 drm_connector_attach_max_bpc_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x337b64f7 drm_universal_plane_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x34967e43 drm_hdmi_avi_infoframe_bars -EXPORT_SYMBOL drivers/gpu/drm/drm 0x34ce9f0d drm_master_internal_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x34d35424 drm_property_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x355b3644 drm_atomic_get_bridge_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x36539c7d __drmm_universal_plane_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x379c5ad7 drm_atomic_private_obj_fini -EXPORT_SYMBOL drivers/gpu/drm/drm 0x38922f23 drm_mode_create_dvi_i_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x38bce510 drm_syncobj_find -EXPORT_SYMBOL drivers/gpu/drm/drm 0x393aba50 drm_atomic_set_fb_for_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3945c4c4 drm_property_create_bitmask -EXPORT_SYMBOL drivers/gpu/drm/drm 0x398d82fb drm_connector_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0x39a0ceba drm_client_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3aa6a2f0 drm_noop +EXPORT_SYMBOL drivers/gpu/drm/drm 0x34f02f12 drm_plane_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x361b4ae4 drm_client_dev_hotplug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3707aa9a drm_gem_shmem_create_with_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0x37569cc4 drm_crtc_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3758f192 drm_crtc_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x37d6b8b3 drm_gem_private_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x38a63bee drm_warn_on_modeset_not_all_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x38d2b814 drm_sysfs_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x397bc81a drm_noop +EXPORT_SYMBOL drivers/gpu/drm/drm 0x39cdce19 drm_mode_create_aspect_ratio_property EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ab87110 drm_mode_equal_no_clocks -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3acb2be1 drm_vblank_work_flush -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3acbe0e0 drm_bridge_chain_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3af5ce5f drm_gem_free_mmap_offset EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b0e5e9c __drm_puts_coredump +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b1e274d drm_writeback_get_out_fence EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ba17eab drm_ht_insert_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c04e977 drm_master_internal_acquire +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c4c98a6 drm_gem_handle_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c61f0ef drm_connector_cleanup EXPORT_SYMBOL drivers/gpu/drm/drm 0x3cb803c8 drm_vma_offset_manager_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3d3f6410 drm_bridge_chain_pre_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3d892745 drm_client_modeset_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e4b2e35 drm_panel_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3dc7b8a3 drm_gem_shmem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e6d750f drm_vblank_work_cancel_sync +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f3d83ef drm_mode_crtc_set_gamma_size EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f405489 __drm_printfn_err -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3fbc8263 drm_mode_validate_ycbcr420 -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3fc26b65 drm_gem_map_dma_buf -EXPORT_SYMBOL drivers/gpu/drm/drm 0x402d1de3 drm_mode_find_dmt -EXPORT_SYMBOL drivers/gpu/drm/drm 0x40afed26 drm_property_replace_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0x40d14a5e drm_syncobj_get_fd -EXPORT_SYMBOL drivers/gpu/drm/drm 0x411e84fb drm_object_property_set_value -EXPORT_SYMBOL drivers/gpu/drm/drm 0x424b127d drm_aperture_remove_conflicting_pci_framebuffers -EXPORT_SYMBOL drivers/gpu/drm/drm 0x42bbacef drm_gem_shmem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f93bdef drm_plane_force_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3fa25306 drm_display_mode_from_cea_vic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ffda28b drm_modeset_unlock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x40233dfa drm_ioctl_permit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x414dd9fe drm_writeback_signal_completion +EXPORT_SYMBOL drivers/gpu/drm/drm 0x41a7297a drm_gem_prime_import_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x41c335f6 drm_connector_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x42635fbb drm_crtc_vblank_on +EXPORT_SYMBOL drivers/gpu/drm/drm 0x43320c0c __drmm_add_action +EXPORT_SYMBOL drivers/gpu/drm/drm 0x436bd176 drm_connector_attach_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x43c3a206 drm_framebuffer_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x43e6cf20 drm_gem_shmem_put_pages EXPORT_SYMBOL drivers/gpu/drm/drm 0x4403a9c3 drm_mode_get_hv_timing -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4411fcb7 drmm_kfree -EXPORT_SYMBOL drivers/gpu/drm/drm 0x441d47dc drm_bridge_chain_mode_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x44364113 drm_syncobj_replace_fence EXPORT_SYMBOL drivers/gpu/drm/drm 0x44a2cadb drm_prime_sg_to_dma_addr_array +EXPORT_SYMBOL drivers/gpu/drm/drm 0x44e7537a drm_event_cancel_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4561ed11 drm_connector_attach_content_type_property EXPORT_SYMBOL drivers/gpu/drm/drm 0x4575a0ca drm_mode_set_crtcinfo -EXPORT_SYMBOL drivers/gpu/drm/drm 0x457aa1be drm_gem_dma_resv_wait -EXPORT_SYMBOL drivers/gpu/drm/drm 0x46bd1264 drm_connector_list_iter_begin -EXPORT_SYMBOL drivers/gpu/drm/drm 0x49a61b3f drm_atomic_set_crtc_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0x45955a03 drm_mode_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4697a4af drm_gem_vm_close +EXPORT_SYMBOL drivers/gpu/drm/drm 0x46be68a0 drm_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0x46f3ea4f drm_syncobj_add_point +EXPORT_SYMBOL drivers/gpu/drm/drm 0x47c98d2b drm_mode_create_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x486533f0 drm_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm 0x48f70ac3 drm_mode_parse_command_line_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4909904e drm_mode_create_tv_margin_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x49de2f57 drm_gem_prime_import EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a35d30d drm_mode_set_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a714ebb drm_vblank_work_cancel_sync +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a62435f drm_crtc_vblank_put EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a7d75b0 drm_memcpy_from_wc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b382ae5 drm_modeset_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b5c2b17 drm_gem_shmem_print_info EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b7ebf95 drm_mm_remove_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4bd623bf drm_connector_attach_vrr_capable_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c45f849 drm_atomic_add_encoder_bridges -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4cbc14c9 drm_dev_enter -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d6c5208 drm_hdmi_vendor_infoframe_from_display_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e09bcf8 drm_gem_get_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e1c4c08 drm_client_modeset_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e80318b drm_cvt_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4efaa1f4 drm_dev_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b809dac drm_clflush_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4bae65e0 drm_hdmi_infoframe_set_hdr_metadata +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4dc67b53 drm_dev_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e2103e1 drm_connector_set_panel_orientation EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f18a150 __drm_debug -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f566c10 drm_crtc_vblank_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4fa5cf85 drm_connector_set_tile_property EXPORT_SYMBOL drivers/gpu/drm/drm 0x50674de7 drm_timeout_abs_to_jiffies +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50a61d8a drm_atomic_get_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50c7544e drm_writeback_prepare_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0x512f8fc5 drm_aperture_remove_conflicting_pci_framebuffers EXPORT_SYMBOL drivers/gpu/drm/drm 0x513072fe __drm_puts_seq_file -EXPORT_SYMBOL drivers/gpu/drm/drm 0x51778ded drm_sysfs_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x519fd927 drm_connector_attach_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x51d77085 drm_gem_create_mmap_offset EXPORT_SYMBOL drivers/gpu/drm/drm 0x521ad6d0 drm_puts -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5291c701 drm_panel_unprepare -EXPORT_SYMBOL drivers/gpu/drm/drm 0x52a8df65 drm_event_reserve_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x53045ea8 drm_gem_prime_import -EXPORT_SYMBOL drivers/gpu/drm/drm 0x539a9574 drm_plane_force_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x53c07cdb drm_property_replace_global_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0x53ef2a2e drm_gem_shmem_purge_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x541749e5 drm_put_dev -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5427b855 drm_panel_get_modes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x557899a7 drm_property_create_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x527af662 drm_atomic_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x53b2f326 drm_client_modeset_probe +EXPORT_SYMBOL drivers/gpu/drm/drm 0x54bd46b2 drm_event_reserve_init_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x54bdfec2 drm_atomic_private_obj_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0x55c8ecbe __drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5716ec34 drm_connector_attach_hdr_output_metadata_property EXPORT_SYMBOL drivers/gpu/drm/drm 0x57698a50 drm_mm_takedown +EXPORT_SYMBOL drivers/gpu/drm/drm 0x578b9a65 drm_mode_duplicate EXPORT_SYMBOL drivers/gpu/drm/drm 0x57b6efe3 drm_ioctl_flags -EXPORT_SYMBOL drivers/gpu/drm/drm 0x57fea239 drm_client_framebuffer_delete -EXPORT_SYMBOL drivers/gpu/drm/drm 0x58e8d4e3 drm_mode_create_suggested_offset_properties EXPORT_SYMBOL drivers/gpu/drm/drm 0x59056243 drm_mm_replace_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5980f3df drm_mode_validate_driver EXPORT_SYMBOL drivers/gpu/drm/drm 0x599dea05 drm_edid_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5a07b9af drm_gem_dma_resv_wait EXPORT_SYMBOL drivers/gpu/drm/drm 0x5aa2b037 drm_flip_work_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5abe7f8c drm_atomic_get_new_private_obj_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5b905510 drm_mode_object_find -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c729f7c drm_mode_is_420_only -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5ccbc359 drm_connector_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d9698d0 drm_atomic_get_old_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5ae80450 drm_vblank_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5bd1ea91 drm_i2c_encoder_save +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c13692f drm_i2c_encoder_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c219783 drm_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c7c05ef drm_crtc_enable_color_mgmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c7e6026 drm_crtc_vblank_helper_get_vblank_timestamp +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d4752a6 drm_client_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d93fa62 drm_hdmi_avi_infoframe_bars +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d95d108 drm_mode_create_dvi_i_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5ea25ba1 drm_gem_dmabuf_vmap EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f7985a5 drm_mm_scan_remove_block -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5fcd8b2a drm_print_regset32 -EXPORT_SYMBOL drivers/gpu/drm/drm 0x60f0edcf drm_mode_duplicate -EXPORT_SYMBOL drivers/gpu/drm/drm 0x61699e22 drm_atomic_get_new_connector_for_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0x623b704b drm_add_edid_modes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x628080ed drm_gem_prime_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x63663501 drm_aperture_remove_conflicting_framebuffers -EXPORT_SYMBOL drivers/gpu/drm/drm 0x63b8ee29 drm_crtc_vblank_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5fb1ff62 drm_atomic_private_obj_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5fc1c2c7 drm_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x610d2f00 drm_object_attach_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x621e06f8 drm_vblank_work_flush +EXPORT_SYMBOL drivers/gpu/drm/drm 0x629cf697 drm_connector_list_iter_next +EXPORT_SYMBOL drivers/gpu/drm/drm 0x634449b2 drm_crtc_arm_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6483acf4 drm_property_create_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x64ad5fc8 drm_gem_shmem_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x64bbd6fe drm_crtc_vblank_waitqueue +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6518809b drm_atomic_print_new_state EXPORT_SYMBOL drivers/gpu/drm/drm 0x65702bd6 drm_default_rgb_quant_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x65c30daa drm_framebuffer_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6641797e drm_atomic_get_old_connector_for_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x65f554a9 drm_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x66a62c91 drm_bridge_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x66fdaf31 drm_av_sync_delay +EXPORT_SYMBOL drivers/gpu/drm/drm 0x67f46ddc drm_dev_get EXPORT_SYMBOL drivers/gpu/drm/drm 0x682fbda3 drm_vma_node_is_allowed -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6878f594 drm_gem_object_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x68dc1bcd drm_plane_create_alpha_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x68390f8c drm_modeset_lock_all_ctx +EXPORT_SYMBOL drivers/gpu/drm/drm 0x685af9a4 drm_connector_list_iter_end +EXPORT_SYMBOL drivers/gpu/drm/drm 0x68b877b9 drm_crtc_cleanup EXPORT_SYMBOL drivers/gpu/drm/drm 0x6914a422 drm_edid_are_equal -EXPORT_SYMBOL drivers/gpu/drm/drm 0x69981f36 drm_i2c_encoder_mode_fixup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6a910b44 drm_send_event_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6bd9840d drm_gem_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6c0d59d9 drm_connector_set_panel_orientation +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6a17ece5 drm_crtc_vblank_count_and_time +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6a1dcda3 drm_gem_shmem_purge +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6a3fe795 drm_client_buffer_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6a842afc drm_probe_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b67e1a8 drm_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6be8cb49 drm_get_edid_switcheroo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6c6715e7 drm_mode_create_tv_properties EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e30ba8e drm_rect_rotate_inv -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e5e57af drm_atomic_set_mode_for_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e99a546 drm_object_attach_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6eb15ab3 drm_event_cancel_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e3cfc5f drm_panel_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ef155d3 drm_gem_shmem_unpin EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ef2f78e drm_format_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0x71d68e1a drm_i2c_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x72ba6f62 drm_client_buffer_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x730d5a7f drm_bridge_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x73922f1c drm_plane_create_zpos_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x73aa0b02 drm_gem_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x74c04c01 drm_framebuffer_unregister_private -EXPORT_SYMBOL drivers/gpu/drm/drm 0x754dbafd __drm_atomic_helper_disable_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0x755299f3 drm_atomic_state_clear -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7563c503 __drmm_encoder_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x758132f4 drm_dev_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x758c910c drm_event_reserve_init_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x763d2b4a drm_connector_attach_dp_subconnector_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x77c002a7 drm_mode_plane_set_obj_prop -EXPORT_SYMBOL drivers/gpu/drm/drm 0x780ae7e8 drm_av_sync_delay -EXPORT_SYMBOL drivers/gpu/drm/drm 0x78c6c5e3 drm_atomic_get_new_bridge_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7952941b drm_crtc_vblank_waitqueue +EXPORT_SYMBOL drivers/gpu/drm/drm 0x700e5b7a drm_atomic_set_mode_prop_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x703db344 drm_mode_is_420_also +EXPORT_SYMBOL drivers/gpu/drm/drm 0x731ab678 drm_property_create_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x742ce80d drm_panel_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x742f0ddf drm_gem_objects_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x750a0c2c drm_mode_create_from_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x75742982 drm_gem_shmem_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x762f92c9 drm_atomic_add_encoder_bridges +EXPORT_SYMBOL drivers/gpu/drm/drm 0x78b4c8aa drm_bridge_chain_post_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x78bcd4e8 drm_crtc_accurate_vblank_count EXPORT_SYMBOL drivers/gpu/drm/drm 0x7964f9dc drm_flip_work_queue -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c0f9de0 drm_plane_get_damage_clips -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c3e5ad7 drm_mode_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c6589aa drm_gem_vm_open -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7cbe900d drm_connector_set_panel_orientation_with_quirk -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7cd47bb8 drm_mode_crtc_set_gamma_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d778e90 drm_atomic_private_obj_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7a13df6d drm_atomic_get_old_bridge_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7a66a245 drm_gtf_mode_complex +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7aa53396 drm_object_property_get_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7ae19fca drmm_mode_config_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b1cc659 drm_atomic_state_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c2228a2 drm_framebuffer_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d253898 drm_add_edid_modes EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d9b3370 drm_vma_offset_lookup_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e4499fe drm_crtc_vblank_count_and_time -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e917951 drm_atomic_bridge_chain_post_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7eab5ebc drm_crtc_handle_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7f93b089 drm_hdmi_infoframe_set_hdr_metadata -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8027aafb drm_gem_object_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8051de24 drm_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7db946e3 drm_i2c_encoder_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7dccab25 drm_release_noglobal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e5b82d2 drm_dev_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7ec82028 drm_dev_unplug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7f817587 drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fa5cad9 drm_mode_is_420_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fec918f drm_atomic_set_crtc_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0x80124559 drm_plane_create_blend_mode_property EXPORT_SYMBOL drivers/gpu/drm/drm 0x81992424 drm_edid_header_is_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x81a5596d drm_connector_attach_edid_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x829f0d5b drm_writeback_prepare_job -EXPORT_SYMBOL drivers/gpu/drm/drm 0x82d63537 drm_gem_prime_export -EXPORT_SYMBOL drivers/gpu/drm/drm 0x83dd3667 drm_connector_attach_tv_margin_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x84098969 drm_crtc_commit_wait -EXPORT_SYMBOL drivers/gpu/drm/drm 0x846f10da drm_modeset_unlock_all -EXPORT_SYMBOL drivers/gpu/drm/drm 0x85239bda drm_atomic_add_affected_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x852c6d95 drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x82e309fa drm_property_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x84baba9b drmm_kfree EXPORT_SYMBOL drivers/gpu/drm/drm 0x8563a554 drm_ht_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x865c3143 drm_property_create_bool -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8699c1d1 drm_mode_get_tile_group -EXPORT_SYMBOL drivers/gpu/drm/drm 0x86c9ea2a drm_release_noglobal -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8709cc3c drm_crtc_vblank_helper_get_vblank_timestamp_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x859ceee9 drm_panel_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8611b4a5 drm_send_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x867340be drm_print_regset32 +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8687de5d drm_client_modeset_commit EXPORT_SYMBOL drivers/gpu/drm/drm 0x871ab41a drm_rect_intersect -EXPORT_SYMBOL drivers/gpu/drm/drm 0x88f164f7 drm_i2c_encoder_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8905a1a3 drm_client_rotation -EXPORT_SYMBOL drivers/gpu/drm/drm 0x898550aa drm_property_add_enum -EXPORT_SYMBOL drivers/gpu/drm/drm 0x89be7dfa drm_plane_create_zpos_immutable_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x89f57dca drmm_kmalloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8a94f1f8 drm_file_get_master -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8b56747b drm_connector_set_link_status_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x87c3b236 drm_read +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8866a15b drm_atomic_get_old_connector_for_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x887d52fa drm_client_modeset_commit_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x88ec1d10 drm_property_replace_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x88f920b7 drm_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x89b2d880 __drmm_add_action_or_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x89d0da4a drm_plane_create_color_properties EXPORT_SYMBOL drivers/gpu/drm/drm 0x8cd1f61b drm_vma_offset_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d9052ec drm_master_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8e4a4f32 drm_gem_prime_handle_to_fd -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8e768b87 drm_calc_timestamping_constants -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8eedefc6 devm_aperture_acquire_from_firmware -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8f934e88 drm_modeset_acquire_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8fae7e75 drm_modeset_lock_all_ctx -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8fe47ee6 drm_modeset_lock_single_interruptible +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8e059102 drm_client_buffer_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8e1bc9f1 drm_bridge_chain_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ea1f03e drm_hdmi_avi_infoframe_quant_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8f0221b5 drm_connector_set_panel_orientation_with_quirk +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8f102bff drm_atomic_add_affected_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8f4e4607 drm_atomic_get_new_connector_for_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8f70a421 drm_connector_update_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x901ab299 drm_syncobj_get_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0x90636b62 drm_connector_attach_encoder EXPORT_SYMBOL drivers/gpu/drm/drm 0x90751caa drm_get_format_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0x90e40cf1 drm_display_mode_from_cea_vic -EXPORT_SYMBOL drivers/gpu/drm/drm 0x90ed118f drm_panel_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm 0x90f9971e drm_gem_put_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0x914d73dd drm_property_create_object +EXPORT_SYMBOL drivers/gpu/drm/drm 0x911d2dce drm_mode_probed_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x916bfc57 drm_master_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x917005af drm_plane_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x91b79ad4 drm_encoder_cleanup EXPORT_SYMBOL drivers/gpu/drm/drm 0x91fec1cc drm_rect_calc_vscale -EXPORT_SYMBOL drivers/gpu/drm/drm 0x93af4eae drm_writeback_cleanup_job -EXPORT_SYMBOL drivers/gpu/drm/drm 0x93bd1c63 drm_hdmi_avi_infoframe_content_type +EXPORT_SYMBOL drivers/gpu/drm/drm 0x920db52b drm_client_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x92bd5e24 drm_mode_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9316815e drm_gem_prime_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0x933f0057 drm_invalid_op +EXPORT_SYMBOL drivers/gpu/drm/drm 0x938c4d4f drm_atomic_get_plane_state EXPORT_SYMBOL drivers/gpu/drm/drm 0x93cec5c7 drm_flip_work_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9437e869 __devm_drm_dev_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x94cffd58 drm_mode_create_dp_colorspace_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x95622d5b drm_crtc_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x952195f7 drm_atomic_state_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x953d370e drm_modeset_acquire_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0x958143b6 drm_dev_enter EXPORT_SYMBOL drivers/gpu/drm/drm 0x95dbc76d drm_ht_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x96fbd8b6 drm_modeset_drop_locks -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9867c783 drm_crtc_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x98bc2256 drm_atomic_get_crtc_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x98d5a034 drm_atomic_normalize_zpos -EXPORT_SYMBOL drivers/gpu/drm/drm 0x99b37699 drm_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x96e0b8fa drm_connector_has_possible_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x97b36bb4 drm_hdmi_avi_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x98297833 drm_modeset_lock +EXPORT_SYMBOL drivers/gpu/drm/drm 0x98c6eb85 drm_property_add_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0x991ecfb1 drm_gem_object_lookup EXPORT_SYMBOL drivers/gpu/drm/drm 0x99fd20aa drm_rect_clip_scaled -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9a0cbf86 drm_panel_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ab7d1c0 drm_connector_attach_scaling_mode_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b1f8c13 drm_modeset_lock_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9a1e0996 drm_atomic_get_crtc_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b0522ce drm_atomic_normalize_zpos EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b285573 drm_match_cea_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b414fd9 drm_atomic_bridge_chain_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b68ba15 drm_connector_list_iter_begin EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b8a53f5 drm_ht_just_insert_please EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b95c885 drm_mode_match -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9bded81b drm_atomic_get_connector_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c477ae8 drm_plane_cleanup EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ce050be drm_mode_copy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ddec62f drm_gem_shmem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9cfe49fc drm_property_create_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9dfbcb3e drm_client_modeset_check EXPORT_SYMBOL drivers/gpu/drm/drm 0x9e7e8009 drm_edid_to_sad -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ef3e5db drm_sysfs_connector_status_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9f238bed drm_plane_create_rotation_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9f35d2fe drm_add_override_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9eda0aba drm_gem_object_release EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ffcdfdb drm_detect_monitor_audio EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0713087 drm_ht_find_item -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0d861f4 drm_gem_shmem_unpin -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1a5aecd drm_gtf_mode_complex -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1d10acc drm_atomic_set_crtc_for_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1f19a5b drm_gtf_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa22d610b drm_warn_on_modeset_not_all_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa260ae4b drm_atomic_get_old_bridge_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa273c058 drm_object_property_get_value -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa365c910 drm_gem_objects_lookup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa3b53e59 drm_any_plane_has_format -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4da5a56 drm_syncobj_get_handle -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa541a645 drm_poll +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0b5b4c5 drm_atomic_get_new_bridge_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0ceb1ad drm_connector_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1439ed6 drm_vblank_work_schedule +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1eaebae drm_connector_set_path_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1eb9196 drm_hdmi_avi_infoframe_colorspace +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa27b2ff8 drm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa36fe59a drm_syncobj_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa3910c93 drm_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa3af1cf8 drm_event_reserve_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa3fdcde9 __drmm_encoder_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa5037c01 drm_connector_init_with_ddc EXPORT_SYMBOL drivers/gpu/drm/drm 0xa5ec2523 drm_vma_node_revoke -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa6096929 drm_atomic_print_new_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa6bc22cd drm_vblank_work_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa7710718 drm_mode_create_from_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa7325ff6 drm_property_blob_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa7bdfb7b drm_bridge_chain_disable EXPORT_SYMBOL drivers/gpu/drm/drm 0xa7ff050f drm_vma_offset_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa8391726 drm_connector_attach_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa9732860 drm_prime_pages_to_sg -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaa1785bd drm_gem_unlock_reservations -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaa3cc2d8 drm_gem_dmabuf_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xacfaa8f0 drm_debugfs_create_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa8250976 drm_gem_create_mmap_offset_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa8860ad9 drm_atomic_get_bridge_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa893ae5f drm_crtc_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa8a29877 drm_gem_unlock_reservations +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa8cc6fad drm_crtc_set_max_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0xab2637a8 drm_gem_dmabuf_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0xab879168 drm_dev_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0xac19ad3b drm_property_blob_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xac310bf5 drm_atomic_get_connector_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xac440e70 drm_modeset_lock_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xacd902d9 drm_cvt_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xad00e49b drm_i2c_encoder_prepare EXPORT_SYMBOL drivers/gpu/drm/drm 0xad4e902b drm_color_ctm_s31_32_to_qm_n -EXPORT_SYMBOL drivers/gpu/drm/drm 0xad78cf1c drm_mode_is_420_also -EXPORT_SYMBOL drivers/gpu/drm/drm 0xadb276c9 drm_compat_ioctl -EXPORT_SYMBOL drivers/gpu/drm/drm 0xae21a6ba drm_dev_get EXPORT_SYMBOL drivers/gpu/drm/drm 0xae277372 __drm_crtc_commit_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0xae3f8e6a drm_framebuffer_lookup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb0339678 drm_crtc_vblank_on -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb0412001 drm_plane_from_index EXPORT_SYMBOL drivers/gpu/drm/drm 0xb053adda drm_rect_rotate -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb07554f8 drm_ioctl_kernel EXPORT_SYMBOL drivers/gpu/drm/drm 0xb0b05ff5 drm_clflush_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb0c94a30 drm_property_create EXPORT_SYMBOL drivers/gpu/drm/drm 0xb11ac7a7 __drm_err -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb220fd47 drm_gem_shmem_purge +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb1346068 drm_put_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb16b74c0 drm_i2c_encoder_restore +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb1c83bc2 drm_client_release EXPORT_SYMBOL drivers/gpu/drm/drm 0xb22dfd68 drm_format_info_min_pitch EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4032484 drm_mm_insert_node_in_range EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4fe0501 drm_vma_offset_manager_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb595f5f2 drm_property_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5dafc89 drm_plane_create_rotation_property EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6127243 drm_need_swiotlb -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb643f6d0 drm_client_framebuffer_flush -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb64ed4f5 drm_hdcp_update_content_protection -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6745985 drm_dev_printk -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb743558e drm_dev_set_unique -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb75af640 drm_property_blob_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb7852340 drm_plane_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb7bdc9e9 drm_gem_shmem_print_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb99448d3 drm_crtc_arm_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb628cc33 drm_framebuffer_unregister_private +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb63b55c9 drm_panel_unprepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb7ced71d drm_atomic_bridge_chain_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb88394e6 drm_mode_set_config_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb8ae76ca drm_mode_put_tile_group EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9cad492 __drm_atomic_state_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0xba8b3200 drm_modeset_lock_all -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbac2dbff drm_client_modeset_probe -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbaeb6559 drm_gem_lock_reservations -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbc2dbd09 drm_mode_set_config_internal -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbcdcd492 drm_is_current_master -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbd4bc903 drm_mode_object_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbd6279a6 drm_atomic_state_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbe2ed923 drm_panel_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbe79f249 drm_mode_create_hdmi_colorspace_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbe846959 drm_crtc_vblank_reset -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbea26455 drm_mode_create_tv_margin_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbea7ffe1 drm_mode_create_tile_group -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc16d9e20 drm_vblank_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc221012c drm_connector_attach_hdr_output_metadata_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc225c8d8 drm_bridge_attach -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc43beb06 drm_connector_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9ea32ef drm_gem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0xba162739 drm_i2c_encoder_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xba88e163 drm_mode_config_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbad24be0 drm_panel_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbaea3984 drm_prime_sg_to_page_array +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbc4deb4e drm_mode_object_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbcc2368b drm_gem_map_detach +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbcde53ff drm_writeback_cleanup_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbd646229 drm_plane_get_damage_clips_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbd65f519 drm_connector_set_link_status_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbf6d1cf7 drm_i2c_encoder_detect +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbfb5af86 drm_gem_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc055f3dc drm_plane_enable_fb_damage_clips +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc0d36627 drm_mode_object_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc11fc204 drm_atomic_state_default_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc12cd7e4 drm_atomic_set_mode_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc1653d73 drm_connector_attach_max_bpc_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc1a84ed6 drm_modeset_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc2608a94 drm_gem_vm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc2c9e434 drm_gem_dmabuf_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc3eda4a5 drm_crtc_commit_wait EXPORT_SYMBOL drivers/gpu/drm/drm 0xc460392a drm_flip_work_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc4a58328 drm_plane_get_damage_clips_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc4c05385 drm_i2c_encoder_detect -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc538c5bc drm_mode_config_reset -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc5e2dd00 drm_ioctl -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc64d960e drm_property_blob_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6a09d3d __drmm_crtc_alloc_with_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc7c44d48 drm_gem_handle_delete -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc81fc61a drm_gem_mmap_obj -EXPORT_SYMBOL drivers/gpu/drm/drm 0xca097e4f drm_atomic_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xca0af5da drm_gem_vm_close +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc4afdcf1 drm_crtc_vblank_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc53a5aae drm_crtc_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc57f5887 drm_mode_object_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc7eecfce drm_plane_create_zpos_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc9299247 drm_crtc_handle_vblank EXPORT_SYMBOL drivers/gpu/drm/drm 0xca190085 drm_format_info_block_height -EXPORT_SYMBOL drivers/gpu/drm/drm 0xca3249eb drm_dev_has_vblank EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb2340b8 drm_rect_debug_print -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcc01ee42 drm_connector_init_with_ddc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcc656ea8 drm_connector_list_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb637570 drm_framebuffer_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcbcfcb4c drm_framebuffer_plane_width EXPORT_SYMBOL drivers/gpu/drm/drm 0xccc59759 drm_format_info_block_width -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd95bb0d drm_i2c_encoder_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcce350fb drm_panel_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd247b68 drm_file_get_master +EXPORT_SYMBOL drivers/gpu/drm/drm 0xce12fdc3 drm_gem_prime_handle_to_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0xce5a2d66 drm_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcef5e281 drm_mode_get_tile_group EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf11a549 drm_flip_work_allocate_task +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf9d42ae drm_connector_list_update EXPORT_SYMBOL drivers/gpu/drm/drm 0xd05fda43 drm_prime_get_contiguous_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd07afe24 drm_hdmi_avi_infoframe_colorspace -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd090f3d9 drm_connector_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd0c4589c drm_mode_put_tile_group -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd0cc7bc3 drm_crtc_enable_color_mgmt EXPORT_SYMBOL drivers/gpu/drm/drm 0xd13f9985 drm_edid_block_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd18a5f6c drm_mode_create_aspect_ratio_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd1944751 drm_writeback_queue_job -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd22bac29 drm_modeset_lock -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd268f357 drm_send_event_timestamp_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd293002e drm_gem_handle_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd520d775 drm_client_buffer_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd5c30f2b drm_atomic_bridge_chain_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd4bed8ba drm_atomic_set_fence_for_plane EXPORT_SYMBOL drivers/gpu/drm/drm 0xd60baf5a drm_edid_get_monitor_name EXPORT_SYMBOL drivers/gpu/drm/drm 0xd680a377 drm_gem_object_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd72aabe6 drm_crtc_send_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd79d1f08 drm_property_create_signed_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd71860d0 drm_connector_attach_content_protection_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd71d36e5 drm_property_lookup_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd792108b drm_i2c_encoder_init EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7a9cf42 drm_mode_validate_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd9d1c747 drm_mode_is_420 -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdaf33512 drm_property_lookup_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb30c133 drm_i2c_encoder_save -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbb56a1b drm_mode_validate_driver -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbcaec97 drm_syncobj_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdcbf3486 drm_mode_object_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd8b27d0 drm_crtc_vblank_off -EXPORT_SYMBOL drivers/gpu/drm/drm 0xddc4a86d drm_atomic_state_default_clear -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdde8149a drm_writeback_get_out_fence -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf02acff drm_get_edid_switcheroo +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7ff8ace drm_crtc_check_viewport +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd88fa180 drm_dev_has_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd8d71e16 drm_dev_dbg +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd95a91f1 drm_atomic_add_affected_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd966d94b drm_connector_set_tile_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd98e59ef drm_dev_set_unique +EXPORT_SYMBOL drivers/gpu/drm/drm 0xda4ce043 drm_bridge_chain_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0xda62a372 devm_aperture_acquire_from_firmware +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdab4e084 drm_property_create_bool +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdac71d82 drm_sysfs_connector_status_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdacffda5 drm_client_framebuffer_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbd1be07 drm_prime_pages_to_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdc064be0 drm_connector_set_vrr_capable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdc280b43 drm_mode_plane_set_obj_prop +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdcbb04d9 drm_syncobj_get_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd100995 drm_dev_printk +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd577fc0 drm_client_framebuffer_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0xddb0ee8f drm_crtc_create_scaling_filter_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf0bd6c6 drm_mode_create_dp_colorspace_property 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 0xe0a7d501 drm_mode_prune_invalid -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe11a457d __drm_atomic_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe234af80 drm_gem_private_object_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe2c3c2de drm_open -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe2ea7929 drm_mode_parse_command_line_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdfa16627 drm_hdmi_avi_infoframe_content_type +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe14751f6 drm_add_override_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe2e0316e drm_framebuffer_plane_height EXPORT_SYMBOL drivers/gpu/drm/drm 0xe317082a __drm_printfn_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe3d43852 drm_property_create_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe47ca449 drm_gem_shmem_madvise -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe50af350 drm_bridge_chain_mode_set -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe556ef75 drm_mode_create_scaling_mode_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe5c01f14 drm_gem_dmabuf_export -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe72050aa drm_state_dump -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe737423b drm_mode_config_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe3dfbf27 drm_gem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe574dead drm_gem_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe5a709db drm_property_create_signed_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7761e38 drm_connector_attach_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe794013c drm_atomic_set_crtc_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7da27c7 drm_atomic_check_only EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8362900 drm_edid_duplicate EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8a034df drm_dev_exit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8d51fd6 drm_gem_dmabuf_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe98350e8 drm_connector_attach_dp_subconnector_property EXPORT_SYMBOL drivers/gpu/drm/drm 0xea00fe81 __drm_printfn_coredump -EXPORT_SYMBOL drivers/gpu/drm/drm 0xead99d11 drm_gem_object_lookup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb654cc2 drm_connector_has_possible_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0xea1e548e drm_gem_map_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0xea414cda drm_gem_shmem_pin +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeabac487 drm_syncobj_find_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb190ddf drm_compat_ioctl EXPORT_SYMBOL drivers/gpu/drm/drm 0xec12af74 __drm_dbg -EXPORT_SYMBOL drivers/gpu/drm/drm 0xec970077 drm_framebuffer_plane_width -EXPORT_SYMBOL drivers/gpu/drm/drm 0xed254e6d drm_connector_atomic_hdr_metadata_equal -EXPORT_SYMBOL drivers/gpu/drm/drm 0xed7a6be5 drm_connector_set_vrr_capable_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xeec35a0d drm_add_modes_noedid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xecb195a7 drm_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xee8666fd drm_hdcp_update_content_protection +EXPORT_SYMBOL drivers/gpu/drm/drm 0xef599c92 __drmm_crtc_alloc_with_planes EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0517d7a drm_mm_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf06291ac drm_prime_sg_to_page_array -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf080871c drm_connector_set_path_property EXPORT_SYMBOL drivers/gpu/drm/drm 0xf092af45 drm_vma_node_allow -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0965f28 drm_plane_create_blend_mode_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0fac5d6 drm_wait_one_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf10fba89 drm_mode_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1337002 __drmm_universal_plane_alloc EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1421d13 drm_mode_sort -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf17ff7f1 drm_atomic_state_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf19c5c8d drm_dev_dbg +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1b43e66 drm_universal_plane_init EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1b5340a drm_mode_vrefresh -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf25aa74f drm_connector_attach_content_type_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf26a082d drm_client_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf26b6659 drm_gem_vunmap EXPORT_SYMBOL drivers/gpu/drm/drm 0xf3347f0a drm_driver_legacy_fb_format -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf3444a4b drm_master_internal_acquire +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf3570b30 drm_panel_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf3b2646c drm_bridge_chain_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf3cc0fd4 drm_master_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf3fa0db3 drm_gem_prime_mmap EXPORT_SYMBOL drivers/gpu/drm/drm 0xf406e46a drm_get_connector_type_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf607c83a drm_crtc_vblank_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf6084f55 drm_framebuffer_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf64eff95 drm_plane_create_color_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf6cdfef4 drm_panel_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf49e9509 drmm_kmalloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf5005ede drm_color_lut_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf57d0cf1 drm_modeset_unlock +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf7706bb8 drm_mode_create_suggested_offset_properties EXPORT_SYMBOL drivers/gpu/drm/drm 0xf824c7db __drm_printfn_debug -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf85b4cbe drm_bridge_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf86ec2c6 drm_crtc_check_viewport -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf8cee030 drm_get_edid -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf9ae5d9c drm_crtc_create_scaling_filter_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf9b2d5db drm_gem_shmem_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf9cf202f drm_gem_dmabuf_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa5a13a7 drm_gem_prime_fd_to_handle -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb9fd1cb drm_dev_unplug -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfbf09c26 drm_gem_fence_array_add_implicit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc3c4060 drm_syncobj_add_point -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc78c742 drm_client_dev_hotplug -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd04cfe6 drm_client_framebuffer_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd4a0651 drm_i2c_encoder_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd6c5b82 drm_atomic_get_private_obj_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfdcbb9f7 drm_writeback_connector_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfdd1eeea drm_gem_map_attach -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfe873397 drm_connector_list_iter_next +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf867ddd2 drm_modeset_drop_locks +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf87172c8 drm_ioctl_kernel +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf97b783b drm_plane_get_damage_clips +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa6f58be drm_client_modeset_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa83f580 drm_gem_dmabuf_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfcfd946b drm_mode_validate_ycbcr420 +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd29ba7e drm_prime_gem_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfdf9d075 drm_aperture_remove_conflicting_framebuffers +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfe51ab68 drm_object_property_set_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfe750758 drm_poll EXPORT_SYMBOL drivers/gpu/drm/drm 0xfeb953b1 __drm_printfn_seq_file EXPORT_SYMBOL drivers/gpu/drm/drm 0xfecc8840 drm_edid_to_speaker_allocation -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x012824db drm_atomic_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm 0xffc981c1 drm_vblank_work_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x000d545e drm_gem_fb_end_cpu_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x013c4170 drm_dp_get_vc_payload_bw +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x015a7495 drm_edp_backlight_set_level EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x01c4bba9 drm_dp_lttpr_max_link_rate -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x038aed32 drm_scdc_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x03c86bf5 drm_dp_aux_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x04b029d3 drm_dp_set_phy_test_pattern -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x05197af0 drm_helper_disable_unused_functions -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x05c781f0 drm_crtc_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x06ad5853 drm_dp_mst_atomic_enable_dsc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x023e1d4a drm_atomic_helper_connector_tv_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x06808f09 drm_atomic_helper_suspend EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x06c49551 drm_dp_dsc_sink_line_buf_depth -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x06f0618f drm_fb_helper_fini -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x075409b7 drm_fb_helper_cfb_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x07258285 drm_dp_set_subconnector_property EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x07a00858 drm_fb_memcpy_dstclip -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x086f002f drm_atomic_helper_disable_planes_on_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0884e5bd drm_atomic_helper_bridge_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x091ce2f0 drm_scdc_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x097898d9 drm_dp_get_vc_payload_bw -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x097d9a9e drm_dp_update_payload_part2 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x09df1fa4 __drm_atomic_helper_connector_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0b1ac26e drm_dp_pcon_hdmi_link_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0b2b4f43 drm_dp_pcon_reset_frl_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0c4a9941 drm_atomic_helper_prepare_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0c974d1e drm_kms_helper_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0d19d5e8 drm_gem_prepare_shadow_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0d6f30a3 drm_fb_helper_blank -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0e1f6412 drm_gem_simple_kms_duplicate_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0f320021 drm_atomic_helper_commit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0fc09f49 drm_atomic_helper_connector_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x10c4f607 __drm_atomic_helper_bridge_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x11618287 drm_atomic_helper_wait_for_fences -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x141f1e01 drm_dp_pcon_convert_rgb_to_ycbcr -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x14c7701e devm_drm_panel_bridge_add_typed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0926c24c drm_dp_mst_put_port_malloc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x09378a5b drm_atomic_helper_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x093c2a54 drm_scdc_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0942c56b drm_atomic_helper_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0a38c346 drm_dp_pcon_pps_override_param +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0a829805 drm_kms_helper_poll_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0c019749 drm_atomic_helper_wait_for_flip_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0d9d1d86 drm_atomic_helper_update_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0e526df6 drm_dp_pcon_is_frl_ready +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0ea11305 drm_gem_prepare_shadow_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0f2d9864 drm_dp_read_dpcd_caps +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0fa7cd6f drm_dp_pcon_frl_configure_1 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x10a0ad6b drm_gem_cleanup_shadow_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x10cbb54f drm_dp_dpcd_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x10f7db3a drm_atomic_helper_check_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x135f3349 drm_atomic_helper_prepare_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x140b2825 drm_helper_disable_unused_functions EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1605d0ed drm_dp_lttpr_max_lane_count -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x165dac85 __drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x16b50f08 drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x16f5ea50 drm_dp_stop_crc EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1709ddcf drm_dp_lttpr_link_train_clock_recovery_delay -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x18ac2c38 drm_gem_fb_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x171ef162 __drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x195129f0 drm_dp_check_act_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x19d631e7 drm_dp_dual_mode_max_tmds_clock +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1a31ab9c drm_atomic_helper_bridge_propagate_bus_fmt EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1a5bf3ca drm_dsc_dp_rc_buffer_size -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1ab07442 drm_atomic_helper_commit_tail_rpm +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1a62bec0 drm_dp_mst_topology_mgr_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1a7bb050 drm_dp_pcon_reset_frl_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1add0127 drm_fb_helper_pan_display EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1b0a1fdc drm_dp_lttpr_voltage_swing_level_3_supported -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1bc1b1cf drm_crtc_helper_set_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1bde8a72 drm_atomic_helper_commit_duplicated_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1f19a219 drm_helper_force_disable_all -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1ff474db drm_dp_mst_add_affected_dsc_crtcs -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x22dbad33 drm_dp_dual_mode_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x23286b2e drm_atomic_get_mst_topology_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x235420a8 drm_dp_mst_atomic_check -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2396e8fa drm_edp_backlight_set_level -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2407f97a drm_dp_dual_mode_detect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x249a28a2 drm_dp_downstream_debug -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x25c7c80b drm_gem_simple_kms_reset_shadow_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1b21080e drm_atomic_helper_commit_modeset_disables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1dce436e drm_atomic_get_mst_topology_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1e13cf37 drm_dp_dpcd_read_phy_link_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1f718601 drm_dp_mst_deallocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x20582be1 __drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x20d90b04 drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x21aa0af8 drm_fb_helper_output_poll_changed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x227310df drm_dp_mst_topology_mgr_set_mst +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x22d79a48 drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2570f12b drm_simple_display_pipe_attach_bridge EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x26815dbc drm_dp_link_rate_to_bw_code -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x26db7ef6 drm_dp_pcon_frl_configure_1 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x29777cd8 drm_atomic_helper_commit_modeset_enables -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2a74bcfd drm_atomic_helper_check_plane_damage -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2aed23e3 drm_dp_pcon_hdmi_link_active -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2b22e179 drm_dp_send_real_edid_checksum -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2c1bd48a drm_self_refresh_helper_update_avg_times -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2d020455 drm_dp_link_train_clock_recovery_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2a3f6f0f drm_dp_get_phy_test_pattern +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2b188df5 drm_dp_set_phy_test_pattern +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2b93500e drm_panel_bridge_add_typed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2bdf8296 __drm_atomic_helper_connector_state_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2c97cbae drm_scdc_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2d8f9998 drm_helper_crtc_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2e7e05ef drm_dp_mst_atomic_enable_dsc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2e84614a drm_gem_simple_kms_cleanup_shadow_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2f62681d drm_simple_display_pipe_init EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2fa94ef2 drm_dp_downstream_444_to_420_conversion -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x30ed0064 __drm_atomic_helper_private_obj_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x30f53297 drm_dp_send_power_updown_phy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3019561b drm_kms_helper_poll_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x30dfa7dc drm_dp_read_sink_count EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3117b63b drm_dp_downstream_max_bpc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x31791fb6 drm_dp_pcon_pps_default -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x33897b89 drm_atomic_helper_check_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x35f5aa3a drm_fb_helper_sys_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x366ddd7b drm_helper_connector_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x36d498c8 drm_fb_helper_debug_enter -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x379dcf2f drm_dp_pcon_frl_configure_2 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x38c5bca1 devm_drm_panel_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x31243631 drm_fb_helper_initial_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x32efa044 __drm_gem_reset_shadow_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x34a05b95 drm_lspcon_get_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x367824f2 drm_atomic_helper_commit_modeset_enables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x38ca7358 drm_atomic_helper_damage_merged EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x392a838b drm_dp_downstream_max_dotclock -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3a153981 drm_atomic_helper_plane_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3a6de3cb drm_atomic_helper_wait_for_flip_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x39903506 drm_atomic_helper_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3a3522fa __drm_atomic_helper_bridge_reset EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3a8063f3 drm_dp_dsc_sink_supported_input_bpcs -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3b01c6c4 drm_atomic_helper_calc_timestamping_constants -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3b23df26 drm_helper_hpd_irq_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3d019262 drm_fb_helper_restore_fbdev_mode_unlocked -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3e1c6096 drm_fb_helper_setcmap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3e1fd71f drm_scdc_set_scrambling -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3ea3498d drm_fb_helper_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3ea3d812 drm_gem_fb_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3f1232b5 drm_atomic_helper_wait_for_vblanks -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3f5674ea drm_dp_mst_reset_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x41e4c3bb drm_dp_mst_dump_topology -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x429cd734 drm_gem_reset_shadow_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x42a5a642 drm_fb_helper_alloc_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x43f7d0a8 drm_fb_helper_set_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x44f74e6f drm_dp_pcon_enc_is_dsc_1_2 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3bbc951f drm_fb_helper_set_suspend_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3e163e62 drm_fb_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3e6ebf87 drm_atomic_helper_bridge_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3e73f4a7 drm_primary_helper_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3fdb89b0 drm_dp_read_lttpr_common_caps +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x40d9fa1a drm_self_refresh_helper_alter_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4133f940 drm_dp_downstream_debug +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x42474ec6 drm_fb_helper_lastclose +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x43468c40 drm_fb_helper_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x45e21314 drm_atomic_helper_commit_tail_rpm +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4603c416 drm_dp_pcon_dsc_bpp_incr EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4668c9dc drm_dp_downstream_min_tmds_clock -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x46d3b61d drm_helper_encoder_in_use -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x475ede11 drm_atomic_helper_commit_modeset_disables -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4821e37d drm_helper_probe_detect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x48f3e052 drm_gem_fb_begin_cpu_access -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4917d738 drm_dp_vsc_sdp_log -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4997bd55 drm_panel_bridge_add -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4a4b4402 drm_dp_atomic_find_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x46c981ee drm_atomic_helper_commit_tail +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4876ee3b drm_atomic_helper_commit_cleanup_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4908c566 __drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4b6c1339 drm_helper_encoder_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4b7e0d2c drm_dp_pcon_frl_prepare EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4bb89424 drm_dp_downstream_max_tmds_clock -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4cf8dfc4 drm_dp_mst_topology_mgr_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4d6e7542 drm_dp_downstream_id +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4c228734 drm_atomic_helper_page_flip_target +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4ceff33c drm_dp_pcon_hdmi_frl_link_error_count EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4e41ad5c drm_fb_xrgb8888_to_rgb565 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4e6e1ca1 drm_fb_helper_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4f9bbade drm_panel_bridge_connector -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x50371aa9 __drmm_simple_encoder_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x506b6910 drm_atomic_helper_disable_all -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x512cc2c4 drm_dp_dpcd_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4e658a01 __drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4e68309a drm_helper_mode_fill_fb_struct +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4e82a7ea drm_fb_helper_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4ec14d61 drm_fb_helper_check_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x50ee9295 drm_panel_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x514ec30a drm_fb_helper_unregister_fbi EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x537b8893 drm_fb_blit_rect_dstclip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x53a36b26 drm_fb_helper_alloc_fbi EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5407ae9e drm_dp_get_dual_mode_type_name -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x543b989c drm_gem_simple_display_pipe_prepare_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5508ffae drm_fb_helper_initial_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x55692f9a drm_dp_pcon_pps_override_param -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x57b98cc3 drm_mode_config_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x543bbcb7 drm_gem_simple_kms_duplicate_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x55b6eac4 drm_helper_resume_force_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x573bf4f7 drm_fb_helper_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x577cde53 drm_gem_simple_display_pipe_prepare_fb EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x582f248e drm_dp_get_adjust_request_pre_emphasis +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x58c796df drm_atomic_helper_page_flip EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x58d8fcaa drm_dsc_pps_payload_pack -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x58defa6e drm_self_refresh_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x590d9dcc drm_dp_start_crc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x591e8533 drm_dp_pcon_pps_default +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x59a10d01 drm_atomic_helper_async_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x59f27ed7 drm_dp_pcon_enc_is_dsc_1_2 EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5a4734d1 drm_kms_helper_is_poll_worker -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5a797abd drm_gem_simple_kms_cleanup_shadow_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5a86e0e7 __drm_atomic_helper_connector_state_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5b06f4ae drm_dp_pcon_dsc_bpp_incr -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5dc2af60 drm_edp_backlight_enable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5dfbd6ce drm_fb_helper_check_var -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x60a1d99b drm_dp_mst_topology_mgr_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x60c6f424 drm_dp_mst_get_edid -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6398d7f8 drm_dp_stop_crc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5cd643d4 drm_gem_fb_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5ec4a5f7 drm_gem_duplicate_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x609f93aa drm_dp_pcon_hdmi_link_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x61f8be1f drm_mode_config_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x62cca884 drm_dp_downstream_id +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x637e1d3a __drm_gem_duplicate_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x643f0fb8 drm_gem_simple_kms_reset_shadow_plane EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x648d953b drm_dsc_dp_pps_header_init EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6615069e drm_dp_dsc_sink_max_slice_count -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x665af999 drm_atomic_helper_cleanup_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x673f85d2 drm_dp_mst_detect_port -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x68e6f8a6 drm_dp_pcon_is_frl_ready -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x69ec9c47 drm_dp_read_sink_count -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6b420d64 drm_primary_helper_funcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x66f52fac drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6adb19fd drm_edp_backlight_enable EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6b5c2b06 drm_atomic_helper_damage_iter_next -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6c7bf79e drm_gem_duplicate_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6e3661f1 drm_atomic_helper_commit_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6e7a5a2f drm_crtc_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6fd7c9b2 drm_dp_aux_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7007465c drm_helper_move_panel_connectors_to_head +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6c3afdaa drm_dp_mst_hpd_irq +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6c678ba3 drm_kms_helper_poll_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6c6c87f3 drm_dp_pcon_pps_override_buf +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6ce38c50 drm_crtc_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6d7fd00a drm_atomic_helper_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7009474d drm_dp_read_mst_cap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x70179be7 drm_dp_dual_mode_write EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7053fa72 drm_dp_get_pcon_max_frl_bw -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7145ca5a drm_atomic_helper_bridge_propagate_bus_fmt +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x718e5268 drm_simple_encoder_init EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x73011db0 drm_dp_bw_code_to_link_rate -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x73d92a2f drm_fb_helper_set_par -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x73e36d35 drm_gem_destroy_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x745ecb5b drm_dp_check_act_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x747bf7bf drm_dp_start_crc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x75c26fd4 drm_gem_fb_create_handle -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x764c2f27 __drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x730db5d7 drm_dp_send_query_stream_enc_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7373d28a drm_atomic_helper_update_legacy_modeset_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x73b1a381 drm_fb_helper_cfb_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7484b16d drm_dp_send_real_edid_checksum +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x751361ea drm_fb_helper_fill_info EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x76ff6644 drm_dp_lttpr_pre_emphasis_level_3_supported -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x77a38819 drm_atomic_helper_fake_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x786d5fe0 drm_atomic_helper_wait_for_dependencies -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x792fbdd5 drm_fb_helper_sys_copyarea -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x79c16874 drm_kms_helper_poll_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7a646b25 drm_dp_mst_get_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7a77e11e drm_simple_display_pipe_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7859d64b drm_atomic_helper_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7a0cb021 drm_dp_update_payload_part2 EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7ae669d0 drm_fb_xrgb8888_to_gray8 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7c3a50e9 drm_dp_get_phy_test_pattern -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7e61823d drm_dp_mst_hpd_irq -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7f9853b8 __drm_gem_duplicate_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x80b33c48 drm_atomic_helper_plane_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x80b88b75 drm_simple_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x827d9456 drm_scdc_set_high_tmds_clock_ratio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7c02694b drm_atomic_helper_commit_hw_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7cef94f8 drm_fb_helper_cfb_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7d020fff drm_dp_pcon_frl_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7dd34159 drm_edp_backlight_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7e04c154 __drm_atomic_helper_private_obj_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7e3410e3 drm_gem_fb_create_handle +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x80644e2a drm_dp_lttpr_link_train_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8175ef0d devm_drm_panel_bridge_add_typed EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x838a8fa0 drm_fb_memcpy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x83ff9bd2 drm_helper_probe_single_connector_modes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x843e12fa drm_mode_config_helper_resume -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x85cce60d drm_dp_set_subconnector_property -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x88d5ce2a drm_atomic_helper_swap_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x839f05ad drm_edp_backlight_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x86899183 drm_atomic_helper_commit_duplicated_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x86ad5539 drm_atomic_helper_fake_vblank EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x894b1f57 drm_dp_get_adjust_request_post_cursor +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x897bef25 drm_dp_pcon_hdmi_link_active EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x89d100ba drm_fb_xrgb8888_to_rgb888_dstclip -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8a0e5959 drm_dp_send_query_stream_enc_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8a1f277c drm_dp_mst_dsc_aux_for_port -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8ae994a6 drm_atomic_helper_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8c3dacab drm_gem_fb_end_cpu_access -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8c82cfda drm_fbdev_generic_setup -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8c8bae2d drm_dp_update_payload_part1 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x89eff129 devm_drm_panel_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8a3ddcc9 drm_scdc_get_scrambling_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8b23fd2b drm_dp_remote_aux_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8b3ce7e2 drm_fb_helper_sys_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8bc0ebd5 drm_panel_bridge_add EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8ca2d9e4 drm_dp_calc_pbn_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8d34a715 drm_helper_crtc_in_use -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8d608cce drm_fb_helper_output_poll_changed EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8d701329 drm_dp_clock_recovery_ok -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x90707175 drm_dp_remote_aux_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x90b86c2b drm_dp_read_sink_count_cap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x90f5857b __drm_atomic_helper_crtc_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x925425d4 __drm_gem_reset_shadow_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9265534f drm_dp_downstream_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x926a0dea drm_dp_pcon_frl_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x94cd8ef8 drm_atomic_helper_bridge_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9508e096 drm_atomic_helper_async_commit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x95574e91 drm_fb_helper_sys_imageblit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9565c2cc drm_panel_bridge_remove -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x96712ba2 drm_dp_mst_topology_mgr_resume -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x99408a9a drm_dp_read_dpcd_caps -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9ab88c5b drm_atomic_helper_resume -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9c3e8299 drm_atomic_helper_crtc_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9df2dd12 drm_fb_helper_sys_fillrect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa0670017 drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9584f155 drm_atomic_helper_async_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x97090582 drm_lspcon_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x98761ea7 drm_dp_pcon_convert_rgb_to_ycbcr +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x98d3f89a drm_dp_link_train_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x98f6e481 drm_dp_aux_register +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9901439a drm_mode_config_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9a9e2c40 drm_crtc_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9b48f0b0 drm_atomic_helper_dirtyfb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9c62fe27 drm_dp_find_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9c87f662 drm_atomic_helper_swap_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9c9a2e01 drm_fb_helper_sys_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9e81b4a7 drm_kms_helper_poll_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9f2117d7 drm_fb_helper_restore_fbdev_mode_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9f6172b4 drm_dp_mst_dump_topology +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9fcef603 drm_fb_helper_set_par +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9fd6464c drm_panel_bridge_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa0f2f9f9 __drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa11faaff drm_fb_helper_sys_fillrect EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa1fefe6a drm_dp_psr_setup_time -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa230fff6 drm_fb_helper_fill_info -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa28e0307 drm_lspcon_set_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa3c02a64 drm_atomic_helper_commit_cleanup_done -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa47f4757 drm_atomic_helper_page_flip_target -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa5606f90 drm_gem_simple_kms_destroy_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa6f195df drm_dp_pcon_hdmi_frl_link_error_count -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa96580f8 drm_fb_helper_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xab235fab drm_atomic_helper_damage_merged -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xab35fe6a __drm_atomic_helper_plane_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xab879193 __drm_atomic_helper_connector_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xabdc038d drm_dp_dual_mode_get_tmds_output -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xacb756e3 drm_dp_find_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xadab66dc drm_atomic_helper_connector_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xadc5a049 drm_fb_helper_debug_leave +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa204b058 drm_dp_atomic_find_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa2973cf3 drm_dp_mst_allocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa5ea7438 drm_dp_dpcd_read_link_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa606a377 drm_atomic_helper_check_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa77150ce drm_self_refresh_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xab06bf25 drm_dp_aux_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xab0bf2f8 drm_fb_helper_cfb_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xae419d86 drm_fb_helper_sys_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xae8a46a9 drm_gem_fb_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaeffd6fc drm_atomic_helper_check_planes EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaf267620 drm_dp_lttpr_count -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xafd1a89c drm_dp_mst_deallocate_vcpi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb0024665 drm_fb_helper_ioctl -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb008d503 drm_lspcon_get_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb0e89a80 drm_fb_helper_deferred_io -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb1d03923 drm_dp_read_downstream_info -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb22fa98d drm_fb_helper_pan_display -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb25b6915 drm_helper_resume_force_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb40981bd drm_atomic_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb5a95d19 drm_atomic_helper_update_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb67f5e84 drm_dp_mst_topology_mgr_set_mst -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb69b4440 drm_dp_mst_allocate_vcpi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb7cb1757 drm_kms_helper_poll_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb8481b13 drm_dp_atomic_release_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb9acbfbd __drm_atomic_helper_plane_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbaaff3fb drm_dp_mst_connector_late_register -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbaebe145 drm_edp_backlight_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbb5e89c9 drm_atomic_helper_commit_planes_on_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbe9c5f13 drm_dp_dual_mode_max_tmds_clock -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbf731dfb drm_atomic_helper_plane_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbf8a759f drm_atomic_helper_commit_hw_done -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbfb34480 drm_gem_fb_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc08d00c4 drm_dp_mst_topology_mgr_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc1324ea8 drm_edp_backlight_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc3120633 drm_atomic_helper_shutdown -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc35a57ed __drm_atomic_helper_connector_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc5054f38 drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb03141f3 drm_atomic_helper_wait_for_fences +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb08c9a7d drm_atomic_helper_shutdown +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb10351fe drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb2cc952a drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb51ff83b drm_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb63dabab drm_gem_simple_kms_destroy_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb856d493 drm_dp_downstream_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xba873f48 drm_helper_probe_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xba8d822b drm_dp_mst_atomic_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbb8c04aa drm_dp_mst_topology_mgr_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbbd8b0b3 drm_dp_dpcd_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbc63c26c drm_fb_helper_set_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbcd78c12 drm_scdc_set_high_tmds_clock_ratio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbe437afc drm_atomic_helper_cleanup_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbea26c62 drm_dp_mst_topology_state_funcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbf956558 drm_dp_mst_get_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc020c0c1 drm_dp_pcon_dsc_max_slice_width +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc1034513 drm_dp_vsc_sdp_log +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc13b4328 drm_dp_mst_detect_port +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc2d2f179 drm_dp_dual_mode_set_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc4b4a378 __drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc58c01df drm_fb_helper_deferred_io EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc5c99a79 drm_dp_get_adjust_request_voltage -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc700680d drm_dp_pcon_frl_enable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc753b61e drm_kms_helper_poll_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc6b0825a drm_dp_pcon_frl_configure_2 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc6f84fd8 drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc73d34ff drm_atomic_helper_setup_commit EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc79ecffb drm_dp_downstream_is_type -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc809c2e2 drm_dp_mst_put_port_malloc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc855981c drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc84e2655 drm_dp_link_train_clock_recovery_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc85cbd71 drm_dp_send_power_updown_phy EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc85e28e8 drm_fb_xrgb8888_to_rgb565_dstclip -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xca24ee48 drm_dp_dpcd_read_link_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcdafb840 drm_dp_lttpr_link_train_channel_eq_delay -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcf210482 drm_dp_aux_register -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd12fb950 drm_dp_mst_get_port_malloc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd2138419 drm_fb_helper_set_suspend_unlocked -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd24d619f drm_atomic_helper_setup_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcb6770d3 drm_atomic_helper_commit_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcb9b384a drm_dp_read_lttpr_phy_caps +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcd9e52fc drm_dp_mst_topology_mgr_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xce7803ac drm_fb_helper_sys_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xce89991d drm_fbdev_generic_setup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcf1e9e8c drm_helper_hpd_irq_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcfdf208e drm_kms_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd2266f9c drm_dp_dual_mode_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd29d9dfd drm_fb_helper_debug_enter EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd2b0c7e6 drm_dp_downstream_is_tmds +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd300c5a0 drm_dp_mst_reset_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd39c03c1 __drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd406d58c drm_helper_force_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd40b21d4 drm_dp_read_sink_count_cap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd4453297 __drm_atomic_helper_bridge_duplicate_state EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd4983d85 drm_fb_swab -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd791828b drm_atomic_helper_commit_tail -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd8a8b691 drm_atomic_helper_page_flip -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xda8d06dc drm_dp_read_desc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdb27b645 drm_atomic_helper_check_modeset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdb3321d3 drm_atomic_helper_update_legacy_modeset_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdb399d79 drm_dp_read_lttpr_common_caps +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd5966ead drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd7273619 drm_gem_destroy_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd79668ef drm_atomic_helper_bridge_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd7fd41b4 drm_dp_mst_dsc_aux_for_port +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd838371d drm_dp_dual_mode_get_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd87acd93 drm_fb_helper_debug_leave +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xda8d8f77 drm_atomic_helper_crtc_duplicate_state EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdbc3c128 drm_fb_blit_dstclip -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdd25f079 drm_dp_pcon_dsc_max_slice_width -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xde034c00 drm_atomic_helper_dirtyfb -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdeeec8fb drm_atomic_helper_check_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdf3c79ca __drm_atomic_helper_bridge_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe00f469c __drm_atomic_helper_crtc_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe0465220 drm_helper_mode_fill_fb_struct -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe290ca02 drm_scdc_get_scrambling_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe3896970 drm_fb_helper_cfb_fillrect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe47d868f drm_dp_mst_connector_early_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe4d39185 drm_atomic_helper_check -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe6d64fe5 drm_dp_dpcd_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe74ac960 drm_fb_helper_cfb_imageblit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe82570f5 drm_kms_helper_poll_fini -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe8c126ed drm_gem_simple_kms_prepare_shadow_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeb3a0c76 drm_fb_helper_lastclose -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeb4e8975 drm_atomic_helper_bridge_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeba6e033 drm_primary_helper_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xec540e34 drm_atomic_helper_damage_iter_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xed256731 drm_fb_helper_unregister_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xed459fa3 drm_dp_dual_mode_set_tmds_output -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xed6a7c22 drm_atomic_helper_async_check -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xedb547ed drm_dp_read_lttpr_phy_caps +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdc3486dc drm_atomic_helper_wait_for_vblanks +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdc632f52 __drmm_simple_encoder_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdc69ffa5 drm_self_refresh_helper_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdd062d2b drm_gem_simple_kms_prepare_shadow_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdf273004 drm_dp_mst_get_port_malloc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdfb07e69 drm_dp_read_desc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdfe32886 drm_crtc_helper_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe31f1083 drm_dp_dual_mode_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe3213217 drm_gem_fb_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe399f1bd drm_dp_mst_connector_late_register +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe3dd51b2 drm_dp_mst_add_affected_dsc_crtcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe4b8be24 __drm_atomic_helper_crtc_state_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe5360b84 drm_dp_pcon_dsc_max_slices +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe711f59b drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe7328baf __drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe99a3550 drm_gem_reset_shadow_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xea5d6f3e drm_scdc_set_scrambling +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xebbdb7a2 drm_atomic_helper_disable_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xebf479cc drm_dp_read_downstream_info +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xec439cb4 drm_primary_helper_funcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xedb466b0 __drm_atomic_helper_plane_state_reset EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xedcf81ce drm_dp_channel_eq_ok -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xee114767 drm_atomic_helper_crtc_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xef506c48 drm_dp_mst_topology_state_funcs -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xefbe79b1 drm_simple_display_pipe_attach_bridge -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf06611c5 drm_dp_dual_mode_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf0a4ee04 drm_panel_bridge_add_typed -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf198bc45 drm_dp_read_mst_cap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf1c281ef drm_dp_dpcd_read_phy_link_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf5c5ce22 drm_dp_pcon_pps_override_buf +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xee5fd0f8 drm_helper_probe_single_connector_modes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xef4efe66 drm_gem_fb_begin_cpu_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf2043ecb drm_dp_mst_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf3ae87b2 drm_dp_mst_topology_mgr_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf481dbe4 __drm_gem_destroy_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf4e42c7c drm_fb_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf59eed72 drm_atomic_helper_damage_iter_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf5f52a7a drm_atomic_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf6704f65 drm_helper_move_panel_connectors_to_head EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf68741fb drm_dp_subconnector_type EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf689ad25 drm_dp_downstream_420_passthrough -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf78d13e9 __drm_atomic_helper_plane_state_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf816c9d2 drm_gem_cleanup_shadow_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf81a2065 __drm_gem_destroy_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf8333b3c drm_dp_pcon_dsc_max_slices -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfa6cedc0 drm_self_refresh_helper_alter_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf69406bf drm_dp_update_payload_part1 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf6e551f5 drm_dp_aux_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf836cc67 drm_atomic_helper_wait_for_dependencies +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf86b54dc drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf87e2c84 drm_atomic_helper_check_plane_damage +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf8c346be drm_self_refresh_helper_update_avg_times EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfb1a7a5a drm_dp_downstream_rgb_to_ycbcr_conversion -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfcd4ffd9 drm_self_refresh_helper_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfd2c6846 drm_dp_link_train_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfb41679b drm_fb_helper_blank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfbebf3d1 drm_atomic_helper_commit_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfc08a197 __drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfded1cac drm_fb_helper_setcmap EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfe12bcb9 drm_dsc_compute_rc_parameters -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfeb8e954 drm_atomic_helper_connector_tv_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfeeccb9f drm_fb_helper_sys_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xff0a00c4 __drm_atomic_helper_crtc_state_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfe92dbfb drm_dp_mst_connector_early_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfeebdca9 drm_atomic_helper_bridge_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfeedeba4 drm_dp_atomic_release_vcpi_slots EXPORT_SYMBOL drivers/gpu/drm/drm_panel_orientation_quirks 0x2e439142 drm_get_panel_orientation_quirk -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x396ae83b drm_gem_ttm_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x8970310a drm_gem_ttm_print_info -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x98b92eaf drm_gem_ttm_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0xad84a63d drm_gem_ttm_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0xe5cbaa58 drm_gem_ttm_dumb_map_offset -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x01cd1f34 drm_gem_vram_plane_helper_prepare_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x1df32f2b drm_gem_vram_fill_create_dumb -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x2b6dfd1e drm_gem_vram_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x3978d047 drm_vram_helper_mode_valid -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x3ff3ef5e drm_gem_vram_simple_display_pipe_prepare_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x42ffdb56 drm_gem_vram_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x578e6b42 drmm_vram_helper_init -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x7ed1dad8 drm_gem_vram_pin -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x8965c214 drm_vram_mm_debugfs_init -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x9311b984 drm_gem_vram_offset -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x9c3b8e88 drm_gem_vram_simple_display_pipe_cleanup_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x9e38a8c7 drm_gem_vram_unpin -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xa321b404 drm_gem_vram_driver_dumb_create -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xb3aaf9c1 drm_gem_vram_create -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xb7847d07 drm_gem_vram_put -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xf96944bc drm_gem_vram_plane_helper_cleanup_fb -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x080662f1 ttm_resource_manager_evict_all -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x186a63c2 ttm_bo_lock_delayed_workqueue -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x18c33999 ttm_bo_mmap_obj -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x192f90b9 ttm_bo_validate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1c6810f3 ttm_bo_kmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x23712821 ttm_bo_vm_close -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x266e560d ttm_pool_debugfs -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2a831f1c ttm_kmap_iter_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2ab03ab2 ttm_bo_vm_access -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2efe0e44 ttm_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x30550ffa ttm_bo_vm_fault_reserved -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x319d63fe ttm_device_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x31e529a8 ttm_global_swapout -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x32de7621 ttm_bo_vm_fault -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3728cef1 ttm_tt_populate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4295e33c ttm_glob -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5b0716ef ttm_bo_unmap_virtual +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x12c8db53 drm_gem_ttm_dumb_map_offset +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x219653a7 drm_gem_ttm_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x40685689 drm_gem_ttm_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0xd1533674 drm_gem_ttm_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0xe068ada7 drm_gem_ttm_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x10414b99 drm_gem_vram_simple_display_pipe_cleanup_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x22b15722 drm_gem_vram_fill_create_dumb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x382ab38c drm_gem_vram_put +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x54378f49 drm_gem_vram_unpin +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x587062e8 drm_gem_vram_create +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x7da5b86c drm_gem_vram_plane_helper_cleanup_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x8445797c drm_gem_vram_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x89034288 drm_gem_vram_driver_dumb_create +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x90c81c29 drm_gem_vram_plane_helper_prepare_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x9c526d1f drm_gem_vram_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xa99145a3 drm_gem_vram_offset +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xbdb5c863 drm_vram_mm_debugfs_init +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xc6642ee9 drmm_vram_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xd70c1481 drm_vram_helper_mode_valid +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xde0ba31e drm_gem_vram_simple_display_pipe_prepare_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xde26908a drm_gem_vram_pin +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0176fd2e ttm_bo_eviction_valuable +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x05844042 ttm_range_man_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x06997eef ttm_bo_unlock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0813fdbd ttm_sg_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0bcbb53d ttm_pool_debugfs +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x111ba373 ttm_io_prot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1b1846f2 ttm_bo_bulk_move_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1ba5f25f ttm_bo_vm_dummy_page +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x25784809 ttm_bo_mem_space +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2c8b4d7a ttm_resource_manager_debug +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2f7d1977 ttm_resource_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3d80a76a ttm_kmap_iter_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x47d1b6f1 ttm_bo_vm_fault_reserved +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x48c909c4 ttm_bo_unmap_virtual +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4da2f5fe ttm_bo_kmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x51d28c46 ttm_eu_reserve_buffers +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x528bfcf7 ttm_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x53b19962 ttm_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x569b6440 ttm_bo_wait +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x580dd2fd ttm_eu_backoff_reservation +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5a6e6f9a ttm_bo_put +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5d2f71f8 ttm_device_swapout EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6123fc63 ttm_kmap_iter_iomap_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x68d4c1ec ttm_eu_reserve_buffers -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6bb90250 ttm_range_man_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7268ede0 ttm_bo_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7352b7c0 ttm_bo_unlock_delayed_workqueue -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x77fa733b ttm_io_prot -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7ccbadf3 ttm_range_man_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7e80ce16 ttm_bo_eviction_valuable -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x81b18293 ttm_bo_vunmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x81cfa816 ttm_pool_free -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8fea09ea ttm_eu_backoff_reservation -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x99b114d8 ttm_move_memcpy -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9c967669 ttm_device_swapout -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa53fb7c7 ttm_bo_move_accel_cleanup -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xabb2dffb ttm_bo_kunmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb4f7462d ttm_eu_fence_buffer_objects -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb66adc72 ttm_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6fd3a751 ttm_device_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6ff63843 ttm_resource_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x748c3c0e ttm_glob +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x74c391de ttm_bo_validate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x76508710 ttm_range_man_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x79b56afa ttm_bo_init_reserved +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7b0af40d ttm_bo_vunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7f861623 ttm_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7f92713d ttm_bo_vm_access +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x82ffc03a ttm_eu_fence_buffer_objects +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x853a9923 ttm_tt_populate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8e48a4d5 ttm_resource_manager_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x903b7976 ttm_bo_lock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x923fe01f ttm_bo_kunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x94b9590c ttm_global_swapout +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x96d6646f ttm_bo_vm_fault +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x970de3c3 ttm_bo_vm_close +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x97bf3ac7 ttm_resource_manager_evict_all +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9e171460 ttm_bo_vm_reserve +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa490fc66 ttm_bo_vm_open +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xad4000fd ttm_pool_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb0bf6422 ttm_bo_move_memcpy EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb753ca08 ttm_bo_mem_compat -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb7de6aa8 ttm_bo_move_memcpy -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb8576d51 ttm_bo_vm_reserve -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb9707652 ttm_bo_mem_space -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbd0b7504 ttm_bo_wait -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc3bd2557 ttm_resource_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc647bbfe ttm_pool_alloc -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xccb82bf1 ttm_bo_move_to_lru_tail -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcdba149d ttm_bo_put -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcddbade3 ttm_bo_init_reserved -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd404decd ttm_bo_vm_dummy_page -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd7e85d0b ttm_tt_destroy_common -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xda903179 ttm_bo_bulk_move_lru_tail -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdb97a3ed ttm_bo_vmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdc7bfbf1 ttm_resource_manager_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdf8c717e ttm_sg_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe4246226 ttm_bo_vm_open -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe8167d39 ttm_resource_free -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xec22b7aa ttm_resource_manager_debug -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf5ed9246 ttm_tt_fini -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x5105ed6c i2c_bit_algo -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x8188e2e2 i2c_bit_add_numbered_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xddabff05 i2c_bit_add_bus -EXPORT_SYMBOL drivers/i2c/i2c-core 0x0286dcb5 __i2c_smbus_xfer -EXPORT_SYMBOL drivers/i2c/i2c-core 0x0a7e710f i2c_smbus_write_word_data -EXPORT_SYMBOL drivers/i2c/i2c-core 0x28ac2c7e i2c_smbus_read_byte_data +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc2ac45cf ttm_pool_alloc +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd063b44b ttm_bo_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe1fe1197 ttm_bo_move_to_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe98b5b50 ttm_bo_mmap_obj +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xee0cd406 ttm_bo_vmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf046b139 ttm_tt_destroy_common +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf82977d1 ttm_bo_move_accel_cleanup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfae76248 ttm_move_memcpy +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x66eea8de i2c_bit_algo +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xda3b221c i2c_bit_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xfc8f8a98 i2c_bit_add_bus +EXPORT_SYMBOL drivers/i2c/i2c-core 0x009b6aa7 i2c_smbus_read_word_data +EXPORT_SYMBOL drivers/i2c/i2c-core 0x030ce582 i2c_add_adapter +EXPORT_SYMBOL drivers/i2c/i2c-core 0x1d2e7f42 i2c_clients_command +EXPORT_SYMBOL drivers/i2c/i2c-core 0x2c49ffd4 i2c_smbus_write_word_data +EXPORT_SYMBOL drivers/i2c/i2c-core 0x2cf76279 i2c_register_driver +EXPORT_SYMBOL drivers/i2c/i2c-core 0x2e37d0a6 i2c_transfer EXPORT_SYMBOL drivers/i2c/i2c-core 0x3491d1ae i2c_smbus_pec -EXPORT_SYMBOL drivers/i2c/i2c-core 0x37f2e843 i2c_smbus_write_byte -EXPORT_SYMBOL drivers/i2c/i2c-core 0x39fabebf i2c_put_adapter -EXPORT_SYMBOL drivers/i2c/i2c-core 0x480100cd i2c_smbus_read_i2c_block_data -EXPORT_SYMBOL drivers/i2c/i2c-core 0x4b195455 i2c_add_adapter -EXPORT_SYMBOL drivers/i2c/i2c-core 0x58f0fe98 i2c_smbus_write_byte_data -EXPORT_SYMBOL drivers/i2c/i2c-core 0x5d6f5525 i2c_del_driver -EXPORT_SYMBOL drivers/i2c/i2c-core 0x654649fc i2c_transfer -EXPORT_SYMBOL drivers/i2c/i2c-core 0x6af00849 i2c_smbus_read_byte -EXPORT_SYMBOL drivers/i2c/i2c-core 0x70d1832f i2c_clients_command -EXPORT_SYMBOL drivers/i2c/i2c-core 0x7cc112d7 i2c_del_adapter -EXPORT_SYMBOL drivers/i2c/i2c-core 0x7deeb451 i2c_smbus_write_block_data -EXPORT_SYMBOL drivers/i2c/i2c-core 0x8703dcf2 i2c_register_driver -EXPORT_SYMBOL drivers/i2c/i2c-core 0x92df7f0f i2c_verify_client -EXPORT_SYMBOL drivers/i2c/i2c-core 0xa0c1c4fa i2c_smbus_read_word_data -EXPORT_SYMBOL drivers/i2c/i2c-core 0xc52d72e7 __i2c_transfer -EXPORT_SYMBOL drivers/i2c/i2c-core 0xcf1b2dd3 i2c_smbus_read_i2c_block_data_or_emulated -EXPORT_SYMBOL drivers/i2c/i2c-core 0xd073c578 i2c_smbus_read_block_data -EXPORT_SYMBOL drivers/i2c/i2c-core 0xd545ea32 i2c_verify_adapter -EXPORT_SYMBOL drivers/i2c/i2c-core 0xd6453bbe i2c_transfer_buffer_flags -EXPORT_SYMBOL drivers/i2c/i2c-core 0xd8374824 i2c_smbus_xfer -EXPORT_SYMBOL drivers/i2c/i2c-core 0xe373437d i2c_smbus_write_i2c_block_data -EXPORT_SYMBOL drivers/i2c/i2c-core 0xec37077a i2c_get_adapter -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x1f456d9d ib_create_cm_id -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x2b63ed04 ib_send_cm_dreq -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x53303dc6 ib_send_cm_sidr_req +EXPORT_SYMBOL drivers/i2c/i2c-core 0x34a73f6c i2c_smbus_write_byte_data +EXPORT_SYMBOL drivers/i2c/i2c-core 0x357790ba i2c_del_driver +EXPORT_SYMBOL drivers/i2c/i2c-core 0x39a896a5 i2c_get_adapter +EXPORT_SYMBOL drivers/i2c/i2c-core 0x4cad453d i2c_smbus_read_block_data +EXPORT_SYMBOL drivers/i2c/i2c-core 0x4d4f7838 i2c_smbus_read_byte_data +EXPORT_SYMBOL drivers/i2c/i2c-core 0x6d9bc583 i2c_smbus_write_i2c_block_data +EXPORT_SYMBOL drivers/i2c/i2c-core 0x72e3e14c __i2c_transfer +EXPORT_SYMBOL drivers/i2c/i2c-core 0x88e9337e i2c_del_adapter +EXPORT_SYMBOL drivers/i2c/i2c-core 0x9b66df3a i2c_smbus_write_byte +EXPORT_SYMBOL drivers/i2c/i2c-core 0x9dd4e8c5 __i2c_smbus_xfer +EXPORT_SYMBOL drivers/i2c/i2c-core 0x9f6a86de i2c_smbus_read_i2c_block_data_or_emulated +EXPORT_SYMBOL drivers/i2c/i2c-core 0xa1e2aa80 i2c_put_adapter +EXPORT_SYMBOL drivers/i2c/i2c-core 0xa4c1b63e i2c_smbus_xfer +EXPORT_SYMBOL drivers/i2c/i2c-core 0xa5e0d46a i2c_transfer_buffer_flags +EXPORT_SYMBOL drivers/i2c/i2c-core 0xac4bb1a7 i2c_smbus_write_block_data +EXPORT_SYMBOL drivers/i2c/i2c-core 0xce1f1bda i2c_verify_adapter +EXPORT_SYMBOL drivers/i2c/i2c-core 0xd5d7638b i2c_smbus_read_byte +EXPORT_SYMBOL drivers/i2c/i2c-core 0xd94347f8 i2c_verify_client +EXPORT_SYMBOL drivers/i2c/i2c-core 0xe15dafc5 i2c_smbus_read_i2c_block_data +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x05ad4024 ib_send_cm_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x2148fdfb ib_send_cm_drep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x272c25bf ib_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x2957b1e0 ib_cm_notify +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x30c8deb5 ib_send_cm_sidr_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x4ec528f5 ib_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x59106781 ib_cm_insert_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x5a99478b ib_send_cm_rtu EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x69824a14 ibcm_reject_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x8090324a ib_cm_notify -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x810c1c4e ib_send_cm_sidr_rep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x8c2335e8 ib_send_cm_drep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x92d450aa ib_send_cm_req -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x9ce75175 ib_destroy_cm_id -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xa9861583 ib_send_cm_rep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xac24b1f2 ib_cm_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xb413eb2a ib_send_cm_rtu -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xbe011ae2 ib_send_cm_rej -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xdef9e8c0 ib_cm_listen -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xf63c0e6f ib_cm_insert_listen -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xffb96957 ib_send_cm_mra -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x00245ebf ib_alloc_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x01917a33 ib_resize_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x01fe77ac ib_sg_to_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x03b24863 rdma_user_mmap_entry_insert_range -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x05e3bd34 ib_create_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x77a26470 ib_send_cm_mra +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x7cb3dcdb ib_send_cm_dreq +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x86959317 ib_send_cm_sidr_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xc49a83e2 ib_send_cm_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xc74ba43c ib_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xea56f681 ib_send_cm_rej +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xf11b8f22 ib_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x01731c99 ib_set_vf_guid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x01c44e75 rdma_replace_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0460ace1 rdma_set_cq_moderation EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x06830b9a ib_pack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x07a06984 __ib_alloc_pd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x085a426f rdma_restrack_add -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x08cf49b1 ib_init_ah_attr_from_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0e33d714 rdma_modify_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0e680b91 ibdev_warn -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x14350db7 ib_get_vf_stats -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x152622ef ib_modify_qp_with_udata -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x15e8d54f ib_set_device_ops -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1693fe66 ib_get_vf_guid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1ac8aa7c ib_create_srq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x06f3822d ib_unregister_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0b393f12 ib_dereg_mr_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0b8a30f4 ibdev_err +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0f3e71da ib_unregister_device_queued +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0f59c9be rdma_restrack_get_byid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x101f2ca5 rdma_nl_stat_hwcounter_entry +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x19b41564 ib_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1a0b6e5b ib_qp_usecnt_dec +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1a3252f2 rdma_user_mmap_io +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1a5537ae ib_query_qp EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1b037462 __rdma_block_iter_start -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1b2e4a9e ib_query_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1d784aac __ib_alloc_cq_any -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1ff3ae5c rdma_restrack_set_name -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2084e7f2 ib_find_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x213715ed rdma_create_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x24ccd383 ib_get_rmpp_segment -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x25d209e7 rdma_nl_register -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x270e4307 ib_free_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x274ce3f9 rdma_copy_src_l2_addr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x28286d0b rdma_set_cq_moderation -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2a06497b ibdev_err -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2a4f7ac3 ib_rdmacg_uncharge -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2d95ce93 rdma_umap_priv_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1b5e6fbb ib_init_ah_attr_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1d51e512 rdma_nl_unicast_wait +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e073b59 ibdev_alert +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1f80fcb7 ib_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2023cd18 ibnl_put_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x22224841 rdma_port_get_link_layer +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x226b5146 ib_dealloc_pd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x25d31963 ib_get_rmpp_segment +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x266d6be1 ib_dealloc_xrcd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x26b19d26 ibdev_notice +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x27119a69 ib_get_eth_speed +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x28cd974f ib_mr_pool_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2d3f1a03 ib_cq_pool_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2d8aa7e1 rdma_nl_register +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2df47961 ib_init_ah_attr_from_path EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x305e5701 rdma_addr_size_kss -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x309700b9 ib_free_recv_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x32889105 rdma_user_mmap_io -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x32fc0c81 rdma_user_mmap_entry_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x33d890fb ib_destroy_cq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x371d1329 ib_get_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x38863ba1 _ib_alloc_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3a8e7926 ib_port_register_client_groups -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3c91159a ib_get_device_fw_str -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3ccf6a33 rdma_init_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3e9f165e ib_port_immutable_read -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3ea51fab ib_cq_pool_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3ee96b55 __ib_create_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x307195ce ib_free_recv_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x30c0b978 ib_modify_qp_with_udata +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x30ec1142 ib_get_cached_port_state +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x31636c26 ib_alloc_mr_integrity +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3182a24a rdma_link_unregister +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x318497bf ib_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x355988ae rdma_restrack_count +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x36cd2012 ib_register_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x36cebc9a rdma_rw_mr_factor +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x372112ab ib_detach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3866ffb2 ib_sa_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x38b8ef79 ib_modify_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x38e7499b ib_map_mr_sg_pi +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x39b490c2 ib_unregister_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3b02c9a7 ib_get_cached_subnet_prefix +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3b26fac2 ib_query_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3ce3c6f4 ibdev_emerg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3cf3508f rdma_query_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3f5883f7 rdma_restrack_add EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3fc2387c ib_ud_header_unpack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x40b66302 rdma_read_gid_l2_fields -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x40d251d2 ib_drain_rq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x413461e8 ib_port_sysfs_get_ibdev_kobj -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4138d58f rdma_nl_put_driver_u64 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4005f08f rdma_nl_unicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4111860f ibdev_printk +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x41d4ca25 rdma_translate_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x42201fa9 rdma_create_user_ah EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x42212bdb ib_sa_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x425334d9 rdma_put_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x42b608f0 ib_qp_usecnt_inc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x432cab45 __ib_alloc_cq EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x434c5d10 zgid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x449e7ae1 ib_device_get_by_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x45133724 rdma_dev_access_netns +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x45881d3b ib_alloc_xrcd_user EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x45fb8985 rdma_nl_chk_listeners -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x475344c6 rdma_destroy_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x47915848 ib_destroy_srq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x47e3547b rdma_roce_rescan_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x493d3f0d ib_dealloc_xrcd_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4ab3641a rdma_nl_stat_hwcounter_entry -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4b266743 ib_create_qp_kernel -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4baacc6a rdma_create_user_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4ddcaff6 ib_get_cached_subnet_prefix +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x471363d4 ib_register_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x47248d29 ib_find_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x49644981 ib_find_exact_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4b7aa05e rdma_alloc_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4cec9904 rdma_roce_rescan_device EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e155af0 ib_response_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e237065 rdma_move_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e37e498 rdma_user_mmap_entry_insert +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e6341e8 rdma_user_mmap_entry_remove EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e90435c ib_sa_free_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x50941a6e rdma_move_grh_sgid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5172c986 rdma_restrack_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x51f4d40d rdma_user_mmap_entry_remove -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x524477f1 rdma_query_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x53679151 ib_rdmacg_try_charge -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5576426f ib_attach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x52e61a8a rdma_resolve_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x54d67553 rdma_restrack_parent_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x558a9b7c rdma_restrack_new EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x55bb02f3 ib_cache_gid_type_str -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x57b62642 ib_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x57d04e12 ib_close_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x57ee18fd ib_dma_virt_map_sg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x58001c0a ibnl_put_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x581f669d ibdev_alert -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x596c183b rdma_restrack_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5b421fe2 ib_alloc_mr_integrity -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5ea0a1fd ib_dealloc_pd_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x60f6b1dc ib_qp_usecnt_dec +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x57ac7944 ib_sg_to_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x588880ef __ib_alloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x59d92e9d rdma_restrack_set_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5a8eddd6 ib_create_qp_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5ade1057 rdma_user_mmap_entry_get_pgoff +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5b28f045 rdma_find_gid_by_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5cafb583 __ib_alloc_cq_any +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5e33b788 ib_free_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x60ae384f ib_get_device_fw_str 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 0x62024580 rdma_copy_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6223fa00 ib_modify_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x62fd9725 ibdev_printk -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x633d9b9d rdma_dev_access_netns -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x67cfb098 ib_init_ah_from_mcmember -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x69e858ba rdma_alloc_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6aca62ab ib_unregister_device_and_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b8b9661 ib_map_mr_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6334a90d rdma_query_gid_table +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x636d1a66 ib_find_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x637f9a57 ib_sa_path_rec_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x66be0652 ib_alloc_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x66d9e6c9 rdma_destroy_ah_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x676dc184 __ib_create_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x68884c79 rdma_put_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x69d22690 ib_reg_user_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b21cae3 ib_set_vf_link_state EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b958320 ib_ud_ip4_csum -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6e58bbe0 rdma_rw_ctx_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6ee4c939 rdma_translate_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6c0fc77b ib_check_mr_status +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6c141822 ibdev_info +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6d0c98a2 rdma_umap_priv_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6d43e0eb rdma_rw_ctx_signature_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6e218ba0 rdma_copy_src_l2_addr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6e4189ba ibdev_crit EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f3614b6 rdma_is_zero_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x70c6a97e rdma_user_mmap_entry_get_pgoff -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x72f21526 ib_get_cached_lmc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x73b24a93 rdma_rw_ctx_wrs +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f9ae02a ib_process_cq_direct EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x73baf9a2 ib_modify_qp_is_ok -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x749854f0 rdma_restrack_count +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x74e4f4cb ib_mr_pool_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7542855a rdma_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7545a910 _ib_alloc_device EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x75a729a0 rdma_nl_unregister -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7636d3c1 ib_check_mr_status -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7789d285 rdma_destroy_ah_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x75b2bdd6 ib_query_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7700a20d ib_modify_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x77d6b5b6 ib_free_send_mad EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x787ccc4c ib_get_mad_data_offset -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7aa49451 ib_unregister_mad_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7acd5b6e rdma_link_unregister -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7bbdba2e rdma_rw_ctx_post -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7c323d72 __ib_alloc_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7ca2d9e4 ib_detach_mcast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8268b642 ib_qp_usecnt_inc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x82781186 ib_sa_join_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x82af6d50 ib_post_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x83346c64 ib_map_mr_sg_pi -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x83ce68f7 ib_unregister_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8431098f ib_destroy_wq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7b2d7676 rdma_nl_put_driver_string +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7be39136 ib_create_qp_security +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7c30ca59 ib_rdmacg_try_charge +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7c89d647 rdma_rw_ctx_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7ce97825 rdma_user_mmap_entry_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fe3d3dc ib_resize_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x804ddde2 rdma_rw_ctx_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x808e3105 rdma_nl_put_driver_u32 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x83a210c2 rdma_rw_ctx_post +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x83ad2ae5 ib_device_get_by_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x84a96e7b ib_get_vf_stats +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x850250dd ib_device_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8629456c ib_set_client_data EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x86cef180 rdma_addr_size -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x87be4208 rdma_nl_unicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x885fd92d ibdev_crit -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x894c5cef rdma_replace_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8bc2458c ib_mr_pool_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8ceb5bc3 rdma_restrack_del -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8d2b898c ib_set_vf_link_state -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8e6bea68 rdma_query_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8709bb9c rdma_nl_put_driver_u64_hex +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8791002d ib_create_qp_kernel +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x87d16497 rdma_nl_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x886946ed rdma_addr_cancel +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8a07be61 ib_get_vf_config EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8e7528da __rdma_block_iter_next -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8e8008f1 ib_advise_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8e8ac4e9 ib_dealloc_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x909b06b9 ib_find_exact_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8f36031f ib_rdmacg_uncharge +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8fec4480 rdma_create_ah EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90e807c7 ib_cache_gid_parse_type_str -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9156278d ib_process_cq_direct -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9301c188 rdma_nl_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x948e8ebe rdma_rw_mr_factor -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x94c00138 rdma_user_mmap_entry_insert -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x94fe04dc rdma_read_gid_attr_ndev_rcu -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x95358bf7 rdma_query_gid_table +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x918b6b75 rdma_query_gid EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9573ffe4 ib_sa_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x95cc3145 ib_sa_get_mcmember_rec -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x95ddb005 ibdev_emerg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x982bf648 ib_device_get_by_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9ab98bfd ib_drain_sq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9b8c56ed rdma_user_mmap_entry_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9bae09b1 ib_device_get_by_name -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9c740f2f ib_register_event_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9c944360 ibdev_info -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa38a4e9f ib_sa_guid_info_rec_query -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa3e1ce26 rdma_get_gid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa40d0464 ib_unregister_event_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa42aba79 ib_mr_pool_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa43cb66b rdma_hold_gid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa598ef0d ib_set_client_data -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa5f6d299 rdma_addr_cancel -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa6299ff7 rdma_move_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa84b8d57 ib_device_set_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa8aa9ca0 rdma_rw_ctx_destroy -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaa50c803 ib_reg_user_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xac93c6d4 ib_get_net_dev_by_params +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x960d680c ib_mr_pool_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x99652034 ib_get_net_dev_by_params +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9a042f23 ib_get_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9b48ccc1 ib_port_register_client_groups +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9bccdb62 ib_modify_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9da7da8c rdma_read_gid_attr_ndev_rcu +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9f4a89fe ib_dma_virt_map_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa15cbdc1 ib_modify_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa2a01370 ib_create_srq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa2c46ccd ib_get_vf_guid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa5e306ad ib_destroy_cq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa89270e7 ib_dispatch_event +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa8edba56 rdma_nl_put_driver_u32_hex +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa9f89e24 rdma_rw_ctx_wrs +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xadc87a3c rdma_modify_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae46d23b ib_query_pkey EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae956dce ib_rate_to_mult -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb0ca4a03 ib_mad_kernel_rmpp_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb0e878c6 ib_set_vf_guid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaeef5bdc rdma_copy_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaf7d65dc rdma_rw_ctx_destroy_signature +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb0cbd8ce ib_unregister_device_and_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb201c908 ib_map_mr_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb208e9b9 rdma_get_gid_attr EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb36e4148 ib_sa_pack_path -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb4781f47 ib_destroy_qp_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb61f7828 rdma_nl_put_driver_u32_hex +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb3d85821 ib_get_cached_lmc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb436065b rdma_restrack_del EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb7852a05 ib_ud_header_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb92f0e94 ib_modify_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xba1fee53 ib_free_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbb158c39 rdma_nl_put_driver_u64_hex -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbc8c07e6 ib_query_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbe6cb24e ib_alloc_xrcd_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc00c05da ib_query_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc00d6bc7 ib_create_wq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbfcac61d rdma_hold_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc2b17310 ib_drain_rq EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc369db1e ib_get_gids_from_rdma_hdr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc38a5d17 ib_cq_pool_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc533a161 rdma_nl_put_driver_u32 -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc63e6f9f roce_gid_type_mask_support -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc662b5e7 ib_get_vf_config -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc768f9a1 rdma_find_gid_by_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc8cce1a7 ib_dereg_mr_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xca40520a rdma_restrack_parent_name -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcb64316c ibdev_notice -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcfac358f ibnl_put_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc3c64d49 ib_advise_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc4eaf566 ib_cq_pool_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc64021d7 ib_set_device_ops +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc7ff44d6 ib_create_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc9e1aa44 rdma_destroy_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcbe51159 ib_dealloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcdc731fd ib_device_set_netdev EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcfbc053b ib_unregister_driver -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd0be9ea6 rdma_nl_unicast_wait -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd377266a ib_register_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd4501474 ib_get_eth_speed +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd3b73bdd ib_drain_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd4ac4554 roce_gid_type_mask_support +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd4f0b8e6 rdma_init_netdev EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd6636ca6 rdma_addr_size_in6 -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd6c00255 ib_modify_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd84d7578 rdma_port_get_link_layer -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd87e91c9 ib_create_qp_security -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd8862706 ib_register_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd704d327 ib_sa_get_mcmember_rec +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd79e1c21 ib_sa_guid_info_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd7be4aa7 ib_mad_kernel_rmpp_agent EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda0d50ec ib_sa_cancel_query -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdbe44f01 ib_query_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdc140cf6 ib_find_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xde4af0a6 ib_mr_pool_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdffd6220 ib_open_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe0fca637 ib_mr_pool_destroy -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe161fd7e ib_modify_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe2cf9a18 rdma_nl_put_driver_string -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe32f259c ib_create_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda439a21 ib_unregister_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdaa4e987 ib_port_unregister_client_groups +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xddb92d26 ib_init_ah_from_mcmember +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xde4e2f3b ib_destroy_qp_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe0485318 ibdev_warn +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe25667ca ib_post_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe3fea3e6 rdma_read_gid_hw_context EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5840ec6 ib_wc_status_msg EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5a78c1e ib_sa_unpack_path -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5fb372a rdma_rw_ctx_destroy_signature +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5c217c1 rdma_restrack_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5e93cb4 ib_register_device EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe7b52e5f mult_to_ib_rate +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe8878173 rdma_read_gid_l2_fields EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9ceb556 ib_get_rdma_header_version EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9e799fc ib_ud_header_pack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeb133041 ib_create_qp_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeb1bbddb ib_modify_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeb5dbfca ib_find_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xedddd8f8 rdma_find_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xef45dcd7 rdma_rw_ctx_signature_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xefe4fb31 ib_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf3affdb0 ib_dispatch_event -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf3b7603f ib_init_ah_attr_from_path -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf3f22b39 ib_unregister_device_queued -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf4701df9 ib_sa_path_rec_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeae34fef ibnl_put_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeb46feca ib_destroy_srq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xec82a9ab ib_create_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeedacdd1 ib_destroy_wq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf0b1283f rdma_user_mmap_entry_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf17a1d95 ib_port_immutable_read +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf1b3decf ib_close_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf24f619f rdma_link_register +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf35382db ib_attach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf3a83b20 rdma_move_grh_sgid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf3fb42f3 ib_create_wq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf43ead4e ib_mr_pool_get EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf5dedb30 rdma_node_get_transport -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf6265e77 ib_port_unregister_client_groups +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf6014ba2 ib_port_sysfs_get_ibdev_kobj +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf67e77a7 ib_modify_mad EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf6ed3334 ib_event_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf8235cd6 rdma_read_gid_hw_context -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf9287759 rdma_restrack_new EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf96fc9de ib_unpack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfbefb3a2 rdma_resolve_ip -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfc5493d6 rdma_link_register -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfcab9476 rdma_restrack_get_byid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfe058c35 ib_get_cached_port_state -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfe7dc689 ib_drain_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfe817bca ib_device_put -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x05403140 ib_uverbs_get_ucontext_file -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x096652d3 ib_umem_odp_alloc_implicit -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x0f8821a4 ib_umem_odp_alloc_child -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x18aa500e ib_umem_dmabuf_map_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1914398b _uverbs_get_const_unsigned +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfc466bfc rdma_restrack_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfc4b87bc rdma_nl_put_driver_u64 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xff3e7188 ib_drain_sq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xff8a48eb rdma_user_mmap_entry_insert_range +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xff93f59f ib_open_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x014e1aa7 flow_resources_alloc +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x07168596 ib_umem_odp_map_dma_and_lock +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x0d7cf07a ib_uverbs_flow_resources_free +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x0fa4edec uverbs_idr_class +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x12631600 uverbs_copy_to EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1b54bd5d ib_copy_path_rec_from_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x246ac6fd ib_uverbs_flow_resources_free -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x2f2e6b61 uverbs_fd_class -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x3a1c1e83 ib_umem_odp_map_dma_and_lock -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x3e2582d4 flow_resources_alloc -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x3fbf6852 ib_umem_activate_invalidation_notifier -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x4132bf8d ib_umem_odp_unmap_dma_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x49d39b12 ib_copy_ah_attr_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x4b07a6f5 uverbs_uobject_put -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x4b247367 ib_register_peer_memory_client -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x4d0db42b uverbs_idr_class -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x4f864c41 uverbs_get_flags32 +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1f42b709 ib_umem_get_peer +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x21507280 ib_umem_odp_unmap_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x244bb0b9 ib_umem_dmabuf_unmap_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x257dfc6a uverbs_copy_to_struct_or_zero +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x2ece476d uverbs_get_flags32 +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x34efc048 uverbs_fd_class +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x3675f8e8 _uverbs_alloc +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x38ebf222 ib_umem_odp_alloc_implicit +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x443578c2 ib_umem_odp_alloc_child +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x44fb0ee2 ib_umem_copy_from +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x4836829f uverbs_destroy_def_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x49bb64a3 ib_umem_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x4aaf428b ib_umem_odp_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x4ad82b63 ib_umem_activate_invalidation_notifier +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x59c7c5c9 _uverbs_get_const_signed EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x63057f4b ib_copy_path_rec_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x64a0f78d uverbs_destroy_def_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x76c32125 uverbs_get_flags64 -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x8373bf89 ib_umem_copy_from -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x84aae2d4 ib_umem_odp_get -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x9a66ff3b _uverbs_get_const_signed -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xabaf7ed0 ib_umem_find_best_pgsz -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xad1a8bf4 ib_umem_get -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb025ed14 ib_umem_odp_release -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb15d540b ib_umem_dmabuf_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x640d26a0 ib_register_peer_memory_client +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x6f5762dd ib_copy_ah_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7aac6a7e ib_uverbs_get_ucontext_file +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7c924a10 _uverbs_get_const_unsigned +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x8093659d ib_copy_qp_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x85658811 ib_umem_find_best_pgsz +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x889c7831 uverbs_uobject_fd_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x98e0d17d uverbs_uobject_put +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xab8ff31a uverbs_get_flags64 EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xbde5c050 ib_unregister_peer_memory_client -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xbde799d9 uverbs_copy_to -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc074f30b uverbs_copy_to_struct_or_zero -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc6325177 uverbs_finalize_uobj_create -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xcb433285 uverbs_uobject_fd_release -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xccf0fd29 flow_resources_add -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xce881c61 ib_umem_release -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd8b57997 ib_umem_get_peer -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf1a093da ib_umem_dmabuf_unmap_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf302739f ib_copy_qp_attr_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf514b54a ib_umem_stop_invalidation_notifier -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf543517e _uverbs_alloc -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x12950ab5 iw_cm_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x29d8825c iw_destroy_cm_id -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x695c624e iw_create_cm_id -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x8639d387 iw_cm_listen -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x9021e4d3 iw_cm_disconnect -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x9919c6fe iw_cm_reject -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xbbc66745 iw_cm_accept +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc2204b61 flow_resources_add +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc42d6c57 ib_umem_dmabuf_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xcd460b8c uverbs_finalize_uobj_create +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd12cfc17 ib_umem_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf4769157 ib_umem_stop_invalidation_notifier +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf8c22122 ib_umem_odp_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xfd4644e7 ib_umem_dmabuf_map_pages +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x05c035cf iw_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x061faea3 iw_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x0970ee2f iw_cm_disconnect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x130cdf12 iw_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x2c2cadf6 iw_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x48252c12 iw_cm_reject +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x5b23d1dd iw_cm_accept +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xb4268754 iw_cm_connect EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf3df871f iwcm_reject_msg -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xff48aa5d iw_cm_connect -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1104a3e4 rdma_notify -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x154136f1 rdma_create_qp -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1eba3dca rdma_unlock_handler -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2ca6c20f rdma_set_reuseaddr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4168a888 rdma_connect_locked -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x45561a4d rdma_consumer_reject_data -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x473dfdbd rdma_accept_ece -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4bfde0dd rdma_set_service_type -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x55bb7bd1 rdma_reject -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x59e6c9f2 rdma_iw_cm_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5f3b895a rdma_res_to_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6014f5a1 rdma_destroy_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x768fac19 rdma_set_afonly -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x79887cba rdma_bind_addr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x81f072bd rdma_listen -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x820d5380 rdma_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x13517b69 rdma_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2359c906 rdma_unlock_handler +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2509335a rdma_create_user_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x27dcd293 rdma_get_service_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x331db5e5 rdma_leave_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x340d35e2 rdma_resolve_route +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3547b014 rdma_iw_cm_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x49fe4ffc rdma_connect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x595a0f40 rdma_resolve_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5b8a49d1 rdma_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5f9fdcb7 __rdma_create_kernel_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6277671e rdma_set_afonly +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x62da1188 rdma_set_reuseaddr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6e80be0e rdma_connect_ece +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x734a9299 rdma_consumer_reject_data +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x796cf1ac rdma_set_ack_timeout +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x81a7bdfa rdma_create_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x84ec1500 rdma_lock_handler EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x939b221e rdma_set_ack_timeout -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa5d805e5 rdma_create_user_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xad76b3ee __rdma_create_kernel_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb13d348d rdma_lock_handler -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb306f2f7 rdma_destroy_qp -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb3093aee rdma_join_multicast -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc00017a7 rdma_read_gids -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc267750b rdma_set_min_rnr_timer -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc3353376 rdma_set_ib_path -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xcc8bd0b9 rdma_connect -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd11fc9c3 rdma_get_service_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd3b11255 rdma_resolve_addr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd9742750 rdma_accept -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xdf1e7f08 rdma_reject_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xec3a94c9 rdma_disconnect -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf1264278 rdma_leave_multicast -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf84a3b0d rdma_resolve_route -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xfe972dc3 rdma_connect_ece -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x11c24388 rtrs_clt_open -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x2398cc92 rtrs_clt_request -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x5c9f5027 rtrs_clt_get_permit -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x887df274 rtrs_clt_close -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xc32c0567 rtrs_clt_rdma_cq_direct -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xe5d4dd88 rtrs_clt_query -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xf1869445 rtrs_clt_put_permit -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x28379baf rtrs_rdma_dev_pd_deinit -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x40891461 rtrs_ib_dev_find_or_add -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x72272327 rtrs_ib_dev_put +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa18c053b rdma_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa491b1ba rdma_accept +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa979cb32 rdma_res_to_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb4615610 rdma_accept_ece +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc305d132 rdma_read_gids +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc3501bfe rdma_set_ib_path +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xca89e95e rdma_disconnect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd3bd1c34 rdma_set_min_rnr_timer +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd4c2b439 rdma_notify +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd540d386 rdma_reject_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd82d238f rdma_set_service_type +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xdf375505 rdma_connect_locked +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe57d1c3c rdma_bind_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xeca66875 rdma_destroy_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xfb604508 rdma_listen +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xfceb1f9a rdma_reject +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x1a37ce8b rtrs_clt_close +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x2c32772c rtrs_clt_get_permit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x2cc1b9b4 rtrs_clt_query +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xa604995a rtrs_clt_rdma_cq_direct +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xaa0a4aed rtrs_clt_request +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xae334d22 rtrs_clt_put_permit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xb4ef29e8 rtrs_clt_open +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x21d6deb3 rtrs_rdma_dev_pd_init +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x6c971949 rtrs_rdma_dev_pd_deinit EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x8f6c7edf rtrs_addr_to_str -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x905176f0 rtrs_rdma_dev_pd_init EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x99b7caed sockaddr_to_str +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xbf2f9a18 rtrs_ib_dev_put EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xc28750dd rtrs_addr_to_sockaddr -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x1354c246 rtrs_srv_set_sess_priv -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x1e996eaf rtrs_srv_close -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x8f4659ef rtrs_srv_resp_rdma -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xa6e05871 rtrs_srv_get_queue_depth -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xf2062014 rtrs_srv_get_sess_name -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xfecaff82 rtrs_srv_open -EXPORT_SYMBOL drivers/md/dm-log 0x7227327e dm_dirty_log_destroy -EXPORT_SYMBOL drivers/md/dm-log 0x8f2c0f17 dm_dirty_log_type_unregister -EXPORT_SYMBOL drivers/md/dm-log 0x9a2feb8b dm_dirty_log_create -EXPORT_SYMBOL drivers/md/dm-log 0xc1107900 dm_dirty_log_type_register -EXPORT_SYMBOL drivers/md/dm-snapshot 0x06593841 dm_exception_store_type_register -EXPORT_SYMBOL drivers/md/dm-snapshot 0x3b2c2dc2 dm_snap_origin -EXPORT_SYMBOL drivers/md/dm-snapshot 0x49758219 dm_snap_cow -EXPORT_SYMBOL drivers/md/dm-snapshot 0x6284062e dm_exception_store_create -EXPORT_SYMBOL drivers/md/dm-snapshot 0x8f835492 dm_exception_store_type_unregister -EXPORT_SYMBOL drivers/md/dm-snapshot 0xfde6d688 dm_exception_store_destroy -EXPORT_SYMBOL drivers/md/raid456 0xa25435e9 raid5_set_cache_size -EXPORT_SYMBOL drivers/md/raid456 0xbaec1284 r5c_journal_mode_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x033ea93e mlx4_get_eqs_per_port -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x064ddf18 mlx4_SET_VPORT_QOS_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x07403727 mlx4_SET_PORT_BEACON -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x142a5b6a mlx4_get_slave_node_guid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1927661e mlx4_release_eq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x21b71ad6 mlx4_is_slave_active -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2965edef mlx4_get_module_info -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x34f615ff mlx4_get_is_vlan_offload_disabled -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3d49c07b get_phv_bit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x40418790 mlx4_SET_PORT_user_mtu -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x42b5ec66 mlx4_get_parav_qkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x444cc5b1 mlx4_SET_PORT_qpn_calc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x45f615e7 mlx4_get_slave_pkey_gid_tbl_len -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4b7d01bf mlx4_max_tc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4c854bd9 mlx4_get_slave_port_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5389340f mlx4_SET_VPORT_QOS_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x59a842af mlx4_tunnel_steer_add -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5eefb5a6 mlx4_gen_pkey_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x69341680 mlx4_SET_PORT_VXLAN -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x75d305d8 mlx4_is_eq_shared -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7aee8948 mlx4_eq_get_irq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7cbd010b mlx4_assign_eq +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xc9ea6e68 rtrs_ib_dev_find_or_add +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x17aebf29 rtrs_srv_resp_rdma +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x27ed2b68 rtrs_srv_set_sess_priv +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x6015b4db rtrs_srv_open +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xab2f2d32 rtrs_srv_close +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xcf3eaa9e rtrs_srv_get_queue_depth +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xf47560e7 rtrs_srv_get_sess_name +EXPORT_SYMBOL drivers/md/dm-log 0x5f30a0f7 dm_dirty_log_type_register +EXPORT_SYMBOL drivers/md/dm-log 0x8457fd69 dm_dirty_log_destroy +EXPORT_SYMBOL drivers/md/dm-log 0xbd97978e dm_dirty_log_type_unregister +EXPORT_SYMBOL drivers/md/dm-log 0xe73c5c7c dm_dirty_log_create +EXPORT_SYMBOL drivers/md/dm-snapshot 0x266a2f77 dm_snap_origin +EXPORT_SYMBOL drivers/md/dm-snapshot 0x3bea9376 dm_exception_store_type_unregister +EXPORT_SYMBOL drivers/md/dm-snapshot 0x40bf0854 dm_exception_store_create +EXPORT_SYMBOL drivers/md/dm-snapshot 0x4f77418f dm_exception_store_destroy +EXPORT_SYMBOL drivers/md/dm-snapshot 0x76fee123 dm_snap_cow +EXPORT_SYMBOL drivers/md/dm-snapshot 0xd76cdd37 dm_exception_store_type_register +EXPORT_SYMBOL drivers/md/raid456 0x568bf5bc r5c_journal_mode_set +EXPORT_SYMBOL drivers/md/raid456 0xc79f8fac raid5_set_cache_size +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x06dfaccb mlx4_SET_PORT_general +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x07a0a4e8 mlx4_get_slave_from_roce_gid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0a85ff81 mlx4_get_parav_qkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0af86e35 mlx4_SET_PORT_qpn_calc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0dd04aaa mlx4_ALLOCATE_VPP_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1aa44332 mlx4_get_module_info +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1dc38e60 mlx4_put_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x22a33034 mlx4_get_cpu_rmap +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2817a6ed mlx4_tunnel_steer_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x32151cb7 mlx4_ALLOCATE_VPP_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x321c0f2f mlx4_gen_pkey_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4133298e mlx4_SET_MCAST_FLTR +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x418a61d3 mlx4_is_slave_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4747272d mlx4_gen_guid_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4adc9a00 mlx4_SET_VPORT_QOS_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4e6c457e set_and_calc_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x51254a01 mlx4_sync_pkey_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5175ca0c mlx4_max_tc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x51dbb255 mlx4_eq_get_irq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x56f88d99 mlx4_SET_PORT_BEACON +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5ef25250 mlx4_assign_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6768835f mlx4_get_roce_gid_from_slave +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x68f3a046 mlx4_is_eq_shared +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6d027f27 mlx4_test_async +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x707bff5e mlx4_get_eqs_per_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7218c237 mlx4_SET_VPORT_QOS_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x770078da mlx4_gen_slaves_port_mgt_ev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x797f5596 mlx4_SET_PORT_SCHEDULER 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 0x8371ad07 mlx4_sync_pkey_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x89b0c99b mlx4_SET_PORT_fcs_check -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x93182b26 mlx4_SET_MCAST_FLTR -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x93bca69b mlx4_get_cpu_rmap -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x974a4b9d mlx4_is_eq_vector_valid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa5469944 mlx4_SET_PORT_PRIO2TC -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xafe71d8d mlx4_query_diag_counters -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb0e10154 mlx4_ALLOCATE_VPP_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xba28530e mlx4_gen_slaves_port_mgt_ev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbb51cc57 mlx4_test_interrupt -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc7765013 mlx4_gen_guid_change_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xccafaed1 mlx4_SET_PORT_general -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd805334c mlx4_ALLOCATE_VPP_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdb38e103 set_phv_bit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe002993e mlx4_put_slave_node_guid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe0e42486 mlx4_test_async -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xef98a183 mlx4_SET_PORT_SCHEDULER -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf3530caa mlx4_gen_port_state_change_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf87b3004 mlx4_get_slave_from_roce_gid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfa7c6fb1 set_and_calc_slave_port_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfeb8e66c mlx4_get_roce_gid_from_slave -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfeca7190 mlx4_SET_PORT_user_mac -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x018df8ee mlx5_eswitch_get_vport_metadata_for_match -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0417c5c1 mlx5_lag_is_shared_fdb -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x068f5c6e mlx5_rl_remove_rate_raw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x07907bb0 mlx5_comp_vectors_count -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0a6f4e48 mlx5_comp_irq_get_affinity_mask -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0c56bf72 mlx5_alloc_bfreg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0cc62bb1 mlx5_lag_is_roce -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0d0ff582 mlx5_cmd_destroy_vport_lag -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x113a1c10 mlx5_fpga_mem_read -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1dcdea0d mlx5_eswitch_reg_c1_loopback_enabled -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1e177193 mlx5_core_modify_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x82138577 mlx4_is_eq_vector_valid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8a67c96a mlx4_get_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8cee733b get_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8d2bf3b4 mlx4_SET_PORT_user_mtu +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8e34733e mlx4_query_diag_counters +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9242c2ff mlx4_release_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9c780a95 mlx4_SET_PORT_user_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xad204946 mlx4_SET_PORT_VXLAN +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbe291893 mlx4_SET_PORT_PRIO2TC +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc5143cc5 mlx4_get_is_vlan_offload_disabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc9cb68d9 mlx4_SET_PORT_fcs_check +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd2adb93d mlx4_test_interrupt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdd8eced8 set_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe108d682 mlx4_get_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xed32cce9 mlx4_get_slave_pkey_gid_tbl_len +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfffa5281 mlx4_gen_port_state_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x00c48971 mlx5_eq_disable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x02b2534c mlx5_rl_is_in_range +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x03b8627f mlx5_notifier_unregister +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 0x09ad2b15 mlx5_eq_update_ci +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0b4bb116 mlx5_eswitch_get_core_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0bb006bf mlx5_cmd_exec_cb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0f94f14a mlx5_core_create_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x140dd4a5 mlx5_alloc_bfreg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x145f4453 mlx5_fpga_get_sbu_caps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x18810088 mlx5_cmd_create_vport_lag 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 0x1e5b3a1d mlx5_notifier_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2151cd9d mlx5_core_query_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x21cc3484 mlx5_fpga_get_sbu_caps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1f91bcdf mlx5_del_flow_rules +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2003aa56 mlx5_get_fdb_sub_ns +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x22248956 __traceiter_mlx5_fs_del_fte 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 0x24430822 mlx5_rl_add_rate -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x245aea31 mlx5_qp_debugfs_cleanup -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2477823c mlx5_lag_query_cong_counters -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2528452a mlx5_lag_get_roce_netdev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x266555dd mlx5_lag_is_sriov -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2754d44a mlx5_fs_add_rx_underlay_qpn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x27798778 mlx5_eq_get_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x27e7b7a9 mlx5_rl_remove_rate EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x29178f4d mlx5_create_lag_demux_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2b065fdb mlx5_core_dealloc_pd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2c7617f1 mlx5_fc_query -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2f0f226d mlx5_core_query_sq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x30268f80 mlx5_packet_reformat_dealloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x309b4d49 __traceiter_mlx5_fs_del_fg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x30b2fd32 mlx5_cmd_free_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x30d173a0 mlx5_core_create_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2acc4be9 mlx5_debug_qp_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2b9a696a __traceiter_mlx5_fs_add_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2c159aa5 mlx5_eswitch_unregister_vport_reps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2cc7539b mlx5_core_dealloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2cfdf615 mlx5_core_destroy_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2d94665f mlx5_eq_destroy_generic +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2efa1dc9 mlx5_eswitch_vport_match_metadata_enabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x30c04480 mlx5_debug_qp_remove 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 0x36017fed mlx5_core_modify_cq_moderation -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3631c4ce mlx5_rsc_dump_next -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x37a61aa6 mlx5_core_destroy_rqt -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3b4cfc64 mlx5_lag_get_slave_port -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3e62679b mlx5_lag_is_master -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3f30f8a6 mlx5_fpga_sbu_conn_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x34789410 mlx5_lag_is_sriov +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x350b9af2 __traceiter_mlx5_fs_set_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x357f6868 mlx5_eq_enable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x38d8b404 mlx5_fc_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3ae4bffc mlx5_get_flow_namespace +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3b133af4 mlx5_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3b23ac2a mlx5_core_query_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3b3efee7 mlx5_core_create_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4009e755 mlx5_core_query_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x406ce9ae mlx5_core_destroy_tir EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x41f66086 mlx5_create_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x432320c1 mlx5_rl_is_in_range -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x43d0ba0e mlx5_packet_reformat_alloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x497d7358 mlx5_cmd_init_async_ctx +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x43a74e3e mlx5_core_modify_cq_moderation +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x447c9120 mlx5_eswitch_get_vport_metadata_for_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4496f4a7 mlx5_add_flow_rules +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x45518088 mlx5_fpga_sbu_conn_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x46866d82 mlx5_debugfs_root 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 0x4f43ca70 mlx5_destroy_flow_group -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4fe60a38 mlx5_core_destroy_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x513ccffd mlx5_lag_is_active -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x534a2045 mlx5_eswitch_get_vport_metadata_for_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x53f7abbb mlx5_core_detach_mcg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x546d611a mlx5_core_destroy_tis -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x557a5eb6 mlx5_core_alloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4fd9ea65 mlx5_rdma_rn_get_params +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x52bd1482 mlx5_packet_reformat_dealloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x53aeb631 mlx5_fpga_mem_read 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 0x5623525e mlx5_core_create_tir -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x57ff2aa4 mlx5_eq_destroy_generic -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5e160082 mlx5_eq_notifier_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5f6c0332 mlx5_core_create_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x56235c1d mlx5_packet_reformat_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x56d077e4 __traceiter_mlx5_fs_del_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x57805dfd __traceiter_mlx5_fw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x57c3e31e mlx5_lag_is_shared_fdb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x58bb61af mlx5_cmd_destroy_vport_lag +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5bd41d91 mlx5_fpga_mem_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5c2babd9 mlx5_core_modify_tis EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x61492bb7 mlx5_rl_are_equal -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x62fbbbc6 __traceiter_mlx5_fs_del_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x63acb3cc mlx5_get_flow_namespace -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x63d12015 mlx5_eswitch_register_vport_reps -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x648f137e mlx5_eswitch_get_core_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6a146883 __traceiter_mlx5_fs_set_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6bb5ad40 mlx5_eswitch_vport_match_metadata_enabled -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6c00e43e mlx5_core_create_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6e0adfa0 mlx5_core_destroy_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6f0a64f7 mlx5_core_modify_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7140fc5f mlx5_core_roce_gid_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x64c323b0 mlx5_core_query_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x655d5427 mlx5_rl_add_rate_raw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x67b4a3a6 mlx5_core_modify_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x69146b19 mlx5_free_bfreg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6a69fb69 mlx5_lag_get_peer_mdev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6b7aacea mlx5_core_create_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6bbd26c4 mlx5_cmd_init_async_ctx +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6e2d09f5 mlx5_eq_create_generic +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6fcb734c mlx5_qp_debugfs_cleanup +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x70e60c0f 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 0x77e0b83c mlx5_lag_is_master +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7900c74f mlx5_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7a9d3d7d mlx5_core_dealloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7b267d22 mlx5_rl_add_rate 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 0x7c0712d6 mlx5_query_ib_port_oper +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 0x7f966e7e mlx5_qp_debugfs_init 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 0x8095aff6 mlx5_cmd_alloc_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x827b5fe8 mlx5_get_fdb_sub_ns +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x80122ce0 mlx5_core_alloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8151c992 mlx5_lag_get_roce_netdev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x823017ca mlx5_core_roce_gid_set 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 0x876d17e1 mlx5_notifier_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x88dbf911 mlx5_eswitch_unregister_vport_reps -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x89bb5478 mlx5_mpfs_add_mac -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x89da6a0f mlx5_core_alloc_transport_domain -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8b03f27b mlx5_del_flow_rules -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8beeb2a8 mlx5_eq_create_generic -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8c66b6e4 mlx5_vector2eqn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8c7e598a mlx5_fpga_sbu_conn_sendmsg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8c947c28 mlx5_cmd_exec_polling -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8d6a15fb mlx5_rdma_rn_get_params -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8d94069e mlx5_eq_update_ci -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9083cc41 mlx5_core_create_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x915f6831 mlx5_fpga_mem_write -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9181b46b mlx5_debug_qp_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x89930cef mlx5_cmd_exec_polling +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8c0af39d mlx5_modify_header_dealloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8c3dff87 mlx5_fs_add_rx_underlay_qpn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8f32b191 mlx5_core_create_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8fcb0c70 mlx5_rsc_dump_next +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x90051e7d mlx5_core_modify_cq EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x91c33c43 mlx5_create_auto_grouped_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x93cefccf mlx5_rl_add_rate_raw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x949aab58 mlx5_fpga_sbu_conn_create -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x94b3c72c mlx5_modify_header_dealloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x95edc419 __traceiter_mlx5_fw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x961723fb mlx5_core_modify_sq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x965e2fdf mlx5_core_attach_mcg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96b23a3c mlx5_eq_disable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x95488683 mlx5_eswitch_get_vport_metadata_for_match +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x955afc48 mlx5_nic_vport_disable_roce +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x95e180fa mlx5_create_flow_group +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9607b752 mlx5_eswitch_uplink_get_proto_dev EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96eb2c99 mlx5_fc_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x977c0278 mlx5_core_destroy_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9971a846 mlx5_put_uars_page 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 0xa060d975 mlx5_nic_vport_disable_roce -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa4e1edb7 mlx5_eswitch_uplink_get_proto_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9ec8bcfd mlx5_core_query_vendor_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa0a533fb mlx5_modify_header_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa213987a mlx5_fc_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa45a95e3 mlx5_core_create_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa4657b90 mlx5_fpga_sbu_conn_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa55a1b39 mlx5_eswitch_add_send_to_vport_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa823ff59 mlx5_eswitch_get_proto_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa89a7f05 mlx5_eswitch_vport_rep EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa9fa9bfa __traceiter_mlx5_fs_del_ft -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xab8c928b __traceiter_mlx5_fs_del_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xac127c80 mlx5_rsc_dump_cmd_create -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xad3f98a7 mlx5_lag_get_peer_mdev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaa9aff35 mlx5_buf_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xac7554d9 mlx5_lag_get_slave_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xac943fe9 mlx5_lag_is_roce +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xad1372ec 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 0xb322ee0a mlx5_cmd_exec_cb -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb51e3113 mlx5_core_destroy_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xae2450c2 mlx5_comp_irq_get_affinity_mask +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaedacc99 mlx5_comp_vectors_count +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 0xb37d945b mlx5_core_attach_mcg 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 0xb9ae685f mlx5_eswitch_vport_rep -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbb2ad923 mlx5_core_modify_tis -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbb395f07 mlx5_eswitch_add_send_to_vport_rule 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 0xbd6c72f3 mlx5_modify_header_alloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc1622019 mlx5_core_create_psv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc199dc13 mlx5_core_query_vendor_id -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc1e309f8 mlx5_core_create_rqt -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc5e1fc25 mlx5_buf_alloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc6980412 mlx5_core_query_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc8f2e9c9 mlx5_add_flow_rules -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xca7596ae mlx5_fs_remove_rx_underlay_qpn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcc112d1c mlx5_core_dealloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbe0836f2 mlx5_mpfs_add_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbf5941fb mlx5_eswitch_get_encap_mode +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbf725cc0 mlx5_core_destroy_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbf8696e7 mlx5_get_uars_page +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc575b9f7 mlx5_core_destroy_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc968045d mlx5_core_create_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc98370e8 mlx5_eq_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcc3f9ce2 mlx5_mpfs_del_mac EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xce74d10b mlx5_destroy_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd125b7a5 mlx5_get_uars_page -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd2087918 mlx5_rl_remove_rate -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd6126561 mlx5_core_query_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcee0cbcc mlx5_lag_is_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcf263d13 mlx5_core_destroy_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd05bb16b mlx5_lag_query_cong_counters +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd1094e90 mlx5_cmd_alloc_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd1fefcab mlx5_fs_remove_rx_underlay_qpn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd384d7c1 mlx5_eq_get_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd5d4544d mlx5_vector2eqn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd5da77f3 mlx5_cmd_cleanup_async_ctx 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 0xd855f1dd mlx5_fc_create -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd8cdd8ae mlx5_core_destroy_psv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdae91f76 mlx5_eq_enable -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdba9217c mlx5_cmd_exec -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdc875abd mlx5_debug_qp_remove -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdf801ea6 mlx5_debugfs_root -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe17f0368 mlx5_free_bfreg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe4148e34 __traceiter_mlx5_fs_add_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd8403e60 mlx5_core_destroy_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xda723313 mlx5_eswitch_register_vport_reps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdcff8957 mlx5_core_create_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xded7d511 mlx5_core_detach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe13643a9 mlx5_core_query_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe18052f1 mlx5_eq_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe241c3bf mlx5_core_modify_rq EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe4e09c2b __tracepoint_mlx5_fw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe850f34c mlx5_eq_notifier_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe8abbc76 mlx5_put_uars_page -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe9e225b8 __traceiter_mlx5_fs_add_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xea29e825 mlx5_eswitch_get_proto_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xea97b5c6 mlx5_cmd_create_vport_lag +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe5c67c5e mlx5_cmd_free_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeae4e720 mlx5_core_alloc_transport_domain 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 0xefd0d228 mlx5_cmd_cleanup_async_ctx -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf03cee8d mlx5_eswitch_get_encap_mode -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf37a2a8f mlx5_fc_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xecbdaac1 mlx5_query_ib_port_oper +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf4aff956 mlx5_fc_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf699ed8f mlx5_rl_remove_rate_raw EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf6c894f3 __traceiter_mlx5_fs_add_ft 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 0xfa7edd14 mlx5_core_destroy_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfb8a99dc mlx5_mpfs_del_mac -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfbd5fb6b mlx5_qp_debugfs_init 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 0xfdb7e442 mlx5_create_flow_group -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxfw/mlxfw 0xe0963c61 mlxfw_firmware_flash +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfd5858b5 mlx5_rsc_dump_cmd_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxfw/mlxfw 0xe9ba59f5 mlxfw_firmware_flash 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 0x08ba7c92 mlxsw_core_trap_state_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x08d4e334 mlxsw_core_trap_unregister EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0ca34ccf mlxsw_core_max_ports EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0dd8caa3 mlxsw_reg_trans_write EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0e81c09c mlxsw_afk_destroy @@ -1475,25 +1477,26 @@ EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x18b0ad00 mlxsw_afa_block_append_police EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x19fa5852 mlxsw_core_flush_owq EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x1c6605f6 mlxsw_afa_block_append_qos_switch_prio -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x1f2236e3 mlxsw_core_trap_unregister EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x202693f0 mlxsw_afa_block_cur_set EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x21daf3af mlxsw_afa_block_append_qos_dsfield EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x23eddc68 mlxsw_core_cpu_port_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x29097359 mlxsw_core_bus_device_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2b228cad mlxsw_core_ptp_transmitted EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2c68ced3 mlxsw_core_read_frc_h -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x303e45f1 mlxsw_core_ptp_transmitted EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x30d72838 mlxsw_env_get_module_eeprom_by_page EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x35ba2254 mlxsw_afk_values_add_u32 EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x38185d87 mlxsw_afa_block_append_qos_ecn EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x406b4614 mlxsw_afa_block_append_counter +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x43a85c0e mlxsw_core_port_devlink_port_get 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 0x47b4c57c mlxsw_core_port_eth_set EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4a6ed376 mlxsw_core_port_fini -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4a9619fd mlxsw_core_rx_listener_unregister EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4b0bae55 mlxsw_core_kvd_sizes_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4c1f8038 mlxsw_afa_create EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4e2424ee mlxsw_reg_trans_query EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5a099407 mlxsw_afa_block_append_qos_dscp EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5cf3dd79 mlxsw_core_bus_device_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5eef3401 mlxsw_core_rx_listener_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5ff17b5c mlxsw_afa_block_destroy EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x618a30ab mlxsw_afa_block_commit EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x61ea9293 mlxsw_core_event_listener_register @@ -1501,19 +1504,15 @@ EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x63874d4c mlxsw_core_port_driver_priv EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x65e16da4 mlxsw_afk_key_info_get EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x692ac04e mlxsw_afk_create -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x6b4029e9 mlxsw_env_get_module_eeprom -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x6f696715 mlxsw_core_port_devlink_port_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x6caad1c2 mlxsw_core_skb_receive EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x71e1d813 mlxsw_core_port_clear -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x73e49759 mlxsw_core_bus_device_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x749556a2 mlxsw_afk_key_info_subset EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x74eb7c9e mlxsw_core_res_valid EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x77768221 mlxsw_core_module_max_width EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x77d83398 mlxsw_core_read_frc_l -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7bd13464 mlxsw_core_driver_unregister EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7f659d4c mlxsw_afa_block_append_vlan_modify 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 0x83a0e8fd mlxsw_core_driver_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x858c30d0 mlxsw_afa_block_create EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x86a40342 mlxsw_core_res_get EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x87b88710 mlxsw_core_event_listener_unregister @@ -1524,25 +1523,26 @@ EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x97cf0ab9 mlxsw_core_port_is_xm 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 0x9ce74c90 mlxsw_afa_create EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x9e41f494 mlxsw_afk_encode +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa2a2f35e mlxsw_core_driver_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa7765e88 mlxsw_reg_query -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa8b0e40a mlxsw_core_rx_listener_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa811da3b mlxsw_core_trap_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb5e762fa mlxsw_afk_values_add_buf 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 0xb9f797a9 mlxsw_env_module_overheat_counter_get 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 0xbba81602 mlxsw_env_get_module_eeprom EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbbb7a867 mlxsw_afa_block_append_sampler EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbc222a8d mlxsw_afk_clear EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbe82d6cc mlxsw_env_get_module_info -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbf3898d3 mlxsw_core_trap_state_set EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbfb7df3c mlxsw_core_driver_priv EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbfd01f33 mlxsw_core_port_ib_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc5fd33ea mlxsw_core_skb_receive +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc1b13782 mlxsw_core_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc6081470 mlxsw_afa_block_append_mirror EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc9c2e4cc mlxsw_core_lag_mapping_clear EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xca257489 mlxsw_afa_block_append_fwd 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 0xccd82c08 mlxsw_core_trap_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xced17278 mlxsw_core_port_eth_set EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd1a82f0b mlxsw_core_lag_mapping_get EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd252e62d mlxsw_core_skb_transmit_busy EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd28256cf mlxsw_afa_block_append_allocated_counter @@ -1552,270 +1552,270 @@ EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd9f711ae mlxsw_afa_block_append_mcrouter EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdc415cf1 mlxsw_afa_block_continue EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xde4e211f mlxsw_afa_block_append_l4port -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xde78dee2 mlxsw_core_skb_transmit EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdeb1dc2e mlxsw_afa_block_first_kvdl_index EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe16986dd mlxsw_afa_block_activity_get EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xecab212a mlxsw_afa_cookie_lookup +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf1934809 mlxsw_core_skb_transmit EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf2ca3bae mlxsw_core_res_query_enabled EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf4909bea mlxsw_core_port_type_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf68e0681 mlxsw_afa_block_append_mirror +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf6879a38 mlxsw_core_rx_listener_unregister EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xff007c25 mlxsw_core_cpu_port_fini -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0x282a065f mlxsw_pci_driver_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0xc94dbfd0 mlxsw_pci_driver_register -EXPORT_SYMBOL drivers/net/phy/bcm-phy-lib 0xa414454b bcm54xx_auxctl_write -EXPORT_SYMBOL drivers/net/phy/libphy 0x007e57c6 phy_detach -EXPORT_SYMBOL drivers/net/phy/libphy 0x034242bc phy_mii_ioctl -EXPORT_SYMBOL drivers/net/phy/libphy 0x041665a5 mdio_device_free -EXPORT_SYMBOL drivers/net/phy/libphy 0x06419c89 genphy_c37_config_aneg -EXPORT_SYMBOL drivers/net/phy/libphy 0x06990def genphy_c37_read_status -EXPORT_SYMBOL drivers/net/phy/libphy 0x092996e2 phy_register_fixup_for_id -EXPORT_SYMBOL drivers/net/phy/libphy 0x0a7b1d85 phy_attached_info_irq -EXPORT_SYMBOL drivers/net/phy/libphy 0x0cc643e3 mdio_find_bus -EXPORT_SYMBOL drivers/net/phy/libphy 0x1015e0f9 mdiobus_get_phy -EXPORT_SYMBOL drivers/net/phy/libphy 0x11e9d3a6 phy_start_aneg -EXPORT_SYMBOL drivers/net/phy/libphy 0x123f640a phy_driver_register -EXPORT_SYMBOL drivers/net/phy/libphy 0x135cde92 phy_resume -EXPORT_SYMBOL drivers/net/phy/libphy 0x15acd86c phy_init_eee -EXPORT_SYMBOL drivers/net/phy/libphy 0x164db811 phy_device_register -EXPORT_SYMBOL drivers/net/phy/libphy 0x1718fa55 phy_validate_pause -EXPORT_SYMBOL drivers/net/phy/libphy 0x1983c86b phy_support_asym_pause -EXPORT_SYMBOL drivers/net/phy/libphy 0x1ad13a05 genphy_aneg_done -EXPORT_SYMBOL drivers/net/phy/libphy 0x1af5ac3d phy_connect -EXPORT_SYMBOL drivers/net/phy/libphy 0x1b615d53 fwnode_mdio_find_device -EXPORT_SYMBOL drivers/net/phy/libphy 0x1e5260da phy_set_asym_pause -EXPORT_SYMBOL drivers/net/phy/libphy 0x20107269 phy_attached_info -EXPORT_SYMBOL drivers/net/phy/libphy 0x214e2871 phy_register_fixup_for_uid -EXPORT_SYMBOL drivers/net/phy/libphy 0x215145df genphy_check_and_restart_aneg -EXPORT_SYMBOL drivers/net/phy/libphy 0x28002407 phy_request_interrupt -EXPORT_SYMBOL drivers/net/phy/libphy 0x2cc4316c get_phy_device -EXPORT_SYMBOL drivers/net/phy/libphy 0x2d9d7f87 mdiobus_read -EXPORT_SYMBOL drivers/net/phy/libphy 0x325fbed8 phy_mac_interrupt -EXPORT_SYMBOL drivers/net/phy/libphy 0x328546d6 __phy_read_mmd -EXPORT_SYMBOL drivers/net/phy/libphy 0x3623769e genphy_read_mmd_unsupported -EXPORT_SYMBOL drivers/net/phy/libphy 0x3707fce1 phy_print_status +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0x5bbe10d0 mlxsw_pci_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0x943b48f4 mlxsw_pci_driver_register +EXPORT_SYMBOL drivers/net/phy/bcm-phy-lib 0x8f624eba bcm54xx_auxctl_write +EXPORT_SYMBOL drivers/net/phy/libphy 0x02951c49 phy_device_register +EXPORT_SYMBOL drivers/net/phy/libphy 0x04527dfc __mdiobus_write +EXPORT_SYMBOL drivers/net/phy/libphy 0x057abc15 phy_set_asym_pause +EXPORT_SYMBOL drivers/net/phy/libphy 0x06d6aa70 phy_write_mmd +EXPORT_SYMBOL drivers/net/phy/libphy 0x080cd202 fwnode_phy_find_device +EXPORT_SYMBOL drivers/net/phy/libphy 0x08133d5c phy_drivers_register +EXPORT_SYMBOL drivers/net/phy/libphy 0x0a7e2d04 genphy_soft_reset +EXPORT_SYMBOL drivers/net/phy/libphy 0x0c919928 phy_queue_state_machine +EXPORT_SYMBOL drivers/net/phy/libphy 0x11921f90 genphy_loopback +EXPORT_SYMBOL drivers/net/phy/libphy 0x1247b35a genphy_config_eee_advert +EXPORT_SYMBOL drivers/net/phy/libphy 0x173416f1 phy_attached_info +EXPORT_SYMBOL drivers/net/phy/libphy 0x1d1e130b phy_device_remove +EXPORT_SYMBOL drivers/net/phy/libphy 0x214edde9 phy_write_paged +EXPORT_SYMBOL drivers/net/phy/libphy 0x2160c943 mdiobus_read_nested +EXPORT_SYMBOL drivers/net/phy/libphy 0x23acc58f __mdiobus_register +EXPORT_SYMBOL drivers/net/phy/libphy 0x2537cd15 mdio_find_bus +EXPORT_SYMBOL drivers/net/phy/libphy 0x25907315 phy_modify_paged +EXPORT_SYMBOL drivers/net/phy/libphy 0x28d2c397 genphy_c37_read_status +EXPORT_SYMBOL drivers/net/phy/libphy 0x2ae779b7 mdio_bus_type +EXPORT_SYMBOL drivers/net/phy/libphy 0x2e4222ad mdio_device_reset +EXPORT_SYMBOL drivers/net/phy/libphy 0x2eebe8f8 phy_resume +EXPORT_SYMBOL drivers/net/phy/libphy 0x3278c0bd phy_start +EXPORT_SYMBOL drivers/net/phy/libphy 0x330d69de phy_validate_pause +EXPORT_SYMBOL drivers/net/phy/libphy 0x384643e2 fwnode_get_phy_id EXPORT_SYMBOL drivers/net/phy/libphy 0x394a1e11 phy_sfp_attach -EXPORT_SYMBOL drivers/net/phy/libphy 0x399906e1 phy_ethtool_ksettings_set -EXPORT_SYMBOL drivers/net/phy/libphy 0x3aae00c3 phy_sfp_probe -EXPORT_SYMBOL drivers/net/phy/libphy 0x3c3c09a6 phy_do_ioctl -EXPORT_SYMBOL drivers/net/phy/libphy 0x3ca408fa phy_error -EXPORT_SYMBOL drivers/net/phy/libphy 0x3d5e709d phy_driver_unregister -EXPORT_SYMBOL drivers/net/phy/libphy 0x3d7e2ae9 genphy_handle_interrupt_no_ack -EXPORT_SYMBOL drivers/net/phy/libphy 0x3d9893d5 phy_modify_paged_changed -EXPORT_SYMBOL drivers/net/phy/libphy 0x3dbc0261 phy_queue_state_machine +EXPORT_SYMBOL drivers/net/phy/libphy 0x3954c8e1 phy_attached_print +EXPORT_SYMBOL drivers/net/phy/libphy 0x39c25f26 phy_get_eee_err +EXPORT_SYMBOL drivers/net/phy/libphy 0x39e877b3 genphy_c37_config_aneg +EXPORT_SYMBOL drivers/net/phy/libphy 0x3a10bae7 __phy_resume +EXPORT_SYMBOL drivers/net/phy/libphy 0x3c086928 __phy_read_mmd +EXPORT_SYMBOL drivers/net/phy/libphy 0x3cc0864c mdiobus_free +EXPORT_SYMBOL drivers/net/phy/libphy 0x3cd29d62 phy_stop EXPORT_SYMBOL drivers/net/phy/libphy 0x3efe1703 phy_unregister_fixup_for_id -EXPORT_SYMBOL drivers/net/phy/libphy 0x3fb6abab mdio_device_reset -EXPORT_SYMBOL drivers/net/phy/libphy 0x433edb93 __mdiobus_register -EXPORT_SYMBOL drivers/net/phy/libphy 0x43fefe9e __phy_write_mmd -EXPORT_SYMBOL drivers/net/phy/libphy 0x46d913b7 mdio_device_remove -EXPORT_SYMBOL drivers/net/phy/libphy 0x4bee8ab3 phy_free_interrupt -EXPORT_SYMBOL drivers/net/phy/libphy 0x4f6d414c phy_ethtool_get_link_ksettings -EXPORT_SYMBOL drivers/net/phy/libphy 0x572b1555 phy_ethtool_set_link_ksettings -EXPORT_SYMBOL drivers/net/phy/libphy 0x5caa92a6 genphy_read_status_fixed -EXPORT_SYMBOL drivers/net/phy/libphy 0x61a469cd genphy_config_eee_advert -EXPORT_SYMBOL drivers/net/phy/libphy 0x6273fabf genphy_read_lpa -EXPORT_SYMBOL drivers/net/phy/libphy 0x6c6b406e phy_support_sym_pause -EXPORT_SYMBOL drivers/net/phy/libphy 0x6c918097 phy_suspend -EXPORT_SYMBOL drivers/net/phy/libphy 0x6d579b51 phy_get_c45_ids -EXPORT_SYMBOL drivers/net/phy/libphy 0x6dfc49a0 fwnode_phy_find_device -EXPORT_SYMBOL drivers/net/phy/libphy 0x6ecd5dc1 mdiobus_is_registered_device -EXPORT_SYMBOL drivers/net/phy/libphy 0x70a666bf __mdiobus_read -EXPORT_SYMBOL drivers/net/phy/libphy 0x70c517d2 phy_start -EXPORT_SYMBOL drivers/net/phy/libphy 0x71b1842a phy_ethtool_get_eee -EXPORT_SYMBOL drivers/net/phy/libphy 0x73c1a123 phy_reset_after_clk_enable -EXPORT_SYMBOL drivers/net/phy/libphy 0x74cad956 genphy_soft_reset -EXPORT_SYMBOL drivers/net/phy/libphy 0x77593e12 phy_disconnect -EXPORT_SYMBOL drivers/net/phy/libphy 0x792afa7b mdiobus_unregister -EXPORT_SYMBOL drivers/net/phy/libphy 0x7944336a phy_config_aneg -EXPORT_SYMBOL drivers/net/phy/libphy 0x7fd20f1d genphy_restart_aneg -EXPORT_SYMBOL drivers/net/phy/libphy 0x84a366fc phy_init_hw -EXPORT_SYMBOL drivers/net/phy/libphy 0x87356cdb mdio_device_register -EXPORT_SYMBOL drivers/net/phy/libphy 0x87ea05d7 phy_drivers_register -EXPORT_SYMBOL drivers/net/phy/libphy 0x8a4d34b3 mdiobus_write_nested -EXPORT_SYMBOL drivers/net/phy/libphy 0x8a86079e phy_attached_print -EXPORT_SYMBOL drivers/net/phy/libphy 0x8b6329f1 phy_get_internal_delay -EXPORT_SYMBOL drivers/net/phy/libphy 0x8c1231f6 genphy_read_status -EXPORT_SYMBOL drivers/net/phy/libphy 0x8ceb3d7d phy_write_paged -EXPORT_SYMBOL drivers/net/phy/libphy 0x9127fe2c phy_read_paged -EXPORT_SYMBOL drivers/net/phy/libphy 0x923dc2ac phy_read_mmd -EXPORT_SYMBOL drivers/net/phy/libphy 0x9696519e phy_ethtool_get_wol -EXPORT_SYMBOL drivers/net/phy/libphy 0x99a0c676 phy_start_cable_test -EXPORT_SYMBOL drivers/net/phy/libphy 0x9ad5f47f phy_device_remove -EXPORT_SYMBOL drivers/net/phy/libphy 0x9eb4f26b phy_ethtool_get_sset_count -EXPORT_SYMBOL drivers/net/phy/libphy 0xa1b6b8e3 genphy_read_abilities -EXPORT_SYMBOL drivers/net/phy/libphy 0xa26e6cd5 __phy_resume -EXPORT_SYMBOL drivers/net/phy/libphy 0xa29c3aa5 phy_modify_paged -EXPORT_SYMBOL drivers/net/phy/libphy 0xa7685c6d mdiobus_unregister_device -EXPORT_SYMBOL drivers/net/phy/libphy 0xa97e0f66 fwnode_get_phy_id -EXPORT_SYMBOL drivers/net/phy/libphy 0xa9971b41 mdio_bus_type -EXPORT_SYMBOL drivers/net/phy/libphy 0xabc0d721 phy_ethtool_set_wol -EXPORT_SYMBOL drivers/net/phy/libphy 0xb1e12ca4 phy_advertise_supported -EXPORT_SYMBOL drivers/net/phy/libphy 0xb30816c4 phy_start_cable_test_tdr -EXPORT_SYMBOL drivers/net/phy/libphy 0xb63cd35d genphy_loopback -EXPORT_SYMBOL drivers/net/phy/libphy 0xb6a888b8 mdio_driver_unregister +EXPORT_SYMBOL drivers/net/phy/libphy 0x400a5c4a mdio_driver_unregister +EXPORT_SYMBOL drivers/net/phy/libphy 0x41af200e phy_detach +EXPORT_SYMBOL drivers/net/phy/libphy 0x41fd56f6 __genphy_config_aneg +EXPORT_SYMBOL drivers/net/phy/libphy 0x4242602c mdiobus_write +EXPORT_SYMBOL drivers/net/phy/libphy 0x43d495d9 phy_ethtool_ksettings_get +EXPORT_SYMBOL drivers/net/phy/libphy 0x4823f5cf phy_drivers_unregister +EXPORT_SYMBOL drivers/net/phy/libphy 0x48dc1569 phy_reset_after_clk_enable +EXPORT_SYMBOL drivers/net/phy/libphy 0x4bbf3196 phy_print_status +EXPORT_SYMBOL drivers/net/phy/libphy 0x4c9e0cc3 phy_start_cable_test_tdr +EXPORT_SYMBOL drivers/net/phy/libphy 0x55c4240e phy_modify_paged_changed +EXPORT_SYMBOL drivers/net/phy/libphy 0x58298f74 phy_ethtool_set_eee +EXPORT_SYMBOL drivers/net/phy/libphy 0x58f31d4a mdiobus_unregister_device +EXPORT_SYMBOL drivers/net/phy/libphy 0x5a9f8c94 phy_init_hw +EXPORT_SYMBOL drivers/net/phy/libphy 0x5acae50a mdiobus_is_registered_device +EXPORT_SYMBOL drivers/net/phy/libphy 0x5b112422 phy_init_eee +EXPORT_SYMBOL drivers/net/phy/libphy 0x5bf8c09c phy_get_c45_ids +EXPORT_SYMBOL drivers/net/phy/libphy 0x5c66e05b phy_mii_ioctl +EXPORT_SYMBOL drivers/net/phy/libphy 0x5cdaaa1b phy_get_internal_delay +EXPORT_SYMBOL drivers/net/phy/libphy 0x5e12924c genphy_read_status_fixed +EXPORT_SYMBOL drivers/net/phy/libphy 0x60bdd185 phy_read_paged +EXPORT_SYMBOL drivers/net/phy/libphy 0x64048f2a phy_attached_info_irq +EXPORT_SYMBOL drivers/net/phy/libphy 0x64645fcc phy_ethtool_get_sset_count +EXPORT_SYMBOL drivers/net/phy/libphy 0x6aedc6ef phy_do_ioctl +EXPORT_SYMBOL drivers/net/phy/libphy 0x6c865534 get_phy_device +EXPORT_SYMBOL drivers/net/phy/libphy 0x706b0b0e phy_ethtool_set_link_ksettings +EXPORT_SYMBOL drivers/net/phy/libphy 0x746edbe1 phy_error +EXPORT_SYMBOL drivers/net/phy/libphy 0x754a1790 phy_start_aneg +EXPORT_SYMBOL drivers/net/phy/libphy 0x759987dc mdiobus_scan +EXPORT_SYMBOL drivers/net/phy/libphy 0x80a39f31 phy_remove_link_mode +EXPORT_SYMBOL drivers/net/phy/libphy 0x81151b14 mdio_driver_register +EXPORT_SYMBOL drivers/net/phy/libphy 0x82e3b114 mdiobus_get_phy +EXPORT_SYMBOL drivers/net/phy/libphy 0x86643cb1 mdio_device_remove +EXPORT_SYMBOL drivers/net/phy/libphy 0x88af08ef genphy_read_status +EXPORT_SYMBOL drivers/net/phy/libphy 0x8a1e6942 mdiobus_write_nested +EXPORT_SYMBOL drivers/net/phy/libphy 0x8a346da9 genphy_setup_forced +EXPORT_SYMBOL drivers/net/phy/libphy 0x8d201d25 phy_set_sym_pause +EXPORT_SYMBOL drivers/net/phy/libphy 0x8f11e936 phy_ethtool_nway_reset +EXPORT_SYMBOL drivers/net/phy/libphy 0x950b4a5a genphy_aneg_done +EXPORT_SYMBOL drivers/net/phy/libphy 0x964145f5 genphy_resume +EXPORT_SYMBOL drivers/net/phy/libphy 0x9862e5e0 phy_connect_direct +EXPORT_SYMBOL drivers/net/phy/libphy 0x9c73cb3e phy_set_max_speed +EXPORT_SYMBOL drivers/net/phy/libphy 0x9d3379e7 phy_attach_direct +EXPORT_SYMBOL drivers/net/phy/libphy 0x9fb4a827 phy_ethtool_get_stats +EXPORT_SYMBOL drivers/net/phy/libphy 0xa06820b3 phy_do_ioctl_running +EXPORT_SYMBOL drivers/net/phy/libphy 0xa35c6bed phy_register_fixup +EXPORT_SYMBOL drivers/net/phy/libphy 0xa43fee71 phy_mac_interrupt +EXPORT_SYMBOL drivers/net/phy/libphy 0xa83ce29a genphy_suspend +EXPORT_SYMBOL drivers/net/phy/libphy 0xa856ae4e phy_connect +EXPORT_SYMBOL drivers/net/phy/libphy 0xa85efba7 mdiobus_unregister +EXPORT_SYMBOL drivers/net/phy/libphy 0xa8aa595e genphy_read_abilities +EXPORT_SYMBOL drivers/net/phy/libphy 0xa94f4a98 phy_disconnect +EXPORT_SYMBOL drivers/net/phy/libphy 0xaaeb3f94 phy_ethtool_get_strings +EXPORT_SYMBOL drivers/net/phy/libphy 0xaed804ff phy_support_sym_pause +EXPORT_SYMBOL drivers/net/phy/libphy 0xb2c6ac03 phy_register_fixup_for_id +EXPORT_SYMBOL drivers/net/phy/libphy 0xb2ed0f61 genphy_handle_interrupt_no_ack +EXPORT_SYMBOL drivers/net/phy/libphy 0xb69216c8 phy_support_asym_pause EXPORT_SYMBOL drivers/net/phy/libphy 0xb6acaa13 phy_sfp_detach -EXPORT_SYMBOL drivers/net/phy/libphy 0xb82b090f genphy_resume -EXPORT_SYMBOL drivers/net/phy/libphy 0xb967345c phy_trigger_machine -EXPORT_SYMBOL drivers/net/phy/libphy 0xbb5072df mdiobus_write -EXPORT_SYMBOL drivers/net/phy/libphy 0xbba3cdc6 phy_connect_direct -EXPORT_SYMBOL drivers/net/phy/libphy 0xc1a5e2ab phy_set_max_speed -EXPORT_SYMBOL drivers/net/phy/libphy 0xc1a96a1f phy_ethtool_nway_reset -EXPORT_SYMBOL drivers/net/phy/libphy 0xc5de82d8 phy_register_fixup +EXPORT_SYMBOL drivers/net/phy/libphy 0xb862b391 phy_find_first +EXPORT_SYMBOL drivers/net/phy/libphy 0xb9b72674 phy_start_cable_test +EXPORT_SYMBOL drivers/net/phy/libphy 0xbcd788e6 genphy_read_lpa +EXPORT_SYMBOL drivers/net/phy/libphy 0xbda94d39 phy_free_interrupt +EXPORT_SYMBOL drivers/net/phy/libphy 0xbf1f3d89 phy_driver_unregister +EXPORT_SYMBOL drivers/net/phy/libphy 0xbf68fe46 __mdiobus_read +EXPORT_SYMBOL drivers/net/phy/libphy 0xc1730974 phy_driver_register +EXPORT_SYMBOL drivers/net/phy/libphy 0xc18795ce phy_get_pause +EXPORT_SYMBOL drivers/net/phy/libphy 0xc1ca7a69 genphy_update_link +EXPORT_SYMBOL drivers/net/phy/libphy 0xc2535428 phy_sfp_probe +EXPORT_SYMBOL drivers/net/phy/libphy 0xc419bab1 mdio_device_free +EXPORT_SYMBOL drivers/net/phy/libphy 0xc4d717a2 phy_loopback EXPORT_SYMBOL drivers/net/phy/libphy 0xc633d82d phy_unregister_fixup -EXPORT_SYMBOL drivers/net/phy/libphy 0xc7fcb7bf mdio_driver_register -EXPORT_SYMBOL drivers/net/phy/libphy 0xc810f688 phy_device_create -EXPORT_SYMBOL drivers/net/phy/libphy 0xc99b2570 phy_set_sym_pause -EXPORT_SYMBOL drivers/net/phy/libphy 0xcb44ff2b phy_get_eee_err -EXPORT_SYMBOL drivers/net/phy/libphy 0xcba2808c mdiobus_scan -EXPORT_SYMBOL drivers/net/phy/libphy 0xcee26032 mdiobus_free -EXPORT_SYMBOL drivers/net/phy/libphy 0xd2d8d761 mdiobus_register_device -EXPORT_SYMBOL drivers/net/phy/libphy 0xd32dc27c mdiobus_alloc_size +EXPORT_SYMBOL drivers/net/phy/libphy 0xc6adb1d2 phy_device_create +EXPORT_SYMBOL drivers/net/phy/libphy 0xc81528f3 genphy_write_mmd_unsupported +EXPORT_SYMBOL drivers/net/phy/libphy 0xd0f22701 phy_read_mmd +EXPORT_SYMBOL drivers/net/phy/libphy 0xd2b7f4a4 mdio_device_register +EXPORT_SYMBOL drivers/net/phy/libphy 0xd575b9d9 phy_advertise_supported +EXPORT_SYMBOL drivers/net/phy/libphy 0xd635348a phy_suspend EXPORT_SYMBOL drivers/net/phy/libphy 0xd738ca1b phy_unregister_fixup_for_uid -EXPORT_SYMBOL drivers/net/phy/libphy 0xd8a9b230 genphy_update_link -EXPORT_SYMBOL drivers/net/phy/libphy 0xd8e5e19e phy_aneg_done -EXPORT_SYMBOL drivers/net/phy/libphy 0xdb2a06b9 phy_loopback -EXPORT_SYMBOL drivers/net/phy/libphy 0xdd3b9e23 phy_ethtool_get_strings -EXPORT_SYMBOL drivers/net/phy/libphy 0xdf65aa5c phy_ethtool_get_stats -EXPORT_SYMBOL drivers/net/phy/libphy 0xdfd700de genphy_setup_forced -EXPORT_SYMBOL drivers/net/phy/libphy 0xe26f1db6 phy_attach -EXPORT_SYMBOL drivers/net/phy/libphy 0xe28418b9 genphy_suspend -EXPORT_SYMBOL drivers/net/phy/libphy 0xe31b7de5 phy_write_mmd -EXPORT_SYMBOL drivers/net/phy/libphy 0xe388720a phy_ethtool_set_eee -EXPORT_SYMBOL drivers/net/phy/libphy 0xe427bc11 genphy_write_mmd_unsupported -EXPORT_SYMBOL drivers/net/phy/libphy 0xe6b5e25e phy_stop -EXPORT_SYMBOL drivers/net/phy/libphy 0xe8300b90 mdiobus_read_nested -EXPORT_SYMBOL drivers/net/phy/libphy 0xeb939451 __mdiobus_write -EXPORT_SYMBOL drivers/net/phy/libphy 0xedf1fea6 phy_attach_direct -EXPORT_SYMBOL drivers/net/phy/libphy 0xee062e3f mdio_device_create -EXPORT_SYMBOL drivers/net/phy/libphy 0xee7f6e38 phy_drivers_unregister -EXPORT_SYMBOL drivers/net/phy/libphy 0xf55bff8d phy_get_pause -EXPORT_SYMBOL drivers/net/phy/libphy 0xf597f7e9 phy_find_first -EXPORT_SYMBOL drivers/net/phy/libphy 0xf6207e85 phy_remove_link_mode -EXPORT_SYMBOL drivers/net/phy/libphy 0xfcf07770 phy_device_free -EXPORT_SYMBOL drivers/net/phy/libphy 0xfd26e3ce __genphy_config_aneg -EXPORT_SYMBOL drivers/net/phy/libphy 0xfd782cad phy_do_ioctl_running -EXPORT_SYMBOL drivers/net/phy/libphy 0xfe5e4cb5 phy_ethtool_ksettings_get -EXPORT_SYMBOL drivers/net/phy/mdio_devres 0x04f40434 devm_mdiobus_alloc_size -EXPORT_SYMBOL drivers/net/phy/mdio_devres 0xe7e76c8f __devm_mdiobus_register -EXPORT_SYMBOL drivers/net/team/team 0x6107135e team_mode_register -EXPORT_SYMBOL drivers/net/team/team 0x98042001 team_options_unregister -EXPORT_SYMBOL drivers/net/team/team 0xb080fdb5 team_options_register -EXPORT_SYMBOL drivers/net/team/team 0xc12df5c9 team_option_inst_set_change -EXPORT_SYMBOL drivers/net/team/team 0xd6aff970 team_modeop_port_enter -EXPORT_SYMBOL drivers/net/team/team 0xd7a0e0b5 team_options_change_check -EXPORT_SYMBOL drivers/net/team/team 0xdb96d4ec team_mode_unregister -EXPORT_SYMBOL drivers/net/team/team 0xf98211e7 team_modeop_port_change_dev_addr -EXPORT_SYMBOL drivers/pps/pps_core 0x52f8d082 pps_event -EXPORT_SYMBOL drivers/pps/pps_core 0x7f351afe pps_lookup_dev -EXPORT_SYMBOL drivers/pps/pps_core 0xa55633f9 pps_register_source -EXPORT_SYMBOL drivers/pps/pps_core 0xaed962a1 pps_unregister_source -EXPORT_SYMBOL drivers/ptp/ptp 0x0611b032 ptp_clock_unregister -EXPORT_SYMBOL drivers/ptp/ptp 0x1dbf8e59 ptp_cancel_worker_sync -EXPORT_SYMBOL drivers/ptp/ptp 0x1e00b1ef ptp_clock_register -EXPORT_SYMBOL drivers/ptp/ptp 0x3ab4a933 ptp_schedule_worker -EXPORT_SYMBOL drivers/ptp/ptp 0x47edfdc3 ptp_clock_event -EXPORT_SYMBOL drivers/ptp/ptp 0x57b84bdb ptp_find_pin -EXPORT_SYMBOL drivers/ptp/ptp 0xaa247114 ptp_find_pin_unlocked -EXPORT_SYMBOL drivers/ptp/ptp 0xe4807972 ptp_clock_index -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x0088efdd dasd_log_sense_dbf -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x065cb521 dasd_path_create_kobj -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x07a0579d dasd_ffree_request -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x0970a883 dasd_enable_device -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x0f64908d dasd_sleep_on_immediatly -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x254161fa dasd_diag_discipline_pointer -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x25c4c169 dasd_schedule_block_bh -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x2f362a55 dasd_debug_area -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x35050b1f dasd_default_erp_postaction -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x3d3861e6 dasd_reload_device -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x440eebf2 dasd_term_IO -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x51930621 dasd_start_IO -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x5b17b5c8 dasd_sleep_on_interruptible -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x62ecf1ad dasd_block_set_timer -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x65feeee6 dasd_add_request_tail -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x6f8f2c45 dasd_free_erp_request -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x7005ec7a dasd_device_set_timer -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x700ac3a6 dasd_kick_device -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x70ce814f dasd_int_handler -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x77270256 dasd_path_create_kobjects -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x86224721 dasd_device_clear_timer -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x88c6a2b1 dasd_set_feature -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x89151946 dasd_smalloc_request -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x8f65b80b dasd_alloc_erp_request -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x9f497653 dasd_schedule_device_bh +EXPORT_SYMBOL drivers/net/phy/libphy 0xd9df196e mdiobus_register_device +EXPORT_SYMBOL drivers/net/phy/libphy 0xda1efe46 phy_aneg_done +EXPORT_SYMBOL drivers/net/phy/libphy 0xdb9f90d5 phy_register_fixup_for_uid +EXPORT_SYMBOL drivers/net/phy/libphy 0xdefb2d57 phy_config_aneg +EXPORT_SYMBOL drivers/net/phy/libphy 0xdffa6da6 genphy_read_mmd_unsupported +EXPORT_SYMBOL drivers/net/phy/libphy 0xe155d80f phy_ethtool_get_link_ksettings +EXPORT_SYMBOL drivers/net/phy/libphy 0xe5d4d36f mdio_device_create +EXPORT_SYMBOL drivers/net/phy/libphy 0xe8c9384c genphy_restart_aneg +EXPORT_SYMBOL drivers/net/phy/libphy 0xeca6e5f9 genphy_check_and_restart_aneg +EXPORT_SYMBOL drivers/net/phy/libphy 0xed1e2ac8 mdiobus_read +EXPORT_SYMBOL drivers/net/phy/libphy 0xee7be2b6 phy_ethtool_get_eee +EXPORT_SYMBOL drivers/net/phy/libphy 0xf0bd5c7a phy_trigger_machine +EXPORT_SYMBOL drivers/net/phy/libphy 0xf78c0b5f __phy_write_mmd +EXPORT_SYMBOL drivers/net/phy/libphy 0xf7ca43d8 phy_request_interrupt +EXPORT_SYMBOL drivers/net/phy/libphy 0xf7cfe0f3 phy_ethtool_get_wol +EXPORT_SYMBOL drivers/net/phy/libphy 0xfb6aac05 mdiobus_alloc_size +EXPORT_SYMBOL drivers/net/phy/libphy 0xfd1cfa10 fwnode_mdio_find_device +EXPORT_SYMBOL drivers/net/phy/libphy 0xfee3cb8e phy_attach +EXPORT_SYMBOL drivers/net/phy/libphy 0xff349997 phy_device_free +EXPORT_SYMBOL drivers/net/phy/libphy 0xff7ca5fa phy_ethtool_set_wol +EXPORT_SYMBOL drivers/net/phy/libphy 0xffd62072 phy_ethtool_ksettings_set +EXPORT_SYMBOL drivers/net/phy/mdio_devres 0x5cce07a1 devm_mdiobus_alloc_size +EXPORT_SYMBOL drivers/net/phy/mdio_devres 0xeb0f3d3a __devm_mdiobus_register +EXPORT_SYMBOL drivers/net/team/team 0x0fe049d8 team_mode_register +EXPORT_SYMBOL drivers/net/team/team 0x37cde082 team_options_change_check +EXPORT_SYMBOL drivers/net/team/team 0x3e19a88c team_option_inst_set_change +EXPORT_SYMBOL drivers/net/team/team 0x4768bbc6 team_modeop_port_change_dev_addr +EXPORT_SYMBOL drivers/net/team/team 0x94bd56c5 team_options_register +EXPORT_SYMBOL drivers/net/team/team 0xaf7eb91e team_modeop_port_enter +EXPORT_SYMBOL drivers/net/team/team 0xe4391b6a team_options_unregister +EXPORT_SYMBOL drivers/net/team/team 0xf157cc10 team_mode_unregister +EXPORT_SYMBOL drivers/pps/pps_core 0x3390664b pps_lookup_dev +EXPORT_SYMBOL drivers/pps/pps_core 0x3fbd3df6 pps_unregister_source +EXPORT_SYMBOL drivers/pps/pps_core 0x4a282850 pps_register_source +EXPORT_SYMBOL drivers/pps/pps_core 0x6ea86bc2 pps_event +EXPORT_SYMBOL drivers/ptp/ptp 0x0147d511 ptp_find_pin_unlocked +EXPORT_SYMBOL drivers/ptp/ptp 0x032d7425 ptp_clock_event +EXPORT_SYMBOL drivers/ptp/ptp 0x632849aa ptp_schedule_worker +EXPORT_SYMBOL drivers/ptp/ptp 0x6dc31eae ptp_cancel_worker_sync +EXPORT_SYMBOL drivers/ptp/ptp 0x718ae408 ptp_clock_unregister +EXPORT_SYMBOL drivers/ptp/ptp 0xacc709a7 ptp_clock_index +EXPORT_SYMBOL drivers/ptp/ptp 0xc891afdd ptp_find_pin +EXPORT_SYMBOL drivers/ptp/ptp 0xfe3bac07 ptp_clock_register +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x057f1a0b dasd_log_sense_dbf +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x08fe8522 dasd_block_set_timer +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x0dbfd629 dasd_kick_device +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x11ef9b9a dasd_set_feature +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x185e8b7f dasd_free_erp_request +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x1a33c7b6 dasd_path_create_kobj +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x1f284947 dasd_diag_discipline_pointer +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x229e54f1 dasd_path_create_kobjects +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x395e5d11 dasd_sleep_on_immediatly +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x5cd1bc0b dasd_schedule_block_bh +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x775021ff dasd_device_set_timer +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x77800a82 dasd_smalloc_request +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x82aba17b dasd_alloc_erp_request +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x88601051 dasd_path_remove_kobjects +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x8bfd7bfd dasd_eer_write +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x8d1d9b52 dasd_schedule_requeue +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x9a53e6c7 dasd_log_sense +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x9bf2db97 dasd_sfree_request +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xa504d6eb dasd_enable_device +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xa5c2284e dasd_schedule_device_bh +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xafff4bae dasd_default_erp_action +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xb3447446 dasd_int_handler EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xb4dcb5de dasd_sleep_on_queue -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xb5a04acf dasd_log_sense -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xba823a04 dasd_default_erp_action -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xc04618a1 dasd_add_request_head +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xb5362874 dasd_block_clear_timer +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xb5ac1349 dasd_default_erp_postaction +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xb9edcb06 dasd_device_clear_timer +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xbbfb35f6 dasd_ffree_request +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xbd9a5023 dasd_add_request_tail EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xc134caac dasd_sleep_on_queue_interruptible -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xc3c9af5e dasd_schedule_requeue -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xd120e8ef dasd_eer_write -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xdf41dab8 dasd_fmalloc_request -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xeb6d6b6d dasd_path_remove_kobjects -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xec42d539 dasd_sfree_request -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xf09e5e84 dasd_block_clear_timer -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xf3e233de dasd_sleep_on +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xc7d15552 dasd_reload_device +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xce2767e5 dasd_add_request_head +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xe9e556b8 dasd_term_IO +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xebb29094 dasd_debug_area +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xf09a1b48 dasd_sleep_on_interruptible +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xf20e6fc7 dasd_fmalloc_request +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xf99603fe dasd_start_IO +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xfa9ff4a9 dasd_sleep_on EXPORT_SYMBOL drivers/s390/char/hmcdrv 0x08e57a2c hmcdrv_ftp_do EXPORT_SYMBOL drivers/s390/char/hmcdrv 0x3198b5cb hmcdrv_ftp_startup EXPORT_SYMBOL drivers/s390/char/hmcdrv 0x83a6e87f hmcdrv_ftp_probe EXPORT_SYMBOL drivers/s390/char/hmcdrv 0xba68949c hmcdrv_ftp_shutdown -EXPORT_SYMBOL drivers/s390/char/tape 0x04ffbd43 tape_dump_sense_dbf -EXPORT_SYMBOL drivers/s390/char/tape 0x176978b9 tape_std_mtoffl -EXPORT_SYMBOL drivers/s390/char/tape 0x2034d8a7 tape_free_request -EXPORT_SYMBOL drivers/s390/char/tape 0x22f17e78 tape_std_mtbsr -EXPORT_SYMBOL drivers/s390/char/tape 0x243971c6 tape_std_mtunload -EXPORT_SYMBOL drivers/s390/char/tape 0x2515f48b tape_std_mtreset +EXPORT_SYMBOL drivers/s390/char/tape 0x05effb6e tape_do_io_interruptible +EXPORT_SYMBOL drivers/s390/char/tape 0x06b20634 tape_core_dbf +EXPORT_SYMBOL drivers/s390/char/tape 0x0b09b028 tape_std_mtbsr +EXPORT_SYMBOL drivers/s390/char/tape 0x0d6aa4f2 tape_std_mtfsf +EXPORT_SYMBOL drivers/s390/char/tape 0x15a2abef tape_generic_probe +EXPORT_SYMBOL drivers/s390/char/tape 0x1c318480 tape_std_assign +EXPORT_SYMBOL drivers/s390/char/tape 0x1dca9166 tape_std_mtfsfm +EXPORT_SYMBOL drivers/s390/char/tape 0x2519e269 tape_std_mtreset EXPORT_SYMBOL drivers/s390/char/tape 0x2546c415 tape_state_verbose -EXPORT_SYMBOL drivers/s390/char/tape 0x321e499f tape_std_mtreten -EXPORT_SYMBOL drivers/s390/char/tape 0x3b8d5a2f tape_std_mterase -EXPORT_SYMBOL drivers/s390/char/tape 0x3f113245 tape_std_read_backward -EXPORT_SYMBOL drivers/s390/char/tape 0x3fa2d3d3 tape_std_display -EXPORT_SYMBOL drivers/s390/char/tape 0x470a8513 tape_std_read_block_id -EXPORT_SYMBOL drivers/s390/char/tape 0x4d1d1a82 tape_std_assign -EXPORT_SYMBOL drivers/s390/char/tape 0x4fdf8092 tape_state_set -EXPORT_SYMBOL drivers/s390/char/tape 0x5ae61ffc tape_std_mtload -EXPORT_SYMBOL drivers/s390/char/tape 0x5ba86438 tape_std_unassign -EXPORT_SYMBOL drivers/s390/char/tape 0x5ec94b8c tape_generic_offline -EXPORT_SYMBOL drivers/s390/char/tape 0x661780f2 tape_alloc_request +EXPORT_SYMBOL drivers/s390/char/tape 0x2a7adf3c tape_std_unassign +EXPORT_SYMBOL drivers/s390/char/tape 0x4bff425c tape_generic_remove +EXPORT_SYMBOL drivers/s390/char/tape 0x59ad0689 tape_std_mterase +EXPORT_SYMBOL drivers/s390/char/tape 0x5ad9adef tape_std_mteom +EXPORT_SYMBOL drivers/s390/char/tape 0x5b83212a tape_std_read_block_id +EXPORT_SYMBOL drivers/s390/char/tape 0x5d81ef2c tape_std_read_backward +EXPORT_SYMBOL drivers/s390/char/tape 0x6065bfcb tape_mtop +EXPORT_SYMBOL drivers/s390/char/tape 0x6207654e tape_std_mtsetblk +EXPORT_SYMBOL drivers/s390/char/tape 0x647c40aa tape_generic_offline EXPORT_SYMBOL drivers/s390/char/tape 0x66deb66c tape_op_verbose -EXPORT_SYMBOL drivers/s390/char/tape 0x679a5685 tape_do_io_interruptible -EXPORT_SYMBOL drivers/s390/char/tape 0x68c49b20 tape_do_io_async -EXPORT_SYMBOL drivers/s390/char/tape 0x6d5621c0 tape_std_mtnop -EXPORT_SYMBOL drivers/s390/char/tape 0x701a4019 tape_std_mtfsf -EXPORT_SYMBOL drivers/s390/char/tape 0x779a085d tape_std_process_eov -EXPORT_SYMBOL drivers/s390/char/tape 0x82e1e193 tape_std_mtcompression -EXPORT_SYMBOL drivers/s390/char/tape 0x928c178e tape_put_device -EXPORT_SYMBOL drivers/s390/char/tape 0xa4ed2df7 tape_std_mtfsr -EXPORT_SYMBOL drivers/s390/char/tape 0xa8d1500f tape_std_read_block -EXPORT_SYMBOL drivers/s390/char/tape 0xab608465 tape_cancel_io -EXPORT_SYMBOL drivers/s390/char/tape 0xac9881bc tape_std_write_block -EXPORT_SYMBOL drivers/s390/char/tape 0xaf30f726 tape_std_mtrew -EXPORT_SYMBOL drivers/s390/char/tape 0xb07cbbb2 tape_core_dbf -EXPORT_SYMBOL drivers/s390/char/tape 0xb4e44eab tape_std_mtfsfm -EXPORT_SYMBOL drivers/s390/char/tape 0xb8f794ea tape_do_io -EXPORT_SYMBOL drivers/s390/char/tape 0xbedf78d9 tape_mtop -EXPORT_SYMBOL drivers/s390/char/tape 0xc8a05de2 tape_std_mtweof -EXPORT_SYMBOL drivers/s390/char/tape 0xc965cc49 tape_std_mtbsfm -EXPORT_SYMBOL drivers/s390/char/tape 0xddeaccfb tape_med_state_set -EXPORT_SYMBOL drivers/s390/char/tape 0xe346c2c1 tape_std_mtsetblk -EXPORT_SYMBOL drivers/s390/char/tape 0xe8d4e669 tape_generic_remove -EXPORT_SYMBOL drivers/s390/char/tape 0xee6a12c4 tape_std_mteom -EXPORT_SYMBOL drivers/s390/char/tape 0xeee79678 tape_generic_probe -EXPORT_SYMBOL drivers/s390/char/tape 0xf01418d2 tape_get_device -EXPORT_SYMBOL drivers/s390/char/tape 0xf6061396 tape_std_mtbsf -EXPORT_SYMBOL drivers/s390/char/tape 0xfa9810b4 tape_generic_online -EXPORT_SYMBOL drivers/s390/char/tape_34xx 0x6cc7544d tape_34xx_dbf -EXPORT_SYMBOL drivers/s390/char/tape_3590 0xa11aa21f tape_3590_dbf -EXPORT_SYMBOL drivers/s390/char/tape_class 0x840fffd6 unregister_tape_dev -EXPORT_SYMBOL drivers/s390/char/tape_class 0xfeadcad6 register_tape_dev -EXPORT_SYMBOL drivers/s390/cio/ccwgroup 0x0ffa8eb2 ccwgroup_remove_ccwdev -EXPORT_SYMBOL drivers/s390/cio/ccwgroup 0x4c6a191a ccwgroup_create_dev -EXPORT_SYMBOL drivers/s390/cio/ccwgroup 0xa22867dd dev_is_ccwgroup -EXPORT_SYMBOL drivers/s390/cio/ccwgroup 0xa470339b ccwgroup_probe_ccwdev -EXPORT_SYMBOL drivers/s390/cio/ccwgroup 0xa799445d ccwgroup_set_online -EXPORT_SYMBOL drivers/s390/cio/ccwgroup 0xd1991165 ccwgroup_set_offline -EXPORT_SYMBOL drivers/s390/cio/ccwgroup 0xe812e90d ccwgroup_driver_register -EXPORT_SYMBOL drivers/s390/cio/ccwgroup 0xe98cfdc7 ccwgroup_driver_unregister -EXPORT_SYMBOL drivers/s390/cio/qdio 0xb80a96a5 qdio_start_irq -EXPORT_SYMBOL drivers/s390/cio/qdio 0xbca38b6d qdio_stop_irq +EXPORT_SYMBOL drivers/s390/char/tape 0x685871d4 tape_std_mtfsr +EXPORT_SYMBOL drivers/s390/char/tape 0x68ce5739 tape_do_io_async +EXPORT_SYMBOL drivers/s390/char/tape 0x6e3b650e tape_std_mtbsf +EXPORT_SYMBOL drivers/s390/char/tape 0x721f4e39 tape_std_mtoffl +EXPORT_SYMBOL drivers/s390/char/tape 0x7b6e7623 tape_std_read_block +EXPORT_SYMBOL drivers/s390/char/tape 0x81b917cd tape_std_process_eov +EXPORT_SYMBOL drivers/s390/char/tape 0x945b3855 tape_std_mtload +EXPORT_SYMBOL drivers/s390/char/tape 0x972d825a tape_state_set +EXPORT_SYMBOL drivers/s390/char/tape 0x9e935279 tape_std_write_block +EXPORT_SYMBOL drivers/s390/char/tape 0xa5575753 tape_cancel_io +EXPORT_SYMBOL drivers/s390/char/tape 0xa7a3ec09 tape_do_io +EXPORT_SYMBOL drivers/s390/char/tape 0xa9a27e90 tape_std_mtbsfm +EXPORT_SYMBOL drivers/s390/char/tape 0xaa079a70 tape_std_mtweof +EXPORT_SYMBOL drivers/s390/char/tape 0xb1011304 tape_std_mtnop +EXPORT_SYMBOL drivers/s390/char/tape 0xb38c5ad3 tape_generic_online +EXPORT_SYMBOL drivers/s390/char/tape 0xb399e5d4 tape_med_state_set +EXPORT_SYMBOL drivers/s390/char/tape 0xbc156f6f tape_dump_sense_dbf +EXPORT_SYMBOL drivers/s390/char/tape 0xbc25e750 tape_std_mtunload +EXPORT_SYMBOL drivers/s390/char/tape 0xbdcd2176 tape_std_mtrew +EXPORT_SYMBOL drivers/s390/char/tape 0xc161f323 tape_put_device +EXPORT_SYMBOL drivers/s390/char/tape 0xc1d65363 tape_free_request +EXPORT_SYMBOL drivers/s390/char/tape 0xc4663f38 tape_alloc_request +EXPORT_SYMBOL drivers/s390/char/tape 0xe8c89c9a tape_get_device +EXPORT_SYMBOL drivers/s390/char/tape 0xed0968fe tape_std_display +EXPORT_SYMBOL drivers/s390/char/tape 0xef1fcea3 tape_std_mtcompression +EXPORT_SYMBOL drivers/s390/char/tape 0xfd0f34d5 tape_std_mtreten +EXPORT_SYMBOL drivers/s390/char/tape_34xx 0x8a77b547 tape_34xx_dbf +EXPORT_SYMBOL drivers/s390/char/tape_3590 0x47aa4315 tape_3590_dbf +EXPORT_SYMBOL drivers/s390/char/tape_class 0xc5ba381b unregister_tape_dev +EXPORT_SYMBOL drivers/s390/char/tape_class 0xf2d3e8cc register_tape_dev +EXPORT_SYMBOL drivers/s390/cio/ccwgroup 0x100f2eab ccwgroup_set_online +EXPORT_SYMBOL drivers/s390/cio/ccwgroup 0x1612ccc9 ccwgroup_create_dev +EXPORT_SYMBOL drivers/s390/cio/ccwgroup 0x262c9bb5 ccwgroup_driver_unregister +EXPORT_SYMBOL drivers/s390/cio/ccwgroup 0x28ac205c ccwgroup_driver_register +EXPORT_SYMBOL drivers/s390/cio/ccwgroup 0x29b1b874 ccwgroup_probe_ccwdev +EXPORT_SYMBOL drivers/s390/cio/ccwgroup 0x50a8b6e9 dev_is_ccwgroup +EXPORT_SYMBOL drivers/s390/cio/ccwgroup 0x638d99c9 ccwgroup_remove_ccwdev +EXPORT_SYMBOL drivers/s390/cio/ccwgroup 0xe7cca987 ccwgroup_set_offline +EXPORT_SYMBOL drivers/s390/cio/qdio 0x1f0247ed qdio_start_irq +EXPORT_SYMBOL drivers/s390/cio/qdio 0xa00e6f6b qdio_stop_irq EXPORT_SYMBOL drivers/s390/cio/vfio_ccw 0x00cbfcde __traceiter_vfio_ccw_chp_event EXPORT_SYMBOL drivers/s390/cio/vfio_ccw 0x7acf9c1f __SCK__tp_func_vfio_ccw_fsm_io_request EXPORT_SYMBOL drivers/s390/cio/vfio_ccw 0x87db7cac __traceiter_vfio_ccw_fsm_event @@ -1830,52 +1830,52 @@ EXPORT_SYMBOL drivers/s390/cio/vfio_ccw 0xeeaa8b65 __traceiter_vfio_ccw_fsm_async_request EXPORT_SYMBOL drivers/s390/crypto/pkey 0xa2396123 pkey_keyblob2pkey EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x0327b454 zcrypt_send_cprb -EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x059763f8 zcrypt_card_put EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x0ebc8b2f __SCK__tp_func_s390_zcrypt_rep +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x11a032cc zcrypt_card_free EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x1360e3df cca_findcard2 EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x17a7ba6e __SCK__tp_func_s390_zcrypt_req -EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x1e0720ac zcrypt_card_alloc +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x1cea5786 zcrypt_queue_get EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x20a6cee7 cca_get_info -EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x26a9a801 zcrypt_queue_put EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x274ee02a ep11_findcard2 EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x2dc30fe9 cca_findcard -EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x329567b5 ep11_check_aes_key -EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x3ad0899a cca_check_sececckeytoken EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x404502d2 __traceiter_s390_zcrypt_rep +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x46df8004 zcrypt_card_put EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x4aad03c0 cca_gencipherkey +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x4b90b650 zcrypt_queue_alloc EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x52190334 cca_sec2protkey -EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x5725bef2 zcrypt_queue_free EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x5e050fdf cca_genseckey -EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x62c4f0f1 zcrypt_queue_unregister -EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x646ab2a6 cca_check_secaeskeytoken -EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x6541a256 cca_check_secaescipherkey EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x67cedaeb zcrypt_rescan_req -EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x68e703bc zcrypt_queue_alloc +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x6d5efd1e cca_check_sececckeytoken +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x6fade745 zcrypt_card_register EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x7dd52fc2 ep11_clr2keyblob -EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x80077299 zcrypt_card_unregister EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x85ca4e1d __traceiter_s390_zcrypt_req -EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x8624923a zcrypt_card_register +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x8abb3f1d zcrypt_msgtype EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x9032dd84 zcrypt_device_status_mask_ext +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x96f59332 zcrypt_queue_free EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x9992a66f cca_clr2seckey -EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x9f153c9d ep11_check_aes_key_with_hdr +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x99eb618d cca_check_secaescipherkey +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x9ca7fd37 ep11_check_aes_key_with_hdr +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x9e0f32a8 zcrypt_card_alloc +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0xa174cf7b zcrypt_queue_put +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0xa27d34e0 zcrypt_queue_unregister EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0xa502c213 zcrypt_wait_api_operational EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0xa54284be zcrypt_device_status_ext -EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0xac132a7f zcrypt_msgtype -EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0xac155b89 ep11_check_ecc_key_with_hdr -EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0xb3b3a991 zcrypt_card_get -EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0xbd5b147e zcrypt_card_free +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0xacdde32b ep11_check_aes_key +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0xb073c06c cca_check_secaeskeytoken EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0xc0c976b6 ep11_get_domain_info EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0xc20af440 cca_query_crypto_facility EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0xc23843b6 ep11_genaeskey EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0xc3ee9fa0 cca_cipher2protkey -EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0xc48570ce zcrypt_queue_get EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0xc79ae663 __tracepoint_s390_zcrypt_rep +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0xcb1b8e96 zcrypt_card_get EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0xdb0adadb ep11_kblob2protkey -EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0xde619d31 zcrypt_queue_register EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0xde81d722 __tracepoint_s390_zcrypt_req +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0xe8b47a51 zcrypt_card_unregister EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0xea54d73e cca_clr2cipherkey EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0xec693119 cca_ecc2protkey EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0xee077284 ep11_get_card_info +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0xf5af01b0 ep11_check_ecc_key_with_hdr +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0xf9bff583 zcrypt_queue_register EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0xfa128312 zcrypt_send_ep11_cprb EXPORT_SYMBOL drivers/s390/net/ctcm 0x40b3051a ctc_mpc_dealloc_ch EXPORT_SYMBOL drivers/s390/net/ctcm 0x56f42138 ctc_mpc_alloc_channel @@ -1888,368 +1888,368 @@ EXPORT_SYMBOL drivers/s390/net/fsm 0xaefe8672 fsm_getstate_str EXPORT_SYMBOL drivers/s390/net/fsm 0xdf20006d fsm_settimer EXPORT_SYMBOL drivers/s390/net/fsm 0xe8a7dd7d fsm_deltimer -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x3bf9eb6f fcoe_ctlr_set_fip_mode -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x467d880b fcoe_ctlr_link_up -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x4fcca4ff fcoe_ctlr_recv -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x5b965e40 fcoe_transport_detach -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x604d34de fcoe_ctlr_init -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x819b66c1 fcoe_transport_attach -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x9bf4e40d fcoe_ctlr_destroy -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xc4b38930 fcoe_ctlr_els_send -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xda4da40f fcoe_ctlr_recv_flogi -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xebe2978d fcoe_ctlr_link_down -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xf5d9c1d4 fcoe_fcf_get_selected -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x01ea7805 fc_exch_mgr_free +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x05fa279f fcoe_ctlr_els_send +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x190239e6 fcoe_ctlr_link_down +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x369c4a7a fcoe_transport_attach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x5232527a fcoe_ctlr_recv_flogi +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x7266de9d fcoe_ctlr_set_fip_mode +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x8052d271 fcoe_transport_detach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x8c7b591d fcoe_ctlr_init +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x9ba9eed6 fcoe_fcf_get_selected +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xa752d9fb fcoe_ctlr_destroy +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xd72459c9 fcoe_ctlr_link_up +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xda79726b fcoe_ctlr_recv EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x04a8fdd2 _fc_frame_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0f144c68 fc_rport_terminate_io -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x10879fef fc_slave_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x10c09b64 fc_disc_config -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1383080d fc_fc4_deregister_provider -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x17bbfcc9 fc_rport_recv_req -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x205f2902 fc_vport_id_lookup -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x20f32cb7 fc_fabric_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x060020d9 fc_vport_setlink +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x072633de fc_lport_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x086537ce fc_exch_mgr_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0a1cb5d6 fc_seq_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0a962109 fc_fc4_deregister_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0b1cb022 fc_exch_mgr_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0eee7a37 fc_exch_mgr_add +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x14ea626f fc_exch_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1b0ec701 fc_rport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1d87bf9f fc_lport_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x20959cda fc_lport_iterate +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x21b02e2d fc_fcp_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22afbd31 fc_lport_set_local_id EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22b90986 fc_exch_mgr_del -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2518b502 fc_lport_iterate -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x258f127b fc_vport_setlink -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2ddf8afb fc_exch_init EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2eccbfa6 fc_lport_flogi_resp -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x303002ee fc_linkdown -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3bfee4d0 fc_fabric_login -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3ecabb8d fc_eh_abort -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4c088fe6 fc_lport_recv -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4d2ad816 fc_lport_destroy -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x542b31b7 fc_lport_set_local_id -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5a308277 fc_queuecommand -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5a3fa016 fc_set_mfs -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5b5a5392 fc_rport_login -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5cc56072 libfc_vport_create -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5cdbc343 fc_rport_create -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5dd1abff fc_fc4_register_provider -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x647e7821 fc_elsct_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x64a878cc fc_get_host_stats -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x69f2d91d fc_seq_send -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x72bb6835 fc_elsct_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x36c587a5 fc_get_host_speed +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3753495a fc_seq_assign +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3d8cc870 fc_exch_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x42647abe fc_elsct_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4a49b53f fc_lport_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4ad054d1 fc_set_mfs +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x567a5ede fc_eh_abort +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x656b4da7 fc_disc_config EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x731837c4 fc_lport_logo_resp -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x73acd761 fc_exch_seq_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7399bf0e fc_exch_mgr_free +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7605902c fc_rport_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x77cf5f80 fc_exch_mgr_list_clone +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x78ccc4e4 fc_rport_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x79a31196 fc_disc_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7f152a10 fc_fabric_logoff EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7f3407a7 fc_seq_start_next -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7f37e773 fc_lport_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7ff1886c fc_rport_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8013f4da fc_set_rport_loss_tmo EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x811811e0 fc_exch_done -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x961a1c6a fc_get_host_port_state -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9c502376 fc_rport_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8223e1ba fc_fabric_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x86418db8 fc_slave_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9540450f fc_get_host_port_state EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9d50ed7e fc_rport_destroy -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa1422281 fc_exch_mgr_list_clone +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9e010e39 fc_fc4_register_provider EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa1bcd198 fc_cpu_mask -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xab831bad fc_rport_lookup -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xadf41e6f fc_exch_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa431996a fc_fcp_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa67f46a7 fc_get_host_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa6af8101 fc_eh_host_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa87fb0e3 fc_eh_device_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa8bb3787 fc_exch_update_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa9472828 fc_lport_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb0ac8864 fc_vport_id_lookup EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb0ddd5a1 fc_rport_flush_queue EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb689cd32 fc_frame_crc_check -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xba446529 fc_fcp_destroy -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbc512696 fc_set_rport_loss_tmo -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbddd4a49 fc_exch_update_stats -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbf6d3bb2 fc_disc_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc1960129 fc_exch_mgr_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbfddff50 fc_lport_init EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc2dd8cd4 fc_fill_reply_hdr -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc67f042d fc_exch_mgr_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc3f7bf82 fc_lport_bsg_request +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc4fbdb38 fc_elsct_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcaeab040 fc_rport_terminate_io +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcc36c114 libfc_vport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcf2e2281 fc_queuecommand EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd12a3c6a fc_frame_alloc_fill -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xdb5c46ad fc_fcp_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xdcef28c7 fc_lport_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe168c1b8 fc_lport_config EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe3b928e9 fc_fill_hdr -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe7840249 fc_seq_assign -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe888813a fc_eh_device_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xecbbd0e3 fc_exch_seq_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xef3771b3 fc_rport_recv_req EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf1e0571d fc_lport_notifier_head -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf2201866 fc_lport_bsg_request -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf9c7336f fc_linkup -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfa358ae1 fc_get_host_speed EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfa4667d1 fc_seq_release -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfde79fb8 fc_eh_host_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfc74179a fc_linkup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfdcf826e fc_linkdown EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfeb5a73f fc_seq_set_resp -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xff8bab08 fc_exch_mgr_add EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x4a8e3d34 try_test_sas_gpio_gp_bit -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xa094e3a4 sas_prep_resume_ha -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xa9f9a189 sas_resume_ha -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xc244e08e sas_suspend_ha -EXPORT_SYMBOL drivers/scsi/raid_class 0x6c98f12d raid_component_add -EXPORT_SYMBOL drivers/scsi/raid_class 0xb06aec5d raid_class_attach -EXPORT_SYMBOL drivers/scsi/raid_class 0xea0550e8 raid_class_release -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x17e72969 fc_eh_timed_out +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x60874666 sas_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x6864377e sas_suspend_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x6e3470aa sas_prep_resume_ha +EXPORT_SYMBOL drivers/scsi/raid_class 0x1225f989 raid_class_release +EXPORT_SYMBOL drivers/scsi/raid_class 0x13b47329 raid_component_add +EXPORT_SYMBOL drivers/scsi/raid_class 0x18d888d2 raid_class_attach +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x01e4946e fc_remote_port_rolechg +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x02020254 fc_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x18eb7532 fc_remote_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x2aae23d0 scsi_is_fc_rport EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x375f8bbd fc_get_event_number -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x3b89c66c fc_vport_terminate -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x3d0e089c fc_block_rport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x41277c73 fc_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x66b15290 fc_host_post_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x6e188c3f fc_remove_host -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x6e4d3f77 fc_host_post_vendor_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x8e33321c fc_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xa02810b6 fc_host_post_fc_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xae48c1ea fc_vport_create -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xb14230ae fc_remote_port_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xcc514a8c fc_remote_port_rolechg -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xd48cec7d fc_host_fpin_rcv -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xddf3db5f fc_find_rport_by_wwpn -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xe5126ddc fc_remote_port_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xee3cd334 scsi_is_fc_rport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xf50bdf96 fc_block_scsi_eh -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x017abad0 sas_port_delete_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x08e3eeb4 sas_phy_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x15cd603d sas_port_alloc_num -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2243ed35 sas_expander_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x261dda07 scsi_is_sas_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x28b06105 sas_port_mark_backlink -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2bc63a5d sas_rphy_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x308faba7 sas_get_address -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x309d5d01 sas_port_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x32bea596 sas_phy_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3b9a96ca sas_port_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4c092f8a sas_rphy_unlink -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x510ad1a0 sas_port_get_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5d68d2fb sas_rphy_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5f057d70 sas_port_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x62062d51 sas_rphy_remove -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x69e10411 sas_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x78327bf3 sas_rphy_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7bc3fca5 sas_remove_host -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7e989168 sas_remove_children -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8a68cfe0 sas_read_port_mode_page -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x909d73ff sas_end_device_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x94649ec2 sas_port_add_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xacf99678 sas_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc622b885 sas_phy_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xcc1bfed8 scsi_is_sas_rphy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xdab887c0 sas_port_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf76ff01c sas_phy_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xff3c8eb8 scsi_is_sas_port +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x3bfa7520 fc_host_fpin_rcv +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x3c71b158 fc_block_scsi_eh +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x4416dc21 fc_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x52629214 fc_host_post_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x5ee743f9 fc_vport_terminate +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x60efe1ea fc_block_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x61662ba8 fc_eh_timed_out +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x923f31e5 fc_vport_create +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xa09f3968 fc_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xbaa1a918 fc_remote_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xbdf8406f fc_host_post_vendor_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xd07732d2 fc_host_post_fc_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xebee84a8 fc_find_rport_by_wwpn +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x00f46c48 sas_phy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x07867343 sas_phy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x085c6b4d sas_port_alloc_num +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0c7243ca sas_port_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1cabe3f2 sas_rphy_unlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1ecf1898 sas_read_port_mode_page +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x278aaa9b sas_phy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3abeddaf sas_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5883110e sas_port_mark_backlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x594bc8de sas_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6929309d sas_get_address +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8376e29a sas_phy_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x83772b25 sas_port_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x90c5e15e sas_rphy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x9910efa3 scsi_is_sas_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x9a665125 sas_rphy_remove +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa562d7c2 sas_expander_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb39dec4f sas_port_add_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xbac6da17 sas_remove_children +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc24b8b51 sas_end_device_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd3947cb7 sas_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xda940b4f sas_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xdcc9654b sas_rphy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe0fc217b sas_rphy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe2d04159 sas_port_get_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe370ccea scsi_is_sas_port +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe4443a04 scsi_is_sas_rphy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe92a9e22 sas_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xffecc04f sas_port_delete_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x1da5bd9f spi_schedule_dv_device EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x58095cc8 spi_dv_device -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x6d101259 spi_schedule_dv_device -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x6f451361 spi_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xb2fc339d spi_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xec1ed40d spi_display_xfer_agreement -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x04a30331 srp_rport_get -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x0a7659d8 srp_rport_put -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x0f49fb1f srp_start_tl_fail_timers -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x2c2b5dea srp_timed_out +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x59645794 spi_display_xfer_agreement +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x612ed9dd spi_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x7742a299 spi_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xb403f26e spi_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x1b31d2d9 srp_rport_get +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x3ef05ddd srp_reconnect_rport EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x405b6e05 srp_parse_tmo -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x8fc94c5b srp_reconnect_rport -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x033b8040 iscsit_build_rsp_pdu -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x046b64b7 iscsit_build_logout_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x09b0dc00 __iscsit_check_dataout_hdr -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0bc2ea99 iscsit_process_scsi_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0e11c7e2 iscsit_build_task_mgt_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1c696ebf iscsit_cause_connection_reinstatement -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2086e850 iscsit_find_cmd_from_itt_or_dump -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x21c79bfc iscsit_immediate_queue -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x22ed52b6 iscsit_tmr_post_handler -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x33ac1f39 iscsit_add_reject -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x34627e37 iscsit_build_text_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x36768d55 iscsit_handle_task_mgt_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x39299791 iscsit_setup_scsi_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x45e64175 iscsit_sequence_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x52b825f1 iscsit_check_dataout_hdr -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5686120e iscsit_register_transport -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5ee6557a iscsit_setup_nop_out -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5fc6d908 iscsit_release_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x605eea42 iscsit_build_r2ts_for_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x62bbe22d iscsi_target_check_login_request -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x64b6cb30 iscsit_find_cmd_from_itt -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x776656f8 iscsit_add_cmd_to_immediate_queue -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8b02a800 iscsit_handle_snack -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x90acca92 iscsit_reject_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x91a8ac63 iscsit_aborted_task -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x94f6f4f6 iscsit_check_dataout_payload -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9b1f0f94 iscsit_queue_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa0f1d9ca iscsit_stop_dataout_timer -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa200b80a iscsit_handle_logout_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa3dd31c1 iscsit_allocate_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xae87b063 iscsit_free_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb0a91109 iscsit_increment_maxcmdsn -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbcd73cf2 iscsit_get_datain_values -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc5db7400 iscsit_process_nop_out -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc61ebb8a iscsit_build_nopin_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc630da96 iscsit_set_unsolicited_dataout -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd3de5fdf iscsit_build_datain_pdu -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd5772eef iscsit_logout_post_handler -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xdcec1aa8 iscsit_build_reject -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe04cb8cb iscsit_unregister_transport -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe6b62740 iscsi_change_param_sprintf -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe90f5c78 iscsit_setup_text_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xef15a8b2 iscsit_process_text_cmd +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xbb9fbcc6 srp_timed_out +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xc76dba52 srp_rport_put +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xde8759a9 srp_start_tl_fail_timers +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0dfcfcc0 iscsit_allocate_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1178906b iscsit_cause_connection_reinstatement +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1dc727a2 iscsit_increment_maxcmdsn +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2c0eb4b2 iscsit_handle_task_mgt_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x34c2a6ce iscsit_tmr_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3e2d1e68 iscsit_process_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3ea2a56c iscsit_find_cmd_from_itt +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4053269e iscsit_build_text_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4309e7b3 iscsit_add_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x44347bd9 iscsi_target_check_login_request +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x44f0adf8 iscsit_process_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x45a56984 iscsit_build_task_mgt_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x49b2e677 iscsit_stop_dataout_timer +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4c62372d iscsit_find_cmd_from_itt_or_dump +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4ce2ec89 iscsit_setup_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x547e31cd iscsit_build_nopin_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x55d83838 iscsit_reject_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5783fc20 iscsit_register_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x58062876 iscsit_process_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x593c17a0 iscsit_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5ad7f865 iscsit_sequence_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6ecb6195 iscsit_free_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x701f4fdd iscsit_build_logout_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x70a5fa25 iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x77da2c96 iscsit_response_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7cff3385 iscsit_build_rsp_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7f600858 iscsit_setup_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x83011e92 iscsit_get_datain_values +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9c64e142 iscsit_logout_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9cf9daa8 iscsit_check_dataout_payload +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xad212136 iscsit_handle_logout_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb7599853 iscsit_release_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbb8cfe0e iscsit_build_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc0713138 iscsit_handle_snack +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc5c010f0 iscsi_change_param_sprintf +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc6f307c1 iscsit_unregister_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc77ed15f iscsit_build_r2ts_for_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xcbdab69e iscsit_build_datain_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd3447393 iscsit_setup_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd57eb8c7 iscsit_add_cmd_to_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe0c6cda6 iscsit_queue_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xea1910e9 iscsit_aborted_task +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xebce461c iscsit_set_unsolicited_dataout +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf1c127e7 __iscsit_check_dataout_hdr EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf34332f0 iscsi_find_param_from_key -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xfb521d73 iscsit_response_queue -EXPORT_SYMBOL drivers/target/target_core_mod 0x0210c41b transport_free_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x0820c333 sbc_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x0024d783 transport_kunmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x024e128b target_put_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x04174e11 target_register_template +EXPORT_SYMBOL drivers/target/target_core_mod 0x05ea64a8 passthrough_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x07abf772 target_show_cmd EXPORT_SYMBOL drivers/target/target_core_mod 0x0871ffd6 transport_set_vpd_ident -EXPORT_SYMBOL drivers/target/target_core_mod 0x088782de transport_kunmap_data_sg -EXPORT_SYMBOL drivers/target/target_core_mod 0x0d2fd474 target_put_nacl -EXPORT_SYMBOL drivers/target/target_core_mod 0x0fd1a493 target_complete_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x09061001 sbc_dif_copy_prot +EXPORT_SYMBOL drivers/target/target_core_mod 0x0c020fbb target_send_busy +EXPORT_SYMBOL drivers/target/target_core_mod 0x0ee5e18f target_complete_cmd EXPORT_SYMBOL drivers/target/target_core_mod 0x142072c0 transport_set_vpd_assoc -EXPORT_SYMBOL drivers/target/target_core_mod 0x15ab2395 target_complete_cmd_with_sense -EXPORT_SYMBOL drivers/target/target_core_mod 0x226ca4eb target_submit_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x230ca90c target_stop_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x259319ab transport_deregister_session_configfs -EXPORT_SYMBOL drivers/target/target_core_mod 0x25c2c21a transport_generic_request_failure -EXPORT_SYMBOL drivers/target/target_core_mod 0x26fe8faa __target_init_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x296d1c98 transport_alloc_session_tags -EXPORT_SYMBOL drivers/target/target_core_mod 0x2d970607 core_tpg_check_initiator_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0x2dfd7ab5 target_unregister_template -EXPORT_SYMBOL drivers/target/target_core_mod 0x2fe9eca1 target_send_busy -EXPORT_SYMBOL drivers/target/target_core_mod 0x333ea2be sbc_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x36202317 target_get_sess_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x364337f4 target_execute_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x38d68253 target_backend_unregister -EXPORT_SYMBOL drivers/target/target_core_mod 0x3a0944f8 core_alua_check_nonop_delay +EXPORT_SYMBOL drivers/target/target_core_mod 0x17acb3e4 target_submit_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x1a874a39 core_tpg_deregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x1ee23100 core_tpg_get_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x22d35f5a target_lun_is_rdonly +EXPORT_SYMBOL drivers/target/target_core_mod 0x28f5dcab sbc_dif_verify +EXPORT_SYMBOL drivers/target/target_core_mod 0x308d5854 target_tpg_has_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x36f497f9 spc_emulate_evpd_83 +EXPORT_SYMBOL drivers/target/target_core_mod 0x38379700 transport_backend_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x39de578a transport_free_session EXPORT_SYMBOL drivers/target/target_core_mod 0x3a20a9d7 transport_set_vpd_ident_type -EXPORT_SYMBOL drivers/target/target_core_mod 0x40eacf8f transport_handle_cdb_direct -EXPORT_SYMBOL drivers/target/target_core_mod 0x420003e8 spc_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x4b803460 sbc_dif_copy_prot -EXPORT_SYMBOL drivers/target/target_core_mod 0x4bf97a66 passthrough_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0x4c29c85f target_tpg_has_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0x4c4657e5 transport_init_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x4df56be4 target_to_linux_sector -EXPORT_SYMBOL drivers/target/target_core_mod 0x5370c4bb target_wait_for_sess_cmds -EXPORT_SYMBOL drivers/target/target_core_mod 0x58076ba9 transport_generic_free_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x5ff3f49c transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x3d63999a target_cmd_init_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x44f296b8 transport_lookup_cmd_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x4709ca4b target_show_dynamic_sessions +EXPORT_SYMBOL drivers/target/target_core_mod 0x48de1b59 target_complete_cmd_with_length +EXPORT_SYMBOL drivers/target/target_core_mod 0x4e5ad3a7 target_put_nacl +EXPORT_SYMBOL drivers/target/target_core_mod 0x508d5e98 core_tpg_set_initiator_node_queue_depth +EXPORT_SYMBOL drivers/target/target_core_mod 0x53f33cfd spc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x5984b860 target_cmd_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x59c89fb5 __target_init_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x5a9f6a3e transport_init_session EXPORT_SYMBOL drivers/target/target_core_mod 0x638bffb7 target_free_sgl -EXPORT_SYMBOL drivers/target/target_core_mod 0x6d7152f2 transport_deregister_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x71f7155a __transport_register_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x77812974 transport_kmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x64a63964 core_tpg_set_initiator_node_tag +EXPORT_SYMBOL drivers/target/target_core_mod 0x6c301a22 transport_alloc_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0x70e6da12 transport_kmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x74101e6f target_wait_for_sess_cmds +EXPORT_SYMBOL drivers/target/target_core_mod 0x74f31c03 target_set_cmd_data_length +EXPORT_SYMBOL drivers/target/target_core_mod 0x7571a500 transport_send_check_condition_and_sense EXPORT_SYMBOL drivers/target/target_core_mod 0x7a1d0d3c target_alloc_sgl -EXPORT_SYMBOL drivers/target/target_core_mod 0x7b9b4274 spc_emulate_inquiry_std -EXPORT_SYMBOL drivers/target/target_core_mod 0x7c6b214c target_undepend_item -EXPORT_SYMBOL drivers/target/target_core_mod 0x8ae1e394 target_show_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x8d3a5ef5 transport_generic_new_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x9115a56e target_lun_is_rdonly -EXPORT_SYMBOL drivers/target/target_core_mod 0x930a807e target_cmd_init_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x9937a2d0 target_show_dynamic_sessions -EXPORT_SYMBOL drivers/target/target_core_mod 0x9b44ce3d sbc_dif_verify -EXPORT_SYMBOL drivers/target/target_core_mod 0x9d2e1706 transport_generic_handle_tmr -EXPORT_SYMBOL drivers/target/target_core_mod 0xa99c6119 passthrough_pr_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0xb030ad85 core_tpg_set_initiator_node_queue_depth +EXPORT_SYMBOL drivers/target/target_core_mod 0x7b5afc1b target_backend_unregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x7b9b895c sbc_get_device_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x81f83cba transport_generic_request_failure +EXPORT_SYMBOL drivers/target/target_core_mod 0x8734ca1a transport_generic_new_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x893be046 spc_emulate_inquiry_std +EXPORT_SYMBOL drivers/target/target_core_mod 0x89af8852 core_allocate_nexus_loss_ua +EXPORT_SYMBOL drivers/target/target_core_mod 0x928237dc target_to_linux_sector +EXPORT_SYMBOL drivers/target/target_core_mod 0x941b134a target_undepend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0x9c3059c1 transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x9d8b6656 __transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x9f0f8b69 transport_deregister_session_configfs +EXPORT_SYMBOL drivers/target/target_core_mod 0xa1fb5d92 transport_wait_for_tasks +EXPORT_SYMBOL drivers/target/target_core_mod 0xa7c0db8f target_unregister_template +EXPORT_SYMBOL drivers/target/target_core_mod 0xad427162 target_stop_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xb0bf02a3 sbc_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0xb17dd5b6 sbc_get_write_same_sectors EXPORT_SYMBOL drivers/target/target_core_mod 0xb2f45e40 core_tmr_alloc_req -EXPORT_SYMBOL drivers/target/target_core_mod 0xb5a3b954 target_submit_tmr -EXPORT_SYMBOL drivers/target/target_core_mod 0xb7bc474c target_complete_cmd_with_length -EXPORT_SYMBOL drivers/target/target_core_mod 0xbbf49ac9 spc_emulate_report_luns -EXPORT_SYMBOL drivers/target/target_core_mod 0xbd634c28 target_depend_item -EXPORT_SYMBOL drivers/target/target_core_mod 0xbd7be834 target_register_template -EXPORT_SYMBOL drivers/target/target_core_mod 0xbfdb31ae sbc_get_write_same_sectors -EXPORT_SYMBOL drivers/target/target_core_mod 0xc2d2a1a4 transport_send_check_condition_and_sense -EXPORT_SYMBOL drivers/target/target_core_mod 0xd0b83842 target_setup_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xd2b5a4df target_set_cmd_data_length -EXPORT_SYMBOL drivers/target/target_core_mod 0xd3166bb9 transport_wait_for_tasks -EXPORT_SYMBOL drivers/target/target_core_mod 0xd353f757 transport_copy_sense_to_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xd79df649 sbc_get_device_type -EXPORT_SYMBOL drivers/target/target_core_mod 0xd9f3c3eb core_allocate_nexus_loss_ua -EXPORT_SYMBOL drivers/target/target_core_mod 0xdf9e73cf core_tpg_set_initiator_node_tag -EXPORT_SYMBOL drivers/target/target_core_mod 0xe248887d target_nacl_find_deve -EXPORT_SYMBOL drivers/target/target_core_mod 0xe49ff4d4 target_configure_unmap_from_queue -EXPORT_SYMBOL drivers/target/target_core_mod 0xe7c0bdb5 transport_alloc_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xe7d47e57 target_cmd_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0xeb8a541b target_remove_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xeba10953 transport_backend_register -EXPORT_SYMBOL drivers/target/target_core_mod 0xef32c911 transport_lookup_cmd_lun -EXPORT_SYMBOL drivers/target/target_core_mod 0xf0d782c5 core_tpg_deregister +EXPORT_SYMBOL drivers/target/target_core_mod 0xb3ddc713 target_complete_cmd_with_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0xb94dfc14 target_submit_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0xc1b0e889 transport_generic_handle_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0xc294bdeb passthrough_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0xc3a2514f transport_copy_sense_to_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xc613b44b transport_deregister_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xc882e788 target_configure_unmap_from_queue +EXPORT_SYMBOL drivers/target/target_core_mod 0xc9e5c1c4 sbc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xce5ee545 core_tpg_check_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0xd18ca7c8 target_remove_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xd6f450bb transport_lookup_tmr_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0xd8e33dca core_alua_check_nonop_delay +EXPORT_SYMBOL drivers/target/target_core_mod 0xd9d708ce transport_alloc_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xdcb3b5a6 target_depend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0xdea390e8 target_get_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xebea772e target_setup_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xebf7f22d transport_handle_cdb_direct +EXPORT_SYMBOL drivers/target/target_core_mod 0xecb7f2ae spc_emulate_report_luns +EXPORT_SYMBOL drivers/target/target_core_mod 0xf0e8fff2 target_execute_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xf19ee9f4 core_tpg_register EXPORT_SYMBOL drivers/target/target_core_mod 0xf3c2dfe0 transport_set_vpd_proto_id -EXPORT_SYMBOL drivers/target/target_core_mod 0xf4d944d0 target_put_sess_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xf52f4dd8 spc_emulate_evpd_83 -EXPORT_SYMBOL drivers/target/target_core_mod 0xf558011a core_tpg_register -EXPORT_SYMBOL drivers/target/target_core_mod 0xf73b6668 passthrough_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0xfcfee66e core_tpg_get_initiator_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0xfd6dfb73 transport_lookup_tmr_lun -EXPORT_SYMBOL drivers/tty/serial/serial_core 0x05859ba9 uart_update_timeout -EXPORT_SYMBOL drivers/tty/serial/serial_core 0x175dc628 uart_unregister_driver -EXPORT_SYMBOL drivers/tty/serial/serial_core 0x23c98585 uart_match_port -EXPORT_SYMBOL drivers/tty/serial/serial_core 0x6b24a1c1 uart_register_driver -EXPORT_SYMBOL drivers/tty/serial/serial_core 0x88b6631d uart_suspend_port -EXPORT_SYMBOL drivers/tty/serial/serial_core 0xaf07bb32 uart_remove_one_port -EXPORT_SYMBOL drivers/tty/serial/serial_core 0xbc6c527a uart_add_one_port -EXPORT_SYMBOL drivers/tty/serial/serial_core 0xc07afb6c uart_write_wakeup -EXPORT_SYMBOL drivers/tty/serial/serial_core 0xc74384cf uart_resume_port -EXPORT_SYMBOL drivers/tty/serial/serial_core 0xd000ae23 uart_get_divisor -EXPORT_SYMBOL drivers/tty/serial/serial_core 0xee6e4b1b uart_get_baud_rate -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x14f633c6 mdev_register_device -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x1c7bd31c mdev_unregister_driver -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x2addac7d mdev_parent_dev -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x81864b36 mtype_get_type_group_id -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x9959fdcd mdev_register_driver -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xb5fa7b7d mdev_unregister_device -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xba75b313 mtype_get_parent_dev -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xe0281d30 mdev_get_type_group_id -EXPORT_SYMBOL drivers/vfio/vfio 0x1fc7817e vfio_pin_pages -EXPORT_SYMBOL drivers/vfio/vfio 0x31c6bbf3 vfio_unregister_notifier -EXPORT_SYMBOL drivers/vfio/vfio 0x39fba308 vfio_unpin_pages +EXPORT_SYMBOL drivers/target/target_core_mod 0xf7c9b52f passthrough_pr_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0xf814e512 target_nacl_find_deve +EXPORT_SYMBOL drivers/target/target_core_mod 0xfca6e574 transport_generic_free_cmd +EXPORT_SYMBOL drivers/tty/serial/serial_core 0x33407243 uart_get_baud_rate +EXPORT_SYMBOL drivers/tty/serial/serial_core 0x3684c3e3 uart_write_wakeup +EXPORT_SYMBOL drivers/tty/serial/serial_core 0x5d05fd6f uart_update_timeout +EXPORT_SYMBOL drivers/tty/serial/serial_core 0x763be881 uart_resume_port +EXPORT_SYMBOL drivers/tty/serial/serial_core 0x9ce65b44 uart_add_one_port +EXPORT_SYMBOL drivers/tty/serial/serial_core 0xa93bf727 uart_remove_one_port +EXPORT_SYMBOL drivers/tty/serial/serial_core 0xc043d30c uart_get_divisor +EXPORT_SYMBOL drivers/tty/serial/serial_core 0xc32d64a0 uart_unregister_driver +EXPORT_SYMBOL drivers/tty/serial/serial_core 0xc5cd3f47 uart_register_driver +EXPORT_SYMBOL drivers/tty/serial/serial_core 0xcbf718f3 uart_match_port +EXPORT_SYMBOL drivers/tty/serial/serial_core 0xcd6ccb77 uart_suspend_port +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x04ff1ad5 mtype_get_type_group_id +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x0a701c7a mdev_unregister_device +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x4b4f5e18 mtype_get_parent_dev +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x541b6d61 mdev_register_driver +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x575eba6d mdev_register_device +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x5ec92c58 mdev_get_type_group_id +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xd951a83c mdev_parent_dev +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xfe73e770 mdev_unregister_driver +EXPORT_SYMBOL drivers/vfio/vfio 0x0d9ab880 vfio_register_notifier +EXPORT_SYMBOL drivers/vfio/vfio 0x27206949 vfio_pin_pages EXPORT_SYMBOL drivers/vfio/vfio 0x4232a0c3 vfio_info_cap_shift EXPORT_SYMBOL drivers/vfio/vfio 0x48a81d7e vfio_group_pin_pages +EXPORT_SYMBOL drivers/vfio/vfio 0x6f25dcf8 vfio_unpin_pages EXPORT_SYMBOL drivers/vfio/vfio 0x7834defd vfio_group_unpin_pages -EXPORT_SYMBOL drivers/vfio/vfio 0x93c22e61 vfio_register_notifier +EXPORT_SYMBOL drivers/vfio/vfio 0x8f158fb5 vfio_unregister_notifier EXPORT_SYMBOL drivers/vfio/vfio 0xa0174901 vfio_dma_rw EXPORT_SYMBOL drivers/vfio/vfio 0xaf8a4a7f vfio_set_irqs_validate_and_prepare EXPORT_SYMBOL drivers/vfio/vfio 0xf3411eb8 vfio_info_add_capability -EXPORT_SYMBOL drivers/vhost/vhost 0x5f8c646b vhost_chr_poll -EXPORT_SYMBOL drivers/vhost/vhost 0xb290e8e0 vhost_chr_write_iter -EXPORT_SYMBOL drivers/video/fbdev/core/cfbcopyarea 0xa6bda8bc cfb_copyarea -EXPORT_SYMBOL drivers/video/fbdev/core/cfbfillrect 0x030617ef cfb_fillrect -EXPORT_SYMBOL drivers/video/fbdev/core/cfbimgblt 0xee7e8335 cfb_imageblit -EXPORT_SYMBOL drivers/video/fbdev/core/syscopyarea 0x17e2ad06 sys_copyarea -EXPORT_SYMBOL drivers/video/fbdev/core/sysfillrect 0xb2591255 sys_fillrect -EXPORT_SYMBOL drivers/video/fbdev/core/sysimgblt 0xdcb791c3 sys_imageblit -EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x4f1ad34c virtio_dma_buf_get_uuid -EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0xa7bdf15b virtio_dma_buf_attach -EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0xf217c4bc is_virtio_dma_buf -EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0xfd66969f virtio_dma_buf_export -EXPORT_SYMBOL fs/fscache/fscache 0x0261acd1 fscache_op_complete -EXPORT_SYMBOL fs/fscache/fscache 0x0b5ff5fb fscache_obtained_object -EXPORT_SYMBOL fs/fscache/fscache 0x10c0ee65 fscache_withdraw_cache -EXPORT_SYMBOL fs/fscache/fscache 0x27e91f8f fscache_mark_page_cached -EXPORT_SYMBOL fs/fscache/fscache 0x2b8d47f7 __fscache_read_or_alloc_page -EXPORT_SYMBOL fs/fscache/fscache 0x34d24fef __fscache_write_page -EXPORT_SYMBOL fs/fscache/fscache 0x35580dd7 __fscache_read_or_alloc_pages -EXPORT_SYMBOL fs/fscache/fscache 0x37af06bb fscache_check_aux -EXPORT_SYMBOL fs/fscache/fscache 0x3d861a13 fscache_fsdef_index -EXPORT_SYMBOL fs/fscache/fscache 0x41ecdd60 __fscache_check_consistency -EXPORT_SYMBOL fs/fscache/fscache 0x430cb097 __fscache_uncache_page -EXPORT_SYMBOL fs/fscache/fscache 0x4ac1aa2c __fscache_acquire_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x4cfcd4d0 fscache_object_lookup_negative -EXPORT_SYMBOL fs/fscache/fscache 0x5063a168 __fscache_update_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x51e5cd11 __fscache_begin_read_operation -EXPORT_SYMBOL fs/fscache/fscache 0x525cbf26 fscache_object_init -EXPORT_SYMBOL fs/fscache/fscache 0x535837d1 __fscache_uncache_all_inode_pages -EXPORT_SYMBOL fs/fscache/fscache 0x5b7517a5 __fscache_alloc_page -EXPORT_SYMBOL fs/fscache/fscache 0x5f0a61f0 __fscache_wait_on_invalidate -EXPORT_SYMBOL fs/fscache/fscache 0x6534ea98 fscache_mark_pages_cached -EXPORT_SYMBOL fs/fscache/fscache 0x67ae028d __fscache_register_netfs -EXPORT_SYMBOL fs/fscache/fscache 0x69a71029 __fscache_readpages_cancel -EXPORT_SYMBOL fs/fscache/fscache 0x7178629b fscache_object_destroy +EXPORT_SYMBOL drivers/vhost/vhost 0x71a6e612 vhost_chr_write_iter +EXPORT_SYMBOL drivers/vhost/vhost 0x96a4aa90 vhost_chr_poll +EXPORT_SYMBOL drivers/video/fbdev/core/cfbcopyarea 0x477d6229 cfb_copyarea +EXPORT_SYMBOL drivers/video/fbdev/core/cfbfillrect 0xd4e84171 cfb_fillrect +EXPORT_SYMBOL drivers/video/fbdev/core/cfbimgblt 0xf36a4f24 cfb_imageblit +EXPORT_SYMBOL drivers/video/fbdev/core/syscopyarea 0x73c78db0 sys_copyarea +EXPORT_SYMBOL drivers/video/fbdev/core/sysfillrect 0xe052aee8 sys_fillrect +EXPORT_SYMBOL drivers/video/fbdev/core/sysimgblt 0x7e3fc447 sys_imageblit +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x10d06953 virtio_dma_buf_export +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x9f06305c virtio_dma_buf_get_uuid +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0xb7a6bb52 is_virtio_dma_buf +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0xe57d9c77 virtio_dma_buf_attach +EXPORT_SYMBOL fs/fscache/fscache 0x02d21023 fscache_object_destroy +EXPORT_SYMBOL fs/fscache/fscache 0x10b49676 __fscache_acquire_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x10fd4c26 fscache_fsdef_index +EXPORT_SYMBOL fs/fscache/fscache 0x133ff6e0 __fscache_read_or_alloc_pages +EXPORT_SYMBOL fs/fscache/fscache 0x183a8526 __fscache_update_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x187267e7 __fscache_begin_read_operation +EXPORT_SYMBOL fs/fscache/fscache 0x2364ddd7 __fscache_disable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x2c513bf4 __fscache_register_netfs +EXPORT_SYMBOL fs/fscache/fscache 0x43037849 __fscache_attr_changed +EXPORT_SYMBOL fs/fscache/fscache 0x5019aa83 __fscache_read_or_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0x524666f1 __fscache_relinquish_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x54f21ed8 fscache_object_retrying_stale +EXPORT_SYMBOL fs/fscache/fscache 0x66b45ba3 fscache_op_complete +EXPORT_SYMBOL fs/fscache/fscache 0x6d340196 fscache_io_error +EXPORT_SYMBOL fs/fscache/fscache 0x6d715f71 __fscache_check_consistency EXPORT_SYMBOL fs/fscache/fscache 0x74530ecd fscache_op_debug_id -EXPORT_SYMBOL fs/fscache/fscache 0x7550b086 __fscache_unregister_netfs -EXPORT_SYMBOL fs/fscache/fscache 0x7a6fdf89 __fscache_relinquish_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x7f445ceb __fscache_wait_on_page_write -EXPORT_SYMBOL fs/fscache/fscache 0x8c3fa60c fscache_object_retrying_stale -EXPORT_SYMBOL fs/fscache/fscache 0x9717cb5f __fscache_enable_cookie -EXPORT_SYMBOL fs/fscache/fscache 0xa5f8c65d fscache_io_error -EXPORT_SYMBOL fs/fscache/fscache 0xadcb8060 __fscache_attr_changed -EXPORT_SYMBOL fs/fscache/fscache 0xb979e57c fscache_init_cache +EXPORT_SYMBOL fs/fscache/fscache 0x77f461a1 fscache_object_lookup_negative +EXPORT_SYMBOL fs/fscache/fscache 0x7c0c76d6 __fscache_unregister_netfs +EXPORT_SYMBOL fs/fscache/fscache 0x814541d1 __fscache_maybe_release_page +EXPORT_SYMBOL fs/fscache/fscache 0x87d45eff fscache_put_operation +EXPORT_SYMBOL fs/fscache/fscache 0x9b7ab09d fscache_add_cache +EXPORT_SYMBOL fs/fscache/fscache 0x9c544b6c fscache_object_init +EXPORT_SYMBOL fs/fscache/fscache 0x9e2e093c fscache_object_mark_killed +EXPORT_SYMBOL fs/fscache/fscache 0xa03df946 fscache_check_aux +EXPORT_SYMBOL fs/fscache/fscache 0xa7508193 fscache_mark_page_cached +EXPORT_SYMBOL fs/fscache/fscache 0xaa579ff8 fscache_mark_pages_cached +EXPORT_SYMBOL fs/fscache/fscache 0xaed0e4ea fscache_obtained_object +EXPORT_SYMBOL fs/fscache/fscache 0xb199e6d2 fscache_withdraw_cache +EXPORT_SYMBOL fs/fscache/fscache 0xb7cf919f __fscache_write_page EXPORT_SYMBOL fs/fscache/fscache 0xbb5f63c5 fscache_cache_cleared_wq -EXPORT_SYMBOL fs/fscache/fscache 0xc706575a __fscache_invalidate -EXPORT_SYMBOL fs/fscache/fscache 0xd345219f __fscache_check_page_write -EXPORT_SYMBOL fs/fscache/fscache 0xdbf4950f fscache_enqueue_operation -EXPORT_SYMBOL fs/fscache/fscache 0xe6d0bd62 __fscache_maybe_release_page -EXPORT_SYMBOL fs/fscache/fscache 0xeef746b5 __fscache_disable_cookie -EXPORT_SYMBOL fs/fscache/fscache 0xf298f050 fscache_operation_init -EXPORT_SYMBOL fs/fscache/fscache 0xf71ee55e fscache_object_mark_killed -EXPORT_SYMBOL fs/fscache/fscache 0xf9eaf86a fscache_put_operation -EXPORT_SYMBOL fs/fscache/fscache 0xfbf34a72 fscache_add_cache -EXPORT_SYMBOL fs/netfs/netfs 0x539c1cc2 netfs_subreq_terminated -EXPORT_SYMBOL fs/netfs/netfs 0x87597cb1 netfs_readahead -EXPORT_SYMBOL fs/netfs/netfs 0xa683a8e4 netfs_stats_show -EXPORT_SYMBOL fs/netfs/netfs 0xcc32882e netfs_write_begin -EXPORT_SYMBOL fs/netfs/netfs 0xce1e4f03 netfs_readpage +EXPORT_SYMBOL fs/fscache/fscache 0xc2f2ae44 __fscache_wait_on_page_write +EXPORT_SYMBOL fs/fscache/fscache 0xc65ca138 __fscache_wait_on_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0xc70968a0 __fscache_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0xcc52b7f2 __fscache_check_page_write +EXPORT_SYMBOL fs/fscache/fscache 0xcf3144d0 __fscache_enable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xcfdf8d0a fscache_operation_init +EXPORT_SYMBOL fs/fscache/fscache 0xd78b339b __fscache_uncache_page +EXPORT_SYMBOL fs/fscache/fscache 0xddea9daa fscache_init_cache +EXPORT_SYMBOL fs/fscache/fscache 0xe3fdf3c6 __fscache_uncache_all_inode_pages +EXPORT_SYMBOL fs/fscache/fscache 0xee7a6ee6 fscache_enqueue_operation +EXPORT_SYMBOL fs/fscache/fscache 0xefe86c72 __fscache_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0xf74f624f __fscache_readpages_cancel +EXPORT_SYMBOL fs/netfs/netfs 0x1a756b62 netfs_stats_show +EXPORT_SYMBOL fs/netfs/netfs 0x38e4ad00 netfs_write_begin +EXPORT_SYMBOL fs/netfs/netfs 0x6784e411 netfs_subreq_terminated +EXPORT_SYMBOL fs/netfs/netfs 0x8b945187 netfs_readpage +EXPORT_SYMBOL fs/netfs/netfs 0xbeeb229a netfs_readahead EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active -EXPORT_SYMBOL fs/quota/quota_tree 0x02f1fde9 qtree_get_next_id -EXPORT_SYMBOL fs/quota/quota_tree 0x14f8f419 qtree_entry_unused -EXPORT_SYMBOL fs/quota/quota_tree 0x31cad02f qtree_read_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0x3788af82 qtree_release_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0x6aa4a982 qtree_write_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0xfe408966 qtree_delete_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x05a7aed4 qtree_entry_unused +EXPORT_SYMBOL fs/quota/quota_tree 0x4f7c72ce qtree_delete_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x86168498 qtree_read_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xb59cae36 qtree_release_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xc8612c62 qtree_get_next_id +EXPORT_SYMBOL fs/quota/quota_tree 0xe30a810d qtree_write_dquot EXPORT_SYMBOL lib/crc-itu-t 0xd819a524 crc_itu_t_table EXPORT_SYMBOL lib/crc-itu-t 0xdf59602c crc_itu_t EXPORT_SYMBOL lib/crc7 0x65aaf037 crc7_be_syndrome_table @@ -2276,19 +2276,19 @@ EXPORT_SYMBOL lib/crypto/libpoly1305 0xd45b9cf4 poly1305_core_setkey EXPORT_SYMBOL lib/libcrc32c 0x89a0cd52 crc32c_impl EXPORT_SYMBOL lib/libcrc32c 0xb15b4109 crc32c +EXPORT_SYMBOL lib/lru_cache 0x080bdc02 lc_seq_dump_details EXPORT_SYMBOL lib/lru_cache 0x0f6f0fdb lc_index_of EXPORT_SYMBOL lib/lru_cache 0x17c6b1e1 lc_del +EXPORT_SYMBOL lib/lru_cache 0x468ab200 lc_seq_printf_stats EXPORT_SYMBOL lib/lru_cache 0x52857213 lc_element_by_index EXPORT_SYMBOL lib/lru_cache 0x6f1d0c3b lc_try_lock EXPORT_SYMBOL lib/lru_cache 0x7869961b lc_set EXPORT_SYMBOL lib/lru_cache 0x79c87149 lc_get EXPORT_SYMBOL lib/lru_cache 0x88713f97 lc_create EXPORT_SYMBOL lib/lru_cache 0x955d4873 lc_committed -EXPORT_SYMBOL lib/lru_cache 0xafbeeaf7 lc_seq_dump_details EXPORT_SYMBOL lib/lru_cache 0xbbc7a78d lc_put EXPORT_SYMBOL lib/lru_cache 0xc1a43316 lc_get_cumulative EXPORT_SYMBOL lib/lru_cache 0xc3a4ca05 lc_destroy -EXPORT_SYMBOL lib/lru_cache 0xd1afee96 lc_seq_printf_stats EXPORT_SYMBOL lib/lru_cache 0xe4a98afa lc_try_get EXPORT_SYMBOL lib/lru_cache 0xebae3022 lc_reset EXPORT_SYMBOL lib/lru_cache 0xff3f1db8 lc_find @@ -2360,5157 +2360,5164 @@ EXPORT_SYMBOL lib/zstd/zstd_compress 0xebe6a8a6 ZSTD_checkCParams EXPORT_SYMBOL lib/zstd/zstd_compress 0xf2068346 ZSTD_initCDict EXPORT_SYMBOL lib/zstd/zstd_compress 0xff471430 ZSTD_compressBegin_advanced -EXPORT_SYMBOL net/802/p8022 0x169cd5c8 unregister_8022_client -EXPORT_SYMBOL net/802/p8022 0x3f125067 register_8022_client -EXPORT_SYMBOL net/802/psnap 0x33cc3d4b unregister_snap_client -EXPORT_SYMBOL net/802/psnap 0x56ea913b register_snap_client -EXPORT_SYMBOL net/9p/9pnet 0x043ec813 p9_client_statfs -EXPORT_SYMBOL net/9p/9pnet 0x06e78d0a p9_client_fsync -EXPORT_SYMBOL net/9p/9pnet 0x0a78d693 p9_client_cb -EXPORT_SYMBOL net/9p/9pnet 0x0c9f9ec0 p9_client_clunk +EXPORT_SYMBOL net/802/p8022 0x4ad744f4 unregister_8022_client +EXPORT_SYMBOL net/802/p8022 0x4f1c00ea register_8022_client +EXPORT_SYMBOL net/802/psnap 0x7ed96938 register_snap_client +EXPORT_SYMBOL net/802/psnap 0xbc2fdb15 unregister_snap_client +EXPORT_SYMBOL net/9p/9pnet 0x068b6561 p9_client_destroy EXPORT_SYMBOL net/9p/9pnet 0x16df3f8e p9stat_read -EXPORT_SYMBOL net/9p/9pnet 0x1c47dc46 p9_release_pages -EXPORT_SYMBOL net/9p/9pnet 0x299c97bb p9_client_unlinkat -EXPORT_SYMBOL net/9p/9pnet 0x2b01be05 p9_client_create_dotl -EXPORT_SYMBOL net/9p/9pnet 0x2e53b35b v9fs_get_default_trans -EXPORT_SYMBOL net/9p/9pnet 0x36077057 p9_client_getattr_dotl -EXPORT_SYMBOL net/9p/9pnet 0x375850a2 p9_client_begin_disconnect -EXPORT_SYMBOL net/9p/9pnet 0x3a1fd63e p9_client_walk +EXPORT_SYMBOL net/9p/9pnet 0x226048b6 p9_client_begin_disconnect +EXPORT_SYMBOL net/9p/9pnet 0x27451fc5 p9_client_statfs +EXPORT_SYMBOL net/9p/9pnet 0x2b2c6f5d p9_client_remove +EXPORT_SYMBOL net/9p/9pnet 0x2fd1fb00 p9_client_read_once +EXPORT_SYMBOL net/9p/9pnet 0x3491516a p9_client_wstat EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno -EXPORT_SYMBOL net/9p/9pnet 0x4347a520 p9_client_mkdir_dotl -EXPORT_SYMBOL net/9p/9pnet 0x4466ae43 p9_client_readlink -EXPORT_SYMBOL net/9p/9pnet 0x4f5f538f p9_client_stat +EXPORT_SYMBOL net/9p/9pnet 0x42c7f85e p9_client_readdir +EXPORT_SYMBOL net/9p/9pnet 0x48202a31 p9_client_lock_dotl EXPORT_SYMBOL net/9p/9pnet 0x518f3d6a p9_parse_header -EXPORT_SYMBOL net/9p/9pnet 0x58a97524 p9_client_read -EXPORT_SYMBOL net/9p/9pnet 0x5d731420 v9fs_get_trans_by_name -EXPORT_SYMBOL net/9p/9pnet 0x657ab97a p9_client_remove -EXPORT_SYMBOL net/9p/9pnet 0x6779d44a p9_client_link -EXPORT_SYMBOL net/9p/9pnet 0x77593b0a p9_client_readdir -EXPORT_SYMBOL net/9p/9pnet 0x7c818f29 p9_client_attach -EXPORT_SYMBOL net/9p/9pnet 0x87a7eb06 p9_client_lock_dotl -EXPORT_SYMBOL net/9p/9pnet 0x9f69ab49 p9_tag_lookup -EXPORT_SYMBOL net/9p/9pnet 0xa016b9b0 p9_client_write -EXPORT_SYMBOL net/9p/9pnet 0xa03595a7 p9_client_disconnect -EXPORT_SYMBOL net/9p/9pnet 0xa09c9136 p9_client_rename -EXPORT_SYMBOL net/9p/9pnet 0xa54b452d v9fs_register_trans -EXPORT_SYMBOL net/9p/9pnet 0xa69ef6e1 p9_client_destroy -EXPORT_SYMBOL net/9p/9pnet 0xa7c56da5 v9fs_unregister_trans -EXPORT_SYMBOL net/9p/9pnet 0xa7d95981 p9_is_proto_dotu +EXPORT_SYMBOL net/9p/9pnet 0x533b3291 p9_client_getattr_dotl +EXPORT_SYMBOL net/9p/9pnet 0x68ccff1b p9_client_unlinkat +EXPORT_SYMBOL net/9p/9pnet 0x74b653d5 p9_client_link +EXPORT_SYMBOL net/9p/9pnet 0x78a076a0 p9_client_disconnect +EXPORT_SYMBOL net/9p/9pnet 0x7f892683 p9_client_fsync +EXPORT_SYMBOL net/9p/9pnet 0x865c4fa8 v9fs_get_default_trans +EXPORT_SYMBOL net/9p/9pnet 0x894e9089 p9_client_readlink +EXPORT_SYMBOL net/9p/9pnet 0x90c608fe p9_release_pages +EXPORT_SYMBOL net/9p/9pnet 0x9d5b58b8 p9_client_create +EXPORT_SYMBOL net/9p/9pnet 0xa14b8a9e p9_client_read +EXPORT_SYMBOL net/9p/9pnet 0xa27ef1de p9_tag_lookup +EXPORT_SYMBOL net/9p/9pnet 0xa8ba45fb p9_client_stat +EXPORT_SYMBOL net/9p/9pnet 0xaac71429 p9_client_renameat +EXPORT_SYMBOL net/9p/9pnet 0xac325df7 p9_client_setattr +EXPORT_SYMBOL net/9p/9pnet 0xae6a65ed p9_is_proto_dotu EXPORT_SYMBOL net/9p/9pnet 0xaf71f0d4 p9_fcall_fini -EXPORT_SYMBOL net/9p/9pnet 0xb1ef4781 p9_client_symlink -EXPORT_SYMBOL net/9p/9pnet 0xb446fae0 p9_client_read_once -EXPORT_SYMBOL net/9p/9pnet 0xba7cb041 p9_client_setattr +EXPORT_SYMBOL net/9p/9pnet 0xba843a55 v9fs_unregister_trans EXPORT_SYMBOL net/9p/9pnet 0xbb86a59b p9_req_put -EXPORT_SYMBOL net/9p/9pnet 0xc6ebe323 p9_client_getlock_dotl +EXPORT_SYMBOL net/9p/9pnet 0xc384df6a p9_client_getlock_dotl EXPORT_SYMBOL net/9p/9pnet 0xc7bad4fc p9dirent_read -EXPORT_SYMBOL net/9p/9pnet 0xc8225313 p9_client_renameat -EXPORT_SYMBOL net/9p/9pnet 0xcc7fde1e p9_client_fcreate -EXPORT_SYMBOL net/9p/9pnet 0xce84a062 p9_client_wstat -EXPORT_SYMBOL net/9p/9pnet 0xcfcadfe6 p9_show_client_options -EXPORT_SYMBOL net/9p/9pnet 0xd020380a p9_client_open +EXPORT_SYMBOL net/9p/9pnet 0xc827b19d p9_client_fcreate +EXPORT_SYMBOL net/9p/9pnet 0xcbba8567 p9_client_symlink +EXPORT_SYMBOL net/9p/9pnet 0xd09abeb9 p9_client_cb +EXPORT_SYMBOL net/9p/9pnet 0xd0d5d462 p9_client_attach +EXPORT_SYMBOL net/9p/9pnet 0xd23fb949 p9_client_mknod_dotl +EXPORT_SYMBOL net/9p/9pnet 0xd2bddd15 p9_client_walk EXPORT_SYMBOL net/9p/9pnet 0xd384c683 p9stat_free -EXPORT_SYMBOL net/9p/9pnet 0xdf479b0e p9_client_create +EXPORT_SYMBOL net/9p/9pnet 0xd6e9b066 v9fs_get_trans_by_name +EXPORT_SYMBOL net/9p/9pnet 0xe4f4adf6 p9_client_create_dotl EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init -EXPORT_SYMBOL net/9p/9pnet 0xea7f6162 p9_is_proto_dotl -EXPORT_SYMBOL net/9p/9pnet 0xfe892d19 p9_client_mknod_dotl -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x3365887f ebt_do_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x8a257e15 ebt_unregister_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xa43836a4 ebt_register_template -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xd9eccdcf ebt_unregister_table_pre_exit -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xe382ef12 ebt_register_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xf6d8b061 ebt_unregister_template -EXPORT_SYMBOL net/ceph/libceph 0x02c62434 ceph_monc_wait_osdmap -EXPORT_SYMBOL net/ceph/libceph 0x03172fcc ceph_auth_handle_svc_reply_done -EXPORT_SYMBOL net/ceph/libceph 0x0417907e ceph_msg_data_add_pagelist -EXPORT_SYMBOL net/ceph/libceph 0x049b3122 __ceph_auth_get_authorizer -EXPORT_SYMBOL net/ceph/libceph 0x04e3bb41 ceph_monc_renew_subs -EXPORT_SYMBOL net/ceph/libceph 0x06d32de8 ceph_parse_mon_ips -EXPORT_SYMBOL net/ceph/libceph 0x09bfca30 ceph_print_client_options -EXPORT_SYMBOL net/ceph/libceph 0x0c8d34ce ceph_monc_open_session +EXPORT_SYMBOL net/9p/9pnet 0xec83604f p9_client_write +EXPORT_SYMBOL net/9p/9pnet 0xecfdf7c1 p9_is_proto_dotl +EXPORT_SYMBOL net/9p/9pnet 0xef111792 p9_client_mkdir_dotl +EXPORT_SYMBOL net/9p/9pnet 0xf1e80859 p9_client_rename +EXPORT_SYMBOL net/9p/9pnet 0xf2774152 p9_show_client_options +EXPORT_SYMBOL net/9p/9pnet 0xf625dddf p9_client_clunk +EXPORT_SYMBOL net/9p/9pnet 0xf8ad7c8e v9fs_register_trans +EXPORT_SYMBOL net/9p/9pnet 0xfaff49f9 p9_client_open +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x126ed04b ebt_unregister_template +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x2380716d ebt_register_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x39671abd ebt_do_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x84528138 ebt_register_template +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x879b4203 ebt_unregister_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xa2d349a8 ebt_unregister_table_pre_exit +EXPORT_SYMBOL net/ceph/libceph 0x011563b1 ceph_msg_data_add_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x05c82c14 ceph_osdc_call +EXPORT_SYMBOL net/ceph/libceph 0x08c74182 osd_req_op_cls_request_data_bvecs +EXPORT_SYMBOL net/ceph/libceph 0x0bee2e51 ceph_monc_open_session +EXPORT_SYMBOL net/ceph/libceph 0x0ca96174 osd_req_op_xattr_init EXPORT_SYMBOL net/ceph/libceph 0x0ce74839 ceph_pagelist_set_cursor +EXPORT_SYMBOL net/ceph/libceph 0x0d9d7d7c ceph_client_gid +EXPORT_SYMBOL net/ceph/libceph 0x0e2d8558 ceph_osdc_list_watchers EXPORT_SYMBOL net/ceph/libceph 0x0e776b7e ceph_pg_pool_flags -EXPORT_SYMBOL net/ceph/libceph 0x0f497e27 ceph_monc_stop -EXPORT_SYMBOL net/ceph/libceph 0x10f5f70f ceph_osdc_alloc_request -EXPORT_SYMBOL net/ceph/libceph 0x14f6ab37 ceph_monc_got_map -EXPORT_SYMBOL net/ceph/libceph 0x1874d4bc osd_req_op_extent_osd_data_bvec_pos -EXPORT_SYMBOL net/ceph/libceph 0x1bab90b7 osd_req_op_init -EXPORT_SYMBOL net/ceph/libceph 0x1be30a16 osd_req_op_cls_request_data_pagelist -EXPORT_SYMBOL net/ceph/libceph 0x1c931ec0 ceph_con_keepalive +EXPORT_SYMBOL net/ceph/libceph 0x10919afa ceph_osdc_start_request +EXPORT_SYMBOL net/ceph/libceph 0x1cd55520 ceph_osdc_alloc_messages +EXPORT_SYMBOL net/ceph/libceph 0x1da6a352 ceph_osdc_watch EXPORT_SYMBOL net/ceph/libceph 0x2087719e ceph_oid_copy EXPORT_SYMBOL net/ceph/libceph 0x2101cbc9 ceph_oid_destroy -EXPORT_SYMBOL net/ceph/libceph 0x25f6098d ceph_osdc_cancel_request -EXPORT_SYMBOL net/ceph/libceph 0x2c3722ca ceph_open_session -EXPORT_SYMBOL net/ceph/libceph 0x2d49937c ceph_auth_is_authenticated -EXPORT_SYMBOL net/ceph/libceph 0x312c39c7 ceph_osdc_maybe_request_map -EXPORT_SYMBOL net/ceph/libceph 0x31b9ce36 ceph_cls_lock -EXPORT_SYMBOL net/ceph/libceph 0x31c3d9d5 ceph_osdc_call -EXPORT_SYMBOL net/ceph/libceph 0x34dacc16 osd_req_op_cls_response_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x275312fe ceph_monc_get_version_async +EXPORT_SYMBOL net/ceph/libceph 0x27aad343 osd_req_op_extent_osd_data +EXPORT_SYMBOL net/ceph/libceph 0x2d764e6b ceph_cls_lock +EXPORT_SYMBOL net/ceph/libceph 0x2d7846bb ceph_auth_invalidate_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x2e1cfa93 osd_req_op_cls_response_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x301392b7 osd_req_op_cls_request_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x30bb2646 ceph_cls_break_lock +EXPORT_SYMBOL net/ceph/libceph 0x325e8aef osd_req_op_alloc_hint_init +EXPORT_SYMBOL net/ceph/libceph 0x32e834a4 ceph_auth_get_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x3303727d ceph_cls_unlock +EXPORT_SYMBOL net/ceph/libceph 0x33f92281 ceph_msg_new2 +EXPORT_SYMBOL net/ceph/libceph 0x3469a38c ceph_check_fsid EXPORT_SYMBOL net/ceph/libceph 0x3524c308 ceph_find_or_create_string -EXPORT_SYMBOL net/ceph/libceph 0x352c9331 ceph_auth_get_authorizer -EXPORT_SYMBOL net/ceph/libceph 0x36c1cfd2 ceph_alloc_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x37119d11 osd_req_op_cls_init EXPORT_SYMBOL net/ceph/libceph 0x3746c25c ceph_oloc_destroy EXPORT_SYMBOL net/ceph/libceph 0x38f2d94e ceph_file_to_extents -EXPORT_SYMBOL net/ceph/libceph 0x3916ddba ceph_msg_data_add_bio -EXPORT_SYMBOL net/ceph/libceph 0x3939c396 ceph_auth_handle_svc_reply_more -EXPORT_SYMBOL net/ceph/libceph 0x3be5512d ceph_msg_new2 +EXPORT_SYMBOL net/ceph/libceph 0x3911ab04 osd_req_op_extent_osd_data_bvec_pos +EXPORT_SYMBOL net/ceph/libceph 0x3a8b4f9b ceph_con_send EXPORT_SYMBOL net/ceph/libceph 0x3c8d7111 ceph_get_num_objects -EXPORT_SYMBOL net/ceph/libceph 0x3f92bc8a osd_req_op_alloc_hint_init +EXPORT_SYMBOL net/ceph/libceph 0x3e4ae0da ceph_create_client +EXPORT_SYMBOL net/ceph/libceph 0x46475a12 ceph_osdc_wait_request EXPORT_SYMBOL net/ceph/libceph 0x466b85b8 libceph_compatible -EXPORT_SYMBOL net/ceph/libceph 0x494986ad ceph_osdc_flush_notifies -EXPORT_SYMBOL net/ceph/libceph 0x4b64ef74 ceph_con_close -EXPORT_SYMBOL net/ceph/libceph 0x4ba0893f ceph_destroy_client -EXPORT_SYMBOL net/ceph/libceph 0x4bee5857 ceph_msg_new -EXPORT_SYMBOL net/ceph/libceph 0x4f1cff80 ceph_compare_options +EXPORT_SYMBOL net/ceph/libceph 0x4889d4b8 ceph_cls_assert_locked +EXPORT_SYMBOL net/ceph/libceph 0x4c794f64 ceph_osdc_new_request EXPORT_SYMBOL net/ceph/libceph 0x50603ce3 ceph_decode_entity_addrvec -EXPORT_SYMBOL net/ceph/libceph 0x5126040b ceph_create_client -EXPORT_SYMBOL net/ceph/libceph 0x528390dd ceph_auth_handle_bad_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x5193f691 ceph_osdc_alloc_request +EXPORT_SYMBOL net/ceph/libceph 0x523736b6 ceph_monc_init EXPORT_SYMBOL net/ceph/libceph 0x52e131f0 ceph_pagelist_release -EXPORT_SYMBOL net/ceph/libceph 0x52efc6d3 ceph_msg_put -EXPORT_SYMBOL net/ceph/libceph 0x55c7324b osd_req_op_xattr_init EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash +EXPORT_SYMBOL net/ceph/libceph 0x591e6661 ceph_compare_options EXPORT_SYMBOL net/ceph/libceph 0x5aeeee62 ceph_oid_aprintf -EXPORT_SYMBOL net/ceph/libceph 0x5d7c7d52 ceph_cls_assert_locked -EXPORT_SYMBOL net/ceph/libceph 0x5fb6565d ceph_monc_get_version -EXPORT_SYMBOL net/ceph/libceph 0x612a4733 ceph_zero_page_vector_range +EXPORT_SYMBOL net/ceph/libceph 0x5b8e9e07 ceph_osdc_copy_from +EXPORT_SYMBOL net/ceph/libceph 0x603dddc3 ceph_cls_lock_info +EXPORT_SYMBOL net/ceph/libceph 0x6047db52 osd_req_op_extent_osd_data_bio +EXPORT_SYMBOL net/ceph/libceph 0x60acf9ef osd_req_op_extent_update EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name -EXPORT_SYMBOL net/ceph/libceph 0x651ba128 ceph_monc_get_version_async -EXPORT_SYMBOL net/ceph/libceph 0x659b1c28 ceph_osdc_notify_ack +EXPORT_SYMBOL net/ceph/libceph 0x65e061db ceph_monc_stop +EXPORT_SYMBOL net/ceph/libceph 0x6730f0a8 __ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x69004cfc __ceph_auth_get_authorizer EXPORT_SYMBOL net/ceph/libceph 0x6a7a38a0 ceph_pr_addr -EXPORT_SYMBOL net/ceph/libceph 0x6ce4ca05 ceph_cls_set_cookie -EXPORT_SYMBOL net/ceph/libceph 0x6d004d72 ceph_osdc_clear_abort_err -EXPORT_SYMBOL net/ceph/libceph 0x6eb5fbc2 osd_req_op_extent_osd_data_bio -EXPORT_SYMBOL net/ceph/libceph 0x701e86da osd_req_op_extent_dup_last -EXPORT_SYMBOL net/ceph/libceph 0x70f6d7a4 __ceph_open_session -EXPORT_SYMBOL net/ceph/libceph 0x7302b52c osd_req_op_extent_osd_data_pages -EXPORT_SYMBOL net/ceph/libceph 0x772176e6 ceph_con_init +EXPORT_SYMBOL net/ceph/libceph 0x6ad2a88a ceph_con_open +EXPORT_SYMBOL net/ceph/libceph 0x6c4b817d ceph_zero_page_vector_range +EXPORT_SYMBOL net/ceph/libceph 0x6ca66ed6 ceph_print_client_options +EXPORT_SYMBOL net/ceph/libceph 0x711ea97d ceph_parse_param +EXPORT_SYMBOL net/ceph/libceph 0x7191f68b ceph_auth_add_authorizer_challenge +EXPORT_SYMBOL net/ceph/libceph 0x729f6439 ceph_monc_get_version +EXPORT_SYMBOL net/ceph/libceph 0x73003db6 ceph_reset_client_addr +EXPORT_SYMBOL net/ceph/libceph 0x748678c1 ceph_auth_is_authenticated +EXPORT_SYMBOL net/ceph/libceph 0x74a75f11 osd_req_op_extent_osd_data_pages EXPORT_SYMBOL net/ceph/libceph 0x7790a91c ceph_pagelist_append -EXPORT_SYMBOL net/ceph/libceph 0x7a672c0b ceph_osdc_abort_requests -EXPORT_SYMBOL net/ceph/libceph 0x7b229d77 ceph_osdc_start_request -EXPORT_SYMBOL net/ceph/libceph 0x7fb9baa1 ceph_monc_blocklist_add -EXPORT_SYMBOL net/ceph/libceph 0x80c1bae2 osd_req_op_raw_data_in_pages +EXPORT_SYMBOL net/ceph/libceph 0x78b9a4b5 ceph_monc_wait_osdmap +EXPORT_SYMBOL net/ceph/libceph 0x78d503fc ceph_msg_data_add_bio +EXPORT_SYMBOL net/ceph/libceph 0x7ef47013 ceph_osdc_cancel_request +EXPORT_SYMBOL net/ceph/libceph 0x80b0d40c ceph_alloc_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x80bc7085 ceph_monc_want_map EXPORT_SYMBOL net/ceph/libceph 0x8111e973 ceph_pg_poolid_by_name EXPORT_SYMBOL net/ceph/libceph 0x81d82bea ceph_pagelist_truncate EXPORT_SYMBOL net/ceph/libceph 0x8375650f ceph_pagelist_reserve -EXPORT_SYMBOL net/ceph/libceph 0x84ac773d ceph_monc_do_statfs +EXPORT_SYMBOL net/ceph/libceph 0x83ffa3e1 ceph_osdc_abort_requests +EXPORT_SYMBOL net/ceph/libceph 0x8544dbb8 ceph_osdc_sync +EXPORT_SYMBOL net/ceph/libceph 0x86a7e815 ceph_cls_set_cookie EXPORT_SYMBOL net/ceph/libceph 0x86fca7e4 ceph_put_snap_context -EXPORT_SYMBOL net/ceph/libceph 0x91f23b8e osd_req_op_extent_update -EXPORT_SYMBOL net/ceph/libceph 0x93980f8d ceph_osdc_update_epoch_barrier -EXPORT_SYMBOL net/ceph/libceph 0x96e5cf08 ceph_copy_user_to_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x9731fc41 ceph_parse_param +EXPORT_SYMBOL net/ceph/libceph 0x8afb93fc ceph_msg_put +EXPORT_SYMBOL net/ceph/libceph 0x8cbeace7 osd_req_op_extent_dup_last +EXPORT_SYMBOL net/ceph/libceph 0x8d948b5e ceph_monc_got_map +EXPORT_SYMBOL net/ceph/libceph 0x8e68f845 ceph_osdc_notify +EXPORT_SYMBOL net/ceph/libceph 0x9709a427 ceph_msg_data_add_pages EXPORT_SYMBOL net/ceph/libceph 0x987d3968 ceph_alloc_options -EXPORT_SYMBOL net/ceph/libceph 0x99ae3888 osd_req_op_cls_request_data_pages -EXPORT_SYMBOL net/ceph/libceph 0x9be47a4b ceph_monc_want_map EXPORT_SYMBOL net/ceph/libceph 0x9ca95932 ceph_create_snap_context -EXPORT_SYMBOL net/ceph/libceph 0x9fbaa7f9 ceph_client_addr +EXPORT_SYMBOL net/ceph/libceph 0x9cd6c217 ceph_monc_renew_subs +EXPORT_SYMBOL net/ceph/libceph 0x9e930260 ceph_copy_from_page_vector EXPORT_SYMBOL net/ceph/libceph 0x9fefa3cb ceph_calc_file_object_mapping -EXPORT_SYMBOL net/ceph/libceph 0xa11b3ac3 ceph_msg_data_add_pages EXPORT_SYMBOL net/ceph/libceph 0xa376f5df ceph_pagelist_alloc -EXPORT_SYMBOL net/ceph/libceph 0xa478f75b ceph_check_fsid +EXPORT_SYMBOL net/ceph/libceph 0xa4915101 osd_req_op_raw_data_in_pages EXPORT_SYMBOL net/ceph/libceph 0xa58b7e99 ceph_pg_to_acting_primary EXPORT_SYMBOL net/ceph/libceph 0xa698f998 ceph_free_lockers -EXPORT_SYMBOL net/ceph/libceph 0xa6ef0e2b ceph_put_page_vector -EXPORT_SYMBOL net/ceph/libceph 0xa77cd218 osd_req_op_extent_osd_data_bvecs -EXPORT_SYMBOL net/ceph/libceph 0xa93c35d9 ceph_auth_invalidate_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xa6fb3bba ceph_osdc_maybe_request_map +EXPORT_SYMBOL net/ceph/libceph 0xaabdec31 ceph_osdc_update_epoch_barrier +EXPORT_SYMBOL net/ceph/libceph 0xab131444 ceph_con_init EXPORT_SYMBOL net/ceph/libceph 0xad703657 ceph_auth_destroy_authorizer EXPORT_SYMBOL net/ceph/libceph 0xafb8a407 ceph_msgr_flush -EXPORT_SYMBOL net/ceph/libceph 0xb108f22b ceph_wait_for_latest_osdmap +EXPORT_SYMBOL net/ceph/libceph 0xb2568e89 osd_req_op_extent_osd_data_bvecs +EXPORT_SYMBOL net/ceph/libceph 0xb4c0a51b ceph_msg_get +EXPORT_SYMBOL net/ceph/libceph 0xb532ed50 ceph_monc_validate_auth EXPORT_SYMBOL net/ceph/libceph 0xb54676fa ceph_msg_type_name EXPORT_SYMBOL net/ceph/libceph 0xb72c162e ceph_buffer_release EXPORT_SYMBOL net/ceph/libceph 0xb8028006 ceph_object_locator_to_pg +EXPORT_SYMBOL net/ceph/libceph 0xb82d2a7e ceph_parse_mon_ips +EXPORT_SYMBOL net/ceph/libceph 0xba9d4c40 ceph_monc_blocklist_add EXPORT_SYMBOL net/ceph/libceph 0xbc98cee2 ceph_oloc_copy -EXPORT_SYMBOL net/ceph/libceph 0xbd00a5c7 ceph_msg_dump -EXPORT_SYMBOL net/ceph/libceph 0xbd894830 osd_req_op_extent_init EXPORT_SYMBOL net/ceph/libceph 0xbe3879aa ceph_get_snap_context -EXPORT_SYMBOL net/ceph/libceph 0xbf17e37b ceph_auth_verify_authorizer_reply -EXPORT_SYMBOL net/ceph/libceph 0xc30c947d osd_req_op_cls_request_data_bvecs -EXPORT_SYMBOL net/ceph/libceph 0xc36ecf00 ceph_cls_unlock -EXPORT_SYMBOL net/ceph/libceph 0xc40c9f72 ceph_msg_data_add_bvecs -EXPORT_SYMBOL net/ceph/libceph 0xc5fc884a ceph_osdc_wait_request -EXPORT_SYMBOL net/ceph/libceph 0xc935f470 ceph_osdc_put_request -EXPORT_SYMBOL net/ceph/libceph 0xc95a6b47 ceph_osdc_watch -EXPORT_SYMBOL net/ceph/libceph 0xc9705c96 ceph_cls_lock_info +EXPORT_SYMBOL net/ceph/libceph 0xbf24fd60 ceph_osdc_put_request +EXPORT_SYMBOL net/ceph/libceph 0xc270dbdc ceph_monc_do_statfs +EXPORT_SYMBOL net/ceph/libceph 0xc3c4970d ceph_auth_handle_bad_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xc4414367 ceph_osdc_flush_notifies +EXPORT_SYMBOL net/ceph/libceph 0xc81b5c09 ceph_auth_handle_svc_reply_done 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 0xcada67a3 ceph_auth_add_authorizer_challenge -EXPORT_SYMBOL net/ceph/libceph 0xce917555 osd_req_op_extent_osd_data_pagelist -EXPORT_SYMBOL net/ceph/libceph 0xcea3a391 ceph_osdc_get_request -EXPORT_SYMBOL net/ceph/libceph 0xd0ce7619 ceph_osdc_notify -EXPORT_SYMBOL net/ceph/libceph 0xd4426d47 ceph_reset_client_addr +EXPORT_SYMBOL net/ceph/libceph 0xcb7d8c1e ceph_con_close +EXPORT_SYMBOL net/ceph/libceph 0xd023905a ceph_osdc_notify_ack +EXPORT_SYMBOL net/ceph/libceph 0xd1c3b88b ceph_wait_for_latest_osdmap +EXPORT_SYMBOL net/ceph/libceph 0xd1df78a3 ceph_con_keepalive EXPORT_SYMBOL net/ceph/libceph 0xd4d736db ceph_destroy_options EXPORT_SYMBOL net/ceph/libceph 0xd4eb7735 ceph_decode_entity_addr -EXPORT_SYMBOL net/ceph/libceph 0xd898d53c ceph_osdc_list_watchers -EXPORT_SYMBOL net/ceph/libceph 0xd94558b9 osd_req_op_extent_osd_data -EXPORT_SYMBOL net/ceph/libceph 0xda4fda85 ceph_osdc_new_request -EXPORT_SYMBOL net/ceph/libceph 0xdaa17ca1 ceph_client_gid -EXPORT_SYMBOL net/ceph/libceph 0xdbcaa5e6 ceph_osdc_sync -EXPORT_SYMBOL net/ceph/libceph 0xdcacce81 ceph_copy_from_page_vector -EXPORT_SYMBOL net/ceph/libceph 0xdea426ee ceph_monc_validate_auth +EXPORT_SYMBOL net/ceph/libceph 0xd9fdb011 ceph_osdc_get_request +EXPORT_SYMBOL net/ceph/libceph 0xdb5f819a ceph_msg_new +EXPORT_SYMBOL net/ceph/libceph 0xdc86624e ceph_copy_user_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xdddfa3f7 ceph_put_page_vector EXPORT_SYMBOL net/ceph/libceph 0xdeddd368 ceph_pagelist_free_reserve EXPORT_SYMBOL net/ceph/libceph 0xdf6ef4a1 ceph_oid_printf EXPORT_SYMBOL net/ceph/libceph 0xdfc091f9 ceph_entity_type_name -EXPORT_SYMBOL net/ceph/libceph 0xe0cadc54 ceph_msg_get -EXPORT_SYMBOL net/ceph/libceph 0xe2da9447 ceph_monc_init -EXPORT_SYMBOL net/ceph/libceph 0xe4acbbe3 ceph_release_page_vector -EXPORT_SYMBOL net/ceph/libceph 0xe4faf339 ceph_con_open +EXPORT_SYMBOL net/ceph/libceph 0xe243af92 osd_req_op_extent_osd_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0xe316b124 ceph_osdc_unwatch +EXPORT_SYMBOL net/ceph/libceph 0xe50b6657 ceph_release_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xe6ffd0e8 osd_req_op_cls_init +EXPORT_SYMBOL net/ceph/libceph 0xe8135154 ceph_auth_verify_authorizer_reply EXPORT_SYMBOL net/ceph/libceph 0xe85108a4 ceph_buffer_new -EXPORT_SYMBOL net/ceph/libceph 0xeac1f2fd ceph_con_send +EXPORT_SYMBOL net/ceph/libceph 0xea656eba ceph_open_session EXPORT_SYMBOL net/ceph/libceph 0xee120c03 ceph_release_string -EXPORT_SYMBOL net/ceph/libceph 0xee24a42b ceph_osdc_unwatch +EXPORT_SYMBOL net/ceph/libceph 0xee63c737 osd_req_op_extent_init +EXPORT_SYMBOL net/ceph/libceph 0xee770d8e ceph_osdc_clear_abort_err EXPORT_SYMBOL net/ceph/libceph 0xeef6cfa3 ceph_iterate_extents -EXPORT_SYMBOL net/ceph/libceph 0xf490e69e ceph_cls_break_lock -EXPORT_SYMBOL net/ceph/libceph 0xf5ab6596 ceph_osdc_copy_from -EXPORT_SYMBOL net/ceph/libceph 0xf93af5ea ceph_osdc_alloc_messages -EXPORT_SYMBOL net/ceph/libceph 0xf9775be3 ceph_copy_to_page_vector -EXPORT_SYMBOL net/dccp/dccp_ipv4 0xbb763cf0 dccp_syn_ack_timeout -EXPORT_SYMBOL net/dccp/dccp_ipv4 0xdd03d16e dccp_req_err +EXPORT_SYMBOL net/ceph/libceph 0xf0630619 ceph_client_addr +EXPORT_SYMBOL net/ceph/libceph 0xf16e9f05 ceph_msg_dump +EXPORT_SYMBOL net/ceph/libceph 0xf42e7e88 osd_req_op_cls_request_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0xf4a05c97 ceph_copy_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xf586d355 osd_req_op_init +EXPORT_SYMBOL net/ceph/libceph 0xf637dcbd ceph_msg_data_add_bvecs +EXPORT_SYMBOL net/ceph/libceph 0xfc9370b1 ceph_auth_handle_svc_reply_more +EXPORT_SYMBOL net/ceph/libceph 0xfddbb0e8 ceph_destroy_client +EXPORT_SYMBOL net/dccp/dccp_ipv4 0xa428b6a3 dccp_syn_ack_timeout +EXPORT_SYMBOL net/dccp/dccp_ipv4 0xe0c846ea dccp_req_err +EXPORT_SYMBOL net/ipv4/fou 0x36c8f42a __fou_build_header EXPORT_SYMBOL net/ipv4/fou 0x3899cd11 gue_encap_hlen -EXPORT_SYMBOL net/ipv4/fou 0xbe36ff51 __fou_build_header -EXPORT_SYMBOL net/ipv4/fou 0xc47378b9 __gue_build_header +EXPORT_SYMBOL net/ipv4/fou 0xd4194982 __gue_build_header EXPORT_SYMBOL net/ipv4/fou 0xdef70806 fou_encap_hlen -EXPORT_SYMBOL net/ipv4/gre 0x71b5128c gre_parse_header -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x1155c884 ip_tunnel_get_iflink -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x14f3ed86 ip_tunnel_encap_add_ops -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x8c8452f9 ip_tunnel_encap_del_ops -EXPORT_SYMBOL net/ipv4/ip_tunnel 0xdf4a107d ip_tunnel_get_link_net -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x0c6f48f5 arpt_do_table -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x3a8ae8d3 arpt_unregister_table_pre_exit -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xd7cd4681 arpt_register_table -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xf6e7f327 arpt_unregister_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x70247e32 ipt_unregister_table_exit -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xd53081f4 ipt_register_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xe9e09ade ipt_unregister_table_pre_exit -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xf10156e9 ipt_do_table -EXPORT_SYMBOL net/ipv4/tunnel4 0x199db7f8 xfrm4_tunnel_deregister -EXPORT_SYMBOL net/ipv4/tunnel4 0x91aa0bc2 xfrm4_tunnel_register -EXPORT_SYMBOL net/ipv4/udp_tunnel 0x319d9ade udp_sock_create4 -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x08eda8c4 ip6_tnl_get_link_net -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x19914146 ip6_tnl_get_iflink -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x2c0dbb72 ip6_tnl_change_mtu -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x5c40f0b3 ip6_tnl_rcv -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x5c5ad4ad ip6_tnl_encap_del_ops -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xb10a7fec ip6_tnl_parse_tlv_enc_lim -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xdf37e612 ip6_tnl_xmit -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xfad560d5 ip6_tnl_get_cap -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xfdfb076b ip6_tnl_encap_add_ops -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x1ee646c5 ip6t_register_table -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x403bf0c5 ip6t_unregister_table_pre_exit -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x4d44c2f9 ip6t_do_table -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xda94a0a6 ip6t_unregister_table_exit -EXPORT_SYMBOL net/ipv6/tunnel6 0x15d253ff xfrm6_tunnel_deregister -EXPORT_SYMBOL net/ipv6/tunnel6 0xf1fe235b xfrm6_tunnel_register -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x2186c193 xfrm6_tunnel_spi_lookup -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x2ce1ab1d xfrm6_tunnel_alloc_spi -EXPORT_SYMBOL net/llc/llc 0x280b2808 llc_build_and_send_ui_pkt +EXPORT_SYMBOL net/ipv4/gre 0x38f095c0 gre_parse_header +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x972e14f4 ip_tunnel_encap_del_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xaa7a3eae ip_tunnel_get_link_net +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xdc9a86f6 ip_tunnel_get_iflink +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xeda3779e ip_tunnel_encap_add_ops +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x0b581bb2 arpt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x62f30358 arpt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x6f1727a2 arpt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xe72783a8 arpt_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x1d68b92a ipt_unregister_table_exit +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x1f3febc5 ipt_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x52f7b5ce ipt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x9a87e275 ipt_do_table +EXPORT_SYMBOL net/ipv4/tunnel4 0x715128c8 xfrm4_tunnel_deregister +EXPORT_SYMBOL net/ipv4/tunnel4 0x941a05d8 xfrm4_tunnel_register +EXPORT_SYMBOL net/ipv4/udp_tunnel 0x4d4cf9e4 udp_sock_create4 +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x114f2453 ip6_tnl_get_cap +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x274c1094 ip6_tnl_get_iflink +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x2c93e3d2 ip6_tnl_xmit +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x52316787 ip6_tnl_parse_tlv_enc_lim +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x7407d4b1 ip6_tnl_get_link_net +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x905283ab ip6_tnl_change_mtu +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xaa580c33 ip6_tnl_encap_del_ops +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xbd46eb18 ip6_tnl_encap_add_ops +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xf88c7ca0 ip6_tnl_rcv +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x09fc6f1a ip6t_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x5d25035e ip6t_register_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xd1b9369b ip6t_do_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xf6eaa00d ip6t_unregister_table_exit +EXPORT_SYMBOL net/ipv6/tunnel6 0x27bd8fd1 xfrm6_tunnel_deregister +EXPORT_SYMBOL net/ipv6/tunnel6 0xe05781a9 xfrm6_tunnel_register +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x3a12b0cb xfrm6_tunnel_alloc_spi +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xe2ed549d xfrm6_tunnel_spi_lookup +EXPORT_SYMBOL net/llc/llc 0x0606ee0d llc_sap_close +EXPORT_SYMBOL net/llc/llc 0x1f834465 llc_add_pack +EXPORT_SYMBOL net/llc/llc 0x3125db0c llc_sap_open EXPORT_SYMBOL net/llc/llc 0x38b92846 llc_remove_pack EXPORT_SYMBOL net/llc/llc 0x52d7b2fd llc_sap_list -EXPORT_SYMBOL net/llc/llc 0x5cc55325 llc_add_pack -EXPORT_SYMBOL net/llc/llc 0x886a4e03 llc_set_station_handler -EXPORT_SYMBOL net/llc/llc 0xc17f0611 llc_mac_hdr_init -EXPORT_SYMBOL net/llc/llc 0xdc1becf8 llc_sap_close -EXPORT_SYMBOL net/llc/llc 0xef1840af llc_sap_find -EXPORT_SYMBOL net/llc/llc 0xeff2419e llc_sap_open -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x04a344ef ip_vs_new_conn_out -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x0d1d43fb ip_vs_proto_data_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x178f7592 ip_vs_conn_out_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x1e83c741 register_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x3d1417de unregister_ip_vs_app -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x3ea0d899 ip_vs_nfct_expect_related -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x54262ec4 ip_vs_proto_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x55f8e133 ip_vs_tcp_conn_listen -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x81754798 register_ip_vs_app -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x8492ac3a ip_vs_scheduler_err -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x87f16c6f ip_vs_conn_put -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xab2894af unregister_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd700c0a8 register_ip_vs_app_inc +EXPORT_SYMBOL net/llc/llc 0x59f7deb4 llc_sap_find +EXPORT_SYMBOL net/llc/llc 0x82cd9a8c llc_build_and_send_ui_pkt +EXPORT_SYMBOL net/llc/llc 0xc7c7f7c8 llc_set_station_handler +EXPORT_SYMBOL net/llc/llc 0xd3984d91 llc_mac_hdr_init +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x0d1f1d73 ip_vs_conn_put +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x0f4f3692 ip_vs_scheduler_err +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x170231aa register_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x1e568ec6 register_ip_vs_app_inc +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x258c82a0 ip_vs_conn_in_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x368b27df ip_vs_tcp_conn_listen +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x381f95d8 ip_vs_conn_new +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x5b717de3 register_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x6e83c4fe ip_vs_proto_data_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x7d698fed ip_vs_proto_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xa4d1198c unregister_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xa92c0cad ip_vs_nfct_expect_related +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xb920b7b9 ip_vs_new_conn_out +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xc08d2e22 unregister_ip_vs_app EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xdf362029 ip_vs_conn_new -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xf182a8eb ip_vs_conn_in_get -EXPORT_SYMBOL net/netfilter/nf_conntrack 0x05ea85c3 nf_ct_ext_add +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xf655e3a0 ip_vs_conn_out_get +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x3b08a8f0 nf_ct_destroy +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x63fb6399 nf_ct_ext_add EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0xf2a36612 pptp_msg_name -EXPORT_SYMBOL net/netfilter/nf_nat 0x0751ffd8 __nf_nat_mangle_tcp_packet -EXPORT_SYMBOL net/netfilter/nf_nat 0x22c982a0 nf_nat_follow_master -EXPORT_SYMBOL net/netfilter/nf_nat 0xc3c360d3 nf_nat_setup_info -EXPORT_SYMBOL net/netfilter/nf_nat 0xcd95d53b nf_nat_mangle_udp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0x1b74cb6a nf_nat_follow_master +EXPORT_SYMBOL net/netfilter/nf_nat 0x400daa44 __nf_nat_mangle_tcp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0x4339434e nf_nat_mangle_udp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0x6ed41a9d nf_nat_setup_info EXPORT_SYMBOL net/netfilter/nft_fib 0xb3c36947 nft_fib_policy -EXPORT_SYMBOL net/netfilter/x_tables 0x035f07f6 xt_register_target EXPORT_SYMBOL net/netfilter/x_tables 0x0d7f5fcd xt_alloc_entry_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0x1902599c xt_register_matches -EXPORT_SYMBOL net/netfilter/x_tables 0x1d4477a8 xt_unregister_targets -EXPORT_SYMBOL net/netfilter/x_tables 0x2ea96f7c xt_find_table -EXPORT_SYMBOL net/netfilter/x_tables 0x3adf3b1a xt_find_match +EXPORT_SYMBOL net/netfilter/x_tables 0x0fc3b87e xt_unregister_matches +EXPORT_SYMBOL net/netfilter/x_tables 0x1c0799ef xt_find_table +EXPORT_SYMBOL net/netfilter/x_tables 0x37837fdb 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 0x50873741 xt_compat_init_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0x6255ac2c xt_register_match -EXPORT_SYMBOL net/netfilter/x_tables 0x632354a8 xt_unregister_match +EXPORT_SYMBOL net/netfilter/x_tables 0x7d0da241 xt_find_match EXPORT_SYMBOL net/netfilter/x_tables 0x977fd4bf xt_alloc_table_info -EXPORT_SYMBOL net/netfilter/x_tables 0x99a79b31 xt_unregister_matches EXPORT_SYMBOL net/netfilter/x_tables 0xa25fc115 xt_compat_check_entry_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0xb5a30d3f xt_register_targets +EXPORT_SYMBOL net/netfilter/x_tables 0xcb3e000e xt_register_match EXPORT_SYMBOL net/netfilter/x_tables 0xcb3e91cc xt_counters_alloc +EXPORT_SYMBOL net/netfilter/x_tables 0xd731eebb xt_register_matches EXPORT_SYMBOL net/netfilter/x_tables 0xd87ae60d xt_check_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0xdc55bbb2 xt_register_targets EXPORT_SYMBOL net/netfilter/x_tables 0xe204e042 xt_free_table_info -EXPORT_SYMBOL net/netfilter/x_tables 0xefd621e1 xt_unregister_target +EXPORT_SYMBOL net/netfilter/x_tables 0xe32f7004 xt_unregister_target +EXPORT_SYMBOL net/netfilter/x_tables 0xe3fc12f5 xt_unregister_match +EXPORT_SYMBOL net/netfilter/x_tables 0xe7de11f8 xt_register_target EXPORT_SYMBOL net/netfilter/x_tables 0xfef779fa xt_find_jump_offset -EXPORT_SYMBOL net/rxrpc/rxrpc 0x03cc113d rxrpc_kernel_send_data -EXPORT_SYMBOL net/rxrpc/rxrpc 0x2b8489b1 rxrpc_sock_set_min_security_level +EXPORT_SYMBOL net/rxrpc/rxrpc 0x237e0477 rxrpc_kernel_recv_data +EXPORT_SYMBOL net/rxrpc/rxrpc 0x25c7d3b2 rxrpc_kernel_begin_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0x26c30851 rxrpc_kernel_get_epoch +EXPORT_SYMBOL net/rxrpc/rxrpc 0x2ef8f9ea rxrpc_kernel_set_max_life +EXPORT_SYMBOL net/rxrpc/rxrpc 0x2f8c22af rxrpc_kernel_get_peer EXPORT_SYMBOL net/rxrpc/rxrpc 0x31bf3ca3 rxrpc_debug_id -EXPORT_SYMBOL net/rxrpc/rxrpc 0x359cc77a rxrpc_kernel_get_peer -EXPORT_SYMBOL net/rxrpc/rxrpc 0x6d6ede69 rxrpc_kernel_new_call_notification -EXPORT_SYMBOL net/rxrpc/rxrpc 0x6db59225 rxrpc_get_null_key -EXPORT_SYMBOL net/rxrpc/rxrpc 0x82589d63 rxrpc_kernel_get_srtt -EXPORT_SYMBOL net/rxrpc/rxrpc 0x965cac11 rxrpc_kernel_abort_call -EXPORT_SYMBOL net/rxrpc/rxrpc 0xa683c0ec rxrpc_get_server_data_key -EXPORT_SYMBOL net/rxrpc/rxrpc 0xbd360ce5 rxrpc_kernel_check_life -EXPORT_SYMBOL net/rxrpc/rxrpc 0xc9b5f24a rxrpc_kernel_recv_data -EXPORT_SYMBOL net/rxrpc/rxrpc 0xcaaf73fc rxrpc_kernel_begin_call -EXPORT_SYMBOL net/rxrpc/rxrpc 0xcc3f98aa rxrpc_kernel_charge_accept -EXPORT_SYMBOL net/rxrpc/rxrpc 0xcc775b2d key_type_rxrpc -EXPORT_SYMBOL net/rxrpc/rxrpc 0xdbb8d32a rxrpc_kernel_set_tx_length -EXPORT_SYMBOL net/rxrpc/rxrpc 0xdc6b8ad9 rxrpc_kernel_set_max_life -EXPORT_SYMBOL net/rxrpc/rxrpc 0xeafb4a36 rxrpc_kernel_get_reply_time -EXPORT_SYMBOL net/rxrpc/rxrpc 0xf68dae2e rxrpc_kernel_get_epoch -EXPORT_SYMBOL net/rxrpc/rxrpc 0xfe30328b rxrpc_kernel_end_call -EXPORT_SYMBOL net/sctp/sctp 0x112c58e4 sctp_do_peeloff -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x3f0cb943 gss_mech_get -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x61550925 gss_pseudoflavor_to_service -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xff5a5843 gss_mech_put -EXPORT_SYMBOL net/sunrpc/sunrpc 0x315664d1 svc_pool_stats_open -EXPORT_SYMBOL net/sunrpc/sunrpc 0x31db1656 xdr_truncate_encode -EXPORT_SYMBOL net/sunrpc/sunrpc 0x55783dd6 get_srcport -EXPORT_SYMBOL net/sunrpc/sunrpc 0x7314cde2 xdr_restrict_buflen -EXPORT_SYMBOL net/tipc/tipc 0x0aca6739 tipc_dump_start -EXPORT_SYMBOL net/tipc/tipc 0x1dabebcc tipc_dump_done -EXPORT_SYMBOL net/tipc/tipc 0x56e9e7a4 tipc_nl_sk_walk -EXPORT_SYMBOL net/tipc/tipc 0xcc856cd1 tipc_sk_fill_sock_diag -EXPORT_SYMBOL net/tls/tls 0xe8d46895 tls_get_record -EXPORT_SYMBOL vmlinux 0x001cdb9e generic_error_remove_page -EXPORT_SYMBOL vmlinux 0x001d55f5 qdisc_watchdog_cancel -EXPORT_SYMBOL vmlinux 0x006dbdaa netdev_emerg -EXPORT_SYMBOL vmlinux 0x006f835c param_set_hexint -EXPORT_SYMBOL vmlinux 0x0078df26 ether_setup -EXPORT_SYMBOL vmlinux 0x008092ee security_sctp_bind_connect +EXPORT_SYMBOL net/rxrpc/rxrpc 0x3f26fb28 rxrpc_kernel_get_srtt +EXPORT_SYMBOL net/rxrpc/rxrpc 0x409aee44 rxrpc_kernel_send_data +EXPORT_SYMBOL net/rxrpc/rxrpc 0x4654f755 rxrpc_kernel_get_reply_time +EXPORT_SYMBOL net/rxrpc/rxrpc 0x50fc76b3 rxrpc_get_null_key +EXPORT_SYMBOL net/rxrpc/rxrpc 0x5af475d8 rxrpc_sock_set_min_security_level +EXPORT_SYMBOL net/rxrpc/rxrpc 0x64e86819 rxrpc_kernel_charge_accept +EXPORT_SYMBOL net/rxrpc/rxrpc 0x7ad073cb rxrpc_get_server_data_key +EXPORT_SYMBOL net/rxrpc/rxrpc 0xa7640916 key_type_rxrpc +EXPORT_SYMBOL net/rxrpc/rxrpc 0xbb44a72b rxrpc_kernel_abort_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0xcdb97264 rxrpc_kernel_set_tx_length +EXPORT_SYMBOL net/rxrpc/rxrpc 0xe954d7b0 rxrpc_kernel_new_call_notification +EXPORT_SYMBOL net/rxrpc/rxrpc 0xeb629030 rxrpc_kernel_end_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0xf75e63b9 rxrpc_kernel_check_life +EXPORT_SYMBOL net/sctp/sctp 0xad776b15 sctp_do_peeloff +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x1bb9776d gss_pseudoflavor_to_service +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xc71899aa gss_mech_get +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xe6b7062a gss_mech_put +EXPORT_SYMBOL net/sunrpc/sunrpc 0x18a26c39 svc_pool_stats_open +EXPORT_SYMBOL net/sunrpc/sunrpc 0x3bfeb8fa get_srcport +EXPORT_SYMBOL net/sunrpc/sunrpc 0x4723364a xdr_restrict_buflen +EXPORT_SYMBOL net/sunrpc/sunrpc 0xb2f6678b xdr_truncate_encode +EXPORT_SYMBOL net/tipc/tipc 0x1d744adc tipc_sk_fill_sock_diag +EXPORT_SYMBOL net/tipc/tipc 0x46d5cec2 tipc_nl_sk_walk +EXPORT_SYMBOL net/tipc/tipc 0xbff850e4 tipc_dump_done +EXPORT_SYMBOL net/tipc/tipc 0xd02bddef tipc_dump_start +EXPORT_SYMBOL net/tls/tls 0xe0e661a2 tls_get_record +EXPORT_SYMBOL vmlinux 0x001bdba9 remove_watch_from_object +EXPORT_SYMBOL vmlinux 0x004819e1 __inc_zone_page_state +EXPORT_SYMBOL vmlinux 0x00586f80 find_inode_by_ino_rcu +EXPORT_SYMBOL vmlinux 0x005a26b9 mroute6_is_socket +EXPORT_SYMBOL vmlinux 0x0066eff6 dev_get_stats +EXPORT_SYMBOL vmlinux 0x00a3e1b2 lookup_one_len_unlocked +EXPORT_SYMBOL vmlinux 0x00a676d8 security_inet_conn_request EXPORT_SYMBOL vmlinux 0x00b4e615 posix_acl_equiv_mode -EXPORT_SYMBOL vmlinux 0x00ddcb11 qdisc_watchdog_init_clockid -EXPORT_SYMBOL vmlinux 0x00e5cc4d filemap_flush +EXPORT_SYMBOL vmlinux 0x00c5694b blk_mq_start_hw_queue +EXPORT_SYMBOL vmlinux 0x00e1f902 fb_show_logo +EXPORT_SYMBOL vmlinux 0x00eab5f8 kiocb_set_cancel_fn EXPORT_SYMBOL vmlinux 0x00f4a223 _ebc_toupper -EXPORT_SYMBOL vmlinux 0x00f8f84b md_unregister_thread -EXPORT_SYMBOL vmlinux 0x00fabea5 ndo_dflt_fdb_del -EXPORT_SYMBOL vmlinux 0x00fd8fc4 iunique -EXPORT_SYMBOL vmlinux 0x00fdc750 dev_uc_add +EXPORT_SYMBOL vmlinux 0x00f61c9d scsi_print_command EXPORT_SYMBOL vmlinux 0x01000e51 schedule -EXPORT_SYMBOL vmlinux 0x012f1e2c may_setattr -EXPORT_SYMBOL vmlinux 0x0132670b mr_rtm_dumproute +EXPORT_SYMBOL vmlinux 0x010be510 finish_swait +EXPORT_SYMBOL vmlinux 0x011e68a4 pfifo_fast_ops +EXPORT_SYMBOL vmlinux 0x01365837 netif_set_real_num_rx_queues +EXPORT_SYMBOL vmlinux 0x0136e856 con_set_default_unimap +EXPORT_SYMBOL vmlinux 0x0141c8d4 md_bitmap_free EXPORT_SYMBOL vmlinux 0x014716eb hdmi_vendor_infoframe_pack_only EXPORT_SYMBOL vmlinux 0x0147812c kblockd_mod_delayed_work_on -EXPORT_SYMBOL vmlinux 0x014b2d8f put_fs_context EXPORT_SYMBOL vmlinux 0x015af7f4 system_state -EXPORT_SYMBOL vmlinux 0x01610d2e blk_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x015bf926 param_get_hexint +EXPORT_SYMBOL vmlinux 0x01685393 pci_release_region EXPORT_SYMBOL vmlinux 0x01757935 rdmacg_register_device EXPORT_SYMBOL vmlinux 0x017de3d5 nr_cpu_ids -EXPORT_SYMBOL vmlinux 0x01850cd9 page_get_link +EXPORT_SYMBOL vmlinux 0x01808c43 d_move EXPORT_SYMBOL vmlinux 0x018574a1 mb_cache_entry_delete -EXPORT_SYMBOL vmlinux 0x018c9064 default_llseek -EXPORT_SYMBOL vmlinux 0x0190aa3a md_bitmap_close_sync +EXPORT_SYMBOL vmlinux 0x0187ae2a _dev_crit EXPORT_SYMBOL vmlinux 0x0199c3bd ethtool_intersect_link_masks -EXPORT_SYMBOL vmlinux 0x019f477e qdisc_class_hash_grow EXPORT_SYMBOL vmlinux 0x01a20ede radix_tree_tag_set -EXPORT_SYMBOL vmlinux 0x01a779a6 scsi_host_alloc -EXPORT_SYMBOL vmlinux 0x01b289fc ipv6_sock_mc_drop EXPORT_SYMBOL vmlinux 0x01bf55fc paddr_vmcoreinfo_note -EXPORT_SYMBOL vmlinux 0x01d7947c jbd2_journal_get_write_access -EXPORT_SYMBOL vmlinux 0x01da6534 reuseport_add_sock +EXPORT_SYMBOL vmlinux 0x01c78d42 icmp_ndo_send EXPORT_SYMBOL vmlinux 0x01e1ec00 utf8_strncasecmp_folded -EXPORT_SYMBOL vmlinux 0x01e5ab41 tcp_sendmsg +EXPORT_SYMBOL vmlinux 0x0204ddc0 tcp_v4_send_check EXPORT_SYMBOL vmlinux 0x020dbf27 bitmap_alloc -EXPORT_SYMBOL vmlinux 0x0212e49e set_posix_acl -EXPORT_SYMBOL vmlinux 0x022fc186 pcie_capability_write_dword -EXPORT_SYMBOL vmlinux 0x02491f3e fasync_helper -EXPORT_SYMBOL vmlinux 0x0256d403 dma_resv_fini -EXPORT_SYMBOL vmlinux 0x025b2188 netdev_change_features -EXPORT_SYMBOL vmlinux 0x025fb6d3 mini_qdisc_pair_init +EXPORT_SYMBOL vmlinux 0x0217cd36 d_rehash +EXPORT_SYMBOL vmlinux 0x0222d9d0 ccw_device_get_mdc +EXPORT_SYMBOL vmlinux 0x0228597a cdev_del +EXPORT_SYMBOL vmlinux 0x02706ba3 inet6_ioctl EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues -EXPORT_SYMBOL vmlinux 0x028aaaf8 con_is_bound +EXPORT_SYMBOL vmlinux 0x0276c469 proc_symlink +EXPORT_SYMBOL vmlinux 0x02954154 xfrm_policy_alloc EXPORT_SYMBOL vmlinux 0x0296695f refcount_warn_saturate -EXPORT_SYMBOL vmlinux 0x02a18c74 nf_conntrack_destroy +EXPORT_SYMBOL vmlinux 0x02b0bb1d rtnl_kfree_skbs +EXPORT_SYMBOL vmlinux 0x02c8970d xsk_tx_release EXPORT_SYMBOL vmlinux 0x02ca22a8 hex_dump_to_buffer -EXPORT_SYMBOL vmlinux 0x02cff7fa gnet_stats_start_copy_compat -EXPORT_SYMBOL vmlinux 0x02d356d8 request_key_rcu -EXPORT_SYMBOL vmlinux 0x02e36f7a tcf_exts_num_actions +EXPORT_SYMBOL vmlinux 0x02e21b4a config_group_find_item EXPORT_SYMBOL vmlinux 0x02f034a1 xz_dec_run EXPORT_SYMBOL vmlinux 0x02f4d77f __SCK__tp_func_s390_cio_tpi -EXPORT_SYMBOL vmlinux 0x02fd016d jbd2_journal_check_available_features -EXPORT_SYMBOL vmlinux 0x02fe9d63 no_llseek -EXPORT_SYMBOL vmlinux 0x03023538 csum_and_copy_from_iter -EXPORT_SYMBOL vmlinux 0x0305e2e5 simple_transaction_read -EXPORT_SYMBOL vmlinux 0x030902d4 kernel_sendmsg -EXPORT_SYMBOL vmlinux 0x030f1161 dev_open -EXPORT_SYMBOL vmlinux 0x0323d8e3 xfrm_state_lookup_byspi +EXPORT_SYMBOL vmlinux 0x02ffadf6 kfree_skb +EXPORT_SYMBOL vmlinux 0x03043321 eth_type_trans +EXPORT_SYMBOL vmlinux 0x030ed094 pcibios_bus_to_resource +EXPORT_SYMBOL vmlinux 0x032028b1 __vfs_getxattr EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl -EXPORT_SYMBOL vmlinux 0x03364026 sk_ns_capable -EXPORT_SYMBOL vmlinux 0x033a591c request_key_with_auxdata -EXPORT_SYMBOL vmlinux 0x033c9458 jbd2_journal_extend +EXPORT_SYMBOL vmlinux 0x0336211f dquot_get_dqblk +EXPORT_SYMBOL vmlinux 0x033e39e4 udp_lib_get_port +EXPORT_SYMBOL vmlinux 0x033eeb1d __sk_backlog_rcv EXPORT_SYMBOL vmlinux 0x034a7afe idr_destroy -EXPORT_SYMBOL vmlinux 0x03577c53 tcp_release_cb -EXPORT_SYMBOL vmlinux 0x035f95cf kthread_create_worker +EXPORT_SYMBOL vmlinux 0x0356e96b page_pool_return_skb_page +EXPORT_SYMBOL vmlinux 0x0360d67f make_flow_keys_digest EXPORT_SYMBOL vmlinux 0x0366307a console_suspend_enabled -EXPORT_SYMBOL vmlinux 0x036fd470 bfifo_qdisc_ops -EXPORT_SYMBOL vmlinux 0x03765b59 __sk_mem_reduce_allocated EXPORT_SYMBOL vmlinux 0x037a0cba kfree -EXPORT_SYMBOL vmlinux 0x03838e5f tcp_ioctl EXPORT_SYMBOL vmlinux 0x038762c8 idr_get_next_ul EXPORT_SYMBOL vmlinux 0x0397edd5 fb_edid_to_monspecs -EXPORT_SYMBOL vmlinux 0x03a0a69f fs_param_is_fd -EXPORT_SYMBOL vmlinux 0x03b77218 param_get_byte -EXPORT_SYMBOL vmlinux 0x03cf3b04 inet_sendpage +EXPORT_SYMBOL vmlinux 0x03c26360 dcb_ieee_delapp EXPORT_SYMBOL vmlinux 0x03d2240c add_virt_timer_periodic -EXPORT_SYMBOL vmlinux 0x03deff13 __skb_pad -EXPORT_SYMBOL vmlinux 0x03edfaea tcf_block_netif_keep_dst -EXPORT_SYMBOL vmlinux 0x03eff8b4 generic_remap_file_range_prep -EXPORT_SYMBOL vmlinux 0x03f6755a tty_unregister_device +EXPORT_SYMBOL vmlinux 0x03dbaba6 block_truncate_page +EXPORT_SYMBOL vmlinux 0x03ea1684 __lock_buffer +EXPORT_SYMBOL vmlinux 0x03f0815f del_random_ready_callback +EXPORT_SYMBOL vmlinux 0x03f50c6c __cleancache_invalidate_fs EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram -EXPORT_SYMBOL vmlinux 0x03fe2a89 nobh_write_end -EXPORT_SYMBOL vmlinux 0x041759be debug_exception_common +EXPORT_SYMBOL vmlinux 0x03fe6d47 iov_iter_single_seg_count EXPORT_SYMBOL vmlinux 0x04444662 lockref_get_not_dead +EXPORT_SYMBOL vmlinux 0x0447c7c3 netif_device_attach EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator -EXPORT_SYMBOL vmlinux 0x0473229c netpoll_send_udp -EXPORT_SYMBOL vmlinux 0x0479223d pci_bus_size_bridges -EXPORT_SYMBOL vmlinux 0x049b6672 kbd_ioctl -EXPORT_SYMBOL vmlinux 0x04ac87ac param_get_bool -EXPORT_SYMBOL vmlinux 0x04cb4d06 xfrm_input_resume +EXPORT_SYMBOL vmlinux 0x0469f19d touch_atime +EXPORT_SYMBOL vmlinux 0x047d2918 set_cached_acl +EXPORT_SYMBOL vmlinux 0x047f4e31 kern_path +EXPORT_SYMBOL vmlinux 0x04a2b50f jbd2__journal_start +EXPORT_SYMBOL vmlinux 0x04b64bb8 param_set_bint +EXPORT_SYMBOL vmlinux 0x04b7e600 napi_complete_done EXPORT_SYMBOL vmlinux 0x04d9bf4e blk_set_stacking_limits -EXPORT_SYMBOL vmlinux 0x04e23b31 flow_block_cb_lookup -EXPORT_SYMBOL vmlinux 0x04e288ad tcp_sock_set_user_timeout -EXPORT_SYMBOL vmlinux 0x050aba97 ip4_datagram_connect -EXPORT_SYMBOL vmlinux 0x051179f8 devm_request_resource -EXPORT_SYMBOL vmlinux 0x0513022b input_mt_drop_unused -EXPORT_SYMBOL vmlinux 0x0514e63e ipmr_rule_default +EXPORT_SYMBOL vmlinux 0x05062a8d scm_detach_fds +EXPORT_SYMBOL vmlinux 0x05107a18 __skb_recv_datagram EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch -EXPORT_SYMBOL vmlinux 0x052451c4 devm_pci_alloc_host_bridge -EXPORT_SYMBOL vmlinux 0x05393c29 dev_uc_sync_multiple +EXPORT_SYMBOL vmlinux 0x052d4a07 get_cached_acl +EXPORT_SYMBOL vmlinux 0x0542e90f generic_file_splice_read EXPORT_SYMBOL vmlinux 0x054496b4 schedule_timeout_interruptible -EXPORT_SYMBOL vmlinux 0x0544fd3a insert_inode_locked4 -EXPORT_SYMBOL vmlinux 0x05516f9f blkdev_get_by_path -EXPORT_SYMBOL vmlinux 0x05569a25 mount_single -EXPORT_SYMBOL vmlinux 0x05675250 vfs_mkdir -EXPORT_SYMBOL vmlinux 0x057175ce input_register_handle +EXPORT_SYMBOL vmlinux 0x0549a0a5 key_invalidate +EXPORT_SYMBOL vmlinux 0x05615e18 insert_inode_locked4 +EXPORT_SYMBOL vmlinux 0x057a3a7e __cleancache_invalidate_inode EXPORT_SYMBOL vmlinux 0x0584d4ac __traceiter_s390_cio_ssch -EXPORT_SYMBOL vmlinux 0x0594cca6 empty_aops -EXPORT_SYMBOL vmlinux 0x0598b3ef xp_set_rxq_info +EXPORT_SYMBOL vmlinux 0x05861d3a dma_resv_fini +EXPORT_SYMBOL vmlinux 0x0586e85a register_framebuffer EXPORT_SYMBOL vmlinux 0x05a363c8 raw3270_request_set_data -EXPORT_SYMBOL vmlinux 0x05c5623a udp_read_sock -EXPORT_SYMBOL vmlinux 0x05ccb5bb sock_kzfree_s -EXPORT_SYMBOL vmlinux 0x05f0e279 __blk_mq_alloc_disk +EXPORT_SYMBOL vmlinux 0x05a4f09b gnet_stats_start_copy +EXPORT_SYMBOL vmlinux 0x05a6806e pci_claim_resource +EXPORT_SYMBOL vmlinux 0x05b99f76 bio_free_pages +EXPORT_SYMBOL vmlinux 0x05d70ebf ccw_driver_unregister +EXPORT_SYMBOL vmlinux 0x05e0e1b9 input_handler_for_each_handle +EXPORT_SYMBOL vmlinux 0x06021c49 udp6_csum_init +EXPORT_SYMBOL vmlinux 0x061593f1 cdrom_mode_select EXPORT_SYMBOL vmlinux 0x061651be strcat +EXPORT_SYMBOL vmlinux 0x06182203 locks_lock_inode_wait 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 0x064cfdd6 unregister_fib_notifier -EXPORT_SYMBOL vmlinux 0x06538004 dev_add_offload -EXPORT_SYMBOL vmlinux 0x0666e488 proc_set_user +EXPORT_SYMBOL vmlinux 0x063f4324 netpoll_send_skb +EXPORT_SYMBOL vmlinux 0x064fcde7 xfrm4_rcv +EXPORT_SYMBOL vmlinux 0x065503d0 seq_printf EXPORT_SYMBOL vmlinux 0x0668b595 _kstrtoul -EXPORT_SYMBOL vmlinux 0x066f2323 add_random_ready_callback -EXPORT_SYMBOL vmlinux 0x068c3b24 tty_hangup -EXPORT_SYMBOL vmlinux 0x06d40a76 sk_stream_wait_memory -EXPORT_SYMBOL vmlinux 0x06f01e70 generic_fillattr -EXPORT_SYMBOL vmlinux 0x070da058 elv_bio_merge_ok -EXPORT_SYMBOL vmlinux 0x0725dbae __dev_get_by_name +EXPORT_SYMBOL vmlinux 0x066ad5d2 seq_vprintf +EXPORT_SYMBOL vmlinux 0x069c68be inet_dgram_connect +EXPORT_SYMBOL vmlinux 0x06b02235 md_set_array_sectors +EXPORT_SYMBOL vmlinux 0x06b2da47 bdev_dax_pgoff +EXPORT_SYMBOL vmlinux 0x06eb489b skb_seq_read +EXPORT_SYMBOL vmlinux 0x0710d9c8 t10_pi_type3_crc EXPORT_SYMBOL vmlinux 0x07297511 crc_t10dif_update -EXPORT_SYMBOL vmlinux 0x072f272a __traceiter_mmap_lock_released -EXPORT_SYMBOL vmlinux 0x07629a21 tcp_sock_set_cork -EXPORT_SYMBOL vmlinux 0x07783666 jbd2_journal_abort -EXPORT_SYMBOL vmlinux 0x077bc00e blk_rq_count_integrity_sg -EXPORT_SYMBOL vmlinux 0x079ab1e9 vfs_fileattr_get +EXPORT_SYMBOL vmlinux 0x0736c3ff fault_in_safe_writeable +EXPORT_SYMBOL vmlinux 0x07634990 vc_resize +EXPORT_SYMBOL vmlinux 0x0767065b cont_write_begin +EXPORT_SYMBOL vmlinux 0x0780b14c security_sctp_sk_clone +EXPORT_SYMBOL vmlinux 0x079f67a3 kmem_cache_shrink EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap -EXPORT_SYMBOL vmlinux 0x07b6d25e inet_frag_reasm_prepare +EXPORT_SYMBOL vmlinux 0x07b67a98 security_sb_set_mnt_opts +EXPORT_SYMBOL vmlinux 0x07c4f9d9 skb_expand_head +EXPORT_SYMBOL vmlinux 0x07c67cc9 __skb_gso_segment +EXPORT_SYMBOL vmlinux 0x07c80569 vlan_uses_dev EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit -EXPORT_SYMBOL vmlinux 0x07d2f789 scsi_free_host_dev -EXPORT_SYMBOL vmlinux 0x07d99e3c page_pool_release_page EXPORT_SYMBOL vmlinux 0x07dd502a s390_arch_random_generate -EXPORT_SYMBOL vmlinux 0x07dd8c9e netdev_lower_get_next_private -EXPORT_SYMBOL vmlinux 0x07e650a2 key_link -EXPORT_SYMBOL vmlinux 0x07eb20df pcie_get_width_cap +EXPORT_SYMBOL vmlinux 0x07e37a08 dm_put_device EXPORT_SYMBOL vmlinux 0x07f57478 pci_unmap_iospace EXPORT_SYMBOL vmlinux 0x0800473f __cond_resched EXPORT_SYMBOL vmlinux 0x0805f2c8 ecryptfs_get_auth_tok_key +EXPORT_SYMBOL vmlinux 0x080cd343 set_create_files_as +EXPORT_SYMBOL vmlinux 0x0815eb9c simple_empty EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses -EXPORT_SYMBOL vmlinux 0x082e5d95 security_inode_getsecctx +EXPORT_SYMBOL vmlinux 0x0830aa6a scsi_test_unit_ready EXPORT_SYMBOL vmlinux 0x08456553 match_string -EXPORT_SYMBOL vmlinux 0x084a7233 netpoll_poll_dev -EXPORT_SYMBOL vmlinux 0x08526422 param_set_copystring -EXPORT_SYMBOL vmlinux 0x085c5b9f km_query -EXPORT_SYMBOL vmlinux 0x08658675 scsi_eh_finish_cmd -EXPORT_SYMBOL vmlinux 0x08705dbc filp_open -EXPORT_SYMBOL vmlinux 0x0879a0d8 clear_page_dirty_for_io +EXPORT_SYMBOL vmlinux 0x08494321 blk_queue_max_write_zeroes_sectors +EXPORT_SYMBOL vmlinux 0x08499d43 d_lookup +EXPORT_SYMBOL vmlinux 0x087a491f param_ops_ullong +EXPORT_SYMBOL vmlinux 0x087addcd inode_needs_sync +EXPORT_SYMBOL vmlinux 0x087f8a69 flow_rule_match_mpls EXPORT_SYMBOL vmlinux 0x0882a449 security_xfrm_policy_alloc EXPORT_SYMBOL vmlinux 0x088c96f6 tcp_parse_md5sig_option -EXPORT_SYMBOL vmlinux 0x08ae39a9 skb_tunnel_check_pmtu -EXPORT_SYMBOL vmlinux 0x08b6f028 bio_endio -EXPORT_SYMBOL vmlinux 0x08ba8ad6 gnet_stats_start_copy -EXPORT_SYMBOL vmlinux 0x08bb38b1 blk_put_request -EXPORT_SYMBOL vmlinux 0x08cd26aa ccw_device_clear -EXPORT_SYMBOL vmlinux 0x08d2cf26 simple_transaction_get -EXPORT_SYMBOL vmlinux 0x08d38588 register_netdev -EXPORT_SYMBOL vmlinux 0x08e167fb dump_emit -EXPORT_SYMBOL vmlinux 0x08e441dd nf_register_queue_handler -EXPORT_SYMBOL vmlinux 0x08ea299a vlan_dev_vlan_id -EXPORT_SYMBOL vmlinux 0x08f9fc28 kill_block_super +EXPORT_SYMBOL vmlinux 0x088c9fa2 vfs_clone_file_range +EXPORT_SYMBOL vmlinux 0x088dd779 gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0x08a5ff25 clocksource_change_rating +EXPORT_SYMBOL vmlinux 0x08bb09a1 sock_no_sendmsg +EXPORT_SYMBOL vmlinux 0x08d0860b tcf_unregister_action +EXPORT_SYMBOL vmlinux 0x08ec3b94 pci_match_id +EXPORT_SYMBOL vmlinux 0x08f60f68 devm_ioremap_np +EXPORT_SYMBOL vmlinux 0x090e80f6 mr_fill_mroute EXPORT_SYMBOL vmlinux 0x0920b173 lockref_mark_dead -EXPORT_SYMBOL vmlinux 0x09232bf9 fs_param_is_blockdev -EXPORT_SYMBOL vmlinux 0x0923b5f4 page_zero_new_buffers -EXPORT_SYMBOL vmlinux 0x092752df input_get_keycode -EXPORT_SYMBOL vmlinux 0x09302477 would_dump -EXPORT_SYMBOL vmlinux 0x094e68be iov_iter_bvec +EXPORT_SYMBOL vmlinux 0x0925b22b key_type_keyring +EXPORT_SYMBOL vmlinux 0x093a8523 md_finish_reshape +EXPORT_SYMBOL vmlinux 0x094db6cc tcf_block_put EXPORT_SYMBOL vmlinux 0x094effa5 __iucv_message_receive -EXPORT_SYMBOL vmlinux 0x09663dca xfrm_state_check_expire +EXPORT_SYMBOL vmlinux 0x09621462 tcf_em_tree_destroy +EXPORT_SYMBOL vmlinux 0x096d92a9 filemap_fdatawrite_range EXPORT_SYMBOL vmlinux 0x09769037 dmt_modes -EXPORT_SYMBOL vmlinux 0x097bcb58 generic_file_write_iter -EXPORT_SYMBOL vmlinux 0x097cba36 rt6_lookup EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap -EXPORT_SYMBOL vmlinux 0x09a1a3f0 ip6_fraglist_init -EXPORT_SYMBOL vmlinux 0x09af1670 md_check_recovery +EXPORT_SYMBOL vmlinux 0x09a13e11 dquot_load_quota_inode EXPORT_SYMBOL vmlinux 0x09bf6fbe ZSTD_decompressDCtx -EXPORT_SYMBOL vmlinux 0x09cdac32 ccw_device_set_offline EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions -EXPORT_SYMBOL vmlinux 0x09ee62a8 dquot_get_dqblk -EXPORT_SYMBOL vmlinux 0x09f93412 pci_find_resource +EXPORT_SYMBOL vmlinux 0x09d86122 blk_mq_queue_stopped +EXPORT_SYMBOL vmlinux 0x0a0eb666 ipv4_specific EXPORT_SYMBOL vmlinux 0x0a1dbc76 tcp_rx_skb_cache_key EXPORT_SYMBOL vmlinux 0x0a1e9bee security_binder_transaction +EXPORT_SYMBOL vmlinux 0x0a1f0675 bio_copy_data EXPORT_SYMBOL vmlinux 0x0a2a0bce nla_append -EXPORT_SYMBOL vmlinux 0x0a3a577a fb_set_var +EXPORT_SYMBOL vmlinux 0x0a341cfc param_get_ushort +EXPORT_SYMBOL vmlinux 0x0a362db5 sk_free EXPORT_SYMBOL vmlinux 0x0a3b0d94 raw_copy_from_user -EXPORT_SYMBOL vmlinux 0x0a433fb9 neigh_resolve_output -EXPORT_SYMBOL vmlinux 0x0a501c8c submit_bio_noacct -EXPORT_SYMBOL vmlinux 0x0a641ee4 vfs_llseek -EXPORT_SYMBOL vmlinux 0x0a69c65b lease_get_mtime +EXPORT_SYMBOL vmlinux 0x0a41332c fs_lookup_param +EXPORT_SYMBOL vmlinux 0x0a44bf93 create_empty_buffers EXPORT_SYMBOL vmlinux 0x0a770832 register_memory_notifier -EXPORT_SYMBOL vmlinux 0x0aa12ef0 unlock_rename -EXPORT_SYMBOL vmlinux 0x0aa283d1 find_get_pages_contig +EXPORT_SYMBOL vmlinux 0x0a978d4d inet_add_offload EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq -EXPORT_SYMBOL vmlinux 0x0aa76deb blk_mq_unique_tag -EXPORT_SYMBOL vmlinux 0x0aac3653 sock_common_setsockopt EXPORT_SYMBOL vmlinux 0x0aaccc92 pci_remap_iospace EXPORT_SYMBOL vmlinux 0x0aacd352 __kfifo_len_r -EXPORT_SYMBOL vmlinux 0x0ab66436 udp6_set_csum +EXPORT_SYMBOL vmlinux 0x0ac12aef xp_dma_unmap +EXPORT_SYMBOL vmlinux 0x0ac90d62 scsi_command_normalize_sense +EXPORT_SYMBOL vmlinux 0x0ac98446 inet6_register_protosw +EXPORT_SYMBOL vmlinux 0x0acf2a5e iov_iter_pipe EXPORT_SYMBOL vmlinux 0x0ae60c27 utf8_normalize -EXPORT_SYMBOL vmlinux 0x0aed4748 skb_flow_dissect_tunnel_info -EXPORT_SYMBOL vmlinux 0x0afd8996 bio_advance -EXPORT_SYMBOL vmlinux 0x0b00356a vfs_iocb_iter_read -EXPORT_SYMBOL vmlinux 0x0b179477 pneigh_enqueue +EXPORT_SYMBOL vmlinux 0x0ae952d0 inet_sk_rebuild_header +EXPORT_SYMBOL vmlinux 0x0af3a545 sock_common_recvmsg +EXPORT_SYMBOL vmlinux 0x0af3e464 pci_write_config_byte +EXPORT_SYMBOL vmlinux 0x0b14a49e arp_tbl +EXPORT_SYMBOL vmlinux 0x0b172642 add_to_page_cache_locked +EXPORT_SYMBOL vmlinux 0x0b1a8a49 jbd2_journal_abort EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user -EXPORT_SYMBOL vmlinux 0x0b201535 blk_mq_run_hw_queues -EXPORT_SYMBOL vmlinux 0x0b296614 inet_bind -EXPORT_SYMBOL vmlinux 0x0b2aa4b4 take_dentry_name_snapshot -EXPORT_SYMBOL vmlinux 0x0b4e20c2 tcp_req_err -EXPORT_SYMBOL vmlinux 0x0b5b8bc1 pci_msix_vec_count -EXPORT_SYMBOL vmlinux 0x0b5f3ea7 debug_hex_ascii_view -EXPORT_SYMBOL vmlinux 0x0b643821 netdev_refcnt_read -EXPORT_SYMBOL vmlinux 0x0b6ac3cd netif_carrier_on EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol -EXPORT_SYMBOL vmlinux 0x0b87268a sock_no_sendmsg -EXPORT_SYMBOL vmlinux 0x0b921fc2 neigh_parms_release +EXPORT_SYMBOL vmlinux 0x0b7dfc58 kthread_create_on_node EXPORT_SYMBOL vmlinux 0x0ba0b938 vm_brk -EXPORT_SYMBOL vmlinux 0x0ba2c1f5 sock_set_mark -EXPORT_SYMBOL vmlinux 0x0bc053ef padata_alloc +EXPORT_SYMBOL vmlinux 0x0bb51371 fb_set_suspend EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type -EXPORT_SYMBOL vmlinux 0x0bca0683 scsi_unblock_requests -EXPORT_SYMBOL vmlinux 0x0bd4f641 d_path -EXPORT_SYMBOL vmlinux 0x0bdda5d3 ipv6_chk_custom_prefix -EXPORT_SYMBOL vmlinux 0x0be92ecc dev_lstats_read +EXPORT_SYMBOL vmlinux 0x0bfb2d10 padata_do_serial +EXPORT_SYMBOL vmlinux 0x0c0c661d disk_stack_limits +EXPORT_SYMBOL vmlinux 0x0c127fb7 seq_path EXPORT_SYMBOL vmlinux 0x0c17a68e zlib_dfltcc_support EXPORT_SYMBOL vmlinux 0x0c25ec48 secure_tcpv6_seq -EXPORT_SYMBOL vmlinux 0x0c2b2602 __hw_addr_ref_unsync_dev +EXPORT_SYMBOL vmlinux 0x0c27fa77 nf_ip_checksum +EXPORT_SYMBOL vmlinux 0x0c2993a1 ip_local_deliver EXPORT_SYMBOL vmlinux 0x0c333a7f radix_tree_insert -EXPORT_SYMBOL vmlinux 0x0c5f13c5 udp_flush_pending_frames -EXPORT_SYMBOL vmlinux 0x0c652ba5 netdev_state_change EXPORT_SYMBOL vmlinux 0x0c6ccf20 s390_isolate_bp -EXPORT_SYMBOL vmlinux 0x0c7c7991 skb_pull +EXPORT_SYMBOL vmlinux 0x0c7449e4 genl_unregister_family EXPORT_SYMBOL vmlinux 0x0c7cf7c6 zero_page_mask +EXPORT_SYMBOL vmlinux 0x0c81a405 gro_cells_init +EXPORT_SYMBOL vmlinux 0x0c83fce9 migrate_page_states +EXPORT_SYMBOL vmlinux 0x0c868081 from_kuid_munged +EXPORT_SYMBOL vmlinux 0x0c8bf22e crypto_sha512_finup EXPORT_SYMBOL vmlinux 0x0c904c5b mempool_exit -EXPORT_SYMBOL vmlinux 0x0c9e78e0 input_set_poll_interval -EXPORT_SYMBOL vmlinux 0x0ca26723 dma_alloc_attrs -EXPORT_SYMBOL vmlinux 0x0ca48518 fscrypt_ioctl_set_policy +EXPORT_SYMBOL vmlinux 0x0c9225c3 ip_cmsg_recv_offset +EXPORT_SYMBOL vmlinux 0x0c922723 filemap_write_and_wait_range +EXPORT_SYMBOL vmlinux 0x0c95e2ed blkdev_put EXPORT_SYMBOL vmlinux 0x0cb11bc7 __SCK__tp_func_dma_fence_enable_signal +EXPORT_SYMBOL vmlinux 0x0cb8b627 tcp_enter_cwr EXPORT_SYMBOL vmlinux 0x0cc0f4c5 __genradix_prealloc +EXPORT_SYMBOL vmlinux 0x0cccc2fb kernel_sendmsg_locked +EXPORT_SYMBOL vmlinux 0x0cd0dacf netdev_adjacent_change_abort EXPORT_SYMBOL vmlinux 0x0cd5835b ipv6_flowlabel_exclusive +EXPORT_SYMBOL vmlinux 0x0cded7f3 flow_rule_match_vlan EXPORT_SYMBOL vmlinux 0x0ce19729 mb_cache_entry_touch -EXPORT_SYMBOL vmlinux 0x0cf28d24 rtnl_notify -EXPORT_SYMBOL vmlinux 0x0cffe2be icmpv6_ndo_send -EXPORT_SYMBOL vmlinux 0x0d06e909 configfs_register_group +EXPORT_SYMBOL vmlinux 0x0ce60e46 super_setup_bdi_name EXPORT_SYMBOL vmlinux 0x0d07f543 get_anon_bdev -EXPORT_SYMBOL vmlinux 0x0d089b5d debug_unregister_view -EXPORT_SYMBOL vmlinux 0x0d08cc7c blkdev_compat_ptr_ioctl -EXPORT_SYMBOL vmlinux 0x0d1e71ba vlan_filter_push_vids -EXPORT_SYMBOL vmlinux 0x0d48ec22 config_item_get -EXPORT_SYMBOL vmlinux 0x0d52f063 invalidate_bdev +EXPORT_SYMBOL vmlinux 0x0d14d184 pci_bus_claim_resources +EXPORT_SYMBOL vmlinux 0x0d1fea80 tty_lock +EXPORT_SYMBOL vmlinux 0x0d46fff7 sock_sendmsg +EXPORT_SYMBOL vmlinux 0x0d4ca23f set_page_dirty_lock +EXPORT_SYMBOL vmlinux 0x0d509b17 ip_tunnel_header_ops EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type EXPORT_SYMBOL vmlinux 0x0d61eeee __bitmap_subset -EXPORT_SYMBOL vmlinux 0x0d762081 tcp_enter_cwr -EXPORT_SYMBOL vmlinux 0x0d90280c __skb_checksum_complete_head -EXPORT_SYMBOL vmlinux 0x0d9792e8 alloc_fcdev -EXPORT_SYMBOL vmlinux 0x0d9e8648 md_check_no_bitmap -EXPORT_SYMBOL vmlinux 0x0dc1d563 pci_alloc_host_bridge -EXPORT_SYMBOL vmlinux 0x0dd1ab31 dev_addr_init -EXPORT_SYMBOL vmlinux 0x0dd7cbab inode_insert5 -EXPORT_SYMBOL vmlinux 0x0dda325e file_ns_capable -EXPORT_SYMBOL vmlinux 0x0dfa0625 get_cached_acl -EXPORT_SYMBOL vmlinux 0x0dfefbda scsi_device_quiesce -EXPORT_SYMBOL vmlinux 0x0e01bf98 dev_mc_add_global -EXPORT_SYMBOL vmlinux 0x0e161a18 xfrm_state_walk +EXPORT_SYMBOL vmlinux 0x0d6bcd1d page_pool_create +EXPORT_SYMBOL vmlinux 0x0d6e6fcd md_reload_sb +EXPORT_SYMBOL vmlinux 0x0d726371 xsk_get_pool_from_qid +EXPORT_SYMBOL vmlinux 0x0d753720 get_tree_single +EXPORT_SYMBOL vmlinux 0x0d847fb3 skb_copy_and_csum_datagram_msg +EXPORT_SYMBOL vmlinux 0x0d949535 __blk_rq_map_sg +EXPORT_SYMBOL vmlinux 0x0d9a3abd skb_vlan_pop +EXPORT_SYMBOL vmlinux 0x0d9f5583 proc_set_user +EXPORT_SYMBOL vmlinux 0x0db8f2ce blk_queue_chunk_sectors +EXPORT_SYMBOL vmlinux 0x0dfc1687 pci_fixup_cardbus +EXPORT_SYMBOL vmlinux 0x0e04fc02 jbd2_journal_start EXPORT_SYMBOL vmlinux 0x0e17678a siphash_4u64 EXPORT_SYMBOL vmlinux 0x0e1ecfb7 unregister_adapter_interrupt EXPORT_SYMBOL vmlinux 0x0e1ee435 _copy_from_user_key -EXPORT_SYMBOL vmlinux 0x0e34e637 flow_rule_alloc -EXPORT_SYMBOL vmlinux 0x0e39b40e pci_clear_mwi +EXPORT_SYMBOL vmlinux 0x0e2dbf8f dm_kcopyd_copy +EXPORT_SYMBOL vmlinux 0x0e31e7b6 unregister_nls +EXPORT_SYMBOL vmlinux 0x0e4623a0 netdev_change_features EXPORT_SYMBOL vmlinux 0x0e56b80a __SCK__tp_func_s390_cio_tsch -EXPORT_SYMBOL vmlinux 0x0e70b5d6 tcf_exts_dump_stats -EXPORT_SYMBOL vmlinux 0x0e84c6a3 netlink_unicast -EXPORT_SYMBOL vmlinux 0x0ea00b65 fs_context_for_submount +EXPORT_SYMBOL vmlinux 0x0e71499d __tty_insert_flip_char EXPORT_SYMBOL vmlinux 0x0ea3c74e tasklet_kill EXPORT_SYMBOL vmlinux 0x0ea593f6 hdmi_drm_infoframe_init EXPORT_SYMBOL vmlinux 0x0ea763c3 sclp_sync_wait -EXPORT_SYMBOL vmlinux 0x0eaaafbc __skb_gro_checksum_complete EXPORT_SYMBOL vmlinux 0x0eab56fa __kfifo_max_r +EXPORT_SYMBOL vmlinux 0x0ead9002 dquot_initialize +EXPORT_SYMBOL vmlinux 0x0eb52e53 kill_pid EXPORT_SYMBOL vmlinux 0x0eb6eb87 add_taint -EXPORT_SYMBOL vmlinux 0x0ec206f3 devm_kvasprintf EXPORT_SYMBOL vmlinux 0x0ee61a9b airq_iv_free -EXPORT_SYMBOL vmlinux 0x0ef9cfae tty_port_close_end -EXPORT_SYMBOL vmlinux 0x0f01c5ab clean_bdev_aliases +EXPORT_SYMBOL vmlinux 0x0ee763cb deactivate_super +EXPORT_SYMBOL vmlinux 0x0eed8f53 pcie_get_readrq +EXPORT_SYMBOL vmlinux 0x0efaf93d kmem_cache_alloc_bulk +EXPORT_SYMBOL vmlinux 0x0efb73a5 netif_set_xps_queue +EXPORT_SYMBOL vmlinux 0x0f026bb7 rdmacg_try_charge EXPORT_SYMBOL vmlinux 0x0f09cc34 schedule_timeout_killable -EXPORT_SYMBOL vmlinux 0x0f0fadbf napi_build_skb -EXPORT_SYMBOL vmlinux 0x0f230383 ccw_device_get_ciw -EXPORT_SYMBOL vmlinux 0x0f4d0002 eth_gro_complete +EXPORT_SYMBOL vmlinux 0x0f1a3573 dev_mc_del +EXPORT_SYMBOL vmlinux 0x0f1b6e43 sock_create_lite +EXPORT_SYMBOL vmlinux 0x0f23ab62 inet_stream_ops +EXPORT_SYMBOL vmlinux 0x0f3ed2cf sync_blockdev EXPORT_SYMBOL vmlinux 0x0f59acca __kernel_fpu_end -EXPORT_SYMBOL vmlinux 0x0f7aed20 jbd2_journal_update_sb_errno EXPORT_SYMBOL vmlinux 0x0f86f560 kthread_delayed_work_timer_fn +EXPORT_SYMBOL vmlinux 0x0f8c5a48 d_exact_alias EXPORT_SYMBOL vmlinux 0x0f8e2e5c security_binder_transfer_binder EXPORT_SYMBOL vmlinux 0x0f8ee51e ZSTD_resetDStream -EXPORT_SYMBOL vmlinux 0x0f906ec5 thaw_bdev -EXPORT_SYMBOL vmlinux 0x0f9dd5b4 bioset_init_from_src -EXPORT_SYMBOL vmlinux 0x0fa7d477 sk_dst_check +EXPORT_SYMBOL vmlinux 0x0fa0127f __sk_mem_reduce_allocated +EXPORT_SYMBOL vmlinux 0x0fa5858c param_get_charp +EXPORT_SYMBOL vmlinux 0x0fb06e05 unmap_mapping_range +EXPORT_SYMBOL vmlinux 0x0fb2177e dquot_load_quota_sb EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 -EXPORT_SYMBOL vmlinux 0x0fb4475e xfrm_state_lookup_byaddr -EXPORT_SYMBOL vmlinux 0x0fb4d59c __inc_node_page_state -EXPORT_SYMBOL vmlinux 0x0fd17349 security_skb_classify_flow +EXPORT_SYMBOL vmlinux 0x0fc5c719 dev_mc_flush +EXPORT_SYMBOL vmlinux 0x0fc8c023 ip_sock_set_recverr EXPORT_SYMBOL vmlinux 0x0fd902db mb_cache_entry_create -EXPORT_SYMBOL vmlinux 0x0fe48e3d xp_can_alloc -EXPORT_SYMBOL vmlinux 0x0ffa8c8a ___pskb_trim +EXPORT_SYMBOL vmlinux 0x0ff5da35 xfrm_alloc_spi EXPORT_SYMBOL vmlinux 0x0ffc9609 ap_recv EXPORT_SYMBOL vmlinux 0x0fff5afc time64_to_tm -EXPORT_SYMBOL vmlinux 0x100c92b4 skb_tx_error EXPORT_SYMBOL vmlinux 0x10112f05 ZSTD_DStreamInSize +EXPORT_SYMBOL vmlinux 0x1023c3ca blackhole_netdev +EXPORT_SYMBOL vmlinux 0x102eef5e security_inet_conn_established EXPORT_SYMBOL vmlinux 0x1035c7c2 __release_region EXPORT_SYMBOL vmlinux 0x103bafd6 down_read -EXPORT_SYMBOL vmlinux 0x103cfbed cdrom_dummy_generic_packet -EXPORT_SYMBOL vmlinux 0x1046a915 sync_filesystem +EXPORT_SYMBOL vmlinux 0x103f9c28 dns_query EXPORT_SYMBOL vmlinux 0x10497616 memweight -EXPORT_SYMBOL vmlinux 0x104d035e dev_addr_add -EXPORT_SYMBOL vmlinux 0x104e8942 seq_file_path -EXPORT_SYMBOL vmlinux 0x10535f60 qdisc_reset EXPORT_SYMBOL vmlinux 0x105ad8e9 kobject_get_unless_zero EXPORT_SYMBOL vmlinux 0x1068004b gf128mul_bbe -EXPORT_SYMBOL vmlinux 0x106ef8a3 write_dirty_buffer EXPORT_SYMBOL vmlinux 0x10776fb9 xa_extract -EXPORT_SYMBOL vmlinux 0x107a88d8 xfrm_state_flush EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd -EXPORT_SYMBOL vmlinux 0x10ab459e __xfrm_init_state +EXPORT_SYMBOL vmlinux 0x1085f47a sock_alloc_file +EXPORT_SYMBOL vmlinux 0x10894e53 sync_inodes_sb +EXPORT_SYMBOL vmlinux 0x10a9e2cb netdev_upper_dev_unlink +EXPORT_SYMBOL vmlinux 0x10b2fcb8 tc_setup_cb_reoffload EXPORT_SYMBOL vmlinux 0x10c3f57e __gnet_stats_copy_queue -EXPORT_SYMBOL vmlinux 0x10c984f9 locks_free_lock +EXPORT_SYMBOL vmlinux 0x10cba526 drop_super_exclusive EXPORT_SYMBOL vmlinux 0x10d9f885 scsi_sense_desc_find -EXPORT_SYMBOL vmlinux 0x10db8ab4 filemap_page_mkwrite +EXPORT_SYMBOL vmlinux 0x10e548b6 kill_fasync EXPORT_SYMBOL vmlinux 0x10e6f74a free_contig_range -EXPORT_SYMBOL vmlinux 0x10ecd5ee blk_rq_map_user EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype EXPORT_SYMBOL vmlinux 0x112121f7 __traceiter_s390_cio_chsc -EXPORT_SYMBOL vmlinux 0x11363b08 datagram_poll -EXPORT_SYMBOL vmlinux 0x11433459 mark_buffer_dirty -EXPORT_SYMBOL vmlinux 0x114649e3 scsi_device_lookup_by_target -EXPORT_SYMBOL vmlinux 0x1167ad54 __inode_add_bytes -EXPORT_SYMBOL vmlinux 0x1167b2ee __wait_on_buffer +EXPORT_SYMBOL vmlinux 0x1128ed75 iptun_encaps +EXPORT_SYMBOL vmlinux 0x1134e0b5 flow_indr_dev_register +EXPORT_SYMBOL vmlinux 0x113aa21f crypto_sha256_update +EXPORT_SYMBOL vmlinux 0x1145c469 skb_headers_offset_update +EXPORT_SYMBOL vmlinux 0x116c6e36 devm_pci_alloc_host_bridge +EXPORT_SYMBOL vmlinux 0x116ef29b page_pool_put_page_bulk EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init -EXPORT_SYMBOL vmlinux 0x119469db crypto_sha1_update -EXPORT_SYMBOL vmlinux 0x1196b1d9 tty_vhangup -EXPORT_SYMBOL vmlinux 0x11a3c195 finish_open -EXPORT_SYMBOL vmlinux 0x11cdeef3 pci_free_irq_vectors +EXPORT_SYMBOL vmlinux 0x11a25a7c bio_integrity_alloc +EXPORT_SYMBOL vmlinux 0x11a94789 gnet_stats_copy_basic_hw +EXPORT_SYMBOL vmlinux 0x11c8ff18 ip_fraglist_prepare EXPORT_SYMBOL vmlinux 0x11d189b1 __tracepoint_kmem_cache_alloc_node EXPORT_SYMBOL vmlinux 0x11e0ec41 dm_read_arg EXPORT_SYMBOL vmlinux 0x11e30762 chacha_block_generic -EXPORT_SYMBOL vmlinux 0x11e3dea2 napi_gro_receive -EXPORT_SYMBOL vmlinux 0x11ecd89b dquot_quota_on +EXPORT_SYMBOL vmlinux 0x11e5f67b call_netdevice_notifiers +EXPORT_SYMBOL vmlinux 0x11ec5bab d_obtain_alias EXPORT_SYMBOL vmlinux 0x11f0f083 kernel_cpumcf_avail -EXPORT_SYMBOL vmlinux 0x11f7ed4c hex_to_bin -EXPORT_SYMBOL vmlinux 0x11fb671c config_group_init -EXPORT_SYMBOL vmlinux 0x1206aa62 tcf_qevent_handle -EXPORT_SYMBOL vmlinux 0x1206ac8c scsi_is_sdev_device EXPORT_SYMBOL vmlinux 0x120b336a __rb_insert_augmented -EXPORT_SYMBOL vmlinux 0x121a36e9 km_new_mapping -EXPORT_SYMBOL vmlinux 0x121c158f udp_lib_setsockopt -EXPORT_SYMBOL vmlinux 0x1233144f kernel_accept +EXPORT_SYMBOL vmlinux 0x120f5783 generic_file_llseek_size +EXPORT_SYMBOL vmlinux 0x1215f887 dma_map_page_attrs +EXPORT_SYMBOL vmlinux 0x121c2059 nf_log_unbind_pf +EXPORT_SYMBOL vmlinux 0x1222703b security_path_unlink +EXPORT_SYMBOL vmlinux 0x12227155 dev_disable_lro +EXPORT_SYMBOL vmlinux 0x1225f2e6 tcp_add_backlog +EXPORT_SYMBOL vmlinux 0x12264ca3 pci_release_resource EXPORT_SYMBOL vmlinux 0x1239fc2d sg_copy_to_buffer -EXPORT_SYMBOL vmlinux 0x123cf36c __register_chrdev EXPORT_SYMBOL vmlinux 0x124bad4d kstrtobool EXPORT_SYMBOL vmlinux 0x1251a12e console_mode -EXPORT_SYMBOL vmlinux 0x1259e38e dcb_ieee_getapp_dscp_prio_mask_map +EXPORT_SYMBOL vmlinux 0x12620805 pcie_get_mps EXPORT_SYMBOL vmlinux 0x12641250 get_phys_clock -EXPORT_SYMBOL vmlinux 0x126fe0b6 tcp_create_openreq_child -EXPORT_SYMBOL vmlinux 0x12b45a5d xfrm4_rcv +EXPORT_SYMBOL vmlinux 0x1275fe31 input_enable_softrepeat +EXPORT_SYMBOL vmlinux 0x12861674 __neigh_create +EXPORT_SYMBOL vmlinux 0x128ea0f8 wait_on_page_bit_killable +EXPORT_SYMBOL vmlinux 0x129af69c netlink_ack +EXPORT_SYMBOL vmlinux 0x129c6933 send_sig +EXPORT_SYMBOL vmlinux 0x12b1b989 fifo_set_limit EXPORT_SYMBOL vmlinux 0x12b75f9b kset_unregister -EXPORT_SYMBOL vmlinux 0x12c48e29 ptep_xchg_direct +EXPORT_SYMBOL vmlinux 0x12b7776c scsi_device_put +EXPORT_SYMBOL vmlinux 0x12ba4feb jbd2_journal_finish_inode_data_buffers +EXPORT_SYMBOL vmlinux 0x12bb24a9 jbd2_journal_put_journal_head EXPORT_SYMBOL vmlinux 0x12cabc89 siphash_2u64 -EXPORT_SYMBOL vmlinux 0x12e3e839 netdev_sk_get_lowest_dev -EXPORT_SYMBOL vmlinux 0x12e918cb user_path_at_empty -EXPORT_SYMBOL vmlinux 0x12ee2dbf key_validate -EXPORT_SYMBOL vmlinux 0x12f592c1 inet_frag_queue_insert +EXPORT_SYMBOL vmlinux 0x12d1c52b pcie_capability_clear_and_set_dword +EXPORT_SYMBOL vmlinux 0x12d1e3c8 dma_map_sg_attrs +EXPORT_SYMBOL vmlinux 0x12dbcc11 input_mt_assign_slots +EXPORT_SYMBOL vmlinux 0x12f2dda6 eth_header_cache_update EXPORT_SYMBOL vmlinux 0x12f6f69c fb_videomode_to_var EXPORT_SYMBOL vmlinux 0x12fe638d diag_stat_inc_norecursion -EXPORT_SYMBOL vmlinux 0x13042188 tcp_mmap +EXPORT_SYMBOL vmlinux 0x12ffdef7 writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0x130add1e mr_mfc_seq_next EXPORT_SYMBOL vmlinux 0x13110126 request_resource -EXPORT_SYMBOL vmlinux 0x131b419c pci_find_next_bus -EXPORT_SYMBOL vmlinux 0x132bee13 fscrypt_decrypt_bio -EXPORT_SYMBOL vmlinux 0x1334ca90 __mmap_lock_do_trace_acquire_returned -EXPORT_SYMBOL vmlinux 0x13451c0e xfrm_replay_seqhi EXPORT_SYMBOL vmlinux 0x134cdd34 inet_frag_rbtree_purge -EXPORT_SYMBOL vmlinux 0x135b366b trace_event_printf -EXPORT_SYMBOL vmlinux 0x135f3eca skb_coalesce_rx_frag -EXPORT_SYMBOL vmlinux 0x1366569e config_group_find_item -EXPORT_SYMBOL vmlinux 0x13698ee1 param_ops_uint -EXPORT_SYMBOL vmlinux 0x137f52f4 input_enable_softrepeat -EXPORT_SYMBOL vmlinux 0x1399a82d tcp_getsockopt -EXPORT_SYMBOL vmlinux 0x13a8b5ae set_page_dirty +EXPORT_SYMBOL vmlinux 0x138dbd8a qdisc_reset +EXPORT_SYMBOL vmlinux 0x1396ffbd scsi_remove_device +EXPORT_SYMBOL vmlinux 0x139b384a __skb_gro_checksum_complete +EXPORT_SYMBOL vmlinux 0x139c9fa2 param_get_long +EXPORT_SYMBOL vmlinux 0x13a58109 ip_mc_join_group EXPORT_SYMBOL vmlinux 0x13cead77 __SCK__tp_func_kmem_cache_alloc_node 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 0x13e5b67f dquot_load_quota_inode -EXPORT_SYMBOL vmlinux 0x13f60437 kill_pgrp -EXPORT_SYMBOL vmlinux 0x1408aa16 __set_page_dirty_no_writeback -EXPORT_SYMBOL vmlinux 0x1409b409 secure_tcpv6_ts_off -EXPORT_SYMBOL vmlinux 0x140a19ac send_sig_info -EXPORT_SYMBOL vmlinux 0x140f270f param_get_int EXPORT_SYMBOL vmlinux 0x1435c5ce __SCK__tp_func_kmalloc_node -EXPORT_SYMBOL vmlinux 0x143aa6c6 xfrm_lookup_with_ifid -EXPORT_SYMBOL vmlinux 0x143c017e register_md_cluster_operations -EXPORT_SYMBOL vmlinux 0x1446dbd8 default_qdisc_ops +EXPORT_SYMBOL vmlinux 0x1449f359 skb_kill_datagram +EXPORT_SYMBOL vmlinux 0x144f8d7a __page_cache_alloc +EXPORT_SYMBOL vmlinux 0x1452e32c generic_cont_expand_simple EXPORT_SYMBOL vmlinux 0x14605535 dma_fence_context_alloc EXPORT_SYMBOL vmlinux 0x146289b7 crc16_table -EXPORT_SYMBOL vmlinux 0x146d9c77 __scsi_print_sense -EXPORT_SYMBOL vmlinux 0x148f1c21 free_buffer_head -EXPORT_SYMBOL vmlinux 0x14b95883 pci_scan_single_device +EXPORT_SYMBOL vmlinux 0x14689639 dquot_set_dqinfo +EXPORT_SYMBOL vmlinux 0x147e2cc1 tcf_idrinfo_destroy +EXPORT_SYMBOL vmlinux 0x1480a907 __dquot_alloc_space +EXPORT_SYMBOL vmlinux 0x148d0269 tcp_peek_len +EXPORT_SYMBOL vmlinux 0x14a3b199 vmap +EXPORT_SYMBOL vmlinux 0x14aba094 end_buffer_write_sync +EXPORT_SYMBOL vmlinux 0x14b28f4e d_find_any_alias EXPORT_SYMBOL vmlinux 0x14c5e5b3 segment_warning EXPORT_SYMBOL vmlinux 0x14c67e3e tcp_tx_delay_enabled -EXPORT_SYMBOL vmlinux 0x14ece431 ip_mc_check_igmp -EXPORT_SYMBOL vmlinux 0x14f5f987 tty_name -EXPORT_SYMBOL vmlinux 0x1505f0e4 security_socket_getpeersec_dgram -EXPORT_SYMBOL vmlinux 0x1507306e __dynamic_ibdev_dbg +EXPORT_SYMBOL vmlinux 0x14d8e930 kernel_write +EXPORT_SYMBOL vmlinux 0x14e019f6 input_mt_report_pointer_emulation +EXPORT_SYMBOL vmlinux 0x14e2c811 vm_insert_page +EXPORT_SYMBOL vmlinux 0x14e50c5d bio_copy_data_iter +EXPORT_SYMBOL vmlinux 0x1500969a ip6_fraglist_init EXPORT_SYMBOL vmlinux 0x150983e1 ZSTD_DStreamOutSize +EXPORT_SYMBOL vmlinux 0x15126a26 __napi_schedule EXPORT_SYMBOL vmlinux 0x151f4898 schedule_timeout_uninterruptible EXPORT_SYMBOL vmlinux 0x1526b301 unix_tot_inflight -EXPORT_SYMBOL vmlinux 0x152b0cec t10_pi_type3_ip +EXPORT_SYMBOL vmlinux 0x152fdbad param_get_string EXPORT_SYMBOL vmlinux 0x1535c5a3 radix_tree_delete_item +EXPORT_SYMBOL vmlinux 0x1547819c unregister_mii_tstamp_controller EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy -EXPORT_SYMBOL vmlinux 0x15692112 sock_i_uid +EXPORT_SYMBOL vmlinux 0x154fc936 eth_validate_addr +EXPORT_SYMBOL vmlinux 0x15563754 pci_msi_vec_count +EXPORT_SYMBOL vmlinux 0x1563c9b9 rt6_lookup EXPORT_SYMBOL vmlinux 0x156f00f3 sg_pcopy_from_buffer -EXPORT_SYMBOL vmlinux 0x1571f942 param_get_short -EXPORT_SYMBOL vmlinux 0x1576be58 __skb_warn_lro_forwarding -EXPORT_SYMBOL vmlinux 0x15894a88 tty_port_alloc_xmit_buf -EXPORT_SYMBOL vmlinux 0x159ee655 __devm_request_region -EXPORT_SYMBOL vmlinux 0x15b04b1d lookup_one +EXPORT_SYMBOL vmlinux 0x15758981 ip_route_input_noref +EXPORT_SYMBOL vmlinux 0x158fe21b scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x15b300e7 key_alloc EXPORT_SYMBOL vmlinux 0x15b49bac vscnprintf EXPORT_SYMBOL vmlinux 0x15bafe29 unregister_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x15bdaad3 tcf_em_tree_dump EXPORT_SYMBOL vmlinux 0x15bed7a5 LZ4_decompress_safe_partial EXPORT_SYMBOL vmlinux 0x15d85a57 down_trylock -EXPORT_SYMBOL vmlinux 0x15f80a77 blk_rq_unmap_user -EXPORT_SYMBOL vmlinux 0x160b9f2b param_get_hexint +EXPORT_SYMBOL vmlinux 0x15dadae5 netdev_class_create_file_ns +EXPORT_SYMBOL vmlinux 0x1601a610 ip6_dst_alloc +EXPORT_SYMBOL vmlinux 0x16073e02 fscrypt_fname_disk_to_usr EXPORT_SYMBOL vmlinux 0x162893fd hashlen_string +EXPORT_SYMBOL vmlinux 0x162badad sock_setsockopt EXPORT_SYMBOL vmlinux 0x1632bc21 kvasprintf_const -EXPORT_SYMBOL vmlinux 0x163b1384 dma_unmap_resource -EXPORT_SYMBOL vmlinux 0x163d7377 sk_stop_timer_sync EXPORT_SYMBOL vmlinux 0x165d15e2 down_interruptible -EXPORT_SYMBOL vmlinux 0x166c5377 locks_delete_block -EXPORT_SYMBOL vmlinux 0x167ea22c fget_raw -EXPORT_SYMBOL vmlinux 0x16947858 nobh_writepage -EXPORT_SYMBOL vmlinux 0x16aa9700 blk_mq_delay_run_hw_queues -EXPORT_SYMBOL vmlinux 0x16cc2c98 dev_get_stats -EXPORT_SYMBOL vmlinux 0x16cfa6b1 d_obtain_alias -EXPORT_SYMBOL vmlinux 0x16da4090 neigh_seq_stop +EXPORT_SYMBOL vmlinux 0x166fa364 do_SAK +EXPORT_SYMBOL vmlinux 0x1677bc03 seq_open_private +EXPORT_SYMBOL vmlinux 0x167f4854 default_qdisc_ops +EXPORT_SYMBOL vmlinux 0x167f81a4 inode_get_bytes +EXPORT_SYMBOL vmlinux 0x16bf2c75 filp_open +EXPORT_SYMBOL vmlinux 0x16c794a7 proto_unregister +EXPORT_SYMBOL vmlinux 0x16dbe749 pci_resize_resource +EXPORT_SYMBOL vmlinux 0x16e0dba1 get_task_cred EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait -EXPORT_SYMBOL vmlinux 0x1703b584 security_sb_clone_mnt_opts -EXPORT_SYMBOL vmlinux 0x170a66b1 input_reset_device -EXPORT_SYMBOL vmlinux 0x1713d118 starget_for_each_device -EXPORT_SYMBOL vmlinux 0x173411aa scsi_dma_map -EXPORT_SYMBOL vmlinux 0x17394b53 param_set_uint -EXPORT_SYMBOL vmlinux 0x173daa62 pin_user_pages_remote -EXPORT_SYMBOL vmlinux 0x1750d2d9 nf_log_unset -EXPORT_SYMBOL vmlinux 0x177ba948 touch_buffer -EXPORT_SYMBOL vmlinux 0x178524a3 gnet_stats_copy_queue -EXPORT_SYMBOL vmlinux 0x17a23e82 inet_get_local_port_range -EXPORT_SYMBOL vmlinux 0x17b2b390 dev_remove_offload -EXPORT_SYMBOL vmlinux 0x17f298ef dev_change_proto_down +EXPORT_SYMBOL vmlinux 0x16fa0790 sk_net_capable +EXPORT_SYMBOL vmlinux 0x17109e21 generic_writepages +EXPORT_SYMBOL vmlinux 0x175a6067 request_key_tag +EXPORT_SYMBOL vmlinux 0x178e03a3 fsync_bdev +EXPORT_SYMBOL vmlinux 0x17b40dbd bioset_init_from_src +EXPORT_SYMBOL vmlinux 0x17bc23b7 scsi_unblock_requests +EXPORT_SYMBOL vmlinux 0x17dd6646 bdev_check_media_change +EXPORT_SYMBOL vmlinux 0x18142f77 sock_init_data +EXPORT_SYMBOL vmlinux 0x18181a2f sock_no_sendmsg_locked +EXPORT_SYMBOL vmlinux 0x182ed47d simple_recursive_removal EXPORT_SYMBOL vmlinux 0x18345b8e __bitmap_replace -EXPORT_SYMBOL vmlinux 0x184326e5 __set_page_dirty_buffers -EXPORT_SYMBOL vmlinux 0x184db97f scsi_ioctl -EXPORT_SYMBOL vmlinux 0x1858a46c vlan_dev_real_dev -EXPORT_SYMBOL vmlinux 0x18691ae7 __sk_queue_drop_skb +EXPORT_SYMBOL vmlinux 0x185dda81 security_sb_mnt_opts_compat +EXPORT_SYMBOL vmlinux 0x187b2361 rtnl_unicast EXPORT_SYMBOL vmlinux 0x188ea314 jiffies_to_timespec64 EXPORT_SYMBOL vmlinux 0x189b6bac memory_read_from_buffer EXPORT_SYMBOL vmlinux 0x18b87cca sclp_deactivate -EXPORT_SYMBOL vmlinux 0x18c1e1b2 skb_copy_header +EXPORT_SYMBOL vmlinux 0x18c1e531 iov_iter_advance +EXPORT_SYMBOL vmlinux 0x18d95678 ilookup EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start -EXPORT_SYMBOL vmlinux 0x18ee6e4d tcf_block_get -EXPORT_SYMBOL vmlinux 0x19038eec vfs_fsync -EXPORT_SYMBOL vmlinux 0x1911e414 ipv4_specific -EXPORT_SYMBOL vmlinux 0x1956a671 proc_create_data -EXPORT_SYMBOL vmlinux 0x1958de4f iget_failed -EXPORT_SYMBOL vmlinux 0x197a51d2 netpoll_setup +EXPORT_SYMBOL vmlinux 0x18ee104e skb_copy_header +EXPORT_SYMBOL vmlinux 0x18f780fa bioset_init +EXPORT_SYMBOL vmlinux 0x18f984a4 blk_queue_update_dma_alignment +EXPORT_SYMBOL vmlinux 0x19005bcf pci_write_config_word +EXPORT_SYMBOL vmlinux 0x190ca163 sock_no_listen +EXPORT_SYMBOL vmlinux 0x192c5782 xfrm_parse_spi +EXPORT_SYMBOL vmlinux 0x194bb2bb udp6_set_csum EXPORT_SYMBOL vmlinux 0x1984d421 out_of_line_wait_on_bit EXPORT_SYMBOL vmlinux 0x198620d7 security_add_mnt_opt -EXPORT_SYMBOL vmlinux 0x198be935 bio_uninit EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp -EXPORT_SYMBOL vmlinux 0x19a3d498 sk_stop_timer -EXPORT_SYMBOL vmlinux 0x19ab6713 stream_open -EXPORT_SYMBOL vmlinux 0x19af0857 pskb_extract +EXPORT_SYMBOL vmlinux 0x19a9e040 get_ipc_ns_exported +EXPORT_SYMBOL vmlinux 0x19b46029 dump_page +EXPORT_SYMBOL vmlinux 0x19b9924c __vlan_find_dev_deep_rcu EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec -EXPORT_SYMBOL vmlinux 0x19e131b8 bio_chain -EXPORT_SYMBOL vmlinux 0x19f9eea1 security_sb_mnt_opts_compat -EXPORT_SYMBOL vmlinux 0x1a033430 pcie_capability_write_word +EXPORT_SYMBOL vmlinux 0x19c7535c __mmap_lock_do_trace_acquire_returned +EXPORT_SYMBOL vmlinux 0x1a00eaab padata_alloc +EXPORT_SYMBOL vmlinux 0x1a022b67 netlink_rcv_skb EXPORT_SYMBOL vmlinux 0x1a08d2ba VMALLOC_START -EXPORT_SYMBOL vmlinux 0x1a205a13 tcf_get_next_proto -EXPORT_SYMBOL vmlinux 0x1a3d2315 drop_super -EXPORT_SYMBOL vmlinux 0x1a5ad385 shrink_dcache_parent -EXPORT_SYMBOL vmlinux 0x1a651676 __getblk_gfp -EXPORT_SYMBOL vmlinux 0x1a679c97 dm_kcopyd_zero -EXPORT_SYMBOL vmlinux 0x1a95c293 rtnl_link_get_net +EXPORT_SYMBOL vmlinux 0x1a0f6282 sk_stop_timer_sync +EXPORT_SYMBOL vmlinux 0x1a18e0b2 filemap_fdatawait_range +EXPORT_SYMBOL vmlinux 0x1a1f1357 flush_signals +EXPORT_SYMBOL vmlinux 0x1a2181d0 tcp_seq_next +EXPORT_SYMBOL vmlinux 0x1a240660 blk_mq_tagset_busy_iter +EXPORT_SYMBOL vmlinux 0x1a28cbb6 blk_get_queue +EXPORT_SYMBOL vmlinux 0x1a623dcd vlan_filter_drop_vids +EXPORT_SYMBOL vmlinux 0x1a758285 inet_dgram_ops EXPORT_SYMBOL vmlinux 0x1a9a433c prandom_u32_state -EXPORT_SYMBOL vmlinux 0x1aa79479 unpin_user_page EXPORT_SYMBOL vmlinux 0x1aa7fb28 gen_pool_best_fit -EXPORT_SYMBOL vmlinux 0x1acbeba9 from_kuid_munged +EXPORT_SYMBOL vmlinux 0x1ac59c9e ipv6_find_hdr +EXPORT_SYMBOL vmlinux 0x1ae94026 inode_set_flags +EXPORT_SYMBOL vmlinux 0x1afc37d4 PDE_DATA +EXPORT_SYMBOL vmlinux 0x1afce77a input_event EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist -EXPORT_SYMBOL vmlinux 0x1b05a751 blk_queue_logical_block_size -EXPORT_SYMBOL vmlinux 0x1b06ed55 xp_free -EXPORT_SYMBOL vmlinux 0x1b0774e8 tty_devnum -EXPORT_SYMBOL vmlinux 0x1b0f6d35 zpci_report_error -EXPORT_SYMBOL vmlinux 0x1b60fbe3 pci_ep_cfs_remove_epc_group +EXPORT_SYMBOL vmlinux 0x1b140c42 sock_create +EXPORT_SYMBOL vmlinux 0x1b2a028d prepare_kernel_cred +EXPORT_SYMBOL vmlinux 0x1b2bf65b kernel_param_lock +EXPORT_SYMBOL vmlinux 0x1b2c6d78 dma_set_coherent_mask +EXPORT_SYMBOL vmlinux 0x1b30325a tcp_sock_set_keepintvl +EXPORT_SYMBOL vmlinux 0x1b387d45 remove_arg_zero +EXPORT_SYMBOL vmlinux 0x1b503242 scsi_eh_prep_cmnd +EXPORT_SYMBOL vmlinux 0x1b5b53ac copy_page_to_iter +EXPORT_SYMBOL vmlinux 0x1b5f1ec9 pci_enable_device_mem EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton EXPORT_SYMBOL vmlinux 0x1b777357 rdmacg_unregister_device -EXPORT_SYMBOL vmlinux 0x1b7abcbb ccw_device_set_options -EXPORT_SYMBOL vmlinux 0x1b8900a7 xfrm_alloc_spi -EXPORT_SYMBOL vmlinux 0x1b96195e pagecache_write_end +EXPORT_SYMBOL vmlinux 0x1b89b239 flow_rule_match_cvlan +EXPORT_SYMBOL vmlinux 0x1b9fae44 dev_deactivate EXPORT_SYMBOL vmlinux 0x1ba04458 sg_pcopy_to_buffer EXPORT_SYMBOL vmlinux 0x1bb51249 tcp_have_smc -EXPORT_SYMBOL vmlinux 0x1bcffe22 flow_rule_match_icmp -EXPORT_SYMBOL vmlinux 0x1bdef50c pci_iomap_wc_range -EXPORT_SYMBOL vmlinux 0x1c0759b7 ip_setsockopt -EXPORT_SYMBOL vmlinux 0x1c14d293 eth_header_cache_update -EXPORT_SYMBOL vmlinux 0x1c53a2e7 xfrm_state_insert +EXPORT_SYMBOL vmlinux 0x1bb51ba1 pci_prepare_to_sleep +EXPORT_SYMBOL vmlinux 0x1bbccb82 inet6_add_protocol +EXPORT_SYMBOL vmlinux 0x1bc5c61f inet_twsk_deschedule_put +EXPORT_SYMBOL vmlinux 0x1bd8c2f1 ping_prot +EXPORT_SYMBOL vmlinux 0x1bddaf03 pci_bus_alloc_resource +EXPORT_SYMBOL vmlinux 0x1be27129 vfs_fileattr_get +EXPORT_SYMBOL vmlinux 0x1be96ceb pci_enable_device_io +EXPORT_SYMBOL vmlinux 0x1bf6a8ca udp_lib_getsockopt +EXPORT_SYMBOL vmlinux 0x1bfdc35f dev_change_carrier +EXPORT_SYMBOL vmlinux 0x1c013d96 pcie_capability_write_word +EXPORT_SYMBOL vmlinux 0x1c3c085f param_set_hexint +EXPORT_SYMBOL vmlinux 0x1c423b84 netif_set_real_num_queues +EXPORT_SYMBOL vmlinux 0x1c4794c8 neigh_parms_release +EXPORT_SYMBOL vmlinux 0x1c51c69a path_put EXPORT_SYMBOL vmlinux 0x1c65d1e3 ioremap_wt EXPORT_SYMBOL vmlinux 0x1c80de9c ip_send_check +EXPORT_SYMBOL vmlinux 0x1c944ff0 pci_bus_add_devices +EXPORT_SYMBOL vmlinux 0x1cab0297 tty_port_put EXPORT_SYMBOL vmlinux 0x1cbfb123 hdmi_infoframe_pack_only EXPORT_SYMBOL vmlinux 0x1cc11154 __SCK__tp_func_mmap_lock_start_locking -EXPORT_SYMBOL vmlinux 0x1cdd5bb3 pci_pme_capable -EXPORT_SYMBOL vmlinux 0x1cf244f3 dcb_ieee_delapp +EXPORT_SYMBOL vmlinux 0x1cd3eb4b sync_filesystem +EXPORT_SYMBOL vmlinux 0x1cf6a9d5 scsi_dma_unmap +EXPORT_SYMBOL vmlinux 0x1d02c33d reuseport_select_sock EXPORT_SYMBOL vmlinux 0x1d216a6b mutex_lock_killable -EXPORT_SYMBOL vmlinux 0x1d28f360 simple_symlink_inode_operations -EXPORT_SYMBOL vmlinux 0x1d2924b4 generic_write_checks +EXPORT_SYMBOL vmlinux 0x1d29247d xp_set_rxq_info EXPORT_SYMBOL vmlinux 0x1d2d6d15 wait_iff_congested -EXPORT_SYMBOL vmlinux 0x1d3d07fe vlan_vid_del +EXPORT_SYMBOL vmlinux 0x1d2e83ce inet_recvmsg EXPORT_SYMBOL vmlinux 0x1d3e2765 iucv_path_quiesce +EXPORT_SYMBOL vmlinux 0x1d414909 __set_page_dirty_nobuffers EXPORT_SYMBOL vmlinux 0x1d449b90 dfltcc_can_deflate -EXPORT_SYMBOL vmlinux 0x1d4fc5fc blk_queue_update_dma_alignment -EXPORT_SYMBOL vmlinux 0x1d550d80 migrate_page_move_mapping +EXPORT_SYMBOL vmlinux 0x1d46db63 genlmsg_multicast_allns EXPORT_SYMBOL vmlinux 0x1d5cedae __tracepoint_kfree -EXPORT_SYMBOL vmlinux 0x1d608c29 ipv6_dev_find -EXPORT_SYMBOL vmlinux 0x1d93ad9a put_cmsg_scm_timestamping64 +EXPORT_SYMBOL vmlinux 0x1d7bec22 netdev_master_upper_dev_link +EXPORT_SYMBOL vmlinux 0x1d9ccec0 reuseport_add_sock EXPORT_SYMBOL vmlinux 0x1dadd920 __kmalloc -EXPORT_SYMBOL vmlinux 0x1dafa4a1 d_make_root -EXPORT_SYMBOL vmlinux 0x1dbac885 dma_resv_add_shared_fence -EXPORT_SYMBOL vmlinux 0x1dc13a5d padata_do_serial -EXPORT_SYMBOL vmlinux 0x1dc6329a request_firmware_nowait EXPORT_SYMBOL vmlinux 0x1dc6c93b lookup_user_key EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap -EXPORT_SYMBOL vmlinux 0x1ddd643c flow_hash_from_keys EXPORT_SYMBOL vmlinux 0x1de4ccb2 get_sg_io_hdr EXPORT_SYMBOL vmlinux 0x1de5127e kstrtou16_from_user -EXPORT_SYMBOL vmlinux 0x1e01be42 sock_cmsg_send +EXPORT_SYMBOL vmlinux 0x1ded0a71 io_uring_get_socket +EXPORT_SYMBOL vmlinux 0x1df6bb42 ww_mutex_lock EXPORT_SYMBOL vmlinux 0x1e0a0c24 mod_timer_pending -EXPORT_SYMBOL vmlinux 0x1e16347c gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0x1e0c37ce md_write_start EXPORT_SYMBOL vmlinux 0x1e1e140e ns_to_timespec64 -EXPORT_SYMBOL vmlinux 0x1e1e8fc8 vm_iomap_memory -EXPORT_SYMBOL vmlinux 0x1e25c4c7 cdev_alloc -EXPORT_SYMBOL vmlinux 0x1e2ced7f jbd2_journal_start_commit -EXPORT_SYMBOL vmlinux 0x1e2df61e dentry_open -EXPORT_SYMBOL vmlinux 0x1e3d6010 param_set_int -EXPORT_SYMBOL vmlinux 0x1e45a977 gnet_stats_copy_rate_est -EXPORT_SYMBOL vmlinux 0x1e5a919c pci_restore_state -EXPORT_SYMBOL vmlinux 0x1e5ab60a __tty_insert_flip_char +EXPORT_SYMBOL vmlinux 0x1e27bef4 tc_setup_flow_action EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr -EXPORT_SYMBOL vmlinux 0x1e6dfede nf_ip_checksum +EXPORT_SYMBOL vmlinux 0x1e77c4a3 con_copy_unimap +EXPORT_SYMBOL vmlinux 0x1e8733ea __scsi_execute EXPORT_SYMBOL vmlinux 0x1e8a161a crc_t10dif_generic EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu -EXPORT_SYMBOL vmlinux 0x1ea88861 flow_rule_match_basic -EXPORT_SYMBOL vmlinux 0x1eb2d591 eth_header_cache +EXPORT_SYMBOL vmlinux 0x1ebcd2f0 gnet_stats_finish_copy +EXPORT_SYMBOL vmlinux 0x1ec262b0 bio_put EXPORT_SYMBOL vmlinux 0x1ec7f394 skb_flow_dissector_init -EXPORT_SYMBOL vmlinux 0x1ec84822 bio_kmalloc EXPORT_SYMBOL vmlinux 0x1ed7eb60 __sg_free_table EXPORT_SYMBOL vmlinux 0x1edb69d6 ktime_get_raw_ts64 -EXPORT_SYMBOL vmlinux 0x1eddcb83 write_cache_pages -EXPORT_SYMBOL vmlinux 0x1eec27b5 pcie_set_mps -EXPORT_SYMBOL vmlinux 0x1f0a3235 security_unix_may_send -EXPORT_SYMBOL vmlinux 0x1f151a4a param_set_short -EXPORT_SYMBOL vmlinux 0x1f1a7da9 current_in_userns -EXPORT_SYMBOL vmlinux 0x1f1fa6e0 fscrypt_fname_disk_to_usr -EXPORT_SYMBOL vmlinux 0x1f3b91c3 poll_freewait -EXPORT_SYMBOL vmlinux 0x1f55edee __blkdev_issue_zeroout -EXPORT_SYMBOL vmlinux 0x1f78480f rt_dst_alloc +EXPORT_SYMBOL vmlinux 0x1eeada9f udp_lib_unhash +EXPORT_SYMBOL vmlinux 0x1efe25b3 __ip_options_compile +EXPORT_SYMBOL vmlinux 0x1f6e6fdc devm_gen_pool_create +EXPORT_SYMBOL vmlinux 0x1f8a2736 bio_clone_fast +EXPORT_SYMBOL vmlinux 0x1f8ac716 rtnl_link_get_net +EXPORT_SYMBOL vmlinux 0x1f8ae2ec devm_ioremap_wc EXPORT_SYMBOL vmlinux 0x1f95657b mempool_resize -EXPORT_SYMBOL vmlinux 0x1f991cb6 devm_alloc_etherdev_mqs EXPORT_SYMBOL vmlinux 0x1fb27078 tcw_get_tccb -EXPORT_SYMBOL vmlinux 0x1fb429a1 __page_frag_cache_drain -EXPORT_SYMBOL vmlinux 0x1fb57227 sock_edemux EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio -EXPORT_SYMBOL vmlinux 0x1fbf2b57 posix_acl_update_mode -EXPORT_SYMBOL vmlinux 0x1fc29821 unregister_md_personality -EXPORT_SYMBOL vmlinux 0x1fc57ef2 ip6_dst_alloc EXPORT_SYMBOL vmlinux 0x1fcb720d tcp_sockets_allocated EXPORT_SYMBOL vmlinux 0x1fda8755 __memset32 -EXPORT_SYMBOL vmlinux 0x1fdbf501 icmp6_send -EXPORT_SYMBOL vmlinux 0x1fe62ae2 fb_firmware_edid -EXPORT_SYMBOL vmlinux 0x1fe7ce07 free_task -EXPORT_SYMBOL vmlinux 0x1ff39d29 vm_mmap +EXPORT_SYMBOL vmlinux 0x1ff4fc10 dquot_mark_dquot_dirty EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul +EXPORT_SYMBOL vmlinux 0x20024ec5 pci_bus_size_bridges EXPORT_SYMBOL vmlinux 0x20050ce6 unix_gc_lock +EXPORT_SYMBOL vmlinux 0x2008ccd6 netdev_pick_tx EXPORT_SYMBOL vmlinux 0x200b2041 in6addr_any EXPORT_SYMBOL vmlinux 0x2014a246 __siphash_unaligned -EXPORT_SYMBOL vmlinux 0x201bca82 cad_pid -EXPORT_SYMBOL vmlinux 0x204a71a1 get_ccwdev_by_busid -EXPORT_SYMBOL vmlinux 0x204ac6e4 page_pool_alloc_pages +EXPORT_SYMBOL vmlinux 0x2019cf96 dma_resv_add_shared_fence EXPORT_SYMBOL vmlinux 0x204af5b5 netlbl_audit_start EXPORT_SYMBOL vmlinux 0x204c19f5 tcp_alloc_md5sig_pool EXPORT_SYMBOL vmlinux 0x204c5067 scsi_dev_info_add_list +EXPORT_SYMBOL vmlinux 0x2055ea38 sched_autogroup_create_attach EXPORT_SYMBOL vmlinux 0x20592c6f arch_write_lock_wait -EXPORT_SYMBOL vmlinux 0x20681c23 inet_frag_destroy +EXPORT_SYMBOL vmlinux 0x206bdef7 vfs_symlink +EXPORT_SYMBOL vmlinux 0x207056ed pci_bus_write_config_dword EXPORT_SYMBOL vmlinux 0x208d150a set_security_override_from_ctx EXPORT_SYMBOL vmlinux 0x20973b94 segment_unload EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data -EXPORT_SYMBOL vmlinux 0x20b2fc8a touch_atime +EXPORT_SYMBOL vmlinux 0x20b5f8bd flow_rule_match_enc_opts +EXPORT_SYMBOL vmlinux 0x20bd770d param_set_ushort EXPORT_SYMBOL vmlinux 0x20c587cc utf8nagemin -EXPORT_SYMBOL vmlinux 0x20c8466d inet_accept -EXPORT_SYMBOL vmlinux 0x20c9e3c6 ll_rw_block -EXPORT_SYMBOL vmlinux 0x20c9f951 km_state_expired -EXPORT_SYMBOL vmlinux 0x20d2c567 d_genocide EXPORT_SYMBOL vmlinux 0x20d65e40 fb_find_nearest_mode +EXPORT_SYMBOL vmlinux 0x20e8f8bf simple_release_fs EXPORT_SYMBOL vmlinux 0x20ee076e itcw_add_tidaw -EXPORT_SYMBOL vmlinux 0x20fadbb2 ap_send_online_uevent +EXPORT_SYMBOL vmlinux 0x20ee61a5 dev_get_port_parent_id +EXPORT_SYMBOL vmlinux 0x20fccb7b mark_page_accessed EXPORT_SYMBOL vmlinux 0x21059cd7 audit_log_task_context -EXPORT_SYMBOL vmlinux 0x213d115c iov_iter_advance -EXPORT_SYMBOL vmlinux 0x2146599d xfrm6_protocol_deregister -EXPORT_SYMBOL vmlinux 0x214685ed ilookup -EXPORT_SYMBOL vmlinux 0x215f7d37 thread_group_exited +EXPORT_SYMBOL vmlinux 0x210844dc dev_uc_flush +EXPORT_SYMBOL vmlinux 0x2119acf5 generic_iommu_put_resv_regions +EXPORT_SYMBOL vmlinux 0x212ba9f4 genl_notify +EXPORT_SYMBOL vmlinux 0x2148ce11 fault_in_iov_iter_readable +EXPORT_SYMBOL vmlinux 0x216446ab tcp_initialize_rcv_mss +EXPORT_SYMBOL vmlinux 0x2170b660 dev_set_group +EXPORT_SYMBOL vmlinux 0x2181b275 page_cache_next_miss +EXPORT_SYMBOL vmlinux 0x2185e8e8 d_instantiate_new +EXPORT_SYMBOL vmlinux 0x21872cea dquot_resume +EXPORT_SYMBOL vmlinux 0x218c5478 always_delete_dentry EXPORT_SYMBOL vmlinux 0x218e600b pci_add_resource_offset +EXPORT_SYMBOL vmlinux 0x21b7329a eth_mac_addr +EXPORT_SYMBOL vmlinux 0x21bb16e0 blk_integrity_register EXPORT_SYMBOL vmlinux 0x21bdb523 errseq_check_and_advance EXPORT_SYMBOL vmlinux 0x21be37e1 hdmi_avi_infoframe_check -EXPORT_SYMBOL vmlinux 0x21d1ff24 locks_remove_posix -EXPORT_SYMBOL vmlinux 0x21d23c99 vm_map_pages_zero +EXPORT_SYMBOL vmlinux 0x21c6ed61 keyring_clear EXPORT_SYMBOL vmlinux 0x21e13cb3 inet_peer_xrlim_allow -EXPORT_SYMBOL vmlinux 0x21e2c29a fs_param_is_enum -EXPORT_SYMBOL vmlinux 0x21f2f759 zpool_register_driver EXPORT_SYMBOL vmlinux 0x2210642c sclp_ap_deconfigure +EXPORT_SYMBOL vmlinux 0x22154310 __quota_error EXPORT_SYMBOL vmlinux 0x221567e6 __traceiter_s390_cio_tpi -EXPORT_SYMBOL vmlinux 0x221a3e67 seq_put_decimal_ull -EXPORT_SYMBOL vmlinux 0x2225afe3 lock_rename EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq -EXPORT_SYMBOL vmlinux 0x2248e2fd PDE_DATA -EXPORT_SYMBOL vmlinux 0x224d0b1b __sk_dst_check -EXPORT_SYMBOL vmlinux 0x2273c69e flow_block_cb_setup_simple -EXPORT_SYMBOL vmlinux 0x227f71f4 __post_watch_notification -EXPORT_SYMBOL vmlinux 0x22835ccc vfs_parse_fs_param -EXPORT_SYMBOL vmlinux 0x22919de0 scm_detach_fds +EXPORT_SYMBOL vmlinux 0x223ba871 xfrm_find_acq_byseq +EXPORT_SYMBOL vmlinux 0x2268f8c0 generic_pipe_buf_try_steal +EXPORT_SYMBOL vmlinux 0x226a67d7 fscrypt_ioctl_get_policy +EXPORT_SYMBOL vmlinux 0x229ab14d pci_bus_write_config_word +EXPORT_SYMBOL vmlinux 0x229f6cb5 fib6_info_hw_flags_set +EXPORT_SYMBOL vmlinux 0x22a535f9 jbd2_fc_release_bufs EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound +EXPORT_SYMBOL vmlinux 0x22b7c2ce register_md_personality +EXPORT_SYMBOL vmlinux 0x22bac0a2 skb_eth_push +EXPORT_SYMBOL vmlinux 0x22c89896 __pagevec_release EXPORT_SYMBOL vmlinux 0x22cb3831 security_cred_getsecid EXPORT_SYMBOL vmlinux 0x22dd6d51 tccb_init -EXPORT_SYMBOL vmlinux 0x2314cdae tcp_v4_md5_hash_skb -EXPORT_SYMBOL vmlinux 0x23184f8f pci_bus_type -EXPORT_SYMBOL vmlinux 0x2329dd07 udp_disconnect +EXPORT_SYMBOL vmlinux 0x2302c979 dquot_acquire +EXPORT_SYMBOL vmlinux 0x2309e67f skb_queue_head +EXPORT_SYMBOL vmlinux 0x2317d68e dma_free_attrs +EXPORT_SYMBOL vmlinux 0x231f533d nf_hook_slow_list +EXPORT_SYMBOL vmlinux 0x2344dacc sock_set_sndtimeo EXPORT_SYMBOL vmlinux 0x2364c85a tasklet_init -EXPORT_SYMBOL vmlinux 0x23656eec from_kuid EXPORT_SYMBOL vmlinux 0x236c8c64 memcpy -EXPORT_SYMBOL vmlinux 0x23742a23 dquot_load_quota_sb -EXPORT_SYMBOL vmlinux 0x2382f005 vlan_vid_add +EXPORT_SYMBOL vmlinux 0x237882d6 watchdog_register_governor +EXPORT_SYMBOL vmlinux 0x23886ea3 __task_pid_nr_ns EXPORT_SYMBOL vmlinux 0x23924a48 prepare_to_wait_event -EXPORT_SYMBOL vmlinux 0x23a8a569 _dev_info +EXPORT_SYMBOL vmlinux 0x23a94f8f sock_from_file +EXPORT_SYMBOL vmlinux 0x23b1e561 __cleancache_put_page EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path -EXPORT_SYMBOL vmlinux 0x23d46e08 fs_param_is_bool -EXPORT_SYMBOL vmlinux 0x23d6527d get_tree_bdev -EXPORT_SYMBOL vmlinux 0x23e8f4a9 tcp_enter_quickack_mode +EXPORT_SYMBOL vmlinux 0x23d73f01 kernel_param_unlock +EXPORT_SYMBOL vmlinux 0x23e70f54 register_netdevice_notifier_dev_net EXPORT_SYMBOL vmlinux 0x23ee13fd mb_cache_entry_find_first -EXPORT_SYMBOL vmlinux 0x23f59d4a seq_release_private +EXPORT_SYMBOL vmlinux 0x23fcbbba blk_mq_unique_tag EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node -EXPORT_SYMBOL vmlinux 0x24101d19 skb_free_datagram -EXPORT_SYMBOL vmlinux 0x241569c1 blkdev_issue_write_same -EXPORT_SYMBOL vmlinux 0x241c148f __hw_addr_sync_dev -EXPORT_SYMBOL vmlinux 0x241e95f0 ethtool_virtdev_set_link_ksettings +EXPORT_SYMBOL vmlinux 0x241b0c22 key_put +EXPORT_SYMBOL vmlinux 0x241cc7d0 netdev_notify_peers EXPORT_SYMBOL vmlinux 0x24212d86 __frontswap_invalidate_page -EXPORT_SYMBOL vmlinux 0x2425549b pcie_capability_clear_and_set_dword +EXPORT_SYMBOL vmlinux 0x2425c07c __scm_send EXPORT_SYMBOL vmlinux 0x242f3562 irq_subclass_register +EXPORT_SYMBOL vmlinux 0x2451b6ac param_get_int EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline -EXPORT_SYMBOL vmlinux 0x2475714e seq_read +EXPORT_SYMBOL vmlinux 0x2475c905 sk_ns_capable +EXPORT_SYMBOL vmlinux 0x2475dbd1 ethtool_notify EXPORT_SYMBOL vmlinux 0x247a3fe4 LZ4_decompress_fast_continue -EXPORT_SYMBOL vmlinux 0x24ad79ab __register_binfmt +EXPORT_SYMBOL vmlinux 0x24895dd1 lease_modify +EXPORT_SYMBOL vmlinux 0x249555b9 xfrm_policy_delete +EXPORT_SYMBOL vmlinux 0x24a54c74 dump_skip EXPORT_SYMBOL vmlinux 0x24b8528f mutex_trylock -EXPORT_SYMBOL vmlinux 0x24baa9fa kmem_cache_free_bulk EXPORT_SYMBOL vmlinux 0x24bc53b0 __traceiter_s390_cio_xsch -EXPORT_SYMBOL vmlinux 0x24ca1839 ip_check_defrag +EXPORT_SYMBOL vmlinux 0x24be5949 bh_submit_read +EXPORT_SYMBOL vmlinux 0x24c33ff9 jbd2_journal_init_inode EXPORT_SYMBOL vmlinux 0x24d273d1 add_timer -EXPORT_SYMBOL vmlinux 0x25045de5 skb_eth_pop -EXPORT_SYMBOL vmlinux 0x250769f7 iterate_supers_type -EXPORT_SYMBOL vmlinux 0x25153e02 __xfrm_decode_session +EXPORT_SYMBOL vmlinux 0x24d75d57 kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0x251519a0 release_pages +EXPORT_SYMBOL vmlinux 0x2516c046 tty_port_free_xmit_buf EXPORT_SYMBOL vmlinux 0x252332f1 __SCK__tp_func_mmap_lock_released EXPORT_SYMBOL vmlinux 0x252cf375 scsi_kmap_atomic_sg EXPORT_SYMBOL vmlinux 0x252fe7e4 down_read_interruptible +EXPORT_SYMBOL vmlinux 0x254826c9 pci_enable_device EXPORT_SYMBOL vmlinux 0x2548c032 __cpu_possible_mask -EXPORT_SYMBOL vmlinux 0x2553eb71 bdev_dax_pgoff -EXPORT_SYMBOL vmlinux 0x2565df08 genlmsg_put -EXPORT_SYMBOL vmlinux 0x25771007 bio_reset -EXPORT_SYMBOL vmlinux 0x257bc372 tcf_em_unregister EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid -EXPORT_SYMBOL vmlinux 0x2587c58b register_fib_notifier +EXPORT_SYMBOL vmlinux 0x258c8417 unregister_netdevice_queue EXPORT_SYMBOL vmlinux 0x258d2f76 net_dim_get_tx_moderation -EXPORT_SYMBOL vmlinux 0x25a9c7a6 md_integrity_add_rdev -EXPORT_SYMBOL vmlinux 0x25dada03 dma_resv_init -EXPORT_SYMBOL vmlinux 0x25e0a2f2 tty_insert_flip_string_fixed_flag -EXPORT_SYMBOL vmlinux 0x25e2697c sg_miter_next +EXPORT_SYMBOL vmlinux 0x25ad4c95 init_net +EXPORT_SYMBOL vmlinux 0x25d80341 security_task_getsecid_obj EXPORT_SYMBOL vmlinux 0x25e58a09 hdmi_avi_infoframe_init EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free EXPORT_SYMBOL vmlinux 0x25ec1b28 strlen EXPORT_SYMBOL vmlinux 0x260a095a __sg_alloc_table -EXPORT_SYMBOL vmlinux 0x261cf31f __frontswap_load -EXPORT_SYMBOL vmlinux 0x2627ab40 unload_nls +EXPORT_SYMBOL vmlinux 0x260d5c96 tty_unregister_driver +EXPORT_SYMBOL vmlinux 0x26112cda vlan_dev_real_dev EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions EXPORT_SYMBOL vmlinux 0x2641a1c6 diag224 -EXPORT_SYMBOL vmlinux 0x26505f2d pci_enable_wake -EXPORT_SYMBOL vmlinux 0x266bcae1 bio_free_pages -EXPORT_SYMBOL vmlinux 0x266da0f4 kill_anon_super -EXPORT_SYMBOL vmlinux 0x267064d9 pci_disable_device -EXPORT_SYMBOL vmlinux 0x2678e074 is_subdir +EXPORT_SYMBOL vmlinux 0x2646bdd7 tcp_enter_quickack_mode +EXPORT_SYMBOL vmlinux 0x2655158e __pci_register_driver +EXPORT_SYMBOL vmlinux 0x2664ec3f vfs_rename EXPORT_SYMBOL vmlinux 0x2688ec10 bitmap_zalloc +EXPORT_SYMBOL vmlinux 0x269e6009 flow_rule_match_ipv6_addrs EXPORT_SYMBOL vmlinux 0x26a5b938 sclp_pci_configure -EXPORT_SYMBOL vmlinux 0x26a91d4a simple_getattr -EXPORT_SYMBOL vmlinux 0x26b6d7ee dev_get_by_name_rcu -EXPORT_SYMBOL vmlinux 0x26cc0212 unregister_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x26c117ee tty_port_tty_get EXPORT_SYMBOL vmlinux 0x26e298e0 unregister_memory_notifier +EXPORT_SYMBOL vmlinux 0x26e9652c ccw_device_is_pathgroup +EXPORT_SYMBOL vmlinux 0x26edbd7f qdisc_watchdog_init_clockid +EXPORT_SYMBOL vmlinux 0x26ee3210 trace_event_printf +EXPORT_SYMBOL vmlinux 0x2703770d ip_mc_leave_group +EXPORT_SYMBOL vmlinux 0x2705f639 dev_trans_start +EXPORT_SYMBOL vmlinux 0x2709871d xfrm_policy_walk_done +EXPORT_SYMBOL vmlinux 0x270a8a5d sdev_enable_disk_events EXPORT_SYMBOL vmlinux 0x270cf88f dump_stack_lvl -EXPORT_SYMBOL vmlinux 0x27208bea xsk_tx_release +EXPORT_SYMBOL vmlinux 0x27287435 md_register_thread +EXPORT_SYMBOL vmlinux 0x2728f9f8 tcp_simple_retransmit EXPORT_SYMBOL vmlinux 0x272a8933 udp_memory_allocated EXPORT_SYMBOL vmlinux 0x2733eaf7 scsi_dev_info_list_add_keyed +EXPORT_SYMBOL vmlinux 0x27340757 dev_mc_init EXPORT_SYMBOL vmlinux 0x27479d14 param_free_charp +EXPORT_SYMBOL vmlinux 0x274e4927 __skb_checksum 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 0x2769422c ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0x2767a47d vfs_get_fsid +EXPORT_SYMBOL vmlinux 0x276a80d7 unregister_binfmt EXPORT_SYMBOL vmlinux 0x27756bc8 scsi_sanitize_inquiry_string -EXPORT_SYMBOL vmlinux 0x277ad128 generic_file_llseek +EXPORT_SYMBOL vmlinux 0x27798726 follow_pfn EXPORT_SYMBOL vmlinux 0x277d4035 gen_pool_has_addr -EXPORT_SYMBOL vmlinux 0x2781bd27 kmem_cache_size +EXPORT_SYMBOL vmlinux 0x277d82d7 tty_port_close_end EXPORT_SYMBOL vmlinux 0x2782b393 xfrm_state_walk_init EXPORT_SYMBOL vmlinux 0x27864d57 memparse -EXPORT_SYMBOL vmlinux 0x278cf880 pci_write_config_word -EXPORT_SYMBOL vmlinux 0x2799e21b generic_write_end +EXPORT_SYMBOL vmlinux 0x2794ba44 sock_no_sendpage_locked +EXPORT_SYMBOL vmlinux 0x2795cbff scsi_host_busy +EXPORT_SYMBOL vmlinux 0x2795ddc2 register_netdev EXPORT_SYMBOL vmlinux 0x27a8f51b do_wait_intr_irq +EXPORT_SYMBOL vmlinux 0x27b244df skb_copy_and_csum_bits +EXPORT_SYMBOL vmlinux 0x27b5e156 cdrom_release EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync EXPORT_SYMBOL vmlinux 0x27cdca93 pci_add_resource +EXPORT_SYMBOL vmlinux 0x27e86901 input_unregister_handler EXPORT_SYMBOL vmlinux 0x27eb9cd1 tcw_set_intrg -EXPORT_SYMBOL vmlinux 0x27ed2f5a pci_iomap -EXPORT_SYMBOL vmlinux 0x27f4e31f pcie_capability_clear_and_set_word -EXPORT_SYMBOL vmlinux 0x27fb8a07 jbd2_journal_ack_err -EXPORT_SYMBOL vmlinux 0x27fbcd10 simple_fill_super +EXPORT_SYMBOL vmlinux 0x27f279ea reuseport_detach_sock +EXPORT_SYMBOL vmlinux 0x280d4dfb free_buffer_head EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek -EXPORT_SYMBOL vmlinux 0x282220c6 netdev_has_any_upper_dev -EXPORT_SYMBOL vmlinux 0x284a6fe8 netdev_class_create_file_ns -EXPORT_SYMBOL vmlinux 0x285299fa pci_disable_link_state_locked -EXPORT_SYMBOL vmlinux 0x2858b70a vc_resize -EXPORT_SYMBOL vmlinux 0x286034df cdrom_number_of_slots +EXPORT_SYMBOL vmlinux 0x28271fb1 xfrm_input_resume +EXPORT_SYMBOL vmlinux 0x28272aab module_put +EXPORT_SYMBOL vmlinux 0x282e07f8 __skb_checksum_complete +EXPORT_SYMBOL vmlinux 0x283d4177 ip_frag_init +EXPORT_SYMBOL vmlinux 0x285dd6ff blk_queue_max_discard_sectors EXPORT_SYMBOL vmlinux 0x286a3661 airq_iv_scan -EXPORT_SYMBOL vmlinux 0x2871ab7d tcf_idrinfo_destroy +EXPORT_SYMBOL vmlinux 0x286aed72 bio_integrity_trim EXPORT_SYMBOL vmlinux 0x2875a315 utf32_to_utf8 -EXPORT_SYMBOL vmlinux 0x2877a548 md_flush_request -EXPORT_SYMBOL vmlinux 0x28a17c21 tty_check_change -EXPORT_SYMBOL vmlinux 0x28bbb445 security_sk_classify_flow -EXPORT_SYMBOL vmlinux 0x28cdf6fe skb_flow_dissect_meta -EXPORT_SYMBOL vmlinux 0x28dbba7a sdev_prefix_printk -EXPORT_SYMBOL vmlinux 0x28f561d8 kernel_recvmsg +EXPORT_SYMBOL vmlinux 0x2882ffa1 xsk_set_tx_need_wakeup +EXPORT_SYMBOL vmlinux 0x28a58ecb dm_register_target +EXPORT_SYMBOL vmlinux 0x28a5cb07 vfs_getattr +EXPORT_SYMBOL vmlinux 0x28b5e85e nvmem_get_mac_address +EXPORT_SYMBOL vmlinux 0x28c8e3e2 pcix_set_mmrbc +EXPORT_SYMBOL vmlinux 0x28eebf5e security_path_rename +EXPORT_SYMBOL vmlinux 0x28f00cce dev_set_promiscuity EXPORT_SYMBOL vmlinux 0x28f94604 __ubsan_handle_builtin_unreachable -EXPORT_SYMBOL vmlinux 0x290b69a6 arp_send EXPORT_SYMBOL vmlinux 0x290bf84a complete_and_exit -EXPORT_SYMBOL vmlinux 0x290f330b tcp_sock_set_syncnt -EXPORT_SYMBOL vmlinux 0x292cde16 tcf_idr_create_from_flags -EXPORT_SYMBOL vmlinux 0x29354f78 input_setup_polling +EXPORT_SYMBOL vmlinux 0x291b5a59 iucv_root +EXPORT_SYMBOL vmlinux 0x291e3c65 rawv6_mh_filter_register +EXPORT_SYMBOL vmlinux 0x293685dd vfs_statfs +EXPORT_SYMBOL vmlinux 0x293907bf security_unix_may_send EXPORT_SYMBOL vmlinux 0x29391e7d vm_munmap EXPORT_SYMBOL vmlinux 0x2956cf37 sclp_remove_processed EXPORT_SYMBOL vmlinux 0x29604158 napi_busy_loop -EXPORT_SYMBOL vmlinux 0x2966ed61 tcp_v4_send_check -EXPORT_SYMBOL vmlinux 0x29740d89 zpool_unregister_driver -EXPORT_SYMBOL vmlinux 0x2975fb85 vfs_getattr_nosec +EXPORT_SYMBOL vmlinux 0x29612680 bio_integrity_prep +EXPORT_SYMBOL vmlinux 0x296c370a sdev_prefix_printk EXPORT_SYMBOL vmlinux 0x29789394 empty_zero_page -EXPORT_SYMBOL vmlinux 0x29ad8c45 fscrypt_zeroout_range -EXPORT_SYMBOL vmlinux 0x29baf5a0 inet_frag_pull_head -EXPORT_SYMBOL vmlinux 0x29c1c5d5 neigh_update -EXPORT_SYMBOL vmlinux 0x29d3a556 bio_split -EXPORT_SYMBOL vmlinux 0x29de9bb4 md_register_thread -EXPORT_SYMBOL vmlinux 0x2a06c462 mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x29b8e6f0 zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0x29c6d06d d_alloc_name +EXPORT_SYMBOL vmlinux 0x29db0546 xfrm_policy_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x29eb8ec9 mount_nodev +EXPORT_SYMBOL vmlinux 0x2a0d21f6 dev_uc_unsync +EXPORT_SYMBOL vmlinux 0x2a2319d0 xfrm_sad_getinfo +EXPORT_SYMBOL vmlinux 0x2a26294a ether_setup EXPORT_SYMBOL vmlinux 0x2a41d203 dql_init -EXPORT_SYMBOL vmlinux 0x2a42527c sock_no_socketpair -EXPORT_SYMBOL vmlinux 0x2a6edbe6 scsi_device_resume -EXPORT_SYMBOL vmlinux 0x2a7e04f6 reuseport_migrate_sock +EXPORT_SYMBOL vmlinux 0x2a4757bc vmf_insert_mixed_prot +EXPORT_SYMBOL vmlinux 0x2a7e0c72 generic_shutdown_super EXPORT_SYMBOL vmlinux 0x2a805563 __kernel_cpumcf_end -EXPORT_SYMBOL vmlinux 0x2aa5bcbd udp_seq_next +EXPORT_SYMBOL vmlinux 0x2a9deae0 kmem_cache_size EXPORT_SYMBOL vmlinux 0x2aa71d0c proc_do_large_bitmap -EXPORT_SYMBOL vmlinux 0x2ab4250e jbd2_fc_begin_commit -EXPORT_SYMBOL vmlinux 0x2ab88e4b input_allocate_device -EXPORT_SYMBOL vmlinux 0x2ad1c833 netdev_warn +EXPORT_SYMBOL vmlinux 0x2acfa352 scsi_is_target_device +EXPORT_SYMBOL vmlinux 0x2ad44f21 devm_free_irq +EXPORT_SYMBOL vmlinux 0x2af1d826 blk_integrity_compare EXPORT_SYMBOL vmlinux 0x2af3f454 ssch -EXPORT_SYMBOL vmlinux 0x2af91d18 scsi_remove_host -EXPORT_SYMBOL vmlinux 0x2b0ea8b8 register_shrinker -EXPORT_SYMBOL vmlinux 0x2b15e258 zero_fill_bio -EXPORT_SYMBOL vmlinux 0x2b19f7a2 tty_port_init -EXPORT_SYMBOL vmlinux 0x2b2b85c4 d_alloc +EXPORT_SYMBOL vmlinux 0x2b0e9b20 poll_initwait +EXPORT_SYMBOL vmlinux 0x2b42e4d0 xfrm_state_update +EXPORT_SYMBOL vmlinux 0x2b5ed7ba param_set_invbool +EXPORT_SYMBOL vmlinux 0x2b67ef9c param_set_uint EXPORT_SYMBOL vmlinux 0x2b68bd2f del_timer +EXPORT_SYMBOL vmlinux 0x2b6f931e eth_get_headlen +EXPORT_SYMBOL vmlinux 0x2b84b6cb request_key_with_auxdata +EXPORT_SYMBOL vmlinux 0x2b899ba1 jbd2_journal_extend +EXPORT_SYMBOL vmlinux 0x2b92e65f sock_register EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock -EXPORT_SYMBOL vmlinux 0x2ba1aee6 scsi_change_queue_depth -EXPORT_SYMBOL vmlinux 0x2ba9b898 xfrm_state_update -EXPORT_SYMBOL vmlinux 0x2bb058ce dquot_writeback_dquots +EXPORT_SYMBOL vmlinux 0x2ba866a3 neigh_xmit +EXPORT_SYMBOL vmlinux 0x2bae150c registered_fb EXPORT_SYMBOL vmlinux 0x2bbe76f4 rps_sock_flow_table EXPORT_SYMBOL vmlinux 0x2bc21233 proc_dointvec_userhz_jiffies -EXPORT_SYMBOL vmlinux 0x2bcf3cfd __udp_disconnect -EXPORT_SYMBOL vmlinux 0x2bd1b8a6 rtnl_configure_link -EXPORT_SYMBOL vmlinux 0x2be87852 gnet_stats_finish_copy +EXPORT_SYMBOL vmlinux 0x2be194cd inet_sendmsg EXPORT_SYMBOL vmlinux 0x2bec2579 register_sysctl_paths -EXPORT_SYMBOL vmlinux 0x2c037a9f jbd2_journal_check_used_features -EXPORT_SYMBOL vmlinux 0x2c2296cc tcf_em_register +EXPORT_SYMBOL vmlinux 0x2bed861e param_set_ullong +EXPORT_SYMBOL vmlinux 0x2bfe139a tcf_exts_validate +EXPORT_SYMBOL vmlinux 0x2c01e171 xfrm_register_type +EXPORT_SYMBOL vmlinux 0x2c1b91de no_llseek EXPORT_SYMBOL vmlinux 0x2c252b48 ZSTD_insertBlock EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar -EXPORT_SYMBOL vmlinux 0x2c36da75 keyring_search -EXPORT_SYMBOL vmlinux 0x2c3b88b2 jbd2_fc_end_commit_fallback -EXPORT_SYMBOL vmlinux 0x2c52fdb9 _dev_alert -EXPORT_SYMBOL vmlinux 0x2c71efb6 get_pgste -EXPORT_SYMBOL vmlinux 0x2c8f2c58 jbd2_journal_invalidatepage +EXPORT_SYMBOL vmlinux 0x2c2c9dfa __cgroup_bpf_run_filter_sock_ops +EXPORT_SYMBOL vmlinux 0x2c5818c8 dev_change_flags +EXPORT_SYMBOL vmlinux 0x2ca41624 textsearch_prepare EXPORT_SYMBOL vmlinux 0x2cb75ff1 __tracepoint_s390_cio_tsch EXPORT_SYMBOL vmlinux 0x2cbd23af trace_print_hex_dump_seq +EXPORT_SYMBOL vmlinux 0x2cbfe503 xsk_clear_rx_need_wakeup EXPORT_SYMBOL vmlinux 0x2ccd059a dim_on_top -EXPORT_SYMBOL vmlinux 0x2ce0a470 skb_flow_get_icmp_tci -EXPORT_SYMBOL vmlinux 0x2cfc5b34 jbd2_journal_submit_inode_data_buffers -EXPORT_SYMBOL vmlinux 0x2d0a196f pci_enable_atomic_ops_to_root +EXPORT_SYMBOL vmlinux 0x2d06b8c0 tso_start +EXPORT_SYMBOL vmlinux 0x2d0f15e2 inet_stream_connect EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock -EXPORT_SYMBOL vmlinux 0x2d1eacc2 dquot_acquire +EXPORT_SYMBOL vmlinux 0x2d1ab8cd mr_dump EXPORT_SYMBOL vmlinux 0x2d276715 neigh_proc_dointvec +EXPORT_SYMBOL vmlinux 0x2d2b916d fscrypt_decrypt_pagecache_blocks EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged EXPORT_SYMBOL vmlinux 0x2d3385d3 system_wq +EXPORT_SYMBOL vmlinux 0x2d396158 datagram_poll EXPORT_SYMBOL vmlinux 0x2d39b0a7 kstrdup -EXPORT_SYMBOL vmlinux 0x2d430635 generic_shutdown_super +EXPORT_SYMBOL vmlinux 0x2d45a97c pci_enable_msi EXPORT_SYMBOL vmlinux 0x2d4c773a hdmi_spd_infoframe_init EXPORT_SYMBOL vmlinux 0x2d4daef5 find_font -EXPORT_SYMBOL vmlinux 0x2d633981 __sock_queue_rcv_skb -EXPORT_SYMBOL vmlinux 0x2d73a4bd vfs_fileattr_set -EXPORT_SYMBOL vmlinux 0x2d8f4c0e skb_queue_tail -EXPORT_SYMBOL vmlinux 0x2d98ecf2 d_instantiate_anon +EXPORT_SYMBOL vmlinux 0x2d632529 elv_rb_add +EXPORT_SYMBOL vmlinux 0x2d6d97fb sk_mc_loop +EXPORT_SYMBOL vmlinux 0x2d71dd90 xp_raw_get_dma +EXPORT_SYMBOL vmlinux 0x2d8ba7d0 simple_pin_fs +EXPORT_SYMBOL vmlinux 0x2d9937f3 _dev_info EXPORT_SYMBOL vmlinux 0x2d994605 security_inode_copy_up_xattr -EXPORT_SYMBOL vmlinux 0x2da114aa __seq_open_private +EXPORT_SYMBOL vmlinux 0x2d9e8911 pci_get_slot +EXPORT_SYMBOL vmlinux 0x2da7e7de __page_frag_cache_drain EXPORT_SYMBOL vmlinux 0x2ddb834b __xa_alloc -EXPORT_SYMBOL vmlinux 0x2ddc39c5 ihold -EXPORT_SYMBOL vmlinux 0x2de06915 locks_copy_conflock EXPORT_SYMBOL vmlinux 0x2de125c0 page_frag_alloc_align -EXPORT_SYMBOL vmlinux 0x2deee4ea file_open_root -EXPORT_SYMBOL vmlinux 0x2df2e3f6 scsi_register_driver -EXPORT_SYMBOL vmlinux 0x2e254e90 mark_info_dirty -EXPORT_SYMBOL vmlinux 0x2e2a6c39 kmalloc_caches +EXPORT_SYMBOL vmlinux 0x2df12404 scsi_get_host_dev +EXPORT_SYMBOL vmlinux 0x2e3983b8 bmap EXPORT_SYMBOL vmlinux 0x2e3c5950 radix_tree_gang_lookup_tag_slot -EXPORT_SYMBOL vmlinux 0x2e4362d7 tcp_mtup_init -EXPORT_SYMBOL vmlinux 0x2e5ba97e simple_recursive_removal +EXPORT_SYMBOL vmlinux 0x2e41ee33 tcf_action_update_stats EXPORT_SYMBOL vmlinux 0x2e5fe036 __skb_ext_put -EXPORT_SYMBOL vmlinux 0x2e8d14b2 netpoll_cleanup -EXPORT_SYMBOL vmlinux 0x2eae3790 fqdir_exit +EXPORT_SYMBOL vmlinux 0x2e60c1ed vlan_vid_del +EXPORT_SYMBOL vmlinux 0x2ea2bf46 blk_mq_run_hw_queues +EXPORT_SYMBOL vmlinux 0x2ea5b78d lock_sock_nested +EXPORT_SYMBOL vmlinux 0x2ea96055 ip6mr_rule_default +EXPORT_SYMBOL vmlinux 0x2eb54126 ioc_lookup_icq +EXPORT_SYMBOL vmlinux 0x2ec0e0a0 dev_alloc_name EXPORT_SYMBOL vmlinux 0x2ec6bba0 errseq_set EXPORT_SYMBOL vmlinux 0x2edcab17 ZSTD_initDStream_usingDDict EXPORT_SYMBOL vmlinux 0x2ef5661d segment_modify_shared -EXPORT_SYMBOL vmlinux 0x2ef9090f tcf_block_put_ext +EXPORT_SYMBOL vmlinux 0x2f0287e6 xfrm_input_unregister_afinfo EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc -EXPORT_SYMBOL vmlinux 0x2f0fbddc fiemap_prep -EXPORT_SYMBOL vmlinux 0x2f13228b bio_copy_data -EXPORT_SYMBOL vmlinux 0x2f189540 seg6_push_hmac -EXPORT_SYMBOL vmlinux 0x2f22421d __bio_clone_fast +EXPORT_SYMBOL vmlinux 0x2f251946 nf_log_unset EXPORT_SYMBOL vmlinux 0x2f2e91b2 security_ib_alloc_security -EXPORT_SYMBOL vmlinux 0x2f3fe652 nf_log_unbind_pf -EXPORT_SYMBOL vmlinux 0x2f464984 _dev_warn -EXPORT_SYMBOL vmlinux 0x2f4c44c9 ip_queue_xmit -EXPORT_SYMBOL vmlinux 0x2f625a29 ip_cmsg_recv_offset EXPORT_SYMBOL vmlinux 0x2f67c902 __traceiter_kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0x2f694c8d padata_free_shell +EXPORT_SYMBOL vmlinux 0x2f6f1b56 ccw_device_start_timeout +EXPORT_SYMBOL vmlinux 0x2f74a705 drop_nlink EXPORT_SYMBOL vmlinux 0x2f7754a8 dma_pool_free -EXPORT_SYMBOL vmlinux 0x2f7ed05b pci_request_irq -EXPORT_SYMBOL vmlinux 0x2f80fb29 follow_down_one -EXPORT_SYMBOL vmlinux 0x2f92b8a0 unmap_mapping_range -EXPORT_SYMBOL vmlinux 0x2f98f8b1 inet_csk_accept EXPORT_SYMBOL vmlinux 0x2fa5a500 memcmp -EXPORT_SYMBOL vmlinux 0x2fae01c9 udp_ioctl +EXPORT_SYMBOL vmlinux 0x2faee7e6 pci_iomap EXPORT_SYMBOL vmlinux 0x2fb6de5d add_device_randomness -EXPORT_SYMBOL vmlinux 0x2fcde56c flow_rule_match_control -EXPORT_SYMBOL vmlinux 0x2fdf793c dcbnl_ieee_notify +EXPORT_SYMBOL vmlinux 0x2fdc23c8 security_task_getsecid_subj EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier -EXPORT_SYMBOL vmlinux 0x2ff10f9f inet_csk_clear_xmit_timers +EXPORT_SYMBOL vmlinux 0x2fe44a2d flow_indr_block_cb_alloc EXPORT_SYMBOL vmlinux 0x2ffffb6f _ebc_tolower -EXPORT_SYMBOL vmlinux 0x30021ffd crypto_sha512_finup -EXPORT_SYMBOL vmlinux 0x3029c44c __tcf_em_tree_match -EXPORT_SYMBOL vmlinux 0x302b05d4 kernel_sendpage_locked -EXPORT_SYMBOL vmlinux 0x3040c010 xfrm_init_state -EXPORT_SYMBOL vmlinux 0x307211fe dma_resv_reserve_shared -EXPORT_SYMBOL vmlinux 0x307b9520 blk_mq_alloc_request -EXPORT_SYMBOL vmlinux 0x307eb394 elv_rb_del -EXPORT_SYMBOL vmlinux 0x308981cb padata_set_cpumask -EXPORT_SYMBOL vmlinux 0x308c266f register_framebuffer +EXPORT_SYMBOL vmlinux 0x3044b38a input_register_handler +EXPORT_SYMBOL vmlinux 0x304f9c09 sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0x305c616d posix_test_lock +EXPORT_SYMBOL vmlinux 0x3063a73f napi_disable +EXPORT_SYMBOL vmlinux 0x3086fd63 md_wakeup_thread EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep +EXPORT_SYMBOL vmlinux 0x30a3cc51 pci_iomap_wc_range EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user EXPORT_SYMBOL vmlinux 0x30acfde9 hsiphash_2u32 -EXPORT_SYMBOL vmlinux 0x30b66728 fib_notifier_ops_unregister -EXPORT_SYMBOL vmlinux 0x30c88da3 param_ops_charp -EXPORT_SYMBOL vmlinux 0x30e16aaa fb_blank -EXPORT_SYMBOL vmlinux 0x30e2f657 tty_do_resize +EXPORT_SYMBOL vmlinux 0x30e54f47 vlan_for_each EXPORT_SYMBOL vmlinux 0x30e74134 tty_termios_copy_hw -EXPORT_SYMBOL vmlinux 0x30fd7e91 tcp_gro_complete +EXPORT_SYMBOL vmlinux 0x30ef2fee __pskb_copy_fclone +EXPORT_SYMBOL vmlinux 0x30f72fd5 ip_sock_set_pktinfo EXPORT_SYMBOL vmlinux 0x3102d70b frontswap_curr_pages -EXPORT_SYMBOL vmlinux 0x3107dc81 d_invalidate -EXPORT_SYMBOL vmlinux 0x310bf353 tcp_close -EXPORT_SYMBOL vmlinux 0x31203e1e param_get_string +EXPORT_SYMBOL vmlinux 0x31178279 pcie_bandwidth_available EXPORT_SYMBOL vmlinux 0x3126a9e8 siphash_1u64 -EXPORT_SYMBOL vmlinux 0x3136e777 bmap +EXPORT_SYMBOL vmlinux 0x312a8a05 user_path_create +EXPORT_SYMBOL vmlinux 0x313edac9 posix_lock_file +EXPORT_SYMBOL vmlinux 0x31437777 __netif_napi_del +EXPORT_SYMBOL vmlinux 0x314f1b96 put_watch_queue +EXPORT_SYMBOL vmlinux 0x315c8134 d_tmpfile +EXPORT_SYMBOL vmlinux 0x318a3eb4 pci_scan_root_bus +EXPORT_SYMBOL vmlinux 0x3195d44d vfs_create_mount +EXPORT_SYMBOL vmlinux 0x3196d7db tcp_rtx_synack +EXPORT_SYMBOL vmlinux 0x319e6622 alloc_pages EXPORT_SYMBOL vmlinux 0x31a34dc6 dma_fence_match_context -EXPORT_SYMBOL vmlinux 0x31b47d31 sock_no_connect -EXPORT_SYMBOL vmlinux 0x31cb7534 xfrm6_input_addr +EXPORT_SYMBOL vmlinux 0x31a4af39 ll_rw_block +EXPORT_SYMBOL vmlinux 0x31c8e9c3 xfrm_state_register_afinfo +EXPORT_SYMBOL vmlinux 0x31d5dcc9 sock_no_ioctl +EXPORT_SYMBOL vmlinux 0x31d6c852 md_bitmap_close_sync +EXPORT_SYMBOL vmlinux 0x31d6ddf5 request_firmware +EXPORT_SYMBOL vmlinux 0x31dad469 __hw_addr_sync_dev +EXPORT_SYMBOL vmlinux 0x31dff799 gro_find_complete_by_type +EXPORT_SYMBOL vmlinux 0x31e2da2c blk_rq_map_user_iov EXPORT_SYMBOL vmlinux 0x31e7b349 key_create_or_update -EXPORT_SYMBOL vmlinux 0x31f5043c tcf_idr_check_alloc -EXPORT_SYMBOL vmlinux 0x3209d96c tty_wait_until_sent -EXPORT_SYMBOL vmlinux 0x3212c51e pci_bus_read_config_byte -EXPORT_SYMBOL vmlinux 0x322e641a __d_lookup_done -EXPORT_SYMBOL vmlinux 0x3233e49e skb_checksum -EXPORT_SYMBOL vmlinux 0x32450e42 ethtool_op_get_link -EXPORT_SYMBOL vmlinux 0x3246f647 pci_iomap_range -EXPORT_SYMBOL vmlinux 0x325b1dfc request_firmware_into_buf -EXPORT_SYMBOL vmlinux 0x326612a4 d_delete -EXPORT_SYMBOL vmlinux 0x3272081a framebuffer_release +EXPORT_SYMBOL vmlinux 0x31f494d1 sk_send_sigurg +EXPORT_SYMBOL vmlinux 0x3213e8e8 param_ops_ulong EXPORT_SYMBOL vmlinux 0x3275689f smp_ctl_set_bit -EXPORT_SYMBOL vmlinux 0x3279952c generic_listxattr +EXPORT_SYMBOL vmlinux 0x327fdc74 __dynamic_dev_dbg EXPORT_SYMBOL vmlinux 0x3283e6b0 prandom_seed_full_state -EXPORT_SYMBOL vmlinux 0x32aa6bce netdev_printk -EXPORT_SYMBOL vmlinux 0x32b082bf component_match_add_typed EXPORT_SYMBOL vmlinux 0x32c6a2d8 _ebcasc_500 EXPORT_SYMBOL vmlinux 0x32ce3777 radix_tree_preload -EXPORT_SYMBOL vmlinux 0x32dc350b seq_escape_mem -EXPORT_SYMBOL vmlinux 0x32ddfe4d tcp_get_cookie_sock -EXPORT_SYMBOL vmlinux 0x32e09c26 sock_kmalloc -EXPORT_SYMBOL vmlinux 0x32e971b1 neigh_carrier_down -EXPORT_SYMBOL vmlinux 0x32f13252 end_page_writeback -EXPORT_SYMBOL vmlinux 0x32ffa993 kthread_blkcg -EXPORT_SYMBOL vmlinux 0x330bb0b9 jbd2_journal_free_reserved -EXPORT_SYMBOL vmlinux 0x331c2048 tcp_set_rcvlowat -EXPORT_SYMBOL vmlinux 0x331d883b iov_iter_init +EXPORT_SYMBOL vmlinux 0x32d272cd flow_rule_match_eth_addrs +EXPORT_SYMBOL vmlinux 0x32fcae4a xfrm_unregister_km EXPORT_SYMBOL vmlinux 0x331de0b9 kstrtos8_from_user -EXPORT_SYMBOL vmlinux 0x3336865c __inet6_lookup_established -EXPORT_SYMBOL vmlinux 0x3353d04d pskb_expand_head +EXPORT_SYMBOL vmlinux 0x3329ccfc __alloc_disk_node +EXPORT_SYMBOL vmlinux 0x33353723 security_locked_down +EXPORT_SYMBOL vmlinux 0x33374634 __scsi_add_device +EXPORT_SYMBOL vmlinux 0x33430835 kmem_cache_create +EXPORT_SYMBOL vmlinux 0x3355fa50 sock_cmsg_send +EXPORT_SYMBOL vmlinux 0x3359656d inet_csk_clear_xmit_timers EXPORT_SYMBOL vmlinux 0x3362a5ac udp_table -EXPORT_SYMBOL vmlinux 0x337176f6 sync_blockdev -EXPORT_SYMBOL vmlinux 0x339c4e1f __dst_destroy_metrics_generic -EXPORT_SYMBOL vmlinux 0x33abc364 block_invalidatepage -EXPORT_SYMBOL vmlinux 0x33b8742a security_sb_set_mnt_opts -EXPORT_SYMBOL vmlinux 0x33c1c3e8 vfs_get_tree -EXPORT_SYMBOL vmlinux 0x33c8513a filemap_fdatawait_range_keep_errors -EXPORT_SYMBOL vmlinux 0x33c8b9f9 open_with_fake_path -EXPORT_SYMBOL vmlinux 0x33cba2f1 shmem_aops -EXPORT_SYMBOL vmlinux 0x33df0791 sock_setsockopt -EXPORT_SYMBOL vmlinux 0x33e07347 __xfrm_state_destroy +EXPORT_SYMBOL vmlinux 0x3371f23a key_reject_and_link +EXPORT_SYMBOL vmlinux 0x338b3426 dm_table_event +EXPORT_SYMBOL vmlinux 0x339ce175 rtnetlink_put_metrics +EXPORT_SYMBOL vmlinux 0x33aadbf4 dma_sync_sg_for_cpu +EXPORT_SYMBOL vmlinux 0x33c080d4 dm_unregister_target +EXPORT_SYMBOL vmlinux 0x33dd0c9c dev_vprintk_emit EXPORT_SYMBOL vmlinux 0x33f74de3 _ascebc_500 EXPORT_SYMBOL vmlinux 0x33fa677f rename_lock +EXPORT_SYMBOL vmlinux 0x33fb44b0 vfs_path_lookup EXPORT_SYMBOL vmlinux 0x33fc2a31 get_user_ifreq -EXPORT_SYMBOL vmlinux 0x3404d0f8 __skb_free_datagram_locked -EXPORT_SYMBOL vmlinux 0x340f6d46 pci_request_regions_exclusive -EXPORT_SYMBOL vmlinux 0x34167ec9 fib_notifier_ops_register -EXPORT_SYMBOL vmlinux 0x3436783c ccw_driver_register -EXPORT_SYMBOL vmlinux 0x34406a07 xfrm_lookup -EXPORT_SYMBOL vmlinux 0x3440d2c2 skb_ensure_writable -EXPORT_SYMBOL vmlinux 0x3449788e iterate_fd -EXPORT_SYMBOL vmlinux 0x344ebad9 dma_pool_create -EXPORT_SYMBOL vmlinux 0x34509b94 netpoll_poll_disable -EXPORT_SYMBOL vmlinux 0x346a07ae sock_from_file -EXPORT_SYMBOL vmlinux 0x346d0d4e security_dentry_create_files_as -EXPORT_SYMBOL vmlinux 0x34774439 dst_destroy -EXPORT_SYMBOL vmlinux 0x348c235e wait_for_key_construction -EXPORT_SYMBOL vmlinux 0x34901256 ip_generic_getfrag +EXPORT_SYMBOL vmlinux 0x34326442 netdev_next_lower_dev_rcu +EXPORT_SYMBOL vmlinux 0x34437f54 dm_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x34511791 sock_release +EXPORT_SYMBOL vmlinux 0x345b987e ap_driver_unregister +EXPORT_SYMBOL vmlinux 0x34829067 module_refcount +EXPORT_SYMBOL vmlinux 0x349042ca tcp_sock_set_cork +EXPORT_SYMBOL vmlinux 0x349260b7 regset_get_alloc +EXPORT_SYMBOL vmlinux 0x34962125 tty_flip_buffer_push EXPORT_SYMBOL vmlinux 0x349cba85 strchr EXPORT_SYMBOL vmlinux 0x34a35fc7 lockref_get_or_lock EXPORT_SYMBOL vmlinux 0x34c7cdbc lookup_bdev -EXPORT_SYMBOL vmlinux 0x34c9723f get_user_pages_unlocked -EXPORT_SYMBOL vmlinux 0x34d61004 scsi_report_bus_reset -EXPORT_SYMBOL vmlinux 0x34e988fd drop_nlink EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue -EXPORT_SYMBOL vmlinux 0x350cd31e napi_enable +EXPORT_SYMBOL vmlinux 0x3516eeb7 kthread_blkcg EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier -EXPORT_SYMBOL vmlinux 0x3541874e pci_write_config_byte -EXPORT_SYMBOL vmlinux 0x35451a2f qdisc_hash_add -EXPORT_SYMBOL vmlinux 0x35610aa8 dev_set_mac_address -EXPORT_SYMBOL vmlinux 0x3578de25 block_commit_write -EXPORT_SYMBOL vmlinux 0x357f2aa1 tcp_connect +EXPORT_SYMBOL vmlinux 0x35212d3f input_set_abs_params +EXPORT_SYMBOL vmlinux 0x35722cb4 skb_add_rx_frag EXPORT_SYMBOL vmlinux 0x3590acc9 cpumask_any_distribute +EXPORT_SYMBOL vmlinux 0x35947d46 iget_failed +EXPORT_SYMBOL vmlinux 0x35a7ef4e ram_aops EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 -EXPORT_SYMBOL vmlinux 0x35ab9c6d blk_dump_rq_flags -EXPORT_SYMBOL vmlinux 0x35bb1e57 _copy_to_iter -EXPORT_SYMBOL vmlinux 0x35bb3772 dquot_get_next_dqblk -EXPORT_SYMBOL vmlinux 0x35c78f4f jbd2_journal_clear_features -EXPORT_SYMBOL vmlinux 0x35ceaa49 netlink_ns_capable +EXPORT_SYMBOL vmlinux 0x35b30c99 gro_cells_receive +EXPORT_SYMBOL vmlinux 0x35d4fecd dquot_set_dqblk EXPORT_SYMBOL vmlinux 0x35da72e8 __irq_regs +EXPORT_SYMBOL vmlinux 0x35f01976 dma_sync_single_for_device EXPORT_SYMBOL vmlinux 0x3602aba9 raw3270_register_notifier +EXPORT_SYMBOL vmlinux 0x361772af unregister_shrinker +EXPORT_SYMBOL vmlinux 0x3638ebd1 tcf_exts_change +EXPORT_SYMBOL vmlinux 0x36398cb6 input_match_device_id +EXPORT_SYMBOL vmlinux 0x364c5df5 make_kuid EXPORT_SYMBOL vmlinux 0x365acda7 set_normalized_timespec64 EXPORT_SYMBOL vmlinux 0x365e7911 kstrdup_const -EXPORT_SYMBOL vmlinux 0x365fc333 start_tty -EXPORT_SYMBOL vmlinux 0x36684a06 dev_queue_xmit -EXPORT_SYMBOL vmlinux 0x366959bf pci_alloc_irq_vectors_affinity -EXPORT_SYMBOL vmlinux 0x3673f47c dev_mc_add -EXPORT_SYMBOL vmlinux 0x3695063f __splice_from_pipe -EXPORT_SYMBOL vmlinux 0x36ac7513 vmemmap -EXPORT_SYMBOL vmlinux 0x36b5ac29 xfrm_state_walk_done -EXPORT_SYMBOL vmlinux 0x36b9d43c kernel_write -EXPORT_SYMBOL vmlinux 0x36c15381 get_cached_acl_rcu -EXPORT_SYMBOL vmlinux 0x36fd24ea __do_once_done -EXPORT_SYMBOL vmlinux 0x3707200f flow_block_cb_priv +EXPORT_SYMBOL vmlinux 0x3675cf20 single_open +EXPORT_SYMBOL vmlinux 0x3676c91f jbd2_journal_ack_err +EXPORT_SYMBOL vmlinux 0x3683c5f2 truncate_inode_pages +EXPORT_SYMBOL vmlinux 0x3692dc83 scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x369ab9f0 seg6_push_hmac +EXPORT_SYMBOL vmlinux 0x369dce5b tcp_release_cb +EXPORT_SYMBOL vmlinux 0x36c1cc47 kthread_create_worker_on_cpu +EXPORT_SYMBOL vmlinux 0x36e67e8f vm_map_ram +EXPORT_SYMBOL vmlinux 0x3704bb9c ipv6_chk_custom_prefix EXPORT_SYMBOL vmlinux 0x370756ff bitmap_print_bitmask_to_buf -EXPORT_SYMBOL vmlinux 0x370f35b1 component_match_add_release +EXPORT_SYMBOL vmlinux 0x371c5be4 configfs_register_group +EXPORT_SYMBOL vmlinux 0x372d63e7 neigh_parms_alloc +EXPORT_SYMBOL vmlinux 0x37357e8f __set_page_dirty_buffers EXPORT_SYMBOL vmlinux 0x3736d025 down_read_killable -EXPORT_SYMBOL vmlinux 0x3740c57d udp_seq_start EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn -EXPORT_SYMBOL vmlinux 0x374ba14d shrink_dcache_sb +EXPORT_SYMBOL vmlinux 0x374950e5 scsi_block_when_processing_errors EXPORT_SYMBOL vmlinux 0x3755f990 gf128mul_init_64k_bbe EXPORT_SYMBOL vmlinux 0x375ac910 gen_pool_add_owner -EXPORT_SYMBOL vmlinux 0x377e0bee xfrm_find_acq_byseq -EXPORT_SYMBOL vmlinux 0x378951ff cdev_set_parent -EXPORT_SYMBOL vmlinux 0x378d8440 netif_device_detach -EXPORT_SYMBOL vmlinux 0x378f7466 md_reload_sb -EXPORT_SYMBOL vmlinux 0x37b57496 unix_attach_fds +EXPORT_SYMBOL vmlinux 0x376a3146 vfs_fsync_range +EXPORT_SYMBOL vmlinux 0x37777ea2 pci_disable_msi +EXPORT_SYMBOL vmlinux 0x37b29e0a blk_mq_delay_run_hw_queue +EXPORT_SYMBOL vmlinux 0x37bd9ddd gnet_stats_copy_queue EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs -EXPORT_SYMBOL vmlinux 0x37d3eb37 irq_set_chip -EXPORT_SYMBOL vmlinux 0x37d49723 submit_bh -EXPORT_SYMBOL vmlinux 0x37e8f10e pskb_trim_rcsum_slow -EXPORT_SYMBOL vmlinux 0x37f672a3 inet_frag_reasm_finish -EXPORT_SYMBOL vmlinux 0x37fef8ab dump_skip +EXPORT_SYMBOL vmlinux 0x37fbe8a4 netdev_features_change +EXPORT_SYMBOL vmlinux 0x38072d63 reuseport_stop_listen_sock +EXPORT_SYMBOL vmlinux 0x380af15e tty_schedule_flip +EXPORT_SYMBOL vmlinux 0x380b177c devm_release_resource EXPORT_SYMBOL vmlinux 0x380ec283 bit_waitqueue +EXPORT_SYMBOL vmlinux 0x3813e1f1 __hw_addr_unsync_dev +EXPORT_SYMBOL vmlinux 0x38163d1f km_report EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus -EXPORT_SYMBOL vmlinux 0x38300c58 sg_miter_start +EXPORT_SYMBOL vmlinux 0x381eedb9 discard_new_inode +EXPORT_SYMBOL vmlinux 0x3825ef44 netpoll_poll_disable EXPORT_SYMBOL vmlinux 0x3832522f __crc32c_le_shift EXPORT_SYMBOL vmlinux 0x3854774b kstrtoll -EXPORT_SYMBOL vmlinux 0x3871ba30 tty_port_close_start -EXPORT_SYMBOL vmlinux 0x387cc43f find_inode_by_ino_rcu -EXPORT_SYMBOL vmlinux 0x387d37ee register_quota_format EXPORT_SYMBOL vmlinux 0x38869d88 kstat -EXPORT_SYMBOL vmlinux 0x3887de4b linkwatch_fire_event -EXPORT_SYMBOL vmlinux 0x389099f0 security_inode_setsecctx EXPORT_SYMBOL vmlinux 0x3891ffc8 ecryptfs_fill_auth_tok -EXPORT_SYMBOL vmlinux 0x38a25027 d_instantiate_new +EXPORT_SYMBOL vmlinux 0x38a1da6a xp_can_alloc EXPORT_SYMBOL vmlinux 0x38a52db1 dma_fence_init EXPORT_SYMBOL vmlinux 0x38a71b7e pci_free_resource_list EXPORT_SYMBOL vmlinux 0x38a9f7c5 in6addr_loopback -EXPORT_SYMBOL vmlinux 0x38aa0e16 netdev_lower_get_next_private_rcu -EXPORT_SYMBOL vmlinux 0x38b0cc71 dev_mc_sync_multiple -EXPORT_SYMBOL vmlinux 0x38b467b1 unregister_mii_tstamp_controller -EXPORT_SYMBOL vmlinux 0x38bcfd72 prepare_to_swait_exclusive -EXPORT_SYMBOL vmlinux 0x38daf277 clear_nlink -EXPORT_SYMBOL vmlinux 0x38e0e078 get_ipc_ns_exported -EXPORT_SYMBOL vmlinux 0x38eaad81 skb_get_hash_perturb +EXPORT_SYMBOL vmlinux 0x38aa572e xfrm_lookup +EXPORT_SYMBOL vmlinux 0x38b895fe sock_recv_errqueue +EXPORT_SYMBOL vmlinux 0x38c49859 rawv6_mh_filter_unregister +EXPORT_SYMBOL vmlinux 0x38cfd1f2 input_register_handle EXPORT_SYMBOL vmlinux 0x38f48af7 put_user_ifreq -EXPORT_SYMBOL vmlinux 0x39068e50 __bforget -EXPORT_SYMBOL vmlinux 0x392c7181 sock_no_sendpage -EXPORT_SYMBOL vmlinux 0x39387d38 tty_unthrottle +EXPORT_SYMBOL vmlinux 0x38f691ee unregister_key_type +EXPORT_SYMBOL vmlinux 0x3908436d napi_build_skb EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p -EXPORT_SYMBOL vmlinux 0x3951ad0f mr_mfc_find_parent -EXPORT_SYMBOL vmlinux 0x395f3f23 jbd2_fc_end_commit -EXPORT_SYMBOL vmlinux 0x3978dac9 blk_queue_max_write_same_sectors -EXPORT_SYMBOL vmlinux 0x3984dad8 key_reject_and_link +EXPORT_SYMBOL vmlinux 0x39576484 param_set_ulong EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow +EXPORT_SYMBOL vmlinux 0x39a5b5a5 scsi_host_alloc EXPORT_SYMBOL vmlinux 0x39b52d19 __bitmap_and +EXPORT_SYMBOL vmlinux 0x39c2848a udp_lib_setsockopt EXPORT_SYMBOL vmlinux 0x39c60ac5 ZSTD_decompressBegin -EXPORT_SYMBOL vmlinux 0x39d6ca8a tcf_exts_change -EXPORT_SYMBOL vmlinux 0x39de6c8d mr_dump -EXPORT_SYMBOL vmlinux 0x39e8441f tcp_sendpage -EXPORT_SYMBOL vmlinux 0x3a02394e set_disk_ro -EXPORT_SYMBOL vmlinux 0x3a02d8ae xfrm_spd_getinfo +EXPORT_SYMBOL vmlinux 0x39dfca94 netdev_reset_tc +EXPORT_SYMBOL vmlinux 0x39f5f085 from_kprojid_munged EXPORT_SYMBOL vmlinux 0x3a13f54a sgl_alloc +EXPORT_SYMBOL vmlinux 0x3a14c8a4 dma_unmap_page_attrs EXPORT_SYMBOL vmlinux 0x3a1733d0 dfltcc_inflate -EXPORT_SYMBOL vmlinux 0x3a18f495 pcie_get_speed_cap -EXPORT_SYMBOL vmlinux 0x3a199e3b give_up_console -EXPORT_SYMBOL vmlinux 0x3a1d655c param_ops_long EXPORT_SYMBOL vmlinux 0x3a2f6702 sg_alloc_table -EXPORT_SYMBOL vmlinux 0x3a38fe6c vfs_iter_write -EXPORT_SYMBOL vmlinux 0x3a3d6960 unregister_nls EXPORT_SYMBOL vmlinux 0x3a4f9d28 rng_is_initialized +EXPORT_SYMBOL vmlinux 0x3a50aa78 configfs_unregister_group EXPORT_SYMBOL vmlinux 0x3a8f22ce gen_pool_alloc_algo_owner -EXPORT_SYMBOL vmlinux 0x3a9d81f9 param_ops_hexint -EXPORT_SYMBOL vmlinux 0x3aa20f09 unregister_cdrom -EXPORT_SYMBOL vmlinux 0x3aa56430 add_watch_to_object +EXPORT_SYMBOL vmlinux 0x3a905a32 simple_link +EXPORT_SYMBOL vmlinux 0x3a9add8a start_tty EXPORT_SYMBOL vmlinux 0x3ab7b1cc scsi_set_sense_field_pointer -EXPORT_SYMBOL vmlinux 0x3ac97753 __scm_send +EXPORT_SYMBOL vmlinux 0x3ac1a498 kernel_accept EXPORT_SYMBOL vmlinux 0x3acc7dee mutex_lock_interruptible -EXPORT_SYMBOL vmlinux 0x3af42814 qdisc_watchdog_schedule_range_ns -EXPORT_SYMBOL vmlinux 0x3b0440d7 mdiobus_setup_mdiodev_from_board_info +EXPORT_SYMBOL vmlinux 0x3add8c44 param_get_ulong +EXPORT_SYMBOL vmlinux 0x3aece94d nf_log_register EXPORT_SYMBOL vmlinux 0x3b176ce7 release_dentry_name_snapshot -EXPORT_SYMBOL vmlinux 0x3b26d10a clear_inode -EXPORT_SYMBOL vmlinux 0x3b294470 xfrm_policy_insert -EXPORT_SYMBOL vmlinux 0x3b304c26 netlink_ack -EXPORT_SYMBOL vmlinux 0x3b562be5 neigh_changeaddr +EXPORT_SYMBOL vmlinux 0x3b24e2e5 pci_pme_capable +EXPORT_SYMBOL vmlinux 0x3b2535db bio_advance +EXPORT_SYMBOL vmlinux 0x3b44320b nf_log_packet +EXPORT_SYMBOL vmlinux 0x3b5c6c38 pci_read_vpd EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left EXPORT_SYMBOL vmlinux 0x3b6c41ea kstrtouint EXPORT_SYMBOL vmlinux 0x3b756f6a crc32_le -EXPORT_SYMBOL vmlinux 0x3b801c92 sock_alloc -EXPORT_SYMBOL vmlinux 0x3b82fa94 discard_new_inode -EXPORT_SYMBOL vmlinux 0x3b8723ca sock_gettstamp -EXPORT_SYMBOL vmlinux 0x3b8b1702 dev_uc_flush -EXPORT_SYMBOL vmlinux 0x3b9b7da4 pci_ep_cfs_add_epf_group -EXPORT_SYMBOL vmlinux 0x3b9cfd8d audit_log -EXPORT_SYMBOL vmlinux 0x3bb8a464 ap_get_qdev -EXPORT_SYMBOL vmlinux 0x3bc6e9bb blk_queue_virt_boundary -EXPORT_SYMBOL vmlinux 0x3bc926a9 unregister_shrinker -EXPORT_SYMBOL vmlinux 0x3bd417da unregister_netdevice_notifier_dev_net -EXPORT_SYMBOL vmlinux 0x3bd60631 class3270 -EXPORT_SYMBOL vmlinux 0x3be54f79 dev_set_mtu +EXPORT_SYMBOL vmlinux 0x3bc093da fb_pan_display +EXPORT_SYMBOL vmlinux 0x3bd91d21 blk_queue_max_hw_sectors EXPORT_SYMBOL vmlinux 0x3be7643e security_xfrm_policy_free -EXPORT_SYMBOL vmlinux 0x3bfc4934 secpath_set EXPORT_SYMBOL vmlinux 0x3bfd2e07 ns_capable_setid +EXPORT_SYMBOL vmlinux 0x3c03fbdd udp_prot EXPORT_SYMBOL vmlinux 0x3c0b4eee __kfifo_skip_r -EXPORT_SYMBOL vmlinux 0x3c147153 iov_iter_zero EXPORT_SYMBOL vmlinux 0x3c185c61 page_put_link -EXPORT_SYMBOL vmlinux 0x3c3618ce page_pool_return_skb_page +EXPORT_SYMBOL vmlinux 0x3c1b92ec iov_iter_gap_alignment +EXPORT_SYMBOL vmlinux 0x3c2f2c27 unregister_md_personality +EXPORT_SYMBOL vmlinux 0x3c30c17f scsi_register_interface EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip EXPORT_SYMBOL vmlinux 0x3c3ff9fd sprintf -EXPORT_SYMBOL vmlinux 0x3c693ce0 fb_validate_mode -EXPORT_SYMBOL vmlinux 0x3c6f4802 __traceiter_mmap_lock_start_locking -EXPORT_SYMBOL vmlinux 0x3cd067d5 jbd2_journal_clear_err -EXPORT_SYMBOL vmlinux 0x3cddb845 register_cdrom +EXPORT_SYMBOL vmlinux 0x3c5dda74 unlock_page_memcg +EXPORT_SYMBOL vmlinux 0x3c6b57e7 scsi_target_quiesce +EXPORT_SYMBOL vmlinux 0x3ca0b5cb iunique +EXPORT_SYMBOL vmlinux 0x3ca8a77a skb_get_hash_perturb EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq -EXPORT_SYMBOL vmlinux 0x3ce87c4f netdev_reset_tc -EXPORT_SYMBOL vmlinux 0x3ce998f7 genl_register_family -EXPORT_SYMBOL vmlinux 0x3cf945db tty_unregister_driver -EXPORT_SYMBOL vmlinux 0x3cfedef9 dquot_alloc +EXPORT_SYMBOL vmlinux 0x3d05b3cf no_seek_end_llseek_size EXPORT_SYMBOL vmlinux 0x3d117a60 itcw_calc_size -EXPORT_SYMBOL vmlinux 0x3d1761c6 generic_fill_statx_attr -EXPORT_SYMBOL vmlinux 0x3d1ef400 tcp_filter -EXPORT_SYMBOL vmlinux 0x3d553ca3 jbd2_journal_inode_ranged_write +EXPORT_SYMBOL vmlinux 0x3d367d75 fb_set_cmap +EXPORT_SYMBOL vmlinux 0x3d3e7fb4 skb_push +EXPORT_SYMBOL vmlinux 0x3d423530 dentry_path_raw +EXPORT_SYMBOL vmlinux 0x3d477b54 get_guest_storage_key +EXPORT_SYMBOL vmlinux 0x3d536832 tty_port_alloc_xmit_buf EXPORT_SYMBOL vmlinux 0x3d56e7b3 utf8_unload +EXPORT_SYMBOL vmlinux 0x3d5ec534 ccw_device_dma_zalloc +EXPORT_SYMBOL vmlinux 0x3d60fe46 netdev_crit +EXPORT_SYMBOL vmlinux 0x3d619870 pskb_extract EXPORT_SYMBOL vmlinux 0x3d6b3755 empty_name -EXPORT_SYMBOL vmlinux 0x3d72edfc neigh_seq_start -EXPORT_SYMBOL vmlinux 0x3da190da __nlmsg_put +EXPORT_SYMBOL vmlinux 0x3d7641d1 sock_no_linger +EXPORT_SYMBOL vmlinux 0x3d9c7fa9 regset_get +EXPORT_SYMBOL vmlinux 0x3da5d750 d_obtain_root 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 0x3db3b5a6 hdmi_avi_infoframe_pack -EXPORT_SYMBOL vmlinux 0x3dc45400 __napi_schedule_irqoff +EXPORT_SYMBOL vmlinux 0x3db8fa83 simple_transaction_set EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data -EXPORT_SYMBOL vmlinux 0x3de2ea20 scsi_target_resume -EXPORT_SYMBOL vmlinux 0x3df6a29e sk_stream_wait_connect -EXPORT_SYMBOL vmlinux 0x3dfc3424 jbd2_journal_inode_ranged_wait +EXPORT_SYMBOL vmlinux 0x3ddb1006 inet_rcv_saddr_equal +EXPORT_SYMBOL vmlinux 0x3df0d91d __cancel_dirty_page EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head -EXPORT_SYMBOL vmlinux 0x3e332b9b page_pool_create -EXPORT_SYMBOL vmlinux 0x3e370b67 netdev_get_xmit_slave -EXPORT_SYMBOL vmlinux 0x3e39dfdb unlock_new_inode +EXPORT_SYMBOL vmlinux 0x3e058c30 debug_event_common EXPORT_SYMBOL vmlinux 0x3e3bad0a __tasklet_hi_schedule -EXPORT_SYMBOL vmlinux 0x3e3f789d zerocopy_sg_from_iter -EXPORT_SYMBOL vmlinux 0x3e565422 eth_header_parse +EXPORT_SYMBOL vmlinux 0x3e433a5d tty_port_close_start +EXPORT_SYMBOL vmlinux 0x3e56ba4f pcie_port_service_unregister EXPORT_SYMBOL vmlinux 0x3e572682 __wake_up -EXPORT_SYMBOL vmlinux 0x3e5fc323 __f_setown -EXPORT_SYMBOL vmlinux 0x3e76a182 __icmp_send -EXPORT_SYMBOL vmlinux 0x3e7af001 netif_skb_features -EXPORT_SYMBOL vmlinux 0x3e95b924 remove_proc_entry -EXPORT_SYMBOL vmlinux 0x3eab1ea2 param_get_long -EXPORT_SYMBOL vmlinux 0x3eaf486b __starget_for_each_device -EXPORT_SYMBOL vmlinux 0x3eb2b7ed jbd2_journal_init_dev -EXPORT_SYMBOL vmlinux 0x3eb72d6a nvmem_get_mac_address -EXPORT_SYMBOL vmlinux 0x3eb880c3 vmf_insert_mixed_mkwrite +EXPORT_SYMBOL vmlinux 0x3e6a2e0f dev_addr_add +EXPORT_SYMBOL vmlinux 0x3e731fc3 padata_alloc_shell +EXPORT_SYMBOL vmlinux 0x3eb4006c input_get_timestamp EXPORT_SYMBOL vmlinux 0x3eb94250 itcw_add_dcw -EXPORT_SYMBOL vmlinux 0x3ebe2c16 mpage_readahead -EXPORT_SYMBOL vmlinux 0x3ecefb7d prepare_kernel_cred -EXPORT_SYMBOL vmlinux 0x3ed0eff4 filemap_invalidate_unlock_two -EXPORT_SYMBOL vmlinux 0x3ed8cf84 blk_integrity_unregister -EXPORT_SYMBOL vmlinux 0x3ee33e0c udp_seq_stop -EXPORT_SYMBOL vmlinux 0x3eeb92c0 xfrm_state_delete_tunnel -EXPORT_SYMBOL vmlinux 0x3f35ec4c __skb_gso_segment -EXPORT_SYMBOL vmlinux 0x3f3dece9 tty_port_tty_set -EXPORT_SYMBOL vmlinux 0x3f444d7f skb_flow_dissect_hash +EXPORT_SYMBOL vmlinux 0x3ed334d6 scsi_device_quiesce +EXPORT_SYMBOL vmlinux 0x3ed8d75b scsi_track_queue_full +EXPORT_SYMBOL vmlinux 0x3ee1148e pcie_get_speed_cap +EXPORT_SYMBOL vmlinux 0x3ee15900 dma_resv_reserve_shared +EXPORT_SYMBOL vmlinux 0x3f0b8ccb xfrm_policy_walk +EXPORT_SYMBOL vmlinux 0x3f27596b inet_bind +EXPORT_SYMBOL vmlinux 0x3f2f8bfb security_d_instantiate +EXPORT_SYMBOL vmlinux 0x3f3186bc pneigh_lookup +EXPORT_SYMBOL vmlinux 0x3f44d10e xfrm6_protocol_deregister EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd -EXPORT_SYMBOL vmlinux 0x3f47f107 blkdev_issue_zeroout -EXPORT_SYMBOL vmlinux 0x3f6291ad __cleancache_invalidate_page -EXPORT_SYMBOL vmlinux 0x3f6651fe cdrom_get_media_event +EXPORT_SYMBOL vmlinux 0x3f5b5dd2 xattr_supported_namespace +EXPORT_SYMBOL vmlinux 0x3f5dc85b unregister_service_level +EXPORT_SYMBOL vmlinux 0x3f75437a input_free_device +EXPORT_SYMBOL vmlinux 0x3f86e4f2 debug_register_view EXPORT_SYMBOL vmlinux 0x3f89071b security_ib_pkey_access -EXPORT_SYMBOL vmlinux 0x3f95178c try_to_release_page -EXPORT_SYMBOL vmlinux 0x3f986e66 hash_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0x3f8a5b1b __ip_select_ident +EXPORT_SYMBOL vmlinux 0x3fa11fbd inet_unregister_protosw EXPORT_SYMBOL vmlinux 0x3fa913da strspn -EXPORT_SYMBOL vmlinux 0x3faccbf7 nf_log_register EXPORT_SYMBOL vmlinux 0x3fadb213 ZSTD_getFrameParams -EXPORT_SYMBOL vmlinux 0x3fbac496 account_page_redirty -EXPORT_SYMBOL vmlinux 0x3fc96a6f iput -EXPORT_SYMBOL vmlinux 0x3fd50d5b invalidate_mapping_pages EXPORT_SYMBOL vmlinux 0x3fd78f3b register_chrdev_region -EXPORT_SYMBOL vmlinux 0x3ffb010d pci_release_resource -EXPORT_SYMBOL vmlinux 0x400fa714 ethtool_rx_flow_rule_destroy +EXPORT_SYMBOL vmlinux 0x4029b3f8 writeback_inodes_sb_nr EXPORT_SYMBOL vmlinux 0x402a960a jiffies_64 -EXPORT_SYMBOL vmlinux 0x4031fc4b genl_notify -EXPORT_SYMBOL vmlinux 0x40427101 scsi_partsize -EXPORT_SYMBOL vmlinux 0x405199c5 pci_scan_root_bus_bridge -EXPORT_SYMBOL vmlinux 0x405cb774 do_clone_file_range -EXPORT_SYMBOL vmlinux 0x40718977 d_drop +EXPORT_SYMBOL vmlinux 0x4051c368 param_set_bool +EXPORT_SYMBOL vmlinux 0x4081210c skb_csum_hwoffload_help +EXPORT_SYMBOL vmlinux 0x408e8322 icmp6_send +EXPORT_SYMBOL vmlinux 0x40929c5c register_quota_format EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem EXPORT_SYMBOL vmlinux 0x409873e3 tty_termios_baud_rate -EXPORT_SYMBOL vmlinux 0x40a64a1a scsi_block_requests EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc -EXPORT_SYMBOL vmlinux 0x40c560e3 _dev_notice +EXPORT_SYMBOL vmlinux 0x40c28b04 seq_hex_dump EXPORT_SYMBOL vmlinux 0x40c7247c si_meminfo EXPORT_SYMBOL vmlinux 0x40d04664 console_trylock EXPORT_SYMBOL vmlinux 0x40d59096 unregister_restart_handler -EXPORT_SYMBOL vmlinux 0x40d8b3d8 __dev_direct_xmit -EXPORT_SYMBOL vmlinux 0x40f54f66 dquot_release -EXPORT_SYMBOL vmlinux 0x41135338 xfrm_state_alloc -EXPORT_SYMBOL vmlinux 0x41208113 ndisc_mc_map +EXPORT_SYMBOL vmlinux 0x40dc597d jbd2_journal_invalidatepage +EXPORT_SYMBOL vmlinux 0x40ef8955 cdrom_open +EXPORT_SYMBOL vmlinux 0x4119d6a5 xfrm4_rcv_encap +EXPORT_SYMBOL vmlinux 0x411b04a2 fib_default_rule_add +EXPORT_SYMBOL vmlinux 0x411c0236 d_alloc +EXPORT_SYMBOL vmlinux 0x411f1c4e param_set_copystring +EXPORT_SYMBOL vmlinux 0x412c12c4 put_cmsg_scm_timestamping EXPORT_SYMBOL vmlinux 0x412f893c page_offline_begin -EXPORT_SYMBOL vmlinux 0x41377714 pci_enable_device_mem -EXPORT_SYMBOL vmlinux 0x4142355f xsk_tx_completed -EXPORT_SYMBOL vmlinux 0x41451e98 dm_table_get_size +EXPORT_SYMBOL vmlinux 0x413a2e46 get_mem_cgroup_from_mm +EXPORT_SYMBOL vmlinux 0x4141afb4 security_socket_socketpair EXPORT_SYMBOL vmlinux 0x4147aa02 __tracepoint_s390_cio_msch EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user EXPORT_SYMBOL vmlinux 0x4149b396 s390_isolate_bp_guest -EXPORT_SYMBOL vmlinux 0x4157fc05 truncate_inode_pages_range -EXPORT_SYMBOL vmlinux 0x41872e43 __netdev_notify_peers +EXPORT_SYMBOL vmlinux 0x414c5c65 ap_flush_queue +EXPORT_SYMBOL vmlinux 0x4163dbcb read_cache_pages +EXPORT_SYMBOL vmlinux 0x41691d17 kbd_ascebc +EXPORT_SYMBOL vmlinux 0x4187e99d prepare_to_swait_event +EXPORT_SYMBOL vmlinux 0x41881ff2 dev_uc_add EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time -EXPORT_SYMBOL vmlinux 0x418c95e5 pci_request_regions -EXPORT_SYMBOL vmlinux 0x419f8422 skb_vlan_pop -EXPORT_SYMBOL vmlinux 0x41abacef __sock_cmsg_send +EXPORT_SYMBOL vmlinux 0x419596a0 simple_nosetlease +EXPORT_SYMBOL vmlinux 0x41a0bf32 config_item_put +EXPORT_SYMBOL vmlinux 0x41b2302d skb_flow_get_icmp_tci +EXPORT_SYMBOL vmlinux 0x41b7cd94 neigh_carrier_down +EXPORT_SYMBOL vmlinux 0x41bbea4a done_path_create +EXPORT_SYMBOL vmlinux 0x41c0f109 simple_unlink +EXPORT_SYMBOL vmlinux 0x42096462 sock_rfree EXPORT_SYMBOL vmlinux 0x420964e3 __nla_parse EXPORT_SYMBOL vmlinux 0x42160169 flush_workqueue -EXPORT_SYMBOL vmlinux 0x421ff3bc passthru_features_check -EXPORT_SYMBOL vmlinux 0x4224a6ab netdev_lower_get_next EXPORT_SYMBOL vmlinux 0x4230a8d7 sg_nents_for_len +EXPORT_SYMBOL vmlinux 0x423795cf __xfrm_state_destroy EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp -EXPORT_SYMBOL vmlinux 0x42545783 pci_enable_device_io -EXPORT_SYMBOL vmlinux 0x425f741f kbd_free -EXPORT_SYMBOL vmlinux 0x426905cc netdev_features_change -EXPORT_SYMBOL vmlinux 0x426a3e82 iucv_bus -EXPORT_SYMBOL vmlinux 0x427670a7 lock_page_memcg -EXPORT_SYMBOL vmlinux 0x4295e631 sock_create +EXPORT_SYMBOL vmlinux 0x4251eeea netdev_refcnt_read +EXPORT_SYMBOL vmlinux 0x42645b84 inet_frag_kill +EXPORT_SYMBOL vmlinux 0x428b019b console_start EXPORT_SYMBOL vmlinux 0x429dcdc0 xa_find_after +EXPORT_SYMBOL vmlinux 0x429f2bd4 __ClearPageMovable EXPORT_SYMBOL vmlinux 0x42ae6d99 xa_find -EXPORT_SYMBOL vmlinux 0x42d06ab2 tty_port_free_xmit_buf -EXPORT_SYMBOL vmlinux 0x42d1c943 fscrypt_encrypt_block_inplace +EXPORT_SYMBOL vmlinux 0x42b4a9b8 d_instantiate +EXPORT_SYMBOL vmlinux 0x42ce3e5f send_sig_info +EXPORT_SYMBOL vmlinux 0x42d55207 config_item_set_name EXPORT_SYMBOL vmlinux 0x42f1b900 fb_pad_unaligned_buffer +EXPORT_SYMBOL vmlinux 0x42f94e65 mr_table_alloc EXPORT_SYMBOL vmlinux 0x42fc23ac prepare_creds +EXPORT_SYMBOL vmlinux 0x42fc9ec7 nf_register_net_hooks EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages +EXPORT_SYMBOL vmlinux 0x4316bb49 generic_update_time EXPORT_SYMBOL vmlinux 0x431ec3a9 __nla_validate -EXPORT_SYMBOL vmlinux 0x434c34df tty_kref_put -EXPORT_SYMBOL vmlinux 0x434ca561 iov_iter_alignment +EXPORT_SYMBOL vmlinux 0x432e816e vmemmap EXPORT_SYMBOL vmlinux 0x4351577a fb_parse_edid -EXPORT_SYMBOL vmlinux 0x43680a34 dm_get_device +EXPORT_SYMBOL vmlinux 0x4351fa70 proto_register +EXPORT_SYMBOL vmlinux 0x4354b215 has_capability +EXPORT_SYMBOL vmlinux 0x435cff76 netdev_lower_get_first_private_rcu EXPORT_SYMBOL vmlinux 0x43737fd1 __traceiter_dma_fence_signaled +EXPORT_SYMBOL vmlinux 0x43741aa2 param_get_short +EXPORT_SYMBOL vmlinux 0x4376a7cd seq_open EXPORT_SYMBOL vmlinux 0x437a0d6d __sock_tx_timestamp -EXPORT_SYMBOL vmlinux 0x43822d64 skb_clone_sk +EXPORT_SYMBOL vmlinux 0x437c4304 md_bitmap_start_sync EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security +EXPORT_SYMBOL vmlinux 0x438805d9 dma_set_mask EXPORT_SYMBOL vmlinux 0x43a4938f vm_get_page_prot -EXPORT_SYMBOL vmlinux 0x43b2352a scm_fp_dup -EXPORT_SYMBOL vmlinux 0x43bd561d cookie_ecn_ok EXPORT_SYMBOL vmlinux 0x43bdfa20 console_irq -EXPORT_SYMBOL vmlinux 0x43c9a446 _dev_crit +EXPORT_SYMBOL vmlinux 0x43c1361c unix_detach_fds EXPORT_SYMBOL vmlinux 0x43cf3bc3 dql_completed EXPORT_SYMBOL vmlinux 0x43d22fb9 groups_alloc -EXPORT_SYMBOL vmlinux 0x43d479aa skb_append -EXPORT_SYMBOL vmlinux 0x43e04d80 dev_change_flags -EXPORT_SYMBOL vmlinux 0x43f37027 locks_copy_lock -EXPORT_SYMBOL vmlinux 0x43f9143c neigh_parms_alloc -EXPORT_SYMBOL vmlinux 0x442a64cc single_open -EXPORT_SYMBOL vmlinux 0x4430bba5 sb_set_blocksize +EXPORT_SYMBOL vmlinux 0x43d2554e md_unregister_thread +EXPORT_SYMBOL vmlinux 0x43d9ba52 fault_in_readable +EXPORT_SYMBOL vmlinux 0x43ef968e jbd2_journal_release_jbd_inode +EXPORT_SYMBOL vmlinux 0x43ff8a0a alloc_skb_with_frags +EXPORT_SYMBOL vmlinux 0x44051c1f cdrom_get_media_event +EXPORT_SYMBOL vmlinux 0x442cae53 mini_qdisc_pair_init EXPORT_SYMBOL vmlinux 0x44469a76 crc_ccitt_false_table -EXPORT_SYMBOL vmlinux 0x44757577 pci_enable_msix_range -EXPORT_SYMBOL vmlinux 0x449dcc23 pci_set_mwi +EXPORT_SYMBOL vmlinux 0x44481680 kbd_alloc +EXPORT_SYMBOL vmlinux 0x44a6108f rtnl_notify EXPORT_SYMBOL vmlinux 0x44a6e90a irq_cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x44b17eb7 mpage_readpage EXPORT_SYMBOL vmlinux 0x44b30fb5 csch -EXPORT_SYMBOL vmlinux 0x44d547bc fscrypt_free_inode -EXPORT_SYMBOL vmlinux 0x44e82a2f truncate_setsize +EXPORT_SYMBOL vmlinux 0x44ba45d1 path_get +EXPORT_SYMBOL vmlinux 0x44cc10d1 misc_deregister +EXPORT_SYMBOL vmlinux 0x44d56ede pci_request_regions_exclusive +EXPORT_SYMBOL vmlinux 0x44deb338 mem_cgroup_from_task EXPORT_SYMBOL vmlinux 0x44e9a829 match_token EXPORT_SYMBOL vmlinux 0x44e9b7d0 __init_waitqueue_head EXPORT_SYMBOL vmlinux 0x45006cee default_red -EXPORT_SYMBOL vmlinux 0x4506d5b8 skb_realloc_headroom -EXPORT_SYMBOL vmlinux 0x4507c6f0 ilookup5_nowait -EXPORT_SYMBOL vmlinux 0x450fa6db ccw_device_dma_zalloc -EXPORT_SYMBOL vmlinux 0x45181b52 dma_unmap_sg_attrs -EXPORT_SYMBOL vmlinux 0x4527b672 pci_enable_msi -EXPORT_SYMBOL vmlinux 0x45299d0c skb_push +EXPORT_SYMBOL vmlinux 0x4502da90 get_user_pages_locked +EXPORT_SYMBOL vmlinux 0x450ef8d2 pci_choose_state +EXPORT_SYMBOL vmlinux 0x451c1eea scsi_get_device_flags_keyed +EXPORT_SYMBOL vmlinux 0x4526ae8c tcp_rcv_established EXPORT_SYMBOL vmlinux 0x452ba683 ipv6_ext_hdr +EXPORT_SYMBOL vmlinux 0x4531d1c6 wait_on_page_private_2 +EXPORT_SYMBOL vmlinux 0x45353d7c eth_header_parse EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled -EXPORT_SYMBOL vmlinux 0x456e7ad8 page_symlink +EXPORT_SYMBOL vmlinux 0x454e984c ap_send_config_uevent +EXPORT_SYMBOL vmlinux 0x454ee4e9 bdi_set_max_ratio +EXPORT_SYMBOL vmlinux 0x456a91c4 d_make_root EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user -EXPORT_SYMBOL vmlinux 0x45888c88 simple_write_begin -EXPORT_SYMBOL vmlinux 0x458ae5f0 pagecache_write_begin -EXPORT_SYMBOL vmlinux 0x45978767 eth_header_parse_protocol +EXPORT_SYMBOL vmlinux 0x45823927 cdev_alloc +EXPORT_SYMBOL vmlinux 0x4596f794 xfrm_state_free EXPORT_SYMBOL vmlinux 0x45b9877f prepare_to_wait +EXPORT_SYMBOL vmlinux 0x45c6a2cf netif_rx_any_context EXPORT_SYMBOL vmlinux 0x45d3c773 memdup_user_nul -EXPORT_SYMBOL vmlinux 0x45d9243a debug_unregister -EXPORT_SYMBOL vmlinux 0x45db9ca2 pci_get_domain_bus_and_slot +EXPORT_SYMBOL vmlinux 0x45d5f95a migrate_page_copy +EXPORT_SYMBOL vmlinux 0x45d73524 param_set_charp EXPORT_SYMBOL vmlinux 0x45f17fb6 __var_waitqueue EXPORT_SYMBOL vmlinux 0x45fdb146 dma_fence_enable_sw_signaling -EXPORT_SYMBOL vmlinux 0x46121042 dst_discard_out +EXPORT_SYMBOL vmlinux 0x46084825 netdev_lower_state_changed +EXPORT_SYMBOL vmlinux 0x460f4a34 flow_hash_from_keys EXPORT_SYMBOL vmlinux 0x461d16ca sg_nents -EXPORT_SYMBOL vmlinux 0x462052fa generic_parse_monolithic -EXPORT_SYMBOL vmlinux 0x462b17b3 dma_map_page_attrs -EXPORT_SYMBOL vmlinux 0x465fbc1a register_md_personality +EXPORT_SYMBOL vmlinux 0x462df288 get_vm_area +EXPORT_SYMBOL vmlinux 0x46408461 do_clone_file_range +EXPORT_SYMBOL vmlinux 0x46557500 generic_fadvise +EXPORT_SYMBOL vmlinux 0x46572d7c seg6_hmac_net_exit +EXPORT_SYMBOL vmlinux 0x465b3612 netif_carrier_on EXPORT_SYMBOL vmlinux 0x466c14a7 __delay -EXPORT_SYMBOL vmlinux 0x4674bae4 scsi_add_device -EXPORT_SYMBOL vmlinux 0x4677d93c xp_raw_get_dma -EXPORT_SYMBOL vmlinux 0x4688b82f arch_debugfs_dir -EXPORT_SYMBOL vmlinux 0x468dcada begin_new_exec -EXPORT_SYMBOL vmlinux 0x469ea83f sk_net_capable +EXPORT_SYMBOL vmlinux 0x467d6b4e mr_mfc_find_parent +EXPORT_SYMBOL vmlinux 0x467f7087 ap_cancel_message +EXPORT_SYMBOL vmlinux 0x46c80491 pci_disable_msix EXPORT_SYMBOL vmlinux 0x46cd8fce iucv_message_send EXPORT_SYMBOL vmlinux 0x46d59f7d smp_cpu_mt_shift +EXPORT_SYMBOL vmlinux 0x46dc4356 add_random_ready_callback EXPORT_SYMBOL vmlinux 0x46e319aa tcw_set_data EXPORT_SYMBOL vmlinux 0x46e68ccb dma_fence_signal_timestamp_locked -EXPORT_SYMBOL vmlinux 0x46ed0469 reuseport_alloc -EXPORT_SYMBOL vmlinux 0x46f37c52 blk_queue_chunk_sectors -EXPORT_SYMBOL vmlinux 0x470c46b9 sock_no_sendpage_locked -EXPORT_SYMBOL vmlinux 0x4714fd2b dma_free_attrs EXPORT_SYMBOL vmlinux 0x47392e76 sclp_ocf_cpc_name_copy -EXPORT_SYMBOL vmlinux 0x474854d9 pci_find_capability -EXPORT_SYMBOL vmlinux 0x47539c5d udp_skb_destructor -EXPORT_SYMBOL vmlinux 0x476d0253 __pskb_pull_tail +EXPORT_SYMBOL vmlinux 0x47498ad0 default_llseek +EXPORT_SYMBOL vmlinux 0x4752cfb9 xfrm_init_state +EXPORT_SYMBOL vmlinux 0x47596296 seq_pad EXPORT_SYMBOL vmlinux 0x47709e42 free_anon_bdev -EXPORT_SYMBOL vmlinux 0x477aec26 dquot_file_open +EXPORT_SYMBOL vmlinux 0x4783b587 load_nls +EXPORT_SYMBOL vmlinux 0x478c930d nexthop_set_hw_flags EXPORT_SYMBOL vmlinux 0x4791c6ea gen_pool_create +EXPORT_SYMBOL vmlinux 0x4794585a security_dentry_init_security +EXPORT_SYMBOL vmlinux 0x4794e7c3 md_integrity_register EXPORT_SYMBOL vmlinux 0x47a0cdcb mb_cache_entry_find_next -EXPORT_SYMBOL vmlinux 0x47a37472 blk_queue_bounce_limit -EXPORT_SYMBOL vmlinux 0x47ad3f87 netdev_port_same_parent_id +EXPORT_SYMBOL vmlinux 0x47b5f7da dev_loopback_xmit EXPORT_SYMBOL vmlinux 0x47c20f8a refcount_dec_not_one EXPORT_SYMBOL vmlinux 0x47c65bfc unregister_inet6addr_validator_notifier -EXPORT_SYMBOL vmlinux 0x47ee1d7a pci_bus_write_config_byte -EXPORT_SYMBOL vmlinux 0x47fb3fc7 tcp_stream_memory_free +EXPORT_SYMBOL vmlinux 0x47c8329f noop_fsync +EXPORT_SYMBOL vmlinux 0x47dc74fe vfs_setpos +EXPORT_SYMBOL vmlinux 0x47f8d635 __get_hash_from_flowi6 EXPORT_SYMBOL vmlinux 0x4823819e raw3270_buffer_address EXPORT_SYMBOL vmlinux 0x4829cf6b fscrypt_enqueue_decrypt_work -EXPORT_SYMBOL vmlinux 0x483a7e44 dquot_free_inode -EXPORT_SYMBOL vmlinux 0x483f4b9d sock_set_sndtimeo -EXPORT_SYMBOL vmlinux 0x4841c0da sock_no_ioctl +EXPORT_SYMBOL vmlinux 0x484b8145 dcbnl_cee_notify EXPORT_SYMBOL vmlinux 0x484f6edf ktime_get_coarse_real_ts64 +EXPORT_SYMBOL vmlinux 0x484fa287 ptep_xchg_lazy EXPORT_SYMBOL vmlinux 0x484fc1cb dma_fence_chain_ops -EXPORT_SYMBOL vmlinux 0x4850f896 migrate_page_copy -EXPORT_SYMBOL vmlinux 0x485b7959 stop_tty -EXPORT_SYMBOL vmlinux 0x485b93e7 sock_pfree -EXPORT_SYMBOL vmlinux 0x48707578 iov_iter_discard -EXPORT_SYMBOL vmlinux 0x4885ff92 __breadahead -EXPORT_SYMBOL vmlinux 0x489f6a4c neigh_sysctl_register +EXPORT_SYMBOL vmlinux 0x4871e68c redirty_page_for_writepage +EXPORT_SYMBOL vmlinux 0x487370a2 fault_in_writeable +EXPORT_SYMBOL vmlinux 0x487f1b6e may_setattr EXPORT_SYMBOL vmlinux 0x489f6e0b rdma_dim +EXPORT_SYMBOL vmlinux 0x48a8ffe3 input_reset_device EXPORT_SYMBOL vmlinux 0x48a91171 string_get_size -EXPORT_SYMBOL vmlinux 0x48da6178 scsi_vpd_lun_id -EXPORT_SYMBOL vmlinux 0x48f36f22 wait_on_page_bit_killable -EXPORT_SYMBOL vmlinux 0x48fe7863 param_get_charp -EXPORT_SYMBOL vmlinux 0x48fe8f39 qdisc_watchdog_init +EXPORT_SYMBOL vmlinux 0x48c769e6 tty_devnum +EXPORT_SYMBOL vmlinux 0x48c842ae single_release +EXPORT_SYMBOL vmlinux 0x48d21e08 fd_install +EXPORT_SYMBOL vmlinux 0x48e1c15f delete_from_page_cache EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert EXPORT_SYMBOL vmlinux 0x490dddac dq_data_lock -EXPORT_SYMBOL vmlinux 0x49107135 ip_tunnel_header_ops -EXPORT_SYMBOL vmlinux 0x49267c93 proto_unregister +EXPORT_SYMBOL vmlinux 0x492a694a follow_up EXPORT_SYMBOL vmlinux 0x4932011e gen_pool_free_owner +EXPORT_SYMBOL vmlinux 0x4945883c ipv6_dev_find +EXPORT_SYMBOL vmlinux 0x4951622f flow_rule_match_control EXPORT_SYMBOL vmlinux 0x495231ea mul_u64_u64_div_u64 -EXPORT_SYMBOL vmlinux 0x49542830 tcp_mss_to_mtu EXPORT_SYMBOL vmlinux 0x495990f3 hdmi_audio_infoframe_pack_only EXPORT_SYMBOL vmlinux 0x49672828 node_states -EXPORT_SYMBOL vmlinux 0x497b38c7 page_pool_destroy -EXPORT_SYMBOL vmlinux 0x4997c7a6 xfrm_init_replay -EXPORT_SYMBOL vmlinux 0x4999ecad dquot_drop -EXPORT_SYMBOL vmlinux 0x49a3613b tc_setup_cb_call -EXPORT_SYMBOL vmlinux 0x49cd1cfd pci_request_selected_regions_exclusive +EXPORT_SYMBOL vmlinux 0x4977ef92 close_fd_get_file +EXPORT_SYMBOL vmlinux 0x4996c43a tcp_read_sock +EXPORT_SYMBOL vmlinux 0x499a2ab6 file_fdatawait_range +EXPORT_SYMBOL vmlinux 0x49a6d64e udp_flush_pending_frames +EXPORT_SYMBOL vmlinux 0x49bacdce page_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0x49bf61d4 xfrm6_rcv EXPORT_SYMBOL vmlinux 0x49cd88a9 dma_fence_chain_find_seqno EXPORT_SYMBOL vmlinux 0x49e5e7f3 hdmi_drm_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0x4a40a6da dquot_mark_dquot_dirty +EXPORT_SYMBOL vmlinux 0x49f38131 kmem_cache_create_usercopy +EXPORT_SYMBOL vmlinux 0x4a12fd73 devm_memunmap +EXPORT_SYMBOL vmlinux 0x4a3656e5 __debug_sprintf_event +EXPORT_SYMBOL vmlinux 0x4a365e6a pci_find_parent_resource +EXPORT_SYMBOL vmlinux 0x4a43d704 skb_queue_purge +EXPORT_SYMBOL vmlinux 0x4a4bcbc9 clocksource_unregister +EXPORT_SYMBOL vmlinux 0x4a5012e4 vm_insert_pages +EXPORT_SYMBOL vmlinux 0x4a51fb48 xfrm_lookup_route EXPORT_SYMBOL vmlinux 0x4a572e3a swake_up_all -EXPORT_SYMBOL vmlinux 0x4a5cecfd d_move -EXPORT_SYMBOL vmlinux 0x4a686fa2 mntget -EXPORT_SYMBOL vmlinux 0x4a6b257b ping_prot -EXPORT_SYMBOL vmlinux 0x4a6fdddf mark_buffer_dirty_inode -EXPORT_SYMBOL vmlinux 0x4a7b3887 tty_schedule_flip +EXPORT_SYMBOL vmlinux 0x4a69e871 d_drop +EXPORT_SYMBOL vmlinux 0x4a76ce0e __cleancache_init_fs +EXPORT_SYMBOL vmlinux 0x4a7da211 generic_ro_fops +EXPORT_SYMBOL vmlinux 0x4a7fc03e pci_request_region EXPORT_SYMBOL vmlinux 0x4a8a6949 get_random_bytes_arch +EXPORT_SYMBOL vmlinux 0x4a918542 blk_rq_append_bio EXPORT_SYMBOL vmlinux 0x4a96a8eb xxh32_digest -EXPORT_SYMBOL vmlinux 0x4a9bae40 dma_mmap_attrs -EXPORT_SYMBOL vmlinux 0x4a9ebd1c __inc_zone_page_state -EXPORT_SYMBOL vmlinux 0x4aa04fc3 scsi_report_device_reset -EXPORT_SYMBOL vmlinux 0x4abe5bb7 seq_putc -EXPORT_SYMBOL vmlinux 0x4ac138f0 ipv6_sock_mc_join -EXPORT_SYMBOL vmlinux 0x4ac30da0 blk_execute_rq -EXPORT_SYMBOL vmlinux 0x4af054e7 inet6_csk_route_req +EXPORT_SYMBOL vmlinux 0x4a99a40b netdev_port_same_parent_id +EXPORT_SYMBOL vmlinux 0x4acc7cc7 block_page_mkwrite +EXPORT_SYMBOL vmlinux 0x4ad878c3 t10_pi_type1_crc +EXPORT_SYMBOL vmlinux 0x4af6124f netdev_name_node_alt_create EXPORT_SYMBOL vmlinux 0x4af6ddf0 kstrtou16 -EXPORT_SYMBOL vmlinux 0x4af94c7a nf_setsockopt -EXPORT_SYMBOL vmlinux 0x4affb4f3 netdev_upper_dev_link EXPORT_SYMBOL vmlinux 0x4b081d00 cred_fscmp -EXPORT_SYMBOL vmlinux 0x4b08f11a filemap_fdatawrite_range -EXPORT_SYMBOL vmlinux 0x4b342b70 proc_create_single_data +EXPORT_SYMBOL vmlinux 0x4b11b1ba pci_remove_bus +EXPORT_SYMBOL vmlinux 0x4b1cd9b4 neigh_lookup EXPORT_SYMBOL vmlinux 0x4b369167 __SCK__tp_func_s390_diagnose +EXPORT_SYMBOL vmlinux 0x4b3f246a blk_execute_rq +EXPORT_SYMBOL vmlinux 0x4b499a14 irq_set_chip EXPORT_SYMBOL vmlinux 0x4b5fd49e dm_kcopyd_do_callback -EXPORT_SYMBOL vmlinux 0x4b85e7f8 jbd2_journal_stop -EXPORT_SYMBOL vmlinux 0x4b8621b3 km_policy_notify +EXPORT_SYMBOL vmlinux 0x4b61ac99 ccw_device_start_key +EXPORT_SYMBOL vmlinux 0x4b6287e3 netpoll_print_options +EXPORT_SYMBOL vmlinux 0x4b8c6176 simple_fill_super EXPORT_SYMBOL vmlinux 0x4b8f4e7a down_read_trylock -EXPORT_SYMBOL vmlinux 0x4bb264e7 generic_read_dir -EXPORT_SYMBOL vmlinux 0x4bcb78cb vmf_insert_pfn_prot -EXPORT_SYMBOL vmlinux 0x4be4a37a md_update_sb -EXPORT_SYMBOL vmlinux 0x4be97fce blackhole_netdev -EXPORT_SYMBOL vmlinux 0x4c0e592d devm_of_iomap -EXPORT_SYMBOL vmlinux 0x4c3afe34 tty_port_tty_get +EXPORT_SYMBOL vmlinux 0x4b900c07 pci_alloc_host_bridge +EXPORT_SYMBOL vmlinux 0x4ba3bc6f qdisc_offload_graft_helper +EXPORT_SYMBOL vmlinux 0x4ba8f09b skb_dump +EXPORT_SYMBOL vmlinux 0x4bb81d40 eth_gro_receive +EXPORT_SYMBOL vmlinux 0x4be1413c iucv_if +EXPORT_SYMBOL vmlinux 0x4be39c12 __register_chrdev +EXPORT_SYMBOL vmlinux 0x4bebd376 __ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0x4bed37b8 __f_setown +EXPORT_SYMBOL vmlinux 0x4bf19ffc dev_load +EXPORT_SYMBOL vmlinux 0x4bf419f4 netlink_broadcast +EXPORT_SYMBOL vmlinux 0x4c0097fd ethtool_rx_flow_rule_destroy +EXPORT_SYMBOL vmlinux 0x4c18af46 tcp_child_process +EXPORT_SYMBOL vmlinux 0x4c3f1a59 pneigh_enqueue EXPORT_SYMBOL vmlinux 0x4c416eb9 LZ4_decompress_fast -EXPORT_SYMBOL vmlinux 0x4c43f228 forget_cached_acl -EXPORT_SYMBOL vmlinux 0x4c4779de tcp_md5_hash_skb_data +EXPORT_SYMBOL vmlinux 0x4c421a7c vfs_rmdir +EXPORT_SYMBOL vmlinux 0x4c4ad9d1 tcf_action_dump_1 EXPORT_SYMBOL vmlinux 0x4c4c956e nla_memcmp -EXPORT_SYMBOL vmlinux 0x4c6a4c67 jbd2_journal_forget -EXPORT_SYMBOL vmlinux 0x4c82c5b5 put_disk -EXPORT_SYMBOL vmlinux 0x4c87f7a4 alloc_etherdev_mqs -EXPORT_SYMBOL vmlinux 0x4cd2885b inet_csk_destroy_sock -EXPORT_SYMBOL vmlinux 0x4cd79816 ip_route_input_noref -EXPORT_SYMBOL vmlinux 0x4cdb14e7 peernet2id -EXPORT_SYMBOL vmlinux 0x4cefcab1 generic_file_splice_read -EXPORT_SYMBOL vmlinux 0x4cf6e826 dst_release -EXPORT_SYMBOL vmlinux 0x4d02af83 jbd2_fc_get_buf -EXPORT_SYMBOL vmlinux 0x4d20716c __put_page -EXPORT_SYMBOL vmlinux 0x4d2d931b bdi_set_max_ratio -EXPORT_SYMBOL vmlinux 0x4d3bfef2 param_array_ops +EXPORT_SYMBOL vmlinux 0x4c4ff1a5 import_iovec +EXPORT_SYMBOL vmlinux 0x4c511054 __filemap_set_wb_err +EXPORT_SYMBOL vmlinux 0x4c60c2be flow_rule_match_tcp +EXPORT_SYMBOL vmlinux 0x4c70f648 ccw_device_tm_start_timeout +EXPORT_SYMBOL vmlinux 0x4c8723df ccw_device_set_online +EXPORT_SYMBOL vmlinux 0x4c8a25e6 would_dump +EXPORT_SYMBOL vmlinux 0x4cd9a955 generic_key_instantiate +EXPORT_SYMBOL vmlinux 0x4cdda7c4 path_has_submounts +EXPORT_SYMBOL vmlinux 0x4cef07cd copy_page_from_iter_atomic +EXPORT_SYMBOL vmlinux 0x4cfa561e __xfrm_decode_session +EXPORT_SYMBOL vmlinux 0x4d047896 locks_free_lock +EXPORT_SYMBOL vmlinux 0x4d0f5962 key_unlink +EXPORT_SYMBOL vmlinux 0x4d1a4906 md_bitmap_sync_with_cluster +EXPORT_SYMBOL vmlinux 0x4d2204fc __udp_disconnect +EXPORT_SYMBOL vmlinux 0x4d23e3a4 scsi_block_requests +EXPORT_SYMBOL vmlinux 0x4d39c370 inet_dev_addr_type +EXPORT_SYMBOL vmlinux 0x4d4cf9bc put_cmsg_scm_timestamping64 +EXPORT_SYMBOL vmlinux 0x4d55ee53 jbd2_journal_submit_inode_data_buffers +EXPORT_SYMBOL vmlinux 0x4d5d5188 __sock_cmsg_send EXPORT_SYMBOL vmlinux 0x4d5fe525 percpu_counter_add_batch -EXPORT_SYMBOL vmlinux 0x4d78fd31 register_key_type +EXPORT_SYMBOL vmlinux 0x4d74bc56 ap_driver_register +EXPORT_SYMBOL vmlinux 0x4d784651 iterate_dir +EXPORT_SYMBOL vmlinux 0x4d8aad60 locks_init_lock EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase -EXPORT_SYMBOL vmlinux 0x4dca9b6f file_fdatawait_range -EXPORT_SYMBOL vmlinux 0x4dd4b27a dev_mc_flush EXPORT_SYMBOL vmlinux 0x4dda726b match_strlcpy -EXPORT_SYMBOL vmlinux 0x4de8007a module_refcount +EXPORT_SYMBOL vmlinux 0x4de78e9a cookie_timestamp_decode EXPORT_SYMBOL vmlinux 0x4dea1053 memchr EXPORT_SYMBOL vmlinux 0x4df2ea84 gen_estimator_read -EXPORT_SYMBOL vmlinux 0x4df9eeab dev_uc_unsync +EXPORT_SYMBOL vmlinux 0x4dfee27b dev_addr_del +EXPORT_SYMBOL vmlinux 0x4e02511c flow_rule_match_enc_control EXPORT_SYMBOL vmlinux 0x4e14fb7d __traceiter_s390_cio_msch -EXPORT_SYMBOL vmlinux 0x4e226b9a proc_create_seq_private +EXPORT_SYMBOL vmlinux 0x4e1c2074 ethtool_virtdev_set_link_ksettings +EXPORT_SYMBOL vmlinux 0x4e1c46c2 pci_bus_read_config_word +EXPORT_SYMBOL vmlinux 0x4e1d8134 tty_port_init +EXPORT_SYMBOL vmlinux 0x4e233994 ndo_dflt_fdb_del EXPORT_SYMBOL vmlinux 0x4e23d57e uv_info EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int EXPORT_SYMBOL vmlinux 0x4e36cdc4 __ubsan_handle_divrem_overflow -EXPORT_SYMBOL vmlinux 0x4e3cd78e scsi_device_lookup -EXPORT_SYMBOL vmlinux 0x4e417190 dma_sync_single_for_device -EXPORT_SYMBOL vmlinux 0x4e435ebb __generic_file_fsync +EXPORT_SYMBOL vmlinux 0x4e3f0b2c __inode_add_bytes EXPORT_SYMBOL vmlinux 0x4e4924ea init_virt_timer EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console -EXPORT_SYMBOL vmlinux 0x4e76a82f blk_mq_tagset_wait_completed_request -EXPORT_SYMBOL vmlinux 0x4e82e230 __cancel_dirty_page EXPORT_SYMBOL vmlinux 0x4e89ce10 idr_alloc_cyclic -EXPORT_SYMBOL vmlinux 0x4e8bbdeb block_write_full_page +EXPORT_SYMBOL vmlinux 0x4e8f11f6 jbd2_journal_dirty_metadata EXPORT_SYMBOL vmlinux 0x4e9e6a05 downgrade_write -EXPORT_SYMBOL vmlinux 0x4ea4da39 config_group_init_type_name +EXPORT_SYMBOL vmlinux 0x4e9f5b58 tty_register_device +EXPORT_SYMBOL vmlinux 0x4ea29de4 tcp_gro_complete EXPORT_SYMBOL vmlinux 0x4eada8f7 security_secid_to_secctx -EXPORT_SYMBOL vmlinux 0x4eaf50cb unregister_key_type +EXPORT_SYMBOL vmlinux 0x4ebaf938 inet_frag_pull_head EXPORT_SYMBOL vmlinux 0x4ec54e78 bitmap_to_arr32 -EXPORT_SYMBOL vmlinux 0x4ec6f99f posix_test_lock -EXPORT_SYMBOL vmlinux 0x4ecb6231 block_is_partially_uptodate -EXPORT_SYMBOL vmlinux 0x4ed4ab26 inet_register_protosw -EXPORT_SYMBOL vmlinux 0x4ee115c9 sync_file_create -EXPORT_SYMBOL vmlinux 0x4ee16b36 loop_register_transfer +EXPORT_SYMBOL vmlinux 0x4ed6714e page_pool_release_page +EXPORT_SYMBOL vmlinux 0x4ed90a67 debug_exception_common +EXPORT_SYMBOL vmlinux 0x4ef4a7c0 page_cache_prev_miss +EXPORT_SYMBOL vmlinux 0x4f02b3a9 seq_escape_mem +EXPORT_SYMBOL vmlinux 0x4f03bbba input_allocate_device EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create +EXPORT_SYMBOL vmlinux 0x4f236fcd km_state_notify EXPORT_SYMBOL vmlinux 0x4f2cd1b5 __cpcmd -EXPORT_SYMBOL vmlinux 0x4f377149 pcie_get_mps -EXPORT_SYMBOL vmlinux 0x4f38209d ip6_find_1stfragopt -EXPORT_SYMBOL vmlinux 0x4f535253 key_task_permission +EXPORT_SYMBOL vmlinux 0x4f390c79 blk_put_queue +EXPORT_SYMBOL vmlinux 0x4f3e68a8 __inode_sub_bytes EXPORT_SYMBOL vmlinux 0x4f5aa411 radix_tree_next_chunk -EXPORT_SYMBOL vmlinux 0x4f5dfc6f tty_lock -EXPORT_SYMBOL vmlinux 0x4f6547e1 blk_integrity_compare -EXPORT_SYMBOL vmlinux 0x4f9aca72 _copy_from_iter -EXPORT_SYMBOL vmlinux 0x4fca4c3d fs_param_is_string -EXPORT_SYMBOL vmlinux 0x4ff761d6 load_nls +EXPORT_SYMBOL vmlinux 0x4f7894f8 tty_insert_flip_string_fixed_flag +EXPORT_SYMBOL vmlinux 0x4f7940f9 unlock_new_inode +EXPORT_SYMBOL vmlinux 0x4fa7eff6 sg_miter_start +EXPORT_SYMBOL vmlinux 0x4faf8af3 vlan_dev_vlan_proto +EXPORT_SYMBOL vmlinux 0x4fc8e37e md_bitmap_endwrite EXPORT_SYMBOL vmlinux 0x4ffb59bf __SCK__tp_func_kfree EXPORT_SYMBOL vmlinux 0x5003d52a ap_perms_mutex -EXPORT_SYMBOL vmlinux 0x50060956 seq_open EXPORT_SYMBOL vmlinux 0x50097088 security_tun_dev_free_security EXPORT_SYMBOL vmlinux 0x5009c71d glob_match -EXPORT_SYMBOL vmlinux 0x501699de blk_cleanup_queue -EXPORT_SYMBOL vmlinux 0x50180ed0 configfs_register_default_group -EXPORT_SYMBOL vmlinux 0x50215e1b set_user_nice -EXPORT_SYMBOL vmlinux 0x50243d5d bio_clone_fast -EXPORT_SYMBOL vmlinux 0x5024b667 scsi_mode_sense -EXPORT_SYMBOL vmlinux 0x50260599 dec_node_page_state +EXPORT_SYMBOL vmlinux 0x5010d73b netif_tx_stop_all_queues +EXPORT_SYMBOL vmlinux 0x5029cf49 textsearch_destroy +EXPORT_SYMBOL vmlinux 0x503ee4fe bioset_integrity_create +EXPORT_SYMBOL vmlinux 0x50614732 devm_input_allocate_device EXPORT_SYMBOL vmlinux 0x50624917 sha1_init +EXPORT_SYMBOL vmlinux 0x506b5965 skb_dequeue_tail EXPORT_SYMBOL vmlinux 0x506dff1a __genradix_free EXPORT_SYMBOL vmlinux 0x507144f4 lockref_get_not_zero EXPORT_SYMBOL vmlinux 0x507b25d0 kstrndup -EXPORT_SYMBOL vmlinux 0x509298ce blk_queue_segment_boundary +EXPORT_SYMBOL vmlinux 0x507f7a76 tc_setup_cb_add EXPORT_SYMBOL vmlinux 0x50a4698c fb_videomode_to_modelist +EXPORT_SYMBOL vmlinux 0x50b35eb6 sock_set_keepalive EXPORT_SYMBOL vmlinux 0x50be748d security_ib_free_security EXPORT_SYMBOL vmlinux 0x50d035c2 vsscanf +EXPORT_SYMBOL vmlinux 0x50d9f021 pci_enable_ptm +EXPORT_SYMBOL vmlinux 0x50dddc3f pin_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0x50df0074 skb_coalesce_rx_frag EXPORT_SYMBOL vmlinux 0x50e087dc radix_tree_tag_get -EXPORT_SYMBOL vmlinux 0x50e35b89 memory_cgrp_subsys -EXPORT_SYMBOL vmlinux 0x50e74b88 dev_uc_add_excl +EXPORT_SYMBOL vmlinux 0x50f14482 mr_table_dump +EXPORT_SYMBOL vmlinux 0x51175d8e __module_get +EXPORT_SYMBOL vmlinux 0x5124ab2a xp_alloc +EXPORT_SYMBOL vmlinux 0x51257fea inode_insert5 EXPORT_SYMBOL vmlinux 0x512afb54 nla_put_nohdr -EXPORT_SYMBOL vmlinux 0x51305d67 get_unmapped_area -EXPORT_SYMBOL vmlinux 0x5136685c seq_pad -EXPORT_SYMBOL vmlinux 0x513778a3 show_init_ipc_ns +EXPORT_SYMBOL vmlinux 0x5146a531 flow_rule_match_ports EXPORT_SYMBOL vmlinux 0x51473316 __cpu_present_mask -EXPORT_SYMBOL vmlinux 0x514b809e can_nice -EXPORT_SYMBOL vmlinux 0x515270ec set_bh_page +EXPORT_SYMBOL vmlinux 0x5152ef87 netlbl_calipso_ops_register +EXPORT_SYMBOL vmlinux 0x515c6db2 ccw_device_tm_start +EXPORT_SYMBOL vmlinux 0x515ea7d2 user_path_at_empty EXPORT_SYMBOL vmlinux 0x51641162 opal_unlock_from_suspend -EXPORT_SYMBOL vmlinux 0x5187d11b configfs_remove_default_groups -EXPORT_SYMBOL vmlinux 0x5188084f netdev_master_upper_dev_link +EXPORT_SYMBOL vmlinux 0x51674810 input_mt_get_slot_by_key +EXPORT_SYMBOL vmlinux 0x5176a208 tcf_idr_create +EXPORT_SYMBOL vmlinux 0x518552f0 scsicam_bios_param EXPORT_SYMBOL vmlinux 0x518bb9e6 diag204 -EXPORT_SYMBOL vmlinux 0x51eaa0a3 blk_mq_delay_run_hw_queue +EXPORT_SYMBOL vmlinux 0x51900a07 single_open_size +EXPORT_SYMBOL vmlinux 0x51b51568 jbd2_journal_lock_updates +EXPORT_SYMBOL vmlinux 0x51e5a9aa dquot_reclaim_space_nodirty +EXPORT_SYMBOL vmlinux 0x51e5af12 dcb_ieee_getapp_mask +EXPORT_SYMBOL vmlinux 0x51f48e32 generic_parse_monolithic EXPORT_SYMBOL vmlinux 0x51f86a1a blk_limits_io_opt -EXPORT_SYMBOL vmlinux 0x52009b2b unregister_nexthop_notifier -EXPORT_SYMBOL vmlinux 0x5201d29c kmem_cache_destroy -EXPORT_SYMBOL vmlinux 0x520b044a rt_mutex_base_init +EXPORT_SYMBOL vmlinux 0x5215e83c jbd2_journal_stop EXPORT_SYMBOL vmlinux 0x52185192 __nla_reserve_nohdr -EXPORT_SYMBOL vmlinux 0x524197bc freezing_slow_path -EXPORT_SYMBOL vmlinux 0x525ae3d0 put_watch_queue +EXPORT_SYMBOL vmlinux 0x52322ca4 file_open_root +EXPORT_SYMBOL vmlinux 0x523a74ae ap_queue_init_reply +EXPORT_SYMBOL vmlinux 0x524a20ac try_to_release_page EXPORT_SYMBOL vmlinux 0x52819990 kernel_cpumcf_alert -EXPORT_SYMBOL vmlinux 0x529231a7 kfree_skb -EXPORT_SYMBOL vmlinux 0x52b1354d pci_write_vpd -EXPORT_SYMBOL vmlinux 0x52b3377f blk_sync_queue EXPORT_SYMBOL vmlinux 0x52ba6325 __cpuhp_setup_state +EXPORT_SYMBOL vmlinux 0x52ce9a7e xsk_uses_need_wakeup +EXPORT_SYMBOL vmlinux 0x52d53fdc md_flush_request EXPORT_SYMBOL vmlinux 0x52d717da xz_dec_init +EXPORT_SYMBOL vmlinux 0x52e14b06 skb_prepare_seq_read EXPORT_SYMBOL vmlinux 0x530bbc96 __hsiphash_unaligned +EXPORT_SYMBOL vmlinux 0x530d313f ap_get_qdev EXPORT_SYMBOL vmlinux 0x531625b6 wait_for_completion +EXPORT_SYMBOL vmlinux 0x53272d85 cdrom_get_last_written EXPORT_SYMBOL vmlinux 0x5338184f ethtool_sprintf -EXPORT_SYMBOL vmlinux 0x533c97bf dev_get_phys_port_id -EXPORT_SYMBOL vmlinux 0x534f3964 kernel_read -EXPORT_SYMBOL vmlinux 0x535ed203 setattr_prepare -EXPORT_SYMBOL vmlinux 0x537a0b38 mr_table_alloc -EXPORT_SYMBOL vmlinux 0x53bd785b set_create_files_as -EXPORT_SYMBOL vmlinux 0x53c1cd8b dquot_commit +EXPORT_SYMBOL vmlinux 0x533aa67c __inet_stream_connect +EXPORT_SYMBOL vmlinux 0x534462bd sync_file_create EXPORT_SYMBOL vmlinux 0x53c24b01 mutex_is_locked -EXPORT_SYMBOL vmlinux 0x53e132bd mpage_readpage -EXPORT_SYMBOL vmlinux 0x53e2ade7 blk_mq_end_request -EXPORT_SYMBOL vmlinux 0x53e34ccb sk_wait_data -EXPORT_SYMBOL vmlinux 0x53eaac75 __ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0x53edf8ea dst_discard_out +EXPORT_SYMBOL vmlinux 0x53ef8c12 security_skb_classify_flow EXPORT_SYMBOL vmlinux 0x53fd6dc9 dma_fence_signal_locked EXPORT_SYMBOL vmlinux 0x540862e2 diag14 -EXPORT_SYMBOL vmlinux 0x54132dc8 ip_frag_init -EXPORT_SYMBOL vmlinux 0x541bde7d dev_change_carrier -EXPORT_SYMBOL vmlinux 0x54223b55 udp_sendmsg +EXPORT_SYMBOL vmlinux 0x542aa8cc inet_get_local_port_range EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start -EXPORT_SYMBOL vmlinux 0x5463ac3e clear_bdi_congested -EXPORT_SYMBOL vmlinux 0x5480a020 tcf_action_dump_1 +EXPORT_SYMBOL vmlinux 0x5453604f netdev_lower_get_next +EXPORT_SYMBOL vmlinux 0x5453d8cb sk_capable +EXPORT_SYMBOL vmlinux 0x546cd398 unlock_rename EXPORT_SYMBOL vmlinux 0x548d17c4 airq_iv_alloc -EXPORT_SYMBOL vmlinux 0x54a22892 inet_csk_reqsk_queue_drop_and_put -EXPORT_SYMBOL vmlinux 0x54a74605 truncate_pagecache EXPORT_SYMBOL vmlinux 0x54b1fac6 __ubsan_handle_load_invalid_value -EXPORT_SYMBOL vmlinux 0x54c55e27 tcp_v4_syn_recv_sock EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp -EXPORT_SYMBOL vmlinux 0x54e9c4a6 napi_disable -EXPORT_SYMBOL vmlinux 0x54f0aef3 skb_csum_hwoffload_help -EXPORT_SYMBOL vmlinux 0x54f586d2 dquot_alloc_inode -EXPORT_SYMBOL vmlinux 0x54f9e198 input_event +EXPORT_SYMBOL vmlinux 0x54f16d4f pci_ep_cfs_remove_epf_group +EXPORT_SYMBOL vmlinux 0x54f18e06 arp_create +EXPORT_SYMBOL vmlinux 0x54f530b9 __cleancache_invalidate_page +EXPORT_SYMBOL vmlinux 0x54fc4734 nf_unregister_sockopt EXPORT_SYMBOL vmlinux 0x5506b8f7 netlbl_bitmap_setbit EXPORT_SYMBOL vmlinux 0x551668bc kstrtoull_from_user EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color -EXPORT_SYMBOL vmlinux 0x551ebffe new_inode +EXPORT_SYMBOL vmlinux 0x551bf945 netdev_class_remove_file_ns EXPORT_SYMBOL vmlinux 0x552556a8 gen_pool_dma_alloc_algo -EXPORT_SYMBOL vmlinux 0x553caf2a xfrm_state_unregister_afinfo -EXPORT_SYMBOL vmlinux 0x554107a0 vfs_fsync_range +EXPORT_SYMBOL vmlinux 0x552715af dst_alloc +EXPORT_SYMBOL vmlinux 0x55312067 setattr_prepare +EXPORT_SYMBOL vmlinux 0x553e9725 md_update_sb +EXPORT_SYMBOL vmlinux 0x554186e7 set_page_dirty +EXPORT_SYMBOL vmlinux 0x554977c6 key_link EXPORT_SYMBOL vmlinux 0x554ae3a4 irq_poll_sched -EXPORT_SYMBOL vmlinux 0x554ef848 genl_unregister_family +EXPORT_SYMBOL vmlinux 0x5556e9fd xfrm_find_acq +EXPORT_SYMBOL vmlinux 0x555bafed tcp_md5_do_del EXPORT_SYMBOL vmlinux 0x555ccb97 up_read -EXPORT_SYMBOL vmlinux 0x557852c8 blk_queue_io_min -EXPORT_SYMBOL vmlinux 0x55801587 pci_dev_driver +EXPORT_SYMBOL vmlinux 0x55735e0d truncate_pagecache_range +EXPORT_SYMBOL vmlinux 0x5588a2c8 __sock_create EXPORT_SYMBOL vmlinux 0x558b281d aes_expandkey -EXPORT_SYMBOL vmlinux 0x559f2cc3 remap_vmalloc_range +EXPORT_SYMBOL vmlinux 0x55912e97 xfrm6_rcv_tnl +EXPORT_SYMBOL vmlinux 0x55a2dea0 ccw_device_dma_free EXPORT_SYMBOL vmlinux 0x55a3f3e0 sclp_add_request -EXPORT_SYMBOL vmlinux 0x55c834f3 __skb_flow_dissect +EXPORT_SYMBOL vmlinux 0x55a77411 iov_iter_init +EXPORT_SYMBOL vmlinux 0x55ba4b58 inetdev_by_index +EXPORT_SYMBOL vmlinux 0x55bc9442 filemap_invalidate_lock_two +EXPORT_SYMBOL vmlinux 0x55d21e72 filp_close EXPORT_SYMBOL vmlinux 0x55d63108 kstrtol_from_user -EXPORT_SYMBOL vmlinux 0x55d6bdf7 notify_change EXPORT_SYMBOL vmlinux 0x55e31703 ethtool_convert_link_mode_to_legacy_u32 EXPORT_SYMBOL vmlinux 0x55eccdf5 mod_virt_timer -EXPORT_SYMBOL vmlinux 0x55f99d22 xfrm6_rcv_encap EXPORT_SYMBOL vmlinux 0x55fbaf1d smsg_unregister_callback +EXPORT_SYMBOL vmlinux 0x5602785f iget_locked +EXPORT_SYMBOL vmlinux 0x56275f41 frontswap_register_ops EXPORT_SYMBOL vmlinux 0x562b9be5 ap_test_config_ctrl_domain EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user -EXPORT_SYMBOL vmlinux 0x5640dba8 ip_mc_join_group +EXPORT_SYMBOL vmlinux 0x563fe399 bpf_prog_get_type_path EXPORT_SYMBOL vmlinux 0x564405cb __cpu_online_mask EXPORT_SYMBOL vmlinux 0x56470118 __warn_printk -EXPORT_SYMBOL vmlinux 0x56523af7 user_path_create EXPORT_SYMBOL vmlinux 0x56555401 nla_put_64bit EXPORT_SYMBOL vmlinux 0x565671df posix_acl_to_xattr +EXPORT_SYMBOL vmlinux 0x5658acbd pci_setup_cardbus EXPORT_SYMBOL vmlinux 0x5660f88f raw3270_add_view -EXPORT_SYMBOL vmlinux 0x5662947c cdrom_get_last_written -EXPORT_SYMBOL vmlinux 0x56737ae1 udp6_seq_ops +EXPORT_SYMBOL vmlinux 0x5677f800 remap_vmalloc_range EXPORT_SYMBOL vmlinux 0x56802ae8 rps_cpu_mask -EXPORT_SYMBOL vmlinux 0x569341fd md_bitmap_cond_end_sync -EXPORT_SYMBOL vmlinux 0x56b759fe vlan_dev_vlan_proto -EXPORT_SYMBOL vmlinux 0x56be9569 __blk_mq_end_request +EXPORT_SYMBOL vmlinux 0x568f99fc jbd2_journal_flush +EXPORT_SYMBOL vmlinux 0x56986e4c neigh_changeaddr +EXPORT_SYMBOL vmlinux 0x56bcd639 neigh_destroy EXPORT_SYMBOL vmlinux 0x56c3db64 __tracepoint_kmalloc -EXPORT_SYMBOL vmlinux 0x56c40272 fwnode_irq_get EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg -EXPORT_SYMBOL vmlinux 0x56cce1c6 __alloc_pages EXPORT_SYMBOL vmlinux 0x56d78870 chsc EXPORT_SYMBOL vmlinux 0x56de5ace __cpuhp_remove_state -EXPORT_SYMBOL vmlinux 0x56def661 file_remove_privs -EXPORT_SYMBOL vmlinux 0x56e15b52 netdev_info -EXPORT_SYMBOL vmlinux 0x56e5c454 tty_port_open -EXPORT_SYMBOL vmlinux 0x56f32189 unix_get_socket -EXPORT_SYMBOL vmlinux 0x56ff9a7a __qdisc_calculate_pkt_len -EXPORT_SYMBOL vmlinux 0x5708b0e2 locks_lock_inode_wait -EXPORT_SYMBOL vmlinux 0x5709b69c arp_xmit -EXPORT_SYMBOL vmlinux 0x5727495b dev_uc_init +EXPORT_SYMBOL vmlinux 0x56e5a536 inet6_del_offload +EXPORT_SYMBOL vmlinux 0x56f45538 tcf_block_netif_keep_dst +EXPORT_SYMBOL vmlinux 0x56f68bb5 mark_buffer_write_io_error +EXPORT_SYMBOL vmlinux 0x56fca358 follow_down +EXPORT_SYMBOL vmlinux 0x56fe86c5 netdev_info +EXPORT_SYMBOL vmlinux 0x57272529 vfs_link EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region -EXPORT_SYMBOL vmlinux 0x5763e09f node_data EXPORT_SYMBOL vmlinux 0x57674fd7 __sw_hweight16 -EXPORT_SYMBOL vmlinux 0x577288c1 jbd2_journal_grab_journal_head -EXPORT_SYMBOL vmlinux 0x57786744 security_path_unlink -EXPORT_SYMBOL vmlinux 0x5781e366 inet_frags_fini -EXPORT_SYMBOL vmlinux 0x579af9dd keyring_clear -EXPORT_SYMBOL vmlinux 0x57b44eed pci_try_set_mwi +EXPORT_SYMBOL vmlinux 0x576a9fe5 truncate_setsize +EXPORT_SYMBOL vmlinux 0x5770f940 napi_gro_frags +EXPORT_SYMBOL vmlinux 0x577eb065 ipv6_chk_addr +EXPORT_SYMBOL vmlinux 0x577ec989 vfs_tmpfile +EXPORT_SYMBOL vmlinux 0x578eabe1 generic_perform_write +EXPORT_SYMBOL vmlinux 0x5793e03d file_update_time +EXPORT_SYMBOL vmlinux 0x579f0d74 pci_find_bus +EXPORT_SYMBOL vmlinux 0x57af99e3 xfrm_trans_queue_net +EXPORT_SYMBOL vmlinux 0x57b8cdb0 set_anon_super_fc +EXPORT_SYMBOL vmlinux 0x57c36f7a netdev_set_num_tc EXPORT_SYMBOL vmlinux 0x57c615ec cpumask_any_but -EXPORT_SYMBOL vmlinux 0x57e5a4ff fwnode_get_mac_address -EXPORT_SYMBOL vmlinux 0x57eb7ef0 bioset_init +EXPORT_SYMBOL vmlinux 0x57dcd878 vm_map_pages_zero +EXPORT_SYMBOL vmlinux 0x57eb5194 tty_port_hangup EXPORT_SYMBOL vmlinux 0x57f18433 swake_up_one -EXPORT_SYMBOL vmlinux 0x57fa1354 pci_bus_find_capability -EXPORT_SYMBOL vmlinux 0x5803618a clocksource_unregister -EXPORT_SYMBOL vmlinux 0x580d1cd7 qdisc_hash_del -EXPORT_SYMBOL vmlinux 0x580f8d05 __mod_node_page_state +EXPORT_SYMBOL vmlinux 0x57fb7e9e pcie_print_link_status EXPORT_SYMBOL vmlinux 0x58125fbb nla_reserve_64bit -EXPORT_SYMBOL vmlinux 0x5817f24a inet_csk_complete_hashdance EXPORT_SYMBOL vmlinux 0x5818fe3c posix_acl_from_mode EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate -EXPORT_SYMBOL vmlinux 0x5823a7ea dump_page EXPORT_SYMBOL vmlinux 0x582b6275 xfrm_if_unregister_cb -EXPORT_SYMBOL vmlinux 0x583a138c pcie_relaxed_ordering_enabled -EXPORT_SYMBOL vmlinux 0x58465ef1 blkdev_put -EXPORT_SYMBOL vmlinux 0x585a4238 netdev_set_tc_queue +EXPORT_SYMBOL vmlinux 0x582e7706 crypto_sha512_update +EXPORT_SYMBOL vmlinux 0x58474d1a csum_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0x585b22ec scsi_report_opcode +EXPORT_SYMBOL vmlinux 0x585b963d inet_sk_set_state EXPORT_SYMBOL vmlinux 0x587b0954 kvasprintf -EXPORT_SYMBOL vmlinux 0x58887b55 task_work_add +EXPORT_SYMBOL vmlinux 0x588cfb59 netdev_bonding_info_change +EXPORT_SYMBOL vmlinux 0x5890da71 get_unmapped_area EXPORT_SYMBOL vmlinux 0x58acf24b mdiobus_register_board_info EXPORT_SYMBOL vmlinux 0x58b4645c dev_close_many +EXPORT_SYMBOL vmlinux 0x58b5331b nexthop_bucket_set_hw_flags EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard -EXPORT_SYMBOL vmlinux 0x58cc7ee9 skb_put +EXPORT_SYMBOL vmlinux 0x58b828f6 __dev_get_by_name +EXPORT_SYMBOL vmlinux 0x58bb7400 input_alloc_absinfo +EXPORT_SYMBOL vmlinux 0x58bbae1b __bread_gfp EXPORT_SYMBOL vmlinux 0x58cd1b54 string_escape_mem -EXPORT_SYMBOL vmlinux 0x58ce5746 pci_release_region -EXPORT_SYMBOL vmlinux 0x58d37bef security_sk_clone -EXPORT_SYMBOL vmlinux 0x58e18856 blk_queue_physical_block_size EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io -EXPORT_SYMBOL vmlinux 0x58e588de fscrypt_setup_filename EXPORT_SYMBOL vmlinux 0x58eae9ec gen_pool_dma_zalloc_align -EXPORT_SYMBOL vmlinux 0x5901bcf2 reset_guest_reference_bit -EXPORT_SYMBOL vmlinux 0x59257bf1 try_to_writeback_inodes_sb -EXPORT_SYMBOL vmlinux 0x594438b6 __dquot_transfer -EXPORT_SYMBOL vmlinux 0x596580ad netdev_class_remove_file_ns -EXPORT_SYMBOL vmlinux 0x5969dd7f may_umount -EXPORT_SYMBOL vmlinux 0x596da3ff configfs_unregister_default_group -EXPORT_SYMBOL vmlinux 0x597be8b5 sock_no_sendmsg_locked -EXPORT_SYMBOL vmlinux 0x597cad5b generic_setlease -EXPORT_SYMBOL vmlinux 0x598bdc98 pci_read_config_word +EXPORT_SYMBOL vmlinux 0x5919b31b __vfs_removexattr +EXPORT_SYMBOL vmlinux 0x5926c237 input_close_device +EXPORT_SYMBOL vmlinux 0x59274c35 pci_dev_driver +EXPORT_SYMBOL vmlinux 0x5959ff96 key_revoke EXPORT_SYMBOL vmlinux 0x598f0a95 udplite_table -EXPORT_SYMBOL vmlinux 0x599f0d75 reuseport_select_sock -EXPORT_SYMBOL vmlinux 0x59b35ba1 netif_set_real_num_tx_queues +EXPORT_SYMBOL vmlinux 0x599d0554 ccw_driver_register +EXPORT_SYMBOL vmlinux 0x59a875ff pskb_trim_rcsum_slow EXPORT_SYMBOL vmlinux 0x59b4ac3e tcp_memory_allocated -EXPORT_SYMBOL vmlinux 0x59b6858f param_set_ulong -EXPORT_SYMBOL vmlinux 0x59bc344b blk_mq_free_tag_set -EXPORT_SYMBOL vmlinux 0x59d18590 request_key_tag -EXPORT_SYMBOL vmlinux 0x5a070494 address_space_init_once +EXPORT_SYMBOL vmlinux 0x59b94e89 ip6_frag_init +EXPORT_SYMBOL vmlinux 0x59dc5a98 unix_attach_fds +EXPORT_SYMBOL vmlinux 0x59dcb2fd ip6_fraglist_prepare +EXPORT_SYMBOL vmlinux 0x5a051afe fib_notifier_ops_register EXPORT_SYMBOL vmlinux 0x5a0b73d0 zlib_deflateInit2 +EXPORT_SYMBOL vmlinux 0x5a0d2311 blk_queue_max_write_same_sectors EXPORT_SYMBOL vmlinux 0x5a10f98e del_virt_timer -EXPORT_SYMBOL vmlinux 0x5a229a48 md_wait_for_blocked_rdev -EXPORT_SYMBOL vmlinux 0x5a31670c key_type_keyring -EXPORT_SYMBOL vmlinux 0x5a433784 param_ops_invbool +EXPORT_SYMBOL vmlinux 0x5a1d230d scsi_add_device +EXPORT_SYMBOL vmlinux 0x5a263207 kthread_bind EXPORT_SYMBOL vmlinux 0x5a4d313e gf128mul_4k_lle EXPORT_SYMBOL vmlinux 0x5a5e7ea3 simple_read_from_buffer EXPORT_SYMBOL vmlinux 0x5a630934 free_bucket_spinlocks -EXPORT_SYMBOL vmlinux 0x5a6389a0 __dev_kfree_skb_irq -EXPORT_SYMBOL vmlinux 0x5a7c4591 remove_arg_zero -EXPORT_SYMBOL vmlinux 0x5a8c50ed skb_dump -EXPORT_SYMBOL vmlinux 0x5aca8c9d make_kuid -EXPORT_SYMBOL vmlinux 0x5acce95d napi_complete_done -EXPORT_SYMBOL vmlinux 0x5ad6395b __sync_dirty_buffer -EXPORT_SYMBOL vmlinux 0x5adc2959 udp_lib_get_port +EXPORT_SYMBOL vmlinux 0x5a83e2f1 mark_buffer_dirty +EXPORT_SYMBOL vmlinux 0x5a99a0d7 flow_get_u32_dst +EXPORT_SYMBOL vmlinux 0x5adc9474 inet6_bind EXPORT_SYMBOL vmlinux 0x5ae1154b __traceiter_kfree -EXPORT_SYMBOL vmlinux 0x5af2d1c9 pci_disable_msi -EXPORT_SYMBOL vmlinux 0x5b1cd16e tcf_get_next_chain -EXPORT_SYMBOL vmlinux 0x5b2539e6 vfs_tmpfile -EXPORT_SYMBOL vmlinux 0x5b25770b blk_queue_flag_clear +EXPORT_SYMBOL vmlinux 0x5b05cb8c trace_raw_output_prep +EXPORT_SYMBOL vmlinux 0x5b0ca115 inode_init_owner +EXPORT_SYMBOL vmlinux 0x5b209f3e netdev_sk_get_lowest_dev +EXPORT_SYMBOL vmlinux 0x5b28c73d __traceiter_mmap_lock_start_locking EXPORT_SYMBOL vmlinux 0x5b2b28ab tcw_add_tidaw -EXPORT_SYMBOL vmlinux 0x5b2b99c7 vm_map_ram -EXPORT_SYMBOL vmlinux 0x5b2fb536 md_bitmap_startwrite EXPORT_SYMBOL vmlinux 0x5b36d5dd utf8agemax -EXPORT_SYMBOL vmlinux 0x5b43a177 generic_file_open -EXPORT_SYMBOL vmlinux 0x5b5069d1 alloc_netdev_mqs +EXPORT_SYMBOL vmlinux 0x5b471f24 tcf_qevent_dump +EXPORT_SYMBOL vmlinux 0x5b515684 configfs_register_subsystem EXPORT_SYMBOL vmlinux 0x5b604bd1 segment_type +EXPORT_SYMBOL vmlinux 0x5b64a0dd dev_addr_init +EXPORT_SYMBOL vmlinux 0x5b6877fe dquot_claim_space_nodirty EXPORT_SYMBOL vmlinux 0x5b745a3d xa_load -EXPORT_SYMBOL vmlinux 0x5b766782 copy_string_kernel -EXPORT_SYMBOL vmlinux 0x5b76bcd2 sock_no_shutdown -EXPORT_SYMBOL vmlinux 0x5b997d93 neigh_lookup_nodev -EXPORT_SYMBOL vmlinux 0x5b9d9ec7 dquot_destroy -EXPORT_SYMBOL vmlinux 0x5bbf766a tty_flip_buffer_push +EXPORT_SYMBOL vmlinux 0x5b7ac79f neigh_update +EXPORT_SYMBOL vmlinux 0x5b8b422a security_path_mknod +EXPORT_SYMBOL vmlinux 0x5b8d0497 security_sock_graft +EXPORT_SYMBOL vmlinux 0x5b9545b1 skb_copy_expand +EXPORT_SYMBOL vmlinux 0x5ba2e0d5 inet_addr_type_dev_table +EXPORT_SYMBOL vmlinux 0x5bcfd3ed dcache_dir_lseek +EXPORT_SYMBOL vmlinux 0x5bd33ea1 __dev_kfree_skb_irq EXPORT_SYMBOL vmlinux 0x5bd4ff88 flow_action_cookie_create +EXPORT_SYMBOL vmlinux 0x5bd83de0 cdev_add EXPORT_SYMBOL vmlinux 0x5bdcabe7 gen_pool_first_fit_order_align +EXPORT_SYMBOL vmlinux 0x5bdeb244 pcim_iounmap EXPORT_SYMBOL vmlinux 0x5be63c5b crc32c_csum_stub -EXPORT_SYMBOL vmlinux 0x5bf9ed5f pci_set_master +EXPORT_SYMBOL vmlinux 0x5be72203 flow_block_cb_incref EXPORT_SYMBOL vmlinux 0x5c2d456c utf8_strncmp EXPORT_SYMBOL vmlinux 0x5c3c7387 kstrtoull -EXPORT_SYMBOL vmlinux 0x5c55feff d_exact_alias -EXPORT_SYMBOL vmlinux 0x5c5fc7ef remove_watch_from_object -EXPORT_SYMBOL vmlinux 0x5c72692c netdev_set_num_tc -EXPORT_SYMBOL vmlinux 0x5c776588 sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0x5c41d78a neigh_sysctl_unregister +EXPORT_SYMBOL vmlinux 0x5c427b0c vm_mmap +EXPORT_SYMBOL vmlinux 0x5c4e02c1 netdev_err +EXPORT_SYMBOL vmlinux 0x5c822264 dquot_get_next_id +EXPORT_SYMBOL vmlinux 0x5c85e2ad seq_dentry +EXPORT_SYMBOL vmlinux 0x5c8a089f rtnl_set_sk_err EXPORT_SYMBOL vmlinux 0x5cb4090a raw3270_request_set_cmd -EXPORT_SYMBOL vmlinux 0x5cbaded0 filemap_write_and_wait_range +EXPORT_SYMBOL vmlinux 0x5cbc7a51 scsi_dma_map EXPORT_SYMBOL vmlinux 0x5cc32bdc bitmap_copy_le EXPORT_SYMBOL vmlinux 0x5cd6f99b completion_done -EXPORT_SYMBOL vmlinux 0x5ce85b1c scsi_print_command EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor -EXPORT_SYMBOL vmlinux 0x5cf63738 security_inet_conn_request -EXPORT_SYMBOL vmlinux 0x5d05098e lookup_one_len_unlocked +EXPORT_SYMBOL vmlinux 0x5cf73085 textsearch_find_continuous +EXPORT_SYMBOL vmlinux 0x5d0b826d skb_checksum_help +EXPORT_SYMBOL vmlinux 0x5d132f23 d_find_alias EXPORT_SYMBOL vmlinux 0x5d16d8cd radix_tree_replace_slot -EXPORT_SYMBOL vmlinux 0x5d1c2855 ip6_fraglist_prepare -EXPORT_SYMBOL vmlinux 0x5d284ff5 page_mapped -EXPORT_SYMBOL vmlinux 0x5d48f6a4 tcp_simple_retransmit EXPORT_SYMBOL vmlinux 0x5d49aabc init_wait_var_entry -EXPORT_SYMBOL vmlinux 0x5d4e79b3 jbd2__journal_start -EXPORT_SYMBOL vmlinux 0x5d73dd76 generic_update_time +EXPORT_SYMBOL vmlinux 0x5d5238dd skb_append +EXPORT_SYMBOL vmlinux 0x5d52ddd1 netdev_rx_csum_fault +EXPORT_SYMBOL vmlinux 0x5d5ba69b __skb_free_datagram_locked +EXPORT_SYMBOL vmlinux 0x5d5eb1f1 tcf_em_register EXPORT_SYMBOL vmlinux 0x5d7dee6b strscpy_pad -EXPORT_SYMBOL vmlinux 0x5d8b913d ipv6_find_hdr -EXPORT_SYMBOL vmlinux 0x5d8befc9 sk_stream_error -EXPORT_SYMBOL vmlinux 0x5d907a68 xsk_get_pool_from_qid -EXPORT_SYMBOL vmlinux 0x5da0090e alloc_buffer_head -EXPORT_SYMBOL vmlinux 0x5dbe3061 dquot_scan_active -EXPORT_SYMBOL vmlinux 0x5dc423fb scsi_device_get -EXPORT_SYMBOL vmlinux 0x5dc95780 tcf_idr_search -EXPORT_SYMBOL vmlinux 0x5dc98066 config_item_set_name -EXPORT_SYMBOL vmlinux 0x5df22e64 clocksource_change_rating EXPORT_SYMBOL vmlinux 0x5df756d7 __crypto_memneq +EXPORT_SYMBOL vmlinux 0x5dfd2bce xp_free +EXPORT_SYMBOL vmlinux 0x5e07d660 generic_splice_sendpage EXPORT_SYMBOL vmlinux 0x5e0ccb9f sha1_transform -EXPORT_SYMBOL vmlinux 0x5e1be1fe nf_unregister_net_hook -EXPORT_SYMBOL vmlinux 0x5e1fa252 skb_expand_head EXPORT_SYMBOL vmlinux 0x5e21cb82 ap_send -EXPORT_SYMBOL vmlinux 0x5e31c236 kbd_ascebc EXPORT_SYMBOL vmlinux 0x5e373fb4 gf128mul_64k_bbe +EXPORT_SYMBOL vmlinux 0x5e3ac6a5 netif_device_detach +EXPORT_SYMBOL vmlinux 0x5e3f071a dma_get_sgtable_attrs +EXPORT_SYMBOL vmlinux 0x5e56d6b1 blk_mq_kick_requeue_list EXPORT_SYMBOL vmlinux 0x5e86171d raw3270_unregister_notifier -EXPORT_SYMBOL vmlinux 0x5e936a2e pci_request_region +EXPORT_SYMBOL vmlinux 0x5e92639f linkwatch_fire_event +EXPORT_SYMBOL vmlinux 0x5e957279 tcf_action_check_ctrlact EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask EXPORT_SYMBOL vmlinux 0x5ea31004 arch_spin_trylock_retry EXPORT_SYMBOL vmlinux 0x5eb24829 dm_shift_arg -EXPORT_SYMBOL vmlinux 0x5ebf581e ip_mc_leave_group +EXPORT_SYMBOL vmlinux 0x5eb8b68c d_instantiate_anon +EXPORT_SYMBOL vmlinux 0x5eba432a dev_uc_init +EXPORT_SYMBOL vmlinux 0x5ebc3788 netif_carrier_off EXPORT_SYMBOL vmlinux 0x5ec4aee6 put_sg_io_hdr EXPORT_SYMBOL vmlinux 0x5ecfeec6 __per_cpu_offset EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch +EXPORT_SYMBOL vmlinux 0x5ed05ad6 netdev_unbind_sb_channel EXPORT_SYMBOL vmlinux 0x5ed90adc int_to_scsilun -EXPORT_SYMBOL vmlinux 0x5ee16721 flow_get_u32_src -EXPORT_SYMBOL vmlinux 0x5ee6506c __pskb_copy_fclone -EXPORT_SYMBOL vmlinux 0x5ee91e78 netdev_notify_peers EXPORT_SYMBOL vmlinux 0x5efdd68b __tracepoint_mmap_lock_released EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters -EXPORT_SYMBOL vmlinux 0x5f2adce8 pci_read_vpd -EXPORT_SYMBOL vmlinux 0x5f3097f9 dcache_dir_lseek -EXPORT_SYMBOL vmlinux 0x5f3d23db from_kprojid -EXPORT_SYMBOL vmlinux 0x5f44f23e mount_subtree +EXPORT_SYMBOL vmlinux 0x5f2f6806 tcp_v4_connect +EXPORT_SYMBOL vmlinux 0x5f334a3c padata_free_shell +EXPORT_SYMBOL vmlinux 0x5f436063 dev_addr_flush EXPORT_SYMBOL vmlinux 0x5f5441c8 __ubsan_handle_alignment_assumption -EXPORT_SYMBOL vmlinux 0x5f677836 path_is_under -EXPORT_SYMBOL vmlinux 0x5f728d23 ip_sock_set_pktinfo -EXPORT_SYMBOL vmlinux 0x5f76b92a copy_page_from_iter -EXPORT_SYMBOL vmlinux 0x5f8f5fd7 netdev_rx_csum_fault -EXPORT_SYMBOL vmlinux 0x5f918ed4 d_hash_and_lookup +EXPORT_SYMBOL vmlinux 0x5f706385 seg6_hmac_validate_skb +EXPORT_SYMBOL vmlinux 0x5f969f13 find_get_pages_range_tag EXPORT_SYMBOL vmlinux 0x5f98bdb6 nf_hooks_needed EXPORT_SYMBOL vmlinux 0x5f9ede6c proc_dostring -EXPORT_SYMBOL vmlinux 0x5fc69148 proc_symlink -EXPORT_SYMBOL vmlinux 0x5fc83965 pci_disable_link_state +EXPORT_SYMBOL vmlinux 0x5fc5512a bio_devname EXPORT_SYMBOL vmlinux 0x5fd2298e strnstr -EXPORT_SYMBOL vmlinux 0x5fd78c5f capable_wrt_inode_uidgid EXPORT_SYMBOL vmlinux 0x5fda0adb ZSTD_DDictWorkspaceBound EXPORT_SYMBOL vmlinux 0x5fe447a9 bitmap_print_list_to_buf EXPORT_SYMBOL vmlinux 0x5ffedf63 __nla_put_nohdr EXPORT_SYMBOL vmlinux 0x6005c351 zpool_has_pool EXPORT_SYMBOL vmlinux 0x600683d3 do_unblank_screen +EXPORT_SYMBOL vmlinux 0x60078c0e skb_clone_sk +EXPORT_SYMBOL vmlinux 0x600dcec3 d_set_fallthru EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier -EXPORT_SYMBOL vmlinux 0x604d0348 kernel_sendpage -EXPORT_SYMBOL vmlinux 0x604de813 skb_udp_tunnel_segment -EXPORT_SYMBOL vmlinux 0x60502721 md_write_start +EXPORT_SYMBOL vmlinux 0x6049e182 softnet_data +EXPORT_SYMBOL vmlinux 0x604ebbb9 xfrm_unregister_type EXPORT_SYMBOL vmlinux 0x605790dc fiemap_fill_next_extent -EXPORT_SYMBOL vmlinux 0x60621076 tcp_v4_do_rcv +EXPORT_SYMBOL vmlinux 0x605ed0bc dev_get_by_name EXPORT_SYMBOL vmlinux 0x6091b333 unregister_chrdev_region -EXPORT_SYMBOL vmlinux 0x60937fc1 d_find_alias EXPORT_SYMBOL vmlinux 0x609bcd98 in6_pton EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net +EXPORT_SYMBOL vmlinux 0x60a7937a tcf_qevent_init EXPORT_SYMBOL vmlinux 0x60b5c8dd register_external_irq -EXPORT_SYMBOL vmlinux 0x60c05221 netdev_err EXPORT_SYMBOL vmlinux 0x60c311d6 raw3270_start -EXPORT_SYMBOL vmlinux 0x60cb48df write_one_page EXPORT_SYMBOL vmlinux 0x60cf0d39 kstrtoint_from_user -EXPORT_SYMBOL vmlinux 0x60ea5a89 security_sctp_sk_clone -EXPORT_SYMBOL vmlinux 0x60ed7a6d ip_do_fragment +EXPORT_SYMBOL vmlinux 0x60e38458 pcie_relaxed_ordering_enabled +EXPORT_SYMBOL vmlinux 0x60e3b5c8 ccw_device_start_timeout_key +EXPORT_SYMBOL vmlinux 0x60eb8a5c n_tty_ioctl_helper +EXPORT_SYMBOL vmlinux 0x6105700a mr_vif_seq_next EXPORT_SYMBOL vmlinux 0x6108288f complete_all -EXPORT_SYMBOL vmlinux 0x61096ddb debug_set_level -EXPORT_SYMBOL vmlinux 0x61144d95 pci_write_config_dword -EXPORT_SYMBOL vmlinux 0x611654ce inet_sendmsg +EXPORT_SYMBOL vmlinux 0x61165701 register_cdrom EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit -EXPORT_SYMBOL vmlinux 0x6135789d scsi_print_sense_hdr -EXPORT_SYMBOL vmlinux 0x61572fb1 end_page_private_2 +EXPORT_SYMBOL vmlinux 0x61305dae alloc_pages_vma +EXPORT_SYMBOL vmlinux 0x613484cf iov_iter_revert +EXPORT_SYMBOL vmlinux 0x613e80ed key_validate +EXPORT_SYMBOL vmlinux 0x614f1065 inet_frag_reasm_prepare +EXPORT_SYMBOL vmlinux 0x61558f6a pcim_iomap_regions_request_all EXPORT_SYMBOL vmlinux 0x615911d7 __bitmap_set EXPORT_SYMBOL vmlinux 0x6167e72c vmalloc_no_huge -EXPORT_SYMBOL vmlinux 0x61754976 security_unix_stream_connect -EXPORT_SYMBOL vmlinux 0x618416cd netif_set_real_num_rx_queues -EXPORT_SYMBOL vmlinux 0x618cbae3 unpin_user_page_range_dirty_lock -EXPORT_SYMBOL vmlinux 0x619b0e98 udp_seq_ops +EXPORT_SYMBOL vmlinux 0x6180f30b register_console +EXPORT_SYMBOL vmlinux 0x61890663 nf_setsockopt +EXPORT_SYMBOL vmlinux 0x618bd442 cdev_set_parent +EXPORT_SYMBOL vmlinux 0x618c2804 tty_name +EXPORT_SYMBOL vmlinux 0x61909566 filemap_page_mkwrite +EXPORT_SYMBOL vmlinux 0x61a42ba9 pcim_pin_device EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull -EXPORT_SYMBOL vmlinux 0x61bf5058 fget EXPORT_SYMBOL vmlinux 0x61e272c9 sha256_final EXPORT_SYMBOL vmlinux 0x61ea189b fb_pad_aligned_buffer -EXPORT_SYMBOL vmlinux 0x61eb85c3 __sock_create -EXPORT_SYMBOL vmlinux 0x61ff7e69 get_task_cred -EXPORT_SYMBOL vmlinux 0x620db0f1 set_pgste_bits -EXPORT_SYMBOL vmlinux 0x620f6190 pci_select_bars -EXPORT_SYMBOL vmlinux 0x621b4327 __blkdev_issue_discard -EXPORT_SYMBOL vmlinux 0x62274ee7 kmem_cache_alloc_node_trace +EXPORT_SYMBOL vmlinux 0x620a61b1 dmam_pool_create +EXPORT_SYMBOL vmlinux 0x62101833 iov_iter_alignment +EXPORT_SYMBOL vmlinux 0x6218faaf sock_no_socketpair +EXPORT_SYMBOL vmlinux 0x621b9068 pci_select_bars EXPORT_SYMBOL vmlinux 0x6228c21f smp_call_function_single -EXPORT_SYMBOL vmlinux 0x6228feed ip6_frag_init +EXPORT_SYMBOL vmlinux 0x623413cf __frontswap_store EXPORT_SYMBOL vmlinux 0x624c45c1 trace_print_array_seq -EXPORT_SYMBOL vmlinux 0x625333c1 __cleancache_put_page -EXPORT_SYMBOL vmlinux 0x6258692f simple_nosetlease -EXPORT_SYMBOL vmlinux 0x62699c8b sync_inodes_sb +EXPORT_SYMBOL vmlinux 0x624fb46f jbd2_journal_forget +EXPORT_SYMBOL vmlinux 0x6250b392 __ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0x625abde5 security_inode_copy_up +EXPORT_SYMBOL vmlinux 0x625b7da0 xfrm_state_walk +EXPORT_SYMBOL vmlinux 0x6271ad66 tty_chars_in_buffer EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister +EXPORT_SYMBOL vmlinux 0x6280ff3a __bio_clone_fast EXPORT_SYMBOL vmlinux 0x62849ac7 dev_valid_name -EXPORT_SYMBOL vmlinux 0x629763ad tcf_qevent_dump -EXPORT_SYMBOL vmlinux 0x62a8c119 input_set_capability +EXPORT_SYMBOL vmlinux 0x628cf958 seq_putc +EXPORT_SYMBOL vmlinux 0x628d9b70 ip6_route_me_harder +EXPORT_SYMBOL vmlinux 0x629242af __netdev_alloc_skb +EXPORT_SYMBOL vmlinux 0x62ab1cb4 dma_supported +EXPORT_SYMBOL vmlinux 0x62abc426 gnet_stats_copy_app +EXPORT_SYMBOL vmlinux 0x62af7d6b stop_tty EXPORT_SYMBOL vmlinux 0x62bf6edf utf8agemin -EXPORT_SYMBOL vmlinux 0x62bff7e9 vfs_statfs -EXPORT_SYMBOL vmlinux 0x62c44fe0 tcp_select_initial_window -EXPORT_SYMBOL vmlinux 0x62e8cf8d pfifo_qdisc_ops -EXPORT_SYMBOL vmlinux 0x63039dba blk_mq_start_hw_queue +EXPORT_SYMBOL vmlinux 0x62db7e57 xfrm_register_type_offload +EXPORT_SYMBOL vmlinux 0x62fc9fe8 devm_pci_remap_cfgspace EXPORT_SYMBOL vmlinux 0x63187451 pcie_aspm_support_enabled EXPORT_SYMBOL vmlinux 0x631d06aa cpu_rmap_put -EXPORT_SYMBOL vmlinux 0x63290743 rawv6_mh_filter_register -EXPORT_SYMBOL vmlinux 0x632e3ec9 jbd2_journal_revoke -EXPORT_SYMBOL vmlinux 0x633da578 bio_init -EXPORT_SYMBOL vmlinux 0x635438f8 set_anon_super -EXPORT_SYMBOL vmlinux 0x635d9fd6 end_buffer_async_write +EXPORT_SYMBOL vmlinux 0x6339b490 input_mt_drop_unused +EXPORT_SYMBOL vmlinux 0x633b1f50 generic_copy_file_range +EXPORT_SYMBOL vmlinux 0x635206a8 reuseport_alloc EXPORT_SYMBOL vmlinux 0x636ace72 dma_fence_signal_timestamp -EXPORT_SYMBOL vmlinux 0x63718028 udp_poll EXPORT_SYMBOL vmlinux 0x6371e098 cio_irb -EXPORT_SYMBOL vmlinux 0x637ff3d1 is_bad_inode +EXPORT_SYMBOL vmlinux 0x63850341 netif_receive_skb +EXPORT_SYMBOL vmlinux 0x639af95f finalize_exec 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 0x63aa9ea6 xfrm_policy_unregister_afinfo -EXPORT_SYMBOL vmlinux 0x63b34eae inet6_ioctl EXPORT_SYMBOL vmlinux 0x63c4d61f __bitmap_weight -EXPORT_SYMBOL vmlinux 0x63d41415 generic_ro_fops -EXPORT_SYMBOL vmlinux 0x63e14d1f pci_setup_cardbus +EXPORT_SYMBOL vmlinux 0x63d8dbb4 mod_node_page_state +EXPORT_SYMBOL vmlinux 0x63dc7f07 skb_try_coalesce EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink -EXPORT_SYMBOL vmlinux 0x63ec9972 ap_flush_queue -EXPORT_SYMBOL vmlinux 0x6412240a deactivate_locked_super +EXPORT_SYMBOL vmlinux 0x63f93669 fqdir_exit +EXPORT_SYMBOL vmlinux 0x63fab422 filemap_fault +EXPORT_SYMBOL vmlinux 0x64071a70 sk_filter_trim_cap +EXPORT_SYMBOL vmlinux 0x64106f44 blk_cleanup_queue EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off -EXPORT_SYMBOL vmlinux 0x64306d96 scsi_set_medium_removal -EXPORT_SYMBOL vmlinux 0x64317be7 readahead_expand -EXPORT_SYMBOL vmlinux 0x644055a4 neigh_direct_output -EXPORT_SYMBOL vmlinux 0x646d608c msi_desc_to_pci_dev +EXPORT_SYMBOL vmlinux 0x6413b4db inode_nohighmem +EXPORT_SYMBOL vmlinux 0x6423c8a3 mmput_async +EXPORT_SYMBOL vmlinux 0x642be83a fuse_dequeue_forget EXPORT_SYMBOL vmlinux 0x646e20df cpumask_any_and_distribute -EXPORT_SYMBOL vmlinux 0x64700f4f pci_scan_bus -EXPORT_SYMBOL vmlinux 0x647265c0 nexthop_res_grp_activity_update +EXPORT_SYMBOL vmlinux 0x647872ec inc_zone_page_state EXPORT_SYMBOL vmlinux 0x6481ffe0 hsiphash_1u32 EXPORT_SYMBOL vmlinux 0x648eb59d gc_inflight_list EXPORT_SYMBOL vmlinux 0x64999478 congestion_wait EXPORT_SYMBOL vmlinux 0x64a9c928 default_blu -EXPORT_SYMBOL vmlinux 0x64b5b458 input_close_device -EXPORT_SYMBOL vmlinux 0x64ccbb52 inode_newsize_ok -EXPORT_SYMBOL vmlinux 0x64d15a3a file_update_time +EXPORT_SYMBOL vmlinux 0x64cd59ee nobh_write_end +EXPORT_SYMBOL vmlinux 0x64e7ae6f vmf_insert_mixed_mkwrite +EXPORT_SYMBOL vmlinux 0x650e220c config_item_get EXPORT_SYMBOL vmlinux 0x6513a3fa fb_get_color_depth +EXPORT_SYMBOL vmlinux 0x6514c1e6 flow_get_u32_src +EXPORT_SYMBOL vmlinux 0x6519b6b3 param_ops_short EXPORT_SYMBOL vmlinux 0x651a4139 test_taint EXPORT_SYMBOL vmlinux 0x652032cb mac_pton -EXPORT_SYMBOL vmlinux 0x652b2c83 copy_page_to_iter -EXPORT_SYMBOL vmlinux 0x653303cd __scsi_device_lookup_by_target -EXPORT_SYMBOL vmlinux 0x65354174 xfrm_state_add -EXPORT_SYMBOL vmlinux 0x6536c76e redraw_screen -EXPORT_SYMBOL vmlinux 0x6537aae8 sock_recvmsg EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob -EXPORT_SYMBOL vmlinux 0x65548d06 unlock_page -EXPORT_SYMBOL vmlinux 0x656b1979 mr_vif_seq_idx -EXPORT_SYMBOL vmlinux 0x657cd773 request_partial_firmware_into_buf -EXPORT_SYMBOL vmlinux 0x65861472 ip_route_me_harder +EXPORT_SYMBOL vmlinux 0x65570bf5 ccw_device_clear EXPORT_SYMBOL vmlinux 0x658ce1a8 xxh64_reset -EXPORT_SYMBOL vmlinux 0x658e331f tcp_syn_ack_timeout EXPORT_SYMBOL vmlinux 0x659ded26 xfrm_flush_gc -EXPORT_SYMBOL vmlinux 0x65ada751 pci_ep_cfs_add_epc_group -EXPORT_SYMBOL vmlinux 0x65b3ac8c jbd2_journal_errno -EXPORT_SYMBOL vmlinux 0x65b5d8c0 xp_dma_sync_for_device_slow -EXPORT_SYMBOL vmlinux 0x65b73cc5 request_firmware -EXPORT_SYMBOL vmlinux 0x65bef14e netdev_name_node_alt_destroy +EXPORT_SYMBOL vmlinux 0x659fb71b flow_indr_dev_setup_offload +EXPORT_SYMBOL vmlinux 0x65a17eb6 bio_integrity_clone +EXPORT_SYMBOL vmlinux 0x65a804b6 netdev_adjacent_change_prepare EXPORT_SYMBOL vmlinux 0x65dccf13 xz_dec_end -EXPORT_SYMBOL vmlinux 0x65e117e9 alloc_pages_vma -EXPORT_SYMBOL vmlinux 0x65ef5d71 tcp_openreq_init_rwin -EXPORT_SYMBOL vmlinux 0x65f751a7 disk_end_io_acct -EXPORT_SYMBOL vmlinux 0x65f7d2ec netdev_master_upper_dev_get_rcu -EXPORT_SYMBOL vmlinux 0x662c758a ip_tunnel_parse_protocol -EXPORT_SYMBOL vmlinux 0x664a8155 security_old_inode_init_security -EXPORT_SYMBOL vmlinux 0x665f37c1 skb_checksum_trimmed +EXPORT_SYMBOL vmlinux 0x65e9df03 put_fs_context +EXPORT_SYMBOL vmlinux 0x65f32141 kbd_keycode +EXPORT_SYMBOL vmlinux 0x6626f730 blk_mq_start_stopped_hw_queues +EXPORT_SYMBOL vmlinux 0x665b2e8b mr_mfc_find_any_parent EXPORT_SYMBOL vmlinux 0x66628bf3 ip_tunnel_metadata_cnt -EXPORT_SYMBOL vmlinux 0x6666244d sk_stream_kill_queues +EXPORT_SYMBOL vmlinux 0x666b5524 _dev_notice EXPORT_SYMBOL vmlinux 0x6673f96d xxh32_reset -EXPORT_SYMBOL vmlinux 0x66a5cfdc gro_find_receive_by_type -EXPORT_SYMBOL vmlinux 0x66b2ef49 tty_port_lower_dtr_rts -EXPORT_SYMBOL vmlinux 0x66cb9d9d neigh_for_each -EXPORT_SYMBOL vmlinux 0x66d344d7 netif_rx_ni -EXPORT_SYMBOL vmlinux 0x66d397ea skb_store_bits +EXPORT_SYMBOL vmlinux 0x66a709b5 fput +EXPORT_SYMBOL vmlinux 0x66b74b19 __ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0x66bad395 page_pool_destroy +EXPORT_SYMBOL vmlinux 0x66e11de5 pci_clear_master EXPORT_SYMBOL vmlinux 0x66e69897 prandom_bytes_state -EXPORT_SYMBOL vmlinux 0x66e7dd1d flow_rule_match_enc_ports -EXPORT_SYMBOL vmlinux 0x67019cd3 vfs_iocb_iter_write -EXPORT_SYMBOL vmlinux 0x67149342 tcp_get_md5sig_pool -EXPORT_SYMBOL vmlinux 0x671b68c1 param_ops_bool +EXPORT_SYMBOL vmlinux 0x66ef26ce jbd2_journal_get_create_access +EXPORT_SYMBOL vmlinux 0x670f9340 try_module_get EXPORT_SYMBOL vmlinux 0x672144bd strlcpy -EXPORT_SYMBOL vmlinux 0x67343722 get_user_pages -EXPORT_SYMBOL vmlinux 0x673c8334 param_get_uint -EXPORT_SYMBOL vmlinux 0x67403759 lru_cache_add +EXPORT_SYMBOL vmlinux 0x67298b42 insert_inode_locked EXPORT_SYMBOL vmlinux 0x6749d53f hdmi_vendor_infoframe_init -EXPORT_SYMBOL vmlinux 0x674b698c netpoll_poll_enable +EXPORT_SYMBOL vmlinux 0x6749fd19 fwnode_irq_get +EXPORT_SYMBOL vmlinux 0x6750c0a0 pin_user_pages_locked +EXPORT_SYMBOL vmlinux 0x6755ac70 pipe_lock +EXPORT_SYMBOL vmlinux 0x675ab7fa udp_sendmsg EXPORT_SYMBOL vmlinux 0x676155ff dotdot_name EXPORT_SYMBOL vmlinux 0x6762e507 proc_doulongvec_ms_jiffies_minmax -EXPORT_SYMBOL vmlinux 0x6769a22a mini_qdisc_pair_swap +EXPORT_SYMBOL vmlinux 0x676ebc97 pci_bus_find_capability EXPORT_SYMBOL vmlinux 0x6785687a __next_node_in -EXPORT_SYMBOL vmlinux 0x6785a535 param_set_byte EXPORT_SYMBOL vmlinux 0x678b96ec dma_pool_alloc EXPORT_SYMBOL vmlinux 0x678c62eb cpu_all_bits -EXPORT_SYMBOL vmlinux 0x6793fc17 d_find_any_alias -EXPORT_SYMBOL vmlinux 0x67a99bd3 ip_ct_attach -EXPORT_SYMBOL vmlinux 0x67b07663 kmem_cache_shrink +EXPORT_SYMBOL vmlinux 0x67938814 padata_free +EXPORT_SYMBOL vmlinux 0x67988f77 blkdev_get_by_path +EXPORT_SYMBOL vmlinux 0x67a9cf2c vfs_mkobj EXPORT_SYMBOL vmlinux 0x67b27ec1 tty_std_termios EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu -EXPORT_SYMBOL vmlinux 0x67c62767 inet_put_port +EXPORT_SYMBOL vmlinux 0x67c1c2eb generic_fill_statx_attr EXPORT_SYMBOL vmlinux 0x67ce597c unregister_sysctl_table -EXPORT_SYMBOL vmlinux 0x67e0d424 security_inet_conn_established +EXPORT_SYMBOL vmlinux 0x67de6e86 inet6_del_protocol EXPORT_SYMBOL vmlinux 0x67e2272e refcount_dec_and_mutex_lock +EXPORT_SYMBOL vmlinux 0x6816b398 genl_register_family EXPORT_SYMBOL vmlinux 0x681b6670 is_firmware_framebuffer -EXPORT_SYMBOL vmlinux 0x682441d4 inet_pton_with_scope +EXPORT_SYMBOL vmlinux 0x6821a8ff __mmap_lock_do_trace_released +EXPORT_SYMBOL vmlinux 0x682dbf40 scsi_mode_sense +EXPORT_SYMBOL vmlinux 0x6835ead0 inet_csk_reqsk_queue_add EXPORT_SYMBOL vmlinux 0x683a9560 __gnet_stats_copy_basic -EXPORT_SYMBOL vmlinux 0x684a6860 always_delete_dentry EXPORT_SYMBOL vmlinux 0x684b62f9 raw3270_request_set_idal -EXPORT_SYMBOL vmlinux 0x68571109 simple_empty +EXPORT_SYMBOL vmlinux 0x684bd9e4 eth_header_parse_protocol +EXPORT_SYMBOL vmlinux 0x68595e2c param_ops_invbool EXPORT_SYMBOL vmlinux 0x687173de ZSTD_findDecompressedSize -EXPORT_SYMBOL vmlinux 0x688c1ed1 configfs_unregister_group EXPORT_SYMBOL vmlinux 0x689a37bc kobject_add -EXPORT_SYMBOL vmlinux 0x689c6d9c tty_hung_up_p -EXPORT_SYMBOL vmlinux 0x689d7caa blk_queue_update_dma_pad -EXPORT_SYMBOL vmlinux 0x68ac9f1d send_sig_mceerr -EXPORT_SYMBOL vmlinux 0x68c3cdf8 devm_iounmap +EXPORT_SYMBOL vmlinux 0x68c9b664 simple_write_begin EXPORT_SYMBOL vmlinux 0x68cb33c0 gen_pool_virt_to_phys -EXPORT_SYMBOL vmlinux 0x68cbd874 d_instantiate -EXPORT_SYMBOL vmlinux 0x68d8053b flow_rule_match_ipv6_addrs -EXPORT_SYMBOL vmlinux 0x68e2fc5c blkdev_get_by_dev -EXPORT_SYMBOL vmlinux 0x68e92be0 netif_rx_any_context -EXPORT_SYMBOL vmlinux 0x68eb176a security_sock_rcv_skb -EXPORT_SYMBOL vmlinux 0x68fa07c0 security_path_rename -EXPORT_SYMBOL vmlinux 0x68fc5bff blk_queue_max_write_zeroes_sectors -EXPORT_SYMBOL vmlinux 0x68fdf6c8 param_set_ushort -EXPORT_SYMBOL vmlinux 0x68fe1d4e seg6_hmac_info_lookup +EXPORT_SYMBOL vmlinux 0x68df5e80 unix_get_socket +EXPORT_SYMBOL vmlinux 0x68fb5853 seq_write EXPORT_SYMBOL vmlinux 0x68fe9e66 __kfifo_dma_out_prepare_r -EXPORT_SYMBOL vmlinux 0x6905d8c9 dev_printk_emit EXPORT_SYMBOL vmlinux 0x69097457 crc32_be +EXPORT_SYMBOL vmlinux 0x6909c634 __generic_file_write_iter EXPORT_SYMBOL vmlinux 0x690f9dfa hdmi_infoframe_unpack -EXPORT_SYMBOL vmlinux 0x691453f0 generic_delete_inode EXPORT_SYMBOL vmlinux 0x6917a77e __traceiter_kmem_cache_free -EXPORT_SYMBOL vmlinux 0x6943324b igrab -EXPORT_SYMBOL vmlinux 0x6946a701 pci_scan_bridge +EXPORT_SYMBOL vmlinux 0x6919bf07 devm_kvasprintf +EXPORT_SYMBOL vmlinux 0x695a212f pcie_ptm_enabled +EXPORT_SYMBOL vmlinux 0x69634a8a generic_remap_file_range_prep EXPORT_SYMBOL vmlinux 0x69668826 netdev_increment_features -EXPORT_SYMBOL vmlinux 0x6968a0e2 xfrm6_rcv_spi -EXPORT_SYMBOL vmlinux 0x69925c2f tty_port_block_til_ready -EXPORT_SYMBOL vmlinux 0x69bcb66a key_revoke +EXPORT_SYMBOL vmlinux 0x699773dc pci_ep_cfs_remove_epc_group +EXPORT_SYMBOL vmlinux 0x69a7fdff simple_lookup EXPORT_SYMBOL vmlinux 0x69cf77c8 ZSTD_getDictID_fromDict -EXPORT_SYMBOL vmlinux 0x69d5093a vlan_vids_add_by_dev EXPORT_SYMBOL vmlinux 0x69d7769c __tracepoint_s390_diagnose -EXPORT_SYMBOL vmlinux 0x69e6edad jbd2_fc_wait_bufs -EXPORT_SYMBOL vmlinux 0x69ee1df3 sock_bind_add -EXPORT_SYMBOL vmlinux 0x69f4a4af skb_vlan_push -EXPORT_SYMBOL vmlinux 0x69fb1ff1 d_mark_dontcache +EXPORT_SYMBOL vmlinux 0x69de7df9 __sk_mem_schedule +EXPORT_SYMBOL vmlinux 0x69f00266 empty_aops +EXPORT_SYMBOL vmlinux 0x69f0b838 tcp_set_rcvlowat EXPORT_SYMBOL vmlinux 0x6a03751f sgl_free_order EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree -EXPORT_SYMBOL vmlinux 0x6a03b74c tcp_v4_mtu_reduced -EXPORT_SYMBOL vmlinux 0x6a1791be posix_acl_chmod +EXPORT_SYMBOL vmlinux 0x6a0587d8 inet_add_protocol +EXPORT_SYMBOL vmlinux 0x6a09069d sock_edemux +EXPORT_SYMBOL vmlinux 0x6a11ded8 secure_tcpv6_ts_off +EXPORT_SYMBOL vmlinux 0x6a251356 cond_set_guest_storage_key +EXPORT_SYMBOL vmlinux 0x6a338be9 udp_ioctl EXPORT_SYMBOL vmlinux 0x6a5cb5ee __get_free_pages EXPORT_SYMBOL vmlinux 0x6a5ecb18 unregister_module_notifier EXPORT_SYMBOL vmlinux 0x6a5fa363 sigprocmask -EXPORT_SYMBOL vmlinux 0x6a658504 __fs_parse -EXPORT_SYMBOL vmlinux 0x6a6b6644 pmdp_xchg_lazy +EXPORT_SYMBOL vmlinux 0x6a6a8b0f __module_put_and_exit EXPORT_SYMBOL vmlinux 0x6a6e05bf kstrtou8 -EXPORT_SYMBOL vmlinux 0x6a8fcd9b pci_bus_read_config_dword -EXPORT_SYMBOL vmlinux 0x6a9f153f super_setup_bdi_name +EXPORT_SYMBOL vmlinux 0x6a8dc7bc sock_recvmsg +EXPORT_SYMBOL vmlinux 0x6a8ebf38 inet_csk_delete_keepalive_timer +EXPORT_SYMBOL vmlinux 0x6a9fb2fb __do_once_done EXPORT_SYMBOL vmlinux 0x6aa11aa6 sgl_free_n_order -EXPORT_SYMBOL vmlinux 0x6ab0521d skb_find_text -EXPORT_SYMBOL vmlinux 0x6ab16916 tcp_md5_do_del EXPORT_SYMBOL vmlinux 0x6ab23aa1 load_fpu_regs -EXPORT_SYMBOL vmlinux 0x6ab7d7df vmalloc_to_page -EXPORT_SYMBOL vmlinux 0x6ae7b1f2 unlock_buffer +EXPORT_SYMBOL vmlinux 0x6ac5408b inet6_getname +EXPORT_SYMBOL vmlinux 0x6ac55dba alloc_netdev_mqs +EXPORT_SYMBOL vmlinux 0x6ac8c7e2 vmf_insert_pfn +EXPORT_SYMBOL vmlinux 0x6acb8e10 inet_frag_queue_insert +EXPORT_SYMBOL vmlinux 0x6ad6d67c param_ops_byte EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset -EXPORT_SYMBOL vmlinux 0x6b1afc73 file_path -EXPORT_SYMBOL vmlinux 0x6b1defd6 registered_fb +EXPORT_SYMBOL vmlinux 0x6b0c0461 netlink_broadcast_filtered +EXPORT_SYMBOL vmlinux 0x6b1430b7 kernel_sendpage_locked +EXPORT_SYMBOL vmlinux 0x6b144315 flow_rule_match_enc_keyid +EXPORT_SYMBOL vmlinux 0x6b1780f9 bd_abort_claiming +EXPORT_SYMBOL vmlinux 0x6b1d7bb0 locks_remove_posix EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack -EXPORT_SYMBOL vmlinux 0x6b2f7ca7 fb_set_suspend -EXPORT_SYMBOL vmlinux 0x6b31cc3d textsearch_register -EXPORT_SYMBOL vmlinux 0x6b34f291 ipv6_dev_mc_inc -EXPORT_SYMBOL vmlinux 0x6b37f1b1 ccw_device_start +EXPORT_SYMBOL vmlinux 0x6b3b3884 eth_commit_mac_addr_change EXPORT_SYMBOL vmlinux 0x6b55acd0 rtnl_lock_killable -EXPORT_SYMBOL vmlinux 0x6b647d6a tcf_exts_dump -EXPORT_SYMBOL vmlinux 0x6b69ef8d mmput_async -EXPORT_SYMBOL vmlinux 0x6b6ca2e7 gnet_stats_copy_app EXPORT_SYMBOL vmlinux 0x6b853d06 ns_to_kernel_old_timeval +EXPORT_SYMBOL vmlinux 0x6b8be224 pagecache_write_end EXPORT_SYMBOL vmlinux 0x6b8bf149 netif_receive_skb_list EXPORT_SYMBOL vmlinux 0x6b8d2325 s390_epoch_delta_notifier +EXPORT_SYMBOL vmlinux 0x6b8d2496 __blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0x6b944809 skb_udp_tunnel_segment EXPORT_SYMBOL vmlinux 0x6b9d1c95 security_req_classify_flow -EXPORT_SYMBOL vmlinux 0x6b9de042 textsearch_destroy -EXPORT_SYMBOL vmlinux 0x6ba9fb83 writeback_inodes_sb EXPORT_SYMBOL vmlinux 0x6bac671b __crc32c_le +EXPORT_SYMBOL vmlinux 0x6bb80c77 posix_acl_update_mode EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev -EXPORT_SYMBOL vmlinux 0x6be2653d register_tcf_proto_ops -EXPORT_SYMBOL vmlinux 0x6be5592f dev_mc_del_global -EXPORT_SYMBOL vmlinux 0x6beb067e pci_bus_write_config_word +EXPORT_SYMBOL vmlinux 0x6bc436a9 get_cached_acl_rcu EXPORT_SYMBOL vmlinux 0x6bf181c1 __tracepoint_kmem_cache_free -EXPORT_SYMBOL vmlinux 0x6bfab646 dm_unregister_target +EXPORT_SYMBOL vmlinux 0x6bf9f832 dquot_quotactl_sysfile_ops +EXPORT_SYMBOL vmlinux 0x6bfa20fd dentry_open EXPORT_SYMBOL vmlinux 0x6bfe1653 iucv_message_receive EXPORT_SYMBOL vmlinux 0x6c041e19 __xa_insert -EXPORT_SYMBOL vmlinux 0x6c1091a3 inet6_protos -EXPORT_SYMBOL vmlinux 0x6c152a09 __mark_inode_dirty +EXPORT_SYMBOL vmlinux 0x6c0f3e63 scsi_rescan_device +EXPORT_SYMBOL vmlinux 0x6c167a80 rps_may_expire_flow EXPORT_SYMBOL vmlinux 0x6c257ac0 tty_termios_hw_change -EXPORT_SYMBOL vmlinux 0x6c2b6fed unregister_filesystem +EXPORT_SYMBOL vmlinux 0x6c53d0b9 request_partial_firmware_into_buf EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb -EXPORT_SYMBOL vmlinux 0x6c64704e module_put -EXPORT_SYMBOL vmlinux 0x6c720e7c ethtool_get_phc_vclocks -EXPORT_SYMBOL vmlinux 0x6c74ec0f dma_map_resource +EXPORT_SYMBOL vmlinux 0x6c767b5b scsi_host_put EXPORT_SYMBOL vmlinux 0x6c7a0323 __tracepoint_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x6ca518f6 kbd_ioctl +EXPORT_SYMBOL vmlinux 0x6cacd54a dev_remove_pack +EXPORT_SYMBOL vmlinux 0x6cb127ec keyring_search EXPORT_SYMBOL vmlinux 0x6cb46525 netlbl_catmap_walk EXPORT_SYMBOL vmlinux 0x6ccc34dd sort -EXPORT_SYMBOL vmlinux 0x6cd538db udp_pre_connect EXPORT_SYMBOL vmlinux 0x6cf192df kvrealloc -EXPORT_SYMBOL vmlinux 0x6d019599 handle_edge_irq +EXPORT_SYMBOL vmlinux 0x6cfcb7b1 tty_check_change +EXPORT_SYMBOL vmlinux 0x6d050a68 pci_bus_read_config_dword +EXPORT_SYMBOL vmlinux 0x6d1a3843 sock_set_mark EXPORT_SYMBOL vmlinux 0x6d1ea6ec strlcat +EXPORT_SYMBOL vmlinux 0x6d293e6c __mod_lruvec_page_state EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies +EXPORT_SYMBOL vmlinux 0x6d2f7974 kthread_stop EXPORT_SYMBOL vmlinux 0x6d340f64 tty_termios_input_baud_rate -EXPORT_SYMBOL vmlinux 0x6d48bc81 prepare_to_swait_event -EXPORT_SYMBOL vmlinux 0x6d660179 ip_defrag -EXPORT_SYMBOL vmlinux 0x6d6f8e82 input_open_device -EXPORT_SYMBOL vmlinux 0x6d6fddc3 vfs_ioctl +EXPORT_SYMBOL vmlinux 0x6d383b5a module_layout +EXPORT_SYMBOL vmlinux 0x6d452f5e pci_write_config_dword +EXPORT_SYMBOL vmlinux 0x6d76c2a2 get_fs_type EXPORT_SYMBOL vmlinux 0x6d7c7dcc bitmap_cut -EXPORT_SYMBOL vmlinux 0x6d7cf941 get_acl -EXPORT_SYMBOL vmlinux 0x6d8eb4c4 simple_dentry_operations -EXPORT_SYMBOL vmlinux 0x6da08906 tcp_recvmsg +EXPORT_SYMBOL vmlinux 0x6d8c5077 __neigh_for_each_release +EXPORT_SYMBOL vmlinux 0x6d9b15da sk_stream_kill_queues +EXPORT_SYMBOL vmlinux 0x6d9c4e16 blk_mq_init_queue +EXPORT_SYMBOL vmlinux 0x6d9dbb06 __dev_get_by_flags +EXPORT_SYMBOL vmlinux 0x6da07d8e iput +EXPORT_SYMBOL vmlinux 0x6dad007b blk_rq_count_integrity_sg EXPORT_SYMBOL vmlinux 0x6daea280 crc32_le_shift -EXPORT_SYMBOL vmlinux 0x6db67ae1 neigh_connected_output -EXPORT_SYMBOL vmlinux 0x6dc798e4 xfrm_register_km EXPORT_SYMBOL vmlinux 0x6dcf857f uuid_null +EXPORT_SYMBOL vmlinux 0x6ddee25b no_seek_end_llseek +EXPORT_SYMBOL vmlinux 0x6ddef389 config_group_init EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction EXPORT_SYMBOL vmlinux 0x6e00b8cb _ebcasc -EXPORT_SYMBOL vmlinux 0x6e0631f7 __get_hash_from_flowi6 -EXPORT_SYMBOL vmlinux 0x6e1c6db1 set_blocksize -EXPORT_SYMBOL vmlinux 0x6e24522c inet_rcv_saddr_equal EXPORT_SYMBOL vmlinux 0x6e2da197 arch_read_lock_wait -EXPORT_SYMBOL vmlinux 0x6e476c31 __netdev_alloc_skb -EXPORT_SYMBOL vmlinux 0x6e6accac simple_dir_operations +EXPORT_SYMBOL vmlinux 0x6e48eeb0 xattr_full_name +EXPORT_SYMBOL vmlinux 0x6e4db74a tcf_action_exec +EXPORT_SYMBOL vmlinux 0x6e5baee3 ethtool_rx_flow_rule_create +EXPORT_SYMBOL vmlinux 0x6e6abdae _copy_to_iter EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock -EXPORT_SYMBOL vmlinux 0x6e76ccf8 misc_register -EXPORT_SYMBOL vmlinux 0x6e84125d ndo_dflt_fdb_add -EXPORT_SYMBOL vmlinux 0x6e90819c tcf_qevent_init +EXPORT_SYMBOL vmlinux 0x6e721aa3 forget_all_cached_acls +EXPORT_SYMBOL vmlinux 0x6e879034 migrate_page +EXPORT_SYMBOL vmlinux 0x6e88a41f unpin_user_pages EXPORT_SYMBOL vmlinux 0x6e9ad290 cpu_have_feature EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put -EXPORT_SYMBOL vmlinux 0x6e9fad66 inet_add_protocol -EXPORT_SYMBOL vmlinux 0x6ea1ce1a should_remove_suid +EXPORT_SYMBOL vmlinux 0x6ea2dc68 blk_mq_free_tag_set EXPORT_SYMBOL vmlinux 0x6ea9363b force_sig -EXPORT_SYMBOL vmlinux 0x6ec6944f input_register_device -EXPORT_SYMBOL vmlinux 0x6ec80e50 cookie_timestamp_decode -EXPORT_SYMBOL vmlinux 0x6ed7da74 ap_queue_init_reply +EXPORT_SYMBOL vmlinux 0x6ec4a49e blk_mq_tagset_wait_completed_request +EXPORT_SYMBOL vmlinux 0x6ed1f900 _copy_from_iter_nocache +EXPORT_SYMBOL vmlinux 0x6ed9fff1 jbd2_journal_blocks_per_page +EXPORT_SYMBOL vmlinux 0x6ee4013f kill_pgrp +EXPORT_SYMBOL vmlinux 0x6eea79ce textsearch_register +EXPORT_SYMBOL vmlinux 0x6eed2052 blk_put_request +EXPORT_SYMBOL vmlinux 0x6ef690b5 inet6_release EXPORT_SYMBOL vmlinux 0x6ef84303 kvmalloc_node -EXPORT_SYMBOL vmlinux 0x6f0cf3f1 vfs_unlink -EXPORT_SYMBOL vmlinux 0x6f0df19c kernel_connect -EXPORT_SYMBOL vmlinux 0x6f1726ab security_task_getsecid_subj +EXPORT_SYMBOL vmlinux 0x6f0919f6 dev_get_iflink +EXPORT_SYMBOL vmlinux 0x6f127f60 dquot_transfer EXPORT_SYMBOL vmlinux 0x6f20e8a0 nla_strscpy EXPORT_SYMBOL vmlinux 0x6f2df3ef dma_fence_signal -EXPORT_SYMBOL vmlinux 0x6f319d40 rps_may_expire_flow EXPORT_SYMBOL vmlinux 0x6f365e44 ZSTD_decompressContinue -EXPORT_SYMBOL vmlinux 0x6f3f2176 ccw_device_set_options_mask -EXPORT_SYMBOL vmlinux 0x6f4da62f hdmi_infoframe_log -EXPORT_SYMBOL vmlinux 0x6f506c90 ip_mc_inc_group EXPORT_SYMBOL vmlinux 0x6f53043d wait_for_completion_interruptible -EXPORT_SYMBOL vmlinux 0x6f574091 kthread_associate_blkcg EXPORT_SYMBOL vmlinux 0x6f5ef93d memchr_inv -EXPORT_SYMBOL vmlinux 0x6f67cc31 fs_bio_set EXPORT_SYMBOL vmlinux 0x6f689943 ZSTD_decompressBegin_usingDict +EXPORT_SYMBOL vmlinux 0x6f73255e framebuffer_alloc EXPORT_SYMBOL vmlinux 0x6f79375c mempool_free -EXPORT_SYMBOL vmlinux 0x6f842064 inode_sub_bytes +EXPORT_SYMBOL vmlinux 0x6f828cae is_bad_inode EXPORT_SYMBOL vmlinux 0x6f8420a3 ZSTD_findFrameCompressedSize +EXPORT_SYMBOL vmlinux 0x6f888448 sock_set_reuseaddr +EXPORT_SYMBOL vmlinux 0x6f8aac1f disk_start_io_acct EXPORT_SYMBOL vmlinux 0x6f8f674a bpf_dispatcher_xdp_func -EXPORT_SYMBOL vmlinux 0x6f9a4453 skb_recv_datagram -EXPORT_SYMBOL vmlinux 0x6fa47ebc ccw_device_start_timeout +EXPORT_SYMBOL vmlinux 0x6f9974e7 md_write_end EXPORT_SYMBOL vmlinux 0x6fb49676 queue_rcu_work EXPORT_SYMBOL vmlinux 0x6fc0c58d dma_fence_default_wait -EXPORT_SYMBOL vmlinux 0x6fd42d7c flow_rule_match_vlan +EXPORT_SYMBOL vmlinux 0x6fc8b259 pci_assign_resource +EXPORT_SYMBOL vmlinux 0x6fd3576b vfs_mkdir EXPORT_SYMBOL vmlinux 0x6fd9c35a __clzdi2 -EXPORT_SYMBOL vmlinux 0x6fe5db83 pgste_perform_essa -EXPORT_SYMBOL vmlinux 0x6feb5f8c t10_pi_type1_ip -EXPORT_SYMBOL vmlinux 0x6ff54399 mpage_writepage +EXPORT_SYMBOL vmlinux 0x6fdb333b generic_file_readonly_mmap +EXPORT_SYMBOL vmlinux 0x6fdd769c udp_seq_ops +EXPORT_SYMBOL vmlinux 0x6fe276d9 finish_open EXPORT_SYMBOL vmlinux 0x70002fe8 siphash_1u32 -EXPORT_SYMBOL vmlinux 0x7024698f kthread_destroy_worker -EXPORT_SYMBOL vmlinux 0x7029cb5b pci_unregister_driver +EXPORT_SYMBOL vmlinux 0x70052c18 pci_alloc_dev EXPORT_SYMBOL vmlinux 0x70336943 xa_set_mark -EXPORT_SYMBOL vmlinux 0x7042026c scsi_bios_ptable -EXPORT_SYMBOL vmlinux 0x70456afd md_bitmap_endwrite -EXPORT_SYMBOL vmlinux 0x7052dbf6 __dquot_alloc_space -EXPORT_SYMBOL vmlinux 0x7069f97c get_user_pages_remote -EXPORT_SYMBOL vmlinux 0x706ff988 padata_alloc_shell -EXPORT_SYMBOL vmlinux 0x70739371 iov_iter_single_seg_count -EXPORT_SYMBOL vmlinux 0x708bfcb6 elv_rb_find -EXPORT_SYMBOL vmlinux 0x709599df __skb_checksum -EXPORT_SYMBOL vmlinux 0x70cbc4b0 tty_port_carrier_raised -EXPORT_SYMBOL vmlinux 0x70f6df2f ww_mutex_unlock +EXPORT_SYMBOL vmlinux 0x7033da01 md_bitmap_update_sb +EXPORT_SYMBOL vmlinux 0x7038c15c __devm_request_region +EXPORT_SYMBOL vmlinux 0x7039ef82 vfs_copy_file_range +EXPORT_SYMBOL vmlinux 0x7054caf1 elevator_alloc +EXPORT_SYMBOL vmlinux 0x705941cd xfrm_state_walk_done +EXPORT_SYMBOL vmlinux 0x705c048a scsi_device_get +EXPORT_SYMBOL vmlinux 0x7060fc89 dev_get_by_name_rcu +EXPORT_SYMBOL vmlinux 0x70650aa6 tc_setup_cb_destroy +EXPORT_SYMBOL vmlinux 0x70673b79 iov_iter_npages +EXPORT_SYMBOL vmlinux 0x707629f6 dev_remove_offload +EXPORT_SYMBOL vmlinux 0x70c0b8c7 shrink_dcache_sb +EXPORT_SYMBOL vmlinux 0x70d4c0e7 tcf_em_tree_validate EXPORT_SYMBOL vmlinux 0x70f81b56 ap_max_msg_size -EXPORT_SYMBOL vmlinux 0x7120bec8 input_release_device EXPORT_SYMBOL vmlinux 0x7120f9bd LZ4_setStreamDecode +EXPORT_SYMBOL vmlinux 0x7129af33 dquot_destroy EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc EXPORT_SYMBOL vmlinux 0x7145aef0 segment_load +EXPORT_SYMBOL vmlinux 0x714e2c47 jbd2_log_wait_commit +EXPORT_SYMBOL vmlinux 0x7150b77a pci_rebar_get_possible_sizes EXPORT_SYMBOL vmlinux 0x715a5ed0 vprintk +EXPORT_SYMBOL vmlinux 0x7160fae2 skb_copy_bits +EXPORT_SYMBOL vmlinux 0x7164b299 security_old_inode_init_security +EXPORT_SYMBOL vmlinux 0x716eb4a8 jbd2_journal_force_commit_nested EXPORT_SYMBOL vmlinux 0x7171121c overflowgid -EXPORT_SYMBOL vmlinux 0x71731bfa scsi_get_device_flags_keyed -EXPORT_SYMBOL vmlinux 0x7190e8b0 noop_llseek +EXPORT_SYMBOL vmlinux 0x717660a7 mr_vif_seq_idx +EXPORT_SYMBOL vmlinux 0x717674d9 tcp_sync_mss +EXPORT_SYMBOL vmlinux 0x71a57c3a inet_rtx_syn_ack EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy -EXPORT_SYMBOL vmlinux 0x71bf64cd iptun_encaps -EXPORT_SYMBOL vmlinux 0x71c97f96 pci_get_device -EXPORT_SYMBOL vmlinux 0x71fd7669 set_bdi_congested +EXPORT_SYMBOL vmlinux 0x71b5b07a zap_page_range +EXPORT_SYMBOL vmlinux 0x71bd75d2 noop_llseek +EXPORT_SYMBOL vmlinux 0x71c4ee36 vfs_iter_read +EXPORT_SYMBOL vmlinux 0x71c77459 skb_copy +EXPORT_SYMBOL vmlinux 0x71d168ef jbd2_log_start_commit +EXPORT_SYMBOL vmlinux 0x71e89025 generic_pipe_buf_release +EXPORT_SYMBOL vmlinux 0x71efc1f4 fs_param_is_path EXPORT_SYMBOL vmlinux 0x720a27a7 __register_blkdev -EXPORT_SYMBOL vmlinux 0x720c42d9 jbd2_journal_release_jbd_inode EXPORT_SYMBOL vmlinux 0x72105293 tcp_hashinfo +EXPORT_SYMBOL vmlinux 0x72158e68 forget_cached_acl EXPORT_SYMBOL vmlinux 0x72297f25 __alloc_bucket_spinlocks +EXPORT_SYMBOL vmlinux 0x723b1078 ccw_device_tm_start_timeout_key EXPORT_SYMBOL vmlinux 0x7242e96d strnchr EXPORT_SYMBOL vmlinux 0x724ddac7 utf8version_is_supported -EXPORT_SYMBOL vmlinux 0x72880fcd bio_integrity_trim +EXPORT_SYMBOL vmlinux 0x725306e0 page_zero_new_buffers +EXPORT_SYMBOL vmlinux 0x7254c9e9 thaw_super +EXPORT_SYMBOL vmlinux 0x725f670d crypto_sha1_update +EXPORT_SYMBOL vmlinux 0x726428ef try_to_writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0x72681b1e init_task +EXPORT_SYMBOL vmlinux 0x72a69c0b nf_ct_attach EXPORT_SYMBOL vmlinux 0x72b9d287 default_grn -EXPORT_SYMBOL vmlinux 0x72c0b799 rtnl_set_sk_err -EXPORT_SYMBOL vmlinux 0x72c636b4 ccw_device_set_online -EXPORT_SYMBOL vmlinux 0x72c9dde6 blk_queue_split +EXPORT_SYMBOL vmlinux 0x72cdf0ad invalidate_bdev EXPORT_SYMBOL vmlinux 0x72cfa9e7 dma_fence_chain_init -EXPORT_SYMBOL vmlinux 0x72d20b7b iov_iter_gap_alignment EXPORT_SYMBOL vmlinux 0x72da70e2 gen_pool_for_each_chunk -EXPORT_SYMBOL vmlinux 0x72de6709 kernel_sendmsg_locked EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type -EXPORT_SYMBOL vmlinux 0x72ea8a35 wake_up_process -EXPORT_SYMBOL vmlinux 0x72fe8d52 sock_diag_put_filterinfo +EXPORT_SYMBOL vmlinux 0x72efcf72 ip_output EXPORT_SYMBOL vmlinux 0x730b096c ap_apqn_in_matrix_owned_by_def_drv EXPORT_SYMBOL vmlinux 0x732dd326 groups_free -EXPORT_SYMBOL vmlinux 0x735776c0 input_mt_assign_slots -EXPORT_SYMBOL vmlinux 0x735cf02e jbd2_trans_will_send_data_barrier -EXPORT_SYMBOL vmlinux 0x7361ed28 debug_register_mode +EXPORT_SYMBOL vmlinux 0x733979d0 fs_param_is_blob +EXPORT_SYMBOL vmlinux 0x736daa19 sk_reset_timer EXPORT_SYMBOL vmlinux 0x7380dffa argv_split +EXPORT_SYMBOL vmlinux 0x7385ba69 security_inode_invalidate_secctx EXPORT_SYMBOL vmlinux 0x7389706a __memset16 -EXPORT_SYMBOL vmlinux 0x739cd454 d_obtain_root +EXPORT_SYMBOL vmlinux 0x739a6589 vfs_iter_write +EXPORT_SYMBOL vmlinux 0x739f1bad netlink_set_err EXPORT_SYMBOL vmlinux 0x739fd00f __SCK__tp_func_module_get EXPORT_SYMBOL vmlinux 0x73abb180 alloc_contig_range -EXPORT_SYMBOL vmlinux 0x73b58f51 proc_create EXPORT_SYMBOL vmlinux 0x73bf20c6 _ascebc -EXPORT_SYMBOL vmlinux 0x73c3b87d pci_iounmap -EXPORT_SYMBOL vmlinux 0x73d1d9d9 iter_file_splice_write -EXPORT_SYMBOL vmlinux 0x73fd0027 tcp_sock_set_nodelay +EXPORT_SYMBOL vmlinux 0x73bfa403 truncate_pagecache +EXPORT_SYMBOL vmlinux 0x73c6be66 input_unregister_device +EXPORT_SYMBOL vmlinux 0x73ecd14b fb_firmware_edid +EXPORT_SYMBOL vmlinux 0x7401ebc6 pci_iomap_wc +EXPORT_SYMBOL vmlinux 0x74028124 write_inode_now EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace EXPORT_SYMBOL vmlinux 0x741f70a9 debug_stop_all EXPORT_SYMBOL vmlinux 0x742578a5 wait_for_random_bytes EXPORT_SYMBOL vmlinux 0x7429e20c kstrtos8 -EXPORT_SYMBOL vmlinux 0x7444a83c dev_set_alias -EXPORT_SYMBOL vmlinux 0x7451ccc3 init_task +EXPORT_SYMBOL vmlinux 0x74453108 set_capacity EXPORT_SYMBOL vmlinux 0x7453d3e8 security_release_secctx -EXPORT_SYMBOL vmlinux 0x746c32e5 bdi_alloc -EXPORT_SYMBOL vmlinux 0x746f5572 cdrom_check_events +EXPORT_SYMBOL vmlinux 0x746314e2 xp_dma_sync_for_cpu_slow +EXPORT_SYMBOL vmlinux 0x7468423f dst_init EXPORT_SYMBOL vmlinux 0x7470b01a tsb_init -EXPORT_SYMBOL vmlinux 0x7480df8d ndo_dflt_fdb_dump EXPORT_SYMBOL vmlinux 0x7483dc59 pci_dev_present -EXPORT_SYMBOL vmlinux 0x749f91fe dev_vprintk_emit -EXPORT_SYMBOL vmlinux 0x74b386ad __vlan_find_dev_deep_rcu -EXPORT_SYMBOL vmlinux 0x74b4a9ba generic_block_bmap -EXPORT_SYMBOL vmlinux 0x74b6ed37 vfs_rename +EXPORT_SYMBOL vmlinux 0x748efa0c __dev_direct_xmit +EXPORT_SYMBOL vmlinux 0x74bf5843 pudp_xchg_direct EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 -EXPORT_SYMBOL vmlinux 0x74c41a24 inc_nlink -EXPORT_SYMBOL vmlinux 0x74d2efed done_path_create EXPORT_SYMBOL vmlinux 0x74d858a7 on_each_cpu_cond_mask EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable -EXPORT_SYMBOL vmlinux 0x74e90e8c fscrypt_put_encryption_info +EXPORT_SYMBOL vmlinux 0x74f03035 vfs_parse_fs_string EXPORT_SYMBOL vmlinux 0x74ffeb8b commit_creds -EXPORT_SYMBOL vmlinux 0x750ffd15 sk_stream_wait_close -EXPORT_SYMBOL vmlinux 0x75176030 ipv6_push_frag_opts -EXPORT_SYMBOL vmlinux 0x7521dac6 fib6_info_hw_flags_set -EXPORT_SYMBOL vmlinux 0x75372bae flow_rule_match_tcp -EXPORT_SYMBOL vmlinux 0x754a1478 skb_checksum_setup -EXPORT_SYMBOL vmlinux 0x755bcffa cleancache_register_ops -EXPORT_SYMBOL vmlinux 0x75650fac fsync_bdev -EXPORT_SYMBOL vmlinux 0x7574c824 tcp_v4_conn_request -EXPORT_SYMBOL vmlinux 0x757a77c3 inet6_offloads +EXPORT_SYMBOL vmlinux 0x753baa14 is_subdir +EXPORT_SYMBOL vmlinux 0x75784df2 kbd_free +EXPORT_SYMBOL vmlinux 0x75914d7b input_set_min_poll_interval +EXPORT_SYMBOL vmlinux 0x7599e054 skb_realloc_headroom EXPORT_SYMBOL vmlinux 0x759a0416 __memset64 +EXPORT_SYMBOL vmlinux 0x75a9a95f udp_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0x75b7f856 nf_getsockopt EXPORT_SYMBOL vmlinux 0x75b9cf29 hsch EXPORT_SYMBOL vmlinux 0x75bda77a seq_hlist_next EXPORT_SYMBOL vmlinux 0x75d0deb9 nsecs_to_jiffies64 -EXPORT_SYMBOL vmlinux 0x75d215a4 netdev_unbind_sb_channel EXPORT_SYMBOL vmlinux 0x75d499dd vmcore_add_device_dump -EXPORT_SYMBOL vmlinux 0x75d9377a seq_release -EXPORT_SYMBOL vmlinux 0x75def4c4 dev_get_port_parent_id -EXPORT_SYMBOL vmlinux 0x75e3c0ae generic_perform_write -EXPORT_SYMBOL vmlinux 0x75e843db tcf_chain_put_by_act -EXPORT_SYMBOL vmlinux 0x75f620b1 softnet_data +EXPORT_SYMBOL vmlinux 0x75e022c6 sock_wake_async EXPORT_SYMBOL vmlinux 0x760a0f4f yield EXPORT_SYMBOL vmlinux 0x760a3eca ZSTD_decompressStream -EXPORT_SYMBOL vmlinux 0x76131ada pcim_enable_device +EXPORT_SYMBOL vmlinux 0x760b72db secpath_set +EXPORT_SYMBOL vmlinux 0x760bb8c9 dev_uc_sync_multiple +EXPORT_SYMBOL vmlinux 0x76187f57 pci_iomap_range EXPORT_SYMBOL vmlinux 0x7618af39 hdmi_infoframe_check +EXPORT_SYMBOL vmlinux 0x7621eb39 nf_log_bind_pf EXPORT_SYMBOL vmlinux 0x7624249e dim_park_tired +EXPORT_SYMBOL vmlinux 0x76257f01 blk_mq_alloc_tag_set EXPORT_SYMBOL vmlinux 0x76426845 strncpy_from_user EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq EXPORT_SYMBOL vmlinux 0x765c7cb3 sclp -EXPORT_SYMBOL vmlinux 0x76607ee7 ip6mr_rule_default -EXPORT_SYMBOL vmlinux 0x7669c96e call_fib_notifiers +EXPORT_SYMBOL vmlinux 0x7665cc26 generic_permission EXPORT_SYMBOL vmlinux 0x766a0927 mempool_alloc_pages -EXPORT_SYMBOL vmlinux 0x76767f05 rdmacg_uncharge +EXPORT_SYMBOL vmlinux 0x767b2edd qdisc_class_hash_grow +EXPORT_SYMBOL vmlinux 0x768d3530 vm_iomap_memory EXPORT_SYMBOL vmlinux 0x769f6e64 errseq_check -EXPORT_SYMBOL vmlinux 0x76ad251d tcp_child_process +EXPORT_SYMBOL vmlinux 0x76ad9f1c xfrm6_protocol_register +EXPORT_SYMBOL vmlinux 0x76c87307 inet_csk_destroy_sock +EXPORT_SYMBOL vmlinux 0x76d35311 vc_cons EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode -EXPORT_SYMBOL vmlinux 0x76f3ba98 dma_sync_single_for_cpu -EXPORT_SYMBOL vmlinux 0x76ff5fc5 __dec_zone_page_state -EXPORT_SYMBOL vmlinux 0x770ba3d0 vfs_fadvise -EXPORT_SYMBOL vmlinux 0x77124006 pci_enable_ptm +EXPORT_SYMBOL vmlinux 0x76ee2f9b xfrm_state_lookup_byaddr +EXPORT_SYMBOL vmlinux 0x76f0f92e ip_mc_check_igmp +EXPORT_SYMBOL vmlinux 0x771519d3 fib_notifier_ops_unregister +EXPORT_SYMBOL vmlinux 0x771ba6ee tcp_splice_read +EXPORT_SYMBOL vmlinux 0x771ebbcc fscrypt_encrypt_block_inplace EXPORT_SYMBOL vmlinux 0x77247c5e ap_bus_force_rescan +EXPORT_SYMBOL vmlinux 0x772ed993 netdev_txq_to_tc EXPORT_SYMBOL vmlinux 0x7732159c free_irq_cpu_rmap -EXPORT_SYMBOL vmlinux 0x77349117 blk_queue_max_discard_sectors -EXPORT_SYMBOL vmlinux 0x77353775 user_revoke EXPORT_SYMBOL vmlinux 0x77358855 iomem_resource -EXPORT_SYMBOL vmlinux 0x775733fb may_umount_tree -EXPORT_SYMBOL vmlinux 0x778dfb41 d_alloc_anon -EXPORT_SYMBOL vmlinux 0x77aa0c46 bdevname -EXPORT_SYMBOL vmlinux 0x77bba2ad unregister_service_level +EXPORT_SYMBOL vmlinux 0x773b1355 pci_unregister_driver +EXPORT_SYMBOL vmlinux 0x77493019 tcp_timewait_state_process +EXPORT_SYMBOL vmlinux 0x7762ba8f seq_read +EXPORT_SYMBOL vmlinux 0x777cce95 blk_mq_stop_hw_queue +EXPORT_SYMBOL vmlinux 0x777cedad dma_resv_init +EXPORT_SYMBOL vmlinux 0x77830c70 pci_scan_bridge +EXPORT_SYMBOL vmlinux 0x7786e1de udp6_seq_ops +EXPORT_SYMBOL vmlinux 0x779550ea set_bdi_congested +EXPORT_SYMBOL vmlinux 0x77a1d1f7 neigh_app_ns EXPORT_SYMBOL vmlinux 0x77bc13a0 strim -EXPORT_SYMBOL vmlinux 0x77ce23ac set_guest_storage_key +EXPORT_SYMBOL vmlinux 0x77c9a9f2 tcp_filter +EXPORT_SYMBOL vmlinux 0x77cb525b register_nexthop_notifier +EXPORT_SYMBOL vmlinux 0x77cd0233 dst_release EXPORT_SYMBOL vmlinux 0x77e9eb37 aes_encrypt +EXPORT_SYMBOL vmlinux 0x77ecaec6 blk_mq_requeue_request +EXPORT_SYMBOL vmlinux 0x77fa8784 __hw_addr_ref_unsync_dev EXPORT_SYMBOL vmlinux 0x7805d1a0 __put_cred EXPORT_SYMBOL vmlinux 0x7807f0f8 schedule_timeout_idle -EXPORT_SYMBOL vmlinux 0x7815b79d simple_transaction_release +EXPORT_SYMBOL vmlinux 0x7812087d pin_user_pages +EXPORT_SYMBOL vmlinux 0x78126f96 neigh_table_init EXPORT_SYMBOL vmlinux 0x7819aea9 __kmalloc_node -EXPORT_SYMBOL vmlinux 0x781d079e iov_iter_revert -EXPORT_SYMBOL vmlinux 0x782a4345 md_bitmap_unplug +EXPORT_SYMBOL vmlinux 0x782306b7 init_special_inode EXPORT_SYMBOL vmlinux 0x782acba5 crc_t10dif +EXPORT_SYMBOL vmlinux 0x78449143 __sk_receive_skb +EXPORT_SYMBOL vmlinux 0x78519f7f netdev_set_tc_queue EXPORT_SYMBOL vmlinux 0x78569adf ida_alloc_range -EXPORT_SYMBOL vmlinux 0x78773840 jbd2_journal_flush +EXPORT_SYMBOL vmlinux 0x78780ba7 d_add_ci EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback -EXPORT_SYMBOL vmlinux 0x78842443 blk_rq_append_bio +EXPORT_SYMBOL vmlinux 0x788f5259 __netlink_dump_start EXPORT_SYMBOL vmlinux 0x789affb1 frontswap_tmem_exclusive_gets +EXPORT_SYMBOL vmlinux 0x78a0b97a dquot_writeback_dquots EXPORT_SYMBOL vmlinux 0x78a16f48 aes_decrypt +EXPORT_SYMBOL vmlinux 0x78a78455 param_ops_bint EXPORT_SYMBOL vmlinux 0x78b887ed vsprintf -EXPORT_SYMBOL vmlinux 0x78c51200 dev_mc_sync -EXPORT_SYMBOL vmlinux 0x78d6c62f jbd2_journal_put_journal_head -EXPORT_SYMBOL vmlinux 0x78de0f36 __register_nls -EXPORT_SYMBOL vmlinux 0x78de3c42 generic_pipe_buf_release EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices EXPORT_SYMBOL vmlinux 0x78f1475a __traceiter_s390_cio_rsch -EXPORT_SYMBOL vmlinux 0x78f74abb bio_devname +EXPORT_SYMBOL vmlinux 0x78f9508d tcp_md5_hash_key EXPORT_SYMBOL vmlinux 0x790bafd4 blk_stack_limits -EXPORT_SYMBOL vmlinux 0x791af778 bio_integrity_alloc -EXPORT_SYMBOL vmlinux 0x79635909 fifo_create_dflt +EXPORT_SYMBOL vmlinux 0x7922eeac ip6_err_gen_icmpv6_unreach +EXPORT_SYMBOL vmlinux 0x792b5f4e inet_pton_with_scope +EXPORT_SYMBOL vmlinux 0x7934db2a __lock_page +EXPORT_SYMBOL vmlinux 0x796a858b touchscreen_parse_properties EXPORT_SYMBOL vmlinux 0x7970ef55 swake_up_locked -EXPORT_SYMBOL vmlinux 0x79807a61 pci_read_config_byte EXPORT_SYMBOL vmlinux 0x79816357 dma_fence_wait_timeout -EXPORT_SYMBOL vmlinux 0x79950936 vlan_for_each -EXPORT_SYMBOL vmlinux 0x799cac9e pcibios_resource_to_bus +EXPORT_SYMBOL vmlinux 0x7984752d fc_mount +EXPORT_SYMBOL vmlinux 0x799722c8 blk_queue_max_segment_size EXPORT_SYMBOL vmlinux 0x79aa04a2 get_random_bytes -EXPORT_SYMBOL vmlinux 0x79afbd3a eth_type_trans -EXPORT_SYMBOL vmlinux 0x79b7312a __invalidate_device +EXPORT_SYMBOL vmlinux 0x79ab0d7a read_cache_page_gfp +EXPORT_SYMBOL vmlinux 0x79c1b58c pcim_iomap_regions EXPORT_SYMBOL vmlinux 0x79cd6498 down_write_killable -EXPORT_SYMBOL vmlinux 0x79dc89bc sock_no_getname EXPORT_SYMBOL vmlinux 0x79ec8f93 blk_start_plug -EXPORT_SYMBOL vmlinux 0x7a05933c bd_abort_claiming EXPORT_SYMBOL vmlinux 0x7a09a064 seg6_hmac_compute +EXPORT_SYMBOL vmlinux 0x7a0cdba3 gnet_stats_start_copy_compat EXPORT_SYMBOL vmlinux 0x7a1bcd59 gf128mul_x8_ble -EXPORT_SYMBOL vmlinux 0x7a42d7b4 tty_port_close -EXPORT_SYMBOL vmlinux 0x7a5b0c25 netdev_has_upper_dev +EXPORT_SYMBOL vmlinux 0x7a24eec8 udp_seq_stop +EXPORT_SYMBOL vmlinux 0x7a2512d9 dev_open EXPORT_SYMBOL vmlinux 0x7a5d9a71 ZSTD_DStreamWorkspaceBound EXPORT_SYMBOL vmlinux 0x7a7d60e6 iucv_register -EXPORT_SYMBOL vmlinux 0x7a8cf1ba inet_ioctl +EXPORT_SYMBOL vmlinux 0x7a7dc237 _dev_alert EXPORT_SYMBOL vmlinux 0x7a95e5ae do_settimeofday64 +EXPORT_SYMBOL vmlinux 0x7a9c0295 dquot_quota_on EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree -EXPORT_SYMBOL vmlinux 0x7aab880b pcim_iomap +EXPORT_SYMBOL vmlinux 0x7aa24ffb __set_page_dirty_no_writeback +EXPORT_SYMBOL vmlinux 0x7ab11492 put_cmsg EXPORT_SYMBOL vmlinux 0x7ab88a45 system_freezing_cnt -EXPORT_SYMBOL vmlinux 0x7acae7f2 mr_mfc_find_any +EXPORT_SYMBOL vmlinux 0x7ace2a7e filemap_range_has_page EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt EXPORT_SYMBOL vmlinux 0x7ad58813 kobject_get EXPORT_SYMBOL vmlinux 0x7adc0fbf rb_replace_node_rcu -EXPORT_SYMBOL vmlinux 0x7b03f25a inet_shutdown +EXPORT_SYMBOL vmlinux 0x7b10893c fault_in_iov_iter_writeable +EXPORT_SYMBOL vmlinux 0x7b120f81 posix_acl_chmod EXPORT_SYMBOL vmlinux 0x7b37d4a7 _find_first_zero_bit EXPORT_SYMBOL vmlinux 0x7b3c81f2 kobject_put -EXPORT_SYMBOL vmlinux 0x7b462d14 d_alloc_parallel +EXPORT_SYMBOL vmlinux 0x7b503337 configfs_remove_default_groups EXPORT_SYMBOL vmlinux 0x7b5a7137 strncat EXPORT_SYMBOL vmlinux 0x7b5b8f31 sha256_update -EXPORT_SYMBOL vmlinux 0x7b67a378 dquot_resume -EXPORT_SYMBOL vmlinux 0x7b8d344d writeback_inodes_sb_nr -EXPORT_SYMBOL vmlinux 0x7ba036bc simple_rename +EXPORT_SYMBOL vmlinux 0x7b6aaa56 generic_write_checks +EXPORT_SYMBOL vmlinux 0x7b7801f3 pci_request_regions +EXPORT_SYMBOL vmlinux 0x7b805217 dev_close +EXPORT_SYMBOL vmlinux 0x7b9bcfdc fbcon_update_vcs +EXPORT_SYMBOL vmlinux 0x7ba94417 param_ops_ushort +EXPORT_SYMBOL vmlinux 0x7bae9422 dev_set_threaded EXPORT_SYMBOL vmlinux 0x7bbccd05 nr_node_ids -EXPORT_SYMBOL vmlinux 0x7bcc030e pcim_iounmap_regions +EXPORT_SYMBOL vmlinux 0x7bd4c434 fscrypt_encrypt_pagecache_blocks EXPORT_SYMBOL vmlinux 0x7bd7dfd0 ap_test_config_usage_domain -EXPORT_SYMBOL vmlinux 0x7bd8938f __mod_lruvec_page_state -EXPORT_SYMBOL vmlinux 0x7c14b8fb pcim_iomap_table +EXPORT_SYMBOL vmlinux 0x7be703a9 tcp_init_sock +EXPORT_SYMBOL vmlinux 0x7bf3b01e page_mapping +EXPORT_SYMBOL vmlinux 0x7c075800 bio_integrity_add_page +EXPORT_SYMBOL vmlinux 0x7c0cc3f7 fixed_size_llseek EXPORT_SYMBOL vmlinux 0x7c14f503 gen_pool_dma_alloc EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement -EXPORT_SYMBOL vmlinux 0x7c32449a __zerocopy_sg_from_iter -EXPORT_SYMBOL vmlinux 0x7c3842b9 key_instantiate_and_link +EXPORT_SYMBOL vmlinux 0x7c317a88 key_instantiate_and_link EXPORT_SYMBOL vmlinux 0x7c5d4a3a sclp_reactivate -EXPORT_SYMBOL vmlinux 0x7c767748 dev_trans_start -EXPORT_SYMBOL vmlinux 0x7c7b4cff km_state_notify -EXPORT_SYMBOL vmlinux 0x7c853c6c tcp_parse_options +EXPORT_SYMBOL vmlinux 0x7c6e70a9 from_kprojid +EXPORT_SYMBOL vmlinux 0x7c7dfb5e jbd2_journal_get_undo_access EXPORT_SYMBOL vmlinux 0x7c9ca58f __sg_page_iter_next EXPORT_SYMBOL vmlinux 0x7cb1aea1 devlink_dpipe_header_ethernet +EXPORT_SYMBOL vmlinux 0x7cbd175c skb_copy_and_hash_datagram_iter +EXPORT_SYMBOL vmlinux 0x7ccece60 md_check_recovery EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid -EXPORT_SYMBOL vmlinux 0x7cec23cc netdev_adjacent_change_prepare -EXPORT_SYMBOL vmlinux 0x7cf3bdf4 inet_select_addr -EXPORT_SYMBOL vmlinux 0x7cfa0388 scsi_is_host_device +EXPORT_SYMBOL vmlinux 0x7ce2f4cc dcb_setapp +EXPORT_SYMBOL vmlinux 0x7cf75631 unregister_netdev EXPORT_SYMBOL vmlinux 0x7cfe368d net_dim_get_def_tx_moderation +EXPORT_SYMBOL vmlinux 0x7d0196c8 km_policy_expired EXPORT_SYMBOL vmlinux 0x7d0db45c jiffies_to_clock_t -EXPORT_SYMBOL vmlinux 0x7d2a5fcf block_read_full_page -EXPORT_SYMBOL vmlinux 0x7d2d0dcc flow_rule_match_enc_opts -EXPORT_SYMBOL vmlinux 0x7d310a89 get_tree_single_reconf -EXPORT_SYMBOL vmlinux 0x7d336341 fuse_dequeue_forget +EXPORT_SYMBOL vmlinux 0x7d2ae785 __skb_vlan_pop EXPORT_SYMBOL vmlinux 0x7d4b176a netlbl_catmap_setbit -EXPORT_SYMBOL vmlinux 0x7d4ccd62 padata_free -EXPORT_SYMBOL vmlinux 0x7d4e1d2f __netlink_dump_start EXPORT_SYMBOL vmlinux 0x7d522361 mempool_create_node -EXPORT_SYMBOL vmlinux 0x7d634ca2 tcp_seq_stop -EXPORT_SYMBOL vmlinux 0x7d66d5bd inet_dgram_connect -EXPORT_SYMBOL vmlinux 0x7d713a27 from_kprojid_munged -EXPORT_SYMBOL vmlinux 0x7d743463 netdev_has_upper_dev_all_rcu +EXPORT_SYMBOL vmlinux 0x7d751761 flow_indr_dev_unregister +EXPORT_SYMBOL vmlinux 0x7d910ff5 blk_queue_io_opt EXPORT_SYMBOL vmlinux 0x7daece67 quota_send_warning -EXPORT_SYMBOL vmlinux 0x7db2ea64 fb_prepare_logo -EXPORT_SYMBOL vmlinux 0x7dd874f1 posix_lock_file +EXPORT_SYMBOL vmlinux 0x7dd2523c __ip_queue_xmit +EXPORT_SYMBOL vmlinux 0x7de48a17 free_inode_nonrcu EXPORT_SYMBOL vmlinux 0x7dec65ff mempool_init EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args -EXPORT_SYMBOL vmlinux 0x7e10d7c7 device_match_acpi_dev -EXPORT_SYMBOL vmlinux 0x7e2151d2 kern_path -EXPORT_SYMBOL vmlinux 0x7e2d73ed __ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0x7df25763 bio_add_page +EXPORT_SYMBOL vmlinux 0x7df5a49e security_sock_rcv_skb +EXPORT_SYMBOL vmlinux 0x7e2b70ba devm_ioremap EXPORT_SYMBOL vmlinux 0x7e3191f6 try_to_del_timer_sync -EXPORT_SYMBOL vmlinux 0x7e61b6e8 gro_cells_receive +EXPORT_SYMBOL vmlinux 0x7e48138d __skb_try_recv_datagram +EXPORT_SYMBOL vmlinux 0x7e64867c flow_block_cb_lookup +EXPORT_SYMBOL vmlinux 0x7e687e07 lru_cache_add +EXPORT_SYMBOL vmlinux 0x7e70b163 pgste_perform_essa EXPORT_SYMBOL vmlinux 0x7e71ec2b dma_fence_allocate_private_stub -EXPORT_SYMBOL vmlinux 0x7e762578 f_setown -EXPORT_SYMBOL vmlinux 0x7e7ae71a dst_alloc +EXPORT_SYMBOL vmlinux 0x7e80d652 netif_rx_ni EXPORT_SYMBOL vmlinux 0x7e821ba1 crc_ccitt -EXPORT_SYMBOL vmlinux 0x7e8e46d5 simple_get_link -EXPORT_SYMBOL vmlinux 0x7e9ef451 dev_get_flags -EXPORT_SYMBOL vmlinux 0x7eb24585 flow_indr_dev_register -EXPORT_SYMBOL vmlinux 0x7ebc294d cond_set_guest_storage_key -EXPORT_SYMBOL vmlinux 0x7ebdb9b6 dquot_claim_space_nodirty -EXPORT_SYMBOL vmlinux 0x7ec359ea vc_cons -EXPORT_SYMBOL vmlinux 0x7ec79b9a unpin_user_pages_dirty_lock -EXPORT_SYMBOL vmlinux 0x7ed1f16d tso_count_descs +EXPORT_SYMBOL vmlinux 0x7e8f341a dev_activate +EXPORT_SYMBOL vmlinux 0x7e948aec param_ops_string +EXPORT_SYMBOL vmlinux 0x7ecad652 loop_register_transfer +EXPORT_SYMBOL vmlinux 0x7ecb4be7 vif_device_init +EXPORT_SYMBOL vmlinux 0x7ed865e9 flow_block_cb_setup_simple +EXPORT_SYMBOL vmlinux 0x7ededff5 blk_rq_map_user EXPORT_SYMBOL vmlinux 0x7f02188f __msecs_to_jiffies EXPORT_SYMBOL vmlinux 0x7f03b6a9 crc_ccitt_table -EXPORT_SYMBOL vmlinux 0x7f170c7b dev_mc_unsync -EXPORT_SYMBOL vmlinux 0x7f245cea tcf_action_update_stats +EXPORT_SYMBOL vmlinux 0x7f0c246d __zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0x7f0d61e1 __dynamic_netdev_dbg +EXPORT_SYMBOL vmlinux 0x7f142bc7 pci_disable_link_state_locked EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs -EXPORT_SYMBOL vmlinux 0x7f2a7358 vfs_dedupe_file_range -EXPORT_SYMBOL vmlinux 0x7f3fa465 skb_unlink EXPORT_SYMBOL vmlinux 0x7f4c565b add_wait_queue EXPORT_SYMBOL vmlinux 0x7f52071a net_dim +EXPORT_SYMBOL vmlinux 0x7f578f4b __debug_sprintf_exception EXPORT_SYMBOL vmlinux 0x7f5b4fe4 sg_free_table -EXPORT_SYMBOL vmlinux 0x7f7706e6 generic_file_mmap -EXPORT_SYMBOL vmlinux 0x7f7a2331 config_item_init_type_name EXPORT_SYMBOL vmlinux 0x7f7f7bb4 irq_poll_disable EXPORT_SYMBOL vmlinux 0x7f957121 dma_fence_chain_walk -EXPORT_SYMBOL vmlinux 0x7fbd5a41 sock_queue_err_skb -EXPORT_SYMBOL vmlinux 0x7fcaf658 register_console -EXPORT_SYMBOL vmlinux 0x7fcb4bf7 seg6_hmac_info_add -EXPORT_SYMBOL vmlinux 0x7fe03cb9 dm_register_target +EXPORT_SYMBOL vmlinux 0x7f9c6dff sock_set_priority +EXPORT_SYMBOL vmlinux 0x7fa0f783 misc_register +EXPORT_SYMBOL vmlinux 0x7fa51246 __sk_mem_raise_allocated +EXPORT_SYMBOL vmlinux 0x7fad0d21 md_reap_sync_thread +EXPORT_SYMBOL vmlinux 0x7fc5da97 lock_page_memcg +EXPORT_SYMBOL vmlinux 0x7fca33c4 end_buffer_read_sync +EXPORT_SYMBOL vmlinux 0x7fe22c6a __skb_checksum_complete_head EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node -EXPORT_SYMBOL vmlinux 0x7feebb9d insert_inode_locked +EXPORT_SYMBOL vmlinux 0x7ffbae12 tcp_md5_do_add +EXPORT_SYMBOL vmlinux 0x8006965d ip6_output +EXPORT_SYMBOL vmlinux 0x800f1278 inode_set_bytes +EXPORT_SYMBOL vmlinux 0x801162c4 sockfd_lookup +EXPORT_SYMBOL vmlinux 0x80168d39 inet_sock_destruct EXPORT_SYMBOL vmlinux 0x80318b30 sg_copy_buffer +EXPORT_SYMBOL vmlinux 0x80349efb ccw_device_set_options_mask EXPORT_SYMBOL vmlinux 0x803ddbb6 __posix_acl_create EXPORT_SYMBOL vmlinux 0x804fd662 dma_fence_wait_any_timeout EXPORT_SYMBOL vmlinux 0x8053525a sclp_register EXPORT_SYMBOL vmlinux 0x805485ab __kfifo_out_r -EXPORT_SYMBOL vmlinux 0x805a36d7 tcf_qevent_destroy -EXPORT_SYMBOL vmlinux 0x8066794c netdev_notice EXPORT_SYMBOL vmlinux 0x806f2c92 tcw_set_tccb -EXPORT_SYMBOL vmlinux 0x8073b0b4 ip6tun_encaps -EXPORT_SYMBOL vmlinux 0x8073d1d7 ccw_device_get_path_mask -EXPORT_SYMBOL vmlinux 0x807529db fqdir_init -EXPORT_SYMBOL vmlinux 0x8093e675 ipv6_chk_addr_and_flags EXPORT_SYMBOL vmlinux 0x80abca8e dma_fence_array_create -EXPORT_SYMBOL vmlinux 0x80af91e8 iget5_locked +EXPORT_SYMBOL vmlinux 0x80abca9e pci_enable_wake +EXPORT_SYMBOL vmlinux 0x80afa511 neigh_direct_output EXPORT_SYMBOL vmlinux 0x80b313dc utf8_casefold_hash +EXPORT_SYMBOL vmlinux 0x80bb2b9d xfrm_stateonly_find +EXPORT_SYMBOL vmlinux 0x80c0096d pcie_capability_read_word +EXPORT_SYMBOL vmlinux 0x80c354b4 qdisc_warn_nonwc +EXPORT_SYMBOL vmlinux 0x80c747f5 tcf_chain_put_by_act EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd +EXPORT_SYMBOL vmlinux 0x80d4b394 shmem_aops EXPORT_SYMBOL vmlinux 0x80d68d3e fb_register_client EXPORT_SYMBOL vmlinux 0x80d7f717 sg_zero_buffer -EXPORT_SYMBOL vmlinux 0x80e29337 kernel_listen EXPORT_SYMBOL vmlinux 0x80e5f86f fscrypt_fname_alloc_buffer -EXPORT_SYMBOL vmlinux 0x80ed4f6a inet_del_offload +EXPORT_SYMBOL vmlinux 0x80f9e1e5 build_skb_around +EXPORT_SYMBOL vmlinux 0x80fb19d8 inet_csk_complete_hashdance 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 0x81332bcd pci_find_capability +EXPORT_SYMBOL vmlinux 0x813f7344 tcp_stream_memory_free +EXPORT_SYMBOL vmlinux 0x8147e4bc sock_bindtoindex +EXPORT_SYMBOL vmlinux 0x81572572 sg_miter_skip EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal -EXPORT_SYMBOL vmlinux 0x817aa7f8 del_random_ready_callback +EXPORT_SYMBOL vmlinux 0x81747186 timestamp_truncate EXPORT_SYMBOL vmlinux 0x818416e1 scsi_set_sense_information EXPORT_SYMBOL vmlinux 0x81844c9d vmemdup_user -EXPORT_SYMBOL vmlinux 0x81874949 fifo_set_limit EXPORT_SYMBOL vmlinux 0x81a58001 mempool_init_node EXPORT_SYMBOL vmlinux 0x81b433f2 down -EXPORT_SYMBOL vmlinux 0x81bfe84b netlink_net_capable EXPORT_SYMBOL vmlinux 0x81c521ce proc_dobool -EXPORT_SYMBOL vmlinux 0x81ca42c1 input_flush_device +EXPORT_SYMBOL vmlinux 0x81c8e590 pci_read_config_dword EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset -EXPORT_SYMBOL vmlinux 0x81f57c0a inet6_getname -EXPORT_SYMBOL vmlinux 0x82190351 xp_alloc -EXPORT_SYMBOL vmlinux 0x821ae055 scsicam_bios_param -EXPORT_SYMBOL vmlinux 0x821dded1 pcie_capability_read_word -EXPORT_SYMBOL vmlinux 0x823f906a nf_log_packet -EXPORT_SYMBOL vmlinux 0x82472f6b scsi_host_put -EXPORT_SYMBOL vmlinux 0x8252d2cc pci_bus_assign_resources -EXPORT_SYMBOL vmlinux 0x825522fd kfree_skb_partial -EXPORT_SYMBOL vmlinux 0x827de9e9 fput +EXPORT_SYMBOL vmlinux 0x81dbb9d2 param_set_int +EXPORT_SYMBOL vmlinux 0x81fcc8e4 ndo_dflt_fdb_dump +EXPORT_SYMBOL vmlinux 0x8203cef9 debug_dflt_header_fn +EXPORT_SYMBOL vmlinux 0x821d40fb pci_set_mwi EXPORT_SYMBOL vmlinux 0x828062b1 __frontswap_init -EXPORT_SYMBOL vmlinux 0x829bc153 blk_mq_start_stopped_hw_queues -EXPORT_SYMBOL vmlinux 0x829cb02a disk_stack_limits -EXPORT_SYMBOL vmlinux 0x82b3aa64 md_write_end +EXPORT_SYMBOL vmlinux 0x82855c95 dm_kobject_release +EXPORT_SYMBOL vmlinux 0x82907b52 import_single_range EXPORT_SYMBOL vmlinux 0x82c2f005 kmalloc_order_trace EXPORT_SYMBOL vmlinux 0x82c87ad5 nr_online_nodes -EXPORT_SYMBOL vmlinux 0x82cf435b xfrm6_rcv_tnl -EXPORT_SYMBOL vmlinux 0x82da9e2a sockfd_lookup -EXPORT_SYMBOL vmlinux 0x82db41a7 path_get -EXPORT_SYMBOL vmlinux 0x82f01601 sock_no_recvmsg -EXPORT_SYMBOL vmlinux 0x83210a96 build_skb_around +EXPORT_SYMBOL vmlinux 0x82ca905f dcache_dir_open +EXPORT_SYMBOL vmlinux 0x82d14d6c pci_bus_read_config_byte +EXPORT_SYMBOL vmlinux 0x82de3804 tcf_action_set_ctrlact +EXPORT_SYMBOL vmlinux 0x82f3b08f udp_pre_connect +EXPORT_SYMBOL vmlinux 0x82f401c2 vfs_get_tree +EXPORT_SYMBOL vmlinux 0x82f539ab pcim_set_mwi +EXPORT_SYMBOL vmlinux 0x82fe19c4 tcp_v4_md5_hash_skb +EXPORT_SYMBOL vmlinux 0x8313247a param_ops_long +EXPORT_SYMBOL vmlinux 0x83500d89 fscrypt_has_permitted_context +EXPORT_SYMBOL vmlinux 0x83516551 tty_hung_up_p EXPORT_SYMBOL vmlinux 0x83538ba9 __cpu_dying_mask EXPORT_SYMBOL vmlinux 0x83581089 gf128mul_init_4k_lle -EXPORT_SYMBOL vmlinux 0x8373d381 ip6_dst_hoplimit -EXPORT_SYMBOL vmlinux 0x837436c3 rtnl_unicast EXPORT_SYMBOL vmlinux 0x837b7b09 __dynamic_pr_debug +EXPORT_SYMBOL vmlinux 0x837e0c57 skb_orphan_partial +EXPORT_SYMBOL vmlinux 0x8383c4b7 dquot_initialize_needed EXPORT_SYMBOL vmlinux 0x838d2bc8 siphash_3u32 -EXPORT_SYMBOL vmlinux 0x839b8bb9 xfrm_lookup_route -EXPORT_SYMBOL vmlinux 0x83a0f67c sock_no_linger +EXPORT_SYMBOL vmlinux 0x83ab7475 inet6_csk_route_req +EXPORT_SYMBOL vmlinux 0x83afcb06 dev_mc_add_excl +EXPORT_SYMBOL vmlinux 0x83b9f14e d_genocide EXPORT_SYMBOL vmlinux 0x83bdb3e1 gen_pool_dma_zalloc EXPORT_SYMBOL vmlinux 0x83c52fba xfrm4_protocol_init -EXPORT_SYMBOL vmlinux 0x83c94b2f fb_set_cmap -EXPORT_SYMBOL vmlinux 0x83d9224d filemap_range_has_page -EXPORT_SYMBOL vmlinux 0x840339bd inet6_del_protocol +EXPORT_SYMBOL vmlinux 0x83ca3332 unpin_user_page +EXPORT_SYMBOL vmlinux 0x83e6b21d bioset_exit +EXPORT_SYMBOL vmlinux 0x83f9c7f5 sock_no_mmap EXPORT_SYMBOL vmlinux 0x840342c6 sgl_free +EXPORT_SYMBOL vmlinux 0x8409a121 cookie_ecn_ok +EXPORT_SYMBOL vmlinux 0x840a5f06 elv_rb_former_request EXPORT_SYMBOL vmlinux 0x841cc2f6 dma_fence_remove_callback -EXPORT_SYMBOL vmlinux 0x84508163 send_sig -EXPORT_SYMBOL vmlinux 0x845963a3 d_prune_aliases -EXPORT_SYMBOL vmlinux 0x8463328f sk_filter_trim_cap -EXPORT_SYMBOL vmlinux 0x84661da3 security_dentry_init_security -EXPORT_SYMBOL vmlinux 0x8468c194 no_seek_end_llseek -EXPORT_SYMBOL vmlinux 0x8483b98e kernel_param_lock -EXPORT_SYMBOL vmlinux 0x8484da5a vlan_vids_del_by_dev -EXPORT_SYMBOL vmlinux 0x848f629b sget -EXPORT_SYMBOL vmlinux 0x84941a34 pci_set_power_state +EXPORT_SYMBOL vmlinux 0x846dff0d account_page_redirty +EXPORT_SYMBOL vmlinux 0x847b3e18 ccw_device_get_id +EXPORT_SYMBOL vmlinux 0x847f2373 dev_add_pack +EXPORT_SYMBOL vmlinux 0x8488175e tcp_v4_md5_lookup EXPORT_SYMBOL vmlinux 0x8499b061 gen_pool_destroy -EXPORT_SYMBOL vmlinux 0x849d2834 unregister_qdisc -EXPORT_SYMBOL vmlinux 0x84a1eb83 elv_rb_add -EXPORT_SYMBOL vmlinux 0x84a227e7 xfrm_unregister_km -EXPORT_SYMBOL vmlinux 0x84a6beb7 remove_conflicting_pci_framebuffers -EXPORT_SYMBOL vmlinux 0x84b83731 inet_rtx_syn_ack +EXPORT_SYMBOL vmlinux 0x84bf0f40 dma_unmap_sg_attrs EXPORT_SYMBOL vmlinux 0x84c03e9a rtnl_nla_parse_ifla EXPORT_SYMBOL vmlinux 0x84c18f4f ZSTD_decompress_usingDDict -EXPORT_SYMBOL vmlinux 0x84c89579 sock_rfree -EXPORT_SYMBOL vmlinux 0x84d27744 neigh_ifdown -EXPORT_SYMBOL vmlinux 0x84d33b7a page_cache_next_miss EXPORT_SYMBOL vmlinux 0x84d4c8cc crc16 -EXPORT_SYMBOL vmlinux 0x84f812b5 scsi_eh_restore_cmnd -EXPORT_SYMBOL vmlinux 0x84fe6301 eth_mac_addr -EXPORT_SYMBOL vmlinux 0x84feec9f netlink_set_err -EXPORT_SYMBOL vmlinux 0x85124ea9 cdrom_open -EXPORT_SYMBOL vmlinux 0x851e503a dev_set_mac_address_user -EXPORT_SYMBOL vmlinux 0x85288402 pci_enable_device +EXPORT_SYMBOL vmlinux 0x84f2ac1b register_qdisc +EXPORT_SYMBOL vmlinux 0x84f39019 setup_arg_pages +EXPORT_SYMBOL vmlinux 0x8500798f qdisc_put_unlocked +EXPORT_SYMBOL vmlinux 0x851d0144 pci_set_power_state +EXPORT_SYMBOL vmlinux 0x852788bc ccw_device_clear_options +EXPORT_SYMBOL vmlinux 0x854f06ca cdrom_mode_sense +EXPORT_SYMBOL vmlinux 0x855160c2 __lock_sock_fast EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked -EXPORT_SYMBOL vmlinux 0x8589cbf5 gnet_stats_copy_basic_hw -EXPORT_SYMBOL vmlinux 0x8592e93f netif_carrier_off -EXPORT_SYMBOL vmlinux 0x8597c754 unlock_two_nondirectories -EXPORT_SYMBOL vmlinux 0x85a8b42d sdev_enable_disk_events EXPORT_SYMBOL vmlinux 0x85abc85f strncmp -EXPORT_SYMBOL vmlinux 0x85ac5b5b nf_unregister_sockopt -EXPORT_SYMBOL vmlinux 0x85ba400e netdev_upper_dev_unlink +EXPORT_SYMBOL vmlinux 0x85b25c81 jbd2_complete_transaction EXPORT_SYMBOL vmlinux 0x85bd1608 __request_region -EXPORT_SYMBOL vmlinux 0x85be8b1c kern_unmount -EXPORT_SYMBOL vmlinux 0x85cf9cbe filemap_fdatawrite_wbc EXPORT_SYMBOL vmlinux 0x85d14264 trace_print_flags_seq -EXPORT_SYMBOL vmlinux 0x85d44028 pci_alloc_dev -EXPORT_SYMBOL vmlinux 0x85d4d0b6 thaw_super EXPORT_SYMBOL vmlinux 0x85df9b6c strsep -EXPORT_SYMBOL vmlinux 0x85e07c1a tcp_v4_destroy_sock EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn +EXPORT_SYMBOL vmlinux 0x8609716d flow_rule_match_enc_ip EXPORT_SYMBOL vmlinux 0x860efa2c mutex_lock -EXPORT_SYMBOL vmlinux 0x8613370f blk_mq_queue_stopped -EXPORT_SYMBOL vmlinux 0x8613c4ed netif_napi_add -EXPORT_SYMBOL vmlinux 0x861dc81e ip_sock_set_tos -EXPORT_SYMBOL vmlinux 0x861e5df4 dquot_operations -EXPORT_SYMBOL vmlinux 0x861ea12a __skb_ext_del +EXPORT_SYMBOL vmlinux 0x86156ad8 inet_proto_csum_replace4 EXPORT_SYMBOL vmlinux 0x86216acd __xa_set_mark +EXPORT_SYMBOL vmlinux 0x86238d3c kmem_cache_alloc_trace +EXPORT_SYMBOL vmlinux 0x8625fa98 pci_read_config_byte +EXPORT_SYMBOL vmlinux 0x86288d3d __SetPageMovable +EXPORT_SYMBOL vmlinux 0x862c2a8e scsi_is_sdev_device EXPORT_SYMBOL vmlinux 0x863a276a color_table -EXPORT_SYMBOL vmlinux 0x863a54cf generic_fadvise -EXPORT_SYMBOL vmlinux 0x86405980 inode_init_once -EXPORT_SYMBOL vmlinux 0x864ab97f kernel_getsockname -EXPORT_SYMBOL vmlinux 0x8655717d iov_iter_get_pages -EXPORT_SYMBOL vmlinux 0x866513fc d_alloc_name -EXPORT_SYMBOL vmlinux 0x866f9c4c cdrom_release -EXPORT_SYMBOL vmlinux 0x867ca5e4 skb_queue_purge +EXPORT_SYMBOL vmlinux 0x866e60ed tcp_select_initial_window EXPORT_SYMBOL vmlinux 0x8689d3f6 ZSTD_decompressBlock EXPORT_SYMBOL vmlinux 0x868acba5 get_options EXPORT_SYMBOL vmlinux 0x868bde1d down_write_trylock +EXPORT_SYMBOL vmlinux 0x868e1834 kill_litter_super EXPORT_SYMBOL vmlinux 0x86a34793 _copy_to_user_key EXPORT_SYMBOL vmlinux 0x86a8fb71 mutex_unlock +EXPORT_SYMBOL vmlinux 0x86a9f252 sock_wmalloc EXPORT_SYMBOL vmlinux 0x86bdbe46 __tracepoint_s390_cio_chsc -EXPORT_SYMBOL vmlinux 0x86ca73d0 __vfs_removexattr +EXPORT_SYMBOL vmlinux 0x86c569d6 __block_write_full_page EXPORT_SYMBOL vmlinux 0x86d2335e mempool_create EXPORT_SYMBOL vmlinux 0x86d52ba5 lookup_constant +EXPORT_SYMBOL vmlinux 0x86f5c5b7 pagecache_get_page EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user +EXPORT_SYMBOL vmlinux 0x86fd3919 dev_pick_tx_cpu_id +EXPORT_SYMBOL vmlinux 0x8702d546 pci_scan_bus +EXPORT_SYMBOL vmlinux 0x870a2578 xfrm_policy_destroy EXPORT_SYMBOL vmlinux 0x870bab9e utf8ncursor -EXPORT_SYMBOL vmlinux 0x87476f93 flow_rule_match_enc_control +EXPORT_SYMBOL vmlinux 0x870eb0a3 input_mt_sync_frame +EXPORT_SYMBOL vmlinux 0x874ff661 tcf_get_next_chain EXPORT_SYMBOL vmlinux 0x87532703 raw3270_start_irq EXPORT_SYMBOL vmlinux 0x8761c87b rps_needed +EXPORT_SYMBOL vmlinux 0x876f7636 vmf_insert_mixed +EXPORT_SYMBOL vmlinux 0x877d43e2 fs_param_is_u64 +EXPORT_SYMBOL vmlinux 0x878bb48a pcim_iounmap_regions EXPORT_SYMBOL vmlinux 0x87a21cb3 __ubsan_handle_out_of_bounds -EXPORT_SYMBOL vmlinux 0x87b82013 __hw_addr_ref_sync_dev EXPORT_SYMBOL vmlinux 0x87b8798d sg_next -EXPORT_SYMBOL vmlinux 0x87e0d4ba tcf_idr_create +EXPORT_SYMBOL vmlinux 0x87cb8024 __xfrm_policy_check +EXPORT_SYMBOL vmlinux 0x87ea271c tcf_qevent_handle +EXPORT_SYMBOL vmlinux 0x87edcd18 tcp_req_err EXPORT_SYMBOL vmlinux 0x87fcab48 hex2bin EXPORT_SYMBOL vmlinux 0x8810754a _find_first_bit -EXPORT_SYMBOL vmlinux 0x88213126 filemap_map_pages -EXPORT_SYMBOL vmlinux 0x8830bbb5 inet_frag_find +EXPORT_SYMBOL vmlinux 0x882ad6e5 bdev_read_only +EXPORT_SYMBOL vmlinux 0x882b9107 simple_dir_operations +EXPORT_SYMBOL vmlinux 0x882d4936 nf_register_net_hook EXPORT_SYMBOL vmlinux 0x8833bc7e __kfifo_dma_out_finish_r -EXPORT_SYMBOL vmlinux 0x883467f3 kill_litter_super +EXPORT_SYMBOL vmlinux 0x883c697b tag_pages_for_writeback EXPORT_SYMBOL vmlinux 0x8845d89a __kmalloc_track_caller +EXPORT_SYMBOL vmlinux 0x8871a3b0 xfrm_if_register_cb +EXPORT_SYMBOL vmlinux 0x8879fc2c pcie_set_readrq EXPORT_SYMBOL vmlinux 0x887efc6f __traceiter_dma_fence_enable_signal EXPORT_SYMBOL vmlinux 0x88822d38 unregister_blocking_lsm_notifier -EXPORT_SYMBOL vmlinux 0x889612f7 __brelse -EXPORT_SYMBOL vmlinux 0x88c2cbe6 grab_cache_page_write_begin +EXPORT_SYMBOL vmlinux 0x88840134 __dynamic_ibdev_dbg +EXPORT_SYMBOL vmlinux 0x88a8073f dm_table_get_mode +EXPORT_SYMBOL vmlinux 0x88b5d6c2 __d_drop EXPORT_SYMBOL vmlinux 0x88c880b9 set_groups -EXPORT_SYMBOL vmlinux 0x88cc482c dquot_get_state -EXPORT_SYMBOL vmlinux 0x88d180a5 pci_resize_resource -EXPORT_SYMBOL vmlinux 0x88d97b28 __tcp_md5_do_lookup EXPORT_SYMBOL vmlinux 0x88db9f48 __check_object_size EXPORT_SYMBOL vmlinux 0x88e1d0f0 page_frag_free -EXPORT_SYMBOL vmlinux 0x88e2ee10 sock_wake_async EXPORT_SYMBOL vmlinux 0x88e52cdb idr_for_each -EXPORT_SYMBOL vmlinux 0x88fbfbfe vfs_create -EXPORT_SYMBOL vmlinux 0x890526ba mntput -EXPORT_SYMBOL vmlinux 0x8927f228 debug_dflt_header_fn +EXPORT_SYMBOL vmlinux 0x890cadb1 bio_endio +EXPORT_SYMBOL vmlinux 0x891e0cba neigh_ifdown +EXPORT_SYMBOL vmlinux 0x891ef8c7 vfs_iocb_iter_write +EXPORT_SYMBOL vmlinux 0x892c7bc8 tcp_seq_start +EXPORT_SYMBOL vmlinux 0x8939e130 inet_sendpage EXPORT_SYMBOL vmlinux 0x89621b96 __genradix_iter_peek -EXPORT_SYMBOL vmlinux 0x89697bbd fb_get_mode -EXPORT_SYMBOL vmlinux 0x896d20c4 tcp_v4_md5_lookup -EXPORT_SYMBOL vmlinux 0x8981c1af fuse_mount_destroy -EXPORT_SYMBOL vmlinux 0x898233a6 vmf_insert_mixed_prot +EXPORT_SYMBOL vmlinux 0x89900e21 fscrypt_put_encryption_info EXPORT_SYMBOL vmlinux 0x89a09837 ioremap_prot EXPORT_SYMBOL vmlinux 0x89a72572 __tracepoint_s390_cio_hsch -EXPORT_SYMBOL vmlinux 0x89ae77f4 single_open_size -EXPORT_SYMBOL vmlinux 0x89c39e6f ipv6_getsockopt -EXPORT_SYMBOL vmlinux 0x89d1a613 simple_statfs -EXPORT_SYMBOL vmlinux 0x89d26ecb devm_request_any_context_irq +EXPORT_SYMBOL vmlinux 0x89a9c1be devm_of_iomap +EXPORT_SYMBOL vmlinux 0x89b4f76c find_inode_nowait +EXPORT_SYMBOL vmlinux 0x89c70ef7 set_disk_ro EXPORT_SYMBOL vmlinux 0x89d93ef7 __nla_reserve_64bit -EXPORT_SYMBOL vmlinux 0x89eaa962 xfrm_state_delete -EXPORT_SYMBOL vmlinux 0x8a30d0be read_cache_page -EXPORT_SYMBOL vmlinux 0x8a55b581 tcp_md5_do_add -EXPORT_SYMBOL vmlinux 0x8a5e08eb flow_block_cb_decref +EXPORT_SYMBOL vmlinux 0x89f0a885 lookup_one_len +EXPORT_SYMBOL vmlinux 0x8a15bd22 skb_copy_and_csum_dev +EXPORT_SYMBOL vmlinux 0x8a54f86f sock_bind_add EXPORT_SYMBOL vmlinux 0x8a65338b percpu_counter_sync EXPORT_SYMBOL vmlinux 0x8a7094ba vm_brk_flags +EXPORT_SYMBOL vmlinux 0x8a74a267 make_bad_inode EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory -EXPORT_SYMBOL vmlinux 0x8a88d0ea read_cache_pages +EXPORT_SYMBOL vmlinux 0x8a842413 shrink_dcache_parent EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab +EXPORT_SYMBOL vmlinux 0x8aaadea5 dev_queue_xmit +EXPORT_SYMBOL vmlinux 0x8ab5fde5 jbd2_fc_end_commit_fallback +EXPORT_SYMBOL vmlinux 0x8ac2e92c scsi_eh_finish_cmd EXPORT_SYMBOL vmlinux 0x8ac3334b net_dim_get_def_rx_moderation -EXPORT_SYMBOL vmlinux 0x8addf52c filemap_fault -EXPORT_SYMBOL vmlinux 0x8ae534cc fs_param_is_u64 +EXPORT_SYMBOL vmlinux 0x8ad852d5 tty_port_close +EXPORT_SYMBOL vmlinux 0x8ae8a0dc tcp_sock_set_syncnt +EXPORT_SYMBOL vmlinux 0x8ae8fceb __traceiter_mmap_lock_acquire_returned +EXPORT_SYMBOL vmlinux 0x8af0cc27 qdisc_create_dflt +EXPORT_SYMBOL vmlinux 0x8af3336f may_umount_tree EXPORT_SYMBOL vmlinux 0x8b0088d1 LZ4_decompress_safe_usingDict +EXPORT_SYMBOL vmlinux 0x8b01d334 udp_seq_start EXPORT_SYMBOL vmlinux 0x8b07b51d flow_block_cb_is_busy -EXPORT_SYMBOL vmlinux 0x8b0a5144 generic_file_direct_write -EXPORT_SYMBOL vmlinux 0x8b1a2118 locks_init_lock -EXPORT_SYMBOL vmlinux 0x8b1eae9d param_set_ullong +EXPORT_SYMBOL vmlinux 0x8b0f572e udp_push_pending_frames +EXPORT_SYMBOL vmlinux 0x8b15341d unregister_mii_timestamper +EXPORT_SYMBOL vmlinux 0x8b21441b __break_lease +EXPORT_SYMBOL vmlinux 0x8b29be7e ip_tunnel_parse_protocol +EXPORT_SYMBOL vmlinux 0x8b4572bb tcf_idr_check_alloc +EXPORT_SYMBOL vmlinux 0x8b48842f netpoll_parse_options EXPORT_SYMBOL vmlinux 0x8b55fd4f hdmi_spd_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0x8b5e21b7 follow_up EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid EXPORT_SYMBOL vmlinux 0x8b649625 neigh_proc_dointvec_ms_jiffies -EXPORT_SYMBOL vmlinux 0x8b6db373 eth_commit_mac_addr_change -EXPORT_SYMBOL vmlinux 0x8b738876 jbd2_journal_unlock_updates -EXPORT_SYMBOL vmlinux 0x8b7ab26a irq_domain_set_info EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p -EXPORT_SYMBOL vmlinux 0x8b819022 seg6_hmac_net_exit +EXPORT_SYMBOL vmlinux 0x8b89c5b1 __devm_release_region EXPORT_SYMBOL vmlinux 0x8b910be2 errseq_sample -EXPORT_SYMBOL vmlinux 0x8b9cf4f5 netif_receive_skb_core EXPORT_SYMBOL vmlinux 0x8b9ea582 ZSTD_copyDCtx -EXPORT_SYMBOL vmlinux 0x8bae1f7d pcie_port_service_unregister -EXPORT_SYMBOL vmlinux 0x8bb389ca make_kprojid -EXPORT_SYMBOL vmlinux 0x8bca8e88 find_vma -EXPORT_SYMBOL vmlinux 0x8bd410a8 seq_escape -EXPORT_SYMBOL vmlinux 0x8beeb636 ip_frag_next -EXPORT_SYMBOL vmlinux 0x8bfcf41d reuseport_detach_prog -EXPORT_SYMBOL vmlinux 0x8c0986fc netlink_rcv_skb -EXPORT_SYMBOL vmlinux 0x8c21c98e skb_kill_datagram -EXPORT_SYMBOL vmlinux 0x8c306252 timestamp_truncate -EXPORT_SYMBOL vmlinux 0x8c39571c dquot_set_dqinfo -EXPORT_SYMBOL vmlinux 0x8c4ee2d1 __free_pages -EXPORT_SYMBOL vmlinux 0x8c5482b2 pagecache_get_page -EXPORT_SYMBOL vmlinux 0x8c556813 ap_queue_message -EXPORT_SYMBOL vmlinux 0x8c654e30 __quota_error +EXPORT_SYMBOL vmlinux 0x8ba38a1a blk_queue_flag_set +EXPORT_SYMBOL vmlinux 0x8bc8bd4a tcp_ld_RTO_revert +EXPORT_SYMBOL vmlinux 0x8bcb7a3c keyring_alloc +EXPORT_SYMBOL vmlinux 0x8bd32aa5 iov_iter_bvec +EXPORT_SYMBOL vmlinux 0x8bf95aa7 sk_stream_error +EXPORT_SYMBOL vmlinux 0x8c21289a set_bh_page +EXPORT_SYMBOL vmlinux 0x8c3a6514 skb_abort_seq_read +EXPORT_SYMBOL vmlinux 0x8c41aef7 bio_add_pc_page +EXPORT_SYMBOL vmlinux 0x8c568fd5 netdev_printk +EXPORT_SYMBOL vmlinux 0x8c5ea6a4 tty_register_driver EXPORT_SYMBOL vmlinux 0x8c6592fc hdmi_avi_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0x8c7b071f generic_file_readonly_mmap +EXPORT_SYMBOL vmlinux 0x8c6de868 dev_get_phys_port_id +EXPORT_SYMBOL vmlinux 0x8c7f447e netdev_state_change EXPORT_SYMBOL vmlinux 0x8c816c50 override_creds EXPORT_SYMBOL vmlinux 0x8c8569cb kstrtoint -EXPORT_SYMBOL vmlinux 0x8c859711 input_get_timestamp EXPORT_SYMBOL vmlinux 0x8c875be0 tcw_init -EXPORT_SYMBOL vmlinux 0x8c8ddcb9 textsearch_unregister -EXPORT_SYMBOL vmlinux 0x8c9819f6 try_lookup_one_len -EXPORT_SYMBOL vmlinux 0x8ca1dac2 inet_listen -EXPORT_SYMBOL vmlinux 0x8ca34436 pcix_set_mmrbc EXPORT_SYMBOL vmlinux 0x8caf9305 uuid_is_valid EXPORT_SYMBOL vmlinux 0x8cb062a8 iucv_message_reply -EXPORT_SYMBOL vmlinux 0x8cc2b446 xfrm_state_free EXPORT_SYMBOL vmlinux 0x8cdfc002 sclp_unregister -EXPORT_SYMBOL vmlinux 0x8ce7dd86 cdev_add -EXPORT_SYMBOL vmlinux 0x8ceb7fbc xfrm_input_register_afinfo -EXPORT_SYMBOL vmlinux 0x8cee3891 jbd2_journal_finish_inode_data_buffers -EXPORT_SYMBOL vmlinux 0x8cee8ded nf_ct_attach +EXPORT_SYMBOL vmlinux 0x8ce80c71 __xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x8ceb4c9a dev_set_alias EXPORT_SYMBOL vmlinux 0x8cef78c1 register_sysctl_table -EXPORT_SYMBOL vmlinux 0x8cff58e3 __d_drop -EXPORT_SYMBOL vmlinux 0x8d06bdef elv_rb_former_request +EXPORT_SYMBOL vmlinux 0x8cf8fc58 devm_register_netdev +EXPORT_SYMBOL vmlinux 0x8d060797 jbd2_journal_destroy +EXPORT_SYMBOL vmlinux 0x8d0aa51b __put_user_ns +EXPORT_SYMBOL vmlinux 0x8d0c210b __icmp_send EXPORT_SYMBOL vmlinux 0x8d0fd4ef idr_replace -EXPORT_SYMBOL vmlinux 0x8d15a6d7 mnt_drop_write_file -EXPORT_SYMBOL vmlinux 0x8d1eb1bb proto_register -EXPORT_SYMBOL vmlinux 0x8d312a30 __destroy_inode -EXPORT_SYMBOL vmlinux 0x8d324525 md_cluster_ops +EXPORT_SYMBOL vmlinux 0x8d19329f __dec_zone_page_state +EXPORT_SYMBOL vmlinux 0x8d1e5c1d vfs_unlink +EXPORT_SYMBOL vmlinux 0x8d2d9698 kernel_getpeername +EXPORT_SYMBOL vmlinux 0x8d3869d4 rtnl_configure_link +EXPORT_SYMBOL vmlinux 0x8d3d5f92 tcf_block_get +EXPORT_SYMBOL vmlinux 0x8d4e0661 inet_shutdown +EXPORT_SYMBOL vmlinux 0x8d5306aa tty_unthrottle EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq -EXPORT_SYMBOL vmlinux 0x8d5ab346 inode_init_owner -EXPORT_SYMBOL vmlinux 0x8d619e67 __napi_schedule -EXPORT_SYMBOL vmlinux 0x8d67d83d nobh_write_begin EXPORT_SYMBOL vmlinux 0x8d73278e hex_asc_upper -EXPORT_SYMBOL vmlinux 0x8dbef3be input_set_keycode -EXPORT_SYMBOL vmlinux 0x8dd8cbf8 sock_release -EXPORT_SYMBOL vmlinux 0x8ddd5bf5 param_set_invbool +EXPORT_SYMBOL vmlinux 0x8d7886ae pcim_iomap_table +EXPORT_SYMBOL vmlinux 0x8d7e2cc0 simple_rmdir +EXPORT_SYMBOL vmlinux 0x8d95f1d9 ip_options_compile +EXPORT_SYMBOL vmlinux 0x8d9e65d2 remove_proc_entry +EXPORT_SYMBOL vmlinux 0x8da56a99 thaw_bdev +EXPORT_SYMBOL vmlinux 0x8da61047 pcie_capability_write_dword +EXPORT_SYMBOL vmlinux 0x8daa833c skb_unlink +EXPORT_SYMBOL vmlinux 0x8dadfc1c console_stop +EXPORT_SYMBOL vmlinux 0x8dc3a681 skb_find_text +EXPORT_SYMBOL vmlinux 0x8dc3f5b5 dev_mc_del_global +EXPORT_SYMBOL vmlinux 0x8dc846ce dev_set_allmulti +EXPORT_SYMBOL vmlinux 0x8ddd4987 __register_binfmt EXPORT_SYMBOL vmlinux 0x8ddd8aad schedule_timeout -EXPORT_SYMBOL vmlinux 0x8dded999 lock_two_nondirectories -EXPORT_SYMBOL vmlinux 0x8de8ee51 flow_block_cb_incref +EXPORT_SYMBOL vmlinux 0x8de211d6 bio_init EXPORT_SYMBOL vmlinux 0x8df9dd10 guid_null -EXPORT_SYMBOL vmlinux 0x8e060569 dma_set_coherent_mask -EXPORT_SYMBOL vmlinux 0x8e3b55d5 ap_queue_init_state -EXPORT_SYMBOL vmlinux 0x8e3d4e75 param_set_charp -EXPORT_SYMBOL vmlinux 0x8e56bc9e ioc_lookup_icq +EXPORT_SYMBOL vmlinux 0x8e1de07c write_one_page +EXPORT_SYMBOL vmlinux 0x8e2a7c0f sock_no_getname +EXPORT_SYMBOL vmlinux 0x8e2eef27 __dev_get_by_index +EXPORT_SYMBOL vmlinux 0x8e5589ca inet_release EXPORT_SYMBOL vmlinux 0x8e73ebce proc_doulongvec_minmax +EXPORT_SYMBOL vmlinux 0x8e7ce6e8 scsi_eh_restore_cmnd +EXPORT_SYMBOL vmlinux 0x8e7d3291 tty_port_block_til_ready +EXPORT_SYMBOL vmlinux 0x8e842378 unregister_quota_format +EXPORT_SYMBOL vmlinux 0x8e88779e pcix_get_mmrbc EXPORT_SYMBOL vmlinux 0x8e93bd24 security_secctx_to_secid -EXPORT_SYMBOL vmlinux 0x8e9683d7 xsk_clear_tx_need_wakeup -EXPORT_SYMBOL vmlinux 0x8ea9a6d5 neigh_app_ns -EXPORT_SYMBOL vmlinux 0x8ec20f4f audit_log_start -EXPORT_SYMBOL vmlinux 0x8ecc959e param_get_invbool -EXPORT_SYMBOL vmlinux 0x8eeaba14 validate_slab_cache -EXPORT_SYMBOL vmlinux 0x8f0e241b register_netdevice_notifier_dev_net -EXPORT_SYMBOL vmlinux 0x8f2725fd scsi_target_quiesce -EXPORT_SYMBOL vmlinux 0x8f399372 udp_set_csum -EXPORT_SYMBOL vmlinux 0x8f45357d dev_loopback_xmit -EXPORT_SYMBOL vmlinux 0x8f572fc7 __skb_recv_datagram -EXPORT_SYMBOL vmlinux 0x8f76be50 kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0x8f980ec1 mark_buffer_write_io_error +EXPORT_SYMBOL vmlinux 0x8e9edf76 ilookup5 +EXPORT_SYMBOL vmlinux 0x8eab8026 try_lookup_one_len +EXPORT_SYMBOL vmlinux 0x8eabaf68 tcf_exts_dump +EXPORT_SYMBOL vmlinux 0x8ec5ba83 generic_file_direct_write +EXPORT_SYMBOL vmlinux 0x8ecd0547 pci_try_set_mwi +EXPORT_SYMBOL vmlinux 0x8ece9fd0 xsk_tx_peek_desc +EXPORT_SYMBOL vmlinux 0x8ed4ed04 rt_dst_clone +EXPORT_SYMBOL vmlinux 0x8ed7dc38 netdev_notice +EXPORT_SYMBOL vmlinux 0x8ee1cae8 irq_domain_set_info +EXPORT_SYMBOL vmlinux 0x8eed9129 netdev_lower_get_next_private_rcu +EXPORT_SYMBOL vmlinux 0x8efb67fb proc_create_single_data +EXPORT_SYMBOL vmlinux 0x8f049888 __mod_node_page_state +EXPORT_SYMBOL vmlinux 0x8f094fab xfrm_dst_ifdown +EXPORT_SYMBOL vmlinux 0x8f0c347d reset_guest_reference_bit +EXPORT_SYMBOL vmlinux 0x8f1f445e kern_unmount +EXPORT_SYMBOL vmlinux 0x8f24bc80 ipv6_dev_get_saddr +EXPORT_SYMBOL vmlinux 0x8f35c764 param_get_byte +EXPORT_SYMBOL vmlinux 0x8f5ae8f3 pci_wait_for_pending_transaction +EXPORT_SYMBOL vmlinux 0x8f6ee9cd xsk_tx_completed +EXPORT_SYMBOL vmlinux 0x8f856865 udp_gro_complete +EXPORT_SYMBOL vmlinux 0x8f8681be eth_gro_complete EXPORT_SYMBOL vmlinux 0x8f996a30 ethtool_convert_legacy_u32_to_link_mode -EXPORT_SYMBOL vmlinux 0x8faf8508 input_unregister_handler -EXPORT_SYMBOL vmlinux 0x8fd0e293 proc_mkdir -EXPORT_SYMBOL vmlinux 0x8fd3c422 param_get_ulong -EXPORT_SYMBOL vmlinux 0x8fd9cecc sock_enable_timestamps -EXPORT_SYMBOL vmlinux 0x8fe9d19b inet_sock_destruct -EXPORT_SYMBOL vmlinux 0x8fed5e59 __pci_register_driver +EXPORT_SYMBOL vmlinux 0x8fae636c pci_get_device +EXPORT_SYMBOL vmlinux 0x8fbc12fb mount_single +EXPORT_SYMBOL vmlinux 0x8fc732ff put_disk EXPORT_SYMBOL vmlinux 0x8ff89ed0 seg6_hmac_exit EXPORT_SYMBOL vmlinux 0x90006be6 dm_kcopyd_client_flush -EXPORT_SYMBOL vmlinux 0x9002b98c kmem_cache_alloc_bulk -EXPORT_SYMBOL vmlinux 0x90357202 alloc_skb_with_frags -EXPORT_SYMBOL vmlinux 0x90396423 inet_frags_init -EXPORT_SYMBOL vmlinux 0x9079c73e xfrm_input_unregister_afinfo -EXPORT_SYMBOL vmlinux 0x90a2f9f4 dns_query +EXPORT_SYMBOL vmlinux 0x9001d633 _dev_err +EXPORT_SYMBOL vmlinux 0x9009eec6 dev_get_mac_address +EXPORT_SYMBOL vmlinux 0x9010b464 unregister_cdrom +EXPORT_SYMBOL vmlinux 0x902d110a netdev_name_node_alt_destroy +EXPORT_SYMBOL vmlinux 0x9046a9a8 netpoll_send_udp +EXPORT_SYMBOL vmlinux 0x9050d6f8 tty_unregister_device +EXPORT_SYMBOL vmlinux 0x90573453 __cgroup_bpf_run_filter_skb +EXPORT_SYMBOL vmlinux 0x905e9f25 jbd2_journal_get_write_access +EXPORT_SYMBOL vmlinux 0x906c0f4a blk_mq_complete_request +EXPORT_SYMBOL vmlinux 0x90901881 napi_consume_skb +EXPORT_SYMBOL vmlinux 0x90917fbe tc_cleanup_flow_action EXPORT_SYMBOL vmlinux 0x90abb542 prepare_to_wait_exclusive -EXPORT_SYMBOL vmlinux 0x90add0c5 dst_release_immediate -EXPORT_SYMBOL vmlinux 0x90b52934 __vfs_setxattr -EXPORT_SYMBOL vmlinux 0x90cb7000 __cleancache_invalidate_fs -EXPORT_SYMBOL vmlinux 0x90cf3eec __skb_recv_udp -EXPORT_SYMBOL vmlinux 0x90d027a1 param_get_ullong -EXPORT_SYMBOL vmlinux 0x90d48af4 free_cgroup_ns -EXPORT_SYMBOL vmlinux 0x90e0635a frontswap_register_ops -EXPORT_SYMBOL vmlinux 0x910118fd neigh_xmit +EXPORT_SYMBOL vmlinux 0x90fb7fde jbd2_transaction_committed EXPORT_SYMBOL vmlinux 0x910c7a0c alloc_pages_exact +EXPORT_SYMBOL vmlinux 0x910ff1c4 wait_for_key_construction EXPORT_SYMBOL vmlinux 0x9116b417 save_fpu_regs -EXPORT_SYMBOL vmlinux 0x91247073 xfrm6_protocol_register -EXPORT_SYMBOL vmlinux 0x914f8f82 md_integrity_register -EXPORT_SYMBOL vmlinux 0x918df7c3 neigh_table_init -EXPORT_SYMBOL vmlinux 0x919b8f6f tcp_md5_hash_key +EXPORT_SYMBOL vmlinux 0x91211de2 ip_check_defrag +EXPORT_SYMBOL vmlinux 0x91400a58 seq_put_decimal_ll +EXPORT_SYMBOL vmlinux 0x9151e45f pci_bus_type +EXPORT_SYMBOL vmlinux 0x915702d7 input_get_keycode +EXPORT_SYMBOL vmlinux 0x91619bc3 buffer_migrate_page +EXPORT_SYMBOL vmlinux 0x9175b066 tso_build_data +EXPORT_SYMBOL vmlinux 0x9176bb55 __tty_alloc_driver +EXPORT_SYMBOL vmlinux 0x919684d7 input_mt_report_slot_state +EXPORT_SYMBOL vmlinux 0x91976bdf jbd2_journal_set_triggers EXPORT_SYMBOL vmlinux 0x919c58f3 __clzsi2 EXPORT_SYMBOL vmlinux 0x91a488ac __netdev_alloc_frag_align EXPORT_SYMBOL vmlinux 0x91a7b1da qdisc_class_hash_remove -EXPORT_SYMBOL vmlinux 0x91af5b0c remove_proc_subtree -EXPORT_SYMBOL vmlinux 0x91b30747 inet_csk_reset_keepalive_timer -EXPORT_SYMBOL vmlinux 0x91c83136 __dev_kfree_skb_any -EXPORT_SYMBOL vmlinux 0x91c939da cdrom_ioctl -EXPORT_SYMBOL vmlinux 0x91cb2c52 flow_rule_match_enc_keyid -EXPORT_SYMBOL vmlinux 0x91d131ea netdev_upper_get_next_dev_rcu -EXPORT_SYMBOL vmlinux 0x91ddf495 netlink_capable -EXPORT_SYMBOL vmlinux 0x91f11688 netdev_bonding_info_change +EXPORT_SYMBOL vmlinux 0x91ad3b53 cdev_device_add +EXPORT_SYMBOL vmlinux 0x91ad65e9 scm_fp_dup +EXPORT_SYMBOL vmlinux 0x91b3d5e0 jbd2_journal_revoke +EXPORT_SYMBOL vmlinux 0x91c2322a pcie_capability_read_dword +EXPORT_SYMBOL vmlinux 0x91e2c73f vfs_mknod +EXPORT_SYMBOL vmlinux 0x91e36eac xfrm_state_lookup_byspi +EXPORT_SYMBOL vmlinux 0x91ecfc76 vlan_vids_del_by_dev EXPORT_SYMBOL vmlinux 0x91f68ea1 __hw_addr_sync -EXPORT_SYMBOL vmlinux 0x921b602f pcie_capability_read_dword -EXPORT_SYMBOL vmlinux 0x921bd00e ccw_device_start_key EXPORT_SYMBOL vmlinux 0x922f45a6 __bitmap_clear -EXPORT_SYMBOL vmlinux 0x924b30b4 blk_mq_tag_to_rq -EXPORT_SYMBOL vmlinux 0x9255b388 blkdev_issue_discard -EXPORT_SYMBOL vmlinux 0x9265f147 bioset_exit -EXPORT_SYMBOL vmlinux 0x926a31bc xfrm_policy_flush +EXPORT_SYMBOL vmlinux 0x92572290 filemap_fdatawrite_wbc +EXPORT_SYMBOL vmlinux 0x92576a63 devm_request_threaded_irq +EXPORT_SYMBOL vmlinux 0x92590c97 from_kgid +EXPORT_SYMBOL vmlinux 0x926ea4f1 tcp_get_md5sig_pool EXPORT_SYMBOL vmlinux 0x92774cf8 __kfence_pool EXPORT_SYMBOL vmlinux 0x927e2955 xa_get_order -EXPORT_SYMBOL vmlinux 0x927fef71 get_fs_type +EXPORT_SYMBOL vmlinux 0x928f5b6d iucv_bus EXPORT_SYMBOL vmlinux 0x92997ed8 _printk -EXPORT_SYMBOL vmlinux 0x929abddc skb_copy_expand EXPORT_SYMBOL vmlinux 0x92a16af7 lockref_get -EXPORT_SYMBOL vmlinux 0x92a98d4e blk_integrity_register -EXPORT_SYMBOL vmlinux 0x92b3fb31 cont_write_begin -EXPORT_SYMBOL vmlinux 0x92ced61a tty_write_room -EXPORT_SYMBOL vmlinux 0x92d43c00 security_inode_copy_up +EXPORT_SYMBOL vmlinux 0x92d12965 simple_setattr EXPORT_SYMBOL vmlinux 0x92d5838e request_threaded_irq EXPORT_SYMBOL vmlinux 0x92d6ea76 __kfifo_dma_in_prepare_r -EXPORT_SYMBOL vmlinux 0x92e1cd7a seq_vprintf EXPORT_SYMBOL vmlinux 0x92ec510d jiffies64_to_msecs -EXPORT_SYMBOL vmlinux 0x9315adc2 key_put +EXPORT_SYMBOL vmlinux 0x92f033ce hmm_range_fault +EXPORT_SYMBOL vmlinux 0x92f99d4c input_flush_device +EXPORT_SYMBOL vmlinux 0x9300863d input_set_keycode +EXPORT_SYMBOL vmlinux 0x930782fa __dec_node_page_state +EXPORT_SYMBOL vmlinux 0x93182343 __traceiter_module_get EXPORT_SYMBOL vmlinux 0x933afd98 panic_notifier_list -EXPORT_SYMBOL vmlinux 0x934ffec1 poll_initwait -EXPORT_SYMBOL vmlinux 0x935a309a cdev_device_del -EXPORT_SYMBOL vmlinux 0x9370e9b0 security_inode_notifysecctx EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid +EXPORT_SYMBOL vmlinux 0x937a1d2d unlock_page +EXPORT_SYMBOL vmlinux 0x937fb301 xfrm4_protocol_register +EXPORT_SYMBOL vmlinux 0x9388b1c2 kernel_sock_ip_overhead +EXPORT_SYMBOL vmlinux 0x93925263 mini_qdisc_pair_block_init +EXPORT_SYMBOL vmlinux 0x93960fb1 __seq_open_private +EXPORT_SYMBOL vmlinux 0x939dba45 __ip_dev_find EXPORT_SYMBOL vmlinux 0x93a6e0b2 io_schedule -EXPORT_SYMBOL vmlinux 0x93b10cb3 finalize_exec EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier -EXPORT_SYMBOL vmlinux 0x93d7d1df keyring_alloc -EXPORT_SYMBOL vmlinux 0x93d9ed5a ccw_device_clear_options -EXPORT_SYMBOL vmlinux 0x93db0d9f fscrypt_has_permitted_context -EXPORT_SYMBOL vmlinux 0x93eef7e7 input_mt_report_slot_state +EXPORT_SYMBOL vmlinux 0x93bf8c87 scsi_scan_target +EXPORT_SYMBOL vmlinux 0x93c8172c lookup_one +EXPORT_SYMBOL vmlinux 0x93ed4add udp_read_sock EXPORT_SYMBOL vmlinux 0x93f12561 nla_put -EXPORT_SYMBOL vmlinux 0x9408a1fc wait_on_page_private_2 -EXPORT_SYMBOL vmlinux 0x940ba482 xfrm_input -EXPORT_SYMBOL vmlinux 0x940cb2c8 inode_permission -EXPORT_SYMBOL vmlinux 0x94221637 dev_set_allmulti +EXPORT_SYMBOL vmlinux 0x94237632 sk_alloc +EXPORT_SYMBOL vmlinux 0x94244c6a bdi_put +EXPORT_SYMBOL vmlinux 0x94282580 config_group_init_type_name +EXPORT_SYMBOL vmlinux 0x9428b71f vmalloc_to_page EXPORT_SYMBOL vmlinux 0x9428f816 dim_turn -EXPORT_SYMBOL vmlinux 0x9429c5e5 flow_rule_match_ct EXPORT_SYMBOL vmlinux 0x942f4c5c iucv_message_reject -EXPORT_SYMBOL vmlinux 0x9435c67f flow_rule_match_cvlan -EXPORT_SYMBOL vmlinux 0x943674e2 iov_iter_kvec +EXPORT_SYMBOL vmlinux 0x94307080 unregister_qdisc +EXPORT_SYMBOL vmlinux 0x9435b5bc blk_queue_update_dma_pad +EXPORT_SYMBOL vmlinux 0x94400baa __page_symlink EXPORT_SYMBOL vmlinux 0x944375db _totalram_pages +EXPORT_SYMBOL vmlinux 0x9445f0e9 qdisc_tree_reduce_backlog EXPORT_SYMBOL vmlinux 0x944a564d is_console_locked +EXPORT_SYMBOL vmlinux 0x9450166d tty_port_lower_dtr_rts +EXPORT_SYMBOL vmlinux 0x9454d8ff arp_send EXPORT_SYMBOL vmlinux 0x945775a5 segment_save -EXPORT_SYMBOL vmlinux 0x94658871 page_pool_put_page_bulk +EXPORT_SYMBOL vmlinux 0x9483402c mount_bdev +EXPORT_SYMBOL vmlinux 0x948a9251 node_data +EXPORT_SYMBOL vmlinux 0x949587f7 jbd2_fc_begin_commit EXPORT_SYMBOL vmlinux 0x94961283 vunmap +EXPORT_SYMBOL vmlinux 0x9497abe1 eth_prepare_mac_addr_change +EXPORT_SYMBOL vmlinux 0x94aca3b1 unlock_buffer EXPORT_SYMBOL vmlinux 0x94bf03ca utf8_to_utf32 -EXPORT_SYMBOL vmlinux 0x94e10d37 sock_no_listen +EXPORT_SYMBOL vmlinux 0x94cf4c12 jbd2_journal_init_jbd_inode EXPORT_SYMBOL vmlinux 0x94e50ad4 call_fib_notifier -EXPORT_SYMBOL vmlinux 0x94f1a08f rdmacg_try_charge +EXPORT_SYMBOL vmlinux 0x94e51212 scsi_host_lookup +EXPORT_SYMBOL vmlinux 0x94fdfa04 __skb_flow_get_ports +EXPORT_SYMBOL vmlinux 0x95020d39 inet_confirm_addr +EXPORT_SYMBOL vmlinux 0x9504c0af sock_create_kern EXPORT_SYMBOL vmlinux 0x9507c90f copy_fsxattr_to_user -EXPORT_SYMBOL vmlinux 0x95157446 netpoll_parse_options EXPORT_SYMBOL vmlinux 0x951a2dfe iucv_path_accept -EXPORT_SYMBOL vmlinux 0x952b3b92 scsi_print_sense +EXPORT_SYMBOL vmlinux 0x9521d8e2 dm_kcopyd_zero EXPORT_SYMBOL vmlinux 0x9530365d __xa_clear_mark -EXPORT_SYMBOL vmlinux 0x953b9e71 ip6_err_gen_icmpv6_unreach -EXPORT_SYMBOL vmlinux 0x9543b729 xp_dma_map -EXPORT_SYMBOL vmlinux 0x954838ab dcache_dir_open -EXPORT_SYMBOL vmlinux 0x954908c7 copy_page_from_iter_atomic +EXPORT_SYMBOL vmlinux 0x9537cf57 dquot_commit +EXPORT_SYMBOL vmlinux 0x9539d328 pmdp_xchg_lazy +EXPORT_SYMBOL vmlinux 0x953f8219 bio_alloc_bioset EXPORT_SYMBOL vmlinux 0x954cef6f init_on_alloc EXPORT_SYMBOL vmlinux 0x954f099c idr_preload -EXPORT_SYMBOL vmlinux 0x9559c60f pagevec_lookup_range_tag -EXPORT_SYMBOL vmlinux 0x9571dfbf __ClearPageMovable -EXPORT_SYMBOL vmlinux 0x958dedb7 dcb_ieee_setapp -EXPORT_SYMBOL vmlinux 0x95925bbd padata_do_parallel -EXPORT_SYMBOL vmlinux 0x95a79e06 pci_unmap_rom +EXPORT_SYMBOL vmlinux 0x9557797a dev_queue_xmit_accel +EXPORT_SYMBOL vmlinux 0x955c7ed7 fscrypt_ioctl_set_policy +EXPORT_SYMBOL vmlinux 0x957171ae blk_queue_max_segments +EXPORT_SYMBOL vmlinux 0x95966bde __skb_recv_udp +EXPORT_SYMBOL vmlinux 0x95b19f65 __cgroup_bpf_run_filter_sk EXPORT_SYMBOL vmlinux 0x95b38ccc resource_list_create_entry -EXPORT_SYMBOL vmlinux 0x95bc5f11 neigh_table_clear -EXPORT_SYMBOL vmlinux 0x95c46bcc dma_resv_copy_fences +EXPORT_SYMBOL vmlinux 0x95b59a8e ccw_device_get_path_mask +EXPORT_SYMBOL vmlinux 0x95c79309 xfrm_policy_bysel_ctx +EXPORT_SYMBOL vmlinux 0x95c7dec7 __getblk_gfp EXPORT_SYMBOL vmlinux 0x95ceb864 key_update -EXPORT_SYMBOL vmlinux 0x95d9177e __blockdev_direct_IO +EXPORT_SYMBOL vmlinux 0x95d0fa40 flow_rule_match_icmp EXPORT_SYMBOL vmlinux 0x95e63ced prot_virt_host -EXPORT_SYMBOL vmlinux 0x95e95cf3 key_move -EXPORT_SYMBOL vmlinux 0x95f3250f mount_bdev -EXPORT_SYMBOL vmlinux 0x95f58726 key_unlink -EXPORT_SYMBOL vmlinux 0x9602df0e fib_default_rule_add -EXPORT_SYMBOL vmlinux 0x960a872b dquot_initialize -EXPORT_SYMBOL vmlinux 0x960ef899 blk_mq_init_queue -EXPORT_SYMBOL vmlinux 0x96135f81 dst_dev_put +EXPORT_SYMBOL vmlinux 0x95fbcf71 jbd2_wait_inode_data +EXPORT_SYMBOL vmlinux 0x96009c34 fget +EXPORT_SYMBOL vmlinux 0x9617ac78 starget_for_each_device +EXPORT_SYMBOL vmlinux 0x96199e65 proc_mkdir_mode +EXPORT_SYMBOL vmlinux 0x961ced94 km_policy_notify EXPORT_SYMBOL vmlinux 0x96404e39 itcw_set_data -EXPORT_SYMBOL vmlinux 0x9649b438 proc_create_mount_point -EXPORT_SYMBOL vmlinux 0x9651f068 d_add -EXPORT_SYMBOL vmlinux 0x96ab3b3c vm_insert_pages -EXPORT_SYMBOL vmlinux 0x96bffa2e input_mt_destroy_slots +EXPORT_SYMBOL vmlinux 0x964888a9 arch_debugfs_dir +EXPORT_SYMBOL vmlinux 0x9653a4ea ipv6_chk_addr_and_flags +EXPORT_SYMBOL vmlinux 0x96543200 tty_insert_flip_string_flags +EXPORT_SYMBOL vmlinux 0x96751a0c mnt_set_expiry +EXPORT_SYMBOL vmlinux 0x967ce835 zero_fill_bio +EXPORT_SYMBOL vmlinux 0x967efff0 inet_addr_type +EXPORT_SYMBOL vmlinux 0x968b73d6 devm_request_resource +EXPORT_SYMBOL vmlinux 0x969cfe79 ipv6_setsockopt EXPORT_SYMBOL vmlinux 0x96c17136 fb_var_to_videomode EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string -EXPORT_SYMBOL vmlinux 0x96d0d4bd page_pool_update_nid -EXPORT_SYMBOL vmlinux 0x96d28d02 jbd2_fc_release_bufs -EXPORT_SYMBOL vmlinux 0x96e8dcd4 dm_table_run_md_queue_async -EXPORT_SYMBOL vmlinux 0x96f756ba security_inode_listsecurity EXPORT_SYMBOL vmlinux 0x96fab350 dim_park_on_top -EXPORT_SYMBOL vmlinux 0x9708da7c inet_sk_rebuild_header +EXPORT_SYMBOL vmlinux 0x96fcfe4e tty_port_tty_set +EXPORT_SYMBOL vmlinux 0x96ff2ee0 inet_del_offload EXPORT_SYMBOL vmlinux 0x970f17a7 ap_parse_mask_str -EXPORT_SYMBOL vmlinux 0x9723a0ff vfs_mknod -EXPORT_SYMBOL vmlinux 0x9733fa98 alloc_file_pseudo -EXPORT_SYMBOL vmlinux 0x974bedb7 ccw_device_tm_start +EXPORT_SYMBOL vmlinux 0x97276c1c blk_queue_flag_clear +EXPORT_SYMBOL vmlinux 0x9731e60a mark_buffer_async_write EXPORT_SYMBOL vmlinux 0x974d0924 __kernel_cpumcf_begin -EXPORT_SYMBOL vmlinux 0x974e26c6 fscrypt_decrypt_pagecache_blocks -EXPORT_SYMBOL vmlinux 0x97691097 security_binder_transfer_file +EXPORT_SYMBOL vmlinux 0x9765eb91 tcf_block_get_ext EXPORT_SYMBOL vmlinux 0x9780c2d8 __traceiter_kmalloc -EXPORT_SYMBOL vmlinux 0x978591d9 __sk_receive_skb -EXPORT_SYMBOL vmlinux 0x978f4397 dm_table_get_md +EXPORT_SYMBOL vmlinux 0x9784c733 nf_log_set EXPORT_SYMBOL vmlinux 0x97934ecf del_timer_sync EXPORT_SYMBOL vmlinux 0x979ae83d s390_arch_get_random_long EXPORT_SYMBOL vmlinux 0x979b5887 raw3270_start_locked -EXPORT_SYMBOL vmlinux 0x979ee08e flow_rule_match_ports -EXPORT_SYMBOL vmlinux 0x97a4a468 jbd2_transaction_committed +EXPORT_SYMBOL vmlinux 0x979cbef1 input_setup_polling EXPORT_SYMBOL vmlinux 0x97adb487 utf8s_to_utf16s -EXPORT_SYMBOL vmlinux 0x97b88562 nosteal_pipe_buf_ops -EXPORT_SYMBOL vmlinux 0x97ba74de sock_kfree_s EXPORT_SYMBOL vmlinux 0x97bdfa60 scsi_dev_info_remove_list -EXPORT_SYMBOL vmlinux 0x97d53244 dev_graft_qdisc -EXPORT_SYMBOL vmlinux 0x98495e48 nf_register_net_hook -EXPORT_SYMBOL vmlinux 0x985e5055 pci_ep_cfs_remove_epf_group -EXPORT_SYMBOL vmlinux 0x986f8453 blk_rq_init -EXPORT_SYMBOL vmlinux 0x987fd529 napi_get_frags -EXPORT_SYMBOL vmlinux 0x9880de62 xfrm4_protocol_register +EXPORT_SYMBOL vmlinux 0x97d53972 nf_ip6_checksum +EXPORT_SYMBOL vmlinux 0x97df2fa9 pagecache_write_begin +EXPORT_SYMBOL vmlinux 0x97f50072 kfree_skb_list +EXPORT_SYMBOL vmlinux 0x98071340 dm_table_run_md_queue_async +EXPORT_SYMBOL vmlinux 0x980921cd __fs_parse +EXPORT_SYMBOL vmlinux 0x98346d8c nf_log_trace +EXPORT_SYMBOL vmlinux 0x983e1e26 jbd2_journal_try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x98443f9e pci_scan_slot +EXPORT_SYMBOL vmlinux 0x985802b6 scsi_scan_host +EXPORT_SYMBOL vmlinux 0x987195e0 locks_copy_lock +EXPORT_SYMBOL vmlinux 0x987dc56c blk_mq_alloc_request +EXPORT_SYMBOL vmlinux 0x9881fda7 tcp_getsockopt +EXPORT_SYMBOL vmlinux 0x989050ad vfs_ioctl +EXPORT_SYMBOL vmlinux 0x989629be generic_file_llseek EXPORT_SYMBOL vmlinux 0x989e1516 xa_destroy -EXPORT_SYMBOL vmlinux 0x98bac64f ccw_device_is_pathgroup +EXPORT_SYMBOL vmlinux 0x98ae8a9c padata_set_cpumask +EXPORT_SYMBOL vmlinux 0x98b5661d gro_find_receive_by_type +EXPORT_SYMBOL vmlinux 0x98c44509 skb_tx_error EXPORT_SYMBOL vmlinux 0x98c89ade security_xfrm_state_alloc -EXPORT_SYMBOL vmlinux 0x98cece85 skb_clone -EXPORT_SYMBOL vmlinux 0x98d1885b devm_release_resource EXPORT_SYMBOL vmlinux 0x98de1c15 snprintf EXPORT_SYMBOL vmlinux 0x98e508ef ignore_console_lock_warning +EXPORT_SYMBOL vmlinux 0x98e89a6b jbd2_journal_restart +EXPORT_SYMBOL vmlinux 0x990478ac tcp_sock_set_keepidle +EXPORT_SYMBOL vmlinux 0x99198ee8 dev_getbyhwaddr_rcu +EXPORT_SYMBOL vmlinux 0x992dbfd7 netdev_master_upper_dev_get +EXPORT_SYMBOL vmlinux 0x993b0649 kernel_connect EXPORT_SYMBOL vmlinux 0x9942ec77 itcw_finalize +EXPORT_SYMBOL vmlinux 0x9944a86c iter_file_splice_write EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable -EXPORT_SYMBOL vmlinux 0x99643afe flow_indr_dev_unregister -EXPORT_SYMBOL vmlinux 0x99667daf bio_add_page +EXPORT_SYMBOL vmlinux 0x9952d6bc security_sctp_bind_connect +EXPORT_SYMBOL vmlinux 0x999b6555 ipmr_rule_default EXPORT_SYMBOL vmlinux 0x999e8297 vfree -EXPORT_SYMBOL vmlinux 0x99c85c05 page_readlink +EXPORT_SYMBOL vmlinux 0x99a0f456 tcp_create_openreq_child +EXPORT_SYMBOL vmlinux 0x99a8699f vfs_fadvise +EXPORT_SYMBOL vmlinux 0x99b8f7ac param_get_ullong EXPORT_SYMBOL vmlinux 0x99ca74a6 xa_erase -EXPORT_SYMBOL vmlinux 0x99d03e8f __skb_get_hash EXPORT_SYMBOL vmlinux 0x99d472b1 net_dim_get_rx_moderation EXPORT_SYMBOL vmlinux 0x99daa9bf try_offline_node -EXPORT_SYMBOL vmlinux 0x99e58226 tc_setup_cb_add -EXPORT_SYMBOL vmlinux 0x99eec0ce ip_sock_set_mtu_discover -EXPORT_SYMBOL vmlinux 0x99f8251b md_bitmap_start_sync EXPORT_SYMBOL vmlinux 0x99f9638f __napi_alloc_frag_align -EXPORT_SYMBOL vmlinux 0x9a0dcb8e kthread_create_on_node -EXPORT_SYMBOL vmlinux 0x9a19ec50 make_flow_keys_digest +EXPORT_SYMBOL vmlinux 0x99f9d93b pci_release_regions +EXPORT_SYMBOL vmlinux 0x99fccde0 seq_read_iter +EXPORT_SYMBOL vmlinux 0x9a01a7a3 vfs_llseek +EXPORT_SYMBOL vmlinux 0x9a144e6b filemap_check_errors EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk -EXPORT_SYMBOL vmlinux 0x9a29248e __alloc_disk_node -EXPORT_SYMBOL vmlinux 0x9a4a679f dev_get_phys_port_name -EXPORT_SYMBOL vmlinux 0x9a57ea9f md_write_inc +EXPORT_SYMBOL vmlinux 0x9a238950 tty_port_raise_dtr_rts +EXPORT_SYMBOL vmlinux 0x9a386cb1 ip_sock_set_tos +EXPORT_SYMBOL vmlinux 0x9a440eac tcp_rcv_state_process +EXPORT_SYMBOL vmlinux 0x9a45c3b8 debug_hex_ascii_view EXPORT_SYMBOL vmlinux 0x9a583306 netlbl_bitmap_walk -EXPORT_SYMBOL vmlinux 0x9a641fa4 __module_put_and_exit +EXPORT_SYMBOL vmlinux 0x9a59b89a del_gendisk +EXPORT_SYMBOL vmlinux 0x9a60a7ad km_new_mapping +EXPORT_SYMBOL vmlinux 0x9a617282 pci_ep_cfs_add_epc_group +EXPORT_SYMBOL vmlinux 0x9a62f7f9 generic_write_end EXPORT_SYMBOL vmlinux 0x9a684448 do_wait_intr -EXPORT_SYMBOL vmlinux 0x9a8e5ea0 unregister_netdevice_notifier_net +EXPORT_SYMBOL vmlinux 0x9a6bf87f vfs_get_link +EXPORT_SYMBOL vmlinux 0x9a74b92a simple_transaction_release +EXPORT_SYMBOL vmlinux 0x9a776cfa __dev_remove_pack +EXPORT_SYMBOL vmlinux 0x9a77f51c blkdev_compat_ptr_ioctl EXPORT_SYMBOL vmlinux 0x9a906daf memscan -EXPORT_SYMBOL vmlinux 0x9a997cc4 kern_path_create -EXPORT_SYMBOL vmlinux 0x9a9b28d7 skb_flow_dissect_ct +EXPORT_SYMBOL vmlinux 0x9aa537ce vfs_create +EXPORT_SYMBOL vmlinux 0x9aacb602 dquot_free_inode EXPORT_SYMBOL vmlinux 0x9aaeefce sysctl_nf_log_all_netns -EXPORT_SYMBOL vmlinux 0x9ab89440 inet_confirm_addr -EXPORT_SYMBOL vmlinux 0x9ac9498d dm_kcopyd_copy -EXPORT_SYMBOL vmlinux 0x9ad0a396 pid_task +EXPORT_SYMBOL vmlinux 0x9ad0a517 scsi_print_sense_hdr EXPORT_SYMBOL vmlinux 0x9adc9c67 vsnprintf -EXPORT_SYMBOL vmlinux 0x9ae2076d __sk_mem_reclaim EXPORT_SYMBOL vmlinux 0x9ae47436 _find_last_bit -EXPORT_SYMBOL vmlinux 0x9af2b627 dma_sync_sg_for_device -EXPORT_SYMBOL vmlinux 0x9b072366 __dev_get_by_flags -EXPORT_SYMBOL vmlinux 0x9b088582 security_sock_graft -EXPORT_SYMBOL vmlinux 0x9b1a986b __tty_alloc_driver -EXPORT_SYMBOL vmlinux 0x9b1dab41 generic_key_instantiate +EXPORT_SYMBOL vmlinux 0x9ae4fdaa blkdev_issue_discard EXPORT_SYMBOL vmlinux 0x9b2560b9 gf128mul_init_4k_bbe -EXPORT_SYMBOL vmlinux 0x9b2e32bc kthread_create_worker_on_cpu -EXPORT_SYMBOL vmlinux 0x9b32e819 tcf_generic_walker +EXPORT_SYMBOL vmlinux 0x9b28ab4f show_init_ipc_ns EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier EXPORT_SYMBOL vmlinux 0x9b42ef0f dfltcc_reset EXPORT_SYMBOL vmlinux 0x9b496b21 posix_acl_alloc -EXPORT_SYMBOL vmlinux 0x9b5192ff blk_cleanup_disk -EXPORT_SYMBOL vmlinux 0x9b5e94c1 bdi_put -EXPORT_SYMBOL vmlinux 0x9b8208d0 input_set_timestamp -EXPORT_SYMBOL vmlinux 0x9b830d92 seq_puts +EXPORT_SYMBOL vmlinux 0x9b4a2f5a passthru_features_check +EXPORT_SYMBOL vmlinux 0x9b4f3070 free_netdev +EXPORT_SYMBOL vmlinux 0x9b50f434 clear_bdi_congested +EXPORT_SYMBOL vmlinux 0x9b7ba511 blk_cleanup_disk +EXPORT_SYMBOL vmlinux 0x9b7ebc83 ccw_device_resume EXPORT_SYMBOL vmlinux 0x9b8d07aa strnlen -EXPORT_SYMBOL vmlinux 0x9ba10aaa mini_qdisc_pair_block_init -EXPORT_SYMBOL vmlinux 0x9bde2591 dev_get_iflink +EXPORT_SYMBOL vmlinux 0x9bb3895f ip6_frag_next +EXPORT_SYMBOL vmlinux 0x9bb7250f set_blocksize +EXPORT_SYMBOL vmlinux 0x9bb9254a qdisc_put +EXPORT_SYMBOL vmlinux 0x9bd1f4cf xfrm_state_check_expire EXPORT_SYMBOL vmlinux 0x9bedd673 dma_fence_get_status -EXPORT_SYMBOL vmlinux 0x9bf36062 tcp_rtx_synack -EXPORT_SYMBOL vmlinux 0x9c27fec1 iov_iter_fault_in_readable -EXPORT_SYMBOL vmlinux 0x9c6fd555 migrate_page_states +EXPORT_SYMBOL vmlinux 0x9c1af739 ip_fraglist_init +EXPORT_SYMBOL vmlinux 0x9c4c0738 xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x9c6d3665 dput +EXPORT_SYMBOL vmlinux 0x9c6eab3b security_inode_notifysecctx +EXPORT_SYMBOL vmlinux 0x9c71cd01 tcp_poll +EXPORT_SYMBOL vmlinux 0x9c7a3a3a udplite_prot +EXPORT_SYMBOL vmlinux 0x9c82f94b xfrm_replay_seqhi +EXPORT_SYMBOL vmlinux 0x9c836b5d blk_rq_init EXPORT_SYMBOL vmlinux 0x9c86b9ab fileattr_fill_flags +EXPORT_SYMBOL vmlinux 0x9c8ea6a8 dquot_file_open EXPORT_SYMBOL vmlinux 0x9cadbd3b __init_swait_queue_head -EXPORT_SYMBOL vmlinux 0x9cbd57c7 skb_copy_datagram_iter -EXPORT_SYMBOL vmlinux 0x9cc5e4d8 flow_indr_block_cb_alloc +EXPORT_SYMBOL vmlinux 0x9cae136f dev_mc_add +EXPORT_SYMBOL vmlinux 0x9cb4a370 invalidate_mapping_pages +EXPORT_SYMBOL vmlinux 0x9cc5147e inet_getname EXPORT_SYMBOL vmlinux 0x9cdfb3f7 sysctl_fb_tunnels_only_for_init_net -EXPORT_SYMBOL vmlinux 0x9cf3a38a dev_pick_tx_zero -EXPORT_SYMBOL vmlinux 0x9cfb19c9 __kfree_skb +EXPORT_SYMBOL vmlinux 0x9d0557cb ip_defrag EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier -EXPORT_SYMBOL vmlinux 0x9d0e3b86 __dec_node_page_state EXPORT_SYMBOL vmlinux 0x9d1da73e raw3270_find_view EXPORT_SYMBOL vmlinux 0x9d250156 __nla_put -EXPORT_SYMBOL vmlinux 0x9d25718c __cgroup_bpf_run_filter_sock_ops EXPORT_SYMBOL vmlinux 0x9d2ab8ac __tasklet_schedule EXPORT_SYMBOL vmlinux 0x9d2e7707 unregister_sysrq_key -EXPORT_SYMBOL vmlinux 0x9d335c81 filp_close -EXPORT_SYMBOL vmlinux 0x9d4cec5c add_to_page_cache_locked +EXPORT_SYMBOL vmlinux 0x9d4d849c ip_getsockopt EXPORT_SYMBOL vmlinux 0x9d509dca init_opal_dev -EXPORT_SYMBOL vmlinux 0x9d5cd83a tc_setup_cb_reoffload -EXPORT_SYMBOL vmlinux 0x9d654359 pci_find_parent_resource -EXPORT_SYMBOL vmlinux 0x9d68050f forget_all_cached_acls -EXPORT_SYMBOL vmlinux 0x9d6cc5fe key_invalidate -EXPORT_SYMBOL vmlinux 0x9d86f316 mark_buffer_async_write +EXPORT_SYMBOL vmlinux 0x9d5639a6 kernel_sendpage +EXPORT_SYMBOL vmlinux 0x9d60a7f3 pci_free_irq_vectors +EXPORT_SYMBOL vmlinux 0x9d7b8743 __skb_wait_for_more_packets EXPORT_SYMBOL vmlinux 0x9d97ab2c audit_log_object_context -EXPORT_SYMBOL vmlinux 0x9da2af11 nlmsg_notify -EXPORT_SYMBOL vmlinux 0x9dad3f79 close_fd_get_file -EXPORT_SYMBOL vmlinux 0x9de2724a proc_remove -EXPORT_SYMBOL vmlinux 0x9def74a4 textsearch_find_continuous -EXPORT_SYMBOL vmlinux 0x9df1d23a bio_put +EXPORT_SYMBOL vmlinux 0x9da5b1f3 vfs_dedupe_file_range +EXPORT_SYMBOL vmlinux 0x9dab07ac clear_nlink +EXPORT_SYMBOL vmlinux 0x9dcaaad5 md_bitmap_unplug +EXPORT_SYMBOL vmlinux 0x9dcac882 scsi_device_resume EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node -EXPORT_SYMBOL vmlinux 0x9e0e6e03 flow_rule_match_enc_ipv4_addrs EXPORT_SYMBOL vmlinux 0x9e0fa5ae hsiphash_3u32 +EXPORT_SYMBOL vmlinux 0x9e11f3e0 logfc EXPORT_SYMBOL vmlinux 0x9e13f6f6 gf128mul_lle -EXPORT_SYMBOL vmlinux 0x9e20a9e7 nobh_truncate_page -EXPORT_SYMBOL vmlinux 0x9e22a207 scsi_dma_unmap -EXPORT_SYMBOL vmlinux 0x9e24b96e jbd2_journal_get_undo_access +EXPORT_SYMBOL vmlinux 0x9e20aa2f jbd2_fc_get_buf EXPORT_SYMBOL vmlinux 0x9e2be142 nmi_panic -EXPORT_SYMBOL vmlinux 0x9e30db0e seq_open_private EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy EXPORT_SYMBOL vmlinux 0x9e61bb05 set_freezable -EXPORT_SYMBOL vmlinux 0x9e647e80 dma_resv_add_excl_fence +EXPORT_SYMBOL vmlinux 0x9e6b3092 __block_write_begin EXPORT_SYMBOL vmlinux 0x9e7d6bd0 __udelay -EXPORT_SYMBOL vmlinux 0x9e91daf3 ipv6_mc_check_mld -EXPORT_SYMBOL vmlinux 0x9e941867 devm_pci_remap_iospace EXPORT_SYMBOL vmlinux 0x9e9783e1 __tracepoint_s390_cio_ssch EXPORT_SYMBOL vmlinux 0x9e99837e __nla_put_64bit -EXPORT_SYMBOL vmlinux 0x9e9e3ab5 scsi_host_lookup EXPORT_SYMBOL vmlinux 0x9e9eab95 devcgroup_check_permission EXPORT_SYMBOL vmlinux 0x9e9fdd9d memunmap -EXPORT_SYMBOL vmlinux 0x9ea67a70 __vfs_getxattr -EXPORT_SYMBOL vmlinux 0x9eb8bbe0 hmm_range_fault -EXPORT_SYMBOL vmlinux 0x9ebcab19 ip_local_deliver +EXPORT_SYMBOL vmlinux 0x9ea077df neigh_seq_next +EXPORT_SYMBOL vmlinux 0x9eb0b719 __qdisc_calculate_pkt_len +EXPORT_SYMBOL vmlinux 0x9ec06f90 notify_change EXPORT_SYMBOL vmlinux 0x9ec6ca96 ktime_get_real_ts64 -EXPORT_SYMBOL vmlinux 0x9eec5df0 dma_supported -EXPORT_SYMBOL vmlinux 0x9eeecbe1 make_kgid -EXPORT_SYMBOL vmlinux 0x9f0c58c3 udp_gro_receive -EXPORT_SYMBOL vmlinux 0x9f24a234 vfs_get_super +EXPORT_SYMBOL vmlinux 0x9ede4d49 blk_get_request +EXPORT_SYMBOL vmlinux 0x9f1f6bc7 tty_driver_flush_buffer +EXPORT_SYMBOL vmlinux 0x9f303546 dst_release_immediate +EXPORT_SYMBOL vmlinux 0x9f3811dd reuseport_attach_prog EXPORT_SYMBOL vmlinux 0x9f46ced8 __sw_hweight64 EXPORT_SYMBOL vmlinux 0x9f50b770 keyring_restrict EXPORT_SYMBOL vmlinux 0x9f54ead7 gro_cells_destroy -EXPORT_SYMBOL vmlinux 0x9f551528 sock_no_mmap -EXPORT_SYMBOL vmlinux 0x9f5c4369 devm_ioremap_wc +EXPORT_SYMBOL vmlinux 0x9f5a5bd2 inet_accept EXPORT_SYMBOL vmlinux 0x9f5d9393 utf8nagemax +EXPORT_SYMBOL vmlinux 0x9f74b0f0 dec_node_page_state +EXPORT_SYMBOL vmlinux 0x9f8f754e param_array_ops +EXPORT_SYMBOL vmlinux 0x9f94d3d3 pci_iounmap EXPORT_SYMBOL vmlinux 0x9f984513 strrchr -EXPORT_SYMBOL vmlinux 0x9f9ea847 del_gendisk EXPORT_SYMBOL vmlinux 0x9fa7184a cancel_delayed_work_sync -EXPORT_SYMBOL vmlinux 0x9fd38dcf tcp_splice_read +EXPORT_SYMBOL vmlinux 0x9fb263fb file_check_and_advance_wb_err +EXPORT_SYMBOL vmlinux 0x9fbd0996 udp_lib_rehash +EXPORT_SYMBOL vmlinux 0x9fd99f91 from_kgid_munged EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many -EXPORT_SYMBOL vmlinux 0x9fe272a3 eth_header -EXPORT_SYMBOL vmlinux 0x9fede0c7 __bread_gfp +EXPORT_SYMBOL vmlinux 0x9fe390fb jbd2_journal_wipe EXPORT_SYMBOL vmlinux 0x9feed7ce timer_reduce +EXPORT_SYMBOL vmlinux 0x9ff6ed0a kmem_cache_alloc EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog -EXPORT_SYMBOL vmlinux 0xa013383e pci_rebar_get_possible_sizes -EXPORT_SYMBOL vmlinux 0xa0144edf ipv6_select_ident +EXPORT_SYMBOL vmlinux 0x9ffef08f fb_validate_mode +EXPORT_SYMBOL vmlinux 0xa008c08d __inet_hash EXPORT_SYMBOL vmlinux 0xa01d3df6 font_vga_8x16 +EXPORT_SYMBOL vmlinux 0xa02bbe73 xsk_clear_tx_need_wakeup EXPORT_SYMBOL vmlinux 0xa033d747 next_arg -EXPORT_SYMBOL vmlinux 0xa037562e pci_map_rom EXPORT_SYMBOL vmlinux 0xa0436e98 in6addr_linklocal_allnodes -EXPORT_SYMBOL vmlinux 0xa0442efe xfrm_parse_spi +EXPORT_SYMBOL vmlinux 0xa05191bd devm_pci_remap_iospace EXPORT_SYMBOL vmlinux 0xa054e8ed iucv_unregister EXPORT_SYMBOL vmlinux 0xa05b6be2 psched_ppscfg_precompute EXPORT_SYMBOL vmlinux 0xa066d89f xa_store_range -EXPORT_SYMBOL vmlinux 0xa06d54b1 inet_addr_type EXPORT_SYMBOL vmlinux 0xa06e587a release_firmware -EXPORT_SYMBOL vmlinux 0xa0797520 skb_abort_seq_read +EXPORT_SYMBOL vmlinux 0xa07ada17 __destroy_inode EXPORT_SYMBOL vmlinux 0xa07d1b3c tasklet_setup -EXPORT_SYMBOL vmlinux 0xa08202ae input_get_poll_interval EXPORT_SYMBOL vmlinux 0xa084749a __bitmap_or -EXPORT_SYMBOL vmlinux 0xa08af83e dquot_quota_sync EXPORT_SYMBOL vmlinux 0xa08b9f80 __traceiter_kmalloc_node +EXPORT_SYMBOL vmlinux 0xa08dcd10 tcf_classify EXPORT_SYMBOL vmlinux 0xa090478a arch_has_restricted_virtio_memory_access -EXPORT_SYMBOL vmlinux 0xa090fbca flow_rule_match_ip EXPORT_SYMBOL vmlinux 0xa095e02e generic_check_addressable -EXPORT_SYMBOL vmlinux 0xa09be7cf tty_register_ldisc EXPORT_SYMBOL vmlinux 0xa0a15b49 smp_call_function_many +EXPORT_SYMBOL vmlinux 0xa0a1e5de dcb_ieee_getapp_dscp_prio_mask_map EXPORT_SYMBOL vmlinux 0xa0ae1e73 siphash_3u64 +EXPORT_SYMBOL vmlinux 0xa0aea98f inet_ioctl EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 +EXPORT_SYMBOL vmlinux 0xa0b79723 generic_pipe_buf_get EXPORT_SYMBOL vmlinux 0xa0d3d560 ksize -EXPORT_SYMBOL vmlinux 0xa0d61d4b sock_wfree EXPORT_SYMBOL vmlinux 0xa0d87339 qdisc_get_rtab EXPORT_SYMBOL vmlinux 0xa0dad88e netdev_adjacent_get_private EXPORT_SYMBOL vmlinux 0xa0eae826 smp_call_function EXPORT_SYMBOL vmlinux 0xa0ebd14c sysctl_tcp_mem EXPORT_SYMBOL vmlinux 0xa0ebd437 hdmi_drm_infoframe_check EXPORT_SYMBOL vmlinux 0xa0fbac79 wake_up_bit -EXPORT_SYMBOL vmlinux 0xa107744e xfrm4_rcv_encap +EXPORT_SYMBOL vmlinux 0xa10335be tcp_recvmsg +EXPORT_SYMBOL vmlinux 0xa10474ae set_nlink EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max EXPORT_SYMBOL vmlinux 0xa10a0439 kmalloc_order -EXPORT_SYMBOL vmlinux 0xa10fc531 bdi_register -EXPORT_SYMBOL vmlinux 0xa11715ba flow_rule_match_mpls -EXPORT_SYMBOL vmlinux 0xa11b2225 xfrm_trans_queue_net -EXPORT_SYMBOL vmlinux 0xa1403da5 inet_csk_init_xmit_timers -EXPORT_SYMBOL vmlinux 0xa149d445 fc_mount -EXPORT_SYMBOL vmlinux 0xa153def0 skb_copy -EXPORT_SYMBOL vmlinux 0xa1910223 unregister_binfmt -EXPORT_SYMBOL vmlinux 0xa191b54a ap_driver_unregister -EXPORT_SYMBOL vmlinux 0xa191def3 sock_set_reuseaddr +EXPORT_SYMBOL vmlinux 0xa10ec7e4 km_query +EXPORT_SYMBOL vmlinux 0xa14279fc param_ops_int +EXPORT_SYMBOL vmlinux 0xa15a15ac __insert_inode_hash +EXPORT_SYMBOL vmlinux 0xa17102f8 handle_edge_irq +EXPORT_SYMBOL vmlinux 0xa17ecb99 udp_set_csum +EXPORT_SYMBOL vmlinux 0xa1888904 dup_iter +EXPORT_SYMBOL vmlinux 0xa18e8574 ipv6_getsockopt EXPORT_SYMBOL vmlinux 0xa1a8cc6c crc_ccitt_false -EXPORT_SYMBOL vmlinux 0xa1aa63da blk_queue_max_segments -EXPORT_SYMBOL vmlinux 0xa1d4207a pcie_set_readrq +EXPORT_SYMBOL vmlinux 0xa1ab7b70 security_socket_getpeersec_dgram +EXPORT_SYMBOL vmlinux 0xa1d1856e neigh_seq_start +EXPORT_SYMBOL vmlinux 0xa1d4bcfd sock_no_bind EXPORT_SYMBOL vmlinux 0xa1d5979b find_first_bit_inv +EXPORT_SYMBOL vmlinux 0xa1ddfcbd file_modified EXPORT_SYMBOL vmlinux 0xa1ec8f1c __kfifo_to_user_r -EXPORT_SYMBOL vmlinux 0xa1ee0752 devm_request_threaded_irq -EXPORT_SYMBOL vmlinux 0xa1fb73d9 __cgroup_bpf_run_filter_skb -EXPORT_SYMBOL vmlinux 0xa1fcd381 tcf_idr_release EXPORT_SYMBOL vmlinux 0xa1fee353 tcw_set_tsb +EXPORT_SYMBOL vmlinux 0xa203567c t10_pi_type3_ip EXPORT_SYMBOL vmlinux 0xa2060911 inet_current_timestamp -EXPORT_SYMBOL vmlinux 0xa21c8a6c skb_copy_and_csum_bits -EXPORT_SYMBOL vmlinux 0xa222127e set_anon_super_fc +EXPORT_SYMBOL vmlinux 0xa208843d pci_disable_device +EXPORT_SYMBOL vmlinux 0xa22dd444 ccw_device_halt +EXPORT_SYMBOL vmlinux 0xa23d27f9 dump_skip_to EXPORT_SYMBOL vmlinux 0xa23ffc04 groups_sort -EXPORT_SYMBOL vmlinux 0xa249009f inet6_add_offload -EXPORT_SYMBOL vmlinux 0xa24b108c dm_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0xa2438339 unlock_two_nondirectories EXPORT_SYMBOL vmlinux 0xa24f23d8 __request_module -EXPORT_SYMBOL vmlinux 0xa25af05a kmem_cache_alloc_trace EXPORT_SYMBOL vmlinux 0xa25b90ab utf8byte -EXPORT_SYMBOL vmlinux 0xa25ecc52 setup_new_exec -EXPORT_SYMBOL vmlinux 0xa2628fd7 simple_open EXPORT_SYMBOL vmlinux 0xa263892b fscrypt_fname_free_buffer EXPORT_SYMBOL vmlinux 0xa2660e90 __tracepoint_dma_fence_signaled +EXPORT_SYMBOL vmlinux 0xa266b1fd jbd2_fc_wait_bufs +EXPORT_SYMBOL vmlinux 0xa274220f netdev_master_upper_dev_get_rcu +EXPORT_SYMBOL vmlinux 0xa280e69c pci_bus_assign_resources EXPORT_SYMBOL vmlinux 0xa28cfcc0 gen_estimator_active EXPORT_SYMBOL vmlinux 0xa28e1b49 __percpu_counter_compare -EXPORT_SYMBOL vmlinux 0xa2a75ca6 input_mt_init_slots -EXPORT_SYMBOL vmlinux 0xa2beddf3 tty_port_destroy -EXPORT_SYMBOL vmlinux 0xa2bfad60 flow_rule_match_meta -EXPORT_SYMBOL vmlinux 0xa2c6d4ee nonseekable_open +EXPORT_SYMBOL vmlinux 0xa2915744 flow_block_cb_free +EXPORT_SYMBOL vmlinux 0xa2c20c3d neigh_table_clear EXPORT_SYMBOL vmlinux 0xa2d7ec8d __SCK__tp_func_kmem_cache_free +EXPORT_SYMBOL vmlinux 0xa2ea0411 pci_alloc_irq_vectors_affinity EXPORT_SYMBOL vmlinux 0xa2fc75e7 trace_print_hex_seq -EXPORT_SYMBOL vmlinux 0xa2fcddfa balance_dirty_pages_ratelimited +EXPORT_SYMBOL vmlinux 0xa300ccc6 register_service_level +EXPORT_SYMBOL vmlinux 0xa302f7c3 touch_buffer +EXPORT_SYMBOL vmlinux 0xa305b823 blk_queue_split EXPORT_SYMBOL vmlinux 0xa31d1dea __xa_erase +EXPORT_SYMBOL vmlinux 0xa32160ec sync_mapping_buffers +EXPORT_SYMBOL vmlinux 0xa321dafd param_set_byte +EXPORT_SYMBOL vmlinux 0xa324333a dcache_readdir +EXPORT_SYMBOL vmlinux 0xa324e151 devm_iounmap +EXPORT_SYMBOL vmlinux 0xa3293f72 configfs_unregister_subsystem +EXPORT_SYMBOL vmlinux 0xa34eb57e reuseport_detach_prog EXPORT_SYMBOL vmlinux 0xa3509ddc dev_base_lock -EXPORT_SYMBOL vmlinux 0xa383c66d tcp_disconnect -EXPORT_SYMBOL vmlinux 0xa38aefb1 setattr_copy -EXPORT_SYMBOL vmlinux 0xa38dd536 __test_set_page_writeback +EXPORT_SYMBOL vmlinux 0xa3631513 kmem_cache_destroy +EXPORT_SYMBOL vmlinux 0xa3835e9f inet_put_port EXPORT_SYMBOL vmlinux 0xa3a0cc12 raw3270_wait_queue -EXPORT_SYMBOL vmlinux 0xa3a5b6ed skb_dequeue EXPORT_SYMBOL vmlinux 0xa3a5be95 memmove -EXPORT_SYMBOL vmlinux 0xa3aa1f6f fwnode_graph_parse_endpoint EXPORT_SYMBOL vmlinux 0xa3b06dde percpu_counter_destroy -EXPORT_SYMBOL vmlinux 0xa3b1e7c4 import_single_range -EXPORT_SYMBOL vmlinux 0xa3b8991f xfrm_if_register_cb -EXPORT_SYMBOL vmlinux 0xa3ba2a73 __ip_options_compile +EXPORT_SYMBOL vmlinux 0xa3b27464 blk_queue_dma_alignment EXPORT_SYMBOL vmlinux 0xa3be8342 __ubsan_handle_type_mismatch -EXPORT_SYMBOL vmlinux 0xa3cca55d __lock_page -EXPORT_SYMBOL vmlinux 0xa3ed9467 __skb_wait_for_more_packets -EXPORT_SYMBOL vmlinux 0xa3f4395d ww_mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0xa3c2ae06 skb_checksum_setup +EXPORT_SYMBOL vmlinux 0xa3dfa7f7 dquot_scan_active +EXPORT_SYMBOL vmlinux 0xa3eef6a1 kthread_create_worker +EXPORT_SYMBOL vmlinux 0xa3f1c6d2 unregister_nexthop_notifier EXPORT_SYMBOL vmlinux 0xa3f7aa51 __tracepoint_s390_cio_rsch EXPORT_SYMBOL vmlinux 0xa3fb735a blk_set_default_limits EXPORT_SYMBOL vmlinux 0xa3fea172 sha224_final EXPORT_SYMBOL vmlinux 0xa4051bf6 LZ4_decompress_safe_continue -EXPORT_SYMBOL vmlinux 0xa4091156 drop_super_exclusive +EXPORT_SYMBOL vmlinux 0xa4082334 may_umount +EXPORT_SYMBOL vmlinux 0xa416a4d1 xsk_set_rx_need_wakeup EXPORT_SYMBOL vmlinux 0xa416ce26 kobject_del -EXPORT_SYMBOL vmlinux 0xa41ef63d blk_rq_map_user_iov -EXPORT_SYMBOL vmlinux 0xa42d6f7d devm_memunmap EXPORT_SYMBOL vmlinux 0xa44b520a __scsi_format_command EXPORT_SYMBOL vmlinux 0xa45c59bd __SCK__tp_func_s390_cio_chsc -EXPORT_SYMBOL vmlinux 0xa460ba62 inet_twsk_deschedule_put -EXPORT_SYMBOL vmlinux 0xa476dee7 find_get_pages_range_tag -EXPORT_SYMBOL vmlinux 0xa48ff11c rtnl_kfree_skbs -EXPORT_SYMBOL vmlinux 0xa4951e27 tcf_exts_destroy -EXPORT_SYMBOL vmlinux 0xa4ada426 inet_proto_csum_replace4 -EXPORT_SYMBOL vmlinux 0xa4b12d75 generic_copy_file_range -EXPORT_SYMBOL vmlinux 0xa4be752e pci_prepare_to_sleep -EXPORT_SYMBOL vmlinux 0xa4c0e7b0 devm_ioremap_np -EXPORT_SYMBOL vmlinux 0xa4d70780 skb_dequeue_tail +EXPORT_SYMBOL vmlinux 0xa46ee803 dev_mc_unsync +EXPORT_SYMBOL vmlinux 0xa49ad796 scsi_change_queue_depth +EXPORT_SYMBOL vmlinux 0xa49c3a12 pcie_capability_clear_and_set_word +EXPORT_SYMBOL vmlinux 0xa49da375 blk_mq_start_hw_queues +EXPORT_SYMBOL vmlinux 0xa4a65b47 fs_context_for_submount +EXPORT_SYMBOL vmlinux 0xa4ab5023 tcp_setsockopt +EXPORT_SYMBOL vmlinux 0xa4ae6ae2 skb_flow_dissect_meta +EXPORT_SYMBOL vmlinux 0xa4b0dae4 ip6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0xa4dd63a3 truncate_inode_pages_range EXPORT_SYMBOL vmlinux 0xa4e188e7 strscpy -EXPORT_SYMBOL vmlinux 0xa4f15655 I_BDEV -EXPORT_SYMBOL vmlinux 0xa4ff5162 netif_receive_skb +EXPORT_SYMBOL vmlinux 0xa4fb60e3 tcp_sock_set_nodelay EXPORT_SYMBOL vmlinux 0xa503dd04 wait_for_completion_killable_timeout EXPORT_SYMBOL vmlinux 0xa50483fe __ksize +EXPORT_SYMBOL vmlinux 0xa5076517 __test_set_page_writeback EXPORT_SYMBOL vmlinux 0xa50a3da7 _find_next_bit -EXPORT_SYMBOL vmlinux 0xa5113ad8 configfs_register_subsystem -EXPORT_SYMBOL vmlinux 0xa51961f3 vmf_insert_pfn +EXPORT_SYMBOL vmlinux 0xa512ec78 __ip_mc_dec_group +EXPORT_SYMBOL vmlinux 0xa516edf6 jbd2_fc_end_commit +EXPORT_SYMBOL vmlinux 0xa51e8d2c netdev_get_xmit_slave +EXPORT_SYMBOL vmlinux 0xa530d048 get_watch_queue EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color -EXPORT_SYMBOL vmlinux 0xa55c1708 touchscreen_parse_properties -EXPORT_SYMBOL vmlinux 0xa580acc1 tcf_register_action +EXPORT_SYMBOL vmlinux 0xa577c850 filemap_flush +EXPORT_SYMBOL vmlinux 0xa579b799 page_readlink +EXPORT_SYMBOL vmlinux 0xa588c5d8 inet_csk_accept EXPORT_SYMBOL vmlinux 0xa58b31da __wait_on_bit -EXPORT_SYMBOL vmlinux 0xa58f6cc7 netif_tx_stop_all_queues -EXPORT_SYMBOL vmlinux 0xa5a45501 pci_iomap_wc -EXPORT_SYMBOL vmlinux 0xa5ad53e9 pcix_get_max_mmrbc -EXPORT_SYMBOL vmlinux 0xa5c40b27 kmem_cache_create_usercopy -EXPORT_SYMBOL vmlinux 0xa5c9cf79 ptep_xchg_lazy -EXPORT_SYMBOL vmlinux 0xa5d972a3 ccw_device_is_multipath -EXPORT_SYMBOL vmlinux 0xa5de96e1 zap_page_range -EXPORT_SYMBOL vmlinux 0xa5e00215 scsi_get_host_dev +EXPORT_SYMBOL vmlinux 0xa58ed442 sock_no_sendpage +EXPORT_SYMBOL vmlinux 0xa5997174 register_netdevice +EXPORT_SYMBOL vmlinux 0xa59d548d end_page_private_2 +EXPORT_SYMBOL vmlinux 0xa5be2e5e dev_mc_sync_multiple EXPORT_SYMBOL vmlinux 0xa5e859e4 raw3270_deactivate_view -EXPORT_SYMBOL vmlinux 0xa602c524 _dev_printk +EXPORT_SYMBOL vmlinux 0xa5feecfe pci_bus_write_config_byte +EXPORT_SYMBOL vmlinux 0xa6085fe2 nf_register_queue_handler EXPORT_SYMBOL vmlinux 0xa61ced89 qdisc_put_rtab -EXPORT_SYMBOL vmlinux 0xa626ada5 page_cache_prev_miss -EXPORT_SYMBOL vmlinux 0xa62e2872 sock_dequeue_err_skb -EXPORT_SYMBOL vmlinux 0xa6332d41 netdev_lower_dev_get_private -EXPORT_SYMBOL vmlinux 0xa64668ca adjust_managed_page_count -EXPORT_SYMBOL vmlinux 0xa6469092 jbd2_submit_inode_data +EXPORT_SYMBOL vmlinux 0xa621b814 register_filesystem +EXPORT_SYMBOL vmlinux 0xa6322e01 __bforget EXPORT_SYMBOL vmlinux 0xa648e561 __ubsan_handle_shift_out_of_bounds -EXPORT_SYMBOL vmlinux 0xa64a77c7 lookup_one_len -EXPORT_SYMBOL vmlinux 0xa65b387a vfs_iter_read +EXPORT_SYMBOL vmlinux 0xa652efef bio_reset EXPORT_SYMBOL vmlinux 0xa67d5921 dma_fence_free EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid -EXPORT_SYMBOL vmlinux 0xa68fed20 xfrm_policy_register_afinfo -EXPORT_SYMBOL vmlinux 0xa6a7f699 dev_set_group -EXPORT_SYMBOL vmlinux 0xa6aabcd2 mount_nodev -EXPORT_SYMBOL vmlinux 0xa6bbd0e6 pcim_iomap_regions_request_all -EXPORT_SYMBOL vmlinux 0xa6e37fa0 udp_lib_rehash -EXPORT_SYMBOL vmlinux 0xa6e7388e scsi_device_put -EXPORT_SYMBOL vmlinux 0xa6fbbf05 get_bitmap_from_slot +EXPORT_SYMBOL vmlinux 0xa6a6646e scmd_printk +EXPORT_SYMBOL vmlinux 0xa6b10af5 sock_alloc_send_skb +EXPORT_SYMBOL vmlinux 0xa6b349e8 tty_vhangup +EXPORT_SYMBOL vmlinux 0xa6c40337 __tcf_em_tree_match +EXPORT_SYMBOL vmlinux 0xa6dc54e7 page_pool_update_nid EXPORT_SYMBOL vmlinux 0xa70910f5 utf8len EXPORT_SYMBOL vmlinux 0xa70ea6d7 ZSTD_DCtxWorkspaceBound EXPORT_SYMBOL vmlinux 0xa70fb761 flow_keys_basic_dissector -EXPORT_SYMBOL vmlinux 0xa7139cb8 dm_io -EXPORT_SYMBOL vmlinux 0xa724caa8 ccw_device_tm_start_timeout -EXPORT_SYMBOL vmlinux 0xa72f34b2 qdisc_offload_dump_helper -EXPORT_SYMBOL vmlinux 0xa73d55aa complete_request_key +EXPORT_SYMBOL vmlinux 0xa74b81b6 jbd2_journal_grab_journal_head EXPORT_SYMBOL vmlinux 0xa74c9877 refcount_dec_and_rtnl_lock -EXPORT_SYMBOL vmlinux 0xa74eb530 jbd2_journal_force_commit -EXPORT_SYMBOL vmlinux 0xa76b7c19 skb_copy_and_csum_datagram_msg -EXPORT_SYMBOL vmlinux 0xa77248d9 xsk_tx_peek_release_desc_batch +EXPORT_SYMBOL vmlinux 0xa753eb7b nobh_writepage +EXPORT_SYMBOL vmlinux 0xa770b6ea vfs_fsync EXPORT_SYMBOL vmlinux 0xa77bfd29 register_inet6addr_validator_notifier +EXPORT_SYMBOL vmlinux 0xa79b3e79 readahead_expand EXPORT_SYMBOL vmlinux 0xa7a9cfe0 iucv_message_send2way -EXPORT_SYMBOL vmlinux 0xa7e5ec12 pci_bus_read_config_word EXPORT_SYMBOL vmlinux 0xa7eedcc4 call_usermodehelper -EXPORT_SYMBOL vmlinux 0xa80e26e9 inode_set_flags -EXPORT_SYMBOL vmlinux 0xa81f426f sync_mapping_buffers -EXPORT_SYMBOL vmlinux 0xa826019b bdev_check_media_change -EXPORT_SYMBOL vmlinux 0xa842f3f8 init_pseudo +EXPORT_SYMBOL vmlinux 0xa7f7d26e dst_destroy +EXPORT_SYMBOL vmlinux 0xa7fefda5 vlan_ioctl_set +EXPORT_SYMBOL vmlinux 0xa825d695 consume_skb EXPORT_SYMBOL vmlinux 0xa843805a get_unused_fd_flags +EXPORT_SYMBOL vmlinux 0xa8488d6a scsi_print_sense EXPORT_SYMBOL vmlinux 0xa84ce9e0 crypto_aes_inv_sbox -EXPORT_SYMBOL vmlinux 0xa855c07c skb_copy_datagram_from_iter EXPORT_SYMBOL vmlinux 0xa8694ecd kblockd_schedule_work -EXPORT_SYMBOL vmlinux 0xa87c83be sb_min_blocksize -EXPORT_SYMBOL vmlinux 0xa891b257 kbd_keycode -EXPORT_SYMBOL vmlinux 0xa8d08ed1 sock_init_data -EXPORT_SYMBOL vmlinux 0xa8dd41b2 security_task_getsecid_obj +EXPORT_SYMBOL vmlinux 0xa899b445 param_set_long +EXPORT_SYMBOL vmlinux 0xa8c185e3 tcp_conn_request +EXPORT_SYMBOL vmlinux 0xa8d306e2 put_ipc_ns EXPORT_SYMBOL vmlinux 0xa8e3fe19 radix_tree_tag_clear -EXPORT_SYMBOL vmlinux 0xa8eacc5c tcp_add_backlog -EXPORT_SYMBOL vmlinux 0xa8ed70df tcp_seq_next -EXPORT_SYMBOL vmlinux 0xa8f2ac2e register_mii_tstamp_controller +EXPORT_SYMBOL vmlinux 0xa8f6331c tty_kref_put EXPORT_SYMBOL vmlinux 0xa8f6c843 ip_frag_ecn_table -EXPORT_SYMBOL vmlinux 0xa8fab737 pci_claim_resource -EXPORT_SYMBOL vmlinux 0xa903e92c md_bitmap_free -EXPORT_SYMBOL vmlinux 0xa9060a27 key_alloc +EXPORT_SYMBOL vmlinux 0xa901395a pci_dev_get EXPORT_SYMBOL vmlinux 0xa90ca0de flush_rcu_work -EXPORT_SYMBOL vmlinux 0xa92aba6b napi_consume_skb +EXPORT_SYMBOL vmlinux 0xa926523f md_cluster_ops EXPORT_SYMBOL vmlinux 0xa92c9f8d __traceiter_s390_cio_tsch -EXPORT_SYMBOL vmlinux 0xa934bc4b flow_get_u32_dst -EXPORT_SYMBOL vmlinux 0xa9388cb2 dquot_quota_off EXPORT_SYMBOL vmlinux 0xa9392430 xa_clear_mark -EXPORT_SYMBOL vmlinux 0xa94ffbc0 unregister_netdevice_queue -EXPORT_SYMBOL vmlinux 0xa95c24c8 devm_register_reboot_notifier EXPORT_SYMBOL vmlinux 0xa95c4dc1 proc_dointvec_ms_jiffies -EXPORT_SYMBOL vmlinux 0xa95e4e2f xfrm_dst_ifdown EXPORT_SYMBOL vmlinux 0xa965ca81 reciprocal_value -EXPORT_SYMBOL vmlinux 0xa9748061 file_modified EXPORT_SYMBOL vmlinux 0xa976957d bitmap_remap -EXPORT_SYMBOL vmlinux 0xa9932777 __remove_inode_hash -EXPORT_SYMBOL vmlinux 0xa9a38251 xattr_full_name -EXPORT_SYMBOL vmlinux 0xa9a3c18c jbd2_journal_start_reserved -EXPORT_SYMBOL vmlinux 0xa9a441fa vfs_parse_fs_param_source +EXPORT_SYMBOL vmlinux 0xa9856f63 pci_get_subsys +EXPORT_SYMBOL vmlinux 0xa989d6a8 blk_integrity_unregister +EXPORT_SYMBOL vmlinux 0xa9a04c72 noop_qdisc +EXPORT_SYMBOL vmlinux 0xa9a5a893 dma_alloc_attrs +EXPORT_SYMBOL vmlinux 0xa9aa85a1 get_tree_nodev EXPORT_SYMBOL vmlinux 0xa9ac8ee1 gen_new_estimator -EXPORT_SYMBOL vmlinux 0xa9c948f1 sock_create_kern -EXPORT_SYMBOL vmlinux 0xa9d8edf5 get_watch_queue -EXPORT_SYMBOL vmlinux 0xa9f5d163 pci_free_irq -EXPORT_SYMBOL vmlinux 0xaa05cf8c kernel_sock_shutdown -EXPORT_SYMBOL vmlinux 0xaa14996b regset_get_alloc +EXPORT_SYMBOL vmlinux 0xa9c46a54 tcp_mss_to_mtu +EXPORT_SYMBOL vmlinux 0xa9c659ac kmalloc_caches +EXPORT_SYMBOL vmlinux 0xa9edacba invalidate_inode_buffers +EXPORT_SYMBOL vmlinux 0xa9f40313 xfrm_lookup_with_ifid +EXPORT_SYMBOL vmlinux 0xaa035549 sg_alloc_table_from_pages_segment +EXPORT_SYMBOL vmlinux 0xaa06f1de d_set_d_op +EXPORT_SYMBOL vmlinux 0xaa12c357 pci_release_selected_regions EXPORT_SYMBOL vmlinux 0xaa19e4aa _kstrtol EXPORT_SYMBOL vmlinux 0xaa1c6624 raw3270_request_reset EXPORT_SYMBOL vmlinux 0xaa1e246a xxh32_update -EXPORT_SYMBOL vmlinux 0xaa34d642 xfrm_policy_walk +EXPORT_SYMBOL vmlinux 0xaa4f499a pcie_get_width_cap EXPORT_SYMBOL vmlinux 0xaa53b33c gen_pool_dma_zalloc_algo -EXPORT_SYMBOL vmlinux 0xaa5405c8 lease_modify EXPORT_SYMBOL vmlinux 0xaa5c9395 dma_fence_array_ops -EXPORT_SYMBOL vmlinux 0xaa5f38f4 put_cmsg_scm_timestamping -EXPORT_SYMBOL vmlinux 0xaa6d2610 d_set_fallthru +EXPORT_SYMBOL vmlinux 0xaa64cc14 kill_block_super +EXPORT_SYMBOL vmlinux 0xaa67cfc7 param_ops_uint +EXPORT_SYMBOL vmlinux 0xaa6ac9d4 skb_checksum EXPORT_SYMBOL vmlinux 0xaa7a1f77 __xa_cmpxchg -EXPORT_SYMBOL vmlinux 0xaa7a6f8a generic_pipe_buf_try_steal +EXPORT_SYMBOL vmlinux 0xaa7df333 pci_msix_vec_count +EXPORT_SYMBOL vmlinux 0xaa83ebdb mount_subtree +EXPORT_SYMBOL vmlinux 0xaa96d3ba proc_create_seq_private EXPORT_SYMBOL vmlinux 0xaaa4b9bc hchacha_block_generic EXPORT_SYMBOL vmlinux 0xaaa66739 ap_wait_init_apqn_bindings_complete -EXPORT_SYMBOL vmlinux 0xaab530d6 blk_queue_io_opt -EXPORT_SYMBOL vmlinux 0xaac6f96f blk_mq_run_hw_queue EXPORT_SYMBOL vmlinux 0xaad0ae78 __bitmap_shift_right +EXPORT_SYMBOL vmlinux 0xaad4e1d5 dquot_commit_info EXPORT_SYMBOL vmlinux 0xaad8c7d6 default_wake_function -EXPORT_SYMBOL vmlinux 0xaaf49abe jbd2_journal_destroy +EXPORT_SYMBOL vmlinux 0xaae4758f d_hash_and_lookup +EXPORT_SYMBOL vmlinux 0xaaed5c08 setup_new_exec EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp -EXPORT_SYMBOL vmlinux 0xab289f95 inet_csk_reqsk_queue_add +EXPORT_SYMBOL vmlinux 0xab27e8d4 new_inode EXPORT_SYMBOL vmlinux 0xab3697e4 irq_poll_init +EXPORT_SYMBOL vmlinux 0xab36e8e5 bio_uninit EXPORT_SYMBOL vmlinux 0xab46c289 __SCK__tp_func_s390_cio_hsch +EXPORT_SYMBOL vmlinux 0xab4d6946 __dev_set_mtu +EXPORT_SYMBOL vmlinux 0xab512e2f in6_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0xab5a113f tty_wait_until_sent EXPORT_SYMBOL vmlinux 0xab63baa5 unregister_inetaddr_validator_notifier -EXPORT_SYMBOL vmlinux 0xab6945ea dev_pick_tx_cpu_id -EXPORT_SYMBOL vmlinux 0xab6d7747 dev_set_threaded +EXPORT_SYMBOL vmlinux 0xab6c3275 ipv6_chk_prefix +EXPORT_SYMBOL vmlinux 0xab6d5b3b hex_to_bin +EXPORT_SYMBOL vmlinux 0xab6d89ce seq_lseek EXPORT_SYMBOL vmlinux 0xab781570 fb_get_options -EXPORT_SYMBOL vmlinux 0xaba1df65 open_exec -EXPORT_SYMBOL vmlinux 0xabb82aa4 scsi_eh_prep_cmnd -EXPORT_SYMBOL vmlinux 0xabc342a7 in_dev_finish_destroy -EXPORT_SYMBOL vmlinux 0xabc63857 __frontswap_store -EXPORT_SYMBOL vmlinux 0xabd4b437 sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0xab84d642 debug_set_level +EXPORT_SYMBOL vmlinux 0xabb55481 inet6_unregister_protosw +EXPORT_SYMBOL vmlinux 0xabbca288 tcp_shutdown EXPORT_SYMBOL vmlinux 0xabe1431b trace_print_symbols_seq +EXPORT_SYMBOL vmlinux 0xabe57052 rt_dst_alloc EXPORT_SYMBOL vmlinux 0xabf32f29 utf16s_to_utf8s +EXPORT_SYMBOL vmlinux 0xac0269c8 find_inode_rcu EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier -EXPORT_SYMBOL vmlinux 0xac1e86cd jbd2_journal_dirty_metadata +EXPORT_SYMBOL vmlinux 0xac1bd7cf vmf_insert_pfn_prot +EXPORT_SYMBOL vmlinux 0xac23d31e tcp_ioctl +EXPORT_SYMBOL vmlinux 0xac2f24b4 md_wait_for_blocked_rdev EXPORT_SYMBOL vmlinux 0xac3201b0 udp_flow_hashrnd -EXPORT_SYMBOL vmlinux 0xac4882e1 vfs_setpos -EXPORT_SYMBOL vmlinux 0xac500ee0 __dev_get_by_index +EXPORT_SYMBOL vmlinux 0xac4ec41b __put_page EXPORT_SYMBOL vmlinux 0xac5fcec0 in4_pton +EXPORT_SYMBOL vmlinux 0xac7bf7e1 security_binder_transfer_file EXPORT_SYMBOL vmlinux 0xac8597d5 mb_cache_entry_get -EXPORT_SYMBOL vmlinux 0xac8747f6 do_splice_direct EXPORT_SYMBOL vmlinux 0xaca0aef0 complete +EXPORT_SYMBOL vmlinux 0xaca4e891 block_is_partially_uptodate EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu -EXPORT_SYMBOL vmlinux 0xacac343e sock_sendmsg -EXPORT_SYMBOL vmlinux 0xacbe8972 udp_push_pending_frames -EXPORT_SYMBOL vmlinux 0xacc5f89d sock_wmalloc -EXPORT_SYMBOL vmlinux 0xacc7b8d1 tc_setup_flow_action -EXPORT_SYMBOL vmlinux 0xacd688ab tcf_exts_terse_dump +EXPORT_SYMBOL vmlinux 0xacabc1c7 jbd2_trans_will_send_data_barrier +EXPORT_SYMBOL vmlinux 0xaccd2e09 pci_pme_active +EXPORT_SYMBOL vmlinux 0xacd6c4ba xfrm_policy_register_afinfo EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup EXPORT_SYMBOL vmlinux 0xacf649bf audit_log_task_info EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex +EXPORT_SYMBOL vmlinux 0xad0afb44 tty_driver_kref_put EXPORT_SYMBOL vmlinux 0xad128dc1 __tracepoint_dma_fence_enable_signal EXPORT_SYMBOL vmlinux 0xad1441f0 __wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0xad173553 dma_resv_add_excl_fence EXPORT_SYMBOL vmlinux 0xad299b78 ioremap_wc -EXPORT_SYMBOL vmlinux 0xad34544c fs_param_is_path -EXPORT_SYMBOL vmlinux 0xad35134d inet6_register_protosw -EXPORT_SYMBOL vmlinux 0xad362db9 vif_device_init -EXPORT_SYMBOL vmlinux 0xad40cd9d mroute6_is_socket +EXPORT_SYMBOL vmlinux 0xad2e578e dquot_drop +EXPORT_SYMBOL vmlinux 0xad37cee7 lock_rename EXPORT_SYMBOL vmlinux 0xad4aee39 strncpy -EXPORT_SYMBOL vmlinux 0xad54279c xsk_tx_peek_desc EXPORT_SYMBOL vmlinux 0xad6c3f78 dqstats EXPORT_SYMBOL vmlinux 0xad73041f autoremove_wake_function -EXPORT_SYMBOL vmlinux 0xad8913f5 pci_reenable_device EXPORT_SYMBOL vmlinux 0xad995dac netdev_stats_to_stats64 EXPORT_SYMBOL vmlinux 0xada09ad2 dfltcc_can_inflate -EXPORT_SYMBOL vmlinux 0xada5822c simple_setattr -EXPORT_SYMBOL vmlinux 0xadc9d26d inet_unregister_protosw +EXPORT_SYMBOL vmlinux 0xadc0b54c tcp_openreq_init_rwin EXPORT_SYMBOL vmlinux 0xadd139d4 rfs_needed -EXPORT_SYMBOL vmlinux 0xadd9afda __task_pid_nr_ns -EXPORT_SYMBOL vmlinux 0xade3eb3d register_service_level +EXPORT_SYMBOL vmlinux 0xadd5006c xfrm_dev_state_flush EXPORT_SYMBOL vmlinux 0xadfdfcef __bitmap_andnot EXPORT_SYMBOL vmlinux 0xae04012c __vmalloc EXPORT_SYMBOL vmlinux 0xae06002a kstrtos16_from_user -EXPORT_SYMBOL vmlinux 0xae1ad050 ap_send_config_uevent -EXPORT_SYMBOL vmlinux 0xae2fefb8 mark_page_accessed +EXPORT_SYMBOL vmlinux 0xae1d691d user_revoke +EXPORT_SYMBOL vmlinux 0xae28063e seq_put_decimal_ull EXPORT_SYMBOL vmlinux 0xae316c11 icmpv6_err_convert -EXPORT_SYMBOL vmlinux 0xae3213e7 sock_alloc_send_skb -EXPORT_SYMBOL vmlinux 0xae4fca56 blk_set_queue_depth -EXPORT_SYMBOL vmlinux 0xae56e869 scsi_command_normalize_sense -EXPORT_SYMBOL vmlinux 0xae5a648c ipv6_chk_addr -EXPORT_SYMBOL vmlinux 0xae7cbde8 elevator_alloc -EXPORT_SYMBOL vmlinux 0xae935c3c bio_copy_data_iter +EXPORT_SYMBOL vmlinux 0xae484be1 mntput +EXPORT_SYMBOL vmlinux 0xae487a7c ipv6_select_ident +EXPORT_SYMBOL vmlinux 0xae58ab3d register_mii_tstamp_controller +EXPORT_SYMBOL vmlinux 0xae83bcf8 key_task_permission EXPORT_SYMBOL vmlinux 0xaeac049a generate_random_guid -EXPORT_SYMBOL vmlinux 0xaeb5298e seq_printf +EXPORT_SYMBOL vmlinux 0xaeb7f3bd page_pool_put_page EXPORT_SYMBOL vmlinux 0xaebdf85f refcount_dec_and_lock_irqsave -EXPORT_SYMBOL vmlinux 0xaecaa908 security_lock_kernel_down -EXPORT_SYMBOL vmlinux 0xaed42b92 inet6_release -EXPORT_SYMBOL vmlinux 0xaedb43af input_mt_get_slot_by_key -EXPORT_SYMBOL vmlinux 0xaef99640 sock_recv_errqueue -EXPORT_SYMBOL vmlinux 0xaf074333 tcf_unregister_action -EXPORT_SYMBOL vmlinux 0xaf1c9e3c skb_queue_head -EXPORT_SYMBOL vmlinux 0xaf1cf5a7 tcp_sock_set_quickack -EXPORT_SYMBOL vmlinux 0xaf32b317 d_splice_alias +EXPORT_SYMBOL vmlinux 0xaedbcccf inet_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0xaee0514f blk_queue_segment_boundary +EXPORT_SYMBOL vmlinux 0xaeebd779 blk_queue_logical_block_size +EXPORT_SYMBOL vmlinux 0xaef81877 tcf_idr_create_from_flags +EXPORT_SYMBOL vmlinux 0xaf115612 ihold EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level -EXPORT_SYMBOL vmlinux 0xaf70c24f page_mapping -EXPORT_SYMBOL vmlinux 0xafa93d3d ip_options_compile -EXPORT_SYMBOL vmlinux 0xafe2ec68 fs_param_is_blob -EXPORT_SYMBOL vmlinux 0xafe2ee77 dev_alloc_name +EXPORT_SYMBOL vmlinux 0xaf432cb6 cleancache_register_ops +EXPORT_SYMBOL vmlinux 0xaf47cc02 generic_set_encrypted_ci_d_ops +EXPORT_SYMBOL vmlinux 0xaf665a46 __check_sticky +EXPORT_SYMBOL vmlinux 0xaf6f4c94 call_fib_notifiers +EXPORT_SYMBOL vmlinux 0xaf7fcc34 tc_setup_cb_replace +EXPORT_SYMBOL vmlinux 0xaf96a515 pcie_port_service_register +EXPORT_SYMBOL vmlinux 0xafa360c1 mark_buffer_dirty_inode +EXPORT_SYMBOL vmlinux 0xafc2e479 scsi_target_resume +EXPORT_SYMBOL vmlinux 0xafd8b174 vfs_getattr_nosec EXPORT_SYMBOL vmlinux 0xafe82e10 strcspn -EXPORT_SYMBOL vmlinux 0xafefda13 seg6_hmac_info_del -EXPORT_SYMBOL vmlinux 0xaff205a4 from_kgid -EXPORT_SYMBOL vmlinux 0xb00623a8 vfs_mkobj -EXPORT_SYMBOL vmlinux 0xb012fd5c nf_reinject EXPORT_SYMBOL vmlinux 0xb01bebf9 xfrm_get_acqseq -EXPORT_SYMBOL vmlinux 0xb02dc521 inetdev_by_index -EXPORT_SYMBOL vmlinux 0xb02e6213 read_cache_page_gfp -EXPORT_SYMBOL vmlinux 0xb041b9e7 redirty_page_for_writepage +EXPORT_SYMBOL vmlinux 0xb04ff288 key_payload_reserve +EXPORT_SYMBOL vmlinux 0xb050899d generic_setlease +EXPORT_SYMBOL vmlinux 0xb05f24c4 sock_kmalloc EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max -EXPORT_SYMBOL vmlinux 0xb0641e7c seq_bprintf EXPORT_SYMBOL vmlinux 0xb06598dc register_sysctl -EXPORT_SYMBOL vmlinux 0xb065b057 inet_sk_rx_dst_set -EXPORT_SYMBOL vmlinux 0xb06c0b90 tcp_sock_set_keepidle -EXPORT_SYMBOL vmlinux 0xb0711d9d pcie_port_service_register -EXPORT_SYMBOL vmlinux 0xb08b9213 generic_file_fsync -EXPORT_SYMBOL vmlinux 0xb0a9b371 wait_on_page_bit -EXPORT_SYMBOL vmlinux 0xb0b10d66 __insert_inode_hash -EXPORT_SYMBOL vmlinux 0xb0b382fe pci_choose_state -EXPORT_SYMBOL vmlinux 0xb0cce678 tty_driver_kref_put +EXPORT_SYMBOL vmlinux 0xb0ad8a99 should_remove_suid +EXPORT_SYMBOL vmlinux 0xb0caf462 kthread_destroy_worker EXPORT_SYMBOL vmlinux 0xb0e10781 get_option -EXPORT_SYMBOL vmlinux 0xb0ea4147 mr_mfc_seq_next EXPORT_SYMBOL vmlinux 0xb0eda7e7 iucv_path_sever -EXPORT_SYMBOL vmlinux 0xb0f3ad26 PageMovable EXPORT_SYMBOL vmlinux 0xb10e7df4 __kfifo_dma_in_prepare +EXPORT_SYMBOL vmlinux 0xb1121031 tcp_time_wait EXPORT_SYMBOL vmlinux 0xb1176e59 try_wait_for_completion -EXPORT_SYMBOL vmlinux 0xb11926ad tcp_seq_start -EXPORT_SYMBOL vmlinux 0xb11a5355 unregister_framebuffer +EXPORT_SYMBOL vmlinux 0xb11e39a4 input_set_timestamp EXPORT_SYMBOL vmlinux 0xb1203bb8 ap_perms -EXPORT_SYMBOL vmlinux 0xb122567a compat_ptr_ioctl EXPORT_SYMBOL vmlinux 0xb12cbacb fb_unregister_client -EXPORT_SYMBOL vmlinux 0xb1375bf2 inet_proto_csum_replace16 -EXPORT_SYMBOL vmlinux 0xb13b1350 scsi_alloc_sgtables +EXPORT_SYMBOL vmlinux 0xb137aebd skb_page_frag_refill +EXPORT_SYMBOL vmlinux 0xb13c03c6 ccw_device_start EXPORT_SYMBOL vmlinux 0xb14ab1ef hdmi_audio_infoframe_init EXPORT_SYMBOL vmlinux 0xb14fc46a find_next_clump8 -EXPORT_SYMBOL vmlinux 0xb15c404e scsi_print_result -EXPORT_SYMBOL vmlinux 0xb15cb43c pci_bus_claim_resources -EXPORT_SYMBOL vmlinux 0xb17359aa scsi_track_queue_full -EXPORT_SYMBOL vmlinux 0xb18c7634 __mmap_lock_do_trace_start_locking -EXPORT_SYMBOL vmlinux 0xb1a1e50e sget_fc -EXPORT_SYMBOL vmlinux 0xb1a22775 __netif_napi_del -EXPORT_SYMBOL vmlinux 0xb1bb2276 noop_qdisc +EXPORT_SYMBOL vmlinux 0xb15f477c pci_irq_get_affinity +EXPORT_SYMBOL vmlinux 0xb174f8da vlan_filter_push_vids +EXPORT_SYMBOL vmlinux 0xb1791d5d ip_ct_attach +EXPORT_SYMBOL vmlinux 0xb192f9f0 inet_offloads +EXPORT_SYMBOL vmlinux 0xb1b8c46a tso_count_descs EXPORT_SYMBOL vmlinux 0xb1c3a01a oops_in_progress EXPORT_SYMBOL vmlinux 0xb1d3a15c blk_finish_plug -EXPORT_SYMBOL vmlinux 0xb1d43b3b inet_csk_reqsk_queue_drop EXPORT_SYMBOL vmlinux 0xb1ddf995 jiffies_64_to_clock_t -EXPORT_SYMBOL vmlinux 0xb1e7c930 sock_set_priority +EXPORT_SYMBOL vmlinux 0xb1de3493 netdev_alert +EXPORT_SYMBOL vmlinux 0xb1e04a39 alloc_file_pseudo EXPORT_SYMBOL vmlinux 0xb1e8126c down_timeout -EXPORT_SYMBOL vmlinux 0xb1e9447d dm_table_get_mode -EXPORT_SYMBOL vmlinux 0xb1f613c0 sg_alloc_table_from_pages_segment -EXPORT_SYMBOL vmlinux 0xb1f6c875 dquot_commit_info -EXPORT_SYMBOL vmlinux 0xb211335f ip_output -EXPORT_SYMBOL vmlinux 0xb2188dae tty_register_device -EXPORT_SYMBOL vmlinux 0xb21dff88 md_set_array_sectors -EXPORT_SYMBOL vmlinux 0xb2297ecd ipv6_chk_prefix +EXPORT_SYMBOL vmlinux 0xb1ea1556 inode_update_time +EXPORT_SYMBOL vmlinux 0xb2180ab7 xfrm6_rcv_encap EXPORT_SYMBOL vmlinux 0xb22e16d5 radix_tree_maybe_preload +EXPORT_SYMBOL vmlinux 0xb233821b page_symlink +EXPORT_SYMBOL vmlinux 0xb23d6a18 ip_sock_set_mtu_discover EXPORT_SYMBOL vmlinux 0xb24fa993 seqno_fence_ops -EXPORT_SYMBOL vmlinux 0xb2750546 netdev_update_features -EXPORT_SYMBOL vmlinux 0xb2a80aba no_seek_end_llseek_size -EXPORT_SYMBOL vmlinux 0xb2a841d3 kernel_sock_ip_overhead -EXPORT_SYMBOL vmlinux 0xb2af8a84 pipe_unlock +EXPORT_SYMBOL vmlinux 0xb272ef79 kmem_cache_free_bulk +EXPORT_SYMBOL vmlinux 0xb2b0185e ip_sock_set_freebind EXPORT_SYMBOL vmlinux 0xb2b0d772 __kfifo_dma_in_finish_r +EXPORT_SYMBOL vmlinux 0xb2c6167c param_get_bool +EXPORT_SYMBOL vmlinux 0xb2e0d0aa dev_lstats_read +EXPORT_SYMBOL vmlinux 0xb2e1ecf4 seg6_hmac_info_lookup +EXPORT_SYMBOL vmlinux 0xb2e98e06 netpoll_cleanup EXPORT_SYMBOL vmlinux 0xb2f579c7 __cpuhp_remove_state_cpuslocked EXPORT_SYMBOL vmlinux 0xb2fcb56d queue_delayed_work_on -EXPORT_SYMBOL vmlinux 0xb2fd442c seg6_hmac_validate_skb EXPORT_SYMBOL vmlinux 0xb308c97d wait_woken -EXPORT_SYMBOL vmlinux 0xb320089a crypto_sha1_finup +EXPORT_SYMBOL vmlinux 0xb309c567 config_item_get_unless_zero +EXPORT_SYMBOL vmlinux 0xb30be449 devm_pci_remap_cfg_resource EXPORT_SYMBOL vmlinux 0xb320cc0e sg_init_one EXPORT_SYMBOL vmlinux 0xb3258f79 __ubsan_handle_type_mismatch_v1 -EXPORT_SYMBOL vmlinux 0xb33d8bde scsi_host_busy -EXPORT_SYMBOL vmlinux 0xb3497b1d kthread_bind -EXPORT_SYMBOL vmlinux 0xb34b02d1 tcp_prot -EXPORT_SYMBOL vmlinux 0xb34c3d51 tc_cleanup_flow_action +EXPORT_SYMBOL vmlinux 0xb32f6751 simple_transaction_get EXPORT_SYMBOL vmlinux 0xb35a44a9 posix_acl_from_xattr EXPORT_SYMBOL vmlinux 0xb3687850 out_of_line_wait_on_bit_lock -EXPORT_SYMBOL vmlinux 0xb37bfee8 bio_integrity_clone +EXPORT_SYMBOL vmlinux 0xb3807cc5 input_mt_init_slots EXPORT_SYMBOL vmlinux 0xb381ff9e ida_destroy EXPORT_SYMBOL vmlinux 0xb38beebf sync_file_get_fence -EXPORT_SYMBOL vmlinux 0xb39a3b1d tcp_check_req EXPORT_SYMBOL vmlinux 0xb3bd68cc security_secmark_relabel_packet -EXPORT_SYMBOL vmlinux 0xb3be7c24 cdev_device_add -EXPORT_SYMBOL vmlinux 0xb3bf63e7 unregister_console -EXPORT_SYMBOL vmlinux 0xb3c74c3f ethtool_notify +EXPORT_SYMBOL vmlinux 0xb3ca0b18 cad_pid EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string +EXPORT_SYMBOL vmlinux 0xb3df86be sg_alloc_append_table_from_pages EXPORT_SYMBOL vmlinux 0xb3f7646e kthread_should_stop -EXPORT_SYMBOL vmlinux 0xb3f9e0ab security_locked_down EXPORT_SYMBOL vmlinux 0xb3ff1f69 free_pages_exact -EXPORT_SYMBOL vmlinux 0xb423c551 con_copy_unimap EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked -EXPORT_SYMBOL vmlinux 0xb42b5c41 generic_file_llseek_size -EXPORT_SYMBOL vmlinux 0xb453c05f tcf_em_tree_validate -EXPORT_SYMBOL vmlinux 0xb46f8cc1 __set_page_dirty_nobuffers -EXPORT_SYMBOL vmlinux 0xb4712388 inode_set_bytes +EXPORT_SYMBOL vmlinux 0xb4415ddf set_anon_super +EXPORT_SYMBOL vmlinux 0xb4534faa tcp_connect +EXPORT_SYMBOL vmlinux 0xb460302c tty_register_ldisc +EXPORT_SYMBOL vmlinux 0xb463f663 __skb_get_hash EXPORT_SYMBOL vmlinux 0xb48d4d22 security_sb_eat_lsm_opts -EXPORT_SYMBOL vmlinux 0xb48df115 pfifo_fast_ops -EXPORT_SYMBOL vmlinux 0xb4905b22 tc_setup_cb_destroy -EXPORT_SYMBOL vmlinux 0xb4934730 filemap_fdatawrite -EXPORT_SYMBOL vmlinux 0xb4948666 configfs_unregister_subsystem -EXPORT_SYMBOL vmlinux 0xb49bb145 kernel_getpeername +EXPORT_SYMBOL vmlinux 0xb4926072 neigh_connected_output EXPORT_SYMBOL vmlinux 0xb49c699d dma_fence_add_callback -EXPORT_SYMBOL vmlinux 0xb49e8350 proc_set_size -EXPORT_SYMBOL vmlinux 0xb4b71194 md_bitmap_end_sync -EXPORT_SYMBOL vmlinux 0xb4c4fd5d seq_dentry -EXPORT_SYMBOL vmlinux 0xb4ea3670 pci_assign_resource +EXPORT_SYMBOL vmlinux 0xb4da1a6c fb_prepare_logo +EXPORT_SYMBOL vmlinux 0xb4df206b d_mark_dontcache EXPORT_SYMBOL vmlinux 0xb4f13d2a abort EXPORT_SYMBOL vmlinux 0xb50cc9cb ZSTD_isFrame +EXPORT_SYMBOL vmlinux 0xb51f1804 __napi_alloc_skb +EXPORT_SYMBOL vmlinux 0xb5288c49 inet_proto_csum_replace_by_diff EXPORT_SYMBOL vmlinux 0xb534f61f __kfifo_alloc +EXPORT_SYMBOL vmlinux 0xb5725c2f component_match_add_typed EXPORT_SYMBOL vmlinux 0xb57343c2 frontswap_shrink -EXPORT_SYMBOL vmlinux 0xb57b70fb freeze_super +EXPORT_SYMBOL vmlinux 0xb578687c xfrm_register_km +EXPORT_SYMBOL vmlinux 0xb57fdda4 napi_gro_receive +EXPORT_SYMBOL vmlinux 0xb5865c28 devm_request_any_context_irq EXPORT_SYMBOL vmlinux 0xb58aeaab kernel_cpustat EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev -EXPORT_SYMBOL vmlinux 0xb5a95cb2 configfs_depend_item +EXPORT_SYMBOL vmlinux 0xb5a87b8d request_firmware_nowait EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy +EXPORT_SYMBOL vmlinux 0xb5ab3118 tcp_v4_conn_request +EXPORT_SYMBOL vmlinux 0xb5b12fe9 reuseport_migrate_sock EXPORT_SYMBOL vmlinux 0xb5b63711 fileattr_fill_xflags -EXPORT_SYMBOL vmlinux 0xb5cf4f63 fscrypt_encrypt_pagecache_blocks +EXPORT_SYMBOL vmlinux 0xb5be3dda __cgroup_bpf_run_filter_sock_addr +EXPORT_SYMBOL vmlinux 0xb5c73957 blk_rq_map_integrity_sg +EXPORT_SYMBOL vmlinux 0xb5ca184b napi_enable +EXPORT_SYMBOL vmlinux 0xb5cf684f jbd2_journal_set_features +EXPORT_SYMBOL vmlinux 0xb5cfa073 filemap_invalidate_unlock_two EXPORT_SYMBOL vmlinux 0xb5d3119d _atomic_dec_and_lock +EXPORT_SYMBOL vmlinux 0xb5d7cbbd fb_find_mode +EXPORT_SYMBOL vmlinux 0xb5dceb83 security_unix_stream_connect EXPORT_SYMBOL vmlinux 0xb5e73116 flush_delayed_work -EXPORT_SYMBOL vmlinux 0xb6049237 pcie_bandwidth_available -EXPORT_SYMBOL vmlinux 0xb613a98c cdev_init +EXPORT_SYMBOL vmlinux 0xb60f7caa PageMovable +EXPORT_SYMBOL vmlinux 0xb61413f0 sk_stream_wait_close +EXPORT_SYMBOL vmlinux 0xb62db067 __inet6_lookup_established EXPORT_SYMBOL vmlinux 0xb6308446 __load_fpu_regs +EXPORT_SYMBOL vmlinux 0xb6333ca1 blk_rq_map_kern EXPORT_SYMBOL vmlinux 0xb633f115 irq_poll_enable -EXPORT_SYMBOL vmlinux 0xb63e2fa0 __netlink_ns_capable -EXPORT_SYMBOL vmlinux 0xb6419164 fscrypt_ioctl_get_policy -EXPORT_SYMBOL vmlinux 0xb66a918e param_set_long +EXPORT_SYMBOL vmlinux 0xb635efd3 tcp_seq_stop EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt EXPORT_SYMBOL vmlinux 0xb67c9280 utf8cursor EXPORT_SYMBOL vmlinux 0xb67fec0e uuid_parse EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin -EXPORT_SYMBOL vmlinux 0xb6c29745 set_cached_acl -EXPORT_SYMBOL vmlinux 0xb6c94afb find_inode_rcu -EXPORT_SYMBOL vmlinux 0xb6c9f876 tcp_read_sock -EXPORT_SYMBOL vmlinux 0xb6d792be bioset_integrity_create +EXPORT_SYMBOL vmlinux 0xb6953dc9 proc_remove +EXPORT_SYMBOL vmlinux 0xb69d5855 dcb_ieee_getapp_prio_dscp_mask_map +EXPORT_SYMBOL vmlinux 0xb6b4d35c xp_dma_sync_for_device_slow EXPORT_SYMBOL vmlinux 0xb6e36ce2 psched_ratecfg_precompute -EXPORT_SYMBOL vmlinux 0xb6e97a17 ww_mutex_lock EXPORT_SYMBOL vmlinux 0xb6f4dbfc ___ratelimit +EXPORT_SYMBOL vmlinux 0xb6f9ffdc xfrm6_input_addr +EXPORT_SYMBOL vmlinux 0xb6fa05ba dev_mc_add_global EXPORT_SYMBOL vmlinux 0xb6fbeefe xxh64 EXPORT_SYMBOL vmlinux 0xb6fde909 close_fd EXPORT_SYMBOL vmlinux 0xb71589f0 skip_spaces -EXPORT_SYMBOL vmlinux 0xb71b2c45 unix_destruct_scm EXPORT_SYMBOL vmlinux 0xb71ed69f __hw_addr_unsync -EXPORT_SYMBOL vmlinux 0xb722fa90 ip_fraglist_prepare -EXPORT_SYMBOL vmlinux 0xb744ae55 configfs_undepend_item -EXPORT_SYMBOL vmlinux 0xb759c7ce __traceiter_module_get -EXPORT_SYMBOL vmlinux 0xb770fcee make_bad_inode +EXPORT_SYMBOL vmlinux 0xb726494c __remove_inode_hash EXPORT_SYMBOL vmlinux 0xb78700c3 kstrtou8_from_user +EXPORT_SYMBOL vmlinux 0xb78cc5fd rt_mutex_base_init EXPORT_SYMBOL vmlinux 0xb78debe3 LZ4_decompress_fast_usingDict -EXPORT_SYMBOL vmlinux 0xb7a48b2e elv_rb_latter_request -EXPORT_SYMBOL vmlinux 0xb7ad3d0f param_ops_short +EXPORT_SYMBOL vmlinux 0xb7967375 security_inode_getsecctx EXPORT_SYMBOL vmlinux 0xb7b507ea utf8nlen +EXPORT_SYMBOL vmlinux 0xb7ba0f22 xfrm_state_delete_tunnel EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags -EXPORT_SYMBOL vmlinux 0xb7cc0c4a block_write_begin -EXPORT_SYMBOL vmlinux 0xb7cd5822 scsi_rescan_device -EXPORT_SYMBOL vmlinux 0xb7d340ec __mod_zone_page_state -EXPORT_SYMBOL vmlinux 0xb7edaf96 pci_get_slot +EXPORT_SYMBOL vmlinux 0xb7cc4f78 fs_bio_set +EXPORT_SYMBOL vmlinux 0xb7cc90d5 disk_end_io_acct +EXPORT_SYMBOL vmlinux 0xb7ce0e97 tcp_mtu_to_mss +EXPORT_SYMBOL vmlinux 0xb7d60e08 tty_do_resize EXPORT_SYMBOL vmlinux 0xb7ee2a2c diag26c -EXPORT_SYMBOL vmlinux 0xb805bef7 set_capacity -EXPORT_SYMBOL vmlinux 0xb821f414 napi_schedule_prep -EXPORT_SYMBOL vmlinux 0xb825d9ee blk_get_queue +EXPORT_SYMBOL vmlinux 0xb7f0eece pid_task +EXPORT_SYMBOL vmlinux 0xb8121549 inet_frag_destroy EXPORT_SYMBOL vmlinux 0xb827d331 __cond_resched_rwlock_write -EXPORT_SYMBOL vmlinux 0xb82a18af xfrm_policy_destroy +EXPORT_SYMBOL vmlinux 0xb82da099 eth_header_cache +EXPORT_SYMBOL vmlinux 0xb82eecb1 alloc_fcdev +EXPORT_SYMBOL vmlinux 0xb857021c sock_queue_err_skb +EXPORT_SYMBOL vmlinux 0xb857ce78 tcp_fastopen_defer_connect EXPORT_SYMBOL vmlinux 0xb868ac5c register_sysrq_key -EXPORT_SYMBOL vmlinux 0xb8759ae2 jbd2_journal_blocks_per_page -EXPORT_SYMBOL vmlinux 0xb87d51e5 pci_match_id -EXPORT_SYMBOL vmlinux 0xb88b7fad generic_permission -EXPORT_SYMBOL vmlinux 0xb894172b inet_addr_type_table +EXPORT_SYMBOL vmlinux 0xb8695298 tty_port_destroy +EXPORT_SYMBOL vmlinux 0xb8715d51 icmpv6_ndo_send +EXPORT_SYMBOL vmlinux 0xb875b0f0 find_vma +EXPORT_SYMBOL vmlinux 0xb875df56 dquot_release +EXPORT_SYMBOL vmlinux 0xb87d9f99 generic_fillattr +EXPORT_SYMBOL vmlinux 0xb881a0c4 vfs_iocb_iter_read EXPORT_SYMBOL vmlinux 0xb89b6e6b guid_parse -EXPORT_SYMBOL vmlinux 0xb89c01b4 inet_protos EXPORT_SYMBOL vmlinux 0xb8b043f2 kfree_link -EXPORT_SYMBOL vmlinux 0xb8b20ee1 vmf_insert_mixed -EXPORT_SYMBOL vmlinux 0xb8bbcfa1 inet_recvmsg EXPORT_SYMBOL vmlinux 0xb8e97783 proc_douintvec -EXPORT_SYMBOL vmlinux 0xb8ea3f39 tcp_setsockopt -EXPORT_SYMBOL vmlinux 0xb8ea8efa napi_gro_frags -EXPORT_SYMBOL vmlinux 0xb8f1b44d skb_split -EXPORT_SYMBOL vmlinux 0xb8fcace7 pcim_iounmap +EXPORT_SYMBOL vmlinux 0xb8ebc619 msi_desc_to_pci_dev +EXPORT_SYMBOL vmlinux 0xb900f1b8 dma_sync_sg_for_device +EXPORT_SYMBOL vmlinux 0xb9045fe9 nf_log_unregister EXPORT_SYMBOL vmlinux 0xb9056bb6 remove_conflicting_framebuffers +EXPORT_SYMBOL vmlinux 0xb90c95c0 write_cache_pages EXPORT_SYMBOL vmlinux 0xb911bb58 minmax_running_max EXPORT_SYMBOL vmlinux 0xb915ceca itcw_init -EXPORT_SYMBOL vmlinux 0xb91fe203 bio_add_pc_page +EXPORT_SYMBOL vmlinux 0xb923e160 flow_rule_match_ip +EXPORT_SYMBOL vmlinux 0xb924f1ca security_sk_clone EXPORT_SYMBOL vmlinux 0xb928aa45 netdev_rss_key_fill -EXPORT_SYMBOL vmlinux 0xb92f10b9 current_time +EXPORT_SYMBOL vmlinux 0xb94235bd f_setown EXPORT_SYMBOL vmlinux 0xb94339c4 qdisc_put_stab -EXPORT_SYMBOL vmlinux 0xb9490768 skb_add_rx_frag EXPORT_SYMBOL vmlinux 0xb94f4d5d __kmalloc_node_track_caller -EXPORT_SYMBOL vmlinux 0xb95df7c0 get_guest_storage_key +EXPORT_SYMBOL vmlinux 0xb960f3b2 sched_autogroup_detach +EXPORT_SYMBOL vmlinux 0xb968d3ea bprm_change_interp EXPORT_SYMBOL vmlinux 0xb97220ff bitmap_parse -EXPORT_SYMBOL vmlinux 0xb983c934 generic_file_read_iter -EXPORT_SYMBOL vmlinux 0xb9ac0f3b param_ops_ushort -EXPORT_SYMBOL vmlinux 0xb9bafb93 __cleancache_init_shared_fs -EXPORT_SYMBOL vmlinux 0xb9bc63ea inet_stream_connect -EXPORT_SYMBOL vmlinux 0xb9bdc455 scsi_register_interface +EXPORT_SYMBOL vmlinux 0xb9a9d465 tcp_sock_set_user_timeout +EXPORT_SYMBOL vmlinux 0xb9b53e99 make_kprojid +EXPORT_SYMBOL vmlinux 0xb9da87bb register_fib_notifier +EXPORT_SYMBOL vmlinux 0xb9ddafe3 copy_page_from_iter EXPORT_SYMBOL vmlinux 0xb9df5c0d ZSTD_nextSrcSizeToDecompress -EXPORT_SYMBOL vmlinux 0xb9df659b security_path_mkdir -EXPORT_SYMBOL vmlinux 0xb9e841d7 dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0xb9e274e2 jbd2_journal_begin_ordered_truncate EXPORT_SYMBOL vmlinux 0xb9e8e2cc in6addr_sitelocal_allrouters -EXPORT_SYMBOL vmlinux 0xb9f173f4 register_filesystem -EXPORT_SYMBOL vmlinux 0xba046d6f vfs_parse_fs_string +EXPORT_SYMBOL vmlinux 0xb9ed57f7 netdev_adjacent_change_commit EXPORT_SYMBOL vmlinux 0xba0676e2 vm_zone_stat EXPORT_SYMBOL vmlinux 0xba09ba01 vm_event_states -EXPORT_SYMBOL vmlinux 0xba3a6c25 console_stop +EXPORT_SYMBOL vmlinux 0xba188ca1 kernel_listen +EXPORT_SYMBOL vmlinux 0xba466ed4 dev_set_mac_address +EXPORT_SYMBOL vmlinux 0xba479fe0 fscrypt_decrypt_bio EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy -EXPORT_SYMBOL vmlinux 0xba4a919d md_done_sync EXPORT_SYMBOL vmlinux 0xba53adab nla_policy_len -EXPORT_SYMBOL vmlinux 0xba554703 mr_mfc_find_any_parent -EXPORT_SYMBOL vmlinux 0xba556750 skb_eth_push -EXPORT_SYMBOL vmlinux 0xba5c803c scsi_test_unit_ready -EXPORT_SYMBOL vmlinux 0xba5cf22c devm_pci_remap_cfg_resource -EXPORT_SYMBOL vmlinux 0xba60c3dd t10_pi_type1_crc -EXPORT_SYMBOL vmlinux 0xba74a04f __page_cache_alloc -EXPORT_SYMBOL vmlinux 0xba7a8901 debugfs_create_automount -EXPORT_SYMBOL vmlinux 0xba7dd4f1 xfrm_policy_hash_rebuild -EXPORT_SYMBOL vmlinux 0xba806333 napi_gro_flush -EXPORT_SYMBOL vmlinux 0xbaa7b53d dev_getbyhwaddr_rcu -EXPORT_SYMBOL vmlinux 0xbaa8adea set_nlink -EXPORT_SYMBOL vmlinux 0xbab15365 tcf_em_tree_destroy -EXPORT_SYMBOL vmlinux 0xbac8f70d sg_miter_stop -EXPORT_SYMBOL vmlinux 0xbade6267 sock_bindtoindex -EXPORT_SYMBOL vmlinux 0xbb04e884 dm_kobject_release +EXPORT_SYMBOL vmlinux 0xba8234a1 simple_transaction_read +EXPORT_SYMBOL vmlinux 0xba882b41 tcp_close +EXPORT_SYMBOL vmlinux 0xba8d970f inet_frag_reasm_finish +EXPORT_SYMBOL vmlinux 0xbaaa55e6 ap_queue_init_state +EXPORT_SYMBOL vmlinux 0xbabcd840 bfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0xbac70865 xfrm_unregister_type_offload +EXPORT_SYMBOL vmlinux 0xbacad7df send_sig_mceerr +EXPORT_SYMBOL vmlinux 0xbad1e5de dcache_dir_close +EXPORT_SYMBOL vmlinux 0xbad9f1ba __vfs_setxattr EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset -EXPORT_SYMBOL vmlinux 0xbb1eab6b jbd2_journal_set_features +EXPORT_SYMBOL vmlinux 0xbb089f26 dma_map_resource +EXPORT_SYMBOL vmlinux 0xbb17248e scsi_is_host_device +EXPORT_SYMBOL vmlinux 0xbb197014 __skb_ext_del EXPORT_SYMBOL vmlinux 0xbb24f607 init_cdrom_command -EXPORT_SYMBOL vmlinux 0xbb2b133a dev_change_proto_down_reason EXPORT_SYMBOL vmlinux 0xbb35675b __bitmap_intersects -EXPORT_SYMBOL vmlinux 0xbb3bbcb0 pci_get_class +EXPORT_SYMBOL vmlinux 0xbb376b7b qdisc_offload_dump_helper +EXPORT_SYMBOL vmlinux 0xbb3b2b0b pci_request_selected_regions EXPORT_SYMBOL vmlinux 0xbb5934be __wake_up_bit -EXPORT_SYMBOL vmlinux 0xbb5afe2a release_pages -EXPORT_SYMBOL vmlinux 0xbb8df94e pci_bus_add_devices +EXPORT_SYMBOL vmlinux 0xbb5bddd7 ap_send_online_uevent +EXPORT_SYMBOL vmlinux 0xbb62d53d udp_gro_receive +EXPORT_SYMBOL vmlinux 0xbb72c0b9 unregister_netdevice_notifier_dev_net +EXPORT_SYMBOL vmlinux 0xbb833fd7 __xfrm_dst_lookup +EXPORT_SYMBOL vmlinux 0xbb8c0b3a kernel_getsockname EXPORT_SYMBOL vmlinux 0xbb9d0dc5 bin2hex -EXPORT_SYMBOL vmlinux 0xbba67552 tag_pages_for_writeback -EXPORT_SYMBOL vmlinux 0xbbbd4855 kfree_skb_list -EXPORT_SYMBOL vmlinux 0xbbde2b76 load_nls_default -EXPORT_SYMBOL vmlinux 0xbbfb05c1 xfrm_find_acq -EXPORT_SYMBOL vmlinux 0xbc03afba __filemap_set_wb_err -EXPORT_SYMBOL vmlinux 0xbc120a7d xsk_clear_rx_need_wakeup -EXPORT_SYMBOL vmlinux 0xbc3e92dc tcp_poll -EXPORT_SYMBOL vmlinux 0xbc69d7cc netdev_pick_tx -EXPORT_SYMBOL vmlinux 0xbc6a6e29 pneigh_lookup +EXPORT_SYMBOL vmlinux 0xbbb667d2 sget +EXPORT_SYMBOL vmlinux 0xbbbc8058 pci_get_domain_bus_and_slot +EXPORT_SYMBOL vmlinux 0xbbf62b71 configfs_depend_item +EXPORT_SYMBOL vmlinux 0xbc524eb0 dev_get_phys_port_name +EXPORT_SYMBOL vmlinux 0xbc556f6d skb_set_owner_w +EXPORT_SYMBOL vmlinux 0xbc6886aa __blk_mq_alloc_disk EXPORT_SYMBOL vmlinux 0xbc76641a __SCK__tp_func_s390_cio_ssch EXPORT_SYMBOL vmlinux 0xbc79da34 kobject_set_name -EXPORT_SYMBOL vmlinux 0xbc8a6e42 tcf_em_tree_dump -EXPORT_SYMBOL vmlinux 0xbc91c1c0 param_ops_string +EXPORT_SYMBOL vmlinux 0xbc8bc8d5 param_get_uint +EXPORT_SYMBOL vmlinux 0xbc910f66 give_up_console +EXPORT_SYMBOL vmlinux 0xbca2227e file_write_and_wait_range EXPORT_SYMBOL vmlinux 0xbcab6ee6 sscanf -EXPORT_SYMBOL vmlinux 0xbcc63655 ccw_device_tm_intrg -EXPORT_SYMBOL vmlinux 0xbcd38e4b __traceiter_mmap_lock_acquire_returned -EXPORT_SYMBOL vmlinux 0xbce3c12f init_net -EXPORT_SYMBOL vmlinux 0xbd157769 kern_unmount_array -EXPORT_SYMBOL vmlinux 0xbd611256 tcp_conn_request +EXPORT_SYMBOL vmlinux 0xbcb0d131 ccw_device_tm_start_key +EXPORT_SYMBOL vmlinux 0xbcb2f5f2 _dev_warn +EXPORT_SYMBOL vmlinux 0xbccede59 eth_platform_get_mac_address +EXPORT_SYMBOL vmlinux 0xbce818b5 dm_table_get_size +EXPORT_SYMBOL vmlinux 0xbcf7c652 simple_get_link +EXPORT_SYMBOL vmlinux 0xbd0b998b kmem_cache_alloc_node_trace +EXPORT_SYMBOL vmlinux 0xbd0d0ffe skb_tunnel_check_pmtu +EXPORT_SYMBOL vmlinux 0xbd127ac6 adjust_managed_page_count +EXPORT_SYMBOL vmlinux 0xbd1418ec blk_mq_end_request +EXPORT_SYMBOL vmlinux 0xbd1e87d1 kernel_sock_shutdown +EXPORT_SYMBOL vmlinux 0xbd358c21 skb_recv_datagram +EXPORT_SYMBOL vmlinux 0xbd412b37 __register_nls EXPORT_SYMBOL vmlinux 0xbd628752 __tracepoint_mmap_lock_start_locking -EXPORT_SYMBOL vmlinux 0xbd8109f2 pci_wait_for_pending_transaction -EXPORT_SYMBOL vmlinux 0xbd930da7 __pagevec_release -EXPORT_SYMBOL vmlinux 0xbda723b2 pci_clear_master -EXPORT_SYMBOL vmlinux 0xbdbe68b3 jbd2_journal_init_jbd_inode -EXPORT_SYMBOL vmlinux 0xbdca9a85 vfs_copy_file_range -EXPORT_SYMBOL vmlinux 0xbdd22c1f __inode_sub_bytes -EXPORT_SYMBOL vmlinux 0xbdf83470 param_set_bint +EXPORT_SYMBOL vmlinux 0xbd7bfe29 fb_get_mode +EXPORT_SYMBOL vmlinux 0xbd951292 _dev_emerg +EXPORT_SYMBOL vmlinux 0xbd96a25d pci_add_new_bus +EXPORT_SYMBOL vmlinux 0xbd9c8ff3 fb_get_buffer_offset +EXPORT_SYMBOL vmlinux 0xbdb28952 sock_no_accept +EXPORT_SYMBOL vmlinux 0xbdbe294d tcf_qevent_destroy +EXPORT_SYMBOL vmlinux 0xbdf0fa18 jbd2_journal_start_reserved +EXPORT_SYMBOL vmlinux 0xbdf44898 migrate_page_move_mapping +EXPORT_SYMBOL vmlinux 0xbe0ab55a inode_owner_or_capable EXPORT_SYMBOL vmlinux 0xbe118c52 __tracepoint_mmap_lock_acquire_returned EXPORT_SYMBOL vmlinux 0xbe1427af __printk_cpu_unlock -EXPORT_SYMBOL vmlinux 0xbe21a044 pci_bus_write_config_dword -EXPORT_SYMBOL vmlinux 0xbe21e76b __ip4_datagram_connect -EXPORT_SYMBOL vmlinux 0xbe3c7b21 cdrom_mode_sense -EXPORT_SYMBOL vmlinux 0xbe4e19db bio_alloc_bioset +EXPORT_SYMBOL vmlinux 0xbe4679db input_grab_device +EXPORT_SYMBOL vmlinux 0xbe47cc61 inet_frags_fini EXPORT_SYMBOL vmlinux 0xbe4eb6ed secure_dccpv6_sequence_number EXPORT_SYMBOL vmlinux 0xbe5a24e9 xxh32_copy_state -EXPORT_SYMBOL vmlinux 0xbe5c0c14 arp_tbl -EXPORT_SYMBOL vmlinux 0xbe683060 sock_efree -EXPORT_SYMBOL vmlinux 0xbea64e76 __ip_mc_dec_group -EXPORT_SYMBOL vmlinux 0xbeaf7d45 netpoll_send_skb -EXPORT_SYMBOL vmlinux 0xbec59fb8 generic_iommu_put_resv_regions -EXPORT_SYMBOL vmlinux 0xbed38163 devm_free_irq -EXPORT_SYMBOL vmlinux 0xbee195dd xfrm_policy_byid -EXPORT_SYMBOL vmlinux 0xbee80868 dev_pre_changeaddr_notify -EXPORT_SYMBOL vmlinux 0xbef42c1b nf_register_sockopt +EXPORT_SYMBOL vmlinux 0xbe5f1aa5 mr_rtm_dumproute +EXPORT_SYMBOL vmlinux 0xbe85dfb8 device_get_mac_address +EXPORT_SYMBOL vmlinux 0xbe944c1d inet_register_protosw +EXPORT_SYMBOL vmlinux 0xbe9fc5e1 jbd2_journal_load +EXPORT_SYMBOL vmlinux 0xbe9fdd1e ipv6_mc_check_mld +EXPORT_SYMBOL vmlinux 0xbea869c7 elv_rb_latter_request +EXPORT_SYMBOL vmlinux 0xbec71fb7 __netdev_notify_peers +EXPORT_SYMBOL vmlinux 0xbed8dc06 __sk_mem_reclaim +EXPORT_SYMBOL vmlinux 0xbedd8712 inet_reqsk_alloc +EXPORT_SYMBOL vmlinux 0xbedf2dee nexthop_res_grp_activity_update EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule EXPORT_SYMBOL vmlinux 0xbef53f33 scnprintf -EXPORT_SYMBOL vmlinux 0xbf00221f config_item_put -EXPORT_SYMBOL vmlinux 0xbf07038c blk_queue_dma_alignment -EXPORT_SYMBOL vmlinux 0xbf182e93 scsi_host_get -EXPORT_SYMBOL vmlinux 0xbf2b9448 nf_unregister_net_hooks -EXPORT_SYMBOL vmlinux 0xbf32b411 dev_get_by_index_rcu +EXPORT_SYMBOL vmlinux 0xbf17fe68 iov_iter_get_pages_alloc +EXPORT_SYMBOL vmlinux 0xbf207ab7 vfs_dup_fs_context +EXPORT_SYMBOL vmlinux 0xbf413457 current_in_userns +EXPORT_SYMBOL vmlinux 0xbf44d141 cdrom_number_of_slots +EXPORT_SYMBOL vmlinux 0xbf46c46d dquot_disable EXPORT_SYMBOL vmlinux 0xbf49aafa percpu_counter_set -EXPORT_SYMBOL vmlinux 0xbf5610ed tcp_sock_set_keepintvl +EXPORT_SYMBOL vmlinux 0xbf50efe6 inet_frags_init EXPORT_SYMBOL vmlinux 0xbf59c419 posix_acl_init -EXPORT_SYMBOL vmlinux 0xbf7581f3 blk_mq_stop_hw_queue -EXPORT_SYMBOL vmlinux 0xbf79d4f5 sg_alloc_append_table_from_pages -EXPORT_SYMBOL vmlinux 0xbf8346d4 __block_write_begin -EXPORT_SYMBOL vmlinux 0xbf87e122 d_lookup +EXPORT_SYMBOL vmlinux 0xbf61d5cd ccw_device_is_multipath +EXPORT_SYMBOL vmlinux 0xbf76b066 sock_set_reuseport EXPORT_SYMBOL vmlinux 0xbf9a5a1e __init_rwsem EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set +EXPORT_SYMBOL vmlinux 0xbfa4b01f bio_kmalloc +EXPORT_SYMBOL vmlinux 0xbfbf507b fget_raw +EXPORT_SYMBOL vmlinux 0xbfc7d9c9 generic_read_dir EXPORT_SYMBOL vmlinux 0xbfd9f046 remove_wait_queue +EXPORT_SYMBOL vmlinux 0xbfe77262 vfs_readlink EXPORT_SYMBOL vmlinux 0xbfee3ad5 loop_unregister_transfer +EXPORT_SYMBOL vmlinux 0xc0072d2d from_kuid EXPORT_SYMBOL vmlinux 0xc0243ea6 nla_reserve_nohdr -EXPORT_SYMBOL vmlinux 0xc0330d33 _dev_emerg -EXPORT_SYMBOL vmlinux 0xc040991a follow_pfn -EXPORT_SYMBOL vmlinux 0xc04a76e3 con_set_default_unimap -EXPORT_SYMBOL vmlinux 0xc05731f7 tcp_peek_len -EXPORT_SYMBOL vmlinux 0xc06e1476 __dev_remove_pack +EXPORT_SYMBOL vmlinux 0xc04c1aa5 scsi_ioctl +EXPORT_SYMBOL vmlinux 0xc04c833c __splice_from_pipe +EXPORT_SYMBOL vmlinux 0xc0510581 dm_get_device +EXPORT_SYMBOL vmlinux 0xc0691210 configfs_register_default_group EXPORT_SYMBOL vmlinux 0xc06f0724 ZSTD_initDCtx EXPORT_SYMBOL vmlinux 0xc06fa7e0 add_wait_queue_exclusive -EXPORT_SYMBOL vmlinux 0xc077c182 dquot_quotactl_sysfile_ops +EXPORT_SYMBOL vmlinux 0xc0701b86 scsi_report_bus_reset EXPORT_SYMBOL vmlinux 0xc07b0863 fb_destroy_modedb -EXPORT_SYMBOL vmlinux 0xc099788a inet_offloads +EXPORT_SYMBOL vmlinux 0xc081e023 set_user_nice +EXPORT_SYMBOL vmlinux 0xc0a345a4 ipv6_dev_mc_dec EXPORT_SYMBOL vmlinux 0xc0afb5d7 cgroup_bpf_enabled_key +EXPORT_SYMBOL vmlinux 0xc0b13a93 netif_receive_skb_core EXPORT_SYMBOL vmlinux 0xc0b2664d devlink_dpipe_header_ipv4 -EXPORT_SYMBOL vmlinux 0xc0bac33f dev_deactivate EXPORT_SYMBOL vmlinux 0xc0bfb9d4 VMALLOC_END -EXPORT_SYMBOL vmlinux 0xc0ce2132 block_write_end -EXPORT_SYMBOL vmlinux 0xc0d65a82 jbd2_journal_load -EXPORT_SYMBOL vmlinux 0xc0d97d1a blk_mq_tagset_busy_iter +EXPORT_SYMBOL vmlinux 0xc0c360f8 vlan_vid_add +EXPORT_SYMBOL vmlinux 0xc0c4fb45 nobh_truncate_page EXPORT_SYMBOL vmlinux 0xc0e19543 lowcore_ptr +EXPORT_SYMBOL vmlinux 0xc0e3f0d5 scsi_vpd_lun_id EXPORT_SYMBOL vmlinux 0xc0e5e4e6 itcw_get_tcw +EXPORT_SYMBOL vmlinux 0xc0e6a87d inet_csk_reqsk_queue_drop_and_put +EXPORT_SYMBOL vmlinux 0xc0fceee4 dma_unmap_resource EXPORT_SYMBOL vmlinux 0xc0fd237c xxh32 EXPORT_SYMBOL vmlinux 0xc0ff12fb nla_strdup EXPORT_SYMBOL vmlinux 0xc0ff21c1 input_get_new_minor -EXPORT_SYMBOL vmlinux 0xc1001438 cdev_del -EXPORT_SYMBOL vmlinux 0xc10e4f2c dentry_path_raw +EXPORT_SYMBOL vmlinux 0xc10c4388 seq_puts +EXPORT_SYMBOL vmlinux 0xc1132623 ip_setsockopt +EXPORT_SYMBOL vmlinux 0xc119da00 __pskb_pull_tail EXPORT_SYMBOL vmlinux 0xc120caa6 diag_stat_inc -EXPORT_SYMBOL vmlinux 0xc1235c33 ip_fraglist_init -EXPORT_SYMBOL vmlinux 0xc12710a9 input_unregister_device -EXPORT_SYMBOL vmlinux 0xc1336af6 input_inject_event EXPORT_SYMBOL vmlinux 0xc1394dbd mod_virt_timer_periodic -EXPORT_SYMBOL vmlinux 0xc1443a37 debug_register_view -EXPORT_SYMBOL vmlinux 0xc15048f6 ip_options_rcv_srr EXPORT_SYMBOL vmlinux 0xc1514a3b free_irq +EXPORT_SYMBOL vmlinux 0xc160068d sock_efree EXPORT_SYMBOL vmlinux 0xc16410b9 ZSTD_getDictID_fromDDict EXPORT_SYMBOL vmlinux 0xc16be39d iter_div_u64_rem -EXPORT_SYMBOL vmlinux 0xc16c21e6 d_set_d_op -EXPORT_SYMBOL vmlinux 0xc1786a3c xfrm_policy_bysel_ctx -EXPORT_SYMBOL vmlinux 0xc1866284 xfrm_sad_getinfo -EXPORT_SYMBOL vmlinux 0xc192afb3 md_reap_sync_thread -EXPORT_SYMBOL vmlinux 0xc1985497 path_is_mountpoint -EXPORT_SYMBOL vmlinux 0xc1a9c573 param_ops_bint -EXPORT_SYMBOL vmlinux 0xc1c695b4 pin_user_pages +EXPORT_SYMBOL vmlinux 0xc16bf7ea unregister_framebuffer +EXPORT_SYMBOL vmlinux 0xc181d24c kernel_read +EXPORT_SYMBOL vmlinux 0xc186a952 scsi_print_result +EXPORT_SYMBOL vmlinux 0xc19e8be9 ipv6_push_frag_opts EXPORT_SYMBOL vmlinux 0xc1c8f8be raw3270_activate_view EXPORT_SYMBOL vmlinux 0xc1d5d504 scsi_cmd_allowed EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget -EXPORT_SYMBOL vmlinux 0xc20ca2c3 xfrm_state_register_afinfo EXPORT_SYMBOL vmlinux 0xc212f2ab prandom_bytes -EXPORT_SYMBOL vmlinux 0xc22577a6 dev_get_by_napi_id -EXPORT_SYMBOL vmlinux 0xc22a8143 inet_stream_ops -EXPORT_SYMBOL vmlinux 0xc231d70f lock_sock_nested -EXPORT_SYMBOL vmlinux 0xc24a7c58 security_d_instantiate +EXPORT_SYMBOL vmlinux 0xc2346863 blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0xc2363147 tcp_check_req EXPORT_SYMBOL vmlinux 0xc250590f strnlen_user -EXPORT_SYMBOL vmlinux 0xc272a1e3 skb_ext_add -EXPORT_SYMBOL vmlinux 0xc27b6f2b km_policy_expired +EXPORT_SYMBOL vmlinux 0xc26ce06d pci_dev_put EXPORT_SYMBOL vmlinux 0xc27ee138 __SCK__tp_func_s390_cio_stsch -EXPORT_SYMBOL vmlinux 0xc280db1b tcf_exts_validate EXPORT_SYMBOL vmlinux 0xc29a1878 abort_creds -EXPORT_SYMBOL vmlinux 0xc29ceb83 inc_node_page_state -EXPORT_SYMBOL vmlinux 0xc2b89fc6 tcp_mtu_to_mss -EXPORT_SYMBOL vmlinux 0xc2c2d9fa eth_platform_get_mac_address -EXPORT_SYMBOL vmlinux 0xc2d099f3 neigh_event_ns +EXPORT_SYMBOL vmlinux 0xc2c6fbf4 dev_pre_changeaddr_notify EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices -EXPORT_SYMBOL vmlinux 0xc3044e77 tcp_init_sock +EXPORT_SYMBOL vmlinux 0xc2ef8678 block_read_full_page EXPORT_SYMBOL vmlinux 0xc3055d20 usleep_range_state -EXPORT_SYMBOL vmlinux 0xc3168a67 jbd2_journal_start -EXPORT_SYMBOL vmlinux 0xc31714f6 page_symlink_inode_operations EXPORT_SYMBOL vmlinux 0xc31db0ce is_vmalloc_addr -EXPORT_SYMBOL vmlinux 0xc31f2326 dev_mc_del -EXPORT_SYMBOL vmlinux 0xc325d677 skb_seq_read EXPORT_SYMBOL vmlinux 0xc32c71af register_inetaddr_validator_notifier -EXPORT_SYMBOL vmlinux 0xc331a12f inode_add_bytes -EXPORT_SYMBOL vmlinux 0xc37256e9 mem_cgroup_from_task -EXPORT_SYMBOL vmlinux 0xc3764d38 dev_remove_pack -EXPORT_SYMBOL vmlinux 0xc388080f __cgroup_bpf_run_filter_sk +EXPORT_SYMBOL vmlinux 0xc336968b genlmsg_put +EXPORT_SYMBOL vmlinux 0xc3483bb9 generic_listxattr +EXPORT_SYMBOL vmlinux 0xc34e0e11 add_to_pipe +EXPORT_SYMBOL vmlinux 0xc3730617 sock_no_shutdown +EXPORT_SYMBOL vmlinux 0xc3735350 dev_add_offload +EXPORT_SYMBOL vmlinux 0xc37a955f ip_options_rcv_srr +EXPORT_SYMBOL vmlinux 0xc37c9140 md_handle_request EXPORT_SYMBOL vmlinux 0xc38c83b8 mod_timer -EXPORT_SYMBOL vmlinux 0xc3bd3dc6 netdev_set_sb_channel +EXPORT_SYMBOL vmlinux 0xc3922292 qdisc_watchdog_init +EXPORT_SYMBOL vmlinux 0xc3a71a2a csum_and_copy_from_iter +EXPORT_SYMBOL vmlinux 0xc3c1466a jbd2_journal_inode_ranged_write +EXPORT_SYMBOL vmlinux 0xc3dbf692 ccw_device_get_ciw +EXPORT_SYMBOL vmlinux 0xc3dffec6 __neigh_set_probe_once EXPORT_SYMBOL vmlinux 0xc3e45457 down_killable -EXPORT_SYMBOL vmlinux 0xc3e9fda6 framebuffer_alloc -EXPORT_SYMBOL vmlinux 0xc403ae69 regset_get +EXPORT_SYMBOL vmlinux 0xc412c6d9 tty_unlock EXPORT_SYMBOL vmlinux 0xc4212ab9 qdisc_class_hash_insert -EXPORT_SYMBOL vmlinux 0xc4230637 qdisc_put -EXPORT_SYMBOL vmlinux 0xc4267604 __dev_set_mtu -EXPORT_SYMBOL vmlinux 0xc4288c14 jbd2_journal_wipe -EXPORT_SYMBOL vmlinux 0xc4373f39 security_inode_init_security -EXPORT_SYMBOL vmlinux 0xc438347f import_iovec -EXPORT_SYMBOL vmlinux 0xc44a56d8 __neigh_event_send -EXPORT_SYMBOL vmlinux 0xc4593070 inet_dgram_ops +EXPORT_SYMBOL vmlinux 0xc4320781 mpage_writepage +EXPORT_SYMBOL vmlinux 0xc433945b bdi_alloc +EXPORT_SYMBOL vmlinux 0xc457a877 pci_ep_cfs_add_epf_group +EXPORT_SYMBOL vmlinux 0xc45d3faa __wait_on_buffer EXPORT_SYMBOL vmlinux 0xc46a63d4 cpumask_next -EXPORT_SYMBOL vmlinux 0xc471a6ca scsi_vpd_tpg_id +EXPORT_SYMBOL vmlinux 0xc4726906 tcf_generic_walker EXPORT_SYMBOL vmlinux 0xc475471a raw3270_del_view EXPORT_SYMBOL vmlinux 0xc4777aa9 __ctzsi2 -EXPORT_SYMBOL vmlinux 0xc47fc9eb tcf_classify -EXPORT_SYMBOL vmlinux 0xc494ed57 __fib6_flush_trees -EXPORT_SYMBOL vmlinux 0xc49bc1cb vlan_ioctl_set -EXPORT_SYMBOL vmlinux 0xc4a63c8a inet6_bind -EXPORT_SYMBOL vmlinux 0xc4c72866 udplite_prot -EXPORT_SYMBOL vmlinux 0xc4e07b4e dev_disable_lro -EXPORT_SYMBOL vmlinux 0xc50a3aad gro_cells_init -EXPORT_SYMBOL vmlinux 0xc546a329 vma_set_file -EXPORT_SYMBOL vmlinux 0xc569be2c bdev_read_only -EXPORT_SYMBOL vmlinux 0xc56beaa8 simple_link -EXPORT_SYMBOL vmlinux 0xc56ca4b5 security_inode_invalidate_secctx -EXPORT_SYMBOL vmlinux 0xc56e87e4 skb_mac_gso_segment +EXPORT_SYMBOL vmlinux 0xc4783b99 device_match_acpi_dev +EXPORT_SYMBOL vmlinux 0xc487b136 block_write_begin +EXPORT_SYMBOL vmlinux 0xc49118f3 sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0xc4a51583 lease_get_mtime +EXPORT_SYMBOL vmlinux 0xc4aa718b udp_disconnect +EXPORT_SYMBOL vmlinux 0xc4d77729 __dev_kfree_skb_any +EXPORT_SYMBOL vmlinux 0xc4dadd56 sock_kfree_s +EXPORT_SYMBOL vmlinux 0xc4dc26f1 vma_set_file +EXPORT_SYMBOL vmlinux 0xc4f1debd xfrm4_protocol_deregister +EXPORT_SYMBOL vmlinux 0xc4f464e0 xfrm_init_replay +EXPORT_SYMBOL vmlinux 0xc4f5b5e5 fscrypt_decrypt_block_inplace +EXPORT_SYMBOL vmlinux 0xc569131e ww_mutex_unlock EXPORT_SYMBOL vmlinux 0xc57b41f2 ZSTD_decompress_usingDict EXPORT_SYMBOL vmlinux 0xc57b8611 diag210 +EXPORT_SYMBOL vmlinux 0xc5806b87 cdrom_ioctl +EXPORT_SYMBOL vmlinux 0xc581e501 blk_mq_stop_hw_queues +EXPORT_SYMBOL vmlinux 0xc59404b8 dquot_get_next_dqblk EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete EXPORT_SYMBOL vmlinux 0xc5a3367a __tracepoint_dma_fence_emit -EXPORT_SYMBOL vmlinux 0xc5a3cfc3 dump_skip_to +EXPORT_SYMBOL vmlinux 0xc5a9789f netpoll_setup +EXPORT_SYMBOL vmlinux 0xc5ac4de5 set_guest_storage_key EXPORT_SYMBOL vmlinux 0xc5ad93b8 sie_exit EXPORT_SYMBOL vmlinux 0xc5b0d06f lockref_put_return -EXPORT_SYMBOL vmlinux 0xc5b6d4ed security_tun_dev_attach EXPORT_SYMBOL vmlinux 0xc5b6f236 queue_work_on +EXPORT_SYMBOL vmlinux 0xc5bf1704 __dst_destroy_metrics_generic EXPORT_SYMBOL vmlinux 0xc5c8b56c raw_copy_to_user -EXPORT_SYMBOL vmlinux 0xc5c99eac config_item_get_unless_zero -EXPORT_SYMBOL vmlinux 0xc5d01213 call_netdevice_notifiers +EXPORT_SYMBOL vmlinux 0xc5d748fe unpin_user_page_range_dirty_lock +EXPORT_SYMBOL vmlinux 0xc5dbe460 inet6_offloads EXPORT_SYMBOL vmlinux 0xc5e74216 release_resource EXPORT_SYMBOL vmlinux 0xc5f7e801 sg_last -EXPORT_SYMBOL vmlinux 0xc6032157 alloc_anon_inode -EXPORT_SYMBOL vmlinux 0xc607dc51 pci_msi_vec_count EXPORT_SYMBOL vmlinux 0xc60d0620 __num_online_cpus -EXPORT_SYMBOL vmlinux 0xc615a3d7 skb_headers_offset_update EXPORT_SYMBOL vmlinux 0xc622ea97 stsi EXPORT_SYMBOL vmlinux 0xc62ab2bc mempool_destroy EXPORT_SYMBOL vmlinux 0xc631580a console_unlock +EXPORT_SYMBOL vmlinux 0xc64a18a6 class3270 EXPORT_SYMBOL vmlinux 0xc65e4e97 secure_dccp_sequence_number -EXPORT_SYMBOL vmlinux 0xc65f1070 nf_ip6_checksum -EXPORT_SYMBOL vmlinux 0xc66661e2 __xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xc662370f seq_release_private EXPORT_SYMBOL vmlinux 0xc66a8304 cpu_rmap_add -EXPORT_SYMBOL vmlinux 0xc6710d4f crypto_sha512_update -EXPORT_SYMBOL vmlinux 0xc678c8dd sk_free -EXPORT_SYMBOL vmlinux 0xc67e2cdf vfs_get_link -EXPORT_SYMBOL vmlinux 0xc696cb97 get_mem_cgroup_from_mm -EXPORT_SYMBOL vmlinux 0xc6b5d128 alloc_pages +EXPORT_SYMBOL vmlinux 0xc6a23948 key_move +EXPORT_SYMBOL vmlinux 0xc6abce18 __mod_zone_page_state +EXPORT_SYMBOL vmlinux 0xc6b4365d tcf_exts_destroy EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable +EXPORT_SYMBOL vmlinux 0xc6d3097b skb_copy_datagram_from_iter +EXPORT_SYMBOL vmlinux 0xc6edcdf0 I_BDEV EXPORT_SYMBOL vmlinux 0xc6f3b3fc refcount_dec_if_one EXPORT_SYMBOL vmlinux 0xc6f46339 init_timer_key EXPORT_SYMBOL vmlinux 0xc6f8989b airq_iv_release -EXPORT_SYMBOL vmlinux 0xc7371a65 pci_read_config_dword +EXPORT_SYMBOL vmlinux 0xc716fa4f scsi_remove_target +EXPORT_SYMBOL vmlinux 0xc7214239 begin_new_exec +EXPORT_SYMBOL vmlinux 0xc72ac188 qdisc_watchdog_cancel +EXPORT_SYMBOL vmlinux 0xc72db239 pci_request_irq +EXPORT_SYMBOL vmlinux 0xc73cd561 blk_mq_rq_cpu +EXPORT_SYMBOL vmlinux 0xc75caa3b vfs_dedupe_file_range_one +EXPORT_SYMBOL vmlinux 0xc7713a38 seq_release +EXPORT_SYMBOL vmlinux 0xc77827b2 dma_mmap_attrs +EXPORT_SYMBOL vmlinux 0xc77e4ab0 inet6_protos EXPORT_SYMBOL vmlinux 0xc7856a3d inet6addr_notifier_call_chain +EXPORT_SYMBOL vmlinux 0xc794b5bc fs_param_is_blockdev EXPORT_SYMBOL vmlinux 0xc79f207e revert_creds -EXPORT_SYMBOL vmlinux 0xc79fba05 end_buffer_read_sync EXPORT_SYMBOL vmlinux 0xc7a24d76 sysfs_format_mac EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock -EXPORT_SYMBOL vmlinux 0xc7abf28a fbcon_update_vcs -EXPORT_SYMBOL vmlinux 0xc7b48e6b vfs_create_mount +EXPORT_SYMBOL vmlinux 0xc7b90e17 dm_table_get_md EXPORT_SYMBOL vmlinux 0xc7c1107a LZ4_decompress_safe -EXPORT_SYMBOL vmlinux 0xc7c78a14 pci_dev_put -EXPORT_SYMBOL vmlinux 0xc7cefeb5 netlbl_calipso_ops_register EXPORT_SYMBOL vmlinux 0xc7d094b5 dm_read_arg_group +EXPORT_SYMBOL vmlinux 0xc7d0c016 xfrm_policy_flush +EXPORT_SYMBOL vmlinux 0xc7d0cce0 current_time EXPORT_SYMBOL vmlinux 0xc7d2cf1a kstrtoul_from_user -EXPORT_SYMBOL vmlinux 0xc7d7330d inet_addr_type_dev_table -EXPORT_SYMBOL vmlinux 0xc7ff6f8a blkdev_issue_flush -EXPORT_SYMBOL vmlinux 0xc80f9afa filemap_fdatawait_keep_errors +EXPORT_SYMBOL vmlinux 0xc7dd46ed splice_direct_to_actor +EXPORT_SYMBOL vmlinux 0xc7df0b92 audit_log +EXPORT_SYMBOL vmlinux 0xc7ed48b6 kthread_associate_blkcg +EXPORT_SYMBOL vmlinux 0xc7f7fa34 __mmap_lock_do_trace_start_locking +EXPORT_SYMBOL vmlinux 0xc7fee45d tcf_idr_search +EXPORT_SYMBOL vmlinux 0xc81050c5 page_mapped EXPORT_SYMBOL vmlinux 0xc8106878 gen_pool_fixed_alloc -EXPORT_SYMBOL vmlinux 0xc81aa097 __skb_try_recv_datagram +EXPORT_SYMBOL vmlinux 0xc83c35cc fscrypt_free_bounce_page EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu -EXPORT_SYMBOL vmlinux 0xc84acf14 flow_rule_match_enc_ip EXPORT_SYMBOL vmlinux 0xc84fddf6 proc_dointvec_minmax +EXPORT_SYMBOL vmlinux 0xc86098b4 vfs_fileattr_set +EXPORT_SYMBOL vmlinux 0xc860e5b2 register_tcf_proto_ops EXPORT_SYMBOL vmlinux 0xc86a6174 __kfifo_from_user_r -EXPORT_SYMBOL vmlinux 0xc86caba4 security_sctp_assoc_request EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes +EXPORT_SYMBOL vmlinux 0xc87dd915 pci_get_class EXPORT_SYMBOL vmlinux 0xc8827b75 sysctl_vals +EXPORT_SYMBOL vmlinux 0xc8873a7e inode_dio_wait +EXPORT_SYMBOL vmlinux 0xc8897d56 pcibios_resource_to_bus EXPORT_SYMBOL vmlinux 0xc890c008 zlib_deflateEnd -EXPORT_SYMBOL vmlinux 0xc89191b1 add_to_pipe +EXPORT_SYMBOL vmlinux 0xc896c133 xfrm_state_add +EXPORT_SYMBOL vmlinux 0xc89cf021 ___pskb_trim +EXPORT_SYMBOL vmlinux 0xc8a4b866 gnet_stats_copy_rate_est EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread -EXPORT_SYMBOL vmlinux 0xc8b000e0 __debug_sprintf_exception -EXPORT_SYMBOL vmlinux 0xc8c95033 inode_update_time -EXPORT_SYMBOL vmlinux 0xc8cf54dd debug_event_common -EXPORT_SYMBOL vmlinux 0xc8e2b0e4 tcp_timewait_state_process -EXPORT_SYMBOL vmlinux 0xc8e7e135 udp_sk_rx_dst_set -EXPORT_SYMBOL vmlinux 0xc8ec68df simple_transaction_set -EXPORT_SYMBOL vmlinux 0xc8f1a4d9 udp_lib_unhash -EXPORT_SYMBOL vmlinux 0xc8fa566e tcf_idr_cleanup +EXPORT_SYMBOL vmlinux 0xc8d6e3f0 cdev_device_del +EXPORT_SYMBOL vmlinux 0xc8e1c361 fb_set_var +EXPORT_SYMBOL vmlinux 0xc8e24c3d input_open_device EXPORT_SYMBOL vmlinux 0xc916dd46 __SCK__tp_func_kmalloc -EXPORT_SYMBOL vmlinux 0xc92e55fe dev_get_by_name -EXPORT_SYMBOL vmlinux 0xc94f3317 pci_scan_root_bus -EXPORT_SYMBOL vmlinux 0xc94f5277 dquot_get_next_id +EXPORT_SYMBOL vmlinux 0xc919c537 fscrypt_zeroout_range +EXPORT_SYMBOL vmlinux 0xc9264c32 pcie_set_mps +EXPORT_SYMBOL vmlinux 0xc92ade81 security_lock_kernel_down +EXPORT_SYMBOL vmlinux 0xc9399d90 scsi_add_host_with_dma +EXPORT_SYMBOL vmlinux 0xc93fefb9 pci_stop_and_remove_bus_device +EXPORT_SYMBOL vmlinux 0xc9425995 netpoll_poll_enable +EXPORT_SYMBOL vmlinux 0xc9458262 skb_eth_pop +EXPORT_SYMBOL vmlinux 0xc94e05fa cdrom_check_events EXPORT_SYMBOL vmlinux 0xc94fdebf __genradix_ptr -EXPORT_SYMBOL vmlinux 0xc95962a7 page_pool_put_page -EXPORT_SYMBOL vmlinux 0xc95fb78f con_is_visible +EXPORT_SYMBOL vmlinux 0xc95c7d3c netdev_warn EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters +EXPORT_SYMBOL vmlinux 0xc9649993 __netif_schedule +EXPORT_SYMBOL vmlinux 0xc96d6812 sock_pfree EXPORT_SYMBOL vmlinux 0xc972449f mempool_alloc_slab -EXPORT_SYMBOL vmlinux 0xc97457a4 dmam_alloc_attrs +EXPORT_SYMBOL vmlinux 0xc97727d3 crypto_sha256_finup EXPORT_SYMBOL vmlinux 0xc9831ad7 flow_keys_dissector -EXPORT_SYMBOL vmlinux 0xc9923d16 eth_prepare_mac_addr_change -EXPORT_SYMBOL vmlinux 0xc9b18c9e finish_no_open -EXPORT_SYMBOL vmlinux 0xc9c2049a kmem_cache_create -EXPORT_SYMBOL vmlinux 0xc9cca1e9 scsi_remove_device -EXPORT_SYMBOL vmlinux 0xc9cf705e xfrm_policy_walk_done -EXPORT_SYMBOL vmlinux 0xc9d7568a param_ops_int -EXPORT_SYMBOL vmlinux 0xc9d9a6cb tcp_sync_mss +EXPORT_SYMBOL vmlinux 0xc99b4471 netif_rx +EXPORT_SYMBOL vmlinux 0xc9a1dc0d sk_dst_check +EXPORT_SYMBOL vmlinux 0xc9a2da6d netdev_update_features +EXPORT_SYMBOL vmlinux 0xc9bfc818 inet_csk_prepare_forced_close +EXPORT_SYMBOL vmlinux 0xc9c11f8a sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0xc9cc2dac wait_on_page_bit +EXPORT_SYMBOL vmlinux 0xc9dc5669 generic_file_fsync EXPORT_SYMBOL vmlinux 0xc9df055a xfrm_policy_walk_init -EXPORT_SYMBOL vmlinux 0xc9e76427 jbd2_wait_inode_data -EXPORT_SYMBOL vmlinux 0xc9ed8734 put_cmsg -EXPORT_SYMBOL vmlinux 0xc9edcef4 dev_set_promiscuity -EXPORT_SYMBOL vmlinux 0xc9f85d8d pcie_print_link_status -EXPORT_SYMBOL vmlinux 0xc9fcc681 sock_no_accept -EXPORT_SYMBOL vmlinux 0xca02ec80 from_kgid_munged -EXPORT_SYMBOL vmlinux 0xca11fafb tcf_action_exec -EXPORT_SYMBOL vmlinux 0xca1fbf62 flow_rule_match_eth_addrs +EXPORT_SYMBOL vmlinux 0xc9f89db1 inode_init_once +EXPORT_SYMBOL vmlinux 0xca027cfb sock_wfree EXPORT_SYMBOL vmlinux 0xca21ebd3 bitmap_free +EXPORT_SYMBOL vmlinux 0xca3a2310 _copy_from_iter EXPORT_SYMBOL vmlinux 0xca431c05 wake_bit_function -EXPORT_SYMBOL vmlinux 0xca665ec5 tty_insert_flip_string_flags -EXPORT_SYMBOL vmlinux 0xca6e61a9 pci_wake_from_d3 -EXPORT_SYMBOL vmlinux 0xca7f0233 param_ops_ullong -EXPORT_SYMBOL vmlinux 0xca86a16a sock_register -EXPORT_SYMBOL vmlinux 0xca8affb5 dma_sync_sg_for_cpu -EXPORT_SYMBOL vmlinux 0xca8f421f jbd2_journal_try_to_free_buffers +EXPORT_SYMBOL vmlinux 0xca539d89 xfrm6_rcv_spi +EXPORT_SYMBOL vmlinux 0xca8d069b inet6_add_offload EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next -EXPORT_SYMBOL vmlinux 0xca954413 fb_class -EXPORT_SYMBOL vmlinux 0xcaacd875 tcf_action_set_ctrlact -EXPORT_SYMBOL vmlinux 0xcac16295 simple_lookup -EXPORT_SYMBOL vmlinux 0xcac3312f __netif_schedule -EXPORT_SYMBOL vmlinux 0xcae1bf78 tty_chars_in_buffer +EXPORT_SYMBOL vmlinux 0xca9c25ba grab_cache_page_write_begin +EXPORT_SYMBOL vmlinux 0xcaa3ca78 fs_context_for_mount +EXPORT_SYMBOL vmlinux 0xcaa9b9ef sock_i_uid +EXPORT_SYMBOL vmlinux 0xcab21b7b netif_tx_wake_queue +EXPORT_SYMBOL vmlinux 0xcab6081b jbd2_journal_errno +EXPORT_SYMBOL vmlinux 0xcac544d0 tcp_md5_hash_skb_data EXPORT_SYMBOL vmlinux 0xcae3a07a sg_copy_from_buffer +EXPORT_SYMBOL vmlinux 0xcae4df30 netdev_lower_get_next_private EXPORT_SYMBOL vmlinux 0xcaf2c603 scsi_sd_pm_domain -EXPORT_SYMBOL vmlinux 0xcb054f7c set_binfmt -EXPORT_SYMBOL vmlinux 0xcb15aae5 __mmap_lock_do_trace_released +EXPORT_SYMBOL vmlinux 0xcb09af44 sg_miter_stop +EXPORT_SYMBOL vmlinux 0xcb178ba1 skb_dequeue EXPORT_SYMBOL vmlinux 0xcb30fa0b gen_replace_estimator EXPORT_SYMBOL vmlinux 0xcb34a6e7 hdmi_spd_infoframe_pack EXPORT_SYMBOL vmlinux 0xcb3ae215 call_blocking_lsm_notifier -EXPORT_SYMBOL vmlinux 0xcb6e029d netdev_lower_get_first_private_rcu +EXPORT_SYMBOL vmlinux 0xcb3c12fd tcf_get_next_proto +EXPORT_SYMBOL vmlinux 0xcb80b9a9 page_pool_alloc_pages +EXPORT_SYMBOL vmlinux 0xcb96338f __alloc_pages EXPORT_SYMBOL vmlinux 0xcba6550b __SCK__tp_func_s390_cio_xsch -EXPORT_SYMBOL vmlinux 0xcbaa649d write_inode_now -EXPORT_SYMBOL vmlinux 0xcbb18961 delete_from_page_cache -EXPORT_SYMBOL vmlinux 0xcbbf8caa input_register_handler +EXPORT_SYMBOL vmlinux 0xcbbac3d9 dump_emit +EXPORT_SYMBOL vmlinux 0xcbbcb3c6 simple_dentry_operations +EXPORT_SYMBOL vmlinux 0xcbcf0f99 simple_statfs EXPORT_SYMBOL vmlinux 0xcbd4898c fortify_panic -EXPORT_SYMBOL vmlinux 0xcbec2656 scsi_remove_target -EXPORT_SYMBOL vmlinux 0xcc199652 filemap_fdatawait_range -EXPORT_SYMBOL vmlinux 0xcc2f9640 skb_copy_and_hash_datagram_iter +EXPORT_SYMBOL vmlinux 0xcbdaa326 jbd2_journal_init_dev +EXPORT_SYMBOL vmlinux 0xcbdae937 __napi_schedule_irqoff +EXPORT_SYMBOL vmlinux 0xcbf35c9d ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0xcbf9831a kill_anon_super +EXPORT_SYMBOL vmlinux 0xcc307a5e sock_set_rcvbuf EXPORT_SYMBOL vmlinux 0xcc328a5c reservation_ww_class -EXPORT_SYMBOL vmlinux 0xcc356412 __xfrm_route_forward +EXPORT_SYMBOL vmlinux 0xcc3f8469 input_unregister_handle EXPORT_SYMBOL vmlinux 0xcc445ceb __sg_page_iter_dma_next +EXPORT_SYMBOL vmlinux 0xcc48c135 md_done_sync +EXPORT_SYMBOL vmlinux 0xcc4f4bfb param_set_short EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible EXPORT_SYMBOL vmlinux 0xcc5d22d9 can_do_mlock -EXPORT_SYMBOL vmlinux 0xccb3a5f7 dma_map_sg_attrs -EXPORT_SYMBOL vmlinux 0xccb44d26 ccw_device_get_id +EXPORT_SYMBOL vmlinux 0xcc601a31 skb_checksum_trimmed +EXPORT_SYMBOL vmlinux 0xcc692c1e pipe_unlock +EXPORT_SYMBOL vmlinux 0xcc6b9691 inode_io_list_del +EXPORT_SYMBOL vmlinux 0xcc7f5533 flow_rule_match_enc_ports +EXPORT_SYMBOL vmlinux 0xcc86f743 submit_bio +EXPORT_SYMBOL vmlinux 0xcc91055e devm_register_reboot_notifier +EXPORT_SYMBOL vmlinux 0xcca13766 security_inode_init_security EXPORT_SYMBOL vmlinux 0xccb491e8 bsearch -EXPORT_SYMBOL vmlinux 0xccbdade1 sg_miter_skip +EXPORT_SYMBOL vmlinux 0xccbb7ec9 block_write_end EXPORT_SYMBOL vmlinux 0xccc6451b airq_iv_create -EXPORT_SYMBOL vmlinux 0xccca3348 inode_owner_or_capable -EXPORT_SYMBOL vmlinux 0xcccb8d1d netdev_txq_to_tc EXPORT_SYMBOL vmlinux 0xccd4c999 __sg_page_iter_start -EXPORT_SYMBOL vmlinux 0xccf0e0c0 udp6_csum_init EXPORT_SYMBOL vmlinux 0xccfb9e07 dst_default_metrics EXPORT_SYMBOL vmlinux 0xccfd2ebc scsi_dev_info_list_del_keyed -EXPORT_SYMBOL vmlinux 0xcd03f20c fb_show_logo EXPORT_SYMBOL vmlinux 0xcd0c29d2 wait_for_completion_interruptible_timeout +EXPORT_SYMBOL vmlinux 0xcd22b111 freezing_slow_path EXPORT_SYMBOL vmlinux 0xcd256667 tcp_md5_needed EXPORT_SYMBOL vmlinux 0xcd279169 nla_find -EXPORT_SYMBOL vmlinux 0xcd3b7bca xfrm_user_policy -EXPORT_SYMBOL vmlinux 0xcd48628b ccw_device_dma_free -EXPORT_SYMBOL vmlinux 0xcd5b87fa blk_mq_start_request -EXPORT_SYMBOL vmlinux 0xcd622ad0 reuseport_stop_listen_sock -EXPORT_SYMBOL vmlinux 0xcd76c94b d_add_ci -EXPORT_SYMBOL vmlinux 0xcd99853b eth_gro_receive -EXPORT_SYMBOL vmlinux 0xcda90930 input_alloc_absinfo -EXPORT_SYMBOL vmlinux 0xcdb38ce6 tcp_rcv_state_process +EXPORT_SYMBOL vmlinux 0xcd289e47 seg6_hmac_net_init +EXPORT_SYMBOL vmlinux 0xcd3be397 vfs_parse_fs_param +EXPORT_SYMBOL vmlinux 0xcd47effc __scsi_print_sense +EXPORT_SYMBOL vmlinux 0xcd68a77e generic_error_remove_page +EXPORT_SYMBOL vmlinux 0xcd7fbcfd xfrm_user_policy +EXPORT_SYMBOL vmlinux 0xcd81463c md_bitmap_cond_end_sync +EXPORT_SYMBOL vmlinux 0xcd9b20d5 ip6_dst_hoplimit +EXPORT_SYMBOL vmlinux 0xcd9c7e6d dquot_get_state +EXPORT_SYMBOL vmlinux 0xcdbe81f9 jbd2__journal_restart EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel +EXPORT_SYMBOL vmlinux 0xcdd70716 page_pool_alloc_frag EXPORT_SYMBOL vmlinux 0xcde77bcc free_opal_dev -EXPORT_SYMBOL vmlinux 0xcdfed429 mnt_set_expiry -EXPORT_SYMBOL vmlinux 0xce05fb76 ip_getsockopt -EXPORT_SYMBOL vmlinux 0xce08ed06 __skb_vlan_pop +EXPORT_SYMBOL vmlinux 0xcdf9b6dc blk_sync_queue +EXPORT_SYMBOL vmlinux 0xcdf9c778 fwnode_get_mac_address EXPORT_SYMBOL vmlinux 0xce0c1f34 dfltcc_deflate -EXPORT_SYMBOL vmlinux 0xce208b77 vm_insert_page -EXPORT_SYMBOL vmlinux 0xce2446b4 block_truncate_page EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake +EXPORT_SYMBOL vmlinux 0xce30d840 ipv6_dev_mc_inc +EXPORT_SYMBOL vmlinux 0xce40ef66 blk_rq_unmap_user EXPORT_SYMBOL vmlinux 0xce42f1ce hdmi_infoframe_pack EXPORT_SYMBOL vmlinux 0xce4cdb8e fb_find_best_mode -EXPORT_SYMBOL vmlinux 0xce584395 truncate_inode_pages +EXPORT_SYMBOL vmlinux 0xce59c65d unregister_filesystem EXPORT_SYMBOL vmlinux 0xce5ac24f zlib_inflate_workspacesize -EXPORT_SYMBOL vmlinux 0xce6284bd __generic_file_write_iter -EXPORT_SYMBOL vmlinux 0xce6791a5 skb_vlan_untag -EXPORT_SYMBOL vmlinux 0xce80226a seq_hex_dump -EXPORT_SYMBOL vmlinux 0xce810e3d dcb_ieee_getapp_default_prio_mask +EXPORT_SYMBOL vmlinux 0xce8393a2 sk_stop_timer EXPORT_SYMBOL vmlinux 0xce8b41eb mem_section -EXPORT_SYMBOL vmlinux 0xcea86658 kill_fasync +EXPORT_SYMBOL vmlinux 0xce8f19c5 netif_skb_features EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul -EXPORT_SYMBOL vmlinux 0xceb3c47e vfs_link -EXPORT_SYMBOL vmlinux 0xcebc04ab inet_dev_addr_type -EXPORT_SYMBOL vmlinux 0xcec63251 __sk_mem_raise_allocated -EXPORT_SYMBOL vmlinux 0xceebd69a __skb_flow_get_ports +EXPORT_SYMBOL vmlinux 0xcebbacd1 neigh_event_ns +EXPORT_SYMBOL vmlinux 0xcec4201f tcp_prot +EXPORT_SYMBOL vmlinux 0xcec496fa pci_find_resource +EXPORT_SYMBOL vmlinux 0xcecfc557 pcim_enable_device +EXPORT_SYMBOL vmlinux 0xceddfca4 __neigh_event_send +EXPORT_SYMBOL vmlinux 0xcee6fca6 update_region EXPORT_SYMBOL vmlinux 0xceec8abd __mb_cache_entry_free -EXPORT_SYMBOL vmlinux 0xcef4344a unregister_netdev -EXPORT_SYMBOL vmlinux 0xcf0b214d inode_needs_sync -EXPORT_SYMBOL vmlinux 0xcf185731 jbd2_log_start_commit -EXPORT_SYMBOL vmlinux 0xcf275e55 fscrypt_decrypt_block_inplace -EXPORT_SYMBOL vmlinux 0xcf2afb56 try_module_get -EXPORT_SYMBOL vmlinux 0xcf4f3239 dev_queue_xmit_accel -EXPORT_SYMBOL vmlinux 0xcf5e8a2a pcibios_bus_to_resource +EXPORT_SYMBOL vmlinux 0xcef1f0f0 tcp_v4_syn_recv_sock +EXPORT_SYMBOL vmlinux 0xcf03b4bc file_path +EXPORT_SYMBOL vmlinux 0xcf0b36ae __scsi_iterate_devices +EXPORT_SYMBOL vmlinux 0xcf0f65ba blk_queue_bounce_limit +EXPORT_SYMBOL vmlinux 0xcf1cf623 textsearch_unregister +EXPORT_SYMBOL vmlinux 0xcf41ef65 complete_request_key +EXPORT_SYMBOL vmlinux 0xcf4ccc2f pmdp_xchg_direct +EXPORT_SYMBOL vmlinux 0xcf59c839 security_sb_remount +EXPORT_SYMBOL vmlinux 0xcf646b20 dev_uc_sync EXPORT_SYMBOL vmlinux 0xcf64b0d5 raw3270_request_free -EXPORT_SYMBOL vmlinux 0xcf7b636d neigh_sysctl_unregister +EXPORT_SYMBOL vmlinux 0xcf76dcf3 xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0xcf795747 skb_store_bits EXPORT_SYMBOL vmlinux 0xcf8f3b49 ns_capable_noaudit -EXPORT_SYMBOL vmlinux 0xcf93c97d generic_set_encrypted_ci_d_ops +EXPORT_SYMBOL vmlinux 0xcf941231 dump_align EXPORT_SYMBOL vmlinux 0xcf9b558d touchscreen_set_mt_pos -EXPORT_SYMBOL vmlinux 0xcfa363fa md_finish_reshape -EXPORT_SYMBOL vmlinux 0xcfa8720c rawv6_mh_filter_unregister -EXPORT_SYMBOL vmlinux 0xcfb38903 __SetPageMovable -EXPORT_SYMBOL vmlinux 0xcfb55db4 arp_create -EXPORT_SYMBOL vmlinux 0xcfc09b56 eth_get_headlen -EXPORT_SYMBOL vmlinux 0xcfc32faa dev_activate -EXPORT_SYMBOL vmlinux 0xcffb94b0 netdev_master_upper_dev_get -EXPORT_SYMBOL vmlinux 0xd00619a4 devm_gen_pool_create -EXPORT_SYMBOL vmlinux 0xd007e775 ccw_device_halt -EXPORT_SYMBOL vmlinux 0xd034c8b9 xsk_set_rx_need_wakeup +EXPORT_SYMBOL vmlinux 0xcfb65828 netlink_capable +EXPORT_SYMBOL vmlinux 0xcfba4f19 ndisc_mc_map +EXPORT_SYMBOL vmlinux 0xcfbaf1b2 fqdir_init +EXPORT_SYMBOL vmlinux 0xcfec8f08 sock_alloc_send_pskb +EXPORT_SYMBOL vmlinux 0xcff85418 vfs_parse_fs_param_source +EXPORT_SYMBOL vmlinux 0xd02a8893 mod_zone_page_state EXPORT_SYMBOL vmlinux 0xd04c1a64 sysctl_devconf_inherit_init_net -EXPORT_SYMBOL vmlinux 0xd05ce02d iov_iter_xarray +EXPORT_SYMBOL vmlinux 0xd04c52df inet_listen +EXPORT_SYMBOL vmlinux 0xd04efece set_posix_acl +EXPORT_SYMBOL vmlinux 0xd05019db touchscreen_report_pos +EXPORT_SYMBOL vmlinux 0xd052dfbe ccw_device_set_offline +EXPORT_SYMBOL vmlinux 0xd054d4ea lock_two_nondirectories +EXPORT_SYMBOL vmlinux 0xd0629b7e ww_mutex_lock_interruptible EXPORT_SYMBOL vmlinux 0xd0654aba woken_wake_function EXPORT_SYMBOL vmlinux 0xd0760fc0 kfree_sensitive -EXPORT_SYMBOL vmlinux 0xd0793c14 ip6_route_me_harder -EXPORT_SYMBOL vmlinux 0xd0a9fc05 md_handle_request +EXPORT_SYMBOL vmlinux 0xd0a7cf41 __netlink_kernel_create +EXPORT_SYMBOL vmlinux 0xd0ab6310 dcbnl_ieee_notify EXPORT_SYMBOL vmlinux 0xd0ae5f55 __printk_cpu_trylock -EXPORT_SYMBOL vmlinux 0xd0bf4961 dm_put_device -EXPORT_SYMBOL vmlinux 0xd0e2b5d6 tcp_shutdown -EXPORT_SYMBOL vmlinux 0xd0ec9294 deactivate_super -EXPORT_SYMBOL vmlinux 0xd0f4537f unlock_page_memcg -EXPORT_SYMBOL vmlinux 0xd0fa0c87 device_add_disk -EXPORT_SYMBOL vmlinux 0xd10dcef2 register_nexthop_notifier +EXPORT_SYMBOL vmlinux 0xd0aeca28 input_inject_event +EXPORT_SYMBOL vmlinux 0xd0bb076c md_integrity_add_rdev +EXPORT_SYMBOL vmlinux 0xd0d0fc1a blk_mq_start_request +EXPORT_SYMBOL vmlinux 0xd0d80540 fb_class +EXPORT_SYMBOL vmlinux 0xd104dcb0 dev_set_mac_address_user EXPORT_SYMBOL vmlinux 0xd11bac17 check_zeroed_user -EXPORT_SYMBOL vmlinux 0xd12207c6 udp_lib_getsockopt -EXPORT_SYMBOL vmlinux 0xd12459a6 pci_get_subsys +EXPORT_SYMBOL vmlinux 0xd121595f blk_queue_io_min EXPORT_SYMBOL vmlinux 0xd133136a ns_capable -EXPORT_SYMBOL vmlinux 0xd15dc569 inc_zone_page_state +EXPORT_SYMBOL vmlinux 0xd1523759 dst_dev_put +EXPORT_SYMBOL vmlinux 0xd15c0e75 pci_restore_state EXPORT_SYMBOL vmlinux 0xd15eada0 nla_reserve -EXPORT_SYMBOL vmlinux 0xd168d72c devm_pci_remap_cfgspace -EXPORT_SYMBOL vmlinux 0xd17d90c4 pci_irq_get_affinity +EXPORT_SYMBOL vmlinux 0xd15f6a69 blk_dump_rq_flags EXPORT_SYMBOL vmlinux 0xd17de455 __kernel_fpu_begin EXPORT_SYMBOL vmlinux 0xd1816f32 frontswap_writethrough -EXPORT_SYMBOL vmlinux 0xd182e4e9 pci_remove_bus -EXPORT_SYMBOL vmlinux 0xd185acbd filemap_invalidate_lock_two EXPORT_SYMBOL vmlinux 0xd187b791 security_binder_set_context_mgr -EXPORT_SYMBOL vmlinux 0xd1a29010 sock_create_lite +EXPORT_SYMBOL vmlinux 0xd1b37331 cdrom_dummy_generic_packet EXPORT_SYMBOL vmlinux 0xd1b4b419 tcw_get_intrg +EXPORT_SYMBOL vmlinux 0xd1b54b26 vm_map_pages +EXPORT_SYMBOL vmlinux 0xd1b5aec9 inc_node_page_state +EXPORT_SYMBOL vmlinux 0xd1c1d7d1 get_tree_keyed +EXPORT_SYMBOL vmlinux 0xd1c4da55 config_item_init_type_name +EXPORT_SYMBOL vmlinux 0xd1cc1913 jbd2_journal_check_available_features EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string EXPORT_SYMBOL vmlinux 0xd1dcda0b set_security_override -EXPORT_SYMBOL vmlinux 0xd1fa130b block_page_mkwrite +EXPORT_SYMBOL vmlinux 0xd1e2f3f6 dm_io +EXPORT_SYMBOL vmlinux 0xd1f09cc9 tcp_sock_set_keepcnt +EXPORT_SYMBOL vmlinux 0xd1fed198 get_bitmap_from_slot +EXPORT_SYMBOL vmlinux 0xd2008a6c __kfree_skb EXPORT_SYMBOL vmlinux 0xd209e848 memcpy_and_pad -EXPORT_SYMBOL vmlinux 0xd212f760 __lock_sock_fast -EXPORT_SYMBOL vmlinux 0xd2133b43 dquot_quota_on_mount -EXPORT_SYMBOL vmlinux 0xd2137539 input_mt_report_finger_count -EXPORT_SYMBOL vmlinux 0xd223a81d input_set_abs_params +EXPORT_SYMBOL vmlinux 0xd20f1952 netdev_upper_dev_link +EXPORT_SYMBOL vmlinux 0xd2190a88 inet_proto_csum_replace16 +EXPORT_SYMBOL vmlinux 0xd2234d63 get_ccwdev_by_busid +EXPORT_SYMBOL vmlinux 0xd2251c26 mpage_readahead EXPORT_SYMBOL vmlinux 0xd2260096 radix_tree_iter_delete -EXPORT_SYMBOL vmlinux 0xd229b0a7 get_user_pages_locked +EXPORT_SYMBOL vmlinux 0xd23c39ee dev_uc_del +EXPORT_SYMBOL vmlinux 0xd242de22 copy_string_kernel EXPORT_SYMBOL vmlinux 0xd2504a8c arch_spin_lock_wait EXPORT_SYMBOL vmlinux 0xd2510a63 up_write +EXPORT_SYMBOL vmlinux 0xd2527ef1 pcim_iomap EXPORT_SYMBOL vmlinux 0xd2582f8f __SCK__tp_func_mmap_lock_acquire_returned EXPORT_SYMBOL vmlinux 0xd25d4f74 console_blank_hook -EXPORT_SYMBOL vmlinux 0xd26242dc blk_mq_start_hw_queues -EXPORT_SYMBOL vmlinux 0xd269e7a6 pcim_pin_device EXPORT_SYMBOL vmlinux 0xd2779731 blk_limits_io_min +EXPORT_SYMBOL vmlinux 0xd278678f d_prune_aliases +EXPORT_SYMBOL vmlinux 0xd27a48c2 ip6_xmit EXPORT_SYMBOL vmlinux 0xd27b25dd blk_check_plugged -EXPORT_SYMBOL vmlinux 0xd29c494c netlink_kernel_release -EXPORT_SYMBOL vmlinux 0xd2d62215 security_sb_remount +EXPORT_SYMBOL vmlinux 0xd2800691 nf_conntrack_destroy +EXPORT_SYMBOL vmlinux 0xd2818cae debug_unregister_view +EXPORT_SYMBOL vmlinux 0xd29252ff fuse_mount_destroy +EXPORT_SYMBOL vmlinux 0xd2b658b1 ipv6_skip_exthdr +EXPORT_SYMBOL vmlinux 0xd2c14898 __netlink_ns_capable EXPORT_SYMBOL vmlinux 0xd2da1048 register_netdevice_notifier -EXPORT_SYMBOL vmlinux 0xd2efea54 __scsi_add_device -EXPORT_SYMBOL vmlinux 0xd3111d52 dquot_set_dqblk -EXPORT_SYMBOL vmlinux 0xd337ca39 fb_get_buffer_offset -EXPORT_SYMBOL vmlinux 0xd3534087 dget_parent +EXPORT_SYMBOL vmlinux 0xd2dbce98 stream_open +EXPORT_SYMBOL vmlinux 0xd2e23c9e input_mt_destroy_slots +EXPORT_SYMBOL vmlinux 0xd3209291 jbd2_journal_update_sb_errno +EXPORT_SYMBOL vmlinux 0xd3232f5c filemap_map_pages EXPORT_SYMBOL vmlinux 0xd3543063 memcg_kmem_enabled_key -EXPORT_SYMBOL vmlinux 0xd35a606b build_skb +EXPORT_SYMBOL vmlinux 0xd35554d1 get_tree_bdev EXPORT_SYMBOL vmlinux 0xd35a6d31 mempool_kmalloc -EXPORT_SYMBOL vmlinux 0xd3663577 ap_cancel_message EXPORT_SYMBOL vmlinux 0xd36dc10c get_random_u32 -EXPORT_SYMBOL vmlinux 0xd3852a79 ccw_device_start_timeout_key -EXPORT_SYMBOL vmlinux 0xd38778f9 xfrm4_protocol_deregister -EXPORT_SYMBOL vmlinux 0xd3916262 skb_copy_bits -EXPORT_SYMBOL vmlinux 0xd3a2c044 __neigh_for_each_release -EXPORT_SYMBOL vmlinux 0xd3a3ff6b sock_set_rcvbuf +EXPORT_SYMBOL vmlinux 0xd3a3dc04 devm_alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0xd3ae0795 netif_schedule_queue +EXPORT_SYMBOL vmlinux 0xd3ae753b ptep_xchg_direct EXPORT_SYMBOL vmlinux 0xd3af979c memdup_user -EXPORT_SYMBOL vmlinux 0xd3c0bb1a sk_page_frag_refill EXPORT_SYMBOL vmlinux 0xd3cf1c01 down_write -EXPORT_SYMBOL vmlinux 0xd3cf4e51 dma_set_mask -EXPORT_SYMBOL vmlinux 0xd3d8975a param_ops_byte +EXPORT_SYMBOL vmlinux 0xd3d162ea __breadahead +EXPORT_SYMBOL vmlinux 0xd3d5dac4 mr_mfc_seq_idx +EXPORT_SYMBOL vmlinux 0xd3e18dd6 setattr_copy +EXPORT_SYMBOL vmlinux 0xd3e99feb netdev_upper_get_next_dev_rcu EXPORT_SYMBOL vmlinux 0xd3eaf1ed devlink_dpipe_entry_clear -EXPORT_SYMBOL vmlinux 0xd3fc6470 jbd2_journal_restart +EXPORT_SYMBOL vmlinux 0xd3f097f0 do_splice_direct EXPORT_SYMBOL vmlinux 0xd406d266 fb_mode_is_equal -EXPORT_SYMBOL vmlinux 0xd40b32c9 bio_integrity_add_page -EXPORT_SYMBOL vmlinux 0xd40df7a2 vlan_uses_dev -EXPORT_SYMBOL vmlinux 0xd40f7970 file_check_and_advance_wb_err -EXPORT_SYMBOL vmlinux 0xd413477d debug_sprintf_view -EXPORT_SYMBOL vmlinux 0xd41e0cd9 __neigh_create -EXPORT_SYMBOL vmlinux 0xd4602c61 inet_csk_delete_keepalive_timer +EXPORT_SYMBOL vmlinux 0xd4102f1b seg6_hmac_info_add +EXPORT_SYMBOL vmlinux 0xd418f913 dst_cow_metrics_generic +EXPORT_SYMBOL vmlinux 0xd42193ca blkdev_issue_write_same +EXPORT_SYMBOL vmlinux 0xd43da39a inet_csk_init_xmit_timers +EXPORT_SYMBOL vmlinux 0xd441e5cc xfrm_policy_insert +EXPORT_SYMBOL vmlinux 0xd46d71a1 block_commit_write +EXPORT_SYMBOL vmlinux 0xd47078e3 neigh_for_each +EXPORT_SYMBOL vmlinux 0xd4818d78 udp_seq_next +EXPORT_SYMBOL vmlinux 0xd48200ac dev_get_by_napi_id EXPORT_SYMBOL vmlinux 0xd48f69c8 tcw_get_tsb EXPORT_SYMBOL vmlinux 0xd4952cc0 cpumask_next_wrap +EXPORT_SYMBOL vmlinux 0xd4a48c76 security_sb_clone_mnt_opts +EXPORT_SYMBOL vmlinux 0xd4ba4c6b neigh_resolve_output EXPORT_SYMBOL vmlinux 0xd4bb4a82 inet6addr_validator_notifier_call_chain -EXPORT_SYMBOL vmlinux 0xd4c3a11b dev_mc_init -EXPORT_SYMBOL vmlinux 0xd4f1cfed dma_unmap_page_attrs +EXPORT_SYMBOL vmlinux 0xd4cb5091 padata_do_parallel +EXPORT_SYMBOL vmlinux 0xd4dc9bb5 blk_mq_delay_kick_requeue_list +EXPORT_SYMBOL vmlinux 0xd4e6242f try_to_free_buffers +EXPORT_SYMBOL vmlinux 0xd4f7dc50 __mark_inode_dirty EXPORT_SYMBOL vmlinux 0xd4fa5a87 __kfifo_dma_out_prepare -EXPORT_SYMBOL vmlinux 0xd4ff793d dev_mc_add_excl -EXPORT_SYMBOL vmlinux 0xd511becd proc_mkdir_mode +EXPORT_SYMBOL vmlinux 0xd525bb05 sb_set_blocksize EXPORT_SYMBOL vmlinux 0xd5263820 mb_cache_destroy -EXPORT_SYMBOL vmlinux 0xd527d4d5 ip6_xmit -EXPORT_SYMBOL vmlinux 0xd531f4fa blk_mq_alloc_tag_set +EXPORT_SYMBOL vmlinux 0xd5273b7a pskb_expand_head +EXPORT_SYMBOL vmlinux 0xd5306023 cdev_init +EXPORT_SYMBOL vmlinux 0xd534c080 poll_freewait +EXPORT_SYMBOL vmlinux 0xd54f6a5d sget_fc EXPORT_SYMBOL vmlinux 0xd566933c up -EXPORT_SYMBOL vmlinux 0xd56fe503 super_setup_bdi EXPORT_SYMBOL vmlinux 0xd58e70dd net_rand_noise -EXPORT_SYMBOL vmlinux 0xd5a7d5dc netdev_next_lower_dev_rcu +EXPORT_SYMBOL vmlinux 0xd5927fa4 sk_stream_wait_connect +EXPORT_SYMBOL vmlinux 0xd5abb1d4 wake_up_process EXPORT_SYMBOL vmlinux 0xd5b3d0d5 xxh64_copy_state -EXPORT_SYMBOL vmlinux 0xd5d43626 tty_port_raise_dtr_rts EXPORT_SYMBOL vmlinux 0xd5e90454 ap_domain_index -EXPORT_SYMBOL vmlinux 0xd5eb539a ram_aops -EXPORT_SYMBOL vmlinux 0xd5f37be6 unregister_quota_format +EXPORT_SYMBOL vmlinux 0xd5f84efb d_alloc_anon +EXPORT_SYMBOL vmlinux 0xd5ff2b98 mnt_drop_write_file EXPORT_SYMBOL vmlinux 0xd60736ec gf128mul_free_64k -EXPORT_SYMBOL vmlinux 0xd607c811 xfrm_unregister_type -EXPORT_SYMBOL vmlinux 0xd6219e01 dev_addr_del +EXPORT_SYMBOL vmlinux 0xd60c34e6 capable_wrt_inode_uidgid +EXPORT_SYMBOL vmlinux 0xd61b76a3 locks_copy_conflock EXPORT_SYMBOL vmlinux 0xd64426b5 __traceiter_s390_cio_hsch +EXPORT_SYMBOL vmlinux 0xd64fbb2e nf_ct_get_tuple_skb +EXPORT_SYMBOL vmlinux 0xd66581cb __traceiter_mmap_lock_released +EXPORT_SYMBOL vmlinux 0xd66605f9 con_is_bound EXPORT_SYMBOL vmlinux 0xd666a588 smp_ctl_clear_bit -EXPORT_SYMBOL vmlinux 0xd681b86f seg6_hmac_net_init +EXPORT_SYMBOL vmlinux 0xd66eb5b1 pci_scan_single_device +EXPORT_SYMBOL vmlinux 0xd67a4438 submit_bh EXPORT_SYMBOL vmlinux 0xd688716b dm_kcopyd_client_create EXPORT_SYMBOL vmlinux 0xd68c5a1f adjust_resource EXPORT_SYMBOL vmlinux 0xd69b3c98 utf8_strncasecmp -EXPORT_SYMBOL vmlinux 0xd6b4bdb3 tcf_qevent_validate_change -EXPORT_SYMBOL vmlinux 0xd6d4d804 inet6_unregister_protosw -EXPORT_SYMBOL vmlinux 0xd6de1cb8 nexthop_bucket_set_hw_flags +EXPORT_SYMBOL vmlinux 0xd6a527ae __blk_alloc_disk +EXPORT_SYMBOL vmlinux 0xd6b4a63f clear_page_dirty_for_io +EXPORT_SYMBOL vmlinux 0xd6bbd103 debugfs_create_automount +EXPORT_SYMBOL vmlinux 0xd6e1b56a input_get_poll_interval +EXPORT_SYMBOL vmlinux 0xd6ea1b38 proc_mkdir EXPORT_SYMBOL vmlinux 0xd6eaaea1 full_name_hash EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc -EXPORT_SYMBOL vmlinux 0xd6f14c63 truncate_inode_pages_final +EXPORT_SYMBOL vmlinux 0xd6f463b0 clear_inode EXPORT_SYMBOL vmlinux 0xd6fde043 is_module_sig_enforced EXPORT_SYMBOL vmlinux 0xd70d35a1 gf128mul_4k_bbe -EXPORT_SYMBOL vmlinux 0xd71634b8 __scsi_iterate_devices -EXPORT_SYMBOL vmlinux 0xd719aa2c inode_nohighmem -EXPORT_SYMBOL vmlinux 0xd73fd1f8 __ip_queue_xmit EXPORT_SYMBOL vmlinux 0xd74d6864 raw3270_request_add_data -EXPORT_SYMBOL vmlinux 0xd76068b8 sdev_disable_disk_events -EXPORT_SYMBOL vmlinux 0xd7729eaa inet_add_offload -EXPORT_SYMBOL vmlinux 0xd77a4947 pagevec_lookup_range -EXPORT_SYMBOL vmlinux 0xd795ddca register_netdevice -EXPORT_SYMBOL vmlinux 0xd7c98a76 skb_checksum_help +EXPORT_SYMBOL vmlinux 0xd7524180 __invalidate_device +EXPORT_SYMBOL vmlinux 0xd75267c9 xfrm_input_register_afinfo +EXPORT_SYMBOL vmlinux 0xd7628c3a iget5_locked +EXPORT_SYMBOL vmlinux 0xd796588e blkdev_issue_flush +EXPORT_SYMBOL vmlinux 0xd7b0d3d1 simple_dir_inode_operations +EXPORT_SYMBOL vmlinux 0xd7c564f3 __tcp_md5_do_lookup EXPORT_SYMBOL vmlinux 0xd7d280ad irq_poll_complete -EXPORT_SYMBOL vmlinux 0xd7dc68a1 vlan_filter_drop_vids -EXPORT_SYMBOL vmlinux 0xd7de13dc netdev_name_node_alt_create EXPORT_SYMBOL vmlinux 0xd7e1c5e1 kstrtobool_from_user EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll EXPORT_SYMBOL vmlinux 0xd7ea7094 nf_unregister_queue_handler -EXPORT_SYMBOL vmlinux 0xd80acaf4 sync_inode_metadata +EXPORT_SYMBOL vmlinux 0xd7eb1a29 jbd2_journal_inode_ranged_wait +EXPORT_SYMBOL vmlinux 0xd7ec268f fs_param_is_u32 EXPORT_SYMBOL vmlinux 0xd827fff3 memremap -EXPORT_SYMBOL vmlinux 0xd829e82a qdisc_create_dflt -EXPORT_SYMBOL vmlinux 0xd8315d0a pci_dev_get -EXPORT_SYMBOL vmlinux 0xd83539f1 netdev_lower_state_changed -EXPORT_SYMBOL vmlinux 0xd8366b8c __scsi_device_lookup +EXPORT_SYMBOL vmlinux 0xd82fc7f0 iov_iter_zero EXPORT_SYMBOL vmlinux 0xd83849e2 ZSTD_getDictID_fromFrame -EXPORT_SYMBOL vmlinux 0xd839ebb2 __breadahead_gfp -EXPORT_SYMBOL vmlinux 0xd8469c59 sock_common_recvmsg -EXPORT_SYMBOL vmlinux 0xd8694941 genlmsg_multicast_allns -EXPORT_SYMBOL vmlinux 0xd87f416c dmam_free_coherent -EXPORT_SYMBOL vmlinux 0xd885109e inet_getname -EXPORT_SYMBOL vmlinux 0xd88a2162 flush_signals +EXPORT_SYMBOL vmlinux 0xd850810f nf_hook_slow +EXPORT_SYMBOL vmlinux 0xd866a803 dev_printk_emit +EXPORT_SYMBOL vmlinux 0xd87306ce pci_free_irq EXPORT_SYMBOL vmlinux 0xd88dbbf4 refcount_dec_and_lock -EXPORT_SYMBOL vmlinux 0xd89d5535 dev_get_by_index EXPORT_SYMBOL vmlinux 0xd89da37f movable_zone +EXPORT_SYMBOL vmlinux 0xd8a04f2e iterate_supers_type EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format +EXPORT_SYMBOL vmlinux 0xd8b1a905 flow_block_cb_decref EXPORT_SYMBOL vmlinux 0xd8b61304 get_default_font -EXPORT_SYMBOL vmlinux 0xd8fa3c63 tso_start +EXPORT_SYMBOL vmlinux 0xd8bc6417 end_page_writeback +EXPORT_SYMBOL vmlinux 0xd8c3051c t10_pi_type1_ip +EXPORT_SYMBOL vmlinux 0xd8d8ebc8 sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0xd8fba30e flow_rule_match_meta EXPORT_SYMBOL vmlinux 0xd8fcda72 cpcmd EXPORT_SYMBOL vmlinux 0xd8fea321 __xa_alloc_cyclic -EXPORT_SYMBOL vmlinux 0xd9133e38 netdev_alert -EXPORT_SYMBOL vmlinux 0xd92a3d64 scmd_printk -EXPORT_SYMBOL vmlinux 0xd92d615d sock_set_reuseport -EXPORT_SYMBOL vmlinux 0xd93743f8 seq_read_iter +EXPORT_SYMBOL vmlinux 0xd92c97f4 sock_dequeue_err_skb +EXPORT_SYMBOL vmlinux 0xd933aca7 remove_proc_subtree +EXPORT_SYMBOL vmlinux 0xd93bbb30 skb_ext_add EXPORT_SYMBOL vmlinux 0xd93dd3c3 proc_dointvec EXPORT_SYMBOL vmlinux 0xd9454bbc raw3270_reset -EXPORT_SYMBOL vmlinux 0xd9511b5f pci_find_bus -EXPORT_SYMBOL vmlinux 0xd956f2f1 pagecache_isize_extended -EXPORT_SYMBOL vmlinux 0xd95aa96a nf_ct_get_tuple_skb +EXPORT_SYMBOL vmlinux 0xd9620b09 proc_set_size +EXPORT_SYMBOL vmlinux 0xd967e685 mdiobus_setup_mdiodev_from_board_info EXPORT_SYMBOL vmlinux 0xd96de8cb __sysfs_match_string +EXPORT_SYMBOL vmlinux 0xd977d433 get_user_pages_remote EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages -EXPORT_SYMBOL vmlinux 0xd98a3de3 xfrm_policy_alloc -EXPORT_SYMBOL vmlinux 0xd98a8481 jbd2_journal_init_inode +EXPORT_SYMBOL vmlinux 0xd9a353eb netdev_set_sb_channel +EXPORT_SYMBOL vmlinux 0xd9ad1ffc dev_get_flags +EXPORT_SYMBOL vmlinux 0xd9b0dcb5 ip_generic_getfrag EXPORT_SYMBOL vmlinux 0xd9b3f97d console_devno EXPORT_SYMBOL vmlinux 0xd9b8eaea __SCK__tp_func_dma_fence_signaled -EXPORT_SYMBOL vmlinux 0xd9cb323b skb_set_owner_w +EXPORT_SYMBOL vmlinux 0xd9ce6555 netif_stacked_transfer_operstate EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler EXPORT_SYMBOL vmlinux 0xd9d952d1 crypto_aes_sbox -EXPORT_SYMBOL vmlinux 0xda33a794 seq_write -EXPORT_SYMBOL vmlinux 0xda3a1ef3 pci_bus_set_ops +EXPORT_SYMBOL vmlinux 0xda1429f8 file_remove_privs +EXPORT_SYMBOL vmlinux 0xda24358f security_inode_listsecurity +EXPORT_SYMBOL vmlinux 0xda26b9dd __post_watch_notification EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open -EXPORT_SYMBOL vmlinux 0xda509aaf netdev_adjacent_change_commit -EXPORT_SYMBOL vmlinux 0xda6d37ab tcf_action_check_ctrlact +EXPORT_SYMBOL vmlinux 0xda4e81c1 tcp_v4_do_rcv EXPORT_SYMBOL vmlinux 0xda6fa05c _atomic_dec_and_lock_irqsave EXPORT_SYMBOL vmlinux 0xda72a7ec ZSTD_nextInputType -EXPORT_SYMBOL vmlinux 0xda7451a1 fs_param_is_u32 +EXPORT_SYMBOL vmlinux 0xda88bfe5 lookup_positive_unlocked EXPORT_SYMBOL vmlinux 0xda89ea3b ip_idents_reserve -EXPORT_SYMBOL vmlinux 0xda96107e sk_mc_loop +EXPORT_SYMBOL vmlinux 0xdab08928 devm_memremap +EXPORT_SYMBOL vmlinux 0xdabebaa2 rtnl_create_link EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region +EXPORT_SYMBOL vmlinux 0xdad9a229 pci_enable_atomic_ops_to_root +EXPORT_SYMBOL vmlinux 0xdaddc0e9 freeze_super +EXPORT_SYMBOL vmlinux 0xdade27d6 param_get_invbool EXPORT_SYMBOL vmlinux 0xdae162cb string_unescape -EXPORT_SYMBOL vmlinux 0xdb213745 ipv6_dev_mc_dec -EXPORT_SYMBOL vmlinux 0xdb73a3ce dput +EXPORT_SYMBOL vmlinux 0xdaf68237 ip_frag_next +EXPORT_SYMBOL vmlinux 0xdb2dafc1 generic_file_mmap +EXPORT_SYMBOL vmlinux 0xdb3bc3bd pfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0xdb3ece84 bdi_register +EXPORT_SYMBOL vmlinux 0xdb5c99fa component_match_add_release +EXPORT_SYMBOL vmlinux 0xdb6a46a8 generic_file_read_iter EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free -EXPORT_SYMBOL vmlinux 0xdb86eaf4 __alloc_skb -EXPORT_SYMBOL vmlinux 0xdb94be70 sk_alloc -EXPORT_SYMBOL vmlinux 0xdba84293 register_qdisc -EXPORT_SYMBOL vmlinux 0xdbde62b8 icmp_ndo_send +EXPORT_SYMBOL vmlinux 0xdb85f003 nosteal_pipe_buf_ops +EXPORT_SYMBOL vmlinux 0xdb93549e xfrm_input +EXPORT_SYMBOL vmlinux 0xdbaf74f2 mntget +EXPORT_SYMBOL vmlinux 0xdbc1565d simple_rename +EXPORT_SYMBOL vmlinux 0xdbc3696a mpage_writepages +EXPORT_SYMBOL vmlinux 0xdbc4fd4d __starget_for_each_device +EXPORT_SYMBOL vmlinux 0xdbd3d376 _dev_printk EXPORT_SYMBOL vmlinux 0xdbdf6c92 ioport_resource -EXPORT_SYMBOL vmlinux 0xdbed2d08 dcb_setapp +EXPORT_SYMBOL vmlinux 0xdbe25e82 alloc_buffer_head +EXPORT_SYMBOL vmlinux 0xdbf3a3d0 unpin_user_pages_dirty_lock +EXPORT_SYMBOL vmlinux 0xdbf99896 sk_common_release +EXPORT_SYMBOL vmlinux 0xdc0dc666 dev_driver_string EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems -EXPORT_SYMBOL vmlinux 0xdc241881 xsk_uses_need_wakeup -EXPORT_SYMBOL vmlinux 0xdc334e6c km_report EXPORT_SYMBOL vmlinux 0xdc3fcbc9 __sw_hweight8 EXPORT_SYMBOL vmlinux 0xdc49c198 reciprocal_value_adv -EXPORT_SYMBOL vmlinux 0xdc4f9f68 input_mt_report_pointer_emulation -EXPORT_SYMBOL vmlinux 0xdc966732 mr_vif_seq_next +EXPORT_SYMBOL vmlinux 0xdc4c3dd1 register_md_cluster_operations +EXPORT_SYMBOL vmlinux 0xdc4e937f pci_map_rom +EXPORT_SYMBOL vmlinux 0xdc5a6fca path_is_under +EXPORT_SYMBOL vmlinux 0xdc83a3cb skb_vlan_push +EXPORT_SYMBOL vmlinux 0xdc945def iterate_fd EXPORT_SYMBOL vmlinux 0xdc96f398 __SCK__tp_func_s390_cio_csch -EXPORT_SYMBOL vmlinux 0xdcaa6d33 netif_tx_wake_queue -EXPORT_SYMBOL vmlinux 0xdcb94b01 __check_sticky -EXPORT_SYMBOL vmlinux 0xdcce84f5 fs_context_for_reconfigure -EXPORT_SYMBOL vmlinux 0xdce116e4 trace_raw_output_prep -EXPORT_SYMBOL vmlinux 0xdce42709 dqget -EXPORT_SYMBOL vmlinux 0xdce6e353 bpf_prog_get_type_path -EXPORT_SYMBOL vmlinux 0xdd04bac2 generic_pipe_buf_get +EXPORT_SYMBOL vmlinux 0xdc9a117e scsi_device_set_state +EXPORT_SYMBOL vmlinux 0xdcbd0d9d inet_del_protocol +EXPORT_SYMBOL vmlinux 0xdcbeae16 input_set_capability +EXPORT_SYMBOL vmlinux 0xdccbade9 tcp_syn_ack_timeout +EXPORT_SYMBOL vmlinux 0xdcd23bb4 skb_mac_gso_segment +EXPORT_SYMBOL vmlinux 0xdd05f0b9 open_with_fake_path EXPORT_SYMBOL vmlinux 0xdd2c169b mb_cache_create -EXPORT_SYMBOL vmlinux 0xdd39e059 sched_autogroup_detach -EXPORT_SYMBOL vmlinux 0xdd421516 gro_find_complete_by_type -EXPORT_SYMBOL vmlinux 0xdd63d0a5 nf_log_set -EXPORT_SYMBOL vmlinux 0xdd73427b blk_put_queue -EXPORT_SYMBOL vmlinux 0xdd7b285e xfrm_policy_delete +EXPORT_SYMBOL vmlinux 0xdd3d5c19 compat_ptr_ioctl +EXPORT_SYMBOL vmlinux 0xdd7a1003 bh_uptodate_or_lock EXPORT_SYMBOL vmlinux 0xdd849d51 scsi_get_sense_info_fld +EXPORT_SYMBOL vmlinux 0xdd9f3b7c tcp_v4_mtu_reduced +EXPORT_SYMBOL vmlinux 0xdda35975 pci_wake_from_d3 +EXPORT_SYMBOL vmlinux 0xdda9678c ipv6_sock_mc_drop EXPORT_SYMBOL vmlinux 0xddafdd31 vm_node_stat -EXPORT_SYMBOL vmlinux 0xddbecdf4 blk_mq_stop_hw_queues -EXPORT_SYMBOL vmlinux 0xddd52ee4 vfs_dup_fs_context +EXPORT_SYMBOL vmlinux 0xddb133be path_is_mountpoint +EXPORT_SYMBOL vmlinux 0xddb30b99 mr_mfc_find_any +EXPORT_SYMBOL vmlinux 0xddb90383 inet_frag_find +EXPORT_SYMBOL vmlinux 0xddc69cc3 __inc_node_page_state +EXPORT_SYMBOL vmlinux 0xddd37aa6 ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0xddfe45f0 configfs_undepend_item EXPORT_SYMBOL vmlinux 0xde0bdcff memset +EXPORT_SYMBOL vmlinux 0xde0ce85d truncate_inode_pages_final +EXPORT_SYMBOL vmlinux 0xde0eeb6f scsi_remove_host EXPORT_SYMBOL vmlinux 0xde1371ce radix_tree_tagged -EXPORT_SYMBOL vmlinux 0xde17773d follow_down -EXPORT_SYMBOL vmlinux 0xde2db152 bio_integrity_prep -EXPORT_SYMBOL vmlinux 0xde359ef8 nexthop_set_hw_flags -EXPORT_SYMBOL vmlinux 0xde3c481c dump_align +EXPORT_SYMBOL vmlinux 0xde1529e7 param_ops_bool +EXPORT_SYMBOL vmlinux 0xde17ca69 __frontswap_test +EXPORT_SYMBOL vmlinux 0xde19af6b netdev_lower_dev_get_private +EXPORT_SYMBOL vmlinux 0xde214401 __brelse +EXPORT_SYMBOL vmlinux 0xde39c895 inet_csk_reset_keepalive_timer +EXPORT_SYMBOL vmlinux 0xde4077c3 pci_bus_read_dev_vendor_id EXPORT_SYMBOL vmlinux 0xde4d4ace dim_calc_stats -EXPORT_SYMBOL vmlinux 0xde50f13f blk_queue_max_segment_size -EXPORT_SYMBOL vmlinux 0xde6d7380 _dev_err -EXPORT_SYMBOL vmlinux 0xde7b0eee fd_install +EXPORT_SYMBOL vmlinux 0xde57706a md_error +EXPORT_SYMBOL vmlinux 0xde6424d2 arp_xmit +EXPORT_SYMBOL vmlinux 0xde84dfd7 nobh_write_begin EXPORT_SYMBOL vmlinux 0xde8a415c xor_block_xc -EXPORT_SYMBOL vmlinux 0xde950b9c pci_release_selected_regions -EXPORT_SYMBOL vmlinux 0xdea1530a tty_port_hangup +EXPORT_SYMBOL vmlinux 0xde907edc md_bitmap_startwrite +EXPORT_SYMBOL vmlinux 0xde9ddf1c tcp_mtup_init +EXPORT_SYMBOL vmlinux 0xdea4020b iov_iter_xarray +EXPORT_SYMBOL vmlinux 0xdeb00ab5 sock_enable_timestamps +EXPORT_SYMBOL vmlinux 0xdeb02670 jbd2_journal_free_reserved EXPORT_SYMBOL vmlinux 0xdebb8a67 gen_pool_dma_alloc_align -EXPORT_SYMBOL vmlinux 0xdec3fd77 __ip_dev_find +EXPORT_SYMBOL vmlinux 0xdecb80ed submit_bio_noacct EXPORT_SYMBOL vmlinux 0xded39a6b gen_kill_estimator EXPORT_SYMBOL vmlinux 0xdeda2ae2 tcw_get_data -EXPORT_SYMBOL vmlinux 0xdeea8950 iov_iter_npages -EXPORT_SYMBOL vmlinux 0xdeee7345 unpin_user_pages EXPORT_SYMBOL vmlinux 0xdef7c893 fb_match_mode EXPORT_SYMBOL vmlinux 0xdef84f9f radix_tree_lookup -EXPORT_SYMBOL vmlinux 0xdf1884d2 tcp_fastopen_defer_connect +EXPORT_SYMBOL vmlinux 0xdf09c42c inode_newsize_ok +EXPORT_SYMBOL vmlinux 0xdf0cad5b remove_conflicting_pci_framebuffers +EXPORT_SYMBOL vmlinux 0xdf19377f fwnode_graph_parse_endpoint EXPORT_SYMBOL vmlinux 0xdf2c2742 rb_last -EXPORT_SYMBOL vmlinux 0xdf360be9 netif_set_xps_queue +EXPORT_SYMBOL vmlinux 0xdf30705d release_sock EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier -EXPORT_SYMBOL vmlinux 0xdf5b500a disk_start_io_acct +EXPORT_SYMBOL vmlinux 0xdf638bab seg6_hmac_info_del EXPORT_SYMBOL vmlinux 0xdf6d476e __percpu_counter_init -EXPORT_SYMBOL vmlinux 0xdf7b3c90 scsi_is_target_device -EXPORT_SYMBOL vmlinux 0xdf8024c5 input_set_max_poll_interval +EXPORT_SYMBOL vmlinux 0xdf74f4e1 unregister_fib_notifier EXPORT_SYMBOL vmlinux 0xdf8c695a __ndelay -EXPORT_SYMBOL vmlinux 0xdf9127ce skb_page_frag_refill EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid EXPORT_SYMBOL vmlinux 0xdf93b9d8 timespec64_to_jiffies +EXPORT_SYMBOL vmlinux 0xdf9d6110 validate_slab_cache EXPORT_SYMBOL vmlinux 0xdfa9acca smp_cpu_mtid -EXPORT_SYMBOL vmlinux 0xdfac50a2 pin_user_pages_locked EXPORT_SYMBOL vmlinux 0xdfcc992c current_work +EXPORT_SYMBOL vmlinux 0xdfcda64e page_get_link EXPORT_SYMBOL vmlinux 0xdfdfa9e7 utf8nfdi -EXPORT_SYMBOL vmlinux 0xdfe3b056 netif_device_attach +EXPORT_SYMBOL vmlinux 0xdff33a9f kernel_recvmsg +EXPORT_SYMBOL vmlinux 0xdff9bd64 unregister_tcf_proto_ops EXPORT_SYMBOL vmlinux 0xdffc80fc vesa_modes -EXPORT_SYMBOL vmlinux 0xe010add5 ccw_device_resume -EXPORT_SYMBOL vmlinux 0xe01cb66c pin_user_pages_unlocked -EXPORT_SYMBOL vmlinux 0xe01e490d module_layout -EXPORT_SYMBOL vmlinux 0xe03bbd52 sock_no_bind -EXPORT_SYMBOL vmlinux 0xe03bc23e inet_proto_csum_replace_by_diff +EXPORT_SYMBOL vmlinux 0xe00041b1 remap_pfn_range +EXPORT_SYMBOL vmlinux 0xe00b08b6 xfrm_policy_byid +EXPORT_SYMBOL vmlinux 0xe01c95be pci_write_vpd +EXPORT_SYMBOL vmlinux 0xe0211e74 brioctl_set +EXPORT_SYMBOL vmlinux 0xe02283a3 make_kgid EXPORT_SYMBOL vmlinux 0xe0419ac4 kstrtos16 -EXPORT_SYMBOL vmlinux 0xe05df2d8 xp_dma_unmap +EXPORT_SYMBOL vmlinux 0xe04e9ff5 tcf_exts_dump_stats +EXPORT_SYMBOL vmlinux 0xe053526b submit_bio_wait +EXPORT_SYMBOL vmlinux 0xe060842c unload_nls EXPORT_SYMBOL vmlinux 0xe068a91c gen_pool_set_algo -EXPORT_SYMBOL vmlinux 0xe077bb69 netdev_bind_sb_channel_queue -EXPORT_SYMBOL vmlinux 0xe07f79d8 xfrm_dev_state_flush EXPORT_SYMBOL vmlinux 0xe080e8f0 set_current_groups +EXPORT_SYMBOL vmlinux 0xe08a20ae seq_bprintf EXPORT_SYMBOL vmlinux 0xe091c977 list_sort -EXPORT_SYMBOL vmlinux 0xe0a76354 param_ops_ulong +EXPORT_SYMBOL vmlinux 0xe0935953 __skb_warn_lro_forwarding EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free EXPORT_SYMBOL vmlinux 0xe0bc4fb2 simple_write_to_buffer -EXPORT_SYMBOL vmlinux 0xe0fa4af7 tty_register_driver +EXPORT_SYMBOL vmlinux 0xe0bdbaad pagecache_isize_extended +EXPORT_SYMBOL vmlinux 0xe0d6b26a dquot_alloc_inode +EXPORT_SYMBOL vmlinux 0xe0f3fceb pagevec_lookup_range +EXPORT_SYMBOL vmlinux 0xe0f591a0 crypto_sha1_finup EXPORT_SYMBOL vmlinux 0xe10595c9 __tracepoint_s390_cio_tpi +EXPORT_SYMBOL vmlinux 0xe105c065 dquot_alloc +EXPORT_SYMBOL vmlinux 0xe11ae2d6 tty_port_open EXPORT_SYMBOL vmlinux 0xe123f3d9 dma_fence_release +EXPORT_SYMBOL vmlinux 0xe12c31ca ip_queue_xmit +EXPORT_SYMBOL vmlinux 0xe13216c8 iov_iter_get_pages EXPORT_SYMBOL vmlinux 0xe13af26f sclp_pci_deconfigure -EXPORT_SYMBOL vmlinux 0xe148c9e2 __put_user_ns -EXPORT_SYMBOL vmlinux 0xe15323fa vfs_readlink -EXPORT_SYMBOL vmlinux 0xe1569392 inet6_add_protocol +EXPORT_SYMBOL vmlinux 0xe1476e56 __fib6_flush_trees +EXPORT_SYMBOL vmlinux 0xe14874e6 generic_file_open EXPORT_SYMBOL vmlinux 0xe1580129 wait_for_completion_io_timeout -EXPORT_SYMBOL vmlinux 0xe17c0734 generic_splice_sendpage +EXPORT_SYMBOL vmlinux 0xe16b12b0 __breadahead_gfp +EXPORT_SYMBOL vmlinux 0xe174b832 tcf_chain_get_by_act +EXPORT_SYMBOL vmlinux 0xe176f0c0 find_get_pages_contig EXPORT_SYMBOL vmlinux 0xe1a4f16a secure_ipv6_port_ephemeral -EXPORT_SYMBOL vmlinux 0xe1b62871 mod_node_page_state -EXPORT_SYMBOL vmlinux 0xe1d89ca2 filemap_check_errors +EXPORT_SYMBOL vmlinux 0xe1acb973 blk_mq_run_hw_queue +EXPORT_SYMBOL vmlinux 0xe1b7203a ip_do_fragment +EXPORT_SYMBOL vmlinux 0xe1d1df9c d_delete +EXPORT_SYMBOL vmlinux 0xe1d44899 flow_rule_match_enc_ipv4_addrs EXPORT_SYMBOL vmlinux 0xe1dcf64a audit_log_format -EXPORT_SYMBOL vmlinux 0xe2085f75 __dynamic_dev_dbg -EXPORT_SYMBOL vmlinux 0xe220d546 console_start -EXPORT_SYMBOL vmlinux 0xe22bb551 free_inode_nonrcu -EXPORT_SYMBOL vmlinux 0xe2302b69 sk_send_sigurg -EXPORT_SYMBOL vmlinux 0xe239d212 flow_rule_match_ipv4_addrs -EXPORT_SYMBOL vmlinux 0xe23df967 fixed_size_llseek +EXPORT_SYMBOL vmlinux 0xe221806f set_pgste_bits +EXPORT_SYMBOL vmlinux 0xe2410fc7 __nlmsg_put +EXPORT_SYMBOL vmlinux 0xe24a4800 ip6tun_encaps EXPORT_SYMBOL vmlinux 0xe254f4f8 xa_get_mark +EXPORT_SYMBOL vmlinux 0xe25f90aa jbd2_journal_force_commit +EXPORT_SYMBOL vmlinux 0xe263803b sock_i_ino EXPORT_SYMBOL vmlinux 0xe273d75d alloc_cpu_rmap EXPORT_SYMBOL vmlinux 0xe2740e56 ZSTD_getFrameContentSize +EXPORT_SYMBOL vmlinux 0xe27c061f param_ops_charp EXPORT_SYMBOL vmlinux 0xe27d87a4 gen_pool_first_fit -EXPORT_SYMBOL vmlinux 0xe281f9ff dquot_transfer EXPORT_SYMBOL vmlinux 0xe28da80b tccb_add_dcw EXPORT_SYMBOL vmlinux 0xe29d2d02 __genradix_ptr_alloc -EXPORT_SYMBOL vmlinux 0xe2b04113 xsk_set_tx_need_wakeup -EXPORT_SYMBOL vmlinux 0xe2c5f9db init_special_inode +EXPORT_SYMBOL vmlinux 0xe2a89160 ip_route_me_harder +EXPORT_SYMBOL vmlinux 0xe2aa3723 __cleancache_init_shared_fs +EXPORT_SYMBOL vmlinux 0xe2aafd65 clean_bdev_aliases +EXPORT_SYMBOL vmlinux 0xe2ab9b8f nf_register_sockopt +EXPORT_SYMBOL vmlinux 0xe2ba4529 proc_create_mount_point EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp -EXPORT_SYMBOL vmlinux 0xe2f24e68 devm_memremap -EXPORT_SYMBOL vmlinux 0xe307d7d4 tcf_block_get_ext +EXPORT_SYMBOL vmlinux 0xe2e73429 pcix_get_max_mmrbc +EXPORT_SYMBOL vmlinux 0xe2faa4e0 sock_alloc EXPORT_SYMBOL vmlinux 0xe30be315 hdmi_vendor_infoframe_pack EXPORT_SYMBOL vmlinux 0xe32ab4d8 xxh64_digest -EXPORT_SYMBOL vmlinux 0xe3322cff __module_get +EXPORT_SYMBOL vmlinux 0xe33ac6ee sk_page_frag_refill EXPORT_SYMBOL vmlinux 0xe35fb609 kmemdup +EXPORT_SYMBOL vmlinux 0xe36295b2 skb_ensure_writable +EXPORT_SYMBOL vmlinux 0xe371872e xfrm_spd_getinfo +EXPORT_SYMBOL vmlinux 0xe3906060 skb_flow_dissect_hash EXPORT_SYMBOL vmlinux 0xe39b2ea5 sha256 -EXPORT_SYMBOL vmlinux 0xe3d4fa5b pcim_set_mwi +EXPORT_SYMBOL vmlinux 0xe3a19f24 pci_clear_mwi +EXPORT_SYMBOL vmlinux 0xe3a78a12 ccw_device_tm_intrg +EXPORT_SYMBOL vmlinux 0xe3b0b59a flow_rule_match_ct +EXPORT_SYMBOL vmlinux 0xe3b1bdd9 md_write_inc +EXPORT_SYMBOL vmlinux 0xe3b3d39d fs_param_is_string +EXPORT_SYMBOL vmlinux 0xe3cb1443 tcp_mmap EXPORT_SYMBOL vmlinux 0xe3ec2f2b alloc_chrdev_region -EXPORT_SYMBOL vmlinux 0xe3fd8cfe seq_lseek +EXPORT_SYMBOL vmlinux 0xe3f045eb blk_queue_virt_boundary EXPORT_SYMBOL vmlinux 0xe3feba56 tasklet_unlock_spin_wait EXPORT_SYMBOL vmlinux 0xe3ff2c41 get_random_u64 -EXPORT_SYMBOL vmlinux 0xe409f8e2 pci_release_regions -EXPORT_SYMBOL vmlinux 0xe4186f6a mr_fill_mroute -EXPORT_SYMBOL vmlinux 0xe41e610b jbd2_journal_get_create_access +EXPORT_SYMBOL vmlinux 0xe4011d0f pci_save_state +EXPORT_SYMBOL vmlinux 0xe40bd3ba register_mii_timestamper +EXPORT_SYMBOL vmlinux 0xe412c82d bio_chain +EXPORT_SYMBOL vmlinux 0xe4143f4f dev_mc_sync +EXPORT_SYMBOL vmlinux 0xe41e289f rdmacg_uncharge +EXPORT_SYMBOL vmlinux 0xe4248d24 simple_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0xe4280590 pci_reenable_device +EXPORT_SYMBOL vmlinux 0xe42da073 napi_get_frags EXPORT_SYMBOL vmlinux 0xe4329092 __ctzdi2 +EXPORT_SYMBOL vmlinux 0xe436b14d kernel_bind EXPORT_SYMBOL vmlinux 0xe43d9ab2 slash_name -EXPORT_SYMBOL vmlinux 0xe45cc10e ipv6_skip_exthdr -EXPORT_SYMBOL vmlinux 0xe45ded60 param_set_bool -EXPORT_SYMBOL vmlinux 0xe4652327 tcp_v4_connect -EXPORT_SYMBOL vmlinux 0xe4887034 ccw_device_get_mdc -EXPORT_SYMBOL vmlinux 0xe4997d2c tty_driver_flush_buffer -EXPORT_SYMBOL vmlinux 0xe4ac3465 mpage_writepages -EXPORT_SYMBOL vmlinux 0xe4bf6eee __dquot_free_space +EXPORT_SYMBOL vmlinux 0xe46adafc fiemap_prep +EXPORT_SYMBOL vmlinux 0xe478b912 netdev_has_any_upper_dev +EXPORT_SYMBOL vmlinux 0xe487a9b1 __xfrm_init_state +EXPORT_SYMBOL vmlinux 0xe4914709 fasync_helper +EXPORT_SYMBOL vmlinux 0xe4b67a29 dev_change_proto_down +EXPORT_SYMBOL vmlinux 0xe4d9a3e7 dquot_quota_sync EXPORT_SYMBOL vmlinux 0xe4df9aec hdmi_drm_infoframe_unpack_only -EXPORT_SYMBOL vmlinux 0xe4ea76d6 blk_mq_delay_kick_requeue_list -EXPORT_SYMBOL vmlinux 0xe4f2b009 neigh_seq_next +EXPORT_SYMBOL vmlinux 0xe4f49081 dquot_operations +EXPORT_SYMBOL vmlinux 0xe4fd87da init_pseudo EXPORT_SYMBOL vmlinux 0xe5094832 page_table_allocate_pgste EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq EXPORT_SYMBOL vmlinux 0xe524e3e2 bcmp -EXPORT_SYMBOL vmlinux 0xe52c1329 skb_copy_and_csum_dev -EXPORT_SYMBOL vmlinux 0xe52d0d45 xfrm_register_type -EXPORT_SYMBOL vmlinux 0xe5319bf9 __ip_select_ident -EXPORT_SYMBOL vmlinux 0xe532111b migrate_page +EXPORT_SYMBOL vmlinux 0xe548b66b sock_diag_put_filterinfo +EXPORT_SYMBOL vmlinux 0xe54f4788 generic_block_bmap EXPORT_SYMBOL vmlinux 0xe555c7ab radix_tree_gang_lookup_tag EXPORT_SYMBOL vmlinux 0xe5652e83 sie64a +EXPORT_SYMBOL vmlinux 0xe56904e1 add_watch_to_object EXPORT_SYMBOL vmlinux 0xe56b0d0f stsch -EXPORT_SYMBOL vmlinux 0xe56cdf1c ccw_device_tm_start_key -EXPORT_SYMBOL vmlinux 0xe570f312 file_write_and_wait_range -EXPORT_SYMBOL vmlinux 0xe578196f pci_fixup_cardbus -EXPORT_SYMBOL vmlinux 0xe57a7a01 sock_set_keepalive EXPORT_SYMBOL vmlinux 0xe58090ca security_ib_endport_manage_subnet -EXPORT_SYMBOL vmlinux 0xe582218d __page_symlink -EXPORT_SYMBOL vmlinux 0xe58ead87 nf_log_trace EXPORT_SYMBOL vmlinux 0xe590dea3 sk_busy_loop_end +EXPORT_SYMBOL vmlinux 0xe597d870 scsi_partsize EXPORT_SYMBOL vmlinux 0xe5a56ecd idr_get_next -EXPORT_SYMBOL vmlinux 0xe5ab201d inet_frag_kill -EXPORT_SYMBOL vmlinux 0xe5abade8 inet_release +EXPORT_SYMBOL vmlinux 0xe5ac34c5 skb_split +EXPORT_SYMBOL vmlinux 0xe5be248b address_space_init_once EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen -EXPORT_SYMBOL vmlinux 0xe5d2e4b3 pci_stop_and_remove_bus_device -EXPORT_SYMBOL vmlinux 0xe5d8aaea input_handler_for_each_handle EXPORT_SYMBOL vmlinux 0xe5ea6124 ZSTD_initDStream -EXPORT_SYMBOL vmlinux 0xe5fa8d55 debug_register -EXPORT_SYMBOL vmlinux 0xe611143c jbd2_journal_set_triggers +EXPORT_SYMBOL vmlinux 0xe6085276 memory_cgrp_subsys EXPORT_SYMBOL vmlinux 0xe613a798 inet_addr_is_any -EXPORT_SYMBOL vmlinux 0xe6168413 __skb_checksum_complete EXPORT_SYMBOL vmlinux 0xe61b7f5f register_adapter_interrupt -EXPORT_SYMBOL vmlinux 0xe61d7d89 csum_and_copy_to_iter -EXPORT_SYMBOL vmlinux 0xe61dc775 skb_orphan_partial -EXPORT_SYMBOL vmlinux 0xe62157dd __xfrm_dst_lookup -EXPORT_SYMBOL vmlinux 0xe65e97f7 pcie_get_readrq -EXPORT_SYMBOL vmlinux 0xe65fbb0b dcb_ieee_getapp_prio_dscp_mask_map -EXPORT_SYMBOL vmlinux 0xe67e8825 dst_init -EXPORT_SYMBOL vmlinux 0xe6ba0095 dcb_getapp -EXPORT_SYMBOL vmlinux 0xe6cfb7a7 crypto_sha256_finup +EXPORT_SYMBOL vmlinux 0xe66af32e free_task +EXPORT_SYMBOL vmlinux 0xe66e195a ipv6_sock_mc_join +EXPORT_SYMBOL vmlinux 0xe679ddae tty_write_room +EXPORT_SYMBOL vmlinux 0xe67f8a88 pci_irq_vector +EXPORT_SYMBOL vmlinux 0xe681e590 balance_dirty_pages_ratelimited +EXPORT_SYMBOL vmlinux 0xe68d0491 qdisc_hash_del +EXPORT_SYMBOL vmlinux 0xe6ad552f jbd2_journal_start_commit +EXPORT_SYMBOL vmlinux 0xe6ae4b52 request_key_rcu +EXPORT_SYMBOL vmlinux 0xe6bb712c mini_qdisc_pair_swap EXPORT_SYMBOL vmlinux 0xe6d2458e do_trace_netlink_extack EXPORT_SYMBOL vmlinux 0xe6f1486d dql_reset -EXPORT_SYMBOL vmlinux 0xe6f70cb9 bh_uptodate_or_lock -EXPORT_SYMBOL vmlinux 0xe7019eca iucv_root -EXPORT_SYMBOL vmlinux 0xe7024a30 netif_stacked_transfer_operstate +EXPORT_SYMBOL vmlinux 0xe6f7a865 __dquot_transfer EXPORT_SYMBOL vmlinux 0xe70e184a xa_store EXPORT_SYMBOL vmlinux 0xe713a97a irq_subclass_unregister -EXPORT_SYMBOL vmlinux 0xe71ae641 xp_dma_sync_for_cpu_slow -EXPORT_SYMBOL vmlinux 0xe721f370 pci_save_state +EXPORT_SYMBOL vmlinux 0xe72486b6 udp_skb_destructor +EXPORT_SYMBOL vmlinux 0xe728eba5 tcf_register_action EXPORT_SYMBOL vmlinux 0xe7324b9a utf8nfdicf -EXPORT_SYMBOL vmlinux 0xe7437d8b inode_dio_wait +EXPORT_SYMBOL vmlinux 0xe738739e dev_change_proto_down_reason +EXPORT_SYMBOL vmlinux 0xe7692cea fb_blank EXPORT_SYMBOL vmlinux 0xe777e808 sclp_ap_configure -EXPORT_SYMBOL vmlinux 0xe7878406 misc_deregister -EXPORT_SYMBOL vmlinux 0xe7961ca5 jbd2_journal_force_commit_nested EXPORT_SYMBOL vmlinux 0xe796f19a hdmi_audio_infoframe_pack EXPORT_SYMBOL vmlinux 0xe798236d jiffies -EXPORT_SYMBOL vmlinux 0xe7aa54c2 iov_iter_get_pages_alloc -EXPORT_SYMBOL vmlinux 0xe7ae6d19 blk_mq_requeue_request -EXPORT_SYMBOL vmlinux 0xe7ae88dd __debug_sprintf_event +EXPORT_SYMBOL vmlinux 0xe79e4ee6 fifo_create_dflt +EXPORT_SYMBOL vmlinux 0xe7aa40e9 blk_mq_delay_run_hw_queues +EXPORT_SYMBOL vmlinux 0xe7c0055b in_dev_finish_destroy EXPORT_SYMBOL vmlinux 0xe7c23666 kset_register +EXPORT_SYMBOL vmlinux 0xe7cc7103 skb_clone EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next -EXPORT_SYMBOL vmlinux 0xe7d95a3a xfrm_register_type_offload -EXPORT_SYMBOL vmlinux 0xe7dfb78c dma_get_sgtable_attrs -EXPORT_SYMBOL vmlinux 0xe7f80081 pci_scan_slot -EXPORT_SYMBOL vmlinux 0xe8022677 fb_pan_display -EXPORT_SYMBOL vmlinux 0xe80f76c6 dev_add_pack -EXPORT_SYMBOL vmlinux 0xe816eb52 unregister_mii_timestamper -EXPORT_SYMBOL vmlinux 0xe81fdfd8 flow_indr_dev_setup_offload -EXPORT_SYMBOL vmlinux 0xe830673d find_inode_nowait +EXPORT_SYMBOL vmlinux 0xe7f36b67 __blockdev_direct_IO +EXPORT_SYMBOL vmlinux 0xe823dbeb tcf_qevent_validate_change +EXPORT_SYMBOL vmlinux 0xe824d159 task_work_add EXPORT_SYMBOL vmlinux 0xe8332b4b __tracepoint_s390_cio_stsch -EXPORT_SYMBOL vmlinux 0xe83a9440 sk_error_report -EXPORT_SYMBOL vmlinux 0xe85c1a78 xattr_supported_namespace -EXPORT_SYMBOL vmlinux 0xe87ca3f0 pipe_lock -EXPORT_SYMBOL vmlinux 0xe87e5eb8 inet_csk_prepare_forced_close -EXPORT_SYMBOL vmlinux 0xe891d531 generic_cont_expand_simple +EXPORT_SYMBOL vmlinux 0xe838ec6c xfrm_state_lookup +EXPORT_SYMBOL vmlinux 0xe847ef8a inode_init_always +EXPORT_SYMBOL vmlinux 0xe84d5879 ethtool_op_get_ts_info +EXPORT_SYMBOL vmlinux 0xe855abdb netdev_has_upper_dev_all_rcu +EXPORT_SYMBOL vmlinux 0xe86b3bcd blkdev_get_by_dev +EXPORT_SYMBOL vmlinux 0xe87ad199 nlmsg_notify +EXPORT_SYMBOL vmlinux 0xe881e28a tcf_idr_cleanup +EXPORT_SYMBOL vmlinux 0xe886ef73 open_exec +EXPORT_SYMBOL vmlinux 0xe8a77dc2 scsi_report_device_reset +EXPORT_SYMBOL vmlinux 0xe8ab74bd skb_put EXPORT_SYMBOL vmlinux 0xe8b5c3c3 __tracepoint_module_get -EXPORT_SYMBOL vmlinux 0xe8b6a411 devm_ioremap_resource +EXPORT_SYMBOL vmlinux 0xe8b9161f dev_uc_add_excl EXPORT_SYMBOL vmlinux 0xe8ba125d kmemdup_nul -EXPORT_SYMBOL vmlinux 0xe8c085c4 blk_queue_flag_set -EXPORT_SYMBOL vmlinux 0xe8e0cee2 nf_getsockopt -EXPORT_SYMBOL vmlinux 0xe8e2781e qdisc_warn_nonwc -EXPORT_SYMBOL vmlinux 0xe8e89b2a get_vm_area +EXPORT_SYMBOL vmlinux 0xe8cb9522 __sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0xe8d15f0c flow_rule_match_basic +EXPORT_SYMBOL vmlinux 0xe8f32aba flow_block_cb_alloc EXPORT_SYMBOL vmlinux 0xe9020709 trace_seq_hex_dump -EXPORT_SYMBOL vmlinux 0xe90af8d1 key_payload_reserve EXPORT_SYMBOL vmlinux 0xe914e41e strcpy -EXPORT_SYMBOL vmlinux 0xe93677aa tcf_block_put +EXPORT_SYMBOL vmlinux 0xe91b046d __scm_destroy +EXPORT_SYMBOL vmlinux 0xe9295992 dec_zone_page_state +EXPORT_SYMBOL vmlinux 0xe93681ca dev_pick_tx_zero +EXPORT_SYMBOL vmlinux 0xe93c0ba3 alloc_anon_inode EXPORT_SYMBOL vmlinux 0xe947b2f0 __tracepoint_s390_cio_xsch EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino -EXPORT_SYMBOL vmlinux 0xe96e5046 mr_mfc_seq_idx -EXPORT_SYMBOL vmlinux 0xe980ecf6 sock_i_ino +EXPORT_SYMBOL vmlinux 0xe95909a4 ndo_dflt_fdb_add EXPORT_SYMBOL vmlinux 0xe994130a __xa_store EXPORT_SYMBOL vmlinux 0xe995eee3 __percpu_counter_sum -EXPORT_SYMBOL vmlinux 0xe9a39c97 blk_rq_map_integrity_sg -EXPORT_SYMBOL vmlinux 0xe9aac836 xfrm_unregister_type_offload -EXPORT_SYMBOL vmlinux 0xe9bae5fc nf_hook_slow_list +EXPORT_SYMBOL vmlinux 0xe9979b18 security_dentry_create_files_as +EXPORT_SYMBOL vmlinux 0xe99bab80 jbd2_journal_check_used_features +EXPORT_SYMBOL vmlinux 0xe9afa4b1 zpool_register_driver +EXPORT_SYMBOL vmlinux 0xe9b0bc4b __d_lookup_done +EXPORT_SYMBOL vmlinux 0xe9b12b7f seq_escape EXPORT_SYMBOL vmlinux 0xe9c58a09 tcw_finalize -EXPORT_SYMBOL vmlinux 0xe9e933ac tcp_time_wait -EXPORT_SYMBOL vmlinux 0xe9ef122e fs_lookup_param +EXPORT_SYMBOL vmlinux 0xe9c9e3b6 proc_create +EXPORT_SYMBOL vmlinux 0xe9d10867 eth_header +EXPORT_SYMBOL vmlinux 0xe9d88e29 xfrm_state_insert EXPORT_SYMBOL vmlinux 0xe9f7149c zlib_deflate_workspacesize -EXPORT_SYMBOL vmlinux 0xe9fb5b9a has_capability EXPORT_SYMBOL vmlinux 0xe9fcb616 mempool_alloc -EXPORT_SYMBOL vmlinux 0xe9fe872f dquot_initialize_needed -EXPORT_SYMBOL vmlinux 0xea081cf1 tcp_sock_set_keepcnt -EXPORT_SYMBOL vmlinux 0xea201917 __netlink_kernel_create -EXPORT_SYMBOL vmlinux 0xea36e362 __neigh_set_probe_once +EXPORT_SYMBOL vmlinux 0xea030838 pci_free_host_bridge +EXPORT_SYMBOL vmlinux 0xea2fd808 blk_queue_alignment_offset +EXPORT_SYMBOL vmlinux 0xea374fce load_nls_default EXPORT_SYMBOL vmlinux 0xea3c8e4e scsilun_to_int -EXPORT_SYMBOL vmlinux 0xea5301bf rt_dst_clone -EXPORT_SYMBOL vmlinux 0xea63376f scsi_scan_host -EXPORT_SYMBOL vmlinux 0xea69c34c ethtool_rx_flow_rule_create +EXPORT_SYMBOL vmlinux 0xea489606 __blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0xea4ecabf filemap_fdatawrite +EXPORT_SYMBOL vmlinux 0xea51ca14 locks_delete_block +EXPORT_SYMBOL vmlinux 0xea60511f follow_down_one EXPORT_SYMBOL vmlinux 0xea6f9a36 zlib_deflate_dfltcc_enabled -EXPORT_SYMBOL vmlinux 0xea853d86 __frontswap_test +EXPORT_SYMBOL vmlinux 0xea78706e pagevec_lookup_range_tag +EXPORT_SYMBOL vmlinux 0xea818861 end_buffer_async_write EXPORT_SYMBOL vmlinux 0xea872313 find_next_bit_inv -EXPORT_SYMBOL vmlinux 0xea8a8105 cdrom_mode_select -EXPORT_SYMBOL vmlinux 0xeaada06d submit_bio_wait -EXPORT_SYMBOL vmlinux 0xeac9f918 __napi_alloc_skb +EXPORT_SYMBOL vmlinux 0xeac2cd01 security_path_mkdir +EXPORT_SYMBOL vmlinux 0xeacc530d alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0xead16946 simple_open EXPORT_SYMBOL vmlinux 0xead58fb9 print_hex_dump +EXPORT_SYMBOL vmlinux 0xeae9f853 flow_block_cb_priv +EXPORT_SYMBOL vmlinux 0xeaebbc45 dmam_alloc_attrs +EXPORT_SYMBOL vmlinux 0xeaef0307 netif_set_real_num_tx_queues EXPORT_SYMBOL vmlinux 0xeafc141f __posix_acl_chmod -EXPORT_SYMBOL vmlinux 0xeb1bb5eb tcp_make_synack -EXPORT_SYMBOL vmlinux 0xeb2cdc10 inode_get_bytes EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end -EXPORT_SYMBOL vmlinux 0xeb3731ab qdisc_offload_graft_helper -EXPORT_SYMBOL vmlinux 0xeb585481 touchscreen_report_pos -EXPORT_SYMBOL vmlinux 0xeb698740 inode_init_always -EXPORT_SYMBOL vmlinux 0xeb81b54b __scsi_execute -EXPORT_SYMBOL vmlinux 0xeb8ad1f8 input_mt_sync_frame +EXPORT_SYMBOL vmlinux 0xeb42bef8 take_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0xeb55020e d_add +EXPORT_SYMBOL vmlinux 0xeb9533ab hdmi_infoframe_log EXPORT_SYMBOL vmlinux 0xeb9dc55b ap_owned_by_def_drv EXPORT_SYMBOL vmlinux 0xeb9e913d sgl_alloc_order EXPORT_SYMBOL vmlinux 0xeb9eef52 match_uint -EXPORT_SYMBOL vmlinux 0xeba4e351 dmam_pool_create -EXPORT_SYMBOL vmlinux 0xeba61bec vfs_symlink -EXPORT_SYMBOL vmlinux 0xeba90b39 n_tty_ioctl_helper +EXPORT_SYMBOL vmlinux 0xeba22565 pci_disable_link_state +EXPORT_SYMBOL vmlinux 0xeba7dc47 tcf_block_put_ext EXPORT_SYMBOL vmlinux 0xebbf1dba strncasecmp +EXPORT_SYMBOL vmlinux 0xebcb256d pci_bus_set_ops EXPORT_SYMBOL vmlinux 0xebcb8bdc kstrtoll_from_user -EXPORT_SYMBOL vmlinux 0xec039d05 get_tree_nodev -EXPORT_SYMBOL vmlinux 0xec1ca84c input_set_min_poll_interval -EXPORT_SYMBOL vmlinux 0xec427b54 netlink_broadcast -EXPORT_SYMBOL vmlinux 0xec597d38 xp_raw_get_data -EXPORT_SYMBOL vmlinux 0xec7a3d08 simple_rmdir -EXPORT_SYMBOL vmlinux 0xec7b0685 eth_validate_addr -EXPORT_SYMBOL vmlinux 0xec886706 __cleancache_get_page -EXPORT_SYMBOL vmlinux 0xec90a31d nf_register_net_hooks +EXPORT_SYMBOL vmlinux 0xebdce867 netdev_bind_sb_channel_queue +EXPORT_SYMBOL vmlinux 0xebebb55c sock_kzfree_s +EXPORT_SYMBOL vmlinux 0xec14ea64 inode_permission +EXPORT_SYMBOL vmlinux 0xec2c18bf file_ns_capable +EXPORT_SYMBOL vmlinux 0xec343cde set_binfmt +EXPORT_SYMBOL vmlinux 0xec36adf6 prepare_to_swait_exclusive +EXPORT_SYMBOL vmlinux 0xec4121b9 flow_rule_alloc +EXPORT_SYMBOL vmlinux 0xec530781 scsi_vpd_tpg_id +EXPORT_SYMBOL vmlinux 0xec840508 dev_get_by_index_rcu EXPORT_SYMBOL vmlinux 0xec9d7c8a __traceiter_s390_diagnose -EXPORT_SYMBOL vmlinux 0xeccb6b58 inet_sk_set_state +EXPORT_SYMBOL vmlinux 0xecdee909 iov_iter_kvec +EXPORT_SYMBOL vmlinux 0xece6fc2e __cleancache_get_page EXPORT_SYMBOL vmlinux 0xece784c2 rb_first -EXPORT_SYMBOL vmlinux 0xed061b7b vfs_get_fsid -EXPORT_SYMBOL vmlinux 0xed0b671a skb_trim -EXPORT_SYMBOL vmlinux 0xed0d2c44 md_bitmap_update_sb -EXPORT_SYMBOL vmlinux 0xed3c27b0 dec_zone_page_state +EXPORT_SYMBOL vmlinux 0xecfeb321 tcp_disconnect +EXPORT_SYMBOL vmlinux 0xed06e9a2 fscrypt_setup_filename +EXPORT_SYMBOL vmlinux 0xed11a5a6 xfrm_state_flush +EXPORT_SYMBOL vmlinux 0xed43efdd security_tun_dev_attach +EXPORT_SYMBOL vmlinux 0xed45a252 inc_nlink +EXPORT_SYMBOL vmlinux 0xed4db115 redraw_screen EXPORT_SYMBOL vmlinux 0xed5376c5 __printk_wait_on_cpu_lock -EXPORT_SYMBOL vmlinux 0xed5eea9d __find_get_block EXPORT_SYMBOL vmlinux 0xed656e30 udp_encap_disable -EXPORT_SYMBOL vmlinux 0xed77846a setup_arg_pages -EXPORT_SYMBOL vmlinux 0xed818171 dm_table_event -EXPORT_SYMBOL vmlinux 0xed9426a9 pci_bus_alloc_resource -EXPORT_SYMBOL vmlinux 0xeda1d992 netlink_broadcast_filtered -EXPORT_SYMBOL vmlinux 0xedaaccfc pci_back_from_sleep +EXPORT_SYMBOL vmlinux 0xed736c11 scsi_free_host_dev +EXPORT_SYMBOL vmlinux 0xed7d0bb2 security_sk_classify_flow +EXPORT_SYMBOL vmlinux 0xed87e645 dev_change_proto_down_generic +EXPORT_SYMBOL vmlinux 0xed93b022 tcp_sock_set_quickack +EXPORT_SYMBOL vmlinux 0xed980c50 tty_hangup +EXPORT_SYMBOL vmlinux 0xed9953bd build_skb +EXPORT_SYMBOL vmlinux 0xedb016ac dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0xedb7ccda __sk_queue_drop_skb +EXPORT_SYMBOL vmlinux 0xedb80fea d_alloc_parallel EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp EXPORT_SYMBOL vmlinux 0xedc03953 iounmap -EXPORT_SYMBOL vmlinux 0xedde22ff netdev_adjacent_change_abort -EXPORT_SYMBOL vmlinux 0xedf25edd ipv6_dev_get_saddr -EXPORT_SYMBOL vmlinux 0xedf8aa04 inode_io_list_del EXPORT_SYMBOL vmlinux 0xee08cada iucv_message_purge +EXPORT_SYMBOL vmlinux 0xee289ca0 neigh_lookup_nodev EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable -EXPORT_SYMBOL vmlinux 0xee3a61a3 nf_hook_slow -EXPORT_SYMBOL vmlinux 0xee3db3fd ethtool_op_get_ts_info +EXPORT_SYMBOL vmlinux 0xee34c6bf tty_port_carrier_raised +EXPORT_SYMBOL vmlinux 0xee41355d netlink_net_capable 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 0xee83e80b __blk_alloc_disk +EXPORT_SYMBOL vmlinux 0xee680149 pci_unmap_rom +EXPORT_SYMBOL vmlinux 0xee70c879 free_cgroup_ns +EXPORT_SYMBOL vmlinux 0xee7a6a46 __frontswap_load EXPORT_SYMBOL vmlinux 0xee8c02e9 vprintk_emit EXPORT_SYMBOL vmlinux 0xee8d74d6 jiffies64_to_nsecs +EXPORT_SYMBOL vmlinux 0xee8f82e9 flow_rule_match_ipv4_addrs +EXPORT_SYMBOL vmlinux 0xee904169 nf_unregister_net_hook EXPORT_SYMBOL vmlinux 0xee91879b rb_first_postorder -EXPORT_SYMBOL vmlinux 0xee9d99d2 rtnetlink_put_metrics EXPORT_SYMBOL vmlinux 0xeea9dbaf bitmap_bitremap -EXPORT_SYMBOL vmlinux 0xeeb5d9e3 pci_pme_active -EXPORT_SYMBOL vmlinux 0xeeba1852 vm_map_pages -EXPORT_SYMBOL vmlinux 0xeedbff6b kill_pid +EXPORT_SYMBOL vmlinux 0xeed31065 dget_parent EXPORT_SYMBOL vmlinux 0xeedff578 __traceiter_kmem_cache_alloc_node -EXPORT_SYMBOL vmlinux 0xeeee68bb security_socket_socketpair -EXPORT_SYMBOL vmlinux 0xeef0d7bc splice_direct_to_actor -EXPORT_SYMBOL vmlinux 0xef02f5e0 finish_swait +EXPORT_SYMBOL vmlinux 0xeee253ac dma_resv_copy_fences +EXPORT_SYMBOL vmlinux 0xeef39909 finish_no_open EXPORT_SYMBOL vmlinux 0xef45d32c __kfifo_init -EXPORT_SYMBOL vmlinux 0xef4d561c kernel_bind -EXPORT_SYMBOL vmlinux 0xef5b8550 dquot_reclaim_space_nodirty -EXPORT_SYMBOL vmlinux 0xef5ca742 devm_ioremap -EXPORT_SYMBOL vmlinux 0xef6156ec md_bitmap_sync_with_cluster -EXPORT_SYMBOL vmlinux 0xef76a5b4 ip6_output -EXPORT_SYMBOL vmlinux 0xef7b836f dev_get_mac_address -EXPORT_SYMBOL vmlinux 0xef81a246 __inet_hash -EXPORT_SYMBOL vmlinux 0xef8d0d02 d_tmpfile -EXPORT_SYMBOL vmlinux 0xef922d94 dev_driver_string +EXPORT_SYMBOL vmlinux 0xef7d8c8c register_shrinker +EXPORT_SYMBOL vmlinux 0xef88f53d jbd2_journal_clear_features +EXPORT_SYMBOL vmlinux 0xef9c4345 watchdog_unregister_governor +EXPORT_SYMBOL vmlinux 0xefa1ffdf seq_file_path EXPORT_SYMBOL vmlinux 0xefaf2e4f tcf_queue_work -EXPORT_SYMBOL vmlinux 0xefb0f5d5 brioctl_set -EXPORT_SYMBOL vmlinux 0xefbb65dd buffer_migrate_page -EXPORT_SYMBOL vmlinux 0xefc4edd6 reuseport_attach_prog EXPORT_SYMBOL vmlinux 0xefc67050 __cpu_active_mask -EXPORT_SYMBOL vmlinux 0xefcee969 pcix_get_mmrbc -EXPORT_SYMBOL vmlinux 0xefe1ea2c seq_put_decimal_ll +EXPORT_SYMBOL vmlinux 0xefd5c4a5 security_sctp_assoc_request EXPORT_SYMBOL vmlinux 0xefeefc09 __SCK__tp_func_dma_fence_emit EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list -EXPORT_SYMBOL vmlinux 0xf0072922 flow_rule_match_enc_ipv6_addrs EXPORT_SYMBOL vmlinux 0xf008a885 seg6_hmac_init -EXPORT_SYMBOL vmlinux 0xf018d319 blk_queue_alignment_offset -EXPORT_SYMBOL vmlinux 0xf02451d1 vmap -EXPORT_SYMBOL vmlinux 0xf03f891b vfs_rmdir -EXPORT_SYMBOL vmlinux 0xf0538bc4 jbd2_complete_transaction -EXPORT_SYMBOL vmlinux 0xf05ad0f7 ip6_frag_next +EXPORT_SYMBOL vmlinux 0xf0281779 request_firmware_into_buf +EXPORT_SYMBOL vmlinux 0xf0488000 dcb_ieee_getapp_default_prio_mask +EXPORT_SYMBOL vmlinux 0xf0546423 __sock_queue_rcv_skb EXPORT_SYMBOL vmlinux 0xf05c64f8 iucv_path_connect +EXPORT_SYMBOL vmlinux 0xf05feb54 jbd2_journal_unlock_updates EXPORT_SYMBOL vmlinux 0xf06482e0 atomic_dec_and_mutex_lock -EXPORT_SYMBOL vmlinux 0xf07e4c4f fb_find_mode -EXPORT_SYMBOL vmlinux 0xf093c86a dquot_disable +EXPORT_SYMBOL vmlinux 0xf0876892 wait_on_page_private_2_killable +EXPORT_SYMBOL vmlinux 0xf0940e56 debug_register_mode EXPORT_SYMBOL vmlinux 0xf09b5d9a get_zeroed_page -EXPORT_SYMBOL vmlinux 0xf0b31a39 nf_log_bind_pf -EXPORT_SYMBOL vmlinux 0xf0c73315 buffer_check_dirty_writeback -EXPORT_SYMBOL vmlinux 0xf0dd3700 jbd2_journal_begin_ordered_truncate -EXPORT_SYMBOL vmlinux 0xf0e21bde sock_alloc_send_pskb +EXPORT_SYMBOL vmlinux 0xf0a4a273 skb_vlan_untag +EXPORT_SYMBOL vmlinux 0xf0a5dfc7 __hw_addr_ref_sync_dev +EXPORT_SYMBOL vmlinux 0xf0ae7a70 super_setup_bdi +EXPORT_SYMBOL vmlinux 0xf0d45ddd generic_delete_inode EXPORT_SYMBOL vmlinux 0xf0ea2318 __mutex_init -EXPORT_SYMBOL vmlinux 0xf0f8f75a tty_port_put EXPORT_SYMBOL vmlinux 0xf0fbd2b7 call_usermodehelper_setup EXPORT_SYMBOL vmlinux 0xf0fc9aa8 sclp_cpi_set_data -EXPORT_SYMBOL vmlinux 0xf10c54f5 consume_skb +EXPORT_SYMBOL vmlinux 0xf0fdf2dd debug_register +EXPORT_SYMBOL vmlinux 0xf1005a78 netdev_has_upper_dev +EXPORT_SYMBOL vmlinux 0xf11956ae dcb_ieee_setapp EXPORT_SYMBOL vmlinux 0xf11dd46e _page_poisoning_enabled_early +EXPORT_SYMBOL vmlinux 0xf158bff3 inet_csk_reqsk_queue_drop +EXPORT_SYMBOL vmlinux 0xf1630408 neigh_seq_stop EXPORT_SYMBOL vmlinux 0xf1690224 lockref_put_not_zero -EXPORT_SYMBOL vmlinux 0xf16de6c7 tcp_rcv_established EXPORT_SYMBOL vmlinux 0xf1808e2b call_usermodehelper_exec -EXPORT_SYMBOL vmlinux 0xf181206f neigh_destroy EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps EXPORT_SYMBOL vmlinux 0xf1969a8e __usecs_to_jiffies -EXPORT_SYMBOL vmlinux 0xf19b2463 dup_iter EXPORT_SYMBOL vmlinux 0xf19e7338 unregister_external_irq -EXPORT_SYMBOL vmlinux 0xf1ac02f2 input_grab_device +EXPORT_SYMBOL vmlinux 0xf1a47905 dquot_quota_off EXPORT_SYMBOL vmlinux 0xf1adc6d2 neigh_proc_dointvec_jiffies EXPORT_SYMBOL vmlinux 0xf1b96974 posix_acl_valid -EXPORT_SYMBOL vmlinux 0xf1cb7e87 dcache_dir_close +EXPORT_SYMBOL vmlinux 0xf1ba4063 deactivate_locked_super +EXPORT_SYMBOL vmlinux 0xf1cddd45 scsi_set_medium_removal 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 0xf1ec8474 vfs_clone_file_range -EXPORT_SYMBOL vmlinux 0xf1f9abe6 __break_lease -EXPORT_SYMBOL vmlinux 0xf21bae4b blk_mq_rq_cpu -EXPORT_SYMBOL vmlinux 0xf21ca2a3 dev_close -EXPORT_SYMBOL vmlinux 0xf22a86cf tcp_initialize_rcv_mss -EXPORT_SYMBOL vmlinux 0xf22ffb25 scsi_add_host_with_dma +EXPORT_SYMBOL vmlinux 0xf20946a0 d_invalidate +EXPORT_SYMBOL vmlinux 0xf21366c1 netlink_kernel_release +EXPORT_SYMBOL vmlinux 0xf21aa1dc pci_find_next_bus +EXPORT_SYMBOL vmlinux 0xf2283e21 jbd2_submit_inode_data +EXPORT_SYMBOL vmlinux 0xf23245f8 tcf_em_unregister +EXPORT_SYMBOL vmlinux 0xf2351ed2 vfs_get_super +EXPORT_SYMBOL vmlinux 0xf23e57c7 get_user_pages EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in EXPORT_SYMBOL vmlinux 0xf258142c radix_tree_lookup_slot +EXPORT_SYMBOL vmlinux 0xf27f8ba3 nf_reinject EXPORT_SYMBOL vmlinux 0xf28404cf devlink_dpipe_header_ipv6 +EXPORT_SYMBOL vmlinux 0xf2877953 fs_param_is_s32 EXPORT_SYMBOL vmlinux 0xf28cf0ae __hw_addr_init -EXPORT_SYMBOL vmlinux 0xf2904555 inet_reqsk_alloc -EXPORT_SYMBOL vmlinux 0xf293c2df ip_sock_set_recverr +EXPORT_SYMBOL vmlinux 0xf2ad8bb0 sb_min_blocksize +EXPORT_SYMBOL vmlinux 0xf2b9451f con_is_visible EXPORT_SYMBOL vmlinux 0xf2c43f3f zlib_deflate -EXPORT_SYMBOL vmlinux 0xf2d78766 netif_schedule_queue +EXPORT_SYMBOL vmlinux 0xf2d4dfb7 pci_scan_root_bus_bridge +EXPORT_SYMBOL vmlinux 0xf2d93ec8 input_register_device +EXPORT_SYMBOL vmlinux 0xf2da8a05 inode_sub_bytes EXPORT_SYMBOL vmlinux 0xf2e5bd87 security_free_mnt_opts -EXPORT_SYMBOL vmlinux 0xf2e99015 dev_change_proto_down_generic +EXPORT_SYMBOL vmlinux 0xf30c54fb dev_get_by_index EXPORT_SYMBOL vmlinux 0xf3107926 sha224_update EXPORT_SYMBOL vmlinux 0xf31c0d52 ioremap -EXPORT_SYMBOL vmlinux 0xf32446b8 input_match_device_id -EXPORT_SYMBOL vmlinux 0xf324ec7c device_get_mac_address -EXPORT_SYMBOL vmlinux 0xf330966a free_netdev +EXPORT_SYMBOL vmlinux 0xf3237744 freeze_bdev EXPORT_SYMBOL vmlinux 0xf33a9435 raw3270_request_alloc -EXPORT_SYMBOL vmlinux 0xf33fe616 __cgroup_bpf_run_filter_sock_addr EXPORT_SYMBOL vmlinux 0xf34490b1 radix_tree_iter_resume +EXPORT_SYMBOL vmlinux 0xf3450dfa mark_info_dirty EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier -EXPORT_SYMBOL vmlinux 0xf37a0fee udp_gro_complete -EXPORT_SYMBOL vmlinux 0xf37c75f4 fscrypt_free_bounce_page +EXPORT_SYMBOL vmlinux 0xf36a73eb iov_iter_discard +EXPORT_SYMBOL vmlinux 0xf37a179f blk_set_queue_depth +EXPORT_SYMBOL vmlinux 0xf37f4c14 input_release_device EXPORT_SYMBOL vmlinux 0xf3916987 global_cursor_default -EXPORT_SYMBOL vmlinux 0xf3ab869b ap_driver_register EXPORT_SYMBOL vmlinux 0xf3b30a06 utf8version_latest +EXPORT_SYMBOL vmlinux 0xf3b4c4e5 napi_gro_flush EXPORT_SYMBOL vmlinux 0xf3b74f79 __iucv_message_send -EXPORT_SYMBOL vmlinux 0xf3b949c1 jbd2_log_wait_commit -EXPORT_SYMBOL vmlinux 0xf3bb56db dqput -EXPORT_SYMBOL vmlinux 0xf3c23c3a do_SAK +EXPORT_SYMBOL vmlinux 0xf3c89ac2 km_state_expired EXPORT_SYMBOL vmlinux 0xf3ca733b hdmi_drm_infoframe_pack +EXPORT_SYMBOL vmlinux 0xf3ca7838 get_tree_single_reconf +EXPORT_SYMBOL vmlinux 0xf3cc89d9 xfrm_trans_queue +EXPORT_SYMBOL vmlinux 0xf3dbe981 inode_add_bytes EXPORT_SYMBOL vmlinux 0xf3e0e1df allocate_resource EXPORT_SYMBOL vmlinux 0xf3e6402e __bitmap_equal -EXPORT_SYMBOL vmlinux 0xf3eba707 configfs_depend_item_unlocked -EXPORT_SYMBOL vmlinux 0xf3ed0698 netdev_crit -EXPORT_SYMBOL vmlinux 0xf408a8fa simple_release_fs -EXPORT_SYMBOL vmlinux 0xf4271a4d mr_table_dump -EXPORT_SYMBOL vmlinux 0xf42c3ec0 get_tree_keyed +EXPORT_SYMBOL vmlinux 0xf3e6de58 scsi_register_driver +EXPORT_SYMBOL vmlinux 0xf3f3e386 tcf_exts_terse_dump +EXPORT_SYMBOL vmlinux 0xf3fcb39c bio_split +EXPORT_SYMBOL vmlinux 0xf4206a86 register_netdevice_notifier_net EXPORT_SYMBOL vmlinux 0xf43725fb s390_arch_random_counter -EXPORT_SYMBOL vmlinux 0xf4399b65 unix_detach_fds -EXPORT_SYMBOL vmlinux 0xf4492216 __cleancache_invalidate_inode +EXPORT_SYMBOL vmlinux 0xf43dcbb3 pci_request_selected_regions_exclusive EXPORT_SYMBOL vmlinux 0xf44a904a net_ns_barrier -EXPORT_SYMBOL vmlinux 0xf46351cf __lock_buffer +EXPORT_SYMBOL vmlinux 0xf4561693 device_add_disk +EXPORT_SYMBOL vmlinux 0xf45eedab block_write_full_page +EXPORT_SYMBOL vmlinux 0xf45fbf6a get_acl +EXPORT_SYMBOL vmlinux 0xf470d8cc skb_pull +EXPORT_SYMBOL vmlinux 0xf473d554 unregister_console EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const -EXPORT_SYMBOL vmlinux 0xf4790943 neigh_lookup -EXPORT_SYMBOL vmlinux 0xf47b65ad register_mii_timestamper -EXPORT_SYMBOL vmlinux 0xf48537c9 pci_bus_read_dev_vendor_id -EXPORT_SYMBOL vmlinux 0xf4a5120c sk_capable -EXPORT_SYMBOL vmlinux 0xf4aa81b9 xfrm6_rcv +EXPORT_SYMBOL vmlinux 0xf48c9fc2 ethtool_op_get_link +EXPORT_SYMBOL vmlinux 0xf4a97226 blk_queue_physical_block_size EXPORT_SYMBOL vmlinux 0xf4bb992f inetpeer_invalidate_tree EXPORT_SYMBOL vmlinux 0xf4bdbeb9 __frontswap_invalidate_area +EXPORT_SYMBOL vmlinux 0xf4c9fa2f pci_set_master +EXPORT_SYMBOL vmlinux 0xf4d8c2d6 udp_poll EXPORT_SYMBOL vmlinux 0xf4db35bc stpcpy +EXPORT_SYMBOL vmlinux 0xf4e7b470 debug_sprintf_view +EXPORT_SYMBOL vmlinux 0xf4e9d47f buffer_check_dirty_writeback EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock -EXPORT_SYMBOL vmlinux 0xf4f15bb1 kmem_cache_alloc_node EXPORT_SYMBOL vmlinux 0xf4f1d73f __kfifo_out_peek_r -EXPORT_SYMBOL vmlinux 0xf4f91024 freeze_bdev +EXPORT_SYMBOL vmlinux 0xf509d3ca tcf_idr_release +EXPORT_SYMBOL vmlinux 0xf517b0d0 __dquot_free_space +EXPORT_SYMBOL vmlinux 0xf5190f98 d_path +EXPORT_SYMBOL vmlinux 0xf52590a2 kfree_skb_partial +EXPORT_SYMBOL vmlinux 0xf53727bf drop_super EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy -EXPORT_SYMBOL vmlinux 0xf548c8cc __scm_destroy EXPORT_SYMBOL vmlinux 0xf550909d utf8_validate -EXPORT_SYMBOL vmlinux 0xf550ad5b dev_load -EXPORT_SYMBOL vmlinux 0xf571706d fs_context_for_mount -EXPORT_SYMBOL vmlinux 0xf5799a6a seq_path -EXPORT_SYMBOL vmlinux 0xf57c2db1 ilookup5 -EXPORT_SYMBOL vmlinux 0xf591100a dev_uc_del -EXPORT_SYMBOL vmlinux 0xf5ba658a lookup_positive_unlocked -EXPORT_SYMBOL vmlinux 0xf5bcc8aa dev_uc_sync -EXPORT_SYMBOL vmlinux 0xf5d6d15f inet6_del_offload +EXPORT_SYMBOL vmlinux 0xf577f749 dqput +EXPORT_SYMBOL vmlinux 0xf589bfda neigh_sysctl_register +EXPORT_SYMBOL vmlinux 0xf589e05f sock_no_recvmsg +EXPORT_SYMBOL vmlinux 0xf58a18ae configfs_depend_item_unlocked +EXPORT_SYMBOL vmlinux 0xf59e99bf sdev_disable_disk_events +EXPORT_SYMBOL vmlinux 0xf5a79e78 hash_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0xf5b27c99 security_inode_setsecctx +EXPORT_SYMBOL vmlinux 0xf5b2e096 can_nice +EXPORT_SYMBOL vmlinux 0xf5b4948e kernel_sendmsg +EXPORT_SYMBOL vmlinux 0xf5b7f3d5 netpoll_poll_dev +EXPORT_SYMBOL vmlinux 0xf5db95af framebuffer_release EXPORT_SYMBOL vmlinux 0xf5e7ea40 ktime_get_coarse_ts64 -EXPORT_SYMBOL vmlinux 0xf5edca1a crypto_sha256_update -EXPORT_SYMBOL vmlinux 0xf5f3f530 bprm_change_interp -EXPORT_SYMBOL vmlinux 0xf6132878 pci_add_new_bus -EXPORT_SYMBOL vmlinux 0xf6201250 flow_block_cb_free -EXPORT_SYMBOL vmlinux 0xf6245729 vfs_getattr -EXPORT_SYMBOL vmlinux 0xf62d0aba invalidate_inode_buffers +EXPORT_SYMBOL vmlinux 0xf5e7fcb4 xfrm_policy_hash_rebuild +EXPORT_SYMBOL vmlinux 0xf5ff4c3d tcp_sendpage +EXPORT_SYMBOL vmlinux 0xf6068c83 skb_copy_datagram_iter EXPORT_SYMBOL vmlinux 0xf643d104 hsiphash_4u32 -EXPORT_SYMBOL vmlinux 0xf6549689 vfs_path_lookup -EXPORT_SYMBOL vmlinux 0xf65d2379 dcache_readdir EXPORT_SYMBOL vmlinux 0xf665f74f sock_load_diag_module -EXPORT_SYMBOL vmlinux 0xf676d127 blk_get_request -EXPORT_SYMBOL vmlinux 0xf67e1306 kthread_stop EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier -EXPORT_SYMBOL vmlinux 0xf6969dac simple_pin_fs -EXPORT_SYMBOL vmlinux 0xf6a96c3f simple_unlink -EXPORT_SYMBOL vmlinux 0xf6ab207e input_unregister_handle -EXPORT_SYMBOL vmlinux 0xf6bc2baa sk_common_release +EXPORT_SYMBOL vmlinux 0xf6b928b4 tty_unregister_ldisc +EXPORT_SYMBOL vmlinux 0xf6bdb615 fs_param_is_fd EXPORT_SYMBOL vmlinux 0xf6c3e4aa wait_for_completion_io -EXPORT_SYMBOL vmlinux 0xf6d51b38 tcp_ld_RTO_revert -EXPORT_SYMBOL vmlinux 0xf6dc75f4 sock_alloc_file -EXPORT_SYMBOL vmlinux 0xf6e93dae sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0xf6e43061 sg_miter_next EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit -EXPORT_SYMBOL vmlinux 0xf6f36ee2 devm_input_allocate_device EXPORT_SYMBOL vmlinux 0xf6f9d58d init_on_free EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor +EXPORT_SYMBOL vmlinux 0xf7051ab2 filemap_fdatawait_range_keep_errors +EXPORT_SYMBOL vmlinux 0xf705aba7 input_set_max_poll_interval +EXPORT_SYMBOL vmlinux 0xf7279d7b netlink_unicast EXPORT_SYMBOL vmlinux 0xf738d1be register_blocking_lsm_notifier -EXPORT_SYMBOL vmlinux 0xf73a2ef7 kbd_alloc EXPORT_SYMBOL vmlinux 0xf74300d7 arch_vcpu_is_preempted -EXPORT_SYMBOL vmlinux 0xf747e6f2 blk_mq_init_allocated_queue -EXPORT_SYMBOL vmlinux 0xf760353f security_path_mknod -EXPORT_SYMBOL vmlinux 0xf763b1cc iucv_if -EXPORT_SYMBOL vmlinux 0xf773231f __sk_backlog_rcv +EXPORT_SYMBOL vmlinux 0xf74cc325 xfrm_state_unregister_afinfo +EXPORT_SYMBOL vmlinux 0xf74d4ab7 qdisc_watchdog_schedule_range_ns +EXPORT_SYMBOL vmlinux 0xf75a1b8a md_bitmap_end_sync +EXPORT_SYMBOL vmlinux 0xf7615476 get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0xf766f980 skb_queue_tail EXPORT_SYMBOL vmlinux 0xf77337a1 hdmi_audio_infoframe_check -EXPORT_SYMBOL vmlinux 0xf777b74f tty_unlock -EXPORT_SYMBOL vmlinux 0xf778aacc __xfrm_policy_check -EXPORT_SYMBOL vmlinux 0xf781b5b4 create_empty_buffers -EXPORT_SYMBOL vmlinux 0xf785faf9 iov_iter_pipe +EXPORT_SYMBOL vmlinux 0xf7a063f0 scsi_host_get EXPORT_SYMBOL vmlinux 0xf7a596de ZSTD_initDDict -EXPORT_SYMBOL vmlinux 0xf7a862d6 t10_pi_type3_crc -EXPORT_SYMBOL vmlinux 0xf7b70db6 pmdp_xchg_direct EXPORT_SYMBOL vmlinux 0xf7b92217 utf8_casefold -EXPORT_SYMBOL vmlinux 0xf7beeb8a reuseport_detach_sock EXPORT_SYMBOL vmlinux 0xf7c48778 __tracepoint_kmalloc_node +EXPORT_SYMBOL vmlinux 0xf7ce5bcc elv_rb_find +EXPORT_SYMBOL vmlinux 0xf7d05398 input_mt_report_finger_count EXPORT_SYMBOL vmlinux 0xf7d71918 __kfifo_in_r -EXPORT_SYMBOL vmlinux 0xf7eb74eb netif_rx -EXPORT_SYMBOL vmlinux 0xf7efed14 jbd2_journal_lock_updates -EXPORT_SYMBOL vmlinux 0xf7f678f1 dev_addr_flush -EXPORT_SYMBOL vmlinux 0xf7fd72af netif_set_real_num_queues -EXPORT_SYMBOL vmlinux 0xf8114764 pcie_ptm_enabled +EXPORT_SYMBOL vmlinux 0xf7e533ba scsi_alloc_sgtables +EXPORT_SYMBOL vmlinux 0xf7f4ca9a igrab +EXPORT_SYMBOL vmlinux 0xf7fb8c69 xsk_tx_peek_release_desc_batch EXPORT_SYMBOL vmlinux 0xf811e69d scsi_eh_flush_done_q -EXPORT_SYMBOL vmlinux 0xf813e98f path_put +EXPORT_SYMBOL vmlinux 0xf817a083 __blk_mq_end_request EXPORT_SYMBOL vmlinux 0xf81fd636 arch_spin_relax +EXPORT_SYMBOL vmlinux 0xf8226480 sk_error_report EXPORT_SYMBOL vmlinux 0xf82abc1d isa_dma_bridge_buggy -EXPORT_SYMBOL vmlinux 0xf82e86da watchdog_unregister_governor EXPORT_SYMBOL vmlinux 0xf82ec573 rb_prev -EXPORT_SYMBOL vmlinux 0xf82f478f scsi_scan_target -EXPORT_SYMBOL vmlinux 0xf836618f vfs_dedupe_file_range_one -EXPORT_SYMBOL vmlinux 0xf83ad321 blk_mq_complete_request +EXPORT_SYMBOL vmlinux 0xf83bebc9 inet_protos +EXPORT_SYMBOL vmlinux 0xf83fa579 __skb_pad +EXPORT_SYMBOL vmlinux 0xf8449cdd dma_sync_single_for_cpu +EXPORT_SYMBOL vmlinux 0xf84885df ccw_device_set_options EXPORT_SYMBOL vmlinux 0xf84bd6ee bpf_stats_enabled_key -EXPORT_SYMBOL vmlinux 0xf84c9fe2 nf_log_unregister -EXPORT_SYMBOL vmlinux 0xf856353d tcf_chain_get_by_act -EXPORT_SYMBOL vmlinux 0xf87802b8 param_get_ushort -EXPORT_SYMBOL vmlinux 0xf884441b tso_build_data +EXPORT_SYMBOL vmlinux 0xf85216d1 __scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0xf87d5e66 inet_select_addr EXPORT_SYMBOL vmlinux 0xf888ca21 sg_init_table +EXPORT_SYMBOL vmlinux 0xf898cad5 param_ops_hexint EXPORT_SYMBOL vmlinux 0xf8998e5b cpumask_next_and -EXPORT_SYMBOL vmlinux 0xf8a3fdc0 pci_request_selected_regions EXPORT_SYMBOL vmlinux 0xf8b05467 __nla_reserve -EXPORT_SYMBOL vmlinux 0xf8b73c8b blk_queue_max_hw_sectors -EXPORT_SYMBOL vmlinux 0xf8c16bd3 try_to_free_buffers +EXPORT_SYMBOL vmlinux 0xf8c0a3e9 zpool_unregister_driver EXPORT_SYMBOL vmlinux 0xf8d07858 bitmap_from_arr32 -EXPORT_SYMBOL vmlinux 0xf8e34f9b __devm_release_region -EXPORT_SYMBOL vmlinux 0xf8f31173 textsearch_prepare EXPORT_SYMBOL vmlinux 0xf8f61ebc wake_up_var -EXPORT_SYMBOL vmlinux 0xf906b78b __sk_mem_schedule +EXPORT_SYMBOL vmlinux 0xf91ba68d pci_back_from_sleep +EXPORT_SYMBOL vmlinux 0xf91f578b dmam_free_coherent +EXPORT_SYMBOL vmlinux 0xf9309d61 sync_inode_metadata EXPORT_SYMBOL vmlinux 0xf93fd09c fb_find_mode_cvt -EXPORT_SYMBOL vmlinux 0xf941079a scsi_report_opcode -EXPORT_SYMBOL vmlinux 0xf9479ce7 update_region +EXPORT_SYMBOL vmlinux 0xf946d453 __sk_dst_check EXPORT_SYMBOL vmlinux 0xf9500d2f sort_r -EXPORT_SYMBOL vmlinux 0xf9668683 page_pool_alloc_frag EXPORT_SYMBOL vmlinux 0xf96a60d7 __cond_resched_rwlock_read -EXPORT_SYMBOL vmlinux 0xf986046e ccw_driver_unregister +EXPORT_SYMBOL vmlinux 0xf996089e peernet2id +EXPORT_SYMBOL vmlinux 0xf99e7672 netif_napi_add EXPORT_SYMBOL vmlinux 0xf9a06e0e ida_free EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep -EXPORT_SYMBOL vmlinux 0xf9bd606f udp_prot -EXPORT_SYMBOL vmlinux 0xf9c5be3e pci_irq_vector -EXPORT_SYMBOL vmlinux 0xf9cf6b41 tc_setup_cb_replace -EXPORT_SYMBOL vmlinux 0xf9e14358 xfrm_stateonly_find +EXPORT_SYMBOL vmlinux 0xf9aaf2b0 vlan_vids_add_by_dev +EXPORT_SYMBOL vmlinux 0xf9bae9bb pci_enable_msix_range +EXPORT_SYMBOL vmlinux 0xf9bd1867 kern_unmount_array +EXPORT_SYMBOL vmlinux 0xf9d9f65b tcp_parse_options +EXPORT_SYMBOL vmlinux 0xf9ea3bda tcp_get_cookie_sock EXPORT_SYMBOL vmlinux 0xf9f3696e __cpuhp_setup_state_cpuslocked EXPORT_SYMBOL vmlinux 0xfa08c34a page_offline_end +EXPORT_SYMBOL vmlinux 0xfa0c203c blk_mq_init_allocated_queue EXPORT_SYMBOL vmlinux 0xfa1c059a proc_dointvec_jiffies -EXPORT_SYMBOL vmlinux 0xfa434afe kernel_param_unlock +EXPORT_SYMBOL vmlinux 0xfa1d254d __free_pages +EXPORT_SYMBOL vmlinux 0xfa2abb5b devm_ioremap_resource +EXPORT_SYMBOL vmlinux 0xfa4ab4e7 __scsi_device_lookup +EXPORT_SYMBOL vmlinux 0xfa5999e9 register_key_type EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier -EXPORT_SYMBOL vmlinux 0xfa71593a in6_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0xfa644c9c d_splice_alias EXPORT_SYMBOL vmlinux 0xfa873ad0 prandom_seed -EXPORT_SYMBOL vmlinux 0xfa8ffc7d iget_locked -EXPORT_SYMBOL vmlinux 0xfaa2b866 simple_dir_inode_operations +EXPORT_SYMBOL vmlinux 0xfa8f2390 nf_unregister_net_hooks EXPORT_SYMBOL vmlinux 0xfaaa12d0 _page_poisoning_enabled -EXPORT_SYMBOL vmlinux 0xfabe2dcf __block_write_full_page +EXPORT_SYMBOL vmlinux 0xfaaac662 nonseekable_open +EXPORT_SYMBOL vmlinux 0xfab47008 get_pgste +EXPORT_SYMBOL vmlinux 0xfabf9d7a jbd2_journal_clear_err +EXPORT_SYMBOL vmlinux 0xfabfa42a pin_user_pages_remote EXPORT_SYMBOL vmlinux 0xfac19588 __clear_user EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max -EXPORT_SYMBOL vmlinux 0xfb1435fa __hw_addr_unsync_dev -EXPORT_SYMBOL vmlinux 0xfb29b12e jbd2__journal_restart +EXPORT_SYMBOL vmlinux 0xfacd6cc5 ilookup5_nowait +EXPORT_SYMBOL vmlinux 0xfad37c35 dquot_quota_on_mount +EXPORT_SYMBOL vmlinux 0xfad3810a sk_wait_data +EXPORT_SYMBOL vmlinux 0xfae70921 skb_flow_dissect_tunnel_info +EXPORT_SYMBOL vmlinux 0xfaea7301 dev_graft_qdisc +EXPORT_SYMBOL vmlinux 0xfafb9a61 fscrypt_free_inode +EXPORT_SYMBOL vmlinux 0xfafd4a84 input_set_poll_interval +EXPORT_SYMBOL vmlinux 0xfb1f0287 dqget +EXPORT_SYMBOL vmlinux 0xfb26eae5 __skb_flow_dissect EXPORT_SYMBOL vmlinux 0xfb384d37 kasprintf EXPORT_SYMBOL vmlinux 0xfb482dd1 __traceiter_s390_cio_stsch -EXPORT_SYMBOL vmlinux 0xfb48df0f bh_submit_read -EXPORT_SYMBOL vmlinux 0xfb5d9519 xfrm_state_lookup +EXPORT_SYMBOL vmlinux 0xfb4e8579 pci_read_config_word +EXPORT_SYMBOL vmlinux 0xfb519c0b write_dirty_buffer EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending -EXPORT_SYMBOL vmlinux 0xfb86f270 dcb_ieee_getapp_mask -EXPORT_SYMBOL vmlinux 0xfb8f4806 scsi_device_set_state -EXPORT_SYMBOL vmlinux 0xfb8faaee generic_writepages +EXPORT_SYMBOL vmlinux 0xfb6b1ab8 __xfrm_route_forward +EXPORT_SYMBOL vmlinux 0xfb748427 __generic_file_fsync +EXPORT_SYMBOL vmlinux 0xfb848ba2 read_cache_page +EXPORT_SYMBOL vmlinux 0xfb8d4500 xp_dma_map +EXPORT_SYMBOL vmlinux 0xfb996129 skb_free_datagram +EXPORT_SYMBOL vmlinux 0xfba42fa0 __find_get_block EXPORT_SYMBOL vmlinux 0xfba7ddd2 match_u64 EXPORT_SYMBOL vmlinux 0xfbaaf01e console_lock EXPORT_SYMBOL vmlinux 0xfbad3cf0 scsi_normalize_sense -EXPORT_SYMBOL vmlinux 0xfbb17dfa xfrm_trans_queue -EXPORT_SYMBOL vmlinux 0xfbb28dcc submit_bio -EXPORT_SYMBOL vmlinux 0xfbb734ab blk_rq_map_kern -EXPORT_SYMBOL vmlinux 0xfbb7dbe7 single_release EXPORT_SYMBOL vmlinux 0xfbc4f89e io_schedule_timeout -EXPORT_SYMBOL vmlinux 0xfbcedf1b devm_register_netdev -EXPORT_SYMBOL vmlinux 0xfbd7d209 dst_cow_metrics_generic -EXPORT_SYMBOL vmlinux 0xfbf21c6f logfc -EXPORT_SYMBOL vmlinux 0xfc054ec6 release_sock -EXPORT_SYMBOL vmlinux 0xfc0be547 register_netdevice_notifier_net -EXPORT_SYMBOL vmlinux 0xfc1edf12 kiocb_set_cancel_fn -EXPORT_SYMBOL vmlinux 0xfc366210 ip_sock_set_freebind +EXPORT_SYMBOL vmlinux 0xfbd5b227 sk_stream_wait_memory +EXPORT_SYMBOL vmlinux 0xfbd79301 inet_addr_type_table +EXPORT_SYMBOL vmlinux 0xfbdcad20 tcp_v4_destroy_sock +EXPORT_SYMBOL vmlinux 0xfbdecd7b simple_getattr +EXPORT_SYMBOL vmlinux 0xfc1aa540 flow_rule_match_enc_ipv6_addrs +EXPORT_SYMBOL vmlinux 0xfc28c650 block_invalidatepage EXPORT_SYMBOL vmlinux 0xfc399557 utf8_load -EXPORT_SYMBOL vmlinux 0xfc4ccf68 input_free_device -EXPORT_SYMBOL vmlinux 0xfc82c6c8 ccw_device_tm_start_timeout_key -EXPORT_SYMBOL vmlinux 0xfc9086f5 rtnl_create_link -EXPORT_SYMBOL vmlinux 0xfc913135 skb_try_coalesce -EXPORT_SYMBOL vmlinux 0xfc914e17 d_rehash -EXPORT_SYMBOL vmlinux 0xfc91c290 watchdog_register_governor -EXPORT_SYMBOL vmlinux 0xfcd095b6 flow_block_cb_alloc +EXPORT_SYMBOL vmlinux 0xfc3b9545 dev_set_mtu +EXPORT_SYMBOL vmlinux 0xfc79defa ap_queue_message +EXPORT_SYMBOL vmlinux 0xfc8526ce configfs_unregister_default_group +EXPORT_SYMBOL vmlinux 0xfc8f110d unix_destruct_scm +EXPORT_SYMBOL vmlinux 0xfc91cd8a thread_group_exited +EXPORT_SYMBOL vmlinux 0xfc9c5006 dcb_getapp +EXPORT_SYMBOL vmlinux 0xfca7dfe2 fs_context_for_reconfigure +EXPORT_SYMBOL vmlinux 0xfcaf78d7 xp_raw_get_data +EXPORT_SYMBOL vmlinux 0xfcb67180 filemap_fdatawait_keep_errors +EXPORT_SYMBOL vmlinux 0xfcc158fa tcp_make_synack EXPORT_SYMBOL vmlinux 0xfcd1819a hdmi_spd_infoframe_check +EXPORT_SYMBOL vmlinux 0xfcda80a6 bdevname +EXPORT_SYMBOL vmlinux 0xfcdd4c29 generic_file_write_iter +EXPORT_SYMBOL vmlinux 0xfcdddea0 zpci_report_error EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq -EXPORT_SYMBOL vmlinux 0xfcf190c7 io_uring_get_socket -EXPORT_SYMBOL vmlinux 0xfcfc6845 kmem_cache_free -EXPORT_SYMBOL vmlinux 0xfd04e8d1 __inet_stream_connect -EXPORT_SYMBOL vmlinux 0xfd1931b9 pci_free_host_bridge -EXPORT_SYMBOL vmlinux 0xfd2112a1 md_wakeup_thread -EXPORT_SYMBOL vmlinux 0xfd327114 pci_disable_msix -EXPORT_SYMBOL vmlinux 0xfd3d903b inet_del_protocol -EXPORT_SYMBOL vmlinux 0xfd6dcb9e dcbnl_cee_notify +EXPORT_SYMBOL vmlinux 0xfd395722 fs_param_is_enum +EXPORT_SYMBOL vmlinux 0xfd3ea5eb tso_build_hdr +EXPORT_SYMBOL vmlinux 0xfd6da333 md_check_no_bitmap EXPORT_SYMBOL vmlinux 0xfd76f166 lockref_put_or_lock -EXPORT_SYMBOL vmlinux 0xfd7b2a7c wait_on_page_private_2_killable -EXPORT_SYMBOL vmlinux 0xfd82d607 _copy_from_iter_nocache +EXPORT_SYMBOL vmlinux 0xfd817944 skb_trim +EXPORT_SYMBOL vmlinux 0xfd846a7a proc_create_data EXPORT_SYMBOL vmlinux 0xfd9a9866 stfle_fac_list -EXPORT_SYMBOL vmlinux 0xfda70b86 tty_unregister_ldisc +EXPORT_SYMBOL vmlinux 0xfda5f7af skb_flow_dissect_ct EXPORT_SYMBOL vmlinux 0xfda9581f prandom_u32 +EXPORT_SYMBOL vmlinux 0xfdaf895e qdisc_hash_add EXPORT_SYMBOL vmlinux 0xfdb7f6a9 finish_wait EXPORT_SYMBOL vmlinux 0xfdc0638f __traceiter_dma_fence_emit EXPORT_SYMBOL vmlinux 0xfdcc8a0e fb_find_best_display -EXPORT_SYMBOL vmlinux 0xfdd95266 __dynamic_netdev_dbg -EXPORT_SYMBOL vmlinux 0xfde4ef67 __blk_rq_map_sg +EXPORT_SYMBOL vmlinux 0xfdd4b44b unregister_netdevice_notifier_net +EXPORT_SYMBOL vmlinux 0xfde1cc36 kern_path_create +EXPORT_SYMBOL vmlinux 0xfdfb24b3 tcp_sendmsg EXPORT_SYMBOL vmlinux 0xfe029963 unregister_inetaddr_notifier -EXPORT_SYMBOL vmlinux 0xfe321e36 path_has_submounts -EXPORT_SYMBOL vmlinux 0xfe3e4921 sk_reset_timer -EXPORT_SYMBOL vmlinux 0xfe4027ac remap_pfn_range +EXPORT_SYMBOL vmlinux 0xfe14fe11 sock_no_connect +EXPORT_SYMBOL vmlinux 0xfe1583cd tc_setup_cb_call EXPORT_SYMBOL vmlinux 0xfe487975 init_wait_entry +EXPORT_SYMBOL vmlinux 0xfe4d02df vlan_dev_vlan_id EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz -EXPORT_SYMBOL vmlinux 0xfe61d643 netpoll_print_options -EXPORT_SYMBOL vmlinux 0xfe6edbe0 sched_autogroup_create_attach -EXPORT_SYMBOL vmlinux 0xfe712340 end_buffer_write_sync EXPORT_SYMBOL vmlinux 0xfe771463 __tracepoint_s390_cio_csch +EXPORT_SYMBOL vmlinux 0xfe9bd92e netlink_ns_capable +EXPORT_SYMBOL vmlinux 0xfe9db9ef napi_schedule_prep +EXPORT_SYMBOL vmlinux 0xfeae7cf4 kmem_cache_free +EXPORT_SYMBOL vmlinux 0xfeaff80c netdev_emerg EXPORT_SYMBOL vmlinux 0xfeb5d0aa verify_spi_info -EXPORT_SYMBOL vmlinux 0xfed261de md_error EXPORT_SYMBOL vmlinux 0xfedcdb60 seq_hlist_next_percpu -EXPORT_SYMBOL vmlinux 0xfee1094f pudp_xchg_direct -EXPORT_SYMBOL vmlinux 0xfee9f655 pcim_iomap_regions -EXPORT_SYMBOL vmlinux 0xfefc1f30 scsi_block_when_processing_errors +EXPORT_SYMBOL vmlinux 0xfee8d66d sock_gettstamp +EXPORT_SYMBOL vmlinux 0xff0ffbb0 fs_param_is_bool +EXPORT_SYMBOL vmlinux 0xff19625f scsi_bios_ptable EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start EXPORT_SYMBOL vmlinux 0xff1f0ae2 add_virt_timer -EXPORT_SYMBOL vmlinux 0xff1f0e7d fs_param_is_s32 -EXPORT_SYMBOL vmlinux 0xff2da5f2 put_ipc_ns +EXPORT_SYMBOL vmlinux 0xff3f6f41 ethtool_get_phc_vclocks +EXPORT_SYMBOL vmlinux 0xff453b41 __alloc_skb +EXPORT_SYMBOL vmlinux 0xff488119 blk_mq_tag_to_rq +EXPORT_SYMBOL vmlinux 0xff54401f debug_unregister +EXPORT_SYMBOL vmlinux 0xff55a4d1 elv_rb_del EXPORT_SYMBOL vmlinux 0xff65e3ba kobject_init EXPORT_SYMBOL vmlinux 0xff6878cf fb_default_cmap EXPORT_SYMBOL vmlinux 0xff7ad1b5 krealloc -EXPORT_SYMBOL vmlinux 0xff7ba5df __cleancache_init_fs EXPORT_SYMBOL vmlinux 0xff7ec0ff dma_fence_get_stub -EXPORT_SYMBOL vmlinux 0xff7f57e4 set_page_dirty_lock EXPORT_SYMBOL vmlinux 0xff8b56a9 wait_for_completion_timeout -EXPORT_SYMBOL vmlinux 0xff9eaac1 noop_fsync -EXPORT_SYMBOL vmlinux 0xffafa744 get_tree_single -EXPORT_SYMBOL vmlinux 0xffb5e003 qdisc_put_unlocked +EXPORT_SYMBOL vmlinux 0xffa75362 tcf_exts_num_actions +EXPORT_SYMBOL vmlinux 0xffb34df8 audit_log_start EXPORT_SYMBOL vmlinux 0xffbf5a41 wait_for_completion_killable +EXPORT_SYMBOL vmlinux 0xffc9485f dma_pool_create +EXPORT_SYMBOL vmlinux 0xffcc05d8 elv_bio_merge_ok EXPORT_SYMBOL vmlinux 0xffcc4ec7 tcp_bpf_bypass_getsockopt -EXPORT_SYMBOL vmlinux 0xffde4f7f qdisc_tree_reduce_backlog -EXPORT_SYMBOL vmlinux 0xffe64bc6 tso_build_hdr -EXPORT_SYMBOL vmlinux 0xffe72731 skb_prepare_seq_read -EXPORT_SYMBOL vmlinux 0xffe883c1 truncate_pagecache_range -EXPORT_SYMBOL vmlinux 0xffe94d66 iterate_dir EXPORT_SYMBOL vmlinux 0xffeedf6a delayed_work_timer_fn -EXPORT_SYMBOL_GPL arch/s390/crypto/sha_common 0x19ec330b s390_sha_final -EXPORT_SYMBOL_GPL arch/s390/crypto/sha_common 0xf5e1eb30 s390_sha_update -EXPORT_SYMBOL_GPL arch/s390/net/pnet 0xb41087f5 pnet_id_by_dev_port -EXPORT_SYMBOL_GPL crypto/af_alg 0x00740d73 af_alg_free_sg -EXPORT_SYMBOL_GPL crypto/af_alg 0x0b45fce7 af_alg_alloc_areq -EXPORT_SYMBOL_GPL crypto/af_alg 0x0b939393 af_alg_free_resources -EXPORT_SYMBOL_GPL crypto/af_alg 0x16e0f3b1 af_alg_register_type -EXPORT_SYMBOL_GPL crypto/af_alg 0x3a5f9d31 af_alg_sendmsg -EXPORT_SYMBOL_GPL crypto/af_alg 0x4581e96d af_alg_wait_for_data -EXPORT_SYMBOL_GPL crypto/af_alg 0x4e283112 af_alg_sendpage -EXPORT_SYMBOL_GPL crypto/af_alg 0x615fcda6 af_alg_pull_tsgl -EXPORT_SYMBOL_GPL crypto/af_alg 0x83e58e27 af_alg_wmem_wakeup -EXPORT_SYMBOL_GPL crypto/af_alg 0x858017fe af_alg_release -EXPORT_SYMBOL_GPL crypto/af_alg 0x9cf5d9ef af_alg_make_sg -EXPORT_SYMBOL_GPL crypto/af_alg 0xb1eaa117 af_alg_count_tsgl -EXPORT_SYMBOL_GPL crypto/af_alg 0xe8743013 af_alg_unregister_type -EXPORT_SYMBOL_GPL crypto/af_alg 0xe96e71b3 af_alg_get_rsgl -EXPORT_SYMBOL_GPL crypto/af_alg 0xebef37ec af_alg_accept -EXPORT_SYMBOL_GPL crypto/af_alg 0xefef07f8 af_alg_release_parent -EXPORT_SYMBOL_GPL crypto/af_alg 0xf7ab5d67 af_alg_poll -EXPORT_SYMBOL_GPL crypto/af_alg 0xffcb7c8f af_alg_async_cb -EXPORT_SYMBOL_GPL crypto/asymmetric_keys/asym_tpm 0x675c75e3 asym_tpm_subtype +EXPORT_SYMBOL_GPL arch/s390/crypto/sha_common 0xcb29836a s390_sha_final +EXPORT_SYMBOL_GPL arch/s390/crypto/sha_common 0xd59244f1 s390_sha_update +EXPORT_SYMBOL_GPL arch/s390/net/pnet 0xb314ab11 pnet_id_by_dev_port +EXPORT_SYMBOL_GPL crypto/af_alg 0x14e828e8 af_alg_free_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x27b00620 af_alg_release +EXPORT_SYMBOL_GPL crypto/af_alg 0x2cc00365 af_alg_make_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x34f71d27 af_alg_free_resources +EXPORT_SYMBOL_GPL crypto/af_alg 0x42a2dab0 af_alg_async_cb +EXPORT_SYMBOL_GPL crypto/af_alg 0x42b8b6cf af_alg_register_type +EXPORT_SYMBOL_GPL crypto/af_alg 0x4496f876 af_alg_sendpage +EXPORT_SYMBOL_GPL crypto/af_alg 0x4b2c5abf af_alg_pull_tsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0x504b18c9 af_alg_count_tsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0x693b9aa7 af_alg_accept +EXPORT_SYMBOL_GPL crypto/af_alg 0x84b6e447 af_alg_release_parent +EXPORT_SYMBOL_GPL crypto/af_alg 0xa09a2c90 af_alg_wait_for_data +EXPORT_SYMBOL_GPL crypto/af_alg 0xa316ee52 af_alg_sendmsg +EXPORT_SYMBOL_GPL crypto/af_alg 0xb5b421aa af_alg_get_rsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0xb78cd169 af_alg_wmem_wakeup +EXPORT_SYMBOL_GPL crypto/af_alg 0xd1478b46 af_alg_unregister_type +EXPORT_SYMBOL_GPL crypto/af_alg 0xfc0c762d af_alg_alloc_areq +EXPORT_SYMBOL_GPL crypto/af_alg 0xfd972f6c af_alg_poll EXPORT_SYMBOL_GPL crypto/asymmetric_keys/asym_tpm 0x7430f97c tpm_key_create -EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0xa947aa16 async_memcpy -EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x3bb965ff async_gen_syndrome -EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x966feb7f async_syndrome_val -EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x0a2e6662 async_raid6_2data_recov -EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0xb3e965f0 async_raid6_datap_recov -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x1d831ed4 async_tx_submit -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x6861e62d async_tx_quiesce -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xbd8f2ccf async_trigger_callback -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x18d9cdea async_xor -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x4bd9426b async_xor_val_offs -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x5678cfa2 async_xor_offs -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x987abd00 async_xor_val +EXPORT_SYMBOL_GPL crypto/asymmetric_keys/asym_tpm 0xbdd59476 asym_tpm_subtype +EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0x63de9a9e async_memcpy +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x1a7e72e9 async_syndrome_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0xcb345156 async_gen_syndrome +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x010bccd9 async_raid6_2data_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x30b0302d async_raid6_datap_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x0bd1477e async_tx_quiesce +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x99c7b839 async_trigger_callback +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xea92580f async_tx_submit +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x088eb755 async_xor_offs +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x3274eb97 async_xor_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x595ad329 async_xor_val_offs +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x757a8854 async_xor EXPORT_SYMBOL_GPL crypto/authenc 0x2479193e crypto_authenc_extractkeys -EXPORT_SYMBOL_GPL crypto/blowfish_common 0xb520c8fa blowfish_setkey +EXPORT_SYMBOL_GPL crypto/blowfish_common 0x2062b7f9 blowfish_setkey EXPORT_SYMBOL_GPL crypto/cast5_generic 0x188d9d26 __cast5_decrypt -EXPORT_SYMBOL_GPL crypto/cast5_generic 0x841687d5 cast5_setkey +EXPORT_SYMBOL_GPL crypto/cast5_generic 0x50ae5418 cast5_setkey EXPORT_SYMBOL_GPL crypto/cast5_generic 0xef81a4af __cast5_encrypt EXPORT_SYMBOL_GPL crypto/cast6_generic 0x3dbae082 __cast6_decrypt -EXPORT_SYMBOL_GPL crypto/cast6_generic 0x9f9cc9cf cast6_setkey +EXPORT_SYMBOL_GPL crypto/cast6_generic 0xcc35f0ac 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 0x098d94fb cryptd_aead_queued -EXPORT_SYMBOL_GPL crypto/cryptd 0x22999e62 cryptd_aead_child -EXPORT_SYMBOL_GPL crypto/cryptd 0x390d1225 cryptd_alloc_skcipher -EXPORT_SYMBOL_GPL crypto/cryptd 0x3d586567 cryptd_ahash_child -EXPORT_SYMBOL_GPL crypto/cryptd 0x4197ee3d cryptd_ahash_queued -EXPORT_SYMBOL_GPL crypto/cryptd 0x4d678c86 cryptd_alloc_ahash -EXPORT_SYMBOL_GPL crypto/cryptd 0x547587f7 cryptd_free_skcipher -EXPORT_SYMBOL_GPL crypto/cryptd 0x5618a96e cryptd_skcipher_queued -EXPORT_SYMBOL_GPL crypto/cryptd 0x66ad637e cryptd_alloc_aead -EXPORT_SYMBOL_GPL crypto/cryptd 0x6ee0bd95 cryptd_skcipher_child -EXPORT_SYMBOL_GPL crypto/cryptd 0x73edcf6d cryptd_free_ahash -EXPORT_SYMBOL_GPL crypto/cryptd 0xd3c81aaf cryptd_free_aead -EXPORT_SYMBOL_GPL crypto/cryptd 0xf28438ec cryptd_shash_desc -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x0652b23f crypto_transfer_hash_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x22849041 crypto_transfer_skcipher_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x3afb70ff crypto_engine_alloc_init -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x5e0fc82b crypto_transfer_aead_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x62df42fd crypto_finalize_skcipher_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x6eee9ed3 crypto_engine_start -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x7f910b81 crypto_finalize_aead_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x9e1fa705 crypto_engine_exit -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xb9c3ee99 crypto_engine_stop -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xccec50ba crypto_finalize_akcipher_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xcf9c8bc7 crypto_engine_alloc_init_and_set -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xd2bb1f05 crypto_finalize_hash_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xfa89ece1 crypto_transfer_akcipher_request_to_engine +EXPORT_SYMBOL_GPL crypto/cryptd 0x02532340 cryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0x21e58197 cryptd_free_skcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0x2306ca24 cryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x3df428fe cryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/cryptd 0x445b0188 cryptd_ahash_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0x98848030 cryptd_skcipher_child +EXPORT_SYMBOL_GPL crypto/cryptd 0xa4742e23 cryptd_aead_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0xc07211f0 cryptd_skcipher_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0xc0ccd27f cryptd_alloc_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0xc15db774 cryptd_aead_child +EXPORT_SYMBOL_GPL crypto/cryptd 0xdd2c21b9 cryptd_free_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0xe4fbf62a cryptd_alloc_skcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0xf6557ea1 cryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x067f8e49 crypto_finalize_aead_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x1e9c8509 crypto_engine_alloc_init +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x26e4e157 crypto_engine_stop +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x6a96136b crypto_engine_exit +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x71bc854a crypto_engine_start +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x741596a7 crypto_transfer_aead_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x7bcbd291 crypto_transfer_skcipher_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x99e6510c crypto_transfer_akcipher_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xa32fbacf crypto_finalize_hash_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xb23f8ab6 crypto_engine_alloc_init_and_set +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xc19faef2 crypto_finalize_akcipher_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xd39c108e crypto_transfer_hash_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xe6d4d743 crypto_finalize_skcipher_request EXPORT_SYMBOL_GPL crypto/ecdh_generic 0x33b866ce crypto_ecdh_decode_key EXPORT_SYMBOL_GPL crypto/ecdh_generic 0x7475be8e crypto_ecdh_key_len EXPORT_SYMBOL_GPL crypto/ecdh_generic 0xb230d2ec crypto_ecdh_encode_key EXPORT_SYMBOL_GPL crypto/serpent_generic 0x4eb4c55e __serpent_encrypt -EXPORT_SYMBOL_GPL crypto/serpent_generic 0x7d3af996 serpent_setkey +EXPORT_SYMBOL_GPL crypto/serpent_generic 0xadcc25b1 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_generic 0x0bddca87 sm3_zero_message_hash -EXPORT_SYMBOL_GPL crypto/twofish_common 0x032f57a7 twofish_setkey +EXPORT_SYMBOL_GPL crypto/twofish_common 0xcac7e1a2 twofish_setkey EXPORT_SYMBOL_GPL crypto/twofish_common 0xe22b7787 __twofish_setkey -EXPORT_SYMBOL_GPL drivers/dax/device_dax 0x6dfc2e11 dev_dax_probe -EXPORT_SYMBOL_GPL drivers/fpga/altera-pr-ip-core 0x0739019c alt_pr_register -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x0a262a74 fpga_mgr_load -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x0d096adc devm_fpga_mgr_register -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x11c7bb79 fpga_mgr_lock -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x13cc52a6 fpga_mgr_unregister -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x601d69a9 fpga_mgr_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x61cf098a fpga_image_info_alloc -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x6b6318c7 fpga_mgr_put -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x9f5ae8b0 fpga_mgr_unlock -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xa179976e of_fpga_mgr_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xb4102c14 fpga_mgr_free -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xb89c39b3 fpga_mgr_register -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xc38927ae fpga_mgr_create -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xdaa23b19 fpga_image_info_free -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xf53e7a79 devm_fpga_mgr_create -EXPORT_SYMBOL_GPL drivers/gpio/gpio-generic 0x74ff7ce1 bgpio_init -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x07c31907 drm_get_unmapped_area -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x3bb22238 drm_bridge_hpd_notify -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x4461f8f6 drmm_kstrdup -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x48d54c4d drm_bridge_hpd_disable -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x4e2e1d02 drm_hdcp_check_ksvs_revoked -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x625b8b75 drm_class_device_unregister -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x65ab963f drm_gem_shmem_prime_import_sg_table -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x71b52f9b drm_gem_shmem_mmap -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x78ba49da drm_bridge_get_edid -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x7a327afc drm_do_get_edid -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x83adf193 drm_gem_shmem_get_pages_sgt -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x86907bb7 drm_bridge_get_modes -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x8e7c362a drm_crtc_add_crc_entry -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x9064630d drm_gem_dumb_map_offset -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x919d291d drm_gem_shmem_dumb_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x948bc615 drm_bridge_detect -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xa0965bd6 drm_class_device_register -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xaf389d28 drm_gem_shmem_free_object -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xb6f99392 drm_bridge_hpd_enable -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xd0ce7f22 drm_gem_shmem_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xf0badc56 drm_gem_shmem_get_sg_table -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x3f7898d9 drm_bridge_connector_enable_hpd -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x875141c6 drm_gem_fb_create_with_dirty -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x89dad2e9 drm_gem_fb_init_with_funcs -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x92d3f514 drm_bridge_connector_init -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xa8fb7282 drm_bridge_connector_disable_hpd -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xb9279c71 drm_gem_fb_get_obj -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xca32478c drm_gem_fb_afbc_init -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xdaf11a19 drm_gem_plane_helper_prepare_fb -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xe89b105a drm_gem_fb_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xeda899bf drm_gem_fb_create_with_funcs -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x2aec617d intel_th_free -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x71048e16 intel_th_alloc -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x81a81feb intel_th_trace_switch -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x95e1a859 intel_th_driver_unregister -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x9e89de50 intel_th_set_output -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x9fcf6eed intel_th_output_enable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xdab90805 intel_th_driver_register -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xf9d47a8f intel_th_trace_enable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xfd15924f intel_th_trace_disable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x4bb8fdfd intel_th_msu_buffer_register -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0xd4394e0f intel_th_msc_window_unlock -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0xd7308179 intel_th_msu_buffer_unregister -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x17680c71 to_pdrv_policy_node -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x21163b01 stm_register_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x293acede stm_unregister_protocol -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x2b2dfc39 stm_unregister_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x3e4b5aa4 stm_source_register_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x58cb8637 stm_data_write -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x81f828a2 stm_source_unregister_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xc7705101 stm_register_protocol -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xfb3bbb39 stm_source_write -EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x0fc8b878 i2c_new_client_device -EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x1ef925a9 i2c_match_id -EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x3e5c5d2d i2c_parse_fw_timings +EXPORT_SYMBOL_GPL drivers/dax/device_dax 0x34ba3166 dev_dax_probe +EXPORT_SYMBOL_GPL drivers/fpga/altera-pr-ip-core 0xf8d1e265 alt_pr_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x04a1a900 fpga_mgr_free +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x2424dc43 fpga_mgr_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x37fed4a9 fpga_mgr_load +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x38c3bc25 fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x38f790c8 fpga_mgr_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x5220a336 fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x5cb10e63 of_fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x799e0ea1 fpga_mgr_lock +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x82f8d804 fpga_image_info_alloc +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x92d84590 fpga_mgr_create +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x97e8852e fpga_image_info_free +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xa547d0f5 fpga_mgr_unlock +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xb4de6b84 devm_fpga_mgr_create +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xc8968309 devm_fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/gpio/gpio-generic 0xcd154823 bgpio_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x05c4fc28 drm_bridge_detect +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x0ce1b507 drm_gem_dumb_map_offset +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x4407a09f drm_gem_shmem_mmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x581d1a0c drm_class_device_register +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x5ce94a0f drm_get_unmapped_area +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x87e4adc6 drm_gem_shmem_free_object +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x92c92e4f drm_gem_shmem_get_pages_sgt +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x934f1110 drm_bridge_hpd_enable +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x93e5cfad drmm_kstrdup +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x9cf432a3 drm_hdcp_check_ksvs_revoked +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x9f388081 drm_gem_shmem_prime_import_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xa0eda6f4 drm_gem_shmem_get_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xc637050f drm_class_device_unregister +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xd1d48e05 drm_bridge_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xd31c4a06 drm_do_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xdbb37508 drm_gem_shmem_dumb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xe0850e19 drm_bridge_hpd_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xec651032 drm_gem_shmem_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xedd53982 drm_crtc_add_crc_entry +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xf1974934 drm_bridge_hpd_notify +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xfbe825d5 drm_bridge_get_modes +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x50610b9a drm_gem_fb_afbc_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x6ceb3b3e drm_gem_fb_get_obj +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x7108c905 drm_bridge_connector_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x8e2d98d6 drm_bridge_connector_disable_hpd +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xa68df08f drm_gem_fb_create_with_dirty +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xa69fcf8c drm_bridge_connector_enable_hpd +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xd82e9919 drm_gem_fb_init_with_funcs +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xf1b37460 drm_gem_plane_helper_prepare_fb +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xf72534a7 drm_gem_fb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xf90433b1 drm_gem_fb_create_with_funcs +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x0212fa52 intel_th_set_output +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x246e2606 intel_th_driver_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x27bafa1e intel_th_trace_switch +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x413ce59c intel_th_driver_register +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x6346e906 intel_th_output_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x9996a51c intel_th_trace_disable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xa0af395e intel_th_alloc +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xba5bed76 intel_th_trace_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xedfe6d43 intel_th_free +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x6d6e9785 intel_th_msc_window_unlock +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0xbc000eaf intel_th_msu_buffer_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0xc4a10350 intel_th_msu_buffer_register +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x151d6cff stm_source_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x1a6ac832 stm_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x2d45683a stm_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x4de99b6a stm_source_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x4e023e57 stm_register_protocol +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x8b2fceb0 to_pdrv_policy_node +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x8c835aed stm_unregister_protocol +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xc6fe3aa4 stm_data_write +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xe82b6730 stm_source_write +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x01002213 i2c_new_ancillary_device +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x0bd89c35 i2c_probe_func_quick_read +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x0c37df61 i2c_new_client_device +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x12b7e56c devm_i2c_new_dummy_device +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x1fb8b127 i2c_for_each_dev +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x259c97e2 i2c_match_id +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x36be320e i2c_parse_fw_timings +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x3d52e764 i2c_new_scanned_device EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x42041512 i2c_get_dma_safe_msg_buf -EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x49622303 i2c_unregister_device +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x42bed45e devm_i2c_add_adapter EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x4dae16e4 i2c_put_dma_safe_msg_buf -EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x5437d760 i2c_for_each_dev EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x550f3e05 i2c_freq_mode_string -EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x5c538860 i2c_probe_func_quick_read -EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x6ae24a00 i2c_new_ancillary_device -EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x6b3a716d i2c_new_dummy_device -EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x6f4dc678 i2c_bus_type -EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x7570c5dd i2c_recover_bus -EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x96f7f842 i2c_adapter_type -EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xa44bac6f i2c_handle_smbus_host_notify -EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xa78d3103 i2c_get_device_id -EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xa887b4df devm_i2c_add_adapter -EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xaa8a0bad i2c_adapter_depth -EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xbf0b8661 i2c_client_type -EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xc0963390 i2c_add_numbered_adapter -EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xc2f770a8 i2c_new_scanned_device -EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xd607d428 i2c_new_smbus_alert_device -EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xe70a6170 devm_i2c_new_dummy_device -EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xf1c8d251 i2c_generic_scl_recovery -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x1ae59b44 i2c_mux_alloc -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x24e90a9c i2c_root_adapter -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x5347fe8a i2c_mux_del_adapters -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x84f10a63 i2c_mux_add_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x59139e4b i2c_unregister_device +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x6ca1febe i2c_recover_bus +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x6d63d2be i2c_new_smbus_alert_device +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x7476de9c i2c_adapter_type +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x85e8fd5e i2c_generic_scl_recovery +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x86574ca8 i2c_client_type +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xa62de87e i2c_new_dummy_device +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xc91e4544 i2c_handle_smbus_host_notify +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xd9b0345b i2c_bus_type +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xda03a3c6 i2c_add_numbered_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xdbc63c4c i2c_get_device_id +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xe11157c0 i2c_adapter_depth +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x1eb5bcf1 i2c_mux_alloc +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x2303449e i2c_mux_add_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x839ee03d i2c_mux_del_adapters +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xa3a9b260 i2c_root_adapter EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x1cdfa768 rtrs_send_hb_ack -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x584787f9 rtrs_start_hb -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x5c637b11 rtrs_iu_post_recv -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x5d7908ba rtrs_iu_free -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x837b1cbb rtrs_init_hb -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x86f1aef0 rtrs_iu_alloc -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x8da57cda rtrs_stop_hb -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xa156e98e rtrs_cq_qp_create -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xaa652d05 rtrs_cq_qp_destroy -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xb5e44a1c rtrs_iu_post_rdma_write_imm -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xbb3f439a rtrs_iu_post_send -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xc40fb2f3 rtrs_post_recv_empty +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x2a33a815 rtrs_iu_alloc +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x4bdbd610 rtrs_iu_post_recv +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x9cecaa8c rtrs_cq_qp_create +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xa76244a0 rtrs_iu_post_rdma_write_imm +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xb085b14d rtrs_cq_qp_destroy +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xb8f62095 rtrs_post_recv_empty +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xb90b6d1a rtrs_init_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xc3ce4cf9 rtrs_send_hb_ack +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xc8d9945b rtrs_stop_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xcbc8e301 rtrs_iu_free +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xdf6dd713 rtrs_iu_post_send +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xfeedc75b rtrs_start_hb +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x01f68774 __traceiter_bcache_bypass_congested +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0475ec26 __traceiter_bcache_btree_node_split 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 0x0ef65a90 __traceiter_bcache_btree_node_alloc +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x159f5e5c __traceiter_bcache_alloc_fail 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 @@ -7523,118 +7530,116 @@ EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1c83d5b7 __SCK__tp_func_bcache_journal_entry_full EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x22ae6324 __SCK__tp_func_bcache_btree_node_split EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2766fb04 __traceiter_bcache_journal_replay_key -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2800f27e __traceiter_bcache_btree_cache_cannibalize 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 0x320c76da __traceiter_bcache_request_start EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3257d343 __tracepoint_bcache_gc_copy -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3efe6846 __traceiter_bcache_gc_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x44acde3e __traceiter_bcache_btree_node_free 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 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 0x5568db81 __traceiter_bcache_journal_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5a0f155b __traceiter_bcache_btree_set_root EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5cc8cb86 __tracepoint_bcache_btree_insert_key EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5d9c8fc8 __SCK__tp_func_bcache_cache_insert EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 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 0x61fbbd48 __traceiter_bcache_btree_cache_cannibalize 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 0x724b4cca __traceiter_bcache_btree_node_free -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x79d667e1 __traceiter_bcache_bypass_congested +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x72b896c0 __traceiter_bcache_gc_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x72e4a4e4 __traceiter_bcache_gc_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x75898a63 __traceiter_bcache_journal_entry_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x76ff3efd __traceiter_bcache_btree_read 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 0x7d027269 __traceiter_bcache_btree_node_compact EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x80e3881d __SCK__tp_func_bcache_request_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x829176d1 __traceiter_bcache_journal_entry_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x82a476e5 __traceiter_bcache_btree_node_compact EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x830df522 __tracepoint_bcache_btree_node_split -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x836d12d9 __traceiter_bcache_invalidate EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x862dfa21 __tracepoint_bcache_btree_cache_cannibalize -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x886bd195 __traceiter_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x866b2f45 __traceiter_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x867b2842 __traceiter_bcache_read EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8ad20d61 __SCK__tp_func_bcache_request_start EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x902cb523 __tracepoint_bcache_gc_copy_collision -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x977cc091 __traceiter_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x972abfbb __traceiter_bcache_write 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 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 0xa64134e4 __SCK__tp_func_bcache_journal_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa8342176 __traceiter_bcache_bypass_sequential EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa842a5c8 __SCK__tp_func_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa91c4df8 __traceiter_bcache_request_end EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xad6440b4 __traceiter_bcache_gc_copy -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb1d0f4a3 __traceiter_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xaf3f9cfd __traceiter_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb24243ec __traceiter_bcache_btree_node_alloc EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb5a62a8c __traceiter_bcache_cache_insert -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb8cbcacc __traceiter_bcache_btree_insert_key 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 0xbe94c9a0 __traceiter_bcache_request_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc0fbc34d __traceiter_bcache_btree_insert_key EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc1857470 __tracepoint_bcache_bypass_congested -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc54527d5 __traceiter_bcache_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc2ec2304 __traceiter_bcache_journal_write 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 0xce2b2df2 __traceiter_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc970a714 __traceiter_bcache_journal_full EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xce48d6f4 __tracepoint_bcache_alloc_fail EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xda06fe86 __SCK__tp_func_bcache_btree_node_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xdcee8984 __traceiter_bcache_gc_start -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xdfbbca57 __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 0xe2c22743 __traceiter_bcache_read -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe588bab1 __traceiter_bcache_read_retry +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe2741176 __traceiter_bcache_read_retry +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe440073d __traceiter_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe483445b __traceiter_bcache_btree_set_root EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xec29e22a __traceiter_bcache_gc_copy_collision EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xec92a163 __SCK__tp_func_bcache_btree_cache_cannibalize EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xed37c90e __tracepoint_bcache_cache_insert EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xee55d047 __tracepoint_bcache_journal_write EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xef7eec02 __tracepoint_bcache_btree_gc_coalesce -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf5a7941c __traceiter_bcache_write 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 0xfa0e38b7 __traceiter_bcache_btree_node_alloc_fail 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/bcache/bcache 0xffb9fe15 __traceiter_bcache_journal_write -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x006f899e dm_bio_prison_free_cell_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x013cbc00 dm_bio_prison_alloc_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x0732e814 dm_cell_visit_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x00ece069 dm_cell_visit_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x0bf2eb59 dm_cell_lock_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x11c45f57 dm_bio_detain +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x1255dbd1 dm_bio_prison_free_cell_v2 EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x17dd39d6 dm_deferred_set_create -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2706854b dm_cell_put_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x1a23b4fb dm_get_cell EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2eb01e04 dm_deferred_set_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x38f7f5d5 dm_bio_detain +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x3234839c dm_cell_put_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x44493b7c dm_bio_prison_free_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x4656e6f9 dm_cell_promote_or_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x5783751c dm_cell_quiesce_v2 EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x6791a44e dm_deferred_entry_dec EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x753e20b2 dm_bio_prison_create -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x78424bde dm_cell_promote_or_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x8f189dd8 dm_cell_quiesce_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x912e58a4 dm_cell_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x9c8b0ccb dm_cell_error +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xa0970d56 dm_cell_get_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xa73b5dcc dm_cell_unlock_v2 EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xace9b57b dm_bio_prison_destroy_v2 EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb6d5c65d dm_deferred_set_add_work EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb70b342a dm_bio_prison_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xc52692c6 dm_bio_prison_free_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb88d58f6 dm_cell_release EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xca2e3a88 dm_deferred_entry_inc -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xcdccbc12 dm_cell_lock_promote_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xd31fe541 dm_get_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xd8e317ac dm_cell_unlock_v2 EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xd99e003d dm_bio_prison_create_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xda359085 dm_cell_release_no_holder -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xe058289d dm_cell_lock_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xeb580e02 dm_cell_get_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xecbc7b86 dm_bio_prison_alloc_cell_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xf5794b4f dm_cell_error +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xebcf0c41 dm_bio_prison_alloc_cell_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xefb39510 dm_bio_prison_alloc_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xf2415b9a dm_cell_release_no_holder +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xffc143fa dm_cell_lock_promote_v2 EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x0ad0dc4f dm_bufio_mark_buffer_dirty EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x111ab12a dm_bufio_mark_partial_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 0x4bdf9173 dm_bufio_client_create EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6aebce95 dm_bufio_issue_discard EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6d3f57bd dm_bufio_get_client EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x72f07bf4 dm_bufio_set_minimum_buffers EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x74dcd98c dm_bufio_get_aux_data EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x7c381a76 dm_bufio_get_block_size -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x7e7e9b0e dm_bufio_client_create EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x867e87eb dm_bufio_get_dm_io_client EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xa82b2066 dm_bufio_write_dirty_buffers EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xb04f56ab dm_bufio_read @@ -7653,32 +7658,29 @@ EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x0efbca4c btracker_promotion_already_present EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x5adc2807 btracker_destroy EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x5de611a9 btracker_nr_writebacks_queued -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x6f535e12 dm_cache_policy_register -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x6f938af4 dm_cache_policy_unregister EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x796a703b dm_cache_policy_get_version +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x7bf17edb dm_cache_policy_unregister 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 0xbf1a2968 btracker_create +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xcba686ab dm_cache_policy_register EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xccfe6409 btracker_nr_demotions_queued EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xd638ed27 dm_cache_policy_get_name EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xe1bb31c4 dm_cache_policy_create EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xe756dac6 dm_cache_policy_get_hint_size EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xe8c5320d dm_cache_policy_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0xd3f72f8e dm_register_path_selector -EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0xe2f6f960 dm_unregister_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x12954305 dm_unregister_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x28d3fe36 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 0x06bb3adf dm_rh_dirty_log -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x0c236205 dm_region_hash_create -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x0e831509 dm_rh_bio_to_region +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x204529b9 dm_rh_delay +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x369572d8 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 0x3bae4875 dm_rh_inc_pending -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x3c0df05d dm_rh_mark_nosync +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x45073565 dm_rh_bio_to_region 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 0x61fb0578 dm_rh_delay EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7774620f dm_rh_stop_recovery EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7d053fc5 dm_rh_start_recovery EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7d5e1815 dm_rh_get_region_key @@ -7686,6 +7688,9 @@ EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa83588eb dm_rh_recovery_end EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xbe38a431 dm_rh_recovery_prepare EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xd8aa4284 dm_rh_region_context +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xdd891493 dm_rh_inc_pending +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xefb44e37 dm_region_hash_create +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xf1aa054c 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/persistent-data/dm-persistent-data 0x0054f69d dm_tm_pre_commit @@ -7726,6 +7731,7 @@ EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7b047bd9 dm_tm_create_non_blocking_clone EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7bc7621f dm_btree_cursor_end EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7e29c59d dm_bitset_clear_bit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x82fc96fc dm_block_manager_create EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x87c934be dm_tm_inc EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x88295b96 dm_tm_unlock EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x88998224 dm_disk_bitset_init @@ -7755,7 +7761,6 @@ EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd163cade dm_tm_commit EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd237b9fb dm_array_walk EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd39c0246 dm_btree_cursor_get_value -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd4d42ef8 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 0xe8438eb5 dm_array_del EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf551114d dm_bm_checksum @@ -7764,854 +7769,855 @@ EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xfce51d79 dm_array_empty EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0x472340b2 st_unregister EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0xc8e56e36 st_register -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0099f6bc mlx4_unregister_interface -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x01433864 mlx4_update_qp -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x015912bb mlx4_get_counter_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x02a1fa55 mlx4_get_default_counter_index -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0538ed1b mlx4_pd_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x07352f99 mlx4_hw_rule_sz -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x08e7785a mlx4_set_admin_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x08f11618 mlx4_counter_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0d3f92c4 mlx4_srq_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x15f75da5 mlx4_get_vf_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x18d4f1bb mlx4_unicast_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1aab3734 mlx4_mr_hw_change_access -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1de74f77 mlx4_set_vf_spoofchk -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x26441e6e mlx4_phys_to_slave_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x26fda993 mlx4_bf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x27219d3a mlx4_pd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x292277ce mlx4_free_hwq_res -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2c3630e1 mlx4_srq_arm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2cabc221 mlx4_counter_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3097c263 mlx4_get_active_ports -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x32588535 mlx4_find_cached_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x34d3ce9c __mlx4_cmd -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x34d760af mlx4_mw_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3507f0ea mlx4_srq_lookup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x35b6cc61 mlx4_set_vf_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x36bed8ad mlx4_mr_hw_write_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3b4facc8 mlx4_SYNC_TPT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x40311cda mlx4_wol_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x417638d2 mlx4_CLOSE_PORT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x41b4aa64 mlx4_mr_hw_change_pd -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x43aa3c2b mlx4_unbond -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x43ca3e5e mlx4_mr_hw_put_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x446fbb06 mlx4_get_base_qpn -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x479ac7ef mlx4_unicast_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x479ff1a8 mlx4_port_map_set -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x497aa7b6 mlx4_free_cmd_mailbox -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4ab67d5f mlx4_mr_hw_get_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4b09aae9 mlx4_qp_to_ready -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4c472fa2 mlx4_vf_smi_enabled -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4c9003ab mlx4_srq_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x50cc5b67 mlx4_set_vf_link_state -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x526305a9 mlx4_qp_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x53810621 mlx4_config_dev_retrieval -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x56956f75 mlx4_qp_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x57495c69 mlx4_flow_steer_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5778b2ef mlx4_replace_zero_macs -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x57fed9a8 mlx4_qp_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5d86f1b3 __mlx4_unregister_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x61036c21 mlx4_mw_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x630d6cb1 mlx4_set_vf_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x63ab3243 mlx4_get_vf_config -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x689d0241 mlx4_buf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6c7e8400 mlx4_unicast_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6dc5b507 mlx4_flow_steer_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x70728ab0 mlx4_mw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x72c580b4 mlx4_qp_release_range -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x73a5afd0 mlx4_mtt_cleanup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7612d255 mlx4_cq_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7cc0bdb5 mlx4_xrcd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7d22eb03 mlx4_phys_to_slaves_pport_actv -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x86947b25 mlx4_uar_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x87403c30 __mlx4_register_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8b7ab3f8 mlx4_bf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8be540c9 mlx4_mr_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8bfb0b10 mlx4_get_devlink_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8c3d897c mlx4_bond -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x94ee7ecf mlx4_unicast_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9a7d198e mlx4_mr_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9ea1c1b9 mlx4_xrcd_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa2a90552 mlx4_flow_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa7e8a8ef mlx4_mr_rereg_mem_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xad6f03a0 mlx4_alloc_cmd_mailbox -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaf273dcc mlx4_ACCESS_PTYS_REG -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb1d30f5e mlx4_wol_read -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb418e14e mlx4_register_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb508527b mlx4_unregister_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb53a5cc1 mlx4_get_admin_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb784bf07 mlx4_flow_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb9dfa07e mlx4_config_vxlan_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbcd6424d mlx4_multicast_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbdca0e73 mlx4_get_protocol_dev -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbee4713c __mlx4_replace_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc1d96819 mlx4_FLOW_STEERING_IB_UC_QP_RANGE -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc5da4f63 mlx4_multicast_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc5f40cd8 mlx4_find_cached_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc63b32b8 mlx4_map_sw_to_hw_steering_mode -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcf11e28e mlx4_INIT_PORT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd04ca504 mlx4_buf_write_mtt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd1d7c17d mlx4_set_vf_rate -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd6231d8a mlx4_mr_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd737dee5 mlx4_map_sw_to_hw_steering_id -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdacf8a30 mlx4_get_base_gid_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdbcd00cc mlx4_multicast_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdbf19416 mlx4_mtt_addr -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdccebb04 mlx4_qp_reserve_range -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdf2c851b mlx4_vf_get_enable_smi_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdf510334 mlx4_multicast_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdf92dadf mlx4_get_slave_default_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe0844621 mlx4_vf_set_enable_smi_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe0caa0a7 mlx4_qp_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe250ba73 mlx4_cq_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe4a8515c mlx4_get_internal_clock_params -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe4f1bfc3 mlx4_register_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe631b66a mlx4_mr_rereg_mem_cleanup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe6e10090 mlx4_config_roce_v2_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe706deb7 mlx4_slave_convert_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xec9f38c6 mlx4_register_interface -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xed7b8bd4 mlx4_qp_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xedbd99bd mlx4_cq_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf103a741 mlx4_db_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf3b40e11 mlx4_uar_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf402c2f0 mlx4_phys_to_slaves_pport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf4b6ab76 mlx4_cq_resize -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf85f4183 mlx4_srq_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf87a27fa mlx4_write_mtt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf89742ee mlx4_unregister_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf95755a5 mlx4_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfb6d09c6 mlx4_mtt_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfcf40bb0 mlx4_read_clock -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfe65d0d0 mlx4_db_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xff66abcd mlx4_alloc_hwq_res -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x00deec07 mlx5_modify_nic_vport_mac_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0591e1e9 mlx5_query_nic_vport_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x06340f64 mlx5_dm_sw_icm_dealloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x00c22c64 mlx4_multicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0464e753 __mlx4_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x08442c21 mlx4_set_vf_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0cf6a94c mlx4_get_slave_default_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x110f69b1 mlx4_qp_release_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x11e736ed mlx4_multicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x12fd3307 mlx4_multicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1337fc9f mlx4_flow_steer_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x14aa3440 mlx4_srq_lookup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x16621a56 mlx4_get_base_qpn +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x176a9fa4 mlx4_cq_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x17b39bde mlx4_config_dev_retrieval +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1a148cb7 mlx4_map_sw_to_hw_steering_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1c853e2b mlx4_qp_reserve_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1e203932 mlx4_SYNC_TPT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1e901ad2 mlx4_map_sw_to_hw_steering_id +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1f8e58ea mlx4_get_default_counter_index +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2023681e mlx4_mw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x203aa17a mlx4_alloc_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x21656683 mlx4_config_roce_v2_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x22398036 mlx4_find_cached_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x23a94ff1 mlx4_qp_to_ready +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x26e4b72d mlx4_srq_arm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x28fef4a9 mlx4_flow_steer_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2be32773 mlx4_register_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2cdfca62 mlx4_set_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2d43f2ef mlx4_vf_get_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2ddaa44d mlx4_cq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x30e7ca0c mlx4_mr_hw_get_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x31b0e85b mlx4_mr_rereg_mem_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3cd3cadb mlx4_unicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3d40acd3 mlx4_set_vf_rate +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4024cf26 mlx4_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x43f82dd0 mlx4_mw_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x45b519fb mlx4_alloc_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4aacef7c mlx4_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4bbb47f5 mlx4_phys_to_slaves_pport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x55346374 mlx4_unicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x57b1cb7b mlx4_uar_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x58d22674 mlx4_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5917c9e1 mlx4_qp_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x61b7c6a8 mlx4_unregister_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x61f9afbe mlx4_get_vf_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x645e7186 mlx4_mr_rereg_mem_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x64c0e207 mlx4_srq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x64d4cb00 mlx4_update_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x657e8752 __mlx4_replace_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x67ef989a mlx4_mtt_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x68494b4d mlx4_flow_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6a94a1c4 mlx4_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6aaf762c mlx4_set_vf_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6c7ed15c mlx4_get_protocol_dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6ecd497e mlx4_uar_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x704f6c92 mlx4_counter_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x774a9c98 mlx4_qp_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x77556815 mlx4_qp_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x781296e4 mlx4_pd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7820a5ef mlx4_INIT_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x792609f4 mlx4_mtt_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x79946478 mlx4_get_vf_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7be142c0 mlx4_wol_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x83934497 mlx4_config_vxlan_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x84949187 mlx4_srq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8b480a11 mlx4_find_cached_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8e51b4eb mlx4_bond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8e686681 mlx4_read_clock +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x95a2ad28 mlx4_vf_smi_enabled +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x960e3783 mlx4_get_internal_clock_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9baf6d39 mlx4_replace_zero_macs +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9d0a84f4 mlx4_CLOSE_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9dc97cac mlx4_mr_hw_put_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa11e6cfa mlx4_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa1d63ae5 mlx4_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa2815ef0 mlx4_unbond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa2d0a0cf mlx4_get_active_ports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa5d33f7c mlx4_flow_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa9d24d58 mlx4_get_base_gid_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaa75692a mlx4_FLOW_STEERING_IB_UC_QP_RANGE +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xabf82268 mlx4_vf_set_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xadf65053 mlx4_counter_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb063ac87 mlx4_xrcd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb09a824f mlx4_mr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb1b8b67d mlx4_bf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb4392214 mlx4_hw_rule_sz +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb87a088d mlx4_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb8a31f89 mlx4_wol_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xba58dd91 mlx4_mr_hw_change_access +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbd1fd703 __mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc0af07a0 mlx4_mtt_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc0cb0ec6 mlx4_mr_hw_write_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc10f8422 mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc2e7ff0c mlx4_unregister_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc48f3802 mlx4_mw_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc49e8c66 mlx4_set_vf_spoofchk +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc55b05ba mlx4_slave_convert_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc71769cb mlx4_bf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc7cb7c41 mlx4_get_counter_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc8bde44f mlx4_multicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc8e13399 mlx4_phys_to_slaves_pport_actv +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcb18adea mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd1047d4f mlx4_mr_hw_change_pd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd136eaf5 mlx4_ACCESS_PTYS_REG +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd5fdbd62 mlx4_buf_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdc1f2bc6 mlx4_cq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xde6f5878 mlx4_free_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdf79b130 __mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe0d15dbb mlx4_phys_to_slave_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe175ddf9 mlx4_pd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe3f515fb mlx4_mr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe8120bcc mlx4_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe81d1c8c mlx4_get_devlink_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeaddea41 mlx4_unicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xec1c4a56 mlx4_unicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xef49cd3b mlx4_srq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf11c50a1 mlx4_free_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf33a5148 mlx4_set_vf_link_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf577d8ba mlx4_register_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf5b3a0a4 mlx4_mr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfb8636c7 mlx4_get_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfc21853f mlx4_port_map_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfe5fe60b mlx4_cq_resize +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x00cf4666 mlx5_core_modify_hca_vport_context 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 0x095f1a96 mlx5_query_module_eeprom -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x09eb5ab0 mlx5_dm_sw_icm_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0a125da7 mlx5_nic_vport_enable_roce -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0aca144c mlx5_query_hca_vport_node_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x12ae6f84 mlx5_db_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1987259a mlx5_query_nic_vport_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x23057095 mlx5_set_port_tc_bw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x264d0edf mlx5_modify_port_ets_rate_limit -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x28bc404b mlx5_modify_nic_vport_vlans -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2d6aab6d mlx5_set_port_admin_status -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x33d9cd3d mlx5_accel_esp_destroy_xfrm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3778e462 mlx5_query_nic_vport_mac_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x39bef6e5 mlx5_query_hca_vport_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x39c2baf7 mlx5_query_port_ptys -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3af7b9ab mlx5_core_access_reg -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3af88a26 mlx5_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x44f429be mlx5_frag_buf_alloc_node -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4b25b3e0 mlx5_set_port_wol -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4cdbc8df mlx5_nic_vport_unaffiliate_multiport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4f8ff51a mlx5_query_nic_vport_min_inline -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x541c0e54 mlx5_set_port_caps -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5bbcf392 mlx5_query_nic_vport_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x60ed9de9 mlx5_query_hca_vport_context -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x62ea45c9 mlx5_db_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6586d29f mlx5_query_nic_vport_qkey_viol_cntr -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x65c843ca mlx5_query_port_max_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x67d801c1 mlx5_eswitch_get_total_vports -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x699f6c20 mlx5_query_port_pause -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6d969cea mlx5_toggle_port_link -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x726ee849 mlx5_query_port_tc_bw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7a3ea66c mlx5_query_nic_vport_promisc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x80c4dc6f mlx5_query_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x07cbebcb mlx5_query_hca_vport_pkey +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x08c95799 mlx5_query_module_eeprom_by_page +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0c8665be mlx5_query_port_ptys +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0da03c51 mlx5_dm_sw_icm_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0e204b4b mlx5_query_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x10f5bd5b mlx5_set_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x127c1b31 mlx5_query_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x16f8128f mlx5_set_port_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x17e3c406 mlx5_query_port_prio_tc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x192af6e1 mlx5_set_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x192fcd01 mlx5_query_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1e62467c mlx5_frag_buf_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x280110eb mlx5_set_port_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x28e2aef0 mlx5_core_query_vport_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2ab214aa mlx5_core_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x300fc445 mlx5_set_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x30d60604 mlx5_modify_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3545a1c8 mlx5_modify_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3b440386 mlx5_eswitch_get_total_vports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3cd7e05d mlx5_query_port_max_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3fbe33e5 mlx5_query_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3fe1bc3a mlx5_accel_esp_create_xfrm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x42085e7f mlx5_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x435aef9b mlx5_nic_vport_query_local_lb +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x46ab11e7 mlx5_query_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x499dc155 mlx5_modify_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4c4630b2 mlx5_query_port_tc_group +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4f44ce50 mlx5_frag_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x500930b3 mlx5_query_hca_vport_gid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x502e7a78 mlx5_modify_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x524e9c83 mlx5_nic_vport_unaffiliate_multiport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x548ba1e2 mlx5_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5983e2c9 mlx5_query_port_oper_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5c43d498 mlx5_db_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x608f864e mlx5_query_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6cc501b5 mlx5_core_reserved_gids_count +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x74a9c508 mlx5_modify_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x75872a14 mlx5_dm_sw_icm_dealloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x79489afe mlx5_query_port_tc_bw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7b4b3152 mlx5_query_nic_vport_min_inline +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7dbbad8b mlx5_nic_vport_update_local_lb +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x801d8666 mlx5_query_port_vl_hw_cap 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 0x8572c934 mlx5_set_port_pfc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x857af201 mlx5_accel_esp_modify_xfrm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x85b0e107 mlx5_core_reserved_gids_count -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8d2d58eb mlx5_frag_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8e760fbe mlx5_set_port_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x937c616f mlx5_core_query_vport_counter -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x93ae397e mlx5_query_port_wol -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa3d6f7b6 mlx5_core_query_ib_ppcnt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa47028ae mlx5_eswitch_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8cc60594 mlx5_core_query_ib_ppcnt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x95025f60 mlx5_eswitch_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x989df6e3 mlx5_accel_ipsec_device_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9ed702d8 mlx5_query_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9fdf225d mlx5_query_nic_vport_qkey_viol_cntr EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa75f49d6 mlx5_fill_page_array -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa9402ce9 mlx5_modify_nic_vport_promisc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa9cec528 mlx5_query_port_oper_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb1e3930c mlx5_query_module_eeprom_by_page -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb8091253 mlx5_query_port_pfc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb895c15d mlx5_query_nic_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbec283d4 mlx5_set_port_prio_tc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc07a5f1e mlx5_accel_ipsec_device_caps -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc2682c71 mlx5_query_min_inline -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc7ed2dbb mlx5_query_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc8f05172 mlx5_modify_nic_vport_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcb8b5805 mlx5_core_query_sq_state -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xce3f7860 mlx5_query_port_prio_tc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd14b23c7 mlx5_set_port_pause -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd5efb772 mlx5_db_alloc_node -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xda8eeb4c mlx5_query_port_tc_group -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdb7b72df mlx5_accel_esp_create_xfrm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdd657d70 mlx5_nic_vport_query_local_lb -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdf8a50d4 mlx5_modify_nic_vport_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe2e03bc9 mlx5_core_modify_hca_vport_context -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe3900551 mlx5_set_port_tc_group -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe4a77fda mlx5_query_port_admin_status -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe59cc800 mlx5_query_nic_vport_node_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe731f80e mlx5_nic_vport_update_local_lb -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xebab5aaf mlx5_query_hca_vport_gid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xedb7b51d mlx5_query_hca_vport_pkey -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf4916eae mlx5_query_port_vl_hw_cap -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfde5b23e mlx5_nic_vport_affiliate_multiport -EXPORT_SYMBOL_GPL drivers/net/geneve 0xe34ee937 geneve_dev_create_fb -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x0e79c853 ipvlan_link_new -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x643811d9 ipvlan_count_rx -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x794a59c1 ipvlan_link_delete -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x808b94c0 ipvlan_link_setup -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xc9e2dfcd ipvlan_link_register -EXPORT_SYMBOL_GPL drivers/net/macsec 0x149a278e macsec_pn_wrapped -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x25605f26 macvlan_common_newlink -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x8de98cbd macvlan_link_register -EXPORT_SYMBOL_GPL drivers/net/macvlan 0xbd3114a0 macvlan_dellink -EXPORT_SYMBOL_GPL drivers/net/macvlan 0xd14bb1b4 macvlan_common_setup -EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-i2c 0x55df4800 mdio_i2c_alloc -EXPORT_SYMBOL_GPL drivers/net/net_failover 0xab5e6d95 net_failover_create -EXPORT_SYMBOL_GPL drivers/net/net_failover 0xeb06817f net_failover_destroy -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x02b39f81 bcm_phy_cable_test_get_status_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x12abbfc1 bcm_phy_config_intr -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x1785feaf __bcm_phy_write_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x186db9fe bcm54xx_auxctl_read -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x24301906 bcm_phy_downshift_get -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x3a4fc0f7 bcm_phy_get_sset_count -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x3db376ef bcm_phy_cable_test_start_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x4059a488 bcm_phy_cable_test_get_status -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x4181d3c1 bcm_phy_get_stats -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x41dda14d bcm_phy_28nm_a0b0_afe_config_init -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x44db298b bcm_phy_r_rc_cal_reset -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x4ec83050 bcm_phy_write_shadow -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x57cfe947 bcm_phy_ack_intr -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x61d43428 bcm_phy_write_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x687a99cc bcm_phy_downshift_set -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x717ac0fd bcm_phy_enable_jumbo -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x8115a8b2 __bcm_phy_modify_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x81f4cd24 bcm_phy_cable_test_start -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x9287cab4 __bcm_phy_modify_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x9343fcea bcm_phy_write_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x9e31baba bcm_phy_read_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa1c07b72 bcm_phy_read_shadow -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa6ee8bb8 bcm_phy_enable_apd -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb37056ea bcm_phy_read_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb94a577a bcm_phy_set_eee -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xcd120d76 bcm_phy_modify_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xcdf0193c bcm_phy_read_misc -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xcfa1aab4 __bcm_phy_read_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xd5bbbaca bcm_phy_handle_interrupt -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xd5dbd3a4 bcm_phy_write_misc -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xde806f70 bcm_phy_modify_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe2e046e4 __bcm_phy_read_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe512366d __bcm_phy_write_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf1616b78 bcm_phy_get_strings -EXPORT_SYMBOL_GPL drivers/net/phy/fixed_phy 0x349414e1 fixed_phy_register -EXPORT_SYMBOL_GPL drivers/net/phy/fixed_phy 0x7bc9e289 fixed_phy_unregister -EXPORT_SYMBOL_GPL drivers/net/phy/fixed_phy 0x87d7f25a fixed_phy_register_with_gpiod +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa9e8c257 mlx5_query_nic_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaa3393c5 mlx5_accel_esp_modify_xfrm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xae2b547c mlx5_query_min_inline +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaf9d8560 mlx5_set_port_prio_tc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb0ff015f mlx5_query_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb1086711 mlx5_set_port_tc_group +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb1184d5e mlx5_query_module_eeprom +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb689386c mlx5_query_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbe73d7eb mlx5_toggle_port_link +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc22100a7 mlx5_set_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc4a546e4 mlx5_query_nic_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc6c6d00e mlx5_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd5eb4ab8 mlx5_accel_esp_destroy_xfrm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe0a3b401 mlx5_query_hca_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe7cedcb8 mlx5_query_nic_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe800a051 mlx5_query_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe99ef970 mlx5_modify_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xed960e4b mlx5_nic_vport_enable_roce +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf5344a80 mlx5_set_port_tc_bw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf5de2f7d mlx5_query_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf6125e31 mlx5_nic_vport_affiliate_multiport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf73bfd70 mlx5_core_query_sq_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf79a3d74 mlx5_query_hca_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/geneve 0x4d237bc0 geneve_dev_create_fb +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x29c984d1 ipvlan_link_delete +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xa9261553 ipvlan_link_new +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xc75dbe7f ipvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xce60b296 ipvlan_count_rx +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xf6f2fbc2 ipvlan_link_setup +EXPORT_SYMBOL_GPL drivers/net/macsec 0xbae09f77 macsec_pn_wrapped +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x0bfe6927 macvlan_common_setup +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x3568a8bc macvlan_common_newlink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x42dc4f27 macvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xf06dd8cb macvlan_dellink +EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-i2c 0x27b1dfce mdio_i2c_alloc +EXPORT_SYMBOL_GPL drivers/net/net_failover 0x85b45e9f net_failover_create +EXPORT_SYMBOL_GPL drivers/net/net_failover 0xb2776508 net_failover_destroy +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x107c2cbb bcm_phy_read_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x27e880c6 bcm_phy_handle_interrupt +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x2e3eae07 __bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x3053d8e9 bcm_phy_cable_test_start +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x3a581b37 bcm_phy_write_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x3ebf1cb5 bcm_phy_write_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x4a76e48e bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x4bcc7b54 bcm_phy_set_eee +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x558cc037 bcm_phy_get_stats +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x686d8864 bcm_phy_config_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x8990870b __bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x8cf1642b __bcm_phy_modify_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x988243ce bcm_phy_cable_test_get_status +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa7853eba bcm_phy_get_strings +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa7fbbf4d bcm_phy_modify_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xac0973bb bcm_phy_downshift_set +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xad7ad001 __bcm_phy_write_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb30b7bc9 bcm_phy_read_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb5c693d8 bcm_phy_ack_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb91c6531 bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xbb8c8ae2 bcm_phy_cable_test_get_status_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xbe08af2d bcm_phy_r_rc_cal_reset +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc045684d bcm_phy_modify_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc86cb608 bcm_phy_write_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xcc7753a0 bcm_phy_read_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xcdd6cbff bcm54xx_auxctl_read +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xd22bd8f7 bcm_phy_28nm_a0b0_afe_config_init +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xd39a4f3e __bcm_phy_read_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xd9b79c2b bcm_phy_enable_jumbo +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe27b6b82 bcm_phy_downshift_get +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe47e0f81 bcm_phy_enable_apd +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe6b98d6d bcm_phy_cable_test_start_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe8a35525 bcm_phy_get_sset_count +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xeb4fb32b __bcm_phy_modify_exp +EXPORT_SYMBOL_GPL drivers/net/phy/fixed_phy 0x00b3efbd fixed_phy_set_link_update +EXPORT_SYMBOL_GPL drivers/net/phy/fixed_phy 0x6ffb5ba1 fixed_phy_change_carrier +EXPORT_SYMBOL_GPL drivers/net/phy/fixed_phy 0x87ac9670 fixed_phy_register_with_gpiod EXPORT_SYMBOL_GPL drivers/net/phy/fixed_phy 0x92d31cfb fixed_phy_add -EXPORT_SYMBOL_GPL drivers/net/phy/fixed_phy 0xde7ddf6a fixed_phy_change_carrier -EXPORT_SYMBOL_GPL drivers/net/phy/fixed_phy 0xf5bad9d3 fixed_phy_set_link_update -EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x03fd2500 phy_check_downshift +EXPORT_SYMBOL_GPL drivers/net/phy/fixed_phy 0xb74c901a fixed_phy_unregister +EXPORT_SYMBOL_GPL drivers/net/phy/fixed_phy 0xddc642b6 fixed_phy_register EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x06209f49 phy_lookup_setting -EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x072e6235 genphy_c45_loopback EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x18e4f8aa swphy_read_reg -EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x1a471764 genphy_c45_aneg_done -EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x1ae6dbd6 genphy_c45_pma_read_abilities -EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x21be5d18 phy_restore_page -EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x2705cfaf genphy_c45_an_config_aneg -EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x28796042 phy_resolve_aneg_pause +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x216494dc genphy_c45_read_pma +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x286b8893 fwnode_get_phy_node EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x2a0a40fa mdio_bus_init -EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x3483ad9f genphy_c45_pma_suspend -EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x3a826433 phy_resolve_aneg_linkmode +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x2c59cabf gen10g_config_aneg +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x30b734e8 genphy_c45_pma_setup_forced +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x36a6c90c genphy_c45_aneg_done +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x3b604d6c genphy_c45_read_mdix EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x3ce650fd phy_10gbit_features -EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x3e784133 genphy_c45_pma_setup_forced -EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x3ffd63c6 genphy_c45_read_mdix -EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x456c3253 mdiobus_modify +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x4058bb2a __phy_modify_mmd EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x478debf5 phy_10gbit_fec_features -EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x49add5d6 devm_phy_package_join -EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x4a681663 phy_restart_aneg -EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x4d26fc67 genphy_c45_read_lpa -EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x4d3156a2 genphy_c45_check_and_restart_aneg +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x48646c63 phy_speed_up EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x538d073d phy_duplex_to_str -EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x59c37496 phy_start_machine +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x5ab2d0d7 __phy_modify_mmd_changed EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x5c5c6826 phy_10gbit_full_features -EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x5cf401d8 genphy_c45_pma_resume +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x5ebf8d61 genphy_c45_read_lpa +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x5fab0d7e devm_phy_package_join EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x61f67c92 phy_gbit_features_array +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x66a1e037 genphy_c45_an_config_aneg +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x66aaa691 phy_driver_is_genphy EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x690f585e phy_basic_ports_array -EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x6b7723b9 phy_modify_mmd -EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x6f035dc8 fwnode_get_phy_node -EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x700aa0d7 __mdiobus_modify_changed +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x6a028fb6 phy_speed_down EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x7073c04f phy_10_100_features_array -EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x75a3fff6 genphy_c45_restart_aneg -EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x76c14a7b device_phy_find_device -EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x7781a057 phy_save_page +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x71266670 __phy_modify +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x740a3933 genphy_c45_check_and_restart_aneg EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x7ac722bd phy_all_ports_features_array -EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x7c4c0f47 phy_modify_mmd_changed -EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x85e34bb1 gen10g_config_aneg +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x843e6278 phy_resolve_aneg_linkmode EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x8effb505 phy_gbit_features -EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x8f4425a7 genphy_c45_read_status -EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x90b6416e __phy_modify_mmd_changed -EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0xb052175b phy_select_page -EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0xb06390b4 __phy_modify_mmd +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x91f7816a phy_modify +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x93406f3f genphy_c45_pma_read_abilities +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x9558132a genphy_c45_loopback +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x95ed9275 phy_select_page +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x9b6fa548 phy_save_page +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x9b7e44d1 phy_resolve_aneg_pause +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x9fe231bb genphy_c45_pma_suspend +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0xa05f1abf mdiobus_modify +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0xa88fa064 genphy_c45_restart_aneg +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0xaae51327 genphy_c45_read_status +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0xad552dfa genphy_c45_read_link +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0xaf3b41fc phy_restart_aneg +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0xafcd220f phy_check_downshift +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0xb01cf0f8 phy_package_join +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0xb77f4469 genphy_c45_config_aneg +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0xb91aa8b4 phy_modify_mmd_changed EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0xb98bb315 phy_gbit_fibre_features EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0xbbf4dfbe phy_basic_t1_features -EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0xc36446d9 phy_package_leave -EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0xc3bba2ee genphy_c45_an_disable_aneg EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0xc55ff962 phy_basic_t1_features_array -EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0xcb449e7a phy_modify_changed -EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0xce16f07e genphy_c45_read_link -EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0xceaa9112 phy_driver_is_genphy_10g +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0xc8af0318 phy_package_leave +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0xcf1e2c47 phy_restore_page EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0xd17d2a22 phy_basic_features -EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0xd2c4a167 phy_package_join +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0xd425c380 device_phy_find_device EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0xd59a1587 linkmode_resolve_pause -EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0xd9c622e8 genphy_c45_config_aneg -EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0xe0a17785 phy_driver_is_genphy -EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0xe1812d6a phy_speed_up +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0xdc2ec3ee __mdiobus_modify_changed +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0xde536e89 phy_driver_is_genphy_10g +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0xe0f9fea1 genphy_c45_an_disable_aneg EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0xe4b818c3 phy_speed_to_str EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0xe4e48b12 swphy_validate_state EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0xe628bb9f phy_fibre_port_array -EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0xe82c7789 genphy_c45_read_pma -EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0xecf98ac7 __phy_modify +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0xe79496bc phy_modify_mmd +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0xeeaee398 genphy_c45_pma_resume EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0xeedd987e phy_10gbit_features_array EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0xf4689d50 linkmode_set_pause -EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0xf48dfe3b phy_modify +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0xf47cd79d phy_start_machine EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0xfab30dc0 mdio_bus_exit -EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0xfbd13a90 phy_speed_down EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0xfbeeb13c phy_gbit_all_ports_features -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x06b35874 phylink_connect_phy +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0xff54785a phy_modify_changed EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x08213956 phylink_ethtool_get_wol EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x12135396 phylink_mac_change EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x131e8b94 phylink_helper_basex_speed 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 0x2c6fe944 phylink_mii_c22_pcs_config +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x22cf4952 phylink_mii_c22_pcs_an_restart EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x2c8e28ee phylink_ethtool_get_eee +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x35004d7c phylink_mii_c45_pcs_get_state +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x376b0a2c phylink_mii_c22_pcs_get_state +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x3c47df92 phylink_create +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x475bcb97 phylink_mii_c22_pcs_config EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x57727285 phylink_ethtool_set_eee EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x59e0695d phylink_speed_down EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x5d0c4dcc phylink_speed_up EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x62104126 phylink_ethtool_set_wol EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x6831eccf phylink_ethtool_ksettings_get EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x6fa426d2 phylink_ethtool_nway_reset +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x798732e7 phylink_connect_phy +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x79c36a9f phylink_fwnode_phy_connect +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x7e900ca5 phylink_mii_c22_pcs_set_advertisement EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x825c7340 phylink_get_eee_err -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x86b301e2 phylink_fwnode_phy_connect EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x911fcd6c phylink_start EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x983276da phylink_disconnect_phy EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x9ad6f36d phylink_decode_usxgmii_word 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 0xc3906c58 phylink_ethtool_ksettings_set -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xc3e9a8da phylink_mii_c22_pcs_an_restart -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xc443db02 phylink_mii_c22_pcs_set_advertisement -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xd69d41d0 phylink_mii_c45_pcs_get_state -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xd6a3dc6b phylink_mii_c22_pcs_get_state -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xd9df4d20 phylink_create +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xd205d6b9 phylink_of_phy_connect EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xdcb0a2c0 phylink_stop EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xde66f4a7 phylink_mii_ioctl EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xe8c137ed phylink_set_pcs EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xec02ebe0 phylink_init_eee EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xf3083a1d phylink_destroy -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xf8a97e5d phylink_of_phy_connect EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xf8fe5642 phylink_ethtool_get_pauseparam -EXPORT_SYMBOL_GPL drivers/net/tap 0x2d88c77f tap_get_socket -EXPORT_SYMBOL_GPL drivers/net/tap 0x3db4808f tap_handle_frame -EXPORT_SYMBOL_GPL drivers/net/tap 0x5100b167 tap_del_queues -EXPORT_SYMBOL_GPL drivers/net/tap 0x8ee45de7 tap_get_minor -EXPORT_SYMBOL_GPL drivers/net/tap 0x926e8fe8 tap_free_minor -EXPORT_SYMBOL_GPL drivers/net/tap 0x92a0cd97 tap_destroy_cdev -EXPORT_SYMBOL_GPL drivers/net/tap 0xbc083aa7 tap_queue_resize -EXPORT_SYMBOL_GPL drivers/net/tap 0xcd510bc8 tap_create_cdev -EXPORT_SYMBOL_GPL drivers/net/tap 0xce3edb25 tap_get_ptr_ring -EXPORT_SYMBOL_GPL drivers/net/vxlan 0x108ffe8e vxlan_dev_create -EXPORT_SYMBOL_GPL drivers/net/vxlan 0x346de5f4 vxlan_fdb_replay -EXPORT_SYMBOL_GPL drivers/net/vxlan 0x5e99efe5 vxlan_fdb_clear_offload -EXPORT_SYMBOL_GPL drivers/net/vxlan 0x80618735 vxlan_fdb_find_uc -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x01080d42 nvme_disable_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x062bc64c nvme_wait_freeze -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x09fd09dd __nvme_check_ready +EXPORT_SYMBOL_GPL drivers/net/tap 0x28827691 tap_del_queues +EXPORT_SYMBOL_GPL drivers/net/tap 0x29eb8a4e tap_get_ptr_ring +EXPORT_SYMBOL_GPL drivers/net/tap 0x2cfa0d8f tap_get_minor +EXPORT_SYMBOL_GPL drivers/net/tap 0x33326dfd tap_free_minor +EXPORT_SYMBOL_GPL drivers/net/tap 0x393c5211 tap_get_socket +EXPORT_SYMBOL_GPL drivers/net/tap 0x8a4914e1 tap_queue_resize +EXPORT_SYMBOL_GPL drivers/net/tap 0xa726ac34 tap_create_cdev +EXPORT_SYMBOL_GPL drivers/net/tap 0xc8b40209 tap_destroy_cdev +EXPORT_SYMBOL_GPL drivers/net/tap 0xfcbc3a0f tap_handle_frame +EXPORT_SYMBOL_GPL drivers/net/vxlan 0x1ad5b010 vxlan_fdb_find_uc +EXPORT_SYMBOL_GPL drivers/net/vxlan 0x3b2ed56b vxlan_dev_create +EXPORT_SYMBOL_GPL drivers/net/vxlan 0xa8307805 vxlan_fdb_clear_offload +EXPORT_SYMBOL_GPL drivers/net/vxlan 0xdfc2b1f1 vxlan_fdb_replay +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x02f45e4b nvme_init_ctrl EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x11abc494 __SCK__tp_func_nvme_sq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x228629a3 nvme_cancel_tagset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2661920b nvme_shutdown_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2e58ebd3 nvme_change_ctrl_state +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x144b97f0 nvme_kill_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1597e57e nvme_cancel_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x22190e35 nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x238a895c nvme_cancel_admin_tagset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x27d87d3a nvme_start_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x28d09bff nvme_alloc_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2d163b8b nvme_set_queue_count EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2fa55ced nvme_sec_submit -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x30663649 nvme_unfreeze -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3b3e090a nvme_stop_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x41a686bb nvme_complete_rq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x43911658 nvme_uninit_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x45b02532 nvme_alloc_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x351dd9ef nvme_disable_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3cb65956 nvme_stop_ctrl EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x49224181 nvme_reset_wq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x50dd3c09 nvme_wait_reset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x57171cf1 nvme_set_features -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x571f3328 nvme_start_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x59fa4aa0 nvme_setup_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x5a7c5fdd nvme_reset_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x5dfad2f1 nvme_cancel_request -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x5fb6d18f nvme_delete_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x64487082 nvme_stop_keep_alive +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x4abf4239 nvme_complete_rq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x4df5fb13 nvme_complete_async_event +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x519f4d56 nvme_init_ctrl_finish +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x53c0a379 nvme_fail_nonready_command +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x5d81a246 __traceiter_nvme_sq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x608aab28 nvme_cancel_tagset EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x64b62862 nvme_wq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x66b8c031 nvme_cleanup_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x66e83ab9 nvme_init_ctrl_finish -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x68af6030 nvme_enable_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x6b8d812c nvme_start_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x77a2ebad nvme_stop_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7f1c8c08 nvme_try_sched_reset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x66ba001e nvme_set_features +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x693b05a2 nvme_shutdown_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x69cedb04 nvme_stop_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x6f2f7607 nvme_start_freeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x779804a4 nvme_enable_ctrl EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x813cf212 nvme_io_timeout -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x836575dc nvme_fail_nonready_command -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x87d0acf3 nvme_init_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8baafd6d nvme_set_queue_count EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8e7ec2b6 __tracepoint_nvme_sq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x919485b6 nvme_wait_freeze_timeout -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x9a20dae7 nvme_submit_sync_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb0f99907 nvme_get_features -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb1c23a83 nvme_sync_io_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb3729ae5 nvme_cancel_admin_tagset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xca42dad0 nvme_remove_namespaces +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x99f96426 __nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x9c850010 nvme_start_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa33f4ac5 nvme_remove_namespaces +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa5c4afd8 nvme_get_features +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xaa6782f3 nvme_host_path_error +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xaafe6677 __nvme_check_ready +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb8470831 nvme_reset_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xbd908c18 nvme_unfreeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xbe28498a nvme_sync_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc3288fc7 nvme_stop_keep_alive +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xcacd129f nvme_wait_reset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd08bad88 nvme_try_sched_reset EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd45434ee admin_timeout -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd464ba12 nvme_kill_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd4dbf235 nvme_start_freeze EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd58bbbcb nvme_delete_wq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xdc85aa7c nvme_sync_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe5a1a114 nvme_host_path_error -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe925ff9d nvme_complete_async_event -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xeca5c60f __traceiter_nvme_sq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xfdd055b7 __nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd9424a7a nvme_cleanup_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe1afa43b nvme_uninit_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe30faa7f nvme_setup_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xeac893cd nvme_delete_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xed22ea9e nvme_wait_freeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf36b2d3f nvme_wait_freeze_timeout +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xfbbbe6c2 nvme_change_ctrl_state +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xff3a3194 nvme_sync_io_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x01b0b670 nvmf_get_address +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x1384af81 nvmf_connect_admin_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x17e78ecb nvmf_reg_write32 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x28d2233a nvmf_register_transport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x2f2d5246 nvmf_reg_read64 EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x37e15190 nvmf_free_options -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x44e85866 nvmf_should_reconnect -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x4dd72122 nvmf_connect_io_queue -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x6c314c57 nvmf_reg_read32 -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x77dd3c5d nvmf_connect_admin_queue -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x83417a99 nvmf_reg_write32 -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xb57402fd nvmf_reg_read64 -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xb5b76e0e nvmf_get_address -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xd4a12894 nvmf_unregister_transport -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xe4a1746b nvmf_ip_options_match -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xffe237af nvmf_register_transport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x9983c93e nvmf_connect_io_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x9e8aeb41 nvmf_reg_read32 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xa044abcc nvmf_unregister_transport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xb08c7da9 nvmf_should_reconnect +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xda0cad8d nvmf_ip_options_match EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x0d12e564 nvme_fc_register_remoteport EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x3884f8b8 nvme_fc_unregister_localport EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 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 0x903355cd nvme_fc_register_localport EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0xbb0e18a6 nvme_fc_rcv_ls_req -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0xc4b6b29b nvme_fc_register_localport EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0xfca9dc99 nvme_fc_unregister_remoteport -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x34fb6b00 nvmet_req_alloc_sgls -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x36225f46 nvmet_ctrl_fatal_error -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x4d6cdc38 nvmet_sq_init -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x4fa35b06 nvmet_unregister_transport -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x53a3646b nvmet_check_transfer_len -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x58646327 nvmet_req_uninit -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x856c3922 nvmet_sq_destroy -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x99bdfbf9 nvmet_register_transport -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xa3474c15 nvmet_req_init -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xe0558f06 nvmet_req_free_sgls -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xfbbf483a nvmet_req_complete +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x12fa77d1 nvmet_ctrl_fatal_error +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x1ebaee61 nvmet_req_free_sgls +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x3535af2a nvmet_register_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x3921aa99 nvmet_req_alloc_sgls +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x5506c786 nvmet_unregister_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x6b2a2379 nvmet_req_init +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x7a89d94b nvmet_sq_init +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x9c1e2a9f nvmet_req_uninit +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xcf6f9c6b nvmet_sq_destroy +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xd396495b nvmet_req_complete +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xf1738be2 nvmet_check_transfer_len EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x0b98123d nvmet_fc_rcv_ls_req EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x1048b92a nvmet_fc_rcv_fcp_req +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x2d01a229 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 0x63a5d9b7 nvmet_fc_register_targetport EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x7fa5302a nvmet_fc_rcv_fcp_abort EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x9ef76d99 nvmet_fc_unregister_targetport -EXPORT_SYMBOL_GPL drivers/pci/switch/switchtec 0x17083a85 switchtec_class -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x0db525f7 dasd_generic_uc_handler -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x0f1e86a5 dasd_generic_verify_path -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x148f006d dasd_generic_last_path_gone -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x1646c6dc dasd_generic_probe -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x168b0aba dasd_generic_space_exhaust +EXPORT_SYMBOL_GPL drivers/pci/switch/switchtec 0x399fa440 switchtec_class +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x0101c3ed dasd_generic_shutdown +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x0ebdd76d dasd_generic_path_operational +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x0f3961bb dasd_free_block +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x0f828288 dasd_flush_device_queue +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x1681f0f5 dasd_device_set_stop_bits +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x186a5195 dasd_generic_probe EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x19227556 dasd_nopav -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x21b6f305 dasd_generic_notify -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x2211bec3 dasd_device_is_ro -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x24424544 dasd_generic_shutdown -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x244b81ab dasd_device_remove_stop_bits -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x365f8ef6 dasd_generic_set_online -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x367eab90 dasd_dev_groups -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x4290480f dasd_device_set_stop_bits -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x46414ed3 dasd_generic_path_event -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x4b05ab7a dasd_biodasdinfo +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x1b26b4b5 dasd_generic_free_discipline +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x2766c0b0 dasd_put_device_wake +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x3cbb0325 dasd_generic_space_exhaust EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x5a95fab2 dasd_get_sense -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x5b600524 dasd_generic_path_operational -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x5cdbabf7 dasd_generic_space_avail -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x67a48ec6 dasd_generic_set_offline -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x93fd3b5c dasd_generic_remove -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xa687210b dasd_wakeup_cb -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xa7ad0e88 dasd_put_device_wake +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x6538fa2a dasd_generic_read_dev_chars +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x7082d3e1 dasd_generic_handle_state_change +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x7a5db2b1 dasd_generic_notify +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x7fecad18 dasd_alloc_block +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x87dfaa24 dasd_generic_uc_handler +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x89029ee2 dasd_generic_last_path_gone +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x9771b61c dasd_generic_path_event +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xa1def94a dasd_biodasdinfo +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xac73bbf9 dasd_generic_verify_path EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xb38fe028 dasd_page_cache -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xb4a55bfb dasd_generic_read_dev_chars -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xbc59727b dasd_generic_free_discipline -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xcbea6c80 dasd_free_block -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xd3be582c dasd_flush_device_queue -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xee81f2fc dasd_alloc_block +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xb9d9bdec dasd_generic_set_online +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xc8651d8d dasd_generic_space_avail +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xc9f96766 dasd_dev_groups +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xcbd34297 dasd_device_remove_stop_bits +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xcc28a699 dasd_device_is_ro +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xd68a5700 dasd_generic_set_offline +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xd8544588 dasd_wakeup_cb +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xe20a0cff dasd_generic_remove EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xf15784f5 dasd_nofcx -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xfaea94d3 dasd_generic_handle_state_change EXPORT_SYMBOL_GPL drivers/s390/cio/eadm_sch 0x85d9d140 eadm_start_aob -EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0x10ae311b qdio_establish +EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0x06968f36 qdio_allocate EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0x23c0e637 qdio_alloc_buffers EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0x27488bbc qdio_reset_buffers -EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0x643c1f35 qdio_allocate +EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0x3454f6cf qdio_establish +EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0x5468de66 qdio_get_ssqd_desc +EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0x607691d4 do_QDIO +EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0x696c70a5 qdio_activate EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0x775a12d6 qdio_release_aob -EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0x8e9c2aaa do_QDIO +EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0x804e09df qdio_shutdown +EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0x97700185 qdio_inspect_queue EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0xa04bb255 qdio_free_buffers -EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0xace6dca7 qdio_activate -EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0xc44a4f06 qdio_shutdown EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0xc9a616f6 qdio_allocate_aob -EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0xcc7e5d41 qdio_get_ssqd_desc -EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0xdee5a425 qdio_inspect_queue -EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0xf9fbbef0 qdio_free -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x00fb8bc0 qeth_poll -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x19b97077 qeth_threads_running -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x3d9dd32b qeth_setadpparms_change_macaddr -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x4051ee67 qeth_set_allowed_threads -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x4abe0163 qeth_stop -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x5bbc8525 qeth_dbf -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x5f709e72 qeth_tx_timeout -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x65962651 qeth_xmit -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x7136318b qeth_dbf_longtext -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x728fb23b qeth_vm_request_mac -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x7367f0b6 qeth_set_features -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x7cd577e9 qeth_do_ioctl -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x82df7823 qeth_set_offline -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x89188cef qeth_get_stats64 -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x8cecc1a3 qeth_open -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x91087261 qeth_ipa_alloc_cmd -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x9ae30a1e qeth_siocdevprivate -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xa4c0506c qeth_setadp_promisc_mode -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xa513ae8f qeth_setassparms_cb -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xa5fedd2c qeth_get_priority_queue -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xa96a8ca6 qeth_enable_hw_features -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xb1ea9100 qeth_get_diag_cmd -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xb1f4fc25 qeth_resize_buffer_pool -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xb40fd9ba qeth_features_check -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xba7f21b8 qeth_send_simple_setassparms_prot -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xc09a4513 qeth_fix_features -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xdfb47e44 qeth_get_setassparms_cmd -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xf39b34a5 qeth_set_real_num_tx_queues -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xf53f55ce qeth_iqd_select_queue -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xf54a73d5 qeth_configure_cq -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xf6333d46 qeth_send_ipa_cmd -EXPORT_SYMBOL_GPL drivers/s390/net/qeth_l2 0x37f23713 qeth_l2_discipline -EXPORT_SYMBOL_GPL drivers/s390/net/qeth_l3 0xf6fcdd58 qeth_l3_discipline -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0830d1c3 fcoe_ctlr_device_add -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x12dbb68e fcoe_ctlr_device_delete -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x3d0aaec8 fcoe_fcf_device_delete -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x4387a664 fcoe_libfc_config -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x61092f07 fcoe_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x64371dec fcoe_link_speed_update -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x6af4aef6 __fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0xdeb6b927 qdio_free +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x02638a66 qeth_do_ioctl +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x0d8feaf9 qeth_features_check +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x152f33c0 qeth_poll +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x382a0371 qeth_dbf_longtext +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x46fc8522 qeth_get_stats64 +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x4ec4cd0c qeth_get_diag_cmd +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x51039956 qeth_threads_running +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x5217fee3 qeth_send_simple_setassparms_prot +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x5a618600 qeth_get_setassparms_cmd +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x62352b73 qeth_setadp_promisc_mode +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x62daf949 qeth_stop +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x63482787 qeth_ipa_alloc_cmd +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x6688bb84 qeth_send_ipa_cmd +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x6dbddac7 qeth_configure_cq +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x754fa93d qeth_iqd_select_queue +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x77be8b38 qeth_fix_features +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x77fdbb6c qeth_enable_hw_features +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x836b91f6 qeth_tx_timeout +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x8ae5607e qeth_siocdevprivate +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x8cd70db3 qeth_set_offline +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x92b205e2 qeth_open +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x94c1d578 qeth_dbf +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x94d2b6ce qeth_set_real_num_tx_queues +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xc4ff6adb qeth_setadpparms_change_macaddr +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xc5881e66 qeth_set_features +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xc7140f7f qeth_set_allowed_threads +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xc8a4a104 qeth_vm_request_mac +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xcf39f5fe qeth_resize_buffer_pool +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xd3ed7529 qeth_setassparms_cb +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xf80920b1 qeth_get_priority_queue +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xfff0b77d qeth_xmit +EXPORT_SYMBOL_GPL drivers/s390/net/qeth_l2 0x2b18e42f qeth_l2_discipline +EXPORT_SYMBOL_GPL drivers/s390/net/qeth_l3 0xd4523095 qeth_l3_discipline +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x08404839 fcoe_fc_crc +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x112c4fe4 fcoe_start_io +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x2ade9c4b fcoe_clean_pending_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x350f3851 fcoe_get_paged_crc_eof +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x4f6df26d fcoe_ctlr_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x52ae23ed fcoe_link_speed_update +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x550af5f1 fcoe_check_wait_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x63c2d42c fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x66a92bf8 fcoe_fcf_device_add EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x7e92994b fcoe_wwn_from_mac -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x86182c2d fcoe_get_wwn -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x8d961567 fcoe_fcf_device_add -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x90607678 fcoe_ctlr_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x916062f2 fcoe_start_io -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xa0706b11 fcoe_get_paged_crc_eof +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x866ac102 fcoe_validate_vport_create +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x94360a66 fcoe_ctlr_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x9981577d fcoe_fcf_device_delete EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xbac58840 fcoe_queue_timer -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xd23ed170 fcoe_check_wait_queue -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xedade76a fcoe_validate_vport_create +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xbe595f33 fcoe_get_wwn +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xd4e40d32 __fcoe_get_lesb EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf167cb7a fcoe_wwn_to_str -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf94f48a5 fcoe_clean_pending_queue -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xfe4c630c fcoe_fc_crc -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x0320f6fe iscsi_boot_destroy_kset -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x20601349 iscsi_boot_create_initiator -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x24bdc3c8 iscsi_boot_create_ethernet -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x5a4aea9c iscsi_boot_create_target -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x68101d79 iscsi_boot_create_acpitbl -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xd79e01eb iscsi_boot_create_kset -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xe3970d97 iscsi_boot_create_host_kset +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf88009eb fcoe_libfc_config +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xfc2d2994 fcoe_ctlr_device_add +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x1c70bd14 iscsi_boot_destroy_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x4070b921 iscsi_boot_create_host_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x446bcf72 iscsi_boot_create_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xe19df578 iscsi_boot_create_ethernet +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xe8f7e41d iscsi_boot_create_target +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xebc480f3 iscsi_boot_create_initiator +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xf21d13c1 iscsi_boot_create_acpitbl EXPORT_SYMBOL_GPL drivers/scsi/libfc/libfc 0x66f43542 fc_seq_els_rsp_send -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x040597d6 iscsi_conn_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x06a2e330 iscsi_host_add -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0c641b2c iscsi_conn_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0dce0ac4 iscsi_host_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0eb4cfb8 iscsi_verify_itt +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x04c37d69 iscsi_conn_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0caab678 iscsi_suspend_tx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0e54b82c iscsi_conn_setup EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x14e625c9 __iscsi_complete_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1a81f160 iscsi_conn_stop -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1d5db371 iscsi_eh_abort -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1d98fad6 iscsi_eh_device_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1fc207fb iscsi_conn_unbind -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x29365b84 iscsi_session_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3330534d iscsi_set_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x34e34a17 iscsi_conn_failure -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3991a18d iscsi_eh_session_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x131f55d7 iscsi_host_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x16a935d8 iscsi_suspend_queue +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x19c95542 iscsi_conn_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x21883492 iscsi_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x233ddd86 iscsi_eh_device_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x246810fb iscsi_verify_itt +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x263b2d7b __iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2ff6f08f iscsi_requeue_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x32cd8db0 iscsi_eh_abort +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x32f119dd iscsi_host_add +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x346163be iscsi_host_get_max_scsi_cmds +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3b6f1c33 iscsi_host_get_param EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x407105f8 iscsi_queuecommand -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4358cd7b iscsi_host_set_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x456524c6 iscsi_complete_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x46e8cb86 iscsi_session_failure -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x47488a81 iscsi_complete_scsi_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x51682d82 iscsi_session_recovery_timedout -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x60685703 iscsi_itt_to_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x62fad700 iscsi_requeue_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x69bab390 iscsi_host_remove -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6d95fa55 iscsi_put_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x80ee8dcb iscsi_conn_bind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x574ed684 iscsi_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x601f242d iscsi_conn_start +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x73548d64 iscsi_host_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x738ff824 iscsi_itt_to_ctask +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x74c2b485 iscsi_eh_session_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7d0bf009 __iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8913f23b iscsi_session_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8cae9796 iscsi_complete_pdu EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xabb9b641 iscsi_conn_send_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xae476e7b iscsi_eh_recover_target -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb517bc28 iscsi_itt_to_ctask -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb9e7af26 iscsi_update_cmdsn -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc377fba3 iscsi_session_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc7fc9a3c iscsi_host_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcb1b0fcc iscsi_conn_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd524b91d iscsi_conn_start -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd6c55b05 __iscsi_put_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd7a6e862 iscsi_prep_data_out_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd9a3ea15 iscsi_target_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xde291494 iscsi_eh_cmd_timed_out -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe6b6d34b iscsi_suspend_tx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x955b5b52 iscsi_update_cmdsn +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x97c2aefb iscsi_eh_recover_target +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x98b2c15a iscsi_conn_send_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9fbf13f1 iscsi_host_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa0ec5316 iscsi_session_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa76f86ff iscsi_host_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xabe92b44 iscsi_prep_data_out_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc0139da0 iscsi_complete_scsi_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc38ca5bf __iscsi_get_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcf4576ce iscsi_eh_cmd_timed_out +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd4d93587 iscsi_conn_queue_work +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd836df67 iscsi_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd8a06eb6 iscsi_session_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdcdcd86a iscsi_session_recovery_timedout +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdef8b8e1 iscsi_conn_stop +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe0481ef6 iscsi_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe263d65d iscsi_conn_unbind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe741d818 iscsi_session_setup EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeab9cbd5 iscsi_conn_get_addr_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf1bc63ba iscsi_suspend_queue -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf32a39ec iscsi_conn_queue_work -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf3d9d386 iscsi_host_get_max_scsi_cmds -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf4ad19c7 iscsi_host_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf9784594 iscsi_session_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfc97e233 __iscsi_get_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x0136bf38 iscsi_segment_seek_sg -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x0bad6de4 iscsi_tcp_dgst_header -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x5860c85b iscsi_tcp_recv_segment_is_hdr -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x84e90857 iscsi_tcp_conn_get_stats -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x8a4c6ac0 iscsi_segment_init_linear -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x956f3234 iscsi_tcp_recv_skb -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x9df5ef7e iscsi_tcp_set_max_r2t -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xaba2f9bf iscsi_tcp_conn_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xb43b3108 iscsi_tcp_segment_done -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xbd86d4f8 iscsi_tcp_segment_unmap -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xc0a66711 iscsi_tcp_r2tpool_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xdb147569 iscsi_tcp_task_init -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xdeeaef52 iscsi_tcp_task_xmit -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xe06144e3 iscsi_tcp_r2tpool_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xe27625c3 iscsi_tcp_hdr_recv_prep -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xedadad77 iscsi_tcp_cleanup_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xf26340de iscsi_tcp_conn_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0562b27b sas_alloc_slow_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0b7ce134 sas_free_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x181ed398 sas_eh_abort_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1c63ad0a sas_task_abort -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1f12cbf4 sas_alloc_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x32455456 sas_target_destroy -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x335fdcab dev_attr_phy_event_threshold -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x36222ea4 sas_drain_work -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3fe270d2 sas_register_ha -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4140e014 sas_notify_phy_event -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x41657ea4 sas_eh_target_reset_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x70e87baa sas_slave_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7a6350b6 sas_eh_device_reset_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9165f570 sas_get_local_phy -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa45545ad sas_request_addr -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb40fa942 sas_ioctl -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb4542894 sas_queuecommand -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb82ac27c sas_unregister_ha -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc0878f54 sas_change_queue_depth -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd0242d33 sas_phy_reset -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd177b633 sas_slave_configure -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd234126e sas_domain_attach_transport -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd69151c2 sas_notify_port_event -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xde920fe5 sas_ssp_task_response -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe3567709 sas_target_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf992fee7 sas_bios_param -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_fc 0x2eccefd2 fc_eh_should_retry_cmd -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x051db1eb iscsi_scan_finished +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf4f5e939 iscsi_itt_to_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf7e7d98b iscsi_conn_bind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfa9ab3bb iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x1be77ed4 iscsi_tcp_set_max_r2t +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x210db148 iscsi_tcp_segment_unmap +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x414cb507 iscsi_segment_seek_sg +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x4c613eb6 iscsi_tcp_r2tpool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x66d7d105 iscsi_tcp_r2tpool_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x716c2b6c iscsi_tcp_recv_skb +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x7f1b28c4 iscsi_tcp_recv_segment_is_hdr +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x8836843f iscsi_tcp_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xa1bfc8f9 iscsi_tcp_conn_get_stats +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xa90e60ed iscsi_tcp_task_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xbbd4579e iscsi_tcp_dgst_header +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xc0232070 iscsi_tcp_segment_done +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xc0c127a6 iscsi_tcp_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xc834dd07 iscsi_tcp_hdr_recv_prep +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xd608c699 iscsi_segment_init_linear +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xd64e3162 iscsi_tcp_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xeb79d06c iscsi_tcp_task_init +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x07300f93 sas_drain_work +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x08db1c74 sas_notify_phy_event +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x09803ed4 sas_bios_param +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0f6f4381 sas_eh_target_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0fa7b599 sas_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x15bfee80 sas_alloc_slow_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3e146265 sas_task_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4a5dc0d8 sas_slave_configure +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x52d14108 dev_attr_phy_event_threshold +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x55fde654 sas_unregister_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x59860b7d sas_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6239315b sas_ssp_task_response +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x702b320f sas_register_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7fd660aa sas_eh_device_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8024378e sas_free_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x92ce93bb sas_get_local_phy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9ebef77e sas_domain_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa000c4d0 sas_alloc_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xae3740cb sas_phy_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb8d88e0b sas_notify_port_event +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc6c71151 sas_target_destroy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd311ed6e sas_request_addr +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd5b5c828 sas_slave_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe61fa47c sas_eh_abort_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xfcc0a76d sas_change_queue_depth +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xfd223443 sas_ioctl +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_fc 0x7c1fa9e3 fc_eh_should_retry_cmd +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x04904d40 iscsi_put_conn EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0736dd10 __tracepoint_iscsi_dbg_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x09ba5fb4 iscsi_lookup_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0dcee9f0 iscsi_destroy_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0e2dfe31 iscsi_ping_comp_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x103481e4 iscsi_host_for_each_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2d514c1d iscsi_dbg_trace -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2efb396f iscsi_destroy_all_flashnode -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3197eece __traceiter_iscsi_dbg_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x31d6cd58 iscsi_flashnode_bus_match +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0845cd33 iscsi_conn_error_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0a51842b iscsi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0da2c1be __traceiter_iscsi_dbg_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0dbc7fd7 iscsi_create_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1da41414 iscsi_destroy_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2d4bab77 iscsi_unregister_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x30f1ab89 iscsi_post_host_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x35669709 iscsi_session_event EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3785e561 __tracepoint_iscsi_dbg_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3873e2da iscsi_create_iface -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x40e98d59 iscsi_conn_login_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x44733a75 iscsi_is_session_dev -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x49060b14 iscsi_create_flashnode_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4c07c890 iscsi_destroy_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x50e48cc1 iscsi_unregister_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x530f8585 iscsi_get_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3d7351a6 iscsi_flashnode_bus_match +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x46224e1a iscsi_get_port_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x47c32bad iscsi_is_session_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4bc53af7 iscsi_create_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x57daba0a iscsi_conn_login_event EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x584a31ab __SCK__tp_func_iscsi_dbg_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5bfa6204 __traceiter_iscsi_dbg_sw_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x58815d5c iscsi_put_endpoint EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5bfaa2c3 __tracepoint_iscsi_dbg_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x62fe4fd4 iscsi_add_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5f19aaf3 iscsi_is_session_online +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x62c27635 iscsi_get_port_speed_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6571a620 iscsi_destroy_conn EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x699fe53e iscsi_get_discovery_parent_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x69e39717 iscsi_block_scsi_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6c704535 __traceiter_iscsi_dbg_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6ff8a38f iscsi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6d2872d3 iscsi_create_endpoint EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x71b768b0 __SCK__tp_func_iscsi_dbg_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x74d5879f iscsi_unblock_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x78c6e687 iscsi_put_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7963a2bf iscsi_offload_mesg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7cb24fb8 iscsi_session_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7d3f56e1 iscsi_create_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7e085641 iscsi_get_port_speed_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7ffd2c99 iscsi_is_session_online -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x81ca3d7b iscsi_recv_pdu +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7f6bd21d iscsi_create_conn EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x84a005f1 iscsi_get_router_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x86286306 iscsi_destroy_conn EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x88768c48 __SCK__tp_func_iscsi_dbg_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x89a2aefa iscsi_create_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9603a231 iscsi_get_port_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9ab5273f iscsi_block_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9fe36073 iscsi_remove_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa1922f9e __traceiter_iscsi_dbg_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa72bede9 iscsi_register_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8a86c7d1 iscsi_free_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8c4108fc iscsi_dbg_trace +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9013371e iscsi_destroy_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x95b69dd5 __traceiter_iscsi_dbg_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x99057242 iscsi_remove_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9af8216d iscsi_block_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa05b3bec iscsi_find_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa067b232 iscsi_alloc_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa3bb7b8c iscsi_register_transport 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 0xbb7f516a iscsi_free_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xae5238f7 iscsi_destroy_all_flashnode +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb0af6e04 __traceiter_iscsi_dbg_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb522816e __traceiter_iscsi_dbg_sw_tcp EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc071179 iscsi_get_ipaddress_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc18e90bc iscsi_put_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc3829807 iscsi_find_flashnode_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xcf7e8cfa iscsi_session_chkready +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbd2ebc6d iscsi_session_chkready +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbe0433b9 __traceiter_iscsi_dbg_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc354ffcf iscsi_unblock_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc78f35da iscsi_offload_mesg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xcae22a34 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 0xdb51a11a iscsi_post_host_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd5e0fe3e iscsi_ping_comp_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd736b4fd iscsi_recv_pdu +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xda0e25bd iscsi_get_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe17b2ce1 iscsi_block_scsi_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe2a7626e iscsi_add_session EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe4c79fa6 __SCK__tp_func_iscsi_dbg_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe5eab54e iscsi_alloc_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe7123ddd __traceiter_iscsi_dbg_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe901662f iscsi_destroy_iface -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf09f66bc iscsi_conn_error_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf9e99dff iscsi_create_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfa2c6474 iscsi_find_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x0522ef6d sas_enable_tlr -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x3b8efe7f sas_is_tlr_enabled -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xccab44ad sas_tlr_supported -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xff0fd1de sas_disable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe879df43 iscsi_find_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xeb2780e8 iscsi_host_for_each_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xed30839d iscsi_lookup_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfa3995c9 iscsi_create_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfe3e1160 iscsi_scan_finished +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x08d9c9be sas_enable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xcd4f0681 sas_tlr_supported +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xed1d8ec0 sas_is_tlr_enabled +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xf17c92fd sas_disable_tlr EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x0ef06974 spi_populate_ppr_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x33424010 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 0xf7c883ca spi_populate_tag_msg EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x1902178a srp_tmo_valid -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x24d54782 srp_rport_del -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x27edc484 srp_rport_add -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x547d46b9 srp_stop_rport_timers -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x5eab2564 srp_attach_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x6247057b srp_remove_host -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xe4765e9c srp_release_transport -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x350081f2 siox_device_connected -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x84e561ac siox_master_register -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x88302fb7 siox_device_synced -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x985833cc __siox_driver_register -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x9a4034d7 siox_master_alloc -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xb9b9cc79 siox_master_unregister -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x0eb53ec8 slim_free_txn_tid -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x14130057 slim_ctrl_clk_pause -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x18a9de4c slim_writeb -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x1e1b8110 slim_stream_allocate -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x1f8bb644 slim_get_device -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x2072eeb4 __slim_driver_register -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x31c47571 of_slim_get_device -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x37a11955 slimbus_bus -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x5af58e4b slim_write -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x62e31d08 slim_xfer_msg -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x8ec530e9 slim_alloc_txn_tid -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x903d6e7e slim_readb -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x9134d1a1 slim_device_report_present -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xa3b2b073 slim_do_transfer -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xa7bf837b slim_driver_unregister -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xad5369df slim_stream_unprepare -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xb35c1eb7 slim_get_logical_addr -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xb569ddb5 slim_stream_free -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xbc752906 slim_msg_response -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xbebf560e slim_read -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xc1c9e8f3 slim_stream_disable -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xd67ff736 slim_unregister_controller -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xe59218d8 slim_stream_enable -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xe88fee3e slim_report_absent -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xf39b7ebd slim_stream_prepare -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xfd6724ce slim_register_controller -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xa3e5507e target_init_cmd -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xc625eb69 target_queue_submission -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xe852ae3d target_submit -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xfabe1312 target_submit_prep -EXPORT_SYMBOL_GPL drivers/tty/serial/serial_core 0x04a4a4e6 uart_handle_cts_change -EXPORT_SYMBOL_GPL drivers/tty/serial/serial_core 0x2489aac0 uart_try_toggle_sysrq -EXPORT_SYMBOL_GPL drivers/tty/serial/serial_core 0xb0380727 uart_console_device -EXPORT_SYMBOL_GPL drivers/tty/serial/serial_core 0xb945f1a9 uart_insert_char -EXPORT_SYMBOL_GPL drivers/tty/serial/serial_core 0xc256c59b uart_get_rs485_mode -EXPORT_SYMBOL_GPL drivers/tty/serial/serial_core 0xe2147fe2 uart_handle_dcd_change -EXPORT_SYMBOL_GPL drivers/uio/uio 0x15ce55ea __devm_uio_register_device -EXPORT_SYMBOL_GPL drivers/uio/uio 0x4ee723b1 uio_unregister_device -EXPORT_SYMBOL_GPL drivers/uio/uio 0xec74e104 uio_event_notify -EXPORT_SYMBOL_GPL drivers/uio/uio 0xfa3c1ead __uio_register_device -EXPORT_SYMBOL_GPL drivers/vfio/mdev/mdev 0x7a472e52 mdev_bus_type -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x0dc4a752 vfio_pci_core_sriov_configure -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x1b40673b vfio_pci_core_write -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x2ea5b0da vfio_pci_core_close_device -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x3ba131f3 vfio_pci_core_unregister_device -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x3d010685 vfio_pci_core_request +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x6d20a898 srp_stop_rport_timers +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x6f3bc1a9 srp_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xc7b11f67 srp_rport_del +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xdcabb4a8 srp_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xdd2ff4f2 srp_remove_host +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xffaec6e4 srp_rport_add +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x30a0db1c siox_master_register +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x3a6e3bbe __siox_driver_register +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x5e32d944 siox_master_unregister +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x5f286634 siox_device_synced +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xb331e88f siox_master_alloc +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xca9df8a7 siox_device_connected +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x04a5ebc1 slim_ctrl_clk_pause +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x0eea0669 slim_unregister_controller +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x14a44a11 slim_register_controller +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x28290864 slim_stream_prepare +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x28716af5 slim_alloc_txn_tid +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x3063c064 slim_get_device +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x31da132e slim_free_txn_tid +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x357deccf slim_stream_unprepare +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x3bce46b8 slim_stream_allocate +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x42cbed5d slim_readb +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x54e208d8 slim_do_transfer +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x6009844d slim_device_report_present +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x6b2762c9 __slim_driver_register +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x9824d648 slim_write +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x98740105 slim_stream_enable +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x9901c783 slim_driver_unregister +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x9fefd6a1 slim_writeb +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xa20e145d slim_stream_disable +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xab1561f8 slim_stream_free +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xc0cd31aa slimbus_bus +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xc314124c slim_msg_response +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xc55c8646 slim_report_absent +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xcbbf8621 slim_read +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xdb7f28f4 slim_get_logical_addr +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xf80171ba slim_xfer_msg +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xfcfc8a10 of_slim_get_device +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x78e235b1 target_init_cmd +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xc23db4da target_queue_submission +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xc4a2480e target_submit +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xd6f7520f target_submit_prep +EXPORT_SYMBOL_GPL drivers/tty/serial/serial_core 0x450b17bc uart_get_rs485_mode +EXPORT_SYMBOL_GPL drivers/tty/serial/serial_core 0x52454bf1 uart_xchar_out +EXPORT_SYMBOL_GPL drivers/tty/serial/serial_core 0x7e045360 uart_try_toggle_sysrq +EXPORT_SYMBOL_GPL drivers/tty/serial/serial_core 0xa9965cc6 uart_console_device +EXPORT_SYMBOL_GPL drivers/tty/serial/serial_core 0xaffd9f77 uart_handle_dcd_change +EXPORT_SYMBOL_GPL drivers/tty/serial/serial_core 0xdd8cb721 uart_handle_cts_change +EXPORT_SYMBOL_GPL drivers/tty/serial/serial_core 0xfb14f988 uart_insert_char +EXPORT_SYMBOL_GPL drivers/uio/uio 0x2aa79557 __devm_uio_register_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0x5fa5d108 uio_event_notify +EXPORT_SYMBOL_GPL drivers/uio/uio 0xb48060dc uio_unregister_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0xf3c2f78e __uio_register_device +EXPORT_SYMBOL_GPL drivers/vfio/mdev/mdev 0x66e15d53 mdev_bus_type +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x1aef12d9 vfio_pci_core_disable +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x30a3035c vfio_pci_core_match +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x38d0c826 vfio_pci_core_sriov_configure +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x3acea41c vfio_pci_core_close_device +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x3c9e8e23 vfio_pci_core_unregister_device +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x449414ba vfio_pci_core_register_device +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x478f70b9 vfio_pci_core_err_handlers EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x4cf699b8 vfio_pci_core_set_params -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x66413fb7 vfio_pci_core_mmap -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x6b85ec09 vfio_pci_core_finish_enable -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x79fc69c4 vfio_pci_core_enable -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x8086ed7f vfio_pci_core_register_device -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xa5018f28 vfio_pci_core_init_device -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xacd3c331 vfio_pci_register_dev_region -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xb5c2a885 vfio_pci_core_disable -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xc6d49296 vfio_pci_core_err_handlers -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xd40b1e56 vfio_pci_core_read -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xe1685f16 vfio_pci_core_ioctl -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xe339a302 vfio_pci_core_match -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xfe12ba84 vfio_pci_core_uninit_device -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x100b1d00 vfio_group_get_external_user_from_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x14d9cb64 vfio_unregister_iommu_driver -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x2966d331 vfio_group_get_external_user -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x29800181 vfio_register_iommu_driver -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x2c7bbaf0 vfio_device_get_from_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x30047936 vfio_iommu_group_put +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x74bca8a9 vfio_pci_core_write +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x85a82b53 vfio_pci_core_enable +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x91c1b74b vfio_pci_core_read +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xa8ed7406 vfio_pci_core_ioctl +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xb6037f35 vfio_pci_core_mmap +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xcc16096d vfio_pci_core_request +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xd665188f vfio_pci_register_dev_region +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xf113da00 vfio_pci_core_init_device +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xf88bbbea vfio_pci_core_uninit_device +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xfacc022f vfio_pci_core_finish_enable +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x1362c257 vfio_device_get_from_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x16e3fcd1 vfio_assign_device_set +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x1ad52d56 vfio_register_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x21d16a7e vfio_uninit_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x2f16f9b1 vfio_device_put EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x3567743b vfio_external_user_iommu_id -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x37ac4624 vfio_device_put +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x394b0e3a vfio_iommu_group_get EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x529db99e vfio_info_cap_add +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x55ac232d vfio_group_get_external_user EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x5b35c4f9 vfio_group_set_kvm -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x6e208472 vfio_assign_device_set -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x8a9a1bc9 vfio_uninit_group_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x8e635eb2 vfio_unregister_group_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x95cbf4f1 vfio_init_group_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x995a0096 vfio_group_iommu_domain -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xa82ad005 vfio_register_group_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xa8bb39ca vfio_iommu_group_get +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x5da8f325 vfio_init_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x66406c59 vfio_group_get_external_user_from_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x86e92bad vfio_unregister_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xa3a6b881 vfio_unregister_iommu_driver +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xbefee56b vfio_group_iommu_domain EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc1d989c5 vfio_external_check_extension EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc4913442 vfio_group_put_external_user -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xd2e083bc vfio_external_group_match_file -EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0x4d3fd430 vfio_virqfd_disable -EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0xc0b78838 vfio_virqfd_enable -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1672497f vhost_vq_is_setup -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1709e4e8 vhost_poll_flush -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x19ed8fc8 vhost_work_queue -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1b71bbda vhost_disable_notify -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x260f840c vhost_dev_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x28ac1cdd vhost_vq_init_access -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2fe3066f vhost_has_work -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x43556cea vhost_dev_reset_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x440b8616 vhost_vring_ioctl -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x465c1752 vhost_poll_queue -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4f464830 vhost_new_msg -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x56f230ae vhost_dev_cleanup -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x57d17131 vhost_poll_start -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6115e438 vhost_work_dev_flush -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x671327ae vhost_init_device_iotlb -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6e8d32b6 vhost_dev_ioctl -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7973cfea vhost_vq_access_ok -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x821db516 vhost_discard_vq_desc -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x915af443 vhost_poll_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x91b0f08a vhost_dev_set_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x97e76c55 vhost_chr_read_iter -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa1ebe581 vhost_add_used_n -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa46ce4a0 vhost_dev_has_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa8452d90 vhost_dev_stop +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xcd185c35 vfio_register_iommu_driver +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xe12579bd vfio_iommu_group_put +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xf074d38c vfio_external_group_match_file +EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0xb4a428a9 vfio_virqfd_enable +EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0xced94139 vfio_virqfd_disable +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x011d73ef vhost_work_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x02499ad9 vhost_add_used_and_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x02c3c1e8 vhost_enable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x02dd4020 vhost_discard_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x07b049a8 vhost_dev_reset_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0ed2c113 vhost_vq_is_setup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1b6e7333 vhost_has_work +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1cfeb109 vhost_log_write +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x29282ffa vhost_dev_check_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2abb928c vhost_vq_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3e9d52a1 vhost_log_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5135ac7d vhost_work_dev_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x558776b5 vhost_poll_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x688014bf vhost_add_used_and_signal_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6920559d vhost_poll_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6992de63 vq_meta_prefetch +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6cd0e351 vhost_new_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7501f83f vhost_set_backend_features +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x75bb8b79 vhost_chr_read_iter +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x79b53bd9 vhost_init_device_iotlb +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7ac92073 vhost_vring_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x80d8eb81 vhost_dev_cleanup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x86caca83 vhost_poll_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x89450abb vhost_dequeue_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8a140b25 vhost_add_used +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8c98cc0e vhost_dev_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8eee7f33 vhost_add_used_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8f1aa15d vhost_dev_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x927cb5fd vhost_disable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x981e09aa vhost_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa4819ea2 vhost_get_vq_desc EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa909cfc5 vhost_work_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa9a0b570 vhost_add_used_and_signal_n -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb5ec9fda vhost_enable_notify -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xbb6e8d34 vhost_dev_check_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc68c9ab2 vhost_dequeue_msg -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc79eaa3b vhost_get_vq_desc -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc7bcb45c vhost_add_used_and_signal -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xca29a958 vhost_set_backend_features -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd133409a vhost_log_access_ok -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xdec220ee vq_meta_prefetch -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe550eef4 vhost_log_write -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf019e788 vhost_vq_avail_empty -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf1428ac9 vhost_signal -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf89eac23 vhost_add_used -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfcaf90b2 vhost_enqueue_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa9cf5d54 vhost_exceeds_weight +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xae2de3a0 vhost_enqueue_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xbe2eb8c4 vhost_vq_avail_empty +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xcf63eaa3 vhost_poll_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd0818efd vhost_dev_has_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd35a5857 vhost_vq_init_access +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf0a553b9 vhost_dev_set_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf59eedca vhost_dev_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf6b7ac8f vhost_poll_start EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfd2b3e45 vhost_dev_reset_owner_prepare -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xff04f3b7 vhost_poll_stop -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xffd1b3ba vhost_exceeds_weight 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 @@ -8621,359 +8627,358 @@ EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0xa24517eb vhost_iotlb_free EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0xc577832d vhost_iotlb_alloc EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0xf9deb0db vhost_iotlb_map_free -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x3c081a7f fb_sys_write -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x62c63788 fb_sys_read -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x37527e01 dlm_posix_get +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0xc1c5c866 fb_sys_write +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0xe935522f fb_sys_read +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x3275d25f dlm_posix_unlock EXPORT_SYMBOL_GPL fs/dlm/dlm 0x4b62826c dlm_unlock EXPORT_SYMBOL_GPL fs/dlm/dlm 0x647d6170 dlm_lock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xac63ac44 dlm_posix_unlock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x7e0f11fb dlm_posix_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x89c6cc48 dlm_posix_get EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcd224e1d dlm_new_lockspace EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcf9f3328 dlm_release_lockspace -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xd304c88b dlm_posix_lock EXPORT_SYMBOL_GPL fs/fscache/fscache 0x092cf98e fscache_object_sleep_till_congested -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x45139f48 nlmsvc_ops -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x72694475 lockd_up -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x7727b1ff nlmsvc_unlock_all_by_sb +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x40a8c52f nlmsvc_ops +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x54c09986 nlmclnt_proc EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77e35ccc nlmsvc_unlock_all_by_ip -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x79aa90ae nlmclnt_init -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x8e7f8da2 nlmclnt_done -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x98734022 nlmclnt_proc -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xb9ca1daa lockd_down +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x8132a0dd nlmclnt_init +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x9d55e8a3 nlmclnt_done +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x9f2cf1a2 nlmsvc_unlock_all_by_sb +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xc838d893 lockd_up +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xef7ffe23 lockd_down +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x016b58ae nfs_clone_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x019e84ff nfs_atomic_open EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0294c6a2 nfs_callback_nr_threads -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x03b7dc79 __traceiter_nfs_fsync_enter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x04f3dd7d nfs_init_cinfo -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0576158a nfs_post_op_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x062341dc nfs_permission -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x086d1579 nfs4_fs_type -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0ac3631c nfs_clear_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0f75f326 nfs_mknod +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x02a1b3c6 nfs_pageio_resend +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x04f449e5 nfs_client_for_each_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x072f9c46 nfs_access_get_cached +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x07792e7d nfs_refresh_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0b015494 alloc_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0b0161e0 nfs_file_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0d5e2a9f nfs_probe_fsinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0de11826 nfs_server_remove_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0e2b6a74 nfs_setattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0e817da0 nfs_commit_inode EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10962bc2 nfs_auth_info_match -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10fe3a45 nfs_setsecurity -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x11508c9e nfs_pageio_reset_write_mds -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x11df19db nfs_commitdata_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x149459fc nfs_commit_free -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x151dc44e nfs_revalidate_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x174a816b nfs_wait_client_init_complete -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x17c50be4 nfs_refresh_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x17ca2b06 nfs_post_op_update_inode_force_wcc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x117640d0 nfs_server_copy_userdata +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x11cc8c38 nfs_generic_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x155d9693 nfs_clear_verifier_delegated +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x176d6d81 __traceiter_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x17a68066 nfs_show_stats +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x17e3dbdd nfs_add_or_obtain +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1b310381 nfs_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1b3fdb0c nfs_close_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1b95a910 register_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1c429209 nfs_free_client EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1c4a377a nfs_dreq_bytes_left +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1cc8ca62 nfs_retry_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1eb4ee92 nfs_server_insert_lists EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1ed32581 nfs_access_set_mask -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x22ad2bfe nfs_symlink -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x22aeb31e nfs_request_add_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1f0aebc0 nfs_flock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x22ced5f3 nfs_commitdata_alloc EXPORT_SYMBOL_GPL fs/nfs/nfs 0x22d795a8 _nfs_display_fhandle_hash -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2362eca7 nfs_pageio_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x25bdad42 nfs_inode_attach_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x248f77a6 nfs_init_server_rpcclient +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2503e2d9 nfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26066742 nfs_sops +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x264bc3c6 nfs_create_server EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2bdc38b4 nfs_zap_acl_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2c47289b nfs_free_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2e9dada2 nfs_file_llseek +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x270b42a0 nfs4_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2b8333d1 nfs_initiate_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2c9c4d69 nfs_lock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2f0f07ec nfs_write_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2f760ab5 nfs_post_op_update_inode EXPORT_SYMBOL_GPL fs/nfs/nfs 0x30496988 __tracepoint_nfs_fsync_enter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3138a229 __traceiter_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3165d5fe nfs_writeback_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x35c0e5c4 nfs_get_lock_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x394767f5 nfs_fhget +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x30900754 nfs_wait_client_init_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x31956c7d nfs_clear_inode EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3a0ec760 nfs_force_lookup_revalidate -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3a355fc0 nfs_init_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3a3871bf nfs_file_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3af81e8b nfs_file_set_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3c685c28 nfs_file_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3cc3905c get_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3cf1850a nfs_getattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3e97db13 nfs_fhget 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 0x40e09d91 nfs_unlink -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x422dc29c nfs_atomic_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40e01f26 nfs_invalidate_atime EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f2c81f nfs4_client_id_uniquifier EXPORT_SYMBOL_GPL fs/nfs/nfs 0x44cc3a41 __tracepoint_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x44e20757 nfs_create_rpc_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x482bb531 nfs_file_release -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x49a84837 nfs_async_iocounter_wait +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x48b94d27 nfs_filemap_write_and_wait_range +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x49b65a57 nfs_force_lookup_revalidate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4c501bd0 nfs_request_add_commit_list_locked EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5054ee1c __traceiter_nfs_xdr_bad_filehandle EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x53226555 unregister_nfs_version -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x54e0fb0b nfs_flock -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5763fd12 nfs_generic_pg_test -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x582a74e5 nfs_server_copy_userdata +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x53046f13 nfs_fscache_open_file +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x53d4c5af nfs_pageio_reset_read_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x55900ddf nfs_pageio_init_write EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584b8482 nfs_inc_attr_generation_counter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x591fba9e nfs_set_verifier EXPORT_SYMBOL_GPL fs/nfs/nfs 0x59923eb3 __tracepoint_nfs_xdr_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5acc60c6 nfs_initiate_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5d7b00ba nfs_path -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x64f6f424 nfs4_label_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x65d1b90f alloc_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x660df65c nfs_wb_all -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x67d54d49 nfs_client_for_each_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x683aee1f nfs_retry_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6b825acb nfs_rmdir -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6e600e53 nfs_close_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x59a97b4f nfs_check_cache_invalid +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5ad9b574 nfs_alloc_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5afbc457 nfs_pgio_header_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x600c456a nfs4_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x60592864 nfs_sb_deactive +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x60e957a8 nfs_init_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x68f1c1eb nfs_sync_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x69d84f5b nfs_free_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x69f63fb4 nfs_permission +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6ab5fff9 nfs_link +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6baf7c0b nfs_get_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6dfc1458 nfs_request_remove_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6e2c1593 __traceiter_nfs_xdr_status EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6e81f032 __SCK__tp_func_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x71fd1ba2 nfs_check_cache_invalid -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x73119dca nfs_mark_client_ready -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x73328ca2 nfs_instantiate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x700de9bd nfs_access_add_cache EXPORT_SYMBOL_GPL fs/nfs/nfs 0x73dff4c0 __SCK__tp_func_nfs_xdr_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x744052d3 nfs_kill_super -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x74d7ab0c nfs_fs_type -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x78e3f4fe nfs_commit_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7bfd0701 nfs_file_write -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7d521cd7 nfs_pgio_header_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7dc6486d nfs_initiate_pgio -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7e5c27ba nfs_show_stats -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7f57cc81 nfs4_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7747ca89 nfs_reconfigure +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x774ab1de nfs_put_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x792fd0b8 nfs_statfs +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x80275865 __traceiter_nfs_xdr_bad_filehandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x81ef45d9 nfs_wb_all +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x82f17248 nfs_show_devname EXPORT_SYMBOL_GPL fs/nfs/nfs 0x832e8f0b nfs_alloc_fattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x84425a18 nfs_setattr_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x880826d9 nfs_invalidate_atime -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x887dee87 nfs_rename -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x88e4ee3e put_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x89197d57 nfs_request_add_commit_list_locked -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8bbef52d nfs_free_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8bdedb2a nfs_file_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8cf6d0d7 nfs_pgio_header_free -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8edbe881 nfs_umount_begin +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x838bc81e nfs_may_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x848b48b8 nfs_commitdata_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x852bd50f nfs_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x858e5103 nfs_mark_client_ready +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x883b1957 nfs_release_request +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8b9ccf72 nfs_init_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8bea8e42 nfs_file_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8f8a2d16 nfs_alloc_server EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90a5530f nfsiod_workqueue EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91d1fe52 max_session_slots -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9281d868 nfs_sync_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x93340b75 nfs_sops -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x945b5088 nfs_lock EXPORT_SYMBOL_GPL fs/nfs/nfs 0x95007f7e __SCK__tp_func_nfs_xdr_bad_filehandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x958715a5 nfs_access_get_cached +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9598d777 nfs_client_init_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x974951f8 nfs_init_cinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9843d000 nfs_create EXPORT_SYMBOL_GPL fs/nfs/nfs 0x98b0ece8 nfs_init_timeout_values -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9c1425c0 nfs_file_mmap -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9ca6014d get_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9ce86772 nfs_may_open -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9d018309 nfs_show_options -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9e8ed3be nfs_init_server_rpcclient +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x996c8933 nfs_umount_begin +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9c135019 nfs_post_op_update_inode_force_wcc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9e2b39d3 nfs_pageio_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9e7522c0 nfs_rename +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9fbdc1f7 nfs_put_client EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa05ca625 nfs_fattr_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa3236b7d nfs_file_fsync -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa74ac2ba nfs_sb_deactive +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa0fc6984 nfs_pgheader_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa229d0f0 nfs_free_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa4f2659f nfs_show_options +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa751257a nfs_writeback_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8ab2250 nfs_file_mmap +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8c31d05 nfs_pageio_reset_write_mds EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e9e1ae send_implementation_id -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa9dcd663 nfs_getattr EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaafd4acc max_session_cb_slots -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xab3175c8 nfs_alloc_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaec1c2ce nfs_clear_verifier_delegated -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaef96b53 nfs_pageio_reset_read_mds -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xafd4b203 nfs_free_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb02488ec nfs_pgheader_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb1e9e532 nfs_dentry_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb2d6b077 nfs_setattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb396be2c nfs_client_init_is_complete -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb5a0a4f4 nfs_pageio_resend -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb70e5d70 nfs_lookup -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb86af4e9 nfs_show_devname -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb8a31495 nfs_generic_pgio -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb917339c nfs_server_insert_lists -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbb4d9ddc nfs_file_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbb771b46 nfs_alloc_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbf8d9cb9 nfs_probe_fsinfo -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc048556b nfs_scan_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc14ae750 nfs_add_or_obtain -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc25a185a nfs_mkdir -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc2e6458f nfs_statfs -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc30bca33 nfs_access_add_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc346da0f __traceiter_nfs_xdr_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc387fe21 nfs_drop_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xab42efa3 nfs4_label_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xabb3740d nfs_revalidate_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaea9962b nfs_rmdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbe28890c nfs_access_zap_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc045e749 nfs_request_add_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc205d0b5 nfs_setsecurity +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc2b1ad81 nfs_pgio_current_mirror EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3a2be67 nfs_net_id -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc44d9084 nfs_request_remove_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc4557843 nfs_reconfigure -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc71df4a7 nfs_pgio_current_mirror -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc7278990 nfs_create_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc7f97024 register_nfs_version -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc99a9017 nfs_put_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcb9e5644 nfs_put_lock_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcd29aa14 nfs_file_set_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcd7a3c8a nfs_alloc_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcf3a96fb nfs_try_get_tree -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd43e9e18 nfs_sb_active -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd5b86cea nfs_access_zap_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd6b55ea3 nfs_submount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xda41252e nfs_write_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xda45582c nfs_server_remove_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc558012c nfs_wait_on_request +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc58d7ba8 nfs_file_llseek +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc68eedae nfs_client_init_is_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc83440de nfs_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc8ec6c67 nfs_show_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc8f04c9c __traceiter_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcb5eb86e unregister_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcda5b3a5 nfs_alloc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcf3f304c put_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcfa843bc nfs_async_iocounter_wait +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd0432f8c nfs_get_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd10a66e7 nfs_lookup +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd363e4ab nfs_sb_active +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd7eaafcc nfs_drop_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd806d1b3 nfs_file_fsync +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xda04a05d nfs_scan_commit_list EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdb607649 nfs_init_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xde5f1909 nfs_wait_on_request -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdf67f3dd nfs_set_verifier -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe2047129 nfs_create -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe2b85d84 nfs_get_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe55d1ad0 nfs_link -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe5badc84 nfs_fscache_open_file -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe652ffc0 nfs_commitdata_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xddad2980 nfs_unlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdee2a562 nfs_commit_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdf25f2a9 nfs_inode_attach_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe0af1a16 nfs_instantiate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe653a271 nfs_submount EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe70507df __tracepoint_nfs_xdr_bad_filehandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe95df46c nfs_pageio_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe98e1944 nfs_client_init_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xecca7746 nfs_filemap_write_and_wait_range -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xedca0d19 nfs_show_path -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf1cbd079 nfs_do_submount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf667e57f nfs_release_request +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe8e90f86 nfs_mknod +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe94a5ba4 nfs_initiate_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe9681bda nfs_pgio_header_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe9bb15e3 nfs_kill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xebb1668b nfs_set_cache_invalid +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xecbba05e nfs_symlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xee2fb22a nfs_create_rpc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeed10db0 nfs_try_get_tree +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf16a8c43 nfs_do_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf494d6d0 nfs_mkdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf816628d nfs_setattr_update_inode EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf96f04c4 __SCK__tp_func_nfs_fsync_enter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfb07a3dc nfs_clone_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfbfd3a70 nfs_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfb066dcd nfs_zap_acl_cache EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc619abd _nfs_display_fhandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xffd12322 nfs_set_cache_invalid -EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0xef29e96d nfs3_set_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x029c24f5 pnfs_ld_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0x31499bf0 nfs3_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0289f20c pnfs_destroy_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x04cee0fe nfs4_init_deviceid_node EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x062b4aa0 pnfs_free_commit_array -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x07f91d0f __traceiter_ff_layout_read_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x077ffced __traceiter_pnfs_mds_fallback_pg_init_write 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 0x0b5bd6f0 nfs4_schedule_lease_moved_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0e6669ba nfs4_proc_getdeviceinfo EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0f01076e __tracepoint_pnfs_mds_fallback_pg_get_mirror_count -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0fd90b2d nfs4_init_ds_session +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0fd6cc56 nfs4_pnfs_ds_put EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0ff289f3 __SCK__tp_func_pnfs_mds_fallback_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1216e202 pnfs_generic_pg_check_range -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x17ddca93 __traceiter_ff_layout_write_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1f6adafd pnfs_generic_prepare_to_resend_writes -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x22fbf6c9 pnfs_generic_ds_cinfo_release_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x233d77a4 nfs4_sequence_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x262dc1e2 nfs41_sequence_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x26b61886 nfs_remove_bad_delegation +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1695d9f7 pnfs_generic_commit_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1c3323fe nfs_remove_bad_delegation +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1e3d11b3 pnfs_generic_write_commit_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2264040d __traceiter_nfs4_pnfs_commit_ds EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x27ad47ea __SCK__tp_func_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x28b3106e pnfs_ld_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2a1ac032 pnfs_generic_search_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2bd4279f pnfs_write_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2f5f92e8 pnfs_generic_sync EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x30a44ac3 __SCK__tp_func_ff_layout_write_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x327050b0 __traceiter_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x322a745d pnfs_put_lseg EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x32bb6e05 __tracepoint_ff_layout_write_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x36b59f2b pnfs_generic_pg_check_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3728a470 __traceiter_pnfs_mds_fallback_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x38b1722b nfs4_find_get_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3c1faf15 pnfs_layoutcommit_inode -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x40e00821 pnfs_generic_sync -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x41b710e4 nfs4_test_session_trunk -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x430b29b0 nfs4_schedule_stateid_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x44c3d3b8 __traceiter_nfs4_pnfs_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x49d0ad84 pnfs_generic_scan_commit_lists -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4abf38bc pnfs_generic_layout_insert_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x52421007 __traceiter_ff_layout_commit_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x32e09588 pnfs_generic_recover_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x36a04149 __traceiter_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x40c8d4c6 nfs4_schedule_lease_moved_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4607eb42 __traceiter_pnfs_mds_fallback_write_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4caf2490 pnfs_layoutcommit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4f5ac713 pnfs_generic_pg_readpages EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x533c198f __SCK__tp_func_nfs4_pnfs_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x54da89b9 __traceiter_pnfs_mds_fallback_read_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x535db871 nfs4_schedule_migration_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x573c6928 nfs4_set_ds_client EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x579126b8 __SCK__tp_func_pnfs_mds_fallback_read_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x57ec1e56 __traceiter_ff_layout_read_error EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5a4314e9 __SCK__tp_func_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5cca836e pnfs_update_layout EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5ce462a3 __tracepoint_pnfs_mds_fallback_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x651e4675 pnfs_generic_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x65341960 nfs4_schedule_session_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x657563af __traceiter_pnfs_mds_fallback_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5f201d75 pnfs_alloc_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x65055f5f pnfs_generic_prepare_to_resend_writes +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x68d9ef1c __traceiter_ff_layout_write_error EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6cb59901 pnfs_generic_search_commit_reqs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6d6c9bf4 nfs4_init_deviceid_node -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7052c8a3 nfs4_schedule_lease_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x723a741f nfs4_set_rw_stateid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69f8973c pnfs_free_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6b864b97 pnfs_generic_layout_insert_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7464600a pnfs_generic_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x74e897da nfs4_pnfs_ds_add +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x77f6af5a __traceiter_pnfs_mds_fallback_pg_get_mirror_count EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x785c06ab __SCK__tp_func_ff_layout_read_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x79542ca1 nfs4_decode_mp_ds_addr 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 0x7b1a7c15 pnfs_set_layoutcommit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7b7d1f1a nfs4_pnfs_ds_connect EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7cd013a8 __SCK__tp_func_pnfs_mds_fallback_pg_get_mirror_count -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7dbc782a nfs4_put_deviceid_node -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x81e8322a pnfs_ld_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7e3b43ca pnfs_add_commit_array EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x82409884 __tracepoint_pnfs_mds_fallback_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x90797e10 pnfs_generic_pg_writepages -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x92529f60 __traceiter_pnfs_mds_fallback_write_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x93aff46a nfs4_mark_deviceid_unavailable -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x95a08557 nfs4_find_or_create_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x864b7627 pnfs_generic_pg_cleanup +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x87f165a9 pnfs_generic_pg_check_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8e9228bb pnfs_unregister_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x906de98c pnfs_register_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x93a71d4b nfs4_delete_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x95708c01 nfs4_init_ds_session EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x974a1614 __tracepoint_pnfs_mds_fallback_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9861f6bf __traceiter_pnfs_mds_fallback_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x994a57b8 pnfs_generic_write_commit_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x99ac2f92 pnfs_read_resend_pnfs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x99d44f61 nfs4_find_get_deviceid EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9a1a74c3 __tracepoint_nfs4_pnfs_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9ec6167b pnfs_layout_mark_request_commit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa10a6f76 __traceiter_nfs4_pnfs_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa2e9e812 pnfs_add_commit_array -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa36d00be nfs4_set_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa4a2782d nfs4_delete_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa5fe1309 nfs4_pnfs_ds_add -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa83118c0 pnfs_error_mark_layout_for_return -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xaa23ebdb pnfs_set_lo_fail -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xaad4e720 pnfs_write_done_resend_to_mds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb0b4f92e pnfs_generic_pg_readpages -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb3522230 __traceiter_pnfs_mds_fallback_pg_get_mirror_count -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb605a13d pnfs_generic_recover_commit_reqs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb6ba1376 pnfs_read_done_resend_to_mds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb7b01a8a pnfs_generic_commit_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb9f370c6 pnfs_put_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9e24bd0b nfs4_decode_mp_ds_addr +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9efc3734 pnfs_read_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa11dbff7 nfs4_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa46bd781 nfs42_proc_layouterror +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa54c6ff7 pnfs_generic_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa79228ba nfs4_mark_deviceid_available +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa8298241 nfs4_set_rw_stateid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xad73d30f pnfs_nfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb0546262 __traceiter_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb38d8e51 pnfs_generic_ds_cinfo_release_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb4a3dd67 nfs4_pnfs_ds_connect +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb7f05797 nfs4_test_session_trunk EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xba53a1ef __SCK__tp_func_pnfs_mds_fallback_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbf1d0507 nfs4_mark_deviceid_available +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbb6784e8 __traceiter_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbf8f498a pnfs_read_resend_pnfs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc14d18a1 __traceiter_ff_layout_commit_error EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc3331772 nfs_map_string_to_numeric -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc75b0467 pnfs_generic_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc69ea549 pnfs_report_layoutstat +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc75ac4f6 pnfs_ld_write_done EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc7a9d954 __SCK__tp_func_nfs4_pnfs_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc7d787dd nfs42_proc_layouterror -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcc63703e pnfs_register_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcd538db8 __traceiter_pnfs_mds_fallback_pg_init_read EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcf29b95f __tracepoint_pnfs_mds_fallback_read_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd0b08e24 pnfs_generic_ds_cinfo_destroy EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd0ecfaad __tracepoint_pnfs_mds_fallback_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd1d476ac nfs4_schedule_migration_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd2c67a57 pnfs_update_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd2fc7c21 pnfs_generic_ds_cinfo_destroy -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd362c7e3 pnfs_generic_clear_request_commit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd9925e78 nfs4_test_deviceid_unavailable -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xde006df9 __traceiter_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd0f8d847 nfs4_schedule_session_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd32e23ab nfs4_test_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd51bc891 pnfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdc3f737a pnfs_set_layoutcommit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdcc4bd48 nfs4_mark_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdd67e02c nfs4_put_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdd8d77d7 pnfs_generic_pg_writepages EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdf6991a4 __SCK__tp_func_pnfs_mds_fallback_write_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdf867e98 pnfs_generic_scan_commit_lists EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe19f5ee0 __tracepoint_pnfs_mds_fallback_write_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe2965684 pnfs_nfs_generic_sync -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe31b4873 pnfs_unregister_layoutdriver -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe32533a8 nfs4_proc_getdeviceinfo -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe373fd7c pnfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe2b1e523 __traceiter_pnfs_mds_fallback_read_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe45e91d7 nfs41_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe5121c6c pnfs_error_mark_layout_for_return +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe9671d60 pnfs_generic_clear_request_commit EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xeae8522f __tracepoint_nfs4_pnfs_commit_ds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xebe507e4 pnfs_destroy_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xeca2ca36 pnfs_report_layoutstat 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 0xf3d83759 pnfs_alloc_commit_array -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf49f52f4 pnfs_generic_pg_cleanup +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xef8cc7c6 pnfs_layout_mark_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf69a9d98 __traceiter_pnfs_mds_fallback_read_done EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf7801360 nfs41_maxgetdevinfo_overhead +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf8675f67 nfs4_schedule_lease_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf882ae9f pnfs_set_lo_fail +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf9609522 nfs4_find_or_create_ds_client EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf999267e pnfs_generic_commit_release -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfdeaaade nfs4_setup_sequence -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xff87f262 nfs4_pnfs_ds_put -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x0e0c9b39 locks_in_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x104af94c locks_start_grace +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfaf40989 nfs4_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfdc8293a nfs4_schedule_stateid_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xffdf0343 pnfs_generic_pg_check_range +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x10c5664e locks_in_grace EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fe1e1ad locks_end_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x5947ab26 opens_in_grace -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x2b429ac0 nfsacl_encode -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x913f2ab7 nfs_stream_encode_acl -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xa3691806 nfsacl_decode -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xeacb336c nfs_stream_decode_acl -EXPORT_SYMBOL_GPL fs/nfsd/nfsd 0xc0d433ad nfsd4_ssc_init_umount_work +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xbb7abd2b locks_start_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xbf57f14c opens_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x772303ed nfs_stream_decode_acl +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x8451c687 nfs_stream_encode_acl +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x8bb5df67 nfsacl_decode +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xe228f0fe nfsacl_encode +EXPORT_SYMBOL_GPL fs/nfsd/nfsd 0x5500dd2d nfsd4_ssc_init_umount_work +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1181f647 o2hb_register_callback EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1b89c6ee o2hb_fill_node_map -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x293d1342 o2hb_unregister_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x3417c0bf o2hb_setup_callback EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x4900035b o2hb_stop_all_regions -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x55ec8fd2 o2hb_register_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x589c9c88 o2hb_setup_callback EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x58c88ff2 o2hb_get_all_regions EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x6a0c3847 __mlog_printk -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x7dd92238 o2nm_node_get +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x7568befb o2hb_unregister_callback EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x81a17396 mlog_and_bits -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x9351aba5 o2nm_get_node_by_ip -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa51104e7 o2nm_node_put +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x839b693b o2nm_node_get +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x932078a2 o2nm_get_node_by_ip +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x94a84bac 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 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 0xcb3cd0f0 o2nm_get_node_by_num EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd859ac8c o2net_fill_node_map EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf1a5611d o2net_unregister_handler_list EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf56c2017 mlog_not_bits +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf831245f o2nm_node_put 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 0x4a042d78 dlm_register_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x1704b047 dlm_register_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x208944fc dlmunlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x48437014 dlm_register_domain EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7a1211f8 dlm_setup_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x88e8b6cc dlm_unregister_domain -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xa47fbcbf dlm_print_one_lock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xc97be1e1 dlm_register_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd0199530 dlmlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x8bcb8188 dlm_print_one_lock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x97a0d6ae dlm_unregister_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xc0202992 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 0xf2a6ed36 dlmunlock EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xfb86b96f dlm_errname +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x010b0475 ocfs2_stack_glue_register EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x0a726931 ocfs2_cluster_this_node EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x0cfd3fc5 ocfs2_cluster_connect_agnostic EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x1475f64b ocfs2_dlm_lvb_valid EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4d3af7fa ocfs2_cluster_hangup -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x74622135 ocfs2_kset -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x75d71853 ocfs2_stack_glue_unregister +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x59a67259 ocfs2_kset 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 0xaf969565 ocfs2_dlm_lock EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbbc4ef97 ocfs2_stack_supports_plocks +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbf294ce1 ocfs2_plock EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xc5196999 ocfs2_dlm_unlock EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xc9fae756 ocfs2_cluster_connect EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xcafdd707 ocfs2_dlm_lock_status EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xd344e4ee ocfs2_stack_glue_set_max_proto_version +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xd4dcbfdc ocfs2_stack_glue_unregister EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xd806a273 ocfs2_dlm_dump_lksb -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xdedb2db3 ocfs2_plock -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xe7b0e73e ocfs2_stack_glue_register 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 @@ -8994,955 +8999,956 @@ EXPORT_SYMBOL_GPL lib/crypto/libpoly1305 0xf3945fcd poly1305_final_generic EXPORT_SYMBOL_GPL lib/crypto/libsm4 0x24e254e8 sm4_expandkey EXPORT_SYMBOL_GPL lib/crypto/libsm4 0xfa81970e sm4_crypt_block -EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x6f8ee1bf notifier_err_inject_dir -EXPORT_SYMBOL_GPL lib/notifier-error-inject 0xf82c859a notifier_err_inject_init +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x1f51de8e notifier_err_inject_dir +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0xd24cd4a2 notifier_err_inject_init EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x18efd32f raid6_datap_recov EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x391d9714 raid6_call EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0xa51bfd9f raid6_2data_recov -EXPORT_SYMBOL_GPL net/802/garp 0x039cf17b garp_request_join -EXPORT_SYMBOL_GPL net/802/garp 0x238328e5 garp_uninit_applicant -EXPORT_SYMBOL_GPL net/802/garp 0x3a599e60 garp_init_applicant -EXPORT_SYMBOL_GPL net/802/garp 0x3ca0ae18 garp_request_leave -EXPORT_SYMBOL_GPL net/802/garp 0x61486006 garp_register_application -EXPORT_SYMBOL_GPL net/802/garp 0x979a82ab garp_unregister_application -EXPORT_SYMBOL_GPL net/802/mrp 0x0044d591 mrp_register_application -EXPORT_SYMBOL_GPL net/802/mrp 0x0350c9a8 mrp_init_applicant -EXPORT_SYMBOL_GPL net/802/mrp 0x7d20513e mrp_request_leave -EXPORT_SYMBOL_GPL net/802/mrp 0x817cca7f mrp_uninit_applicant -EXPORT_SYMBOL_GPL net/802/mrp 0xdb509585 mrp_request_join -EXPORT_SYMBOL_GPL net/802/mrp 0xdd0bc7f0 mrp_unregister_application -EXPORT_SYMBOL_GPL net/802/stp 0xb2524a49 stp_proto_register -EXPORT_SYMBOL_GPL net/802/stp 0xc23a12d6 stp_proto_unregister -EXPORT_SYMBOL_GPL net/9p/9pnet 0x358e275d p9_client_xattrcreate -EXPORT_SYMBOL_GPL net/9p/9pnet 0x665c33b8 p9_client_xattrwalk -EXPORT_SYMBOL_GPL net/bridge/bridge 0x04432bdb br_vlan_enabled -EXPORT_SYMBOL_GPL net/bridge/bridge 0x0c98cb5b br_multicast_enabled -EXPORT_SYMBOL_GPL net/bridge/bridge 0x0d8762f2 br_vlan_get_pvid -EXPORT_SYMBOL_GPL net/bridge/bridge 0x13ee130e br_fdb_find_port -EXPORT_SYMBOL_GPL net/bridge/bridge 0x188caef0 br_vlan_get_info -EXPORT_SYMBOL_GPL net/bridge/bridge 0x2572719f br_get_ageing_time -EXPORT_SYMBOL_GPL net/bridge/bridge 0x2b08508c br_port_flag_is_set -EXPORT_SYMBOL_GPL net/bridge/bridge 0x2f5b5309 br_fdb_clear_offload -EXPORT_SYMBOL_GPL net/bridge/bridge 0x3a8acd4d br_multicast_list_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0x407fa5d1 br_multicast_has_querier_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0x63b8ca06 br_dev_queue_push_xmit -EXPORT_SYMBOL_GPL net/bridge/bridge 0x69fc4d1b br_vlan_get_proto -EXPORT_SYMBOL_GPL net/bridge/bridge 0x72500915 br_vlan_get_pvid_rcu -EXPORT_SYMBOL_GPL net/bridge/bridge 0x76198ed7 br_multicast_has_router_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0x8c4944a6 br_forward -EXPORT_SYMBOL_GPL net/bridge/bridge 0xa08ab1a3 br_handle_frame_finish -EXPORT_SYMBOL_GPL net/bridge/bridge 0xa5f95b8f br_forward_finish -EXPORT_SYMBOL_GPL net/bridge/bridge 0xad76a438 br_port_get_stp_state -EXPORT_SYMBOL_GPL net/bridge/bridge 0xae551682 br_multicast_router -EXPORT_SYMBOL_GPL net/bridge/bridge 0xb8107e35 nf_br_ops -EXPORT_SYMBOL_GPL net/bridge/bridge 0xc74b4fd2 br_vlan_get_info_rcu -EXPORT_SYMBOL_GPL net/bridge/bridge 0xe8fc68aa br_multicast_has_querier_anywhere -EXPORT_SYMBOL_GPL net/core/failover 0x0ec4a547 failover_slave_unregister -EXPORT_SYMBOL_GPL net/core/failover 0x58a61c99 failover_unregister -EXPORT_SYMBOL_GPL net/core/failover 0xa07705e2 failover_register +EXPORT_SYMBOL_GPL net/802/garp 0x0639cb00 garp_request_join +EXPORT_SYMBOL_GPL net/802/garp 0x2076d6cc garp_register_application +EXPORT_SYMBOL_GPL net/802/garp 0x25f32514 garp_request_leave +EXPORT_SYMBOL_GPL net/802/garp 0x4d6427f5 garp_init_applicant +EXPORT_SYMBOL_GPL net/802/garp 0x6c90c779 garp_unregister_application +EXPORT_SYMBOL_GPL net/802/garp 0xb71a157e garp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0x6350555f mrp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0x9486bcd3 mrp_register_application +EXPORT_SYMBOL_GPL net/802/mrp 0x95e296a0 mrp_init_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0xc45b60a1 mrp_request_leave +EXPORT_SYMBOL_GPL net/802/mrp 0xc5ef11a2 mrp_request_join +EXPORT_SYMBOL_GPL net/802/mrp 0xd0de3bbb mrp_unregister_application +EXPORT_SYMBOL_GPL net/802/stp 0x5325f701 stp_proto_unregister +EXPORT_SYMBOL_GPL net/802/stp 0xd0b35408 stp_proto_register +EXPORT_SYMBOL_GPL net/9p/9pnet 0xb9fb2318 p9_client_xattrwalk +EXPORT_SYMBOL_GPL net/9p/9pnet 0xc22db0b3 p9_client_xattrcreate +EXPORT_SYMBOL_GPL net/bridge/bridge 0x00b12ff0 nf_br_ops +EXPORT_SYMBOL_GPL net/bridge/bridge 0x0d08a68b br_get_ageing_time +EXPORT_SYMBOL_GPL net/bridge/bridge 0x1b6d345c br_multicast_has_querier_anywhere +EXPORT_SYMBOL_GPL net/bridge/bridge 0x2be4a652 br_fdb_clear_offload +EXPORT_SYMBOL_GPL net/bridge/bridge 0x3f2f798b br_vlan_get_proto +EXPORT_SYMBOL_GPL net/bridge/bridge 0x40d62a86 br_multicast_has_router_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x4cc5732e br_vlan_get_pvid +EXPORT_SYMBOL_GPL net/bridge/bridge 0x4fa67117 br_vlan_get_pvid_rcu +EXPORT_SYMBOL_GPL net/bridge/bridge 0x543eebe0 br_forward_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0x55755164 br_vlan_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0x57812200 br_multicast_list_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x5cda1b76 br_forward +EXPORT_SYMBOL_GPL net/bridge/bridge 0x6a70a034 br_port_flag_is_set +EXPORT_SYMBOL_GPL net/bridge/bridge 0x76d099c4 br_vlan_get_info +EXPORT_SYMBOL_GPL net/bridge/bridge 0x787f50c3 br_multicast_has_querier_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x82547ce5 br_handle_frame_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0x8e3c7d28 br_multicast_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0x9a2c61d0 br_multicast_router +EXPORT_SYMBOL_GPL net/bridge/bridge 0xb48c5180 br_vlan_get_info_rcu +EXPORT_SYMBOL_GPL net/bridge/bridge 0xc1ef785c br_port_get_stp_state +EXPORT_SYMBOL_GPL net/bridge/bridge 0xcf9e27c4 br_fdb_find_port +EXPORT_SYMBOL_GPL net/bridge/bridge 0xfa0589dc br_dev_queue_push_xmit +EXPORT_SYMBOL_GPL net/core/failover 0xafa0448b failover_slave_unregister +EXPORT_SYMBOL_GPL net/core/failover 0xb06d970e failover_register +EXPORT_SYMBOL_GPL net/core/failover 0xc4a33577 failover_unregister EXPORT_SYMBOL_GPL net/core/selftests 0x8e6b1a9e net_selftest_get_count -EXPORT_SYMBOL_GPL net/core/selftests 0xbd4afe92 net_selftest EXPORT_SYMBOL_GPL net/core/selftests 0xc090c376 net_selftest_get_strings -EXPORT_SYMBOL_GPL net/dccp/dccp 0x02e741cb dccp_rcv_established -EXPORT_SYMBOL_GPL net/dccp/dccp 0x0ffbcba0 dccp_poll -EXPORT_SYMBOL_GPL net/dccp/dccp 0x155dad2e dccp_recvmsg -EXPORT_SYMBOL_GPL net/dccp/dccp 0x167661d4 inet_dccp_listen +EXPORT_SYMBOL_GPL net/core/selftests 0xd7c43972 net_selftest +EXPORT_SYMBOL_GPL net/dccp/dccp 0x0109b23c dccp_reqsk_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x0663b3d9 dccp_done +EXPORT_SYMBOL_GPL net/dccp/dccp 0x105073cc dccp_shutdown +EXPORT_SYMBOL_GPL net/dccp/dccp 0x11e69168 dccp_child_process EXPORT_SYMBOL_GPL net/dccp/dccp 0x182ec2bf dccp_ackvec_parsed_add -EXPORT_SYMBOL_GPL net/dccp/dccp 0x19ee8437 dccp_rcv_state_process -EXPORT_SYMBOL_GPL net/dccp/dccp 0x1defd3da dccp_getsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0x275a3262 dccp_disconnect +EXPORT_SYMBOL_GPL net/dccp/dccp 0x21c2ca17 dccp_check_req +EXPORT_SYMBOL_GPL net/dccp/dccp 0x26dcdfb9 inet_dccp_listen EXPORT_SYMBOL_GPL net/dccp/dccp 0x317bfbff dccp_hashinfo -EXPORT_SYMBOL_GPL net/dccp/dccp 0x350579ef dccp_connect -EXPORT_SYMBOL_GPL net/dccp/dccp 0x369b3eed dccp_set_state -EXPORT_SYMBOL_GPL net/dccp/dccp 0x48ee7afc dccp_send_sync -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cd5a709 dccp_shutdown EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4db3f309 dccp_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x55f984ab dccp_create_openreq_child +EXPORT_SYMBOL_GPL net/dccp/dccp 0x594848a8 dccp_destroy_sock EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics -EXPORT_SYMBOL_GPL net/dccp/dccp 0x5e81ac21 dccp_feat_nn_get -EXPORT_SYMBOL_GPL net/dccp/dccp 0x741926e8 dccp_sendmsg -EXPORT_SYMBOL_GPL net/dccp/dccp 0x743a4837 dccp_ioctl +EXPORT_SYMBOL_GPL net/dccp/dccp 0x59a07a75 dccp_send_sync +EXPORT_SYMBOL_GPL net/dccp/dccp 0x656bc782 dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x70309566 dccp_feat_signal_nn_change +EXPORT_SYMBOL_GPL net/dccp/dccp 0x75b7e323 dccp_set_state +EXPORT_SYMBOL_GPL net/dccp/dccp 0x79ee1be2 dccp_parse_options EXPORT_SYMBOL_GPL net/dccp/dccp 0x80993155 dccp_timestamp +EXPORT_SYMBOL_GPL net/dccp/dccp 0x85681a3d dccp_recvmsg EXPORT_SYMBOL_GPL net/dccp/dccp 0x86be7924 dccp_packet_name -EXPORT_SYMBOL_GPL net/dccp/dccp 0x897a2d9c dccp_done -EXPORT_SYMBOL_GPL net/dccp/dccp 0x89eda88a dccp_check_req -EXPORT_SYMBOL_GPL net/dccp/dccp 0x8d347eb8 dccp_init_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x910250dc dccp_make_response EXPORT_SYMBOL_GPL net/dccp/dccp 0x93f37c00 dccp_death_row EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup -EXPORT_SYMBOL_GPL net/dccp/dccp 0x963dcfdf dccp_sync_mss -EXPORT_SYMBOL_GPL net/dccp/dccp 0xaa92e06f dccp_feat_signal_nn_change -EXPORT_SYMBOL_GPL net/dccp/dccp 0xbf32bef2 dccp_child_process -EXPORT_SYMBOL_GPL net/dccp/dccp 0xcc4d8f15 dccp_close -EXPORT_SYMBOL_GPL net/dccp/dccp 0xd6d44e43 dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa5089b02 dccp_connect +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa593ffe3 dccp_close +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa8e8b485 dccp_rcv_established +EXPORT_SYMBOL_GPL net/dccp/dccp 0xaa72c28d dccp_feat_nn_get +EXPORT_SYMBOL_GPL net/dccp/dccp 0xb4d735fc dccp_sync_mss +EXPORT_SYMBOL_GPL net/dccp/dccp 0xb9236dde dccp_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc444be55 dccp_disconnect +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc9852205 dccp_init_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd6c74273 dccp_ioctl EXPORT_SYMBOL_GPL net/dccp/dccp 0xd75b7072 dccp_orphan_count -EXPORT_SYMBOL_GPL net/dccp/dccp 0xd8ca8721 dccp_create_openreq_child -EXPORT_SYMBOL_GPL net/dccp/dccp 0xd968d342 dccp_insert_option -EXPORT_SYMBOL_GPL net/dccp/dccp 0xe3937ead dccp_parse_options -EXPORT_SYMBOL_GPL net/dccp/dccp 0xe41d7781 dccp_reqsk_send_ack -EXPORT_SYMBOL_GPL net/dccp/dccp 0xe6b4b2eb dccp_destroy_sock -EXPORT_SYMBOL_GPL net/dccp/dccp 0xe828427b dccp_reqsk_init -EXPORT_SYMBOL_GPL net/dccp/dccp 0xf8cfd172 dccp_make_response -EXPORT_SYMBOL_GPL net/dccp/dccp 0xfeb7ae66 dccp_ctl_make_reset -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x4936ae10 dccp_v4_conn_request -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x5b057dcc dccp_v4_do_rcv -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x9c74f698 dccp_v4_request_recv_sock -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x9fca82f4 dccp_invalid_packet -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xabc46bf2 dccp_v4_send_check -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xb700ab08 dccp_v4_connect -EXPORT_SYMBOL_GPL net/ife/ife 0x42cb3cb5 ife_decode +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd81854a4 dccp_sendmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0xdf1f78a8 dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe6e62b2e dccp_poll +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf3a04b24 dccp_ctl_make_reset +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf972f644 dccp_rcv_state_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0xfc4f98c2 dccp_insert_option +EXPORT_SYMBOL_GPL net/dccp/dccp 0xfddeb3cb dccp_reqsk_init +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x115c8c8e dccp_invalid_packet +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x426f0896 dccp_v4_connect +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x8b00ccf7 dccp_v4_send_check +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xb2a83346 dccp_v4_conn_request +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xbbb81ffc dccp_v4_request_recv_sock +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xc82148fb dccp_v4_do_rcv 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 0xa1ca55f4 ife_encode +EXPORT_SYMBOL_GPL net/ife/ife 0xbae58f5e ife_decode +EXPORT_SYMBOL_GPL net/ife/ife 0xbf2824b8 ife_encode EXPORT_SYMBOL_GPL net/ife/ife 0xe7888e98 ife_tlv_meta_encode -EXPORT_SYMBOL_GPL net/ipv4/esp4 0x2ad30a63 esp_input_done2 -EXPORT_SYMBOL_GPL net/ipv4/esp4 0x77946cc5 esp_output_head -EXPORT_SYMBOL_GPL net/ipv4/esp4 0x7dfbc686 esp_output_tail -EXPORT_SYMBOL_GPL net/ipv4/gre 0x16f04a27 gre_add_protocol -EXPORT_SYMBOL_GPL net/ipv4/gre 0xbdbc54e4 gre_del_protocol -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x112da9ae inet_diag_find_one_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x1dc0e53c inet_diag_unregister -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x260ca28f inet_sk_diag_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x697f743d inet_diag_register -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x87b9c43f inet_diag_msg_common_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x8c0e73a8 inet_diag_msg_attrs_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xaf88715a inet_diag_bc_sk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xd9015c4e inet_diag_dump_one_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xeaf9700d inet_diag_dump_icsk -EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0xf3bb0101 gretap_fb_dev_create -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x08274d9f ip_tunnel_setup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x13b1a67b ip_tunnel_changelink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x15dd8c5a ip_tunnel_siocdevprivate -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x4bd3fd59 ip_tunnel_lookup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x55902aee ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x5c3d9a6a ip_tunnel_ctl -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x623fe887 ip_tunnel_delete_nets -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x7a0d2a76 ip_md_tunnel_xmit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x9122b6ce ip_tunnel_init -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x9474c13d ip_tunnel_uninit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x956661d7 __ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x9818ba09 ip_tunnel_xmit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xaa82241f ip_tunnel_init_net -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xb8bb8739 ip_tunnel_rcv -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xc12028ac ip_tunnel_newlink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xdba018c0 ip_tunnel_encap_setup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xfbe8cb99 ip_tunnel_dellink -EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0xf70735d8 arpt_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0x9ea9c00c ipt_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x1f89ac52 nf_defrag_ipv4_disable -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0xe49996f2 nf_defrag_ipv4_enable -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0xf8f7f29b nf_dup_ipv4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x80b35f29 nf_send_reset -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x86de561c nf_reject_ip_tcphdr_get -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x90b3356d nf_reject_skb_v4_unreach -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xbff127d2 nf_reject_iphdr_put -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xed4cd726 nf_reject_ip_tcphdr_put -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xf33b692f nf_reject_skb_v4_tcp_reset -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xfdce7793 nf_send_unreach -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_socket_ipv4 0xf82fb0c8 nf_sk_lookup_slow_v4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x51c1d508 nf_tproxy_get_sock_v4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x980a1494 nf_tproxy_handle_time_wait4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0xc446e9c1 nf_tproxy_laddr4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0x1d22757a nft_fib4_eval -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0x50d1d61f nft_fib4_eval_type -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x72f384e8 tcp_vegas_get_info -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xb51c3a27 tcp_vegas_cwnd_event -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xb7ee22fb tcp_vegas_init -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xc9629f30 tcp_vegas_state -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xdfe2b5e0 tcp_vegas_pkts_acked -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x055174ea udp_tun_rx_dst -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x2097b356 udp_tunnel_push_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x3c272403 udp_tunnel_notify_del_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x67461a4d udp_tunnel_sock_release -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x75277147 udp_tunnel_drop_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x970d7197 udp_tunnel_notify_add_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xbf88d963 setup_udp_tunnel_sock -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xd0de4ddd udp_tunnel_xmit_skb -EXPORT_SYMBOL_GPL net/ipv6/esp6 0x11d2f3e6 esp6_output_head -EXPORT_SYMBOL_GPL net/ipv6/esp6 0x410d1107 esp6_output_tail -EXPORT_SYMBOL_GPL net/ipv6/esp6 0xa16c5719 esp6_input_done2 -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x5e4474d1 ip6_tnl_xmit_ctl -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xa8655390 ip6_tnl_rcv_ctl -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xc372d118 ip6_tnl_encap_setup -EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x2bc02990 udp_tunnel6_xmit_skb -EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x8b1f3a9e udp_sock_create6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0x289ea6a7 ip6t_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x0191e051 nf_ct_frag6_gather -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x263b87d7 nf_defrag_ipv6_disable -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xd34a9e38 nf_defrag_ipv6_enable -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0xdffe1661 nf_dup_ipv6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x117c6112 nf_reject_ip6_tcphdr_put -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x36565378 nf_reject_ip6hdr_put -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x4501eade nf_reject_ip6_tcphdr_get -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x5659062d nf_send_reset6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x8da0bb0a nf_send_unreach6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xa481ae19 nf_reject_skb_v6_unreach -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xc5b490fe nf_reject_skb_v6_tcp_reset -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_socket_ipv6 0x7f4811a1 nf_sk_lookup_slow_v6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x5cfe7dc6 nf_tproxy_get_sock_v6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x95467302 nf_tproxy_handle_time_wait6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0xf9c4fd82 nf_tproxy_laddr6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0x3f5b95e3 nft_fib6_eval_type -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0xf00bf9ee nft_fib6_eval -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x028d880f l2tp_tunnel_get_session -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x0914571f l2tp_xmit_skb -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x0a6305bc l2tp_session_set_header_len -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x1d408f8e l2tp_session_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x230e6bc7 l2tp_sk_to_tunnel -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x2474952b l2tp_tunnel_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x301a2f3d l2tp_session_inc_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x4727bf43 l2tp_tunnel_get_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x55d89673 l2tp_session_get -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x6f44cbcb l2tp_session_register -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x7797693a l2tp_tunnel_dec_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x7aba0166 l2tp_tunnel_get -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x8d974ef8 l2tp_session_dec_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x92c2734a l2tp_tunnel_register -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x99e589d3 l2tp_session_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xa3309511 l2tp_session_get_by_ifname -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb03e500b l2tp_session_get_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb1d33f5a l2tp_recv_common -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd75b08fa l2tp_tunnel_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd86b6238 l2tp_tunnel_inc_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf6140dc8 l2tp_udp_encap_recv -EXPORT_SYMBOL_GPL net/l2tp/l2tp_ip 0x2644263f l2tp_ioctl +EXPORT_SYMBOL_GPL net/ipv4/esp4 0x72d2e1a2 esp_input_done2 +EXPORT_SYMBOL_GPL net/ipv4/esp4 0xb4e05373 esp_output_tail +EXPORT_SYMBOL_GPL net/ipv4/esp4 0xdaa55c61 esp_output_head +EXPORT_SYMBOL_GPL net/ipv4/gre 0xdd69e2e9 gre_add_protocol +EXPORT_SYMBOL_GPL net/ipv4/gre 0xe8920b99 gre_del_protocol +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x30701180 inet_diag_msg_common_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x45f223eb inet_diag_register +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x7ad87222 inet_diag_msg_attrs_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x8988aa38 inet_diag_dump_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x95aa4782 inet_diag_dump_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xa790e0eb inet_diag_bc_sk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xa8c00ef4 inet_sk_diag_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xb032007b inet_diag_find_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xc74f6592 inet_diag_unregister +EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0x4b275ff0 gretap_fb_dev_create +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x09687df9 ip_tunnel_newlink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x0c1d388f ip_tunnel_init_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x0e94b925 ip_tunnel_changelink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x1e191f20 ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x2a038062 ip_tunnel_encap_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x3c61b0ce ip_tunnel_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x46609310 ip_tunnel_ctl +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x5723c77c ip_tunnel_delete_nets +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x5d2c0a4c ip_md_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x80de51a5 ip_tunnel_init +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x83948835 ip_tunnel_dellink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xa7a9ebf1 ip_tunnel_siocdevprivate +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xb1b5dce6 ip_tunnel_rcv +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xd3660e40 ip_tunnel_lookup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xe1d242ab __ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xe512e8c2 ip_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xf0e2438f ip_tunnel_uninit +EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0x1be4f913 arpt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0xa5d37c95 ipt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x4c14a5aa nf_defrag_ipv4_disable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0xfd626759 nf_defrag_ipv4_enable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0x2a7cf3a0 nf_dup_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x02594ceb nf_reject_skb_v4_tcp_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x3f0253f2 nf_reject_ip_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x4d5adb93 nf_reject_skb_v4_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x626fafcb nf_send_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x674503d1 nf_send_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x6819c6fc nf_reject_iphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x8445b4e6 nf_reject_ip_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_socket_ipv4 0x1b92efe6 nf_sk_lookup_slow_v4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0xa20fb2e5 nf_tproxy_get_sock_v4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0xcf42089a nf_tproxy_laddr4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0xf44cb77c nf_tproxy_handle_time_wait4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0x0e48052e nft_fib4_eval_type +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0x88ffc72d nft_fib4_eval +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x07b65215 tcp_vegas_get_info +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x4bcfd18c tcp_vegas_init +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x578302e9 tcp_vegas_state +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xc76a3770 tcp_vegas_cwnd_event +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xd4b9e70c tcp_vegas_pkts_acked +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x22041586 udp_tunnel_xmit_skb +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x2bea6e23 setup_udp_tunnel_sock +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x5b73fa66 udp_tunnel_push_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x95ddc17a udp_tunnel_sock_release +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x99299494 udp_tunnel_notify_del_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xa582ad3e udp_tunnel_notify_add_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xae311f8e udp_tun_rx_dst +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xeaa7ba6d udp_tunnel_drop_rx_port +EXPORT_SYMBOL_GPL net/ipv6/esp6 0x0e4929f2 esp6_input_done2 +EXPORT_SYMBOL_GPL net/ipv6/esp6 0x66274bbf esp6_output_tail +EXPORT_SYMBOL_GPL net/ipv6/esp6 0x89d85243 esp6_output_head +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x242a43b4 ip6_tnl_xmit_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x9daef8cf ip6_tnl_encap_setup +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xa1debcc3 ip6_tnl_rcv_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x9115a4bc udp_tunnel6_xmit_skb +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0xe646bcd6 udp_sock_create6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0x169c9a60 ip6t_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x96a6f11c nf_defrag_ipv6_enable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xa9e14add nf_ct_frag6_gather +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xe2db5d30 nf_defrag_ipv6_disable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0x382be69d nf_dup_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x2f2c3dec nf_send_unreach6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x586ac526 nf_reject_skb_v6_unreach +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x799227da nf_reject_ip6_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x9e132bcb nf_reject_ip6_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xda61c9a4 nf_reject_skb_v6_tcp_reset +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xeb294a55 nf_reject_ip6hdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xee53913a nf_send_reset6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_socket_ipv6 0x9cf54e8f nf_sk_lookup_slow_v6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x2abc04ca nf_tproxy_get_sock_v6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x9345c98c nf_tproxy_handle_time_wait6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0xe68c8dd3 nf_tproxy_laddr6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0x6a62bce6 nft_fib6_eval +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0x749c7d35 nft_fib6_eval_type +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x063fc804 l2tp_session_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x0bc33f8d l2tp_session_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x182edc1c l2tp_tunnel_register +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x2a8a73ee l2tp_tunnel_inc_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x2e806691 l2tp_recv_common +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x48817744 l2tp_tunnel_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x49a7ecea l2tp_tunnel_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x4dc55ff5 l2tp_session_inc_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x4f92dd3c l2tp_xmit_skb +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x8dbe3c4e l2tp_tunnel_get +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x9731d29d l2tp_session_register +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xab09978b l2tp_session_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xacf59078 l2tp_session_get_by_ifname +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb3de5800 l2tp_tunnel_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb404f75c l2tp_udp_encap_recv +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb9dbc645 l2tp_session_dec_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xc74eff00 l2tp_tunnel_get_session +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xce6bfaca l2tp_tunnel_dec_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd3a0a888 l2tp_sk_to_tunnel +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xe4e30185 l2tp_session_set_header_len +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xfff2d97f l2tp_session_get +EXPORT_SYMBOL_GPL net/l2tp/l2tp_ip 0xfcad6319 l2tp_ioctl EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops -EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x9d1a18f6 l2tp_nl_register_ops +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0xb7bd3595 l2tp_nl_register_ops +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x49925882 mpls_pkt_too_big +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x58920248 mpls_stats_inc_outucastpkts EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x7670b536 nla_get_labels -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x7b055ec9 nla_put_labels -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xab3f9356 mpls_pkt_too_big -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xbe27950a mpls_dev_mtu -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xe414aeda mpls_output_possible -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xf7a565db mpls_stats_inc_outucastpkts +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xc7384bc4 mpls_dev_mtu +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xdba04f92 nla_put_labels +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xebaade58 mpls_output_possible +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x05b48613 ip_set_match_extensions EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x0b2310aa ip_set_alloc -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x10fe1caa ip_set_get_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x12bda242 ip_set_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x2139dbb5 ip_set_nfnl_put +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x1010af35 ip_set_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x11971b05 ip_set_get_ip4_port EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x22d966c6 ip_set_range_to_cidr EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x4acf939d ip_set_del -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x51edb1b3 ip_set_add -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x5f2d449d ip_set_match_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x73d87d36 ip_set_elem_len +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x3b5562af ip_set_put_flags +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x3c0344d0 ip_set_add +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x4992d8ed ip_set_del +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x63b2fd67 ip_set_type_unregister +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x67177da8 ip_set_put_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x692bbda3 ip_set_get_ip6_port EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7924b6de ip_set_hostmask_map -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x81d545c7 ip_set_type_register EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x81fff2d1 ip_set_netmask_map -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x8999321f ip_set_nfnl_get_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x8a1b60d5 ip_set_put_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9b95170f ip_set_put_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x8714c2b8 ip_set_nfnl_put +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x8f249185 ip_set_elem_len +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9307a219 ip_set_nfnl_get_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x93910016 ip_set_type_register +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9d10976b ip_set_get_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9d6ea332 ip_set_get_byname EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9e98722b ip_set_get_ipaddr6 EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa293f8a6 ip_set_get_ipaddr4 -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa2a32899 ip_set_get_ip6_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa560359a ip_set_get_byname -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa88e35d9 ip_set_get_ip4_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xaa4c479a ip_set_test -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xbb63e8eb ip_set_name_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xc4089b25 ip_set_init_comment -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xe7c4da9b ip_set_type_unregister -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xecd90776 ip_set_put_flags -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x4c9cec9e ip_vs_conn_in_get_proto -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x5d0c4a38 register_ip_vs_pe -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xd72d8f06 unregister_ip_vs_pe -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xdd6f2573 ip_vs_conn_out_get_proto -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x15273330 nf_conncount_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x16370854 nf_conncount_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x4b6b7d41 nf_conncount_count +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xc5cc7492 ip_set_put_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xc68450d4 ip_set_init_comment +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xd6bd8570 ip_set_test +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf3850d50 ip_set_name_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x1b7acc19 ip_vs_conn_in_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x36a8e98d unregister_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x5aad83e0 register_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xaee4d5d0 ip_vs_conn_out_get_proto +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x2e422b64 nf_conncount_add EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x629d4c72 nf_conncount_cache_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x86a13071 nf_conncount_destroy EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x921f0f65 nf_conncount_list_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x999d054f nf_conncount_gc_list -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xae6f8a43 nf_conncount_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x019fff36 nf_ct_expect_related_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x02d57889 nf_ct_untimeout -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x08eaf4f0 nf_ct_tmpl_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0ad91bd6 nf_ct_unconfirmed_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x9a35095f nf_conncount_gc_list +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xdba6216b nf_conncount_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xe589124b nf_conncount_count +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x053e7d62 nf_nat_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0607076d nf_ct_bridge_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x095bac26 __nf_ct_try_assign_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x09cb73ac nf_ct_expect_init EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0bc00f80 nf_nat_helper_try_module_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0c4ac399 nf_ct_extend_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x10bf054f nf_ct_expect_iterate_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x138e2dd1 nf_ct_tcp_seqadj_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1938363e nf_ct_iterate_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1bab68a0 nf_ct_get_tuplepr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1f5de5cb nf_conntrack_unregister_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1f6cd411 nf_conntrack_hash_check_insert -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x22909031 nf_conntrack_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2482a324 nf_ct_helper_expectfn_find_by_name +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0c924b6a nf_ct_netns_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0d244b43 nf_ct_helper_expectfn_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x11ff72fc nf_ct_delete +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x15446fda nf_ct_unexpect_related +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1607de4f nf_ct_set_auto_assign_helper_warned +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1925c38b nf_conntrack_eventmask_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1a53ce1a nf_ct_acct_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x280a875d nf_ct_expect_put EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x289c3714 nf_ct_alloc_hashtable EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x28eff409 nf_conntrack_hash -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x295bc0b3 nf_l4proto_log_invalid -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x336bc00d nf_ct_expect_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x378a1b20 nf_nat_helper_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x38717aa9 nf_conntrack_alter_reply -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x389f9e9d nf_conntrack_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3a096dab nf_conntrack_count -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3ad1fdc0 nf_ct_get_id -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3c214c41 __nf_ct_refresh_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3c7e6067 nf_ct_destroy_timeout -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x45f328ce nf_ct_seqadj_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4b6e39eb nf_ct_deliver_cached_events -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4c8aea9f nf_confirm -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4d63c439 nf_ct_expect_iterate_net -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5114ead5 nf_conntrack_helper_try_module_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x541f2d3a nf_connlabels_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5883e84d nf_ct_l4proto_log_invalid -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5c0319d9 nf_ct_helper_expectfn_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x62405f97 nf_ct_timeout_put_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x65f9a654 nf_ct_remove_expect -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x667063e9 nf_conntrack_helpers_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6871a783 nf_connlabels_replace +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2ca468b7 nf_ct_port_tuple_to_nlattr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x308303d1 nf_ct_expect_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x312ca2af nf_ct_l4proto_log_invalid +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3932369f nf_conntrack_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3deb5b0c nf_conntrack_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3f0a9087 nf_ct_iterate_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x466e6f97 nf_ct_expect_related_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x47da8083 nf_nat_helper_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x490a1ba6 nf_ct_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x54bfa760 nf_conntrack_alter_reply +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x55f350b4 nf_conntrack_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x574ca7d4 nf_conntrack_in +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5a9c3a47 nf_ct_set_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5b5f8633 nf_ct_helper_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5bb54604 nf_ct_netns_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5d8a02a1 nf_ct_tcp_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x63a58408 __nf_ct_refresh_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x642a9775 nf_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x643c41c5 nf_ct_remove_expectations +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6740c1ac nf_ct_bridge_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x679df0c1 nf_ct_seq_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x68b29b53 nf_conntrack_free EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x693c3961 nf_ct_helper_hash -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6a4c540b nf_conntrack_tuple_taken -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6b8ddd09 nf_ct_helper_log -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6c92887e nf_conntrack_helper_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6e5b09c8 nf_ct_expect_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7082cb81 nf_ct_gre_keymap_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x70974109 nf_conntrack_helper_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7674596f nf_ct_unlink_expect_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x78146aba nf_conntrack_register_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x79ac67c4 nf_ct_port_tuple_to_nlattr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7ac421c9 nf_ct_remove_expectations -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7f6fefc9 nf_ct_extend_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x80402add nf_ct_expect_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x831d568d nf_ct_helper_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6f44266d nf_ct_helper_log +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x73a71745 nf_conntrack_helper_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x769724c2 nf_ct_kill_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7c49840a nf_connlabels_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x805ee963 nf_conntrack_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x80cb4dce nf_nat_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8249f471 nf_conntrack_helpers_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x857af4ef nf_ct_remove_expect +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x875eff01 nf_ct_destroy_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x88920392 nf_ct_gre_keymap_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8906afc1 nf_ct_expect_iterate_net +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8a1dfd85 nf_ct_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8fab6fd7 nf_conntrack_count EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ffe7e89 nf_conntrack_htable_size -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x920323eb nf_ct_seqadj_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x96af49ba nf_conntrack_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x974a3da8 __nf_ct_expect_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9ba7102f nf_ct_iterate_cleanup_net -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9bba7080 nf_ct_set_timeout -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9e02235a nf_ct_l4proto_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa409584e nf_ct_delete -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xaeb3228d nf_nat_helper_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xaecf4efb nf_ct_helper_expectfn_find_by_symbol +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x911ac1c2 nf_conntrack_tuple_taken +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x93621ab5 nf_ct_extend_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x96bde903 nf_l4proto_log_invalid +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9846df68 __nf_conntrack_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9b99cffb nf_ct_timeout_find_get_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9e70409d nf_ct_seqadj_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9f32db5d nf_ct_helper_expectfn_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa46585e4 nf_ct_get_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa5fca2b3 nf_ct_get_id +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa6b4284a nf_ct_iterate_cleanup_net +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xacbeca9f nf_ct_expect_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xaf7e75ab nf_ct_helper_expectfn_find_by_symbol EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xafbd6cf5 nf_ct_port_nlattr_to_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb96c6dea nf_ct_seq_adjust -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbd56ac66 nf_ct_acct_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb0148a03 nf_ct_timeout_put_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb4f5d46c nf_conntrack_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb60eb373 __nf_conntrack_helper_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb95f2bf6 nf_ct_expect_iterate_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbb8f40ac nf_conntrack_hash_check_insert +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbdc4c974 nf_conntrack_helper_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbfd81f93 nf_conntrack_helper_unregister EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc18ac88d nf_ct_expect_hsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc2c081c5 nf_ct_kill_acct EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc40f284c nf_ct_helper_hsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc459f287 nf_ct_timeout_find_get_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc46d6f45 __nf_conntrack_helper_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc6c0570d nf_ct_helper_expectfn_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcc99fa5e nf_conntrack_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc55a242e nf_ct_tmpl_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xca4c0f31 nf_ct_unconfirmed_destroy EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xceaaac37 nf_conntrack_lock -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd20fc74f nf_ct_helper_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd29edca4 nf_conntrack_eventmask_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd3fa002e nf_ct_bridge_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd2e85aed __nf_ct_expect_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd4cf2c77 nf_connlabels_put EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd505c3e0 nf_ct_port_nlattr_tuple_size -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd774f34c nf_ct_bridge_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd8e9f61b nf_ct_gre_keymap_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd70ab754 nf_ct_untimeout EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd9cc99d7 nf_conntrack_expect_lock -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd9f9d425 nf_ct_unexpect_related +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdc4fb31b nf_ct_unlink_expect_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdef41035 nf_ct_helper_expectfn_find_by_name EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdf0aed48 nf_ct_port_nla_policy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe006c190 nf_ct_netns_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe13dee06 nf_conntrack_in -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe3213de7 nf_connlabels_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe99e933c nf_ct_seq_offset -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xeacfd55c nf_nat_helper_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe0824594 nf_ct_helper_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe2a64913 nf_conntrack_helpers_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe2be7e18 nf_ct_gre_keymap_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe44aa8cf nf_ct_tmpl_alloc EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xec8beba6 nf_ct_expect_hash -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf23ba1fd nf_ct_expect_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xeea3a97b nf_connlabels_replace +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf23815a4 nf_ct_seq_offset EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf24e79d8 nf_conntrack_locks -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf2f5744c __nf_ct_try_assign_helper -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf35a3588 nf_ct_tmpl_free EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf4aaead6 nf_conntrack_helpers_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf8be4d84 __nf_conntrack_confirm -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfdc68f47 nf_ct_netns_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf6922ea3 nf_ct_extend_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfb70b386 nf_ct_deliver_cached_events EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfe731af8 nf_ct_invert_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0x20eda1aa nf_nat_amanda_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0x8baa35da nf_conntrack_broadcast_help -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0xde6f3ad9 nf_nat_ftp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x178a28c9 set_ras_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x211bca0e set_h245_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x30a97e14 get_h225_addr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x71d0746a set_h225_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x84577f5d nat_callforwarding_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xd6f0c3b2 nat_t120_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xe3b31961 nat_h245_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xebb65795 nat_rtp_rtcp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xf2e4eadd set_sig_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xf7fbeda9 nat_q931_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0x12ff0edf nf_nat_irc_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x35e45c8d nf_nat_pptp_hook_exp_gre -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x77e65766 nf_nat_pptp_hook_expectfn -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x7a3d51a1 nf_nat_pptp_hook_inbound -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xe25f4d0b nf_nat_pptp_hook_outbound -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x09de6267 ct_sip_parse_address_param -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x389fcbfb ct_sip_get_header -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x75f226bd nf_nat_sip_hooks -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x81d09e96 ct_sip_parse_request -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x9cd503a7 ct_sip_parse_numerical_param -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xa0e857d4 ct_sip_get_sdp_header -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xbe66e63d ct_sip_parse_header_uri -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0x1a068c2d nf_nat_snmp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0x74b187a7 nf_nat_tftp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x5b28e9fb nf_dup_netdev_egress -EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x9b5a3002 nf_fwd_netdev_egress -EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0xc0a50e91 nft_fwd_dup_netdev_offload -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x239afe71 nf_flow_rule_route_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x24e7124a nf_flow_dnat_port -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x3296f5a4 flow_offload_refresh -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x3dea65ab nf_flow_table_offload_setup -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x40fce0bd flow_offload_route_init -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x56c7518a nf_flow_offload_ipv6_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x5fe87c09 nf_flow_rule_route_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x7df34b67 nf_flow_table_free -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x9860463f flow_offload_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x9c35cf8a flow_offload_teardown -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xab0ded83 nf_flow_snat_port -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xb4cc3ed9 nf_flow_offload_ip_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xb769a9a9 nf_flow_table_cleanup -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xd672e3e1 nf_flow_table_init -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xd8ed6b86 flow_offload_free -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xfcf28ca3 flow_offload_add -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xfd785738 flow_offload_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x0824df11 nf_nat_icmp_reply_translation -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x0aeed922 nf_nat_redirect_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x1aac7d07 nf_nat_redirect_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x1db503b3 nf_nat_icmpv6_reply_translation +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0xa0c26d85 nf_nat_amanda_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0x2199db15 nf_conntrack_broadcast_help +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0xbc32ff4a nf_nat_ftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x0234f44b set_sig_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x0664b9b1 nat_h245_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x29b59db1 nat_callforwarding_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x5cfac261 set_ras_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x647a686d nat_t120_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x6973e710 nat_q931_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x8c05fe84 nat_rtp_rtcp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x97afedb9 set_h225_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xe88107f5 get_h225_addr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xf612582c set_h245_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0xa82fd3a8 nf_nat_irc_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x241ea124 nf_nat_pptp_hook_expectfn +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x41c94c00 nf_nat_pptp_hook_exp_gre +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xb3bb8b9f nf_nat_pptp_hook_outbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xfe7e08a7 nf_nat_pptp_hook_inbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x2cd9c9d7 ct_sip_parse_request +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x4d51b673 ct_sip_get_sdp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x72bb29d0 ct_sip_parse_address_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xaa5d7f43 ct_sip_parse_header_uri +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xd4d22f55 ct_sip_get_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xdcad0e17 nf_nat_sip_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xfceaf86d ct_sip_parse_numerical_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0xc81ebe85 nf_nat_snmp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0x324c4329 nf_nat_tftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x0f172168 nft_fwd_dup_netdev_offload +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x1a19989d nf_dup_netdev_egress +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0xcde40413 nf_fwd_netdev_egress +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x07b029a4 flow_offload_free +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x0f64a177 nf_flow_table_free +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x2372fda6 flow_offload_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x28b541b7 flow_offload_add +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x425ecc67 nf_flow_rule_route_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x69790ec2 nf_flow_snat_port +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x9be6cbfd nf_flow_offload_ip_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xaec48461 nf_flow_dnat_port +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xb3492a71 nf_flow_rule_route_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xb78b7126 flow_offload_teardown +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xbf33d2c3 nf_flow_table_cleanup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xc252208d nf_flow_table_init +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xccb30e16 flow_offload_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xd6b521a6 nf_flow_table_offload_setup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xdedb2784 flow_offload_refresh +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xef19ca57 nf_flow_offload_ipv6_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xfa814576 flow_offload_route_init +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x066b6698 nf_nat_redirect_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x21f2a3b5 nf_nat_inet_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x2509a323 nf_nat_inet_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x2bea27b6 nf_nat_ipv6_unregister_fn EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3bc17c49 nf_nat_masquerade_inet_register_notifiers -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3f9c5500 nf_ct_nat_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x64e87b5b nf_nat_ipv4_unregister_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x6ae9e69a nf_nat_inet_unregister_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x78a09c19 nf_nat_ipv6_unregister_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x99eb1c28 nf_nat_inet_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x9d0bd75d nf_nat_inet_register_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xa2f31d34 nf_nat_masquerade_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd6fc00a9 nf_nat_packet +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x58eb60db nf_nat_inet_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x6b90cc1a nf_ct_nat_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x72dea42f nf_nat_masquerade_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x7d60edda nf_nat_ipv6_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xaf5082a6 nf_nat_icmpv6_reply_translation +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xb0fec803 nf_nat_redirect_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xb921670e nf_nat_masquerade_ipv6 EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd9c25654 nf_nat_masquerade_inet_unregister_notifiers -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xdac3f8c5 nf_nat_ipv6_register_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xddc93e33 nf_nat_masquerade_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xe8400f36 nf_nat_ipv4_register_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xf457c303 nf_nat_alloc_null_binding -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x02bce4aa synproxy_recv_client_ack -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x08c0f41f synproxy_send_client_synack -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x13c8ae0a synproxy_recv_client_ack_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x1a67420e synproxy_send_client_synack_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xdbe7463b nf_nat_ipv4_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xe23a7719 nf_nat_ipv4_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xeeb4318d nf_nat_packet +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xeee90bde nf_nat_icmp_reply_translation +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xeef0794d nf_nat_alloc_null_binding +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x12fe0ff3 synproxy_send_client_synack_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x1567b579 synproxy_parse_options +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x19433ef9 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 0x68921e11 ipv6_synproxy_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x9ea4445d nf_synproxy_ipv4_fini -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xa7fead06 nf_synproxy_ipv4_init -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xac6006d6 ipv4_synproxy_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x40406e96 nf_synproxy_ipv6_fini +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x48a4a99c nf_synproxy_ipv4_init +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x8fd33e6c ipv4_synproxy_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xb38834a5 nf_synproxy_ipv6_init +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xbb6cf3af nf_synproxy_ipv4_fini EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xca9fc082 synproxy_net_id -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xcd216fd9 nf_synproxy_ipv6_init -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xe6474263 synproxy_parse_options -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xf47b8682 nf_synproxy_ipv6_fini -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x00d20c29 nf_tables_deactivate_flowtable -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x029fb734 nft_meta_get_init +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xdf76c729 ipv6_synproxy_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xef0cc2c5 synproxy_recv_client_ack +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xfbed977c synproxy_recv_client_ack_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x006d26df nft_meta_set_dump EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x06c6ca47 nft_meta_policy -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x13bc494f nft_register_chain_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1ee9641b nft_set_catchall_gc -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x20722482 nft_set_lookup_global -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x28021dc2 nf_tables_deactivate_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0e69221d nft_flowtable_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x19a37a3c nft_unregister_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1dab578c nft_register_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1e9300c4 nft_set_catchall_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x21ce67ad nft_meta_set_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2bdc5202 nf_tables_deactivate_set EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3251d762 nf_tables_trans_destroy_flush_work -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x325b60ba nft_meta_get_dump -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3557bd1b nft_meta_set_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3352b103 nf_tables_destroy_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3e11e1b9 nft_meta_set_validate +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x404926dc nf_tables_bind_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x41a524bc nft_dump_register EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x41b71e65 nft_trace_enabled -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4418c3f5 nft_flowtable_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4740ca25 nft_meta_set_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x43fd6380 nft_chain_validate +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x47c99d26 nft_meta_set_init EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x47ce078d nft_chain_validate_dependency -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x516ff0e3 nft_register_expr -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5726942a nft_do_chain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x57ca630c nft_meta_set_validate -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x57d2009d nft_chain_validate +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4e94b72d nft_request_module +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5244c723 nft_set_catchall_gc EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5fb50673 nft_chain_validate_hooks -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6b389ad5 nft_unregister_obj -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6c003e58 nft_unregister_flowtable_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6c04e545 nft_request_module -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x796f306e nft_register_obj -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x80d45540 nft_meta_set_init -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x843ca1dc nft_obj_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x92c3afc9 nft_data_dump -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x95ee2697 nft_register_flowtable_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9ddd8528 nft_obj_notify -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xae77f329 nf_tables_destroy_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc6fdb736 nft_set_catchall_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc8ae4b36 nft_parse_register_store +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6581f6d6 nft_set_lookup_global +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x71019c80 nft_register_obj +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x76d83c85 nft_meta_get_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7b45a6fa nft_obj_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x90b3069c nft_data_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x985fd22b nft_unregister_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9917a838 nft_obj_notify +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa1cbcbc3 nft_register_flowtable_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xab2d88a3 nf_tables_deactivate_flowtable +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xabf95607 nft_unregister_flowtable_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb055cded __nft_release_basechain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb7437f07 nft_register_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc4337852 nft_meta_set_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc63cd0f1 nft_data_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc74a4297 nft_meta_get_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc8a7a16e nft_parse_register_store EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcace3f30 nft_data_release -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd72bce3b nft_set_elem_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xda3c5672 nft_data_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcf4d3d5c nft_meta_get_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd2193bed nft_do_chain EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xde57b5f5 nft_parse_u32_check -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xdfd10ea8 nft_unregister_expr -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe1cc56c9 nft_dump_register EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe2b8cc13 nft_parse_register_load -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe4f65cf5 __nft_release_basechain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xee02bd23 nf_tables_bind_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf578578a nft_meta_get_eval -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf76f25cf nft_meta_set_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xfc709835 nft_unregister_chain_type -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x03109c3c nfnetlink_unicast -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x1bea72eb nfnetlink_has_listeners -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x2d909740 nfnetlink_send -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x3ac57f93 nfnetlink_broadcast -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x3dc158ba nfnetlink_subsys_unregister -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x4c506cdf nfnetlink_set_err +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xecb015dd nft_set_elem_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf06b585d nft_unregister_obj +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x08b1b3b2 nfnetlink_subsys_register +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x17423c83 nfnetlink_send +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x4c82f1c8 nfnetlink_unicast EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x822ea2b2 nfnetlink_subsys_register +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x8dd69d67 nfnetlink_has_listeners +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xc594322c nfnetlink_set_err EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xa3b419f4 nfnl_acct_overquota -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xa8b80805 nfnl_acct_update -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xb41c9767 nfnl_acct_find_get +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xe51506b6 nfnetlink_broadcast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xeeac4364 nfnetlink_subsys_unregister +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x28e3b504 nfnl_acct_overquota +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x54585f85 nfnl_acct_update EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbecf5d14 nfnl_acct_put -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x1cb42c52 nf_osf_match +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xf2e5e9de nfnl_acct_find_get +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x16c850d6 nf_osf_find EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x35eff5e0 nf_osf_fingers -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x989d1612 nf_osf_find -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x0e6835b7 nft_fib_store_result -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x81142893 nft_fib_init -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xbcf2de29 nft_fib_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xe0a9c361 nft_fib_validate +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0xee56346b nf_osf_match +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x29bbb765 nft_fib_init +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x4d8511ba nft_fib_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x778c0583 nft_fib_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xdfb6a98f nft_fib_store_result EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x1de558c1 nft_reject_icmpv6_code -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x443b506b nft_reject_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x5996bf55 nft_reject_init -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x5fb004cb nft_reject_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x1feea7d5 nft_reject_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x259bb7a1 nft_reject_dump EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x6081751d nft_reject_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x9957119b nft_reject_init EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xe2c84666 nft_reject_icmp_code -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x01400e4e xt_request_find_match -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x03cdd9e6 xt_proto_init +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x024c6e57 xt_compat_match_offset EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x04e27719 xt_compat_flush_offsets -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x111486c7 xt_find_table_lock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x28c936cd xt_match_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x2b1e98fa xt_target_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3340a520 xt_request_find_table_lock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3c58668d xt_unregister_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5971c9f1 xt_replace_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x6505980c xt_register_template -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x6622a362 xt_compat_target_from_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x77fdffcb xt_compat_match_offset -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x79468a80 xt_table_unlock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x07c03eb1 xt_register_template +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x1ae020cc xt_match_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x1e112af3 xt_compat_match_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x20b37c68 xt_unregister_template +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x2ac2b2c2 xt_proto_fini +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3b99c0ca xt_target_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x743836af xt_register_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x74570c70 xt_check_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x75c63d02 xt_replace_table EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7bce4603 xt_data_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7f6e86e5 xt_compat_match_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7cb80a1e xt_proto_init EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x807d2b2c xt_recseq EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x823edea5 xt_compat_add_offset -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x8d4f2c74 xt_compat_target_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9c0ccafd xt_request_find_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x996eb03c xt_unregister_table EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9c995c69 xt_percpu_counter_alloc -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa5a1dc83 xt_proto_fini +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa73de032 xt_find_table_lock EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa7c94f1d xt_compat_lock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xb3da24fe xt_hook_ops_alloc -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbb6758fa xt_compat_match_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbb0b285f xt_table_unlock EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbfacb837 xt_percpu_counter_free -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc6c9085c xt_register_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc679eb4c xt_request_find_match EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc7fae024 xt_compat_calc_jump +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xcaeb78c7 xt_compat_target_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xcb54ec57 xt_compat_target_offset EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd1e246a2 xt_compat_unlock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd30a7b4d xt_check_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd26aa76a xt_compat_match_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd3896f9b xt_request_find_table_lock EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd3fcc511 xt_tee_enabled -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd54fd1a5 xt_unregister_template EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd9bb821b xt_copy_counters +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xdb62b191 xt_request_find_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xdcf3e9fd xt_compat_target_from_user EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xddf68fc6 xt_find_revision -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xde07a7ab xt_compat_target_offset -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xf051dab5 xt_check_target -EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x43ed4c33 xt_rateest_lookup -EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x64295735 xt_rateest_put -EXPORT_SYMBOL_GPL net/nsh/nsh 0x0cb32d01 nsh_push -EXPORT_SYMBOL_GPL net/nsh/nsh 0xa2933fe3 nsh_pop -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x3a25e310 ovs_vport_ops_unregister -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x46edb21d ovs_vport_alloc -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x6fa47c0a __ovs_vport_ops_register -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x767a310e ovs_vport_free -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x859409be ovs_netdev_tunnel_destroy -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x8cadcec1 ovs_netdev_link -EXPORT_SYMBOL_GPL net/psample/psample 0x4bd04e84 psample_group_put -EXPORT_SYMBOL_GPL net/psample/psample 0x5ca112da psample_group_take -EXPORT_SYMBOL_GPL net/psample/psample 0xf29a8ed1 psample_sample_packet -EXPORT_SYMBOL_GPL net/psample/psample 0xf36ebd88 psample_group_get +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xf6f85607 xt_hook_ops_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xfde16fe6 xt_check_target +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0xf7fb551f xt_rateest_put +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0xf92e67cc xt_rateest_lookup +EXPORT_SYMBOL_GPL net/nsh/nsh 0x5013c106 nsh_pop +EXPORT_SYMBOL_GPL net/nsh/nsh 0x6c90b183 nsh_push +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x37a3e2d4 ovs_vport_ops_unregister +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x58e8d54a ovs_netdev_tunnel_destroy +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x6144ed83 ovs_vport_free +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xaa336b91 ovs_netdev_link +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xb68b35b3 __ovs_vport_ops_register +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xe82910dd ovs_vport_alloc +EXPORT_SYMBOL_GPL net/psample/psample 0x0b80c9cd psample_group_put +EXPORT_SYMBOL_GPL net/psample/psample 0x19dbd085 psample_sample_packet +EXPORT_SYMBOL_GPL net/psample/psample 0x39e93247 psample_group_take +EXPORT_SYMBOL_GPL net/psample/psample 0xeffb419e psample_group_get EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq -EXPORT_SYMBOL_GPL net/rds/rds 0x1a323f95 rds_recv_incoming -EXPORT_SYMBOL_GPL net/rds/rds 0x1b80b8d7 rds_send_drop_acked -EXPORT_SYMBOL_GPL net/rds/rds 0x1eb5a378 rds_connect_complete -EXPORT_SYMBOL_GPL net/rds/rds 0x2a9235bb rds_trans_register +EXPORT_SYMBOL_GPL net/rds/rds 0x07fa8c67 rds_conn_create +EXPORT_SYMBOL_GPL net/rds/rds 0x100c5597 rds_send_drop_acked EXPORT_SYMBOL_GPL net/rds/rds 0x2b0d543c rds_message_add_extension -EXPORT_SYMBOL_GPL net/rds/rds 0x31d83027 rds_conn_drop -EXPORT_SYMBOL_GPL net/rds/rds 0x355d7ae6 rds_send_path_reset +EXPORT_SYMBOL_GPL net/rds/rds 0x2c33fb6f rds_for_each_conn_info +EXPORT_SYMBOL_GPL net/rds/rds 0x2cbc9200 rds_info_register_func EXPORT_SYMBOL_GPL net/rds/rds 0x36087aa4 rds_stats +EXPORT_SYMBOL_GPL net/rds/rds 0x384f7d6f rds_send_path_reset +EXPORT_SYMBOL_GPL net/rds/rds 0x3a0b8623 rds_message_put EXPORT_SYMBOL_GPL net/rds/rds 0x45a4781e rds_addr_cmp -EXPORT_SYMBOL_GPL net/rds/rds 0x46e1d549 rds_inc_init -EXPORT_SYMBOL_GPL net/rds/rds 0x489055aa rds_connect_path_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x46726afb rds_conn_path_drop +EXPORT_SYMBOL_GPL net/rds/rds 0x540df020 rds_conn_drop +EXPORT_SYMBOL_GPL net/rds/rds 0x575bb8c6 rds_send_ping 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 0x7146e459 rds_inc_put +EXPORT_SYMBOL_GPL net/rds/rds 0x61e6c6b9 rds_inc_path_init +EXPORT_SYMBOL_GPL net/rds/rds 0x62380038 rds_message_addref +EXPORT_SYMBOL_GPL net/rds/rds 0x71c507df rds_trans_unregister +EXPORT_SYMBOL_GPL net/rds/rds 0x7a0d1944 rds_conn_destroy EXPORT_SYMBOL_GPL net/rds/rds 0x7b399e66 rds_page_remainder_alloc -EXPORT_SYMBOL_GPL net/rds/rds 0x8259856c rds_for_each_conn_info -EXPORT_SYMBOL_GPL net/rds/rds 0x89a65fe9 rds_message_put +EXPORT_SYMBOL_GPL net/rds/rds 0x86944e46 rds_message_unmapped EXPORT_SYMBOL_GPL net/rds/rds 0x8debe465 rds_cong_map_updated -EXPORT_SYMBOL_GPL net/rds/rds 0x9d544a10 rds_conn_path_drop -EXPORT_SYMBOL_GPL net/rds/rds 0x9f98c422 rds_rdma_send_complete -EXPORT_SYMBOL_GPL net/rds/rds 0x9fbb484f rds_info_deregister_func -EXPORT_SYMBOL_GPL net/rds/rds 0xa1b0b4e9 rds_conn_path_connect_if_down -EXPORT_SYMBOL_GPL net/rds/rds 0xa60295e7 rds_atomic_send_complete -EXPORT_SYMBOL_GPL net/rds/rds 0xa60cf107 rds_send_path_drop_acked -EXPORT_SYMBOL_GPL net/rds/rds 0xa819fb04 rds_conn_connect_if_down -EXPORT_SYMBOL_GPL net/rds/rds 0xa8373005 rds_conn_create_outgoing -EXPORT_SYMBOL_GPL net/rds/rds 0xb0816206 rds_send_xmit -EXPORT_SYMBOL_GPL net/rds/rds 0xb50d1574 rds_conn_create -EXPORT_SYMBOL_GPL net/rds/rds 0xb7e84711 rds_inc_path_init -EXPORT_SYMBOL_GPL net/rds/rds 0xbbc32b49 rds_info_register_func -EXPORT_SYMBOL_GPL net/rds/rds 0xbd5d093c rds_message_unmapped -EXPORT_SYMBOL_GPL net/rds/rds 0xbec4c8d3 rds_conn_destroy +EXPORT_SYMBOL_GPL net/rds/rds 0x8e0d7faf rds_connect_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x9aefa2ce rds_connect_path_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x9ba6fb92 rds_conn_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0x9d58127d rds_rdma_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xa5a019bc rds_send_path_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0xafbc3175 rds_conn_path_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0xb55fd633 rds_inc_init +EXPORT_SYMBOL_GPL net/rds/rds 0xc0b5c478 rds_send_xmit EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy -EXPORT_SYMBOL_GPL net/rds/rds 0xd07d3136 rds_trans_unregister -EXPORT_SYMBOL_GPL net/rds/rds 0xe0e35f98 rds_message_addref +EXPORT_SYMBOL_GPL net/rds/rds 0xc8214feb rds_recv_incoming +EXPORT_SYMBOL_GPL net/rds/rds 0xcbd4939c rds_atomic_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xd82faab9 rds_inc_put +EXPORT_SYMBOL_GPL net/rds/rds 0xd9678e7a rds_trans_register +EXPORT_SYMBOL_GPL net/rds/rds 0xe8133cd6 rds_info_deregister_func EXPORT_SYMBOL_GPL net/rds/rds 0xf1bbab74 rds_stats_info_copy -EXPORT_SYMBOL_GPL net/rds/rds 0xf781ed46 rds_send_ping +EXPORT_SYMBOL_GPL net/rds/rds 0xfb6e5742 rds_conn_create_outgoing +EXPORT_SYMBOL_GPL net/sched/sch_pie 0x5f2c7db6 pie_process_dequeue EXPORT_SYMBOL_GPL net/sched/sch_pie 0x6ce9b467 pie_calculate_probability -EXPORT_SYMBOL_GPL net/sched/sch_pie 0xe82058e3 pie_drop_early -EXPORT_SYMBOL_GPL net/sched/sch_pie 0xf61a516b pie_process_dequeue +EXPORT_SYMBOL_GPL net/sched/sch_pie 0xf6d99539 pie_drop_early EXPORT_SYMBOL_GPL net/sched/sch_taprio 0x3aef7c97 taprio_offload_get EXPORT_SYMBOL_GPL net/sched/sch_taprio 0x3dff2951 taprio_offload_free -EXPORT_SYMBOL_GPL net/sctp/sctp 0x18ade471 sctp_transport_traverse_process -EXPORT_SYMBOL_GPL net/sctp/sctp 0x5c33ed0b sctp_for_each_endpoint -EXPORT_SYMBOL_GPL net/sctp/sctp 0x81221b4e sctp_transport_lookup_process -EXPORT_SYMBOL_GPL net/sctp/sctp 0xe8040d4a sctp_get_sctp_info -EXPORT_SYMBOL_GPL net/smc/smc 0x061e7f01 smc_proto6 -EXPORT_SYMBOL_GPL net/smc/smc 0x28529e4c smcd_free_dev -EXPORT_SYMBOL_GPL net/smc/smc 0x32dece37 smcd_handle_irq -EXPORT_SYMBOL_GPL net/smc/smc 0x5374db12 smc_proto -EXPORT_SYMBOL_GPL net/smc/smc 0x6c8c48d8 smcd_alloc_dev -EXPORT_SYMBOL_GPL net/smc/smc 0x7bbbf559 smc_hash_sk -EXPORT_SYMBOL_GPL net/smc/smc 0x9d096d8e smc_unhash_sk -EXPORT_SYMBOL_GPL net/smc/smc 0xc37e2a03 smcd_unregister_dev -EXPORT_SYMBOL_GPL net/smc/smc 0xc4966d75 smcd_register_dev -EXPORT_SYMBOL_GPL net/smc/smc 0xe252f910 smcd_handle_event -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x1677c4d8 svcauth_gss_register_pseudoflavor -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x357e6d02 gss_mech_register +EXPORT_SYMBOL_GPL net/sctp/sctp 0x0433ba14 sctp_for_each_endpoint +EXPORT_SYMBOL_GPL net/sctp/sctp 0x7889182f sctp_get_sctp_info +EXPORT_SYMBOL_GPL net/sctp/sctp 0x8f0b4eaa sctp_transport_traverse_process +EXPORT_SYMBOL_GPL net/sctp/sctp 0xf4ef2489 sctp_transport_lookup_process +EXPORT_SYMBOL_GPL net/smc/smc 0x13c4e9d9 smc_hash_sk +EXPORT_SYMBOL_GPL net/smc/smc 0x268a1e52 smcd_register_dev +EXPORT_SYMBOL_GPL net/smc/smc 0x272b2d97 smc_proto6 +EXPORT_SYMBOL_GPL net/smc/smc 0x36325635 smcd_unregister_dev +EXPORT_SYMBOL_GPL net/smc/smc 0x36f7c539 smcd_handle_event +EXPORT_SYMBOL_GPL net/smc/smc 0x7ac97fc4 smcd_handle_irq +EXPORT_SYMBOL_GPL net/smc/smc 0x7cbe321e smcd_free_dev +EXPORT_SYMBOL_GPL net/smc/smc 0x8dea2b31 smcd_alloc_dev +EXPORT_SYMBOL_GPL net/smc/smc 0x97133d19 smc_unhash_sk +EXPORT_SYMBOL_GPL net/smc/smc 0xd2d2f826 smc_proto EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x38d3dce5 g_make_token_header EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x482ac5a4 g_token_size -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x964b01f1 gss_mech_unregister +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x4b434a6d svcauth_gss_register_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x65b1a04a gss_mech_register EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xd7673035 g_verify_token_header -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xf094f3bf svcauth_gss_flavor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x009529c4 rpc_peeraddr2str -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x02507d63 rpcauth_stringify_acceptor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x038a3f19 rpc_shutdown_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05a515e8 svc_create +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xdfee6a6e gss_mech_unregister +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xf43d6e0e svcauth_gss_flavor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x010659c0 svc_prepare_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x02eff0c5 cache_destroy_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0577d59d svc_generic_init_request +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05b48adf svc_age_temp_xprts_now EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05e807a9 xdr_encode_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0635255b xprt_wait_for_buffer_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x063c6822 rpc_remove_pipe_dir_object EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x065994f1 xdr_encode_opaque_fixed -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x065f7d21 rpc_killall_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x072c02f2 svc_xprt_init -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x08c90d0c rpc_call_sync -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x09577033 rpcauth_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x09fdd576 svc_generic_rpcbind_set -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0b0735f7 rpc_task_release_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0bbd1129 read_bytes_from_xdr_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0bd95b2d sunrpc_cache_unhash -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0c1c1d92 xprt_destroy_backchannel -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0c836a8f svc_drop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0da895a4 rpc_count_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0dcc10dd rpc_unlink -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0dd630ef rpc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f44aa35 rpcauth_lookup_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x07048fe5 svc_reserve +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0a2069af xprt_request_get_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0acd7623 rpc_restart_call_prepare +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0bc882a3 xdr_inline_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0e91c14d xdr_enter_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0ecbb407 svc_shutdown_net EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x103944c1 rpc_init_priority_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x12aa4216 rpc_proc_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x152565fb rpc_switch_client_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1618cc53 svc_rpcb_cleanup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x162e7a80 xdr_init_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x17faa4e5 xprt_setup_backchannel -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x199cd503 rpc_call_start -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x19c68029 xprt_unpin_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1af39e14 svc_set_num_threads -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1b25d86c svc_print_addr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1c181ca5 xdr_stream_decode_string_dup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x10d45886 svc_authenticate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x11d04b36 xprt_lookup_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x14bfac22 rpc_count_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x14d105c5 svc_exit_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x15704b7e svc_recv +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x15eff16e xprt_unpin_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x16b112ca xdr_reserve_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1816c1f2 rpc_wake_up_queued_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x18aaeda8 sunrpc_cache_unhash +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1a03d698 svcauth_unix_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1b4bed11 xdr_stream_decode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1c95a3a8 rpc_setbufsize +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1cfe2c3e rpc_peeraddr EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e119a79 rpcauth_get_pseudoflavor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e292e62 xdr_encode_word -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2058bf5e xdr_encode_array2 -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x21005014 cache_seq_start_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x211f0205 sunrpc_cache_update -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x217e4f46 rpc_sleep_on_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x21aa4a31 svc_prepare_thread -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x22683388 auth_domain_lookup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x23e02245 xprt_release_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x251a7162 svc_fill_symlink_pathname -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2603d180 rpc_mkpipe_dentry -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2631c433 xprt_wake_up_backlog -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x283e4875 svc_xprt_names +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e5470b7 xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f522225 xdr_init_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x20c08f6c cache_seq_stop_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2126a19b xprt_free_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x228d9ad7 rpc_find_or_alloc_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2530018c rpc_queue_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x253a8a8b xprt_complete_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x25b05598 svc_xprt_enqueue EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2845c4ee rpc_machine_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x288a1185 svcauth_unix_set_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x28acdd38 xprt_release_xprt_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x28d3d14c rpc_set_connect_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x28672a48 gssd_running +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x28dfc86f svc_xprt_names EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x29ee9ab6 sunrpc_cache_pipe_upcall_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2a631427 xdr_enter_page -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2ac31a5d xprt_alloc_slot -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2b846d69 rpc_net_ns -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2bb4951c rpc_put_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2e5170c6 write_bytes_to_xdr_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2ec70f15 rpcauth_lookupcred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f00a827 xdr_stream_decode_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f3a94ad xdr_read_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x301ed692 rpc_bind_new_program -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a074ea rpcauth_wrap_req_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x295610fd xdr_page_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x29863ea5 rpcauth_lookup_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2b03452d xdr_reserve_space_vec +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2b47ec42 svc_bind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2d4b68cd rpcauth_wrap_req_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f9f3ebb rpc_set_connect_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2fc57676 rpc_pton EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x32f424c2 svc_xprt_deferred_close -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x33a0604c sunrpc_cache_lookup_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x34210c12 xdr_buf_from_iov -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x34d61fe7 xdr_reserve_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3532c9d4 svc_addsock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x35c4ca04 cache_register_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x363aa6a2 rpc_setbufsize -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3699311a rpc_localaddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x374a7156 unix_domain_find -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x38518408 svc_xprt_received +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3245b8a1 rpc_force_rebind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x325d48ae rpc_bind_new_program +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x34369cab rpc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x351642bc svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x362d04e7 rpcauth_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3732c6cb xdr_shift_buf EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x38d59fbc xprt_add_backlog -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x39ee71b1 rpc_count_iostats_metrics -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3c4f2073 rpc_clnt_setup_test_and_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3c9fb8b9 rpc_find_or_alloc_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3cd0631c xprt_lock_connect -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3d23ad14 svc_proc_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3d30cd11 sunrpc_cache_register_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3949bbe4 rpc_switch_client_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x39d1e076 xprt_reserve_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3b3457ab write_bytes_to_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3c7af27b rpcauth_destroy_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3cd93785 rpc_wake_up_first +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3cdacb4b svc_rqst_replace_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3d2458e6 bc_svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f9299f2 rpcauth_unregister EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f9a2b0b rpcauth_get_gssinfo -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3fc2c455 svc_close_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4089e24a xprt_write_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x41a7b3d2 xprt_alloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x44f2a548 rpc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x41082ab1 rpc_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x42b27dc3 rpcauth_init_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x42c222e0 rpcauth_init_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x43cfbd99 svc_reg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4474f6c0 sunrpc_init_cache_detail EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x453efa54 svc_pool_map -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x45746222 xdr_write_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x45fea18e xdr_page_pos -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4763575a svc_proc_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x48966ccd sunrpc_cache_pipe_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x48e62e76 xdr_stream_pos -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4904738b xdr_reserve_space_vec -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x49bf3c56 rpc_malloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4ac890ad xprt_lookup_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4aeba4f0 svc_fill_write_vector +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x466db9c8 rpc_clnt_swap_activate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x46d8a305 rpc_clnt_test_and_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x47ceb0b0 rpc_clnt_setup_test_and_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x48da5c52 rpc_num_bc_slots +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x49b1d86e svc_destroy +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4a25fe0c svc_close_xprt EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4afedab1 xprtiod_workqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4b5aea31 svc_rqst_replace_page -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4b5eb150 cache_destroy_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4b9a6dec xdr_init_decode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4bbf2b84 svc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4c1f0e2c svc_xprt_put EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4dac77f0 xdr_encode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4dd1acaa auth_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e5272f2 xprt_pin_rqst EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e8f6ca7 sunrpc_net_id -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4f88d423 xprt_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x510843ba cache_create_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x511c3ae2 rpc_destroy_pipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4f2b9c39 rpc_clnt_xprt_switch_has_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4f4896ea rpc_get_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x50406a16 xprt_release_rqst_cong EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5511b2d9 sunrpc_init_cache_detail -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x55f9d1fa xdr_stream_subsegment -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x56e85ffd xprt_reconnect_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53c188d4 rpc_sleep_on_priority +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x545eb293 svc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x54f21f13 svc_rqst_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x564acf69 svc_fill_symlink_pathname +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x56a6ca88 rpc_localaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x577d8f3a rpc_restart_call +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x58abeb65 rpcauth_stringify_acceptor EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a45ba31 svc_auth_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5f58b46b xdr_init_decode_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5f7a088d svc_generic_init_request -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6088d98c svc_age_temp_xprts_now -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x60ccf49e rpc_queue_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x63b2991d svc_reserve -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x63e862a8 rpcauth_destroy_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x63ff3b92 svc_rqst_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6448401c svc_xprt_enqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x676976b8 rpc_clnt_swap_activate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x69038c50 rpc_release_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6b4a1d1e svc_rpcbind_set_version -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6b842e3f rpc_clnt_show_stats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6bc75c3b rpc_wake_up_queued_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6c1d5b20 xprt_reconnect_backoff -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6d5f848f rpc_wake_up_next -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6e24bac9 rpc_pipe_generic_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5b21e477 rpc_put_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5c189776 xprt_release_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5cd5c1bc svc_xprt_deferred_close +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5ceec1d3 rpcauth_lookupcred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5dcb0b31 svc_xprt_do_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5f49d9f9 svc_drop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x601a9abb xprt_reconnect_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x60da1441 xdr_buf_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x611027a2 xdr_init_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x617f7733 xprt_add_backlog +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x61b9065f __rpc_wait_for_completion_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x64b74f90 svc_rpcb_setup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x64e708af svc_rpcb_cleanup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6585a928 rpc_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x68392803 rpc_count_iostats_metrics +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x69c3b1ba svc_addsock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x69c6bf0f xprt_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6a577127 rpc_release_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6d1640c4 svc_create_pooled +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6e05080c rpc_sleep_on_priority_timeout EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6e9516ec rpc_free_iostats EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6f356271 rpc_wake_up -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x707cb718 rpc_clnt_xprt_switch_has_addr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x707d697c rpc_mkpipe_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x710e22b9 rpc_sleep_on +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6f3945f7 xprt_update_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x70870156 rpc_clone_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x70c0f69a rpc_mkpipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x717bc81a rpc_call_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71d6a421 rpc_sleep_on_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 0x72fac405 xdr_expand_hole -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x744de6f0 rpc_alloc_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x782a7448 xdr_process_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7837bc9d svcauth_unix_purge -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x78c8c50d rpc_clnt_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x799e0771 svc_bind -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7d13226a rpc_clnt_swap_deactivate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7d2a2ef1 xprt_pin_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7da2179e rpc_add_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7426c63d xprt_write_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x75aeabd3 rpc_clnt_xprt_switch_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7615081f xprt_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x79e3010c read_bytes_from_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7af2d5f2 _copy_from_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7b51039b rpc_malloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7d060532 rpc_put_task_async EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7e9f1448 svc_sock_update_bufs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7ecf576b xprt_unlock_connect -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fc3dd21 xprt_force_disconnect -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x804b4156 xdr_commit_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8071a7cf svc_authenticate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x807313f3 xprt_complete_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x807c1ff0 cache_seq_stop_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80aa3be8 rpcauth_init_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8327d12b xdr_shift_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x84636000 put_rpccred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x846ab881 sunrpc_destroy_cache_detail -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x84c61933 xdr_init_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7e076d25 svc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7eb81cc8 rpc_d_lookup_sb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8317c7d5 auth_domain_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x83bca4f4 xprt_release_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x849505b1 svc_generic_rpcbind_set EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x85cc37ad rpc_wake_up_status -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x876ecdde svc_seq_show -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8816862d xdr_buf_trim -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8824a575 svc_alien_sock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x88303f50 svc_recv -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8946aff3 svc_unreg_xprt_class -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8e10bd28 xdr_align_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8f7ffa34 rpc_prepare_reply_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8fbff2af rpc_num_bc_slots -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9426bbc3 rpc_clnt_xprt_switch_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8666ae22 rpc_run_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x86d35576 rpc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x87f15694 rpc_task_release_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x889ac3a4 xprt_wait_for_reply_request_def +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x88fe254b xprt_wake_up_backlog +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x890a875c xdr_commit_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8ab7f0be rpc_alloc_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8b4daff3 sunrpc_cache_pipe_upcall_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8beb7f4e svc_xprt_init +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8e61c17f xdr_stream_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8e89b53a xprt_force_disconnect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8ecc8c54 cache_check +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8f267156 rpcauth_unwrap_resp_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x907eae85 xprt_wait_for_buffer_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x91da4a81 rpc_init_pipe_dir_head +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x92dd6050 rpc_shutdown_client EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9472e08a rpc_ntop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x94a4c74c xprt_disconnect_done -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x94bd5a04 xprt_wait_for_reply_request_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x96b3068b rpc_delay -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x983c0344 xprt_reserve_xprt_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98bf0c53 rpc_call_null -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9ac82da8 rpc_clone_client_set_auth -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9ae81635 rpc_clnt_xprt_switch_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9b5a7ba7 auth_domain_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9c359753 svc_exit_thread -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9cbf518c cache_unregister_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9dd08d75 xdr_buf_subsegment -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9e02837e rpcauth_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9faead4c rpc_init_pipe_dir_head -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa0128303 xprt_free_slot -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa05f1f0d rpcauth_unwrap_resp_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa069429c rpc_get_sb_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa0780e26 rpc_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x94aeb4f0 rpc_clnt_iterate_for_each_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x96a90f03 xprt_destroy_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x982993fb rpc_clnt_swap_deactivate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x986c2fd4 svc_auth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9904e2c5 rpc_exit +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9a4dfa9c xdr_encode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9b5e5c8e svc_fill_write_vector +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9b694ca3 cache_register_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9d1410f8 xdr_process_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9d45a3a1 rpc_mkpipe_dentry +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9f343f60 svc_rqst_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa0bd84e0 sunrpc_cache_unregister_pipefs EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa13acdb8 svc_pool_map_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa2db162f xprt_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa2f64af4 xprt_wake_pending_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa335039c svc_set_num_threads_sync -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa5e2f042 svc_process -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa6102d0d rpc_d_lookup_sb -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa6c2e65f xdr_decode_word -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa6fab7d1 rpc_put_task_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa84da433 rpc_restart_call -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xac53a24e rpc_task_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xac72605f rpc_uaddr2sockaddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xad5ff299 xprt_register_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xad7545da xdr_decode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa43c9664 xprt_lock_connect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa57e5f2c svc_sock_update_bufs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa63fb8d8 svc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa7b2334c sunrpc_cache_pipe_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa85a9164 xdr_terminate_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa872ed11 unix_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaa04488f xdr_align_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xabbc30e4 svcauth_unix_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xabc85f6e rpc_clnt_show_stats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xacc8293a rpc_call_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xacf09844 svc_xprt_received +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xad6eb8fd rpc_sleep_on +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaed72fce sunrpc_cache_update +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaee819c1 rpc_max_bc_payload EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xafd0dc58 rpc_put_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb00be52c xprt_disconnect_done +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb117806d svc_xprt_copy_addrs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb13d56e0 rpc_add_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb15ce60e sunrpc_cache_lookup_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb187931e xprt_adjust_cwnd EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb312d0c4 svc_pool_map_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb3fc1e28 rpcauth_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb443e226 cache_check +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb391019a rpc_uaddr2sockaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb42cdffe rpc_remove_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb4a0c8be rpc_init_pipe_dir_object EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb73d7d5d svc_shutdown_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb751b81d xprt_adjust_cwnd -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb75311d2 svc_xprt_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb7be5d73 auth_domain_find -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb81340a6 rpc_call_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb81641ed rpc_clone_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbd48631e xprt_wait_for_reply_request_def -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbef975a1 svc_rpcb_setup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb67f694b svc_set_num_threads +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb85bd23e rpc_unlink +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb86972dc csum_partial_copy_to_xdr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb9fbcd84 rpc_prepare_reply_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbba07e89 rpc_clnt_xprt_switch_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf05b650 xprt_get EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc0709a53 svc_wake_up -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc08aa6ad xdr_terminate_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc04c9a05 cache_unregister_net EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12435e3 rpc_calc_rto -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc44d680b rpcauth_init_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc6fc283d __rpc_wait_for_completion_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc25e71ed rpcb_getport_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc28fc7fd cache_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc39179ad rpc_clnt_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3bcde93 rpc_peeraddr2str +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc480549e xprt_reconnect_backoff +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc5879afd svc_rpcbind_set_version +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc5b3082a rpc_wake_up_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc60189e5 svc_alien_sock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8b76098 rpc_call_start EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8eb4973 rpc_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc941df2b xprt_request_get_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc9d79651 xdr_inline_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xca3b0ee0 svc_create_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xca95a51c cache_purge -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcb35ecc8 svc_create_pooled -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcbb5575c rpc_clnt_iterate_for_each_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xccffe039 rpc_sleep_on_priority -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcdfcefdd xprt_reserve_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc9e440e1 rpc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcb1cee85 sunrpc_destroy_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xccf2cd80 auth_domain_lookup EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce678a59 xdr_decode_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce6cdb27 bc_svc_process -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd000a2fc rpc_init_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd08a662a rpcb_getport_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd0ba2f19 _copy_from_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd20eb6cb svc_xprt_do_enqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd35ddf64 cache_seq_next_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd55e80d1 xprt_update_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd6842506 svc_encode_result_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd68a5f05 rpc_exit -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd7fa67bd rpc_clnt_test_and_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd8d09977 svc_xprt_copy_addrs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xda159f87 rpc_peeraddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdad57921 rpc_pton +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce9ce902 cache_seq_start_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcf63c080 rpc_pipe_generic_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcf810b21 xprt_setup_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd1083fcc rpc_put_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd1b66206 svc_print_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd4877b57 xdr_stream_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd545583b xprt_unregister_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd716d768 put_rpccred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd8326cfb xprt_register_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd83e800d xprt_free EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd691402 xprt_find_transport_ident -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xddb7dbd2 gssd_running -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xde88dbd6 svc_destroy -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdfa27b01 rpc_max_bc_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdfa5090f rpc_sleep_on_priority_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe0523669 rpc_force_rebind -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe2115b7b xprt_unregister_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe2a2a2fa xdr_stream_decode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdef9264a svc_find_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdfdd4c14 xdr_read_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe0ce6285 cache_create_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe2b05787 svc_create_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe4d0ea62 sunrpc_cache_register_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5829997 rpc_clone_client_set_auth EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe6841878 svc_reg_xprt_class -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe738d7f8 svc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe6787c08 xdr_stream_decode_string_dup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe9513834 xdr_write_pages EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeab8407f svc_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xea2e8a1a rpc_destroy_pipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeb1dbef8 xdr_stream_decode_opaque_dup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeb536045 svc_encode_result_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xebe57cfe rpc_net_ns +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xec28fabd xdr_decode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xec62948d rpc_killall_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xed8e16b4 rpc_task_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xed92cee7 xdr_stream_decode_string EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedcf6be4 qword_add -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeea077bc svc_find_xprt EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeeacab69 rpc_update_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xefaf1d94 svc_rqst_alloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf01ef51f rpc_run_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf1328fcc svc_auth_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf1865814 sunrpc_cache_unregister_pipefs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf19d511c xprt_release_rqst_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf6815e49 xdr_inline_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf695cf39 rpc_wake_up_first +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xef2fea72 svc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf34c1ede xdr_encode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf3a00efc xprt_reserve_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf3bf5c93 rpcauth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf3cc4539 rpc_call_null +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf52923df xdr_inline_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf6d6bc4c svc_set_num_threads_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf74ba250 xprt_unlock_connect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf7a1a4ec xdr_buf_from_iov EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf7fca26f rpc_destroy_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf95935df xdr_stream_decode_opaque_dup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9c780c6 csum_partial_copy_to_xdr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfbfd375d rpc_restart_call_prepare -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfc443643 xprt_free -EXPORT_SYMBOL_GPL net/tls/tls 0x5d52bb19 tls_device_sk_destruct -EXPORT_SYMBOL_GPL net/tls/tls 0x8b2957f9 tls_encrypt_skb -EXPORT_SYMBOL_GPL net/tls/tls 0xa46d7e6b tls_validate_xmit_skb -EXPORT_SYMBOL_GPL net/tls/tls 0xa62cec62 tls_offload_tx_resync_request +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf80370fc cache_seq_next_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfa611936 svc_unreg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfa9e186e xdr_buf_trim +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfad11168 xdr_expand_hole +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfb230d1e xdr_decode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfce03cbe xprt_wake_pending_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfe7000ef xprt_wait_for_reply_request_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfece4e18 svc_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xff467c31 rpc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xffde3104 svc_seq_show +EXPORT_SYMBOL_GPL net/tls/tls 0x49558dda tls_device_sk_destruct +EXPORT_SYMBOL_GPL net/tls/tls 0xba7d0b64 tls_offload_tx_resync_request +EXPORT_SYMBOL_GPL net/tls/tls 0xc1238dba tls_validate_xmit_skb +EXPORT_SYMBOL_GPL net/tls/tls 0xeb7c9cb2 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 0x05b0f7dc virtio_transport_stream_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x17c1f9e3 virtio_transport_seqpacket_has_data -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x1ab42444 virtio_transport_stream_has_data -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2768da47 virtio_transport_inc_tx_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2e27aecb virtio_transport_free_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x311d90cd virtio_transport_destruct -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x384da3f1 virtio_transport_release -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7cff8144 virtio_transport_notify_send_pre_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7e6f84f0 virtio_transport_notify_recv_pre_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x821f12ae virtio_transport_put_credit -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x89dab30a virtio_transport_stream_has_space -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x8ae56dd0 virtio_transport_dgram_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x8cd1f24b virtio_transport_notify_send_post_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x91ce6548 virtio_transport_shutdown -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x92e88ad2 virtio_transport_stream_is_active -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x95dd0966 virtio_transport_dgram_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x9f4e14fa virtio_transport_notify_recv_pre_block -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa04fc0f0 virtio_transport_notify_buffer_size -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa33a24f3 virtio_transport_notify_poll_in -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa6d2530c virtio_transport_notify_recv_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xaed6ad69 virtio_transport_notify_send_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb518befc virtio_transport_seqpacket_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x08f53917 virtio_transport_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x12d70c56 virtio_transport_shutdown +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x1458bdb8 virtio_transport_notify_poll_in +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x15cb3724 virtio_transport_free_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x1adaabad virtio_transport_connect +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x1d0bb83e virtio_transport_notify_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x286cf9c1 virtio_transport_notify_recv_pre_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2a8405c4 virtio_transport_put_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2bb276e7 virtio_transport_recv_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x3280956b virtio_transport_notify_recv_post_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x363edb54 virtio_transport_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x3991615f virtio_transport_stream_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x3a963685 virtio_transport_dgram_bind +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x40c4a06a virtio_transport_inc_tx_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x45aa1405 virtio_transport_notify_poll_out +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x4bc583c6 virtio_transport_notify_recv_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x4eaa299a virtio_transport_do_socket_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x689f6904 virtio_transport_seqpacket_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7de9efb4 virtio_transport_dgram_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x87b10499 virtio_transport_deliver_tap_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x92339d61 virtio_transport_notify_send_post_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x98ad6acd virtio_transport_notify_send_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa3575a3d virtio_transport_seqpacket_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xacede61d virtio_transport_notify_send_pre_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb4ed97e8 virtio_transport_notify_send_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 0xbb10ad8c virtio_transport_dgram_bind -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xc24ea43a virtio_transport_notify_poll_out -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xc5a7b41f virtio_transport_notify_send_pre_block -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xc5d13ff0 virtio_transport_stream_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xc8aac935 virtio_transport_seqpacket_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xc91dbcb8 virtio_transport_do_socket_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd2d07376 virtio_transport_recv_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xdf5963c5 virtio_transport_get_credit -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe2e3e2c3 virtio_transport_connect -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe54619eb virtio_transport_notify_recv_post_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf53a9bd6 virtio_transport_stream_rcvhiwat -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf9f774a1 virtio_transport_deliver_tap_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xc48db6c4 virtio_transport_get_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xca2d4e12 virtio_transport_stream_is_active +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xcc5a0839 virtio_transport_destruct +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe389f31d virtio_transport_stream_rcvhiwat +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xeae5fb6e virtio_transport_dgram_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xec8968b1 virtio_transport_seqpacket_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf578388e virtio_transport_stream_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf86c2630 virtio_transport_notify_recv_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf8da7aab virtio_transport_release EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0e9bc9b6 vsock_addr_unbind -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0ff4dfb5 vsock_add_pending -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x115b5b85 vsock_deliver_tap -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x12fc76c0 vsock_stream_has_data -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2216f153 vsock_remove_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x10068399 vsock_core_register +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x10e3ea89 vsock_core_unregister +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x1280d1c5 vsock_remove_bound EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x284e07d8 vsock_bind_table -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x29a32548 vsock_insert_connected -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x3bf59617 vsock_find_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x3b611cf3 vsock_remove_tap EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x3d4b0fca vsock_addr_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x463834f8 vsock_for_each_connected_socket EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4b99648c vsock_addr_bound -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x53c4c878 vsock_remove_bound -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x67d52872 vsock_assign_transport -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x6b270194 vsock_remove_pending -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7462a7f6 vsock_find_bound_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7590809a vsock_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4d3a6550 vsock_remove_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x5e74a010 vsock_add_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x6f7e8e3b vsock_assign_transport +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7036f379 vsock_enqueue_accept +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x87157503 vsock_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x8af5f507 vsock_deliver_tap EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x90aa8549 vsock_find_cid -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x923e2160 vsock_add_tap -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x986c14ee vsock_remove_sock +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9b5de806 vsock_find_bound_socket EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9bb6fd09 vsock_connected_table -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xa0af5d94 vsock_core_get_transport -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xa30da8bc vsock_core_register +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xa13dfd56 vsock_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xa9cd2777 vsock_remove_sock EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xaf2674b5 vsock_addr_equals_addr +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xb683a4e5 vsock_core_get_transport EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xb844b677 vsock_addr_cast -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbb057f3c vsock_for_each_connected_socket EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbd00a591 vsock_table_lock -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc5e98444 vsock_core_unregister -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc6ab4187 vsock_create_connected -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xda7c281d vsock_remove_connected -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xe7733a05 vsock_enqueue_accept +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbd82f6d7 vsock_create_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd0095dee vsock_find_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd19869f8 vsock_remove_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd2c04578 vsock_add_pending EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xec96eadf vsock_addr_validate +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xfbfd06f0 vsock_insert_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 @@ -9958,3824 +9964,3829 @@ -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x1364997c ipcomp_input -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x302281c0 ipcomp_destroy -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x7d3c60f5 ipcomp_init_state -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xc26a5514 ipcomp_output +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x39fbc503 ipcomp_output +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x54059ac8 ipcomp_init_state +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xd49c1f3e ipcomp_destroy +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xfcf025a8 ipcomp_input EXPORT_SYMBOL_GPL net/xfrm/xfrm_user 0x4a0c7516 xfrm_msg_min EXPORT_SYMBOL_GPL net/xfrm/xfrm_user 0xe2521b1c 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 0x00000340 dm_suspended -EXPORT_SYMBOL_GPL vmlinux 0x0005481e dm_table_set_type +EXPORT_SYMBOL_GPL vmlinux 0x0006302b kvm_vcpu_on_spin EXPORT_SYMBOL_GPL vmlinux 0x00132d0e list_lru_count_node -EXPORT_SYMBOL_GPL vmlinux 0x001be5d7 anon_inode_getfd -EXPORT_SYMBOL_GPL vmlinux 0x001f864f __traceiter_pelt_rt_tp EXPORT_SYMBOL_GPL vmlinux 0x0029dcb7 srcu_init_notifier_head -EXPORT_SYMBOL_GPL vmlinux 0x0047b6c5 component_add +EXPORT_SYMBOL_GPL vmlinux 0x003c5aff dm_start_time_ns_from_clone EXPORT_SYMBOL_GPL vmlinux 0x00513f58 get_timespec64 -EXPORT_SYMBOL_GPL vmlinux 0x008b58f9 register_trace_event -EXPORT_SYMBOL_GPL vmlinux 0x011b6642 crypto_skcipher_decrypt -EXPORT_SYMBOL_GPL vmlinux 0x01353ef7 crypto_stats_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x0056bcaa tcpv6_prot +EXPORT_SYMBOL_GPL vmlinux 0x005b7894 pskb_put +EXPORT_SYMBOL_GPL vmlinux 0x009b1d87 kvm_vcpu_write_guest +EXPORT_SYMBOL_GPL vmlinux 0x00cd05a0 ccw_device_get_chpid +EXPORT_SYMBOL_GPL vmlinux 0x00dea780 inet6_compat_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x00ded5be dw_pcie_ep_linkup +EXPORT_SYMBOL_GPL vmlinux 0x00e8d912 ipv4_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x00edbbc8 watchdog_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x012ccda5 driver_find EXPORT_SYMBOL_GPL vmlinux 0x01413c5f css_schedule_reprobe -EXPORT_SYMBOL_GPL vmlinux 0x014fa96a kthread_unpark -EXPORT_SYMBOL_GPL vmlinux 0x0153ae01 irq_domain_set_hwirq_and_chip -EXPORT_SYMBOL_GPL vmlinux 0x01587cd5 dm_disk -EXPORT_SYMBOL_GPL vmlinux 0x016e230e __sock_recv_timestamp -EXPORT_SYMBOL_GPL vmlinux 0x01774c8e devlink_param_register -EXPORT_SYMBOL_GPL vmlinux 0x017a8e42 dma_mmap_noncontiguous -EXPORT_SYMBOL_GPL vmlinux 0x01865895 balloon_page_dequeue -EXPORT_SYMBOL_GPL vmlinux 0x01a7fa73 kvm_get_kvm -EXPORT_SYMBOL_GPL vmlinux 0x01bdcae3 fat_search_long -EXPORT_SYMBOL_GPL vmlinux 0x01d18af3 iomap_swapfile_activate -EXPORT_SYMBOL_GPL vmlinux 0x01ffb94f key_set_timeout +EXPORT_SYMBOL_GPL vmlinux 0x019a5716 watchdog_set_last_hw_keepalive +EXPORT_SYMBOL_GPL vmlinux 0x01a84565 crypto_larval_alloc +EXPORT_SYMBOL_GPL vmlinux 0x01dadbdd pci_epc_raise_irq EXPORT_SYMBOL_GPL vmlinux 0x02096942 register_kretprobe -EXPORT_SYMBOL_GPL vmlinux 0x0210c470 simple_attr_open +EXPORT_SYMBOL_GPL vmlinux 0x020b55d3 iommu_present +EXPORT_SYMBOL_GPL vmlinux 0x02318184 loop_backing_file EXPORT_SYMBOL_GPL vmlinux 0x02394899 play_idle_precise -EXPORT_SYMBOL_GPL vmlinux 0x02448d8c tty_buffer_request_room -EXPORT_SYMBOL_GPL vmlinux 0x02531c7c watchdog_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0x025e1f7c file_is_kvm +EXPORT_SYMBOL_GPL vmlinux 0x023cca99 platform_get_irq_byname_optional +EXPORT_SYMBOL_GPL vmlinux 0x024343f1 md_run +EXPORT_SYMBOL_GPL vmlinux 0x024517b5 fib_alias_hw_flags_set EXPORT_SYMBOL_GPL vmlinux 0x0276daa8 pkcs7_verify -EXPORT_SYMBOL_GPL vmlinux 0x0283ae5d skb_morph -EXPORT_SYMBOL_GPL vmlinux 0x0286a859 tcp_unregister_congestion_control -EXPORT_SYMBOL_GPL vmlinux 0x029f0ef8 task_cgroup_path -EXPORT_SYMBOL_GPL vmlinux 0x02afa1be udp_tunnel_nic_ops -EXPORT_SYMBOL_GPL vmlinux 0x02b4c461 platform_get_irq -EXPORT_SYMBOL_GPL vmlinux 0x02c517b4 mptcp_subflow_request_sock_ops -EXPORT_SYMBOL_GPL vmlinux 0x02d6cc3d screen_glyph -EXPORT_SYMBOL_GPL vmlinux 0x02e7e184 xfrm_output_resume -EXPORT_SYMBOL_GPL vmlinux 0x02fd1675 devlink_port_type_ib_set -EXPORT_SYMBOL_GPL vmlinux 0x030d285b fuse_dev_install -EXPORT_SYMBOL_GPL vmlinux 0x030e5e29 kvm_vcpu_write_guest -EXPORT_SYMBOL_GPL vmlinux 0x03183cc9 devm_free_percpu -EXPORT_SYMBOL_GPL vmlinux 0x0339c054 get_task_pid +EXPORT_SYMBOL_GPL vmlinux 0x02889029 pci_user_read_config_word +EXPORT_SYMBOL_GPL vmlinux 0x02a89241 debugfs_create_x8 +EXPORT_SYMBOL_GPL vmlinux 0x02ad0d4f device_register +EXPORT_SYMBOL_GPL vmlinux 0x02c2327d bus_set_iommu +EXPORT_SYMBOL_GPL vmlinux 0x02d43563 init_uts_ns +EXPORT_SYMBOL_GPL vmlinux 0x02e2e363 devres_close_group +EXPORT_SYMBOL_GPL vmlinux 0x02e5901b __netpoll_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x033bd2db transport_destroy_device EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list -EXPORT_SYMBOL_GPL vmlinux 0x0344ce55 devlink_is_reload_failed -EXPORT_SYMBOL_GPL vmlinux 0x03530047 sched_trace_cfs_rq_cpu +EXPORT_SYMBOL_GPL vmlinux 0x03672871 virtqueue_poll +EXPORT_SYMBOL_GPL vmlinux 0x036a50e2 gpiod_get_raw_array_value EXPORT_SYMBOL_GPL vmlinux 0x036de383 perf_event_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x03895716 tcp_enter_memory_pressure -EXPORT_SYMBOL_GPL vmlinux 0x038e4313 do_truncate EXPORT_SYMBOL_GPL vmlinux 0x03952887 ktime_add_safe +EXPORT_SYMBOL_GPL vmlinux 0x03a33f34 __fscrypt_prepare_rename EXPORT_SYMBOL_GPL vmlinux 0x03b090c5 xas_init_marks -EXPORT_SYMBOL_GPL vmlinux 0x03b6e06f crypto_register_kpp +EXPORT_SYMBOL_GPL vmlinux 0x03b3a5af bpf_preload_ops EXPORT_SYMBOL_GPL vmlinux 0x03c12dfe cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x03c4633f sock_diag_put_meminfo +EXPORT_SYMBOL_GPL vmlinux 0x03cbcd72 blk_mq_quiesce_queue EXPORT_SYMBOL_GPL vmlinux 0x03ce7234 sched_smt_present -EXPORT_SYMBOL_GPL vmlinux 0x03f71df1 blkcg_print_blkgs +EXPORT_SYMBOL_GPL vmlinux 0x03d4aed2 irq_domain_push_irq +EXPORT_SYMBOL_GPL vmlinux 0x03ff0433 __fscrypt_prepare_link EXPORT_SYMBOL_GPL vmlinux 0x0402cbbf preempt_notifier_inc -EXPORT_SYMBOL_GPL vmlinux 0x04285e2c class_remove_file_ns -EXPORT_SYMBOL_GPL vmlinux 0x0438e6a2 exportfs_encode_fh -EXPORT_SYMBOL_GPL vmlinux 0x0443f0b7 ping_common_sendmsg +EXPORT_SYMBOL_GPL vmlinux 0x043d82aa irq_chip_set_affinity_parent +EXPORT_SYMBOL_GPL vmlinux 0x045658aa pci_d3cold_enable EXPORT_SYMBOL_GPL vmlinux 0x046431e0 nf_hooks_lwtunnel_sysctl_handler -EXPORT_SYMBOL_GPL vmlinux 0x047c5282 iommu_device_register -EXPORT_SYMBOL_GPL vmlinux 0x048550a0 ipv6_stub -EXPORT_SYMBOL_GPL vmlinux 0x048a9418 bpf_trace_run9 -EXPORT_SYMBOL_GPL vmlinux 0x048c1af4 kvm_release_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0x047ade36 platform_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x04a2326c page_cache_ra_unbounded EXPORT_SYMBOL_GPL vmlinux 0x04a6fee6 software_node_register -EXPORT_SYMBOL_GPL vmlinux 0x04ba2e63 validate_xmit_xfrm +EXPORT_SYMBOL_GPL vmlinux 0x04ac26fa sk_msg_is_readable EXPORT_SYMBOL_GPL vmlinux 0x04bf0092 io_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x04c0d70c security_file_ioctl EXPORT_SYMBOL_GPL vmlinux 0x04c4f603 mpi_get_buffer EXPORT_SYMBOL_GPL vmlinux 0x04c8aebf console_verbose -EXPORT_SYMBOL_GPL vmlinux 0x04e8b1db simple_attr_write +EXPORT_SYMBOL_GPL vmlinux 0x04d05885 devlink_resource_occ_get_register +EXPORT_SYMBOL_GPL vmlinux 0x04e157ae crypto_shash_digest +EXPORT_SYMBOL_GPL vmlinux 0x04e2d6d1 security_path_chown EXPORT_SYMBOL_GPL vmlinux 0x04ea8706 __iowrite64_copy EXPORT_SYMBOL_GPL vmlinux 0x04f494eb sbitmap_queue_wake_up -EXPORT_SYMBOL_GPL vmlinux 0x0507dfe4 irq_chip_retrigger_hierarchy -EXPORT_SYMBOL_GPL vmlinux 0x0526361a sk_setup_caps +EXPORT_SYMBOL_GPL vmlinux 0x050ad3f8 gpiod_direction_output +EXPORT_SYMBOL_GPL vmlinux 0x050dfbc3 fwnode_handle_get +EXPORT_SYMBOL_GPL vmlinux 0x0511c101 sysfs_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x051bfa91 devm_kmalloc EXPORT_SYMBOL_GPL vmlinux 0x052c9aed ktime_get_real_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0x052d7998 mmu_interval_read_begin EXPORT_SYMBOL_GPL vmlinux 0x05337ff1 pkcs7_validate_trust EXPORT_SYMBOL_GPL vmlinux 0x053d738a __SCK__tp_func_br_fdb_update EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt -EXPORT_SYMBOL_GPL vmlinux 0x055fe957 metadata_dst_free -EXPORT_SYMBOL_GPL vmlinux 0x0585e395 sysfs_merge_group EXPORT_SYMBOL_GPL vmlinux 0x05883efb __traceiter_suspend_resume -EXPORT_SYMBOL_GPL vmlinux 0x058ae3f2 pci_epc_write_header EXPORT_SYMBOL_GPL vmlinux 0x058c6377 for_each_kernel_tracepoint -EXPORT_SYMBOL_GPL vmlinux 0x05c3d66d device_find_child -EXPORT_SYMBOL_GPL vmlinux 0x05ce326c fat_add_entries -EXPORT_SYMBOL_GPL vmlinux 0x05e7a006 blk_queue_max_discard_segments -EXPORT_SYMBOL_GPL vmlinux 0x05e92910 tty_port_register_device -EXPORT_SYMBOL_GPL vmlinux 0x05f92e30 blk_rq_prep_clone +EXPORT_SYMBOL_GPL vmlinux 0x05906ce6 cio_enable_subchannel +EXPORT_SYMBOL_GPL vmlinux 0x059ac8f9 trace_array_init_printk +EXPORT_SYMBOL_GPL vmlinux 0x05b09578 crypto_register_alg +EXPORT_SYMBOL_GPL vmlinux 0x05bc5567 iommu_get_domain_for_dev +EXPORT_SYMBOL_GPL vmlinux 0x05c141bf inet_csk_get_port +EXPORT_SYMBOL_GPL vmlinux 0x05f03254 trace_put_event_file +EXPORT_SYMBOL_GPL vmlinux 0x05f798ad generic_fsdax_supported EXPORT_SYMBOL_GPL vmlinux 0x06055a23 __tracepoint_pelt_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x060c3198 fuse_dev_fiq_ops +EXPORT_SYMBOL_GPL vmlinux 0x06194e9a key_set_timeout EXPORT_SYMBOL_GPL vmlinux 0x061a6a17 rht_bucket_nested +EXPORT_SYMBOL_GPL vmlinux 0x061af716 fsnotify_destroy_mark +EXPORT_SYMBOL_GPL vmlinux 0x061e66a5 blk_execute_rq_nowait +EXPORT_SYMBOL_GPL vmlinux 0x064378fa serdev_device_open EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry +EXPORT_SYMBOL_GPL vmlinux 0x06558eb5 nf_queue_entry_free EXPORT_SYMBOL_GPL vmlinux 0x065a7a23 atomic_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x065c2c4a pci_user_read_config_dword -EXPORT_SYMBOL_GPL vmlinux 0x065cd04f devres_add -EXPORT_SYMBOL_GPL vmlinux 0x06872c2d crypto_drop_spawn -EXPORT_SYMBOL_GPL vmlinux 0x068998ee perf_aux_output_skip -EXPORT_SYMBOL_GPL vmlinux 0x06937283 devres_remove -EXPORT_SYMBOL_GPL vmlinux 0x06bab57c __raw_v4_lookup +EXPORT_SYMBOL_GPL vmlinux 0x067aa24b crypto_mod_put EXPORT_SYMBOL_GPL vmlinux 0x06cca30b ring_buffer_record_off -EXPORT_SYMBOL_GPL vmlinux 0x06e857ab cgroup_get_from_path -EXPORT_SYMBOL_GPL vmlinux 0x06f5c735 blk_mq_unfreeze_queue -EXPORT_SYMBOL_GPL vmlinux 0x06f930e2 irq_domain_xlate_onecell -EXPORT_SYMBOL_GPL vmlinux 0x06fe0b31 pci_epc_mem_free_addr -EXPORT_SYMBOL_GPL vmlinux 0x0707776f switchdev_port_obj_del -EXPORT_SYMBOL_GPL vmlinux 0x071363e2 gpiod_set_config -EXPORT_SYMBOL_GPL vmlinux 0x0717949d devlink_reload_enable +EXPORT_SYMBOL_GPL vmlinux 0x06e84c55 device_link_add +EXPORT_SYMBOL_GPL vmlinux 0x06f4f564 PageHuge +EXPORT_SYMBOL_GPL vmlinux 0x06f5e99c crypto_register_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x06ff5fb8 irq_chip_mask_ack_parent +EXPORT_SYMBOL_GPL vmlinux 0x0703bad5 dev_set_name +EXPORT_SYMBOL_GPL vmlinux 0x0720c37f __netpoll_free EXPORT_SYMBOL_GPL vmlinux 0x07242d92 put_dax -EXPORT_SYMBOL_GPL vmlinux 0x072ec8dd crypto_stats_kpp_compute_shared_secret -EXPORT_SYMBOL_GPL vmlinux 0x073cde1b inet6_hash_connect -EXPORT_SYMBOL_GPL vmlinux 0x073db12e dm_put EXPORT_SYMBOL_GPL vmlinux 0x07483e13 cn_del_callback -EXPORT_SYMBOL_GPL vmlinux 0x074c6a03 __dev_forward_skb EXPORT_SYMBOL_GPL vmlinux 0x0757eede stack_trace_snprint -EXPORT_SYMBOL_GPL vmlinux 0x075b4e6b task_user_regset_view -EXPORT_SYMBOL_GPL vmlinux 0x0766315e check_move_unevictable_pages -EXPORT_SYMBOL_GPL vmlinux 0x077a703a __raw_v6_lookup -EXPORT_SYMBOL_GPL vmlinux 0x077c7142 bus_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x075d42fa anon_transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x0764edf3 fuse_dax_cancel_work +EXPORT_SYMBOL_GPL vmlinux 0x07707fa5 rdev_clear_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x077a9567 irq_domain_xlate_twocell +EXPORT_SYMBOL_GPL vmlinux 0x07934266 crypto_get_default_null_skcipher EXPORT_SYMBOL_GPL vmlinux 0x07aacc33 register_ftrace_function -EXPORT_SYMBOL_GPL vmlinux 0x07b21336 pci_hp_remove_module_link +EXPORT_SYMBOL_GPL vmlinux 0x07b08805 handle_fasteoi_nmi EXPORT_SYMBOL_GPL vmlinux 0x07b52e38 rtnl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x07b9be83 synth_event_trace_start EXPORT_SYMBOL_GPL vmlinux 0x07be6905 net_inc_egress_queue -EXPORT_SYMBOL_GPL vmlinux 0x07c5963b css_sched_sch_todo EXPORT_SYMBOL_GPL vmlinux 0x07cb7afb sfp_parse_port -EXPORT_SYMBOL_GPL vmlinux 0x07dcf45c trace_array_printk -EXPORT_SYMBOL_GPL vmlinux 0x07ed1d4b iomap_dio_iopoll -EXPORT_SYMBOL_GPL vmlinux 0x08058390 kick_process +EXPORT_SYMBOL_GPL vmlinux 0x07e41706 ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0x07e57a85 gmap_pmdp_idte_local EXPORT_SYMBOL_GPL vmlinux 0x08135613 dax_write_cache -EXPORT_SYMBOL_GPL vmlinux 0x082f75a7 serdev_device_set_flow_control -EXPORT_SYMBOL_GPL vmlinux 0x08315447 devm_device_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x08278aff kvm_get_dirty_log +EXPORT_SYMBOL_GPL vmlinux 0x08380b19 iommu_sva_get_pasid +EXPORT_SYMBOL_GPL vmlinux 0x083881e4 component_add EXPORT_SYMBOL_GPL vmlinux 0x08436119 klp_shadow_alloc -EXPORT_SYMBOL_GPL vmlinux 0x08836092 scsi_dh_attach -EXPORT_SYMBOL_GPL vmlinux 0x08874418 iptunnel_xmit -EXPORT_SYMBOL_GPL vmlinux 0x0895e35d ping_rcv -EXPORT_SYMBOL_GPL vmlinux 0x08a44f28 devm_bitmap_zalloc -EXPORT_SYMBOL_GPL vmlinux 0x08ab5383 devlink_dpipe_table_counter_enabled -EXPORT_SYMBOL_GPL vmlinux 0x08ada31f cookie_tcp_reqsk_alloc -EXPORT_SYMBOL_GPL vmlinux 0x08b03198 crypto_skcipher_setkey +EXPORT_SYMBOL_GPL vmlinux 0x0874a30c proc_create_net_single +EXPORT_SYMBOL_GPL vmlinux 0x08753f29 get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0x087be238 mmu_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x08835346 disk_uevent +EXPORT_SYMBOL_GPL vmlinux 0x0885201e fscrypt_set_bio_crypt_ctx_bh +EXPORT_SYMBOL_GPL vmlinux 0x08864669 debugfs_create_file_size +EXPORT_SYMBOL_GPL vmlinux 0x08a2e5c3 blkcg_root +EXPORT_SYMBOL_GPL vmlinux 0x08ade30d do_take_over_console EXPORT_SYMBOL_GPL vmlinux 0x08b2e9aa hrtimer_try_to_cancel EXPORT_SYMBOL_GPL vmlinux 0x08c489ce is_hash_blacklisted EXPORT_SYMBOL_GPL vmlinux 0x08c78cf7 offline_and_remove_memory -EXPORT_SYMBOL_GPL vmlinux 0x08cbb9d3 vp_modern_remove -EXPORT_SYMBOL_GPL vmlinux 0x08f4b65a espintcp_queue_out +EXPORT_SYMBOL_GPL vmlinux 0x08d623ce kvm_vcpu_unmap +EXPORT_SYMBOL_GPL vmlinux 0x08e388a8 bpf_prog_inc_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x08f60e12 devm_get_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x08f91b28 bus_register +EXPORT_SYMBOL_GPL vmlinux 0x09063130 bus_create_file +EXPORT_SYMBOL_GPL vmlinux 0x09071d74 __blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0x09108dbc apply_to_existing_page_range EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies -EXPORT_SYMBOL_GPL vmlinux 0x092b1cdd dst_cache_get -EXPORT_SYMBOL_GPL vmlinux 0x094f47ec blkdev_report_zones -EXPORT_SYMBOL_GPL vmlinux 0x09849fb0 tpm_send +EXPORT_SYMBOL_GPL vmlinux 0x093ca932 inet6_csk_xmit +EXPORT_SYMBOL_GPL vmlinux 0x0967b666 crypto_register_aeads +EXPORT_SYMBOL_GPL vmlinux 0x09743651 gpiod_export +EXPORT_SYMBOL_GPL vmlinux 0x09839e2a strp_unpause EXPORT_SYMBOL_GPL vmlinux 0x09b53e14 interval_tree_remove -EXPORT_SYMBOL_GPL vmlinux 0x09bd14ae klp_enable_patch -EXPORT_SYMBOL_GPL vmlinux 0x0a1f9581 kvm_init -EXPORT_SYMBOL_GPL vmlinux 0x0a276925 device_get_next_child_node -EXPORT_SYMBOL_GPL vmlinux 0x0a312f27 kvm_get_running_vcpu -EXPORT_SYMBOL_GPL vmlinux 0x0a3e97dd gmap_pmdp_idte_global -EXPORT_SYMBOL_GPL vmlinux 0x0a43ba3b mark_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0x09d48e73 unregister_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0x09e89598 pci_find_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0x0a06ced7 filemap_range_needs_writeback EXPORT_SYMBOL_GPL vmlinux 0x0a463293 __tracepoint_error_report_end -EXPORT_SYMBOL_GPL vmlinux 0x0a467abc __pci_hp_register -EXPORT_SYMBOL_GPL vmlinux 0x0a535a4f virtio_max_dma_size +EXPORT_SYMBOL_GPL vmlinux 0x0a4a03c3 fscrypt_prepare_symlink EXPORT_SYMBOL_GPL vmlinux 0x0a6c4041 cn_netlink_send +EXPORT_SYMBOL_GPL vmlinux 0x0a71b5fd pci_user_write_config_word EXPORT_SYMBOL_GPL vmlinux 0x0a7ceb30 __tracepoint_non_standard_event -EXPORT_SYMBOL_GPL vmlinux 0x0a7d24a0 skcipher_alloc_instance_simple -EXPORT_SYMBOL_GPL vmlinux 0x0a8d4a1f sk_psock_msg_verdict -EXPORT_SYMBOL_GPL vmlinux 0x0ab67898 sched_trace_rq_avg_rt -EXPORT_SYMBOL_GPL vmlinux 0x0acf234c ipv6_recv_error -EXPORT_SYMBOL_GPL vmlinux 0x0afa01be ipv6_opt_accepted +EXPORT_SYMBOL_GPL vmlinux 0x0a9e90b7 pid_vnr +EXPORT_SYMBOL_GPL vmlinux 0x0aa90b73 devlink_resource_size_get +EXPORT_SYMBOL_GPL vmlinux 0x0aadbf19 __vfs_removexattr_noperm +EXPORT_SYMBOL_GPL vmlinux 0x0ab9f59c tpm1_do_selftest +EXPORT_SYMBOL_GPL vmlinux 0x0ad8fbc3 cdrom_read_tocentry EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct -EXPORT_SYMBOL_GPL vmlinux 0x0b0885ae xfrm_output +EXPORT_SYMBOL_GPL vmlinux 0x0b0d46f0 devm_gpiochip_add_data_with_key EXPORT_SYMBOL_GPL vmlinux 0x0b11a171 klist_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0x0b11bb4d bpf_prog_alloc -EXPORT_SYMBOL_GPL vmlinux 0x0b12f24a preempt_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x0b1c63f6 crypto_destroy_tfm -EXPORT_SYMBOL_GPL vmlinux 0x0b273341 gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0x0b154e28 fat_alloc_new_dir +EXPORT_SYMBOL_GPL vmlinux 0x0b22001b skb_zerocopy_iter_stream +EXPORT_SYMBOL_GPL vmlinux 0x0b29780c dm_post_suspending +EXPORT_SYMBOL_GPL vmlinux 0x0b2d0181 bpf_sk_storage_diag_put EXPORT_SYMBOL_GPL vmlinux 0x0b2db2d5 remove_resource -EXPORT_SYMBOL_GPL vmlinux 0x0b43093d crypto_alloc_ahash -EXPORT_SYMBOL_GPL vmlinux 0x0b8ecc36 __rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0b4026ef devlink_dpipe_headers_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0b461106 gpiochip_line_is_open_drain +EXPORT_SYMBOL_GPL vmlinux 0x0b4dcdb9 device_get_match_data +EXPORT_SYMBOL_GPL vmlinux 0x0b570355 devlink_dpipe_table_register +EXPORT_SYMBOL_GPL vmlinux 0x0b6c7549 attribute_container_classdev_to_container +EXPORT_SYMBOL_GPL vmlinux 0x0b8895f5 gfn_to_page_many_atomic +EXPORT_SYMBOL_GPL vmlinux 0x0b9a43a4 pci_aer_clear_nonfatal_status +EXPORT_SYMBOL_GPL vmlinux 0x0ba24091 crypto_enqueue_request +EXPORT_SYMBOL_GPL vmlinux 0x0bb1bdec gpiod_unexport EXPORT_SYMBOL_GPL vmlinux 0x0bbdc9b2 remove_memory +EXPORT_SYMBOL_GPL vmlinux 0x0bc46930 blk_lld_busy EXPORT_SYMBOL_GPL vmlinux 0x0bc5481b clock_comparator_max +EXPORT_SYMBOL_GPL vmlinux 0x0bc613b2 pci_enable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x0bdebd0e __class_register +EXPORT_SYMBOL_GPL vmlinux 0x0be69989 register_net_sysctl EXPORT_SYMBOL_GPL vmlinux 0x0bf32478 __SCK__tp_func_pelt_rt_tp -EXPORT_SYMBOL_GPL vmlinux 0x0bf9c717 irq_domain_xlate_twocell EXPORT_SYMBOL_GPL vmlinux 0x0bfa3a19 rcu_idle_exit -EXPORT_SYMBOL_GPL vmlinux 0x0c02e200 gmap_put -EXPORT_SYMBOL_GPL vmlinux 0x0c0826e4 pci_find_next_capability +EXPORT_SYMBOL_GPL vmlinux 0x0bfa84ad __gmap_translate +EXPORT_SYMBOL_GPL vmlinux 0x0c0fc9ba xfrm_output_resume +EXPORT_SYMBOL_GPL vmlinux 0x0c169f84 dst_cache_get +EXPORT_SYMBOL_GPL vmlinux 0x0c1f109b cio_start_key +EXPORT_SYMBOL_GPL vmlinux 0x0c2681b2 pci_get_dsn EXPORT_SYMBOL_GPL vmlinux 0x0c26bdd5 klist_next +EXPORT_SYMBOL_GPL vmlinux 0x0c281fae kvm_gfn_to_hva_cache_init EXPORT_SYMBOL_GPL vmlinux 0x0c2c5802 work_busy -EXPORT_SYMBOL_GPL vmlinux 0x0c738ee1 iommu_unmap +EXPORT_SYMBOL_GPL vmlinux 0x0c4066a9 vcpu_put +EXPORT_SYMBOL_GPL vmlinux 0x0c482682 platform_get_irq_optional +EXPORT_SYMBOL_GPL vmlinux 0x0c5d2fee kthread_flush_worker +EXPORT_SYMBOL_GPL vmlinux 0x0c79be80 fat_time_unix2fat EXPORT_SYMBOL_GPL vmlinux 0x0c88c1c3 pci_vpd_find_id_string +EXPORT_SYMBOL_GPL vmlinux 0x0c9b59f4 vp_modern_get_status EXPORT_SYMBOL_GPL vmlinux 0x0ca09c9e sbitmap_finish_wait -EXPORT_SYMBOL_GPL vmlinux 0x0ca8bad5 fwnode_property_read_u16_array -EXPORT_SYMBOL_GPL vmlinux 0x0cb0efc0 __traceiter_pelt_cfs_tp -EXPORT_SYMBOL_GPL vmlinux 0x0cb52e58 pci_user_read_config_byte -EXPORT_SYMBOL_GPL vmlinux 0x0cd7fa1a inet_unhash -EXPORT_SYMBOL_GPL vmlinux 0x0ce9415f sysfs_chmod_file -EXPORT_SYMBOL_GPL vmlinux 0x0cf6d7c7 xfrm_dev_resume -EXPORT_SYMBOL_GPL vmlinux 0x0cf8d797 pcie_port_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x0d04082a dst_cache_set_ip4 -EXPORT_SYMBOL_GPL vmlinux 0x0d056ac9 skb_segment_list +EXPORT_SYMBOL_GPL vmlinux 0x0ca31126 task_active_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x0cb8cf21 screen_pos +EXPORT_SYMBOL_GPL vmlinux 0x0ccc48c7 crypto_stats_skcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x0d055a5d crypto_aead_setauthsize +EXPORT_SYMBOL_GPL vmlinux 0x0d0d4f71 fsstack_copy_inode_size +EXPORT_SYMBOL_GPL vmlinux 0x0d2bb854 xfrm_dev_resume EXPORT_SYMBOL_GPL vmlinux 0x0d459213 work_on_cpu_safe EXPORT_SYMBOL_GPL vmlinux 0x0d4961de nf_log_buf_open -EXPORT_SYMBOL_GPL vmlinux 0x0d5ae8bf platform_get_resource -EXPORT_SYMBOL_GPL vmlinux 0x0d6b7ffd devlink_sb_register -EXPORT_SYMBOL_GPL vmlinux 0x0d6cb4ca strp_unpause -EXPORT_SYMBOL_GPL vmlinux 0x0d803ebf inet6_lookup_listener -EXPORT_SYMBOL_GPL vmlinux 0x0d83f5af crypto_unregister_ahash -EXPORT_SYMBOL_GPL vmlinux 0x0da7f365 tty_put_char -EXPORT_SYMBOL_GPL vmlinux 0x0dbbe0fb pci_generic_config_write -EXPORT_SYMBOL_GPL vmlinux 0x0dcb3517 devm_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x0d50fb5d rtnl_af_register +EXPORT_SYMBOL_GPL vmlinux 0x0dcdba66 iommu_uapi_sva_unbind_gpasid +EXPORT_SYMBOL_GPL vmlinux 0x0dd8f8dc serdev_device_add EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order -EXPORT_SYMBOL_GPL vmlinux 0x0ddf628c gpiod_unexport -EXPORT_SYMBOL_GPL vmlinux 0x0e137e07 gpiod_set_debounce -EXPORT_SYMBOL_GPL vmlinux 0x0e1447cd perf_aux_output_flag -EXPORT_SYMBOL_GPL vmlinux 0x0e29ad15 __blkg_prfill_u64 -EXPORT_SYMBOL_GPL vmlinux 0x0e3d4b19 pci_host_probe +EXPORT_SYMBOL_GPL vmlinux 0x0ddec3e3 pci_generic_config_write +EXPORT_SYMBOL_GPL vmlinux 0x0df705e0 pci_set_pcie_reset_state +EXPORT_SYMBOL_GPL vmlinux 0x0df7239e handle_irq_desc +EXPORT_SYMBOL_GPL vmlinux 0x0e0bdae4 blockdev_superblock +EXPORT_SYMBOL_GPL vmlinux 0x0e0fe1b2 umd_cleanup_helper +EXPORT_SYMBOL_GPL vmlinux 0x0e149a20 pci_sriov_set_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0x0e1f534e devm_fwnode_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x0e2a4b71 bpf_trace_run3 +EXPORT_SYMBOL_GPL vmlinux 0x0e43c590 is_current_mnt_ns EXPORT_SYMBOL_GPL vmlinux 0x0e541f71 __alloc_percpu_gfp +EXPORT_SYMBOL_GPL vmlinux 0x0e66b977 uprobe_register EXPORT_SYMBOL_GPL vmlinux 0x0e6b79af static_key_disable_cpuslocked -EXPORT_SYMBOL_GPL vmlinux 0x0e8bd86f vcpu_load +EXPORT_SYMBOL_GPL vmlinux 0x0e78ca58 fscrypt_show_test_dummy_encryption +EXPORT_SYMBOL_GPL vmlinux 0x0e8d09de pci_msi_unmask_irq +EXPORT_SYMBOL_GPL vmlinux 0x0ea77e84 pci_disable_rom +EXPORT_SYMBOL_GPL vmlinux 0x0eb683bf iomap_readahead +EXPORT_SYMBOL_GPL vmlinux 0x0ed79521 perf_event_enable +EXPORT_SYMBOL_GPL vmlinux 0x0ed98886 devm_krealloc +EXPORT_SYMBOL_GPL vmlinux 0x0eeda4f9 class_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x0ef0327a crypto_alloc_kpp +EXPORT_SYMBOL_GPL vmlinux 0x0f124ecf iommu_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0f156842 __list_lru_init EXPORT_SYMBOL_GPL vmlinux 0x0f180070 ring_buffer_free_read_page -EXPORT_SYMBOL_GPL vmlinux 0x0f1b5098 umd_load_blob +EXPORT_SYMBOL_GPL vmlinux 0x0f2c575f iommu_fwspec_init EXPORT_SYMBOL_GPL vmlinux 0x0f3b8882 rht_bucket_nested_insert -EXPORT_SYMBOL_GPL vmlinux 0x0f9ac8b3 blk_mq_quiesce_queue -EXPORT_SYMBOL_GPL vmlinux 0x0fb1c062 dma_max_mapping_size -EXPORT_SYMBOL_GPL vmlinux 0x0fc4f446 gpiochip_line_is_persistent +EXPORT_SYMBOL_GPL vmlinux 0x0f401763 debugfs_create_file_unsafe +EXPORT_SYMBOL_GPL vmlinux 0x0f50787c pci_domain_nr +EXPORT_SYMBOL_GPL vmlinux 0x0f53c0e1 dw_pcie_read_dbi +EXPORT_SYMBOL_GPL vmlinux 0x0f684021 dma_vmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x0f98515b __percpu_init_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x0f9a99f6 devlink_sb_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0fc7b89d sock_diag_save_cookie EXPORT_SYMBOL_GPL vmlinux 0x0fd4610e kmem_dump_obj -EXPORT_SYMBOL_GPL vmlinux 0x0fea6ea2 dev_get_tstats64 -EXPORT_SYMBOL_GPL vmlinux 0x0ff0ce6a gpiochip_irq_domain_deactivate +EXPORT_SYMBOL_GPL vmlinux 0x0ffe4d92 ip6_route_input_lookup +EXPORT_SYMBOL_GPL vmlinux 0x10036638 dma_buf_vunmap EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on -EXPORT_SYMBOL_GPL vmlinux 0x10243c28 __traceiter_tcp_send_reset -EXPORT_SYMBOL_GPL vmlinux 0x103d8cd6 gmap_pmdp_invalidate -EXPORT_SYMBOL_GPL vmlinux 0x10595445 sock_diag_unregister_inet_compat -EXPORT_SYMBOL_GPL vmlinux 0x105f93a0 acct_bioset_init -EXPORT_SYMBOL_GPL vmlinux 0x108073dc skcipher_walk_virt +EXPORT_SYMBOL_GPL vmlinux 0x102a3629 irq_chip_eoi_parent EXPORT_SYMBOL_GPL vmlinux 0x108e77f5 parse_OID -EXPORT_SYMBOL_GPL vmlinux 0x1097e2d1 __platform_register_drivers -EXPORT_SYMBOL_GPL vmlinux 0x10d2fb89 __blk_mq_debugfs_rq_show -EXPORT_SYMBOL_GPL vmlinux 0x10f082b2 tty_ldisc_ref_wait -EXPORT_SYMBOL_GPL vmlinux 0x10f7ad72 irq_chip_eoi_parent -EXPORT_SYMBOL_GPL vmlinux 0x111a99d9 iommu_aux_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x10bd4beb devm_create_dev_dax +EXPORT_SYMBOL_GPL vmlinux 0x10d02b73 blkg_lookup_slowpath +EXPORT_SYMBOL_GPL vmlinux 0x10f8544a relay_file_operations +EXPORT_SYMBOL_GPL vmlinux 0x1103d341 device_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0x1108e82f cio_commit_config EXPORT_SYMBOL_GPL vmlinux 0x111f2c25 sprint_OID -EXPORT_SYMBOL_GPL vmlinux 0x11230709 tty_set_termios -EXPORT_SYMBOL_GPL vmlinux 0x113cc76f pci_find_ht_capability -EXPORT_SYMBOL_GPL vmlinux 0x11567b5d vp_modern_get_queue_enable +EXPORT_SYMBOL_GPL vmlinux 0x112b25fb irq_domain_translate_onecell +EXPORT_SYMBOL_GPL vmlinux 0x116582ec __inet_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x116650bb sysfs_break_active_protection +EXPORT_SYMBOL_GPL vmlinux 0x119805ad __gmap_zap +EXPORT_SYMBOL_GPL vmlinux 0x119fe718 bpf_prog_add EXPORT_SYMBOL_GPL vmlinux 0x11a2e0ac crypto_dh_key_len -EXPORT_SYMBOL_GPL vmlinux 0x11c3a25e devlink_param_value_changed +EXPORT_SYMBOL_GPL vmlinux 0x11a3a951 lwtunnel_output +EXPORT_SYMBOL_GPL vmlinux 0x11d4edcd virtio_check_driver_offered_feature EXPORT_SYMBOL_GPL vmlinux 0x11df0e75 devlink_fmsg_binary_pair_nest_start -EXPORT_SYMBOL_GPL vmlinux 0x11dfdeaf scsi_host_block -EXPORT_SYMBOL_GPL vmlinux 0x121a23ca transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1212b63a iomap_finish_ioends +EXPORT_SYMBOL_GPL vmlinux 0x121c33ab fscrypt_ioctl_get_key_status EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier -EXPORT_SYMBOL_GPL vmlinux 0x1227da78 trace_event_buffer_reserve -EXPORT_SYMBOL_GPL vmlinux 0x1232f734 gpiod_set_transitory +EXPORT_SYMBOL_GPL vmlinux 0x122af0b0 dma_buf_end_cpu_access EXPORT_SYMBOL_GPL vmlinux 0x1234e483 get_cpu_iowait_time_us -EXPORT_SYMBOL_GPL vmlinux 0x124425cf component_unbind_all +EXPORT_SYMBOL_GPL vmlinux 0x1240143e __dev_change_net_namespace EXPORT_SYMBOL_GPL vmlinux 0x12537dae __tracepoint_napi_poll -EXPORT_SYMBOL_GPL vmlinux 0x126313ef vp_modern_config_vector -EXPORT_SYMBOL_GPL vmlinux 0x1267216b crypto_ahash_digest -EXPORT_SYMBOL_GPL vmlinux 0x1268d718 crypto_grab_spawn -EXPORT_SYMBOL_GPL vmlinux 0x12804ed9 blk_mq_flush_busy_ctxs -EXPORT_SYMBOL_GPL vmlinux 0x129e789a nfs42_ssc_register -EXPORT_SYMBOL_GPL vmlinux 0x12bae25b blk_execute_rq_nowait +EXPORT_SYMBOL_GPL vmlinux 0x12b21dad devm_device_add_groups +EXPORT_SYMBOL_GPL vmlinux 0x12b96a5b gmap_shadow_r3t EXPORT_SYMBOL_GPL vmlinux 0x12cdbd51 verify_pkcs7_signature -EXPORT_SYMBOL_GPL vmlinux 0x12e81562 devlink_alloc_ns +EXPORT_SYMBOL_GPL vmlinux 0x12dec1da crypto_grab_ahash EXPORT_SYMBOL_GPL vmlinux 0x12ee1173 memory_group_unregister -EXPORT_SYMBOL_GPL vmlinux 0x130d156d synth_event_add_val -EXPORT_SYMBOL_GPL vmlinux 0x13195284 is_transparent_hugepage +EXPORT_SYMBOL_GPL vmlinux 0x12fc3562 pci_generic_config_read +EXPORT_SYMBOL_GPL vmlinux 0x131add66 fwnode_property_read_u8_array EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq -EXPORT_SYMBOL_GPL vmlinux 0x132440f5 ethnl_cable_test_fault_length EXPORT_SYMBOL_GPL vmlinux 0x133969d7 __trace_printk -EXPORT_SYMBOL_GPL vmlinux 0x134b79c6 iommu_fwspec_free -EXPORT_SYMBOL_GPL vmlinux 0x13638ed0 __rt_mutex_init +EXPORT_SYMBOL_GPL vmlinux 0x1342894d gmap_make_secure EXPORT_SYMBOL_GPL vmlinux 0x13640660 get_cached_msi_msg -EXPORT_SYMBOL_GPL vmlinux 0x13804e27 unregister_trace_event -EXPORT_SYMBOL_GPL vmlinux 0x13876e3d register_pernet_subsys -EXPORT_SYMBOL_GPL vmlinux 0x13898a64 devm_bitmap_alloc -EXPORT_SYMBOL_GPL vmlinux 0x138b2501 crypto_req_done EXPORT_SYMBOL_GPL vmlinux 0x138e0957 dax_write_cache_enabled -EXPORT_SYMBOL_GPL vmlinux 0x13abe183 tracing_cond_snapshot_data -EXPORT_SYMBOL_GPL vmlinux 0x13ddddb1 clockevents_config_and_register +EXPORT_SYMBOL_GPL vmlinux 0x13a01960 devlink_port_type_eth_set +EXPORT_SYMBOL_GPL vmlinux 0x13d55fd8 get_task_pid +EXPORT_SYMBOL_GPL vmlinux 0x13ddaf7f crypto_hash_walk_done EXPORT_SYMBOL_GPL vmlinux 0x13e7fd83 __wake_up_pollfree EXPORT_SYMBOL_GPL vmlinux 0x13ed8784 sdev_evt_alloc +EXPORT_SYMBOL_GPL vmlinux 0x13f70721 mmu_notifier_put EXPORT_SYMBOL_GPL vmlinux 0x141f38bf ktime_get_raw_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0x14271c4f sk_msg_return_zero -EXPORT_SYMBOL_GPL vmlinux 0x14338fa2 vp_modern_generation -EXPORT_SYMBOL_GPL vmlinux 0x1433d3b1 pci_slots_kset -EXPORT_SYMBOL_GPL vmlinux 0x1437b1a2 udp4_hwcsum +EXPORT_SYMBOL_GPL vmlinux 0x1422cc24 alloc_skb_for_msg +EXPORT_SYMBOL_GPL vmlinux 0x143e9a46 pci_create_slot +EXPORT_SYMBOL_GPL vmlinux 0x14522c5d fat_sync_inode EXPORT_SYMBOL_GPL vmlinux 0x146cc88f bpf_master_redirect_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x147a703a platform_device_register_full EXPORT_SYMBOL_GPL vmlinux 0x148031f4 unregister_kretprobe -EXPORT_SYMBOL_GPL vmlinux 0x1484ad15 skb_send_sock_locked -EXPORT_SYMBOL_GPL vmlinux 0x14887761 dax_iomap_rw -EXPORT_SYMBOL_GPL vmlinux 0x14a323b6 fscrypt_ioctl_get_nonce -EXPORT_SYMBOL_GPL vmlinux 0x14ac36b1 __kthread_init_worker -EXPORT_SYMBOL_GPL vmlinux 0x14c3221b simple_attr_release -EXPORT_SYMBOL_GPL vmlinux 0x14c44b8d devlink_param_unpublish -EXPORT_SYMBOL_GPL vmlinux 0x14cf8cc9 inet_send_prepare -EXPORT_SYMBOL_GPL vmlinux 0x15019f61 gmap_create +EXPORT_SYMBOL_GPL vmlinux 0x14b12158 get_device_system_crosststamp +EXPORT_SYMBOL_GPL vmlinux 0x14de76e0 cgroup_path_ns +EXPORT_SYMBOL_GPL vmlinux 0x14e69846 set_selection_kernel +EXPORT_SYMBOL_GPL vmlinux 0x14e7ddec posix_acl_default_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0x1503c75b page_cache_async_ra +EXPORT_SYMBOL_GPL vmlinux 0x151dcfa4 devm_kstrdup_const EXPORT_SYMBOL_GPL vmlinux 0x153b60a6 klist_del +EXPORT_SYMBOL_GPL vmlinux 0x153bd869 devlink_dpipe_entry_ctx_append EXPORT_SYMBOL_GPL vmlinux 0x15510a89 devlink_fmsg_binary_put -EXPORT_SYMBOL_GPL vmlinux 0x15657885 crypto_stats_decompress +EXPORT_SYMBOL_GPL vmlinux 0x156eb9a1 gpiod_put EXPORT_SYMBOL_GPL vmlinux 0x157bc422 s390_enable_skey -EXPORT_SYMBOL_GPL vmlinux 0x1587ed2a xdp_rxq_info_unused -EXPORT_SYMBOL_GPL vmlinux 0x15ab0251 xfrm_audit_state_replay +EXPORT_SYMBOL_GPL vmlinux 0x15802858 udp4_hwcsum +EXPORT_SYMBOL_GPL vmlinux 0x158f8316 devlink_port_param_driverinit_value_get +EXPORT_SYMBOL_GPL vmlinux 0x159d67c8 gmap_create +EXPORT_SYMBOL_GPL vmlinux 0x15ade1cc filter_irq_stacks +EXPORT_SYMBOL_GPL vmlinux 0x15aecfc3 proc_get_parent_data +EXPORT_SYMBOL_GPL vmlinux 0x15bb3a0c mnt_want_write_file EXPORT_SYMBOL_GPL vmlinux 0x15c60a71 __tracepoint_pelt_dl_tp -EXPORT_SYMBOL_GPL vmlinux 0x15d5fc30 _proc_mkdir -EXPORT_SYMBOL_GPL vmlinux 0x15f10df4 sk_free_unlock_clone -EXPORT_SYMBOL_GPL vmlinux 0x1615699b bio_end_io_acct_remapped +EXPORT_SYMBOL_GPL vmlinux 0x15e51fed pci_stop_and_remove_bus_device_locked +EXPORT_SYMBOL_GPL vmlinux 0x15ee200f bpf_trace_run6 +EXPORT_SYMBOL_GPL vmlinux 0x160d717e skb_mpls_push +EXPORT_SYMBOL_GPL vmlinux 0x160eb3e5 mptcp_pm_get_subflows_max +EXPORT_SYMBOL_GPL vmlinux 0x164100fd bus_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x1649af96 blkcg_root_css EXPORT_SYMBOL_GPL vmlinux 0x1678f30c crypto_alg_sem -EXPORT_SYMBOL_GPL vmlinux 0x1685b55e trace_array_set_clr_event EXPORT_SYMBOL_GPL vmlinux 0x1687ec20 tty_get_frame_size +EXPORT_SYMBOL_GPL vmlinux 0x1690ac14 synth_event_gen_cmd_array_start EXPORT_SYMBOL_GPL vmlinux 0x169482bf gfn_to_pfn_memslot_atomic +EXPORT_SYMBOL_GPL vmlinux 0x1699f45f dw_pcie_write_dbi +EXPORT_SYMBOL_GPL vmlinux 0x16a8f2a6 list_lru_walk_one +EXPORT_SYMBOL_GPL vmlinux 0x16aa8296 shmem_file_setup_with_mnt EXPORT_SYMBOL_GPL vmlinux 0x16b69bc8 zpci_store -EXPORT_SYMBOL_GPL vmlinux 0x16b7e960 crypto_stats_skcipher_encrypt EXPORT_SYMBOL_GPL vmlinux 0x16da1f88 devlink_fmsg_u32_put -EXPORT_SYMBOL_GPL vmlinux 0x16e45164 inode_congested -EXPORT_SYMBOL_GPL vmlinux 0x16fda79d virtqueue_enable_cb -EXPORT_SYMBOL_GPL vmlinux 0x16fee8d7 crypto_unregister_scomps +EXPORT_SYMBOL_GPL vmlinux 0x16fc8b56 fuse_dev_alloc_install EXPORT_SYMBOL_GPL vmlinux 0x170cc36c put_timespec64 +EXPORT_SYMBOL_GPL vmlinux 0x17139d38 fwnode_graph_get_remote_node EXPORT_SYMBOL_GPL vmlinux 0x17149987 trace_print_bitmask_seq -EXPORT_SYMBOL_GPL vmlinux 0x1745c310 bio_associate_blkg +EXPORT_SYMBOL_GPL vmlinux 0x171a2dc8 security_kernel_read_file +EXPORT_SYMBOL_GPL vmlinux 0x173ef827 open_related_ns EXPORT_SYMBOL_GPL vmlinux 0x17480d56 x509_free_certificate EXPORT_SYMBOL_GPL vmlinux 0x174c6274 ring_buffer_time_stamp -EXPORT_SYMBOL_GPL vmlinux 0x174f512d sysfs_change_owner -EXPORT_SYMBOL_GPL vmlinux 0x175e0fea wb_writeout_inc -EXPORT_SYMBOL_GPL vmlinux 0x175fdef6 account_locked_vm +EXPORT_SYMBOL_GPL vmlinux 0x17559246 ipv6_recv_error EXPORT_SYMBOL_GPL vmlinux 0x176031a7 devlink_fmsg_string_put -EXPORT_SYMBOL_GPL vmlinux 0x17683dc5 dequeue_signal -EXPORT_SYMBOL_GPL vmlinux 0x176f9453 iommu_sva_unbind_device -EXPORT_SYMBOL_GPL vmlinux 0x17930f44 crypto_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x178a8318 pci_intx EXPORT_SYMBOL_GPL vmlinux 0x17a0e6ea kobject_rename -EXPORT_SYMBOL_GPL vmlinux 0x17a4d89f pci_epf_unbind -EXPORT_SYMBOL_GPL vmlinux 0x17a67a1b pci_enable_sriov -EXPORT_SYMBOL_GPL vmlinux 0x17d8c37c kvm_make_all_cpus_request +EXPORT_SYMBOL_GPL vmlinux 0x17b1b2ef bpf_offload_dev_netdev_register +EXPORT_SYMBOL_GPL vmlinux 0x17ba5814 gpiochip_irqchip_add_domain +EXPORT_SYMBOL_GPL vmlinux 0x17c31f7c driver_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x17cc6a95 strp_process +EXPORT_SYMBOL_GPL vmlinux 0x17d0b9f8 skb_clone_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x17d54d78 iommu_dev_disable_feature +EXPORT_SYMBOL_GPL vmlinux 0x17de97d3 input_ff_erase +EXPORT_SYMBOL_GPL vmlinux 0x17fb1d5b sysfs_remove_group EXPORT_SYMBOL_GPL vmlinux 0x17fe080c kernel_read_file_from_fd +EXPORT_SYMBOL_GPL vmlinux 0x18002290 skb_consume_udp EXPORT_SYMBOL_GPL vmlinux 0x18008c59 ring_buffer_resize -EXPORT_SYMBOL_GPL vmlinux 0x180567b8 pci_disable_ats -EXPORT_SYMBOL_GPL vmlinux 0x18170d6c inet_ctl_sock_create -EXPORT_SYMBOL_GPL vmlinux 0x181e086f dev_queue_xmit_nit -EXPORT_SYMBOL_GPL vmlinux 0x1822f675 virtqueue_kick -EXPORT_SYMBOL_GPL vmlinux 0x18264a78 nf_queue_entry_free +EXPORT_SYMBOL_GPL vmlinux 0x1811719b file_ra_state_init EXPORT_SYMBOL_GPL vmlinux 0x183a1e4d xas_set_mark -EXPORT_SYMBOL_GPL vmlinux 0x183fdf55 ip6_datagram_connect -EXPORT_SYMBOL_GPL vmlinux 0x185fea98 devlink_port_param_value_changed -EXPORT_SYMBOL_GPL vmlinux 0x1878d5ed serdev_device_remove -EXPORT_SYMBOL_GPL vmlinux 0x18891047 gmap_translate -EXPORT_SYMBOL_GPL vmlinux 0x188a2ac1 fsnotify_alloc_group +EXPORT_SYMBOL_GPL vmlinux 0x185240fc __blk_req_zone_write_unlock +EXPORT_SYMBOL_GPL vmlinux 0x1852afa8 ip_valid_fib_dump_req +EXPORT_SYMBOL_GPL vmlinux 0x186e3609 skb_segment +EXPORT_SYMBOL_GPL vmlinux 0x188948d0 dm_noflush_suspending +EXPORT_SYMBOL_GPL vmlinux 0x18a604de pci_walk_bus EXPORT_SYMBOL_GPL vmlinux 0x18b27235 kobject_move +EXPORT_SYMBOL_GPL vmlinux 0x18c00b4b dm_get_queue_limits +EXPORT_SYMBOL_GPL vmlinux 0x18d0ca36 iommu_aux_get_pasid EXPORT_SYMBOL_GPL vmlinux 0x18fb2caf cpus_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0x190c7958 blk_rq_unprep_clone -EXPORT_SYMBOL_GPL vmlinux 0x1910347f debugfs_attr_write -EXPORT_SYMBOL_GPL vmlinux 0x1937d281 pci_ioremap_bar -EXPORT_SYMBOL_GPL vmlinux 0x193afce3 irq_domain_translate_onecell +EXPORT_SYMBOL_GPL vmlinux 0x19241f12 security_path_chmod EXPORT_SYMBOL_GPL vmlinux 0x193dfdf6 klp_get_prev_state -EXPORT_SYMBOL_GPL vmlinux 0x1940fd1d blk_mq_pci_map_queues -EXPORT_SYMBOL_GPL vmlinux 0x1943433e devm_krealloc -EXPORT_SYMBOL_GPL vmlinux 0x194a29b0 elv_rqhash_del -EXPORT_SYMBOL_GPL vmlinux 0x194e6187 pci_epf_remove_vepf -EXPORT_SYMBOL_GPL vmlinux 0x1973def4 inet6_destroy_sock +EXPORT_SYMBOL_GPL vmlinux 0x1963ec55 sched_trace_rq_nr_running +EXPORT_SYMBOL_GPL vmlinux 0x197bce37 _proc_mkdir EXPORT_SYMBOL_GPL vmlinux 0x19821689 __tracepoint_fdb_delete -EXPORT_SYMBOL_GPL vmlinux 0x19af36d4 iommu_map -EXPORT_SYMBOL_GPL vmlinux 0x19bbac24 vfs_test_lock -EXPORT_SYMBOL_GPL vmlinux 0x19c23ccb gpiod_direction_input -EXPORT_SYMBOL_GPL vmlinux 0x19ca6711 crypto_aead_setauthsize -EXPORT_SYMBOL_GPL vmlinux 0x19cac4b1 ndo_dflt_bridge_getlink -EXPORT_SYMBOL_GPL vmlinux 0x19f65343 xfrm_audit_state_replay_overflow -EXPORT_SYMBOL_GPL vmlinux 0x19f93d69 get_current_tty +EXPORT_SYMBOL_GPL vmlinux 0x19968c85 scsi_host_block +EXPORT_SYMBOL_GPL vmlinux 0x19bf54ef device_property_present +EXPORT_SYMBOL_GPL vmlinux 0x19c6d742 ima_file_hash +EXPORT_SYMBOL_GPL vmlinux 0x19c80b43 get_user_pages_fast_only +EXPORT_SYMBOL_GPL vmlinux 0x19cf78e8 blk_mq_virtio_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x19dc0a5d gpiochip_generic_free +EXPORT_SYMBOL_GPL vmlinux 0x19f14fb0 class_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x19fa0cfe sysfs_unbreak_active_protection EXPORT_SYMBOL_GPL vmlinux 0x1a10c32b crypto_ft_tab -EXPORT_SYMBOL_GPL vmlinux 0x1a62b0e3 kernfs_notify +EXPORT_SYMBOL_GPL vmlinux 0x1a15aad5 l3mdev_master_upper_ifindex_by_index_rcu +EXPORT_SYMBOL_GPL vmlinux 0x1a27c2cc nfs_ssc_register +EXPORT_SYMBOL_GPL vmlinux 0x1a4b8272 __pci_reset_function_locked EXPORT_SYMBOL_GPL vmlinux 0x1a6bf28f fsnotify_get_cookie -EXPORT_SYMBOL_GPL vmlinux 0x1a710c1c dax_copy_to_iter -EXPORT_SYMBOL_GPL vmlinux 0x1a82dfd3 iommu_device_unregister EXPORT_SYMBOL_GPL vmlinux 0x1a876574 __tracepoint_attach_device_to_domain -EXPORT_SYMBOL_GPL vmlinux 0x1a8b4528 scsi_unregister_device_handler -EXPORT_SYMBOL_GPL vmlinux 0x1ab3f87e elv_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1a98ffab blk_crypto_evict_key +EXPORT_SYMBOL_GPL vmlinux 0x1a9e3111 task_cls_state +EXPORT_SYMBOL_GPL vmlinux 0x1aac839b dma_alloc_pages +EXPORT_SYMBOL_GPL vmlinux 0x1ab5deee fuse_fill_super_common EXPORT_SYMBOL_GPL vmlinux 0x1acd18c8 cpuset_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x1ae3f498 switchdev_handle_port_obj_add +EXPORT_SYMBOL_GPL vmlinux 0x1adf7770 inet_csk_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0x1af267f8 int_pow +EXPORT_SYMBOL_GPL vmlinux 0x1b040031 ethnl_cable_test_pulse EXPORT_SYMBOL_GPL vmlinux 0x1b1f5ad0 gpio_request_array -EXPORT_SYMBOL_GPL vmlinux 0x1b2d9f75 fib_nh_common_release -EXPORT_SYMBOL_GPL vmlinux 0x1b543b5d fsnotify_find_mark -EXPORT_SYMBOL_GPL vmlinux 0x1b6adde1 dma_buf_unpin +EXPORT_SYMBOL_GPL vmlinux 0x1b3120ae subsys_virtual_register +EXPORT_SYMBOL_GPL vmlinux 0x1b3cdba4 bpf_trace_run4 +EXPORT_SYMBOL_GPL vmlinux 0x1b43ad4e tcp_reno_undo_cwnd EXPORT_SYMBOL_GPL vmlinux 0x1b6c5a67 chsc_error_from_response -EXPORT_SYMBOL_GPL vmlinux 0x1b7939c3 iommu_report_device_fault +EXPORT_SYMBOL_GPL vmlinux 0x1b918ab2 rdev_set_badblocks EXPORT_SYMBOL_GPL vmlinux 0x1b92e41d inet_putpeer -EXPORT_SYMBOL_GPL vmlinux 0x1bb5b61a device_get_match_data -EXPORT_SYMBOL_GPL vmlinux 0x1bb808a9 gpiochip_line_is_open_drain -EXPORT_SYMBOL_GPL vmlinux 0x1bbeb280 vfs_kern_mount +EXPORT_SYMBOL_GPL vmlinux 0x1ba119ad generic_fh_to_parent +EXPORT_SYMBOL_GPL vmlinux 0x1ba6dad4 switchdev_port_attr_set +EXPORT_SYMBOL_GPL vmlinux 0x1bbb9445 crypto_dequeue_request EXPORT_SYMBOL_GPL vmlinux 0x1bc7b8bd software_node_register_nodes EXPORT_SYMBOL_GPL vmlinux 0x1bce413e synchronize_srcu -EXPORT_SYMBOL_GPL vmlinux 0x1bd1c5e5 mptcp_pm_get_subflows_max -EXPORT_SYMBOL_GPL vmlinux 0x1bd61c80 pci_dev_unlock EXPORT_SYMBOL_GPL vmlinux 0x1bde474a disable_kprobe -EXPORT_SYMBOL_GPL vmlinux 0x1be8c574 __traceiter_xdp_exception EXPORT_SYMBOL_GPL vmlinux 0x1bee4974 sg_alloc_table_chained EXPORT_SYMBOL_GPL vmlinux 0x1bfad06e mpi_print -EXPORT_SYMBOL_GPL vmlinux 0x1c032581 platform_device_put -EXPORT_SYMBOL_GPL vmlinux 0x1c07fb23 __fscrypt_prepare_readdir -EXPORT_SYMBOL_GPL vmlinux 0x1c10c8e7 gmap_unmap_segment -EXPORT_SYMBOL_GPL vmlinux 0x1c38871d dma_resv_wait_timeout -EXPORT_SYMBOL_GPL vmlinux 0x1c4301b0 device_remove_properties -EXPORT_SYMBOL_GPL vmlinux 0x1c48f5ec aead_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0x1c214a67 ping_hash +EXPORT_SYMBOL_GPL vmlinux 0x1c3e0ad9 crypto_alloc_acomp_node EXPORT_SYMBOL_GPL vmlinux 0x1c5b1f28 irq_free_descs -EXPORT_SYMBOL_GPL vmlinux 0x1c86fd3e blkg_lookup_slowpath +EXPORT_SYMBOL_GPL vmlinux 0x1c6d09f6 devlink_region_create +EXPORT_SYMBOL_GPL vmlinux 0x1c7d9763 ping_seq_stop EXPORT_SYMBOL_GPL vmlinux 0x1c87a811 __round_jiffies_up -EXPORT_SYMBOL_GPL vmlinux 0x1ca5a585 fat_remove_entries +EXPORT_SYMBOL_GPL vmlinux 0x1c87fda8 event_triggers_call +EXPORT_SYMBOL_GPL vmlinux 0x1ca21822 net_ns_get_ownership EXPORT_SYMBOL_GPL vmlinux 0x1cbd92b0 cpu_mitigations_off -EXPORT_SYMBOL_GPL vmlinux 0x1ce2b5ae fib_rules_unregister -EXPORT_SYMBOL_GPL vmlinux 0x1d10dabd proc_get_parent_data +EXPORT_SYMBOL_GPL vmlinux 0x1cc39643 crypto_stats_init +EXPORT_SYMBOL_GPL vmlinux 0x1cc62be9 iommu_set_pgtable_quirks +EXPORT_SYMBOL_GPL vmlinux 0x1cdc9966 pci_epc_start +EXPORT_SYMBOL_GPL vmlinux 0x1ce42c75 dequeue_signal EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state -EXPORT_SYMBOL_GPL vmlinux 0x1d224bab skb_zerocopy -EXPORT_SYMBOL_GPL vmlinux 0x1d2c5c3b devres_for_each_res -EXPORT_SYMBOL_GPL vmlinux 0x1d5a8783 pcie_port_find_device -EXPORT_SYMBOL_GPL vmlinux 0x1d7519f6 gpiochip_is_requested +EXPORT_SYMBOL_GPL vmlinux 0x1d29aaa7 crypto_stats_get +EXPORT_SYMBOL_GPL vmlinux 0x1d378f61 dma_need_sync +EXPORT_SYMBOL_GPL vmlinux 0x1d53f25c pci_bus_max_busnr +EXPORT_SYMBOL_GPL vmlinux 0x1d6ceac9 tpm_transmit_cmd EXPORT_SYMBOL_GPL vmlinux 0x1d77b0f8 unix_socket_table -EXPORT_SYMBOL_GPL vmlinux 0x1d79a72d raw_unhash_sk +EXPORT_SYMBOL_GPL vmlinux 0x1d8bc8e6 strp_init +EXPORT_SYMBOL_GPL vmlinux 0x1d9ecc52 css_sched_sch_todo EXPORT_SYMBOL_GPL vmlinux 0x1dca8012 klist_prev -EXPORT_SYMBOL_GPL vmlinux 0x1dd22730 gpiochip_reqres_irq -EXPORT_SYMBOL_GPL vmlinux 0x1de5df77 devm_gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0x1dcc325c __traceiter_neigh_cleanup_and_release +EXPORT_SYMBOL_GPL vmlinux 0x1dce02bb alloc_dax +EXPORT_SYMBOL_GPL vmlinux 0x1de8c617 fuse_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x1df48236 fsverity_ioctl_measure EXPORT_SYMBOL_GPL vmlinux 0x1dfa5dbd mpi_invm -EXPORT_SYMBOL_GPL vmlinux 0x1e13480a tcp_bpf_update_proto -EXPORT_SYMBOL_GPL vmlinux 0x1e1c323b tty_ldisc_receive_buf -EXPORT_SYMBOL_GPL vmlinux 0x1e1c8e1e clone_private_mount EXPORT_SYMBOL_GPL vmlinux 0x1e20f13f freq_qos_remove_notifier -EXPORT_SYMBOL_GPL vmlinux 0x1e4653bd wbt_disable_default -EXPORT_SYMBOL_GPL vmlinux 0x1e586cb6 irq_domain_disconnect_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0x1e2133c9 pci_num_vf +EXPORT_SYMBOL_GPL vmlinux 0x1e31d88b virtqueue_get_used_addr +EXPORT_SYMBOL_GPL vmlinux 0x1e66b920 iommu_sva_unbind_gpasid EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart -EXPORT_SYMBOL_GPL vmlinux 0x1e7c6cd5 gpiochip_irq_unmap +EXPORT_SYMBOL_GPL vmlinux 0x1e9b6dfd perf_pmu_register EXPORT_SYMBOL_GPL vmlinux 0x1e9ec696 register_kretprobes -EXPORT_SYMBOL_GPL vmlinux 0x1ea47510 md_rdev_init +EXPORT_SYMBOL_GPL vmlinux 0x1ead1e42 fwnode_graph_get_remote_port EXPORT_SYMBOL_GPL vmlinux 0x1eafe531 poll_state_synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0x1eb4ee97 skb_tstamp_tx EXPORT_SYMBOL_GPL vmlinux 0x1eb9516e round_jiffies_relative EXPORT_SYMBOL_GPL vmlinux 0x1ebf6c2a pci_power_names -EXPORT_SYMBOL_GPL vmlinux 0x1ec8db31 skb_complete_wifi_ack +EXPORT_SYMBOL_GPL vmlinux 0x1ec73966 gmap_disable EXPORT_SYMBOL_GPL vmlinux 0x1ed4d2eb percpu_ref_kill_and_confirm -EXPORT_SYMBOL_GPL vmlinux 0x1ee86269 sock_map_unhash -EXPORT_SYMBOL_GPL vmlinux 0x1ee87108 blkcg_root EXPORT_SYMBOL_GPL vmlinux 0x1eec1238 blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x1ef22f65 security_file_ioctl EXPORT_SYMBOL_GPL vmlinux 0x1f0cb5bf pm_power_off_prepare +EXPORT_SYMBOL_GPL vmlinux 0x1f15e53d scsi_dh_activate EXPORT_SYMBOL_GPL vmlinux 0x1f2d801a alarm_forward_now -EXPORT_SYMBOL_GPL vmlinux 0x1f33705b ip6_route_input_lookup EXPORT_SYMBOL_GPL vmlinux 0x1f38a4f6 mpi_set_highbit -EXPORT_SYMBOL_GPL vmlinux 0x1f3c19d4 blk_queue_flag_test_and_set +EXPORT_SYMBOL_GPL vmlinux 0x1f3992ae vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x1f421841 thp_get_unmapped_area EXPORT_SYMBOL_GPL vmlinux 0x1f436eaf hrtimer_active +EXPORT_SYMBOL_GPL vmlinux 0x1f47fdb6 gpiod_set_array_value +EXPORT_SYMBOL_GPL vmlinux 0x1f4d2bd1 pcie_flr +EXPORT_SYMBOL_GPL vmlinux 0x1f55e5d5 lwtunnel_get_encap_size EXPORT_SYMBOL_GPL vmlinux 0x1f563160 bpf_offload_dev_priv -EXPORT_SYMBOL_GPL vmlinux 0x1f579dfb dst_cache_get_ip6 -EXPORT_SYMBOL_GPL vmlinux 0x1f6ae82b crypto_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x1f71a660 devlink_trap_groups_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1f72e883 pingv6_prot EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout -EXPORT_SYMBOL_GPL vmlinux 0x1f87b634 tpm_get_random -EXPORT_SYMBOL_GPL vmlinux 0x1f90e193 subsys_find_device_by_id -EXPORT_SYMBOL_GPL vmlinux 0x1f9476e7 tpm2_probe +EXPORT_SYMBOL_GPL vmlinux 0x1f85a1fb serdev_device_write_flush +EXPORT_SYMBOL_GPL vmlinux 0x1f8984b9 trace_output_call +EXPORT_SYMBOL_GPL vmlinux 0x1f89c21b device_set_node EXPORT_SYMBOL_GPL vmlinux 0x1fa1d95c sha256_zero_message_hash EXPORT_SYMBOL_GPL vmlinux 0x1fa8fcf3 pkcs7_parse_message -EXPORT_SYMBOL_GPL vmlinux 0x1fb37e05 pin_user_pages_fast_only -EXPORT_SYMBOL_GPL vmlinux 0x1fce4063 netif_carrier_event -EXPORT_SYMBOL_GPL vmlinux 0x1fd91ee5 inet6_compat_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x1fb7e1bb kvm_vcpu_block +EXPORT_SYMBOL_GPL vmlinux 0x1fb9ae5d pci_epc_multi_mem_init +EXPORT_SYMBOL_GPL vmlinux 0x1fd9fd40 kvm_write_guest_page EXPORT_SYMBOL_GPL vmlinux 0x1fe6e504 gpiod_add_hogs -EXPORT_SYMBOL_GPL vmlinux 0x1feea30b crypto_stats_akcipher_encrypt -EXPORT_SYMBOL_GPL vmlinux 0x2001ff59 pci_bus_add_device +EXPORT_SYMBOL_GPL vmlinux 0x1fe904c2 crypto_remove_spawns +EXPORT_SYMBOL_GPL vmlinux 0x2008469d devlink_alloc_ns EXPORT_SYMBOL_GPL vmlinux 0x2009e400 devlink_info_board_serial_number_put -EXPORT_SYMBOL_GPL vmlinux 0x201986cf cpu_subsys -EXPORT_SYMBOL_GPL vmlinux 0x201f3f77 fscrypt_ioctl_get_key_status -EXPORT_SYMBOL_GPL vmlinux 0x20277bf8 ccw_device_get_schid -EXPORT_SYMBOL_GPL vmlinux 0x2041888e device_remove_software_node -EXPORT_SYMBOL_GPL vmlinux 0x20582863 iterate_mounts -EXPORT_SYMBOL_GPL vmlinux 0x20633574 sbitmap_queue_show -EXPORT_SYMBOL_GPL vmlinux 0x2069a0cc platform_device_add_data +EXPORT_SYMBOL_GPL vmlinux 0x2016afac tty_port_tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x20436c39 bio_start_io_acct_time EXPORT_SYMBOL_GPL vmlinux 0x20835a9f __xdp_release_frame -EXPORT_SYMBOL_GPL vmlinux 0x20848b19 devm_kasprintf -EXPORT_SYMBOL_GPL vmlinux 0x20b1a311 vp_modern_set_features -EXPORT_SYMBOL_GPL vmlinux 0x20b8a702 security_file_permission -EXPORT_SYMBOL_GPL vmlinux 0x20bba531 badblocks_check -EXPORT_SYMBOL_GPL vmlinux 0x20c60a90 open_related_ns -EXPORT_SYMBOL_GPL vmlinux 0x20c9ca6a tun_get_tx_ring -EXPORT_SYMBOL_GPL vmlinux 0x20cfaab8 gmap_pmdp_idte_local +EXPORT_SYMBOL_GPL vmlinux 0x208ff202 inet_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x20b4cc0a __root_device_register EXPORT_SYMBOL_GPL vmlinux 0x20e6176b freq_qos_add_request EXPORT_SYMBOL_GPL vmlinux 0x20e6f928 tnum_strn +EXPORT_SYMBOL_GPL vmlinux 0x20ef56f7 balloon_page_enqueue EXPORT_SYMBOL_GPL vmlinux 0x20f56ae0 __wake_up_sync -EXPORT_SYMBOL_GPL vmlinux 0x20ffb536 __synth_event_gen_cmd_start -EXPORT_SYMBOL_GPL vmlinux 0x21154259 gpiod_put -EXPORT_SYMBOL_GPL vmlinux 0x21208779 perf_event_addr_filters_sync -EXPORT_SYMBOL_GPL vmlinux 0x21630ae3 sysfs_create_groups -EXPORT_SYMBOL_GPL vmlinux 0x216c3fd5 bsg_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0x210c81bf crypto_unregister_aead +EXPORT_SYMBOL_GPL vmlinux 0x211ad147 __nf_ip6_route +EXPORT_SYMBOL_GPL vmlinux 0x21327dfd md_start +EXPORT_SYMBOL_GPL vmlinux 0x2149c9b6 fwnode_graph_get_port_parent +EXPORT_SYMBOL_GPL vmlinux 0x21580c11 crypto_unregister_scomp EXPORT_SYMBOL_GPL vmlinux 0x216de4e1 rcu_get_gp_kthreads_prio -EXPORT_SYMBOL_GPL vmlinux 0x218a0173 dma_buf_unmap_attachment -EXPORT_SYMBOL_GPL vmlinux 0x2192cd02 iommu_present -EXPORT_SYMBOL_GPL vmlinux 0x21a5813f kthread_mod_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0x21763bce raw_seq_start EXPORT_SYMBOL_GPL vmlinux 0x21ac8b77 iommu_group_get_by_id -EXPORT_SYMBOL_GPL vmlinux 0x21b0deed fib6_rule_default EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher EXPORT_SYMBOL_GPL vmlinux 0x21ce3ed1 dev_fetch_sw_netstats -EXPORT_SYMBOL_GPL vmlinux 0x21d9866f xfrm_audit_state_delete -EXPORT_SYMBOL_GPL vmlinux 0x21f25f8d iommu_attach_group -EXPORT_SYMBOL_GPL vmlinux 0x21f9b5d0 anon_inode_getfd_secure +EXPORT_SYMBOL_GPL vmlinux 0x21fa130f iomap_migrate_page EXPORT_SYMBOL_GPL vmlinux 0x2200061c __tracepoint_pelt_irq_tp -EXPORT_SYMBOL_GPL vmlinux 0x2203f85a platform_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x22092167 sk_set_peek_off -EXPORT_SYMBOL_GPL vmlinux 0x220f5de7 ncsi_start_dev EXPORT_SYMBOL_GPL vmlinux 0x2211a4c0 blk_op_str -EXPORT_SYMBOL_GPL vmlinux 0x2211d4a7 dm_bio_from_per_bio_data -EXPORT_SYMBOL_GPL vmlinux 0x2245e2ff msg_zerocopy_callback -EXPORT_SYMBOL_GPL vmlinux 0x22762328 gmap_get_enabled -EXPORT_SYMBOL_GPL vmlinux 0x22928c7d crypto_aes_set_key -EXPORT_SYMBOL_GPL vmlinux 0x22a53e99 blk_req_needs_zone_write_lock +EXPORT_SYMBOL_GPL vmlinux 0x2245ac4d __iptunnel_pull_header +EXPORT_SYMBOL_GPL vmlinux 0x22881439 subsys_dev_iter_exit EXPORT_SYMBOL_GPL vmlinux 0x22b8146b __wake_up_locked_key_bookmark +EXPORT_SYMBOL_GPL vmlinux 0x22c98b74 xfrm_audit_policy_delete EXPORT_SYMBOL_GPL vmlinux 0x22d60537 tcf_frag_xmit_count +EXPORT_SYMBOL_GPL vmlinux 0x22d614ca percpu_free_rwsem EXPORT_SYMBOL_GPL vmlinux 0x22d9409b iomap_sort_ioends +EXPORT_SYMBOL_GPL vmlinux 0x22dfd1a9 devlink_trap_policers_register EXPORT_SYMBOL_GPL vmlinux 0x22e20b10 chsc_siosl -EXPORT_SYMBOL_GPL vmlinux 0x22f8abaf device_property_present -EXPORT_SYMBOL_GPL vmlinux 0x22fc3874 xfrm_audit_state_notfound_simple EXPORT_SYMBOL_GPL vmlinux 0x22fd08ba cpuacct_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x230115a1 xdp_rxq_info_unreg +EXPORT_SYMBOL_GPL vmlinux 0x23046bd4 devm_gpiod_unhinge EXPORT_SYMBOL_GPL vmlinux 0x230bca5e key_type_encrypted +EXPORT_SYMBOL_GPL vmlinux 0x230ff87b call_switchdev_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x2323d17b gpiochip_line_is_persistent +EXPORT_SYMBOL_GPL vmlinux 0x23284eae mddev_resume +EXPORT_SYMBOL_GPL vmlinux 0x233479cc dma_max_mapping_size EXPORT_SYMBOL_GPL vmlinux 0x233c4456 xas_find EXPORT_SYMBOL_GPL vmlinux 0x233f5316 sprint_oid EXPORT_SYMBOL_GPL vmlinux 0x234cf416 devlink_fmsg_string_pair_put -EXPORT_SYMBOL_GPL vmlinux 0x235732e3 firmware_kobj -EXPORT_SYMBOL_GPL vmlinux 0x236bb79f fwnode_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x234d22ac vp_modern_remove +EXPORT_SYMBOL_GPL vmlinux 0x23773986 sk_msg_free_partial EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node -EXPORT_SYMBOL_GPL vmlinux 0x238718ac security_inode_create -EXPORT_SYMBOL_GPL vmlinux 0x239208e9 xdp_convert_zc_to_xdp_frame -EXPORT_SYMBOL_GPL vmlinux 0x23954310 __alloc_pages_bulk +EXPORT_SYMBOL_GPL vmlinux 0x23970f37 tcp_set_keepalive +EXPORT_SYMBOL_GPL vmlinux 0x23eada78 fib_rules_register +EXPORT_SYMBOL_GPL vmlinux 0x23fb58ad param_ops_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0x2409a357 debugfs_read_file_bool +EXPORT_SYMBOL_GPL vmlinux 0x24183fb6 iommu_device_link +EXPORT_SYMBOL_GPL vmlinux 0x241c6840 __inet_twsk_schedule +EXPORT_SYMBOL_GPL vmlinux 0x241d2064 bio_end_io_acct_remapped EXPORT_SYMBOL_GPL vmlinux 0x2421097b mpi_const -EXPORT_SYMBOL_GPL vmlinux 0x244f6151 gpiochip_populate_parent_fwspec_fourcell -EXPORT_SYMBOL_GPL vmlinux 0x2454568a debugfs_create_x16 +EXPORT_SYMBOL_GPL vmlinux 0x242f762f bus_get_kset +EXPORT_SYMBOL_GPL vmlinux 0x245177ee blkcg_print_blkgs +EXPORT_SYMBOL_GPL vmlinux 0x24616a29 perf_event_read_value +EXPORT_SYMBOL_GPL vmlinux 0x2489b62b account_locked_vm EXPORT_SYMBOL_GPL vmlinux 0x248bc867 raw_notifier_call_chain_robust -EXPORT_SYMBOL_GPL vmlinux 0x24944b36 set_primary_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x24b669d7 pci_aer_clear_nonfatal_status -EXPORT_SYMBOL_GPL vmlinux 0x24cbea61 sysfs_update_groups +EXPORT_SYMBOL_GPL vmlinux 0x24901606 __strp_unpause +EXPORT_SYMBOL_GPL vmlinux 0x249dbb74 devlink_port_params_unregister +EXPORT_SYMBOL_GPL vmlinux 0x24d2cc05 kvm_get_kvm EXPORT_SYMBOL_GPL vmlinux 0x24da0093 rcu_inkernel_boot_has_ended -EXPORT_SYMBOL_GPL vmlinux 0x24e2c43a vp_modern_get_queue_size -EXPORT_SYMBOL_GPL vmlinux 0x250d1b27 fwnode_graph_get_next_endpoint -EXPORT_SYMBOL_GPL vmlinux 0x250d3686 devlink_resource_occ_get_unregister -EXPORT_SYMBOL_GPL vmlinux 0x254a82ac fwnode_get_named_child_node -EXPORT_SYMBOL_GPL vmlinux 0x2557e7e3 sk_msg_recvmsg -EXPORT_SYMBOL_GPL vmlinux 0x2566be07 virtqueue_get_vring_size -EXPORT_SYMBOL_GPL vmlinux 0x25804335 receive_fd -EXPORT_SYMBOL_GPL vmlinux 0x2588592e bsg_job_done -EXPORT_SYMBOL_GPL vmlinux 0x258e15ee __traceiter_sched_update_nr_running_tp +EXPORT_SYMBOL_GPL vmlinux 0x24da05cf dma_resv_get_fences +EXPORT_SYMBOL_GPL vmlinux 0x253851cd fsverity_verify_bio +EXPORT_SYMBOL_GPL vmlinux 0x25414b8d scsi_host_complete_all_commands +EXPORT_SYMBOL_GPL vmlinux 0x25457ac9 hrtimer_init_sleeper +EXPORT_SYMBOL_GPL vmlinux 0x2546772c crypto_shash_update +EXPORT_SYMBOL_GPL vmlinux 0x257e6d0a pci_epc_get_msi +EXPORT_SYMBOL_GPL vmlinux 0x258407e8 unregister_trace_event EXPORT_SYMBOL_GPL vmlinux 0x2592fc6c console_printk -EXPORT_SYMBOL_GPL vmlinux 0x259c8c8b tty_standard_install -EXPORT_SYMBOL_GPL vmlinux 0x25ad88f9 gmap_shadow +EXPORT_SYMBOL_GPL vmlinux 0x25932e88 netdev_walk_all_lower_dev_rcu +EXPORT_SYMBOL_GPL vmlinux 0x25a34d43 fib_nl_newrule EXPORT_SYMBOL_GPL vmlinux 0x25bbfa9a security_kernel_load_data -EXPORT_SYMBOL_GPL vmlinux 0x260952bf irq_domain_add_legacy -EXPORT_SYMBOL_GPL vmlinux 0x264940a1 __fl6_sock_lookup -EXPORT_SYMBOL_GPL vmlinux 0x264c929c fscrypt_ioctl_remove_key -EXPORT_SYMBOL_GPL vmlinux 0x264cd778 bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0x26202565 put_device +EXPORT_SYMBOL_GPL vmlinux 0x262d08e8 ip6_append_data EXPORT_SYMBOL_GPL vmlinux 0x26520970 vm_memory_committed EXPORT_SYMBOL_GPL vmlinux 0x265bbef9 kexec_crash_loaded -EXPORT_SYMBOL_GPL vmlinux 0x2669abfc __clocksource_register_scale EXPORT_SYMBOL_GPL vmlinux 0x266a4b08 tasklet_unlock -EXPORT_SYMBOL_GPL vmlinux 0x266f9db1 kthread_data +EXPORT_SYMBOL_GPL vmlinux 0x26780d6f component_add_typed EXPORT_SYMBOL_GPL vmlinux 0x267df662 smp_call_on_cpu +EXPORT_SYMBOL_GPL vmlinux 0x2694244e add_swap_extent +EXPORT_SYMBOL_GPL vmlinux 0x2699db86 pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0x26a4957a gfn_to_page EXPORT_SYMBOL_GPL vmlinux 0x26ab4755 put_old_itimerspec32 -EXPORT_SYMBOL_GPL vmlinux 0x26af0974 disable_cmf -EXPORT_SYMBOL_GPL vmlinux 0x26c46346 inet_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x26c550ae wait_on_page_writeback_killable EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense +EXPORT_SYMBOL_GPL vmlinux 0x26ce1ff9 fs_dax_get_by_bdev +EXPORT_SYMBOL_GPL vmlinux 0x26d74ae7 blk_queue_set_zoned +EXPORT_SYMBOL_GPL vmlinux 0x26dea067 exportfs_encode_fh EXPORT_SYMBOL_GPL vmlinux 0x26ed2186 register_vmap_purge_notifier -EXPORT_SYMBOL_GPL vmlinux 0x26f1a864 __traceiter_br_fdb_add +EXPORT_SYMBOL_GPL vmlinux 0x27031f80 bio_start_io_acct EXPORT_SYMBOL_GPL vmlinux 0x27046576 kvm_exit -EXPORT_SYMBOL_GPL vmlinux 0x27076c98 devm_platform_ioremap_resource -EXPORT_SYMBOL_GPL vmlinux 0x27126032 ethnl_cable_test_step +EXPORT_SYMBOL_GPL vmlinux 0x2708234a fat_setattr +EXPORT_SYMBOL_GPL vmlinux 0x27307a7e user_destroy +EXPORT_SYMBOL_GPL vmlinux 0x27316165 iomap_file_unshare EXPORT_SYMBOL_GPL vmlinux 0x274dd1a3 sg_free_table_chained -EXPORT_SYMBOL_GPL vmlinux 0x2764872e kvm_put_kvm -EXPORT_SYMBOL_GPL vmlinux 0x2792f827 ethnl_cable_test_amplitude +EXPORT_SYMBOL_GPL vmlinux 0x276d1876 skb_gso_validate_network_len +EXPORT_SYMBOL_GPL vmlinux 0x278380ab gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0x2784e2b6 clockevents_register_device +EXPORT_SYMBOL_GPL vmlinux 0x279ff1f5 kthread_cancel_delayed_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x27cf5b94 user_describe +EXPORT_SYMBOL_GPL vmlinux 0x27dadf9c fwnode_connection_find_match EXPORT_SYMBOL_GPL vmlinux 0x27dc9471 __tracepoint_br_fdb_update -EXPORT_SYMBOL_GPL vmlinux 0x27eaa7bf blk_mq_freeze_queue_wait_timeout EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter EXPORT_SYMBOL_GPL vmlinux 0x27fa66e1 nr_free_buffer_pages +EXPORT_SYMBOL_GPL vmlinux 0x27fa81c4 blk_mq_alloc_sq_tag_set EXPORT_SYMBOL_GPL vmlinux 0x27fd4f87 gfn_to_hva_memslot -EXPORT_SYMBOL_GPL vmlinux 0x280197d3 blkg_rwstat_recursive_sum -EXPORT_SYMBOL_GPL vmlinux 0x280a173e irq_chip_release_resources_parent -EXPORT_SYMBOL_GPL vmlinux 0x2824f00a inet_csk_get_port -EXPORT_SYMBOL_GPL vmlinux 0x2825b112 __percpu_down_read -EXPORT_SYMBOL_GPL vmlinux 0x2843cc0c gpiod_export +EXPORT_SYMBOL_GPL vmlinux 0x2821b193 transport_configure_device EXPORT_SYMBOL_GPL vmlinux 0x2849c663 __wait_rcu_gp -EXPORT_SYMBOL_GPL vmlinux 0x28556040 irq_domain_push_irq -EXPORT_SYMBOL_GPL vmlinux 0x285eda8b mmu_interval_notifier_remove +EXPORT_SYMBOL_GPL vmlinux 0x284cb6c9 kvm_write_guest_offset_cached +EXPORT_SYMBOL_GPL vmlinux 0x2862d3cd dst_blackhole_redirect EXPORT_SYMBOL_GPL vmlinux 0x2864abc9 klist_node_attached EXPORT_SYMBOL_GPL vmlinux 0x286cc647 async_synchronize_cookie_domain -EXPORT_SYMBOL_GPL vmlinux 0x2896236f crypto_register_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x28a23662 fuse_conn_get -EXPORT_SYMBOL_GPL vmlinux 0x28a3ad5b gpiod_put_array -EXPORT_SYMBOL_GPL vmlinux 0x28a93125 dma_vunmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x286fa398 attribute_container_find_class_device +EXPORT_SYMBOL_GPL vmlinux 0x287c2653 security_file_permission +EXPORT_SYMBOL_GPL vmlinux 0x28a9e1aa devlink_port_region_create EXPORT_SYMBOL_GPL vmlinux 0x28aa6a67 call_rcu -EXPORT_SYMBOL_GPL vmlinux 0x28afe4f8 netdev_rx_handler_register -EXPORT_SYMBOL_GPL vmlinux 0x28b0f81e acomp_request_alloc +EXPORT_SYMBOL_GPL vmlinux 0x28c267ad lwtunnel_build_state EXPORT_SYMBOL_GPL vmlinux 0x28d0285c rhashtable_walk_exit -EXPORT_SYMBOL_GPL vmlinux 0x28d57ed3 gpiod_set_value EXPORT_SYMBOL_GPL vmlinux 0x28d8b49a chsc_scm_info -EXPORT_SYMBOL_GPL vmlinux 0x28d90e96 virtqueue_add_sgs -EXPORT_SYMBOL_GPL vmlinux 0x28e4d199 fw_devlink_purge_absent_suppliers -EXPORT_SYMBOL_GPL vmlinux 0x28f38e88 devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0x28dc6c45 crypto_spawn_tfm2 +EXPORT_SYMBOL_GPL vmlinux 0x28e607cb __devm_pci_epc_create +EXPORT_SYMBOL_GPL vmlinux 0x28ee066a unregister_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0x28ee3287 serdev_device_close +EXPORT_SYMBOL_GPL vmlinux 0x28f85dc7 to_software_node +EXPORT_SYMBOL_GPL vmlinux 0x28fd65a4 __traceiter_br_fdb_add +EXPORT_SYMBOL_GPL vmlinux 0x290bdd7a __hvc_resize +EXPORT_SYMBOL_GPL vmlinux 0x2913f2fd skb_copy_ubufs +EXPORT_SYMBOL_GPL vmlinux 0x29150e39 devlink_free EXPORT_SYMBOL_GPL vmlinux 0x291876f3 mpi_ec_get_affine EXPORT_SYMBOL_GPL vmlinux 0x2921074c hrtimer_forward -EXPORT_SYMBOL_GPL vmlinux 0x2937dce4 irq_domain_free_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x294fde72 kthread_queue_delayed_work -EXPORT_SYMBOL_GPL vmlinux 0x29bf182d mddev_resume -EXPORT_SYMBOL_GPL vmlinux 0x29c79ded virtqueue_kick_prepare -EXPORT_SYMBOL_GPL vmlinux 0x29db65f8 crypto_register_shash +EXPORT_SYMBOL_GPL vmlinux 0x292469ab crypto_shoot_alg +EXPORT_SYMBOL_GPL vmlinux 0x2924ff57 kthread_data +EXPORT_SYMBOL_GPL vmlinux 0x293a0ac0 irq_domain_reset_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x29419895 __platform_register_drivers +EXPORT_SYMBOL_GPL vmlinux 0x2946c29a root_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x29710930 kvm_write_guest +EXPORT_SYMBOL_GPL vmlinux 0x2976f345 vp_modern_get_queue_size +EXPORT_SYMBOL_GPL vmlinux 0x2999927a tty_set_ldisc +EXPORT_SYMBOL_GPL vmlinux 0x299c6502 blkcg_activate_policy +EXPORT_SYMBOL_GPL vmlinux 0x299de26d kthread_park +EXPORT_SYMBOL_GPL vmlinux 0x29bd5b13 trace_array_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0x29d3b128 tracing_snapshot_cond EXPORT_SYMBOL_GPL vmlinux 0x29deb0ac add_wait_queue_priority -EXPORT_SYMBOL_GPL vmlinux 0x29e28625 __ndisc_fill_addr_option +EXPORT_SYMBOL_GPL vmlinux 0x29dfd91f fuse_abort_conn EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async -EXPORT_SYMBOL_GPL vmlinux 0x29fd1840 bus_sort_breadthfirst -EXPORT_SYMBOL_GPL vmlinux 0x2a01ab00 gpiochip_get_desc +EXPORT_SYMBOL_GPL vmlinux 0x2a02046a devlink_param_unpublish +EXPORT_SYMBOL_GPL vmlinux 0x2a07f317 mm_kobj EXPORT_SYMBOL_GPL vmlinux 0x2a1538ca lzo1x_decompress_safe -EXPORT_SYMBOL_GPL vmlinux 0x2a153dd6 gpiochip_line_is_irq -EXPORT_SYMBOL_GPL vmlinux 0x2a3f145a attribute_container_classdev_to_container -EXPORT_SYMBOL_GPL vmlinux 0x2a4c8923 __kthread_should_park -EXPORT_SYMBOL_GPL vmlinux 0x2a5b29eb balloon_page_enqueue +EXPORT_SYMBOL_GPL vmlinux 0x2a1e3c8d ping_bind +EXPORT_SYMBOL_GPL vmlinux 0x2a274e49 irq_domain_free_irqs_parent +EXPORT_SYMBOL_GPL vmlinux 0x2a498889 page_mkclean +EXPORT_SYMBOL_GPL vmlinux 0x2a49f84c free_fib_info EXPORT_SYMBOL_GPL vmlinux 0x2a62cb3a ring_buffer_overrun_cpu -EXPORT_SYMBOL_GPL vmlinux 0x2a63b316 devlink_port_type_eth_set +EXPORT_SYMBOL_GPL vmlinux 0x2a63a0a6 ncsi_start_dev +EXPORT_SYMBOL_GPL vmlinux 0x2a63c72e pci_epf_destroy +EXPORT_SYMBOL_GPL vmlinux 0x2a7034ed sched_trace_rq_cpu +EXPORT_SYMBOL_GPL vmlinux 0x2a70b372 gpiochip_line_is_irq EXPORT_SYMBOL_GPL vmlinux 0x2a7316da __SCK__tp_func_neigh_cleanup_and_release -EXPORT_SYMBOL_GPL vmlinux 0x2a78b951 crypto_inst_setname -EXPORT_SYMBOL_GPL vmlinux 0x2a850a64 pci_epf_alloc_space -EXPORT_SYMBOL_GPL vmlinux 0x2a8d6204 smpboot_register_percpu_thread -EXPORT_SYMBOL_GPL vmlinux 0x2ab0794b md_do_sync -EXPORT_SYMBOL_GPL vmlinux 0x2ac59297 transport_destroy_device -EXPORT_SYMBOL_GPL vmlinux 0x2ac5b1c3 __clocksource_update_freq_scale -EXPORT_SYMBOL_GPL vmlinux 0x2ac7fefb md_stop +EXPORT_SYMBOL_GPL vmlinux 0x2a8c6743 xdp_return_frame_bulk +EXPORT_SYMBOL_GPL vmlinux 0x2a8c9377 __traceiter_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0x2a9504f7 strp_data_ready +EXPORT_SYMBOL_GPL vmlinux 0x2a9953cf vc_scrolldelta_helper +EXPORT_SYMBOL_GPL vmlinux 0x2a9d3ec6 gpiochip_reqres_irq +EXPORT_SYMBOL_GPL vmlinux 0x2a9fd082 blk_steal_bios +EXPORT_SYMBOL_GPL vmlinux 0x2aa573e2 platform_get_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0x2ac11c07 gpiochip_line_is_valid EXPORT_SYMBOL_GPL vmlinux 0x2ac80c63 xas_split_alloc -EXPORT_SYMBOL_GPL vmlinux 0x2ad0ca02 dma_buf_pin -EXPORT_SYMBOL_GPL vmlinux 0x2aedb98c dm_internal_resume_fast -EXPORT_SYMBOL_GPL vmlinux 0x2b0627d8 device_del -EXPORT_SYMBOL_GPL vmlinux 0x2b06f4ba init_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0x2b0b8044 pci_enable_pcie_error_reporting -EXPORT_SYMBOL_GPL vmlinux 0x2b0d2c79 sched_set_normal -EXPORT_SYMBOL_GPL vmlinux 0x2b1b3f84 apply_to_existing_page_range +EXPORT_SYMBOL_GPL vmlinux 0x2b160a9c tpm_chip_stop +EXPORT_SYMBOL_GPL vmlinux 0x2b1f1351 bpf_trace_run12 EXPORT_SYMBOL_GPL vmlinux 0x2b3fd666 kset_find_obj EXPORT_SYMBOL_GPL vmlinux 0x2b4509dd devlink_health_reporter_state_update -EXPORT_SYMBOL_GPL vmlinux 0x2b5137d7 gpiochip_find -EXPORT_SYMBOL_GPL vmlinux 0x2b55c03f sock_inuse_get -EXPORT_SYMBOL_GPL vmlinux 0x2b58b268 appldata_unregister_ops -EXPORT_SYMBOL_GPL vmlinux 0x2ba81fd8 ipv6_proxy_select_ident -EXPORT_SYMBOL_GPL vmlinux 0x2bb150ec blk_mq_alloc_request_hctx +EXPORT_SYMBOL_GPL vmlinux 0x2b58d475 netlink_strict_get_check +EXPORT_SYMBOL_GPL vmlinux 0x2bc38279 gmap_translate EXPORT_SYMBOL_GPL vmlinux 0x2bd2915e kfree_strarray -EXPORT_SYMBOL_GPL vmlinux 0x2beb1f4e pci_epc_get_msix -EXPORT_SYMBOL_GPL vmlinux 0x2c11b86d fsstack_copy_attr_all -EXPORT_SYMBOL_GPL vmlinux 0x2c2b66de fwnode_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x2c1faefe noop_backing_dev_info EXPORT_SYMBOL_GPL vmlinux 0x2c3054f9 net_inc_ingress_queue EXPORT_SYMBOL_GPL vmlinux 0x2c36cc85 __tracepoint_unmap -EXPORT_SYMBOL_GPL vmlinux 0x2c421335 scsi_dh_set_params -EXPORT_SYMBOL_GPL vmlinux 0x2c5adaf3 __traceiter_sched_util_est_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x2c3f2eed tun_get_socket +EXPORT_SYMBOL_GPL vmlinux 0x2c41833f kthread_use_mm EXPORT_SYMBOL_GPL vmlinux 0x2c66ac85 devlink_info_serial_number_put -EXPORT_SYMBOL_GPL vmlinux 0x2c6952e2 blk_mq_quiesce_queue_nowait +EXPORT_SYMBOL_GPL vmlinux 0x2c6bf2be cpci_hp_register_controller EXPORT_SYMBOL_GPL vmlinux 0x2c7256dc synth_event_add_field +EXPORT_SYMBOL_GPL vmlinux 0x2c772d58 device_bind_driver EXPORT_SYMBOL_GPL vmlinux 0x2c790d4a __tracepoint_sched_util_est_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x2c7b0a8f tcp_register_congestion_control EXPORT_SYMBOL_GPL vmlinux 0x2c7d13e2 __ioread32_copy EXPORT_SYMBOL_GPL vmlinux 0x2c7db649 irq_dispose_mapping -EXPORT_SYMBOL_GPL vmlinux 0x2c9498e0 gmap_shadow_pgt -EXPORT_SYMBOL_GPL vmlinux 0x2cade4d0 fuse_do_open +EXPORT_SYMBOL_GPL vmlinux 0x2c8e3ae2 ping_seq_start +EXPORT_SYMBOL_GPL vmlinux 0x2cb4da06 tpm_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0x2cc96a5a platform_device_put +EXPORT_SYMBOL_GPL vmlinux 0x2cda9801 simple_attr_read +EXPORT_SYMBOL_GPL vmlinux 0x2ce5ff6c blk_queue_rq_timeout EXPORT_SYMBOL_GPL vmlinux 0x2ce61f33 __SCK__tp_func_br_fdb_add EXPORT_SYMBOL_GPL vmlinux 0x2cea32ee unregister_oldmem_pfn_is_ram +EXPORT_SYMBOL_GPL vmlinux 0x2cf73faa crypto_unregister_rng EXPORT_SYMBOL_GPL vmlinux 0x2cff3d27 register_kprobe -EXPORT_SYMBOL_GPL vmlinux 0x2d0556af debugfs_create_u8 -EXPORT_SYMBOL_GPL vmlinux 0x2d1ae49e fsstack_copy_inode_size +EXPORT_SYMBOL_GPL vmlinux 0x2d000924 nf_queue +EXPORT_SYMBOL_GPL vmlinux 0x2d023335 get_net_ns_by_pid +EXPORT_SYMBOL_GPL vmlinux 0x2d0d6d4c free_vm_area EXPORT_SYMBOL_GPL vmlinux 0x2d1b02d2 usermodehelper_read_lock_wait -EXPORT_SYMBOL_GPL vmlinux 0x2d1d61cc blk_mq_virtio_map_queues EXPORT_SYMBOL_GPL vmlinux 0x2d2dd36f kobj_ns_grab_current -EXPORT_SYMBOL_GPL vmlinux 0x2d2e4b38 wait_for_stable_page -EXPORT_SYMBOL_GPL vmlinux 0x2d320da6 sysfs_update_group -EXPORT_SYMBOL_GPL vmlinux 0x2d326189 add_swap_extent +EXPORT_SYMBOL_GPL vmlinux 0x2d38df8a debugfs_create_x16 EXPORT_SYMBOL_GPL vmlinux 0x2d41e6f5 __trace_puts +EXPORT_SYMBOL_GPL vmlinux 0x2d497e70 platform_bus_type EXPORT_SYMBOL_GPL vmlinux 0x2d5f69b3 rcu_read_unlock_strict -EXPORT_SYMBOL_GPL vmlinux 0x2d729d6f set_task_ioprio -EXPORT_SYMBOL_GPL vmlinux 0x2d73add9 task_active_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0x2dce5a2d __traceiter_remove_device_from_group -EXPORT_SYMBOL_GPL vmlinux 0x2df3e464 irq_domain_alloc_irqs_parent -EXPORT_SYMBOL_GPL vmlinux 0x2df8a0bf sk_msg_free +EXPORT_SYMBOL_GPL vmlinux 0x2d64b67c vmf_insert_pfn_pmd_prot +EXPORT_SYMBOL_GPL vmlinux 0x2d65714e md_stop_writes +EXPORT_SYMBOL_GPL vmlinux 0x2d7e97c4 irq_chip_set_type_parent +EXPORT_SYMBOL_GPL vmlinux 0x2dbe98a4 bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2dd54859 serdev_device_set_flow_control +EXPORT_SYMBOL_GPL vmlinux 0x2df2e1bb irq_domain_translate_twocell EXPORT_SYMBOL_GPL vmlinux 0x2e028ae6 rcutorture_get_gp_data EXPORT_SYMBOL_GPL vmlinux 0x2e1d43cf lzo1x_1_compress -EXPORT_SYMBOL_GPL vmlinux 0x2e1f09a5 xfrm_state_afinfo_get_rcu +EXPORT_SYMBOL_GPL vmlinux 0x2e202901 crypto_aead_setkey EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace -EXPORT_SYMBOL_GPL vmlinux 0x2e30daaa perf_trace_run_bpf_submit -EXPORT_SYMBOL_GPL vmlinux 0x2e404a29 __traceiter_wbc_writepage -EXPORT_SYMBOL_GPL vmlinux 0x2e435bb6 gpiochip_generic_config -EXPORT_SYMBOL_GPL vmlinux 0x2e610442 pci_epf_add_vepf +EXPORT_SYMBOL_GPL vmlinux 0x2e3b2bc6 crypto_stats_kpp_set_secret +EXPORT_SYMBOL_GPL vmlinux 0x2e434c0e request_firmware_direct +EXPORT_SYMBOL_GPL vmlinux 0x2e467e28 sk_clear_memalloc EXPORT_SYMBOL_GPL vmlinux 0x2e66298c __SCK__tp_func_sched_util_est_cfs_tp -EXPORT_SYMBOL_GPL vmlinux 0x2e714899 crypto_shoot_alg EXPORT_SYMBOL_GPL vmlinux 0x2e7f0499 seq_buf_printf -EXPORT_SYMBOL_GPL vmlinux 0x2e987e89 debugfs_create_regset32 -EXPORT_SYMBOL_GPL vmlinux 0x2ea110bf fuse_conn_put -EXPORT_SYMBOL_GPL vmlinux 0x2ea4a78c netlink_strict_get_check -EXPORT_SYMBOL_GPL vmlinux 0x2eb723d6 irq_domain_simple_ops +EXPORT_SYMBOL_GPL vmlinux 0x2e9185f5 tty_get_icount EXPORT_SYMBOL_GPL vmlinux 0x2ebb19fd execute_in_process_context -EXPORT_SYMBOL_GPL vmlinux 0x2ebd496e xfrm_audit_state_icvfail EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable -EXPORT_SYMBOL_GPL vmlinux 0x2ebe3c83 ncsi_stop_dev EXPORT_SYMBOL_GPL vmlinux 0x2ecc5b29 sbitmap_weight -EXPORT_SYMBOL_GPL vmlinux 0x2ed2e759 crypto_unregister_templates -EXPORT_SYMBOL_GPL vmlinux 0x2efd40fd mptcp_token_get_sock -EXPORT_SYMBOL_GPL vmlinux 0x2f02c7a9 __traceiter_neigh_update_done -EXPORT_SYMBOL_GPL vmlinux 0x2f1e4f05 locks_alloc_lock +EXPORT_SYMBOL_GPL vmlinux 0x2ed76a19 xdp_build_skb_from_frame +EXPORT_SYMBOL_GPL vmlinux 0x2eded147 anon_transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2ee1113a clone_private_mount EXPORT_SYMBOL_GPL vmlinux 0x2f1ea064 __SCK__tp_func_xdp_bulk_tx EXPORT_SYMBOL_GPL vmlinux 0x2f2c95c4 flush_work -EXPORT_SYMBOL_GPL vmlinux 0x2f2decc8 gpiod_get_array -EXPORT_SYMBOL_GPL vmlinux 0x2f43dcb8 device_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x2f3ddf76 tcf_dev_queue_xmit EXPORT_SYMBOL_GPL vmlinux 0x2f4880df static_key_slow_dec -EXPORT_SYMBOL_GPL vmlinux 0x2f4e800d perf_get_aux +EXPORT_SYMBOL_GPL vmlinux 0x2f48b67d serdev_device_get_tiocm EXPORT_SYMBOL_GPL vmlinux 0x2f53eaa2 srcutorture_get_gp_data EXPORT_SYMBOL_GPL vmlinux 0x2f64be23 alarm_start_relative -EXPORT_SYMBOL_GPL vmlinux 0x2f7202b9 pci_epc_get_msi -EXPORT_SYMBOL_GPL vmlinux 0x2f859a2f serdev_device_write -EXPORT_SYMBOL_GPL vmlinux 0x2fb29225 iommu_uapi_sva_unbind_gpasid -EXPORT_SYMBOL_GPL vmlinux 0x2fbf2f5a pci_epf_create +EXPORT_SYMBOL_GPL vmlinux 0x2f75a94b device_reprobe +EXPORT_SYMBOL_GPL vmlinux 0x2f7ec8d8 pktgen_xfrm_outer_mode_output +EXPORT_SYMBOL_GPL vmlinux 0x2f8d71f6 bd_prepare_to_claim EXPORT_SYMBOL_GPL vmlinux 0x2fc1e0fe kmem_valid_obj -EXPORT_SYMBOL_GPL vmlinux 0x3011790c platform_device_add -EXPORT_SYMBOL_GPL vmlinux 0x30126167 software_node_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x3028ecaa dw_pcie_wait_for_link -EXPORT_SYMBOL_GPL vmlinux 0x303dcc82 pci_epc_destroy -EXPORT_SYMBOL_GPL vmlinux 0x3056eeb4 iommu_dev_enable_feature -EXPORT_SYMBOL_GPL vmlinux 0x305c3007 badblocks_clear +EXPORT_SYMBOL_GPL vmlinux 0x2fd07aa8 bd_link_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0x2ff67369 __raw_v6_lookup +EXPORT_SYMBOL_GPL vmlinux 0x2fff9f66 blkg_conf_finish +EXPORT_SYMBOL_GPL vmlinux 0x300e9153 serdev_device_set_parity +EXPORT_SYMBOL_GPL vmlinux 0x301f4078 of_css +EXPORT_SYMBOL_GPL vmlinux 0x3048088d irq_domain_free_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x304b3d5b __fsnotify_inode_delete EXPORT_SYMBOL_GPL vmlinux 0x3061cfce ring_buffer_entries_cpu EXPORT_SYMBOL_GPL vmlinux 0x30696079 rhashtable_free_and_destroy -EXPORT_SYMBOL_GPL vmlinux 0x30ae7bd1 msg_zerocopy_alloc -EXPORT_SYMBOL_GPL vmlinux 0x30c90b8b inet6_csk_xmit +EXPORT_SYMBOL_GPL vmlinux 0x3070c85a __traceiter_pelt_dl_tp +EXPORT_SYMBOL_GPL vmlinux 0x30827360 ptp_parse_header +EXPORT_SYMBOL_GPL vmlinux 0x309602ea tcp_unregister_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0x30ac97d0 sch_frag_xmit_hook +EXPORT_SYMBOL_GPL vmlinux 0x30d37f03 pin_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0x30f62039 mmput +EXPORT_SYMBOL_GPL vmlinux 0x30f975f3 crypto_register_rng EXPORT_SYMBOL_GPL vmlinux 0x31019477 __ftrace_vbprintk -EXPORT_SYMBOL_GPL vmlinux 0x31150d7d espintcp_push_skb -EXPORT_SYMBOL_GPL vmlinux 0x31223984 bpf_prog_select_runtime EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave -EXPORT_SYMBOL_GPL vmlinux 0x31280f79 alloc_dax -EXPORT_SYMBOL_GPL vmlinux 0x312d1b15 iomap_file_buffered_write -EXPORT_SYMBOL_GPL vmlinux 0x313077ec synth_event_create -EXPORT_SYMBOL_GPL vmlinux 0x313a1852 pci_load_and_free_saved_state -EXPORT_SYMBOL_GPL vmlinux 0x317dc987 switchdev_handle_fdb_add_to_device -EXPORT_SYMBOL_GPL vmlinux 0x31818358 rtnl_delete_link +EXPORT_SYMBOL_GPL vmlinux 0x31269f25 serdev_device_write_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x313e7b07 is_skb_forwardable +EXPORT_SYMBOL_GPL vmlinux 0x314759fc bpf_prog_sub +EXPORT_SYMBOL_GPL vmlinux 0x316c42c7 create_signature +EXPORT_SYMBOL_GPL vmlinux 0x316ca65b validate_xmit_skb_list +EXPORT_SYMBOL_GPL vmlinux 0x3175e0e1 bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0x317e6e76 scsi_target_unblock EXPORT_SYMBOL_GPL vmlinux 0x3187490a __SCK__tp_func_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0x318c52ea pci_device_group +EXPORT_SYMBOL_GPL vmlinux 0x319a921b sk_psock_drop +EXPORT_SYMBOL_GPL vmlinux 0x31a0949c __vfs_setxattr_noperm EXPORT_SYMBOL_GPL vmlinux 0x31a95e8b ring_buffer_record_enable_cpu -EXPORT_SYMBOL_GPL vmlinux 0x31b2ce72 sbitmap_bitmap_show -EXPORT_SYMBOL_GPL vmlinux 0x31cc2c48 __traceiter_pelt_irq_tp EXPORT_SYMBOL_GPL vmlinux 0x31d3199b rhltable_init -EXPORT_SYMBOL_GPL vmlinux 0x31f06a1f ccw_device_get_chp_desc -EXPORT_SYMBOL_GPL vmlinux 0x31f187b3 sock_diag_register_inet_compat -EXPORT_SYMBOL_GPL vmlinux 0x3205aa73 security_path_truncate -EXPORT_SYMBOL_GPL vmlinux 0x3207fb1a skb_defer_rx_timestamp -EXPORT_SYMBOL_GPL vmlinux 0x3211cba4 tcp_bpf_sendmsg_redir +EXPORT_SYMBOL_GPL vmlinux 0x31e00f0f dm_suspended +EXPORT_SYMBOL_GPL vmlinux 0x31e4fb7c fwnode_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0x31ea92b3 relay_open +EXPORT_SYMBOL_GPL vmlinux 0x31ecffa5 pci_msi_mask_irq +EXPORT_SYMBOL_GPL vmlinux 0x31f25d26 devlink_param_driverinit_value_set +EXPORT_SYMBOL_GPL vmlinux 0x31ffd35f iommu_unmap +EXPORT_SYMBOL_GPL vmlinux 0x321c504e __traceiter_devlink_trap_report EXPORT_SYMBOL_GPL vmlinux 0x3224b2a9 mpi_read_raw_from_sgl -EXPORT_SYMBOL_GPL vmlinux 0x3229c4f9 get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0x32383b63 sk_msg_trim EXPORT_SYMBOL_GPL vmlinux 0x325888a3 __tracepoint_neigh_update -EXPORT_SYMBOL_GPL vmlinux 0x326933d3 kthread_use_mm -EXPORT_SYMBOL_GPL vmlinux 0x3298154d crypto_alloc_acomp_node -EXPORT_SYMBOL_GPL vmlinux 0x32a001bc tty_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0x326d129c fsnotify_put_group +EXPORT_SYMBOL_GPL vmlinux 0x327dd061 crypto_larval_kill +EXPORT_SYMBOL_GPL vmlinux 0x3294be9c tpm_get_timeouts EXPORT_SYMBOL_GPL vmlinux 0x32ab06cc irq_percpu_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0x32ab3c38 devm_gpiod_unhinge -EXPORT_SYMBOL_GPL vmlinux 0x32ac0d89 vfs_setlease +EXPORT_SYMBOL_GPL vmlinux 0x32b1da67 md_submit_discard_bio EXPORT_SYMBOL_GPL vmlinux 0x32bc0fcf preempt_notifier_dec EXPORT_SYMBOL_GPL vmlinux 0x32c3cb4e class_compat_register -EXPORT_SYMBOL_GPL vmlinux 0x32c83ca0 iomap_seek_data -EXPORT_SYMBOL_GPL vmlinux 0x32e51093 tty_buffer_unlock_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x32e99a56 fat_truncate_time EXPORT_SYMBOL_GPL vmlinux 0x32f536af kset_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0x32f77a8d rtnl_put_cacheinfo +EXPORT_SYMBOL_GPL vmlinux 0x32fa4738 devres_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x32fae53b netlink_add_tap +EXPORT_SYMBOL_GPL vmlinux 0x32ffeaec cn_add_callback EXPORT_SYMBOL_GPL vmlinux 0x330010b6 cpuset_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x3300e852 bio_add_zone_append_page EXPORT_SYMBOL_GPL vmlinux 0x330770ef unix_table_lock -EXPORT_SYMBOL_GPL vmlinux 0x330a270d pcie_aspm_capable -EXPORT_SYMBOL_GPL vmlinux 0x332668e3 crypto_unregister_skciphers -EXPORT_SYMBOL_GPL vmlinux 0x333d1983 device_create_with_groups -EXPORT_SYMBOL_GPL vmlinux 0x333fb2f6 class_find_device +EXPORT_SYMBOL_GPL vmlinux 0x330f986f cio_tm_start_key +EXPORT_SYMBOL_GPL vmlinux 0x3312b2cd bio_release_pages +EXPORT_SYMBOL_GPL vmlinux 0x33152e45 sysfs_groups_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x33163a76 l3mdev_master_ifindex_rcu +EXPORT_SYMBOL_GPL vmlinux 0x331bd68c devlink_port_params_register +EXPORT_SYMBOL_GPL vmlinux 0x332fc531 __netpoll_setup +EXPORT_SYMBOL_GPL vmlinux 0x33352f63 vp_modern_generation +EXPORT_SYMBOL_GPL vmlinux 0x33398663 task_cputime_adjusted +EXPORT_SYMBOL_GPL vmlinux 0x33446aab crypto_alloc_ahash +EXPORT_SYMBOL_GPL vmlinux 0x334abc1c sk_free_unlock_clone +EXPORT_SYMBOL_GPL vmlinux 0x334b4657 kvm_get_running_vcpu EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0x33681f7b crypto_register_acomps -EXPORT_SYMBOL_GPL vmlinux 0x3388a69a devlink_trap_policers_register -EXPORT_SYMBOL_GPL vmlinux 0x339de841 lwtunnel_encap_add_ops -EXPORT_SYMBOL_GPL vmlinux 0x33aad0bf bus_register -EXPORT_SYMBOL_GPL vmlinux 0x33d1727d kernfs_put -EXPORT_SYMBOL_GPL vmlinux 0x33eabbd5 sysfs_remove_link_from_group +EXPORT_SYMBOL_GPL vmlinux 0x336931f0 ncsi_vlan_rx_add_vid +EXPORT_SYMBOL_GPL vmlinux 0x3369729b serdev_controller_add +EXPORT_SYMBOL_GPL vmlinux 0x338f4056 kvm_s390_gisc_register +EXPORT_SYMBOL_GPL vmlinux 0x33aaeb66 iommu_group_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x33dfa4f7 blk_mq_unquiesce_queue +EXPORT_SYMBOL_GPL vmlinux 0x33e97e12 msg_zerocopy_put_abort EXPORT_SYMBOL_GPL vmlinux 0x33efc8c8 trace_clock_local +EXPORT_SYMBOL_GPL vmlinux 0x33f3c5a7 rcuwait_wake_up EXPORT_SYMBOL_GPL vmlinux 0x33f779c6 srcu_torture_stats_print -EXPORT_SYMBOL_GPL vmlinux 0x33f89340 kthread_park -EXPORT_SYMBOL_GPL vmlinux 0x33feab7f crypto_rng_reset -EXPORT_SYMBOL_GPL vmlinux 0x340e6f10 set_cpus_allowed_ptr -EXPORT_SYMBOL_GPL vmlinux 0x3431dad6 __traceiter_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0x34303552 dm_disk +EXPORT_SYMBOL_GPL vmlinux 0x343479be metadata_dst_free_percpu EXPORT_SYMBOL_GPL vmlinux 0x34407691 crypto_has_ahash EXPORT_SYMBOL_GPL vmlinux 0x344725ae __sbitmap_queue_get_shallow EXPORT_SYMBOL_GPL vmlinux 0x344e3c09 sbitmap_init_node EXPORT_SYMBOL_GPL vmlinux 0x3450ad94 mpi_set_ui -EXPORT_SYMBOL_GPL vmlinux 0x34522263 crypto_hash_walk_first -EXPORT_SYMBOL_GPL vmlinux 0x3474f56b fwnode_property_read_u32_array -EXPORT_SYMBOL_GPL vmlinux 0x34842c33 fuse_direct_io -EXPORT_SYMBOL_GPL vmlinux 0x348a7906 virtio_add_status -EXPORT_SYMBOL_GPL vmlinux 0x3492c3b4 mddev_unlock +EXPORT_SYMBOL_GPL vmlinux 0x348679c1 pci_epc_destroy +EXPORT_SYMBOL_GPL vmlinux 0x34942f20 irq_chip_ack_parent EXPORT_SYMBOL_GPL vmlinux 0x349843d1 scm_irq_handler +EXPORT_SYMBOL_GPL vmlinux 0x34a9a3b2 ping_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0x34c55c79 evm_verifyxattr +EXPORT_SYMBOL_GPL vmlinux 0x34c7c681 fsnotify EXPORT_SYMBOL_GPL vmlinux 0x34fc4ad3 __tracepoint_block_split -EXPORT_SYMBOL_GPL vmlinux 0x34ffae54 get_device -EXPORT_SYMBOL_GPL vmlinux 0x350af3a4 input_ff_create +EXPORT_SYMBOL_GPL vmlinux 0x350cab00 kernfs_put EXPORT_SYMBOL_GPL vmlinux 0x350f6ce5 tasklet_unlock_wait +EXPORT_SYMBOL_GPL vmlinux 0x35188bd8 crypto_shash_alg_has_setkey EXPORT_SYMBOL_GPL vmlinux 0x352ec68b bpf_offload_dev_destroy -EXPORT_SYMBOL_GPL vmlinux 0x35487e02 sk_psock_tls_strp_read -EXPORT_SYMBOL_GPL vmlinux 0x356b554b task_cputime_adjusted -EXPORT_SYMBOL_GPL vmlinux 0x3582ab23 fat_time_unix2fat +EXPORT_SYMBOL_GPL vmlinux 0x353a8129 blk_insert_cloned_request +EXPORT_SYMBOL_GPL vmlinux 0x356f166c devres_release_group +EXPORT_SYMBOL_GPL vmlinux 0x3572f4a3 virtqueue_is_broken EXPORT_SYMBOL_GPL vmlinux 0x3584114e alarm_forward -EXPORT_SYMBOL_GPL vmlinux 0x35938001 dax_writeback_mapping_range -EXPORT_SYMBOL_GPL vmlinux 0x35addd49 platform_get_mem_or_io -EXPORT_SYMBOL_GPL vmlinux 0x35b21a7c devlink_port_param_driverinit_value_set -EXPORT_SYMBOL_GPL vmlinux 0x35c91dbe clean_acked_data_enable -EXPORT_SYMBOL_GPL vmlinux 0x35d4062b fscrypt_file_open -EXPORT_SYMBOL_GPL vmlinux 0x35d89e09 md_allow_write +EXPORT_SYMBOL_GPL vmlinux 0x3594c5b5 __traceiter_sched_cpu_capacity_tp +EXPORT_SYMBOL_GPL vmlinux 0x35d6bd38 vfs_fallocate +EXPORT_SYMBOL_GPL vmlinux 0x35f2fdb9 sock_diag_unregister +EXPORT_SYMBOL_GPL vmlinux 0x36067ecb invalidate_inode_pages2_range EXPORT_SYMBOL_GPL vmlinux 0x36075bb5 iommu_group_register_notifier EXPORT_SYMBOL_GPL vmlinux 0x3607c5d7 sthyi_fill +EXPORT_SYMBOL_GPL vmlinux 0x3611991e get_cpu_device EXPORT_SYMBOL_GPL vmlinux 0x36242943 switchdev_deferred_process -EXPORT_SYMBOL_GPL vmlinux 0x3626f50b evict_inodes -EXPORT_SYMBOL_GPL vmlinux 0x362c3b42 devlink_params_publish -EXPORT_SYMBOL_GPL vmlinux 0x362e166b fuse_fill_super_common -EXPORT_SYMBOL_GPL vmlinux 0x363eb574 page_endio +EXPORT_SYMBOL_GPL vmlinux 0x3638c4d0 dst_cache_get_ip6 EXPORT_SYMBOL_GPL vmlinux 0x364354ba rhashtable_destroy +EXPORT_SYMBOL_GPL vmlinux 0x36564c55 pci_epf_free_space EXPORT_SYMBOL_GPL vmlinux 0x365b45d1 __tracepoint_sched_update_nr_running_tp -EXPORT_SYMBOL_GPL vmlinux 0x3670dc0e fuse_get_unique -EXPORT_SYMBOL_GPL vmlinux 0x3688d1bf dma_buf_dynamic_attach +EXPORT_SYMBOL_GPL vmlinux 0x368dc1a2 vp_modern_config_vector +EXPORT_SYMBOL_GPL vmlinux 0x369c1ede ping_common_sendmsg EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot -EXPORT_SYMBOL_GPL vmlinux 0x36a42746 vp_modern_get_features +EXPORT_SYMBOL_GPL vmlinux 0x36bc8649 ip6_sk_dst_lookup_flow EXPORT_SYMBOL_GPL vmlinux 0x36c80c36 klist_add_tail -EXPORT_SYMBOL_GPL vmlinux 0x36cefde2 percpu_free_rwsem -EXPORT_SYMBOL_GPL vmlinux 0x36cf0a9a trace_event_buffer_commit -EXPORT_SYMBOL_GPL vmlinux 0x36eb8e46 __auxiliary_device_add +EXPORT_SYMBOL_GPL vmlinux 0x36fd2aa9 iommu_device_unlink +EXPORT_SYMBOL_GPL vmlinux 0x371a6eb1 blk_trace_startstop EXPORT_SYMBOL_GPL vmlinux 0x3725b439 srcu_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0x3742d342 serdev_device_set_baudrate +EXPORT_SYMBOL_GPL vmlinux 0x372bae27 gmap_pmdp_invalidate +EXPORT_SYMBOL_GPL vmlinux 0x37302376 securityfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x37389d2a __rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x375526ce device_add_properties EXPORT_SYMBOL_GPL vmlinux 0x3761d215 idr_find -EXPORT_SYMBOL_GPL vmlinux 0x37794bf4 dma_buf_mmap -EXPORT_SYMBOL_GPL vmlinux 0x378e2abf crypto_register_aead +EXPORT_SYMBOL_GPL vmlinux 0x3790fe72 skb_cow_data +EXPORT_SYMBOL_GPL vmlinux 0x379899ba devlink_port_health_reporter_create EXPORT_SYMBOL_GPL vmlinux 0x37bf7be3 percpu_ref_exit -EXPORT_SYMBOL_GPL vmlinux 0x37c19b2e bsg_register_queue -EXPORT_SYMBOL_GPL vmlinux 0x37c341ec fib_table_lookup -EXPORT_SYMBOL_GPL vmlinux 0x37e4a3ae irq_domain_create_legacy +EXPORT_SYMBOL_GPL vmlinux 0x37dfbb4b blk_queue_max_discard_segments EXPORT_SYMBOL_GPL vmlinux 0x37fef2f2 irq_force_affinity -EXPORT_SYMBOL_GPL vmlinux 0x38075286 cgroup_get_from_id EXPORT_SYMBOL_GPL vmlinux 0x38374815 clear_selection +EXPORT_SYMBOL_GPL vmlinux 0x3838639c ncsi_stop_dev +EXPORT_SYMBOL_GPL vmlinux 0x383b3ce8 cgroup_get_from_path EXPORT_SYMBOL_GPL vmlinux 0x3844a4f0 ftrace_set_notrace EXPORT_SYMBOL_GPL vmlinux 0x38493a8b idr_alloc_u32 -EXPORT_SYMBOL_GPL vmlinux 0x385ed8e6 __iomap_dio_rw EXPORT_SYMBOL_GPL vmlinux 0x386d6eff crypto_chain -EXPORT_SYMBOL_GPL vmlinux 0x3876f83c loop_backing_file +EXPORT_SYMBOL_GPL vmlinux 0x38831b75 metadata_dst_free +EXPORT_SYMBOL_GPL vmlinux 0x38832aa7 component_unbind_all EXPORT_SYMBOL_GPL vmlinux 0x38846835 alarm_init +EXPORT_SYMBOL_GPL vmlinux 0x38887bab fwnode_device_is_available +EXPORT_SYMBOL_GPL vmlinux 0x3889ac30 relay_buf_full EXPORT_SYMBOL_GPL vmlinux 0x389b64a2 static_key_count EXPORT_SYMBOL_GPL vmlinux 0x38aa1397 gpiod_add_lookup_table -EXPORT_SYMBOL_GPL vmlinux 0x38b2aefc __account_locked_vm -EXPORT_SYMBOL_GPL vmlinux 0x38b36e6e bsg_remove_queue -EXPORT_SYMBOL_GPL vmlinux 0x38c7d10e scsi_nl_sock +EXPORT_SYMBOL_GPL vmlinux 0x38da43d7 virtio_add_status EXPORT_SYMBOL_GPL vmlinux 0x38e1fde7 mpi_set -EXPORT_SYMBOL_GPL vmlinux 0x38e4bf01 metadata_dst_free_percpu -EXPORT_SYMBOL_GPL vmlinux 0x38efb0ec devm_remove_action -EXPORT_SYMBOL_GPL vmlinux 0x391d4713 blk_trace_remove -EXPORT_SYMBOL_GPL vmlinux 0x393fa6ef param_ops_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0x38ed1e7b sbitmap_show +EXPORT_SYMBOL_GPL vmlinux 0x38fb891c tty_put_char +EXPORT_SYMBOL_GPL vmlinux 0x38fdf688 pci_enable_ats +EXPORT_SYMBOL_GPL vmlinux 0x39331a10 ethtool_set_ethtool_phy_ops +EXPORT_SYMBOL_GPL vmlinux 0x3936ff27 devm_serdev_device_open +EXPORT_SYMBOL_GPL vmlinux 0x393e0e4c iterate_mounts EXPORT_SYMBOL_GPL vmlinux 0x393ffa6f asymmetric_key_generate_id -EXPORT_SYMBOL_GPL vmlinux 0x394eedc2 pci_debug_msg_id EXPORT_SYMBOL_GPL vmlinux 0x39579087 sfp_may_have_phy -EXPORT_SYMBOL_GPL vmlinux 0x3973161e __platform_create_bundle +EXPORT_SYMBOL_GPL vmlinux 0x39650876 iommu_unmap_fast +EXPORT_SYMBOL_GPL vmlinux 0x3967c6cd crypto_type_has_alg EXPORT_SYMBOL_GPL vmlinux 0x39791a24 start_poll_synchronize_srcu -EXPORT_SYMBOL_GPL vmlinux 0x397b35fb bpf_prog_create EXPORT_SYMBOL_GPL vmlinux 0x397e2142 __SCK__tp_func_sched_cpu_capacity_tp +EXPORT_SYMBOL_GPL vmlinux 0x3980913e devm_bitmap_alloc +EXPORT_SYMBOL_GPL vmlinux 0x3983f135 __fscrypt_inode_uses_inline_crypto +EXPORT_SYMBOL_GPL vmlinux 0x39a3aea8 ethnl_cable_test_step EXPORT_SYMBOL_GPL vmlinux 0x39a7affc driver_deferred_probe_timeout -EXPORT_SYMBOL_GPL vmlinux 0x39b9b779 tcp_register_ulp EXPORT_SYMBOL_GPL vmlinux 0x39c32aca __SCK__tp_func_neigh_event_send_done -EXPORT_SYMBOL_GPL vmlinux 0x39c7ce6f pci_user_write_config_word -EXPORT_SYMBOL_GPL vmlinux 0x39ce597a skcipher_walk_aead_decrypt -EXPORT_SYMBOL_GPL vmlinux 0x39d339c6 blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0x39ce5765 crypto_register_skciphers EXPORT_SYMBOL_GPL vmlinux 0x39ded098 rdma_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x39f758f6 pcie_port_bus_type EXPORT_SYMBOL_GPL vmlinux 0x39fd83db halt_poll_ns_shrink -EXPORT_SYMBOL_GPL vmlinux 0x3a197c54 serdev_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0x3a1a14eb fwnode_graph_get_remote_endpoint EXPORT_SYMBOL_GPL vmlinux 0x3a24fb2f percpu_ref_resurrect EXPORT_SYMBOL_GPL vmlinux 0x3a2c70ba sbitmap_queue_init_node -EXPORT_SYMBOL_GPL vmlinux 0x3a3380d7 __audit_inode_child +EXPORT_SYMBOL_GPL vmlinux 0x3a4da3be crypto_stats_akcipher_decrypt EXPORT_SYMBOL_GPL vmlinux 0x3a536bd7 ring_buffer_read_finish EXPORT_SYMBOL_GPL vmlinux 0x3a55981a static_key_enable_cpuslocked -EXPORT_SYMBOL_GPL vmlinux 0x3a6992f8 balloon_page_list_enqueue EXPORT_SYMBOL_GPL vmlinux 0x3a74e484 __tracepoint_sched_util_est_se_tp -EXPORT_SYMBOL_GPL vmlinux 0x3a7caf6f dma_need_sync +EXPORT_SYMBOL_GPL vmlinux 0x3a759be1 __xdp_build_skb_from_frame +EXPORT_SYMBOL_GPL vmlinux 0x3a771b11 gmap_shadow_pgt EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial -EXPORT_SYMBOL_GPL vmlinux 0x3aa5ce07 devlink_traps_register -EXPORT_SYMBOL_GPL vmlinux 0x3aa66ba6 iomap_readahead -EXPORT_SYMBOL_GPL vmlinux 0x3ab37dc6 gpiochip_remove -EXPORT_SYMBOL_GPL vmlinux 0x3abab398 fwnode_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0x3ade0e1f crypto_comp_decompress -EXPORT_SYMBOL_GPL vmlinux 0x3adfe72e devres_open_group -EXPORT_SYMBOL_GPL vmlinux 0x3ae0b480 crypto_unregister_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x3afea697 irq_chip_set_affinity_parent -EXPORT_SYMBOL_GPL vmlinux 0x3b1571df devres_get -EXPORT_SYMBOL_GPL vmlinux 0x3b1f10d8 __netif_set_xps_queue -EXPORT_SYMBOL_GPL vmlinux 0x3b263907 shash_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x3b5ad1c8 vfs_lock_file +EXPORT_SYMBOL_GPL vmlinux 0x3aaa777b scsi_dh_attached_handler_name +EXPORT_SYMBOL_GPL vmlinux 0x3abbc127 platform_get_mem_or_io +EXPORT_SYMBOL_GPL vmlinux 0x3ad9d5db devlink_port_attrs_pci_vf_set +EXPORT_SYMBOL_GPL vmlinux 0x3af6ada5 __traceiter_pelt_irq_tp +EXPORT_SYMBOL_GPL vmlinux 0x3afbb5e6 sysfs_remove_mount_point +EXPORT_SYMBOL_GPL vmlinux 0x3b481c35 wait_on_page_writeback EXPORT_SYMBOL_GPL vmlinux 0x3b610584 __tracepoint_sched_cpu_capacity_tp -EXPORT_SYMBOL_GPL vmlinux 0x3b6a4ae0 desc_to_gpio -EXPORT_SYMBOL_GPL vmlinux 0x3b6b43d2 dw_pcie_ep_linkup -EXPORT_SYMBOL_GPL vmlinux 0x3b6f6815 ipv6_find_tlv +EXPORT_SYMBOL_GPL vmlinux 0x3b6c4fb4 register_pernet_device EXPORT_SYMBOL_GPL vmlinux 0x3b95f543 klp_shadow_free -EXPORT_SYMBOL_GPL vmlinux 0x3b9a241b icmp_build_probe EXPORT_SYMBOL_GPL vmlinux 0x3ba01b47 get_compat_sigset -EXPORT_SYMBOL_GPL vmlinux 0x3bd66ee2 tpm2_get_tpm_pt +EXPORT_SYMBOL_GPL vmlinux 0x3ba8f21c platform_unregister_drivers +EXPORT_SYMBOL_GPL vmlinux 0x3baf4024 devlink_region_snapshot_id_put +EXPORT_SYMBOL_GPL vmlinux 0x3bcc146f umd_load_blob +EXPORT_SYMBOL_GPL vmlinux 0x3bd0c437 skcipher_walk_complete +EXPORT_SYMBOL_GPL vmlinux 0x3bd787ae fwnode_property_match_string EXPORT_SYMBOL_GPL vmlinux 0x3bdb5d28 alg_test EXPORT_SYMBOL_GPL vmlinux 0x3bdc0e0c __tracepoint_neigh_event_send_done -EXPORT_SYMBOL_GPL vmlinux 0x3be510b6 blk_queue_set_zoned -EXPORT_SYMBOL_GPL vmlinux 0x3becb96b cio_cancel_halt_clear +EXPORT_SYMBOL_GPL vmlinux 0x3be4362e crypto_stats_kpp_generate_public_key +EXPORT_SYMBOL_GPL vmlinux 0x3bef24bb md_rdev_init EXPORT_SYMBOL_GPL vmlinux 0x3bf17755 mpi_read_buffer +EXPORT_SYMBOL_GPL vmlinux 0x3bfc348a md_bitmap_load +EXPORT_SYMBOL_GPL vmlinux 0x3bfc45dc device_for_each_child +EXPORT_SYMBOL_GPL vmlinux 0x3c1bc19e dw_pcie_wait_for_link EXPORT_SYMBOL_GPL vmlinux 0x3c1c3725 rcu_fwd_progress_check -EXPORT_SYMBOL_GPL vmlinux 0x3c22e88c put_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0x3c39cfa6 scsi_internal_device_block_nowait +EXPORT_SYMBOL_GPL vmlinux 0x3c1ce4d3 switchdev_handle_port_obj_add +EXPORT_SYMBOL_GPL vmlinux 0x3c22192e mmu_notifier_range_update_to_read_only EXPORT_SYMBOL_GPL vmlinux 0x3c3c85d8 __SCK__tp_func_kfree_skb -EXPORT_SYMBOL_GPL vmlinux 0x3c469115 sk_attach_filter -EXPORT_SYMBOL_GPL vmlinux 0x3c531087 driver_for_each_device EXPORT_SYMBOL_GPL vmlinux 0x3c681dc4 ring_buffer_record_disable -EXPORT_SYMBOL_GPL vmlinux 0x3c6cc449 crypto_mod_get -EXPORT_SYMBOL_GPL vmlinux 0x3c738453 tty_buffer_lock_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x3c8282c8 fscrypt_set_test_dummy_encryption -EXPORT_SYMBOL_GPL vmlinux 0x3c94ecb5 apply_to_page_range +EXPORT_SYMBOL_GPL vmlinux 0x3c971ee5 input_ff_destroy +EXPORT_SYMBOL_GPL vmlinux 0x3ca0290a iommu_aux_attach_device EXPORT_SYMBOL_GPL vmlinux 0x3ca4de56 sbitmap_queue_wake_all +EXPORT_SYMBOL_GPL vmlinux 0x3cb12b52 devlink_rate_nodes_destroy +EXPORT_SYMBOL_GPL vmlinux 0x3cbc29cb __traceiter_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0x3cbc8196 crypto_rng_reset EXPORT_SYMBOL_GPL vmlinux 0x3cc60807 evm_set_key EXPORT_SYMBOL_GPL vmlinux 0x3cd06035 add_input_randomness EXPORT_SYMBOL_GPL vmlinux 0x3cd1b510 trace_vbprintk -EXPORT_SYMBOL_GPL vmlinux 0x3cdd3682 devlink_dpipe_headers_unregister -EXPORT_SYMBOL_GPL vmlinux 0x3ce56da8 iommu_group_remove_device -EXPORT_SYMBOL_GPL vmlinux 0x3d01caa8 firmware_request_platform -EXPORT_SYMBOL_GPL vmlinux 0x3d06a835 debugfs_create_dir -EXPORT_SYMBOL_GPL vmlinux 0x3d1a0612 sysfs_add_file_to_group -EXPORT_SYMBOL_GPL vmlinux 0x3d4e5120 __traceiter_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0x3ce37e6c blk_rq_err_bytes +EXPORT_SYMBOL_GPL vmlinux 0x3cf6342a ip6_route_lookup +EXPORT_SYMBOL_GPL vmlinux 0x3cfdd9ec sysfs_add_link_to_group +EXPORT_SYMBOL_GPL vmlinux 0x3d19cc27 perf_aux_output_begin +EXPORT_SYMBOL_GPL vmlinux 0x3d1e3142 __sock_recv_wifi_status +EXPORT_SYMBOL_GPL vmlinux 0x3d28d706 trace_define_field +EXPORT_SYMBOL_GPL vmlinux 0x3d3a5f70 ccw_device_get_chid EXPORT_SYMBOL_GPL vmlinux 0x3d510a7b rcu_jiffies_till_stall_check -EXPORT_SYMBOL_GPL vmlinux 0x3d641aa7 irq_domain_associate_many -EXPORT_SYMBOL_GPL vmlinux 0x3d6893e5 kvm_debugfs_dir EXPORT_SYMBOL_GPL vmlinux 0x3d866e05 __SCK__tp_func_block_rq_insert -EXPORT_SYMBOL_GPL vmlinux 0x3d8dae25 ip_route_output_flow -EXPORT_SYMBOL_GPL vmlinux 0x3da6e914 irq_chip_unmask_parent +EXPORT_SYMBOL_GPL vmlinux 0x3d99704b device_dma_supported EXPORT_SYMBOL_GPL vmlinux 0x3daa2540 nf_hooks_lwtunnel_enabled -EXPORT_SYMBOL_GPL vmlinux 0x3de29292 securityfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0x3db5ada9 fat_attach EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final EXPORT_SYMBOL_GPL vmlinux 0x3df79a5e hwrng_register -EXPORT_SYMBOL_GPL vmlinux 0x3e0c64de blk_ksm_is_superset -EXPORT_SYMBOL_GPL vmlinux 0x3e0cd984 gpiod_get_index -EXPORT_SYMBOL_GPL vmlinux 0x3e105d99 tty_get_icount -EXPORT_SYMBOL_GPL vmlinux 0x3e1a8974 tty_prepare_flip_string -EXPORT_SYMBOL_GPL vmlinux 0x3e381649 evm_inode_init_security -EXPORT_SYMBOL_GPL vmlinux 0x3e5d0bc7 blk_abort_request +EXPORT_SYMBOL_GPL vmlinux 0x3e0e6b4c switchdev_handle_port_obj_del +EXPORT_SYMBOL_GPL vmlinux 0x3e2a4f50 irq_chip_release_resources_parent +EXPORT_SYMBOL_GPL vmlinux 0x3e2ae601 shmem_truncate_range +EXPORT_SYMBOL_GPL vmlinux 0x3e2ebc2e blk_mq_queue_inflight +EXPORT_SYMBOL_GPL vmlinux 0x3e636d2b user_update EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer -EXPORT_SYMBOL_GPL vmlinux 0x3e9b80f1 scsi_mode_select +EXPORT_SYMBOL_GPL vmlinux 0x3e8bb38c fscrypt_set_context EXPORT_SYMBOL_GPL vmlinux 0x3ea01071 xas_clear_mark -EXPORT_SYMBOL_GPL vmlinux 0x3ea84cf5 devm_gpiod_get -EXPORT_SYMBOL_GPL vmlinux 0x3ee09be5 kthread_cancel_delayed_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x3eb873ca bus_remove_file EXPORT_SYMBOL_GPL vmlinux 0x3ef051c8 crypto_inc EXPORT_SYMBOL_GPL vmlinux 0x3efd1889 dax_direct_access +EXPORT_SYMBOL_GPL vmlinux 0x3f04119a raw_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x3f1dd647 sched_set_fifo EXPORT_SYMBOL_GPL vmlinux 0x3f2092e3 fl6_update_dst -EXPORT_SYMBOL_GPL vmlinux 0x3f2c804d pktgen_xfrm_outer_mode_output -EXPORT_SYMBOL_GPL vmlinux 0x3f467bd4 hvc_poll -EXPORT_SYMBOL_GPL vmlinux 0x3f5b1cc2 device_remove_file -EXPORT_SYMBOL_GPL vmlinux 0x3f7427b7 devlink_port_attrs_pci_pf_set +EXPORT_SYMBOL_GPL vmlinux 0x3f50a29d fsverity_prepare_setattr +EXPORT_SYMBOL_GPL vmlinux 0x3f59d585 espintcp_push_skb EXPORT_SYMBOL_GPL vmlinux 0x3f84bcd7 dax_alive EXPORT_SYMBOL_GPL vmlinux 0x3f8ab72e devlink_fmsg_bool_put -EXPORT_SYMBOL_GPL vmlinux 0x3fa697e0 devm_gpiod_get_index -EXPORT_SYMBOL_GPL vmlinux 0x3fab4239 pci_create_root_bus -EXPORT_SYMBOL_GPL vmlinux 0x3fbe5e74 pci_bus_max_busnr +EXPORT_SYMBOL_GPL vmlinux 0x3f93c257 pci_bridge_secondary_bus_reset +EXPORT_SYMBOL_GPL vmlinux 0x3f998ced ethnl_cable_test_free EXPORT_SYMBOL_GPL vmlinux 0x3fc004ad sbitmap_get -EXPORT_SYMBOL_GPL vmlinux 0x3fc92d41 trace_event_buffer_lock_reserve -EXPORT_SYMBOL_GPL vmlinux 0x3fe49776 cio_cancel EXPORT_SYMBOL_GPL vmlinux 0x3fe6c346 devlink_fmsg_binary_pair_put -EXPORT_SYMBOL_GPL vmlinux 0x3fe7dd34 devm_fwnode_gpiod_get_index EXPORT_SYMBOL_GPL vmlinux 0x3ff82085 public_key_signature_free EXPORT_SYMBOL_GPL vmlinux 0x3ffdacf3 timerqueue_iterate_next -EXPORT_SYMBOL_GPL vmlinux 0x402d1b22 device_get_named_child_node +EXPORT_SYMBOL_GPL vmlinux 0x4000e70b fwnode_get_named_child_node +EXPORT_SYMBOL_GPL vmlinux 0x40057f55 cio_start +EXPORT_SYMBOL_GPL vmlinux 0x401d6f42 d_exchange +EXPORT_SYMBOL_GPL vmlinux 0x403ccfd1 rtnl_delete_link EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one -EXPORT_SYMBOL_GPL vmlinux 0x4041689f pingv6_prot -EXPORT_SYMBOL_GPL vmlinux 0x4047781b rtnl_af_register +EXPORT_SYMBOL_GPL vmlinux 0x404bff46 netlink_has_listeners EXPORT_SYMBOL_GPL vmlinux 0x406c4cb1 hrtimer_resolution +EXPORT_SYMBOL_GPL vmlinux 0x40717ff5 tty_port_unregister_device EXPORT_SYMBOL_GPL vmlinux 0x4071b517 out_of_line_wait_on_bit_timeout -EXPORT_SYMBOL_GPL vmlinux 0x407aa503 pci_generic_config_write32 -EXPORT_SYMBOL_GPL vmlinux 0x40881eec xdp_rxq_info_is_reg -EXPORT_SYMBOL_GPL vmlinux 0x408cfd44 acct_bioset_exit +EXPORT_SYMBOL_GPL vmlinux 0x407b3f50 sysfs_remove_file_from_group +EXPORT_SYMBOL_GPL vmlinux 0x407c0fcb crypto_register_kpp +EXPORT_SYMBOL_GPL vmlinux 0x408d21d3 sysfs_group_change_owner EXPORT_SYMBOL_GPL vmlinux 0x4099f919 tun_ptr_free EXPORT_SYMBOL_GPL vmlinux 0x40a13568 vbin_printf -EXPORT_SYMBOL_GPL vmlinux 0x40aea934 sock_map_close -EXPORT_SYMBOL_GPL vmlinux 0x40db78ce ethnl_cable_test_result -EXPORT_SYMBOL_GPL vmlinux 0x40e04e87 skb_zerocopy_iter_stream EXPORT_SYMBOL_GPL vmlinux 0x40f8b94e ring_buffer_iter_dropped EXPORT_SYMBOL_GPL vmlinux 0x40f8bd4e klist_add_before -EXPORT_SYMBOL_GPL vmlinux 0x40f92fe8 __page_mapcount -EXPORT_SYMBOL_GPL vmlinux 0x40fd6cce scsi_flush_work -EXPORT_SYMBOL_GPL vmlinux 0x410272c4 irqchip_fwnode_ops -EXPORT_SYMBOL_GPL vmlinux 0x4102aa33 encrypt_blob +EXPORT_SYMBOL_GPL vmlinux 0x410a4823 fscrypt_fname_siphash EXPORT_SYMBOL_GPL vmlinux 0x410f47ef scatterwalk_copychunks -EXPORT_SYMBOL_GPL vmlinux 0x412bc0ab iommu_domain_free EXPORT_SYMBOL_GPL vmlinux 0x412bc681 ring_buffer_empty_cpu -EXPORT_SYMBOL_GPL vmlinux 0x4145aa4d devlink_unregister -EXPORT_SYMBOL_GPL vmlinux 0x41479906 fwnode_device_is_available -EXPORT_SYMBOL_GPL vmlinux 0x414b312e tcp_reno_undo_cwnd -EXPORT_SYMBOL_GPL vmlinux 0x4151dff7 skb_zerocopy_headlen -EXPORT_SYMBOL_GPL vmlinux 0x415a776c to_software_node -EXPORT_SYMBOL_GPL vmlinux 0x41721972 sk_msg_return +EXPORT_SYMBOL_GPL vmlinux 0x412cb119 handle_untracked_irq +EXPORT_SYMBOL_GPL vmlinux 0x412ff462 __platform_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x414a1517 device_get_named_child_node +EXPORT_SYMBOL_GPL vmlinux 0x415fc6a2 iptunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0x4173e113 blk_mq_quiesce_queue_nowait +EXPORT_SYMBOL_GPL vmlinux 0x4176ae08 sock_prot_inuse_get EXPORT_SYMBOL_GPL vmlinux 0x417d8076 dax_zero_page_range EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval +EXPORT_SYMBOL_GPL vmlinux 0x4194a2f0 platform_add_devices EXPORT_SYMBOL_GPL vmlinux 0x419e7efd sfp_module_stop -EXPORT_SYMBOL_GPL vmlinux 0x41a1bed3 dma_alloc_noncontiguous -EXPORT_SYMBOL_GPL vmlinux 0x41a8cb2e trace_event_reg +EXPORT_SYMBOL_GPL vmlinux 0x41a3bd8e devlink_reload_disable +EXPORT_SYMBOL_GPL vmlinux 0x41aabd04 driver_remove_file EXPORT_SYMBOL_GPL vmlinux 0x41b9a6e6 bsg_unregister_queue EXPORT_SYMBOL_GPL vmlinux 0x41d2948d property_entries_dup -EXPORT_SYMBOL_GPL vmlinux 0x41d44c2b vfs_fallocate -EXPORT_SYMBOL_GPL vmlinux 0x41e8cf7d ipv4_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0x41ed3cec eventfd_ctx_remove_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0x41ef20f5 unwind_next_frame EXPORT_SYMBOL_GPL vmlinux 0x41fb68cb copy_from_user_nofault -EXPORT_SYMBOL_GPL vmlinux 0x421ece5d gpiod_set_raw_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x42211169 pci_intx -EXPORT_SYMBOL_GPL vmlinux 0x42353ee9 dma_map_sgtable -EXPORT_SYMBOL_GPL vmlinux 0x4257ecf6 skb_gso_validate_network_len +EXPORT_SYMBOL_GPL vmlinux 0x421a0c35 security_inode_create +EXPORT_SYMBOL_GPL vmlinux 0x42462ff8 handle_bad_irq +EXPORT_SYMBOL_GPL vmlinux 0x42749c0c pci_epc_clear_bar EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active -EXPORT_SYMBOL_GPL vmlinux 0x42991836 strp_process -EXPORT_SYMBOL_GPL vmlinux 0x429956ec fsnotify_add_mark +EXPORT_SYMBOL_GPL vmlinux 0x42a914bb sched_trace_cfs_rq_avg EXPORT_SYMBOL_GPL vmlinux 0x42c00d62 __wake_up_locked -EXPORT_SYMBOL_GPL vmlinux 0x42d7725f __page_file_index -EXPORT_SYMBOL_GPL vmlinux 0x42d80e30 evm_verifyxattr +EXPORT_SYMBOL_GPL vmlinux 0x42cf6821 blk_queue_required_elevator_features +EXPORT_SYMBOL_GPL vmlinux 0x42e694f7 __irq_set_handler EXPORT_SYMBOL_GPL vmlinux 0x42e9d0da ring_buffer_unlock_commit -EXPORT_SYMBOL_GPL vmlinux 0x4300805f perf_pmu_register -EXPORT_SYMBOL_GPL vmlinux 0x430c5d91 eventfd_ctx_fileget +EXPORT_SYMBOL_GPL vmlinux 0x42f82ddd fwnode_find_reference +EXPORT_SYMBOL_GPL vmlinux 0x43039cc0 dm_bio_get_target_bio_nr EXPORT_SYMBOL_GPL vmlinux 0x430d88ec __traceiter_arm_event EXPORT_SYMBOL_GPL vmlinux 0x430fa18b cpu_topology -EXPORT_SYMBOL_GPL vmlinux 0x435009c6 __fib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x435f3bb3 sysfs_groups_change_owner -EXPORT_SYMBOL_GPL vmlinux 0x436174a7 devlink_port_attrs_set +EXPORT_SYMBOL_GPL vmlinux 0x431b2f8b xfrm_audit_policy_add +EXPORT_SYMBOL_GPL vmlinux 0x436772fd register_pernet_subsys EXPORT_SYMBOL_GPL vmlinux 0x436d817f mpi_clear_bit -EXPORT_SYMBOL_GPL vmlinux 0x43704e49 crypto_register_alg -EXPORT_SYMBOL_GPL vmlinux 0x437dfb26 bio_add_zone_append_page +EXPORT_SYMBOL_GPL vmlinux 0x4377b650 sysfs_remove_link_from_group EXPORT_SYMBOL_GPL vmlinux 0x437eb1df ipv6_mod_enabled -EXPORT_SYMBOL_GPL vmlinux 0x438112ba fscrypt_symlink_getattr EXPORT_SYMBOL_GPL vmlinux 0x4388497f xa_delete_node -EXPORT_SYMBOL_GPL vmlinux 0x43910568 virtqueue_get_vring -EXPORT_SYMBOL_GPL vmlinux 0x43918072 skb_to_sgvec -EXPORT_SYMBOL_GPL vmlinux 0x439ae7f7 ip6_dst_lookup -EXPORT_SYMBOL_GPL vmlinux 0x439dfa13 sock_diag_check_cookie +EXPORT_SYMBOL_GPL vmlinux 0x439163fb gpiod_is_active_low +EXPORT_SYMBOL_GPL vmlinux 0x439de129 trace_array_put EXPORT_SYMBOL_GPL vmlinux 0x43aa319e lease_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x43b50020 crypto_alg_extsize +EXPORT_SYMBOL_GPL vmlinux 0x43b4696f tpmm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0x43b69355 debugfs_create_size_t EXPORT_SYMBOL_GPL vmlinux 0x43c33665 isc_unregister -EXPORT_SYMBOL_GPL vmlinux 0x43c7dd09 fscrypt_mergeable_bio +EXPORT_SYMBOL_GPL vmlinux 0x43e5475d ipv6_dup_options EXPORT_SYMBOL_GPL vmlinux 0x43f92edd wait_for_initramfs EXPORT_SYMBOL_GPL vmlinux 0x4401e6c2 mpi_cmpabs +EXPORT_SYMBOL_GPL vmlinux 0x440ab78b devres_remove EXPORT_SYMBOL_GPL vmlinux 0x440be4b9 trace_seq_putmem -EXPORT_SYMBOL_GPL vmlinux 0x4425544c gmap_shadow_r2t +EXPORT_SYMBOL_GPL vmlinux 0x4410153e unregister_virtio_device EXPORT_SYMBOL_GPL vmlinux 0x442deaa9 poll_state_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x44361156 mddev_init EXPORT_SYMBOL_GPL vmlinux 0x4439bcd2 __SCK__tp_func_neigh_event_send_dead -EXPORT_SYMBOL_GPL vmlinux 0x4448edc9 pci_dev_trylock -EXPORT_SYMBOL_GPL vmlinux 0x446e5b83 shmem_zero_setup -EXPORT_SYMBOL_GPL vmlinux 0x447fecd6 tpm_transmit_cmd +EXPORT_SYMBOL_GPL vmlinux 0x443b2700 sysfs_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x4444815b pci_epc_mem_free_addr +EXPORT_SYMBOL_GPL vmlinux 0x44534adb uprobe_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4473f2fb proc_create_net_data EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe -EXPORT_SYMBOL_GPL vmlinux 0x448943f9 cgrp_dfl_root -EXPORT_SYMBOL_GPL vmlinux 0x4498a270 synth_event_trace -EXPORT_SYMBOL_GPL vmlinux 0x449fdde4 perf_event_pause +EXPORT_SYMBOL_GPL vmlinux 0x44971163 gfn_to_pfn_prot +EXPORT_SYMBOL_GPL vmlinux 0x449e3866 d_walk +EXPORT_SYMBOL_GPL vmlinux 0x44a206de fuse_dev_operations +EXPORT_SYMBOL_GPL vmlinux 0x44b062a9 devm_gpiod_get_optional EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout EXPORT_SYMBOL_GPL vmlinux 0x44cf8cf0 blk_zone_cond_str -EXPORT_SYMBOL_GPL vmlinux 0x44f34055 tcp_twsk_destructor -EXPORT_SYMBOL_GPL vmlinux 0x44ff3399 cpu_device_create EXPORT_SYMBOL_GPL vmlinux 0x4507f4a8 cpuhp_tasks_frozen -EXPORT_SYMBOL_GPL vmlinux 0x452a1b4b sysfs_unmerge_group +EXPORT_SYMBOL_GPL vmlinux 0x451a44c0 wb_writeout_inc +EXPORT_SYMBOL_GPL vmlinux 0x45226c36 perf_pmu_migrate_context +EXPORT_SYMBOL_GPL vmlinux 0x4533eaaf pci_user_read_config_byte EXPORT_SYMBOL_GPL vmlinux 0x4538e573 kobject_get_path +EXPORT_SYMBOL_GPL vmlinux 0x45560663 is_software_node EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list -EXPORT_SYMBOL_GPL vmlinux 0x45a46fbe sk_msg_free_nocharge -EXPORT_SYMBOL_GPL vmlinux 0x45b5861a sync_page_io +EXPORT_SYMBOL_GPL vmlinux 0x458cb57b gpiochip_remove EXPORT_SYMBOL_GPL vmlinux 0x45c04efa user_free_preparse -EXPORT_SYMBOL_GPL vmlinux 0x45f78f07 kvm_arch_crypto_clear_masks +EXPORT_SYMBOL_GPL vmlinux 0x45c69801 irq_chip_mask_parent +EXPORT_SYMBOL_GPL vmlinux 0x45d48741 __serdev_device_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x45eaddf8 platform_device_del EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue -EXPORT_SYMBOL_GPL vmlinux 0x460488d5 devm_kmemdup -EXPORT_SYMBOL_GPL vmlinux 0x46175937 fib6_check_nexthop -EXPORT_SYMBOL_GPL vmlinux 0x4621740a gpiod_direction_output +EXPORT_SYMBOL_GPL vmlinux 0x460a0471 __traceiter_fdb_delete EXPORT_SYMBOL_GPL vmlinux 0x46269814 __tracepoint_neigh_event_send_dead -EXPORT_SYMBOL_GPL vmlinux 0x462a7eec __sock_recv_wifi_status -EXPORT_SYMBOL_GPL vmlinux 0x4632067d sk_msg_zerocopy_from_iter -EXPORT_SYMBOL_GPL vmlinux 0x46489db7 fuse_abort_conn -EXPORT_SYMBOL_GPL vmlinux 0x46495309 devm_device_add_groups -EXPORT_SYMBOL_GPL vmlinux 0x46673c94 virtqueue_add_inbuf -EXPORT_SYMBOL_GPL vmlinux 0x466b67c5 platform_unregister_drivers -EXPORT_SYMBOL_GPL vmlinux 0x466bda90 kvm_read_guest_page -EXPORT_SYMBOL_GPL vmlinux 0x466ea304 switchdev_bridge_port_offload -EXPORT_SYMBOL_GPL vmlinux 0x467b120f unregister_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x463ec5eb gpiod_set_config +EXPORT_SYMBOL_GPL vmlinux 0x463f6285 devlink_params_unpublish +EXPORT_SYMBOL_GPL vmlinux 0x467f382f blk_ksm_is_superset EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x468aa5ba tcp_leave_memory_pressure -EXPORT_SYMBOL_GPL vmlinux 0x46b24905 dev_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x46eed576 __pneigh_lookup +EXPORT_SYMBOL_GPL vmlinux 0x46aa1eff crypto_stats_decompress +EXPORT_SYMBOL_GPL vmlinux 0x46b0acc2 fscrypt_mergeable_bio_bh +EXPORT_SYMBOL_GPL vmlinux 0x46d18083 __pci_epf_register_driver EXPORT_SYMBOL_GPL vmlinux 0x46f42be0 devlink_fmsg_u8_put EXPORT_SYMBOL_GPL vmlinux 0x470083c3 inet_hashinfo2_init_mod -EXPORT_SYMBOL_GPL vmlinux 0x470d0962 blk_trace_startstop +EXPORT_SYMBOL_GPL vmlinux 0x470775d6 kvm_vcpu_mark_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0x4709d9a0 screen_glyph_unicode EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request -EXPORT_SYMBOL_GPL vmlinux 0x4738af2b blk_mq_update_nr_hw_queues -EXPORT_SYMBOL_GPL vmlinux 0x474f6d17 pci_epc_linkup -EXPORT_SYMBOL_GPL vmlinux 0x47561cba __platform_driver_register -EXPORT_SYMBOL_GPL vmlinux 0x47580e84 __traceiter_block_split -EXPORT_SYMBOL_GPL vmlinux 0x4758e408 devlink_trap_policers_unregister -EXPORT_SYMBOL_GPL vmlinux 0x475ac3db tpmm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0x47352605 __traceiter_block_rq_insert +EXPORT_SYMBOL_GPL vmlinux 0x47399096 virtqueue_get_vring +EXPORT_SYMBOL_GPL vmlinux 0x4754a3bd gmap_read_table EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier -EXPORT_SYMBOL_GPL vmlinux 0x476b016e shmem_read_mapping_page_gfp -EXPORT_SYMBOL_GPL vmlinux 0x47761a97 irq_domain_translate_twocell -EXPORT_SYMBOL_GPL vmlinux 0x477e2ce9 bsg_job_put -EXPORT_SYMBOL_GPL vmlinux 0x4781310d ipv6_bpf_stub +EXPORT_SYMBOL_GPL vmlinux 0x4766a67b device_add_software_node +EXPORT_SYMBOL_GPL vmlinux 0x4777c544 pci_hp_deregister +EXPORT_SYMBOL_GPL vmlinux 0x47792a94 security_kernel_post_read_file EXPORT_SYMBOL_GPL vmlinux 0x47884890 system_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0x478c58d7 find_asymmetric_key EXPORT_SYMBOL_GPL vmlinux 0x478e81f8 tcp_orphan_count -EXPORT_SYMBOL_GPL vmlinux 0x479b84ab __bio_crypt_clone -EXPORT_SYMBOL_GPL vmlinux 0x47b6d8c4 bpf_trace_run3 -EXPORT_SYMBOL_GPL vmlinux 0x47e3d3e9 ipv4_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x47d90985 devm_init_badblocks EXPORT_SYMBOL_GPL vmlinux 0x47e7696d srcu_notifier_call_chain EXPORT_SYMBOL_GPL vmlinux 0x480305ca kmsg_dump_rewind -EXPORT_SYMBOL_GPL vmlinux 0x480c03da gpiod_get_array_value -EXPORT_SYMBOL_GPL vmlinux 0x48126d6a list_lru_walk_one EXPORT_SYMBOL_GPL vmlinux 0x481f9b7d mpi_mulm -EXPORT_SYMBOL_GPL vmlinux 0x4831fc32 dma_mmap_pages +EXPORT_SYMBOL_GPL vmlinux 0x4848a1a2 appldata_unregister_ops +EXPORT_SYMBOL_GPL vmlinux 0x485c52be fat_getattr EXPORT_SYMBOL_GPL vmlinux 0x485cd7f6 kvm_rebooting -EXPORT_SYMBOL_GPL vmlinux 0x486b4c26 nexthop_select_path -EXPORT_SYMBOL_GPL vmlinux 0x488ab0a1 devlink_param_driverinit_value_get -EXPORT_SYMBOL_GPL vmlinux 0x48919b04 fat_setattr -EXPORT_SYMBOL_GPL vmlinux 0x4894377b bpf_prog_inc_not_zero -EXPORT_SYMBOL_GPL vmlinux 0x489f3918 kvm_vcpu_block +EXPORT_SYMBOL_GPL vmlinux 0x4894d639 ptp_classify_raw +EXPORT_SYMBOL_GPL vmlinux 0x489fa3c6 nf_route EXPORT_SYMBOL_GPL vmlinux 0x48a09202 pgprot_writethrough EXPORT_SYMBOL_GPL vmlinux 0x48c32847 __SCK__tp_func_sched_util_est_se_tp -EXPORT_SYMBOL_GPL vmlinux 0x48eea06f crypto_alloc_aead -EXPORT_SYMBOL_GPL vmlinux 0x48f5986e subsys_dev_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0x48fccfb8 bio_alloc_kiocb -EXPORT_SYMBOL_GPL vmlinux 0x4907c88e nexthop_find_by_id -EXPORT_SYMBOL_GPL vmlinux 0x4912143e iomap_invalidatepage +EXPORT_SYMBOL_GPL vmlinux 0x48c5b7e6 sock_diag_register +EXPORT_SYMBOL_GPL vmlinux 0x48c6fbe7 devlink_is_reload_failed +EXPORT_SYMBOL_GPL vmlinux 0x48d37cfb crypto_stats_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x48fd9581 vring_del_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x490836af cio_cancel +EXPORT_SYMBOL_GPL vmlinux 0x4909933f __devres_alloc_node +EXPORT_SYMBOL_GPL vmlinux 0x4914afb1 skb_mpls_dec_ttl +EXPORT_SYMBOL_GPL vmlinux 0x49163774 balloon_page_alloc EXPORT_SYMBOL_GPL vmlinux 0x49242bc7 freezer_cgrp_subsys_on_dfl_key EXPORT_SYMBOL_GPL vmlinux 0x4934bdd0 crypto_check_attr_type EXPORT_SYMBOL_GPL vmlinux 0x4939ebcd numa_map_to_online_node -EXPORT_SYMBOL_GPL vmlinux 0x493a4724 __vfs_removexattr_locked -EXPORT_SYMBOL_GPL vmlinux 0x493c1cf9 debugfs_file_put -EXPORT_SYMBOL_GPL vmlinux 0x4950c26a dm_post_suspending +EXPORT_SYMBOL_GPL vmlinux 0x49466867 irq_chip_request_resources_parent +EXPORT_SYMBOL_GPL vmlinux 0x49563dae gpiod_direction_input EXPORT_SYMBOL_GPL vmlinux 0x49608959 migrate_disable -EXPORT_SYMBOL_GPL vmlinux 0x4966194c tty_port_register_device_serdev -EXPORT_SYMBOL_GPL vmlinux 0x4967c53a clockevent_delta2ns -EXPORT_SYMBOL_GPL vmlinux 0x496cfe9c is_swiotlb_active -EXPORT_SYMBOL_GPL vmlinux 0x4982820b ping_queue_rcv_skb -EXPORT_SYMBOL_GPL vmlinux 0x498fd0b7 __rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0x498785bc tpm_pm_suspend EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue -EXPORT_SYMBOL_GPL vmlinux 0x49a8e9bf generic_fh_to_dentry -EXPORT_SYMBOL_GPL vmlinux 0x49b33814 ping_unhash -EXPORT_SYMBOL_GPL vmlinux 0x49bf8d1b vc_scrolldelta_helper +EXPORT_SYMBOL_GPL vmlinux 0x499eae08 tty_buffer_set_limit EXPORT_SYMBOL_GPL vmlinux 0x49cd25ed alloc_workqueue -EXPORT_SYMBOL_GPL vmlinux 0x49def57b crypto_register_algs EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0x49ed1780 debugfs_create_file_size -EXPORT_SYMBOL_GPL vmlinux 0x49f5d741 iomap_writepages +EXPORT_SYMBOL_GPL vmlinux 0x49f1940d vfs_write +EXPORT_SYMBOL_GPL vmlinux 0x4a10c65a crypto_alloc_rng EXPORT_SYMBOL_GPL vmlinux 0x4a17ed66 sysrq_mask -EXPORT_SYMBOL_GPL vmlinux 0x4a2f129d crypto_register_skciphers -EXPORT_SYMBOL_GPL vmlinux 0x4a3c2a3c gfn_to_pfn -EXPORT_SYMBOL_GPL vmlinux 0x4a4098dd l3mdev_update_flow +EXPORT_SYMBOL_GPL vmlinux 0x4a3ef4c2 crypto_skcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x4a4195f0 pci_find_vsec_capability +EXPORT_SYMBOL_GPL vmlinux 0x4a5014b4 dma_vunmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x4a56a1cb crypto_shash_tfm_digest EXPORT_SYMBOL_GPL vmlinux 0x4a905363 xas_create_range -EXPORT_SYMBOL_GPL vmlinux 0x4aad6ba2 crypto_grab_ahash -EXPORT_SYMBOL_GPL vmlinux 0x4abc4d9f vfs_cancel_lock -EXPORT_SYMBOL_GPL vmlinux 0x4abeab8e badblocks_show -EXPORT_SYMBOL_GPL vmlinux 0x4ad802ad iomap_truncate_page -EXPORT_SYMBOL_GPL vmlinux 0x4ae94886 bpf_offload_dev_match -EXPORT_SYMBOL_GPL vmlinux 0x4af85b8e filemap_range_needs_writeback -EXPORT_SYMBOL_GPL vmlinux 0x4b2940b6 posix_acl_access_xattr_handler -EXPORT_SYMBOL_GPL vmlinux 0x4b4b2e0e fscrypt_fname_siphash -EXPORT_SYMBOL_GPL vmlinux 0x4b6feb0f tty_port_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x4a967c21 l3mdev_table_lookup_register +EXPORT_SYMBOL_GPL vmlinux 0x4a98414b input_class +EXPORT_SYMBOL_GPL vmlinux 0x4abaf1f1 gpiochip_irq_unmap +EXPORT_SYMBOL_GPL vmlinux 0x4afecbbf devlink_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4b0962db pci_check_and_mask_intx +EXPORT_SYMBOL_GPL vmlinux 0x4b39f403 exportfs_encode_inode_fh +EXPORT_SYMBOL_GPL vmlinux 0x4b3ff827 inet_unhash +EXPORT_SYMBOL_GPL vmlinux 0x4b6ab11f kvm_s390_gisc_unregister EXPORT_SYMBOL_GPL vmlinux 0x4b72009e dynamic_debug_exec_queries -EXPORT_SYMBOL_GPL vmlinux 0x4b73d37b devm_gpio_free +EXPORT_SYMBOL_GPL vmlinux 0x4b75bf35 dma_buf_get +EXPORT_SYMBOL_GPL vmlinux 0x4b8178e8 pci_stop_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x4b8b4813 gpiod_set_raw_value +EXPORT_SYMBOL_GPL vmlinux 0x4b987536 gpiochip_find EXPORT_SYMBOL_GPL vmlinux 0x4ba88dcb chsc_sgib -EXPORT_SYMBOL_GPL vmlinux 0x4bccd199 inet_csk_listen_stop +EXPORT_SYMBOL_GPL vmlinux 0x4bbcb800 locks_alloc_lock +EXPORT_SYMBOL_GPL vmlinux 0x4bcbf95b __bio_crypt_clone +EXPORT_SYMBOL_GPL vmlinux 0x4bcc6c32 crypto_req_done +EXPORT_SYMBOL_GPL vmlinux 0x4bd5a238 xdp_return_frame_rx_napi EXPORT_SYMBOL_GPL vmlinux 0x4bd6f08b misc_cgrp_subsys_on_dfl_key EXPORT_SYMBOL_GPL vmlinux 0x4bd89c5a css_chsc_characteristics -EXPORT_SYMBOL_GPL vmlinux 0x4be5f710 rt_mutex_lock -EXPORT_SYMBOL_GPL vmlinux 0x4bf75116 sched_setattr_nocheck -EXPORT_SYMBOL_GPL vmlinux 0x4bf77bc4 gmap_sync_dirty_log_pmd -EXPORT_SYMBOL_GPL vmlinux 0x4c1e295c nf_queue -EXPORT_SYMBOL_GPL vmlinux 0x4c380c81 tty_buffer_set_limit -EXPORT_SYMBOL_GPL vmlinux 0x4c428ff9 kvm_io_bus_get_dev -EXPORT_SYMBOL_GPL vmlinux 0x4c539924 blkcg_policy_register -EXPORT_SYMBOL_GPL vmlinux 0x4c558d4f driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4be7360b sock_map_unhash +EXPORT_SYMBOL_GPL vmlinux 0x4c272162 dev_err_probe +EXPORT_SYMBOL_GPL vmlinux 0x4c33d58c devlink_dpipe_table_counter_enabled +EXPORT_SYMBOL_GPL vmlinux 0x4c40f4b4 device_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x4c4d43a7 debugfs_create_devm_seqfile +EXPORT_SYMBOL_GPL vmlinux 0x4c4fed6b __fsnotify_parent EXPORT_SYMBOL_GPL vmlinux 0x4c56bd15 stack_type_name -EXPORT_SYMBOL_GPL vmlinux 0x4c6755a2 ethtool_set_ethtool_phy_ops -EXPORT_SYMBOL_GPL vmlinux 0x4c9cb897 cgroup_get_from_fd +EXPORT_SYMBOL_GPL vmlinux 0x4c725ee8 iommu_domain_free +EXPORT_SYMBOL_GPL vmlinux 0x4c72a20a __inet_inherit_port +EXPORT_SYMBOL_GPL vmlinux 0x4c751568 mddev_unlock +EXPORT_SYMBOL_GPL vmlinux 0x4c7b68e5 dma_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x4cabca65 crypto_comp_compress +EXPORT_SYMBOL_GPL vmlinux 0x4cb1e91e call_switchdev_blocking_notifiers EXPORT_SYMBOL_GPL vmlinux 0x4cb27100 ktime_get_snapshot EXPORT_SYMBOL_GPL vmlinux 0x4cb81fda __SCK__tp_func_wbc_writepage -EXPORT_SYMBOL_GPL vmlinux 0x4cc387cd crypto_get_default_null_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x4cdf582c class_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x4cc0a46f __traceiter_neigh_event_send_dead +EXPORT_SYMBOL_GPL vmlinux 0x4cca381e dax_layout_busy_page +EXPORT_SYMBOL_GPL vmlinux 0x4ccc34a9 bio_clone_blkg_association EXPORT_SYMBOL_GPL vmlinux 0x4ce91483 hrtimer_init -EXPORT_SYMBOL_GPL vmlinux 0x4cecafef iommu_uapi_sva_bind_gpasid -EXPORT_SYMBOL_GPL vmlinux 0x4cfd9251 device_create_managed_software_node +EXPORT_SYMBOL_GPL vmlinux 0x4ceadda5 device_find_child_by_name EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable -EXPORT_SYMBOL_GPL vmlinux 0x4d07a0f9 skb_splice_bits -EXPORT_SYMBOL_GPL vmlinux 0x4d2d42fb dev_nit_active -EXPORT_SYMBOL_GPL vmlinux 0x4d3cca84 ncsi_vlan_rx_kill_vid -EXPORT_SYMBOL_GPL vmlinux 0x4d4310e3 __pci_epc_create -EXPORT_SYMBOL_GPL vmlinux 0x4d4893dc cpci_hp_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0x4d116f4b devlink_params_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4d3e8db2 md_rdev_clear EXPORT_SYMBOL_GPL vmlinux 0x4d4d7b79 blk_mq_map_queues -EXPORT_SYMBOL_GPL vmlinux 0x4d5850cf blk_update_request -EXPORT_SYMBOL_GPL vmlinux 0x4d5ff2cb xfrm_audit_policy_delete EXPORT_SYMBOL_GPL vmlinux 0x4d6d0bbc iommu_group_ref_get EXPORT_SYMBOL_GPL vmlinux 0x4d7272e4 migrate_enable -EXPORT_SYMBOL_GPL vmlinux 0x4d793261 pci_generic_config_read +EXPORT_SYMBOL_GPL vmlinux 0x4d776877 __bio_try_merge_page +EXPORT_SYMBOL_GPL vmlinux 0x4d796b9b bpf_prog_select_runtime EXPORT_SYMBOL_GPL vmlinux 0x4d7c5fad css_sch_is_valid +EXPORT_SYMBOL_GPL vmlinux 0x4d7ef840 nf_checksum_partial EXPORT_SYMBOL_GPL vmlinux 0x4d80cba4 kmsg_dump_get_line -EXPORT_SYMBOL_GPL vmlinux 0x4d8902ee fscrypt_set_context -EXPORT_SYMBOL_GPL vmlinux 0x4d9c4b41 dma_get_required_mask -EXPORT_SYMBOL_GPL vmlinux 0x4da4bc2e wbc_attach_and_unlock_inode -EXPORT_SYMBOL_GPL vmlinux 0x4dd62e74 blk_mq_freeze_queue_wait +EXPORT_SYMBOL_GPL vmlinux 0x4d91ad53 vp_modern_set_queue_size +EXPORT_SYMBOL_GPL vmlinux 0x4da53d20 serdev_device_write_buf +EXPORT_SYMBOL_GPL vmlinux 0x4db230f2 perf_tp_event +EXPORT_SYMBOL_GPL vmlinux 0x4db3889e serdev_device_set_tiocm +EXPORT_SYMBOL_GPL vmlinux 0x4dbd3514 __traceiter_sched_util_est_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x4dd07a91 blkg_prfill_rwstat EXPORT_SYMBOL_GPL vmlinux 0x4dd9d14d cn_netlink_send_mult -EXPORT_SYMBOL_GPL vmlinux 0x4de16f37 mmu_notifier_range_update_to_read_only -EXPORT_SYMBOL_GPL vmlinux 0x4deb9e87 __inode_attach_wb -EXPORT_SYMBOL_GPL vmlinux 0x4df2a8f7 device_add +EXPORT_SYMBOL_GPL vmlinux 0x4dda55a5 subsys_interface_register +EXPORT_SYMBOL_GPL vmlinux 0x4df19f55 iommu_unregister_device_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0x4e198edf devm_gpio_free +EXPORT_SYMBOL_GPL vmlinux 0x4e37db34 devm_bitmap_zalloc EXPORT_SYMBOL_GPL vmlinux 0x4e3fd1b4 kvm_release_pfn_clean +EXPORT_SYMBOL_GPL vmlinux 0x4e6a5188 devm_device_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x4e6d7e96 device_driver_attach EXPORT_SYMBOL_GPL vmlinux 0x4e74878e __tracepoint_devlink_hwerr -EXPORT_SYMBOL_GPL vmlinux 0x4e787c22 nf_route -EXPORT_SYMBOL_GPL vmlinux 0x4e7a80a3 sock_prot_inuse_add -EXPORT_SYMBOL_GPL vmlinux 0x4e883d6a of_css +EXPORT_SYMBOL_GPL vmlinux 0x4e76a9a4 inode_dax +EXPORT_SYMBOL_GPL vmlinux 0x4eaaaa3e iomap_releasepage EXPORT_SYMBOL_GPL vmlinux 0x4eac5fc1 cpu_mitigations_auto_nosmt -EXPORT_SYMBOL_GPL vmlinux 0x4eaef9e7 __dax_driver_register -EXPORT_SYMBOL_GPL vmlinux 0x4eaf48f4 ack_all_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x4eae277f gpiod_toggle_active_low EXPORT_SYMBOL_GPL vmlinux 0x4eb39d4e __tracepoint_tcp_bad_csum -EXPORT_SYMBOL_GPL vmlinux 0x4ec2646e fwnode_remove_software_node +EXPORT_SYMBOL_GPL vmlinux 0x4ec12935 devlink_resources_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4eca7aab tpm_chip_alloc EXPORT_SYMBOL_GPL vmlinux 0x4eedd6f3 rhashtable_walk_stop EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context +EXPORT_SYMBOL_GPL vmlinux 0x4ef5f981 class_destroy EXPORT_SYMBOL_GPL vmlinux 0x4efcf021 mpi_normalize -EXPORT_SYMBOL_GPL vmlinux 0x4f17a369 inet6_csk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x4f50eecb shmem_file_setup -EXPORT_SYMBOL_GPL vmlinux 0x4f63a232 devlink_resource_register +EXPORT_SYMBOL_GPL vmlinux 0x4f1e5027 tcp_enter_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0x4f66f0da tcp_reno_cong_avoid EXPORT_SYMBOL_GPL vmlinux 0x4f6a07fe show_rcu_gp_kthreads -EXPORT_SYMBOL_GPL vmlinux 0x4f74cd78 noop_direct_IO -EXPORT_SYMBOL_GPL vmlinux 0x4f884221 platform_device_del EXPORT_SYMBOL_GPL vmlinux 0x4f91fd51 __wake_up_sync_key -EXPORT_SYMBOL_GPL vmlinux 0x4fc0a3b8 rtnl_link_register -EXPORT_SYMBOL_GPL vmlinux 0x4fddde6d kvm_get_dirty_log +EXPORT_SYMBOL_GPL vmlinux 0x4fa8d094 device_create_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x4fbc6ef0 trace_array_printk EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier -EXPORT_SYMBOL_GPL vmlinux 0x5030bf48 mm_kobj -EXPORT_SYMBOL_GPL vmlinux 0x504fe768 __fat_fs_error -EXPORT_SYMBOL_GPL vmlinux 0x50558013 mmput -EXPORT_SYMBOL_GPL vmlinux 0x5062b05b ipv4_redirect -EXPORT_SYMBOL_GPL vmlinux 0x507b8622 tty_ldisc_flush +EXPORT_SYMBOL_GPL vmlinux 0x4ffebef9 fwnode_property_get_reference_args +EXPORT_SYMBOL_GPL vmlinux 0x5030ab9a add_to_page_cache_lru +EXPORT_SYMBOL_GPL vmlinux 0x503d761c irq_domain_free_irqs_common +EXPORT_SYMBOL_GPL vmlinux 0x50594b61 cio_update_schib +EXPORT_SYMBOL_GPL vmlinux 0x50695ab6 devlink_dpipe_entry_ctx_prepare EXPORT_SYMBOL_GPL vmlinux 0x5080ca5d unregister_net_sysctl_table -EXPORT_SYMBOL_GPL vmlinux 0x5090518d pci_sriov_get_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0x50882806 gpiochip_irq_domain_deactivate EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start -EXPORT_SYMBOL_GPL vmlinux 0x509a0943 tcp_unregister_ulp -EXPORT_SYMBOL_GPL vmlinux 0x50a699a8 md_rdev_clear +EXPORT_SYMBOL_GPL vmlinux 0x50a25df6 crypto_alloc_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x50af2fb6 inet_send_prepare +EXPORT_SYMBOL_GPL vmlinux 0x50c0a7ea fsstack_copy_attr_all +EXPORT_SYMBOL_GPL vmlinux 0x50c60ab6 dw_pcie_ep_init EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num -EXPORT_SYMBOL_GPL vmlinux 0x50f837b2 __irq_domain_alloc_fwnode EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up -EXPORT_SYMBOL_GPL vmlinux 0x511f4510 ip6_datagram_send_ctl +EXPORT_SYMBOL_GPL vmlinux 0x5124c3ca __devm_irq_alloc_descs EXPORT_SYMBOL_GPL vmlinux 0x51390c96 rcu_barrier_tasks_rude -EXPORT_SYMBOL_GPL vmlinux 0x514358ba ethnl_cable_test_alloc -EXPORT_SYMBOL_GPL vmlinux 0x514d6b21 dm_internal_resume EXPORT_SYMBOL_GPL vmlinux 0x515b390f __SCK__tp_func_remove_device_from_group EXPORT_SYMBOL_GPL vmlinux 0x516960bd klist_iter_init_node -EXPORT_SYMBOL_GPL vmlinux 0x5179d5f1 bsg_job_get +EXPORT_SYMBOL_GPL vmlinux 0x51757f7a kvm_write_guest_cached EXPORT_SYMBOL_GPL vmlinux 0x517a7975 rsa_parse_pub_key -EXPORT_SYMBOL_GPL vmlinux 0x51b216ef dax_inode -EXPORT_SYMBOL_GPL vmlinux 0x51b269f8 pci_epf_destroy -EXPORT_SYMBOL_GPL vmlinux 0x51bd4d97 device_link_add +EXPORT_SYMBOL_GPL vmlinux 0x51c2732b dev_get_tstats64 +EXPORT_SYMBOL_GPL vmlinux 0x51d4e60d tpm2_get_tpm_pt EXPORT_SYMBOL_GPL vmlinux 0x51eb8bac housekeeping_cpumask -EXPORT_SYMBOL_GPL vmlinux 0x51f1697d pci_disable_sriov -EXPORT_SYMBOL_GPL vmlinux 0x51f4e292 irq_chip_get_parent_state -EXPORT_SYMBOL_GPL vmlinux 0x5219f472 fsnotify +EXPORT_SYMBOL_GPL vmlinux 0x51ef5a4a gpiod_set_consumer_name +EXPORT_SYMBOL_GPL vmlinux 0x5219d892 encrypt_blob EXPORT_SYMBOL_GPL vmlinux 0x5236497d trace_clock -EXPORT_SYMBOL_GPL vmlinux 0x52543931 blk_req_zone_write_trylock -EXPORT_SYMBOL_GPL vmlinux 0x5266c7f3 security_inode_permission -EXPORT_SYMBOL_GPL vmlinux 0x526e62cd gpiochip_irq_domain_activate -EXPORT_SYMBOL_GPL vmlinux 0x5276753e addrconf_add_linklocal -EXPORT_SYMBOL_GPL vmlinux 0x5286465e ipv4_sk_redirect -EXPORT_SYMBOL_GPL vmlinux 0x528b4d0c pcie_flr -EXPORT_SYMBOL_GPL vmlinux 0x528da79d eventfd_fget -EXPORT_SYMBOL_GPL vmlinux 0x52addf64 pci_try_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x523894b5 ip6_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0x524e32b0 shash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x527aa66a crypto_grab_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x52880ad8 ccw_device_get_iid +EXPORT_SYMBOL_GPL vmlinux 0x5299c553 __fat_fs_error EXPORT_SYMBOL_GPL vmlinux 0x52b1e3c7 pci_flags +EXPORT_SYMBOL_GPL vmlinux 0x52baa9d3 sched_trace_rq_cpu_capacity EXPORT_SYMBOL_GPL vmlinux 0x52c35e83 call_rcu_tasks_trace -EXPORT_SYMBOL_GPL vmlinux 0x52cdd638 crypto_alloc_tfm_node EXPORT_SYMBOL_GPL vmlinux 0x52d54fce devlink_info_version_stored_put -EXPORT_SYMBOL_GPL vmlinux 0x52daca2a tty_mode_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x52f18a31 driver_find -EXPORT_SYMBOL_GPL vmlinux 0x5301755f firmware_request_nowarn -EXPORT_SYMBOL_GPL vmlinux 0x5307a0dc find_extend_vma -EXPORT_SYMBOL_GPL vmlinux 0x531bd073 security_path_rmdir -EXPORT_SYMBOL_GPL vmlinux 0x53397f8c auxiliary_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x52f287eb __devm_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x52f7fdfa crypto_unregister_rngs +EXPORT_SYMBOL_GPL vmlinux 0x5307b390 devm_add_action +EXPORT_SYMBOL_GPL vmlinux 0x53320c19 sock_diag_register_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0x534b5569 ahash_register_instance EXPORT_SYMBOL_GPL vmlinux 0x5358864e devlink_fmsg_binary_pair_nest_end EXPORT_SYMBOL_GPL vmlinux 0x5359a0be inet_ehash_locks_alloc -EXPORT_SYMBOL_GPL vmlinux 0x535f01b8 proc_create_net_single_write -EXPORT_SYMBOL_GPL vmlinux 0x5362c0cf device_driver_attach -EXPORT_SYMBOL_GPL vmlinux 0x5372bca4 irq_chip_ack_parent -EXPORT_SYMBOL_GPL vmlinux 0x5379c54c ping_seq_stop -EXPORT_SYMBOL_GPL vmlinux 0x539fa01c sk_msg_trim -EXPORT_SYMBOL_GPL vmlinux 0x53a682a0 tty_save_termios -EXPORT_SYMBOL_GPL vmlinux 0x53a8acd6 tcp_register_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0x5362eaf1 ip6_input +EXPORT_SYMBOL_GPL vmlinux 0x5387a2a4 bpf_offload_dev_netdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x53a5c30b skb_splice_bits +EXPORT_SYMBOL_GPL vmlinux 0x53abccc6 gmap_mprotect_notify +EXPORT_SYMBOL_GPL vmlinux 0x53bebe7f gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0x53c48087 devlink_port_register +EXPORT_SYMBOL_GPL vmlinux 0x53ca6e70 mmu_interval_read_begin EXPORT_SYMBOL_GPL vmlinux 0x53d7c01e __traceiter_cpu_idle -EXPORT_SYMBOL_GPL vmlinux 0x53e5f68b crypto_dequeue_request -EXPORT_SYMBOL_GPL vmlinux 0x53ed9595 skcipher_walk_async -EXPORT_SYMBOL_GPL vmlinux 0x53f72341 fscrypt_drop_inode -EXPORT_SYMBOL_GPL vmlinux 0x54079fd9 __inet_twsk_schedule -EXPORT_SYMBOL_GPL vmlinux 0x540c3216 input_class -EXPORT_SYMBOL_GPL vmlinux 0x541ac48a bdev_disk_changed -EXPORT_SYMBOL_GPL vmlinux 0x541bc1b0 pci_epc_init_notify EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run -EXPORT_SYMBOL_GPL vmlinux 0x5428606c blockdev_superblock -EXPORT_SYMBOL_GPL vmlinux 0x546512ed __traceiter_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0x5424ed75 mptcp_pm_get_add_addr_signal_max +EXPORT_SYMBOL_GPL vmlinux 0x542552ef nf_ip_route +EXPORT_SYMBOL_GPL vmlinux 0x54640b7f fscrypt_drop_inode +EXPORT_SYMBOL_GPL vmlinux 0x54800ae6 bpf_verifier_log_write EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq -EXPORT_SYMBOL_GPL vmlinux 0x549f61d6 mmu_interval_notifier_insert -EXPORT_SYMBOL_GPL vmlinux 0x54b690f6 crypto_stats_ahash_update -EXPORT_SYMBOL_GPL vmlinux 0x54d05ad7 devm_get_free_pages -EXPORT_SYMBOL_GPL vmlinux 0x54e89105 kvm_vcpu_gfn_to_pfn_atomic -EXPORT_SYMBOL_GPL vmlinux 0x54fa835d serdev_device_set_tiocm -EXPORT_SYMBOL_GPL vmlinux 0x550f8219 device_match_of_node -EXPORT_SYMBOL_GPL vmlinux 0x55204764 device_dma_supported +EXPORT_SYMBOL_GPL vmlinux 0x549e491a pcie_update_link_speed +EXPORT_SYMBOL_GPL vmlinux 0x54c9bd5b iptunnel_handle_offloads +EXPORT_SYMBOL_GPL vmlinux 0x54d840f3 fuse_conn_destroy +EXPORT_SYMBOL_GPL vmlinux 0x54eed818 device_release_driver +EXPORT_SYMBOL_GPL vmlinux 0x5503a120 unix_inq_len +EXPORT_SYMBOL_GPL vmlinux 0x550a4b66 relay_reset EXPORT_SYMBOL_GPL vmlinux 0x55339365 flush_delayed_fput +EXPORT_SYMBOL_GPL vmlinux 0x553a76fc devlink_param_value_changed EXPORT_SYMBOL_GPL vmlinux 0x55417264 unregister_vt_notifier -EXPORT_SYMBOL_GPL vmlinux 0x558533bf irq_chip_set_type_parent -EXPORT_SYMBOL_GPL vmlinux 0x55855a90 fib_rule_matchall -EXPORT_SYMBOL_GPL vmlinux 0x558c0015 xdp_rxq_info_reg_mem_model -EXPORT_SYMBOL_GPL vmlinux 0x55b4d77d fuse_sync_release +EXPORT_SYMBOL_GPL vmlinux 0x55863f52 proc_create_net_single_write +EXPORT_SYMBOL_GPL vmlinux 0x559ae51b blk_clear_pm_only +EXPORT_SYMBOL_GPL vmlinux 0x559f2d30 ip6_dst_lookup_tunnel +EXPORT_SYMBOL_GPL vmlinux 0x55a17d5d fwnode_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x55b65489 elv_unregister EXPORT_SYMBOL_GPL vmlinux 0x55c70e0a sbitmap_add_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0x55d11ae8 lwtunnel_get_encap_size -EXPORT_SYMBOL_GPL vmlinux 0x55e663f2 __mmdrop +EXPORT_SYMBOL_GPL vmlinux 0x55d183e3 debugfs_lookup EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout -EXPORT_SYMBOL_GPL vmlinux 0x55efeae4 fwnode_graph_get_remote_endpoint EXPORT_SYMBOL_GPL vmlinux 0x55f2580b __alloc_percpu EXPORT_SYMBOL_GPL vmlinux 0x55f91924 trace_seq_puts -EXPORT_SYMBOL_GPL vmlinux 0x55f94ddd ip6_redirect EXPORT_SYMBOL_GPL vmlinux 0x56054c05 crypto_it_tab -EXPORT_SYMBOL_GPL vmlinux 0x560c5ebe gpiod_get_raw_value -EXPORT_SYMBOL_GPL vmlinux 0x5624a8b5 posix_clock_register +EXPORT_SYMBOL_GPL vmlinux 0x560d949e msi_desc_to_pci_sysdata +EXPORT_SYMBOL_GPL vmlinux 0x560f7d84 crypto_unregister_acomp +EXPORT_SYMBOL_GPL vmlinux 0x56198078 sdev_evt_send_simple EXPORT_SYMBOL_GPL vmlinux 0x56256e8a orderly_poweroff -EXPORT_SYMBOL_GPL vmlinux 0x56375172 attribute_container_unregister EXPORT_SYMBOL_GPL vmlinux 0x5641485b tty_termios_encode_baud_rate -EXPORT_SYMBOL_GPL vmlinux 0x564298f5 ethnl_cable_test_pulse -EXPORT_SYMBOL_GPL vmlinux 0x5668b3d5 handle_fasteoi_irq -EXPORT_SYMBOL_GPL vmlinux 0x566eb609 key_type_asymmetric -EXPORT_SYMBOL_GPL vmlinux 0x5696c9ba blk_mq_complete_request_remote -EXPORT_SYMBOL_GPL vmlinux 0x56ab5e5f mptcp_subflow_init_cookie_req -EXPORT_SYMBOL_GPL vmlinux 0x56b52818 fib_nl_delrule -EXPORT_SYMBOL_GPL vmlinux 0x56b7050b crypto_lookup_template -EXPORT_SYMBOL_GPL vmlinux 0x56ba690a __hvc_resize -EXPORT_SYMBOL_GPL vmlinux 0x56de8536 fat_time_fat2unix -EXPORT_SYMBOL_GPL vmlinux 0x56e7e395 path_noexec -EXPORT_SYMBOL_GPL vmlinux 0x56f0f190 device_create_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x56f1125c perf_pmu_unregister -EXPORT_SYMBOL_GPL vmlinux 0x56f1441b device_bind_driver +EXPORT_SYMBOL_GPL vmlinux 0x565fb614 pci_disable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x5686bb66 br_ip6_fragment +EXPORT_SYMBOL_GPL vmlinux 0x5691a7c2 __traceiter_sched_util_est_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x56c6a906 iommu_report_device_fault +EXPORT_SYMBOL_GPL vmlinux 0x56cd056c ip6_pol_route +EXPORT_SYMBOL_GPL vmlinux 0x56e3103d file_is_kvm +EXPORT_SYMBOL_GPL vmlinux 0x56ed133a auxiliary_find_device EXPORT_SYMBOL_GPL vmlinux 0x56f83947 sbitmap_queue_min_shallow_depth EXPORT_SYMBOL_GPL vmlinux 0x56fbb130 no_hash_pointers +EXPORT_SYMBOL_GPL vmlinux 0x57236229 __rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0x573623f7 addrconf_prefix_rcv_add_addr EXPORT_SYMBOL_GPL vmlinux 0x573b5453 ipv6_fixup_options -EXPORT_SYMBOL_GPL vmlinux 0x576661af PageHuge -EXPORT_SYMBOL_GPL vmlinux 0x5767a8d3 crypto_register_rng -EXPORT_SYMBOL_GPL vmlinux 0x577bd5e0 bpf_prog_inc +EXPORT_SYMBOL_GPL vmlinux 0x5742abdf gfn_to_pfn +EXPORT_SYMBOL_GPL vmlinux 0x5779127d fscrypt_ioctl_get_policy_ex +EXPORT_SYMBOL_GPL vmlinux 0x577bfe5d debugfs_file_get EXPORT_SYMBOL_GPL vmlinux 0x578eeb4d hugetlb_cgrp_subsys_enabled_key EXPORT_SYMBOL_GPL vmlinux 0x5790e7a0 pci_unlock_rescan_remove EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all -EXPORT_SYMBOL_GPL vmlinux 0x57c145ce blk_set_pm_only -EXPORT_SYMBOL_GPL vmlinux 0x57e90561 dax_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x57a0d25e pci_epf_alloc_space +EXPORT_SYMBOL_GPL vmlinux 0x57c0a5bd strp_done +EXPORT_SYMBOL_GPL vmlinux 0x57c8e7b2 xfrm_audit_state_add +EXPORT_SYMBOL_GPL vmlinux 0x57cedef1 ip6_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x57d0d81f pci_user_write_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x57d74f02 ip6_flush_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x57d89486 fat_time_fat2unix +EXPORT_SYMBOL_GPL vmlinux 0x57e6fad0 tcp_get_info +EXPORT_SYMBOL_GPL vmlinux 0x57eaaac2 is_virtio_device EXPORT_SYMBOL_GPL vmlinux 0x57f576b9 mpi_ec_curve_point EXPORT_SYMBOL_GPL vmlinux 0x57f70547 secure_ipv4_port_ephemeral -EXPORT_SYMBOL_GPL vmlinux 0x581589ab cdrom_multisession -EXPORT_SYMBOL_GPL vmlinux 0x582a3cc1 tpm_chip_unregister +EXPORT_SYMBOL_GPL vmlinux 0x580129a8 tcp_bpf_sendmsg_redir +EXPORT_SYMBOL_GPL vmlinux 0x5801e649 xfrm_state_mtu +EXPORT_SYMBOL_GPL vmlinux 0x580e473c n_tty_inherit_ops +EXPORT_SYMBOL_GPL vmlinux 0x582e90bb fib_rules_unregister EXPORT_SYMBOL_GPL vmlinux 0x5831e062 cpus_read_trylock -EXPORT_SYMBOL_GPL vmlinux 0x583bf0e3 platform_add_devices -EXPORT_SYMBOL_GPL vmlinux 0x583ce207 crypto_mod_put -EXPORT_SYMBOL_GPL vmlinux 0x583f6f28 trace_array_put -EXPORT_SYMBOL_GPL vmlinux 0x5865b6cd subsys_interface_register -EXPORT_SYMBOL_GPL vmlinux 0x586cf2ed bio_release_pages +EXPORT_SYMBOL_GPL vmlinux 0x583410c1 bpf_prog_create_from_user +EXPORT_SYMBOL_GPL vmlinux 0x584e7113 s390_reset_acc EXPORT_SYMBOL_GPL vmlinux 0x5879a27d sfp_get_module_info -EXPORT_SYMBOL_GPL vmlinux 0x58895f48 hvc_instantiate -EXPORT_SYMBOL_GPL vmlinux 0x58c61071 gpiochip_free_own_desc -EXPORT_SYMBOL_GPL vmlinux 0x58cc322b query_asymmetric_key -EXPORT_SYMBOL_GPL vmlinux 0x58cff2a9 shash_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0x587cb70e virtqueue_kick_prepare +EXPORT_SYMBOL_GPL vmlinux 0x587f4065 vma_kernel_pagesize +EXPORT_SYMBOL_GPL vmlinux 0x5888359e inet_csk_reqsk_queue_hash_add +EXPORT_SYMBOL_GPL vmlinux 0x5894e0df devm_device_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0x58985773 bpf_redirect_info +EXPORT_SYMBOL_GPL vmlinux 0x58b7716d gpiod_set_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x58cb3874 fsnotify_alloc_user_group EXPORT_SYMBOL_GPL vmlinux 0x58def6ca sfp_module_remove -EXPORT_SYMBOL_GPL vmlinux 0x58f1c88a ip6_dst_lookup_tunnel -EXPORT_SYMBOL_GPL vmlinux 0x58fa8cea trace_event_ignore_this_pid -EXPORT_SYMBOL_GPL vmlinux 0x591ed904 bpf_trace_run5 -EXPORT_SYMBOL_GPL vmlinux 0x59287239 debugfs_rename +EXPORT_SYMBOL_GPL vmlinux 0x58f4dcfa subsys_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0x58f689fd device_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x593dd530 dma_resv_wait_timeout EXPORT_SYMBOL_GPL vmlinux 0x594fe160 tod_clock_base -EXPORT_SYMBOL_GPL vmlinux 0x596e893c shmem_file_setup_with_mnt -EXPORT_SYMBOL_GPL vmlinux 0x5974325d irq_set_chained_handler_and_data -EXPORT_SYMBOL_GPL vmlinux 0x5981c7a6 skb_partial_csum_set +EXPORT_SYMBOL_GPL vmlinux 0x59666397 pci_enable_rom +EXPORT_SYMBOL_GPL vmlinux 0x596b1555 kthread_flush_work +EXPORT_SYMBOL_GPL vmlinux 0x5972a824 kobject_uevent +EXPORT_SYMBOL_GPL vmlinux 0x5985fbf8 nf_checksum +EXPORT_SYMBOL_GPL vmlinux 0x59b522b6 nd_tbl EXPORT_SYMBOL_GPL vmlinux 0x59c43dc9 __traceiter_non_standard_event -EXPORT_SYMBOL_GPL vmlinux 0x59cebbd6 debugfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x59dacdf0 pci_slots_kset EXPORT_SYMBOL_GPL vmlinux 0x59e640c0 halt_poll_ns EXPORT_SYMBOL_GPL vmlinux 0x59f32720 mpi_subm +EXPORT_SYMBOL_GPL vmlinux 0x5a0d18e8 nfs_ssc_client_tbl EXPORT_SYMBOL_GPL vmlinux 0x5a12e60c __SCK__tp_func_sched_update_nr_running_tp -EXPORT_SYMBOL_GPL vmlinux 0x5a1a837a md_kick_rdev_from_array EXPORT_SYMBOL_GPL vmlinux 0x5a1d134a rcu_momentary_dyntick_idle -EXPORT_SYMBOL_GPL vmlinux 0x5a232917 rtnl_register_module -EXPORT_SYMBOL_GPL vmlinux 0x5a2484c2 crypto_aead_decrypt -EXPORT_SYMBOL_GPL vmlinux 0x5a337009 ip6_append_data -EXPORT_SYMBOL_GPL vmlinux 0x5a399fc9 __traceiter_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0x5a2fee66 devm_platform_ioremap_resource +EXPORT_SYMBOL_GPL vmlinux 0x5a32631f sk_set_peek_off +EXPORT_SYMBOL_GPL vmlinux 0x5a43852a get_pid_task +EXPORT_SYMBOL_GPL vmlinux 0x5a46d94f ip4_datagram_release_cb EXPORT_SYMBOL_GPL vmlinux 0x5a49dbc9 timerqueue_del +EXPORT_SYMBOL_GPL vmlinux 0x5a4e0505 device_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x5a5898d0 ksm_madvise +EXPORT_SYMBOL_GPL vmlinux 0x5a623b21 get_task_mm EXPORT_SYMBOL_GPL vmlinux 0x5a6cdb52 nf_ct_zone_dflt EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify -EXPORT_SYMBOL_GPL vmlinux 0x5ac94fa8 auxiliary_device_init -EXPORT_SYMBOL_GPL vmlinux 0x5af50bdb __traceiter_neigh_timer_handler -EXPORT_SYMBOL_GPL vmlinux 0x5b01a0ed hypervisor_kobj -EXPORT_SYMBOL_GPL vmlinux 0x5b03b974 anon_inode_getfile +EXPORT_SYMBOL_GPL vmlinux 0x5aaf7bbe __pci_epc_create +EXPORT_SYMBOL_GPL vmlinux 0x5adcfdde query_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0x5aed7271 blk_mq_update_nr_hw_queues EXPORT_SYMBOL_GPL vmlinux 0x5b21ceff ring_buffer_iter_peek -EXPORT_SYMBOL_GPL vmlinux 0x5b315e67 debugfs_read_file_bool -EXPORT_SYMBOL_GPL vmlinux 0x5b322b89 nf_queue_nf_hook_drop -EXPORT_SYMBOL_GPL vmlinux 0x5b3641d8 pci_ignore_hotplug -EXPORT_SYMBOL_GPL vmlinux 0x5b5028a5 __fscrypt_encrypt_symlink -EXPORT_SYMBOL_GPL vmlinux 0x5b5c1f69 sysfs_create_link_nowarn -EXPORT_SYMBOL_GPL vmlinux 0x5b62db84 rt_mutex_unlock -EXPORT_SYMBOL_GPL vmlinux 0x5b65ee82 cmf_readall -EXPORT_SYMBOL_GPL vmlinux 0x5b67bfee kvm_put_kvm_no_destroy EXPORT_SYMBOL_GPL vmlinux 0x5b6b0329 swiotlb_max_segment -EXPORT_SYMBOL_GPL vmlinux 0x5b806e4c device_add_software_node -EXPORT_SYMBOL_GPL vmlinux 0x5b878114 tty_kclose -EXPORT_SYMBOL_GPL vmlinux 0x5b8ea334 add_disk_randomness +EXPORT_SYMBOL_GPL vmlinux 0x5b6ef229 get_ccwdev_by_dev_id +EXPORT_SYMBOL_GPL vmlinux 0x5b6f0bc4 md_bitmap_copy_from_slot +EXPORT_SYMBOL_GPL vmlinux 0x5b8a2ee3 blkg_conf_prep EXPORT_SYMBOL_GPL vmlinux 0x5ba63bef property_entries_free -EXPORT_SYMBOL_GPL vmlinux 0x5bb3e354 gpiod_set_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0x5bab4f1d crypto_stats_kpp_compute_shared_secret +EXPORT_SYMBOL_GPL vmlinux 0x5baca42b gmap_shadow_sgt +EXPORT_SYMBOL_GPL vmlinux 0x5bbdb5f3 devlink_dpipe_table_resource_set EXPORT_SYMBOL_GPL vmlinux 0x5bbdfa26 scatterwalk_ffwd -EXPORT_SYMBOL_GPL vmlinux 0x5bbe1d55 kvm_vcpu_read_guest -EXPORT_SYMBOL_GPL vmlinux 0x5bc58778 blk_queue_write_cache +EXPORT_SYMBOL_GPL vmlinux 0x5bc71139 tpm2_get_cc_attrs_tbl EXPORT_SYMBOL_GPL vmlinux 0x5bd0748f crypto_del_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x5bd28207 pci_num_vf -EXPORT_SYMBOL_GPL vmlinux 0x5bda42b9 dma_buf_detach EXPORT_SYMBOL_GPL vmlinux 0x5bdbac4e rcu_unexpedite_gp -EXPORT_SYMBOL_GPL vmlinux 0x5bf20b45 iommu_device_sysfs_remove -EXPORT_SYMBOL_GPL vmlinux 0x5bf9333f blk_steal_bios -EXPORT_SYMBOL_GPL vmlinux 0x5c0cd13a fscrypt_set_bio_crypt_ctx_bh -EXPORT_SYMBOL_GPL vmlinux 0x5c23e123 __lock_page_killable +EXPORT_SYMBOL_GPL vmlinux 0x5c0b3f81 sbitmap_bitmap_show EXPORT_SYMBOL_GPL vmlinux 0x5c2bcd37 bpf_warn_invalid_xdp_action EXPORT_SYMBOL_GPL vmlinux 0x5c361c57 sbitmap_del_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x5c3adc53 lwtstate_free EXPORT_SYMBOL_GPL vmlinux 0x5c3bbd06 __SCK__tp_func_mc_event +EXPORT_SYMBOL_GPL vmlinux 0x5c462648 fsverity_cleanup_inode +EXPORT_SYMBOL_GPL vmlinux 0x5c5a9645 iommu_fwspec_add_ids +EXPORT_SYMBOL_GPL vmlinux 0x5c60059e devres_release EXPORT_SYMBOL_GPL vmlinux 0x5c82016e __SCK__tp_func_napi_poll -EXPORT_SYMBOL_GPL vmlinux 0x5c8c4a0b raw_seq_stop -EXPORT_SYMBOL_GPL vmlinux 0x5c8f43e2 crypto_alloc_akcipher -EXPORT_SYMBOL_GPL vmlinux 0x5c9d9d4e crypto_unregister_rng -EXPORT_SYMBOL_GPL vmlinux 0x5caf20b6 iomap_readpage +EXPORT_SYMBOL_GPL vmlinux 0x5c8fc45f shash_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0x5c9f68be crypto_register_algs +EXPORT_SYMBOL_GPL vmlinux 0x5cb33d5f pci_destroy_slot EXPORT_SYMBOL_GPL vmlinux 0x5cb588c5 alarm_start -EXPORT_SYMBOL_GPL vmlinux 0x5cb7140a crypto_shash_alg_has_setkey -EXPORT_SYMBOL_GPL vmlinux 0x5cb992cc gpiod_export_link -EXPORT_SYMBOL_GPL vmlinux 0x5cc47674 bdi_dev_name -EXPORT_SYMBOL_GPL vmlinux 0x5cd25b57 tpm_pm_resume -EXPORT_SYMBOL_GPL vmlinux 0x5ce0304c nf_ipv6_ops +EXPORT_SYMBOL_GPL vmlinux 0x5cbcdf29 blkg_rwstat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0x5cd49e70 kobject_uevent_env EXPORT_SYMBOL_GPL vmlinux 0x5cede0a7 xdp_flush_frame_bulk -EXPORT_SYMBOL_GPL vmlinux 0x5ceea5d9 l3mdev_master_upper_ifindex_by_index_rcu -EXPORT_SYMBOL_GPL vmlinux 0x5cef2b35 ip4_datagram_release_cb -EXPORT_SYMBOL_GPL vmlinux 0x5cf47a37 dm_get_queue_limits -EXPORT_SYMBOL_GPL vmlinux 0x5cf9ce04 __platform_driver_probe -EXPORT_SYMBOL_GPL vmlinux 0x5d016e10 dw_pcie_setup_rc -EXPORT_SYMBOL_GPL vmlinux 0x5d1edab6 skb_copy_ubufs -EXPORT_SYMBOL_GPL vmlinux 0x5d2501b9 get_device_system_crosststamp -EXPORT_SYMBOL_GPL vmlinux 0x5d3dfb34 pci_epc_set_bar -EXPORT_SYMBOL_GPL vmlinux 0x5d55aebf crypto_register_akcipher -EXPORT_SYMBOL_GPL vmlinux 0x5d5899a4 fscrypt_d_revalidate +EXPORT_SYMBOL_GPL vmlinux 0x5d1a32f4 dma_can_mmap +EXPORT_SYMBOL_GPL vmlinux 0x5d2c9eff iomap_fiemap +EXPORT_SYMBOL_GPL vmlinux 0x5d2d1c2c input_ff_create +EXPORT_SYMBOL_GPL vmlinux 0x5d3da3ff pci_sriov_get_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0x5d42a560 netdev_walk_all_lower_dev +EXPORT_SYMBOL_GPL vmlinux 0x5d574e6c iommu_detach_group +EXPORT_SYMBOL_GPL vmlinux 0x5d599dc3 pci_ioremap_bar +EXPORT_SYMBOL_GPL vmlinux 0x5d5c7815 device_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x5d8174cc gpiod_get_raw_array_value_cansleep EXPORT_SYMBOL_GPL vmlinux 0x5d8476d3 bpf_sk_storage_diag_alloc -EXPORT_SYMBOL_GPL vmlinux 0x5d8d73db blk_next_bio -EXPORT_SYMBOL_GPL vmlinux 0x5d9ca4db gmap_read_table +EXPORT_SYMBOL_GPL vmlinux 0x5d9b5012 cio_cancel_halt_clear EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact -EXPORT_SYMBOL_GPL vmlinux 0x5dc484d8 pci_check_and_unmask_intx -EXPORT_SYMBOL_GPL vmlinux 0x5dc6062d inet6_lookup +EXPORT_SYMBOL_GPL vmlinux 0x5db28007 l3mdev_link_scope_lookup +EXPORT_SYMBOL_GPL vmlinux 0x5dc09137 __irq_domain_alloc_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x5dd6823b msg_zerocopy_callback EXPORT_SYMBOL_GPL vmlinux 0x5dd76e44 mutex_lock_io -EXPORT_SYMBOL_GPL vmlinux 0x5df3b216 crypto_stats_rng_seed -EXPORT_SYMBOL_GPL vmlinux 0x5df6171b fuse_init_fs_context_submount -EXPORT_SYMBOL_GPL vmlinux 0x5e0f17a0 gmap_enable +EXPORT_SYMBOL_GPL vmlinux 0x5de21b03 __audit_inode_child +EXPORT_SYMBOL_GPL vmlinux 0x5e04b314 trace_event_buffer_lock_reserve EXPORT_SYMBOL_GPL vmlinux 0x5e173309 cpu_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x5e1aa27f crypto_unregister_akcipher -EXPORT_SYMBOL_GPL vmlinux 0x5e3705f4 vfs_read -EXPORT_SYMBOL_GPL vmlinux 0x5e4f14db crypto_alloc_sync_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x5e1989e5 __traceiter_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0x5e237251 crypto_unregister_instance +EXPORT_SYMBOL_GPL vmlinux 0x5e37d9bf input_ff_event +EXPORT_SYMBOL_GPL vmlinux 0x5e459b80 blk_mq_freeze_queue_wait_timeout EXPORT_SYMBOL_GPL vmlinux 0x5e515be6 ktime_get_ts64 -EXPORT_SYMBOL_GPL vmlinux 0x5e6ef136 security_inode_mkdir +EXPORT_SYMBOL_GPL vmlinux 0x5e523adc crypto_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0x5e54eb8b synth_event_trace_array +EXPORT_SYMBOL_GPL vmlinux 0x5e6e69bb do_xdp_generic +EXPORT_SYMBOL_GPL vmlinux 0x5e6f0f24 sock_map_close +EXPORT_SYMBOL_GPL vmlinux 0x5e70c9df inet_csk_clone_lock EXPORT_SYMBOL_GPL vmlinux 0x5e85415b ring_buffer_consume -EXPORT_SYMBOL_GPL vmlinux 0x5e9eaef9 pci_cfg_access_trylock +EXPORT_SYMBOL_GPL vmlinux 0x5e8c281d blk_mq_freeze_queue +EXPORT_SYMBOL_GPL vmlinux 0x5e9a4332 firmware_request_platform +EXPORT_SYMBOL_GPL vmlinux 0x5eaae9d0 irq_domain_get_irq_data EXPORT_SYMBOL_GPL vmlinux 0x5eb417e0 __SCK__tp_func_neigh_timer_handler -EXPORT_SYMBOL_GPL vmlinux 0x5ed48cc6 __traceiter_br_fdb_external_learn_add -EXPORT_SYMBOL_GPL vmlinux 0x5ee0cc05 bpf_offload_dev_create +EXPORT_SYMBOL_GPL vmlinux 0x5ed5f773 input_ff_upload EXPORT_SYMBOL_GPL vmlinux 0x5eee7b1f sbitmap_queue_clear -EXPORT_SYMBOL_GPL vmlinux 0x5eefd705 pci_dev_run_wake -EXPORT_SYMBOL_GPL vmlinux 0x5f082117 chp_get_sch_opm -EXPORT_SYMBOL_GPL vmlinux 0x5f1ceec5 ksm_madvise +EXPORT_SYMBOL_GPL vmlinux 0x5efeee92 sched_set_normal +EXPORT_SYMBOL_GPL vmlinux 0x5f079c48 debugfs_create_u64 +EXPORT_SYMBOL_GPL vmlinux 0x5f084e54 irq_domain_alloc_irqs_parent EXPORT_SYMBOL_GPL vmlinux 0x5f23e3fa insert_resource -EXPORT_SYMBOL_GPL vmlinux 0x5f3e814d gen_pool_get -EXPORT_SYMBOL_GPL vmlinux 0x5f5408a8 device_create +EXPORT_SYMBOL_GPL vmlinux 0x5f464650 kvm_vcpu_wake_up +EXPORT_SYMBOL_GPL vmlinux 0x5f583c5e scsi_ioctl_block_when_processing_errors +EXPORT_SYMBOL_GPL vmlinux 0x5f6165c5 scsi_eh_ready_devs +EXPORT_SYMBOL_GPL vmlinux 0x5f67567b wbc_account_cgroup_owner EXPORT_SYMBOL_GPL vmlinux 0x5f6f1e9e dax_get_private -EXPORT_SYMBOL_GPL vmlinux 0x5f946306 inode_sb_list_add -EXPORT_SYMBOL_GPL vmlinux 0x5f956b29 bpf_trace_run4 -EXPORT_SYMBOL_GPL vmlinux 0x5f9cb842 s390_pci_dma_ops +EXPORT_SYMBOL_GPL vmlinux 0x5f95097d irq_create_mapping_affinity EXPORT_SYMBOL_GPL vmlinux 0x5fa625ed mpi_ec_mul_point +EXPORT_SYMBOL_GPL vmlinux 0x5fab5116 inet_twsk_hashdance EXPORT_SYMBOL_GPL vmlinux 0x5fb8848b halt_poll_ns_grow_start -EXPORT_SYMBOL_GPL vmlinux 0x5fc1d810 generic_access_phys -EXPORT_SYMBOL_GPL vmlinux 0x5fcf7fe6 bpf_trace_run8 -EXPORT_SYMBOL_GPL vmlinux 0x5fe282dc xdp_rxq_info_unreg_mem_model -EXPORT_SYMBOL_GPL vmlinux 0x5fe906de pci_find_ext_capability -EXPORT_SYMBOL_GPL vmlinux 0x6016b75d kvm_map_gfn +EXPORT_SYMBOL_GPL vmlinux 0x5fc8bd3c dma_buf_mmap +EXPORT_SYMBOL_GPL vmlinux 0x5fdfcd57 __tracepoint_pelt_thermal_tp EXPORT_SYMBOL_GPL vmlinux 0x6029efd5 dax_flush -EXPORT_SYMBOL_GPL vmlinux 0x602a6441 crypto_unregister_rngs -EXPORT_SYMBOL_GPL vmlinux 0x603a9cfb nfs_ssc_register EXPORT_SYMBOL_GPL vmlinux 0x604722fd devices_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x6050f4b0 ip6_push_pending_frames -EXPORT_SYMBOL_GPL vmlinux 0x605bcedc devlink_resource_occ_get_register -EXPORT_SYMBOL_GPL vmlinux 0x6066c25a gpiod_is_active_low +EXPORT_SYMBOL_GPL vmlinux 0x6052c6a5 posix_clock_unregister +EXPORT_SYMBOL_GPL vmlinux 0x605b68e6 raw_abort EXPORT_SYMBOL_GPL vmlinux 0x607c4683 devlink_info_version_fixed_put EXPORT_SYMBOL_GPL vmlinux 0x6091797f synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x60925c4f devlink_param_publish EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier -EXPORT_SYMBOL_GPL vmlinux 0x60a25689 is_current_mnt_ns EXPORT_SYMBOL_GPL vmlinux 0x60a32ea9 pm_power_off +EXPORT_SYMBOL_GPL vmlinux 0x60aa2f9b crypto_stats_rng_seed +EXPORT_SYMBOL_GPL vmlinux 0x60c50282 dm_send_uevents +EXPORT_SYMBOL_GPL vmlinux 0x60e8d433 watchdog_notify_pretimeout EXPORT_SYMBOL_GPL vmlinux 0x60ebc96f ring_buffer_read_prepare -EXPORT_SYMBOL_GPL vmlinux 0x60ebc9b6 gmap_mprotect_notify -EXPORT_SYMBOL_GPL vmlinux 0x61118d28 cio_enable_subchannel +EXPORT_SYMBOL_GPL vmlinux 0x6105692a ipv4_sk_redirect EXPORT_SYMBOL_GPL vmlinux 0x6129fb93 sfp_remove_phy +EXPORT_SYMBOL_GPL vmlinux 0x612aa16f dw_pcie_host_init EXPORT_SYMBOL_GPL vmlinux 0x612bfd89 errno_to_blk_status -EXPORT_SYMBOL_GPL vmlinux 0x61377b42 inet_csk_listen_start -EXPORT_SYMBOL_GPL vmlinux 0x61404615 sdev_evt_send -EXPORT_SYMBOL_GPL vmlinux 0x614dd687 cio_halt -EXPORT_SYMBOL_GPL vmlinux 0x614e0972 mmu_interval_notifier_insert_locked -EXPORT_SYMBOL_GPL vmlinux 0x6153cbee __fsnotify_parent +EXPORT_SYMBOL_GPL vmlinux 0x61393401 blkcg_policy_register +EXPORT_SYMBOL_GPL vmlinux 0x615afd75 ethnl_cable_test_amplitude EXPORT_SYMBOL_GPL vmlinux 0x615beeb5 __cpuhp_state_add_instance EXPORT_SYMBOL_GPL vmlinux 0x6177373f rhashtable_walk_peek +EXPORT_SYMBOL_GPL vmlinux 0x617f1877 generic_device_group EXPORT_SYMBOL_GPL vmlinux 0x6181e79f timerqueue_add +EXPORT_SYMBOL_GPL vmlinux 0x618fae57 crypto_hash_walk_first EXPORT_SYMBOL_GPL vmlinux 0x6198dfea __ring_buffer_alloc EXPORT_SYMBOL_GPL vmlinux 0x6199ad5d crypto_has_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x61b91a80 scm_driver_unregister EXPORT_SYMBOL_GPL vmlinux 0x61c1ca29 __SCK__tp_func_add_device_to_group -EXPORT_SYMBOL_GPL vmlinux 0x61d0f4a5 kthread_queue_work -EXPORT_SYMBOL_GPL vmlinux 0x61e6b7da sched_trace_rq_cpu_capacity -EXPORT_SYMBOL_GPL vmlinux 0x61ef8596 irq_create_mapping_affinity -EXPORT_SYMBOL_GPL vmlinux 0x621d8bfb nfs_ssc_client_tbl +EXPORT_SYMBOL_GPL vmlinux 0x61c5dfa2 tty_ldisc_ref_wait +EXPORT_SYMBOL_GPL vmlinux 0x61c64afd fwnode_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x61d653da device_store_int +EXPORT_SYMBOL_GPL vmlinux 0x61f2d74d vfs_listxattr +EXPORT_SYMBOL_GPL vmlinux 0x61f7bfe6 crypto_register_template +EXPORT_SYMBOL_GPL vmlinux 0x6225ffb3 find_pid_ns EXPORT_SYMBOL_GPL vmlinux 0x622c7922 register_oom_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6236318b scsi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x6231dc09 vfs_read EXPORT_SYMBOL_GPL vmlinux 0x62377a7b blk_io_schedule EXPORT_SYMBOL_GPL vmlinux 0x6246a629 synchronize_rcu_tasks_trace -EXPORT_SYMBOL_GPL vmlinux 0x625db7fa skb_segment -EXPORT_SYMBOL_GPL vmlinux 0x62813bec fib4_rule_default -EXPORT_SYMBOL_GPL vmlinux 0x62a25f39 fscrypt_ioctl_remove_key_all_users -EXPORT_SYMBOL_GPL vmlinux 0x62a4f4c6 iommu_set_fault_handler -EXPORT_SYMBOL_GPL vmlinux 0x62b5bd5a sfp_add_phy +EXPORT_SYMBOL_GPL vmlinux 0x62649128 iomap_zero_range +EXPORT_SYMBOL_GPL vmlinux 0x6276c19a __traceiter_tcp_send_reset +EXPORT_SYMBOL_GPL vmlinux 0x628f3854 inverse_translate +EXPORT_SYMBOL_GPL vmlinux 0x62981eef ip_icmp_error_rfc4884 EXPORT_SYMBOL_GPL vmlinux 0x62bb09bf clocks_calc_mult_shift -EXPORT_SYMBOL_GPL vmlinux 0x62ecc767 device_property_read_u32_array -EXPORT_SYMBOL_GPL vmlinux 0x62f8deee ip6_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x62c5040a kvm_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0x62cc1ee1 platform_device_add_resources +EXPORT_SYMBOL_GPL vmlinux 0x62cdf206 tty_prepare_flip_string +EXPORT_SYMBOL_GPL vmlinux 0x62dcab44 pcie_bus_configure_settings +EXPORT_SYMBOL_GPL vmlinux 0x62faa8be devlink_param_unregister +EXPORT_SYMBOL_GPL vmlinux 0x62fd6a8c do_splice_to EXPORT_SYMBOL_GPL vmlinux 0x62fe6b57 ipl_info -EXPORT_SYMBOL_GPL vmlinux 0x63100177 vfs_truncate EXPORT_SYMBOL_GPL vmlinux 0x631ba529 software_node_unregister_node_group -EXPORT_SYMBOL_GPL vmlinux 0x631d9764 shmem_truncate_range +EXPORT_SYMBOL_GPL vmlinux 0x633fa900 skb_pull_rcsum EXPORT_SYMBOL_GPL vmlinux 0x634b9d42 __SCK__tp_func_block_unplug EXPORT_SYMBOL_GPL vmlinux 0x634c6082 freq_qos_remove_request -EXPORT_SYMBOL_GPL vmlinux 0x635d5d7e pci_probe_reset_slot -EXPORT_SYMBOL_GPL vmlinux 0x6365cf67 fb_deferred_io_fsync -EXPORT_SYMBOL_GPL vmlinux 0x6392761a unix_outq_len -EXPORT_SYMBOL_GPL vmlinux 0x63c9a4a7 int_active_memcg -EXPORT_SYMBOL_GPL vmlinux 0x63e38416 fuse_dev_free -EXPORT_SYMBOL_GPL vmlinux 0x63e71b57 bpf_prog_create_from_user -EXPORT_SYMBOL_GPL vmlinux 0x641149b1 tpm_chip_start +EXPORT_SYMBOL_GPL vmlinux 0x63589cdb dst_cache_get_ip4 +EXPORT_SYMBOL_GPL vmlinux 0x637ad34c crypto_grab_spawn +EXPORT_SYMBOL_GPL vmlinux 0x63916e0e bdev_disk_changed +EXPORT_SYMBOL_GPL vmlinux 0x63931a98 pci_try_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x63c1acc5 pci_hp_create_module_link +EXPORT_SYMBOL_GPL vmlinux 0x63d7e975 devm_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x64054976 gpiod_get_array_value +EXPORT_SYMBOL_GPL vmlinux 0x640774bf ip6_redirect +EXPORT_SYMBOL_GPL vmlinux 0x640e74d9 __unwind_start +EXPORT_SYMBOL_GPL vmlinux 0x640f8933 pci_d3cold_disable +EXPORT_SYMBOL_GPL vmlinux 0x641f52f0 gmap_fault +EXPORT_SYMBOL_GPL vmlinux 0x64210845 fuse_do_open EXPORT_SYMBOL_GPL vmlinux 0x64609d25 __tracepoint_devlink_trap_report -EXPORT_SYMBOL_GPL vmlinux 0x64711d67 serdev_device_get_tiocm EXPORT_SYMBOL_GPL vmlinux 0x64786375 kmsg_dump_get_buffer -EXPORT_SYMBOL_GPL vmlinux 0x647fb97f devlink_params_register +EXPORT_SYMBOL_GPL vmlinux 0x6479a577 dst_blackhole_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x647c7d79 console_drivers +EXPORT_SYMBOL_GPL vmlinux 0x64900e56 devlink_resource_register EXPORT_SYMBOL_GPL vmlinux 0x64925270 __dax_synchronous -EXPORT_SYMBOL_GPL vmlinux 0x64abf3db fib_add_nexthop -EXPORT_SYMBOL_GPL vmlinux 0x64ac74e7 class_for_each_device -EXPORT_SYMBOL_GPL vmlinux 0x64aea288 kern_mount +EXPORT_SYMBOL_GPL vmlinux 0x64ad8c90 iomap_invalidatepage +EXPORT_SYMBOL_GPL vmlinux 0x64b0a79b pci_reset_function EXPORT_SYMBOL_GPL vmlinux 0x64c3ad06 rhashtable_init +EXPORT_SYMBOL_GPL vmlinux 0x64c7903b class_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0x64cd5474 dm_accept_partial_bio +EXPORT_SYMBOL_GPL vmlinux 0x64d98775 xdp_rxq_info_unreg_mem_model EXPORT_SYMBOL_GPL vmlinux 0x64e27c4f synth_event_delete +EXPORT_SYMBOL_GPL vmlinux 0x64ee4862 gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0x64f3ed86 wait_for_stable_page EXPORT_SYMBOL_GPL vmlinux 0x64f74abf __tracepoint_pelt_cfs_tp -EXPORT_SYMBOL_GPL vmlinux 0x6506868d devlink_dpipe_headers_register -EXPORT_SYMBOL_GPL vmlinux 0x6511ae8b __traceiter_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0x650d22c2 tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x6526bb89 iptunnel_metadata_reply EXPORT_SYMBOL_GPL vmlinux 0x6531a37f mpi_add -EXPORT_SYMBOL_GPL vmlinux 0x65354349 lwtunnel_state_alloc EXPORT_SYMBOL_GPL vmlinux 0x6545268e __tracepoint_neigh_cleanup_and_release +EXPORT_SYMBOL_GPL vmlinux 0x6552c43d dm_report_zones EXPORT_SYMBOL_GPL vmlinux 0x656938c8 sbitmap_prepare_to_wait -EXPORT_SYMBOL_GPL vmlinux 0x6578c448 watchdog_notify_pretimeout -EXPORT_SYMBOL_GPL vmlinux 0x6588042c rcu_read_unlock_trace_special -EXPORT_SYMBOL_GPL vmlinux 0x6596178a scsi_eh_ready_devs -EXPORT_SYMBOL_GPL vmlinux 0x659effbb tcp_ca_get_key_by_name -EXPORT_SYMBOL_GPL vmlinux 0x65b514b7 kvm_vcpu_gfn_to_hva -EXPORT_SYMBOL_GPL vmlinux 0x65baf986 gfn_to_pfn_prot -EXPORT_SYMBOL_GPL vmlinux 0x65c9335b crypto_grab_shash +EXPORT_SYMBOL_GPL vmlinux 0x6586e3a4 watchdog_set_restart_priority +EXPORT_SYMBOL_GPL vmlinux 0x659f6c63 perf_get_aux +EXPORT_SYMBOL_GPL vmlinux 0x65a56bc5 __fscrypt_prepare_readdir +EXPORT_SYMBOL_GPL vmlinux 0x65a6dac9 debugfs_create_regset32 +EXPORT_SYMBOL_GPL vmlinux 0x65bb417c fwnode_get_next_available_child_node +EXPORT_SYMBOL_GPL vmlinux 0x65c6080d devlink_traps_register +EXPORT_SYMBOL_GPL vmlinux 0x65c776a4 device_remove_properties +EXPORT_SYMBOL_GPL vmlinux 0x65ca094c virtqueue_get_buf_ctx EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers -EXPORT_SYMBOL_GPL vmlinux 0x65fa1d70 unregister_pernet_device EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol +EXPORT_SYMBOL_GPL vmlinux 0x66246a7c ip6_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x6624ee05 badblocks_set EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity EXPORT_SYMBOL_GPL vmlinux 0x663bb448 devlink_fmsg_obj_nest_end +EXPORT_SYMBOL_GPL vmlinux 0x663bf1ac devm_ioremap_uc +EXPORT_SYMBOL_GPL vmlinux 0x664dae3c fixup_user_fault EXPORT_SYMBOL_GPL vmlinux 0x66611eee unregister_kprobe -EXPORT_SYMBOL_GPL vmlinux 0x6663295f badblocks_exit -EXPORT_SYMBOL_GPL vmlinux 0x6670d4da device_link_del -EXPORT_SYMBOL_GPL vmlinux 0x6681e9fd bpf_map_inc -EXPORT_SYMBOL_GPL vmlinux 0x668387d2 watchdog_init_timeout +EXPORT_SYMBOL_GPL vmlinux 0x666f612f irq_domain_update_bus_token EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x66a57651 simple_attr_read -EXPORT_SYMBOL_GPL vmlinux 0x66abfae6 inet_csk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x669c58a5 devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0x66a4d17c housekeeping_affine EXPORT_SYMBOL_GPL vmlinux 0x66b97421 sfp_link_up +EXPORT_SYMBOL_GPL vmlinux 0x66d3fbeb bpf_trace_run11 EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr -EXPORT_SYMBOL_GPL vmlinux 0x66f04d33 iommu_aux_get_pasid -EXPORT_SYMBOL_GPL vmlinux 0x67029426 sysfs_group_change_owner -EXPORT_SYMBOL_GPL vmlinux 0x67142750 ping_seq_start -EXPORT_SYMBOL_GPL vmlinux 0x672bda24 scsi_queue_work +EXPORT_SYMBOL_GPL vmlinux 0x66e1ac7f sysfs_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0x66e3f1fd fuse_init_fs_context_submount +EXPORT_SYMBOL_GPL vmlinux 0x66f2c6ef disk_force_media_change +EXPORT_SYMBOL_GPL vmlinux 0x67044667 tpm_send +EXPORT_SYMBOL_GPL vmlinux 0x67348de5 irq_domain_create_hierarchy EXPORT_SYMBOL_GPL vmlinux 0x6735d56e tcp_ca_get_name_by_key EXPORT_SYMBOL_GPL vmlinux 0x67429c91 __SCK__tp_func_block_bio_remap -EXPORT_SYMBOL_GPL vmlinux 0x6747895b fb_deferred_io_open +EXPORT_SYMBOL_GPL vmlinux 0x6762e325 kvm_irq_has_notifier +EXPORT_SYMBOL_GPL vmlinux 0x677d9a56 transport_class_register EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits -EXPORT_SYMBOL_GPL vmlinux 0x67cad866 mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0x67b5c87f irq_domain_associate +EXPORT_SYMBOL_GPL vmlinux 0x67d2cb2d xfrm_audit_state_replay_overflow EXPORT_SYMBOL_GPL vmlinux 0x67da9f7c sha512_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x67ec17ed misc_cg_try_charge -EXPORT_SYMBOL_GPL vmlinux 0x6809f97c blk_clear_pm_only +EXPORT_SYMBOL_GPL vmlinux 0x67e442b9 irq_chip_unmask_parent EXPORT_SYMBOL_GPL vmlinux 0x6826711e xas_nomem -EXPORT_SYMBOL_GPL vmlinux 0x682eadbd attribute_container_find_class_device EXPORT_SYMBOL_GPL vmlinux 0x682ff057 ring_buffer_commit_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0x6833d658 xdp_rxq_info_is_reg EXPORT_SYMBOL_GPL vmlinux 0x685d09ac __kprobe_event_gen_cmd_start -EXPORT_SYMBOL_GPL vmlinux 0x685eb518 kernel_kobj -EXPORT_SYMBOL_GPL vmlinux 0x6877d9ae tcp_sendmsg_locked -EXPORT_SYMBOL_GPL vmlinux 0x687f0904 bus_for_each_drv EXPORT_SYMBOL_GPL vmlinux 0x6892e3c3 kvm_set_pfn_accessed EXPORT_SYMBOL_GPL vmlinux 0x68952493 rcu_note_context_switch -EXPORT_SYMBOL_GPL vmlinux 0x68a0dd48 trace_put_event_file -EXPORT_SYMBOL_GPL vmlinux 0x68afbcbb crypto_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x68baed4d devlink_dpipe_table_register -EXPORT_SYMBOL_GPL vmlinux 0x68bdde91 fsnotify_init_mark -EXPORT_SYMBOL_GPL vmlinux 0x68ce27d6 shash_ahash_digest -EXPORT_SYMBOL_GPL vmlinux 0x68cfea64 __traceiter_devlink_hwmsg -EXPORT_SYMBOL_GPL vmlinux 0x68d61542 crypto_hash_walk_done -EXPORT_SYMBOL_GPL vmlinux 0x68d70117 debugfs_create_u16 -EXPORT_SYMBOL_GPL vmlinux 0x68d744c4 fwnode_property_get_reference_args -EXPORT_SYMBOL_GPL vmlinux 0x68e50f2e skb_append_pagefrags -EXPORT_SYMBOL_GPL vmlinux 0x68ec3009 mptcp_get_reset_option -EXPORT_SYMBOL_GPL vmlinux 0x6901db44 device_for_each_child_reverse +EXPORT_SYMBOL_GPL vmlinux 0x6897eb5c gpiod_count +EXPORT_SYMBOL_GPL vmlinux 0x689b3cdc gmap_get +EXPORT_SYMBOL_GPL vmlinux 0x689b9a20 vfs_setlease +EXPORT_SYMBOL_GPL vmlinux 0x68a549be __traceiter_pelt_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x68ab45ba percpu_down_write +EXPORT_SYMBOL_GPL vmlinux 0x68ae26d0 get_device +EXPORT_SYMBOL_GPL vmlinux 0x68b328f3 device_move +EXPORT_SYMBOL_GPL vmlinux 0x68bcb7f1 device_attach +EXPORT_SYMBOL_GPL vmlinux 0x68ef5070 vfs_removexattr +EXPORT_SYMBOL_GPL vmlinux 0x68f06b8a setfl +EXPORT_SYMBOL_GPL vmlinux 0x690a8554 dst_cache_set_ip4 EXPORT_SYMBOL_GPL vmlinux 0x6913865a trace_clock_jiffies -EXPORT_SYMBOL_GPL vmlinux 0x692f666d relay_reset -EXPORT_SYMBOL_GPL vmlinux 0x69350e8c kvm_vcpu_on_spin -EXPORT_SYMBOL_GPL vmlinux 0x69393898 vfs_setxattr -EXPORT_SYMBOL_GPL vmlinux 0x69524b40 sysfs_remove_file_self -EXPORT_SYMBOL_GPL vmlinux 0x69539fb2 fib_nh_common_init +EXPORT_SYMBOL_GPL vmlinux 0x691808d5 bpfilter_umh_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x692880a0 devlink_port_attrs_set +EXPORT_SYMBOL_GPL vmlinux 0x6936bbac blk_req_zone_write_trylock +EXPORT_SYMBOL_GPL vmlinux 0x693f8b72 crypto_skcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x69444149 skb_zerocopy_headlen EXPORT_SYMBOL_GPL vmlinux 0x69637b2c __traceiter_powernv_throttle -EXPORT_SYMBOL_GPL vmlinux 0x69723b10 inet_twsk_put -EXPORT_SYMBOL_GPL vmlinux 0x697774d5 kvm_release_page_clean +EXPORT_SYMBOL_GPL vmlinux 0x696681c3 ip_local_out +EXPORT_SYMBOL_GPL vmlinux 0x697b2813 vcpu_load EXPORT_SYMBOL_GPL vmlinux 0x697c5d0d tracing_snapshot_alloc EXPORT_SYMBOL_GPL vmlinux 0x698a2654 software_node_find_by_name -EXPORT_SYMBOL_GPL vmlinux 0x69b0c366 switchdev_bridge_port_unoffload -EXPORT_SYMBOL_GPL vmlinux 0x69b3ba54 __traceiter_br_fdb_update +EXPORT_SYMBOL_GPL vmlinux 0x699394f7 switchdev_port_obj_del +EXPORT_SYMBOL_GPL vmlinux 0x699fa841 put_pid_ns EXPORT_SYMBOL_GPL vmlinux 0x69cf0632 mpi_fromstr +EXPORT_SYMBOL_GPL vmlinux 0x69d9f738 fscrypt_set_bio_crypt_ctx EXPORT_SYMBOL_GPL vmlinux 0x69e683de uuid_gen -EXPORT_SYMBOL_GPL vmlinux 0x69ec9b4a noop_backing_dev_info -EXPORT_SYMBOL_GPL vmlinux 0x69fd68f2 pci_debug_err_id -EXPORT_SYMBOL_GPL vmlinux 0x6a0e6703 iommu_set_pgtable_quirks +EXPORT_SYMBOL_GPL vmlinux 0x69f178b7 fib_rule_matchall +EXPORT_SYMBOL_GPL vmlinux 0x6a0f79e3 __platform_driver_probe +EXPORT_SYMBOL_GPL vmlinux 0x6a126f5d validate_xmit_xfrm EXPORT_SYMBOL_GPL vmlinux 0x6a1733eb iommu_group_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6a1e0009 input_ff_flush EXPORT_SYMBOL_GPL vmlinux 0x6a460dc5 schedule_hrtimeout -EXPORT_SYMBOL_GPL vmlinux 0x6a4c72a6 device_attach EXPORT_SYMBOL_GPL vmlinux 0x6a4f623b mmu_notifier_synchronize +EXPORT_SYMBOL_GPL vmlinux 0x6a661753 fwnode_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x6a6dbfd2 md_find_rdev_rcu EXPORT_SYMBOL_GPL vmlinux 0x6a8441be cpci_hp_start -EXPORT_SYMBOL_GPL vmlinux 0x6aa6c19a event_triggers_call -EXPORT_SYMBOL_GPL vmlinux 0x6ab64a5d __scsi_init_queue -EXPORT_SYMBOL_GPL vmlinux 0x6ad11a17 aead_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x6b01cdcb transport_configure_device -EXPORT_SYMBOL_GPL vmlinux 0x6b0ac2cb pci_scan_child_bus -EXPORT_SYMBOL_GPL vmlinux 0x6b2073a2 alloc_skb_for_msg +EXPORT_SYMBOL_GPL vmlinux 0x6aa4531d ip_route_output_key_hash +EXPORT_SYMBOL_GPL vmlinux 0x6aa6345e raw_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x6aedddfd gmap_convert_to_secure +EXPORT_SYMBOL_GPL vmlinux 0x6b023488 pci_user_write_config_byte +EXPORT_SYMBOL_GPL vmlinux 0x6b0758f4 bpf_prog_put +EXPORT_SYMBOL_GPL vmlinux 0x6b094042 tty_perform_flush EXPORT_SYMBOL_GPL vmlinux 0x6b22d955 unregister_kretprobes EXPORT_SYMBOL_GPL vmlinux 0x6b26b490 kernel_read_file_from_path_initns EXPORT_SYMBOL_GPL vmlinux 0x6b2b69f7 static_key_enable -EXPORT_SYMBOL_GPL vmlinux 0x6b35b7ae pci_bridge_secondary_bus_reset EXPORT_SYMBOL_GPL vmlinux 0x6b413c9b sfp_link_down -EXPORT_SYMBOL_GPL vmlinux 0x6b466085 skb_scrub_packet -EXPORT_SYMBOL_GPL vmlinux 0x6b4d07c3 inverse_translate -EXPORT_SYMBOL_GPL vmlinux 0x6b4f9f19 pid_nr_ns -EXPORT_SYMBOL_GPL vmlinux 0x6b5f8331 blkcg_activate_policy +EXPORT_SYMBOL_GPL vmlinux 0x6b44b428 tpm2_probe +EXPORT_SYMBOL_GPL vmlinux 0x6b54dc71 iommu_capable +EXPORT_SYMBOL_GPL vmlinux 0x6b5f75d2 irq_set_chained_handler_and_data +EXPORT_SYMBOL_GPL vmlinux 0x6b61de2d pid_nr_ns EXPORT_SYMBOL_GPL vmlinux 0x6b667897 __xas_prev -EXPORT_SYMBOL_GPL vmlinux 0x6b7c2881 tty_ldisc_deref -EXPORT_SYMBOL_GPL vmlinux 0x6ba8684c sock_diag_save_cookie -EXPORT_SYMBOL_GPL vmlinux 0x6bb32b29 platform_get_irq_byname -EXPORT_SYMBOL_GPL vmlinux 0x6bc26b99 dst_cache_set_ip6 +EXPORT_SYMBOL_GPL vmlinux 0x6b80c04e synth_event_create EXPORT_SYMBOL_GPL vmlinux 0x6bcdedc0 mpi_point_init EXPORT_SYMBOL_GPL vmlinux 0x6bd1aa56 stack_trace_save EXPORT_SYMBOL_GPL vmlinux 0x6be2bb72 kernel_read_file_from_path -EXPORT_SYMBOL_GPL vmlinux 0x6be3ae63 dm_internal_suspend_noflush -EXPORT_SYMBOL_GPL vmlinux 0x6bea5869 gmap_fault -EXPORT_SYMBOL_GPL vmlinux 0x6beb8e54 virtqueue_get_buf_ctx -EXPORT_SYMBOL_GPL vmlinux 0x6c244202 netdev_walk_all_lower_dev -EXPORT_SYMBOL_GPL vmlinux 0x6c320570 pci_hp_create_module_link -EXPORT_SYMBOL_GPL vmlinux 0x6c382d85 iommu_aux_detach_device +EXPORT_SYMBOL_GPL vmlinux 0x6c2f43fc fscrypt_ioctl_get_nonce +EXPORT_SYMBOL_GPL vmlinux 0x6c3aedb2 devlink_sb_register EXPORT_SYMBOL_GPL vmlinux 0x6c3f70e0 guid_gen -EXPORT_SYMBOL_GPL vmlinux 0x6c4ce81f vfs_getxattr_alloc -EXPORT_SYMBOL_GPL vmlinux 0x6c5231d9 fwnode_create_software_node EXPORT_SYMBOL_GPL vmlinux 0x6c5ad0cd kmsg_dump_register -EXPORT_SYMBOL_GPL vmlinux 0x6c697c91 devlink_param_publish EXPORT_SYMBOL_GPL vmlinux 0x6c956075 __SCK__tp_func_devlink_hwerr -EXPORT_SYMBOL_GPL vmlinux 0x6ca3227e uprobe_register +EXPORT_SYMBOL_GPL vmlinux 0x6c9cbb2d shmem_file_setup +EXPORT_SYMBOL_GPL vmlinux 0x6c9f997c sysfs_notify EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain -EXPORT_SYMBOL_GPL vmlinux 0x6ca87f79 sysfs_create_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x6cb66b1f crypto_enqueue_request -EXPORT_SYMBOL_GPL vmlinux 0x6ccec907 fb_deferred_io_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x6cd341c1 seg6_do_srh_encap +EXPORT_SYMBOL_GPL vmlinux 0x6cb13fed pci_epf_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x6cd40a0a dev_queue_xmit_nit +EXPORT_SYMBOL_GPL vmlinux 0x6ce1f0f2 ip_fib_metrics_init +EXPORT_SYMBOL_GPL vmlinux 0x6d03445b uprobe_register_refctr EXPORT_SYMBOL_GPL vmlinux 0x6d09843f copy_bpf_fprog_from_user -EXPORT_SYMBOL_GPL vmlinux 0x6d161c11 dev_fill_metadata_dst +EXPORT_SYMBOL_GPL vmlinux 0x6d166c52 dst_blackhole_mtu EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list -EXPORT_SYMBOL_GPL vmlinux 0x6d427162 gpiochip_line_is_open_source -EXPORT_SYMBOL_GPL vmlinux 0x6d4305da sysfs_create_files -EXPORT_SYMBOL_GPL vmlinux 0x6d43fc68 mddev_suspend -EXPORT_SYMBOL_GPL vmlinux 0x6d54da81 pid_vnr EXPORT_SYMBOL_GPL vmlinux 0x6d5ce483 sfp_module_insert -EXPORT_SYMBOL_GPL vmlinux 0x6d6c41f0 bpf_redirect_info +EXPORT_SYMBOL_GPL vmlinux 0x6d63e898 switchdev_bridge_port_unoffload EXPORT_SYMBOL_GPL vmlinux 0x6d6fec1f ktime_mono_to_any -EXPORT_SYMBOL_GPL vmlinux 0x6d7336f4 securityfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x6d7ba207 virtqueue_add_sgs EXPORT_SYMBOL_GPL vmlinux 0x6d7e951e rcu_exp_batches_completed -EXPORT_SYMBOL_GPL vmlinux 0x6d858846 __bio_add_page -EXPORT_SYMBOL_GPL vmlinux 0x6d8ecb6a pingv6_ops -EXPORT_SYMBOL_GPL vmlinux 0x6da9fa6f pci_epf_bind +EXPORT_SYMBOL_GPL vmlinux 0x6d82edba unwind_next_frame +EXPORT_SYMBOL_GPL vmlinux 0x6d96c9a0 ip_build_and_send_pkt +EXPORT_SYMBOL_GPL vmlinux 0x6d9bd53c kvm_vcpu_read_guest_page +EXPORT_SYMBOL_GPL vmlinux 0x6db6e3b7 ccw_device_siosl EXPORT_SYMBOL_GPL vmlinux 0x6dbaafd3 put_old_timespec32 +EXPORT_SYMBOL_GPL vmlinux 0x6dbcffac kthread_cancel_work_sync EXPORT_SYMBOL_GPL vmlinux 0x6dd5680d sprint_symbol_build_id -EXPORT_SYMBOL_GPL vmlinux 0x6de340b9 dma_buf_vmap -EXPORT_SYMBOL_GPL vmlinux 0x6de713eb pci_dev_lock -EXPORT_SYMBOL_GPL vmlinux 0x6e07166b pci_sriov_set_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0x6dd943ad dev_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x6dda89fb __irq_domain_add +EXPORT_SYMBOL_GPL vmlinux 0x6ddf56fa kthread_queue_work +EXPORT_SYMBOL_GPL vmlinux 0x6e013f3c vfs_getxattr +EXPORT_SYMBOL_GPL vmlinux 0x6e08b38e udp_abort EXPORT_SYMBOL_GPL vmlinux 0x6e09d93d __SCK__tp_func_map -EXPORT_SYMBOL_GPL vmlinux 0x6e1967b5 iommu_device_link -EXPORT_SYMBOL_GPL vmlinux 0x6e3ddb95 crypto_remove_spawns -EXPORT_SYMBOL_GPL vmlinux 0x6e4c9326 fsnotify_put_mark +EXPORT_SYMBOL_GPL vmlinux 0x6e0d9f5f __mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x6e1af18f fsnotify_init_mark +EXPORT_SYMBOL_GPL vmlinux 0x6e1e1c01 devlink_port_unregister EXPORT_SYMBOL_GPL vmlinux 0x6e59f821 __tracepoint_wbc_writepage -EXPORT_SYMBOL_GPL vmlinux 0x6e5c6cf1 vp_modern_set_queue_enable EXPORT_SYMBOL_GPL vmlinux 0x6e7943ec iommu_group_id -EXPORT_SYMBOL_GPL vmlinux 0x6e79e3a7 vfs_removexattr -EXPORT_SYMBOL_GPL vmlinux 0x6e84f40a page_cache_ra_unbounded -EXPORT_SYMBOL_GPL vmlinux 0x6e89eba6 debugfs_write_file_bool -EXPORT_SYMBOL_GPL vmlinux 0x6e8d222d device_remove_groups -EXPORT_SYMBOL_GPL vmlinux 0x6e910112 scsi_host_busy_iter -EXPORT_SYMBOL_GPL vmlinux 0x6e9a4cd1 udp_cmsg_send -EXPORT_SYMBOL_GPL vmlinux 0x6e9d476e gpio_to_desc -EXPORT_SYMBOL_GPL vmlinux 0x6eb87d65 __tcp_send_ack +EXPORT_SYMBOL_GPL vmlinux 0x6e82e919 gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0x6e93a704 devlink_dpipe_action_put +EXPORT_SYMBOL_GPL vmlinux 0x6eb6e066 nf_ipv6_ops EXPORT_SYMBOL_GPL vmlinux 0x6ebe366f ktime_get_mono_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0x6ebee3d3 skb_to_sgvec_nomark EXPORT_SYMBOL_GPL vmlinux 0x6ec7b94c gen_pool_avail -EXPORT_SYMBOL_GPL vmlinux 0x6ed00ba3 __udp_enqueue_schedule_skb -EXPORT_SYMBOL_GPL vmlinux 0x6edd26e0 skb_mpls_update_lse +EXPORT_SYMBOL_GPL vmlinux 0x6ed437c7 irq_get_irq_data EXPORT_SYMBOL_GPL vmlinux 0x6ee8c94b sfp_get_module_eeprom -EXPORT_SYMBOL_GPL vmlinux 0x6eeb7da4 pci_probe_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x6eef53b3 fscrypt_ioctl_remove_key_all_users EXPORT_SYMBOL_GPL vmlinux 0x6ef6b54f ktime_get_boot_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0x6ef8daa6 seg6_do_srh_inline -EXPORT_SYMBOL_GPL vmlinux 0x6ef91751 crypto_aead_setkey -EXPORT_SYMBOL_GPL vmlinux 0x6f072a5e crypto_register_rngs +EXPORT_SYMBOL_GPL vmlinux 0x6ef7fe45 balloon_page_dequeue +EXPORT_SYMBOL_GPL vmlinux 0x6f004723 bpf_offload_dev_create EXPORT_SYMBOL_GPL vmlinux 0x6f0b5a96 blocking_notifier_call_chain_robust EXPORT_SYMBOL_GPL vmlinux 0x6f12560a get_old_timespec32 +EXPORT_SYMBOL_GPL vmlinux 0x6f128623 peernet2id_alloc +EXPORT_SYMBOL_GPL vmlinux 0x6f1ca668 mptcp_token_iter_next EXPORT_SYMBOL_GPL vmlinux 0x6f2017de misc_cg_set_capacity -EXPORT_SYMBOL_GPL vmlinux 0x6f39f031 sysfs_remove_file_ns -EXPORT_SYMBOL_GPL vmlinux 0x6f546f18 mmu_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0x6f7d0d10 init_user_ns +EXPORT_SYMBOL_GPL vmlinux 0x6f2df433 sdev_evt_send +EXPORT_SYMBOL_GPL vmlinux 0x6f3fccf3 bsg_job_put +EXPORT_SYMBOL_GPL vmlinux 0x6f4e3852 __traceiter_neigh_timer_handler EXPORT_SYMBOL_GPL vmlinux 0x6f7e6040 irq_has_action -EXPORT_SYMBOL_GPL vmlinux 0x6f863dac dax_layout_busy_page_range -EXPORT_SYMBOL_GPL vmlinux 0x6f9d6688 pci_epc_multi_mem_init +EXPORT_SYMBOL_GPL vmlinux 0x6f8b696c dm_copy_name_and_uuid +EXPORT_SYMBOL_GPL vmlinux 0x6f9b1e7a device_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x6f9cd248 iommu_uapi_sva_bind_gpasid EXPORT_SYMBOL_GPL vmlinux 0x6f9e763b timecounter_read -EXPORT_SYMBOL_GPL vmlinux 0x6fa7caa0 pcie_aspm_enabled -EXPORT_SYMBOL_GPL vmlinux 0x6fbee949 virtqueue_get_used_addr -EXPORT_SYMBOL_GPL vmlinux 0x6fc67a32 kvm_gfn_to_hva_cache_init +EXPORT_SYMBOL_GPL vmlinux 0x6fa56c72 gpiochip_request_own_desc +EXPORT_SYMBOL_GPL vmlinux 0x6fbada68 kvm_vcpu_read_guest_atomic +EXPORT_SYMBOL_GPL vmlinux 0x6fbb5087 kvm_arch_crypto_clear_masks EXPORT_SYMBOL_GPL vmlinux 0x6fcef6ab ring_buffer_reset -EXPORT_SYMBOL_GPL vmlinux 0x6fed7f60 netdev_is_rx_handler_busy -EXPORT_SYMBOL_GPL vmlinux 0x6ff5f3e4 bio_trim EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x7005fa52 fwnode_get_next_child_node EXPORT_SYMBOL_GPL vmlinux 0x7006586e iommu_get_group_resv_regions -EXPORT_SYMBOL_GPL vmlinux 0x70204048 ptp_parse_header -EXPORT_SYMBOL_GPL vmlinux 0x7020b1e8 gmap_pmdp_csp -EXPORT_SYMBOL_GPL vmlinux 0x703cb356 trace_seq_path -EXPORT_SYMBOL_GPL vmlinux 0x704b34ee lwtunnel_xmit -EXPORT_SYMBOL_GPL vmlinux 0x704fda86 handle_irq_desc -EXPORT_SYMBOL_GPL vmlinux 0x706956f1 crypto_ahash_final -EXPORT_SYMBOL_GPL vmlinux 0x707c7df9 synth_event_gen_cmd_array_start -EXPORT_SYMBOL_GPL vmlinux 0x70876ee5 device_match_any -EXPORT_SYMBOL_GPL vmlinux 0x70a35cf9 bpf_map_inc_not_zero -EXPORT_SYMBOL_GPL vmlinux 0x70a5f523 vp_modern_probe +EXPORT_SYMBOL_GPL vmlinux 0x700fb730 handle_simple_irq +EXPORT_SYMBOL_GPL vmlinux 0x703e438d crypto_register_templates +EXPORT_SYMBOL_GPL vmlinux 0x70544cab cgroup_get_e_css +EXPORT_SYMBOL_GPL vmlinux 0x70aa9923 gpiochip_relres_irq EXPORT_SYMBOL_GPL vmlinux 0x70c2c7ea pids_cgrp_subsys_on_dfl_key EXPORT_SYMBOL_GPL vmlinux 0x70c52dc5 nf_skb_duplicated -EXPORT_SYMBOL_GPL vmlinux 0x70e3ba63 iommu_group_get -EXPORT_SYMBOL_GPL vmlinux 0x70e668a8 dw_pcie_read_dbi -EXPORT_SYMBOL_GPL vmlinux 0x70f35717 relay_subbufs_consumed EXPORT_SYMBOL_GPL vmlinux 0x70f89d53 rsa_parse_priv_key -EXPORT_SYMBOL_GPL vmlinux 0x7107b953 fsverity_verify_bio -EXPORT_SYMBOL_GPL vmlinux 0x710b84a7 iommu_device_sysfs_add EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x7124c72c rt_mutex_trylock -EXPORT_SYMBOL_GPL vmlinux 0x7134d0ab dax_region_put +EXPORT_SYMBOL_GPL vmlinux 0x71191d9d virtqueue_add_outbuf +EXPORT_SYMBOL_GPL vmlinux 0x712748f7 blk_bio_list_merge +EXPORT_SYMBOL_GPL vmlinux 0x713baaa1 vfs_truncate +EXPORT_SYMBOL_GPL vmlinux 0x71404fed vp_modern_get_queue_enable +EXPORT_SYMBOL_GPL vmlinux 0x7140f01e input_device_enabled +EXPORT_SYMBOL_GPL vmlinux 0x7153f843 iomap_dio_iopoll +EXPORT_SYMBOL_GPL vmlinux 0x715deb94 pci_epc_add_epf EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized EXPORT_SYMBOL_GPL vmlinux 0x71650819 add_bootloader_randomness +EXPORT_SYMBOL_GPL vmlinux 0x71680524 pci_epc_remove_epf EXPORT_SYMBOL_GPL vmlinux 0x7179c31c zpci_iomap_start -EXPORT_SYMBOL_GPL vmlinux 0x717e4c8b serdev_device_wait_until_sent +EXPORT_SYMBOL_GPL vmlinux 0x718adeca unix_peer_get +EXPORT_SYMBOL_GPL vmlinux 0x718bc38a devm_kfree EXPORT_SYMBOL_GPL vmlinux 0x71a20f4a __SCK__tp_func_non_standard_event -EXPORT_SYMBOL_GPL vmlinux 0x71a25b15 gpiod_get_value_cansleep EXPORT_SYMBOL_GPL vmlinux 0x71b15008 lwtunnel_valid_encap_type EXPORT_SYMBOL_GPL vmlinux 0x71b6cf94 dst_cache_reset_now -EXPORT_SYMBOL_GPL vmlinux 0x71d6175e net_ns_get_ownership +EXPORT_SYMBOL_GPL vmlinux 0x71c289ce set_capacity_and_notify +EXPORT_SYMBOL_GPL vmlinux 0x71c99644 crypto_alloc_sync_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x71e200e4 pci_epc_mem_alloc_addr +EXPORT_SYMBOL_GPL vmlinux 0x71ec63bd dma_buf_begin_cpu_access EXPORT_SYMBOL_GPL vmlinux 0x71f69a66 software_node_unregister -EXPORT_SYMBOL_GPL vmlinux 0x721afb09 gpiod_toggle_active_low -EXPORT_SYMBOL_GPL vmlinux 0x721e5451 crypto_larval_alloc +EXPORT_SYMBOL_GPL vmlinux 0x72377542 nf_hook_entries_insert_raw EXPORT_SYMBOL_GPL vmlinux 0x723990e6 list_lru_destroy -EXPORT_SYMBOL_GPL vmlinux 0x72464d79 devlink_traps_unregister -EXPORT_SYMBOL_GPL vmlinux 0x724752f1 perf_aux_output_begin -EXPORT_SYMBOL_GPL vmlinux 0x7248984d kvm_read_guest_cached -EXPORT_SYMBOL_GPL vmlinux 0x725d0008 uprobe_unregister +EXPORT_SYMBOL_GPL vmlinux 0x725bfdc2 tpm_put_ops EXPORT_SYMBOL_GPL vmlinux 0x7262702b sfp_get_module_eeprom_by_page +EXPORT_SYMBOL_GPL vmlinux 0x726537f1 put_pid EXPORT_SYMBOL_GPL vmlinux 0x7265f2b0 pci_vpd_check_csum +EXPORT_SYMBOL_GPL vmlinux 0x7269ec07 crypto_stats_akcipher_verify EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events -EXPORT_SYMBOL_GPL vmlinux 0x7280e419 devlink_resources_unregister -EXPORT_SYMBOL_GPL vmlinux 0x728178a8 iommu_unregister_device_fault_handler -EXPORT_SYMBOL_GPL vmlinux 0x7281f386 skb_gso_validate_mac_len EXPORT_SYMBOL_GPL vmlinux 0x7283161b percpu_ref_switch_to_percpu +EXPORT_SYMBOL_GPL vmlinux 0x7293b111 blk_mq_free_request +EXPORT_SYMBOL_GPL vmlinux 0x7294bac8 driver_create_file EXPORT_SYMBOL_GPL vmlinux 0x72cdb590 sbitmap_any_bit_set -EXPORT_SYMBOL_GPL vmlinux 0x72d43a6c perf_event_update_userpage -EXPORT_SYMBOL_GPL vmlinux 0x72e9b471 tty_ldisc_ref -EXPORT_SYMBOL_GPL vmlinux 0x72ea48ce fuse_conn_destroy EXPORT_SYMBOL_GPL vmlinux 0x72edf918 __tracepoint_kfree_skb -EXPORT_SYMBOL_GPL vmlinux 0x72f61ac5 devlink_port_type_clear -EXPORT_SYMBOL_GPL vmlinux 0x72f6f236 metadata_dst_alloc -EXPORT_SYMBOL_GPL vmlinux 0x732b5bd3 tracing_snapshot_cond_disable -EXPORT_SYMBOL_GPL vmlinux 0x7335cb98 irq_set_default_host -EXPORT_SYMBOL_GPL vmlinux 0x7337eed2 iomap_dio_rw -EXPORT_SYMBOL_GPL vmlinux 0x733dea49 iomap_fiemap -EXPORT_SYMBOL_GPL vmlinux 0x7340e3ff raw_seq_start -EXPORT_SYMBOL_GPL vmlinux 0x734b6cc7 irq_chip_set_parent_state -EXPORT_SYMBOL_GPL vmlinux 0x739fd339 gpiod_count -EXPORT_SYMBOL_GPL vmlinux 0x73a28b49 inet_csk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x73a4c9c9 netdev_walk_all_upper_dev_rcu +EXPORT_SYMBOL_GPL vmlinux 0x72f33b85 crypto_alloc_base +EXPORT_SYMBOL_GPL vmlinux 0x72f46d15 tty_ldisc_flush +EXPORT_SYMBOL_GPL vmlinux 0x730551bc watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0x730913b2 l3mdev_table_lookup_unregister +EXPORT_SYMBOL_GPL vmlinux 0x73540b28 aead_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x738b3f9b blk_add_driver_data EXPORT_SYMBOL_GPL vmlinux 0x73a778e0 synchronize_srcu_expedited -EXPORT_SYMBOL_GPL vmlinux 0x73b28dbd __traceiter_neigh_update -EXPORT_SYMBOL_GPL vmlinux 0x73b91102 bpf_map_put +EXPORT_SYMBOL_GPL vmlinux 0x73bc6c84 bpf_trace_run7 EXPORT_SYMBOL_GPL vmlinux 0x73c93090 rhashtable_insert_slow EXPORT_SYMBOL_GPL vmlinux 0x73cc8631 oiap -EXPORT_SYMBOL_GPL vmlinux 0x73d29863 handle_level_irq -EXPORT_SYMBOL_GPL vmlinux 0x73fc2144 kvm_irq_has_notifier +EXPORT_SYMBOL_GPL vmlinux 0x73d6eb12 __scsi_init_queue +EXPORT_SYMBOL_GPL vmlinux 0x73f07830 ccw_device_get_schid EXPORT_SYMBOL_GPL vmlinux 0x7407d6af get_state_synchronize_srcu -EXPORT_SYMBOL_GPL vmlinux 0x74180449 crypto_larval_kill -EXPORT_SYMBOL_GPL vmlinux 0x742da0fa ip6_route_output_flags -EXPORT_SYMBOL_GPL vmlinux 0x7493ee3d d_exchange -EXPORT_SYMBOL_GPL vmlinux 0x7499e96b sysfs_rename_link_ns -EXPORT_SYMBOL_GPL vmlinux 0x74ab0e37 vtime_account_kernel +EXPORT_SYMBOL_GPL vmlinux 0x740ae2f5 fwnode_handle_put +EXPORT_SYMBOL_GPL vmlinux 0x74257256 restore_online_page_callback +EXPORT_SYMBOL_GPL vmlinux 0x742624a3 crypto_aes_set_key +EXPORT_SYMBOL_GPL vmlinux 0x745fca51 dax_region_put +EXPORT_SYMBOL_GPL vmlinux 0x747180af __blk_mq_debugfs_rq_show +EXPORT_SYMBOL_GPL vmlinux 0x74781e3f __pci_hp_register +EXPORT_SYMBOL_GPL vmlinux 0x747f28d0 serdev_controller_remove +EXPORT_SYMBOL_GPL vmlinux 0x7480ba07 udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x74a08d67 dw_pcie_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x74ad9db3 serdev_device_remove +EXPORT_SYMBOL_GPL vmlinux 0x74b271e2 blk_ksm_init EXPORT_SYMBOL_GPL vmlinux 0x74b5ea68 lcm_not_zero EXPORT_SYMBOL_GPL vmlinux 0x74baf17a tracing_is_on -EXPORT_SYMBOL_GPL vmlinux 0x74bc4a2c __iptunnel_pull_header -EXPORT_SYMBOL_GPL vmlinux 0x74c610e2 handle_fasteoi_nmi -EXPORT_SYMBOL_GPL vmlinux 0x74e41fd7 devres_close_group +EXPORT_SYMBOL_GPL vmlinux 0x74e1859f preempt_notifier_register EXPORT_SYMBOL_GPL vmlinux 0x74e73871 housekeeping_overridden -EXPORT_SYMBOL_GPL vmlinux 0x74f98d3b pcie_reset_flr +EXPORT_SYMBOL_GPL vmlinux 0x74fed31d skcipher_walk_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x750ad803 skb_zerocopy_iter_dgram +EXPORT_SYMBOL_GPL vmlinux 0x751f7359 sysfs_remove_file_self EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status -EXPORT_SYMBOL_GPL vmlinux 0x75323b15 security_path_link +EXPORT_SYMBOL_GPL vmlinux 0x7536f3b4 virtqueue_enable_cb EXPORT_SYMBOL_GPL vmlinux 0x7554b896 zs_huge_class_size -EXPORT_SYMBOL_GPL vmlinux 0x7571e764 skb_tstamp_tx -EXPORT_SYMBOL_GPL vmlinux 0x759bb7c7 __fsnotify_inode_delete -EXPORT_SYMBOL_GPL vmlinux 0x75c18268 clockevents_register_device -EXPORT_SYMBOL_GPL vmlinux 0x75c4a9be fat_detach +EXPORT_SYMBOL_GPL vmlinux 0x755d1a01 perf_aux_output_skip +EXPORT_SYMBOL_GPL vmlinux 0x755e129e lwtunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0x75809a3e __fput_sync +EXPORT_SYMBOL_GPL vmlinux 0x759ff52f fuse_do_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x75b1d567 gpiochip_free_own_desc +EXPORT_SYMBOL_GPL vmlinux 0x75ba2179 register_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x75ba3e0b sysfs_update_groups +EXPORT_SYMBOL_GPL vmlinux 0x75bd25d2 scsi_register_device_handler EXPORT_SYMBOL_GPL vmlinux 0x75cbfb09 add_interrupt_randomness +EXPORT_SYMBOL_GPL vmlinux 0x75ddae9d gpiod_set_value EXPORT_SYMBOL_GPL vmlinux 0x75e51945 __SCK__tp_func_error_report_end +EXPORT_SYMBOL_GPL vmlinux 0x75e77583 blk_poll EXPORT_SYMBOL_GPL vmlinux 0x75e9c735 pci_ats_disabled EXPORT_SYMBOL_GPL vmlinux 0x75edf7b3 copy_from_kernel_nofault -EXPORT_SYMBOL_GPL vmlinux 0x762640f9 gmap_shadow_pgt_lookup -EXPORT_SYMBOL_GPL vmlinux 0x76300a31 lwtunnel_encap_del_ops +EXPORT_SYMBOL_GPL vmlinux 0x75fa33e2 fscrypt_ioctl_remove_key +EXPORT_SYMBOL_GPL vmlinux 0x7604e258 pci_epc_get +EXPORT_SYMBOL_GPL vmlinux 0x7606a6a9 sysfs_merge_group +EXPORT_SYMBOL_GPL vmlinux 0x764452a9 tcp_sendpage_locked EXPORT_SYMBOL_GPL vmlinux 0x764ffefa page_reporting_register -EXPORT_SYMBOL_GPL vmlinux 0x7658166a transport_class_register -EXPORT_SYMBOL_GPL vmlinux 0x7660b266 dma_buf_end_cpu_access EXPORT_SYMBOL_GPL vmlinux 0x7665ee72 crypto_dh_decode_key -EXPORT_SYMBOL_GPL vmlinux 0x7686c58f gpiod_to_chip -EXPORT_SYMBOL_GPL vmlinux 0x7690373e pci_rescan_bus +EXPORT_SYMBOL_GPL vmlinux 0x766f42a8 appldata_register_ops +EXPORT_SYMBOL_GPL vmlinux 0x767b20ed ipv6_opt_accepted +EXPORT_SYMBOL_GPL vmlinux 0x7680970a is_transparent_hugepage +EXPORT_SYMBOL_GPL vmlinux 0x7692dc71 crypto_spawn_tfm EXPORT_SYMBOL_GPL vmlinux 0x769cefb5 percpu_ref_switch_to_atomic -EXPORT_SYMBOL_GPL vmlinux 0x76d0447d yield_to +EXPORT_SYMBOL_GPL vmlinux 0x76c772ac debugfs_real_fops +EXPORT_SYMBOL_GPL vmlinux 0x76e1435d iomap_readpage EXPORT_SYMBOL_GPL vmlinux 0x76eeeb0f sha384_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x77186869 unregister_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0x76fc9f60 l3mdev_fib_table_by_index EXPORT_SYMBOL_GPL vmlinux 0x7729cbdd task_handoff_register -EXPORT_SYMBOL_GPL vmlinux 0x77369e72 ping_err -EXPORT_SYMBOL_GPL vmlinux 0x7740b295 l3mdev_table_lookup_unregister +EXPORT_SYMBOL_GPL vmlinux 0x773264f0 gpiod_get_value +EXPORT_SYMBOL_GPL vmlinux 0x774efa62 sysfs_remove_link EXPORT_SYMBOL_GPL vmlinux 0x774f16ef __tracepoint_cpu_idle -EXPORT_SYMBOL_GPL vmlinux 0x7769310a pci_epc_set_msix -EXPORT_SYMBOL_GPL vmlinux 0x777c04c8 xdp_master_redirect -EXPORT_SYMBOL_GPL vmlinux 0x778cafe7 dax_layout_busy_page +EXPORT_SYMBOL_GPL vmlinux 0x775bfcf7 tpm2_flush_context +EXPORT_SYMBOL_GPL vmlinux 0x7766fa5d devm_gpiod_put_array EXPORT_SYMBOL_GPL vmlinux 0x7791e066 dw_pcie_read -EXPORT_SYMBOL_GPL vmlinux 0x779ed180 bpf_event_output -EXPORT_SYMBOL_GPL vmlinux 0x77a4e270 ptep_test_and_clear_uc -EXPORT_SYMBOL_GPL vmlinux 0x77cc24b8 tty_port_link_device -EXPORT_SYMBOL_GPL vmlinux 0x77d38f8e noop_invalidatepage +EXPORT_SYMBOL_GPL vmlinux 0x77a3a362 debugfs_create_x32 +EXPORT_SYMBOL_GPL vmlinux 0x77b37f66 lwtunnel_encap_del_ops +EXPORT_SYMBOL_GPL vmlinux 0x77c667d2 irq_domain_set_hwirq_and_chip +EXPORT_SYMBOL_GPL vmlinux 0x77d739c2 gmap_unmap_segment +EXPORT_SYMBOL_GPL vmlinux 0x77da71d3 vp_modern_get_features +EXPORT_SYMBOL_GPL vmlinux 0x77de4072 fsnotify_put_mark EXPORT_SYMBOL_GPL vmlinux 0x77e75be3 sfp_bus_put EXPORT_SYMBOL_GPL vmlinux 0x77ecf68d memalloc_socks_key +EXPORT_SYMBOL_GPL vmlinux 0x77f03079 pcie_aspm_enabled +EXPORT_SYMBOL_GPL vmlinux 0x77f0b7b2 securityfs_create_dir EXPORT_SYMBOL_GPL vmlinux 0x78041b8f byte_rev_table -EXPORT_SYMBOL_GPL vmlinux 0x7808fbed __netpoll_setup -EXPORT_SYMBOL_GPL vmlinux 0x7809988e gmap_remove -EXPORT_SYMBOL_GPL vmlinux 0x7820c423 class_dev_iter_init -EXPORT_SYMBOL_GPL vmlinux 0x784db715 aead_init_geniv +EXPORT_SYMBOL_GPL vmlinux 0x78070215 blk_queue_can_use_dma_map_merging +EXPORT_SYMBOL_GPL vmlinux 0x780a146f irqchip_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0x781b12a7 set_task_ioprio +EXPORT_SYMBOL_GPL vmlinux 0x7820db43 bpf_trace_run2 +EXPORT_SYMBOL_GPL vmlinux 0x78289536 generic_online_page EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available -EXPORT_SYMBOL_GPL vmlinux 0x785c89aa crypto_ahash_finup -EXPORT_SYMBOL_GPL vmlinux 0x786154ec __traceiter_block_rq_insert -EXPORT_SYMBOL_GPL vmlinux 0x7865dcd4 free_fib_info -EXPORT_SYMBOL_GPL vmlinux 0x7882e92f kvm_write_guest_offset_cached EXPORT_SYMBOL_GPL vmlinux 0x788bfbad ring_buffer_empty +EXPORT_SYMBOL_GPL vmlinux 0x78998090 class_for_each_device EXPORT_SYMBOL_GPL vmlinux 0x789c73d9 rcu_cpu_stall_suppress_at_boot -EXPORT_SYMBOL_GPL vmlinux 0x78b8943b key_type_logon -EXPORT_SYMBOL_GPL vmlinux 0x78ba913a __fscrypt_prepare_lookup -EXPORT_SYMBOL_GPL vmlinux 0x78ca4d42 securityfs_create_dir -EXPORT_SYMBOL_GPL vmlinux 0x78f42258 irq_domain_associate -EXPORT_SYMBOL_GPL vmlinux 0x7917366c gpiochip_lock_as_irq -EXPORT_SYMBOL_GPL vmlinux 0x7924ca50 class_compat_remove_link -EXPORT_SYMBOL_GPL vmlinux 0x79409141 cpci_hp_unregister_bus +EXPORT_SYMBOL_GPL vmlinux 0x78b0f777 tpm_pcr_read +EXPORT_SYMBOL_GPL vmlinux 0x78d3d6fa serdev_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0x78dce007 __traceiter_block_split +EXPORT_SYMBOL_GPL vmlinux 0x790634b9 fwnode_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x791be82b device_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0x793ddac6 iommu_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x7944329f blk_mark_disk_dead EXPORT_SYMBOL_GPL vmlinux 0x7944e0fc tracing_off +EXPORT_SYMBOL_GPL vmlinux 0x794700a5 switchdev_handle_port_attr_set EXPORT_SYMBOL_GPL vmlinux 0x79470a2c TSS_authhmac -EXPORT_SYMBOL_GPL vmlinux 0x79485eb4 get_ccwdev_by_dev_id -EXPORT_SYMBOL_GPL vmlinux 0x794a7cc5 blk_queue_max_zone_append_sectors EXPORT_SYMBOL_GPL vmlinux 0x794b7271 orderly_reboot -EXPORT_SYMBOL_GPL vmlinux 0x7972a127 nf_ip_route -EXPORT_SYMBOL_GPL vmlinux 0x79772bc5 serdev_controller_remove -EXPORT_SYMBOL_GPL vmlinux 0x79a15aeb cgroup_get_e_css -EXPORT_SYMBOL_GPL vmlinux 0x79a3a037 skb_clone_tx_timestamp -EXPORT_SYMBOL_GPL vmlinux 0x79d7cf1e pci_device_is_present -EXPORT_SYMBOL_GPL vmlinux 0x79d92d2e firmware_request_cache -EXPORT_SYMBOL_GPL vmlinux 0x79db9073 crypto_unregister_alg +EXPORT_SYMBOL_GPL vmlinux 0x794bff2f pci_vpd_alloc +EXPORT_SYMBOL_GPL vmlinux 0x796d342c md_find_rdev_nr_rcu +EXPORT_SYMBOL_GPL vmlinux 0x79a40930 mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0x79c1ee31 kvm_put_kvm_no_destroy +EXPORT_SYMBOL_GPL vmlinux 0x79d6fe5a ima_file_check EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park -EXPORT_SYMBOL_GPL vmlinux 0x79edfd69 unix_inq_len -EXPORT_SYMBOL_GPL vmlinux 0x79fb3c56 driver_create_file -EXPORT_SYMBOL_GPL vmlinux 0x7a1a34b0 devm_blk_ksm_init -EXPORT_SYMBOL_GPL vmlinux 0x7a4747b3 devm_device_remove_groups -EXPORT_SYMBOL_GPL vmlinux 0x7a601865 __mnt_is_readonly -EXPORT_SYMBOL_GPL vmlinux 0x7a621c64 platform_device_register -EXPORT_SYMBOL_GPL vmlinux 0x7a66051c pci_msi_mask_irq -EXPORT_SYMBOL_GPL vmlinux 0x7a66cf06 aead_exit_geniv -EXPORT_SYMBOL_GPL vmlinux 0x7a6c0295 bpf_prog_put +EXPORT_SYMBOL_GPL vmlinux 0x7a154b86 find_get_pid +EXPORT_SYMBOL_GPL vmlinux 0x7a618bfc scsi_queue_work EXPORT_SYMBOL_GPL vmlinux 0x7a81541b async_synchronize_cookie -EXPORT_SYMBOL_GPL vmlinux 0x7a90576c fwnode_get_parent EXPORT_SYMBOL_GPL vmlinux 0x7a944007 rcu_idle_enter -EXPORT_SYMBOL_GPL vmlinux 0x7aab42e3 __ip6_local_out -EXPORT_SYMBOL_GPL vmlinux 0x7aab9e3c fb_deferred_io_init -EXPORT_SYMBOL_GPL vmlinux 0x7ab1b60b device_match_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x7ab40b31 device_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7ac5cea8 fib_nh_common_init EXPORT_SYMBOL_GPL vmlinux 0x7ad02a41 asn1_encode_tag +EXPORT_SYMBOL_GPL vmlinux 0x7ad20376 iommu_sva_bind_device EXPORT_SYMBOL_GPL vmlinux 0x7ad30a82 smp_yield_cpu -EXPORT_SYMBOL_GPL vmlinux 0x7ad30e36 page_cache_async_ra -EXPORT_SYMBOL_GPL vmlinux 0x7ad49e14 bpf_trace_run2 -EXPORT_SYMBOL_GPL vmlinux 0x7adc7797 gpiochip_get_data +EXPORT_SYMBOL_GPL vmlinux 0x7ada7c35 tpm_pm_resume EXPORT_SYMBOL_GPL vmlinux 0x7afe324e halt_poll_ns_grow -EXPORT_SYMBOL_GPL vmlinux 0x7b0950f4 iommu_iova_to_phys -EXPORT_SYMBOL_GPL vmlinux 0x7b0ad80d vp_modern_get_num_queues -EXPORT_SYMBOL_GPL vmlinux 0x7b23f11f ip6_datagram_connect_v6_only -EXPORT_SYMBOL_GPL vmlinux 0x7b27129c crypto_grab_aead -EXPORT_SYMBOL_GPL vmlinux 0x7b3c61b8 ccw_device_set_timeout -EXPORT_SYMBOL_GPL vmlinux 0x7b46db2d tpm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7b167ce8 pci_dev_unlock EXPORT_SYMBOL_GPL vmlinux 0x7b524a76 srcu_batches_completed EXPORT_SYMBOL_GPL vmlinux 0x7b5a4926 sha1_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x7b7a5430 fuse_file_poll +EXPORT_SYMBOL_GPL vmlinux 0x7b798b0a iommu_domain_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7b83605d __skb_tstamp_tx EXPORT_SYMBOL_GPL vmlinux 0x7b8ea197 ethtool_params_from_link_mode EXPORT_SYMBOL_GPL vmlinux 0x7b9793a2 get_cpu_idle_time_us +EXPORT_SYMBOL_GPL vmlinux 0x7b98a756 netdev_walk_all_upper_dev_rcu +EXPORT_SYMBOL_GPL vmlinux 0x7baf1a57 pci_rescan_bus EXPORT_SYMBOL_GPL vmlinux 0x7bb045a7 __request_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0x7bbd01e1 __udp_gso_segment -EXPORT_SYMBOL_GPL vmlinux 0x7bd1a30f iomap_writepage +EXPORT_SYMBOL_GPL vmlinux 0x7bdde24d seg6_do_srh_inline +EXPORT_SYMBOL_GPL vmlinux 0x7bdeb44c blkcg_policy_unregister EXPORT_SYMBOL_GPL vmlinux 0x7be224da blkg_rwstat_exit -EXPORT_SYMBOL_GPL vmlinux 0x7bf90b6b debugfs_create_u32_array -EXPORT_SYMBOL_GPL vmlinux 0x7bfb9511 __traceiter_detach_device_from_domain -EXPORT_SYMBOL_GPL vmlinux 0x7c16aef6 trace_array_init_printk -EXPORT_SYMBOL_GPL vmlinux 0x7c22196f __root_device_register +EXPORT_SYMBOL_GPL vmlinux 0x7bfbf4ac __mmdrop +EXPORT_SYMBOL_GPL vmlinux 0x7c1effe8 strp_check_rcv EXPORT_SYMBOL_GPL vmlinux 0x7c291e86 show_rcu_tasks_trace_gp_kthread EXPORT_SYMBOL_GPL vmlinux 0x7c2d392d trace_seq_bprintf -EXPORT_SYMBOL_GPL vmlinux 0x7c2eef69 iomap_finish_ioends +EXPORT_SYMBOL_GPL vmlinux 0x7c34e67c __kernel_write EXPORT_SYMBOL_GPL vmlinux 0x7c35e60a stop_machine -EXPORT_SYMBOL_GPL vmlinux 0x7c66e5c0 __put_net +EXPORT_SYMBOL_GPL vmlinux 0x7c48db2a nfnl_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0x7c69c50a serdev_device_wait_until_sent +EXPORT_SYMBOL_GPL vmlinux 0x7c82db29 blk_mq_flush_busy_ctxs +EXPORT_SYMBOL_GPL vmlinux 0x7c8f5c48 fuse_sync_release EXPORT_SYMBOL_GPL vmlinux 0x7c94c99a kvm_release_pfn_dirty -EXPORT_SYMBOL_GPL vmlinux 0x7c9c8604 ip6_input -EXPORT_SYMBOL_GPL vmlinux 0x7ca2905b pci_msi_create_irq_domain -EXPORT_SYMBOL_GPL vmlinux 0x7cb5c91d get_task_mm +EXPORT_SYMBOL_GPL vmlinux 0x7cc8a790 fsverity_ioctl_enable EXPORT_SYMBOL_GPL vmlinux 0x7cceaf92 zs_pool_stats +EXPORT_SYMBOL_GPL vmlinux 0x7cd12178 __vfs_setxattr_locked EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0x7d347b30 fwnode_get_name -EXPORT_SYMBOL_GPL vmlinux 0x7d4df160 md_find_rdev_nr_rcu -EXPORT_SYMBOL_GPL vmlinux 0x7d593925 unregister_virtio_driver -EXPORT_SYMBOL_GPL vmlinux 0x7d60c48a ip_fib_metrics_init +EXPORT_SYMBOL_GPL vmlinux 0x7d029bc5 clockevents_config_and_register +EXPORT_SYMBOL_GPL vmlinux 0x7d0d2f07 sched_set_fifo_low +EXPORT_SYMBOL_GPL vmlinux 0x7d38f24e mmu_notifier_get_locked +EXPORT_SYMBOL_GPL vmlinux 0x7d60cb04 xdp_rxq_info_reg EXPORT_SYMBOL_GPL vmlinux 0x7d6153cb __cookie_v6_init_sequence -EXPORT_SYMBOL_GPL vmlinux 0x7d6170b2 devlink_dpipe_entry_ctx_append -EXPORT_SYMBOL_GPL vmlinux 0x7d97e76e virtqueue_get_desc_addr -EXPORT_SYMBOL_GPL vmlinux 0x7dade46d gpiod_set_array_value +EXPORT_SYMBOL_GPL vmlinux 0x7d8287d2 s390_reset_cmma +EXPORT_SYMBOL_GPL vmlinux 0x7db46c58 cpci_hp_unregister_bus EXPORT_SYMBOL_GPL vmlinux 0x7dbb6de3 xas_find_marked -EXPORT_SYMBOL_GPL vmlinux 0x7dcea148 vp_modern_set_status EXPORT_SYMBOL_GPL vmlinux 0x7dda30af unregister_tracepoint_module_notifier -EXPORT_SYMBOL_GPL vmlinux 0x7de2a680 tpm_pcr_extend EXPORT_SYMBOL_GPL vmlinux 0x7de6cc23 io_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x7ded9027 virtio_check_driver_offered_feature -EXPORT_SYMBOL_GPL vmlinux 0x7dfb10d7 __percpu_init_rwsem -EXPORT_SYMBOL_GPL vmlinux 0x7e07a79a raw_seq_next -EXPORT_SYMBOL_GPL vmlinux 0x7e0a6395 smpboot_unregister_percpu_thread -EXPORT_SYMBOL_GPL vmlinux 0x7e34083b perf_event_refresh +EXPORT_SYMBOL_GPL vmlinux 0x7e228874 sock_diag_unregister_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0x7e3aa325 scsi_internal_device_block_nowait +EXPORT_SYMBOL_GPL vmlinux 0x7e3bb0d1 irq_domain_disconnect_hierarchy EXPORT_SYMBOL_GPL vmlinux 0x7e3bdecd __ftrace_vprintk -EXPORT_SYMBOL_GPL vmlinux 0x7e40ae1e nfs_ssc_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7e48a554 gpiod_export_link +EXPORT_SYMBOL_GPL vmlinux 0x7e528e07 pci_generic_config_read32 +EXPORT_SYMBOL_GPL vmlinux 0x7e75acbb devm_request_pci_bus_resources EXPORT_SYMBOL_GPL vmlinux 0x7e7e3f58 ring_buffer_reset_cpu -EXPORT_SYMBOL_GPL vmlinux 0x7e877527 init_uts_ns -EXPORT_SYMBOL_GPL vmlinux 0x7e8abaeb debugfs_print_regs32 +EXPORT_SYMBOL_GPL vmlinux 0x7e8d9498 shmem_read_mapping_page_gfp EXPORT_SYMBOL_GPL vmlinux 0x7e917894 __SCK__tp_func_unmap -EXPORT_SYMBOL_GPL vmlinux 0x7ea6f79c pci_domain_nr EXPORT_SYMBOL_GPL vmlinux 0x7eb1795e __tracepoint_detach_device_from_domain -EXPORT_SYMBOL_GPL vmlinux 0x7eb58fe2 get_net_ns_by_pid EXPORT_SYMBOL_GPL vmlinux 0x7eb808d0 add_cpu -EXPORT_SYMBOL_GPL vmlinux 0x7ed76462 list_lru_count_one +EXPORT_SYMBOL_GPL vmlinux 0x7ed57a01 mark_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0x7edccc31 pci_disable_ats EXPORT_SYMBOL_GPL vmlinux 0x7edfdb92 irq_set_affinity_notifier -EXPORT_SYMBOL_GPL vmlinux 0x7ee35a10 strp_stop -EXPORT_SYMBOL_GPL vmlinux 0x7eec5f63 sk_msg_clone -EXPORT_SYMBOL_GPL vmlinux 0x7efaea98 __mmu_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x7f1f7cb5 bpf_trace_run11 -EXPORT_SYMBOL_GPL vmlinux 0x7f75f78e nl_table +EXPORT_SYMBOL_GPL vmlinux 0x7ee9ee4c device_match_fwnode EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata -EXPORT_SYMBOL_GPL vmlinux 0x7f9ec34c pci_stop_root_bus -EXPORT_SYMBOL_GPL vmlinux 0x7fc4890b sysfs_create_group -EXPORT_SYMBOL_GPL vmlinux 0x80042356 raw_abort -EXPORT_SYMBOL_GPL vmlinux 0x801b81aa kthread_flush_work +EXPORT_SYMBOL_GPL vmlinux 0x7f8823b3 cio_resume +EXPORT_SYMBOL_GPL vmlinux 0x7fa1bf79 crypto_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x7fa89a17 alloc_page_buffers +EXPORT_SYMBOL_GPL vmlinux 0x7fb64650 splice_to_pipe +EXPORT_SYMBOL_GPL vmlinux 0x7fbb5ed7 devlink_dpipe_table_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fbde99e serdev_controller_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7fdedb14 fib_new_table +EXPORT_SYMBOL_GPL vmlinux 0x803941c0 ncsi_register_dev EXPORT_SYMBOL_GPL vmlinux 0x805667cf devlink_fmsg_u64_put -EXPORT_SYMBOL_GPL vmlinux 0x8069d114 trace_define_field -EXPORT_SYMBOL_GPL vmlinux 0x8071df65 sched_trace_rq_avg_dl -EXPORT_SYMBOL_GPL vmlinux 0x807f1c27 pci_epc_set_msi +EXPORT_SYMBOL_GPL vmlinux 0x807e26f8 __platform_create_bundle EXPORT_SYMBOL_GPL vmlinux 0x807fdcc4 call_rcu_tasks_rude EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested -EXPORT_SYMBOL_GPL vmlinux 0x80a79ca2 cio_commit_config +EXPORT_SYMBOL_GPL vmlinux 0x809602ab __traceiter_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0x80968f6a iomap_truncate_page +EXPORT_SYMBOL_GPL vmlinux 0x80afcd21 ipv6_stub +EXPORT_SYMBOL_GPL vmlinux 0x80b22e98 device_add EXPORT_SYMBOL_GPL vmlinux 0x80badff4 __tracepoint_block_unplug EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close -EXPORT_SYMBOL_GPL vmlinux 0x80c8383d ima_file_check -EXPORT_SYMBOL_GPL vmlinux 0x80d3aca9 kvm_flush_remote_tlbs +EXPORT_SYMBOL_GPL vmlinux 0x80d488a5 __page_file_index EXPORT_SYMBOL_GPL vmlinux 0x80d5e57a mpi_free +EXPORT_SYMBOL_GPL vmlinux 0x80e75150 fuse_send_init EXPORT_SYMBOL_GPL vmlinux 0x80fb44b1 software_node_register_node_group -EXPORT_SYMBOL_GPL vmlinux 0x81079e78 perf_aux_output_end +EXPORT_SYMBOL_GPL vmlinux 0x80fd73e2 rtnl_get_net_ns_capable +EXPORT_SYMBOL_GPL vmlinux 0x8104fcfa virtio_config_changed +EXPORT_SYMBOL_GPL vmlinux 0x810527e8 md_stop +EXPORT_SYMBOL_GPL vmlinux 0x810a9748 __traceiter_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0x810f51da debugfs_create_atomic_t +EXPORT_SYMBOL_GPL vmlinux 0x8111197a gmap_shadow_page +EXPORT_SYMBOL_GPL vmlinux 0x81226bd5 tty_port_register_device_attr_serdev +EXPORT_SYMBOL_GPL vmlinux 0x8123aaa4 vfs_test_lock EXPORT_SYMBOL_GPL vmlinux 0x812ea476 trace_seq_bitmask -EXPORT_SYMBOL_GPL vmlinux 0x8143b0ba iommu_sva_get_pasid -EXPORT_SYMBOL_GPL vmlinux 0x814af7ee ip6_sk_dst_lookup_flow -EXPORT_SYMBOL_GPL vmlinux 0x814faf82 devm_gpiod_get_from_of_node +EXPORT_SYMBOL_GPL vmlinux 0x8133517b __udp6_lib_lookup EXPORT_SYMBOL_GPL vmlinux 0x815fda83 sed_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x8167cbab dm_get_md EXPORT_SYMBOL_GPL vmlinux 0x8180cede asn1_encode_sequence -EXPORT_SYMBOL_GPL vmlinux 0x819c8bfb locks_release_private EXPORT_SYMBOL_GPL vmlinux 0x81a7f541 percpu_ref_init -EXPORT_SYMBOL_GPL vmlinux 0x81aabd16 pci_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x81ae1e45 gpiochip_get_data +EXPORT_SYMBOL_GPL vmlinux 0x81de3ee4 transport_add_device EXPORT_SYMBOL_GPL vmlinux 0x81f372a2 unregister_ftrace_export -EXPORT_SYMBOL_GPL vmlinux 0x81f84754 bio_clone_blkg_association -EXPORT_SYMBOL_GPL vmlinux 0x824c9daf perf_event_period -EXPORT_SYMBOL_GPL vmlinux 0x824eff1d fscrypt_set_bio_crypt_ctx -EXPORT_SYMBOL_GPL vmlinux 0x8251bb99 tpm_is_tpm2 -EXPORT_SYMBOL_GPL vmlinux 0x825e73a2 hrtimer_init_sleeper -EXPORT_SYMBOL_GPL vmlinux 0x8264bdeb vring_new_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0x826bf394 devlink_region_snapshot_id_get +EXPORT_SYMBOL_GPL vmlinux 0x81f67803 fuse_get_unique +EXPORT_SYMBOL_GPL vmlinux 0x81f85299 gpiod_get_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x8225a4bc device_create_file +EXPORT_SYMBOL_GPL vmlinux 0x82320329 md_account_bio +EXPORT_SYMBOL_GPL vmlinux 0x82434f27 __traceiter_br_fdb_external_learn_add +EXPORT_SYMBOL_GPL vmlinux 0x827d40ba pci_assign_unassigned_bus_resources EXPORT_SYMBOL_GPL vmlinux 0x8281f3fe dynevent_create -EXPORT_SYMBOL_GPL vmlinux 0x82943383 class_interface_register +EXPORT_SYMBOL_GPL vmlinux 0x82886e46 blk_stat_enable_accounting +EXPORT_SYMBOL_GPL vmlinux 0x829b0761 platform_get_resource +EXPORT_SYMBOL_GPL vmlinux 0x829c290b sysfs_create_link_nowarn +EXPORT_SYMBOL_GPL vmlinux 0x829dcdc5 nfs42_ssc_register EXPORT_SYMBOL_GPL vmlinux 0x82a80545 __SCK__tp_func_fdb_delete -EXPORT_SYMBOL_GPL vmlinux 0x82ba6bb2 tracing_snapshot_cond_enable EXPORT_SYMBOL_GPL vmlinux 0x82bbf30b __tracepoint_map +EXPORT_SYMBOL_GPL vmlinux 0x82d5cb19 devlink_params_publish EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure -EXPORT_SYMBOL_GPL vmlinux 0x82e11bea exportfs_encode_inode_fh -EXPORT_SYMBOL_GPL vmlinux 0x82ea13b4 iommu_map_atomic -EXPORT_SYMBOL_GPL vmlinux 0x82f1bd7b __traceiter_devlink_hwerr -EXPORT_SYMBOL_GPL vmlinux 0x82f9faab dma_buf_vunmap -EXPORT_SYMBOL_GPL vmlinux 0x82fb01f4 crypto_unregister_template -EXPORT_SYMBOL_GPL vmlinux 0x832aa875 dax_iomap_fault +EXPORT_SYMBOL_GPL vmlinux 0x82f78c21 sock_gen_put +EXPORT_SYMBOL_GPL vmlinux 0x82fc96d3 lwtunnel_cmp_encap +EXPORT_SYMBOL_GPL vmlinux 0x83067c08 bpf_trace_run10 +EXPORT_SYMBOL_GPL vmlinux 0x831cbcef pci_debug_err_id +EXPORT_SYMBOL_GPL vmlinux 0x831d4de8 virtio_break_device +EXPORT_SYMBOL_GPL vmlinux 0x831e5540 security_path_symlink +EXPORT_SYMBOL_GPL vmlinux 0x83288a15 linear_hugepage_index +EXPORT_SYMBOL_GPL vmlinux 0x832c6c9c kvm_make_all_cpus_request +EXPORT_SYMBOL_GPL vmlinux 0x832cf483 ipv4_redirect +EXPORT_SYMBOL_GPL vmlinux 0x83305216 fat_flush_inodes EXPORT_SYMBOL_GPL vmlinux 0x8339df73 klist_add_behind -EXPORT_SYMBOL_GPL vmlinux 0x833da96f sysfs_remove_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x838ec8c7 crypto_register_scomps -EXPORT_SYMBOL_GPL vmlinux 0x8394d64f hvc_remove +EXPORT_SYMBOL_GPL vmlinux 0x8342ae10 device_find_child +EXPORT_SYMBOL_GPL vmlinux 0x8345b828 paste_selection +EXPORT_SYMBOL_GPL vmlinux 0x834a94ae evm_inode_init_security +EXPORT_SYMBOL_GPL vmlinux 0x835cebe0 key_type_logon +EXPORT_SYMBOL_GPL vmlinux 0x836fe64d dma_get_required_mask +EXPORT_SYMBOL_GPL vmlinux 0x8371513c fsnotify_find_mark +EXPORT_SYMBOL_GPL vmlinux 0x83952c3b l3mdev_fib_table_rcu +EXPORT_SYMBOL_GPL vmlinux 0x839a14d7 kernfs_path_from_node +EXPORT_SYMBOL_GPL vmlinux 0x839ac2c5 irq_chip_enable_parent EXPORT_SYMBOL_GPL vmlinux 0x83aa84da ring_buffer_read_page -EXPORT_SYMBOL_GPL vmlinux 0x83bd89a5 tty_get_pgrp -EXPORT_SYMBOL_GPL vmlinux 0x83dbea52 gpiod_set_raw_value -EXPORT_SYMBOL_GPL vmlinux 0x83e62cd9 tpm_calc_ordinal_duration -EXPORT_SYMBOL_GPL vmlinux 0x83fbd910 tpm_chip_register -EXPORT_SYMBOL_GPL vmlinux 0x84066043 gpiochip_irq_map +EXPORT_SYMBOL_GPL vmlinux 0x83d04e47 ndo_dflt_bridge_getlink +EXPORT_SYMBOL_GPL vmlinux 0x83f68db2 ping_close +EXPORT_SYMBOL_GPL vmlinux 0x83f7d9ff ip_route_output_tunnel +EXPORT_SYMBOL_GPL vmlinux 0x83ffe64e raw_hash_sk EXPORT_SYMBOL_GPL vmlinux 0x84106f36 devlink_trap_ctx_priv -EXPORT_SYMBOL_GPL vmlinux 0x8424adee fuse_mount_remove EXPORT_SYMBOL_GPL vmlinux 0x84264ced fs_umode_to_ftype -EXPORT_SYMBOL_GPL vmlinux 0x843c21f6 vp_modern_get_status -EXPORT_SYMBOL_GPL vmlinux 0x843dcfc2 gpiochip_irqchip_add_domain -EXPORT_SYMBOL_GPL vmlinux 0x844c7cdd rdev_set_badblocks -EXPORT_SYMBOL_GPL vmlinux 0x844f38b9 crypto_shash_finup +EXPORT_SYMBOL_GPL vmlinux 0x842abb76 gpiochip_generic_request EXPORT_SYMBOL_GPL vmlinux 0x84502a47 blk_status_to_errno -EXPORT_SYMBOL_GPL vmlinux 0x84539f83 lwtunnel_output EXPORT_SYMBOL_GPL vmlinux 0x845dbf3b scatterwalk_map_and_copy -EXPORT_SYMBOL_GPL vmlinux 0x847dbc7d iommu_dev_feature_enabled -EXPORT_SYMBOL_GPL vmlinux 0x848d5136 gmap_discard -EXPORT_SYMBOL_GPL vmlinux 0x84aeb994 crypto_register_template -EXPORT_SYMBOL_GPL vmlinux 0x850381df devm_gpiochip_add_data_with_key +EXPORT_SYMBOL_GPL vmlinux 0x84974c7f skb_segment_list +EXPORT_SYMBOL_GPL vmlinux 0x84caa184 path_noexec +EXPORT_SYMBOL_GPL vmlinux 0x84e394ab task_cgroup_path +EXPORT_SYMBOL_GPL vmlinux 0x84ebef49 perf_trace_run_bpf_submit +EXPORT_SYMBOL_GPL vmlinux 0x8503f36a gmap_get_enabled +EXPORT_SYMBOL_GPL vmlinux 0x850771a0 tcp_rate_check_app_limited EXPORT_SYMBOL_GPL vmlinux 0x850bb6db devlink_health_reporter_destroy -EXPORT_SYMBOL_GPL vmlinux 0x850bd405 dma_resv_get_fences +EXPORT_SYMBOL_GPL vmlinux 0x8510a0b5 replace_page_cache_page EXPORT_SYMBOL_GPL vmlinux 0x851fe124 __SCK__tp_func_fib6_table_lookup -EXPORT_SYMBOL_GPL vmlinux 0x853fa065 tty_kopen_shared -EXPORT_SYMBOL_GPL vmlinux 0x857c7b36 ping_seq_next -EXPORT_SYMBOL_GPL vmlinux 0x858a92f9 class_dev_iter_next -EXPORT_SYMBOL_GPL vmlinux 0x85a1e47b blkcg_root_css -EXPORT_SYMBOL_GPL vmlinux 0x85c4389b fsnotify_put_group -EXPORT_SYMBOL_GPL vmlinux 0x85c596c3 devm_kstrdup -EXPORT_SYMBOL_GPL vmlinux 0x85cc2f6a gmap_shadow_valid -EXPORT_SYMBOL_GPL vmlinux 0x85cebe50 nf_nat_hook -EXPORT_SYMBOL_GPL vmlinux 0x85eec2f7 xfrm_audit_state_add -EXPORT_SYMBOL_GPL vmlinux 0x85fe9d0c gpiochip_add_data_with_key -EXPORT_SYMBOL_GPL vmlinux 0x860597b1 perf_event_create_kernel_counter -EXPORT_SYMBOL_GPL vmlinux 0x86073b3c input_ff_flush +EXPORT_SYMBOL_GPL vmlinux 0x85601dd4 crypto_stats_rng_generate +EXPORT_SYMBOL_GPL vmlinux 0x8563ac5c blk_queue_flag_test_and_set +EXPORT_SYMBOL_GPL vmlinux 0x85e36dec devm_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x85e7f892 perf_event_update_userpage +EXPORT_SYMBOL_GPL vmlinux 0x85f1755d ncsi_vlan_rx_kill_vid EXPORT_SYMBOL_GPL vmlinux 0x862258db timecounter_init -EXPORT_SYMBOL_GPL vmlinux 0x862bc996 mptcp_pm_get_add_addr_accept_max -EXPORT_SYMBOL_GPL vmlinux 0x8630160c iommu_enable_nesting -EXPORT_SYMBOL_GPL vmlinux 0x863a16e2 tcp_is_ulp_esp +EXPORT_SYMBOL_GPL vmlinux 0x86294097 skb_to_sgvec +EXPORT_SYMBOL_GPL vmlinux 0x864d45fa xdp_do_redirect EXPORT_SYMBOL_GPL vmlinux 0x86585a33 devlink_fmsg_obj_nest_start -EXPORT_SYMBOL_GPL vmlinux 0x866525c3 crypto_register_templates -EXPORT_SYMBOL_GPL vmlinux 0x866a3fd5 __ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0x866e0c3e bpf_trace_run1 +EXPORT_SYMBOL_GPL vmlinux 0x86713c33 skb_gso_validate_mac_len +EXPORT_SYMBOL_GPL vmlinux 0x86743663 ip6_datagram_send_ctl EXPORT_SYMBOL_GPL vmlinux 0x8677245d unregister_switchdev_blocking_notifier +EXPORT_SYMBOL_GPL vmlinux 0x867b9465 crypto_grab_shash EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get +EXPORT_SYMBOL_GPL vmlinux 0x8692f60f blk_set_pm_only +EXPORT_SYMBOL_GPL vmlinux 0x86932d28 debugfs_create_u16 EXPORT_SYMBOL_GPL vmlinux 0x86b0b6ba zpci_barrier EXPORT_SYMBOL_GPL vmlinux 0x86c5baf7 trace_seq_vprintf EXPORT_SYMBOL_GPL vmlinux 0x86c961b3 __set_dax_synchronous -EXPORT_SYMBOL_GPL vmlinux 0x86d18131 blkg_conf_finish +EXPORT_SYMBOL_GPL vmlinux 0x86d038e7 devlink_dpipe_entry_ctx_close +EXPORT_SYMBOL_GPL vmlinux 0x86d4dacf bpf_prog_destroy +EXPORT_SYMBOL_GPL vmlinux 0x86d65a79 mddev_suspend EXPORT_SYMBOL_GPL vmlinux 0x86dda6ef rtm_getroute_parse_ip_proto -EXPORT_SYMBOL_GPL vmlinux 0x86e70576 iptunnel_metadata_reply EXPORT_SYMBOL_GPL vmlinux 0x86f6b99d synchronize_rcu_expedited EXPORT_SYMBOL_GPL vmlinux 0x86f85114 net_dec_egress_queue -EXPORT_SYMBOL_GPL vmlinux 0x871e4e34 device_for_each_child -EXPORT_SYMBOL_GPL vmlinux 0x87443cb9 sched_show_task -EXPORT_SYMBOL_GPL vmlinux 0x874683e4 devm_ioremap_uc -EXPORT_SYMBOL_GPL vmlinux 0x8754aac7 blk_lld_busy -EXPORT_SYMBOL_GPL vmlinux 0x87776b7c fib_rules_seq_read -EXPORT_SYMBOL_GPL vmlinux 0x87947600 irq_chip_mask_parent -EXPORT_SYMBOL_GPL vmlinux 0x87bfd99d do_take_over_console -EXPORT_SYMBOL_GPL vmlinux 0x880c8419 shash_ahash_update -EXPORT_SYMBOL_GPL vmlinux 0x88315f5e crypto_unregister_aeads +EXPORT_SYMBOL_GPL vmlinux 0x8733cfe2 blk_ksm_destroy +EXPORT_SYMBOL_GPL vmlinux 0x873706e4 receive_fd +EXPORT_SYMBOL_GPL vmlinux 0x8745ae8e vp_modern_set_queue_enable +EXPORT_SYMBOL_GPL vmlinux 0x874a544d tty_save_termios +EXPORT_SYMBOL_GPL vmlinux 0x8752ebd8 acct_bioset_exit +EXPORT_SYMBOL_GPL vmlinux 0x878e20da crypto_lookup_template +EXPORT_SYMBOL_GPL vmlinux 0x87d9304f mnt_want_write +EXPORT_SYMBOL_GPL vmlinux 0x87f26a19 devm_kmemdup +EXPORT_SYMBOL_GPL vmlinux 0x88167085 fat_add_entries EXPORT_SYMBOL_GPL vmlinux 0x885528a6 ring_buffer_discard_commit -EXPORT_SYMBOL_GPL vmlinux 0x8861a3c0 dst_blackhole_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x8888c4ad gmap_shadow_r3t -EXPORT_SYMBOL_GPL vmlinux 0x889fe2b7 pci_disable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0x887f31d3 cgrp_dfl_root +EXPORT_SYMBOL_GPL vmlinux 0x887ffee9 clean_acked_data_enable +EXPORT_SYMBOL_GPL vmlinux 0x88a306f4 dw_pcie_upconfig_setup EXPORT_SYMBOL_GPL vmlinux 0x88b4ae92 ring_buffer_normalize_time_stamp -EXPORT_SYMBOL_GPL vmlinux 0x88be9f9d crypto_skcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x88c132a4 fat_dir_empty +EXPORT_SYMBOL_GPL vmlinux 0x88c35c43 irq_chip_set_parent_state +EXPORT_SYMBOL_GPL vmlinux 0x88dc0f01 fuse_mount_remove EXPORT_SYMBOL_GPL vmlinux 0x88dc3a08 alarm_expires_remaining -EXPORT_SYMBOL_GPL vmlinux 0x89034c26 input_ff_destroy -EXPORT_SYMBOL_GPL vmlinux 0x8921de31 l3mdev_ifindex_lookup_by_table_id +EXPORT_SYMBOL_GPL vmlinux 0x89180c75 ip6_datagram_connect_v6_only EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state -EXPORT_SYMBOL_GPL vmlinux 0x892a1467 iommu_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x893947df security_inode_mkdir EXPORT_SYMBOL_GPL vmlinux 0x893abbdd devlink_fmsg_u32_pair_put +EXPORT_SYMBOL_GPL vmlinux 0x89458c28 inet_csk_listen_stop EXPORT_SYMBOL_GPL vmlinux 0x89485687 iommu_group_put -EXPORT_SYMBOL_GPL vmlinux 0x894d09f7 sk_msg_memcopy_from_iter -EXPORT_SYMBOL_GPL vmlinux 0x8952e92b __class_create EXPORT_SYMBOL_GPL vmlinux 0x8954dc8e __SCK__tp_func_br_fdb_external_learn_add -EXPORT_SYMBOL_GPL vmlinux 0x899b55cd driver_register -EXPORT_SYMBOL_GPL vmlinux 0x89a7b2c8 crypto_shash_digest -EXPORT_SYMBOL_GPL vmlinux 0x89abd756 fuse_dev_alloc -EXPORT_SYMBOL_GPL vmlinux 0x89acbaf8 devres_find -EXPORT_SYMBOL_GPL vmlinux 0x89c29e4b __traceiter_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0x8982f123 netif_carrier_event +EXPORT_SYMBOL_GPL vmlinux 0x8994d1f1 anon_inode_getfile EXPORT_SYMBOL_GPL vmlinux 0x89c429e4 __tracepoint_mc_event -EXPORT_SYMBOL_GPL vmlinux 0x89d28d9a input_device_enabled -EXPORT_SYMBOL_GPL vmlinux 0x89d545a1 __kvm_set_memory_region +EXPORT_SYMBOL_GPL vmlinux 0x89e08f47 relay_close EXPORT_SYMBOL_GPL vmlinux 0x89ea5521 digsig_verify -EXPORT_SYMBOL_GPL vmlinux 0x8a3cdf82 tpm1_getcap -EXPORT_SYMBOL_GPL vmlinux 0x8a4081c8 blk_stat_enable_accounting -EXPORT_SYMBOL_GPL vmlinux 0x8a506d4b devlink_dpipe_entry_ctx_close +EXPORT_SYMBOL_GPL vmlinux 0x8a38661c virtqueue_add_inbuf_ctx +EXPORT_SYMBOL_GPL vmlinux 0x8a394574 fwnode_create_software_node +EXPORT_SYMBOL_GPL vmlinux 0x8a3b1220 fib_rules_lookup +EXPORT_SYMBOL_GPL vmlinux 0x8a45f26b bpf_prog_inc 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 0x8a7e2bd3 iomap_seek_hole EXPORT_SYMBOL_GPL vmlinux 0x8a83fb45 mpi_point_free_parts -EXPORT_SYMBOL_GPL vmlinux 0x8a87631b crypto_unregister_acomp -EXPORT_SYMBOL_GPL vmlinux 0x8a98f463 devm_kmalloc -EXPORT_SYMBOL_GPL vmlinux 0x8aa32805 __dev_change_net_namespace -EXPORT_SYMBOL_GPL vmlinux 0x8aa92ca1 bpf_trace_run12 +EXPORT_SYMBOL_GPL vmlinux 0x8aa70f4d gmap_shadow EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files -EXPORT_SYMBOL_GPL vmlinux 0x8acbe053 __unwind_start -EXPORT_SYMBOL_GPL vmlinux 0x8acf0e87 __strp_unpause -EXPORT_SYMBOL_GPL vmlinux 0x8ad2f213 fwnode_connection_find_match -EXPORT_SYMBOL_GPL vmlinux 0x8adab30b tty_port_register_device_attr_serdev -EXPORT_SYMBOL_GPL vmlinux 0x8b47224f fuse_dev_release -EXPORT_SYMBOL_GPL vmlinux 0x8b58e4c2 cio_start_key -EXPORT_SYMBOL_GPL vmlinux 0x8b5a9203 dw_pcie_host_init +EXPORT_SYMBOL_GPL vmlinux 0x8addcd80 bpf_trace_run5 +EXPORT_SYMBOL_GPL vmlinux 0x8ae9a5cc fb_deferred_io_fsync +EXPORT_SYMBOL_GPL vmlinux 0x8b550701 kvm_vcpu_gfn_to_pfn +EXPORT_SYMBOL_GPL vmlinux 0x8b5f393a msg_zerocopy_realloc EXPORT_SYMBOL_GPL vmlinux 0x8b7a698b __tracepoint_xdp_exception -EXPORT_SYMBOL_GPL vmlinux 0x8b95feee ip_local_out +EXPORT_SYMBOL_GPL vmlinux 0x8b7b4d08 virtqueue_enable_cb_prepare +EXPORT_SYMBOL_GPL vmlinux 0x8b837c42 iommu_dev_enable_feature +EXPORT_SYMBOL_GPL vmlinux 0x8b996109 fscrypt_symlink_getattr +EXPORT_SYMBOL_GPL vmlinux 0x8ba90e07 device_match_of_node EXPORT_SYMBOL_GPL vmlinux 0x8bad4ff4 pgprot_writecombine -EXPORT_SYMBOL_GPL vmlinux 0x8bafa968 pci_hp_add +EXPORT_SYMBOL_GPL vmlinux 0x8bcdce04 crypto_register_acomps +EXPORT_SYMBOL_GPL vmlinux 0x8bcf54b2 iommu_register_device_fault_handler EXPORT_SYMBOL_GPL vmlinux 0x8bded20f zpci_load -EXPORT_SYMBOL_GPL vmlinux 0x8beedf08 switchdev_handle_port_obj_del -EXPORT_SYMBOL_GPL vmlinux 0x8bf79a38 crypto_create_tfm_node +EXPORT_SYMBOL_GPL vmlinux 0x8be4f49c smpboot_unregister_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0x8bffbb79 class_remove_file_ns EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue EXPORT_SYMBOL_GPL vmlinux 0x8c0ed103 rcu_check_boost_fail -EXPORT_SYMBOL_GPL vmlinux 0x8c174c9f exportfs_decode_fh -EXPORT_SYMBOL_GPL vmlinux 0x8c272b24 gpiochip_line_is_valid +EXPORT_SYMBOL_GPL vmlinux 0x8c1a16e7 bpf_prog_get_type_dev +EXPORT_SYMBOL_GPL vmlinux 0x8c1d36c8 fwnode_get_nth_parent +EXPORT_SYMBOL_GPL vmlinux 0x8c275f00 screen_glyph +EXPORT_SYMBOL_GPL vmlinux 0x8c3780df chp_get_sch_opm EXPORT_SYMBOL_GPL vmlinux 0x8c47afca idr_alloc -EXPORT_SYMBOL_GPL vmlinux 0x8c50769c devlink_resource_size_get -EXPORT_SYMBOL_GPL vmlinux 0x8c69a750 kernfs_find_and_get_ns -EXPORT_SYMBOL_GPL vmlinux 0x8c7793cb mddev_init -EXPORT_SYMBOL_GPL vmlinux 0x8ccd2a06 perf_event_release_kernel +EXPORT_SYMBOL_GPL vmlinux 0x8c561cb6 ptep_notify +EXPORT_SYMBOL_GPL vmlinux 0x8c58bcc1 fat_truncate_time +EXPORT_SYMBOL_GPL vmlinux 0x8c7f9e7c md_bitmap_resize +EXPORT_SYMBOL_GPL vmlinux 0x8ca599fe dax_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8ca810b2 skb_append_pagefrags +EXPORT_SYMBOL_GPL vmlinux 0x8cc8fe74 __put_task_struct +EXPORT_SYMBOL_GPL vmlinux 0x8cd2ab13 gpiochip_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0x8cdc6c51 desc_to_gpio +EXPORT_SYMBOL_GPL vmlinux 0x8cdff9b8 debugfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0x8ce2ca85 kvm_put_kvm EXPORT_SYMBOL_GPL vmlinux 0x8ce2d446 __tracepoint_block_rq_remap -EXPORT_SYMBOL_GPL vmlinux 0x8d04f598 device_get_dma_attr +EXPORT_SYMBOL_GPL vmlinux 0x8cea5468 mddev_init_writes_pending EXPORT_SYMBOL_GPL vmlinux 0x8d0abf3a __tracepoint_io_page_fault -EXPORT_SYMBOL_GPL vmlinux 0x8d1004a8 user_destroy +EXPORT_SYMBOL_GPL vmlinux 0x8d190665 __get_task_comm EXPORT_SYMBOL_GPL vmlinux 0x8d22bb58 iommu_group_alloc EXPORT_SYMBOL_GPL vmlinux 0x8d3330b6 cpuacct_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x8d4f3782 rtnl_af_unregister -EXPORT_SYMBOL_GPL vmlinux 0x8d5372b4 subsys_interface_unregister -EXPORT_SYMBOL_GPL vmlinux 0x8d5d19b0 ptp_classify_raw -EXPORT_SYMBOL_GPL vmlinux 0x8d68e466 tcp_get_syncookie_mss -EXPORT_SYMBOL_GPL vmlinux 0x8d7ce17a bio_start_io_acct_time -EXPORT_SYMBOL_GPL vmlinux 0x8d81ede9 devres_destroy -EXPORT_SYMBOL_GPL vmlinux 0x8d8841fa cio_clear -EXPORT_SYMBOL_GPL vmlinux 0x8da6158e irq_domain_create_simple +EXPORT_SYMBOL_GPL vmlinux 0x8d3eadd9 bio_associate_blkg_from_css +EXPORT_SYMBOL_GPL vmlinux 0x8d514b8d dm_set_target_max_io_len +EXPORT_SYMBOL_GPL vmlinux 0x8d5feeaf badblocks_init +EXPORT_SYMBOL_GPL vmlinux 0x8d741b31 tty_port_install +EXPORT_SYMBOL_GPL vmlinux 0x8d86923b inet_ctl_sock_create +EXPORT_SYMBOL_GPL vmlinux 0x8da8dd32 gpiochip_get_desc EXPORT_SYMBOL_GPL vmlinux 0x8dafdded lwtunnel_valid_encap_type_attr -EXPORT_SYMBOL_GPL vmlinux 0x8db55cfb debugfs_create_blob +EXPORT_SYMBOL_GPL vmlinux 0x8dbcdb42 gpiod_cansleep EXPORT_SYMBOL_GPL vmlinux 0x8dd1b0fe tracepoint_srcu -EXPORT_SYMBOL_GPL vmlinux 0x8dda95f3 lwtunnel_input -EXPORT_SYMBOL_GPL vmlinux 0x8de3c7b6 tty_encode_baud_rate -EXPORT_SYMBOL_GPL vmlinux 0x8de45b7e net_ns_type_operations -EXPORT_SYMBOL_GPL vmlinux 0x8de47d01 dma_buf_put -EXPORT_SYMBOL_GPL vmlinux 0x8dfb86f2 __trace_note_message -EXPORT_SYMBOL_GPL vmlinux 0x8e027e64 devlink_register -EXPORT_SYMBOL_GPL vmlinux 0x8e09548e fwnode_graph_get_endpoint_by_id -EXPORT_SYMBOL_GPL vmlinux 0x8e168828 fuse_dev_fiq_ops +EXPORT_SYMBOL_GPL vmlinux 0x8dd76e9c dma_resv_test_signaled +EXPORT_SYMBOL_GPL vmlinux 0x8dee9b15 alloc_empty_file +EXPORT_SYMBOL_GPL vmlinux 0x8dfd3cc9 fb_deferred_io_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x8dfeb8f0 __traceiter_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0x8e0894e7 register_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0x8e089829 ping_get_port EXPORT_SYMBOL_GPL vmlinux 0x8e44823a sfp_select_interface EXPORT_SYMBOL_GPL vmlinux 0x8e4eb451 bpf_sk_storage_diag_free -EXPORT_SYMBOL_GPL vmlinux 0x8e4f9aa9 blk_rq_err_bytes -EXPORT_SYMBOL_GPL vmlinux 0x8e567775 crypto_spawn_tfm2 -EXPORT_SYMBOL_GPL vmlinux 0x8e5c8af1 alloc_empty_file -EXPORT_SYMBOL_GPL vmlinux 0x8e6ad6a8 crypto_unregister_aead -EXPORT_SYMBOL_GPL vmlinux 0x8e6d479d fuse_dev_alloc_install +EXPORT_SYMBOL_GPL vmlinux 0x8e51af5f device_rename +EXPORT_SYMBOL_GPL vmlinux 0x8e715c16 tcp_cong_avoid_ai +EXPORT_SYMBOL_GPL vmlinux 0x8e7c784a perf_event_refresh EXPORT_SYMBOL_GPL vmlinux 0x8e92f7c4 static_key_slow_inc -EXPORT_SYMBOL_GPL vmlinux 0x8e9b26b5 proc_create_net_single -EXPORT_SYMBOL_GPL vmlinux 0x8eddd55b put_device +EXPORT_SYMBOL_GPL vmlinux 0x8eaef288 blk_trace_setup +EXPORT_SYMBOL_GPL vmlinux 0x8eeb35d4 sk_msg_alloc EXPORT_SYMBOL_GPL vmlinux 0x8eec19bd __SCK__tp_func_pelt_dl_tp EXPORT_SYMBOL_GPL vmlinux 0x8eee3399 dax_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0x8ef0b633 crypto_unregister_scomp -EXPORT_SYMBOL_GPL vmlinux 0x8ef1e930 kvm_clear_guest +EXPORT_SYMBOL_GPL vmlinux 0x8ef8078e cgroup_attach_task_all EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp -EXPORT_SYMBOL_GPL vmlinux 0x8f0f13ad akcipher_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x8f1014ea security_path_symlink +EXPORT_SYMBOL_GPL vmlinux 0x8f0c1e57 inet_twsk_alloc EXPORT_SYMBOL_GPL vmlinux 0x8f2e5212 __gfn_to_pfn_memslot -EXPORT_SYMBOL_GPL vmlinux 0x8f3307d0 irq_get_default_host -EXPORT_SYMBOL_GPL vmlinux 0x8f4c9ba5 blk_mark_disk_dead -EXPORT_SYMBOL_GPL vmlinux 0x8f5b06b1 tty_port_install +EXPORT_SYMBOL_GPL vmlinux 0x8f313d27 pci_probe_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0x8f4280df fb_deferred_io_open +EXPORT_SYMBOL_GPL vmlinux 0x8f448616 locks_release_private +EXPORT_SYMBOL_GPL vmlinux 0x8f54bc90 pci_epc_init_notify EXPORT_SYMBOL_GPL vmlinux 0x8f5bf523 __zpci_load -EXPORT_SYMBOL_GPL vmlinux 0x8f5e8b3e css_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x8f5df514 tty_port_register_device +EXPORT_SYMBOL_GPL vmlinux 0x8f5e7f2a css_next_descendant_pre +EXPORT_SYMBOL_GPL vmlinux 0x8f6066f6 __sync_filesystem +EXPORT_SYMBOL_GPL vmlinux 0x8f626a2b platform_get_irq_byname EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative EXPORT_SYMBOL_GPL vmlinux 0x8f786bee fs_umode_to_dtype -EXPORT_SYMBOL_GPL vmlinux 0x8f91f22e validate_xmit_skb_list -EXPORT_SYMBOL_GPL vmlinux 0x8fa61f23 gmap_shadow_sgt -EXPORT_SYMBOL_GPL vmlinux 0x8fd6fd86 param_set_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0x8f9cd417 aead_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8fa6c5b4 proc_mkdir_data +EXPORT_SYMBOL_GPL vmlinux 0x8fadfefd tcp_abort +EXPORT_SYMBOL_GPL vmlinux 0x8fb574c9 l3mdev_update_flow +EXPORT_SYMBOL_GPL vmlinux 0x8fb8e174 mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x8fbbf608 platform_bus +EXPORT_SYMBOL_GPL vmlinux 0x8fe17b45 nexthop_for_each_fib6_nh +EXPORT_SYMBOL_GPL vmlinux 0x8febba6f __traceiter_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x8ff50cec ip6_route_output_flags EXPORT_SYMBOL_GPL vmlinux 0x8ff60436 mpi_ec_add_points EXPORT_SYMBOL_GPL vmlinux 0x8ffe792f tracepoint_probe_register_prio_may_exist -EXPORT_SYMBOL_GPL vmlinux 0x90016d0f devm_serdev_device_open +EXPORT_SYMBOL_GPL vmlinux 0x9002adba udp_bpf_update_proto +EXPORT_SYMBOL_GPL vmlinux 0x9003554f blk_mq_sched_try_merge +EXPORT_SYMBOL_GPL vmlinux 0x901b9510 crypto_stats_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x9022b9c1 attribute_container_unregister +EXPORT_SYMBOL_GPL vmlinux 0x90308f5d driver_find_device EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move +EXPORT_SYMBOL_GPL vmlinux 0x905603c9 dax_layout_busy_page_range +EXPORT_SYMBOL_GPL vmlinux 0x90601535 __fl6_sock_lookup EXPORT_SYMBOL_GPL vmlinux 0x90688bcd devlink_info_driver_name_put -EXPORT_SYMBOL_GPL vmlinux 0x9071d332 pci_cfg_access_unlock -EXPORT_SYMBOL_GPL vmlinux 0x908b2077 platform_device_alloc -EXPORT_SYMBOL_GPL vmlinux 0x9091f2e9 debugfs_create_size_t -EXPORT_SYMBOL_GPL vmlinux 0x9093c0c4 devm_gpiod_put -EXPORT_SYMBOL_GPL vmlinux 0x90991d99 fib6_get_table EXPORT_SYMBOL_GPL vmlinux 0x909a8abf nr_running +EXPORT_SYMBOL_GPL vmlinux 0x909e9a6d ptep_test_and_clear_uc EXPORT_SYMBOL_GPL vmlinux 0x909fda42 blocking_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0x90a7963c xdp_do_redirect -EXPORT_SYMBOL_GPL vmlinux 0x90ba9263 invalidate_inode_pages2 -EXPORT_SYMBOL_GPL vmlinux 0x90cad89c netlink_has_listeners -EXPORT_SYMBOL_GPL vmlinux 0x90cf37a0 bpf_trace_run1 -EXPORT_SYMBOL_GPL vmlinux 0x90d3c58f devm_gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x90b2fbd1 get_current_tty +EXPORT_SYMBOL_GPL vmlinux 0x90b6bc9e iommu_device_sysfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x90b9be8d blk_ksm_intersect_modes +EXPORT_SYMBOL_GPL vmlinux 0x90d3707b dm_bio_from_per_bio_data EXPORT_SYMBOL_GPL vmlinux 0x90d937b4 __tracepoint_pelt_rt_tp -EXPORT_SYMBOL_GPL vmlinux 0x90e75802 scsi_dh_attached_handler_name -EXPORT_SYMBOL_GPL vmlinux 0x90fbea31 platform_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x90fd5b9a vp_modern_queue_address -EXPORT_SYMBOL_GPL vmlinux 0x912b1c48 gmap_register_pte_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9139d281 dm_set_target_max_io_len +EXPORT_SYMBOL_GPL vmlinux 0x90eaffa9 device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x90efc986 switchdev_bridge_port_offload +EXPORT_SYMBOL_GPL vmlinux 0x91045c56 __raw_v4_lookup +EXPORT_SYMBOL_GPL vmlinux 0x912470ba fib4_rule_default +EXPORT_SYMBOL_GPL vmlinux 0x912e28c7 tcp_ca_get_key_by_name +EXPORT_SYMBOL_GPL vmlinux 0x9135330e fib6_rule_default EXPORT_SYMBOL_GPL vmlinux 0x913b700b kobj_sysfs_ops -EXPORT_SYMBOL_GPL vmlinux 0x91474dc6 fork_usermode_driver -EXPORT_SYMBOL_GPL vmlinux 0x9175ae5d sched_trace_rq_cpu -EXPORT_SYMBOL_GPL vmlinux 0x9181547e kthread_func -EXPORT_SYMBOL_GPL vmlinux 0x9183eccc fuse_request_end -EXPORT_SYMBOL_GPL vmlinux 0x918ee654 md_find_rdev_rcu +EXPORT_SYMBOL_GPL vmlinux 0x91530228 sock_diag_check_cookie +EXPORT_SYMBOL_GPL vmlinux 0x91531b94 __netif_set_xps_queue +EXPORT_SYMBOL_GPL vmlinux 0x91554a26 blk_queue_max_zone_append_sectors +EXPORT_SYMBOL_GPL vmlinux 0x917a000f rtnl_link_unregister EXPORT_SYMBOL_GPL vmlinux 0x91955a9f start_poll_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0x91ac6350 crypto_stats_get -EXPORT_SYMBOL_GPL vmlinux 0x91b6b71c pci_hp_del +EXPORT_SYMBOL_GPL vmlinux 0x9198cf14 crypto_register_scomps +EXPORT_SYMBOL_GPL vmlinux 0x91b129fe ip_route_output_flow EXPORT_SYMBOL_GPL vmlinux 0x91b774a1 mpi_scanval -EXPORT_SYMBOL_GPL vmlinux 0x91c9cde0 bpf_verifier_log_write +EXPORT_SYMBOL_GPL vmlinux 0x91cde7d4 fuse_dev_install +EXPORT_SYMBOL_GPL vmlinux 0x91dcace7 __traceiter_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0x91dd0d75 xfrm_audit_state_icvfail EXPORT_SYMBOL_GPL vmlinux 0x91ea8726 asn1_encode_boolean -EXPORT_SYMBOL_GPL vmlinux 0x91fa30f1 crypto_stats_akcipher_sign -EXPORT_SYMBOL_GPL vmlinux 0x9203ad8b mark_page_dirty_in_slot +EXPORT_SYMBOL_GPL vmlinux 0x91f41203 gpiod_get_value_cansleep EXPORT_SYMBOL_GPL vmlinux 0x9241b358 __static_key_slow_dec_deferred -EXPORT_SYMBOL_GPL vmlinux 0x9244511f debugfs_create_devm_seqfile +EXPORT_SYMBOL_GPL vmlinux 0x924b9c0b ncsi_unregister_dev EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object -EXPORT_SYMBOL_GPL vmlinux 0x9262c17f pci_check_and_mask_intx -EXPORT_SYMBOL_GPL vmlinux 0x928ebb85 sfp_bus_add_upstream -EXPORT_SYMBOL_GPL vmlinux 0x929780d5 mmu_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x92ab83a1 dm_table_device_name -EXPORT_SYMBOL_GPL vmlinux 0x92bbfe60 devlink_port_region_create -EXPORT_SYMBOL_GPL vmlinux 0x92c2405f __vfs_removexattr_noperm -EXPORT_SYMBOL_GPL vmlinux 0x92c4bc47 ima_inode_hash -EXPORT_SYMBOL_GPL vmlinux 0x92d88ce3 lwtunnel_fill_encap +EXPORT_SYMBOL_GPL vmlinux 0x92816c07 crypto_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x928ff8ae kern_mount +EXPORT_SYMBOL_GPL vmlinux 0x92905d69 pci_disable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0x92a1ffd4 fwnode_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x92bc4318 gpiod_to_chip +EXPORT_SYMBOL_GPL vmlinux 0x92bf4070 hvc_remove +EXPORT_SYMBOL_GPL vmlinux 0x92ccee47 __traceiter_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0x92d39a31 relay_late_setup_files EXPORT_SYMBOL_GPL vmlinux 0x92db8f68 do_trace_rcu_torture_read +EXPORT_SYMBOL_GPL vmlinux 0x92dea664 udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x92e04300 gpiochip_irq_domain_activate EXPORT_SYMBOL_GPL vmlinux 0x92e8e9ab fsverity_enqueue_verify_work -EXPORT_SYMBOL_GPL vmlinux 0x92e9f9ee devlink_port_attrs_pci_sf_set -EXPORT_SYMBOL_GPL vmlinux 0x92f2eb8e gmap_convert_to_secure -EXPORT_SYMBOL_GPL vmlinux 0x930088d6 ahash_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x93068e5e device_property_read_string -EXPORT_SYMBOL_GPL vmlinux 0x930d8d07 sysfs_remove_file_from_group -EXPORT_SYMBOL_GPL vmlinux 0x931eea14 dma_can_mmap +EXPORT_SYMBOL_GPL vmlinux 0x93035c6e iomap_is_partially_uptodate +EXPORT_SYMBOL_GPL vmlinux 0x9317aa56 alloc_dax_region EXPORT_SYMBOL_GPL vmlinux 0x93255b2b ring_buffer_lock_reserve -EXPORT_SYMBOL_GPL vmlinux 0x93270235 compat_only_sysfs_link_entry_to_kobj -EXPORT_SYMBOL_GPL vmlinux 0x9327439a xfrm_dev_offload_ok -EXPORT_SYMBOL_GPL vmlinux 0x937acc30 sched_trace_rq_nr_running -EXPORT_SYMBOL_GPL vmlinux 0x938fb1b3 proc_mkdir_data -EXPORT_SYMBOL_GPL vmlinux 0x93cc72c0 skb_mpls_push -EXPORT_SYMBOL_GPL vmlinux 0x93d8a826 fscrypt_prepare_symlink +EXPORT_SYMBOL_GPL vmlinux 0x933643d5 vp_modern_get_driver_features +EXPORT_SYMBOL_GPL vmlinux 0x9394ee3c device_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x939cdb3b devres_find +EXPORT_SYMBOL_GPL vmlinux 0x93c5bbc8 umd_unload_blob +EXPORT_SYMBOL_GPL vmlinux 0x93e27f90 virtqueue_get_buf +EXPORT_SYMBOL_GPL vmlinux 0x93eca9a3 skb_complete_tx_timestamp EXPORT_SYMBOL_GPL vmlinux 0x93edef07 devlink_health_report -EXPORT_SYMBOL_GPL vmlinux 0x93eedeb9 bpf_preload_ops +EXPORT_SYMBOL_GPL vmlinux 0x9402b1ad driver_register +EXPORT_SYMBOL_GPL vmlinux 0x94040eb8 debugfs_file_put +EXPORT_SYMBOL_GPL vmlinux 0x94177bc4 fsl_mc_device_group EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put -EXPORT_SYMBOL_GPL vmlinux 0x942068b8 serdev_device_close +EXPORT_SYMBOL_GPL vmlinux 0x9425222b skb_defer_rx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x94256b14 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 0x94372f8d pci_epc_get_features -EXPORT_SYMBOL_GPL vmlinux 0x9444dbdc find_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0x9457ba64 handle_untracked_irq -EXPORT_SYMBOL_GPL vmlinux 0x945a482c __auxiliary_driver_register -EXPORT_SYMBOL_GPL vmlinux 0x946916cf gpiod_get_direction +EXPORT_SYMBOL_GPL vmlinux 0x9448b9a3 pci_epc_linkup +EXPORT_SYMBOL_GPL vmlinux 0x944c64fe bd_unlink_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0x944ef8f3 crypto_drop_spawn +EXPORT_SYMBOL_GPL vmlinux 0x9462e8cf scsi_build_sense +EXPORT_SYMBOL_GPL vmlinux 0x946d1733 kvm_vcpu_yield_to EXPORT_SYMBOL_GPL vmlinux 0x946dd559 sha224_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x948b8e1b fsnotify_get_group +EXPORT_SYMBOL_GPL vmlinux 0x9495a04a __kvm_set_memory_region +EXPORT_SYMBOL_GPL vmlinux 0x949a9c75 pci_epf_add_vepf EXPORT_SYMBOL_GPL vmlinux 0x949b5176 devlink_region_snapshot_create -EXPORT_SYMBOL_GPL vmlinux 0x949ce412 pci_find_vsec_capability -EXPORT_SYMBOL_GPL vmlinux 0x94b99c39 serdev_controller_add -EXPORT_SYMBOL_GPL vmlinux 0x94ce5b83 __traceiter_neigh_event_send_dead -EXPORT_SYMBOL_GPL vmlinux 0x94d3602b inet_csk_reqsk_queue_hash_add -EXPORT_SYMBOL_GPL vmlinux 0x94d57413 tcp_sendpage_locked +EXPORT_SYMBOL_GPL vmlinux 0x94dbe768 dma_free_noncontiguous EXPORT_SYMBOL_GPL vmlinux 0x94ef4d05 cpci_hp_stop -EXPORT_SYMBOL_GPL vmlinux 0x94fd4f55 platform_irq_count EXPORT_SYMBOL_GPL vmlinux 0x9504df26 irq_wake_thread +EXPORT_SYMBOL_GPL vmlinux 0x950e059e fwnode_property_present +EXPORT_SYMBOL_GPL vmlinux 0x95100c6a cmf_readall EXPORT_SYMBOL_GPL vmlinux 0x951a2773 crypto_has_alg +EXPORT_SYMBOL_GPL vmlinux 0x951bee3e crypto_stats_compress EXPORT_SYMBOL_GPL vmlinux 0x952664c5 do_exit EXPORT_SYMBOL_GPL vmlinux 0x953e1b9e ktime_get_real_seconds EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn EXPORT_SYMBOL_GPL vmlinux 0x956ac400 ring_buffer_dropped_events_cpu -EXPORT_SYMBOL_GPL vmlinux 0x956b7b13 scsi_target_block +EXPORT_SYMBOL_GPL vmlinux 0x95736097 kill_pid_usb_asyncio EXPORT_SYMBOL_GPL vmlinux 0x95843030 mpi_ec_init EXPORT_SYMBOL_GPL vmlinux 0x958df3ac zs_free +EXPORT_SYMBOL_GPL vmlinux 0x958e8ed4 ping_init_sock EXPORT_SYMBOL_GPL vmlinux 0x9593ef31 register_ftrace_export -EXPORT_SYMBOL_GPL vmlinux 0x959732ed input_ff_upload +EXPORT_SYMBOL_GPL vmlinux 0x95a12b67 pci_restore_msi_state EXPORT_SYMBOL_GPL vmlinux 0x95a49194 user_preparse -EXPORT_SYMBOL_GPL vmlinux 0x95a5ab53 irq_chip_disable_parent -EXPORT_SYMBOL_GPL vmlinux 0x95b986a5 devlink_rate_leaf_create -EXPORT_SYMBOL_GPL vmlinux 0x95db1122 irq_domain_update_bus_token +EXPORT_SYMBOL_GPL vmlinux 0x95bb5135 iommu_dev_feature_enabled +EXPORT_SYMBOL_GPL vmlinux 0x95bef08c inet6_hash +EXPORT_SYMBOL_GPL vmlinux 0x95d6767a trace_array_set_clr_event EXPORT_SYMBOL_GPL vmlinux 0x95e102ab tracepoint_probe_register -EXPORT_SYMBOL_GPL vmlinux 0x95f72747 kernfs_path_from_node -EXPORT_SYMBOL_GPL vmlinux 0x95f8fe89 devlink_port_param_driverinit_value_get EXPORT_SYMBOL_GPL vmlinux 0x961286e0 ring_buffer_read_events_cpu -EXPORT_SYMBOL_GPL vmlinux 0x96141ad9 gpiod_get_raw_array_value -EXPORT_SYMBOL_GPL vmlinux 0x9638be45 __fscrypt_inode_uses_inline_crypto -EXPORT_SYMBOL_GPL vmlinux 0x963ad68a crypto_shash_setkey -EXPORT_SYMBOL_GPL vmlinux 0x9642a823 devlink_dpipe_match_put +EXPORT_SYMBOL_GPL vmlinux 0x9636c47b dm_table_set_type +EXPORT_SYMBOL_GPL vmlinux 0x963a5331 dax_iomap_fault +EXPORT_SYMBOL_GPL vmlinux 0x963b16af __auxiliary_device_add +EXPORT_SYMBOL_GPL vmlinux 0x963fb74d fsverity_verify_page +EXPORT_SYMBOL_GPL vmlinux 0x964e5d37 iommu_set_fault_handler EXPORT_SYMBOL_GPL vmlinux 0x96554810 register_keyboard_notifier -EXPORT_SYMBOL_GPL vmlinux 0x96953176 sched_trace_cfs_rq_avg -EXPORT_SYMBOL_GPL vmlinux 0x96a92f50 pci_device_group -EXPORT_SYMBOL_GPL vmlinux 0x96b38de3 device_store_ulong +EXPORT_SYMBOL_GPL vmlinux 0x965cb029 __traceiter_pelt_thermal_tp +EXPORT_SYMBOL_GPL vmlinux 0x967255b3 __traceiter_devlink_hwmsg +EXPORT_SYMBOL_GPL vmlinux 0x968d33b2 tcp_register_ulp +EXPORT_SYMBOL_GPL vmlinux 0x96b4a238 crypto_stats_akcipher_sign EXPORT_SYMBOL_GPL vmlinux 0x96b734cf sbitmap_resize -EXPORT_SYMBOL_GPL vmlinux 0x96baf01d devlink_dpipe_table_unregister -EXPORT_SYMBOL_GPL vmlinux 0x96c9fe75 pci_epf_free_space -EXPORT_SYMBOL_GPL vmlinux 0x96ceae7d gfn_to_page +EXPORT_SYMBOL_GPL vmlinux 0x96caa53c pci_host_probe +EXPORT_SYMBOL_GPL vmlinux 0x96eee834 fat_free_clusters +EXPORT_SYMBOL_GPL vmlinux 0x96f7c9bc proc_create_net_data_write +EXPORT_SYMBOL_GPL vmlinux 0x96f907a6 pci_generic_config_write32 +EXPORT_SYMBOL_GPL vmlinux 0x96f9a01b __SCK__tp_func_pelt_thermal_tp +EXPORT_SYMBOL_GPL vmlinux 0x9708a67e transport_setup_device +EXPORT_SYMBOL_GPL vmlinux 0x97120121 blk_mq_pci_map_queues EXPORT_SYMBOL_GPL vmlinux 0x9714e0bb ktime_get_raw -EXPORT_SYMBOL_GPL vmlinux 0x971a1ef9 fsverity_prepare_setattr -EXPORT_SYMBOL_GPL vmlinux 0x971b4760 iommu_uapi_cache_invalidate -EXPORT_SYMBOL_GPL vmlinux 0x97321903 gpiochip_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0x97186fb8 virtio_max_dma_size +EXPORT_SYMBOL_GPL vmlinux 0x9738b41c vfs_kern_mount EXPORT_SYMBOL_GPL vmlinux 0x973d9070 mm_unaccount_pinned_pages EXPORT_SYMBOL_GPL vmlinux 0x973f270d xas_pause EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same -EXPORT_SYMBOL_GPL vmlinux 0x9769d348 sysfs_break_active_protection -EXPORT_SYMBOL_GPL vmlinux 0x97740ec4 devlink_params_unregister -EXPORT_SYMBOL_GPL vmlinux 0x97816672 __gmap_zap -EXPORT_SYMBOL_GPL vmlinux 0x97999c53 ip6_datagram_release_cb -EXPORT_SYMBOL_GPL vmlinux 0x979f5322 pci_generic_config_read32 -EXPORT_SYMBOL_GPL vmlinux 0x97b5c8c8 bpfilter_umh_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x97bacb22 fat_sync_inode -EXPORT_SYMBOL_GPL vmlinux 0x97bc744b device_show_ulong -EXPORT_SYMBOL_GPL vmlinux 0x97c81df7 iomap_ioend_try_merge -EXPORT_SYMBOL_GPL vmlinux 0x97d21d80 devres_release +EXPORT_SYMBOL_GPL vmlinux 0x978640a4 gpiochip_irq_map +EXPORT_SYMBOL_GPL vmlinux 0x97af7003 gpiochip_populate_parent_fwspec_twocell +EXPORT_SYMBOL_GPL vmlinux 0x97b268a7 crypto_grab_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x97b60e7c kvm_map_gfn +EXPORT_SYMBOL_GPL vmlinux 0x97c108e1 sysfs_create_groups +EXPORT_SYMBOL_GPL vmlinux 0x97c400c8 iomap_writepages EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent -EXPORT_SYMBOL_GPL vmlinux 0x97e35d81 __pci_epf_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x98059e27 bus_get_device_klist -EXPORT_SYMBOL_GPL vmlinux 0x9814b0e8 set_capacity_and_notify -EXPORT_SYMBOL_GPL vmlinux 0x98302395 skb_mpls_dec_ttl +EXPORT_SYMBOL_GPL vmlinux 0x97f2de09 css_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x9812852d platform_device_add_data +EXPORT_SYMBOL_GPL vmlinux 0x981cc3c1 kvm_read_guest_cached +EXPORT_SYMBOL_GPL vmlinux 0x981d6839 user_read EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick -EXPORT_SYMBOL_GPL vmlinux 0x984162d3 devlink_reload_disable -EXPORT_SYMBOL_GPL vmlinux 0x98427742 blkcg_policy_unregister -EXPORT_SYMBOL_GPL vmlinux 0x984351df tcp_slow_start -EXPORT_SYMBOL_GPL vmlinux 0x98482335 cio_start -EXPORT_SYMBOL_GPL vmlinux 0x98490c05 devlink_port_unregister +EXPORT_SYMBOL_GPL vmlinux 0x983a903a subsys_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x98427db4 __traceiter_io_page_fault 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 0x9888099c __fscrypt_prepare_setattr EXPORT_SYMBOL_GPL vmlinux 0x989074ff kmsg_dump_reason_str EXPORT_SYMBOL_GPL vmlinux 0x989d038d inet_hashinfo_init +EXPORT_SYMBOL_GPL vmlinux 0x98a58451 iommu_map_sg EXPORT_SYMBOL_GPL vmlinux 0x98b142fa blk_fill_rwbs -EXPORT_SYMBOL_GPL vmlinux 0x98bfc68d kstrdup_quotable_cmdline -EXPORT_SYMBOL_GPL vmlinux 0x98c915a8 __crypto_alloc_tfm -EXPORT_SYMBOL_GPL vmlinux 0x98dc563c klp_get_state EXPORT_SYMBOL_GPL vmlinux 0x98ee62b2 ring_buffer_record_disable_cpu +EXPORT_SYMBOL_GPL vmlinux 0x98f91558 skb_complete_wifi_ack EXPORT_SYMBOL_GPL vmlinux 0x98fa1e20 dm_get_reserved_rq_based_ios -EXPORT_SYMBOL_GPL vmlinux 0x990a4030 ip6_pol_route -EXPORT_SYMBOL_GPL vmlinux 0x99157084 pci_reset_function_locked -EXPORT_SYMBOL_GPL vmlinux 0x993bdb42 trace_get_event_file -EXPORT_SYMBOL_GPL vmlinux 0x9946f4da pci_d3cold_disable -EXPORT_SYMBOL_GPL vmlinux 0x994c357e netdev_rx_handler_unregister +EXPORT_SYMBOL_GPL vmlinux 0x99090c57 gpiod_set_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x99123073 fsverity_file_open +EXPORT_SYMBOL_GPL vmlinux 0x9912dca6 __trace_note_message +EXPORT_SYMBOL_GPL vmlinux 0x9918d933 blk_mq_sched_try_insert_merge +EXPORT_SYMBOL_GPL vmlinux 0x991ab871 irq_chip_get_parent_state +EXPORT_SYMBOL_GPL vmlinux 0x9922735b perf_aux_output_flag +EXPORT_SYMBOL_GPL vmlinux 0x99251fb6 dm_internal_resume +EXPORT_SYMBOL_GPL vmlinux 0x99426975 relay_flush +EXPORT_SYMBOL_GPL vmlinux 0x994f0e76 kthread_mod_delayed_work EXPORT_SYMBOL_GPL vmlinux 0x99585a09 srcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0x995c7481 sysfs_file_change_owner EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on +EXPORT_SYMBOL_GPL vmlinux 0x995dc53e simple_attr_write EXPORT_SYMBOL_GPL vmlinux 0x9968aacb __audit_log_nfcfg -EXPORT_SYMBOL_GPL vmlinux 0x997414a9 nexthop_for_each_fib6_nh -EXPORT_SYMBOL_GPL vmlinux 0x9978255d sysfs_remove_files -EXPORT_SYMBOL_GPL vmlinux 0x998905cf scsi_internal_device_unblock_nowait -EXPORT_SYMBOL_GPL vmlinux 0x998e0d74 pci_epc_unmap_addr -EXPORT_SYMBOL_GPL vmlinux 0x99a00a90 tpm_pcr_read -EXPORT_SYMBOL_GPL vmlinux 0x99d457a5 bpf_prog_add +EXPORT_SYMBOL_GPL vmlinux 0x996cf184 __crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0x99a17d99 bpfilter_ops +EXPORT_SYMBOL_GPL vmlinux 0x99b23c30 mptcp_subflow_init_cookie_req EXPORT_SYMBOL_GPL vmlinux 0x99dd730c page_reporting_unregister EXPORT_SYMBOL_GPL vmlinux 0x99f2d00a sysfs_emit_at EXPORT_SYMBOL_GPL vmlinux 0x99f4591c key_type_trusted -EXPORT_SYMBOL_GPL vmlinux 0x9a01978b gpiod_get_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x9a018fc7 iommu_detach_device EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name -EXPORT_SYMBOL_GPL vmlinux 0x9a12b287 l3mdev_fib_table_rcu -EXPORT_SYMBOL_GPL vmlinux 0x9a2b30a8 fwnode_property_present -EXPORT_SYMBOL_GPL vmlinux 0x9a618865 kill_device -EXPORT_SYMBOL_GPL vmlinux 0x9a7d8354 sdev_evt_send_simple -EXPORT_SYMBOL_GPL vmlinux 0x9a7eb6fb bio_iov_iter_get_pages -EXPORT_SYMBOL_GPL vmlinux 0x9ab5768d kvm_is_visible_gfn +EXPORT_SYMBOL_GPL vmlinux 0x9a313dd9 device_create_managed_software_node +EXPORT_SYMBOL_GPL vmlinux 0x9a36855c vp_modern_probe +EXPORT_SYMBOL_GPL vmlinux 0x9a98b1a7 perf_pmu_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9aa87893 ipv6_bpf_stub +EXPORT_SYMBOL_GPL vmlinux 0x9ab79e20 key_type_user EXPORT_SYMBOL_GPL vmlinux 0x9ad3de36 mm_account_pinned_pages -EXPORT_SYMBOL_GPL vmlinux 0x9ae04e8f crypto_alloc_kpp EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty -EXPORT_SYMBOL_GPL vmlinux 0x9b3fc64e iommu_detach_device -EXPORT_SYMBOL_GPL vmlinux 0x9b44c0f7 skcipher_walk_aead_encrypt -EXPORT_SYMBOL_GPL vmlinux 0x9b5bdcd4 fscrypt_ioctl_add_key +EXPORT_SYMBOL_GPL vmlinux 0x9b243631 __traceiter_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x9b641652 blk_mq_freeze_queue_wait +EXPORT_SYMBOL_GPL vmlinux 0x9b6c5f98 iomap_swapfile_activate EXPORT_SYMBOL_GPL vmlinux 0x9b6ec967 ring_buffer_size EXPORT_SYMBOL_GPL vmlinux 0x9b70c6ff tracepoint_probe_register_prio EXPORT_SYMBOL_GPL vmlinux 0x9b896724 devlink_param_value_str_fill +EXPORT_SYMBOL_GPL vmlinux 0x9b8c9b6e ip6_datagram_connect EXPORT_SYMBOL_GPL vmlinux 0x9b9071cb get_old_itimerspec32 -EXPORT_SYMBOL_GPL vmlinux 0x9bb28034 devlink_free -EXPORT_SYMBOL_GPL vmlinux 0x9bbe2417 dev_err_probe +EXPORT_SYMBOL_GPL vmlinux 0x9babf924 device_add_groups +EXPORT_SYMBOL_GPL vmlinux 0x9bb946ab blk_mq_hctx_set_fq_lock_class +EXPORT_SYMBOL_GPL vmlinux 0x9bcc23f8 bio_trim EXPORT_SYMBOL_GPL vmlinux 0x9bcf9f7d housekeeping_enabled EXPORT_SYMBOL_GPL vmlinux 0x9be30d27 mhp_get_pluggable_range EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui -EXPORT_SYMBOL_GPL vmlinux 0x9bf63b24 pci_restore_msi_state -EXPORT_SYMBOL_GPL vmlinux 0x9c2946cc fat_update_time -EXPORT_SYMBOL_GPL vmlinux 0x9c5a2e6b crypto_stats_kpp_generate_public_key -EXPORT_SYMBOL_GPL vmlinux 0x9c6a3f95 register_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0x9bf26efe gpiod_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x9bf51dbe ip6_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0x9c0790eb sk_msg_clone +EXPORT_SYMBOL_GPL vmlinux 0x9c14ae56 skcipher_walk_virt +EXPORT_SYMBOL_GPL vmlinux 0x9c167d1c xfrm_audit_state_replay +EXPORT_SYMBOL_GPL vmlinux 0x9c5744b5 tcp_leave_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0x9c65261a trace_get_event_file EXPORT_SYMBOL_GPL vmlinux 0x9c6febfc add_uevent_var -EXPORT_SYMBOL_GPL vmlinux 0x9caf7e6f sock_diag_put_meminfo -EXPORT_SYMBOL_GPL vmlinux 0x9ce230f1 inet_ehash_nolisten +EXPORT_SYMBOL_GPL vmlinux 0x9c988bef badblocks_show +EXPORT_SYMBOL_GPL vmlinux 0x9cc6186c tty_buffer_unlock_exclusive EXPORT_SYMBOL_GPL vmlinux 0x9cfcbce1 perf_trace_buf_alloc -EXPORT_SYMBOL_GPL vmlinux 0x9d00a5a8 bpf_prog_get_type_dev +EXPORT_SYMBOL_GPL vmlinux 0x9cfd4e5f devlink_port_attrs_pci_pf_set +EXPORT_SYMBOL_GPL vmlinux 0x9cfe6cee irq_find_matching_fwspec EXPORT_SYMBOL_GPL vmlinux 0x9d09e8ae ring_buffer_event_data +EXPORT_SYMBOL_GPL vmlinux 0x9d1d19db sysfs_create_files EXPORT_SYMBOL_GPL vmlinux 0x9d2f49ef __SCK__tp_func_pelt_se_tp -EXPORT_SYMBOL_GPL vmlinux 0x9d36faf7 fwnode_graph_get_port_parent -EXPORT_SYMBOL_GPL vmlinux 0x9d4147d4 nf_hook_entries_insert_raw -EXPORT_SYMBOL_GPL vmlinux 0x9d4546eb pci_set_host_bridge_release -EXPORT_SYMBOL_GPL vmlinux 0x9d5b6e4e l3mdev_table_lookup_register -EXPORT_SYMBOL_GPL vmlinux 0x9d633337 tpm_default_chip -EXPORT_SYMBOL_GPL vmlinux 0x9d8eb831 badblocks_set -EXPORT_SYMBOL_GPL vmlinux 0x9db9c38c blk_freeze_queue_start -EXPORT_SYMBOL_GPL vmlinux 0x9dc2b044 class_interface_unregister -EXPORT_SYMBOL_GPL vmlinux 0x9ddf613f task_cls_state +EXPORT_SYMBOL_GPL vmlinux 0x9d96c14b set_primary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x9d9ffa95 dax_copy_to_iter +EXPORT_SYMBOL_GPL vmlinux 0x9dba7e60 pci_epc_get_msix +EXPORT_SYMBOL_GPL vmlinux 0x9dc3de4e gfn_to_hva +EXPORT_SYMBOL_GPL vmlinux 0x9de61543 gmap_discard EXPORT_SYMBOL_GPL vmlinux 0x9dec814f xas_get_mark EXPORT_SYMBOL_GPL vmlinux 0x9df4a2a8 idr_remove -EXPORT_SYMBOL_GPL vmlinux 0x9e015252 netlink_add_tap EXPORT_SYMBOL_GPL vmlinux 0x9e018752 pci_epc_get_first_free_bar +EXPORT_SYMBOL_GPL vmlinux 0x9e0c29d2 devm_gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0x9e0fd25d akcipher_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x9e164be4 vp_modern_set_status EXPORT_SYMBOL_GPL vmlinux 0x9e197f84 chsc_scud -EXPORT_SYMBOL_GPL vmlinux 0x9e2cb544 bpfilter_ops -EXPORT_SYMBOL_GPL vmlinux 0x9e32ef9a devm_release_action -EXPORT_SYMBOL_GPL vmlinux 0x9e358968 ping_init_sock -EXPORT_SYMBOL_GPL vmlinux 0x9e364ebf ip6_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x9e3a16f1 sk_psock_init +EXPORT_SYMBOL_GPL vmlinux 0x9e3a96b5 kvm_get_kvm_safe EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field -EXPORT_SYMBOL_GPL vmlinux 0x9e6e8329 scsi_register_device_handler -EXPORT_SYMBOL_GPL vmlinux 0x9e8a049c fsverity_file_open -EXPORT_SYMBOL_GPL vmlinux 0x9e95e5ef thp_get_unmapped_area -EXPORT_SYMBOL_GPL vmlinux 0x9e96d514 virtqueue_disable_cb +EXPORT_SYMBOL_GPL vmlinux 0x9e957cf7 devm_release_action EXPORT_SYMBOL_GPL vmlinux 0x9e9b913d __tracepoint_arm_event EXPORT_SYMBOL_GPL vmlinux 0x9ec054d5 trace_seq_putc +EXPORT_SYMBOL_GPL vmlinux 0x9ec5c193 __traceiter_xdp_bulk_tx +EXPORT_SYMBOL_GPL vmlinux 0x9ec9da08 public_key_subtype +EXPORT_SYMBOL_GPL vmlinux 0x9ecc0ae1 init_user_ns EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier EXPORT_SYMBOL_GPL vmlinux 0x9eebdde7 mpi_point_new -EXPORT_SYMBOL_GPL vmlinux 0x9efac415 ip6_local_out -EXPORT_SYMBOL_GPL vmlinux 0x9f1039bf crypto_register_ahashes +EXPORT_SYMBOL_GPL vmlinux 0x9efe94fb perf_event_create_kernel_counter +EXPORT_SYMBOL_GPL vmlinux 0x9f0a1256 vp_modern_queue_address +EXPORT_SYMBOL_GPL vmlinux 0x9f24cd06 anon_inode_getfd_secure +EXPORT_SYMBOL_GPL vmlinux 0x9f429d7d crypto_stats_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0x9f4d2a9f fuse_dev_release +EXPORT_SYMBOL_GPL vmlinux 0x9f51638c fib_nh_common_release EXPORT_SYMBOL_GPL vmlinux 0x9f56c4b9 __SCK__tp_func_devlink_hwmsg -EXPORT_SYMBOL_GPL vmlinux 0x9f5e20c8 fsverity_ioctl_read_metadata -EXPORT_SYMBOL_GPL vmlinux 0x9f620387 crypto_stats_init -EXPORT_SYMBOL_GPL vmlinux 0x9f7f82a8 irq_domain_remove -EXPORT_SYMBOL_GPL vmlinux 0x9f9033dd virtqueue_add_inbuf_ctx -EXPORT_SYMBOL_GPL vmlinux 0x9f9f46b3 sysfs_unbreak_active_protection +EXPORT_SYMBOL_GPL vmlinux 0x9f57c978 sfp_add_phy +EXPORT_SYMBOL_GPL vmlinux 0x9f9aa9d4 iommu_iova_to_phys +EXPORT_SYMBOL_GPL vmlinux 0x9fafb0ce gmap_shadow_valid EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x9fd55229 kill_pid_usb_asyncio EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm -EXPORT_SYMBOL_GPL vmlinux 0x9ff40942 __pci_hp_initialize -EXPORT_SYMBOL_GPL vmlinux 0x9ff42ab3 device_match_devt -EXPORT_SYMBOL_GPL vmlinux 0xa002d8f3 bpf_trace_run6 -EXPORT_SYMBOL_GPL vmlinux 0xa02b0918 kvm_write_guest -EXPORT_SYMBOL_GPL vmlinux 0xa02c8374 get_net_ns -EXPORT_SYMBOL_GPL vmlinux 0xa038ac66 fat_build_inode -EXPORT_SYMBOL_GPL vmlinux 0xa03fc6e7 subsys_system_register +EXPORT_SYMBOL_GPL vmlinux 0x9ffd23a8 tty_buffer_space_avail +EXPORT_SYMBOL_GPL vmlinux 0xa016580b irq_domain_create_simple +EXPORT_SYMBOL_GPL vmlinux 0xa016e39e pci_bus_resource_n +EXPORT_SYMBOL_GPL vmlinux 0xa02a5ba6 pci_store_saved_state +EXPORT_SYMBOL_GPL vmlinux 0xa02c9b00 bpf_offload_dev_match +EXPORT_SYMBOL_GPL vmlinux 0xa04dfbe0 sysfs_create_link EXPORT_SYMBOL_GPL vmlinux 0xa04f945a cpus_read_lock +EXPORT_SYMBOL_GPL vmlinux 0xa054c98a xdp_attachment_setup +EXPORT_SYMBOL_GPL vmlinux 0xa07b3645 iomap_page_mkwrite EXPORT_SYMBOL_GPL vmlinux 0xa080c5e5 smp_call_function_single_async -EXPORT_SYMBOL_GPL vmlinux 0xa0811f69 __traceiter_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0xa085cec2 dw_pcie_find_capability +EXPORT_SYMBOL_GPL vmlinux 0xa0977dab dm_hold +EXPORT_SYMBOL_GPL vmlinux 0xa0a948a2 inet6_csk_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0xa0d3456d nr_swap_pages -EXPORT_SYMBOL_GPL vmlinux 0xa0e2faf6 serdev_device_write_room -EXPORT_SYMBOL_GPL vmlinux 0xa0ea0fba fib_rules_register -EXPORT_SYMBOL_GPL vmlinux 0xa0edd650 blk_ksm_destroy +EXPORT_SYMBOL_GPL vmlinux 0xa0e9aeb5 fw_devlink_purge_absent_suppliers EXPORT_SYMBOL_GPL vmlinux 0xa111e665 pernet_ops_rwsem -EXPORT_SYMBOL_GPL vmlinux 0xa1345e91 blk_ksm_init -EXPORT_SYMBOL_GPL vmlinux 0xa139d1e1 __devm_pci_epc_create -EXPORT_SYMBOL_GPL vmlinux 0xa13f4d81 dw_pcie_ep_init_notify -EXPORT_SYMBOL_GPL vmlinux 0xa14a7d77 do_unregister_con_driver -EXPORT_SYMBOL_GPL vmlinux 0xa15872df io_cgrp_subsys -EXPORT_SYMBOL_GPL vmlinux 0xa16a3f58 pci_user_read_config_word -EXPORT_SYMBOL_GPL vmlinux 0xa175a658 hrtimer_sleeper_start_expires -EXPORT_SYMBOL_GPL vmlinux 0xa178b82b device_create_file +EXPORT_SYMBOL_GPL vmlinux 0xa12bc87a pci_dev_lock +EXPORT_SYMBOL_GPL vmlinux 0xa166e47b netdev_is_rx_handler_busy +EXPORT_SYMBOL_GPL vmlinux 0xa16b4025 __sock_recv_timestamp +EXPORT_SYMBOL_GPL vmlinux 0xa19a8031 hvc_alloc +EXPORT_SYMBOL_GPL vmlinux 0xa1a07e9c trace_event_reg +EXPORT_SYMBOL_GPL vmlinux 0xa1a54c9f pci_ats_supported +EXPORT_SYMBOL_GPL vmlinux 0xa1a5854e platform_device_alloc EXPORT_SYMBOL_GPL vmlinux 0xa1c4231f kvm_set_pfn_dirty -EXPORT_SYMBOL_GPL vmlinux 0xa1d66028 __traceiter_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0xa1c5589f pci_platform_power_transition EXPORT_SYMBOL_GPL vmlinux 0xa1f60014 nl_table_lock EXPORT_SYMBOL_GPL vmlinux 0xa20d01ba __trace_bprintk +EXPORT_SYMBOL_GPL vmlinux 0xa20d9ba3 sk_psock_msg_verdict +EXPORT_SYMBOL_GPL vmlinux 0xa2136b97 crypto_unregister_shash EXPORT_SYMBOL_GPL vmlinux 0xa2500ef6 __SCK__tp_func_powernv_throttle -EXPORT_SYMBOL_GPL vmlinux 0xa25e0e2e handle_mm_fault +EXPORT_SYMBOL_GPL vmlinux 0xa2542f77 devres_open_group +EXPORT_SYMBOL_GPL vmlinux 0xa26b97b6 serdev_device_set_baudrate EXPORT_SYMBOL_GPL vmlinux 0xa26bed8e bstr_printf EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested -EXPORT_SYMBOL_GPL vmlinux 0xa2930275 s390_reset_cmma -EXPORT_SYMBOL_GPL vmlinux 0xa2970c3e crypto_register_ahash -EXPORT_SYMBOL_GPL vmlinux 0xa2a9d523 ptep_notify +EXPORT_SYMBOL_GPL vmlinux 0xa2771bdd rt_mutex_lock_interruptible +EXPORT_SYMBOL_GPL vmlinux 0xa27af4cf dummy_con +EXPORT_SYMBOL_GPL vmlinux 0xa298b0a7 gpiod_get_index EXPORT_SYMBOL_GPL vmlinux 0xa2b0820d __SCK__tp_func_cpu_idle -EXPORT_SYMBOL_GPL vmlinux 0xa2d22d03 fwnode_graph_get_remote_port -EXPORT_SYMBOL_GPL vmlinux 0xa2e12080 vp_modern_map_vq_notify +EXPORT_SYMBOL_GPL vmlinux 0xa2daf90c device_create_bin_file EXPORT_SYMBOL_GPL vmlinux 0xa2e1b3ef trace_printk_init_buffers -EXPORT_SYMBOL_GPL vmlinux 0xa2e4d8bd __netpoll_free -EXPORT_SYMBOL_GPL vmlinux 0xa2e8d8b8 mnt_want_write_file -EXPORT_SYMBOL_GPL vmlinux 0xa2eb45b3 fsverity_cleanup_inode -EXPORT_SYMBOL_GPL vmlinux 0xa2edf49a unwind_get_return_address -EXPORT_SYMBOL_GPL vmlinux 0xa30465da watchdog_set_last_hw_keepalive -EXPORT_SYMBOL_GPL vmlinux 0xa30c0537 cio_tm_intrg -EXPORT_SYMBOL_GPL vmlinux 0xa321a379 crypto_unregister_instance -EXPORT_SYMBOL_GPL vmlinux 0xa32d0fd0 kernel_read_file -EXPORT_SYMBOL_GPL vmlinux 0xa352f3af perf_event_sysfs_show -EXPORT_SYMBOL_GPL vmlinux 0xa35ddcf1 badblocks_store +EXPORT_SYMBOL_GPL vmlinux 0xa327fd17 pci_epc_set_msix +EXPORT_SYMBOL_GPL vmlinux 0xa34462b3 dm_table_device_name +EXPORT_SYMBOL_GPL vmlinux 0xa3585ee2 iommu_uapi_cache_invalidate +EXPORT_SYMBOL_GPL vmlinux 0xa358a1f9 crypto_alloc_aead EXPORT_SYMBOL_GPL vmlinux 0xa3687f21 __traceiter_map -EXPORT_SYMBOL_GPL vmlinux 0xa36d091b serdev_device_write_buf +EXPORT_SYMBOL_GPL vmlinux 0xa37d9394 device_match_devt EXPORT_SYMBOL_GPL vmlinux 0xa38602cd drain_workqueue -EXPORT_SYMBOL_GPL vmlinux 0xa3898539 sk_clear_memalloc EXPORT_SYMBOL_GPL vmlinux 0xa389a49a profile_event_register EXPORT_SYMBOL_GPL vmlinux 0xa38a9f71 get_itimerspec64 -EXPORT_SYMBOL_GPL vmlinux 0xa38b4f8c handle_simple_irq -EXPORT_SYMBOL_GPL vmlinux 0xa38cfa91 udp_destruct_sock -EXPORT_SYMBOL_GPL vmlinux 0xa3adbf04 driver_attach -EXPORT_SYMBOL_GPL vmlinux 0xa3b13e29 crypto_alloc_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xa3a561cd kvm_set_memory_region EXPORT_SYMBOL_GPL vmlinux 0xa3b958ce reset_hung_task_detector -EXPORT_SYMBOL_GPL vmlinux 0xa3b9d3f8 ip_route_output_key_hash +EXPORT_SYMBOL_GPL vmlinux 0xa3ce04b7 mptcp_pm_get_local_addr_max +EXPORT_SYMBOL_GPL vmlinux 0xa3d01e03 fwnode_get_name EXPORT_SYMBOL_GPL vmlinux 0xa3ece414 freezer_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xa3ed0488 devlink_port_param_value_changed +EXPORT_SYMBOL_GPL vmlinux 0xa3f10409 inet_ehash_nolisten EXPORT_SYMBOL_GPL vmlinux 0xa3f12f69 __crypto_xor +EXPORT_SYMBOL_GPL vmlinux 0xa3fe542b crypto_alg_extsize EXPORT_SYMBOL_GPL vmlinux 0xa410a295 devlink_region_destroy -EXPORT_SYMBOL_GPL vmlinux 0xa41ea5b2 pci_disable_rom -EXPORT_SYMBOL_GPL vmlinux 0xa4274859 kvm_get_kvm_safe +EXPORT_SYMBOL_GPL vmlinux 0xa4305d53 tpm_chip_register +EXPORT_SYMBOL_GPL vmlinux 0xa433f5ca handle_mm_fault +EXPORT_SYMBOL_GPL vmlinux 0xa441f27b cpci_hp_register_bus EXPORT_SYMBOL_GPL vmlinux 0xa44a1307 interval_tree_iter_first -EXPORT_SYMBOL_GPL vmlinux 0xa44fa626 fwnode_graph_get_remote_node +EXPORT_SYMBOL_GPL vmlinux 0xa4504600 css_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa45670a0 __fscrypt_prepare_setattr EXPORT_SYMBOL_GPL vmlinux 0xa45c7b90 stack_trace_print -EXPORT_SYMBOL_GPL vmlinux 0xa45e74aa lwtunnel_cmp_encap -EXPORT_SYMBOL_GPL vmlinux 0xa4656ca8 virtio_break_device +EXPORT_SYMBOL_GPL vmlinux 0xa462a33e crypto_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0xa4810f71 trace_event_raw_init +EXPORT_SYMBOL_GPL vmlinux 0xa496d8c9 sched_trace_rq_avg_rt EXPORT_SYMBOL_GPL vmlinux 0xa4ab7c1c ring_buffer_overruns -EXPORT_SYMBOL_GPL vmlinux 0xa4af1caf device_show_bool EXPORT_SYMBOL_GPL vmlinux 0xa4b07fe7 ring_buffer_change_overwrite EXPORT_SYMBOL_GPL vmlinux 0xa4c00324 asn1_encode_octet_string -EXPORT_SYMBOL_GPL vmlinux 0xa4e27115 iommu_sva_bind_device -EXPORT_SYMBOL_GPL vmlinux 0xa4f73e08 dm_bio_get_target_bio_nr -EXPORT_SYMBOL_GPL vmlinux 0xa50be0f0 pci_epf_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0xa51222bf iomap_is_partially_uptodate -EXPORT_SYMBOL_GPL vmlinux 0xa51970c4 devm_init_badblocks -EXPORT_SYMBOL_GPL vmlinux 0xa52dab9b skcipher_register_instance -EXPORT_SYMBOL_GPL vmlinux 0xa532df58 device_property_read_u64_array -EXPORT_SYMBOL_GPL vmlinux 0xa544a103 class_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa55543d5 virtqueue_notify -EXPORT_SYMBOL_GPL vmlinux 0xa5567d70 xdp_rxq_info_unreg -EXPORT_SYMBOL_GPL vmlinux 0xa55af762 blk_insert_cloned_request -EXPORT_SYMBOL_GPL vmlinux 0xa55c73bc __netpoll_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xa4cc9a31 relay_switch_subbuf +EXPORT_SYMBOL_GPL vmlinux 0xa5002ef1 dev_fill_metadata_dst +EXPORT_SYMBOL_GPL vmlinux 0xa50ef8bc virtqueue_get_desc_addr +EXPORT_SYMBOL_GPL vmlinux 0xa50fd230 virtqueue_notify +EXPORT_SYMBOL_GPL vmlinux 0xa535f77b sync_page_io +EXPORT_SYMBOL_GPL vmlinux 0xa5398a33 devm_gpio_request +EXPORT_SYMBOL_GPL vmlinux 0xa553d8a7 sched_show_task +EXPORT_SYMBOL_GPL vmlinux 0xa55abf23 dax_inode +EXPORT_SYMBOL_GPL vmlinux 0xa55ad321 fat_search_long +EXPORT_SYMBOL_GPL vmlinux 0xa55b29f5 event_triggers_post_call +EXPORT_SYMBOL_GPL vmlinux 0xa56e9792 __udp_enqueue_schedule_skb EXPORT_SYMBOL_GPL vmlinux 0xa5745f0c gmap_mark_unmergeable EXPORT_SYMBOL_GPL vmlinux 0xa575a703 __sbitmap_queue_get -EXPORT_SYMBOL_GPL vmlinux 0xa5d21bfd xdp_attachment_setup +EXPORT_SYMBOL_GPL vmlinux 0xa57ebcf8 tpm_chip_start +EXPORT_SYMBOL_GPL vmlinux 0xa589e630 pcie_reset_flr +EXPORT_SYMBOL_GPL vmlinux 0xa5b01d33 devm_gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0xa5bb6b8a gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xa5c85af1 devlink_trap_policers_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa5c992ea scsi_nl_sock +EXPORT_SYMBOL_GPL vmlinux 0xa5cbd210 gpiochip_unlock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0xa5d5220a pci_hp_destroy EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full -EXPORT_SYMBOL_GPL vmlinux 0xa5f345ad __traceiter_sched_util_est_se_tp -EXPORT_SYMBOL_GPL vmlinux 0xa5fdf7c1 bd_link_disk_holder -EXPORT_SYMBOL_GPL vmlinux 0xa60976c5 ip6_sk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0xa6153bad skb_cow_data -EXPORT_SYMBOL_GPL vmlinux 0xa619e6d6 scsi_host_unblock -EXPORT_SYMBOL_GPL vmlinux 0xa61df13e debugfs_create_file_unsafe -EXPORT_SYMBOL_GPL vmlinux 0xa6205380 pci_epc_mem_init -EXPORT_SYMBOL_GPL vmlinux 0xa64d56cf bus_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0xa659d68f crypto_register_acomp +EXPORT_SYMBOL_GPL vmlinux 0xa64de33f devlink_port_type_clear +EXPORT_SYMBOL_GPL vmlinux 0xa6575537 crypto_unregister_akcipher EXPORT_SYMBOL_GPL vmlinux 0xa65f3c8c __tracepoint_block_bio_complete -EXPORT_SYMBOL_GPL vmlinux 0xa661ecbe lwtunnel_build_state -EXPORT_SYMBOL_GPL vmlinux 0xa666d0ee dm_report_zones -EXPORT_SYMBOL_GPL vmlinux 0xa670a0c7 fat_dir_empty -EXPORT_SYMBOL_GPL vmlinux 0xa6736b73 rdev_clear_badblocks -EXPORT_SYMBOL_GPL vmlinux 0xa69cb384 pci_msi_unmask_irq +EXPORT_SYMBOL_GPL vmlinux 0xa662a656 crypto_register_shashes +EXPORT_SYMBOL_GPL vmlinux 0xa66931d9 kthread_unpark +EXPORT_SYMBOL_GPL vmlinux 0xa6985757 bpf_event_output EXPORT_SYMBOL_GPL vmlinux 0xa6af1e35 __SCK__tp_func_block_rq_remap EXPORT_SYMBOL_GPL vmlinux 0xa6b5ee5b __SCK__tp_func_block_split -EXPORT_SYMBOL_GPL vmlinux 0xa6bb01ff devm_gpio_request_one -EXPORT_SYMBOL_GPL vmlinux 0xa6d63aae posix_clock_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa6dbc476 irq_domain_associate_many EXPORT_SYMBOL_GPL vmlinux 0xa6e1a69d kick_all_cpus_sync -EXPORT_SYMBOL_GPL vmlinux 0xa6e77ad7 sock_diag_register -EXPORT_SYMBOL_GPL vmlinux 0xa6f7e5b3 fscrypt_ioctl_get_policy_ex +EXPORT_SYMBOL_GPL vmlinux 0xa70915ca debugfs_create_u8 EXPORT_SYMBOL_GPL vmlinux 0xa709c835 fib6_info_destroy_rcu -EXPORT_SYMBOL_GPL vmlinux 0xa733a77a tpm2_get_cc_attrs_tbl -EXPORT_SYMBOL_GPL vmlinux 0xa758673d sk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0xa71b8d81 __traceiter_sched_update_nr_running_tp +EXPORT_SYMBOL_GPL vmlinux 0xa7299aea percpu_up_write EXPORT_SYMBOL_GPL vmlinux 0xa75fd3ab freq_qos_update_request -EXPORT_SYMBOL_GPL vmlinux 0xa76cbbfc dev_xdp_prog_count -EXPORT_SYMBOL_GPL vmlinux 0xa7a05883 generic_online_page +EXPORT_SYMBOL_GPL vmlinux 0xa7653acf bus_sort_breadthfirst +EXPORT_SYMBOL_GPL vmlinux 0xa770e474 fuse_conn_get +EXPORT_SYMBOL_GPL vmlinux 0xa7740fa8 noop_invalidatepage +EXPORT_SYMBOL_GPL vmlinux 0xa788fec1 class_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0xa7a17ffa handle_fasteoi_irq +EXPORT_SYMBOL_GPL vmlinux 0xa7ae6be8 md_allow_write +EXPORT_SYMBOL_GPL vmlinux 0xa7c43612 fuse_file_poll EXPORT_SYMBOL_GPL vmlinux 0xa7cba284 housekeeping_any_cpu -EXPORT_SYMBOL_GPL vmlinux 0xa7ced06e device_release_driver -EXPORT_SYMBOL_GPL vmlinux 0xa7dafb04 __inet_lookup_established -EXPORT_SYMBOL_GPL vmlinux 0xa7f78d9e device_move -EXPORT_SYMBOL_GPL vmlinux 0xa840e922 blk_mq_free_request +EXPORT_SYMBOL_GPL vmlinux 0xa7f29944 ip6_push_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0xa7f57d64 pci_load_saved_state +EXPORT_SYMBOL_GPL vmlinux 0xa7f9432e devm_kasprintf +EXPORT_SYMBOL_GPL vmlinux 0xa80a6bea fsnotify_alloc_group +EXPORT_SYMBOL_GPL vmlinux 0xa81434cd pingv6_ops +EXPORT_SYMBOL_GPL vmlinux 0xa81c71b2 io_cgrp_subsys EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xa8769b92 crypto_grab_skcipher -EXPORT_SYMBOL_GPL vmlinux 0xa879271f pcie_update_link_speed -EXPORT_SYMBOL_GPL vmlinux 0xa89525ca appldata_register_ops -EXPORT_SYMBOL_GPL vmlinux 0xa89cde3b fwnode_property_read_u8_array -EXPORT_SYMBOL_GPL vmlinux 0xa8ba3066 tpm1_do_selftest -EXPORT_SYMBOL_GPL vmlinux 0xa8d736a8 fuse_do_ioctl -EXPORT_SYMBOL_GPL vmlinux 0xa8e025c8 virtqueue_get_avail_addr -EXPORT_SYMBOL_GPL vmlinux 0xa8f899c1 gfn_to_memslot +EXPORT_SYMBOL_GPL vmlinux 0xa8527969 blkdev_zone_mgmt +EXPORT_SYMBOL_GPL vmlinux 0xa8689d6c device_show_int +EXPORT_SYMBOL_GPL vmlinux 0xa86d394d bpf_map_inc +EXPORT_SYMBOL_GPL vmlinux 0xa8755b50 devm_hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa8961bcf ccw_device_get_chp_desc +EXPORT_SYMBOL_GPL vmlinux 0xa898e574 klp_enable_patch +EXPORT_SYMBOL_GPL vmlinux 0xa89e8147 pci_status_get_and_clear_errors +EXPORT_SYMBOL_GPL vmlinux 0xa8a770e6 netdev_rx_handler_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa8da2e30 sbitmap_queue_show +EXPORT_SYMBOL_GPL vmlinux 0xa8f18020 balloon_page_list_dequeue +EXPORT_SYMBOL_GPL vmlinux 0xa8f28cfd virtqueue_detach_unused_buf +EXPORT_SYMBOL_GPL vmlinux 0xa907ef78 pci_epc_set_bar +EXPORT_SYMBOL_GPL vmlinux 0xa9130c54 __bio_add_page EXPORT_SYMBOL_GPL vmlinux 0xa9154bb1 register_kprobes -EXPORT_SYMBOL_GPL vmlinux 0xa91f15d0 decrypt_blob +EXPORT_SYMBOL_GPL vmlinux 0xa92f222b blk_mq_sched_mark_restart_hctx EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds +EXPORT_SYMBOL_GPL vmlinux 0xa93d0a24 __traceiter_xdp_exception +EXPORT_SYMBOL_GPL vmlinux 0xa93d8b52 pci_proc_domain +EXPORT_SYMBOL_GPL vmlinux 0xa9422df5 pci_hp_add +EXPORT_SYMBOL_GPL vmlinux 0xa9594bbf fwnode_remove_software_node +EXPORT_SYMBOL_GPL vmlinux 0xa963029b cgroup_get_from_id +EXPORT_SYMBOL_GPL vmlinux 0xa97554fd bus_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xa9997d5a devlink_flash_update_status_notify EXPORT_SYMBOL_GPL vmlinux 0xa99b8e70 __SCK__tp_func_xdp_exception EXPORT_SYMBOL_GPL vmlinux 0xa99ef899 devlink_fmsg_bool_pair_put -EXPORT_SYMBOL_GPL vmlinux 0xa9c99a77 sfp_bus_find_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xa9c01924 tracing_snapshot_cond_enable EXPORT_SYMBOL_GPL vmlinux 0xa9d0ab1f trace_seq_putmem_hex +EXPORT_SYMBOL_GPL vmlinux 0xa9dc4871 blk_next_bio EXPORT_SYMBOL_GPL vmlinux 0xa9e18049 task_handoff_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa9e6179d blkcg_deactivate_policy -EXPORT_SYMBOL_GPL vmlinux 0xa9ec3cc0 register_pernet_device -EXPORT_SYMBOL_GPL vmlinux 0xa9f2caed platform_driver_unregister EXPORT_SYMBOL_GPL vmlinux 0xa9ff15b9 s390_enable_sie -EXPORT_SYMBOL_GPL vmlinux 0xaa0a71e4 class_destroy -EXPORT_SYMBOL_GPL vmlinux 0xaa0dfed8 ccw_device_get_util_str -EXPORT_SYMBOL_GPL vmlinux 0xaa154e34 devlink_port_register -EXPORT_SYMBOL_GPL vmlinux 0xaa19728d acomp_request_free EXPORT_SYMBOL_GPL vmlinux 0xaa230f88 perf_unregister_guest_info_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xaa2ebf21 nf_hook_entries_delete_raw -EXPORT_SYMBOL_GPL vmlinux 0xaa32c588 tty_init_termios -EXPORT_SYMBOL_GPL vmlinux 0xaa3bc4ae tcp_cong_avoid_ai +EXPORT_SYMBOL_GPL vmlinux 0xaa3f3b28 devm_platform_get_irqs_affinity EXPORT_SYMBOL_GPL vmlinux 0xaa61de11 irq_stat EXPORT_SYMBOL_GPL vmlinux 0xaa6a50f9 __static_key_deferred_flush -EXPORT_SYMBOL_GPL vmlinux 0xaa84207f key_type_user -EXPORT_SYMBOL_GPL vmlinux 0xaa974ed2 tcp_twsk_unique -EXPORT_SYMBOL_GPL vmlinux 0xaa99b0fc iomap_zero_range -EXPORT_SYMBOL_GPL vmlinux 0xaa9f146c component_del -EXPORT_SYMBOL_GPL vmlinux 0xaaa1b50c debugfs_create_x32 +EXPORT_SYMBOL_GPL vmlinux 0xaa78ec85 blkcg_deactivate_policy +EXPORT_SYMBOL_GPL vmlinux 0xaa866976 platform_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xaa90e8d4 shash_free_singlespawn_instance EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump -EXPORT_SYMBOL_GPL vmlinux 0xaab40d36 dm_accept_partial_bio -EXPORT_SYMBOL_GPL vmlinux 0xaac2c28c kvm_vcpu_unmap -EXPORT_SYMBOL_GPL vmlinux 0xaad7e375 subsys_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0xaaae895f blk_rq_unprep_clone +EXPORT_SYMBOL_GPL vmlinux 0xaac05ccb pci_find_next_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0xaadbb6a3 fsverity_ioctl_read_metadata +EXPORT_SYMBOL_GPL vmlinux 0xaadc946a tty_standard_install EXPORT_SYMBOL_GPL vmlinux 0xaaddf5ee ftrace_set_filter -EXPORT_SYMBOL_GPL vmlinux 0xaaf7c3da fsnotify_destroy_mark +EXPORT_SYMBOL_GPL vmlinux 0xaadf41eb gmap_sync_dirty_log_pmd +EXPORT_SYMBOL_GPL vmlinux 0xaaf90b96 scsi_mode_select EXPORT_SYMBOL_GPL vmlinux 0xaafa5482 klist_iter_init -EXPORT_SYMBOL_GPL vmlinux 0xab353837 tcp_abort -EXPORT_SYMBOL_GPL vmlinux 0xab383769 scsi_free_sgtables -EXPORT_SYMBOL_GPL vmlinux 0xab64c8e5 devlink_dpipe_entry_ctx_prepare -EXPORT_SYMBOL_GPL vmlinux 0xab77fe02 request_firmware_direct -EXPORT_SYMBOL_GPL vmlinux 0xab8e1fa6 fs_kobj +EXPORT_SYMBOL_GPL vmlinux 0xab277952 crypto_unregister_acomps +EXPORT_SYMBOL_GPL vmlinux 0xab42296e invalidate_inode_pages2 EXPORT_SYMBOL_GPL vmlinux 0xab9bd884 perf_register_guest_info_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xabbf768c devlink_sb_unregister -EXPORT_SYMBOL_GPL vmlinux 0xabc0f075 console_drivers -EXPORT_SYMBOL_GPL vmlinux 0xabc40aee l3mdev_fib_table_by_index EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate -EXPORT_SYMBOL_GPL vmlinux 0xabd92da9 bd_unlink_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0xabccb865 tcp_reno_ssthresh +EXPORT_SYMBOL_GPL vmlinux 0xabd01a94 gpiochip_irqchip_irq_valid +EXPORT_SYMBOL_GPL vmlinux 0xabde6708 kernel_read_file EXPORT_SYMBOL_GPL vmlinux 0xabf7a0a8 __srcu_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0xabf85f8a vp_modern_set_queue_size -EXPORT_SYMBOL_GPL vmlinux 0xac06e150 gpiod_set_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xac26d92b kvm_io_bus_write +EXPORT_SYMBOL_GPL vmlinux 0xac0e888a fat_remove_entries +EXPORT_SYMBOL_GPL vmlinux 0xac11a8cd __vfs_removexattr_locked +EXPORT_SYMBOL_GPL vmlinux 0xac21f2e8 handle_level_irq EXPORT_SYMBOL_GPL vmlinux 0xac2c05b8 raw_v4_hashinfo -EXPORT_SYMBOL_GPL vmlinux 0xac34da0b dax_finish_sync_fault -EXPORT_SYMBOL_GPL vmlinux 0xac59b1a9 fib_nl_newrule +EXPORT_SYMBOL_GPL vmlinux 0xac5280b6 devlink_remote_reload_actions_performed +EXPORT_SYMBOL_GPL vmlinux 0xac529268 pci_epf_bind EXPORT_SYMBOL_GPL vmlinux 0xac5a789c trace_seq_printf -EXPORT_SYMBOL_GPL vmlinux 0xac7d3950 dma_buf_map_attachment -EXPORT_SYMBOL_GPL vmlinux 0xac849e9a dma_free_pages -EXPORT_SYMBOL_GPL vmlinux 0xac89ee12 iommu_page_response -EXPORT_SYMBOL_GPL vmlinux 0xac9b3d8c gpiod_get_value -EXPORT_SYMBOL_GPL vmlinux 0xaccbb773 sk_psock_drop -EXPORT_SYMBOL_GPL vmlinux 0xaccc86db blk_mq_alloc_sq_tag_set -EXPORT_SYMBOL_GPL vmlinux 0xaccd9a51 crypto_stats_aead_encrypt -EXPORT_SYMBOL_GPL vmlinux 0xacd7f9ee debugfs_create_x64 -EXPORT_SYMBOL_GPL vmlinux 0xacdfbce4 blk_mq_queue_inflight +EXPORT_SYMBOL_GPL vmlinux 0xac5bcbef __page_file_mapping +EXPORT_SYMBOL_GPL vmlinux 0xac6e1511 devlink_health_reporter_create +EXPORT_SYMBOL_GPL vmlinux 0xac8a292c irq_domain_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0xac9ce2c2 device_remove_software_node +EXPORT_SYMBOL_GPL vmlinux 0xacf59097 sysfs_create_group +EXPORT_SYMBOL_GPL vmlinux 0xacf9d5c3 devm_device_add_group +EXPORT_SYMBOL_GPL vmlinux 0xacfe0803 security_path_rmdir +EXPORT_SYMBOL_GPL vmlinux 0xad047557 dma_get_merge_boundary EXPORT_SYMBOL_GPL vmlinux 0xad0aca1b call_srcu -EXPORT_SYMBOL_GPL vmlinux 0xad10e308 netdev_set_default_ethtool_ops -EXPORT_SYMBOL_GPL vmlinux 0xad21bc3a virtio_config_changed +EXPORT_SYMBOL_GPL vmlinux 0xad2100ce pci_epf_remove_vepf EXPORT_SYMBOL_GPL vmlinux 0xad25602f __tracepoint_sched_overutilized_tp -EXPORT_SYMBOL_GPL vmlinux 0xad3033a0 pci_epc_mem_exit -EXPORT_SYMBOL_GPL vmlinux 0xad39db10 inet_twsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0xad32f31e kthread_func EXPORT_SYMBOL_GPL vmlinux 0xad3dfa13 lgr_info_log EXPORT_SYMBOL_GPL vmlinux 0xad42dff8 __SCK__tp_func_tcp_bad_csum -EXPORT_SYMBOL_GPL vmlinux 0xad4d963e md_account_bio EXPORT_SYMBOL_GPL vmlinux 0xad4e6259 remove_cpu -EXPORT_SYMBOL_GPL vmlinux 0xad54dacc input_ff_event -EXPORT_SYMBOL_GPL vmlinux 0xad5b4f28 devres_remove_group -EXPORT_SYMBOL_GPL vmlinux 0xad621aaf sk_psock_init EXPORT_SYMBOL_GPL vmlinux 0xad645234 register_switchdev_notifier EXPORT_SYMBOL_GPL vmlinux 0xad76a3f0 __SCK__tp_func_neigh_update_done -EXPORT_SYMBOL_GPL vmlinux 0xad7b34d1 pci_d3cold_enable -EXPORT_SYMBOL_GPL vmlinux 0xad83138d crypto_unregister_kpp EXPORT_SYMBOL_GPL vmlinux 0xada38766 dst_cache_destroy -EXPORT_SYMBOL_GPL vmlinux 0xada9efc5 tcp_set_keepalive EXPORT_SYMBOL_GPL vmlinux 0xadaaa3ae diag308 -EXPORT_SYMBOL_GPL vmlinux 0xadb93c84 __list_lru_init -EXPORT_SYMBOL_GPL vmlinux 0xade3c357 component_master_del -EXPORT_SYMBOL_GPL vmlinux 0xae0662d9 iommu_sva_unbind_gpasid +EXPORT_SYMBOL_GPL vmlinux 0xadc95658 show_class_attr_string +EXPORT_SYMBOL_GPL vmlinux 0xadd0d977 mmu_interval_notifier_insert +EXPORT_SYMBOL_GPL vmlinux 0xadf5914e crypto_register_ahashes EXPORT_SYMBOL_GPL vmlinux 0xae1051b0 net_cls_cgrp_subsys_enabled_key EXPORT_SYMBOL_GPL vmlinux 0xae116bf0 sbitmap_queue_resize -EXPORT_SYMBOL_GPL vmlinux 0xae343a7a umd_cleanup_helper -EXPORT_SYMBOL_GPL vmlinux 0xae388e25 crypto_register_scomp +EXPORT_SYMBOL_GPL vmlinux 0xae1a1736 sk_msg_return_zero +EXPORT_SYMBOL_GPL vmlinux 0xae1d8e79 netdev_set_default_ethtool_ops +EXPORT_SYMBOL_GPL vmlinux 0xae287888 pci_enable_pcie_error_reporting EXPORT_SYMBOL_GPL vmlinux 0xae39f80e dst_cache_init -EXPORT_SYMBOL_GPL vmlinux 0xae45f51a kvm_vcpu_write_guest_page -EXPORT_SYMBOL_GPL vmlinux 0xae4d6e9d debugfs_file_get +EXPORT_SYMBOL_GPL vmlinux 0xae414986 sched_trace_cfs_rq_cpu EXPORT_SYMBOL_GPL vmlinux 0xae64f1dd __tracepoint_block_bio_remap EXPORT_SYMBOL_GPL vmlinux 0xae69b1c1 usermodehelper_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0xae6b9efe inet_csk_route_req +EXPORT_SYMBOL_GPL vmlinux 0xae77da21 iommu_group_for_each_dev EXPORT_SYMBOL_GPL vmlinux 0xae7c231d mpi_cmp -EXPORT_SYMBOL_GPL vmlinux 0xaec121bc kill_dev_dax -EXPORT_SYMBOL_GPL vmlinux 0xaec54770 tcp_reno_ssthresh -EXPORT_SYMBOL_GPL vmlinux 0xaf08ee69 vfs_write -EXPORT_SYMBOL_GPL vmlinux 0xaf0a8d3f dma_resv_test_signaled -EXPORT_SYMBOL_GPL vmlinux 0xaf0e118c __traceiter_neigh_cleanup_and_release -EXPORT_SYMBOL_GPL vmlinux 0xaf1b695f sock_gen_put -EXPORT_SYMBOL_GPL vmlinux 0xaf354fdc bus_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xae856502 sk_set_memalloc +EXPORT_SYMBOL_GPL vmlinux 0xaea39a22 strp_stop +EXPORT_SYMBOL_GPL vmlinux 0xaecef997 inet6_lookup +EXPORT_SYMBOL_GPL vmlinux 0xaeda6a27 crypto_destroy_tfm +EXPORT_SYMBOL_GPL vmlinux 0xaee02b39 devm_gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0xaf2f9ccd wbt_disable_default EXPORT_SYMBOL_GPL vmlinux 0xaf3a44e9 __SCK__tp_func_sched_overutilized_tp -EXPORT_SYMBOL_GPL vmlinux 0xaf5fef14 fwnode_count_parents -EXPORT_SYMBOL_GPL vmlinux 0xaf74351d devlink_trap_groups_unregister -EXPORT_SYMBOL_GPL vmlinux 0xaf91ea68 devm_platform_ioremap_resource_byname -EXPORT_SYMBOL_GPL vmlinux 0xaf936bbe driver_find_device -EXPORT_SYMBOL_GPL vmlinux 0xafa88361 iommu_register_device_fault_handler -EXPORT_SYMBOL_GPL vmlinux 0xafc22d13 dma_buf_get +EXPORT_SYMBOL_GPL vmlinux 0xaf3b7d93 preempt_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xaf69168e xfrm_dev_state_add +EXPORT_SYMBOL_GPL vmlinux 0xaf81efca pci_set_cacheline_size +EXPORT_SYMBOL_GPL vmlinux 0xafa9f057 fuse_dev_alloc EXPORT_SYMBOL_GPL vmlinux 0xafc7a41d hrtimer_start_range_ns +EXPORT_SYMBOL_GPL vmlinux 0xafd33397 iommu_map_atomic +EXPORT_SYMBOL_GPL vmlinux 0xafdf7205 nf_queue_entry_get_refs EXPORT_SYMBOL_GPL vmlinux 0xafeb58c1 __SCK__tp_func_io_page_fault -EXPORT_SYMBOL_GPL vmlinux 0xafee7c7d pcie_bus_configure_settings -EXPORT_SYMBOL_GPL vmlinux 0xb01c5546 sysfs_create_file_ns -EXPORT_SYMBOL_GPL vmlinux 0xb026bf71 kvm_read_guest +EXPORT_SYMBOL_GPL vmlinux 0xb0075bb6 bsg_job_get +EXPORT_SYMBOL_GPL vmlinux 0xb00f6055 vp_modern_get_num_queues +EXPORT_SYMBOL_GPL vmlinux 0xb01c3aee sk_msg_free EXPORT_SYMBOL_GPL vmlinux 0xb049a294 __SCK__tp_func_pelt_irq_tp -EXPORT_SYMBOL_GPL vmlinux 0xb0553c49 fwnode_property_read_u64_array -EXPORT_SYMBOL_GPL vmlinux 0xb05d008e __devm_alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0xb0613d5d irq_set_chip_and_handler_name +EXPORT_SYMBOL_GPL vmlinux 0xb04a55dc fib6_new_table +EXPORT_SYMBOL_GPL vmlinux 0xb04b8af9 platform_device_register +EXPORT_SYMBOL_GPL vmlinux 0xb0523875 kthread_unuse_mm +EXPORT_SYMBOL_GPL vmlinux 0xb05e3db5 debugfs_write_file_bool +EXPORT_SYMBOL_GPL vmlinux 0xb0702da9 tcp_set_state +EXPORT_SYMBOL_GPL vmlinux 0xb0712b86 tty_set_termios EXPORT_SYMBOL_GPL vmlinux 0xb0747ed2 rcu_cpu_stall_suppress -EXPORT_SYMBOL_GPL vmlinux 0xb0a5f5a3 wait_on_page_writeback -EXPORT_SYMBOL_GPL vmlinux 0xb0a8a610 tty_buffer_space_avail +EXPORT_SYMBOL_GPL vmlinux 0xb09a25fc fuse_simple_background +EXPORT_SYMBOL_GPL vmlinux 0xb0ac56cd blkdev_ioctl EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset -EXPORT_SYMBOL_GPL vmlinux 0xb0bb1bbc crypto_shash_tfm_digest -EXPORT_SYMBOL_GPL vmlinux 0xb0cf1ffd serdev_device_write_flush -EXPORT_SYMBOL_GPL vmlinux 0xb0d3705c device_register -EXPORT_SYMBOL_GPL vmlinux 0xb0d76041 pci_stop_and_remove_bus_device_locked -EXPORT_SYMBOL_GPL vmlinux 0xb0db4bf7 devm_platform_get_irqs_affinity +EXPORT_SYMBOL_GPL vmlinux 0xb0ccc287 software_node_fwnode EXPORT_SYMBOL_GPL vmlinux 0xb0e938c4 fscrypt_match_name +EXPORT_SYMBOL_GPL vmlinux 0xb0eb27f1 balloon_aops +EXPORT_SYMBOL_GPL vmlinux 0xb0f5242d dw_pcie_host_deinit EXPORT_SYMBOL_GPL vmlinux 0xb0f9e704 xas_split EXPORT_SYMBOL_GPL vmlinux 0xb10d964d devlink_fmsg_pair_nest_end +EXPORT_SYMBOL_GPL vmlinux 0xb1138cd9 ping_getfrag EXPORT_SYMBOL_GPL vmlinux 0xb11d9000 tty_dev_name_to_number -EXPORT_SYMBOL_GPL vmlinux 0xb153609e kvm_vcpu_is_visible_gfn +EXPORT_SYMBOL_GPL vmlinux 0xb129961e dma_buf_detach +EXPORT_SYMBOL_GPL vmlinux 0xb151f765 devlink_trap_groups_register EXPORT_SYMBOL_GPL vmlinux 0xb15b552a sfp_parse_support -EXPORT_SYMBOL_GPL vmlinux 0xb15d2af2 set_selection_kernel EXPORT_SYMBOL_GPL vmlinux 0xb1647fc2 devlink_info_version_running_put -EXPORT_SYMBOL_GPL vmlinux 0xb166836f virtqueue_is_broken -EXPORT_SYMBOL_GPL vmlinux 0xb16766d4 gpiod_get_raw_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xb16c4d87 ping_recvmsg -EXPORT_SYMBOL_GPL vmlinux 0xb16ca5e5 class_create_file_ns -EXPORT_SYMBOL_GPL vmlinux 0xb17d2130 pci_epf_type_add_cfs -EXPORT_SYMBOL_GPL vmlinux 0xb183c92d debugfs_create_bool -EXPORT_SYMBOL_GPL vmlinux 0xb1874f0f blkdev_nr_zones -EXPORT_SYMBOL_GPL vmlinux 0xb1924a33 vring_transport_features -EXPORT_SYMBOL_GPL vmlinux 0xb1a806d1 devlink_param_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb1749f22 securityfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0xb1968bfa fork_usermode_driver +EXPORT_SYMBOL_GPL vmlinux 0xb19985c3 nf_nat_hook +EXPORT_SYMBOL_GPL vmlinux 0xb1aaf021 pci_hp_remove_module_link +EXPORT_SYMBOL_GPL vmlinux 0xb1ade1c9 tty_ldisc_receive_buf EXPORT_SYMBOL_GPL vmlinux 0xb1b1c93e atomic_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb1b6816f __pci_reset_function_locked -EXPORT_SYMBOL_GPL vmlinux 0xb1c6749d scsi_dh_activate +EXPORT_SYMBOL_GPL vmlinux 0xb1c4ac8d dw_pcie_ep_init_complete +EXPORT_SYMBOL_GPL vmlinux 0xb1d61d83 skb_zerocopy +EXPORT_SYMBOL_GPL vmlinux 0xb1d7f56e dm_per_bio_data +EXPORT_SYMBOL_GPL vmlinux 0xb1d835f6 devlink_flash_update_timeout_notify +EXPORT_SYMBOL_GPL vmlinux 0xb1d94bbe evict_inodes EXPORT_SYMBOL_GPL vmlinux 0xb1e25684 __trace_bputs +EXPORT_SYMBOL_GPL vmlinux 0xb1f288f7 vfs_submount EXPORT_SYMBOL_GPL vmlinux 0xb1fc1782 pci_speed_string -EXPORT_SYMBOL_GPL vmlinux 0xb21607ad crypto_stats_akcipher_decrypt -EXPORT_SYMBOL_GPL vmlinux 0xb23042d0 gpiod_direction_output_raw -EXPORT_SYMBOL_GPL vmlinux 0xb238f0ae gmap_shadow_page -EXPORT_SYMBOL_GPL vmlinux 0xb2398d46 device_add_properties +EXPORT_SYMBOL_GPL vmlinux 0xb20a1656 rt_mutex_trylock +EXPORT_SYMBOL_GPL vmlinux 0xb21d3695 sfp_bus_add_upstream +EXPORT_SYMBOL_GPL vmlinux 0xb23f03f9 unmap_mapping_pages EXPORT_SYMBOL_GPL vmlinux 0xb2405efc secure_tcp_seq -EXPORT_SYMBOL_GPL vmlinux 0xb24190a5 blk_queue_zone_write_granularity -EXPORT_SYMBOL_GPL vmlinux 0xb24d0987 housekeeping_affine -EXPORT_SYMBOL_GPL vmlinux 0xb24fcc8b iommu_fwspec_add_ids +EXPORT_SYMBOL_GPL vmlinux 0xb2460bb7 __tcp_send_ack EXPORT_SYMBOL_GPL vmlinux 0xb26a1add elfcorehdr_addr -EXPORT_SYMBOL_GPL vmlinux 0xb26bfc23 raw_hash_sk -EXPORT_SYMBOL_GPL vmlinux 0xb2a17c53 perf_event_enable -EXPORT_SYMBOL_GPL vmlinux 0xb2a96273 input_ff_erase -EXPORT_SYMBOL_GPL vmlinux 0xb2aa8f8b skb_zerocopy_iter_dgram -EXPORT_SYMBOL_GPL vmlinux 0xb2b042b1 disk_update_readahead -EXPORT_SYMBOL_GPL vmlinux 0xb2b1c548 sk_msg_alloc -EXPORT_SYMBOL_GPL vmlinux 0xb2b8dc54 synth_event_add_next_val +EXPORT_SYMBOL_GPL vmlinux 0xb26a6a1e scm_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb2a4bf31 tcp_done +EXPORT_SYMBOL_GPL vmlinux 0xb2b9362c debugfs_attr_write EXPORT_SYMBOL_GPL vmlinux 0xb2c1732e rcu_gp_set_torture_wait -EXPORT_SYMBOL_GPL vmlinux 0xb2cf5984 nfnl_ct_hook -EXPORT_SYMBOL_GPL vmlinux 0xb2d91b45 bus_create_file -EXPORT_SYMBOL_GPL vmlinux 0xb2dffb44 virtqueue_enable_cb_delayed -EXPORT_SYMBOL_GPL vmlinux 0xb2e1c49f perf_event_read_value -EXPORT_SYMBOL_GPL vmlinux 0xb2e367bc fwnode_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0xb2e2e0f3 crypto_register_shash +EXPORT_SYMBOL_GPL vmlinux 0xb2e86d1b gpiod_set_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0xb30511c6 fib_rules_dump +EXPORT_SYMBOL_GPL vmlinux 0xb3059df8 device_property_match_string EXPORT_SYMBOL_GPL vmlinux 0xb307c909 devlink_fmsg_u64_pair_put -EXPORT_SYMBOL_GPL vmlinux 0xb31e1782 dm_copy_name_and_uuid -EXPORT_SYMBOL_GPL vmlinux 0xb32294a7 pci_set_pcie_reset_state -EXPORT_SYMBOL_GPL vmlinux 0xb34332d8 sysfs_create_link -EXPORT_SYMBOL_GPL vmlinux 0xb35cf040 rt_mutex_lock_interruptible -EXPORT_SYMBOL_GPL vmlinux 0xb39a609a elv_rqhash_add -EXPORT_SYMBOL_GPL vmlinux 0xb3b3fdf3 fwnode_get_named_gpiod -EXPORT_SYMBOL_GPL vmlinux 0xb3b457a4 iommu_domain_alloc -EXPORT_SYMBOL_GPL vmlinux 0xb3bce67b user_read -EXPORT_SYMBOL_GPL vmlinux 0xb3e52913 ip_build_and_send_pkt -EXPORT_SYMBOL_GPL vmlinux 0xb3e5f2b0 devm_request_pci_bus_resources -EXPORT_SYMBOL_GPL vmlinux 0xb3f52b02 tty_port_register_device_attr -EXPORT_SYMBOL_GPL vmlinux 0xb3f5602b pci_vfs_assigned -EXPORT_SYMBOL_GPL vmlinux 0xb4136ca5 perf_pmu_migrate_context +EXPORT_SYMBOL_GPL vmlinux 0xb32cc716 is_swiotlb_active +EXPORT_SYMBOL_GPL vmlinux 0xb3441b54 fib_nexthop_info +EXPORT_SYMBOL_GPL vmlinux 0xb36e3fe1 dax_writeback_mapping_range +EXPORT_SYMBOL_GPL vmlinux 0xb375ed7e iomap_seek_data +EXPORT_SYMBOL_GPL vmlinux 0xb37f7e13 switchdev_port_obj_add +EXPORT_SYMBOL_GPL vmlinux 0xb38bcc06 check_move_unevictable_pages +EXPORT_SYMBOL_GPL vmlinux 0xb3b65124 simple_attr_open +EXPORT_SYMBOL_GPL vmlinux 0xb3c936ff irq_chip_set_vcpu_affinity_parent +EXPORT_SYMBOL_GPL vmlinux 0xb3e95c51 sysfs_update_group +EXPORT_SYMBOL_GPL vmlinux 0xb3eae54d devlink_params_register +EXPORT_SYMBOL_GPL vmlinux 0xb4197323 debugfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0xb421b8a1 crypto_grab_aead EXPORT_SYMBOL_GPL vmlinux 0xb4339edb iomap_dio_complete -EXPORT_SYMBOL_GPL vmlinux 0xb4376ee4 synth_event_trace_start EXPORT_SYMBOL_GPL vmlinux 0xb43f9365 ktime_get +EXPORT_SYMBOL_GPL vmlinux 0xb445b844 gpiochip_add_data_with_key EXPORT_SYMBOL_GPL vmlinux 0xb44e18ea audit_enabled -EXPORT_SYMBOL_GPL vmlinux 0xb45760c9 gfn_to_page_many_atomic EXPORT_SYMBOL_GPL vmlinux 0xb46fbe0b klp_shadow_get_or_alloc -EXPORT_SYMBOL_GPL vmlinux 0xb4944319 tcp_done +EXPORT_SYMBOL_GPL vmlinux 0xb47518cc bsg_remove_queue +EXPORT_SYMBOL_GPL vmlinux 0xb4882b65 unix_outq_len +EXPORT_SYMBOL_GPL vmlinux 0xb48a429c blk_mq_debugfs_rq_show +EXPORT_SYMBOL_GPL vmlinux 0xb49a1cc3 acct_bioset_init EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb4c852e3 nfs42_ssc_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb4cce7f5 __fput_sync -EXPORT_SYMBOL_GPL vmlinux 0xb4db48d6 param_set_uint_minmax -EXPORT_SYMBOL_GPL vmlinux 0xb4e9d8c5 ip6_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0xb4beb247 fuse_conn_init +EXPORT_SYMBOL_GPL vmlinux 0xb4c11e2e __dax_driver_register +EXPORT_SYMBOL_GPL vmlinux 0xb4ed47ea __blk_req_zone_write_lock EXPORT_SYMBOL_GPL vmlinux 0xb4eda0da ring_buffer_event_length EXPORT_SYMBOL_GPL vmlinux 0xb4edb989 alarm_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0xb4f85bad irq_create_of_mapping +EXPORT_SYMBOL_GPL vmlinux 0xb4f9b499 crypto_unregister_alg +EXPORT_SYMBOL_GPL vmlinux 0xb51149b0 posix_clock_register +EXPORT_SYMBOL_GPL vmlinux 0xb51346e4 lwtunnel_fill_encap EXPORT_SYMBOL_GPL vmlinux 0xb51b5271 ftrace_set_filter_ip -EXPORT_SYMBOL_GPL vmlinux 0xb5292852 devm_add_action -EXPORT_SYMBOL_GPL vmlinux 0xb52dd4f6 nf_checksum -EXPORT_SYMBOL_GPL vmlinux 0xb548bce0 pci_epc_raise_irq -EXPORT_SYMBOL_GPL vmlinux 0xb576febc __traceiter_pelt_se_tp -EXPORT_SYMBOL_GPL vmlinux 0xb58de2b8 tty_perform_flush -EXPORT_SYMBOL_GPL vmlinux 0xb5ba6672 dm_get_md -EXPORT_SYMBOL_GPL vmlinux 0xb5bcf7a1 gpiod_to_irq -EXPORT_SYMBOL_GPL vmlinux 0xb5dd8a94 sysfs_file_change_owner -EXPORT_SYMBOL_GPL vmlinux 0xb5e8aa3a unmap_mapping_pages -EXPORT_SYMBOL_GPL vmlinux 0xb5f9499a serdev_device_write_wakeup -EXPORT_SYMBOL_GPL vmlinux 0xb603e93c fscrypt_show_test_dummy_encryption -EXPORT_SYMBOL_GPL vmlinux 0xb609d198 do_splice_to -EXPORT_SYMBOL_GPL vmlinux 0xb6184505 vfs_getxattr -EXPORT_SYMBOL_GPL vmlinux 0xb61949c3 ccw_device_siosl +EXPORT_SYMBOL_GPL vmlinux 0xb531e09c irq_domain_simple_ops +EXPORT_SYMBOL_GPL vmlinux 0xb55fb6f7 mptcp_token_get_sock +EXPORT_SYMBOL_GPL vmlinux 0xb5ad1699 perf_aux_output_end +EXPORT_SYMBOL_GPL vmlinux 0xb5aec818 gpiod_get_direction +EXPORT_SYMBOL_GPL vmlinux 0xb5d0c777 __page_mapcount +EXPORT_SYMBOL_GPL vmlinux 0xb61402b5 scsi_free_sgtables +EXPORT_SYMBOL_GPL vmlinux 0xb61e77e6 pci_epc_write_header EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb62ad0ca skb_pull_rcsum EXPORT_SYMBOL_GPL vmlinux 0xb6410433 mpi_addm -EXPORT_SYMBOL_GPL vmlinux 0xb64846e4 is_skb_forwardable -EXPORT_SYMBOL_GPL vmlinux 0xb65eae9a balloon_aops -EXPORT_SYMBOL_GPL vmlinux 0xb6632d0b gpiochip_populate_parent_fwspec_twocell -EXPORT_SYMBOL_GPL vmlinux 0xb6669f50 bus_set_iommu -EXPORT_SYMBOL_GPL vmlinux 0xb6720798 md_bitmap_load +EXPORT_SYMBOL_GPL vmlinux 0xb644ab5e iomap_writepage EXPORT_SYMBOL_GPL vmlinux 0xb6787346 sfp_unregister_socket EXPORT_SYMBOL_GPL vmlinux 0xb67d985d smp_call_function_any -EXPORT_SYMBOL_GPL vmlinux 0xb6c9c93b iommu_detach_group -EXPORT_SYMBOL_GPL vmlinux 0xb6dd2531 strp_data_ready -EXPORT_SYMBOL_GPL vmlinux 0xb6f71b24 tty_port_default_client_ops -EXPORT_SYMBOL_GPL vmlinux 0xb711db0a pci_add_dynid -EXPORT_SYMBOL_GPL vmlinux 0xb7154681 is_virtio_device -EXPORT_SYMBOL_GPL vmlinux 0xb71ca8a2 ethnl_cable_test_finished +EXPORT_SYMBOL_GPL vmlinux 0xb68f711f udp_cmsg_send +EXPORT_SYMBOL_GPL vmlinux 0xb6c74376 vp_modern_set_features +EXPORT_SYMBOL_GPL vmlinux 0xb6cd16ee fwnode_graph_get_remote_port_parent +EXPORT_SYMBOL_GPL vmlinux 0xb7037caa gpiod_set_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xb723f90c sysfs_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xb72d66da scsi_host_unblock EXPORT_SYMBOL_GPL vmlinux 0xb730ef83 gen_pool_size -EXPORT_SYMBOL_GPL vmlinux 0xb7683c3f tcp_set_state -EXPORT_SYMBOL_GPL vmlinux 0xb7831c00 device_link_remove +EXPORT_SYMBOL_GPL vmlinux 0xb743f7ee wbc_detach_inode EXPORT_SYMBOL_GPL vmlinux 0xb786bf75 pci_write_msi_msg EXPORT_SYMBOL_GPL vmlinux 0xb7a387fc synchronize_rcu_tasks_rude -EXPORT_SYMBOL_GPL vmlinux 0xb7aa9dca pci_common_swizzle -EXPORT_SYMBOL_GPL vmlinux 0xb7ae6b19 dma_buf_fd EXPORT_SYMBOL_GPL vmlinux 0xb7b350ed klist_init +EXPORT_SYMBOL_GPL vmlinux 0xb7bbd454 virtqueue_kick EXPORT_SYMBOL_GPL vmlinux 0xb7c69a63 unregister_vmap_purge_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb7caaf8c devlink_port_health_reporter_create EXPORT_SYMBOL_GPL vmlinux 0xb7cc0cff __tracepoint_br_fdb_add -EXPORT_SYMBOL_GPL vmlinux 0xb7cdcc67 device_add_groups -EXPORT_SYMBOL_GPL vmlinux 0xb7f30bad ping_hash -EXPORT_SYMBOL_GPL vmlinux 0xb8005f44 scsi_ioctl_block_when_processing_errors -EXPORT_SYMBOL_GPL vmlinux 0xb820a3c3 pci_assign_unassigned_bus_resources -EXPORT_SYMBOL_GPL vmlinux 0xb82fdba7 get_cpu_device -EXPORT_SYMBOL_GPL vmlinux 0xb831325f tcpv6_prot -EXPORT_SYMBOL_GPL vmlinux 0xb8471bb5 bpf_prog_destroy -EXPORT_SYMBOL_GPL vmlinux 0xb84f0be1 __udp4_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0xb8645ba4 gpiochip_relres_irq +EXPORT_SYMBOL_GPL vmlinux 0xb7cedb61 xdp_convert_zc_to_xdp_frame +EXPORT_SYMBOL_GPL vmlinux 0xb7df4aae crypto_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xb7ef0d5c acomp_request_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb81320f0 tty_mode_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xb81c5659 get_net_ns +EXPORT_SYMBOL_GPL vmlinux 0xb83d8980 bus_rescan_devices +EXPORT_SYMBOL_GPL vmlinux 0xb84aaa2b tty_kclose +EXPORT_SYMBOL_GPL vmlinux 0xb86fbb02 vfs_setxattr EXPORT_SYMBOL_GPL vmlinux 0xb88dbfce irq_set_irqchip_state EXPORT_SYMBOL_GPL vmlinux 0xb8993fac __tracepoint_remove_device_from_group EXPORT_SYMBOL_GPL vmlinux 0xb89e69b1 jump_label_update_timeout -EXPORT_SYMBOL_GPL vmlinux 0xb89ed4a9 cpci_hp_register_bus -EXPORT_SYMBOL_GPL vmlinux 0xb8c8884e inode_dax +EXPORT_SYMBOL_GPL vmlinux 0xb8a77fa3 fscrypt_ioctl_add_key +EXPORT_SYMBOL_GPL vmlinux 0xb8a8a57a kvm_arch_crypto_set_masks EXPORT_SYMBOL_GPL vmlinux 0xb8ccab6e inet_twsk_purge EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put -EXPORT_SYMBOL_GPL vmlinux 0xb90bc453 dm_send_uevents +EXPORT_SYMBOL_GPL vmlinux 0xb906c1d4 __percpu_down_read EXPORT_SYMBOL_GPL vmlinux 0xb912560d static_key_disable -EXPORT_SYMBOL_GPL vmlinux 0xb9214e5a perf_event_disable -EXPORT_SYMBOL_GPL vmlinux 0xb92616d8 irq_chip_request_resources_parent +EXPORT_SYMBOL_GPL vmlinux 0xb917b366 cdrom_multisession EXPORT_SYMBOL_GPL vmlinux 0xb93a6a2e zpci_write_block -EXPORT_SYMBOL_GPL vmlinux 0xb94003b3 blk_ksm_intersect_modes -EXPORT_SYMBOL_GPL vmlinux 0xb95c4b8c dw_pcie_host_deinit +EXPORT_SYMBOL_GPL vmlinux 0xb945cd71 nexthop_select_path +EXPORT_SYMBOL_GPL vmlinux 0xb9496a24 cio_tm_intrg EXPORT_SYMBOL_GPL vmlinux 0xb9681621 xdp_do_flush EXPORT_SYMBOL_GPL vmlinux 0xb9852d11 __traceiter_mc_event -EXPORT_SYMBOL_GPL vmlinux 0xb998b22d pci_status_get_and_clear_errors +EXPORT_SYMBOL_GPL vmlinux 0xb9ac2a8f skb_morph EXPORT_SYMBOL_GPL vmlinux 0xb9c425de register_syscore_ops -EXPORT_SYMBOL_GPL vmlinux 0xb9cd6ec0 fuse_simple_background -EXPORT_SYMBOL_GPL vmlinux 0xb9ce228a platform_get_irq_byname_optional EXPORT_SYMBOL_GPL vmlinux 0xb9d025c9 llist_del_first -EXPORT_SYMBOL_GPL vmlinux 0xb9d3c189 __gmap_translate EXPORT_SYMBOL_GPL vmlinux 0xb9e68e83 srcu_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb9ed62ed __put_task_struct -EXPORT_SYMBOL_GPL vmlinux 0xb9fa6aa6 show_class_attr_string -EXPORT_SYMBOL_GPL vmlinux 0xb9fe7065 devlink_net -EXPORT_SYMBOL_GPL vmlinux 0xba066606 cio_tm_start_key -EXPORT_SYMBOL_GPL vmlinux 0xba197905 bus_get_kset -EXPORT_SYMBOL_GPL vmlinux 0xba297e8d blk_mq_freeze_queue -EXPORT_SYMBOL_GPL vmlinux 0xba39d62f netlink_remove_tap -EXPORT_SYMBOL_GPL vmlinux 0xba3b3dcf device_destroy -EXPORT_SYMBOL_GPL vmlinux 0xba42bbf9 con_debug_enter -EXPORT_SYMBOL_GPL vmlinux 0xba73f573 tcf_dev_queue_xmit -EXPORT_SYMBOL_GPL vmlinux 0xba7ba1f4 __inet_inherit_port -EXPORT_SYMBOL_GPL vmlinux 0xba8cae61 devlink_health_reporter_create -EXPORT_SYMBOL_GPL vmlinux 0xbaa9e003 strp_check_rcv -EXPORT_SYMBOL_GPL vmlinux 0xbae18222 tty_kopen_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xb9ea4aac __fscrypt_prepare_lookup +EXPORT_SYMBOL_GPL vmlinux 0xba17d33b __traceiter_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0xba33abf1 device_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0xba4c3be7 gmap_enable +EXPORT_SYMBOL_GPL vmlinux 0xba523201 iomap_bmap +EXPORT_SYMBOL_GPL vmlinux 0xba6c1ab4 subsys_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0xba8567bc pci_epf_type_add_cfs +EXPORT_SYMBOL_GPL vmlinux 0xba86c438 kvm_flush_remote_tlbs +EXPORT_SYMBOL_GPL vmlinux 0xbabaf887 udp_tunnel_nic_ops +EXPORT_SYMBOL_GPL vmlinux 0xbac4afcc inode_congested +EXPORT_SYMBOL_GPL vmlinux 0xbad74aa9 __traceiter_neigh_event_send_done EXPORT_SYMBOL_GPL vmlinux 0xbaf22757 kvfree_call_rcu -EXPORT_SYMBOL_GPL vmlinux 0xbaf27df2 crypto_unregister_shashes EXPORT_SYMBOL_GPL vmlinux 0xbaf6850c fsnotify_wait_marks_destroyed EXPORT_SYMBOL_GPL vmlinux 0xbb0ab47b debug_locks -EXPORT_SYMBOL_GPL vmlinux 0xbb192c4d inet_csk_route_child_sock -EXPORT_SYMBOL_GPL vmlinux 0xbb1efa2a gpiod_set_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xbb1fc202 fscrypt_mergeable_bio_bh +EXPORT_SYMBOL_GPL vmlinux 0xbb16bee1 kvm_unmap_gfn EXPORT_SYMBOL_GPL vmlinux 0xbb24f372 __SCK__tp_func_attach_device_to_domain -EXPORT_SYMBOL_GPL vmlinux 0xbb27881d pci_remove_root_bus +EXPORT_SYMBOL_GPL vmlinux 0xbb2952bc dw_pcie_setup_rc +EXPORT_SYMBOL_GPL vmlinux 0xbb324567 scsi_dh_attach EXPORT_SYMBOL_GPL vmlinux 0xbb32e49b css_general_characteristics -EXPORT_SYMBOL_GPL vmlinux 0xbb37668d __sock_recv_ts_and_drops -EXPORT_SYMBOL_GPL vmlinux 0xbb3f0fcd filemap_read -EXPORT_SYMBOL_GPL vmlinux 0xbb42f5c3 tpm_get_timeouts -EXPORT_SYMBOL_GPL vmlinux 0xbb4c084d device_match_name -EXPORT_SYMBOL_GPL vmlinux 0xbb4f4dc6 crypto_stats_skcipher_decrypt EXPORT_SYMBOL_GPL vmlinux 0xbb5170c5 irq_get_percpu_devid_partition +EXPORT_SYMBOL_GPL vmlinux 0xbb557825 filemap_read +EXPORT_SYMBOL_GPL vmlinux 0xbb5e6a3f kick_process +EXPORT_SYMBOL_GPL vmlinux 0xbb626238 firmware_request_cache +EXPORT_SYMBOL_GPL vmlinux 0xbb691c3d tty_get_pgrp EXPORT_SYMBOL_GPL vmlinux 0xbb6a3cbd devlink_fmsg_arr_pair_nest_start EXPORT_SYMBOL_GPL vmlinux 0xbb7195a5 xdp_warn +EXPORT_SYMBOL_GPL vmlinux 0xbb76fc96 elv_register EXPORT_SYMBOL_GPL vmlinux 0xbb7b3f80 chp_ssd_get_mask EXPORT_SYMBOL_GPL vmlinux 0xbb7e1544 __cookie_v4_check EXPORT_SYMBOL_GPL vmlinux 0xbb82b09a iommu_alloc_resv_region -EXPORT_SYMBOL_GPL vmlinux 0xbb869d91 devm_hwrng_register EXPORT_SYMBOL_GPL vmlinux 0xbbc40a71 x509_decode_time -EXPORT_SYMBOL_GPL vmlinux 0xbbcf2ce9 root_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xbbfd300e md_start -EXPORT_SYMBOL_GPL vmlinux 0xbc0327f3 page_cache_sync_ra -EXPORT_SYMBOL_GPL vmlinux 0xbc17bdd7 invalidate_inode_pages2_range +EXPORT_SYMBOL_GPL vmlinux 0xbbc76194 generic_fh_to_dentry +EXPORT_SYMBOL_GPL vmlinux 0xbbdb4cee crypto_register_aead +EXPORT_SYMBOL_GPL vmlinux 0xbc194fda ethnl_cable_test_finished +EXPORT_SYMBOL_GPL vmlinux 0xbc1da3d1 unregister_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0xbc2fd594 virtqueue_add_inbuf +EXPORT_SYMBOL_GPL vmlinux 0xbc331c1d set_cpus_allowed_ptr EXPORT_SYMBOL_GPL vmlinux 0xbc3f2cb0 timecounter_cyc2time -EXPORT_SYMBOL_GPL vmlinux 0xbc42fb2a device_store_int -EXPORT_SYMBOL_GPL vmlinux 0xbc49104e __udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xbc407be1 set_secondary_fwnode EXPORT_SYMBOL_GPL vmlinux 0xbc4c4bcc trace_seq_to_user -EXPORT_SYMBOL_GPL vmlinux 0xbc5327f8 fwnode_get_next_available_child_node -EXPORT_SYMBOL_GPL vmlinux 0xbc56e515 devlink_rate_leaf_destroy +EXPORT_SYMBOL_GPL vmlinux 0xbc51c9cb gmap_remove +EXPORT_SYMBOL_GPL vmlinux 0xbc5e6dd1 crypto_find_alg EXPORT_SYMBOL_GPL vmlinux 0xbc6395a3 x509_cert_parse EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0xbc7ad7fb preempt_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0xbc7d2eb8 gpiod_get_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xbc98e0f7 crypto_comp_compress -EXPORT_SYMBOL_GPL vmlinux 0xbc9d0687 pci_epc_map_addr -EXPORT_SYMBOL_GPL vmlinux 0xbc9d5e8d md_stop_writes -EXPORT_SYMBOL_GPL vmlinux 0xbcaf25eb sysfs_remove_mount_point -EXPORT_SYMBOL_GPL vmlinux 0xbcb1574b udp_bpf_update_proto -EXPORT_SYMBOL_GPL vmlinux 0xbcc11f26 create_signature +EXPORT_SYMBOL_GPL vmlinux 0xbc822400 dw_pcie_own_conf_map_bus +EXPORT_SYMBOL_GPL vmlinux 0xbc8deb1f attribute_container_register +EXPORT_SYMBOL_GPL vmlinux 0xbc928018 aead_exit_geniv EXPORT_SYMBOL_GPL vmlinux 0xbcc15e75 ktime_get_coarse_with_offset EXPORT_SYMBOL_GPL vmlinux 0xbccfd4d8 register_oldmem_pfn_is_ram +EXPORT_SYMBOL_GPL vmlinux 0xbcd00912 eventfd_ctx_fileget +EXPORT_SYMBOL_GPL vmlinux 0xbcd39db2 debugfs_rename EXPORT_SYMBOL_GPL vmlinux 0xbcdd5b99 iommu_group_set_name -EXPORT_SYMBOL_GPL vmlinux 0xbce0349b replace_page_cache_page -EXPORT_SYMBOL_GPL vmlinux 0xbce28a1e dummy_con -EXPORT_SYMBOL_GPL vmlinux 0xbce45071 rtnl_get_net_ns_capable EXPORT_SYMBOL_GPL vmlinux 0xbcf1f0e6 zs_create_pool -EXPORT_SYMBOL_GPL vmlinux 0xbd05accf inet_twsk_hashdance -EXPORT_SYMBOL_GPL vmlinux 0xbd0d901d mmu_notifier_get_locked +EXPORT_SYMBOL_GPL vmlinux 0xbd381772 tty_buffer_request_room EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq -EXPORT_SYMBOL_GPL vmlinux 0xbd4a910c do_xdp_generic -EXPORT_SYMBOL_GPL vmlinux 0xbd4cefac sysfs_notify +EXPORT_SYMBOL_GPL vmlinux 0xbd53a945 fscrypt_get_symlink EXPORT_SYMBOL_GPL vmlinux 0xbd5704ec __tracepoint_xdp_bulk_tx -EXPORT_SYMBOL_GPL vmlinux 0xbd6731fb devm_kstrdup_const -EXPORT_SYMBOL_GPL vmlinux 0xbd684abc kvm_arch_crypto_set_masks -EXPORT_SYMBOL_GPL vmlinux 0xbd6f1fb6 platform_get_irq_optional +EXPORT_SYMBOL_GPL vmlinux 0xbd6d3bf3 add_page_wait_queue EXPORT_SYMBOL_GPL vmlinux 0xbd7aaaee add_memory -EXPORT_SYMBOL_GPL vmlinux 0xbd8133c2 crypto_find_alg -EXPORT_SYMBOL_GPL vmlinux 0xbd8cf959 vfs_listxattr +EXPORT_SYMBOL_GPL vmlinux 0xbd8539a5 vfs_cancel_lock +EXPORT_SYMBOL_GPL vmlinux 0xbd89a26e devlink_param_driverinit_value_get +EXPORT_SYMBOL_GPL vmlinux 0xbda72a8b hrtimer_sleeper_start_expires EXPORT_SYMBOL_GPL vmlinux 0xbdb72342 __tracepoint_devlink_hwmsg -EXPORT_SYMBOL_GPL vmlinux 0xbdbbd245 wbc_detach_inode -EXPORT_SYMBOL_GPL vmlinux 0xbdd0b995 nf_ct_hook -EXPORT_SYMBOL_GPL vmlinux 0xbde97dd0 udp_init_sock -EXPORT_SYMBOL_GPL vmlinux 0xbe01b6b5 __traceiter_devlink_trap_report -EXPORT_SYMBOL_GPL vmlinux 0xbe0e12e9 blk_ksm_reprogram_all_keys -EXPORT_SYMBOL_GPL vmlinux 0xbe112f6c iptunnel_handle_offloads -EXPORT_SYMBOL_GPL vmlinux 0xbe1f3fd5 tun_get_socket -EXPORT_SYMBOL_GPL vmlinux 0xbe261148 clockevents_unbind_device -EXPORT_SYMBOL_GPL vmlinux 0xbe4f1ca0 pskb_put -EXPORT_SYMBOL_GPL vmlinux 0xbe61d47c fwnode_handle_get +EXPORT_SYMBOL_GPL vmlinux 0xbdce905a iommu_page_response +EXPORT_SYMBOL_GPL vmlinux 0xbddc98dc dma_buf_vmap +EXPORT_SYMBOL_GPL vmlinux 0xbdede5ae seg6_do_srh_encap +EXPORT_SYMBOL_GPL vmlinux 0xbdf07b08 __ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0xbe181fe3 cmf_read +EXPORT_SYMBOL_GPL vmlinux 0xbe2d2803 nexthop_find_by_id +EXPORT_SYMBOL_GPL vmlinux 0xbe45250a pci_epf_create +EXPORT_SYMBOL_GPL vmlinux 0xbe6477bb devres_destroy +EXPORT_SYMBOL_GPL vmlinux 0xbe64ddfd do_splice_from EXPORT_SYMBOL_GPL vmlinux 0xbe687e88 wake_up_all_idle_cpus +EXPORT_SYMBOL_GPL vmlinux 0xbe784acb hvc_poll +EXPORT_SYMBOL_GPL vmlinux 0xbe7c7771 nfs_ssc_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbe8651dd pci_scan_child_bus +EXPORT_SYMBOL_GPL vmlinux 0xbe895055 shash_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0xbe97fc1b blk_ksm_register EXPORT_SYMBOL_GPL vmlinux 0xbe9a83d5 dw_pcie_write +EXPORT_SYMBOL_GPL vmlinux 0xbe9ad3bc param_set_uint_minmax EXPORT_SYMBOL_GPL vmlinux 0xbea5ff1e static_key_initialized -EXPORT_SYMBOL_GPL vmlinux 0xbeba7de6 fib_alias_hw_flags_set -EXPORT_SYMBOL_GPL vmlinux 0xbec91e2c crypto_unregister_acomps -EXPORT_SYMBOL_GPL vmlinux 0xbee661d4 udp4_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0xbefa0166 transport_remove_device +EXPORT_SYMBOL_GPL vmlinux 0xbeae184e pci_vfs_assigned +EXPORT_SYMBOL_GPL vmlinux 0xbec8f087 scsi_dh_set_params +EXPORT_SYMBOL_GPL vmlinux 0xbed72b64 crypto_inst_setname +EXPORT_SYMBOL_GPL vmlinux 0xbee1165c smpboot_register_percpu_thread EXPORT_SYMBOL_GPL vmlinux 0xbf041102 register_vt_notifier -EXPORT_SYMBOL_GPL vmlinux 0xbf1240ff cgroup_path_ns +EXPORT_SYMBOL_GPL vmlinux 0xbf13ac05 kernel_kobj +EXPORT_SYMBOL_GPL vmlinux 0xbf460ae6 fscrypt_d_revalidate EXPORT_SYMBOL_GPL vmlinux 0xbf4e88f4 __cookie_v4_init_sequence -EXPORT_SYMBOL_GPL vmlinux 0xbf814e2b debugfs_create_x8 -EXPORT_SYMBOL_GPL vmlinux 0xbf90e03f kvm_vcpu_yield_to -EXPORT_SYMBOL_GPL vmlinux 0xbf9285e1 split_page -EXPORT_SYMBOL_GPL vmlinux 0xbfca9cdf pci_walk_bus -EXPORT_SYMBOL_GPL vmlinux 0xbfdd2025 devm_gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0xbf52ff32 component_master_del +EXPORT_SYMBOL_GPL vmlinux 0xbf761980 tty_port_register_device_serdev +EXPORT_SYMBOL_GPL vmlinux 0xbf8010c2 aead_init_geniv +EXPORT_SYMBOL_GPL vmlinux 0xbf88e63e trace_event_ignore_this_pid +EXPORT_SYMBOL_GPL vmlinux 0xbf8f8706 ethnl_cable_test_alloc +EXPORT_SYMBOL_GPL vmlinux 0xbfa4b995 device_del +EXPORT_SYMBOL_GPL vmlinux 0xbfc77043 kvm_io_bus_write +EXPORT_SYMBOL_GPL vmlinux 0xbfcdf588 dst_cache_set_ip6 +EXPORT_SYMBOL_GPL vmlinux 0xbfdd5b51 cio_clear +EXPORT_SYMBOL_GPL vmlinux 0xbfe31976 klp_get_state EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control -EXPORT_SYMBOL_GPL vmlinux 0xc0002384 init_dummy_netdev -EXPORT_SYMBOL_GPL vmlinux 0xc03b54c3 pfn_to_online_page +EXPORT_SYMBOL_GPL vmlinux 0xc01db964 trace_event_buffer_reserve +EXPORT_SYMBOL_GPL vmlinux 0xc03feb41 fs_kobj +EXPORT_SYMBOL_GPL vmlinux 0xc040feb3 devres_get EXPORT_SYMBOL_GPL vmlinux 0xc045988c rhashtable_walk_next -EXPORT_SYMBOL_GPL vmlinux 0xc051a8ee iommu_device_unlink -EXPORT_SYMBOL_GPL vmlinux 0xc0564051 clean_acked_data_disable -EXPORT_SYMBOL_GPL vmlinux 0xc05c3c06 dw_pcie_own_conf_map_bus -EXPORT_SYMBOL_GPL vmlinux 0xc08881f1 scsi_schedule_eh -EXPORT_SYMBOL_GPL vmlinux 0xc0941d4c fs_dax_get_by_bdev +EXPORT_SYMBOL_GPL vmlinux 0xc06ab789 __skb_get_hash_symmetric +EXPORT_SYMBOL_GPL vmlinux 0xc0869964 apply_to_page_range EXPORT_SYMBOL_GPL vmlinux 0xc097d261 kobject_init_and_add -EXPORT_SYMBOL_GPL vmlinux 0xc09cf903 get_net_ns_by_fd -EXPORT_SYMBOL_GPL vmlinux 0xc09d22c2 trace_array_get_by_name EXPORT_SYMBOL_GPL vmlinux 0xc0a96e14 rcu_gp_is_expedited -EXPORT_SYMBOL_GPL vmlinux 0xc0bec46d fixup_user_fault -EXPORT_SYMBOL_GPL vmlinux 0xc0e7392f register_virtio_driver EXPORT_SYMBOL_GPL vmlinux 0xc0f0458a ip_tunnel_unneed_metadata -EXPORT_SYMBOL_GPL vmlinux 0xc0f26006 blk_queue_rq_timeout -EXPORT_SYMBOL_GPL vmlinux 0xc0fa8d3c skcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0xc0f82d5a ipv6_find_tlv +EXPORT_SYMBOL_GPL vmlinux 0xc1034e10 gpiod_get_array_value_cansleep EXPORT_SYMBOL_GPL vmlinux 0xc1086e0c sysrq_toggle_support EXPORT_SYMBOL_GPL vmlinux 0xc10fddb8 name_to_dev_t -EXPORT_SYMBOL_GPL vmlinux 0xc122ca6f blk_ksm_update_capabilities +EXPORT_SYMBOL_GPL vmlinux 0xc1160e5e fib_nl_delrule +EXPORT_SYMBOL_GPL vmlinux 0xc11910d7 crypto_shash_setkey EXPORT_SYMBOL_GPL vmlinux 0xc132c453 __wake_up_locked_sync_key -EXPORT_SYMBOL_GPL vmlinux 0xc1577b08 dma_buf_export -EXPORT_SYMBOL_GPL vmlinux 0xc178fb15 pci_enable_ats +EXPORT_SYMBOL_GPL vmlinux 0xc133b13b irq_chip_retrigger_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0xc1451df5 sk_msg_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0xc1535b75 dma_buf_put +EXPORT_SYMBOL_GPL vmlinux 0xc154f90a posix_acl_create +EXPORT_SYMBOL_GPL vmlinux 0xc184b7d2 kvm_read_guest_offset_cached +EXPORT_SYMBOL_GPL vmlinux 0xc187293f pci_check_and_unmask_intx +EXPORT_SYMBOL_GPL vmlinux 0xc197e76b pci_cfg_access_trylock +EXPORT_SYMBOL_GPL vmlinux 0xc1bb1f25 perf_event_period +EXPORT_SYMBOL_GPL vmlinux 0xc1ce956d gmap_register_pte_notifier EXPORT_SYMBOL_GPL vmlinux 0xc1edf1ac freq_qos_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0xc217b3d0 vmf_insert_pfn_pmd_prot -EXPORT_SYMBOL_GPL vmlinux 0xc219e500 sysfs_add_link_to_group -EXPORT_SYMBOL_GPL vmlinux 0xc2233a17 crypto_stats_kpp_set_secret -EXPORT_SYMBOL_GPL vmlinux 0xc226b410 bio_start_io_acct +EXPORT_SYMBOL_GPL vmlinux 0xc1ef8e1f decrypt_blob EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases -EXPORT_SYMBOL_GPL vmlinux 0xc2397ff6 blk_mq_start_stopped_hw_queue -EXPORT_SYMBOL_GPL vmlinux 0xc2459f78 gpiod_set_raw_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xc260a646 security_kernel_post_read_file -EXPORT_SYMBOL_GPL vmlinux 0xc2839bf2 peernet2id_alloc -EXPORT_SYMBOL_GPL vmlinux 0xc283f28b find_get_pid -EXPORT_SYMBOL_GPL vmlinux 0xc2969b71 irq_domain_xlate_onetwocell -EXPORT_SYMBOL_GPL vmlinux 0xc29eaf40 __devres_alloc_node +EXPORT_SYMBOL_GPL vmlinux 0xc2348206 xdp_master_redirect +EXPORT_SYMBOL_GPL vmlinux 0xc246ac5c debugfs_print_regs32 +EXPORT_SYMBOL_GPL vmlinux 0xc24a1236 tcp_twsk_destructor +EXPORT_SYMBOL_GPL vmlinux 0xc24d5b0f subsys_system_register +EXPORT_SYMBOL_GPL vmlinux 0xc264f0a5 xdp_rxq_info_unused +EXPORT_SYMBOL_GPL vmlinux 0xc27e90ef pci_epc_get_features +EXPORT_SYMBOL_GPL vmlinux 0xc2856b9a fib_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0xc29f1837 fwnode_get_next_parent EXPORT_SYMBOL_GPL vmlinux 0xc2a1cbaf __cpuhp_state_remove_instance +EXPORT_SYMBOL_GPL vmlinux 0xc2a25958 badblocks_store +EXPORT_SYMBOL_GPL vmlinux 0xc2a2ab82 device_get_dma_attr EXPORT_SYMBOL_GPL vmlinux 0xc2a814db tcp_memory_pressure EXPORT_SYMBOL_GPL vmlinux 0xc2b9773a __tracepoint_neigh_update_done EXPORT_SYMBOL_GPL vmlinux 0xc2c1c427 perf_event_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xc2c7bc05 dw_pcie_ep_init_complete -EXPORT_SYMBOL_GPL vmlinux 0xc2ca00e0 screen_glyph_unicode +EXPORT_SYMBOL_GPL vmlinux 0xc2cbedb9 irq_chip_disable_parent EXPORT_SYMBOL_GPL vmlinux 0xc2d69ca6 gfn_to_pfn_memslot -EXPORT_SYMBOL_GPL vmlinux 0xc2eaa332 sysfs_remove_link -EXPORT_SYMBOL_GPL vmlinux 0xc2edd844 do_splice_from -EXPORT_SYMBOL_GPL vmlinux 0xc2f58dc3 pci_epc_add_epf -EXPORT_SYMBOL_GPL vmlinux 0xc3164a26 fat_attach -EXPORT_SYMBOL_GPL vmlinux 0xc31f2d2c devlink_port_params_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc324596b pci_enable_rom -EXPORT_SYMBOL_GPL vmlinux 0xc33157fe irq_create_fwspec_mapping -EXPORT_SYMBOL_GPL vmlinux 0xc3317e16 dummy_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0xc2e18252 pci_probe_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0xc2f990c7 find_extend_vma +EXPORT_SYMBOL_GPL vmlinux 0xc328ed97 gpiod_get EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object +EXPORT_SYMBOL_GPL vmlinux 0xc351622e dma_buf_move_notify EXPORT_SYMBOL_GPL vmlinux 0xc3708747 trace_vprintk EXPORT_SYMBOL_GPL vmlinux 0xc3805cd1 fs_ftype_to_dtype -EXPORT_SYMBOL_GPL vmlinux 0xc3882bcc dev_fill_forward_path -EXPORT_SYMBOL_GPL vmlinux 0xc398f092 blkdev_zone_mgmt -EXPORT_SYMBOL_GPL vmlinux 0xc3b7f574 bpf_map_inc_with_uref +EXPORT_SYMBOL_GPL vmlinux 0xc385249c dax_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0xc3895bf5 __dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0xc3a057f0 device_show_ulong EXPORT_SYMBOL_GPL vmlinux 0xc3c4c6cc hash_algo_name -EXPORT_SYMBOL_GPL vmlinux 0xc3c9fcdd ping_close +EXPORT_SYMBOL_GPL vmlinux 0xc3c7ad49 lwtunnel_state_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc3c7f9f2 pin_user_pages_fast_only +EXPORT_SYMBOL_GPL vmlinux 0xc3ce7a3f bus_get_device_klist EXPORT_SYMBOL_GPL vmlinux 0xc3de65ff ring_buffer_bytes_cpu -EXPORT_SYMBOL_GPL vmlinux 0xc3e5bbe7 cio_resume -EXPORT_SYMBOL_GPL vmlinux 0xc3e75444 sched_set_fifo EXPORT_SYMBOL_GPL vmlinux 0xc3ea5305 iommu_default_passthrough -EXPORT_SYMBOL_GPL vmlinux 0xc3edce78 pci_epc_start -EXPORT_SYMBOL_GPL vmlinux 0xc3f0108d msg_zerocopy_put_abort +EXPORT_SYMBOL_GPL vmlinux 0xc4169e98 unregister_pernet_subsys EXPORT_SYMBOL_GPL vmlinux 0xc41a0c51 chsc_ssqd EXPORT_SYMBOL_GPL vmlinux 0xc426c51f klp_shadow_free_all -EXPORT_SYMBOL_GPL vmlinux 0xc428f1bc vma_kernel_pagesize -EXPORT_SYMBOL_GPL vmlinux 0xc443b557 do_unbind_con_driver -EXPORT_SYMBOL_GPL vmlinux 0xc4572e38 irq_chip_set_wake_parent +EXPORT_SYMBOL_GPL vmlinux 0xc430296b pci_create_root_bus +EXPORT_SYMBOL_GPL vmlinux 0xc439880b class_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc44a9165 blk_update_request +EXPORT_SYMBOL_GPL vmlinux 0xc4511c8c tty_kopen_exclusive EXPORT_SYMBOL_GPL vmlinux 0xc45e246f housekeeping_test_cpu -EXPORT_SYMBOL_GPL vmlinux 0xc460489f kobject_uevent_env +EXPORT_SYMBOL_GPL vmlinux 0xc473c665 fib6_check_nexthop +EXPORT_SYMBOL_GPL vmlinux 0xc47dc7cd inet_hash EXPORT_SYMBOL_GPL vmlinux 0xc480eb84 appldata_diag EXPORT_SYMBOL_GPL vmlinux 0xc4810203 nr_iowait EXPORT_SYMBOL_GPL vmlinux 0xc48f7eb5 is_binary_blacklisted -EXPORT_SYMBOL_GPL vmlinux 0xc494283a blk_mq_sched_try_insert_merge EXPORT_SYMBOL_GPL vmlinux 0xc4a31146 rdma_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xc4be0396 rtnl_put_cacheinfo +EXPORT_SYMBOL_GPL vmlinux 0xc4b10c0b tracing_snapshot_cond_disable EXPORT_SYMBOL_GPL vmlinux 0xc4c9c75a synth_event_cmd_init +EXPORT_SYMBOL_GPL vmlinux 0xc4d62a9d __blkg_prfill_u64 +EXPORT_SYMBOL_GPL vmlinux 0xc4eba30e gpiochip_line_is_open_source EXPORT_SYMBOL_GPL vmlinux 0xc4f0da12 ktime_get_with_offset -EXPORT_SYMBOL_GPL vmlinux 0xc5184792 disk_force_media_change +EXPORT_SYMBOL_GPL vmlinux 0xc50d2422 devlink_port_attrs_pci_sf_set +EXPORT_SYMBOL_GPL vmlinux 0xc510b9dd pci_epc_stop EXPORT_SYMBOL_GPL vmlinux 0xc5256164 __xas_next -EXPORT_SYMBOL_GPL vmlinux 0xc5263ea2 __irq_set_handler -EXPORT_SYMBOL_GPL vmlinux 0xc5277ee2 pci_user_write_config_byte -EXPORT_SYMBOL_GPL vmlinux 0xc5330484 tpm2_flush_context -EXPORT_SYMBOL_GPL vmlinux 0xc539c4cd nf_checksum_partial -EXPORT_SYMBOL_GPL vmlinux 0xc53b339a serdev_controller_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc52b4b21 __vring_new_virtqueue EXPORT_SYMBOL_GPL vmlinux 0xc53ba24f atomic_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xc53bd7a0 security_path_truncate EXPORT_SYMBOL_GPL vmlinux 0xc53cd7e4 ima_measure_critical_data +EXPORT_SYMBOL_GPL vmlinux 0xc53efd43 device_initialize +EXPORT_SYMBOL_GPL vmlinux 0xc56c0f6f iommu_attach_group EXPORT_SYMBOL_GPL vmlinux 0xc575c737 debug_locks_off -EXPORT_SYMBOL_GPL vmlinux 0xc5847758 irq_chip_set_vcpu_affinity_parent -EXPORT_SYMBOL_GPL vmlinux 0xc59532a9 pci_epc_stop -EXPORT_SYMBOL_GPL vmlinux 0xc5a89f93 fl6_merge_options -EXPORT_SYMBOL_GPL vmlinux 0xc5ce90e6 crypto_stats_akcipher_verify -EXPORT_SYMBOL_GPL vmlinux 0xc5e6fbd3 kstrdup_quotable_file -EXPORT_SYMBOL_GPL vmlinux 0xc5f7439e crypto_stats_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0xc5793731 fwnode_get_named_gpiod +EXPORT_SYMBOL_GPL vmlinux 0xc586a195 __synth_event_gen_cmd_start +EXPORT_SYMBOL_GPL vmlinux 0xc5950049 crypto_unregister_algs +EXPORT_SYMBOL_GPL vmlinux 0xc5988570 kvm_vcpu_gfn_to_pfn_atomic +EXPORT_SYMBOL_GPL vmlinux 0xc5cae6e3 iommu_group_add_device +EXPORT_SYMBOL_GPL vmlinux 0xc5cf6870 class_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xc5fe8add crypto_mod_get +EXPORT_SYMBOL_GPL vmlinux 0xc602d2d1 __clocksource_register_scale +EXPORT_SYMBOL_GPL vmlinux 0xc60e3935 devm_kstrdup EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier -EXPORT_SYMBOL_GPL vmlinux 0xc63a7f98 pci_ats_supported -EXPORT_SYMBOL_GPL vmlinux 0xc64af013 udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xc61c2265 cookie_tcp_reqsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc62e2dc6 cpu_subsys EXPORT_SYMBOL_GPL vmlinux 0xc662ecda __tracepoint_br_fdb_external_learn_add EXPORT_SYMBOL_GPL vmlinux 0xc66b77b1 iommu_group_set_iommudata +EXPORT_SYMBOL_GPL vmlinux 0xc6729bbf tpm_pcr_extend EXPORT_SYMBOL_GPL vmlinux 0xc672a391 irq_work_sync +EXPORT_SYMBOL_GPL vmlinux 0xc673e23e relay_subbufs_consumed +EXPORT_SYMBOL_GPL vmlinux 0xc675610a dev_nit_active EXPORT_SYMBOL_GPL vmlinux 0xc6779093 ring_buffer_record_enable -EXPORT_SYMBOL_GPL vmlinux 0xc699eac8 gmap_unregister_pte_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc691bcfa serdev_device_write EXPORT_SYMBOL_GPL vmlinux 0xc69b7ee5 zs_destroy_pool -EXPORT_SYMBOL_GPL vmlinux 0xc69ea034 screen_pos -EXPORT_SYMBOL_GPL vmlinux 0xc6ba7217 put_pid -EXPORT_SYMBOL_GPL vmlinux 0xc6c163b3 bus_remove_file -EXPORT_SYMBOL_GPL vmlinux 0xc6d16d6f s390_reset_acc -EXPORT_SYMBOL_GPL vmlinux 0xc6e3b2e4 fat_getattr -EXPORT_SYMBOL_GPL vmlinux 0xc6ecb5dd xdp_build_skb_from_frame -EXPORT_SYMBOL_GPL vmlinux 0xc6f0c80d kvm_vcpu_map -EXPORT_SYMBOL_GPL vmlinux 0xc6f94124 pci_load_saved_state -EXPORT_SYMBOL_GPL vmlinux 0xc6fce1e4 tty_set_ldisc +EXPORT_SYMBOL_GPL vmlinux 0xc6a53348 dev_xdp_prog_count +EXPORT_SYMBOL_GPL vmlinux 0xc6a7b781 xfrm_audit_state_notfound +EXPORT_SYMBOL_GPL vmlinux 0xc6a8b023 kvm_vcpu_write_guest_page +EXPORT_SYMBOL_GPL vmlinux 0xc6e1a093 eventfd_fget +EXPORT_SYMBOL_GPL vmlinux 0xc6e720c6 nf_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0xc6f83b20 tcp_unregister_ulp +EXPORT_SYMBOL_GPL vmlinux 0xc6fceb21 crypto_unregister_shashes +EXPORT_SYMBOL_GPL vmlinux 0xc70ee7f7 driver_attach EXPORT_SYMBOL_GPL vmlinux 0xc71e64a9 snmp_get_cpu_field -EXPORT_SYMBOL_GPL vmlinux 0xc7389216 fscrypt_get_symlink -EXPORT_SYMBOL_GPL vmlinux 0xc7427175 generic_device_group +EXPORT_SYMBOL_GPL vmlinux 0xc7400bdd synth_event_add_next_val EXPORT_SYMBOL_GPL vmlinux 0xc755c93f trace_handle_return -EXPORT_SYMBOL_GPL vmlinux 0xc75ce6c9 relay_close -EXPORT_SYMBOL_GPL vmlinux 0xc76e458c inet6_sk_rebuild_header -EXPORT_SYMBOL_GPL vmlinux 0xc7701484 iommu_get_domain_for_dev -EXPORT_SYMBOL_GPL vmlinux 0xc7713de6 __blk_req_zone_write_lock +EXPORT_SYMBOL_GPL vmlinux 0xc7744a07 ip6_datagram_recv_ctl +EXPORT_SYMBOL_GPL vmlinux 0xc77a499c blk_req_needs_zone_write_lock +EXPORT_SYMBOL_GPL vmlinux 0xc782b207 exportfs_decode_fh +EXPORT_SYMBOL_GPL vmlinux 0xc78ba2f2 kernfs_find_and_get_ns +EXPORT_SYMBOL_GPL vmlinux 0xc78d0a8d fwnode_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xc79ad5e8 badblocks_exit EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch -EXPORT_SYMBOL_GPL vmlinux 0xc7cadd5b fuse_send_init +EXPORT_SYMBOL_GPL vmlinux 0xc7e58d8e gpiochip_is_requested EXPORT_SYMBOL_GPL vmlinux 0xc7e64fc2 asn1_encode_integer EXPORT_SYMBOL_GPL vmlinux 0xc7fa4aa9 kobj_ns_drop EXPORT_SYMBOL_GPL vmlinux 0xc80acfca chsc_sadc +EXPORT_SYMBOL_GPL vmlinux 0xc80d0c0b scsi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xc810fddd dax_copy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0xc81fb0a8 pci_epf_unbind EXPORT_SYMBOL_GPL vmlinux 0xc824f9d8 __i2c_board_lock -EXPORT_SYMBOL_GPL vmlinux 0xc8257f46 ccw_device_get_cssid EXPORT_SYMBOL_GPL vmlinux 0xc82c721f klist_remove -EXPORT_SYMBOL_GPL vmlinux 0xc882ac01 fsnotify_alloc_user_group -EXPORT_SYMBOL_GPL vmlinux 0xc88d83de blk_revalidate_disk_zones -EXPORT_SYMBOL_GPL vmlinux 0xc8a37f29 crypto_hash_alg_has_setkey -EXPORT_SYMBOL_GPL vmlinux 0xc8b307dc cio_disable_subchannel +EXPORT_SYMBOL_GPL vmlinux 0xc83925fe security_path_link +EXPORT_SYMBOL_GPL vmlinux 0xc859260a ping_queue_rcv_skb +EXPORT_SYMBOL_GPL vmlinux 0xc86b784b __traceiter_neigh_update +EXPORT_SYMBOL_GPL vmlinux 0xc8937a21 inet6_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0xc8982efc skb_mpls_pop +EXPORT_SYMBOL_GPL vmlinux 0xc89bfb86 crypto_unregister_aeads +EXPORT_SYMBOL_GPL vmlinux 0xc89e700b xdp_return_frame +EXPORT_SYMBOL_GPL vmlinux 0xc8b790c9 kvm_is_visible_gfn +EXPORT_SYMBOL_GPL vmlinux 0xc8ca5954 pci_hp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0xc8d671b5 kvm_read_guest EXPORT_SYMBOL_GPL vmlinux 0xc8ddd5b5 kstrdup_quotable -EXPORT_SYMBOL_GPL vmlinux 0xc90a201c irq_domain_pop_irq -EXPORT_SYMBOL_GPL vmlinux 0xc90b9938 debugfs_real_fops -EXPORT_SYMBOL_GPL vmlinux 0xc914ae3e find_vpid +EXPORT_SYMBOL_GPL vmlinux 0xc903d939 gpiod_set_debounce +EXPORT_SYMBOL_GPL vmlinux 0xc904de39 fwnode_count_parents EXPORT_SYMBOL_GPL vmlinux 0xc91fdf58 percpu_ref_is_zero -EXPORT_SYMBOL_GPL vmlinux 0xc92119b1 add_to_page_cache_lru -EXPORT_SYMBOL_GPL vmlinux 0xc92edfe0 ping_bind -EXPORT_SYMBOL_GPL vmlinux 0xc94e0619 component_bind_all EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist +EXPORT_SYMBOL_GPL vmlinux 0xc97331f6 __pci_hp_initialize +EXPORT_SYMBOL_GPL vmlinux 0xc973a821 trace_array_destroy EXPORT_SYMBOL_GPL vmlinux 0xc9827693 __bpf_call_base -EXPORT_SYMBOL_GPL vmlinux 0xc9864e04 skb_complete_tx_timestamp -EXPORT_SYMBOL_GPL vmlinux 0xc9ea0c66 dev_set_name +EXPORT_SYMBOL_GPL vmlinux 0xc9847e1b devm_free_percpu +EXPORT_SYMBOL_GPL vmlinux 0xc988cdb8 inet6_destroy_sock +EXPORT_SYMBOL_GPL vmlinux 0xc98d5b8b rcu_read_unlock_trace_special +EXPORT_SYMBOL_GPL vmlinux 0xc9c8718a fuse_conn_put +EXPORT_SYMBOL_GPL vmlinux 0xc9d6f518 __traceiter_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0xc9ddedad blk_trace_remove EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu -EXPORT_SYMBOL_GPL vmlinux 0xca032797 fat_scan -EXPORT_SYMBOL_GPL vmlinux 0xca08e947 securityfs_remove -EXPORT_SYMBOL_GPL vmlinux 0xca11aceb devm_platform_get_and_ioremap_resource -EXPORT_SYMBOL_GPL vmlinux 0xca121810 md_bitmap_copy_from_slot +EXPORT_SYMBOL_GPL vmlinux 0xc9f98685 blk_revalidate_disk_zones EXPORT_SYMBOL_GPL vmlinux 0xca2496fd ftrace_ops_set_global_filter +EXPORT_SYMBOL_GPL vmlinux 0xca281154 pci_set_host_bridge_release +EXPORT_SYMBOL_GPL vmlinux 0xca3f2811 iommu_map EXPORT_SYMBOL_GPL vmlinux 0xca454a34 vt_get_leds -EXPORT_SYMBOL_GPL vmlinux 0xca4f4dcc sock_diag_unregister EXPORT_SYMBOL_GPL vmlinux 0xca541308 trusted_tpm_send +EXPORT_SYMBOL_GPL vmlinux 0xca645d1d device_property_read_u16_array EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop -EXPORT_SYMBOL_GPL vmlinux 0xca8b46c9 bio_associate_blkg_from_css -EXPORT_SYMBOL_GPL vmlinux 0xca8f83ba irq_chip_enable_parent +EXPORT_SYMBOL_GPL vmlinux 0xca87d58e crypto_ahash_setkey EXPORT_SYMBOL_GPL vmlinux 0xca9a1d5e ring_buffer_free -EXPORT_SYMBOL_GPL vmlinux 0xca9c2fb4 blk_mq_unquiesce_queue +EXPORT_SYMBOL_GPL vmlinux 0xcab0a9b7 enable_cmf +EXPORT_SYMBOL_GPL vmlinux 0xcabd100c fib_rules_seq_read +EXPORT_SYMBOL_GPL vmlinux 0xcac18710 tty_port_link_device +EXPORT_SYMBOL_GPL vmlinux 0xcac7ee74 kvm_read_guest_page EXPORT_SYMBOL_GPL vmlinux 0xcad29180 pci_epc_get_next_free_bar -EXPORT_SYMBOL_GPL vmlinux 0xcaf434bb tty_port_tty_wakeup -EXPORT_SYMBOL_GPL vmlinux 0xcb1e222f iomap_releasepage -EXPORT_SYMBOL_GPL vmlinux 0xcb280e8e dw_pcie_write_dbi -EXPORT_SYMBOL_GPL vmlinux 0xcb43ecb5 rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcad62501 fb_deferred_io_init +EXPORT_SYMBOL_GPL vmlinux 0xcb08b14f fl6_merge_options +EXPORT_SYMBOL_GPL vmlinux 0xcb0d45e5 inet6_sk_rebuild_header +EXPORT_SYMBOL_GPL vmlinux 0xcb0fe95c kill_dev_dax +EXPORT_SYMBOL_GPL vmlinux 0xcb260145 ipv6_proxy_select_ident +EXPORT_SYMBOL_GPL vmlinux 0xcb3b24cc pci_epc_put EXPORT_SYMBOL_GPL vmlinux 0xcb561441 mem_dump_obj -EXPORT_SYMBOL_GPL vmlinux 0xcb675e58 kvm_s390_gisc_register -EXPORT_SYMBOL_GPL vmlinux 0xcb6ba659 umd_unload_blob -EXPORT_SYMBOL_GPL vmlinux 0xcb7a35fb blkg_conf_prep -EXPORT_SYMBOL_GPL vmlinux 0xcb80db7d blk_mq_sched_mark_restart_hctx -EXPORT_SYMBOL_GPL vmlinux 0xcb8a32c6 iomap_page_mkwrite -EXPORT_SYMBOL_GPL vmlinux 0xcb9cd971 device_change_owner -EXPORT_SYMBOL_GPL vmlinux 0xcbad1757 pci_hp_deregister -EXPORT_SYMBOL_GPL vmlinux 0xcbc055e3 unix_peer_get +EXPORT_SYMBOL_GPL vmlinux 0xcb7b77ca scsi_target_block +EXPORT_SYMBOL_GPL vmlinux 0xcba9cf2e gmap_shadow_r2t +EXPORT_SYMBOL_GPL vmlinux 0xcbb01493 rtnl_register_module +EXPORT_SYMBOL_GPL vmlinux 0xcbc1a298 pci_msi_create_irq_domain +EXPORT_SYMBOL_GPL vmlinux 0xcbd4aaf0 pci_find_next_ht_capability EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages -EXPORT_SYMBOL_GPL vmlinux 0xcbe7a452 arch_make_page_accessible -EXPORT_SYMBOL_GPL vmlinux 0xcbeddb0f pci_epc_map_msi_irq -EXPORT_SYMBOL_GPL vmlinux 0xcc1dd7bd dst_blackhole_redirect +EXPORT_SYMBOL_GPL vmlinux 0xcbecd3c6 switchdev_handle_fdb_del_to_device +EXPORT_SYMBOL_GPL vmlinux 0xcbf092fb hvc_instantiate +EXPORT_SYMBOL_GPL vmlinux 0xcbf3745e fat_update_time +EXPORT_SYMBOL_GPL vmlinux 0xcc0b3f02 pci_epc_mem_exit +EXPORT_SYMBOL_GPL vmlinux 0xcc1c42de tcp_ca_openreq_child +EXPORT_SYMBOL_GPL vmlinux 0xcc1ceb90 device_match_any EXPORT_SYMBOL_GPL vmlinux 0xcc29e05e irq_set_affinity EXPORT_SYMBOL_GPL vmlinux 0xcc2dbfd8 irq_domain_check_msi_remap +EXPORT_SYMBOL_GPL vmlinux 0xcc381b44 devlink_port_param_driverinit_value_set +EXPORT_SYMBOL_GPL vmlinux 0xcc3de106 ip6_route_output_flags_noref +EXPORT_SYMBOL_GPL vmlinux 0xcc3e282a bpf_trace_run9 EXPORT_SYMBOL_GPL vmlinux 0xcc3f54e5 net_rwsem -EXPORT_SYMBOL_GPL vmlinux 0xcc47e09e br_ip6_fragment -EXPORT_SYMBOL_GPL vmlinux 0xcc54c378 gmap_make_secure -EXPORT_SYMBOL_GPL vmlinux 0xcc587296 fuse_free_conn -EXPORT_SYMBOL_GPL vmlinux 0xcc672f0d __mnt_drop_write -EXPORT_SYMBOL_GPL vmlinux 0xcc752ced pci_vpd_alloc +EXPORT_SYMBOL_GPL vmlinux 0xcc6755fc bus_for_each_drv +EXPORT_SYMBOL_GPL vmlinux 0xcc768339 __fscrypt_encrypt_symlink +EXPORT_SYMBOL_GPL vmlinux 0xcc91840f __ndisc_fill_addr_option EXPORT_SYMBOL_GPL vmlinux 0xcc935375 walk_iomem_res_desc -EXPORT_SYMBOL_GPL vmlinux 0xcc954bef ima_file_hash -EXPORT_SYMBOL_GPL vmlinux 0xccad420a fsverity_verify_page -EXPORT_SYMBOL_GPL vmlinux 0xccadaaae __vfs_setxattr_noperm -EXPORT_SYMBOL_GPL vmlinux 0xccb04243 pci_proc_domain -EXPORT_SYMBOL_GPL vmlinux 0xccc2f6be dax_copy_from_iter -EXPORT_SYMBOL_GPL vmlinux 0xccd300b9 fscrypt_prepare_new_inode +EXPORT_SYMBOL_GPL vmlinux 0xcc970b14 crypto_comp_decompress +EXPORT_SYMBOL_GPL vmlinux 0xccb6471c __netdev_watchdog_up +EXPORT_SYMBOL_GPL vmlinux 0xccd0e811 class_interface_register +EXPORT_SYMBOL_GPL vmlinux 0xcce0ffa8 bio_associate_blkg EXPORT_SYMBOL_GPL vmlinux 0xccf52bc9 sfp_upstream_start -EXPORT_SYMBOL_GPL vmlinux 0xccfa5ba3 device_remove_file_self -EXPORT_SYMBOL_GPL vmlinux 0xccfcb7ea irq_domain_free_irqs_parent -EXPORT_SYMBOL_GPL vmlinux 0xcd0e6782 kthread_unuse_mm -EXPORT_SYMBOL_GPL vmlinux 0xcd1c10c6 register_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0xcd24334b skcipher_register_instance EXPORT_SYMBOL_GPL vmlinux 0xcd24e146 hash_digest_size -EXPORT_SYMBOL_GPL vmlinux 0xcd29b131 iomap_migrate_page -EXPORT_SYMBOL_GPL vmlinux 0xcd375bb5 get_kernel_pages +EXPORT_SYMBOL_GPL vmlinux 0xcd437699 device_for_each_child_reverse +EXPORT_SYMBOL_GPL vmlinux 0xcd614ba4 debugfs_create_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xcd61575b fuse_free_conn +EXPORT_SYMBOL_GPL vmlinux 0xcd6e1bea udp_init_sock EXPORT_SYMBOL_GPL vmlinux 0xcd6f2dc9 nf_log_buf_add +EXPORT_SYMBOL_GPL vmlinux 0xcd7b621d __traceiter_tcp_bad_csum +EXPORT_SYMBOL_GPL vmlinux 0xcd810750 gpiod_get_raw_value EXPORT_SYMBOL_GPL vmlinux 0xcd91b127 system_highpri_wq EXPORT_SYMBOL_GPL vmlinux 0xcd974f00 rcu_all_qs -EXPORT_SYMBOL_GPL vmlinux 0xcd997805 __vfs_setxattr_locked EXPORT_SYMBOL_GPL vmlinux 0xcd9cd2ff wakeme_after_rcu +EXPORT_SYMBOL_GPL vmlinux 0xcdab554b pci_dev_run_wake EXPORT_SYMBOL_GPL vmlinux 0xcdb6adcc ras_userspace_consumers EXPORT_SYMBOL_GPL vmlinux 0xcdbe89be synth_event_add_field_str -EXPORT_SYMBOL_GPL vmlinux 0xcdc51ee3 posix_acl_create EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs -EXPORT_SYMBOL_GPL vmlinux 0xce1da74c devlink_trap_groups_register -EXPORT_SYMBOL_GPL vmlinux 0xce4086b4 linear_hugepage_index +EXPORT_SYMBOL_GPL vmlinux 0xcdd5bf34 __traceiter_pelt_rt_tp +EXPORT_SYMBOL_GPL vmlinux 0xcde10a0b class_compat_create_link +EXPORT_SYMBOL_GPL vmlinux 0xcdea3c06 gpiod_set_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xce0bdeea dma_buf_attach +EXPORT_SYMBOL_GPL vmlinux 0xce2bf4db vfs_getxattr_alloc EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching -EXPORT_SYMBOL_GPL vmlinux 0xce73cdeb cgroup_attach_task_all -EXPORT_SYMBOL_GPL vmlinux 0xce8f126a pci_find_next_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0xce853047 iommu_device_register +EXPORT_SYMBOL_GPL vmlinux 0xcea12286 badblocks_clear EXPORT_SYMBOL_GPL vmlinux 0xcea41753 __hrtimer_get_remaining -EXPORT_SYMBOL_GPL vmlinux 0xcea9527f class_compat_create_link -EXPORT_SYMBOL_GPL vmlinux 0xcebd1701 devm_pci_epc_destroy EXPORT_SYMBOL_GPL vmlinux 0xcec30dad __traceiter_sched_overutilized_tp -EXPORT_SYMBOL_GPL vmlinux 0xceca992a scsi_get_vpd_page +EXPORT_SYMBOL_GPL vmlinux 0xcecf2a65 irq_chip_set_wake_parent +EXPORT_SYMBOL_GPL vmlinux 0xceea4e7c vp_modern_map_vq_notify +EXPORT_SYMBOL_GPL vmlinux 0xcef8ddd4 tty_port_default_client_ops EXPORT_SYMBOL_GPL vmlinux 0xcf0afbfb copy_to_user_nofault -EXPORT_SYMBOL_GPL vmlinux 0xcf18e853 gpiochip_disable_irq -EXPORT_SYMBOL_GPL vmlinux 0xcf1c0655 vring_del_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0xcf10cdb9 dm_device_name +EXPORT_SYMBOL_GPL vmlinux 0xcf13e9ec skb_mpls_update_lse EXPORT_SYMBOL_GPL vmlinux 0xcf28f55e trace_clock_global -EXPORT_SYMBOL_GPL vmlinux 0xcf6d3207 report_iommu_fault -EXPORT_SYMBOL_GPL vmlinux 0xcf7ba969 __fscrypt_prepare_rename -EXPORT_SYMBOL_GPL vmlinux 0xcf91641f vfs_submount -EXPORT_SYMBOL_GPL vmlinux 0xcf9204bf sysfs_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0xcf5b9aaa sk_setup_caps +EXPORT_SYMBOL_GPL vmlinux 0xcf6ddeb5 dm_internal_suspend_fast EXPORT_SYMBOL_GPL vmlinux 0xcfaeadaf klist_add_head EXPORT_SYMBOL_GPL vmlinux 0xcfc5108a devlink_fmsg_u8_pair_put EXPORT_SYMBOL_GPL vmlinux 0xcfc7b4e4 rcu_barrier_tasks_trace -EXPORT_SYMBOL_GPL vmlinux 0xcfe7f430 n_tty_inherit_ops -EXPORT_SYMBOL_GPL vmlinux 0xcfea365b crypto_ahash_setkey -EXPORT_SYMBOL_GPL vmlinux 0xcff53dae crypto_grab_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xd001442d perf_event_sysfs_show 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 +EXPORT_SYMBOL_GPL vmlinux 0xd0582497 platform_irq_count +EXPORT_SYMBOL_GPL vmlinux 0xd0631fad tracing_cond_snapshot_data EXPORT_SYMBOL_GPL vmlinux 0xd06524ba raw_notifier_chain_unregister EXPORT_SYMBOL_GPL vmlinux 0xd067d3c5 system_freezable_power_efficient_wq -EXPORT_SYMBOL_GPL vmlinux 0xd06cb683 irq_create_of_mapping -EXPORT_SYMBOL_GPL vmlinux 0xd06fb1d0 strp_init -EXPORT_SYMBOL_GPL vmlinux 0xd09be19b debugfs_attr_read +EXPORT_SYMBOL_GPL vmlinux 0xd0771732 exportfs_decode_fh_raw +EXPORT_SYMBOL_GPL vmlinux 0xd0890f76 fwnode_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0xd0a88446 irq_domain_add_legacy EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart EXPORT_SYMBOL_GPL vmlinux 0xd0cb3ff4 look_up_OID -EXPORT_SYMBOL_GPL vmlinux 0xd0d1a6b0 crypto_enqueue_request_head -EXPORT_SYMBOL_GPL vmlinux 0xd0d32c74 nd_tbl -EXPORT_SYMBOL_GPL vmlinux 0xd0da335d uprobe_register_refctr EXPORT_SYMBOL_GPL vmlinux 0xd0db0f12 run_dax -EXPORT_SYMBOL_GPL vmlinux 0xd0e4d6e3 public_key_subtype -EXPORT_SYMBOL_GPL vmlinux 0xd0ff2760 metadata_dst_alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0xd121c8aa devlink_param_driverinit_value_set +EXPORT_SYMBOL_GPL vmlinux 0xd0ed93b8 dma_buf_pin +EXPORT_SYMBOL_GPL vmlinux 0xd0fc7bbc gfn_to_memslot +EXPORT_SYMBOL_GPL vmlinux 0xd10e29d0 compat_only_sysfs_link_entry_to_kobj +EXPORT_SYMBOL_GPL vmlinux 0xd1157d0e __traceiter_detach_device_from_domain EXPORT_SYMBOL_GPL vmlinux 0xd1481de7 mpi_clear -EXPORT_SYMBOL_GPL vmlinux 0xd1511d78 register_net_sysctl +EXPORT_SYMBOL_GPL vmlinux 0xd1547a01 debugfs_attr_read EXPORT_SYMBOL_GPL vmlinux 0xd159586c net_prio_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xd15b8ce0 scsi_host_busy_iter +EXPORT_SYMBOL_GPL vmlinux 0xd16a6300 con_debug_enter EXPORT_SYMBOL_GPL vmlinux 0xd16a8cef __tracepoint_add_device_to_group -EXPORT_SYMBOL_GPL vmlinux 0xd16ee5b5 fsverity_ioctl_enable EXPORT_SYMBOL_GPL vmlinux 0xd1a9ca15 __SCK__tp_func_neigh_update -EXPORT_SYMBOL_GPL vmlinux 0xd1be2831 kvm_set_memory_region +EXPORT_SYMBOL_GPL vmlinux 0xd1bddc79 devlink_rate_leaf_destroy EXPORT_SYMBOL_GPL vmlinux 0xd1cbc23c add_timer_on -EXPORT_SYMBOL_GPL vmlinux 0xd1def0ce bpf_sk_storage_diag_put +EXPORT_SYMBOL_GPL vmlinux 0xd1e42c20 device_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0xd1e54339 sched_trace_cfs_rq_path EXPORT_SYMBOL_GPL vmlinux 0xd1f2eee2 nf_logger_find_get -EXPORT_SYMBOL_GPL vmlinux 0xd1fc3744 synth_event_trace_end EXPORT_SYMBOL_GPL vmlinux 0xd2073226 pkcs7_free_message +EXPORT_SYMBOL_GPL vmlinux 0xd20a8b27 fib_info_nh_uses_dev +EXPORT_SYMBOL_GPL vmlinux 0xd20e6859 synth_event_trace_end +EXPORT_SYMBOL_GPL vmlinux 0xd214e7dc tty_port_register_device_attr 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 0xd22f71aa alloc_page_buffers -EXPORT_SYMBOL_GPL vmlinux 0xd23f6e2c md_run -EXPORT_SYMBOL_GPL vmlinux 0xd254a19a crypto_shash_final +EXPORT_SYMBOL_GPL vmlinux 0xd22f1878 __auxiliary_driver_register +EXPORT_SYMBOL_GPL vmlinux 0xd24c8011 devlink_region_snapshot_id_get +EXPORT_SYMBOL_GPL vmlinux 0xd2561aed cio_halt EXPORT_SYMBOL_GPL vmlinux 0xd260af0d ring_buffer_write -EXPORT_SYMBOL_GPL vmlinux 0xd2644e59 relay_file_operations -EXPORT_SYMBOL_GPL vmlinux 0xd270c251 disk_uevent +EXPORT_SYMBOL_GPL vmlinux 0xd2611400 pci_ignore_hotplug +EXPORT_SYMBOL_GPL vmlinux 0xd26c9fee dax_iomap_rw EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative -EXPORT_SYMBOL_GPL vmlinux 0xd2c63cb7 __netdev_watchdog_up +EXPORT_SYMBOL_GPL vmlinux 0xd27e22d4 skcipher_walk_async +EXPORT_SYMBOL_GPL vmlinux 0xd28e71da nf_hook_entries_delete_raw +EXPORT_SYMBOL_GPL vmlinux 0xd2ac8934 __udp_gso_segment +EXPORT_SYMBOL_GPL vmlinux 0xd2cae257 dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0xd2d6cfcc tty_init_termios EXPORT_SYMBOL_GPL vmlinux 0xd2e79416 cpu_bit_bitmap +EXPORT_SYMBOL_GPL vmlinux 0xd2ede95d sock_prot_inuse_add EXPORT_SYMBOL_GPL vmlinux 0xd3034428 __wake_up_locked_key -EXPORT_SYMBOL_GPL vmlinux 0xd310ff41 sched_set_fifo_low EXPORT_SYMBOL_GPL vmlinux 0xd31a2ac5 ring_buffer_oldest_event_ts +EXPORT_SYMBOL_GPL vmlinux 0xd31bd75e sk_msg_memcopy_from_iter EXPORT_SYMBOL_GPL vmlinux 0xd3243ae8 mpi_read_raw_data -EXPORT_SYMBOL_GPL vmlinux 0xd331351a pci_hp_destroy -EXPORT_SYMBOL_GPL vmlinux 0xd33c9b25 kvm_vcpu_destroy -EXPORT_SYMBOL_GPL vmlinux 0xd36980de page_mkclean -EXPORT_SYMBOL_GPL vmlinux 0xd36f3f99 pci_find_host_bridge -EXPORT_SYMBOL_GPL vmlinux 0xd36f74af blk_add_driver_data +EXPORT_SYMBOL_GPL vmlinux 0xd32a11c9 md_kick_rdev_from_array +EXPORT_SYMBOL_GPL vmlinux 0xd3446615 iommu_group_get +EXPORT_SYMBOL_GPL vmlinux 0xd34e6f3d kvm_vcpu_read_guest +EXPORT_SYMBOL_GPL vmlinux 0xd3558241 __pneigh_lookup +EXPORT_SYMBOL_GPL vmlinux 0xd358fa5a dma_mmap_pages EXPORT_SYMBOL_GPL vmlinux 0xd39e9848 put_itimerspec64 -EXPORT_SYMBOL_GPL vmlinux 0xd3b8d77d kthread_cancel_work_sync -EXPORT_SYMBOL_GPL vmlinux 0xd3d657e7 ip_icmp_error_rfc4884 -EXPORT_SYMBOL_GPL vmlinux 0xd3dd8096 devlink_port_params_register -EXPORT_SYMBOL_GPL vmlinux 0xd3e63261 css_sch_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd3af39df pci_debug_msg_id +EXPORT_SYMBOL_GPL vmlinux 0xd3b0736a gpiochip_populate_parent_fwspec_fourcell EXPORT_SYMBOL_GPL vmlinux 0xd3f0cd42 misc_cg_res_total_usage -EXPORT_SYMBOL_GPL vmlinux 0xd3f5621c is_software_node -EXPORT_SYMBOL_GPL vmlinux 0xd3fd2664 sbitmap_show -EXPORT_SYMBOL_GPL vmlinux 0xd3fe0836 scsi_host_complete_all_commands EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq -EXPORT_SYMBOL_GPL vmlinux 0xd41949ef trace_event_raw_init +EXPORT_SYMBOL_GPL vmlinux 0xd404a12c crypto_stats_skcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0xd40eb58f firmware_request_nowarn +EXPORT_SYMBOL_GPL vmlinux 0xd413905a class_find_device EXPORT_SYMBOL_GPL vmlinux 0xd42f1d4e show_rcu_tasks_rude_gp_kthread -EXPORT_SYMBOL_GPL vmlinux 0xd4416777 driver_remove_file -EXPORT_SYMBOL_GPL vmlinux 0xd459db5f kernfs_get -EXPORT_SYMBOL_GPL vmlinux 0xd46122ce trace_array_destroy -EXPORT_SYMBOL_GPL vmlinux 0xd48fa1cf device_set_node +EXPORT_SYMBOL_GPL vmlinux 0xd48ca6b8 crypto_alloc_tfm_node EXPORT_SYMBOL_GPL vmlinux 0xd4935851 __SCK__tp_func_suspend_resume -EXPORT_SYMBOL_GPL vmlinux 0xd4a2dd28 relay_late_setup_files EXPORT_SYMBOL_GPL vmlinux 0xd4b6157e devlink_health_reporter_recovery_done -EXPORT_SYMBOL_GPL vmlinux 0xd4bee253 devlink_region_create EXPORT_SYMBOL_GPL vmlinux 0xd4bf483c inet_peer_base_init -EXPORT_SYMBOL_GPL vmlinux 0xd4c04db1 ip_route_output_tunnel EXPORT_SYMBOL_GPL vmlinux 0xd4c14632 system_unbound_wq +EXPORT_SYMBOL_GPL vmlinux 0xd4c5d3ac __traceiter_devlink_hwerr EXPORT_SYMBOL_GPL vmlinux 0xd4cbdbe3 __SCK__tp_func_devlink_trap_report -EXPORT_SYMBOL_GPL vmlinux 0xd520a839 blk_poll -EXPORT_SYMBOL_GPL vmlinux 0xd5388594 sysfs_remove_group -EXPORT_SYMBOL_GPL vmlinux 0xd53c2b4f __serdev_device_driver_register +EXPORT_SYMBOL_GPL vmlinux 0xd50edc70 scsi_unregister_device_handler +EXPORT_SYMBOL_GPL vmlinux 0xd50f6a9a pci_dev_trylock +EXPORT_SYMBOL_GPL vmlinux 0xd52cb53b device_store_ulong +EXPORT_SYMBOL_GPL vmlinux 0xd5498e5a bus_find_device +EXPORT_SYMBOL_GPL vmlinux 0xd54e507e driver_deferred_probe_check_state +EXPORT_SYMBOL_GPL vmlinux 0xd555a733 pcie_aspm_capable EXPORT_SYMBOL_GPL vmlinux 0xd55ad93b iommu_group_get_iommudata -EXPORT_SYMBOL_GPL vmlinux 0xd58d799c fuse_conn_init -EXPORT_SYMBOL_GPL vmlinux 0xd5a33828 cio_update_schib +EXPORT_SYMBOL_GPL vmlinux 0xd572822c cpci_hp_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0xd594e85f disk_update_readahead EXPORT_SYMBOL_GPL vmlinux 0xd5be4b47 proc_dou8vec_minmax -EXPORT_SYMBOL_GPL vmlinux 0xd5c09fa9 d_walk -EXPORT_SYMBOL_GPL vmlinux 0xd5d3d4dd bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd5ce2e15 get_net_ns_by_fd +EXPORT_SYMBOL_GPL vmlinux 0xd5e21a44 gpiod_direction_output_raw +EXPORT_SYMBOL_GPL vmlinux 0xd5f1263a fscrypt_set_test_dummy_encryption EXPORT_SYMBOL_GPL vmlinux 0xd5f5d0ef pkcs7_get_content_data -EXPORT_SYMBOL_GPL vmlinux 0xd6346dd8 msg_zerocopy_realloc -EXPORT_SYMBOL_GPL vmlinux 0xd6373437 debugfs_create_atomic_t EXPORT_SYMBOL_GPL vmlinux 0xd64ed259 __memcat_p EXPORT_SYMBOL_GPL vmlinux 0xd653b126 sched_clock +EXPORT_SYMBOL_GPL vmlinux 0xd671a12c fat_get_dotdot_entry EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget -EXPORT_SYMBOL_GPL vmlinux 0xd67d2000 crypto_shash_update -EXPORT_SYMBOL_GPL vmlinux 0xd68a2184 scm_driver_register -EXPORT_SYMBOL_GPL vmlinux 0xd6af4d83 gpiochip_request_own_desc -EXPORT_SYMBOL_GPL vmlinux 0xd6c4a4d6 pin_user_pages_fast -EXPORT_SYMBOL_GPL vmlinux 0xd6d4ff62 badblocks_init -EXPORT_SYMBOL_GPL vmlinux 0xd6d687d0 iomap_bmap -EXPORT_SYMBOL_GPL vmlinux 0xd6d6bc68 generic_fsdax_supported -EXPORT_SYMBOL_GPL vmlinux 0xd7241ed1 switchdev_handle_fdb_del_to_device +EXPORT_SYMBOL_GPL vmlinux 0xd67f25b3 virtqueue_disable_cb +EXPORT_SYMBOL_GPL vmlinux 0xd686136c xdp_rxq_info_reg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0xd6990f4e __fib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xd6a2093e __mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0xd6d40602 posix_acl_access_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0xd6dd4099 gmap_pmdp_csp +EXPORT_SYMBOL_GPL vmlinux 0xd6f1a4a0 sysfs_create_mount_point +EXPORT_SYMBOL_GPL vmlinux 0xd6f805f8 irq_domain_pop_irq +EXPORT_SYMBOL_GPL vmlinux 0xd70c2ae3 xfrm_state_afinfo_get_rcu +EXPORT_SYMBOL_GPL vmlinux 0xd71cba35 gmap_shadow_pgt_lookup +EXPORT_SYMBOL_GPL vmlinux 0xd7245176 elv_rqhash_add EXPORT_SYMBOL_GPL vmlinux 0xd7293ffc percpu_ref_reinit -EXPORT_SYMBOL_GPL vmlinux 0xd72b6557 platform_msi_domain_alloc_irqs +EXPORT_SYMBOL_GPL vmlinux 0xd7407f0d firmware_kobj +EXPORT_SYMBOL_GPL vmlinux 0xd744c179 inet_twsk_put +EXPORT_SYMBOL_GPL vmlinux 0xd74a5992 clockevent_delta2ns +EXPORT_SYMBOL_GPL vmlinux 0xd756e275 crypto_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0xd764471f do_unbind_con_driver EXPORT_SYMBOL_GPL vmlinux 0xd774957d mpi_write_to_sgl -EXPORT_SYMBOL_GPL vmlinux 0xd7b1b38f inet6_csk_addr2sockaddr -EXPORT_SYMBOL_GPL vmlinux 0xd7bc1fca security_path_chmod +EXPORT_SYMBOL_GPL vmlinux 0xd780980e gpiochip_lock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0xd784f8be ethnl_cable_test_fault_length +EXPORT_SYMBOL_GPL vmlinux 0xd785b5b7 init_dummy_netdev +EXPORT_SYMBOL_GPL vmlinux 0xd7965be6 devres_add +EXPORT_SYMBOL_GPL vmlinux 0xd7ad3584 nl_table +EXPORT_SYMBOL_GPL vmlinux 0xd7bc9555 crypto_unregister_scomps +EXPORT_SYMBOL_GPL vmlinux 0xd7ceb73d device_store_bool +EXPORT_SYMBOL_GPL vmlinux 0xd7d284d4 blk_mq_start_stopped_hw_queue EXPORT_SYMBOL_GPL vmlinux 0xd7d7f2a7 devlink_port_health_reporter_destroy -EXPORT_SYMBOL_GPL vmlinux 0xd7ddfbf4 set_online_page_callback -EXPORT_SYMBOL_GPL vmlinux 0xd7fe88dd __traceiter_xdp_bulk_tx -EXPORT_SYMBOL_GPL vmlinux 0xd82e67d3 iommu_group_add_device -EXPORT_SYMBOL_GPL vmlinux 0xd841561c platform_get_resource_byname -EXPORT_SYMBOL_GPL vmlinux 0xd84cc167 __traceiter_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0xd82912a5 kvm_release_page_clean +EXPORT_SYMBOL_GPL vmlinux 0xd84d1001 sk_msg_free_nocharge EXPORT_SYMBOL_GPL vmlinux 0xd84d35bd dax_read_lock -EXPORT_SYMBOL_GPL vmlinux 0xd876573f posix_acl_default_xattr_handler -EXPORT_SYMBOL_GPL vmlinux 0xd89a6fcc alloc_dax_region -EXPORT_SYMBOL_GPL vmlinux 0xd8a547fd balloon_page_alloc -EXPORT_SYMBOL_GPL vmlinux 0xd8bcc071 pci_epc_mem_alloc_addr -EXPORT_SYMBOL_GPL vmlinux 0xd8d9ff8a switchdev_handle_port_attr_set -EXPORT_SYMBOL_GPL vmlinux 0xd8e770bc skcipher_walk_complete -EXPORT_SYMBOL_GPL vmlinux 0xd8f3f4c5 device_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xd87ef67a arch_make_page_accessible +EXPORT_SYMBOL_GPL vmlinux 0xd8d93811 int_active_memcg +EXPORT_SYMBOL_GPL vmlinux 0xd8da35d6 misc_cg_try_charge +EXPORT_SYMBOL_GPL vmlinux 0xd8e1312b __kthread_init_worker EXPORT_SYMBOL_GPL vmlinux 0xd8fbb14d net_cls_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xd9143f21 kvm_vcpu_read_guest_atomic +EXPORT_SYMBOL_GPL vmlinux 0xd9018093 shash_ahash_finup EXPORT_SYMBOL_GPL vmlinux 0xd91dbd1f xdp_alloc_skb_bulk EXPORT_SYMBOL_GPL vmlinux 0xd92ef192 security_kernel_post_load_data -EXPORT_SYMBOL_GPL vmlinux 0xd93d558f pci_epc_clear_bar -EXPORT_SYMBOL_GPL vmlinux 0xd9668daa blk_mq_sched_try_merge +EXPORT_SYMBOL_GPL vmlinux 0xd94a4c2e iommu_aux_detach_device +EXPORT_SYMBOL_GPL vmlinux 0xd9586592 gmap_map_segment EXPORT_SYMBOL_GPL vmlinux 0xd96babb4 interval_tree_iter_next -EXPORT_SYMBOL_GPL vmlinux 0xd98fe6ae irq_domain_reset_irq_data -EXPORT_SYMBOL_GPL vmlinux 0xd9a635c0 fib6_new_table +EXPORT_SYMBOL_GPL vmlinux 0xd998f348 dm_internal_suspend_noflush +EXPORT_SYMBOL_GPL vmlinux 0xd99ba813 crypto_register_ahash +EXPORT_SYMBOL_GPL vmlinux 0xd99d5b98 ping_unhash EXPORT_SYMBOL_GPL vmlinux 0xd9b8cfda alarm_restart -EXPORT_SYMBOL_GPL vmlinux 0xd9bbe7bb device_set_of_node_from_dev -EXPORT_SYMBOL_GPL vmlinux 0xd9c794cc component_master_add_with_match +EXPORT_SYMBOL_GPL vmlinux 0xd9ded225 crypto_unregister_ahash EXPORT_SYMBOL_GPL vmlinux 0xd9e24457 ring_buffer_peek EXPORT_SYMBOL_GPL vmlinux 0xd9f440c6 list_lru_del EXPORT_SYMBOL_GPL vmlinux 0xda0947de kmsg_dump_unregister EXPORT_SYMBOL_GPL vmlinux 0xda097638 init_srcu_struct -EXPORT_SYMBOL_GPL vmlinux 0xda1c6ae8 fib_new_table -EXPORT_SYMBOL_GPL vmlinux 0xda23fefd dma_buf_begin_cpu_access -EXPORT_SYMBOL_GPL vmlinux 0xda25b223 device_property_read_string_array -EXPORT_SYMBOL_GPL vmlinux 0xda26bf9a ccw_device_get_chid -EXPORT_SYMBOL_GPL vmlinux 0xda309e20 __traceiter_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0xda263478 virtqueue_get_vring_size EXPORT_SYMBOL_GPL vmlinux 0xda320d31 sfp_module_start EXPORT_SYMBOL_GPL vmlinux 0xda3f3e8a isc_register -EXPORT_SYMBOL_GPL vmlinux 0xda4feed3 do_tcp_sendpages -EXPORT_SYMBOL_GPL vmlinux 0xda5d619c __skb_get_hash_symmetric -EXPORT_SYMBOL_GPL vmlinux 0xda65bf07 tty_release_struct -EXPORT_SYMBOL_GPL vmlinux 0xda7790cb fsnotify_get_group -EXPORT_SYMBOL_GPL vmlinux 0xdaaf95e5 fwnode_get_nth_parent +EXPORT_SYMBOL_GPL vmlinux 0xda7faff5 md_new_event +EXPORT_SYMBOL_GPL vmlinux 0xda7ffb37 vring_create_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0xda8d2936 tty_release_struct +EXPORT_SYMBOL_GPL vmlinux 0xda92c501 bpf_map_inc_not_zero +EXPORT_SYMBOL_GPL vmlinux 0xdaaa42bb inode_sb_list_add EXPORT_SYMBOL_GPL vmlinux 0xdab5a1eb interval_tree_insert -EXPORT_SYMBOL_GPL vmlinux 0xdac2db27 gpiod_get_optional -EXPORT_SYMBOL_GPL vmlinux 0xdada1bb3 fib_nexthop_info +EXPORT_SYMBOL_GPL vmlinux 0xdac0a2fb devm_pci_epc_destroy +EXPORT_SYMBOL_GPL vmlinux 0xdac1fbb2 iommu_enable_nesting +EXPORT_SYMBOL_GPL vmlinux 0xdad65533 tcp_bpf_update_proto +EXPORT_SYMBOL_GPL vmlinux 0xdade131f mptcp_pm_get_add_addr_accept_max EXPORT_SYMBOL_GPL vmlinux 0xdaf4dfb3 fb_mode_option -EXPORT_SYMBOL_GPL vmlinux 0xdb19068b pci_set_cacheline_size -EXPORT_SYMBOL_GPL vmlinux 0xdb2845d6 serdev_device_add -EXPORT_SYMBOL_GPL vmlinux 0xdb347b59 __traceiter_tcp_bad_csum -EXPORT_SYMBOL_GPL vmlinux 0xdb420bb4 percpu_down_write -EXPORT_SYMBOL_GPL vmlinux 0xdb5c71c2 devm_device_add_group -EXPORT_SYMBOL_GPL vmlinux 0xdb5fd96a pci_get_dsn -EXPORT_SYMBOL_GPL vmlinux 0xdb64e252 mptcp_token_iter_next -EXPORT_SYMBOL_GPL vmlinux 0xdb6cc54f find_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0xdb13a5d8 irq_set_chip_and_handler_name +EXPORT_SYMBOL_GPL vmlinux 0xdb145dbf init_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xdb326b00 dummy_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0xdb7de721 fib_add_nexthop EXPORT_SYMBOL_GPL vmlinux 0xdb8a1b3f usermodehelper_read_trylock +EXPORT_SYMBOL_GPL vmlinux 0xdb8c37c3 kvm_release_page_dirty EXPORT_SYMBOL_GPL vmlinux 0xdbbcbf7c unregister_kprobes 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 0xdbf6cf39 udp_abort +EXPORT_SYMBOL_GPL vmlinux 0xdbf5b042 scsi_flush_work EXPORT_SYMBOL_GPL vmlinux 0xdbf7cb70 mpi_get_nbits EXPORT_SYMBOL_GPL vmlinux 0xdbff8bac __srcu_read_lock -EXPORT_SYMBOL_GPL vmlinux 0xdc18ea8f bpf_offload_dev_netdev_unregister -EXPORT_SYMBOL_GPL vmlinux 0xdc32bde5 subsys_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xdc0851c0 debugfs_create_u32 +EXPORT_SYMBOL_GPL vmlinux 0xdc266669 fwnode_graph_get_endpoint_by_id +EXPORT_SYMBOL_GPL vmlinux 0xdc3cdc3e key_type_asymmetric EXPORT_SYMBOL_GPL vmlinux 0xdc43bdc6 pci_vpd_find_ro_info_keyword -EXPORT_SYMBOL_GPL vmlinux 0xdc4dd577 devlink_region_snapshot_id_put -EXPORT_SYMBOL_GPL vmlinux 0xdc541307 vring_create_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0xdc57b57b crypto_stats_compress -EXPORT_SYMBOL_GPL vmlinux 0xdc5c007a xdp_return_frame_rx_napi EXPORT_SYMBOL_GPL vmlinux 0xdc69193b synth_event_add_fields -EXPORT_SYMBOL_GPL vmlinux 0xdc809e55 balloon_page_list_dequeue +EXPORT_SYMBOL_GPL vmlinux 0xdc6dafbd kernfs_notify +EXPORT_SYMBOL_GPL vmlinux 0xdc71ed5e scm_driver_register EXPORT_SYMBOL_GPL vmlinux 0xdc841b74 misc_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xdc9a8b5f tpm1_getcap EXPORT_SYMBOL_GPL vmlinux 0xdc9fa232 raw_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0xdcc0c691 subsys_virtual_register EXPORT_SYMBOL_GPL vmlinux 0xdd0762df set_worker_desc -EXPORT_SYMBOL_GPL vmlinux 0xdd290f21 devm_kfree -EXPORT_SYMBOL_GPL vmlinux 0xdd2ac3a3 anon_transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0xdd2d245b vfs_lock_file EXPORT_SYMBOL_GPL vmlinux 0xdd391eff profile_event_unregister EXPORT_SYMBOL_GPL vmlinux 0xdd626ee3 fuse_len_args -EXPORT_SYMBOL_GPL vmlinux 0xdd63eca5 devlink_rate_nodes_destroy EXPORT_SYMBOL_GPL vmlinux 0xdd6ddcec __traceiter_error_report_end -EXPORT_SYMBOL_GPL vmlinux 0xdd77f558 mptcp_pm_get_local_addr_max -EXPORT_SYMBOL_GPL vmlinux 0xdd7d10a8 sock_prot_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0xdd76ff94 tty_port_tty_hangup EXPORT_SYMBOL_GPL vmlinux 0xdd81d8f6 __SCK__tp_func_block_bio_complete -EXPORT_SYMBOL_GPL vmlinux 0xdd9b3d75 devm_gpiod_get_array_optional -EXPORT_SYMBOL_GPL vmlinux 0xdda9d171 skb_consume_udp +EXPORT_SYMBOL_GPL vmlinux 0xdd827bb4 dma_map_sgtable +EXPORT_SYMBOL_GPL vmlinux 0xdd85e5e4 devm_remove_action +EXPORT_SYMBOL_GPL vmlinux 0xdd8dfef7 clean_acked_data_disable +EXPORT_SYMBOL_GPL vmlinux 0xdd931520 __alloc_pages_bulk +EXPORT_SYMBOL_GPL vmlinux 0xddb0a7ff blk_rq_prep_clone +EXPORT_SYMBOL_GPL vmlinux 0xddb2fe2b tcp_slow_start EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove -EXPORT_SYMBOL_GPL vmlinux 0xddca791a fat_flush_inodes +EXPORT_SYMBOL_GPL vmlinux 0xddca61f0 l3mdev_ifindex_lookup_by_table_id +EXPORT_SYMBOL_GPL vmlinux 0xddf26485 device_create EXPORT_SYMBOL_GPL vmlinux 0xddf32520 __tracepoint_powernv_throttle -EXPORT_SYMBOL_GPL vmlinux 0xde022a57 restore_online_page_callback +EXPORT_SYMBOL_GPL vmlinux 0xddf8e88a cgroup_get_from_fd EXPORT_SYMBOL_GPL vmlinux 0xde052e95 fanout_mutex -EXPORT_SYMBOL_GPL vmlinux 0xde145897 scsi_target_unblock +EXPORT_SYMBOL_GPL vmlinux 0xde3ad053 ack_all_badblocks +EXPORT_SYMBOL_GPL vmlinux 0xde4113f6 shmem_zero_setup +EXPORT_SYMBOL_GPL vmlinux 0xde5fcc90 sfp_bus_find_fwnode EXPORT_SYMBOL_GPL vmlinux 0xde6f1851 TSS_checkhmac1 -EXPORT_SYMBOL_GPL vmlinux 0xde73db85 ip6_flush_pending_frames -EXPORT_SYMBOL_GPL vmlinux 0xde9f94fe security_kernel_read_file -EXPORT_SYMBOL_GPL vmlinux 0xdeaf48e5 pci_create_slot -EXPORT_SYMBOL_GPL vmlinux 0xdebad3c5 iommu_capable -EXPORT_SYMBOL_GPL vmlinux 0xded0eddf relay_flush +EXPORT_SYMBOL_GPL vmlinux 0xde9c0f0b blkdev_nr_zones +EXPORT_SYMBOL_GPL vmlinux 0xded54ad2 tcp_is_ulp_esp EXPORT_SYMBOL_GPL vmlinux 0xdee07053 enable_kprobe -EXPORT_SYMBOL_GPL vmlinux 0xdee1cb5d md_new_event -EXPORT_SYMBOL_GPL vmlinux 0xdee3cc05 inet_hash_connect -EXPORT_SYMBOL_GPL vmlinux 0xdee933ea fwnode_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xdef55f64 mark_page_dirty_in_slot +EXPORT_SYMBOL_GPL vmlinux 0xdef567d8 device_get_child_node_count EXPORT_SYMBOL_GPL vmlinux 0xdf0f75c6 eventfd_signal EXPORT_SYMBOL_GPL vmlinux 0xdf2738bb cpu_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xdf53a727 iommu_fwspec_init -EXPORT_SYMBOL_GPL vmlinux 0xdf58573c ncsi_unregister_dev -EXPORT_SYMBOL_GPL vmlinux 0xdf725634 cdrom_read_tocentry -EXPORT_SYMBOL_GPL vmlinux 0xdf914f8d unregister_pernet_subsys -EXPORT_SYMBOL_GPL vmlinux 0xdfc1edbb __page_file_mapping -EXPORT_SYMBOL_GPL vmlinux 0xe009a32c xfrm_local_error +EXPORT_SYMBOL_GPL vmlinux 0xdf2bea65 dw_pcie_ep_init_notify +EXPORT_SYMBOL_GPL vmlinux 0xdf348f27 gmap_unregister_pte_notifier +EXPORT_SYMBOL_GPL vmlinux 0xdf494ca0 hypervisor_kobj +EXPORT_SYMBOL_GPL vmlinux 0xdfc554b3 zap_vma_ptes +EXPORT_SYMBOL_GPL vmlinux 0xdfc64420 synth_event_trace +EXPORT_SYMBOL_GPL vmlinux 0xdfdf4b0c dma_buf_fd +EXPORT_SYMBOL_GPL vmlinux 0xe0048984 pcie_port_find_device +EXPORT_SYMBOL_GPL vmlinux 0xe020cd9d kvm_clear_guest +EXPORT_SYMBOL_GPL vmlinux 0xe024abf1 tcp_twsk_unique +EXPORT_SYMBOL_GPL vmlinux 0xe027cd35 crypto_unregister_skciphers EXPORT_SYMBOL_GPL vmlinux 0xe02f047c xas_find_conflict -EXPORT_SYMBOL_GPL vmlinux 0xe040a6be dma_buf_move_notify -EXPORT_SYMBOL_GPL vmlinux 0xe054ae73 debugfs_create_u64 +EXPORT_SYMBOL_GPL vmlinux 0xe0415ce2 component_master_add_with_match +EXPORT_SYMBOL_GPL vmlinux 0xe04937ee perf_event_addr_filters_sync +EXPORT_SYMBOL_GPL vmlinux 0xe05888bb skb_partial_csum_set EXPORT_SYMBOL_GPL vmlinux 0xe05e2f85 nexthop_free_rcu +EXPORT_SYMBOL_GPL vmlinux 0xe0606a83 scsi_check_sense EXPORT_SYMBOL_GPL vmlinux 0xe06388fd add_hwgenerator_randomness -EXPORT_SYMBOL_GPL vmlinux 0xe09dd964 dm_start_time_ns_from_clone -EXPORT_SYMBOL_GPL vmlinux 0xe0c868e9 enable_cmf -EXPORT_SYMBOL_GPL vmlinux 0xe0cad92a virtqueue_poll -EXPORT_SYMBOL_GPL vmlinux 0xe0d969e1 blk_mq_debugfs_rq_show -EXPORT_SYMBOL_GPL vmlinux 0xe0e3d9b1 kvm_read_guest_offset_cached -EXPORT_SYMBOL_GPL vmlinux 0xe0fc54c8 pci_epc_get -EXPORT_SYMBOL_GPL vmlinux 0xe13225c1 __nf_ip6_route -EXPORT_SYMBOL_GPL vmlinux 0xe139a109 irq_find_matching_fwspec -EXPORT_SYMBOL_GPL vmlinux 0xe1487232 scsi_check_sense -EXPORT_SYMBOL_GPL vmlinux 0xe152ba9a ccw_device_get_iid -EXPORT_SYMBOL_GPL vmlinux 0xe15aa37e misc_cg_uncharge -EXPORT_SYMBOL_GPL vmlinux 0xe16f60c1 fat_free_clusters +EXPORT_SYMBOL_GPL vmlinux 0xe08ad047 do_unregister_con_driver +EXPORT_SYMBOL_GPL vmlinux 0xe0966cf3 inet6_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0xe0ad4873 blk_queue_write_cache +EXPORT_SYMBOL_GPL vmlinux 0xe0b1782f mmu_interval_notifier_insert_locked +EXPORT_SYMBOL_GPL vmlinux 0xe0daba37 rt_mutex_lock +EXPORT_SYMBOL_GPL vmlinux 0xe0f1ff3a pci_user_read_config_dword +EXPORT_SYMBOL_GPL vmlinux 0xe112783c devm_gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0xe128d81e icmp_build_probe +EXPORT_SYMBOL_GPL vmlinux 0xe12efb9a __ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0xe1432451 register_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0xe14387f6 net_ns_type_operations EXPORT_SYMBOL_GPL vmlinux 0xe1775ee7 dm_get_reserved_bio_based_ios -EXPORT_SYMBOL_GPL vmlinux 0xe1798fd3 css_next_descendant_pre -EXPORT_SYMBOL_GPL vmlinux 0xe1b3412a __sync_filesystem +EXPORT_SYMBOL_GPL vmlinux 0xe17eb4bc cpu_device_create +EXPORT_SYMBOL_GPL vmlinux 0xe194688f device_match_name +EXPORT_SYMBOL_GPL vmlinux 0xe1b370c6 pci_remove_root_bus +EXPORT_SYMBOL_GPL vmlinux 0xe1c30706 sysfs_create_file_ns EXPORT_SYMBOL_GPL vmlinux 0xe1c63523 blk_ksm_get_slot_idx -EXPORT_SYMBOL_GPL vmlinux 0xe1dfd801 hvc_alloc -EXPORT_SYMBOL_GPL vmlinux 0xe1f8da7d tracing_snapshot_cond +EXPORT_SYMBOL_GPL vmlinux 0xe1e53b44 securityfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0xe1fd76cb follow_pte +EXPORT_SYMBOL_GPL vmlinux 0xe20d1e34 __kthread_should_park +EXPORT_SYMBOL_GPL vmlinux 0xe2140d14 __inode_attach_wb +EXPORT_SYMBOL_GPL vmlinux 0xe21a593d metadata_dst_alloc +EXPORT_SYMBOL_GPL vmlinux 0xe231e4af devlink_register EXPORT_SYMBOL_GPL vmlinux 0xe233762a input_event_from_user -EXPORT_SYMBOL_GPL vmlinux 0xe237bba9 file_ra_state_init -EXPORT_SYMBOL_GPL vmlinux 0xe25912b1 sock_diag_destroy -EXPORT_SYMBOL_GPL vmlinux 0xe267dea5 crypto_spawn_tfm -EXPORT_SYMBOL_GPL vmlinux 0xe26d6008 blk_queue_required_elevator_features -EXPORT_SYMBOL_GPL vmlinux 0xe274d8f9 fwnode_find_reference -EXPORT_SYMBOL_GPL vmlinux 0xe279fe03 devm_gpiod_get_index_optional -EXPORT_SYMBOL_GPL vmlinux 0xe27a7e34 device_reprobe +EXPORT_SYMBOL_GPL vmlinux 0xe2508cfd dma_buf_unpin +EXPORT_SYMBOL_GPL vmlinux 0xe270884c dm_put EXPORT_SYMBOL_GPL vmlinux 0xe2829f07 __cookie_v6_check -EXPORT_SYMBOL_GPL vmlinux 0xe290ee5e gpiochip_generic_request +EXPORT_SYMBOL_GPL vmlinux 0xe2854a55 crypto_stats_akcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0xe2905f6b pci_load_and_free_saved_state +EXPORT_SYMBOL_GPL vmlinux 0xe2958542 dm_path_uevent +EXPORT_SYMBOL_GPL vmlinux 0xe2a40ffc sk_attach_filter EXPORT_SYMBOL_GPL vmlinux 0xe2b3207a unregister_switchdev_notifier -EXPORT_SYMBOL_GPL vmlinux 0xe2bcc4b4 fat_get_dotdot_entry -EXPORT_SYMBOL_GPL vmlinux 0xe2d03b11 pci_ioremap_wc_bar -EXPORT_SYMBOL_GPL vmlinux 0xe2eb76da tty_port_tty_hangup +EXPORT_SYMBOL_GPL vmlinux 0xe2bc9add __class_create +EXPORT_SYMBOL_GPL vmlinux 0xe2c45b2e tty_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0xe2de77ca kvm_vcpu_is_visible_gfn +EXPORT_SYMBOL_GPL vmlinux 0xe2e9c5c8 ima_inode_hash +EXPORT_SYMBOL_GPL vmlinux 0xe2ebf9ac pci_iov_virtfn_devfn +EXPORT_SYMBOL_GPL vmlinux 0xe2f79323 transport_remove_device EXPORT_SYMBOL_GPL vmlinux 0xe307205a bprintf -EXPORT_SYMBOL_GPL vmlinux 0xe35963a3 virtqueue_detach_unused_buf -EXPORT_SYMBOL_GPL vmlinux 0xe393bf24 blk_crypto_evict_key +EXPORT_SYMBOL_GPL vmlinux 0xe3072114 xfrm_dev_offload_ok +EXPORT_SYMBOL_GPL vmlinux 0xe31e575e sysfs_remove_files +EXPORT_SYMBOL_GPL vmlinux 0xe3283211 devm_hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0xe34310d5 do_tcp_sendpages +EXPORT_SYMBOL_GPL vmlinux 0xe363dc36 kernfs_get EXPORT_SYMBOL_GPL vmlinux 0xe3b09712 kprobe_event_delete -EXPORT_SYMBOL_GPL vmlinux 0xe3c1dbc3 free_vm_area +EXPORT_SYMBOL_GPL vmlinux 0xe3c607da crypto_create_tfm_node +EXPORT_SYMBOL_GPL vmlinux 0xe3ddb27f devm_gpiod_get_from_of_node +EXPORT_SYMBOL_GPL vmlinux 0xe404828c crypto_default_rng EXPORT_SYMBOL_GPL vmlinux 0xe40bb23e devlink_health_reporter_priv -EXPORT_SYMBOL_GPL vmlinux 0xe47110a9 __traceiter_sched_cpu_capacity_tp +EXPORT_SYMBOL_GPL vmlinux 0xe44bb282 tpm_get_random +EXPORT_SYMBOL_GPL vmlinux 0xe45fbe06 bpf_map_put +EXPORT_SYMBOL_GPL vmlinux 0xe476c9ad bpf_map_inc_with_uref +EXPORT_SYMBOL_GPL vmlinux 0xe4872386 tty_kopen_shared EXPORT_SYMBOL_GPL vmlinux 0xe4971ade tracing_alloc_snapshot -EXPORT_SYMBOL_GPL vmlinux 0xe4984410 scsi_build_sense EXPORT_SYMBOL_GPL vmlinux 0xe4a95266 blocking_notifier_chain_unregister EXPORT_SYMBOL_GPL vmlinux 0xe4b064f9 pcie_link_speed EXPORT_SYMBOL_GPL vmlinux 0xe4b93f27 public_key_verify_signature -EXPORT_SYMBOL_GPL vmlinux 0xe4e3e3b3 ipv6_dup_options -EXPORT_SYMBOL_GPL vmlinux 0xe4e8a030 sysfs_create_mount_point +EXPORT_SYMBOL_GPL vmlinux 0xe4fa45bc pci_cfg_access_unlock +EXPORT_SYMBOL_GPL vmlinux 0xe50f8e24 synth_event_add_val EXPORT_SYMBOL_GPL vmlinux 0xe51802ba xas_store -EXPORT_SYMBOL_GPL vmlinux 0xe52ac119 crypto_alg_mod_lookup -EXPORT_SYMBOL_GPL vmlinux 0xe54e42b8 debugfs_lookup -EXPORT_SYMBOL_GPL vmlinux 0xe5535e0b devm_gpio_request -EXPORT_SYMBOL_GPL vmlinux 0xe56c3b5e bpf_trace_run10 -EXPORT_SYMBOL_GPL vmlinux 0xe57eb2af blk_mq_hctx_set_fq_lock_class +EXPORT_SYMBOL_GPL vmlinux 0xe5187f70 devm_gpio_request_one +EXPORT_SYMBOL_GPL vmlinux 0xe52d4985 rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe53b6c2e __traceiter_neigh_update_done +EXPORT_SYMBOL_GPL vmlinux 0xe554f01f pci_ioremap_wc_bar +EXPORT_SYMBOL_GPL vmlinux 0xe5574799 rt_mutex_unlock +EXPORT_SYMBOL_GPL vmlinux 0xe5693cff device_link_remove +EXPORT_SYMBOL_GPL vmlinux 0xe56fab3f crypto_shash_finup EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe5a16947 wait_on_page_writeback_killable -EXPORT_SYMBOL_GPL vmlinux 0xe5b1202d crypto_register_shashes -EXPORT_SYMBOL_GPL vmlinux 0xe5b2a0f6 kvm_vcpu_gfn_to_pfn -EXPORT_SYMBOL_GPL vmlinux 0xe5b7d1ed tcp_ca_openreq_child -EXPORT_SYMBOL_GPL vmlinux 0xe5c22ebd dma_get_merge_boundary -EXPORT_SYMBOL_GPL vmlinux 0xe5dc6781 l3mdev_link_scope_lookup -EXPORT_SYMBOL_GPL vmlinux 0xe5eaea46 xfrm_state_mtu -EXPORT_SYMBOL_GPL vmlinux 0xe5f9d51f mmu_notifier_put +EXPORT_SYMBOL_GPL vmlinux 0xe59505aa irq_domain_xlate_onetwocell +EXPORT_SYMBOL_GPL vmlinux 0xe5a8a577 __traceiter_br_fdb_update +EXPORT_SYMBOL_GPL vmlinux 0xe5b165bc sk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0xe5c649f0 sysfs_rename_link_ns +EXPORT_SYMBOL_GPL vmlinux 0xe5cf61fd devm_platform_ioremap_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0xe5cfceb4 pci_epc_map_msi_irq +EXPORT_SYMBOL_GPL vmlinux 0xe5d5843a kstrdup_quotable_file +EXPORT_SYMBOL_GPL vmlinux 0xe5e37d0a noop_direct_IO +EXPORT_SYMBOL_GPL vmlinux 0xe604736c dma_alloc_noncontiguous EXPORT_SYMBOL_GPL vmlinux 0xe60a5e8d pids_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xe622e291 debugfs_create_u32 -EXPORT_SYMBOL_GPL vmlinux 0xe62816a9 ccw_device_get_chpid -EXPORT_SYMBOL_GPL vmlinux 0xe6306bb2 device_property_match_string -EXPORT_SYMBOL_GPL vmlinux 0xe659939c transport_add_device -EXPORT_SYMBOL_GPL vmlinux 0xe65ef876 blkdev_ioctl -EXPORT_SYMBOL_GPL vmlinux 0xe6730444 irq_chip_mask_ack_parent -EXPORT_SYMBOL_GPL vmlinux 0xe67fe930 generic_handle_domain_irq -EXPORT_SYMBOL_GPL vmlinux 0xe6cf76ef auxiliary_find_device +EXPORT_SYMBOL_GPL vmlinux 0xe60ee003 perf_event_pause +EXPORT_SYMBOL_GPL vmlinux 0xe6195f0c devm_platform_get_and_ioremap_resource +EXPORT_SYMBOL_GPL vmlinux 0xe63756e2 inet_csk_route_req +EXPORT_SYMBOL_GPL vmlinux 0xe64c2f4f debugfs_create_blob +EXPORT_SYMBOL_GPL vmlinux 0xe64cdf7c virtqueue_get_avail_addr +EXPORT_SYMBOL_GPL vmlinux 0xe6929a1f ethnl_cable_test_result +EXPORT_SYMBOL_GPL vmlinux 0xe6c91342 lwtunnel_input +EXPORT_SYMBOL_GPL vmlinux 0xe6d6620e crypto_register_scomp +EXPORT_SYMBOL_GPL vmlinux 0xe6e35d75 page_cache_sync_ra EXPORT_SYMBOL_GPL vmlinux 0xe6e40502 rcu_get_gp_seq -EXPORT_SYMBOL_GPL vmlinux 0xe6fb16cc irq_domain_free_irqs_common -EXPORT_SYMBOL_GPL vmlinux 0xe707e60b kvm_s390_gisc_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe711a73d ip_valid_fib_dump_req -EXPORT_SYMBOL_GPL vmlinux 0xe71a3fec dm_internal_suspend_fast +EXPORT_SYMBOL_GPL vmlinux 0xe6f76881 xfrm_output EXPORT_SYMBOL_GPL vmlinux 0xe72e844b __rht_bucket_nested -EXPORT_SYMBOL_GPL vmlinux 0xe748fa7c crypto_type_has_alg +EXPORT_SYMBOL_GPL vmlinux 0xe7302183 sysfs_add_file_to_group +EXPORT_SYMBOL_GPL vmlinux 0xe73318b6 tpm_default_chip +EXPORT_SYMBOL_GPL vmlinux 0xe747d2b1 yield_to EXPORT_SYMBOL_GPL vmlinux 0xe753b68d devlink_fmsg_arr_pair_nest_end -EXPORT_SYMBOL_GPL vmlinux 0xe755dc1f ip6_route_lookup +EXPORT_SYMBOL_GPL vmlinux 0xe75b2bae pci_epc_set_msi EXPORT_SYMBOL_GPL vmlinux 0xe769232e sprint_symbol_no_offset -EXPORT_SYMBOL_GPL vmlinux 0xe777dde6 addrconf_prefix_rcv_add_addr -EXPORT_SYMBOL_GPL vmlinux 0xe77e0e9b devm_watchdog_register_device -EXPORT_SYMBOL_GPL vmlinux 0xe7832069 netdev_walk_all_lower_dev_rcu +EXPORT_SYMBOL_GPL vmlinux 0xe77234d2 inet6_csk_addr2sockaddr EXPORT_SYMBOL_GPL vmlinux 0xe783e261 sysfs_emit -EXPORT_SYMBOL_GPL vmlinux 0xe7997544 lwtstate_free -EXPORT_SYMBOL_GPL vmlinux 0xe79ae8a7 devlink_flash_update_timeout_notify EXPORT_SYMBOL_GPL vmlinux 0xe79bf0c4 klp_shadow_get +EXPORT_SYMBOL_GPL vmlinux 0xe7ac5248 espintcp_queue_out +EXPORT_SYMBOL_GPL vmlinux 0xe7ad68c8 pci_epc_map_addr +EXPORT_SYMBOL_GPL vmlinux 0xe7b529f7 security_inode_permission EXPORT_SYMBOL_GPL vmlinux 0xe7b718df chsc_determine_channel_path_desc -EXPORT_SYMBOL_GPL vmlinux 0xe7d5d319 device_find_child_by_name +EXPORT_SYMBOL_GPL vmlinux 0xe7b76a65 tcp_get_syncookie_mss +EXPORT_SYMBOL_GPL vmlinux 0xe7bd8a87 __account_locked_vm EXPORT_SYMBOL_GPL vmlinux 0xe7d65c77 kobject_create_and_add EXPORT_SYMBOL_GPL vmlinux 0xe7d6d2d4 filter_match_preds -EXPORT_SYMBOL_GPL vmlinux 0xe7e752a9 user_update -EXPORT_SYMBOL_GPL vmlinux 0xe7ecba10 crypto_unregister_ahashes -EXPORT_SYMBOL_GPL vmlinux 0xe7f3b72b bus_rescan_devices -EXPORT_SYMBOL_GPL vmlinux 0xe7fc5033 __traceiter_pelt_dl_tp -EXPORT_SYMBOL_GPL vmlinux 0xe7fc8896 gmap_map_segment -EXPORT_SYMBOL_GPL vmlinux 0xe880665e fib_rules_lookup +EXPORT_SYMBOL_GPL vmlinux 0xe81718bd __udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xe82919d5 kvm_vcpu_map +EXPORT_SYMBOL_GPL vmlinux 0xe8677e4f blk_freeze_queue_start +EXPORT_SYMBOL_GPL vmlinux 0xe87e8d97 devlink_port_type_ib_set EXPORT_SYMBOL_GPL vmlinux 0xe8874a05 irq_work_queue +EXPORT_SYMBOL_GPL vmlinux 0xe889c08c debugfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0xe89bedf6 crypto_alloc_skcipher EXPORT_SYMBOL_GPL vmlinux 0xe8a1ff2f list_lru_walk_node -EXPORT_SYMBOL_GPL vmlinux 0xe8ab0864 fsl_mc_device_group -EXPORT_SYMBOL_GPL vmlinux 0xe8addc80 tcp_get_info +EXPORT_SYMBOL_GPL vmlinux 0xe8b5f27e pci_find_ext_capability EXPORT_SYMBOL_GPL vmlinux 0xe8c0065d memory_group_register_static -EXPORT_SYMBOL_GPL vmlinux 0xe8cc7a00 device_show_int -EXPORT_SYMBOL_GPL vmlinux 0xe8d99406 iommu_map_sg -EXPORT_SYMBOL_GPL vmlinux 0xe8e8fdab add_page_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0xe8e964df strp_done -EXPORT_SYMBOL_GPL vmlinux 0xe90b3d7f dma_free_noncontiguous -EXPORT_SYMBOL_GPL vmlinux 0xe90c1043 kvm_write_guest_page +EXPORT_SYMBOL_GPL vmlinux 0xe8c86f71 fscrypt_file_open +EXPORT_SYMBOL_GPL vmlinux 0xe9063085 ccw_device_get_cssid EXPORT_SYMBOL_GPL vmlinux 0xe911df29 eventfd_ctx_do_read -EXPORT_SYMBOL_GPL vmlinux 0xe92e3243 tpm_put_ops -EXPORT_SYMBOL_GPL vmlinux 0xe92fda66 __fscrypt_prepare_link +EXPORT_SYMBOL_GPL vmlinux 0xe91921dc component_del +EXPORT_SYMBOL_GPL vmlinux 0xe92a02aa ccw_device_pnso +EXPORT_SYMBOL_GPL vmlinux 0xe937f0cf sk_msg_zerocopy_from_iter EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free -EXPORT_SYMBOL_GPL vmlinux 0xe9402ba5 dma_alloc_pages -EXPORT_SYMBOL_GPL vmlinux 0xe953e155 component_add_typed -EXPORT_SYMBOL_GPL vmlinux 0xe97ab413 dm_per_bio_data -EXPORT_SYMBOL_GPL vmlinux 0xe9829bfe debugfs_remove -EXPORT_SYMBOL_GPL vmlinux 0xe9b2dfe3 xdp_return_frame -EXPORT_SYMBOL_GPL vmlinux 0xe9ce9186 generic_fh_to_parent -EXPORT_SYMBOL_GPL vmlinux 0xe9e17472 anon_transport_class_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe9e47fd5 kobject_uevent +EXPORT_SYMBOL_GPL vmlinux 0xe95601b7 skcipher_walk_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0xe95bab95 transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe96ab9f0 devlink_resource_occ_get_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe96f5343 devm_watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0xe9a291da tty_buffer_lock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xe9bb0836 access_process_vm +EXPORT_SYMBOL_GPL vmlinux 0xe9e3d658 scsi_get_vpd_page +EXPORT_SYMBOL_GPL vmlinux 0xe9fbc8a0 misc_cg_uncharge EXPORT_SYMBOL_GPL vmlinux 0xea018bbb mpi_test_bit EXPORT_SYMBOL_GPL vmlinux 0xea066330 rhashtable_walk_enter +EXPORT_SYMBOL_GPL vmlinux 0xea08c4b7 dev_fill_forward_path EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd -EXPORT_SYMBOL_GPL vmlinux 0xea32c6ca ccw_device_pnso +EXPORT_SYMBOL_GPL vmlinux 0xea2257fc dma_buf_unmap_attachment EXPORT_SYMBOL_GPL vmlinux 0xea38036f ring_buffer_entries EXPORT_SYMBOL_GPL vmlinux 0xea3a23f3 public_key_free -EXPORT_SYMBOL_GPL vmlinux 0xea949a48 virtqueue_add_outbuf -EXPORT_SYMBOL_GPL vmlinux 0xea9f17c5 crypto_unregister_shash -EXPORT_SYMBOL_GPL vmlinux 0xeaa3cf3a bpf_offload_dev_netdev_register +EXPORT_SYMBOL_GPL vmlinux 0xea86bca1 do_truncate +EXPORT_SYMBOL_GPL vmlinux 0xeaa14638 dma_buf_export +EXPORT_SYMBOL_GPL vmlinux 0xeaa4191c add_disk_randomness EXPORT_SYMBOL_GPL vmlinux 0xead035ee __tracepoint_fib6_table_lookup EXPORT_SYMBOL_GPL vmlinux 0xead3e41b __traceiter_cpu_frequency EXPORT_SYMBOL_GPL vmlinux 0xeae0f496 clean_acked_data_flush -EXPORT_SYMBOL_GPL vmlinux 0xeaee70a8 device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xeae491e0 auxiliary_device_init +EXPORT_SYMBOL_GPL vmlinux 0xeae65011 xfrm_audit_state_notfound_simple +EXPORT_SYMBOL_GPL vmlinux 0xeaf269c3 devm_gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0xeb0fd45a crypto_enqueue_request_head +EXPORT_SYMBOL_GPL vmlinux 0xeb197a1a security_inode_setattr +EXPORT_SYMBOL_GPL vmlinux 0xeb2285ad blk_ksm_update_capabilities EXPORT_SYMBOL_GPL vmlinux 0xeb317ee6 __traceiter_unmap -EXPORT_SYMBOL_GPL vmlinux 0xeb498f27 dax_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0xeb4e0472 mptcp_pm_get_add_addr_signal_max -EXPORT_SYMBOL_GPL vmlinux 0xeb55f09f dw_pcie_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0xeb5fce2c iomap_file_buffered_write +EXPORT_SYMBOL_GPL vmlinux 0xeb65855a devlink_traps_unregister +EXPORT_SYMBOL_GPL vmlinux 0xeb903a30 pci_epc_unmap_addr EXPORT_SYMBOL_GPL vmlinux 0xeb907eeb __irq_alloc_descs -EXPORT_SYMBOL_GPL vmlinux 0xebaaa332 sfp_register_socket -EXPORT_SYMBOL_GPL vmlinux 0xebd3dc26 device_property_read_u8_array -EXPORT_SYMBOL_GPL vmlinux 0xebe6f6dc tpm_chip_stop -EXPORT_SYMBOL_GPL vmlinux 0xec024ee9 ping_get_port -EXPORT_SYMBOL_GPL vmlinux 0xec13a38f md_submit_discard_bio +EXPORT_SYMBOL_GPL vmlinux 0xeba306ab irq_domain_create_legacy +EXPORT_SYMBOL_GPL vmlinux 0xeba62f2d balloon_page_list_enqueue +EXPORT_SYMBOL_GPL vmlinux 0xebbb5df9 sfp_register_socket +EXPORT_SYMBOL_GPL vmlinux 0xebdf6d45 bio_alloc_kiocb +EXPORT_SYMBOL_GPL vmlinux 0xec0bd720 vtime_account_kernel EXPORT_SYMBOL_GPL vmlinux 0xec13c83c si_swapinfo -EXPORT_SYMBOL_GPL vmlinux 0xec32c0a9 gpiochip_generic_free -EXPORT_SYMBOL_GPL vmlinux 0xec59f6b6 devlink_remote_reload_actions_performed -EXPORT_SYMBOL_GPL vmlinux 0xeca3847d device_initialize -EXPORT_SYMBOL_GPL vmlinux 0xeca6164a proc_create_net_data -EXPORT_SYMBOL_GPL vmlinux 0xecce4195 __blk_req_zone_write_unlock -EXPORT_SYMBOL_GPL vmlinux 0xecdd96fb splice_to_pipe -EXPORT_SYMBOL_GPL vmlinux 0xed065745 kvm_unmap_gfn -EXPORT_SYMBOL_GPL vmlinux 0xed0d2275 device_property_read_u16_array -EXPORT_SYMBOL_GPL vmlinux 0xed1356a7 sched_trace_rq_avg_irq -EXPORT_SYMBOL_GPL vmlinux 0xed1897dd __vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0xec21a58d iomap_dio_rw +EXPORT_SYMBOL_GPL vmlinux 0xec32b30b generic_access_phys +EXPORT_SYMBOL_GPL vmlinux 0xec5e2df1 lwtunnel_encap_add_ops +EXPORT_SYMBOL_GPL vmlinux 0xec65d233 xfrm_audit_state_delete +EXPORT_SYMBOL_GPL vmlinux 0xec76e60f vring_transport_features +EXPORT_SYMBOL_GPL vmlinux 0xec80a18b param_set_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0xec9eb52c bdi_dev_name +EXPORT_SYMBOL_GPL vmlinux 0xecc57c08 gmap_put +EXPORT_SYMBOL_GPL vmlinux 0xecec6472 __put_net +EXPORT_SYMBOL_GPL vmlinux 0xecf08ad6 fscrypt_prepare_new_inode +EXPORT_SYMBOL_GPL vmlinux 0xed148efb iommu_device_sysfs_add +EXPORT_SYMBOL_GPL vmlinux 0xed1789ff fuse_request_end EXPORT_SYMBOL_GPL vmlinux 0xed48a163 __zpci_store_block -EXPORT_SYMBOL_GPL vmlinux 0xed4b9832 tpm_pm_suspend -EXPORT_SYMBOL_GPL vmlinux 0xed4e22d9 __xdp_build_skb_from_frame -EXPORT_SYMBOL_GPL vmlinux 0xed65fd77 blk_trace_setup -EXPORT_SYMBOL_GPL vmlinux 0xed6d7804 iomap_file_unshare -EXPORT_SYMBOL_GPL vmlinux 0xed93ffef tcp_rate_check_app_limited -EXPORT_SYMBOL_GPL vmlinux 0xeda1a4f9 kvm_vcpu_mark_page_dirty -EXPORT_SYMBOL_GPL vmlinux 0xedb0f8a7 fib_info_nh_uses_dev -EXPORT_SYMBOL_GPL vmlinux 0xedb774b0 __get_task_comm +EXPORT_SYMBOL_GPL vmlinux 0xed5738ed fat_detach +EXPORT_SYMBOL_GPL vmlinux 0xed63b1fe ping_seq_next +EXPORT_SYMBOL_GPL vmlinux 0xed69113a gpiod_set_transitory +EXPORT_SYMBOL_GPL vmlinux 0xed80ab41 devlink_param_register +EXPORT_SYMBOL_GPL vmlinux 0xed8f4c75 raw_unhash_sk +EXPORT_SYMBOL_GPL vmlinux 0xed9a12f2 devlink_rate_leaf_create +EXPORT_SYMBOL_GPL vmlinux 0xedc9fc28 fat_build_inode +EXPORT_SYMBOL_GPL vmlinux 0xedcb297c kthread_queue_delayed_work EXPORT_SYMBOL_GPL vmlinux 0xedf55abb zs_malloc -EXPORT_SYMBOL_GPL vmlinux 0xee1386e9 __irq_resolve_mapping EXPORT_SYMBOL_GPL vmlinux 0xee1f5126 __tracepoint_neigh_timer_handler +EXPORT_SYMBOL_GPL vmlinux 0xee3585a2 page_endio EXPORT_SYMBOL_GPL vmlinux 0xee38ef57 register_switchdev_blocking_notifier -EXPORT_SYMBOL_GPL vmlinux 0xee3d1ad2 follow_pte -EXPORT_SYMBOL_GPL vmlinux 0xee6523d6 user_describe +EXPORT_SYMBOL_GPL vmlinux 0xee3a8b2f iommu_fwspec_free +EXPORT_SYMBOL_GPL vmlinux 0xee3e5ee7 badblocks_check +EXPORT_SYMBOL_GPL vmlinux 0xee4a5280 msg_zerocopy_alloc EXPORT_SYMBOL_GPL vmlinux 0xee6c633a devices_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xee980251 dm_hold -EXPORT_SYMBOL_GPL vmlinux 0xee993ecd pci_destroy_slot -EXPORT_SYMBOL_GPL vmlinux 0xeea57dad fwnode_get_next_parent +EXPORT_SYMBOL_GPL vmlinux 0xee72aeb3 crypto_register_acomp +EXPORT_SYMBOL_GPL vmlinux 0xee7409ce sk_psock_tls_strp_read +EXPORT_SYMBOL_GPL vmlinux 0xee7a5f13 report_iommu_fault +EXPORT_SYMBOL_GPL vmlinux 0xee881b8c nfs42_ssc_unregister +EXPORT_SYMBOL_GPL vmlinux 0xee99440b ip6_sk_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0xeea834c0 kprobe_event_cmd_init -EXPORT_SYMBOL_GPL vmlinux 0xeea88dd0 sch_frag_xmit_hook -EXPORT_SYMBOL_GPL vmlinux 0xeeb898a7 iomap_seek_hole -EXPORT_SYMBOL_GPL vmlinux 0xeec74a7a switchdev_port_attr_set -EXPORT_SYMBOL_GPL vmlinux 0xeed43679 device_get_child_node_count +EXPORT_SYMBOL_GPL vmlinux 0xeeb37a77 irq_set_default_host +EXPORT_SYMBOL_GPL vmlinux 0xeebb7b4e device_set_of_node_from_dev EXPORT_SYMBOL_GPL vmlinux 0xeedfcec3 task_work_run +EXPORT_SYMBOL_GPL vmlinux 0xeef6905e sysfs_unmerge_group EXPORT_SYMBOL_GPL vmlinux 0xef13106c nr_threads -EXPORT_SYMBOL_GPL vmlinux 0xef25a3ab blk_ksm_register -EXPORT_SYMBOL_GPL vmlinux 0xef283e2c switchdev_port_obj_add +EXPORT_SYMBOL_GPL vmlinux 0xef222465 tty_ldisc_ref EXPORT_SYMBOL_GPL vmlinux 0xef464c28 getboottime64 -EXPORT_SYMBOL_GPL vmlinux 0xef4ff504 l3mdev_master_ifindex_rcu +EXPORT_SYMBOL_GPL vmlinux 0xef4b16ae __sock_recv_ts_and_drops +EXPORT_SYMBOL_GPL vmlinux 0xef6b7660 crypto_hash_alg_has_setkey EXPORT_SYMBOL_GPL vmlinux 0xef6c3f70 round_jiffies_up_relative EXPORT_SYMBOL_GPL vmlinux 0xef70eb7e ring_buffer_iter_advance -EXPORT_SYMBOL_GPL vmlinux 0xef8a6b20 inet6_hash +EXPORT_SYMBOL_GPL vmlinux 0xef76103a blk_mq_alloc_request_hctx +EXPORT_SYMBOL_GPL vmlinux 0xef8593d8 bpf_prog_create +EXPORT_SYMBOL_GPL vmlinux 0xef862ed2 crypto_register_rngs +EXPORT_SYMBOL_GPL vmlinux 0xef93944b component_bind_all EXPORT_SYMBOL_GPL vmlinux 0xefa2c27d register_tracepoint_module_notifier -EXPORT_SYMBOL_GPL vmlinux 0xefd4da17 device_store_bool -EXPORT_SYMBOL_GPL vmlinux 0xefe20e94 kvm_vcpu_gfn_to_page -EXPORT_SYMBOL_GPL vmlinux 0xefe3d9c7 ip6_datagram_recv_ctl -EXPORT_SYMBOL_GPL vmlinux 0xefe54deb event_triggers_post_call -EXPORT_SYMBOL_GPL vmlinux 0xf005d8cd relay_open -EXPORT_SYMBOL_GPL vmlinux 0xf00d3e46 setfl -EXPORT_SYMBOL_GPL vmlinux 0xf0254e19 __irq_domain_add -EXPORT_SYMBOL_GPL vmlinux 0xf0316254 serdev_device_open +EXPORT_SYMBOL_GPL vmlinux 0xefc01c8b task_user_regset_view +EXPORT_SYMBOL_GPL vmlinux 0xf0130ac2 iomap_ioend_try_merge +EXPORT_SYMBOL_GPL vmlinux 0xf0336c9e inet_csk_listen_start +EXPORT_SYMBOL_GPL vmlinux 0xf04bc769 switchdev_handle_fdb_add_to_device EXPORT_SYMBOL_GPL vmlinux 0xf05a52fe asn1_encode_oid EXPORT_SYMBOL_GPL vmlinux 0xf05fbf09 pci_pio_to_address +EXPORT_SYMBOL_GPL vmlinux 0xf06915ef ip6_dst_lookup +EXPORT_SYMBOL_GPL vmlinux 0xf06d54be split_page +EXPORT_SYMBOL_GPL vmlinux 0xf073b0a0 crypto_unregister_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xf07b20bf fsnotify_add_mark EXPORT_SYMBOL_GPL vmlinux 0xf08ee4c3 sbitmap_get_shallow EXPORT_SYMBOL_GPL vmlinux 0xf0910075 sfp_bus_del_upstream -EXPORT_SYMBOL_GPL vmlinux 0xf0d95f6a sk_msg_is_readable -EXPORT_SYMBOL_GPL vmlinux 0xf0e6eec1 fib_rules_dump -EXPORT_SYMBOL_GPL vmlinux 0xf0e815fa fwnode_handle_put -EXPORT_SYMBOL_GPL vmlinux 0xf0ee69b0 gmap_get +EXPORT_SYMBOL_GPL vmlinux 0xf0b2b7db __rt_mutex_init +EXPORT_SYMBOL_GPL vmlinux 0xf0c779e2 bpf_prog_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf0ca4cb0 irq_get_default_host +EXPORT_SYMBOL_GPL vmlinux 0xf0ea57c3 bsg_register_queue +EXPORT_SYMBOL_GPL vmlinux 0xf0f18631 trace_event_buffer_commit EXPORT_SYMBOL_GPL vmlinux 0xf0f2d8f1 software_node_unregister_nodes -EXPORT_SYMBOL_GPL vmlinux 0xf0f8a61b security_path_chown -EXPORT_SYMBOL_GPL vmlinux 0xf0ff2bef debugfs_create_symlink -EXPORT_SYMBOL_GPL vmlinux 0xf104ea12 devlink_dpipe_action_put -EXPORT_SYMBOL_GPL vmlinux 0xf108c156 fuse_dev_operations +EXPORT_SYMBOL_GPL vmlinux 0xf0f682fe inet_csk_route_child_sock +EXPORT_SYMBOL_GPL vmlinux 0xf100d4e0 verify_signature EXPORT_SYMBOL_GPL vmlinux 0xf126b288 proc_douintvec_minmax -EXPORT_SYMBOL_GPL vmlinux 0xf12c64a4 pci_epc_put -EXPORT_SYMBOL_GPL vmlinux 0xf12dedb5 sched_trace_cfs_rq_path -EXPORT_SYMBOL_GPL vmlinux 0xf131802c dst_blackhole_mtu -EXPORT_SYMBOL_GPL vmlinux 0xf1356423 perf_tp_event -EXPORT_SYMBOL_GPL vmlinux 0xf13c69e6 virtqueue_enable_cb_prepare -EXPORT_SYMBOL_GPL vmlinux 0xf143f086 pci_bus_resource_n -EXPORT_SYMBOL_GPL vmlinux 0xf164d253 kvm_vcpu_wake_up +EXPORT_SYMBOL_GPL vmlinux 0xf1388847 anon_inode_getfd +EXPORT_SYMBOL_GPL vmlinux 0xf14759cd metadata_dst_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0xf15a47c6 dax_supported +EXPORT_SYMBOL_GPL vmlinux 0xf16bbb15 pci_bus_add_device +EXPORT_SYMBOL_GPL vmlinux 0xf17fcf2f fat_scan EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off -EXPORT_SYMBOL_GPL vmlinux 0xf1bab111 trace_output_call -EXPORT_SYMBOL_GPL vmlinux 0xf1be8dde zap_vma_ptes -EXPORT_SYMBOL_GPL vmlinux 0xf1dc24e0 xdp_rxq_info_reg -EXPORT_SYMBOL_GPL vmlinux 0xf1dc8761 iommu_group_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0xf1ed4c46 synth_event_trace_array +EXPORT_SYMBOL_GPL vmlinux 0xf1aa0b9e __mnt_is_readonly +EXPORT_SYMBOL_GPL vmlinux 0xf1c66786 crypto_alg_mod_lookup +EXPORT_SYMBOL_GPL vmlinux 0xf1d6e4f5 sysfs_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xf1defa1c skcipher_alloc_instance_simple +EXPORT_SYMBOL_GPL vmlinux 0xf1f19928 platform_msi_domain_alloc_irqs +EXPORT_SYMBOL_GPL vmlinux 0xf1fa7a43 pci_cfg_access_lock EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0xf2609dfc md_bitmap_resize -EXPORT_SYMBOL_GPL vmlinux 0xf27babba watchdog_set_restart_priority -EXPORT_SYMBOL_GPL vmlinux 0xf27c9a85 pci_platform_power_transition +EXPORT_SYMBOL_GPL vmlinux 0xf2273428 devlink_net +EXPORT_SYMBOL_GPL vmlinux 0xf2490624 irq_create_fwspec_mapping +EXPORT_SYMBOL_GPL vmlinux 0xf2592b2d bio_iov_iter_get_pages EXPORT_SYMBOL_GPL vmlinux 0xf2967796 ring_buffer_record_on -EXPORT_SYMBOL_GPL vmlinux 0xf2a89066 vcpu_put -EXPORT_SYMBOL_GPL vmlinux 0xf2a8fbd3 pci_hp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0xf29a5d18 debugfs_create_ulong +EXPORT_SYMBOL_GPL vmlinux 0xf29d2010 gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0xf2ab37cf irq_domain_remove +EXPORT_SYMBOL_GPL vmlinux 0xf2ac9007 platform_find_device_by_driver EXPORT_SYMBOL_GPL vmlinux 0xf2b33cb7 memory_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xf2c5292f fscrypt_mergeable_bio EXPORT_SYMBOL_GPL vmlinux 0xf2d87a62 list_lru_add -EXPORT_SYMBOL_GPL vmlinux 0xf2e1f84e percpu_up_write +EXPORT_SYMBOL_GPL vmlinux 0xf2df266a list_lru_count_one +EXPORT_SYMBOL_GPL vmlinux 0xf2e45ca5 __lock_page_killable EXPORT_SYMBOL_GPL vmlinux 0xf2fb61bd vprintk_default -EXPORT_SYMBOL_GPL vmlinux 0xf2fec216 xdp_return_frame_bulk -EXPORT_SYMBOL_GPL vmlinux 0xf3004295 access_process_vm -EXPORT_SYMBOL_GPL vmlinux 0xf307c9a8 proc_create_net_data_write -EXPORT_SYMBOL_GPL vmlinux 0xf30af742 devm_hwrng_unregister EXPORT_SYMBOL_GPL vmlinux 0xf311e156 key_being_used_for +EXPORT_SYMBOL_GPL vmlinux 0xf3169156 netdev_rx_handler_register +EXPORT_SYMBOL_GPL vmlinux 0xf31b1dd8 iommu_sva_unbind_device EXPORT_SYMBOL_GPL vmlinux 0xf31b3fd1 workqueue_set_max_active -EXPORT_SYMBOL_GPL vmlinux 0xf32e058c dm_path_uevent +EXPORT_SYMBOL_GPL vmlinux 0xf3278156 pci_device_is_present +EXPORT_SYMBOL_GPL vmlinux 0xf33b60d1 wbc_attach_and_unlock_inode +EXPORT_SYMBOL_GPL vmlinux 0xf34b0eda vp_modern_queue_vector +EXPORT_SYMBOL_GPL vmlinux 0xf34c51d0 tty_ldisc_deref +EXPORT_SYMBOL_GPL vmlinux 0xf34ee654 bus_unregister_notifier EXPORT_SYMBOL_GPL vmlinux 0xf352023f memory_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xf36a25d9 kvm_vcpu_read_guest_page -EXPORT_SYMBOL_GPL vmlinux 0xf36bcccd transport_setup_device EXPORT_SYMBOL_GPL vmlinux 0xf3797506 mpi_ec_deinit EXPORT_SYMBOL_GPL vmlinux 0xf3808cb1 get_state_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0xf3870003 __kernel_write -EXPORT_SYMBOL_GPL vmlinux 0xf3c7b921 wbt_enable_default -EXPORT_SYMBOL_GPL vmlinux 0xf3cd4596 dw_pcie_ep_init +EXPORT_SYMBOL_GPL vmlinux 0xf381bd72 pci_find_host_bridge +EXPORT_SYMBOL_GPL vmlinux 0xf399e0b5 driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf3bbfb92 device_show_bool +EXPORT_SYMBOL_GPL vmlinux 0xf3cf072c pci_assign_unassigned_bridge_resources +EXPORT_SYMBOL_GPL vmlinux 0xf3d0355f __clocksource_update_freq_scale EXPORT_SYMBOL_GPL vmlinux 0xf3dfc03c sched_trace_rd_span -EXPORT_SYMBOL_GPL vmlinux 0xf3e16b47 call_switchdev_blocking_notifiers -EXPORT_SYMBOL_GPL vmlinux 0xf402ab2e fsverity_ioctl_measure -EXPORT_SYMBOL_GPL vmlinux 0xf427e76b pci_epc_remove_epf -EXPORT_SYMBOL_GPL vmlinux 0xf42acdf4 dw_pcie_upconfig_setup -EXPORT_SYMBOL_GPL vmlinux 0xf42eaf97 irq_domain_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0xf41d0a40 blk_abort_request +EXPORT_SYMBOL_GPL vmlinux 0xf4310b5b devres_for_each_res EXPORT_SYMBOL_GPL vmlinux 0xf440bc79 raw_v6_hashinfo -EXPORT_SYMBOL_GPL vmlinux 0xf451c37d tcp_reno_cong_avoid -EXPORT_SYMBOL_GPL vmlinux 0xf45a742f relay_buf_full +EXPORT_SYMBOL_GPL vmlinux 0xf4579efb css_sch_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf45b76fb wbt_enable_default EXPORT_SYMBOL_GPL vmlinux 0xf47654df irq_check_status_bit +EXPORT_SYMBOL_GPL vmlinux 0xf48330b2 unwind_get_return_address EXPORT_SYMBOL_GPL vmlinux 0xf4a00349 __tracepoint_block_rq_insert -EXPORT_SYMBOL_GPL vmlinux 0xf4a44746 attribute_container_register +EXPORT_SYMBOL_GPL vmlinux 0xf4ab9ad7 perf_event_disable +EXPORT_SYMBOL_GPL vmlinux 0xf4ac6eea debugfs_create_x64 EXPORT_SYMBOL_GPL vmlinux 0xf4af35c2 rcu_gp_is_normal -EXPORT_SYMBOL_GPL vmlinux 0xf4c76393 dma_buf_attach -EXPORT_SYMBOL_GPL vmlinux 0xf4ceff4e crypto_alloc_shash -EXPORT_SYMBOL_GPL vmlinux 0xf4dbbffa platform_bus -EXPORT_SYMBOL_GPL vmlinux 0xf4eb6463 dm_device_name -EXPORT_SYMBOL_GPL vmlinux 0xf4fc6d9d __class_register -EXPORT_SYMBOL_GPL vmlinux 0xf530d093 gpiod_set_consumer_name -EXPORT_SYMBOL_GPL vmlinux 0xf5354c4d rcuwait_wake_up -EXPORT_SYMBOL_GPL vmlinux 0xf5364473 crypto_register_aeads -EXPORT_SYMBOL_GPL vmlinux 0xf537e990 vp_modern_get_driver_features +EXPORT_SYMBOL_GPL vmlinux 0xf4cbb121 __inet_lookup_established +EXPORT_SYMBOL_GPL vmlinux 0xf4e69bd7 bsg_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0xf4f04d20 crypto_alloc_shash +EXPORT_SYMBOL_GPL vmlinux 0xf4fc059e debugfs_create_bool +EXPORT_SYMBOL_GPL vmlinux 0xf5032983 tcp_sendmsg_locked +EXPORT_SYMBOL_GPL vmlinux 0xf51ce51a platform_msi_domain_free_irqs +EXPORT_SYMBOL_GPL vmlinux 0xf526dc7f udp_destruct_sock +EXPORT_SYMBOL_GPL vmlinux 0xf528606e devlink_dpipe_match_put +EXPORT_SYMBOL_GPL vmlinux 0xf53c71d2 ping_err EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm -EXPORT_SYMBOL_GPL vmlinux 0xf55280bf dm_noflush_suspending -EXPORT_SYMBOL_GPL vmlinux 0xf573a8d4 msi_desc_to_pci_sysdata -EXPORT_SYMBOL_GPL vmlinux 0xf598c47a crypto_unregister_algs +EXPORT_SYMBOL_GPL vmlinux 0xf5644466 skb_scrub_packet +EXPORT_SYMBOL_GPL vmlinux 0xf56c16b3 dma_mmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0xf56c6370 sysfs_chmod_file +EXPORT_SYMBOL_GPL vmlinux 0xf58e4a13 xfrm_local_error +EXPORT_SYMBOL_GPL vmlinux 0xf5998f02 scsi_internal_device_unblock_nowait +EXPORT_SYMBOL_GPL vmlinux 0xf5a5135f platform_device_add EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus -EXPORT_SYMBOL_GPL vmlinux 0xf5c8305a mnt_want_write EXPORT_SYMBOL_GPL vmlinux 0xf5f370e0 async_schedule_node -EXPORT_SYMBOL_GPL vmlinux 0xf5f58f85 crypto_alloc_base -EXPORT_SYMBOL_GPL vmlinux 0xf6147f50 ip6_route_output_flags_noref -EXPORT_SYMBOL_GPL vmlinux 0xf61b5881 __inet_lookup_listener -EXPORT_SYMBOL_GPL vmlinux 0xf65493c2 verify_signature +EXPORT_SYMBOL_GPL vmlinux 0xf6199732 sock_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0xf6290b3f crypto_alloc_acomp +EXPORT_SYMBOL_GPL vmlinux 0xf62fcafc gpiochip_generic_config +EXPORT_SYMBOL_GPL vmlinux 0xf64c007d blk_mq_complete_request_remote EXPORT_SYMBOL_GPL vmlinux 0xf657be8f __iowrite32_copy -EXPORT_SYMBOL_GPL vmlinux 0xf66284e5 ethnl_cable_test_free +EXPORT_SYMBOL_GPL vmlinux 0xf66aaa47 platform_get_irq +EXPORT_SYMBOL_GPL vmlinux 0xf66e4193 find_vpid +EXPORT_SYMBOL_GPL vmlinux 0xf678fb00 skcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0xf68fd853 mmu_interval_notifier_remove EXPORT_SYMBOL_GPL vmlinux 0xf69a7069 unregister_ftrace_function -EXPORT_SYMBOL_GPL vmlinux 0xf6b9e80a sk_msg_free_partial EXPORT_SYMBOL_GPL vmlinux 0xf6beee37 __SCK__tp_func_pelt_cfs_tp EXPORT_SYMBOL_GPL vmlinux 0xf6c8dc62 cpu_hotplug_enable -EXPORT_SYMBOL_GPL vmlinux 0xf6d39027 crypto_alloc_acomp -EXPORT_SYMBOL_GPL vmlinux 0xf7276911 blk_mq_rdma_map_queues +EXPORT_SYMBOL_GPL vmlinux 0xf6efddb6 blkdev_report_zones +EXPORT_SYMBOL_GPL vmlinux 0xf6f18772 tpm_chip_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf6f63106 sk_msg_return +EXPORT_SYMBOL_GPL vmlinux 0xf7290f78 pci_reset_bus EXPORT_SYMBOL_GPL vmlinux 0xf72a65ea tty_get_char_size -EXPORT_SYMBOL_GPL vmlinux 0xf74411ed gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0xf7365fd2 dma_buf_map_attachment +EXPORT_SYMBOL_GPL vmlinux 0xf73a63d8 bpf_trace_run8 EXPORT_SYMBOL_GPL vmlinux 0xf7455c16 input_event_to_user -EXPORT_SYMBOL_GPL vmlinux 0xf749ca6f platform_msi_domain_free_irqs 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 0xf75afdab __bio_try_merge_page -EXPORT_SYMBOL_GPL vmlinux 0xf766a1f1 gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0xf76c0ae2 pci_epc_mem_init +EXPORT_SYMBOL_GPL vmlinux 0xf7710c32 kvm_vcpu_gfn_to_page EXPORT_SYMBOL_GPL vmlinux 0xf782fb07 percpu_ref_switch_to_atomic_sync -EXPORT_SYMBOL_GPL vmlinux 0xf79b6b3c platform_device_add_resources -EXPORT_SYMBOL_GPL vmlinux 0xf7a44ee6 vp_modern_queue_vector -EXPORT_SYMBOL_GPL vmlinux 0xf7ac45b1 dev_forward_skb -EXPORT_SYMBOL_GPL vmlinux 0xf7afef87 ncsi_vlan_rx_add_vid -EXPORT_SYMBOL_GPL vmlinux 0xf7bba5e0 handle_bad_irq +EXPORT_SYMBOL_GPL vmlinux 0xf787b3d0 kvm_io_bus_get_dev +EXPORT_SYMBOL_GPL vmlinux 0xf78b2f21 devlink_reload_enable EXPORT_SYMBOL_GPL vmlinux 0xf7bc95b0 devlink_fmsg_pair_nest_start -EXPORT_SYMBOL_GPL vmlinux 0xf7c9f399 crypto_alloc_rng -EXPORT_SYMBOL_GPL vmlinux 0xf80a41ed skb_mpls_pop EXPORT_SYMBOL_GPL vmlinux 0xf81994a2 hrtimer_cancel EXPORT_SYMBOL_GPL vmlinux 0xf82f3657 work_on_cpu -EXPORT_SYMBOL_GPL vmlinux 0xf83a8139 pci_iov_virtfn_devfn +EXPORT_SYMBOL_GPL vmlinux 0xf842a36e platform_device_register_full EXPORT_SYMBOL_GPL vmlinux 0xf852d746 __tracepoint_tcp_send_reset +EXPORT_SYMBOL_GPL vmlinux 0xf853b589 tun_get_tx_ring EXPORT_SYMBOL_GPL vmlinux 0xf855ccce __zpci_store -EXPORT_SYMBOL_GPL vmlinux 0xf8697e1a watchdog_register_device -EXPORT_SYMBOL_GPL vmlinux 0xf87f7768 fat_fill_super -EXPORT_SYMBOL_GPL vmlinux 0xf89d7bc1 serdev_device_set_parity -EXPORT_SYMBOL_GPL vmlinux 0xf8a0dd25 gmap_disable -EXPORT_SYMBOL_GPL vmlinux 0xf8adfe8d dw_pcie_find_capability +EXPORT_SYMBOL_GPL vmlinux 0xf8720e01 sched_trace_rq_avg_dl +EXPORT_SYMBOL_GPL vmlinux 0xf8896ff1 pci_add_dynid +EXPORT_SYMBOL_GPL vmlinux 0xf89f9cd7 fat_fill_super +EXPORT_SYMBOL_GPL vmlinux 0xf8ac837e watchdog_init_timeout +EXPORT_SYMBOL_GPL vmlinux 0xf8b2e6da fwnode_graph_get_next_endpoint EXPORT_SYMBOL_GPL vmlinux 0xf8c3dc85 inet_getpeer -EXPORT_SYMBOL_GPL vmlinux 0xf8d92873 devlink_params_unpublish -EXPORT_SYMBOL_GPL vmlinux 0xf8e4fb85 ping_getfrag -EXPORT_SYMBOL_GPL vmlinux 0xf8e7b326 nf_queue_entry_get_refs -EXPORT_SYMBOL_GPL vmlinux 0xf8f17f9c __traceiter_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0xf8fc5fcd pci_find_next_capability +EXPORT_SYMBOL_GPL vmlinux 0xf9012824 inet_hash_connect EXPORT_SYMBOL_GPL vmlinux 0xf9093f5b __tracepoint_cpu_frequency +EXPORT_SYMBOL_GPL vmlinux 0xf92e1503 elv_rqhash_del +EXPORT_SYMBOL_GPL vmlinux 0xf946bd2f get_kernel_pages +EXPORT_SYMBOL_GPL vmlinux 0xf94fb6c0 netlink_remove_tap EXPORT_SYMBOL_GPL vmlinux 0xf95322f4 kthread_parkme -EXPORT_SYMBOL_GPL vmlinux 0xf9550f35 relay_switch_subbuf -EXPORT_SYMBOL_GPL vmlinux 0xf95bb773 gpiochip_irqchip_irq_valid EXPORT_SYMBOL_GPL vmlinux 0xf96ecc78 alarm_cancel -EXPORT_SYMBOL_GPL vmlinux 0xf9775cd3 devlink_flash_update_status_notify -EXPORT_SYMBOL_GPL vmlinux 0xf99694b0 call_switchdev_notifiers +EXPORT_SYMBOL_GPL vmlinux 0xf9757d85 fib6_get_table +EXPORT_SYMBOL_GPL vmlinux 0xf97d0a75 addrconf_add_linklocal EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies -EXPORT_SYMBOL_GPL vmlinux 0xf9a3db13 elv_register -EXPORT_SYMBOL_GPL vmlinux 0xf9d84919 pci_user_write_config_dword -EXPORT_SYMBOL_GPL vmlinux 0xf9d852c9 tpm_try_get_ops -EXPORT_SYMBOL_GPL vmlinux 0xf9fed701 dst_cache_get_ip4 -EXPORT_SYMBOL_GPL vmlinux 0xfa0a4d23 cn_add_callback -EXPORT_SYMBOL_GPL vmlinux 0xfa0e7f24 xfrm_dev_state_add -EXPORT_SYMBOL_GPL vmlinux 0xfa13d66b css_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0xfa1ea2c1 dax_supported +EXPORT_SYMBOL_GPL vmlinux 0xf9a6fef6 crypto_stats_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0xf9badc56 blk_ksm_init_passthrough +EXPORT_SYMBOL_GPL vmlinux 0xf9c5d8b9 kvm_init +EXPORT_SYMBOL_GPL vmlinux 0xf9dadf0e crypto_unregister_ahashes +EXPORT_SYMBOL_GPL vmlinux 0xf9ed4bc0 generic_handle_domain_irq EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops -EXPORT_SYMBOL_GPL vmlinux 0xfa248a29 platform_find_device_by_driver -EXPORT_SYMBOL_GPL vmlinux 0xfa36e03c bpf_prog_sub -EXPORT_SYMBOL_GPL vmlinux 0xfa5be3a3 bd_prepare_to_claim -EXPORT_SYMBOL_GPL vmlinux 0xfa5ed23f iommu_unmap_fast +EXPORT_SYMBOL_GPL vmlinux 0xfa2730d9 gpiochip_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0xfa3e0032 gmap_pmdp_idte_global EXPORT_SYMBOL_GPL vmlinux 0xfa666974 queue_work_node EXPORT_SYMBOL_GPL vmlinux 0xfa690589 netdev_cmd_to_name -EXPORT_SYMBOL_GPL vmlinux 0xfa6a54c6 cmf_read -EXPORT_SYMBOL_GPL vmlinux 0xfa799b1c fwnode_graph_get_remote_port_parent -EXPORT_SYMBOL_GPL vmlinux 0xfa8ca067 irq_domain_create_hierarchy -EXPORT_SYMBOL_GPL vmlinux 0xfa8fd063 pci_cfg_access_lock +EXPORT_SYMBOL_GPL vmlinux 0xfa6fc45c devlink_dpipe_headers_register +EXPORT_SYMBOL_GPL vmlinux 0xfa77d5d4 set_online_page_callback +EXPORT_SYMBOL_GPL vmlinux 0xfa893749 blk_queue_zone_write_granularity +EXPORT_SYMBOL_GPL vmlinux 0xfac36f7c kstrdup_quotable_cmdline +EXPORT_SYMBOL_GPL vmlinux 0xfac84ecc virtqueue_enable_cb_delayed EXPORT_SYMBOL_GPL vmlinux 0xfad9c827 kill_dax -EXPORT_SYMBOL_GPL vmlinux 0xfae166e4 exportfs_decode_fh_raw -EXPORT_SYMBOL_GPL vmlinux 0xfaf5256e irq_get_irq_data -EXPORT_SYMBOL_GPL vmlinux 0xfaf9062f __traceiter_fib6_table_lookup -EXPORT_SYMBOL_GPL vmlinux 0xfafe2970 sk_set_memalloc -EXPORT_SYMBOL_GPL vmlinux 0xfaffd4ae devlink_port_attrs_pci_vf_set -EXPORT_SYMBOL_GPL vmlinux 0xfb2733c1 __devm_irq_alloc_descs -EXPORT_SYMBOL_GPL vmlinux 0xfb2c4385 blk_queue_can_use_dma_map_merging +EXPORT_SYMBOL_GPL vmlinux 0xfade866f tpm_try_get_ops +EXPORT_SYMBOL_GPL vmlinux 0xfaebedfa mptcp_subflow_request_sock_ops +EXPORT_SYMBOL_GPL vmlinux 0xfaf6ee81 simple_attr_release +EXPORT_SYMBOL_GPL vmlinux 0xfb23b093 pci_common_swizzle +EXPORT_SYMBOL_GPL vmlinux 0xfb28c0e6 crypto_unregister_kpp +EXPORT_SYMBOL_GPL vmlinux 0xfb29da5c ipv4_sk_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync -EXPORT_SYMBOL_GPL vmlinux 0xfb5b82f5 shash_free_singlespawn_instance +EXPORT_SYMBOL_GPL vmlinux 0xfb4b1636 tty_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0xfb5986c0 bsg_job_done +EXPORT_SYMBOL_GPL vmlinux 0xfb655a97 __iomap_dio_rw +EXPORT_SYMBOL_GPL vmlinux 0xfb839c26 skb_send_sock_locked EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action +EXPORT_SYMBOL_GPL vmlinux 0xfbc992e3 ccw_device_set_timeout +EXPORT_SYMBOL_GPL vmlinux 0xfbf17c0a rtnl_link_register EXPORT_SYMBOL_GPL vmlinux 0xfbffd601 net_prio_cgrp_subsys_on_dfl_key EXPORT_SYMBOL_GPL vmlinux 0xfc03d97a page_is_ram +EXPORT_SYMBOL_GPL vmlinux 0xfc1036db subsys_find_device_by_id EXPORT_SYMBOL_GPL vmlinux 0xfc14bb2e dm_get_dev_t EXPORT_SYMBOL_GPL vmlinux 0xfc19bc45 crypto_dh_encode_key EXPORT_SYMBOL_GPL vmlinux 0xfc1d90a5 hwrng_unregister -EXPORT_SYMBOL_GPL vmlinux 0xfc258fb4 set_secondary_fwnode -EXPORT_SYMBOL_GPL vmlinux 0xfc293980 devm_create_dev_dax -EXPORT_SYMBOL_GPL vmlinux 0xfc2c44c8 get_user_pages_fast_only -EXPORT_SYMBOL_GPL vmlinux 0xfc3aa091 tty_wakeup -EXPORT_SYMBOL_GPL vmlinux 0xfc40ffb2 pci_find_next_ext_capability -EXPORT_SYMBOL_GPL vmlinux 0xfc5eef97 paste_selection -EXPORT_SYMBOL_GPL vmlinux 0xfc64e0c2 __blkg_prfill_rwstat -EXPORT_SYMBOL_GPL vmlinux 0xfc98f05f device_rename +EXPORT_SYMBOL_GPL vmlinux 0xfc598aa4 ping_rcv +EXPORT_SYMBOL_GPL vmlinux 0xfc60f419 sched_trace_rq_avg_irq +EXPORT_SYMBOL_GPL vmlinux 0xfc63a40b pci_hp_del +EXPORT_SYMBOL_GPL vmlinux 0xfca5dae1 cio_disable_subchannel EXPORT_SYMBOL_GPL vmlinux 0xfcbfec70 add_memory_driver_managed EXPORT_SYMBOL_GPL vmlinux 0xfcc1edd3 memory_block_size_bytes -EXPORT_SYMBOL_GPL vmlinux 0xfce0574d dma_vmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0xfcc35099 fwnode_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0xfccdc846 fuse_direct_io +EXPORT_SYMBOL_GPL vmlinux 0xfccef095 s390_pci_dma_ops +EXPORT_SYMBOL_GPL vmlinux 0xfcd1d11a nf_queue_nf_hook_drop EXPORT_SYMBOL_GPL vmlinux 0xfce179c9 cleanup_srcu_struct -EXPORT_SYMBOL_GPL vmlinux 0xfce3c423 get_pid_task -EXPORT_SYMBOL_GPL vmlinux 0xfce969b4 pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0xfce835b8 serdev_device_write_room +EXPORT_SYMBOL_GPL vmlinux 0xfcef1782 scsi_schedule_eh EXPORT_SYMBOL_GPL vmlinux 0xfcf9ef73 hw_protection_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xfd01ece8 fat_alloc_new_dir -EXPORT_SYMBOL_GPL vmlinux 0xfd2470ff __skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0xfd085e35 class_compat_remove_link +EXPORT_SYMBOL_GPL vmlinux 0xfd1cfba9 perf_event_release_kernel EXPORT_SYMBOL_GPL vmlinux 0xfd2a481e lzorle1x_1_compress -EXPORT_SYMBOL_GPL vmlinux 0xfd8deb9b mddev_init_writes_pending -EXPORT_SYMBOL_GPL vmlinux 0xfda1fa5c gpiochip_unlock_as_irq -EXPORT_SYMBOL_GPL vmlinux 0xfda49442 blk_bio_list_merge +EXPORT_SYMBOL_GPL vmlinux 0xfd3e1cd6 ccw_device_get_util_str +EXPORT_SYMBOL_GPL vmlinux 0xfd6d4b8a blk_mq_rdma_map_queues +EXPORT_SYMBOL_GPL vmlinux 0xfd7aefe3 gpio_to_desc +EXPORT_SYMBOL_GPL vmlinux 0xfda8b6a0 devm_blk_ksm_init +EXPORT_SYMBOL_GPL vmlinux 0xfdadb136 device_link_del +EXPORT_SYMBOL_GPL vmlinux 0xfdbbf0d4 sock_diag_destroy EXPORT_SYMBOL_GPL vmlinux 0xfdbd7a17 crypto_get_attr_type -EXPORT_SYMBOL_GPL vmlinux 0xfdcf91f2 cpci_hp_register_controller -EXPORT_SYMBOL_GPL vmlinux 0xfdd44425 pci_assign_unassigned_bridge_resources -EXPORT_SYMBOL_GPL vmlinux 0xfde360cb kvm_write_guest_cached -EXPORT_SYMBOL_GPL vmlinux 0xfdf888c5 bpf_trace_run7 -EXPORT_SYMBOL_GPL vmlinux 0xfdfb0744 security_inode_setattr +EXPORT_SYMBOL_GPL vmlinux 0xfddd62d0 register_trace_event +EXPORT_SYMBOL_GPL vmlinux 0xfdf57b4a dm_internal_resume_fast +EXPORT_SYMBOL_GPL vmlinux 0xfdf9ec30 kvm_vcpu_gfn_to_hva EXPORT_SYMBOL_GPL vmlinux 0xfdfde1c9 xas_load EXPORT_SYMBOL_GPL vmlinux 0xfe01e7e2 blkg_rwstat_init -EXPORT_SYMBOL_GPL vmlinux 0xfe0b9203 pci_sriov_configure_simple +EXPORT_SYMBOL_GPL vmlinux 0xfe17439b sched_setattr_nocheck EXPORT_SYMBOL_GPL vmlinux 0xfe1a7a7b mpi_point_release +EXPORT_SYMBOL_GPL vmlinux 0xfe2f5c80 __irq_resolve_mapping +EXPORT_SYMBOL_GPL vmlinux 0xfe465f44 device_get_next_child_node EXPORT_SYMBOL_GPL vmlinux 0xfe476039 ktime_get_resolution_ns -EXPORT_SYMBOL_GPL vmlinux 0xfe5536ba devlink_dpipe_table_resource_set -EXPORT_SYMBOL_GPL vmlinux 0xfe5d8184 inet_hash -EXPORT_SYMBOL_GPL vmlinux 0xfe6bdb53 devres_release_group -EXPORT_SYMBOL_GPL vmlinux 0xfe6d8393 pci_store_saved_state +EXPORT_SYMBOL_GPL vmlinux 0xfe5f3f38 pci_sriov_configure_simple +EXPORT_SYMBOL_GPL vmlinux 0xfe6e20cf crypto_unregister_template +EXPORT_SYMBOL_GPL vmlinux 0xfe75dcd5 debugfs_remove +EXPORT_SYMBOL_GPL vmlinux 0xfe821942 md_do_sync EXPORT_SYMBOL_GPL vmlinux 0xfe8cdb84 ring_buffer_alloc_read_page -EXPORT_SYMBOL_GPL vmlinux 0xfe919873 crypto_stats_rng_generate EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free -EXPORT_SYMBOL_GPL vmlinux 0xfe9c29af fuse_dax_cancel_work -EXPORT_SYMBOL_GPL vmlinux 0xfecf999b bus_find_device +EXPORT_SYMBOL_GPL vmlinux 0xfea3dd36 sk_detach_filter +EXPORT_SYMBOL_GPL vmlinux 0xfea88533 acomp_request_free +EXPORT_SYMBOL_GPL vmlinux 0xfeb8bc33 dma_buf_dynamic_attach +EXPORT_SYMBOL_GPL vmlinux 0xfebd28d5 auxiliary_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xfece6c6c crypto_register_akcipher EXPORT_SYMBOL_GPL vmlinux 0xfede9222 __tracepoint_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0xfee2da37 mptcp_get_reset_option EXPORT_SYMBOL_GPL vmlinux 0xfefa2adb input_ff_effect_from_user -EXPORT_SYMBOL_GPL vmlinux 0xff019d4a iommu_dev_disable_feature EXPORT_SYMBOL_GPL vmlinux 0xff05fa13 vring_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xff0cc8ae kthread_flush_worker -EXPORT_SYMBOL_GPL vmlinux 0xff0f5d1c virtqueue_get_buf EXPORT_SYMBOL_GPL vmlinux 0xff13d8c6 irq_set_affinity_hint -EXPORT_SYMBOL_GPL vmlinux 0xff3b310b gfn_to_hva -EXPORT_SYMBOL_GPL vmlinux 0xff3c8768 blk_ksm_init_passthrough +EXPORT_SYMBOL_GPL vmlinux 0xff1510e1 blk_ksm_reprogram_all_keys +EXPORT_SYMBOL_GPL vmlinux 0xff1a44f2 blk_mq_unfreeze_queue +EXPORT_SYMBOL_GPL vmlinux 0xff1afac9 pfn_to_online_page +EXPORT_SYMBOL_GPL vmlinux 0xff1e2fc7 crypto_unregister_templates +EXPORT_SYMBOL_GPL vmlinux 0xff337833 disable_cmf +EXPORT_SYMBOL_GPL vmlinux 0xff3bfbff device_remove_file EXPORT_SYMBOL_GPL vmlinux 0xff403774 region_intersects -EXPORT_SYMBOL_GPL vmlinux 0xff4ba258 xfrm_audit_state_notfound -EXPORT_SYMBOL_GPL vmlinux 0xff5d75fe sk_detach_filter -EXPORT_SYMBOL_GPL vmlinux 0xff66e8b1 ncsi_register_dev +EXPORT_SYMBOL_GPL vmlinux 0xff704df9 crypto_shash_final +EXPORT_SYMBOL_GPL vmlinux 0xff713a82 trace_seq_path +EXPORT_SYMBOL_GPL vmlinux 0xff77a3a5 clockevents_unbind_device EXPORT_SYMBOL_GPL vmlinux 0xff7e33bf mpi_sub_ui EXPORT_SYMBOL_GPL vmlinux 0xff81487d gpiod_remove_lookup_table EXPORT_SYMBOL_GPL vmlinux 0xff8cbf4b rhashtable_walk_start_check -EXPORT_SYMBOL_GPL vmlinux 0xff9c4dd1 debugfs_create_ulong -EXPORT_SYMBOL_GPL vmlinux 0xff9df6a9 wbc_account_cgroup_owner +EXPORT_SYMBOL_GPL vmlinux 0xff92da50 kvm_vcpu_destroy EXPORT_SYMBOL_GPL vmlinux 0xff9e23d1 hugetlb_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xffa1f7d1 gpiod_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xffa15148 kill_device EXPORT_SYMBOL_GPL vmlinux 0xffae8e8b nsecs_to_jiffies -EXPORT_SYMBOL_GPL vmlinux 0xffd9b7c6 xfrm_audit_policy_add +EXPORT_SYMBOL_GPL vmlinux 0xffaee000 crypto_skcipher_setkey +EXPORT_SYMBOL_GPL vmlinux 0xffd581f8 tpm_is_tpm2 +EXPORT_SYMBOL_GPL vmlinux 0xffdbc799 dax_finish_sync_fault FIRMWARE_LOADER_PRIVATE EXPORT_SYMBOL_GPL 0xd3ae7756 fw_fallback_config vmlinux -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x058a24e9 nvme_execute_passthru_rq drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x377cd7fd nvme_put_ns drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x556c6248 nvme_command_effects drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x57a5b3dc nvme_ctrl_from_file drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x9930cd91 nvme_find_get_ns drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x2899bc5c nvme_put_ns drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x6bccdabc nvme_execute_passthru_rq drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x727b3555 nvme_find_get_ns drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x8fb4ad26 nvme_command_effects drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x9dd8b942 nvme_ctrl_from_file drivers/nvme/host/nvme-core diff -u linux-intel-iotg-5.15-5.15.0/debian.master/abi/s390x/generic.modules linux-intel-iotg-5.15-5.15.0/debian.master/abi/s390x/generic.modules --- linux-intel-iotg-5.15-5.15.0/debian.master/abi/s390x/generic.modules +++ linux-intel-iotg-5.15-5.15.0/debian.master/abi/s390x/generic.modules @@ -391,7 +391,6 @@ l2tp_netlink lcs libblake2s -libblake2s-generic libceph libchacha libchacha20poly1305 diff -u linux-intel-iotg-5.15-5.15.0/debian.master/abi/version linux-intel-iotg-5.15-5.15.0/debian.master/abi/version --- linux-intel-iotg-5.15-5.15.0/debian.master/abi/version +++ linux-intel-iotg-5.15-5.15.0/debian.master/abi/version @@ -1 +1 @@ -5.15.0-34.35 +5.15.0-46.49 diff -u linux-intel-iotg-5.15-5.15.0/debian.master/changelog linux-intel-iotg-5.15-5.15.0/debian.master/changelog --- linux-intel-iotg-5.15-5.15.0/debian.master/changelog +++ linux-intel-iotg-5.15-5.15.0/debian.master/changelog @@ -1,3 +1,2220 @@ +linux (5.15.0-47.51) jammy; urgency=medium + + * jammy/linux: 5.15.0-47.51 -proposed tracker (LP: #1983903) + + * Jammy update: v5.15.46 upstream stable release (LP: #1981864) + - UBUNTU: [Packaging] Move python3-dev to build-depends + + * touchpad and touchscreen doesn't work at all on ACER Spin 5 (SP513-54N) + (LP: #1884232) + - x86/PCI: Eliminate remove_e820_regions() common subexpressions + - x86: Log resource clipping for E820 regions + - x86/PCI: Clip only host bridge windows for E820 regions + - x86/PCI: Add kernel cmdline options to use/ignore E820 reserved regions + - x86/PCI: Disable E820 reserved region clipping via quirks + - x86/PCI: Revert "x86/PCI: Clip only host bridge windows for E820 regions" + + * [SRU][H/OEM-5.13/OEM-5.14/U][J/OEM-5.17/U] Fix invalid MAC address after + hotplug tbt dock (LP: #1942999) + - SAUCE: igc: wait for the MAC copy when enabled MAC passthrough + + * Mass Storage Gadget driver truncates device >2TB (LP: #1981390) + - usb: gadget: storage: add support for media larger than 2T + + * AMD Rembrandt: DP tunneling fails with Thunderbolt monitors (LP: #1983143) + - SAUCE: drm/amd: Fix DP Tunneling with Thunderbolt monitors + - drm/amd/display: Fix for dmub outbox notification enable + - Revert "drm/amd/display: Fix DPIA outbox timeout after S3/S4/reset" + - drm/amd/display: Reset link encoder assignments for GPU reset + - drm/amd/display: Fix DPIA outbox timeout after S3/S4/reset + - drm/amd/display: Fix new dmub notification enabling in DM + - SAUCE: thunderbolt: Add DP out resource when DP tunnel is discovered. + + * Fix sub-optimal I210 network speed (LP: #1976438) + - igb: Make DMA faster when CPU is active on the PCIe link + + * e1000e report hardware hang (LP: #1973104) + - e1000e: Enable GPT clock before sending message to CSME + - Revert "e1000e: Fix possible HW unit hang after an s0ix exit" + + * ioam6.sh in net from ubuntu_kernel_selftests fails with 5.15 kernels in + Focal (LP: #1982930) + - selftests: net: fix IOAM test skip return code + + * Additional fix for TGL + AUO panel flickering (LP: #1983297) + - Revert "UBUNTU: SAUCE: drm/i915/display/psr: Fix flicker on TGL + AUO panel" + - drm/i915/display: Fix sel fetch plane offset calculation + - drm/i915: Nuke ORIGIN_GTT + - drm/i915/display: Drop PSR support from HSW and BDW + - drm/i915/display/psr: Handle plane and pipe restrictions at every page flip + - drm/i915/display/psr: Do full fetch when handling multi-planar formats + - drm/i915/display: Drop unnecessary frontbuffer flushes + - drm/i915/display: Handle frontbuffer rendering when PSR2 selective fetch is + enabled + - drm/i915/display: Fix glitches when moving cursor with PSR2 selective fetch + enabled + - SAUCE: drm/i915/display/psr: Reinstate fix for TGL + AUO panel flicker + + * AMD Yellow Carp DMCUB fw update for s0i3 B0 fixes (LP: #1957026) + - drm/amd/display: Optimize bandwidth on following fast update + - drm/amd/display: Fix surface optimization regression on Carrizo + - drm/amd/display: Reset DMCUB before HW init + + * GPIO character device v1 API not enabled in kernel (LP: #1953613) + - [Config] Enable CONFIG_GPIO_CDEV_V1 + + * intel_iommu: Fix enable intel_iommu, Ubuntu 22.04 installation crashes + (LP: #1982104) + - iommu/vt-d: Fix RID2PASID setup/teardown failure + + * Headset mic with Cirrus logic codec doesn't work (LP: #1972815) + - ASoC: cs42l42: Move CS42L42 register descriptions to general include + - ALSA: hda/cs8409: Use general cs42l42 include in cs8409 hda driver + - ALSA: hda/cs8409: Support manual mode detection for CS42L42 + + * Failed to resume from S3 blocked by atlantic driver[1d6a:94c0] + (LP: #1981950) + - net: atlantic: remove deep parameter on suspend/resume functions + - net: atlantic: remove aq_nic_deinit() when resume + + * Make cm32181 sensor work after system suspend (LP: #1981773) + - iio: light: cm32181: Add PM support + + * Clear PCI errors left from BIOS (LP: #1981173) + - PCI: Clear PCI_STATUS when setting up device + + * Fix AMDGPU blank screen when Type-C DP alt is in use (LP: #1980060) + - drm/amd/display: Query DMCUB for dp alt status + - drm/amd/display: Add version check before using DP alt query interface + + * Fix WD22TB4 suspend and resume, two external monitor can not output + (LP: #1979267) + - drm/dp/mst: Read the extended DPCD capabilities during system resume + + * [SRU] bcache deadlock during read IO in writeback mode (LP: #1980925) + - bcache: memset on stack variables in bch_btree_check() and + bch_sectors_dirty_init() + + * Audio mute key (f5) LED and Mic mute key (f8) LED are no function on HP + 440/450/640/650 G9 (LP: #1982716) + - ALSA: hda/realtek: fix mute/micmute LEDs for HP machines + + * Enable WiFi hotspot feature for MediaTek MT7921 (LP: #1979173) + - mt76: mt7921: Add AP mode support + - mt76: mt7921: not support beacon offload disable command + - mt76: mt7921: fix command timeout in AP stop period + + * Fix drm/amd/pm: enable ASPM by default (LP: #1966680) + - drm/amd: Refactor `amdgpu_aspm` to be evaluated per device + - drm/amd: Use amdgpu_device_should_use_aspm on navi umd pstate switching + - drm/amdgpu: vi: disable ASPM on Intel Alder Lake based systems + + * Power cycle USB ports on shutdown/reboot (LP: #1976503) + - xhci: turn off port power in shutdown + + * Jammy update: v5.15.46 upstream stable release (LP: #1981864) + - binfmt_flat: do not stop relocating GOT entries prematurely on riscv + - parisc/stifb: Implement fb_is_primary_device() + - parisc/stifb: Keep track of hardware path of graphics card + - RISC-V: Mark IORESOURCE_EXCLUSIVE for reserved mem instead of + IORESOURCE_BUSY + - riscv: Initialize thread pointer before calling C functions + - riscv: Fix irq_work when SMP is disabled + - riscv: Wire up memfd_secret in UAPI header + - riscv: Move alternative length validation into subsection + - ALSA: hda/realtek - Add new type for ALC245 + - ALSA: hda/realtek: Enable 4-speaker output for Dell XPS 15 9520 laptop + - ALSA: hda/realtek - Fix microphone noise on ASUS TUF B550M-PLUS + - ALSA: usb-audio: Cancel pending work at closing a MIDI substream + - USB: serial: option: add Quectel BG95 modem + - USB: new quirk for Dell Gen 2 devices + - usb: isp1760: Fix out-of-bounds array access + - usb: dwc3: gadget: Move null pinter check to proper place + - usb: core: hcd: Add support for deferring roothub registration + - fs/ntfs3: Update valid size if -EIOCBQUEUED + - fs/ntfs3: Fix fiemap + fix shrink file size (to remove preallocated space) + - fs/ntfs3: Keep preallocated only if option prealloc enabled + - fs/ntfs3: Check new size for limits + - fs/ntfs3: In function ntfs_set_acl_ex do not change inode->i_mode if called + from function ntfs_init_acl + - fs/ntfs3: Fix some memory leaks in an error handling path of 'log_replay()' + - fs/ntfs3: Update i_ctime when xattr is added + - fs/ntfs3: Restore ntfs_xattr_get_acl and ntfs_xattr_set_acl functions + - cifs: fix potential double free during failed mount + - cifs: when extending a file with falloc we should make files not-sparse + - xhci: Allow host runtime PM as default for Intel Alder Lake N xHCI + - platform/x86: intel-hid: fix _DSM function index handling + - x86/MCE/AMD: Fix memory leak when threshold_create_bank() fails + - perf/x86/intel: Fix event constraints for ICL + - x86/kexec: fix memory leak of elf header buffer + - x86/sgx: Set active memcg prior to shmem allocation + - ptrace/um: Replace PT_DTRACE with TIF_SINGLESTEP + - ptrace/xtensa: Replace PT_SINGLESTEP with TIF_SINGLESTEP + - ptrace: Reimplement PTRACE_KILL by always sending SIGKILL + - btrfs: add "0x" prefix for unsupported optional features + - btrfs: return correct error number for __extent_writepage_io() + - btrfs: repair super block num_devices automatically + - btrfs: fix the error handling for submit_extent_page() for + btrfs_do_readpage() + - iommu/vt-d: Add RPLS to quirk list to skip TE disabling + - drm/vmwgfx: validate the screen formats + - drm/virtio: fix NULL pointer dereference in virtio_gpu_conn_get_modes + - selftests/bpf: Fix vfs_link kprobe definition + - selftests/bpf: Fix parsing of prog types in UAPI hdr for bpftool sync + - mwifiex: add mutex lock for call in mwifiex_dfs_chan_sw_work_queue + - b43legacy: Fix assigning negative value to unsigned variable + - b43: Fix assigning negative value to unsigned variable + - ipw2x00: Fix potential NULL dereference in libipw_xmit() + - ipv6: fix locking issues with loops over idev->addr_list + - fbcon: Consistently protect deferred_takeover with console_lock() + - x86/platform/uv: Update TSC sync state for UV5 + - ACPICA: Avoid cache flush inside virtual machines + - mac80211: minstrel_ht: fix where rate stats are stored (fixes debugfs + output) + - drm/komeda: return early if drm_universal_plane_init() fails. + - drm/amd/display: Disabling Z10 on DCN31 + - rcu-tasks: Fix race in schedule and flush work + - rcu: Make TASKS_RUDE_RCU select IRQ_WORK + - sfc: ef10: Fix assigning negative value to unsigned variable + - ALSA: jack: Access input_dev under mutex + - spi: spi-rspi: Remove setting {src,dst}_{addr,addr_width} based on DMA + direction + - tools/power turbostat: fix ICX DRAM power numbers + - scsi: lpfc: Move cfg_log_verbose check before calling lpfc_dmp_dbg() + - scsi: lpfc: Fix SCSI I/O completion and abort handler deadlock + - scsi: lpfc: Fix call trace observed during I/O with CMF enabled + - cpuidle: PSCI: Improve support for suspend-to-RAM for PSCI OSI mode + - drm/amd/pm: fix double free in si_parse_power_table() + - ASoC: rsnd: care default case on rsnd_ssiu_busif_err_status_clear() + - ASoC: rsnd: care return value from rsnd_node_fixed_index() + - ath9k: fix QCA9561 PA bias level + - media: venus: hfi: avoid null dereference in deinit + - media: pci: cx23885: Fix the error handling in cx23885_initdev() + - media: cx25821: Fix the warning when removing the module + - md/bitmap: don't set sb values if can't pass sanity check + - mmc: jz4740: Apply DMA engine limits to maximum segment size + - drivers: mmc: sdhci_am654: Add the quirk to set TESTCD bit + - scsi: megaraid: Fix error check return value of register_chrdev() + - drm/amdgpu/sdma: Fix incorrect calculations of the wptr of the doorbells + - scsi: ufs: Use pm_runtime_resume_and_get() instead of pm_runtime_get_sync() + - scsi: lpfc: Fix resource leak in lpfc_sli4_send_seq_to_ulp() + - ath11k: disable spectral scan during spectral deinit + - ASoC: Intel: bytcr_rt5640: Add quirk for the HP Pro Tablet 408 + - drm/plane: Move range check for format_count earlier + - drm/amd/pm: fix the compile warning + - ath10k: skip ath10k_halt during suspend for driver state RESTARTING + - arm64: compat: Do not treat syscall number as ESR_ELx for a bad syscall + - drm: msm: fix error check return value of irq_of_parse_and_map() + - scsi: target: tcmu: Fix possible data corruption + - ipv6: Don't send rs packets to the interface of ARPHRD_TUNNEL + - net/mlx5: fs, delete the FTE when there are no rules attached to it + - ASoC: dapm: Don't fold register value changes into notifications + - mlxsw: spectrum_dcb: Do not warn about priority changes + - mlxsw: Treat LLDP packets as control + - drm/amdgpu/psp: move PSP memory alloc from hw_init to sw_init + - drm/amdgpu/ucode: Remove firmware load type check in amdgpu_ucode_free_bo + - regulator: mt6315: Enforce regulator-compatible, not name + - HID: bigben: fix slab-out-of-bounds Write in bigben_probe + - of: Support more than one crash kernel regions for kexec -s + - ASoC: tscs454: Add endianness flag in snd_soc_component_driver + - scsi: lpfc: Alter FPIN stat accounting logic + - net: remove two BUG() from skb_checksum_help() + - s390/preempt: disable __preempt_count_add() optimization for + PROFILE_ALL_BRANCHES + - perf/amd/ibs: Cascade pmu init functions' return value + - sched/core: Avoid obvious double update_rq_clock warning + - spi: stm32-qspi: Fix wait_cmd timeout in APM mode + - dma-debug: change allocation mode from GFP_NOWAIT to GFP_ATIOMIC + - ACPI: PM: Block ASUS B1400CEAE from suspend to idle by default + - ipmi:ssif: Check for NULL msg when handling events and messages + - ipmi: Fix pr_fmt to avoid compilation issues + - rtlwifi: Use pr_warn instead of WARN_ONCE + - mt76: mt7921: accept rx frames with non-standard VHT MCS10-11 + - mt76: fix encap offload ethernet type check + - media: rga: fix possible memory leak in rga_probe + - media: coda: limit frame interval enumeration to supported encoder frame + sizes + - media: hantro: HEVC: unconditionnaly set pps_{cb/cr}_qp_offset values + - media: ccs-core.c: fix failure to call clk_disable_unprepare + - media: imon: reorganize serialization + - media: cec-adap.c: fix is_configuring state + - usbnet: Run unregister_netdev() before unbind() again + - openrisc: start CPU timer early in boot + - nvme-pci: fix a NULL pointer dereference in nvme_alloc_admin_tags + - ASoC: rt5645: Fix errorenous cleanup order + - nbd: Fix hung on disconnect request if socket is closed before + - drm/amd/pm: update smartshift powerboost calc for smu12 + - drm/amd/pm: update smartshift powerboost calc for smu13 + - net: phy: micrel: Allow probing without .driver_data + - media: exynos4-is: Fix compile warning + - media: hantro: Stop using H.264 parameter pic_num + - ASoC: max98357a: remove dependency on GPIOLIB + - ASoC: rt1015p: remove dependency on GPIOLIB + - ACPI: CPPC: Assume no transition latency if no PCCT + - nvme: set non-mdts limits in nvme_scan_work + - can: mcp251xfd: silence clang's -Wunaligned-access warning + - x86/microcode: Add explicit CPU vendor dependency + - net: ipa: ignore endianness if there is no header + - m68k: atari: Make Atari ROM port I/O write macros return void + - rxrpc: Return an error to sendmsg if call failed + - rxrpc, afs: Fix selection of abort codes + - afs: Adjust ACK interpretation to try and cope with NAT + - eth: tg3: silence the GCC 12 array-bounds warning + - char: tpm: cr50_i2c: Suppress duplicated error message in .remove() + - selftests/bpf: fix btf_dump/btf_dump due to recent clang change + - gfs2: use i_lock spin_lock for inode qadata + - scsi: target: tcmu: Avoid holding XArray lock when calling lock_page + - IB/rdmavt: add missing locks in rvt_ruc_loopback + - ARM: dts: ox820: align interrupt controller node name with dtschema + - ARM: dts: socfpga: align interrupt controller node name with dtschema + - ARM: dts: s5pv210: align DMA channels with dtschema + - arm64: dts: qcom: msm8994: Fix the cont_splash_mem address + - arm64: dts: qcom: msm8994: Fix BLSP[12]_DMA channels count + - PM / devfreq: rk3399_dmc: Disable edev on remove() + - crypto: ccree - use fine grained DMA mapping dir + - soc: ti: ti_sci_pm_domains: Check for null return of devm_kcalloc + - fs: jfs: fix possible NULL pointer dereference in dbFree() + - arm64: dts: qcom: sdm845-xiaomi-beryllium: fix typo in panel's vddio-supply + property + - ALSA: usb-audio: Add quirk bits for enabling/disabling generic implicit fb + - ALSA: usb-audio: Move generic implicit fb quirk entries into quirks.c + - ARM: OMAP1: clock: Fix UART rate reporting algorithm + - powerpc/fadump: Fix fadump to work with a different endian capture kernel + - fat: add ratelimit to fat*_ent_bread() + - pinctrl: renesas: rzn1: Fix possible null-ptr-deref in + sh_pfc_map_resources() + - ARM: versatile: Add missing of_node_put in dcscb_init + - ARM: dts: exynos: add atmel,24c128 fallback to Samsung EEPROM + - ARM: hisi: Add missing of_node_put after of_find_compatible_node + - cpufreq: Avoid unnecessary frequency updates due to mismatch + - powerpc/rtas: Keep MSR[RI] set when calling RTAS + - PCI: Avoid pci_dev_lock() AB/BA deadlock with sriov_numvfs_store() + - KVM: PPC: Book3S HV Nested: L2 LPCR should inherit L1 LPES setting + - alpha: fix alloc_zeroed_user_highpage_movable() + - tracing: incorrect isolate_mote_t cast in mm_vmscan_lru_isolate + - powerpc/powernv/vas: Assign real address to rx_fifo in vas_rx_win_attr + - powerpc/xics: fix refcount leak in icp_opal_init() + - powerpc/powernv: fix missing of_node_put in uv_init() + - macintosh/via-pmu: Fix build failure when CONFIG_INPUT is disabled + - powerpc/iommu: Add missing of_node_put in iommu_init_early_dart + - smb3: check for null tcon + - RDMA/hfi1: Prevent panic when SDMA is disabled + - Input: gpio-keys - cancel delayed work only in case of GPIO + - drm: fix EDID struct for old ARM OABI format + - drm/bridge_connector: enable HPD by default if supported + - dt-bindings: display: sitronix, st7735r: Fix backlight in example + - drm/vmwgfx: Fix an invalid read + - ath11k: acquire ab->base_lock in unassign when finding the peer by addr + - drm: bridge: it66121: Fix the register page length + - ath9k: fix ar9003_get_eepmisc + - drm/edid: fix invalid EDID extension block filtering + - drm/bridge: adv7511: clean up CEC adapter when probe fails + - drm: bridge: icn6211: Fix register layout + - drm: bridge: icn6211: Fix HFP_HSW_HBP_HI and HFP_MIN handling + - mtd: spinand: gigadevice: fix Quad IO for GD5F1GQ5UExxG + - spi: qcom-qspi: Add minItems to interconnect-names + - ASoC: mediatek: Fix error handling in mt8173_max98090_dev_probe + - ASoC: mediatek: Fix missing of_node_put in mt2701_wm8960_machine_probe + - x86/delay: Fix the wrong asm constraint in delay_loop() + - drm/vc4: hvs: Fix frame count register readout + - drm/mediatek: Fix mtk_cec_mask() + - drm/vc4: hvs: Reset muxes at probe time + - drm/vc4: txp: Don't set TXP_VSTART_AT_EOF + - drm/vc4: txp: Force alpha to be 0xff if it's disabled + - libbpf: Don't error out on CO-RE relos for overriden weak subprogs + - x86/PCI: Fix ALi M1487 (IBC) PIRQ router link value interpretation + - mptcp: reset the packet scheduler on PRIO change + - nl80211: show SSID for P2P_GO interfaces + - drm/komeda: Fix an undefined behavior bug in komeda_plane_add() + - drm: mali-dp: potential dereference of null pointer + - spi: spi-ti-qspi: Fix return value handling of wait_for_completion_timeout + - scftorture: Fix distribution of short handler delays + - net: dsa: mt7530: 1G can also support 1000BASE-X link mode + - ixp4xx_eth: fix error check return value of platform_get_irq() + - NFC: NULL out the dev->rfkill to prevent UAF + - efi: Add missing prototype for efi_capsule_setup_info + - device property: Check fwnode->secondary when finding properties + - device property: Allow error pointer to be passed to fwnode APIs + - target: remove an incorrect unmap zeroes data deduction + - drbd: fix duplicate array initializer + - EDAC/dmc520: Don't print an error for each unconfigured interrupt line + - mtd: rawnand: denali: Use managed device resources + - HID: hid-led: fix maximum brightness for Dream Cheeky + - HID: elan: Fix potential double free in elan_input_configured + - drm/bridge: Fix error handling in analogix_dp_probe + - regulator: da9121: Fix uninit-value in da9121_assign_chip_model() + - drm/mediatek: dpi: Use mt8183 output formats for mt8192 + - signal: Deliver SIGTRAP on perf event asynchronously if blocked + - sched/fair: Fix cfs_rq_clock_pelt() for throttled cfs_rq + - sched/psi: report zeroes for CPU full at the system level + - spi: img-spfi: Fix pm_runtime_get_sync() error checking + - cpufreq: Fix possible race in cpufreq online error path + - printk: use atomic updates for klogd work + - printk: add missing memory barrier to wake_up_klogd() + - printk: wake waiters for safe and NMI contexts + - ath9k_htc: fix potential out of bounds access with invalid + rxstatus->rs_keyix + - media: i2c: max9286: Use dev_err_probe() helper + - media: i2c: max9286: Use "maxim,gpio-poc" property + - media: i2c: max9286: fix kernel oops when removing module + - media: hantro: Empty encoder capture buffers by default + - drm/panel: simple: Add missing bus flags for Innolux G070Y2-L01 + - ALSA: pcm: Check for null pointer of pointer substream before dereferencing + it + - mtdblock: warn if opened on NAND + - inotify: show inotify mask flags in proc fdinfo + - fsnotify: fix wrong lockdep annotations + - spi: rockchip: Stop spi slave dma receiver when cs inactive + - spi: rockchip: Preset cs-high and clk polarity in setup progress + - spi: rockchip: fix missing error on unsupported SPI_CS_HIGH + - of: overlay: do not break notify on NOTIFY_{OK|STOP} + - selftests/damon: add damon to selftests root Makefile + - drm/msm/dp: Modify prototype of encoder based API + - drm/msm/hdmi: switch to drm_bridge_connector + - drm/msm/dpu: adjust display_v_end for eDP and DP + - scsi: iscsi: Fix harmless double shift bug + - scsi: ufs: qcom: Fix ufs_qcom_resume() + - scsi: ufs: core: Exclude UECxx from SFR dump list + - drm/v3d: Fix null pointer dereference of pointer perfmon + - selftests/resctrl: Fix null pointer dereference on open failed + - libbpf: Fix logic for finding matching program for CO-RE relocation + - mtd: spi-nor: core: Check written SR value in + spi_nor_write_16bit_sr_and_check() + - x86/pm: Fix false positive kmemleak report in msr_build_context() + - mtd: rawnand: cadence: fix possible null-ptr-deref in + cadence_nand_dt_probe() + - mtd: rawnand: intel: fix possible null-ptr-deref in ebu_nand_probe() + - x86/speculation: Add missing prototype for unpriv_ebpf_notify() + - ASoC: rk3328: fix disabling mclk on pclk probe failure + - perf tools: Add missing headers needed by util/data.h + - drm/msm/disp/dpu1: set vbif hw config to NULL to avoid use after memory free + during pm runtime resume + - drm/msm/dp: stop event kernel thread when DP unbind + - drm/msm/dp: fix error check return value of irq_of_parse_and_map() + - drm/msm/dp: reset DP controller before transmit phy test pattern + - drm/msm/dp: do not stop transmitting phy test pattern during DP phy + compliance test + - drm/msm/dsi: fix error checks and return values for DSI xmit functions + - drm/msm/hdmi: check return value after calling + platform_get_resource_byname() + - drm/msm/hdmi: fix error check return value of irq_of_parse_and_map() + - drm/msm: add missing include to msm_drv.c + - drm/panel: panel-simple: Fix proper bpc for AM-1280800N3TZQW-T00H + - kunit: fix debugfs code to use enum kunit_status, not bool + - drm/rockchip: vop: fix possible null-ptr-deref in vop_bind() + - spi: cadence-quadspi: fix Direct Access Mode disable for SoCFPGA + - [Packaging] add python3-dev as build dependency + - perf tools: Use Python devtools for version autodetection rather than + runtime + - virtio_blk: fix the discard_granularity and discard_alignment queue limits + - nl80211: don't hold RTNL in color change request + - x86: Fix return value of __setup handlers + - irqchip/exiu: Fix acknowledgment of edge triggered interrupts + - irqchip/aspeed-i2c-ic: Fix irq_of_parse_and_map() return value + - irqchip/aspeed-scu-ic: Fix irq_of_parse_and_map() return value + - x86/mm: Cleanup the control_va_addr_alignment() __setup handler + - arm64: fix types in copy_highpage() + - regulator: core: Fix enable_count imbalance with EXCLUSIVE_GET + - drm/msm/dsi: fix address for second DSI PHY on SDM660 + - drm/msm/dp: fix event thread stuck in wait_event after kthread_stop() + - drm/msm/mdp5: Return error code in mdp5_pipe_release when deadlock is + detected + - drm/msm/mdp5: Return error code in mdp5_mixer_release when deadlock is + detected + - drm/msm: return an error pointer in msm_gem_prime_get_sg_table() + - media: uvcvideo: Fix missing check to determine if element is found in list + - arm64: stackleak: fix current_top_of_stack() + - iomap: iomap_write_failed fix + - spi: spi-fsl-qspi: check return value after calling + platform_get_resource_byname() + - Revert "cpufreq: Fix possible race in cpufreq online error path" + - regulator: qcom_smd: Fix up PM8950 regulator configuration + - samples: bpf: Don't fail for a missing VMLINUX_BTF when VMLINUX_H is + provided + - perf/amd/ibs: Use interrupt regs ip for stack unwinding + - ath11k: Don't check arvif->is_started before sending management frames + - wilc1000: fix crash observed in AP mode with cfg80211_register_netdevice() + - HID: amd_sfh: Modify the bus name + - HID: amd_sfh: Modify the hid name + - ASoC: fsl: Use dev_err_probe() helper + - ASoC: fsl: Fix refcount leak in imx_sgtl5000_probe + - ASoC: imx-hdmi: Fix refcount leak in imx_hdmi_probe + - ASoC: mxs-saif: Fix refcount leak in mxs_saif_probe + - regulator: pfuze100: Fix refcount leak in pfuze_parse_regulators_dt + - dma-direct: factor out a helper for DMA_ATTR_NO_KERNEL_MAPPING allocations + - dma-direct: don't fail on highmem CMA pages in dma_direct_alloc_pages + - ASoC: samsung: Use dev_err_probe() helper + - ASoC: samsung: Fix refcount leak in aries_audio_probe + - block: Fix the bio.bi_opf comment + - kselftest/cgroup: fix test_stress.sh to use OUTPUT dir + - scripts/faddr2line: Fix overlapping text section failures + - media: aspeed: Fix an error handling path in aspeed_video_probe() + - media: exynos4-is: Fix PM disable depth imbalance in fimc_is_probe + - mt76: mt7921: Fix the error handling path of mt7921_pci_probe() + - mt76: do not attempt to reorder received 802.3 packets without agg session + - media: st-delta: Fix PM disable depth imbalance in delta_probe + - media: atmel: atmel-isc: Fix PM disable depth imbalance in atmel_isc_probe + - media: i2c: rdacm2x: properly set subdev entity function + - media: exynos4-is: Change clk_disable to clk_disable_unprepare + - media: pvrusb2: fix array-index-out-of-bounds in pvr2_i2c_core_init + - media: vsp1: Fix offset calculation for plane cropping + - media: atmel: atmel-sama5d2-isc: fix wrong mask in YUYV format check + - media: hantro: HEVC: Fix tile info buffer value computation + - Bluetooth: fix dangling sco_conn and use-after-free in sco_sock_timeout + - Bluetooth: use hdev lock in activate_scan for hci_is_adv_monitoring + - Bluetooth: use hdev lock for accept_list and reject_list in conn req + - nvme: set dma alignment to dword + - m68k: math-emu: Fix dependencies of math emulation support + - sctp: read sk->sk_bound_dev_if once in sctp_rcv() + - net: hinic: add missing destroy_workqueue in hinic_pf_to_mgmt_init + - ASoC: ti: j721e-evm: Fix refcount leak in j721e_soc_probe_* + - kselftest/arm64: bti: force static linking + - media: ov7670: remove ov7670_power_off from ov7670_remove + - media: i2c: ov5648: fix wrong pointer passed to IS_ERR() and PTR_ERR() + - media: staging: media: rkvdec: Make use of the helper function + devm_platform_ioremap_resource() + - media: rkvdec: h264: Fix dpb_valid implementation + - media: rkvdec: h264: Fix bit depth wrap in pps packet + - regulator: scmi: Fix refcount leak in scmi_regulator_probe + - ext4: reject the 'commit' option on ext2 filesystems + - drm/msm/a6xx: Fix refcount leak in a6xx_gpu_init + - drm: msm: fix possible memory leak in mdp5_crtc_cursor_set() + - x86/sev: Annotate stack change in the #VC handler + - drm/msm: don't free the IRQ if it was not requested + - selftests/bpf: Add missed ima_setup.sh in Makefile + - drm/msm/dpu: handle pm_runtime_get_sync() errors in bind path + - drm/i915: Fix CFI violation with show_dynamic_id() + - thermal/drivers/bcm2711: Don't clamp temperature at zero + - thermal/drivers/broadcom: Fix potential NULL dereference in sr_thermal_probe + - thermal/core: Fix memory leak in __thermal_cooling_device_register() + - thermal/drivers/imx_sc_thermal: Fix refcount leak in imx_sc_thermal_probe + - bfq: Relax waker detection for shared queues + - bfq: Allow current waker to defend against a tentative one + - ASoC: wm2000: fix missing clk_disable_unprepare() on error in + wm2000_anc_transition() + - PM: domains: Fix initialization of genpd's next_wakeup + - net: macb: Fix PTP one step sync support + - NFC: hci: fix sleep in atomic context bugs in nfc_hci_hcp_message_tx + - ASoC: max98090: Move check for invalid values before casting in + max98090_put_enab_tlv() + - net: stmmac: selftests: Use kcalloc() instead of kzalloc() + - net: stmmac: fix out-of-bounds access in a selftest + - hv_netvsc: Fix potential dereference of NULL pointer + - hwmon: (pmbus) Check PEC support before reading other registers + - rxrpc: Fix listen() setting the bar too high for the prealloc rings + - rxrpc: Don't try to resend the request if we're receiving the reply + - rxrpc: Fix overlapping ACK accounting + - rxrpc: Don't let ack.previousPacket regress + - rxrpc: Fix decision on when to generate an IDLE ACK + - net: huawei: hinic: Use devm_kcalloc() instead of devm_kzalloc() + - hinic: Avoid some over memory allocation + - net: dsa: restrict SMSC_LAN9303_I2C kconfig + - net/smc: postpone sk_refcnt increment in connect() + - dma-direct: factor out dma_set_{de,en}crypted helpers + - dma-direct: don't call dma_set_decrypted for remapped allocations + - dma-direct: always leak memory that can't be re-encrypted + - dma-direct: don't over-decrypt memory + - arm64: dts: rockchip: Move drive-impedance-ohm to emmc phy on rk3399 + - arm64: dts: mt8192: Fix nor_flash status disable typo + - memory: samsung: exynos5422-dmc: Avoid some over memory allocation + - ARM: dts: BCM5301X: update CRU block description + - ARM: dts: BCM5301X: Update pin controller node name + - ARM: dts: suniv: F1C100: fix watchdog compatible + - soc: qcom: smp2p: Fix missing of_node_put() in smp2p_parse_ipc + - soc: qcom: smsm: Fix missing of_node_put() in smsm_parse_ipc + - PCI: cadence: Fix find_first_zero_bit() limit + - PCI: rockchip: Fix find_first_zero_bit() limit + - PCI: mediatek: Fix refcount leak in mtk_pcie_subsys_powerup() + - PCI: dwc: Fix setting error return on MSI DMA mapping failure + - ARM: dts: ci4x10: Adapt to changes in imx6qdl.dtsi regarding fec clocks + - soc: qcom: llcc: Add MODULE_DEVICE_TABLE() + - KVM: nVMX: Leave most VM-Exit info fields unmodified on failed VM-Entry + - KVM: nVMX: Clear IDT vectoring on nested VM-Exit for double/triple fault + - crypto: qat - set CIPHER capability for QAT GEN2 + - crypto: qat - set COMPRESSION capability for QAT GEN2 + - crypto: qat - set CIPHER capability for DH895XCC + - crypto: qat - set COMPRESSION capability for DH895XCC + - platform/chrome: cros_ec: fix error handling in cros_ec_register() + - ARM: dts: imx6dl-colibri: Fix I2C pinmuxing + - platform/chrome: Re-introduce cros_ec_cmd_xfer and use it for ioctls + - can: xilinx_can: mark bit timing constants as const + - ARM: dts: stm32: Fix PHY post-reset delay on Avenger96 + - ARM: dts: bcm2835-rpi-zero-w: Fix GPIO line name for Wifi/BT + - ARM: dts: bcm2837-rpi-cm3-io3: Fix GPIO line names for SMPS I2C + - ARM: dts: bcm2837-rpi-3-b-plus: Fix GPIO line name of power LED + - ARM: dts: bcm2835-rpi-b: Fix GPIO line names + - misc: ocxl: fix possible double free in ocxl_file_register_afu + - crypto: marvell/cesa - ECB does not IV + - gpiolib: of: Introduce hook for missing gpio-ranges + - pinctrl: bcm2835: implement hook for missing gpio-ranges + - arm: mediatek: select arch timer for mt7629 + - pinctrl/rockchip: support deferring other gpio params + - pinctrl: mediatek: mt8195: enable driver on mtk platforms + - arm64: dts: qcom: qrb5165-rb5: Fix can-clock node name + - Drivers: hv: vmbus: Fix handling of messages with transaction ID of zero + - powerpc/fadump: fix PT_LOAD segment for boot memory area + - mfd: ipaq-micro: Fix error check return value of platform_get_irq() + - scsi: fcoe: Fix Wstringop-overflow warnings in fcoe_wwn_from_mac() + - soc: bcm: Check for NULL return of devm_kzalloc() + - arm64: dts: ti: k3-am64-mcu: remove incorrect UART base clock rates + - ASoC: sh: rz-ssi: Check return value of pm_runtime_resume_and_get() + - ASoC: sh: rz-ssi: Propagate error codes returned from + platform_get_irq_byname() + - ASoC: sh: rz-ssi: Release the DMA channels in rz_ssi_probe() error path + - firmware: arm_scmi: Fix list protocols enumeration in the base protocol + - nvdimm: Fix firmware activation deadlock scenarios + - nvdimm: Allow overwrite in the presence of disabled dimms + - pinctrl: mvebu: Fix irq_of_parse_and_map() return value + - drivers/base/node.c: fix compaction sysfs file leak + - dax: fix cache flush on PMD-mapped pages + - drivers/base/memory: fix an unlikely reference counting issue in + __add_memory_block() + - firmware: arm_ffa: Fix uuid parameter to ffa_partition_probe + - firmware: arm_ffa: Remove incorrect assignment of driver_data + - list: introduce list_is_head() helper and re-use it in list.h + - list: fix a data-race around ep->rdllist + - drm/msm/dpu: fix error check return value of irq_of_parse_and_map() + - powerpc/8xx: export 'cpm_setbrg' for modules + - pinctrl: renesas: r8a779a0: Fix GPIO function on I2C-capable pins + - pinctrl: renesas: core: Fix possible null-ptr-deref in + sh_pfc_map_resources() + - powerpc/idle: Fix return value of __setup() handler + - powerpc/4xx/cpm: Fix return value of __setup() handler + - RDMA/hns: Add the detection for CMDQ status in the device initialization + process + - arm64: dts: marvell: espressobin-ultra: fix SPI-NOR config + - arm64: dts: marvell: espressobin-ultra: enable front USB3 port + - ASoC: atmel-pdmic: Remove endianness flag on pdmic component + - ASoC: atmel-classd: Remove endianness flag on class d component + - proc: fix dentry/inode overinstantiating under /proc/${pid}/net + - ipc/mqueue: use get_tree_nodev() in mqueue_get_tree() + - PCI: imx6: Fix PERST# start-up sequence + - tty: fix deadlock caused by calling printk() under tty_port->lock + - crypto: sun8i-ss - rework handling of IV + - crypto: sun8i-ss - handle zero sized sg + - crypto: cryptd - Protect per-CPU resource by disabling BH. + - ARM: dts: at91: sama7g5: remove interrupt-parent from gic node + - hugetlbfs: fix hugetlbfs_statfs() locking + - Input: sparcspkr - fix refcount leak in bbc_beep_probe + - PCI/AER: Clear MULTI_ERR_COR/UNCOR_RCV bits + - PCI: microchip: Fix potential race in interrupt handling + - hwrng: omap3-rom - fix using wrong clk_disable() in + omap_rom_rng_runtime_resume() + - powerpc/64: Only WARN if __pa()/__va() called with bad addresses + - powerpc/perf: Fix the threshold compare group constraint for power10 + - powerpc/perf: Fix the threshold compare group constraint for power9 + - macintosh: via-pmu and via-cuda need RTC_LIB + - powerpc/xive: Add some error handling code to 'xive_spapr_init()' + - powerpc/xive: Fix refcount leak in xive_spapr_init + - powerpc/fsl_rio: Fix refcount leak in fsl_rio_setup + - mfd: davinci_voicecodec: Fix possible null-ptr-deref davinci_vc_probe() + - nfsd: destroy percpu stats counters after reply cache shutdown + - mailbox: forward the hrtimer if not queued and under a lock + - RDMA/hfi1: Prevent use of lock before it is initialized + - KVM: LAPIC: Drop pending LAPIC timer injection when canceling the timer + - Input: stmfts - do not leave device disabled in stmfts_input_open + - OPP: call of_node_put() on error path in _bandwidth_supported() + - f2fs: support fault injection for dquot_initialize() + - f2fs: fix to do sanity check on inline_dots inode + - f2fs: fix dereference of stale list iterator after loop body + - iommu/amd: Enable swiotlb in all cases + - iommu/mediatek: Fix 2 HW sharing pgtable issue + - iommu/mediatek: Add list_del in mtk_iommu_remove + - iommu/mediatek: Remove clk_disable in mtk_iommu_remove + - iommu/mediatek: Add mutex for m4u_group and m4u_dom in data + - i2c: at91: use dma safe buffers + - cpufreq: mediatek: Use module_init and add module_exit + - cpufreq: mediatek: Unregister platform device on exit + - iommu/arm-smmu-v3-sva: Fix mm use-after-free + - MIPS: Loongson: Use hwmon_device_register_with_groups() to register hwmon + - iommu/mediatek: Fix NULL pointer dereference when printing dev_name + - i2c: at91: Initialize dma_buf in at91_twi_xfer() + - dmaengine: idxd: Fix the error handling path in idxd_cdev_register() + - NFS: Do not report EINTR/ERESTARTSYS as mapping errors + - NFS: fsync() should report filesystem errors over EINTR/ERESTARTSYS + - NFS: Don't report ENOSPC write errors twice + - NFS: Do not report flush errors in nfs_write_end() + - NFS: Don't report errors from nfs_pageio_complete() more than once + - NFSv4/pNFS: Do not fail I/O when we fail to allocate the pNFS layout + - NFS: Further fixes to the writeback error handling + - video: fbdev: clcdfb: Fix refcount leak in clcdfb_of_vram_setup + - dmaengine: stm32-mdma: remove GISR1 register + - dmaengine: stm32-mdma: fix chan initialization in stm32_mdma_irq_handler() + - iommu/amd: Increase timeout waiting for GA log enablement + - i2c: npcm: Fix timeout calculation + - i2c: npcm: Correct register access width + - i2c: npcm: Handle spurious interrupts + - i2c: rcar: fix PM ref counts in probe error paths + - perf build: Fix btf__load_from_kernel_by_id() feature check + - perf c2c: Use stdio interface if slang is not supported + - perf jevents: Fix event syntax error caused by ExtSel + - video: fbdev: vesafb: Fix a use-after-free due early fb_info cleanup + - NFS: Always initialise fattr->label in nfs_fattr_alloc() + - NFS: Create a new nfs_alloc_fattr_with_label() function + - NFS: Convert GFP_NOFS to GFP_KERNEL + - NFSv4.1 mark qualified async operations as MOVEABLE tasks + - f2fs: fix to avoid f2fs_bug_on() in dec_valid_node_count() + - f2fs: fix to do sanity check on block address in f2fs_do_zero_range() + - f2fs: fix to clear dirty inode in f2fs_evict_inode() + - f2fs: fix deadloop in foreground GC + - f2fs: don't need inode lock for system hidden quota + - f2fs: fix to do sanity check on total_data_blocks + - f2fs: don't use casefolded comparison for "." and ".." + - f2fs: fix fallocate to use file_modified to update permissions consistently + - f2fs: fix to do sanity check for inline inode + - wifi: mac80211: fix use-after-free in chanctx code + - iwlwifi: mvm: fix assert 1F04 upon reconfig + - fs-writeback: writeback_sb_inodes:Recalculate 'wrote' according skipped + pages + - efi: Do not import certificates from UEFI Secure Boot for T2 Macs + - bfq: Avoid false marking of bic as stably merged + - bfq: Avoid merging queues with different parents + - bfq: Split shared queues on move between cgroups + - bfq: Update cgroup information before merging bio + - bfq: Drop pointless unlock-lock pair + - bfq: Remove pointless bfq_init_rq() calls + - bfq: Track whether bfq_group is still online + - bfq: Get rid of __bio_blkcg() usage + - bfq: Make sure bfqg for which we are queueing requests is online + - ext4: mark group as trimmed only if it was fully scanned + - ext4: fix use-after-free in ext4_rename_dir_prepare + - ext4: fix race condition between ext4_write and ext4_convert_inline_data + - ext4: fix warning in ext4_handle_inode_extension + - ext4: fix bug_on in ext4_writepages + - ext4: filter out EXT4_FC_REPLAY from on-disk superblock field s_state + - ext4: fix bug_on in __es_tree_search + - ext4: verify dir block before splitting it + - ext4: avoid cycles in directory h-tree + - ACPI: property: Release subnode properties with data nodes + - tty: goldfish: Introduce gf_ioread32()/gf_iowrite32() + - tracing: Fix potential double free in create_var_ref() + - tracing: Initialize integer variable to prevent garbage return value + - drm/amdgpu: add beige goby PCI ID + - PCI/PM: Fix bridge_d3_blacklist[] Elo i2 overwrite of Gigabyte X299 + - PCI: qcom: Fix runtime PM imbalance on probe errors + - PCI: qcom: Fix unbalanced PHY init on probe errors + - staging: r8188eu: prevent ->Ssid overflow in rtw_wx_set_scan() + - mm, compaction: fast_find_migrateblock() should return pfn in the target + zone + - s390/perf: obtain sie_block from the right address + - s390/stp: clock_delta should be signed + - dlm: fix plock invalid read + - dlm: uninitialized variable on error in dlm_listen_for_all() + - dlm: fix missing lkb refcount handling + - ocfs2: dlmfs: fix error handling of user_dlm_destroy_lock + - scsi: dc395x: Fix a missing check on list iterator + - scsi: ufs: qcom: Add a readl() to make sure ref_clk gets enabled + - landlock: Add clang-format exceptions + - landlock: Format with clang-format + - selftests/landlock: Add clang-format exceptions + - selftests/landlock: Normalize array assignment + - selftests/landlock: Format with clang-format + - samples/landlock: Add clang-format exceptions + - samples/landlock: Format with clang-format + - landlock: Fix landlock_add_rule(2) documentation + - selftests/landlock: Make tests build with old libc + - selftests/landlock: Extend tests for minimal valid attribute size + - selftests/landlock: Add tests for unknown access rights + - selftests/landlock: Extend access right tests to directories + - selftests/landlock: Fully test file rename with "remove" access + - selftests/landlock: Add tests for O_PATH + - landlock: Change landlock_add_rule(2) argument check ordering + - landlock: Change landlock_restrict_self(2) check ordering + - selftests/landlock: Test landlock_create_ruleset(2) argument check ordering + - landlock: Define access_mask_t to enforce a consistent access mask size + - landlock: Reduce the maximum number of layers to 16 + - landlock: Create find_rule() from unmask_layers() + - landlock: Fix same-layer rule unions + - drm/amdgpu/cs: make commands with 0 chunks illegal behaviour. + - drm/nouveau/subdev/bus: Ratelimit logging for fault errors + - drm/etnaviv: check for reaped mapping in etnaviv_iommu_unmap_gem + - drm/nouveau/clk: Fix an incorrect NULL check on list iterator + - drm/nouveau/kms/nv50-: atom: fix an incorrect NULL check on list iterator + - drm/bridge: analogix_dp: Grab runtime PM reference for DP-AUX + - drm/i915/dsi: fix VBT send packet port selection for ICL+ + - md: fix an incorrect NULL check in does_sb_need_changing + - md: fix an incorrect NULL check in md_reload_sb + - mtd: cfi_cmdset_0002: Move and rename + chip_check/chip_ready/chip_good_for_write + - mtd: cfi_cmdset_0002: Use chip_ready() for write on S29GL064N + - media: coda: Fix reported H264 profile + - media: coda: Add more H264 levels for CODA960 + - ima: remove the IMA_TEMPLATE Kconfig option + - [Config] updateconfigs for IMA_TEMPLATE + - Kconfig: Add option for asm goto w/ tied outputs to workaround clang-13 bug + - RDMA/hfi1: Fix potential integer multiplication overflow errors + - mmc: core: Allows to override the timeout value for ioctl() path + - csky: patch_text: Fixup last cpu should be master + - irqchip/armada-370-xp: Do not touch Performance Counter Overflow on A375, + A38x, A39x + - irqchip: irq-xtensa-mx: fix initial IRQ affinity + - thermal: devfreq_cooling: use local ops instead of global ops + - cfg80211: declare MODULE_FIRMWARE for regulatory.db + - mac80211: upgrade passive scan to active scan on DFS channels after beacon + rx + - um: Use asm-generic/dma-mapping.h + - um: chan_user: Fix winch_tramp() return value + - um: Fix out-of-bounds read in LDT setup + - kexec_file: drop weak attribute from arch_kexec_apply_relocations[_add] + - ftrace: Clean up hash direct_functions on register failures + - ksmbd: fix outstanding credits related bugs + - iommu/msm: Fix an incorrect NULL check on list iterator + - iommu/dma: Fix iova map result check bug + - Revert "mm/cma.c: remove redundant cma_mutex lock" + - mm/page_alloc: always attempt to allocate at least one page during bulk + allocation + - nodemask.h: fix compilation error with GCC12 + - hugetlb: fix huge_pmd_unshare address update + - mm/memremap: fix missing call to untrack_pfn() in pagemap_range() + - xtensa/simdisk: fix proc_read_simdisk() + - rtl818x: Prevent using not initialized queues + - ASoC: rt5514: Fix event generation for "DSP Voice Wake Up" control + - carl9170: tx: fix an incorrect use of list iterator + - stm: ltdc: fix two incorrect NULL checks on list iterator + - bcache: remove incremental dirty sector counting for + bch_sectors_dirty_init() + - bcache: avoid journal no-space deadlock by reserving 1 journal bucket + - serial: pch: don't overwrite xmit->buf[0] by x_char + - tilcdc: tilcdc_external: fix an incorrect NULL check on list iterator + - gma500: fix an incorrect NULL check on list iterator + - arm64: dts: qcom: ipq8074: fix the sleep clock frequency + - arm64: tegra: Add missing DFLL reset on Tegra210 + - clk: tegra: Add missing reset deassertion + - phy: qcom-qmp: fix struct clk leak on probe errors + - ARM: dts: s5pv210: Remove spi-cs-high on panel in Aries + - ARM: pxa: maybe fix gpio lookup tables + - SMB3: EBADF/EIO errors in rename/open caused by race condition in + smb2_compound_op + - docs/conf.py: Cope with removal of language=None in Sphinx 5.0.0 + - dt-bindings: gpio: altera: correct interrupt-cells + - vdpasim: allow to enable a vq repeatedly + - blk-iolatency: Fix inflight count imbalances and IO hangs on offline + - coresight: core: Fix coresight device probe failure issue + - phy: qcom-qmp: fix reset-controller leak on probe errors + - net: ipa: fix page free in ipa_endpoint_trans_release() + - net: ipa: fix page free in ipa_endpoint_replenish_one() + - kseltest/cgroup: Make test_stress.sh work if run interactively + - list: test: Add a test for list_is_head() + - staging: r8188eu: delete rtw_wx_read/write32() + - RDMA/hns: Remove the num_cqc_timer variable + - RDMA/rxe: Generate a completion for unsupported/invalid opcode + - MIPS: IP27: Remove incorrect `cpu_has_fpu' override + - MIPS: IP30: Remove incorrect `cpu_has_fpu' override + - ext4: only allow test_dummy_encryption when supported + - interconnect: qcom: sc7180: Drop IP0 interconnects + - interconnect: qcom: icc-rpmh: Add BCMs to commit list in pre_aggregate + - fs: add two trivial lookup helpers + - exportfs: support idmapped mounts + - fs/ntfs3: Fix invalid free in log_replay + - md: Don't set mddev private to NULL in raid0 pers->free + - md: fix double free of io_acct_set bioset + - md: bcache: check the return value of kzalloc() in detached_dev_do_request() + - pinctrl/rockchip: support setting input-enable param + - block: fix bio_clone_blkg_association() to associate with proper blkcg_gq + - Linux 5.15.46 + + * [SRU] bcache deadlock during read IO in writeback mode (LP: #1980925) // + Jammy update: v5.15.46 upstream stable release (LP: #1981864) + - bcache: improve multithreaded bch_btree_check() + - bcache: improve multithreaded bch_sectors_dirty_init() + + * Jammy update: v5.15.45 upstream stable release (LP: #1981862) + - ALSA: usb-audio: Don't get sample rate for MCT Trigger 5 USB-to-HDMI + - pinctrl: sunxi: fix f1c100s uart2 function + - KVM: arm64: Don't hypercall before EL2 init + - percpu_ref_init(): clean ->percpu_count_ref on failure + - net: af_key: check encryption module availability consistency + - nfc: pn533: Fix buggy cleanup order + - net: ftgmac100: Disable hardware checksum on AST2600 + - i2c: ismt: Provide a DMA buffer for Interrupt Cause Logging + - drivers: i2c: thunderx: Allow driver to work with ACPI defined TWSI + controllers + - i2c: ismt: prevent memory corruption in ismt_access() + - assoc_array: Fix BUG_ON during garbage collect + - pipe: make poll_usage boolean and annotate its access + - pipe: Fix missing lock in pipe_resize_ring() + - net: ipa: compute proper aggregation limit + - drm/i915: Fix -Wstringop-overflow warning in call to intel_read_wm_latency() + - exfat: check if cluster num is valid + - lib/crypto: add prompts back to crypto libraries + - crypto: drbg - prepare for more fine-grained tracking of seeding state + - crypto: drbg - track whether DRBG was seeded with !rng_is_initialized() + - crypto: drbg - move dynamic ->reseed_threshold adjustments to __drbg_seed() + - crypto: drbg - make reseeding from get_random_bytes() synchronous + - netfilter: nf_tables: hold mutex on netns pre_exit path + - netfilter: nf_tables: double hook unregistration in netns path + - netfilter: conntrack: re-fetch conntrack after insertion + - KVM: PPC: Book3S HV: fix incorrect NULL check on list iterator + - x86/kvm: Alloc dummy async #PF token outside of raw spinlock + - x86, kvm: use correct GFP flags for preemption disabled + - KVM: x86: avoid calling x86 emulator without a decoded instruction + - KVM: x86: Drop WARNs that assert a triple fault never "escapes" from L2 + - KVM: SVM: Use kzalloc for sev ioctl interfaces to prevent kernel data leak + - crypto: caam - fix i.MX6SX entropy delay value + - crypto: ecrdsa - Fix incorrect use of vli_cmp + - zsmalloc: fix races between asynchronous zspage free and page migration + - ALSA: usb-audio: Workaround for clock setup on TEAC devices + - ALSA: usb-audio: Add missing ep_idx in fixed EP quirks + - ALSA: usb-audio: Configure sync endpoints before data + - Bluetooth: hci_qca: Use del_timer_sync() before freeing + - ARM: dts: s5pv210: Correct interrupt name for bluetooth in Aries + - dm integrity: fix error code in dm_integrity_ctr() + - dm crypt: make printing of the key constant-time + - dm stats: add cond_resched when looping over entries + - dm verity: set DM_TARGET_IMMUTABLE feature flag + - raid5: introduce MD_BROKEN + - fs/ntfs3: validate BOOT sectors_per_clusters + - HID: multitouch: Add support for Google Whiskers Touchpad + - HID: multitouch: add quirks to enable Lenovo X12 trackpoint + - x86/sgx: Disconnect backing page references from dirty status + - x86/sgx: Mark PCMD page as dirty when modifying contents + - x86/sgx: Obtain backing storage page with enclave mutex held + - x86/sgx: Fix race between reclaimer and page fault handler + - x86/sgx: Ensure no data in PCMD page after truncate + - media: i2c: imx412: Fix reset GPIO polarity + - media: i2c: imx412: Fix power_off ordering + - tpm: Fix buffer access in tpm2_get_tpm_pt() + - tpm: ibmvtpm: Correct the return value in tpm_ibmvtpm_probe() + - docs: submitting-patches: Fix crossref to 'The canonical patch format' + - NFS: Memory allocation failures are not server fatal errors + - NFSD: Fix possible sleep during nfsd4_release_lockowner() + - bpf: Fix potential array overflow in bpf_trampoline_get_progs() + - bpf: Enlarge offset check value to INT_MAX in bpf_skb_{load,store}_bytes + - bpf: Fix excessive memory allocation in stack_map_alloc() + - bpf: Reject writes for PTR_TO_MAP_KEY in check_helper_mem_access + - bpf: Check PTR_TO_MEM | MEM_RDONLY in check_helper_mem_access + - ALSA: usb-audio: Optimize TEAC clock quirk + - Linux 5.15.45 + + * Jammy update: v5.15.44 upstream stable release (LP: #1981649) + - Revert "UBUNTU: SAUCE: random: Make getrandom() ready earlier" + - ice: fix crash at allocation failure + - ACPI: sysfs: Fix BERT error region memory mapping + - MAINTAINERS: co-maintain random.c + - MAINTAINERS: add git tree for random.c + - lib/crypto: blake2s: include as built-in + - [Config] updateconfigs for CRYPTO_LIB_BLAKE2S + - lib/crypto: blake2s: move hmac construction into wireguard + - lib/crypto: sha1: re-roll loops to reduce code size + - lib/crypto: blake2s: avoid indirect calls to compression function for Clang + CFI + - random: document add_hwgenerator_randomness() with other input functions + - random: remove unused irq_flags argument from add_interrupt_randomness() + - random: use BLAKE2s instead of SHA1 in extraction + - random: do not sign extend bytes for rotation when mixing + - random: do not re-init if crng_reseed completes before primary init + - random: mix bootloader randomness into pool + - random: harmonize "crng init done" messages + - random: use IS_ENABLED(CONFIG_NUMA) instead of ifdefs + - random: early initialization of ChaCha constants + - random: avoid superfluous call to RDRAND in CRNG extraction + - random: don't reset crng_init_cnt on urandom_read() + - random: fix typo in comments + - random: cleanup poolinfo abstraction + - random: cleanup integer types + - random: remove incomplete last_data logic + - random: remove unused extract_entropy() reserved argument + - random: rather than entropy_store abstraction, use global + - random: remove unused OUTPUT_POOL constants + - random: de-duplicate INPUT_POOL constants + - random: prepend remaining pool constants with POOL_ + - random: cleanup fractional entropy shift constants + - random: access input_pool_data directly rather than through pointer + - random: selectively clang-format where it makes sense + - random: simplify arithmetic function flow in account() + - random: continually use hwgenerator randomness + - random: access primary_pool directly rather than through pointer + - random: only call crng_finalize_init() for primary_crng + - random: use computational hash for entropy extraction + - random: simplify entropy debiting + - random: use linear min-entropy accumulation crediting + - random: always wake up entropy writers after extraction + - random: make credit_entropy_bits() always safe + - random: remove use_input_pool parameter from crng_reseed() + - random: remove batched entropy locking + - random: fix locking in crng_fast_load() + - random: use RDSEED instead of RDRAND in entropy extraction + - random: get rid of secondary crngs + - random: inline leaves of rand_initialize() + - random: ensure early RDSEED goes through mixer on init + - random: do not xor RDRAND when writing into /dev/random + - random: absorb fast pool into input pool after fast load + - random: use simpler fast key erasure flow on per-cpu keys + - random: use hash function for crng_slow_load() + - random: make more consistent use of integer types + - random: remove outdated INT_MAX >> 6 check in urandom_read() + - random: zero buffer after reading entropy from userspace + - random: fix locking for crng_init in crng_reseed() + - random: tie batched entropy generation to base_crng generation + - random: remove ifdef'd out interrupt bench + - random: remove unused tracepoints + - random: add proper SPDX header + - random: deobfuscate irq u32/u64 contributions + - random: introduce drain_entropy() helper to declutter crng_reseed() + - random: remove useless header comment + - random: remove whitespace and reorder includes + - random: group initialization wait functions + - random: group crng functions + - random: group entropy extraction functions + - random: group entropy collection functions + - random: group userspace read/write functions + - random: group sysctl functions + - random: rewrite header introductory comment + - random: defer fast pool mixing to worker + - random: do not take pool spinlock at boot + - random: unify early init crng load accounting + - random: check for crng_init == 0 in add_device_randomness() + - random: pull add_hwgenerator_randomness() declaration into random.h + - random: clear fast pool, crng, and batches in cpuhp bring up + - random: round-robin registers as ulong, not u32 + - random: only wake up writers after zap if threshold was passed + - random: cleanup UUID handling + - random: unify cycles_t and jiffies usage and types + - random: do crng pre-init loading in worker rather than irq + - random: give sysctl_random_min_urandom_seed a more sensible value + - random: don't let 644 read-only sysctls be written to + - random: replace custom notifier chain with standard one + - random: use SipHash as interrupt entropy accumulator + - random: make consistent usage of crng_ready() + - random: reseed more often immediately after booting + - random: check for signal and try earlier when generating entropy + - random: skip fast_init if hwrng provides large chunk of entropy + - random: treat bootloader trust toggle the same way as cpu trust toggle + - random: re-add removed comment about get_random_{u32,u64} reseeding + - random: mix build-time latent entropy into pool at init + - random: do not split fast init input in add_hwgenerator_randomness() + - random: do not allow user to keep crng key around on stack + - random: check for signal_pending() outside of need_resched() check + - random: check for signals every PAGE_SIZE chunk of /dev/[u]random + - random: allow partial reads if later user copies fail + - random: make random_get_entropy() return an unsigned long + - random: document crng_fast_key_erasure() destination possibility + - random: fix sysctl documentation nits + - init: call time_init() before rand_initialize() + - ia64: define get_cycles macro for arch-override + - s390: define get_cycles macro for arch-override + - parisc: define get_cycles macro for arch-override + - alpha: define get_cycles macro for arch-override + - powerpc: define get_cycles macro for arch-override + - timekeeping: Add raw clock fallback for random_get_entropy() + - m68k: use fallback for random_get_entropy() instead of zero + - riscv: use fallback for random_get_entropy() instead of zero + - mips: use fallback for random_get_entropy() instead of just c0 random + - arm: use fallback for random_get_entropy() instead of zero + - nios2: use fallback for random_get_entropy() instead of zero + - x86/tsc: Use fallback for random_get_entropy() instead of zero + - um: use fallback for random_get_entropy() instead of zero + - sparc: use fallback for random_get_entropy() instead of zero + - xtensa: use fallback for random_get_entropy() instead of zero + - random: insist on random_get_entropy() existing in order to simplify + - random: do not use batches when !crng_ready() + - random: use first 128 bits of input as fast init + - random: do not pretend to handle premature next security model + - random: order timer entropy functions below interrupt functions + - random: do not use input pool from hard IRQs + - random: help compiler out with fast_mix() by using simpler arguments + - siphash: use one source of truth for siphash permutations + - random: use symbolic constants for crng_init states + - random: avoid initializing twice in credit race + - random: move initialization out of reseeding hot path + - random: remove ratelimiting for in-kernel unseeded randomness + - random: use proper jiffies comparison macro + - random: handle latent entropy and command line from random_init() + - random: credit architectural init the exact amount + - random: use static branch for crng_ready() + - random: remove extern from functions in header + - random: use proper return types on get_random_{int,long}_wait() + - random: make consistent use of buf and len + - random: move initialization functions out of hot pages + - random: move randomize_page() into mm where it belongs + - random: unify batched entropy implementations + - random: convert to using fops->read_iter() + - random: convert to using fops->write_iter() + - random: wire up fops->splice_{read,write}_iter() + - random: check for signals after page of pool writes + - ALSA: ctxfi: Add SB046x PCI ID + - Linux 5.15.44 + - Revert "random: use static branch for crng_ready()" + + * Jammy update: v5.15.43 upstream stable release (LP: #1981468) + - mptcp: Do TCP fallback on early DSS checksum failure + - Linux 5.15.43 + + * Jammy update: v5.15.42 upstream stable release (LP: #1981375) + - usb: gadget: fix race when gadget driver register via ioctl + - io_uring: arm poll for non-nowait files + - kernel/resource: Introduce request_mem_region_muxed() + - i2c: piix4: Replace hardcoded memory map size with a #define + - i2c: piix4: Move port I/O region request/release code into functions + - i2c: piix4: Move SMBus controller base address detect into function + - i2c: piix4: Move SMBus port selection into function + - i2c: piix4: Add EFCH MMIO support to region request and release + - i2c: piix4: Add EFCH MMIO support to SMBus base address detect + - i2c: piix4: Add EFCH MMIO support for SMBus port select + - i2c: piix4: Enable EFCH MMIO for Family 17h+ + - Watchdog: sp5100_tco: Move timer initialization into function + - Watchdog: sp5100_tco: Refactor MMIO base address initialization + - Watchdog: sp5100_tco: Add initialization using EFCH MMIO + - Watchdog: sp5100_tco: Enable Family 17h+ CPUs + - mm/kfence: reset PG_slab and memcg_data before freeing __kfence_pool + - Revert "drm/i915/opregion: check port number bounds for SWSCI display power + state" + - rtc: fix use-after-free on device removal + - rtc: pcf2127: fix bug when reading alarm registers + - um: Cleanup syscall_handler_t definition/cast, fix warning + - Input: add bounds checking to input_set_capability() + - Input: stmfts - fix reference leak in stmfts_input_open + - nvme-pci: add quirks for Samsung X5 SSDs + - gfs2: Disable page faults during lockless buffered reads + - rtc: sun6i: Fix time overflow handling + - crypto: stm32 - fix reference leak in stm32_crc_remove + - crypto: x86/chacha20 - Avoid spurious jumps to other functions + - s390/traps: improve panic message for translation-specification exception + - s390/pci: improve zpci_dev reference counting + - vhost_vdpa: don't setup irq offloading when irq_num < 0 + - tools/virtio: compile with -pthread + - nvmet: use a private workqueue instead of the system workqueue + - nvme-multipath: fix hang when disk goes live over reconnect + - rtc: mc146818-lib: Fix the AltCentury for AMD platforms + - fs: fix an infinite loop in iomap_fiemap + - MIPS: lantiq: check the return value of kzalloc() + - drbd: remove usage of list iterator variable after loop + - platform/chrome: cros_ec_debugfs: detach log reader wq from devm + - ARM: 9191/1: arm/stacktrace, kasan: Silence KASAN warnings in unwind_frame() + - nilfs2: fix lockdep warnings in page operations for btree nodes + - nilfs2: fix lockdep warnings during disk space reclamation + - ALSA: usb-audio: Restore Rane SL-1 quirk + - ALSA: wavefront: Proper check of get_user() error + - ALSA: hda/realtek: Add quirk for TongFang devices with pop noise + - perf: Fix sys_perf_event_open() race against self + - selinux: fix bad cleanup on error in hashtab_duplicate() + - Fix double fget() in vhost_net_set_backend() + - PCI/PM: Avoid putting Elo i2 PCIe Ports in D3cold + - Revert "can: m_can: pci: use custom bit timings for Elkhart Lake" + - KVM: x86/mmu: Update number of zapped pages even if page list is stable + - arm64: paravirt: Use RCU read locks to guard stolen_time + - arm64: mte: Ensure the cleared tags are visible before setting the PTE + - crypto: qcom-rng - fix infinite loop on requests not multiple of WORD_SZ + - libceph: fix potential use-after-free on linger ping and resends + - drm/i915/dmc: Add MMIO range restrictions + - drm/dp/mst: fix a possible memory leak in fetch_monitor_name() + - dma-buf: fix use of DMA_BUF_SET_NAME_{A,B} in userspace + - dma-buf: ensure unique directory name for dmabuf stats + - ARM: dts: aspeed-g6: remove FWQSPID group in pinctrl dtsi + - pinctrl: pinctrl-aspeed-g6: remove FWQSPID group in pinctrl + - ARM: dts: aspeed-g6: fix SPI1/SPI2 quad pin group + - ARM: dts: aspeed: Add ADC for AST2600 and enable for Rainier and Everest + - ARM: dts: aspeed: Add secure boot controller node + - ARM: dts: aspeed: Add video engine to g6 + - pinctrl: mediatek: mt8365: fix IES control pins + - ALSA: hda - fix unused Realtek function when PM is not enabled + - net: ipa: record proper RX transaction count + - net: macb: Increment rx bd head after allocating skb and buffer + - xfrm: rework default policy structure + - xfrm: fix "disable_policy" flag use when arriving from different devices + - net/sched: act_pedit: sanitize shift argument before usage + - netfilter: flowtable: fix excessive hw offload attempts after failure + - netfilter: nft_flow_offload: skip dst neigh lookup for ppp devices + - net: fix dev_fill_forward_path with pppoe + bridge + - netfilter: nft_flow_offload: fix offload with pppoe + vlan + - net: systemport: Fix an error handling path in bcm_sysport_probe() + - net: vmxnet3: fix possible use-after-free bugs in vmxnet3_rq_alloc_rx_buf() + - net: vmxnet3: fix possible NULL pointer dereference in vmxnet3_rq_cleanup() + - ice: fix crash when writing timestamp on RX rings + - ice: fix possible under reporting of ethtool Tx and Rx statistics + - ice: move ice_container_type onto ice_ring_container + - ice: Fix interrupt moderation settings getting cleared + - clk: at91: generated: consider range when calculating best rate + - net/qla3xxx: Fix a test in ql_reset_work() + - NFC: nci: fix sleep in atomic context bugs caused by nci_skb_alloc + - net/mlx5: DR, Fix missing flow_source when creating multi-destination FW + table + - net/mlx5e: Properly block LRO when XDP is enabled + - ARM: 9196/1: spectre-bhb: enable for Cortex-A15 + - ARM: 9197/1: spectre-bhb: fix loop8 sequence for Thumb2 + - mptcp: change the parameter of __mptcp_make_csum + - mptcp: reuse __mptcp_make_csum in validate_data_csum + - mptcp: fix checksum byte order + - igb: skip phy status check where unavailable + - netfilter: flowtable: fix TCP flow teardown + - netfilter: flowtable: pass flowtable to nf_flow_table_iterate() + - netfilter: flowtable: move dst_check to packet path + - net: bridge: Clear offload_fwd_mark when passing frame up bridge interface. + - riscv: dts: sifive: fu540-c000: align dma node name with dtschema + - scsi: ufs: core: Fix referencing invalid rsp field + - perf build: Fix check for btf__load_from_kernel_by_id() in libbpf + - gpio: gpio-vf610: do not touch other bits when set the target bit + - gpio: mvebu/pwm: Refuse requests with inverted polarity + - perf regs x86: Fix arch__intr_reg_mask() for the hybrid platform + - perf bench numa: Address compiler error on s390 + - scsi: scsi_dh_alua: Properly handle the ALUA transitioning state + - scsi: qla2xxx: Fix missed DMA unmap for aborted commands + - mac80211: fix rx reordering with non explicit / psmp ack policy + - nl80211: validate S1G channel width + - selftests: add ping test with ping_group_range tuned + - fbdev: Prevent possible use-after-free in fb_release() + - net: fix wrong network header length + - nl80211: fix locking in nl80211_set_tx_bitrate_mask() + - ethernet: tulip: fix missing pci_disable_device() on error in + tulip_init_one() + - net: stmmac: fix missing pci_disable_device() on error in stmmac_pci_probe() + - net: atlantic: fix "frag[0] not initialized" + - net: atlantic: reduce scope of is_rsc_complete + - net: atlantic: add check for MAX_SKB_FRAGS + - net: atlantic: verify hw_head_ lies within TX buffer ring + - arm64: Enable repeat tlbi workaround on KRYO4XX gold CPUs + - Input: ili210x - fix reset timing + - dt-bindings: pinctrl: aspeed-g6: remove FWQSPID group + - i2c: mt7621: fix missing clk_disable_unprepare() on error in mtk_i2c_probe() + - afs: Fix afs_getattr() to refetch file status if callback break occurred + - Linux 5.15.42 + + * CVE-2021-33061 + - ixgbe: add the ability for the PF to disable VF link state + - ixgbe: add improvement for MDD response functionality + - ixgbevf: add disable link state + + * Fix PSR flickers on Intel TGL laptops + AUO panel (LP: #1980087) + - SAUCE: drm/i915/display/psr: Fix flicker on TGL + AUO panel + + * Fix audio on Zbook Studio G9 (LP: #1966010) + - ALSA: hda/realtek: Fix LED on Zbook Studio G9 + + * Support Cirrus audio codec configurations for Odin platform (LP: #1968861) + - ALSA: hda/cs8409: Support new Odin Variants + - ALSA: hda/cs8409: Add Speaker Playback Switch for Cyborg + + * Fix beacon loss for rtl8821ce on certain platforms (LP: #1969771) + - rtw88: pci: 8821c: Disable 21ce completion timeout + + * Suppress harmless warning from hp-wmi (LP: #1980307) + - platform/x86: hp-wmi: Ignore Sanitization Mode event + + * Fix headset mic no sound on an HP desktop (LP: #1978925) + - ALSA: hda/realtek - ALC897 headset MIC no sound + + * alsa/hda: mute led can't work on the lenovo machine with cs35l41 s-codec + (LP: #1978915) + - ALSA: hda/realtek: Fix mute led issue on thinkpad with cs35l41 s-codec + + * Jammy update: v5.15.41 upstream stable release (LP: #1980278) + - batman-adv: Don't skb_split skbuffs with frag_list + - iwlwifi: iwl-dbg: Use del_timer_sync() before freeing + - hwmon: (tmp401) Add OF device ID table + - mac80211: Reset MBSSID parameters upon connection + - net: Fix features skip in for_each_netdev_feature() + - net: mscc: ocelot: fix last VCAP IS1/IS2 filter persisting in hardware when + deleted + - net: mscc: ocelot: fix VCAP IS2 filters matching on both lookups + - net: mscc: ocelot: restrict tc-trap actions to VCAP IS2 lookup 0 + - net: mscc: ocelot: avoid corrupting hardware counters when moving VCAP + filters + - fbdev: simplefb: Cleanup fb_info in .fb_destroy rather than .remove + - fbdev: efifb: Cleanup fb_info in .fb_destroy rather than .remove + - fbdev: vesafb: Cleanup fb_info in .fb_destroy rather than .remove + - platform/surface: aggregator: Fix initialization order when compiling as + builtin module + - ice: Fix race during aux device (un)plugging + - ice: fix PTP stale Tx timestamps cleanup + - ipv4: drop dst in multicast routing path + - drm/nouveau: Fix a potential theorical leak in nouveau_get_backlight_name() + - netlink: do not reset transport header in netlink_recvmsg() + - net: chelsio: cxgb4: Avoid potential negative array offset + - fbdev: efifb: Fix a use-after-free due early fb_info cleanup + - sfc: Use swap() instead of open coding it + - net: sfc: fix memory leak due to ptp channel + - mac80211_hwsim: call ieee80211_tx_prepare_skb under RCU protection + - nfs: fix broken handling of the softreval mount option + - ionic: fix missing pci_release_regions() on error in ionic_probe() + - dim: initialize all struct fields + - hwmon: (ltq-cputemp) restrict it to SOC_XWAY + - procfs: prevent unprivileged processes accessing fdinfo dir + - selftests: vm: Makefile: rename TARGETS to VMTARGETS + - arm64: vdso: fix makefile dependency on vdso.so + - virtio: fix virtio transitional ids + - s390/ctcm: fix variable dereferenced before check + - s390/ctcm: fix potential memory leak + - s390/lcs: fix variable dereferenced before check + - net/sched: act_pedit: really ensure the skb is writable + - net: ethernet: mediatek: ppe: fix wrong size passed to memset() + - net: bcmgenet: Check for Wake-on-LAN interrupt probe deferral + - drm/vc4: hdmi: Fix build error for implicit function declaration + - net: dsa: bcm_sf2: Fix Wake-on-LAN with mac_link_down() + - net/smc: non blocking recvmsg() return -EAGAIN when no data and + signal_pending + - net: sfc: ef10: fix memory leak in efx_ef10_mtd_probe() + - tls: Fix context leak on tls_device_down + - drm/vmwgfx: Fix fencing on SVGAv3 + - gfs2: Fix filesystem block deallocation for short writes + - hwmon: (f71882fg) Fix negative temperature + - RDMA/irdma: Fix deadlock in irdma_cleanup_cm_core() + - iommu: arm-smmu: disable large page mappings for Nvidia arm-smmu + - ASoC: max98090: Reject invalid values in custom control put() + - ASoC: max98090: Generate notifications on changes for custom control + - ASoC: ops: Validate input values in snd_soc_put_volsw_range() + - s390: disable -Warray-bounds + - ASoC: SOF: Fix NULL pointer exception in sof_pci_probe callback + - net: emaclite: Don't advertise 1000BASE-T and do auto negotiation + - net: sfp: Add tx-fault workaround for Huawei MA5671A SFP ONT + - secure_seq: use the 64 bits of the siphash for port offset calculation + - tcp: use different parts of the port_offset for index and offset + - tcp: resalt the secret every 10 seconds + - tcp: add small random increments to the source port + - tcp: dynamically allocate the perturb table used by source ports + - tcp: increase source port perturb table to 2^16 + - tcp: drop the hash_32() part from the index calculation + - interconnect: Restore sync state by ignoring ipa-virt in provider count + - firmware_loader: use kernel credentials when reading firmware + - KVM: PPC: Book3S PR: Enable MSR_DR for switch_mmu_context() + - usb: xhci-mtk: fix fs isoc's transfer error + - x86/mm: Fix marking of unused sub-pmd ranges + - tty/serial: digicolor: fix possible null-ptr-deref in digicolor_uart_probe() + - tty: n_gsm: fix buffer over-read in gsm_dlci_data() + - tty: n_gsm: fix mux activation issues in gsm_config() + - usb: cdc-wdm: fix reading stuck on device close + - usb: typec: tcpci: Don't skip cleanup in .remove() on error + - usb: typec: tcpci_mt6360: Update for BMC PHY setting + - USB: serial: pl2303: add device id for HP LM930 Display + - USB: serial: qcserial: add support for Sierra Wireless EM7590 + - USB: serial: option: add Fibocom L610 modem + - USB: serial: option: add Fibocom MA510 modem + - slimbus: qcom: Fix IRQ check in qcom_slim_probe + - fsl_lpuart: Don't enable interrupts too early + - serial: 8250_mtk: Fix UART_EFR register address + - serial: 8250_mtk: Fix register address for XON/XOFF character + - ceph: fix setting of xattrs on async created inodes + - Revert "mm/memory-failure.c: skip huge_zero_page in memory_failure()" + - mm/huge_memory: do not overkill when splitting huge_zero_page + - drm/vmwgfx: Disable command buffers on svga3 without gbobjects + - drm/nouveau/tegra: Stop using iommu_present() + - i40e: i40e_main: fix a missing check on list iterator + - net: atlantic: always deep reset on pm op, fixing up my null deref + regression + - net: phy: Fix race condition on link status change + - writeback: Avoid skipping inode writeback + - cgroup/cpuset: Remove cpus_allowed/mems_allowed setup in cpuset_init_smp() + - arm[64]/memremap: don't abuse pfn_valid() to ensure presence of linear map + - net: phy: micrel: Do not use kszphy_suspend/resume for KSZ8061 + - net: phy: micrel: Pass .probe for KS8737 + - SUNRPC: Ensure that the gssproxy client can start in a connected state + - drm/vmwgfx: Initialize drm_mode_fb_cmd2 + - dma-buf: call dma_buf_stats_setup after dmabuf is in valid list + - mm/hwpoison: use pr_err() instead of dump_page() in get_any_page() + - ping: fix address binding wrt vrf + - usb: gadget: uvc: rename function to be more consistent + - usb: gadget: uvc: allow for application to cleanly shutdown + - Linux 5.15.41 + + * Jammy update: v5.15.40 upstream stable release (LP: #1980277) + - tools arch: Update arch/x86/lib/mem{cpy,set}_64.S copies used in 'perf bench + mem memcpy' + - Bluetooth: Fix the creation of hdev->name + - udf: Avoid using stale lengthOfImpUse + - mm: fix missing cache flush for all tail pages of compound page + - mm: hugetlb: fix missing cache flush in copy_huge_page_from_user() + - mm: shmem: fix missing cache flush in shmem_mfill_atomic_pte() + - mm: userfaultfd: fix missing cache flush in mcopy_atomic_pte() and + __mcopy_atomic() + - mm/hwpoison: fix error page recovered but reported "not recovered" + - mm/mlock: fix potential imbalanced rlimit ucounts adjustment + - mm: fix invalid page pointer returned with FOLL_PIN gups + - Linux 5.15.40 + + -- Stefan Bader Wed, 10 Aug 2022 09:49:40 +0200 + +linux (5.15.0-46.49) jammy; urgency=medium + + * CVE-2022-2585 + - SAUCE: posix-cpu-timers: Cleanup CPU timers before freeing them during exec + + * CVE-2022-2586 + - SAUCE: netfilter: nf_tables: do not allow SET_ID to refer to another table + - SAUCE: netfilter: nf_tables: do not allow CHAIN_ID to refer to another table + - SAUCE: netfilter: nf_tables: do not allow RULE_ID to refer to another chain + + * CVE-2022-2588 + - SAUCE: net_sched: cls_route: remove from list when handle is 0 + + -- Thadeu Lima de Souza Cascardo Thu, 04 Aug 2022 14:16:56 -0300 + +linux (5.15.0-45.48) jammy; urgency=medium + + * CVE-2022-29900 // CVE-2022-29901 + - x86/lib/atomic64_386_32: Rename things + - x86: Prepare asm files for straight-line-speculation + - x86: Prepare inline-asm for straight-line-speculation + - x86/alternative: Relax text_poke_bp() constraint + - kbuild: move objtool_args back to scripts/Makefile.build + - x86: Add straight-line-speculation mitigation + - kvm/emulate: Fix SETcc emulation function offsets with SLS + - crypto: x86/poly1305 - Fixup SLS + - objtool: Add straight-line-speculation validation + - objtool: Fix SLS validation for kcov tail-call replacement + - objtool: Fix objtool regression on x32 systems + - objtool: Fix symbol creation + - objtool: Introduce CFI hash + - objtool: Default ignore INT3 for unreachable + - x86, kvm: use proper ASM macros for kvm_vcpu_is_preempted + - x86/traps: Use pt_regs directly in fixup_bad_iret() + - x86/entry: Switch the stack after error_entry() returns + - x86/entry: Move PUSH_AND_CLEAR_REGS out of error_entry() + - x86/entry: Don't call error_entry() for XENPV + - x86/entry: Remove skip_r11rcx + - x86/realmode: build with -D__DISABLE_EXPORTS + - x86/ibt,ftrace: Make function-graph play nice + - x86/kvm/vmx: Make noinstr clean + - x86/cpufeatures: Move RETPOLINE flags to word 11 + - x86/retpoline: Cleanup some #ifdefery + - x86/retpoline: Swizzle retpoline thunk + - x86/retpoline: Use -mfunction-return + - x86: Undo return-thunk damage + - x86,objtool: Create .return_sites + - objtool: skip non-text sections when adding return-thunk sites + - x86,static_call: Use alternative RET encoding + - x86/ftrace: Use alternative RET encoding + - x86/bpf: Use alternative RET encoding + - x86/kvm: Fix SETcc emulation for return thunks + - x86/vsyscall_emu/64: Don't use RET in vsyscall emulation + - x86/sev: Avoid using __x86_return_thunk + - x86: Use return-thunk in asm code + - x86/entry: Avoid very early RET + - objtool: Treat .text.__x86.* as noinstr + - x86: Add magic AMD return-thunk + - x86/bugs: Report AMD retbleed vulnerability + - x86/bugs: Add AMD retbleed= boot parameter + - x86/bugs: Enable STIBP for JMP2RET + - x86/bugs: Keep a per-CPU IA32_SPEC_CTRL value + - x86/entry: Add kernel IBRS implementation + - x86/bugs: Optimize SPEC_CTRL MSR writes + - x86/speculation: Add spectre_v2=ibrs option to support Kernel IBRS + - x86/bugs: Split spectre_v2_select_mitigation() and + spectre_v2_user_select_mitigation() + - x86/bugs: Report Intel retbleed vulnerability + - intel_idle: Disable IBRS during long idle + - objtool: Update Retpoline validation + - x86/xen: Rename SYS* entry points + - x86/xen: Add UNTRAIN_RET + - x86/bugs: Add retbleed=ibpb + - x86/bugs: Do IBPB fallback check only once + - objtool: Add entry UNRET validation + - x86/cpu/amd: Add Spectral Chicken + - x86/speculation: Fix RSB filling with CONFIG_RETPOLINE=n + - x86/speculation: Fix firmware entry SPEC_CTRL handling + - x86/speculation: Fix SPEC_CTRL write on SMT state change + - x86/speculation: Use cached host SPEC_CTRL value for guest entry/exit + - x86/speculation: Remove x86_spec_ctrl_mask + - objtool: Re-add UNWIND_HINT_{SAVE_RESTORE} + - KVM: VMX: Flatten __vmx_vcpu_run() + - KVM: VMX: Convert launched argument to flags + - KVM: VMX: Prevent guest RSB poisoning attacks with eIBRS + - KVM: VMX: Fix IBRS handling after vmexit + - x86/speculation: Fill RSB on vmexit for IBRS + - KVM: VMX: Prevent RSB underflow before vmenter + - x86/common: Stamp out the stepping madness + - x86/cpu/amd: Enumerate BTC_NO + - x86/retbleed: Add fine grained Kconfig knobs + - x86/bugs: Add Cannon lake to RETBleed affected CPU list + - x86/entry: Move PUSH_AND_CLEAR_REGS() back into error_entry + - x86/bugs: Do not enable IBPB-on-entry when IBPB is not supported + - x86/kexec: Disable RET on kexec + - x86/speculation: Disable RRSBA behavior + - [Config]: Enable speculation mitigations + - x86/static_call: Serialize __static_call_fixup() properly + - x86/asm/32: Fix ANNOTATE_UNRET_SAFE use on 32-bit + - x86/bugs: Mark retbleed_strings static + - x86/entry: Remove UNTRAIN_RET from native_irq_return_ldt + - x86/kvm: fix FASTOP_SIZE when return thunks are enabled + - x86/speculation: Use DECLARE_PER_CPU for x86_spec_ctrl_current + - KVM: emulate: do not adjust size of fastop and setcc subroutines + - x86/bugs: Remove apostrophe typo + - efi/x86: use naked RET on mixed mode call wrapper + + -- Thadeu Lima de Souza Cascardo Tue, 19 Jul 2022 18:57:17 -0300 + +linux (5.15.0-43.46) jammy; urgency=medium + + * jammy/linux: 5.15.0-43.46 -proposed tracker (LP: #1981243) + + * Packaging resync (LP: #1786013) + - debian/dkms-versions -- update from kernel-versions (main/2022.07.11) + + * nbd: requests can become stuck when disconnecting from server with qemu-nbd + (LP: #1896350) + - nbd: don't handle response without a corresponding request message + - nbd: make sure request completion won't concurrent + - nbd: don't clear 'NBD_CMD_INFLIGHT' flag if request is not completed + - nbd: fix io hung while disconnecting device + + * Ubuntu 22.04 and 20.04 DPC Fixes for Failure Cases of DownPort Containment + events (LP: #1965241) + - PCI/portdrv: Rename pm_iter() to pcie_port_device_iter() + - PCI: pciehp: Ignore Link Down/Up caused by error-induced Hot Reset + - [Config] Enable config option CONFIG_PCIE_EDR + + * [SRU] Ubuntu 22.04 Feature Request-Add support for a NVMe-oF-TCP CDC Client + - TP 8010 (LP: #1948626) + - nvme: add CNTRLTYPE definitions for 'identify controller' + - nvme: send uevent on connection up + - nvme: expose cntrltype and dctype through sysfs + + * [UBUNTU 22.04] Kernel oops while removing device from cio_ignore list + (LP: #1980951) + - s390/cio: derive cdev information only for IO-subchannels + + * Jammy Charmed OpenStack deployment fails over connectivity issues when using + converged OVS bridge for control and data planes (LP: #1978820) + - net/mlx5e: TC NIC mode, fix tc chains miss table + + * Hairpin traffic does not work with centralized NAT gw (LP: #1967856) + - net: openvswitch: fix misuse of the cached connection on tuple changes + + * alsa: asoc: amd: the internal mic can't be dedected on yellow carp machines + (LP: #1980700) + - ASoC: amd: Add driver data to acp6x machine driver + - ASoC: amd: Add support for enabling DMIC on acp6x via _DSD + + * AMD ACP 6.x DMIC Supports (LP: #1949245) + - ASoC: amd: add Yellow Carp ACP6x IP register header + - ASoC: amd: add Yellow Carp ACP PCI driver + - ASoC: amd: add acp6x init/de-init functions + - ASoC: amd: add platform devices for acp6x pdm driver and dmic driver + - ASoC: amd: add acp6x pdm platform driver + - ASoC: amd: add acp6x irq handler + - ASoC: amd: add acp6x pdm driver dma ops + - ASoC: amd: add acp6x pci driver pm ops + - ASoC: amd: add acp6x pdm driver pm ops + - ASoC: amd: enable Yellow carp acp6x drivers build + - ASoC: amd: create platform device for acp6x machine driver + - ASoC: amd: add YC machine driver using dmic + - ASoC: amd: enable Yellow Carp platform machine driver build + - ASoC: amd: fix uninitialized variable in snd_acp6x_probe() + - [Config] Enable AMD ACP 6 DMIC Support + + * [UBUNTU 20.04] Include patches to avoid self-detected stall with Secure + Execution (LP: #1979296) + - KVM: s390: pv: add macros for UVC CC values + - KVM: s390: pv: avoid stalls when making pages secure + + * [22.04 FEAT] KVM: Attestation support for Secure Execution (crypto) + (LP: #1959973) + - drivers/s390/char: Add Ultravisor io device + - s390/uv_uapi: depend on CONFIG_S390 + - [Config] CONFIG_S390_UV_UAPI=y for s390x + + * CVE-2022-1679 + - SAUCE: ath9k: fix use-after-free in ath9k_hif_usb_rx_cb + + * CVE-2022-28893 + - SUNRPC: Ensure we flush any closed sockets before xs_xprt_free() + - SUNRPC: Don't leak sockets in xs_local_connect() + + * CVE-2022-34918 + - netfilter: nf_tables: stricter validation of element data + + * CVE-2022-1652 + - floppy: use a statically allocated error counter + + -- Stefan Bader Tue, 12 Jul 2022 10:51:03 +0200 + +linux (5.15.0-41.44) jammy; urgency=medium + + * jammy/linux: 5.15.0-41.44 -proposed tracker (LP: #1979448) + + * Fix can't boot up after change to vmd (LP: #1976587) + - PCI: vmd: Assign VMD IRQ domain before enumeration + - PCI: vmd: Revert 2565e5b69c44 ("PCI: vmd: Do not disable MSI-X remapping if + interrupt remapping is enabled by IOMMU.") + + * [SRU][Jammy/OEM-5.17][PATCH 0/1] Fix calltrace in mac80211 (LP: #1978297) + - mac80211: fix struct ieee80211_tx_info size + + * [SRU][Jammy][PATCH 0/1] Fix amd display corruption on s2idle resume + (LP: #1978244) + - drm/amd/display: Don't reinitialize DMCUB on s0ix resume + + * pl2303 serial adapter not recognized (LP: #1967493) + - USB: serial: pl2303: fix type detection for odd device + + * Remove SAUCE patches from test_vxlan_under_vrf.sh in net of + ubuntu_kernel_selftests (LP: #1975691) + - Revert "UBUNTU: SAUCE: selftests: net: Don't fail test_vxlan_under_vrf on + xfail" + - Revert "UBUNTU: SAUCE: selftests: net: Make test for VXLAN underlay in non- + default VRF an expected failure" + + * Fix hp_wmi_read_int() reporting error (0x05) (LP: #1979051) + - platform/x86: hp-wmi: Fix hp_wmi_read_int() reporting error (0x05) + + * Request to back port vmci patches to Ubuntu kernel (LP: #1978145) + - VMCI: dma dg: whitespace formatting change for vmci register defines + - VMCI: dma dg: add MMIO access to registers + - VMCI: dma dg: detect DMA datagram capability + - VMCI: dma dg: set OS page size + - VMCI: dma dg: register dummy IRQ handlers for DMA datagrams + - VMCI: dma dg: allocate send and receive buffers for DMA datagrams + - VMCI: dma dg: add support for DMA datagrams sends + - VMCI: dma dg: add support for DMA datagrams receive + - VMCI: Fix some error handling paths in vmci_guest_probe_device() + - VMCI: Release notification_bitmap in error path + - VMCI: Check exclusive_vectors when freeing interrupt 1 + - VMCI: Add support for ARM64 + - [Config] Update policies for VMWARE_VMCI and VMWARE_VMCI_VSOCKETS + + * [UBUNTU 20.04] rcu stalls with many storage key guests (LP: #1975582) + - s390/gmap: voluntarily schedule during key setting + - s390/mm: use non-quiescing sske for KVM switch to keyed guest + + * [SRU][OEM-5.14/OEM-5.17/Jammy][PATCH 0/1] Fix i915 calltrace on new ADL BIOS + (LP: #1976214) + - drm/i915: update new TMDS clock setting defined by VBT + + * Revert PPC get_user workaround (LP: #1976248) + - powerpc: Export mmu_feature_keys[] as non-GPL + + * Jammy update: v5.15.39 upstream stable release (LP: #1978240) + - MIPS: Fix CP0 counter erratum detection for R4k CPUs + - parisc: Merge model and model name into one line in /proc/cpuinfo + - ALSA: hda/realtek: Add quirk for Yoga Duet 7 13ITL6 speakers + - ALSA: fireworks: fix wrong return count shorter than expected by 4 bytes + - mmc: sdhci-msm: Reset GCC_SDCC_BCR register for SDHC + - mmc: sunxi-mmc: Fix DMA descriptors allocated above 32 bits + - mmc: core: Set HS clock speed before sending HS CMD13 + - gpiolib: of: fix bounds check for 'gpio-reserved-ranges' + - x86/fpu: Prevent FPU state corruption + - KVM: x86/svm: Account for family 17h event renumberings in + amd_pmc_perf_hw_id + - iommu/vt-d: Calculate mask for non-aligned flushes + - iommu/arm-smmu-v3: Fix size calculation in arm_smmu_mm_invalidate_range() + - drm/amd/display: Avoid reading audio pattern past AUDIO_CHANNELS_COUNT + - drm/amdgpu: do not use passthrough mode in Xen dom0 + - RISC-V: relocate DTB if it's outside memory region + - Revert "SUNRPC: attempt AF_LOCAL connect on setup" + - timekeeping: Mark NMI safe time accessors as notrace + - firewire: fix potential uaf in outbound_phy_packet_callback() + - firewire: remove check of list iterator against head past the loop body + - firewire: core: extend card->lock in fw_core_handle_bus_reset + - net: stmmac: disable Split Header (SPH) for Intel platforms + - genirq: Synchronize interrupt thread startup + - ASoC: da7219: Fix change notifications for tone generator frequency + - ASoC: wm8958: Fix change notifications for DSP controls + - ASoC: meson: Fix event generation for AUI ACODEC mux + - ASoC: meson: Fix event generation for G12A tohdmi mux + - ASoC: meson: Fix event generation for AUI CODEC mux + - s390/dasd: fix data corruption for ESE devices + - s390/dasd: prevent double format of tracks for ESE devices + - s390/dasd: Fix read for ESE with blksize < 4k + - s390/dasd: Fix read inconsistency for ESE DASD devices + - can: grcan: grcan_close(): fix deadlock + - can: isotp: remove re-binding of bound socket + - can: grcan: use ofdev->dev when allocating DMA memory + - can: grcan: grcan_probe(): fix broken system id check for errata workaround + needs + - can: grcan: only use the NAPI poll budget for RX + - nfc: replace improper check device_is_registered() in netlink related + functions + - nfc: nfcmrvl: main: reorder destructive operations in + nfcmrvl_nci_unregister_dev to avoid bugs + - NFC: netlink: fix sleep in atomic bug when firmware download timeout + - gpio: visconti: Fix fwnode of GPIO IRQ + - gpio: pca953x: fix irq_stat not updated when irq is disabled (irq_mask not + set) + - hwmon: (adt7470) Fix warning on module removal + - hwmon: (pmbus) disable PEC if not enabled + - ASoC: dmaengine: Restore NULL prepare_slave_config() callback + - ASoC: soc-ops: fix error handling + - iommu/vt-d: Drop stop marker messages + - iommu/dart: check return value after calling platform_get_resource() + - net/mlx5e: Fix trust state reset in reload + - net/mlx5e: Don't match double-vlan packets if cvlan is not set + - net/mlx5e: CT: Fix queued up restore put() executing after relevant ft + release + - net/mlx5e: Fix the calling of update_buffer_lossy() API + - net/mlx5: Avoid double clear or set of sync reset requested + - net/mlx5: Fix deadlock in sync reset flow + - selftests/seccomp: Don't call read() on TTY from background pgrp + - SUNRPC release the transport of a relocated task with an assigned transport + - RDMA/siw: Fix a condition race issue in MPA request processing + - RDMA/irdma: Flush iWARP QP if modified to ERR from RTR state + - RDMA/irdma: Reduce iWARP QP destroy time + - RDMA/irdma: Fix possible crash due to NULL netdev in notifier + - NFSv4: Don't invalidate inode attributes on delegation return + - net: ethernet: mediatek: add missing of_node_put() in mtk_sgmii_init() + - net: dsa: mt7530: add missing of_node_put() in mt7530_setup() + - net: stmmac: dwmac-sun8i: add missing of_node_put() in + sun8i_dwmac_register_mdio_mux() + - net: mdio: Fix ENOMEM return value in BCM6368 mux bus controller + - net: cpsw: add missing of_node_put() in cpsw_probe_dt() + - net: igmp: respect RCU rules in ip_mc_source() and ip_mc_msfilter() + - net: emaclite: Add error handling for of_address_to_resource() + - selftests/net: so_txtime: fix parsing of start time stamp on 32 bit systems + - selftests/net: so_txtime: usage(): fix documentation of default clock + - drm/msm/dp: remove fail safe mode related code + - btrfs: do not BUG_ON() on failure to update inode when setting xattr + - hinic: fix bug of wq out of bound access + - mld: respect RCU rules in ip6_mc_source() and ip6_mc_msfilter() + - rxrpc: Enable IPv6 checksums on transport socket + - selftests: mirror_gre_bridge_1q: Avoid changing PVID while interface is + operational + - bnxt_en: Fix possible bnxt_open() failure caused by wrong RFS flag + - bnxt_en: Fix unnecessary dropping of RX packets + - selftests: ocelot: tc_flower_chains: specify conform-exceed action for + policer + - smsc911x: allow using IRQ0 + - btrfs: force v2 space cache usage for subpage mount + - btrfs: always log symlinks in full mode + - gpio: mvebu: drop pwm base assignment + - kvm: x86/cpuid: Only provide CPUID leaf 0xA if host has architectural PMU + - net/mlx5: Fix slab-out-of-bounds while reading resource dump menu + - net/mlx5e: Lag, Fix use-after-free in fib event handler + - net/mlx5e: Lag, Fix fib_info pointer assignment + - net/mlx5e: Lag, Don't skip fib events on current dst + - iommu/dart: Add missing module owner to ops structure + - kvm: selftests: do not use bitfields larger than 32-bits for PTEs + - KVM: selftests: Silence compiler warning in the kvm_page_table_test + - x86/kvm: Preserve BSP MSR_KVM_POLL_CONTROL across suspend/resume + - KVM: x86: Do not change ICR on write to APIC_SELF_IPI + - KVM: x86/mmu: avoid NULL-pointer dereference on page freeing bugs + - KVM: LAPIC: Enable timer posted-interrupt only when mwait/hlt is advertised + - selftest/vm: verify mmap addr in mremap_test + - selftest/vm: verify remap destination address in mremap_test + - Revert "parisc: Mark sched_clock unstable only if clocks are not + syncronized" + - rcu: Fix callbacks processing time limit retaining cond_resched() + - rcu: Apply callbacks processing time limit only on softirq + - PCI: pci-bridge-emul: Add description for class_revision field + - PCI: pci-bridge-emul: Add definitions for missing capabilities registers + - PCI: aardvark: Add support for DEVCAP2, DEVCTL2, LNKCAP2 and LNKCTL2 + registers on emulated bridge + - PCI: aardvark: Clear all MSIs at setup + - PCI: aardvark: Comment actions in driver remove method + - PCI: aardvark: Disable bus mastering when unbinding driver + - PCI: aardvark: Mask all interrupts when unbinding driver + - PCI: aardvark: Fix memory leak in driver unbind + - PCI: aardvark: Assert PERST# when unbinding driver + - PCI: aardvark: Disable link training when unbinding driver + - PCI: aardvark: Disable common PHY when unbinding driver + - PCI: aardvark: Replace custom PCIE_CORE_INT_* macros with PCI_INTERRUPT_* + - PCI: aardvark: Check return value of generic_handle_domain_irq() when + processing INTx IRQ + - PCI: aardvark: Make MSI irq_chip structures static driver structures + - PCI: aardvark: Make msi_domain_info structure a static driver structure + - PCI: aardvark: Use dev_fwnode() instead of of_node_to_fwnode(dev->of_node) + - PCI: aardvark: Refactor unmasking summary MSI interrupt + - PCI: aardvark: Add support for masking MSI interrupts + - PCI: aardvark: Fix setting MSI address + - PCI: aardvark: Enable MSI-X support + - PCI: aardvark: Add support for ERR interrupt on emulated bridge + - PCI: aardvark: Optimize writing PCI_EXP_RTCTL_PMEIE and PCI_EXP_RTSTA_PME on + emulated bridge + - PCI: aardvark: Add support for PME interrupts + - PCI: aardvark: Fix support for PME requester on emulated bridge + - PCI: aardvark: Use separate INTA interrupt for emulated root bridge + - PCI: aardvark: Remove irq_mask_ack() callback for INTx interrupts + - PCI: aardvark: Don't mask irq when mapping + - PCI: aardvark: Drop __maybe_unused from advk_pcie_disable_phy() + - PCI: aardvark: Update comment about link going down after link-up + - Linux 5.15.39 + + * Jammy update: v5.15.38 upstream stable release (LP: #1978234) + - usb: mtu3: fix USB 3.0 dual-role-switch from device to host + - USB: quirks: add a Realtek card reader + - USB: quirks: add STRING quirk for VCOM device + - USB: serial: whiteheat: fix heap overflow in WHITEHEAT_GET_DTR_RTS + - USB: serial: cp210x: add PIDs for Kamstrup USB Meter Reader + - USB: serial: option: add support for Cinterion MV32-WA/MV32-WB + - USB: serial: option: add Telit 0x1057, 0x1058, 0x1075 compositions + - usb: xhci: tegra:Fix PM usage reference leak of + tegra_xusb_unpowergate_partitions + - xhci: Enable runtime PM on second Alderlake controller + - xhci: stop polling roothubs after shutdown + - xhci: increase usb U3 -> U0 link resume timeout from 100ms to 500ms + - iio: dac: ad5592r: Fix the missing return value. + - iio: dac: ad5446: Fix read_raw not returning set value + - iio: magnetometer: ak8975: Fix the error handling in ak8975_power_on() + - iio: imu: inv_icm42600: Fix I2C init possible nack + - usb: misc: fix improper handling of refcount in uss720_probe() + - usb: core: Don't hold the device lock while sleeping in do_proc_control() + - usb: typec: ucsi: Fix reuse of completion structure + - usb: typec: ucsi: Fix role swapping + - usb: gadget: uvc: Fix crash when encoding data for usb request + - usb: gadget: configfs: clear deactivation flag in + configfs_composite_unbind() + - usb: dwc3: Try usb-role-switch first in dwc3_drd_init + - usb: dwc3: core: Fix tx/rx threshold settings + - usb: dwc3: core: Only handle soft-reset in DCTL + - usb: dwc3: gadget: Return proper request status + - usb: dwc3: pci: add support for the Intel Meteor Lake-P + - usb: cdns3: Fix issue for clear halt endpoint + - usb: phy: generic: Get the vbus supply + - serial: imx: fix overrun interrupts in DMA mode + - serial: amba-pl011: do not time out prematurely when draining tx fifo + - serial: 8250: Also set sticky MCR bits in console restoration + - serial: 8250: Correct the clock for EndRun PTP/1588 PCIe device + - arch_topology: Do not set llc_sibling if llc_id is invalid + - ceph: fix possible NULL pointer dereference for req->r_session + - bus: mhi: host: pci_generic: Add missing poweroff() PM callback + - bus: mhi: host: pci_generic: Flush recovery worker during freeze + - arm64: dts: imx8mm-venice: fix spi2 pin configuration + - pinctrl: samsung: fix missing GPIOLIB on ARM64 Exynos config + - hex2bin: make the function hex_to_bin constant-time + - hex2bin: fix access beyond string end + - riscv: patch_text: Fixup last cpu should be master + - x86/pci/xen: Disable PCI/MSI[-X] masking for XEN_HVM guests + - iocost: don't reset the inuse weight of under-weighted debtors + - virtio_net: fix wrong buf address calculation when using xdp + - cpufreq: qcom-hw: fix the race between LMH worker and cpuhp + - cpufreq: qcom-cpufreq-hw: Fix throttle frequency value on EPSS platforms + - video: fbdev: udlfb: properly check endpoint type + - arm64: dts: meson: remove CPU opps below 1GHz for G12B boards + - arm64: dts: meson: remove CPU opps below 1GHz for SM1 boards + - iio:imu:bmi160: disable regulator in error path + - mtd: rawnand: fix ecc parameters for mt7622 + - xsk: Fix l2fwd for copy mode + busy poll combo + - arm64: dts: imx8qm: Correct SCU clock controller's compatible property + - USB: Fix xhci event ring dequeue pointer ERDP update issue + - ARM: dts: imx6qdl-apalis: Fix sgtl5000 detection issue + - arm64: dts: imx8mn: Fix SAI nodes + - arm64: dts: meson-sm1-bananapi-m5: fix wrong GPIO pin labeling for CON1 + - phy: samsung: Fix missing of_node_put() in exynos_sata_phy_probe + - phy: samsung: exynos5250-sata: fix missing device put in probe error paths + - ARM: OMAP2+: Fix refcount leak in omap_gic_of_init + - bus: ti-sysc: Make omap3 gpt12 quirk handling SoC specific + - ARM: dts: dra7: Fix suspend warning for vpe powerdomain + - phy: ti: omap-usb2: Fix error handling in omap_usb2_enable_clocks + - ARM: dts: at91: Map MCLK for wm8731 on at91sam9g20ek + - ARM: dts: at91: sama5d4_xplained: fix pinctrl phandle name + - ARM: dts: at91: fix pinctrl phandles + - phy: mapphone-mdm6600: Fix PM error handling in phy_mdm6600_probe + - phy: ti: Add missing pm_runtime_disable() in serdes_am654_probe + - interconnect: qcom: sdx55: Drop IP0 interconnects + - ARM: dts: Fix mmc order for omap3-gta04 + - ARM: dts: am3517-evm: Fix misc pinmuxing + - ARM: dts: logicpd-som-lv: Fix wrong pinmuxing on OMAP35 + - ipvs: correctly print the memory size of ip_vs_conn_tab + - phy: amlogic: fix error path in phy_g12a_usb3_pcie_probe() + - pinctrl: mediatek: moore: Fix build error + - mtd: rawnand: Fix return value check of wait_for_completion_timeout + - mtd: fix 'part' field data corruption in mtd_info + - pinctrl: stm32: Do not call stm32_gpio_get() for edge triggered IRQs in EOI + - memory: renesas-rpc-if: Fix HF/OSPI data transfer in Manual Mode + - net: dsa: Add missing of_node_put() in dsa_port_link_register_of + - netfilter: nft_set_rbtree: overlap detection with element re-addition after + deletion + - bpf, lwt: Fix crash when using bpf_skb_set_tunnel_key() from bpf_xmit lwt + hook + - pinctrl: rockchip: fix RK3308 pinmux bits + - tcp: md5: incorrect tcp_header_len for incoming connections + - pinctrl: stm32: Keep pinctrl block clock enabled when LEVEL IRQ requested + - tcp: ensure to use the most recently sent skb when filling the rate sample + - wireguard: device: check for metadata_dst with skb_valid_dst() + - sctp: check asoc strreset_chunk in sctp_generate_reconf_event + - ARM: dts: imx6ull-colibri: fix vqmmc regulator + - arm64: dts: imx8mn-ddr4-evk: Describe the 32.768 kHz PMIC clock + - pinctrl: pistachio: fix use of irq_of_parse_and_map() + - cpufreq: fix memory leak in sun50i_cpufreq_nvmem_probe + - net: hns3: clear inited state and stop client after failed to register + netdev + - net: hns3: modify the return code of hclge_get_ring_chain_from_mbx + - net: hns3: add validity check for message data length + - net: hns3: add return value for mailbox handling in PF + - net/smc: sync err code when tcp connection was refused + - ip_gre: Make o_seqno start from 0 in native mode + - ip6_gre: Make o_seqno start from 0 in native mode + - ip_gre, ip6_gre: Fix race condition on o_seqno in collect_md mode + - tcp: fix potential xmit stalls caused by TCP_NOTSENT_LOWAT + - tcp: make sure treq->af_specific is initialized + - bus: sunxi-rsb: Fix the return value of sunxi_rsb_device_create() + - clk: sunxi: sun9i-mmc: check return value after calling + platform_get_resource() + - cpufreq: qcom-cpufreq-hw: Clear dcvs interrupts + - net: bcmgenet: hide status block before TX timestamping + - net: phy: marvell10g: fix return value on error + - net: dsa: mv88e6xxx: Fix port_hidden_wait to account for port_base_addr + - drm/sun4i: Remove obsolete references to PHYS_OFFSET + - net: dsa: lantiq_gswip: Don't set GSWIP_MII_CFG_RMII_CLK + - io_uring: check reserved fields for send/sendmsg + - io_uring: check reserved fields for recv/recvmsg + - netfilter: conntrack: fix udp offload timeout sysctl + - drm/amdkfd: Fix GWS queue count + - drm/amd/display: Fix memory leak in dcn21_clock_source_create + - tls: Skip tls_append_frag on zero copy size + - bnx2x: fix napi API usage sequence + - net: fec: add missing of_node_put() in fec_enet_init_stop_mode() + - gfs2: Prevent endless loops in gfs2_file_buffered_write + - gfs2: Minor retry logic cleanup + - gfs2: Make sure not to return short direct writes + - gfs2: No short reads or writes upon glock contention + - perf arm-spe: Fix addresses of synthesized SPE events + - ixgbe: ensure IPsec VF<->PF compatibility + - Revert "ibmvnic: Add ethtool private flag for driver-defined queue limits" + - tcp: fix F-RTO may not work correctly when receiving DSACK + - ASoC: Intel: soc-acpi: correct device endpoints for max98373 + - ASoC: wm8731: Disable the regulator when probing fails + - ext4: fix bug_on in start_this_handle during umount filesystem + - arch: xtensa: platforms: Fix deadlock in rs_close() + - ksmbd: increment reference count of parent fp + - ksmbd: set fixed sector size to FS_SECTOR_SIZE_INFORMATION + - bonding: do not discard lowest hash bit for non layer3+4 hashing + - x86: __memcpy_flushcache: fix wrong alignment if size > 2^32 + - cifs: destage any unwritten data to the server before calling + copychunk_write + - drivers: net: hippi: Fix deadlock in rr_close() + - powerpc/perf: Fix 32bit compile + - selftest/vm: verify mmap addr in mremap_test + - selftest/vm: verify remap destination address in mremap_test + - Revert "ACPI: processor: idle: fix lockup regression on 32-bit ThinkPad T40" + - zonefs: Fix management of open zones + - zonefs: Clear inode information flags on inode creation + - kasan: prevent cpu_quarantine corruption when CPU offline and cache shrink + occur at same time + - mtd: rawnand: qcom: fix memory corruption that causes panic + - netfilter: Update ip6_route_me_harder to consider L3 domain + - drm/i915: Check EDID for HDR static metadata when choosing blc + - drm/i915: Fix SEL_FETCH_PLANE_*(PIPE_B+) register addresses + - net: ethernet: stmmac: fix write to sgmii_adapter_base + - ACPI: processor: idle: Avoid falling back to C3 type C-states + - thermal: int340x: Fix attr.show callback prototype + - btrfs: fix leaked plug after failure syncing log on zoned filesystems + - ARM: dts: at91: sama7g5ek: enable pull-up on flexcom3 console lines + - ARM: dts: imx8mm-venice-gw{71xx,72xx,73xx}: fix OTG controller OC mode + - x86/cpu: Load microcode during restore_processor_state() + - perf symbol: Pass is_kallsyms to symbols__fixup_end() + - perf symbol: Update symbols__fixup_end() + - tty: n_gsm: fix restart handling via CLD command + - tty: n_gsm: fix decoupled mux resource + - tty: n_gsm: fix mux cleanup after unregister tty device + - tty: n_gsm: fix wrong signal octet encoding in convergence layer type 2 + - tty: n_gsm: fix malformed counter for out of frame data + - netfilter: nft_socket: only do sk lookups when indev is available + - tty: n_gsm: fix insufficient txframe size + - tty: n_gsm: fix wrong DLCI release order + - tty: n_gsm: fix missing explicit ldisc flush + - tty: n_gsm: fix wrong command retry handling + - tty: n_gsm: fix wrong command frame length field encoding + - tty: n_gsm: fix wrong signal octets encoding in MSC + - tty: n_gsm: fix missing tty wakeup in convergence layer type 2 + - tty: n_gsm: fix reset fifo race condition + - tty: n_gsm: fix incorrect UA handling + - tty: n_gsm: fix software flow control handling + - perf symbol: Remove arch__symbols__fixup_end() + - eeprom: at25: Use DMA safe buffers + - objtool: Fix code relocs vs weak symbols + - objtool: Fix type of reloc::addend + - powerpc/64: Add UADDR64 relocation support + - Linux 5.15.38 + + * Jammy update: v5.15.37 upstream stable release (LP: #1976135) + - floppy: disable FDRAWCMD by default + - [Config] updateconfigs for BLK_DEV_FD_RAWCMD + - bpf: Introduce composable reg, ret and arg types. + - bpf: Replace ARG_XXX_OR_NULL with ARG_XXX | PTR_MAYBE_NULL + - bpf: Replace RET_XXX_OR_NULL with RET_XXX | PTR_MAYBE_NULL + - bpf: Replace PTR_TO_XXX_OR_NULL with PTR_TO_XXX | PTR_MAYBE_NULL + - bpf: Introduce MEM_RDONLY flag + - bpf: Convert PTR_TO_MEM_OR_NULL to composable types. + - bpf: Make per_cpu_ptr return rdonly PTR_TO_MEM. + - bpf: Add MEM_RDONLY for helper args that are pointers to rdonly mem. + - bpf/selftests: Test PTR_TO_RDONLY_MEM + - bpf: Fix crash due to out of bounds access into reg2btf_ids. + - spi: cadence-quadspi: fix write completion support + - ARM: dts: socfpga: change qspi to "intel,socfpga-qspi" + - mm: kfence: fix objcgs vector allocation + - gup: Turn fault_in_pages_{readable,writeable} into + fault_in_{readable,writeable} + - iov_iter: Turn iov_iter_fault_in_readable into fault_in_iov_iter_readable + - iov_iter: Introduce fault_in_iov_iter_writeable + - gfs2: Add wrapper for iomap_file_buffered_write + - gfs2: Clean up function may_grant + - gfs2: Introduce flag for glock holder auto-demotion + - gfs2: Move the inode glock locking to gfs2_file_buffered_write + - gfs2: Eliminate ip->i_gh + - gfs2: Fix mmap + page fault deadlocks for buffered I/O + - iomap: Fix iomap_dio_rw return value for user copies + - iomap: Support partial direct I/O on user copy failures + - iomap: Add done_before argument to iomap_dio_rw + - gup: Introduce FOLL_NOFAULT flag to disable page faults + - iov_iter: Introduce nofault flag to disable page faults + - gfs2: Fix mmap + page fault deadlocks for direct I/O + - btrfs: fix deadlock due to page faults during direct IO reads and writes + - btrfs: fallback to blocking mode when doing async dio over multiple extents + - mm: gup: make fault_in_safe_writeable() use fixup_user_fault() + - selftests/bpf: Add test for reg2btf_ids out of bounds access + - Linux 5.15.37 + + * CVE-2022-1789 + - KVM: x86/mmu: fix NULL pointer dereference on guest INVPCID + + * Jammy update: v5.15.36 upstream stable release (LP: #1972905) + - block: simplify the block device syncing code + - xfs: return errors in xfs_fs_sync_fs + - dma-mapping: remove bogus test for pfn_valid from dma_map_resource + - arm64/mm: drop HAVE_ARCH_PFN_VALID + - etherdevice: Adjust ether_addr* prototypes to silence -Wstringop-overead + - mm: page_alloc: fix building error on -Werror=array-compare + - perf tools: Fix segfault accessing sample_id xyarray + - mm, kfence: support kmem_dump_obj() for KFENCE objects + - gfs2: assign rgrp glock before compute_bitstructs + - scsi: ufs: core: scsi_get_lba() error fix + - ALSA: usb-audio: Clear MIDI port active flag after draining + - ALSA: hda/realtek: Add quirk for Clevo NP70PNP + - ASoC: atmel: Remove system clock tree configuration for at91sam9g20ek + - ASoC: topology: Correct error handling in soc_tplg_dapm_widget_create() + - ASoC: rk817: Use devm_clk_get() in rk817_platform_probe + - ASoC: msm8916-wcd-digital: Check failure for devm_snd_soc_register_component + - ASoC: codecs: wcd934x: do not switch off SIDO Buck when codec is in use + - dmaengine: idxd: fix device cleanup on disable + - dmaengine: imx-sdma: Fix error checking in sdma_event_remap + - dmaengine: mediatek:Fix PM usage reference leak of + mtk_uart_apdma_alloc_chan_resources + - dmaengine: dw-edma: Fix unaligned 64bit access + - spi: spi-mtk-nor: initialize spi controller after resume + - esp: limit skb_page_frag_refill use to a single page + - spi: cadence-quadspi: fix incorrect supports_op() return value + - igc: Fix infinite loop in release_swfw_sync + - igc: Fix BUG: scheduling while atomic + - igc: Fix suspending when PTM is active + - ALSA: hda/hdmi: fix warning about PCM count when used with SOF + - rxrpc: Restore removed timer deletion + - net/smc: Fix sock leak when release after smc_shutdown() + - net/packet: fix packet_sock xmit return value checking + - ip6_gre: Avoid updating tunnel->tun_hlen in __gre6_xmit() + - ip6_gre: Fix skb_under_panic in __gre6_xmit() + - net: restore alpha order to Ethernet devices in config + - net/sched: cls_u32: fix possible leak in u32_init_knode() + - l3mdev: l3mdev_master_upper_ifindex_by_index_rcu should be using + netdev_master_upper_dev_get_rcu + - ipv6: make ip6_rt_gc_expire an atomic_t + - can: isotp: stop timeout monitoring when no first frame was sent + - net: dsa: hellcreek: Calculate checksums in tagger + - net: mscc: ocelot: fix broken IP multicast flooding + - netlink: reset network and mac headers in netlink_dump() + - drm/i915/display/psr: Unset enable_psr2_sel_fetch if other checks in + intel_psr2_config_valid() fails + - net: stmmac: Use readl_poll_timeout_atomic() in atomic state + - dmaengine: idxd: add RO check for wq max_batch_size write + - dmaengine: idxd: add RO check for wq max_transfer_size write + - dmaengine: idxd: skip clearing device context when device is read-only + - selftests: mlxsw: vxlan_flooding: Prevent flooding of unwanted packets + - arm64: mm: fix p?d_leaf() + - ARM: vexpress/spc: Avoid negative array index when !SMP + - reset: renesas: Check return value of reset_control_deassert() + - reset: tegra-bpmp: Restore Handle errors in BPMP response + - platform/x86: samsung-laptop: Fix an unsigned comparison which can never be + negative + - ALSA: usb-audio: Fix undefined behavior due to shift overflowing the + constant + - drm/msm/disp: check the return value of kzalloc() + - arm64: dts: imx: Fix imx8*-var-som touchscreen property sizes + - vxlan: fix error return code in vxlan_fdb_append + - cifs: Check the IOCB_DIRECT flag, not O_DIRECT + - mt76: Fix undefined behavior due to shift overflowing the constant + - brcmfmac: sdio: Fix undefined behavior due to shift overflowing the constant + - dpaa_eth: Fix missing of_node_put in dpaa_get_ts_info() + - drm/msm/mdp5: check the return of kzalloc() + - net: macb: Restart tx only if queue pointer is lagging + - scsi: iscsi: Release endpoint ID when its freed + - scsi: iscsi: Merge suspend fields + - scsi: iscsi: Fix NOP handling during conn recovery + - scsi: qedi: Fix failed disconnect handling + - stat: fix inconsistency between struct stat and struct compat_stat + - VFS: filename_create(): fix incorrect intent. + - nvme: add a quirk to disable namespace identifiers + - nvme-pci: disable namespace identifiers for the MAXIO MAP1002/1202 + - nvme-pci: disable namespace identifiers for Qemu controllers + - EDAC/synopsys: Read the error count from the correct register + - mm/memory-failure.c: skip huge_zero_page in memory_failure() + - memcg: sync flush only if periodic flush is delayed + - mm, hugetlb: allow for "high" userspace addresses + - oom_kill.c: futex: delay the OOM reaper to allow time for proper futex + cleanup + - mm/mmu_notifier.c: fix race in mmu_interval_notifier_remove() + - ata: pata_marvell: Check the 'bmdma_addr' beforing reading + - dma: at_xdmac: fix a missing check on list iterator + - dmaengine: imx-sdma: fix init of uart scripts + - net: atlantic: invert deep par in pm functions, preventing null derefs + - Input: omap4-keypad - fix pm_runtime_get_sync() error checking + - scsi: sr: Do not leak information in ioctl + - sched/pelt: Fix attach_entity_load_avg() corner case + - perf/core: Fix perf_mmap fail when CONFIG_PERF_USE_VMALLOC enabled + - drm/panel/raspberrypi-touchscreen: Avoid NULL deref if not initialised + - drm/panel/raspberrypi-touchscreen: Initialise the bridge in prepare + - KVM: PPC: Fix TCE handling for VFIO + - drm/vc4: Use pm_runtime_resume_and_get to fix pm_runtime_get_sync() usage + - powerpc/perf: Fix power9 event alternatives + - powerpc/perf: Fix power10 event alternatives + - perf script: Always allow field 'data_src' for auxtrace + - perf report: Set PERF_SAMPLE_DATA_SRC bit for Arm SPE event + - xtensa: patch_text: Fixup last cpu should be master + - xtensa: fix a7 clobbering in coprocessor context load/store + - openvswitch: fix OOB access in reserve_sfa_size() + - ASoC: soc-dapm: fix two incorrect uses of list iterator + - e1000e: Fix possible overflow in LTR decoding + - ARC: entry: fix syscall_trace_exit argument + - arm_pmu: Validate single/group leader events + - KVM: x86/pmu: Update AMD PMC sample period to fix guest NMI-watchdog + - KVM: x86: Pend KVM_REQ_APICV_UPDATE during vCPU creation to fix a race + - KVM: nVMX: Defer APICv updates while L2 is active until L1 is active + - KVM: SVM: Flush when freeing encrypted pages even on SME_COHERENT CPUs + - netfilter: conntrack: convert to refcount_t api + - netfilter: conntrack: avoid useless indirection during conntrack destruction + - ext4: fix fallocate to use file_modified to update permissions consistently + - ext4: fix symlink file size not match to file content + - ext4: fix use-after-free in ext4_search_dir + - ext4, doc: fix incorrect h_reserved size + - ext4: fix overhead calculation to account for the reserved gdt blocks + - ext4: force overhead calculation if the s_overhead_cluster makes no sense + - netfilter: nft_ct: fix use after free when attaching zone template + - jbd2: fix a potential race while discarding reserved buffers after an abort + - spi: atmel-quadspi: Fix the buswidth adjustment between spi-mem and + controller + - block/compat_ioctl: fix range check in BLKGETSIZE + - arm64: dts: qcom: add IPA qcom,qmp property + - Linux 5.15.36 + + * Aquantia GbE LAN driver causes UBSAN error during kernel boot + (LP: #1958770) // Jammy update: v5.15.36 upstream stable release + (LP: #1972905) + - net: atlantic: Avoid out-of-bounds indexing + + -- Stefan Bader Wed, 22 Jun 2022 14:42:28 +0200 + +linux (5.15.0-40.43) jammy; urgency=medium + + * jammy/linux: 5.15.0-40.43 -proposed tracker (LP: #1978610) + + * Packaging resync (LP: #1786013) + - debian/dkms-versions -- update from kernel-versions (main/2022.05.30) + + * [SRU][OEM-5.14/OEM-5.17/J][PATCH 0/2] Fix system hangs after s2idle on AMD + A+A GPU (LP: #1975804) + - Revert "drm/amd/pm: keep the BACO feature enabled for suspend" + - drm/amd: Don't reset dGPUs if the system is going to s2idle + + * [SRU][OEM-5.14/OEM-5.17/J][PATCH 0/1] Read the discovery registers for + AMD_SFH (LP: #1975798) + - HID: amd_sfh: Add support for sensor discovery + + * [UBUNTU 20.04] CPU-MF: add extended counter set definitions for new IBM z16 + (LP: #1974433) + - s390/cpumf: add new extended counter set for IBM z16 + + * [UBUNTU 20.04] KVM nesting support leaks too much memory, might result in + stalls during cleanup (LP: #1974017) + - KVM: s390: vsie/gmap: reduce gmap_rmap overhead + + * [UBUNTU 20.04] Null Pointer issue in nfs code running Ubuntu on IBM Z + (LP: #1968096) + - NFS: Fix up nfs_ctx_key_to_expire() + + * Fix REG_WAIT timeout for Yellow Carp (LP: #1971417) + - drm/amd/display: Clear encoder assignments when state cleared. + - drm/amd/display: fix stale info in link encoder assignment + - drm/amd/display: Query all entries in assignment table during updates. + - drm/amd/display: Initialise encoder assignment when initialising dc_state + + * Enable hotspot feature for Realtek 8821CE (LP: #1969326) + - rtw88: Add update beacon flow for AP mode + - rtw88: 8821c: Enable TX report for management frames + - rtw88: do PHY calibration while starting AP + - rtw88: 8821c: fix debugfs rssi value + - rtw88: add ieee80211:sta_rc_update ops + + * prevent kernel panic with overlayfs + shiftfs (LP: #1973620) + - SAUCE: overlayfs: prevent dereferencing struct file in ovl_vm_prfile_set() + + * disable Intel DMA remapping by default (LP: #1971699) + - Revert "UBUNTU: [Config] enable Intel DMA remapping options by default" + + * Mute/mic LEDs no function on Elitebook 630 (LP: #1974111) + - ALSA: hda/realtek: fix right sounds and mute/micmute LEDs for HP machine + + * [Regression] Real-time Kernel Build Failure (LP: #1972899) + - x86/mm: Include spinlock_t definition in pgtable. + + * build backport-iwlwifi-dkms as linux-modules-iwlwifi-ABI (LP: #1969434) + - [Packaging] support standalone dkms module builds + - [Packaging] drop do_ arch specific configs + + * IPU6 camera has no function on Andrews MLK (LP: #1964983) + - SAUCE: IPU6: 2022-03-11 alpha release for Andrews MLK + - [Config] IPU6: enable OV02C10 sensor + - SAUCE: IPU6: 2022-04-01 Andrews MLK PV release + - SAUCE: spi: ljca: return when a sub-transaction first failed + - SACUE: ljca: disable parallelly stub write + - SAUCE: ljca: fix race condition issue in runtime PM + - SAUCE: i2c-ljca: fix a null pointer access issue on tgl + - SAUCE: ljca: fix a typo issue + - SAUCE: ljca: assume stub enum failed as a warning + - SAUCE: mei: cleanup header file including + - SAUCE: intel_ulpss: Replaced by LJCA and remove + - [Config] drop intel_ulpss in favor of by LJCA + + * multiple UBSAN warnings in Intel IPU6 camera driver at boot (LP: #1958006) + - SAUCE: media: pci: intel: Avoid UBSAN warnings of index bound and shift + + * Support Intel IPU6 MIPI camera on Alder Lake platforms (LP: #1955383) + - SAUCE: intel ipu drivers first release + - SAUCE: IPU driver release WW48 + - SAUCE: IPU driver release WW48 with MCU + - SAUCE: IPU driver release WW52 + - SAUCE: IPU driver release WW04 + - SAUCE: IPU driver release WW14 + - SAUCE: Fix ov01a1s output mirror issue + - SAUCE: integrate IPU6 builds + - [Config] updateconfigs for IPU6 driver + - SAUCE: Fix ov01a1s IQ issues + - SAUCE: intel/ipu6: Remove unnecessary video devices + - SAUCE: change power control driver to acpi driver + - SAUCE: IPU6 driver release for kernel 5.13 + - SAUCE: sensor HM11b1 brightness bugfix + - SAUCE: Fix build error on Kernel 5.13 + - SAUCE: IPU6 driver release for kernel 5.14 on 2021-11-01 + - [Config] IPU6: enable OV01A10 sensor + - SAUCE: Fix build error for kernel 5.15 + - SAUCE: intel visual sensing controller(VSC) driver first release + - [Config] ivsc: enable Intel VSC drivers + - SAUCE: ivsc: return error when device not ready + - SAUCE: ivsc: add soft dependencies for intel_vsc module + - SAUCE: ljca: switch wait event to uninterruptible + - SAUCE: mei-vsc: switch wait event to uninterruptible + - SAUCE: mei_vsc: add ACPI HID for ADL + - SAUCE: ljca: add multi ACPI HID support + - SAUCE: ivsc: add delay for acquire camera to wait firmware ready + - SAUCE: mei_vsc: distinguish platform with different camera sensor + - SAUCE: i2c-ljca: fix a potential issue + - SAUCE: ljca: disable autosuspend by default + - [Config] make Intel IPU6 modules amd64 only + - SAUCE: IPU6: drop unnecessary cflags manipulation + + -- Stefan Bader Wed, 15 Jun 2022 14:14:21 +0200 + +linux (5.15.0-39.42) jammy; urgency=medium + + * CVE-2022-21123 // CVE-2022-21125 // CVE-2022-21166 + - Documentation: Add documentation for Processor MMIO Stale Data + - x86/speculation/mmio: Enumerate Processor MMIO Stale Data bug + - x86/speculation: Add a common function for MD_CLEAR mitigation update + - x86/speculation/mmio: Add mitigation for Processor MMIO Stale Data + - x86/bugs: Group MDS, TAA & Processor MMIO Stale Data mitigations + - x86/speculation/mmio: Enable CPU Fill buffer clearing on idle + - x86/speculation/mmio: Add sysfs reporting for Processor MMIO Stale Data + - x86/speculation/srbds: Update SRBDS mitigation selection + - x86/speculation/mmio: Reuse SRBDS mitigation for SBDS + - KVM: x86/speculation: Disable Fill buffer clear within guests + - x86/speculation/mmio: Print SMT warning + + -- Thadeu Lima de Souza Cascardo Thu, 09 Jun 2022 11:36:27 -0300 + +linux (5.15.0-37.39) jammy; urgency=medium + + * netfilter newset OOB write (LP: #1976363) + - netfilter: nf_tables: sanitize nft_set_desc_concat_parse() + + * CVE-2022-1966 + - netfilter: nf_tables: disallow non-stateful expression in sets earlier + + -- Thadeu Lima de Souza Cascardo Wed, 01 Jun 2022 14:49:43 -0300 + linux (5.15.0-35.36) jammy; urgency=medium * CVE-2022-21499 diff -u linux-intel-iotg-5.15-5.15.0/debian.master/config/amd64/config.common.amd64 linux-intel-iotg-5.15-5.15.0/debian.master/config/amd64/config.common.amd64 --- linux-intel-iotg-5.15-5.15.0/debian.master/config/amd64/config.common.amd64 +++ linux-intel-iotg-5.15-5.15.0/debian.master/config/amd64/config.common.amd64 @@ -273,6 +273,9 @@ CONFIG_INPUT_SPARSEKMAP=m CONFIG_INPUT_TABLET=y CONFIG_INPUT_TOUCHSCREEN=y +CONFIG_INTEL_VSC=m +CONFIG_INTEL_VSC_ACE_DEBUG=m +CONFIG_INTEL_VSC_PSE=m CONFIG_INTERCONNECT=y CONFIG_IOMMU_DEFAULT_DMA_LAZY=y # CONFIG_IOMMU_DEFAULT_DMA_STRICT is not set @@ -337,6 +340,7 @@ CONFIG_MFD_IQS62X=m CONFIG_MFD_JANZ_CMODIO=m CONFIG_MFD_KEMPLD=m +CONFIG_MFD_LJCA=m CONFIG_MFD_LM3533=m CONFIG_MFD_LP3943=m CONFIG_MFD_MADERA=m @@ -485,6 +489,7 @@ CONFIG_PMIC_OPREGION=y CONFIG_PM_DEVFREQ=y CONFIG_POWERCAP=y +CONFIG_POWER_CTRL_LOGIC=m CONFIG_POWER_SUPPLY=y CONFIG_PPP=y CONFIG_PPS=y @@ -660,6 +665,9 @@ CONFIG_VFIO_PCI=y CONFIG_VFIO_PCI_CORE=y CONFIG_VFIO_VIRQFD=y +CONFIG_VIDEO_INTEL_IPU6=m +CONFIG_VIDEO_OV01A10=m +CONFIG_VIDEO_OV02C10=m CONFIG_VIRTIO_MMIO=y CONFIG_VME_BUS=y CONFIG_VMXNET3=m diff -u linux-intel-iotg-5.15-5.15.0/debian.master/config/annotations linux-intel-iotg-5.15-5.15.0/debian.master/config/annotations --- linux-intel-iotg-5.15-5.15.0/debian.master/config/annotations +++ linux-intel-iotg-5.15-5.15.0/debian.master/config/annotations @@ -323,7 +323,6 @@ CONFIG_CRYPTO_USER_API_AEAD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> CONFIG_CRYPTO_USER_API_ENABLE_OBSOLETE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> CONFIG_CRYPTO_STATS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> -CONFIG_CRYPTO_LIB_BLAKE2S policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> CONFIG_CRYPTO_LIB_CHACHA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> CONFIG_CRYPTO_LIB_CURVE25519 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> CONFIG_CRYPTO_LIB_POLY1305 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> @@ -775,6 +774,7 @@ CONFIG_MONREADER policy<{'s390x': 'm'}> CONFIG_MONWRITER policy<{'s390x': 'm'}> CONFIG_S390_VMUR policy<{'s390x': 'm'}> +CONFIG_S390_UV_UAPI policy<{'s390x': 'y'}> CONFIG_XILLYBUS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> CONFIG_XILLYBUS_PCIE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> CONFIG_XILLYBUS_OF policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> @@ -782,6 +782,7 @@ # CONFIG_NVRAM mark note CONFIG_SCLP_OFB mark note +CONFIG_S390_UV_UAPI mark note # Menu: Device Drivers >> Character devices >> Enable TTY CONFIG_NULL_TTY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> @@ -1844,7 +1845,9 @@ CONFIG_DEBUG_GPIO policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> CONFIG_GPIO_SYSFS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> CONFIG_GPIO_CDEV policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> -CONFIG_GPIO_CDEV_V1 policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_GPIO_CDEV_V1 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> + +CONFIG_GPIO_CDEV_V1 note # Menu: Device Drivers >> GPIO Support >> I2C GPIO expanders CONFIG_GPIO_ADP5588 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> @@ -1923,6 +1926,7 @@ CONFIG_GPIO_HISI policy<{'arm64': 'm'}> CONFIG_GPIO_HLWD policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> CONFIG_GPIO_ICH policy<{'amd64': 'm'}> +CONFIG_GPIO_LJCA policy<{'amd64': 'm'}> CONFIG_GPIO_LOGICVC policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> CONFIG_GPIO_MB86S7X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> CONFIG_GPIO_MENZ127 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> @@ -3196,6 +3200,7 @@ CONFIG_I2C_TAOS_EVM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> CONFIG_I2C_TINY_USB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> CONFIG_I2C_VIPERBOARD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_I2C_LJCA policy<{'amd64': 'm'}> CONFIG_I2C_MLXCPLD policy<{'amd64': 'm'}> CONFIG_I2C_CROS_EC_TUNNEL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm'}> CONFIG_I2C_XGENE_SLIMPRO policy<{'arm64': 'm'}> @@ -3280,11 +3285,10 @@ # Menu: Device Drivers >> IOMMU Hardware Support >> Support for Intel IOMMU using DMA Remapping Devices CONFIG_INTEL_IOMMU policy<{'amd64': 'y'}> CONFIG_INTEL_IOMMU_SVM policy<{'amd64': 'y'}> -CONFIG_INTEL_IOMMU_DEFAULT_ON policy<{'amd64': 'y'}> -CONFIG_INTEL_IOMMU_SCALABLE_MODE_DEFAULT_ON policy<{'amd64': 'y'}> - -CONFIG_INTEL_IOMMU_DEFAULT_ON note -CONFIG_INTEL_IOMMU_SCALABLE_MODE_DEFAULT_ON note +CONFIG_INTEL_IOMMU_DEFAULT_ON policy<{'amd64': 'n'}> +CONFIG_INTEL_IOMMU_SCALABLE_MODE_DEFAULT_ON policy<{'amd64': 'n'}> +# +CONFIG_INTEL_IOMMU_DEFAULT_ON note flag # Menu: Device Drivers >> IRQ chip support CONFIG_AL_FIC policy<{'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> @@ -4778,7 +4782,14 @@ CONFIG_INTEL_MEI_ME policy<{'amd64': 'm'}> CONFIG_INTEL_MEI_TXE policy<{'amd64': 'm'}> CONFIG_INTEL_MEI_HDCP policy<{'amd64': 'm'}> -CONFIG_VMWARE_VMCI policy<{'amd64': 'm'}> +CONFIG_INTEL_VSC policy<{'amd64': 'm', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_INTEL_VSC_ACE policy<{'amd64': 'm'}> +CONFIG_INTEL_VSC_ACE_DEBUG policy<{'amd64': 'm', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_INTEL_VSC_CSI policy<{'amd64': 'm'}> +CONFIG_INTEL_VSC_PSE policy<{'amd64': 'm', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_INTEL_MEI_VSC policy<{'amd64': 'm'}> +CONFIG_VMWARE_VMCI policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_VMWARE_VMCI note CONFIG_ECHO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> CONFIG_CXL policy<{'ppc64el': 'm'}> CONFIG_OCXL policy<{'ppc64el': 'm'}> @@ -4973,6 +4984,7 @@ CONFIG_MFD_INTEL_M10_BMC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> CONFIG_MFD_RSMU_I2C policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> CONFIG_MFD_RSMU_SPI policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MFD_LJCA policy<{'amd64': 'm', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> # CONFIG_MFD_SM501 note CONFIG_MFD_TPS65217 mark note @@ -5097,6 +5109,11 @@ CONFIG_VIDEO_CCS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> CONFIG_VIDEO_ET8EK8 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> CONFIG_VIDEO_S5C73M3 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_POWER_CTRL_LOGIC policy<{'amd64': 'm', 'arm64': 'n'}> +CONFIG_VIDEO_OV01A10 policy<{'amd64': 'm', 'arm64': 'n'}> +CONFIG_VIDEO_OV01A1S policy<{'amd64': 'm'}> +CONFIG_VIDEO_OV02C10 policy<{'amd64': 'm', 'arm64': 'n'}> +CONFIG_VIDEO_HM11B1 policy<{'amd64': 'm'}> # Menu: Device Drivers >> Multimedia support >> Media ancillary drivers >> Customise DVB Frontends CONFIG_DVB_STB0899 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> @@ -5394,6 +5411,7 @@ CONFIG_DVB_DDBRIDGE_MSIENABLE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> CONFIG_DVB_SMIPCIE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> CONFIG_DVB_NETUP_UNIDVB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_INTEL_IPU6 policy<{'amd64': 'm', 'arm64': 'n'}> CONFIG_VIDEO_IPU3_CIO2 policy<{'amd64': 'm'}> CONFIG_CIO2_BRIDGE policy<{'amd64': 'y'}> CONFIG_VIDEO_PCI_SKELETON policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> @@ -7105,9 +7123,10 @@ CONFIG_PCIEAER_INJECT policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 's390x': 'n'}> CONFIG_PCIE_ECRC policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 's390x': 'n'}> CONFIG_PCIE_DPC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 's390x': 'y'}> -CONFIG_PCIE_EDR policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_PCIE_EDR policy<{'amd64': 'y', 'arm64': 'y'}> # CONFIG_PCIEAER_INJECT flag +CONFIG_PCIE_EDR mark note # Menu: Device Drivers >> PCI support >> PCI Express hierarchy optimization setting CONFIG_PCIE_BUS_TUNE_OFF policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> @@ -8462,6 +8481,7 @@ CONFIG_SPI_NXP_FLEXSPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> CONFIG_SPI_GPIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> CONFIG_SPI_IMX policy<{'arm64': 'm', 'armhf-generic': 'm'}> +CONFIG_SPI_LJCA policy<{'amd64': 'm'}> CONFIG_SPI_LM70_LLP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> CONFIG_SPI_FSL_SPI policy<{'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> CONFIG_SPI_FSL_DSPI policy<{'arm64': 'm', 'armhf-generic': 'm'}> @@ -8688,7 +8708,9 @@ CONFIG_SND_SOC_AMD_RV_RT5682_MACH policy<{'amd64': 'm'}> CONFIG_SND_SOC_AMD_RENOIR policy<{'amd64': 'm'}> CONFIG_SND_SOC_AMD_RENOIR_MACH policy<{'amd64': 'm'}> +CONFIG_SND_SOC_AMD_YC_MACH policy<{'amd64': 'm'}> CONFIG_SND_SOC_AMD_ACP5x policy<{'amd64': 'm'}> +CONFIG_SND_SOC_AMD_ACP6x policy<{'amd64': 'm'}> CONFIG_SND_BCM2835_SOC_I2S policy<{'arm64': 'm'}> CONFIG_SND_BCM63XX_I2S_WHISTLER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> CONFIG_SND_DESIGNWARE_I2S policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> @@ -8720,6 +8742,8 @@ CONFIG_SND_SOC note CONFIG_SND_SOC_AMD_RENOIR mark note CONFIG_SND_SOC_AMD_RENOIR_MACH mark note +CONFIG_SND_SOC_AMD_ACP6x mark note +CONFIG_SND_SOC_AMD_YC_MACH mark note # Menu: Device Drivers >> Sound card support >> Advanced Linux Sound Architecture >> ALSA for SoC audio support >> ASoC support for Amlogic platforms CONFIG_SND_MESON_AIU policy<{'arm64': 'm', 'armhf': 'm'}> @@ -13167,7 +13191,8 @@ CONFIG_VSOCKETS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> CONFIG_VSOCKETS_DIAG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> CONFIG_VSOCKETS_LOOPBACK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> -CONFIG_VMWARE_VMCI_VSOCKETS policy<{'amd64': 'm'}> +CONFIG_VMWARE_VMCI_VSOCKETS policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_VMWARE_VMCI_VSOCKETS note CONFIG_VIRTIO_VSOCKETS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> CONFIG_HYPERV_VSOCKETS policy<{'amd64': 'm', 'arm64': 'm'}> @@ -14084,7 +14109,6 @@ CONFIG_IMA_DEFAULT_HASH_SHA256 note # Menu: Security options >> Enable different security models >> Integrity subsystem >> Integrity Measurement Architecture(IMA) >> Default template -CONFIG_IMA_TEMPLATE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> CONFIG_IMA_NG_TEMPLATE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'n', 's390x': 'y'}> CONFIG_IMA_SIG_TEMPLATE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'y', 's390x': 'n'}> # diff -u linux-intel-iotg-5.15-5.15.0/debian.master/config/arm64/config.common.arm64 linux-intel-iotg-5.15-5.15.0/debian.master/config/arm64/config.common.arm64 --- linux-intel-iotg-5.15-5.15.0/debian.master/config/arm64/config.common.arm64 +++ linux-intel-iotg-5.15-5.15.0/debian.master/config/arm64/config.common.arm64 @@ -287,6 +287,9 @@ CONFIG_INPUT_SPARSEKMAP=m CONFIG_INPUT_TABLET=y CONFIG_INPUT_TOUCHSCREEN=y +# CONFIG_INTEL_VSC is not set +# CONFIG_INTEL_VSC_ACE_DEBUG is not set +# CONFIG_INTEL_VSC_PSE is not set CONFIG_INTERCONNECT=y # CONFIG_IOMMU_DEFAULT_DMA_LAZY is not set CONFIG_IOMMU_DEFAULT_DMA_STRICT=y @@ -351,6 +354,7 @@ CONFIG_MFD_IQS62X=m CONFIG_MFD_JANZ_CMODIO=m CONFIG_MFD_KEMPLD=m +# CONFIG_MFD_LJCA is not set CONFIG_MFD_LM3533=m CONFIG_MFD_LP3943=m CONFIG_MFD_MADERA=m @@ -504,6 +508,7 @@ # CONFIG_PMIC_OPREGION is not set CONFIG_PM_DEVFREQ=y CONFIG_POWERCAP=y +# CONFIG_POWER_CTRL_LOGIC is not set CONFIG_POWER_SUPPLY=y CONFIG_PPP=y CONFIG_PPS=y @@ -693,6 +698,9 @@ CONFIG_VFIO_PCI=m CONFIG_VFIO_PCI_CORE=m CONFIG_VFIO_VIRQFD=m +# CONFIG_VIDEO_INTEL_IPU6 is not set +# CONFIG_VIDEO_OV01A10 is not set +# CONFIG_VIDEO_OV02C10 is not set CONFIG_VIDEO_TI_CAL_MC=y CONFIG_VIRTIO_MMIO=y CONFIG_VME_BUS=y diff -u linux-intel-iotg-5.15-5.15.0/debian.master/config/armhf/config.common.armhf linux-intel-iotg-5.15-5.15.0/debian.master/config/armhf/config.common.armhf --- linux-intel-iotg-5.15-5.15.0/debian.master/config/armhf/config.common.armhf +++ linux-intel-iotg-5.15-5.15.0/debian.master/config/armhf/config.common.armhf @@ -281,6 +281,9 @@ CONFIG_INPUT_SPARSEKMAP=m CONFIG_INPUT_TABLET=y CONFIG_INPUT_TOUCHSCREEN=y +# CONFIG_INTEL_VSC is not set +# CONFIG_INTEL_VSC_ACE_DEBUG is not set +# CONFIG_INTEL_VSC_PSE is not set CONFIG_INTERCONNECT=y # CONFIG_IOMMU_DEFAULT_DMA_LAZY is not set CONFIG_IOMMU_DEFAULT_DMA_STRICT=y @@ -343,6 +346,7 @@ CONFIG_MFD_IQS62X=m CONFIG_MFD_JANZ_CMODIO=m CONFIG_MFD_KEMPLD=m +# CONFIG_MFD_LJCA is not set CONFIG_MFD_LM3533=m CONFIG_MFD_LP3943=m CONFIG_MFD_MADERA=m diff -u linux-intel-iotg-5.15-5.15.0/debian.master/config/config.common.ubuntu linux-intel-iotg-5.15-5.15.0/debian.master/config/config.common.ubuntu --- linux-intel-iotg-5.15-5.15.0/debian.master/config/config.common.ubuntu +++ linux-intel-iotg-5.15-5.15.0/debian.master/config/config.common.ubuntu @@ -1187,6 +1187,7 @@ CONFIG_BLK_DEV_DM_BUILTIN=y CONFIG_BLK_DEV_DRBD=m CONFIG_BLK_DEV_FD=m +# CONFIG_BLK_DEV_FD_RAWCMD is not set CONFIG_BLK_DEV_INITRD=y CONFIG_BLK_DEV_INTEGRITY=y CONFIG_BLK_DEV_INTEGRITY_T10=y @@ -1516,9 +1517,11 @@ CONFIG_CC_HAS_KASAN_GENERIC=y CONFIG_CC_HAS_KASAN_SW_TAGS=y CONFIG_CC_HAS_NO_PROFILE_FN_ATTR=y +CONFIG_CC_HAS_RETURN_THUNK=y CONFIG_CC_HAS_SANCOV_TRACE_PC=y CONFIG_CC_HAS_SANE_STACKPROTECTOR=y CONFIG_CC_HAS_SIGN_RETURN_ADDRESS=y +CONFIG_CC_HAS_SLS=y CONFIG_CC_HAS_UBSAN_BOUNDS=y CONFIG_CC_HAS_WORKING_NOSANITIZE_ADDRESS=y CONFIG_CC_HAS_ZERO_CALL_USED_REGS=y @@ -2136,6 +2139,8 @@ CONFIG_CPU_FREQ_THERMAL=y CONFIG_CPU_HAS_ASID=y # CONFIG_CPU_HOTPLUG_STATE_CONTROL is not set +CONFIG_CPU_IBPB_ENTRY=y +CONFIG_CPU_IBRS_ENTRY=y # CONFIG_CPU_ICACHE_DISABLE is not set CONFIG_CPU_ICACHE_MISMATCH_WORKAROUND=y CONFIG_CPU_IDLE=y @@ -2162,6 +2167,7 @@ CONFIG_CPU_THERMAL=y CONFIG_CPU_THUMB_CAPABLE=y CONFIG_CPU_TLB_V7=y +CONFIG_CPU_UNRET_ENTRY=y CONFIG_CPU_V7=y CONFIG_CRAMFS_BLOCKDEV=y CONFIG_CRAMFS_MTD=y @@ -2226,7 +2232,7 @@ CONFIG_CRYPTO_ALGAPI=y CONFIG_CRYPTO_ALGAPI2=y CONFIG_CRYPTO_ANSI_CPRNG=m -CONFIG_CRYPTO_ARCH_HAVE_LIB_BLAKE2S=m +CONFIG_CRYPTO_ARCH_HAVE_LIB_BLAKE2S=y CONFIG_CRYPTO_ARCH_HAVE_LIB_CHACHA=m CONFIG_CRYPTO_ARCH_HAVE_LIB_CURVE25519=m CONFIG_CRYPTO_ARCH_HAVE_LIB_POLY1305=m @@ -2412,8 +2418,7 @@ CONFIG_CRYPTO_KPP2=y CONFIG_CRYPTO_LIB_AES=y CONFIG_CRYPTO_LIB_ARC4=m -CONFIG_CRYPTO_LIB_BLAKE2S=m -CONFIG_CRYPTO_LIB_BLAKE2S_GENERIC=m +CONFIG_CRYPTO_LIB_BLAKE2S_GENERIC=y CONFIG_CRYPTO_LIB_CHACHA=m CONFIG_CRYPTO_LIB_CHACHA20POLY1305=m CONFIG_CRYPTO_LIB_CHACHA_GENERIC=m @@ -3958,7 +3963,7 @@ CONFIG_GPIO_BT8XX=m CONFIG_GPIO_CADENCE=m CONFIG_GPIO_CDEV=y -# CONFIG_GPIO_CDEV_V1 is not set +CONFIG_GPIO_CDEV_V1=y CONFIG_GPIO_CRYSTAL_COVE=y CONFIG_GPIO_DA9052=m CONFIG_GPIO_DA9055=m @@ -3978,6 +3983,7 @@ CONFIG_GPIO_IT87=m CONFIG_GPIO_JANZ_TTL=m CONFIG_GPIO_KEMPLD=m +CONFIG_GPIO_LJCA=m CONFIG_GPIO_LOGICVC=m CONFIG_GPIO_LP3943=m CONFIG_GPIO_LP873X=m @@ -4592,6 +4598,7 @@ CONFIG_I2C_IMX_LPI2C=m CONFIG_I2C_ISMT=m CONFIG_I2C_KEMPLD=m +CONFIG_I2C_LJCA=m CONFIG_I2C_MESON=m CONFIG_I2C_MLXBF=m CONFIG_I2C_MLXCPLD=m @@ -4761,7 +4768,6 @@ CONFIG_IMA_MEASURE_ASYMMETRIC_KEYS=y CONFIG_IMA_MEASURE_PCR_IDX=10 CONFIG_IMA_QUEUE_EARLY_BOOT_KEYS=y -# CONFIG_IMA_TEMPLATE is not set CONFIG_IMA_TRUSTED_KEYRING=y # CONFIG_IMA_WRITE_POLICY is not set CONFIG_IMA_X509_PATH="/etc/keys/x509_ima.der" @@ -4985,9 +4991,9 @@ CONFIG_INTEL_INT0002_VGPIO=m CONFIG_INTEL_IOATDMA=m CONFIG_INTEL_IOMMU=y -CONFIG_INTEL_IOMMU_DEFAULT_ON=y +# CONFIG_INTEL_IOMMU_DEFAULT_ON is not set CONFIG_INTEL_IOMMU_FLOPPY_WA=y -CONFIG_INTEL_IOMMU_SCALABLE_MODE_DEFAULT_ON=y +# CONFIG_INTEL_IOMMU_SCALABLE_MODE_DEFAULT_ON is not set CONFIG_INTEL_IOMMU_SVM=y CONFIG_INTEL_IPS=m CONFIG_INTEL_ISH_FIRMWARE_DOWNLOADER=m @@ -4997,6 +5003,7 @@ CONFIG_INTEL_MEI_HDCP=m CONFIG_INTEL_MEI_ME=m CONFIG_INTEL_MEI_TXE=m +CONFIG_INTEL_MEI_VSC=m CONFIG_INTEL_MEI_WDT=m CONFIG_INTEL_MENLOW=m CONFIG_INTEL_MRFLD_ADC=m @@ -5045,6 +5052,8 @@ CONFIG_INTEL_TXT=y CONFIG_INTEL_UNCORE_FREQ_CONTROL=m CONFIG_INTEL_VBTN=m +CONFIG_INTEL_VSC_ACE=m +CONFIG_INTEL_VSC_CSI=m CONFIG_INTEL_WMI=y CONFIG_INTEL_WMI_SBL_FW_UPDATE=m CONFIG_INTEL_WMI_THUNDERBOLT=m @@ -7603,7 +7612,7 @@ CONFIG_PCIE_DW_PLAT_EP=y CONFIG_PCIE_DW_PLAT_HOST=y # CONFIG_PCIE_ECRC is not set -# CONFIG_PCIE_EDR is not set +CONFIG_PCIE_EDR=y CONFIG_PCIE_HISI_ERR=y CONFIG_PCIE_HISI_STB=y CONFIG_PCIE_IPROC=m @@ -8810,6 +8819,7 @@ CONFIG_RESET_TI_SYSCON=m CONFIG_RESET_UNIPHIER=m CONFIG_RESET_UNIPHIER_GLUE=m +CONFIG_RETHUNK=y CONFIG_RETPOLINE=y CONFIG_RETU_WATCHDOG=m CONFIG_RFD77402=m @@ -9138,6 +9148,7 @@ CONFIG_S390_TAPE_34XX=m CONFIG_S390_TAPE_3590=m # CONFIG_S390_UNWIND_SELFTEST is not set +CONFIG_S390_UV_UAPI=y CONFIG_S390_VMUR=m CONFIG_S3C2410_WATCHDOG=m CONFIG_S5P_DEV_MFC=y @@ -9787,6 +9798,7 @@ CONFIG_SLIP_MODE_SLIP6=y CONFIG_SLIP_SMART=y # CONFIG_SLOB is not set +CONFIG_SLS=y CONFIG_SLUB=y CONFIG_SLUB_CPU_PARTIAL=y CONFIG_SLUB_DEBUG=y @@ -10056,11 +10068,13 @@ CONFIG_SND_SOC_AMD_ACP=m CONFIG_SND_SOC_AMD_ACP3x=m CONFIG_SND_SOC_AMD_ACP5x=m +CONFIG_SND_SOC_AMD_ACP6x=m CONFIG_SND_SOC_AMD_CZ_DA7219MX98357_MACH=m CONFIG_SND_SOC_AMD_CZ_RT5645_MACH=m CONFIG_SND_SOC_AMD_RENOIR=m CONFIG_SND_SOC_AMD_RENOIR_MACH=m CONFIG_SND_SOC_AMD_RV_RT5682_MACH=m +CONFIG_SND_SOC_AMD_YC_MACH=m CONFIG_SND_SOC_APQ8016_SBC=m CONFIG_SND_SOC_ARIZONA=m CONFIG_SND_SOC_ARNDALE=m @@ -10645,6 +10659,7 @@ CONFIG_SPEAKUP_SYNTH_SOFT=m CONFIG_SPEAKUP_SYNTH_SPKOUT=m CONFIG_SPEAKUP_SYNTH_TXPRT=m +CONFIG_SPECULATION_MITIGATIONS=y CONFIG_SPI_ALTERA=m CONFIG_SPI_ALTERA_CORE=m CONFIG_SPI_ALTERA_DFL=m @@ -10680,6 +10695,7 @@ # CONFIG_SPI_INTEL_SPI_PCI is not set # CONFIG_SPI_INTEL_SPI_PLATFORM is not set CONFIG_SPI_LANTIQ_SSC=m +CONFIG_SPI_LJCA=m CONFIG_SPI_LM70_LLP=m CONFIG_SPI_LOOPBACK_TEST=m CONFIG_SPI_MASTER=y @@ -12162,6 +12178,7 @@ CONFIG_VIDEO_HEXIUM_GEMINI=m CONFIG_VIDEO_HEXIUM_ORION=m CONFIG_VIDEO_HI556=m +CONFIG_VIDEO_HM11B1=m CONFIG_VIDEO_I2C=m CONFIG_VIDEO_IMX208=m CONFIG_VIDEO_IMX214=m @@ -12216,6 +12233,7 @@ CONFIG_VIDEO_OMAP3=m # CONFIG_VIDEO_OMAP3_DEBUG is not set CONFIG_VIDEO_OMAP4=m +CONFIG_VIDEO_OV01A1S=m CONFIG_VIDEO_OV02A10=m CONFIG_VIDEO_OV13858=m CONFIG_VIDEO_OV2640=m diff -u linux-intel-iotg-5.15-5.15.0/debian.master/config/ppc64el/config.common.ppc64el linux-intel-iotg-5.15-5.15.0/debian.master/config/ppc64el/config.common.ppc64el --- linux-intel-iotg-5.15-5.15.0/debian.master/config/ppc64el/config.common.ppc64el +++ linux-intel-iotg-5.15-5.15.0/debian.master/config/ppc64el/config.common.ppc64el @@ -279,6 +279,9 @@ CONFIG_INPUT_SPARSEKMAP=m CONFIG_INPUT_TABLET=y CONFIG_INPUT_TOUCHSCREEN=y +# CONFIG_INTEL_VSC is not set +# CONFIG_INTEL_VSC_ACE_DEBUG is not set +# CONFIG_INTEL_VSC_PSE is not set CONFIG_INTERCONNECT=y # CONFIG_IOMMU_DEFAULT_DMA_LAZY is not set CONFIG_IOMMU_DEFAULT_DMA_STRICT=y @@ -345,6 +348,7 @@ CONFIG_MFD_IQS62X=m CONFIG_MFD_JANZ_CMODIO=m CONFIG_MFD_KEMPLD=m +# CONFIG_MFD_LJCA is not set CONFIG_MFD_LM3533=m CONFIG_MFD_LP3943=m CONFIG_MFD_MADERA=m diff -u linux-intel-iotg-5.15-5.15.0/debian.master/config/s390x/config.common.s390x linux-intel-iotg-5.15-5.15.0/debian.master/config/s390x/config.common.s390x --- linux-intel-iotg-5.15-5.15.0/debian.master/config/s390x/config.common.s390x +++ linux-intel-iotg-5.15-5.15.0/debian.master/config/s390x/config.common.s390x @@ -257,6 +257,9 @@ # CONFIG_INPUT_SPARSEKMAP is not set # CONFIG_INPUT_TABLET is not set # CONFIG_INPUT_TOUCHSCREEN is not set +# CONFIG_INTEL_VSC is not set +# CONFIG_INTEL_VSC_ACE_DEBUG is not set +# CONFIG_INTEL_VSC_PSE is not set # CONFIG_INTERCONNECT is not set # CONFIG_IOMMU_DEFAULT_DMA_LAZY is not set CONFIG_IOMMU_DEFAULT_DMA_STRICT=y diff -u linux-intel-iotg-5.15-5.15.0/debian.master/control.stub.in linux-intel-iotg-5.15-5.15.0/debian.master/control.stub.in --- linux-intel-iotg-5.15-5.15.0/debian.master/control.stub.in +++ linux-intel-iotg-5.15-5.15.0/debian.master/control.stub.in @@ -18,6 +18,7 @@ libdw-dev , libpci-dev , pkg-config , + python3-dev , flex , bison , libunwind8-dev [amd64 arm64 armhf ppc64el] , diff -u linux-intel-iotg-5.15-5.15.0/debian.master/reconstruct linux-intel-iotg-5.15-5.15.0/debian.master/reconstruct --- linux-intel-iotg-5.15-5.15.0/debian.master/reconstruct +++ linux-intel-iotg-5.15-5.15.0/debian.master/reconstruct @@ -2,11 +2,15 @@ # Remove any files deleted from the orig. rm -f 'arch/hexagon/include/asm/timer-regs.h' rm -f 'drivers/gpu/drm/amd/display/dc/dsc/qp_tables.h' +rm -f 'drivers/gpu/drm/msm/hdmi/hdmi_connector.c' rm -f 'drivers/gpu/drm/vmwgfx/vmwgfx_thp.c' rm -f 'drivers/of/of_net.c' rm -f 'drivers/platform/x86/i2c-multi-instantiate.c' rm -f 'drivers/staging/most/dim2/sysfs.c' +rm -f 'include/trace/events/random.h' rm -f 'tools/build/feature/test-libpython-version.c' +rm -f 'tools/perf/arch/arm64/util/machine.c' +rm -f 'tools/perf/arch/powerpc/util/machine.c' rm -f 'tools/perf/util/bpf_skel/bperf.h' chmod +x 'debian/cloud-tools/hv_get_dhcp_info' chmod +x 'debian/cloud-tools/hv_get_dns_info' diff -u linux-intel-iotg-5.15-5.15.0/debian.master/rules.d/amd64.mk linux-intel-iotg-5.15-5.15.0/debian.master/rules.d/amd64.mk --- linux-intel-iotg-5.15-5.15.0/debian.master/rules.d/amd64.mk +++ linux-intel-iotg-5.15-5.15.0/debian.master/rules.d/amd64.mk @@ -22,4 +22,2 @@ do_tools_acpidbg = true -do_zfs = true -do_v4l2loopback = true do_odm_drivers = true diff -u linux-intel-iotg-5.15-5.15.0/debian.master/rules.d/arm64.mk linux-intel-iotg-5.15-5.15.0/debian.master/rules.d/arm64.mk --- linux-intel-iotg-5.15-5.15.0/debian.master/rules.d/arm64.mk +++ linux-intel-iotg-5.15-5.15.0/debian.master/rules.d/arm64.mk @@ -22 +21,0 @@ -do_zfs = true diff -u linux-intel-iotg-5.15-5.15.0/debian.master/rules.d/ppc64el.mk linux-intel-iotg-5.15-5.15.0/debian.master/rules.d/ppc64el.mk --- linux-intel-iotg-5.15-5.15.0/debian.master/rules.d/ppc64el.mk +++ linux-intel-iotg-5.15-5.15.0/debian.master/rules.d/ppc64el.mk @@ -19 +18,0 @@ -do_zfs = true diff -u linux-intel-iotg-5.15-5.15.0/debian.master/rules.d/s390x.mk linux-intel-iotg-5.15-5.15.0/debian.master/rules.d/s390x.mk --- linux-intel-iotg-5.15-5.15.0/debian.master/rules.d/s390x.mk +++ linux-intel-iotg-5.15-5.15.0/debian.master/rules.d/s390x.mk @@ -20,2 +19,0 @@ - -do_zfs = true diff -u linux-intel-iotg-5.15-5.15.0/debian.master/tracking-bug linux-intel-iotg-5.15-5.15.0/debian.master/tracking-bug --- linux-intel-iotg-5.15-5.15.0/debian.master/tracking-bug +++ linux-intel-iotg-5.15-5.15.0/debian.master/tracking-bug @@ -1 +1 @@ -1974322 2022.05.09-5 +1983903 2022.08.08-1 diff -u linux-intel-iotg-5.15-5.15.0/debian.master/upstream-stable linux-intel-iotg-5.15-5.15.0/debian.master/upstream-stable --- linux-intel-iotg-5.15-5.15.0/debian.master/upstream-stable +++ linux-intel-iotg-5.15-5.15.0/debian.master/upstream-stable @@ -3 +3 @@ - linux-5.15.y = v5.15.35 + linux-5.15.y = v5.15.46 diff -u linux-intel-iotg-5.15-5.15.0/debian/changelog linux-intel-iotg-5.15-5.15.0/debian/changelog --- linux-intel-iotg-5.15-5.15.0/debian/changelog +++ linux-intel-iotg-5.15-5.15.0/debian/changelog @@ -1,3 +1,2213 @@ +linux-intel-iotg-5.15 (5.15.0-1015.20~20.04.2) focal; urgency=medium + + * focal/linux-intel-iotg-5.15: 5.15.0-1015.20~20.04.2 -proposed tracker + (LP: #1983883) + + [ Ubuntu: 5.15.0-1015.20 ] + + * jammy/linux-intel-iotg: 5.15.0-1015.20 -proposed tracker (LP: #1983884) + + [ Ubuntu: 5.15.0-1014.19 ] + + * jammy/linux-intel-iotg: 5.15.0-1014.19 -proposed tracker (LP: #1983884) + * Jammy update: v5.15.46 upstream stable release (LP: #1981864) + - [Packaging] intel-iotg: Move python3-dev to build-depends + + -- Philip Cox Tue, 06 Sep 2022 10:48:33 -0400 + +linux-intel-iotg-5.15 (5.15.0-1015.20~20.04.1) focal; urgency=medium + + * focal/linux-intel-iotg-5.15: 5.15.0-1015.20~20.04.1 -proposed tracker + (LP: #1983883) + + -- Philip Cox Thu, 01 Sep 2022 14:10:24 -0400 + +linux-intel-iotg-5.15 (5.15.0-1014.18~20.04.2) focal; urgency=medium + + * focal/linux-intel-iotg-5.15: 5.15.0-1014.19~20.04.1 -proposed tracker + (LP: #1983883) + + * Jammy update: v5.15.46 upstream stable release (LP: #1981864) + - [Packaging] intel-iotg-5.15: Move python3-dev to build-depends + + -- Philip Cox Tue, 30 Aug 2022 11:22:30 -0400 + +linux-intel-iotg-5.15 (5.15.0-1014.18~20.04.1) focal; urgency=medium + + * focal/linux-intel-iotg-5.15: 5.15.0-1014.18~20.04.1 -proposed tracker + (LP: #1983883) + + * Jammy update: v5.15.44 upstream stable release (LP: #1981649) + - [Config] updateconfigs for CRYPTO_LIB_BLAKE2S + + * Add IIO sensors ID for ACPI based platform (LP: #1962674) + - [Config] updateconfigs for ADXL34x + + * Packaging resync (LP: #1786013) + - [Packaging] update variants + + [ Ubuntu: 5.15.0-1014.18 ] + + * jammy/linux-intel-iotg: 5.15.0-1014.18 -proposed tracker (LP: #1983884) + * Add IIO sensors ID for ACPI based platform (LP: #1962674) + - SAUCE: iio: accel: adxl345: Fix build errors + - [Config] updateconfigs for ADXL34x + - [Config] updateconfigs for ADXL34x + * GPIO character device v1 API not enabled in kernel (LP: #1953613) + - [Config] Enable CONFIG_GPIO_CDEV_V1 + * Jammy update: v5.15.46 upstream stable release (LP: #1981864) + - [Config] updateconfigs for IMA_TEMPLATE + * Jammy update: v5.15.44 upstream stable release (LP: #1981649) + - [Config] updateconfigs for CRYPTO_LIB_BLAKE2S + * [IOTG][EHL][ICL-D] Gstreamer media failures on Ubuntu 20.04 Desktop Alpha Image (LP: #1981971) + - SAUCE: drm/i915/gen11: Moving WAs to icl_gt_workarounds_init() + - SAUCE: (no-up) drm/i915: set enable_guc=2 for EHL, ICL, ADL-S platforms. + * [EHL] Implement PWM support for Elkhart Lake (out-of-tree patches). (LP: #1964770) + - pwm: Enable D0i3 flow for PSE IOs + * [TGL] EDAC support OOT patches (LP: #1964743) + - x86/mce: Add MCACOD code for generic I/O error + - EDAC/ieh: Add I/O device EDAC driver for Intel CPUs with IEH + - EDAC/ieh: Add I/O device EDAC support for Intel Tiger Lake-H SoC + - [Config] updateconfigs for EDAC IEH + * [iotg][22.04LTS][server][CBRD] call trace message for dwmac_intel module. (LP: #1972136) + - net: stmmac: fix dma queue left shift overflow issue + * jammy/linux: 5.15.0-47.51 -proposed tracker (LP: #1983903) + * Jammy update: v5.15.46 upstream stable release (LP: #1981864) + - UBUNTU: [Packaging] Move python3-dev to build-depends + * touchpad and touchscreen doesn't work at all on ACER Spin 5 (SP513-54N) + (LP: #1884232) + - x86/PCI: Eliminate remove_e820_regions() common subexpressions + - x86: Log resource clipping for E820 regions + - x86/PCI: Clip only host bridge windows for E820 regions + - x86/PCI: Add kernel cmdline options to use/ignore E820 reserved regions + - x86/PCI: Disable E820 reserved region clipping via quirks + - x86/PCI: Revert "x86/PCI: Clip only host bridge windows for E820 regions" + * [SRU][H/OEM-5.13/OEM-5.14/U][J/OEM-5.17/U] Fix invalid MAC address after + hotplug tbt dock (LP: #1942999) + - SAUCE: igc: wait for the MAC copy when enabled MAC passthrough + * Mass Storage Gadget driver truncates device >2TB (LP: #1981390) + - usb: gadget: storage: add support for media larger than 2T + * AMD Rembrandt: DP tunneling fails with Thunderbolt monitors (LP: #1983143) + - SAUCE: drm/amd: Fix DP Tunneling with Thunderbolt monitors + - drm/amd/display: Fix for dmub outbox notification enable + - Revert "drm/amd/display: Fix DPIA outbox timeout after S3/S4/reset" + - drm/amd/display: Reset link encoder assignments for GPU reset + - drm/amd/display: Fix DPIA outbox timeout after S3/S4/reset + - drm/amd/display: Fix new dmub notification enabling in DM + - SAUCE: thunderbolt: Add DP out resource when DP tunnel is discovered. + * Fix sub-optimal I210 network speed (LP: #1976438) + - igb: Make DMA faster when CPU is active on the PCIe link + * e1000e report hardware hang (LP: #1973104) + - e1000e: Enable GPT clock before sending message to CSME + - Revert "e1000e: Fix possible HW unit hang after an s0ix exit" + * ioam6.sh in net from ubuntu_kernel_selftests fails with 5.15 kernels in + Focal (LP: #1982930) + - selftests: net: fix IOAM test skip return code + * Additional fix for TGL + AUO panel flickering (LP: #1983297) + - Revert "UBUNTU: SAUCE: drm/i915/display/psr: Fix flicker on TGL + AUO panel" + - drm/i915/display: Fix sel fetch plane offset calculation + - drm/i915: Nuke ORIGIN_GTT + - drm/i915/display: Drop PSR support from HSW and BDW + - drm/i915/display/psr: Handle plane and pipe restrictions at every page flip + - drm/i915/display/psr: Do full fetch when handling multi-planar formats + - drm/i915/display: Drop unnecessary frontbuffer flushes + - drm/i915/display: Handle frontbuffer rendering when PSR2 selective fetch is + enabled + - drm/i915/display: Fix glitches when moving cursor with PSR2 selective fetch + enabled + - SAUCE: drm/i915/display/psr: Reinstate fix for TGL + AUO panel flicker + * AMD Yellow Carp DMCUB fw update for s0i3 B0 fixes (LP: #1957026) + - drm/amd/display: Optimize bandwidth on following fast update + - drm/amd/display: Fix surface optimization regression on Carrizo + - drm/amd/display: Reset DMCUB before HW init + * GPIO character device v1 API not enabled in kernel (LP: #1953613) + - [Config] Enable CONFIG_GPIO_CDEV_V1 + * intel_iommu: Fix enable intel_iommu, Ubuntu 22.04 installation crashes + (LP: #1982104) + - iommu/vt-d: Fix RID2PASID setup/teardown failure + * Headset mic with Cirrus logic codec doesn't work (LP: #1972815) + - ASoC: cs42l42: Move CS42L42 register descriptions to general include + - ALSA: hda/cs8409: Use general cs42l42 include in cs8409 hda driver + - ALSA: hda/cs8409: Support manual mode detection for CS42L42 + * Failed to resume from S3 blocked by atlantic driver[1d6a:94c0] + (LP: #1981950) + - net: atlantic: remove deep parameter on suspend/resume functions + - net: atlantic: remove aq_nic_deinit() when resume + * Make cm32181 sensor work after system suspend (LP: #1981773) + - iio: light: cm32181: Add PM support + * Clear PCI errors left from BIOS (LP: #1981173) + - PCI: Clear PCI_STATUS when setting up device + * Fix AMDGPU blank screen when Type-C DP alt is in use (LP: #1980060) + - drm/amd/display: Query DMCUB for dp alt status + - drm/amd/display: Add version check before using DP alt query interface + * Fix WD22TB4 suspend and resume, two external monitor can not output + (LP: #1979267) + - drm/dp/mst: Read the extended DPCD capabilities during system resume + * [SRU] bcache deadlock during read IO in writeback mode (LP: #1980925) + - bcache: memset on stack variables in bch_btree_check() and + bch_sectors_dirty_init() + * Audio mute key (f5) LED and Mic mute key (f8) LED are no function on HP + 440/450/640/650 G9 (LP: #1982716) + - ALSA: hda/realtek: fix mute/micmute LEDs for HP machines + * Enable WiFi hotspot feature for MediaTek MT7921 (LP: #1979173) + - mt76: mt7921: Add AP mode support + - mt76: mt7921: not support beacon offload disable command + - mt76: mt7921: fix command timeout in AP stop period + * Fix drm/amd/pm: enable ASPM by default (LP: #1966680) + - drm/amd: Refactor `amdgpu_aspm` to be evaluated per device + - drm/amd: Use amdgpu_device_should_use_aspm on navi umd pstate switching + - drm/amdgpu: vi: disable ASPM on Intel Alder Lake based systems + * Power cycle USB ports on shutdown/reboot (LP: #1976503) + - xhci: turn off port power in shutdown + * Jammy update: v5.15.46 upstream stable release (LP: #1981864) + - binfmt_flat: do not stop relocating GOT entries prematurely on riscv + - parisc/stifb: Implement fb_is_primary_device() + - parisc/stifb: Keep track of hardware path of graphics card + - RISC-V: Mark IORESOURCE_EXCLUSIVE for reserved mem instead of + IORESOURCE_BUSY + - riscv: Initialize thread pointer before calling C functions + - riscv: Fix irq_work when SMP is disabled + - riscv: Wire up memfd_secret in UAPI header + - riscv: Move alternative length validation into subsection + - ALSA: hda/realtek - Add new type for ALC245 + - ALSA: hda/realtek: Enable 4-speaker output for Dell XPS 15 9520 laptop + - ALSA: hda/realtek - Fix microphone noise on ASUS TUF B550M-PLUS + - ALSA: usb-audio: Cancel pending work at closing a MIDI substream + - USB: serial: option: add Quectel BG95 modem + - USB: new quirk for Dell Gen 2 devices + - usb: isp1760: Fix out-of-bounds array access + - usb: dwc3: gadget: Move null pinter check to proper place + - usb: core: hcd: Add support for deferring roothub registration + - fs/ntfs3: Update valid size if -EIOCBQUEUED + - fs/ntfs3: Fix fiemap + fix shrink file size (to remove preallocated space) + - fs/ntfs3: Keep preallocated only if option prealloc enabled + - fs/ntfs3: Check new size for limits + - fs/ntfs3: In function ntfs_set_acl_ex do not change inode->i_mode if called + from function ntfs_init_acl + - fs/ntfs3: Fix some memory leaks in an error handling path of 'log_replay()' + - fs/ntfs3: Update i_ctime when xattr is added + - fs/ntfs3: Restore ntfs_xattr_get_acl and ntfs_xattr_set_acl functions + - cifs: fix potential double free during failed mount + - cifs: when extending a file with falloc we should make files not-sparse + - xhci: Allow host runtime PM as default for Intel Alder Lake N xHCI + - platform/x86: intel-hid: fix _DSM function index handling + - x86/MCE/AMD: Fix memory leak when threshold_create_bank() fails + - perf/x86/intel: Fix event constraints for ICL + - x86/kexec: fix memory leak of elf header buffer + - x86/sgx: Set active memcg prior to shmem allocation + - ptrace/um: Replace PT_DTRACE with TIF_SINGLESTEP + - ptrace/xtensa: Replace PT_SINGLESTEP with TIF_SINGLESTEP + - ptrace: Reimplement PTRACE_KILL by always sending SIGKILL + - btrfs: add "0x" prefix for unsupported optional features + - btrfs: return correct error number for __extent_writepage_io() + - btrfs: repair super block num_devices automatically + - btrfs: fix the error handling for submit_extent_page() for + btrfs_do_readpage() + - iommu/vt-d: Add RPLS to quirk list to skip TE disabling + - drm/vmwgfx: validate the screen formats + - drm/virtio: fix NULL pointer dereference in virtio_gpu_conn_get_modes + - selftests/bpf: Fix vfs_link kprobe definition + - selftests/bpf: Fix parsing of prog types in UAPI hdr for bpftool sync + - mwifiex: add mutex lock for call in mwifiex_dfs_chan_sw_work_queue + - b43legacy: Fix assigning negative value to unsigned variable + - b43: Fix assigning negative value to unsigned variable + - ipw2x00: Fix potential NULL dereference in libipw_xmit() + - ipv6: fix locking issues with loops over idev->addr_list + - fbcon: Consistently protect deferred_takeover with console_lock() + - x86/platform/uv: Update TSC sync state for UV5 + - ACPICA: Avoid cache flush inside virtual machines + - mac80211: minstrel_ht: fix where rate stats are stored (fixes debugfs + output) + - drm/komeda: return early if drm_universal_plane_init() fails. + - drm/amd/display: Disabling Z10 on DCN31 + - rcu-tasks: Fix race in schedule and flush work + - rcu: Make TASKS_RUDE_RCU select IRQ_WORK + - sfc: ef10: Fix assigning negative value to unsigned variable + - ALSA: jack: Access input_dev under mutex + - spi: spi-rspi: Remove setting {src,dst}_{addr,addr_width} based on DMA + direction + - tools/power turbostat: fix ICX DRAM power numbers + - scsi: lpfc: Move cfg_log_verbose check before calling lpfc_dmp_dbg() + - scsi: lpfc: Fix SCSI I/O completion and abort handler deadlock + - scsi: lpfc: Fix call trace observed during I/O with CMF enabled + - cpuidle: PSCI: Improve support for suspend-to-RAM for PSCI OSI mode + - drm/amd/pm: fix double free in si_parse_power_table() + - ASoC: rsnd: care default case on rsnd_ssiu_busif_err_status_clear() + - ASoC: rsnd: care return value from rsnd_node_fixed_index() + - ath9k: fix QCA9561 PA bias level + - media: venus: hfi: avoid null dereference in deinit + - media: pci: cx23885: Fix the error handling in cx23885_initdev() + - media: cx25821: Fix the warning when removing the module + - md/bitmap: don't set sb values if can't pass sanity check + - mmc: jz4740: Apply DMA engine limits to maximum segment size + - drivers: mmc: sdhci_am654: Add the quirk to set TESTCD bit + - scsi: megaraid: Fix error check return value of register_chrdev() + - drm/amdgpu/sdma: Fix incorrect calculations of the wptr of the doorbells + - scsi: ufs: Use pm_runtime_resume_and_get() instead of pm_runtime_get_sync() + - scsi: lpfc: Fix resource leak in lpfc_sli4_send_seq_to_ulp() + - ath11k: disable spectral scan during spectral deinit + - ASoC: Intel: bytcr_rt5640: Add quirk for the HP Pro Tablet 408 + - drm/plane: Move range check for format_count earlier + - drm/amd/pm: fix the compile warning + - ath10k: skip ath10k_halt during suspend for driver state RESTARTING + - arm64: compat: Do not treat syscall number as ESR_ELx for a bad syscall + - drm: msm: fix error check return value of irq_of_parse_and_map() + - scsi: target: tcmu: Fix possible data corruption + - ipv6: Don't send rs packets to the interface of ARPHRD_TUNNEL + - net/mlx5: fs, delete the FTE when there are no rules attached to it + - ASoC: dapm: Don't fold register value changes into notifications + - mlxsw: spectrum_dcb: Do not warn about priority changes + - mlxsw: Treat LLDP packets as control + - drm/amdgpu/psp: move PSP memory alloc from hw_init to sw_init + - drm/amdgpu/ucode: Remove firmware load type check in amdgpu_ucode_free_bo + - regulator: mt6315: Enforce regulator-compatible, not name + - HID: bigben: fix slab-out-of-bounds Write in bigben_probe + - of: Support more than one crash kernel regions for kexec -s + - ASoC: tscs454: Add endianness flag in snd_soc_component_driver + - scsi: lpfc: Alter FPIN stat accounting logic + - net: remove two BUG() from skb_checksum_help() + - s390/preempt: disable __preempt_count_add() optimization for + PROFILE_ALL_BRANCHES + - perf/amd/ibs: Cascade pmu init functions' return value + - sched/core: Avoid obvious double update_rq_clock warning + - spi: stm32-qspi: Fix wait_cmd timeout in APM mode + - dma-debug: change allocation mode from GFP_NOWAIT to GFP_ATIOMIC + - ACPI: PM: Block ASUS B1400CEAE from suspend to idle by default + - ipmi:ssif: Check for NULL msg when handling events and messages + - ipmi: Fix pr_fmt to avoid compilation issues + - rtlwifi: Use pr_warn instead of WARN_ONCE + - mt76: mt7921: accept rx frames with non-standard VHT MCS10-11 + - mt76: fix encap offload ethernet type check + - media: rga: fix possible memory leak in rga_probe + - media: coda: limit frame interval enumeration to supported encoder frame + sizes + - media: hantro: HEVC: unconditionnaly set pps_{cb/cr}_qp_offset values + - media: ccs-core.c: fix failure to call clk_disable_unprepare + - media: imon: reorganize serialization + - media: cec-adap.c: fix is_configuring state + - usbnet: Run unregister_netdev() before unbind() again + - openrisc: start CPU timer early in boot + - nvme-pci: fix a NULL pointer dereference in nvme_alloc_admin_tags + - ASoC: rt5645: Fix errorenous cleanup order + - nbd: Fix hung on disconnect request if socket is closed before + - drm/amd/pm: update smartshift powerboost calc for smu12 + - drm/amd/pm: update smartshift powerboost calc for smu13 + - net: phy: micrel: Allow probing without .driver_data + - media: exynos4-is: Fix compile warning + - media: hantro: Stop using H.264 parameter pic_num + - ASoC: max98357a: remove dependency on GPIOLIB + - ASoC: rt1015p: remove dependency on GPIOLIB + - ACPI: CPPC: Assume no transition latency if no PCCT + - nvme: set non-mdts limits in nvme_scan_work + - can: mcp251xfd: silence clang's -Wunaligned-access warning + - x86/microcode: Add explicit CPU vendor dependency + - net: ipa: ignore endianness if there is no header + - m68k: atari: Make Atari ROM port I/O write macros return void + - rxrpc: Return an error to sendmsg if call failed + - rxrpc, afs: Fix selection of abort codes + - afs: Adjust ACK interpretation to try and cope with NAT + - eth: tg3: silence the GCC 12 array-bounds warning + - char: tpm: cr50_i2c: Suppress duplicated error message in .remove() + - selftests/bpf: fix btf_dump/btf_dump due to recent clang change + - gfs2: use i_lock spin_lock for inode qadata + - scsi: target: tcmu: Avoid holding XArray lock when calling lock_page + - IB/rdmavt: add missing locks in rvt_ruc_loopback + - ARM: dts: ox820: align interrupt controller node name with dtschema + - ARM: dts: socfpga: align interrupt controller node name with dtschema + - ARM: dts: s5pv210: align DMA channels with dtschema + - arm64: dts: qcom: msm8994: Fix the cont_splash_mem address + - arm64: dts: qcom: msm8994: Fix BLSP[12]_DMA channels count + - PM / devfreq: rk3399_dmc: Disable edev on remove() + - crypto: ccree - use fine grained DMA mapping dir + - soc: ti: ti_sci_pm_domains: Check for null return of devm_kcalloc + - fs: jfs: fix possible NULL pointer dereference in dbFree() + - arm64: dts: qcom: sdm845-xiaomi-beryllium: fix typo in panel's vddio-supply + property + - ALSA: usb-audio: Add quirk bits for enabling/disabling generic implicit fb + - ALSA: usb-audio: Move generic implicit fb quirk entries into quirks.c + - ARM: OMAP1: clock: Fix UART rate reporting algorithm + - powerpc/fadump: Fix fadump to work with a different endian capture kernel + - fat: add ratelimit to fat*_ent_bread() + - pinctrl: renesas: rzn1: Fix possible null-ptr-deref in + sh_pfc_map_resources() + - ARM: versatile: Add missing of_node_put in dcscb_init + - ARM: dts: exynos: add atmel,24c128 fallback to Samsung EEPROM + - ARM: hisi: Add missing of_node_put after of_find_compatible_node + - cpufreq: Avoid unnecessary frequency updates due to mismatch + - powerpc/rtas: Keep MSR[RI] set when calling RTAS + - PCI: Avoid pci_dev_lock() AB/BA deadlock with sriov_numvfs_store() + - KVM: PPC: Book3S HV Nested: L2 LPCR should inherit L1 LPES setting + - alpha: fix alloc_zeroed_user_highpage_movable() + - tracing: incorrect isolate_mote_t cast in mm_vmscan_lru_isolate + - powerpc/powernv/vas: Assign real address to rx_fifo in vas_rx_win_attr + - powerpc/xics: fix refcount leak in icp_opal_init() + - powerpc/powernv: fix missing of_node_put in uv_init() + - macintosh/via-pmu: Fix build failure when CONFIG_INPUT is disabled + - powerpc/iommu: Add missing of_node_put in iommu_init_early_dart + - smb3: check for null tcon + - RDMA/hfi1: Prevent panic when SDMA is disabled + - Input: gpio-keys - cancel delayed work only in case of GPIO + - drm: fix EDID struct for old ARM OABI format + - drm/bridge_connector: enable HPD by default if supported + - dt-bindings: display: sitronix, st7735r: Fix backlight in example + - drm/vmwgfx: Fix an invalid read + - ath11k: acquire ab->base_lock in unassign when finding the peer by addr + - drm: bridge: it66121: Fix the register page length + - ath9k: fix ar9003_get_eepmisc + - drm/edid: fix invalid EDID extension block filtering + - drm/bridge: adv7511: clean up CEC adapter when probe fails + - drm: bridge: icn6211: Fix register layout + - drm: bridge: icn6211: Fix HFP_HSW_HBP_HI and HFP_MIN handling + - mtd: spinand: gigadevice: fix Quad IO for GD5F1GQ5UExxG + - spi: qcom-qspi: Add minItems to interconnect-names + - ASoC: mediatek: Fix error handling in mt8173_max98090_dev_probe + - ASoC: mediatek: Fix missing of_node_put in mt2701_wm8960_machine_probe + - x86/delay: Fix the wrong asm constraint in delay_loop() + - drm/vc4: hvs: Fix frame count register readout + - drm/mediatek: Fix mtk_cec_mask() + - drm/vc4: hvs: Reset muxes at probe time + - drm/vc4: txp: Don't set TXP_VSTART_AT_EOF + - drm/vc4: txp: Force alpha to be 0xff if it's disabled + - libbpf: Don't error out on CO-RE relos for overriden weak subprogs + - x86/PCI: Fix ALi M1487 (IBC) PIRQ router link value interpretation + - mptcp: reset the packet scheduler on PRIO change + - nl80211: show SSID for P2P_GO interfaces + - drm/komeda: Fix an undefined behavior bug in komeda_plane_add() + - drm: mali-dp: potential dereference of null pointer + - spi: spi-ti-qspi: Fix return value handling of wait_for_completion_timeout + - scftorture: Fix distribution of short handler delays + - net: dsa: mt7530: 1G can also support 1000BASE-X link mode + - ixp4xx_eth: fix error check return value of platform_get_irq() + - NFC: NULL out the dev->rfkill to prevent UAF + - efi: Add missing prototype for efi_capsule_setup_info + - device property: Check fwnode->secondary when finding properties + - device property: Allow error pointer to be passed to fwnode APIs + - target: remove an incorrect unmap zeroes data deduction + - drbd: fix duplicate array initializer + - EDAC/dmc520: Don't print an error for each unconfigured interrupt line + - mtd: rawnand: denali: Use managed device resources + - HID: hid-led: fix maximum brightness for Dream Cheeky + - HID: elan: Fix potential double free in elan_input_configured + - drm/bridge: Fix error handling in analogix_dp_probe + - regulator: da9121: Fix uninit-value in da9121_assign_chip_model() + - drm/mediatek: dpi: Use mt8183 output formats for mt8192 + - signal: Deliver SIGTRAP on perf event asynchronously if blocked + - sched/fair: Fix cfs_rq_clock_pelt() for throttled cfs_rq + - sched/psi: report zeroes for CPU full at the system level + - spi: img-spfi: Fix pm_runtime_get_sync() error checking + - cpufreq: Fix possible race in cpufreq online error path + - printk: use atomic updates for klogd work + - printk: add missing memory barrier to wake_up_klogd() + - printk: wake waiters for safe and NMI contexts + - ath9k_htc: fix potential out of bounds access with invalid + rxstatus->rs_keyix + - media: i2c: max9286: Use dev_err_probe() helper + - media: i2c: max9286: Use "maxim,gpio-poc" property + - media: i2c: max9286: fix kernel oops when removing module + - media: hantro: Empty encoder capture buffers by default + - drm/panel: simple: Add missing bus flags for Innolux G070Y2-L01 + - ALSA: pcm: Check for null pointer of pointer substream before dereferencing + it + - mtdblock: warn if opened on NAND + - inotify: show inotify mask flags in proc fdinfo + - fsnotify: fix wrong lockdep annotations + - spi: rockchip: Stop spi slave dma receiver when cs inactive + - spi: rockchip: Preset cs-high and clk polarity in setup progress + - spi: rockchip: fix missing error on unsupported SPI_CS_HIGH + - of: overlay: do not break notify on NOTIFY_{OK|STOP} + - selftests/damon: add damon to selftests root Makefile + - drm/msm/dp: Modify prototype of encoder based API + - drm/msm/hdmi: switch to drm_bridge_connector + - drm/msm/dpu: adjust display_v_end for eDP and DP + - scsi: iscsi: Fix harmless double shift bug + - scsi: ufs: qcom: Fix ufs_qcom_resume() + - scsi: ufs: core: Exclude UECxx from SFR dump list + - drm/v3d: Fix null pointer dereference of pointer perfmon + - selftests/resctrl: Fix null pointer dereference on open failed + - libbpf: Fix logic for finding matching program for CO-RE relocation + - mtd: spi-nor: core: Check written SR value in + spi_nor_write_16bit_sr_and_check() + - x86/pm: Fix false positive kmemleak report in msr_build_context() + - mtd: rawnand: cadence: fix possible null-ptr-deref in + cadence_nand_dt_probe() + - mtd: rawnand: intel: fix possible null-ptr-deref in ebu_nand_probe() + - x86/speculation: Add missing prototype for unpriv_ebpf_notify() + - ASoC: rk3328: fix disabling mclk on pclk probe failure + - perf tools: Add missing headers needed by util/data.h + - drm/msm/disp/dpu1: set vbif hw config to NULL to avoid use after memory free + during pm runtime resume + - drm/msm/dp: stop event kernel thread when DP unbind + - drm/msm/dp: fix error check return value of irq_of_parse_and_map() + - drm/msm/dp: reset DP controller before transmit phy test pattern + - drm/msm/dp: do not stop transmitting phy test pattern during DP phy + compliance test + - drm/msm/dsi: fix error checks and return values for DSI xmit functions + - drm/msm/hdmi: check return value after calling + platform_get_resource_byname() + - drm/msm/hdmi: fix error check return value of irq_of_parse_and_map() + - drm/msm: add missing include to msm_drv.c + - drm/panel: panel-simple: Fix proper bpc for AM-1280800N3TZQW-T00H + - kunit: fix debugfs code to use enum kunit_status, not bool + - drm/rockchip: vop: fix possible null-ptr-deref in vop_bind() + - spi: cadence-quadspi: fix Direct Access Mode disable for SoCFPGA + - [Packaging] add python3-dev as build dependency + - perf tools: Use Python devtools for version autodetection rather than + runtime + - virtio_blk: fix the discard_granularity and discard_alignment queue limits + - nl80211: don't hold RTNL in color change request + - x86: Fix return value of __setup handlers + - irqchip/exiu: Fix acknowledgment of edge triggered interrupts + - irqchip/aspeed-i2c-ic: Fix irq_of_parse_and_map() return value + - irqchip/aspeed-scu-ic: Fix irq_of_parse_and_map() return value + - x86/mm: Cleanup the control_va_addr_alignment() __setup handler + - arm64: fix types in copy_highpage() + - regulator: core: Fix enable_count imbalance with EXCLUSIVE_GET + - drm/msm/dsi: fix address for second DSI PHY on SDM660 + - drm/msm/dp: fix event thread stuck in wait_event after kthread_stop() + - drm/msm/mdp5: Return error code in mdp5_pipe_release when deadlock is + detected + - drm/msm/mdp5: Return error code in mdp5_mixer_release when deadlock is + detected + - drm/msm: return an error pointer in msm_gem_prime_get_sg_table() + - media: uvcvideo: Fix missing check to determine if element is found in list + - arm64: stackleak: fix current_top_of_stack() + - iomap: iomap_write_failed fix + - spi: spi-fsl-qspi: check return value after calling + platform_get_resource_byname() + - Revert "cpufreq: Fix possible race in cpufreq online error path" + - regulator: qcom_smd: Fix up PM8950 regulator configuration + - samples: bpf: Don't fail for a missing VMLINUX_BTF when VMLINUX_H is + provided + - perf/amd/ibs: Use interrupt regs ip for stack unwinding + - ath11k: Don't check arvif->is_started before sending management frames + - wilc1000: fix crash observed in AP mode with cfg80211_register_netdevice() + - HID: amd_sfh: Modify the bus name + - HID: amd_sfh: Modify the hid name + - ASoC: fsl: Use dev_err_probe() helper + - ASoC: fsl: Fix refcount leak in imx_sgtl5000_probe + - ASoC: imx-hdmi: Fix refcount leak in imx_hdmi_probe + - ASoC: mxs-saif: Fix refcount leak in mxs_saif_probe + - regulator: pfuze100: Fix refcount leak in pfuze_parse_regulators_dt + - dma-direct: factor out a helper for DMA_ATTR_NO_KERNEL_MAPPING allocations + - dma-direct: don't fail on highmem CMA pages in dma_direct_alloc_pages + - ASoC: samsung: Use dev_err_probe() helper + - ASoC: samsung: Fix refcount leak in aries_audio_probe + - block: Fix the bio.bi_opf comment + - kselftest/cgroup: fix test_stress.sh to use OUTPUT dir + - scripts/faddr2line: Fix overlapping text section failures + - media: aspeed: Fix an error handling path in aspeed_video_probe() + - media: exynos4-is: Fix PM disable depth imbalance in fimc_is_probe + - mt76: mt7921: Fix the error handling path of mt7921_pci_probe() + - mt76: do not attempt to reorder received 802.3 packets without agg session + - media: st-delta: Fix PM disable depth imbalance in delta_probe + - media: atmel: atmel-isc: Fix PM disable depth imbalance in atmel_isc_probe + - media: i2c: rdacm2x: properly set subdev entity function + - media: exynos4-is: Change clk_disable to clk_disable_unprepare + - media: pvrusb2: fix array-index-out-of-bounds in pvr2_i2c_core_init + - media: vsp1: Fix offset calculation for plane cropping + - media: atmel: atmel-sama5d2-isc: fix wrong mask in YUYV format check + - media: hantro: HEVC: Fix tile info buffer value computation + - Bluetooth: fix dangling sco_conn and use-after-free in sco_sock_timeout + - Bluetooth: use hdev lock in activate_scan for hci_is_adv_monitoring + - Bluetooth: use hdev lock for accept_list and reject_list in conn req + - nvme: set dma alignment to dword + - m68k: math-emu: Fix dependencies of math emulation support + - sctp: read sk->sk_bound_dev_if once in sctp_rcv() + - net: hinic: add missing destroy_workqueue in hinic_pf_to_mgmt_init + - ASoC: ti: j721e-evm: Fix refcount leak in j721e_soc_probe_* + - kselftest/arm64: bti: force static linking + - media: ov7670: remove ov7670_power_off from ov7670_remove + - media: i2c: ov5648: fix wrong pointer passed to IS_ERR() and PTR_ERR() + - media: staging: media: rkvdec: Make use of the helper function + devm_platform_ioremap_resource() + - media: rkvdec: h264: Fix dpb_valid implementation + - media: rkvdec: h264: Fix bit depth wrap in pps packet + - regulator: scmi: Fix refcount leak in scmi_regulator_probe + - ext4: reject the 'commit' option on ext2 filesystems + - drm/msm/a6xx: Fix refcount leak in a6xx_gpu_init + - drm: msm: fix possible memory leak in mdp5_crtc_cursor_set() + - x86/sev: Annotate stack change in the #VC handler + - drm/msm: don't free the IRQ if it was not requested + - selftests/bpf: Add missed ima_setup.sh in Makefile + - drm/msm/dpu: handle pm_runtime_get_sync() errors in bind path + - drm/i915: Fix CFI violation with show_dynamic_id() + - thermal/drivers/bcm2711: Don't clamp temperature at zero + - thermal/drivers/broadcom: Fix potential NULL dereference in sr_thermal_probe + - thermal/core: Fix memory leak in __thermal_cooling_device_register() + - thermal/drivers/imx_sc_thermal: Fix refcount leak in imx_sc_thermal_probe + - bfq: Relax waker detection for shared queues + - bfq: Allow current waker to defend against a tentative one + - ASoC: wm2000: fix missing clk_disable_unprepare() on error in + wm2000_anc_transition() + - PM: domains: Fix initialization of genpd's next_wakeup + - net: macb: Fix PTP one step sync support + - NFC: hci: fix sleep in atomic context bugs in nfc_hci_hcp_message_tx + - ASoC: max98090: Move check for invalid values before casting in + max98090_put_enab_tlv() + - net: stmmac: selftests: Use kcalloc() instead of kzalloc() + - net: stmmac: fix out-of-bounds access in a selftest + - hv_netvsc: Fix potential dereference of NULL pointer + - hwmon: (pmbus) Check PEC support before reading other registers + - rxrpc: Fix listen() setting the bar too high for the prealloc rings + - rxrpc: Don't try to resend the request if we're receiving the reply + - rxrpc: Fix overlapping ACK accounting + - rxrpc: Don't let ack.previousPacket regress + - rxrpc: Fix decision on when to generate an IDLE ACK + - net: huawei: hinic: Use devm_kcalloc() instead of devm_kzalloc() + - hinic: Avoid some over memory allocation + - net: dsa: restrict SMSC_LAN9303_I2C kconfig + - net/smc: postpone sk_refcnt increment in connect() + - dma-direct: factor out dma_set_{de,en}crypted helpers + - dma-direct: don't call dma_set_decrypted for remapped allocations + - dma-direct: always leak memory that can't be re-encrypted + - dma-direct: don't over-decrypt memory + - arm64: dts: rockchip: Move drive-impedance-ohm to emmc phy on rk3399 + - arm64: dts: mt8192: Fix nor_flash status disable typo + - memory: samsung: exynos5422-dmc: Avoid some over memory allocation + - ARM: dts: BCM5301X: update CRU block description + - ARM: dts: BCM5301X: Update pin controller node name + - ARM: dts: suniv: F1C100: fix watchdog compatible + - soc: qcom: smp2p: Fix missing of_node_put() in smp2p_parse_ipc + - soc: qcom: smsm: Fix missing of_node_put() in smsm_parse_ipc + - PCI: cadence: Fix find_first_zero_bit() limit + - PCI: rockchip: Fix find_first_zero_bit() limit + - PCI: mediatek: Fix refcount leak in mtk_pcie_subsys_powerup() + - PCI: dwc: Fix setting error return on MSI DMA mapping failure + - ARM: dts: ci4x10: Adapt to changes in imx6qdl.dtsi regarding fec clocks + - soc: qcom: llcc: Add MODULE_DEVICE_TABLE() + - KVM: nVMX: Leave most VM-Exit info fields unmodified on failed VM-Entry + - KVM: nVMX: Clear IDT vectoring on nested VM-Exit for double/triple fault + - crypto: qat - set CIPHER capability for QAT GEN2 + - crypto: qat - set COMPRESSION capability for QAT GEN2 + - crypto: qat - set CIPHER capability for DH895XCC + - crypto: qat - set COMPRESSION capability for DH895XCC + - platform/chrome: cros_ec: fix error handling in cros_ec_register() + - ARM: dts: imx6dl-colibri: Fix I2C pinmuxing + - platform/chrome: Re-introduce cros_ec_cmd_xfer and use it for ioctls + - can: xilinx_can: mark bit timing constants as const + - ARM: dts: stm32: Fix PHY post-reset delay on Avenger96 + - ARM: dts: bcm2835-rpi-zero-w: Fix GPIO line name for Wifi/BT + - ARM: dts: bcm2837-rpi-cm3-io3: Fix GPIO line names for SMPS I2C + - ARM: dts: bcm2837-rpi-3-b-plus: Fix GPIO line name of power LED + - ARM: dts: bcm2835-rpi-b: Fix GPIO line names + - misc: ocxl: fix possible double free in ocxl_file_register_afu + - crypto: marvell/cesa - ECB does not IV + - gpiolib: of: Introduce hook for missing gpio-ranges + - pinctrl: bcm2835: implement hook for missing gpio-ranges + - arm: mediatek: select arch timer for mt7629 + - pinctrl/rockchip: support deferring other gpio params + - pinctrl: mediatek: mt8195: enable driver on mtk platforms + - arm64: dts: qcom: qrb5165-rb5: Fix can-clock node name + - Drivers: hv: vmbus: Fix handling of messages with transaction ID of zero + - powerpc/fadump: fix PT_LOAD segment for boot memory area + - mfd: ipaq-micro: Fix error check return value of platform_get_irq() + - scsi: fcoe: Fix Wstringop-overflow warnings in fcoe_wwn_from_mac() + - soc: bcm: Check for NULL return of devm_kzalloc() + - arm64: dts: ti: k3-am64-mcu: remove incorrect UART base clock rates + - ASoC: sh: rz-ssi: Check return value of pm_runtime_resume_and_get() + - ASoC: sh: rz-ssi: Propagate error codes returned from + platform_get_irq_byname() + - ASoC: sh: rz-ssi: Release the DMA channels in rz_ssi_probe() error path + - firmware: arm_scmi: Fix list protocols enumeration in the base protocol + - nvdimm: Fix firmware activation deadlock scenarios + - nvdimm: Allow overwrite in the presence of disabled dimms + - pinctrl: mvebu: Fix irq_of_parse_and_map() return value + - drivers/base/node.c: fix compaction sysfs file leak + - dax: fix cache flush on PMD-mapped pages + - drivers/base/memory: fix an unlikely reference counting issue in + __add_memory_block() + - firmware: arm_ffa: Fix uuid parameter to ffa_partition_probe + - firmware: arm_ffa: Remove incorrect assignment of driver_data + - list: introduce list_is_head() helper and re-use it in list.h + - list: fix a data-race around ep->rdllist + - drm/msm/dpu: fix error check return value of irq_of_parse_and_map() + - powerpc/8xx: export 'cpm_setbrg' for modules + - pinctrl: renesas: r8a779a0: Fix GPIO function on I2C-capable pins + - pinctrl: renesas: core: Fix possible null-ptr-deref in + sh_pfc_map_resources() + - powerpc/idle: Fix return value of __setup() handler + - powerpc/4xx/cpm: Fix return value of __setup() handler + - RDMA/hns: Add the detection for CMDQ status in the device initialization + process + - arm64: dts: marvell: espressobin-ultra: fix SPI-NOR config + - arm64: dts: marvell: espressobin-ultra: enable front USB3 port + - ASoC: atmel-pdmic: Remove endianness flag on pdmic component + - ASoC: atmel-classd: Remove endianness flag on class d component + - proc: fix dentry/inode overinstantiating under /proc/${pid}/net + - ipc/mqueue: use get_tree_nodev() in mqueue_get_tree() + - PCI: imx6: Fix PERST# start-up sequence + - tty: fix deadlock caused by calling printk() under tty_port->lock + - crypto: sun8i-ss - rework handling of IV + - crypto: sun8i-ss - handle zero sized sg + - crypto: cryptd - Protect per-CPU resource by disabling BH. + - ARM: dts: at91: sama7g5: remove interrupt-parent from gic node + - hugetlbfs: fix hugetlbfs_statfs() locking + - Input: sparcspkr - fix refcount leak in bbc_beep_probe + - PCI/AER: Clear MULTI_ERR_COR/UNCOR_RCV bits + - PCI: microchip: Fix potential race in interrupt handling + - hwrng: omap3-rom - fix using wrong clk_disable() in + omap_rom_rng_runtime_resume() + - powerpc/64: Only WARN if __pa()/__va() called with bad addresses + - powerpc/perf: Fix the threshold compare group constraint for power10 + - powerpc/perf: Fix the threshold compare group constraint for power9 + - macintosh: via-pmu and via-cuda need RTC_LIB + - powerpc/xive: Add some error handling code to 'xive_spapr_init()' + - powerpc/xive: Fix refcount leak in xive_spapr_init + - powerpc/fsl_rio: Fix refcount leak in fsl_rio_setup + - mfd: davinci_voicecodec: Fix possible null-ptr-deref davinci_vc_probe() + - nfsd: destroy percpu stats counters after reply cache shutdown + - mailbox: forward the hrtimer if not queued and under a lock + - RDMA/hfi1: Prevent use of lock before it is initialized + - KVM: LAPIC: Drop pending LAPIC timer injection when canceling the timer + - Input: stmfts - do not leave device disabled in stmfts_input_open + - OPP: call of_node_put() on error path in _bandwidth_supported() + - f2fs: support fault injection for dquot_initialize() + - f2fs: fix to do sanity check on inline_dots inode + - f2fs: fix dereference of stale list iterator after loop body + - iommu/amd: Enable swiotlb in all cases + - iommu/mediatek: Fix 2 HW sharing pgtable issue + - iommu/mediatek: Add list_del in mtk_iommu_remove + - iommu/mediatek: Remove clk_disable in mtk_iommu_remove + - iommu/mediatek: Add mutex for m4u_group and m4u_dom in data + - i2c: at91: use dma safe buffers + - cpufreq: mediatek: Use module_init and add module_exit + - cpufreq: mediatek: Unregister platform device on exit + - iommu/arm-smmu-v3-sva: Fix mm use-after-free + - MIPS: Loongson: Use hwmon_device_register_with_groups() to register hwmon + - iommu/mediatek: Fix NULL pointer dereference when printing dev_name + - i2c: at91: Initialize dma_buf in at91_twi_xfer() + - dmaengine: idxd: Fix the error handling path in idxd_cdev_register() + - NFS: Do not report EINTR/ERESTARTSYS as mapping errors + - NFS: fsync() should report filesystem errors over EINTR/ERESTARTSYS + - NFS: Don't report ENOSPC write errors twice + - NFS: Do not report flush errors in nfs_write_end() + - NFS: Don't report errors from nfs_pageio_complete() more than once + - NFSv4/pNFS: Do not fail I/O when we fail to allocate the pNFS layout + - NFS: Further fixes to the writeback error handling + - video: fbdev: clcdfb: Fix refcount leak in clcdfb_of_vram_setup + - dmaengine: stm32-mdma: remove GISR1 register + - dmaengine: stm32-mdma: fix chan initialization in stm32_mdma_irq_handler() + - iommu/amd: Increase timeout waiting for GA log enablement + - i2c: npcm: Fix timeout calculation + - i2c: npcm: Correct register access width + - i2c: npcm: Handle spurious interrupts + - i2c: rcar: fix PM ref counts in probe error paths + - perf build: Fix btf__load_from_kernel_by_id() feature check + - perf c2c: Use stdio interface if slang is not supported + - perf jevents: Fix event syntax error caused by ExtSel + - video: fbdev: vesafb: Fix a use-after-free due early fb_info cleanup + - NFS: Always initialise fattr->label in nfs_fattr_alloc() + - NFS: Create a new nfs_alloc_fattr_with_label() function + - NFS: Convert GFP_NOFS to GFP_KERNEL + - NFSv4.1 mark qualified async operations as MOVEABLE tasks + - f2fs: fix to avoid f2fs_bug_on() in dec_valid_node_count() + - f2fs: fix to do sanity check on block address in f2fs_do_zero_range() + - f2fs: fix to clear dirty inode in f2fs_evict_inode() + - f2fs: fix deadloop in foreground GC + - f2fs: don't need inode lock for system hidden quota + - f2fs: fix to do sanity check on total_data_blocks + - f2fs: don't use casefolded comparison for "." and ".." + - f2fs: fix fallocate to use file_modified to update permissions consistently + - f2fs: fix to do sanity check for inline inode + - wifi: mac80211: fix use-after-free in chanctx code + - iwlwifi: mvm: fix assert 1F04 upon reconfig + - fs-writeback: writeback_sb_inodes:Recalculate 'wrote' according skipped + pages + - efi: Do not import certificates from UEFI Secure Boot for T2 Macs + - bfq: Avoid false marking of bic as stably merged + - bfq: Avoid merging queues with different parents + - bfq: Split shared queues on move between cgroups + - bfq: Update cgroup information before merging bio + - bfq: Drop pointless unlock-lock pair + - bfq: Remove pointless bfq_init_rq() calls + - bfq: Track whether bfq_group is still online + - bfq: Get rid of __bio_blkcg() usage + - bfq: Make sure bfqg for which we are queueing requests is online + - ext4: mark group as trimmed only if it was fully scanned + - ext4: fix use-after-free in ext4_rename_dir_prepare + - ext4: fix race condition between ext4_write and ext4_convert_inline_data + - ext4: fix warning in ext4_handle_inode_extension + - ext4: fix bug_on in ext4_writepages + - ext4: filter out EXT4_FC_REPLAY from on-disk superblock field s_state + - ext4: fix bug_on in __es_tree_search + - ext4: verify dir block before splitting it + - ext4: avoid cycles in directory h-tree + - ACPI: property: Release subnode properties with data nodes + - tty: goldfish: Introduce gf_ioread32()/gf_iowrite32() + - tracing: Fix potential double free in create_var_ref() + - tracing: Initialize integer variable to prevent garbage return value + - drm/amdgpu: add beige goby PCI ID + - PCI/PM: Fix bridge_d3_blacklist[] Elo i2 overwrite of Gigabyte X299 + - PCI: qcom: Fix runtime PM imbalance on probe errors + - PCI: qcom: Fix unbalanced PHY init on probe errors + - staging: r8188eu: prevent ->Ssid overflow in rtw_wx_set_scan() + - mm, compaction: fast_find_migrateblock() should return pfn in the target + zone + - s390/perf: obtain sie_block from the right address + - s390/stp: clock_delta should be signed + - dlm: fix plock invalid read + - dlm: uninitialized variable on error in dlm_listen_for_all() + - dlm: fix missing lkb refcount handling + - ocfs2: dlmfs: fix error handling of user_dlm_destroy_lock + - scsi: dc395x: Fix a missing check on list iterator + - scsi: ufs: qcom: Add a readl() to make sure ref_clk gets enabled + - landlock: Add clang-format exceptions + - landlock: Format with clang-format + - selftests/landlock: Add clang-format exceptions + - selftests/landlock: Normalize array assignment + - selftests/landlock: Format with clang-format + - samples/landlock: Add clang-format exceptions + - samples/landlock: Format with clang-format + - landlock: Fix landlock_add_rule(2) documentation + - selftests/landlock: Make tests build with old libc + - selftests/landlock: Extend tests for minimal valid attribute size + - selftests/landlock: Add tests for unknown access rights + - selftests/landlock: Extend access right tests to directories + - selftests/landlock: Fully test file rename with "remove" access + - selftests/landlock: Add tests for O_PATH + - landlock: Change landlock_add_rule(2) argument check ordering + - landlock: Change landlock_restrict_self(2) check ordering + - selftests/landlock: Test landlock_create_ruleset(2) argument check ordering + - landlock: Define access_mask_t to enforce a consistent access mask size + - landlock: Reduce the maximum number of layers to 16 + - landlock: Create find_rule() from unmask_layers() + - landlock: Fix same-layer rule unions + - drm/amdgpu/cs: make commands with 0 chunks illegal behaviour. + - drm/nouveau/subdev/bus: Ratelimit logging for fault errors + - drm/etnaviv: check for reaped mapping in etnaviv_iommu_unmap_gem + - drm/nouveau/clk: Fix an incorrect NULL check on list iterator + - drm/nouveau/kms/nv50-: atom: fix an incorrect NULL check on list iterator + - drm/bridge: analogix_dp: Grab runtime PM reference for DP-AUX + - drm/i915/dsi: fix VBT send packet port selection for ICL+ + - md: fix an incorrect NULL check in does_sb_need_changing + - md: fix an incorrect NULL check in md_reload_sb + - mtd: cfi_cmdset_0002: Move and rename + chip_check/chip_ready/chip_good_for_write + - mtd: cfi_cmdset_0002: Use chip_ready() for write on S29GL064N + - media: coda: Fix reported H264 profile + - media: coda: Add more H264 levels for CODA960 + - ima: remove the IMA_TEMPLATE Kconfig option + - [Config] updateconfigs for IMA_TEMPLATE + - Kconfig: Add option for asm goto w/ tied outputs to workaround clang-13 bug + - RDMA/hfi1: Fix potential integer multiplication overflow errors + - mmc: core: Allows to override the timeout value for ioctl() path + - csky: patch_text: Fixup last cpu should be master + - irqchip/armada-370-xp: Do not touch Performance Counter Overflow on A375, + A38x, A39x + - irqchip: irq-xtensa-mx: fix initial IRQ affinity + - thermal: devfreq_cooling: use local ops instead of global ops + - cfg80211: declare MODULE_FIRMWARE for regulatory.db + - mac80211: upgrade passive scan to active scan on DFS channels after beacon + rx + - um: Use asm-generic/dma-mapping.h + - um: chan_user: Fix winch_tramp() return value + - um: Fix out-of-bounds read in LDT setup + - kexec_file: drop weak attribute from arch_kexec_apply_relocations[_add] + - ftrace: Clean up hash direct_functions on register failures + - ksmbd: fix outstanding credits related bugs + - iommu/msm: Fix an incorrect NULL check on list iterator + - iommu/dma: Fix iova map result check bug + - Revert "mm/cma.c: remove redundant cma_mutex lock" + - mm/page_alloc: always attempt to allocate at least one page during bulk + allocation + - nodemask.h: fix compilation error with GCC12 + - hugetlb: fix huge_pmd_unshare address update + - mm/memremap: fix missing call to untrack_pfn() in pagemap_range() + - xtensa/simdisk: fix proc_read_simdisk() + - rtl818x: Prevent using not initialized queues + - ASoC: rt5514: Fix event generation for "DSP Voice Wake Up" control + - carl9170: tx: fix an incorrect use of list iterator + - stm: ltdc: fix two incorrect NULL checks on list iterator + - bcache: remove incremental dirty sector counting for + bch_sectors_dirty_init() + - bcache: avoid journal no-space deadlock by reserving 1 journal bucket + - serial: pch: don't overwrite xmit->buf[0] by x_char + - tilcdc: tilcdc_external: fix an incorrect NULL check on list iterator + - gma500: fix an incorrect NULL check on list iterator + - arm64: dts: qcom: ipq8074: fix the sleep clock frequency + - arm64: tegra: Add missing DFLL reset on Tegra210 + - clk: tegra: Add missing reset deassertion + - phy: qcom-qmp: fix struct clk leak on probe errors + - ARM: dts: s5pv210: Remove spi-cs-high on panel in Aries + - ARM: pxa: maybe fix gpio lookup tables + - SMB3: EBADF/EIO errors in rename/open caused by race condition in + smb2_compound_op + - docs/conf.py: Cope with removal of language=None in Sphinx 5.0.0 + - dt-bindings: gpio: altera: correct interrupt-cells + - vdpasim: allow to enable a vq repeatedly + - blk-iolatency: Fix inflight count imbalances and IO hangs on offline + - coresight: core: Fix coresight device probe failure issue + - phy: qcom-qmp: fix reset-controller leak on probe errors + - net: ipa: fix page free in ipa_endpoint_trans_release() + - net: ipa: fix page free in ipa_endpoint_replenish_one() + - kseltest/cgroup: Make test_stress.sh work if run interactively + - list: test: Add a test for list_is_head() + - staging: r8188eu: delete rtw_wx_read/write32() + - RDMA/hns: Remove the num_cqc_timer variable + - RDMA/rxe: Generate a completion for unsupported/invalid opcode + - MIPS: IP27: Remove incorrect `cpu_has_fpu' override + - MIPS: IP30: Remove incorrect `cpu_has_fpu' override + - ext4: only allow test_dummy_encryption when supported + - interconnect: qcom: sc7180: Drop IP0 interconnects + - interconnect: qcom: icc-rpmh: Add BCMs to commit list in pre_aggregate + - fs: add two trivial lookup helpers + - exportfs: support idmapped mounts + - fs/ntfs3: Fix invalid free in log_replay + - md: Don't set mddev private to NULL in raid0 pers->free + - md: fix double free of io_acct_set bioset + - md: bcache: check the return value of kzalloc() in detached_dev_do_request() + - pinctrl/rockchip: support setting input-enable param + - block: fix bio_clone_blkg_association() to associate with proper blkcg_gq + - Linux 5.15.46 + * [SRU] bcache deadlock during read IO in writeback mode (LP: #1980925) // + Jammy update: v5.15.46 upstream stable release (LP: #1981864) + - bcache: improve multithreaded bch_btree_check() + - bcache: improve multithreaded bch_sectors_dirty_init() + * Jammy update: v5.15.45 upstream stable release (LP: #1981862) + - ALSA: usb-audio: Don't get sample rate for MCT Trigger 5 USB-to-HDMI + - pinctrl: sunxi: fix f1c100s uart2 function + - KVM: arm64: Don't hypercall before EL2 init + - percpu_ref_init(): clean ->percpu_count_ref on failure + - net: af_key: check encryption module availability consistency + - nfc: pn533: Fix buggy cleanup order + - net: ftgmac100: Disable hardware checksum on AST2600 + - i2c: ismt: Provide a DMA buffer for Interrupt Cause Logging + - drivers: i2c: thunderx: Allow driver to work with ACPI defined TWSI + controllers + - i2c: ismt: prevent memory corruption in ismt_access() + - assoc_array: Fix BUG_ON during garbage collect + - pipe: make poll_usage boolean and annotate its access + - pipe: Fix missing lock in pipe_resize_ring() + - net: ipa: compute proper aggregation limit + - drm/i915: Fix -Wstringop-overflow warning in call to intel_read_wm_latency() + - exfat: check if cluster num is valid + - lib/crypto: add prompts back to crypto libraries + - crypto: drbg - prepare for more fine-grained tracking of seeding state + - crypto: drbg - track whether DRBG was seeded with !rng_is_initialized() + - crypto: drbg - move dynamic ->reseed_threshold adjustments to __drbg_seed() + - crypto: drbg - make reseeding from get_random_bytes() synchronous + - netfilter: nf_tables: hold mutex on netns pre_exit path + - netfilter: nf_tables: double hook unregistration in netns path + - netfilter: conntrack: re-fetch conntrack after insertion + - KVM: PPC: Book3S HV: fix incorrect NULL check on list iterator + - x86/kvm: Alloc dummy async #PF token outside of raw spinlock + - x86, kvm: use correct GFP flags for preemption disabled + - KVM: x86: avoid calling x86 emulator without a decoded instruction + - KVM: x86: Drop WARNs that assert a triple fault never "escapes" from L2 + - KVM: SVM: Use kzalloc for sev ioctl interfaces to prevent kernel data leak + - crypto: caam - fix i.MX6SX entropy delay value + - crypto: ecrdsa - Fix incorrect use of vli_cmp + - zsmalloc: fix races between asynchronous zspage free and page migration + - ALSA: usb-audio: Workaround for clock setup on TEAC devices + - ALSA: usb-audio: Add missing ep_idx in fixed EP quirks + - ALSA: usb-audio: Configure sync endpoints before data + - Bluetooth: hci_qca: Use del_timer_sync() before freeing + - ARM: dts: s5pv210: Correct interrupt name for bluetooth in Aries + - dm integrity: fix error code in dm_integrity_ctr() + - dm crypt: make printing of the key constant-time + - dm stats: add cond_resched when looping over entries + - dm verity: set DM_TARGET_IMMUTABLE feature flag + - raid5: introduce MD_BROKEN + - fs/ntfs3: validate BOOT sectors_per_clusters + - HID: multitouch: Add support for Google Whiskers Touchpad + - HID: multitouch: add quirks to enable Lenovo X12 trackpoint + - x86/sgx: Disconnect backing page references from dirty status + - x86/sgx: Mark PCMD page as dirty when modifying contents + - x86/sgx: Obtain backing storage page with enclave mutex held + - x86/sgx: Fix race between reclaimer and page fault handler + - x86/sgx: Ensure no data in PCMD page after truncate + - media: i2c: imx412: Fix reset GPIO polarity + - media: i2c: imx412: Fix power_off ordering + - tpm: Fix buffer access in tpm2_get_tpm_pt() + - tpm: ibmvtpm: Correct the return value in tpm_ibmvtpm_probe() + - docs: submitting-patches: Fix crossref to 'The canonical patch format' + - NFS: Memory allocation failures are not server fatal errors + - NFSD: Fix possible sleep during nfsd4_release_lockowner() + - bpf: Fix potential array overflow in bpf_trampoline_get_progs() + - bpf: Enlarge offset check value to INT_MAX in bpf_skb_{load,store}_bytes + - bpf: Fix excessive memory allocation in stack_map_alloc() + - bpf: Reject writes for PTR_TO_MAP_KEY in check_helper_mem_access + - bpf: Check PTR_TO_MEM | MEM_RDONLY in check_helper_mem_access + - ALSA: usb-audio: Optimize TEAC clock quirk + - Linux 5.15.45 + * Jammy update: v5.15.44 upstream stable release (LP: #1981649) + - Revert "UBUNTU: SAUCE: random: Make getrandom() ready earlier" + - ice: fix crash at allocation failure + - ACPI: sysfs: Fix BERT error region memory mapping + - MAINTAINERS: co-maintain random.c + - MAINTAINERS: add git tree for random.c + - lib/crypto: blake2s: include as built-in + - [Config] updateconfigs for CRYPTO_LIB_BLAKE2S + - lib/crypto: blake2s: move hmac construction into wireguard + - lib/crypto: sha1: re-roll loops to reduce code size + - lib/crypto: blake2s: avoid indirect calls to compression function for Clang + CFI + - random: document add_hwgenerator_randomness() with other input functions + - random: remove unused irq_flags argument from add_interrupt_randomness() + - random: use BLAKE2s instead of SHA1 in extraction + - random: do not sign extend bytes for rotation when mixing + - random: do not re-init if crng_reseed completes before primary init + - random: mix bootloader randomness into pool + - random: harmonize "crng init done" messages + - random: use IS_ENABLED(CONFIG_NUMA) instead of ifdefs + - random: early initialization of ChaCha constants + - random: avoid superfluous call to RDRAND in CRNG extraction + - random: don't reset crng_init_cnt on urandom_read() + - random: fix typo in comments + - random: cleanup poolinfo abstraction + - random: cleanup integer types + - random: remove incomplete last_data logic + - random: remove unused extract_entropy() reserved argument + - random: rather than entropy_store abstraction, use global + - random: remove unused OUTPUT_POOL constants + - random: de-duplicate INPUT_POOL constants + - random: prepend remaining pool constants with POOL_ + - random: cleanup fractional entropy shift constants + - random: access input_pool_data directly rather than through pointer + - random: selectively clang-format where it makes sense + - random: simplify arithmetic function flow in account() + - random: continually use hwgenerator randomness + - random: access primary_pool directly rather than through pointer + - random: only call crng_finalize_init() for primary_crng + - random: use computational hash for entropy extraction + - random: simplify entropy debiting + - random: use linear min-entropy accumulation crediting + - random: always wake up entropy writers after extraction + - random: make credit_entropy_bits() always safe + - random: remove use_input_pool parameter from crng_reseed() + - random: remove batched entropy locking + - random: fix locking in crng_fast_load() + - random: use RDSEED instead of RDRAND in entropy extraction + - random: get rid of secondary crngs + - random: inline leaves of rand_initialize() + - random: ensure early RDSEED goes through mixer on init + - random: do not xor RDRAND when writing into /dev/random + - random: absorb fast pool into input pool after fast load + - random: use simpler fast key erasure flow on per-cpu keys + - random: use hash function for crng_slow_load() + - random: make more consistent use of integer types + - random: remove outdated INT_MAX >> 6 check in urandom_read() + - random: zero buffer after reading entropy from userspace + - random: fix locking for crng_init in crng_reseed() + - random: tie batched entropy generation to base_crng generation + - random: remove ifdef'd out interrupt bench + - random: remove unused tracepoints + - random: add proper SPDX header + - random: deobfuscate irq u32/u64 contributions + - random: introduce drain_entropy() helper to declutter crng_reseed() + - random: remove useless header comment + - random: remove whitespace and reorder includes + - random: group initialization wait functions + - random: group crng functions + - random: group entropy extraction functions + - random: group entropy collection functions + - random: group userspace read/write functions + - random: group sysctl functions + - random: rewrite header introductory comment + - random: defer fast pool mixing to worker + - random: do not take pool spinlock at boot + - random: unify early init crng load accounting + - random: check for crng_init == 0 in add_device_randomness() + - random: pull add_hwgenerator_randomness() declaration into random.h + - random: clear fast pool, crng, and batches in cpuhp bring up + - random: round-robin registers as ulong, not u32 + - random: only wake up writers after zap if threshold was passed + - random: cleanup UUID handling + - random: unify cycles_t and jiffies usage and types + - random: do crng pre-init loading in worker rather than irq + - random: give sysctl_random_min_urandom_seed a more sensible value + - random: don't let 644 read-only sysctls be written to + - random: replace custom notifier chain with standard one + - random: use SipHash as interrupt entropy accumulator + - random: make consistent usage of crng_ready() + - random: reseed more often immediately after booting + - random: check for signal and try earlier when generating entropy + - random: skip fast_init if hwrng provides large chunk of entropy + - random: treat bootloader trust toggle the same way as cpu trust toggle + - random: re-add removed comment about get_random_{u32,u64} reseeding + - random: mix build-time latent entropy into pool at init + - random: do not split fast init input in add_hwgenerator_randomness() + - random: do not allow user to keep crng key around on stack + - random: check for signal_pending() outside of need_resched() check + - random: check for signals every PAGE_SIZE chunk of /dev/[u]random + - random: allow partial reads if later user copies fail + - random: make random_get_entropy() return an unsigned long + - random: document crng_fast_key_erasure() destination possibility + - random: fix sysctl documentation nits + - init: call time_init() before rand_initialize() + - ia64: define get_cycles macro for arch-override + - s390: define get_cycles macro for arch-override + - parisc: define get_cycles macro for arch-override + - alpha: define get_cycles macro for arch-override + - powerpc: define get_cycles macro for arch-override + - timekeeping: Add raw clock fallback for random_get_entropy() + - m68k: use fallback for random_get_entropy() instead of zero + - riscv: use fallback for random_get_entropy() instead of zero + - mips: use fallback for random_get_entropy() instead of just c0 random + - arm: use fallback for random_get_entropy() instead of zero + - nios2: use fallback for random_get_entropy() instead of zero + - x86/tsc: Use fallback for random_get_entropy() instead of zero + - um: use fallback for random_get_entropy() instead of zero + - sparc: use fallback for random_get_entropy() instead of zero + - xtensa: use fallback for random_get_entropy() instead of zero + - random: insist on random_get_entropy() existing in order to simplify + - random: do not use batches when !crng_ready() + - random: use first 128 bits of input as fast init + - random: do not pretend to handle premature next security model + - random: order timer entropy functions below interrupt functions + - random: do not use input pool from hard IRQs + - random: help compiler out with fast_mix() by using simpler arguments + - siphash: use one source of truth for siphash permutations + - random: use symbolic constants for crng_init states + - random: avoid initializing twice in credit race + - random: move initialization out of reseeding hot path + - random: remove ratelimiting for in-kernel unseeded randomness + - random: use proper jiffies comparison macro + - random: handle latent entropy and command line from random_init() + - random: credit architectural init the exact amount + - random: use static branch for crng_ready() + - random: remove extern from functions in header + - random: use proper return types on get_random_{int,long}_wait() + - random: make consistent use of buf and len + - random: move initialization functions out of hot pages + - random: move randomize_page() into mm where it belongs + - random: unify batched entropy implementations + - random: convert to using fops->read_iter() + - random: convert to using fops->write_iter() + - random: wire up fops->splice_{read,write}_iter() + - random: check for signals after page of pool writes + - ALSA: ctxfi: Add SB046x PCI ID + - Linux 5.15.44 + - Revert "random: use static branch for crng_ready()" + * Jammy update: v5.15.43 upstream stable release (LP: #1981468) + - mptcp: Do TCP fallback on early DSS checksum failure + - Linux 5.15.43 + * Jammy update: v5.15.42 upstream stable release (LP: #1981375) + - usb: gadget: fix race when gadget driver register via ioctl + - io_uring: arm poll for non-nowait files + - kernel/resource: Introduce request_mem_region_muxed() + - i2c: piix4: Replace hardcoded memory map size with a #define + - i2c: piix4: Move port I/O region request/release code into functions + - i2c: piix4: Move SMBus controller base address detect into function + - i2c: piix4: Move SMBus port selection into function + - i2c: piix4: Add EFCH MMIO support to region request and release + - i2c: piix4: Add EFCH MMIO support to SMBus base address detect + - i2c: piix4: Add EFCH MMIO support for SMBus port select + - i2c: piix4: Enable EFCH MMIO for Family 17h+ + - Watchdog: sp5100_tco: Move timer initialization into function + - Watchdog: sp5100_tco: Refactor MMIO base address initialization + - Watchdog: sp5100_tco: Add initialization using EFCH MMIO + - Watchdog: sp5100_tco: Enable Family 17h+ CPUs + - mm/kfence: reset PG_slab and memcg_data before freeing __kfence_pool + - Revert "drm/i915/opregion: check port number bounds for SWSCI display power + state" + - rtc: fix use-after-free on device removal + - rtc: pcf2127: fix bug when reading alarm registers + - um: Cleanup syscall_handler_t definition/cast, fix warning + - Input: add bounds checking to input_set_capability() + - Input: stmfts - fix reference leak in stmfts_input_open + - nvme-pci: add quirks for Samsung X5 SSDs + - gfs2: Disable page faults during lockless buffered reads + - rtc: sun6i: Fix time overflow handling + - crypto: stm32 - fix reference leak in stm32_crc_remove + - crypto: x86/chacha20 - Avoid spurious jumps to other functions + - s390/traps: improve panic message for translation-specification exception + - s390/pci: improve zpci_dev reference counting + - vhost_vdpa: don't setup irq offloading when irq_num < 0 + - tools/virtio: compile with -pthread + - nvmet: use a private workqueue instead of the system workqueue + - nvme-multipath: fix hang when disk goes live over reconnect + - rtc: mc146818-lib: Fix the AltCentury for AMD platforms + - fs: fix an infinite loop in iomap_fiemap + - MIPS: lantiq: check the return value of kzalloc() + - drbd: remove usage of list iterator variable after loop + - platform/chrome: cros_ec_debugfs: detach log reader wq from devm + - ARM: 9191/1: arm/stacktrace, kasan: Silence KASAN warnings in unwind_frame() + - nilfs2: fix lockdep warnings in page operations for btree nodes + - nilfs2: fix lockdep warnings during disk space reclamation + - ALSA: usb-audio: Restore Rane SL-1 quirk + - ALSA: wavefront: Proper check of get_user() error + - ALSA: hda/realtek: Add quirk for TongFang devices with pop noise + - perf: Fix sys_perf_event_open() race against self + - selinux: fix bad cleanup on error in hashtab_duplicate() + - Fix double fget() in vhost_net_set_backend() + - PCI/PM: Avoid putting Elo i2 PCIe Ports in D3cold + - Revert "can: m_can: pci: use custom bit timings for Elkhart Lake" + - KVM: x86/mmu: Update number of zapped pages even if page list is stable + - arm64: paravirt: Use RCU read locks to guard stolen_time + - arm64: mte: Ensure the cleared tags are visible before setting the PTE + - crypto: qcom-rng - fix infinite loop on requests not multiple of WORD_SZ + - libceph: fix potential use-after-free on linger ping and resends + - drm/i915/dmc: Add MMIO range restrictions + - drm/dp/mst: fix a possible memory leak in fetch_monitor_name() + - dma-buf: fix use of DMA_BUF_SET_NAME_{A,B} in userspace + - dma-buf: ensure unique directory name for dmabuf stats + - ARM: dts: aspeed-g6: remove FWQSPID group in pinctrl dtsi + - pinctrl: pinctrl-aspeed-g6: remove FWQSPID group in pinctrl + - ARM: dts: aspeed-g6: fix SPI1/SPI2 quad pin group + - ARM: dts: aspeed: Add ADC for AST2600 and enable for Rainier and Everest + - ARM: dts: aspeed: Add secure boot controller node + - ARM: dts: aspeed: Add video engine to g6 + - pinctrl: mediatek: mt8365: fix IES control pins + - ALSA: hda - fix unused Realtek function when PM is not enabled + - net: ipa: record proper RX transaction count + - net: macb: Increment rx bd head after allocating skb and buffer + - xfrm: rework default policy structure + - xfrm: fix "disable_policy" flag use when arriving from different devices + - net/sched: act_pedit: sanitize shift argument before usage + - netfilter: flowtable: fix excessive hw offload attempts after failure + - netfilter: nft_flow_offload: skip dst neigh lookup for ppp devices + - net: fix dev_fill_forward_path with pppoe + bridge + - netfilter: nft_flow_offload: fix offload with pppoe + vlan + - net: systemport: Fix an error handling path in bcm_sysport_probe() + - net: vmxnet3: fix possible use-after-free bugs in vmxnet3_rq_alloc_rx_buf() + - net: vmxnet3: fix possible NULL pointer dereference in vmxnet3_rq_cleanup() + - ice: fix crash when writing timestamp on RX rings + - ice: fix possible under reporting of ethtool Tx and Rx statistics + - ice: move ice_container_type onto ice_ring_container + - ice: Fix interrupt moderation settings getting cleared + - clk: at91: generated: consider range when calculating best rate + - net/qla3xxx: Fix a test in ql_reset_work() + - NFC: nci: fix sleep in atomic context bugs caused by nci_skb_alloc + - net/mlx5: DR, Fix missing flow_source when creating multi-destination FW + table + - net/mlx5e: Properly block LRO when XDP is enabled + - ARM: 9196/1: spectre-bhb: enable for Cortex-A15 + - ARM: 9197/1: spectre-bhb: fix loop8 sequence for Thumb2 + - mptcp: change the parameter of __mptcp_make_csum + - mptcp: reuse __mptcp_make_csum in validate_data_csum + - mptcp: fix checksum byte order + - igb: skip phy status check where unavailable + - netfilter: flowtable: fix TCP flow teardown + - netfilter: flowtable: pass flowtable to nf_flow_table_iterate() + - netfilter: flowtable: move dst_check to packet path + - net: bridge: Clear offload_fwd_mark when passing frame up bridge interface. + - riscv: dts: sifive: fu540-c000: align dma node name with dtschema + - scsi: ufs: core: Fix referencing invalid rsp field + - perf build: Fix check for btf__load_from_kernel_by_id() in libbpf + - gpio: gpio-vf610: do not touch other bits when set the target bit + - gpio: mvebu/pwm: Refuse requests with inverted polarity + - perf regs x86: Fix arch__intr_reg_mask() for the hybrid platform + - perf bench numa: Address compiler error on s390 + - scsi: scsi_dh_alua: Properly handle the ALUA transitioning state + - scsi: qla2xxx: Fix missed DMA unmap for aborted commands + - mac80211: fix rx reordering with non explicit / psmp ack policy + - nl80211: validate S1G channel width + - selftests: add ping test with ping_group_range tuned + - fbdev: Prevent possible use-after-free in fb_release() + - net: fix wrong network header length + - nl80211: fix locking in nl80211_set_tx_bitrate_mask() + - ethernet: tulip: fix missing pci_disable_device() on error in + tulip_init_one() + - net: stmmac: fix missing pci_disable_device() on error in stmmac_pci_probe() + - net: atlantic: fix "frag[0] not initialized" + - net: atlantic: reduce scope of is_rsc_complete + - net: atlantic: add check for MAX_SKB_FRAGS + - net: atlantic: verify hw_head_ lies within TX buffer ring + - arm64: Enable repeat tlbi workaround on KRYO4XX gold CPUs + - Input: ili210x - fix reset timing + - dt-bindings: pinctrl: aspeed-g6: remove FWQSPID group + - i2c: mt7621: fix missing clk_disable_unprepare() on error in mtk_i2c_probe() + - afs: Fix afs_getattr() to refetch file status if callback break occurred + - Linux 5.15.42 + * CVE-2021-33061 + - ixgbe: add the ability for the PF to disable VF link state + - ixgbe: add improvement for MDD response functionality + - ixgbevf: add disable link state + * Fix PSR flickers on Intel TGL laptops + AUO panel (LP: #1980087) + - SAUCE: drm/i915/display/psr: Fix flicker on TGL + AUO panel + * Fix audio on Zbook Studio G9 (LP: #1966010) + - ALSA: hda/realtek: Fix LED on Zbook Studio G9 + * Support Cirrus audio codec configurations for Odin platform (LP: #1968861) + - ALSA: hda/cs8409: Support new Odin Variants + - ALSA: hda/cs8409: Add Speaker Playback Switch for Cyborg + * Fix beacon loss for rtl8821ce on certain platforms (LP: #1969771) + - rtw88: pci: 8821c: Disable 21ce completion timeout + * Suppress harmless warning from hp-wmi (LP: #1980307) + - platform/x86: hp-wmi: Ignore Sanitization Mode event + * Fix headset mic no sound on an HP desktop (LP: #1978925) + - ALSA: hda/realtek - ALC897 headset MIC no sound + * alsa/hda: mute led can't work on the lenovo machine with cs35l41 s-codec + (LP: #1978915) + - ALSA: hda/realtek: Fix mute led issue on thinkpad with cs35l41 s-codec + * Jammy update: v5.15.41 upstream stable release (LP: #1980278) + - batman-adv: Don't skb_split skbuffs with frag_list + - iwlwifi: iwl-dbg: Use del_timer_sync() before freeing + - hwmon: (tmp401) Add OF device ID table + - mac80211: Reset MBSSID parameters upon connection + - net: Fix features skip in for_each_netdev_feature() + - net: mscc: ocelot: fix last VCAP IS1/IS2 filter persisting in hardware when + deleted + - net: mscc: ocelot: fix VCAP IS2 filters matching on both lookups + - net: mscc: ocelot: restrict tc-trap actions to VCAP IS2 lookup 0 + - net: mscc: ocelot: avoid corrupting hardware counters when moving VCAP + filters + - fbdev: simplefb: Cleanup fb_info in .fb_destroy rather than .remove + - fbdev: efifb: Cleanup fb_info in .fb_destroy rather than .remove + - fbdev: vesafb: Cleanup fb_info in .fb_destroy rather than .remove + - platform/surface: aggregator: Fix initialization order when compiling as + builtin module + - ice: Fix race during aux device (un)plugging + - ice: fix PTP stale Tx timestamps cleanup + - ipv4: drop dst in multicast routing path + - drm/nouveau: Fix a potential theorical leak in nouveau_get_backlight_name() + - netlink: do not reset transport header in netlink_recvmsg() + - net: chelsio: cxgb4: Avoid potential negative array offset + - fbdev: efifb: Fix a use-after-free due early fb_info cleanup + - sfc: Use swap() instead of open coding it + - net: sfc: fix memory leak due to ptp channel + - mac80211_hwsim: call ieee80211_tx_prepare_skb under RCU protection + - nfs: fix broken handling of the softreval mount option + - ionic: fix missing pci_release_regions() on error in ionic_probe() + - dim: initialize all struct fields + - hwmon: (ltq-cputemp) restrict it to SOC_XWAY + - procfs: prevent unprivileged processes accessing fdinfo dir + - selftests: vm: Makefile: rename TARGETS to VMTARGETS + - arm64: vdso: fix makefile dependency on vdso.so + - virtio: fix virtio transitional ids + - s390/ctcm: fix variable dereferenced before check + - s390/ctcm: fix potential memory leak + - s390/lcs: fix variable dereferenced before check + - net/sched: act_pedit: really ensure the skb is writable + - net: ethernet: mediatek: ppe: fix wrong size passed to memset() + - net: bcmgenet: Check for Wake-on-LAN interrupt probe deferral + - drm/vc4: hdmi: Fix build error for implicit function declaration + - net: dsa: bcm_sf2: Fix Wake-on-LAN with mac_link_down() + - net/smc: non blocking recvmsg() return -EAGAIN when no data and + signal_pending + - net: sfc: ef10: fix memory leak in efx_ef10_mtd_probe() + - tls: Fix context leak on tls_device_down + - drm/vmwgfx: Fix fencing on SVGAv3 + - gfs2: Fix filesystem block deallocation for short writes + - hwmon: (f71882fg) Fix negative temperature + - RDMA/irdma: Fix deadlock in irdma_cleanup_cm_core() + - iommu: arm-smmu: disable large page mappings for Nvidia arm-smmu + - ASoC: max98090: Reject invalid values in custom control put() + - ASoC: max98090: Generate notifications on changes for custom control + - ASoC: ops: Validate input values in snd_soc_put_volsw_range() + - s390: disable -Warray-bounds + - ASoC: SOF: Fix NULL pointer exception in sof_pci_probe callback + - net: emaclite: Don't advertise 1000BASE-T and do auto negotiation + - net: sfp: Add tx-fault workaround for Huawei MA5671A SFP ONT + - secure_seq: use the 64 bits of the siphash for port offset calculation + - tcp: use different parts of the port_offset for index and offset + - tcp: resalt the secret every 10 seconds + - tcp: add small random increments to the source port + - tcp: dynamically allocate the perturb table used by source ports + - tcp: increase source port perturb table to 2^16 + - tcp: drop the hash_32() part from the index calculation + - interconnect: Restore sync state by ignoring ipa-virt in provider count + - firmware_loader: use kernel credentials when reading firmware + - KVM: PPC: Book3S PR: Enable MSR_DR for switch_mmu_context() + - usb: xhci-mtk: fix fs isoc's transfer error + - x86/mm: Fix marking of unused sub-pmd ranges + - tty/serial: digicolor: fix possible null-ptr-deref in digicolor_uart_probe() + - tty: n_gsm: fix buffer over-read in gsm_dlci_data() + - tty: n_gsm: fix mux activation issues in gsm_config() + - usb: cdc-wdm: fix reading stuck on device close + - usb: typec: tcpci: Don't skip cleanup in .remove() on error + - usb: typec: tcpci_mt6360: Update for BMC PHY setting + - USB: serial: pl2303: add device id for HP LM930 Display + - USB: serial: qcserial: add support for Sierra Wireless EM7590 + - USB: serial: option: add Fibocom L610 modem + - USB: serial: option: add Fibocom MA510 modem + - slimbus: qcom: Fix IRQ check in qcom_slim_probe + - fsl_lpuart: Don't enable interrupts too early + - serial: 8250_mtk: Fix UART_EFR register address + - serial: 8250_mtk: Fix register address for XON/XOFF character + - ceph: fix setting of xattrs on async created inodes + - Revert "mm/memory-failure.c: skip huge_zero_page in memory_failure()" + - mm/huge_memory: do not overkill when splitting huge_zero_page + - drm/vmwgfx: Disable command buffers on svga3 without gbobjects + - drm/nouveau/tegra: Stop using iommu_present() + - i40e: i40e_main: fix a missing check on list iterator + - net: atlantic: always deep reset on pm op, fixing up my null deref + regression + - net: phy: Fix race condition on link status change + - writeback: Avoid skipping inode writeback + - cgroup/cpuset: Remove cpus_allowed/mems_allowed setup in cpuset_init_smp() + - arm[64]/memremap: don't abuse pfn_valid() to ensure presence of linear map + - net: phy: micrel: Do not use kszphy_suspend/resume for KSZ8061 + - net: phy: micrel: Pass .probe for KS8737 + - SUNRPC: Ensure that the gssproxy client can start in a connected state + - drm/vmwgfx: Initialize drm_mode_fb_cmd2 + - dma-buf: call dma_buf_stats_setup after dmabuf is in valid list + - mm/hwpoison: use pr_err() instead of dump_page() in get_any_page() + - ping: fix address binding wrt vrf + - usb: gadget: uvc: rename function to be more consistent + - usb: gadget: uvc: allow for application to cleanly shutdown + - Linux 5.15.41 + * Jammy update: v5.15.40 upstream stable release (LP: #1980277) + - tools arch: Update arch/x86/lib/mem{cpy,set}_64.S copies used in 'perf bench + mem memcpy' + - Bluetooth: Fix the creation of hdev->name + - udf: Avoid using stale lengthOfImpUse + - mm: fix missing cache flush for all tail pages of compound page + - mm: hugetlb: fix missing cache flush in copy_huge_page_from_user() + - mm: shmem: fix missing cache flush in shmem_mfill_atomic_pte() + - mm: userfaultfd: fix missing cache flush in mcopy_atomic_pte() and + __mcopy_atomic() + - mm/hwpoison: fix error page recovered but reported "not recovered" + - mm/mlock: fix potential imbalanced rlimit ucounts adjustment + - mm: fix invalid page pointer returned with FOLL_PIN gups + - Linux 5.15.40 + + [ Ubuntu: 5.15.0-1013.17 ] + + * CVE-2022-29900 // CVE-2022-29901 + - [Config]: Enable speculation mitigations + * CVE-2022-2585 + - SAUCE: posix-cpu-timers: Cleanup CPU timers before freeing them during exec + * CVE-2022-2586 + - SAUCE: netfilter: nf_tables: do not allow SET_ID to refer to another table + - SAUCE: netfilter: nf_tables: do not allow CHAIN_ID to refer to another table + - SAUCE: netfilter: nf_tables: do not allow RULE_ID to refer to another chain + * CVE-2022-2588 + - SAUCE: net_sched: cls_route: remove from list when handle is 0 + * CVE-2022-29900 // CVE-2022-29901 + - x86/lib/atomic64_386_32: Rename things + - x86: Prepare asm files for straight-line-speculation + - x86: Prepare inline-asm for straight-line-speculation + - x86/alternative: Relax text_poke_bp() constraint + - kbuild: move objtool_args back to scripts/Makefile.build + - x86: Add straight-line-speculation mitigation + - kvm/emulate: Fix SETcc emulation function offsets with SLS + - crypto: x86/poly1305 - Fixup SLS + - objtool: Add straight-line-speculation validation + - objtool: Fix SLS validation for kcov tail-call replacement + - objtool: Fix objtool regression on x32 systems + - objtool: Fix symbol creation + - objtool: Introduce CFI hash + - objtool: Default ignore INT3 for unreachable + - x86, kvm: use proper ASM macros for kvm_vcpu_is_preempted + - x86/traps: Use pt_regs directly in fixup_bad_iret() + - x86/entry: Switch the stack after error_entry() returns + - x86/entry: Move PUSH_AND_CLEAR_REGS out of error_entry() + - x86/entry: Don't call error_entry() for XENPV + - x86/entry: Remove skip_r11rcx + - x86/realmode: build with -D__DISABLE_EXPORTS + - x86/ibt,ftrace: Make function-graph play nice + - x86/kvm/vmx: Make noinstr clean + - x86/cpufeatures: Move RETPOLINE flags to word 11 + - x86/retpoline: Cleanup some #ifdefery + - x86/retpoline: Swizzle retpoline thunk + - x86/retpoline: Use -mfunction-return + - x86: Undo return-thunk damage + - x86,objtool: Create .return_sites + - objtool: skip non-text sections when adding return-thunk sites + - x86,static_call: Use alternative RET encoding + - x86/ftrace: Use alternative RET encoding + - x86/bpf: Use alternative RET encoding + - x86/kvm: Fix SETcc emulation for return thunks + - x86/vsyscall_emu/64: Don't use RET in vsyscall emulation + - x86/sev: Avoid using __x86_return_thunk + - x86: Use return-thunk in asm code + - x86/entry: Avoid very early RET + - objtool: Treat .text.__x86.* as noinstr + - x86: Add magic AMD return-thunk + - x86/bugs: Report AMD retbleed vulnerability + - x86/bugs: Add AMD retbleed= boot parameter + - x86/bugs: Enable STIBP for JMP2RET + - x86/bugs: Keep a per-CPU IA32_SPEC_CTRL value + - x86/entry: Add kernel IBRS implementation + - x86/bugs: Optimize SPEC_CTRL MSR writes + - x86/speculation: Add spectre_v2=ibrs option to support Kernel IBRS + - x86/bugs: Split spectre_v2_select_mitigation() and + spectre_v2_user_select_mitigation() + - x86/bugs: Report Intel retbleed vulnerability + - intel_idle: Disable IBRS during long idle + - objtool: Update Retpoline validation + - x86/xen: Rename SYS* entry points + - x86/xen: Add UNTRAIN_RET + - x86/bugs: Add retbleed=ibpb + - x86/bugs: Do IBPB fallback check only once + - objtool: Add entry UNRET validation + - x86/cpu/amd: Add Spectral Chicken + - x86/speculation: Fix RSB filling with CONFIG_RETPOLINE=n + - x86/speculation: Fix firmware entry SPEC_CTRL handling + - x86/speculation: Fix SPEC_CTRL write on SMT state change + - x86/speculation: Use cached host SPEC_CTRL value for guest entry/exit + - x86/speculation: Remove x86_spec_ctrl_mask + - objtool: Re-add UNWIND_HINT_{SAVE_RESTORE} + - KVM: VMX: Flatten __vmx_vcpu_run() + - KVM: VMX: Convert launched argument to flags + - KVM: VMX: Prevent guest RSB poisoning attacks with eIBRS + - KVM: VMX: Fix IBRS handling after vmexit + - x86/speculation: Fill RSB on vmexit for IBRS + - KVM: VMX: Prevent RSB underflow before vmenter + - x86/common: Stamp out the stepping madness + - x86/cpu/amd: Enumerate BTC_NO + - x86/retbleed: Add fine grained Kconfig knobs + - x86/bugs: Add Cannon lake to RETBleed affected CPU list + - x86/entry: Move PUSH_AND_CLEAR_REGS() back into error_entry + - x86/bugs: Do not enable IBPB-on-entry when IBPB is not supported + - x86/kexec: Disable RET on kexec + - x86/speculation: Disable RRSBA behavior + - [Config]: Enable speculation mitigations + - x86/static_call: Serialize __static_call_fixup() properly + - x86/asm/32: Fix ANNOTATE_UNRET_SAFE use on 32-bit + - x86/bugs: Mark retbleed_strings static + - x86/entry: Remove UNTRAIN_RET from native_irq_return_ldt + - x86/kvm: fix FASTOP_SIZE when return thunks are enabled + - x86/speculation: Use DECLARE_PER_CPU for x86_spec_ctrl_current + - KVM: emulate: do not adjust size of fastop and setcc subroutines + - x86/bugs: Remove apostrophe typo + - efi/x86: use naked RET on mixed mode call wrapper + + [ Ubuntu: 5.15.0-1012.16 ] + + * jammy/linux-intel-iotg: 5.15.0-1012.16 -proposed tracker (LP: #1981226) + * CVE-2022-29900 // CVE-2022-29901 + - [Config] intel-iotg: Enable speculation mitigations + * Ubuntu 22.04 and 20.04 DPC Fixes for Failure Cases of DownPort Containment + events (LP: #1965241) + - [Config] intel-iotg: Enable config option CONFIG_PCIE_EDR + * AMD ACP 6.x DMIC Supports (LP: #1949245) + - [Config] intel-iotg: drop AMD ACP 6 DMIC Support + * jammy/linux: 5.15.0-43.46 -proposed tracker (LP: #1981243) + * Packaging resync (LP: #1786013) + - debian/dkms-versions -- update from kernel-versions (main/2022.07.11) + * nbd: requests can become stuck when disconnecting from server with qemu-nbd + (LP: #1896350) + - nbd: don't handle response without a corresponding request message + - nbd: make sure request completion won't concurrent + - nbd: don't clear 'NBD_CMD_INFLIGHT' flag if request is not completed + - nbd: fix io hung while disconnecting device + * Ubuntu 22.04 and 20.04 DPC Fixes for Failure Cases of DownPort Containment + events (LP: #1965241) + - PCI/portdrv: Rename pm_iter() to pcie_port_device_iter() + - PCI: pciehp: Ignore Link Down/Up caused by error-induced Hot Reset + - [Config] Enable config option CONFIG_PCIE_EDR + * [SRU] Ubuntu 22.04 Feature Request-Add support for a NVMe-oF-TCP CDC Client + - TP 8010 (LP: #1948626) + - nvme: add CNTRLTYPE definitions for 'identify controller' + - nvme: send uevent on connection up + - nvme: expose cntrltype and dctype through sysfs + * [UBUNTU 22.04] Kernel oops while removing device from cio_ignore list + (LP: #1980951) + - s390/cio: derive cdev information only for IO-subchannels + * Jammy Charmed OpenStack deployment fails over connectivity issues when using + converged OVS bridge for control and data planes (LP: #1978820) + - net/mlx5e: TC NIC mode, fix tc chains miss table + * Hairpin traffic does not work with centralized NAT gw (LP: #1967856) + - net: openvswitch: fix misuse of the cached connection on tuple changes + * alsa: asoc: amd: the internal mic can't be dedected on yellow carp machines + (LP: #1980700) + - ASoC: amd: Add driver data to acp6x machine driver + - ASoC: amd: Add support for enabling DMIC on acp6x via _DSD + * AMD ACP 6.x DMIC Supports (LP: #1949245) + - ASoC: amd: add Yellow Carp ACP6x IP register header + - ASoC: amd: add Yellow Carp ACP PCI driver + - ASoC: amd: add acp6x init/de-init functions + - ASoC: amd: add platform devices for acp6x pdm driver and dmic driver + - ASoC: amd: add acp6x pdm platform driver + - ASoC: amd: add acp6x irq handler + - ASoC: amd: add acp6x pdm driver dma ops + - ASoC: amd: add acp6x pci driver pm ops + - ASoC: amd: add acp6x pdm driver pm ops + - ASoC: amd: enable Yellow carp acp6x drivers build + - ASoC: amd: create platform device for acp6x machine driver + - ASoC: amd: add YC machine driver using dmic + - ASoC: amd: enable Yellow Carp platform machine driver build + - ASoC: amd: fix uninitialized variable in snd_acp6x_probe() + - [Config] Enable AMD ACP 6 DMIC Support + * [UBUNTU 20.04] Include patches to avoid self-detected stall with Secure + Execution (LP: #1979296) + - KVM: s390: pv: add macros for UVC CC values + - KVM: s390: pv: avoid stalls when making pages secure + * [22.04 FEAT] KVM: Attestation support for Secure Execution (crypto) + (LP: #1959973) + - drivers/s390/char: Add Ultravisor io device + - s390/uv_uapi: depend on CONFIG_S390 + - [Config] CONFIG_S390_UV_UAPI=y for s390x + * CVE-2022-1679 + - SAUCE: ath9k: fix use-after-free in ath9k_hif_usb_rx_cb + * CVE-2022-28893 + - SUNRPC: Ensure we flush any closed sockets before xs_xprt_free() + - SUNRPC: Don't leak sockets in xs_local_connect() + * CVE-2022-34918 + - netfilter: nf_tables: stricter validation of element data + * CVE-2022-1652 + - floppy: use a statically allocated error counter + + [ Ubuntu: 5.15.0-1011.15 ] + + * jammy/linux-intel-iotg: 5.15.0-1011.15 -proposed tracker (LP: #1979435) + * disable Intel DMA remapping by default (LP: #1971699) + - [Config] updateconfigs for Intel DMA remapping + * IPU6 camera has no function on Andrews MLK (LP: #1964983) + - [Config] updateconfigs for OV02C10 + * Support Intel IPU6 MIPI camera on Alder Lake platforms (LP: #1955383) + - [Config] updateconfigs for intel visual sensing controller(VSC) driver + - [Config] updateconfigs for IPU6 + * Jammy update: v5.15.37 upstream stable release (LP: #1976135) + - [Config] updateconfigs for BLK_DEV_FD_RAWCMD + * jammy/linux: 5.15.0-41.44 -proposed tracker (LP: #1979448) + * Fix can't boot up after change to vmd (LP: #1976587) + - PCI: vmd: Assign VMD IRQ domain before enumeration + - PCI: vmd: Revert 2565e5b69c44 ("PCI: vmd: Do not disable MSI-X remapping if + interrupt remapping is enabled by IOMMU.") + * [SRU][Jammy/OEM-5.17][PATCH 0/1] Fix calltrace in mac80211 (LP: #1978297) + - mac80211: fix struct ieee80211_tx_info size + * [SRU][Jammy][PATCH 0/1] Fix amd display corruption on s2idle resume + (LP: #1978244) + - drm/amd/display: Don't reinitialize DMCUB on s0ix resume + * pl2303 serial adapter not recognized (LP: #1967493) + - USB: serial: pl2303: fix type detection for odd device + * Remove SAUCE patches from test_vxlan_under_vrf.sh in net of + ubuntu_kernel_selftests (LP: #1975691) + - Revert "UBUNTU: SAUCE: selftests: net: Don't fail test_vxlan_under_vrf on + xfail" + - Revert "UBUNTU: SAUCE: selftests: net: Make test for VXLAN underlay in non- + default VRF an expected failure" + * Fix hp_wmi_read_int() reporting error (0x05) (LP: #1979051) + - platform/x86: hp-wmi: Fix hp_wmi_read_int() reporting error (0x05) + * Request to back port vmci patches to Ubuntu kernel (LP: #1978145) + - VMCI: dma dg: whitespace formatting change for vmci register defines + - VMCI: dma dg: add MMIO access to registers + - VMCI: dma dg: detect DMA datagram capability + - VMCI: dma dg: set OS page size + - VMCI: dma dg: register dummy IRQ handlers for DMA datagrams + - VMCI: dma dg: allocate send and receive buffers for DMA datagrams + - VMCI: dma dg: add support for DMA datagrams sends + - VMCI: dma dg: add support for DMA datagrams receive + - VMCI: Fix some error handling paths in vmci_guest_probe_device() + - VMCI: Release notification_bitmap in error path + - VMCI: Check exclusive_vectors when freeing interrupt 1 + - VMCI: Add support for ARM64 + - [Config] Update policies for VMWARE_VMCI and VMWARE_VMCI_VSOCKETS + * [UBUNTU 20.04] rcu stalls with many storage key guests (LP: #1975582) + - s390/gmap: voluntarily schedule during key setting + - s390/mm: use non-quiescing sske for KVM switch to keyed guest + * [SRU][OEM-5.14/OEM-5.17/Jammy][PATCH 0/1] Fix i915 calltrace on new ADL BIOS + (LP: #1976214) + - drm/i915: update new TMDS clock setting defined by VBT + * Revert PPC get_user workaround (LP: #1976248) + - powerpc: Export mmu_feature_keys[] as non-GPL + * Jammy update: v5.15.39 upstream stable release (LP: #1978240) + - MIPS: Fix CP0 counter erratum detection for R4k CPUs + - parisc: Merge model and model name into one line in /proc/cpuinfo + - ALSA: hda/realtek: Add quirk for Yoga Duet 7 13ITL6 speakers + - ALSA: fireworks: fix wrong return count shorter than expected by 4 bytes + - mmc: sdhci-msm: Reset GCC_SDCC_BCR register for SDHC + - mmc: sunxi-mmc: Fix DMA descriptors allocated above 32 bits + - mmc: core: Set HS clock speed before sending HS CMD13 + - gpiolib: of: fix bounds check for 'gpio-reserved-ranges' + - x86/fpu: Prevent FPU state corruption + - KVM: x86/svm: Account for family 17h event renumberings in + amd_pmc_perf_hw_id + - iommu/vt-d: Calculate mask for non-aligned flushes + - iommu/arm-smmu-v3: Fix size calculation in arm_smmu_mm_invalidate_range() + - drm/amd/display: Avoid reading audio pattern past AUDIO_CHANNELS_COUNT + - drm/amdgpu: do not use passthrough mode in Xen dom0 + - RISC-V: relocate DTB if it's outside memory region + - Revert "SUNRPC: attempt AF_LOCAL connect on setup" + - timekeeping: Mark NMI safe time accessors as notrace + - firewire: fix potential uaf in outbound_phy_packet_callback() + - firewire: remove check of list iterator against head past the loop body + - firewire: core: extend card->lock in fw_core_handle_bus_reset + - net: stmmac: disable Split Header (SPH) for Intel platforms + - genirq: Synchronize interrupt thread startup + - ASoC: da7219: Fix change notifications for tone generator frequency + - ASoC: wm8958: Fix change notifications for DSP controls + - ASoC: meson: Fix event generation for AUI ACODEC mux + - ASoC: meson: Fix event generation for G12A tohdmi mux + - ASoC: meson: Fix event generation for AUI CODEC mux + - s390/dasd: fix data corruption for ESE devices + - s390/dasd: prevent double format of tracks for ESE devices + - s390/dasd: Fix read for ESE with blksize < 4k + - s390/dasd: Fix read inconsistency for ESE DASD devices + - can: grcan: grcan_close(): fix deadlock + - can: isotp: remove re-binding of bound socket + - can: grcan: use ofdev->dev when allocating DMA memory + - can: grcan: grcan_probe(): fix broken system id check for errata workaround + needs + - can: grcan: only use the NAPI poll budget for RX + - nfc: replace improper check device_is_registered() in netlink related + functions + - nfc: nfcmrvl: main: reorder destructive operations in + nfcmrvl_nci_unregister_dev to avoid bugs + - NFC: netlink: fix sleep in atomic bug when firmware download timeout + - gpio: visconti: Fix fwnode of GPIO IRQ + - gpio: pca953x: fix irq_stat not updated when irq is disabled (irq_mask not + set) + - hwmon: (adt7470) Fix warning on module removal + - hwmon: (pmbus) disable PEC if not enabled + - ASoC: dmaengine: Restore NULL prepare_slave_config() callback + - ASoC: soc-ops: fix error handling + - iommu/vt-d: Drop stop marker messages + - iommu/dart: check return value after calling platform_get_resource() + - net/mlx5e: Fix trust state reset in reload + - net/mlx5e: Don't match double-vlan packets if cvlan is not set + - net/mlx5e: CT: Fix queued up restore put() executing after relevant ft + release + - net/mlx5e: Fix the calling of update_buffer_lossy() API + - net/mlx5: Avoid double clear or set of sync reset requested + - net/mlx5: Fix deadlock in sync reset flow + - selftests/seccomp: Don't call read() on TTY from background pgrp + - SUNRPC release the transport of a relocated task with an assigned transport + - RDMA/siw: Fix a condition race issue in MPA request processing + - RDMA/irdma: Flush iWARP QP if modified to ERR from RTR state + - RDMA/irdma: Reduce iWARP QP destroy time + - RDMA/irdma: Fix possible crash due to NULL netdev in notifier + - NFSv4: Don't invalidate inode attributes on delegation return + - net: ethernet: mediatek: add missing of_node_put() in mtk_sgmii_init() + - net: dsa: mt7530: add missing of_node_put() in mt7530_setup() + - net: stmmac: dwmac-sun8i: add missing of_node_put() in + sun8i_dwmac_register_mdio_mux() + - net: mdio: Fix ENOMEM return value in BCM6368 mux bus controller + - net: cpsw: add missing of_node_put() in cpsw_probe_dt() + - net: igmp: respect RCU rules in ip_mc_source() and ip_mc_msfilter() + - net: emaclite: Add error handling for of_address_to_resource() + - selftests/net: so_txtime: fix parsing of start time stamp on 32 bit systems + - selftests/net: so_txtime: usage(): fix documentation of default clock + - drm/msm/dp: remove fail safe mode related code + - btrfs: do not BUG_ON() on failure to update inode when setting xattr + - hinic: fix bug of wq out of bound access + - mld: respect RCU rules in ip6_mc_source() and ip6_mc_msfilter() + - rxrpc: Enable IPv6 checksums on transport socket + - selftests: mirror_gre_bridge_1q: Avoid changing PVID while interface is + operational + - bnxt_en: Fix possible bnxt_open() failure caused by wrong RFS flag + - bnxt_en: Fix unnecessary dropping of RX packets + - selftests: ocelot: tc_flower_chains: specify conform-exceed action for + policer + - smsc911x: allow using IRQ0 + - btrfs: force v2 space cache usage for subpage mount + - btrfs: always log symlinks in full mode + - gpio: mvebu: drop pwm base assignment + - kvm: x86/cpuid: Only provide CPUID leaf 0xA if host has architectural PMU + - net/mlx5: Fix slab-out-of-bounds while reading resource dump menu + - net/mlx5e: Lag, Fix use-after-free in fib event handler + - net/mlx5e: Lag, Fix fib_info pointer assignment + - net/mlx5e: Lag, Don't skip fib events on current dst + - iommu/dart: Add missing module owner to ops structure + - kvm: selftests: do not use bitfields larger than 32-bits for PTEs + - KVM: selftests: Silence compiler warning in the kvm_page_table_test + - x86/kvm: Preserve BSP MSR_KVM_POLL_CONTROL across suspend/resume + - KVM: x86: Do not change ICR on write to APIC_SELF_IPI + - KVM: x86/mmu: avoid NULL-pointer dereference on page freeing bugs + - KVM: LAPIC: Enable timer posted-interrupt only when mwait/hlt is advertised + - selftest/vm: verify mmap addr in mremap_test + - selftest/vm: verify remap destination address in mremap_test + - Revert "parisc: Mark sched_clock unstable only if clocks are not + syncronized" + - rcu: Fix callbacks processing time limit retaining cond_resched() + - rcu: Apply callbacks processing time limit only on softirq + - PCI: pci-bridge-emul: Add description for class_revision field + - PCI: pci-bridge-emul: Add definitions for missing capabilities registers + - PCI: aardvark: Add support for DEVCAP2, DEVCTL2, LNKCAP2 and LNKCTL2 + registers on emulated bridge + - PCI: aardvark: Clear all MSIs at setup + - PCI: aardvark: Comment actions in driver remove method + - PCI: aardvark: Disable bus mastering when unbinding driver + - PCI: aardvark: Mask all interrupts when unbinding driver + - PCI: aardvark: Fix memory leak in driver unbind + - PCI: aardvark: Assert PERST# when unbinding driver + - PCI: aardvark: Disable link training when unbinding driver + - PCI: aardvark: Disable common PHY when unbinding driver + - PCI: aardvark: Replace custom PCIE_CORE_INT_* macros with PCI_INTERRUPT_* + - PCI: aardvark: Check return value of generic_handle_domain_irq() when + processing INTx IRQ + - PCI: aardvark: Make MSI irq_chip structures static driver structures + - PCI: aardvark: Make msi_domain_info structure a static driver structure + - PCI: aardvark: Use dev_fwnode() instead of of_node_to_fwnode(dev->of_node) + - PCI: aardvark: Refactor unmasking summary MSI interrupt + - PCI: aardvark: Add support for masking MSI interrupts + - PCI: aardvark: Fix setting MSI address + - PCI: aardvark: Enable MSI-X support + - PCI: aardvark: Add support for ERR interrupt on emulated bridge + - PCI: aardvark: Optimize writing PCI_EXP_RTCTL_PMEIE and PCI_EXP_RTSTA_PME on + emulated bridge + - PCI: aardvark: Add support for PME interrupts + - PCI: aardvark: Fix support for PME requester on emulated bridge + - PCI: aardvark: Use separate INTA interrupt for emulated root bridge + - PCI: aardvark: Remove irq_mask_ack() callback for INTx interrupts + - PCI: aardvark: Don't mask irq when mapping + - PCI: aardvark: Drop __maybe_unused from advk_pcie_disable_phy() + - PCI: aardvark: Update comment about link going down after link-up + - Linux 5.15.39 + * Jammy update: v5.15.38 upstream stable release (LP: #1978234) + - usb: mtu3: fix USB 3.0 dual-role-switch from device to host + - USB: quirks: add a Realtek card reader + - USB: quirks: add STRING quirk for VCOM device + - USB: serial: whiteheat: fix heap overflow in WHITEHEAT_GET_DTR_RTS + - USB: serial: cp210x: add PIDs for Kamstrup USB Meter Reader + - USB: serial: option: add support for Cinterion MV32-WA/MV32-WB + - USB: serial: option: add Telit 0x1057, 0x1058, 0x1075 compositions + - usb: xhci: tegra:Fix PM usage reference leak of + tegra_xusb_unpowergate_partitions + - xhci: Enable runtime PM on second Alderlake controller + - xhci: stop polling roothubs after shutdown + - xhci: increase usb U3 -> U0 link resume timeout from 100ms to 500ms + - iio: dac: ad5592r: Fix the missing return value. + - iio: dac: ad5446: Fix read_raw not returning set value + - iio: magnetometer: ak8975: Fix the error handling in ak8975_power_on() + - iio: imu: inv_icm42600: Fix I2C init possible nack + - usb: misc: fix improper handling of refcount in uss720_probe() + - usb: core: Don't hold the device lock while sleeping in do_proc_control() + - usb: typec: ucsi: Fix reuse of completion structure + - usb: typec: ucsi: Fix role swapping + - usb: gadget: uvc: Fix crash when encoding data for usb request + - usb: gadget: configfs: clear deactivation flag in + configfs_composite_unbind() + - usb: dwc3: Try usb-role-switch first in dwc3_drd_init + - usb: dwc3: core: Fix tx/rx threshold settings + - usb: dwc3: core: Only handle soft-reset in DCTL + - usb: dwc3: gadget: Return proper request status + - usb: dwc3: pci: add support for the Intel Meteor Lake-P + - usb: cdns3: Fix issue for clear halt endpoint + - usb: phy: generic: Get the vbus supply + - serial: imx: fix overrun interrupts in DMA mode + - serial: amba-pl011: do not time out prematurely when draining tx fifo + - serial: 8250: Also set sticky MCR bits in console restoration + - serial: 8250: Correct the clock for EndRun PTP/1588 PCIe device + - arch_topology: Do not set llc_sibling if llc_id is invalid + - ceph: fix possible NULL pointer dereference for req->r_session + - bus: mhi: host: pci_generic: Add missing poweroff() PM callback + - bus: mhi: host: pci_generic: Flush recovery worker during freeze + - arm64: dts: imx8mm-venice: fix spi2 pin configuration + - pinctrl: samsung: fix missing GPIOLIB on ARM64 Exynos config + - hex2bin: make the function hex_to_bin constant-time + - hex2bin: fix access beyond string end + - riscv: patch_text: Fixup last cpu should be master + - x86/pci/xen: Disable PCI/MSI[-X] masking for XEN_HVM guests + - iocost: don't reset the inuse weight of under-weighted debtors + - virtio_net: fix wrong buf address calculation when using xdp + - cpufreq: qcom-hw: fix the race between LMH worker and cpuhp + - cpufreq: qcom-cpufreq-hw: Fix throttle frequency value on EPSS platforms + - video: fbdev: udlfb: properly check endpoint type + - arm64: dts: meson: remove CPU opps below 1GHz for G12B boards + - arm64: dts: meson: remove CPU opps below 1GHz for SM1 boards + - iio:imu:bmi160: disable regulator in error path + - mtd: rawnand: fix ecc parameters for mt7622 + - xsk: Fix l2fwd for copy mode + busy poll combo + - arm64: dts: imx8qm: Correct SCU clock controller's compatible property + - USB: Fix xhci event ring dequeue pointer ERDP update issue + - ARM: dts: imx6qdl-apalis: Fix sgtl5000 detection issue + - arm64: dts: imx8mn: Fix SAI nodes + - arm64: dts: meson-sm1-bananapi-m5: fix wrong GPIO pin labeling for CON1 + - phy: samsung: Fix missing of_node_put() in exynos_sata_phy_probe + - phy: samsung: exynos5250-sata: fix missing device put in probe error paths + - ARM: OMAP2+: Fix refcount leak in omap_gic_of_init + - bus: ti-sysc: Make omap3 gpt12 quirk handling SoC specific + - ARM: dts: dra7: Fix suspend warning for vpe powerdomain + - phy: ti: omap-usb2: Fix error handling in omap_usb2_enable_clocks + - ARM: dts: at91: Map MCLK for wm8731 on at91sam9g20ek + - ARM: dts: at91: sama5d4_xplained: fix pinctrl phandle name + - ARM: dts: at91: fix pinctrl phandles + - phy: mapphone-mdm6600: Fix PM error handling in phy_mdm6600_probe + - phy: ti: Add missing pm_runtime_disable() in serdes_am654_probe + - interconnect: qcom: sdx55: Drop IP0 interconnects + - ARM: dts: Fix mmc order for omap3-gta04 + - ARM: dts: am3517-evm: Fix misc pinmuxing + - ARM: dts: logicpd-som-lv: Fix wrong pinmuxing on OMAP35 + - ipvs: correctly print the memory size of ip_vs_conn_tab + - phy: amlogic: fix error path in phy_g12a_usb3_pcie_probe() + - pinctrl: mediatek: moore: Fix build error + - mtd: rawnand: Fix return value check of wait_for_completion_timeout + - mtd: fix 'part' field data corruption in mtd_info + - pinctrl: stm32: Do not call stm32_gpio_get() for edge triggered IRQs in EOI + - memory: renesas-rpc-if: Fix HF/OSPI data transfer in Manual Mode + - net: dsa: Add missing of_node_put() in dsa_port_link_register_of + - netfilter: nft_set_rbtree: overlap detection with element re-addition after + deletion + - bpf, lwt: Fix crash when using bpf_skb_set_tunnel_key() from bpf_xmit lwt + hook + - pinctrl: rockchip: fix RK3308 pinmux bits + - tcp: md5: incorrect tcp_header_len for incoming connections + - pinctrl: stm32: Keep pinctrl block clock enabled when LEVEL IRQ requested + - tcp: ensure to use the most recently sent skb when filling the rate sample + - wireguard: device: check for metadata_dst with skb_valid_dst() + - sctp: check asoc strreset_chunk in sctp_generate_reconf_event + - ARM: dts: imx6ull-colibri: fix vqmmc regulator + - arm64: dts: imx8mn-ddr4-evk: Describe the 32.768 kHz PMIC clock + - pinctrl: pistachio: fix use of irq_of_parse_and_map() + - cpufreq: fix memory leak in sun50i_cpufreq_nvmem_probe + - net: hns3: clear inited state and stop client after failed to register + netdev + - net: hns3: modify the return code of hclge_get_ring_chain_from_mbx + - net: hns3: add validity check for message data length + - net: hns3: add return value for mailbox handling in PF + - net/smc: sync err code when tcp connection was refused + - ip_gre: Make o_seqno start from 0 in native mode + - ip6_gre: Make o_seqno start from 0 in native mode + - ip_gre, ip6_gre: Fix race condition on o_seqno in collect_md mode + - tcp: fix potential xmit stalls caused by TCP_NOTSENT_LOWAT + - tcp: make sure treq->af_specific is initialized + - bus: sunxi-rsb: Fix the return value of sunxi_rsb_device_create() + - clk: sunxi: sun9i-mmc: check return value after calling + platform_get_resource() + - cpufreq: qcom-cpufreq-hw: Clear dcvs interrupts + - net: bcmgenet: hide status block before TX timestamping + - net: phy: marvell10g: fix return value on error + - net: dsa: mv88e6xxx: Fix port_hidden_wait to account for port_base_addr + - drm/sun4i: Remove obsolete references to PHYS_OFFSET + - net: dsa: lantiq_gswip: Don't set GSWIP_MII_CFG_RMII_CLK + - io_uring: check reserved fields for send/sendmsg + - io_uring: check reserved fields for recv/recvmsg + - netfilter: conntrack: fix udp offload timeout sysctl + - drm/amdkfd: Fix GWS queue count + - drm/amd/display: Fix memory leak in dcn21_clock_source_create + - tls: Skip tls_append_frag on zero copy size + - bnx2x: fix napi API usage sequence + - net: fec: add missing of_node_put() in fec_enet_init_stop_mode() + - gfs2: Prevent endless loops in gfs2_file_buffered_write + - gfs2: Minor retry logic cleanup + - gfs2: Make sure not to return short direct writes + - gfs2: No short reads or writes upon glock contention + - perf arm-spe: Fix addresses of synthesized SPE events + - ixgbe: ensure IPsec VF<->PF compatibility + - Revert "ibmvnic: Add ethtool private flag for driver-defined queue limits" + - tcp: fix F-RTO may not work correctly when receiving DSACK + - ASoC: Intel: soc-acpi: correct device endpoints for max98373 + - ASoC: wm8731: Disable the regulator when probing fails + - ext4: fix bug_on in start_this_handle during umount filesystem + - arch: xtensa: platforms: Fix deadlock in rs_close() + - ksmbd: increment reference count of parent fp + - ksmbd: set fixed sector size to FS_SECTOR_SIZE_INFORMATION + - bonding: do not discard lowest hash bit for non layer3+4 hashing + - x86: __memcpy_flushcache: fix wrong alignment if size > 2^32 + - cifs: destage any unwritten data to the server before calling + copychunk_write + - drivers: net: hippi: Fix deadlock in rr_close() + - powerpc/perf: Fix 32bit compile + - selftest/vm: verify mmap addr in mremap_test + - selftest/vm: verify remap destination address in mremap_test + - Revert "ACPI: processor: idle: fix lockup regression on 32-bit ThinkPad T40" + - zonefs: Fix management of open zones + - zonefs: Clear inode information flags on inode creation + - kasan: prevent cpu_quarantine corruption when CPU offline and cache shrink + occur at same time + - mtd: rawnand: qcom: fix memory corruption that causes panic + - netfilter: Update ip6_route_me_harder to consider L3 domain + - drm/i915: Check EDID for HDR static metadata when choosing blc + - drm/i915: Fix SEL_FETCH_PLANE_*(PIPE_B+) register addresses + - net: ethernet: stmmac: fix write to sgmii_adapter_base + - ACPI: processor: idle: Avoid falling back to C3 type C-states + - thermal: int340x: Fix attr.show callback prototype + - btrfs: fix leaked plug after failure syncing log on zoned filesystems + - ARM: dts: at91: sama7g5ek: enable pull-up on flexcom3 console lines + - ARM: dts: imx8mm-venice-gw{71xx,72xx,73xx}: fix OTG controller OC mode + - x86/cpu: Load microcode during restore_processor_state() + - perf symbol: Pass is_kallsyms to symbols__fixup_end() + - perf symbol: Update symbols__fixup_end() + - tty: n_gsm: fix restart handling via CLD command + - tty: n_gsm: fix decoupled mux resource + - tty: n_gsm: fix mux cleanup after unregister tty device + - tty: n_gsm: fix wrong signal octet encoding in convergence layer type 2 + - tty: n_gsm: fix malformed counter for out of frame data + - netfilter: nft_socket: only do sk lookups when indev is available + - tty: n_gsm: fix insufficient txframe size + - tty: n_gsm: fix wrong DLCI release order + - tty: n_gsm: fix missing explicit ldisc flush + - tty: n_gsm: fix wrong command retry handling + - tty: n_gsm: fix wrong command frame length field encoding + - tty: n_gsm: fix wrong signal octets encoding in MSC + - tty: n_gsm: fix missing tty wakeup in convergence layer type 2 + - tty: n_gsm: fix reset fifo race condition + - tty: n_gsm: fix incorrect UA handling + - tty: n_gsm: fix software flow control handling + - perf symbol: Remove arch__symbols__fixup_end() + - eeprom: at25: Use DMA safe buffers + - objtool: Fix code relocs vs weak symbols + - objtool: Fix type of reloc::addend + - powerpc/64: Add UADDR64 relocation support + - Linux 5.15.38 + * Jammy update: v5.15.37 upstream stable release (LP: #1976135) + - floppy: disable FDRAWCMD by default + - [Config] updateconfigs for BLK_DEV_FD_RAWCMD + - bpf: Introduce composable reg, ret and arg types. + - bpf: Replace ARG_XXX_OR_NULL with ARG_XXX | PTR_MAYBE_NULL + - bpf: Replace RET_XXX_OR_NULL with RET_XXX | PTR_MAYBE_NULL + - bpf: Replace PTR_TO_XXX_OR_NULL with PTR_TO_XXX | PTR_MAYBE_NULL + - bpf: Introduce MEM_RDONLY flag + - bpf: Convert PTR_TO_MEM_OR_NULL to composable types. + - bpf: Make per_cpu_ptr return rdonly PTR_TO_MEM. + - bpf: Add MEM_RDONLY for helper args that are pointers to rdonly mem. + - bpf/selftests: Test PTR_TO_RDONLY_MEM + - bpf: Fix crash due to out of bounds access into reg2btf_ids. + - spi: cadence-quadspi: fix write completion support + - ARM: dts: socfpga: change qspi to "intel,socfpga-qspi" + - mm: kfence: fix objcgs vector allocation + - gup: Turn fault_in_pages_{readable,writeable} into + fault_in_{readable,writeable} + - iov_iter: Turn iov_iter_fault_in_readable into fault_in_iov_iter_readable + - iov_iter: Introduce fault_in_iov_iter_writeable + - gfs2: Add wrapper for iomap_file_buffered_write + - gfs2: Clean up function may_grant + - gfs2: Introduce flag for glock holder auto-demotion + - gfs2: Move the inode glock locking to gfs2_file_buffered_write + - gfs2: Eliminate ip->i_gh + - gfs2: Fix mmap + page fault deadlocks for buffered I/O + - iomap: Fix iomap_dio_rw return value for user copies + - iomap: Support partial direct I/O on user copy failures + - iomap: Add done_before argument to iomap_dio_rw + - gup: Introduce FOLL_NOFAULT flag to disable page faults + - iov_iter: Introduce nofault flag to disable page faults + - gfs2: Fix mmap + page fault deadlocks for direct I/O + - btrfs: fix deadlock due to page faults during direct IO reads and writes + - btrfs: fallback to blocking mode when doing async dio over multiple extents + - mm: gup: make fault_in_safe_writeable() use fixup_user_fault() + - selftests/bpf: Add test for reg2btf_ids out of bounds access + - Linux 5.15.37 + * CVE-2022-1789 + - KVM: x86/mmu: fix NULL pointer dereference on guest INVPCID + * Jammy update: v5.15.36 upstream stable release (LP: #1972905) + - block: simplify the block device syncing code + - xfs: return errors in xfs_fs_sync_fs + - dma-mapping: remove bogus test for pfn_valid from dma_map_resource + - arm64/mm: drop HAVE_ARCH_PFN_VALID + - etherdevice: Adjust ether_addr* prototypes to silence -Wstringop-overead + - mm: page_alloc: fix building error on -Werror=array-compare + - perf tools: Fix segfault accessing sample_id xyarray + - mm, kfence: support kmem_dump_obj() for KFENCE objects + - gfs2: assign rgrp glock before compute_bitstructs + - scsi: ufs: core: scsi_get_lba() error fix + - ALSA: usb-audio: Clear MIDI port active flag after draining + - ALSA: hda/realtek: Add quirk for Clevo NP70PNP + - ASoC: atmel: Remove system clock tree configuration for at91sam9g20ek + - ASoC: topology: Correct error handling in soc_tplg_dapm_widget_create() + - ASoC: rk817: Use devm_clk_get() in rk817_platform_probe + - ASoC: msm8916-wcd-digital: Check failure for devm_snd_soc_register_component + - ASoC: codecs: wcd934x: do not switch off SIDO Buck when codec is in use + - dmaengine: idxd: fix device cleanup on disable + - dmaengine: imx-sdma: Fix error checking in sdma_event_remap + - dmaengine: mediatek:Fix PM usage reference leak of + mtk_uart_apdma_alloc_chan_resources + - dmaengine: dw-edma: Fix unaligned 64bit access + - spi: spi-mtk-nor: initialize spi controller after resume + - esp: limit skb_page_frag_refill use to a single page + - spi: cadence-quadspi: fix incorrect supports_op() return value + - igc: Fix infinite loop in release_swfw_sync + - igc: Fix BUG: scheduling while atomic + - igc: Fix suspending when PTM is active + - ALSA: hda/hdmi: fix warning about PCM count when used with SOF + - rxrpc: Restore removed timer deletion + - net/smc: Fix sock leak when release after smc_shutdown() + - net/packet: fix packet_sock xmit return value checking + - ip6_gre: Avoid updating tunnel->tun_hlen in __gre6_xmit() + - ip6_gre: Fix skb_under_panic in __gre6_xmit() + - net: restore alpha order to Ethernet devices in config + - net/sched: cls_u32: fix possible leak in u32_init_knode() + - l3mdev: l3mdev_master_upper_ifindex_by_index_rcu should be using + netdev_master_upper_dev_get_rcu + - ipv6: make ip6_rt_gc_expire an atomic_t + - can: isotp: stop timeout monitoring when no first frame was sent + - net: dsa: hellcreek: Calculate checksums in tagger + - net: mscc: ocelot: fix broken IP multicast flooding + - netlink: reset network and mac headers in netlink_dump() + - drm/i915/display/psr: Unset enable_psr2_sel_fetch if other checks in + intel_psr2_config_valid() fails + - net: stmmac: Use readl_poll_timeout_atomic() in atomic state + - dmaengine: idxd: add RO check for wq max_batch_size write + - dmaengine: idxd: add RO check for wq max_transfer_size write + - dmaengine: idxd: skip clearing device context when device is read-only + - selftests: mlxsw: vxlan_flooding: Prevent flooding of unwanted packets + - arm64: mm: fix p?d_leaf() + - ARM: vexpress/spc: Avoid negative array index when !SMP + - reset: renesas: Check return value of reset_control_deassert() + - reset: tegra-bpmp: Restore Handle errors in BPMP response + - platform/x86: samsung-laptop: Fix an unsigned comparison which can never be + negative + - ALSA: usb-audio: Fix undefined behavior due to shift overflowing the + constant + - drm/msm/disp: check the return value of kzalloc() + - arm64: dts: imx: Fix imx8*-var-som touchscreen property sizes + - vxlan: fix error return code in vxlan_fdb_append + - cifs: Check the IOCB_DIRECT flag, not O_DIRECT + - mt76: Fix undefined behavior due to shift overflowing the constant + - brcmfmac: sdio: Fix undefined behavior due to shift overflowing the constant + - dpaa_eth: Fix missing of_node_put in dpaa_get_ts_info() + - drm/msm/mdp5: check the return of kzalloc() + - net: macb: Restart tx only if queue pointer is lagging + - scsi: iscsi: Release endpoint ID when its freed + - scsi: iscsi: Merge suspend fields + - scsi: iscsi: Fix NOP handling during conn recovery + - scsi: qedi: Fix failed disconnect handling + - stat: fix inconsistency between struct stat and struct compat_stat + - VFS: filename_create(): fix incorrect intent. + - nvme: add a quirk to disable namespace identifiers + - nvme-pci: disable namespace identifiers for the MAXIO MAP1002/1202 + - nvme-pci: disable namespace identifiers for Qemu controllers + - EDAC/synopsys: Read the error count from the correct register + - mm/memory-failure.c: skip huge_zero_page in memory_failure() + - memcg: sync flush only if periodic flush is delayed + - mm, hugetlb: allow for "high" userspace addresses + - oom_kill.c: futex: delay the OOM reaper to allow time for proper futex + cleanup + - mm/mmu_notifier.c: fix race in mmu_interval_notifier_remove() + - ata: pata_marvell: Check the 'bmdma_addr' beforing reading + - dma: at_xdmac: fix a missing check on list iterator + - dmaengine: imx-sdma: fix init of uart scripts + - net: atlantic: invert deep par in pm functions, preventing null derefs + - Input: omap4-keypad - fix pm_runtime_get_sync() error checking + - scsi: sr: Do not leak information in ioctl + - sched/pelt: Fix attach_entity_load_avg() corner case + - perf/core: Fix perf_mmap fail when CONFIG_PERF_USE_VMALLOC enabled + - drm/panel/raspberrypi-touchscreen: Avoid NULL deref if not initialised + - drm/panel/raspberrypi-touchscreen: Initialise the bridge in prepare + - KVM: PPC: Fix TCE handling for VFIO + - drm/vc4: Use pm_runtime_resume_and_get to fix pm_runtime_get_sync() usage + - powerpc/perf: Fix power9 event alternatives + - powerpc/perf: Fix power10 event alternatives + - perf script: Always allow field 'data_src' for auxtrace + - perf report: Set PERF_SAMPLE_DATA_SRC bit for Arm SPE event + - xtensa: patch_text: Fixup last cpu should be master + - xtensa: fix a7 clobbering in coprocessor context load/store + - openvswitch: fix OOB access in reserve_sfa_size() + - ASoC: soc-dapm: fix two incorrect uses of list iterator + - e1000e: Fix possible overflow in LTR decoding + - ARC: entry: fix syscall_trace_exit argument + - arm_pmu: Validate single/group leader events + - KVM: x86/pmu: Update AMD PMC sample period to fix guest NMI-watchdog + - KVM: x86: Pend KVM_REQ_APICV_UPDATE during vCPU creation to fix a race + - KVM: nVMX: Defer APICv updates while L2 is active until L1 is active + - KVM: SVM: Flush when freeing encrypted pages even on SME_COHERENT CPUs + - netfilter: conntrack: convert to refcount_t api + - netfilter: conntrack: avoid useless indirection during conntrack destruction + - ext4: fix fallocate to use file_modified to update permissions consistently + - ext4: fix symlink file size not match to file content + - ext4: fix use-after-free in ext4_search_dir + - ext4, doc: fix incorrect h_reserved size + - ext4: fix overhead calculation to account for the reserved gdt blocks + - ext4: force overhead calculation if the s_overhead_cluster makes no sense + - netfilter: nft_ct: fix use after free when attaching zone template + - jbd2: fix a potential race while discarding reserved buffers after an abort + - spi: atmel-quadspi: Fix the buswidth adjustment between spi-mem and + controller + - block/compat_ioctl: fix range check in BLKGETSIZE + - arm64: dts: qcom: add IPA qcom,qmp property + - Linux 5.15.36 + * Aquantia GbE LAN driver causes UBSAN error during kernel boot + (LP: #1958770) // Jammy update: v5.15.36 upstream stable release + (LP: #1972905) + - net: atlantic: Avoid out-of-bounds indexing + * jammy/linux: 5.15.0-40.43 -proposed tracker (LP: #1978610) + * Packaging resync (LP: #1786013) + - debian/dkms-versions -- update from kernel-versions (main/2022.05.30) + * [SRU][OEM-5.14/OEM-5.17/J][PATCH 0/2] Fix system hangs after s2idle on AMD + A+A GPU (LP: #1975804) + - Revert "drm/amd/pm: keep the BACO feature enabled for suspend" + - drm/amd: Don't reset dGPUs if the system is going to s2idle + * [SRU][OEM-5.14/OEM-5.17/J][PATCH 0/1] Read the discovery registers for + AMD_SFH (LP: #1975798) + - HID: amd_sfh: Add support for sensor discovery + * [UBUNTU 20.04] CPU-MF: add extended counter set definitions for new IBM z16 + (LP: #1974433) + - s390/cpumf: add new extended counter set for IBM z16 + * [UBUNTU 20.04] KVM nesting support leaks too much memory, might result in + stalls during cleanup (LP: #1974017) + - KVM: s390: vsie/gmap: reduce gmap_rmap overhead + * [UBUNTU 20.04] Null Pointer issue in nfs code running Ubuntu on IBM Z + (LP: #1968096) + - NFS: Fix up nfs_ctx_key_to_expire() + * Fix REG_WAIT timeout for Yellow Carp (LP: #1971417) + - drm/amd/display: Clear encoder assignments when state cleared. + - drm/amd/display: fix stale info in link encoder assignment + - drm/amd/display: Query all entries in assignment table during updates. + - drm/amd/display: Initialise encoder assignment when initialising dc_state + * Enable hotspot feature for Realtek 8821CE (LP: #1969326) + - rtw88: Add update beacon flow for AP mode + - rtw88: 8821c: Enable TX report for management frames + - rtw88: do PHY calibration while starting AP + - rtw88: 8821c: fix debugfs rssi value + - rtw88: add ieee80211:sta_rc_update ops + * prevent kernel panic with overlayfs + shiftfs (LP: #1973620) + - SAUCE: overlayfs: prevent dereferencing struct file in ovl_vm_prfile_set() + * disable Intel DMA remapping by default (LP: #1971699) + - Revert "UBUNTU: [Config] enable Intel DMA remapping options by default" + * Mute/mic LEDs no function on Elitebook 630 (LP: #1974111) + - ALSA: hda/realtek: fix right sounds and mute/micmute LEDs for HP machine + * [Regression] Real-time Kernel Build Failure (LP: #1972899) + - x86/mm: Include spinlock_t definition in pgtable. + * build backport-iwlwifi-dkms as linux-modules-iwlwifi-ABI (LP: #1969434) + - [Packaging] support standalone dkms module builds + - [Packaging] drop do_ arch specific configs + * IPU6 camera has no function on Andrews MLK (LP: #1964983) + - SAUCE: IPU6: 2022-03-11 alpha release for Andrews MLK + - [Config] IPU6: enable OV02C10 sensor + - SAUCE: IPU6: 2022-04-01 Andrews MLK PV release + - SAUCE: spi: ljca: return when a sub-transaction first failed + - SACUE: ljca: disable parallelly stub write + - SAUCE: ljca: fix race condition issue in runtime PM + - SAUCE: i2c-ljca: fix a null pointer access issue on tgl + - SAUCE: ljca: fix a typo issue + - SAUCE: ljca: assume stub enum failed as a warning + - SAUCE: mei: cleanup header file including + - SAUCE: intel_ulpss: Replaced by LJCA and remove + - [Config] drop intel_ulpss in favor of by LJCA + * multiple UBSAN warnings in Intel IPU6 camera driver at boot (LP: #1958006) + - SAUCE: media: pci: intel: Avoid UBSAN warnings of index bound and shift + * Support Intel IPU6 MIPI camera on Alder Lake platforms (LP: #1955383) + - SAUCE: intel ipu drivers first release + - SAUCE: IPU driver release WW48 + - SAUCE: IPU driver release WW48 with MCU + - SAUCE: IPU driver release WW52 + - SAUCE: IPU driver release WW04 + - SAUCE: IPU driver release WW14 + - SAUCE: Fix ov01a1s output mirror issue + - SAUCE: integrate IPU6 builds + - [Config] updateconfigs for IPU6 driver + - SAUCE: Fix ov01a1s IQ issues + - SAUCE: intel/ipu6: Remove unnecessary video devices + - SAUCE: change power control driver to acpi driver + - SAUCE: IPU6 driver release for kernel 5.13 + - SAUCE: sensor HM11b1 brightness bugfix + - SAUCE: Fix build error on Kernel 5.13 + - SAUCE: IPU6 driver release for kernel 5.14 on 2021-11-01 + - [Config] IPU6: enable OV01A10 sensor + - SAUCE: Fix build error for kernel 5.15 + - SAUCE: intel visual sensing controller(VSC) driver first release + - [Config] ivsc: enable Intel VSC drivers + - SAUCE: ivsc: return error when device not ready + - SAUCE: ivsc: add soft dependencies for intel_vsc module + - SAUCE: ljca: switch wait event to uninterruptible + - SAUCE: mei-vsc: switch wait event to uninterruptible + - SAUCE: mei_vsc: add ACPI HID for ADL + - SAUCE: ljca: add multi ACPI HID support + - SAUCE: ivsc: add delay for acquire camera to wait firmware ready + - SAUCE: mei_vsc: distinguish platform with different camera sensor + - SAUCE: i2c-ljca: fix a potential issue + - SAUCE: ljca: disable autosuspend by default + - [Config] make Intel IPU6 modules amd64 only + - SAUCE: IPU6: drop unnecessary cflags manipulation + + -- Philip Cox Tue, 23 Aug 2022 16:49:25 -0400 + +linux-intel-iotg-5.15 (5.15.0-1010.14~20.04.1) focal; urgency=medium + + * re-apply missing overlayfs SAUCE patch (LP: #1967924) + - SAUCE: overlayfs: prevent dereferencing struct file in ovl_vm_prfile_set() + + [ Ubuntu: 5.15.0-1010.14 ] + + * CVE-2022-21123 // CVE-2022-21125 // CVE-2022-21166 + - Documentation: Add documentation for Processor MMIO Stale Data + - x86/speculation/mmio: Enumerate Processor MMIO Stale Data bug + - x86/speculation: Add a common function for MD_CLEAR mitigation update + - x86/speculation/mmio: Add mitigation for Processor MMIO Stale Data + - x86/bugs: Group MDS, TAA & Processor MMIO Stale Data mitigations + - x86/speculation/mmio: Enable CPU Fill buffer clearing on idle + - x86/speculation/mmio: Add sysfs reporting for Processor MMIO Stale Data + - x86/speculation/srbds: Update SRBDS mitigation selection + - x86/speculation/mmio: Reuse SRBDS mitigation for SBDS + - KVM: x86/speculation: Disable Fill buffer clear within guests + - x86/speculation/mmio: Print SMT warning + + -- Marcelo Henrique Cerri Tue, 14 Jun 2022 17:53:35 -0300 + +linux-intel-iotg-5.15 (5.15.0-1008.11~20.04.1) focal; urgency=medium + + [ Ubuntu: 5.15.0-1008.11 ] + + * netfilter newset OOB write (LP: #1976363) + - netfilter: nf_tables: sanitize nft_set_desc_concat_parse() + * CVE-2022-1966 + - netfilter: nf_tables: disallow non-stateful expression in sets earlier + + -- Thadeu Lima de Souza Cascardo Mon, 06 Jun 2022 15:23:21 -0300 + linux-intel-iotg-5.15 (5.15.0-1006.8~20.04.1) focal; urgency=medium * focal/linux-intel-iotg-5.15: 5.15.0-1006.8~20.04.1 -proposed tracker diff -u linux-intel-iotg-5.15-5.15.0/debian/control linux-intel-iotg-5.15-5.15.0/debian/control --- linux-intel-iotg-5.15-5.15.0/debian/control +++ linux-intel-iotg-5.15-5.15.0/debian/control @@ -18,6 +18,7 @@ libdw-dev , libpci-dev , pkg-config , + python3-dev , flex , bison , libunwind8-dev [amd64 arm64 armhf ppc64el] , @@ -59,7 +60,7 @@ XS-Testsuite: autopkgtest #XS-Testsuite-Depends: gcc-4.7 binutils -Package: linux-intel-iotg-5.15-headers-5.15.0-1006 +Package: linux-intel-iotg-5.15-headers-5.15.0-1015 Build-Profiles: Architecture: all Multi-Arch: foreign @@ -69,7 +70,7 @@ Description: Header files related to Linux kernel version 5.15.0 This package provides kernel header files for version 5.15.0, for sites that want the latest kernel headers. Please read - /usr/share/doc/linux-intel-iotg-5.15-headers-5.15.0-1006/debian.README.gz for details + /usr/share/doc/linux-intel-iotg-5.15-headers-5.15.0-1015/debian.README.gz for details Package: linux-intel-iotg-5.15-tools-common Build-Profiles: @@ -83,18 +84,18 @@ version locked tools (such as perf and x86_energy_perf_policy) for version 5.15.0. -Package: linux-intel-iotg-5.15-tools-5.15.0-1006 +Package: linux-intel-iotg-5.15-tools-5.15.0-1015 Build-Profiles: Architecture: amd64 Section: devel Priority: optional Depends: ${misc:Depends}, ${shlibs:Depends}, linux-tools-common -Description: Linux kernel version specific tools for version 5.15.0-1006 +Description: Linux kernel version specific tools for version 5.15.0-1015 This package provides the architecture dependant parts for kernel version locked tools (such as perf and x86_energy_perf_policy) for - version 5.15.0-1006 on + version 5.15.0-1015 on 64 bit x86. - You probably want to install linux-tools-5.15.0-1006-. + You probably want to install linux-tools-5.15.0-1015-. Package: linux-intel-iotg-5.15-cloud-tools-common Build-Profiles: @@ -107,17 +108,17 @@ This package provides the architecture independent parts for kernel version locked tools for cloud tools for version 5.15.0. -Package: linux-intel-iotg-5.15-cloud-tools-5.15.0-1006 +Package: linux-intel-iotg-5.15-cloud-tools-5.15.0-1015 Build-Profiles: Architecture: amd64 Section: devel Priority: optional Depends: ${misc:Depends}, ${shlibs:Depends}, linux-cloud-tools-common -Description: Linux kernel version specific cloud tools for version 5.15.0-1006 +Description: Linux kernel version specific cloud tools for version 5.15.0-1015 This package provides the architecture dependant parts for kernel - version locked tools for cloud tools for version 5.15.0-1006 on + version locked tools for cloud tools for version 5.15.0-1015 on 64 bit x86. - You probably want to install linux-cloud-tools-5.15.0-1006-. + You probably want to install linux-cloud-tools-5.15.0-1015-. Package: linux-intel-iotg-5.15-tools-host Build-Profiles: @@ -131,17 +132,17 @@ -Package: linux-image-unsigned-5.15.0-1006-intel-iotg +Package: linux-image-unsigned-5.15.0-1015-intel-iotg Build-Profiles: Architecture: amd64 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-5.15.0-1006-intel-iotg +Depends: ${misc:Depends}, ${shlibs:Depends}, kmod, linux-base (>= 4.5ubuntu1~16.04.1), linux-modules-5.15.0-1015-intel-iotg Recommends: grub-pc [amd64] | grub-efi-amd64 [amd64] | grub-efi-ia32 [amd64] | grub [amd64] | lilo [amd64], initramfs-tools | linux-initramfs-tool Breaks: flash-kernel (<< 3.90ubuntu2) [arm64 armhf], s390-tools (<< 2.3.0-0ubuntu3) [s390x] -Conflicts: linux-image-5.15.0-1006-intel-iotg -Suggests: fdutils, linux-doc | linux-intel-iotg-5.15-source-5.15.0, linux-intel-iotg-5.15-tools, linux-headers-5.15.0-1006-intel-iotg, linux-modules-extra-5.15.0-1006-intel-iotg +Conflicts: linux-image-5.15.0-1015-intel-iotg +Suggests: fdutils, linux-doc | linux-intel-iotg-5.15-source-5.15.0, linux-intel-iotg-5.15-tools, linux-headers-5.15.0-1015-intel-iotg, linux-modules-extra-5.15.0-1015-intel-iotg Description: Linux kernel image for version 5.15.0 on 64 bit x86 SMP This package contains the unsigned Linux kernel image for version 5.15.0 on 64 bit x86 SMP. @@ -154,12 +155,12 @@ the linux-intel-iotg meta-package, which will ensure that upgrades work correctly, and that supporting packages are also installed. -Package: linux-modules-5.15.0-1006-intel-iotg +Package: linux-modules-5.15.0-1015-intel-iotg Build-Profiles: Architecture: amd64 Section: kernel Priority: optional -Depends: ${misc:Depends}, ${shlibs:Depends}, linux-image-5.15.0-1006-intel-iotg | linux-image-unsigned-5.15.0-1006-intel-iotg +Depends: ${misc:Depends}, ${shlibs:Depends}, linux-image-5.15.0-1015-intel-iotg | linux-image-unsigned-5.15.0-1015-intel-iotg Built-Using: ${linux:BuiltUsing} Description: Linux kernel extra modules for version 5.15.0 on 64 bit x86 SMP Contains the corresponding System.map file, the modules built by the @@ -174,12 +175,12 @@ the linux-intel-iotg meta-package, which will ensure that upgrades work correctly, and that supporting packages are also installed. -Package: linux-modules-extra-5.15.0-1006-intel-iotg +Package: linux-modules-extra-5.15.0-1015-intel-iotg Build-Profiles: Architecture: amd64 Section: kernel Priority: optional -Depends: ${misc:Depends}, ${shlibs:Depends}, linux-image-5.15.0-1006-intel-iotg | linux-image-unsigned-5.15.0-1006-intel-iotg, crda | wireless-crda +Depends: ${misc:Depends}, ${shlibs:Depends}, linux-image-5.15.0-1015-intel-iotg | linux-image-unsigned-5.15.0-1015-intel-iotg, crda | wireless-crda Description: Linux kernel extra modules for version 5.15.0 on 64 bit x86 SMP This package contains the Linux kernel extra modules for version 5.15.0 on 64 bit x86 SMP. @@ -196,21 +197,21 @@ the linux-intel-iotg meta-package, which will ensure that upgrades work correctly, and that supporting packages are also installed. -Package: linux-headers-5.15.0-1006-intel-iotg +Package: linux-headers-5.15.0-1015-intel-iotg Build-Profiles: Architecture: amd64 Section: devel Priority: optional -Depends: ${misc:Depends}, linux-intel-iotg-5.15-headers-5.15.0-1006, ${shlibs:Depends} +Depends: ${misc:Depends}, linux-intel-iotg-5.15-headers-5.15.0-1015, ${shlibs:Depends} Provides: linux-headers, linux-headers-3.0 Description: Linux kernel headers for version 5.15.0 on 64 bit x86 SMP This package provides kernel header files for version 5.15.0 on 64 bit x86 SMP. . This is for sites that want the latest kernel headers. Please read - /usr/share/doc/linux-headers-5.15.0-1006/debian.README.gz for details. + /usr/share/doc/linux-headers-5.15.0-1015/debian.README.gz for details. -Package: linux-image-unsigned-5.15.0-1006-intel-iotg-dbgsym +Package: linux-image-unsigned-5.15.0-1015-intel-iotg-dbgsym Build-Profiles: Architecture: amd64 Section: devel @@ -227,31 +228,31 @@ is uncompressed, and unstripped. This package also includes the unstripped modules. -Package: linux-tools-5.15.0-1006-intel-iotg +Package: linux-tools-5.15.0-1015-intel-iotg Build-Profiles: Architecture: amd64 Section: devel Priority: optional -Depends: ${misc:Depends}, linux-intel-iotg-5.15-tools-5.15.0-1006 -Description: Linux kernel version specific tools for version 5.15.0-1006 +Depends: ${misc:Depends}, linux-intel-iotg-5.15-tools-5.15.0-1015 +Description: Linux kernel version specific tools for version 5.15.0-1015 This package provides the architecture dependant parts for kernel version locked tools (such as perf and x86_energy_perf_policy) for - version 5.15.0-1006 on + version 5.15.0-1015 on 64 bit x86. -Package: linux-cloud-tools-5.15.0-1006-intel-iotg +Package: linux-cloud-tools-5.15.0-1015-intel-iotg Build-Profiles: Architecture: amd64 Section: devel Priority: optional -Depends: ${misc:Depends}, linux-intel-iotg-5.15-cloud-tools-5.15.0-1006 -Description: Linux kernel version specific cloud tools for version 5.15.0-1006 +Depends: ${misc:Depends}, linux-intel-iotg-5.15-cloud-tools-5.15.0-1015 +Description: Linux kernel version specific cloud tools for version 5.15.0-1015 This package provides the architecture dependant parts for kernel - version locked tools for cloud for version 5.15.0-1006 on + version locked tools for cloud for version 5.15.0-1015 on 64 bit x86. -Package: linux-buildinfo-5.15.0-1006-intel-iotg +Package: linux-buildinfo-5.15.0-1015-intel-iotg Build-Profiles: Architecture: amd64 Section: kernel @@ -266,0 +268,19 @@ + +Package: linux-modules-iwlwifi-5.15.0-1015-intel-iotg +Build-Profiles: +Architecture: amd64 +Section: kernel +Priority: optional +Depends: + ${misc:Depends}, + linux-image-5.15.0-1015-intel-iotg | linux-image-unsigned-5.15.0-1015-intel-iotg, +Built-Using: ${linux:BuiltUsing} +Description: Linux kernel iwlwifi modules for version 5.15.0-1015 + This package provides the Linux kernel iwlwifi modules for version + 5.15.0-1015. + . + You likely do not want to install this package directly. Instead, install the + one of the linux-modules-iwlwifi-intel-iotg* meta-packages, + which will ensure that upgrades work correctly, and that supporting packages are + also installed. + diff -u linux-intel-iotg-5.15-5.15.0/debian/dkms-versions linux-intel-iotg-5.15-5.15.0/debian/dkms-versions --- linux-intel-iotg-5.15-5.15.0/debian/dkms-versions +++ linux-intel-iotg-5.15-5.15.0/debian/dkms-versions @@ -1,2 +1,3 @@ -v4l2loopback 0.12.5-1ubuntu5 -zfs-linux 2.1.2-1ubuntu3 +zfs-linux 2.1.4-0ubuntu0.1 modulename=zfs debpath=pool/universe/z/%package%/zfs-dkms_%version%_all.deb arch=amd64 arch=arm64 arch=ppc64el arch=s390x rprovides=spl-modules rprovides=spl-dkms rprovides=zfs-modules rprovides=zfs-dkms +backport-iwlwifi-dkms 9858-0ubuntu3 modulename=iwlwifi debpath=pool/universe/b/%package%/backport-iwlwifi-dkms_%version%_all.deb arch=amd64 rprovides=iwlwifi-modules rprovides=backport-iwlwifi-dkms type=standalone +v4l2loopback 0.12.5-1ubuntu5 modulename=v4l2loopback debpath=pool/universe/v/%package%/v4l2loopback-dkms_%version%_all.deb arch=amd64 rprovides=v4l2loopback-modules rprovides=v4l2loopback-dkms diff -u linux-intel-iotg-5.15-5.15.0/debian/rules linux-intel-iotg-5.15-5.15.0/debian/rules --- linux-intel-iotg-5.15-5.15.0/debian/rules +++ linux-intel-iotg-5.15-5.15.0/debian/rules @@ -40,10 +40,15 @@ do_tools_perf_jvmti?=false do_enforce_all?=false +# Default settings for DKMS modules. +$(foreach _m,$(all_dkms_modules), \ + $(eval do_$(_m) ?= $(if $(filter $(_m),$(filter-out $(dkms_exclude),$(dkms_include) $(subst any,$(_m),$(subst $(arch),$(_m),$(dkms_$(_m)_archs))))),true,false)) \ +) + # Don't build tools in a cross compile environment. ifneq ($(DEB_HOST_ARCH),$(DEB_BUILD_ARCH)) do_tools=false - do_zfs=false +$(foreach _m,$(all_dkms_modules),$(eval do_$(_m) = false)) endif # Are any of the kernel signing options enabled. @@ -74,8 +79,7 @@ # - disable dkms builds as the versions used may have been deleted ifneq ($(filter autopkgtest,$(DEB_BUILD_PROFILES)),) flavours := $(firstword $(flavours)) - do_zfs=false - do_v4l2loopback=false +$(foreach _m,$(all_dkms_modules),$(eval do_$(_m) = false)) endif # Being used to build a mainline build -- turn off things which do not work. @@ -83,7 +87,7 @@ do_extras_package=false do_tools=false no_dumpfile=1 - do_zfs=false +$(foreach _m,$(all_dkms_modules),$(eval do_$(_m) = false)) skipabi=true skipmodule=true skipretpoline=true @@ -97,13 +101,11 @@ do_tools_host= endif -ifeq ($(do_zfs),false) - do_zfs_disable:=$(shell for m in $$(cat $(DROOT)/zfs-modules.ignore); do grep -qxF $$m $(prev_abidir)/../modules.ignore 2>/dev/null || echo $$m >> $(prev_abidir)/../modules.ignore; done) -endif - -ifeq ($(do_v4l2loopback),false) - do_v4l2loopback_disable:=$(shell for m in $$(cat $(DROOT)/v4l2loopback-modules.ignore); do grep -qxF $$m $(prev_abidir)/../modules.ignore 2>/dev/null || echo $$m >> $(prev_abidir)/../modules.ignore; done) -endif +$(foreach _m,$(all_built-in_dkms_modules), \ + $(if $(filter true,$(do_$(_m))),, \ + $(eval do_$(_m)_disable := $$(shell for m in $$$$(cat $(DROOT)/$(_m)-modules.ignore); do grep -qxF $$$$m $(prev_abidir)/../modules.ignore 2>/dev/null || echo $$$$m >> $(prev_abidir)/../modules.ignore; done)) \ + ) \ +) ifeq ($(do_dkms_wireguard),false) do_wireguard_disable:=$(shell for m in $$(cat $(DROOT)/wireguard-modules.ignore); do grep -qxF $$m $(prev_abidir)/../modules.ignore 2>/dev/null || echo $$m >> $(prev_abidir)/../modules.ignore; done) @@ -112,10 +114,6 @@ # Either tools package needs the common source preparation do_any_tools=$(sort $(filter-out false,$(do_linux_tools) $(do_cloud_tools))) -# Versions of dkms packages. -dkms_zfs_linux_version=$(shell gawk '/^zfs-linux / { print $$2; }' debian/dkms-versions) -dkms_v4l2loopback_version=$(shell gawk '/^v4l2loopback / { print $$2; }' debian/dkms-versions) - # NVIDIA DKMS package gross series split into desktop and server. nvidia_desktop_series=$(shell sed -n -e 's/^nvidia-graphics-drivers-\([0-9][0-9]*\) .*/\1/p' debian/dkms-versions) nvidia_server_series=$(shell sed -n -e 's/^nvidia-graphics-drivers-\([0-9][0-9]*-server\) .*/\1/p' debian/dkms-versions) @@ -182,6 +180,7 @@ $(DEBIAN)/control.stub: \ $(DROOT)/scripts/control-create \ $(control_files) \ + $(DROOT)/control.d/flavour-module.stub \ $(DEBIAN)/changelog \ $(wildcard $(DEBIAN)/control.d/* $(DEBIAN)/sub-flavours/*.vars) for i in $(control_files); do \ diff -u linux-intel-iotg-5.15-5.15.0/debian/rules.d/0-common-vars.mk linux-intel-iotg-5.15-5.15.0/debian/rules.d/0-common-vars.mk --- linux-intel-iotg-5.15-5.15.0/debian/rules.d/0-common-vars.mk +++ linux-intel-iotg-5.15-5.15.0/debian/rules.d/0-common-vars.mk @@ -287,0 +288,47 @@ + +# DKMS +all_dkms_modules = + +subst_paired = $(subst $(firstword $(subst =, ,$(1))),$(lastword $(subst =, ,$(1))),$(2)) +recursive_call = $(if $(2),$(call recursive_call,$(1),$(wordlist 2,$(words $(2)),$(2)),$(call $(1),$(firstword $(2)),$(3))),$(3)) + +$(foreach _line,$(shell gawk '{ OFS = "!"; $$1 = $$1; print }' $(DROOT)/dkms-versions), \ + $(eval _params = $(subst !, ,$(_line))) \ + $(eval _deb_pkgname = $(firstword $(_params))) \ + $(eval _deb_version = $(word 2,$(_params))) \ + $(if $(filter modulename=%,$(_params)), \ + $(eval _m = $(word 2,$(subst =, ,$(filter modulename=%,$(_params))))) \ + , \ + $(info modulename for $(_deb_pkgname) not specified in dkms-versions. Assume $(_deb_pkgname).) \ + $(eval _m = $(_deb_pkgname)) \ + ) \ + $(eval all_dkms_modules += $(_m)) \ + $(eval dkms_$(_m)_version = $(_deb_version)) \ + $(foreach _p,$(patsubst debpath=%,%,$(filter debpath=%,$(_params))), \ + $(eval dkms_$(_m)_debpath += $(strip \ + $(call recursive_call,subst_paired, \ + %module%=$(_m) \ + %package%=$(_deb_pkgname) \ + %version%=$(lastword $(subst :, ,$(_deb_version))) \ + , \ + $(_p) \ + ) \ + )) \ + ) \ + $(if $(dkms_$(_m)_debpath),,$(error debpath for $(_deb_pkgname) not specified.)) \ + $(if $(filter arch=%,$(_params)), \ + $(eval dkms_$(_m)_archs = $(patsubst arch=%,%,$(filter arch=%,$(_params)))) \ + , \ + $(eval dkms_$(_m)_archs = any) \ + ) \ + $(eval dkms_$(_m)_rprovides = $(patsubst rprovides=%,%,$(filter rprovides=%,$(_params)))) \ + $(eval dkms_$(_m)_type = $(word 1,$(patsubst type=%,%,$(filter type=%,$(_params))) built-in)) \ + $(eval all_$(dkms_$(_m)_type)_dkms_modules += $(_m)) \ + $(if $(filter standalone,$(dkms_$(_m)_type)), \ + $(eval dkms_$(_m)_pkg_name = linux-modules-$(_m)-$(abi_release)) \ + $(eval dkms_$(_m)_subdir = ubuntu) \ + , \ + $(eval dkms_$(_m)_pkg_name = $(mods_pkg_name)) \ + $(eval dkms_$(_m)_subdir = kernel) \ + ) \ +) diff -u linux-intel-iotg-5.15-5.15.0/debian/rules.d/2-binary-arch.mk linux-intel-iotg-5.15-5.15.0/debian/rules.d/2-binary-arch.mk --- linux-intel-iotg-5.15-5.15.0/debian/rules.d/2-binary-arch.mk +++ linux-intel-iotg-5.15-5.15.0/debian/rules.d/2-binary-arch.mk @@ -117,8 +117,10 @@ $(stampdir)/stamp-install-%: MODPUBKEY=$(builddir)/build-$*/certs/signing_key.x509 $(stampdir)/stamp-install-%: build_dir=$(builddir)/build-$* $(stampdir)/stamp-install-%: dkms_dir=$(call dkms_dir_prefix,$(builddir)/build-$*) -$(stampdir)/stamp-install-%: enable_zfs = $(call custom_override,do_zfs,$*) -$(stampdir)/stamp-install-%: enable_v4l2loopback = $(call custom_override,do_v4l2loopback,$*) +$(foreach _m,$(all_dkms_modules), \ + $(eval $$(stampdir)/stamp-install-%: enable_$(_m) = $$(filter true,$$(call custom_override,do_$(_m),$$*))) \ + $(eval $$(stampdir)/stamp-install-%: dkms_$(_m)_pkgdir = $$(CURDIR)/debian/$(dkms_$(_m)_pkg_name)-$$*) \ +) $(stampdir)/stamp-install-%: dbgpkgdir_dkms = $(if $(filter true,$(skipdbg)),"",$(dbgpkgdir)/usr/lib/debug/lib/modules/$(abi_release)-$*/kernel) $(stampdir)/stamp-install-%: $(stampdir)/stamp-build-% $(stampdir)/stamp-install-headers @echo Debug: $@ kernel_file $(kernel_file) kernfile $(kernfile) install_file $(install_file) instfile $(instfile) @@ -126,6 +128,9 @@ dh_prep -p$(bin_pkg_name)-$* dh_prep -p$(mods_pkg_name)-$* dh_prep -p$(hdrs_pkg_name)-$* + $(foreach _m,$(all_standalone_dkms_modules), \ + $(if $(enable_$(_m)),dh_prep -p$(dkms_$(_m)_pkg_name)-$*;)\ + ) ifneq ($(skipdbg),true) dh_prep -p$(bin_pkg_name)-$*-dbgsym endif @@ -263,6 +268,12 @@ $(call install_control,$(mods_extra_pkg_name)-$*,extra,postinst postrm); \ fi endif + $(foreach _m,$(all_standalone_dkms_modules), \ + $(if $(enable_$(_m)), \ + install -d $(dkms_$(_m)_pkgdir)/usr/lib/linux/triggers; \ + $(call install_control,$(dkms_$(_m)_pkg_name)-$*,extra,postinst postrm); \ + ) \ + ) # Install the full changelog. ifeq ($(do_doc_package),true) @@ -412,8 +423,11 @@ install -d $(dkms_dir) $(dkms_dir)/headers $(dkms_dir)/build $(dkms_dir)/source cp -rp "$(hdrdir)" "$(indep_hdrdir)" "$(dkms_dir)/headers" - $(if $(filter true,$(enable_zfs)),$(call build_dkms, $(mods_pkg_name)-$*, $(pkgdir)/lib/modules/$(abi_release)-$*/kernel, $(dbgpkgdir_dkms), zfs, pool/universe/z/zfs-linux/zfs-dkms_$(dkms_zfs_linux_version)_all.deb)) - $(if $(filter true,$(enable_v4l2loopback)),$(call build_dkms, $(mods_pkg_name)-$*, $(pkgdir)/lib/modules/$(abi_release)-$*/kernel, $(dbgpkgdir_dkms), v4l2loopback, pool/universe/v/v4l2loopback/v4l2loopback-dkms_$(dkms_v4l2loopback_version)_all.deb)) + $(foreach _m,$(all_dkms_modules), \ + $(if $(enable_$(_m)), \ + $(call build_dkms,$(dkms_$(_m)_pkg_name)-$*,$(dkms_$(_m)_pkgdir)/lib/modules/$(abi_release)-$*/$(dkms_$(_m)_subdir),$(dbgpkgdir_dkms),$(_m),$(dkms_$(_m)_debpath)); \ + ) \ + ) ifneq ($(skipdbg),true) @@ -563,7 +577,7 @@ dh_shlibdeps -p$(1) $(shlibdeps_opts) dh_installdeb -p$(1) dh_installdebconf -p$(1) - $(lockme) dh_gencontrol -p$(1) -- -Vlinux:rprovides='$(rprovides)' + $(lockme) dh_gencontrol -p$(1) -- -Vlinux:rprovides='$(rprovides)' $(2) dh_md5sums -p$(1) dh_builddeb -p$(1) endef @@ -572,7 +586,7 @@ endef define dh_all_inline - $(subst ${newline},; \${newline},$(call dh_all,$(1))) + $(subst ${newline},; \${newline},$(call dh_all,$(1),$(2))) endef binary-arch-headers: install-arch-headers @@ -597,8 +611,10 @@ binary-%: dbgpkgdir = $(CURDIR)/debian/$(bin_pkg_name)-$*-dbgsym binary-%: pkgtools = $(tools_flavour_pkg_name)-$* binary-%: pkgcloud = $(cloud_flavour_pkg_name)-$* -binary-%: rprovides = $(if $(filter true,$(call custom_override,do_zfs,$*)),spl-modules$(comma) spl-dkms$(comma) zfs-modules$(comma) zfs-dkms$(comma)) \ - $(if $(filter true,$(call custom_override,do_v4l2loopback,$*)),v4l2loopback-modules$(comma) v4l2loopback-dkms$(comma)) +$(foreach _m,$(all_dkms_modules), \ + $(eval binary-%: enable_$(_m) = $$(filter true,$$(call custom_override,do_$(_m),$$*))) \ +) +binary-%: rprovides = $(foreach _m,$(all_built-in_dkms_modules),$(if $(enable_$(_m)),$(foreach _r,$(dkms_$(_m)_rprovides),$(_r)$(comma) ))) binary-%: target_flavour = $* binary-%: checks-% @echo Debug: $@ @@ -623,6 +639,10 @@ endif endif + $(foreach _m,$(all_standalone_dkms_modules), \ + $(if $(enable_$(_m)),$(call dh_all,$(dkms_$(_m)_pkg_name)-$*);)\ + ) + $(call dh_all,$(pkgbldinfo)) $(call dh_all,$(pkghdr)) diff -u linux-intel-iotg-5.15-5.15.0/debian/scripts/control-create linux-intel-iotg-5.15-5.15.0/debian/scripts/control-create --- linux-intel-iotg-5.15-5.15.0/debian/scripts/control-create +++ linux-intel-iotg-5.15-5.15.0/debian/scripts/control-create @@ -40,0 +41,27 @@ + +while read package version extras +do + module="$package" + module_type= + + # Module arch parameters are skipped here, so a package section will + # be generated for each flavour, and its Architecture will be set to + # all architectures with that flavour. Even that is being generated, + # it doesn't follow all of them will be built. That's to work-around + # dkms_exclude/dkms_include that manipulates supported architectures + # in $(DEBIAN)/rules.d/$(arch).mk. + for param in $extras; do + case "$param" in + modulename=*) module="${param#modulename=}" ;; + type=*) module_type="${param#type=}" ;; + *) continue ;; + esac + done + + [ "$module_type" = "standalone" ] || continue + + cat debian/control.d/flavour-module.stub | grep -v '^#' | sed \ + -e "s#ARCH#$arch#g" \ + -e "s#MODULE#$module#g" \ + -e "s#FLAVOUR#$flavour#g" +done <"debian/dkms-versions" diff -u linux-intel-iotg-5.15-5.15.0/drivers/acpi/cppc_acpi.c linux-intel-iotg-5.15-5.15.0/drivers/acpi/cppc_acpi.c --- linux-intel-iotg-5.15-5.15.0/drivers/acpi/cppc_acpi.c +++ linux-intel-iotg-5.15-5.15.0/drivers/acpi/cppc_acpi.c @@ -100,6 +100,16 @@ (cpc)->cpc_entry.reg.space_id == \ ACPI_ADR_SPACE_PLATFORM_COMM) +/* Check if a CPC register is in SystemMemory */ +#define CPC_IN_SYSTEM_MEMORY(cpc) ((cpc)->type == ACPI_TYPE_BUFFER && \ + (cpc)->cpc_entry.reg.space_id == \ + ACPI_ADR_SPACE_SYSTEM_MEMORY) + +/* Check if a CPC register is in SystemIo */ +#define CPC_IN_SYSTEM_IO(cpc) ((cpc)->type == ACPI_TYPE_BUFFER && \ + (cpc)->cpc_entry.reg.space_id == \ + ACPI_ADR_SPACE_SYSTEM_IO) + /* Evaluates to True if reg is a NULL register descriptor */ #define IS_NULL_REG(reg) ((reg)->space_id == ACPI_ADR_SPACE_SYSTEM_MEMORY && \ (reg)->address == 0 && \ @@ -1469,6 +1479,9 @@ * transition latency for performance change requests. The closest we have * is the timing information from the PCCT tables which provides the info * on the number and frequency of PCC commands the platform can handle. + * + * If desired_reg is in the SystemMemory or SystemIo ACPI address space, + * then assume there is no latency. */ unsigned int cppc_get_transition_latency(int cpu_num) { @@ -1494,7 +1507,9 @@ return CPUFREQ_ETERNAL; desired_reg = &cpc_desc->cpc_regs[DESIRED_PERF]; - if (!CPC_IN_PCC(desired_reg)) + if (CPC_IN_SYSTEM_MEMORY(desired_reg) || CPC_IN_SYSTEM_IO(desired_reg)) + return 0; + else if (!CPC_IN_PCC(desired_reg)) return CPUFREQ_ETERNAL; if (pcc_ss_id < 0) diff -u linux-intel-iotg-5.15-5.15.0/drivers/acpi/processor_idle.c linux-intel-iotg-5.15-5.15.0/drivers/acpi/processor_idle.c --- linux-intel-iotg-5.15-5.15.0/drivers/acpi/processor_idle.c +++ linux-intel-iotg-5.15-5.15.0/drivers/acpi/processor_idle.c @@ -95,11 +95,6 @@ DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK Computer Inc."), DMI_MATCH(DMI_PRODUCT_NAME,"L8400B series Notebook PC")}, (void *)1}, - /* T40 can not handle C3 idle state */ - { set_max_cstate, "IBM ThinkPad T40", { - DMI_MATCH(DMI_SYS_VENDOR, "IBM"), - DMI_MATCH(DMI_PRODUCT_NAME, "23737CU")}, - (void *)2}, {}, }; @@ -797,7 +792,8 @@ if (cx->type == ACPI_STATE_C1 || cx->type == ACPI_STATE_C2 || cx->type == ACPI_STATE_C3) { state->enter_dead = acpi_idle_play_dead; - drv->safe_state_index = count; + if (cx->type != ACPI_STATE_C3) + drv->safe_state_index = count; } /* * Halt-induced C1 is not good for ->enter_s2idle, because it diff -u linux-intel-iotg-5.15-5.15.0/drivers/acpi/property.c linux-intel-iotg-5.15-5.15.0/drivers/acpi/property.c --- linux-intel-iotg-5.15-5.15.0/drivers/acpi/property.c +++ linux-intel-iotg-5.15-5.15.0/drivers/acpi/property.c @@ -433,6 +433,16 @@ acpi_extract_apple_properties(adev); } +static void acpi_free_device_properties(struct list_head *list) +{ + struct acpi_device_properties *props, *tmp; + + list_for_each_entry_safe(props, tmp, list, list) { + list_del(&props->list); + kfree(props); + } +} + static void acpi_destroy_nondev_subnodes(struct list_head *list) { struct acpi_data_node *dn, *next; @@ -445,22 +455,18 @@ wait_for_completion(&dn->kobj_done); list_del(&dn->sibling); ACPI_FREE((void *)dn->data.pointer); + acpi_free_device_properties(&dn->data.properties); kfree(dn); } } void acpi_free_properties(struct acpi_device *adev) { - struct acpi_device_properties *props, *tmp; - acpi_destroy_nondev_subnodes(&adev->data.subnodes); ACPI_FREE((void *)adev->data.pointer); adev->data.of_compatible = NULL; adev->data.pointer = NULL; - list_for_each_entry_safe(props, tmp, &adev->data.properties, list) { - list_del(&props->list); - kfree(props); - } + acpi_free_device_properties(&adev->data.properties); } /** diff -u linux-intel-iotg-5.15-5.15.0/drivers/acpi/sleep.c linux-intel-iotg-5.15-5.15.0/drivers/acpi/sleep.c --- linux-intel-iotg-5.15-5.15.0/drivers/acpi/sleep.c +++ linux-intel-iotg-5.15-5.15.0/drivers/acpi/sleep.c @@ -374,6 +374,18 @@ DMI_MATCH(DMI_PRODUCT_NAME, "20GGA00L00"), }, }, + /* + * ASUS B1400CEAE hangs on resume from suspend (see + * https://bugzilla.kernel.org/show_bug.cgi?id=215742). + */ + { + .callback = init_default_s3, + .ident = "ASUS B1400CEAE", + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."), + DMI_MATCH(DMI_PRODUCT_NAME, "ASUS EXPERTBOOK B1400CEAE"), + }, + }, {}, }; diff -u linux-intel-iotg-5.15-5.15.0/drivers/base/firmware_loader/main.c linux-intel-iotg-5.15-5.15.0/drivers/base/firmware_loader/main.c --- linux-intel-iotg-5.15-5.15.0/drivers/base/firmware_loader/main.c +++ linux-intel-iotg-5.15-5.15.0/drivers/base/firmware_loader/main.c @@ -795,6 +795,8 @@ size_t offset, u32 opt_flags) { struct firmware *fw = NULL; + struct cred *kern_cred = NULL; + const struct cred *old_cred; bool nondirect = false; int ret; @@ -811,6 +813,18 @@ if (ret <= 0) /* error or already assigned */ goto out; + /* + * We are about to try to access the firmware file. Because we may have been + * called by a driver when serving an unrelated request from userland, we use + * the kernel credentials to read the file. + */ + kern_cred = prepare_kernel_cred(NULL); + if (!kern_cred) { + ret = -ENOMEM; + goto out; + } + old_cred = override_creds(kern_cred); + ret = fw_get_filesystem_firmware(device, fw->priv, "", NULL); /* Only full reads can support decompression, platform, and sysfs. */ @@ -836,6 +850,9 @@ } else ret = assign_fw(fw, device); + revert_creds(old_cred); + put_cred(kern_cred); + out: if (ret < 0) { fw_abort_batch_reqs(fw); diff -u linux-intel-iotg-5.15-5.15.0/drivers/base/memory.c linux-intel-iotg-5.15-5.15.0/drivers/base/memory.c --- linux-intel-iotg-5.15-5.15.0/drivers/base/memory.c +++ linux-intel-iotg-5.15-5.15.0/drivers/base/memory.c @@ -634,10 +634,9 @@ } ret = xa_err(xa_store(&memory_blocks, memory->dev.id, memory, GFP_KERNEL)); - if (ret) { - put_device(&memory->dev); + if (ret) device_unregister(&memory->dev); - } + return ret; } diff -u linux-intel-iotg-5.15-5.15.0/drivers/base/power/domain.c linux-intel-iotg-5.15-5.15.0/drivers/base/power/domain.c --- linux-intel-iotg-5.15-5.15.0/drivers/base/power/domain.c +++ linux-intel-iotg-5.15-5.15.0/drivers/base/power/domain.c @@ -1978,6 +1978,7 @@ genpd->device_count = 0; genpd->max_off_time_ns = -1; genpd->max_off_time_changed = true; + genpd->next_wakeup = KTIME_MAX; genpd->provider = NULL; genpd->has_provider = false; genpd->accounting_time = ktime_get(); diff -u linux-intel-iotg-5.15-5.15.0/drivers/base/property.c linux-intel-iotg-5.15-5.15.0/drivers/base/property.c --- linux-intel-iotg-5.15-5.15.0/drivers/base/property.c +++ linux-intel-iotg-5.15-5.15.0/drivers/base/property.c @@ -48,12 +48,14 @@ { bool ret; + if (IS_ERR_OR_NULL(fwnode)) + return false; + ret = fwnode_call_bool_op(fwnode, property_present, propname); - if (ret == false && !IS_ERR_OR_NULL(fwnode) && - !IS_ERR_OR_NULL(fwnode->secondary)) - ret = fwnode_call_bool_op(fwnode->secondary, property_present, - propname); - return ret; + if (ret) + return ret; + + return fwnode_call_bool_op(fwnode->secondary, property_present, propname); } EXPORT_SYMBOL_GPL(fwnode_property_present); @@ -233,15 +235,16 @@ { int ret; + if (IS_ERR_OR_NULL(fwnode)) + return -EINVAL; + ret = fwnode_call_int_op(fwnode, property_read_int_array, propname, elem_size, val, nval); - if (ret == -EINVAL && !IS_ERR_OR_NULL(fwnode) && - !IS_ERR_OR_NULL(fwnode->secondary)) - ret = fwnode_call_int_op( - fwnode->secondary, property_read_int_array, propname, - elem_size, val, nval); + if (ret != -EINVAL) + return ret; - return ret; + return fwnode_call_int_op(fwnode->secondary, property_read_int_array, propname, + elem_size, val, nval); } /** @@ -372,14 +375,16 @@ { int ret; + if (IS_ERR_OR_NULL(fwnode)) + return -EINVAL; + ret = fwnode_call_int_op(fwnode, property_read_string_array, propname, val, nval); - if (ret == -EINVAL && !IS_ERR_OR_NULL(fwnode) && - !IS_ERR_OR_NULL(fwnode->secondary)) - ret = fwnode_call_int_op(fwnode->secondary, - property_read_string_array, propname, - val, nval); - return ret; + if (ret != -EINVAL) + return ret; + + return fwnode_call_int_op(fwnode->secondary, property_read_string_array, propname, + val, nval); } EXPORT_SYMBOL_GPL(fwnode_property_read_string_array); @@ -479,7 +484,20 @@ unsigned int nargs, unsigned int index, struct fwnode_reference_args *args) { - return fwnode_call_int_op(fwnode, get_reference_args, prop, nargs_prop, + int ret; + + if (IS_ERR_OR_NULL(fwnode)) + return -ENOENT; + + ret = fwnode_call_int_op(fwnode, get_reference_args, prop, nargs_prop, + nargs, index, args); + if (ret == 0) + return ret; + + if (IS_ERR_OR_NULL(fwnode->secondary)) + return ret; + + return fwnode_call_int_op(fwnode->secondary, get_reference_args, prop, nargs_prop, nargs, index, args); } EXPORT_SYMBOL_GPL(fwnode_property_get_reference_args); @@ -675,12 +693,13 @@ struct fwnode_handle *fwnode_get_nth_parent(struct fwnode_handle *fwnode, unsigned int depth) { - unsigned int i; - fwnode_handle_get(fwnode); - for (i = 0; i < depth && fwnode; i++) + do { + if (depth-- == 0) + break; fwnode = fwnode_get_next_parent(fwnode); + } while (fwnode); return fwnode; } @@ -699,17 +718,17 @@ bool fwnode_is_ancestor_of(struct fwnode_handle *test_ancestor, struct fwnode_handle *test_child) { - if (!test_ancestor) + if (IS_ERR_OR_NULL(test_ancestor)) return false; fwnode_handle_get(test_child); - while (test_child) { + do { if (test_child == test_ancestor) { fwnode_handle_put(test_child); return true; } test_child = fwnode_get_next_parent(test_child); - } + } while (test_child); return false; } @@ -738,7 +757,7 @@ { struct fwnode_handle *next_child = child; - if (!fwnode) + if (IS_ERR_OR_NULL(fwnode)) return NULL; do { @@ -762,16 +781,16 @@ const struct fwnode_handle *fwnode = dev_fwnode(dev); struct fwnode_handle *next; + if (IS_ERR_OR_NULL(fwnode)) + return NULL; + /* Try to find a child in primary fwnode */ next = fwnode_get_next_child_node(fwnode, child); if (next) return next; /* When no more children in primary, continue with secondary */ - if (fwnode && !IS_ERR_OR_NULL(fwnode->secondary)) - next = fwnode_get_next_child_node(fwnode->secondary, child); - - return next; + return fwnode_get_next_child_node(fwnode->secondary, child); } EXPORT_SYMBOL_GPL(device_get_next_child_node); @@ -838,6 +857,9 @@ */ bool fwnode_device_is_available(const struct fwnode_handle *fwnode) { + if (IS_ERR_OR_NULL(fwnode)) + return false; + if (!fwnode_has_op(fwnode, device_is_available)) return true; @@ -1045,14 +1067,14 @@ parent = fwnode_graph_get_port_parent(prev); else parent = fwnode; + if (IS_ERR_OR_NULL(parent)) + return NULL; ep = fwnode_call_ptr_op(parent, graph_get_next_endpoint, prev); + if (ep) + return ep; - if (IS_ERR_OR_NULL(ep) && - !IS_ERR_OR_NULL(parent) && !IS_ERR_OR_NULL(parent->secondary)) - ep = fwnode_graph_get_next_endpoint(parent->secondary, NULL); - - return ep; + return fwnode_graph_get_next_endpoint(parent->secondary, NULL); } EXPORT_SYMBOL_GPL(fwnode_graph_get_next_endpoint); diff -u linux-intel-iotg-5.15-5.15.0/drivers/block/drbd/drbd_main.c linux-intel-iotg-5.15-5.15.0/drivers/block/drbd/drbd_main.c --- linux-intel-iotg-5.15-5.15.0/drivers/block/drbd/drbd_main.c +++ linux-intel-iotg-5.15-5.15.0/drivers/block/drbd/drbd_main.c @@ -171,7 +171,7 @@ unsigned int set_size) { struct drbd_request *r; - struct drbd_request *req = NULL; + struct drbd_request *req = NULL, *tmp = NULL; int expect_epoch = 0; int expect_size = 0; @@ -225,8 +225,11 @@ * to catch requests being barrier-acked "unexpectedly". * It usually should find the same req again, or some READ preceding it. */ list_for_each_entry(req, &connection->transfer_log, tl_requests) - if (req->epoch == expect_epoch) + if (req->epoch == expect_epoch) { + tmp = req; break; + } + req = list_prepare_entry(tmp, &connection->transfer_log, tl_requests); list_for_each_entry_safe_from(req, r, &connection->transfer_log, tl_requests) { if (req->epoch != expect_epoch) break; @@ -3604,9 +3607,8 @@ * when we want to support more than * one PRO_VERSION */ static const char *cmdnames[] = { + [P_DATA] = "Data", - [P_WSAME] = "WriteSame", - [P_TRIM] = "Trim", [P_DATA_REPLY] = "DataReply", [P_RS_DATA_REPLY] = "RSDataReply", [P_BARRIER] = "Barrier", @@ -3617,7 +3619,6 @@ [P_DATA_REQUEST] = "DataRequest", [P_RS_DATA_REQUEST] = "RSDataRequest", [P_SYNC_PARAM] = "SyncParam", - [P_SYNC_PARAM89] = "SyncParam89", [P_PROTOCOL] = "ReportProtocol", [P_UUIDS] = "ReportUUIDs", [P_SIZES] = "ReportSizes", @@ -3625,6 +3626,7 @@ [P_SYNC_UUID] = "ReportSyncUUID", [P_AUTH_CHALLENGE] = "AuthChallenge", [P_AUTH_RESPONSE] = "AuthResponse", + [P_STATE_CHG_REQ] = "StateChgRequest", [P_PING] = "Ping", [P_PING_ACK] = "PingAck", [P_RECV_ACK] = "RecvAck", @@ -3635,23 +3637,25 @@ [P_NEG_DREPLY] = "NegDReply", [P_NEG_RS_DREPLY] = "NegRSDReply", [P_BARRIER_ACK] = "BarrierAck", - [P_STATE_CHG_REQ] = "StateChgRequest", [P_STATE_CHG_REPLY] = "StateChgReply", [P_OV_REQUEST] = "OVRequest", [P_OV_REPLY] = "OVReply", [P_OV_RESULT] = "OVResult", [P_CSUM_RS_REQUEST] = "CsumRSRequest", [P_RS_IS_IN_SYNC] = "CsumRSIsInSync", + [P_SYNC_PARAM89] = "SyncParam89", [P_COMPRESSED_BITMAP] = "CBitmap", [P_DELAY_PROBE] = "DelayProbe", [P_OUT_OF_SYNC] = "OutOfSync", - [P_RETRY_WRITE] = "RetryWrite", [P_RS_CANCEL] = "RSCancel", [P_CONN_ST_CHG_REQ] = "conn_st_chg_req", [P_CONN_ST_CHG_REPLY] = "conn_st_chg_reply", [P_PROTOCOL_UPDATE] = "protocol_update", + [P_TRIM] = "Trim", [P_RS_THIN_REQ] = "rs_thin_req", [P_RS_DEALLOCATED] = "rs_deallocated", + [P_WSAME] = "WriteSame", + [P_ZEROES] = "Zeroes", /* enum drbd_packet, but not commands - obsoleted flags: * P_MAY_IGNORE diff -u linux-intel-iotg-5.15-5.15.0/drivers/block/floppy.c linux-intel-iotg-5.15-5.15.0/drivers/block/floppy.c --- linux-intel-iotg-5.15-5.15.0/drivers/block/floppy.c +++ linux-intel-iotg-5.15-5.15.0/drivers/block/floppy.c @@ -509,8 +509,8 @@ static DECLARE_WAIT_QUEUE_HEAD(fdc_wait); static DECLARE_WAIT_QUEUE_HEAD(command_done); -/* Errors during formatting are counted here. */ -static int format_errors; +/* errors encountered on the current (or last) request */ +static int floppy_errors; /* Format request descriptor. */ static struct format_descr format_req; @@ -530,7 +530,6 @@ static char *floppy_track_buffer; static int max_buffer_sectors; -static int *errors; typedef void (*done_f)(int); static const struct cont_t { void (*interrupt)(void); @@ -1455,7 +1454,7 @@ if (drive_params[current_drive].flags & FTD_MSG) DPRINT("Over/Underrun - retrying\n"); bad = 0; - } else if (*errors >= drive_params[current_drive].max_errors.reporting) { + } else if (floppy_errors >= drive_params[current_drive].max_errors.reporting) { print_errors(); } if (reply_buffer[ST2] & ST2_WC || reply_buffer[ST2] & ST2_BC) @@ -2095,7 +2094,7 @@ if (!next_valid_format(current_drive)) return; } - err_count = ++(*errors); + err_count = ++floppy_errors; INFBOUND(write_errors[current_drive].badness, err_count); if (err_count > drive_params[current_drive].max_errors.abort) cont->done(0); @@ -2241,9 +2240,8 @@ return -EINVAL; } format_req = *tmp_format_req; - format_errors = 0; cont = &format_cont; - errors = &format_errors; + floppy_errors = 0; ret = wait_til_done(redo_format, true); if (ret == -EINTR) return -EINTR; @@ -2761,10 +2759,11 @@ current_req = list_first_entry_or_null(&floppy_reqs, struct request, queuelist); if (current_req) { - current_req->error_count = 0; + floppy_errors = 0; list_del_init(¤t_req->queuelist); + return 1; } - return current_req != NULL; + return 0; } /* Starts or continues processing request. Will automatically unlock the @@ -2823,7 +2822,6 @@ _floppy = floppy_type + drive_params[current_drive].autodetect[drive_state[current_drive].probed_format]; } else probing = 0; - errors = &(current_req->error_count); tmp = make_raw_rw_request(); if (tmp < 2) { request_done(tmp); @@ -2984,6 +2982,8 @@ return "(null)"; } +#ifdef CONFIG_BLK_DEV_FD_RAWCMD + /* raw commands */ static void raw_cmd_done(int flag) { @@ -3183,6 +3183,35 @@ return ret; } +static int floppy_raw_cmd_ioctl(int type, int drive, int cmd, + void __user *param) +{ + int ret; + + pr_warn_once("Note: FDRAWCMD is deprecated and will be removed from the kernel in the near future.\n"); + + if (type) + return -EINVAL; + if (lock_fdc(drive)) + return -EINTR; + set_floppy(drive); + ret = raw_cmd_ioctl(cmd, param); + if (ret == -EINTR) + return -EINTR; + process_fd_request(); + return ret; +} + +#else /* CONFIG_BLK_DEV_FD_RAWCMD */ + +static int floppy_raw_cmd_ioctl(int type, int drive, int cmd, + void __user *param) +{ + return -EOPNOTSUPP; +} + +#endif + static int invalidate_drive(struct block_device *bdev) { /* invalidate the buffer track to force a reread */ @@ -3371,7 +3400,6 @@ { int drive = (long)bdev->bd_disk->private_data; int type = ITYPE(drive_state[drive].fd_device); - int i; int ret; int size; union inparam { @@ -3522,16 +3550,7 @@ outparam = &write_errors[drive]; break; case FDRAWCMD: - if (type) - return -EINVAL; - if (lock_fdc(drive)) - return -EINTR; - set_floppy(drive); - i = raw_cmd_ioctl(cmd, (void __user *)param); - if (i == -EINTR) - return -EINTR; - process_fd_request(); - return i; + return floppy_raw_cmd_ioctl(type, drive, cmd, (void __user *)param); case FDTWADDLE: if (lock_fdc(drive)) return -EINTR; diff -u linux-intel-iotg-5.15-5.15.0/drivers/block/nbd.c linux-intel-iotg-5.15-5.15.0/drivers/block/nbd.c --- linux-intel-iotg-5.15-5.15.0/drivers/block/nbd.c +++ linux-intel-iotg-5.15-5.15.0/drivers/block/nbd.c @@ -131,6 +131,12 @@ }; #define NBD_CMD_REQUEUED 1 +/* + * This flag will be set if nbd_queue_rq() succeed, and will be checked and + * cleared in completion. Both setting and clearing of the flag are protected + * by cmd->lock. + */ +#define NBD_CMD_INFLIGHT 2 struct nbd_cmd { struct nbd_device *nbd; @@ -405,8 +411,14 @@ if (!mutex_trylock(&cmd->lock)) return BLK_EH_RESET_TIMER; + if (!test_bit(NBD_CMD_INFLIGHT, &cmd->flags)) { + mutex_unlock(&cmd->lock); + return BLK_EH_DONE; + } + if (!refcount_inc_not_zero(&nbd->config_refs)) { cmd->status = BLK_STS_TIMEOUT; + __clear_bit(NBD_CMD_INFLIGHT, &cmd->flags); mutex_unlock(&cmd->lock); goto done; } @@ -475,6 +487,7 @@ dev_err_ratelimited(nbd_to_dev(nbd), "Connection timed out\n"); set_bit(NBD_RT_TIMEDOUT, &config->runtime_flags); cmd->status = BLK_STS_IOERR; + __clear_bit(NBD_CMD_INFLIGHT, &cmd->flags); mutex_unlock(&cmd->lock); sock_shutdown(nbd); nbd_config_put(nbd); @@ -734,6 +747,12 @@ cmd = blk_mq_rq_to_pdu(req); mutex_lock(&cmd->lock); + if (!test_bit(NBD_CMD_INFLIGHT, &cmd->flags)) { + dev_err(disk_to_dev(nbd->disk), "Suspicious reply %d (status %u flags %lu)", + tag, cmd->status, cmd->flags); + ret = -ENOENT; + goto out; + } if (cmd->cmd_cookie != nbd_handle_to_cookie(handle)) { dev_err(disk_to_dev(nbd->disk), "Double reply on req %p, cmd_cookie %u, handle cookie %u\n", req, cmd->cmd_cookie, nbd_handle_to_cookie(handle)); @@ -815,8 +834,16 @@ } rq = blk_mq_rq_from_pdu(cmd); - if (likely(!blk_should_fake_timeout(rq->q))) - blk_mq_complete_request(rq); + if (likely(!blk_should_fake_timeout(rq->q))) { + bool complete; + + mutex_lock(&cmd->lock); + complete = __test_and_clear_bit(NBD_CMD_INFLIGHT, + &cmd->flags); + mutex_unlock(&cmd->lock); + if (complete) + blk_mq_complete_request(rq); + } } nbd_config_put(nbd); atomic_dec(&config->recv_threads); @@ -833,6 +860,10 @@ return true; mutex_lock(&cmd->lock); + if (!__test_and_clear_bit(NBD_CMD_INFLIGHT, &cmd->flags)) { + mutex_unlock(&cmd->lock); + return true; + } cmd->status = BLK_STS_IOERR; mutex_unlock(&cmd->lock); @@ -896,11 +927,15 @@ struct nbd_config *config = nbd->config; if (!config->dead_conn_timeout) return 0; - if (test_bit(NBD_RT_DISCONNECTED, &config->runtime_flags)) + + if (!wait_event_timeout(config->conn_wait, + test_bit(NBD_RT_DISCONNECTED, + &config->runtime_flags) || + atomic_read(&config->live_connections) > 0, + config->dead_conn_timeout)) return 0; - return wait_event_timeout(config->conn_wait, - atomic_read(&config->live_connections) > 0, - config->dead_conn_timeout) > 0; + + return !test_bit(NBD_RT_DISCONNECTED, &config->runtime_flags); } static int nbd_handle_cmd(struct nbd_cmd *cmd, int index) @@ -969,7 +1004,13 @@ * returns EAGAIN can be retried on a different socket. */ ret = nbd_send_cmd(nbd, cmd, index); - if (ret == -EAGAIN) { + /* + * Access to this flag is protected by cmd->lock, thus it's safe to set + * the flag after nbd_send_cmd() succeed to send request to server. + */ + if (!ret) + __set_bit(NBD_CMD_INFLIGHT, &cmd->flags); + else if (ret == -EAGAIN) { dev_err_ratelimited(disk_to_dev(nbd->disk), "Request send failed, requeueing\n"); nbd_mark_nsock_dead(nbd, nsock, 1); @@ -1364,7 +1405,7 @@ static void nbd_clear_sock_ioctl(struct nbd_device *nbd, struct block_device *bdev) { - sock_shutdown(nbd); + nbd_clear_sock(nbd); __invalidate_device(bdev, true); nbd_bdev_reset(bdev); if (test_and_clear_bit(NBD_RT_HAS_CONFIG_REF, @@ -2026,6 +2067,7 @@ mutex_lock(&nbd->config_lock); nbd_disconnect(nbd); sock_shutdown(nbd); + wake_up(&nbd->config->conn_wait); /* * Make sure recv thread has finished, we can safely call nbd_clear_que() * to cancel the inflight I/Os. diff -u linux-intel-iotg-5.15-5.15.0/drivers/block/virtio_blk.c linux-intel-iotg-5.15-5.15.0/drivers/block/virtio_blk.c --- linux-intel-iotg-5.15-5.15.0/drivers/block/virtio_blk.c +++ linux-intel-iotg-5.15-5.15.0/drivers/block/virtio_blk.c @@ -855,11 +855,12 @@ blk_queue_io_opt(q, blk_size * opt_io_size); if (virtio_has_feature(vdev, VIRTIO_BLK_F_DISCARD)) { - q->limits.discard_granularity = blk_size; - virtio_cread(vdev, struct virtio_blk_config, discard_sector_alignment, &v); - q->limits.discard_alignment = v ? v << SECTOR_SHIFT : 0; + if (v) + q->limits.discard_granularity = v << SECTOR_SHIFT; + else + q->limits.discard_granularity = blk_size; virtio_cread(vdev, struct virtio_blk_config, max_discard_sectors, &v); diff -u linux-intel-iotg-5.15-5.15.0/drivers/bluetooth/hci_qca.c linux-intel-iotg-5.15-5.15.0/drivers/bluetooth/hci_qca.c --- linux-intel-iotg-5.15-5.15.0/drivers/bluetooth/hci_qca.c +++ linux-intel-iotg-5.15-5.15.0/drivers/bluetooth/hci_qca.c @@ -696,9 +696,9 @@ skb_queue_purge(&qca->tx_wait_q); skb_queue_purge(&qca->txq); skb_queue_purge(&qca->rx_memdump_q); - del_timer(&qca->tx_idle_timer); - del_timer(&qca->wake_retrans_timer); destroy_workqueue(qca->workqueue); + del_timer_sync(&qca->tx_idle_timer); + del_timer_sync(&qca->wake_retrans_timer); qca->hu = NULL; kfree_skb(qca->rx_skb); diff -u linux-intel-iotg-5.15-5.15.0/drivers/bus/mhi/pci_generic.c linux-intel-iotg-5.15-5.15.0/drivers/bus/mhi/pci_generic.c --- linux-intel-iotg-5.15-5.15.0/drivers/bus/mhi/pci_generic.c +++ linux-intel-iotg-5.15-5.15.0/drivers/bus/mhi/pci_generic.c @@ -1020,6 +1020,7 @@ * the intermediate restore kernel reinitializes MHI device with new * context. */ + flush_work(&mhi_pdev->recovery_work); if (test_and_clear_bit(MHI_PCI_DEV_STARTED, &mhi_pdev->status)) { mhi_power_down(mhi_cntrl, true); mhi_unprepare_after_power_down(mhi_cntrl); @@ -1045,6 +1046,7 @@ .resume = mhi_pci_resume, .freeze = mhi_pci_freeze, .thaw = mhi_pci_restore, + .poweroff = mhi_pci_freeze, .restore = mhi_pci_restore, #endif }; diff -u linux-intel-iotg-5.15-5.15.0/drivers/bus/sunxi-rsb.c linux-intel-iotg-5.15-5.15.0/drivers/bus/sunxi-rsb.c --- linux-intel-iotg-5.15-5.15.0/drivers/bus/sunxi-rsb.c +++ linux-intel-iotg-5.15-5.15.0/drivers/bus/sunxi-rsb.c @@ -227,6 +227,8 @@ dev_dbg(&rdev->dev, "device %s registered\n", dev_name(&rdev->dev)); + return rdev; + err_device_add: put_device(&rdev->dev); diff -u linux-intel-iotg-5.15-5.15.0/drivers/bus/ti-sysc.c linux-intel-iotg-5.15-5.15.0/drivers/bus/ti-sysc.c --- linux-intel-iotg-5.15-5.15.0/drivers/bus/ti-sysc.c +++ linux-intel-iotg-5.15-5.15.0/drivers/bus/ti-sysc.c @@ -3162,13 +3162,27 @@ */ static int sysc_check_active_timer(struct sysc *ddata) { + int error; + if (ddata->cap->type != TI_SYSC_OMAP2_TIMER && ddata->cap->type != TI_SYSC_OMAP4_TIMER) return 0; + /* + * Quirk for omap3 beagleboard revision A to B4 to use gpt12. + * Revision C and later are fixed with commit 23885389dbbb ("ARM: + * dts: Fix timer regression for beagleboard revision c"). This all + * can be dropped if we stop supporting old beagleboard revisions + * A to B4 at some point. + */ + if (sysc_soc->soc == SOC_3430) + error = -ENXIO; + else + error = -EBUSY; + if ((ddata->cfg.quirks & SYSC_QUIRK_NO_RESET_ON_INIT) && (ddata->cfg.quirks & SYSC_QUIRK_NO_IDLE)) - return -ENXIO; + return error; return 0; } diff -u linux-intel-iotg-5.15-5.15.0/drivers/char/ipmi/ipmi_msghandler.c linux-intel-iotg-5.15-5.15.0/drivers/char/ipmi/ipmi_msghandler.c --- linux-intel-iotg-5.15-5.15.0/drivers/char/ipmi/ipmi_msghandler.c +++ linux-intel-iotg-5.15-5.15.0/drivers/char/ipmi/ipmi_msghandler.c @@ -11,8 +11,8 @@ * Copyright 2002 MontaVista Software Inc. */ -#define pr_fmt(fmt) "%s" fmt, "IPMI message handler: " -#define dev_fmt pr_fmt +#define pr_fmt(fmt) "IPMI message handler: " fmt +#define dev_fmt(fmt) pr_fmt(fmt) #include #include diff -u linux-intel-iotg-5.15-5.15.0/drivers/char/ipmi/ipmi_ssif.c linux-intel-iotg-5.15-5.15.0/drivers/char/ipmi/ipmi_ssif.c --- linux-intel-iotg-5.15-5.15.0/drivers/char/ipmi/ipmi_ssif.c +++ linux-intel-iotg-5.15-5.15.0/drivers/char/ipmi/ipmi_ssif.c @@ -814,6 +814,14 @@ break; case SSIF_GETTING_EVENTS: + if (!msg) { + /* Should never happen, but just in case. */ + dev_warn(&ssif_info->client->dev, + "No message set while getting events\n"); + ipmi_ssif_unlock_cond(ssif_info, flags); + break; + } + if ((result < 0) || (len < 3) || (msg->rsp[2] != 0)) { /* Error getting event, probably done. */ msg->done(msg); @@ -838,6 +846,14 @@ break; case SSIF_GETTING_MESSAGES: + if (!msg) { + /* Should never happen, but just in case. */ + dev_warn(&ssif_info->client->dev, + "No message set while getting messages\n"); + ipmi_ssif_unlock_cond(ssif_info, flags); + break; + } + if ((result < 0) || (len < 3) || (msg->rsp[2] != 0)) { /* Error getting event, probably done. */ msg->done(msg); @@ -861,6 +877,13 @@ deliver_recv_msg(ssif_info, msg); } break; + + default: + /* Should never happen, but just in case. */ + dev_warn(&ssif_info->client->dev, + "Invalid state in message done handling: %d\n", + ssif_info->ssif_state); + ipmi_ssif_unlock_cond(ssif_info, flags); } flags = ipmi_ssif_lock_cond(ssif_info, &oflags); interdiff impossible; taking evasive action reverted: --- linux-intel-iotg-5.15-5.15.0/drivers/char/random.c +++ linux-intel-iotg-5.15-5.15.0.orig/drivers/char/random.c @@ -461,7 +461,6 @@ * its value (from 0->1->2). */ static int crng_init = 0; -static bool crng_need_final_init = false; #define crng_ready() (likely(crng_init > 1)) static int crng_init_cnt = 0; static unsigned long crng_global_init_time = 0; @@ -829,36 +828,6 @@ crng->init_time = jiffies - CRNG_RESEED_INTERVAL - 1; } -static void crng_finalize_init(struct crng_state *crng) -{ - if (crng != &primary_crng || crng_init >= 2) - return; - if (!system_wq) { - /* We can't call numa_crng_init until we have workqueues, - * so mark this for processing later. */ - crng_need_final_init = true; - return; - } - - invalidate_batched_entropy(); - numa_crng_init(); - crng_init = 2; - process_random_ready_list(); - wake_up_interruptible(&crng_init_wait); - kill_fasync(&fasync, SIGIO, POLL_IN); - pr_notice("crng init done\n"); - if (unseeded_warning.missed) { - pr_notice("%d get_random_xx warning(s) missed due to ratelimiting\n", - unseeded_warning.missed); - unseeded_warning.missed = 0; - } - if (urandom_warning.missed) { - pr_notice("%d urandom warning(s) missed due to ratelimiting\n", - urandom_warning.missed); - urandom_warning.missed = 0; - } -} - #ifdef CONFIG_NUMA static void do_numa_crng_init(struct work_struct *work) { @@ -874,8 +843,8 @@ crng_initialize_secondary(crng); pool[i] = crng; } + mb(); + if (cmpxchg(&crng_node_pool, NULL, pool)) { - /* pairs with READ_ONCE() in select_crng() */ - if (cmpxchg_release(&crng_node_pool, NULL, pool) != NULL) { for_each_node(i) kfree(pool[i]); kfree(pool); @@ -888,38 +857,18 @@ { schedule_work(&numa_crng_init_work); } - -static struct crng_state *select_crng(void) -{ - struct crng_state **pool; - int nid = numa_node_id(); - - /* pairs with cmpxchg_release() in do_numa_crng_init() */ - pool = READ_ONCE(crng_node_pool); - if (pool && pool[nid]) - return pool[nid]; - - return &primary_crng; -} #else static void numa_crng_init(void) {} - -static struct crng_state *select_crng(void) -{ - return &primary_crng; -} #endif /* * crng_fast_load() can be called by code in the interrupt service + * path. So we can't afford to dilly-dally. - * path. So we can't afford to dilly-dally. Returns the number of - * bytes processed from cp. */ +static int crng_fast_load(const char *cp, size_t len) -static size_t crng_fast_load(const char *cp, size_t len) { unsigned long flags; char *p; - size_t ret = 0; if (!spin_trylock_irqsave(&primary_crng.lock, flags)) return 0; @@ -930,7 +879,7 @@ p = (unsigned char *) &primary_crng.state[4]; while (len > 0 && crng_init_cnt < CRNG_INIT_CNT_THRESH) { p[crng_init_cnt % CHACHA_KEY_SIZE] ^= *cp; + cp++; crng_init_cnt++; len--; - cp++; crng_init_cnt++; len--; ret++; } spin_unlock_irqrestore(&primary_crng.lock, flags); if (crng_init_cnt >= CRNG_INIT_CNT_THRESH) { @@ -938,7 +887,7 @@ crng_init = 1; pr_notice("fast init done\n"); } + return 1; - return ret; } /* @@ -1013,23 +962,38 @@ crng->state[i+4] ^= buf.key[i] ^ rv; } memzero_explicit(&buf, sizeof(buf)); + crng->init_time = jiffies; - WRITE_ONCE(crng->init_time, jiffies); spin_unlock_irqrestore(&crng->lock, flags); + if (crng == &primary_crng && crng_init < 2) { + invalidate_batched_entropy(); + numa_crng_init(); + crng_init = 2; + process_random_ready_list(); + wake_up_interruptible(&crng_init_wait); + kill_fasync(&fasync, SIGIO, POLL_IN); + pr_notice("crng init done\n"); + if (unseeded_warning.missed) { + pr_notice("%d get_random_xx warning(s) missed due to ratelimiting\n", + unseeded_warning.missed); + unseeded_warning.missed = 0; + } + if (urandom_warning.missed) { + pr_notice("%d urandom warning(s) missed due to ratelimiting\n", + urandom_warning.missed); + urandom_warning.missed = 0; + } + } - crng_finalize_init(crng); } static void _extract_crng(struct crng_state *crng, __u8 out[CHACHA_BLOCK_SIZE]) { + unsigned long v, flags; - unsigned long v, flags, init_time; + if (crng_ready() && + (time_after(crng_global_init_time, crng->init_time) || + time_after(jiffies, crng->init_time + CRNG_RESEED_INTERVAL))) + crng_reseed(crng, crng == &primary_crng ? &input_pool : NULL); - if (crng_ready()) { - init_time = READ_ONCE(crng->init_time); - if (time_after(READ_ONCE(crng_global_init_time), init_time) || - time_after(jiffies, init_time + CRNG_RESEED_INTERVAL)) - crng_reseed(crng, crng == &primary_crng ? - &input_pool : NULL); - } spin_lock_irqsave(&crng->lock, flags); if (arch_get_random_long(&v)) crng->state[14] ^= v; @@ -1041,7 +1005,15 @@ static void extract_crng(__u8 out[CHACHA_BLOCK_SIZE]) { + struct crng_state *crng = NULL; + +#ifdef CONFIG_NUMA + if (crng_node_pool) + crng = crng_node_pool[numa_node_id()]; + if (crng == NULL) +#endif + crng = &primary_crng; + _extract_crng(crng, out); - _extract_crng(select_crng(), out); } /* @@ -1070,7 +1042,15 @@ static void crng_backtrack_protect(__u8 tmp[CHACHA_BLOCK_SIZE], int used) { + struct crng_state *crng = NULL; + +#ifdef CONFIG_NUMA + if (crng_node_pool) + crng = crng_node_pool[numa_node_id()]; + if (crng == NULL) +#endif + crng = &primary_crng; + _crng_backtrack_protect(crng, tmp, used); - _crng_backtrack_protect(select_crng(), tmp, used); } static ssize_t extract_crng_user(void __user *buf, size_t nbytes) @@ -1289,7 +1269,7 @@ if (unlikely(crng_init == 0)) { if ((fast_pool->count >= 64) && crng_fast_load((char *) fast_pool->pool, + sizeof(fast_pool->pool))) { - sizeof(fast_pool->pool)) > 0) { fast_pool->count = 0; fast_pool->last = now; } @@ -1795,8 +1775,6 @@ int __init rand_initialize(void) { init_std_data(&input_pool); - if (crng_need_final_init) - crng_finalize_init(&primary_crng); crng_initialize_primary(&primary_crng); crng_global_init_time = jiffies; if (ratelimit_disable) { @@ -1963,10 +1941,7 @@ */ if (!capable(CAP_SYS_ADMIN)) return -EPERM; + input_pool.entropy_count = 0; - if (xchg(&input_pool.entropy_count, 0) && random_write_wakeup_bits) { - wake_up_interruptible(&random_write_wait); - kill_fasync(&fasync, SIGIO, POLL_OUT); - } return 0; case RNDRESEEDCRNG: if (!capable(CAP_SYS_ADMIN)) @@ -1974,7 +1949,7 @@ if (crng_init < 2) return -ENODATA; crng_reseed(&primary_crng, &input_pool); + crng_global_init_time = jiffies - 1; - WRITE_ONCE(crng_global_init_time, jiffies - 1); return 0; default: return -EINVAL; @@ -2023,10 +1998,10 @@ if (count > INT_MAX) count = INT_MAX; + if (!(flags & GRND_INSECURE) && !crng_ready()) { - if (!(flags & GRND_INSECURE) && (crng_init == 0)) { if (flags & GRND_NONBLOCK) return -EAGAIN; + ret = wait_for_random_bytes(); - ret = wait_event_interruptible(crng_init_wait, crng_init > 0); if (unlikely(ret)) return ret; } @@ -2300,19 +2275,15 @@ struct entropy_store *poolp = &input_pool; if (unlikely(crng_init == 0)) { + crng_fast_load(buffer, count); + return; - size_t ret = crng_fast_load(buffer, count); - count -= ret; - buffer += ret; - if (!count || crng_init == 0) - return; } /* Suspend writing if we're above the trickle threshold. * We'll be woken up again once below random_write_wakeup_thresh, * or when the calling thread is about to terminate. */ + wait_event_interruptible(random_write_wait, kthread_should_stop() || - wait_event_interruptible(random_write_wait, - !system_wq || kthread_should_stop() || ENTROPY_BITS(&input_pool) <= random_write_wakeup_bits); mix_pool_bytes(poolp, buffer, count); credit_entropy_bits(poolp, entropy); unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/drivers/char/random.c +++ linux-intel-iotg-5.15-5.15.0/drivers/char/random.c @@ -1,310 +1,26 @@ +// SPDX-License-Identifier: (GPL-2.0 OR BSD-3-Clause) /* - * random.c -- A strong random number generator - * - * Copyright (C) 2017 Jason A. Donenfeld . All - * Rights Reserved. - * + * Copyright (C) 2017-2022 Jason A. Donenfeld . All Rights Reserved. * Copyright Matt Mackall , 2003, 2004, 2005 + * Copyright Theodore Ts'o, 1994, 1995, 1996, 1997, 1998, 1999. All rights reserved. * - * Copyright Theodore Ts'o, 1994, 1995, 1996, 1997, 1998, 1999. All - * rights reserved. + * This driver produces cryptographically secure pseudorandom data. It is divided + * into roughly six sections, each with a section header: * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, and the entire permission notice in its entirety, - * including the disclaimer of warranties. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. The name of the author may not be used to endorse or promote - * products derived from this software without specific prior - * written permission. - * - * ALTERNATIVELY, this product may be distributed under the terms of - * the GNU General Public License, in which case the provisions of the GPL are - * required INSTEAD OF the above restrictions. (This clause is - * necessary due to a potential bad interaction between the GPL and - * the restrictions contained in a BSD-style copyright.) - * - * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED - * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, ALL OF - * WHICH ARE HEREBY DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE - * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT - * OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR - * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF - * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE - * USE OF THIS SOFTWARE, EVEN IF NOT ADVISED OF THE POSSIBILITY OF SUCH - * DAMAGE. - */ - -/* - * (now, with legal B.S. out of the way.....) - * - * This routine gathers environmental noise from device drivers, etc., - * and returns good random numbers, suitable for cryptographic use. - * Besides the obvious cryptographic uses, these numbers are also good - * for seeding TCP sequence numbers, and other places where it is - * desirable to have numbers which are not only random, but hard to - * predict by an attacker. - * - * Theory of operation - * =================== - * - * Computers are very predictable devices. Hence it is extremely hard - * to produce truly random numbers on a computer --- as opposed to - * pseudo-random numbers, which can easily generated by using a - * algorithm. Unfortunately, it is very easy for attackers to guess - * the sequence of pseudo-random number generators, and for some - * applications this is not acceptable. So instead, we must try to - * gather "environmental noise" from the computer's environment, which - * must be hard for outside attackers to observe, and use that to - * generate random numbers. In a Unix environment, this is best done - * from inside the kernel. - * - * Sources of randomness from the environment include inter-keyboard - * timings, inter-interrupt timings from some interrupts, and other - * events which are both (a) non-deterministic and (b) hard for an - * outside observer to measure. Randomness from these sources are - * added to an "entropy pool", which is mixed using a CRC-like function. - * This is not cryptographically strong, but it is adequate assuming - * the randomness is not chosen maliciously, and it is fast enough that - * the overhead of doing it on every interrupt is very reasonable. - * As random bytes are mixed into the entropy pool, the routines keep - * an *estimate* of how many bits of randomness have been stored into - * the random number generator's internal state. - * - * When random bytes are desired, they are obtained by taking the SHA - * hash of the contents of the "entropy pool". The SHA hash avoids - * exposing the internal state of the entropy pool. It is believed to - * be computationally infeasible to derive any useful information - * about the input of SHA from its output. Even if it is possible to - * analyze SHA in some clever way, as long as the amount of data - * returned from the generator is less than the inherent entropy in - * the pool, the output data is totally unpredictable. For this - * reason, the routine decreases its internal estimate of how many - * bits of "true randomness" are contained in the entropy pool as it - * outputs random numbers. - * - * If this estimate goes to zero, the routine can still generate - * random numbers; however, an attacker may (at least in theory) be - * able to infer the future output of the generator from prior - * outputs. This requires successful cryptanalysis of SHA, which is - * not believed to be feasible, but there is a remote possibility. - * Nonetheless, these numbers should be useful for the vast majority - * of purposes. - * - * Exported interfaces ---- output - * =============================== - * - * There are four exported interfaces; two for use within the kernel, - * and two or use from userspace. - * - * Exported interfaces ---- userspace output - * ----------------------------------------- - * - * The userspace interfaces are two character devices /dev/random and - * /dev/urandom. /dev/random is suitable for use when very high - * quality randomness is desired (for example, for key generation or - * one-time pads), as it will only return a maximum of the number of - * bits of randomness (as estimated by the random number generator) - * contained in the entropy pool. - * - * The /dev/urandom device does not have this limit, and will return - * as many bytes as are requested. As more and more random bytes are - * requested without giving time for the entropy pool to recharge, - * this will result in random numbers that are merely cryptographically - * strong. For many applications, however, this is acceptable. - * - * Exported interfaces ---- kernel output - * -------------------------------------- - * - * The primary kernel interface is - * - * void get_random_bytes(void *buf, int nbytes); - * - * This interface will return the requested number of random bytes, - * and place it in the requested buffer. This is equivalent to a - * read from /dev/urandom. - * - * For less critical applications, there are the functions: - * - * u32 get_random_u32() - * u64 get_random_u64() - * unsigned int get_random_int() - * unsigned long get_random_long() - * - * These are produced by a cryptographic RNG seeded from get_random_bytes, - * and so do not deplete the entropy pool as much. These are recommended - * for most in-kernel operations *if the result is going to be stored in - * the kernel*. - * - * Specifically, the get_random_int() family do not attempt to do - * "anti-backtracking". If you capture the state of the kernel (e.g. - * by snapshotting the VM), you can figure out previous get_random_int() - * return values. But if the value is stored in the kernel anyway, - * this is not a problem. - * - * It *is* safe to expose get_random_int() output to attackers (e.g. as - * network cookies); given outputs 1..n, it's not feasible to predict - * outputs 0 or n+1. The only concern is an attacker who breaks into - * the kernel later; the get_random_int() engine is not reseeded as - * often as the get_random_bytes() one. - * - * get_random_bytes() is needed for keys that need to stay secret after - * they are erased from the kernel. For example, any key that will - * be wrapped and stored encrypted. And session encryption keys: we'd - * like to know that after the session is closed and the keys erased, - * the plaintext is unrecoverable to someone who recorded the ciphertext. - * - * But for network ports/cookies, stack canaries, PRNG seeds, address - * space layout randomization, session *authentication* keys, or other - * applications where the sensitive data is stored in the kernel in - * plaintext for as long as it's sensitive, the get_random_int() family - * is just fine. - * - * Consider ASLR. We want to keep the address space secret from an - * outside attacker while the process is running, but once the address - * space is torn down, it's of no use to an attacker any more. And it's - * stored in kernel data structures as long as it's alive, so worrying - * about an attacker's ability to extrapolate it from the get_random_int() - * CRNG is silly. - * - * Even some cryptographic keys are safe to generate with get_random_int(). - * In particular, keys for SipHash are generally fine. Here, knowledge - * of the key authorizes you to do something to a kernel object (inject - * packets to a network connection, or flood a hash table), and the - * key is stored with the object being protected. Once it goes away, - * we no longer care if anyone knows the key. - * - * prandom_u32() - * ------------- - * - * For even weaker applications, see the pseudorandom generator - * prandom_u32(), prandom_max(), and prandom_bytes(). If the random - * numbers aren't security-critical at all, these are *far* cheaper. - * Useful for self-tests, random error simulation, randomized backoffs, - * and any other application where you trust that nobody is trying to - * maliciously mess with you by guessing the "random" numbers. - * - * Exported interfaces ---- input - * ============================== - * - * The current exported interfaces for gathering environmental noise - * from the devices are: - * - * void add_device_randomness(const void *buf, unsigned int size); - * void add_input_randomness(unsigned int type, unsigned int code, - * unsigned int value); - * void add_interrupt_randomness(int irq, int irq_flags); - * void add_disk_randomness(struct gendisk *disk); - * - * add_device_randomness() is for adding data to the random pool that - * is likely to differ between two devices (or possibly even per boot). - * This would be things like MAC addresses or serial numbers, or the - * read-out of the RTC. This does *not* add any actual entropy to the - * pool, but it initializes the pool to different values for devices - * that might otherwise be identical and have very little entropy - * available to them (particularly common in the embedded world). - * - * add_input_randomness() uses the input layer interrupt timing, as well as - * the event type information from the hardware. - * - * add_interrupt_randomness() uses the interrupt timing as random - * inputs to the entropy pool. Using the cycle counters and the irq source - * as inputs, it feeds the randomness roughly once a second. - * - * add_disk_randomness() uses what amounts to the seek time of block - * layer request events, on a per-disk_devt basis, as input to the - * entropy pool. Note that high-speed solid state drives with very low - * seek times do not make for good sources of entropy, as their seek - * times are usually fairly consistent. - * - * All of these routines try to estimate how many bits of randomness a - * particular randomness source. They do this by keeping track of the - * first and second order deltas of the event timings. - * - * Ensuring unpredictability at system startup - * ============================================ - * - * When any operating system starts up, it will go through a sequence - * of actions that are fairly predictable by an adversary, especially - * if the start-up does not involve interaction with a human operator. - * This reduces the actual number of bits of unpredictability in the - * entropy pool below the value in entropy_count. In order to - * counteract this effect, it helps to carry information in the - * entropy pool across shut-downs and start-ups. To do this, put the - * following lines an appropriate script which is run during the boot - * sequence: - * - * echo "Initializing random number generator..." - * random_seed=/var/run/random-seed - * # Carry a random seed from start-up to start-up - * # Load and then save the whole entropy pool - * if [ -f $random_seed ]; then - * cat $random_seed >/dev/urandom - * else - * touch $random_seed - * fi - * chmod 600 $random_seed - * dd if=/dev/urandom of=$random_seed count=1 bs=512 - * - * and the following lines in an appropriate script which is run as - * the system is shutdown: - * - * # Carry a random seed from shut-down to start-up - * # Save the whole entropy pool - * echo "Saving random seed..." - * random_seed=/var/run/random-seed - * touch $random_seed - * chmod 600 $random_seed - * dd if=/dev/urandom of=$random_seed count=1 bs=512 - * - * For example, on most modern systems using the System V init - * scripts, such code fragments would be found in - * /etc/rc.d/init.d/random. On older Linux systems, the correct script - * location might be in /etc/rcb.d/rc.local or /etc/rc.d/rc.0. - * - * Effectively, these commands cause the contents of the entropy pool - * to be saved at shut-down time and reloaded into the entropy pool at - * start-up. (The 'dd' in the addition to the bootup script is to - * make sure that /etc/random-seed is different for every start-up, - * even if the system crashes without executing rc.0.) Even with - * complete knowledge of the start-up activities, predicting the state - * of the entropy pool requires knowledge of the previous history of - * the system. - * - * Configuring the /dev/random driver under Linux - * ============================================== - * - * The /dev/random driver under Linux uses minor numbers 8 and 9 of - * the /dev/mem major number (#1). So if your system does not have - * /dev/random and /dev/urandom created already, they can be created - * by using the commands: - * - * mknod /dev/random c 1 8 - * mknod /dev/urandom c 1 9 - * - * Acknowledgements: - * ================= - * - * Ideas for constructing this random number generator were derived - * from Pretty Good Privacy's random number generator, and from private - * discussions with Phil Karn. Colin Plumb provided a faster random - * number generator, which speed up the mixing function of the entropy - * pool, taken from PGPfone. Dale Worley has also contributed many - * useful ideas and suggestions to improve this driver. - * - * Any flaws in the design are solely my responsibility, and should - * not be attributed to the Phil, Colin, or any of authors of PGP. - * - * Further background information on this topic may be obtained from - * RFC 1750, "Randomness Recommendations for Security", by Donald - * Eastlake, Steve Crocker, and Jeff Schiller. + * - Initialization and readiness waiting. + * - Fast key erasure RNG, the "crng". + * - Entropy accumulation and extraction routines. + * - Entropy collection routines. + * - Userspace reader/writer interfaces. + * - Sysctl interface. + * + * The high level overview is that there is one input pool, into which + * various pieces of data are hashed. Prior to initialization, some of that + * data is then "credited" as having a certain number of bits of entropy. + * When enough bits of entropy are available, the hash is finalized and + * handed as a key to a stream cipher that expands it indefinitely for + * various consumers. This key is periodically refreshed as the various + * entropy collectors, described below, add data to the input pool. */ #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt @@ -327,7 +43,6 @@ #include #include #include -#include #include #include #include @@ -335,1223 +50,1086 @@ #include #include #include +#include +#include +#include #include -#include - +#include #include -#include #include #include #include -#define CREATE_TRACE_POINTS -#include - -/* #define ADD_INTERRUPT_BENCH */ - -/* - * Configuration information - */ -#define INPUT_POOL_SHIFT 12 -#define INPUT_POOL_WORDS (1 << (INPUT_POOL_SHIFT-5)) -#define OUTPUT_POOL_SHIFT 10 -#define OUTPUT_POOL_WORDS (1 << (OUTPUT_POOL_SHIFT-5)) -#define EXTRACT_SIZE 10 - - -#define LONGS(x) (((x) + sizeof(unsigned long) - 1)/sizeof(unsigned long)) - -/* - * To allow fractional bits to be tracked, the entropy_count field is - * denominated in units of 1/8th bits. - * - * 2*(ENTROPY_SHIFT + poolbitshift) must <= 31, or the multiply in - * credit_entropy_bits() needs to be 64 bits wide. - */ -#define ENTROPY_SHIFT 3 -#define ENTROPY_BITS(r) ((r)->entropy_count >> ENTROPY_SHIFT) - -/* - * If the entropy count falls under this number of bits, then we - * should wake up processes which are selecting or polling on write - * access to /dev/random. - */ -static int random_write_wakeup_bits = 28 * OUTPUT_POOL_WORDS; - -/* - * Originally, we used a primitive polynomial of degree .poolwords - * over GF(2). The taps for various sizes are defined below. They - * were chosen to be evenly spaced except for the last tap, which is 1 - * to get the twisting happening as fast as possible. - * - * For the purposes of better mixing, we use the CRC-32 polynomial as - * well to make a (modified) twisted Generalized Feedback Shift - * Register. (See M. Matsumoto & Y. Kurita, 1992. Twisted GFSR - * generators. ACM Transactions on Modeling and Computer Simulation - * 2(3):179-194. Also see M. Matsumoto & Y. Kurita, 1994. Twisted - * GFSR generators II. ACM Transactions on Modeling and Computer - * Simulation 4:254-266) - * - * Thanks to Colin Plumb for suggesting this. - * - * The mixing operation is much less sensitive than the output hash, - * where we use SHA-1. All that we want of mixing operation is that - * it be a good non-cryptographic hash; i.e. it not produce collisions - * when fed "random" data of the sort we expect to see. As long as - * the pool state differs for different inputs, we have preserved the - * input entropy and done a good job. The fact that an intelligent - * attacker can construct inputs that will produce controlled - * alterations to the pool's state is not important because we don't - * consider such inputs to contribute any randomness. The only - * property we need with respect to them is that the attacker can't - * increase his/her knowledge of the pool's state. Since all - * additions are reversible (knowing the final state and the input, - * you can reconstruct the initial state), if an attacker has any - * uncertainty about the initial state, he/she can only shuffle that - * uncertainty about, but never cause any collisions (which would - * decrease the uncertainty). - * - * Our mixing functions were analyzed by Lacharme, Roeck, Strubel, and - * Videau in their paper, "The Linux Pseudorandom Number Generator - * Revisited" (see: http://eprint.iacr.org/2012/251.pdf). In their - * paper, they point out that we are not using a true Twisted GFSR, - * since Matsumoto & Kurita used a trinomial feedback polynomial (that - * is, with only three taps, instead of the six that we are using). - * As a result, the resulting polynomial is neither primitive nor - * irreducible, and hence does not have a maximal period over - * GF(2**32). They suggest a slight change to the generator - * polynomial which improves the resulting TGFSR polynomial to be - * irreducible, which we have made here. - */ -static const struct poolinfo { - int poolbitshift, poolwords, poolbytes, poolfracbits; -#define S(x) ilog2(x)+5, (x), (x)*4, (x) << (ENTROPY_SHIFT+5) - int tap1, tap2, tap3, tap4, tap5; -} poolinfo_table[] = { - /* was: x^128 + x^103 + x^76 + x^51 +x^25 + x + 1 */ - /* x^128 + x^104 + x^76 + x^51 +x^25 + x + 1 */ - { S(128), 104, 76, 51, 25, 1 }, -}; +/********************************************************************* + * + * Initialization and readiness waiting. + * + * Much of the RNG infrastructure is devoted to various dependencies + * being able to wait until the RNG has collected enough entropy and + * is ready for safe consumption. + * + *********************************************************************/ /* - * Static global variables + * crng_init is protected by base_crng->lock, and only increases + * its value (from empty->early->ready). */ -static DECLARE_WAIT_QUEUE_HEAD(random_write_wait); +static enum { + CRNG_EMPTY = 0, /* Little to no entropy collected */ + CRNG_EARLY = 1, /* At least POOL_EARLY_BITS collected */ + CRNG_READY = 2 /* Fully initialized with POOL_READY_BITS collected */ +} crng_init __read_mostly = CRNG_EMPTY; +#define crng_ready() (likely(crng_init >= CRNG_READY)) +/* Various types of waiters for crng_init->CRNG_READY transition. */ +static DECLARE_WAIT_QUEUE_HEAD(crng_init_wait); static struct fasync_struct *fasync; +static DEFINE_SPINLOCK(random_ready_chain_lock); +static RAW_NOTIFIER_HEAD(random_ready_chain); -static DEFINE_SPINLOCK(random_ready_list_lock); -static LIST_HEAD(random_ready_list); - -struct crng_state { - __u32 state[16]; - unsigned long init_time; - spinlock_t lock; -}; - -static struct crng_state primary_crng = { - .lock = __SPIN_LOCK_UNLOCKED(primary_crng.lock), -}; - -/* - * crng_init = 0 --> Uninitialized - * 1 --> Initialized - * 2 --> Initialized from input_pool - * - * crng_init is protected by primary_crng->lock, and only increases - * its value (from 0->1->2). - */ -static int crng_init = 0; -#define crng_ready() (likely(crng_init > 1)) -static int crng_init_cnt = 0; -static unsigned long crng_global_init_time = 0; -#define CRNG_INIT_CNT_THRESH (2*CHACHA_KEY_SIZE) -static void _extract_crng(struct crng_state *crng, __u8 out[CHACHA_BLOCK_SIZE]); -static void _crng_backtrack_protect(struct crng_state *crng, - __u8 tmp[CHACHA_BLOCK_SIZE], int used); -static void process_random_ready_list(void); -static void _get_random_bytes(void *buf, int nbytes); - -static struct ratelimit_state unseeded_warning = - RATELIMIT_STATE_INIT("warn_unseeded_randomness", HZ, 3); +/* Control how we warn userspace. */ static struct ratelimit_state urandom_warning = RATELIMIT_STATE_INIT("warn_urandom_randomness", HZ, 3); - -static int ratelimit_disable __read_mostly; - +static int ratelimit_disable __read_mostly = + IS_ENABLED(CONFIG_WARN_ALL_UNSEEDED_RANDOM); module_param_named(ratelimit_disable, ratelimit_disable, int, 0644); MODULE_PARM_DESC(ratelimit_disable, "Disable random ratelimit suppression"); -/********************************************************************** - * - * OS independent entropy store. Here are the functions which handle - * storing entropy in an entropy pool. +/* + * Returns whether or not the input pool has been seeded and thus guaranteed + * to supply cryptographically secure random numbers. This applies to: the + * /dev/urandom device, the get_random_bytes function, and the get_random_{u32, + * ,u64,int,long} family of functions. * - **********************************************************************/ - -struct entropy_store; -struct entropy_store { - /* read-only data: */ - const struct poolinfo *poolinfo; - __u32 *pool; - const char *name; - - /* read-write data: */ - spinlock_t lock; - unsigned short add_ptr; - unsigned short input_rotate; - int entropy_count; - unsigned int last_data_init:1; - __u8 last_data[EXTRACT_SIZE]; -}; - -static ssize_t extract_entropy(struct entropy_store *r, void *buf, - size_t nbytes, int min, int rsvd); -static ssize_t _extract_entropy(struct entropy_store *r, void *buf, - size_t nbytes, int fips); - -static void crng_reseed(struct crng_state *crng, struct entropy_store *r); -static __u32 input_pool_data[INPUT_POOL_WORDS] __latent_entropy; - -static struct entropy_store input_pool = { - .poolinfo = &poolinfo_table[0], - .name = "input", - .lock = __SPIN_LOCK_UNLOCKED(input_pool.lock), - .pool = input_pool_data -}; + * Returns: true if the input pool has been seeded. + * false if the input pool has not been seeded. + */ +bool rng_is_initialized(void) +{ + return crng_ready(); +} +EXPORT_SYMBOL(rng_is_initialized); -static __u32 const twist_table[8] = { - 0x00000000, 0x3b6e20c8, 0x76dc4190, 0x4db26158, - 0xedb88320, 0xd6d6a3e8, 0x9b64c2b0, 0xa00ae278 }; +/* Used by wait_for_random_bytes(), and considered an entropy collector, below. */ +static void try_to_generate_entropy(void); /* - * This function adds bytes into the entropy "pool". It does not - * update the entropy estimate. The caller should call - * credit_entropy_bits if this is appropriate. + * Wait for the input pool to be seeded and thus guaranteed to supply + * cryptographically secure random numbers. This applies to: the /dev/urandom + * device, the get_random_bytes function, and the get_random_{u32,u64,int,long} + * family of functions. Using any of these functions without first calling + * this function forfeits the guarantee of security. * - * The pool is stirred with a primitive polynomial of the appropriate - * degree, and then twisted. We twist by three bits at a time because - * it's cheap to do so and helps slightly in the expected case where - * the entropy is concentrated in the low-order bits. + * Returns: 0 if the input pool has been seeded. + * -ERESTARTSYS if the function was interrupted by a signal. */ -static void _mix_pool_bytes(struct entropy_store *r, const void *in, - int nbytes) +int wait_for_random_bytes(void) { - unsigned long i, tap1, tap2, tap3, tap4, tap5; - int input_rotate; - int wordmask = r->poolinfo->poolwords - 1; - const char *bytes = in; - __u32 w; - - tap1 = r->poolinfo->tap1; - tap2 = r->poolinfo->tap2; - tap3 = r->poolinfo->tap3; - tap4 = r->poolinfo->tap4; - tap5 = r->poolinfo->tap5; - - input_rotate = r->input_rotate; - i = r->add_ptr; - - /* mix one byte at a time to simplify size handling and churn faster */ - while (nbytes--) { - w = rol32(*bytes++, input_rotate); - i = (i - 1) & wordmask; + while (!crng_ready()) { + int ret; - /* XOR in the various taps */ - w ^= r->pool[i]; - w ^= r->pool[(i + tap1) & wordmask]; - w ^= r->pool[(i + tap2) & wordmask]; - w ^= r->pool[(i + tap3) & wordmask]; - w ^= r->pool[(i + tap4) & wordmask]; - w ^= r->pool[(i + tap5) & wordmask]; + try_to_generate_entropy(); + ret = wait_event_interruptible_timeout(crng_init_wait, crng_ready(), HZ); + if (ret) + return ret > 0 ? 0 : ret; + } + return 0; +} +EXPORT_SYMBOL(wait_for_random_bytes); - /* Mix the result back in with a twist */ - r->pool[i] = (w >> 3) ^ twist_table[w & 7]; +/* + * Add a callback function that will be invoked when the input + * pool is initialised. + * + * returns: 0 if callback is successfully added + * -EALREADY if pool is already initialised (callback not called) + */ +int __cold register_random_ready_notifier(struct notifier_block *nb) +{ + unsigned long flags; + int ret = -EALREADY; - /* - * Normally, we add 7 bits of rotation to the pool. - * At the beginning of the pool, add an extra 7 bits - * rotation, so that successive passes spread the - * input bits across the pool evenly. - */ - input_rotate = (input_rotate + (i ? 7 : 14)) & 31; - } + if (crng_ready()) + return ret; - r->input_rotate = input_rotate; - r->add_ptr = i; + spin_lock_irqsave(&random_ready_chain_lock, flags); + if (!crng_ready()) + ret = raw_notifier_chain_register(&random_ready_chain, nb); + spin_unlock_irqrestore(&random_ready_chain_lock, flags); + return ret; } -static void __mix_pool_bytes(struct entropy_store *r, const void *in, - int nbytes) +/* + * Delete a previously registered readiness callback function. + */ +int __cold unregister_random_ready_notifier(struct notifier_block *nb) { - trace_mix_pool_bytes_nolock(r->name, nbytes, _RET_IP_); - _mix_pool_bytes(r, in, nbytes); + unsigned long flags; + int ret; + + spin_lock_irqsave(&random_ready_chain_lock, flags); + ret = raw_notifier_chain_unregister(&random_ready_chain, nb); + spin_unlock_irqrestore(&random_ready_chain_lock, flags); + return ret; } -static void mix_pool_bytes(struct entropy_store *r, const void *in, - int nbytes) +static void __cold process_random_ready_list(void) { unsigned long flags; - trace_mix_pool_bytes(r->name, nbytes, _RET_IP_); - spin_lock_irqsave(&r->lock, flags); - _mix_pool_bytes(r, in, nbytes); - spin_unlock_irqrestore(&r->lock, flags); + spin_lock_irqsave(&random_ready_chain_lock, flags); + raw_notifier_call_chain(&random_ready_chain, 0, NULL); + spin_unlock_irqrestore(&random_ready_chain_lock, flags); } -struct fast_pool { - __u32 pool[4]; - unsigned long last; - unsigned short reg_idx; - unsigned char count; -}; +#define warn_unseeded_randomness() \ + if (IS_ENABLED(CONFIG_WARN_ALL_UNSEEDED_RANDOM) && !crng_ready()) \ + printk_deferred(KERN_NOTICE "random: %s called from %pS with crng_init=%d\n", \ + __func__, (void *)_RET_IP_, crng_init) -/* - * This is a fast mixing routine used by the interrupt randomness - * collector. It's hardcoded for an 128 bit pool and assumes that any - * locks that might be needed are taken by the caller. - */ -static void fast_mix(struct fast_pool *f) -{ - __u32 a = f->pool[0], b = f->pool[1]; - __u32 c = f->pool[2], d = f->pool[3]; - a += b; c += d; - b = rol32(b, 6); d = rol32(d, 27); - d ^= a; b ^= c; +/********************************************************************* + * + * Fast key erasure RNG, the "crng". + * + * These functions expand entropy from the entropy extractor into + * long streams for external consumption using the "fast key erasure" + * RNG described at . + * + * There are a few exported interfaces for use by other drivers: + * + * void get_random_bytes(void *buf, size_t len) + * u32 get_random_u32() + * u64 get_random_u64() + * unsigned int get_random_int() + * unsigned long get_random_long() + * + * These interfaces will return the requested number of random bytes + * into the given buffer or as a return value. This is equivalent to + * a read from /dev/urandom. The u32, u64, int, and long family of + * functions may be higher performance for one-off random integers, + * because they do a bit of buffering and do not invoke reseeding + * until the buffer is emptied. + * + *********************************************************************/ - a += b; c += d; - b = rol32(b, 16); d = rol32(d, 14); - d ^= a; b ^= c; +enum { + CRNG_RESEED_START_INTERVAL = HZ, + CRNG_RESEED_INTERVAL = 60 * HZ +}; - a += b; c += d; - b = rol32(b, 6); d = rol32(d, 27); - d ^= a; b ^= c; +static struct { + u8 key[CHACHA_KEY_SIZE] __aligned(__alignof__(long)); + unsigned long birth; + unsigned long generation; + spinlock_t lock; +} base_crng = { + .lock = __SPIN_LOCK_UNLOCKED(base_crng.lock) +}; - a += b; c += d; - b = rol32(b, 16); d = rol32(d, 14); - d ^= a; b ^= c; +struct crng { + u8 key[CHACHA_KEY_SIZE]; + unsigned long generation; + local_lock_t lock; +}; - f->pool[0] = a; f->pool[1] = b; - f->pool[2] = c; f->pool[3] = d; - f->count++; -} +static DEFINE_PER_CPU(struct crng, crngs) = { + .generation = ULONG_MAX, + .lock = INIT_LOCAL_LOCK(crngs.lock), +}; -static void process_random_ready_list(void) +/* Used by crng_reseed() and crng_make_state() to extract a new seed from the input pool. */ +static void extract_entropy(void *buf, size_t len); + +/* This extracts a new crng key from the input pool. */ +static void crng_reseed(void) { unsigned long flags; - struct random_ready_callback *rdy, *tmp; + unsigned long next_gen; + u8 key[CHACHA_KEY_SIZE]; - spin_lock_irqsave(&random_ready_list_lock, flags); - list_for_each_entry_safe(rdy, tmp, &random_ready_list, list) { - struct module *owner = rdy->owner; + extract_entropy(key, sizeof(key)); - list_del_init(&rdy->list); - rdy->func(rdy); - module_put(owner); - } - spin_unlock_irqrestore(&random_ready_list_lock, flags); + /* + * We copy the new key into the base_crng, overwriting the old one, + * and update the generation counter. We avoid hitting ULONG_MAX, + * because the per-cpu crngs are initialized to ULONG_MAX, so this + * forces new CPUs that come online to always initialize. + */ + spin_lock_irqsave(&base_crng.lock, flags); + memcpy(base_crng.key, key, sizeof(base_crng.key)); + next_gen = base_crng.generation + 1; + if (next_gen == ULONG_MAX) + ++next_gen; + WRITE_ONCE(base_crng.generation, next_gen); + WRITE_ONCE(base_crng.birth, jiffies); + if (!crng_ready()) + crng_init = CRNG_READY; + spin_unlock_irqrestore(&base_crng.lock, flags); + memzero_explicit(key, sizeof(key)); } /* - * Credit (or debit) the entropy store with n bits of entropy. - * Use credit_entropy_bits_safe() if the value comes from userspace - * or otherwise should be checked for extreme values. + * This generates a ChaCha block using the provided key, and then + * immediately overwites that key with half the block. It returns + * the resultant ChaCha state to the user, along with the second + * half of the block containing 32 bytes of random data that may + * be used; random_data_len may not be greater than 32. + * + * The returned ChaCha state contains within it a copy of the old + * key value, at index 4, so the state should always be zeroed out + * immediately after using in order to maintain forward secrecy. + * If the state cannot be erased in a timely manner, then it is + * safer to set the random_data parameter to &chacha_state[4] so + * that this function overwrites it before returning. */ -static void credit_entropy_bits(struct entropy_store *r, int nbits) +static void crng_fast_key_erasure(u8 key[CHACHA_KEY_SIZE], + u32 chacha_state[CHACHA_STATE_WORDS], + u8 *random_data, size_t random_data_len) { - int entropy_count, orig; - const int pool_size = r->poolinfo->poolfracbits; - int nfrac = nbits << ENTROPY_SHIFT; + u8 first_block[CHACHA_BLOCK_SIZE]; - if (!nbits) - return; + BUG_ON(random_data_len > 32); -retry: - entropy_count = orig = READ_ONCE(r->entropy_count); - if (nfrac < 0) { - /* Debit */ - entropy_count += nfrac; - } else { - /* - * Credit: we have to account for the possibility of - * overwriting already present entropy. Even in the - * ideal case of pure Shannon entropy, new contributions - * approach the full value asymptotically: - * - * entropy <- entropy + (pool_size - entropy) * - * (1 - exp(-add_entropy/pool_size)) - * - * For add_entropy <= pool_size/2 then - * (1 - exp(-add_entropy/pool_size)) >= - * (add_entropy/pool_size)*0.7869... - * so we can approximate the exponential with - * 3/4*add_entropy/pool_size and still be on the - * safe side by adding at most pool_size/2 at a time. - * - * The use of pool_size-2 in the while statement is to - * prevent rounding artifacts from making the loop - * arbitrarily long; this limits the loop to log2(pool_size)*2 - * turns no matter how large nbits is. - */ - int pnfrac = nfrac; - const int s = r->poolinfo->poolbitshift + ENTROPY_SHIFT + 2; - /* The +2 corresponds to the /4 in the denominator */ - - do { - unsigned int anfrac = min(pnfrac, pool_size/2); - unsigned int add = - ((pool_size - entropy_count)*anfrac*3) >> s; - - entropy_count += add; - pnfrac -= anfrac; - } while (unlikely(entropy_count < pool_size-2 && pnfrac)); - } - - if (WARN_ON(entropy_count < 0)) { - pr_warn("negative entropy/overflow: pool %s count %d\n", - r->name, entropy_count); - entropy_count = 0; - } else if (entropy_count > pool_size) - entropy_count = pool_size; - if (cmpxchg(&r->entropy_count, orig, entropy_count) != orig) - goto retry; - - trace_credit_entropy_bits(r->name, nbits, - entropy_count >> ENTROPY_SHIFT, _RET_IP_); - - if (r == &input_pool) { - int entropy_bits = entropy_count >> ENTROPY_SHIFT; - - if (crng_init < 2 && entropy_bits >= 128) - crng_reseed(&primary_crng, r); - } + chacha_init_consts(chacha_state); + memcpy(&chacha_state[4], key, CHACHA_KEY_SIZE); + memset(&chacha_state[12], 0, sizeof(u32) * 4); + chacha20_block(chacha_state, first_block); + + memcpy(key, first_block, CHACHA_KEY_SIZE); + memcpy(random_data, first_block + CHACHA_KEY_SIZE, random_data_len); + memzero_explicit(first_block, sizeof(first_block)); } -static int credit_entropy_bits_safe(struct entropy_store *r, int nbits) +/* + * Return whether the crng seed is considered to be sufficiently old + * that a reseeding is needed. This happens if the last reseeding + * was CRNG_RESEED_INTERVAL ago, or during early boot, at an interval + * proportional to the uptime. + */ +static bool crng_has_old_seed(void) { - const int nbits_max = r->poolinfo->poolwords * 32; - - if (nbits < 0) - return -EINVAL; - - /* Cap the value to avoid overflows */ - nbits = min(nbits, nbits_max); + static bool early_boot = true; + unsigned long interval = CRNG_RESEED_INTERVAL; - credit_entropy_bits(r, nbits); - return 0; + if (unlikely(READ_ONCE(early_boot))) { + time64_t uptime = ktime_get_seconds(); + if (uptime >= CRNG_RESEED_INTERVAL / HZ * 2) + WRITE_ONCE(early_boot, false); + else + interval = max_t(unsigned int, CRNG_RESEED_START_INTERVAL, + (unsigned int)uptime / 2 * HZ); + } + return time_is_before_jiffies(READ_ONCE(base_crng.birth) + interval); } -/********************************************************************* - * - * CRNG using CHACHA20 - * - *********************************************************************/ - -#define CRNG_RESEED_INTERVAL (300*HZ) - -static DECLARE_WAIT_QUEUE_HEAD(crng_init_wait); - -#ifdef CONFIG_NUMA /* - * Hack to deal with crazy userspace progams when they are all trying - * to access /dev/urandom in parallel. The programs are almost - * certainly doing something terribly wrong, but we'll work around - * their brain damage. + * This function returns a ChaCha state that you may use for generating + * random data. It also returns up to 32 bytes on its own of random data + * that may be used; random_data_len may not be greater than 32. */ -static struct crng_state **crng_node_pool __read_mostly; -#endif +static void crng_make_state(u32 chacha_state[CHACHA_STATE_WORDS], + u8 *random_data, size_t random_data_len) +{ + unsigned long flags; + struct crng *crng; -static void invalidate_batched_entropy(void); -static void numa_crng_init(void); + BUG_ON(random_data_len > 32); -static bool trust_cpu __ro_after_init = IS_ENABLED(CONFIG_RANDOM_TRUST_CPU); -static int __init parse_trust_cpu(char *arg) -{ - return kstrtobool(arg, &trust_cpu); -} -early_param("random.trust_cpu", parse_trust_cpu); + /* + * For the fast path, we check whether we're ready, unlocked first, and + * then re-check once locked later. In the case where we're really not + * ready, we do fast key erasure with the base_crng directly, extracting + * when crng_init is CRNG_EMPTY. + */ + if (!crng_ready()) { + bool ready; -static bool crng_init_try_arch(struct crng_state *crng) -{ - int i; - bool arch_init = true; - unsigned long rv; - - for (i = 4; i < 16; i++) { - if (!arch_get_random_seed_long(&rv) && - !arch_get_random_long(&rv)) { - rv = random_get_entropy(); - arch_init = false; + spin_lock_irqsave(&base_crng.lock, flags); + ready = crng_ready(); + if (!ready) { + if (crng_init == CRNG_EMPTY) + extract_entropy(base_crng.key, sizeof(base_crng.key)); + crng_fast_key_erasure(base_crng.key, chacha_state, + random_data, random_data_len); } - crng->state[i] ^= rv; + spin_unlock_irqrestore(&base_crng.lock, flags); + if (!ready) + return; } - return arch_init; -} + /* + * If the base_crng is old enough, we reseed, which in turn bumps the + * generation counter that we check below. + */ + if (unlikely(crng_has_old_seed())) + crng_reseed(); -static bool __init crng_init_try_arch_early(struct crng_state *crng) -{ - int i; - bool arch_init = true; - unsigned long rv; + local_lock_irqsave(&crngs.lock, flags); + crng = raw_cpu_ptr(&crngs); - for (i = 4; i < 16; i++) { - if (!arch_get_random_seed_long_early(&rv) && - !arch_get_random_long_early(&rv)) { - rv = random_get_entropy(); - arch_init = false; - } - crng->state[i] ^= rv; + /* + * If our per-cpu crng is older than the base_crng, then it means + * somebody reseeded the base_crng. In that case, we do fast key + * erasure on the base_crng, and use its output as the new key + * for our per-cpu crng. This brings us up to date with base_crng. + */ + if (unlikely(crng->generation != READ_ONCE(base_crng.generation))) { + spin_lock(&base_crng.lock); + crng_fast_key_erasure(base_crng.key, chacha_state, + crng->key, sizeof(crng->key)); + crng->generation = base_crng.generation; + spin_unlock(&base_crng.lock); } - return arch_init; + /* + * Finally, when we've made it this far, our per-cpu crng has an up + * to date key, and we can do fast key erasure with it to produce + * some random data and a ChaCha state for the caller. All other + * branches of this function are "unlikely", so most of the time we + * should wind up here immediately. + */ + crng_fast_key_erasure(crng->key, chacha_state, random_data, random_data_len); + local_unlock_irqrestore(&crngs.lock, flags); } -static void __maybe_unused crng_initialize_secondary(struct crng_state *crng) +static void _get_random_bytes(void *buf, size_t len) { - chacha_init_consts(crng->state); - _get_random_bytes(&crng->state[4], sizeof(__u32) * 12); - crng_init_try_arch(crng); - crng->init_time = jiffies - CRNG_RESEED_INTERVAL - 1; -} + u32 chacha_state[CHACHA_STATE_WORDS]; + u8 tmp[CHACHA_BLOCK_SIZE]; + size_t first_block_len; -static void __init crng_initialize_primary(struct crng_state *crng) -{ - chacha_init_consts(crng->state); - _extract_entropy(&input_pool, &crng->state[4], sizeof(__u32) * 12, 0); - if (crng_init_try_arch_early(crng) && trust_cpu) { - invalidate_batched_entropy(); - numa_crng_init(); - crng_init = 2; - pr_notice("crng done (trusting CPU's manufacturer)\n"); - } - crng->init_time = jiffies - CRNG_RESEED_INTERVAL - 1; -} + if (!len) + return; -#ifdef CONFIG_NUMA -static void do_numa_crng_init(struct work_struct *work) -{ - int i; - struct crng_state *crng; - struct crng_state **pool; + first_block_len = min_t(size_t, 32, len); + crng_make_state(chacha_state, buf, first_block_len); + len -= first_block_len; + buf += first_block_len; + + while (len) { + if (len < CHACHA_BLOCK_SIZE) { + chacha20_block(chacha_state, tmp); + memcpy(buf, tmp, len); + memzero_explicit(tmp, sizeof(tmp)); + break; + } - pool = kcalloc(nr_node_ids, sizeof(*pool), GFP_KERNEL|__GFP_NOFAIL); - for_each_online_node(i) { - crng = kmalloc_node(sizeof(struct crng_state), - GFP_KERNEL | __GFP_NOFAIL, i); - spin_lock_init(&crng->lock); - crng_initialize_secondary(crng); - pool[i] = crng; - } - mb(); - if (cmpxchg(&crng_node_pool, NULL, pool)) { - for_each_node(i) - kfree(pool[i]); - kfree(pool); + chacha20_block(chacha_state, buf); + if (unlikely(chacha_state[12] == 0)) + ++chacha_state[13]; + len -= CHACHA_BLOCK_SIZE; + buf += CHACHA_BLOCK_SIZE; } -} - -static DECLARE_WORK(numa_crng_init_work, do_numa_crng_init); -static void numa_crng_init(void) -{ - schedule_work(&numa_crng_init_work); + memzero_explicit(chacha_state, sizeof(chacha_state)); } -#else -static void numa_crng_init(void) {} -#endif /* - * crng_fast_load() can be called by code in the interrupt service - * path. So we can't afford to dilly-dally. + * This function is the exported kernel interface. It returns some + * number of good random numbers, suitable for key generation, seeding + * TCP sequence numbers, etc. It does not rely on the hardware random + * number generator. For random bytes direct from the hardware RNG + * (when available), use get_random_bytes_arch(). In order to ensure + * that the randomness provided by this function is okay, the function + * wait_for_random_bytes() should be called and return 0 at least once + * at any point prior. */ -static int crng_fast_load(const char *cp, size_t len) +void get_random_bytes(void *buf, size_t len) { - unsigned long flags; - char *p; - - if (!spin_trylock_irqsave(&primary_crng.lock, flags)) - return 0; - if (crng_init != 0) { - spin_unlock_irqrestore(&primary_crng.lock, flags); - return 0; - } - p = (unsigned char *) &primary_crng.state[4]; - while (len > 0 && crng_init_cnt < CRNG_INIT_CNT_THRESH) { - p[crng_init_cnt % CHACHA_KEY_SIZE] ^= *cp; - cp++; crng_init_cnt++; len--; - } - spin_unlock_irqrestore(&primary_crng.lock, flags); - if (crng_init_cnt >= CRNG_INIT_CNT_THRESH) { - invalidate_batched_entropy(); - crng_init = 1; - pr_notice("fast init done\n"); - } - return 1; + warn_unseeded_randomness(); + _get_random_bytes(buf, len); } +EXPORT_SYMBOL(get_random_bytes); -/* - * crng_slow_load() is called by add_device_randomness, which has two - * attributes. (1) We can't trust the buffer passed to it is - * guaranteed to be unpredictable (so it might not have any entropy at - * all), and (2) it doesn't have the performance constraints of - * crng_fast_load(). - * - * So we do something more comprehensive which is guaranteed to touch - * all of the primary_crng's state, and which uses a LFSR with a - * period of 255 as part of the mixing algorithm. Finally, we do - * *not* advance crng_init_cnt since buffer we may get may be something - * like a fixed DMI table (for example), which might very well be - * unique to the machine, but is otherwise unvarying. - */ -static int crng_slow_load(const char *cp, size_t len) -{ - unsigned long flags; - static unsigned char lfsr = 1; - unsigned char tmp; - unsigned i, max = CHACHA_KEY_SIZE; - const char * src_buf = cp; - char * dest_buf = (char *) &primary_crng.state[4]; +static ssize_t get_random_bytes_user(struct iov_iter *iter) +{ + u32 chacha_state[CHACHA_STATE_WORDS]; + u8 block[CHACHA_BLOCK_SIZE]; + size_t ret = 0, copied; - if (!spin_trylock_irqsave(&primary_crng.lock, flags)) - return 0; - if (crng_init != 0) { - spin_unlock_irqrestore(&primary_crng.lock, flags); + if (unlikely(!iov_iter_count(iter))) return 0; + + /* + * Immediately overwrite the ChaCha key at index 4 with random + * bytes, in case userspace causes copy_to_user() below to sleep + * forever, so that we still retain forward secrecy in that case. + */ + crng_make_state(chacha_state, (u8 *)&chacha_state[4], CHACHA_KEY_SIZE); + /* + * However, if we're doing a read of len <= 32, we don't need to + * use chacha_state after, so we can simply return those bytes to + * the user directly. + */ + if (iov_iter_count(iter) <= CHACHA_KEY_SIZE) { + ret = copy_to_iter(&chacha_state[4], CHACHA_KEY_SIZE, iter); + goto out_zero_chacha; } - if (len > max) - max = len; - for (i = 0; i < max ; i++) { - tmp = lfsr; - lfsr >>= 1; - if (tmp & 1) - lfsr ^= 0xE1; - tmp = dest_buf[i % CHACHA_KEY_SIZE]; - dest_buf[i % CHACHA_KEY_SIZE] ^= src_buf[i % len] ^ lfsr; - lfsr += (tmp << 3) | (tmp >> 5); - } - spin_unlock_irqrestore(&primary_crng.lock, flags); - return 1; -} - -static void crng_reseed(struct crng_state *crng, struct entropy_store *r) -{ - unsigned long flags; - int i, num; - union { - __u8 block[CHACHA_BLOCK_SIZE]; - __u32 key[8]; - } buf; - - if (r) { - num = extract_entropy(r, &buf, 32, 16, 0); - if (num == 0) - return; - } else { - _extract_crng(&primary_crng, buf.block); - _crng_backtrack_protect(&primary_crng, buf.block, - CHACHA_KEY_SIZE); - } - spin_lock_irqsave(&crng->lock, flags); - for (i = 0; i < 8; i++) { - unsigned long rv; - if (!arch_get_random_seed_long(&rv) && - !arch_get_random_long(&rv)) - rv = random_get_entropy(); - crng->state[i+4] ^= buf.key[i] ^ rv; - } - memzero_explicit(&buf, sizeof(buf)); - crng->init_time = jiffies; - spin_unlock_irqrestore(&crng->lock, flags); - if (crng == &primary_crng && crng_init < 2) { - invalidate_batched_entropy(); - numa_crng_init(); - crng_init = 2; - process_random_ready_list(); - wake_up_interruptible(&crng_init_wait); - kill_fasync(&fasync, SIGIO, POLL_IN); - pr_notice("crng init done\n"); - if (unseeded_warning.missed) { - pr_notice("%d get_random_xx warning(s) missed due to ratelimiting\n", - unseeded_warning.missed); - unseeded_warning.missed = 0; - } - if (urandom_warning.missed) { - pr_notice("%d urandom warning(s) missed due to ratelimiting\n", - urandom_warning.missed); - urandom_warning.missed = 0; + for (;;) { + chacha20_block(chacha_state, block); + if (unlikely(chacha_state[12] == 0)) + ++chacha_state[13]; + + copied = copy_to_iter(block, sizeof(block), iter); + ret += copied; + if (!iov_iter_count(iter) || copied != sizeof(block)) + break; + + BUILD_BUG_ON(PAGE_SIZE % sizeof(block) != 0); + if (ret % PAGE_SIZE == 0) { + if (signal_pending(current)) + break; + cond_resched(); } } -} - -static void _extract_crng(struct crng_state *crng, - __u8 out[CHACHA_BLOCK_SIZE]) -{ - unsigned long v, flags; - if (crng_ready() && - (time_after(crng_global_init_time, crng->init_time) || - time_after(jiffies, crng->init_time + CRNG_RESEED_INTERVAL))) - crng_reseed(crng, crng == &primary_crng ? &input_pool : NULL); - spin_lock_irqsave(&crng->lock, flags); - if (arch_get_random_long(&v)) - crng->state[14] ^= v; - chacha20_block(&crng->state[0], out); - if (crng->state[12] == 0) - crng->state[13]++; - spin_unlock_irqrestore(&crng->lock, flags); -} - -static void extract_crng(__u8 out[CHACHA_BLOCK_SIZE]) -{ - struct crng_state *crng = NULL; - -#ifdef CONFIG_NUMA - if (crng_node_pool) - crng = crng_node_pool[numa_node_id()]; - if (crng == NULL) -#endif - crng = &primary_crng; - _extract_crng(crng, out); -} + memzero_explicit(block, sizeof(block)); +out_zero_chacha: + memzero_explicit(chacha_state, sizeof(chacha_state)); + return ret ? ret : -EFAULT; +} + +/* + * Batched entropy returns random integers. The quality of the random + * number is good as /dev/urandom. In order to ensure that the randomness + * provided by this function is okay, the function wait_for_random_bytes() + * should be called and return 0 at least once at any point prior. + */ + +#define DEFINE_BATCHED_ENTROPY(type) \ +struct batch_ ##type { \ + /* \ + * We make this 1.5x a ChaCha block, so that we get the \ + * remaining 32 bytes from fast key erasure, plus one full \ + * block from the detached ChaCha state. We can increase \ + * the size of this later if needed so long as we keep the \ + * formula of (integer_blocks + 0.5) * CHACHA_BLOCK_SIZE. \ + */ \ + type entropy[CHACHA_BLOCK_SIZE * 3 / (2 * sizeof(type))]; \ + local_lock_t lock; \ + unsigned long generation; \ + unsigned int position; \ +}; \ + \ +static DEFINE_PER_CPU(struct batch_ ##type, batched_entropy_ ##type) = { \ + .lock = INIT_LOCAL_LOCK(batched_entropy_ ##type.lock), \ + .position = UINT_MAX \ +}; \ + \ +type get_random_ ##type(void) \ +{ \ + type ret; \ + unsigned long flags; \ + struct batch_ ##type *batch; \ + unsigned long next_gen; \ + \ + warn_unseeded_randomness(); \ + \ + if (!crng_ready()) { \ + _get_random_bytes(&ret, sizeof(ret)); \ + return ret; \ + } \ + \ + local_lock_irqsave(&batched_entropy_ ##type.lock, flags); \ + batch = raw_cpu_ptr(&batched_entropy_##type); \ + \ + next_gen = READ_ONCE(base_crng.generation); \ + if (batch->position >= ARRAY_SIZE(batch->entropy) || \ + next_gen != batch->generation) { \ + _get_random_bytes(batch->entropy, sizeof(batch->entropy)); \ + batch->position = 0; \ + batch->generation = next_gen; \ + } \ + \ + ret = batch->entropy[batch->position]; \ + batch->entropy[batch->position] = 0; \ + ++batch->position; \ + local_unlock_irqrestore(&batched_entropy_ ##type.lock, flags); \ + return ret; \ +} \ +EXPORT_SYMBOL(get_random_ ##type); + +DEFINE_BATCHED_ENTROPY(u64) +DEFINE_BATCHED_ENTROPY(u32) +#ifdef CONFIG_SMP /* - * Use the leftover bytes from the CRNG block output (if there is - * enough) to mutate the CRNG key to provide backtracking protection. + * This function is called when the CPU is coming up, with entry + * CPUHP_RANDOM_PREPARE, which comes before CPUHP_WORKQUEUE_PREP. */ -static void _crng_backtrack_protect(struct crng_state *crng, - __u8 tmp[CHACHA_BLOCK_SIZE], int used) +int __cold random_prepare_cpu(unsigned int cpu) { - unsigned long flags; - __u32 *s, *d; - int i; - - used = round_up(used, sizeof(__u32)); - if (used + CHACHA_KEY_SIZE > CHACHA_BLOCK_SIZE) { - extract_crng(tmp); - used = 0; - } - spin_lock_irqsave(&crng->lock, flags); - s = (__u32 *) &tmp[used]; - d = &crng->state[4]; - for (i=0; i < 8; i++) - *d++ ^= *s++; - spin_unlock_irqrestore(&crng->lock, flags); + /* + * When the cpu comes back online, immediately invalidate both + * the per-cpu crng and all batches, so that we serve fresh + * randomness. + */ + per_cpu_ptr(&crngs, cpu)->generation = ULONG_MAX; + per_cpu_ptr(&batched_entropy_u32, cpu)->position = UINT_MAX; + per_cpu_ptr(&batched_entropy_u64, cpu)->position = UINT_MAX; + return 0; } - -static void crng_backtrack_protect(__u8 tmp[CHACHA_BLOCK_SIZE], int used) -{ - struct crng_state *crng = NULL; - -#ifdef CONFIG_NUMA - if (crng_node_pool) - crng = crng_node_pool[numa_node_id()]; - if (crng == NULL) #endif - crng = &primary_crng; - _crng_backtrack_protect(crng, tmp, used); -} -static ssize_t extract_crng_user(void __user *buf, size_t nbytes) +/* + * This function will use the architecture-specific hardware random + * number generator if it is available. It is not recommended for + * use. Use get_random_bytes() instead. It returns the number of + * bytes filled in. + */ +size_t __must_check get_random_bytes_arch(void *buf, size_t len) { - ssize_t ret = 0, i = CHACHA_BLOCK_SIZE; - __u8 tmp[CHACHA_BLOCK_SIZE] __aligned(4); - int large_request = (nbytes > 256); + size_t left = len; + u8 *p = buf; - while (nbytes) { - if (large_request && need_resched()) { - if (signal_pending(current)) { - if (ret == 0) - ret = -ERESTARTSYS; - break; - } - schedule(); - } + while (left) { + unsigned long v; + size_t block_len = min_t(size_t, left, sizeof(unsigned long)); - extract_crng(tmp); - i = min_t(int, nbytes, CHACHA_BLOCK_SIZE); - if (copy_to_user(buf, tmp, i)) { - ret = -EFAULT; + if (!arch_get_random_long(&v)) break; - } - nbytes -= i; - buf += i; - ret += i; + memcpy(p, &v, block_len); + p += block_len; + left -= block_len; } - crng_backtrack_protect(tmp, i); - - /* Wipe data just written to memory */ - memzero_explicit(tmp, sizeof(tmp)); - return ret; + return len - left; } +EXPORT_SYMBOL(get_random_bytes_arch); -/********************************************************************* +/********************************************************************** * - * Entropy input management + * Entropy accumulation and extraction routines. * - *********************************************************************/ + * Callers may add entropy via: + * + * static void mix_pool_bytes(const void *buf, size_t len) + * + * After which, if added entropy should be credited: + * + * static void credit_init_bits(size_t bits) + * + * Finally, extract entropy via: + * + * static void extract_entropy(void *buf, size_t len) + * + **********************************************************************/ -/* There is one of these per entropy source */ -struct timer_rand_state { - cycles_t last_time; - long last_delta, last_delta2; +enum { + POOL_BITS = BLAKE2S_HASH_SIZE * 8, + POOL_READY_BITS = POOL_BITS, /* When crng_init->CRNG_READY */ + POOL_EARLY_BITS = POOL_READY_BITS / 2 /* When crng_init->CRNG_EARLY */ }; -#define INIT_TIMER_RAND_STATE { INITIAL_JIFFIES, }; +static struct { + struct blake2s_state hash; + spinlock_t lock; + unsigned int init_bits; +} input_pool = { + .hash.h = { BLAKE2S_IV0 ^ (0x01010000 | BLAKE2S_HASH_SIZE), + BLAKE2S_IV1, BLAKE2S_IV2, BLAKE2S_IV3, BLAKE2S_IV4, + BLAKE2S_IV5, BLAKE2S_IV6, BLAKE2S_IV7 }, + .hash.outlen = BLAKE2S_HASH_SIZE, + .lock = __SPIN_LOCK_UNLOCKED(input_pool.lock), +}; + +static void _mix_pool_bytes(const void *buf, size_t len) +{ + blake2s_update(&input_pool.hash, buf, len); +} /* - * Add device- or boot-specific data to the input pool to help - * initialize it. - * - * None of this adds any entropy; it is meant to avoid the problem of - * the entropy pool having similar initial state across largely - * identical devices. + * This function adds bytes into the input pool. It does not + * update the initialization bit counter; the caller should call + * credit_init_bits if this is appropriate. */ -void add_device_randomness(const void *buf, unsigned int size) +static void mix_pool_bytes(const void *buf, size_t len) { - unsigned long time = random_get_entropy() ^ jiffies; unsigned long flags; - if (!crng_ready() && size) - crng_slow_load(buf, size); - - trace_add_device_randomness(size, _RET_IP_); spin_lock_irqsave(&input_pool.lock, flags); - _mix_pool_bytes(&input_pool, buf, size); - _mix_pool_bytes(&input_pool, &time, sizeof(time)); + _mix_pool_bytes(buf, len); spin_unlock_irqrestore(&input_pool.lock, flags); } -EXPORT_SYMBOL(add_device_randomness); - -static struct timer_rand_state input_timer_state = INIT_TIMER_RAND_STATE; /* - * This function adds entropy to the entropy "pool" by using timing - * delays. It uses the timer_rand_state structure to make an estimate - * of how many bits of entropy this call has added to the pool. - * - * The number "num" is also added to the pool - it should somehow describe - * the type of event which just happened. This is currently 0-255 for - * keyboard scan codes, and 256 upwards for interrupts. - * + * This is an HKDF-like construction for using the hashed collected entropy + * as a PRF key, that's then expanded block-by-block. */ -static void add_timer_randomness(struct timer_rand_state *state, unsigned num) +static void extract_entropy(void *buf, size_t len) { - struct entropy_store *r; + unsigned long flags; + u8 seed[BLAKE2S_HASH_SIZE], next_key[BLAKE2S_HASH_SIZE]; struct { - long jiffies; - unsigned cycles; - unsigned num; - } sample; - long delta, delta2, delta3; + unsigned long rdseed[32 / sizeof(long)]; + size_t counter; + } block; + size_t i; + + for (i = 0; i < ARRAY_SIZE(block.rdseed); ++i) { + if (!arch_get_random_seed_long(&block.rdseed[i]) && + !arch_get_random_long(&block.rdseed[i])) + block.rdseed[i] = random_get_entropy(); + } - sample.jiffies = jiffies; - sample.cycles = random_get_entropy(); - sample.num = num; - r = &input_pool; - mix_pool_bytes(r, &sample, sizeof(sample)); + spin_lock_irqsave(&input_pool.lock, flags); - /* - * Calculate number of bits of randomness we probably added. - * We take into account the first, second and third-order deltas - * in order to make our estimate. - */ - delta = sample.jiffies - READ_ONCE(state->last_time); - WRITE_ONCE(state->last_time, sample.jiffies); + /* seed = HASHPRF(last_key, entropy_input) */ + blake2s_final(&input_pool.hash, seed); - delta2 = delta - READ_ONCE(state->last_delta); - WRITE_ONCE(state->last_delta, delta); + /* next_key = HASHPRF(seed, RDSEED || 0) */ + block.counter = 0; + blake2s(next_key, (u8 *)&block, seed, sizeof(next_key), sizeof(block), sizeof(seed)); + blake2s_init_key(&input_pool.hash, BLAKE2S_HASH_SIZE, next_key, sizeof(next_key)); - delta3 = delta2 - READ_ONCE(state->last_delta2); - WRITE_ONCE(state->last_delta2, delta2); + spin_unlock_irqrestore(&input_pool.lock, flags); + memzero_explicit(next_key, sizeof(next_key)); - if (delta < 0) - delta = -delta; - if (delta2 < 0) - delta2 = -delta2; - if (delta3 < 0) - delta3 = -delta3; - if (delta > delta2) - delta = delta2; - if (delta > delta3) - delta = delta3; + while (len) { + i = min_t(size_t, len, BLAKE2S_HASH_SIZE); + /* output = HASHPRF(seed, RDSEED || ++counter) */ + ++block.counter; + blake2s(buf, (u8 *)&block, seed, i, sizeof(block), sizeof(seed)); + len -= i; + buf += i; + } - /* - * delta is now minimum absolute delta. - * Round down by 1 bit on general principles, - * and limit entropy estimate to 12 bits. - */ - credit_entropy_bits(r, min_t(int, fls(delta>>1), 11)); + memzero_explicit(seed, sizeof(seed)); + memzero_explicit(&block, sizeof(block)); } -void add_input_randomness(unsigned int type, unsigned int code, - unsigned int value) +#define credit_init_bits(bits) if (!crng_ready()) _credit_init_bits(bits) + +static void __cold _credit_init_bits(size_t bits) { - static unsigned char last_value; + unsigned int new, orig, add; + unsigned long flags; - /* ignore autorepeat and the like */ - if (value == last_value) + if (!bits) return; - last_value = value; - add_timer_randomness(&input_timer_state, - (type << 4) ^ code ^ (code >> 4) ^ value); - trace_add_input_randomness(ENTROPY_BITS(&input_pool)); -} -EXPORT_SYMBOL_GPL(add_input_randomness); + add = min_t(size_t, bits, POOL_BITS); -static DEFINE_PER_CPU(struct fast_pool, irq_randomness); + do { + orig = READ_ONCE(input_pool.init_bits); + new = min_t(unsigned int, POOL_BITS, orig + add); + } while (cmpxchg(&input_pool.init_bits, orig, new) != orig); -#ifdef ADD_INTERRUPT_BENCH -static unsigned long avg_cycles, avg_deviation; + if (orig < POOL_READY_BITS && new >= POOL_READY_BITS) { + crng_reseed(); /* Sets crng_init to CRNG_READY under base_crng.lock. */ + process_random_ready_list(); + wake_up_interruptible(&crng_init_wait); + kill_fasync(&fasync, SIGIO, POLL_IN); + pr_notice("crng init done\n"); + if (urandom_warning.missed) + pr_notice("%d urandom warning(s) missed due to ratelimiting\n", + urandom_warning.missed); + } else if (orig < POOL_EARLY_BITS && new >= POOL_EARLY_BITS) { + spin_lock_irqsave(&base_crng.lock, flags); + /* Check if crng_init is CRNG_EMPTY, to avoid race with crng_reseed(). */ + if (crng_init == CRNG_EMPTY) { + extract_entropy(base_crng.key, sizeof(base_crng.key)); + crng_init = CRNG_EARLY; + } + spin_unlock_irqrestore(&base_crng.lock, flags); + } +} -#define AVG_SHIFT 8 /* Exponential average factor k=1/256 */ -#define FIXED_1_2 (1 << (AVG_SHIFT-1)) -static void add_interrupt_bench(cycles_t start) -{ - long delta = random_get_entropy() - start; +/********************************************************************** + * + * Entropy collection routines. + * + * The following exported functions are used for pushing entropy into + * the above entropy accumulation routines: + * + * void add_device_randomness(const void *buf, size_t len); + * void add_hwgenerator_randomness(const void *buf, size_t len, size_t entropy); + * void add_bootloader_randomness(const void *buf, size_t len); + * void add_interrupt_randomness(int irq); + * void add_input_randomness(unsigned int type, unsigned int code, unsigned int value); + * void add_disk_randomness(struct gendisk *disk); + * + * add_device_randomness() adds data to the input pool that + * is likely to differ between two devices (or possibly even per boot). + * This would be things like MAC addresses or serial numbers, or the + * read-out of the RTC. This does *not* credit any actual entropy to + * the pool, but it initializes the pool to different values for devices + * that might otherwise be identical and have very little entropy + * available to them (particularly common in the embedded world). + * + * add_hwgenerator_randomness() is for true hardware RNGs, and will credit + * entropy as specified by the caller. If the entropy pool is full it will + * block until more entropy is needed. + * + * add_bootloader_randomness() is called by bootloader drivers, such as EFI + * and device tree, and credits its input depending on whether or not the + * configuration option CONFIG_RANDOM_TRUST_BOOTLOADER is set. + * + * add_interrupt_randomness() uses the interrupt timing as random + * inputs to the entropy pool. Using the cycle counters and the irq source + * as inputs, it feeds the input pool roughly once a second or after 64 + * interrupts, crediting 1 bit of entropy for whichever comes first. + * + * add_input_randomness() uses the input layer interrupt timing, as well + * as the event type information from the hardware. + * + * add_disk_randomness() uses what amounts to the seek time of block + * layer request events, on a per-disk_devt basis, as input to the + * entropy pool. Note that high-speed solid state drives with very low + * seek times do not make for good sources of entropy, as their seek + * times are usually fairly consistent. + * + * The last two routines try to estimate how many bits of entropy + * to credit. They do this by keeping track of the first and second + * order deltas of the event timings. + * + **********************************************************************/ - /* Use a weighted moving average */ - delta = delta - ((avg_cycles + FIXED_1_2) >> AVG_SHIFT); - avg_cycles += delta; - /* And average deviation */ - delta = abs(delta) - ((avg_deviation + FIXED_1_2) >> AVG_SHIFT); - avg_deviation += delta; +static bool trust_cpu __ro_after_init = IS_ENABLED(CONFIG_RANDOM_TRUST_CPU); +static bool trust_bootloader __ro_after_init = IS_ENABLED(CONFIG_RANDOM_TRUST_BOOTLOADER); +static int __init parse_trust_cpu(char *arg) +{ + return kstrtobool(arg, &trust_cpu); } -#else -#define add_interrupt_bench(x) -#endif +static int __init parse_trust_bootloader(char *arg) +{ + return kstrtobool(arg, &trust_bootloader); +} +early_param("random.trust_cpu", parse_trust_cpu); +early_param("random.trust_bootloader", parse_trust_bootloader); -static __u32 get_reg(struct fast_pool *f, struct pt_regs *regs) +/* + * The first collection of entropy occurs at system boot while interrupts + * are still turned off. Here we push in latent entropy, RDSEED, a timestamp, + * utsname(), and the command line. Depending on the above configuration knob, + * RDSEED may be considered sufficient for initialization. Note that much + * earlier setup may already have pushed entropy into the input pool by the + * time we get here. + */ +int __init random_init(const char *command_line) { - __u32 *ptr = (__u32 *) regs; - unsigned int idx; + ktime_t now = ktime_get_real(); + unsigned int i, arch_bytes; + unsigned long entropy; - if (regs == NULL) - return 0; - idx = READ_ONCE(f->reg_idx); - if (idx >= sizeof(struct pt_regs) / sizeof(__u32)) - idx = 0; - ptr += idx++; - WRITE_ONCE(f->reg_idx, idx); - return *ptr; -} - -void add_interrupt_randomness(int irq, int irq_flags) -{ - struct entropy_store *r; - struct fast_pool *fast_pool = this_cpu_ptr(&irq_randomness); - struct pt_regs *regs = get_irq_regs(); - unsigned long now = jiffies; - cycles_t cycles = random_get_entropy(); - __u32 c_high, j_high; - __u64 ip; - - if (cycles == 0) - cycles = get_reg(fast_pool, regs); - c_high = (sizeof(cycles) > 4) ? cycles >> 32 : 0; - j_high = (sizeof(now) > 4) ? now >> 32 : 0; - fast_pool->pool[0] ^= cycles ^ j_high ^ irq; - fast_pool->pool[1] ^= now ^ c_high; - ip = regs ? instruction_pointer(regs) : _RET_IP_; - fast_pool->pool[2] ^= ip; - fast_pool->pool[3] ^= (sizeof(ip) > 4) ? ip >> 32 : - get_reg(fast_pool, regs); - - fast_mix(fast_pool); - add_interrupt_bench(cycles); - - if (unlikely(crng_init == 0)) { - if ((fast_pool->count >= 64) && - crng_fast_load((char *) fast_pool->pool, - sizeof(fast_pool->pool))) { - fast_pool->count = 0; - fast_pool->last = now; +#if defined(LATENT_ENTROPY_PLUGIN) + static const u8 compiletime_seed[BLAKE2S_BLOCK_SIZE] __initconst __latent_entropy; + _mix_pool_bytes(compiletime_seed, sizeof(compiletime_seed)); +#endif + + for (i = 0, arch_bytes = BLAKE2S_BLOCK_SIZE; + i < BLAKE2S_BLOCK_SIZE; i += sizeof(entropy)) { + if (!arch_get_random_seed_long_early(&entropy) && + !arch_get_random_long_early(&entropy)) { + entropy = random_get_entropy(); + arch_bytes -= sizeof(entropy); } - return; + _mix_pool_bytes(&entropy, sizeof(entropy)); } + _mix_pool_bytes(&now, sizeof(now)); + _mix_pool_bytes(utsname(), sizeof(*(utsname()))); + _mix_pool_bytes(command_line, strlen(command_line)); + add_latent_entropy(); - if ((fast_pool->count < 64) && - !time_after(now, fast_pool->last + HZ)) - return; - - r = &input_pool; - if (!spin_trylock(&r->lock)) - return; + if (crng_ready()) + crng_reseed(); + else if (trust_cpu) + credit_init_bits(arch_bytes * 8); - fast_pool->last = now; - __mix_pool_bytes(r, &fast_pool->pool, sizeof(fast_pool->pool)); - spin_unlock(&r->lock); + return 0; +} - fast_pool->count = 0; +/* + * Add device- or boot-specific data to the input pool to help + * initialize it. + * + * None of this adds any entropy; it is meant to avoid the problem of + * the entropy pool having similar initial state across largely + * identical devices. + */ +void add_device_randomness(const void *buf, size_t len) +{ + unsigned long entropy = random_get_entropy(); + unsigned long flags; - /* award one bit for the contents of the fast pool */ - credit_entropy_bits(r, 1); + spin_lock_irqsave(&input_pool.lock, flags); + _mix_pool_bytes(&entropy, sizeof(entropy)); + _mix_pool_bytes(buf, len); + spin_unlock_irqrestore(&input_pool.lock, flags); } -EXPORT_SYMBOL_GPL(add_interrupt_randomness); +EXPORT_SYMBOL(add_device_randomness); -#ifdef CONFIG_BLOCK -void add_disk_randomness(struct gendisk *disk) +/* + * Interface for in-kernel drivers of true hardware RNGs. + * Those devices may produce endless random bits and will be throttled + * when our pool is full. + */ +void add_hwgenerator_randomness(const void *buf, size_t len, size_t entropy) { - if (!disk || !disk->random) - return; - /* first major is 1, so we get >= 0x200 here */ - add_timer_randomness(disk->random, 0x100 + disk_devt(disk)); - trace_add_disk_randomness(disk_devt(disk), ENTROPY_BITS(&input_pool)); -} -EXPORT_SYMBOL_GPL(add_disk_randomness); -#endif + mix_pool_bytes(buf, len); + credit_init_bits(entropy); -/********************************************************************* - * - * Entropy extraction routines - * - *********************************************************************/ + /* + * Throttle writing to once every CRNG_RESEED_INTERVAL, unless + * we're not yet initialized. + */ + if (!kthread_should_stop() && crng_ready()) + schedule_timeout_interruptible(CRNG_RESEED_INTERVAL); +} +EXPORT_SYMBOL_GPL(add_hwgenerator_randomness); /* - * This function decides how many bytes to actually take from the - * given pool, and also debits the entropy count accordingly. + * Handle random seed passed by bootloader, and credit it if + * CONFIG_RANDOM_TRUST_BOOTLOADER is set. */ -static size_t account(struct entropy_store *r, size_t nbytes, int min, - int reserved) +void __cold add_bootloader_randomness(const void *buf, size_t len) { - int entropy_count, orig, have_bytes; - size_t ibytes, nfrac; - - BUG_ON(r->entropy_count > r->poolinfo->poolfracbits); - - /* Can we pull enough? */ -retry: - entropy_count = orig = READ_ONCE(r->entropy_count); - ibytes = nbytes; - /* never pull more than available */ - have_bytes = entropy_count >> (ENTROPY_SHIFT + 3); - - if ((have_bytes -= reserved) < 0) - have_bytes = 0; - ibytes = min_t(size_t, ibytes, have_bytes); - if (ibytes < min) - ibytes = 0; - - if (WARN_ON(entropy_count < 0)) { - pr_warn("negative entropy count: pool %s count %d\n", - r->name, entropy_count); - entropy_count = 0; - } - nfrac = ibytes << (ENTROPY_SHIFT + 3); - if ((size_t) entropy_count > nfrac) - entropy_count -= nfrac; - else - entropy_count = 0; + mix_pool_bytes(buf, len); + if (trust_bootloader) + credit_init_bits(len * 8); +} +EXPORT_SYMBOL_GPL(add_bootloader_randomness); - if (cmpxchg(&r->entropy_count, orig, entropy_count) != orig) - goto retry; +struct fast_pool { + struct work_struct mix; + unsigned long pool[4]; + unsigned long last; + unsigned int count; +}; - trace_debit_entropy(r->name, 8 * ibytes); - if (ibytes && ENTROPY_BITS(r) < random_write_wakeup_bits) { - wake_up_interruptible(&random_write_wait); - kill_fasync(&fasync, SIGIO, POLL_OUT); - } +static DEFINE_PER_CPU(struct fast_pool, irq_randomness) = { +#ifdef CONFIG_64BIT +#define FASTMIX_PERM SIPHASH_PERMUTATION + .pool = { SIPHASH_CONST_0, SIPHASH_CONST_1, SIPHASH_CONST_2, SIPHASH_CONST_3 } +#else +#define FASTMIX_PERM HSIPHASH_PERMUTATION + .pool = { HSIPHASH_CONST_0, HSIPHASH_CONST_1, HSIPHASH_CONST_2, HSIPHASH_CONST_3 } +#endif +}; - return ibytes; +/* + * This is [Half]SipHash-1-x, starting from an empty key. Because + * the key is fixed, it assumes that its inputs are non-malicious, + * and therefore this has no security on its own. s represents the + * four-word SipHash state, while v represents a two-word input. + */ +static void fast_mix(unsigned long s[4], unsigned long v1, unsigned long v2) +{ + s[3] ^= v1; + FASTMIX_PERM(s[0], s[1], s[2], s[3]); + s[0] ^= v1; + s[3] ^= v2; + FASTMIX_PERM(s[0], s[1], s[2], s[3]); + s[0] ^= v2; } +#ifdef CONFIG_SMP /* - * This function does the actual extraction for extract_entropy. - * - * Note: we assume that .poolwords is a multiple of 16 words. + * This function is called when the CPU has just come online, with + * entry CPUHP_AP_RANDOM_ONLINE, just after CPUHP_AP_WORKQUEUE_ONLINE. */ -static void extract_buf(struct entropy_store *r, __u8 *out) +int __cold random_online_cpu(unsigned int cpu) { - int i; - union { - __u32 w[5]; - unsigned long l[LONGS(20)]; - } hash; - __u32 workspace[SHA1_WORKSPACE_WORDS]; - unsigned long flags; - /* - * If we have an architectural hardware random number - * generator, use it for SHA's initial vector + * During CPU shutdown and before CPU onlining, add_interrupt_ + * randomness() may schedule mix_interrupt_randomness(), and + * set the MIX_INFLIGHT flag. However, because the worker can + * be scheduled on a different CPU during this period, that + * flag will never be cleared. For that reason, we zero out + * the flag here, which runs just after workqueues are onlined + * for the CPU again. This also has the effect of setting the + * irq randomness count to zero so that new accumulated irqs + * are fresh. */ - sha1_init(hash.w); - for (i = 0; i < LONGS(20); i++) { - unsigned long v; - if (!arch_get_random_long(&v)) - break; - hash.l[i] = v; - } - - /* Generate a hash across the pool, 16 words (512 bits) at a time */ - spin_lock_irqsave(&r->lock, flags); - for (i = 0; i < r->poolinfo->poolwords; i += 16) - sha1_transform(hash.w, (__u8 *)(r->pool + i), workspace); + per_cpu_ptr(&irq_randomness, cpu)->count = 0; + return 0; +} +#endif +static void mix_interrupt_randomness(struct work_struct *work) +{ + struct fast_pool *fast_pool = container_of(work, struct fast_pool, mix); /* - * We mix the hash back into the pool to prevent backtracking - * attacks (where the attacker knows the state of the pool - * plus the current outputs, and attempts to find previous - * ouputs), unless the hash function can be inverted. By - * mixing at least a SHA1 worth of hash data back, we make - * brute-forcing the feedback as hard as brute-forcing the - * hash. + * The size of the copied stack pool is explicitly 2 longs so that we + * only ever ingest half of the siphash output each time, retaining + * the other half as the next "key" that carries over. The entropy is + * supposed to be sufficiently dispersed between bits so on average + * we don't wind up "losing" some. */ - __mix_pool_bytes(r, hash.w, sizeof(hash.w)); - spin_unlock_irqrestore(&r->lock, flags); + unsigned long pool[2]; + unsigned int count; - memzero_explicit(workspace, sizeof(workspace)); + /* Check to see if we're running on the wrong CPU due to hotplug. */ + local_irq_disable(); + if (fast_pool != this_cpu_ptr(&irq_randomness)) { + local_irq_enable(); + return; + } /* - * In case the hash function has some recognizable output - * pattern, we fold it in half. Thus, we always feed back - * twice as much data as we output. + * Copy the pool to the stack so that the mixer always has a + * consistent view, before we reenable irqs again. */ - hash.w[0] ^= hash.w[3]; - hash.w[1] ^= hash.w[4]; - hash.w[2] ^= rol32(hash.w[2], 16); + memcpy(pool, fast_pool->pool, sizeof(pool)); + count = fast_pool->count; + fast_pool->count = 0; + fast_pool->last = jiffies; + local_irq_enable(); + + mix_pool_bytes(pool, sizeof(pool)); + credit_init_bits(max(1u, (count & U16_MAX) / 64)); - memcpy(out, &hash, EXTRACT_SIZE); - memzero_explicit(&hash, sizeof(hash)); + memzero_explicit(pool, sizeof(pool)); } -static ssize_t _extract_entropy(struct entropy_store *r, void *buf, - size_t nbytes, int fips) +void add_interrupt_randomness(int irq) { - ssize_t ret = 0, i; - __u8 tmp[EXTRACT_SIZE]; - unsigned long flags; + enum { MIX_INFLIGHT = 1U << 31 }; + unsigned long entropy = random_get_entropy(); + struct fast_pool *fast_pool = this_cpu_ptr(&irq_randomness); + struct pt_regs *regs = get_irq_regs(); + unsigned int new_count; - while (nbytes) { - extract_buf(r, tmp); + fast_mix(fast_pool->pool, entropy, + (regs ? instruction_pointer(regs) : _RET_IP_) ^ swab(irq)); + new_count = ++fast_pool->count; - if (fips) { - spin_lock_irqsave(&r->lock, flags); - if (!memcmp(tmp, r->last_data, EXTRACT_SIZE)) - panic("Hardware RNG duplicated output!\n"); - memcpy(r->last_data, tmp, EXTRACT_SIZE); - spin_unlock_irqrestore(&r->lock, flags); - } - i = min_t(int, nbytes, EXTRACT_SIZE); - memcpy(buf, tmp, i); - nbytes -= i; - buf += i; - ret += i; - } + if (new_count & MIX_INFLIGHT) + return; - /* Wipe data just returned from memory */ - memzero_explicit(tmp, sizeof(tmp)); + if (new_count < 64 && !time_is_before_jiffies(fast_pool->last + HZ)) + return; - return ret; + if (unlikely(!fast_pool->mix.func)) + INIT_WORK(&fast_pool->mix, mix_interrupt_randomness); + fast_pool->count |= MIX_INFLIGHT; + queue_work_on(raw_smp_processor_id(), system_highpri_wq, &fast_pool->mix); } +EXPORT_SYMBOL_GPL(add_interrupt_randomness); + +/* There is one of these per entropy source */ +struct timer_rand_state { + unsigned long last_time; + long last_delta, last_delta2; +}; /* - * This function extracts randomness from the "entropy pool", and - * returns it in a buffer. - * - * The min parameter specifies the minimum amount we can pull before - * failing to avoid races that defeat catastrophic reseeding while the - * reserved parameter indicates how much entropy we must leave in the - * pool after each pull to avoid starving other readers. + * This function adds entropy to the entropy "pool" by using timing + * delays. It uses the timer_rand_state structure to make an estimate + * of how many bits of entropy this call has added to the pool. The + * value "num" is also added to the pool; it should somehow describe + * the type of event that just happened. */ -static ssize_t extract_entropy(struct entropy_store *r, void *buf, - size_t nbytes, int min, int reserved) +static void add_timer_randomness(struct timer_rand_state *state, unsigned int num) { - __u8 tmp[EXTRACT_SIZE]; - unsigned long flags; + unsigned long entropy = random_get_entropy(), now = jiffies, flags; + long delta, delta2, delta3; + unsigned int bits; - /* if last_data isn't primed, we need EXTRACT_SIZE extra bytes */ - if (fips_enabled) { - spin_lock_irqsave(&r->lock, flags); - if (!r->last_data_init) { - r->last_data_init = 1; - spin_unlock_irqrestore(&r->lock, flags); - trace_extract_entropy(r->name, EXTRACT_SIZE, - ENTROPY_BITS(r), _RET_IP_); - extract_buf(r, tmp); - spin_lock_irqsave(&r->lock, flags); - memcpy(r->last_data, tmp, EXTRACT_SIZE); - } - spin_unlock_irqrestore(&r->lock, flags); + /* + * If we're in a hard IRQ, add_interrupt_randomness() will be called + * sometime after, so mix into the fast pool. + */ + if (in_hardirq()) { + fast_mix(this_cpu_ptr(&irq_randomness)->pool, entropy, num); + } else { + spin_lock_irqsave(&input_pool.lock, flags); + _mix_pool_bytes(&entropy, sizeof(entropy)); + _mix_pool_bytes(&num, sizeof(num)); + spin_unlock_irqrestore(&input_pool.lock, flags); } - trace_extract_entropy(r->name, nbytes, ENTROPY_BITS(r), _RET_IP_); - nbytes = account(r, nbytes, min, reserved); + if (crng_ready()) + return; - return _extract_entropy(r, buf, nbytes, fips_enabled); -} + /* + * Calculate number of bits of randomness we probably added. + * We take into account the first, second and third-order deltas + * in order to make our estimate. + */ + delta = now - READ_ONCE(state->last_time); + WRITE_ONCE(state->last_time, now); -#define warn_unseeded_randomness(previous) \ - _warn_unseeded_randomness(__func__, (void *) _RET_IP_, (previous)) + delta2 = delta - READ_ONCE(state->last_delta); + WRITE_ONCE(state->last_delta, delta); -static void _warn_unseeded_randomness(const char *func_name, void *caller, - void **previous) -{ -#ifdef CONFIG_WARN_ALL_UNSEEDED_RANDOM - const bool print_once = false; -#else - static bool print_once __read_mostly; -#endif + delta3 = delta2 - READ_ONCE(state->last_delta2); + WRITE_ONCE(state->last_delta2, delta2); - if (print_once || - crng_ready() || - (previous && (caller == READ_ONCE(*previous)))) - return; - WRITE_ONCE(*previous, caller); -#ifndef CONFIG_WARN_ALL_UNSEEDED_RANDOM - print_once = true; -#endif - if (__ratelimit(&unseeded_warning)) - printk_deferred(KERN_NOTICE "random: %s called from %pS " - "with crng_init=%d\n", func_name, caller, - crng_init); + if (delta < 0) + delta = -delta; + if (delta2 < 0) + delta2 = -delta2; + if (delta3 < 0) + delta3 = -delta3; + if (delta > delta2) + delta = delta2; + if (delta > delta3) + delta = delta3; + + /* + * delta is now minimum absolute delta. Round down by 1 bit + * on general principles, and limit entropy estimate to 11 bits. + */ + bits = min(fls(delta >> 1), 11); + + /* + * As mentioned above, if we're in a hard IRQ, add_interrupt_randomness() + * will run after this, which uses a different crediting scheme of 1 bit + * per every 64 interrupts. In order to let that function do accounting + * close to the one in this function, we credit a full 64/64 bit per bit, + * and then subtract one to account for the extra one added. + */ + if (in_hardirq()) + this_cpu_ptr(&irq_randomness)->count += max(1u, bits * 64) - 1; + else + _credit_init_bits(bits); } -/* - * This function is the exported kernel interface. It returns some - * number of good random numbers, suitable for key generation, seeding - * TCP sequence numbers, etc. It does not rely on the hardware random - * number generator. For random bytes direct from the hardware RNG - * (when available), use get_random_bytes_arch(). In order to ensure - * that the randomness provided by this function is okay, the function - * wait_for_random_bytes() should be called and return 0 at least once - * at any point prior. - */ -static void _get_random_bytes(void *buf, int nbytes) +void add_input_randomness(unsigned int type, unsigned int code, unsigned int value) { - __u8 tmp[CHACHA_BLOCK_SIZE] __aligned(4); + static unsigned char last_value; + static struct timer_rand_state input_timer_state = { INITIAL_JIFFIES }; - trace_get_random_bytes(nbytes, _RET_IP_); + /* Ignore autorepeat and the like. */ + if (value == last_value) + return; - while (nbytes >= CHACHA_BLOCK_SIZE) { - extract_crng(buf); - buf += CHACHA_BLOCK_SIZE; - nbytes -= CHACHA_BLOCK_SIZE; - } + last_value = value; + add_timer_randomness(&input_timer_state, + (type << 4) ^ code ^ (code >> 4) ^ value); +} +EXPORT_SYMBOL_GPL(add_input_randomness); - if (nbytes > 0) { - extract_crng(tmp); - memcpy(buf, tmp, nbytes); - crng_backtrack_protect(tmp, nbytes); - } else - crng_backtrack_protect(tmp, CHACHA_BLOCK_SIZE); - memzero_explicit(tmp, sizeof(tmp)); +#ifdef CONFIG_BLOCK +void add_disk_randomness(struct gendisk *disk) +{ + if (!disk || !disk->random) + return; + /* First major is 1, so we get >= 0x200 here. */ + add_timer_randomness(disk->random, 0x100 + disk_devt(disk)); } +EXPORT_SYMBOL_GPL(add_disk_randomness); -void get_random_bytes(void *buf, int nbytes) +void __cold rand_initialize_disk(struct gendisk *disk) { - static void *previous; + struct timer_rand_state *state; - warn_unseeded_randomness(&previous); - _get_random_bytes(buf, nbytes); + /* + * If kzalloc returns null, we just won't use that entropy + * source. + */ + state = kzalloc(sizeof(struct timer_rand_state), GFP_KERNEL); + if (state) { + state->last_time = INITIAL_JIFFIES; + disk->random = state; + } } -EXPORT_SYMBOL(get_random_bytes); - +#endif /* * Each time the timer fires, we expect that we got an unpredictable @@ -1566,351 +1144,176 @@ * * So the re-arming always happens in the entropy loop itself. */ -static void entropy_timer(struct timer_list *t) +static void __cold entropy_timer(struct timer_list *t) { - credit_entropy_bits(&input_pool, 1); + credit_init_bits(1); } /* * If we have an actual cycle counter, see if we can * generate enough entropy with timing noise */ -static void try_to_generate_entropy(void) +static void __cold try_to_generate_entropy(void) { struct { - unsigned long now; + unsigned long entropy; struct timer_list timer; } stack; - stack.now = random_get_entropy(); + stack.entropy = random_get_entropy(); /* Slow counter - or none. Don't even bother */ - if (stack.now == random_get_entropy()) + if (stack.entropy == random_get_entropy()) return; timer_setup_on_stack(&stack.timer, entropy_timer, 0); - while (!crng_ready()) { + while (!crng_ready() && !signal_pending(current)) { if (!timer_pending(&stack.timer)) - mod_timer(&stack.timer, jiffies+1); - mix_pool_bytes(&input_pool, &stack.now, sizeof(stack.now)); + mod_timer(&stack.timer, jiffies + 1); + mix_pool_bytes(&stack.entropy, sizeof(stack.entropy)); schedule(); - stack.now = random_get_entropy(); + stack.entropy = random_get_entropy(); } del_timer_sync(&stack.timer); destroy_timer_on_stack(&stack.timer); - mix_pool_bytes(&input_pool, &stack.now, sizeof(stack.now)); + mix_pool_bytes(&stack.entropy, sizeof(stack.entropy)); } -/* - * Wait for the urandom pool to be seeded and thus guaranteed to supply - * cryptographically secure random numbers. This applies to: the /dev/urandom - * device, the get_random_bytes function, and the get_random_{u32,u64,int,long} - * family of functions. Using any of these functions without first calling - * this function forfeits the guarantee of security. - * - * Returns: 0 if the urandom pool has been seeded. - * -ERESTARTSYS if the function was interrupted by a signal. - */ -int wait_for_random_bytes(void) -{ - if (likely(crng_ready())) - return 0; - - do { - int ret; - ret = wait_event_interruptible_timeout(crng_init_wait, crng_ready(), HZ); - if (ret) - return ret > 0 ? 0 : ret; - - try_to_generate_entropy(); - } while (!crng_ready()); - - return 0; -} -EXPORT_SYMBOL(wait_for_random_bytes); -/* - * Returns whether or not the urandom pool has been seeded and thus guaranteed - * to supply cryptographically secure random numbers. This applies to: the - * /dev/urandom device, the get_random_bytes function, and the get_random_{u32, - * ,u64,int,long} family of functions. +/********************************************************************** * - * Returns: true if the urandom pool has been seeded. - * false if the urandom pool has not been seeded. - */ -bool rng_is_initialized(void) -{ - return crng_ready(); -} -EXPORT_SYMBOL(rng_is_initialized); - -/* - * Add a callback function that will be invoked when the nonblocking - * pool is initialised. + * Userspace reader/writer interfaces. * - * returns: 0 if callback is successfully added - * -EALREADY if pool is already initialised (callback not called) - * -ENOENT if module for callback is not alive - */ -int add_random_ready_callback(struct random_ready_callback *rdy) -{ - struct module *owner; - unsigned long flags; - int err = -EALREADY; - - if (crng_ready()) - return err; - - owner = rdy->owner; - if (!try_module_get(owner)) - return -ENOENT; - - spin_lock_irqsave(&random_ready_list_lock, flags); - if (crng_ready()) - goto out; + * getrandom(2) is the primary modern interface into the RNG and should + * be used in preference to anything else. + * + * Reading from /dev/random has the same functionality as calling + * getrandom(2) with flags=0. In earlier versions, however, it had + * vastly different semantics and should therefore be avoided, to + * prevent backwards compatibility issues. + * + * Reading from /dev/urandom has the same functionality as calling + * getrandom(2) with flags=GRND_INSECURE. Because it does not block + * waiting for the RNG to be ready, it should not be used. + * + * Writing to either /dev/random or /dev/urandom adds entropy to + * the input pool but does not credit it. + * + * Polling on /dev/random indicates when the RNG is initialized, on + * the read side, and when it wants new entropy, on the write side. + * + * Both /dev/random and /dev/urandom have the same set of ioctls for + * adding entropy, getting the entropy count, zeroing the count, and + * reseeding the crng. + * + **********************************************************************/ - owner = NULL; +SYSCALL_DEFINE3(getrandom, char __user *, ubuf, size_t, len, unsigned int, flags) +{ + struct iov_iter iter; + struct iovec iov; + int ret; - list_add(&rdy->list, &random_ready_list); - err = 0; + if (flags & ~(GRND_NONBLOCK | GRND_RANDOM | GRND_INSECURE)) + return -EINVAL; -out: - spin_unlock_irqrestore(&random_ready_list_lock, flags); + /* + * Requesting insecure and blocking randomness at the same time makes + * no sense. + */ + if ((flags & (GRND_INSECURE | GRND_RANDOM)) == (GRND_INSECURE | GRND_RANDOM)) + return -EINVAL; - module_put(owner); + if (!crng_ready() && !(flags & GRND_INSECURE)) { + if (flags & GRND_NONBLOCK) + return -EAGAIN; + ret = wait_for_random_bytes(); + if (unlikely(ret)) + return ret; + } - return err; + ret = import_single_range(READ, ubuf, len, &iov, &iter); + if (unlikely(ret)) + return ret; + return get_random_bytes_user(&iter); } -EXPORT_SYMBOL(add_random_ready_callback); -/* - * Delete a previously registered readiness callback function. - */ -void del_random_ready_callback(struct random_ready_callback *rdy) +static __poll_t random_poll(struct file *file, poll_table *wait) { - unsigned long flags; - struct module *owner = NULL; - - spin_lock_irqsave(&random_ready_list_lock, flags); - if (!list_empty(&rdy->list)) { - list_del_init(&rdy->list); - owner = rdy->owner; - } - spin_unlock_irqrestore(&random_ready_list_lock, flags); - - module_put(owner); + poll_wait(file, &crng_init_wait, wait); + return crng_ready() ? EPOLLIN | EPOLLRDNORM : EPOLLOUT | EPOLLWRNORM; } -EXPORT_SYMBOL(del_random_ready_callback); -/* - * This function will use the architecture-specific hardware random - * number generator if it is available. The arch-specific hw RNG will - * almost certainly be faster than what we can do in software, but it - * is impossible to verify that it is implemented securely (as - * opposed, to, say, the AES encryption of a sequence number using a - * key known by the NSA). So it's useful if we need the speed, but - * only if we're willing to trust the hardware manufacturer not to - * have put in a back door. - * - * Return number of bytes filled in. - */ -int __must_check get_random_bytes_arch(void *buf, int nbytes) +static ssize_t write_pool_user(struct iov_iter *iter) { - int left = nbytes; - char *p = buf; + u8 block[BLAKE2S_BLOCK_SIZE]; + ssize_t ret = 0; + size_t copied; - trace_get_random_bytes_arch(left, _RET_IP_); - while (left) { - unsigned long v; - int chunk = min_t(int, left, sizeof(unsigned long)); + if (unlikely(!iov_iter_count(iter))) + return 0; - if (!arch_get_random_long(&v)) + for (;;) { + copied = copy_from_iter(block, sizeof(block), iter); + ret += copied; + mix_pool_bytes(block, copied); + if (!iov_iter_count(iter) || copied != sizeof(block)) break; - memcpy(p, &v, chunk); - p += chunk; - left -= chunk; + BUILD_BUG_ON(PAGE_SIZE % sizeof(block) != 0); + if (ret % PAGE_SIZE == 0) { + if (signal_pending(current)) + break; + cond_resched(); + } } - return nbytes - left; -} -EXPORT_SYMBOL(get_random_bytes_arch); - -/* - * init_std_data - initialize pool with system data - * - * @r: pool to initialize - * - * This function clears the pool's entropy count and mixes some system - * data into the pool to prepare it for use. The pool is not cleared - * as that can only decrease the entropy in the pool. - */ -static void __init init_std_data(struct entropy_store *r) -{ - int i; - ktime_t now = ktime_get_real(); - unsigned long rv; - - mix_pool_bytes(r, &now, sizeof(now)); - for (i = r->poolinfo->poolbytes; i > 0; i -= sizeof(rv)) { - if (!arch_get_random_seed_long(&rv) && - !arch_get_random_long(&rv)) - rv = random_get_entropy(); - mix_pool_bytes(r, &rv, sizeof(rv)); - } - mix_pool_bytes(r, utsname(), sizeof(*(utsname()))); -} - -/* - * Note that setup_arch() may call add_device_randomness() - * long before we get here. This allows seeding of the pools - * with some platform dependent data very early in the boot - * process. But it limits our options here. We must use - * statically allocated structures that already have all - * initializations complete at compile time. We should also - * take care not to overwrite the precious per platform data - * we were given. - */ -int __init rand_initialize(void) -{ - init_std_data(&input_pool); - crng_initialize_primary(&primary_crng); - crng_global_init_time = jiffies; - if (ratelimit_disable) { - urandom_warning.interval = 0; - unseeded_warning.interval = 0; - } - return 0; + memzero_explicit(block, sizeof(block)); + return ret ? ret : -EFAULT; } -#ifdef CONFIG_BLOCK -void rand_initialize_disk(struct gendisk *disk) +static ssize_t random_write_iter(struct kiocb *kiocb, struct iov_iter *iter) { - struct timer_rand_state *state; - - /* - * If kzalloc returns null, we just won't use that entropy - * source. - */ - state = kzalloc(sizeof(struct timer_rand_state), GFP_KERNEL); - if (state) { - state->last_time = INITIAL_JIFFIES; - disk->random = state; - } + return write_pool_user(iter); } -#endif -static ssize_t -urandom_read_nowarn(struct file *file, char __user *buf, size_t nbytes, - loff_t *ppos) +static ssize_t urandom_read_iter(struct kiocb *kiocb, struct iov_iter *iter) { - int ret; - - nbytes = min_t(size_t, nbytes, INT_MAX >> (ENTROPY_SHIFT + 3)); - ret = extract_crng_user(buf, nbytes); - trace_urandom_read(8 * nbytes, 0, ENTROPY_BITS(&input_pool)); - return ret; -} - -static ssize_t -urandom_read(struct file *file, char __user *buf, size_t nbytes, loff_t *ppos) -{ - unsigned long flags; static int maxwarn = 10; - if (!crng_ready() && maxwarn > 0) { - maxwarn--; - if (__ratelimit(&urandom_warning)) - pr_notice("%s: uninitialized urandom read (%zd bytes read)\n", - current->comm, nbytes); - spin_lock_irqsave(&primary_crng.lock, flags); - crng_init_cnt = 0; - spin_unlock_irqrestore(&primary_crng.lock, flags); + if (!crng_ready()) { + if (!ratelimit_disable && maxwarn <= 0) + ++urandom_warning.missed; + else if (ratelimit_disable || __ratelimit(&urandom_warning)) { + --maxwarn; + pr_notice("%s: uninitialized urandom read (%zu bytes read)\n", + current->comm, iov_iter_count(iter)); + } } - return urandom_read_nowarn(file, buf, nbytes, ppos); + return get_random_bytes_user(iter); } -static ssize_t -random_read(struct file *file, char __user *buf, size_t nbytes, loff_t *ppos) +static ssize_t random_read_iter(struct kiocb *kiocb, struct iov_iter *iter) { int ret; ret = wait_for_random_bytes(); if (ret != 0) return ret; - return urandom_read_nowarn(file, buf, nbytes, ppos); -} - -static __poll_t -random_poll(struct file *file, poll_table * wait) -{ - __poll_t mask; - - poll_wait(file, &crng_init_wait, wait); - poll_wait(file, &random_write_wait, wait); - mask = 0; - if (crng_ready()) - mask |= EPOLLIN | EPOLLRDNORM; - if (ENTROPY_BITS(&input_pool) < random_write_wakeup_bits) - mask |= EPOLLOUT | EPOLLWRNORM; - return mask; -} - -static int -write_pool(struct entropy_store *r, const char __user *buffer, size_t count) -{ - size_t bytes; - __u32 t, buf[16]; - const char __user *p = buffer; - - while (count > 0) { - int b, i = 0; - - bytes = min(count, sizeof(buf)); - if (copy_from_user(&buf, p, bytes)) - return -EFAULT; - - for (b = bytes ; b > 0 ; b -= sizeof(__u32), i++) { - if (!arch_get_random_int(&t)) - break; - buf[i] ^= t; - } - - count -= bytes; - p += bytes; - - mix_pool_bytes(r, buf, bytes); - cond_resched(); - } - - return 0; -} - -static ssize_t random_write(struct file *file, const char __user *buffer, - size_t count, loff_t *ppos) -{ - size_t ret; - - ret = write_pool(&input_pool, buffer, count); - if (ret) - return ret; - - return (ssize_t)count; + return get_random_bytes_user(iter); } static long random_ioctl(struct file *f, unsigned int cmd, unsigned long arg) { - int size, ent_count; int __user *p = (int __user *)arg; - int retval; + int ent_count; switch (cmd) { case RNDGETENTCNT: - /* inherently racy, no point locking */ - ent_count = ENTROPY_BITS(&input_pool); - if (put_user(ent_count, p)) + /* Inherently racy, no point locking. */ + if (put_user(input_pool.init_bits, p)) return -EFAULT; return 0; case RNDADDTOENTCNT: @@ -1918,38 +1321,48 @@ return -EPERM; if (get_user(ent_count, p)) return -EFAULT; - return credit_entropy_bits_safe(&input_pool, ent_count); - case RNDADDENTROPY: + if (ent_count < 0) + return -EINVAL; + credit_init_bits(ent_count); + return 0; + case RNDADDENTROPY: { + struct iov_iter iter; + struct iovec iov; + ssize_t ret; + int len; + if (!capable(CAP_SYS_ADMIN)) return -EPERM; if (get_user(ent_count, p++)) return -EFAULT; if (ent_count < 0) return -EINVAL; - if (get_user(size, p++)) + if (get_user(len, p++)) + return -EFAULT; + ret = import_single_range(WRITE, p, len, &iov, &iter); + if (unlikely(ret)) + return ret; + ret = write_pool_user(&iter); + if (unlikely(ret < 0)) + return ret; + /* Since we're crediting, enforce that it was all written into the pool. */ + if (unlikely(ret != len)) return -EFAULT; - retval = write_pool(&input_pool, (const char __user *)p, - size); - if (retval < 0) - return retval; - return credit_entropy_bits_safe(&input_pool, ent_count); + credit_init_bits(ent_count); + return 0; + } case RNDZAPENTCNT: case RNDCLEARPOOL: - /* - * Clear the entropy pool counters. We no longer clear - * the entropy pool, as that's silly. - */ + /* No longer has any effect. */ if (!capable(CAP_SYS_ADMIN)) return -EPERM; - input_pool.entropy_count = 0; return 0; case RNDRESEEDCRNG: if (!capable(CAP_SYS_ADMIN)) return -EPERM; - if (crng_init < 2) + if (!crng_ready()) return -ENODATA; - crng_reseed(&primary_crng, &input_pool); - crng_global_init_time = jiffies - 1; + crng_reseed(); return 0; default: return -EINVAL; @@ -1962,55 +1375,56 @@ } const struct file_operations random_fops = { - .read = random_read, - .write = random_write, - .poll = random_poll, + .read_iter = random_read_iter, + .write_iter = random_write_iter, + .poll = random_poll, .unlocked_ioctl = random_ioctl, .compat_ioctl = compat_ptr_ioctl, .fasync = random_fasync, .llseek = noop_llseek, + .splice_read = generic_file_splice_read, + .splice_write = iter_file_splice_write, }; const struct file_operations urandom_fops = { - .read = urandom_read, - .write = random_write, + .read_iter = urandom_read_iter, + .write_iter = random_write_iter, .unlocked_ioctl = random_ioctl, .compat_ioctl = compat_ptr_ioctl, .fasync = random_fasync, .llseek = noop_llseek, + .splice_read = generic_file_splice_read, + .splice_write = iter_file_splice_write, }; -SYSCALL_DEFINE3(getrandom, char __user *, buf, size_t, count, - unsigned int, flags) -{ - int ret; - - if (flags & ~(GRND_NONBLOCK|GRND_RANDOM|GRND_INSECURE)) - return -EINVAL; - - /* - * Requesting insecure and blocking randomness at the same time makes - * no sense. - */ - if ((flags & (GRND_INSECURE|GRND_RANDOM)) == (GRND_INSECURE|GRND_RANDOM)) - return -EINVAL; - - if (count > INT_MAX) - count = INT_MAX; - - if (!(flags & GRND_INSECURE) && !crng_ready()) { - if (flags & GRND_NONBLOCK) - return -EAGAIN; - ret = wait_for_random_bytes(); - if (unlikely(ret)) - return ret; - } - return urandom_read_nowarn(NULL, buf, count, NULL); -} /******************************************************************** * - * Sysctl interface + * Sysctl interface. + * + * These are partly unused legacy knobs with dummy values to not break + * userspace and partly still useful things. They are usually accessible + * in /proc/sys/kernel/random/ and are as follows: + * + * - boot_id - a UUID representing the current boot. + * + * - uuid - a random UUID, different each time the file is read. + * + * - poolsize - the number of bits of entropy that the input pool can + * hold, tied to the POOL_BITS constant. + * + * - entropy_avail - the number of bits of entropy currently in the + * input pool. Always <= poolsize. + * + * - write_wakeup_threshold - the amount of entropy in the input pool + * below which write polls to /dev/random will unblock, requesting + * more entropy, tied to the POOL_READY_BITS constant. It is writable + * to avoid breaking old userspaces, but writing to it does not + * change any behavior of the RNG. + * + * - urandom_min_reseed_secs - fixed to the value CRNG_RESEED_INTERVAL. + * It is writable to avoid breaking old userspaces, but writing + * to it does not change any behavior of the RNG. * ********************************************************************/ @@ -2018,25 +1432,28 @@ #include -static int min_write_thresh; -static int max_write_thresh = INPUT_POOL_WORDS * 32; -static int random_min_urandom_seed = 60; -static char sysctl_bootid[16]; +static int sysctl_random_min_urandom_seed = CRNG_RESEED_INTERVAL / HZ; +static int sysctl_random_write_wakeup_bits = POOL_READY_BITS; +static int sysctl_poolsize = POOL_BITS; +static u8 sysctl_bootid[UUID_SIZE]; /* * This function is used to return both the bootid UUID, and random - * UUID. The difference is in whether table->data is NULL; if it is, + * UUID. The difference is in whether table->data is NULL; if it is, * then a new UUID is generated and returned to the user. - * - * If the user accesses this via the proc interface, the UUID will be - * returned as an ASCII string in the standard UUID format; if via the - * sysctl system call, as 16 bytes of binary data. */ -static int proc_do_uuid(struct ctl_table *table, int write, - void *buffer, size_t *lenp, loff_t *ppos) +static int proc_do_uuid(struct ctl_table *table, int write, void *buf, + size_t *lenp, loff_t *ppos) { - struct ctl_table fake_table; - unsigned char buf[64], tmp_uuid[16], *uuid; + u8 tmp_uuid[UUID_SIZE], *uuid; + char uuid_string[UUID_STRING_LEN + 1]; + struct ctl_table fake_table = { + .data = uuid_string, + .maxlen = UUID_STRING_LEN + }; + + if (write) + return -EPERM; uuid = table->data; if (!uuid) { @@ -2051,32 +1468,17 @@ spin_unlock(&bootid_spinlock); } - sprintf(buf, "%pU", uuid); - - fake_table.data = buf; - fake_table.maxlen = sizeof(buf); - - return proc_dostring(&fake_table, write, buffer, lenp, ppos); + snprintf(uuid_string, sizeof(uuid_string), "%pU", uuid); + return proc_dostring(&fake_table, 0, buf, lenp, ppos); } -/* - * Return entropy available scaled to integral bits - */ -static int proc_do_entropy(struct ctl_table *table, int write, - void *buffer, size_t *lenp, loff_t *ppos) +/* The same as proc_dointvec, but writes don't change anything. */ +static int proc_do_rointvec(struct ctl_table *table, int write, void *buf, + size_t *lenp, loff_t *ppos) { - struct ctl_table fake_table; - int entropy_count; - - entropy_count = *(int *)table->data >> ENTROPY_SHIFT; - - fake_table.data = &entropy_count; - fake_table.maxlen = sizeof(entropy_count); - - return proc_dointvec(&fake_table, write, buffer, lenp, ppos); + return write ? 0 : proc_dointvec(table, 0, buf, lenp, ppos); } -static int sysctl_poolsize = INPUT_POOL_WORDS * 32; extern struct ctl_table random_table[]; struct ctl_table random_table[] = { { @@ -2088,218 +1490,36 @@ }, { .procname = "entropy_avail", + .data = &input_pool.init_bits, .maxlen = sizeof(int), .mode = 0444, - .proc_handler = proc_do_entropy, - .data = &input_pool.entropy_count, + .proc_handler = proc_dointvec, }, { .procname = "write_wakeup_threshold", - .data = &random_write_wakeup_bits, + .data = &sysctl_random_write_wakeup_bits, .maxlen = sizeof(int), .mode = 0644, - .proc_handler = proc_dointvec_minmax, - .extra1 = &min_write_thresh, - .extra2 = &max_write_thresh, + .proc_handler = proc_do_rointvec, }, { .procname = "urandom_min_reseed_secs", - .data = &random_min_urandom_seed, + .data = &sysctl_random_min_urandom_seed, .maxlen = sizeof(int), .mode = 0644, - .proc_handler = proc_dointvec, + .proc_handler = proc_do_rointvec, }, { .procname = "boot_id", .data = &sysctl_bootid, - .maxlen = 16, .mode = 0444, .proc_handler = proc_do_uuid, }, { .procname = "uuid", - .maxlen = 16, .mode = 0444, .proc_handler = proc_do_uuid, }, -#ifdef ADD_INTERRUPT_BENCH - { - .procname = "add_interrupt_avg_cycles", - .data = &avg_cycles, - .maxlen = sizeof(avg_cycles), - .mode = 0444, - .proc_handler = proc_doulongvec_minmax, - }, - { - .procname = "add_interrupt_avg_deviation", - .data = &avg_deviation, - .maxlen = sizeof(avg_deviation), - .mode = 0444, - .proc_handler = proc_doulongvec_minmax, - }, -#endif { } }; -#endif /* CONFIG_SYSCTL */ - -struct batched_entropy { - union { - u64 entropy_u64[CHACHA_BLOCK_SIZE / sizeof(u64)]; - u32 entropy_u32[CHACHA_BLOCK_SIZE / sizeof(u32)]; - }; - unsigned int position; - spinlock_t batch_lock; -}; - -/* - * Get a random word for internal kernel use only. The quality of the random - * number is good as /dev/urandom, but there is no backtrack protection, with - * the goal of being quite fast and not depleting entropy. In order to ensure - * that the randomness provided by this function is okay, the function - * wait_for_random_bytes() should be called and return 0 at least once at any - * point prior. - */ -static DEFINE_PER_CPU(struct batched_entropy, batched_entropy_u64) = { - .batch_lock = __SPIN_LOCK_UNLOCKED(batched_entropy_u64.lock), -}; - -u64 get_random_u64(void) -{ - u64 ret; - unsigned long flags; - struct batched_entropy *batch; - static void *previous; - - warn_unseeded_randomness(&previous); - - batch = raw_cpu_ptr(&batched_entropy_u64); - spin_lock_irqsave(&batch->batch_lock, flags); - if (batch->position % ARRAY_SIZE(batch->entropy_u64) == 0) { - extract_crng((u8 *)batch->entropy_u64); - batch->position = 0; - } - ret = batch->entropy_u64[batch->position++]; - spin_unlock_irqrestore(&batch->batch_lock, flags); - return ret; -} -EXPORT_SYMBOL(get_random_u64); - -static DEFINE_PER_CPU(struct batched_entropy, batched_entropy_u32) = { - .batch_lock = __SPIN_LOCK_UNLOCKED(batched_entropy_u32.lock), -}; -u32 get_random_u32(void) -{ - u32 ret; - unsigned long flags; - struct batched_entropy *batch; - static void *previous; - - warn_unseeded_randomness(&previous); - - batch = raw_cpu_ptr(&batched_entropy_u32); - spin_lock_irqsave(&batch->batch_lock, flags); - if (batch->position % ARRAY_SIZE(batch->entropy_u32) == 0) { - extract_crng((u8 *)batch->entropy_u32); - batch->position = 0; - } - ret = batch->entropy_u32[batch->position++]; - spin_unlock_irqrestore(&batch->batch_lock, flags); - return ret; -} -EXPORT_SYMBOL(get_random_u32); - -/* It's important to invalidate all potential batched entropy that might - * be stored before the crng is initialized, which we can do lazily by - * simply resetting the counter to zero so that it's re-extracted on the - * next usage. */ -static void invalidate_batched_entropy(void) -{ - int cpu; - unsigned long flags; - - for_each_possible_cpu (cpu) { - struct batched_entropy *batched_entropy; - - batched_entropy = per_cpu_ptr(&batched_entropy_u32, cpu); - spin_lock_irqsave(&batched_entropy->batch_lock, flags); - batched_entropy->position = 0; - spin_unlock(&batched_entropy->batch_lock); - - batched_entropy = per_cpu_ptr(&batched_entropy_u64, cpu); - spin_lock(&batched_entropy->batch_lock); - batched_entropy->position = 0; - spin_unlock_irqrestore(&batched_entropy->batch_lock, flags); - } -} - -/** - * randomize_page - Generate a random, page aligned address - * @start: The smallest acceptable address the caller will take. - * @range: The size of the area, starting at @start, within which the - * random address must fall. - * - * If @start + @range would overflow, @range is capped. - * - * NOTE: Historical use of randomize_range, which this replaces, presumed that - * @start was already page aligned. We now align it regardless. - * - * Return: A page aligned address within [start, start + range). On error, - * @start is returned. - */ -unsigned long -randomize_page(unsigned long start, unsigned long range) -{ - if (!PAGE_ALIGNED(start)) { - range -= PAGE_ALIGN(start) - start; - start = PAGE_ALIGN(start); - } - - if (start > ULONG_MAX - range) - range = ULONG_MAX - start; - - range >>= PAGE_SHIFT; - - if (range == 0) - return start; - - return start + (get_random_long() % range << PAGE_SHIFT); -} - -/* Interface for in-kernel drivers of true hardware RNGs. - * Those devices may produce endless random bits and will be throttled - * when our pool is full. - */ -void add_hwgenerator_randomness(const char *buffer, size_t count, - size_t entropy) -{ - struct entropy_store *poolp = &input_pool; - - if (unlikely(crng_init == 0)) { - crng_fast_load(buffer, count); - return; - } - - /* Suspend writing if we're above the trickle threshold. - * We'll be woken up again once below random_write_wakeup_thresh, - * or when the calling thread is about to terminate. - */ - wait_event_interruptible(random_write_wait, kthread_should_stop() || - ENTROPY_BITS(&input_pool) <= random_write_wakeup_bits); - mix_pool_bytes(poolp, buffer, count); - credit_entropy_bits(poolp, entropy); -} -EXPORT_SYMBOL_GPL(add_hwgenerator_randomness); - -/* Handle random seed passed by bootloader. - * If the seed is trustworthy, it would be regarded as hardware RNGs. Otherwise - * it would be regarded as device data. - * The decision is controlled by CONFIG_RANDOM_TRUST_BOOTLOADER. - */ -void add_bootloader_randomness(const void *buf, unsigned int size) -{ - if (IS_ENABLED(CONFIG_RANDOM_TRUST_BOOTLOADER)) - add_hwgenerator_randomness(buf, size, size * 8); - else - add_device_randomness(buf, size); -} -EXPORT_SYMBOL_GPL(add_bootloader_randomness); +#endif /* CONFIG_SYSCTL */ diff -u linux-intel-iotg-5.15-5.15.0/drivers/cpufreq/cpufreq.c linux-intel-iotg-5.15-5.15.0/drivers/cpufreq/cpufreq.c --- linux-intel-iotg-5.15-5.15.0/drivers/cpufreq/cpufreq.c +++ linux-intel-iotg-5.15-5.15.0/drivers/cpufreq/cpufreq.c @@ -28,6 +28,7 @@ #include #include #include +#include #include static LIST_HEAD(cpufreq_policy_list); @@ -1701,6 +1702,16 @@ return new_freq; if (policy->cur != new_freq) { + /* + * For some platforms, the frequency returned by hardware may be + * slightly different from what is provided in the frequency + * table, for example hardware may return 499 MHz instead of 500 + * MHz. In such cases it is better to avoid getting into + * unnecessary frequency updates. + */ + if (abs(policy->cur - new_freq) < HZ_PER_MHZ) + return policy->cur; + cpufreq_out_of_sync(policy, new_freq); if (update) schedule_work(&policy->update); diff -u linux-intel-iotg-5.15-5.15.0/drivers/cpufreq/qcom-cpufreq-hw.c linux-intel-iotg-5.15-5.15.0/drivers/cpufreq/qcom-cpufreq-hw.c --- linux-intel-iotg-5.15-5.15.0/drivers/cpufreq/qcom-cpufreq-hw.c +++ linux-intel-iotg-5.15-5.15.0/drivers/cpufreq/qcom-cpufreq-hw.c @@ -24,12 +24,16 @@ #define CLK_HW_DIV 2 #define LUT_TURBO_IND 1 +#define GT_IRQ_STATUS BIT(2) + #define HZ_PER_KHZ 1000 struct qcom_cpufreq_soc_data { u32 reg_enable; + u32 reg_domain_state; u32 reg_freq_lut; u32 reg_volt_lut; + u32 reg_intr_clr; u32 reg_current_vote; u32 reg_perf_state; u8 lut_row_size; @@ -266,28 +270,31 @@ } } -static unsigned int qcom_lmh_get_throttle_freq(struct qcom_cpufreq_data *data) +static unsigned long qcom_lmh_get_throttle_freq(struct qcom_cpufreq_data *data) { - unsigned int val = readl_relaxed(data->base + data->soc_data->reg_current_vote); + unsigned int lval; + + if (data->soc_data->reg_current_vote) + lval = readl_relaxed(data->base + data->soc_data->reg_current_vote) & 0x3ff; + else + lval = readl_relaxed(data->base + data->soc_data->reg_domain_state) & 0xff; - return (val & 0x3FF) * 19200; + return lval * xo_rate; } static void qcom_lmh_dcvs_notify(struct qcom_cpufreq_data *data) { unsigned long max_capacity, capacity, freq_hz, throttled_freq; struct cpufreq_policy *policy = data->policy; - int cpu = cpumask_first(policy->cpus); + int cpu = cpumask_first(policy->related_cpus); struct device *dev = get_cpu_device(cpu); struct dev_pm_opp *opp; - unsigned int freq; /* * Get the h/w throttled frequency, normalize it using the * registered opp table and use it to calculate thermal pressure. */ - freq = qcom_lmh_get_throttle_freq(data); - freq_hz = freq * HZ_PER_KHZ; + freq_hz = qcom_lmh_get_throttle_freq(data); opp = dev_pm_opp_find_freq_floor(dev, &freq_hz); if (IS_ERR(opp) && PTR_ERR(opp) == -ERANGE) @@ -345,6 +352,10 @@ disable_irq_nosync(c_data->throttle_irq); schedule_delayed_work(&c_data->throttle_work, 0); + if (c_data->soc_data->reg_intr_clr) + writel_relaxed(GT_IRQ_STATUS, + c_data->base + c_data->soc_data->reg_intr_clr); + return IRQ_HANDLED; } @@ -359,8 +370,10 @@ static const struct qcom_cpufreq_soc_data epss_soc_data = { .reg_enable = 0x0, + .reg_domain_state = 0x20, .reg_freq_lut = 0x100, .reg_volt_lut = 0x200, + .reg_intr_clr = 0x308, .reg_perf_state = 0x320, .lut_row_size = 4, }; diff -u linux-intel-iotg-5.15-5.15.0/drivers/crypto/allwinner/sun8i-ss/sun8i-ss-cipher.c linux-intel-iotg-5.15-5.15.0/drivers/crypto/allwinner/sun8i-ss/sun8i-ss-cipher.c --- linux-intel-iotg-5.15-5.15.0/drivers/crypto/allwinner/sun8i-ss/sun8i-ss-cipher.c +++ linux-intel-iotg-5.15-5.15.0/drivers/crypto/allwinner/sun8i-ss/sun8i-ss-cipher.c @@ -93,6 +93,68 @@ return err; } +static int sun8i_ss_setup_ivs(struct skcipher_request *areq) +{ + struct crypto_skcipher *tfm = crypto_skcipher_reqtfm(areq); + struct sun8i_cipher_tfm_ctx *op = crypto_skcipher_ctx(tfm); + struct sun8i_ss_dev *ss = op->ss; + struct sun8i_cipher_req_ctx *rctx = skcipher_request_ctx(areq); + struct scatterlist *sg = areq->src; + unsigned int todo, offset; + unsigned int len = areq->cryptlen; + unsigned int ivsize = crypto_skcipher_ivsize(tfm); + struct sun8i_ss_flow *sf = &ss->flows[rctx->flow]; + int i = 0; + u32 a; + int err; + + rctx->ivlen = ivsize; + if (rctx->op_dir & SS_DECRYPTION) { + offset = areq->cryptlen - ivsize; + scatterwalk_map_and_copy(sf->biv, areq->src, offset, + ivsize, 0); + } + + /* we need to copy all IVs from source in case DMA is bi-directionnal */ + while (sg && len) { + if (sg_dma_len(sg) == 0) { + sg = sg_next(sg); + continue; + } + if (i == 0) + memcpy(sf->iv[0], areq->iv, ivsize); + a = dma_map_single(ss->dev, sf->iv[i], ivsize, DMA_TO_DEVICE); + if (dma_mapping_error(ss->dev, a)) { + memzero_explicit(sf->iv[i], ivsize); + dev_err(ss->dev, "Cannot DMA MAP IV\n"); + err = -EFAULT; + goto dma_iv_error; + } + rctx->p_iv[i] = a; + /* we need to setup all others IVs only in the decrypt way */ + if (rctx->op_dir & SS_ENCRYPTION) + return 0; + todo = min(len, sg_dma_len(sg)); + len -= todo; + i++; + if (i < MAX_SG) { + offset = sg->length - ivsize; + scatterwalk_map_and_copy(sf->iv[i], sg, offset, ivsize, 0); + } + rctx->niv = i; + sg = sg_next(sg); + } + + return 0; +dma_iv_error: + i--; + while (i >= 0) { + dma_unmap_single(ss->dev, rctx->p_iv[i], ivsize, DMA_TO_DEVICE); + memzero_explicit(sf->iv[i], ivsize); + } + return err; +} + static int sun8i_ss_cipher(struct skcipher_request *areq) { struct crypto_skcipher *tfm = crypto_skcipher_reqtfm(areq); @@ -101,9 +163,9 @@ struct sun8i_cipher_req_ctx *rctx = skcipher_request_ctx(areq); struct skcipher_alg *alg = crypto_skcipher_alg(tfm); struct sun8i_ss_alg_template *algt; + struct sun8i_ss_flow *sf = &ss->flows[rctx->flow]; struct scatterlist *sg; unsigned int todo, len, offset, ivsize; - void *backup_iv = NULL; int nr_sgs = 0; int nr_sgd = 0; int err = 0; @@ -134,30 +196,9 @@ ivsize = crypto_skcipher_ivsize(tfm); if (areq->iv && crypto_skcipher_ivsize(tfm) > 0) { - rctx->ivlen = ivsize; - rctx->biv = kzalloc(ivsize, GFP_KERNEL | GFP_DMA); - if (!rctx->biv) { - err = -ENOMEM; + err = sun8i_ss_setup_ivs(areq); + if (err) goto theend_key; - } - if (rctx->op_dir & SS_DECRYPTION) { - backup_iv = kzalloc(ivsize, GFP_KERNEL); - if (!backup_iv) { - err = -ENOMEM; - goto theend_key; - } - offset = areq->cryptlen - ivsize; - scatterwalk_map_and_copy(backup_iv, areq->src, offset, - ivsize, 0); - } - memcpy(rctx->biv, areq->iv, ivsize); - rctx->p_iv = dma_map_single(ss->dev, rctx->biv, rctx->ivlen, - DMA_TO_DEVICE); - if (dma_mapping_error(ss->dev, rctx->p_iv)) { - dev_err(ss->dev, "Cannot DMA MAP IV\n"); - err = -ENOMEM; - goto theend_iv; - } } if (areq->src == areq->dst) { nr_sgs = dma_map_sg(ss->dev, areq->src, sg_nents(areq->src), @@ -243,21 +284,19 @@ } theend_iv: - if (rctx->p_iv) - dma_unmap_single(ss->dev, rctx->p_iv, rctx->ivlen, - DMA_TO_DEVICE); - if (areq->iv && ivsize > 0) { - if (rctx->biv) { - offset = areq->cryptlen - ivsize; - if (rctx->op_dir & SS_DECRYPTION) { - memcpy(areq->iv, backup_iv, ivsize); - kfree_sensitive(backup_iv); - } else { - scatterwalk_map_and_copy(areq->iv, areq->dst, offset, - ivsize, 0); - } - kfree(rctx->biv); + for (i = 0; i < rctx->niv; i++) { + dma_unmap_single(ss->dev, rctx->p_iv[i], ivsize, DMA_TO_DEVICE); + memzero_explicit(sf->iv[i], ivsize); + } + + offset = areq->cryptlen - ivsize; + if (rctx->op_dir & SS_DECRYPTION) { + memcpy(areq->iv, sf->biv, ivsize); + memzero_explicit(sf->biv, ivsize); + } else { + scatterwalk_map_and_copy(areq->iv, areq->dst, offset, + ivsize, 0); } } diff -u linux-intel-iotg-5.15-5.15.0/drivers/crypto/allwinner/sun8i-ss/sun8i-ss-core.c linux-intel-iotg-5.15-5.15.0/drivers/crypto/allwinner/sun8i-ss/sun8i-ss-core.c --- linux-intel-iotg-5.15-5.15.0/drivers/crypto/allwinner/sun8i-ss/sun8i-ss-core.c +++ linux-intel-iotg-5.15-5.15.0/drivers/crypto/allwinner/sun8i-ss/sun8i-ss-core.c @@ -66,6 +66,7 @@ const char *name) { int flow = rctx->flow; + unsigned int ivlen = rctx->ivlen; u32 v = SS_START; int i; @@ -104,15 +105,14 @@ mutex_lock(&ss->mlock); writel(rctx->p_key, ss->base + SS_KEY_ADR_REG); - if (i == 0) { - if (rctx->p_iv) - writel(rctx->p_iv, ss->base + SS_IV_ADR_REG); - } else { - if (rctx->biv) { - if (rctx->op_dir == SS_ENCRYPTION) - writel(rctx->t_dst[i - 1].addr + rctx->t_dst[i - 1].len * 4 - rctx->ivlen, ss->base + SS_IV_ADR_REG); + if (ivlen) { + if (rctx->op_dir == SS_ENCRYPTION) { + if (i == 0) + writel(rctx->p_iv[0], ss->base + SS_IV_ADR_REG); else - writel(rctx->t_src[i - 1].addr + rctx->t_src[i - 1].len * 4 - rctx->ivlen, ss->base + SS_IV_ADR_REG); + writel(rctx->t_dst[i - 1].addr + rctx->t_dst[i - 1].len * 4 - ivlen, ss->base + SS_IV_ADR_REG); + } else { + writel(rctx->p_iv[i], ss->base + SS_IV_ADR_REG); } } @@ -464,7 +464,7 @@ */ static int allocate_flows(struct sun8i_ss_dev *ss) { - int i, err; + int i, j, err; ss->flows = devm_kcalloc(ss->dev, MAXFLOW, sizeof(struct sun8i_ss_flow), GFP_KERNEL); @@ -474,6 +474,18 @@ for (i = 0; i < MAXFLOW; i++) { init_completion(&ss->flows[i].complete); + ss->flows[i].biv = devm_kmalloc(ss->dev, AES_BLOCK_SIZE, + GFP_KERNEL | GFP_DMA); + if (!ss->flows[i].biv) + goto error_engine; + + for (j = 0; j < MAX_SG; j++) { + ss->flows[i].iv[j] = devm_kmalloc(ss->dev, AES_BLOCK_SIZE, + GFP_KERNEL | GFP_DMA); + if (!ss->flows[i].iv[j]) + goto error_engine; + } + ss->flows[i].engine = crypto_engine_alloc_init(ss->dev, true); if (!ss->flows[i].engine) { dev_err(ss->dev, "Cannot allocate engine\n"); diff -u linux-intel-iotg-5.15-5.15.0/drivers/crypto/allwinner/sun8i-ss/sun8i-ss-hash.c linux-intel-iotg-5.15-5.15.0/drivers/crypto/allwinner/sun8i-ss/sun8i-ss-hash.c --- linux-intel-iotg-5.15-5.15.0/drivers/crypto/allwinner/sun8i-ss/sun8i-ss-hash.c +++ linux-intel-iotg-5.15-5.15.0/drivers/crypto/allwinner/sun8i-ss/sun8i-ss-hash.c @@ -380,13 +380,21 @@ } len = areq->nbytes; - for_each_sg(areq->src, sg, nr_sgs, i) { + sg = areq->src; + i = 0; + while (len > 0 && sg) { + if (sg_dma_len(sg) == 0) { + sg = sg_next(sg); + continue; + } rctx->t_src[i].addr = sg_dma_address(sg); todo = min(len, sg_dma_len(sg)); rctx->t_src[i].len = todo / 4; len -= todo; rctx->t_dst[i].addr = addr_res; rctx->t_dst[i].len = digestsize / 4; + sg = sg_next(sg); + i++; } if (len > 0) { dev_err(ss->dev, "remaining len %d\n", len); diff -u linux-intel-iotg-5.15-5.15.0/drivers/crypto/ccree/cc_buffer_mgr.c linux-intel-iotg-5.15-5.15.0/drivers/crypto/ccree/cc_buffer_mgr.c --- linux-intel-iotg-5.15-5.15.0/drivers/crypto/ccree/cc_buffer_mgr.c +++ linux-intel-iotg-5.15-5.15.0/drivers/crypto/ccree/cc_buffer_mgr.c @@ -356,12 +356,14 @@ req_ctx->mlli_params.mlli_dma_addr); } - dma_unmap_sg(dev, src, req_ctx->in_nents, DMA_BIDIRECTIONAL); - dev_dbg(dev, "Unmapped req->src=%pK\n", sg_virt(src)); - if (src != dst) { - dma_unmap_sg(dev, dst, req_ctx->out_nents, DMA_BIDIRECTIONAL); + dma_unmap_sg(dev, src, req_ctx->in_nents, DMA_TO_DEVICE); + dma_unmap_sg(dev, dst, req_ctx->out_nents, DMA_FROM_DEVICE); dev_dbg(dev, "Unmapped req->dst=%pK\n", sg_virt(dst)); + dev_dbg(dev, "Unmapped req->src=%pK\n", sg_virt(src)); + } else { + dma_unmap_sg(dev, src, req_ctx->in_nents, DMA_BIDIRECTIONAL); + dev_dbg(dev, "Unmapped req->src=%pK\n", sg_virt(src)); } } @@ -377,6 +379,7 @@ u32 dummy = 0; int rc = 0; u32 mapped_nents = 0; + int src_direction = (src != dst ? DMA_TO_DEVICE : DMA_BIDIRECTIONAL); req_ctx->dma_buf_type = CC_DMA_BUF_DLLI; mlli_params->curr_pool = NULL; @@ -399,7 +402,7 @@ } /* Map the src SGL */ - rc = cc_map_sg(dev, src, nbytes, DMA_BIDIRECTIONAL, &req_ctx->in_nents, + rc = cc_map_sg(dev, src, nbytes, src_direction, &req_ctx->in_nents, LLI_MAX_NUM_OF_DATA_ENTRIES, &dummy, &mapped_nents); if (rc) goto cipher_exit; @@ -416,7 +419,7 @@ } } else { /* Map the dst sg */ - rc = cc_map_sg(dev, dst, nbytes, DMA_BIDIRECTIONAL, + rc = cc_map_sg(dev, dst, nbytes, DMA_FROM_DEVICE, &req_ctx->out_nents, LLI_MAX_NUM_OF_DATA_ENTRIES, &dummy, &mapped_nents); if (rc) @@ -456,6 +459,7 @@ struct aead_req_ctx *areq_ctx = aead_request_ctx(req); unsigned int hw_iv_size = areq_ctx->hw_iv_size; struct cc_drvdata *drvdata = dev_get_drvdata(dev); + int src_direction = (req->src != req->dst ? DMA_TO_DEVICE : DMA_BIDIRECTIONAL); if (areq_ctx->mac_buf_dma_addr) { dma_unmap_single(dev, areq_ctx->mac_buf_dma_addr, @@ -514,13 +518,11 @@ sg_virt(req->src), areq_ctx->src.nents, areq_ctx->assoc.nents, areq_ctx->assoclen, req->cryptlen); - dma_unmap_sg(dev, req->src, areq_ctx->src.mapped_nents, - DMA_BIDIRECTIONAL); + dma_unmap_sg(dev, req->src, areq_ctx->src.mapped_nents, src_direction); if (req->src != req->dst) { dev_dbg(dev, "Unmapping dst sgl: req->dst=%pK\n", sg_virt(req->dst)); - dma_unmap_sg(dev, req->dst, areq_ctx->dst.mapped_nents, - DMA_BIDIRECTIONAL); + dma_unmap_sg(dev, req->dst, areq_ctx->dst.mapped_nents, DMA_FROM_DEVICE); } if (drvdata->coherent && areq_ctx->gen_ctx.op_type == DRV_CRYPTO_DIRECTION_DECRYPT && @@ -843,7 +845,7 @@ else size_for_map -= authsize; - rc = cc_map_sg(dev, req->dst, size_for_map, DMA_BIDIRECTIONAL, + rc = cc_map_sg(dev, req->dst, size_for_map, DMA_FROM_DEVICE, &areq_ctx->dst.mapped_nents, LLI_MAX_NUM_OF_DATA_ENTRIES, &dst_last_bytes, &dst_mapped_nents); @@ -1056,7 +1058,8 @@ size_to_map += authsize; } - rc = cc_map_sg(dev, req->src, size_to_map, DMA_BIDIRECTIONAL, + rc = cc_map_sg(dev, req->src, size_to_map, + (req->src != req->dst ? DMA_TO_DEVICE : DMA_BIDIRECTIONAL), &areq_ctx->src.mapped_nents, (LLI_MAX_NUM_OF_ASSOC_DATA_ENTRIES + LLI_MAX_NUM_OF_DATA_ENTRIES), diff -u linux-intel-iotg-5.15-5.15.0/drivers/crypto/qcom-rng.c linux-intel-iotg-5.15-5.15.0/drivers/crypto/qcom-rng.c --- linux-intel-iotg-5.15-5.15.0/drivers/crypto/qcom-rng.c +++ linux-intel-iotg-5.15-5.15.0/drivers/crypto/qcom-rng.c @@ -65,6 +65,7 @@ } else { /* copy only remaining bytes */ memcpy(data, &val, max - currsize); + break; } } while (currsize < max); diff -u linux-intel-iotg-5.15-5.15.0/drivers/crypto/stm32/stm32-crc32.c linux-intel-iotg-5.15-5.15.0/drivers/crypto/stm32/stm32-crc32.c --- linux-intel-iotg-5.15-5.15.0/drivers/crypto/stm32/stm32-crc32.c +++ linux-intel-iotg-5.15-5.15.0/drivers/crypto/stm32/stm32-crc32.c @@ -384,8 +384,10 @@ struct stm32_crc *crc = platform_get_drvdata(pdev); int ret = pm_runtime_get_sync(crc->dev); - if (ret < 0) + if (ret < 0) { + pm_runtime_put_noidle(crc->dev); return ret; + } spin_lock(&crc_list.lock); list_del(&crc->list); diff -u linux-intel-iotg-5.15-5.15.0/drivers/dma-buf/dma-buf.c linux-intel-iotg-5.15-5.15.0/drivers/dma-buf/dma-buf.c --- linux-intel-iotg-5.15-5.15.0/drivers/dma-buf/dma-buf.c +++ linux-intel-iotg-5.15-5.15.0/drivers/dma-buf/dma-buf.c @@ -436,6 +436,7 @@ static struct file *dma_buf_getfile(struct dma_buf *dmabuf, int flags) { + static atomic64_t dmabuf_inode = ATOMIC64_INIT(0); struct file *file; struct inode *inode = alloc_anon_inode(dma_buf_mnt->mnt_sb); @@ -445,6 +446,13 @@ inode->i_size = dmabuf->size; inode_set_bytes(inode, dmabuf->size); + /* + * The ->i_ino acquired from get_next_ino() is not unique thus + * not suitable for using it as dentry name by dmabuf stats. + * Override ->i_ino with the unique and dmabuffs specific + * value. + */ + inode->i_ino = atomic64_add_return(1, &dmabuf_inode); file = alloc_file_pseudo(inode, dma_buf_mnt, "dmabuf", flags, &dma_buf_fops); if (IS_ERR(file)) @@ -572,10 +580,6 @@ file->f_mode |= FMODE_LSEEK; dmabuf->file = file; - ret = dma_buf_stats_setup(dmabuf); - if (ret) - goto err_sysfs; - mutex_init(&dmabuf->lock); INIT_LIST_HEAD(&dmabuf->attachments); @@ -583,6 +587,10 @@ list_add(&dmabuf->list_node, &db_list.head); mutex_unlock(&db_list.lock); + ret = dma_buf_stats_setup(dmabuf); + if (ret) + goto err_sysfs; + return dmabuf; err_sysfs: diff -u linux-intel-iotg-5.15-5.15.0/drivers/dma/at_xdmac.c linux-intel-iotg-5.15-5.15.0/drivers/dma/at_xdmac.c --- linux-intel-iotg-5.15-5.15.0/drivers/dma/at_xdmac.c +++ linux-intel-iotg-5.15-5.15.0/drivers/dma/at_xdmac.c @@ -1450,7 +1450,7 @@ { struct at_xdmac_chan *atchan = to_at_xdmac_chan(chan); struct at_xdmac *atxdmac = to_at_xdmac(atchan->chan.device); - struct at_xdmac_desc *desc, *_desc; + struct at_xdmac_desc *desc, *_desc, *iter; struct list_head *descs_list; enum dma_status ret; int residue, retry; @@ -1565,11 +1565,13 @@ * microblock. */ descs_list = &desc->descs_list; - list_for_each_entry_safe(desc, _desc, descs_list, desc_node) { - dwidth = at_xdmac_get_dwidth(desc->lld.mbr_cfg); - residue -= (desc->lld.mbr_ubc & 0xffffff) << dwidth; - if ((desc->lld.mbr_nda & 0xfffffffc) == cur_nda) + list_for_each_entry_safe(iter, _desc, descs_list, desc_node) { + dwidth = at_xdmac_get_dwidth(iter->lld.mbr_cfg); + residue -= (iter->lld.mbr_ubc & 0xffffff) << dwidth; + if ((iter->lld.mbr_nda & 0xfffffffc) == cur_nda) { + desc = iter; break; + } } residue += cur_ubc << dwidth; diff -u linux-intel-iotg-5.15-5.15.0/drivers/dma/idxd/device.c linux-intel-iotg-5.15-5.15.0/drivers/dma/idxd/device.c --- linux-intel-iotg-5.15-5.15.0/drivers/dma/idxd/device.c +++ linux-intel-iotg-5.15-5.15.0/drivers/dma/idxd/device.c @@ -406,7 +406,6 @@ { lockdep_assert_held(&wq->wq_lock); - idxd_wq_disable_cleanup(wq); wq->size = 0; wq->group = NULL; } @@ -723,14 +722,17 @@ if (wq->state == IDXD_WQ_ENABLED) { idxd_wq_disable_cleanup(wq); - idxd_wq_device_reset_cleanup(wq); wq->state = IDXD_WQ_DISABLED; } + idxd_wq_device_reset_cleanup(wq); } } void idxd_device_clear_state(struct idxd_device *idxd) { + if (!test_bit(IDXD_FLAG_CONFIGURABLE, &idxd->flags)) + return; + idxd_groups_clear_state(idxd); idxd_engines_clear_state(idxd); idxd_device_wqs_clear_state(idxd); diff -u linux-intel-iotg-5.15-5.15.0/drivers/dma/idxd/sysfs.c linux-intel-iotg-5.15-5.15.0/drivers/dma/idxd/sysfs.c --- linux-intel-iotg-5.15-5.15.0/drivers/dma/idxd/sysfs.c +++ linux-intel-iotg-5.15-5.15.0/drivers/dma/idxd/sysfs.c @@ -842,6 +842,9 @@ u64 xfer_size; int rc; + if (!test_bit(IDXD_FLAG_CONFIGURABLE, &idxd->flags)) + return -EPERM; + if (wq->state != IDXD_WQ_DISABLED) return -EPERM; @@ -876,6 +879,9 @@ u64 batch_size; int rc; + if (!test_bit(IDXD_FLAG_CONFIGURABLE, &idxd->flags)) + return -EPERM; + if (wq->state != IDXD_WQ_DISABLED) return -EPERM; diff -u linux-intel-iotg-5.15-5.15.0/drivers/dma/stm32-mdma.c linux-intel-iotg-5.15-5.15.0/drivers/dma/stm32-mdma.c --- linux-intel-iotg-5.15-5.15.0/drivers/dma/stm32-mdma.c +++ linux-intel-iotg-5.15-5.15.0/drivers/dma/stm32-mdma.c @@ -40,7 +40,6 @@ STM32_MDMA_SHIFT(mask)) #define STM32_MDMA_GISR0 0x0000 /* MDMA Int Status Reg 1 */ -#define STM32_MDMA_GISR1 0x0004 /* MDMA Int Status Reg 2 */ /* MDMA Channel x interrupt/status register */ #define STM32_MDMA_CISR(x) (0x40 + 0x40 * (x)) /* x = 0..62 */ @@ -196,7 +195,7 @@ #define STM32_MDMA_MAX_BUF_LEN 128 #define STM32_MDMA_MAX_BLOCK_LEN 65536 -#define STM32_MDMA_MAX_CHANNELS 63 +#define STM32_MDMA_MAX_CHANNELS 32 #define STM32_MDMA_MAX_REQUESTS 256 #define STM32_MDMA_MAX_BURST 128 #define STM32_MDMA_VERY_HIGH_PRIORITY 0x3 @@ -1345,26 +1344,16 @@ static irqreturn_t stm32_mdma_irq_handler(int irq, void *devid) { struct stm32_mdma_device *dmadev = devid; - struct stm32_mdma_chan *chan = devid; + struct stm32_mdma_chan *chan; u32 reg, id, ccr, ien, status; /* Find out which channel generates the interrupt */ status = readl_relaxed(dmadev->base + STM32_MDMA_GISR0); - if (status) { - id = __ffs(status); - } else { - status = readl_relaxed(dmadev->base + STM32_MDMA_GISR1); - if (!status) { - dev_dbg(mdma2dev(dmadev), "spurious it\n"); - return IRQ_NONE; - } - id = __ffs(status); - /* - * As GISR0 provides status for channel id from 0 to 31, - * so GISR1 provides status for channel id from 32 to 62 - */ - id += 32; + if (!status) { + dev_dbg(mdma2dev(dmadev), "spurious it\n"); + return IRQ_NONE; } + id = __ffs(status); chan = &dmadev->chan[id]; if (!chan) { diff -u linux-intel-iotg-5.15-5.15.0/drivers/edac/synopsys_edac.c linux-intel-iotg-5.15-5.15.0/drivers/edac/synopsys_edac.c --- linux-intel-iotg-5.15-5.15.0/drivers/edac/synopsys_edac.c +++ linux-intel-iotg-5.15-5.15.0/drivers/edac/synopsys_edac.c @@ -163,6 +163,11 @@ #define ECC_STAT_CECNT_SHIFT 8 #define ECC_STAT_BITNUM_MASK 0x7F +/* ECC error count register definitions */ +#define ECC_ERRCNT_UECNT_MASK 0xFFFF0000 +#define ECC_ERRCNT_UECNT_SHIFT 16 +#define ECC_ERRCNT_CECNT_MASK 0xFFFF + /* DDR QOS Interrupt register definitions */ #define DDR_QOS_IRQ_STAT_OFST 0x20200 #define DDR_QOSUE_MASK 0x4 @@ -418,15 +423,16 @@ base = priv->baseaddr; p = &priv->stat; + regval = readl(base + ECC_ERRCNT_OFST); + p->ce_cnt = regval & ECC_ERRCNT_CECNT_MASK; + p->ue_cnt = (regval & ECC_ERRCNT_UECNT_MASK) >> ECC_ERRCNT_UECNT_SHIFT; + if (!p->ce_cnt) + goto ue_err; + regval = readl(base + ECC_STAT_OFST); if (!regval) return 1; - p->ce_cnt = (regval & ECC_STAT_CECNT_MASK) >> ECC_STAT_CECNT_SHIFT; - p->ue_cnt = (regval & ECC_STAT_UECNT_MASK) >> ECC_STAT_UECNT_SHIFT; - if (!p->ce_cnt) - goto ue_err; - p->ceinfo.bitpos = (regval & ECC_STAT_BITNUM_MASK); regval = readl(base + ECC_CEADDR0_OFST); diff -u linux-intel-iotg-5.15-5.15.0/drivers/firmware/arm_scmi/base.c linux-intel-iotg-5.15-5.15.0/drivers/firmware/arm_scmi/base.c --- linux-intel-iotg-5.15-5.15.0/drivers/firmware/arm_scmi/base.c +++ linux-intel-iotg-5.15-5.15.0/drivers/firmware/arm_scmi/base.c @@ -197,7 +197,7 @@ break; loop_num_ret = le32_to_cpu(*num_ret); - if (tot_num_ret + loop_num_ret > MAX_PROTOCOLS_IMP) { + if (loop_num_ret > MAX_PROTOCOLS_IMP - tot_num_ret) { dev_err(dev, "No. of Protocol > MAX_PROTOCOLS_IMP"); break; } diff -u linux-intel-iotg-5.15-5.15.0/drivers/gpio/Kconfig linux-intel-iotg-5.15-5.15.0/drivers/gpio/Kconfig --- linux-intel-iotg-5.15-5.15.0/drivers/gpio/Kconfig +++ linux-intel-iotg-5.15-5.15.0/drivers/gpio/Kconfig @@ -353,6 +353,17 @@ IXP4xx series of chips. If unsure, say N. + +config GPIO_LJCA + tristate "INTEL La Jolla Cove Adapter GPIO support" + depends on MFD_LJCA + help + Select this option to enable GPIO driver for the INTEL + La Jolla Cove Adapter (LJCA) board. + + This driver can also be built as a module. If so, the module + will be called gpio-ljca. + config GPIO_LOGICVC tristate "Xylon LogiCVC GPIO support" depends on MFD_SYSCON && OF diff -u linux-intel-iotg-5.15-5.15.0/drivers/gpio/Makefile linux-intel-iotg-5.15-5.15.0/drivers/gpio/Makefile --- linux-intel-iotg-5.15-5.15.0/drivers/gpio/Makefile +++ linux-intel-iotg-5.15-5.15.0/drivers/gpio/Makefile @@ -75,6 +75,7 @@ obj-$(CONFIG_GPIO_IXP4XX) += gpio-ixp4xx.o obj-$(CONFIG_GPIO_JANZ_TTL) += gpio-janz-ttl.o obj-$(CONFIG_GPIO_KEMPLD) += gpio-kempld.o +obj-$(CONFIG_GPIO_LJCA) += gpio-ljca.o obj-$(CONFIG_GPIO_LOGICVC) += gpio-logicvc.o obj-$(CONFIG_GPIO_LOONGSON1) += gpio-loongson1.o obj-$(CONFIG_GPIO_LOONGSON) += gpio-loongson.o diff -u linux-intel-iotg-5.15-5.15.0/drivers/gpio/gpio-rockchip.c linux-intel-iotg-5.15-5.15.0/drivers/gpio/gpio-rockchip.c --- linux-intel-iotg-5.15-5.15.0/drivers/gpio/gpio-rockchip.c +++ linux-intel-iotg-5.15-5.15.0/drivers/gpio/gpio-rockchip.c @@ -19,6 +19,7 @@ #include #include #include +#include #include #include "../pinctrl/core.h" @@ -691,7 +692,7 @@ struct device_node *pctlnp = of_get_parent(np); struct pinctrl_dev *pctldev = NULL; struct rockchip_pin_bank *bank = NULL; - struct rockchip_pin_output_deferred *cfg; + struct rockchip_pin_deferred *cfg; static int gpio; int id, ret; @@ -732,15 +733,22 @@ return ret; } - while (!list_empty(&bank->deferred_output)) { - cfg = list_first_entry(&bank->deferred_output, - struct rockchip_pin_output_deferred, head); + while (!list_empty(&bank->deferred_pins)) { + cfg = list_first_entry(&bank->deferred_pins, + struct rockchip_pin_deferred, head); list_del(&cfg->head); - ret = rockchip_gpio_direction_output(&bank->gpio_chip, cfg->pin, cfg->arg); - if (ret) - dev_warn(dev, "setting output pin %u to %u failed\n", cfg->pin, cfg->arg); - + switch (cfg->param) { + case PIN_CONFIG_OUTPUT: + ret = rockchip_gpio_direction_output(&bank->gpio_chip, cfg->pin, cfg->arg); + if (ret) + dev_warn(dev, "setting output pin %u to %u failed\n", cfg->pin, + cfg->arg); + break; + default: + dev_warn(dev, "unknown deferred config param %d\n", cfg->param); + break; + } kfree(cfg); } diff -u linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/amd/amdgpu/amdgpu.h linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/amd/amdgpu/amdgpu.h --- linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/amd/amdgpu/amdgpu.h +++ linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/amd/amdgpu/amdgpu.h @@ -1285,6 +1285,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_should_use_aspm(struct amdgpu_device *adev); void amdgpu_cs_report_moved_bytes(struct amdgpu_device *adev, u64 num_bytes, u64 num_vis_bytes); @@ -1411,9 +1412,11 @@ #if defined(CONFIG_ACPI) && defined(CONFIG_SUSPEND) bool amdgpu_acpi_is_s3_active(struct amdgpu_device *adev); +bool amdgpu_acpi_should_gpu_reset(struct amdgpu_device *adev); bool amdgpu_acpi_is_s0ix_active(struct amdgpu_device *adev); #else static inline bool amdgpu_acpi_is_s0ix_active(struct amdgpu_device *adev) { return false; } +static inline bool amdgpu_acpi_should_gpu_reset(struct amdgpu_device *adev) { return false; } static inline bool amdgpu_acpi_is_s3_active(struct amdgpu_device *adev) { return false; } #endif diff -u linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/amd/amdgpu/amdgpu_acpi.c linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/amd/amdgpu/amdgpu_acpi.c --- linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/amd/amdgpu/amdgpu_acpi.c +++ linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/amd/amdgpu/amdgpu_acpi.c @@ -1047,4 +1047,18 @@ /** + * amdgpu_acpi_should_gpu_reset + * + * @adev: amdgpu_device_pointer + * + * returns true if should reset GPU, false if not + */ +bool amdgpu_acpi_should_gpu_reset(struct amdgpu_device *adev) +{ + if (adev->flags & AMD_IS_APU) + return false; + return pm_suspend_target_state != PM_SUSPEND_TO_IDLE; +} + +/** * amdgpu_acpi_is_s0ix_active * diff -u linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/amd/amdgpu/amdgpu_cs.c linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/amd/amdgpu/amdgpu_cs.c --- linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/amd/amdgpu/amdgpu_cs.c +++ linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/amd/amdgpu/amdgpu_cs.c @@ -115,7 +115,7 @@ int ret; if (cs->in.num_chunks == 0) - return 0; + return -EINVAL; chunk_array = kvmalloc_array(cs->in.num_chunks, sizeof(uint64_t), GFP_KERNEL); if (!chunk_array) diff -u linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c --- linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c +++ linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c @@ -1309,6 +1309,31 @@ return true; } +/** + * amdgpu_device_should_use_aspm - check if the device should program ASPM + * + * @adev: amdgpu_device pointer + * + * Confirm whether the module parameter and pcie bridge agree that ASPM should + * be set for this device. + * + * Returns true if it should be used or false if not. + */ +bool amdgpu_device_should_use_aspm(struct amdgpu_device *adev) +{ + switch (amdgpu_aspm) { + case -1: + break; + case 0: + return false; + case 1: + return true; + default: + return false; + } + return pcie_aspm_enabled(adev->pdev); +} + /* if we get transitioned to only one device, take VGA back */ /** * amdgpu_device_vga_set_decode - enable/disable vga decode diff -u linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c --- linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c +++ linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c @@ -1949,6 +1949,7 @@ {0x1002, 0x7421, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_BEIGE_GOBY}, {0x1002, 0x7422, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_BEIGE_GOBY}, {0x1002, 0x7423, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_BEIGE_GOBY}, + {0x1002, 0x7424, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_BEIGE_GOBY}, {0x1002, 0x743F, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_BEIGE_GOBY}, {0, 0, 0} @@ -1989,9 +1990,6 @@ bool is_fw_fb; resource_size_t base, size; - if (amdgpu_aspm == -1 && !pcie_aspm_enabled(pdev)) - amdgpu_aspm = 0; - /* skip devices which are owned by radeon */ for (i = 0; i < ARRAY_SIZE(amdgpu_unsupported_pciidlist); i++) { if (amdgpu_unsupported_pciidlist[i] == pdev->device) @@ -2259,7 +2257,7 @@ struct drm_device *drm_dev = dev_get_drvdata(dev); struct amdgpu_device *adev = drm_to_adev(drm_dev); - if (!adev->in_s0ix) + if (amdgpu_acpi_should_gpu_reset(adev)) return amdgpu_asic_reset(adev); return 0; diff -u linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/amd/amdgpu/amdgpu_psp.c linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/amd/amdgpu/amdgpu_psp.c --- linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/amd/amdgpu/amdgpu_psp.c +++ linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/amd/amdgpu/amdgpu_psp.c @@ -314,7 +314,39 @@ } } + ret = amdgpu_bo_create_kernel(adev, PSP_1_MEG, PSP_1_MEG, + amdgpu_sriov_vf(adev) ? + AMDGPU_GEM_DOMAIN_VRAM : AMDGPU_GEM_DOMAIN_GTT, + &psp->fw_pri_bo, + &psp->fw_pri_mc_addr, + &psp->fw_pri_buf); + if (ret) + return ret; + + ret = amdgpu_bo_create_kernel(adev, PSP_FENCE_BUFFER_SIZE, PAGE_SIZE, + AMDGPU_GEM_DOMAIN_VRAM, + &psp->fence_buf_bo, + &psp->fence_buf_mc_addr, + &psp->fence_buf); + if (ret) + goto failed1; + + ret = amdgpu_bo_create_kernel(adev, PSP_CMD_BUFFER_SIZE, PAGE_SIZE, + AMDGPU_GEM_DOMAIN_VRAM, + &psp->cmd_buf_bo, &psp->cmd_buf_mc_addr, + (void **)&psp->cmd_buf_mem); + if (ret) + goto failed2; + return 0; + +failed2: + amdgpu_bo_free_kernel(&psp->fw_pri_bo, + &psp->fw_pri_mc_addr, &psp->fw_pri_buf); +failed1: + amdgpu_bo_free_kernel(&psp->fence_buf_bo, + &psp->fence_buf_mc_addr, &psp->fence_buf); + return ret; } static int psp_sw_fini(void *handle) @@ -344,6 +376,13 @@ kfree(cmd); cmd = NULL; + amdgpu_bo_free_kernel(&psp->fw_pri_bo, + &psp->fw_pri_mc_addr, &psp->fw_pri_buf); + amdgpu_bo_free_kernel(&psp->fence_buf_bo, + &psp->fence_buf_mc_addr, &psp->fence_buf); + amdgpu_bo_free_kernel(&psp->cmd_buf_bo, &psp->cmd_buf_mc_addr, + (void **)&psp->cmd_buf_mem); + return 0; } @@ -2580,51 +2619,18 @@ struct psp_context *psp = &adev->psp; if (amdgpu_sriov_vf(adev) && amdgpu_in_reset(adev)) { - psp_ring_stop(psp, PSP_RING_TYPE__KM); /* should not destroy ring, only stop */ - goto skip_memalloc; - } - - if (amdgpu_sriov_vf(adev)) { - ret = amdgpu_bo_create_kernel(adev, PSP_1_MEG, PSP_1_MEG, - AMDGPU_GEM_DOMAIN_VRAM, - &psp->fw_pri_bo, - &psp->fw_pri_mc_addr, - &psp->fw_pri_buf); + /* should not destroy ring, only stop */ + psp_ring_stop(psp, PSP_RING_TYPE__KM); } else { - ret = amdgpu_bo_create_kernel(adev, PSP_1_MEG, PSP_1_MEG, - AMDGPU_GEM_DOMAIN_GTT, - &psp->fw_pri_bo, - &psp->fw_pri_mc_addr, - &psp->fw_pri_buf); - } - - if (ret) - goto failed; - - ret = amdgpu_bo_create_kernel(adev, PSP_FENCE_BUFFER_SIZE, PAGE_SIZE, - AMDGPU_GEM_DOMAIN_VRAM, - &psp->fence_buf_bo, - &psp->fence_buf_mc_addr, - &psp->fence_buf); - if (ret) - goto failed; - - ret = amdgpu_bo_create_kernel(adev, PSP_CMD_BUFFER_SIZE, PAGE_SIZE, - AMDGPU_GEM_DOMAIN_VRAM, - &psp->cmd_buf_bo, &psp->cmd_buf_mc_addr, - (void **)&psp->cmd_buf_mem); - if (ret) - goto failed; + memset(psp->fence_buf, 0, PSP_FENCE_BUFFER_SIZE); - memset(psp->fence_buf, 0, PSP_FENCE_BUFFER_SIZE); - - ret = psp_ring_init(psp, PSP_RING_TYPE__KM); - if (ret) { - DRM_ERROR("PSP ring init failed!\n"); - goto failed; + ret = psp_ring_init(psp, PSP_RING_TYPE__KM); + if (ret) { + DRM_ERROR("PSP ring init failed!\n"); + goto failed; + } } -skip_memalloc: ret = psp_hw_start(psp); if (ret) goto failed; @@ -2730,13 +2736,6 @@ psp_tmr_terminate(psp); psp_ring_destroy(psp, PSP_RING_TYPE__KM); - amdgpu_bo_free_kernel(&psp->fw_pri_bo, - &psp->fw_pri_mc_addr, &psp->fw_pri_buf); - amdgpu_bo_free_kernel(&psp->fence_buf_bo, - &psp->fence_buf_mc_addr, &psp->fence_buf); - amdgpu_bo_free_kernel(&psp->cmd_buf_bo, &psp->cmd_buf_mc_addr, - (void **)&psp->cmd_buf_mem); - return 0; } diff -u linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/amd/amdgpu/cik.c linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/amd/amdgpu/cik.c --- linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/amd/amdgpu/cik.c +++ linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/amd/amdgpu/cik.c @@ -1719,7 +1719,7 @@ bool disable_l0s = false, disable_l1 = false, disable_plloff_in_l1 = false; bool disable_clkreq = false; - if (amdgpu_aspm == 0) + if (!amdgpu_device_should_use_aspm(adev)) return; if (pci_is_root_bus(adev->pdev->bus)) diff -u linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/amd/amdgpu/sdma_v4_0.c linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/amd/amdgpu/sdma_v4_0.c --- linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/amd/amdgpu/sdma_v4_0.c +++ linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/amd/amdgpu/sdma_v4_0.c @@ -770,8 +770,8 @@ DRM_DEBUG("Using doorbell -- " "wptr_offs == 0x%08x " - "lower_32_bits(ring->wptr) << 2 == 0x%08x " - "upper_32_bits(ring->wptr) << 2 == 0x%08x\n", + "lower_32_bits(ring->wptr << 2) == 0x%08x " + "upper_32_bits(ring->wptr << 2) == 0x%08x\n", ring->wptr_offs, lower_32_bits(ring->wptr << 2), upper_32_bits(ring->wptr << 2)); diff -u linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/amd/amdgpu/soc15.c linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/amd/amdgpu/soc15.c --- linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/amd/amdgpu/soc15.c +++ linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/amd/amdgpu/soc15.c @@ -689,7 +689,7 @@ static void soc15_program_aspm(struct amdgpu_device *adev) { - if (!amdgpu_aspm) + if (!amdgpu_device_should_use_aspm(adev)) return; if (!(adev->flags & AMD_IS_APU) && diff -u linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/amd/amdgpu/vi.c linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/amd/amdgpu/vi.c --- linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/amd/amdgpu/vi.c +++ linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/amd/amdgpu/vi.c @@ -81,6 +81,10 @@ #include "mxgpu_vi.h" #include "amdgpu_dm.h" +#if IS_ENABLED(CONFIG_X86) +#include +#endif + #define ixPCIE_LC_L1_PM_SUBSTATE 0x100100C6 #define PCIE_LC_L1_PM_SUBSTATE__LC_L1_SUBSTATES_OVERRIDE_EN_MASK 0x00000001L #define PCIE_LC_L1_PM_SUBSTATE__LC_PCI_PM_L1_2_OVERRIDE_MASK 0x00000002L @@ -1134,13 +1138,24 @@ WREG32_PCIE(ixPCIE_LC_CNTL, data); } +static bool aspm_support_quirk_check(void) +{ +#if IS_ENABLED(CONFIG_X86) + struct cpuinfo_x86 *c = &cpu_data(0); + + return !(c->x86 == 6 && c->x86_model == INTEL_FAM6_ALDERLAKE); +#else + return true; +#endif +} + static void vi_program_aspm(struct amdgpu_device *adev) { u32 data, data1, orig; bool bL1SS = false; bool bClkReqSupport = true; - if (!amdgpu_aspm) + if (!amdgpu_device_should_use_aspm(adev) || !aspm_support_quirk_check()) return; if (adev->flags & AMD_IS_APU || diff -u linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/amd/amdkfd/kfd_device_queue_manager.c linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/amd/amdkfd/kfd_device_queue_manager.c --- linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/amd/amdkfd/kfd_device_queue_manager.c +++ linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/amd/amdkfd/kfd_device_queue_manager.c @@ -138,19 +138,33 @@ } static void increment_queue_count(struct device_queue_manager *dqm, - enum kfd_queue_type type) + struct qcm_process_device *qpd, + struct queue *q) { dqm->active_queue_count++; - if (type == KFD_QUEUE_TYPE_COMPUTE || type == KFD_QUEUE_TYPE_DIQ) + if (q->properties.type == KFD_QUEUE_TYPE_COMPUTE || + q->properties.type == KFD_QUEUE_TYPE_DIQ) dqm->active_cp_queue_count++; + + if (q->properties.is_gws) { + dqm->gws_queue_count++; + qpd->mapped_gws_queue = true; + } } static void decrement_queue_count(struct device_queue_manager *dqm, - enum kfd_queue_type type) + struct qcm_process_device *qpd, + struct queue *q) { dqm->active_queue_count--; - if (type == KFD_QUEUE_TYPE_COMPUTE || type == KFD_QUEUE_TYPE_DIQ) + if (q->properties.type == KFD_QUEUE_TYPE_COMPUTE || + q->properties.type == KFD_QUEUE_TYPE_DIQ) dqm->active_cp_queue_count--; + + if (q->properties.is_gws) { + dqm->gws_queue_count--; + qpd->mapped_gws_queue = false; + } } static int allocate_doorbell(struct qcm_process_device *qpd, struct queue *q) @@ -390,7 +404,7 @@ list_add(&q->list, &qpd->queues_list); qpd->queue_count++; if (q->properties.is_active) - increment_queue_count(dqm, q->properties.type); + increment_queue_count(dqm, qpd, q); /* * Unconditionally increment this counter, regardless of the queue's @@ -515,13 +529,8 @@ deallocate_vmid(dqm, qpd, q); } qpd->queue_count--; - if (q->properties.is_active) { - decrement_queue_count(dqm, q->properties.type); - if (q->properties.is_gws) { - dqm->gws_queue_count--; - qpd->mapped_gws_queue = false; - } - } + if (q->properties.is_active) + decrement_queue_count(dqm, qpd, q); return retval; } @@ -613,12 +622,11 @@ * dqm->active_queue_count to determine whether a new runlist must be * uploaded. */ - if (q->properties.is_active && !prev_active) - increment_queue_count(dqm, q->properties.type); - else if (!q->properties.is_active && prev_active) - decrement_queue_count(dqm, q->properties.type); - - if (q->gws && !q->properties.is_gws) { + if (q->properties.is_active && !prev_active) { + increment_queue_count(dqm, &pdd->qpd, q); + } else if (!q->properties.is_active && prev_active) { + decrement_queue_count(dqm, &pdd->qpd, q); + } else if (q->gws && !q->properties.is_gws) { if (q->properties.is_active) { dqm->gws_queue_count++; pdd->qpd.mapped_gws_queue = true; @@ -680,11 +688,7 @@ mqd_mgr = dqm->mqd_mgrs[get_mqd_type_from_queue_type( q->properties.type)]; q->properties.is_active = false; - decrement_queue_count(dqm, q->properties.type); - if (q->properties.is_gws) { - dqm->gws_queue_count--; - qpd->mapped_gws_queue = false; - } + decrement_queue_count(dqm, qpd, q); if (WARN_ONCE(!dqm->sched_running, "Evict when stopped\n")) continue; @@ -730,7 +734,7 @@ continue; q->properties.is_active = false; - decrement_queue_count(dqm, q->properties.type); + decrement_queue_count(dqm, qpd, q); } pdd->last_evict_timestamp = get_jiffies_64(); retval = execute_queues_cpsch(dqm, @@ -801,11 +805,7 @@ mqd_mgr = dqm->mqd_mgrs[get_mqd_type_from_queue_type( q->properties.type)]; q->properties.is_active = true; - increment_queue_count(dqm, q->properties.type); - if (q->properties.is_gws) { - dqm->gws_queue_count++; - qpd->mapped_gws_queue = true; - } + increment_queue_count(dqm, qpd, q); if (WARN_ONCE(!dqm->sched_running, "Restore when stopped\n")) continue; @@ -863,7 +863,7 @@ continue; q->properties.is_active = true; - increment_queue_count(dqm, q->properties.type); + increment_queue_count(dqm, &pdd->qpd, q); } retval = execute_queues_cpsch(dqm, KFD_UNMAP_QUEUES_FILTER_DYNAMIC_QUEUES, 0); @@ -1265,7 +1265,7 @@ dqm->total_queue_count); list_add(&kq->list, &qpd->priv_queue_list); - increment_queue_count(dqm, kq->queue->properties.type); + increment_queue_count(dqm, qpd, kq->queue); qpd->is_debug = true; execute_queues_cpsch(dqm, KFD_UNMAP_QUEUES_FILTER_DYNAMIC_QUEUES, 0); dqm_unlock(dqm); @@ -1279,7 +1279,7 @@ { dqm_lock(dqm); list_del(&kq->list); - decrement_queue_count(dqm, kq->queue->properties.type); + decrement_queue_count(dqm, qpd, kq->queue); qpd->is_debug = false; execute_queues_cpsch(dqm, KFD_UNMAP_QUEUES_FILTER_ALL_QUEUES, 0); /* @@ -1346,7 +1346,7 @@ qpd->queue_count++; if (q->properties.is_active) { - increment_queue_count(dqm, q->properties.type); + increment_queue_count(dqm, qpd, q); execute_queues_cpsch(dqm, KFD_UNMAP_QUEUES_FILTER_DYNAMIC_QUEUES, 0); @@ -1548,15 +1548,11 @@ list_del(&q->list); qpd->queue_count--; if (q->properties.is_active) { - decrement_queue_count(dqm, q->properties.type); + decrement_queue_count(dqm, qpd, q); retval = execute_queues_cpsch(dqm, KFD_UNMAP_QUEUES_FILTER_DYNAMIC_QUEUES, 0); if (retval == -ETIME) qpd->reset_wavefronts = true; - if (q->properties.is_gws) { - dqm->gws_queue_count--; - qpd->mapped_gws_queue = false; - } } /* @@ -1747,7 +1743,7 @@ /* Clean all kernel queues */ list_for_each_entry_safe(kq, kq_next, &qpd->priv_queue_list, list) { list_del(&kq->list); - decrement_queue_count(dqm, kq->queue->properties.type); + decrement_queue_count(dqm, qpd, kq->queue); qpd->is_debug = false; dqm->total_queue_count--; filter = KFD_UNMAP_QUEUES_FILTER_ALL_QUEUES; @@ -1760,13 +1756,8 @@ else if (q->properties.type == KFD_QUEUE_TYPE_SDMA_XGMI) deallocate_sdma_queue(dqm, q); - if (q->properties.is_active) { - decrement_queue_count(dqm, q->properties.type); - if (q->properties.is_gws) { - dqm->gws_queue_count--; - qpd->mapped_gws_queue = false; - } - } + if (q->properties.is_active) + decrement_queue_count(dqm, qpd, q); dqm->total_queue_count--; } diff -u linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c --- linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c +++ linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c @@ -1050,6 +1050,11 @@ return 0; } + /* Reset DMCUB if it was previously running - before we overwrite its memory. */ + status = dmub_srv_hw_reset(dmub_srv); + if (status != DMUB_STATUS_OK) + DRM_WARN("Error resetting DMUB HW: %d\n", status); + hdr = (const struct dmcub_firmware_header_v1_0 *)dmub_fw->data; fw_inst_const = dmub_fw->data + @@ -1152,6 +1157,32 @@ return 0; } +static void dm_dmub_hw_resume(struct amdgpu_device *adev) +{ + struct dmub_srv *dmub_srv = adev->dm.dmub_srv; + enum dmub_status status; + bool init; + + if (!dmub_srv) { + /* DMUB isn't supported on the ASIC. */ + return; + } + + status = dmub_srv_is_hw_init(dmub_srv, &init); + if (status != DMUB_STATUS_OK) + DRM_WARN("DMUB hardware init check failed: %d\n", status); + + if (status == DMUB_STATUS_OK && init) { + /* Wait for firmware load to finish. */ + status = dmub_srv_wait_for_auto_load(dmub_srv, 100000); + if (status != DMUB_STATUS_OK) + DRM_WARN("Wait for DMUB auto-load failed: %d\n", status); + } else { + /* Perform the full hardware initialization. */ + dm_dmub_hw_init(adev); + } +} + #if defined(CONFIG_DRM_AMD_DC_DCN) static void mmhub_read_system_context(struct amdgpu_device *adev, struct dc_phy_addr_space_config *pa_config) { @@ -1417,7 +1448,7 @@ #if defined(CONFIG_DRM_AMD_SECURE_DISPLAY) adev->dm.crc_rd_wrk = amdgpu_dm_crtc_secure_display_create_work(); #endif - if (dc_enable_dmub_notifications(adev->dm.dc)) { + if (dc_is_dmub_outbox_supported(adev->dm.dc)) { init_completion(&adev->dm.dmub_aux_transfer_done); adev->dm.dmub_notify = kzalloc(sizeof(struct dmub_notification), GFP_KERNEL); if (!adev->dm.dmub_notify) { @@ -1455,6 +1486,13 @@ goto error; } + /* Enable outbox notification only after IRQ handlers are registered and DMUB is alive. + * It is expected that DMUB will resend any pending notifications at this point, for + * example HPD from DPIA. + */ + if (dc_is_dmub_outbox_supported(adev->dm.dc)) + dc_enable_dmub_outbox(adev->dm.dc); + /* create fake encoders for MST */ dm_dp_create_fake_mst_encoders(adev); @@ -2400,8 +2438,19 @@ if (amdgpu_in_reset(adev)) { dc_state = dm->cached_dc_state; - if (dc_enable_dmub_notifications(adev->dm.dc)) - amdgpu_dm_outbox_init(adev); + /* + * The dc->current_state is backed up into dm->cached_dc_state + * before we commit 0 streams. + * + * DC will clear link encoder assignments on the real state + * but the changes won't propagate over to the copy we made + * before the 0 streams commit. + * + * DC expects that link encoder assignments are *not* valid + * when committing a state, so as a workaround it needs to be + * cleared here. + */ + link_enc_cfg_init(dm->dc, dc_state); r = dm_dmub_hw_init(adev); if (r) @@ -2429,6 +2478,11 @@ WARN_ON(dc_validate_global_state(dm->dc, dc_state, false) != DC_OK); #endif + if (dc_is_dmub_outbox_supported(adev->dm.dc)) { + amdgpu_dm_outbox_init(adev); + dc_enable_dmub_outbox(adev->dm.dc); + } + WARN_ON(!dc_commit_state(dm->dc, dc_state)); dm_gpureset_commit_state(dm->cached_dc_state, dm); @@ -2450,14 +2504,14 @@ /* TODO: Remove dc_state->dccg, use dc->dccg directly. */ dc_resource_state_construct(dm->dc, dm_state->context); + /* Before powering on DC we need to re-initialize DMUB. */ + dm_dmub_hw_resume(adev); + /* Re-enable outbox interrupts for DPIA. */ - if (dc_enable_dmub_notifications(adev->dm.dc)) + if (dc_is_dmub_outbox_supported(adev->dm.dc)) { amdgpu_dm_outbox_init(adev); - - /* Before powering on DC we need to re-initialize DMUB. */ - r = dm_dmub_hw_init(adev); - if (r) - DRM_ERROR("DMUB interface failed to initialize: status=%d\n", r); + dc_enable_dmub_outbox(adev->dm.dc); + } /* power on hardware */ dc_set_power_state(dm->dc, DC_ACPI_CM_POWER_STATE_D0); diff -u linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/amd/display/dc/core/dc.c linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/amd/display/dc/core/dc.c --- linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/amd/display/dc/core/dc.c +++ linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/amd/display/dc/core/dc.c @@ -76,6 +76,8 @@ #include "dc_trace.h" +#include "dce/dmub_outbox.h" + #define CTX \ dc->ctx @@ -1001,8 +1003,6 @@ goto fail; } - dc_resource_state_construct(dc, dc->current_state); - if (!create_links(dc, init_params->num_virtual_links)) goto fail; @@ -1012,8 +1012,7 @@ if (!create_link_encoders(dc)) goto fail; - /* Initialise DIG link encoder resource tracking variables. */ - link_enc_cfg_init(dc, dc->current_state); + dc_resource_state_construct(dc, dc->current_state); return true; @@ -1884,6 +1883,11 @@ post_surface_trace(dc); + if (dc->ctx->dce_version >= DCE_VERSION_MAX) + TRACE_DCN_CLOCK_STATE(&context->bw_ctx.bw.dcn.clk); + else + TRACE_DCE_CLOCK_STATE(&context->bw_ctx.bw.dce); + if (is_flip_pending_in_pipes(dc, context)) return; @@ -3070,6 +3074,14 @@ if (new_pipe->plane_state && new_pipe->plane_state != old_pipe->plane_state) new_pipe->plane_state->force_full_update = true; } + } else if (update_type == UPDATE_TYPE_FAST && dc_ctx->dce_version >= DCE_VERSION_MAX) { + /* + * Previous frame finished and HW is ready for optimization. + * + * Only relevant for DCN behavior where we can guarantee the optimization + * is safe to apply - retain the legacy behavior for DCE. + */ + dc_post_update_surfaces_to_stream(dc); } @@ -3126,14 +3138,11 @@ pipe_ctx->plane_state->force_full_update = false; } } - /*let's use current_state to update watermark etc*/ - if (update_type >= UPDATE_TYPE_FULL) { - dc_post_update_surfaces_to_stream(dc); - if (dc_ctx->dce_version >= DCE_VERSION_MAX) - TRACE_DCN_CLOCK_STATE(&context->bw_ctx.bw.dcn.clk); - else - TRACE_DCE_CLOCK_STATE(&context->bw_ctx.bw.dce); + /* Legacy optimization path for DCE. */ + if (update_type >= UPDATE_TYPE_FULL && dc_ctx->dce_version < DCE_VERSION_MAX) { + dc_post_update_surfaces_to_stream(dc); + TRACE_DCE_CLOCK_STATE(&context->bw_ctx.bw.dce); } return; @@ -3526,13 +3535,23 @@ } #endif -/** - * dc_enable_dmub_notifications - Returns whether dmub notification can be enabled - * @dc: dc structure +/* + ***************************************************************************** + * Function: dc_is_dmub_outbox_supported - + * + * @brief + * Checks whether DMUB FW supports outbox notifications, if supported + * DM should register outbox interrupt prior to actually enabling interrupts + * via dc_enable_dmub_outbox + * + * @param + * [in] dc: dc structure * - * Returns: True to enable dmub notifications, False otherwise + * @return + * True if DMUB FW supports outbox notifications, False otherwise + ***************************************************************************** */ -bool dc_enable_dmub_notifications(struct dc *dc) +bool dc_is_dmub_outbox_supported(struct dc *dc) { #if defined(CONFIG_DRM_AMD_DC_DCN) /* YELLOW_CARP B0 USB4 DPIA needs dmub notifications for interrupts */ @@ -3546,6 +3565,48 @@ /** * dc_process_dmub_aux_transfer_async - Submits aux command to dmub via inbox message + * Function: dc_enable_dmub_notifications + * + * @brief + * Calls dc_is_dmub_outbox_supported to check if dmub fw supports outbox + * notifications. All DMs shall switch to dc_is_dmub_outbox_supported. + * This API shall be removed after switching. + * + * @param + * [in] dc: dc structure + * + * @return + * True if DMUB FW supports outbox notifications, False otherwise + ***************************************************************************** + */ +bool dc_enable_dmub_notifications(struct dc *dc) +{ + return dc_is_dmub_outbox_supported(dc); +} + +/** + ***************************************************************************** + * Function: dc_enable_dmub_outbox + * + * @brief + * Enables DMUB unsolicited notifications to x86 via outbox + * + * @param + * [in] dc: dc structure + * + * @return + * None + ***************************************************************************** + */ +void dc_enable_dmub_outbox(struct dc *dc) +{ + struct dc_context *dc_ctx = dc->ctx; + + dmub_enable_outbox_notification(dc_ctx->dmub_srv); +} + +/** + ***************************************************************************** * Sets port index appropriately for legacy DDC * @dc: dc structure * @link_index: link index @@ -3647,7 +3708,7 @@ * [in] payload: aux payload * [out] notify: set_config immediate reply * - * @return + * @return * True if successful, False if failure ***************************************************************************** */ diff -u linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/amd/display/dc/core/dc_link_dp.c linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/amd/display/dc/core/dc_link_dp.c --- linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/amd/display/dc/core/dc_link_dp.c +++ linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/amd/display/dc/core/dc_link_dp.c @@ -3185,7 +3185,7 @@ &dpcd_pattern_type.value, sizeof(dpcd_pattern_type)); - channel_count = dpcd_test_mode.bits.channel_count + 1; + channel_count = min(dpcd_test_mode.bits.channel_count + 1, AUDIO_CHANNELS_COUNT); // read pattern periods for requested channels when sawTooth pattern is requested if (dpcd_pattern_type.value == AUDIO_TEST_PATTERN_SAWTOOTH || diff -u linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/amd/display/dc/core/dc_link_enc_cfg.c linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/amd/display/dc/core/dc_link_enc_cfg.c --- linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/amd/display/dc/core/dc_link_enc_cfg.c +++ linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/amd/display/dc/core/dc_link_enc_cfg.c @@ -119,7 +119,10 @@ */ if (get_stream_using_link_enc(state, eng_id) == NULL) state->res_ctx.link_enc_cfg_ctx.link_enc_avail[eng_idx] = eng_id; + stream->link_enc = NULL; + state->res_ctx.link_enc_cfg_ctx.link_enc_assignments[i].eng_id = ENGINE_ID_UNKNOWN; + state->res_ctx.link_enc_cfg_ctx.link_enc_assignments[i].stream = NULL; break; } } @@ -214,7 +217,7 @@ .link_id = link->link_id, .ep_type = link->ep_type}; - for (i = 0; i < state->stream_count; i++) { + for (i = 0; i < MAX_PIPES; i++) { struct link_enc_assignment assignment = state->res_ctx.link_enc_cfg_ctx.link_enc_assignments[i]; if (assignment.valid == true && are_ep_ids_equal(&assignment.ep_id, &ep_id)) @@ -223,19 +226,30 @@ return link_enc; } - -void link_enc_cfg_init( - struct dc *dc, - struct dc_state *state) +/* Clear all link encoder assignments. */ +static void clear_enc_assignments(const struct dc *dc, struct dc_state *state) { int i; + for (i = 0; i < MAX_PIPES; i++) { + state->res_ctx.link_enc_cfg_ctx.link_enc_assignments[i].valid = false; + state->res_ctx.link_enc_cfg_ctx.link_enc_assignments[i].eng_id = ENGINE_ID_UNKNOWN; + state->res_ctx.link_enc_cfg_ctx.link_enc_assignments[i].stream = NULL; + } + for (i = 0; i < dc->res_pool->res_cap->num_dig_link_enc; i++) { if (dc->res_pool->link_encoders[i]) state->res_ctx.link_enc_cfg_ctx.link_enc_avail[i] = (enum engine_id) i; else state->res_ctx.link_enc_cfg_ctx.link_enc_avail[i] = ENGINE_ID_UNKNOWN; } +} + +void link_enc_cfg_init( + const struct dc *dc, + struct dc_state *state) +{ + clear_enc_assignments(dc, state); state->res_ctx.link_enc_cfg_ctx.mode = LINK_ENC_CFG_STEADY; } @@ -253,8 +267,8 @@ ASSERT(state->stream_count == stream_count); /* Release DIG link encoder resources before running assignment algorithm. */ - for (i = 0; i < stream_count; i++) - dc->res_pool->funcs->link_enc_unassign(state, streams[i]); + for (i = 0; i < dc->current_state->stream_count; i++) + dc->res_pool->funcs->link_enc_unassign(state, dc->current_state->streams[i]); for (i = 0; i < MAX_PIPES; i++) ASSERT(state->res_ctx.link_enc_cfg_ctx.link_enc_assignments[i].valid == false); @@ -506,6 +520,7 @@ uint8_t dig_stream_count = 0; int matching_stream_ptrs = 0; int eng_ids_per_ep_id[MAX_PIPES] = {0}; + int valid_bitmap = 0; /* (1) No. valid entries same as stream count. */ for (i = 0; i < MAX_PIPES; i++) { @@ -588,4 +603,14 @@ ASSERT(is_valid); + if (is_valid == false) { + valid_bitmap = + (valid_entries & 0x1) | + ((valid_stream_ptrs & 0x1) << 1) | + ((valid_uniqueness & 0x1) << 2) | + ((valid_avail & 0x1) << 3) | + ((valid_streams & 0x1) << 4); + dm_error("Invalid link encoder assignments: 0x%x\n", valid_bitmap); + } + return is_valid; } diff -u linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/amd/display/dc/core/dc_resource.c linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/amd/display/dc/core/dc_resource.c --- linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/amd/display/dc/core/dc_resource.c +++ linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/amd/display/dc/core/dc_resource.c @@ -2118,6 +2118,9 @@ struct dc_state *dst_ctx) { dst_ctx->clk_mgr = dc->clk_mgr; + + /* Initialise DIG link encoder resource tracking variables. */ + link_enc_cfg_init(dc, dst_ctx); } diff -u linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/amd/display/dc/dc.h linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/amd/display/dc/dc.h --- linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/amd/display/dc/dc.h +++ linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/amd/display/dc/dc.h @@ -1357,8 +1357,11 @@ void dc_z10_save_init(struct dc *dc); #endif +bool dc_is_dmub_outbox_supported(struct dc *dc); bool dc_enable_dmub_notifications(struct dc *dc); +void dc_enable_dmub_outbox(struct dc *dc); + bool dc_process_dmub_aux_transfer_async(struct dc *dc, uint32_t link_index, struct aux_payload *payload); diff -u linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/amd/display/dc/dcn10/dcn10_hw_sequencer.c linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/amd/display/dc/dcn10/dcn10_hw_sequencer.c --- linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/amd/display/dc/dcn10/dcn10_hw_sequencer.c +++ linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/amd/display/dc/dcn10/dcn10_hw_sequencer.c @@ -1396,10 +1396,6 @@ hws->funcs.dsc_pg_control(hws, res_pool->dscs[i]->inst, false); } - /* Enable outbox notification feature of dmub */ - if (dc->debug.enable_dmub_aux_for_legacy_ddc) - dmub_enable_outbox_notification(dc); - /* we want to turn off all dp displays before doing detection */ if (dc->config.power_down_display_on_boot) blank_all_dp_displays(dc, true); diff -u linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/amd/display/dc/dcn20/dcn20_hwseq.c linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/amd/display/dc/dcn20/dcn20_hwseq.c --- linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/amd/display/dc/dcn20/dcn20_hwseq.c +++ linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/amd/display/dc/dcn20/dcn20_hwseq.c @@ -2395,8 +2395,9 @@ * disconnect them during disable_stream * BY this, it is logic clean to separate stream and link */ - link->link_enc->funcs->connect_dig_be_to_fe(link->link_enc, - pipe_ctx->stream_res.stream_enc->id, true); + if (link_enc) + link_enc->funcs->connect_dig_be_to_fe( + link_enc, pipe_ctx->stream_res.stream_enc->id, true); if (dc_is_dp_signal(pipe_ctx->stream->signal)) dp_source_sequence_trace(link, DPCD_SOURCE_SEQ_AFTER_CONNECT_DIG_FE_BE); diff -u linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/amd/display/dc/dcn31/dcn31_dio_link_encoder.c linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/amd/display/dc/dcn31/dcn31_dio_link_encoder.c --- linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/amd/display/dc/dcn31/dcn31_dio_link_encoder.c +++ linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/amd/display/dc/dcn31/dcn31_dio_link_encoder.c @@ -67,6 +67,68 @@ #define MIN(X, Y) ((X) < (Y) ? (X) : (Y)) #endif +static uint8_t phy_id_from_transmitter(enum transmitter t) +{ + uint8_t phy_id; + + switch (t) { + case TRANSMITTER_UNIPHY_A: + phy_id = 0; + break; + case TRANSMITTER_UNIPHY_B: + phy_id = 1; + break; + case TRANSMITTER_UNIPHY_C: + phy_id = 2; + break; + case TRANSMITTER_UNIPHY_D: + phy_id = 3; + break; + case TRANSMITTER_UNIPHY_E: + phy_id = 4; + break; + case TRANSMITTER_UNIPHY_F: + phy_id = 5; + break; + case TRANSMITTER_UNIPHY_G: + phy_id = 6; + break; + default: + phy_id = 0; + break; + } + return phy_id; +} + +static bool has_query_dp_alt(struct link_encoder *enc) +{ + struct dc_dmub_srv *dc_dmub_srv = enc->ctx->dmub_srv; + + /* Supports development firmware and firmware >= 4.0.11 */ + return dc_dmub_srv && + !(dc_dmub_srv->dmub->fw_version >= DMUB_FW_VERSION(4, 0, 0) && + dc_dmub_srv->dmub->fw_version <= DMUB_FW_VERSION(4, 0, 10)); +} + +static bool query_dp_alt_from_dmub(struct link_encoder *enc, + union dmub_rb_cmd *cmd) +{ + struct dcn10_link_encoder *enc10 = TO_DCN10_LINK_ENC(enc); + struct dc_dmub_srv *dc_dmub_srv = enc->ctx->dmub_srv; + + memset(cmd, 0, sizeof(*cmd)); + cmd->query_dp_alt.header.type = DMUB_CMD__VBIOS; + cmd->query_dp_alt.header.sub_type = + DMUB_CMD__VBIOS_TRANSMITTER_QUERY_DP_ALT; + cmd->query_dp_alt.header.payload_bytes = sizeof(cmd->query_dp_alt.data); + cmd->query_dp_alt.data.phy_id = phy_id_from_transmitter(enc10->base.transmitter); + + if (!dc_dmub_srv_cmd_with_reply_data(dc_dmub_srv, cmd)) + return false; + + return true; +} + void dcn31_link_encoder_set_dio_phy_mux( struct link_encoder *enc, enum encoder_type_select sel, @@ -534,55 +596,88 @@ struct dcn10_link_encoder *enc10 = TO_DCN10_LINK_ENC(enc); + union dmub_rb_cmd cmd; uint32_t dp_alt_mode_disable; - bool is_usb_c_alt_mode = false; - if (enc->features.flags.bits.DP_IS_USB_C) { - if (enc->ctx->asic_id.hw_internal_rev != YELLOW_CARP_B0) { - // [Note] no need to check hw_internal_rev once phy mux selection is ready - REG_GET(RDPCSTX_PHY_CNTL6, RDPCS_PHY_DPALT_DISABLE, &dp_alt_mode_disable); - } else { + /* Only applicable to USB-C PHY. */ + if (!enc->features.flags.bits.DP_IS_USB_C) + return false; + + /* + * Use the new interface from DMCUB if available. + * Avoids hanging the RDCPSPIPE if DMCUB wasn't already running. + */ + if (has_query_dp_alt(enc)) { + if (!query_dp_alt_from_dmub(enc, &cmd)) + return false; + + return (cmd.query_dp_alt.data.is_dp_alt_disable == 0); + } + + /* Legacy path, avoid if possible. */ + if (enc->ctx->asic_id.hw_internal_rev != YELLOW_CARP_B0) { + REG_GET(RDPCSTX_PHY_CNTL6, RDPCS_PHY_DPALT_DISABLE, + &dp_alt_mode_disable); + } else { /* * B0 phys use a new set of registers to check whether alt mode is disabled. * if value == 1 alt mode is disabled, otherwise it is enabled. */ - if ((enc10->base.transmitter == TRANSMITTER_UNIPHY_A) - || (enc10->base.transmitter == TRANSMITTER_UNIPHY_B) - || (enc10->base.transmitter == TRANSMITTER_UNIPHY_E)) { - REG_GET(RDPCSTX_PHY_CNTL6, RDPCS_PHY_DPALT_DISABLE, &dp_alt_mode_disable); - } else { - // [Note] need to change TRANSMITTER_UNIPHY_C/D to F/G once phy mux selection is ready - REG_GET(RDPCSPIPE_PHY_CNTL6, RDPCS_PHY_DPALT_DISABLE, &dp_alt_mode_disable); - } + if ((enc10->base.transmitter == TRANSMITTER_UNIPHY_A) || + (enc10->base.transmitter == TRANSMITTER_UNIPHY_B) || + (enc10->base.transmitter == TRANSMITTER_UNIPHY_E)) { + REG_GET(RDPCSTX_PHY_CNTL6, RDPCS_PHY_DPALT_DISABLE, + &dp_alt_mode_disable); + } else { + REG_GET(RDPCSPIPE_PHY_CNTL6, RDPCS_PHY_DPALT_DISABLE, + &dp_alt_mode_disable); } - - is_usb_c_alt_mode = (dp_alt_mode_disable == 0); } - return is_usb_c_alt_mode; + return (dp_alt_mode_disable == 0); } -void dcn31_link_encoder_get_max_link_cap(struct link_encoder *enc, - struct dc_link_settings *link_settings) +void dcn31_link_encoder_get_max_link_cap(struct link_encoder *enc, struct dc_link_settings *link_settings) { struct dcn10_link_encoder *enc10 = TO_DCN10_LINK_ENC(enc); + union dmub_rb_cmd cmd; uint32_t is_in_usb_c_dp4_mode = 0; dcn10_link_encoder_get_max_link_cap(enc, link_settings); - /* in usb c dp2 mode, max lane count is 2 */ - if (enc->funcs->is_in_alt_mode && enc->funcs->is_in_alt_mode(enc)) { - if (enc->ctx->asic_id.hw_internal_rev != YELLOW_CARP_B0) { - // [Note] no need to check hw_internal_rev once phy mux selection is ready - REG_GET(RDPCSTX_PHY_CNTL6, RDPCS_PHY_DPALT_DP4, &is_in_usb_c_dp4_mode); + /* Take the link cap directly if not USB */ + if (!enc->features.flags.bits.DP_IS_USB_C) + return; + + /* + * Use the new interface from DMCUB if available. + * Avoids hanging the RDCPSPIPE if DMCUB wasn't already running. + */ + if (has_query_dp_alt(enc)) { + if (!query_dp_alt_from_dmub(enc, &cmd)) + return; + + if (cmd.query_dp_alt.data.is_usb && + cmd.query_dp_alt.data.is_dp4 == 0) + link_settings->lane_count = MIN(LANE_COUNT_TWO, link_settings->lane_count); + + return; + } + + /* Legacy path, avoid if possible. */ + if (enc->ctx->asic_id.hw_internal_rev != YELLOW_CARP_B0) { + REG_GET(RDPCSTX_PHY_CNTL6, RDPCS_PHY_DPALT_DP4, + &is_in_usb_c_dp4_mode); + } else { + if ((enc10->base.transmitter == TRANSMITTER_UNIPHY_A) || + (enc10->base.transmitter == TRANSMITTER_UNIPHY_B) || + (enc10->base.transmitter == TRANSMITTER_UNIPHY_E)) { + REG_GET(RDPCSTX_PHY_CNTL6, RDPCS_PHY_DPALT_DP4, + &is_in_usb_c_dp4_mode); } else { - if ((enc10->base.transmitter == TRANSMITTER_UNIPHY_A) - || (enc10->base.transmitter == TRANSMITTER_UNIPHY_B) - || (enc10->base.transmitter == TRANSMITTER_UNIPHY_E)) { - REG_GET(RDPCSTX_PHY_CNTL6, RDPCS_PHY_DPALT_DP4, &is_in_usb_c_dp4_mode); - } else { - REG_GET(RDPCSPIPE_PHY_CNTL6, RDPCS_PHY_DPALT_DP4, &is_in_usb_c_dp4_mode); - } + REG_GET(RDPCSPIPE_PHY_CNTL6, RDPCS_PHY_DPALT_DP4, + &is_in_usb_c_dp4_mode); } - if (!is_in_usb_c_dp4_mode) - link_settings->lane_count = MIN(LANE_COUNT_TWO, link_settings->lane_count); } + + if (!is_in_usb_c_dp4_mode) + link_settings->lane_count = MIN(LANE_COUNT_TWO, link_settings->lane_count); } diff -u linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/amd/display/dc/dcn31/dcn31_hwseq.c linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/amd/display/dc/dcn31/dcn31_hwseq.c --- linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/amd/display/dc/dcn31/dcn31_hwseq.c +++ linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/amd/display/dc/dcn31/dcn31_hwseq.c @@ -175,7 +175,7 @@ /* Enables outbox notifications for usb4 dpia */ if (dc->res_pool->usb4_dpia_count) - dmub_enable_outbox_notification(dc); + dmub_enable_outbox_notification(dc->ctx->dmub_srv); /* we want to turn off all dp displays before doing detection */ if (dc->config.power_down_display_on_boot) diff -u linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/amd/display/dc/dcn31/dcn31_resource.c linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/amd/display/dc/dcn31/dcn31_resource.c --- linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/amd/display/dc/dcn31/dcn31_resource.c +++ linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/amd/display/dc/dcn31/dcn31_resource.c @@ -957,6 +957,7 @@ .optc = false, } }, + .disable_z10 = true, .optimize_edp_link_rate = true, .enable_sw_cntl_psr = true, }; diff -u linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/amd/display/dc/inc/link_enc_cfg.h linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/amd/display/dc/inc/link_enc_cfg.h --- linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/amd/display/dc/inc/link_enc_cfg.h +++ linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/amd/display/dc/inc/link_enc_cfg.h @@ -36,7 +36,7 @@ * Initialise link encoder resource tracking. */ void link_enc_cfg_init( - struct dc *dc, + const struct dc *dc, struct dc_state *state); /* diff -u linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/amd/display/dmub/inc/dmub_cmd.h linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/amd/display/dmub/inc/dmub_cmd.h --- linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/amd/display/dmub/inc/dmub_cmd.h +++ linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/amd/display/dmub/inc/dmub_cmd.h @@ -416,7 +416,14 @@ * Enables or disables power gating. */ DMUB_CMD__VBIOS_ENABLE_DISP_POWER_GATING = 3, + /** + * Controls embedded panels. + */ DMUB_CMD__VBIOS_LVTMA_CONTROL = 15, + /** + * Query DP alt status on a transmitter. + */ + DMUB_CMD__VBIOS_TRANSMITTER_QUERY_DP_ALT = 26, }; //============================================================================== @@ -2307,6 +2314,24 @@ }; /** + * Data passed in/out in a DMUB_CMD__VBIOS_TRANSMITTER_QUERY_DP_ALT command. + */ +struct dmub_rb_cmd_transmitter_query_dp_alt_data { + uint8_t phy_id; /**< 0=UNIPHYA, 1=UNIPHYB, 2=UNIPHYC, 3=UNIPHYD, 4=UNIPHYE, 5=UNIPHYF */ + uint8_t is_usb; /**< is phy is usb */ + uint8_t is_dp_alt_disable; /**< is dp alt disable */ + uint8_t is_dp4; /**< is dp in 4 lane */ +}; + +/** + * Definition of a DMUB_CMD__VBIOS_TRANSMITTER_QUERY_DP_ALT command. + */ +struct dmub_rb_cmd_transmitter_query_dp_alt { + struct dmub_cmd_header header; /**< header */ + struct dmub_rb_cmd_transmitter_query_dp_alt_data data; /**< payload */ +}; + +/** * Maximum number of bytes a chunk sent to DMUB for parsing */ #define DMUB_EDID_CEA_DATA_CHUNK_BYTES 8 @@ -2505,6 +2530,10 @@ */ struct dmub_rb_cmd_lvtma_control lvtma_control; /** + * Definition of a DMUB_CMD__VBIOS_TRANSMITTER_QUERY_DP_ALT command. + */ + struct dmub_rb_cmd_transmitter_query_dp_alt query_dp_alt; + /** * Definition of a DMUB_CMD__DPIA_DIG1_CONTROL command. */ struct dmub_rb_cmd_dig1_dpia_control dig1_dpia_control; diff -u linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/amd/pm/swsmu/amdgpu_smu.c linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/amd/pm/swsmu/amdgpu_smu.c --- linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/amd/pm/swsmu/amdgpu_smu.c +++ linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/amd/pm/swsmu/amdgpu_smu.c @@ -1386,14 +1386,8 @@ { struct amdgpu_device *adev = smu->adev; int ret = 0; - /* - * TODO: (adev->in_suspend && !adev->in_s0ix) is added to pair - * the workaround which always reset the asic in suspend. - * It's likely that workaround will be dropped in the future. - * Then the change here should be dropped together. - */ bool use_baco = !smu->is_apu && - (((amdgpu_in_reset(adev) || (adev->in_suspend && !adev->in_s0ix)) && + ((amdgpu_in_reset(adev) && (amdgpu_asic_reset_method(adev) == AMD_RESET_METHOD_BACO)) || ((adev->in_runpm || adev->in_s4) && amdgpu_asic_supports_baco(adev))); diff -u linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/amd/pm/swsmu/smu11/sienna_cichlid_ppt.c linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/amd/pm/swsmu/smu11/sienna_cichlid_ppt.c --- linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/amd/pm/swsmu/smu11/sienna_cichlid_ppt.c +++ linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/amd/pm/swsmu/smu11/sienna_cichlid_ppt.c @@ -338,7 +338,7 @@ if (smu->dc_controlled_by_gpio) *(uint64_t *)feature_mask |= FEATURE_MASK(FEATURE_ACDC_BIT); - if (amdgpu_aspm) + if (amdgpu_device_should_use_aspm(adev)) *(uint64_t *)feature_mask |= FEATURE_MASK(FEATURE_DS_LCLK_BIT); return 0; diff -u linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/amd/pm/swsmu/smu13/yellow_carp_ppt.c linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/amd/pm/swsmu/smu13/yellow_carp_ppt.c --- linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/amd/pm/swsmu/smu13/yellow_carp_ppt.c +++ linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/amd/pm/swsmu/smu13/yellow_carp_ppt.c @@ -305,6 +305,42 @@ return yellow_carp_mode_reset(smu, SMU_RESET_MODE_2); } + +static void yellow_carp_get_ss_power_percent(SmuMetrics_t *metrics, + uint32_t *apu_percent, uint32_t *dgpu_percent) +{ + uint32_t apu_boost = 0; + uint32_t dgpu_boost = 0; + uint16_t apu_limit = 0; + uint16_t dgpu_limit = 0; + uint16_t apu_power = 0; + uint16_t dgpu_power = 0; + + /* APU and dGPU power values are reported in milli Watts + * and STAPM power limits are in Watts */ + apu_power = metrics->ApuPower/1000; + apu_limit = metrics->StapmOpnLimit; + if (apu_power > apu_limit && apu_limit != 0) + apu_boost = ((apu_power - apu_limit) * 100) / apu_limit; + apu_boost = (apu_boost > 100) ? 100 : apu_boost; + + dgpu_power = metrics->dGpuPower/1000; + if (metrics->StapmCurrentLimit > metrics->StapmOpnLimit) + dgpu_limit = metrics->StapmCurrentLimit - metrics->StapmOpnLimit; + if (dgpu_power > dgpu_limit && dgpu_limit != 0) + dgpu_boost = ((dgpu_power - dgpu_limit) * 100) / dgpu_limit; + dgpu_boost = (dgpu_boost > 100) ? 100 : dgpu_boost; + + if (dgpu_boost >= apu_boost) + apu_boost = 0; + else + dgpu_boost = 0; + + *apu_percent = apu_boost; + *dgpu_percent = dgpu_boost; + +} + static int yellow_carp_get_smu_metrics_data(struct smu_context *smu, MetricsMember_t member, uint32_t *value) @@ -313,6 +349,8 @@ SmuMetrics_t *metrics = (SmuMetrics_t *)smu_table->metrics_table; int ret = 0; + uint32_t apu_percent = 0; + uint32_t dgpu_percent = 0; mutex_lock(&smu->metrics_lock); @@ -365,26 +403,18 @@ *value = metrics->Voltage[1]; break; case METRICS_SS_APU_SHARE: - /* return the percentage of APU power with respect to APU's power limit. - * percentage is reported, this isn't boost value. Smartshift power - * boost/shift is only when the percentage is more than 100. + /* return the percentage of APU power boost + * with respect to APU's power limit. */ - if (metrics->StapmOpnLimit > 0) - *value = (metrics->ApuPower * 100) / metrics->StapmOpnLimit; - else - *value = 0; + yellow_carp_get_ss_power_percent(metrics, &apu_percent, &dgpu_percent); + *value = apu_percent; break; case METRICS_SS_DGPU_SHARE: - /* return the percentage of dGPU power with respect to dGPU's power limit. - * percentage is reported, this isn't boost value. Smartshift power - * boost/shift is only when the percentage is more than 100. + /* return the percentage of dGPU power boost + * with respect to dGPU's power limit. */ - if ((metrics->dGpuPower > 0) && - (metrics->StapmCurrentLimit > metrics->StapmOpnLimit)) - *value = (metrics->dGpuPower * 100) / - (metrics->StapmCurrentLimit - metrics->StapmOpnLimit); - else - *value = 0; + yellow_carp_get_ss_power_percent(metrics, &apu_percent, &dgpu_percent); + *value = dgpu_percent; break; default: *value = UINT_MAX; diff -u linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/bridge/adv7511/adv7511_drv.c linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/bridge/adv7511/adv7511_drv.c --- linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/bridge/adv7511/adv7511_drv.c +++ linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/bridge/adv7511/adv7511_drv.c @@ -1306,6 +1306,7 @@ return 0; err_unregister_cec: + cec_unregister_adapter(adv7511->cec_adap); i2c_unregister_device(adv7511->i2c_cec); clk_disable_unprepare(adv7511->cec_clk); err_i2c_unregister_packet: diff -u linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/bridge/ite-it66121.c linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/bridge/ite-it66121.c --- linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/bridge/ite-it66121.c +++ linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/bridge/ite-it66121.c @@ -227,7 +227,7 @@ .selector_mask = 0x1, .selector_shift = 0, .window_start = 0x00, - .window_len = 0x130, + .window_len = 0x100, }, }; diff -u linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/drm_edid.c linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/drm_edid.c --- linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/drm_edid.c +++ linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/drm_edid.c @@ -1994,9 +1994,6 @@ connector_bad_edid(connector, edid, edid[0x7e] + 1); - edid[EDID_LENGTH-1] += edid[0x7e] - valid_extensions; - edid[0x7e] = valid_extensions; - new = kmalloc_array(valid_extensions + 1, EDID_LENGTH, GFP_KERNEL); if (!new) @@ -2013,6 +2010,9 @@ base += EDID_LENGTH; } + new[EDID_LENGTH - 1] += new[0x7e] - valid_extensions; + new[0x7e] = valid_extensions; + kfree(edid); edid = new; } diff -u linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/i915/display/intel_bios.c linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/i915/display/intel_bios.c --- linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/i915/display/intel_bios.c +++ linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/i915/display/intel_bios.c @@ -2013,6 +2013,15 @@ case HDMI_MAX_DATA_RATE_PLATFORM: max_tmds_clock = 0; break; + case HDMI_MAX_DATA_RATE_594: + max_tmds_clock = 594000; + break; + case HDMI_MAX_DATA_RATE_340: + max_tmds_clock = 340000; + break; + case HDMI_MAX_DATA_RATE_300: + max_tmds_clock = 300000; + break; case HDMI_MAX_DATA_RATE_297: max_tmds_clock = 297000; break; diff -u linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/i915/display/intel_display.c linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/i915/display/intel_display.c --- linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/i915/display/intel_display.c +++ linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/i915/display/intel_display.c @@ -1818,8 +1818,6 @@ plane_state->uapi.crtc = &crtc->base; intel_plane_copy_uapi_to_hw_state(plane_state, plane_state, crtc); - intel_frontbuffer_flush(to_intel_frontbuffer(fb), ORIGIN_DIRTYFB); - atomic_or(plane->frontbuffer_bit, &to_intel_frontbuffer(fb)->bits); } @@ -11040,7 +11038,6 @@ return ret; i915_gem_object_wait_priority(obj, 0, &attr); - i915_gem_object_flush_frontbuffer(obj, ORIGIN_DIRTYFB); if (!new_plane_state->uapi.fence) { /* implicit fencing */ struct dma_fence *fence; diff -u linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/i915/display/intel_dmc.c linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/i915/display/intel_dmc.c --- linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/i915/display/intel_dmc.c +++ linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/i915/display/intel_dmc.c @@ -375,6 +375,44 @@ } } +static bool dmc_mmio_addr_sanity_check(struct intel_dmc *dmc, + const u32 *mmioaddr, u32 mmio_count, + int header_ver, u8 dmc_id) +{ + struct drm_i915_private *i915 = container_of(dmc, typeof(*i915), dmc); + u32 start_range, end_range; + int i; + + if (dmc_id >= DMC_FW_MAX) { + drm_warn(&i915->drm, "Unsupported firmware id %u\n", dmc_id); + return false; + } + + if (header_ver == 1) { + start_range = DMC_MMIO_START_RANGE; + end_range = DMC_MMIO_END_RANGE; + } else if (dmc_id == DMC_FW_MAIN) { + start_range = TGL_MAIN_MMIO_START; + end_range = TGL_MAIN_MMIO_END; + } else if (DISPLAY_VER(i915) >= 13) { + start_range = ADLP_PIPE_MMIO_START; + end_range = ADLP_PIPE_MMIO_END; + } else if (DISPLAY_VER(i915) >= 12) { + start_range = TGL_PIPE_MMIO_START(dmc_id); + end_range = TGL_PIPE_MMIO_END(dmc_id); + } else { + drm_warn(&i915->drm, "Unknown mmio range for sanity check"); + return false; + } + + for (i = 0; i < mmio_count; i++) { + if (mmioaddr[i] < start_range || mmioaddr[i] > end_range) + return false; + } + + return true; +} + static u32 parse_dmc_fw_header(struct intel_dmc *dmc, const struct intel_dmc_header_base *dmc_header, size_t rem_size, u8 dmc_id) @@ -444,6 +482,12 @@ return 0; } + if (!dmc_mmio_addr_sanity_check(dmc, mmioaddr, mmio_count, + dmc_header->header_ver, dmc_id)) { + drm_err(&i915->drm, "DMC firmware has Wrong MMIO Addresses\n"); + return 0; + } + for (i = 0; i < mmio_count; i++) { dmc_info->mmioaddr[i] = _MMIO(mmioaddr[i]); dmc_info->mmiodata[i] = mmiodata[i]; diff -u linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/i915/display/intel_dp.c linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/i915/display/intel_dp.c --- linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/i915/display/intel_dp.c +++ linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/i915/display/intel_dp.c @@ -4012,7 +4012,7 @@ return is_connected; } -static struct edid * +struct edid * intel_dp_get_edid(struct intel_dp *intel_dp) { struct intel_connector *intel_connector = intel_dp->attached_connector; diff -u linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/i915/display/intel_dp.h linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/i915/display/intel_dp.h --- linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/i915/display/intel_dp.h +++ linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/i915/display/intel_dp.h @@ -96,6 +96,8 @@ unsigned int type); bool intel_digital_port_connected(struct intel_encoder *encoder); +struct edid *intel_dp_get_edid(struct intel_dp *intel_dp); + static inline unsigned int intel_dp_unused_lane_mask(int lane_count) { return ~((1 << lane_count) - 1) & 0xf; diff -u linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/i915/display/intel_dp_aux_backlight.c linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/i915/display/intel_dp_aux_backlight.c --- linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/i915/display/intel_dp_aux_backlight.c +++ linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/i915/display/intel_dp_aux_backlight.c @@ -96,6 +96,14 @@ #define INTEL_EDP_BRIGHTNESS_OPTIMIZATION_1 0x359 +enum intel_dp_aux_backlight_modparam { + INTEL_DP_AUX_BACKLIGHT_AUTO = -1, + INTEL_DP_AUX_BACKLIGHT_OFF = 0, + INTEL_DP_AUX_BACKLIGHT_ON = 1, + INTEL_DP_AUX_BACKLIGHT_FORCE_VESA = 2, + INTEL_DP_AUX_BACKLIGHT_FORCE_INTEL = 3, +}; + /* Intel EDP backlight callbacks */ static bool intel_dp_aux_supports_hdr_backlight(struct intel_connector *connector) @@ -125,6 +133,24 @@ return false; } + /* + * If we don't have HDR static metadata there is no way to + * runtime detect used range for nits based control. For now + * do not use Intel proprietary eDP backlight control if we + * don't have this data in panel EDID. In case we find panel + * which supports only nits based control, but doesn't provide + * HDR static metadata we need to start maintaining table of + * ranges for such panels. + */ + if (i915->params.enable_dpcd_backlight != INTEL_DP_AUX_BACKLIGHT_FORCE_INTEL && + !(connector->base.hdr_sink_metadata.hdmi_type1.metadata_type & + BIT(HDMI_STATIC_METADATA_TYPE1))) { + drm_info(&i915->drm, + "Panel is missing HDR static metadata. Possible support for Intel HDR backlight interface is not used. If your backlight controls don't work try booting with i915.enable_dpcd_backlight=%d. needs this, please file a _new_ bug report on drm/i915, see " FDO_BUG_URL " for details.\n", + INTEL_DP_AUX_BACKLIGHT_FORCE_INTEL); + return false; + } + panel->backlight.edp.intel.sdr_uses_aux = tcon_cap[2] & INTEL_EDP_SDR_TCON_BRIGHTNESS_AUX_CAP; @@ -373,14 +399,6 @@ .get = intel_dp_aux_vesa_get_backlight, }; -enum intel_dp_aux_backlight_modparam { - INTEL_DP_AUX_BACKLIGHT_AUTO = -1, - INTEL_DP_AUX_BACKLIGHT_OFF = 0, - INTEL_DP_AUX_BACKLIGHT_ON = 1, - INTEL_DP_AUX_BACKLIGHT_FORCE_VESA = 2, - INTEL_DP_AUX_BACKLIGHT_FORCE_INTEL = 3, -}; - int intel_dp_aux_init_backlight_funcs(struct intel_connector *connector) { struct drm_device *dev = connector->base.dev; diff -u linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/i915/display/intel_opregion.c linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/i915/display/intel_opregion.c --- linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/i915/display/intel_opregion.c +++ linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/i915/display/intel_opregion.c @@ -376,21 +376,6 @@ return -EINVAL; } - /* - * The port numbering and mapping here is bizarre. The now-obsolete - * swsci spec supports ports numbered [0..4]. Port E is handled as a - * special case, but port F and beyond are not. The functionality is - * supposed to be obsolete for new platforms. Just bail out if the port - * number is out of bounds after mapping. - */ - if (port > 4) { - drm_dbg_kms(&dev_priv->drm, - "[ENCODER:%d:%s] port %c (index %u) out of bounds for display power state notification\n", - intel_encoder->base.base.id, intel_encoder->base.name, - port_name(intel_encoder->port), port); - return -EINVAL; - } - if (!enable) parm |= 4 << 8; diff -u linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/i915/gt/intel_workarounds.c linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/i915/gt/intel_workarounds.c --- linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/i915/gt/intel_workarounds.c +++ linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/i915/gt/intel_workarounds.c @@ -1049,6 +1049,15 @@ GAMT_CHKN_BIT_REG, GAMT_CHKN_DISABLE_L3_COH_PIPE); + /* Wa_1407352427:icl,ehl */ + wa_write_or(wal, UNSLICE_UNIT_LEVEL_CLKGATE2, + PSDUNIT_CLKGATE_DIS); + + /* Wa_1406680159:icl,ehl */ + wa_write_or(wal, + SUBSLICE_UNIT_LEVEL_CLKGATE, + GWUNIT_CLKGATE_DIS); + /* Wa_1607087056:icl,ehl,jsl */ if (IS_ICELAKE(i915) || IS_JSL_EHL_GT_STEP(i915, STEP_A0, STEP_B0)) @@ -1745,15 +1754,6 @@ wa_write_or(wal, UNSLICE_UNIT_LEVEL_CLKGATE, VSUNIT_CLKGATE_DIS | HSUNIT_CLKGATE_DIS); - /* Wa_1407352427:icl,ehl */ - wa_write_or(wal, UNSLICE_UNIT_LEVEL_CLKGATE2, - PSDUNIT_CLKGATE_DIS); - - /* Wa_1406680159:icl,ehl */ - wa_write_or(wal, - SUBSLICE_UNIT_LEVEL_CLKGATE, - GWUNIT_CLKGATE_DIS); - /* * Wa_1408767742:icl[a2..forever],ehl[all] * Wa_1605460711:icl[a0..c0] diff -u linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/i915/i915_pci.c linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/i915/i915_pci.c --- linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/i915/i915_pci.c +++ linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/i915/i915_pci.c @@ -537,8 +537,6 @@ BIT(TRANSCODER_C) | BIT(TRANSCODER_EDP), \ .display.has_ddi = 1, \ .display.has_fpga_dbg = 1, \ - .display.has_psr = 1, \ - .display.has_psr_hw_tracking = 1, \ .display.has_dp_mst = 1, \ .has_rc6p = 0 /* RC6p removed-by HSW */, \ HSW_PIPE_OFFSETS, \ @@ -642,6 +640,8 @@ .has_gt_uc = 1, \ .display.has_hdcp = 1, \ .display.has_ipc = 1, \ + .display.has_psr = 1, \ + .display.has_psr_hw_tracking = 1, \ .dbuf.size = 896 - 4, /* 4 blocks for bypass path allocation */ \ .dbuf.slice_mask = BIT(DBUF_S1) diff -u linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/i915/i915_reg.h linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/i915/i915_reg.h --- linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/i915/i915_reg.h +++ linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/i915/i915_reg.h @@ -4520,11 +4520,9 @@ * HSW PSR registers are relative to DDIA(_DDI_BUF_CTL_A + 0x800) with just one * instance of it */ -#define _HSW_EDP_PSR_BASE 0x64800 #define _SRD_CTL_A 0x60800 #define _SRD_CTL_EDP 0x6f800 -#define _PSR_ADJ(tran, reg) (_TRANS2(tran, reg) - dev_priv->hsw_psr_mmio_adjust) -#define EDP_PSR_CTL(tran) _MMIO(_PSR_ADJ(tran, _SRD_CTL_A)) +#define EDP_PSR_CTL(tran) _MMIO(_TRANS2(tran, _SRD_CTL_A)) #define EDP_PSR_ENABLE (1 << 31) #define BDW_PSR_SINGLE_FRAME (1 << 30) #define EDP_PSR_RESTORE_PSR_ACTIVE_CTX_MASK (1 << 29) /* SW can't modify */ @@ -4568,22 +4566,13 @@ #define EDP_PSR_POST_EXIT(trans) (0x2 << _EDP_PSR_TRANS_SHIFT(trans)) #define EDP_PSR_PRE_ENTRY(trans) (0x1 << _EDP_PSR_TRANS_SHIFT(trans)) -#define _SRD_AUX_CTL_A 0x60810 -#define _SRD_AUX_CTL_EDP 0x6f810 -#define EDP_PSR_AUX_CTL(tran) _MMIO(_PSR_ADJ(tran, _SRD_AUX_CTL_A)) -#define EDP_PSR_AUX_CTL_TIME_OUT_MASK (3 << 26) -#define EDP_PSR_AUX_CTL_MESSAGE_SIZE_MASK (0x1f << 20) -#define EDP_PSR_AUX_CTL_PRECHARGE_2US_MASK (0xf << 16) -#define EDP_PSR_AUX_CTL_ERROR_INTERRUPT (1 << 11) -#define EDP_PSR_AUX_CTL_BIT_CLOCK_2X_MASK (0x7ff) - #define _SRD_AUX_DATA_A 0x60814 #define _SRD_AUX_DATA_EDP 0x6f814 -#define EDP_PSR_AUX_DATA(tran, i) _MMIO(_PSR_ADJ(tran, _SRD_AUX_DATA_A) + (i) + 4) /* 5 registers */ +#define EDP_PSR_AUX_DATA(tran, i) _MMIO(_TRANS2(tran, _SRD_AUX_DATA_A) + (i) + 4) /* 5 registers */ #define _SRD_STATUS_A 0x60840 #define _SRD_STATUS_EDP 0x6f840 -#define EDP_PSR_STATUS(tran) _MMIO(_PSR_ADJ(tran, _SRD_STATUS_A)) +#define EDP_PSR_STATUS(tran) _MMIO(_TRANS2(tran, _SRD_STATUS_A)) #define EDP_PSR_STATUS_STATE_MASK (7 << 29) #define EDP_PSR_STATUS_STATE_SHIFT 29 #define EDP_PSR_STATUS_STATE_IDLE (0 << 29) @@ -4610,13 +4599,13 @@ #define _SRD_PERF_CNT_A 0x60844 #define _SRD_PERF_CNT_EDP 0x6f844 -#define EDP_PSR_PERF_CNT(tran) _MMIO(_PSR_ADJ(tran, _SRD_PERF_CNT_A)) +#define EDP_PSR_PERF_CNT(tran) _MMIO(_TRANS2(tran, _SRD_PERF_CNT_A)) #define EDP_PSR_PERF_CNT_MASK 0xffffff /* PSR_MASK on SKL+ */ #define _SRD_DEBUG_A 0x60860 #define _SRD_DEBUG_EDP 0x6f860 -#define EDP_PSR_DEBUG(tran) _MMIO(_PSR_ADJ(tran, _SRD_DEBUG_A)) +#define EDP_PSR_DEBUG(tran) _MMIO(_TRANS2(tran, _SRD_DEBUG_A)) #define EDP_PSR_DEBUG_MASK_MAX_SLEEP (1 << 28) #define EDP_PSR_DEBUG_MASK_LPSP (1 << 27) #define EDP_PSR_DEBUG_MASK_MEMUP (1 << 26) @@ -7458,7 +7447,7 @@ #define _SEL_FETCH_PLANE_BASE_6_A 0x70940 #define _SEL_FETCH_PLANE_BASE_7_A 0x70960 #define _SEL_FETCH_PLANE_BASE_CUR_A 0x70880 -#define _SEL_FETCH_PLANE_BASE_1_B 0x70990 +#define _SEL_FETCH_PLANE_BASE_1_B 0x71890 #define _SEL_FETCH_PLANE_BASE_A(plane) _PICK(plane, \ _SEL_FETCH_PLANE_BASE_1_A, \ @@ -7818,6 +7807,22 @@ /* MMIO address range for DMC program (0x80000 - 0x82FFF) */ #define DMC_MMIO_START_RANGE 0x80000 #define DMC_MMIO_END_RANGE 0x8FFFF +#define DMC_V1_MMIO_START_RANGE 0x80000 +#define TGL_MAIN_MMIO_START 0x8F000 +#define TGL_MAIN_MMIO_END 0x8FFFF +#define _TGL_PIPEA_MMIO_START 0x92000 +#define _TGL_PIPEA_MMIO_END 0x93FFF +#define _TGL_PIPEB_MMIO_START 0x96000 +#define _TGL_PIPEB_MMIO_END 0x97FFF +#define ADLP_PIPE_MMIO_START 0x5F000 +#define ADLP_PIPE_MMIO_END 0x5FFFF + +#define TGL_PIPE_MMIO_START(dmc_id) _PICK_EVEN(((dmc_id) - 1), _TGL_PIPEA_MMIO_START,\ + _TGL_PIPEB_MMIO_START) + +#define TGL_PIPE_MMIO_END(dmc_id) _PICK_EVEN(((dmc_id) - 1), _TGL_PIPEA_MMIO_END,\ + _TGL_PIPEB_MMIO_END) + #define SKL_DMC_DC3_DC5_COUNT _MMIO(0x80030) #define SKL_DMC_DC5_DC6_COUNT _MMIO(0x8002C) #define BXT_DMC_DC3_DC5_COUNT _MMIO(0x80038) diff -u linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/i915/intel_pm.c linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/i915/intel_pm.c --- linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/i915/intel_pm.c +++ linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/i915/intel_pm.c @@ -2863,7 +2863,7 @@ } static void intel_read_wm_latency(struct drm_i915_private *dev_priv, - u16 wm[8]) + u16 wm[]) { struct intel_uncore *uncore = &dev_priv->uncore; diff -u linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/msm/adreno/a6xx_gpu.c linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/msm/adreno/a6xx_gpu.c --- linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/msm/adreno/a6xx_gpu.c +++ linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/msm/adreno/a6xx_gpu.c @@ -1872,6 +1872,7 @@ BUG_ON(!node); ret = a6xx_gmu_init(a6xx_gpu, node); + of_node_put(node); if (ret) { a6xx_destroy(&(a6xx_gpu->base.base)); return ERR_PTR(ret); diff -u linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/msm/disp/dpu1/dpu_encoder.c linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/msm/disp/dpu1/dpu_encoder.c --- linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/msm/disp/dpu1/dpu_encoder.c +++ linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/msm/disp/dpu1/dpu_encoder.c @@ -168,6 +168,7 @@ * @vsync_event_work: worker to handle vsync event for autorefresh * @topology: topology of the display * @idle_timeout: idle timeout duration in milliseconds + * @dp: msm_dp pointer, for DP encoders */ struct dpu_encoder_virt { struct drm_encoder base; @@ -206,6 +207,8 @@ struct msm_display_topology topology; u32 idle_timeout; + + struct msm_dp *dp; }; #define to_dpu_encoder_virt(x) container_of(x, struct dpu_encoder_virt, base) @@ -1000,8 +1003,8 @@ trace_dpu_enc_mode_set(DRMID(drm_enc)); - if (drm_enc->encoder_type == DRM_MODE_ENCODER_TMDS && priv->dp) - msm_dp_display_mode_set(priv->dp, drm_enc, mode, adj_mode); + if (drm_enc->encoder_type == DRM_MODE_ENCODER_TMDS) + msm_dp_display_mode_set(dpu_enc->dp, drm_enc, mode, adj_mode); list_for_each_entry(conn_iter, connector_list, head) if (conn_iter->encoder == drm_enc) @@ -1182,9 +1185,8 @@ _dpu_encoder_virt_enable_helper(drm_enc); - if (drm_enc->encoder_type == DRM_MODE_ENCODER_TMDS && priv->dp) { - ret = msm_dp_display_enable(priv->dp, - drm_enc); + if (drm_enc->encoder_type == DRM_MODE_ENCODER_TMDS) { + ret = msm_dp_display_enable(dpu_enc->dp, drm_enc); if (ret) { DPU_ERROR_ENC(dpu_enc, "dp display enable failed: %d\n", ret); @@ -1224,8 +1226,8 @@ /* wait for idle */ dpu_encoder_wait_for_event(drm_enc, MSM_ENC_TX_COMPLETE); - if (drm_enc->encoder_type == DRM_MODE_ENCODER_TMDS && priv->dp) { - if (msm_dp_display_pre_disable(priv->dp, drm_enc)) + if (drm_enc->encoder_type == DRM_MODE_ENCODER_TMDS) { + if (msm_dp_display_pre_disable(dpu_enc->dp, drm_enc)) DPU_ERROR_ENC(dpu_enc, "dp display push idle failed\n"); } @@ -1253,8 +1255,8 @@ DPU_DEBUG_ENC(dpu_enc, "encoder disabled\n"); - if (drm_enc->encoder_type == DRM_MODE_ENCODER_TMDS && priv->dp) { - if (msm_dp_display_disable(priv->dp, drm_enc)) + if (drm_enc->encoder_type == DRM_MODE_ENCODER_TMDS) { + if (msm_dp_display_disable(dpu_enc->dp, drm_enc)) DPU_ERROR_ENC(dpu_enc, "dp display disable failed\n"); } @@ -2170,7 +2172,8 @@ timer_setup(&dpu_enc->vsync_event_timer, dpu_encoder_vsync_event_handler, 0); - + else if (disp_info->intf_type == DRM_MODE_ENCODER_TMDS) + dpu_enc->dp = priv->dp; INIT_DELAYED_WORK(&dpu_enc->delayed_off_work, dpu_encoder_off_work); diff -u linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/msm/disp/dpu1/dpu_kms.c linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/msm/disp/dpu1/dpu_kms.c --- linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/msm/disp/dpu1/dpu_kms.c +++ linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/msm/disp/dpu1/dpu_kms.c @@ -728,8 +728,10 @@ for (i = 0; i < dpu_kms->catalog->vbif_count; i++) { u32 vbif_idx = dpu_kms->catalog->vbif[i].id; - if ((vbif_idx < VBIF_MAX) && dpu_kms->hw_vbif[vbif_idx]) + if ((vbif_idx < VBIF_MAX) && dpu_kms->hw_vbif[vbif_idx]) { dpu_hw_vbif_destroy(dpu_kms->hw_vbif[vbif_idx]); + dpu_kms->hw_vbif[vbif_idx] = NULL; + } } } @@ -999,7 +1001,9 @@ dpu_kms_parse_data_bus_icc_path(dpu_kms); - pm_runtime_get_sync(&dpu_kms->pdev->dev); + rc = pm_runtime_resume_and_get(&dpu_kms->pdev->dev); + if (rc < 0) + goto error; dpu_kms->core_rev = readl_relaxed(dpu_kms->mmio + 0x0); @@ -1184,7 +1188,7 @@ priv->kms = &dpu_kms->base; - return ret; + return 0; } static void dpu_unbind(struct device *dev, struct device *master, void *data) diff -u linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/msm/dp/dp_ctrl.c linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/msm/dp/dp_ctrl.c --- linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/msm/dp/dp_ctrl.c +++ linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/msm/dp/dp_ctrl.c @@ -1515,7 +1515,7 @@ * running. Add the global reset just before disabling the * link clocks and core clocks. */ - ret = dp_ctrl_off_link_stream(&ctrl->dp_ctrl); + ret = dp_ctrl_off(&ctrl->dp_ctrl); if (ret) { DRM_ERROR("failed to disable DP controller\n"); return ret; @@ -1682,8 +1682,6 @@ ctrl->link->link_params.rate, ctrl->link->link_params.num_lanes, ctrl->dp_ctrl.pixel_rate); - ctrl->link->phy_params.p_level = 0; - ctrl->link->phy_params.v_level = 0; rc = dp_ctrl_enable_mainlink_clocks(ctrl); if (rc) @@ -1805,12 +1803,6 @@ } } - if (!dp_ctrl_channel_eq_ok(ctrl)) - dp_ctrl_link_retrain(ctrl); - - /* stop txing train pattern to end link training */ - dp_ctrl_clear_training_pattern(ctrl); - ret = dp_ctrl_enable_stream_clocks(ctrl); if (ret) { DRM_ERROR("Failed to start pixel clocks. ret=%d\n", ret); @@ -1822,6 +1814,12 @@ return 0; } + if (!dp_ctrl_channel_eq_ok(ctrl)) + dp_ctrl_link_retrain(ctrl); + + /* stop txing train pattern to end link training */ + dp_ctrl_clear_training_pattern(ctrl); + /* * Set up transfer unit values and set controller state to send * video. diff -u linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/msm/dp/dp_display.c linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/msm/dp/dp_display.c --- linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/msm/dp/dp_display.c +++ linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/msm/dp/dp_display.c @@ -110,6 +110,7 @@ u32 hpd_state; u32 event_pndx; u32 event_gndx; + struct task_struct *ev_tsk; struct dp_event event_list[DP_EVENT_Q_MAX]; spinlock_t event_lock; @@ -193,6 +194,8 @@ complete_all(&dp->audio_comp); } +static int dp_hpd_event_thread_start(struct dp_display_private *dp_priv); + static int dp_display_bind(struct device *dev, struct device *master, void *data) { @@ -230,9 +233,18 @@ } rc = dp_register_audio_driver(dev, dp->audio); - if (rc) + if (rc) { DRM_ERROR("Audio registration Dp failed\n"); + goto end; + } + + rc = dp_hpd_event_thread_start(dp); + if (rc) { + DRM_ERROR("Event thread create failed\n"); + goto end; + } + return 0; end: return rc; } @@ -247,6 +259,11 @@ dp = container_of(g_dp_display, struct dp_display_private, dp_display); + /* disable all HPD interrupts */ + dp_catalog_hpd_config_intr(dp->catalog, DP_DP_HPD_INT_MASK, false); + + kthread_stop(dp->ev_tsk); + dp_power_client_deinit(dp->power); dp_aux_unregister(dp->aux); priv->dp = NULL; @@ -551,12 +568,6 @@ mutex_unlock(&dp->event_mutex); - /* - * add fail safe mode outside event_mutex scope - * to avoid potiential circular lock with drm thread - */ - dp_panel_add_fail_safe_mode(dp->dp_display.connector); - /* uevent will complete connection part */ return 0; }; @@ -1061,12 +1072,17 @@ while (1) { if (timeout_mode) { wait_event_timeout(dp_priv->event_q, - (dp_priv->event_pndx == dp_priv->event_gndx), - EVENT_TIMEOUT); + (dp_priv->event_pndx == dp_priv->event_gndx) || + kthread_should_stop(), EVENT_TIMEOUT); } else { wait_event_interruptible(dp_priv->event_q, - (dp_priv->event_pndx != dp_priv->event_gndx)); + (dp_priv->event_pndx != dp_priv->event_gndx) || + kthread_should_stop()); } + + if (kthread_should_stop()) + break; + spin_lock_irqsave(&dp_priv->event_lock, flag); todo = &dp_priv->event_list[dp_priv->event_gndx]; if (todo->delay) { @@ -1136,12 +1152,17 @@ return 0; } -static void dp_hpd_event_setup(struct dp_display_private *dp_priv) +static int dp_hpd_event_thread_start(struct dp_display_private *dp_priv) { - init_waitqueue_head(&dp_priv->event_q); - spin_lock_init(&dp_priv->event_lock); + /* set event q to empty */ + dp_priv->event_gndx = 0; + dp_priv->event_pndx = 0; - kthread_run(hpd_event_thread, dp_priv, "dp_hpd_handler"); + dp_priv->ev_tsk = kthread_run(hpd_event_thread, dp_priv, "dp_hpd_handler"); + if (IS_ERR(dp_priv->ev_tsk)) + return PTR_ERR(dp_priv->ev_tsk); + + return 0; } static irqreturn_t dp_display_irq_handler(int irq, void *dev_id) @@ -1200,10 +1221,9 @@ dp = container_of(dp_display, struct dp_display_private, dp_display); dp->irq = irq_of_parse_and_map(dp->pdev->dev.of_node, 0); - if (dp->irq < 0) { - rc = dp->irq; - DRM_ERROR("failed to get irq: %d\n", rc); - return rc; + if (!dp->irq) { + DRM_ERROR("failed to get irq\n"); + return -EINVAL; } rc = devm_request_irq(&dp->pdev->dev, dp->irq, @@ -1242,8 +1262,11 @@ return -EPROBE_DEFER; } + /* setup event q */ mutex_init(&dp->event_mutex); g_dp_display = &dp->dp_display; + init_waitqueue_head(&dp->event_q); + spin_lock_init(&dp->event_lock); /* Store DP audio handle inside DP display */ g_dp_display->dp_audio = dp->audio; @@ -1420,8 +1443,6 @@ dp = container_of(dp_display, struct dp_display_private, dp_display); - dp_hpd_event_setup(dp); - dp_add_event(dp, EV_HPD_INIT_SETUP, 0, 100); } diff -u linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/msm/dp/dp_panel.c linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/msm/dp/dp_panel.c --- linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/msm/dp/dp_panel.c +++ linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/msm/dp/dp_panel.c @@ -151,15 +151,6 @@ return rc; } -void dp_panel_add_fail_safe_mode(struct drm_connector *connector) -{ - /* fail safe edid */ - mutex_lock(&connector->dev->mode_config.mutex); - if (drm_add_modes_noedid(connector, 640, 480)) - drm_set_preferred_mode(connector, 640, 480); - mutex_unlock(&connector->dev->mode_config.mutex); -} - int dp_panel_read_sink_caps(struct dp_panel *dp_panel, struct drm_connector *connector) { @@ -215,8 +206,6 @@ rc = -ETIMEDOUT; goto end; } - - dp_panel_add_fail_safe_mode(connector); } if (panel->aux_cfg_update_done) { reverted: --- linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/msm/dp/dp_panel.h +++ linux-intel-iotg-5.15-5.15.0.orig/drivers/gpu/drm/msm/dp/dp_panel.h @@ -59,7 +59,6 @@ int dp_panel_deinit(struct dp_panel *dp_panel); int dp_panel_timing_cfg(struct dp_panel *dp_panel); void dp_panel_dump_regs(struct dp_panel *dp_panel); -void dp_panel_add_fail_safe_mode(struct drm_connector *connector); int dp_panel_read_sink_caps(struct dp_panel *dp_panel, struct drm_connector *connector); u32 dp_panel_get_mode_bpp(struct dp_panel *dp_panel, u32 mode_max_bpp, diff -u linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/msm/dsi/dsi_host.c linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/msm/dsi/dsi_host.c --- linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/msm/dsi/dsi_host.c +++ linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/msm/dsi/dsi_host.c @@ -1375,10 +1375,10 @@ dsi_get_bpp(msm_host->format) / 8; len = dsi_cmd_dma_add(msm_host, msg); - if (!len) { + if (len < 0) { pr_err("%s: failed to add cmd type = 0x%x\n", __func__, msg->type); - return -EINVAL; + return len; } /* for video mode, do not send cmds more than @@ -1397,10 +1397,14 @@ } ret = dsi_cmd_dma_tx(msm_host, len); - if (ret < len) { - pr_err("%s: cmd dma tx failed, type=0x%x, data0=0x%x, len=%d\n", - __func__, msg->type, (*(u8 *)(msg->tx_buf)), len); - return -ECOMM; + if (ret < 0) { + pr_err("%s: cmd dma tx failed, type=0x%x, data0=0x%x, len=%d, ret=%d\n", + __func__, msg->type, (*(u8 *)(msg->tx_buf)), len, ret); + return ret; + } else if (ret < len) { + pr_err("%s: cmd dma tx failed, type=0x%x, data0=0x%x, ret=%d len=%d\n", + __func__, msg->type, (*(u8 *)(msg->tx_buf)), ret, len); + return -EIO; } return len; @@ -2135,9 +2139,12 @@ } ret = dsi_cmds2buf_tx(msm_host, msg); - if (ret < msg->tx_len) { + if (ret < 0) { pr_err("%s: Read cmd Tx failed, %d\n", __func__, ret); return ret; + } else if (ret < msg->tx_len) { + pr_err("%s: Read cmd Tx failed, too short: %d\n", __func__, ret); + return -ECOMM; } /* diff -u linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/msm/dsi/phy/dsi_phy_14nm.c linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/msm/dsi/phy/dsi_phy_14nm.c --- linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/msm/dsi/phy/dsi_phy_14nm.c +++ linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/msm/dsi/phy/dsi_phy_14nm.c @@ -1065,5 +1065,5 @@ .min_pll_rate = VCO_MIN_RATE, .max_pll_rate = VCO_MAX_RATE, - .io_start = { 0xc994400, 0xc996000 }, + .io_start = { 0xc994400, 0xc996400 }, .num_dsi_phy = 2, }; diff -u linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/msm/hdmi/hdmi.c linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/msm/hdmi/hdmi.c --- linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/msm/hdmi/hdmi.c +++ linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/msm/hdmi/hdmi.c @@ -8,6 +8,8 @@ #include #include +#include + #include #include "hdmi.h" @@ -41,7 +43,7 @@ struct hdmi *hdmi = dev_id; /* Process HPD: */ - msm_hdmi_connector_irq(hdmi->connector); + msm_hdmi_hpd_irq(hdmi->bridge); /* Process DDC: */ msm_hdmi_i2c_irq(hdmi->i2c); @@ -142,6 +144,10 @@ /* HDCP needs physical address of hdmi register */ res = platform_get_resource_byname(pdev, IORESOURCE_MEM, config->mmio_name); + if (!res) { + ret = -EINVAL; + goto fail; + } hdmi->mmio_phy_addr = res->start; hdmi->qfprom_mmio = msm_ioremap(pdev, @@ -302,7 +308,7 @@ goto fail; } - hdmi->connector = msm_hdmi_connector_init(hdmi); + hdmi->connector = drm_bridge_connector_init(hdmi->dev, encoder); if (IS_ERR(hdmi->connector)) { ret = PTR_ERR(hdmi->connector); DRM_DEV_ERROR(dev->dev, "failed to create HDMI connector: %d\n", ret); @@ -310,10 +316,12 @@ goto fail; } + drm_connector_attach_encoder(hdmi->connector, hdmi->encoder); + hdmi->irq = irq_of_parse_and_map(pdev->dev.of_node, 0); - if (hdmi->irq < 0) { - ret = hdmi->irq; - DRM_DEV_ERROR(dev->dev, "failed to get irq: %d\n", ret); + if (!hdmi->irq) { + ret = -EINVAL; + DRM_DEV_ERROR(dev->dev, "failed to get irq\n"); goto fail; } @@ -326,7 +334,9 @@ goto fail; } - ret = msm_hdmi_hpd_enable(hdmi->connector); + drm_bridge_connector_enable_hpd(hdmi->connector); + + ret = msm_hdmi_hpd_enable(hdmi->bridge); if (ret < 0) { DRM_DEV_ERROR(&hdmi->pdev->dev, "failed to enable HPD: %d\n", ret); goto fail; diff -u linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/msm/msm_drv.c linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/msm/msm_drv.c --- linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/msm/msm_drv.c +++ linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/msm/msm_drv.c @@ -11,6 +11,7 @@ #include #include +#include #include #include #include @@ -236,6 +237,8 @@ static int msm_irq_install(struct drm_device *dev, unsigned int irq) { + struct msm_drm_private *priv = dev->dev_private; + struct msm_kms *kms = priv->kms; int ret; if (irq == IRQ_NOTCONNECTED) @@ -247,6 +250,8 @@ if (ret) return ret; + kms->irq_requested = true; + ret = msm_irq_postinstall(dev); if (ret) { free_irq(irq, dev); @@ -262,7 +267,8 @@ struct msm_kms *kms = priv->kms; kms->funcs->irq_uninstall(kms); - free_irq(kms->irq, dev); + if (kms->irq_requested) + free_irq(kms->irq, dev); } struct msm_vblank_work { diff -u linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/nouveau/nouveau_backlight.c linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/nouveau/nouveau_backlight.c --- linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/nouveau/nouveau_backlight.c +++ linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/nouveau/nouveau_backlight.c @@ -46,8 +46,9 @@ nouveau_get_backlight_name(char backlight_name[BL_NAME_SIZE], struct nouveau_backlight *bl) { - const int nb = ida_simple_get(&bl_ida, 0, 0, GFP_KERNEL); - if (nb < 0 || nb >= 100) + const int nb = ida_alloc_max(&bl_ida, 99, GFP_KERNEL); + + if (nb < 0) return false; if (nb > 0) snprintf(backlight_name, BL_NAME_SIZE, "nv_backlight%d", nb); @@ -411,7 +412,7 @@ nv_encoder, ops, &props); if (IS_ERR(bl->dev)) { if (bl->id >= 0) - ida_simple_remove(&bl_ida, bl->id); + ida_free(&bl_ida, bl->id); ret = PTR_ERR(bl->dev); goto fail_alloc; } @@ -439,7 +440,7 @@ return; if (bl->id >= 0) - ida_simple_remove(&bl_ida, bl->id); + ida_free(&bl_ida, bl->id); backlight_device_unregister(bl->dev); nv_conn->backlight = NULL; diff -u linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/panel/panel-simple.c linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/panel/panel-simple.c --- linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/panel/panel-simple.c +++ linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/panel/panel-simple.c @@ -862,7 +862,7 @@ static const struct panel_desc ampire_am_1280800n3tzqw_t00h = { .modes = &ire_am_1280800n3tzqw_t00h_mode, .num_modes = 1, - .bpc = 6, + .bpc = 8, .size = { .width = 217, .height = 136, @@ -2522,6 +2522,7 @@ .unprepare = 800, }, .bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG, + .bus_flags = DRM_BUS_FLAG_DE_HIGH, .connector_type = DRM_MODE_CONNECTOR_LVDS, }; diff -u linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/vc4/vc4_crtc.c linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/vc4/vc4_crtc.c --- linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/vc4/vc4_crtc.c +++ linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/vc4/vc4_crtc.c @@ -123,7 +123,7 @@ *vpos /= 2; /* Use hpos to correct for field offset in interlaced mode. */ - if (VC4_GET_FIELD(val, SCALER_DISPSTATX_FRAME_COUNT) % 2) + if (vc4_hvs_get_fifo_frame_count(dev, vc4_crtc_state->assigned_channel) % 2) *hpos += mode->crtc_htotal / 2; } diff -u linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/vc4/vc4_drv.h linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/vc4/vc4_drv.h --- linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/vc4/vc4_drv.h +++ linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/vc4/vc4_drv.h @@ -933,6 +933,7 @@ extern struct platform_driver vc4_hvs_driver; void vc4_hvs_stop_channel(struct drm_device *dev, unsigned int output); int vc4_hvs_get_fifo_from_output(struct drm_device *dev, unsigned int output); +u8 vc4_hvs_get_fifo_frame_count(struct drm_device *dev, unsigned int fifo); int vc4_hvs_atomic_check(struct drm_crtc *crtc, struct drm_atomic_state *state); void vc4_hvs_atomic_begin(struct drm_crtc *crtc, struct drm_atomic_state *state); void vc4_hvs_atomic_enable(struct drm_crtc *crtc, struct drm_atomic_state *state); diff -u linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/vc4/vc4_dsi.c linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/vc4/vc4_dsi.c --- linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/vc4/vc4_dsi.c +++ linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/vc4/vc4_dsi.c @@ -846,7 +846,7 @@ unsigned long phy_clock; int ret; - ret = pm_runtime_get_sync(dev); + ret = pm_runtime_resume_and_get(dev); if (ret) { DRM_ERROR("Failed to runtime PM enable on DSI%d\n", dsi->variant->port); return; diff -u linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/vc4/vc4_hdmi.c linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/vc4/vc4_hdmi.c --- linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/vc4/vc4_hdmi.c +++ linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/vc4/vc4_hdmi.c @@ -38,6 +38,7 @@ #include #include #include +#include #include #include #include diff -u linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/vc4/vc4_hvs.c linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/vc4/vc4_hvs.c --- linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/vc4/vc4_hvs.c +++ linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/vc4/vc4_hvs.c @@ -197,6 +197,29 @@ vc4_hvs_lut_load(crtc); } +u8 vc4_hvs_get_fifo_frame_count(struct drm_device *dev, unsigned int fifo) +{ + struct vc4_dev *vc4 = to_vc4_dev(dev); + u8 field = 0; + + switch (fifo) { + case 0: + field = VC4_GET_FIELD(HVS_READ(SCALER_DISPSTAT1), + SCALER_DISPSTAT1_FRCNT0); + break; + case 1: + field = VC4_GET_FIELD(HVS_READ(SCALER_DISPSTAT1), + SCALER_DISPSTAT1_FRCNT1); + break; + case 2: + field = VC4_GET_FIELD(HVS_READ(SCALER_DISPSTAT2), + SCALER_DISPSTAT2_FRCNT2); + break; + } + + return field; +} + int vc4_hvs_get_fifo_from_output(struct drm_device *dev, unsigned int output) { struct vc4_dev *vc4 = to_vc4_dev(dev); @@ -582,6 +605,7 @@ struct vc4_hvs *hvs = NULL; int ret; u32 dispctrl; + u32 reg; hvs = devm_kzalloc(&pdev->dev, sizeof(*hvs), GFP_KERNEL); if (!hvs) @@ -653,6 +677,26 @@ vc4->hvs = hvs; + reg = HVS_READ(SCALER_DISPECTRL); + reg &= ~SCALER_DISPECTRL_DSP2_MUX_MASK; + HVS_WRITE(SCALER_DISPECTRL, + reg | VC4_SET_FIELD(0, SCALER_DISPECTRL_DSP2_MUX)); + + reg = HVS_READ(SCALER_DISPCTRL); + reg &= ~SCALER_DISPCTRL_DSP3_MUX_MASK; + HVS_WRITE(SCALER_DISPCTRL, + reg | VC4_SET_FIELD(3, SCALER_DISPCTRL_DSP3_MUX)); + + reg = HVS_READ(SCALER_DISPEOLN); + reg &= ~SCALER_DISPEOLN_DSP4_MUX_MASK; + HVS_WRITE(SCALER_DISPEOLN, + reg | VC4_SET_FIELD(3, SCALER_DISPEOLN_DSP4_MUX)); + + reg = HVS_READ(SCALER_DISPDITHER); + reg &= ~SCALER_DISPDITHER_DSP5_MUX_MASK; + HVS_WRITE(SCALER_DISPDITHER, + reg | VC4_SET_FIELD(3, SCALER_DISPDITHER_DSP5_MUX)); + dispctrl = HVS_READ(SCALER_DISPCTRL); dispctrl |= SCALER_DISPCTRL_ENABLE; @@ -660,10 +704,6 @@ SCALER_DISPCTRL_DISPEIRQ(1) | SCALER_DISPCTRL_DISPEIRQ(2); - /* Set DSP3 (PV1) to use HVS channel 2, which would otherwise - * be unused. - */ - dispctrl &= ~SCALER_DISPCTRL_DSP3_MUX_MASK; dispctrl &= ~(SCALER_DISPCTRL_DMAEIRQ | SCALER_DISPCTRL_SLVWREIRQ | SCALER_DISPCTRL_SLVRDEIRQ | @@ -677,7 +717,6 @@ SCALER_DISPCTRL_DSPEISLUR(1) | SCALER_DISPCTRL_DSPEISLUR(2) | SCALER_DISPCTRL_SCLEIRQ); - dispctrl |= VC4_SET_FIELD(2, SCALER_DISPCTRL_DSP3_MUX); HVS_WRITE(SCALER_DISPCTRL, dispctrl); diff -u linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/vc4/vc4_txp.c linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/vc4/vc4_txp.c --- linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/vc4/vc4_txp.c +++ linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/vc4/vc4_txp.c @@ -298,12 +298,18 @@ if (WARN_ON(i == ARRAY_SIZE(drm_fmts))) return; - ctrl = TXP_GO | TXP_VSTART_AT_EOF | TXP_EI | + ctrl = TXP_GO | TXP_EI | VC4_SET_FIELD(0xf, TXP_BYTE_ENABLE) | VC4_SET_FIELD(txp_fmts[i], TXP_FORMAT); if (fb->format->has_alpha) ctrl |= TXP_ALPHA_ENABLE; + else + /* + * If TXP_ALPHA_ENABLE isn't set and TXP_ALPHA_INVERT is, the + * hardware will force the output padding to be 0xff. + */ + ctrl |= TXP_ALPHA_INVERT; gem = drm_fb_cma_get_gem_obj(fb, 0); TXP_WRITE(TXP_DST_PTR, gem->paddr + fb->offsets[0]); diff -u linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/vmwgfx/vmwgfx_cmd.c linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/vmwgfx/vmwgfx_cmd.c --- linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/vmwgfx/vmwgfx_cmd.c +++ linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/vmwgfx/vmwgfx_cmd.c @@ -528,7 +528,7 @@ *seqno = atomic_add_return(1, &dev_priv->marker_seq); } while (*seqno == 0); - if (!(vmw_fifo_caps(dev_priv) & SVGA_FIFO_CAP_FENCE)) { + if (!vmw_has_fences(dev_priv)) { /* * Don't request hardware to send a fence. The @@ -677,9 +677,12 @@ { - if ((vmw->capabilities & (SVGA_CAP_COMMAND_BUFFERS | - SVGA_CAP_CMD_BUFFERS_2)) != 0) - return true; + bool has_cmdbufs = + (vmw->capabilities & (SVGA_CAP_COMMAND_BUFFERS | + SVGA_CAP_CMD_BUFFERS_2)) != 0; + if (vmw_is_svga_v3(vmw)) + return (has_cmdbufs && + (vmw->capabilities & SVGA_CAP_GBOBJECTS) != 0); /* * We have FIFO cmd's */ - return vmw->fifo_mem != NULL; + return has_cmdbufs || vmw->fifo_mem != NULL; } diff -u linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/vmwgfx/vmwgfx_drv.h linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/vmwgfx/vmwgfx_drv.h --- linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/vmwgfx/vmwgfx_drv.h +++ linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/vmwgfx/vmwgfx_drv.h @@ -1679,2 +1679,10 @@ +static inline bool vmw_has_fences(struct vmw_private *vmw) +{ + if ((vmw->capabilities & (SVGA_CAP_COMMAND_BUFFERS | + SVGA_CAP_CMD_BUFFERS_2)) != 0) + return true; + return (vmw_fifo_caps(vmw) & SVGA_FIFO_CAP_FENCE) != 0; +} + #endif diff -u linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/vmwgfx/vmwgfx_fence.c linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/vmwgfx/vmwgfx_fence.c --- linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/vmwgfx/vmwgfx_fence.c +++ linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/vmwgfx/vmwgfx_fence.c @@ -85,6 +85,22 @@ return container_of(fence->base.lock, struct vmw_fence_manager, lock); } +static u32 vmw_fence_goal_read(struct vmw_private *vmw) +{ + if ((vmw->capabilities2 & SVGA_CAP2_EXTRA_REGS) != 0) + return vmw_read(vmw, SVGA_REG_FENCE_GOAL); + else + return vmw_fifo_mem_read(vmw, SVGA_FIFO_FENCE_GOAL); +} + +static void vmw_fence_goal_write(struct vmw_private *vmw, u32 value) +{ + if ((vmw->capabilities2 & SVGA_CAP2_EXTRA_REGS) != 0) + vmw_write(vmw, SVGA_REG_FENCE_GOAL, value); + else + vmw_fifo_mem_write(vmw, SVGA_FIFO_FENCE_GOAL, value); +} + /* * Note on fencing subsystem usage of irqs: * Typically the vmw_fences_update function is called @@ -400,7 +416,7 @@ if (likely(!fman->seqno_valid)) return false; - goal_seqno = vmw_fifo_mem_read(fman->dev_priv, SVGA_FIFO_FENCE_GOAL); + goal_seqno = vmw_fence_goal_read(fman->dev_priv); if (likely(passed_seqno - goal_seqno >= VMW_FENCE_WRAP)) return false; @@ -408,9 +424,8 @@ list_for_each_entry(fence, &fman->fence_list, head) { if (!list_empty(&fence->seq_passed_actions)) { fman->seqno_valid = true; - vmw_fifo_mem_write(fman->dev_priv, - SVGA_FIFO_FENCE_GOAL, - fence->base.seqno); + vmw_fence_goal_write(fman->dev_priv, + fence->base.seqno); break; } } @@ -442,13 +457,12 @@ if (dma_fence_is_signaled_locked(&fence->base)) return false; - goal_seqno = vmw_fifo_mem_read(fman->dev_priv, SVGA_FIFO_FENCE_GOAL); + goal_seqno = vmw_fence_goal_read(fman->dev_priv); if (likely(fman->seqno_valid && goal_seqno - fence->base.seqno < VMW_FENCE_WRAP)) return false; - vmw_fifo_mem_write(fman->dev_priv, SVGA_FIFO_FENCE_GOAL, - fence->base.seqno); + vmw_fence_goal_write(fman->dev_priv, fence->base.seqno); fman->seqno_valid = true; return true; diff -u linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/vmwgfx/vmwgfx_kms.c linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/vmwgfx/vmwgfx_kms.c --- linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/vmwgfx/vmwgfx_kms.c +++ linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/vmwgfx/vmwgfx_kms.c @@ -916,6 +916,15 @@ * Sanity checks. */ + if (!drm_any_plane_has_format(&dev_priv->drm, + mode_cmd->pixel_format, + mode_cmd->modifier[0])) { + drm_dbg(&dev_priv->drm, + "unsupported pixel format %p4cc / modifier 0x%llx\n", + &mode_cmd->pixel_format, mode_cmd->modifier[0]); + return -EINVAL; + } + /* Surface must be marked as a scanout. */ if (unlikely(!surface->metadata.scanout)) return -EINVAL; @@ -1229,20 +1238,13 @@ return -EINVAL; } - /* Limited framebuffer color depth support for screen objects */ - if (dev_priv->active_display_unit == vmw_du_screen_object) { - switch (mode_cmd->pixel_format) { - case DRM_FORMAT_XRGB8888: - case DRM_FORMAT_ARGB8888: - break; - case DRM_FORMAT_XRGB1555: - case DRM_FORMAT_RGB565: - break; - default: - DRM_ERROR("Invalid pixel format: %p4cc\n", - &mode_cmd->pixel_format); - return -EINVAL; - } + if (!drm_any_plane_has_format(&dev_priv->drm, + mode_cmd->pixel_format, + mode_cmd->modifier[0])) { + drm_dbg(&dev_priv->drm, + "unsupported pixel format %p4cc / modifier 0x%llx\n", + &mode_cmd->pixel_format, mode_cmd->modifier[0]); + return -EINVAL; } vfbd = kzalloc(sizeof(*vfbd), GFP_KERNEL); @@ -1336,7 +1338,6 @@ ret = vmw_kms_new_framebuffer_surface(dev_priv, surface, &vfb, mode_cmd, is_bo_proxy); - /* * vmw_create_bo_proxy() adds a reference that is no longer * needed @@ -1398,13 +1399,16 @@ ret = vmw_user_lookup_handle(dev_priv, tfile, mode_cmd->handles[0], &surface, &bo); - if (ret) + if (ret) { + DRM_ERROR("Invalid buffer object handle %u (0x%x).\n", + mode_cmd->handles[0], mode_cmd->handles[0]); goto err_out; + } if (!bo && !vmw_kms_srf_ok(dev_priv, mode_cmd->width, mode_cmd->height)) { - DRM_ERROR("Surface size cannot exceed %dx%d", + DRM_ERROR("Surface size cannot exceed %dx%d\n", dev_priv->texture_max_width, dev_priv->texture_max_height); goto err_out; diff -u linux-intel-iotg-5.15-5.15.0/drivers/hid/amd-sfh-hid/amd_sfh_pcie.c linux-intel-iotg-5.15-5.15.0/drivers/hid/amd-sfh-hid/amd_sfh_pcie.c --- linux-intel-iotg-5.15-5.15.0/drivers/hid/amd-sfh-hid/amd_sfh_pcie.c +++ linux-intel-iotg-5.15-5.15.0/drivers/hid/amd-sfh-hid/amd_sfh_pcie.c @@ -129,6 +129,12 @@ return 0; } +static int amd_sfh_dis_sts_v2(struct amd_mp2_dev *privdata) +{ + return (readl(privdata->mmio + AMD_P2C_MSG(1)) & + SENSOR_DISCOVERY_STATUS_MASK) >> SENSOR_DISCOVERY_STATUS_SHIFT; +} + void amd_start_sensor(struct amd_mp2_dev *privdata, struct amd_mp2_sensor_info info) { union sfh_cmd_param cmd_param; @@ -244,6 +250,7 @@ .response = amd_sfh_wait_response_v2, .clear_intr = amd_sfh_clear_intr_v2, .init_intr = amd_sfh_irq_init_v2, + .discovery_status = amd_sfh_dis_sts_v2, }; static const struct amd_mp2_ops amd_sfh_ops = { diff -u linux-intel-iotg-5.15-5.15.0/drivers/hid/amd-sfh-hid/amd_sfh_pcie.h linux-intel-iotg-5.15-5.15.0/drivers/hid/amd-sfh-hid/amd_sfh_pcie.h --- linux-intel-iotg-5.15-5.15.0/drivers/hid/amd-sfh-hid/amd_sfh_pcie.h +++ linux-intel-iotg-5.15-5.15.0/drivers/hid/amd-sfh-hid/amd_sfh_pcie.h @@ -38,6 +38,9 @@ #define AMD_SFH_IDLE_LOOP 200 +#define SENSOR_DISCOVERY_STATUS_MASK GENMASK(5, 3) +#define SENSOR_DISCOVERY_STATUS_SHIFT 3 + /* SFH Command register */ union sfh_cmd_base { u32 ul; @@ -143,4 +146,5 @@ void (*clear_intr)(struct amd_mp2_dev *privdata); int (*init_intr)(struct amd_mp2_dev *privdata); + int (*discovery_status)(struct amd_mp2_dev *privdata); }; #endif diff -u linux-intel-iotg-5.15-5.15.0/drivers/hid/hid-bigbenff.c linux-intel-iotg-5.15-5.15.0/drivers/hid/hid-bigbenff.c --- linux-intel-iotg-5.15-5.15.0/drivers/hid/hid-bigbenff.c +++ linux-intel-iotg-5.15-5.15.0/drivers/hid/hid-bigbenff.c @@ -347,6 +347,12 @@ bigben->report = list_entry(report_list->next, struct hid_report, list); + if (list_empty(&hid->inputs)) { + hid_err(hid, "no inputs found\n"); + error = -ENODEV; + goto error_hw_stop; + } + hidinput = list_first_entry(&hid->inputs, struct hid_input, list); set_bit(FF_RUMBLE, hidinput->input->ffbit); diff -u linux-intel-iotg-5.15-5.15.0/drivers/hid/hid-elan.c linux-intel-iotg-5.15-5.15.0/drivers/hid/hid-elan.c --- linux-intel-iotg-5.15-5.15.0/drivers/hid/hid-elan.c +++ linux-intel-iotg-5.15-5.15.0/drivers/hid/hid-elan.c @@ -188,7 +188,6 @@ ret = input_mt_init_slots(input, ELAN_MAX_FINGERS, INPUT_MT_POINTER); if (ret) { hid_err(hdev, "Failed to init elan MT slots: %d\n", ret); - input_free_device(input); return ret; } @@ -200,7 +199,6 @@ hid_err(hdev, "Failed to register elan input device: %d\n", ret); input_mt_destroy_slots(input); - input_free_device(input); return ret; } diff -u linux-intel-iotg-5.15-5.15.0/drivers/hid/hid-ids.h linux-intel-iotg-5.15-5.15.0/drivers/hid/hid-ids.h --- linux-intel-iotg-5.15-5.15.0/drivers/hid/hid-ids.h +++ linux-intel-iotg-5.15-5.15.0/drivers/hid/hid-ids.h @@ -753,6 +753,7 @@ #define USB_DEVICE_ID_LENOVO_X1_COVER 0x6085 #define USB_DEVICE_ID_LENOVO_X1_TAB 0x60a3 #define USB_DEVICE_ID_LENOVO_X1_TAB3 0x60b5 +#define USB_DEVICE_ID_LENOVO_X12_TAB 0x60fe #define USB_DEVICE_ID_LENOVO_OPTICAL_USB_MOUSE_600E 0x600e #define USB_DEVICE_ID_LENOVO_PIXART_USB_MOUSE_608D 0x608d #define USB_DEVICE_ID_LENOVO_PIXART_USB_MOUSE_6019 0x6019 diff -u linux-intel-iotg-5.15-5.15.0/drivers/hid/hid-multitouch.c linux-intel-iotg-5.15-5.15.0/drivers/hid/hid-multitouch.c --- linux-intel-iotg-5.15-5.15.0/drivers/hid/hid-multitouch.c +++ linux-intel-iotg-5.15-5.15.0/drivers/hid/hid-multitouch.c @@ -2032,6 +2032,12 @@ USB_VENDOR_ID_LENOVO, USB_DEVICE_ID_LENOVO_X1_TAB3) }, + /* Lenovo X12 TAB Gen 1 */ + { .driver_data = MT_CLS_WIN_8_FORCE_MULTI_INPUT, + HID_DEVICE(BUS_USB, HID_GROUP_MULTITOUCH_WIN_8, + USB_VENDOR_ID_LENOVO, + USB_DEVICE_ID_LENOVO_X12_TAB) }, + /* MosArt panels */ { .driver_data = MT_CLS_CONFIDENCE_MINUS_ONE, MT_USB_DEVICE(USB_VENDOR_ID_ASUS, @@ -2176,6 +2182,9 @@ { .driver_data = MT_CLS_GOOGLE, HID_DEVICE(HID_BUS_ANY, HID_GROUP_ANY, USB_VENDOR_ID_GOOGLE, USB_DEVICE_ID_GOOGLE_TOUCH_ROSE) }, + { .driver_data = MT_CLS_GOOGLE, + HID_DEVICE(BUS_USB, HID_GROUP_MULTITOUCH_WIN_8, USB_VENDOR_ID_GOOGLE, + USB_DEVICE_ID_GOOGLE_WHISKERS) }, /* Generic MT device */ { HID_DEVICE(HID_BUS_ANY, HID_GROUP_MULTITOUCH, HID_ANY_ID, HID_ANY_ID) }, diff -u linux-intel-iotg-5.15-5.15.0/drivers/hv/vmbus_drv.c linux-intel-iotg-5.15-5.15.0/drivers/hv/vmbus_drv.c --- linux-intel-iotg-5.15-5.15.0/drivers/hv/vmbus_drv.c +++ linux-intel-iotg-5.15-5.15.0/drivers/hv/vmbus_drv.c @@ -1381,7 +1381,7 @@ tasklet_schedule(&hv_cpu->msg_dpc); } - add_interrupt_randomness(vmbus_interrupt, 0); + add_interrupt_randomness(vmbus_interrupt); } static irqreturn_t vmbus_percpu_isr(int irq, void *dev_id) diff -u linux-intel-iotg-5.15-5.15.0/drivers/hwmon/Kconfig linux-intel-iotg-5.15-5.15.0/drivers/hwmon/Kconfig --- linux-intel-iotg-5.15-5.15.0/drivers/hwmon/Kconfig +++ linux-intel-iotg-5.15-5.15.0/drivers/hwmon/Kconfig @@ -956,7 +956,7 @@ config SENSORS_LTQ_CPUTEMP bool "Lantiq cpu temperature sensor driver" - depends on LANTIQ + depends on SOC_XWAY help If you say yes here you get support for the temperature sensor inside your CPU. diff -u linux-intel-iotg-5.15-5.15.0/drivers/hwmon/adt7470.c linux-intel-iotg-5.15-5.15.0/drivers/hwmon/adt7470.c --- linux-intel-iotg-5.15-5.15.0/drivers/hwmon/adt7470.c +++ linux-intel-iotg-5.15-5.15.0/drivers/hwmon/adt7470.c @@ -19,6 +19,7 @@ #include #include #include +#include #include #include @@ -294,11 +295,10 @@ adt7470_read_temperatures(data); mutex_unlock(&data->lock); - set_current_state(TASK_INTERRUPTIBLE); if (kthread_should_stop()) break; - schedule_timeout(msecs_to_jiffies(data->auto_update_interval)); + schedule_timeout_interruptible(msecs_to_jiffies(data->auto_update_interval)); } return 0; diff -u linux-intel-iotg-5.15-5.15.0/drivers/hwmon/pmbus/pmbus_core.c linux-intel-iotg-5.15-5.15.0/drivers/hwmon/pmbus/pmbus_core.c --- linux-intel-iotg-5.15-5.15.0/drivers/hwmon/pmbus/pmbus_core.c +++ linux-intel-iotg-5.15-5.15.0/drivers/hwmon/pmbus/pmbus_core.c @@ -2309,6 +2309,21 @@ int page, ret; /* + * Figure out if PEC is enabled before accessing any other register. + * Make sure PEC is disabled, will be enabled later if needed. + */ + client->flags &= ~I2C_CLIENT_PEC; + + /* Enable PEC if the controller and bus supports it */ + if (!(data->flags & PMBUS_NO_CAPABILITY)) { + ret = i2c_smbus_read_byte_data(client, PMBUS_CAPABILITY); + if (ret >= 0 && (ret & PB_CAPABILITY_ERROR_CHECK)) { + if (i2c_check_functionality(client->adapter, I2C_FUNC_SMBUS_PEC)) + client->flags |= I2C_CLIENT_PEC; + } + } + + /* * Some PMBus chips don't support PMBUS_STATUS_WORD, so try * to use PMBUS_STATUS_BYTE instead if that is the case. * Bail out if both registers are not supported. @@ -2326,16 +2341,6 @@ data->has_status_word = true; } - /* Enable PEC if the controller and bus supports it */ - if (!(data->flags & PMBUS_NO_CAPABILITY)) { - ret = i2c_smbus_read_byte_data(client, PMBUS_CAPABILITY); - if (ret >= 0 && (ret & PB_CAPABILITY_ERROR_CHECK)) { - if (i2c_check_functionality(client->adapter, I2C_FUNC_SMBUS_PEC)) { - client->flags |= I2C_CLIENT_PEC; - } - } - } - /* * Check if the chip is write protected. If it is, we can not clear * faults, and we should not try it. Also, in that case, writes into diff -u linux-intel-iotg-5.15-5.15.0/drivers/i2c/busses/Kconfig linux-intel-iotg-5.15-5.15.0/drivers/i2c/busses/Kconfig --- linux-intel-iotg-5.15-5.15.0/drivers/i2c/busses/Kconfig +++ linux-intel-iotg-5.15-5.15.0/drivers/i2c/busses/Kconfig @@ -1308,6 +1308,16 @@ If you have a 2019 edition board with an LTC2990 sensor at address 0x4c, loading the module 'ltc2990' is sufficient to enable it. +config I2C_LJCA + tristate "I2C functionality of INTEL La Jolla Cove Adapter" + depends on MFD_LJCA + help + If you say yes to this option, I2C functionality support of INTEL + La Jolla Cove Adapter (LJCA) will be included. + + This driver can also be built as a module. If so, the module + will be called i2c-ljca. + config I2C_MLXCPLD tristate "Mellanox I2C driver" depends on X86_64 || COMPILE_TEST diff -u linux-intel-iotg-5.15-5.15.0/drivers/iio/accel/adxl345_i2c.c linux-intel-iotg-5.15-5.15.0/drivers/iio/accel/adxl345_i2c.c --- linux-intel-iotg-5.15-5.15.0/drivers/iio/accel/adxl345_i2c.c +++ linux-intel-iotg-5.15-5.15.0/drivers/iio/accel/adxl345_i2c.c @@ -56,7 +56,6 @@ .of_match_table = adxl345_of_match, .acpi_match_table = adxl345_acpi_match, }, - .remove = adxl345_i2c_remove, .probe_new = adxl345_i2c_probe, .id_table = adxl345_i2c_id, }; diff -u linux-intel-iotg-5.15-5.15.0/drivers/iio/dac/ad5446.c linux-intel-iotg-5.15-5.15.0/drivers/iio/dac/ad5446.c --- linux-intel-iotg-5.15-5.15.0/drivers/iio/dac/ad5446.c +++ linux-intel-iotg-5.15-5.15.0/drivers/iio/dac/ad5446.c @@ -178,7 +178,7 @@ switch (m) { case IIO_CHAN_INFO_RAW: - *val = st->cached_val; + *val = st->cached_val >> chan->scan_type.shift; return IIO_VAL_INT; case IIO_CHAN_INFO_SCALE: *val = st->vref_mv; diff -u linux-intel-iotg-5.15-5.15.0/drivers/infiniband/hw/hfi1/init.c linux-intel-iotg-5.15-5.15.0/drivers/infiniband/hw/hfi1/init.c --- linux-intel-iotg-5.15-5.15.0/drivers/infiniband/hw/hfi1/init.c +++ linux-intel-iotg-5.15-5.15.0/drivers/infiniband/hw/hfi1/init.c @@ -488,7 +488,7 @@ u16 shift, mult; u64 src; u32 current_egress_rate; /* Mbits /sec */ - u32 max_pkt_time; + u64 max_pkt_time; /* * max_pkt_time is the maximum packet egress time in units * of the fabric clock period 1/(805 MHz). diff -u linux-intel-iotg-5.15-5.15.0/drivers/infiniband/hw/hfi1/sdma.c linux-intel-iotg-5.15-5.15.0/drivers/infiniband/hw/hfi1/sdma.c --- linux-intel-iotg-5.15-5.15.0/drivers/infiniband/hw/hfi1/sdma.c +++ linux-intel-iotg-5.15-5.15.0/drivers/infiniband/hw/hfi1/sdma.c @@ -1288,11 +1288,13 @@ kvfree(sde->tx_ring); sde->tx_ring = NULL; } - spin_lock_irq(&dd->sde_map_lock); - sdma_map_free(rcu_access_pointer(dd->sdma_map)); - RCU_INIT_POINTER(dd->sdma_map, NULL); - spin_unlock_irq(&dd->sde_map_lock); - synchronize_rcu(); + if (rcu_access_pointer(dd->sdma_map)) { + spin_lock_irq(&dd->sde_map_lock); + sdma_map_free(rcu_access_pointer(dd->sdma_map)); + RCU_INIT_POINTER(dd->sdma_map, NULL); + spin_unlock_irq(&dd->sde_map_lock); + synchronize_rcu(); + } kfree(dd->per_sdma); dd->per_sdma = NULL; diff -u linux-intel-iotg-5.15-5.15.0/drivers/infiniband/hw/hns/hns_roce_hw_v2.c linux-intel-iotg-5.15-5.15.0/drivers/infiniband/hw/hns/hns_roce_hw_v2.c --- linux-intel-iotg-5.15-5.15.0/drivers/infiniband/hw/hns/hns_roce_hw_v2.c +++ linux-intel-iotg-5.15-5.15.0/drivers/infiniband/hw/hns/hns_roce_hw_v2.c @@ -1273,6 +1273,16 @@ return tail == priv->cmq.csq.head; } +static void update_cmdq_status(struct hns_roce_dev *hr_dev) +{ + struct hns_roce_v2_priv *priv = hr_dev->priv; + struct hnae3_handle *handle = priv->handle; + + if (handle->rinfo.reset_state == HNS_ROCE_STATE_RST_INIT || + handle->rinfo.instance_state == HNS_ROCE_STATE_INIT) + hr_dev->cmd.state = HNS_ROCE_CMDQ_STATE_FATAL_ERR; +} + static int __hns_roce_cmq_send(struct hns_roce_dev *hr_dev, struct hns_roce_cmq_desc *desc, int num) { @@ -1326,6 +1336,8 @@ csq->head, tail); csq->head = tail; + update_cmdq_status(hr_dev); + ret = -EAGAIN; } @@ -1340,6 +1352,9 @@ bool busy; int ret; + if (hr_dev->cmd.state == HNS_ROCE_CMDQ_STATE_FATAL_ERR) + return -EIO; + if (!v2_chk_mbox_is_avail(hr_dev, &busy)) return busy ? -EBUSY : 0; @@ -1536,6 +1551,9 @@ { int i; + if (hr_dev->cmd.state == HNS_ROCE_CMDQ_STATE_FATAL_ERR) + return; + for (i = hr_dev->func_num - 1; i >= 0; i--) { __hns_roce_function_clear(hr_dev, i); if (i != 0) @@ -1955,7 +1973,7 @@ caps->num_mtpts = HNS_ROCE_V2_MAX_MTPT_NUM; caps->num_pds = HNS_ROCE_V2_MAX_PD_NUM; caps->num_qpc_timer = HNS_ROCE_V2_MAX_QPC_TIMER_NUM; - caps->num_cqc_timer = HNS_ROCE_V2_MAX_CQC_TIMER_NUM; + caps->cqc_timer_bt_num = HNS_ROCE_V2_MAX_CQC_TIMER_BT_NUM; caps->max_qp_init_rdma = HNS_ROCE_V2_MAX_QP_INIT_RDMA; caps->max_qp_dest_rdma = HNS_ROCE_V2_MAX_QP_DEST_RDMA; @@ -2249,7 +2267,6 @@ caps->max_rq_sg = roundup_pow_of_two(caps->max_rq_sg); caps->max_extend_sg = le32_to_cpu(resp_a->max_extend_sg); caps->num_qpc_timer = le16_to_cpu(resp_a->num_qpc_timer); - caps->num_cqc_timer = le16_to_cpu(resp_a->num_cqc_timer); caps->max_srq_sges = le16_to_cpu(resp_a->max_srq_sges); caps->max_srq_sges = roundup_pow_of_two(caps->max_srq_sges); caps->num_aeq_vectors = resp_a->num_aeq_vectors; @@ -2818,6 +2835,9 @@ mb_st = (struct hns_roce_mbox_status *)desc.data; end = msecs_to_jiffies(timeout) + jiffies; while (v2_chk_mbox_is_avail(hr_dev, &busy)) { + if (hr_dev->cmd.state == HNS_ROCE_CMDQ_STATE_FATAL_ERR) + return -EIO; + status = 0; hns_roce_cmq_setup_basic_desc(&desc, HNS_ROCE_OPC_QUERY_MB_ST, true); diff -u linux-intel-iotg-5.15-5.15.0/drivers/infiniband/hw/hns/hns_roce_hw_v2.h linux-intel-iotg-5.15-5.15.0/drivers/infiniband/hw/hns/hns_roce_hw_v2.h --- linux-intel-iotg-5.15-5.15.0/drivers/infiniband/hw/hns/hns_roce_hw_v2.h +++ linux-intel-iotg-5.15-5.15.0/drivers/infiniband/hw/hns/hns_roce_hw_v2.h @@ -51,7 +51,7 @@ #define HNS_ROCE_V2_MAX_SRQ_WR 0x8000 #define HNS_ROCE_V2_MAX_SRQ_SGE 64 #define HNS_ROCE_V2_MAX_CQ_NUM 0x100000 -#define HNS_ROCE_V2_MAX_CQC_TIMER_NUM 0x100 +#define HNS_ROCE_V2_MAX_CQC_TIMER_BT_NUM 0x100 #define HNS_ROCE_V2_MAX_SRQ_NUM 0x100000 #define HNS_ROCE_V2_MAX_CQE_NUM 0x400000 #define HNS_ROCE_V2_MAX_SRQWQE_NUM 0x8000 diff -u linux-intel-iotg-5.15-5.15.0/drivers/infiniband/hw/hns/hns_roce_main.c linux-intel-iotg-5.15-5.15.0/drivers/infiniband/hw/hns/hns_roce_main.c --- linux-intel-iotg-5.15-5.15.0/drivers/infiniband/hw/hns/hns_roce_main.c +++ linux-intel-iotg-5.15-5.15.0/drivers/infiniband/hw/hns/hns_roce_main.c @@ -663,7 +663,7 @@ ret = hns_roce_init_hem_table(hr_dev, &hr_dev->cqc_timer_table, HEM_TYPE_CQC_TIMER, hr_dev->caps.cqc_timer_entry_sz, - hr_dev->caps.num_cqc_timer, 1); + hr_dev->caps.cqc_timer_bt_num, 1); if (ret) { dev_err(dev, "Failed to init CQC timer memory, aborting.\n"); diff -u linux-intel-iotg-5.15-5.15.0/drivers/infiniband/hw/irdma/utils.c linux-intel-iotg-5.15-5.15.0/drivers/infiniband/hw/irdma/utils.c --- linux-intel-iotg-5.15-5.15.0/drivers/infiniband/hw/irdma/utils.c +++ linux-intel-iotg-5.15-5.15.0/drivers/infiniband/hw/irdma/utils.c @@ -258,18 +258,16 @@ u32 local_ipaddr[4] = {}; bool ipv4 = true; - real_dev = rdma_vlan_dev_real_dev(netdev); - if (!real_dev) - real_dev = netdev; - - ibdev = ib_device_get_by_netdev(real_dev, RDMA_DRIVER_IRDMA); - if (!ibdev) - return NOTIFY_DONE; - - iwdev = to_iwdev(ibdev); - switch (event) { case NETEVENT_NEIGH_UPDATE: + real_dev = rdma_vlan_dev_real_dev(netdev); + if (!real_dev) + real_dev = netdev; + ibdev = ib_device_get_by_netdev(real_dev, RDMA_DRIVER_IRDMA); + if (!ibdev) + return NOTIFY_DONE; + + iwdev = to_iwdev(ibdev); p = (__be32 *)neigh->primary_key; if (neigh->tbl->family == AF_INET6) { ipv4 = false; @@ -290,13 +288,12 @@ irdma_manage_arp_cache(iwdev->rf, neigh->ha, local_ipaddr, ipv4, IRDMA_ARP_DELETE); + ib_device_put(ibdev); break; default: break; } - ib_device_put(ibdev); - return NOTIFY_DONE; } diff -u linux-intel-iotg-5.15-5.15.0/drivers/infiniband/hw/irdma/verbs.c linux-intel-iotg-5.15-5.15.0/drivers/infiniband/hw/irdma/verbs.c --- linux-intel-iotg-5.15-5.15.0/drivers/infiniband/hw/irdma/verbs.c +++ linux-intel-iotg-5.15-5.15.0/drivers/infiniband/hw/irdma/verbs.c @@ -1617,13 +1617,13 @@ if (issue_modify_qp && iwqp->ibqp_state > IB_QPS_RTS) { if (dont_wait) { - if (iwqp->cm_id && iwqp->hw_tcp_state) { + if (iwqp->hw_tcp_state) { spin_lock_irqsave(&iwqp->lock, flags); iwqp->hw_tcp_state = IRDMA_TCP_STATE_CLOSED; iwqp->last_aeq = IRDMA_AE_RESET_SENT; spin_unlock_irqrestore(&iwqp->lock, flags); - irdma_cm_disconn(iwqp); } + irdma_cm_disconn(iwqp); } else { int close_timer_started; diff -u linux-intel-iotg-5.15-5.15.0/drivers/infiniband/sw/rdmavt/qp.c linux-intel-iotg-5.15-5.15.0/drivers/infiniband/sw/rdmavt/qp.c --- linux-intel-iotg-5.15-5.15.0/drivers/infiniband/sw/rdmavt/qp.c +++ linux-intel-iotg-5.15-5.15.0/drivers/infiniband/sw/rdmavt/qp.c @@ -2775,7 +2775,7 @@ EXPORT_SYMBOL(rvt_qp_iter); /* - * This should be called with s_lock held. + * This should be called with s_lock and r_lock held. */ void rvt_send_complete(struct rvt_qp *qp, struct rvt_swqe *wqe, enum ib_wc_status status) @@ -3134,7 +3134,9 @@ rvp->n_loop_pkts++; flush_send: sqp->s_rnr_retry = sqp->s_rnr_retry_cnt; + spin_lock(&sqp->r_lock); rvt_send_complete(sqp, wqe, send_status); + spin_unlock(&sqp->r_lock); if (local_ops) { atomic_dec(&sqp->local_ops_pending); local_ops = 0; @@ -3188,7 +3190,9 @@ spin_unlock_irqrestore(&qp->r_lock, flags); serr_no_r_lock: spin_lock_irqsave(&sqp->s_lock, flags); + spin_lock(&sqp->r_lock); rvt_send_complete(sqp, wqe, send_status); + spin_unlock(&sqp->r_lock); if (sqp->ibqp.qp_type == IB_QPT_RC) { int lastwqe; diff -u linux-intel-iotg-5.15-5.15.0/drivers/infiniband/sw/rxe/rxe_req.c linux-intel-iotg-5.15-5.15.0/drivers/infiniband/sw/rxe/rxe_req.c --- linux-intel-iotg-5.15-5.15.0/drivers/infiniband/sw/rxe/rxe_req.c +++ linux-intel-iotg-5.15-5.15.0/drivers/infiniband/sw/rxe/rxe_req.c @@ -683,7 +683,7 @@ opcode = next_opcode(qp, wqe, wqe->wr.opcode); if (unlikely(opcode < 0)) { wqe->status = IB_WC_LOC_QP_OP_ERR; - goto exit; + goto err; } mask = rxe_opcode[opcode].mask; diff -u linux-intel-iotg-5.15-5.15.0/drivers/iommu/amd/init.c linux-intel-iotg-5.15-5.15.0/drivers/iommu/amd/init.c --- linux-intel-iotg-5.15-5.15.0/drivers/iommu/amd/init.c +++ linux-intel-iotg-5.15-5.15.0/drivers/iommu/amd/init.c @@ -84,7 +84,7 @@ #define ACPI_DEVFLAG_LINT1 0x80 #define ACPI_DEVFLAG_ATSDIS 0x10000000 -#define LOOP_TIMEOUT 100000 +#define LOOP_TIMEOUT 2000000 /* * ACPI table definitions * diff -u linux-intel-iotg-5.15-5.15.0/drivers/iommu/amd/iommu.c linux-intel-iotg-5.15-5.15.0/drivers/iommu/amd/iommu.c --- linux-intel-iotg-5.15-5.15.0/drivers/iommu/amd/iommu.c +++ linux-intel-iotg-5.15-5.15.0/drivers/iommu/amd/iommu.c @@ -1816,16 +1816,10 @@ amd_iommu_domain_flush_complete(domain); } -static void __init amd_iommu_init_dma_ops(void) -{ -} - int __init amd_iommu_init_api(void) { int err; - amd_iommu_init_dma_ops(); - err = bus_set_iommu(&pci_bus_type, &amd_iommu_ops); if (err) return err; diff -u linux-intel-iotg-5.15-5.15.0/drivers/iommu/apple-dart.c linux-intel-iotg-5.15-5.15.0/drivers/iommu/apple-dart.c --- linux-intel-iotg-5.15-5.15.0/drivers/iommu/apple-dart.c +++ linux-intel-iotg-5.15-5.15.0/drivers/iommu/apple-dart.c @@ -757,6 +757,7 @@ .of_xlate = apple_dart_of_xlate, .def_domain_type = apple_dart_def_domain_type, .pgsize_bitmap = -1UL, /* Restricted during dart probe */ + .owner = THIS_MODULE, }; static irqreturn_t apple_dart_irq(int irq, void *dev) @@ -832,16 +833,15 @@ dart->dev = dev; spin_lock_init(&dart->lock); - res = platform_get_resource(pdev, IORESOURCE_MEM, 0); + dart->regs = devm_platform_get_and_ioremap_resource(pdev, 0, &res); + if (IS_ERR(dart->regs)) + return PTR_ERR(dart->regs); + if (resource_size(res) < 0x4000) { dev_err(dev, "MMIO region too small (%pr)\n", res); return -EINVAL; } - dart->regs = devm_ioremap_resource(dev, res); - if (IS_ERR(dart->regs)) - return PTR_ERR(dart->regs); - dart->irq = platform_get_irq(pdev, 0); if (dart->irq < 0) return -ENODEV; diff -u linux-intel-iotg-5.15-5.15.0/drivers/iommu/dma-iommu.c linux-intel-iotg-5.15-5.15.0/drivers/iommu/dma-iommu.c --- linux-intel-iotg-5.15-5.15.0/drivers/iommu/dma-iommu.c +++ linux-intel-iotg-5.15-5.15.0/drivers/iommu/dma-iommu.c @@ -619,6 +619,7 @@ unsigned int count, min_size, alloc_sizes = domain->pgsize_bitmap; struct page **pages; dma_addr_t iova; + ssize_t ret; if (static_branch_unlikely(&iommu_deferred_attach_enabled) && iommu_deferred_attach(dev, domain)) @@ -656,8 +657,8 @@ arch_dma_prep_coherent(sg_page(sg), sg->length); } - if (iommu_map_sg_atomic(domain, iova, sgt->sgl, sgt->orig_nents, ioprot) - < size) + ret = iommu_map_sg_atomic(domain, iova, sgt->sgl, sgt->orig_nents, ioprot); + if (ret < 0 || ret < size) goto out_free_sg; sgt->sgl->dma_address = iova; @@ -1054,7 +1055,7 @@ * implementation - it knows better than we do. */ ret = iommu_map_sg_atomic(domain, iova, sg, nents, prot); - if (ret < iova_len) + if (ret < 0 || ret < iova_len) goto out_free_iova; return __finalise_sg(dev, sg, nents, iova); diff -u linux-intel-iotg-5.15-5.15.0/drivers/iommu/intel/iommu.c linux-intel-iotg-5.15-5.15.0/drivers/iommu/intel/iommu.c --- linux-intel-iotg-5.15-5.15.0/drivers/iommu/intel/iommu.c +++ linux-intel-iotg-5.15-5.15.0/drivers/iommu/intel/iommu.c @@ -371,30 +371,6 @@ DEFINE_SPINLOCK(device_domain_lock); static LIST_HEAD(device_domain_list); -/* - * Iterate over elements in device_domain_list and call the specified - * callback @fn against each element. - */ -int for_each_device_domain(int (*fn)(struct device_domain_info *info, - void *data), void *data) -{ - int ret = 0; - unsigned long flags; - struct device_domain_info *info; - - spin_lock_irqsave(&device_domain_lock, flags); - list_for_each_entry(info, &device_domain_list, global) { - ret = fn(info, data); - if (ret) { - spin_unlock_irqrestore(&device_domain_lock, flags); - return ret; - } - } - spin_unlock_irqrestore(&device_domain_lock, flags); - - return 0; -} - const struct iommu_ops intel_iommu_ops; static bool translation_pre_enabled(struct intel_iommu *iommu) @@ -1645,7 +1621,8 @@ unsigned long pfn, unsigned int pages, int ih, int map) { - unsigned int mask = ilog2(__roundup_pow_of_two(pages)); + unsigned int aligned_pages = __roundup_pow_of_two(pages); + unsigned int mask = ilog2(aligned_pages); uint64_t addr = (uint64_t)pfn << VTD_PAGE_SHIFT; u16 did = domain->iommu_did[iommu->seq_id]; @@ -1657,10 +1634,30 @@ if (domain_use_first_level(domain)) { domain_flush_piotlb(iommu, domain, addr, pages, ih); } else { + unsigned long bitmask = aligned_pages - 1; + + /* + * PSI masks the low order bits of the base address. If the + * address isn't aligned to the mask, then compute a mask value + * needed to ensure the target range is flushed. + */ + if (unlikely(bitmask & pfn)) { + unsigned long end_pfn = pfn + pages - 1, shared_bits; + + /* + * Since end_pfn <= pfn + bitmask, the only way bits + * higher than bitmask can differ in pfn and end_pfn is + * by carrying. This means after masking out bitmask, + * high bits starting with the first set bit in + * shared_bits are all equal in both pfn and end_pfn. + */ + shared_bits = ~(pfn ^ end_pfn) & ~bitmask; + mask = shared_bits ? __ffs(shared_bits) : BITS_PER_LONG; + } + /* * Fallback to domain selective flush if no PSI support or - * the size is too big. PSI requires page size to be 2 ^ x, - * and the base address is naturally aligned to the size. + * the size is too big. */ if (!cap_pgsel_inv(iommu->cap) || mask > cap_max_amask_val(iommu->cap)) @@ -5736,7 +5733,7 @@ ver = (dev->device >> 8) & 0xff; if (ver != 0x45 && ver != 0x46 && ver != 0x4c && ver != 0x4e && ver != 0x8a && ver != 0x98 && - ver != 0x9a) + ver != 0x9a && ver != 0xa7) return; if (risky_device(dev)) diff -u linux-intel-iotg-5.15-5.15.0/drivers/iommu/mtk_iommu.c linux-intel-iotg-5.15-5.15.0/drivers/iommu/mtk_iommu.c --- linux-intel-iotg-5.15-5.15.0/drivers/iommu/mtk_iommu.c +++ linux-intel-iotg-5.15-5.15.0/drivers/iommu/mtk_iommu.c @@ -451,7 +451,7 @@ static int mtk_iommu_attach_device(struct iommu_domain *domain, struct device *dev) { - struct mtk_iommu_data *data = dev_iommu_priv_get(dev); + struct mtk_iommu_data *data = dev_iommu_priv_get(dev), *frstdata; struct mtk_iommu_domain *dom = to_mtk_domain(domain); struct device *m4udev = data->dev; int ret, domid; @@ -461,20 +461,24 @@ return domid; if (!dom->data) { - if (mtk_iommu_domain_finalise(dom, data, domid)) + /* Data is in the frstdata in sharing pgtable case. */ + frstdata = mtk_iommu_get_m4u_data(); + + if (mtk_iommu_domain_finalise(dom, frstdata, domid)) return -ENODEV; dom->data = data; } + mutex_lock(&data->mutex); if (!data->m4u_dom) { /* Initialize the M4U HW */ ret = pm_runtime_resume_and_get(m4udev); if (ret < 0) - return ret; + goto err_unlock; ret = mtk_iommu_hw_init(data); if (ret) { pm_runtime_put(m4udev); - return ret; + goto err_unlock; } data->m4u_dom = dom; writel(dom->cfg.arm_v7s_cfg.ttbr & MMU_PT_ADDR_MASK, @@ -482,9 +486,14 @@ pm_runtime_put(m4udev); } + mutex_unlock(&data->mutex); mtk_iommu_config(data, dev, true, domid); return 0; + +err_unlock: + mutex_unlock(&data->mutex); + return ret; } static void mtk_iommu_detach_device(struct iommu_domain *domain, @@ -577,6 +586,9 @@ * All the ports in each a device should be in the same larbs. */ larbid = MTK_M4U_TO_LARB(fwspec->ids[0]); + if (larbid >= MTK_LARB_NR_MAX) + return ERR_PTR(-EINVAL); + for (i = 1; i < fwspec->num_ids; i++) { larbidx = MTK_M4U_TO_LARB(fwspec->ids[i]); if (larbid != larbidx) { @@ -586,6 +598,9 @@ } } larbdev = data->larb_imu[larbid].dev; + if (!larbdev) + return ERR_PTR(-EINVAL); + link = device_link_add(dev, larbdev, DL_FLAG_PM_RUNTIME | DL_FLAG_STATELESS); if (!link) @@ -624,6 +639,7 @@ if (domid < 0) return ERR_PTR(domid); + mutex_lock(&data->mutex); group = data->m4u_group[domid]; if (!group) { group = iommu_group_alloc(); @@ -632,6 +648,7 @@ } else { iommu_group_ref_get(group); } + mutex_unlock(&data->mutex); return group; } @@ -906,6 +923,7 @@ } platform_set_drvdata(pdev, data); + mutex_init(&data->mutex); ret = iommu_device_sysfs_add(&data->iommu, dev, NULL, "mtk-iommu.%pa", &ioaddr); @@ -951,10 +969,8 @@ iommu_device_sysfs_remove(&data->iommu); iommu_device_unregister(&data->iommu); - if (iommu_present(&platform_bus_type)) - bus_set_iommu(&platform_bus_type, NULL); + list_del(&data->list); - clk_disable_unprepare(data->bclk); device_link_remove(data->smicomm_dev, &pdev->dev); pm_runtime_disable(&pdev->dev); devm_free_irq(&pdev->dev, data->irq, data); diff -u linux-intel-iotg-5.15-5.15.0/drivers/iommu/mtk_iommu_v1.c linux-intel-iotg-5.15-5.15.0/drivers/iommu/mtk_iommu_v1.c --- linux-intel-iotg-5.15-5.15.0/drivers/iommu/mtk_iommu_v1.c +++ linux-intel-iotg-5.15-5.15.0/drivers/iommu/mtk_iommu_v1.c @@ -80,6 +80,7 @@ /* MTK generation one iommu HW only support 4K size mapping */ #define MT2701_IOMMU_PAGE_SHIFT 12 #define MT2701_IOMMU_PAGE_SIZE (1UL << MT2701_IOMMU_PAGE_SHIFT) +#define MT2701_LARB_NR_MAX 3 /* * MTK m4u support 4GB iova address space, and only support 4K page @@ -457,6 +458,9 @@ /* Link the consumer device with the smi-larb device(supplier) */ larbid = mt2701_m4u_to_larb(fwspec->ids[0]); + if (larbid >= MT2701_LARB_NR_MAX) + return ERR_PTR(-EINVAL); + for (idx = 1; idx < fwspec->num_ids; idx++) { larbidx = mt2701_m4u_to_larb(fwspec->ids[idx]); if (larbid != larbidx) { @@ -467,6 +471,9 @@ } larbdev = data->larb_imu[larbid].dev; + if (!larbdev) + return ERR_PTR(-EINVAL); + link = device_link_add(dev, larbdev, DL_FLAG_PM_RUNTIME | DL_FLAG_STATELESS); if (!link) diff -u linux-intel-iotg-5.15-5.15.0/drivers/irqchip/irq-armada-370-xp.c linux-intel-iotg-5.15-5.15.0/drivers/irqchip/irq-armada-370-xp.c --- linux-intel-iotg-5.15-5.15.0/drivers/irqchip/irq-armada-370-xp.c +++ linux-intel-iotg-5.15-5.15.0/drivers/irqchip/irq-armada-370-xp.c @@ -308,7 +308,16 @@ static void armada_xp_mpic_perf_init(void) { - unsigned long cpuid = cpu_logical_map(smp_processor_id()); + unsigned long cpuid; + + /* + * This Performance Counter Overflow interrupt is specific for + * Armada 370 and XP. It is not available on Armada 375, 38x and 39x. + */ + if (!of_machine_is_compatible("marvell,armada-370-xp")) + return; + + cpuid = cpu_logical_map(smp_processor_id()); /* Enable Performance Counter Overflow interrupts */ writel(ARMADA_370_XP_INT_CAUSE_PERF(cpuid), diff -u linux-intel-iotg-5.15-5.15.0/drivers/irqchip/irq-aspeed-scu-ic.c linux-intel-iotg-5.15-5.15.0/drivers/irqchip/irq-aspeed-scu-ic.c --- linux-intel-iotg-5.15-5.15.0/drivers/irqchip/irq-aspeed-scu-ic.c +++ linux-intel-iotg-5.15-5.15.0/drivers/irqchip/irq-aspeed-scu-ic.c @@ -157,8 +157,8 @@ } irq = irq_of_parse_and_map(node, 0); - if (irq < 0) { - rc = irq; + if (!irq) { + rc = -EINVAL; goto err; } diff -u linux-intel-iotg-5.15-5.15.0/drivers/md/bcache/btree.c linux-intel-iotg-5.15-5.15.0/drivers/md/bcache/btree.c --- linux-intel-iotg-5.15-5.15.0/drivers/md/bcache/btree.c +++ linux-intel-iotg-5.15-5.15.0/drivers/md/bcache/btree.c @@ -2006,8 +2006,7 @@ int i; struct bkey *k = NULL; struct btree_iter iter; - struct btree_check_state *check_state; - char name[32]; + struct btree_check_state check_state; /* check and mark root node keys */ for_each_key_filter(&c->root->keys, k, &iter, bch_ptr_invalid) @@ -2018,63 +2017,59 @@ if (c->root->level == 0) return 0; - check_state = kzalloc(sizeof(struct btree_check_state), GFP_KERNEL); - if (!check_state) - return -ENOMEM; - - check_state->c = c; - check_state->total_threads = bch_btree_chkthread_nr(); - check_state->key_idx = 0; - spin_lock_init(&check_state->idx_lock); - atomic_set(&check_state->started, 0); - atomic_set(&check_state->enough, 0); - init_waitqueue_head(&check_state->wait); + memset(&check_state, 0, sizeof(struct btree_check_state)); + check_state.c = c; + check_state.total_threads = bch_btree_chkthread_nr(); + check_state.key_idx = 0; + spin_lock_init(&check_state.idx_lock); + atomic_set(&check_state.started, 0); + atomic_set(&check_state.enough, 0); + init_waitqueue_head(&check_state.wait); + rw_lock(0, c->root, c->root->level); /* * Run multiple threads to check btree nodes in parallel, - * if check_state->enough is non-zero, it means current + * if check_state.enough is non-zero, it means current * running check threads are enough, unncessary to create * more. */ - for (i = 0; i < check_state->total_threads; i++) { - /* fetch latest check_state->enough earlier */ + for (i = 0; i < check_state.total_threads; i++) { + /* fetch latest check_state.enough earlier */ smp_mb__before_atomic(); - if (atomic_read(&check_state->enough)) + if (atomic_read(&check_state.enough)) break; - check_state->infos[i].result = 0; - check_state->infos[i].state = check_state; - snprintf(name, sizeof(name), "bch_btrchk[%u]", i); - atomic_inc(&check_state->started); + check_state.infos[i].result = 0; + check_state.infos[i].state = &check_state; - check_state->infos[i].thread = + check_state.infos[i].thread = kthread_run(bch_btree_check_thread, - &check_state->infos[i], - name); - if (IS_ERR(check_state->infos[i].thread)) { + &check_state.infos[i], + "bch_btrchk[%d]", i); + if (IS_ERR(check_state.infos[i].thread)) { pr_err("fails to run thread bch_btrchk[%d]\n", i); for (--i; i >= 0; i--) - kthread_stop(check_state->infos[i].thread); + kthread_stop(check_state.infos[i].thread); ret = -ENOMEM; goto out; } + atomic_inc(&check_state.started); } /* * Must wait for all threads to stop. */ - wait_event_interruptible(check_state->wait, - atomic_read(&check_state->started) == 0); + wait_event(check_state.wait, atomic_read(&check_state.started) == 0); - for (i = 0; i < check_state->total_threads; i++) { - if (check_state->infos[i].result) { - ret = check_state->infos[i].result; + for (i = 0; i < check_state.total_threads; i++) { + if (check_state.infos[i].result) { + ret = check_state.infos[i].result; goto out; } } out: - kfree(check_state); + rw_unlock(0, c->root); return ret; } diff -u linux-intel-iotg-5.15-5.15.0/drivers/md/bcache/super.c linux-intel-iotg-5.15-5.15.0/drivers/md/bcache/super.c --- linux-intel-iotg-5.15-5.15.0/drivers/md/bcache/super.c +++ linux-intel-iotg-5.15-5.15.0/drivers/md/bcache/super.c @@ -2131,6 +2131,7 @@ flash_devs_run(c); + bch_journal_space_reserve(&c->journal); set_bit(CACHE_SET_RUNNING, &c->flags); return 0; err: diff -u linux-intel-iotg-5.15-5.15.0/drivers/md/bcache/writeback.c linux-intel-iotg-5.15-5.15.0/drivers/md/bcache/writeback.c --- linux-intel-iotg-5.15-5.15.0/drivers/md/bcache/writeback.c +++ linux-intel-iotg-5.15-5.15.0/drivers/md/bcache/writeback.c @@ -802,13 +802,11 @@ /* Init */ #define INIT_KEYS_EACH_TIME 500000 -#define INIT_KEYS_SLEEP_MS 100 struct sectors_dirty_init { struct btree_op op; unsigned int inode; size_t count; - struct bkey start; }; static int sectors_dirty_init_fn(struct btree_op *_op, struct btree *b, @@ -824,11 +822,8 @@ KEY_START(k), KEY_SIZE(k)); op->count++; - if (atomic_read(&b->c->search_inflight) && - !(op->count % INIT_KEYS_EACH_TIME)) { - bkey_copy_key(&op->start, k); - return -EAGAIN; - } + if (!(op->count % INIT_KEYS_EACH_TIME)) + cond_resched(); return MAP_CONTINUE; } @@ -843,24 +838,16 @@ bch_btree_op_init(&op.op, -1); op.inode = d->id; op.count = 0; - op.start = KEY(op.inode, 0, 0); - do { - ret = bcache_btree(map_keys_recurse, - k, - c->root, - &op.op, - &op.start, - sectors_dirty_init_fn, - 0); - if (ret == -EAGAIN) - schedule_timeout_interruptible( - msecs_to_jiffies(INIT_KEYS_SLEEP_MS)); - else if (ret < 0) { - pr_warn("sectors dirty init failed, ret=%d!\n", ret); - break; - } - } while (ret == -EAGAIN); + ret = bcache_btree(map_keys_recurse, + k, + c->root, + &op.op, + &KEY(op.inode, 0, 0), + sectors_dirty_init_fn, + 0); + if (ret < 0) + pr_warn("sectors dirty init failed, ret=%d!\n", ret); return ret; } @@ -904,7 +891,6 @@ goto out; } skip_nr--; - cond_resched(); } if (p) { @@ -914,7 +900,6 @@ p = NULL; prev_idx = cur_idx; - cond_resched(); } out: @@ -945,67 +930,56 @@ struct btree_iter iter; struct sectors_dirty_init op; struct cache_set *c = d->c; - struct bch_dirty_init_state *state; - char name[32]; + struct bch_dirty_init_state state; /* Just count root keys if no leaf node */ + rw_lock(0, c->root, c->root->level); if (c->root->level == 0) { bch_btree_op_init(&op.op, -1); op.inode = d->id; op.count = 0; - op.start = KEY(op.inode, 0, 0); for_each_key_filter(&c->root->keys, k, &iter, bch_ptr_invalid) sectors_dirty_init_fn(&op.op, c->root, k); - return; - } - state = kzalloc(sizeof(struct bch_dirty_init_state), GFP_KERNEL); - if (!state) { - pr_warn("sectors dirty init failed: cannot allocate memory\n"); + rw_unlock(0, c->root); return; } - state->c = c; - state->d = d; - state->total_threads = bch_btre_dirty_init_thread_nr(); - state->key_idx = 0; - spin_lock_init(&state->idx_lock); - atomic_set(&state->started, 0); - atomic_set(&state->enough, 0); - init_waitqueue_head(&state->wait); + memset(&state, 0, sizeof(struct bch_dirty_init_state)); + state.c = c; + state.d = d; + state.total_threads = bch_btre_dirty_init_thread_nr(); + state.key_idx = 0; + spin_lock_init(&state.idx_lock); + atomic_set(&state.started, 0); + atomic_set(&state.enough, 0); + init_waitqueue_head(&state.wait); - for (i = 0; i < state->total_threads; i++) { - /* Fetch latest state->enough earlier */ + for (i = 0; i < state.total_threads; i++) { + /* Fetch latest state.enough earlier */ smp_mb__before_atomic(); - if (atomic_read(&state->enough)) + if (atomic_read(&state.enough)) break; - state->infos[i].state = state; - atomic_inc(&state->started); - snprintf(name, sizeof(name), "bch_dirty_init[%d]", i); - - state->infos[i].thread = - kthread_run(bch_dirty_init_thread, - &state->infos[i], - name); - if (IS_ERR(state->infos[i].thread)) { + state.infos[i].state = &state; + state.infos[i].thread = + kthread_run(bch_dirty_init_thread, &state.infos[i], + "bch_dirtcnt[%d]", i); + if (IS_ERR(state.infos[i].thread)) { pr_err("fails to run thread bch_dirty_init[%d]\n", i); for (--i; i >= 0; i--) - kthread_stop(state->infos[i].thread); + kthread_stop(state.infos[i].thread); goto out; } + atomic_inc(&state.started); } - /* - * Must wait for all threads to stop. - */ - wait_event_interruptible(state->wait, - atomic_read(&state->started) == 0); - out: - kfree(state); + /* Must wait for all threads to stop. */ + wait_event(state.wait, atomic_read(&state.started) == 0); + rw_unlock(0, c->root); } void bch_cached_dev_writeback_init(struct cached_dev *dc) diff -u linux-intel-iotg-5.15-5.15.0/drivers/md/dm-crypt.c linux-intel-iotg-5.15-5.15.0/drivers/md/dm-crypt.c --- linux-intel-iotg-5.15-5.15.0/drivers/md/dm-crypt.c +++ linux-intel-iotg-5.15-5.15.0/drivers/md/dm-crypt.c @@ -3435,6 +3435,11 @@ return DM_MAPIO_SUBMITTED; } +static char hex2asc(unsigned char c) +{ + return c + '0' + ((unsigned)(9 - c) >> 4 & 0x27); +} + static void crypt_status(struct dm_target *ti, status_type_t type, unsigned status_flags, char *result, unsigned maxlen) { @@ -3453,9 +3458,12 @@ if (cc->key_size > 0) { if (cc->key_string) DMEMIT(":%u:%s", cc->key_size, cc->key_string); - else - for (i = 0; i < cc->key_size; i++) - DMEMIT("%02x", cc->key[i]); + else { + for (i = 0; i < cc->key_size; i++) { + DMEMIT("%c%c", hex2asc(cc->key[i] >> 4), + hex2asc(cc->key[i] & 0xf)); + } + } } else DMEMIT("-"); diff -u linux-intel-iotg-5.15-5.15.0/drivers/md/dm-integrity.c linux-intel-iotg-5.15-5.15.0/drivers/md/dm-integrity.c --- linux-intel-iotg-5.15-5.15.0/drivers/md/dm-integrity.c +++ linux-intel-iotg-5.15-5.15.0/drivers/md/dm-integrity.c @@ -4478,8 +4478,6 @@ } if (should_write_sb) { - int r; - init_journal(ic, 0, ic->journal_sections, 0); r = dm_integrity_failed(ic); if (unlikely(r)) { diff -u linux-intel-iotg-5.15-5.15.0/drivers/md/dm-stats.c linux-intel-iotg-5.15-5.15.0/drivers/md/dm-stats.c --- linux-intel-iotg-5.15-5.15.0/drivers/md/dm-stats.c +++ linux-intel-iotg-5.15-5.15.0/drivers/md/dm-stats.c @@ -225,6 +225,7 @@ atomic_read(&shared->in_flight[READ]), atomic_read(&shared->in_flight[WRITE])); } + cond_resched(); } dm_stat_free(&s->rcu_head); } @@ -330,6 +331,7 @@ for (ni = 0; ni < n_entries; ni++) { atomic_set(&s->stat_shared[ni].in_flight[READ], 0); atomic_set(&s->stat_shared[ni].in_flight[WRITE], 0); + cond_resched(); } if (s->n_histogram_entries) { @@ -342,6 +344,7 @@ for (ni = 0; ni < n_entries; ni++) { s->stat_shared[ni].tmp.histogram = hi; hi += s->n_histogram_entries + 1; + cond_resched(); } } @@ -362,6 +365,7 @@ for (ni = 0; ni < n_entries; ni++) { p[ni].histogram = hi; hi += s->n_histogram_entries + 1; + cond_resched(); } } } @@ -497,6 +501,7 @@ } DMEMIT("\n"); } + cond_resched(); } mutex_unlock(&stats->mutex); @@ -774,6 +779,7 @@ local_irq_enable(); } } + cond_resched(); } } @@ -889,6 +895,8 @@ if (unlikely(sz + 1 >= maxlen)) goto buffer_overflow; + + cond_resched(); } if (clear) diff -u linux-intel-iotg-5.15-5.15.0/drivers/md/md.c linux-intel-iotg-5.15-5.15.0/drivers/md/md.c --- linux-intel-iotg-5.15-5.15.0/drivers/md/md.c +++ linux-intel-iotg-5.15-5.15.0/drivers/md/md.c @@ -2628,14 +2628,16 @@ static bool does_sb_need_changing(struct mddev *mddev) { - struct md_rdev *rdev; + struct md_rdev *rdev = NULL, *iter; struct mdp_superblock_1 *sb; int role; /* Find a good rdev */ - rdev_for_each(rdev, mddev) - if ((rdev->raid_disk >= 0) && !test_bit(Faulty, &rdev->flags)) + rdev_for_each(iter, mddev) + if ((iter->raid_disk >= 0) && !test_bit(Faulty, &iter->flags)) { + rdev = iter; break; + } /* No good device found. */ if (!rdev) @@ -5586,8 +5588,6 @@ bioset_exit(&mddev->bio_set); bioset_exit(&mddev->sync_set); - if (mddev->level != 1 && mddev->level != 10) - bioset_exit(&mddev->io_acct_set); kfree(mddev); } @@ -6275,8 +6275,6 @@ __md_stop(mddev); bioset_exit(&mddev->bio_set); bioset_exit(&mddev->sync_set); - if (mddev->level != 1 && mddev->level != 10) - bioset_exit(&mddev->io_acct_set); } EXPORT_SYMBOL_GPL(md_stop); @@ -9772,16 +9770,18 @@ void md_reload_sb(struct mddev *mddev, int nr) { - struct md_rdev *rdev; + struct md_rdev *rdev = NULL, *iter; int err; /* Find the rdev */ - rdev_for_each_rcu(rdev, mddev) { - if (rdev->desc_nr == nr) + rdev_for_each_rcu(iter, mddev) { + if (iter->desc_nr == nr) { + rdev = iter; break; + } } - if (!rdev || rdev->desc_nr != nr) { + if (!rdev) { pr_warn("%s: %d Could not find rdev with nr %d\n", __func__, __LINE__, nr); return; } diff -u linux-intel-iotg-5.15-5.15.0/drivers/md/raid0.c linux-intel-iotg-5.15-5.15.0/drivers/md/raid0.c --- linux-intel-iotg-5.15-5.15.0/drivers/md/raid0.c +++ linux-intel-iotg-5.15-5.15.0/drivers/md/raid0.c @@ -362,7 +362,6 @@ kfree(conf->strip_zone); kfree(conf->devlist); kfree(conf); - mddev->private = NULL; } static void raid0_free(struct mddev *mddev, void *priv) diff -u linux-intel-iotg-5.15-5.15.0/drivers/md/raid5.c linux-intel-iotg-5.15-5.15.0/drivers/md/raid5.c --- linux-intel-iotg-5.15-5.15.0/drivers/md/raid5.c +++ linux-intel-iotg-5.15-5.15.0/drivers/md/raid5.c @@ -686,17 +686,17 @@ return degraded; } -static int has_failed(struct r5conf *conf) +static bool has_failed(struct r5conf *conf) { - int degraded; + int degraded = conf->mddev->degraded; - if (conf->mddev->reshape_position == MaxSector) - return conf->mddev->degraded > conf->max_degraded; + if (test_bit(MD_BROKEN, &conf->mddev->flags)) + return true; - degraded = raid5_calc_degraded(conf); - if (degraded > conf->max_degraded) - return 1; - return 0; + if (conf->mddev->reshape_position != MaxSector) + degraded = raid5_calc_degraded(conf); + + return degraded > conf->max_degraded; } struct stripe_head * @@ -2877,34 +2877,31 @@ unsigned long flags; pr_debug("raid456: error called\n"); + pr_crit("md/raid:%s: Disk failure on %s, disabling device.\n", + mdname(mddev), bdevname(rdev->bdev, b)); + spin_lock_irqsave(&conf->device_lock, flags); + set_bit(Faulty, &rdev->flags); + clear_bit(In_sync, &rdev->flags); + mddev->degraded = raid5_calc_degraded(conf); - if (test_bit(In_sync, &rdev->flags) && - mddev->degraded == conf->max_degraded) { - /* - * Don't allow to achieve failed state - * Don't try to recover this device - */ + if (has_failed(conf)) { + set_bit(MD_BROKEN, &conf->mddev->flags); conf->recovery_disabled = mddev->recovery_disabled; - spin_unlock_irqrestore(&conf->device_lock, flags); - return; + + pr_crit("md/raid:%s: Cannot continue operation (%d/%d failed).\n", + mdname(mddev), mddev->degraded, conf->raid_disks); + } else { + pr_crit("md/raid:%s: Operation continuing on %d devices.\n", + mdname(mddev), conf->raid_disks - mddev->degraded); } - set_bit(Faulty, &rdev->flags); - clear_bit(In_sync, &rdev->flags); - mddev->degraded = raid5_calc_degraded(conf); spin_unlock_irqrestore(&conf->device_lock, flags); set_bit(MD_RECOVERY_INTR, &mddev->recovery); set_bit(Blocked, &rdev->flags); set_mask_bits(&mddev->sb_flags, 0, BIT(MD_SB_CHANGE_DEVS) | BIT(MD_SB_CHANGE_PENDING)); - pr_crit("md/raid:%s: Disk failure on %s, disabling device.\n" - "md/raid:%s: Operation continuing on %d devices.\n", - mdname(mddev), - bdevname(rdev->bdev, b), - mdname(mddev), - conf->raid_disks - mddev->degraded); r5c_update_on_rdev_error(mddev, rdev); } diff -u linux-intel-iotg-5.15-5.15.0/drivers/media/cec/core/cec-adap.c linux-intel-iotg-5.15-5.15.0/drivers/media/cec/core/cec-adap.c --- linux-intel-iotg-5.15-5.15.0/drivers/media/cec/core/cec-adap.c +++ linux-intel-iotg-5.15-5.15.0/drivers/media/cec/core/cec-adap.c @@ -1272,7 +1272,7 @@ * While trying to poll the physical address was reset * and the adapter was unconfigured, so bail out. */ - if (!adap->is_configuring) + if (adap->phys_addr == CEC_PHYS_ADDR_INVALID) return -EINTR; if (err) @@ -1329,7 +1329,6 @@ adap->phys_addr != CEC_PHYS_ADDR_INVALID) WARN_ON(adap->ops->adap_log_addr(adap, CEC_LOG_ADDR_INVALID)); adap->log_addrs.log_addr_mask = 0; - adap->is_configuring = false; adap->is_configured = false; cec_flush(adap); wake_up_interruptible(&adap->kthread_waitq); @@ -1521,9 +1520,10 @@ for (i = 0; i < las->num_log_addrs; i++) las->log_addr[i] = CEC_LOG_ADDR_INVALID; cec_adap_unconfigure(adap); + adap->is_configuring = false; adap->kthread_config = NULL; - mutex_unlock(&adap->lock); complete(&adap->config_completion); + mutex_unlock(&adap->lock); return 0; } diff -u linux-intel-iotg-5.15-5.15.0/drivers/media/i2c/Kconfig linux-intel-iotg-5.15-5.15.0/drivers/media/i2c/Kconfig --- linux-intel-iotg-5.15-5.15.0/drivers/media/i2c/Kconfig +++ linux-intel-iotg-5.15-5.15.0/drivers/media/i2c/Kconfig @@ -1390,6 +1390,75 @@ This is a V4L2 sensor driver for Samsung S5C73M3 8 Mpixel camera. +config POWER_CTRL_LOGIC + tristate "power control logic driver" + depends on GPIO_ACPI + help + This is a power control logic driver for sensor, the design + depends on camera sensor connections. + This driver controls power by getting and using managed GPIO + pins from ACPI config for sensors, such as HM11B1, OV01A1S. + + To compile this driver as a module, choose M here: the + module will be called power_ctrl_logic. + +config VIDEO_OV01A10 + tristate "OmniVision OV01A10 sensor support" + depends on VIDEO_V4L2 && I2C + depends on ACPI || COMPILE_TEST + select MEDIA_CONTROLLER + select VIDEO_V4L2_SUBDEV_API + select V4L2_FWNODE + help + This is a Video4Linux2 sensor driver for the OmniVision + OV01A10 camera. + + To compile this driver as a module, choose M here: the + module will be called ov01a10. + +config VIDEO_OV01A1S + tristate "OmniVision OV01A1S sensor support" + depends on POWER_CTRL_LOGIC + depends on VIDEO_V4L2 && I2C + depends on ACPI || COMPILE_TEST + select MEDIA_CONTROLLER + select VIDEO_V4L2_SUBDEV_API + select V4L2_FWNODE + help + This is a Video4Linux2 sensor driver for the OmniVision + OV01A1S camera. + + To compile this driver as a module, choose M here: the + module will be called ov01a1s. + +config VIDEO_OV02C10 + tristate "OmniVision OV02C10 sensor support" + depends on VIDEO_V4L2 && I2C + depends on ACPI || COMPILE_TEST + select MEDIA_CONTROLLER + select VIDEO_V4L2_SUBDEV_API + select V4L2_FWNODE + help + This is a Video4Linux2 sensor driver for the OmniVision + OV02C10 camera. + + To compile this driver as a module, choose M here: the + module will be called ov02c10. + +config VIDEO_HM11B1 + tristate "Himax HM11B1 sensor support" + depends on POWER_CTRL_LOGIC + depends on VIDEO_V4L2 && I2C + select MEDIA_CONTROLLER + select VIDEO_V4L2_SUBDEV_API + select V4L2_FWNODE + help + This is a Video4Linux2 sensor driver for the Himax + HM11B1 camera. + + To compile this driver as a module, choose M here: the + module will be called hm11b1. + endmenu menu "Lens drivers" diff -u linux-intel-iotg-5.15-5.15.0/drivers/media/i2c/ov5648.c linux-intel-iotg-5.15-5.15.0/drivers/media/i2c/ov5648.c --- linux-intel-iotg-5.15-5.15.0/drivers/media/i2c/ov5648.c +++ linux-intel-iotg-5.15-5.15.0/drivers/media/i2c/ov5648.c @@ -2498,9 +2498,9 @@ /* DOVDD: digital I/O */ sensor->dovdd = devm_regulator_get(dev, "dovdd"); - if (IS_ERR(sensor->dvdd)) { + if (IS_ERR(sensor->dovdd)) { dev_err(dev, "cannot get DOVDD (digital I/O) regulator\n"); - ret = PTR_ERR(sensor->dvdd); + ret = PTR_ERR(sensor->dovdd); goto error_endpoint; } diff -u linux-intel-iotg-5.15-5.15.0/drivers/media/platform/aspeed-video.c linux-intel-iotg-5.15-5.15.0/drivers/media/platform/aspeed-video.c --- linux-intel-iotg-5.15-5.15.0/drivers/media/platform/aspeed-video.c +++ linux-intel-iotg-5.15-5.15.0/drivers/media/platform/aspeed-video.c @@ -1723,6 +1723,7 @@ rc = aspeed_video_setup_video(video); if (rc) { + aspeed_video_free_buf(video, &video->jpeg); clk_unprepare(video->vclk); clk_unprepare(video->eclk); return rc; @@ -1748,8 +1749,7 @@ v4l2_device_unregister(v4l2_dev); - dma_free_coherent(video->dev, VE_JPEG_HEADER_SIZE, video->jpeg.virt, - video->jpeg.dma); + aspeed_video_free_buf(video, &video->jpeg); of_reserved_mem_device_release(dev); diff -u linux-intel-iotg-5.15-5.15.0/drivers/media/platform/atmel/atmel-sama5d2-isc.c linux-intel-iotg-5.15-5.15.0/drivers/media/platform/atmel/atmel-sama5d2-isc.c --- linux-intel-iotg-5.15-5.15.0/drivers/media/platform/atmel/atmel-sama5d2-isc.c +++ linux-intel-iotg-5.15-5.15.0/drivers/media/platform/atmel/atmel-sama5d2-isc.c @@ -267,7 +267,7 @@ * Thus, if the YCYC mode is selected, replace it with the * sama5d2-compliant mode which is YYCC . */ - if ((rlp_mode & ISC_RLP_CFG_MODE_YCYC) == ISC_RLP_CFG_MODE_YCYC) { + if ((rlp_mode & ISC_RLP_CFG_MODE_MASK) == ISC_RLP_CFG_MODE_YCYC) { rlp_mode &= ~ISC_RLP_CFG_MODE_MASK; rlp_mode |= ISC_RLP_CFG_MODE_YYCC; } @@ -537,7 +537,7 @@ ret = clk_prepare_enable(isc->ispck); if (ret) { dev_err(dev, "failed to enable ispck: %d\n", ret); - goto cleanup_subdev; + goto disable_pm; } /* ispck should be greater or equal to hclock */ @@ -555,6 +555,9 @@ unprepare_clk: clk_disable_unprepare(isc->ispck); +disable_pm: + pm_runtime_disable(dev); + cleanup_subdev: isc_subdev_cleanup(isc); diff -u linux-intel-iotg-5.15-5.15.0/drivers/media/platform/coda/coda-common.c linux-intel-iotg-5.15-5.15.0/drivers/media/platform/coda/coda-common.c --- linux-intel-iotg-5.15-5.15.0/drivers/media/platform/coda/coda-common.c +++ linux-intel-iotg-5.15-5.15.0/drivers/media/platform/coda/coda-common.c @@ -1318,7 +1318,8 @@ struct v4l2_frmivalenum *f) { struct coda_ctx *ctx = fh_to_ctx(fh); - int i; + struct coda_q_data *q_data; + const struct coda_codec *codec; if (f->index) return -EINVAL; @@ -1327,12 +1328,19 @@ if (!ctx->vdoa && f->pixel_format == V4L2_PIX_FMT_YUYV) return -EINVAL; - for (i = 0; i < CODA_MAX_FORMATS; i++) { - if (f->pixel_format == ctx->cvd->src_formats[i] || - f->pixel_format == ctx->cvd->dst_formats[i]) - break; + if (coda_format_normalize_yuv(f->pixel_format) == V4L2_PIX_FMT_YUV420) { + q_data = get_q_data(ctx, V4L2_BUF_TYPE_VIDEO_CAPTURE); + codec = coda_find_codec(ctx->dev, f->pixel_format, + q_data->fourcc); + } else { + codec = coda_find_codec(ctx->dev, V4L2_PIX_FMT_YUV420, + f->pixel_format); } - if (i == CODA_MAX_FORMATS) + if (!codec) + return -EINVAL; + + if (f->width < MIN_W || f->width > codec->max_w || + f->height < MIN_H || f->height > codec->max_h) return -EINVAL; f->type = V4L2_FRMIVAL_TYPE_CONTINUOUS; @@ -2338,8 +2346,8 @@ V4L2_CID_MPEG_VIDEO_H264_CHROMA_QP_INDEX_OFFSET, -12, 12, 1, 0); v4l2_ctrl_new_std_menu(&ctx->ctrls, &coda_ctrl_ops, V4L2_CID_MPEG_VIDEO_H264_PROFILE, - V4L2_MPEG_VIDEO_H264_PROFILE_BASELINE, 0x0, - V4L2_MPEG_VIDEO_H264_PROFILE_BASELINE); + V4L2_MPEG_VIDEO_H264_PROFILE_CONSTRAINED_BASELINE, 0x0, + V4L2_MPEG_VIDEO_H264_PROFILE_CONSTRAINED_BASELINE); if (ctx->dev->devtype->product == CODA_HX4 || ctx->dev->devtype->product == CODA_7541) { v4l2_ctrl_new_std_menu(&ctx->ctrls, &coda_ctrl_ops, @@ -2353,12 +2361,15 @@ if (ctx->dev->devtype->product == CODA_960) { v4l2_ctrl_new_std_menu(&ctx->ctrls, &coda_ctrl_ops, V4L2_CID_MPEG_VIDEO_H264_LEVEL, - V4L2_MPEG_VIDEO_H264_LEVEL_4_0, - ~((1 << V4L2_MPEG_VIDEO_H264_LEVEL_2_0) | + V4L2_MPEG_VIDEO_H264_LEVEL_4_2, + ~((1 << V4L2_MPEG_VIDEO_H264_LEVEL_1_0) | + (1 << V4L2_MPEG_VIDEO_H264_LEVEL_2_0) | (1 << V4L2_MPEG_VIDEO_H264_LEVEL_3_0) | (1 << V4L2_MPEG_VIDEO_H264_LEVEL_3_1) | (1 << V4L2_MPEG_VIDEO_H264_LEVEL_3_2) | - (1 << V4L2_MPEG_VIDEO_H264_LEVEL_4_0)), + (1 << V4L2_MPEG_VIDEO_H264_LEVEL_4_0) | + (1 << V4L2_MPEG_VIDEO_H264_LEVEL_4_1) | + (1 << V4L2_MPEG_VIDEO_H264_LEVEL_4_2)), V4L2_MPEG_VIDEO_H264_LEVEL_4_0); } v4l2_ctrl_new_std(&ctx->ctrls, &coda_ctrl_ops, @@ -2420,7 +2431,7 @@ ctx->h264_profile_ctrl = v4l2_ctrl_new_std_menu(&ctx->ctrls, &coda_ctrl_ops, V4L2_CID_MPEG_VIDEO_H264_PROFILE, V4L2_MPEG_VIDEO_H264_PROFILE_HIGH, - ~((1 << V4L2_MPEG_VIDEO_H264_PROFILE_BASELINE) | + ~((1 << V4L2_MPEG_VIDEO_H264_PROFILE_CONSTRAINED_BASELINE) | (1 << V4L2_MPEG_VIDEO_H264_PROFILE_MAIN) | (1 << V4L2_MPEG_VIDEO_H264_PROFILE_HIGH)), V4L2_MPEG_VIDEO_H264_PROFILE_HIGH); diff -u linux-intel-iotg-5.15-5.15.0/drivers/media/platform/rockchip/rga/rga.c linux-intel-iotg-5.15-5.15.0/drivers/media/platform/rockchip/rga/rga.c --- linux-intel-iotg-5.15-5.15.0/drivers/media/platform/rockchip/rga/rga.c +++ linux-intel-iotg-5.15-5.15.0/drivers/media/platform/rockchip/rga/rga.c @@ -868,7 +868,7 @@ ret = pm_runtime_resume_and_get(rga->dev); if (ret < 0) - goto rel_vdev; + goto rel_m2m; rga->version.major = (rga_read(rga, RGA_VERSION_INFO) >> 24) & 0xFF; rga->version.minor = (rga_read(rga, RGA_VERSION_INFO) >> 20) & 0x0F; @@ -884,7 +884,7 @@ DMA_ATTR_WRITE_COMBINE); if (!rga->cmdbuf_virt) { ret = -ENOMEM; - goto rel_vdev; + goto rel_m2m; } rga->src_mmu_pages = @@ -921,6 +921,8 @@ free_dma: dma_free_attrs(rga->dev, RGA_CMDBUF_SIZE, rga->cmdbuf_virt, rga->cmdbuf_phy, DMA_ATTR_WRITE_COMBINE); +rel_m2m: + v4l2_m2m_release(rga->m2m_dev); rel_vdev: video_device_release(vfd); unreg_v4l2_dev: diff -u linux-intel-iotg-5.15-5.15.0/drivers/media/usb/pvrusb2/pvrusb2-hdw.c linux-intel-iotg-5.15-5.15.0/drivers/media/usb/pvrusb2/pvrusb2-hdw.c --- linux-intel-iotg-5.15-5.15.0/drivers/media/usb/pvrusb2/pvrusb2-hdw.c +++ linux-intel-iotg-5.15-5.15.0/drivers/media/usb/pvrusb2/pvrusb2-hdw.c @@ -2569,6 +2569,11 @@ } while (0); mutex_unlock(&pvr2_unit_mtx); + INIT_WORK(&hdw->workpoll, pvr2_hdw_worker_poll); + + if (hdw->unit_number == -1) + goto fail; + cnt1 = 0; cnt2 = scnprintf(hdw->name+cnt1,sizeof(hdw->name)-cnt1,"pvrusb2"); cnt1 += cnt2; @@ -2580,8 +2585,6 @@ if (cnt1 >= sizeof(hdw->name)) cnt1 = sizeof(hdw->name)-1; hdw->name[cnt1] = 0; - INIT_WORK(&hdw->workpoll,pvr2_hdw_worker_poll); - pvr2_trace(PVR2_TRACE_INIT,"Driver unit number is %d, name is %s", hdw->unit_number,hdw->name); diff -u linux-intel-iotg-5.15-5.15.0/drivers/media/usb/uvc/uvc_v4l2.c linux-intel-iotg-5.15-5.15.0/drivers/media/usb/uvc/uvc_v4l2.c --- linux-intel-iotg-5.15-5.15.0/drivers/media/usb/uvc/uvc_v4l2.c +++ linux-intel-iotg-5.15-5.15.0/drivers/media/usb/uvc/uvc_v4l2.c @@ -864,29 +864,31 @@ struct uvc_video_chain *chain = handle->chain; const struct uvc_entity *selector = chain->selector; struct uvc_entity *iterm = NULL; + struct uvc_entity *it; u32 index = input->index; - int pin = 0; if (selector == NULL || (chain->dev->quirks & UVC_QUIRK_IGNORE_SELECTOR_UNIT)) { if (index != 0) return -EINVAL; - list_for_each_entry(iterm, &chain->entities, chain) { - if (UVC_ENTITY_IS_ITERM(iterm)) + list_for_each_entry(it, &chain->entities, chain) { + if (UVC_ENTITY_IS_ITERM(it)) { + iterm = it; break; + } } - pin = iterm->id; } else if (index < selector->bNrInPins) { - pin = selector->baSourceID[index]; - list_for_each_entry(iterm, &chain->entities, chain) { - if (!UVC_ENTITY_IS_ITERM(iterm)) + list_for_each_entry(it, &chain->entities, chain) { + if (!UVC_ENTITY_IS_ITERM(it)) continue; - if (iterm->id == pin) + if (it->id == selector->baSourceID[index]) { + iterm = it; break; + } } } - if (iterm == NULL || iterm->id != pin) + if (iterm == NULL) return -EINVAL; memset(input, 0, sizeof(*input)); diff -u linux-intel-iotg-5.15-5.15.0/drivers/memory/renesas-rpc-if.c linux-intel-iotg-5.15-5.15.0/drivers/memory/renesas-rpc-if.c --- linux-intel-iotg-5.15-5.15.0/drivers/memory/renesas-rpc-if.c +++ linux-intel-iotg-5.15-5.15.0/drivers/memory/renesas-rpc-if.c @@ -162,25 +162,39 @@ /* - * Custom accessor functions to ensure SMRDR0 and SMWDR0 are always accessed - * with proper width. Requires SMENR_SPIDE to be correctly set before! + * Custom accessor functions to ensure SM[RW]DR[01] are always accessed with + * proper width. Requires rpcif.xfer_size to be correctly set before! */ static int rpcif_reg_read(void *context, unsigned int reg, unsigned int *val) { struct rpcif *rpc = context; - if (reg == RPCIF_SMRDR0 || reg == RPCIF_SMWDR0) { - u32 spide = readl(rpc->base + RPCIF_SMENR) & RPCIF_SMENR_SPIDE(0xF); - - if (spide == 0x8) { + switch (reg) { + case RPCIF_SMRDR0: + case RPCIF_SMWDR0: + switch (rpc->xfer_size) { + case 1: *val = readb(rpc->base + reg); return 0; - } else if (spide == 0xC) { + + case 2: *val = readw(rpc->base + reg); return 0; - } else if (spide != 0xF) { + + case 4: + case 8: + *val = readl(rpc->base + reg); + return 0; + + default: return -EILSEQ; } + + case RPCIF_SMRDR1: + case RPCIF_SMWDR1: + if (rpc->xfer_size != 8) + return -EILSEQ; + break; } *val = readl(rpc->base + reg); @@ -192,18 +206,34 @@ { struct rpcif *rpc = context; - if (reg == RPCIF_SMRDR0 || reg == RPCIF_SMWDR0) { - u32 spide = readl(rpc->base + RPCIF_SMENR) & RPCIF_SMENR_SPIDE(0xF); - - if (spide == 0x8) { + switch (reg) { + case RPCIF_SMWDR0: + switch (rpc->xfer_size) { + case 1: writeb(val, rpc->base + reg); return 0; - } else if (spide == 0xC) { + + case 2: writew(val, rpc->base + reg); return 0; - } else if (spide != 0xF) { + + case 4: + case 8: + writel(val, rpc->base + reg); + return 0; + + default: return -EILSEQ; } + + case RPCIF_SMWDR1: + if (rpc->xfer_size != 8) + return -EILSEQ; + break; + + case RPCIF_SMRDR0: + case RPCIF_SMRDR1: + return -EPERM; } writel(val, rpc->base + reg); @@ -442,6 +472,7 @@ smenr |= RPCIF_SMENR_SPIDE(rpcif_bits_set(rpc, nbytes)); regmap_write(rpc->regmap, RPCIF_SMENR, smenr); + rpc->xfer_size = nbytes; memcpy(data, rpc->buffer + pos, nbytes); if (nbytes == 8) { @@ -506,6 +537,7 @@ regmap_write(rpc->regmap, RPCIF_SMENR, smenr); regmap_write(rpc->regmap, RPCIF_SMCR, rpc->smcr | RPCIF_SMCR_SPIE); + rpc->xfer_size = nbytes; ret = wait_msg_xfer_end(rpc); if (ret) goto err_out; diff -u linux-intel-iotg-5.15-5.15.0/drivers/mfd/Kconfig linux-intel-iotg-5.15-5.15.0/drivers/mfd/Kconfig --- linux-intel-iotg-5.15-5.15.0/drivers/mfd/Kconfig +++ linux-intel-iotg-5.15-5.15.0/drivers/mfd/Kconfig @@ -2241,4 +2241,14 @@ of the device. +config MFD_LJCA + tristate "Intel La Jolla Cove Adapter support" + select MFD_CORE + depends on USB + help + This adds support for Intel La Jolla Cove USB-I2C/SPI/GPIO + Adapter (LJCA). Additional drivers such as I2C_LJCA, + GPIO_LJCA, etc. must be enabled in order to use the + functionality of the device. + endmenu endif diff -u linux-intel-iotg-5.15-5.15.0/drivers/mfd/Makefile linux-intel-iotg-5.15-5.15.0/drivers/mfd/Makefile --- linux-intel-iotg-5.15-5.15.0/drivers/mfd/Makefile +++ linux-intel-iotg-5.15-5.15.0/drivers/mfd/Makefile @@ -281,0 +282,2 @@ + +obj-$(CONFIG_MFD_LJCA) += ljca.o diff -u linux-intel-iotg-5.15-5.15.0/drivers/misc/eeprom/at25.c linux-intel-iotg-5.15-5.15.0/drivers/misc/eeprom/at25.c --- linux-intel-iotg-5.15-5.15.0/drivers/misc/eeprom/at25.c +++ linux-intel-iotg-5.15-5.15.0/drivers/misc/eeprom/at25.c @@ -30,6 +30,8 @@ */ #define FM25_SN_LEN 8 /* serial number length */ +#define EE_MAXADDRLEN 3 /* 24 bit addresses, up to 2 MBytes */ + struct at25_data { struct spi_device *spi; struct mutex lock; @@ -38,6 +40,7 @@ struct nvmem_config nvmem_config; struct nvmem_device *nvmem; u8 sernum[FM25_SN_LEN]; + u8 command[EE_MAXADDRLEN + 1]; }; #define AT25_WREN 0x06 /* latch the write enable */ @@ -60,8 +63,6 @@ #define FM25_ID_LEN 9 /* ID length */ -#define EE_MAXADDRLEN 3 /* 24 bit addresses, up to 2 MBytes */ - /* Specs often allow 5 msec for a page write, sometimes 20 msec; * it's important to recover from write timeouts. */ @@ -76,7 +77,6 @@ { struct at25_data *at25 = priv; char *buf = val; - u8 command[EE_MAXADDRLEN + 1]; u8 *cp; ssize_t status; struct spi_transfer t[2]; @@ -90,12 +90,15 @@ if (unlikely(!count)) return -EINVAL; - cp = command; + cp = at25->command; instr = AT25_READ; if (at25->chip.flags & EE_INSTR_BIT3_IS_ADDR) if (offset >= (1U << (at25->addrlen * 8))) instr |= AT25_INSTR_BIT3; + + mutex_lock(&at25->lock); + *cp++ = instr; /* 8/16/24-bit address is written MSB first */ @@ -114,7 +117,7 @@ spi_message_init(&m); memset(t, 0, sizeof(t)); - t[0].tx_buf = command; + t[0].tx_buf = at25->command; t[0].len = at25->addrlen + 1; spi_message_add_tail(&t[0], &m); @@ -122,8 +125,6 @@ t[1].len = count; spi_message_add_tail(&t[1], &m); - mutex_lock(&at25->lock); - /* Read it all at once. * * REVISIT that's potentially a problem with large chips, if @@ -151,7 +152,7 @@ spi_message_init(&m); memset(t, 0, sizeof(t)); - t[0].tx_buf = &command; + t[0].tx_buf = at25->command; t[0].len = 1; spi_message_add_tail(&t[0], &m); @@ -161,6 +162,8 @@ mutex_lock(&at25->lock); + at25->command[0] = command; + status = spi_sync(at25->spi, &m); dev_dbg(&at25->spi->dev, "read %d aux bytes --> %d\n", len, status); diff -u linux-intel-iotg-5.15-5.15.0/drivers/misc/mei/Kconfig linux-intel-iotg-5.15-5.15.0/drivers/misc/mei/Kconfig --- linux-intel-iotg-5.15-5.15.0/drivers/misc/mei/Kconfig +++ linux-intel-iotg-5.15-5.15.0/drivers/misc/mei/Kconfig @@ -57,4 +57,11 @@ device over virtio. +config INTEL_MEI_VSC + tristate "Intel Vision Sensing Controller device with ME interface" + select INTEL_MEI + depends on X86 && SPI + help + MEI over SPI for Intel Vision Sensing Controller device + source "drivers/misc/mei/hdcp/Kconfig" source "drivers/misc/mei/dal/Kconfig" diff -u linux-intel-iotg-5.15-5.15.0/drivers/misc/mei/Makefile linux-intel-iotg-5.15-5.15.0/drivers/misc/mei/Makefile --- linux-intel-iotg-5.15-5.15.0/drivers/misc/mei/Makefile +++ linux-intel-iotg-5.15-5.15.0/drivers/misc/mei/Makefile @@ -25,6 +25,10 @@ obj-$(CONFIG_INTEL_MEI_VIRTIO) += mei-virtio.o mei-virtio-objs := hw-virtio.o +obj-$(CONFIG_INTEL_MEI_VSC) += mei-vsc.o +mei-vsc-objs := spi-vsc.o +mei-vsc-objs += hw-vsc.o + mei-$(CONFIG_EVENT_TRACING) += mei-trace.o CFLAGS_mei-trace.o = -I$(src) diff -u linux-intel-iotg-5.15-5.15.0/drivers/mmc/core/block.c linux-intel-iotg-5.15-5.15.0/drivers/mmc/core/block.c --- linux-intel-iotg-5.15-5.15.0/drivers/mmc/core/block.c +++ linux-intel-iotg-5.15-5.15.0/drivers/mmc/core/block.c @@ -609,11 +609,11 @@ if (idata->rpmb || (cmd.flags & MMC_RSP_R1B) == MMC_RSP_R1B) { /* - * Ensure RPMB/R1B command has completed by polling CMD13 - * "Send Status". + * Ensure RPMB/R1B command has completed by polling CMD13 "Send Status". Here we + * allow to override the default timeout value if a custom timeout is specified. */ - err = mmc_poll_for_busy(card, MMC_BLK_TIMEOUT_MS, false, - MMC_BUSY_IO); + err = mmc_poll_for_busy(card, idata->ic.cmd_timeout_ms ? : MMC_BLK_TIMEOUT_MS, + false, MMC_BUSY_IO); } return err; diff -u linux-intel-iotg-5.15-5.15.0/drivers/mmc/host/sdhci_am654.c linux-intel-iotg-5.15-5.15.0/drivers/mmc/host/sdhci_am654.c --- linux-intel-iotg-5.15-5.15.0/drivers/mmc/host/sdhci_am654.c +++ linux-intel-iotg-5.15-5.15.0/drivers/mmc/host/sdhci_am654.c @@ -147,6 +147,9 @@ int drv_strength; int strb_sel; u32 flags; + u32 quirks; + +#define SDHCI_AM654_QUIRK_FORCE_CDTEST BIT(0) }; struct sdhci_am654_driver_data { @@ -369,6 +372,21 @@ } } +static void sdhci_am654_reset(struct sdhci_host *host, u8 mask) +{ + u8 ctrl; + struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host); + struct sdhci_am654_data *sdhci_am654 = sdhci_pltfm_priv(pltfm_host); + + sdhci_reset(host, mask); + + if (sdhci_am654->quirks & SDHCI_AM654_QUIRK_FORCE_CDTEST) { + ctrl = sdhci_readb(host, SDHCI_HOST_CONTROL); + ctrl |= SDHCI_CTRL_CDTEST_INS | SDHCI_CTRL_CDTEST_EN; + sdhci_writeb(host, ctrl, SDHCI_HOST_CONTROL); + } +} + static int sdhci_am654_execute_tuning(struct mmc_host *mmc, u32 opcode) { struct sdhci_host *host = mmc_priv(mmc); @@ -500,7 +518,7 @@ .set_clock = sdhci_j721e_4bit_set_clock, .write_b = sdhci_am654_write_b, .irq = sdhci_am654_cqhci_irq, - .reset = sdhci_reset, + .reset = sdhci_am654_reset, }; static const struct sdhci_pltfm_data sdhci_j721e_4bit_pdata = { @@ -719,6 +737,9 @@ device_property_read_u32(dev, "ti,clkbuf-sel", &sdhci_am654->clkbuf_sel); + if (device_property_read_bool(dev, "ti,fails-without-test-cd")) + sdhci_am654->quirks |= SDHCI_AM654_QUIRK_FORCE_CDTEST; + sdhci_get_of_property(pdev); return 0; diff -u linux-intel-iotg-5.15-5.15.0/drivers/mtd/nand/raw/intel-nand-controller.c linux-intel-iotg-5.15-5.15.0/drivers/mtd/nand/raw/intel-nand-controller.c --- linux-intel-iotg-5.15-5.15.0/drivers/mtd/nand/raw/intel-nand-controller.c +++ linux-intel-iotg-5.15-5.15.0/drivers/mtd/nand/raw/intel-nand-controller.c @@ -619,9 +619,9 @@ resname = devm_kasprintf(dev, GFP_KERNEL, "nand_cs%d", cs); res = platform_get_resource_byname(pdev, IORESOURCE_MEM, resname); ebu_host->cs[cs].chipaddr = devm_ioremap_resource(dev, res); - ebu_host->cs[cs].nand_pa = res->start; if (IS_ERR(ebu_host->cs[cs].chipaddr)) return PTR_ERR(ebu_host->cs[cs].chipaddr); + ebu_host->cs[cs].nand_pa = res->start; ebu_host->clk = devm_clk_get(dev, NULL); if (IS_ERR(ebu_host->clk)) diff -u linux-intel-iotg-5.15-5.15.0/drivers/mtd/nand/raw/qcom_nandc.c linux-intel-iotg-5.15-5.15.0/drivers/mtd/nand/raw/qcom_nandc.c --- linux-intel-iotg-5.15-5.15.0/drivers/mtd/nand/raw/qcom_nandc.c +++ linux-intel-iotg-5.15-5.15.0/drivers/mtd/nand/raw/qcom_nandc.c @@ -2641,10 +2641,23 @@ ecc->engine_type = NAND_ECC_ENGINE_TYPE_ON_HOST; mtd_set_ooblayout(mtd, &qcom_nand_ooblayout_ops); + /* Free the initially allocated BAM transaction for reading the ONFI params */ + if (nandc->props->is_bam) + free_bam_transaction(nandc); nandc->max_cwperpage = max_t(unsigned int, nandc->max_cwperpage, cwperpage); + /* Now allocate the BAM transaction based on updated max_cwperpage */ + if (nandc->props->is_bam) { + nandc->bam_txn = alloc_bam_transaction(nandc); + if (!nandc->bam_txn) { + dev_err(nandc->dev, + "failed to allocate bam transaction\n"); + return -ENOMEM; + } + } + /* * DATA_UD_BYTES varies based on whether the read/write command protects * spare data with ECC too. We protect spare data by default, so we set @@ -2945,17 +2958,6 @@ if (ret) return ret; - if (nandc->props->is_bam) { - free_bam_transaction(nandc); - nandc->bam_txn = alloc_bam_transaction(nandc); - if (!nandc->bam_txn) { - dev_err(nandc->dev, - "failed to allocate bam transaction\n"); - nand_cleanup(chip); - return -ENOMEM; - } - } - ret = mtd_device_parse_register(mtd, probes, NULL, NULL, 0); if (ret) nand_cleanup(chip); diff -u linux-intel-iotg-5.15-5.15.0/drivers/net/Kconfig linux-intel-iotg-5.15-5.15.0/drivers/net/Kconfig --- linux-intel-iotg-5.15-5.15.0/drivers/net/Kconfig +++ linux-intel-iotg-5.15-5.15.0/drivers/net/Kconfig @@ -81,7 +81,6 @@ select CRYPTO select CRYPTO_LIB_CURVE25519 select CRYPTO_LIB_CHACHA20POLY1305 - select CRYPTO_LIB_BLAKE2S select CRYPTO_CHACHA20_X86_64 if X86 && 64BIT select CRYPTO_POLY1305_X86_64 if X86 && 64BIT select CRYPTO_BLAKE2S_X86 if X86 && 64BIT diff -u linux-intel-iotg-5.15-5.15.0/drivers/net/bonding/bond_main.c linux-intel-iotg-5.15-5.15.0/drivers/net/bonding/bond_main.c --- linux-intel-iotg-5.15-5.15.0/drivers/net/bonding/bond_main.c +++ linux-intel-iotg-5.15-5.15.0/drivers/net/bonding/bond_main.c @@ -3817,14 +3817,19 @@ return true; } -static u32 bond_ip_hash(u32 hash, struct flow_keys *flow) +static u32 bond_ip_hash(u32 hash, struct flow_keys *flow, int xmit_policy) { hash ^= (__force u32)flow_get_u32_dst(flow) ^ (__force u32)flow_get_u32_src(flow); hash ^= (hash >> 16); hash ^= (hash >> 8); + /* discard lowest hash bit to deal with the common even ports pattern */ - return hash >> 1; + if (xmit_policy == BOND_XMIT_POLICY_LAYER34 || + xmit_policy == BOND_XMIT_POLICY_ENCAP34) + return hash >> 1; + + return hash; } /* Generate hash based on xmit policy. If @skb is given it is used to linearize @@ -3854,7 +3859,7 @@ memcpy(&hash, &flow.ports.ports, sizeof(hash)); } - return bond_ip_hash(hash, &flow); + return bond_ip_hash(hash, &flow, bond->params.xmit_policy); } /** @@ -5012,7 +5017,7 @@ /* L4 */ memcpy(&hash, &flow.ports.ports, sizeof(hash)); /* L3 */ - return bond_ip_hash(hash, &flow); + return bond_ip_hash(hash, &flow, BOND_XMIT_POLICY_LAYER34); } static struct net_device *__bond_sk_get_lower_dev(struct bonding *bond, diff -u linux-intel-iotg-5.15-5.15.0/drivers/net/can/m_can/m_can_pci.c linux-intel-iotg-5.15-5.15.0/drivers/net/can/m_can/m_can_pci.c --- linux-intel-iotg-5.15-5.15.0/drivers/net/can/m_can/m_can_pci.c +++ linux-intel-iotg-5.15-5.15.0/drivers/net/can/m_can/m_can_pci.c @@ -18,14 +18,9 @@ #define M_CAN_PCI_MMIO_BAR 0 +#define M_CAN_CLOCK_FREQ_EHL 200000000 #define CTL_CSR_INT_CTL_OFFSET 0x508 -struct m_can_pci_config { - const struct can_bittiming_const *bit_timing; - const struct can_bittiming_const *data_timing; - unsigned int clock_freq; -}; - struct m_can_pci_priv { struct m_can_classdev cdev; @@ -89,40 +84,9 @@ .read_fifo = iomap_read_fifo, }; -static const struct can_bittiming_const m_can_bittiming_const_ehl = { - .name = KBUILD_MODNAME, - .tseg1_min = 2, /* Time segment 1 = prop_seg + phase_seg1 */ - .tseg1_max = 64, - .tseg2_min = 1, /* Time segment 2 = phase_seg2 */ - .tseg2_max = 128, - .sjw_max = 128, - .brp_min = 1, - .brp_max = 512, - .brp_inc = 1, -}; - -static const struct can_bittiming_const m_can_data_bittiming_const_ehl = { - .name = KBUILD_MODNAME, - .tseg1_min = 2, /* Time segment 1 = prop_seg + phase_seg1 */ - .tseg1_max = 16, - .tseg2_min = 1, /* Time segment 2 = phase_seg2 */ - .tseg2_max = 8, - .sjw_max = 4, - .brp_min = 1, - .brp_max = 32, - .brp_inc = 1, -}; - -static const struct m_can_pci_config m_can_pci_ehl = { - .bit_timing = &m_can_bittiming_const_ehl, - .data_timing = &m_can_data_bittiming_const_ehl, - .clock_freq = 200000000, -}; - static int m_can_pci_probe(struct pci_dev *pci, const struct pci_device_id *id) { struct device *dev = &pci->dev; - const struct m_can_pci_config *cfg; struct m_can_classdev *mcan_class; struct m_can_pci_priv *priv; void __iomem *base; @@ -150,8 +114,6 @@ if (!mcan_class) return -ENOMEM; - cfg = (const struct m_can_pci_config *)id->driver_data; - priv = cdev_to_priv(mcan_class); priv->base = base; @@ -163,9 +125,7 @@ mcan_class->dev = &pci->dev; mcan_class->net->irq = pci_irq_vector(pci, 0); mcan_class->pm_clock_support = 1; - mcan_class->bit_timing = cfg->bit_timing; - mcan_class->data_timing = cfg->data_timing; - mcan_class->can.clock.freq = cfg->clock_freq; + mcan_class->can.clock.freq = id->driver_data; mcan_class->ops = &m_can_pci_ops; pci_set_drvdata(pci, mcan_class); @@ -218,8 +178,8 @@ m_can_pci_suspend, m_can_pci_resume); static const struct pci_device_id m_can_pci_id_table[] = { - { PCI_VDEVICE(INTEL, 0x4bc1), (kernel_ulong_t)&m_can_pci_ehl, }, - { PCI_VDEVICE(INTEL, 0x4bc2), (kernel_ulong_t)&m_can_pci_ehl, }, + { PCI_VDEVICE(INTEL, 0x4bc1), M_CAN_CLOCK_FREQ_EHL, }, + { PCI_VDEVICE(INTEL, 0x4bc2), M_CAN_CLOCK_FREQ_EHL, }, { } /* Terminating Entry */ }; MODULE_DEVICE_TABLE(pci, m_can_pci_id_table); diff -u linux-intel-iotg-5.15-5.15.0/drivers/net/can/xilinx_can.c linux-intel-iotg-5.15-5.15.0/drivers/net/can/xilinx_can.c --- linux-intel-iotg-5.15-5.15.0/drivers/net/can/xilinx_can.c +++ linux-intel-iotg-5.15-5.15.0/drivers/net/can/xilinx_can.c @@ -239,7 +239,7 @@ }; /* AXI CANFD Data Bittiming constants as per AXI CANFD 1.0 specs */ -static struct can_bittiming_const xcan_data_bittiming_const_canfd = { +static const struct can_bittiming_const xcan_data_bittiming_const_canfd = { .name = DRIVER_NAME, .tseg1_min = 1, .tseg1_max = 16, @@ -265,7 +265,7 @@ }; /* AXI CANFD 2.0 Data Bittiming constants as per AXI CANFD 2.0 spec */ -static struct can_bittiming_const xcan_data_bittiming_const_canfd2 = { +static const struct can_bittiming_const xcan_data_bittiming_const_canfd2 = { .name = DRIVER_NAME, .tseg1_min = 1, .tseg1_max = 32, diff -u linux-intel-iotg-5.15-5.15.0/drivers/net/dsa/Kconfig linux-intel-iotg-5.15-5.15.0/drivers/net/dsa/Kconfig --- linux-intel-iotg-5.15-5.15.0/drivers/net/dsa/Kconfig +++ linux-intel-iotg-5.15-5.15.0/drivers/net/dsa/Kconfig @@ -81,7 +81,6 @@ config NET_DSA_SMSC_LAN9303 tristate - depends on VLAN_8021Q || VLAN_8021Q=n select NET_DSA_TAG_LAN9303 select REGMAP help @@ -91,6 +90,7 @@ config NET_DSA_SMSC_LAN9303_I2C tristate "SMSC/Microchip LAN9303 3-ports 10/100 ethernet switch in I2C managed mode" depends on I2C + depends on VLAN_8021Q || VLAN_8021Q=n select NET_DSA_SMSC_LAN9303 select REGMAP_I2C help @@ -100,6 +100,7 @@ config NET_DSA_SMSC_LAN9303_MDIO tristate "SMSC/Microchip LAN9303 3-ports 10/100 ethernet switch in MDIO managed mode" select NET_DSA_SMSC_LAN9303 + depends on VLAN_8021Q || VLAN_8021Q=n help Enable access functions if the SMSC/Microchip LAN9303 is configured for MDIO managed mode. diff -u linux-intel-iotg-5.15-5.15.0/drivers/net/dsa/bcm_sf2.c linux-intel-iotg-5.15-5.15.0/drivers/net/dsa/bcm_sf2.c --- linux-intel-iotg-5.15-5.15.0/drivers/net/dsa/bcm_sf2.c +++ linux-intel-iotg-5.15-5.15.0/drivers/net/dsa/bcm_sf2.c @@ -796,6 +796,9 @@ struct bcm_sf2_priv *priv = bcm_sf2_to_priv(ds); u32 reg, offset; + if (priv->wol_ports_mask & BIT(port)) + return; + if (port != core_readl(priv, CORE_IMP0_PRT_ID)) { if (priv->type == BCM4908_DEVICE_ID || priv->type == BCM7445_DEVICE_ID) diff -u linux-intel-iotg-5.15-5.15.0/drivers/net/dsa/lantiq_gswip.c linux-intel-iotg-5.15-5.15.0/drivers/net/dsa/lantiq_gswip.c --- linux-intel-iotg-5.15-5.15.0/drivers/net/dsa/lantiq_gswip.c +++ linux-intel-iotg-5.15-5.15.0/drivers/net/dsa/lantiq_gswip.c @@ -1663,9 +1663,6 @@ break; case PHY_INTERFACE_MODE_RMII: miicfg |= GSWIP_MII_CFG_MODE_RMIIM; - - /* Configure the RMII clock as output: */ - miicfg |= GSWIP_MII_CFG_RMII_CLK; break; case PHY_INTERFACE_MODE_RGMII: case PHY_INTERFACE_MODE_RGMII_ID: diff -u linux-intel-iotg-5.15-5.15.0/drivers/net/dsa/mt7530.c linux-intel-iotg-5.15-5.15.0/drivers/net/dsa/mt7530.c --- linux-intel-iotg-5.15-5.15.0/drivers/net/dsa/mt7530.c +++ linux-intel-iotg-5.15-5.15.0/drivers/net/dsa/mt7530.c @@ -2216,6 +2216,7 @@ ret = of_get_phy_mode(mac_np, &interface); if (ret && ret != -ENODEV) { of_node_put(mac_np); + of_node_put(phy_node); return ret; } id = of_mdio_parse_addr(ds->dev, phy_node); @@ -2526,13 +2527,7 @@ /* Port5 supports ethier RGMII or SGMII. * Port6 supports SGMII only. */ - switch (port) { - case 5: - if (mt7531_is_rgmii_port(priv, port)) - break; - fallthrough; - case 6: - phylink_set(supported, 1000baseX_Full); + if (port == 6) { phylink_set(supported, 2500baseX_Full); phylink_set(supported, 2500baseT_Full); } @@ -2900,8 +2895,6 @@ mt7530_mac_port_validate(struct dsa_switch *ds, int port, unsigned long *supported) { - if (port == 5) - phylink_set(supported, 1000baseX_Full); } static void mt7531_mac_port_validate(struct dsa_switch *ds, int port, @@ -2938,8 +2931,10 @@ } /* This switch only supports 1G full-duplex. */ - if (state->interface != PHY_INTERFACE_MODE_MII) + if (state->interface != PHY_INTERFACE_MODE_MII) { phylink_set(mask, 1000baseT_Full); + phylink_set(mask, 1000baseX_Full); + } priv->info->mac_port_validate(ds, port, mask); diff -u linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/aquantia/atlantic/aq_nic.c linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/aquantia/atlantic/aq_nic.c --- linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/aquantia/atlantic/aq_nic.c +++ linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/aquantia/atlantic/aq_nic.c @@ -480,8 +480,8 @@ if (err < 0) goto err_exit; - for (i = 0U, aq_vec = self->aq_vec[0]; - self->aq_vecs > i; ++i, aq_vec = self->aq_vec[i]) { + for (i = 0U; self->aq_vecs > i; ++i) { + aq_vec = self->aq_vec[i]; err = aq_vec_start(aq_vec); if (err < 0) goto err_exit; @@ -511,8 +511,8 @@ mod_timer(&self->polling_timer, jiffies + AQ_CFG_POLLING_TIMER_INTERVAL); } else { - for (i = 0U, aq_vec = self->aq_vec[0]; - self->aq_vecs > i; ++i, aq_vec = self->aq_vec[i]) { + for (i = 0U; self->aq_vecs > i; ++i) { + aq_vec = self->aq_vec[i]; err = aq_pci_func_alloc_irq(self, i, self->ndev->name, aq_vec_isr, aq_vec, aq_vec_get_affinity_mask(aq_vec)); diff -u linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/aquantia/atlantic/aq_pci_func.c linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/aquantia/atlantic/aq_pci_func.c --- linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/aquantia/atlantic/aq_pci_func.c +++ linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/aquantia/atlantic/aq_pci_func.c @@ -379,7 +379,7 @@ } } -static int aq_suspend_common(struct device *dev, bool deep) +static int aq_suspend_common(struct device *dev) { struct aq_nic_s *nic = pci_get_drvdata(to_pci_dev(dev)); @@ -392,17 +392,15 @@ if (netif_running(nic->ndev)) aq_nic_stop(nic); - if (deep) { - aq_nic_deinit(nic, !nic->aq_hw->aq_nic_cfg->wol); - aq_nic_set_power(nic); - } + aq_nic_deinit(nic, !nic->aq_hw->aq_nic_cfg->wol); + aq_nic_set_power(nic); rtnl_unlock(); return 0; } -static int atl_resume_common(struct device *dev, bool deep) +static int atl_resume_common(struct device *dev) { struct pci_dev *pdev = to_pci_dev(dev); struct aq_nic_s *nic; @@ -415,11 +413,6 @@ pci_set_power_state(pdev, PCI_D0); pci_restore_state(pdev); - if (deep) { - /* Reinitialize Nic/Vecs objects */ - aq_nic_deinit(nic, !nic->aq_hw->aq_nic_cfg->wol); - } - if (netif_running(nic->ndev)) { ret = aq_nic_init(nic); if (ret) @@ -444,22 +437,22 @@ static int aq_pm_freeze(struct device *dev) { - return aq_suspend_common(dev, false); + return aq_suspend_common(dev); } static int aq_pm_suspend_poweroff(struct device *dev) { - return aq_suspend_common(dev, true); + return aq_suspend_common(dev); } static int aq_pm_thaw(struct device *dev) { - return atl_resume_common(dev, false); + return atl_resume_common(dev); } static int aq_pm_resume_restore(struct device *dev) { - return atl_resume_common(dev, true); + return atl_resume_common(dev); } static const struct dev_pm_ops aq_pm_ops = { diff -u linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/aquantia/atlantic/aq_ring.c linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/aquantia/atlantic/aq_ring.c --- linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/aquantia/atlantic/aq_ring.c +++ linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/aquantia/atlantic/aq_ring.c @@ -345,7 +345,6 @@ int budget) { struct net_device *ndev = aq_nic_get_ndev(self->aq_nic); - bool is_rsc_completed = true; int err = 0; for (; (self->sw_head != self->hw_head) && budget; @@ -363,12 +362,17 @@ continue; if (!buff->is_eop) { + unsigned int frag_cnt = 0U; buff_ = buff; do { + bool is_rsc_completed = true; + if (buff_->next >= self->size) { err = -EIO; goto err_exit; } + + frag_cnt++; next_ = buff_->next, buff_ = &self->buff_ring[next_]; is_rsc_completed = @@ -376,18 +380,17 @@ next_, self->hw_head); - if (unlikely(!is_rsc_completed)) - break; + if (unlikely(!is_rsc_completed) || + frag_cnt > MAX_SKB_FRAGS) { + err = 0; + goto err_exit; + } buff->is_error |= buff_->is_error; buff->is_cso_err |= buff_->is_cso_err; } while (!buff_->is_eop); - if (!is_rsc_completed) { - err = 0; - goto err_exit; - } if (buff->is_error || (buff->is_lro && buff->is_cso_err)) { buff_ = buff; @@ -445,7 +448,7 @@ ALIGN(hdr_len, sizeof(long))); if (buff->len - hdr_len > 0) { - skb_add_rx_frag(skb, 0, buff->rxdata.page, + skb_add_rx_frag(skb, i++, buff->rxdata.page, buff->rxdata.pg_off + hdr_len, buff->len - hdr_len, AQ_CFG_RX_FRAME_MAX); @@ -454,7 +457,6 @@ if (!buff->is_eop) { buff_ = buff; - i = 1U; do { next_ = buff_->next; buff_ = &self->buff_ring[next_]; diff -u linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/aquantia/atlantic/aq_vec.c linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/aquantia/atlantic/aq_vec.c --- linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/aquantia/atlantic/aq_vec.c +++ linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/aquantia/atlantic/aq_vec.c @@ -43,8 +43,8 @@ if (!self) { err = -EINVAL; } else { - for (i = 0U, ring = self->ring[0]; - self->tx_rings > i; ++i, ring = self->ring[i]) { + for (i = 0U; self->tx_rings > i; ++i) { + ring = self->ring[i]; u64_stats_update_begin(&ring[AQ_VEC_RX_ID].stats.rx.syncp); ring[AQ_VEC_RX_ID].stats.rx.polls++; u64_stats_update_end(&ring[AQ_VEC_RX_ID].stats.rx.syncp); @@ -182,8 +182,8 @@ self->aq_hw_ops = aq_hw_ops; self->aq_hw = aq_hw; - for (i = 0U, ring = self->ring[0]; - self->tx_rings > i; ++i, ring = self->ring[i]) { + for (i = 0U; self->tx_rings > i; ++i) { + ring = self->ring[i]; err = aq_ring_init(&ring[AQ_VEC_TX_ID], ATL_RING_TX); if (err < 0) goto err_exit; @@ -224,8 +224,8 @@ unsigned int i = 0U; int err = 0; - for (i = 0U, ring = self->ring[0]; - self->tx_rings > i; ++i, ring = self->ring[i]) { + for (i = 0U; self->tx_rings > i; ++i) { + ring = self->ring[i]; err = self->aq_hw_ops->hw_ring_tx_start(self->aq_hw, &ring[AQ_VEC_TX_ID]); if (err < 0) @@ -248,8 +248,8 @@ struct aq_ring_s *ring = NULL; unsigned int i = 0U; - for (i = 0U, ring = self->ring[0]; - self->tx_rings > i; ++i, ring = self->ring[i]) { + for (i = 0U; self->tx_rings > i; ++i) { + ring = self->ring[i]; self->aq_hw_ops->hw_ring_tx_stop(self->aq_hw, &ring[AQ_VEC_TX_ID]); @@ -268,8 +268,8 @@ if (!self) goto err_exit; - for (i = 0U, ring = self->ring[0]; - self->tx_rings > i; ++i, ring = self->ring[i]) { + for (i = 0U; self->tx_rings > i; ++i) { + ring = self->ring[i]; aq_ring_tx_clean(&ring[AQ_VEC_TX_ID]); aq_ring_rx_deinit(&ring[AQ_VEC_RX_ID]); } @@ -297,8 +297,8 @@ if (!self) goto err_exit; - for (i = 0U, ring = self->ring[0]; - self->tx_rings > i; ++i, ring = self->ring[i]) { + for (i = 0U; self->tx_rings > i; ++i) { + ring = self->ring[i]; aq_ring_free(&ring[AQ_VEC_TX_ID]); if (i < self->rx_rings) aq_ring_free(&ring[AQ_VEC_RX_ID]); diff -u linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/broadcom/bcmsysport.c linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/broadcom/bcmsysport.c --- linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/broadcom/bcmsysport.c +++ linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/broadcom/bcmsysport.c @@ -2585,8 +2585,10 @@ device_set_wakeup_capable(&pdev->dev, 1); priv->wol_clk = devm_clk_get_optional(&pdev->dev, "sw_sysportwol"); - if (IS_ERR(priv->wol_clk)) - return PTR_ERR(priv->wol_clk); + if (IS_ERR(priv->wol_clk)) { + ret = PTR_ERR(priv->wol_clk); + goto err_deregister_fixed_link; + } /* Set the needed headroom once and for all */ BUILD_BUG_ON(sizeof(struct bcm_tsb) != 8); diff -u linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/broadcom/bnx2x/bnx2x_main.c linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/broadcom/bnx2x/bnx2x_main.c --- linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/broadcom/bnx2x/bnx2x_main.c +++ linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/broadcom/bnx2x/bnx2x_main.c @@ -14158,10 +14158,6 @@ /* Stop Tx */ bnx2x_tx_disable(bp); - /* Delete all NAPI objects */ - bnx2x_del_all_napi(bp); - if (CNIC_LOADED(bp)) - bnx2x_del_all_napi_cnic(bp); netdev_reset_tc(bp->dev); del_timer_sync(&bp->timer); @@ -14266,6 +14262,11 @@ bnx2x_drain_tx_queues(bp); bnx2x_send_unload_req(bp, UNLOAD_RECOVERY); bnx2x_netif_stop(bp, 1); + bnx2x_del_all_napi(bp); + + if (CNIC_LOADED(bp)) + bnx2x_del_all_napi_cnic(bp); + bnx2x_free_irq(bp); /* Report UNLOAD_DONE to MCP */ diff -u linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/broadcom/bnxt/bnxt.c linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/broadcom/bnxt/bnxt.c --- linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/broadcom/bnxt/bnxt.c +++ linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/broadcom/bnxt/bnxt.c @@ -2699,6 +2699,10 @@ u32 idx = le32_to_cpu(nqcmp->cq_handle_low); struct bnxt_cp_ring_info *cpr2; + /* No more budget for RX work */ + if (budget && work_done >= budget && idx == BNXT_RX_HDL) + break; + cpr2 = cpr->cp_ring_arr[idx]; work_done += __bnxt_poll_work(bp, cpr2, budget - work_done); @@ -10881,7 +10885,7 @@ if (bp->flags & BNXT_FLAG_CHIP_P5) return bnxt_rfs_supported(bp); - if (!(bp->flags & BNXT_FLAG_MSIX_CAP) || !bnxt_can_reserve_rings(bp)) + if (!(bp->flags & BNXT_FLAG_MSIX_CAP) || !bnxt_can_reserve_rings(bp) || !bp->rx_nr_rings) return false; vnics = 1 + bp->rx_nr_rings; @@ -13087,10 +13091,9 @@ goto init_dflt_ring_err; bp->tx_nr_rings_per_tc = bp->tx_nr_rings; - if (bnxt_rfs_supported(bp) && bnxt_rfs_capable(bp)) { - bp->flags |= BNXT_FLAG_RFS; - bp->dev->features |= NETIF_F_NTUPLE; - } + + bnxt_set_dflt_rfs(bp); + init_dflt_ring_err: bnxt_ulp_irq_restart(bp, rc); return rc; diff -u linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/broadcom/genet/bcmgenet.c linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/broadcom/genet/bcmgenet.c --- linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/broadcom/genet/bcmgenet.c +++ linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/broadcom/genet/bcmgenet.c @@ -1991,6 +1991,11 @@ return skb; } +static void bcmgenet_hide_tsb(struct sk_buff *skb) +{ + __skb_pull(skb, sizeof(struct status_64)); +} + static netdev_tx_t bcmgenet_xmit(struct sk_buff *skb, struct net_device *dev) { struct bcmgenet_priv *priv = netdev_priv(dev); @@ -2097,6 +2102,8 @@ } GENET_CB(skb)->last_cb = tx_cb_ptr; + + bcmgenet_hide_tsb(skb); skb_tx_timestamp(skb); /* Decrement total BD count and advance our write pointer */ @@ -3943,6 +3950,10 @@ goto err; } priv->wol_irq = platform_get_irq_optional(pdev, 2); + if (priv->wol_irq == -EPROBE_DEFER) { + err = priv->wol_irq; + goto err; + } priv->base = devm_platform_ioremap_resource(pdev, 0); if (IS_ERR(priv->base)) { diff -u linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/cadence/macb_main.c linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/cadence/macb_main.c --- linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/cadence/macb_main.c +++ linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/cadence/macb_main.c @@ -35,6 +35,7 @@ #include #include #include +#include #include "macb.h" /* This structure is only used for MACB on SiFive FU540 devices */ @@ -1155,6 +1156,36 @@ spin_unlock_irqrestore(&bp->lock, flags); } +static bool ptp_one_step_sync(struct sk_buff *skb) +{ + struct ptp_header *hdr; + unsigned int ptp_class; + u8 msgtype; + + /* No need to parse packet if PTP TS is not involved */ + if (likely(!(skb_shinfo(skb)->tx_flags & SKBTX_HW_TSTAMP))) + goto not_oss; + + /* Identify and return whether PTP one step sync is being processed */ + ptp_class = ptp_classify_raw(skb); + if (ptp_class == PTP_CLASS_NONE) + goto not_oss; + + hdr = ptp_parse_header(skb, ptp_class); + if (!hdr) + goto not_oss; + + if (hdr->flag_field[0] & PTP_FLAG_TWOSTEP) + goto not_oss; + + msgtype = ptp_get_msgtype(hdr, ptp_class); + if (msgtype == PTP_MSGTYPE_SYNC) + return true; + +not_oss: + return false; +} + static void macb_tx_interrupt(struct macb_queue *queue) { unsigned int tail; @@ -1199,8 +1230,8 @@ /* First, update TX stats if needed */ if (skb) { - if (unlikely(skb_shinfo(skb)->tx_flags & - SKBTX_HW_TSTAMP) && + if (unlikely(skb_shinfo(skb)->tx_flags & SKBTX_HW_TSTAMP) && + !ptp_one_step_sync(skb) && gem_ptp_do_txstamp(queue, skb, desc) == 0) { /* skb now belongs to timestamp buffer * and will be removed later @@ -1250,7 +1281,6 @@ /* Make hw descriptor updates visible to CPU */ rmb(); - queue->rx_prepared_head++; desc = macb_rx_desc(queue, entry); if (!queue->rx_skbuff[entry]) { @@ -1289,6 +1319,7 @@ dma_wmb(); desc->addr &= ~MACB_BIT(RX_USED); } + queue->rx_prepared_head++; } /* Make descriptor updates visible to hardware */ @@ -1689,6 +1720,7 @@ unsigned int head = queue->tx_head; unsigned int tail = queue->tx_tail; struct macb *bp = queue->bp; + unsigned int head_idx, tbqp; if (bp->caps & MACB_CAPS_ISR_CLEAR_ON_WRITE) queue_writel(queue, ISR, MACB_BIT(TXUBR)); @@ -1696,6 +1728,13 @@ if (head == tail) return; + tbqp = queue_readl(queue, TBQP) / macb_dma_desc_get_size(bp); + tbqp = macb_adj_dma_desc_idx(bp, macb_tx_ring_wrap(bp, tbqp)); + head_idx = macb_adj_dma_desc_idx(bp, macb_tx_ring_wrap(bp, head)); + + if (tbqp == head_idx) + return; + macb_writel(bp, NCR, macb_readl(bp, NCR) | MACB_BIT(TSTART)); } @@ -2022,7 +2061,8 @@ ctrl |= MACB_BF(TX_LSO, lso_ctrl); ctrl |= MACB_BF(TX_TCP_SEQ_SRC, seq_ctrl); if ((bp->dev->features & NETIF_F_HW_CSUM) && - skb->ip_summed != CHECKSUM_PARTIAL && !lso_ctrl) + skb->ip_summed != CHECKSUM_PARTIAL && !lso_ctrl && + !ptp_one_step_sync(skb)) ctrl |= MACB_BIT(TX_NOCRC); } else /* Only set MSS/MFS on payload descriptors @@ -2120,7 +2160,7 @@ if (!(ndev->features & NETIF_F_HW_CSUM) || !((*skb)->ip_summed != CHECKSUM_PARTIAL) || - skb_shinfo(*skb)->gso_size) /* Not available for GSO */ + skb_shinfo(*skb)->gso_size || ptp_one_step_sync(*skb)) return 0; if (padlen <= 0) { diff -u linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/faraday/ftgmac100.c linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/faraday/ftgmac100.c --- linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/faraday/ftgmac100.c +++ linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/faraday/ftgmac100.c @@ -1910,6 +1910,11 @@ /* AST2400 doesn't have working HW checksum generation */ if (np && (of_device_is_compatible(np, "aspeed,ast2400-mac"))) netdev->hw_features &= ~NETIF_F_HW_CSUM; + + /* AST2600 tx checksum with NCSI is broken */ + if (priv->use_ncsi && of_device_is_compatible(np, "aspeed,ast2600-mac")) + netdev->hw_features &= ~NETIF_F_HW_CSUM; + if (np && of_get_property(np, "no-hw-checksum", NULL)) netdev->hw_features &= ~(NETIF_F_HW_CSUM | NETIF_F_RXCSUM); netdev->features |= netdev->hw_features; diff -u linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/freescale/fec_main.c linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/freescale/fec_main.c --- linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/freescale/fec_main.c +++ linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/freescale/fec_main.c @@ -3726,7 +3726,7 @@ ARRAY_SIZE(out_val)); if (ret) { dev_dbg(&fep->pdev->dev, "no stop mode property\n"); - return ret; + goto out; } fep->stop_gpr.gpr = syscon_node_to_regmap(gpr_np); diff -u linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/hisilicon/hns3/hns3_enet.c linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/hisilicon/hns3/hns3_enet.c --- linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/hisilicon/hns3/hns3_enet.c +++ linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/hisilicon/hns3/hns3_enet.c @@ -5092,6 +5092,13 @@ set_bit(HNS3_NIC_STATE_RXD_ADV_LAYOUT_ENABLE, &priv->state); } +static void hns3_state_uninit(struct hnae3_handle *handle) +{ + struct hns3_nic_priv *priv = handle->priv; + + clear_bit(HNS3_NIC_STATE_INITED, &priv->state); +} + static int hns3_client_init(struct hnae3_handle *handle) { struct pci_dev *pdev = handle->pdev; @@ -5209,7 +5216,9 @@ return ret; out_reg_netdev_fail: + hns3_state_uninit(handle); hns3_dbg_uninit(handle); + hns3_client_stop(handle); out_client_start: hns3_free_rx_cpu_rmap(netdev); hns3_nic_uninit_irq(priv); diff -u linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/ibm/ibmvnic.c linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/ibm/ibmvnic.c --- linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/ibm/ibmvnic.c +++ linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/ibm/ibmvnic.c @@ -2961,13 +2961,8 @@ { struct ibmvnic_adapter *adapter = netdev_priv(netdev); - if (adapter->priv_flags & IBMVNIC_USE_SERVER_MAXES) { - ring->rx_max_pending = adapter->max_rx_add_entries_per_subcrq; - ring->tx_max_pending = adapter->max_tx_entries_per_subcrq; - } else { - ring->rx_max_pending = IBMVNIC_MAX_QUEUE_SZ; - ring->tx_max_pending = IBMVNIC_MAX_QUEUE_SZ; - } + ring->rx_max_pending = adapter->max_rx_add_entries_per_subcrq; + ring->tx_max_pending = adapter->max_tx_entries_per_subcrq; ring->rx_mini_max_pending = 0; ring->rx_jumbo_max_pending = 0; ring->rx_pending = adapter->req_rx_add_entries_per_subcrq; @@ -2980,23 +2975,21 @@ struct ethtool_ringparam *ring) { struct ibmvnic_adapter *adapter = netdev_priv(netdev); - int ret; - ret = 0; + if (ring->rx_pending > adapter->max_rx_add_entries_per_subcrq || + ring->tx_pending > adapter->max_tx_entries_per_subcrq) { + netdev_err(netdev, "Invalid request.\n"); + netdev_err(netdev, "Max tx buffers = %llu\n", + adapter->max_rx_add_entries_per_subcrq); + netdev_err(netdev, "Max rx buffers = %llu\n", + adapter->max_tx_entries_per_subcrq); + return -EINVAL; + } + adapter->desired.rx_entries = ring->rx_pending; adapter->desired.tx_entries = ring->tx_pending; - ret = wait_for_reset(adapter); - - if (!ret && - (adapter->req_rx_add_entries_per_subcrq != ring->rx_pending || - adapter->req_tx_entries_per_subcrq != ring->tx_pending)) - netdev_info(netdev, - "Could not match full ringsize request. Requested: RX %d, TX %d; Allowed: RX %llu, TX %llu\n", - ring->rx_pending, ring->tx_pending, - adapter->req_rx_add_entries_per_subcrq, - adapter->req_tx_entries_per_subcrq); - return ret; + return wait_for_reset(adapter); } static void ibmvnic_get_channels(struct net_device *netdev, @@ -3004,14 +2997,8 @@ { struct ibmvnic_adapter *adapter = netdev_priv(netdev); - if (adapter->priv_flags & IBMVNIC_USE_SERVER_MAXES) { - channels->max_rx = adapter->max_rx_queues; - channels->max_tx = adapter->max_tx_queues; - } else { - channels->max_rx = IBMVNIC_MAX_QUEUES; - channels->max_tx = IBMVNIC_MAX_QUEUES; - } - + channels->max_rx = adapter->max_rx_queues; + channels->max_tx = adapter->max_tx_queues; channels->max_other = 0; channels->max_combined = 0; channels->rx_count = adapter->req_rx_queues; @@ -3024,22 +3011,11 @@ struct ethtool_channels *channels) { struct ibmvnic_adapter *adapter = netdev_priv(netdev); - int ret; - ret = 0; adapter->desired.rx_queues = channels->rx_count; adapter->desired.tx_queues = channels->tx_count; - ret = wait_for_reset(adapter); - - if (!ret && - (adapter->req_rx_queues != channels->rx_count || - adapter->req_tx_queues != channels->tx_count)) - netdev_info(netdev, - "Could not match full channels request. Requested: RX %d, TX %d; Allowed: RX %llu, TX %llu\n", - channels->rx_count, channels->tx_count, - adapter->req_rx_queues, adapter->req_tx_queues); - return ret; + return wait_for_reset(adapter); } static void ibmvnic_get_strings(struct net_device *dev, u32 stringset, u8 *data) @@ -3047,43 +3023,32 @@ struct ibmvnic_adapter *adapter = netdev_priv(dev); int i; - switch (stringset) { - case ETH_SS_STATS: - for (i = 0; i < ARRAY_SIZE(ibmvnic_stats); - i++, data += ETH_GSTRING_LEN) - memcpy(data, ibmvnic_stats[i].name, ETH_GSTRING_LEN); - - for (i = 0; i < adapter->req_tx_queues; i++) { - snprintf(data, ETH_GSTRING_LEN, "tx%d_packets", i); - data += ETH_GSTRING_LEN; - - snprintf(data, ETH_GSTRING_LEN, "tx%d_bytes", i); - data += ETH_GSTRING_LEN; - - snprintf(data, ETH_GSTRING_LEN, - "tx%d_dropped_packets", i); - data += ETH_GSTRING_LEN; - } - - for (i = 0; i < adapter->req_rx_queues; i++) { - snprintf(data, ETH_GSTRING_LEN, "rx%d_packets", i); - data += ETH_GSTRING_LEN; - - snprintf(data, ETH_GSTRING_LEN, "rx%d_bytes", i); - data += ETH_GSTRING_LEN; - - snprintf(data, ETH_GSTRING_LEN, "rx%d_interrupts", i); - data += ETH_GSTRING_LEN; - } - break; - - case ETH_SS_PRIV_FLAGS: - for (i = 0; i < ARRAY_SIZE(ibmvnic_priv_flags); i++) - strcpy(data + i * ETH_GSTRING_LEN, - ibmvnic_priv_flags[i]); - break; - default: + if (stringset != ETH_SS_STATS) return; + + for (i = 0; i < ARRAY_SIZE(ibmvnic_stats); i++, data += ETH_GSTRING_LEN) + memcpy(data, ibmvnic_stats[i].name, ETH_GSTRING_LEN); + + for (i = 0; i < adapter->req_tx_queues; i++) { + snprintf(data, ETH_GSTRING_LEN, "tx%d_packets", i); + data += ETH_GSTRING_LEN; + + snprintf(data, ETH_GSTRING_LEN, "tx%d_bytes", i); + data += ETH_GSTRING_LEN; + + snprintf(data, ETH_GSTRING_LEN, "tx%d_dropped_packets", i); + data += ETH_GSTRING_LEN; + } + + for (i = 0; i < adapter->req_rx_queues; i++) { + snprintf(data, ETH_GSTRING_LEN, "rx%d_packets", i); + data += ETH_GSTRING_LEN; + + snprintf(data, ETH_GSTRING_LEN, "rx%d_bytes", i); + data += ETH_GSTRING_LEN; + + snprintf(data, ETH_GSTRING_LEN, "rx%d_interrupts", i); + data += ETH_GSTRING_LEN; } } @@ -3096,8 +3061,6 @@ return ARRAY_SIZE(ibmvnic_stats) + adapter->req_tx_queues * NUM_TX_STATS + adapter->req_rx_queues * NUM_RX_STATS; - case ETH_SS_PRIV_FLAGS: - return ARRAY_SIZE(ibmvnic_priv_flags); default: return -EOPNOTSUPP; } @@ -3150,26 +3113,6 @@ } } -static u32 ibmvnic_get_priv_flags(struct net_device *netdev) -{ - struct ibmvnic_adapter *adapter = netdev_priv(netdev); - - return adapter->priv_flags; -} - -static int ibmvnic_set_priv_flags(struct net_device *netdev, u32 flags) -{ - struct ibmvnic_adapter *adapter = netdev_priv(netdev); - bool which_maxes = !!(flags & IBMVNIC_USE_SERVER_MAXES); - - if (which_maxes) - adapter->priv_flags |= IBMVNIC_USE_SERVER_MAXES; - else - adapter->priv_flags &= ~IBMVNIC_USE_SERVER_MAXES; - - return 0; -} - static const struct ethtool_ops ibmvnic_ethtool_ops = { .get_drvinfo = ibmvnic_get_drvinfo, .get_msglevel = ibmvnic_get_msglevel, @@ -3183,8 +3126,6 @@ .get_sset_count = ibmvnic_get_sset_count, .get_ethtool_stats = ibmvnic_get_ethtool_stats, .get_link_ksettings = ibmvnic_get_link_ksettings, - .get_priv_flags = ibmvnic_get_priv_flags, - .set_priv_flags = ibmvnic_set_priv_flags, }; /* Routines for managing CRQs/sCRQs */ diff -u linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/ibm/ibmvnic.h linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/ibm/ibmvnic.h --- linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/ibm/ibmvnic.h +++ linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/ibm/ibmvnic.h @@ -43,11 +43,6 @@ #define IBMVNIC_RESET_DELAY 100 -static const char ibmvnic_priv_flags[][ETH_GSTRING_LEN] = { -#define IBMVNIC_USE_SERVER_MAXES 0x1 - "use-server-maxes" -}; - struct ibmvnic_login_buffer { __be32 len; __be32 version; @@ -885,7 +880,6 @@ struct ibmvnic_control_ip_offload_buffer ip_offload_ctrl; dma_addr_t ip_offload_ctrl_tok; u32 msg_enable; - u32 priv_flags; /* Vital Product Data (VPD) */ struct ibmvnic_vpd *vpd; reverted: --- linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/intel/e1000e/hw.h +++ linux-intel-iotg-5.15-5.15.0.orig/drivers/net/ethernet/intel/e1000e/hw.h @@ -630,7 +630,6 @@ bool disable_polarity_correction; bool is_mdix; bool polarity_correction; - bool reset_disable; bool speed_downgraded; bool autoneg_wait_to_complete; }; diff -u linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/intel/e1000e/ich8lan.c linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/intel/e1000e/ich8lan.c --- linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/intel/e1000e/ich8lan.c +++ linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/intel/e1000e/ich8lan.c @@ -1009,8 +1009,8 @@ { u32 reg = link << (E1000_LTRV_REQ_SHIFT + E1000_LTRV_NOSNOOP_SHIFT) | link << E1000_LTRV_REQ_SHIFT | E1000_LTRV_SEND; - u16 max_ltr_enc_d = 0; /* maximum LTR decoded by platform */ - u16 lat_enc_d = 0; /* latency decoded */ + u32 max_ltr_enc_d = 0; /* maximum LTR decoded by platform */ + u32 lat_enc_d = 0; /* latency decoded */ u16 lat_enc = 0; /* latency encoded */ if (link) { @@ -2050,10 +2050,6 @@ bool blocked = false; int i = 0; - /* Check the PHY (LCD) reset flag */ - if (hw->phy.reset_disable) - return true; - while ((blocked = !(er32(FWSM) & E1000_ICH_FWSM_RSPCIPHY)) && (i++ < 30)) usleep_range(10000, 11000); reverted: --- linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/intel/e1000e/ich8lan.h +++ linux-intel-iotg-5.15-5.15.0.orig/drivers/net/ethernet/intel/e1000e/ich8lan.h @@ -271,7 +271,6 @@ #define I217_CGFREG_ENABLE_MTA_RESET 0x0002 #define I217_MEMPWR PHY_REG(772, 26) #define I217_MEMPWR_DISABLE_SMB_RELEASE 0x0010 -#define I217_MEMPWR_MOEM 0x1000 /* Receive Address Initial CRC Calculation */ #define E1000_PCH_RAICC(_n) (0x05F50 + ((_n) * 4)) diff -u linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/intel/e1000e/netdev.c linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/intel/e1000e/netdev.c --- linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/intel/e1000e/netdev.c +++ linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/intel/e1000e/netdev.c @@ -6499,6 +6499,10 @@ if (er32(FWSM) & E1000_ICH_FWSM_FW_VALID && hw->mac.type >= e1000_pch_adp) { + /* Keep the GPT clock enabled for CSME */ + mac_data = er32(FEXTNVM); + mac_data |= BIT(3); + ew32(FEXTNVM, mac_data); /* Request ME unconfigure the device from S0ix */ mac_data = er32(H2ME); mac_data &= ~E1000_H2ME_START_DPG; @@ -6992,21 +6996,8 @@ struct net_device *netdev = pci_get_drvdata(to_pci_dev(dev)); struct e1000_adapter *adapter = netdev_priv(netdev); struct pci_dev *pdev = to_pci_dev(dev); - struct e1000_hw *hw = &adapter->hw; - u16 phy_data; int rc; - if (er32(FWSM) & E1000_ICH_FWSM_FW_VALID && - hw->mac.type >= e1000_pch_adp) { - /* Mask OEM Bits / Gig Disable / Restart AN (772_26[12] = 1) */ - e1e_rphy(hw, I217_MEMPWR, &phy_data); - phy_data |= I217_MEMPWR_MOEM; - e1e_wphy(hw, I217_MEMPWR, phy_data); - - /* Disable LCD reset */ - hw->phy.reset_disable = true; - } - e1000e_flush_lpic(pdev); e1000e_pm_freeze(dev); @@ -7028,8 +7019,6 @@ struct net_device *netdev = pci_get_drvdata(to_pci_dev(dev)); struct e1000_adapter *adapter = netdev_priv(netdev); struct pci_dev *pdev = to_pci_dev(dev); - struct e1000_hw *hw = &adapter->hw; - u16 phy_data; int rc; /* Introduce S0ix implementation */ @@ -7040,17 +7029,6 @@ if (rc) return rc; - if (er32(FWSM) & E1000_ICH_FWSM_FW_VALID && - hw->mac.type >= e1000_pch_adp) { - /* Unmask OEM Bits / Gig Disable / Restart AN 772_26[12] = 0 */ - e1e_rphy(hw, I217_MEMPWR, &phy_data); - phy_data &= ~I217_MEMPWR_MOEM; - e1e_wphy(hw, I217_MEMPWR, phy_data); - - /* Enable LCD reset */ - hw->phy.reset_disable = false; - } - return e1000e_pm_thaw(dev); } diff -u linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/intel/i40e/i40e_main.c linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/intel/i40e/i40e_main.c --- linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/intel/i40e/i40e_main.c +++ linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/intel/i40e/i40e_main.c @@ -7535,42 +7535,43 @@ static int i40e_fwd_ring_up(struct i40e_vsi *vsi, struct net_device *vdev, struct i40e_fwd_adapter *fwd) { + struct i40e_channel *ch = NULL, *ch_tmp, *iter; int ret = 0, num_tc = 1, i, aq_err; - struct i40e_channel *ch, *ch_tmp; struct i40e_pf *pf = vsi->back; struct i40e_hw *hw = &pf->hw; - if (list_empty(&vsi->macvlan_list)) - return -EINVAL; - /* Go through the list and find an available channel */ - list_for_each_entry_safe(ch, ch_tmp, &vsi->macvlan_list, list) { - if (!i40e_is_channel_macvlan(ch)) { - ch->fwd = fwd; + list_for_each_entry_safe(iter, ch_tmp, &vsi->macvlan_list, list) { + if (!i40e_is_channel_macvlan(iter)) { + iter->fwd = fwd; /* record configuration for macvlan interface in vdev */ for (i = 0; i < num_tc; i++) netdev_bind_sb_channel_queue(vsi->netdev, vdev, i, - ch->num_queue_pairs, - ch->base_queue); - for (i = 0; i < ch->num_queue_pairs; i++) { + iter->num_queue_pairs, + iter->base_queue); + for (i = 0; i < iter->num_queue_pairs; i++) { struct i40e_ring *tx_ring, *rx_ring; u16 pf_q; - pf_q = ch->base_queue + i; + pf_q = iter->base_queue + i; /* Get to TX ring ptr */ tx_ring = vsi->tx_rings[pf_q]; - tx_ring->ch = ch; + tx_ring->ch = iter; /* Get the RX ring ptr */ rx_ring = vsi->rx_rings[pf_q]; - rx_ring->ch = ch; + rx_ring->ch = iter; } + ch = iter; break; } } + if (!ch) + return -EINVAL; + /* Guarantee all rings are updated before we update the * MAC address filter. */ diff -u linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/intel/ice/ice.h linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/intel/ice/ice.h --- linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/intel/ice/ice.h +++ linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/intel/ice/ice.h @@ -452,6 +452,7 @@ struct mutex avail_q_mutex; /* protects access to avail_[rx|tx]qs */ struct mutex sw_mutex; /* lock for protecting VSI alloc flow */ struct mutex tc_mutex; /* lock to protect TC changes */ + struct mutex adev_mutex; /* lock to protect aux device access */ u32 msg_enable; struct ice_ptp ptp; u16 num_rdma_msix; /* Total MSIX vectors for RDMA driver */ diff -u linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/intel/ice/ice_base.c linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/intel/ice/ice_base.c --- linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/intel/ice/ice_base.c +++ linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/intel/ice/ice_base.c @@ -115,6 +115,8 @@ q_vector->rx.itr_setting = ICE_DFLT_RX_ITR; q_vector->tx.itr_mode = ITR_DYNAMIC; q_vector->rx.itr_mode = ITR_DYNAMIC; + q_vector->tx.type = ICE_TX_CONTAINER; + q_vector->rx.type = ICE_RX_CONTAINER; if (vsi->type == ICE_VSI_VF) goto out; diff -u linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/intel/ice/ice_ethtool.c linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/intel/ice/ice_ethtool.c --- linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/intel/ice/ice_ethtool.c +++ linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/intel/ice/ice_ethtool.c @@ -3466,15 +3466,9 @@ return 0; } -enum ice_container_type { - ICE_RX_CONTAINER, - ICE_TX_CONTAINER, -}; - /** * ice_get_rc_coalesce - get ITR values for specific ring container * @ec: ethtool structure to fill with driver's coalesce settings - * @c_type: container type, Rx or Tx * @rc: ring container that the ITR values will come from * * Query the device for ice_ring_container specific ITR values. This is @@ -3484,13 +3478,12 @@ * Returns 0 on success, negative otherwise. */ static int -ice_get_rc_coalesce(struct ethtool_coalesce *ec, enum ice_container_type c_type, - struct ice_ring_container *rc) +ice_get_rc_coalesce(struct ethtool_coalesce *ec, struct ice_ring_container *rc) { if (!rc->ring) return -EINVAL; - switch (c_type) { + switch (rc->type) { case ICE_RX_CONTAINER: ec->use_adaptive_rx_coalesce = ITR_IS_DYNAMIC(rc); ec->rx_coalesce_usecs = rc->itr_setting; @@ -3501,7 +3494,7 @@ ec->tx_coalesce_usecs = rc->itr_setting; break; default: - dev_dbg(ice_pf_to_dev(rc->ring->vsi->back), "Invalid c_type %d\n", c_type); + dev_dbg(ice_pf_to_dev(rc->ring->vsi->back), "Invalid c_type %d\n", rc->type); return -EINVAL; } @@ -3522,18 +3515,18 @@ ice_get_q_coalesce(struct ice_vsi *vsi, struct ethtool_coalesce *ec, int q_num) { if (q_num < vsi->num_rxq && q_num < vsi->num_txq) { - if (ice_get_rc_coalesce(ec, ICE_RX_CONTAINER, + if (ice_get_rc_coalesce(ec, &vsi->rx_rings[q_num]->q_vector->rx)) return -EINVAL; - if (ice_get_rc_coalesce(ec, ICE_TX_CONTAINER, + if (ice_get_rc_coalesce(ec, &vsi->tx_rings[q_num]->q_vector->tx)) return -EINVAL; } else if (q_num < vsi->num_rxq) { - if (ice_get_rc_coalesce(ec, ICE_RX_CONTAINER, + if (ice_get_rc_coalesce(ec, &vsi->rx_rings[q_num]->q_vector->rx)) return -EINVAL; } else if (q_num < vsi->num_txq) { - if (ice_get_rc_coalesce(ec, ICE_TX_CONTAINER, + if (ice_get_rc_coalesce(ec, &vsi->tx_rings[q_num]->q_vector->tx)) return -EINVAL; } else { @@ -3585,7 +3578,6 @@ /** * ice_set_rc_coalesce - set ITR values for specific ring container - * @c_type: container type, Rx or Tx * @ec: ethtool structure from user to update ITR settings * @rc: ring container that the ITR values will come from * @vsi: VSI associated to the ring container @@ -3597,10 +3589,10 @@ * Returns 0 on success, negative otherwise. */ static int -ice_set_rc_coalesce(enum ice_container_type c_type, struct ethtool_coalesce *ec, +ice_set_rc_coalesce(struct ethtool_coalesce *ec, struct ice_ring_container *rc, struct ice_vsi *vsi) { - const char *c_type_str = (c_type == ICE_RX_CONTAINER) ? "rx" : "tx"; + const char *c_type_str = (rc->type == ICE_RX_CONTAINER) ? "rx" : "tx"; u32 use_adaptive_coalesce, coalesce_usecs; struct ice_pf *pf = vsi->back; u16 itr_setting; @@ -3608,7 +3600,7 @@ if (!rc->ring) return -EINVAL; - switch (c_type) { + switch (rc->type) { case ICE_RX_CONTAINER: if (ec->rx_coalesce_usecs_high > ICE_MAX_INTRL || (ec->rx_coalesce_usecs_high && @@ -3641,7 +3633,7 @@ break; default: dev_dbg(ice_pf_to_dev(pf), "Invalid container type %d\n", - c_type); + rc->type); return -EINVAL; } @@ -3690,22 +3682,22 @@ ice_set_q_coalesce(struct ice_vsi *vsi, struct ethtool_coalesce *ec, int q_num) { if (q_num < vsi->num_rxq && q_num < vsi->num_txq) { - if (ice_set_rc_coalesce(ICE_RX_CONTAINER, ec, + if (ice_set_rc_coalesce(ec, &vsi->rx_rings[q_num]->q_vector->rx, vsi)) return -EINVAL; - if (ice_set_rc_coalesce(ICE_TX_CONTAINER, ec, + if (ice_set_rc_coalesce(ec, &vsi->tx_rings[q_num]->q_vector->tx, vsi)) return -EINVAL; } else if (q_num < vsi->num_rxq) { - if (ice_set_rc_coalesce(ICE_RX_CONTAINER, ec, + if (ice_set_rc_coalesce(ec, &vsi->rx_rings[q_num]->q_vector->rx, vsi)) return -EINVAL; } else if (q_num < vsi->num_txq) { - if (ice_set_rc_coalesce(ICE_TX_CONTAINER, ec, + if (ice_set_rc_coalesce(ec, &vsi->tx_rings[q_num]->q_vector->tx, vsi)) return -EINVAL; diff -u linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/intel/ice/ice_idc.c linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/intel/ice/ice_idc.c --- linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/intel/ice/ice_idc.c +++ linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/intel/ice/ice_idc.c @@ -37,14 +37,17 @@ if (WARN_ON_ONCE(!in_task())) return; + mutex_lock(&pf->adev_mutex); if (!pf->adev) - return; + goto finish; device_lock(&pf->adev->dev); iadrv = ice_get_auxiliary_drv(pf); if (iadrv && iadrv->event_handler) iadrv->event_handler(pf, event); device_unlock(&pf->adev->dev); +finish: + mutex_unlock(&pf->adev_mutex); } /** @@ -285,7 +288,6 @@ return -ENOMEM; adev = &iadev->adev; - pf->adev = adev; iadev->pf = pf; adev->id = pf->aux_idx; @@ -295,18 +297,20 @@ ret = auxiliary_device_init(adev); if (ret) { - pf->adev = NULL; kfree(iadev); return ret; } ret = auxiliary_device_add(adev); if (ret) { - pf->adev = NULL; auxiliary_device_uninit(adev); return ret; } + mutex_lock(&pf->adev_mutex); + pf->adev = adev; + mutex_unlock(&pf->adev_mutex); + return 0; } @@ -315,12 +319,17 @@ */ void ice_unplug_aux_dev(struct ice_pf *pf) { - if (!pf->adev) - return; + struct auxiliary_device *adev; - auxiliary_device_delete(pf->adev); - auxiliary_device_uninit(pf->adev); + mutex_lock(&pf->adev_mutex); + adev = pf->adev; pf->adev = NULL; + mutex_unlock(&pf->adev_mutex); + + if (adev) { + auxiliary_device_delete(adev); + auxiliary_device_uninit(adev); + } } /** diff -u linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/intel/ice/ice_lib.c linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/intel/ice/ice_lib.c --- linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/intel/ice/ice_lib.c +++ linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/intel/ice/ice_lib.c @@ -2980,8 +2980,8 @@ ice_for_each_q_vector(vsi, i) { struct ice_q_vector *q_vector = vsi->q_vectors[i]; - coalesce[i].itr_tx = q_vector->tx.itr_setting; - coalesce[i].itr_rx = q_vector->rx.itr_setting; + coalesce[i].itr_tx = q_vector->tx.itr_settings; + coalesce[i].itr_rx = q_vector->rx.itr_settings; coalesce[i].intrl = q_vector->intrl; if (i < vsi->num_txq) @@ -3037,21 +3037,21 @@ */ if (i < vsi->alloc_rxq && coalesce[i].rx_valid) { rc = &vsi->q_vectors[i]->rx; - rc->itr_setting = coalesce[i].itr_rx; + rc->itr_settings = coalesce[i].itr_rx; ice_write_itr(rc, rc->itr_setting); } else if (i < vsi->alloc_rxq) { rc = &vsi->q_vectors[i]->rx; - rc->itr_setting = coalesce[0].itr_rx; + rc->itr_settings = coalesce[0].itr_rx; ice_write_itr(rc, rc->itr_setting); } if (i < vsi->alloc_txq && coalesce[i].tx_valid) { rc = &vsi->q_vectors[i]->tx; - rc->itr_setting = coalesce[i].itr_tx; + rc->itr_settings = coalesce[i].itr_tx; ice_write_itr(rc, rc->itr_setting); } else if (i < vsi->alloc_txq) { rc = &vsi->q_vectors[i]->tx; - rc->itr_setting = coalesce[0].itr_tx; + rc->itr_settings = coalesce[0].itr_tx; ice_write_itr(rc, rc->itr_setting); } @@ -3065,12 +3065,12 @@ for (; i < vsi->num_q_vectors; i++) { /* transmit */ rc = &vsi->q_vectors[i]->tx; - rc->itr_setting = coalesce[0].itr_tx; + rc->itr_settings = coalesce[0].itr_tx; ice_write_itr(rc, rc->itr_setting); /* receive */ rc = &vsi->q_vectors[i]->rx; - rc->itr_setting = coalesce[0].itr_rx; + rc->itr_settings = coalesce[0].itr_rx; ice_write_itr(rc, rc->itr_setting); vsi->q_vectors[i]->intrl = coalesce[0].intrl; diff -u linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/intel/ice/ice_main.c linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/intel/ice/ice_main.c --- linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/intel/ice/ice_main.c +++ linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/intel/ice/ice_main.c @@ -3447,6 +3447,7 @@ static void ice_deinit_pf(struct ice_pf *pf) { ice_service_task_stop(pf); + mutex_destroy(&pf->adev_mutex); mutex_destroy(&pf->sw_mutex); mutex_destroy(&pf->tc_mutex); mutex_destroy(&pf->avail_q_mutex); @@ -3527,6 +3528,7 @@ mutex_init(&pf->sw_mutex); mutex_init(&pf->tc_mutex); + mutex_init(&pf->adev_mutex); INIT_HLIST_HEAD(&pf->aq_wait_list); spin_lock_init(&pf->aq_wait_lock); @@ -5654,9 +5656,10 @@ netif_carrier_on(vsi->netdev); } - /* clear this now, and the first stats read will be used as baseline */ - vsi->stat_offsets_loaded = false; - + /* Perform an initial read of the statistics registers now to + * set the baseline so counters are ready when interface is up + */ + ice_update_eth_stats(vsi); ice_service_task_schedule(pf); return 0; diff -u linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/intel/ice/ice_ptp.c linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/intel/ice/ice_ptp.c --- linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/intel/ice/ice_ptp.c +++ linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/intel/ice/ice_ptp.c @@ -254,12 +254,19 @@ * This function must be called periodically to ensure that the cached value * is never more than 2 seconds old. It must also be called whenever the PHC * time has been changed. + * + * Return: + * * 0 - OK, successfully updated + * * -EAGAIN - PF was busy, need to reschedule the update */ -static void ice_ptp_update_cached_phctime(struct ice_pf *pf) +static int ice_ptp_update_cached_phctime(struct ice_pf *pf) { u64 systime; int i; + if (test_and_set_bit(ICE_CFG_BUSY, pf->state)) + return -EAGAIN; + /* Read the current PHC time */ systime = ice_ptp_read_src_clk_reg(pf, NULL); @@ -282,6 +289,9 @@ WRITE_ONCE(vsi->rx_rings[j]->cached_phctime, systime); } } + clear_bit(ICE_CFG_BUSY, pf->state); + + return 0; } /** @@ -1375,6 +1385,7 @@ /** * ice_ptp_tx_tstamp_cleanup - Cleanup old timestamp requests that got dropped + * @hw: pointer to the hw struct * @tx: PTP Tx tracker to clean up * * Loop through the Tx timestamp requests and see if any of them have been @@ -1383,7 +1394,7 @@ * timestamp will never be captured. This might happen if the packet gets * discarded before it reaches the PHY timestamping block. */ -static void ice_ptp_tx_tstamp_cleanup(struct ice_ptp_tx *tx) +static void ice_ptp_tx_tstamp_cleanup(struct ice_hw *hw, struct ice_ptp_tx *tx) { u8 idx; @@ -1392,11 +1403,16 @@ for_each_set_bit(idx, tx->in_use, tx->len) { struct sk_buff *skb; + u64 raw_tstamp; /* Check if this SKB has been waiting for too long */ if (time_is_after_jiffies(tx->tstamps[idx].start + 2 * HZ)) continue; + /* Read tstamp to be able to use this register again */ + ice_read_phy_tstamp(hw, tx->quad, idx + tx->quad_offset, + &raw_tstamp); + spin_lock(&tx->lock); skb = tx->tstamps[idx].skb; tx->tstamps[idx].skb = NULL; @@ -1412,17 +1428,18 @@ { struct ice_ptp *ptp = container_of(work, struct ice_ptp, work.work); struct ice_pf *pf = container_of(ptp, struct ice_pf, ptp); + int err; if (!test_bit(ICE_FLAG_PTP, pf->flags)) return; - ice_ptp_update_cached_phctime(pf); + err = ice_ptp_update_cached_phctime(pf); - ice_ptp_tx_tstamp_cleanup(&pf->ptp.port.tx); + ice_ptp_tx_tstamp_cleanup(&pf->hw, &pf->ptp.port.tx); - /* Run twice a second */ + /* Run twice a second or reschedule if phc update failed */ kthread_queue_delayed_work(ptp->kworker, &ptp->work, - msecs_to_jiffies(500)); + msecs_to_jiffies(err ? 10 : 500)); } /** diff -u linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/intel/ice/ice_txrx.h linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/intel/ice/ice_txrx.h --- linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/intel/ice/ice_txrx.h +++ linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/intel/ice/ice_txrx.h @@ -332,6 +332,11 @@ return !!(ring->flags & ICE_TX_FLAGS_RING_XDP); } +enum ice_container_type { + ICE_RX_CONTAINER, + ICE_TX_CONTAINER, +}; + struct ice_ring_container { /* head of linked-list of rings */ struct ice_ring *ring; @@ -340,9 +345,15 @@ /* this matches the maximum number of ITR bits, but in usec * values, so it is shifted left one bit (bit zero is ignored) */ - u16 itr_setting:13; - u16 itr_reserved:2; - u16 itr_mode:1; + union { + struct { + u16 itr_setting:13; + u16 itr_reserved:2; + u16 itr_mode:1; + }; + u16 itr_settings; + }; + enum ice_container_type type; }; struct ice_coalesce_stored { diff -u linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/intel/ice/ice_xsk.c linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/intel/ice/ice_xsk.c --- linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/intel/ice/ice_xsk.c +++ linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/intel/ice/ice_xsk.c @@ -378,7 +378,7 @@ do { *xdp = xsk_buff_alloc(rx_ring->xsk_pool); - if (!xdp) { + if (!*xdp) { ok = false; break; } diff -u linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/intel/igb/igb_main.c linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/intel/igb/igb_main.c --- linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/intel/igb/igb_main.c +++ linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/intel/igb/igb_main.c @@ -5505,7 +5505,8 @@ break; } - if (adapter->link_speed != SPEED_1000) + if (adapter->link_speed != SPEED_1000 || + !hw->phy.ops.read_reg) goto no_wait; /* wait for Remote receiver status OK */ @@ -9819,11 +9820,10 @@ struct e1000_hw *hw = &adapter->hw; u32 dmac_thr; u16 hwm; + u32 reg; if (hw->mac.type > e1000_82580) { if (adapter->flags & IGB_FLAG_DMAC) { - u32 reg; - /* force threshold to 0. */ wr32(E1000_DMCTXTH, 0); @@ -9856,7 +9856,6 @@ /* Disable BMC-to-OS Watchdog Enable */ if (hw->mac.type != e1000_i354) reg &= ~E1000_DMACR_DC_BMC2OSW_EN; - wr32(E1000_DMACR, reg); /* no lower threshold to disable @@ -9873,12 +9872,12 @@ */ wr32(E1000_DMCTXTH, (IGB_MIN_TXPBSIZE - (IGB_TX_BUF_4096 + adapter->max_frame_size)) >> 6); + } - /* make low power state decision controlled - * by DMA coal - */ + if (hw->mac.type >= e1000_i210 || + (adapter->flags & IGB_FLAG_DMAC)) { reg = rd32(E1000_PCIEMISC); - reg &= ~E1000_PCIEMISC_LX_DECISION; + reg |= E1000_PCIEMISC_LX_DECISION; wr32(E1000_PCIEMISC, reg); } /* endif adapter->dmac is not disabled */ } else if (hw->mac.type == e1000_82580) { diff -u linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/intel/igc/igc_i225.c linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/intel/igc/igc_i225.c --- linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/intel/igc/igc_i225.c +++ linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/intel/igc/igc_i225.c @@ -156,8 +156,15 @@ { u32 swfw_sync; - while (igc_get_hw_semaphore_i225(hw)) - ; /* Empty */ + /* Releasing the resource requires first getting the HW semaphore. + * If we fail to get the semaphore, there is nothing we can do, + * except log an error and quit. We are not allowed to hang here + * indefinitely, as it may cause denial of service or system crash. + */ + if (igc_get_hw_semaphore_i225(hw)) { + hw_dbg("Failed to release SW_FW_SYNC.\n"); + return; + } swfw_sync = rd32(IGC_SW_FW_SYNC); swfw_sync &= ~mask; diff -u linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/intel/igc/igc_main.c linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/intel/igc/igc_main.c --- linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/intel/igc/igc_main.c +++ linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/intel/igc/igc_main.c @@ -6373,6 +6373,9 @@ memcpy(&hw->mac.ops, ei->mac_ops, sizeof(hw->mac.ops)); memcpy(&hw->phy.ops, ei->phy_ops, sizeof(hw->phy.ops)); + if (pci_is_thunderbolt_attached(pdev)) + msleep(600); + /* Initialize skew-specific constants */ err = ei->get_invariants(hw); if (err) diff -u linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/intel/igc/igc_phy.c linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/intel/igc/igc_phy.c --- linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/intel/igc/igc_phy.c +++ linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/intel/igc/igc_phy.c @@ -581,7 +581,7 @@ * the lower time out */ for (i = 0; i < IGC_GEN_POLL_TIMEOUT; i++) { - usleep_range(500, 1000); + udelay(50); mdic = rd32(IGC_MDIC); if (mdic & IGC_MDIC_READY) break; @@ -638,7 +638,7 @@ * the lower time out */ for (i = 0; i < IGC_GEN_POLL_TIMEOUT; i++) { - usleep_range(500, 1000); + udelay(50); mdic = rd32(IGC_MDIC); if (mdic & IGC_MDIC_READY) break; diff -u linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/intel/igc/igc_ptp.c linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/intel/igc/igc_ptp.c --- linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/intel/igc/igc_ptp.c +++ linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/intel/igc/igc_ptp.c @@ -1076,6 +1076,17 @@ igc_ptp_write_i225(adapter, &ts); } +static void igc_ptm_stop(struct igc_adapter *adapter) +{ + struct igc_hw *hw = &adapter->hw; + u32 ctrl; + + ctrl = rd32(IGC_PTM_CTRL); + ctrl &= ~IGC_PTM_CTRL_EN; + + wr32(IGC_PTM_CTRL, ctrl); +} + /** * igc_ptp_suspend - Disable PTP work items and prepare for suspend * @adapter: Board private structure @@ -1098,8 +1109,10 @@ spin_unlock(&adapter->ptp_tx_lock); - if (pci_device_is_present(adapter->pdev)) + if (pci_device_is_present(adapter->pdev)) { igc_ptp_time_save(adapter); + igc_ptm_stop(adapter); + } } /** diff -u linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/intel/ixgbe/ixgbe_main.c linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/intel/ixgbe/ixgbe_main.c --- linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/intel/ixgbe/ixgbe_main.c +++ linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/intel/ixgbe/ixgbe_main.c @@ -5682,6 +5682,9 @@ ctrl_ext = IXGBE_READ_REG(hw, IXGBE_CTRL_EXT); ctrl_ext |= IXGBE_CTRL_EXT_PFRSTD; IXGBE_WRITE_REG(hw, IXGBE_CTRL_EXT, ctrl_ext); + + /* update setting rx tx for all active vfs */ + ixgbe_set_all_vfs(adapter); } void ixgbe_reinit_locked(struct ixgbe_adapter *adapter) @@ -6139,11 +6142,8 @@ for (i = 0 ; i < adapter->num_vfs; i++) adapter->vfinfo[i].clear_to_send = false; - /* ping all the active vfs to let them know we are going down */ - ixgbe_ping_all_vfs(adapter); - - /* Disable all VFTE/VFRE TX/RX */ - ixgbe_disable_tx_rx(adapter); + /* update setting rx tx for all active vfs */ + ixgbe_set_all_vfs(adapter); } /* disable transmits in the hardware now that interrupts are off */ @@ -7608,6 +7608,27 @@ } #ifdef CONFIG_PCI_IOV +static void ixgbe_bad_vf_abort(struct ixgbe_adapter *adapter, u32 vf) +{ + struct ixgbe_hw *hw = &adapter->hw; + + if (adapter->hw.mac.type == ixgbe_mac_82599EB && + adapter->flags2 & IXGBE_FLAG2_AUTO_DISABLE_VF) { + adapter->vfinfo[vf].primary_abort_count++; + if (adapter->vfinfo[vf].primary_abort_count == + IXGBE_PRIMARY_ABORT_LIMIT) { + ixgbe_set_vf_link_state(adapter, vf, + IFLA_VF_LINK_STATE_DISABLE); + adapter->vfinfo[vf].primary_abort_count = 0; + + e_info(drv, + "Malicious Driver Detection event detected on PF %d VF %d MAC: %pM mdd-disable-vf=on", + hw->bus.func, vf, + adapter->vfinfo[vf].vf_mac_addresses); + } + } +} + static void ixgbe_check_for_bad_vf(struct ixgbe_adapter *adapter) { struct ixgbe_hw *hw = &adapter->hw; @@ -7639,8 +7660,10 @@ continue; pci_read_config_word(vfdev, PCI_STATUS, &status_reg); if (status_reg != IXGBE_FAILED_READ_CFG_WORD && - status_reg & PCI_STATUS_REC_MASTER_ABORT) + status_reg & PCI_STATUS_REC_MASTER_ABORT) { + ixgbe_bad_vf_abort(adapter, vf); pcie_flr(vfdev); + } } } @@ -10260,6 +10283,7 @@ .ndo_set_vf_vlan = ixgbe_ndo_set_vf_vlan, .ndo_set_vf_rate = ixgbe_ndo_set_vf_bw, .ndo_set_vf_spoofchk = ixgbe_ndo_set_vf_spoofchk, + .ndo_set_vf_link_state = ixgbe_ndo_set_vf_link_state, .ndo_set_vf_rss_query_en = ixgbe_ndo_set_vf_rss_query_en, .ndo_set_vf_trust = ixgbe_ndo_set_vf_trust, .ndo_get_vf_config = ixgbe_ndo_get_vf_config, @@ -10726,6 +10750,9 @@ if (err) goto err_sw_init; + if (adapter->hw.mac.type == ixgbe_mac_82599EB) + adapter->flags2 |= IXGBE_FLAG2_AUTO_DISABLE_VF; + switch (adapter->hw.mac.type) { case ixgbe_mac_X550: case ixgbe_mac_X550EM_x: diff -u linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/intel/ixgbevf/ixgbevf_main.c linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/intel/ixgbevf/ixgbevf_main.c --- linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/intel/ixgbevf/ixgbevf_main.c +++ linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/intel/ixgbevf/ixgbevf_main.c @@ -2291,7 +2291,9 @@ static void ixgbevf_up_complete(struct ixgbevf_adapter *adapter) { struct net_device *netdev = adapter->netdev; + struct pci_dev *pdev = adapter->pdev; struct ixgbe_hw *hw = &adapter->hw; + bool state; ixgbevf_configure_msix(adapter); @@ -2304,6 +2306,11 @@ spin_unlock_bh(&adapter->mbx_lock); + state = adapter->link_state; + hw->mac.ops.get_link_state(hw, &adapter->link_state); + if (state && state != adapter->link_state) + dev_info(&pdev->dev, "VF is administratively disabled\n"); + smp_mb__before_atomic(); clear_bit(__IXGBEVF_DOWN, &adapter->state); ixgbevf_napi_enable_all(adapter); @@ -3073,6 +3080,8 @@ adapter->tx_ring_count = IXGBEVF_DEFAULT_TXD; adapter->rx_ring_count = IXGBEVF_DEFAULT_RXD; + adapter->link_state = true; + set_bit(__IXGBEVF_DOWN, &adapter->state); return 0; @@ -3305,7 +3314,7 @@ ixgbevf_watchdog_update_link(adapter); - if (adapter->link_up) + if (adapter->link_up && adapter->link_state) ixgbevf_watchdog_link_is_up(adapter); else ixgbevf_watchdog_link_is_down(adapter); diff -u linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/mellanox/mlx5/core/en/tc_ct.c linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/mellanox/mlx5/core/en/tc_ct.c --- linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/mellanox/mlx5/core/en/tc_ct.c +++ linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/mellanox/mlx5/core/en/tc_ct.c @@ -1699,6 +1699,8 @@ static void mlx5_tc_ct_del_ft_cb(struct mlx5_tc_ct_priv *ct_priv, struct mlx5_ct_ft *ft) { + struct mlx5e_priv *priv; + if (!refcount_dec_and_test(&ft->refcount)) return; @@ -1708,6 +1710,8 @@ rhashtable_free_and_destroy(&ft->ct_entries_ht, mlx5_tc_ct_flush_ft_entry, ct_priv); + priv = netdev_priv(ct_priv->netdev); + flush_workqueue(priv->wq); mlx5_tc_ct_free_pre_ct_tables(ft); mapping_remove(ct_priv->zone_mapping, ft->zone_restore_id); kfree(ft); diff -u linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/mellanox/mlx5/core/en_main.c linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/mellanox/mlx5/core/en_main.c --- linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/mellanox/mlx5/core/en_main.c +++ linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/mellanox/mlx5/core/en_main.c @@ -3542,6 +3542,13 @@ } } + if (params->xdp_prog) { + if (features & NETIF_F_LRO) { + netdev_warn(netdev, "LRO is incompatible with XDP\n"); + features &= ~NETIF_F_LRO; + } + } + if (MLX5E_GET_PFLAG(params, MLX5E_PFLAG_RX_CQE_COMPRESS)) { features &= ~NETIF_F_RXHASH; if (netdev->features & NETIF_F_RXHASH) diff -u linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/mellanox/mlx5/core/en_tc.c linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/mellanox/mlx5/core/en_tc.c --- linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/mellanox/mlx5/core/en_tc.c +++ linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/mellanox/mlx5/core/en_tc.c @@ -2291,6 +2291,17 @@ match.key->vlan_priority); *match_level = MLX5_MATCH_L2; + + if (!flow_rule_match_key(rule, FLOW_DISSECTOR_KEY_CVLAN) && + match.mask->vlan_eth_type && + MLX5_CAP_FLOWTABLE_TYPE(priv->mdev, + ft_field_support.outer_second_vid, + fs_type)) { + MLX5_SET(fte_match_set_misc, misc_c, + outer_second_cvlan_tag, 1); + spec->match_criteria_enable |= + MLX5_MATCH_MISC_PARAMETERS; + } } } else if (*match_level != MLX5_MATCH_NONE) { /* cvlan_tag enabled in match criteria and @@ -4982,6 +4993,33 @@ return tc_tbl_size; } +static int mlx5e_tc_nic_create_miss_table(struct mlx5e_priv *priv) +{ + struct mlx5_flow_table **ft = &priv->fs.tc.miss_t; + struct mlx5_flow_table_attr ft_attr = {}; + struct mlx5_flow_namespace *ns; + int err = 0; + + ft_attr.max_fte = 1; + ft_attr.autogroup.max_num_groups = 1; + ft_attr.level = MLX5E_TC_MISS_LEVEL; + ft_attr.prio = 0; + ns = mlx5_get_flow_namespace(priv->mdev, MLX5_FLOW_NAMESPACE_KERNEL); + + *ft = mlx5_create_auto_grouped_flow_table(ns, &ft_attr); + if (IS_ERR(*ft)) { + err = PTR_ERR(*ft); + netdev_err(priv->netdev, "failed to create tc nic miss table err=%d\n", err); + } + + return err; +} + +static void mlx5e_tc_nic_destroy_miss_table(struct mlx5e_priv *priv) +{ + mlx5_destroy_flow_table(priv->fs.tc.miss_t); +} + int mlx5e_tc_nic_init(struct mlx5e_priv *priv) { struct mlx5e_tc_table *tc = &priv->fs.tc; @@ -5014,19 +5052,23 @@ } tc->mapping = chains_mapping; + err = mlx5e_tc_nic_create_miss_table(priv); + if (err) + goto err_chains; + if (MLX5_CAP_FLOWTABLE_NIC_RX(priv->mdev, ignore_flow_level)) attr.flags = MLX5_CHAINS_AND_PRIOS_SUPPORTED | MLX5_CHAINS_IGNORE_FLOW_LEVEL_SUPPORTED; attr.ns = MLX5_FLOW_NAMESPACE_KERNEL; attr.max_ft_sz = mlx5e_tc_nic_get_ft_size(dev); attr.max_grp_num = MLX5E_TC_TABLE_NUM_GROUPS; - attr.default_ft = mlx5e_vlan_get_flowtable(priv->fs.vlan); + attr.default_ft = priv->fs.tc.miss_t; attr.mapping = chains_mapping; tc->chains = mlx5_chains_create(dev, &attr); if (IS_ERR(tc->chains)) { err = PTR_ERR(tc->chains); - goto err_chains; + goto err_miss; } tc->post_act = mlx5e_tc_post_act_init(priv, tc->chains, MLX5_FLOW_NAMESPACE_KERNEL); @@ -5049,6 +5091,8 @@ mlx5_tc_ct_clean(tc->ct); mlx5e_tc_post_act_destroy(tc->post_act); mlx5_chains_destroy(tc->chains); +err_miss: + mlx5e_tc_nic_destroy_miss_table(priv); err_chains: mapping_destroy(chains_mapping); err_mapping: @@ -5089,6 +5133,7 @@ mlx5e_tc_post_act_destroy(tc->post_act); mapping_destroy(tc->mapping); mlx5_chains_destroy(tc->chains); + mlx5e_tc_nic_destroy_miss_table(priv); } int mlx5e_tc_esw_init(struct rhashtable *tc_ht) diff -u linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/mellanox/mlx5/core/fs_core.c linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/mellanox/mlx5/core/fs_core.c --- linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/mellanox/mlx5/core/fs_core.c +++ linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/mellanox/mlx5/core/fs_core.c @@ -113,7 +113,7 @@ #define KERNEL_MIN_LEVEL (KERNEL_NIC_PRIO_NUM_LEVELS + 1) #define KERNEL_NIC_TC_NUM_PRIOS 1 -#define KERNEL_NIC_TC_NUM_LEVELS 2 +#define KERNEL_NIC_TC_NUM_LEVELS 3 #define ANCHOR_NUM_LEVELS 1 #define ANCHOR_NUM_PRIOS 1 @@ -2032,16 +2032,16 @@ down_write_ref_node(&fte->node, false); for (i = handle->num_rules - 1; i >= 0; i--) tree_remove_node(&handle->rule[i]->node, true); - if (fte->dests_size) { - if (fte->modify_mask) - modify_fte(fte); - up_write_ref_node(&fte->node, false); - } else if (list_empty(&fte->node.children)) { + if (list_empty(&fte->node.children)) { del_hw_fte(&fte->node); /* Avoid double call to del_hw_fte */ fte->node.del_hw_func = NULL; up_write_ref_node(&fte->node, false); tree_put_node(&fte->node, false); + } else if (fte->dests_size) { + if (fte->modify_mask) + modify_fte(fte); + up_write_ref_node(&fte->node, false); } else { up_write_ref_node(&fte->node, false); } diff -u linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/mellanox/mlx5/core/fw_reset.c linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/mellanox/mlx5/core/fw_reset.c --- linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/mellanox/mlx5/core/fw_reset.c +++ linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/mellanox/mlx5/core/fw_reset.c @@ -111,6 +111,28 @@ } } +static void mlx5_stop_sync_reset_poll(struct mlx5_core_dev *dev) +{ + struct mlx5_fw_reset *fw_reset = dev->priv.fw_reset; + + del_timer_sync(&fw_reset->timer); +} + +static int mlx5_sync_reset_clear_reset_requested(struct mlx5_core_dev *dev, bool poll_health) +{ + struct mlx5_fw_reset *fw_reset = dev->priv.fw_reset; + + if (!test_and_clear_bit(MLX5_FW_RESET_FLAGS_RESET_REQUESTED, &fw_reset->reset_flags)) { + mlx5_core_warn(dev, "Reset request was already cleared\n"); + return -EALREADY; + } + + mlx5_stop_sync_reset_poll(dev); + if (poll_health) + mlx5_start_health_poll(dev); + return 0; +} + static void mlx5_sync_reset_reload_work(struct work_struct *work) { struct mlx5_fw_reset *fw_reset = container_of(work, struct mlx5_fw_reset, @@ -118,6 +140,7 @@ struct mlx5_core_dev *dev = fw_reset->dev; int err; + mlx5_sync_reset_clear_reset_requested(dev, false); mlx5_enter_error_state(dev, true); mlx5_unload_one(dev); err = mlx5_health_wait_pci_up(dev); @@ -127,23 +150,6 @@ mlx5_fw_reset_complete_reload(dev); } -static void mlx5_stop_sync_reset_poll(struct mlx5_core_dev *dev) -{ - struct mlx5_fw_reset *fw_reset = dev->priv.fw_reset; - - del_timer_sync(&fw_reset->timer); -} - -static void mlx5_sync_reset_clear_reset_requested(struct mlx5_core_dev *dev, bool poll_health) -{ - struct mlx5_fw_reset *fw_reset = dev->priv.fw_reset; - - mlx5_stop_sync_reset_poll(dev); - clear_bit(MLX5_FW_RESET_FLAGS_RESET_REQUESTED, &fw_reset->reset_flags); - if (poll_health) - mlx5_start_health_poll(dev); -} - #define MLX5_RESET_POLL_INTERVAL (HZ / 10) static void poll_sync_reset(struct timer_list *t) { @@ -158,7 +164,6 @@ if (fatal_error) { mlx5_core_warn(dev, "Got Device Reset\n"); - mlx5_sync_reset_clear_reset_requested(dev, false); queue_work(fw_reset->wq, &fw_reset->reset_reload_work); return; } @@ -185,13 +190,17 @@ return mlx5_reg_mfrl_set(dev, MLX5_MFRL_REG_RESET_LEVEL3, 0, 2, false); } -static void mlx5_sync_reset_set_reset_requested(struct mlx5_core_dev *dev) +static int mlx5_sync_reset_set_reset_requested(struct mlx5_core_dev *dev) { struct mlx5_fw_reset *fw_reset = dev->priv.fw_reset; + if (test_and_set_bit(MLX5_FW_RESET_FLAGS_RESET_REQUESTED, &fw_reset->reset_flags)) { + mlx5_core_warn(dev, "Reset request was already set\n"); + return -EALREADY; + } mlx5_stop_health_poll(dev, true); - set_bit(MLX5_FW_RESET_FLAGS_RESET_REQUESTED, &fw_reset->reset_flags); mlx5_start_sync_reset_poll(dev); + return 0; } static void mlx5_fw_live_patch_event(struct work_struct *work) @@ -220,7 +229,9 @@ err ? "Failed" : "Sent"); return; } - mlx5_sync_reset_set_reset_requested(dev); + if (mlx5_sync_reset_set_reset_requested(dev)) + return; + err = mlx5_fw_reset_set_reset_sync_ack(dev); if (err) mlx5_core_warn(dev, "PCI Sync FW Update Reset Ack Failed. Error code: %d\n", err); @@ -320,7 +331,8 @@ struct mlx5_core_dev *dev = fw_reset->dev; int err; - mlx5_sync_reset_clear_reset_requested(dev, false); + if (mlx5_sync_reset_clear_reset_requested(dev, false)) + return; mlx5_core_warn(dev, "Sync Reset now. Device is going to reset.\n"); @@ -349,10 +361,8 @@ reset_abort_work); struct mlx5_core_dev *dev = fw_reset->dev; - if (!test_bit(MLX5_FW_RESET_FLAGS_RESET_REQUESTED, &fw_reset->reset_flags)) + if (mlx5_sync_reset_clear_reset_requested(dev, true)) return; - - mlx5_sync_reset_clear_reset_requested(dev, true); mlx5_core_warn(dev, "PCI Sync FW Update Reset Aborted.\n"); } diff -u linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/mellanox/mlx5/core/lag_mp.c linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/mellanox/mlx5/core/lag_mp.c --- linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/mellanox/mlx5/core/lag_mp.c +++ linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/mellanox/mlx5/core/lag_mp.c @@ -100,6 +100,14 @@ flush_workqueue(mp->wq); } +static void mlx5_lag_fib_set(struct lag_mp *mp, struct fib_info *fi, u32 dst, int dst_len) +{ + mp->fib.mfi = fi; + mp->fib.priority = fi->fib_priority; + mp->fib.dst = dst; + mp->fib.dst_len = dst_len; +} + struct mlx5_fib_event_work { struct work_struct work; struct mlx5_lag *ldev; @@ -110,10 +118,10 @@ }; }; -static void mlx5_lag_fib_route_event(struct mlx5_lag *ldev, - unsigned long event, - struct fib_info *fi) +static void mlx5_lag_fib_route_event(struct mlx5_lag *ldev, unsigned long event, + struct fib_entry_notifier_info *fen_info) { + struct fib_info *fi = fen_info->fi; struct lag_mp *mp = &ldev->lag_mp; struct fib_nh *fib_nh0, *fib_nh1; unsigned int nhs; @@ -121,13 +129,15 @@ /* Handle delete event */ if (event == FIB_EVENT_ENTRY_DEL) { /* stop track */ - if (mp->mfi == fi) - mp->mfi = NULL; + if (mp->fib.mfi == fi) + mp->fib.mfi = NULL; return; } /* Handle multipath entry with lower priority value */ - if (mp->mfi && mp->mfi != fi && fi->fib_priority >= mp->mfi->fib_priority) + if (mp->fib.mfi && mp->fib.mfi != fi && + (mp->fib.dst != fen_info->dst || mp->fib.dst_len != fen_info->dst_len) && + fi->fib_priority >= mp->fib.priority) return; /* Handle add/replace event */ @@ -143,9 +153,9 @@ i++; mlx5_lag_set_port_affinity(ldev, i); + mlx5_lag_fib_set(mp, fi, fen_info->dst, fen_info->dst_len); } - mp->mfi = fi; return; } @@ -165,7 +175,7 @@ } /* First time we see multipath route */ - if (!mp->mfi && !__mlx5_lag_is_active(ldev)) { + if (!mp->fib.mfi && !__mlx5_lag_is_active(ldev)) { struct lag_tracker tracker; tracker = ldev->tracker; @@ -173,7 +183,7 @@ } mlx5_lag_set_port_affinity(ldev, MLX5_LAG_NORMAL_AFFINITY); - mp->mfi = fi; + mlx5_lag_fib_set(mp, fi, fen_info->dst, fen_info->dst_len); } static void mlx5_lag_fib_nexthop_event(struct mlx5_lag *ldev, @@ -184,7 +194,7 @@ struct lag_mp *mp = &ldev->lag_mp; /* Check the nh event is related to the route */ - if (!mp->mfi || mp->mfi != fi) + if (!mp->fib.mfi || mp->fib.mfi != fi) return; /* nh added/removed */ @@ -214,7 +224,7 @@ case FIB_EVENT_ENTRY_REPLACE: case FIB_EVENT_ENTRY_DEL: mlx5_lag_fib_route_event(ldev, fib_work->event, - fib_work->fen_info.fi); + &fib_work->fen_info); fib_info_put(fib_work->fen_info.fi); break; case FIB_EVENT_NH_ADD: @@ -313,7 +323,7 @@ /* Clear mfi, as it might become stale when a route delete event * has been missed, see mlx5_lag_fib_route_event(). */ - ldev->lag_mp.mfi = NULL; + ldev->lag_mp.fib.mfi = NULL; } int mlx5_lag_mp_init(struct mlx5_lag *ldev) @@ -324,7 +334,7 @@ /* always clear mfi, as it might become stale when a route delete event * has been missed */ - mp->mfi = NULL; + mp->fib.mfi = NULL; if (mp->fib_nb.notifier_call) return 0; @@ -356,3 +366,3 @@ mp->fib_nb.notifier_call = NULL; - mp->mfi = NULL; + mp->fib.mfi = NULL; } diff -u linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/mellanox/mlx5/core/steering/dr_action.c linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/mellanox/mlx5/core/steering/dr_action.c --- linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/mellanox/mlx5/core/steering/dr_action.c +++ linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/mellanox/mlx5/core/steering/dr_action.c @@ -847,7 +847,8 @@ mlx5dr_action_create_mult_dest_tbl(struct mlx5dr_domain *dmn, struct mlx5dr_action_dest *dests, u32 num_of_dests, - bool ignore_flow_level) + bool ignore_flow_level, + u32 flow_source) { struct mlx5dr_cmd_flow_destination_hw_info *hw_dests; struct mlx5dr_action **ref_actions; @@ -915,7 +916,8 @@ reformat_req, &action->dest_tbl->fw_tbl.id, &action->dest_tbl->fw_tbl.group_id, - ignore_flow_level); + ignore_flow_level, + flow_source); if (ret) goto free_action; diff -u linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/mellanox/mlx5/core/steering/dr_fw.c linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/mellanox/mlx5/core/steering/dr_fw.c --- linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/mellanox/mlx5/core/steering/dr_fw.c +++ linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/mellanox/mlx5/core/steering/dr_fw.c @@ -104,7 +104,8 @@ bool reformat_req, u32 *tbl_id, u32 *group_id, - bool ignore_flow_level) + bool ignore_flow_level, + u32 flow_source) { struct mlx5dr_cmd_create_flow_table_attr ft_attr = {}; struct mlx5dr_cmd_fte_info fte_info = {}; @@ -139,6 +140,7 @@ fte_info.val = val; fte_info.dest_arr = dest; fte_info.ignore_flow_level = ignore_flow_level; + fte_info.flow_context.flow_source = flow_source; ret = mlx5dr_cmd_set_fte(dmn->mdev, 0, 0, &ft_info, *group_id, &fte_info); if (ret) { diff -u linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/mellanox/mlx5/core/steering/dr_types.h linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/mellanox/mlx5/core/steering/dr_types.h --- linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/mellanox/mlx5/core/steering/dr_types.h +++ linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/mellanox/mlx5/core/steering/dr_types.h @@ -1466,7 +1466,8 @@ bool reformat_req, u32 *tbl_id, u32 *group_id, - bool ignore_flow_level); + bool ignore_flow_level, + u32 flow_source); void mlx5dr_fw_destroy_md_tbl(struct mlx5dr_domain *dmn, u32 tbl_id, u32 group_id); #endif /* _DR_TYPES_H_ */ diff -u linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/mellanox/mlx5/core/steering/fs_dr.c linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/mellanox/mlx5/core/steering/fs_dr.c --- linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/mellanox/mlx5/core/steering/fs_dr.c +++ linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/mellanox/mlx5/core/steering/fs_dr.c @@ -520,6 +520,7 @@ } else if (num_term_actions > 1) { bool ignore_flow_level = !!(fte->action.flags & FLOW_ACT_IGNORE_FLOW_LEVEL); + u32 flow_source = fte->flow_context.flow_source; if (num_actions == MLX5_FLOW_CONTEXT_ACTION_MAX || fs_dr_num_actions == MLX5_FLOW_CONTEXT_ACTION_MAX) { @@ -529,7 +530,8 @@ tmp_action = mlx5dr_action_create_mult_dest_tbl(domain, term_actions, num_term_actions, - ignore_flow_level); + ignore_flow_level, + flow_source); if (!tmp_action) { err = -EOPNOTSUPP; goto free_actions; diff -u linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/mellanox/mlx5/core/steering/mlx5dr.h linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/mellanox/mlx5/core/steering/mlx5dr.h --- linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/mellanox/mlx5/core/steering/mlx5dr.h +++ linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/mellanox/mlx5/core/steering/mlx5dr.h @@ -96,7 +96,8 @@ mlx5dr_action_create_mult_dest_tbl(struct mlx5dr_domain *dmn, struct mlx5dr_action_dest *dests, u32 num_of_dests, - bool ignore_flow_level); + bool ignore_flow_level, + u32 flow_source); struct mlx5dr_action *mlx5dr_action_create_drop(void); diff -u linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/mscc/ocelot.c linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/mscc/ocelot.c --- linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/mscc/ocelot.c +++ linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/mscc/ocelot.c @@ -1932,6 +1932,8 @@ val = BIT(port); ocelot_rmw_rix(ocelot, val, BIT(port), ANA_PGID_PGID, PGID_MC); + ocelot_rmw_rix(ocelot, val, BIT(port), ANA_PGID_PGID, PGID_MCIPV4); + ocelot_rmw_rix(ocelot, val, BIT(port), ANA_PGID_PGID, PGID_MCIPV6); } static void ocelot_port_set_bcast_flood(struct ocelot *ocelot, int port, diff -u linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/mscc/ocelot_flower.c linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/mscc/ocelot_flower.c --- linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/mscc/ocelot_flower.c +++ linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/mscc/ocelot_flower.c @@ -206,9 +206,10 @@ filter->type = OCELOT_VCAP_FILTER_OFFLOAD; break; case FLOW_ACTION_TRAP: - if (filter->block_id != VCAP_IS2) { + if (filter->block_id != VCAP_IS2 || + filter->lookup != 0) { NL_SET_ERR_MSG_MOD(extack, - "Trap action can only be offloaded to VCAP IS2"); + "Trap action can only be offloaded to VCAP IS2 lookup 0"); return -EOPNOTSUPP; } if (filter->goto_target != -1) { diff -u linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/pensando/ionic/ionic_bus_pci.c linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/pensando/ionic/ionic_bus_pci.c --- linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/pensando/ionic/ionic_bus_pci.c +++ linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/pensando/ionic/ionic_bus_pci.c @@ -255,7 +255,7 @@ err = ionic_map_bars(ionic); if (err) - goto err_out_pci_disable_device; + goto err_out_pci_release_regions; /* Configure the device */ err = ionic_setup(ionic); @@ -359,6 +359,7 @@ err_out_unmap_bars: ionic_unmap_bars(ionic); +err_out_pci_release_regions: pci_release_regions(pdev); err_out_pci_disable_device: pci_disable_device(pdev); diff -u linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/qlogic/qla3xxx.c linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/qlogic/qla3xxx.c --- linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/qlogic/qla3xxx.c +++ linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/qlogic/qla3xxx.c @@ -3612,7 +3612,8 @@ qdev->mem_map_registers; unsigned long hw_flags; - if (test_bit((QL_RESET_PER_SCSI | QL_RESET_START), &qdev->flags)) { + if (test_bit(QL_RESET_PER_SCSI, &qdev->flags) || + test_bit(QL_RESET_START, &qdev->flags)) { clear_bit(QL_LINK_MASTER, &qdev->flags); /* diff -u linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/sfc/ef10.c linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/sfc/ef10.c --- linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/sfc/ef10.c +++ linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/sfc/ef10.c @@ -2256,7 +2256,7 @@ * guaranteed to satisfy the second as we only attempt TSO if * inner_network_header <= 208. */ - ip_tot_len = -EFX_TSO2_MAX_HDRLEN; + ip_tot_len = 0x10000 - EFX_TSO2_MAX_HDRLEN; EFX_WARN_ON_ONCE_PARANOID(mss + EFX_TSO2_MAX_HDRLEN + (tcp->doff << 2u) > ip_tot_len); @@ -3579,6 +3579,11 @@ n_parts++; } + if (!n_parts) { + kfree(parts); + return 0; + } + rc = efx_mtd_add(efx, &parts[0].common, n_parts, sizeof(*parts)); fail: if (rc) diff -u linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/sfc/efx_channels.c linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/sfc/efx_channels.c --- linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/sfc/efx_channels.c +++ linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/sfc/efx_channels.c @@ -844,7 +844,9 @@ int efx_realloc_channels(struct efx_nic *efx, u32 rxq_entries, u32 txq_entries) { - struct efx_channel *other_channel[EFX_MAX_CHANNELS], *channel; + struct efx_channel *other_channel[EFX_MAX_CHANNELS], *channel, + *ptp_channel = efx_ptp_channel(efx); + struct efx_ptp_data *ptp_data = efx->ptp_data; unsigned int i, next_buffer_table = 0; u32 old_rxq_entries, old_txq_entries; int rc, rc2; @@ -897,11 +899,8 @@ old_txq_entries = efx->txq_entries; efx->rxq_entries = rxq_entries; efx->txq_entries = txq_entries; - for (i = 0; i < efx->n_channels; i++) { - channel = efx->channel[i]; - efx->channel[i] = other_channel[i]; - other_channel[i] = channel; - } + for (i = 0; i < efx->n_channels; i++) + swap(efx->channel[i], other_channel[i]); /* Restart buffer table allocation */ efx->next_buffer_table = next_buffer_table; @@ -918,6 +917,7 @@ efx_set_xdp_channels(efx); out: + efx->ptp_data = NULL; /* Destroy unused channel structures */ for (i = 0; i < efx->n_channels; i++) { channel = other_channel[i]; @@ -928,6 +928,7 @@ } } + efx->ptp_data = ptp_data; rc2 = efx_soft_enable_interrupts(efx); if (rc2) { rc = rc ? rc : rc2; @@ -944,11 +945,9 @@ /* Swap back */ efx->rxq_entries = old_rxq_entries; efx->txq_entries = old_txq_entries; - for (i = 0; i < efx->n_channels; i++) { - channel = efx->channel[i]; - efx->channel[i] = other_channel[i]; - other_channel[i] = channel; - } + for (i = 0; i < efx->n_channels; i++) + swap(efx->channel[i], other_channel[i]); + efx_ptp_update_channel(efx, ptp_channel); goto out; } diff -u linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/stmicro/stmmac/dwmac-socfpga.c linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/stmicro/stmmac/dwmac-socfpga.c --- linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/stmicro/stmmac/dwmac-socfpga.c +++ linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/stmicro/stmmac/dwmac-socfpga.c @@ -65,8 +65,9 @@ struct phy_device *phy_dev = ndev->phydev; u32 val; - writew(SGMII_ADAPTER_DISABLE, - sgmii_adapter_base + SGMII_ADAPTER_CTRL_REG); + if (sgmii_adapter_base) + writew(SGMII_ADAPTER_DISABLE, + sgmii_adapter_base + SGMII_ADAPTER_CTRL_REG); if (splitter_base) { val = readl(splitter_base + EMAC_SPLITTER_CTRL_REG); @@ -88,10 +89,11 @@ writel(val, splitter_base + EMAC_SPLITTER_CTRL_REG); } - writew(SGMII_ADAPTER_ENABLE, - sgmii_adapter_base + SGMII_ADAPTER_CTRL_REG); - if (phy_dev) + if (phy_dev && sgmii_adapter_base) { + writew(SGMII_ADAPTER_ENABLE, + sgmii_adapter_base + SGMII_ADAPTER_CTRL_REG); tse_pcs_fix_mac_speed(&dwmac->pcs, phy_dev, speed); + } } static int socfpga_dwmac_parse_data(struct socfpga_dwmac *dwmac, struct device *dev) diff -u linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/stmicro/stmmac/dwmac-sun8i.c linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/stmicro/stmmac/dwmac-sun8i.c --- linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/stmicro/stmmac/dwmac-sun8i.c +++ linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/stmicro/stmmac/dwmac-sun8i.c @@ -916,6 +916,7 @@ ret = mdio_mux_init(priv->device, mdio_mux, mdio_mux_syscon_switch_fn, &gmac->mux_handle, priv, priv->mii); + of_node_put(mdio_mux); return ret; } diff -u linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/stmicro/stmmac/stmmac_hwtstamp.c linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/stmicro/stmmac/stmmac_hwtstamp.c --- linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/stmicro/stmmac/stmmac_hwtstamp.c +++ linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/stmicro/stmmac/stmmac_hwtstamp.c @@ -71,9 +71,9 @@ writel(value, ioaddr + PTP_TCR); /* wait for present system time initialize to complete */ - return readl_poll_timeout(ioaddr + PTP_TCR, value, + return readl_poll_timeout_atomic(ioaddr + PTP_TCR, value, !(value & PTP_TCR_TSINIT), - 10000, 100000); + 10, 100000); } static int config_addend(void __iomem *ioaddr, u32 addend) diff -u linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/stmicro/stmmac/stmmac_main.c linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/stmicro/stmmac/stmmac_main.c --- linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/stmicro/stmmac/stmmac_main.c +++ linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/stmicro/stmmac/stmmac_main.c @@ -7089,7 +7089,7 @@ dev_info(priv->device, "TSO feature enabled\n"); } - if (priv->dma_cap.sphen) { + if (priv->dma_cap.sphen && !priv->plat->sph_disable) { ndev->hw_features |= NETIF_F_GRO; priv->sph_cap = true; priv->sph = priv->sph_cap; diff -u linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/ti/cpsw_new.c linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/ti/cpsw_new.c --- linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/ti/cpsw_new.c +++ linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/ti/cpsw_new.c @@ -1246,8 +1246,10 @@ data->slave_data = devm_kcalloc(dev, CPSW_SLAVE_PORTS_NUM, sizeof(struct cpsw_slave_data), GFP_KERNEL); - if (!data->slave_data) + if (!data->slave_data) { + of_node_put(tmp_node); return -ENOMEM; + } /* Populate all the child nodes here... */ @@ -1341,6 +1343,7 @@ err_node_put: of_node_put(port_np); + of_node_put(tmp_node); return ret; } diff -u linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/xilinx/xilinx_emaclite.c linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/xilinx/xilinx_emaclite.c --- linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/xilinx/xilinx_emaclite.c +++ linux-intel-iotg-5.15-5.15.0/drivers/net/ethernet/xilinx/xilinx_emaclite.c @@ -822,10 +822,10 @@ static int xemaclite_mdio_setup(struct net_local *lp, struct device *dev) { struct mii_bus *bus; - int rc; struct resource res; struct device_node *np = of_get_parent(lp->phy_node); struct device_node *npp; + int rc, ret; /* Don't register the MDIO bus if the phy_node or its parent node * can't be found. @@ -835,8 +835,14 @@ return -ENODEV; } npp = of_get_parent(np); - - of_address_to_resource(npp, 0, &res); + ret = of_address_to_resource(npp, 0, &res); + of_node_put(npp); + if (ret) { + dev_err(dev, "%s resource error!\n", + dev->of_node->full_name); + of_node_put(np); + return ret; + } if (lp->ndev->mem_start != res.start) { struct phy_device *phydev; phydev = of_phy_find_device(lp->phy_node); @@ -845,6 +851,7 @@ "MDIO of the phy is not registered yet\n"); else put_device(&phydev->mdio.dev); + of_node_put(np); return 0; } @@ -857,6 +864,7 @@ bus = mdiobus_alloc(); if (!bus) { dev_err(dev, "Failed to allocate mdiobus\n"); + of_node_put(np); return -ENOMEM; } @@ -869,6 +877,7 @@ bus->parent = dev; rc = of_mdiobus_register(bus, np); + of_node_put(np); if (rc) { dev_err(dev, "Failed to register mdio bus.\n"); goto err_register; @@ -925,8 +934,6 @@ xemaclite_disable_interrupts(lp); if (lp->phy_node) { - u32 bmcr; - lp->phy_dev = of_phy_connect(lp->ndev, lp->phy_node, xemaclite_adjust_link, 0, PHY_INTERFACE_MODE_MII); @@ -937,19 +944,6 @@ /* EmacLite doesn't support giga-bit speeds */ phy_set_max_speed(lp->phy_dev, SPEED_100); - - /* Don't advertise 1000BASE-T Full/Half duplex speeds */ - phy_write(lp->phy_dev, MII_CTRL1000, 0); - - /* Advertise only 10 and 100mbps full/half duplex speeds */ - phy_write(lp->phy_dev, MII_ADVERTISE, ADVERTISE_ALL | - ADVERTISE_CSMA); - - /* Restart auto negotiation */ - bmcr = phy_read(lp->phy_dev, MII_BMCR); - bmcr |= (BMCR_ANENABLE | BMCR_ANRESTART); - phy_write(lp->phy_dev, MII_BMCR, bmcr); - phy_start(lp->phy_dev); } diff -u linux-intel-iotg-5.15-5.15.0/drivers/net/hyperv/netvsc_drv.c linux-intel-iotg-5.15-5.15.0/drivers/net/hyperv/netvsc_drv.c --- linux-intel-iotg-5.15-5.15.0/drivers/net/hyperv/netvsc_drv.c +++ linux-intel-iotg-5.15-5.15.0/drivers/net/hyperv/netvsc_drv.c @@ -2665,7 +2665,10 @@ /* Save the current config info */ ndev_ctx->saved_netvsc_dev_info = netvsc_devinfo_get(nvdev); - + if (!ndev_ctx->saved_netvsc_dev_info) { + ret = -ENOMEM; + goto out; + } ret = netvsc_detach(net, nvdev); out: rtnl_unlock(); diff -u linux-intel-iotg-5.15-5.15.0/drivers/net/ipa/ipa_endpoint.c linux-intel-iotg-5.15-5.15.0/drivers/net/ipa/ipa_endpoint.c --- linux-intel-iotg-5.15-5.15.0/drivers/net/ipa/ipa_endpoint.c +++ linux-intel-iotg-5.15-5.15.0/drivers/net/ipa/ipa_endpoint.c @@ -570,19 +570,23 @@ struct ipa *ipa = endpoint->ipa; u32 val = 0; - val |= HDR_ENDIANNESS_FMASK; /* big endian */ - - /* A QMAP header contains a 6 bit pad field at offset 0. The RMNet - * driver assumes this field is meaningful in packets it receives, - * and assumes the header's payload length includes that padding. - * The RMNet driver does *not* pad packets it sends, however, so - * the pad field (although 0) should be ignored. - */ - if (endpoint->data->qmap && !endpoint->toward_ipa) { - val |= HDR_TOTAL_LEN_OR_PAD_VALID_FMASK; - /* HDR_TOTAL_LEN_OR_PAD is 0 (pad, not total_len) */ - val |= HDR_PAYLOAD_LEN_INC_PADDING_FMASK; - /* HDR_TOTAL_LEN_OR_PAD_OFFSET is 0 */ + if (endpoint->data->qmap) { + /* We have a header, so we must specify its endianness */ + val |= HDR_ENDIANNESS_FMASK; /* big endian */ + + /* A QMAP header contains a 6 bit pad field at offset 0. + * The RMNet driver assumes this field is meaningful in + * packets it receives, and assumes the header's payload + * length includes that padding. The RMNet driver does + * *not* pad packets it sends, however, so the pad field + * (although 0) should be ignored. + */ + if (!endpoint->toward_ipa) { + val |= HDR_TOTAL_LEN_OR_PAD_VALID_FMASK; + /* HDR_TOTAL_LEN_OR_PAD is 0 (pad, not total_len) */ + val |= HDR_PAYLOAD_LEN_INC_PADDING_FMASK; + /* HDR_TOTAL_LEN_OR_PAD_OFFSET is 0 */ + } } /* HDR_PAYLOAD_LEN_INC_PADDING is 0 */ @@ -722,13 +726,15 @@ if (endpoint->data->aggregation) { if (!endpoint->toward_ipa) { + u32 buffer_size; bool close_eof; u32 limit; val |= u32_encode_bits(IPA_ENABLE_AGGR, AGGR_EN_FMASK); val |= u32_encode_bits(IPA_GENERIC, AGGR_TYPE_FMASK); - limit = ipa_aggr_size_kb(IPA_RX_BUFFER_SIZE); + buffer_size = IPA_RX_BUFFER_SIZE - NET_SKB_PAD; + limit = ipa_aggr_size_kb(buffer_size); val |= aggr_byte_limit_encoded(version, limit); limit = IPA_AGGR_TIME_LIMIT; @@ -738,8 +744,6 @@ close_eof = endpoint->data->rx.aggr_close_eof; val |= aggr_sw_eof_active_encoded(version, close_eof); - - /* AGGR_HARD_BYTE_LIMIT_ENABLE is 0 */ } else { val |= u32_encode_bits(IPA_ENABLE_DEAGGR, AGGR_EN_FMASK); @@ -1045,7 +1049,7 @@ err_trans_free: gsi_trans_free(trans); err_free_pages: - __free_pages(page, get_order(IPA_RX_BUFFER_SIZE)); + put_page(page); return -ENOMEM; } @@ -1385,7 +1389,7 @@ struct page *page = trans->data; if (page) - __free_pages(page, get_order(IPA_RX_BUFFER_SIZE)); + put_page(page); } } diff -u linux-intel-iotg-5.15-5.15.0/drivers/net/phy/micrel.c linux-intel-iotg-5.15-5.15.0/drivers/net/phy/micrel.c --- linux-intel-iotg-5.15-5.15.0/drivers/net/phy/micrel.c +++ linux-intel-iotg-5.15-5.15.0/drivers/net/phy/micrel.c @@ -335,7 +335,7 @@ } } - if (priv->led_mode >= 0) + if (priv->type && priv->led_mode >= 0) kszphy_setup_led(phydev, priv->type->led_mode_reg, priv->led_mode); return 0; @@ -351,10 +351,10 @@ type = priv->type; - if (type->has_broadcast_disable) + if (type && type->has_broadcast_disable) kszphy_broadcast_disable(phydev); - if (type->has_nand_tree_disable) + if (type && type->has_nand_tree_disable) kszphy_nand_tree_disable(phydev); return kszphy_config_reset(phydev); @@ -1328,7 +1328,7 @@ priv->type = type; - if (type->led_mode_reg) { + if (type && type->led_mode_reg) { ret = of_property_read_u32(np, "micrel,led-mode", &priv->led_mode); if (ret) @@ -1349,7 +1349,8 @@ unsigned long rate = clk_get_rate(clk); bool rmii_ref_clk_sel_25_mhz; - priv->rmii_ref_clk_sel = type->has_rmii_ref_clk_sel; + if (type) + priv->rmii_ref_clk_sel = type->has_rmii_ref_clk_sel; rmii_ref_clk_sel_25_mhz = of_property_read_bool(np, "micrel,rmii-reference-clock-select-25-mhz"); @@ -1544,6 +1545,7 @@ .name = "Micrel KS8737", /* PHY_BASIC_FEATURES */ .driver_data = &ks8737_type, + .probe = kszphy_probe, .config_init = kszphy_config_init, .config_intr = kszphy_config_intr, .handle_interrupt = kszphy_handle_interrupt, @@ -1669,8 +1671,8 @@ .config_init = ksz8061_config_init, .config_intr = kszphy_config_intr, .handle_interrupt = kszphy_handle_interrupt, - .suspend = kszphy_suspend, - .resume = kszphy_resume, + .suspend = genphy_suspend, + .resume = genphy_resume, }, { .phy_id = PHY_ID_KSZ9021, .phy_id_mask = 0x000ffffe, diff -u linux-intel-iotg-5.15-5.15.0/drivers/net/phy/phy.c linux-intel-iotg-5.15-5.15.0/drivers/net/phy/phy.c --- linux-intel-iotg-5.15-5.15.0/drivers/net/phy/phy.c +++ linux-intel-iotg-5.15-5.15.0/drivers/net/phy/phy.c @@ -970,8 +970,13 @@ { struct phy_device *phydev = phy_dat; struct phy_driver *drv = phydev->drv; + irqreturn_t ret; - return drv->handle_interrupt(phydev); + mutex_lock(&phydev->lock); + ret = drv->handle_interrupt(phydev); + mutex_unlock(&phydev->lock); + + return ret; } /** diff -u linux-intel-iotg-5.15-5.15.0/drivers/net/phy/sfp.c linux-intel-iotg-5.15-5.15.0/drivers/net/phy/sfp.c --- linux-intel-iotg-5.15-5.15.0/drivers/net/phy/sfp.c +++ linux-intel-iotg-5.15-5.15.0/drivers/net/phy/sfp.c @@ -250,6 +250,7 @@ struct sfp_eeprom_id id; unsigned int module_power_mW; unsigned int module_t_start_up; + bool tx_fault_ignore; #if IS_ENABLED(CONFIG_HWMON) struct sfp_diag diag; @@ -1945,6 +1946,12 @@ else sfp->module_t_start_up = T_START_UP; + if (!memcmp(id.base.vendor_name, "HUAWEI ", 16) && + !memcmp(id.base.vendor_pn, "MA5671A ", 16)) + sfp->tx_fault_ignore = true; + else + sfp->tx_fault_ignore = false; + return 0; } @@ -2397,7 +2404,10 @@ mutex_lock(&sfp->st_mutex); state = sfp_get_state(sfp); changed = state ^ sfp->state; - changed &= SFP_F_PRESENT | SFP_F_LOS | SFP_F_TX_FAULT; + if (sfp->tx_fault_ignore) + changed &= SFP_F_PRESENT | SFP_F_LOS; + else + changed &= SFP_F_PRESENT | SFP_F_LOS | SFP_F_TX_FAULT; for (i = 0; i < GPIO_MAX; i++) if (changed & BIT(i)) diff -u linux-intel-iotg-5.15-5.15.0/drivers/net/usb/asix_devices.c linux-intel-iotg-5.15-5.15.0/drivers/net/usb/asix_devices.c --- linux-intel-iotg-5.15-5.15.0/drivers/net/usb/asix_devices.c +++ linux-intel-iotg-5.15-5.15.0/drivers/net/usb/asix_devices.c @@ -799,11 +799,7 @@ { struct asix_common_private *priv = dev->driver_priv; - /* On unplugged USB, we will get MDIO communication errors and the - * PHY will be set in to PHY_HALTED state. - */ - if (priv->phydev->state != PHY_HALTED) - phy_stop(priv->phydev); + phy_stop(priv->phydev); return 0; } diff -u linux-intel-iotg-5.15-5.15.0/drivers/net/usb/smsc95xx.c linux-intel-iotg-5.15-5.15.0/drivers/net/usb/smsc95xx.c --- linux-intel-iotg-5.15-5.15.0/drivers/net/usb/smsc95xx.c +++ linux-intel-iotg-5.15-5.15.0/drivers/net/usb/smsc95xx.c @@ -1217,8 +1217,7 @@ static int smsc95xx_stop(struct usbnet *dev) { - if (dev->net->phydev) - phy_stop(dev->net->phydev); + phy_stop(dev->net->phydev); return 0; } diff -u linux-intel-iotg-5.15-5.15.0/drivers/net/vmxnet3/vmxnet3_drv.c linux-intel-iotg-5.15-5.15.0/drivers/net/vmxnet3/vmxnet3_drv.c --- linux-intel-iotg-5.15-5.15.0/drivers/net/vmxnet3/vmxnet3_drv.c +++ linux-intel-iotg-5.15-5.15.0/drivers/net/vmxnet3/vmxnet3_drv.c @@ -589,6 +589,7 @@ if (dma_mapping_error(&adapter->pdev->dev, rbi->dma_addr)) { dev_kfree_skb_any(rbi->skb); + rbi->skb = NULL; rq->stats.rx_buf_alloc_failure++; break; } @@ -613,6 +614,7 @@ if (dma_mapping_error(&adapter->pdev->dev, rbi->dma_addr)) { put_page(rbi->page); + rbi->page = NULL; rq->stats.rx_buf_alloc_failure++; break; } @@ -1666,6 +1668,10 @@ u32 i, ring_idx; struct Vmxnet3_RxDesc *rxd; + /* ring has already been cleaned up */ + if (!rq->rx_ring[0].base) + return; + for (ring_idx = 0; ring_idx < 2; ring_idx++) { for (i = 0; i < rq->rx_ring[ring_idx].size; i++) { #ifdef __BIG_ENDIAN_BITFIELD diff -u linux-intel-iotg-5.15-5.15.0/drivers/net/vxlan.c linux-intel-iotg-5.15-5.15.0/drivers/net/vxlan.c --- linux-intel-iotg-5.15-5.15.0/drivers/net/vxlan.c +++ linux-intel-iotg-5.15-5.15.0/drivers/net/vxlan.c @@ -873,11 +873,11 @@ rd = kmalloc(sizeof(*rd), GFP_ATOMIC); if (rd == NULL) - return -ENOBUFS; + return -ENOMEM; if (dst_cache_init(&rd->dst_cache, GFP_ATOMIC)) { kfree(rd); - return -ENOBUFS; + return -ENOMEM; } rd->remote_ip = *ip; diff -u linux-intel-iotg-5.15-5.15.0/drivers/net/wireguard/device.c linux-intel-iotg-5.15-5.15.0/drivers/net/wireguard/device.c --- linux-intel-iotg-5.15-5.15.0/drivers/net/wireguard/device.c +++ linux-intel-iotg-5.15-5.15.0/drivers/net/wireguard/device.c @@ -19,6 +19,7 @@ #include #include #include +#include #include #include #include @@ -152,7 +153,7 @@ goto err_peer; } - mtu = skb_dst(skb) ? dst_mtu(skb_dst(skb)) : dev->mtu; + mtu = skb_valid_dst(skb) ? dst_mtu(skb_dst(skb)) : dev->mtu; __skb_queue_head_init(&packets); if (!skb_is_gso(skb)) { diff -u linux-intel-iotg-5.15-5.15.0/drivers/net/wireless/ath/ath10k/mac.c linux-intel-iotg-5.15-5.15.0/drivers/net/wireless/ath/ath10k/mac.c --- linux-intel-iotg-5.15-5.15.0/drivers/net/wireless/ath/ath10k/mac.c +++ linux-intel-iotg-5.15-5.15.0/drivers/net/wireless/ath/ath10k/mac.c @@ -5339,13 +5339,29 @@ static void ath10k_stop(struct ieee80211_hw *hw) { struct ath10k *ar = hw->priv; + u32 opt; ath10k_drain_tx(ar); mutex_lock(&ar->conf_mutex); if (ar->state != ATH10K_STATE_OFF) { - if (!ar->hw_rfkill_on) - ath10k_halt(ar); + if (!ar->hw_rfkill_on) { + /* If the current driver state is RESTARTING but not yet + * fully RESTARTED because of incoming suspend event, + * then ath10k_halt() is already called via + * ath10k_core_restart() and should not be called here. + */ + if (ar->state != ATH10K_STATE_RESTARTING) { + ath10k_halt(ar); + } else { + /* Suspending here, because when in RESTARTING + * state, ath10k_core_stop() skips + * ath10k_wait_for_suspend(). + */ + opt = WMI_PDEV_SUSPEND_AND_DISABLE_INTR; + ath10k_wait_for_suspend(ar, opt); + } + } ar->state = ATH10K_STATE_OFF; } mutex_unlock(&ar->conf_mutex); diff -u linux-intel-iotg-5.15-5.15.0/drivers/net/wireless/ath/ath10k/txrx.c linux-intel-iotg-5.15-5.15.0/drivers/net/wireless/ath/ath10k/txrx.c --- linux-intel-iotg-5.15-5.15.0/drivers/net/wireless/ath/ath10k/txrx.c +++ linux-intel-iotg-5.15-5.15.0/drivers/net/wireless/ath/ath10k/txrx.c @@ -125,7 +125,7 @@ tx_done->ack_rssi != ATH10K_INVALID_RSSI) { info->status.ack_signal = ATH10K_DEFAULT_NOISE_FLOOR + tx_done->ack_rssi; - info->status.is_valid_ack_signal = true; + info->status.flags |= IEEE80211_TX_STATUS_ACK_SIGNAL_VALID; } ieee80211_tx_status(htt->ar->hw, msdu); diff -u linux-intel-iotg-5.15-5.15.0/drivers/net/wireless/ath/ath10k/wmi.c linux-intel-iotg-5.15-5.15.0/drivers/net/wireless/ath/ath10k/wmi.c --- linux-intel-iotg-5.15-5.15.0/drivers/net/wireless/ath/ath10k/wmi.c +++ linux-intel-iotg-5.15-5.15.0/drivers/net/wireless/ath/ath10k/wmi.c @@ -2427,7 +2427,7 @@ info->flags |= IEEE80211_TX_STAT_ACK; info->status.ack_signal = ATH10K_DEFAULT_NOISE_FLOOR + param->ack_rssi; - info->status.is_valid_ack_signal = true; + info->status.flags |= IEEE80211_TX_STATUS_ACK_SIGNAL_VALID; } ieee80211_tx_status_irqsafe(ar->hw, msdu); diff -u linux-intel-iotg-5.15-5.15.0/drivers/net/wireless/ath/ath11k/dp_tx.c linux-intel-iotg-5.15-5.15.0/drivers/net/wireless/ath/ath11k/dp_tx.c --- linux-intel-iotg-5.15-5.15.0/drivers/net/wireless/ath/ath11k/dp_tx.c +++ linux-intel-iotg-5.15-5.15.0/drivers/net/wireless/ath/ath11k/dp_tx.c @@ -349,7 +349,8 @@ info->flags |= IEEE80211_TX_STAT_ACK; info->status.ack_signal = ATH11K_DEFAULT_NOISE_FLOOR + ts->ack_rssi; - info->status.is_valid_ack_signal = true; + info->status.flags |= + IEEE80211_TX_STATUS_ACK_SIGNAL_VALID; } else { info->flags |= IEEE80211_TX_STAT_NOACK_TRANSMITTED; } @@ -453,7 +454,7 @@ info->flags |= IEEE80211_TX_STAT_ACK; info->status.ack_signal = ATH11K_DEFAULT_NOISE_FLOOR + ts->ack_rssi; - info->status.is_valid_ack_signal = true; + info->status.flags |= IEEE80211_TX_STATUS_ACK_SIGNAL_VALID; } if (ts->status == HAL_WBM_TQM_REL_REASON_CMD_REMOVE_TX && diff -u linux-intel-iotg-5.15-5.15.0/drivers/net/wireless/ath/ath11k/mac.c linux-intel-iotg-5.15-5.15.0/drivers/net/wireless/ath/ath11k/mac.c --- linux-intel-iotg-5.15-5.15.0/drivers/net/wireless/ath/ath11k/mac.c +++ linux-intel-iotg-5.15-5.15.0/drivers/net/wireless/ath/ath11k/mac.c @@ -4276,8 +4276,8 @@ } arvif = ath11k_vif_to_arvif(skb_cb->vif); - if (ar->allocated_vdev_map & (1LL << arvif->vdev_id) && - arvif->is_started) { + mutex_lock(&ar->conf_mutex); + if (ar->allocated_vdev_map & (1LL << arvif->vdev_id)) { ret = ath11k_mac_mgmt_tx_wmi(ar, arvif, skb); if (ret) { ath11k_warn(ar->ab, "failed to tx mgmt frame, vdev_id %d :%d\n", @@ -4293,6 +4293,7 @@ arvif->is_started); ieee80211_free_txskb(ar->hw, skb); } + mutex_unlock(&ar->conf_mutex); } } @@ -5602,6 +5603,7 @@ struct ath11k *ar = hw->priv; struct ath11k_base *ab = ar->ab; struct ath11k_vif *arvif = (void *)vif->drv_priv; + struct ath11k_peer *peer; int ret; mutex_lock(&ar->conf_mutex); @@ -5613,9 +5615,13 @@ WARN_ON(!arvif->is_started); if (ab->hw_params.vdev_start_delay && - arvif->vdev_type == WMI_VDEV_TYPE_MONITOR && - ath11k_peer_find_by_addr(ab, ar->mac_addr)) - ath11k_peer_delete(ar, arvif->vdev_id, ar->mac_addr); + arvif->vdev_type == WMI_VDEV_TYPE_MONITOR) { + spin_lock_bh(&ab->base_lock); + peer = ath11k_peer_find_by_addr(ab, ar->mac_addr); + spin_unlock_bh(&ab->base_lock); + if (peer) + ath11k_peer_delete(ar, arvif->vdev_id, ar->mac_addr); + } ret = ath11k_mac_vdev_stop(arvif); if (ret) diff -u linux-intel-iotg-5.15-5.15.0/drivers/net/wireless/ath/ath9k/htc.h linux-intel-iotg-5.15-5.15.0/drivers/net/wireless/ath/ath9k/htc.h --- linux-intel-iotg-5.15-5.15.0/drivers/net/wireless/ath/ath9k/htc.h +++ linux-intel-iotg-5.15-5.15.0/drivers/net/wireless/ath/ath9k/htc.h @@ -327,11 +327,11 @@ } #ifdef CONFIG_ATH9K_HTC_DEBUGFS - -#define TX_STAT_INC(c) (hif_dev->htc_handle->drv_priv->debug.tx_stats.c++) -#define TX_STAT_ADD(c, a) (hif_dev->htc_handle->drv_priv->debug.tx_stats.c += a) -#define RX_STAT_INC(c) (hif_dev->htc_handle->drv_priv->debug.skbrx_stats.c++) -#define RX_STAT_ADD(c, a) (hif_dev->htc_handle->drv_priv->debug.skbrx_stats.c += a) +#define __STAT_SAFE(expr) (hif_dev->htc_handle->drv_priv ? (expr) : 0) +#define TX_STAT_INC(c) __STAT_SAFE(hif_dev->htc_handle->drv_priv->debug.tx_stats.c++) +#define TX_STAT_ADD(c, a) __STAT_SAFE(hif_dev->htc_handle->drv_priv->debug.tx_stats.c += a) +#define RX_STAT_INC(c) __STAT_SAFE(hif_dev->htc_handle->drv_priv->debug.skbrx_stats.c++) +#define RX_STAT_ADD(c, a) __STAT_SAFE(hif_dev->htc_handle->drv_priv->debug.skbrx_stats.c += a) #define CAB_STAT_INC priv->debug.tx_stats.cab_queued++ #define TX_QSTAT_INC(q) (priv->debug.tx_stats.queue_stats[q]++) diff -u linux-intel-iotg-5.15-5.15.0/drivers/net/wireless/ath/ath9k/htc_drv_txrx.c linux-intel-iotg-5.15-5.15.0/drivers/net/wireless/ath/ath9k/htc_drv_txrx.c --- linux-intel-iotg-5.15-5.15.0/drivers/net/wireless/ath/ath9k/htc_drv_txrx.c +++ linux-intel-iotg-5.15-5.15.0/drivers/net/wireless/ath/ath9k/htc_drv_txrx.c @@ -1016,6 +1016,14 @@ goto rx_next; } + if (rxstatus->rs_keyix >= ATH_KEYMAX && + rxstatus->rs_keyix != ATH9K_RXKEYIX_INVALID) { + ath_dbg(common, ANY, + "Invalid keyix, dropping (keyix: %d)\n", + rxstatus->rs_keyix); + goto rx_next; + } + /* Get the RX status information */ memset(rx_status, 0, sizeof(struct ieee80211_rx_status)); diff -u linux-intel-iotg-5.15-5.15.0/drivers/net/wireless/broadcom/brcm80211/brcmfmac/sdio.c linux-intel-iotg-5.15-5.15.0/drivers/net/wireless/broadcom/brcm80211/brcmfmac/sdio.c --- linux-intel-iotg-5.15-5.15.0/drivers/net/wireless/broadcom/brcm80211/brcmfmac/sdio.c +++ linux-intel-iotg-5.15-5.15.0/drivers/net/wireless/broadcom/brcm80211/brcmfmac/sdio.c @@ -557,7 +557,7 @@ BRCMF_SDIO_FT_SUB, }; -#define SDIOD_DRVSTR_KEY(chip, pmu) (((chip) << 16) | (pmu)) +#define SDIOD_DRVSTR_KEY(chip, pmu) (((unsigned int)(chip) << 16) | (pmu)) /* SDIO Pad drive strength to select value mappings */ struct sdiod_drive_str { diff -u linux-intel-iotg-5.15-5.15.0/drivers/net/wireless/mac80211_hwsim.c linux-intel-iotg-5.15-5.15.0/drivers/net/wireless/mac80211_hwsim.c --- linux-intel-iotg-5.15-5.15.0/drivers/net/wireless/mac80211_hwsim.c +++ linux-intel-iotg-5.15-5.15.0/drivers/net/wireless/mac80211_hwsim.c @@ -2336,11 +2336,13 @@ if (req->ie_len) skb_put_data(probe, req->ie, req->ie_len); + rcu_read_lock(); if (!ieee80211_tx_prepare_skb(hwsim->hw, hwsim->hw_scan_vif, probe, hwsim->tmp_chan->band, NULL)) { + rcu_read_unlock(); kfree_skb(probe); continue; } @@ -2348,6 +2350,7 @@ local_bh_disable(); mac80211_hwsim_tx_frame(hwsim->hw, probe, hwsim->tmp_chan); + rcu_read_unlock(); local_bh_enable(); } } diff -u linux-intel-iotg-5.15-5.15.0/drivers/net/wireless/mediatek/mt76/mt76_connac_mcu.c linux-intel-iotg-5.15-5.15.0/drivers/net/wireless/mediatek/mt76/mt76_connac_mcu.c --- linux-intel-iotg-5.15-5.15.0/drivers/net/wireless/mediatek/mt76/mt76_connac_mcu.c +++ linux-intel-iotg-5.15-5.15.0/drivers/net/wireless/mediatek/mt76/mt76_connac_mcu.c @@ -1293,6 +1293,8 @@ else conn_type = CONNECTION_INFRA_AP; basic_req.basic.conn_type = cpu_to_le32(conn_type); + /* Fully active/deactivate BSS network in AP mode only */ + basic_req.basic.active = enable; break; case NL80211_IFTYPE_STATION: if (vif->p2p) diff -u linux-intel-iotg-5.15-5.15.0/drivers/net/wireless/mediatek/mt76/mt7915/mac.c linux-intel-iotg-5.15-5.15.0/drivers/net/wireless/mediatek/mt76/mt7915/mac.c --- linux-intel-iotg-5.15-5.15.0/drivers/net/wireless/mediatek/mt76/mt7915/mac.c +++ linux-intel-iotg-5.15-5.15.0/drivers/net/wireless/mediatek/mt76/mt7915/mac.c @@ -799,6 +799,7 @@ u8 tid = skb->priority & IEEE80211_QOS_CTL_TID_MASK; u8 fc_type, fc_stype; + u16 ethertype; bool wmm = false; u32 val; @@ -812,7 +813,8 @@ val = FIELD_PREP(MT_TXD1_HDR_FORMAT, MT_HDR_FORMAT_802_3) | FIELD_PREP(MT_TXD1_TID, tid); - if (be16_to_cpu(skb->protocol) >= ETH_P_802_3_MIN) + ethertype = get_unaligned_be16(&skb->data[12]); + if (ethertype >= ETH_P_802_3_MIN) val |= MT_TXD1_ETH_802_3; txwi[1] |= cpu_to_le32(val); diff -u linux-intel-iotg-5.15-5.15.0/drivers/net/wireless/mediatek/mt76/mt7921/init.c linux-intel-iotg-5.15-5.15.0/drivers/net/wireless/mediatek/mt76/mt7921/init.c --- linux-intel-iotg-5.15-5.15.0/drivers/net/wireless/mediatek/mt76/mt7921/init.c +++ linux-intel-iotg-5.15-5.15.0/drivers/net/wireless/mediatek/mt76/mt7921/init.c @@ -11,6 +11,10 @@ { .max = MT7921_MAX_INTERFACES, .types = BIT(NL80211_IFTYPE_STATION) + }, + { + .max = 1, + .types = BIT(NL80211_IFTYPE_AP) } }; @@ -63,7 +67,8 @@ wiphy->iface_combinations = if_comb; wiphy->flags &= ~WIPHY_FLAG_IBSS_RSN; - wiphy->interface_modes = BIT(NL80211_IFTYPE_STATION); + wiphy->interface_modes = BIT(NL80211_IFTYPE_STATION) | + BIT(NL80211_IFTYPE_AP); wiphy->n_iface_combinations = ARRAY_SIZE(if_comb); wiphy->max_scan_ie_len = MT76_CONNAC_SCAN_IE_LEN; wiphy->max_scan_ssids = 4; @@ -79,6 +84,10 @@ wiphy->features |= NL80211_FEATURE_SCHED_SCAN_RANDOM_MAC_ADDR | NL80211_FEATURE_SCAN_RANDOM_MAC_ADDR; wiphy_ext_feature_set(wiphy, NL80211_EXT_FEATURE_SET_SCAN_DWELL); + wiphy_ext_feature_set(wiphy, NL80211_EXT_FEATURE_BEACON_RATE_LEGACY); + wiphy_ext_feature_set(wiphy, NL80211_EXT_FEATURE_BEACON_RATE_HT); + wiphy_ext_feature_set(wiphy, NL80211_EXT_FEATURE_BEACON_RATE_VHT); + wiphy_ext_feature_set(wiphy, NL80211_EXT_FEATURE_BEACON_RATE_HE); ieee80211_hw_set(hw, SINGLE_SCAN_ON_ALL_BANDS); ieee80211_hw_set(hw, HAS_RATE_CONTROL); diff -u linux-intel-iotg-5.15-5.15.0/drivers/net/wireless/mediatek/mt76/mt7921/mac.c linux-intel-iotg-5.15-5.15.0/drivers/net/wireless/mediatek/mt76/mt7921/mac.c --- linux-intel-iotg-5.15-5.15.0/drivers/net/wireless/mediatek/mt76/mt7921/mac.c +++ linux-intel-iotg-5.15-5.15.0/drivers/net/wireless/mediatek/mt76/mt7921/mac.c @@ -563,7 +563,7 @@ status->nss = FIELD_GET(MT_PRXV_NSTS, v0) + 1; status->encoding = RX_ENC_VHT; - if (i > 9) + if (i > 11) return -EINVAL; break; case MT_PHY_TYPE_HE_MU: @@ -681,6 +681,7 @@ { u8 tid = skb->priority & IEEE80211_QOS_CTL_TID_MASK; u8 fc_type, fc_stype; + u16 ethertype; bool wmm = false; u32 val; @@ -694,7 +695,8 @@ val = FIELD_PREP(MT_TXD1_HDR_FORMAT, MT_HDR_FORMAT_802_3) | FIELD_PREP(MT_TXD1_TID, tid); - if (be16_to_cpu(skb->protocol) >= ETH_P_802_3_MIN) + ethertype = get_unaligned_be16(&skb->data[12]); + if (ethertype >= ETH_P_802_3_MIN) val |= MT_TXD1_ETH_802_3; txwi[1] |= cpu_to_le32(val); @@ -1327,12 +1329,21 @@ { struct mt7921_vif *mvif = (struct mt7921_vif *)vif->drv_priv; struct mt7921_dev *dev = mvif->phy->dev; + struct ieee80211_hw *hw = mt76_hw(dev); if (vif->type == NL80211_IFTYPE_STATION) ieee80211_disconnect(vif, true); mt76_connac_mcu_uni_add_dev(&dev->mphy, vif, &mvif->sta.wcid, true); mt7921_mcu_set_tx(dev, vif); + + if (vif->type == NL80211_IFTYPE_AP) { + mt76_connac_mcu_uni_add_bss(dev->phy.mt76, vif, &mvif->sta.wcid, + true); + mt7921_mcu_sta_update(dev, NULL, vif, true, + MT76_STA_INFO_STATE_NONE); + mt7921_mcu_uni_add_beacon_offload(dev, hw, vif, true); + } } static int diff -u linux-intel-iotg-5.15-5.15.0/drivers/net/wireless/mediatek/mt76/mt7921/main.c linux-intel-iotg-5.15-5.15.0/drivers/net/wireless/mediatek/mt76/mt7921/main.c --- linux-intel-iotg-5.15-5.15.0/drivers/net/wireless/mediatek/mt76/mt7921/main.c +++ linux-intel-iotg-5.15-5.15.0/drivers/net/wireless/mediatek/mt76/mt7921/main.c @@ -53,6 +53,7 @@ switch (i) { case NL80211_IFTYPE_STATION: + case NL80211_IFTYPE_AP: break; default: continue; @@ -86,6 +87,23 @@ IEEE80211_HE_PHY_CAP2_UL_MU_PARTIAL_MU_MIMO; switch (i) { + case NL80211_IFTYPE_AP: + he_cap_elem->mac_cap_info[2] |= + IEEE80211_HE_MAC_CAP2_BSR; + he_cap_elem->mac_cap_info[4] |= + IEEE80211_HE_MAC_CAP4_BQR; + he_cap_elem->mac_cap_info[5] |= + IEEE80211_HE_MAC_CAP5_OM_CTRL_UL_MU_DATA_DIS_RX; + he_cap_elem->phy_cap_info[3] |= + IEEE80211_HE_PHY_CAP3_DCM_MAX_CONST_TX_QPSK | + IEEE80211_HE_PHY_CAP3_DCM_MAX_CONST_RX_QPSK; + he_cap_elem->phy_cap_info[6] |= + IEEE80211_HE_PHY_CAP6_PARTIAL_BW_EXT_RANGE | + IEEE80211_HE_PHY_CAP6_PPE_THRESHOLD_PRESENT; + he_cap_elem->phy_cap_info[9] |= + IEEE80211_HE_PHY_CAP9_TX_1024_QAM_LESS_THAN_242_TONE_RU | + IEEE80211_HE_PHY_CAP9_RX_1024_QAM_LESS_THAN_242_TONE_RU; + break; case NL80211_IFTYPE_STATION: he_cap_elem->mac_cap_info[1] |= IEEE80211_HE_MAC_CAP1_TF_MAC_PAD_DUR_16US; @@ -589,6 +607,11 @@ } } + if (changed & (BSS_CHANGED_BEACON | + BSS_CHANGED_BEACON_ENABLED)) + mt7921_mcu_uni_add_beacon_offload(dev, hw, vif, + info->enable_beacon); + /* ensure that enable txcmd_mode after bss_info */ if (changed & (BSS_CHANGED_QOS | BSS_CHANGED_BEACON_ENABLED)) mt7921_mcu_set_tx(dev, vif); @@ -1179,6 +1202,56 @@ MCU_UNI_CMD_STA_REC_UPDATE); } +static void +mt7921_channel_switch_beacon(struct ieee80211_hw *hw, + struct ieee80211_vif *vif, + struct cfg80211_chan_def *chandef) +{ + struct mt7921_dev *dev = mt7921_hw_dev(hw); + + mt7921_mutex_acquire(dev); + mt7921_mcu_uni_add_beacon_offload(dev, hw, vif, true); + mt7921_mutex_release(dev); +} + +static int +mt7921_start_ap(struct ieee80211_hw *hw, + struct ieee80211_vif *vif) +{ + struct mt7921_vif *mvif = (struct mt7921_vif *)vif->drv_priv; + struct mt7921_phy *phy = mt7921_hw_phy(hw); + struct mt7921_dev *dev = mt7921_hw_dev(hw); + int err; + + err = mt76_connac_mcu_uni_add_bss(phy->mt76, vif, &mvif->sta.wcid, + true); + if (err) + return err; + + err = mt7921_mcu_set_bss_pm(dev, vif, true); + if (err) + return err; + + return mt7921_mcu_sta_update(dev, NULL, vif, true, + MT76_STA_INFO_STATE_NONE); +} + +static void +mt7921_stop_ap(struct ieee80211_hw *hw, + struct ieee80211_vif *vif) +{ + struct mt7921_vif *mvif = (struct mt7921_vif *)vif->drv_priv; + struct mt7921_phy *phy = mt7921_hw_phy(hw); + struct mt7921_dev *dev = mt7921_hw_dev(hw); + int err; + + err = mt7921_mcu_set_bss_pm(dev, vif, false); + if (err) + return; + + mt76_connac_mcu_uni_add_bss(phy->mt76, vif, &mvif->sta.wcid, false); +} + const struct ieee80211_ops mt7921_ops = { .tx = mt7921_tx, .start = mt7921_start, @@ -1189,6 +1262,8 @@ .conf_tx = mt7921_conf_tx, .configure_filter = mt7921_configure_filter, .bss_info_changed = mt7921_bss_info_changed, + .start_ap = mt7921_start_ap, + .stop_ap = mt7921_stop_ap, .sta_state = mt7921_sta_state, .sta_pre_rcu_remove = mt76_sta_pre_rcu_remove, .set_key = mt7921_set_key, @@ -1197,6 +1272,7 @@ .set_rts_threshold = mt7921_set_rts_threshold, .wake_tx_queue = mt76_wake_tx_queue, .release_buffered_frames = mt76_release_buffered_frames, + .channel_switch_beacon = mt7921_channel_switch_beacon, .get_txpower = mt76_get_txpower, .get_stats = mt7921_get_stats, .get_tsf = mt7921_get_tsf, diff -u linux-intel-iotg-5.15-5.15.0/drivers/net/wireless/mediatek/mt76/mt7921/mcu.c linux-intel-iotg-5.15-5.15.0/drivers/net/wireless/mediatek/mt76/mt7921/mcu.c --- linux-intel-iotg-5.15-5.15.0/drivers/net/wireless/mediatek/mt76/mt7921/mcu.c +++ linux-intel-iotg-5.15-5.15.0/drivers/net/wireless/mediatek/mt76/mt7921/mcu.c @@ -441,7 +441,8 @@ if (mvif->idx != event->bss_idx) return; - if (!(vif->driver_flags & IEEE80211_VIF_BEACON_FILTER)) + if (!(vif->driver_flags & IEEE80211_VIF_BEACON_FILTER) || + vif->type != NL80211_IFTYPE_STATION) return; ieee80211_connection_loss(vif); @@ -1331,9 +1332,6 @@ }; int err; - if (vif->type != NL80211_IFTYPE_STATION) - return 0; - err = mt76_mcu_send_msg(&dev->mt76, MCU_CMD_SET_BSS_ABORT, &req_hdr, sizeof(req_hdr), false); if (err < 0 || !enable) @@ -1513,0 +1512,78 @@ + +int +mt7921_mcu_uni_add_beacon_offload(struct mt7921_dev *dev, + struct ieee80211_hw *hw, + struct ieee80211_vif *vif, + bool enable) +{ + struct mt7921_vif *mvif = (struct mt7921_vif *)vif->drv_priv; + struct mt76_wcid *wcid = &dev->mt76.global_wcid; + struct ieee80211_mutable_offsets offs; + struct { + struct req_hdr { + u8 bss_idx; + u8 pad[3]; + } __packed hdr; + struct bcn_content_tlv { + __le16 tag; + __le16 len; + __le16 tim_ie_pos; + __le16 csa_ie_pos; + __le16 bcc_ie_pos; + /* 0: disable beacon offload + * 1: enable beacon offload + * 2: update probe respond offload + */ + u8 enable; + /* 0: legacy format (TXD + payload) + * 1: only cap field IE + */ + u8 type; + __le16 pkt_len; + u8 pkt[512]; + } __packed beacon_tlv; + } req = { + .hdr = { + .bss_idx = mvif->mt76.idx, + }, + .beacon_tlv = { + .tag = cpu_to_le16(UNI_BSS_INFO_BCN_CONTENT), + .len = cpu_to_le16(sizeof(struct bcn_content_tlv)), + .enable = enable, + }, + }; + struct sk_buff *skb; + + /* support enable/update process only + * disable flow would be handled in bss stop handler automatically + */ + if (!enable) + return -EOPNOTSUPP; + + skb = ieee80211_beacon_get_template(mt76_hw(dev), vif, &offs); + if (!skb) + return -EINVAL; + + if (skb->len > 512 - MT_TXD_SIZE) { + dev_err(dev->mt76.dev, "beacon size limit exceed\n"); + dev_kfree_skb(skb); + return -EINVAL; + } + + mt7921_mac_write_txwi(dev, (__le32 *)(req.beacon_tlv.pkt), skb, + wcid, NULL, true); + memcpy(req.beacon_tlv.pkt + MT_TXD_SIZE, skb->data, skb->len); + req.beacon_tlv.pkt_len = cpu_to_le16(MT_TXD_SIZE + skb->len); + req.beacon_tlv.tim_ie_pos = cpu_to_le16(MT_TXD_SIZE + offs.tim_offset); + + if (offs.cntdwn_counter_offs[0]) { + u16 csa_offs; + + csa_offs = MT_TXD_SIZE + offs.cntdwn_counter_offs[0] - 4; + req.beacon_tlv.csa_ie_pos = cpu_to_le16(csa_offs); + } + dev_kfree_skb(skb); + + return mt76_mcu_send_msg(&dev->mt76, MCU_UNI_CMD_BSS_INFO_UPDATE, + &req, sizeof(req), true); +} diff -u linux-intel-iotg-5.15-5.15.0/drivers/net/wireless/mediatek/mt76/mt7921/mt7921.h linux-intel-iotg-5.15-5.15.0/drivers/net/wireless/mediatek/mt76/mt7921/mt7921.h --- linux-intel-iotg-5.15-5.15.0/drivers/net/wireless/mediatek/mt76/mt7921/mt7921.h +++ linux-intel-iotg-5.15-5.15.0/drivers/net/wireless/mediatek/mt76/mt7921/mt7921.h @@ -394,2 +394,6 @@ int mt7921_get_txpwr_info(struct mt7921_dev *dev, struct mt7921_txpwr *txpwr); +int mt7921_mcu_uni_add_beacon_offload(struct mt7921_dev *dev, + struct ieee80211_hw *hw, + struct ieee80211_vif *vif, + bool enable); #endif diff -u linux-intel-iotg-5.15-5.15.0/drivers/net/wireless/mediatek/mt76/mt7921/pci.c linux-intel-iotg-5.15-5.15.0/drivers/net/wireless/mediatek/mt76/mt7921/pci.c --- linux-intel-iotg-5.15-5.15.0/drivers/net/wireless/mediatek/mt76/mt7921/pci.c +++ linux-intel-iotg-5.15-5.15.0/drivers/net/wireless/mediatek/mt76/mt7921/pci.c @@ -261,8 +261,10 @@ dev->bus_ops = dev->mt76.bus; bus_ops = devm_kmemdup(dev->mt76.dev, dev->bus_ops, sizeof(*bus_ops), GFP_KERNEL); - if (!bus_ops) - return -ENOMEM; + if (!bus_ops) { + ret = -ENOMEM; + goto err_free_dev; + } bus_ops->rr = mt7921_rr; bus_ops->wr = mt7921_wr; @@ -271,7 +273,7 @@ ret = __mt7921_mcu_drv_check_pmctrl(dev); if(ret) - return ret; + goto err_free_dev; mdev->rev = (mt7921_l1_rr(dev, MT_HW_CHIPID) << 16) | (mt7921_l1_rr(dev, MT_HW_REV) & 0xff); diff -u linux-intel-iotg-5.15-5.15.0/drivers/net/wireless/realtek/rtw88/fw.c linux-intel-iotg-5.15-5.15.0/drivers/net/wireless/realtek/rtw88/fw.c --- linux-intel-iotg-5.15-5.15.0/drivers/net/wireless/realtek/rtw88/fw.c +++ linux-intel-iotg-5.15-5.15.0/drivers/net/wireless/realtek/rtw88/fw.c @@ -541,7 +541,6 @@ void rtw_fw_send_ra_info(struct rtw_dev *rtwdev, struct rtw_sta_info *si) { u8 h2c_pkt[H2C_PKT_SIZE] = {0}; - bool no_update = si->updated; bool disable_pt = true; SET_H2C_CMD_ID_CLASS(h2c_pkt, H2C_CMD_RA_INFO); @@ -552,7 +551,7 @@ SET_RA_INFO_SGI_EN(h2c_pkt, si->sgi_enable); SET_RA_INFO_BW_MODE(h2c_pkt, si->bw_mode); SET_RA_INFO_LDPC(h2c_pkt, !!si->ldpc_en); - SET_RA_INFO_NO_UPDATE(h2c_pkt, no_update); + SET_RA_INFO_NO_UPDATE(h2c_pkt, si->no_update); SET_RA_INFO_VHT_EN(h2c_pkt, si->vht_enable); SET_RA_INFO_DIS_PT(h2c_pkt, disable_pt); SET_RA_INFO_RA_MASK0(h2c_pkt, (si->ra_mask & 0xff)); @@ -561,7 +560,6 @@ SET_RA_INFO_RA_MASK3(h2c_pkt, (si->ra_mask & 0xff000000) >> 24); si->init_ra_lv = 0; - si->updated = true; rtw_fw_send_h2c_command(rtwdev, h2c_pkt); } @@ -1001,6 +999,7 @@ struct rtw_vif *rtwvif; struct sk_buff *skb_new; struct cfg80211_ssid *ssid; + u16 tim_offset; if (rsvd_pkt->type == RSVD_DUMMY) { skb_new = alloc_skb(1, GFP_KERNEL); @@ -1019,7 +1018,8 @@ switch (rsvd_pkt->type) { case RSVD_BEACON: - skb_new = ieee80211_beacon_get(hw, vif); + skb_new = ieee80211_beacon_get_tim(hw, vif, &tim_offset, NULL); + rsvd_pkt->tim_offset = tim_offset; break; case RSVD_PS_POLL: skb_new = ieee80211_pspoll_get(hw, vif); diff -u linux-intel-iotg-5.15-5.15.0/drivers/net/wireless/realtek/rtw88/main.c linux-intel-iotg-5.15-5.15.0/drivers/net/wireless/realtek/rtw88/main.c --- linux-intel-iotg-5.15-5.15.0/drivers/net/wireless/realtek/rtw88/main.c +++ linux-intel-iotg-5.15-5.15.0/drivers/net/wireless/realtek/rtw88/main.c @@ -291,7 +291,7 @@ for (i = 0; i < ARRAY_SIZE(sta->txq); i++) rtw_txq_init(rtwdev, sta->txq[i]); - rtw_update_sta_info(rtwdev, si); + rtw_update_sta_info(rtwdev, si, true); rtw_fw_media_status_report(rtwdev, si->mac_id, true); rtwdev->sta_cnt++; @@ -628,6 +628,12 @@ rtw_iterate_stas_atomic(rtwdev, rtw_txq_ba_iter, &data); } +void rtw_set_dtim_period(struct rtw_dev *rtwdev, int dtim_period) +{ + rtw_write32_set(rtwdev, REG_TCR, BIT_TCR_UPDATE_TIMIE); + rtw_write8(rtwdev, REG_DTIM_COUNTER_ROOT, dtim_period - 1); +} + void rtw_get_channel_params(struct cfg80211_chan_def *chandef, struct rtw_channel_params *chan_params) { @@ -1034,7 +1040,8 @@ return ra_mask; } -void rtw_update_sta_info(struct rtw_dev *rtwdev, struct rtw_sta_info *si) +void rtw_update_sta_info(struct rtw_dev *rtwdev, struct rtw_sta_info *si, + bool update) { struct rtw_dm_info *dm_info = &rtwdev->dm_info; struct ieee80211_sta *sta = si->sta; @@ -1136,6 +1143,7 @@ ra_mask = rtw_update_rate_mask(rtwdev, si, ra_mask, is_vht_enable, wireless_set); + si->no_update = !update; si->bw_mode = bw_mode; si->stbc_en = stbc_en; si->ldpc_en = ldpc_en; diff -u linux-intel-iotg-5.15-5.15.0/drivers/net/wireless/realtek/rtw88/pci.c linux-intel-iotg-5.15-5.15.0/drivers/net/wireless/realtek/rtw88/pci.c --- linux-intel-iotg-5.15-5.15.0/drivers/net/wireless/realtek/rtw88/pci.c +++ linux-intel-iotg-5.15-5.15.0/drivers/net/wireless/realtek/rtw88/pci.c @@ -686,6 +686,9 @@ queue = RTW_TX_QUEUE_BCN; else if (unlikely(ieee80211_is_mgmt(fc) || ieee80211_is_ctl(fc))) queue = RTW_TX_QUEUE_MGMT; + else if (is_broadcast_ether_addr(hdr->addr1) || + is_multicast_ether_addr(hdr->addr1)) + queue = RTW_TX_QUEUE_HI0; else if (WARN_ON_ONCE(q_mapping >= ARRAY_SIZE(ac_to_hwq))) queue = ac_to_hwq[IEEE80211_AC_BE]; else @@ -1475,12 +1478,15 @@ static void rtw_pci_phy_cfg(struct rtw_dev *rtwdev) { + struct rtw_pci *rtwpci = (struct rtw_pci *)rtwdev->priv; struct rtw_chip_info *chip = rtwdev->chip; + struct pci_dev *pdev = rtwpci->pdev; const struct rtw_intf_phy_para *para; u16 cut; u16 value; u16 offset; int i; + int ret; cut = BIT(0) << rtwdev->hal.cut_version; @@ -1513,6 +1519,15 @@ } rtw_pci_link_cfg(rtwdev); + + /* Disable 8821ce completion timeout by default */ + if (chip->id == RTW_CHIP_TYPE_8821C) { + ret = pcie_capability_set_word(pdev, PCI_EXP_DEVCTL2, + PCI_EXP_DEVCTL2_COMP_TMOUT_DIS); + if (ret) + rtw_err(rtwdev, "failed to set PCI cap, ret = %d\n", + ret); + } } static int __maybe_unused rtw_pci_suspend(struct device *dev) diff -u linux-intel-iotg-5.15-5.15.0/drivers/net/wireless/realtek/rtw88/reg.h linux-intel-iotg-5.15-5.15.0/drivers/net/wireless/realtek/rtw88/reg.h --- linux-intel-iotg-5.15-5.15.0/drivers/net/wireless/realtek/rtw88/reg.h +++ linux-intel-iotg-5.15-5.15.0/drivers/net/wireless/realtek/rtw88/reg.h @@ -387,12 +387,14 @@ #define BIT_EN_FREE_CNT BIT(3) #define BIT_DIS_SECOND_CCA (BIT(0) | BIT(1)) #define REG_HIQ_NO_LMT_EN 0x5A7 +#define REG_DTIM_COUNTER_ROOT 0x5A8 #define BIT_HIQ_NO_LMT_EN_ROOT BIT(0) #define REG_TIMER0_SRC_SEL 0x05B4 #define BIT_TSFT_SEL_TIMER0 (BIT(4) | BIT(5) | BIT(6)) #define REG_TCR 0x0604 #define BIT_PWRMGT_HWDATA_EN BIT(7) +#define BIT_TCR_UPDATE_TIMIE BIT(5) #define REG_RCR 0x0608 #define BIT_APP_FCS BIT(31) #define BIT_APP_MIC BIT(30) diff -u linux-intel-iotg-5.15-5.15.0/drivers/nfc/pn533/pn533.c linux-intel-iotg-5.15-5.15.0/drivers/nfc/pn533/pn533.c --- linux-intel-iotg-5.15-5.15.0/drivers/nfc/pn533/pn533.c +++ linux-intel-iotg-5.15-5.15.0/drivers/nfc/pn533/pn533.c @@ -2789,13 +2789,14 @@ { struct pn533_cmd *cmd, *n; + /* delete the timer before cleanup the worker */ + del_timer_sync(&priv->listen_timer); + flush_delayed_work(&priv->poll_work); destroy_workqueue(priv->wq); skb_queue_purge(&priv->resp_q); - del_timer(&priv->listen_timer); - list_for_each_entry_safe(cmd, n, &priv->cmd_queue, queue) { list_del(&cmd->queue); kfree(cmd); diff -u linux-intel-iotg-5.15-5.15.0/drivers/nfc/st21nfca/se.c linux-intel-iotg-5.15-5.15.0/drivers/nfc/st21nfca/se.c --- linux-intel-iotg-5.15-5.15.0/drivers/nfc/st21nfca/se.c +++ linux-intel-iotg-5.15-5.15.0/drivers/nfc/st21nfca/se.c @@ -241,7 +241,7 @@ } EXPORT_SYMBOL(st21nfca_hci_se_io); -static void st21nfca_se_wt_timeout(struct timer_list *t) +static void st21nfca_se_wt_work(struct work_struct *work) { /* * No answer from the secure element @@ -254,8 +254,9 @@ */ /* hardware reset managed through VCC_UICC_OUT power supply */ u8 param = 0x01; - struct st21nfca_hci_info *info = from_timer(info, t, - se_info.bwi_timer); + struct st21nfca_hci_info *info = container_of(work, + struct st21nfca_hci_info, + se_info.timeout_work); pr_debug("\n"); @@ -273,6 +274,13 @@ info->se_info.cb(info->se_info.cb_context, NULL, 0, -ETIME); } +static void st21nfca_se_wt_timeout(struct timer_list *t) +{ + struct st21nfca_hci_info *info = from_timer(info, t, se_info.bwi_timer); + + schedule_work(&info->se_info.timeout_work); +} + static void st21nfca_se_activation_timeout(struct timer_list *t) { struct st21nfca_hci_info *info = from_timer(info, t, @@ -364,6 +372,7 @@ switch (event) { case ST21NFCA_EVT_TRANSMIT_DATA: del_timer_sync(&info->se_info.bwi_timer); + cancel_work_sync(&info->se_info.timeout_work); info->se_info.bwi_active = false; r = nfc_hci_send_event(hdev, ST21NFCA_DEVICE_MGNT_GATE, ST21NFCA_EVT_SE_END_OF_APDU_TRANSFER, NULL, 0); @@ -393,6 +402,7 @@ struct st21nfca_hci_info *info = nfc_hci_get_clientdata(hdev); init_completion(&info->se_info.req_completion); + INIT_WORK(&info->se_info.timeout_work, st21nfca_se_wt_work); /* initialize timers */ timer_setup(&info->se_info.bwi_timer, st21nfca_se_wt_timeout, 0); info->se_info.bwi_active = false; @@ -420,6 +430,7 @@ if (info->se_info.se_active) del_timer_sync(&info->se_info.se_active_timer); + cancel_work_sync(&info->se_info.timeout_work); info->se_info.bwi_active = false; info->se_info.se_active = false; } diff -u linux-intel-iotg-5.15-5.15.0/drivers/nvme/host/core.c linux-intel-iotg-5.15-5.15.0/drivers/nvme/host/core.c --- linux-intel-iotg-5.15-5.15.0/drivers/nvme/host/core.c +++ linux-intel-iotg-5.15-5.15.0/drivers/nvme/host/core.c @@ -1354,6 +1354,8 @@ warn_str, cur->nidl); return -1; } + if (ctrl->quirks & NVME_QUIRK_BOGUS_NID) + return NVME_NIDT_EUI64_LEN; memcpy(ids->eui64, data + sizeof(*cur), NVME_NIDT_EUI64_LEN); return NVME_NIDT_EUI64_LEN; case NVME_NIDT_NGUID: @@ -1362,6 +1364,8 @@ warn_str, cur->nidl); return -1; } + if (ctrl->quirks & NVME_QUIRK_BOGUS_NID) + return NVME_NIDT_NGUID_LEN; memcpy(ids->nguid, data + sizeof(*cur), NVME_NIDT_NGUID_LEN); return NVME_NIDT_NGUID_LEN; case NVME_NIDT_UUID: @@ -1370,6 +1374,8 @@ warn_str, cur->nidl); return -1; } + if (ctrl->quirks & NVME_QUIRK_BOGUS_NID) + return NVME_NIDT_UUID_LEN; uuid_copy(&ids->uuid, data + sizeof(*cur)); return NVME_NIDT_UUID_LEN; case NVME_NIDT_CSI: @@ -1466,12 +1472,18 @@ if ((*id)->ncap == 0) /* namespace not allocated or attached */ goto out_free_id; - if (ctrl->vs >= NVME_VS(1, 1, 0) && - !memchr_inv(ids->eui64, 0, sizeof(ids->eui64))) - memcpy(ids->eui64, (*id)->eui64, sizeof(ids->eui64)); - if (ctrl->vs >= NVME_VS(1, 2, 0) && - !memchr_inv(ids->nguid, 0, sizeof(ids->nguid))) - memcpy(ids->nguid, (*id)->nguid, sizeof(ids->nguid)); + + if (ctrl->quirks & NVME_QUIRK_BOGUS_NID) { + dev_info(ctrl->device, + "Ignoring bogus Namespace Identifiers\n"); + } else { + if (ctrl->vs >= NVME_VS(1, 1, 0) && + !memchr_inv(ids->eui64, 0, sizeof(ids->eui64))) + memcpy(ids->eui64, (*id)->eui64, sizeof(ids->eui64)); + if (ctrl->vs >= NVME_VS(1, 2, 0) && + !memchr_inv(ids->nguid, 0, sizeof(ids->nguid))) + memcpy(ids->nguid, (*id)->nguid, sizeof(ids->nguid)); + } return 0; @@ -1765,7 +1777,7 @@ blk_queue_max_segments(q, min_t(u32, max_segments, USHRT_MAX)); } blk_queue_virt_boundary(q, NVME_CTRL_PAGE_SIZE - 1); - blk_queue_dma_alignment(q, 7); + blk_queue_dma_alignment(q, 3); blk_queue_write_cache(q, vwc, vwc); } @@ -2921,6 +2933,9 @@ ctrl->max_namespaces = le32_to_cpu(id->mnan); ctrl->ctratt = le32_to_cpu(id->ctratt); + ctrl->cntrltype = id->cntrltype; + ctrl->dctype = id->dctype; + if (id->rtd3e) { /* us -> s */ u32 transition_time = le32_to_cpu(id->rtd3e) / USEC_PER_SEC; @@ -3020,10 +3035,6 @@ if (ret) return ret; - ret = nvme_init_non_mdts_limits(ctrl); - if (ret < 0) - return ret; - ret = nvme_configure_apst(ctrl); if (ret < 0) return ret; @@ -3454,6 +3465,40 @@ static DEVICE_ATTR(fast_io_fail_tmo, S_IRUGO | S_IWUSR, nvme_ctrl_fast_io_fail_tmo_show, nvme_ctrl_fast_io_fail_tmo_store); +static ssize_t cntrltype_show(struct device *dev, + struct device_attribute *attr, char *buf) +{ + static const char * const type[] = { + [NVME_CTRL_IO] = "io\n", + [NVME_CTRL_DISC] = "discovery\n", + [NVME_CTRL_ADMIN] = "admin\n", + }; + struct nvme_ctrl *ctrl = dev_get_drvdata(dev); + + if (ctrl->cntrltype > NVME_CTRL_ADMIN || !type[ctrl->cntrltype]) + return sysfs_emit(buf, "reserved\n"); + + return sysfs_emit(buf, type[ctrl->cntrltype]); +} +static DEVICE_ATTR_RO(cntrltype); + +static ssize_t dctype_show(struct device *dev, + struct device_attribute *attr, char *buf) +{ + static const char * const type[] = { + [NVME_DCTYPE_NOT_REPORTED] = "none\n", + [NVME_DCTYPE_DDC] = "ddc\n", + [NVME_DCTYPE_CDC] = "cdc\n", + }; + struct nvme_ctrl *ctrl = dev_get_drvdata(dev); + + if (ctrl->dctype > NVME_DCTYPE_CDC || !type[ctrl->dctype]) + return sysfs_emit(buf, "reserved\n"); + + return sysfs_emit(buf, type[ctrl->dctype]); +} +static DEVICE_ATTR_RO(dctype); + static struct attribute *nvme_dev_attrs[] = { &dev_attr_reset_controller.attr, &dev_attr_rescan_controller.attr, @@ -3475,6 +3520,8 @@ &dev_attr_reconnect_delay.attr, &dev_attr_fast_io_fail_tmo.attr, &dev_attr_kato.attr, + &dev_attr_cntrltype.attr, + &dev_attr_dctype.attr, NULL }; @@ -4084,11 +4131,26 @@ { struct nvme_ctrl *ctrl = container_of(work, struct nvme_ctrl, scan_work); + int ret; /* No tagset on a live ctrl means IO queues could not created */ if (ctrl->state != NVME_CTRL_LIVE || !ctrl->tagset) return; + /* + * Identify controller limits can change at controller reset due to + * new firmware download, even though it is not common we cannot ignore + * such scenario. Controller's non-mdts limits are reported in the unit + * of logical blocks that is dependent on the format of attached + * namespace. Hence re-read the limits at the time of ns allocation. + */ + ret = nvme_init_non_mdts_limits(ctrl); + if (ret < 0) { + dev_warn(ctrl->device, + "reading non-mdts-limits failed: %d\n", ret); + return; + } + if (test_and_clear_bit(NVME_AER_NOTICE_NS_CHANGED, &ctrl->events)) { dev_info(ctrl->device, "rescanning namespaces.\n"); nvme_clear_changed_ns_log(ctrl); @@ -4173,6 +4235,13 @@ return ret; } +static void nvme_change_uevent(struct nvme_ctrl *ctrl, char *envdata) +{ + char *envp[2] = { envdata, NULL }; + + kobject_uevent_env(&ctrl->device->kobj, KOBJ_CHANGE, envp); +} + static void nvme_aen_uevent(struct nvme_ctrl *ctrl) { char *envp[2] = { NULL, NULL }; @@ -4346,7 +4415,10 @@ if (ctrl->queue_count > 1) { nvme_queue_scan(ctrl); nvme_start_queues(ctrl); + nvme_mpath_update(ctrl); } + + nvme_change_uevent(ctrl, "NVME_EVENT=connected"); } EXPORT_SYMBOL_GPL(nvme_start_ctrl); diff -u linux-intel-iotg-5.15-5.15.0/drivers/nvme/host/multipath.c linux-intel-iotg-5.15-5.15.0/drivers/nvme/host/multipath.c --- linux-intel-iotg-5.15-5.15.0/drivers/nvme/host/multipath.c +++ linux-intel-iotg-5.15-5.15.0/drivers/nvme/host/multipath.c @@ -574,8 +574,17 @@ ns->ana_grpid = le32_to_cpu(desc->grpid); ns->ana_state = desc->state; clear_bit(NVME_NS_ANA_PENDING, &ns->flags); - - if (nvme_state_is_live(ns->ana_state)) + /* + * nvme_mpath_set_live() will trigger I/O to the multipath path device + * and in turn to this path device. However we cannot accept this I/O + * if the controller is not live. This may deadlock if called from + * nvme_mpath_init_identify() and the ctrl will never complete + * initialization, preventing I/O from completing. For this case we + * will reprocess the ANA log page in nvme_mpath_update() once the + * controller is ready. + */ + if (nvme_state_is_live(ns->ana_state) && + ns->ctrl->state == NVME_CTRL_LIVE) nvme_mpath_set_live(ns); } @@ -662,6 +671,18 @@ nvme_read_ana_log(ctrl); } +void nvme_mpath_update(struct nvme_ctrl *ctrl) +{ + u32 nr_change_groups = 0; + + if (!ctrl->ana_log_buf) + return; + + mutex_lock(&ctrl->ana_lock); + nvme_parse_ana_log(ctrl, &nr_change_groups, nvme_update_ana_state); + mutex_unlock(&ctrl->ana_lock); +} + static void nvme_anatt_timeout(struct timer_list *t) { struct nvme_ctrl *ctrl = from_timer(ctrl, t, anatt_timer); diff -u linux-intel-iotg-5.15-5.15.0/drivers/nvme/host/nvme.h linux-intel-iotg-5.15-5.15.0/drivers/nvme/host/nvme.h --- linux-intel-iotg-5.15-5.15.0/drivers/nvme/host/nvme.h +++ linux-intel-iotg-5.15-5.15.0/drivers/nvme/host/nvme.h @@ -144,6 +144,11 @@ * encoding the generation sequence number. */ NVME_QUIRK_SKIP_CID_GEN = (1 << 17), + + /* + * Reports garbage in the namespace identifiers (eui64, nguid, uuid). + */ + NVME_QUIRK_BOGUS_NID = (1 << 18), }; /* @@ -348,6 +353,9 @@ unsigned long discard_page_busy; struct nvme_fault_inject fault_inject; + + enum nvme_ctrl_type cntrltype; + enum nvme_dctype dctype; }; enum nvme_iopolicy { @@ -771,6 +779,7 @@ void nvme_mpath_remove_disk(struct nvme_ns_head *head); int nvme_mpath_init_identify(struct nvme_ctrl *ctrl, struct nvme_id_ctrl *id); void nvme_mpath_init_ctrl(struct nvme_ctrl *ctrl); +void nvme_mpath_update(struct nvme_ctrl *ctrl); void nvme_mpath_uninit(struct nvme_ctrl *ctrl); void nvme_mpath_stop(struct nvme_ctrl *ctrl); bool nvme_mpath_clear_current_path(struct nvme_ns *ns); @@ -845,6 +854,9 @@ "Please enable CONFIG_NVME_MULTIPATH for full support of multi-port devices.\n"); return 0; } +static inline void nvme_mpath_update(struct nvme_ctrl *ctrl) +{ +} static inline void nvme_mpath_uninit(struct nvme_ctrl *ctrl) { } diff -u linux-intel-iotg-5.15-5.15.0/drivers/nvme/host/pci.c linux-intel-iotg-5.15-5.15.0/drivers/nvme/host/pci.c --- linux-intel-iotg-5.15-5.15.0/drivers/nvme/host/pci.c +++ linux-intel-iotg-5.15-5.15.0/drivers/nvme/host/pci.c @@ -1680,6 +1680,7 @@ dev->ctrl.admin_q = blk_mq_init_queue(&dev->admin_tagset); if (IS_ERR(dev->ctrl.admin_q)) { blk_mq_free_tag_set(&dev->admin_tagset); + dev->ctrl.admin_q = NULL; return -ENOMEM; } if (!blk_get_queue(dev->ctrl.admin_q)) { @@ -3314,7 +3315,10 @@ .driver_data = NVME_QUIRK_IGNORE_DEV_SUBNQN, }, { PCI_VDEVICE(INTEL, 0x5845), /* Qemu emulated controller */ .driver_data = NVME_QUIRK_IDENTIFY_CNS | - NVME_QUIRK_DISABLE_WRITE_ZEROES, }, + NVME_QUIRK_DISABLE_WRITE_ZEROES | + NVME_QUIRK_BOGUS_NID, }, + { PCI_VDEVICE(REDHAT, 0x0010), /* Qemu emulated controller */ + .driver_data = NVME_QUIRK_BOGUS_NID, }, { PCI_DEVICE(0x126f, 0x2263), /* Silicon Motion unidentified */ .driver_data = NVME_QUIRK_NO_NS_DESC_LIST, }, { PCI_DEVICE(0x1bb1, 0x0100), /* Seagate Nytro Flash Storage */ @@ -3352,6 +3356,10 @@ .driver_data = NVME_QUIRK_NO_DEEPEST_PS, }, { PCI_DEVICE(0x2646, 0x2263), /* KINGSTON A2000 NVMe SSD */ .driver_data = NVME_QUIRK_NO_DEEPEST_PS, }, + { PCI_DEVICE(0x1e4B, 0x1002), /* MAXIO MAP1002 */ + .driver_data = NVME_QUIRK_BOGUS_NID, }, + { PCI_DEVICE(0x1e4B, 0x1202), /* MAXIO MAP1202 */ + .driver_data = NVME_QUIRK_BOGUS_NID, }, { PCI_DEVICE(PCI_VENDOR_ID_AMAZON, 0x0061), .driver_data = NVME_QUIRK_DMA_ADDRESS_BITS_48, }, { PCI_DEVICE(PCI_VENDOR_ID_AMAZON, 0x0065), @@ -3372,7 +3380,10 @@ NVME_QUIRK_128_BYTES_SQES | NVME_QUIRK_SHARED_TAGS | NVME_QUIRK_SKIP_CID_GEN }, - + { PCI_DEVICE(0x144d, 0xa808), /* Samsung X5 */ + .driver_data = NVME_QUIRK_DELAY_BEFORE_CHK_RDY| + NVME_QUIRK_NO_DEEPEST_PS | + NVME_QUIRK_IGNORE_DEV_SUBNQN, }, { PCI_DEVICE_CLASS(PCI_CLASS_STORAGE_EXPRESS, 0xffffff) }, { 0, } }; diff -u linux-intel-iotg-5.15-5.15.0/drivers/nvme/target/configfs.c linux-intel-iotg-5.15-5.15.0/drivers/nvme/target/configfs.c --- linux-intel-iotg-5.15-5.15.0/drivers/nvme/target/configfs.c +++ linux-intel-iotg-5.15-5.15.0/drivers/nvme/target/configfs.c @@ -1554,7 +1554,7 @@ struct nvmet_port *port = to_nvmet_port(item); /* Let inflight controllers teardown complete */ - flush_scheduled_work(); + flush_workqueue(nvmet_wq); list_del(&port->global_entry); kfree(port->ana_state); diff -u linux-intel-iotg-5.15-5.15.0/drivers/nvme/target/io-cmd-file.c linux-intel-iotg-5.15-5.15.0/drivers/nvme/target/io-cmd-file.c --- linux-intel-iotg-5.15-5.15.0/drivers/nvme/target/io-cmd-file.c +++ linux-intel-iotg-5.15-5.15.0/drivers/nvme/target/io-cmd-file.c @@ -292,7 +292,7 @@ if (!nvmet_check_transfer_len(req, 0)) return; INIT_WORK(&req->f.work, nvmet_file_flush_work); - schedule_work(&req->f.work); + queue_work(nvmet_wq, &req->f.work); } static void nvmet_file_execute_discard(struct nvmet_req *req) @@ -352,7 +352,7 @@ if (!nvmet_check_data_len_lte(req, nvmet_dsm_len(req))) return; INIT_WORK(&req->f.work, nvmet_file_dsm_work); - schedule_work(&req->f.work); + queue_work(nvmet_wq, &req->f.work); } static void nvmet_file_write_zeroes_work(struct work_struct *w) @@ -382,7 +382,7 @@ if (!nvmet_check_transfer_len(req, 0)) return; INIT_WORK(&req->f.work, nvmet_file_write_zeroes_work); - schedule_work(&req->f.work); + queue_work(nvmet_wq, &req->f.work); } u16 nvmet_file_parse_io_cmd(struct nvmet_req *req) diff -u linux-intel-iotg-5.15-5.15.0/drivers/nvme/target/rdma.c linux-intel-iotg-5.15-5.15.0/drivers/nvme/target/rdma.c --- linux-intel-iotg-5.15-5.15.0/drivers/nvme/target/rdma.c +++ linux-intel-iotg-5.15-5.15.0/drivers/nvme/target/rdma.c @@ -1583,7 +1583,7 @@ if (queue->host_qid == 0) { /* Let inflight controller teardown complete */ - flush_scheduled_work(); + flush_workqueue(nvmet_wq); } ret = nvmet_rdma_cm_accept(cm_id, queue, &event->param.conn); @@ -1668,7 +1668,7 @@ if (disconnect) { rdma_disconnect(queue->cm_id); - schedule_work(&queue->release_work); + queue_work(nvmet_wq, &queue->release_work); } } @@ -1698,7 +1698,7 @@ mutex_unlock(&nvmet_rdma_queue_mutex); pr_err("failed to connect queue %d\n", queue->idx); - schedule_work(&queue->release_work); + queue_work(nvmet_wq, &queue->release_work); } /** @@ -1772,7 +1772,7 @@ if (!queue) { struct nvmet_rdma_port *port = cm_id->context; - schedule_delayed_work(&port->repair_work, 0); + queue_delayed_work(nvmet_wq, &port->repair_work, 0); break; } fallthrough; @@ -1902,7 +1902,7 @@ nvmet_rdma_disable_port(port); ret = nvmet_rdma_enable_port(port); if (ret) - schedule_delayed_work(&port->repair_work, 5 * HZ); + queue_delayed_work(nvmet_wq, &port->repair_work, 5 * HZ); } static int nvmet_rdma_add_port(struct nvmet_port *nport) @@ -2046,7 +2046,7 @@ } mutex_unlock(&nvmet_rdma_queue_mutex); - flush_scheduled_work(); + flush_workqueue(nvmet_wq); } static struct ib_client nvmet_rdma_ib_client = { diff -u linux-intel-iotg-5.15-5.15.0/drivers/nvme/target/tcp.c linux-intel-iotg-5.15-5.15.0/drivers/nvme/target/tcp.c --- linux-intel-iotg-5.15-5.15.0/drivers/nvme/target/tcp.c +++ linux-intel-iotg-5.15-5.15.0/drivers/nvme/target/tcp.c @@ -1251,7 +1251,7 @@ spin_lock(&queue->state_lock); if (queue->state != NVMET_TCP_Q_DISCONNECTING) { queue->state = NVMET_TCP_Q_DISCONNECTING; - schedule_work(&queue->release_work); + queue_work(nvmet_wq, &queue->release_work); } spin_unlock(&queue->state_lock); } @@ -1662,7 +1662,7 @@ goto out; if (sk->sk_state == TCP_LISTEN) - schedule_work(&port->accept_work); + queue_work(nvmet_wq, &port->accept_work); out: read_unlock_bh(&sk->sk_callback_lock); } @@ -1793,7 +1793,7 @@ if (sq->qid == 0) { /* Let inflight controller teardown complete */ - flush_scheduled_work(); + flush_workqueue(nvmet_wq); } queue->nr_cmds = sq->size * 2; @@ -1854,12 +1854,12 @@ nvmet_unregister_transport(&nvmet_tcp_ops); - flush_scheduled_work(); + flush_workqueue(nvmet_wq); mutex_lock(&nvmet_tcp_queue_mutex); list_for_each_entry(queue, &nvmet_tcp_queue_list, queue_list) kernel_sock_shutdown(queue->sock, SHUT_RDWR); mutex_unlock(&nvmet_tcp_queue_mutex); - flush_scheduled_work(); + flush_workqueue(nvmet_wq); destroy_workqueue(nvmet_tcp_wq); } diff -u linux-intel-iotg-5.15-5.15.0/drivers/opp/of.c linux-intel-iotg-5.15-5.15.0/drivers/opp/of.c --- linux-intel-iotg-5.15-5.15.0/drivers/opp/of.c +++ linux-intel-iotg-5.15-5.15.0/drivers/opp/of.c @@ -437,11 +437,11 @@ /* Checking only first OPP is sufficient */ np = of_get_next_available_child(opp_np, NULL); + of_node_put(opp_np); if (!np) { dev_err(dev, "OPP table empty\n"); return -EINVAL; } - of_node_put(opp_np); prop = of_find_property(np, "opp-peak-kBps", NULL); of_node_put(np); diff -u linux-intel-iotg-5.15-5.15.0/drivers/pci/controller/dwc/pci-imx6.c linux-intel-iotg-5.15-5.15.0/drivers/pci/controller/dwc/pci-imx6.c --- linux-intel-iotg-5.15-5.15.0/drivers/pci/controller/dwc/pci-imx6.c +++ linux-intel-iotg-5.15-5.15.0/drivers/pci/controller/dwc/pci-imx6.c @@ -403,6 +403,11 @@ dev_err(dev, "failed to disable vpcie regulator: %d\n", ret); } + + /* Some boards don't have PCIe reset GPIO. */ + if (gpio_is_valid(imx6_pcie->reset_gpio)) + gpio_set_value_cansleep(imx6_pcie->reset_gpio, + imx6_pcie->gpio_active_high); } static unsigned int imx6_pcie_grp_offset(const struct imx6_pcie *imx6_pcie) @@ -525,15 +530,6 @@ /* allow the clocks to stabilize */ usleep_range(200, 500); - /* Some boards don't have PCIe reset GPIO. */ - if (gpio_is_valid(imx6_pcie->reset_gpio)) { - gpio_set_value_cansleep(imx6_pcie->reset_gpio, - imx6_pcie->gpio_active_high); - msleep(100); - gpio_set_value_cansleep(imx6_pcie->reset_gpio, - !imx6_pcie->gpio_active_high); - } - switch (imx6_pcie->drvdata->variant) { case IMX8MQ: reset_control_deassert(imx6_pcie->pciephy_reset); @@ -576,6 +572,15 @@ break; } + /* Some boards don't have PCIe reset GPIO. */ + if (gpio_is_valid(imx6_pcie->reset_gpio)) { + msleep(100); + gpio_set_value_cansleep(imx6_pcie->reset_gpio, + !imx6_pcie->gpio_active_high); + /* Wait for 100ms after PERST# deassertion (PCIe r5.0, 6.6.1) */ + msleep(100); + } + return; err_ref_clk: diff -u linux-intel-iotg-5.15-5.15.0/drivers/pci/controller/pci-aardvark.c linux-intel-iotg-5.15-5.15.0/drivers/pci/controller/pci-aardvark.c --- linux-intel-iotg-5.15-5.15.0/drivers/pci/controller/pci-aardvark.c +++ linux-intel-iotg-5.15-5.15.0/drivers/pci/controller/pci-aardvark.c @@ -38,10 +38,6 @@ #define PCIE_CORE_ERR_CAPCTL_ECRC_CHK_TX_EN BIT(6) #define PCIE_CORE_ERR_CAPCTL_ECRC_CHCK BIT(7) #define PCIE_CORE_ERR_CAPCTL_ECRC_CHCK_RCV BIT(8) -#define PCIE_CORE_INT_A_ASSERT_ENABLE 1 -#define PCIE_CORE_INT_B_ASSERT_ENABLE 2 -#define PCIE_CORE_INT_C_ASSERT_ENABLE 3 -#define PCIE_CORE_INT_D_ASSERT_ENABLE 4 /* PIO registers base address and register offsets */ #define PIO_BASE_ADDR 0x4000 #define PIO_CTRL (PIO_BASE_ADDR + 0x0) @@ -102,6 +98,10 @@ #define PCIE_MSG_PM_PME_MASK BIT(7) #define PCIE_ISR0_MASK_REG (CONTROL_BASE_ADDR + 0x44) #define PCIE_ISR0_MSI_INT_PENDING BIT(24) +#define PCIE_ISR0_CORR_ERR BIT(11) +#define PCIE_ISR0_NFAT_ERR BIT(12) +#define PCIE_ISR0_FAT_ERR BIT(13) +#define PCIE_ISR0_ERR_MASK GENMASK(13, 11) #define PCIE_ISR0_INTX_ASSERT(val) BIT(16 + (val)) #define PCIE_ISR0_INTX_DEASSERT(val) BIT(20 + (val)) #define PCIE_ISR0_ALL_MASK GENMASK(31, 0) @@ -115,6 +115,7 @@ #define PCIE_MSI_ADDR_HIGH_REG (CONTROL_BASE_ADDR + 0x54) #define PCIE_MSI_STATUS_REG (CONTROL_BASE_ADDR + 0x58) #define PCIE_MSI_MASK_REG (CONTROL_BASE_ADDR + 0x5C) +#define PCIE_MSI_ALL_MASK GENMASK(31, 0) #define PCIE_MSI_PAYLOAD_REG (CONTROL_BASE_ADDR + 0x9C) #define PCIE_MSI_DATA_MASK GENMASK(15, 0) @@ -271,17 +272,15 @@ u32 actions; } wins[OB_WIN_COUNT]; u8 wins_count; + struct irq_domain *rp_irq_domain; struct irq_domain *irq_domain; struct irq_chip irq_chip; raw_spinlock_t irq_lock; struct irq_domain *msi_domain; struct irq_domain *msi_inner_domain; - struct irq_chip msi_bottom_irq_chip; - struct irq_chip msi_irq_chip; - struct msi_domain_info msi_domain_info; + raw_spinlock_t msi_irq_lock; DECLARE_BITMAP(msi_used, MSI_IRQ_NUM); struct mutex msi_used_lock; - u16 msi_msg; int link_gen; struct pci_bridge_emul bridge; struct gpio_desc *reset_gpio; @@ -476,6 +475,7 @@ static void advk_pcie_setup_hw(struct advk_pcie *pcie) { + phys_addr_t msi_addr; u32 reg; int i; @@ -564,25 +564,36 @@ reg |= LANE_COUNT_1; advk_writel(pcie, reg, PCIE_CORE_CTRL0_REG); + /* Set MSI address */ + msi_addr = virt_to_phys(pcie); + advk_writel(pcie, lower_32_bits(msi_addr), PCIE_MSI_ADDR_LOW_REG); + advk_writel(pcie, upper_32_bits(msi_addr), PCIE_MSI_ADDR_HIGH_REG); + /* Enable MSI */ reg = advk_readl(pcie, PCIE_CORE_CTRL2_REG); reg |= PCIE_CORE_CTRL2_MSI_ENABLE; advk_writel(pcie, reg, PCIE_CORE_CTRL2_REG); /* Clear all interrupts */ + advk_writel(pcie, PCIE_MSI_ALL_MASK, PCIE_MSI_STATUS_REG); advk_writel(pcie, PCIE_ISR0_ALL_MASK, PCIE_ISR0_REG); advk_writel(pcie, PCIE_ISR1_ALL_MASK, PCIE_ISR1_REG); advk_writel(pcie, PCIE_IRQ_ALL_MASK, HOST_CTRL_INT_STATUS_REG); - /* Disable All ISR0/1 Sources */ - reg = PCIE_ISR0_ALL_MASK; + /* Disable All ISR0/1 and MSI Sources */ + advk_writel(pcie, PCIE_ISR0_ALL_MASK, PCIE_ISR0_MASK_REG); + advk_writel(pcie, PCIE_ISR1_ALL_MASK, PCIE_ISR1_MASK_REG); + advk_writel(pcie, PCIE_MSI_ALL_MASK, PCIE_MSI_MASK_REG); + + /* Unmask summary MSI interrupt */ + reg = advk_readl(pcie, PCIE_ISR0_MASK_REG); reg &= ~PCIE_ISR0_MSI_INT_PENDING; advk_writel(pcie, reg, PCIE_ISR0_MASK_REG); - advk_writel(pcie, PCIE_ISR1_ALL_MASK, PCIE_ISR1_MASK_REG); - - /* Unmask all MSIs */ - advk_writel(pcie, 0, PCIE_MSI_MASK_REG); + /* Unmask PME interrupt for processing of PME requester */ + reg = advk_readl(pcie, PCIE_ISR0_MASK_REG); + reg &= ~PCIE_MSG_PM_PME_MASK; + advk_writel(pcie, reg, PCIE_ISR0_MASK_REG); /* Enable summary interrupt for GIC SPI source */ reg = PCIE_IRQ_ALL_MASK & (~PCIE_IRQ_ENABLE_INTS_MASK); @@ -776,11 +787,15 @@ case PCI_INTERRUPT_LINE: { /* * From the whole 32bit register we support reading from HW only - * one bit: PCI_BRIDGE_CTL_BUS_RESET. + * two bits: PCI_BRIDGE_CTL_BUS_RESET and PCI_BRIDGE_CTL_SERR. * Other bits are retrieved only from emulated config buffer. */ __le32 *cfgspace = (__le32 *)&bridge->conf; u32 val = le32_to_cpu(cfgspace[PCI_INTERRUPT_LINE / 4]); + if (advk_readl(pcie, PCIE_ISR0_MASK_REG) & PCIE_ISR0_ERR_MASK) + val &= ~(PCI_BRIDGE_CTL_SERR << 16); + else + val |= PCI_BRIDGE_CTL_SERR << 16; if (advk_readl(pcie, PCIE_CORE_CTRL1_REG) & HOT_RESET_GEN) val |= PCI_BRIDGE_CTL_BUS_RESET << 16; else @@ -806,6 +821,19 @@ break; case PCI_INTERRUPT_LINE: + /* + * According to Figure 6-3: Pseudo Logic Diagram for Error + * Message Controls in PCIe base specification, SERR# Enable bit + * in Bridge Control register enable receiving of ERR_* messages + */ + if (mask & (PCI_BRIDGE_CTL_SERR << 16)) { + u32 val = advk_readl(pcie, PCIE_ISR0_MASK_REG); + if (new & (PCI_BRIDGE_CTL_SERR << 16)) + val &= ~PCIE_ISR0_ERR_MASK; + else + val |= PCIE_ISR0_ERR_MASK; + advk_writel(pcie, val, PCIE_ISR0_MASK_REG); + } if (mask & (PCI_BRIDGE_CTL_BUS_RESET << 16)) { u32 val = advk_readl(pcie, PCIE_CORE_CTRL1_REG); if (new & (PCI_BRIDGE_CTL_BUS_RESET << 16)) @@ -833,22 +861,11 @@ *value = PCI_EXP_SLTSTA_PDS << 16; return PCI_BRIDGE_EMUL_HANDLED; - case PCI_EXP_RTCTL: { - u32 val = advk_readl(pcie, PCIE_ISR0_MASK_REG); - *value = (val & PCIE_MSG_PM_PME_MASK) ? 0 : PCI_EXP_RTCTL_PMEIE; - *value |= le16_to_cpu(bridge->pcie_conf.rootctl) & PCI_EXP_RTCTL_CRSSVE; - *value |= PCI_EXP_RTCAP_CRSVIS << 16; - return PCI_BRIDGE_EMUL_HANDLED; - } - - case PCI_EXP_RTSTA: { - u32 isr0 = advk_readl(pcie, PCIE_ISR0_REG); - u32 msglog = advk_readl(pcie, PCIE_MSG_LOG_REG); - *value = msglog >> 16; - if (isr0 & PCIE_MSG_PM_PME_MASK) - *value |= PCI_EXP_RTSTA_PME; - return PCI_BRIDGE_EMUL_HANDLED; - } + /* + * PCI_EXP_RTCTL and PCI_EXP_RTSTA are also supported, but do not need + * to be handled here, because their values are stored in emulated + * config space buffer, and we read them from there when needed. + */ case PCI_EXP_LNKCAP: { u32 val = advk_readl(pcie, PCIE_CORE_PCIEXP_CAP + reg); @@ -876,8 +893,13 @@ case PCI_EXP_DEVCAP: case PCI_EXP_DEVCTL: + case PCI_EXP_DEVCAP2: + case PCI_EXP_DEVCTL2: + case PCI_EXP_LNKCAP2: + case PCI_EXP_LNKCTL2: *value = advk_readl(pcie, PCIE_CORE_PCIEXP_CAP + reg); return PCI_BRIDGE_EMUL_HANDLED; + default: return PCI_BRIDGE_EMUL_NOT_HANDLED; } @@ -891,10 +913,6 @@ struct advk_pcie *pcie = bridge->data; switch (reg) { - case PCI_EXP_DEVCTL: - advk_writel(pcie, new, PCIE_CORE_PCIEXP_CAP + reg); - break; - case PCI_EXP_LNKCTL: advk_writel(pcie, new, PCIE_CORE_PCIEXP_CAP + reg); if (new & PCI_EXP_LNKCTL_RL) @@ -902,18 +920,23 @@ break; case PCI_EXP_RTCTL: { - /* Only mask/unmask PME interrupt */ - u32 val = advk_readl(pcie, PCIE_ISR0_MASK_REG) & - ~PCIE_MSG_PM_PME_MASK; - if ((new & PCI_EXP_RTCTL_PMEIE) == 0) - val |= PCIE_MSG_PM_PME_MASK; - advk_writel(pcie, val, PCIE_ISR0_MASK_REG); + u16 rootctl = le16_to_cpu(bridge->pcie_conf.rootctl); + /* Only emulation of PMEIE and CRSSVE bits is provided */ + rootctl &= PCI_EXP_RTCTL_PMEIE | PCI_EXP_RTCTL_CRSSVE; + bridge->pcie_conf.rootctl = cpu_to_le16(rootctl); break; } - case PCI_EXP_RTSTA: - new = (new & PCI_EXP_RTSTA_PME) >> 9; - advk_writel(pcie, new, PCIE_ISR0_REG); + /* + * PCI_EXP_RTSTA is also supported, but does not need to be handled + * here, because its value is stored in emulated config space buffer, + * and we write it there when needed. + */ + + case PCI_EXP_DEVCTL: + case PCI_EXP_DEVCTL2: + case PCI_EXP_LNKCTL2: + advk_writel(pcie, new, PCIE_CORE_PCIEXP_CAP + reg); break; default: @@ -952,7 +975,7 @@ bridge->conf.pref_mem_limit = cpu_to_le16(PCI_PREF_RANGE_TYPE_64); /* Support interrupt A for MSI feature */ - bridge->conf.intpin = PCIE_CORE_INT_A_ASSERT_ENABLE; + bridge->conf.intpin = PCI_INTERRUPT_INTA; /* Aardvark HW provides PCIe Capability structure in version 2 */ bridge->pcie_conf.cap = cpu_to_le16(2); @@ -974,8 +997,12 @@ return false; /* - * If the link goes down after we check for link-up, nothing bad - * happens but the config access times out. + * If the link goes down after we check for link-up, we have a problem: + * if a PIO request is executed while link-down, the whole controller + * gets stuck in a non-functional state, and even after link comes up + * again, PIO requests won't work anymore, and a reset of the whole PCIe + * controller is needed. Therefore we need to prevent sending PIO + * requests while the link is down. */ if (!pci_is_root_bus(bus) && !advk_pcie_link_up(pcie)) return false; @@ -1175,10 +1202,10 @@ struct msi_msg *msg) { struct advk_pcie *pcie = irq_data_get_irq_chip_data(data); - phys_addr_t msi_msg = virt_to_phys(&pcie->msi_msg); + phys_addr_t msi_addr = virt_to_phys(pcie); - msg->address_lo = lower_32_bits(msi_msg); - msg->address_hi = upper_32_bits(msi_msg); + msg->address_lo = lower_32_bits(msi_addr); + msg->address_hi = upper_32_bits(msi_addr); msg->data = data->hwirq; } @@ -1188,6 +1215,54 @@ return -EINVAL; } +static void advk_msi_irq_mask(struct irq_data *d) +{ + struct advk_pcie *pcie = d->domain->host_data; + irq_hw_number_t hwirq = irqd_to_hwirq(d); + unsigned long flags; + u32 mask; + + raw_spin_lock_irqsave(&pcie->msi_irq_lock, flags); + mask = advk_readl(pcie, PCIE_MSI_MASK_REG); + mask |= BIT(hwirq); + advk_writel(pcie, mask, PCIE_MSI_MASK_REG); + raw_spin_unlock_irqrestore(&pcie->msi_irq_lock, flags); +} + +static void advk_msi_irq_unmask(struct irq_data *d) +{ + struct advk_pcie *pcie = d->domain->host_data; + irq_hw_number_t hwirq = irqd_to_hwirq(d); + unsigned long flags; + u32 mask; + + raw_spin_lock_irqsave(&pcie->msi_irq_lock, flags); + mask = advk_readl(pcie, PCIE_MSI_MASK_REG); + mask &= ~BIT(hwirq); + advk_writel(pcie, mask, PCIE_MSI_MASK_REG); + raw_spin_unlock_irqrestore(&pcie->msi_irq_lock, flags); +} + +static void advk_msi_top_irq_mask(struct irq_data *d) +{ + pci_msi_mask_irq(d); + irq_chip_mask_parent(d); +} + +static void advk_msi_top_irq_unmask(struct irq_data *d) +{ + pci_msi_unmask_irq(d); + irq_chip_unmask_parent(d); +} + +static struct irq_chip advk_msi_bottom_irq_chip = { + .name = "MSI", + .irq_compose_msi_msg = advk_msi_irq_compose_msi_msg, + .irq_set_affinity = advk_msi_set_affinity, + .irq_mask = advk_msi_irq_mask, + .irq_unmask = advk_msi_irq_unmask, +}; + static int advk_msi_irq_domain_alloc(struct irq_domain *domain, unsigned int virq, unsigned int nr_irqs, void *args) @@ -1204,7 +1279,7 @@ for (i = 0; i < nr_irqs; i++) irq_domain_set_info(domain, virq + i, hwirq + i, - &pcie->msi_bottom_irq_chip, + &advk_msi_bottom_irq_chip, domain->host_data, handle_simple_irq, NULL, NULL); @@ -1260,7 +1335,6 @@ { struct advk_pcie *pcie = h->host_data; - advk_pcie_irq_mask(irq_get_irq_data(virq)); irq_set_status_flags(virq, IRQ_LEVEL); irq_set_chip_and_handler(virq, &pcie->irq_chip, handle_level_irq); @@ -1274,37 +1348,25 @@ .xlate = irq_domain_xlate_onecell, }; +static struct irq_chip advk_msi_irq_chip = { + .name = "advk-MSI", + .irq_mask = advk_msi_top_irq_mask, + .irq_unmask = advk_msi_top_irq_unmask, +}; + +static struct msi_domain_info advk_msi_domain_info = { + .flags = MSI_FLAG_USE_DEF_DOM_OPS | MSI_FLAG_USE_DEF_CHIP_OPS | + MSI_FLAG_MULTI_PCI_MSI | MSI_FLAG_PCI_MSIX, + .chip = &advk_msi_irq_chip, +}; + static int advk_pcie_init_msi_irq_domain(struct advk_pcie *pcie) { struct device *dev = &pcie->pdev->dev; - struct device_node *node = dev->of_node; - struct irq_chip *bottom_ic, *msi_ic; - struct msi_domain_info *msi_di; - phys_addr_t msi_msg_phys; + raw_spin_lock_init(&pcie->msi_irq_lock); mutex_init(&pcie->msi_used_lock); - bottom_ic = &pcie->msi_bottom_irq_chip; - - bottom_ic->name = "MSI"; - bottom_ic->irq_compose_msi_msg = advk_msi_irq_compose_msi_msg; - bottom_ic->irq_set_affinity = advk_msi_set_affinity; - - msi_ic = &pcie->msi_irq_chip; - msi_ic->name = "advk-MSI"; - - msi_di = &pcie->msi_domain_info; - msi_di->flags = MSI_FLAG_USE_DEF_DOM_OPS | MSI_FLAG_USE_DEF_CHIP_OPS | - MSI_FLAG_MULTI_PCI_MSI; - msi_di->chip = msi_ic; - - msi_msg_phys = virt_to_phys(&pcie->msi_msg); - - advk_writel(pcie, lower_32_bits(msi_msg_phys), - PCIE_MSI_ADDR_LOW_REG); - advk_writel(pcie, upper_32_bits(msi_msg_phys), - PCIE_MSI_ADDR_HIGH_REG); - pcie->msi_inner_domain = irq_domain_add_linear(NULL, MSI_IRQ_NUM, &advk_msi_domain_ops, pcie); @@ -1312,8 +1374,9 @@ return -ENOMEM; pcie->msi_domain = - pci_msi_create_irq_domain(of_node_to_fwnode(node), - msi_di, pcie->msi_inner_domain); + pci_msi_create_irq_domain(dev_fwnode(dev), + &advk_msi_domain_info, + pcie->msi_inner_domain); if (!pcie->msi_domain) { irq_domain_remove(pcie->msi_inner_domain); return -ENOMEM; @@ -1354,7 +1417,6 @@ } irq_chip->irq_mask = advk_pcie_irq_mask; - irq_chip->irq_mask_ack = advk_pcie_irq_mask; irq_chip->irq_unmask = advk_pcie_irq_unmask; pcie->irq_domain = @@ -1376,13 +1438,77 @@ irq_domain_remove(pcie->irq_domain); } +static struct irq_chip advk_rp_irq_chip = { + .name = "advk-RP", +}; + +static int advk_pcie_rp_irq_map(struct irq_domain *h, + unsigned int virq, irq_hw_number_t hwirq) +{ + struct advk_pcie *pcie = h->host_data; + + irq_set_chip_and_handler(virq, &advk_rp_irq_chip, handle_simple_irq); + irq_set_chip_data(virq, pcie); + + return 0; +} + +static const struct irq_domain_ops advk_pcie_rp_irq_domain_ops = { + .map = advk_pcie_rp_irq_map, + .xlate = irq_domain_xlate_onecell, +}; + +static int advk_pcie_init_rp_irq_domain(struct advk_pcie *pcie) +{ + pcie->rp_irq_domain = irq_domain_add_linear(NULL, 1, + &advk_pcie_rp_irq_domain_ops, + pcie); + if (!pcie->rp_irq_domain) { + dev_err(&pcie->pdev->dev, "Failed to add Root Port IRQ domain\n"); + return -ENOMEM; + } + + return 0; +} + +static void advk_pcie_remove_rp_irq_domain(struct advk_pcie *pcie) +{ + irq_domain_remove(pcie->rp_irq_domain); +} + +static void advk_pcie_handle_pme(struct advk_pcie *pcie) +{ + u32 requester = advk_readl(pcie, PCIE_MSG_LOG_REG) >> 16; + + advk_writel(pcie, PCIE_MSG_PM_PME_MASK, PCIE_ISR0_REG); + + /* + * PCIE_MSG_LOG_REG contains the last inbound message, so store + * the requester ID only when PME was not asserted yet. + * Also do not trigger PME interrupt when PME is still asserted. + */ + if (!(le32_to_cpu(pcie->bridge.pcie_conf.rootsta) & PCI_EXP_RTSTA_PME)) { + pcie->bridge.pcie_conf.rootsta = cpu_to_le32(requester | PCI_EXP_RTSTA_PME); + + /* + * Trigger PME interrupt only if PMEIE bit in Root Control is set. + * Aardvark HW returns zero for PCI_EXP_FLAGS_IRQ, so use PCIe interrupt 0. + */ + if (!(le16_to_cpu(pcie->bridge.pcie_conf.rootctl) & PCI_EXP_RTCTL_PMEIE)) + return; + + if (generic_handle_domain_irq(pcie->rp_irq_domain, 0) == -EINVAL) + dev_err_ratelimited(&pcie->pdev->dev, "unhandled PME IRQ\n"); + } +} + static void advk_pcie_handle_msi(struct advk_pcie *pcie) { u32 msi_val, msi_mask, msi_status, msi_idx; msi_mask = advk_readl(pcie, PCIE_MSI_MASK_REG); msi_val = advk_readl(pcie, PCIE_MSI_STATUS_REG); - msi_status = msi_val & ~msi_mask; + msi_status = msi_val & ((~msi_mask) & PCIE_MSI_ALL_MASK); for (msi_idx = 0; msi_idx < MSI_IRQ_NUM; msi_idx++) { if (!(BIT(msi_idx) & msi_status)) @@ -1411,6 +1537,22 @@ isr1_mask = advk_readl(pcie, PCIE_ISR1_MASK_REG); isr1_status = isr1_val & ((~isr1_mask) & PCIE_ISR1_ALL_MASK); + /* Process PME interrupt as the first one to do not miss PME requester id */ + if (isr0_status & PCIE_MSG_PM_PME_MASK) + advk_pcie_handle_pme(pcie); + + /* Process ERR interrupt */ + if (isr0_status & PCIE_ISR0_ERR_MASK) { + advk_writel(pcie, PCIE_ISR0_ERR_MASK, PCIE_ISR0_REG); + + /* + * Aardvark HW returns zero for PCI_ERR_ROOT_AER_IRQ, so use + * PCIe interrupt 0 + */ + if (generic_handle_domain_irq(pcie->rp_irq_domain, 0) == -EINVAL) + dev_err_ratelimited(&pcie->pdev->dev, "unhandled ERR IRQ\n"); + } + /* Process MSI interrupts */ if (isr0_status & PCIE_ISR0_MSI_INT_PENDING) advk_pcie_handle_msi(pcie); @@ -1423,7 +1565,9 @@ advk_writel(pcie, PCIE_ISR1_INTX_ASSERT(i), PCIE_ISR1_REG); - generic_handle_domain_irq(pcie->irq_domain, i); + if (generic_handle_domain_irq(pcie->irq_domain, i) == -EINVAL) + dev_err_ratelimited(&pcie->pdev->dev, "unexpected INT%c IRQ\n", + (char)i + 'A'); } } @@ -1444,7 +1588,22 @@ return IRQ_HANDLED; } -static void __maybe_unused advk_pcie_disable_phy(struct advk_pcie *pcie) +static int advk_pcie_map_irq(const struct pci_dev *dev, u8 slot, u8 pin) +{ + struct advk_pcie *pcie = dev->bus->sysdata; + + /* + * Emulated root bridge has its own emulated irq chip and irq domain. + * Argument pin is the INTx pin (1=INTA, 2=INTB, 3=INTC, 4=INTD) and + * hwirq for irq_create_mapping() is indexed from zero. + */ + if (pci_is_root_bus(dev->bus)) + return irq_create_mapping(pcie->rp_irq_domain, pin - 1); + else + return of_irq_parse_and_map_pci(dev, slot, pin); +} + +static void advk_pcie_disable_phy(struct advk_pcie *pcie) { phy_power_off(pcie->phy); phy_exit(pcie->phy); @@ -1653,11 +1812,21 @@ return ret; } + ret = advk_pcie_init_rp_irq_domain(pcie); + if (ret) { + dev_err(dev, "Failed to initialize irq\n"); + advk_pcie_remove_msi_irq_domain(pcie); + advk_pcie_remove_irq_domain(pcie); + return ret; + } + bridge->sysdata = pcie; bridge->ops = &advk_pcie_ops; + bridge->map_irq = advk_pcie_map_irq; ret = pci_host_probe(bridge); if (ret < 0) { + advk_pcie_remove_rp_irq_domain(pcie); advk_pcie_remove_msi_irq_domain(pcie); advk_pcie_remove_irq_domain(pcie); return ret; @@ -1670,20 +1839,65 @@ { struct advk_pcie *pcie = platform_get_drvdata(pdev); struct pci_host_bridge *bridge = pci_host_bridge_from_priv(pcie); + u32 val; int i; + /* Remove PCI bus with all devices */ pci_lock_rescan_remove(); pci_stop_root_bus(bridge->bus); pci_remove_root_bus(bridge->bus); pci_unlock_rescan_remove(); + /* Disable Root Bridge I/O space, memory space and bus mastering */ + val = advk_readl(pcie, PCIE_CORE_CMD_STATUS_REG); + val &= ~(PCI_COMMAND_IO | PCI_COMMAND_MEMORY | PCI_COMMAND_MASTER); + advk_writel(pcie, val, PCIE_CORE_CMD_STATUS_REG); + + /* Disable MSI */ + val = advk_readl(pcie, PCIE_CORE_CTRL2_REG); + val &= ~PCIE_CORE_CTRL2_MSI_ENABLE; + advk_writel(pcie, val, PCIE_CORE_CTRL2_REG); + + /* Clear MSI address */ + advk_writel(pcie, 0, PCIE_MSI_ADDR_LOW_REG); + advk_writel(pcie, 0, PCIE_MSI_ADDR_HIGH_REG); + + /* Mask all interrupts */ + advk_writel(pcie, PCIE_MSI_ALL_MASK, PCIE_MSI_MASK_REG); + advk_writel(pcie, PCIE_ISR0_ALL_MASK, PCIE_ISR0_MASK_REG); + advk_writel(pcie, PCIE_ISR1_ALL_MASK, PCIE_ISR1_MASK_REG); + advk_writel(pcie, PCIE_IRQ_ALL_MASK, HOST_CTRL_INT_MASK_REG); + + /* Clear all interrupts */ + advk_writel(pcie, PCIE_MSI_ALL_MASK, PCIE_MSI_STATUS_REG); + advk_writel(pcie, PCIE_ISR0_ALL_MASK, PCIE_ISR0_REG); + advk_writel(pcie, PCIE_ISR1_ALL_MASK, PCIE_ISR1_REG); + advk_writel(pcie, PCIE_IRQ_ALL_MASK, HOST_CTRL_INT_STATUS_REG); + + /* Remove IRQ domains */ + advk_pcie_remove_rp_irq_domain(pcie); advk_pcie_remove_msi_irq_domain(pcie); advk_pcie_remove_irq_domain(pcie); + /* Free config space for emulated root bridge */ + pci_bridge_emul_cleanup(&pcie->bridge); + + /* Assert PERST# signal which prepares PCIe card for power down */ + if (pcie->reset_gpio) + gpiod_set_value_cansleep(pcie->reset_gpio, 1); + + /* Disable link training */ + val = advk_readl(pcie, PCIE_CORE_CTRL0_REG); + val &= ~LINK_TRAINING_EN; + advk_writel(pcie, val, PCIE_CORE_CTRL0_REG); + /* Disable outbound address windows mapping */ for (i = 0; i < OB_WIN_COUNT; i++) advk_pcie_disable_ob_win(pcie, i); + /* Disable phy */ + advk_pcie_disable_phy(pcie); + return 0; } diff -u linux-intel-iotg-5.15-5.15.0/drivers/pci/controller/vmd.c linux-intel-iotg-5.15-5.15.0/drivers/pci/controller/vmd.c --- linux-intel-iotg-5.15-5.15.0/drivers/pci/controller/vmd.c +++ linux-intel-iotg-5.15-5.15.0/drivers/pci/controller/vmd.c @@ -6,7 +6,6 @@ #include #include -#include #include #include #include @@ -777,8 +776,7 @@ * acceptable because the guest is usually CPU-limited and MSI * remapping doesn't become a performance bottleneck. */ - if (iommu_capable(vmd->dev->dev.bus, IOMMU_CAP_INTR_REMAP) || - !(features & VMD_FEAT_CAN_BYPASS_MSI_REMAP) || + if (!(features & VMD_FEAT_CAN_BYPASS_MSI_REMAP) || offset[0] || offset[1]) { ret = vmd_alloc_irqs(vmd); if (ret) @@ -817,6 +815,9 @@ vmd_attach_resources(vmd); if (vmd->irq_domain) dev_set_msi_domain(&vmd->bus->dev, vmd->irq_domain); + else + dev_set_msi_domain(&vmd->bus->dev, + dev_get_msi_domain(&vmd->dev->dev)); vmd_acpi_begin(); diff -u linux-intel-iotg-5.15-5.15.0/drivers/pci/hotplug/pciehp.h linux-intel-iotg-5.15-5.15.0/drivers/pci/hotplug/pciehp.h --- linux-intel-iotg-5.15-5.15.0/drivers/pci/hotplug/pciehp.h +++ linux-intel-iotg-5.15-5.15.0/drivers/pci/hotplug/pciehp.h @@ -192,6 +192,8 @@ int pciehp_set_raw_indicator_status(struct hotplug_slot *h_slot, u8 status); int pciehp_get_raw_indicator_status(struct hotplug_slot *h_slot, u8 *status); +int pciehp_slot_reset(struct pcie_device *dev); + static inline const char *slot_name(struct controller *ctrl) { return hotplug_slot_name(&ctrl->hotplug_slot); diff -u linux-intel-iotg-5.15-5.15.0/drivers/pci/hotplug/pciehp_core.c linux-intel-iotg-5.15-5.15.0/drivers/pci/hotplug/pciehp_core.c --- linux-intel-iotg-5.15-5.15.0/drivers/pci/hotplug/pciehp_core.c +++ linux-intel-iotg-5.15-5.15.0/drivers/pci/hotplug/pciehp_core.c @@ -351,6 +351,8 @@ .runtime_suspend = pciehp_runtime_suspend, .runtime_resume = pciehp_runtime_resume, #endif /* PM */ + + .slot_reset = pciehp_slot_reset, }; int __init pcie_hp_init(void) diff -u linux-intel-iotg-5.15-5.15.0/drivers/pci/hotplug/pciehp_hpc.c linux-intel-iotg-5.15-5.15.0/drivers/pci/hotplug/pciehp_hpc.c --- linux-intel-iotg-5.15-5.15.0/drivers/pci/hotplug/pciehp_hpc.c +++ linux-intel-iotg-5.15-5.15.0/drivers/pci/hotplug/pciehp_hpc.c @@ -865,6 +865,32 @@ pcie_write_cmd(ctrl, 0, mask); } +/** + * pciehp_slot_reset() - ignore link event caused by error-induced hot reset + * @dev: PCI Express port service device + * + * Called from pcie_portdrv_slot_reset() after AER or DPC initiated a reset + * further up in the hierarchy to recover from an error. The reset was + * propagated down to this hotplug port. Ignore the resulting link flap. + * If the link failed to retrain successfully, synthesize the ignored event. + * Surprise removal during reset is detected through Presence Detect Changed. + */ +int pciehp_slot_reset(struct pcie_device *dev) +{ + struct controller *ctrl = get_service_data(dev); + + if (ctrl->state != ON_STATE) + return 0; + + pcie_capability_write_word(dev->port, PCI_EXP_SLTSTA, + PCI_EXP_SLTSTA_DLLSC); + + if (!pciehp_check_link_active(ctrl)) + pciehp_request(ctrl, PCI_EXP_SLTSTA_DLLSC); + + return 0; +} + /* * pciehp has a 1:1 bus:slot relationship so we ultimately want a secondary * bus reset of the bridge, but at the same time we want to ensure that it is diff -u linux-intel-iotg-5.15-5.15.0/drivers/pci/pci-bridge-emul.c linux-intel-iotg-5.15-5.15.0/drivers/pci/pci-bridge-emul.c --- linux-intel-iotg-5.15-5.15.0/drivers/pci/pci-bridge-emul.c +++ linux-intel-iotg-5.15-5.15.0/drivers/pci/pci-bridge-emul.c @@ -270,6 +270,49 @@ .ro = GENMASK(15, 0) | PCI_EXP_RTSTA_PENDING, .w1c = PCI_EXP_RTSTA_PME, }, + + [PCI_EXP_DEVCAP2 / 4] = { + /* + * Device capabilities 2 register has reserved bits [30:27]. + * Also bits [26:24] are reserved for non-upstream ports. + */ + .ro = BIT(31) | GENMASK(23, 0), + }, + + [PCI_EXP_DEVCTL2 / 4] = { + /* + * Device control 2 register is RW. Bit 11 is reserved for + * non-upstream ports. + * + * Device status 2 register is reserved. + */ + .rw = GENMASK(15, 12) | GENMASK(10, 0), + }, + + [PCI_EXP_LNKCAP2 / 4] = { + /* Link capabilities 2 register has reserved bits [30:25] and 0. */ + .ro = BIT(31) | GENMASK(24, 1), + }, + + [PCI_EXP_LNKCTL2 / 4] = { + /* + * Link control 2 register is RW. + * + * Link status 2 register has bits 5, 15 W1C; + * bits 10, 11 reserved and others are RO. + */ + .rw = GENMASK(15, 0), + .w1c = (BIT(15) | BIT(5)) << 16, + .ro = (GENMASK(14, 12) | GENMASK(9, 6) | GENMASK(4, 0)) << 16, + }, + + [PCI_EXP_SLTCAP2 / 4] = { + /* Slot capabilities 2 register is reserved. */ + }, + + [PCI_EXP_SLTCTL2 / 4] = { + /* Both Slot control 2 and Slot status 2 registers are reserved. */ + }, }; /* @@ -284,7 +327,11 @@ { BUILD_BUG_ON(sizeof(bridge->conf) != PCI_BRIDGE_CONF_END); - bridge->conf.class_revision |= cpu_to_le32(PCI_CLASS_BRIDGE_PCI << 16); + /* + * class_revision: Class is high 24 bits and revision is low 8 bit of this member, + * while class for PCI Bridge Normal Decode has the 24-bit value: PCI_CLASS_BRIDGE_PCI << 8 + */ + bridge->conf.class_revision |= cpu_to_le32((PCI_CLASS_BRIDGE_PCI << 8) << 8); bridge->conf.header_type = PCI_HEADER_TYPE_BRIDGE; bridge->conf.cache_line_size = 0x10; bridge->conf.status = cpu_to_le16(PCI_STATUS_CAP_LIST); diff -u linux-intel-iotg-5.15-5.15.0/drivers/pci/pci.c linux-intel-iotg-5.15-5.15.0/drivers/pci/pci.c --- linux-intel-iotg-5.15-5.15.0/drivers/pci/pci.c +++ linux-intel-iotg-5.15-5.15.0/drivers/pci/pci.c @@ -2914,6 +2914,18 @@ DMI_MATCH(DMI_BOARD_NAME, "X299 DESIGNARE EX-CF"), }, }, + { + /* + * Downstream device is not accessible after putting a root port + * into D3cold and back into D0 on Elo i2. + */ + .ident = "Elo i2", + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "Elo Touch Solutions"), + DMI_MATCH(DMI_PRODUCT_NAME, "Elo i2"), + DMI_MATCH(DMI_PRODUCT_VERSION, "RevB"), + }, + }, #endif { } }; @@ -5094,19 +5106,19 @@ void pci_dev_lock(struct pci_dev *dev) { - pci_cfg_access_lock(dev); /* block PM suspend, driver probe, etc. */ device_lock(&dev->dev); + pci_cfg_access_lock(dev); } EXPORT_SYMBOL_GPL(pci_dev_lock); /* Return 1 on successful lock, 0 on contention */ int pci_dev_trylock(struct pci_dev *dev) { - if (pci_cfg_access_trylock(dev)) { - if (device_trylock(&dev->dev)) + if (device_trylock(&dev->dev)) { + if (pci_cfg_access_trylock(dev)) return 1; - pci_cfg_access_unlock(dev); + device_unlock(&dev->dev); } return 0; @@ -5115,8 +5127,8 @@ void pci_dev_unlock(struct pci_dev *dev) { - device_unlock(&dev->dev); pci_cfg_access_unlock(dev); + device_unlock(&dev->dev); } EXPORT_SYMBOL_GPL(pci_dev_unlock); diff -u linux-intel-iotg-5.15-5.15.0/drivers/pci/pcie/aer.c linux-intel-iotg-5.15-5.15.0/drivers/pci/pcie/aer.c --- linux-intel-iotg-5.15-5.15.0/drivers/pci/pcie/aer.c +++ linux-intel-iotg-5.15-5.15.0/drivers/pci/pcie/aer.c @@ -101,6 +101,11 @@ #define ERR_COR_ID(d) (d & 0xffff) #define ERR_UNCOR_ID(d) (d >> 16) +#define AER_ERR_STATUS_MASK (PCI_ERR_ROOT_UNCOR_RCV | \ + PCI_ERR_ROOT_COR_RCV | \ + PCI_ERR_ROOT_MULTI_COR_RCV | \ + PCI_ERR_ROOT_MULTI_UNCOR_RCV) + static int pcie_aer_disable; static pci_ers_result_t aer_root_reset(struct pci_dev *dev); @@ -1196,7 +1201,7 @@ struct aer_err_source e_src = {}; pci_read_config_dword(rp, aer + PCI_ERR_ROOT_STATUS, &e_src.status); - if (!(e_src.status & (PCI_ERR_ROOT_UNCOR_RCV|PCI_ERR_ROOT_COR_RCV))) + if (!(e_src.status & AER_ERR_STATUS_MASK)) return IRQ_NONE; pci_read_config_dword(rp, aer + PCI_ERR_ROOT_ERR_SRC, &e_src.id); diff -u linux-intel-iotg-5.15-5.15.0/drivers/pci/probe.c linux-intel-iotg-5.15-5.15.0/drivers/pci/probe.c --- linux-intel-iotg-5.15-5.15.0/drivers/pci/probe.c +++ linux-intel-iotg-5.15-5.15.0/drivers/pci/probe.c @@ -1917,6 +1917,9 @@ dev->broken_intx_masking = pci_intx_mask_broken(dev); + /* Clear errors left from system firmware */ + pci_write_config_word(dev, PCI_STATUS, 0xffff); + switch (dev->hdr_type) { /* header type */ case PCI_HEADER_TYPE_NORMAL: /* standard header */ if (class == PCI_CLASS_BRIDGE_PCI) diff -u linux-intel-iotg-5.15-5.15.0/drivers/phy/qualcomm/phy-qcom-qmp.c linux-intel-iotg-5.15-5.15.0/drivers/phy/qualcomm/phy-qcom-qmp.c --- linux-intel-iotg-5.15-5.15.0/drivers/phy/qualcomm/phy-qcom-qmp.c +++ linux-intel-iotg-5.15-5.15.0/drivers/phy/qualcomm/phy-qcom-qmp.c @@ -5382,6 +5382,11 @@ .owner = THIS_MODULE, }; +static void qcom_qmp_reset_control_put(void *data) +{ + reset_control_put(data); +} + static int qcom_qmp_phy_create(struct device *dev, struct device_node *np, int id, void __iomem *serdes, const struct qmp_phy_cfg *cfg) @@ -5454,7 +5459,7 @@ * all phys that don't need this. */ snprintf(prop_name, sizeof(prop_name), "pipe%d", id); - qphy->pipe_clk = of_clk_get_by_name(np, prop_name); + qphy->pipe_clk = devm_get_clk_from_child(dev, np, prop_name); if (IS_ERR(qphy->pipe_clk)) { if (cfg->type == PHY_TYPE_PCIE || cfg->type == PHY_TYPE_USB3) { @@ -5476,6 +5481,10 @@ dev_err(dev, "failed to get lane%d reset\n", id); return PTR_ERR(qphy->lane_rst); } + ret = devm_add_action_or_reset(dev, qcom_qmp_reset_control_put, + qphy->lane_rst); + if (ret) + return ret; } if (cfg->type == PHY_TYPE_UFS || cfg->type == PHY_TYPE_PCIE) diff -u linux-intel-iotg-5.15-5.15.0/drivers/pinctrl/bcm/pinctrl-bcm2835.c linux-intel-iotg-5.15-5.15.0/drivers/pinctrl/bcm/pinctrl-bcm2835.c --- linux-intel-iotg-5.15-5.15.0/drivers/pinctrl/bcm/pinctrl-bcm2835.c +++ linux-intel-iotg-5.15-5.15.0/drivers/pinctrl/bcm/pinctrl-bcm2835.c @@ -351,6 +351,22 @@ return pinctrl_gpio_direction_output(chip->base + offset); } +static int bcm2835_of_gpio_ranges_fallback(struct gpio_chip *gc, + struct device_node *np) +{ + struct pinctrl_dev *pctldev = of_pinctrl_get(np); + + of_node_put(np); + + if (!pctldev) + return 0; + + gpiochip_add_pin_range(gc, pinctrl_dev_get_devname(pctldev), 0, 0, + gc->ngpio); + + return 0; +} + static const struct gpio_chip bcm2835_gpio_chip = { .label = MODULE_NAME, .owner = THIS_MODULE, @@ -365,6 +381,7 @@ .base = -1, .ngpio = BCM2835_NUM_GPIOS, .can_sleep = false, + .of_gpio_ranges_fallback = bcm2835_of_gpio_ranges_fallback, }; static const struct gpio_chip bcm2711_gpio_chip = { @@ -381,6 +398,7 @@ .base = -1, .ngpio = BCM2711_NUM_GPIOS, .can_sleep = false, + .of_gpio_ranges_fallback = bcm2835_of_gpio_ranges_fallback, }; static void bcm2835_gpio_irq_handle_bank(struct bcm2835_pinctrl *pc, diff -u linux-intel-iotg-5.15-5.15.0/drivers/pinctrl/pinctrl-rockchip.c linux-intel-iotg-5.15-5.15.0/drivers/pinctrl/pinctrl-rockchip.c --- linux-intel-iotg-5.15-5.15.0/drivers/pinctrl/pinctrl-rockchip.c +++ linux-intel-iotg-5.15-5.15.0/drivers/pinctrl/pinctrl-rockchip.c @@ -455,95 +455,110 @@ static struct rockchip_mux_recalced_data rk3308_mux_recalced_data[] = { { + /* gpio1b6_sel */ .num = 1, .pin = 14, .reg = 0x28, .bit = 12, .mask = 0xf }, { + /* gpio1b7_sel */ .num = 1, .pin = 15, .reg = 0x2c, .bit = 0, .mask = 0x3 }, { + /* gpio1c2_sel */ .num = 1, .pin = 18, .reg = 0x30, .bit = 4, .mask = 0xf }, { + /* gpio1c3_sel */ .num = 1, .pin = 19, .reg = 0x30, .bit = 8, .mask = 0xf }, { + /* gpio1c4_sel */ .num = 1, .pin = 20, .reg = 0x30, .bit = 12, .mask = 0xf }, { + /* gpio1c5_sel */ .num = 1, .pin = 21, .reg = 0x34, .bit = 0, .mask = 0xf }, { + /* gpio1c6_sel */ .num = 1, .pin = 22, .reg = 0x34, .bit = 4, .mask = 0xf }, { + /* gpio1c7_sel */ .num = 1, .pin = 23, .reg = 0x34, .bit = 8, .mask = 0xf }, { + /* gpio3b4_sel */ .num = 3, .pin = 12, .reg = 0x68, .bit = 8, .mask = 0xf }, { + /* gpio3b5_sel */ .num = 3, .pin = 13, .reg = 0x68, .bit = 12, .mask = 0xf }, { + /* gpio2a2_sel */ .num = 2, .pin = 2, - .reg = 0x608, - .bit = 0, - .mask = 0x7 + .reg = 0x40, + .bit = 4, + .mask = 0x3 }, { + /* gpio2a3_sel */ .num = 2, .pin = 3, - .reg = 0x608, - .bit = 4, - .mask = 0x7 + .reg = 0x40, + .bit = 6, + .mask = 0x3 }, { + /* gpio2c0_sel */ .num = 2, .pin = 16, - .reg = 0x610, - .bit = 8, - .mask = 0x7 + .reg = 0x50, + .bit = 0, + .mask = 0x3 }, { + /* gpio3b2_sel */ .num = 3, .pin = 10, - .reg = 0x610, - .bit = 0, - .mask = 0x7 + .reg = 0x68, + .bit = 4, + .mask = 0x3 }, { + /* gpio3b3_sel */ .num = 3, .pin = 11, - .reg = 0x610, - .bit = 4, - .mask = 0x7 + .reg = 0x68, + .bit = 6, + .mask = 0x3 }, }; @@ -2092,19 +2107,20 @@ return false; } -static int rockchip_pinconf_defer_output(struct rockchip_pin_bank *bank, - unsigned int pin, u32 arg) +static int rockchip_pinconf_defer_pin(struct rockchip_pin_bank *bank, + unsigned int pin, u32 param, u32 arg) { - struct rockchip_pin_output_deferred *cfg; + struct rockchip_pin_deferred *cfg; cfg = kzalloc(sizeof(*cfg), GFP_KERNEL); if (!cfg) return -ENOMEM; cfg->pin = pin; + cfg->param = param; cfg->arg = arg; - list_add_tail(&cfg->head, &bank->deferred_output); + list_add_tail(&cfg->head, &bank->deferred_pins); return 0; } @@ -2125,6 +2141,25 @@ param = pinconf_to_config_param(configs[i]); arg = pinconf_to_config_argument(configs[i]); + if (param == PIN_CONFIG_OUTPUT || param == PIN_CONFIG_INPUT_ENABLE) { + /* + * Check for gpio driver not being probed yet. + * The lock makes sure that either gpio-probe has completed + * or the gpio driver hasn't probed yet. + */ + mutex_lock(&bank->deferred_lock); + if (!gpio || !gpio->direction_output) { + rc = rockchip_pinconf_defer_pin(bank, pin - bank->pin_base, param, + arg); + mutex_unlock(&bank->deferred_lock); + if (rc) + return rc; + + break; + } + mutex_unlock(&bank->deferred_lock); + } + switch (param) { case PIN_CONFIG_BIAS_DISABLE: rc = rockchip_set_pull(bank, pin - bank->pin_base, @@ -2153,27 +2188,21 @@ if (rc != RK_FUNC_GPIO) return -EINVAL; - /* - * Check for gpio driver not being probed yet. - * The lock makes sure that either gpio-probe has completed - * or the gpio driver hasn't probed yet. - */ - mutex_lock(&bank->deferred_lock); - if (!gpio || !gpio->direction_output) { - rc = rockchip_pinconf_defer_output(bank, pin - bank->pin_base, arg); - mutex_unlock(&bank->deferred_lock); - if (rc) - return rc; - - break; - } - mutex_unlock(&bank->deferred_lock); - rc = gpio->direction_output(gpio, pin - bank->pin_base, arg); if (rc) return rc; break; + case PIN_CONFIG_INPUT_ENABLE: + rc = rockchip_set_mux(bank, pin - bank->pin_base, + RK_FUNC_GPIO); + if (rc != RK_FUNC_GPIO) + return -EINVAL; + + rc = gpio->direction_input(gpio, pin - bank->pin_base); + if (rc) + return rc; + break; case PIN_CONFIG_DRIVE_STRENGTH: /* rk3288 is the first with per-pin drive-strength */ if (!info->ctrl->drv_calc_reg) @@ -2489,7 +2518,7 @@ pdesc++; } - INIT_LIST_HEAD(&pin_bank->deferred_output); + INIT_LIST_HEAD(&pin_bank->deferred_pins); mutex_init(&pin_bank->deferred_lock); } @@ -2763,7 +2792,7 @@ { struct rockchip_pinctrl *info = platform_get_drvdata(pdev); struct rockchip_pin_bank *bank; - struct rockchip_pin_output_deferred *cfg; + struct rockchip_pin_deferred *cfg; int i; of_platform_depopulate(&pdev->dev); @@ -2772,9 +2801,9 @@ bank = &info->ctrl->pin_banks[i]; mutex_lock(&bank->deferred_lock); - while (!list_empty(&bank->deferred_output)) { - cfg = list_first_entry(&bank->deferred_output, - struct rockchip_pin_output_deferred, head); + while (!list_empty(&bank->deferred_pins)) { + cfg = list_first_entry(&bank->deferred_pins, + struct rockchip_pin_deferred, head); list_del(&cfg->head); kfree(cfg); } diff -u linux-intel-iotg-5.15-5.15.0/drivers/pinctrl/renesas/core.c linux-intel-iotg-5.15-5.15.0/drivers/pinctrl/renesas/core.c --- linux-intel-iotg-5.15-5.15.0/drivers/pinctrl/renesas/core.c +++ linux-intel-iotg-5.15-5.15.0/drivers/pinctrl/renesas/core.c @@ -71,12 +71,11 @@ /* Fill them. */ for (i = 0; i < num_windows; i++) { - res = platform_get_resource(pdev, IORESOURCE_MEM, i); - windows->phys = res->start; - windows->size = resource_size(res); - windows->virt = devm_ioremap_resource(pfc->dev, res); + windows->virt = devm_platform_get_and_ioremap_resource(pdev, i, &res); if (IS_ERR(windows->virt)) return -ENOMEM; + windows->phys = res->start; + windows->size = resource_size(res); windows++; } for (i = 0; i < num_irqs; i++) diff -u linux-intel-iotg-5.15-5.15.0/drivers/pinctrl/stm32/pinctrl-stm32.c linux-intel-iotg-5.15-5.15.0/drivers/pinctrl/stm32/pinctrl-stm32.c --- linux-intel-iotg-5.15-5.15.0/drivers/pinctrl/stm32/pinctrl-stm32.c +++ linux-intel-iotg-5.15-5.15.0/drivers/pinctrl/stm32/pinctrl-stm32.c @@ -225,6 +225,13 @@ pinctrl_gpio_free(chip->base + offset); } +static int stm32_gpio_get_noclk(struct gpio_chip *chip, unsigned int offset) +{ + struct stm32_gpio_bank *bank = gpiochip_get_data(chip); + + return !!(readl_relaxed(bank->base + STM32_GPIO_IDR) & BIT(offset)); +} + static int stm32_gpio_get(struct gpio_chip *chip, unsigned offset) { struct stm32_gpio_bank *bank = gpiochip_get_data(chip); @@ -232,7 +239,7 @@ clk_enable(bank->clk); - ret = !!(readl_relaxed(bank->base + STM32_GPIO_IDR) & BIT(offset)); + ret = stm32_gpio_get_noclk(chip, offset); clk_disable(bank->clk); @@ -311,8 +318,12 @@ struct stm32_gpio_bank *bank = d->domain->host_data; int level; + /* Do not access the GPIO if this is not LEVEL triggered IRQ. */ + if (!(bank->irq_type[d->hwirq] & IRQ_TYPE_LEVEL_MASK)) + return; + /* If level interrupt type then retrig */ - level = stm32_gpio_get(&bank->gpio_chip, d->hwirq); + level = stm32_gpio_get_noclk(&bank->gpio_chip, d->hwirq); if ((level == 0 && bank->irq_type[d->hwirq] == IRQ_TYPE_LEVEL_LOW) || (level == 1 && bank->irq_type[d->hwirq] == IRQ_TYPE_LEVEL_HIGH)) irq_chip_retrigger_hierarchy(d); @@ -354,6 +365,7 @@ { struct stm32_gpio_bank *bank = irq_data->domain->host_data; struct stm32_pinctrl *pctl = dev_get_drvdata(bank->gpio_chip.parent); + unsigned long flags; int ret; ret = stm32_gpio_direction_input(&bank->gpio_chip, irq_data->hwirq); @@ -367,6 +379,10 @@ return ret; } + flags = irqd_get_trigger_type(irq_data); + if (flags & IRQ_TYPE_LEVEL_MASK) + clk_enable(bank->clk); + return 0; } @@ -374,6 +390,9 @@ { struct stm32_gpio_bank *bank = irq_data->domain->host_data; + if (bank->irq_type[irq_data->hwirq] & IRQ_TYPE_LEVEL_MASK) + clk_disable(bank->clk); + gpiochip_unlock_as_irq(&bank->gpio_chip, irq_data->hwirq); } diff -u linux-intel-iotg-5.15-5.15.0/drivers/platform/x86/intel/hid.c linux-intel-iotg-5.15-5.15.0/drivers/platform/x86/intel/hid.c --- linux-intel-iotg-5.15-5.15.0/drivers/platform/x86/intel/hid.c +++ linux-intel-iotg-5.15-5.15.0/drivers/platform/x86/intel/hid.c @@ -245,7 +245,7 @@ method_name = (char *)intel_hid_dsm_fn_to_method[fn_index]; - if (!(intel_hid_dsm_fn_mask & fn_index)) + if (!(intel_hid_dsm_fn_mask & BIT(fn_index))) goto skip_dsm_eval; obj = acpi_evaluate_dsm_typed(handle, &intel_dsm_guid, diff -u linux-intel-iotg-5.15-5.15.0/drivers/regulator/core.c linux-intel-iotg-5.15-5.15.0/drivers/regulator/core.c --- linux-intel-iotg-5.15-5.15.0/drivers/regulator/core.c +++ linux-intel-iotg-5.15-5.15.0/drivers/regulator/core.c @@ -2132,10 +2132,13 @@ rdev->exclusive = 1; ret = _regulator_is_enabled(rdev); - if (ret > 0) + if (ret > 0) { rdev->use_count = 1; - else + regulator->enable_count = 1; + } else { rdev->use_count = 0; + regulator->enable_count = 0; + } } link = device_link_add(dev, &rdev->dev, DL_FLAG_STATELESS); diff -u linux-intel-iotg-5.15-5.15.0/drivers/regulator/da9121-regulator.c linux-intel-iotg-5.15-5.15.0/drivers/regulator/da9121-regulator.c --- linux-intel-iotg-5.15-5.15.0/drivers/regulator/da9121-regulator.c +++ linux-intel-iotg-5.15-5.15.0/drivers/regulator/da9121-regulator.c @@ -936,6 +936,8 @@ chip->variant_id = DA9121_TYPE_DA9220_DA9132; regmap = &da9121_2ch_regmap_config; break; + default: + return -EINVAL; } /* Set these up for of_regulator_match call which may want .of_map_modes */ diff -u linux-intel-iotg-5.15-5.15.0/drivers/regulator/qcom_smd-regulator.c linux-intel-iotg-5.15-5.15.0/drivers/regulator/qcom_smd-regulator.c --- linux-intel-iotg-5.15-5.15.0/drivers/regulator/qcom_smd-regulator.c +++ linux-intel-iotg-5.15-5.15.0/drivers/regulator/qcom_smd-regulator.c @@ -926,32 +926,31 @@ { "s2", QCOM_SMD_RPM_SMPA, 2, &pm8950_hfsmps, "vdd_s2" }, { "s3", QCOM_SMD_RPM_SMPA, 3, &pm8950_hfsmps, "vdd_s3" }, { "s4", QCOM_SMD_RPM_SMPA, 4, &pm8950_hfsmps, "vdd_s4" }, - { "s5", QCOM_SMD_RPM_SMPA, 5, &pm8950_ftsmps2p5, "vdd_s5" }, + /* S5 is managed via SPMI. */ { "s6", QCOM_SMD_RPM_SMPA, 6, &pm8950_hfsmps, "vdd_s6" }, { "l1", QCOM_SMD_RPM_LDOA, 1, &pm8950_ult_nldo, "vdd_l1_l19" }, { "l2", QCOM_SMD_RPM_LDOA, 2, &pm8950_ult_nldo, "vdd_l2_l23" }, { "l3", QCOM_SMD_RPM_LDOA, 3, &pm8950_ult_nldo, "vdd_l3" }, - { "l4", QCOM_SMD_RPM_LDOA, 4, &pm8950_ult_pldo, "vdd_l4_l5_l6_l7_l16" }, - { "l5", QCOM_SMD_RPM_LDOA, 5, &pm8950_pldo_lv, "vdd_l4_l5_l6_l7_l16" }, - { "l6", QCOM_SMD_RPM_LDOA, 6, &pm8950_pldo_lv, "vdd_l4_l5_l6_l7_l16" }, - { "l7", QCOM_SMD_RPM_LDOA, 7, &pm8950_pldo_lv, "vdd_l4_l5_l6_l7_l16" }, + /* L4 seems not to exist. */ + { "l5", QCOM_SMD_RPM_LDOA, 5, &pm8950_pldo_lv, "vdd_l5_l6_l7_l16" }, + { "l6", QCOM_SMD_RPM_LDOA, 6, &pm8950_pldo_lv, "vdd_l5_l6_l7_l16" }, + { "l7", QCOM_SMD_RPM_LDOA, 7, &pm8950_pldo_lv, "vdd_l5_l6_l7_l16" }, { "l8", QCOM_SMD_RPM_LDOA, 8, &pm8950_ult_pldo, "vdd_l8_l11_l12_l17_l22" }, { "l9", QCOM_SMD_RPM_LDOA, 9, &pm8950_ult_pldo, "vdd_l9_l10_l13_l14_l15_l18" }, { "l10", QCOM_SMD_RPM_LDOA, 10, &pm8950_ult_nldo, "vdd_l9_l10_l13_l14_l15_l18"}, - { "l11", QCOM_SMD_RPM_LDOA, 11, &pm8950_ult_pldo, "vdd_l8_l11_l12_l17_l22"}, - { "l12", QCOM_SMD_RPM_LDOA, 12, &pm8950_ult_pldo, "vdd_l8_l11_l12_l17_l22"}, - { "l13", QCOM_SMD_RPM_LDOA, 13, &pm8950_ult_pldo, "vdd_l9_l10_l13_l14_l15_l18"}, - { "l14", QCOM_SMD_RPM_LDOA, 14, &pm8950_ult_pldo, "vdd_l9_l10_l13_l14_l15_l18"}, - { "l15", QCOM_SMD_RPM_LDOA, 15, &pm8950_ult_pldo, "vdd_l9_l10_l13_l14_l15_l18"}, - { "l16", QCOM_SMD_RPM_LDOA, 16, &pm8950_ult_pldo, "vdd_l4_l5_l6_l7_l16"}, - { "l17", QCOM_SMD_RPM_LDOA, 17, &pm8950_ult_pldo, "vdd_l8_l11_l12_l17_l22"}, - { "l18", QCOM_SMD_RPM_LDOA, 18, &pm8950_ult_pldo, "vdd_l9_l10_l13_l14_l15_l18"}, - { "l19", QCOM_SMD_RPM_LDOA, 18, &pm8950_pldo, "vdd_l1_l19"}, - { "l20", QCOM_SMD_RPM_LDOA, 18, &pm8950_pldo, "vdd_l20"}, - { "l21", QCOM_SMD_RPM_LDOA, 18, &pm8950_pldo, "vdd_l21"}, - { "l22", QCOM_SMD_RPM_LDOA, 18, &pm8950_pldo, "vdd_l8_l11_l12_l17_l22"}, - { "l23", QCOM_SMD_RPM_LDOA, 18, &pm8950_pldo, "vdd_l2_l23"}, + { "l11", QCOM_SMD_RPM_LDOA, 11, &pm8950_ult_pldo, "vdd_l8_l11_l12_l17_l22" }, + { "l12", QCOM_SMD_RPM_LDOA, 12, &pm8950_ult_pldo, "vdd_l8_l11_l12_l17_l22" }, + { "l13", QCOM_SMD_RPM_LDOA, 13, &pm8950_ult_pldo, "vdd_l9_l10_l13_l14_l15_l18" }, + { "l14", QCOM_SMD_RPM_LDOA, 14, &pm8950_ult_pldo, "vdd_l9_l10_l13_l14_l15_l18" }, + { "l15", QCOM_SMD_RPM_LDOA, 15, &pm8950_ult_pldo, "vdd_l9_l10_l13_l14_l15_l18" }, + { "l16", QCOM_SMD_RPM_LDOA, 16, &pm8950_ult_pldo, "vdd_l5_l6_l7_l16" }, + { "l17", QCOM_SMD_RPM_LDOA, 17, &pm8950_ult_pldo, "vdd_l8_l11_l12_l17_l22" }, + /* L18 seems not to exist. */ + { "l19", QCOM_SMD_RPM_LDOA, 19, &pm8950_pldo, "vdd_l1_l19" }, + /* L20 & L21 seem not to exist. */ + { "l22", QCOM_SMD_RPM_LDOA, 22, &pm8950_pldo, "vdd_l8_l11_l12_l17_l22" }, + { "l23", QCOM_SMD_RPM_LDOA, 23, &pm8950_pldo, "vdd_l2_l23" }, {} }; diff -u linux-intel-iotg-5.15-5.15.0/drivers/reset/reset-rzg2l-usbphy-ctrl.c linux-intel-iotg-5.15-5.15.0/drivers/reset/reset-rzg2l-usbphy-ctrl.c --- linux-intel-iotg-5.15-5.15.0/drivers/reset/reset-rzg2l-usbphy-ctrl.c +++ linux-intel-iotg-5.15-5.15.0/drivers/reset/reset-rzg2l-usbphy-ctrl.c @@ -121,7 +121,9 @@ return dev_err_probe(dev, PTR_ERR(priv->rstc), "failed to get reset\n"); - reset_control_deassert(priv->rstc); + error = reset_control_deassert(priv->rstc); + if (error) + return error; priv->rcdev.ops = &rzg2l_usbphy_ctrl_reset_ops; priv->rcdev.of_reset_n_cells = 1; reverted: --- linux-intel-iotg-5.15-5.15.0/drivers/reset/tegra/reset-bpmp.c +++ linux-intel-iotg-5.15-5.15.0.orig/drivers/reset/tegra/reset-bpmp.c @@ -20,6 +20,7 @@ struct tegra_bpmp *bpmp = to_tegra_bpmp(rstc); struct mrq_reset_request request; struct tegra_bpmp_message msg; + int err; memset(&request, 0, sizeof(request)); request.cmd = command; @@ -30,7 +31,13 @@ msg.tx.data = &request; msg.tx.size = sizeof(request); + err = tegra_bpmp_transfer(bpmp, &msg); + if (err) + return err; + if (msg.rx.ret) + return -EINVAL; + + return 0; - return tegra_bpmp_transfer(bpmp, &msg); } static int tegra_bpmp_reset_module(struct reset_controller_dev *rstc, diff -u linux-intel-iotg-5.15-5.15.0/drivers/rtc/rtc-mc146818-lib.c linux-intel-iotg-5.15-5.15.0/drivers/rtc/rtc-mc146818-lib.c --- linux-intel-iotg-5.15-5.15.0/drivers/rtc/rtc-mc146818-lib.c +++ linux-intel-iotg-5.15-5.15.0/drivers/rtc/rtc-mc146818-lib.c @@ -146,6 +146,17 @@ } EXPORT_SYMBOL_GPL(mc146818_get_time); +/* AMD systems don't allow access to AltCentury with DV1 */ +static bool apply_amd_register_a_behavior(void) +{ +#ifdef CONFIG_X86 + if (boot_cpu_data.x86_vendor == X86_VENDOR_AMD || + boot_cpu_data.x86_vendor == X86_VENDOR_HYGON) + return true; +#endif + return false; +} + /* Set the current date and time in the real time clock. */ int mc146818_set_time(struct rtc_time *time) { @@ -219,7 +230,10 @@ save_control = CMOS_READ(RTC_CONTROL); CMOS_WRITE((save_control|RTC_SET), RTC_CONTROL); save_freq_select = CMOS_READ(RTC_FREQ_SELECT); - CMOS_WRITE((save_freq_select|RTC_DIV_RESET2), RTC_FREQ_SELECT); + if (apply_amd_register_a_behavior()) + CMOS_WRITE((save_freq_select & ~RTC_AMD_BANK_SELECT), RTC_FREQ_SELECT); + else + CMOS_WRITE((save_freq_select|RTC_DIV_RESET2), RTC_FREQ_SELECT); #ifdef CONFIG_MACH_DECSTATION CMOS_WRITE(real_yrs, RTC_DEC_YEAR); diff -u linux-intel-iotg-5.15-5.15.0/drivers/s390/cio/css.c linux-intel-iotg-5.15-5.15.0/drivers/s390/cio/css.c --- linux-intel-iotg-5.15-5.15.0/drivers/s390/cio/css.c +++ linux-intel-iotg-5.15-5.15.0/drivers/s390/cio/css.c @@ -792,10 +792,13 @@ { struct idset *set = data; struct subchannel *sch = to_subchannel(dev); - struct ccw_device *cdev = sch_get_cdev(sch); + struct ccw_device *cdev; - if (cdev && cdev->online) - idset_sch_del(set, sch->schid); + if (sch->st == SUBCHANNEL_TYPE_IO) { + cdev = sch_get_cdev(sch); + if (cdev && cdev->online) + idset_sch_del(set, sch->schid); + } return 0; } diff -u linux-intel-iotg-5.15-5.15.0/drivers/scsi/dc395x.c linux-intel-iotg-5.15-5.15.0/drivers/scsi/dc395x.c --- linux-intel-iotg-5.15-5.15.0/drivers/scsi/dc395x.c +++ linux-intel-iotg-5.15-5.15.0/drivers/scsi/dc395x.c @@ -3590,10 +3590,19 @@ #endif if (dcb->target_lun != 0) { /* Copy settings */ - struct DeviceCtlBlk *p; - list_for_each_entry(p, &acb->dcb_list, list) - if (p->target_id == dcb->target_id) + struct DeviceCtlBlk *p = NULL, *iter; + + list_for_each_entry(iter, &acb->dcb_list, list) + if (iter->target_id == dcb->target_id) { + p = iter; break; + } + + if (!p) { + kfree(dcb); + return NULL; + } + dprintkdbg(DBG_1, "device_alloc: <%02i-%i> copy from <%02i-%i>\n", dcb->target_id, dcb->target_lun, diff -u linux-intel-iotg-5.15-5.15.0/drivers/scsi/libiscsi.c linux-intel-iotg-5.15-5.15.0/drivers/scsi/libiscsi.c --- linux-intel-iotg-5.15-5.15.0/drivers/scsi/libiscsi.c +++ linux-intel-iotg-5.15-5.15.0/drivers/scsi/libiscsi.c @@ -678,7 +678,8 @@ struct iscsi_task *task; itt_t itt; - if (session->state == ISCSI_STATE_TERMINATE) + if (session->state == ISCSI_STATE_TERMINATE || + !test_bit(ISCSI_CONN_FLAG_BOUND, &conn->flags)) return NULL; if (opcode == ISCSI_OP_LOGIN || opcode == ISCSI_OP_TEXT) { @@ -1392,8 +1393,8 @@ if (conn->stop_stage == 0) session->state = ISCSI_STATE_FAILED; - set_bit(ISCSI_SUSPEND_BIT, &conn->suspend_tx); - set_bit(ISCSI_SUSPEND_BIT, &conn->suspend_rx); + set_bit(ISCSI_CONN_FLAG_SUSPEND_TX, &conn->flags); + set_bit(ISCSI_CONN_FLAG_SUSPEND_RX, &conn->flags); return true; } @@ -1454,7 +1455,7 @@ * Do this after dropping the extra ref because if this was a requeue * it's removed from that list and cleanup_queued_task would miss it. */ - if (test_bit(ISCSI_SUSPEND_BIT, &conn->suspend_tx)) { + if (test_bit(ISCSI_CONN_FLAG_SUSPEND_TX, &conn->flags)) { /* * Save the task and ref in case we weren't cleaning up this * task and get woken up again. @@ -1532,7 +1533,7 @@ int rc = 0; spin_lock_bh(&conn->session->frwd_lock); - if (test_bit(ISCSI_SUSPEND_BIT, &conn->suspend_tx)) { + if (test_bit(ISCSI_CONN_FLAG_SUSPEND_TX, &conn->flags)) { ISCSI_DBG_SESSION(conn->session, "Tx suspended!\n"); spin_unlock_bh(&conn->session->frwd_lock); return -ENODATA; @@ -1746,7 +1747,7 @@ goto fault; } - if (test_bit(ISCSI_SUSPEND_BIT, &conn->suspend_tx)) { + if (test_bit(ISCSI_CONN_FLAG_SUSPEND_TX, &conn->flags)) { reason = FAILURE_SESSION_IN_RECOVERY; sc->result = DID_REQUEUE << 16; goto fault; @@ -1935,7 +1936,7 @@ void iscsi_suspend_queue(struct iscsi_conn *conn) { spin_lock_bh(&conn->session->frwd_lock); - set_bit(ISCSI_SUSPEND_BIT, &conn->suspend_tx); + set_bit(ISCSI_CONN_FLAG_SUSPEND_TX, &conn->flags); spin_unlock_bh(&conn->session->frwd_lock); } EXPORT_SYMBOL_GPL(iscsi_suspend_queue); @@ -1953,7 +1954,7 @@ struct Scsi_Host *shost = conn->session->host; struct iscsi_host *ihost = shost_priv(shost); - set_bit(ISCSI_SUSPEND_BIT, &conn->suspend_tx); + set_bit(ISCSI_CONN_FLAG_SUSPEND_TX, &conn->flags); if (ihost->workq) flush_workqueue(ihost->workq); } @@ -1961,7 +1962,7 @@ static void iscsi_start_tx(struct iscsi_conn *conn) { - clear_bit(ISCSI_SUSPEND_BIT, &conn->suspend_tx); + clear_bit(ISCSI_CONN_FLAG_SUSPEND_TX, &conn->flags); iscsi_conn_queue_work(conn); } @@ -2214,6 +2215,8 @@ iscsi_suspend_tx(conn); spin_lock_bh(&session->frwd_lock); + clear_bit(ISCSI_CONN_FLAG_BOUND, &conn->flags); + if (!is_active) { /* * if logout timed out before userspace could even send a PDU @@ -3312,6 +3315,8 @@ spin_lock_bh(&session->frwd_lock); if (is_leading) session->leadconn = conn; + + set_bit(ISCSI_CONN_FLAG_BOUND, &conn->flags); spin_unlock_bh(&session->frwd_lock); /* @@ -3324,8 +3329,8 @@ /* * Unblock xmitworker(), Login Phase will pass through. */ - clear_bit(ISCSI_SUSPEND_BIT, &conn->suspend_rx); - clear_bit(ISCSI_SUSPEND_BIT, &conn->suspend_tx); + clear_bit(ISCSI_CONN_FLAG_SUSPEND_RX, &conn->flags); + clear_bit(ISCSI_CONN_FLAG_SUSPEND_TX, &conn->flags); return 0; } EXPORT_SYMBOL_GPL(iscsi_conn_bind); diff -u linux-intel-iotg-5.15-5.15.0/drivers/scsi/lpfc/lpfc_els.c linux-intel-iotg-5.15-5.15.0/drivers/scsi/lpfc/lpfc_els.c --- linux-intel-iotg-5.15-5.15.0/drivers/scsi/lpfc/lpfc_els.c +++ linux-intel-iotg-5.15-5.15.0/drivers/scsi/lpfc/lpfc_els.c @@ -3784,9 +3784,6 @@ { u32 rsp_sig_cap = 0, drv_sig_cap = 0; u32 rsp_sig_freq_cyc = 0, rsp_sig_freq_scale = 0; - struct lpfc_cgn_info *cp; - u32 crc; - u16 sig_freq; /* Get rsp signal and frequency capabilities. */ rsp_sig_cap = be32_to_cpu(pcgd->xmt_signal_capability); @@ -3842,25 +3839,7 @@ } } - if (!phba->cgn_i) - return; - - /* Update signal frequency in congestion info buffer */ - cp = (struct lpfc_cgn_info *)phba->cgn_i->virt; - - /* Frequency (in ms) Signal Warning/Signal Congestion Notifications - * are received by the HBA - */ - sig_freq = phba->cgn_sig_freq; - - if (phba->cgn_reg_signal == EDC_CG_SIG_WARN_ONLY) - cp->cgn_warn_freq = cpu_to_le16(sig_freq); - if (phba->cgn_reg_signal == EDC_CG_SIG_WARN_ALARM) { - cp->cgn_alarm_freq = cpu_to_le16(sig_freq); - cp->cgn_warn_freq = cpu_to_le16(sig_freq); - } - crc = lpfc_cgn_calc_crc32(cp, LPFC_CGN_INFO_SZ, LPFC_CGN_CRC32_SEED); - cp->cgn_info_crc = cpu_to_le32(crc); + /* We are NOT recording signal frequency in congestion info buffer */ return; out_no_support: @@ -9606,11 +9585,14 @@ /* Take action here for an Alarm event */ if (phba->cmf_active_mode != LPFC_CFG_OFF) { if (phba->cgn_reg_fpin & LPFC_CGN_FPIN_ALARM) { - /* Track of alarm cnt for cgn_info */ - atomic_inc(&phba->cgn_fabric_alarm_cnt); /* Track of alarm cnt for SYNC_WQE */ atomic_inc(&phba->cgn_sync_alarm_cnt); } + /* Track alarm cnt for cgn_info regardless + * of whether CMF is configured for Signals + * or FPINs. + */ + atomic_inc(&phba->cgn_fabric_alarm_cnt); goto cleanup; } break; @@ -9618,11 +9600,14 @@ /* Take action here for a Warning event */ if (phba->cmf_active_mode != LPFC_CFG_OFF) { if (phba->cgn_reg_fpin & LPFC_CGN_FPIN_WARN) { - /* Track of warning cnt for cgn_info */ - atomic_inc(&phba->cgn_fabric_warn_cnt); /* Track of warning cnt for SYNC_WQE */ atomic_inc(&phba->cgn_sync_warn_cnt); } + /* Track warning cnt and freq for cgn_info + * regardless of whether CMF is configured for + * Signals or FPINs. + */ + atomic_inc(&phba->cgn_fabric_warn_cnt); cleanup: /* Save frequency in ms */ phba->cgn_fpin_frequency = @@ -9631,14 +9616,10 @@ if (phba->cgn_i) { cp = (struct lpfc_cgn_info *) phba->cgn_i->virt; - if (phba->cgn_reg_fpin & - LPFC_CGN_FPIN_ALARM) - cp->cgn_alarm_freq = - cpu_to_le16(value); - if (phba->cgn_reg_fpin & - LPFC_CGN_FPIN_WARN) - cp->cgn_warn_freq = - cpu_to_le16(value); + cp->cgn_alarm_freq = + cpu_to_le16(value); + cp->cgn_warn_freq = + cpu_to_le16(value); crc = lpfc_cgn_calc_crc32 (cp, LPFC_CGN_INFO_SZ, diff -u linux-intel-iotg-5.15-5.15.0/drivers/scsi/lpfc/lpfc_init.c linux-intel-iotg-5.15-5.15.0/drivers/scsi/lpfc/lpfc_init.c --- linux-intel-iotg-5.15-5.15.0/drivers/scsi/lpfc/lpfc_init.c +++ linux-intel-iotg-5.15-5.15.0/drivers/scsi/lpfc/lpfc_init.c @@ -5853,21 +5853,8 @@ /* Use the frequency found in the last rcv'ed FPIN */ value = phba->cgn_fpin_frequency; - if (phba->cgn_reg_fpin & LPFC_CGN_FPIN_WARN) - cp->cgn_warn_freq = cpu_to_le16(value); - if (phba->cgn_reg_fpin & LPFC_CGN_FPIN_ALARM) - cp->cgn_alarm_freq = cpu_to_le16(value); - - /* Frequency (in ms) Signal Warning/Signal Congestion Notifications - * are received by the HBA - */ - value = phba->cgn_sig_freq; - - if (phba->cgn_reg_signal == EDC_CG_SIG_WARN_ONLY || - phba->cgn_reg_signal == EDC_CG_SIG_WARN_ALARM) - cp->cgn_warn_freq = cpu_to_le16(value); - if (phba->cgn_reg_signal == EDC_CG_SIG_WARN_ALARM) - cp->cgn_alarm_freq = cpu_to_le16(value); + cp->cgn_warn_freq = cpu_to_le16(value); + cp->cgn_alarm_freq = cpu_to_le16(value); lvalue = lpfc_cgn_calc_crc32(cp, LPFC_CGN_INFO_SZ, LPFC_CGN_CRC32_SEED); @@ -6582,9 +6569,6 @@ /* Alarm overrides warning, so check that first */ if (cgn_signal->alarm_cnt) { if (phba->cgn_reg_signal == EDC_CG_SIG_WARN_ALARM) { - /* Keep track of alarm cnt for cgn_info */ - atomic_add(cgn_signal->alarm_cnt, - &phba->cgn_fabric_alarm_cnt); /* Keep track of alarm cnt for CMF_SYNC_WQE */ atomic_add(cgn_signal->alarm_cnt, &phba->cgn_sync_alarm_cnt); @@ -6593,8 +6577,6 @@ /* signal action needs to be taken */ if (phba->cgn_reg_signal == EDC_CG_SIG_WARN_ONLY || phba->cgn_reg_signal == EDC_CG_SIG_WARN_ALARM) { - /* Keep track of warning cnt for cgn_info */ - atomic_add(cnt, &phba->cgn_fabric_warn_cnt); /* Keep track of warning cnt for CMF_SYNC_WQE */ atomic_add(cnt, &phba->cgn_sync_warn_cnt); } @@ -15664,34 +15646,7 @@ unsigned int temp_idx; int i; int j = 0; - unsigned long rem_nsec, iflags; - bool log_verbose = false; - struct lpfc_vport *port_iterator; - - /* Don't dump messages if we explicitly set log_verbose for the - * physical port or any vport. - */ - if (phba->cfg_log_verbose) - return; - - spin_lock_irqsave(&phba->port_list_lock, iflags); - list_for_each_entry(port_iterator, &phba->port_list, listentry) { - if (port_iterator->load_flag & FC_UNLOADING) - continue; - if (scsi_host_get(lpfc_shost_from_vport(port_iterator))) { - if (port_iterator->cfg_log_verbose) - log_verbose = true; - - scsi_host_put(lpfc_shost_from_vport(port_iterator)); - - if (log_verbose) { - spin_unlock_irqrestore(&phba->port_list_lock, - iflags); - return; - } - } - } - spin_unlock_irqrestore(&phba->port_list_lock, iflags); + unsigned long rem_nsec; if (atomic_cmpxchg(&phba->dbg_log_dmping, 0, 1) != 0) return; diff -u linux-intel-iotg-5.15-5.15.0/drivers/scsi/lpfc/lpfc_scsi.c linux-intel-iotg-5.15-5.15.0/drivers/scsi/lpfc/lpfc_scsi.c --- linux-intel-iotg-5.15-5.15.0/drivers/scsi/lpfc/lpfc_scsi.c +++ linux-intel-iotg-5.15-5.15.0/drivers/scsi/lpfc/lpfc_scsi.c @@ -3936,7 +3936,7 @@ else time = div_u64(time + 500, 1000); /* round it */ - cgs = this_cpu_ptr(phba->cmf_stat); + cgs = per_cpu_ptr(phba->cmf_stat, raw_smp_processor_id()); atomic64_add(size, &cgs->rcv_bytes); atomic64_add(time, &cgs->rx_latency); atomic_inc(&cgs->rx_io_cnt); @@ -3980,7 +3980,7 @@ atomic_set(&phba->rx_max_read_cnt, size); } - cgs = this_cpu_ptr(phba->cmf_stat); + cgs = per_cpu_ptr(phba->cmf_stat, raw_smp_processor_id()); atomic64_add(size, &cgs->total_bytes); return 0; } @@ -5907,25 +5907,25 @@ if (!lpfc_cmd) return ret; - spin_lock_irqsave(&phba->hbalock, flags); + /* Guard against IO completion being called at same time */ + spin_lock_irqsave(&lpfc_cmd->buf_lock, flags); + + spin_lock(&phba->hbalock); /* driver queued commands are in process of being flushed */ if (phba->hba_flag & HBA_IOQ_FLUSH) { lpfc_printf_vlog(vport, KERN_WARNING, LOG_FCP, "3168 SCSI Layer abort requested I/O has been " "flushed by LLD.\n"); ret = FAILED; - goto out_unlock; + goto out_unlock_hba; } - /* Guard against IO completion being called at same time */ - spin_lock(&lpfc_cmd->buf_lock); - if (!lpfc_cmd->pCmd) { lpfc_printf_vlog(vport, KERN_WARNING, LOG_FCP, "2873 SCSI Layer I/O Abort Request IO CMPL Status " "x%x ID %d LUN %llu\n", SUCCESS, cmnd->device->id, cmnd->device->lun); - goto out_unlock_buf; + goto out_unlock_hba; } iocb = &lpfc_cmd->cur_iocbq; @@ -5933,7 +5933,7 @@ pring_s4 = phba->sli4_hba.hdwq[iocb->hba_wqidx].io_wq->pring; if (!pring_s4) { ret = FAILED; - goto out_unlock_buf; + goto out_unlock_hba; } spin_lock(&pring_s4->ring_lock); } @@ -5966,8 +5966,8 @@ "3389 SCSI Layer I/O Abort Request is pending\n"); if (phba->sli_rev == LPFC_SLI_REV4) spin_unlock(&pring_s4->ring_lock); - spin_unlock(&lpfc_cmd->buf_lock); - spin_unlock_irqrestore(&phba->hbalock, flags); + spin_unlock(&phba->hbalock); + spin_unlock_irqrestore(&lpfc_cmd->buf_lock, flags); goto wait_for_cmpl; } @@ -5988,15 +5988,13 @@ if (ret_val != IOCB_SUCCESS) { /* Indicate the IO is not being aborted by the driver. */ lpfc_cmd->waitq = NULL; - spin_unlock(&lpfc_cmd->buf_lock); - spin_unlock_irqrestore(&phba->hbalock, flags); ret = FAILED; - goto out; + goto out_unlock_hba; } /* no longer need the lock after this point */ - spin_unlock(&lpfc_cmd->buf_lock); - spin_unlock_irqrestore(&phba->hbalock, flags); + spin_unlock(&phba->hbalock); + spin_unlock_irqrestore(&lpfc_cmd->buf_lock, flags); if (phba->cfg_poll & DISABLE_FCP_RING_INT) lpfc_sli_handle_fast_ring_event(phba, @@ -6031,10 +6029,9 @@ out_unlock_ring: if (phba->sli_rev == LPFC_SLI_REV4) spin_unlock(&pring_s4->ring_lock); -out_unlock_buf: - spin_unlock(&lpfc_cmd->buf_lock); -out_unlock: - spin_unlock_irqrestore(&phba->hbalock, flags); +out_unlock_hba: + spin_unlock(&phba->hbalock); + spin_unlock_irqrestore(&lpfc_cmd->buf_lock, flags); out: lpfc_printf_vlog(vport, KERN_WARNING, LOG_FCP, "0749 SCSI Layer I/O Abort Request Status x%x ID %d " diff -u linux-intel-iotg-5.15-5.15.0/drivers/scsi/lpfc/lpfc_sli.c linux-intel-iotg-5.15-5.15.0/drivers/scsi/lpfc/lpfc_sli.c --- linux-intel-iotg-5.15-5.15.0/drivers/scsi/lpfc/lpfc_sli.c +++ linux-intel-iotg-5.15-5.15.0/drivers/scsi/lpfc/lpfc_sli.c @@ -18443,7 +18443,6 @@ case FC_RCTL_ELS_REP: /* extended link services reply */ case FC_RCTL_ELS4_REQ: /* FC-4 ELS request */ case FC_RCTL_ELS4_REP: /* FC-4 ELS reply */ - case FC_RCTL_BA_NOP: /* basic link service NOP */ case FC_RCTL_BA_ABTS: /* basic link service abort */ case FC_RCTL_BA_RMC: /* remove connection */ case FC_RCTL_BA_ACC: /* basic accept */ @@ -18464,6 +18463,7 @@ fc_vft_hdr = (struct fc_vft_header *)fc_hdr; fc_hdr = &((struct fc_frame_header *)fc_vft_hdr)[1]; return lpfc_fc_frame_check(phba, fc_hdr); + case FC_RCTL_BA_NOP: /* basic link service NOP */ default: goto drop; } @@ -19276,12 +19276,14 @@ if (!lpfc_complete_unsol_iocb(phba, phba->sli4_hba.els_wq->pring, iocbq, fc_hdr->fh_r_ctl, - fc_hdr->fh_type)) + fc_hdr->fh_type)) { lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT, "2540 Ring %d handler: unexpected Rctl " "x%x Type x%x received\n", LPFC_ELS_RING, fc_hdr->fh_r_ctl, fc_hdr->fh_type); + lpfc_in_buf_free(phba, &seq_dmabuf->dbuf); + } /* Free iocb created in lpfc_prep_seq */ list_for_each_entry_safe(curr_iocb, next_iocb, diff -u linux-intel-iotg-5.15-5.15.0/drivers/scsi/qla2xxx/qla_target.c linux-intel-iotg-5.15-5.15.0/drivers/scsi/qla2xxx/qla_target.c --- linux-intel-iotg-5.15-5.15.0/drivers/scsi/qla2xxx/qla_target.c +++ linux-intel-iotg-5.15-5.15.0/drivers/scsi/qla2xxx/qla_target.c @@ -3837,6 +3837,9 @@ spin_lock_irqsave(&cmd->cmd_lock, flags); if (cmd->aborted) { + if (cmd->sg_mapped) + qlt_unmap_sg(vha, cmd); + spin_unlock_irqrestore(&cmd->cmd_lock, flags); /* * It's normal to see 2 calls in this path: diff -u linux-intel-iotg-5.15-5.15.0/drivers/scsi/scsi_transport_iscsi.c linux-intel-iotg-5.15-5.15.0/drivers/scsi/scsi_transport_iscsi.c --- linux-intel-iotg-5.15-5.15.0/drivers/scsi/scsi_transport_iscsi.c +++ linux-intel-iotg-5.15-5.15.0/drivers/scsi/scsi_transport_iscsi.c @@ -86,6 +86,9 @@ struct transport_container session_cont; }; +static DEFINE_IDR(iscsi_ep_idr); +static DEFINE_MUTEX(iscsi_ep_idr_mutex); + static atomic_t iscsi_session_nr; /* sysfs session id for next new session */ static struct workqueue_struct *iscsi_eh_timer_workq; @@ -169,6 +172,11 @@ static void iscsi_endpoint_release(struct device *dev) { struct iscsi_endpoint *ep = iscsi_dev_to_endpoint(dev); + + mutex_lock(&iscsi_ep_idr_mutex); + idr_remove(&iscsi_ep_idr, ep->id); + mutex_unlock(&iscsi_ep_idr_mutex); + kfree(ep); } @@ -181,7 +189,7 @@ show_ep_handle(struct device *dev, struct device_attribute *attr, char *buf) { struct iscsi_endpoint *ep = iscsi_dev_to_endpoint(dev); - return sysfs_emit(buf, "%llu\n", (unsigned long long) ep->id); + return sysfs_emit(buf, "%d\n", ep->id); } static ISCSI_ATTR(ep, handle, S_IRUGO, show_ep_handle, NULL); @@ -194,48 +202,32 @@ .attrs = iscsi_endpoint_attrs, }; -#define ISCSI_MAX_EPID -1 - -static int iscsi_match_epid(struct device *dev, const void *data) -{ - struct iscsi_endpoint *ep = iscsi_dev_to_endpoint(dev); - const uint64_t *epid = data; - - return *epid == ep->id; -} - struct iscsi_endpoint * iscsi_create_endpoint(int dd_size) { - struct device *dev; struct iscsi_endpoint *ep; - uint64_t id; - int err; - - for (id = 1; id < ISCSI_MAX_EPID; id++) { - dev = class_find_device(&iscsi_endpoint_class, NULL, &id, - iscsi_match_epid); - if (!dev) - break; - else - put_device(dev); - } - if (id == ISCSI_MAX_EPID) { - printk(KERN_ERR "Too many connections. Max supported %u\n", - ISCSI_MAX_EPID - 1); - return NULL; - } + int err, id; ep = kzalloc(sizeof(*ep) + dd_size, GFP_KERNEL); if (!ep) return NULL; + mutex_lock(&iscsi_ep_idr_mutex); + id = idr_alloc(&iscsi_ep_idr, ep, 0, -1, GFP_NOIO); + if (id < 0) { + mutex_unlock(&iscsi_ep_idr_mutex); + printk(KERN_ERR "Could not allocate endpoint ID. Error %d.\n", + id); + goto free_ep; + } + mutex_unlock(&iscsi_ep_idr_mutex); + ep->id = id; ep->dev.class = &iscsi_endpoint_class; - dev_set_name(&ep->dev, "ep-%llu", (unsigned long long) id); + dev_set_name(&ep->dev, "ep-%d", id); err = device_register(&ep->dev); if (err) - goto free_ep; + goto free_id; err = sysfs_create_group(&ep->dev.kobj, &iscsi_endpoint_group); if (err) @@ -249,6 +241,10 @@ device_unregister(&ep->dev); return NULL; +free_id: + mutex_lock(&iscsi_ep_idr_mutex); + idr_remove(&iscsi_ep_idr, id); + mutex_unlock(&iscsi_ep_idr_mutex); free_ep: kfree(ep); return NULL; @@ -276,14 +272,17 @@ */ struct iscsi_endpoint *iscsi_lookup_endpoint(u64 handle) { - struct device *dev; + struct iscsi_endpoint *ep; - dev = class_find_device(&iscsi_endpoint_class, NULL, &handle, - iscsi_match_epid); - if (!dev) - return NULL; + mutex_lock(&iscsi_ep_idr_mutex); + ep = idr_find(&iscsi_ep_idr, handle); + if (!ep) + goto unlock; - return iscsi_dev_to_endpoint(dev); + get_device(&ep->dev); +unlock: + mutex_unlock(&iscsi_ep_idr_mutex); + return ep; } EXPORT_SYMBOL_GPL(iscsi_lookup_endpoint); diff -u linux-intel-iotg-5.15-5.15.0/drivers/scsi/ufs/ufshcd.c linux-intel-iotg-5.15-5.15.0/drivers/scsi/ufs/ufshcd.c --- linux-intel-iotg-5.15-5.15.0/drivers/scsi/ufs/ufshcd.c +++ linux-intel-iotg-5.15-5.15.0/drivers/scsi/ufs/ufshcd.c @@ -112,8 +112,13 @@ if (!regs) return -ENOMEM; - for (pos = 0; pos < len; pos += 4) + for (pos = 0; pos < len; pos += 4) { + if (offset == 0 && + pos >= REG_UIC_ERROR_CODE_PHY_ADAPTER_LAYER && + pos <= REG_UIC_ERROR_CODE_DME) + continue; regs[pos / 4] = ufshcd_readl(hba, offset + pos); + } ufshcd_hex_dump(prefix, regs, len); kfree(regs); @@ -358,7 +363,7 @@ static void ufshcd_add_command_trace(struct ufs_hba *hba, unsigned int tag, enum ufs_trace_str_t str_t) { - u64 lba; + u64 lba = 0; u8 opcode = 0, group_id = 0; u32 intr, doorbell; struct ufshcd_lrb *lrbp = &hba->lrb[tag]; @@ -375,7 +380,6 @@ return; opcode = cmd->cmnd[0]; - lba = scsi_get_lba(cmd); if (opcode == READ_10 || opcode == WRITE_10) { /* @@ -383,6 +387,7 @@ */ transfer_len = be32_to_cpu(lrbp->ucd_req_ptr->sc.exp_data_transfer_len); + lba = scsi_get_lba(cmd); if (opcode == WRITE_10) group_id = lrbp->cmd->cmnd[6]; } else if (opcode == UNMAP) { @@ -390,6 +395,7 @@ * The number of Bytes to be unmapped beginning with the lba. */ transfer_len = blk_rq_bytes(rq); + lba = scsi_get_lba(cmd); } intr = ufshcd_readl(hba, REG_INTERRUPT_STATUS); diff -u linux-intel-iotg-5.15-5.15.0/drivers/scsi/ufs/ufshpb.c linux-intel-iotg-5.15-5.15.0/drivers/scsi/ufs/ufshpb.c --- linux-intel-iotg-5.15-5.15.0/drivers/scsi/ufs/ufshpb.c +++ linux-intel-iotg-5.15-5.15.0/drivers/scsi/ufs/ufshpb.c @@ -1257,6 +1257,13 @@ struct utp_hpb_rsp *rsp_field = &lrbp->ucd_rsp_ptr->hr; int data_seg_len; + data_seg_len = be32_to_cpu(lrbp->ucd_rsp_ptr->header.dword_2) + & MASK_RSP_UPIU_DATA_SEG_LEN; + + /* If data segment length is zero, rsp_field is not valid */ + if (!data_seg_len) + return; + if (unlikely(lrbp->lun != rsp_field->lun)) { struct scsi_device *sdev; bool found = false; @@ -1291,18 +1298,6 @@ return; } - data_seg_len = be32_to_cpu(lrbp->ucd_rsp_ptr->header.dword_2) - & MASK_RSP_UPIU_DATA_SEG_LEN; - - /* To flush remained rsp_list, we queue the map_work task */ - if (!data_seg_len) { - if (!ufshpb_is_general_lun(hpb->lun)) - return; - - ufshpb_kick_map_work(hpb); - return; - } - BUILD_BUG_ON(sizeof(struct utp_hpb_rsp) != UTP_HPB_RSP_SIZE); if (!ufshpb_is_hpb_rsp_valid(hba, lrbp, rsp_field)) diff -u linux-intel-iotg-5.15-5.15.0/drivers/soc/qcom/llcc-qcom.c linux-intel-iotg-5.15-5.15.0/drivers/soc/qcom/llcc-qcom.c --- linux-intel-iotg-5.15-5.15.0/drivers/soc/qcom/llcc-qcom.c +++ linux-intel-iotg-5.15-5.15.0/drivers/soc/qcom/llcc-qcom.c @@ -630,6 +630,7 @@ { .compatible = "qcom,sm8250-llcc", .data = &sm8250_cfg }, { } }; +MODULE_DEVICE_TABLE(of, qcom_llcc_of_match); static struct platform_driver qcom_llcc_driver = { .driver = { diff -u linux-intel-iotg-5.15-5.15.0/drivers/spi/atmel-quadspi.c linux-intel-iotg-5.15-5.15.0/drivers/spi/atmel-quadspi.c --- linux-intel-iotg-5.15-5.15.0/drivers/spi/atmel-quadspi.c +++ linux-intel-iotg-5.15-5.15.0/drivers/spi/atmel-quadspi.c @@ -277,6 +277,9 @@ static bool atmel_qspi_supports_op(struct spi_mem *mem, const struct spi_mem_op *op) { + if (!spi_mem_default_supports_op(mem, op)) + return false; + if (atmel_qspi_find_mode(op) < 0) return false; diff -u linux-intel-iotg-5.15-5.15.0/drivers/spi/spi-cadence-quadspi.c linux-intel-iotg-5.15-5.15.0/drivers/spi/spi-cadence-quadspi.c --- linux-intel-iotg-5.15-5.15.0/drivers/spi/spi-cadence-quadspi.c +++ linux-intel-iotg-5.15-5.15.0/drivers/spi/spi-cadence-quadspi.c @@ -36,6 +36,7 @@ /* Quirks */ #define CQSPI_NEEDS_WR_DELAY BIT(0) #define CQSPI_DISABLE_DAC_MODE BIT(1) +#define CQSPI_NO_SUPPORT_WR_COMPLETION BIT(3) /* Capabilities */ #define CQSPI_SUPPORTS_OCTAL BIT(0) @@ -83,6 +84,7 @@ u32 wr_delay; bool use_direct_mode; struct cqspi_flash_pdata f_pdata[CQSPI_MAX_CHIPSELECT]; + bool wr_completion; }; struct cqspi_driver_platdata { @@ -797,9 +799,11 @@ * polling on the controller's side. spinand and spi-nor will take * care of polling the status register. */ - reg = readl(reg_base + CQSPI_REG_WR_COMPLETION_CTRL); - reg |= CQSPI_REG_WR_DISABLE_AUTO_POLL; - writel(reg, reg_base + CQSPI_REG_WR_COMPLETION_CTRL); + if (cqspi->wr_completion) { + reg = readl(reg_base + CQSPI_REG_WR_COMPLETION_CTRL); + reg |= CQSPI_REG_WR_DISABLE_AUTO_POLL; + writel(reg, reg_base + CQSPI_REG_WR_COMPLETION_CTRL); + } reg = readl(reg_base + CQSPI_REG_SIZE); reg &= ~CQSPI_REG_SIZE_ADDRESS_MASK; @@ -1226,9 +1230,24 @@ all_false = !op->cmd.dtr && !op->addr.dtr && !op->dummy.dtr && !op->data.dtr; - /* Mixed DTR modes not supported. */ - if (!(all_true || all_false)) + if (all_true) { + /* Right now we only support 8-8-8 DTR mode. */ + if (op->cmd.nbytes && op->cmd.buswidth != 8) + return false; + if (op->addr.nbytes && op->addr.buswidth != 8) + return false; + if (op->data.nbytes && op->data.buswidth != 8) + return false; + } else if (all_false) { + /* Only 1-1-X ops are supported without DTR */ + if (op->cmd.nbytes && op->cmd.buswidth > 1) + return false; + if (op->addr.nbytes && op->addr.buswidth > 1) + return false; + } else { + /* Mixed DTR modes are not supported. */ return false; + } if (all_true) return spi_mem_dtr_supports_op(mem, op); @@ -1517,6 +1536,10 @@ cqspi->master_ref_clk_hz = clk_get_rate(cqspi->clk); master->max_speed_hz = cqspi->master_ref_clk_hz; + + /* write completion is supported by default */ + cqspi->wr_completion = true; + ddata = of_device_get_match_data(dev); if (ddata) { if (ddata->quirks & CQSPI_NEEDS_WR_DELAY) @@ -1526,6 +1549,8 @@ master->mode_bits |= SPI_RX_OCTAL | SPI_TX_OCTAL; if (!(ddata->quirks & CQSPI_DISABLE_DAC_MODE)) cqspi->use_direct_mode = true; + if (ddata->quirks & CQSPI_NO_SUPPORT_WR_COMPLETION) + cqspi->wr_completion = false; } ret = devm_request_irq(dev, irq, cqspi_irq_handler, 0, @@ -1634,6 +1659,10 @@ .quirks = CQSPI_DISABLE_DAC_MODE, }; +static const struct cqspi_driver_platdata socfpga_qspi = { + .quirks = CQSPI_DISABLE_DAC_MODE | CQSPI_NO_SUPPORT_WR_COMPLETION, +}; + static const struct of_device_id cqspi_dt_ids[] = { { .compatible = "cdns,qspi-nor", @@ -1651,6 +1680,10 @@ .compatible = "intel,lgm-qspi", .data = &intel_lgm_qspi, }, + { + .compatible = "intel,socfpga-qspi", + .data = (void *)&socfpga_qspi, + }, { /* end of table */ } }; diff -u linux-intel-iotg-5.15-5.15.0/drivers/spi/spi-mtk-nor.c linux-intel-iotg-5.15-5.15.0/drivers/spi/spi-mtk-nor.c --- linux-intel-iotg-5.15-5.15.0/drivers/spi/spi-mtk-nor.c +++ linux-intel-iotg-5.15-5.15.0/drivers/spi/spi-mtk-nor.c @@ -909,7 +909,17 @@ static int __maybe_unused mtk_nor_resume(struct device *dev) { - return pm_runtime_force_resume(dev); + struct spi_controller *ctlr = dev_get_drvdata(dev); + struct mtk_nor *sp = spi_controller_get_devdata(ctlr); + int ret; + + ret = pm_runtime_force_resume(dev); + if (ret) + return ret; + + mtk_nor_init(sp); + + return 0; } static const struct dev_pm_ops mtk_nor_pm_ops = { diff -u linux-intel-iotg-5.15-5.15.0/drivers/spi/spi-rockchip.c linux-intel-iotg-5.15-5.15.0/drivers/spi/spi-rockchip.c --- linux-intel-iotg-5.15-5.15.0/drivers/spi/spi-rockchip.c +++ linux-intel-iotg-5.15-5.15.0/drivers/spi/spi-rockchip.c @@ -133,7 +133,8 @@ #define INT_TF_OVERFLOW (1 << 1) #define INT_RF_UNDERFLOW (1 << 2) #define INT_RF_OVERFLOW (1 << 3) -#define INT_RF_FULL (1 << 4) +#define INT_RF_FULL (1 << 4) +#define INT_CS_INACTIVE (1 << 6) /* Bit fields in ICR, 4bit */ #define ICR_MASK 0x0f @@ -194,6 +195,10 @@ bool cs_asserted[ROCKCHIP_SPI_MAX_CS_NUM]; bool slave_abort; + bool cs_inactive; /* spi slave tansmition stop when cs inactive */ + bool cs_high_supported; /* native CS supports active-high polarity */ + + struct spi_transfer *xfer; /* Store xfer temporarily */ }; static inline void spi_enable_chip(struct rockchip_spi *rs, bool enable) @@ -343,6 +348,15 @@ struct spi_controller *ctlr = dev_id; struct rockchip_spi *rs = spi_controller_get_devdata(ctlr); + /* When int_cs_inactive comes, spi slave abort */ + if (rs->cs_inactive && readl_relaxed(rs->regs + ROCKCHIP_SPI_IMR) & INT_CS_INACTIVE) { + ctlr->slave_abort(ctlr); + writel_relaxed(0, rs->regs + ROCKCHIP_SPI_IMR); + writel_relaxed(0xffffffff, rs->regs + ROCKCHIP_SPI_ICR); + + return IRQ_HANDLED; + } + if (rs->tx_left) rockchip_spi_pio_writer(rs); @@ -350,6 +364,7 @@ if (!rs->rx_left) { spi_enable_chip(rs, false); writel_relaxed(0, rs->regs + ROCKCHIP_SPI_IMR); + writel_relaxed(0xffffffff, rs->regs + ROCKCHIP_SPI_ICR); spi_finalize_current_transfer(ctlr); } @@ -357,14 +372,18 @@ } static int rockchip_spi_prepare_irq(struct rockchip_spi *rs, - struct spi_transfer *xfer) + struct spi_controller *ctlr, + struct spi_transfer *xfer) { rs->tx = xfer->tx_buf; rs->rx = xfer->rx_buf; rs->tx_left = rs->tx ? xfer->len / rs->n_bytes : 0; rs->rx_left = xfer->len / rs->n_bytes; - writel_relaxed(INT_RF_FULL, rs->regs + ROCKCHIP_SPI_IMR); + if (rs->cs_inactive) + writel_relaxed(INT_RF_FULL | INT_CS_INACTIVE, rs->regs + ROCKCHIP_SPI_IMR); + else + writel_relaxed(INT_RF_FULL, rs->regs + ROCKCHIP_SPI_IMR); spi_enable_chip(rs, true); if (rs->tx_left) @@ -383,6 +402,9 @@ if (state & TXDMA && !rs->slave_abort) return; + if (rs->cs_inactive) + writel_relaxed(0, rs->regs + ROCKCHIP_SPI_IMR); + spi_enable_chip(rs, false); spi_finalize_current_transfer(ctlr); } @@ -423,14 +445,16 @@ atomic_set(&rs->state, 0); + rs->tx = xfer->tx_buf; + rs->rx = xfer->rx_buf; + rxdesc = NULL; if (xfer->rx_buf) { struct dma_slave_config rxconf = { .direction = DMA_DEV_TO_MEM, .src_addr = rs->dma_addr_rx, .src_addr_width = rs->n_bytes, - .src_maxburst = rockchip_spi_calc_burst_size(xfer->len / - rs->n_bytes), + .src_maxburst = rockchip_spi_calc_burst_size(xfer->len / rs->n_bytes), }; dmaengine_slave_config(ctlr->dma_rx, &rxconf); @@ -474,10 +498,13 @@ /* rx must be started before tx due to spi instinct */ if (rxdesc) { atomic_or(RXDMA, &rs->state); - dmaengine_submit(rxdesc); + ctlr->dma_rx->cookie = dmaengine_submit(rxdesc); dma_async_issue_pending(ctlr->dma_rx); } + if (rs->cs_inactive) + writel_relaxed(INT_CS_INACTIVE, rs->regs + ROCKCHIP_SPI_IMR); + spi_enable_chip(rs, true); if (txdesc) { @@ -584,7 +611,42 @@ static int rockchip_spi_slave_abort(struct spi_controller *ctlr) { struct rockchip_spi *rs = spi_controller_get_devdata(ctlr); + u32 rx_fifo_left; + struct dma_tx_state state; + enum dma_status status; + + /* Get current dma rx point */ + if (atomic_read(&rs->state) & RXDMA) { + dmaengine_pause(ctlr->dma_rx); + status = dmaengine_tx_status(ctlr->dma_rx, ctlr->dma_rx->cookie, &state); + if (status == DMA_ERROR) { + rs->rx = rs->xfer->rx_buf; + rs->xfer->len = 0; + rx_fifo_left = readl_relaxed(rs->regs + ROCKCHIP_SPI_RXFLR); + for (; rx_fifo_left; rx_fifo_left--) + readl_relaxed(rs->regs + ROCKCHIP_SPI_RXDR); + goto out; + } else { + rs->rx += rs->xfer->len - rs->n_bytes * state.residue; + } + } + + /* Get the valid data left in rx fifo and set rs->xfer->len real rx size */ + if (rs->rx) { + rx_fifo_left = readl_relaxed(rs->regs + ROCKCHIP_SPI_RXFLR); + for (; rx_fifo_left; rx_fifo_left--) { + u32 rxw = readl_relaxed(rs->regs + ROCKCHIP_SPI_RXDR); + + if (rs->n_bytes == 1) + *(u8 *)rs->rx = (u8)rxw; + else + *(u16 *)rs->rx = (u16)rxw; + rs->rx += rs->n_bytes; + } + rs->xfer->len = (unsigned int)(rs->rx - rs->xfer->rx_buf); + } +out: if (atomic_read(&rs->state) & RXDMA) dmaengine_terminate_sync(ctlr->dma_rx); if (atomic_read(&rs->state) & TXDMA) @@ -626,7 +688,7 @@ } rs->n_bytes = xfer->bits_per_word <= 8 ? 1 : 2; - + rs->xfer = xfer; use_dma = ctlr->can_dma ? ctlr->can_dma(ctlr, spi, xfer) : false; ret = rockchip_spi_config(rs, spi, xfer, use_dma, ctlr->slave); @@ -636,7 +698,7 @@ if (use_dma) return rockchip_spi_prepare_dma(rs, ctlr, xfer); - return rockchip_spi_prepare_irq(rs, xfer); + return rockchip_spi_prepare_irq(rs, ctlr, xfer); } static bool rockchip_spi_can_dma(struct spi_controller *ctlr, @@ -653,6 +715,34 @@ return xfer->len / bytes_per_word >= rs->fifo_len; } +static int rockchip_spi_setup(struct spi_device *spi) +{ + struct rockchip_spi *rs = spi_controller_get_devdata(spi->controller); + u32 cr0; + + if (!spi->cs_gpiod && (spi->mode & SPI_CS_HIGH) && !rs->cs_high_supported) { + dev_warn(&spi->dev, "setup: non GPIO CS can't be active-high\n"); + return -EINVAL; + } + + pm_runtime_get_sync(rs->dev); + + cr0 = readl_relaxed(rs->regs + ROCKCHIP_SPI_CTRLR0); + + cr0 &= ~(0x3 << CR0_SCPH_OFFSET); + cr0 |= ((spi->mode & 0x3) << CR0_SCPH_OFFSET); + if (spi->mode & SPI_CS_HIGH && spi->chip_select <= 1) + cr0 |= BIT(spi->chip_select) << CR0_SOI_OFFSET; + else if (spi->chip_select <= 1) + cr0 &= ~(BIT(spi->chip_select) << CR0_SOI_OFFSET); + + writel_relaxed(cr0, rs->regs + ROCKCHIP_SPI_CTRLR0); + + pm_runtime_put(rs->dev); + + return 0; +} + static int rockchip_spi_probe(struct platform_device *pdev) { int ret; @@ -780,6 +870,7 @@ ctlr->min_speed_hz = rs->freq / BAUDR_SCKDV_MAX; ctlr->max_speed_hz = min(rs->freq / BAUDR_SCKDV_MIN, MAX_SCLK_OUT); + ctlr->setup = rockchip_spi_setup; ctlr->set_cs = rockchip_spi_set_cs; ctlr->transfer_one = rockchip_spi_transfer_one; ctlr->max_transfer_size = rockchip_spi_max_transfer_size; @@ -814,9 +905,15 @@ switch (readl_relaxed(rs->regs + ROCKCHIP_SPI_VERSION)) { case ROCKCHIP_SPI_VER2_TYPE2: + rs->cs_high_supported = true; ctlr->mode_bits |= SPI_CS_HIGH; + if (ctlr->can_dma && slave_mode) + rs->cs_inactive = true; + else + rs->cs_inactive = false; break; default: + rs->cs_inactive = false; break; } diff -u linux-intel-iotg-5.15-5.15.0/drivers/spi/spi-stm32-qspi.c linux-intel-iotg-5.15-5.15.0/drivers/spi/spi-stm32-qspi.c --- linux-intel-iotg-5.15-5.15.0/drivers/spi/spi-stm32-qspi.c +++ linux-intel-iotg-5.15-5.15.0/drivers/spi/spi-stm32-qspi.c @@ -308,7 +308,8 @@ if (!op->data.nbytes) goto wait_nobusy; - if (readl_relaxed(qspi->io_base + QSPI_SR) & SR_TCF) + if ((readl_relaxed(qspi->io_base + QSPI_SR) & SR_TCF) || + qspi->fmode == CCR_FMODE_APM) goto out; reinit_completion(&qspi->data_completion); diff -u linux-intel-iotg-5.15-5.15.0/drivers/staging/media/rkvdec/rkvdec-h264.c linux-intel-iotg-5.15-5.15.0/drivers/staging/media/rkvdec/rkvdec-h264.c --- linux-intel-iotg-5.15-5.15.0/drivers/staging/media/rkvdec/rkvdec-h264.c +++ linux-intel-iotg-5.15-5.15.0/drivers/staging/media/rkvdec/rkvdec-h264.c @@ -112,6 +112,7 @@ const struct v4l2_ctrl_h264_sps *sps; const struct v4l2_ctrl_h264_pps *pps; const struct v4l2_ctrl_h264_scaling_matrix *scaling_matrix; + int ref_buf_idx[V4L2_H264_NUM_DPB_ENTRIES]; }; struct rkvdec_h264_ctx { @@ -661,8 +662,8 @@ WRITE_PPS(0xff, PROFILE_IDC); WRITE_PPS(1, CONSTRAINT_SET3_FLAG); WRITE_PPS(sps->chroma_format_idc, CHROMA_FORMAT_IDC); - WRITE_PPS(sps->bit_depth_luma_minus8 + 8, BIT_DEPTH_LUMA); - WRITE_PPS(sps->bit_depth_chroma_minus8 + 8, BIT_DEPTH_CHROMA); + WRITE_PPS(sps->bit_depth_luma_minus8, BIT_DEPTH_LUMA); + WRITE_PPS(sps->bit_depth_chroma_minus8, BIT_DEPTH_CHROMA); WRITE_PPS(0, QPPRIME_Y_ZERO_TRANSFORM_BYPASS_FLAG); WRITE_PPS(sps->log2_max_frame_num_minus4, LOG2_MAX_FRAME_NUM_MINUS4); WRITE_PPS(sps->max_num_ref_frames, MAX_NUM_REF_FRAMES); @@ -725,6 +726,26 @@ } } +static void lookup_ref_buf_idx(struct rkvdec_ctx *ctx, + struct rkvdec_h264_run *run) +{ + const struct v4l2_ctrl_h264_decode_params *dec_params = run->decode_params; + u32 i; + + for (i = 0; i < ARRAY_SIZE(dec_params->dpb); i++) { + struct v4l2_m2m_ctx *m2m_ctx = ctx->fh.m2m_ctx; + const struct v4l2_h264_dpb_entry *dpb = run->decode_params->dpb; + struct vb2_queue *cap_q = &m2m_ctx->cap_q_ctx.q; + int buf_idx = -1; + + if (dpb[i].flags & V4L2_H264_DPB_ENTRY_FLAG_ACTIVE) + buf_idx = vb2_find_timestamp(cap_q, + dpb[i].reference_ts, 0); + + run->ref_buf_idx[i] = buf_idx; + } +} + static void assemble_hw_rps(struct rkvdec_ctx *ctx, struct rkvdec_h264_run *run) { @@ -762,7 +783,7 @@ for (j = 0; j < RKVDEC_NUM_REFLIST; j++) { for (i = 0; i < h264_ctx->reflists.num_valid; i++) { - u8 dpb_valid = 0; + bool dpb_valid = run->ref_buf_idx[i] >= 0; u8 idx = 0; switch (j) { @@ -779,8 +800,6 @@ if (idx >= ARRAY_SIZE(dec_params->dpb)) continue; - dpb_valid = !!(dpb[idx].flags & - V4L2_H264_DPB_ENTRY_FLAG_ACTIVE); set_ps_field(hw_rps, DPB_INFO(i, j), idx | dpb_valid << 4); @@ -859,13 +878,8 @@ unsigned int dpb_idx) { struct v4l2_m2m_ctx *m2m_ctx = ctx->fh.m2m_ctx; - const struct v4l2_h264_dpb_entry *dpb = run->decode_params->dpb; struct vb2_queue *cap_q = &m2m_ctx->cap_q_ctx.q; - int buf_idx = -1; - - if (dpb[dpb_idx].flags & V4L2_H264_DPB_ENTRY_FLAG_ACTIVE) - buf_idx = vb2_find_timestamp(cap_q, - dpb[dpb_idx].reference_ts, 0); + int buf_idx = run->ref_buf_idx[dpb_idx]; /* * If a DPB entry is unused or invalid, address of current destination @@ -1102,6 +1116,7 @@ assemble_hw_scaling_list(ctx, &run); assemble_hw_pps(ctx, &run); + lookup_ref_buf_idx(ctx, &run); assemble_hw_rps(ctx, &run); config_registers(ctx, &run); diff -u linux-intel-iotg-5.15-5.15.0/drivers/staging/media/rkvdec/rkvdec.c linux-intel-iotg-5.15-5.15.0/drivers/staging/media/rkvdec/rkvdec.c --- linux-intel-iotg-5.15-5.15.0/drivers/staging/media/rkvdec/rkvdec.c +++ linux-intel-iotg-5.15-5.15.0/drivers/staging/media/rkvdec/rkvdec.c @@ -967,7 +967,6 @@ static int rkvdec_probe(struct platform_device *pdev) { struct rkvdec_dev *rkvdec; - struct resource *res; unsigned int i; int ret, irq; @@ -999,8 +998,7 @@ */ clk_set_rate(rkvdec->clocks[0].clk, 500 * 1000 * 1000); - res = platform_get_resource(pdev, IORESOURCE_MEM, 0); - rkvdec->regs = devm_ioremap_resource(&pdev->dev, res); + rkvdec->regs = devm_platform_ioremap_resource(pdev, 0); if (IS_ERR(rkvdec->regs)) return PTR_ERR(rkvdec->regs); diff -u linux-intel-iotg-5.15-5.15.0/drivers/staging/r8188eu/os_dep/ioctl_linux.c linux-intel-iotg-5.15-5.15.0/drivers/staging/r8188eu/os_dep/ioctl_linux.c --- linux-intel-iotg-5.15-5.15.0/drivers/staging/r8188eu/os_dep/ioctl_linux.c +++ linux-intel-iotg-5.15-5.15.0/drivers/staging/r8188eu/os_dep/ioctl_linux.c @@ -1249,9 +1249,11 @@ break; } sec_len = *(pos++); len -= 1; - if (sec_len > 0 && sec_len <= len) { + if (sec_len > 0 && + sec_len <= len && + sec_len <= 32) { ssid[ssid_index].SsidLength = sec_len; - memcpy(ssid[ssid_index].Ssid, pos, ssid[ssid_index].SsidLength); + memcpy(ssid[ssid_index].Ssid, pos, sec_len); ssid_index++; } pos += sec_len; @@ -2050,99 +2052,6 @@ return 0; } -static int rtw_wx_read32(struct net_device *dev, - struct iw_request_info *info, - union iwreq_data *wrqu, char *extra) -{ - struct adapter *padapter; - struct iw_point *p; - u16 len; - u32 addr; - u32 data32; - u32 bytes; - u8 *ptmp; - int ret; - - padapter = (struct adapter *)rtw_netdev_priv(dev); - p = &wrqu->data; - len = p->length; - ptmp = kmalloc(len, GFP_KERNEL); - if (!ptmp) - return -ENOMEM; - - if (copy_from_user(ptmp, p->pointer, len)) { - kfree(ptmp); - return -EFAULT; - } - - bytes = 0; - addr = 0; - sscanf(ptmp, "%d,%x", &bytes, &addr); - - switch (bytes) { - case 1: - data32 = rtw_read8(padapter, addr); - sprintf(extra, "0x%02X", data32); - break; - case 2: - data32 = rtw_read16(padapter, addr); - sprintf(extra, "0x%04X", data32); - break; - case 4: - data32 = rtw_read32(padapter, addr); - sprintf(extra, "0x%08X", data32); - break; - default: - DBG_88E(KERN_INFO "%s: usage> read [bytes],[address(hex)]\n", __func__); - ret = -EINVAL; - goto err_free_ptmp; - } - DBG_88E(KERN_INFO "%s: addr = 0x%08X data =%s\n", __func__, addr, extra); - - kfree(ptmp); - return 0; - -err_free_ptmp: - kfree(ptmp); - return ret; -} - -static int rtw_wx_write32(struct net_device *dev, - struct iw_request_info *info, - union iwreq_data *wrqu, char *extra) -{ - struct adapter *padapter = (struct adapter *)rtw_netdev_priv(dev); - - u32 addr; - u32 data32; - u32 bytes; - - bytes = 0; - addr = 0; - data32 = 0; - sscanf(extra, "%d,%x,%x", &bytes, &addr, &data32); - - switch (bytes) { - case 1: - rtw_write8(padapter, addr, (u8)data32); - DBG_88E(KERN_INFO "%s: addr = 0x%08X data = 0x%02X\n", __func__, addr, (u8)data32); - break; - case 2: - rtw_write16(padapter, addr, (u16)data32); - DBG_88E(KERN_INFO "%s: addr = 0x%08X data = 0x%04X\n", __func__, addr, (u16)data32); - break; - case 4: - rtw_write32(padapter, addr, data32); - DBG_88E(KERN_INFO "%s: addr = 0x%08X data = 0x%08X\n", __func__, addr, data32); - break; - default: - DBG_88E(KERN_INFO "%s: usage> write [bytes],[address(hex)],[data(hex)]\n", __func__); - return -EINVAL; - } - - return 0; -} - static int rtw_wx_read_rf(struct net_device *dev, struct iw_request_info *info, union iwreq_data *wrqu, char *extra) @@ -6577,8 +6486,8 @@ }; static iw_handler rtw_private_handler[] = { -rtw_wx_write32, /* 0x00 */ -rtw_wx_read32, /* 0x01 */ + NULL, /* 0x00 */ + NULL, /* 0x01 */ rtw_drvext_hdl, /* 0x02 */ rtw_mp_ioctl_hdl, /* 0x03 */ diff -u linux-intel-iotg-5.15-5.15.0/drivers/target/target_core_device.c linux-intel-iotg-5.15-5.15.0/drivers/target/target_core_device.c --- linux-intel-iotg-5.15-5.15.0/drivers/target/target_core_device.c +++ linux-intel-iotg-5.15-5.15.0/drivers/target/target_core_device.c @@ -850,7 +850,6 @@ attrib->unmap_granularity = q->limits.discard_granularity / block_size; attrib->unmap_granularity_alignment = q->limits.discard_alignment / block_size; - attrib->unmap_zeroes_data = !!(q->limits.max_write_zeroes_sectors); return true; } EXPORT_SYMBOL(target_configure_unmap_from_queue); diff -u linux-intel-iotg-5.15-5.15.0/drivers/target/target_core_user.c linux-intel-iotg-5.15-5.15.0/drivers/target/target_core_user.c --- linux-intel-iotg-5.15-5.15.0/drivers/target/target_core_user.c +++ linux-intel-iotg-5.15-5.15.0/drivers/target/target_core_user.c @@ -20,6 +20,7 @@ #include #include #include +#include #include #include #include @@ -1660,17 +1661,37 @@ static u32 tcmu_blocks_release(struct tcmu_dev *udev, unsigned long first, unsigned long last) { - XA_STATE(xas, &udev->data_pages, first * udev->data_pages_per_blk); struct page *page; + unsigned long dpi; u32 pages_freed = 0; - xas_lock(&xas); - xas_for_each(&xas, page, (last + 1) * udev->data_pages_per_blk - 1) { - xas_store(&xas, NULL); + first = first * udev->data_pages_per_blk; + last = (last + 1) * udev->data_pages_per_blk - 1; + xa_for_each_range(&udev->data_pages, dpi, page, first, last) { + xa_erase(&udev->data_pages, dpi); + /* + * While reaching here there may be page faults occurring on + * the to-be-released pages. A race condition may occur if + * unmap_mapping_range() is called before page faults on these + * pages have completed; a valid but stale map is created. + * + * If another command subsequently runs and needs to extend + * dbi_thresh, it may reuse the slot corresponding to the + * previous page in data_bitmap. Though we will allocate a new + * page for the slot in data_area, no page fault will happen + * because we have a valid map. Therefore the command's data + * will be lost. + * + * We lock and unlock pages that are to be released to ensure + * all page faults have completed. This way + * unmap_mapping_range() can ensure stale maps are cleanly + * removed. + */ + lock_page(page); + unlock_page(page); __free_page(page); pages_freed++; } - xas_unlock(&xas); atomic_sub(pages_freed, &global_page_count); @@ -1822,6 +1843,7 @@ page = xa_load(&udev->data_pages, dpi); if (likely(page)) { get_page(page); + lock_page(page); mutex_unlock(&udev->cmdr_lock); return page; } @@ -1863,6 +1885,7 @@ struct page *page; unsigned long offset; void *addr; + vm_fault_t ret = 0; int mi = tcmu_find_mem_index(vmf->vma); if (mi < 0) @@ -1887,10 +1910,11 @@ page = tcmu_try_get_data_page(udev, dpi); if (!page) return VM_FAULT_SIGBUS; + ret = VM_FAULT_LOCKED; } vmf->page = page; - return 0; + return ret; } static const struct vm_operations_struct tcmu_vm_ops = { @@ -3153,12 +3177,22 @@ udev->dbi_max = block; } + /* + * Release the block pages. + * + * Also note that since tcmu_vma_fault() gets an extra page + * refcount, tcmu_blocks_release() won't free pages if pages + * are mapped. This means it is safe to call + * tcmu_blocks_release() before unmap_mapping_range() which + * drops the refcount of any pages it unmaps and thus releases + * them. + */ + pages_freed = tcmu_blocks_release(udev, start, end - 1); + /* Here will truncate the data area from off */ off = udev->data_off + (loff_t)start * udev->data_blk_size; unmap_mapping_range(udev->inode->i_mapping, off, 0, 1); - /* Release the block pages */ - pages_freed = tcmu_blocks_release(udev, start, end - 1); mutex_unlock(&udev->cmdr_lock); total_pages_freed += pages_freed; diff -u linux-intel-iotg-5.15-5.15.0/drivers/thermal/intel/int340x_thermal/int3400_thermal.c linux-intel-iotg-5.15-5.15.0/drivers/thermal/intel/int340x_thermal/int3400_thermal.c --- linux-intel-iotg-5.15-5.15.0/drivers/thermal/intel/int340x_thermal/int3400_thermal.c +++ linux-intel-iotg-5.15-5.15.0/drivers/thermal/intel/int340x_thermal/int3400_thermal.c @@ -68,7 +68,7 @@ struct odvp_attr { int odvp; struct int3400_thermal_priv *priv; - struct kobj_attribute attr; + struct device_attribute attr; }; static ssize_t data_vault_read(struct file *file, struct kobject *kobj, @@ -312,7 +312,7 @@ return result; } -static ssize_t odvp_show(struct kobject *kobj, struct kobj_attribute *attr, +static ssize_t odvp_show(struct device *dev, struct device_attribute *attr, char *buf) { struct odvp_attr *odvp_attr; diff -u linux-intel-iotg-5.15-5.15.0/drivers/thermal/thermal_core.c linux-intel-iotg-5.15-5.15.0/drivers/thermal/thermal_core.c --- linux-intel-iotg-5.15-5.15.0/drivers/thermal/thermal_core.c +++ linux-intel-iotg-5.15-5.15.0/drivers/thermal/thermal_core.c @@ -945,6 +945,7 @@ return cdev; out_kfree_type: + thermal_cooling_device_destroy_sysfs(cdev); kfree(cdev->type); put_device(&cdev->device); cdev = NULL; diff -u linux-intel-iotg-5.15-5.15.0/drivers/thunderbolt/tb.c linux-intel-iotg-5.15-5.15.0/drivers/thunderbolt/tb.c --- linux-intel-iotg-5.15-5.15.0/drivers/thunderbolt/tb.c +++ linux-intel-iotg-5.15-5.15.0/drivers/thunderbolt/tb.c @@ -992,6 +992,21 @@ tb_tunnel_dp(tb); } +void tb_dp_resource_available_discovered(struct tb *tb, struct tb_port *port) +{ + struct tb_cm *tcm = tb_priv(tb); + struct tb_port *p; + + list_for_each_entry(p, &tcm->dp_resources, list) { + if (p == port) + return; + } + + tb_port_dbg(port, "DP %s resource available discovered\n", + tb_port_is_dpin(port) ? "IN" : "OUT"); + list_add_tail(&port->list, &tcm->dp_resources); +} + static void tb_dp_resource_available(struct tb *tb, struct tb_port *port) { struct tb_cm *tcm = tb_priv(tb); diff -u linux-intel-iotg-5.15-5.15.0/drivers/thunderbolt/tb.h linux-intel-iotg-5.15-5.15.0/drivers/thunderbolt/tb.h --- linux-intel-iotg-5.15-5.15.0/drivers/thunderbolt/tb.h +++ linux-intel-iotg-5.15-5.15.0/drivers/thunderbolt/tb.h @@ -956,6 +956,7 @@ unsigned int aux_tx, unsigned int aux_rx); bool tb_dp_port_is_enabled(struct tb_port *port); int tb_dp_port_enable(struct tb_port *port, bool enable); +void tb_dp_resource_available_discovered(struct tb *tb, struct tb_port *port); struct tb_path *tb_path_discover(struct tb_port *src, int src_hopid, struct tb_port *dst, int dst_hopid, diff -u linux-intel-iotg-5.15-5.15.0/drivers/thunderbolt/tunnel.c linux-intel-iotg-5.15-5.15.0/drivers/thunderbolt/tunnel.c --- linux-intel-iotg-5.15-5.15.0/drivers/thunderbolt/tunnel.c +++ linux-intel-iotg-5.15-5.15.0/drivers/thunderbolt/tunnel.c @@ -832,6 +832,8 @@ goto err_deactivate; } + tb_dp_resource_available_discovered(tb, tunnel->dst_port); + tb_tunnel_dbg(tunnel, "discovered\n"); return tunnel; diff -u linux-intel-iotg-5.15-5.15.0/drivers/tty/n_gsm.c linux-intel-iotg-5.15-5.15.0/drivers/tty/n_gsm.c --- linux-intel-iotg-5.15-5.15.0/drivers/tty/n_gsm.c +++ linux-intel-iotg-5.15-5.15.0/drivers/tty/n_gsm.c @@ -73,6 +73,8 @@ */ #define MAX_MRU 1500 #define MAX_MTU 1500 +/* SOF, ADDR, CTRL, LEN1, LEN2, ..., FCS, EOF */ +#define PROT_OVERHEAD 7 #define GSM_NET_TX_TIMEOUT (HZ*10) /* @@ -231,6 +233,7 @@ int initiator; /* Did we initiate connection */ bool dead; /* Has the mux been shut down */ struct gsm_dlci *dlci[NUM_DLCI]; + int old_c_iflag; /* termios c_iflag value before attach */ bool constipated; /* Asked by remote to shut up */ spinlock_t tx_lock; @@ -820,7 +823,7 @@ break; case 2: /* Unstructed with modem bits. Always one byte as we never send inline break data */ - *dp++ = gsm_encode_modem(dlci); + *dp++ = (gsm_encode_modem(dlci) << 1) | EA; break; } WARN_ON(kfifo_out_locked(&dlci->fifo, dp , len, &dlci->lock) != len); @@ -1081,7 +1084,6 @@ { unsigned int addr = 0; unsigned int modem = 0; - unsigned int brk = 0; struct gsm_dlci *dlci; int len = clen; int slen; @@ -1111,17 +1113,8 @@ return; } len--; - if (len > 0) { - while (gsm_read_ea(&brk, *dp++) == 0) { - len--; - if (len == 0) - return; - } - modem <<= 7; - modem |= (brk & 0x7f); - } tty = tty_port_tty_get(&dlci->port); - gsm_process_modem(tty, dlci, modem, slen); + gsm_process_modem(tty, dlci, modem, slen - len); if (tty) { tty_wakeup(tty); tty_kref_put(tty); @@ -1300,11 +1293,12 @@ static void gsm_control_transmit(struct gsm_mux *gsm, struct gsm_control *ctrl) { - struct gsm_msg *msg = gsm_data_alloc(gsm, 0, ctrl->len + 1, gsm->ftype); + struct gsm_msg *msg = gsm_data_alloc(gsm, 0, ctrl->len + 2, gsm->ftype); if (msg == NULL) return; - msg->data[0] = (ctrl->cmd << 1) | 2 | EA; /* command */ - memcpy(msg->data + 1, ctrl->data, ctrl->len); + msg->data[0] = (ctrl->cmd << 1) | CR | EA; /* command */ + msg->data[1] = (ctrl->len << 1) | EA; + memcpy(msg->data + 2, ctrl->data, ctrl->len); gsm_data_queue(gsm->dlci[0], msg); } @@ -1327,7 +1321,6 @@ spin_lock_irqsave(&gsm->control_lock, flags); ctrl = gsm->pending_cmd; if (ctrl) { - gsm->cretries--; if (gsm->cretries == 0) { gsm->pending_cmd = NULL; ctrl->error = -ETIMEDOUT; @@ -1336,6 +1329,7 @@ wake_up(&gsm->event); return; } + gsm->cretries--; gsm_control_transmit(gsm, ctrl); mod_timer(&gsm->t2_timer, jiffies + gsm->t2 * HZ / 100); } @@ -1376,7 +1370,7 @@ /* If DLCI0 is in ADM mode skip retries, it won't respond */ if (gsm->dlci[0]->mode == DLCI_MODE_ADM) - gsm->cretries = 1; + gsm->cretries = 0; else gsm->cretries = gsm->n2; @@ -1424,13 +1418,17 @@ static void gsm_dlci_close(struct gsm_dlci *dlci) { + unsigned long flags; + del_timer(&dlci->t1); if (debug & 8) pr_debug("DLCI %d goes closed.\n", dlci->addr); dlci->state = DLCI_CLOSED; if (dlci->addr != 0) { tty_port_tty_hangup(&dlci->port, false); + spin_lock_irqsave(&dlci->lock, flags); kfifo_reset(&dlci->fifo); + spin_unlock_irqrestore(&dlci->lock, flags); /* Ensure that gsmtty_open() can return. */ tty_port_set_initialized(&dlci->port, 0); wake_up_interruptible(&dlci->port.open_wait); @@ -1589,10 +1587,12 @@ if (len == 0) return; } + len--; slen++; tty = tty_port_tty_get(port); if (tty) { gsm_process_modem(tty, dlci, modem, slen); + tty_wakeup(tty); tty_kref_put(tty); } fallthrough; @@ -1818,7 +1818,6 @@ gsm_response(gsm, address, UA); gsm_dlci_close(dlci); break; - case UA: case UA|PF: if (cr == 0 || dlci == NULL) break; @@ -1962,6 +1961,16 @@ static void gsm1_receive(struct gsm_mux *gsm, unsigned char c) { + /* handle XON/XOFF */ + if ((c & ISO_IEC_646_MASK) == XON) { + gsm->constipated = true; + return; + } else if ((c & ISO_IEC_646_MASK) == XOFF) { + gsm->constipated = false; + /* Kick the link in case it is idling */ + gsm_data_kick(gsm, NULL); + return; + } if (c == GSM1_SOF) { /* EOF is only valid in frame if we have got to the data state and received at least one byte (the FCS) */ @@ -1976,7 +1985,8 @@ } /* Any partial frame was a runt so go back to start */ if (gsm->state != GSM_START) { - gsm->malformed++; + if (gsm->state != GSM_SEARCH) + gsm->malformed++; gsm->state = GSM_START; } /* A SOF in GSM_START means we are still reading idling or @@ -2048,74 +2058,43 @@ gsm->io_error++; } -static int gsm_disconnect(struct gsm_mux *gsm) -{ - struct gsm_dlci *dlci = gsm->dlci[0]; - struct gsm_control *gc; - - if (!dlci) - return 0; - - /* In theory disconnecting DLCI 0 is sufficient but for some - modems this is apparently not the case. */ - gc = gsm_control_send(gsm, CMD_CLD, NULL, 0); - if (gc) - gsm_control_wait(gsm, gc); - - del_timer_sync(&gsm->t2_timer); - /* Now we are sure T2 has stopped */ - - gsm_dlci_begin_close(dlci); - wait_event_interruptible(gsm->event, - dlci->state == DLCI_CLOSED); - - if (signal_pending(current)) - return -EINTR; - - return 0; -} - /** * gsm_cleanup_mux - generic GSM protocol cleanup * @gsm: our mux + * @disc: disconnect link? * * Clean up the bits of the mux which are the same for all framing * protocols. Remove the mux from the mux table, stop all the timers * and then shut down each device hanging up the channels as we go. */ -static void gsm_cleanup_mux(struct gsm_mux *gsm) +static void gsm_cleanup_mux(struct gsm_mux *gsm, bool disc) { int i; struct gsm_dlci *dlci = gsm->dlci[0]; struct gsm_msg *txq, *ntxq; gsm->dead = true; + mutex_lock(&gsm->mutex); - spin_lock(&gsm_mux_lock); - for (i = 0; i < MAX_MUX; i++) { - if (gsm_mux[i] == gsm) { - gsm_mux[i] = NULL; - break; + if (dlci) { + if (disc && dlci->state != DLCI_CLOSED) { + gsm_dlci_begin_close(dlci); + wait_event(gsm->event, dlci->state == DLCI_CLOSED); } + dlci->dead = true; } - spin_unlock(&gsm_mux_lock); - /* open failed before registering => nothing to do */ - if (i == MAX_MUX) - return; + /* Finish outstanding timers, making sure they are done */ del_timer_sync(&gsm->t2_timer); - /* Now we are sure T2 has stopped */ - if (dlci) - dlci->dead = true; - /* Free up any link layer users */ - mutex_lock(&gsm->mutex); - for (i = 0; i < NUM_DLCI; i++) + /* Free up any link layer users and finally the control channel */ + for (i = NUM_DLCI - 1; i >= 0; i--) if (gsm->dlci[i]) gsm_dlci_release(gsm->dlci[i]); mutex_unlock(&gsm->mutex); /* Now wipe the queues */ + tty_ldisc_flush(gsm->tty); list_for_each_entry_safe(txq, ntxq, &gsm->tx_list, list) kfree(txq); INIT_LIST_HEAD(&gsm->tx_list); @@ -2133,7 +2112,6 @@ static int gsm_activate_mux(struct gsm_mux *gsm) { struct gsm_dlci *dlci; - int i = 0; timer_setup(&gsm->t2_timer, gsm_control_retransmit, 0); init_waitqueue_head(&gsm->event); @@ -2145,18 +2123,6 @@ else gsm->receive = gsm1_receive; - spin_lock(&gsm_mux_lock); - for (i = 0; i < MAX_MUX; i++) { - if (gsm_mux[i] == NULL) { - gsm->num = i; - gsm_mux[i] = gsm; - break; - } - } - spin_unlock(&gsm_mux_lock); - if (i == MAX_MUX) - return -EBUSY; - dlci = gsm_dlci_alloc(gsm, 0); if (dlci == NULL) return -ENOMEM; @@ -2172,6 +2138,15 @@ */ static void gsm_free_mux(struct gsm_mux *gsm) { + int i; + + for (i = 0; i < MAX_MUX; i++) { + if (gsm == gsm_mux[i]) { + gsm_mux[i] = NULL; + break; + } + } + mutex_destroy(&gsm->mutex); kfree(gsm->txframe); kfree(gsm->buf); kfree(gsm); @@ -2191,12 +2166,20 @@ static inline void mux_get(struct gsm_mux *gsm) { + unsigned long flags; + + spin_lock_irqsave(&gsm_mux_lock, flags); kref_get(&gsm->ref); + spin_unlock_irqrestore(&gsm_mux_lock, flags); } static inline void mux_put(struct gsm_mux *gsm) { + unsigned long flags; + + spin_lock_irqsave(&gsm_mux_lock, flags); kref_put(&gsm->ref, gsm_free_muxr); + spin_unlock_irqrestore(&gsm_mux_lock, flags); } static inline unsigned int mux_num_to_base(struct gsm_mux *gsm) @@ -2217,6 +2200,7 @@ static struct gsm_mux *gsm_alloc_mux(void) { + int i; struct gsm_mux *gsm = kzalloc(sizeof(struct gsm_mux), GFP_KERNEL); if (gsm == NULL) return NULL; @@ -2225,7 +2209,7 @@ kfree(gsm); return NULL; } - gsm->txframe = kmalloc(2 * MAX_MRU + 2, GFP_KERNEL); + gsm->txframe = kmalloc(2 * (MAX_MTU + PROT_OVERHEAD - 1), GFP_KERNEL); if (gsm->txframe == NULL) { kfree(gsm->buf); kfree(gsm); @@ -2246,6 +2230,26 @@ gsm->mtu = 64; gsm->dead = true; /* Avoid early tty opens */ + /* Store the instance to the mux array or abort if no space is + * available. + */ + spin_lock(&gsm_mux_lock); + for (i = 0; i < MAX_MUX; i++) { + if (!gsm_mux[i]) { + gsm_mux[i] = gsm; + gsm->num = i; + break; + } + } + spin_unlock(&gsm_mux_lock); + if (i == MAX_MUX) { + mutex_destroy(&gsm->mutex); + kfree(gsm->txframe); + kfree(gsm->buf); + kfree(gsm); + return NULL; + } + return gsm; } @@ -2272,6 +2276,7 @@ static int gsm_config(struct gsm_mux *gsm, struct gsm_config *c) { + int ret = 0; int need_close = 0; int need_restart = 0; @@ -2281,7 +2286,7 @@ /* Check the MRU/MTU range looks sane */ if (c->mru > MAX_MRU || c->mtu > MAX_MTU || c->mru < 8 || c->mtu < 8) return -EINVAL; - if (c->n2 < 3) + if (c->n2 > 255) return -EINVAL; if (c->encapsulation > 1) /* Basic, advanced, no I */ return -EINVAL; @@ -2312,19 +2317,11 @@ /* * Close down what is needed, restart and initiate the new - * configuration + * configuration. On the first time there is no DLCI[0] + * and closing or cleaning up is not necessary. */ - - if (need_close || need_restart) { - int ret; - - ret = gsm_disconnect(gsm); - - if (ret) - return ret; - } - if (need_restart) - gsm_cleanup_mux(gsm); + if (need_close || need_restart) + gsm_cleanup_mux(gsm, true); gsm->initiator = c->initiator; gsm->mru = c->mru; @@ -2347,10 +2344,13 @@ * FIXME: We need to separate activation/deactivation from adding * and removing from the mux array */ - if (need_restart) - gsm_activate_mux(gsm); - if (gsm->initiator && need_close) - gsm_dlci_begin_open(gsm->dlci[0]); + if (gsm->dead) { + ret = gsm_activate_mux(gsm); + if (ret) + return ret; + if (gsm->initiator) + gsm_dlci_begin_open(gsm->dlci[0]); + } return 0; } @@ -2393,6 +2393,9 @@ int ret, i; gsm->tty = tty_kref_get(tty); + /* Turn off tty XON/XOFF handling to handle it explicitly. */ + gsm->old_c_iflag = tty->termios.c_iflag; + tty->termios.c_iflag &= (IXON | IXOFF); ret = gsm_activate_mux(gsm); if (ret != 0) tty_kref_put(gsm->tty); @@ -2433,7 +2436,8 @@ WARN_ON(tty != gsm->tty); for (i = 1; i < NUM_DLCI; i++) tty_unregister_device(gsm_tty_driver, base + i); - gsm_cleanup_mux(gsm); + /* Restore tty XON/XOFF handling. */ + gsm->tty->termios.c_iflag = gsm->old_c_iflag; tty_kref_put(gsm->tty); gsm->tty = NULL; } @@ -2498,6 +2502,12 @@ { struct gsm_mux *gsm = tty->disc_data; + /* The ldisc locks and closes the port before calling our close. This + * means we have no way to do a proper disconnect. We will not bother + * to do one. + */ + gsm_cleanup_mux(gsm, false); + gsmld_detach_gsm(tty, gsm); gsmld_flush_buffer(tty); @@ -2536,7 +2546,7 @@ ret = gsmld_attach_gsm(tty, gsm); if (ret != 0) { - gsm_cleanup_mux(gsm); + gsm_cleanup_mux(gsm, false); mux_put(gsm); } return ret; @@ -2895,19 +2905,19 @@ static int gsmtty_modem_update(struct gsm_dlci *dlci, u8 brk) { - u8 modembits[5]; + u8 modembits[3]; struct gsm_control *ctrl; int len = 2; - if (brk) + modembits[0] = (dlci->addr << 2) | 2 | EA; /* DLCI, Valid, EA */ + if (!brk) { + modembits[1] = (gsm_encode_modem(dlci) << 1) | EA; + } else { + modembits[1] = gsm_encode_modem(dlci) << 1; + modembits[2] = (brk << 4) | 2 | EA; /* Length, Break, EA */ len++; - - modembits[0] = len << 1 | EA; /* Data bytes */ - modembits[1] = dlci->addr << 2 | 3; /* DLCI, EA, 1 */ - modembits[2] = gsm_encode_modem(dlci) << 1 | EA; - if (brk) - modembits[3] = brk << 4 | 2 | EA; /* Valid, EA */ - ctrl = gsm_control_send(dlci->gsm, CMD_MSC, modembits, len + 1); + } + ctrl = gsm_control_send(dlci->gsm, CMD_MSC, modembits, len); if (ctrl == NULL) return -ENOMEM; return gsm_control_wait(dlci->gsm, ctrl); @@ -3092,13 +3102,17 @@ static void gsmtty_flush_buffer(struct tty_struct *tty) { struct gsm_dlci *dlci = tty->driver_data; + unsigned long flags; + if (dlci->state == DLCI_CLOSED) return; /* Caution needed: If we implement reliable transport classes then the data being transmitted can't simply be junked once it has first hit the stack. Until then we can just blow it away */ + spin_lock_irqsave(&dlci->lock, flags); kfifo_reset(&dlci->fifo); + spin_unlock_irqrestore(&dlci->lock, flags); /* Need to unhook this DLCI from the transmit queue logic */ } diff -u linux-intel-iotg-5.15-5.15.0/drivers/tty/serial/8250/8250_pci.c linux-intel-iotg-5.15-5.15.0/drivers/tty/serial/8250/8250_pci.c --- linux-intel-iotg-5.15-5.15.0/drivers/tty/serial/8250/8250_pci.c +++ linux-intel-iotg-5.15-5.15.0/drivers/tty/serial/8250/8250_pci.c @@ -2940,7 +2940,7 @@ pbn_panacom2, pbn_panacom4, pbn_plx_romulus, - pbn_endrun_2_4000000, + pbn_endrun_2_3906250, pbn_oxsemi, pbn_oxsemi_1_3906250, pbn_oxsemi_2_3906250, @@ -3472,10 +3472,10 @@ * signal now many ports are available * 2 port 952 Uart support */ - [pbn_endrun_2_4000000] = { + [pbn_endrun_2_3906250] = { .flags = FL_BASE0, .num_ports = 2, - .base_baud = 4000000, + .base_baud = 3906250, .uart_offset = 0x200, .first_offset = 0x1000, }, @@ -4418,7 +4418,7 @@ */ { PCI_VENDOR_ID_ENDRUN, PCI_DEVICE_ID_ENDRUN_1588, PCI_ANY_ID, PCI_ANY_ID, 0, 0, - pbn_endrun_2_4000000 }, + pbn_endrun_2_3906250 }, /* * Quatech cards. These actually have configurable clocks but for * now we just use the default. diff -u linux-intel-iotg-5.15-5.15.0/drivers/tty/serial/8250/8250_port.c linux-intel-iotg-5.15-5.15.0/drivers/tty/serial/8250/8250_port.c --- linux-intel-iotg-5.15-5.15.0/drivers/tty/serial/8250/8250_port.c +++ linux-intel-iotg-5.15-5.15.0/drivers/tty/serial/8250/8250_port.c @@ -3340,7 +3340,7 @@ serial8250_set_divisor(port, baud, quot, frac); serial_port_out(port, UART_LCR, up->lcr); - serial8250_out_MCR(up, UART_MCR_DTR | UART_MCR_RTS); + serial8250_out_MCR(up, up->mcr | UART_MCR_DTR | UART_MCR_RTS); } /* diff -u linux-intel-iotg-5.15-5.15.0/drivers/tty/serial/amba-pl011.c linux-intel-iotg-5.15-5.15.0/drivers/tty/serial/amba-pl011.c --- linux-intel-iotg-5.15-5.15.0/drivers/tty/serial/amba-pl011.c +++ linux-intel-iotg-5.15-5.15.0/drivers/tty/serial/amba-pl011.c @@ -1288,13 +1288,18 @@ static void pl011_rs485_tx_stop(struct uart_amba_port *uap) { + /* + * To be on the safe side only time out after twice as many iterations + * as fifo size. + */ + const int MAX_TX_DRAIN_ITERS = uap->port.fifosize * 2; struct uart_port *port = &uap->port; int i = 0; u32 cr; /* Wait until hardware tx queue is empty */ while (!pl011_tx_empty(port)) { - if (i == port->fifosize) { + if (i > MAX_TX_DRAIN_ITERS) { dev_warn(port->dev, "timeout while draining hardware tx queue\n"); break; @@ -2099,7 +2104,7 @@ * with the given baud rate. We use this as the poll interval when we * wait for the tx queue to empty. */ - uap->rs485_tx_drain_interval = (bits * 1000 * 1000) / baud; + uap->rs485_tx_drain_interval = DIV_ROUND_UP(bits * 1000 * 1000, baud); pl011_setup_status_masks(port, termios); diff -u linux-intel-iotg-5.15-5.15.0/drivers/tty/serial/fsl_lpuart.c linux-intel-iotg-5.15-5.15.0/drivers/tty/serial/fsl_lpuart.c --- linux-intel-iotg-5.15-5.15.0/drivers/tty/serial/fsl_lpuart.c +++ linux-intel-iotg-5.15-5.15.0/drivers/tty/serial/fsl_lpuart.c @@ -2650,6 +2650,7 @@ struct device_node *np = pdev->dev.of_node; struct lpuart_port *sport; struct resource *res; + irq_handler_t handler; int ret; sport = devm_kzalloc(&pdev->dev, sizeof(*sport), GFP_KERNEL); @@ -2727,17 +2728,11 @@ if (lpuart_is_32(sport)) { lpuart_reg.cons = LPUART32_CONSOLE; - ret = devm_request_irq(&pdev->dev, sport->port.irq, lpuart32_int, 0, - DRIVER_NAME, sport); + handler = lpuart32_int; } else { lpuart_reg.cons = LPUART_CONSOLE; - ret = devm_request_irq(&pdev->dev, sport->port.irq, lpuart_int, 0, - DRIVER_NAME, sport); + handler = lpuart_int; } - - if (ret) - goto failed_irq_request; - ret = uart_add_one_port(&lpuart_reg, &sport->port); if (ret) goto failed_attach_port; @@ -2759,13 +2754,18 @@ sport->port.rs485_config(&sport->port, &sport->port.rs485); + ret = devm_request_irq(&pdev->dev, sport->port.irq, handler, 0, + DRIVER_NAME, sport); + if (ret) + goto failed_irq_request; + return 0; +failed_irq_request: failed_get_rs485: failed_reset: uart_remove_one_port(&lpuart_reg, &sport->port); failed_attach_port: -failed_irq_request: lpuart_disable_clks(sport); failed_clock_enable: failed_out_of_range: diff -u linux-intel-iotg-5.15-5.15.0/drivers/tty/serial/imx.c linux-intel-iotg-5.15-5.15.0/drivers/tty/serial/imx.c --- linux-intel-iotg-5.15-5.15.0/drivers/tty/serial/imx.c +++ linux-intel-iotg-5.15-5.15.0/drivers/tty/serial/imx.c @@ -1438,7 +1438,7 @@ imx_uart_writel(sport, ucr1, UCR1); ucr4 = imx_uart_readl(sport, UCR4) & ~(UCR4_OREN | UCR4_INVR); - if (!sport->dma_is_enabled) + if (!dma_is_inited) ucr4 |= UCR4_OREN; if (sport->inverted_rx) ucr4 |= UCR4_INVR; diff -u linux-intel-iotg-5.15-5.15.0/drivers/tty/tty_buffer.c linux-intel-iotg-5.15-5.15.0/drivers/tty/tty_buffer.c --- linux-intel-iotg-5.15-5.15.0/drivers/tty/tty_buffer.c +++ linux-intel-iotg-5.15-5.15.0/drivers/tty/tty_buffer.c @@ -174,7 +174,8 @@ */ if (atomic_read(&port->buf.mem_used) > port->buf.mem_limit) return NULL; - p = kmalloc(sizeof(struct tty_buffer) + 2 * size, GFP_ATOMIC); + p = kmalloc(sizeof(struct tty_buffer) + 2 * size, + GFP_ATOMIC | __GFP_NOWARN); if (p == NULL) return NULL; diff -u linux-intel-iotg-5.15-5.15.0/drivers/usb/cdns3/cdns3-gadget.c linux-intel-iotg-5.15-5.15.0/drivers/usb/cdns3/cdns3-gadget.c --- linux-intel-iotg-5.15-5.15.0/drivers/usb/cdns3/cdns3-gadget.c +++ linux-intel-iotg-5.15-5.15.0/drivers/usb/cdns3/cdns3-gadget.c @@ -2684,6 +2684,7 @@ struct usb_request *request; struct cdns3_request *priv_req; struct cdns3_trb *trb = NULL; + struct cdns3_trb trb_tmp; int ret; int val; @@ -2693,8 +2694,10 @@ if (request) { priv_req = to_cdns3_request(request); trb = priv_req->trb; - if (trb) + if (trb) { + trb_tmp = *trb; trb->control = trb->control ^ cpu_to_le32(TRB_CYCLE); + } } writel(EP_CMD_CSTALL | EP_CMD_EPRST, &priv_dev->regs->ep_cmd); @@ -2709,7 +2712,7 @@ if (request) { if (trb) - trb->control = trb->control ^ cpu_to_le32(TRB_CYCLE); + *trb = trb_tmp; cdns3_rearm_transfer(priv_ep, 1); } diff -u linux-intel-iotg-5.15-5.15.0/drivers/usb/core/devio.c linux-intel-iotg-5.15-5.15.0/drivers/usb/core/devio.c --- linux-intel-iotg-5.15-5.15.0/drivers/usb/core/devio.c +++ linux-intel-iotg-5.15-5.15.0/drivers/usb/core/devio.c @@ -1197,12 +1197,16 @@ usb_unlock_device(dev); i = usbfs_start_wait_urb(urb, tmo, &actlen); + + /* Linger a bit, prior to the next control message. */ + if (dev->quirks & USB_QUIRK_DELAY_CTRL_MSG) + msleep(200); usb_lock_device(dev); snoop_urb(dev, NULL, pipe, actlen, i, COMPLETE, tbuf, actlen); if (!i && actlen) { if (copy_to_user(ctrl->data, tbuf, actlen)) { ret = -EFAULT; - goto recv_fault; + goto done; } } } else { @@ -1219,6 +1223,10 @@ usb_unlock_device(dev); i = usbfs_start_wait_urb(urb, tmo, &actlen); + + /* Linger a bit, prior to the next control message. */ + if (dev->quirks & USB_QUIRK_DELAY_CTRL_MSG) + msleep(200); usb_lock_device(dev); snoop_urb(dev, NULL, pipe, actlen, i, COMPLETE, NULL, 0); } @@ -1230,10 +1238,6 @@ } ret = (i < 0 ? i : actlen); - recv_fault: - /* Linger a bit, prior to the next control message. */ - if (dev->quirks & USB_QUIRK_DELAY_CTRL_MSG) - msleep(200); done: kfree(dr); usb_free_urb(urb); diff -u linux-intel-iotg-5.15-5.15.0/drivers/usb/core/hcd.c linux-intel-iotg-5.15-5.15.0/drivers/usb/core/hcd.c --- linux-intel-iotg-5.15-5.15.0/drivers/usb/core/hcd.c +++ linux-intel-iotg-5.15-5.15.0/drivers/usb/core/hcd.c @@ -2816,6 +2816,7 @@ { int retval; struct usb_device *rhdev; + struct usb_hcd *shared_hcd; if (!hcd->skip_phy_initialization && usb_hcd_is_primary_hcd(hcd)) { hcd->phy_roothub = usb_phy_roothub_alloc(hcd->self.sysdev); @@ -2976,13 +2977,26 @@ goto err_hcd_driver_start; } + /* starting here, usbcore will pay attention to the shared HCD roothub */ + shared_hcd = hcd->shared_hcd; + if (!usb_hcd_is_primary_hcd(hcd) && shared_hcd && HCD_DEFER_RH_REGISTER(shared_hcd)) { + retval = register_root_hub(shared_hcd); + if (retval != 0) + goto err_register_root_hub; + + if (shared_hcd->uses_new_polling && HCD_POLL_RH(shared_hcd)) + usb_hcd_poll_rh_status(shared_hcd); + } + /* starting here, usbcore will pay attention to this root hub */ - retval = register_root_hub(hcd); - if (retval != 0) - goto err_register_root_hub; + if (!HCD_DEFER_RH_REGISTER(hcd)) { + retval = register_root_hub(hcd); + if (retval != 0) + goto err_register_root_hub; - if (hcd->uses_new_polling && HCD_POLL_RH(hcd)) - usb_hcd_poll_rh_status(hcd); + if (hcd->uses_new_polling && HCD_POLL_RH(hcd)) + usb_hcd_poll_rh_status(hcd); + } return retval; @@ -3020,6 +3034,7 @@ void usb_remove_hcd(struct usb_hcd *hcd) { struct usb_device *rhdev = hcd->self.root_hub; + bool rh_registered; dev_info(hcd->self.controller, "remove, state %x\n", hcd->state); @@ -3030,6 +3045,7 @@ dev_dbg(hcd->self.controller, "roothub graceful disconnect\n"); spin_lock_irq (&hcd_root_hub_lock); + rh_registered = hcd->rh_registered; hcd->rh_registered = 0; spin_unlock_irq (&hcd_root_hub_lock); @@ -3039,7 +3055,8 @@ cancel_work_sync(&hcd->died_work); mutex_lock(&usb_bus_idr_lock); - usb_disconnect(&rhdev); /* Sets rhdev to NULL */ + if (rh_registered) + usb_disconnect(&rhdev); /* Sets rhdev to NULL */ mutex_unlock(&usb_bus_idr_lock); /* diff -u linux-intel-iotg-5.15-5.15.0/drivers/usb/core/quirks.c linux-intel-iotg-5.15-5.15.0/drivers/usb/core/quirks.c --- linux-intel-iotg-5.15-5.15.0/drivers/usb/core/quirks.c +++ linux-intel-iotg-5.15-5.15.0/drivers/usb/core/quirks.c @@ -404,6 +404,9 @@ { USB_DEVICE(0x0b05, 0x17e0), .driver_info = USB_QUIRK_IGNORE_REMOTE_WAKEUP }, + /* Realtek Semiconductor Corp. Mass Storage Device (Multicard Reader)*/ + { USB_DEVICE(0x0bda, 0x0151), .driver_info = USB_QUIRK_CONFIG_INTF_STRINGS }, + /* Realtek hub in Dell WD19 (Type-C) */ { USB_DEVICE(0x0bda, 0x0487), .driver_info = USB_QUIRK_NO_LPM }, @@ -507,6 +510,12 @@ /* DJI CineSSD */ { USB_DEVICE(0x2ca3, 0x0031), .driver_info = USB_QUIRK_NO_LPM }, + /* DELL USB GEN2 */ + { USB_DEVICE(0x413c, 0xb062), .driver_info = USB_QUIRK_NO_LPM | USB_QUIRK_RESET_RESUME }, + + /* VCOM device */ + { USB_DEVICE(0x4296, 0x7570), .driver_info = USB_QUIRK_CONFIG_INTF_STRINGS }, + /* INTEL VALUE SSD */ { USB_DEVICE(0x8086, 0xf1a5), .driver_info = USB_QUIRK_RESET_RESUME }, diff -u linux-intel-iotg-5.15-5.15.0/drivers/usb/dwc3/core.c linux-intel-iotg-5.15-5.15.0/drivers/usb/dwc3/core.c --- linux-intel-iotg-5.15-5.15.0/drivers/usb/dwc3/core.c +++ linux-intel-iotg-5.15-5.15.0/drivers/usb/dwc3/core.c @@ -275,7 +275,8 @@ reg = dwc3_readl(dwc->regs, DWC3_DCTL); reg |= DWC3_DCTL_CSFTRST; - dwc3_writel(dwc->regs, DWC3_DCTL, reg); + reg &= ~DWC3_DCTL_RUN_STOP; + dwc3_gadget_dctl_write_safe(dwc, reg); /* * For DWC_usb31 controller 1.90a and later, the DCTL.CSFRST bit @@ -1268,10 +1269,10 @@ u8 lpm_nyet_threshold; u8 tx_de_emphasis; u8 hird_threshold; - u8 rx_thr_num_pkt_prd; - u8 rx_max_burst_prd; - u8 tx_thr_num_pkt_prd; - u8 tx_max_burst_prd; + u8 rx_thr_num_pkt_prd = 0; + u8 rx_max_burst_prd = 0; + u8 tx_thr_num_pkt_prd = 0; + u8 tx_max_burst_prd = 0; u8 tx_fifo_resize_max_num; const char *usb_psy_name; int ret; diff -u linux-intel-iotg-5.15-5.15.0/drivers/usb/dwc3/dwc3-pci.c linux-intel-iotg-5.15-5.15.0/drivers/usb/dwc3/dwc3-pci.c --- linux-intel-iotg-5.15-5.15.0/drivers/usb/dwc3/dwc3-pci.c +++ linux-intel-iotg-5.15-5.15.0/drivers/usb/dwc3/dwc3-pci.c @@ -44,6 +44,8 @@ #define PCI_DEVICE_ID_INTEL_ADLM 0x54ee #define PCI_DEVICE_ID_INTEL_ADLS 0x7ae1 #define PCI_DEVICE_ID_INTEL_RPLS 0x7a61 +#define PCI_DEVICE_ID_INTEL_MTLP 0x7ec1 +#define PCI_DEVICE_ID_INTEL_MTL 0x7e7e #define PCI_DEVICE_ID_INTEL_TGL 0x9a15 #define PCI_DEVICE_ID_AMD_MR 0x163a @@ -421,6 +423,12 @@ { PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_RPLS), (kernel_ulong_t) &dwc3_pci_intel_swnode, }, + { PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_MTLP), + (kernel_ulong_t) &dwc3_pci_intel_swnode, }, + + { PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_MTL), + (kernel_ulong_t) &dwc3_pci_intel_swnode, }, + { PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_TGL), (kernel_ulong_t) &dwc3_pci_intel_swnode, }, diff -u linux-intel-iotg-5.15-5.15.0/drivers/usb/dwc3/gadget.c linux-intel-iotg-5.15-5.15.0/drivers/usb/dwc3/gadget.c --- linux-intel-iotg-5.15-5.15.0/drivers/usb/dwc3/gadget.c +++ linux-intel-iotg-5.15-5.15.0/drivers/usb/dwc3/gadget.c @@ -3199,6 +3199,7 @@ const struct dwc3_event_depevt *event, struct dwc3_request *req, int status) { + int request_status; int ret; if (req->request.num_mapped_sgs) @@ -3219,7 +3220,35 @@ req->needs_extra_trb = false; } - dwc3_gadget_giveback(dep, req, status); + /* + * The event status only reflects the status of the TRB with IOC set. + * For the requests that don't set interrupt on completion, the driver + * needs to check and return the status of the completed TRBs associated + * with the request. Use the status of the last TRB of the request. + */ + if (req->request.no_interrupt) { + struct dwc3_trb *trb; + + trb = dwc3_ep_prev_trb(dep, dep->trb_dequeue); + switch (DWC3_TRB_SIZE_TRBSTS(trb->size)) { + case DWC3_TRBSTS_MISSED_ISOC: + /* Isoc endpoint only */ + request_status = -EXDEV; + break; + case DWC3_TRB_STS_XFER_IN_PROG: + /* Applicable when End Transfer with ForceRM=0 */ + case DWC3_TRBSTS_SETUP_PENDING: + /* Control endpoint only */ + case DWC3_TRBSTS_OK: + default: + request_status = 0; + break; + } + } else { + request_status = status; + } + + dwc3_gadget_giveback(dep, req, request_status); out: return ret; @@ -3276,14 +3305,14 @@ struct dwc3 *dwc = dep->dwc; bool no_started_trb = true; - if (!dep->endpoint.desc) - return no_started_trb; - dwc3_gadget_ep_cleanup_completed_requests(dep, event, status); if (dep->flags & DWC3_EP_END_TRANSFER_PENDING) goto out; + if (!dep->endpoint.desc) + return no_started_trb; + if (usb_endpoint_xfer_isoc(dep->endpoint.desc) && list_empty(&dep->started_list) && (list_empty(&dep->pending_list) || status == -EXDEV)) diff -u linux-intel-iotg-5.15-5.15.0/drivers/usb/gadget/function/uvc.h linux-intel-iotg-5.15-5.15.0/drivers/usb/gadget/function/uvc.h --- linux-intel-iotg-5.15-5.15.0/drivers/usb/gadget/function/uvc.h +++ linux-intel-iotg-5.15-5.15.0/drivers/usb/gadget/function/uvc.h @@ -14,6 +14,7 @@ #include #include #include +#include #include #include @@ -127,6 +128,7 @@ struct usb_function func; struct uvc_video video; bool func_connected; + wait_queue_head_t func_connected_queue; /* Descriptors */ struct { diff -u linux-intel-iotg-5.15-5.15.0/drivers/usb/gadget/function/uvc_v4l2.c linux-intel-iotg-5.15-5.15.0/drivers/usb/gadget/function/uvc_v4l2.c --- linux-intel-iotg-5.15-5.15.0/drivers/usb/gadget/function/uvc_v4l2.c +++ linux-intel-iotg-5.15-5.15.0/drivers/usb/gadget/function/uvc_v4l2.c @@ -252,10 +252,11 @@ static void uvc_v4l2_disable(struct uvc_device *uvc) { - uvc->func_connected = false; uvc_function_disconnect(uvc); uvcg_video_enable(&uvc->video, 0); uvcg_free_buffers(&uvc->video.queue); + uvc->func_connected = false; + wake_up_interruptible(&uvc->func_connected_queue); } static int diff -u linux-intel-iotg-5.15-5.15.0/drivers/usb/gadget/legacy/raw_gadget.c linux-intel-iotg-5.15-5.15.0/drivers/usb/gadget/legacy/raw_gadget.c --- linux-intel-iotg-5.15-5.15.0/drivers/usb/gadget/legacy/raw_gadget.c +++ linux-intel-iotg-5.15-5.15.0/drivers/usb/gadget/legacy/raw_gadget.c @@ -145,6 +145,7 @@ STATE_DEV_INVALID = 0, STATE_DEV_OPENED, STATE_DEV_INITIALIZED, + STATE_DEV_REGISTERING, STATE_DEV_RUNNING, STATE_DEV_CLOSED, STATE_DEV_FAILED @@ -508,6 +509,7 @@ ret = -EINVAL; goto out_unlock; } + dev->state = STATE_DEV_REGISTERING; spin_unlock_irqrestore(&dev->lock, flags); ret = usb_gadget_probe_driver(&dev->driver); diff -u linux-intel-iotg-5.15-5.15.0/drivers/usb/host/xhci-hub.c linux-intel-iotg-5.15-5.15.0/drivers/usb/host/xhci-hub.c --- linux-intel-iotg-5.15-5.15.0/drivers/usb/host/xhci-hub.c +++ linux-intel-iotg-5.15-5.15.0/drivers/usb/host/xhci-hub.c @@ -652,7 +652,7 @@ * It will release and re-aquire the lock while calling ACPI * method. */ -static void xhci_set_port_power(struct xhci_hcd *xhci, struct usb_hcd *hcd, +void xhci_set_port_power(struct xhci_hcd *xhci, struct usb_hcd *hcd, u16 index, bool on, unsigned long *flags) __must_hold(&xhci->lock) { @@ -1434,7 +1434,7 @@ } spin_unlock_irqrestore(&xhci->lock, flags); if (!wait_for_completion_timeout(&bus_state->u3exit_done[wIndex], - msecs_to_jiffies(100))) + msecs_to_jiffies(500))) xhci_dbg(xhci, "missing U0 port change event for port %d-%d\n", hcd->self.busnum, wIndex + 1); spin_lock_irqsave(&xhci->lock, flags); diff -u linux-intel-iotg-5.15-5.15.0/drivers/usb/host/xhci-mtk-sch.c linux-intel-iotg-5.15-5.15.0/drivers/usb/host/xhci-mtk-sch.c --- linux-intel-iotg-5.15-5.15.0/drivers/usb/host/xhci-mtk-sch.c +++ linux-intel-iotg-5.15-5.15.0/drivers/usb/host/xhci-mtk-sch.c @@ -465,7 +465,7 @@ */ for (j = 0; j < sch_ep->num_budget_microframes; j++) { k = XHCI_MTK_BW_INDEX(base + j); - tmp = tt->fs_bus_bw[k] + sch_ep->bw_budget_table[j]; + tmp = tt->fs_bus_bw[k] + sch_ep->bw_cost_per_microframe; if (tmp > FS_PAYLOAD_MAX) return -ESCH_BW_OVERFLOW; } @@ -539,19 +539,17 @@ static void update_sch_tt(struct mu3h_sch_ep_info *sch_ep, bool used) { struct mu3h_sch_tt *tt = sch_ep->sch_tt; + int bw_updated; u32 base; - int i, j, k; + int i, j; + + bw_updated = sch_ep->bw_cost_per_microframe * (used ? 1 : -1); for (i = 0; i < sch_ep->num_esit; i++) { base = sch_ep->offset + i * sch_ep->esit; - for (j = 0; j < sch_ep->num_budget_microframes; j++) { - k = XHCI_MTK_BW_INDEX(base + j); - if (used) - tt->fs_bus_bw[k] += sch_ep->bw_budget_table[j]; - else - tt->fs_bus_bw[k] -= sch_ep->bw_budget_table[j]; - } + for (j = 0; j < sch_ep->num_budget_microframes; j++) + tt->fs_bus_bw[XHCI_MTK_BW_INDEX(base + j)] += bw_updated; } if (used) diff -u linux-intel-iotg-5.15-5.15.0/drivers/usb/host/xhci-pci.c linux-intel-iotg-5.15-5.15.0/drivers/usb/host/xhci-pci.c --- linux-intel-iotg-5.15-5.15.0/drivers/usb/host/xhci-pci.c +++ linux-intel-iotg-5.15-5.15.0/drivers/usb/host/xhci-pci.c @@ -59,6 +59,8 @@ #define PCI_DEVICE_ID_INTEL_TIGER_LAKE_XHCI 0x9a13 #define PCI_DEVICE_ID_INTEL_MAPLE_RIDGE_XHCI 0x1138 #define PCI_DEVICE_ID_INTEL_ALDER_LAKE_XHCI 0x461e +#define PCI_DEVICE_ID_INTEL_ALDER_LAKE_N_XHCI 0x464e +#define PCI_DEVICE_ID_INTEL_ALDER_LAKE_PCH_XHCI 0x51ed #define PCI_DEVICE_ID_AMD_RENOIR_XHCI 0x1639 #define PCI_DEVICE_ID_AMD_PROMONTORYA_4 0x43b9 @@ -266,7 +268,9 @@ pdev->device == PCI_DEVICE_ID_INTEL_ICE_LAKE_XHCI || pdev->device == PCI_DEVICE_ID_INTEL_TIGER_LAKE_XHCI || pdev->device == PCI_DEVICE_ID_INTEL_MAPLE_RIDGE_XHCI || - pdev->device == PCI_DEVICE_ID_INTEL_ALDER_LAKE_XHCI)) + pdev->device == PCI_DEVICE_ID_INTEL_ALDER_LAKE_XHCI || + pdev->device == PCI_DEVICE_ID_INTEL_ALDER_LAKE_N_XHCI || + pdev->device == PCI_DEVICE_ID_INTEL_ALDER_LAKE_PCH_XHCI)) xhci->quirks |= XHCI_DEFAULT_PM_RUNTIME_ALLOW; if (pdev->vendor == PCI_VENDOR_ID_ETRON && diff -u linux-intel-iotg-5.15-5.15.0/drivers/usb/host/xhci-ring.c linux-intel-iotg-5.15-5.15.0/drivers/usb/host/xhci-ring.c --- linux-intel-iotg-5.15-5.15.0/drivers/usb/host/xhci-ring.c +++ linux-intel-iotg-5.15-5.15.0/drivers/usb/host/xhci-ring.c @@ -3141,6 +3141,7 @@ if (event_loop++ < TRBS_PER_SEGMENT / 2) continue; xhci_update_erst_dequeue(xhci, event_ring_deq); + event_ring_deq = xhci->event_ring->dequeue; /* ring is half-full, force isoc trbs to interrupt more often */ if (xhci->isoc_bei_interval > AVOID_BEI_INTERVAL_MIN) diff -u linux-intel-iotg-5.15-5.15.0/drivers/usb/host/xhci-tegra.c linux-intel-iotg-5.15-5.15.0/drivers/usb/host/xhci-tegra.c --- linux-intel-iotg-5.15-5.15.0/drivers/usb/host/xhci-tegra.c +++ linux-intel-iotg-5.15-5.15.0/drivers/usb/host/xhci-tegra.c @@ -1034,13 +1034,13 @@ int rc; if (tegra->use_genpd) { - rc = pm_runtime_get_sync(tegra->genpd_dev_ss); + rc = pm_runtime_resume_and_get(tegra->genpd_dev_ss); if (rc < 0) { dev_err(dev, "failed to enable XUSB SS partition\n"); return rc; } - rc = pm_runtime_get_sync(tegra->genpd_dev_host); + rc = pm_runtime_resume_and_get(tegra->genpd_dev_host); if (rc < 0) { dev_err(dev, "failed to enable XUSB Host partition\n"); pm_runtime_put_sync(tegra->genpd_dev_ss); diff -u linux-intel-iotg-5.15-5.15.0/drivers/usb/host/xhci.c linux-intel-iotg-5.15-5.15.0/drivers/usb/host/xhci.c --- linux-intel-iotg-5.15-5.15.0/drivers/usb/host/xhci.c +++ linux-intel-iotg-5.15-5.15.0/drivers/usb/host/xhci.c @@ -774,16 +774,38 @@ void xhci_shutdown(struct usb_hcd *hcd) { struct xhci_hcd *xhci = hcd_to_xhci(hcd); + unsigned long flags; + int i; if (xhci->quirks & XHCI_SPURIOUS_REBOOT) usb_disable_xhci_ports(to_pci_dev(hcd->self.sysdev)); - spin_lock_irq(&xhci->lock); + /* Don't poll the roothubs after shutdown. */ + xhci_dbg(xhci, "%s: stopping usb%d port polling.\n", + __func__, hcd->self.busnum); + clear_bit(HCD_FLAG_POLL_RH, &hcd->flags); + del_timer_sync(&hcd->rh_timer); + + if (xhci->shared_hcd) { + clear_bit(HCD_FLAG_POLL_RH, &xhci->shared_hcd->flags); + del_timer_sync(&xhci->shared_hcd->rh_timer); + } + + spin_lock_irqsave(&xhci->lock, flags); xhci_halt(xhci); + + /* Power off USB2 ports*/ + for (i = 0; i < xhci->usb2_rhub.num_ports; i++) + xhci_set_port_power(xhci, xhci->main_hcd, i, false, &flags); + + /* Power off USB3 ports*/ + for (i = 0; i < xhci->usb3_rhub.num_ports; i++) + xhci_set_port_power(xhci, xhci->shared_hcd, i, false, &flags); + /* Workaround for spurious wakeups at shutdown with HSW */ if (xhci->quirks & XHCI_SPURIOUS_WAKEUP) xhci_reset(xhci, XHCI_RESET_SHORT_USEC); - spin_unlock_irq(&xhci->lock); + spin_unlock_irqrestore(&xhci->lock, flags); xhci_cleanup_msix(xhci); diff -u linux-intel-iotg-5.15-5.15.0/drivers/usb/host/xhci.h linux-intel-iotg-5.15-5.15.0/drivers/usb/host/xhci.h --- linux-intel-iotg-5.15-5.15.0/drivers/usb/host/xhci.h +++ linux-intel-iotg-5.15-5.15.0/drivers/usb/host/xhci.h @@ -2174,6 +2174,8 @@ int xhci_hub_status_data(struct usb_hcd *hcd, char *buf); int xhci_find_raw_port_number(struct usb_hcd *hcd, int port1); struct xhci_hub *xhci_get_rhub(struct usb_hcd *hcd); +void xhci_set_port_power(struct xhci_hcd *xhci, struct usb_hcd *hcd, u16 index, + bool on, unsigned long *flags); void xhci_hc_died(struct xhci_hcd *xhci); diff -u linux-intel-iotg-5.15-5.15.0/drivers/usb/serial/cp210x.c linux-intel-iotg-5.15-5.15.0/drivers/usb/serial/cp210x.c --- linux-intel-iotg-5.15-5.15.0/drivers/usb/serial/cp210x.c +++ linux-intel-iotg-5.15-5.15.0/drivers/usb/serial/cp210x.c @@ -194,6 +194,8 @@ { USB_DEVICE(0x16DC, 0x0015) }, /* W-IE-NE-R Plein & Baus GmbH CML Control, Monitoring and Data Logger */ { USB_DEVICE(0x17A8, 0x0001) }, /* Kamstrup Optical Eye/3-wire */ { USB_DEVICE(0x17A8, 0x0005) }, /* Kamstrup M-Bus Master MultiPort 250D */ + { USB_DEVICE(0x17A8, 0x0101) }, /* Kamstrup 868 MHz wM-Bus C-Mode Meter Reader (Int Ant) */ + { USB_DEVICE(0x17A8, 0x0102) }, /* Kamstrup 868 MHz wM-Bus C-Mode Meter Reader (Ext Ant) */ { USB_DEVICE(0x17F4, 0xAAAA) }, /* Wavesense Jazz blood glucose meter */ { USB_DEVICE(0x1843, 0x0200) }, /* Vaisala USB Instrument Cable */ { USB_DEVICE(0x18EF, 0xE00F) }, /* ELV USB-I2C-Interface */ diff -u linux-intel-iotg-5.15-5.15.0/drivers/usb/serial/option.c linux-intel-iotg-5.15-5.15.0/drivers/usb/serial/option.c --- linux-intel-iotg-5.15-5.15.0/drivers/usb/serial/option.c +++ linux-intel-iotg-5.15-5.15.0/drivers/usb/serial/option.c @@ -432,6 +432,8 @@ #define CINTERION_PRODUCT_CLS8 0x00b0 #define CINTERION_PRODUCT_MV31_MBIM 0x00b3 #define CINTERION_PRODUCT_MV31_RMNET 0x00b7 +#define CINTERION_PRODUCT_MV32_WA 0x00f1 +#define CINTERION_PRODUCT_MV32_WB 0x00f2 /* Olivetti products */ #define OLIVETTI_VENDOR_ID 0x0b3c @@ -1135,6 +1137,8 @@ { USB_DEVICE_AND_INTERFACE_INFO(QUECTEL_VENDOR_ID, QUECTEL_PRODUCT_EM12, 0xff, 0, 0) }, { USB_DEVICE_AND_INTERFACE_INFO(QUECTEL_VENDOR_ID, 0x0620, 0xff, 0xff, 0x30) }, /* EM160R-GL */ { USB_DEVICE_AND_INTERFACE_INFO(QUECTEL_VENDOR_ID, 0x0620, 0xff, 0, 0) }, + { USB_DEVICE_INTERFACE_CLASS(QUECTEL_VENDOR_ID, 0x0700, 0xff), /* BG95 */ + .driver_info = RSVD(3) | ZLP }, { USB_DEVICE_AND_INTERFACE_INFO(QUECTEL_VENDOR_ID, QUECTEL_PRODUCT_RM500Q, 0xff, 0xff, 0x30) }, { USB_DEVICE_AND_INTERFACE_INFO(QUECTEL_VENDOR_ID, QUECTEL_PRODUCT_RM500Q, 0xff, 0, 0) }, { USB_DEVICE_AND_INTERFACE_INFO(QUECTEL_VENDOR_ID, QUECTEL_PRODUCT_RM500Q, 0xff, 0xff, 0x10), @@ -1217,6 +1221,10 @@ .driver_info = NCTRL(0) | RSVD(1) }, { USB_DEVICE_INTERFACE_CLASS(TELIT_VENDOR_ID, 0x1056, 0xff), /* Telit FD980 */ .driver_info = NCTRL(2) | RSVD(3) }, + { USB_DEVICE_INTERFACE_CLASS(TELIT_VENDOR_ID, 0x1057, 0xff), /* Telit FN980 */ + .driver_info = NCTRL(0) | RSVD(1) | RSVD(2) }, + { USB_DEVICE_INTERFACE_CLASS(TELIT_VENDOR_ID, 0x1058, 0xff), /* Telit FN980 (PCIe) */ + .driver_info = NCTRL(0) | RSVD(1) }, { USB_DEVICE_INTERFACE_CLASS(TELIT_VENDOR_ID, 0x1060, 0xff), /* Telit LN920 (rmnet) */ .driver_info = NCTRL(0) | RSVD(1) | RSVD(2) }, { USB_DEVICE_INTERFACE_CLASS(TELIT_VENDOR_ID, 0x1061, 0xff), /* Telit LN920 (MBIM) */ @@ -1233,6 +1241,8 @@ .driver_info = NCTRL(2) | RSVD(3) }, { USB_DEVICE_INTERFACE_CLASS(TELIT_VENDOR_ID, 0x1073, 0xff), /* Telit FN990 (ECM) */ .driver_info = NCTRL(0) | RSVD(1) }, + { USB_DEVICE_INTERFACE_CLASS(TELIT_VENDOR_ID, 0x1075, 0xff), /* Telit FN990 (PCIe) */ + .driver_info = RSVD(0) }, { USB_DEVICE(TELIT_VENDOR_ID, TELIT_PRODUCT_ME910), .driver_info = NCTRL(0) | RSVD(1) | RSVD(3) }, { USB_DEVICE(TELIT_VENDOR_ID, TELIT_PRODUCT_ME910_DUAL_MODEM), @@ -1969,6 +1979,10 @@ .driver_info = RSVD(3)}, { USB_DEVICE_INTERFACE_CLASS(CINTERION_VENDOR_ID, CINTERION_PRODUCT_MV31_RMNET, 0xff), .driver_info = RSVD(0)}, + { USB_DEVICE_INTERFACE_CLASS(CINTERION_VENDOR_ID, CINTERION_PRODUCT_MV32_WA, 0xff), + .driver_info = RSVD(3)}, + { USB_DEVICE_INTERFACE_CLASS(CINTERION_VENDOR_ID, CINTERION_PRODUCT_MV32_WB, 0xff), + .driver_info = RSVD(3)}, { USB_DEVICE(OLIVETTI_VENDOR_ID, OLIVETTI_PRODUCT_OLICARD100), .driver_info = RSVD(4) }, { USB_DEVICE(OLIVETTI_VENDOR_ID, OLIVETTI_PRODUCT_OLICARD120), @@ -2111,10 +2125,14 @@ .driver_info = RSVD(3) }, { USB_DEVICE(0x1508, 0x1001), /* Fibocom NL668 (IOT version) */ .driver_info = RSVD(4) | RSVD(5) | RSVD(6) }, + { USB_DEVICE(0x1782, 0x4d10) }, /* Fibocom L610 (AT mode) */ + { USB_DEVICE_INTERFACE_CLASS(0x1782, 0x4d11, 0xff) }, /* Fibocom L610 (ECM/RNDIS mode) */ { USB_DEVICE(0x2cb7, 0x0104), /* Fibocom NL678 series */ .driver_info = RSVD(4) | RSVD(5) }, { USB_DEVICE_INTERFACE_CLASS(0x2cb7, 0x0105, 0xff), /* Fibocom NL678 series */ .driver_info = RSVD(6) }, + { USB_DEVICE_INTERFACE_CLASS(0x2cb7, 0x0106, 0xff) }, /* Fibocom MA510 (ECM mode w/ diag intf.) */ + { USB_DEVICE_INTERFACE_CLASS(0x2cb7, 0x010a, 0xff) }, /* Fibocom MA510 (ECM mode) */ { USB_DEVICE_AND_INTERFACE_INFO(0x2cb7, 0x010b, 0xff, 0xff, 0x30) }, /* Fibocom FG150 Diag */ { USB_DEVICE_AND_INTERFACE_INFO(0x2cb7, 0x010b, 0xff, 0, 0) }, /* Fibocom FG150 AT */ { USB_DEVICE_INTERFACE_CLASS(0x2cb7, 0x01a0, 0xff) }, /* Fibocom NL668-AM/NL652-EU (laptop MBIM) */ diff -u linux-intel-iotg-5.15-5.15.0/drivers/usb/serial/pl2303.c linux-intel-iotg-5.15-5.15.0/drivers/usb/serial/pl2303.c --- linux-intel-iotg-5.15-5.15.0/drivers/usb/serial/pl2303.c +++ linux-intel-iotg-5.15-5.15.0/drivers/usb/serial/pl2303.c @@ -106,6 +106,7 @@ { USB_DEVICE(HP_VENDOR_ID, HP_LCM220_PRODUCT_ID) }, { USB_DEVICE(HP_VENDOR_ID, HP_LCM960_PRODUCT_ID) }, { USB_DEVICE(HP_VENDOR_ID, HP_LM920_PRODUCT_ID) }, + { USB_DEVICE(HP_VENDOR_ID, HP_LM930_PRODUCT_ID) }, { USB_DEVICE(HP_VENDOR_ID, HP_LM940_PRODUCT_ID) }, { USB_DEVICE(HP_VENDOR_ID, HP_TD620_PRODUCT_ID) }, { USB_DEVICE(CRESSI_VENDOR_ID, CRESSI_EDY_PRODUCT_ID) }, @@ -420,6 +421,9 @@ bcdUSB = le16_to_cpu(desc->bcdUSB); switch (bcdUSB) { + case 0x101: + /* USB 1.0.1? Let's assume they meant 1.1... */ + fallthrough; case 0x110: switch (bcdDevice) { case 0x300: diff -u linux-intel-iotg-5.15-5.15.0/drivers/usb/serial/pl2303.h linux-intel-iotg-5.15-5.15.0/drivers/usb/serial/pl2303.h --- linux-intel-iotg-5.15-5.15.0/drivers/usb/serial/pl2303.h +++ linux-intel-iotg-5.15-5.15.0/drivers/usb/serial/pl2303.h @@ -135,6 +135,7 @@ #define HP_TD620_PRODUCT_ID 0x0956 #define HP_LD960_PRODUCT_ID 0x0b39 #define HP_LD381_PRODUCT_ID 0x0f7f +#define HP_LM930_PRODUCT_ID 0x0f9b #define HP_LCM220_PRODUCT_ID 0x3139 #define HP_LCM960_PRODUCT_ID 0x3239 #define HP_LD220_PRODUCT_ID 0x3524 diff -u linux-intel-iotg-5.15-5.15.0/drivers/usb/typec/tcpm/tcpci.c linux-intel-iotg-5.15-5.15.0/drivers/usb/typec/tcpm/tcpci.c --- linux-intel-iotg-5.15-5.15.0/drivers/usb/typec/tcpm/tcpci.c +++ linux-intel-iotg-5.15-5.15.0/drivers/usb/typec/tcpm/tcpci.c @@ -877,7 +877,7 @@ /* Disable chip interrupts before unregistering port */ err = tcpci_write16(chip->tcpci, TCPC_ALERT_MASK, 0); if (err < 0) - return err; + dev_warn(&client->dev, "Failed to disable irqs (%pe)\n", ERR_PTR(err)); tcpci_unregister_port(chip->tcpci); diff -u linux-intel-iotg-5.15-5.15.0/drivers/usb/typec/ucsi/ucsi.c linux-intel-iotg-5.15-5.15.0/drivers/usb/typec/ucsi/ucsi.c --- linux-intel-iotg-5.15-5.15.0/drivers/usb/typec/ucsi/ucsi.c +++ linux-intel-iotg-5.15-5.15.0/drivers/usb/typec/ucsi/ucsi.c @@ -935,6 +935,8 @@ role == TYPEC_HOST)) goto out_unlock; + reinit_completion(&con->complete); + command = UCSI_SET_UOR | UCSI_CONNECTOR_NUMBER(con->num); command |= UCSI_SET_UOR_ROLE(role); command |= UCSI_SET_UOR_ACCEPT_ROLE_SWAPS; @@ -942,14 +944,18 @@ if (ret < 0) goto out_unlock; + mutex_unlock(&con->lock); + if (!wait_for_completion_timeout(&con->complete, - msecs_to_jiffies(UCSI_SWAP_TIMEOUT_MS))) - ret = -ETIMEDOUT; + msecs_to_jiffies(UCSI_SWAP_TIMEOUT_MS))) + return -ETIMEDOUT; + + return 0; out_unlock: mutex_unlock(&con->lock); - return ret < 0 ? ret : 0; + return ret; } static int ucsi_pr_swap(struct typec_port *port, enum typec_role role) @@ -971,6 +977,8 @@ if (cur_role == role) goto out_unlock; + reinit_completion(&con->complete); + command = UCSI_SET_PDR | UCSI_CONNECTOR_NUMBER(con->num); command |= UCSI_SET_PDR_ROLE(role); command |= UCSI_SET_PDR_ACCEPT_ROLE_SWAPS; @@ -978,11 +986,13 @@ if (ret < 0) goto out_unlock; + mutex_unlock(&con->lock); + if (!wait_for_completion_timeout(&con->complete, - msecs_to_jiffies(UCSI_SWAP_TIMEOUT_MS))) { - ret = -ETIMEDOUT; - goto out_unlock; - } + msecs_to_jiffies(UCSI_SWAP_TIMEOUT_MS))) + return -ETIMEDOUT; + + mutex_lock(&con->lock); /* Something has gone wrong while swapping the role */ if (UCSI_CONSTAT_PWR_OPMODE(con->status.flags) != diff -u linux-intel-iotg-5.15-5.15.0/drivers/vdpa/vdpa_sim/vdpa_sim.c linux-intel-iotg-5.15-5.15.0/drivers/vdpa/vdpa_sim/vdpa_sim.c --- linux-intel-iotg-5.15-5.15.0/drivers/vdpa/vdpa_sim/vdpa_sim.c +++ linux-intel-iotg-5.15-5.15.0/drivers/vdpa/vdpa_sim/vdpa_sim.c @@ -353,11 +353,14 @@ { struct vdpasim *vdpasim = vdpa_to_sim(vdpa); struct vdpasim_virtqueue *vq = &vdpasim->vqs[idx]; + bool old_ready; spin_lock(&vdpasim->lock); + old_ready = vq->ready; vq->ready = ready; - if (vq->ready) + if (vq->ready && !old_ready) { vdpasim_queue_ready(vdpasim, idx); + } spin_unlock(&vdpasim->lock); } diff -u linux-intel-iotg-5.15-5.15.0/drivers/vhost/net.c linux-intel-iotg-5.15-5.15.0/drivers/vhost/net.c --- linux-intel-iotg-5.15-5.15.0/drivers/vhost/net.c +++ linux-intel-iotg-5.15-5.15.0/drivers/vhost/net.c @@ -1450,13 +1450,9 @@ return ERR_PTR(r); } -static struct ptr_ring *get_tap_ptr_ring(int fd) +static struct ptr_ring *get_tap_ptr_ring(struct file *file) { struct ptr_ring *ring; - struct file *file = fget(fd); - - if (!file) - return NULL; ring = tun_get_tx_ring(file); if (!IS_ERR(ring)) goto out; @@ -1465,7 +1461,6 @@ goto out; ring = NULL; out: - fput(file); return ring; } @@ -1552,8 +1547,12 @@ r = vhost_net_enable_vq(n, vq); if (r) goto err_used; - if (index == VHOST_NET_VQ_RX) - nvq->rx_ring = get_tap_ptr_ring(fd); + if (index == VHOST_NET_VQ_RX) { + if (sock) + nvq->rx_ring = get_tap_ptr_ring(sock->file); + else + nvq->rx_ring = NULL; + } oldubufs = nvq->ubufs; nvq->ubufs = ubufs; diff -u linux-intel-iotg-5.15-5.15.0/drivers/vhost/vdpa.c linux-intel-iotg-5.15-5.15.0/drivers/vhost/vdpa.c --- linux-intel-iotg-5.15-5.15.0/drivers/vhost/vdpa.c +++ linux-intel-iotg-5.15-5.15.0/drivers/vhost/vdpa.c @@ -97,8 +97,11 @@ return; irq = ops->get_vq_irq(vdpa, qid); + if (irq < 0) + return; + irq_bypass_unregister_producer(&vq->call_ctx.producer); - if (!vq->call_ctx.ctx || irq < 0) + if (!vq->call_ctx.ctx) return; vq->call_ctx.producer.token = vq->call_ctx.ctx; diff -u linux-intel-iotg-5.15-5.15.0/drivers/video/console/sticon.c linux-intel-iotg-5.15-5.15.0/drivers/video/console/sticon.c --- linux-intel-iotg-5.15-5.15.0/drivers/video/console/sticon.c +++ linux-intel-iotg-5.15-5.15.0/drivers/video/console/sticon.c @@ -46,6 +46,7 @@ #include #include #include +#include #include @@ -392,7 +393,9 @@ for (i = 0; i < MAX_NR_CONSOLES; i++) font_data[i] = STI_DEF_FONT; - pr_info("sticon: Initializing STI text console.\n"); + pr_info("sticon: Initializing STI text console on %s at [%s]\n", + sticon_sti->sti_data->inq_outptr.dev_name, + sticon_sti->pa_path); console_lock(); err = do_take_over_console(&sti_con, 0, MAX_NR_CONSOLES - 1, PAGE0->mem_cons.cl_class != CL_DUPLEX); diff -u linux-intel-iotg-5.15-5.15.0/drivers/video/fbdev/core/fbcon.c linux-intel-iotg-5.15-5.15.0/drivers/video/fbdev/core/fbcon.c --- linux-intel-iotg-5.15-5.15.0/drivers/video/fbdev/core/fbcon.c +++ linux-intel-iotg-5.15-5.15.0/drivers/video/fbdev/core/fbcon.c @@ -3265,6 +3265,9 @@ console_lock(); + deferred_takeover = false; + logo_shown = FBCON_LOGO_DONTSHOW; + for_each_registered_fb(i) fbcon_fb_registered(registered_fb[i]); @@ -3282,8 +3285,6 @@ pr_info("fbcon: Taking over console\n"); dummycon_unregister_output_notifier(&fbcon_output_nb); - deferred_takeover = false; - logo_shown = FBCON_LOGO_DONTSHOW; /* We may get called in atomic context */ schedule_work(&fbcon_deferred_takeover_work); diff -u linux-intel-iotg-5.15-5.15.0/drivers/video/fbdev/efifb.c linux-intel-iotg-5.15-5.15.0/drivers/video/fbdev/efifb.c --- linux-intel-iotg-5.15-5.15.0/drivers/video/fbdev/efifb.c +++ linux-intel-iotg-5.15-5.15.0/drivers/video/fbdev/efifb.c @@ -243,6 +243,10 @@ static inline void efifb_show_boot_graphics(struct fb_info *info) {} #endif +/* + * fb_ops.fb_destroy is called by the last put_fb_info() call at the end + * of unregister_framebuffer() or fb_release(). Do any cleanup here. + */ static void efifb_destroy(struct fb_info *info) { if (efifb_pci_dev) @@ -254,10 +258,13 @@ else memunmap(info->screen_base); } + if (request_mem_succeeded) release_mem_region(info->apertures->ranges[0].base, info->apertures->ranges[0].size); fb_dealloc_cmap(&info->cmap); + + framebuffer_release(info); } static const struct fb_ops efifb_ops = { @@ -620,9 +627,9 @@ { struct fb_info *info = platform_get_drvdata(pdev); + /* efifb_destroy takes care of info cleanup */ unregister_framebuffer(info); sysfs_remove_groups(&pdev->dev.kobj, efifb_groups); - framebuffer_release(info); return 0; } diff -u linux-intel-iotg-5.15-5.15.0/drivers/video/fbdev/simplefb.c linux-intel-iotg-5.15-5.15.0/drivers/video/fbdev/simplefb.c --- linux-intel-iotg-5.15-5.15.0/drivers/video/fbdev/simplefb.c +++ linux-intel-iotg-5.15-5.15.0/drivers/video/fbdev/simplefb.c @@ -70,12 +70,18 @@ static void simplefb_clocks_destroy(struct simplefb_par *par); static void simplefb_regulators_destroy(struct simplefb_par *par); +/* + * fb_ops.fb_destroy is called by the last put_fb_info() call at the end + * of unregister_framebuffer() or fb_release(). Do any cleanup here. + */ static void simplefb_destroy(struct fb_info *info) { simplefb_regulators_destroy(info->par); simplefb_clocks_destroy(info->par); if (info->screen_base) iounmap(info->screen_base); + + framebuffer_release(info); } static const struct fb_ops simplefb_ops = { @@ -520,8 +526,8 @@ { struct fb_info *info = platform_get_drvdata(pdev); + /* simplefb_destroy takes care of info cleanup */ unregister_framebuffer(info); - framebuffer_release(info); return 0; } diff -u linux-intel-iotg-5.15-5.15.0/drivers/video/fbdev/udlfb.c linux-intel-iotg-5.15-5.15.0/drivers/video/fbdev/udlfb.c --- linux-intel-iotg-5.15-5.15.0/drivers/video/fbdev/udlfb.c +++ linux-intel-iotg-5.15-5.15.0/drivers/video/fbdev/udlfb.c @@ -1649,8 +1649,9 @@ const struct device_attribute *attr; struct dlfb_data *dlfb; struct fb_info *info; - int retval = -ENOMEM; + int retval; struct usb_device *usbdev = interface_to_usbdev(intf); + struct usb_endpoint_descriptor *out; /* usb initialization */ dlfb = kzalloc(sizeof(*dlfb), GFP_KERNEL); @@ -1664,6 +1665,12 @@ dlfb->udev = usb_get_dev(usbdev); usb_set_intfdata(intf, dlfb); + retval = usb_find_common_endpoints(intf->cur_altsetting, NULL, &out, NULL, NULL); + if (retval) { + dev_err(&intf->dev, "Device should have at lease 1 bulk endpoint!\n"); + goto error; + } + dev_dbg(&intf->dev, "console enable=%d\n", console); dev_dbg(&intf->dev, "fb_defio enable=%d\n", fb_defio); dev_dbg(&intf->dev, "shadow enable=%d\n", shadow); @@ -1673,6 +1680,7 @@ if (!dlfb_parse_vendor_descriptor(dlfb, intf)) { dev_err(&intf->dev, "firmware not recognized, incompatible device?\n"); + retval = -ENODEV; goto error; } @@ -1686,8 +1694,10 @@ /* allocates framebuffer driver structure, not framebuffer memory */ info = framebuffer_alloc(0, &dlfb->udev->dev); - if (!info) + if (!info) { + retval = -ENOMEM; goto error; + } dlfb->info = info; info->par = dlfb; diff -u linux-intel-iotg-5.15-5.15.0/fs/btrfs/disk-io.c linux-intel-iotg-5.15-5.15.0/fs/btrfs/disk-io.c --- linux-intel-iotg-5.15-5.15.0/fs/btrfs/disk-io.c +++ linux-intel-iotg-5.15-5.15.0/fs/btrfs/disk-io.c @@ -3370,7 +3370,7 @@ ~BTRFS_FEATURE_INCOMPAT_SUPP; if (features) { btrfs_err(fs_info, - "cannot mount because of unsupported optional features (%llx)", + "cannot mount because of unsupported optional features (0x%llx)", features); err = -EINVAL; goto fail_alloc; @@ -3408,13 +3408,24 @@ ~BTRFS_FEATURE_COMPAT_RO_SUPP; if (!sb_rdonly(sb) && features) { btrfs_err(fs_info, - "cannot mount read-write because of unsupported optional features (%llx)", + "cannot mount read-write because of unsupported optional features (0x%llx)", features); err = -EINVAL; goto fail_alloc; } if (sectorsize != PAGE_SIZE) { + /* + * V1 space cache has some hardcoded PAGE_SIZE usage, and is + * going to be deprecated. + * + * Force to use v2 cache for subpage case. + */ + btrfs_clear_opt(fs_info->mount_opt, SPACE_CACHE); + btrfs_set_and_info(fs_info, FREE_SPACE_TREE, + "forcing free space tree for sector size %u with page size %lu", + sectorsize, PAGE_SIZE); + btrfs_warn(fs_info, "read-write for sector size %u with page size %lu is experimental", sectorsize, PAGE_SIZE); diff -u linux-intel-iotg-5.15-5.15.0/fs/btrfs/extent_io.c linux-intel-iotg-5.15-5.15.0/fs/btrfs/extent_io.c --- linux-intel-iotg-5.15-5.15.0/fs/btrfs/extent_io.c +++ linux-intel-iotg-5.15-5.15.0/fs/btrfs/extent_io.c @@ -3727,8 +3727,12 @@ this_bio_flag, force_bio_submit); if (ret) { - unlock_extent(tree, cur, cur + iosize - 1); - end_page_read(page, false, cur, iosize); + /* + * We have to unlock the remaining range, or the page + * will never be unlocked. + */ + unlock_extent(tree, cur, end); + end_page_read(page, false, cur, end + 1 - cur); goto out; } cur = cur + iosize; @@ -3902,10 +3906,12 @@ u64 extent_offset; u64 block_start; struct extent_map *em; + int saved_ret = 0; int ret = 0; int nr = 0; u32 opf = REQ_OP_WRITE; const unsigned int write_flags = wbc_to_write_flags(wbc); + bool has_error = false; bool compressed; ret = btrfs_writepage_cow_fixup(page); @@ -3956,6 +3962,9 @@ if (IS_ERR_OR_NULL(em)) { btrfs_page_set_error(fs_info, page, cur, end - cur + 1); ret = PTR_ERR_OR_ZERO(em); + has_error = true; + if (!saved_ret) + saved_ret = ret; break; } @@ -4019,6 +4028,10 @@ end_bio_extent_writepage, 0, 0, false); if (ret) { + has_error = true; + if (!saved_ret) + saved_ret = ret; + btrfs_page_set_error(fs_info, page, cur, iosize); if (PageWriteback(page)) btrfs_page_clear_writeback(fs_info, page, cur, @@ -4032,8 +4045,10 @@ * If we finish without problem, we should not only clear page dirty, * but also empty subpage dirty bits */ - if (!ret) + if (!has_error) btrfs_page_assert_not_dirty(fs_info, page); + else + ret = saved_ret; *nr_ret = nr; return ret; } diff -u linux-intel-iotg-5.15-5.15.0/fs/btrfs/file.c linux-intel-iotg-5.15-5.15.0/fs/btrfs/file.c --- linux-intel-iotg-5.15-5.15.0/fs/btrfs/file.c +++ linux-intel-iotg-5.15-5.15.0/fs/btrfs/file.c @@ -1709,7 +1709,7 @@ * Fault pages before locking them in prepare_pages * to avoid recursive lock */ - if (unlikely(iov_iter_fault_in_readable(i, write_bytes))) { + if (unlikely(fault_in_iov_iter_readable(i, write_bytes))) { ret = -EFAULT; break; } @@ -1903,16 +1903,17 @@ static ssize_t btrfs_direct_write(struct kiocb *iocb, struct iov_iter *from) { + const bool is_sync_write = (iocb->ki_flags & IOCB_DSYNC); struct file *file = iocb->ki_filp; struct inode *inode = file_inode(file); struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb); loff_t pos; ssize_t written = 0; ssize_t written_buffered; + size_t prev_left = 0; loff_t endbyte; ssize_t err; unsigned int ilock_flags = 0; - struct iomap_dio *dio = NULL; if (iocb->ki_flags & IOCB_NOWAIT) ilock_flags |= BTRFS_ILOCK_TRY; @@ -1955,23 +1956,80 @@ goto buffered; } - dio = __iomap_dio_rw(iocb, from, &btrfs_dio_iomap_ops, &btrfs_dio_ops, - 0); + /* + * We remove IOCB_DSYNC so that we don't deadlock when iomap_dio_rw() + * calls generic_write_sync() (through iomap_dio_complete()), because + * that results in calling fsync (btrfs_sync_file()) which will try to + * lock the inode in exclusive/write mode. + */ + if (is_sync_write) + iocb->ki_flags &= ~IOCB_DSYNC; - btrfs_inode_unlock(inode, ilock_flags); + /* + * The iov_iter can be mapped to the same file range we are writing to. + * If that's the case, then we will deadlock in the iomap code, because + * it first calls our callback btrfs_dio_iomap_begin(), which will create + * an ordered extent, and after that it will fault in the pages that the + * iov_iter refers to. During the fault in we end up in the readahead + * pages code (starting at btrfs_readahead()), which will lock the range, + * find that ordered extent and then wait for it to complete (at + * btrfs_lock_and_flush_ordered_range()), resulting in a deadlock since + * obviously the ordered extent can never complete as we didn't submit + * yet the respective bio(s). This always happens when the buffer is + * memory mapped to the same file range, since the iomap DIO code always + * invalidates pages in the target file range (after starting and waiting + * for any writeback). + * + * So here we disable page faults in the iov_iter and then retry if we + * got -EFAULT, faulting in the pages before the retry. + */ +again: + from->nofault = true; + err = iomap_dio_rw(iocb, from, &btrfs_dio_iomap_ops, &btrfs_dio_ops, + IOMAP_DIO_PARTIAL, written); + from->nofault = false; - if (IS_ERR_OR_NULL(dio)) { - err = PTR_ERR_OR_ZERO(dio); - if (err < 0 && err != -ENOTBLK) - goto out; - } else { - written = iomap_dio_complete(dio); + /* No increment (+=) because iomap returns a cumulative value. */ + if (err > 0) + written = err; + + if (iov_iter_count(from) > 0 && (err == -EFAULT || err > 0)) { + const size_t left = iov_iter_count(from); + /* + * We have more data left to write. Try to fault in as many as + * possible of the remainder pages and retry. We do this without + * releasing and locking again the inode, to prevent races with + * truncate. + * + * Also, in case the iov refers to pages in the file range of the + * file we want to write to (due to a mmap), we could enter an + * infinite loop if we retry after faulting the pages in, since + * iomap will invalidate any pages in the range early on, before + * it tries to fault in the pages of the iov. So we keep track of + * how much was left of iov in the previous EFAULT and fallback + * to buffered IO in case we haven't made any progress. + */ + if (left == prev_left) { + err = -ENOTBLK; + } else { + fault_in_iov_iter_readable(from, left); + prev_left = left; + goto again; + } } - if (written < 0 || !iov_iter_count(from)) { - err = written; + btrfs_inode_unlock(inode, ilock_flags); + + /* + * Add back IOCB_DSYNC. Our caller, btrfs_file_write_iter(), will do + * the fsync (call generic_write_sync()). + */ + if (is_sync_write) + iocb->ki_flags |= IOCB_DSYNC; + + /* If 'err' is -ENOTBLK then it means we must fallback to buffered IO. */ + if ((err < 0 && err != -ENOTBLK) || !iov_iter_count(from)) goto out; - } buffered: pos = iocb->ki_pos; @@ -1996,7 +2054,7 @@ invalidate_mapping_pages(file->f_mapping, pos >> PAGE_SHIFT, endbyte >> PAGE_SHIFT); out: - return written ? written : err; + return err < 0 ? err : written; } static ssize_t btrfs_file_write_iter(struct kiocb *iocb, @@ -3659,6 +3717,8 @@ static ssize_t btrfs_direct_read(struct kiocb *iocb, struct iov_iter *to) { struct inode *inode = file_inode(iocb->ki_filp); + size_t prev_left = 0; + ssize_t read = 0; ssize_t ret; if (fsverity_active(inode)) @@ -3668,9 +3728,57 @@ return 0; btrfs_inode_lock(inode, BTRFS_ILOCK_SHARED); - ret = iomap_dio_rw(iocb, to, &btrfs_dio_iomap_ops, &btrfs_dio_ops, 0); +again: + /* + * This is similar to what we do for direct IO writes, see the comment + * at btrfs_direct_write(), but we also disable page faults in addition + * to disabling them only at the iov_iter level. This is because when + * reading from a hole or prealloc extent, iomap calls iov_iter_zero(), + * which can still trigger page fault ins despite having set ->nofault + * to true of our 'to' iov_iter. + * + * The difference to direct IO writes is that we deadlock when trying + * to lock the extent range in the inode's tree during he page reads + * triggered by the fault in (while for writes it is due to waiting for + * our own ordered extent). This is because for direct IO reads, + * btrfs_dio_iomap_begin() returns with the extent range locked, which + * is only unlocked in the endio callback (end_bio_extent_readpage()). + */ + pagefault_disable(); + to->nofault = true; + ret = iomap_dio_rw(iocb, to, &btrfs_dio_iomap_ops, &btrfs_dio_ops, + IOMAP_DIO_PARTIAL, read); + to->nofault = false; + pagefault_enable(); + + /* No increment (+=) because iomap returns a cumulative value. */ + if (ret > 0) + read = ret; + + if (iov_iter_count(to) > 0 && (ret == -EFAULT || ret > 0)) { + const size_t left = iov_iter_count(to); + + if (left == prev_left) { + /* + * We didn't make any progress since the last attempt, + * fallback to a buffered read for the remainder of the + * range. This is just to avoid any possibility of looping + * for too long. + */ + ret = read; + } else { + /* + * We made some progress since the last retry or this is + * the first time we are retrying. Fault in as many pages + * as possible and retry. + */ + fault_in_iov_iter_writeable(to, left); + prev_left = left; + goto again; + } + } btrfs_inode_unlock(inode, BTRFS_ILOCK_SHARED); - return ret; + return ret < 0 ? ret : read; } static ssize_t btrfs_file_read_iter(struct kiocb *iocb, struct iov_iter *to) diff -u linux-intel-iotg-5.15-5.15.0/fs/btrfs/inode.c linux-intel-iotg-5.15-5.15.0/fs/btrfs/inode.c --- linux-intel-iotg-5.15-5.15.0/fs/btrfs/inode.c +++ linux-intel-iotg-5.15-5.15.0/fs/btrfs/inode.c @@ -7961,6 +7961,34 @@ } len = min(len, em->len - (start - em->start)); + + /* + * If we have a NOWAIT request and the range contains multiple extents + * (or a mix of extents and holes), then we return -EAGAIN to make the + * caller fallback to a context where it can do a blocking (without + * NOWAIT) request. This way we avoid doing partial IO and returning + * success to the caller, which is not optimal for writes and for reads + * it can result in unexpected behaviour for an application. + * + * When doing a read, because we use IOMAP_DIO_PARTIAL when calling + * iomap_dio_rw(), we can end up returning less data then what the caller + * asked for, resulting in an unexpected, and incorrect, short read. + * That is, the caller asked to read N bytes and we return less than that, + * which is wrong unless we are crossing EOF. This happens if we get a + * page fault error when trying to fault in pages for the buffer that is + * associated to the struct iov_iter passed to iomap_dio_rw(), and we + * have previously submitted bios for other extents in the range, in + * which case iomap_dio_rw() may return us EIOCBQUEUED if not all of + * those bios have completed by the time we get the page fault error, + * which we return back to our caller - we should only return EIOCBQUEUED + * after we have submitted bios for all the extents in the range. + */ + if ((flags & IOMAP_NOWAIT) && len < length) { + free_extent_map(em); + ret = -EAGAIN; + goto unlock_err; + } + if (write) { ret = btrfs_get_blocks_direct_write(&em, inode, dio_data, start, len); diff -u linux-intel-iotg-5.15-5.15.0/fs/btrfs/ioctl.c linux-intel-iotg-5.15-5.15.0/fs/btrfs/ioctl.c --- linux-intel-iotg-5.15-5.15.0/fs/btrfs/ioctl.c +++ linux-intel-iotg-5.15-5.15.0/fs/btrfs/ioctl.c @@ -2258,9 +2258,8 @@ key.offset = sk->min_offset; while (1) { - ret = fault_in_pages_writeable(ubuf + sk_offset, - *buf_size - sk_offset); - if (ret) + ret = -EFAULT; + if (fault_in_writeable(ubuf + sk_offset, *buf_size - sk_offset)) break; ret = btrfs_search_forward(root, &key, path, sk->min_transid); diff -u linux-intel-iotg-5.15-5.15.0/fs/btrfs/tree-log.c linux-intel-iotg-5.15-5.15.0/fs/btrfs/tree-log.c --- linux-intel-iotg-5.15-5.15.0/fs/btrfs/tree-log.c +++ linux-intel-iotg-5.15-5.15.0/fs/btrfs/tree-log.c @@ -3216,6 +3216,7 @@ ret = btrfs_alloc_log_tree_node(trans, log_root_tree); if (ret) { mutex_unlock(&fs_info->tree_root->log_mutex); + blk_finish_plug(&plug); goto out; } } @@ -5483,6 +5484,18 @@ } /* + * For symlinks, we must always log their content, which is stored in an + * inline extent, otherwise we could end up with an empty symlink after + * log replay, which is invalid on linux (symlink(2) returns -ENOENT if + * one attempts to create an empty symlink). + * We don't need to worry about flushing delalloc, because when we create + * the inline extent when the symlink is created (we never have delalloc + * for symlinks). + */ + if (S_ISLNK(inode->vfs_inode.i_mode)) + inode_only = LOG_INODE_ALL; + + /* * This is for cases where logging a directory could result in losing a * a file after replaying the log. For example, if we move a file from a * directory A to a directory B, then fsync directory A, we have no way @@ -5852,7 +5865,7 @@ } ctx->log_new_dentries = false; - if (type == BTRFS_FT_DIR || type == BTRFS_FT_SYMLINK) + if (type == BTRFS_FT_DIR) log_mode = LOG_INODE_ALL; ret = btrfs_log_inode(trans, root, BTRFS_I(di_inode), log_mode, ctx); diff -u linux-intel-iotg-5.15-5.15.0/fs/btrfs/volumes.c linux-intel-iotg-5.15-5.15.0/fs/btrfs/volumes.c --- linux-intel-iotg-5.15-5.15.0/fs/btrfs/volumes.c +++ linux-intel-iotg-5.15-5.15.0/fs/btrfs/volumes.c @@ -7596,12 +7596,12 @@ * do another round of validation checks. */ if (total_dev != fs_info->fs_devices->total_devices) { - btrfs_err(fs_info, - "super_num_devices %llu mismatch with num_devices %llu found here", + btrfs_warn(fs_info, +"super block num_devices %llu mismatch with DEV_ITEM count %llu, will be repaired on next transaction commit", btrfs_super_num_devices(fs_info->super_copy), total_dev); - ret = -EINVAL; - goto error; + fs_info->fs_devices->total_devices = total_dev; + btrfs_set_super_num_devices(fs_info->super_copy, total_dev); } if (btrfs_super_total_bytes(fs_info->super_copy) < fs_info->fs_devices->total_rw_bytes) { diff -u linux-intel-iotg-5.15-5.15.0/fs/ceph/caps.c linux-intel-iotg-5.15-5.15.0/fs/ceph/caps.c --- linux-intel-iotg-5.15-5.15.0/fs/ceph/caps.c +++ linux-intel-iotg-5.15-5.15.0/fs/ceph/caps.c @@ -2266,6 +2266,8 @@ list_for_each_entry(req, &ci->i_unsafe_dirops, r_unsafe_dir_item) { s = req->r_session; + if (!s) + continue; if (unlikely(s->s_mds >= max_sessions)) { spin_unlock(&ci->i_unsafe_lock); for (i = 0; i < max_sessions; i++) { @@ -2286,6 +2288,8 @@ list_for_each_entry(req, &ci->i_unsafe_iops, r_unsafe_target_item) { s = req->r_session; + if (!s) + continue; if (unlikely(s->s_mds >= max_sessions)) { spin_unlock(&ci->i_unsafe_lock); for (i = 0; i < max_sessions; i++) { diff -u linux-intel-iotg-5.15-5.15.0/fs/ceph/file.c linux-intel-iotg-5.15-5.15.0/fs/ceph/file.c --- linux-intel-iotg-5.15-5.15.0/fs/ceph/file.c +++ linux-intel-iotg-5.15-5.15.0/fs/ceph/file.c @@ -592,9 +592,15 @@ iinfo.change_attr = 1; ceph_encode_timespec64(&iinfo.btime, &now); - iinfo.xattr_len = ARRAY_SIZE(xattr_buf); - iinfo.xattr_data = xattr_buf; - memset(iinfo.xattr_data, 0, iinfo.xattr_len); + if (req->r_pagelist) { + iinfo.xattr_len = req->r_pagelist->length; + iinfo.xattr_data = req->r_pagelist->mapped_tail; + } else { + /* fake it */ + iinfo.xattr_len = ARRAY_SIZE(xattr_buf); + iinfo.xattr_data = xattr_buf; + memset(iinfo.xattr_data, 0, iinfo.xattr_len); + } in.ino = cpu_to_le64(vino.ino); in.snapid = cpu_to_le64(CEPH_NOSNAP); @@ -706,6 +712,10 @@ err = ceph_security_init_secctx(dentry, mode, &as_ctx); if (err < 0) goto out_ctx; + /* Async create can't handle more than a page of xattrs */ + if (as_ctx.pagelist && + !list_is_singular(&as_ctx.pagelist->head)) + try_async = false; } else if (!d_in_lookup(dentry)) { /* If it's not being looked up, it's negative */ return -ENOENT; diff -u linux-intel-iotg-5.15-5.15.0/fs/cifs/cifsfs.c linux-intel-iotg-5.15-5.15.0/fs/cifs/cifsfs.c --- linux-intel-iotg-5.15-5.15.0/fs/cifs/cifsfs.c +++ linux-intel-iotg-5.15-5.15.0/fs/cifs/cifsfs.c @@ -826,7 +826,7 @@ int flags, struct smb3_fs_context *old_ctx) { int rc; - struct super_block *sb; + struct super_block *sb = NULL; struct cifs_sb_info *cifs_sb = NULL; struct cifs_mnt_data mnt_data; struct dentry *root; @@ -922,9 +922,11 @@ return root; out: if (cifs_sb) { - kfree(cifs_sb->prepath); - smb3_cleanup_fs_context(cifs_sb->ctx); - kfree(cifs_sb); + if (!sb || IS_ERR(sb)) { /* otherwise kill_sb will handle */ + kfree(cifs_sb->prepath); + smb3_cleanup_fs_context(cifs_sb->ctx); + kfree(cifs_sb); + } } return root; } @@ -936,7 +938,7 @@ ssize_t rc; struct inode *inode = file_inode(iocb->ki_filp); - if (iocb->ki_filp->f_flags & O_DIRECT) + if (iocb->ki_flags & IOCB_DIRECT) return cifs_user_readv(iocb, iter); rc = cifs_revalidate_mapping(inode); diff -u linux-intel-iotg-5.15-5.15.0/fs/cifs/smb2ops.c linux-intel-iotg-5.15-5.15.0/fs/cifs/smb2ops.c --- linux-intel-iotg-5.15-5.15.0/fs/cifs/smb2ops.c +++ linux-intel-iotg-5.15-5.15.0/fs/cifs/smb2ops.c @@ -745,8 +745,8 @@ struct cifs_sb_info *cifs_sb, struct cached_fid **cfid) { - struct cifs_ses *ses = tcon->ses; - struct TCP_Server_Info *server = ses->server; + struct cifs_ses *ses; + struct TCP_Server_Info *server; struct cifs_open_parms oparms; struct smb2_create_rsp *o_rsp = NULL; struct smb2_query_info_rsp *qi_rsp = NULL; @@ -764,6 +764,9 @@ if (tcon->nohandlecache) return -ENOTSUPP; + ses = tcon->ses; + server = ses->server; + if (cifs_sb->root == NULL) return -ENOENT; @@ -1849,9 +1852,17 @@ int chunks_copied = 0; bool chunk_sizes_updated = false; ssize_t bytes_written, total_bytes_written = 0; + struct inode *inode; pcchunk = kmalloc(sizeof(struct copychunk_ioctl), GFP_KERNEL); + /* + * We need to flush all unwritten data before we can send the + * copychunk ioctl to the server. + */ + inode = d_inode(trgtfile->dentry); + filemap_write_and_wait(inode->i_mapping); + if (pcchunk == NULL) return -ENOMEM; @@ -3783,7 +3794,7 @@ if (rc) goto out; - if ((cifsi->cifsAttrs & FILE_ATTRIBUTE_SPARSE_FILE) == 0) + if (cifsi->cifsAttrs & FILE_ATTRIBUTE_SPARSE_FILE) smb2_set_sparse(xid, tcon, cfile, inode, false); eof = cpu_to_le64(off + len); diff -u linux-intel-iotg-5.15-5.15.0/fs/dlm/lock.c linux-intel-iotg-5.15-5.15.0/fs/dlm/lock.c --- linux-intel-iotg-5.15-5.15.0/fs/dlm/lock.c +++ linux-intel-iotg-5.15-5.15.0/fs/dlm/lock.c @@ -1551,6 +1551,7 @@ lkb->lkb_wait_type = 0; lkb->lkb_flags &= ~DLM_IFL_OVERLAP_CANCEL; lkb->lkb_wait_count--; + unhold_lkb(lkb); goto out_del; } @@ -1577,6 +1578,7 @@ log_error(ls, "remwait error %x reply %d wait_type %d overlap", lkb->lkb_id, mstype, lkb->lkb_wait_type); lkb->lkb_wait_count--; + unhold_lkb(lkb); lkb->lkb_wait_type = 0; } @@ -5310,11 +5312,16 @@ lkb->lkb_flags &= ~DLM_IFL_OVERLAP_UNLOCK; lkb->lkb_flags &= ~DLM_IFL_OVERLAP_CANCEL; lkb->lkb_wait_type = 0; - lkb->lkb_wait_count = 0; + /* drop all wait_count references we still + * hold a reference for this iteration. + */ + while (lkb->lkb_wait_count) { + lkb->lkb_wait_count--; + unhold_lkb(lkb); + } mutex_lock(&ls->ls_waiters_mutex); list_del_init(&lkb->lkb_wait_reply); mutex_unlock(&ls->ls_waiters_mutex); - unhold_lkb(lkb); /* for waiters list */ if (oc || ou) { /* do an unlock or cancel instead of resending */ diff -u linux-intel-iotg-5.15-5.15.0/fs/dlm/lowcomms.c linux-intel-iotg-5.15-5.15.0/fs/dlm/lowcomms.c --- linux-intel-iotg-5.15-5.15.0/fs/dlm/lowcomms.c +++ linux-intel-iotg-5.15-5.15.0/fs/dlm/lowcomms.c @@ -1776,7 +1776,7 @@ SOCK_STREAM, dlm_proto_ops->proto, &sock); if (result < 0) { log_print("Can't create comms socket, check SCTP is loaded"); - goto out; + return result; } sock_set_mark(sock->sk, dlm_config.ci_mark); diff -u linux-intel-iotg-5.15-5.15.0/fs/exec.c linux-intel-iotg-5.15-5.15.0/fs/exec.c --- linux-intel-iotg-5.15-5.15.0/fs/exec.c +++ linux-intel-iotg-5.15-5.15.0/fs/exec.c @@ -1299,6 +1299,9 @@ bprm->mm = NULL; #ifdef CONFIG_POSIX_TIMERS + spin_lock_irq(&me->sighand->siglock); + posix_cpu_timers_exit(me); + spin_unlock_irq(&me->sighand->siglock); exit_itimers(me->signal); flush_itimer_signals(); #endif diff -u linux-intel-iotg-5.15-5.15.0/fs/ext4/ext4.h linux-intel-iotg-5.15-5.15.0/fs/ext4/ext4.h --- linux-intel-iotg-5.15-5.15.0/fs/ext4/ext4.h +++ linux-intel-iotg-5.15-5.15.0/fs/ext4/ext4.h @@ -1435,12 +1435,6 @@ #ifdef __KERNEL__ -#ifdef CONFIG_FS_ENCRYPTION -#define DUMMY_ENCRYPTION_ENABLED(sbi) ((sbi)->s_dummy_enc_policy.policy != NULL) -#else -#define DUMMY_ENCRYPTION_ENABLED(sbi) (0) -#endif - /* Number of quota types we support */ #define EXT4_MAXQUOTAS 3 @@ -2267,6 +2261,10 @@ * Structure of a directory entry */ #define EXT4_NAME_LEN 255 +/* + * Base length of the ext4 directory entry excluding the name length + */ +#define EXT4_BASE_DIR_LEN (sizeof(struct ext4_dir_entry_2) - EXT4_NAME_LEN) struct ext4_dir_entry { __le32 inode; /* Inode number */ @@ -3027,7 +3025,7 @@ extern int ext4_can_truncate(struct inode *inode); extern int ext4_truncate(struct inode *); extern int ext4_break_layouts(struct inode *); -extern int ext4_punch_hole(struct inode *inode, loff_t offset, loff_t length); +extern int ext4_punch_hole(struct file *file, loff_t offset, loff_t length); extern void ext4_set_inode_flags(struct inode *, bool init); extern int ext4_alloc_da_blocks(struct inode *inode); extern void ext4_set_aops(struct inode *inode); diff -u linux-intel-iotg-5.15-5.15.0/fs/ext4/extents.c linux-intel-iotg-5.15-5.15.0/fs/ext4/extents.c --- linux-intel-iotg-5.15-5.15.0/fs/ext4/extents.c +++ linux-intel-iotg-5.15-5.15.0/fs/ext4/extents.c @@ -372,7 +372,7 @@ { unsigned short entries; ext4_lblk_t lblock = 0; - ext4_lblk_t prev = 0; + ext4_lblk_t cur = 0; if (eh->eh_entries == 0) return 1; @@ -396,11 +396,11 @@ /* Check for overlapping extents */ lblock = le32_to_cpu(ext->ee_block); - if ((lblock <= prev) && prev) { + if (lblock < cur) { *pblk = ext4_ext_pblock(ext); return 0; } - prev = lblock + ext4_ext_get_actual_len(ext) - 1; + cur = lblock + ext4_ext_get_actual_len(ext); ext++; entries--; } @@ -420,13 +420,13 @@ /* Check for overlapping index extents */ lblock = le32_to_cpu(ext_idx->ei_block); - if ((lblock <= prev) && prev) { + if (lblock < cur) { *pblk = ext4_idx_pblock(ext_idx); return 0; } ext_idx++; entries--; - prev = lblock; + cur = lblock + 1; } } return 1; @@ -4504,9 +4504,9 @@ return ret > 0 ? ret2 : ret; } -static int ext4_collapse_range(struct inode *inode, loff_t offset, loff_t len); +static int ext4_collapse_range(struct file *file, loff_t offset, loff_t len); -static int ext4_insert_range(struct inode *inode, loff_t offset, loff_t len); +static int ext4_insert_range(struct file *file, loff_t offset, loff_t len); static long ext4_zero_range(struct file *file, loff_t offset, loff_t len, int mode) @@ -4578,6 +4578,10 @@ /* Wait all existing dio workers, newcomers will block on i_mutex */ inode_dio_wait(inode); + ret = file_modified(file); + if (ret) + goto out_mutex; + /* Preallocate the range including the unaligned edges */ if (partial_begin || partial_end) { ret = ext4_alloc_file_blocks(file, @@ -4695,22 +4699,24 @@ ext4_fc_start_update(inode); - if (mode & FALLOC_FL_PUNCH_HOLE) { - ret = ext4_punch_hole(inode, offset, len); - goto exit; - } - + inode_lock(inode); ret = ext4_convert_inline_data(inode); + inode_unlock(inode); if (ret) goto exit; + if (mode & FALLOC_FL_PUNCH_HOLE) { + ret = ext4_punch_hole(file, offset, len); + goto exit; + } + if (mode & FALLOC_FL_COLLAPSE_RANGE) { - ret = ext4_collapse_range(inode, offset, len); + ret = ext4_collapse_range(file, offset, len); goto exit; } if (mode & FALLOC_FL_INSERT_RANGE) { - ret = ext4_insert_range(inode, offset, len); + ret = ext4_insert_range(file, offset, len); goto exit; } @@ -4746,6 +4752,10 @@ /* Wait all existing dio workers, newcomers will block on i_mutex */ inode_dio_wait(inode); + ret = file_modified(file); + if (ret) + goto out; + ret = ext4_alloc_file_blocks(file, lblk, max_blocks, new_size, flags); if (ret) goto out; @@ -5248,8 +5258,9 @@ * This implements the fallocate's collapse range functionality for ext4 * Returns: 0 and non-zero on error. */ -static int ext4_collapse_range(struct inode *inode, loff_t offset, loff_t len) +static int ext4_collapse_range(struct file *file, loff_t offset, loff_t len) { + struct inode *inode = file_inode(file); struct super_block *sb = inode->i_sb; struct address_space *mapping = inode->i_mapping; ext4_lblk_t punch_start, punch_stop; @@ -5301,6 +5312,10 @@ /* Wait for existing dio to complete */ inode_dio_wait(inode); + ret = file_modified(file); + if (ret) + goto out_mutex; + /* * Prevent page faults from reinstantiating pages we have released from * page cache. @@ -5394,8 +5409,9 @@ * by len bytes. * Returns 0 on success, error otherwise. */ -static int ext4_insert_range(struct inode *inode, loff_t offset, loff_t len) +static int ext4_insert_range(struct file *file, loff_t offset, loff_t len) { + struct inode *inode = file_inode(file); struct super_block *sb = inode->i_sb; struct address_space *mapping = inode->i_mapping; handle_t *handle; @@ -5452,6 +5468,10 @@ /* Wait for existing dio to complete */ inode_dio_wait(inode); + ret = file_modified(file); + if (ret) + goto out_mutex; + /* * Prevent page faults from reinstantiating pages we have released from * page cache. diff -u linux-intel-iotg-5.15-5.15.0/fs/ext4/inline.c linux-intel-iotg-5.15-5.15.0/fs/ext4/inline.c --- linux-intel-iotg-5.15-5.15.0/fs/ext4/inline.c +++ linux-intel-iotg-5.15-5.15.0/fs/ext4/inline.c @@ -2011,6 +2011,18 @@ if (!ext4_has_inline_data(inode)) { ext4_clear_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA); return 0; + } else if (!ext4_test_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA)) { + /* + * Inode has inline data but EXT4_STATE_MAY_INLINE_DATA is + * cleared. This means we are in the middle of moving of + * inline data to delay allocated block. Just force writeout + * here to finish conversion. + */ + error = filemap_flush(inode->i_mapping); + if (error) + return error; + if (!ext4_has_inline_data(inode)) + return 0; } needed_blocks = ext4_writepage_trans_blocks(inode); diff -u linux-intel-iotg-5.15-5.15.0/fs/ext4/inode.c linux-intel-iotg-5.15-5.15.0/fs/ext4/inode.c --- linux-intel-iotg-5.15-5.15.0/fs/ext4/inode.c +++ linux-intel-iotg-5.15-5.15.0/fs/ext4/inode.c @@ -3939,8 +3939,9 @@ * Returns: 0 on success or negative on failure */ -int ext4_punch_hole(struct inode *inode, loff_t offset, loff_t length) +int ext4_punch_hole(struct file *file, loff_t offset, loff_t length) { + struct inode *inode = file_inode(file); struct super_block *sb = inode->i_sb; ext4_lblk_t first_block, stop_block; struct address_space *mapping = inode->i_mapping; @@ -3952,15 +3953,6 @@ trace_ext4_punch_hole(inode, offset, length, 0); - ext4_clear_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA); - if (ext4_has_inline_data(inode)) { - filemap_invalidate_lock(mapping); - ret = ext4_convert_inline_data(inode); - filemap_invalidate_unlock(mapping); - if (ret) - return ret; - } - /* * Write out all dirty pages to avoid race conditions * Then release them. @@ -4011,6 +4003,10 @@ /* Wait all existing dio workers, newcomers will block on i_mutex */ inode_dio_wait(inode); + ret = file_modified(file); + if (ret) + goto out_mutex; + /* * Prevent page faults from reinstantiating pages we have released from * page cache. @@ -5368,6 +5364,7 @@ if (attr->ia_valid & ATTR_SIZE) { handle_t *handle; loff_t oldsize = inode->i_size; + loff_t old_disksize; int shrink = (attr->ia_size < inode->i_size); if (!(ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))) { @@ -5441,6 +5438,7 @@ inode->i_sb->s_blocksize_bits); down_write(&EXT4_I(inode)->i_data_sem); + old_disksize = EXT4_I(inode)->i_disksize; EXT4_I(inode)->i_disksize = attr->ia_size; rc = ext4_mark_inode_dirty(handle, inode); if (!error) @@ -5452,6 +5450,8 @@ */ if (!error) i_size_write(inode, attr->ia_size); + else + EXT4_I(inode)->i_disksize = old_disksize; up_write(&EXT4_I(inode)->i_data_sem); ext4_journal_stop(handle); if (error) diff -u linux-intel-iotg-5.15-5.15.0/fs/ext4/mballoc.c linux-intel-iotg-5.15-5.15.0/fs/ext4/mballoc.c --- linux-intel-iotg-5.15-5.15.0/fs/ext4/mballoc.c +++ linux-intel-iotg-5.15-5.15.0/fs/ext4/mballoc.c @@ -6378,6 +6378,7 @@ * @start: first group block to examine * @max: last group block to examine * @minblocks: minimum extent block count + * @set_trimmed: set the trimmed flag if at least one block is trimmed * * ext4_trim_all_free walks through group's block bitmap searching for free * extents. When the free extent is found, mark it as used in group buddy @@ -6387,7 +6388,7 @@ static ext4_grpblk_t ext4_trim_all_free(struct super_block *sb, ext4_group_t group, ext4_grpblk_t start, ext4_grpblk_t max, - ext4_grpblk_t minblocks) + ext4_grpblk_t minblocks, bool set_trimmed) { struct ext4_buddy e4b; int ret; @@ -6406,7 +6407,7 @@ if (!EXT4_MB_GRP_WAS_TRIMMED(e4b.bd_info) || minblocks < atomic_read(&EXT4_SB(sb)->s_last_trim_minblks)) { ret = ext4_try_to_trim_range(sb, &e4b, start, max, minblocks); - if (ret >= 0) + if (ret >= 0 && set_trimmed) EXT4_MB_GRP_SET_TRIMMED(e4b.bd_info); } else { ret = 0; @@ -6443,6 +6444,7 @@ ext4_fsblk_t first_data_blk = le32_to_cpu(EXT4_SB(sb)->s_es->s_first_data_block); ext4_fsblk_t max_blks = ext4_blocks_count(EXT4_SB(sb)->s_es); + bool whole_group, eof = false; int ret = 0; start = range->start >> sb->s_blocksize_bits; @@ -6461,8 +6463,10 @@ if (minlen > EXT4_CLUSTERS_PER_GROUP(sb)) goto out; } - if (end >= max_blks) + if (end >= max_blks - 1) { end = max_blks - 1; + eof = true; + } if (end <= first_data_blk) goto out; if (start < first_data_blk) @@ -6476,6 +6480,7 @@ /* end now represents the last cluster to discard in this group */ end = EXT4_CLUSTERS_PER_GROUP(sb) - 1; + whole_group = true; for (group = first_group; group <= last_group; group++) { grp = ext4_get_group_info(sb, group); @@ -6492,12 +6497,13 @@ * change it for the last group, note that last_cluster is * already computed earlier by ext4_get_group_no_and_offset() */ - if (group == last_group) + if (group == last_group) { end = last_cluster; - + whole_group = eof ? true : end == EXT4_CLUSTERS_PER_GROUP(sb) - 1; + } if (grp->bb_free >= minlen) { cnt = ext4_trim_all_free(sb, group, first_cluster, - end, minlen); + end, minlen, whole_group); if (cnt < 0) { ret = cnt; break; diff -u linux-intel-iotg-5.15-5.15.0/fs/ext4/namei.c linux-intel-iotg-5.15-5.15.0/fs/ext4/namei.c --- linux-intel-iotg-5.15-5.15.0/fs/ext4/namei.c +++ linux-intel-iotg-5.15-5.15.0/fs/ext4/namei.c @@ -277,9 +277,9 @@ struct dx_hash_info *hinfo, struct dx_frame *frame); static void dx_release(struct dx_frame *frames); -static int dx_make_map(struct inode *dir, struct ext4_dir_entry_2 *de, - unsigned blocksize, struct dx_hash_info *hinfo, - struct dx_map_entry map[]); +static int dx_make_map(struct inode *dir, struct buffer_head *bh, + struct dx_hash_info *hinfo, + struct dx_map_entry *map_tail); static void dx_sort_map(struct dx_map_entry *map, unsigned count); static struct ext4_dir_entry_2 *dx_move_dirents(struct inode *dir, char *from, char *to, struct dx_map_entry *offsets, @@ -777,12 +777,14 @@ dx_probe(struct ext4_filename *fname, struct inode *dir, struct dx_hash_info *hinfo, struct dx_frame *frame_in) { - unsigned count, indirect; + unsigned count, indirect, level, i; struct dx_entry *at, *entries, *p, *q, *m; struct dx_root *root; struct dx_frame *frame = frame_in; struct dx_frame *ret_err = ERR_PTR(ERR_BAD_DX_DIR); u32 hash; + ext4_lblk_t block; + ext4_lblk_t blocks[EXT4_HTREE_LEVEL]; memset(frame_in, 0, EXT4_HTREE_LEVEL * sizeof(frame_in[0])); frame->bh = ext4_read_dirblock(dir, 0, INDEX); @@ -854,6 +856,8 @@ } dxtrace(printk("Look up %x", hash)); + level = 0; + blocks[0] = 0; while (1) { count = dx_get_count(entries); if (!count || count > dx_get_limit(entries)) { @@ -882,15 +886,27 @@ dx_get_block(at))); frame->entries = entries; frame->at = at; - if (!indirect--) + + block = dx_get_block(at); + for (i = 0; i <= level; i++) { + if (blocks[i] == block) { + ext4_warning_inode(dir, + "dx entry: tree cycle block %u points back to block %u", + blocks[level], block); + goto fail; + } + } + if (++level > indirect) return frame; + blocks[level] = block; frame++; - frame->bh = ext4_read_dirblock(dir, dx_get_block(at), INDEX); + frame->bh = ext4_read_dirblock(dir, block, INDEX); if (IS_ERR(frame->bh)) { ret_err = (struct dx_frame *) frame->bh; frame->bh = NULL; goto fail; } + entries = ((struct dx_node *) frame->bh->b_data)->entries; if (dx_get_limit(entries) != dx_node_limit(dir)) { @@ -1249,15 +1265,23 @@ * Create map of hash values, offsets, and sizes, stored at end of block. * Returns number of entries mapped. */ -static int dx_make_map(struct inode *dir, struct ext4_dir_entry_2 *de, - unsigned blocksize, struct dx_hash_info *hinfo, +static int dx_make_map(struct inode *dir, struct buffer_head *bh, + struct dx_hash_info *hinfo, struct dx_map_entry *map_tail) { int count = 0; - char *base = (char *) de; + struct ext4_dir_entry_2 *de = (struct ext4_dir_entry_2 *)bh->b_data; + unsigned int buflen = bh->b_size; + char *base = bh->b_data; struct dx_hash_info h = *hinfo; - while ((char *) de < base + blocksize) { + if (ext4_has_metadata_csum(dir->i_sb)) + buflen -= sizeof(struct ext4_dir_entry_tail); + + while ((char *) de < base + buflen) { + if (ext4_check_dir_entry(dir, NULL, de, bh, base, buflen, + ((char *)de) - base)) + return -EFSCORRUPTED; if (de->name_len && de->inode) { if (ext4_hash_in_dirent(dir)) h.hash = EXT4_DIRENT_HASH(de); @@ -1270,8 +1294,7 @@ count++; cond_resched(); } - /* XXX: do we need to check rec_len == 0 case? -Chris */ - de = ext4_next_entry(de, blocksize); + de = ext4_next_entry(de, dir->i_sb->s_blocksize); } return count; } @@ -1466,10 +1489,10 @@ de = (struct ext4_dir_entry_2 *)search_buf; dlimit = search_buf + buf_size; - while ((char *) de < dlimit) { + while ((char *) de < dlimit - EXT4_BASE_DIR_LEN) { /* this code is executed quadratically often */ /* do minimal checking `by hand' */ - if ((char *) de + de->name_len <= dlimit && + if (de->name + de->name_len <= dlimit && ext4_match(dir, fname, de)) { /* found a match - just to be sure, do * a full check */ @@ -1943,8 +1966,11 @@ /* create map in the end of data2 block */ map = (struct dx_map_entry *) (data2 + blocksize); - count = dx_make_map(dir, (struct ext4_dir_entry_2 *) data1, - blocksize, hinfo, map); + count = dx_make_map(dir, *bh, hinfo, map); + if (count < 0) { + err = count; + goto journal_error; + } map -= count; dx_sort_map(map, count); /* Ensure that neither split block is over half full */ @@ -3455,6 +3481,9 @@ struct buffer_head *bh; if (!ext4_has_inline_data(inode)) { + struct ext4_dir_entry_2 *de; + unsigned int offset; + /* The first directory block must not be a hole, so * treat it as DIRENT_HTREE */ @@ -3463,9 +3492,30 @@ *retval = PTR_ERR(bh); return NULL; } - *parent_de = ext4_next_entry( - (struct ext4_dir_entry_2 *)bh->b_data, - inode->i_sb->s_blocksize); + + de = (struct ext4_dir_entry_2 *) bh->b_data; + if (ext4_check_dir_entry(inode, NULL, de, bh, bh->b_data, + bh->b_size, 0) || + le32_to_cpu(de->inode) != inode->i_ino || + strcmp(".", de->name)) { + EXT4_ERROR_INODE(inode, "directory missing '.'"); + brelse(bh); + *retval = -EFSCORRUPTED; + return NULL; + } + offset = ext4_rec_len_from_disk(de->rec_len, + inode->i_sb->s_blocksize); + de = ext4_next_entry(de, inode->i_sb->s_blocksize); + if (ext4_check_dir_entry(inode, NULL, de, bh, bh->b_data, + bh->b_size, offset) || + le32_to_cpu(de->inode) == 0 || strcmp("..", de->name)) { + EXT4_ERROR_INODE(inode, "directory missing '..'"); + brelse(bh); + *retval = -EFSCORRUPTED; + return NULL; + } + *parent_de = de; + return bh; } diff -u linux-intel-iotg-5.15-5.15.0/fs/ext4/super.c linux-intel-iotg-5.15-5.15.0/fs/ext4/super.c --- linux-intel-iotg-5.15-5.15.0/fs/ext4/super.c +++ linux-intel-iotg-5.15-5.15.0/fs/ext4/super.c @@ -1167,20 +1167,25 @@ int aborted = 0; int i, err; - ext4_unregister_li_request(sb); - ext4_quota_off_umount(sb); - - flush_work(&sbi->s_error_work); - destroy_workqueue(sbi->rsv_conversion_wq); - ext4_release_orphan_info(sb); - /* * Unregister sysfs before destroying jbd2 journal. * Since we could still access attr_journal_task attribute via sysfs * path which could have sbi->s_journal->j_task as NULL + * Unregister sysfs before flush sbi->s_error_work. + * Since user may read /proc/fs/ext4/xx/mb_groups during umount, If + * read metadata verify failed then will queue error work. + * flush_stashed_error_work will call start_this_handle may trigger + * BUG_ON. */ ext4_unregister_sysfs(sb); + ext4_unregister_li_request(sb); + ext4_quota_off_umount(sb); + + flush_work(&sbi->s_error_work); + destroy_workqueue(sbi->rsv_conversion_wq); + ext4_release_orphan_info(sb); + if (sbi->s_journal) { aborted = is_journal_aborted(sbi->s_journal); err = jbd2_journal_destroy(sbi->s_journal); @@ -1929,6 +1934,7 @@ MOPT_EXT4_ONLY | MOPT_CLEAR}, {Opt_warn_on_error, EXT4_MOUNT_WARN_ON_ERROR, MOPT_SET}, {Opt_nowarn_on_error, EXT4_MOUNT_WARN_ON_ERROR, MOPT_CLEAR}, + {Opt_commit, 0, MOPT_NO_EXT2}, {Opt_nojournal_checksum, EXT4_MOUNT_JOURNAL_CHECKSUM, MOPT_EXT4_ONLY | MOPT_CLEAR}, {Opt_journal_checksum, EXT4_MOUNT_JOURNAL_CHECKSUM, @@ -2053,6 +2059,12 @@ struct ext4_sb_info *sbi = EXT4_SB(sb); int err; + if (!ext4_has_feature_encrypt(sb)) { + ext4_msg(sb, KERN_WARNING, + "test_dummy_encryption requires encrypt feature"); + return -1; + } + /* * This mount option is just for testing, and it's not worthwhile to * implement the extra complexity (e.g. RCU protection) that would be @@ -2080,11 +2092,13 @@ return -1; } ext4_msg(sb, KERN_WARNING, "Test dummy encryption mode enabled"); + return 1; #else ext4_msg(sb, KERN_WARNING, - "Test dummy encryption mount option ignored"); + "test_dummy_encryption option not supported"); + return -1; + #endif - return 1; } struct ext4_parsed_options { @@ -3697,9 +3711,11 @@ ext4_fsblk_t first_block, last_block, b; ext4_group_t i, ngroups = ext4_get_groups_count(sb); int s, j, count = 0; + int has_super = ext4_bg_has_super(sb, grp); if (!ext4_has_feature_bigalloc(sb)) - return (ext4_bg_has_super(sb, grp) + ext4_bg_num_gdb(sb, grp) + + return (has_super + ext4_bg_num_gdb(sb, grp) + + (has_super ? le16_to_cpu(sbi->s_es->s_reserved_gdt_blocks) : 0) + sbi->s_itb_per_group + 2); first_block = le32_to_cpu(sbi->s_es->s_first_data_block) + @@ -4383,7 +4399,7 @@ sbi->s_inodes_per_block; sbi->s_desc_per_block = blocksize / EXT4_DESC_SIZE(sb); sbi->s_sbh = bh; - sbi->s_mount_state = le16_to_cpu(es->s_state); + sbi->s_mount_state = le16_to_cpu(es->s_state) & ~EXT4_FC_REPLAY; sbi->s_addr_per_block_bits = ilog2(EXT4_ADDR_PER_BLOCK(sb)); sbi->s_desc_per_block_bits = ilog2(EXT4_DESC_PER_BLOCK(sb)); @@ -4776,19 +4792,22 @@ goto failed_mount_wq; } - if (DUMMY_ENCRYPTION_ENABLED(sbi) && !sb_rdonly(sb) && - !ext4_has_feature_encrypt(sb)) { - ext4_set_feature_encrypt(sb); - ext4_commit_super(sb); - } - /* * Get the # of file system overhead blocks from the * superblock if present. */ - if (es->s_overhead_clusters) - sbi->s_overhead = le32_to_cpu(es->s_overhead_clusters); - else { + sbi->s_overhead = le32_to_cpu(es->s_overhead_clusters); + /* ignore the precalculated value if it is ridiculous */ + if (sbi->s_overhead > ext4_blocks_count(es)) + sbi->s_overhead = 0; + /* + * If the bigalloc feature is not enabled recalculating the + * overhead doesn't take long, so we might as well just redo + * it to make sure we are using the correct value. + */ + if (!ext4_has_feature_bigalloc(sb)) + sbi->s_overhead = 0; + if (sbi->s_overhead == 0) { err = ext4_calculate_overhead(sb); if (err) goto failed_mount_wq; @@ -5920,7 +5939,8 @@ if (err) goto restore_opts; } - sbi->s_mount_state = le16_to_cpu(es->s_state); + sbi->s_mount_state = (le16_to_cpu(es->s_state) & + ~EXT4_FC_REPLAY); err = ext4_setup_super(sb, es, 0); if (err) diff -u linux-intel-iotg-5.15-5.15.0/fs/f2fs/checkpoint.c linux-intel-iotg-5.15-5.15.0/fs/f2fs/checkpoint.c --- linux-intel-iotg-5.15-5.15.0/fs/f2fs/checkpoint.c +++ linux-intel-iotg-5.15-5.15.0/fs/f2fs/checkpoint.c @@ -653,7 +653,7 @@ return PTR_ERR(inode); } - err = dquot_initialize(inode); + err = f2fs_dquot_initialize(inode); if (err) { iput(inode); goto err_out; diff -u linux-intel-iotg-5.15-5.15.0/fs/f2fs/f2fs.h linux-intel-iotg-5.15-5.15.0/fs/f2fs/f2fs.h --- linux-intel-iotg-5.15-5.15.0/fs/f2fs/f2fs.h +++ linux-intel-iotg-5.15-5.15.0/fs/f2fs/f2fs.h @@ -55,6 +55,7 @@ FAULT_DISCARD, FAULT_WRITE_IO, FAULT_SLAB_ALLOC, + FAULT_DQUOT_INIT, FAULT_MAX, }; @@ -487,11 +488,11 @@ #ifdef CONFIG_UNICODE /* * For casefolded directories: the casefolded name, but it's left NULL - * if the original name is not valid Unicode, if the directory is both - * casefolded and encrypted and its encryption key is unavailable, or if - * the filesystem is doing an internal operation where usr_fname is also - * NULL. In all these cases we fall back to treating the name as an - * opaque byte sequence. + * if the original name is not valid Unicode, if the original name is + * "." or "..", if the directory is both casefolded and encrypted and + * its encryption key is unavailable, or if the filesystem is doing an + * internal operation where usr_fname is also NULL. In all these cases + * we fall back to treating the name as an opaque byte sequence. */ struct fscrypt_str cf_name; #endif @@ -1078,8 +1079,8 @@ */ #define PAGE_TYPE_OF_BIO(type) ((type) > META ? META : (type)) enum page_type { - DATA, - NODE, + DATA = 0, + NODE = 1, /* should not change this */ META, NR_PAGE_TYPE, META_FLUSH, @@ -2486,11 +2487,17 @@ { spin_lock(&sbi->stat_lock); - f2fs_bug_on(sbi, !sbi->total_valid_block_count); - f2fs_bug_on(sbi, !sbi->total_valid_node_count); + if (unlikely(!sbi->total_valid_block_count || + !sbi->total_valid_node_count)) { + f2fs_warn(sbi, "dec_valid_node_count: inconsistent block counts, total_valid_block:%u, total_valid_node:%u", + sbi->total_valid_block_count, + sbi->total_valid_node_count); + set_sbi_flag(sbi, SBI_NEED_FSCK); + } else { + sbi->total_valid_block_count--; + sbi->total_valid_node_count--; + } - sbi->total_valid_node_count--; - sbi->total_valid_block_count--; if (sbi->reserved_blocks && sbi->current_reserved_blocks < sbi->reserved_blocks) sbi->current_reserved_blocks++; @@ -3375,6 +3382,7 @@ */ int f2fs_inode_dirtied(struct inode *inode, bool sync); void f2fs_inode_synced(struct inode *inode); +int f2fs_dquot_initialize(struct inode *inode); int f2fs_enable_quota_files(struct f2fs_sb_info *sbi, bool rdonly); int f2fs_quota_sync(struct super_block *sb, int type); loff_t max_file_blocks(struct inode *inode); @@ -3908,6 +3916,7 @@ * inline.c */ bool f2fs_may_inline_data(struct inode *inode); +bool f2fs_sanity_check_inline_data(struct inode *inode); bool f2fs_may_inline_dentry(struct inode *inode); void f2fs_do_read_inline_data(struct page *page, struct page *ipage); void f2fs_truncate_inline_inode(struct inode *inode, diff -u linux-intel-iotg-5.15-5.15.0/fs/f2fs/file.c linux-intel-iotg-5.15-5.15.0/fs/f2fs/file.c --- linux-intel-iotg-5.15-5.15.0/fs/f2fs/file.c +++ linux-intel-iotg-5.15-5.15.0/fs/f2fs/file.c @@ -786,7 +786,7 @@ return -EIO; } - err = dquot_initialize(inode); + err = f2fs_dquot_initialize(inode); if (err) return err; @@ -916,7 +916,7 @@ return err; if (is_quota_modification(inode, attr)) { - err = dquot_initialize(inode); + err = f2fs_dquot_initialize(inode); if (err) return err; } @@ -1436,11 +1436,19 @@ ret = -ENOSPC; break; } - if (dn->data_blkaddr != NEW_ADDR) { - f2fs_invalidate_blocks(sbi, dn->data_blkaddr); - dn->data_blkaddr = NEW_ADDR; - f2fs_set_data_blkaddr(dn); + + if (dn->data_blkaddr == NEW_ADDR) + continue; + + if (!f2fs_is_valid_blkaddr(sbi, dn->data_blkaddr, + DATA_GENERIC_ENHANCE)) { + ret = -EFSCORRUPTED; + break; } + + f2fs_invalidate_blocks(sbi, dn->data_blkaddr); + dn->data_blkaddr = NEW_ADDR; + f2fs_set_data_blkaddr(dn); } f2fs_update_extent_cache_range(dn, start, 0, index - start); @@ -1760,6 +1768,10 @@ inode_lock(inode); + ret = file_modified(file); + if (ret) + goto out; + if (mode & FALLOC_FL_PUNCH_HOLE) { if (offset >= inode->i_size) goto out; @@ -3023,7 +3035,7 @@ } f2fs_put_page(ipage, 1); - err = dquot_initialize(inode); + err = f2fs_dquot_initialize(inode); if (err) return err; @@ -4279,7 +4291,7 @@ size_t target_size = 0; int err; - if (iov_iter_fault_in_readable(from, iov_iter_count(from))) + if (fault_in_iov_iter_readable(from, iov_iter_count(from))) set_inode_flag(inode, FI_NO_PREALLOC); if ((iocb->ki_flags & IOCB_NOWAIT)) { diff -u linux-intel-iotg-5.15-5.15.0/fs/f2fs/inode.c linux-intel-iotg-5.15-5.15.0/fs/f2fs/inode.c --- linux-intel-iotg-5.15-5.15.0/fs/f2fs/inode.c +++ linux-intel-iotg-5.15-5.15.0/fs/f2fs/inode.c @@ -276,8 +276,7 @@ } } - if (f2fs_has_inline_data(inode) && - (!S_ISREG(inode->i_mode) && !S_ISLNK(inode->i_mode))) { + if (f2fs_sanity_check_inline_data(inode)) { set_sbi_flag(sbi, SBI_NEED_FSCK); f2fs_warn(sbi, "%s: inode (ino=%lx, mode=%u) should not have inline_data, run fsck to fix", __func__, inode->i_ino, inode->i_mode); @@ -759,7 +758,7 @@ if (inode->i_nlink || is_bad_inode(inode)) goto no_delete; - err = dquot_initialize(inode); + err = f2fs_dquot_initialize(inode); if (err) { err = 0; set_sbi_flag(sbi, SBI_QUOTA_NEED_REPAIR); @@ -786,8 +785,22 @@ f2fs_lock_op(sbi); err = f2fs_remove_inode_page(inode); f2fs_unlock_op(sbi); - if (err == -ENOENT) + if (err == -ENOENT) { err = 0; + + /* + * in fuzzed image, another node may has the same + * block address as inode's, if it was truncated + * previously, truncation of inode node will fail. + */ + if (is_inode_flag_set(inode, FI_DIRTY_INODE)) { + f2fs_warn(F2FS_I_SB(inode), + "f2fs_evict_inode: inconsistent node id, ino:%lu", + inode->i_ino); + f2fs_inode_synced(inode); + set_sbi_flag(sbi, SBI_NEED_FSCK); + } + } } /* give more chances, if ENOMEM case */ diff -u linux-intel-iotg-5.15-5.15.0/fs/f2fs/namei.c linux-intel-iotg-5.15-5.15.0/fs/f2fs/namei.c --- linux-intel-iotg-5.15-5.15.0/fs/f2fs/namei.c +++ linux-intel-iotg-5.15-5.15.0/fs/f2fs/namei.c @@ -74,7 +74,7 @@ if (err) goto fail_drop; - err = dquot_initialize(inode); + err = f2fs_dquot_initialize(inode); if (err) goto fail_drop; @@ -345,7 +345,7 @@ if (!f2fs_is_checkpoint_ready(sbi)) return -ENOSPC; - err = dquot_initialize(dir); + err = f2fs_dquot_initialize(dir); if (err) return err; @@ -404,7 +404,7 @@ F2FS_I(old_dentry->d_inode)->i_projid))) return -EXDEV; - err = dquot_initialize(dir); + err = f2fs_dquot_initialize(dir); if (err) return err; @@ -460,7 +460,14 @@ return 0; } - err = dquot_initialize(dir); + if (!S_ISDIR(dir->i_mode)) { + f2fs_err(sbi, "inconsistent inode status, skip recovering inline_dots inode (ino:%lu, i_mode:%u, pino:%u)", + dir->i_ino, dir->i_mode, pino); + set_sbi_flag(sbi, SBI_NEED_FSCK); + return -ENOTDIR; + } + + err = f2fs_dquot_initialize(dir); if (err) return err; @@ -598,10 +605,10 @@ goto fail; } - err = dquot_initialize(dir); + err = f2fs_dquot_initialize(dir); if (err) goto fail; - err = dquot_initialize(inode); + err = f2fs_dquot_initialize(inode); if (err) goto fail; @@ -675,7 +682,7 @@ if (err) return err; - err = dquot_initialize(dir); + err = f2fs_dquot_initialize(dir); if (err) return err; @@ -746,7 +753,7 @@ if (unlikely(f2fs_cp_error(sbi))) return -EIO; - err = dquot_initialize(dir); + err = f2fs_dquot_initialize(dir); if (err) return err; @@ -803,7 +810,7 @@ if (!f2fs_is_checkpoint_ready(sbi)) return -ENOSPC; - err = dquot_initialize(dir); + err = f2fs_dquot_initialize(dir); if (err) return err; @@ -841,7 +848,7 @@ struct inode *inode; int err; - err = dquot_initialize(dir); + err = f2fs_dquot_initialize(dir); if (err) return err; @@ -965,16 +972,16 @@ return err; } - err = dquot_initialize(old_dir); + err = f2fs_dquot_initialize(old_dir); if (err) goto out; - err = dquot_initialize(new_dir); + err = f2fs_dquot_initialize(new_dir); if (err) goto out; if (new_inode) { - err = dquot_initialize(new_inode); + err = f2fs_dquot_initialize(new_inode); if (err) goto out; } @@ -1138,11 +1145,11 @@ F2FS_I(new_dentry->d_inode)->i_projid))) return -EXDEV; - err = dquot_initialize(old_dir); + err = f2fs_dquot_initialize(old_dir); if (err) goto out; - err = dquot_initialize(new_dir); + err = f2fs_dquot_initialize(new_dir); if (err) goto out; diff -u linux-intel-iotg-5.15-5.15.0/fs/f2fs/segment.c linux-intel-iotg-5.15-5.15.0/fs/f2fs/segment.c --- linux-intel-iotg-5.15-5.15.0/fs/f2fs/segment.c +++ linux-intel-iotg-5.15-5.15.0/fs/f2fs/segment.c @@ -356,16 +356,19 @@ struct f2fs_sb_info *sbi = F2FS_I_SB(inode); struct list_head *head = &fi->inmem_pages; struct inmem_pages *cur = NULL; + struct inmem_pages *tmp; f2fs_bug_on(sbi, !page_private_atomic(page)); mutex_lock(&fi->inmem_lock); - list_for_each_entry(cur, head, list) { - if (cur->page == page) + list_for_each_entry(tmp, head, list) { + if (tmp->page == page) { + cur = tmp; break; + } } - f2fs_bug_on(sbi, list_empty(head) || cur->page != page); + f2fs_bug_on(sbi, !cur); list_del(&cur->list); mutex_unlock(&fi->inmem_lock); @@ -4508,7 +4511,7 @@ unsigned int i, start, end; unsigned int readed, start_blk = 0; int err = 0; - block_t total_node_blocks = 0; + block_t sit_valid_blocks[2] = {0, 0}; do { readed = f2fs_ra_meta_pages(sbi, start_blk, BIO_MAX_VECS, @@ -4533,8 +4536,8 @@ if (err) return err; seg_info_from_raw_sit(se, &sit); - if (IS_NODESEG(se->type)) - total_node_blocks += se->valid_blocks; + + sit_valid_blocks[SE_PAGETYPE(se)] += se->valid_blocks; if (f2fs_block_unit_discard(sbi)) { /* build discard map only one time */ @@ -4574,15 +4577,15 @@ sit = sit_in_journal(journal, i); old_valid_blocks = se->valid_blocks; - if (IS_NODESEG(se->type)) - total_node_blocks -= old_valid_blocks; + + sit_valid_blocks[SE_PAGETYPE(se)] -= old_valid_blocks; err = check_block_count(sbi, start, &sit); if (err) break; seg_info_from_raw_sit(se, &sit); - if (IS_NODESEG(se->type)) - total_node_blocks += se->valid_blocks; + + sit_valid_blocks[SE_PAGETYPE(se)] += se->valid_blocks; if (f2fs_block_unit_discard(sbi)) { if (is_set_ckpt_flags(sbi, CP_TRIMMED_FLAG)) { @@ -4604,13 +4607,24 @@ } up_read(&curseg->journal_rwsem); - if (!err && total_node_blocks != valid_node_count(sbi)) { + if (err) + return err; + + if (sit_valid_blocks[NODE] != valid_node_count(sbi)) { f2fs_err(sbi, "SIT is corrupted node# %u vs %u", - total_node_blocks, valid_node_count(sbi)); - err = -EFSCORRUPTED; + sit_valid_blocks[NODE], valid_node_count(sbi)); + return -EFSCORRUPTED; + } + + if (sit_valid_blocks[DATA] + sit_valid_blocks[NODE] > + valid_user_blocks(sbi)) { + f2fs_err(sbi, "SIT is corrupted data# %u %u vs %u", + sit_valid_blocks[DATA], sit_valid_blocks[NODE], + valid_user_blocks(sbi)); + return -EFSCORRUPTED; } - return err; + return 0; } static void init_free_segmap(struct f2fs_sb_info *sbi) diff -u linux-intel-iotg-5.15-5.15.0/fs/f2fs/segment.h linux-intel-iotg-5.15-5.15.0/fs/f2fs/segment.h --- linux-intel-iotg-5.15-5.15.0/fs/f2fs/segment.h +++ linux-intel-iotg-5.15-5.15.0/fs/f2fs/segment.h @@ -24,6 +24,7 @@ #define IS_DATASEG(t) ((t) <= CURSEG_COLD_DATA) #define IS_NODESEG(t) ((t) >= CURSEG_HOT_NODE && (t) <= CURSEG_COLD_NODE) +#define SE_PAGETYPE(se) ((IS_NODESEG((se)->type) ? NODE : DATA)) static inline void sanity_check_seg_type(struct f2fs_sb_info *sbi, unsigned short seg_type) @@ -571,11 +572,10 @@ return GET_SEC_FROM_SEG(sbi, reserved_segments(sbi)); } -static inline bool has_curseg_enough_space(struct f2fs_sb_info *sbi) +static inline bool has_curseg_enough_space(struct f2fs_sb_info *sbi, + unsigned int node_blocks, unsigned int dent_blocks) { - unsigned int node_blocks = get_pages(sbi, F2FS_DIRTY_NODES) + - get_pages(sbi, F2FS_DIRTY_DENTS); - unsigned int dent_blocks = get_pages(sbi, F2FS_DIRTY_DENTS); + unsigned int segno, left_blocks; int i; @@ -601,19 +601,28 @@ static inline bool has_not_enough_free_secs(struct f2fs_sb_info *sbi, int freed, int needed) { - int node_secs = get_blocktype_secs(sbi, F2FS_DIRTY_NODES); - int dent_secs = get_blocktype_secs(sbi, F2FS_DIRTY_DENTS); - int imeta_secs = get_blocktype_secs(sbi, F2FS_DIRTY_IMETA); + unsigned int total_node_blocks = get_pages(sbi, F2FS_DIRTY_NODES) + + get_pages(sbi, F2FS_DIRTY_DENTS) + + get_pages(sbi, F2FS_DIRTY_IMETA); + unsigned int total_dent_blocks = get_pages(sbi, F2FS_DIRTY_DENTS); + unsigned int node_secs = total_node_blocks / BLKS_PER_SEC(sbi); + unsigned int dent_secs = total_dent_blocks / BLKS_PER_SEC(sbi); + unsigned int node_blocks = total_node_blocks % BLKS_PER_SEC(sbi); + unsigned int dent_blocks = total_dent_blocks % BLKS_PER_SEC(sbi); + unsigned int free, need_lower, need_upper; if (unlikely(is_sbi_flag_set(sbi, SBI_POR_DOING))) return false; - if (free_sections(sbi) + freed == reserved_sections(sbi) + needed && - has_curseg_enough_space(sbi)) + 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); + + if (free > need_upper) return false; - return (free_sections(sbi) + freed) <= - (node_secs + 2 * dent_secs + imeta_secs + - reserved_sections(sbi) + needed); + else if (free <= need_lower) + return true; + return !has_curseg_enough_space(sbi, node_blocks, dent_blocks); } static inline bool f2fs_is_checkpoint_ready(struct f2fs_sb_info *sbi) diff -u linux-intel-iotg-5.15-5.15.0/fs/f2fs/super.c linux-intel-iotg-5.15-5.15.0/fs/f2fs/super.c --- linux-intel-iotg-5.15-5.15.0/fs/f2fs/super.c +++ linux-intel-iotg-5.15-5.15.0/fs/f2fs/super.c @@ -58,6 +58,7 @@ [FAULT_DISCARD] = "discard error", [FAULT_WRITE_IO] = "write IO error", [FAULT_SLAB_ALLOC] = "slab alloc", + [FAULT_DQUOT_INIT] = "dquot initialize", }; void f2fs_build_fault_attr(struct f2fs_sb_info *sbi, unsigned int rate, @@ -2535,6 +2536,16 @@ return len - towrite; } +int f2fs_dquot_initialize(struct inode *inode) +{ + if (time_to_inject(F2FS_I_SB(inode), FAULT_DQUOT_INIT)) { + f2fs_show_injection_info(F2FS_I_SB(inode), FAULT_DQUOT_INIT); + return -ESRCH; + } + + return dquot_initialize(inode); +} + static struct dquot **f2fs_get_dquots(struct inode *inode) { return F2FS_I(inode)->i_dquot; @@ -2694,7 +2705,8 @@ if (!sb_has_quota_active(sb, cnt)) continue; - inode_lock(dqopt->files[cnt]); + if (!f2fs_sb_has_quota_ino(sbi)) + inode_lock(dqopt->files[cnt]); /* * do_quotactl @@ -2713,7 +2725,8 @@ up_read(&sbi->quota_sem); f2fs_unlock_op(sbi); - inode_unlock(dqopt->files[cnt]); + if (!f2fs_sb_has_quota_ino(sbi)) + inode_unlock(dqopt->files[cnt]); if (ret) break; @@ -2919,6 +2932,11 @@ .get_nextdqblk = dquot_get_next_dqblk, }; #else +int f2fs_dquot_initialize(struct inode *inode) +{ + return 0; +} + int f2fs_quota_sync(struct super_block *sb, int type) { return 0; diff -u linux-intel-iotg-5.15-5.15.0/fs/f2fs/xattr.c linux-intel-iotg-5.15-5.15.0/fs/f2fs/xattr.c --- linux-intel-iotg-5.15-5.15.0/fs/f2fs/xattr.c +++ linux-intel-iotg-5.15-5.15.0/fs/f2fs/xattr.c @@ -782,7 +782,7 @@ if (!f2fs_is_checkpoint_ready(sbi)) return -ENOSPC; - err = dquot_initialize(inode); + err = f2fs_dquot_initialize(inode); if (err) return err; diff -u linux-intel-iotg-5.15-5.15.0/fs/fuse/file.c linux-intel-iotg-5.15-5.15.0/fs/fuse/file.c --- linux-intel-iotg-5.15-5.15.0/fs/fuse/file.c +++ linux-intel-iotg-5.15-5.15.0/fs/fuse/file.c @@ -1164,7 +1164,7 @@ again: err = -EFAULT; - if (iov_iter_fault_in_readable(ii, bytes)) + if (fault_in_iov_iter_readable(ii, bytes)) break; err = -ENOMEM; diff -u linux-intel-iotg-5.15-5.15.0/fs/gfs2/bmap.c linux-intel-iotg-5.15-5.15.0/fs/gfs2/bmap.c --- linux-intel-iotg-5.15-5.15.0/fs/gfs2/bmap.c +++ linux-intel-iotg-5.15-5.15.0/fs/gfs2/bmap.c @@ -961,46 +961,6 @@ goto out; } -static int gfs2_write_lock(struct inode *inode) -{ - struct gfs2_inode *ip = GFS2_I(inode); - struct gfs2_sbd *sdp = GFS2_SB(inode); - int error; - - gfs2_holder_init(ip->i_gl, LM_ST_EXCLUSIVE, 0, &ip->i_gh); - error = gfs2_glock_nq(&ip->i_gh); - if (error) - goto out_uninit; - if (&ip->i_inode == sdp->sd_rindex) { - struct gfs2_inode *m_ip = GFS2_I(sdp->sd_statfs_inode); - - error = gfs2_glock_nq_init(m_ip->i_gl, LM_ST_EXCLUSIVE, - GL_NOCACHE, &m_ip->i_gh); - if (error) - goto out_unlock; - } - return 0; - -out_unlock: - gfs2_glock_dq(&ip->i_gh); -out_uninit: - gfs2_holder_uninit(&ip->i_gh); - return error; -} - -static void gfs2_write_unlock(struct inode *inode) -{ - struct gfs2_inode *ip = GFS2_I(inode); - struct gfs2_sbd *sdp = GFS2_SB(inode); - - if (&ip->i_inode == sdp->sd_rindex) { - struct gfs2_inode *m_ip = GFS2_I(sdp->sd_statfs_inode); - - gfs2_glock_dq_uninit(&m_ip->i_gh); - } - gfs2_glock_dq_uninit(&ip->i_gh); -} - static int gfs2_iomap_page_prepare(struct inode *inode, loff_t pos, unsigned len) { @@ -1118,11 +1078,6 @@ return ret; } -static inline bool gfs2_iomap_need_write_lock(unsigned flags) -{ - return (flags & IOMAP_WRITE) && !(flags & IOMAP_DIRECT); -} - static int gfs2_iomap_begin(struct inode *inode, loff_t pos, loff_t length, unsigned flags, struct iomap *iomap, struct iomap *srcmap) @@ -1135,12 +1090,6 @@ iomap->flags |= IOMAP_F_BUFFER_HEAD; trace_gfs2_iomap_start(ip, pos, length, flags); - if (gfs2_iomap_need_write_lock(flags)) { - ret = gfs2_write_lock(inode); - if (ret) - goto out; - } - ret = __gfs2_iomap_get(inode, pos, length, flags, iomap, &mp); if (ret) goto out_unlock; @@ -1168,10 +1117,7 @@ ret = gfs2_iomap_begin_write(inode, pos, length, flags, iomap, &mp); out_unlock: - if (ret && gfs2_iomap_need_write_lock(flags)) - gfs2_write_unlock(inode); release_metapath(&mp); -out: trace_gfs2_iomap_end(ip, iomap, ret); return ret; } @@ -1208,26 +1154,21 @@ if (length != written && (iomap->flags & IOMAP_F_NEW)) { /* Deallocate blocks that were just allocated. */ - loff_t blockmask = i_blocksize(inode) - 1; - loff_t end = (pos + length) & ~blockmask; + loff_t hstart = round_up(pos + written, i_blocksize(inode)); + loff_t hend = iomap->offset + iomap->length; - pos = (pos + written + blockmask) & ~blockmask; - if (pos < end) { - truncate_pagecache_range(inode, pos, end - 1); - punch_hole(ip, pos, end - pos); + if (hstart < hend) { + truncate_pagecache_range(inode, hstart, hend - 1); + punch_hole(ip, hstart, hend - hstart); } } if (unlikely(!written)) - goto out_unlock; + return 0; if (iomap->flags & IOMAP_F_SIZE_CHANGED) mark_inode_dirty(inode); set_bit(GLF_DIRTY, &ip->i_gl->gl_flags); - -out_unlock: - if (gfs2_iomap_need_write_lock(flags)) - gfs2_write_unlock(inode); return 0; } diff -u linux-intel-iotg-5.15-5.15.0/fs/gfs2/file.c linux-intel-iotg-5.15-5.15.0/fs/gfs2/file.c --- linux-intel-iotg-5.15-5.15.0/fs/gfs2/file.c +++ linux-intel-iotg-5.15-5.15.0/fs/gfs2/file.c @@ -777,27 +777,99 @@ return ret ? ret : ret1; } +static inline bool should_fault_in_pages(ssize_t ret, struct iov_iter *i, + size_t *prev_count, + size_t *window_size) +{ + char __user *p = i->iov[0].iov_base + i->iov_offset; + size_t count = iov_iter_count(i); + int pages = 1; + + if (likely(!count)) + return false; + if (ret <= 0 && ret != -EFAULT) + return false; + if (!iter_is_iovec(i)) + return false; + + if (*prev_count != count || !*window_size) { + int pages, nr_dirtied; + + pages = min_t(int, BIO_MAX_VECS, + DIV_ROUND_UP(iov_iter_count(i), PAGE_SIZE)); + nr_dirtied = max(current->nr_dirtied_pause - + current->nr_dirtied, 1); + pages = min(pages, nr_dirtied); + } + + *prev_count = count; + *window_size = (size_t)PAGE_SIZE * pages - offset_in_page(p); + return true; +} + static ssize_t gfs2_file_direct_read(struct kiocb *iocb, struct iov_iter *to, struct gfs2_holder *gh) { struct file *file = iocb->ki_filp; struct gfs2_inode *ip = GFS2_I(file->f_mapping->host); - size_t count = iov_iter_count(to); + size_t prev_count = 0, window_size = 0; + size_t written = 0; ssize_t ret; - if (!count) + /* + * In this function, we disable page faults when we're holding the + * inode glock while doing I/O. If a page fault occurs, we indicate + * that the inode glock may be dropped, fault in the pages manually, + * and retry. + * + * Unlike generic_file_read_iter, for reads, iomap_dio_rw can trigger + * physical as well as manual page faults, and we need to disable both + * kinds. + * + * For direct I/O, gfs2 takes the inode glock in deferred mode. This + * locking mode is compatible with other deferred holders, so multiple + * processes and nodes can do direct I/O to a file at the same time. + * There's no guarantee that reads or writes will be atomic. Any + * coordination among readers and writers needs to happen externally. + */ + + if (!iov_iter_count(to)) return 0; /* skip atime */ gfs2_holder_init(ip->i_gl, LM_ST_DEFERRED, 0, gh); +retry: ret = gfs2_glock_nq(gh); if (ret) goto out_uninit; +retry_under_glock: + pagefault_disable(); + to->nofault = true; + ret = iomap_dio_rw(iocb, to, &gfs2_iomap_ops, NULL, + IOMAP_DIO_PARTIAL, written); + to->nofault = false; + pagefault_enable(); + if (ret > 0) + written = ret; + + if (should_fault_in_pages(ret, to, &prev_count, &window_size)) { + size_t leftover; - ret = iomap_dio_rw(iocb, to, &gfs2_iomap_ops, NULL, 0); - gfs2_glock_dq(gh); + gfs2_holder_allow_demote(gh); + leftover = fault_in_iov_iter_writeable(to, window_size); + gfs2_holder_disallow_demote(gh); + if (leftover != window_size) { + if (gfs2_holder_queued(gh)) + goto retry_under_glock; + goto retry; + } + } + if (gfs2_holder_queued(gh)) + gfs2_glock_dq(gh); out_uninit: gfs2_holder_uninit(gh); - return ret; + if (ret < 0) + return ret; + return written; } static ssize_t gfs2_file_direct_write(struct kiocb *iocb, struct iov_iter *from, @@ -806,11 +878,21 @@ struct file *file = iocb->ki_filp; struct inode *inode = file->f_mapping->host; struct gfs2_inode *ip = GFS2_I(inode); - size_t len = iov_iter_count(from); - loff_t offset = iocb->ki_pos; + size_t prev_count = 0, window_size = 0; + size_t read = 0; ssize_t ret; /* + * In this function, we disable page faults when we're holding the + * inode glock while doing I/O. If a page fault occurs, we indicate + * that the inode glock may be dropped, fault in the pages manually, + * and retry. + * + * For writes, iomap_dio_rw only triggers manual page faults, so we + * don't need to disable physical ones. + */ + + /* * Deferred lock, even if its a write, since we do no allocation on * this path. All we need to change is the atime, and this lock mode * ensures that other nodes have flushed their buffered read caches @@ -819,45 +901,78 @@ * VFS does. */ gfs2_holder_init(ip->i_gl, LM_ST_DEFERRED, 0, gh); +retry: ret = gfs2_glock_nq(gh); if (ret) goto out_uninit; - +retry_under_glock: /* Silently fall back to buffered I/O when writing beyond EOF */ - if (offset + len > i_size_read(&ip->i_inode)) + if (iocb->ki_pos + iov_iter_count(from) > i_size_read(&ip->i_inode)) goto out; - ret = iomap_dio_rw(iocb, from, &gfs2_iomap_ops, NULL, 0); + from->nofault = true; + ret = iomap_dio_rw(iocb, from, &gfs2_iomap_ops, NULL, + IOMAP_DIO_PARTIAL, read); + from->nofault = false; + if (ret == -ENOTBLK) ret = 0; + if (ret > 0) + read = ret; + + if (should_fault_in_pages(ret, from, &prev_count, &window_size)) { + size_t leftover; + + gfs2_holder_allow_demote(gh); + leftover = fault_in_iov_iter_readable(from, window_size); + gfs2_holder_disallow_demote(gh); + if (leftover != window_size) { + if (gfs2_holder_queued(gh)) + goto retry_under_glock; + goto retry; + } + } out: - gfs2_glock_dq(gh); + if (gfs2_holder_queued(gh)) + gfs2_glock_dq(gh); out_uninit: gfs2_holder_uninit(gh); - return ret; + if (ret < 0) + return ret; + return read; } static ssize_t gfs2_file_read_iter(struct kiocb *iocb, struct iov_iter *to) { struct gfs2_inode *ip; struct gfs2_holder gh; + size_t prev_count = 0, window_size = 0; size_t written = 0; ssize_t ret; + /* + * In this function, we disable page faults when we're holding the + * inode glock while doing I/O. If a page fault occurs, we indicate + * that the inode glock may be dropped, fault in the pages manually, + * and retry. + */ + if (iocb->ki_flags & IOCB_DIRECT) { ret = gfs2_file_direct_read(iocb, to, &gh); if (likely(ret != -ENOTBLK)) return ret; iocb->ki_flags &= ~IOCB_DIRECT; } + pagefault_disable(); iocb->ki_flags |= IOCB_NOIO; ret = generic_file_read_iter(iocb, to); iocb->ki_flags &= ~IOCB_NOIO; + pagefault_enable(); if (ret >= 0) { if (!iov_iter_count(to)) return ret; written = ret; - } else { + } else if (ret != -EFAULT) { if (ret != -EAGAIN) return ret; if (iocb->ki_flags & IOCB_NOWAIT) @@ -865,18 +980,115 @@ } ip = GFS2_I(iocb->ki_filp->f_mapping->host); gfs2_holder_init(ip->i_gl, LM_ST_SHARED, 0, &gh); +retry: ret = gfs2_glock_nq(&gh); if (ret) goto out_uninit; +retry_under_glock: + pagefault_disable(); ret = generic_file_read_iter(iocb, to); + pagefault_enable(); if (ret > 0) written += ret; - gfs2_glock_dq(&gh); + + if (should_fault_in_pages(ret, to, &prev_count, &window_size)) { + size_t leftover; + + gfs2_holder_allow_demote(&gh); + leftover = fault_in_iov_iter_writeable(to, window_size); + gfs2_holder_disallow_demote(&gh); + if (leftover != window_size) { + if (gfs2_holder_queued(&gh)) + goto retry_under_glock; + goto retry; + } + } + if (gfs2_holder_queued(&gh)) + gfs2_glock_dq(&gh); out_uninit: gfs2_holder_uninit(&gh); return written ? written : ret; } +static ssize_t gfs2_file_buffered_write(struct kiocb *iocb, + struct iov_iter *from, + struct gfs2_holder *gh) +{ + struct file *file = iocb->ki_filp; + struct inode *inode = file_inode(file); + struct gfs2_inode *ip = GFS2_I(inode); + struct gfs2_sbd *sdp = GFS2_SB(inode); + struct gfs2_holder *statfs_gh = NULL; + size_t prev_count = 0, window_size = 0; + size_t orig_count = iov_iter_count(from); + size_t read = 0; + ssize_t ret; + + /* + * In this function, we disable page faults when we're holding the + * inode glock while doing I/O. If a page fault occurs, we indicate + * that the inode glock may be dropped, fault in the pages manually, + * and retry. + */ + + if (inode == sdp->sd_rindex) { + statfs_gh = kmalloc(sizeof(*statfs_gh), GFP_NOFS); + if (!statfs_gh) + return -ENOMEM; + } + + gfs2_holder_init(ip->i_gl, LM_ST_EXCLUSIVE, 0, gh); +retry: + ret = gfs2_glock_nq(gh); + if (ret) + goto out_uninit; +retry_under_glock: + if (inode == sdp->sd_rindex) { + struct gfs2_inode *m_ip = GFS2_I(sdp->sd_statfs_inode); + + ret = gfs2_glock_nq_init(m_ip->i_gl, LM_ST_EXCLUSIVE, + GL_NOCACHE, statfs_gh); + if (ret) + goto out_unlock; + } + + current->backing_dev_info = inode_to_bdi(inode); + pagefault_disable(); + ret = iomap_file_buffered_write(iocb, from, &gfs2_iomap_ops); + pagefault_enable(); + current->backing_dev_info = NULL; + if (ret > 0) { + iocb->ki_pos += ret; + read += ret; + } + + if (inode == sdp->sd_rindex) + gfs2_glock_dq_uninit(statfs_gh); + + from->count = orig_count - read; + if (should_fault_in_pages(ret, from, &prev_count, &window_size)) { + size_t leftover; + + gfs2_holder_allow_demote(gh); + leftover = fault_in_iov_iter_readable(from, window_size); + gfs2_holder_disallow_demote(gh); + if (leftover != window_size) { + from->count = min(from->count, window_size - leftover); + if (gfs2_holder_queued(gh)) + goto retry_under_glock; + goto retry; + } + } +out_unlock: + if (gfs2_holder_queued(gh)) + gfs2_glock_dq(gh); +out_uninit: + gfs2_holder_uninit(gh); + if (statfs_gh) + kfree(statfs_gh); + return read ? read : ret; +} + /** * gfs2_file_write_iter - Perform a write to a file * @iocb: The io context @@ -928,9 +1140,7 @@ goto out_unlock; iocb->ki_flags |= IOCB_DSYNC; - current->backing_dev_info = inode_to_bdi(inode); - buffered = iomap_file_buffered_write(iocb, from, &gfs2_iomap_ops); - current->backing_dev_info = NULL; + buffered = gfs2_file_buffered_write(iocb, from, &gh); if (unlikely(buffered <= 0)) { if (!ret) ret = buffered; @@ -944,7 +1154,6 @@ * the direct I/O range as we don't know if the buffered pages * made it to disk. */ - iocb->ki_pos += buffered; ret2 = generic_write_sync(iocb, buffered); invalidate_mapping_pages(mapping, (iocb->ki_pos - buffered) >> PAGE_SHIFT, @@ -952,13 +1161,9 @@ if (!ret || ret2 > 0) ret += ret2; } else { - current->backing_dev_info = inode_to_bdi(inode); - ret = iomap_file_buffered_write(iocb, from, &gfs2_iomap_ops); - current->backing_dev_info = NULL; - if (likely(ret > 0)) { - iocb->ki_pos += ret; + ret = gfs2_file_buffered_write(iocb, from, &gh); + if (likely(ret > 0)) ret = generic_write_sync(iocb, ret); - } } out_unlock: diff -u linux-intel-iotg-5.15-5.15.0/fs/gfs2/glock.c linux-intel-iotg-5.15-5.15.0/fs/gfs2/glock.c --- linux-intel-iotg-5.15-5.15.0/fs/gfs2/glock.c +++ linux-intel-iotg-5.15-5.15.0/fs/gfs2/glock.c @@ -58,6 +58,7 @@ typedef void (*glock_examiner) (struct gfs2_glock * gl); static void do_xmote(struct gfs2_glock *gl, struct gfs2_holder *gh, unsigned int target); +static void __gfs2_glock_dq(struct gfs2_holder *gh); static struct dentry *gfs2_root; static struct workqueue_struct *glock_workqueue; @@ -197,6 +198,12 @@ if (gl->gl_state == LM_ST_UNLOCKED) return 0; + /* + * Note that demote_ok is used for the lru process of disposing of + * glocks. For this purpose, we don't care if the glock's holders + * have the HIF_MAY_DEMOTE flag set or not. If someone is using + * them, don't demote. + */ if (!list_empty(&gl->gl_holders)) return 0; if (glops->go_demote_ok) @@ -301,46 +308,59 @@ } /** - * may_grant - check if its ok to grant a new lock + * may_grant - check if it's ok to grant a new lock * @gl: The glock + * @current_gh: One of the current holders of @gl * @gh: The lock request which we wish to grant * - * Returns: true if its ok to grant the lock + * With our current compatibility rules, if a glock has one or more active + * holders (HIF_HOLDER flag set), any of those holders can be passed in as + * @current_gh; they are all the same as far as compatibility with the new @gh + * goes. + * + * Returns true if it's ok to grant the lock. */ -static inline int may_grant(const struct gfs2_glock *gl, const struct gfs2_holder *gh) +static inline bool may_grant(struct gfs2_glock *gl, + struct gfs2_holder *current_gh, + struct gfs2_holder *gh) { - const struct gfs2_holder *gh_head = list_first_entry(&gl->gl_holders, const struct gfs2_holder, gh_list); + if (current_gh) { + GLOCK_BUG_ON(gl, !test_bit(HIF_HOLDER, ¤t_gh->gh_iflags)); - if (gh != gh_head) { - /** - * Here we make a special exception to grant holders who agree - * to share the EX lock with other holders who also have the - * bit set. If the original holder has the LM_FLAG_NODE_SCOPE bit - * is set, we grant more holders with the bit set. - */ - if (gh_head->gh_state == LM_ST_EXCLUSIVE && - (gh_head->gh_flags & LM_FLAG_NODE_SCOPE) && - gh->gh_state == LM_ST_EXCLUSIVE && - (gh->gh_flags & LM_FLAG_NODE_SCOPE)) - return 1; - if ((gh->gh_state == LM_ST_EXCLUSIVE || - gh_head->gh_state == LM_ST_EXCLUSIVE)) - return 0; + switch(current_gh->gh_state) { + case LM_ST_EXCLUSIVE: + /* + * Here we make a special exception to grant holders + * who agree to share the EX lock with other holders + * who also have the bit set. If the original holder + * has the LM_FLAG_NODE_SCOPE bit set, we grant more + * holders with the bit set. + */ + return gh->gh_state == LM_ST_EXCLUSIVE && + (current_gh->gh_flags & LM_FLAG_NODE_SCOPE) && + (gh->gh_flags & LM_FLAG_NODE_SCOPE); + + case LM_ST_SHARED: + case LM_ST_DEFERRED: + return gh->gh_state == current_gh->gh_state; + + default: + return false; + } } + if (gl->gl_state == gh->gh_state) - return 1; + return true; if (gh->gh_flags & GL_EXACT) - return 0; + return false; if (gl->gl_state == LM_ST_EXCLUSIVE) { - if (gh->gh_state == LM_ST_SHARED && gh_head->gh_state == LM_ST_SHARED) - return 1; - if (gh->gh_state == LM_ST_DEFERRED && gh_head->gh_state == LM_ST_DEFERRED) - return 1; + return gh->gh_state == LM_ST_SHARED || + gh->gh_state == LM_ST_DEFERRED; } - if (gl->gl_state != LM_ST_UNLOCKED && (gh->gh_flags & LM_FLAG_ANY)) - return 1; - return 0; + if (gh->gh_flags & LM_FLAG_ANY) + return gl->gl_state != LM_ST_UNLOCKED; + return false; } static void gfs2_holder_wake(struct gfs2_holder *gh) @@ -366,7 +386,7 @@ struct gfs2_holder *gh, *tmp; list_for_each_entry_safe(gh, tmp, &gl->gl_holders, gh_list) { - if (test_bit(HIF_HOLDER, &gh->gh_iflags)) + if (!test_bit(HIF_WAIT, &gh->gh_iflags)) continue; if (ret & LM_OUT_ERROR) gh->gh_error = -EIO; @@ -381,6 +401,78 @@ } /** + * demote_incompat_holders - demote incompatible demoteable holders + * @gl: the glock we want to promote + * @new_gh: the new holder to be promoted + */ +static void demote_incompat_holders(struct gfs2_glock *gl, + struct gfs2_holder *new_gh) +{ + struct gfs2_holder *gh; + + /* + * Demote incompatible holders before we make ourselves eligible. + * (This holder may or may not allow auto-demoting, but we don't want + * to demote the new holder before it's even granted.) + */ + list_for_each_entry(gh, &gl->gl_holders, gh_list) { + /* + * Since holders are at the front of the list, we stop when we + * find the first non-holder. + */ + if (!test_bit(HIF_HOLDER, &gh->gh_iflags)) + return; + if (test_bit(HIF_MAY_DEMOTE, &gh->gh_iflags) && + !may_grant(gl, new_gh, gh)) { + /* + * We should not recurse into do_promote because + * __gfs2_glock_dq only calls handle_callback, + * gfs2_glock_add_to_lru and __gfs2_glock_queue_work. + */ + __gfs2_glock_dq(gh); + } + } +} + +/** + * find_first_holder - find the first "holder" gh + * @gl: the glock + */ + +static inline struct gfs2_holder *find_first_holder(const struct gfs2_glock *gl) +{ + struct gfs2_holder *gh; + + if (!list_empty(&gl->gl_holders)) { + gh = list_first_entry(&gl->gl_holders, struct gfs2_holder, + gh_list); + if (test_bit(HIF_HOLDER, &gh->gh_iflags)) + return gh; + } + return NULL; +} + +/** + * find_first_strong_holder - find the first non-demoteable holder + * @gl: the glock + * + * Find the first holder that doesn't have the HIF_MAY_DEMOTE flag set. + */ +static inline struct gfs2_holder * +find_first_strong_holder(struct gfs2_glock *gl) +{ + struct gfs2_holder *gh; + + list_for_each_entry(gh, &gl->gl_holders, gh_list) { + if (!test_bit(HIF_HOLDER, &gh->gh_iflags)) + return NULL; + if (!test_bit(HIF_MAY_DEMOTE, &gh->gh_iflags)) + return gh; + } + return NULL; +} + +/** * do_promote - promote as many requests as possible on the current queue * @gl: The glock * @@ -393,14 +485,21 @@ __acquires(&gl->gl_lockref.lock) { const struct gfs2_glock_operations *glops = gl->gl_ops; - struct gfs2_holder *gh, *tmp; + struct gfs2_holder *gh, *tmp, *first_gh; + bool incompat_holders_demoted = false; int ret; restart: + first_gh = find_first_strong_holder(gl); list_for_each_entry_safe(gh, tmp, &gl->gl_holders, gh_list) { - if (test_bit(HIF_HOLDER, &gh->gh_iflags)) + if (!test_bit(HIF_WAIT, &gh->gh_iflags)) continue; - if (may_grant(gl, gh)) { + if (may_grant(gl, first_gh, gh)) { + if (!incompat_holders_demoted) { + demote_incompat_holders(gl, first_gh); + incompat_holders_demoted = true; + first_gh = gh; + } if (gh->gh_list.prev == &gl->gl_holders && glops->go_lock) { spin_unlock(&gl->gl_lockref.lock); @@ -426,6 +525,11 @@ gfs2_holder_wake(gh); continue; } + /* + * If we get here, it means we may not grant this holder for + * some reason. If this holder is the head of the list, it + * means we have a blocked holder at the head, so return 1. + */ if (gh->gh_list.prev == &gl->gl_holders) return 1; do_error(gl, 0); @@ -723,23 +827,6 @@ } /** - * find_first_holder - find the first "holder" gh - * @gl: the glock - */ - -static inline struct gfs2_holder *find_first_holder(const struct gfs2_glock *gl) -{ - struct gfs2_holder *gh; - - if (!list_empty(&gl->gl_holders)) { - gh = list_first_entry(&gl->gl_holders, struct gfs2_holder, gh_list); - if (test_bit(HIF_HOLDER, &gh->gh_iflags)) - return gh; - } - return NULL; -} - -/** * run_queue - do all outstanding tasks related to a glock * @gl: The glock in question * @nonblock: True if we must not block in run_queue @@ -1354,15 +1441,20 @@ GLOCK_BUG_ON(gl, true); if (gh->gh_flags & (LM_FLAG_TRY | LM_FLAG_TRY_1CB)) { - if (test_bit(GLF_LOCK, &gl->gl_flags)) - try_futile = !may_grant(gl, gh); + if (test_bit(GLF_LOCK, &gl->gl_flags)) { + struct gfs2_holder *first_gh; + + first_gh = find_first_strong_holder(gl); + try_futile = !may_grant(gl, first_gh, gh); + } if (test_bit(GLF_INVALIDATE_IN_PROGRESS, &gl->gl_flags)) goto fail; } list_for_each_entry(gh2, &gl->gl_holders, gh_list) { if (unlikely(gh2->gh_owner_pid == gh->gh_owner_pid && - (gh->gh_gl->gl_ops->go_type != LM_TYPE_FLOCK))) + (gh->gh_gl->gl_ops->go_type != LM_TYPE_FLOCK) && + !test_bit(HIF_MAY_DEMOTE, &gh2->gh_iflags))) goto trap_recursive; if (try_futile && !(gh2->gh_flags & (LM_FLAG_TRY | LM_FLAG_TRY_1CB))) { @@ -1458,51 +1550,83 @@ return test_bit(HIF_WAIT, &gh->gh_iflags) ? 0 : 1; } -/** - * gfs2_glock_dq - dequeue a struct gfs2_holder from a glock (release a glock) - * @gh: the glock holder - * - */ +static inline bool needs_demote(struct gfs2_glock *gl) +{ + return (test_bit(GLF_DEMOTE, &gl->gl_flags) || + test_bit(GLF_PENDING_DEMOTE, &gl->gl_flags)); +} -void gfs2_glock_dq(struct gfs2_holder *gh) +static void __gfs2_glock_dq(struct gfs2_holder *gh) { struct gfs2_glock *gl = gh->gh_gl; struct gfs2_sbd *sdp = gl->gl_name.ln_sbd; unsigned delay = 0; int fast_path = 0; - spin_lock(&gl->gl_lockref.lock); /* - * If we're in the process of file system withdraw, we cannot just - * dequeue any glocks until our journal is recovered, lest we - * introduce file system corruption. We need two exceptions to this - * rule: We need to allow unlocking of nondisk glocks and the glock - * for our own journal that needs recovery. + * This while loop is similar to function demote_incompat_holders: + * If the glock is due to be demoted (which may be from another node + * or even if this holder is GL_NOCACHE), the weak holders are + * demoted as well, allowing the glock to be demoted. */ - if (test_bit(SDF_WITHDRAW_RECOVERY, &sdp->sd_flags) && - glock_blocked_by_withdraw(gl) && - gh->gh_gl != sdp->sd_jinode_gl) { - sdp->sd_glock_dqs_held++; - spin_unlock(&gl->gl_lockref.lock); - might_sleep(); - wait_on_bit(&sdp->sd_flags, SDF_WITHDRAW_RECOVERY, - TASK_UNINTERRUPTIBLE); - spin_lock(&gl->gl_lockref.lock); - } - if (gh->gh_flags & GL_NOCACHE) - handle_callback(gl, LM_ST_UNLOCKED, 0, false); + while (gh) { + /* + * If we're in the process of file system withdraw, we cannot + * just dequeue any glocks until our journal is recovered, lest + * we introduce file system corruption. We need two exceptions + * to this rule: We need to allow unlocking of nondisk glocks + * and the glock for our own journal that needs recovery. + */ + if (test_bit(SDF_WITHDRAW_RECOVERY, &sdp->sd_flags) && + glock_blocked_by_withdraw(gl) && + gh->gh_gl != sdp->sd_jinode_gl) { + sdp->sd_glock_dqs_held++; + spin_unlock(&gl->gl_lockref.lock); + might_sleep(); + wait_on_bit(&sdp->sd_flags, SDF_WITHDRAW_RECOVERY, + TASK_UNINTERRUPTIBLE); + spin_lock(&gl->gl_lockref.lock); + } + + /* + * This holder should not be cached, so mark it for demote. + * Note: this should be done before the check for needs_demote + * below. + */ + if (gh->gh_flags & GL_NOCACHE) + handle_callback(gl, LM_ST_UNLOCKED, 0, false); + + list_del_init(&gh->gh_list); + clear_bit(HIF_HOLDER, &gh->gh_iflags); + trace_gfs2_glock_queue(gh, 0); + + /* + * If there hasn't been a demote request we are done. + * (Let the remaining holders, if any, keep holding it.) + */ + if (!needs_demote(gl)) { + if (list_empty(&gl->gl_holders)) + fast_path = 1; + break; + } + /* + * If we have another strong holder (we cannot auto-demote) + * we are done. It keeps holding it until it is done. + */ + if (find_first_strong_holder(gl)) + break; - list_del_init(&gh->gh_list); - clear_bit(HIF_HOLDER, &gh->gh_iflags); - if (list_empty(&gl->gl_holders) && - !test_bit(GLF_PENDING_DEMOTE, &gl->gl_flags) && - !test_bit(GLF_DEMOTE, &gl->gl_flags)) - fast_path = 1; + /* + * If we have a weak holder at the head of the list, it + * (and all others like it) must be auto-demoted. If there + * are no more weak holders, we exit the while loop. + */ + gh = find_first_holder(gl); + } if (!test_bit(GLF_LFLUSH, &gl->gl_flags) && demote_ok(gl)) gfs2_glock_add_to_lru(gl); - trace_gfs2_glock_queue(gh, 0); if (unlikely(!fast_path)) { gl->gl_lockref.count++; if (test_bit(GLF_PENDING_DEMOTE, &gl->gl_flags) && @@ -1511,6 +1635,19 @@ delay = gl->gl_hold_time; __gfs2_glock_queue_work(gl, delay); } +} + +/** + * gfs2_glock_dq - dequeue a struct gfs2_holder from a glock (release a glock) + * @gh: the glock holder + * + */ +void gfs2_glock_dq(struct gfs2_holder *gh) +{ + struct gfs2_glock *gl = gh->gh_gl; + + spin_lock(&gl->gl_lockref.lock); + __gfs2_glock_dq(gh); spin_unlock(&gl->gl_lockref.lock); } @@ -1673,6 +1810,7 @@ void gfs2_glock_cb(struct gfs2_glock *gl, unsigned int state) { + struct gfs2_holder mock_gh = { .gh_gl = gl, .gh_state = state, }; unsigned long delay = 0; unsigned long holdtime; unsigned long now = jiffies; @@ -1687,6 +1825,28 @@ if (test_bit(GLF_REPLY_PENDING, &gl->gl_flags)) delay = gl->gl_hold_time; } + /* + * Note 1: We cannot call demote_incompat_holders from handle_callback + * or gfs2_set_demote due to recursion problems like: gfs2_glock_dq -> + * handle_callback -> demote_incompat_holders -> gfs2_glock_dq + * Plus, we only want to demote the holders if the request comes from + * a remote cluster node because local holder conflicts are resolved + * elsewhere. + * + * Note 2: if a remote node wants this glock in EX mode, lock_dlm will + * request that we set our state to UNLOCKED. Here we mock up a holder + * to make it look like someone wants the lock EX locally. Any SH + * and DF requests should be able to share the lock without demoting. + * + * Note 3: We only want to demote the demoteable holders when there + * are no more strong holders. The demoteable holders might as well + * keep the glock until the last strong holder is done with it. + */ + if (!find_first_strong_holder(gl)) { + if (state == LM_ST_UNLOCKED) + mock_gh.gh_state = LM_ST_EXCLUSIVE; + demote_incompat_holders(gl, &mock_gh); + } handle_callback(gl, state, delay, true); __gfs2_glock_queue_work(gl, delay); spin_unlock(&gl->gl_lockref.lock); @@ -2078,6 +2238,8 @@ *p++ = 'H'; if (test_bit(HIF_WAIT, &iflags)) *p++ = 'W'; + if (test_bit(HIF_MAY_DEMOTE, &iflags)) + *p++ = 'D'; *p = 0; return buf; } diff -u linux-intel-iotg-5.15-5.15.0/fs/gfs2/rgrp.c linux-intel-iotg-5.15-5.15.0/fs/gfs2/rgrp.c --- linux-intel-iotg-5.15-5.15.0/fs/gfs2/rgrp.c +++ linux-intel-iotg-5.15-5.15.0/fs/gfs2/rgrp.c @@ -923,15 +923,15 @@ spin_lock_init(&rgd->rd_rsspin); mutex_init(&rgd->rd_mutex); - error = compute_bitstructs(rgd); - if (error) - goto fail; - error = gfs2_glock_get(sdp, rgd->rd_addr, &gfs2_rgrp_glops, CREATE, &rgd->rd_gl); if (error) goto fail; + error = compute_bitstructs(rgd); + if (error) + goto fail_glock; + rgd->rd_rgl = (struct gfs2_rgrp_lvb *)rgd->rd_gl->gl_lksb.sb_lvbptr; rgd->rd_flags &= ~(GFS2_RDF_UPTODATE | GFS2_RDF_PREFERRED); if (rgd->rd_data > sdp->sd_max_rg_data) @@ -945,6 +945,7 @@ } error = 0; /* someone else read in the rgrp; free it and ignore it */ +fail_glock: gfs2_glock_put(rgd->rd_gl); fail: diff -u linux-intel-iotg-5.15-5.15.0/fs/hugetlbfs/inode.c linux-intel-iotg-5.15-5.15.0/fs/hugetlbfs/inode.c --- linux-intel-iotg-5.15-5.15.0/fs/hugetlbfs/inode.c +++ linux-intel-iotg-5.15-5.15.0/fs/hugetlbfs/inode.c @@ -206,7 +206,7 @@ info.flags = 0; info.length = len; info.low_limit = current->mm->mmap_base; - info.high_limit = TASK_SIZE; + info.high_limit = arch_get_mmap_end(addr); info.align_mask = PAGE_MASK & ~huge_page_mask(h); info.align_offset = 0; return vm_unmapped_area(&info); @@ -222,7 +222,7 @@ info.flags = VM_UNMAPPED_AREA_TOPDOWN; info.length = len; info.low_limit = max(PAGE_SIZE, mmap_min_addr); - info.high_limit = current->mm->mmap_base; + info.high_limit = arch_get_mmap_base(addr, current->mm->mmap_base); info.align_mask = PAGE_MASK & ~huge_page_mask(h); info.align_offset = 0; addr = vm_unmapped_area(&info); @@ -237,7 +237,7 @@ VM_BUG_ON(addr != -ENOMEM); info.flags = 0; info.low_limit = current->mm->mmap_base; - info.high_limit = TASK_SIZE; + info.high_limit = arch_get_mmap_end(addr); addr = vm_unmapped_area(&info); } @@ -251,6 +251,7 @@ struct mm_struct *mm = current->mm; struct vm_area_struct *vma; struct hstate *h = hstate_file(file); + const unsigned long mmap_end = arch_get_mmap_end(addr); if (len & ~huge_page_mask(h)) return -EINVAL; @@ -266,7 +267,7 @@ if (addr) { addr = ALIGN(addr, huge_page_size(h)); vma = find_vma(mm, addr); - if (TASK_SIZE - len >= addr && + if (mmap_end - len >= addr && (!vma || addr + len <= vm_start_gap(vma))) return addr; } @@ -1047,12 +1048,12 @@ if (sbinfo->spool) { long free_pages; - spin_lock(&sbinfo->spool->lock); + spin_lock_irq(&sbinfo->spool->lock); buf->f_blocks = sbinfo->spool->max_hpages; free_pages = sbinfo->spool->max_hpages - sbinfo->spool->used_hpages; buf->f_bavail = buf->f_bfree = free_pages; - spin_unlock(&sbinfo->spool->lock); + spin_unlock_irq(&sbinfo->spool->lock); buf->f_files = sbinfo->max_inodes; buf->f_ffree = sbinfo->free_inodes; } diff -u linux-intel-iotg-5.15-5.15.0/fs/io_uring.c linux-intel-iotg-5.15-5.15.0/fs/io_uring.c --- linux-intel-iotg-5.15-5.15.0/fs/io_uring.c +++ linux-intel-iotg-5.15-5.15.0/fs/io_uring.c @@ -4786,6 +4786,8 @@ if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL)) return -EINVAL; + if (unlikely(sqe->addr2 || sqe->file_index)) + return -EINVAL; sr->umsg = u64_to_user_ptr(READ_ONCE(sqe->addr)); sr->len = READ_ONCE(sqe->len); @@ -5007,6 +5009,8 @@ if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL)) return -EINVAL; + if (unlikely(sqe->addr2 || sqe->file_index)) + return -EINVAL; sr->umsg = u64_to_user_ptr(READ_ONCE(sqe->addr)); sr->len = READ_ONCE(sqe->len); @@ -5658,7 +5662,6 @@ struct async_poll *apoll; struct io_poll_table ipt; __poll_t ret, mask = EPOLLONESHOT | POLLERR | POLLPRI; - int rw; if (!req->file || !file_can_poll(req->file)) return IO_APOLL_ABORTED; @@ -5668,7 +5671,6 @@ return IO_APOLL_ABORTED; if (def->pollin) { - rw = READ; mask |= POLLIN | POLLRDNORM; /* If reading from MSG_ERRQUEUE using recvmsg, ignore POLLIN */ @@ -5676,14 +5678,9 @@ (req->sr_msg.msg_flags & MSG_ERRQUEUE)) mask &= ~POLLIN; } else { - rw = WRITE; mask |= POLLOUT | POLLWRNORM; } - /* if we can't nonblock try, then no point in arming a poll handler */ - if (!io_file_supports_nowait(req, rw)) - return IO_APOLL_ABORTED; - apoll = kmalloc(sizeof(*apoll), GFP_ATOMIC); if (unlikely(!apoll)) return IO_APOLL_ABORTED; diff -u linux-intel-iotg-5.15-5.15.0/fs/iomap/buffered-io.c linux-intel-iotg-5.15-5.15.0/fs/iomap/buffered-io.c --- linux-intel-iotg-5.15-5.15.0/fs/iomap/buffered-io.c +++ linux-intel-iotg-5.15-5.15.0/fs/iomap/buffered-io.c @@ -525,7 +525,8 @@ * write started inside the existing inode size. */ if (pos + len > i_size) - truncate_pagecache_range(inode, max(pos, i_size), pos + len); + truncate_pagecache_range(inode, max(pos, i_size), + pos + len - 1); } static int @@ -757,7 +758,7 @@ * same page as we're writing to, without it being marked * up-to-date. */ - if (unlikely(iov_iter_fault_in_readable(i, bytes))) { + if (unlikely(fault_in_iov_iter_readable(i, bytes))) { status = -EFAULT; break; } diff -u linux-intel-iotg-5.15-5.15.0/fs/jbd2/commit.c linux-intel-iotg-5.15-5.15.0/fs/jbd2/commit.c --- linux-intel-iotg-5.15-5.15.0/fs/jbd2/commit.c +++ linux-intel-iotg-5.15-5.15.0/fs/jbd2/commit.c @@ -501,7 +501,6 @@ } spin_unlock(&commit_transaction->t_handle_lock); commit_transaction->t_state = T_SWITCH; - write_unlock(&journal->j_state_lock); J_ASSERT (atomic_read(&commit_transaction->t_outstanding_credits) <= journal->j_max_transaction_buffers); @@ -521,6 +520,8 @@ * has reserved. This is consistent with the existing behaviour * that multiple jbd2_journal_get_write_access() calls to the same * buffer are perfectly permissible. + * We use journal->j_state_lock here to serialize processing of + * t_reserved_list with eviction of buffers from journal_unmap_buffer(). */ while (commit_transaction->t_reserved_list) { jh = commit_transaction->t_reserved_list; @@ -540,6 +541,7 @@ jbd2_journal_refile_buffer(journal, jh); } + write_unlock(&journal->j_state_lock); /* * Now try to drop any written-back buffers from the journal's * checkpoint lists. We do this *before* commit because it potentially diff -u linux-intel-iotg-5.15-5.15.0/fs/jfs/jfs_dmap.c linux-intel-iotg-5.15-5.15.0/fs/jfs/jfs_dmap.c --- linux-intel-iotg-5.15-5.15.0/fs/jfs/jfs_dmap.c +++ linux-intel-iotg-5.15-5.15.0/fs/jfs/jfs_dmap.c @@ -385,7 +385,8 @@ } /* write the last buffer. */ - write_metapage(mp); + if (mp) + write_metapage(mp); IREAD_UNLOCK(ipbmap); diff -u linux-intel-iotg-5.15-5.15.0/fs/ksmbd/connection.c linux-intel-iotg-5.15-5.15.0/fs/ksmbd/connection.c --- linux-intel-iotg-5.15-5.15.0/fs/ksmbd/connection.c +++ linux-intel-iotg-5.15-5.15.0/fs/ksmbd/connection.c @@ -62,7 +62,7 @@ atomic_set(&conn->req_running, 0); atomic_set(&conn->r_count, 0); conn->total_credits = 1; - conn->outstanding_credits = 1; + conn->outstanding_credits = 0; init_waitqueue_head(&conn->req_running_q); INIT_LIST_HEAD(&conn->conns_list); diff -u linux-intel-iotg-5.15-5.15.0/fs/ksmbd/smb2misc.c linux-intel-iotg-5.15-5.15.0/fs/ksmbd/smb2misc.c --- linux-intel-iotg-5.15-5.15.0/fs/ksmbd/smb2misc.c +++ linux-intel-iotg-5.15-5.15.0/fs/ksmbd/smb2misc.c @@ -339,7 +339,7 @@ ret = 1; } - if ((u64)conn->outstanding_credits + credit_charge > conn->vals->max_credits) { + if ((u64)conn->outstanding_credits + credit_charge > conn->total_credits) { ksmbd_debug(SMB, "Limits exceeding the maximum allowable outstanding requests, given : %u, pending : %u\n", credit_charge, conn->outstanding_credits); ret = 1; diff -u linux-intel-iotg-5.15-5.15.0/fs/ksmbd/smb2pdu.c linux-intel-iotg-5.15-5.15.0/fs/ksmbd/smb2pdu.c --- linux-intel-iotg-5.15-5.15.0/fs/ksmbd/smb2pdu.c +++ linux-intel-iotg-5.15-5.15.0/fs/ksmbd/smb2pdu.c @@ -11,6 +11,7 @@ #include #include #include +#include #include "glob.h" #include "smb2pdu.h" @@ -4997,15 +4998,17 @@ case FS_SECTOR_SIZE_INFORMATION: { struct smb3_fs_ss_info *info; + unsigned int sector_size = + min_t(unsigned int, path.mnt->mnt_sb->s_blocksize, 4096); info = (struct smb3_fs_ss_info *)(rsp->Buffer); - info->LogicalBytesPerSector = cpu_to_le32(stfs.f_bsize); + info->LogicalBytesPerSector = cpu_to_le32(sector_size); info->PhysicalBytesPerSectorForAtomicity = - cpu_to_le32(stfs.f_bsize); - info->PhysicalBytesPerSectorForPerf = cpu_to_le32(stfs.f_bsize); + cpu_to_le32(sector_size); + info->PhysicalBytesPerSectorForPerf = cpu_to_le32(sector_size); info->FSEffPhysicalBytesPerSectorForAtomicity = - cpu_to_le32(stfs.f_bsize); + cpu_to_le32(sector_size); info->Flags = cpu_to_le32(SSINFO_FLAGS_ALIGNED_DEVICE | SSINFO_FLAGS_PARTITION_ALIGNED_ON_DEVICE); info->ByteOffsetForSectorAlignment = 0; @@ -5768,8 +5771,10 @@ if (parent_fp) { if (parent_fp->daccess & FILE_DELETE_LE) { pr_err("parent dir is opened with delete access\n"); + ksmbd_fd_put(work, parent_fp); return -ESHARE; } + ksmbd_fd_put(work, parent_fp); } next: return smb2_rename(work, fp, user_ns, rename_info, diff -u linux-intel-iotg-5.15-5.15.0/fs/ksmbd/smb_common.c linux-intel-iotg-5.15-5.15.0/fs/ksmbd/smb_common.c --- linux-intel-iotg-5.15-5.15.0/fs/ksmbd/smb_common.c +++ linux-intel-iotg-5.15-5.15.0/fs/ksmbd/smb_common.c @@ -140,8 +140,10 @@ hdr = work->request_buf; if (*(__le32 *)hdr->Protocol == SMB1_PROTO_NUMBER && - hdr->Command == SMB_COM_NEGOTIATE) + hdr->Command == SMB_COM_NEGOTIATE) { + work->conn->outstanding_credits++; return 0; + } return -EINVAL; } diff -u linux-intel-iotg-5.15-5.15.0/fs/namei.c linux-intel-iotg-5.15-5.15.0/fs/namei.c --- linux-intel-iotg-5.15-5.15.0/fs/namei.c +++ linux-intel-iotg-5.15-5.15.0/fs/namei.c @@ -2718,7 +2718,8 @@ EXPORT_SYMBOL(lookup_one); /** - * lookup_one_len_unlocked - filesystem helper to lookup single pathname component + * lookup_one_unlocked - filesystem helper to lookup single pathname component + * @mnt_userns: idmapping of the mount the lookup is performed from * @name: pathname component to lookup * @base: base directory to lookup from * @len: maximum length @len should be interpreted to @@ -2729,14 +2730,15 @@ * Unlike lookup_one_len, it should be called without the parent * i_mutex held, and will take the i_mutex itself if necessary. */ -struct dentry *lookup_one_len_unlocked(const char *name, - struct dentry *base, int len) +struct dentry *lookup_one_unlocked(struct user_namespace *mnt_userns, + const char *name, struct dentry *base, + int len) { struct qstr this; int err; struct dentry *ret; - err = lookup_one_common(&init_user_ns, name, base, len, &this); + err = lookup_one_common(mnt_userns, name, base, len, &this); if (err) return ERR_PTR(err); @@ -2745,6 +2747,59 @@ ret = lookup_slow(&this, base, 0); return ret; } +EXPORT_SYMBOL(lookup_one_unlocked); + +/** + * lookup_one_positive_unlocked - filesystem helper to lookup single + * pathname component + * @mnt_userns: idmapping of the mount the lookup is performed from + * @name: pathname component to lookup + * @base: base directory to lookup from + * @len: maximum length @len should be interpreted to + * + * This helper will yield ERR_PTR(-ENOENT) on negatives. The helper returns + * known positive or ERR_PTR(). This is what most of the users want. + * + * Note that pinned negative with unlocked parent _can_ become positive at any + * time, so callers of lookup_one_unlocked() need to be very careful; pinned + * positives have >d_inode stable, so this one avoids such problems. + * + * Note that this routine is purely a helper for filesystem usage and should + * not be called by generic code. + * + * The helper should be called without i_mutex held. + */ +struct dentry *lookup_one_positive_unlocked(struct user_namespace *mnt_userns, + const char *name, + struct dentry *base, int len) +{ + struct dentry *ret = lookup_one_unlocked(mnt_userns, name, base, len); + + if (!IS_ERR(ret) && d_flags_negative(smp_load_acquire(&ret->d_flags))) { + dput(ret); + ret = ERR_PTR(-ENOENT); + } + return ret; +} +EXPORT_SYMBOL(lookup_one_positive_unlocked); + +/** + * lookup_one_len_unlocked - filesystem helper to lookup single pathname component + * @name: pathname component to lookup + * @base: base directory to lookup from + * @len: maximum length @len should be interpreted to + * + * Note that this routine is purely a helper for filesystem usage and should + * not be called by generic code. + * + * Unlike lookup_one_len, it should be called without the parent + * i_mutex held, and will take the i_mutex itself if necessary. + */ +struct dentry *lookup_one_len_unlocked(const char *name, + struct dentry *base, int len) +{ + return lookup_one_unlocked(&init_user_ns, name, base, len); +} EXPORT_SYMBOL(lookup_one_len_unlocked); /* @@ -2758,12 +2813,7 @@ struct dentry *lookup_positive_unlocked(const char *name, struct dentry *base, int len) { - struct dentry *ret = lookup_one_len_unlocked(name, base, len); - if (!IS_ERR(ret) && d_flags_negative(smp_load_acquire(&ret->d_flags))) { - dput(ret); - ret = ERR_PTR(-ENOENT); - } - return ret; + return lookup_one_positive_unlocked(&init_user_ns, name, base, len); } EXPORT_SYMBOL(lookup_positive_unlocked); @@ -3625,18 +3675,14 @@ { struct dentry *dentry = ERR_PTR(-EEXIST); struct qstr last; + bool want_dir = lookup_flags & LOOKUP_DIRECTORY; + unsigned int reval_flag = lookup_flags & LOOKUP_REVAL; + unsigned int create_flags = LOOKUP_CREATE | LOOKUP_EXCL; int type; int err2; int error; - bool is_dir = (lookup_flags & LOOKUP_DIRECTORY); - - /* - * Note that only LOOKUP_REVAL and LOOKUP_DIRECTORY matter here. Any - * other flags passed in are ignored! - */ - lookup_flags &= LOOKUP_REVAL; - error = filename_parentat(dfd, name, lookup_flags, path, &last, &type); + error = filename_parentat(dfd, name, reval_flag, path, &last, &type); if (error) return ERR_PTR(error); @@ -3650,11 +3696,13 @@ /* don't fail immediately if it's r/o, at least try to report other errors */ err2 = mnt_want_write(path->mnt); /* - * Do the final lookup. + * Do the final lookup. Suppress 'create' if there is a trailing + * '/', and a directory wasn't requested. */ - lookup_flags |= LOOKUP_CREATE | LOOKUP_EXCL; + if (last.name[last.len] && !want_dir) + create_flags = 0; inode_lock_nested(path->dentry->d_inode, I_MUTEX_PARENT); - dentry = __lookup_hash(&last, path->dentry, lookup_flags); + dentry = __lookup_hash(&last, path->dentry, reval_flag | create_flags); if (IS_ERR(dentry)) goto unlock; @@ -3668,7 +3716,7 @@ * all is fine. Let's be bastards - you had / on the end, you've * been asking for (non-existent) directory. -ENOENT for you. */ - if (unlikely(!is_dir && last.name[last.len])) { + if (unlikely(!create_flags)) { error = -ENOENT; goto fail; } diff -u linux-intel-iotg-5.15-5.15.0/fs/nfs/file.c linux-intel-iotg-5.15-5.15.0/fs/nfs/file.c --- linux-intel-iotg-5.15-5.15.0/fs/nfs/file.c +++ linux-intel-iotg-5.15-5.15.0/fs/nfs/file.c @@ -208,15 +208,16 @@ nfs_file_fsync_commit(struct file *file, int datasync) { struct inode *inode = file_inode(file); - int ret; + int ret, ret2; dprintk("NFS: fsync file(%pD2) datasync %d\n", file, datasync); nfs_inc_stats(inode, NFSIOS_VFSFSYNC); ret = nfs_commit_inode(inode, FLUSH_SYNC); - if (ret < 0) - return ret; - return file_check_and_advance_wb_err(file); + ret2 = file_check_and_advance_wb_err(file); + if (ret2 < 0) + return ret2; + return ret; } int @@ -389,11 +390,8 @@ return status; NFS_I(mapping->host)->write_io += copied; - if (nfs_ctx_key_to_expire(ctx, mapping->host)) { - status = nfs_wb_all(mapping->host); - if (status < 0) - return status; - } + if (nfs_ctx_key_to_expire(ctx, mapping->host)) + nfs_wb_all(mapping->host); return copied; } @@ -590,18 +588,6 @@ .page_mkwrite = nfs_vm_page_mkwrite, }; -static int nfs_need_check_write(struct file *filp, struct inode *inode, - int error) -{ - struct nfs_open_context *ctx; - - ctx = nfs_file_open_context(filp); - if (nfs_error_is_fatal_on_server(error) || - nfs_ctx_key_to_expire(ctx, inode)) - return 1; - return 0; -} - ssize_t nfs_file_write(struct kiocb *iocb, struct iov_iter *from) { struct file *file = iocb->ki_filp; @@ -629,7 +615,7 @@ if (iocb->ki_flags & IOCB_APPEND || iocb->ki_pos > i_size_read(inode)) { result = nfs_revalidate_file_size(inode, file); if (result) - goto out; + return result; } nfs_clear_invalid_mapping(file->f_mapping); @@ -648,6 +634,7 @@ written = result; iocb->ki_pos += written; + nfs_add_stats(inode, NFSIOS_NORMALWRITTENBYTES, written); if (mntflags & NFS_MOUNT_WRITE_EAGER) { result = filemap_fdatawrite_range(file->f_mapping, @@ -665,17 +652,22 @@ } result = generic_write_sync(iocb, written); if (result < 0) - goto out; + return result; +out: /* Return error values */ error = filemap_check_wb_err(file->f_mapping, since); - if (nfs_need_check_write(file, inode, error)) { - int err = nfs_wb_all(inode); - if (err < 0) - result = err; + switch (error) { + default: + break; + case -EDQUOT: + case -EFBIG: + case -ENOSPC: + nfs_wb_all(inode); + error = file_check_and_advance_wb_err(file); + if (error < 0) + result = error; } - nfs_add_stats(inode, NFSIOS_NORMALWRITTENBYTES, written); -out: return result; out_swapfile: diff -u linux-intel-iotg-5.15-5.15.0/fs/nfs/inode.c linux-intel-iotg-5.15-5.15.0/fs/nfs/inode.c --- linux-intel-iotg-5.15-5.15.0/fs/nfs/inode.c +++ linux-intel-iotg-5.15-5.15.0/fs/nfs/inode.c @@ -1026,7 +1026,7 @@ ctx->cred = get_cred(filp->f_cred); else ctx->cred = get_current_cred(); - ctx->ll_cred = NULL; + rcu_assign_pointer(ctx->ll_cred, NULL); ctx->state = NULL; ctx->mode = f_mode; ctx->flags = 0; @@ -1065,7 +1065,7 @@ put_cred(ctx->cred); dput(ctx->dentry); nfs_sb_deactive(sb); - put_rpccred(ctx->ll_cred); + put_rpccred(rcu_dereference_protected(ctx->ll_cred, 1)); kfree(ctx->mdsthreshold); kfree_rcu(ctx, rcu_head); } @@ -1580,18 +1580,37 @@ { struct nfs_fattr *fattr; - fattr = kmalloc(sizeof(*fattr), GFP_NOFS); - if (fattr != NULL) + fattr = kmalloc(sizeof(*fattr), GFP_KERNEL); + if (fattr != NULL) { nfs_fattr_init(fattr); + fattr->label = NULL; + } return fattr; } EXPORT_SYMBOL_GPL(nfs_alloc_fattr); +struct nfs_fattr *nfs_alloc_fattr_with_label(struct nfs_server *server) +{ + struct nfs_fattr *fattr = nfs_alloc_fattr(); + + if (!fattr) + return NULL; + + fattr->label = nfs4_label_alloc(server, GFP_KERNEL); + if (IS_ERR(fattr->label)) { + kfree(fattr); + return NULL; + } + + return fattr; +} +EXPORT_SYMBOL_GPL(nfs_alloc_fattr_with_label); + struct nfs_fh *nfs_alloc_fhandle(void) { struct nfs_fh *fh; - fh = kmalloc(sizeof(struct nfs_fh), GFP_NOFS); + fh = kmalloc(sizeof(struct nfs_fh), GFP_KERNEL); if (fh != NULL) fh->size = 0; return fh; diff -u linux-intel-iotg-5.15-5.15.0/fs/nfs/internal.h linux-intel-iotg-5.15-5.15.0/fs/nfs/internal.h --- linux-intel-iotg-5.15-5.15.0/fs/nfs/internal.h +++ linux-intel-iotg-5.15-5.15.0/fs/nfs/internal.h @@ -351,14 +351,6 @@ return dst; } -static inline void nfs4_label_free(struct nfs4_label *label) -{ - if (label) { - kfree(label->label); - kfree(label); - } - return; -} static inline void nfs_zap_label_cache_locked(struct nfs_inode *nfsi) { @@ -367,7 +359,6 @@ } #else static inline struct nfs4_label *nfs4_label_alloc(struct nfs_server *server, gfp_t flags) { return NULL; } -static inline void nfs4_label_free(void *label) {} static inline void nfs_zap_label_cache_locked(struct nfs_inode *nfsi) { } @@ -834,6 +825,7 @@ case 0: case -ERESTARTSYS: case -EINTR: + case -ENOMEM: return false; } return nfs_error_is_fatal(err); diff -u linux-intel-iotg-5.15-5.15.0/fs/nfs/nfs4proc.c linux-intel-iotg-5.15-5.15.0/fs/nfs/nfs4proc.c --- linux-intel-iotg-5.15-5.15.0/fs/nfs/nfs4proc.c +++ linux-intel-iotg-5.15-5.15.0/fs/nfs/nfs4proc.c @@ -370,6 +370,14 @@ kunmap_atomic(start); } +static void nfs4_fattr_set_prechange(struct nfs_fattr *fattr, u64 version) +{ + if (!(fattr->valid & NFS_ATTR_FATTR_PRECHANGE)) { + fattr->pre_change_attr = version; + fattr->valid |= NFS_ATTR_FATTR_PRECHANGE; + } +} + static void nfs4_test_and_free_stateid(struct nfs_server *server, nfs4_stateid *stateid, const struct cred *cred) @@ -1161,7 +1169,7 @@ { unsigned short task_flags = 0; - if (server->nfs_client->cl_minorversion) + if (server->caps & NFS_CAP_MOVEABLE) task_flags = RPC_TASK_MOVEABLE; return nfs4_do_call_sync(clnt, server, msg, args, res, task_flags); } @@ -2574,7 +2582,7 @@ }; int status; - if (server->nfs_client->cl_minorversion) + if (nfs_server_capable(dir, NFS_CAP_MOVEABLE)) task_setup_data.flags |= RPC_TASK_MOVEABLE; kref_get(&data->kref); @@ -3757,7 +3765,7 @@ }; int status = -ENOMEM; - if (server->nfs_client->cl_minorversion) + if (nfs_server_capable(state->inode, NFS_CAP_MOVEABLE)) task_setup_data.flags |= RPC_TASK_MOVEABLE; nfs4_state_protect(server->nfs_client, NFS_SP4_MACH_CRED_CLEANUP, @@ -4377,7 +4385,7 @@ }; unsigned short task_flags = 0; - if (server->nfs_client->cl_minorversion) + if (nfs_server_capable(dir, NFS_CAP_MOVEABLE)) task_flags = RPC_TASK_MOVEABLE; /* Is this is an attribute revalidation, subject to softreval? */ @@ -5896,7 +5904,7 @@ buflen = server->rsize; npages = DIV_ROUND_UP(buflen, PAGE_SIZE) + 1; - pages = kmalloc_array(npages, sizeof(struct page *), GFP_NOFS); + pages = kmalloc_array(npages, sizeof(struct page *), GFP_KERNEL); if (!pages) return -ENOMEM; @@ -6562,7 +6570,9 @@ pnfs_roc_release(&data->lr.arg, &data->lr.res, data->res.lr_ret); if (inode) { - nfs_post_op_update_inode_force_wcc(inode, &data->fattr); + nfs4_fattr_set_prechange(&data->fattr, + inode_peek_iversion_raw(inode)); + nfs_refresh_inode(inode, &data->fattr); nfs_iput_and_deactive(inode); } kfree(calldata); @@ -6611,11 +6621,14 @@ .rpc_client = server->client, .rpc_message = &msg, .callback_ops = &nfs4_delegreturn_ops, - .flags = RPC_TASK_ASYNC | RPC_TASK_TIMEOUT | RPC_TASK_MOVEABLE, + .flags = RPC_TASK_ASYNC | RPC_TASK_TIMEOUT, }; int status = 0; - data = kzalloc(sizeof(*data), GFP_NOFS); + if (nfs_server_capable(inode, NFS_CAP_MOVEABLE)) + task_setup_data.flags |= RPC_TASK_MOVEABLE; + + data = kzalloc(sizeof(*data), GFP_KERNEL); if (data == NULL) return -ENOMEM; @@ -6804,7 +6817,7 @@ struct nfs4_state *state = lsp->ls_state; struct inode *inode = state->inode; - p = kzalloc(sizeof(*p), GFP_NOFS); + p = kzalloc(sizeof(*p), GFP_KERNEL); if (p == NULL) return NULL; p->arg.fh = NFS_FH(inode); @@ -6929,10 +6942,8 @@ .workqueue = nfsiod_workqueue, .flags = RPC_TASK_ASYNC, }; - struct nfs_client *client = - NFS_SERVER(lsp->ls_state->inode)->nfs_client; - if (client->cl_minorversion) + if (nfs_server_capable(lsp->ls_state->inode, NFS_CAP_MOVEABLE)) task_setup_data.flags |= RPC_TASK_MOVEABLE; nfs4_state_protect(NFS_SERVER(lsp->ls_state->inode)->nfs_client, @@ -7208,15 +7219,13 @@ .flags = RPC_TASK_ASYNC | RPC_TASK_CRED_NOREF, }; int ret; - struct nfs_client *client = NFS_SERVER(state->inode)->nfs_client; - if (client->cl_minorversion) + if (nfs_server_capable(state->inode, NFS_CAP_MOVEABLE)) task_setup_data.flags |= RPC_TASK_MOVEABLE; dprintk("%s: begin!\n", __func__); data = nfs4_alloc_lockdata(fl, nfs_file_open_context(fl->fl_file), - fl->fl_u.nfs4_fl.owner, - recovery_type == NFS_LOCK_NEW ? GFP_KERNEL : GFP_NOFS); + fl->fl_u.nfs4_fl.owner, GFP_KERNEL); if (data == NULL) return -ENOMEM; if (IS_SETLKW(cmd)) @@ -7639,7 +7648,7 @@ if (server->nfs_client->cl_mvops->minor_version != 0) return; - data = kmalloc(sizeof(*data), GFP_NOFS); + data = kmalloc(sizeof(*data), GFP_KERNEL); if (!data) return; data->lsp = lsp; @@ -9316,7 +9325,7 @@ goto out_err; ret = ERR_PTR(-ENOMEM); - calldata = kzalloc(sizeof(*calldata), GFP_NOFS); + calldata = kzalloc(sizeof(*calldata), GFP_KERNEL); if (calldata == NULL) goto out_put_clp; nfs4_init_sequence(&calldata->args, &calldata->res, 0, is_privileged); @@ -10260,7 +10269,7 @@ &task_setup.rpc_client, &msg); dprintk("NFS call free_stateid %p\n", stateid); - data = kmalloc(sizeof(*data), GFP_NOFS); + data = kmalloc(sizeof(*data), GFP_KERNEL); if (!data) return -ENOMEM; data->server = server; @@ -10409,7 +10418,8 @@ | NFS_CAP_POSIX_LOCK | NFS_CAP_STATEID_NFSV41 | NFS_CAP_ATOMIC_OPEN_V1 - | NFS_CAP_LGOPEN, + | NFS_CAP_LGOPEN + | NFS_CAP_MOVEABLE, .init_client = nfs41_init_client, .shutdown_client = nfs41_shutdown_client, .match_stateid = nfs41_match_stateid, @@ -10444,7 +10454,8 @@ | NFS_CAP_LAYOUTSTATS | NFS_CAP_CLONE | NFS_CAP_LAYOUTERROR - | NFS_CAP_READ_PLUS, + | NFS_CAP_READ_PLUS + | NFS_CAP_MOVEABLE, .init_client = nfs41_init_client, .shutdown_client = nfs41_shutdown_client, .match_stateid = nfs41_match_stateid, diff -u linux-intel-iotg-5.15-5.15.0/fs/nfs/nfs4state.c linux-intel-iotg-5.15-5.15.0/fs/nfs/nfs4state.c --- linux-intel-iotg-5.15-5.15.0/fs/nfs/nfs4state.c +++ linux-intel-iotg-5.15-5.15.0/fs/nfs/nfs4state.c @@ -821,7 +821,7 @@ void nfs4_close_state(struct nfs4_state *state, fmode_t fmode) { - __nfs4_close(state, fmode, GFP_NOFS, 0); + __nfs4_close(state, fmode, GFP_KERNEL, 0); } void nfs4_close_sync(struct nfs4_state *state, fmode_t fmode) diff -u linux-intel-iotg-5.15-5.15.0/fs/nfs/pagelist.c linux-intel-iotg-5.15-5.15.0/fs/nfs/pagelist.c --- linux-intel-iotg-5.15-5.15.0/fs/nfs/pagelist.c +++ linux-intel-iotg-5.15-5.15.0/fs/nfs/pagelist.c @@ -773,6 +773,9 @@ .flags = RPC_TASK_ASYNC | flags, }; + if (nfs_server_capable(hdr->inode, NFS_CAP_MOVEABLE)) + task_setup_data.flags |= RPC_TASK_MOVEABLE; + hdr->rw_ops->rw_initiate(hdr, &msg, rpc_ops, &task_setup_data, how); dprintk("NFS: initiated pgio call " diff -u linux-intel-iotg-5.15-5.15.0/fs/nfs/pnfs.c linux-intel-iotg-5.15-5.15.0/fs/nfs/pnfs.c --- linux-intel-iotg-5.15-5.15.0/fs/nfs/pnfs.c +++ linux-intel-iotg-5.15-5.15.0/fs/nfs/pnfs.c @@ -1244,7 +1244,7 @@ int status = 0; *pcred = NULL; - lrp = kzalloc(sizeof(*lrp), GFP_NOFS); + lrp = kzalloc(sizeof(*lrp), GFP_KERNEL); if (unlikely(lrp == NULL)) { status = -ENOMEM; spin_lock(&ino->i_lock); @@ -2000,6 +2000,7 @@ lo = pnfs_find_alloc_layout(ino, ctx, gfp_flags); if (lo == NULL) { spin_unlock(&ino->i_lock); + lseg = ERR_PTR(-ENOMEM); trace_pnfs_update_layout(ino, pos, count, iomode, lo, lseg, PNFS_UPDATE_LAYOUT_NOMEM); goto out; @@ -2128,6 +2129,7 @@ lgp = pnfs_alloc_init_layoutget_args(ino, ctx, &stateid, &arg, gfp_flags); if (!lgp) { + lseg = ERR_PTR(-ENOMEM); trace_pnfs_update_layout(ino, pos, count, iomode, lo, NULL, PNFS_UPDATE_LAYOUT_NOMEM); nfs_layoutget_end(lo); @@ -3261,7 +3263,7 @@ { struct nfs4_threshold *thp; - thp = kzalloc(sizeof(*thp), GFP_NOFS); + thp = kzalloc(sizeof(*thp), GFP_KERNEL); if (!thp) { dprintk("%s mdsthreshold allocation failed\n", __func__); return NULL; diff -u linux-intel-iotg-5.15-5.15.0/fs/nfs/write.c linux-intel-iotg-5.15-5.15.0/fs/nfs/write.c --- linux-intel-iotg-5.15-5.15.0/fs/nfs/write.c +++ linux-intel-iotg-5.15-5.15.0/fs/nfs/write.c @@ -601,8 +601,9 @@ * Find an associated nfs write request, and prepare to flush it out * May return an error if the user signalled nfs_wait_on_request(). */ -static int nfs_page_async_flush(struct nfs_pageio_descriptor *pgio, - struct page *page) +static int nfs_page_async_flush(struct page *page, + struct writeback_control *wbc, + struct nfs_pageio_descriptor *pgio) { struct nfs_page *req; int ret = 0; @@ -628,11 +629,11 @@ /* * Remove the problematic req upon fatal errors on the server */ - if (nfs_error_is_fatal(ret)) { - if (nfs_error_is_fatal_on_server(ret)) - goto out_launder; - } else - ret = -EAGAIN; + if (nfs_error_is_fatal_on_server(ret)) + goto out_launder; + if (wbc->sync_mode == WB_SYNC_NONE) + ret = AOP_WRITEPAGE_ACTIVATE; + redirty_page_for_writepage(wbc, page); nfs_redirty_request(req); pgio->pg_error = 0; } else @@ -648,15 +649,8 @@ static int nfs_do_writepage(struct page *page, struct writeback_control *wbc, struct nfs_pageio_descriptor *pgio) { - int ret; - nfs_pageio_cond_complete(pgio, page_index(page)); - ret = nfs_page_async_flush(pgio, page); - if (ret == -EAGAIN) { - redirty_page_for_writepage(wbc, page); - ret = AOP_WRITEPAGE_ACTIVATE; - } - return ret; + return nfs_page_async_flush(page, wbc, pgio); } /* @@ -675,11 +669,7 @@ err = nfs_do_writepage(page, wbc, &pgio); pgio.pg_error = 0; nfs_pageio_complete(&pgio); - if (err < 0) - return err; - if (nfs_error_is_fatal(pgio.pg_error)) - return pgio.pg_error; - return 0; + return err; } int nfs_writepage(struct page *page, struct writeback_control *wbc) @@ -727,19 +717,19 @@ priority = wb_priority(wbc); } - nfs_pageio_init_write(&pgio, inode, priority, false, - &nfs_async_write_completion_ops); - pgio.pg_io_completion = ioc; - err = write_cache_pages(mapping, wbc, nfs_writepages_callback, &pgio); - pgio.pg_error = 0; - nfs_pageio_complete(&pgio); + do { + nfs_pageio_init_write(&pgio, inode, priority, false, + &nfs_async_write_completion_ops); + pgio.pg_io_completion = ioc; + err = write_cache_pages(mapping, wbc, nfs_writepages_callback, + &pgio); + pgio.pg_error = 0; + nfs_pageio_complete(&pgio); + } while (err < 0 && !nfs_error_is_fatal(err)); nfs_io_completion_put(ioc); if (err < 0) goto out_err; - err = pgio.pg_error; - if (nfs_error_is_fatal(err)) - goto out_err; return 0; out_err: return err; @@ -1231,7 +1221,7 @@ struct nfs_open_context *ctx = nfs_file_open_context(filp); if (nfs_ctx_key_to_expire(ctx, inode) && - !ctx->ll_cred) + !rcu_access_pointer(ctx->ll_cred)) /* Already expired! */ return -EACCES; return 0; @@ -1243,23 +1233,38 @@ bool nfs_ctx_key_to_expire(struct nfs_open_context *ctx, struct inode *inode) { struct rpc_auth *auth = NFS_SERVER(inode)->client->cl_auth; - struct rpc_cred *cred = ctx->ll_cred; + struct rpc_cred *cred, *new, *old = NULL; struct auth_cred acred = { .cred = ctx->cred, }; + bool ret = false; - if (cred && !cred->cr_ops->crmatch(&acred, cred, 0)) { - put_rpccred(cred); - ctx->ll_cred = NULL; - cred = NULL; - } - if (!cred) - cred = auth->au_ops->lookup_cred(auth, &acred, 0); - if (!cred || IS_ERR(cred)) + rcu_read_lock(); + cred = rcu_dereference(ctx->ll_cred); + if (cred && !(cred->cr_ops->crkey_timeout && + cred->cr_ops->crkey_timeout(cred))) + goto out; + rcu_read_unlock(); + + new = auth->au_ops->lookup_cred(auth, &acred, 0); + if (new == cred) { + put_rpccred(new); return true; - ctx->ll_cred = cred; - return !!(cred->cr_ops->crkey_timeout && - cred->cr_ops->crkey_timeout(cred)); + } + if (IS_ERR_OR_NULL(new)) { + new = NULL; + ret = true; + } else if (new->cr_ops->crkey_timeout && + new->cr_ops->crkey_timeout(new)) + ret = true; + + rcu_read_lock(); + old = rcu_dereference_protected(xchg(&ctx->ll_cred, + RCU_INITIALIZER(new)), 1); +out: + rcu_read_unlock(); + put_rpccred(old); + return ret; } /* @@ -1419,7 +1424,7 @@ while (!list_empty(head)) { req = nfs_list_entry(head->next); nfs_list_remove_request(req); - if (nfs_error_is_fatal(error)) + if (nfs_error_is_fatal_on_server(error)) nfs_write_error(req, error); else nfs_redirty_request(req); @@ -1694,6 +1699,10 @@ .flags = RPC_TASK_ASYNC | flags, .priority = priority, }; + + if (nfs_server_capable(data->inode, NFS_CAP_MOVEABLE)) + task_setup_data.flags |= RPC_TASK_MOVEABLE; + /* Set up the initial task struct. */ nfs_ops->commit_setup(data, &msg, &task_setup_data.rpc_client); trace_nfs_initiate_commit(data); diff -u linux-intel-iotg-5.15-5.15.0/fs/nfsd/nfs4state.c linux-intel-iotg-5.15-5.15.0/fs/nfsd/nfs4state.c --- linux-intel-iotg-5.15-5.15.0/fs/nfsd/nfs4state.c +++ linux-intel-iotg-5.15-5.15.0/fs/nfsd/nfs4state.c @@ -7299,16 +7299,12 @@ if (sop->so_is_open_owner || !same_owner_str(sop, owner)) continue; - /* see if there are still any locks associated with it */ - lo = lockowner(sop); - list_for_each_entry(stp, &sop->so_stateids, st_perstateowner) { - if (check_for_locks(stp->st_stid.sc_file, lo)) { - status = nfserr_locks_held; - spin_unlock(&clp->cl_lock); - return status; - } + if (atomic_read(&sop->so_count) != 1) { + spin_unlock(&clp->cl_lock); + return nfserr_locks_held; } + lo = lockowner(sop); nfs4_get_stateowner(sop); break; } diff -u linux-intel-iotg-5.15-5.15.0/fs/overlayfs/file.c linux-intel-iotg-5.15-5.15.0/fs/overlayfs/file.c --- linux-intel-iotg-5.15-5.15.0/fs/overlayfs/file.c +++ linux-intel-iotg-5.15-5.15.0/fs/overlayfs/file.c @@ -515,8 +515,6 @@ get_file(file); vma->vm_region->vm_prfile = file; #endif - /* Drop reference count from previous vm_file value */ - fput(file); } #else /* !CONFIG_AUFS_FS */ static void ovl_vm_prfile_set(struct vm_area_struct *vma, diff -u linux-intel-iotg-5.15-5.15.0/fs/pipe.c linux-intel-iotg-5.15-5.15.0/fs/pipe.c --- linux-intel-iotg-5.15-5.15.0/fs/pipe.c +++ linux-intel-iotg-5.15-5.15.0/fs/pipe.c @@ -652,7 +652,7 @@ unsigned int head, tail; /* Epoll has some historical nasty semantics, this enables them */ - pipe->poll_usage = 1; + WRITE_ONCE(pipe->poll_usage, true); /* * Reading pipe state only -- no need for acquiring the semaphore. @@ -1244,30 +1244,33 @@ /* * Resize the pipe ring to a number of slots. + * + * Note the pipe can be reduced in capacity, but only if the current + * occupancy doesn't exceed nr_slots; if it does, EBUSY will be + * returned instead. */ int pipe_resize_ring(struct pipe_inode_info *pipe, unsigned int nr_slots) { struct pipe_buffer *bufs; unsigned int head, tail, mask, n; - /* - * We can shrink the pipe, if arg is greater than the ring occupancy. - * Since we don't expect a lot of shrink+grow operations, just free and - * allocate again like we would do for growing. If the pipe currently - * contains more buffers than arg, then return busy. - */ - mask = pipe->ring_size - 1; - head = pipe->head; - tail = pipe->tail; - n = pipe_occupancy(pipe->head, pipe->tail); - if (nr_slots < n) - return -EBUSY; - bufs = kcalloc(nr_slots, sizeof(*bufs), GFP_KERNEL_ACCOUNT | __GFP_NOWARN); if (unlikely(!bufs)) return -ENOMEM; + spin_lock_irq(&pipe->rd_wait.lock); + mask = pipe->ring_size - 1; + head = pipe->head; + tail = pipe->tail; + + n = pipe_occupancy(head, tail); + if (nr_slots < n) { + spin_unlock_irq(&pipe->rd_wait.lock); + kfree(bufs); + return -EBUSY; + } + /* * The pipe array wraps around, so just start the new one at zero * and adjust the indices. @@ -1299,6 +1302,8 @@ pipe->tail = tail; pipe->head = head; + spin_unlock_irq(&pipe->rd_wait.lock); + /* This might have made more room for writers */ wake_up_interruptible(&pipe->wr_wait); return 0; diff -u linux-intel-iotg-5.15-5.15.0/fs/sync.c linux-intel-iotg-5.15-5.15.0/fs/sync.c --- linux-intel-iotg-5.15-5.15.0/fs/sync.c +++ linux-intel-iotg-5.15-5.15.0/fs/sync.c @@ -82,21 +82,6 @@ sb->s_op->sync_fs(sb, *(int *)arg); } -static void fdatawrite_one_bdev(struct block_device *bdev, void *arg) -{ - filemap_fdatawrite(bdev->bd_inode->i_mapping); -} - -static void fdatawait_one_bdev(struct block_device *bdev, void *arg) -{ - /* - * We keep the error status of individual mapping so that - * applications can catch the writeback error using fsync(2). - * See filemap_fdatawait_keep_errors() for details. - */ - filemap_fdatawait_keep_errors(bdev->bd_inode->i_mapping); -} - /* * Sync everything. We start by waking flusher threads so that most of * writeback runs on all devices in parallel. Then we sync all inodes reliably @@ -115,8 +100,8 @@ iterate_supers(sync_inodes_one_sb, NULL); iterate_supers(sync_fs_one_sb, &nowait); iterate_supers(sync_fs_one_sb, &wait); - iterate_bdevs(fdatawrite_one_bdev, NULL); - iterate_bdevs(fdatawait_one_bdev, NULL); + sync_bdevs(false); + sync_bdevs(true); if (unlikely(laptop_mode)) laptop_sync_completion(); } @@ -137,10 +122,10 @@ */ iterate_supers(sync_inodes_one_sb, &nowait); iterate_supers(sync_fs_one_sb, &nowait); - iterate_bdevs(fdatawrite_one_bdev, NULL); + sync_bdevs(false); iterate_supers(sync_inodes_one_sb, &nowait); iterate_supers(sync_fs_one_sb, &nowait); - iterate_bdevs(fdatawrite_one_bdev, NULL); + sync_bdevs(false); printk("Emergency Sync complete\n"); kfree(work); } diff -u linux-intel-iotg-5.15-5.15.0/fs/udf/namei.c linux-intel-iotg-5.15-5.15.0/fs/udf/namei.c --- linux-intel-iotg-5.15-5.15.0/fs/udf/namei.c +++ linux-intel-iotg-5.15-5.15.0/fs/udf/namei.c @@ -75,11 +75,11 @@ if (fileident) { if (adinicb || (offset + lfi < 0)) { - memcpy(udf_get_fi_ident(sfi), fileident, lfi); + memcpy(sfi->impUse + liu, fileident, lfi); } else if (offset >= 0) { memcpy(fibh->ebh->b_data + offset, fileident, lfi); } else { - memcpy(udf_get_fi_ident(sfi), fileident, -offset); + memcpy(sfi->impUse + liu, fileident, -offset); memcpy(fibh->ebh->b_data, fileident - offset, lfi + offset); } @@ -88,11 +88,11 @@ offset += lfi; if (adinicb || (offset + padlen < 0)) { - memset(udf_get_fi_ident(sfi) + lfi, 0x00, padlen); + memset(sfi->impUse + liu + lfi, 0x00, padlen); } else if (offset >= 0) { memset(fibh->ebh->b_data + offset, 0x00, padlen); } else { - memset(udf_get_fi_ident(sfi) + lfi, 0x00, -offset); + memset(sfi->impUse + liu + lfi, 0x00, -offset); memset(fibh->ebh->b_data, 0x00, padlen + offset); } diff -u linux-intel-iotg-5.15-5.15.0/fs/zonefs/super.c linux-intel-iotg-5.15-5.15.0/fs/zonefs/super.c --- linux-intel-iotg-5.15-5.15.0/fs/zonefs/super.c +++ linux-intel-iotg-5.15-5.15.0/fs/zonefs/super.c @@ -35,6 +35,17 @@ lockdep_assert_held(&zi->i_truncate_mutex); + /* + * With ZNS drives, closing an explicitly open zone that has not been + * written will change the zone state to "closed", that is, the zone + * will remain active. Since this can then cause failure of explicit + * open operation on other zones if the drive active zone resources + * are exceeded, make sure that the zone does not remain active by + * resetting it. + */ + if (op == REQ_OP_ZONE_CLOSE && !zi->i_wpoffset) + op = REQ_OP_ZONE_RESET; + trace_zonefs_zone_mgmt(inode, op); ret = blkdev_zone_mgmt(inode->i_sb->s_bdev, op, zi->i_zsector, zi->i_zone_size >> SECTOR_SHIFT, GFP_NOFS); @@ -852,7 +863,7 @@ ret = zonefs_file_dio_append(iocb, from); else ret = iomap_dio_rw(iocb, from, &zonefs_iomap_ops, - &zonefs_write_dio_ops, 0); + &zonefs_write_dio_ops, 0, 0); if (zi->i_ztype == ZONEFS_ZTYPE_SEQ && (ret > 0 || ret == -EIOCBQUEUED)) { if (ret > 0) @@ -987,7 +998,7 @@ } file_accessed(iocb->ki_filp); ret = iomap_dio_rw(iocb, to, &zonefs_iomap_ops, - &zonefs_read_dio_ops, 0); + &zonefs_read_dio_ops, 0, 0); } else { ret = generic_file_read_iter(iocb, to); if (ret == -EIO) @@ -1144,6 +1155,7 @@ inode_init_once(&zi->i_vnode); mutex_init(&zi->i_truncate_mutex); zi->i_wr_refcnt = 0; + zi->i_flags = 0; return &zi->i_vnode; } @@ -1295,12 +1307,13 @@ inc_nlink(parent); } -static void zonefs_init_file_inode(struct inode *inode, struct blk_zone *zone, - enum zonefs_ztype type) +static int zonefs_init_file_inode(struct inode *inode, struct blk_zone *zone, + enum zonefs_ztype type) { struct super_block *sb = inode->i_sb; struct zonefs_sb_info *sbi = ZONEFS_SB(sb); struct zonefs_inode_info *zi = ZONEFS_I(inode); + int ret = 0; inode->i_ino = zone->start >> sbi->s_zone_sectors_shift; inode->i_mode = S_IFREG | sbi->s_perm; @@ -1325,6 +1338,22 @@ sb->s_maxbytes = max(zi->i_max_size, sb->s_maxbytes); sbi->s_blocks += zi->i_max_size >> sb->s_blocksize_bits; sbi->s_used_blocks += zi->i_wpoffset >> sb->s_blocksize_bits; + + /* + * For sequential zones, make sure that any open zone is closed first + * to ensure that the initial number of open zones is 0, in sync with + * the open zone accounting done when the mount option + * ZONEFS_MNTOPT_EXPLICIT_OPEN is used. + */ + if (type == ZONEFS_ZTYPE_SEQ && + (zone->cond == BLK_ZONE_COND_IMP_OPEN || + zone->cond == BLK_ZONE_COND_EXP_OPEN)) { + mutex_lock(&zi->i_truncate_mutex); + ret = zonefs_zone_mgmt(inode, REQ_OP_ZONE_CLOSE); + mutex_unlock(&zi->i_truncate_mutex); + } + + return ret; } static struct dentry *zonefs_create_inode(struct dentry *parent, @@ -1334,6 +1363,7 @@ struct inode *dir = d_inode(parent); struct dentry *dentry; struct inode *inode; + int ret; dentry = d_alloc_name(parent, name); if (!dentry) @@ -1344,10 +1374,16 @@ goto dput; inode->i_ctime = inode->i_mtime = inode->i_atime = dir->i_ctime; - if (zone) - zonefs_init_file_inode(inode, zone, type); - else + if (zone) { + ret = zonefs_init_file_inode(inode, zone, type); + if (ret) { + iput(inode); + goto dput; + } + } else { zonefs_init_dir_inode(dir, inode, type); + } + d_add(dentry, inode); dir->i_size++; diff -u linux-intel-iotg-5.15-5.15.0/include/linux/blkdev.h linux-intel-iotg-5.15-5.15.0/include/linux/blkdev.h --- linux-intel-iotg-5.15-5.15.0/include/linux/blkdev.h +++ linux-intel-iotg-5.15-5.15.0/include/linux/blkdev.h @@ -1999,6 +1999,7 @@ #ifdef CONFIG_BLOCK void invalidate_bdev(struct block_device *bdev); int sync_blockdev(struct block_device *bdev); +void sync_bdevs(bool wait); #else static inline void invalidate_bdev(struct block_device *bdev) { @@ -2007,6 +2008,9 @@ { return 0; } +static inline void sync_bdevs(bool wait) +{ +} #endif int fsync_bdev(struct block_device *bdev); diff -u linux-intel-iotg-5.15-5.15.0/include/linux/bpf.h linux-intel-iotg-5.15-5.15.0/include/linux/bpf.h --- linux-intel-iotg-5.15-5.15.0/include/linux/bpf.h +++ linux-intel-iotg-5.15-5.15.0/include/linux/bpf.h @@ -293,6 +293,34 @@ extern const struct bpf_map_ops bpf_map_offload_ops; +/* bpf_type_flag contains a set of flags that are applicable to the values of + * arg_type, ret_type and reg_type. For example, a pointer value may be null, + * or a memory is read-only. We classify types into two categories: base types + * and extended types. Extended types are base types combined with a type flag. + * + * Currently there are no more than 32 base types in arg_type, ret_type and + * reg_types. + */ +#define BPF_BASE_TYPE_BITS 8 + +enum bpf_type_flag { + /* PTR may be NULL. */ + PTR_MAYBE_NULL = BIT(0 + BPF_BASE_TYPE_BITS), + + /* MEM is read-only. When applied on bpf_arg, it indicates the arg is + * compatible with both mutable and immutable memory. + */ + MEM_RDONLY = BIT(1 + BPF_BASE_TYPE_BITS), + + __BPF_TYPE_LAST_FLAG = MEM_RDONLY, +}; + +/* Max number of base types. */ +#define BPF_BASE_TYPE_LIMIT (1UL << BPF_BASE_TYPE_BITS) + +/* Max number of all types. */ +#define BPF_TYPE_LIMIT (__BPF_TYPE_LAST_FLAG | (__BPF_TYPE_LAST_FLAG - 1)) + /* function argument constraints */ enum bpf_arg_type { ARG_DONTCARE = 0, /* unused argument in helper function */ @@ -304,13 +332,11 @@ ARG_PTR_TO_MAP_KEY, /* pointer to stack used as map key */ ARG_PTR_TO_MAP_VALUE, /* pointer to stack used as map value */ ARG_PTR_TO_UNINIT_MAP_VALUE, /* pointer to valid memory used to store a map value */ - ARG_PTR_TO_MAP_VALUE_OR_NULL, /* pointer to stack used as map value or NULL */ /* the following constraints used to prototype bpf_memcmp() and other * functions that access data on eBPF program stack */ ARG_PTR_TO_MEM, /* pointer to valid memory (stack, packet, map value) */ - ARG_PTR_TO_MEM_OR_NULL, /* pointer to valid memory or NULL */ ARG_PTR_TO_UNINIT_MEM, /* pointer to memory does not need to be initialized, * helper function must fill all bytes or clear * them in error case. @@ -320,42 +346,65 @@ ARG_CONST_SIZE_OR_ZERO, /* number of bytes accessed from memory or 0 */ ARG_PTR_TO_CTX, /* pointer to context */ - ARG_PTR_TO_CTX_OR_NULL, /* pointer to context or NULL */ ARG_ANYTHING, /* any (initialized) argument is ok */ ARG_PTR_TO_SPIN_LOCK, /* pointer to bpf_spin_lock */ ARG_PTR_TO_SOCK_COMMON, /* pointer to sock_common */ ARG_PTR_TO_INT, /* pointer to int */ ARG_PTR_TO_LONG, /* pointer to long */ ARG_PTR_TO_SOCKET, /* pointer to bpf_sock (fullsock) */ - ARG_PTR_TO_SOCKET_OR_NULL, /* pointer to bpf_sock (fullsock) or NULL */ ARG_PTR_TO_BTF_ID, /* pointer to in-kernel struct */ ARG_PTR_TO_ALLOC_MEM, /* pointer to dynamically allocated memory */ - ARG_PTR_TO_ALLOC_MEM_OR_NULL, /* pointer to dynamically allocated memory or NULL */ ARG_CONST_ALLOC_SIZE_OR_ZERO, /* number of allocated bytes requested */ ARG_PTR_TO_BTF_ID_SOCK_COMMON, /* pointer to in-kernel sock_common or bpf-mirrored bpf_sock */ ARG_PTR_TO_PERCPU_BTF_ID, /* pointer to in-kernel percpu type */ ARG_PTR_TO_FUNC, /* pointer to a bpf program function */ - ARG_PTR_TO_STACK_OR_NULL, /* pointer to stack or NULL */ + ARG_PTR_TO_STACK, /* pointer to stack */ ARG_PTR_TO_CONST_STR, /* pointer to a null terminated read-only string */ ARG_PTR_TO_TIMER, /* pointer to bpf_timer */ __BPF_ARG_TYPE_MAX, + + /* Extended arg_types. */ + ARG_PTR_TO_MAP_VALUE_OR_NULL = PTR_MAYBE_NULL | ARG_PTR_TO_MAP_VALUE, + ARG_PTR_TO_MEM_OR_NULL = PTR_MAYBE_NULL | ARG_PTR_TO_MEM, + ARG_PTR_TO_CTX_OR_NULL = PTR_MAYBE_NULL | ARG_PTR_TO_CTX, + ARG_PTR_TO_SOCKET_OR_NULL = PTR_MAYBE_NULL | ARG_PTR_TO_SOCKET, + ARG_PTR_TO_ALLOC_MEM_OR_NULL = PTR_MAYBE_NULL | ARG_PTR_TO_ALLOC_MEM, + ARG_PTR_TO_STACK_OR_NULL = PTR_MAYBE_NULL | ARG_PTR_TO_STACK, + + /* This must be the last entry. Its purpose is to ensure the enum is + * wide enough to hold the higher bits reserved for bpf_type_flag. + */ + __BPF_ARG_TYPE_LIMIT = BPF_TYPE_LIMIT, }; +static_assert(__BPF_ARG_TYPE_MAX <= BPF_BASE_TYPE_LIMIT); /* type of values returned from helper functions */ enum bpf_return_type { RET_INTEGER, /* function returns integer */ RET_VOID, /* function doesn't return anything */ RET_PTR_TO_MAP_VALUE, /* returns a pointer to map elem value */ - RET_PTR_TO_MAP_VALUE_OR_NULL, /* returns a pointer to map elem value or NULL */ - RET_PTR_TO_SOCKET_OR_NULL, /* returns a pointer to a socket or NULL */ - RET_PTR_TO_TCP_SOCK_OR_NULL, /* returns a pointer to a tcp_sock or NULL */ - RET_PTR_TO_SOCK_COMMON_OR_NULL, /* returns a pointer to a sock_common or NULL */ - RET_PTR_TO_ALLOC_MEM_OR_NULL, /* returns a pointer to dynamically allocated memory or NULL */ - RET_PTR_TO_BTF_ID_OR_NULL, /* returns a pointer to a btf_id or NULL */ - RET_PTR_TO_MEM_OR_BTF_ID_OR_NULL, /* returns a pointer to a valid memory or a btf_id or NULL */ + RET_PTR_TO_SOCKET, /* returns a pointer to a socket */ + RET_PTR_TO_TCP_SOCK, /* returns a pointer to a tcp_sock */ + RET_PTR_TO_SOCK_COMMON, /* returns a pointer to a sock_common */ + RET_PTR_TO_ALLOC_MEM, /* returns a pointer to dynamically allocated memory */ RET_PTR_TO_MEM_OR_BTF_ID, /* returns a pointer to a valid memory or a btf_id */ RET_PTR_TO_BTF_ID, /* returns a pointer to a btf_id */ + __BPF_RET_TYPE_MAX, + + /* Extended ret_types. */ + RET_PTR_TO_MAP_VALUE_OR_NULL = PTR_MAYBE_NULL | RET_PTR_TO_MAP_VALUE, + RET_PTR_TO_SOCKET_OR_NULL = PTR_MAYBE_NULL | RET_PTR_TO_SOCKET, + RET_PTR_TO_TCP_SOCK_OR_NULL = PTR_MAYBE_NULL | RET_PTR_TO_TCP_SOCK, + RET_PTR_TO_SOCK_COMMON_OR_NULL = PTR_MAYBE_NULL | RET_PTR_TO_SOCK_COMMON, + RET_PTR_TO_ALLOC_MEM_OR_NULL = PTR_MAYBE_NULL | RET_PTR_TO_ALLOC_MEM, + RET_PTR_TO_BTF_ID_OR_NULL = PTR_MAYBE_NULL | RET_PTR_TO_BTF_ID, + + /* This must be the last entry. Its purpose is to ensure the enum is + * wide enough to hold the higher bits reserved for bpf_type_flag. + */ + __BPF_RET_TYPE_LIMIT = BPF_TYPE_LIMIT, }; +static_assert(__BPF_RET_TYPE_MAX <= BPF_BASE_TYPE_LIMIT); /* eBPF function prototype used by verifier to allow BPF_CALLs from eBPF programs * to in-kernel helper functions and for adjusting imm32 field in BPF_CALL @@ -417,18 +466,15 @@ PTR_TO_CTX, /* reg points to bpf_context */ CONST_PTR_TO_MAP, /* reg points to struct bpf_map */ PTR_TO_MAP_VALUE, /* reg points to map element value */ - PTR_TO_MAP_VALUE_OR_NULL,/* points to map elem value or NULL */ + PTR_TO_MAP_KEY, /* reg points to a map element key */ PTR_TO_STACK, /* reg == frame_pointer + offset */ PTR_TO_PACKET_META, /* skb->data - meta_len */ PTR_TO_PACKET, /* reg points to skb->data */ PTR_TO_PACKET_END, /* skb->data + headlen */ PTR_TO_FLOW_KEYS, /* reg points to bpf_flow_keys */ PTR_TO_SOCKET, /* reg points to struct bpf_sock */ - PTR_TO_SOCKET_OR_NULL, /* reg points to struct bpf_sock or NULL */ PTR_TO_SOCK_COMMON, /* reg points to sock_common */ - PTR_TO_SOCK_COMMON_OR_NULL, /* reg points to sock_common or NULL */ PTR_TO_TCP_SOCK, /* reg points to struct tcp_sock */ - PTR_TO_TCP_SOCK_OR_NULL, /* reg points to struct tcp_sock or NULL */ PTR_TO_TP_BUFFER, /* reg points to a writable raw tp's buffer */ PTR_TO_XDP_SOCK, /* reg points to struct xdp_sock */ /* PTR_TO_BTF_ID points to a kernel struct that does not need @@ -446,18 +492,25 @@ * been checked for null. Used primarily to inform the verifier * an explicit null check is required for this struct. */ - PTR_TO_BTF_ID_OR_NULL, PTR_TO_MEM, /* reg points to valid memory region */ - PTR_TO_MEM_OR_NULL, /* reg points to valid memory region or NULL */ - PTR_TO_RDONLY_BUF, /* reg points to a readonly buffer */ - PTR_TO_RDONLY_BUF_OR_NULL, /* reg points to a readonly buffer or NULL */ - PTR_TO_RDWR_BUF, /* reg points to a read/write buffer */ - PTR_TO_RDWR_BUF_OR_NULL, /* reg points to a read/write buffer or NULL */ + PTR_TO_BUF, /* reg points to a read/write buffer */ PTR_TO_PERCPU_BTF_ID, /* reg points to a percpu kernel variable */ PTR_TO_FUNC, /* reg points to a bpf program function */ - PTR_TO_MAP_KEY, /* reg points to a map element key */ __BPF_REG_TYPE_MAX, + + /* Extended reg_types. */ + PTR_TO_MAP_VALUE_OR_NULL = PTR_MAYBE_NULL | PTR_TO_MAP_VALUE, + PTR_TO_SOCKET_OR_NULL = PTR_MAYBE_NULL | PTR_TO_SOCKET, + PTR_TO_SOCK_COMMON_OR_NULL = PTR_MAYBE_NULL | PTR_TO_SOCK_COMMON, + PTR_TO_TCP_SOCK_OR_NULL = PTR_MAYBE_NULL | PTR_TO_TCP_SOCK, + PTR_TO_BTF_ID_OR_NULL = PTR_MAYBE_NULL | PTR_TO_BTF_ID, + + /* This must be the last entry. Its purpose is to ensure the enum is + * wide enough to hold the higher bits reserved for bpf_type_flag. + */ + __BPF_REG_TYPE_LIMIT = BPF_TYPE_LIMIT, }; +static_assert(__BPF_REG_TYPE_MAX <= BPF_BASE_TYPE_LIMIT); /* The information passed from prog-specific *_is_valid_access * back to the verifier. @@ -1938,6 +1991,8 @@ struct net_device *netdev); bool bpf_offload_dev_match(struct bpf_prog *prog, struct net_device *netdev); +void unpriv_ebpf_notify(int new_state); + #if defined(CONFIG_NET) && defined(CONFIG_BPF_SYSCALL) int bpf_prog_offload_init(struct bpf_prog *prog, union bpf_attr *attr); diff -u linux-intel-iotg-5.15-5.15.0/include/linux/bpf_verifier.h linux-intel-iotg-5.15-5.15.0/include/linux/bpf_verifier.h --- linux-intel-iotg-5.15-5.15.0/include/linux/bpf_verifier.h +++ linux-intel-iotg-5.15-5.15.0/include/linux/bpf_verifier.h @@ -18,6 +18,8 @@ * that converting umax_value to int cannot overflow. */ #define BPF_MAX_VAR_SIZ (1 << 29) +/* size of type_str_buf in bpf_verifier. */ +#define TYPE_STR_BUF_LEN 64 /* Liveness marks, used for registers and spilled-regs (in stack slots). * Read marks propagate upwards until they find a write mark; they record that @@ -474,6 +476,8 @@ /* longest register parentage chain walked for liveness marking */ u32 longest_mark_read_walk; bpfptr_t fd_array; + /* buffer used in reg_type_str() to generate reg_type string */ + char type_str_buf[TYPE_STR_BUF_LEN]; }; __printf(2, 0) void bpf_verifier_vlog(struct bpf_verifier_log *log, @@ -537,2 +541,16 @@ +#define BPF_BASE_TYPE_MASK GENMASK(BPF_BASE_TYPE_BITS - 1, 0) + +/* extract base type from bpf_{arg, return, reg}_type. */ +static inline u32 base_type(u32 type) +{ + return type & BPF_BASE_TYPE_MASK; +} + +/* extract flags from an extended type. See bpf_type_flag in bpf.h. */ +static inline u32 type_flag(u32 type) +{ + return type & ~BPF_BASE_TYPE_MASK; +} + #endif /* _LINUX_BPF_VERIFIER_H */ diff -u linux-intel-iotg-5.15-5.15.0/include/linux/efi.h linux-intel-iotg-5.15-5.15.0/include/linux/efi.h --- linux-intel-iotg-5.15-5.15.0/include/linux/efi.h +++ linux-intel-iotg-5.15-5.15.0/include/linux/efi.h @@ -169,6 +169,8 @@ size_t page_bytes_remain; }; +int efi_capsule_setup_info(struct capsule_info *cap_info, void *kbuff, + size_t hdr_bytes); int __efi_capsule_setup_info(struct capsule_info *cap_info); /* diff -u linux-intel-iotg-5.15-5.15.0/include/linux/gpio/driver.h linux-intel-iotg-5.15-5.15.0/include/linux/gpio/driver.h --- linux-intel-iotg-5.15-5.15.0/include/linux/gpio/driver.h +++ linux-intel-iotg-5.15-5.15.0/include/linux/gpio/driver.h @@ -481,6 +481,18 @@ */ int (*of_xlate)(struct gpio_chip *gc, const struct of_phandle_args *gpiospec, u32 *flags); + + /** + * @of_gpio_ranges_fallback: + * + * Optional hook for the case that no gpio-ranges property is defined + * within the device tree node "np" (usually DT before introduction + * of gpio-ranges). So this callback is helpful to provide the + * necessary backward compatibility for the pin ranges. + */ + int (*of_gpio_ranges_fallback)(struct gpio_chip *gc, + struct device_node *np); + #endif /* CONFIG_OF_GPIO */ }; diff -u linux-intel-iotg-5.15-5.15.0/include/linux/kfence.h linux-intel-iotg-5.15-5.15.0/include/linux/kfence.h --- linux-intel-iotg-5.15-5.15.0/include/linux/kfence.h +++ linux-intel-iotg-5.15-5.15.0/include/linux/kfence.h @@ -202,6 +202,22 @@ */ bool __must_check kfence_handle_page_fault(unsigned long addr, bool is_write, struct pt_regs *regs); +#ifdef CONFIG_PRINTK +struct kmem_obj_info; +/** + * __kfence_obj_info() - fill kmem_obj_info struct + * @kpp: kmem_obj_info to be filled + * @object: the object + * + * Return: + * * false - not a KFENCE object + * * true - a KFENCE object, filled @kpp + * + * Copies information to @kpp for KFENCE objects. + */ +bool __kfence_obj_info(struct kmem_obj_info *kpp, void *object, struct page *page); +#endif + #else /* CONFIG_KFENCE */ static inline bool is_kfence_address(const void *addr) { return false; } @@ -219,6 +235,14 @@ return false; } +#ifdef CONFIG_PRINTK +struct kmem_obj_info; +static inline bool __kfence_obj_info(struct kmem_obj_info *kpp, void *object, struct page *page) +{ + return false; +} +#endif + #endif #endif /* _LINUX_KFENCE_H */ diff -u linux-intel-iotg-5.15-5.15.0/include/linux/kvm_host.h linux-intel-iotg-5.15-5.15.0/include/linux/kvm_host.h --- linux-intel-iotg-5.15-5.15.0/include/linux/kvm_host.h +++ linux-intel-iotg-5.15-5.15.0/include/linux/kvm_host.h @@ -1233,7 +1233,7 @@ { } -static inline bool kvm_arch_has_assigned_device(struct kvm *kvm) +static __always_inline bool kvm_arch_has_assigned_device(struct kvm *kvm) { return false; } diff -u linux-intel-iotg-5.15-5.15.0/include/linux/mc146818rtc.h linux-intel-iotg-5.15-5.15.0/include/linux/mc146818rtc.h --- linux-intel-iotg-5.15-5.15.0/include/linux/mc146818rtc.h +++ linux-intel-iotg-5.15-5.15.0/include/linux/mc146818rtc.h @@ -86,6 +86,8 @@ /* 2 values for divider stage reset, others for "testing purposes only" */ # define RTC_DIV_RESET1 0x60 # define RTC_DIV_RESET2 0x70 + /* In AMD BKDG bit 5 and 6 are reserved, bit 4 is for select dv0 bank */ +# define RTC_AMD_BANK_SELECT 0x10 /* Periodic intr. / Square wave rate select. 0=none, 1=32.8kHz,... 15=2Hz */ # define RTC_RATE_SELECT 0x0F diff -u linux-intel-iotg-5.15-5.15.0/include/linux/memcontrol.h linux-intel-iotg-5.15-5.15.0/include/linux/memcontrol.h --- linux-intel-iotg-5.15-5.15.0/include/linux/memcontrol.h +++ linux-intel-iotg-5.15-5.15.0/include/linux/memcontrol.h @@ -1002,6 +1002,7 @@ } void mem_cgroup_flush_stats(void); +void mem_cgroup_flush_stats_delayed(void); void __mod_memcg_lruvec_state(struct lruvec *lruvec, enum node_stat_item idx, int val); @@ -1422,6 +1423,10 @@ { } +static inline void mem_cgroup_flush_stats_delayed(void) +{ +} + static inline void __mod_memcg_lruvec_state(struct lruvec *lruvec, enum node_stat_item idx, int val) { diff -u linux-intel-iotg-5.15-5.15.0/include/linux/mm.h linux-intel-iotg-5.15-5.15.0/include/linux/mm.h --- linux-intel-iotg-5.15-5.15.0/include/linux/mm.h +++ linux-intel-iotg-5.15-5.15.0/include/linux/mm.h @@ -2629,6 +2629,7 @@ unsigned long flags, struct page **pages); unsigned long randomize_stack_top(unsigned long stack_top); +unsigned long randomize_page(unsigned long start, unsigned long range); extern unsigned long get_unmapped_area(struct file *, unsigned long, unsigned long, unsigned long, unsigned long); @@ -2880,7 +2881,8 @@ #define FOLL_FORCE 0x10 /* get_user_pages read/write w/o permission */ #define FOLL_NOWAIT 0x20 /* if a disk transfer is needed, start the IO * and return without waiting upon it */ -#define FOLL_POPULATE 0x40 /* fault in page */ +#define FOLL_POPULATE 0x40 /* fault in pages (with FOLL_MLOCK) */ +#define FOLL_NOFAULT 0x80 /* do not fault in pages */ #define FOLL_HWPOISON 0x100 /* check page is hwpoisoned */ #define FOLL_NUMA 0x200 /* force NUMA hinting page fault */ #define FOLL_MIGRATION 0x400 /* wait for page to replace migration entry */ diff -u linux-intel-iotg-5.15-5.15.0/include/linux/netdevice.h linux-intel-iotg-5.15-5.15.0/include/linux/netdevice.h --- linux-intel-iotg-5.15-5.15.0/include/linux/netdevice.h +++ linux-intel-iotg-5.15-5.15.0/include/linux/netdevice.h @@ -887,7 +887,7 @@ struct net_device_path_ctx { const struct net_device *dev; - const u8 *daddr; + u8 daddr[ETH_ALEN]; int num_vlans; struct { diff -u linux-intel-iotg-5.15-5.15.0/include/linux/nfs_fs.h linux-intel-iotg-5.15-5.15.0/include/linux/nfs_fs.h --- linux-intel-iotg-5.15-5.15.0/include/linux/nfs_fs.h +++ linux-intel-iotg-5.15-5.15.0/include/linux/nfs_fs.h @@ -81,7 +81,7 @@ fl_owner_t flock_owner; struct dentry *dentry; const struct cred *cred; - struct rpc_cred *ll_cred; /* low-level cred - use to check for expiry */ + struct rpc_cred __rcu *ll_cred; /* low-level cred - use to check for expiry */ struct nfs4_state *state; fmode_t mode; @@ -421,9 +421,22 @@ extern unsigned long nfs_inc_attr_generation_counter(void); extern struct nfs_fattr *nfs_alloc_fattr(void); +extern struct nfs_fattr *nfs_alloc_fattr_with_label(struct nfs_server *server); + +static inline void nfs4_label_free(struct nfs4_label *label) +{ +#ifdef CONFIG_NFS_V4_SECURITY_LABEL + if (label) { + kfree(label->label); + kfree(label); + } +#endif +} static inline void nfs_free_fattr(const struct nfs_fattr *fattr) { + if (fattr) + nfs4_label_free(fattr->label); kfree(fattr); } diff -u linux-intel-iotg-5.15-5.15.0/include/linux/nfs_fs_sb.h linux-intel-iotg-5.15-5.15.0/include/linux/nfs_fs_sb.h --- linux-intel-iotg-5.15-5.15.0/include/linux/nfs_fs_sb.h +++ linux-intel-iotg-5.15-5.15.0/include/linux/nfs_fs_sb.h @@ -290,2 +290,3 @@ #define NFS_CAP_FS_LOCATIONS (1U << 30) +#define NFS_CAP_MOVEABLE (1U << 31) #endif diff -u linux-intel-iotg-5.15-5.15.0/include/linux/nvme.h linux-intel-iotg-5.15-5.15.0/include/linux/nvme.h --- linux-intel-iotg-5.15-5.15.0/include/linux/nvme.h +++ linux-intel-iotg-5.15-5.15.0/include/linux/nvme.h @@ -31,6 +31,18 @@ NVME_NQN_NVME = 2, /* NVME type target subsystem */ }; +enum nvme_ctrl_type { + NVME_CTRL_IO = 1, /* I/O controller */ + NVME_CTRL_DISC = 2, /* Discovery controller */ + NVME_CTRL_ADMIN = 3, /* Administrative controller */ +}; + +enum nvme_dctype { + NVME_DCTYPE_NOT_REPORTED = 0, + NVME_DCTYPE_DDC = 1, /* Direct Discovery Controller */ + NVME_DCTYPE_CDC = 2, /* Central Discovery Controller */ +}; + /* Address Family codes for Discovery Log Page entry ADRFAM field */ enum { NVMF_ADDR_FAMILY_PCI = 0, /* PCIe */ @@ -244,7 +256,9 @@ __le32 rtd3e; __le32 oaes; __le32 ctratt; - __u8 rsvd100[28]; + __u8 rsvd100[11]; + __u8 cntrltype; + __u8 fguid[16]; __le16 crdt1; __le16 crdt2; __le16 crdt3; @@ -306,7 +320,9 @@ __le16 icdoff; __u8 ctrattr; __u8 msdbd; - __u8 rsvd1804[244]; + __u8 rsvd1804[2]; + __u8 dctype; + __u8 rsvd1807[241]; struct nvme_id_power_state psd[32]; __u8 vs[1024]; }; diff -u linux-intel-iotg-5.15-5.15.0/include/linux/sched.h linux-intel-iotg-5.15-5.15.0/include/linux/sched.h --- linux-intel-iotg-5.15-5.15.0/include/linux/sched.h +++ linux-intel-iotg-5.15-5.15.0/include/linux/sched.h @@ -1436,6 +1436,7 @@ int pagefault_disabled; #ifdef CONFIG_MMU struct task_struct *oom_reaper_list; + struct timer_list oom_reaper_timer; #endif #ifdef CONFIG_VMAP_STACK struct vm_struct *stack_vm_area; diff -u linux-intel-iotg-5.15-5.15.0/include/linux/sched/signal.h linux-intel-iotg-5.15-5.15.0/include/linux/sched/signal.h --- linux-intel-iotg-5.15-5.15.0/include/linux/sched/signal.h +++ linux-intel-iotg-5.15-5.15.0/include/linux/sched/signal.h @@ -318,7 +318,7 @@ int force_sig_bnderr(void __user *addr, void __user *lower, void __user *upper); int force_sig_pkuerr(void __user *addr, u32 pkey); -int force_sig_perf(void __user *addr, u32 type, u64 sig_data); +int send_sig_perf(void __user *addr, u32 type, u64 sig_data); int force_sig_ptrace_errno_trap(int errno, void __user *addr); int force_sig_fault_trapno(int sig, int code, void __user *addr, int trapno); diff -u linux-intel-iotg-5.15-5.15.0/include/linux/siphash.h linux-intel-iotg-5.15-5.15.0/include/linux/siphash.h --- linux-intel-iotg-5.15-5.15.0/include/linux/siphash.h +++ linux-intel-iotg-5.15-5.15.0/include/linux/siphash.h @@ -138,2 +138,30 @@ +/* + * These macros expose the raw SipHash and HalfSipHash permutations. + * Do not use them directly! If you think you have a use for them, + * be sure to CC the maintainer of this file explaining why. + */ + +#define SIPHASH_PERMUTATION(a, b, c, d) ( \ + (a) += (b), (b) = rol64((b), 13), (b) ^= (a), (a) = rol64((a), 32), \ + (c) += (d), (d) = rol64((d), 16), (d) ^= (c), \ + (a) += (d), (d) = rol64((d), 21), (d) ^= (a), \ + (c) += (b), (b) = rol64((b), 17), (b) ^= (c), (c) = rol64((c), 32)) + +#define SIPHASH_CONST_0 0x736f6d6570736575ULL +#define SIPHASH_CONST_1 0x646f72616e646f6dULL +#define SIPHASH_CONST_2 0x6c7967656e657261ULL +#define SIPHASH_CONST_3 0x7465646279746573ULL + +#define HSIPHASH_PERMUTATION(a, b, c, d) ( \ + (a) += (b), (b) = rol32((b), 5), (b) ^= (a), (a) = rol32((a), 16), \ + (c) += (d), (d) = rol32((d), 8), (d) ^= (c), \ + (a) += (d), (d) = rol32((d), 7), (d) ^= (a), \ + (c) += (b), (b) = rol32((b), 13), (b) ^= (c), (c) = rol32((c), 16)) + +#define HSIPHASH_CONST_0 0U +#define HSIPHASH_CONST_1 0U +#define HSIPHASH_CONST_2 0x6c796765U +#define HSIPHASH_CONST_3 0x74656462U + #endif /* _LINUX_SIPHASH_H */ diff -u linux-intel-iotg-5.15-5.15.0/include/linux/stmmac.h linux-intel-iotg-5.15-5.15.0/include/linux/stmmac.h --- linux-intel-iotg-5.15-5.15.0/include/linux/stmmac.h +++ linux-intel-iotg-5.15-5.15.0/include/linux/stmmac.h @@ -270,4 +270,5 @@ int msi_tx_base_vec; bool use_phy_wol; + bool sph_disable; }; #endif reverted: --- linux-intel-iotg-5.15-5.15.0/include/linux/usb/hcd.h +++ linux-intel-iotg-5.15-5.15.0.orig/include/linux/usb/hcd.h @@ -124,6 +124,7 @@ #define HCD_FLAG_RH_RUNNING 5 /* root hub is running? */ #define HCD_FLAG_DEAD 6 /* controller has died? */ #define HCD_FLAG_INTF_AUTHORIZED 7 /* authorize interfaces? */ +#define HCD_FLAG_DEFER_RH_REGISTER 8 /* Defer roothub registration */ /* The flags can be tested using these macros; they are likely to * be slightly faster than test_bit(). @@ -134,6 +135,7 @@ #define HCD_WAKEUP_PENDING(hcd) ((hcd)->flags & (1U << HCD_FLAG_WAKEUP_PENDING)) #define HCD_RH_RUNNING(hcd) ((hcd)->flags & (1U << HCD_FLAG_RH_RUNNING)) #define HCD_DEAD(hcd) ((hcd)->flags & (1U << HCD_FLAG_DEAD)) +#define HCD_DEFER_RH_REGISTER(hcd) ((hcd)->flags & (1U << HCD_FLAG_DEFER_RH_REGISTER)) /* * Specifies if interfaces are authorized by default diff -u linux-intel-iotg-5.15-5.15.0/include/memory/renesas-rpc-if.h linux-intel-iotg-5.15-5.15.0/include/memory/renesas-rpc-if.h --- linux-intel-iotg-5.15-5.15.0/include/memory/renesas-rpc-if.h +++ linux-intel-iotg-5.15-5.15.0/include/memory/renesas-rpc-if.h @@ -66,6 +66,7 @@ size_t size; enum rpcif_data_dir dir; u8 bus_size; + u8 xfer_size; void *buffer; u32 xferlen; u32 smcr; reverted: --- linux-intel-iotg-5.15-5.15.0/include/net/esp.h +++ linux-intel-iotg-5.15-5.15.0.orig/include/net/esp.h @@ -4,8 +4,6 @@ #include -#define ESP_SKB_FRAG_MAXSIZE (PAGE_SIZE << SKB_FRAG_PAGE_ORDER) - struct ip_esp_hdr; static inline struct ip_esp_hdr *ip_esp_hdr(const struct sk_buff *skb) diff -u linux-intel-iotg-5.15-5.15.0/include/net/ip.h linux-intel-iotg-5.15-5.15.0/include/net/ip.h --- linux-intel-iotg-5.15-5.15.0/include/net/ip.h +++ linux-intel-iotg-5.15-5.15.0/include/net/ip.h @@ -55,6 +55,7 @@ #define IPSKB_DOREDIRECT BIT(5) #define IPSKB_FRAG_PMTU BIT(6) #define IPSKB_L3SLAVE BIT(7) +#define IPSKB_NOPOLICY BIT(8) u16 frag_max_size; }; diff -u linux-intel-iotg-5.15-5.15.0/include/net/ip_tunnels.h linux-intel-iotg-5.15-5.15.0/include/net/ip_tunnels.h --- linux-intel-iotg-5.15-5.15.0/include/net/ip_tunnels.h +++ linux-intel-iotg-5.15-5.15.0/include/net/ip_tunnels.h @@ -135,7 +135,7 @@ /* These four fields used only by GRE */ u32 i_seqno; /* The last seen seqno */ - u32 o_seqno; /* The last output seqno */ + atomic_t o_seqno; /* The last output seqno */ int tun_hlen; /* Precalculated header length */ /* These four fields used only by ERSPAN */ diff -u linux-intel-iotg-5.15-5.15.0/include/net/netfilter/nf_conntrack.h linux-intel-iotg-5.15-5.15.0/include/net/netfilter/nf_conntrack.h --- linux-intel-iotg-5.15-5.15.0/include/net/netfilter/nf_conntrack.h +++ linux-intel-iotg-5.15-5.15.0/include/net/netfilter/nf_conntrack.h @@ -76,6 +76,8 @@ * Hint, SKB address this struct and refcnt via skb->_nfct and * helpers nf_conntrack_get() and nf_conntrack_put(). * Helper nf_ct_put() equals nf_conntrack_put() by dec refcnt, + * except that the latter uses internal indirection and does not + * result in a conntrack module dependency. * beware nf_ct_get() is different and don't inc refcnt. */ struct nf_conntrack ct_general; @@ -169,11 +171,13 @@ return (struct nf_conn *)(nfct & NFCT_PTRMASK); } +void nf_ct_destroy(struct nf_conntrack *nfct); + /* decrement reference count on a conntrack */ static inline void nf_ct_put(struct nf_conn *ct) { - WARN_ON(!ct); - nf_conntrack_put(&ct->ct_general); + if (ct && refcount_dec_and_test(&ct->ct_general.use)) + nf_ct_destroy(&ct->ct_general); } /* Protocol module loading */ diff -u linux-intel-iotg-5.15-5.15.0/include/net/netns/ipv6.h linux-intel-iotg-5.15-5.15.0/include/net/netns/ipv6.h --- linux-intel-iotg-5.15-5.15.0/include/net/netns/ipv6.h +++ linux-intel-iotg-5.15-5.15.0/include/net/netns/ipv6.h @@ -75,8 +75,8 @@ struct list_head fib6_walkers; rwlock_t fib6_walker_lock; spinlock_t fib6_gc_lock; - unsigned int ip6_rt_gc_expire; - unsigned long ip6_rt_last_gc; + atomic_t ip6_rt_gc_expire; + unsigned long ip6_rt_last_gc; unsigned char flowlabel_has_excl; #ifdef CONFIG_IPV6_MULTIPLE_TABLES bool fib6_has_custom_rules; diff -u linux-intel-iotg-5.15-5.15.0/include/net/tcp.h linux-intel-iotg-5.15-5.15.0/include/net/tcp.h --- linux-intel-iotg-5.15-5.15.0/include/net/tcp.h +++ linux-intel-iotg-5.15-5.15.0/include/net/tcp.h @@ -470,6 +470,7 @@ u32 cookie); struct sock *cookie_v4_check(struct sock *sk, struct sk_buff *skb); struct request_sock *cookie_tcp_reqsk_alloc(const struct request_sock_ops *ops, + const struct tcp_request_sock_ops *af_ops, struct sock *sk, struct sk_buff *skb); #ifdef CONFIG_SYN_COOKIES @@ -608,6 +609,7 @@ void tcp_reset(struct sock *sk, struct sk_buff *skb); void tcp_skb_mark_lost_uncond_verify(struct tcp_sock *tp, struct sk_buff *skb); void tcp_fin(struct sock *sk); +void tcp_check_space(struct sock *sk); /* tcp_timer.c */ void tcp_init_xmit_timers(struct sock *); @@ -1026,6 +1028,7 @@ int losses; /* number of packets marked lost upon ACK */ u32 acked_sacked; /* number of packets newly (S)ACKed upon ACK */ u32 prior_in_flight; /* in flight before this ACK */ + u32 last_end_seq; /* end_seq of most recently ACKed packet */ bool is_app_limited; /* is sample from packet with bubble in pipe? */ bool is_retrans; /* is sample from retransmission? */ bool is_ack_delayed; /* is this (likely) a delayed ACK? */ @@ -1148,6 +1151,11 @@ bool is_sack_reneg, struct rate_sample *rs); void tcp_rate_check_app_limited(struct sock *sk); +static inline bool tcp_skb_sent_after(u64 t1, u64 t2, u32 seq1, u32 seq2) +{ + return t1 > t2 || (t1 == t2 && after(seq1, seq2)); +} + /* These functions determine how the current flow behaves in respect of SACK * handling. SACK is negotiated with the peer, and therefore it can vary * between different flows. diff -u linux-intel-iotg-5.15-5.15.0/include/net/xfrm.h linux-intel-iotg-5.15-5.15.0/include/net/xfrm.h --- linux-intel-iotg-5.15-5.15.0/include/net/xfrm.h +++ linux-intel-iotg-5.15-5.15.0/include/net/xfrm.h @@ -1082,24 +1082,29 @@ } #ifdef CONFIG_XFRM -static inline bool -xfrm_default_allow(struct net *net, int dir) +int __xfrm_policy_check(struct sock *, int dir, struct sk_buff *skb, + unsigned short family); + +static inline bool __xfrm_check_nopolicy(struct net *net, struct sk_buff *skb, + int dir) { - u8 def = net->xfrm.policy_default; + if (!net->xfrm.policy_count[dir] && !secpath_exists(skb)) + return net->xfrm.policy_default[dir] == XFRM_USERPOLICY_ACCEPT; - switch (dir) { - case XFRM_POLICY_IN: - return def & XFRM_POL_DEFAULT_IN ? false : true; - case XFRM_POLICY_OUT: - return def & XFRM_POL_DEFAULT_OUT ? false : true; - case XFRM_POLICY_FWD: - return def & XFRM_POL_DEFAULT_FWD ? false : true; - } return false; } -int __xfrm_policy_check(struct sock *, int dir, struct sk_buff *skb, - unsigned short family); +static inline bool __xfrm_check_dev_nopolicy(struct sk_buff *skb, + int dir, unsigned short family) +{ + if (dir != XFRM_POLICY_OUT && family == AF_INET) { + /* same dst may be used for traffic originating from + * devices with different policy settings. + */ + return IPCB(skb)->flags & IPSKB_NOPOLICY; + } + return skb_dst(skb) && (skb_dst(skb)->flags & DST_NOPOLICY); +} static inline int __xfrm_policy_check2(struct sock *sk, int dir, struct sk_buff *skb, @@ -1111,13 +1116,9 @@ if (sk && sk->sk_policy[XFRM_POLICY_IN]) return __xfrm_policy_check(sk, ndir, skb, family); - if (xfrm_default_allow(net, dir)) - return (!net->xfrm.policy_count[dir] && !secpath_exists(skb)) || - (skb_dst(skb) && (skb_dst(skb)->flags & DST_NOPOLICY)) || - __xfrm_policy_check(sk, ndir, skb, family); - else - return (skb_dst(skb) && (skb_dst(skb)->flags & DST_NOPOLICY)) || - __xfrm_policy_check(sk, ndir, skb, family); + return __xfrm_check_nopolicy(net, skb, dir) || + __xfrm_check_dev_nopolicy(skb, dir, family) || + __xfrm_policy_check(sk, ndir, skb, family); } static inline int xfrm_policy_check(struct sock *sk, int dir, struct sk_buff *skb, unsigned short family) @@ -1169,13 +1170,12 @@ { struct net *net = dev_net(skb->dev); - if (xfrm_default_allow(net, XFRM_POLICY_OUT)) - return !net->xfrm.policy_count[XFRM_POLICY_OUT] || - (skb_dst(skb)->flags & DST_NOXFRM) || - __xfrm_route_forward(skb, family); - else - return (skb_dst(skb)->flags & DST_NOXFRM) || - __xfrm_route_forward(skb, family); + if (!net->xfrm.policy_count[XFRM_POLICY_OUT] && + net->xfrm.policy_default[XFRM_POLICY_OUT] == XFRM_USERPOLICY_ACCEPT) + return true; + + return (skb_dst(skb)->flags & DST_NOXFRM) || + __xfrm_route_forward(skb, family); } static inline int xfrm4_route_forward(struct sk_buff *skb) diff -u linux-intel-iotg-5.15-5.15.0/include/scsi/scsi_transport_iscsi.h linux-intel-iotg-5.15-5.15.0/include/scsi/scsi_transport_iscsi.h --- linux-intel-iotg-5.15-5.15.0/include/scsi/scsi_transport_iscsi.h +++ linux-intel-iotg-5.15-5.15.0/include/scsi/scsi_transport_iscsi.h @@ -296,7 +296,7 @@ struct iscsi_endpoint { void *dd_data; /* LLD private data */ struct device dev; - uint64_t id; + int id; struct iscsi_cls_conn *conn; }; diff -u linux-intel-iotg-5.15-5.15.0/include/trace/events/rxrpc.h linux-intel-iotg-5.15-5.15.0/include/trace/events/rxrpc.h --- linux-intel-iotg-5.15-5.15.0/include/trace/events/rxrpc.h +++ linux-intel-iotg-5.15-5.15.0/include/trace/events/rxrpc.h @@ -1509,7 +1509,7 @@ __entry->call_serial = call->rx_serial; __entry->conn_serial = call->conn->hi_serial; __entry->tx_seq = call->tx_hard_ack; - __entry->rx_seq = call->ackr_seen; + __entry->rx_seq = call->rx_hard_ack; ), TP_printk("c=%08x %08x:%08x r=%08x/%08x tx=%08x rx=%08x", diff -u linux-intel-iotg-5.15-5.15.0/include/trace/events/sunrpc.h linux-intel-iotg-5.15-5.15.0/include/trace/events/sunrpc.h --- linux-intel-iotg-5.15-5.15.0/include/trace/events/sunrpc.h +++ linux-intel-iotg-5.15-5.15.0/include/trace/events/sunrpc.h @@ -976,7 +976,6 @@ DEFINE_RPC_XPRT_LIFETIME_EVENT(disconnect_auto); DEFINE_RPC_XPRT_LIFETIME_EVENT(disconnect_done); DEFINE_RPC_XPRT_LIFETIME_EVENT(disconnect_force); -DEFINE_RPC_XPRT_LIFETIME_EVENT(disconnect_cleanup); DEFINE_RPC_XPRT_LIFETIME_EVENT(destroy); DECLARE_EVENT_CLASS(rpc_xprt_event, diff -u linux-intel-iotg-5.15-5.15.0/init/Kconfig linux-intel-iotg-5.15-5.15.0/init/Kconfig --- linux-intel-iotg-5.15-5.15.0/init/Kconfig +++ linux-intel-iotg-5.15-5.15.0/init/Kconfig @@ -77,6 +77,11 @@ depends on CC_HAS_ASM_GOTO def_bool $(success,echo 'int foo(int x) { asm goto ("": "=r"(x) ::: bar); return x; bar: return 0; }' | $(CC) -x c - -c -o /dev/null) +config CC_HAS_ASM_GOTO_TIED_OUTPUT + depends on CC_HAS_ASM_GOTO_OUTPUT + # Detect buggy gcc and clang, fixed in gcc-11 clang-14. + def_bool $(success,echo 'int foo(int *x) { asm goto (".long (%l[bar]) - .\n": "+m"(*x) ::: bar); return *x; bar: return 0; }' | $CC -x c - -c -o /dev/null) + config TOOLS_SUPPORT_RELR def_bool $(success,env "CC=$(CC)" "LD=$(LD)" "NM=$(NM)" "OBJCOPY=$(OBJCOPY)" $(srctree)/scripts/tools-support-relr.sh) diff -u linux-intel-iotg-5.15-5.15.0/init/main.c linux-intel-iotg-5.15-5.15.0/init/main.c --- linux-intel-iotg-5.15-5.15.0/init/main.c +++ linux-intel-iotg-5.15-5.15.0/init/main.c @@ -1041,21 +1041,18 @@ softirq_init(); timekeeping_init(); kfence_init(); + time_init(); /* * For best initial stack canary entropy, prepare it after: * - setup_arch() for any UEFI RNG entropy and boot cmdline access - * - timekeeping_init() for ktime entropy used in rand_initialize() - * - rand_initialize() to get any arch-specific entropy like RDRAND - * - add_latent_entropy() to get any latent entropy - * - adding command line entropy + * - timekeeping_init() for ktime entropy used in random_init() + * - time_init() for making random_get_entropy() work on some platforms + * - random_init() to initialize the RNG from from early entropy sources */ - rand_initialize(); - add_latent_entropy(); - add_device_randomness(command_line, strlen(command_line)); + random_init(command_line); boot_init_stack_canary(); - time_init(); perf_event_init(); profile_init(); call_function_init(); diff -u linux-intel-iotg-5.15-5.15.0/kernel/bpf/btf.c linux-intel-iotg-5.15-5.15.0/kernel/bpf/btf.c --- linux-intel-iotg-5.15-5.15.0/kernel/bpf/btf.c +++ linux-intel-iotg-5.15-5.15.0/kernel/bpf/btf.c @@ -4800,10 +4800,12 @@ /* check for PTR_TO_RDONLY_BUF_OR_NULL or PTR_TO_RDWR_BUF_OR_NULL */ for (i = 0; i < prog->aux->ctx_arg_info_size; i++) { const struct bpf_ctx_arg_aux *ctx_arg_info = &prog->aux->ctx_arg_info[i]; + u32 type, flag; - if (ctx_arg_info->offset == off && - (ctx_arg_info->reg_type == PTR_TO_RDONLY_BUF_OR_NULL || - ctx_arg_info->reg_type == PTR_TO_RDWR_BUF_OR_NULL)) { + type = base_type(ctx_arg_info->reg_type); + flag = type_flag(ctx_arg_info->reg_type); + if (ctx_arg_info->offset == off && type == PTR_TO_BUF && + (flag & PTR_MAYBE_NULL)) { info->reg_type = ctx_arg_info->reg_type; return true; } @@ -5508,9 +5510,9 @@ if (reg->type == PTR_TO_BTF_ID) { reg_btf = reg->btf; reg_ref_id = reg->btf_id; - } else if (reg2btf_ids[reg->type]) { + } else if (reg2btf_ids[base_type(reg->type)]) { reg_btf = btf_vmlinux; - reg_ref_id = *reg2btf_ids[reg->type]; + reg_ref_id = *reg2btf_ids[base_type(reg->type)]; } else { bpf_log(log, "kernel function %s args#%d expected pointer to %s %s but R%d is not a pointer to btf_id\n", func_name, i, @@ -5717,7 +5719,7 @@ return -EINVAL; } - reg->type = PTR_TO_MEM_OR_NULL; + reg->type = PTR_TO_MEM | PTR_MAYBE_NULL; reg->id = ++env->id_gen; continue; @@ -6229,7 +6231,7 @@ .func = bpf_btf_find_by_name_kind, .gpl_only = false, .ret_type = RET_INTEGER, - .arg1_type = ARG_PTR_TO_MEM, + .arg1_type = ARG_PTR_TO_MEM | MEM_RDONLY, .arg2_type = ARG_CONST_SIZE, .arg3_type = ARG_ANYTHING, .arg4_type = ARG_ANYTHING, diff -u linux-intel-iotg-5.15-5.15.0/kernel/bpf/cgroup.c linux-intel-iotg-5.15-5.15.0/kernel/bpf/cgroup.c --- linux-intel-iotg-5.15-5.15.0/kernel/bpf/cgroup.c +++ linux-intel-iotg-5.15-5.15.0/kernel/bpf/cgroup.c @@ -1753,7 +1753,7 @@ .gpl_only = false, .ret_type = RET_INTEGER, .arg1_type = ARG_PTR_TO_CTX, - .arg2_type = ARG_PTR_TO_MEM, + .arg2_type = ARG_PTR_TO_MEM | MEM_RDONLY, .arg3_type = ARG_CONST_SIZE, }; diff -u linux-intel-iotg-5.15-5.15.0/kernel/bpf/helpers.c linux-intel-iotg-5.15-5.15.0/kernel/bpf/helpers.c --- linux-intel-iotg-5.15-5.15.0/kernel/bpf/helpers.c +++ linux-intel-iotg-5.15-5.15.0/kernel/bpf/helpers.c @@ -530,7 +530,7 @@ .func = bpf_strtol, .gpl_only = false, .ret_type = RET_INTEGER, - .arg1_type = ARG_PTR_TO_MEM, + .arg1_type = ARG_PTR_TO_MEM | MEM_RDONLY, .arg2_type = ARG_CONST_SIZE, .arg3_type = ARG_ANYTHING, .arg4_type = ARG_PTR_TO_LONG, @@ -558,7 +558,7 @@ .func = bpf_strtoul, .gpl_only = false, .ret_type = RET_INTEGER, - .arg1_type = ARG_PTR_TO_MEM, + .arg1_type = ARG_PTR_TO_MEM | MEM_RDONLY, .arg2_type = ARG_CONST_SIZE, .arg3_type = ARG_ANYTHING, .arg4_type = ARG_PTR_TO_LONG, @@ -630,7 +630,7 @@ .arg1_type = ARG_PTR_TO_CTX, .arg2_type = ARG_CONST_MAP_PTR, .arg3_type = ARG_ANYTHING, - .arg4_type = ARG_PTR_TO_MEM, + .arg4_type = ARG_PTR_TO_MEM | MEM_RDONLY, .arg5_type = ARG_CONST_SIZE_OR_ZERO, }; @@ -667,7 +667,7 @@ const struct bpf_func_proto bpf_per_cpu_ptr_proto = { .func = bpf_per_cpu_ptr, .gpl_only = false, - .ret_type = RET_PTR_TO_MEM_OR_BTF_ID_OR_NULL, + .ret_type = RET_PTR_TO_MEM_OR_BTF_ID | PTR_MAYBE_NULL | MEM_RDONLY, .arg1_type = ARG_PTR_TO_PERCPU_BTF_ID, .arg2_type = ARG_ANYTHING, }; @@ -680,7 +680,7 @@ const struct bpf_func_proto bpf_this_cpu_ptr_proto = { .func = bpf_this_cpu_ptr, .gpl_only = false, - .ret_type = RET_PTR_TO_MEM_OR_BTF_ID, + .ret_type = RET_PTR_TO_MEM_OR_BTF_ID | MEM_RDONLY, .arg1_type = ARG_PTR_TO_PERCPU_BTF_ID, }; @@ -1013,7 +1013,7 @@ .arg1_type = ARG_PTR_TO_MEM_OR_NULL, .arg2_type = ARG_CONST_SIZE_OR_ZERO, .arg3_type = ARG_PTR_TO_CONST_STR, - .arg4_type = ARG_PTR_TO_MEM_OR_NULL, + .arg4_type = ARG_PTR_TO_MEM | PTR_MAYBE_NULL | MEM_RDONLY, .arg5_type = ARG_CONST_SIZE_OR_ZERO, }; diff -u linux-intel-iotg-5.15-5.15.0/kernel/bpf/ringbuf.c linux-intel-iotg-5.15-5.15.0/kernel/bpf/ringbuf.c --- linux-intel-iotg-5.15-5.15.0/kernel/bpf/ringbuf.c +++ linux-intel-iotg-5.15-5.15.0/kernel/bpf/ringbuf.c @@ -444,7 +444,7 @@ .func = bpf_ringbuf_output, .ret_type = RET_INTEGER, .arg1_type = ARG_CONST_MAP_PTR, - .arg2_type = ARG_PTR_TO_MEM, + .arg2_type = ARG_PTR_TO_MEM | MEM_RDONLY, .arg3_type = ARG_CONST_SIZE_OR_ZERO, .arg4_type = ARG_ANYTHING, }; diff -u linux-intel-iotg-5.15-5.15.0/kernel/bpf/stackmap.c linux-intel-iotg-5.15-5.15.0/kernel/bpf/stackmap.c --- linux-intel-iotg-5.15-5.15.0/kernel/bpf/stackmap.c +++ linux-intel-iotg-5.15-5.15.0/kernel/bpf/stackmap.c @@ -119,7 +119,6 @@ return ERR_PTR(-E2BIG); cost = n_buckets * sizeof(struct stack_map_bucket *) + sizeof(*smap); - cost += n_buckets * (value_size + sizeof(struct stack_map_bucket)); smap = bpf_map_area_alloc(cost, bpf_map_attr_numa_node(attr)); if (!smap) return ERR_PTR(-ENOMEM); diff -u linux-intel-iotg-5.15-5.15.0/kernel/bpf/syscall.c linux-intel-iotg-5.15-5.15.0/kernel/bpf/syscall.c --- linux-intel-iotg-5.15-5.15.0/kernel/bpf/syscall.c +++ linux-intel-iotg-5.15-5.15.0/kernel/bpf/syscall.c @@ -4753,7 +4753,7 @@ .gpl_only = false, .ret_type = RET_INTEGER, .arg1_type = ARG_ANYTHING, - .arg2_type = ARG_PTR_TO_MEM, + .arg2_type = ARG_PTR_TO_MEM | MEM_RDONLY, .arg3_type = ARG_CONST_SIZE, }; diff -u linux-intel-iotg-5.15-5.15.0/kernel/bpf/trampoline.c linux-intel-iotg-5.15-5.15.0/kernel/bpf/trampoline.c --- linux-intel-iotg-5.15-5.15.0/kernel/bpf/trampoline.c +++ linux-intel-iotg-5.15-5.15.0/kernel/bpf/trampoline.c @@ -414,7 +414,7 @@ { enum bpf_tramp_prog_type kind; int err = 0; - int cnt; + int cnt = 0, i; kind = bpf_attach_type_to_tramp(prog); mutex_lock(&tr->mutex); @@ -425,7 +425,10 @@ err = -EBUSY; goto out; } - cnt = tr->progs_cnt[BPF_TRAMP_FENTRY] + tr->progs_cnt[BPF_TRAMP_FEXIT]; + + for (i = 0; i < BPF_TRAMP_MAX; i++) + cnt += tr->progs_cnt[i]; + if (kind == BPF_TRAMP_REPLACE) { /* Cannot attach extension if fentry/fexit are in use. */ if (cnt) { @@ -503,16 +506,19 @@ void bpf_trampoline_put(struct bpf_trampoline *tr) { + int i; + if (!tr) return; mutex_lock(&trampoline_mutex); if (!refcount_dec_and_test(&tr->refcnt)) goto out; WARN_ON_ONCE(mutex_is_locked(&tr->mutex)); - if (WARN_ON_ONCE(!hlist_empty(&tr->progs_hlist[BPF_TRAMP_FENTRY]))) - goto out; - if (WARN_ON_ONCE(!hlist_empty(&tr->progs_hlist[BPF_TRAMP_FEXIT]))) - goto out; + + for (i = 0; i < BPF_TRAMP_MAX; i++) + if (WARN_ON_ONCE(!hlist_empty(&tr->progs_hlist[i]))) + goto out; + /* This code will be executed even when the last bpf_tramp_image * is alive. All progs are detached from the trampoline and the * trampoline image is patched with jmp into epilogue to skip diff -u linux-intel-iotg-5.15-5.15.0/kernel/bpf/verifier.c linux-intel-iotg-5.15-5.15.0/kernel/bpf/verifier.c --- linux-intel-iotg-5.15-5.15.0/kernel/bpf/verifier.c +++ linux-intel-iotg-5.15-5.15.0/kernel/bpf/verifier.c @@ -445,18 +445,6 @@ type == PTR_TO_SOCK_COMMON; } -static bool reg_type_may_be_null(enum bpf_reg_type type) -{ - return type == PTR_TO_MAP_VALUE_OR_NULL || - type == PTR_TO_SOCKET_OR_NULL || - type == PTR_TO_SOCK_COMMON_OR_NULL || - type == PTR_TO_TCP_SOCK_OR_NULL || - type == PTR_TO_BTF_ID_OR_NULL || - type == PTR_TO_MEM_OR_NULL || - type == PTR_TO_RDONLY_BUF_OR_NULL || - type == PTR_TO_RDWR_BUF_OR_NULL; -} - static bool reg_may_point_to_spin_lock(const struct bpf_reg_state *reg) { return reg->type == PTR_TO_MAP_VALUE && @@ -465,12 +453,14 @@ static bool reg_type_may_be_refcounted_or_null(enum bpf_reg_type type) { - return type == PTR_TO_SOCKET || - type == PTR_TO_SOCKET_OR_NULL || - type == PTR_TO_TCP_SOCK || - type == PTR_TO_TCP_SOCK_OR_NULL || - type == PTR_TO_MEM || - type == PTR_TO_MEM_OR_NULL; + return base_type(type) == PTR_TO_SOCKET || + base_type(type) == PTR_TO_TCP_SOCK || + base_type(type) == PTR_TO_MEM; +} + +static bool type_is_rdonly_mem(u32 type) +{ + return type & MEM_RDONLY; } static bool arg_type_may_be_refcounted(enum bpf_arg_type type) @@ -478,14 +468,9 @@ return type == ARG_PTR_TO_SOCK_COMMON; } -static bool arg_type_may_be_null(enum bpf_arg_type type) +static bool type_may_be_null(u32 type) { - return type == ARG_PTR_TO_MAP_VALUE_OR_NULL || - type == ARG_PTR_TO_MEM_OR_NULL || - type == ARG_PTR_TO_CTX_OR_NULL || - type == ARG_PTR_TO_SOCKET_OR_NULL || - type == ARG_PTR_TO_ALLOC_MEM_OR_NULL || - type == ARG_PTR_TO_STACK_OR_NULL; + return type & PTR_MAYBE_NULL; } /* Determine whether the function releases some resources allocated by another @@ -545,39 +530,54 @@ insn->imm == BPF_CMPXCHG; } -/* string representation of 'enum bpf_reg_type' */ -static const char * const reg_type_str[] = { - [NOT_INIT] = "?", - [SCALAR_VALUE] = "inv", - [PTR_TO_CTX] = "ctx", - [CONST_PTR_TO_MAP] = "map_ptr", - [PTR_TO_MAP_VALUE] = "map_value", - [PTR_TO_MAP_VALUE_OR_NULL] = "map_value_or_null", - [PTR_TO_STACK] = "fp", - [PTR_TO_PACKET] = "pkt", - [PTR_TO_PACKET_META] = "pkt_meta", - [PTR_TO_PACKET_END] = "pkt_end", - [PTR_TO_FLOW_KEYS] = "flow_keys", - [PTR_TO_SOCKET] = "sock", - [PTR_TO_SOCKET_OR_NULL] = "sock_or_null", - [PTR_TO_SOCK_COMMON] = "sock_common", - [PTR_TO_SOCK_COMMON_OR_NULL] = "sock_common_or_null", - [PTR_TO_TCP_SOCK] = "tcp_sock", - [PTR_TO_TCP_SOCK_OR_NULL] = "tcp_sock_or_null", - [PTR_TO_TP_BUFFER] = "tp_buffer", - [PTR_TO_XDP_SOCK] = "xdp_sock", - [PTR_TO_BTF_ID] = "ptr_", - [PTR_TO_BTF_ID_OR_NULL] = "ptr_or_null_", - [PTR_TO_PERCPU_BTF_ID] = "percpu_ptr_", - [PTR_TO_MEM] = "mem", - [PTR_TO_MEM_OR_NULL] = "mem_or_null", - [PTR_TO_RDONLY_BUF] = "rdonly_buf", - [PTR_TO_RDONLY_BUF_OR_NULL] = "rdonly_buf_or_null", - [PTR_TO_RDWR_BUF] = "rdwr_buf", - [PTR_TO_RDWR_BUF_OR_NULL] = "rdwr_buf_or_null", - [PTR_TO_FUNC] = "func", - [PTR_TO_MAP_KEY] = "map_key", -}; +/* string representation of 'enum bpf_reg_type' + * + * Note that reg_type_str() can not appear more than once in a single verbose() + * statement. + */ +static const char *reg_type_str(struct bpf_verifier_env *env, + enum bpf_reg_type type) +{ + char postfix[16] = {0}, prefix[16] = {0}; + static const char * const str[] = { + [NOT_INIT] = "?", + [SCALAR_VALUE] = "inv", + [PTR_TO_CTX] = "ctx", + [CONST_PTR_TO_MAP] = "map_ptr", + [PTR_TO_MAP_VALUE] = "map_value", + [PTR_TO_STACK] = "fp", + [PTR_TO_PACKET] = "pkt", + [PTR_TO_PACKET_META] = "pkt_meta", + [PTR_TO_PACKET_END] = "pkt_end", + [PTR_TO_FLOW_KEYS] = "flow_keys", + [PTR_TO_SOCKET] = "sock", + [PTR_TO_SOCK_COMMON] = "sock_common", + [PTR_TO_TCP_SOCK] = "tcp_sock", + [PTR_TO_TP_BUFFER] = "tp_buffer", + [PTR_TO_XDP_SOCK] = "xdp_sock", + [PTR_TO_BTF_ID] = "ptr_", + [PTR_TO_PERCPU_BTF_ID] = "percpu_ptr_", + [PTR_TO_MEM] = "mem", + [PTR_TO_BUF] = "buf", + [PTR_TO_FUNC] = "func", + [PTR_TO_MAP_KEY] = "map_key", + }; + + if (type & PTR_MAYBE_NULL) { + if (base_type(type) == PTR_TO_BTF_ID || + base_type(type) == PTR_TO_PERCPU_BTF_ID) + strncpy(postfix, "or_null_", 16); + else + strncpy(postfix, "_or_null", 16); + } + + if (type & MEM_RDONLY) + strncpy(prefix, "rdonly_", 16); + + snprintf(env->type_str_buf, TYPE_STR_BUF_LEN, "%s%s%s", + prefix, str[base_type(type)], postfix); + return env->type_str_buf; +} static char slot_type_char[] = { [STACK_INVALID] = '?', @@ -628,7 +628,7 @@ continue; verbose(env, " R%d", i); print_liveness(env, reg->live); - verbose(env, "=%s", reg_type_str[t]); + verbose(env, "=%s", reg_type_str(env, t)); if (t == SCALAR_VALUE && reg->precise) verbose(env, "P"); if ((t == SCALAR_VALUE || t == PTR_TO_STACK) && @@ -636,9 +636,8 @@ /* reg->off should be 0 for SCALAR_VALUE */ verbose(env, "%lld", reg->var_off.value + reg->off); } else { - if (t == PTR_TO_BTF_ID || - t == PTR_TO_BTF_ID_OR_NULL || - t == PTR_TO_PERCPU_BTF_ID) + if (base_type(t) == PTR_TO_BTF_ID || + base_type(t) == PTR_TO_PERCPU_BTF_ID) verbose(env, "%s", kernel_type_name(reg->btf, reg->btf_id)); verbose(env, "(id=%d", reg->id); if (reg_type_may_be_refcounted_or_null(t)) @@ -647,10 +646,9 @@ verbose(env, ",off=%d", reg->off); if (type_is_pkt_pointer(t)) verbose(env, ",r=%d", reg->range); - else if (t == CONST_PTR_TO_MAP || - t == PTR_TO_MAP_KEY || - t == PTR_TO_MAP_VALUE || - t == PTR_TO_MAP_VALUE_OR_NULL) + else if (base_type(t) == CONST_PTR_TO_MAP || + base_type(t) == PTR_TO_MAP_KEY || + base_type(t) == PTR_TO_MAP_VALUE) verbose(env, ",ks=%d,vs=%d", reg->map_ptr->key_size, reg->map_ptr->value_size); @@ -720,7 +718,7 @@ if (state->stack[i].slot_type[0] == STACK_SPILL) { reg = &state->stack[i].spilled_ptr; t = reg->type; - verbose(env, "=%s", reg_type_str[t]); + verbose(env, "=%s", reg_type_str(env, t)); if (t == SCALAR_VALUE && reg->precise) verbose(env, "P"); if (t == SCALAR_VALUE && tnum_is_const(reg->var_off)) @@ -1133,8 +1131,7 @@ static void mark_ptr_not_null_reg(struct bpf_reg_state *reg) { - switch (reg->type) { - case PTR_TO_MAP_VALUE_OR_NULL: { + if (base_type(reg->type) == PTR_TO_MAP_VALUE) { const struct bpf_map *map = reg->map_ptr; if (map->inner_map_meta) { @@ -1153,32 +1150,10 @@ } else { reg->type = PTR_TO_MAP_VALUE; } - break; - } - case PTR_TO_SOCKET_OR_NULL: - reg->type = PTR_TO_SOCKET; - break; - case PTR_TO_SOCK_COMMON_OR_NULL: - reg->type = PTR_TO_SOCK_COMMON; - break; - case PTR_TO_TCP_SOCK_OR_NULL: - reg->type = PTR_TO_TCP_SOCK; - break; - case PTR_TO_BTF_ID_OR_NULL: - reg->type = PTR_TO_BTF_ID; - break; - case PTR_TO_MEM_OR_NULL: - reg->type = PTR_TO_MEM; - break; - case PTR_TO_RDONLY_BUF_OR_NULL: - reg->type = PTR_TO_RDONLY_BUF; - break; - case PTR_TO_RDWR_BUF_OR_NULL: - reg->type = PTR_TO_RDWR_BUF; - break; - default: - WARN_ONCE(1, "unknown nullable register type"); + return; } + + reg->type &= ~PTR_MAYBE_NULL; } static bool reg_is_pkt_pointer(const struct bpf_reg_state *reg) @@ -1906,7 +1881,7 @@ break; if (parent->live & REG_LIVE_DONE) { verbose(env, "verifier BUG type %s var_off %lld off %d\n", - reg_type_str[parent->type], + reg_type_str(env, parent->type), parent->var_off.value, parent->off); return -EFAULT; } @@ -2564,9 +2539,8 @@ static bool is_spillable_regtype(enum bpf_reg_type type) { - switch (type) { + switch (base_type(type)) { case PTR_TO_MAP_VALUE: - case PTR_TO_MAP_VALUE_OR_NULL: case PTR_TO_STACK: case PTR_TO_CTX: case PTR_TO_PACKET: @@ -2575,21 +2549,13 @@ case PTR_TO_FLOW_KEYS: case CONST_PTR_TO_MAP: case PTR_TO_SOCKET: - case PTR_TO_SOCKET_OR_NULL: case PTR_TO_SOCK_COMMON: - case PTR_TO_SOCK_COMMON_OR_NULL: case PTR_TO_TCP_SOCK: - case PTR_TO_TCP_SOCK_OR_NULL: case PTR_TO_XDP_SOCK: case PTR_TO_BTF_ID: - case PTR_TO_BTF_ID_OR_NULL: - case PTR_TO_RDONLY_BUF: - case PTR_TO_RDONLY_BUF_OR_NULL: - case PTR_TO_RDWR_BUF: - case PTR_TO_RDWR_BUF_OR_NULL: + case PTR_TO_BUF: case PTR_TO_PERCPU_BTF_ID: case PTR_TO_MEM: - case PTR_TO_MEM_OR_NULL: case PTR_TO_FUNC: case PTR_TO_MAP_KEY: return true; @@ -3405,7 +3371,7 @@ */ *reg_type = info.reg_type; - if (*reg_type == PTR_TO_BTF_ID || *reg_type == PTR_TO_BTF_ID_OR_NULL) { + if (base_type(*reg_type) == PTR_TO_BTF_ID) { *btf = info.btf; *btf_id = info.btf_id; } else { @@ -3473,7 +3439,7 @@ } verbose(env, "R%d invalid %s access off=%d size=%d\n", - regno, reg_type_str[reg->type], off, size); + regno, reg_type_str(env, reg->type), off, size); return -EACCES; } @@ -4200,15 +4166,30 @@ mark_reg_unknown(env, regs, value_regno); } } - } else if (reg->type == PTR_TO_MEM) { + } else if (base_type(reg->type) == PTR_TO_MEM) { + bool rdonly_mem = type_is_rdonly_mem(reg->type); + + if (type_may_be_null(reg->type)) { + verbose(env, "R%d invalid mem access '%s'\n", regno, + reg_type_str(env, reg->type)); + return -EACCES; + } + + if (t == BPF_WRITE && rdonly_mem) { + verbose(env, "R%d cannot write into %s\n", + regno, reg_type_str(env, reg->type)); + return -EACCES; + } + if (t == BPF_WRITE && value_regno >= 0 && is_pointer_value(env, value_regno)) { verbose(env, "R%d leaks addr into mem\n", value_regno); return -EACCES; } + err = check_mem_region_access(env, regno, off, size, reg->mem_size, false); - if (!err && t == BPF_READ && value_regno >= 0) + if (!err && value_regno >= 0 && (t == BPF_READ || rdonly_mem)) mark_reg_unknown(env, regs, value_regno); } else if (reg->type == PTR_TO_CTX) { enum bpf_reg_type reg_type = SCALAR_VALUE; @@ -4238,7 +4219,7 @@ } else { mark_reg_known_zero(env, regs, value_regno); - if (reg_type_may_be_null(reg_type)) + if (type_may_be_null(reg_type)) regs[value_regno].id = ++env->id_gen; /* A load of ctx field could have different * actual load size with the one encoded in the @@ -4246,8 +4227,7 @@ * a sub-register. */ regs[value_regno].subreg_def = DEF_NOT_SUBREG; - if (reg_type == PTR_TO_BTF_ID || - reg_type == PTR_TO_BTF_ID_OR_NULL) { + if (base_type(reg_type) == PTR_TO_BTF_ID) { regs[value_regno].btf = btf; regs[value_regno].btf_id = btf_id; } @@ -4300,7 +4280,7 @@ } else if (type_is_sk_pointer(reg->type)) { if (t == BPF_WRITE) { verbose(env, "R%d cannot write into %s\n", - regno, reg_type_str[reg->type]); + regno, reg_type_str(env, reg->type)); return -EACCES; } err = check_sock_access(env, insn_idx, regno, off, size, t); @@ -4316,26 +4296,32 @@ } else if (reg->type == CONST_PTR_TO_MAP) { err = check_ptr_to_map_access(env, regs, regno, off, size, t, value_regno); - } else if (reg->type == PTR_TO_RDONLY_BUF) { - if (t == BPF_WRITE) { - verbose(env, "R%d cannot write into %s\n", - regno, reg_type_str[reg->type]); - return -EACCES; + } else if (base_type(reg->type) == PTR_TO_BUF) { + bool rdonly_mem = type_is_rdonly_mem(reg->type); + const char *buf_info; + u32 *max_access; + + if (rdonly_mem) { + if (t == BPF_WRITE) { + verbose(env, "R%d cannot write into %s\n", + regno, reg_type_str(env, reg->type)); + return -EACCES; + } + buf_info = "rdonly"; + max_access = &env->prog->aux->max_rdonly_access; + } else { + buf_info = "rdwr"; + max_access = &env->prog->aux->max_rdwr_access; } + err = check_buffer_access(env, reg, regno, off, size, false, - "rdonly", - &env->prog->aux->max_rdonly_access); - if (!err && value_regno >= 0) - mark_reg_unknown(env, regs, value_regno); - } else if (reg->type == PTR_TO_RDWR_BUF) { - err = check_buffer_access(env, reg, regno, off, size, false, - "rdwr", - &env->prog->aux->max_rdwr_access); - if (!err && t == BPF_READ && value_regno >= 0) + buf_info, max_access); + + if (!err && value_regno >= 0 && (rdonly_mem || t == BPF_READ)) mark_reg_unknown(env, regs, value_regno); } else { verbose(env, "R%d invalid mem access '%s'\n", regno, - reg_type_str[reg->type]); + reg_type_str(env, reg->type)); return -EACCES; } @@ -4409,7 +4395,7 @@ is_sk_reg(env, insn->dst_reg)) { verbose(env, "BPF_ATOMIC stores into R%d %s is not allowed\n", insn->dst_reg, - reg_type_str[reg_state(env, insn->dst_reg)->type]); + reg_type_str(env, reg_state(env, insn->dst_reg)->type)); return -EACCES; } @@ -4592,13 +4578,20 @@ struct bpf_call_arg_meta *meta) { struct bpf_reg_state *regs = cur_regs(env), *reg = ®s[regno]; + const char *buf_info; + u32 *max_access; - switch (reg->type) { + switch (base_type(reg->type)) { case PTR_TO_PACKET: case PTR_TO_PACKET_META: return check_packet_access(env, regno, reg->off, access_size, zero_size_allowed); case PTR_TO_MAP_KEY: + if (meta && meta->raw_mode) { + verbose(env, "R%d cannot write into %s\n", regno, + reg_type_str(env, reg->type)); + return -EACCES; + } return check_mem_region_access(env, regno, reg->off, access_size, reg->map_ptr->key_size, false); case PTR_TO_MAP_VALUE: @@ -4609,21 +4602,33 @@ return check_map_access(env, regno, reg->off, access_size, zero_size_allowed); case PTR_TO_MEM: + if (type_is_rdonly_mem(reg->type)) { + if (meta && meta->raw_mode) { + verbose(env, "R%d cannot write into %s\n", regno, + reg_type_str(env, reg->type)); + return -EACCES; + } + } return check_mem_region_access(env, regno, reg->off, access_size, reg->mem_size, zero_size_allowed); - case PTR_TO_RDONLY_BUF: - if (meta && meta->raw_mode) - return -EACCES; - return check_buffer_access(env, reg, regno, reg->off, - access_size, zero_size_allowed, - "rdonly", - &env->prog->aux->max_rdonly_access); - case PTR_TO_RDWR_BUF: + case PTR_TO_BUF: + if (type_is_rdonly_mem(reg->type)) { + if (meta && meta->raw_mode) { + verbose(env, "R%d cannot write into %s\n", regno, + reg_type_str(env, reg->type)); + return -EACCES; + } + + buf_info = "rdonly"; + max_access = &env->prog->aux->max_rdonly_access; + } else { + buf_info = "rdwr"; + max_access = &env->prog->aux->max_rdwr_access; + } return check_buffer_access(env, reg, regno, reg->off, access_size, zero_size_allowed, - "rdwr", - &env->prog->aux->max_rdwr_access); + buf_info, max_access); case PTR_TO_STACK: return check_stack_range_initialized( env, @@ -4635,9 +4640,9 @@ register_is_null(reg)) return 0; - verbose(env, "R%d type=%s expected=%s\n", regno, - reg_type_str[reg->type], - reg_type_str[PTR_TO_STACK]); + verbose(env, "R%d type=%s ", regno, + reg_type_str(env, reg->type)); + verbose(env, "expected=%s\n", reg_type_str(env, PTR_TO_STACK)); return -EACCES; } } @@ -4648,7 +4653,7 @@ if (register_is_null(reg)) return 0; - if (reg_type_may_be_null(reg->type)) { + if (type_may_be_null(reg->type)) { /* Assuming that the register contains a value check if the memory * access is safe. Temporarily save and restore the register's state as * the conversion shouldn't be visible to a caller. @@ -4796,9 +4801,8 @@ static bool arg_type_is_mem_ptr(enum bpf_arg_type type) { - return type == ARG_PTR_TO_MEM || - type == ARG_PTR_TO_MEM_OR_NULL || - type == ARG_PTR_TO_UNINIT_MEM; + return base_type(type) == ARG_PTR_TO_MEM || + base_type(type) == ARG_PTR_TO_UNINIT_MEM; } static bool arg_type_is_mem_size(enum bpf_arg_type type) @@ -4900,8 +4904,7 @@ PTR_TO_MAP_KEY, PTR_TO_MAP_VALUE, PTR_TO_MEM, - PTR_TO_RDONLY_BUF, - PTR_TO_RDWR_BUF, + PTR_TO_BUF, }, }; @@ -4932,31 +4935,26 @@ [ARG_PTR_TO_MAP_KEY] = &map_key_value_types, [ARG_PTR_TO_MAP_VALUE] = &map_key_value_types, [ARG_PTR_TO_UNINIT_MAP_VALUE] = &map_key_value_types, - [ARG_PTR_TO_MAP_VALUE_OR_NULL] = &map_key_value_types, [ARG_CONST_SIZE] = &scalar_types, [ARG_CONST_SIZE_OR_ZERO] = &scalar_types, [ARG_CONST_ALLOC_SIZE_OR_ZERO] = &scalar_types, [ARG_CONST_MAP_PTR] = &const_map_ptr_types, [ARG_PTR_TO_CTX] = &context_types, - [ARG_PTR_TO_CTX_OR_NULL] = &context_types, [ARG_PTR_TO_SOCK_COMMON] = &sock_types, #ifdef CONFIG_NET [ARG_PTR_TO_BTF_ID_SOCK_COMMON] = &btf_id_sock_common_types, #endif [ARG_PTR_TO_SOCKET] = &fullsock_types, - [ARG_PTR_TO_SOCKET_OR_NULL] = &fullsock_types, [ARG_PTR_TO_BTF_ID] = &btf_ptr_types, [ARG_PTR_TO_SPIN_LOCK] = &spin_lock_types, [ARG_PTR_TO_MEM] = &mem_types, - [ARG_PTR_TO_MEM_OR_NULL] = &mem_types, [ARG_PTR_TO_UNINIT_MEM] = &mem_types, [ARG_PTR_TO_ALLOC_MEM] = &alloc_mem_types, - [ARG_PTR_TO_ALLOC_MEM_OR_NULL] = &alloc_mem_types, [ARG_PTR_TO_INT] = &int_ptr_types, [ARG_PTR_TO_LONG] = &int_ptr_types, [ARG_PTR_TO_PERCPU_BTF_ID] = &percpu_btf_ptr_types, [ARG_PTR_TO_FUNC] = &func_ptr_types, - [ARG_PTR_TO_STACK_OR_NULL] = &stack_ptr_types, + [ARG_PTR_TO_STACK] = &stack_ptr_types, [ARG_PTR_TO_CONST_STR] = &const_str_ptr_types, [ARG_PTR_TO_TIMER] = &timer_types, }; @@ -4970,12 +4968,27 @@ const struct bpf_reg_types *compatible; int i, j; - compatible = compatible_reg_types[arg_type]; + compatible = compatible_reg_types[base_type(arg_type)]; if (!compatible) { verbose(env, "verifier internal error: unsupported arg type %d\n", arg_type); return -EFAULT; } + /* ARG_PTR_TO_MEM + RDONLY is compatible with PTR_TO_MEM and PTR_TO_MEM + RDONLY, + * but ARG_PTR_TO_MEM is compatible only with PTR_TO_MEM and NOT with PTR_TO_MEM + RDONLY + * + * Same for MAYBE_NULL: + * + * ARG_PTR_TO_MEM + MAYBE_NULL is compatible with PTR_TO_MEM and PTR_TO_MEM + MAYBE_NULL, + * but ARG_PTR_TO_MEM is compatible only with PTR_TO_MEM but NOT with PTR_TO_MEM + MAYBE_NULL + * + * Therefore we fold these flags depending on the arg_type before comparison. + */ + if (arg_type & MEM_RDONLY) + type &= ~MEM_RDONLY; + if (arg_type & PTR_MAYBE_NULL) + type &= ~PTR_MAYBE_NULL; + for (i = 0; i < ARRAY_SIZE(compatible->types); i++) { expected = compatible->types[i]; if (expected == NOT_INIT) @@ -4985,14 +4998,14 @@ goto found; } - verbose(env, "R%d type=%s expected=", regno, reg_type_str[type]); + verbose(env, "R%d type=%s expected=", regno, reg_type_str(env, reg->type)); for (j = 0; j + 1 < i; j++) - verbose(env, "%s, ", reg_type_str[compatible->types[j]]); - verbose(env, "%s\n", reg_type_str[compatible->types[j]]); + verbose(env, "%s, ", reg_type_str(env, compatible->types[j])); + verbose(env, "%s\n", reg_type_str(env, compatible->types[j])); return -EACCES; found: - if (type == PTR_TO_BTF_ID) { + if (reg->type == PTR_TO_BTF_ID) { if (!arg_btf_id) { if (!compatible->btf_id) { verbose(env, "verifier internal error: missing arg compatible BTF ID\n"); @@ -5051,15 +5064,14 @@ return -EACCES; } - if (arg_type == ARG_PTR_TO_MAP_VALUE || - arg_type == ARG_PTR_TO_UNINIT_MAP_VALUE || - arg_type == ARG_PTR_TO_MAP_VALUE_OR_NULL) { + if (base_type(arg_type) == ARG_PTR_TO_MAP_VALUE || + base_type(arg_type) == ARG_PTR_TO_UNINIT_MAP_VALUE) { err = resolve_map_arg_type(env, meta, &arg_type); if (err) return err; } - if (register_is_null(reg) && arg_type_may_be_null(arg_type)) + if (register_is_null(reg) && type_may_be_null(arg_type)) /* A NULL register has a SCALAR_VALUE type, so skip * type checking. */ @@ -5136,10 +5148,11 @@ err = check_helper_mem_access(env, regno, meta->map_ptr->key_size, false, NULL); - } else if (arg_type == ARG_PTR_TO_MAP_VALUE || - (arg_type == ARG_PTR_TO_MAP_VALUE_OR_NULL && - !register_is_null(reg)) || - arg_type == ARG_PTR_TO_UNINIT_MAP_VALUE) { + } else if (base_type(arg_type) == ARG_PTR_TO_MAP_VALUE || + base_type(arg_type) == ARG_PTR_TO_UNINIT_MAP_VALUE) { + if (type_may_be_null(arg_type) && register_is_null(reg)) + return 0; + /* bpf_map_xxx(..., map_ptr, ..., value) call: * check [value, value + map->value_size) validity */ @@ -6214,6 +6227,8 @@ int *insn_idx_p) { const struct bpf_func_proto *fn = NULL; + enum bpf_return_type ret_type; + enum bpf_type_flag ret_flag; struct bpf_reg_state *regs; struct bpf_call_arg_meta meta; int insn_idx = *insn_idx_p; @@ -6347,13 +6362,14 @@ regs[BPF_REG_0].subreg_def = DEF_NOT_SUBREG; /* update return register (already marked as written above) */ - if (fn->ret_type == RET_INTEGER) { + ret_type = fn->ret_type; + ret_flag = type_flag(fn->ret_type); + if (ret_type == RET_INTEGER) { /* sets type to SCALAR_VALUE */ mark_reg_unknown(env, regs, BPF_REG_0); - } else if (fn->ret_type == RET_VOID) { + } else if (ret_type == RET_VOID) { regs[BPF_REG_0].type = NOT_INIT; - } else if (fn->ret_type == RET_PTR_TO_MAP_VALUE_OR_NULL || - fn->ret_type == RET_PTR_TO_MAP_VALUE) { + } else if (base_type(ret_type) == RET_PTR_TO_MAP_VALUE) { /* There is no offset yet applied, variable or fixed */ mark_reg_known_zero(env, regs, BPF_REG_0); /* remember map_ptr, so that check_map_access() @@ -6367,28 +6383,25 @@ } regs[BPF_REG_0].map_ptr = meta.map_ptr; regs[BPF_REG_0].map_uid = meta.map_uid; - if (fn->ret_type == RET_PTR_TO_MAP_VALUE) { - regs[BPF_REG_0].type = PTR_TO_MAP_VALUE; - if (map_value_has_spin_lock(meta.map_ptr)) - regs[BPF_REG_0].id = ++env->id_gen; - } else { - regs[BPF_REG_0].type = PTR_TO_MAP_VALUE_OR_NULL; + regs[BPF_REG_0].type = PTR_TO_MAP_VALUE | ret_flag; + if (!type_may_be_null(ret_type) && + map_value_has_spin_lock(meta.map_ptr)) { + regs[BPF_REG_0].id = ++env->id_gen; } - } else if (fn->ret_type == RET_PTR_TO_SOCKET_OR_NULL) { + } else if (base_type(ret_type) == RET_PTR_TO_SOCKET) { mark_reg_known_zero(env, regs, BPF_REG_0); - regs[BPF_REG_0].type = PTR_TO_SOCKET_OR_NULL; - } else if (fn->ret_type == RET_PTR_TO_SOCK_COMMON_OR_NULL) { + regs[BPF_REG_0].type = PTR_TO_SOCKET | ret_flag; + } else if (base_type(ret_type) == RET_PTR_TO_SOCK_COMMON) { mark_reg_known_zero(env, regs, BPF_REG_0); - regs[BPF_REG_0].type = PTR_TO_SOCK_COMMON_OR_NULL; - } else if (fn->ret_type == RET_PTR_TO_TCP_SOCK_OR_NULL) { + regs[BPF_REG_0].type = PTR_TO_SOCK_COMMON | ret_flag; + } else if (base_type(ret_type) == RET_PTR_TO_TCP_SOCK) { mark_reg_known_zero(env, regs, BPF_REG_0); - regs[BPF_REG_0].type = PTR_TO_TCP_SOCK_OR_NULL; - } else if (fn->ret_type == RET_PTR_TO_ALLOC_MEM_OR_NULL) { + regs[BPF_REG_0].type = PTR_TO_TCP_SOCK | ret_flag; + } else if (base_type(ret_type) == RET_PTR_TO_ALLOC_MEM) { mark_reg_known_zero(env, regs, BPF_REG_0); - regs[BPF_REG_0].type = PTR_TO_MEM_OR_NULL; + regs[BPF_REG_0].type = PTR_TO_MEM | ret_flag; regs[BPF_REG_0].mem_size = meta.mem_size; - } else if (fn->ret_type == RET_PTR_TO_MEM_OR_BTF_ID_OR_NULL || - fn->ret_type == RET_PTR_TO_MEM_OR_BTF_ID) { + } else if (base_type(ret_type) == RET_PTR_TO_MEM_OR_BTF_ID) { const struct btf_type *t; mark_reg_known_zero(env, regs, BPF_REG_0); @@ -6406,29 +6419,30 @@ tname, PTR_ERR(ret)); return -EINVAL; } - regs[BPF_REG_0].type = - fn->ret_type == RET_PTR_TO_MEM_OR_BTF_ID ? - PTR_TO_MEM : PTR_TO_MEM_OR_NULL; + regs[BPF_REG_0].type = PTR_TO_MEM | ret_flag; regs[BPF_REG_0].mem_size = tsize; } else { - regs[BPF_REG_0].type = - fn->ret_type == RET_PTR_TO_MEM_OR_BTF_ID ? - PTR_TO_BTF_ID : PTR_TO_BTF_ID_OR_NULL; + /* MEM_RDONLY may be carried from ret_flag, but it + * doesn't apply on PTR_TO_BTF_ID. Fold it, otherwise + * it will confuse the check of PTR_TO_BTF_ID in + * check_mem_access(). + */ + ret_flag &= ~MEM_RDONLY; + + regs[BPF_REG_0].type = PTR_TO_BTF_ID | ret_flag; regs[BPF_REG_0].btf = meta.ret_btf; regs[BPF_REG_0].btf_id = meta.ret_btf_id; } - } else if (fn->ret_type == RET_PTR_TO_BTF_ID_OR_NULL || - fn->ret_type == RET_PTR_TO_BTF_ID) { + } else if (base_type(ret_type) == RET_PTR_TO_BTF_ID) { int ret_btf_id; mark_reg_known_zero(env, regs, BPF_REG_0); - regs[BPF_REG_0].type = fn->ret_type == RET_PTR_TO_BTF_ID ? - PTR_TO_BTF_ID : - PTR_TO_BTF_ID_OR_NULL; + regs[BPF_REG_0].type = PTR_TO_BTF_ID | ret_flag; ret_btf_id = *fn->ret_btf_id; if (ret_btf_id == 0) { - verbose(env, "invalid return type %d of func %s#%d\n", - fn->ret_type, func_id_name(func_id), func_id); + verbose(env, "invalid return type %u of func %s#%d\n", + base_type(ret_type), func_id_name(func_id), + func_id); return -EINVAL; } /* current BPF helper definitions are only coming from @@ -6437,12 +6451,12 @@ regs[BPF_REG_0].btf = btf_vmlinux; regs[BPF_REG_0].btf_id = ret_btf_id; } else { - verbose(env, "unknown return type %d of func %s#%d\n", - fn->ret_type, func_id_name(func_id), func_id); + verbose(env, "unknown return type %u of func %s#%d\n", + base_type(ret_type), func_id_name(func_id), func_id); return -EINVAL; } - if (reg_type_may_be_null(regs[BPF_REG_0].type)) + if (type_may_be_null(regs[BPF_REG_0].type)) regs[BPF_REG_0].id = ++env->id_gen; if (is_ptr_cast_function(func_id)) { @@ -6641,25 +6655,25 @@ if (known && (val >= BPF_MAX_VAR_OFF || val <= -BPF_MAX_VAR_OFF)) { verbose(env, "math between %s pointer and %lld is not allowed\n", - reg_type_str[type], val); + reg_type_str(env, type), val); return false; } if (reg->off >= BPF_MAX_VAR_OFF || reg->off <= -BPF_MAX_VAR_OFF) { verbose(env, "%s pointer offset %d is not allowed\n", - reg_type_str[type], reg->off); + reg_type_str(env, type), reg->off); return false; } if (smin == S64_MIN) { verbose(env, "math between %s pointer and register with unbounded min value is not allowed\n", - reg_type_str[type]); + reg_type_str(env, type)); return false; } if (smin >= BPF_MAX_VAR_OFF || smin <= -BPF_MAX_VAR_OFF) { verbose(env, "value %lld makes %s pointer be out of bounds\n", - smin, reg_type_str[type]); + smin, reg_type_str(env, type)); return false; } @@ -7036,11 +7050,13 @@ return -EACCES; } - switch (ptr_reg->type) { - case PTR_TO_MAP_VALUE_OR_NULL: + if (ptr_reg->type & PTR_MAYBE_NULL) { verbose(env, "R%d pointer arithmetic on %s prohibited, null-check it first\n", - dst, reg_type_str[ptr_reg->type]); + dst, reg_type_str(env, ptr_reg->type)); return -EACCES; + } + + switch (base_type(ptr_reg->type)) { case CONST_PTR_TO_MAP: /* smin_val represents the known value */ if (known && smin_val == 0 && opcode == BPF_ADD) @@ -7053,10 +7069,10 @@ case PTR_TO_XDP_SOCK: reject: verbose(env, "R%d pointer arithmetic on %s prohibited\n", - dst, reg_type_str[ptr_reg->type]); + dst, reg_type_str(env, ptr_reg->type)); return -EACCES; default: - if (reg_type_may_be_null(ptr_reg->type)) + if (type_may_be_null(ptr_reg->type)) goto reject; break; } @@ -8778,7 +8794,7 @@ struct bpf_reg_state *reg, u32 id, bool is_null) { - if (reg_type_may_be_null(reg->type) && reg->id == id && + if (type_may_be_null(reg->type) && reg->id == id && !WARN_ON_ONCE(!reg->id)) { if (WARN_ON_ONCE(reg->smin_value || reg->smax_value || !tnum_equals_const(reg->var_off, 0) || @@ -9156,7 +9172,7 @@ */ if (!is_jmp32 && BPF_SRC(insn->code) == BPF_K && insn->imm == 0 && (opcode == BPF_JEQ || opcode == BPF_JNE) && - reg_type_may_be_null(dst_reg->type)) { + type_may_be_null(dst_reg->type)) { /* Mark all identical registers in each branch as either * safe or unknown depending R == 0 or R != 0 conditional. */ @@ -9215,7 +9231,7 @@ if (insn->src_reg == BPF_PSEUDO_BTF_ID) { dst_reg->type = aux->btf_var.reg_type; - switch (dst_reg->type) { + switch (base_type(dst_reg->type)) { case PTR_TO_MEM: dst_reg->mem_size = aux->btf_var.mem_size; break; @@ -9412,7 +9428,7 @@ /* enforce return zero from async callbacks like timer */ if (reg->type != SCALAR_VALUE) { verbose(env, "In async callback the register R0 is not a known value (%s)\n", - reg_type_str[reg->type]); + reg_type_str(env, reg->type)); return -EINVAL; } @@ -9426,7 +9442,7 @@ if (is_subprog) { if (reg->type != SCALAR_VALUE) { verbose(env, "At subprogram exit the register R0 is not a scalar value (%s)\n", - reg_type_str[reg->type]); + reg_type_str(env, reg->type)); return -EINVAL; } return 0; @@ -9490,7 +9506,7 @@ if (reg->type != SCALAR_VALUE) { verbose(env, "At program exit the register R0 is not a known value (%s)\n", - reg_type_str[reg->type]); + reg_type_str(env, reg->type)); return -EINVAL; } @@ -10271,7 +10287,7 @@ return true; if (rcur->type == NOT_INIT) return false; - switch (rold->type) { + switch (base_type(rold->type)) { case SCALAR_VALUE: if (env->explore_alu_limits) return false; @@ -10293,6 +10309,22 @@ } case PTR_TO_MAP_KEY: case PTR_TO_MAP_VALUE: + /* a PTR_TO_MAP_VALUE could be safe to use as a + * PTR_TO_MAP_VALUE_OR_NULL into the same map. + * However, if the old PTR_TO_MAP_VALUE_OR_NULL then got NULL- + * checked, doing so could have affected others with the same + * id, and we can't check for that because we lost the id when + * we converted to a PTR_TO_MAP_VALUE. + */ + if (type_may_be_null(rold->type)) { + if (!type_may_be_null(rcur->type)) + return false; + if (memcmp(rold, rcur, offsetof(struct bpf_reg_state, id))) + return false; + /* Check our ids match any regs they're supposed to */ + return check_ids(rold->id, rcur->id, idmap); + } + /* If the new min/max/var_off satisfy the old ones and * everything else matches, we are OK. * 'id' is not compared, since it's only used for maps with @@ -10304,20 +10336,6 @@ return memcmp(rold, rcur, offsetof(struct bpf_reg_state, id)) == 0 && range_within(rold, rcur) && tnum_in(rold->var_off, rcur->var_off); - case PTR_TO_MAP_VALUE_OR_NULL: - /* a PTR_TO_MAP_VALUE could be safe to use as a - * PTR_TO_MAP_VALUE_OR_NULL into the same map. - * However, if the old PTR_TO_MAP_VALUE_OR_NULL then got NULL- - * checked, doing so could have affected others with the same - * id, and we can't check for that because we lost the id when - * we converted to a PTR_TO_MAP_VALUE. - */ - if (rcur->type != PTR_TO_MAP_VALUE_OR_NULL) - return false; - if (memcmp(rold, rcur, offsetof(struct bpf_reg_state, id))) - return false; - /* Check our ids match any regs they're supposed to */ - return check_ids(rold->id, rcur->id, idmap); case PTR_TO_PACKET_META: case PTR_TO_PACKET: if (rcur->type != rold->type) @@ -10346,11 +10364,8 @@ case PTR_TO_PACKET_END: case PTR_TO_FLOW_KEYS: case PTR_TO_SOCKET: - case PTR_TO_SOCKET_OR_NULL: case PTR_TO_SOCK_COMMON: - case PTR_TO_SOCK_COMMON_OR_NULL: case PTR_TO_TCP_SOCK: - case PTR_TO_TCP_SOCK_OR_NULL: case PTR_TO_XDP_SOCK: /* Only valid matches are exact, which memcmp() above * would have accepted @@ -10876,17 +10891,13 @@ /* Return true if it's OK to have the same insn return a different type. */ static bool reg_type_mismatch_ok(enum bpf_reg_type type) { - switch (type) { + switch (base_type(type)) { case PTR_TO_CTX: case PTR_TO_SOCKET: - case PTR_TO_SOCKET_OR_NULL: case PTR_TO_SOCK_COMMON: - case PTR_TO_SOCK_COMMON_OR_NULL: case PTR_TO_TCP_SOCK: - case PTR_TO_TCP_SOCK_OR_NULL: case PTR_TO_XDP_SOCK: case PTR_TO_BTF_ID: - case PTR_TO_BTF_ID_OR_NULL: return false; default: return true; @@ -11110,7 +11121,7 @@ if (is_ctx_reg(env, insn->dst_reg)) { verbose(env, "BPF_ST stores into R%d %s is not allowed\n", insn->dst_reg, - reg_type_str[reg_state(env, insn->dst_reg)->type]); + reg_type_str(env, reg_state(env, insn->dst_reg)->type)); return -EACCES; } @@ -11361,7 +11372,7 @@ err = -EINVAL; goto err_put; } - aux->btf_var.reg_type = PTR_TO_MEM; + aux->btf_var.reg_type = PTR_TO_MEM | MEM_RDONLY; aux->btf_var.mem_size = tsize; } else { aux->btf_var.reg_type = PTR_TO_BTF_ID; @@ -13183,7 +13194,7 @@ mark_reg_known_zero(env, regs, i); else if (regs[i].type == SCALAR_VALUE) mark_reg_unknown(env, regs, i); - else if (regs[i].type == PTR_TO_MEM_OR_NULL) { + else if (base_type(regs[i].type) == PTR_TO_MEM) { const u32 mem_size = regs[i].mem_size; mark_reg_known_zero(env, regs, i); diff -u linux-intel-iotg-5.15-5.15.0/kernel/cgroup/cpuset.c linux-intel-iotg-5.15-5.15.0/kernel/cgroup/cpuset.c --- linux-intel-iotg-5.15-5.15.0/kernel/cgroup/cpuset.c +++ linux-intel-iotg-5.15-5.15.0/kernel/cgroup/cpuset.c @@ -3347,8 +3347,11 @@ */ void __init cpuset_init_smp(void) { - cpumask_copy(top_cpuset.cpus_allowed, cpu_active_mask); - top_cpuset.mems_allowed = node_states[N_MEMORY]; + /* + * cpus_allowd/mems_allowed set to v2 values in the initial + * cpuset_bind() call will be reset to v1 values in another + * cpuset_bind() call when v1 cpuset is mounted. + */ top_cpuset.old_mems_allowed = top_cpuset.mems_allowed; cpumask_copy(top_cpuset.effective_cpus, cpu_active_mask); diff -u linux-intel-iotg-5.15-5.15.0/kernel/cpu.c linux-intel-iotg-5.15-5.15.0/kernel/cpu.c --- linux-intel-iotg-5.15-5.15.0/kernel/cpu.c +++ linux-intel-iotg-5.15-5.15.0/kernel/cpu.c @@ -34,6 +34,7 @@ #include #include #include +#include #include #define CREATE_TRACE_POINTS @@ -1659,6 +1660,11 @@ .startup.single = perf_event_init_cpu, .teardown.single = perf_event_exit_cpu, }, + [CPUHP_RANDOM_PREPARE] = { + .name = "random:prepare", + .startup.single = random_prepare_cpu, + .teardown.single = NULL, + }, [CPUHP_WORKQUEUE_PREP] = { .name = "workqueue:prepare", .startup.single = workqueue_prepare_cpu, @@ -1782,6 +1788,11 @@ .startup.single = workqueue_online_cpu, .teardown.single = workqueue_offline_cpu, }, + [CPUHP_AP_RANDOM_ONLINE] = { + .name = "random:online", + .startup.single = random_online_cpu, + .teardown.single = NULL, + }, [CPUHP_AP_RCUTREE_ONLINE] = { .name = "RCU/tree:online", .startup.single = rcutree_online_cpu, diff -u linux-intel-iotg-5.15-5.15.0/kernel/dma/debug.c linux-intel-iotg-5.15-5.15.0/kernel/dma/debug.c --- linux-intel-iotg-5.15-5.15.0/kernel/dma/debug.c +++ linux-intel-iotg-5.15-5.15.0/kernel/dma/debug.c @@ -448,7 +448,7 @@ * other hand, consumes a single dma_debug_entry, but inserts 'nents' * entries into the tree. */ -static RADIX_TREE(dma_active_cacheline, GFP_NOWAIT); +static RADIX_TREE(dma_active_cacheline, GFP_ATOMIC); static DEFINE_SPINLOCK(radix_lock); #define ACTIVE_CACHELINE_MAX_OVERLAP ((1 << RADIX_TREE_MAX_TAGS) - 1) #define CACHELINE_PER_PAGE_SHIFT (PAGE_SHIFT - L1_CACHE_SHIFT) diff -u linux-intel-iotg-5.15-5.15.0/kernel/events/core.c linux-intel-iotg-5.15-5.15.0/kernel/events/core.c --- linux-intel-iotg-5.15-5.15.0/kernel/events/core.c +++ linux-intel-iotg-5.15-5.15.0/kernel/events/core.c @@ -6353,7 +6353,7 @@ again: mutex_lock(&event->mmap_mutex); if (event->rb) { - if (event->rb->nr_pages != nr_pages) { + if (data_page_nr(event->rb) != nr_pages) { ret = -EINVAL; goto unlock; } @@ -6534,8 +6534,8 @@ if (current->flags & PF_EXITING) return; - force_sig_perf((void __user *)event->pending_addr, - event->attr.type, event->attr.sig_data); + send_sig_perf((void __user *)event->pending_addr, + event->attr.type, event->attr.sig_data); } static void perf_pending_event_disable(struct perf_event *event) @@ -12291,6 +12291,9 @@ * Do not allow to attach to a group in a different task * or CPU context. If we're moving SW events, we'll fix * this up later, so allow that. + * + * Racy, not holding group_leader->ctx->mutex, see comment with + * perf_event_ctx_lock(). */ if (!move_group && group_leader->ctx != ctx) goto err_context; @@ -12356,6 +12359,7 @@ } else { perf_event_ctx_unlock(group_leader, gctx); move_group = 0; + goto not_move_group; } } @@ -12372,7 +12376,17 @@ } } else { mutex_lock(&ctx->mutex); + + /* + * Now that we hold ctx->lock, (re)validate group_leader->ctx == ctx, + * see the group_leader && !move_group test earlier. + */ + if (group_leader && group_leader->ctx != ctx) { + err = -EINVAL; + goto err_locked; + } } +not_move_group: if (ctx->task == TASK_TOMBSTONE) { err = -ESRCH; diff -u linux-intel-iotg-5.15-5.15.0/kernel/printk/printk.c linux-intel-iotg-5.15-5.15.0/kernel/printk/printk.c --- linux-intel-iotg-5.15-5.15.0/kernel/printk/printk.c +++ linux-intel-iotg-5.15-5.15.0/kernel/printk/printk.c @@ -735,8 +735,19 @@ goto out; } + /* + * Guarantee this task is visible on the waitqueue before + * checking the wake condition. + * + * The full memory barrier within set_current_state() of + * prepare_to_wait_event() pairs with the full memory barrier + * within wq_has_sleeper(). + * + * This pairs with __wake_up_klogd:A. + */ ret = wait_event_interruptible(log_wait, - prb_read_valid(prb, atomic64_read(&user->seq), r)); + prb_read_valid(prb, + atomic64_read(&user->seq), r)); /* LMM(devkmsg_read:A) */ if (ret) goto out; } @@ -1502,7 +1513,18 @@ seq = syslog_seq; mutex_unlock(&syslog_lock); - len = wait_event_interruptible(log_wait, prb_read_valid(prb, seq, NULL)); + /* + * Guarantee this task is visible on the waitqueue before + * checking the wake condition. + * + * The full memory barrier within set_current_state() of + * prepare_to_wait_event() pairs with the full memory barrier + * within wq_has_sleeper(). + * + * This pairs with __wake_up_klogd:A. + */ + len = wait_event_interruptible(log_wait, + prb_read_valid(prb, seq, NULL)); /* LMM(syslog_print:A) */ mutex_lock(&syslog_lock); if (len) @@ -3215,7 +3237,7 @@ static void wake_up_klogd_work_func(struct irq_work *irq_work) { - int pending = __this_cpu_xchg(printk_pending, 0); + int pending = this_cpu_xchg(printk_pending, 0); if (pending & PRINTK_PENDING_OUTPUT) { /* If trylock fails, someone else is doing the printing */ @@ -3230,28 +3252,43 @@ static DEFINE_PER_CPU(struct irq_work, wake_up_klogd_work) = IRQ_WORK_INIT_LAZY(wake_up_klogd_work_func); -void wake_up_klogd(void) +static void __wake_up_klogd(int val) { if (!printk_percpu_data_ready()) return; preempt_disable(); - if (waitqueue_active(&log_wait)) { - this_cpu_or(printk_pending, PRINTK_PENDING_WAKEUP); + /* + * Guarantee any new records can be seen by tasks preparing to wait + * before this context checks if the wait queue is empty. + * + * The full memory barrier within wq_has_sleeper() pairs with the full + * memory barrier within set_current_state() of + * prepare_to_wait_event(), which is called after ___wait_event() adds + * the waiter but before it has checked the wait condition. + * + * This pairs with devkmsg_read:A and syslog_print:A. + */ + if (wq_has_sleeper(&log_wait) || /* LMM(__wake_up_klogd:A) */ + (val & PRINTK_PENDING_OUTPUT)) { + this_cpu_or(printk_pending, val); irq_work_queue(this_cpu_ptr(&wake_up_klogd_work)); } preempt_enable(); } -void defer_console_output(void) +void wake_up_klogd(void) { - if (!printk_percpu_data_ready()) - return; + __wake_up_klogd(PRINTK_PENDING_WAKEUP); +} - preempt_disable(); - __this_cpu_or(printk_pending, PRINTK_PENDING_OUTPUT); - irq_work_queue(this_cpu_ptr(&wake_up_klogd_work)); - preempt_enable(); +void defer_console_output(void) +{ + /* + * New messages may have been added directly to the ringbuffer + * using vprintk_store(), so wake any waiters as well. + */ + __wake_up_klogd(PRINTK_PENDING_WAKEUP | PRINTK_PENDING_OUTPUT); } void printk_trigger_flush(void) diff -u linux-intel-iotg-5.15-5.15.0/kernel/ptrace.c linux-intel-iotg-5.15-5.15.0/kernel/ptrace.c --- linux-intel-iotg-5.15-5.15.0/kernel/ptrace.c +++ linux-intel-iotg-5.15-5.15.0/kernel/ptrace.c @@ -1238,9 +1238,8 @@ return ptrace_resume(child, request, data); case PTRACE_KILL: - if (child->exit_state) /* already dead */ - return 0; - return ptrace_resume(child, request, SIGKILL); + send_sig_info(SIGKILL, SEND_SIG_NOINFO, child); + return 0; #ifdef CONFIG_HAVE_ARCH_TRACEHOOK case PTRACE_GETREGSET: diff -u linux-intel-iotg-5.15-5.15.0/kernel/rcu/tasks.h linux-intel-iotg-5.15-5.15.0/kernel/rcu/tasks.h --- linux-intel-iotg-5.15-5.15.0/kernel/rcu/tasks.h +++ linux-intel-iotg-5.15-5.15.0/kernel/rcu/tasks.h @@ -660,6 +660,9 @@ // Wait for one rude RCU-tasks grace period. static void rcu_tasks_rude_wait_gp(struct rcu_tasks *rtp) { + if (num_online_cpus() <= 1) + return; // Fastpath for only one CPU. + rtp->n_ipis += cpumask_weight(cpu_online_mask); schedule_on_each_cpu(rcu_tasks_be_rude); } diff -u linux-intel-iotg-5.15-5.15.0/kernel/rcu/tree.c linux-intel-iotg-5.15-5.15.0/kernel/rcu/tree.c --- linux-intel-iotg-5.15-5.15.0/kernel/rcu/tree.c +++ linux-intel-iotg-5.15-5.15.0/kernel/rcu/tree.c @@ -2476,7 +2476,7 @@ div = READ_ONCE(rcu_divisor); div = div < 0 ? 7 : div > sizeof(long) * 8 - 2 ? sizeof(long) * 8 - 2 : div; bl = max(rdp->blimit, pending >> div); - if (unlikely(bl > 100)) { + if (in_serving_softirq() && unlikely(bl > 100)) { long rrn = READ_ONCE(rcu_resched_ns); rrn = rrn < NSEC_PER_MSEC ? NSEC_PER_MSEC : rrn > NSEC_PER_SEC ? NSEC_PER_SEC : rrn; @@ -2513,18 +2513,23 @@ /* * Stop only if limit reached and CPU has something to do. */ - if (count >= bl && !offloaded && - (need_resched() || - (!is_idle_task(current) && !rcu_is_callbacks_kthread()))) - break; - if (unlikely(tlimit)) { - /* only call local_clock() every 32 callbacks */ - if (likely((count & 31) || local_clock() < tlimit)) - continue; - /* Exceeded the time limit, so leave. */ - break; - } - if (!in_serving_softirq()) { + if (in_serving_softirq()) { + if (count >= bl && (need_resched() || + (!is_idle_task(current) && !rcu_is_callbacks_kthread()))) + break; + + /* + * Make sure we don't spend too much time here and deprive other + * softirq vectors of CPU cycles. + */ + if (unlikely(tlimit)) { + /* only call local_clock() every 32 callbacks */ + if (likely((count & 31) || local_clock() < tlimit)) + continue; + /* Exceeded the time limit, so leave. */ + break; + } + } else { local_bh_enable(); lockdep_assert_irqs_enabled(); cond_resched_tasks_rcu_qs(); diff -u linux-intel-iotg-5.15-5.15.0/kernel/sched/core.c linux-intel-iotg-5.15-5.15.0/kernel/sched/core.c --- linux-intel-iotg-5.15-5.15.0/kernel/sched/core.c +++ linux-intel-iotg-5.15-5.15.0/kernel/sched/core.c @@ -531,10 +531,10 @@ swap(rq1, rq2); raw_spin_rq_lock(rq1); - if (__rq_lockp(rq1) == __rq_lockp(rq2)) - return; + if (__rq_lockp(rq1) != __rq_lockp(rq2)) + raw_spin_rq_lock_nested(rq2, SINGLE_DEPTH_NESTING); - raw_spin_rq_lock_nested(rq2, SINGLE_DEPTH_NESTING); + double_rq_clock_clear_update(rq1, rq2); } #endif diff -u linux-intel-iotg-5.15-5.15.0/kernel/sched/deadline.c linux-intel-iotg-5.15-5.15.0/kernel/sched/deadline.c --- linux-intel-iotg-5.15-5.15.0/kernel/sched/deadline.c +++ linux-intel-iotg-5.15-5.15.0/kernel/sched/deadline.c @@ -1720,6 +1720,7 @@ static void migrate_task_rq_dl(struct task_struct *p, int new_cpu __maybe_unused) { + struct rq_flags rf; struct rq *rq; if (READ_ONCE(p->__state) != TASK_WAKING) @@ -1731,7 +1732,7 @@ * from try_to_wake_up(). Hence, p->pi_lock is locked, but * rq->lock is not... So, lock it */ - raw_spin_rq_lock(rq); + rq_lock(rq, &rf); if (p->dl.dl_non_contending) { update_rq_clock(rq); sub_running_bw(&p->dl, &rq->dl); @@ -1747,7 +1748,7 @@ put_task_struct(p); } sub_rq_bw(&p->dl, &rq->dl); - raw_spin_rq_unlock(rq); + rq_unlock(rq, &rf); } static void check_preempt_equal_dl(struct rq *rq, struct task_struct *p) diff -u linux-intel-iotg-5.15-5.15.0/kernel/sched/fair.c linux-intel-iotg-5.15-5.15.0/kernel/sched/fair.c --- linux-intel-iotg-5.15-5.15.0/kernel/sched/fair.c +++ linux-intel-iotg-5.15-5.15.0/kernel/sched/fair.c @@ -3794,11 +3794,11 @@ se->avg.runnable_sum = se->avg.runnable_avg * divider; - se->avg.load_sum = divider; - if (se_weight(se)) { - se->avg.load_sum = - div_u64(se->avg.load_avg * se->avg.load_sum, se_weight(se)); - } + se->avg.load_sum = se->avg.load_avg * divider; + if (se_weight(se) < se->avg.load_sum) + se->avg.load_sum = div_u64(se->avg.load_sum, se_weight(se)); + else + se->avg.load_sum = 1; enqueue_load_avg(cfs_rq, se); cfs_rq->avg.util_avg += se->avg.util_avg; @@ -4812,8 +4812,8 @@ cfs_rq->throttle_count--; if (!cfs_rq->throttle_count) { - cfs_rq->throttled_clock_task_time += rq_clock_task(rq) - - cfs_rq->throttled_clock_task; + cfs_rq->throttled_clock_pelt_time += rq_clock_pelt(rq) - + cfs_rq->throttled_clock_pelt; /* Add cfs_rq with load or one or more already running entities to the list */ if (!cfs_rq_is_decayed(cfs_rq) || cfs_rq->nr_running) @@ -4830,7 +4830,7 @@ /* group is entering throttled state, stop time */ if (!cfs_rq->throttle_count) { - cfs_rq->throttled_clock_task = rq_clock_task(rq); + cfs_rq->throttled_clock_pelt = rq_clock_pelt(rq); list_del_leaf_cfs_rq(cfs_rq); } cfs_rq->throttle_count++; @@ -5274,7 +5274,7 @@ pcfs_rq = tg->parent->cfs_rq[cpu]; cfs_rq->throttle_count = pcfs_rq->throttle_count; - cfs_rq->throttled_clock_task = rq_clock_task(cpu_rq(cpu)); + cfs_rq->throttled_clock_pelt = rq_clock_pelt(cpu_rq(cpu)); } /* conditionally throttle active cfs_rq's from put_prev_entity() */ diff -u linux-intel-iotg-5.15-5.15.0/kernel/sched/pelt.h linux-intel-iotg-5.15-5.15.0/kernel/sched/pelt.h --- linux-intel-iotg-5.15-5.15.0/kernel/sched/pelt.h +++ linux-intel-iotg-5.15-5.15.0/kernel/sched/pelt.h @@ -145,9 +145,9 @@ static inline u64 cfs_rq_clock_pelt(struct cfs_rq *cfs_rq) { if (unlikely(cfs_rq->throttle_count)) - return cfs_rq->throttled_clock_task - cfs_rq->throttled_clock_task_time; + return cfs_rq->throttled_clock_pelt - cfs_rq->throttled_clock_pelt_time; - return rq_clock_pelt(rq_of(cfs_rq)) - cfs_rq->throttled_clock_task_time; + return rq_clock_pelt(rq_of(cfs_rq)) - cfs_rq->throttled_clock_pelt_time; } #else static inline u64 cfs_rq_clock_pelt(struct cfs_rq *cfs_rq) diff -u linux-intel-iotg-5.15-5.15.0/kernel/sched/psi.c linux-intel-iotg-5.15-5.15.0/kernel/sched/psi.c --- linux-intel-iotg-5.15-5.15.0/kernel/sched/psi.c +++ linux-intel-iotg-5.15-5.15.0/kernel/sched/psi.c @@ -1062,14 +1062,17 @@ mutex_unlock(&group->avgs_lock); for (full = 0; full < 2; full++) { - unsigned long avg[3]; - u64 total; + unsigned long avg[3] = { 0, }; + u64 total = 0; int w; - for (w = 0; w < 3; w++) - avg[w] = group->avg[res * 2 + full][w]; - total = div_u64(group->total[PSI_AVGS][res * 2 + full], - NSEC_PER_USEC); + /* CPU FULL is undefined at the system level */ + if (!(group == &psi_system && res == PSI_CPU && full)) { + for (w = 0; w < 3; w++) + avg[w] = group->avg[res * 2 + full][w]; + total = div_u64(group->total[PSI_AVGS][res * 2 + full], + NSEC_PER_USEC); + } seq_printf(m, "%s avg10=%lu.%02lu avg60=%lu.%02lu avg300=%lu.%02lu total=%llu\n", full ? "full" : "some", diff -u linux-intel-iotg-5.15-5.15.0/kernel/sched/rt.c linux-intel-iotg-5.15-5.15.0/kernel/sched/rt.c --- linux-intel-iotg-5.15-5.15.0/kernel/sched/rt.c +++ linux-intel-iotg-5.15-5.15.0/kernel/sched/rt.c @@ -885,6 +885,7 @@ int enqueue = 0; struct rt_rq *rt_rq = sched_rt_period_rt_rq(rt_b, i); struct rq *rq = rq_of_rt_rq(rt_rq); + struct rq_flags rf; int skip; /* @@ -899,7 +900,7 @@ if (skip) continue; - raw_spin_rq_lock(rq); + rq_lock(rq, &rf); update_rq_clock(rq); if (rt_rq->rt_time) { @@ -937,7 +938,7 @@ if (enqueue) sched_rt_rq_enqueue(rt_rq); - raw_spin_rq_unlock(rq); + rq_unlock(rq, &rf); } if (!throttled && (!rt_bandwidth_enabled() || rt_b->rt_runtime == RUNTIME_INF)) diff -u linux-intel-iotg-5.15-5.15.0/kernel/sched/sched.h linux-intel-iotg-5.15-5.15.0/kernel/sched/sched.h --- linux-intel-iotg-5.15-5.15.0/kernel/sched/sched.h +++ linux-intel-iotg-5.15-5.15.0/kernel/sched/sched.h @@ -615,8 +615,8 @@ s64 runtime_remaining; u64 throttled_clock; - u64 throttled_clock_task; - u64 throttled_clock_task_time; + u64 throttled_clock_pelt; + u64 throttled_clock_pelt_time; int throttled; int throttle_count; struct list_head throttled_list; @@ -2490,6 +2490,24 @@ } #endif +#ifdef CONFIG_SCHED_DEBUG +/* + * In double_lock_balance()/double_rq_lock(), we use raw_spin_rq_lock() to + * acquire rq lock instead of rq_lock(). So at the end of these two functions + * we need to call double_rq_clock_clear_update() to clear RQCF_UPDATED of + * rq->clock_update_flags to avoid the WARN_DOUBLE_CLOCK warning. + */ +static inline void double_rq_clock_clear_update(struct rq *rq1, struct rq *rq2) +{ + rq1->clock_update_flags &= (RQCF_REQ_SKIP|RQCF_ACT_SKIP); + /* rq1 == rq2 for !CONFIG_SMP, so just clear RQCF_UPDATED once. */ +#ifdef CONFIG_SMP + rq2->clock_update_flags &= (RQCF_REQ_SKIP|RQCF_ACT_SKIP); +#endif +} +#else +static inline void double_rq_clock_clear_update(struct rq *rq1, struct rq *rq2) {} +#endif #ifdef CONFIG_SMP @@ -2555,14 +2573,15 @@ __acquires(busiest->lock) __acquires(this_rq->lock) { - if (__rq_lockp(this_rq) == __rq_lockp(busiest)) - return 0; - - if (likely(raw_spin_rq_trylock(busiest))) + if (__rq_lockp(this_rq) == __rq_lockp(busiest) || + likely(raw_spin_rq_trylock(busiest))) { + double_rq_clock_clear_update(this_rq, busiest); return 0; + } if (rq_order_less(this_rq, busiest)) { raw_spin_rq_lock_nested(busiest, SINGLE_DEPTH_NESTING); + double_rq_clock_clear_update(this_rq, busiest); return 0; } @@ -2656,6 +2675,7 @@ BUG_ON(rq1 != rq2); raw_spin_rq_lock(rq1); __acquire(rq2->lock); /* Fake it out ;) */ + double_rq_clock_clear_update(rq1, rq2); } /* diff -u linux-intel-iotg-5.15-5.15.0/kernel/signal.c linux-intel-iotg-5.15-5.15.0/kernel/signal.c --- linux-intel-iotg-5.15-5.15.0/kernel/signal.c +++ linux-intel-iotg-5.15-5.15.0/kernel/signal.c @@ -1802,7 +1802,7 @@ } #endif -int force_sig_perf(void __user *addr, u32 type, u64 sig_data) +int send_sig_perf(void __user *addr, u32 type, u64 sig_data) { struct kernel_siginfo info; @@ -1814,7 +1814,18 @@ info.si_perf_data = sig_data; info.si_perf_type = type; - return force_sig_info(&info); + /* + * Signals generated by perf events should not terminate the whole + * process if SIGTRAP is blocked, however, delivering the signal + * asynchronously is better than not delivering at all. But tell user + * space if the signal was asynchronous, so it can clearly be + * distinguished from normal synchronous ones. + */ + info.si_perf_flags = sigismember(¤t->blocked, info.si_signo) ? + TRAP_PERF_FLAG_ASYNC : + 0; + + return send_sig_info(info.si_signo, &info, current); } /** @@ -3445,6 +3456,7 @@ to->si_addr = ptr_to_compat(from->si_addr); to->si_perf_data = from->si_perf_data; to->si_perf_type = from->si_perf_type; + to->si_perf_flags = from->si_perf_flags; break; case SIL_CHLD: to->si_pid = from->si_pid; @@ -3522,6 +3534,7 @@ to->si_addr = compat_ptr(from->si_addr); to->si_perf_data = from->si_perf_data; to->si_perf_type = from->si_perf_type; + to->si_perf_flags = from->si_perf_flags; break; case SIL_CHLD: to->si_pid = from->si_pid; @@ -4734,6 +4747,7 @@ CHECK_OFFSET(si_pkey); CHECK_OFFSET(si_perf_data); CHECK_OFFSET(si_perf_type); + CHECK_OFFSET(si_perf_flags); /* sigpoll */ CHECK_OFFSET(si_band); diff -u linux-intel-iotg-5.15-5.15.0/kernel/time/timekeeping.c linux-intel-iotg-5.15-5.15.0/kernel/time/timekeeping.c --- linux-intel-iotg-5.15-5.15.0/kernel/time/timekeeping.c +++ linux-intel-iotg-5.15-5.15.0/kernel/time/timekeeping.c @@ -17,6 +17,7 @@ #include #include #include +#include #include #include #include @@ -482,7 +483,7 @@ * of the following timestamps. Callers need to be aware of that and * deal with it. */ -u64 ktime_get_mono_fast_ns(void) +u64 notrace ktime_get_mono_fast_ns(void) { return __ktime_get_fast_ns(&tk_fast_mono); } @@ -494,7 +495,7 @@ * Contrary to ktime_get_mono_fast_ns() this is always correct because the * conversion factor is not affected by NTP/PTP correction. */ -u64 ktime_get_raw_fast_ns(void) +u64 notrace ktime_get_raw_fast_ns(void) { return __ktime_get_fast_ns(&tk_fast_raw); } @@ -2380,6 +2381,20 @@ return 0; } +/** + * random_get_entropy_fallback - Returns the raw clock source value, + * used by random.c for platforms with no valid random_get_entropy(). + */ +unsigned long random_get_entropy_fallback(void) +{ + struct tk_read_base *tkr = &tk_core.timekeeper.tkr_mono; + struct clocksource *clock = READ_ONCE(tkr->clock); + + if (unlikely(timekeeping_suspended || !clock)) + return 0; + return clock->read(clock); +} +EXPORT_SYMBOL_GPL(random_get_entropy_fallback); /** * do_adjtimex() - Accessor function to NTP __do_adjtimex function diff -u linux-intel-iotg-5.15-5.15.0/kernel/trace/bpf_trace.c linux-intel-iotg-5.15-5.15.0/kernel/trace/bpf_trace.c --- linux-intel-iotg-5.15-5.15.0/kernel/trace/bpf_trace.c +++ linux-intel-iotg-5.15-5.15.0/kernel/trace/bpf_trace.c @@ -345,7 +345,7 @@ .gpl_only = true, .ret_type = RET_INTEGER, .arg1_type = ARG_ANYTHING, - .arg2_type = ARG_PTR_TO_MEM, + .arg2_type = ARG_PTR_TO_MEM | MEM_RDONLY, .arg3_type = ARG_CONST_SIZE, }; @@ -394,7 +394,7 @@ .func = bpf_trace_printk, .gpl_only = true, .ret_type = RET_INTEGER, - .arg1_type = ARG_PTR_TO_MEM, + .arg1_type = ARG_PTR_TO_MEM | MEM_RDONLY, .arg2_type = ARG_CONST_SIZE, }; @@ -446,9 +446,9 @@ .ret_type = RET_INTEGER, .arg1_type = ARG_PTR_TO_BTF_ID, .arg1_btf_id = &btf_seq_file_ids[0], - .arg2_type = ARG_PTR_TO_MEM, + .arg2_type = ARG_PTR_TO_MEM | MEM_RDONLY, .arg3_type = ARG_CONST_SIZE, - .arg4_type = ARG_PTR_TO_MEM_OR_NULL, + .arg4_type = ARG_PTR_TO_MEM | PTR_MAYBE_NULL | MEM_RDONLY, .arg5_type = ARG_CONST_SIZE_OR_ZERO, }; @@ -463,7 +463,7 @@ .ret_type = RET_INTEGER, .arg1_type = ARG_PTR_TO_BTF_ID, .arg1_btf_id = &btf_seq_file_ids[0], - .arg2_type = ARG_PTR_TO_MEM, + .arg2_type = ARG_PTR_TO_MEM | MEM_RDONLY, .arg3_type = ARG_CONST_SIZE_OR_ZERO, }; @@ -487,7 +487,7 @@ .ret_type = RET_INTEGER, .arg1_type = ARG_PTR_TO_BTF_ID, .arg1_btf_id = &btf_seq_file_ids[0], - .arg2_type = ARG_PTR_TO_MEM, + .arg2_type = ARG_PTR_TO_MEM | MEM_RDONLY, .arg3_type = ARG_CONST_SIZE_OR_ZERO, .arg4_type = ARG_ANYTHING, }; @@ -648,7 +648,7 @@ .arg1_type = ARG_PTR_TO_CTX, .arg2_type = ARG_CONST_MAP_PTR, .arg3_type = ARG_ANYTHING, - .arg4_type = ARG_PTR_TO_MEM, + .arg4_type = ARG_PTR_TO_MEM | MEM_RDONLY, .arg5_type = ARG_CONST_SIZE_OR_ZERO, }; @@ -958,7 +958,7 @@ .ret_type = RET_INTEGER, .arg1_type = ARG_PTR_TO_MEM, .arg2_type = ARG_CONST_SIZE, - .arg3_type = ARG_PTR_TO_MEM, + .arg3_type = ARG_PTR_TO_MEM | MEM_RDONLY, .arg4_type = ARG_CONST_SIZE, .arg5_type = ARG_ANYTHING, }; @@ -1207,7 +1207,7 @@ .arg1_type = ARG_PTR_TO_CTX, .arg2_type = ARG_CONST_MAP_PTR, .arg3_type = ARG_ANYTHING, - .arg4_type = ARG_PTR_TO_MEM, + .arg4_type = ARG_PTR_TO_MEM | MEM_RDONLY, .arg5_type = ARG_CONST_SIZE_OR_ZERO, }; @@ -1429,7 +1429,7 @@ .arg1_type = ARG_PTR_TO_CTX, .arg2_type = ARG_CONST_MAP_PTR, .arg3_type = ARG_ANYTHING, - .arg4_type = ARG_PTR_TO_MEM, + .arg4_type = ARG_PTR_TO_MEM | MEM_RDONLY, .arg5_type = ARG_CONST_SIZE_OR_ZERO, }; @@ -1483,7 +1483,7 @@ .gpl_only = true, .ret_type = RET_INTEGER, .arg1_type = ARG_PTR_TO_CTX, - .arg2_type = ARG_PTR_TO_MEM, + .arg2_type = ARG_PTR_TO_MEM | MEM_RDONLY, .arg3_type = ARG_CONST_SIZE_OR_ZERO, .arg4_type = ARG_ANYTHING, }; diff -u linux-intel-iotg-5.15-5.15.0/kernel/trace/ftrace.c linux-intel-iotg-5.15-5.15.0/kernel/trace/ftrace.c --- linux-intel-iotg-5.15-5.15.0/kernel/trace/ftrace.c +++ linux-intel-iotg-5.15-5.15.0/kernel/trace/ftrace.c @@ -4420,7 +4420,7 @@ * @ip: The instruction pointer address to remove the data from * * Returns the data if it is found, otherwise NULL. - * Note, if the data pointer is used as the data itself, (see + * Note, if the data pointer is used as the data itself, (see * ftrace_func_mapper_find_ip(), then the return value may be meaningless, * if the data pointer was set to zero. */ @@ -5146,8 +5146,6 @@ __add_hash_entry(direct_functions, entry); ret = ftrace_set_filter_ip(&direct_ops, ip, 0, 0); - if (ret) - remove_hash_entry(direct_functions, entry); if (!ret && !(direct_ops.flags & FTRACE_OPS_FL_ENABLED)) { ret = register_ftrace_function(&direct_ops); @@ -5156,6 +5154,7 @@ } if (ret) { + remove_hash_entry(direct_functions, entry); kfree(entry); if (!direct->count) { list_del_rcu(&direct->next); diff -u linux-intel-iotg-5.15-5.15.0/kernel/trace/trace_boot.c linux-intel-iotg-5.15-5.15.0/kernel/trace/trace_boot.c --- linux-intel-iotg-5.15-5.15.0/kernel/trace/trace_boot.c +++ linux-intel-iotg-5.15-5.15.0/kernel/trace/trace_boot.c @@ -300,7 +300,7 @@ { struct xbc_node *node; const char *p, *handler; - int ret; + int ret = 0; handler = xbc_node_get_data(hnode); diff -u linux-intel-iotg-5.15-5.15.0/kernel/trace/trace_events_hist.c linux-intel-iotg-5.15-5.15.0/kernel/trace/trace_events_hist.c --- linux-intel-iotg-5.15-5.15.0/kernel/trace/trace_events_hist.c +++ linux-intel-iotg-5.15-5.15.0/kernel/trace/trace_events_hist.c @@ -1838,8 +1838,11 @@ return err; free: kfree(ref_field->system); + ref_field->system = NULL; kfree(ref_field->event_name); + ref_field->event_name = NULL; kfree(ref_field->name); + ref_field->name = NULL; goto out; } diff -u linux-intel-iotg-5.15-5.15.0/lib/Kconfig linux-intel-iotg-5.15-5.15.0/lib/Kconfig --- linux-intel-iotg-5.15-5.15.0/lib/Kconfig +++ linux-intel-iotg-5.15-5.15.0/lib/Kconfig @@ -121,6 +121,8 @@ mmio accesses when the IO memory address is not a registered emulated region. +source "lib/crypto/Kconfig" + config CRC_CCITT tristate "CRC-CCITT functions" help diff -u linux-intel-iotg-5.15-5.15.0/lib/Kconfig.debug linux-intel-iotg-5.15-5.15.0/lib/Kconfig.debug --- linux-intel-iotg-5.15-5.15.0/lib/Kconfig.debug +++ linux-intel-iotg-5.15-5.15.0/lib/Kconfig.debug @@ -1559,8 +1559,7 @@ so architecture maintainers really need to do what they can to get the CRNG seeded sooner after the system is booted. However, since users cannot do anything actionable to - address this, by default the kernel will issue only a single - warning for the first use of unseeded randomness. + address this, by default this option is disabled. Say Y here if you want to receive warnings for all uses of unseeded randomness. This will be of use primarily for diff -u linux-intel-iotg-5.15-5.15.0/lib/iov_iter.c linux-intel-iotg-5.15-5.15.0/lib/iov_iter.c --- linux-intel-iotg-5.15-5.15.0/lib/iov_iter.c +++ linux-intel-iotg-5.15-5.15.0/lib/iov_iter.c @@ -191,7 +191,7 @@ buf = iov->iov_base + skip; copy = min(bytes, iov->iov_len - skip); - if (IS_ENABLED(CONFIG_HIGHMEM) && !fault_in_pages_writeable(buf, copy)) { + if (IS_ENABLED(CONFIG_HIGHMEM) && !fault_in_writeable(buf, copy)) { kaddr = kmap_atomic(page); from = kaddr + offset; @@ -275,7 +275,7 @@ buf = iov->iov_base + skip; copy = min(bytes, iov->iov_len - skip); - if (IS_ENABLED(CONFIG_HIGHMEM) && !fault_in_pages_readable(buf, copy)) { + if (IS_ENABLED(CONFIG_HIGHMEM) && !fault_in_readable(buf, copy)) { kaddr = kmap_atomic(page); to = kaddr + offset; @@ -431,35 +431,81 @@ } /* + * fault_in_iov_iter_readable - fault in iov iterator for reading + * @i: iterator + * @size: maximum length + * * Fault in one or more iovecs of the given iov_iter, to a maximum length of - * bytes. For each iovec, fault in each page that constitutes the iovec. + * @size. For each iovec, fault in each page that constitutes the iovec. + * + * Returns the number of bytes not faulted in (like copy_to_user() and + * copy_from_user()). + * + * Always returns 0 for non-userspace iterators. + */ +size_t fault_in_iov_iter_readable(const struct iov_iter *i, size_t size) +{ + if (iter_is_iovec(i)) { + size_t count = min(size, iov_iter_count(i)); + const struct iovec *p; + size_t skip; + + size -= count; + for (p = i->iov, skip = i->iov_offset; count; p++, skip = 0) { + size_t len = min(count, p->iov_len - skip); + size_t ret; + + if (unlikely(!len)) + continue; + ret = fault_in_readable(p->iov_base + skip, len); + count -= len - ret; + if (ret) + break; + } + return count + size; + } + return 0; +} +EXPORT_SYMBOL(fault_in_iov_iter_readable); + +/* + * fault_in_iov_iter_writeable - fault in iov iterator for writing + * @i: iterator + * @size: maximum length + * + * Faults in the iterator using get_user_pages(), i.e., without triggering + * hardware page faults. This is primarily useful when we already know that + * some or all of the pages in @i aren't in memory. + * + * Returns the number of bytes not faulted in, like copy_to_user() and + * copy_from_user(). * - * Return 0 on success, or non-zero if the memory could not be accessed (i.e. - * because it is an invalid address). + * Always returns 0 for non-user-space iterators. */ -int iov_iter_fault_in_readable(const struct iov_iter *i, size_t bytes) +size_t fault_in_iov_iter_writeable(const struct iov_iter *i, size_t size) { if (iter_is_iovec(i)) { + size_t count = min(size, iov_iter_count(i)); const struct iovec *p; size_t skip; - if (bytes > i->count) - bytes = i->count; - for (p = i->iov, skip = i->iov_offset; bytes; p++, skip = 0) { - size_t len = min(bytes, p->iov_len - skip); - int err; + size -= count; + for (p = i->iov, skip = i->iov_offset; count; p++, skip = 0) { + size_t len = min(count, p->iov_len - skip); + size_t ret; if (unlikely(!len)) continue; - err = fault_in_pages_readable(p->iov_base + skip, len); - if (unlikely(err)) - return err; - bytes -= len; + ret = fault_in_safe_writeable(p->iov_base + skip, len); + count -= len - ret; + if (ret) + break; } + return count + size; } return 0; } -EXPORT_SYMBOL(iov_iter_fault_in_readable); +EXPORT_SYMBOL(fault_in_iov_iter_writeable); void iov_iter_init(struct iov_iter *i, unsigned int direction, const struct iovec *iov, unsigned long nr_segs, @@ -468,6 +514,7 @@ WARN_ON(direction & ~(READ | WRITE)); *i = (struct iov_iter) { .iter_type = ITER_IOVEC, + .nofault = false, .data_source = direction, .iov = iov, .nr_segs = nr_segs, @@ -1483,13 +1530,17 @@ return 0; if (likely(iter_is_iovec(i))) { + unsigned int gup_flags = 0; unsigned long addr; + if (iov_iter_rw(i) != WRITE) + gup_flags |= FOLL_WRITE; + if (i->nofault) + gup_flags |= FOLL_NOFAULT; + addr = first_iovec_segment(i, &len, start, maxsize, maxpages); n = DIV_ROUND_UP(len, PAGE_SIZE); - res = get_user_pages_fast(addr, n, - iov_iter_rw(i) != WRITE ? FOLL_WRITE : 0, - pages); + res = get_user_pages_fast(addr, n, gup_flags, pages); if (unlikely(res <= 0)) return res; return (res == n ? len : res * PAGE_SIZE) - *start; @@ -1605,15 +1656,20 @@ return 0; if (likely(iter_is_iovec(i))) { + unsigned int gup_flags = 0; unsigned long addr; + if (iov_iter_rw(i) != WRITE) + gup_flags |= FOLL_WRITE; + if (i->nofault) + gup_flags |= FOLL_NOFAULT; + addr = first_iovec_segment(i, &len, start, maxsize, ~0U); n = DIV_ROUND_UP(len, PAGE_SIZE); p = get_pages_array(n); if (!p) return -ENOMEM; - res = get_user_pages_fast(addr, n, - iov_iter_rw(i) != WRITE ? FOLL_WRITE : 0, p); + res = get_user_pages_fast(addr, n, gup_flags, p); if (unlikely(res <= 0)) { kvfree(p); *pages = NULL; diff -u linux-intel-iotg-5.15-5.15.0/lib/siphash.c linux-intel-iotg-5.15-5.15.0/lib/siphash.c --- linux-intel-iotg-5.15-5.15.0/lib/siphash.c +++ linux-intel-iotg-5.15-5.15.0/lib/siphash.c @@ -18,19 +18,13 @@ #include #endif -#define SIPROUND \ - do { \ - v0 += v1; v1 = rol64(v1, 13); v1 ^= v0; v0 = rol64(v0, 32); \ - v2 += v3; v3 = rol64(v3, 16); v3 ^= v2; \ - v0 += v3; v3 = rol64(v3, 21); v3 ^= v0; \ - v2 += v1; v1 = rol64(v1, 17); v1 ^= v2; v2 = rol64(v2, 32); \ - } while (0) +#define SIPROUND SIPHASH_PERMUTATION(v0, v1, v2, v3) #define PREAMBLE(len) \ - u64 v0 = 0x736f6d6570736575ULL; \ - u64 v1 = 0x646f72616e646f6dULL; \ - u64 v2 = 0x6c7967656e657261ULL; \ - u64 v3 = 0x7465646279746573ULL; \ + u64 v0 = SIPHASH_CONST_0; \ + u64 v1 = SIPHASH_CONST_1; \ + u64 v2 = SIPHASH_CONST_2; \ + u64 v3 = SIPHASH_CONST_3; \ u64 b = ((u64)(len)) << 56; \ v3 ^= key->key[1]; \ v2 ^= key->key[0]; \ @@ -389,19 +383,13 @@ } EXPORT_SYMBOL(hsiphash_4u32); #else -#define HSIPROUND \ - do { \ - v0 += v1; v1 = rol32(v1, 5); v1 ^= v0; v0 = rol32(v0, 16); \ - v2 += v3; v3 = rol32(v3, 8); v3 ^= v2; \ - v0 += v3; v3 = rol32(v3, 7); v3 ^= v0; \ - v2 += v1; v1 = rol32(v1, 13); v1 ^= v2; v2 = rol32(v2, 16); \ - } while (0) +#define HSIPROUND HSIPHASH_PERMUTATION(v0, v1, v2, v3) #define HPREAMBLE(len) \ - u32 v0 = 0; \ - u32 v1 = 0; \ - u32 v2 = 0x6c796765U; \ - u32 v3 = 0x74656462U; \ + u32 v0 = HSIPHASH_CONST_0; \ + u32 v1 = HSIPHASH_CONST_1; \ + u32 v2 = HSIPHASH_CONST_2; \ + u32 v3 = HSIPHASH_CONST_3; \ u32 b = ((u32)(len)) << 24; \ v3 ^= key->key[1]; \ v2 ^= key->key[0]; \ diff -u linux-intel-iotg-5.15-5.15.0/lib/vsprintf.c linux-intel-iotg-5.15-5.15.0/lib/vsprintf.c --- linux-intel-iotg-5.15-5.15.0/lib/vsprintf.c +++ linux-intel-iotg-5.15-5.15.0/lib/vsprintf.c @@ -761,14 +761,16 @@ static DECLARE_WORK(enable_ptr_key_work, enable_ptr_key_workfn); -static void fill_random_ptr_key(struct random_ready_callback *unused) +static int fill_random_ptr_key(struct notifier_block *nb, + unsigned long action, void *data) { /* This may be in an interrupt handler. */ queue_work(system_unbound_wq, &enable_ptr_key_work); + return 0; } -static struct random_ready_callback random_ready = { - .func = fill_random_ptr_key +static struct notifier_block random_ready = { + .notifier_call = fill_random_ptr_key }; static int __init initialize_ptr_random(void) @@ -782,7 +784,7 @@ return 0; } - ret = add_random_ready_callback(&random_ready); + ret = register_random_ready_notifier(&random_ready); if (!ret) { return 0; } else if (ret == -EALREADY) { diff -u linux-intel-iotg-5.15-5.15.0/mm/filemap.c linux-intel-iotg-5.15-5.15.0/mm/filemap.c --- linux-intel-iotg-5.15-5.15.0/mm/filemap.c +++ linux-intel-iotg-5.15-5.15.0/mm/filemap.c @@ -90,7 +90,7 @@ * ->lock_page (filemap_fault, access_process_vm) * * ->i_rwsem (generic_perform_write) - * ->mmap_lock (fault_in_pages_readable->do_page_fault) + * ->mmap_lock (fault_in_readable->do_page_fault) * * bdi->wb.list_lock * sb_lock (fs/fs-writeback.c) @@ -3760,7 +3760,7 @@ * same page as we're writing to, without it being marked * up-to-date. */ - if (unlikely(iov_iter_fault_in_readable(i, bytes))) { + if (unlikely(fault_in_iov_iter_readable(i, bytes))) { status = -EFAULT; break; } diff -u linux-intel-iotg-5.15-5.15.0/mm/gup.c linux-intel-iotg-5.15-5.15.0/mm/gup.c --- linux-intel-iotg-5.15-5.15.0/mm/gup.c +++ linux-intel-iotg-5.15-5.15.0/mm/gup.c @@ -465,7 +465,7 @@ pte_t *pte, unsigned int flags) { /* No page to get reference */ - if (flags & FOLL_GET) + if (flags & (FOLL_GET | FOLL_PIN)) return -EFAULT; if (flags & FOLL_TOUCH) { @@ -943,6 +943,8 @@ /* mlock all present pages, but do not fault in new pages */ if ((*flags & (FOLL_POPULATE | FOLL_MLOCK)) == FOLL_MLOCK) return -ENOENT; + if (*flags & FOLL_NOFAULT) + return -EFAULT; if (*flags & FOLL_WRITE) fault_flags |= FAULT_FLAG_WRITE; if (*flags & FOLL_REMOTE) @@ -1682,6 +1684,122 @@ #endif /* !CONFIG_MMU */ /** + * fault_in_writeable - fault in userspace address range for writing + * @uaddr: start of address range + * @size: size of address range + * + * Returns the number of bytes not faulted in (like copy_to_user() and + * copy_from_user()). + */ +size_t fault_in_writeable(char __user *uaddr, size_t size) +{ + char __user *start = uaddr, *end; + + if (unlikely(size == 0)) + return 0; + if (!PAGE_ALIGNED(uaddr)) { + if (unlikely(__put_user(0, uaddr) != 0)) + return size; + uaddr = (char __user *)PAGE_ALIGN((unsigned long)uaddr); + } + end = (char __user *)PAGE_ALIGN((unsigned long)start + size); + if (unlikely(end < start)) + end = NULL; + while (uaddr != end) { + if (unlikely(__put_user(0, uaddr) != 0)) + goto out; + uaddr += PAGE_SIZE; + } + +out: + if (size > uaddr - start) + return size - (uaddr - start); + return 0; +} +EXPORT_SYMBOL(fault_in_writeable); + +/* + * fault_in_safe_writeable - fault in an address range for writing + * @uaddr: start of address range + * @size: length of address range + * + * Faults in an address range for writing. This is primarily useful when we + * already know that some or all of the pages in the address range aren't in + * memory. + * + * Unlike fault_in_writeable(), this function is non-destructive. + * + * Note that we don't pin or otherwise hold the pages referenced that we fault + * in. There's no guarantee that they'll stay in memory for any duration of + * time. + * + * Returns the number of bytes not faulted in, like copy_to_user() and + * copy_from_user(). + */ +size_t fault_in_safe_writeable(const char __user *uaddr, size_t size) +{ + unsigned long start = (unsigned long)uaddr, end; + struct mm_struct *mm = current->mm; + bool unlocked = false; + + if (unlikely(size == 0)) + return 0; + end = PAGE_ALIGN(start + size); + if (end < start) + end = 0; + + mmap_read_lock(mm); + do { + if (fixup_user_fault(mm, start, FAULT_FLAG_WRITE, &unlocked)) + break; + start = (start + PAGE_SIZE) & PAGE_MASK; + } while (start != end); + mmap_read_unlock(mm); + + if (size > (unsigned long)uaddr - start) + return size - ((unsigned long)uaddr - start); + return 0; +} +EXPORT_SYMBOL(fault_in_safe_writeable); + +/** + * fault_in_readable - fault in userspace address range for reading + * @uaddr: start of user address range + * @size: size of user address range + * + * Returns the number of bytes not faulted in (like copy_to_user() and + * copy_from_user()). + */ +size_t fault_in_readable(const char __user *uaddr, size_t size) +{ + const char __user *start = uaddr, *end; + volatile char c; + + if (unlikely(size == 0)) + return 0; + if (!PAGE_ALIGNED(uaddr)) { + if (unlikely(__get_user(c, uaddr) != 0)) + return size; + uaddr = (const char __user *)PAGE_ALIGN((unsigned long)uaddr); + } + end = (const char __user *)PAGE_ALIGN((unsigned long)start + size); + if (unlikely(end < start)) + end = NULL; + while (uaddr != end) { + if (unlikely(__get_user(c, uaddr) != 0)) + goto out; + uaddr += PAGE_SIZE; + } + +out: + (void)c; + if (size > uaddr - start) + return size - (uaddr - start); + return 0; +} +EXPORT_SYMBOL(fault_in_readable); + +/** * get_dump_page() - pin user page in memory while writing it to core dump * @addr: user address * @@ -2733,7 +2851,7 @@ if (WARN_ON_ONCE(gup_flags & ~(FOLL_WRITE | FOLL_LONGTERM | FOLL_FORCE | FOLL_PIN | FOLL_GET | - FOLL_FAST_ONLY))) + FOLL_FAST_ONLY | FOLL_NOFAULT))) return -EINVAL; if (gup_flags & FOLL_PIN) diff -u linux-intel-iotg-5.15-5.15.0/mm/hugetlb.c linux-intel-iotg-5.15-5.15.0/mm/hugetlb.c --- linux-intel-iotg-5.15-5.15.0/mm/hugetlb.c +++ linux-intel-iotg-5.15-5.15.0/mm/hugetlb.c @@ -6060,7 +6060,14 @@ pud_clear(pud); put_page(virt_to_page(ptep)); mm_dec_nr_pmds(mm); - *addr = ALIGN(*addr, HPAGE_SIZE * PTRS_PER_PTE) - HPAGE_SIZE; + /* + * This update of passed address optimizes loops sequentially + * processing addresses in increments of huge page size (PMD_SIZE + * in this case). By clearing the pud, a PUD_SIZE area is unmapped. + * Update address to the 'last page' in the cleared area so that + * calling loop can move to first page past this area. + */ + *addr |= PUD_SIZE - PMD_SIZE; return 1; } diff -u linux-intel-iotg-5.15-5.15.0/mm/kasan/quarantine.c linux-intel-iotg-5.15-5.15.0/mm/kasan/quarantine.c --- linux-intel-iotg-5.15-5.15.0/mm/kasan/quarantine.c +++ linux-intel-iotg-5.15-5.15.0/mm/kasan/quarantine.c @@ -315,6 +315,13 @@ struct qlist_head *q; q = this_cpu_ptr(&cpu_quarantine); + /* + * Ensure the ordering between the writing to q->offline and + * per_cpu_remove_cache. Prevent cpu_quarantine from being corrupted + * by interrupt. + */ + if (READ_ONCE(q->offline)) + return; qlist_move_cache(q, &to_free, cache); qlist_free_all(&to_free, cache); } diff -u linux-intel-iotg-5.15-5.15.0/mm/kfence/core.c linux-intel-iotg-5.15-5.15.0/mm/kfence/core.c --- linux-intel-iotg-5.15-5.15.0/mm/kfence/core.c +++ linux-intel-iotg-5.15-5.15.0/mm/kfence/core.c @@ -223,23 +223,2 @@ -static inline struct kfence_metadata *addr_to_metadata(unsigned long addr) -{ - long index; - - /* The checks do not affect performance; only called from slow-paths. */ - - if (!is_kfence_address((void *)addr)) - return NULL; - - /* - * May be an invalid index if called with an address at the edge of - * __kfence_pool, in which case we would report an "invalid access" - * error. - */ - index = (addr - (unsigned long)__kfence_pool) / (PAGE_SIZE * 2) - 1; - if (index < 0 || index >= CONFIG_KFENCE_NUM_OBJECTS) - return NULL; - - return &kfence_metadata[index]; -} - static inline unsigned long metadata_to_pageaddr(const struct kfence_metadata *meta) @@ -531,6 +510,7 @@ unsigned long addr = (unsigned long)__kfence_pool; struct page *pages; int i; + char *p; if (!__kfence_pool) return false; @@ -549,6 +529,8 @@ * enters __slab_free() slow-path. */ for (i = 0; i < KFENCE_POOL_SIZE / PAGE_SIZE; i++) { + struct page *page = &pages[i]; + if (!i || (i % 2)) continue; @@ -556,7 +538,11 @@ if (WARN_ON(compound_head(&pages[i]) != &pages[i])) goto err; - __SetPageSlab(&pages[i]); + __SetPageSlab(page); +#ifdef CONFIG_MEMCG + page->memcg_data = (unsigned long)&kfence_metadata[i / 2 - 1].objcg | + MEMCG_DATA_OBJCGS; +#endif } /* @@ -607,6 +593,16 @@ * fails for the first page, and therefore expect addr==__kfence_pool in * most failure cases. */ + for (p = (char *)addr; p < __kfence_pool + KFENCE_POOL_SIZE; p += PAGE_SIZE) { + struct page *page = virt_to_page(p); + + if (!PageSlab(page)) + continue; +#ifdef CONFIG_MEMCG + page->memcg_data = 0; +#endif + __ClearPageSlab(page); + } memblock_free_late(__pa(addr), KFENCE_POOL_SIZE - (addr - (unsigned long)__kfence_pool)); __kfence_pool = NULL; return false; @@ -932,6 +928,9 @@ { struct kfence_metadata *meta = addr_to_metadata((unsigned long)addr); +#ifdef CONFIG_MEMCG + KFENCE_WARN_ON(meta->objcg); +#endif /* * If the objects of the cache are SLAB_TYPESAFE_BY_RCU, defer freeing * the object, as the object page may be recycled for other-typed diff -u linux-intel-iotg-5.15-5.15.0/mm/kfence/kfence.h linux-intel-iotg-5.15-5.15.0/mm/kfence/kfence.h --- linux-intel-iotg-5.15-5.15.0/mm/kfence/kfence.h +++ linux-intel-iotg-5.15-5.15.0/mm/kfence/kfence.h @@ -89,10 +89,34 @@ struct kfence_track free_track; /* For updating alloc_covered on frees. */ u32 alloc_stack_hash; +#ifdef CONFIG_MEMCG + struct obj_cgroup *objcg; +#endif }; extern struct kfence_metadata kfence_metadata[CONFIG_KFENCE_NUM_OBJECTS]; +static inline struct kfence_metadata *addr_to_metadata(unsigned long addr) +{ + long index; + + /* The checks do not affect performance; only called from slow-paths. */ + + if (!is_kfence_address((void *)addr)) + return NULL; + + /* + * May be an invalid index if called with an address at the edge of + * __kfence_pool, in which case we would report an "invalid access" + * error. + */ + index = (addr - (unsigned long)__kfence_pool) / (PAGE_SIZE * 2) - 1; + if (index < 0 || index >= CONFIG_KFENCE_NUM_OBJECTS) + return NULL; + + return &kfence_metadata[index]; +} + /* KFENCE error types for report generation. */ enum kfence_error_type { KFENCE_ERROR_OOB, /* Detected a out-of-bounds access. */ diff -u linux-intel-iotg-5.15-5.15.0/mm/memcontrol.c linux-intel-iotg-5.15-5.15.0/mm/memcontrol.c --- linux-intel-iotg-5.15-5.15.0/mm/memcontrol.c +++ linux-intel-iotg-5.15-5.15.0/mm/memcontrol.c @@ -650,6 +650,9 @@ static DEFINE_SPINLOCK(stats_flush_lock); static DEFINE_PER_CPU(unsigned int, stats_updates); static atomic_t stats_flush_threshold = ATOMIC_INIT(0); +static u64 flush_next_time; + +#define FLUSH_TIME (2UL*HZ) static inline void memcg_rstat_updated(struct mem_cgroup *memcg, int val) { @@ -671,6 +674,7 @@ if (!spin_trylock_irqsave(&stats_flush_lock, flag)) return; + flush_next_time = jiffies_64 + 2*FLUSH_TIME; cgroup_rstat_flush_irqsafe(root_mem_cgroup->css.cgroup); atomic_set(&stats_flush_threshold, 0); spin_unlock_irqrestore(&stats_flush_lock, flag); @@ -682,10 +686,16 @@ __mem_cgroup_flush_stats(); } +void mem_cgroup_flush_stats_delayed(void) +{ + if (time_after64(jiffies_64, flush_next_time)) + mem_cgroup_flush_stats(); +} + static void flush_memcg_stats_dwork(struct work_struct *w) { __mem_cgroup_flush_stats(); - queue_delayed_work(system_unbound_wq, &stats_flush_dwork, 2UL*HZ); + queue_delayed_work(system_unbound_wq, &stats_flush_dwork, FLUSH_TIME); } /** diff -u linux-intel-iotg-5.15-5.15.0/mm/memory-failure.c linux-intel-iotg-5.15-5.15.0/mm/memory-failure.c --- linux-intel-iotg-5.15-5.15.0/mm/memory-failure.c +++ linux-intel-iotg-5.15-5.15.0/mm/memory-failure.c @@ -705,8 +705,10 @@ (void *)&priv); if (ret == 1 && priv.tk.addr) kill_proc(&priv.tk, pfn, flags); + else + ret = 0; mmap_read_unlock(p->mm); - return ret ? -EFAULT : -EHWPOISON; + return ret > 0 ? -EHWPOISON : -EFAULT; } static const char *action_name[] = { @@ -1215,7 +1217,7 @@ } out: if (ret == -EIO) - dump_page(p, "hwpoison: unhandlable page"); + pr_err("Memory failure: %#lx: unhandlable page.\n", page_to_pfn(p)); return ret; } diff -u linux-intel-iotg-5.15-5.15.0/mm/memory.c linux-intel-iotg-5.15-5.15.0/mm/memory.c --- linux-intel-iotg-5.15-5.15.0/mm/memory.c +++ linux-intel-iotg-5.15-5.15.0/mm/memory.c @@ -5468,6 +5468,8 @@ if (rc) break; + flush_dcache_page(subpage); + cond_resched(); } return ret_val; diff -u linux-intel-iotg-5.15-5.15.0/mm/mlock.c linux-intel-iotg-5.15-5.15.0/mm/mlock.c --- linux-intel-iotg-5.15-5.15.0/mm/mlock.c +++ linux-intel-iotg-5.15-5.15.0/mm/mlock.c @@ -837,6 +837,7 @@ } if (!get_ucounts(ucounts)) { dec_rlimit_ucounts(ucounts, UCOUNT_RLIMIT_MEMLOCK, locked); + allowed = 0; goto out; } allowed = 1; diff -u linux-intel-iotg-5.15-5.15.0/mm/mmap.c linux-intel-iotg-5.15-5.15.0/mm/mmap.c --- linux-intel-iotg-5.15-5.15.0/mm/mmap.c +++ linux-intel-iotg-5.15-5.15.0/mm/mmap.c @@ -2113,14 +2113,6 @@ return addr; } -#ifndef arch_get_mmap_end -#define arch_get_mmap_end(addr) (TASK_SIZE) -#endif - -#ifndef arch_get_mmap_base -#define arch_get_mmap_base(addr, base) (base) -#endif - /* Get an address range which is currently unmapped. * For shmat() with addr=0. * diff -u linux-intel-iotg-5.15-5.15.0/mm/oom_kill.c linux-intel-iotg-5.15-5.15.0/mm/oom_kill.c --- linux-intel-iotg-5.15-5.15.0/mm/oom_kill.c +++ linux-intel-iotg-5.15-5.15.0/mm/oom_kill.c @@ -635,7 +635,7 @@ */ set_bit(MMF_OOM_SKIP, &mm->flags); - /* Drop a reference taken by wake_oom_reaper */ + /* Drop a reference taken by queue_oom_reaper */ put_task_struct(tsk); } @@ -645,12 +645,12 @@ struct task_struct *tsk = NULL; wait_event_freezable(oom_reaper_wait, oom_reaper_list != NULL); - spin_lock(&oom_reaper_lock); + spin_lock_irq(&oom_reaper_lock); if (oom_reaper_list != NULL) { tsk = oom_reaper_list; oom_reaper_list = tsk->oom_reaper_list; } - spin_unlock(&oom_reaper_lock); + spin_unlock_irq(&oom_reaper_lock); if (tsk) oom_reap_task(tsk); @@ -659,22 +659,48 @@ return 0; } -static void wake_oom_reaper(struct task_struct *tsk) +static void wake_oom_reaper(struct timer_list *timer) { - /* mm is already queued? */ - if (test_and_set_bit(MMF_OOM_REAP_QUEUED, &tsk->signal->oom_mm->flags)) + struct task_struct *tsk = container_of(timer, struct task_struct, + oom_reaper_timer); + struct mm_struct *mm = tsk->signal->oom_mm; + unsigned long flags; + + /* The victim managed to terminate on its own - see exit_mmap */ + if (test_bit(MMF_OOM_SKIP, &mm->flags)) { + put_task_struct(tsk); return; + } - get_task_struct(tsk); - - spin_lock(&oom_reaper_lock); + spin_lock_irqsave(&oom_reaper_lock, flags); tsk->oom_reaper_list = oom_reaper_list; oom_reaper_list = tsk; - spin_unlock(&oom_reaper_lock); + spin_unlock_irqrestore(&oom_reaper_lock, flags); trace_wake_reaper(tsk->pid); wake_up(&oom_reaper_wait); } +/* + * Give the OOM victim time to exit naturally before invoking the oom_reaping. + * The timers timeout is arbitrary... the longer it is, the longer the worst + * case scenario for the OOM can take. If it is too small, the oom_reaper can + * get in the way and release resources needed by the process exit path. + * e.g. The futex robust list can sit in Anon|Private memory that gets reaped + * before the exit path is able to wake the futex waiters. + */ +#define OOM_REAPER_DELAY (2*HZ) +static void queue_oom_reaper(struct task_struct *tsk) +{ + /* mm is already queued? */ + if (test_and_set_bit(MMF_OOM_REAP_QUEUED, &tsk->signal->oom_mm->flags)) + return; + + get_task_struct(tsk); + timer_setup(&tsk->oom_reaper_timer, wake_oom_reaper, 0); + tsk->oom_reaper_timer.expires = jiffies + OOM_REAPER_DELAY; + add_timer(&tsk->oom_reaper_timer); +} + static int __init oom_init(void) { oom_reaper_th = kthread_run(oom_reaper, NULL, "oom_reaper"); @@ -682,7 +708,7 @@ } subsys_initcall(oom_init) #else -static inline void wake_oom_reaper(struct task_struct *tsk) +static inline void queue_oom_reaper(struct task_struct *tsk) { } #endif /* CONFIG_MMU */ @@ -933,7 +959,7 @@ rcu_read_unlock(); if (can_oom_reap) - wake_oom_reaper(victim); + queue_oom_reaper(victim); mmdrop(mm); put_task_struct(victim); @@ -969,7 +995,7 @@ task_lock(victim); if (task_will_free_mem(victim)) { mark_oom_victim(victim); - wake_oom_reaper(victim); + queue_oom_reaper(victim); task_unlock(victim); put_task_struct(victim); return; @@ -1067,7 +1093,7 @@ */ if (task_will_free_mem(current)) { mark_oom_victim(current); - wake_oom_reaper(current); + queue_oom_reaper(current); return true; } diff -u linux-intel-iotg-5.15-5.15.0/mm/page_alloc.c linux-intel-iotg-5.15-5.15.0/mm/page_alloc.c --- linux-intel-iotg-5.15-5.15.0/mm/page_alloc.c +++ linux-intel-iotg-5.15-5.15.0/mm/page_alloc.c @@ -5299,8 +5299,8 @@ page = __rmqueue_pcplist(zone, 0, ac.migratetype, alloc_flags, pcp, pcp_list); if (unlikely(!page)) { - /* Try and get at least one page */ - if (!nr_populated) + /* Try and allocate at least one page */ + if (!nr_account) goto failed_irq; break; } @@ -8169,7 +8169,7 @@ */ #define adj_init_size(start, end, size, pos, adj) \ do { \ - if (start <= pos && pos < end && size > adj) \ + if (&start[0] <= &pos[0] && &pos[0] < &end[0] && size > adj) \ size -= adj; \ } while (0) diff -u linux-intel-iotg-5.15-5.15.0/mm/shmem.c linux-intel-iotg-5.15-5.15.0/mm/shmem.c --- linux-intel-iotg-5.15-5.15.0/mm/shmem.c +++ linux-intel-iotg-5.15-5.15.0/mm/shmem.c @@ -2394,8 +2394,10 @@ /* don't free the page */ goto out_unacct_blocks; } + + flush_dcache_page(page); } else { /* ZEROPAGE */ - clear_highpage(page); + clear_user_highpage(page, dst_addr); } } else { page = *pagep; diff -u linux-intel-iotg-5.15-5.15.0/mm/slab.c linux-intel-iotg-5.15-5.15.0/mm/slab.c --- linux-intel-iotg-5.15-5.15.0/mm/slab.c +++ linux-intel-iotg-5.15-5.15.0/mm/slab.c @@ -3658,7 +3658,7 @@ #endif /* CONFIG_NUMA */ #ifdef CONFIG_PRINTK -void kmem_obj_info(struct kmem_obj_info *kpp, void *object, struct page *page) +void __kmem_obj_info(struct kmem_obj_info *kpp, void *object, struct page *page) { struct kmem_cache *cachep; unsigned int objnr; diff -u linux-intel-iotg-5.15-5.15.0/mm/slab.h linux-intel-iotg-5.15-5.15.0/mm/slab.h --- linux-intel-iotg-5.15-5.15.0/mm/slab.h +++ linux-intel-iotg-5.15-5.15.0/mm/slab.h @@ -643,7 +643,7 @@ void *kp_stack[KS_ADDRS_COUNT]; void *kp_free_stack[KS_ADDRS_COUNT]; }; -void kmem_obj_info(struct kmem_obj_info *kpp, void *object, struct page *page); +void __kmem_obj_info(struct kmem_obj_info *kpp, void *object, struct page *page); #endif #endif /* MM_SLAB_H */ diff -u linux-intel-iotg-5.15-5.15.0/mm/slub.c linux-intel-iotg-5.15-5.15.0/mm/slub.c --- linux-intel-iotg-5.15-5.15.0/mm/slub.c +++ linux-intel-iotg-5.15-5.15.0/mm/slub.c @@ -4299,7 +4299,7 @@ } #ifdef CONFIG_PRINTK -void kmem_obj_info(struct kmem_obj_info *kpp, void *object, struct page *page) +void __kmem_obj_info(struct kmem_obj_info *kpp, void *object, struct page *page) { void *base; int __maybe_unused i; diff -u linux-intel-iotg-5.15-5.15.0/mm/util.c linux-intel-iotg-5.15-5.15.0/mm/util.c --- linux-intel-iotg-5.15-5.15.0/mm/util.c +++ linux-intel-iotg-5.15-5.15.0/mm/util.c @@ -343,6 +343,38 @@ #endif } +/** + * randomize_page - Generate a random, page aligned address + * @start: The smallest acceptable address the caller will take. + * @range: The size of the area, starting at @start, within which the + * random address must fall. + * + * If @start + @range would overflow, @range is capped. + * + * NOTE: Historical use of randomize_range, which this replaces, presumed that + * @start was already page aligned. We now align it regardless. + * + * Return: A page aligned address within [start, start + range). On error, + * @start is returned. + */ +unsigned long randomize_page(unsigned long start, unsigned long range) +{ + if (!PAGE_ALIGNED(start)) { + range -= PAGE_ALIGN(start) - start; + start = PAGE_ALIGN(start); + } + + if (start > ULONG_MAX - range) + range = ULONG_MAX - start; + + range >>= PAGE_SHIFT; + + if (range == 0) + return start; + + return start + (get_random_long() % range << PAGE_SHIFT); +} + #ifdef CONFIG_ARCH_WANT_DEFAULT_TOPDOWN_MMAP_LAYOUT unsigned long arch_randomize_brk(struct mm_struct *mm) { diff -u linux-intel-iotg-5.15-5.15.0/mm/zsmalloc.c linux-intel-iotg-5.15-5.15.0/mm/zsmalloc.c --- linux-intel-iotg-5.15-5.15.0/mm/zsmalloc.c +++ linux-intel-iotg-5.15-5.15.0/mm/zsmalloc.c @@ -1743,11 +1743,40 @@ */ static void lock_zspage(struct zspage *zspage) { - struct page *page = get_first_page(zspage); + struct page *curr_page, *page; - do { - lock_page(page); - } while ((page = get_next_page(page)) != NULL); + /* + * Pages we haven't locked yet can be migrated off the list while we're + * trying to lock them, so we need to be careful and only attempt to + * lock each page under migrate_read_lock(). Otherwise, the page we lock + * may no longer belong to the zspage. This means that we may wait for + * the wrong page to unlock, so we must take a reference to the page + * prior to waiting for it to unlock outside migrate_read_lock(). + */ + while (1) { + migrate_read_lock(zspage); + page = get_first_page(zspage); + if (trylock_page(page)) + break; + get_page(page); + migrate_read_unlock(zspage); + wait_on_page_locked(page); + put_page(page); + } + + curr_page = page; + while ((page = get_next_page(curr_page))) { + if (trylock_page(page)) { + curr_page = page; + } else { + get_page(page); + migrate_read_unlock(zspage); + wait_on_page_locked(page); + put_page(page); + migrate_read_lock(zspage); + } + } + migrate_read_unlock(zspage); } static int zs_init_fs_context(struct fs_context *fc) diff -u linux-intel-iotg-5.15-5.15.0/net/bluetooth/hci_core.c linux-intel-iotg-5.15-5.15.0/net/bluetooth/hci_core.c --- linux-intel-iotg-5.15-5.15.0/net/bluetooth/hci_core.c +++ linux-intel-iotg-5.15-5.15.0/net/bluetooth/hci_core.c @@ -3907,10 +3907,10 @@ */ switch (hdev->dev_type) { case HCI_PRIMARY: - id = ida_simple_get(&hci_index_ida, 0, 0, GFP_KERNEL); + id = ida_simple_get(&hci_index_ida, 0, HCI_MAX_ID, GFP_KERNEL); break; case HCI_AMP: - id = ida_simple_get(&hci_index_ida, 1, 0, GFP_KERNEL); + id = ida_simple_get(&hci_index_ida, 1, HCI_MAX_ID, GFP_KERNEL); break; default: return -EINVAL; @@ -3919,7 +3919,7 @@ if (id < 0) return id; - sprintf(hdev->name, "hci%d", id); + snprintf(hdev->name, sizeof(hdev->name), "hci%d", id); hdev->id = id; BT_DBG("%p name %s bus %d", hdev, hdev->name, hdev->bus); diff -u linux-intel-iotg-5.15-5.15.0/net/bluetooth/hci_event.c linux-intel-iotg-5.15-5.15.0/net/bluetooth/hci_event.c --- linux-intel-iotg-5.15-5.15.0/net/bluetooth/hci_event.c +++ linux-intel-iotg-5.15-5.15.0/net/bluetooth/hci_event.c @@ -2790,10 +2790,12 @@ return; } + hci_dev_lock(hdev); + if (hci_bdaddr_list_lookup(&hdev->reject_list, &ev->bdaddr, BDADDR_BREDR)) { hci_reject_conn(hdev, &ev->bdaddr); - return; + goto unlock; } /* Require HCI_CONNECTABLE or an accept list entry to accept the @@ -2805,13 +2807,11 @@ !hci_bdaddr_list_lookup_with_flags(&hdev->accept_list, &ev->bdaddr, BDADDR_BREDR)) { hci_reject_conn(hdev, &ev->bdaddr); - return; + goto unlock; } /* Connection accepted */ - hci_dev_lock(hdev); - ie = hci_inquiry_cache_lookup(hdev, &ev->bdaddr); if (ie) memcpy(ie->data.dev_class, ev->dev_class, 3); @@ -2823,8 +2823,7 @@ HCI_ROLE_SLAVE); if (!conn) { bt_dev_err(hdev, "no memory for new connection"); - hci_dev_unlock(hdev); - return; + goto unlock; } } @@ -2864,6 +2863,10 @@ conn->state = BT_CONNECT2; hci_connect_cfm(conn, 0); } + + return; +unlock: + hci_dev_unlock(hdev); } static u8 hci_to_mgmt_reason(u8 err) diff -u linux-intel-iotg-5.15-5.15.0/net/bluetooth/hci_request.c linux-intel-iotg-5.15-5.15.0/net/bluetooth/hci_request.c --- linux-intel-iotg-5.15-5.15.0/net/bluetooth/hci_request.c +++ linux-intel-iotg-5.15-5.15.0/net/bluetooth/hci_request.c @@ -3174,6 +3174,7 @@ if (err < 0) own_addr_type = ADDR_LE_DEV_PUBLIC; + hci_dev_lock(hdev); if (hci_is_adv_monitoring(hdev)) { /* Duplicate filter should be disabled when some advertisement * monitor is activated, otherwise AdvMon can only receive one @@ -3190,6 +3191,7 @@ */ filter_dup = LE_SCAN_FILTER_DUP_DISABLE; } + hci_dev_unlock(hdev); hci_req_start_scan(req, LE_SCAN_ACTIVE, interval, hdev->le_scan_window_discovery, own_addr_type, diff -u linux-intel-iotg-5.15-5.15.0/net/bluetooth/sco.c linux-intel-iotg-5.15-5.15.0/net/bluetooth/sco.c --- linux-intel-iotg-5.15-5.15.0/net/bluetooth/sco.c +++ linux-intel-iotg-5.15-5.15.0/net/bluetooth/sco.c @@ -575,19 +575,24 @@ addr->sa_family != AF_BLUETOOTH) return -EINVAL; - if (sk->sk_state != BT_OPEN && sk->sk_state != BT_BOUND) - return -EBADFD; + lock_sock(sk); + if (sk->sk_state != BT_OPEN && sk->sk_state != BT_BOUND) { + err = -EBADFD; + goto done; + } - if (sk->sk_type != SOCK_SEQPACKET) - return -EINVAL; + if (sk->sk_type != SOCK_SEQPACKET) { + err = -EINVAL; + goto done; + } hdev = hci_get_route(&sa->sco_bdaddr, &sco_pi(sk)->src, BDADDR_BREDR); - if (!hdev) - return -EHOSTUNREACH; + if (!hdev) { + err = -EHOSTUNREACH; + goto done; + } hci_dev_lock(hdev); - lock_sock(sk); - /* Set destination address and psm */ bacpy(&sco_pi(sk)->dst, &sa->sco_bdaddr); diff -u linux-intel-iotg-5.15-5.15.0/net/can/isotp.c linux-intel-iotg-5.15-5.15.0/net/can/isotp.c --- linux-intel-iotg-5.15-5.15.0/net/can/isotp.c +++ linux-intel-iotg-5.15-5.15.0/net/can/isotp.c @@ -866,6 +866,7 @@ struct canfd_frame *cf; int ae = (so->opt.flags & CAN_ISOTP_EXTEND_ADDR) ? 1 : 0; int wait_tx_done = (so->opt.flags & CAN_ISOTP_WAIT_TX_DONE) ? 1 : 0; + s64 hrtimer_sec = 0; int off; int err; @@ -964,7 +965,9 @@ isotp_create_fframe(cf, so, ae); /* start timeout for FC */ - hrtimer_start(&so->txtimer, ktime_set(1, 0), HRTIMER_MODE_REL_SOFT); + hrtimer_sec = 1; + hrtimer_start(&so->txtimer, ktime_set(hrtimer_sec, 0), + HRTIMER_MODE_REL_SOFT); } /* send the first or only CAN frame */ @@ -977,6 +980,11 @@ if (err) { pr_notice_once("can-isotp: %s: can_send_ret %pe\n", __func__, ERR_PTR(err)); + + /* no transmission -> no timeout monitoring */ + if (hrtimer_sec) + hrtimer_cancel(&so->txtimer); + goto err_out_drop; } @@ -1138,6 +1146,11 @@ lock_sock(sk); + if (so->bound) { + err = -EINVAL; + goto out; + } + /* do not register frame reception for functional addressing */ if (so->opt.flags & CAN_ISOTP_SF_BROADCAST) do_rx_reg = 0; @@ -1149,8 +1162,4 @@ } - if (so->bound && addr->can_ifindex == so->ifindex && - rx_id == so->rxid && tx_id == so->txid) - goto out; - dev = dev_get_by_index(net, addr->can_ifindex); if (!dev) { @@ -1178,19 +1187,6 @@ dev_put(dev); - if (so->bound && do_rx_reg) { - /* unregister old filter */ - if (so->ifindex) { - dev = dev_get_by_index(net, so->ifindex); - if (dev) { - can_rx_unregister(net, dev, so->rxid, - SINGLE_MASK(so->rxid), - isotp_rcv, sk); - dev_put(dev); - } - } - } - /* switch to new settings */ so->ifindex = ifindex; so->rxid = rx_id; diff -u linux-intel-iotg-5.15-5.15.0/net/core/dev.c linux-intel-iotg-5.15-5.15.0/net/core/dev.c --- linux-intel-iotg-5.15-5.15.0/net/core/dev.c +++ linux-intel-iotg-5.15-5.15.0/net/core/dev.c @@ -741,11 +741,11 @@ const struct net_device *last_dev; struct net_device_path_ctx ctx = { .dev = dev, - .daddr = daddr, }; struct net_device_path *path; int ret = 0; + memcpy(ctx.daddr, daddr, sizeof(ctx.daddr)); stack->num_paths = 0; while (ctx.dev && ctx.dev->netdev_ops->ndo_fill_forward_path) { last_dev = ctx.dev; @@ -3233,11 +3233,15 @@ } offset = skb_checksum_start_offset(skb); - BUG_ON(offset >= skb_headlen(skb)); + ret = -EINVAL; + if (WARN_ON_ONCE(offset >= skb_headlen(skb))) + goto out; + csum = skb_checksum(skb, offset, skb->len - offset, 0); offset += skb->csum_offset; - BUG_ON(offset + sizeof(__sum16) > skb_headlen(skb)); + if (WARN_ON_ONCE(offset + sizeof(__sum16) > skb_headlen(skb))) + goto out; ret = skb_ensure_writable(skb, offset + sizeof(__sum16)); if (ret) diff -u linux-intel-iotg-5.15-5.15.0/net/core/filter.c linux-intel-iotg-5.15-5.15.0/net/core/filter.c --- linux-intel-iotg-5.15-5.15.0/net/core/filter.c +++ linux-intel-iotg-5.15-5.15.0/net/core/filter.c @@ -1688,7 +1688,7 @@ if (unlikely(flags & ~(BPF_F_RECOMPUTE_CSUM | BPF_F_INVALIDATE_HASH))) return -EINVAL; - if (unlikely(offset > 0xffff)) + if (unlikely(offset > INT_MAX)) return -EFAULT; if (unlikely(bpf_try_make_writable(skb, offset + len))) return -EFAULT; @@ -1713,7 +1713,7 @@ .ret_type = RET_INTEGER, .arg1_type = ARG_PTR_TO_CTX, .arg2_type = ARG_ANYTHING, - .arg3_type = ARG_PTR_TO_MEM, + .arg3_type = ARG_PTR_TO_MEM | MEM_RDONLY, .arg4_type = ARG_CONST_SIZE, .arg5_type = ARG_ANYTHING, }; @@ -1723,7 +1723,7 @@ { void *ptr; - if (unlikely(offset > 0xffff)) + if (unlikely(offset > INT_MAX)) goto err_clear; ptr = skb_header_pointer(skb, offset, len, to); @@ -2018,9 +2018,9 @@ .gpl_only = false, .pkt_access = true, .ret_type = RET_INTEGER, - .arg1_type = ARG_PTR_TO_MEM_OR_NULL, + .arg1_type = ARG_PTR_TO_MEM | PTR_MAYBE_NULL | MEM_RDONLY, .arg2_type = ARG_CONST_SIZE_OR_ZERO, - .arg3_type = ARG_PTR_TO_MEM_OR_NULL, + .arg3_type = ARG_PTR_TO_MEM | PTR_MAYBE_NULL | MEM_RDONLY, .arg4_type = ARG_CONST_SIZE_OR_ZERO, .arg5_type = ARG_ANYTHING, }; @@ -2541,7 +2541,7 @@ .gpl_only = false, .ret_type = RET_INTEGER, .arg1_type = ARG_ANYTHING, - .arg2_type = ARG_PTR_TO_MEM_OR_NULL, + .arg2_type = ARG_PTR_TO_MEM | PTR_MAYBE_NULL | MEM_RDONLY, .arg3_type = ARG_CONST_SIZE_OR_ZERO, .arg4_type = ARG_ANYTHING, }; @@ -4177,7 +4177,7 @@ .arg1_type = ARG_PTR_TO_CTX, .arg2_type = ARG_CONST_MAP_PTR, .arg3_type = ARG_ANYTHING, - .arg4_type = ARG_PTR_TO_MEM, + .arg4_type = ARG_PTR_TO_MEM | MEM_RDONLY, .arg5_type = ARG_CONST_SIZE_OR_ZERO, }; @@ -4191,7 +4191,7 @@ .arg1_btf_id = &bpf_skb_output_btf_ids[0], .arg2_type = ARG_CONST_MAP_PTR, .arg3_type = ARG_ANYTHING, - .arg4_type = ARG_PTR_TO_MEM, + .arg4_type = ARG_PTR_TO_MEM | MEM_RDONLY, .arg5_type = ARG_CONST_SIZE_OR_ZERO, }; @@ -4374,7 +4374,7 @@ .gpl_only = false, .ret_type = RET_INTEGER, .arg1_type = ARG_PTR_TO_CTX, - .arg2_type = ARG_PTR_TO_MEM, + .arg2_type = ARG_PTR_TO_MEM | MEM_RDONLY, .arg3_type = ARG_CONST_SIZE, .arg4_type = ARG_ANYTHING, }; @@ -4400,7 +4400,7 @@ .gpl_only = false, .ret_type = RET_INTEGER, .arg1_type = ARG_PTR_TO_CTX, - .arg2_type = ARG_PTR_TO_MEM, + .arg2_type = ARG_PTR_TO_MEM | MEM_RDONLY, .arg3_type = ARG_CONST_SIZE, }; @@ -4570,7 +4570,7 @@ .arg1_type = ARG_PTR_TO_CTX, .arg2_type = ARG_CONST_MAP_PTR, .arg3_type = ARG_ANYTHING, - .arg4_type = ARG_PTR_TO_MEM, + .arg4_type = ARG_PTR_TO_MEM | MEM_RDONLY, .arg5_type = ARG_CONST_SIZE_OR_ZERO, }; @@ -4584,7 +4584,7 @@ .arg1_btf_id = &bpf_xdp_output_btf_ids[0], .arg2_type = ARG_CONST_MAP_PTR, .arg3_type = ARG_ANYTHING, - .arg4_type = ARG_PTR_TO_MEM, + .arg4_type = ARG_PTR_TO_MEM | MEM_RDONLY, .arg5_type = ARG_CONST_SIZE_OR_ZERO, }; @@ -5072,7 +5072,7 @@ .arg1_type = ARG_PTR_TO_BTF_ID_SOCK_COMMON, .arg2_type = ARG_ANYTHING, .arg3_type = ARG_ANYTHING, - .arg4_type = ARG_PTR_TO_MEM, + .arg4_type = ARG_PTR_TO_MEM | MEM_RDONLY, .arg5_type = ARG_CONST_SIZE, }; @@ -5106,7 +5106,7 @@ .arg1_type = ARG_PTR_TO_CTX, .arg2_type = ARG_ANYTHING, .arg3_type = ARG_ANYTHING, - .arg4_type = ARG_PTR_TO_MEM, + .arg4_type = ARG_PTR_TO_MEM | MEM_RDONLY, .arg5_type = ARG_CONST_SIZE, }; @@ -5140,7 +5140,7 @@ .arg1_type = ARG_PTR_TO_CTX, .arg2_type = ARG_ANYTHING, .arg3_type = ARG_ANYTHING, - .arg4_type = ARG_PTR_TO_MEM, + .arg4_type = ARG_PTR_TO_MEM | MEM_RDONLY, .arg5_type = ARG_CONST_SIZE, }; @@ -5315,7 +5315,7 @@ .gpl_only = false, .ret_type = RET_INTEGER, .arg1_type = ARG_PTR_TO_CTX, - .arg2_type = ARG_PTR_TO_MEM, + .arg2_type = ARG_PTR_TO_MEM | MEM_RDONLY, .arg3_type = ARG_CONST_SIZE, }; @@ -5903,7 +5903,7 @@ .ret_type = RET_INTEGER, .arg1_type = ARG_PTR_TO_CTX, .arg2_type = ARG_ANYTHING, - .arg3_type = ARG_PTR_TO_MEM, + .arg3_type = ARG_PTR_TO_MEM | MEM_RDONLY, .arg4_type = ARG_CONST_SIZE }; @@ -5913,7 +5913,7 @@ .ret_type = RET_INTEGER, .arg1_type = ARG_PTR_TO_CTX, .arg2_type = ARG_ANYTHING, - .arg3_type = ARG_PTR_TO_MEM, + .arg3_type = ARG_PTR_TO_MEM | MEM_RDONLY, .arg4_type = ARG_CONST_SIZE }; @@ -5956,7 +5956,7 @@ .ret_type = RET_INTEGER, .arg1_type = ARG_PTR_TO_CTX, .arg2_type = ARG_ANYTHING, - .arg3_type = ARG_PTR_TO_MEM, + .arg3_type = ARG_PTR_TO_MEM | MEM_RDONLY, .arg4_type = ARG_CONST_SIZE }; @@ -6044,7 +6044,7 @@ .ret_type = RET_INTEGER, .arg1_type = ARG_PTR_TO_CTX, .arg2_type = ARG_ANYTHING, - .arg3_type = ARG_PTR_TO_MEM, + .arg3_type = ARG_PTR_TO_MEM | MEM_RDONLY, .arg4_type = ARG_CONST_SIZE }; @@ -6269,7 +6269,7 @@ .pkt_access = true, .ret_type = RET_PTR_TO_SOCK_COMMON_OR_NULL, .arg1_type = ARG_PTR_TO_CTX, - .arg2_type = ARG_PTR_TO_MEM, + .arg2_type = ARG_PTR_TO_MEM | MEM_RDONLY, .arg3_type = ARG_CONST_SIZE, .arg4_type = ARG_ANYTHING, .arg5_type = ARG_ANYTHING, @@ -6288,7 +6288,7 @@ .pkt_access = true, .ret_type = RET_PTR_TO_SOCKET_OR_NULL, .arg1_type = ARG_PTR_TO_CTX, - .arg2_type = ARG_PTR_TO_MEM, + .arg2_type = ARG_PTR_TO_MEM | MEM_RDONLY, .arg3_type = ARG_CONST_SIZE, .arg4_type = ARG_ANYTHING, .arg5_type = ARG_ANYTHING, @@ -6307,7 +6307,7 @@ .pkt_access = true, .ret_type = RET_PTR_TO_SOCKET_OR_NULL, .arg1_type = ARG_PTR_TO_CTX, - .arg2_type = ARG_PTR_TO_MEM, + .arg2_type = ARG_PTR_TO_MEM | MEM_RDONLY, .arg3_type = ARG_CONST_SIZE, .arg4_type = ARG_ANYTHING, .arg5_type = ARG_ANYTHING, @@ -6344,7 +6344,7 @@ .pkt_access = true, .ret_type = RET_PTR_TO_SOCKET_OR_NULL, .arg1_type = ARG_PTR_TO_CTX, - .arg2_type = ARG_PTR_TO_MEM, + .arg2_type = ARG_PTR_TO_MEM | MEM_RDONLY, .arg3_type = ARG_CONST_SIZE, .arg4_type = ARG_ANYTHING, .arg5_type = ARG_ANYTHING, @@ -6367,7 +6367,7 @@ .pkt_access = true, .ret_type = RET_PTR_TO_SOCK_COMMON_OR_NULL, .arg1_type = ARG_PTR_TO_CTX, - .arg2_type = ARG_PTR_TO_MEM, + .arg2_type = ARG_PTR_TO_MEM | MEM_RDONLY, .arg3_type = ARG_CONST_SIZE, .arg4_type = ARG_ANYTHING, .arg5_type = ARG_ANYTHING, @@ -6390,7 +6390,7 @@ .pkt_access = true, .ret_type = RET_PTR_TO_SOCKET_OR_NULL, .arg1_type = ARG_PTR_TO_CTX, - .arg2_type = ARG_PTR_TO_MEM, + .arg2_type = ARG_PTR_TO_MEM | MEM_RDONLY, .arg3_type = ARG_CONST_SIZE, .arg4_type = ARG_ANYTHING, .arg5_type = ARG_ANYTHING, @@ -6409,7 +6409,7 @@ .gpl_only = false, .ret_type = RET_PTR_TO_SOCK_COMMON_OR_NULL, .arg1_type = ARG_PTR_TO_CTX, - .arg2_type = ARG_PTR_TO_MEM, + .arg2_type = ARG_PTR_TO_MEM | MEM_RDONLY, .arg3_type = ARG_CONST_SIZE, .arg4_type = ARG_ANYTHING, .arg5_type = ARG_ANYTHING, @@ -6428,7 +6428,7 @@ .gpl_only = false, .ret_type = RET_PTR_TO_SOCKET_OR_NULL, .arg1_type = ARG_PTR_TO_CTX, - .arg2_type = ARG_PTR_TO_MEM, + .arg2_type = ARG_PTR_TO_MEM | MEM_RDONLY, .arg3_type = ARG_CONST_SIZE, .arg4_type = ARG_ANYTHING, .arg5_type = ARG_ANYTHING, @@ -6447,7 +6447,7 @@ .gpl_only = false, .ret_type = RET_PTR_TO_SOCKET_OR_NULL, .arg1_type = ARG_PTR_TO_CTX, - .arg2_type = ARG_PTR_TO_MEM, + .arg2_type = ARG_PTR_TO_MEM | MEM_RDONLY, .arg3_type = ARG_CONST_SIZE, .arg4_type = ARG_ANYTHING, .arg5_type = ARG_ANYTHING, @@ -6769,9 +6769,9 @@ .pkt_access = true, .ret_type = RET_INTEGER, .arg1_type = ARG_PTR_TO_BTF_ID_SOCK_COMMON, - .arg2_type = ARG_PTR_TO_MEM, + .arg2_type = ARG_PTR_TO_MEM | MEM_RDONLY, .arg3_type = ARG_CONST_SIZE, - .arg4_type = ARG_PTR_TO_MEM, + .arg4_type = ARG_PTR_TO_MEM | MEM_RDONLY, .arg5_type = ARG_CONST_SIZE, }; @@ -6838,9 +6838,9 @@ .pkt_access = true, .ret_type = RET_INTEGER, .arg1_type = ARG_PTR_TO_BTF_ID_SOCK_COMMON, - .arg2_type = ARG_PTR_TO_MEM, + .arg2_type = ARG_PTR_TO_MEM | MEM_RDONLY, .arg3_type = ARG_CONST_SIZE, - .arg4_type = ARG_PTR_TO_MEM, + .arg4_type = ARG_PTR_TO_MEM | MEM_RDONLY, .arg5_type = ARG_CONST_SIZE, }; @@ -7069,7 +7069,7 @@ .gpl_only = false, .ret_type = RET_INTEGER, .arg1_type = ARG_PTR_TO_CTX, - .arg2_type = ARG_PTR_TO_MEM, + .arg2_type = ARG_PTR_TO_MEM | MEM_RDONLY, .arg3_type = ARG_CONST_SIZE, .arg4_type = ARG_ANYTHING, }; diff -u linux-intel-iotg-5.15-5.15.0/net/core/skbuff.c linux-intel-iotg-5.15-5.15.0/net/core/skbuff.c --- linux-intel-iotg-5.15-5.15.0/net/core/skbuff.c +++ linux-intel-iotg-5.15-5.15.0/net/core/skbuff.c @@ -3873,7 +3873,7 @@ unsigned int delta_len = 0; struct sk_buff *tail = NULL; struct sk_buff *nskb, *tmp; - int err; + int len_diff, err; skb_push(skb, -skb_network_offset(skb) + offset); @@ -3913,9 +3913,11 @@ skb_push(nskb, -skb_network_offset(nskb) + offset); skb_release_head_state(nskb); + len_diff = skb_network_header_len(nskb) - skb_network_header_len(skb); __copy_skb_header(nskb, skb); skb_headers_offset_update(nskb, skb_headroom(nskb) - skb_headroom(skb)); + nskb->transport_header += len_diff; skb_copy_from_linear_data_offset(skb, -tnl_hlen, nskb->data - tnl_hlen, offset + tnl_hlen); diff -u linux-intel-iotg-5.15-5.15.0/net/core/sock_map.c linux-intel-iotg-5.15-5.15.0/net/core/sock_map.c --- linux-intel-iotg-5.15-5.15.0/net/core/sock_map.c +++ linux-intel-iotg-5.15-5.15.0/net/core/sock_map.c @@ -1575,7 +1575,7 @@ .ctx_arg_info_size = 2, .ctx_arg_info = { { offsetof(struct bpf_iter__sockmap, key), - PTR_TO_RDONLY_BUF_OR_NULL }, + PTR_TO_BUF | PTR_MAYBE_NULL | MEM_RDONLY }, { offsetof(struct bpf_iter__sockmap, sk), PTR_TO_BTF_ID_OR_NULL }, }, diff -u linux-intel-iotg-5.15-5.15.0/net/ipv4/esp4.c linux-intel-iotg-5.15-5.15.0/net/ipv4/esp4.c --- linux-intel-iotg-5.15-5.15.0/net/ipv4/esp4.c +++ linux-intel-iotg-5.15-5.15.0/net/ipv4/esp4.c @@ -446,7 +446,6 @@ struct page *page; struct sk_buff *trailer; int tailen = esp->tailen; - unsigned int allocsz; /* this is non-NULL only with TCP/UDP Encapsulation */ if (x->encap) { @@ -456,8 +455,8 @@ return err; } - allocsz = ALIGN(skb->data_len + tailen, L1_CACHE_BYTES); - if (allocsz > ESP_SKB_FRAG_MAXSIZE) + if (ALIGN(tailen, L1_CACHE_BYTES) > PAGE_SIZE || + ALIGN(skb->data_len, L1_CACHE_BYTES) > PAGE_SIZE) goto cow; if (!skb_cloned(skb)) { diff -u linux-intel-iotg-5.15-5.15.0/net/ipv4/inet_hashtables.c linux-intel-iotg-5.15-5.15.0/net/ipv4/inet_hashtables.c --- linux-intel-iotg-5.15-5.15.0/net/ipv4/inet_hashtables.c +++ linux-intel-iotg-5.15-5.15.0/net/ipv4/inet_hashtables.c @@ -504,7 +504,7 @@ return -EADDRNOTAVAIL; } -static u32 inet_sk_port_offset(const struct sock *sk) +static u64 inet_sk_port_offset(const struct sock *sk) { const struct inet_sock *inet = inet_sk(sk); @@ -726,15 +726,17 @@ * Note that we use 32bit integers (vs RFC 'short integers') * because 2^16 is not a multiple of num_ephemeral and this * property might be used by clever attacker. - * RFC claims using TABLE_LENGTH=10 buckets gives an improvement, - * we use 256 instead to really give more isolation and - * privacy, this only consumes 1 KB of kernel memory. + * RFC claims using TABLE_LENGTH=10 buckets gives an improvement, though + * attacks were since demonstrated, thus we use 65536 instead to really + * give more isolation and privacy, at the expense of 256kB of kernel + * memory. */ -#define INET_TABLE_PERTURB_SHIFT 8 -static u32 table_perturb[1 << INET_TABLE_PERTURB_SHIFT]; +#define INET_TABLE_PERTURB_SHIFT 16 +#define INET_TABLE_PERTURB_SIZE (1 << INET_TABLE_PERTURB_SHIFT) +static u32 *table_perturb; int __inet_hash_connect(struct inet_timewait_death_row *death_row, - struct sock *sk, u32 port_offset, + struct sock *sk, u64 port_offset, int (*check_established)(struct inet_timewait_death_row *, struct sock *, __u16, struct inet_timewait_sock **)) { @@ -774,10 +776,13 @@ if (likely(remaining > 1)) remaining &= ~1U; - net_get_random_once(table_perturb, sizeof(table_perturb)); - index = hash_32(port_offset, INET_TABLE_PERTURB_SHIFT); + net_get_random_once(table_perturb, + INET_TABLE_PERTURB_SIZE * sizeof(*table_perturb)); + index = port_offset & (INET_TABLE_PERTURB_SIZE - 1); + + offset = READ_ONCE(table_perturb[index]) + (port_offset >> 32); + offset %= remaining; - offset = (READ_ONCE(table_perturb[index]) + port_offset) % remaining; /* In first pass we try ports of @low parity. * inet_csk_get_port() does the opposite choice. */ @@ -831,11 +836,12 @@ return -EADDRNOTAVAIL; ok: - /* If our first attempt found a candidate, skip next candidate - * in 1/16 of cases to add some noise. + /* Here we want to add a little bit of randomness to the next source + * port that will be chosen. We use a max() with a random here so that + * on low contention the randomness is maximal and on high contention + * it may be inexistent. */ - if (!i && !(prandom_u32() % 16)) - i = 2; + i = max_t(int, i, (prandom_u32() & 7) * 2); WRITE_ONCE(table_perturb[index], READ_ONCE(table_perturb[index]) + i + 2); /* Head lock still held and bh's disabled */ @@ -859,7 +865,7 @@ int inet_hash_connect(struct inet_timewait_death_row *death_row, struct sock *sk) { - u32 port_offset = 0; + u64 port_offset = 0; if (!inet_sk(sk)->inet_num) port_offset = inet_sk_port_offset(sk); @@ -909,6 +915,12 @@ low_limit, high_limit); init_hashinfo_lhash2(h); + + /* this one is used for source ports of outgoing connections */ + table_perturb = kmalloc_array(INET_TABLE_PERTURB_SIZE, + sizeof(*table_perturb), GFP_KERNEL); + if (!table_perturb) + panic("TCP: failed to alloc table_perturb"); } int inet_hashinfo2_init_mod(struct inet_hashinfo *h) diff -u linux-intel-iotg-5.15-5.15.0/net/ipv4/ip_gre.c linux-intel-iotg-5.15-5.15.0/net/ipv4/ip_gre.c --- linux-intel-iotg-5.15-5.15.0/net/ipv4/ip_gre.c +++ linux-intel-iotg-5.15-5.15.0/net/ipv4/ip_gre.c @@ -459,14 +459,12 @@ __be16 proto) { struct ip_tunnel *tunnel = netdev_priv(dev); - - if (tunnel->parms.o_flags & TUNNEL_SEQ) - tunnel->o_seqno++; + __be16 flags = tunnel->parms.o_flags; /* Push GRE header. */ gre_build_header(skb, tunnel->tun_hlen, - tunnel->parms.o_flags, proto, tunnel->parms.o_key, - htonl(tunnel->o_seqno)); + flags, proto, tunnel->parms.o_key, + (flags & TUNNEL_SEQ) ? htonl(atomic_fetch_inc(&tunnel->o_seqno)) : 0); ip_tunnel_xmit(skb, dev, tnl_params, tnl_params->protocol); } @@ -504,7 +502,7 @@ (TUNNEL_CSUM | TUNNEL_KEY | TUNNEL_SEQ); gre_build_header(skb, tunnel_hlen, flags, proto, tunnel_id_to_key32(tun_info->key.tun_id), - (flags & TUNNEL_SEQ) ? htonl(tunnel->o_seqno++) : 0); + (flags & TUNNEL_SEQ) ? htonl(atomic_fetch_inc(&tunnel->o_seqno)) : 0); ip_md_tunnel_xmit(skb, dev, IPPROTO_GRE, tunnel_hlen); @@ -581,7 +579,7 @@ } gre_build_header(skb, 8, TUNNEL_SEQ, - proto, 0, htonl(tunnel->o_seqno++)); + proto, 0, htonl(atomic_fetch_inc(&tunnel->o_seqno))); ip_md_tunnel_xmit(skb, dev, IPPROTO_GRE, tunnel_hlen); diff -u linux-intel-iotg-5.15-5.15.0/net/ipv4/ping.c linux-intel-iotg-5.15-5.15.0/net/ipv4/ping.c --- linux-intel-iotg-5.15-5.15.0/net/ipv4/ping.c +++ linux-intel-iotg-5.15-5.15.0/net/ipv4/ping.c @@ -305,6 +305,7 @@ struct net *net = sock_net(sk); if (sk->sk_family == AF_INET) { struct sockaddr_in *addr = (struct sockaddr_in *) uaddr; + u32 tb_id = RT_TABLE_LOCAL; int chk_addr_ret; if (addr_len < sizeof(*addr)) @@ -320,8 +321,10 @@ if (addr->sin_addr.s_addr == htonl(INADDR_ANY)) chk_addr_ret = RTN_LOCAL; - else - chk_addr_ret = inet_addr_type(net, addr->sin_addr.s_addr); + else { + tb_id = l3mdev_fib_table_by_index(net, sk->sk_bound_dev_if) ? : tb_id; + chk_addr_ret = inet_addr_type_table(net, addr->sin_addr.s_addr, tb_id); + } if ((!inet_can_nonlocal_bind(net, isk) && chk_addr_ret != RTN_LOCAL) || @@ -357,6 +360,14 @@ if (!dev) { rcu_read_unlock(); return -ENODEV; + } + } + + if (!dev && sk->sk_bound_dev_if) { + dev = dev_get_by_index_rcu(net, sk->sk_bound_dev_if); + if (!dev) { + rcu_read_unlock(); + return -ENODEV; } } has_addr = pingv6_ops.ipv6_chk_addr(net, &addr->sin6_addr, dev, diff -u linux-intel-iotg-5.15-5.15.0/net/ipv4/route.c linux-intel-iotg-5.15-5.15.0/net/ipv4/route.c --- linux-intel-iotg-5.15-5.15.0/net/ipv4/route.c +++ linux-intel-iotg-5.15-5.15.0/net/ipv4/route.c @@ -1727,6 +1727,7 @@ struct in_device *in_dev = __in_dev_get_rcu(dev); unsigned int flags = RTCF_MULTICAST; struct rtable *rth; + bool no_policy; u32 itag = 0; int err; @@ -1737,8 +1738,12 @@ if (our) flags |= RTCF_LOCAL; + no_policy = IN_DEV_ORCONF(in_dev, NOPOLICY); + if (no_policy) + IPCB(skb)->flags |= IPSKB_NOPOLICY; + rth = rt_dst_alloc(dev_net(dev)->loopback_dev, flags, RTN_MULTICAST, - IN_DEV_ORCONF(in_dev, NOPOLICY), false); + no_policy, false); if (!rth) return -ENOBUFS; @@ -1754,6 +1759,7 @@ #endif RT_CACHE_STAT_INC(in_slow_mc); + skb_dst_drop(skb); skb_dst_set(skb, &rth->dst); return 0; } @@ -1796,7 +1802,7 @@ struct rtable *rth; int err; struct in_device *out_dev; - bool do_cache; + bool do_cache, no_policy; u32 itag = 0; /* get a working reference to the output device */ @@ -1841,6 +1847,10 @@ } } + no_policy = IN_DEV_ORCONF(in_dev, NOPOLICY); + if (no_policy) + IPCB(skb)->flags |= IPSKB_NOPOLICY; + fnhe = find_exception(nhc, daddr); if (do_cache) { if (fnhe) @@ -1853,8 +1863,7 @@ } } - rth = rt_dst_alloc(out_dev->dev, 0, res->type, - IN_DEV_ORCONF(in_dev, NOPOLICY), + rth = rt_dst_alloc(out_dev->dev, 0, res->type, no_policy, IN_DEV_ORCONF(out_dev, NOXFRM)); if (!rth) { err = -ENOBUFS; @@ -2229,6 +2238,7 @@ struct rtable *rth; struct flowi4 fl4; bool do_cache = true; + bool no_policy; /* IP on this device is disabled. */ @@ -2346,6 +2356,10 @@ RT_CACHE_STAT_INC(in_brd); local_input: + no_policy = IN_DEV_ORCONF(in_dev, NOPOLICY); + if (no_policy) + IPCB(skb)->flags |= IPSKB_NOPOLICY; + do_cache &= res->fi && !itag; if (do_cache) { struct fib_nh_common *nhc = FIB_RES_NHC(*res); @@ -2360,7 +2374,7 @@ rth = rt_dst_alloc(ip_rt_get_dev(net, res), flags | RTCF_LOCAL, res->type, - IN_DEV_ORCONF(in_dev, NOPOLICY), false); + no_policy, false); if (!rth) goto e_nobufs; diff -u linux-intel-iotg-5.15-5.15.0/net/ipv4/tcp_input.c linux-intel-iotg-5.15-5.15.0/net/ipv4/tcp_input.c --- linux-intel-iotg-5.15-5.15.0/net/ipv4/tcp_input.c +++ linux-intel-iotg-5.15-5.15.0/net/ipv4/tcp_input.c @@ -3860,7 +3860,8 @@ tcp_process_tlp_ack(sk, ack, flag); if (tcp_ack_is_dubious(sk, flag)) { - if (!(flag & (FLAG_SND_UNA_ADVANCED | FLAG_NOT_DUP))) { + if (!(flag & (FLAG_SND_UNA_ADVANCED | + FLAG_NOT_DUP | FLAG_DSACKING_ACK))) { num_dupack = 1; /* Consider if pure acks were aggregated in tcp_add_backlog() */ if (!(flag & FLAG_DATA)) @@ -5420,7 +5421,17 @@ INDIRECT_CALL_1(sk->sk_write_space, sk_stream_write_space, sk); } -static void tcp_check_space(struct sock *sk) +/* Caller made space either from: + * 1) Freeing skbs in rtx queues (after tp->snd_una has advanced) + * 2) Sent skbs from output queue (and thus advancing tp->snd_nxt) + * + * We might be able to generate EPOLLOUT to the application if: + * 1) Space consumed in output/rtx queues is below sk->sk_sndbuf/2 + * 2) notsent amount (tp->write_seq - tp->snd_nxt) became + * small enough that tcp_stream_memory_free() decides it + * is time to generate EPOLLOUT. + */ +void tcp_check_space(struct sock *sk) { /* pairs with tcp_poll() */ smp_mb(); diff -u linux-intel-iotg-5.15-5.15.0/net/ipv4/tcp_output.c linux-intel-iotg-5.15-5.15.0/net/ipv4/tcp_output.c --- linux-intel-iotg-5.15-5.15.0/net/ipv4/tcp_output.c +++ linux-intel-iotg-5.15-5.15.0/net/ipv4/tcp_output.c @@ -82,6 +82,7 @@ NET_ADD_STATS(sock_net(sk), LINUX_MIB_TCPORIGDATASENT, tcp_skb_pcount(skb)); + tcp_check_space(sk); } /* SND.NXT, if window was not shrunk or the amount of shrunk was less than one diff -u linux-intel-iotg-5.15-5.15.0/net/ipv6/addrconf.c linux-intel-iotg-5.15-5.15.0/net/ipv6/addrconf.c --- linux-intel-iotg-5.15-5.15.0/net/ipv6/addrconf.c +++ linux-intel-iotg-5.15-5.15.0/net/ipv6/addrconf.c @@ -798,6 +798,7 @@ { struct net_device *dev; struct inet6_ifaddr *ifa; + LIST_HEAD(tmp_addr_list); if (!idev) return; @@ -816,14 +817,24 @@ } } + read_lock_bh(&idev->lock); list_for_each_entry(ifa, &idev->addr_list, if_list) { if (ifa->flags&IFA_F_TENTATIVE) continue; + list_add_tail(&ifa->if_list_aux, &tmp_addr_list); + } + read_unlock_bh(&idev->lock); + + while (!list_empty(&tmp_addr_list)) { + ifa = list_first_entry(&tmp_addr_list, + struct inet6_ifaddr, if_list_aux); + list_del(&ifa->if_list_aux); if (idev->cnf.forwarding) addrconf_join_anycast(ifa); else addrconf_leave_anycast(ifa); } + inet6_netconf_notify_devconf(dev_net(dev), RTM_NEWNETCONF, NETCONFA_FORWARDING, dev->ifindex, &idev->cnf); @@ -3728,7 +3739,8 @@ unsigned long event = unregister ? NETDEV_UNREGISTER : NETDEV_DOWN; struct net *net = dev_net(dev); struct inet6_dev *idev; - struct inet6_ifaddr *ifa, *tmp; + struct inet6_ifaddr *ifa; + LIST_HEAD(tmp_addr_list); bool keep_addr = false; bool was_ready; int state, i; @@ -3820,16 +3832,23 @@ write_lock_bh(&idev->lock); } - list_for_each_entry_safe(ifa, tmp, &idev->addr_list, if_list) { + list_for_each_entry(ifa, &idev->addr_list, if_list) + list_add_tail(&ifa->if_list_aux, &tmp_addr_list); + write_unlock_bh(&idev->lock); + + while (!list_empty(&tmp_addr_list)) { struct fib6_info *rt = NULL; bool keep; + ifa = list_first_entry(&tmp_addr_list, + struct inet6_ifaddr, if_list_aux); + list_del(&ifa->if_list_aux); + addrconf_del_dad_work(ifa); keep = keep_addr && (ifa->flags & IFA_F_PERMANENT) && !addr_is_local(&ifa->addr); - write_unlock_bh(&idev->lock); spin_lock_bh(&ifa->lock); if (keep) { @@ -3860,15 +3879,14 @@ addrconf_leave_solict(ifa->idev, &ifa->addr); } - write_lock_bh(&idev->lock); if (!keep) { + write_lock_bh(&idev->lock); list_del_rcu(&ifa->if_list); + write_unlock_bh(&idev->lock); in6_ifa_put(ifa); } } - write_unlock_bh(&idev->lock); - /* Step 5: Discard anycast and multicast list */ if (unregister) { ipv6_ac_destroy_dev(idev); @@ -4201,7 +4219,8 @@ send_rs = send_mld && ipv6_accept_ra(ifp->idev) && ifp->idev->cnf.rtr_solicits != 0 && - (dev->flags&IFF_LOOPBACK) == 0; + (dev->flags & IFF_LOOPBACK) == 0 && + (dev->type != ARPHRD_TUNNEL); read_unlock_bh(&ifp->idev->lock); /* While dad is in progress mld report's source address is in6_addrany. diff -u linux-intel-iotg-5.15-5.15.0/net/ipv6/esp6.c linux-intel-iotg-5.15-5.15.0/net/ipv6/esp6.c --- linux-intel-iotg-5.15-5.15.0/net/ipv6/esp6.c +++ linux-intel-iotg-5.15-5.15.0/net/ipv6/esp6.c @@ -483,7 +483,6 @@ struct page *page; struct sk_buff *trailer; int tailen = esp->tailen; - unsigned int allocsz; if (x->encap) { int err = esp6_output_encap(x, skb, esp); @@ -492,8 +491,8 @@ return err; } - allocsz = ALIGN(skb->data_len + tailen, L1_CACHE_BYTES); - if (allocsz > ESP_SKB_FRAG_MAXSIZE) + if (ALIGN(tailen, L1_CACHE_BYTES) > PAGE_SIZE || + ALIGN(skb->data_len, L1_CACHE_BYTES) > PAGE_SIZE) goto cow; if (!skb_cloned(skb)) { diff -u linux-intel-iotg-5.15-5.15.0/net/ipv6/inet6_hashtables.c linux-intel-iotg-5.15-5.15.0/net/ipv6/inet6_hashtables.c --- linux-intel-iotg-5.15-5.15.0/net/ipv6/inet6_hashtables.c +++ linux-intel-iotg-5.15-5.15.0/net/ipv6/inet6_hashtables.c @@ -308,7 +308,7 @@ return -EADDRNOTAVAIL; } -static u32 inet6_sk_port_offset(const struct sock *sk) +static u64 inet6_sk_port_offset(const struct sock *sk) { const struct inet_sock *inet = inet_sk(sk); @@ -320,7 +320,7 @@ int inet6_hash_connect(struct inet_timewait_death_row *death_row, struct sock *sk) { - u32 port_offset = 0; + u64 port_offset = 0; if (!inet_sk(sk)->inet_num) port_offset = inet6_sk_port_offset(sk); diff -u linux-intel-iotg-5.15-5.15.0/net/ipv6/ip6_gre.c linux-intel-iotg-5.15-5.15.0/net/ipv6/ip6_gre.c --- linux-intel-iotg-5.15-5.15.0/net/ipv6/ip6_gre.c +++ linux-intel-iotg-5.15-5.15.0/net/ipv6/ip6_gre.c @@ -724,6 +724,7 @@ { struct ip6_tnl *tunnel = netdev_priv(dev); __be16 protocol; + __be16 flags; if (dev->type == ARPHRD_ETHER) IPCB(skb)->flags = 0; @@ -733,16 +734,13 @@ else fl6->daddr = tunnel->parms.raddr; - if (skb_cow_head(skb, dev->needed_headroom ?: tunnel->hlen)) - return -ENOMEM; - /* Push GRE header. */ protocol = (dev->type == ARPHRD_ETHER) ? htons(ETH_P_TEB) : proto; if (tunnel->parms.collect_md) { struct ip_tunnel_info *tun_info; const struct ip_tunnel_key *key; - __be16 flags; + int tun_hlen; tun_info = skb_tunnel_info_txcheck(skb); if (IS_ERR(tun_info) || @@ -760,21 +758,27 @@ dsfield = key->tos; flags = key->tun_flags & (TUNNEL_CSUM | TUNNEL_KEY | TUNNEL_SEQ); - tunnel->tun_hlen = gre_calc_hlen(flags); + tun_hlen = gre_calc_hlen(flags); + + if (skb_cow_head(skb, dev->needed_headroom ?: tun_hlen + tunnel->encap_hlen)) + return -ENOMEM; - gre_build_header(skb, tunnel->tun_hlen, + gre_build_header(skb, tun_hlen, flags, protocol, tunnel_id_to_key32(tun_info->key.tun_id), - (flags & TUNNEL_SEQ) ? htonl(tunnel->o_seqno++) + (flags & TUNNEL_SEQ) ? htonl(atomic_fetch_inc(&tunnel->o_seqno)) : 0); } else { - if (tunnel->parms.o_flags & TUNNEL_SEQ) - tunnel->o_seqno++; + if (skb_cow_head(skb, dev->needed_headroom ?: tunnel->hlen)) + return -ENOMEM; - gre_build_header(skb, tunnel->tun_hlen, tunnel->parms.o_flags, + flags = tunnel->parms.o_flags; + + gre_build_header(skb, tunnel->tun_hlen, flags, protocol, tunnel->parms.o_key, - htonl(tunnel->o_seqno)); + (flags & TUNNEL_SEQ) ? htonl(atomic_fetch_inc(&tunnel->o_seqno)) + : 0); } return ip6_tnl_xmit(skb, dev, dsfield, fl6, encap_limit, pmtu, @@ -1052,7 +1056,7 @@ /* 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(t->o_seqno++)); + 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 */ if (!t->parms.collect_md && dst && dst_mtu(dst) > dst->dev->mtu) diff -u linux-intel-iotg-5.15-5.15.0/net/ipv6/mcast.c linux-intel-iotg-5.15-5.15.0/net/ipv6/mcast.c --- linux-intel-iotg-5.15-5.15.0/net/ipv6/mcast.c +++ linux-intel-iotg-5.15-5.15.0/net/ipv6/mcast.c @@ -460,10 +460,10 @@ newpsl->sl_addr[i] = psl->sl_addr[i]; atomic_sub(struct_size(psl, sl_addr, psl->sl_max), &sk->sk_omem_alloc); - kfree_rcu(psl, rcu); } + rcu_assign_pointer(pmc->sflist, newpsl); + kfree_rcu(psl, rcu); psl = newpsl; - rcu_assign_pointer(pmc->sflist, psl); } rv = 1; /* > 0 for insert logic below if sl_count is 0 */ for (i = 0; i < psl->sl_count; i++) { @@ -565,12 +565,12 @@ psl->sl_count, psl->sl_addr, 0); atomic_sub(struct_size(psl, sl_addr, psl->sl_max), &sk->sk_omem_alloc); - kfree_rcu(psl, rcu); } else { ip6_mc_del_src(idev, group, pmc->sfmode, 0, NULL, 0); } - mutex_unlock(&idev->mc_lock); rcu_assign_pointer(pmc->sflist, newpsl); + mutex_unlock(&idev->mc_lock); + kfree_rcu(psl, rcu); pmc->sfmode = gsf->gf_fmode; err = 0; done: diff -u linux-intel-iotg-5.15-5.15.0/net/ipv6/route.c linux-intel-iotg-5.15-5.15.0/net/ipv6/route.c --- linux-intel-iotg-5.15-5.15.0/net/ipv6/route.c +++ linux-intel-iotg-5.15-5.15.0/net/ipv6/route.c @@ -3303,6 +3303,7 @@ int rt_elasticity = net->ipv6.sysctl.ip6_rt_gc_elasticity; int rt_gc_timeout = net->ipv6.sysctl.ip6_rt_gc_timeout; unsigned long rt_last_gc = net->ipv6.ip6_rt_last_gc; + unsigned int val; int entries; entries = dst_entries_get_fast(ops); @@ -3313,13 +3314,13 @@ entries <= rt_max_size) goto out; - net->ipv6.ip6_rt_gc_expire++; - fib6_run_gc(net->ipv6.ip6_rt_gc_expire, net, true); + fib6_run_gc(atomic_inc_return(&net->ipv6.ip6_rt_gc_expire), net, true); entries = dst_entries_get_slow(ops); if (entries < ops->gc_thresh) - net->ipv6.ip6_rt_gc_expire = rt_gc_timeout>>1; + atomic_set(&net->ipv6.ip6_rt_gc_expire, rt_gc_timeout >> 1); out: - net->ipv6.ip6_rt_gc_expire -= net->ipv6.ip6_rt_gc_expire>>rt_elasticity; + val = atomic_read(&net->ipv6.ip6_rt_gc_expire); + atomic_set(&net->ipv6.ip6_rt_gc_expire, val - (val >> rt_elasticity)); return entries > rt_max_size; } @@ -6528,7 +6529,7 @@ net->ipv6.sysctl.ip6_rt_min_advmss = IPV6_MIN_MTU - 20 - 40; net->ipv6.sysctl.skip_notify_on_dev_down = 0; - net->ipv6.ip6_rt_gc_expire = 30*HZ; + atomic_set(&net->ipv6.ip6_rt_gc_expire, 30*HZ); ret = 0; out: diff -u linux-intel-iotg-5.15-5.15.0/net/key/af_key.c linux-intel-iotg-5.15-5.15.0/net/key/af_key.c --- linux-intel-iotg-5.15-5.15.0/net/key/af_key.c +++ linux-intel-iotg-5.15-5.15.0/net/key/af_key.c @@ -2898,7 +2898,7 @@ break; if (!aalg->pfkey_supported) continue; - if (aalg_tmpl_set(t, aalg)) + if (aalg_tmpl_set(t, aalg) && aalg->available) sz += sizeof(struct sadb_comb); } return sz + sizeof(struct sadb_prop); @@ -2916,7 +2916,7 @@ if (!ealg->pfkey_supported) continue; - if (!(ealg_tmpl_set(t, ealg))) + if (!(ealg_tmpl_set(t, ealg) && ealg->available)) continue; for (k = 1; ; k++) { @@ -2927,7 +2927,7 @@ if (!aalg->pfkey_supported) continue; - if (aalg_tmpl_set(t, aalg)) + if (aalg_tmpl_set(t, aalg) && aalg->available) sz += sizeof(struct sadb_comb); } } diff -u linux-intel-iotg-5.15-5.15.0/net/mac80211/ieee80211_i.h linux-intel-iotg-5.15-5.15.0/net/mac80211/ieee80211_i.h --- linux-intel-iotg-5.15-5.15.0/net/mac80211/ieee80211_i.h +++ linux-intel-iotg-5.15-5.15.0/net/mac80211/ieee80211_i.h @@ -1129,6 +1129,9 @@ * a scan complete for an aborted scan. * @SCAN_HW_CANCELLED: Set for our scan work function when the scan is being * cancelled. + * @SCAN_BEACON_WAIT: Set whenever we're passive scanning because of radar/no-IR + * and could send a probe request after receiving a beacon. + * @SCAN_BEACON_DONE: Beacon received, we can now send a probe request */ enum { SCAN_SW_SCANNING, @@ -1137,6 +1140,8 @@ SCAN_COMPLETED, SCAN_ABORTED, SCAN_HW_CANCELLED, + SCAN_BEACON_WAIT, + SCAN_BEACON_DONE, }; /** diff -u linux-intel-iotg-5.15-5.15.0/net/mac80211/mlme.c linux-intel-iotg-5.15-5.15.0/net/mac80211/mlme.c --- linux-intel-iotg-5.15-5.15.0/net/mac80211/mlme.c +++ linux-intel-iotg-5.15-5.15.0/net/mac80211/mlme.c @@ -3541,6 +3541,12 @@ cbss->transmitted_bss->bssid); bss_conf->bssid_indicator = cbss->max_bssid_indicator; bss_conf->bssid_index = cbss->bssid_index; + } else { + bss_conf->nontransmitted = false; + memset(bss_conf->transmitter_bssid, 0, + sizeof(bss_conf->transmitter_bssid)); + bss_conf->bssid_indicator = 0; + bss_conf->bssid_index = 0; } /* diff -u linux-intel-iotg-5.15-5.15.0/net/mac80211/rx.c linux-intel-iotg-5.15-5.15.0/net/mac80211/rx.c --- linux-intel-iotg-5.15-5.15.0/net/mac80211/rx.c +++ linux-intel-iotg-5.15-5.15.0/net/mac80211/rx.c @@ -1400,8 +1400,7 @@ goto dont_reorder; /* not part of a BA session */ - if (ack_policy != IEEE80211_QOS_CTL_ACK_POLICY_BLOCKACK && - ack_policy != IEEE80211_QOS_CTL_ACK_POLICY_NORMAL) + if (ack_policy == IEEE80211_QOS_CTL_ACK_POLICY_NOACK) goto dont_reorder; /* new, potentially un-ordered, ampdu frame - process it */ diff -u linux-intel-iotg-5.15-5.15.0/net/mptcp/options.c linux-intel-iotg-5.15-5.15.0/net/mptcp/options.c --- linux-intel-iotg-5.15-5.15.0/net/mptcp/options.c +++ linux-intel-iotg-5.15-5.15.0/net/mptcp/options.c @@ -107,7 +107,7 @@ ptr += 2; } if (opsize == TCPOLEN_MPTCP_MPC_ACK_DATA_CSUM) { - mp_opt->csum = (__force __sum16)get_unaligned_be16(ptr); + mp_opt->csum = get_unaligned((__force __sum16 *)ptr); mp_opt->suboptions |= OPTION_MPTCP_CSUMREQD; ptr += 2; } @@ -221,7 +221,7 @@ if (opsize == expected_opsize + TCPOLEN_MPTCP_DSS_CHECKSUM) { mp_opt->suboptions |= OPTION_MPTCP_CSUMREQD; - mp_opt->csum = (__force __sum16)get_unaligned_be16(ptr); + mp_opt->csum = get_unaligned((__force __sum16 *)ptr); ptr += 2; } @@ -1214,7 +1214,7 @@ WRITE_ONCE(msk->rcv_wnd_sent, ack_seq); } -static u16 __mptcp_make_csum(u64 data_seq, u32 subflow_seq, u16 data_len, __sum16 sum) +__sum16 __mptcp_make_csum(u64 data_seq, u32 subflow_seq, u16 data_len, __wsum sum) { struct csum_pseudo_header header; __wsum csum; @@ -1229,14 +1229,24 @@ header.data_len = htons(data_len); header.csum = 0; - csum = csum_partial(&header, sizeof(header), ~csum_unfold(sum)); - return (__force u16)csum_fold(csum); + csum = csum_partial(&header, sizeof(header), sum); + return csum_fold(csum); } -static u16 mptcp_make_csum(const struct mptcp_ext *mpext) +static __sum16 mptcp_make_csum(const struct mptcp_ext *mpext) { return __mptcp_make_csum(mpext->data_seq, mpext->subflow_seq, mpext->data_len, - mpext->csum); + ~csum_unfold(mpext->csum)); +} + +static void put_len_csum(u16 len, __sum16 csum, void *data) +{ + __sum16 *sumptr = data + 2; + __be16 *ptr = data; + + put_unaligned_be16(len, ptr); + + put_unaligned(csum, sumptr); } void mptcp_write_options(__be32 *ptr, const struct tcp_sock *tp, @@ -1315,8 +1325,9 @@ put_unaligned_be32(mpext->subflow_seq, ptr); ptr += 1; if (opts->csum_reqd) { - put_unaligned_be32(mpext->data_len << 16 | - mptcp_make_csum(mpext), ptr); + put_len_csum(mpext->data_len, + mptcp_make_csum(mpext), + ptr); } else { put_unaligned_be32(mpext->data_len << 16 | TCPOPT_NOP << 8 | TCPOPT_NOP, ptr); @@ -1364,11 +1375,12 @@ goto mp_capable_done; if (opts->csum_reqd) { - put_unaligned_be32(opts->data_len << 16 | - __mptcp_make_csum(opts->data_seq, - opts->subflow_seq, - opts->data_len, - opts->csum), ptr); + put_len_csum(opts->data_len, + __mptcp_make_csum(opts->data_seq, + opts->subflow_seq, + opts->data_len, + ~csum_unfold(opts->csum)), + ptr); } else { put_unaligned_be32(opts->data_len << 16 | TCPOPT_NOP << 8 | TCPOPT_NOP, ptr); diff -u linux-intel-iotg-5.15-5.15.0/net/mptcp/pm_netlink.c linux-intel-iotg-5.15-5.15.0/net/mptcp/pm_netlink.c --- linux-intel-iotg-5.15-5.15.0/net/mptcp/pm_netlink.c +++ linux-intel-iotg-5.15-5.15.0/net/mptcp/pm_netlink.c @@ -692,6 +692,8 @@ if (!addresses_equal(&local, addr, addr->port)) continue; + if (subflow->backup != bkup) + msk->last_snd = NULL; subflow->backup = bkup; subflow->send_mp_prio = 1; subflow->request_bkup = bkup; diff -u linux-intel-iotg-5.15-5.15.0/net/mptcp/protocol.h linux-intel-iotg-5.15-5.15.0/net/mptcp/protocol.h --- linux-intel-iotg-5.15-5.15.0/net/mptcp/protocol.h +++ linux-intel-iotg-5.15-5.15.0/net/mptcp/protocol.h @@ -436,7 +436,8 @@ rx_eof : 1, can_ack : 1, /* only after processing the remote a key */ disposable : 1, /* ctx can be free at ulp release time */ - stale : 1; /* unable to snd/rcv data, do not use for xmit */ + stale : 1, /* unable to snd/rcv data, do not use for xmit */ + valid_csum_seen : 1; /* at least one csum validated */ enum mptcp_data_avail data_avail; u32 remote_nonce; u64 thmac; @@ -718,6 +719,7 @@ void mptcp_crypto_key_sha(u64 key, u32 *token, u64 *idsn); void mptcp_crypto_hmac_sha(u64 key1, u64 key2, u8 *msg, int len, void *hmac); +__sum16 __mptcp_make_csum(u64 data_seq, u32 subflow_seq, u16 data_len, __wsum sum); void __init mptcp_pm_init(void); void mptcp_pm_data_init(struct mptcp_sock *msk); diff -u linux-intel-iotg-5.15-5.15.0/net/netfilter/nf_conntrack_core.c linux-intel-iotg-5.15-5.15.0/net/netfilter/nf_conntrack_core.c --- linux-intel-iotg-5.15-5.15.0/net/netfilter/nf_conntrack_core.c +++ linux-intel-iotg-5.15-5.15.0/net/netfilter/nf_conntrack_core.c @@ -571,7 +571,7 @@ #define NFCT_ALIGN(len) (((len) + NFCT_INFOMASK) & ~NFCT_INFOMASK) -/* Released via destroy_conntrack() */ +/* Released via nf_ct_destroy() */ struct nf_conn *nf_ct_tmpl_alloc(struct net *net, const struct nf_conntrack_zone *zone, gfp_t flags) @@ -598,7 +598,7 @@ tmpl->status = IPS_TEMPLATE; write_pnet(&tmpl->ct_net, net); nf_ct_zone_add(tmpl, zone); - atomic_set(&tmpl->ct_general.use, 0); + refcount_set(&tmpl->ct_general.use, 1); return tmpl; } @@ -625,13 +625,12 @@ #endif } -static void -destroy_conntrack(struct nf_conntrack *nfct) +void nf_ct_destroy(struct nf_conntrack *nfct) { struct nf_conn *ct = (struct nf_conn *)nfct; - pr_debug("destroy_conntrack(%p)\n", ct); - WARN_ON(atomic_read(&nfct->use) != 0); + pr_debug("%s(%p)\n", __func__, ct); + WARN_ON(refcount_read(&nfct->use) != 0); if (unlikely(nf_ct_is_template(ct))) { nf_ct_tmpl_free(ct); @@ -656,9 +655,10 @@ if (ct->master) nf_ct_put(ct->master); - pr_debug("destroy_conntrack: returning ct=%p to slab\n", ct); + pr_debug("%s: returning ct=%p to slab\n", __func__, ct); nf_conntrack_free(ct); } +EXPORT_SYMBOL(nf_ct_destroy); static void nf_ct_delete_from_lists(struct nf_conn *ct) { @@ -755,7 +755,7 @@ /* caller must hold rcu readlock and none of the nf_conntrack_locks */ static void nf_ct_gc_expired(struct nf_conn *ct) { - if (!atomic_inc_not_zero(&ct->ct_general.use)) + if (!refcount_inc_not_zero(&ct->ct_general.use)) return; if (nf_ct_should_gc(ct)) @@ -823,7 +823,7 @@ * in, try to obtain a reference and re-check tuple */ ct = nf_ct_tuplehash_to_ctrack(h); - if (likely(atomic_inc_not_zero(&ct->ct_general.use))) { + if (likely(refcount_inc_not_zero(&ct->ct_general.use))) { if (likely(nf_ct_key_equal(h, tuple, zone, net))) goto found; @@ -920,7 +920,7 @@ smp_wmb(); /* The caller holds a reference to this object */ - atomic_set(&ct->ct_general.use, 2); + refcount_set(&ct->ct_general.use, 2); __nf_conntrack_hash_insert(ct, hash, reply_hash); nf_conntrack_double_unlock(hash, reply_hash); NF_CT_STAT_INC(net, insert); @@ -971,7 +971,7 @@ { struct nf_conn_tstamp *tstamp; - atomic_inc(&ct->ct_general.use); + refcount_inc(&ct->ct_general.use); ct->status |= IPS_CONFIRMED; /* set conntrack timestamp, if enabled. */ @@ -1364,7 +1364,7 @@ nf_ct_is_dying(tmp)) continue; - if (!atomic_inc_not_zero(&tmp->ct_general.use)) + if (!refcount_inc_not_zero(&tmp->ct_general.use)) continue; /* kill only if still in same netns -- might have moved due to @@ -1513,7 +1513,7 @@ continue; /* need to take reference to avoid possible races */ - if (!atomic_inc_not_zero(&tmp->ct_general.use)) + if (!refcount_inc_not_zero(&tmp->ct_general.use)) continue; if (gc_worker_skip_ct(tmp)) { @@ -1622,7 +1622,7 @@ /* Because we use RCU lookups, we set ct_general.use to zero before * this is inserted in any list. */ - atomic_set(&ct->ct_general.use, 0); + refcount_set(&ct->ct_general.use, 0); return ct; out: atomic_dec(&cnet->count); @@ -1647,7 +1647,7 @@ /* A freed object has refcnt == 0, that's * the golden rule for SLAB_TYPESAFE_BY_RCU */ - WARN_ON(atomic_read(&ct->ct_general.use) != 0); + WARN_ON(refcount_read(&ct->ct_general.use) != 0); nf_ct_ext_destroy(ct); kmem_cache_free(nf_conntrack_cachep, ct); @@ -1739,8 +1739,8 @@ if (!exp) __nf_ct_try_assign_helper(ct, tmpl, GFP_ATOMIC); - /* Now it is inserted into the unconfirmed list, bump refcount */ - nf_conntrack_get(&ct->ct_general); + /* Now it is inserted into the unconfirmed list, set refcount to 1. */ + refcount_set(&ct->ct_general.use, 1); nf_ct_add_to_unconfirmed_list(ct); local_bh_enable(); @@ -2352,7 +2352,7 @@ return NULL; found: - atomic_inc(&ct->ct_general.use); + refcount_inc(&ct->ct_general.use); spin_unlock(lockp); local_bh_enable(); return ct; @@ -2825,7 +2825,7 @@ static struct nf_ct_hook nf_conntrack_hook = { .update = nf_conntrack_update, - .destroy = destroy_conntrack, + .destroy = nf_ct_destroy, .get_tuple_skb = nf_conntrack_get_tuple_skb, }; diff -u linux-intel-iotg-5.15-5.15.0/net/netfilter/nf_conntrack_netlink.c linux-intel-iotg-5.15-5.15.0/net/netfilter/nf_conntrack_netlink.c --- linux-intel-iotg-5.15-5.15.0/net/netfilter/nf_conntrack_netlink.c +++ linux-intel-iotg-5.15-5.15.0/net/netfilter/nf_conntrack_netlink.c @@ -513,7 +513,7 @@ static int ctnetlink_dump_use(struct sk_buff *skb, const struct nf_conn *ct) { - if (nla_put_be32(skb, CTA_USE, htonl(atomic_read(&ct->ct_general.use)))) + if (nla_put_be32(skb, CTA_USE, htonl(refcount_read(&ct->ct_general.use)))) goto nla_put_failure; return 0; @@ -1210,7 +1210,7 @@ ct = nf_ct_tuplehash_to_ctrack(h); if (nf_ct_is_expired(ct)) { if (i < ARRAY_SIZE(nf_ct_evict) && - atomic_inc_not_zero(&ct->ct_general.use)) + refcount_inc_not_zero(&ct->ct_general.use)) nf_ct_evict[i++] = ct; continue; } @@ -1758,7 +1758,7 @@ NFNL_MSG_TYPE(cb->nlh->nlmsg_type), ct, dying ? true : false, 0); if (res < 0) { - if (!atomic_inc_not_zero(&ct->ct_general.use)) + if (!refcount_inc_not_zero(&ct->ct_general.use)) continue; cb->args[0] = cpu; cb->args[1] = (unsigned long)ct; diff -u linux-intel-iotg-5.15-5.15.0/net/netfilter/nf_conntrack_standalone.c linux-intel-iotg-5.15-5.15.0/net/netfilter/nf_conntrack_standalone.c --- linux-intel-iotg-5.15-5.15.0/net/netfilter/nf_conntrack_standalone.c +++ linux-intel-iotg-5.15-5.15.0/net/netfilter/nf_conntrack_standalone.c @@ -304,7 +304,7 @@ int ret = 0; WARN_ON(!ct); - if (unlikely(!atomic_inc_not_zero(&ct->ct_general.use))) + if (unlikely(!refcount_inc_not_zero(&ct->ct_general.use))) return 0; if (nf_ct_should_gc(ct)) { @@ -371,7 +371,7 @@ ct_show_zone(s, ct, NF_CT_DEFAULT_ZONE_DIR); ct_show_delta_time(s, ct); - seq_printf(s, "use=%u\n", atomic_read(&ct->ct_general.use)); + seq_printf(s, "use=%u\n", refcount_read(&ct->ct_general.use)); if (seq_has_overflowed(s)) goto release; @@ -824,7 +824,7 @@ .mode = 0644, .proc_handler = proc_dointvec_jiffies, }, -#if IS_ENABLED(CONFIG_NFT_FLOW_OFFLOAD) +#if IS_ENABLED(CONFIG_NF_FLOW_TABLE) [NF_SYSCTL_CT_PROTO_TIMEOUT_UDP_OFFLOAD] = { .procname = "nf_flowtable_udp_timeout", .maxlen = sizeof(unsigned int), diff -u linux-intel-iotg-5.15-5.15.0/net/netfilter/nf_flow_table_core.c linux-intel-iotg-5.15-5.15.0/net/netfilter/nf_flow_table_core.c --- linux-intel-iotg-5.15-5.15.0/net/netfilter/nf_flow_table_core.c +++ linux-intel-iotg-5.15-5.15.0/net/netfilter/nf_flow_table_core.c @@ -48,7 +48,7 @@ struct flow_offload *flow; if (unlikely(nf_ct_is_dying(ct) || - !atomic_inc_not_zero(&ct->ct_general.use))) + !refcount_inc_not_zero(&ct->ct_general.use))) return NULL; flow = kzalloc(sizeof(*flow), GFP_ATOMIC); @@ -173,12 +173,11 @@ static void flow_offload_fixup_tcp(struct ip_ct_tcp *tcp) { - tcp->state = TCP_CONNTRACK_ESTABLISHED; tcp->seen[0].td_maxwin = 0; tcp->seen[1].td_maxwin = 0; } -static void flow_offload_fixup_ct_timeout(struct nf_conn *ct) +static void flow_offload_fixup_ct(struct nf_conn *ct) { struct net *net = nf_ct_net(ct); int l4num = nf_ct_protonum(ct); @@ -187,7 +186,9 @@ if (l4num == IPPROTO_TCP) { struct nf_tcp_net *tn = nf_tcp_pernet(net); - timeout = tn->timeouts[TCP_CONNTRACK_ESTABLISHED]; + flow_offload_fixup_tcp(&ct->proto.tcp); + + timeout = tn->timeouts[ct->proto.tcp.state]; timeout -= tn->offload_timeout; } else if (l4num == IPPROTO_UDP) { struct nf_udp_net *tn = nf_udp_pernet(net); @@ -207,14 +208,2 @@ -static void flow_offload_fixup_ct_state(struct nf_conn *ct) -{ - if (nf_ct_protonum(ct) == IPPROTO_TCP) - flow_offload_fixup_tcp(&ct->proto.tcp); -} - -static void flow_offload_fixup_ct(struct nf_conn *ct) -{ - flow_offload_fixup_ct_state(ct); - flow_offload_fixup_ct_timeout(ct); -} - static void flow_offload_route_release(struct flow_offload *flow) @@ -329,8 +318,10 @@ u32 timeout; timeout = nf_flowtable_time_stamp + flow_offload_get_timeout(flow); - if (READ_ONCE(flow->timeout) != timeout) + if (timeout - READ_ONCE(flow->timeout) > HZ) WRITE_ONCE(flow->timeout, timeout); + else + return; if (likely(!nf_flowtable_hw_offload(flow_table))) return; @@ -353,22 +344,14 @@ rhashtable_remove_fast(&flow_table->rhashtable, &flow->tuplehash[FLOW_OFFLOAD_DIR_REPLY].node, nf_flow_offload_rhash_params); - - clear_bit(IPS_OFFLOAD_BIT, &flow->ct->status); - - if (nf_flow_has_expired(flow)) - flow_offload_fixup_ct(flow->ct); - else - flow_offload_fixup_ct_timeout(flow->ct); - flow_offload_free(flow); } void flow_offload_teardown(struct flow_offload *flow) { + clear_bit(IPS_OFFLOAD_BIT, &flow->ct->status); set_bit(NF_FLOW_TEARDOWN, &flow->flags); - - flow_offload_fixup_ct_state(flow->ct); + flow_offload_fixup_ct(flow->ct); } EXPORT_SYMBOL_GPL(flow_offload_teardown); @@ -399,7 +382,8 @@ static int nf_flow_table_iterate(struct nf_flowtable *flow_table, - void (*iter)(struct flow_offload *flow, void *data), + void (*iter)(struct nf_flowtable *flowtable, + struct flow_offload *flow, void *data), void *data) { struct flow_offload_tuple_rhash *tuplehash; @@ -423,7 +407,7 @@ flow = container_of(tuplehash, struct flow_offload, tuplehash[0]); - iter(flow, data); + iter(flow_table, flow, data); } rhashtable_walk_stop(&hti); rhashtable_walk_exit(&hti); @@ -431,34 +415,12 @@ return err; } -static bool flow_offload_stale_dst(struct flow_offload_tuple *tuple) +static void nf_flow_offload_gc_step(struct nf_flowtable *flow_table, + struct flow_offload *flow, void *data) { - struct dst_entry *dst; - - if (tuple->xmit_type == FLOW_OFFLOAD_XMIT_NEIGH || - tuple->xmit_type == FLOW_OFFLOAD_XMIT_XFRM) { - dst = tuple->dst_cache; - if (!dst_check(dst, tuple->dst_cookie)) - return true; - } - - return false; -} - -static bool nf_flow_has_stale_dst(struct flow_offload *flow) -{ - return flow_offload_stale_dst(&flow->tuplehash[FLOW_OFFLOAD_DIR_ORIGINAL].tuple) || - flow_offload_stale_dst(&flow->tuplehash[FLOW_OFFLOAD_DIR_REPLY].tuple); -} - -static void nf_flow_offload_gc_step(struct flow_offload *flow, void *data) -{ - struct nf_flowtable *flow_table = data; - if (nf_flow_has_expired(flow) || - nf_ct_is_dying(flow->ct) || - nf_flow_has_stale_dst(flow)) - set_bit(NF_FLOW_TEARDOWN, &flow->flags); + nf_ct_is_dying(flow->ct)) + flow_offload_teardown(flow); if (test_bit(NF_FLOW_TEARDOWN, &flow->flags)) { if (test_bit(NF_FLOW_HW, &flow->flags)) { @@ -479,7 +441,7 @@ struct nf_flowtable *flow_table; flow_table = container_of(work, struct nf_flowtable, gc_work.work); - nf_flow_table_iterate(flow_table, nf_flow_offload_gc_step, flow_table); + nf_flow_table_iterate(flow_table, nf_flow_offload_gc_step, NULL); queue_delayed_work(system_power_efficient_wq, &flow_table->gc_work, HZ); } @@ -595,7 +557,8 @@ } EXPORT_SYMBOL_GPL(nf_flow_table_init); -static void nf_flow_table_do_cleanup(struct flow_offload *flow, void *data) +static void nf_flow_table_do_cleanup(struct nf_flowtable *flow_table, + struct flow_offload *flow, void *data) { struct net_device *dev = data; @@ -637,11 +600,10 @@ cancel_delayed_work_sync(&flow_table->gc_work); nf_flow_table_iterate(flow_table, nf_flow_table_do_cleanup, NULL); - nf_flow_table_iterate(flow_table, nf_flow_offload_gc_step, flow_table); + nf_flow_table_iterate(flow_table, nf_flow_offload_gc_step, NULL); nf_flow_table_offload_flush(flow_table); if (nf_flowtable_hw_offload(flow_table)) - nf_flow_table_iterate(flow_table, nf_flow_offload_gc_step, - flow_table); + nf_flow_table_iterate(flow_table, nf_flow_offload_gc_step, NULL); rhashtable_destroy(&flow_table->rhashtable); } EXPORT_SYMBOL_GPL(nf_flow_table_free); diff -u linux-intel-iotg-5.15-5.15.0/net/netfilter/nf_flow_table_ip.c linux-intel-iotg-5.15-5.15.0/net/netfilter/nf_flow_table_ip.c --- linux-intel-iotg-5.15-5.15.0/net/netfilter/nf_flow_table_ip.c +++ linux-intel-iotg-5.15-5.15.0/net/netfilter/nf_flow_table_ip.c @@ -227,6 +227,15 @@ return true; } +static inline bool nf_flow_dst_check(struct flow_offload_tuple *tuple) +{ + if (tuple->xmit_type != FLOW_OFFLOAD_XMIT_NEIGH && + tuple->xmit_type != FLOW_OFFLOAD_XMIT_XFRM) + return true; + + return dst_check(tuple->dst_cache, tuple->dst_cookie); +} + static unsigned int nf_flow_xmit_xfrm(struct sk_buff *skb, const struct nf_hook_state *state, struct dst_entry *dst) @@ -346,6 +355,11 @@ if (nf_flow_state_check(flow, iph->protocol, skb, thoff)) return NF_ACCEPT; + if (!nf_flow_dst_check(&tuplehash->tuple)) { + flow_offload_teardown(flow); + return NF_ACCEPT; + } + if (skb_try_make_writable(skb, thoff + hdrsize)) return NF_DROP; @@ -582,6 +596,11 @@ if (nf_flow_state_check(flow, ip6h->nexthdr, skb, thoff)) return NF_ACCEPT; + if (!nf_flow_dst_check(&tuplehash->tuple)) { + flow_offload_teardown(flow); + return NF_ACCEPT; + } + if (skb_try_make_writable(skb, thoff + hdrsize)) return NF_DROP; diff -u linux-intel-iotg-5.15-5.15.0/net/netfilter/nf_tables_api.c linux-intel-iotg-5.15-5.15.0/net/netfilter/nf_tables_api.c --- linux-intel-iotg-5.15-5.15.0/net/netfilter/nf_tables_api.c +++ linux-intel-iotg-5.15-5.15.0/net/netfilter/nf_tables_api.c @@ -222,12 +222,18 @@ } static void nft_netdev_unregister_hooks(struct net *net, - struct list_head *hook_list) + struct list_head *hook_list, + bool release_netdev) { - struct nft_hook *hook; + struct nft_hook *hook, *next; - list_for_each_entry(hook, hook_list, list) + list_for_each_entry_safe(hook, next, hook_list, list) { nf_unregister_net_hook(net, &hook->ops); + if (release_netdev) { + list_del(&hook->list); + kfree_rcu(hook, rcu); + } + } } static int nf_tables_register_hook(struct net *net, @@ -253,9 +259,10 @@ return nf_register_net_hook(net, &basechain->ops); } -static void nf_tables_unregister_hook(struct net *net, - const struct nft_table *table, - struct nft_chain *chain) +static void __nf_tables_unregister_hook(struct net *net, + const struct nft_table *table, + struct nft_chain *chain, + bool release_netdev) { struct nft_base_chain *basechain; const struct nf_hook_ops *ops; @@ -270,11 +277,19 @@ return basechain->type->ops_unregister(net, ops); if (nft_base_chain_netdev(table->family, basechain->ops.hooknum)) - nft_netdev_unregister_hooks(net, &basechain->hook_list); + nft_netdev_unregister_hooks(net, &basechain->hook_list, + release_netdev); else nf_unregister_net_hook(net, &basechain->ops); } +static void nf_tables_unregister_hook(struct net *net, + const struct nft_table *table, + struct nft_chain *chain) +{ + return __nf_tables_unregister_hook(net, table, chain, false); +} + static void nft_trans_commit_list_add_tail(struct net *net, struct nft_trans *trans) { struct nftables_pernet *nft_net = nft_pernet(net); @@ -2362,6 +2377,7 @@ } static struct nft_chain *nft_chain_lookup_byid(const struct net *net, + const struct nft_table *table, const struct nlattr *nla) { struct nftables_pernet *nft_net = nft_pernet(net); @@ -2372,6 +2388,7 @@ struct nft_chain *chain = trans->ctx.chain; if (trans->msg_type == NFT_MSG_NEWCHAIN && + chain->table == table && id == nft_trans_chain_id(trans)) return chain; } @@ -2778,27 +2795,31 @@ err = nf_tables_expr_parse(ctx, nla, &expr_info); if (err < 0) - goto err1; + goto err_expr_parse; + + err = -EOPNOTSUPP; + if (!(expr_info.ops->type->flags & NFT_EXPR_STATEFUL)) + goto err_expr_stateful; err = -ENOMEM; expr = kzalloc(expr_info.ops->size, GFP_KERNEL); if (expr == NULL) - goto err2; + goto err_expr_stateful; err = nf_tables_newexpr(ctx, &expr_info, expr); if (err < 0) - goto err3; + goto err_expr_new; return expr; -err3: +err_expr_new: kfree(expr); -err2: +err_expr_stateful: owner = expr_info.ops->type->owner; if (expr_info.ops->type->release_ops) expr_info.ops->type->release_ops(expr_info.ops); module_put(owner); -err1: +err_expr_parse: return ERR_PTR(err); } @@ -3255,6 +3276,7 @@ } static struct nft_rule *nft_rule_lookup_byid(const struct net *net, + const struct nft_chain *chain, const struct nlattr *nla); #define NFT_RULE_MAXEXPRS 128 @@ -3301,7 +3323,7 @@ return -EOPNOTSUPP; } else if (nla[NFTA_RULE_CHAIN_ID]) { - chain = nft_chain_lookup_byid(net, nla[NFTA_RULE_CHAIN_ID]); + chain = nft_chain_lookup_byid(net, table, nla[NFTA_RULE_CHAIN_ID]); if (IS_ERR(chain)) { NL_SET_BAD_ATTR(extack, nla[NFTA_RULE_CHAIN_ID]); return PTR_ERR(chain); @@ -3343,7 +3365,7 @@ return PTR_ERR(old_rule); } } else if (nla[NFTA_RULE_POSITION_ID]) { - old_rule = nft_rule_lookup_byid(net, nla[NFTA_RULE_POSITION_ID]); + old_rule = nft_rule_lookup_byid(net, chain, nla[NFTA_RULE_POSITION_ID]); if (IS_ERR(old_rule)) { NL_SET_BAD_ATTR(extack, nla[NFTA_RULE_POSITION_ID]); return PTR_ERR(old_rule); @@ -3488,6 +3510,7 @@ } static struct nft_rule *nft_rule_lookup_byid(const struct net *net, + const struct nft_chain *chain, const struct nlattr *nla) { struct nftables_pernet *nft_net = nft_pernet(net); @@ -3498,6 +3521,7 @@ 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; } @@ -3547,7 +3571,7 @@ err = nft_delrule(&ctx, rule); } else if (nla[NFTA_RULE_ID]) { - rule = nft_rule_lookup_byid(net, nla[NFTA_RULE_ID]); + rule = nft_rule_lookup_byid(net, chain, nla[NFTA_RULE_ID]); if (IS_ERR(rule)) { NL_SET_BAD_ATTR(extack, nla[NFTA_RULE_ID]); return PTR_ERR(rule); @@ -3726,6 +3750,7 @@ } static struct nft_set *nft_set_lookup_byid(const struct net *net, + const struct nft_table *table, const struct nlattr *nla, u8 genmask) { struct nftables_pernet *nft_net = nft_pernet(net); @@ -3737,6 +3762,7 @@ struct nft_set *set = nft_trans_set(trans); if (id == nft_trans_set_id(trans) && + set->table == table && nft_active_genmask(set, genmask)) return set; } @@ -3757,7 +3783,7 @@ if (!nla_set_id) return set; - set = nft_set_lookup_byid(net, nla_set_id, genmask); + set = nft_set_lookup_byid(net, table, nla_set_id, genmask); } return set; } @@ -4147,6 +4173,9 @@ u32 len; int err; + if (desc->field_count >= ARRAY_SIZE(desc->field_len)) + return -E2BIG; + err = nla_parse_nested_deprecated(tb, NFTA_SET_FIELD_MAX, attr, nft_concat_policy, NULL); if (err < 0) @@ -4156,9 +4185,8 @@ return -EINVAL; len = ntohl(nla_get_be32(tb[NFTA_SET_FIELD_LEN])); - - if (len * BITS_PER_BYTE / 32 > NFT_REG32_COUNT) - return -E2BIG; + if (!len || len > U8_MAX) + return -EINVAL; desc->field_len[desc->field_count++] = len; @@ -4169,7 +4197,8 @@ const struct nlattr *nla) { struct nlattr *attr; - int rem, err; + u32 num_regs = 0; + int rem, err, i; nla_for_each_nested(attr, nla, rem) { if (nla_type(attr) != NFTA_LIST_ELEM) @@ -4180,6 +4209,12 @@ return err; } + for (i = 0; i < desc->field_count; i++) + num_regs += DIV_ROUND_UP(desc->field_len[i], sizeof(u32)); + + if (num_regs > NFT_REG32_COUNT) + return -E2BIG; + return 0; } @@ -5090,13 +5125,20 @@ struct nft_data *data, struct nlattr *attr) { + u32 dtype; int err; err = nft_data_init(ctx, data, NFT_DATA_VALUE_MAXLEN, desc, attr); if (err < 0) return err; - if (desc->type != NFT_DATA_VERDICT && desc->len != set->dlen) { + if (set->dtype == NFT_DATA_VERDICT) + dtype = NFT_DATA_VERDICT; + else + dtype = NFT_DATA_VALUE; + + if (dtype != desc->type || + set->dlen != desc->len) { nft_data_release(data, desc->type); return -EINVAL; } @@ -5318,9 +5360,6 @@ return expr; err = -EOPNOTSUPP; - if (!(expr->ops->type->flags & NFT_EXPR_STATEFUL)) - goto err_set_elem_expr; - if (expr->ops->type->flags & NFT_EXPR_GC) { if (set->flags & NFT_SET_TIMEOUT) goto err_set_elem_expr; @@ -7196,13 +7235,25 @@ FLOW_BLOCK_UNBIND); } -static void nft_unregister_flowtable_net_hooks(struct net *net, - struct list_head *hook_list) +static void __nft_unregister_flowtable_net_hooks(struct net *net, + struct list_head *hook_list, + bool release_netdev) { - struct nft_hook *hook; + struct nft_hook *hook, *next; - list_for_each_entry(hook, hook_list, list) + list_for_each_entry_safe(hook, next, hook_list, list) { nf_unregister_net_hook(net, &hook->ops); + if (release_netdev) { + list_del(&hook->list); + kfree_rcu(hook); + } + } +} + +static void nft_unregister_flowtable_net_hooks(struct net *net, + struct list_head *hook_list) +{ + __nft_unregister_flowtable_net_hooks(net, hook_list, false); } static int nft_register_flowtable_net_hooks(struct net *net, @@ -9383,7 +9434,7 @@ tb[NFTA_VERDICT_CHAIN], genmask); } else if (tb[NFTA_VERDICT_CHAIN_ID]) { - chain = nft_chain_lookup_byid(ctx->net, + chain = nft_chain_lookup_byid(ctx->net, ctx->table, tb[NFTA_VERDICT_CHAIN_ID]); if (IS_ERR(chain)) return PTR_ERR(chain); @@ -9595,9 +9646,10 @@ struct nft_chain *chain; list_for_each_entry(chain, &table->chains, list) - nf_tables_unregister_hook(net, table, chain); + __nf_tables_unregister_hook(net, table, chain, true); list_for_each_entry(flowtable, &table->flowtables, list) - nft_unregister_flowtable_net_hooks(net, &flowtable->hook_list); + __nft_unregister_flowtable_net_hooks(net, &flowtable->hook_list, + true); } static void __nft_release_hooks(struct net *net) @@ -9736,7 +9788,11 @@ static void __net_exit nf_tables_pre_exit_net(struct net *net) { + struct nftables_pernet *nft_net = nft_pernet(net); + + mutex_lock(&nft_net->commit_mutex); __nft_release_hooks(net); + mutex_unlock(&nft_net->commit_mutex); } static void __net_exit nf_tables_exit_net(struct net *net) diff -u linux-intel-iotg-5.15-5.15.0/net/netfilter/nft_ct.c linux-intel-iotg-5.15-5.15.0/net/netfilter/nft_ct.c --- linux-intel-iotg-5.15-5.15.0/net/netfilter/nft_ct.c +++ linux-intel-iotg-5.15-5.15.0/net/netfilter/nft_ct.c @@ -259,10 +259,13 @@ ct = this_cpu_read(nft_ct_pcpu_template); - if (likely(atomic_read(&ct->ct_general.use) == 1)) { + if (likely(refcount_read(&ct->ct_general.use) == 1)) { + refcount_inc(&ct->ct_general.use); nf_ct_zone_add(ct, &zone); } else { - /* previous skb got queued to userspace */ + /* previous skb got queued to userspace, allocate temporary + * one until percpu template can be reused. + */ ct = nf_ct_tmpl_alloc(nft_net(pkt), &zone, GFP_ATOMIC); if (!ct) { regs->verdict.code = NF_DROP; @@ -270,7 +273,6 @@ } } - atomic_inc(&ct->ct_general.use); nf_ct_set(skb, ct, IP_CT_NEW); } #endif @@ -375,7 +377,6 @@ return false; } - atomic_set(&tmp->ct_general.use, 1); per_cpu(nft_ct_pcpu_template, cpu) = tmp; } diff -u linux-intel-iotg-5.15-5.15.0/net/netfilter/nft_socket.c linux-intel-iotg-5.15-5.15.0/net/netfilter/nft_socket.c --- linux-intel-iotg-5.15-5.15.0/net/netfilter/nft_socket.c +++ linux-intel-iotg-5.15-5.15.0/net/netfilter/nft_socket.c @@ -53,6 +53,32 @@ } #endif +static struct sock *nft_socket_do_lookup(const struct nft_pktinfo *pkt) +{ + const struct net_device *indev = nft_in(pkt); + const struct sk_buff *skb = pkt->skb; + struct sock *sk = NULL; + + if (!indev) + return NULL; + + switch (nft_pf(pkt)) { + case NFPROTO_IPV4: + sk = nf_sk_lookup_slow_v4(nft_net(pkt), skb, indev); + break; +#if IS_ENABLED(CONFIG_NF_TABLES_IPV6) + case NFPROTO_IPV6: + sk = nf_sk_lookup_slow_v6(nft_net(pkt), skb, indev); + break; +#endif + default: + WARN_ON_ONCE(1); + break; + } + + return sk; +} + static void nft_socket_eval(const struct nft_expr *expr, struct nft_regs *regs, const struct nft_pktinfo *pkt) @@ -66,20 +92,7 @@ sk = NULL; if (!sk) - switch(nft_pf(pkt)) { - case NFPROTO_IPV4: - sk = nf_sk_lookup_slow_v4(nft_net(pkt), skb, nft_in(pkt)); - break; -#if IS_ENABLED(CONFIG_NF_TABLES_IPV6) - case NFPROTO_IPV6: - sk = nf_sk_lookup_slow_v6(nft_net(pkt), skb, nft_in(pkt)); - break; -#endif - default: - WARN_ON_ONCE(1); - regs->verdict.code = NFT_BREAK; - return; - } + sk = nft_socket_do_lookup(pkt); if (!sk) { regs->verdict.code = NFT_BREAK; @@ -197,6 +210,16 @@ return 0; } +static int nft_socket_validate(const struct nft_ctx *ctx, + const struct nft_expr *expr, + const struct nft_data **data) +{ + return nft_chain_validate_hooks(ctx->chain, + (1 << NF_INET_PRE_ROUTING) | + (1 << NF_INET_LOCAL_IN) | + (1 << NF_INET_LOCAL_OUT)); +} + static struct nft_expr_type nft_socket_type; static const struct nft_expr_ops nft_socket_ops = { .type = &nft_socket_type, @@ -204,6 +227,7 @@ .eval = nft_socket_eval, .init = nft_socket_init, .dump = nft_socket_dump, + .validate = nft_socket_validate, }; static struct nft_expr_type nft_socket_type __read_mostly = { diff -u linux-intel-iotg-5.15-5.15.0/net/netlink/af_netlink.c linux-intel-iotg-5.15-5.15.0/net/netlink/af_netlink.c --- linux-intel-iotg-5.15-5.15.0/net/netlink/af_netlink.c +++ linux-intel-iotg-5.15-5.15.0/net/netlink/af_netlink.c @@ -1996,7 +1996,6 @@ copied = len; } - skb_reset_transport_header(data_skb); err = skb_copy_datagram_msg(data_skb, 0, msg, copied); if (msg->msg_name) { @@ -2284,6 +2283,13 @@ * single netdev. The outcome is MSG_TRUNC error. */ skb_reserve(skb, skb_tailroom(skb) - alloc_size); + + /* Make sure malicious BPF programs can not read unitialized memory + * from skb->head -> skb->data + */ + skb_reset_network_header(skb); + skb_reset_mac_header(skb); + netlink_skb_set_owner_r(skb, sk); if (nlk->dump_done_errno > 0) { diff -u linux-intel-iotg-5.15-5.15.0/net/nfc/core.c linux-intel-iotg-5.15-5.15.0/net/nfc/core.c --- linux-intel-iotg-5.15-5.15.0/net/nfc/core.c +++ linux-intel-iotg-5.15-5.15.0/net/nfc/core.c @@ -38,7 +38,7 @@ device_lock(&dev->dev); - if (!device_is_registered(&dev->dev)) { + if (dev->shutting_down) { rc = -ENODEV; goto error; } @@ -94,7 +94,7 @@ device_lock(&dev->dev); - if (!device_is_registered(&dev->dev)) { + if (dev->shutting_down) { rc = -ENODEV; goto error; } @@ -142,7 +142,7 @@ device_lock(&dev->dev); - if (!device_is_registered(&dev->dev)) { + if (dev->shutting_down) { rc = -ENODEV; goto error; } @@ -207,7 +207,7 @@ device_lock(&dev->dev); - if (!device_is_registered(&dev->dev)) { + if (dev->shutting_down) { rc = -ENODEV; goto error; } @@ -246,7 +246,7 @@ device_lock(&dev->dev); - if (!device_is_registered(&dev->dev)) { + if (dev->shutting_down) { rc = -ENODEV; goto error; } @@ -291,7 +291,7 @@ device_lock(&dev->dev); - if (!device_is_registered(&dev->dev)) { + if (dev->shutting_down) { rc = -ENODEV; goto error; } @@ -335,7 +335,7 @@ device_lock(&dev->dev); - if (!device_is_registered(&dev->dev)) { + if (dev->shutting_down) { rc = -ENODEV; goto error; } @@ -401,7 +401,7 @@ device_lock(&dev->dev); - if (!device_is_registered(&dev->dev)) { + if (dev->shutting_down) { rc = -ENODEV; goto error; } @@ -448,7 +448,7 @@ device_lock(&dev->dev); - if (!device_is_registered(&dev->dev)) { + if (dev->shutting_down) { rc = -ENODEV; goto error; } @@ -495,7 +495,7 @@ device_lock(&dev->dev); - if (!device_is_registered(&dev->dev)) { + if (dev->shutting_down) { rc = -ENODEV; kfree_skb(skb); goto error; @@ -552,7 +552,7 @@ device_lock(&dev->dev); - if (!device_is_registered(&dev->dev)) { + if (dev->shutting_down) { rc = -ENODEV; goto error; } @@ -601,7 +601,7 @@ device_lock(&dev->dev); - if (!device_is_registered(&dev->dev)) { + if (dev->shutting_down) { rc = -ENODEV; goto error; } @@ -1134,6 +1134,7 @@ dev->rfkill = NULL; } } + dev->shutting_down = false; device_unlock(&dev->dev); rc = nfc_genl_device_added(dev); @@ -1165,13 +1166,12 @@ if (dev->rfkill) { rfkill_unregister(dev->rfkill); rfkill_destroy(dev->rfkill); + dev->rfkill = NULL; } + dev->shutting_down = true; device_unlock(&dev->dev); if (dev->ops->check_presence) { - device_lock(&dev->dev); - dev->shutting_down = true; - device_unlock(&dev->dev); del_timer_sync(&dev->check_pres_timer); cancel_work_sync(&dev->check_pres_work); } diff -u linux-intel-iotg-5.15-5.15.0/net/nfc/netlink.c linux-intel-iotg-5.15-5.15.0/net/nfc/netlink.c --- linux-intel-iotg-5.15-5.15.0/net/nfc/netlink.c +++ linux-intel-iotg-5.15-5.15.0/net/nfc/netlink.c @@ -1244,7 +1244,7 @@ struct sk_buff *msg; void *hdr; - msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL); + msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_ATOMIC); if (!msg) return -ENOMEM; @@ -1260,7 +1260,7 @@ genlmsg_end(msg, hdr); - genlmsg_multicast(&nfc_genl_family, msg, 0, 0, GFP_KERNEL); + genlmsg_multicast(&nfc_genl_family, msg, 0, 0, GFP_ATOMIC); return 0; diff -u linux-intel-iotg-5.15-5.15.0/net/openvswitch/actions.c linux-intel-iotg-5.15-5.15.0/net/openvswitch/actions.c --- linux-intel-iotg-5.15-5.15.0/net/openvswitch/actions.c +++ linux-intel-iotg-5.15-5.15.0/net/openvswitch/actions.c @@ -373,6 +373,7 @@ update_ip_l4_checksum(skb, nh, *addr, new_addr); csum_replace4(&nh->check, *addr, new_addr); skb_clear_hash(skb); + ovs_ct_clear(skb, NULL); *addr = new_addr; } @@ -420,6 +421,7 @@ update_ipv6_checksum(skb, l4_proto, addr, new_addr); skb_clear_hash(skb); + ovs_ct_clear(skb, NULL); memcpy(addr, new_addr, sizeof(__be32[4])); } @@ -660,6 +662,7 @@ static void set_tp_port(struct sk_buff *skb, __be16 *port, __be16 new_port, __sum16 *check) { + ovs_ct_clear(skb, NULL); inet_proto_csum_replace2(check, skb, *port, new_port, false); *port = new_port; } @@ -699,6 +702,7 @@ uh->dest = dst; flow_key->tp.src = src; flow_key->tp.dst = dst; + ovs_ct_clear(skb, NULL); } skb_clear_hash(skb); @@ -761,6 +765,8 @@ sh->checksum = old_csum ^ old_correct_csum ^ new_csum; skb_clear_hash(skb); + ovs_ct_clear(skb, NULL); + flow_key->tp.src = sh->source; flow_key->tp.dst = sh->dest; diff -u linux-intel-iotg-5.15-5.15.0/net/openvswitch/conntrack.c linux-intel-iotg-5.15-5.15.0/net/openvswitch/conntrack.c --- linux-intel-iotg-5.15-5.15.0/net/openvswitch/conntrack.c +++ linux-intel-iotg-5.15-5.15.0/net/openvswitch/conntrack.c @@ -1336,7 +1336,9 @@ nf_ct_put(ct); nf_ct_set(skb, NULL, IP_CT_UNTRACKED); - ovs_ct_fill_key(skb, key, false); + + if (key) + ovs_ct_fill_key(skb, key, false); return 0; } @@ -1722,7 +1724,6 @@ goto err_free_ct; __set_bit(IPS_CONFIRMED_BIT, &ct_info.ct->status); - nf_conntrack_get(&ct_info.ct->ct_general); return 0; err_free_ct: __ovs_ct_free_action(&ct_info); diff -u linux-intel-iotg-5.15-5.15.0/net/openvswitch/flow_netlink.c linux-intel-iotg-5.15-5.15.0/net/openvswitch/flow_netlink.c --- linux-intel-iotg-5.15-5.15.0/net/openvswitch/flow_netlink.c +++ linux-intel-iotg-5.15-5.15.0/net/openvswitch/flow_netlink.c @@ -2436,7 +2436,7 @@ new_acts_size = max(next_offset + req_size, ksize(*sfa) * 2); if (new_acts_size > MAX_ACTIONS_BUFSIZE) { - if ((MAX_ACTIONS_BUFSIZE - next_offset) < req_size) { + if ((next_offset + req_size) > MAX_ACTIONS_BUFSIZE) { OVS_NLERR(log, "Flow action size exceeds max %u", MAX_ACTIONS_BUFSIZE); return ERR_PTR(-EMSGSIZE); diff -u linux-intel-iotg-5.15-5.15.0/net/packet/af_packet.c linux-intel-iotg-5.15-5.15.0/net/packet/af_packet.c --- linux-intel-iotg-5.15-5.15.0/net/packet/af_packet.c +++ linux-intel-iotg-5.15-5.15.0/net/packet/af_packet.c @@ -2820,8 +2820,9 @@ status = TP_STATUS_SEND_REQUEST; err = po->xmit(skb); - if (unlikely(err > 0)) { - err = net_xmit_errno(err); + if (unlikely(err != 0)) { + if (err > 0) + err = net_xmit_errno(err); if (err && __packet_get_status(po, ph) == TP_STATUS_AVAILABLE) { /* skb was destructed already */ @@ -3022,8 +3023,12 @@ skb->no_fcs = 1; err = po->xmit(skb); - if (err > 0 && (err = net_xmit_errno(err)) != 0) - goto out_unlock; + if (unlikely(err != 0)) { + if (err > 0) + err = net_xmit_errno(err); + if (err) + goto out_unlock; + } dev_put(dev); diff -u linux-intel-iotg-5.15-5.15.0/net/rxrpc/ar-internal.h linux-intel-iotg-5.15-5.15.0/net/rxrpc/ar-internal.h --- linux-intel-iotg-5.15-5.15.0/net/rxrpc/ar-internal.h +++ linux-intel-iotg-5.15-5.15.0/net/rxrpc/ar-internal.h @@ -676,13 +676,12 @@ spinlock_t input_lock; /* Lock for packet input to this call */ - /* receive-phase ACK management */ + /* Receive-phase ACK management (ACKs we send). */ u8 ackr_reason; /* reason to ACK */ rxrpc_serial_t ackr_serial; /* serial of packet being ACK'd */ - rxrpc_serial_t ackr_first_seq; /* first sequence number received */ - rxrpc_seq_t ackr_prev_seq; /* previous sequence number received */ - rxrpc_seq_t ackr_consumed; /* Highest packet shown consumed */ - rxrpc_seq_t ackr_seen; /* Highest packet shown seen */ + rxrpc_seq_t ackr_highest_seq; /* Higest sequence number received */ + atomic_t ackr_nr_unacked; /* Number of unacked packets */ + atomic_t ackr_nr_consumed; /* Number of packets needing hard ACK */ /* RTT management */ rxrpc_serial_t rtt_serial[4]; /* Serial number of DATA or PING sent */ @@ -692,8 +691,10 @@ #define RXRPC_CALL_RTT_AVAIL_MASK 0xf #define RXRPC_CALL_RTT_PEND_SHIFT 8 - /* transmission-phase ACK management */ + /* Transmission-phase ACK management (ACKs we've received). */ ktime_t acks_latest_ts; /* Timestamp of latest ACK received */ + rxrpc_seq_t acks_first_seq; /* first sequence number received */ + rxrpc_seq_t acks_prev_seq; /* Highest previousPacket received */ rxrpc_seq_t acks_lowest_nak; /* Lowest NACK in the buffer (or ==tx_hard_ack) */ rxrpc_seq_t acks_lost_top; /* tx_top at the time lost-ack ping sent */ rxrpc_serial_t acks_lost_ping; /* Serial number of probe ACK */ diff -u linux-intel-iotg-5.15-5.15.0/net/rxrpc/call_event.c linux-intel-iotg-5.15-5.15.0/net/rxrpc/call_event.c --- linux-intel-iotg-5.15-5.15.0/net/rxrpc/call_event.c +++ linux-intel-iotg-5.15-5.15.0/net/rxrpc/call_event.c @@ -377,9 +377,9 @@ if (test_bit(RXRPC_CALL_RX_HEARD, &call->flags) && (int)call->conn->hi_serial - (int)call->rx_serial > 0) { trace_rxrpc_call_reset(call); - rxrpc_abort_call("EXP", call, 0, RX_USER_ABORT, -ECONNRESET); + rxrpc_abort_call("EXP", call, 0, RX_CALL_DEAD, -ECONNRESET); } else { - rxrpc_abort_call("EXP", call, 0, RX_USER_ABORT, -ETIME); + rxrpc_abort_call("EXP", call, 0, RX_CALL_TIMEOUT, -ETIME); } set_bit(RXRPC_CALL_EV_ABORT, &call->events); goto recheck_state; @@ -406,7 +406,8 @@ goto recheck_state; } - if (test_and_clear_bit(RXRPC_CALL_EV_RESEND, &call->events)) { + if (test_and_clear_bit(RXRPC_CALL_EV_RESEND, &call->events) && + call->state != RXRPC_CALL_CLIENT_RECV_REPLY) { rxrpc_resend(call, now); goto recheck_state; } diff -u linux-intel-iotg-5.15-5.15.0/net/rxrpc/net_ns.c linux-intel-iotg-5.15-5.15.0/net/rxrpc/net_ns.c --- linux-intel-iotg-5.15-5.15.0/net/rxrpc/net_ns.c +++ linux-intel-iotg-5.15-5.15.0/net/rxrpc/net_ns.c @@ -113,7 +113,9 @@ struct rxrpc_net *rxnet = rxrpc_net(net); rxnet->live = false; + del_timer_sync(&rxnet->peer_keepalive_timer); cancel_work_sync(&rxnet->peer_keepalive_work); + /* Remove the timer again as the worker may have restarted it. */ del_timer_sync(&rxnet->peer_keepalive_timer); rxrpc_destroy_all_calls(rxnet); rxrpc_destroy_all_connections(rxnet); diff -u linux-intel-iotg-5.15-5.15.0/net/rxrpc/output.c linux-intel-iotg-5.15-5.15.0/net/rxrpc/output.c --- linux-intel-iotg-5.15-5.15.0/net/rxrpc/output.c +++ linux-intel-iotg-5.15-5.15.0/net/rxrpc/output.c @@ -74,11 +74,18 @@ u8 reason) { rxrpc_serial_t serial; + unsigned int tmp; rxrpc_seq_t hard_ack, top, seq; int ix; u32 mtu, jmax; u8 *ackp = pkt->acks; + tmp = atomic_xchg(&call->ackr_nr_unacked, 0); + tmp |= atomic_xchg(&call->ackr_nr_consumed, 0); + if (!tmp && (reason == RXRPC_ACK_DELAY || + reason == RXRPC_ACK_IDLE)) + return 0; + /* Barrier against rxrpc_input_data(). */ serial = call->ackr_serial; hard_ack = READ_ONCE(call->rx_hard_ack); @@ -89,7 +96,7 @@ pkt->ack.bufferSpace = htons(8); pkt->ack.maxSkew = htons(0); pkt->ack.firstPacket = htonl(hard_ack + 1); - pkt->ack.previousPacket = htonl(call->ackr_prev_seq); + pkt->ack.previousPacket = htonl(call->ackr_highest_seq); pkt->ack.serial = htonl(serial); pkt->ack.reason = reason; pkt->ack.nAcks = top - hard_ack; @@ -223,6 +230,10 @@ n = rxrpc_fill_out_ack(conn, call, pkt, &hard_ack, &top, reason); spin_unlock_bh(&call->lock); + if (n == 0) { + kfree(pkt); + return 0; + } iov[0].iov_base = pkt; iov[0].iov_len = sizeof(pkt->whdr) + sizeof(pkt->ack) + n; @@ -259,13 +270,6 @@ ntohl(pkt->ack.serial), false, true, rxrpc_propose_ack_retry_tx); - } else { - spin_lock_bh(&call->lock); - if (after(hard_ack, call->ackr_consumed)) - call->ackr_consumed = hard_ack; - if (after(top, call->ackr_seen)) - call->ackr_seen = top; - spin_unlock_bh(&call->lock); } rxrpc_set_keepalive(call); diff -u linux-intel-iotg-5.15-5.15.0/net/sched/act_ct.c linux-intel-iotg-5.15-5.15.0/net/sched/act_ct.c --- linux-intel-iotg-5.15-5.15.0/net/sched/act_ct.c +++ linux-intel-iotg-5.15-5.15.0/net/sched/act_ct.c @@ -1232,7 +1232,6 @@ return -ENOMEM; } __set_bit(IPS_CONFIRMED_BIT, &tmpl->status); - nf_conntrack_get(&tmpl->ct_general); p->tmpl = tmpl; return 0; diff -u linux-intel-iotg-5.15-5.15.0/net/sched/cls_u32.c linux-intel-iotg-5.15-5.15.0/net/sched/cls_u32.c --- linux-intel-iotg-5.15-5.15.0/net/sched/cls_u32.c +++ linux-intel-iotg-5.15-5.15.0/net/sched/cls_u32.c @@ -814,10 +814,6 @@ new->flags = n->flags; RCU_INIT_POINTER(new->ht_down, ht); - /* bump reference count as long as we hold pointer to structure */ - if (ht) - ht->refcnt++; - #ifdef CONFIG_CLS_U32_PERF /* Statistics may be incremented by readers during update * so we must keep them in tact. When the node is later destroyed @@ -839,6 +835,10 @@ return NULL; } + /* bump reference count as long as we hold pointer to structure */ + if (ht) + ht->refcnt++; + return new; } diff -u linux-intel-iotg-5.15-5.15.0/net/smc/af_smc.c linux-intel-iotg-5.15-5.15.0/net/smc/af_smc.c --- linux-intel-iotg-5.15-5.15.0/net/smc/af_smc.c +++ linux-intel-iotg-5.15-5.15.0/net/smc/af_smc.c @@ -1351,6 +1351,8 @@ smc->sk.sk_state = SMC_CLOSED; if (rc == -EPIPE || rc == -EAGAIN) smc->sk.sk_err = EPIPE; + else if (rc == -ECONNREFUSED) + smc->sk.sk_err = ECONNREFUSED; else if (signal_pending(current)) smc->sk.sk_err = -sock_intr_errno(timeo); sock_put(&smc->sk); /* passive closing */ @@ -1409,9 +1411,9 @@ if (rc && rc != -EINPROGRESS) goto out; - sock_hold(&smc->sk); /* sock put in passive closing */ if (smc->use_fallback) goto out; + sock_hold(&smc->sk); /* sock put in passive closing */ if (flags & O_NONBLOCK) { if (queue_work(smc_hs_wq, &smc->connect_work)) smc->connect_nonblock = 1; @@ -2532,8 +2534,10 @@ if (smc->use_fallback) { rc = kernel_sock_shutdown(smc->clcsock, how); sk->sk_shutdown = smc->clcsock->sk->sk_shutdown; - if (sk->sk_shutdown == SHUTDOWN_MASK) + if (sk->sk_shutdown == SHUTDOWN_MASK) { sk->sk_state = SMC_CLOSED; + sock_put(sk); + } goto out; } switch (how) { diff -u linux-intel-iotg-5.15-5.15.0/net/sunrpc/clnt.c linux-intel-iotg-5.15-5.15.0/net/sunrpc/clnt.c --- linux-intel-iotg-5.15-5.15.0/net/sunrpc/clnt.c +++ linux-intel-iotg-5.15-5.15.0/net/sunrpc/clnt.c @@ -76,6 +76,7 @@ static int rpc_decode_header(struct rpc_task *task, struct xdr_stream *xdr); static int rpc_ping(struct rpc_clnt *clnt); +static int rpc_ping_noreply(struct rpc_clnt *clnt); static void rpc_check_timeout(struct rpc_task *task); static void rpc_register_client(struct rpc_clnt *clnt) @@ -483,6 +484,12 @@ rpc_shutdown_client(clnt); return ERR_PTR(err); } + } else if (args->flags & RPC_CLNT_CREATE_CONNECTED) { + int err = rpc_ping_noreply(clnt); + if (err != 0) { + rpc_shutdown_client(clnt); + return ERR_PTR(err); + } } clnt->cl_softrtry = 1; @@ -1065,10 +1072,13 @@ static void rpc_task_set_transport(struct rpc_task *task, struct rpc_clnt *clnt) { - if (task->tk_xprt && - !(test_bit(XPRT_OFFLINE, &task->tk_xprt->state) && - (task->tk_flags & RPC_TASK_MOVEABLE))) - return; + if (task->tk_xprt) { + if (!(test_bit(XPRT_OFFLINE, &task->tk_xprt->state) && + (task->tk_flags & RPC_TASK_MOVEABLE))) + return; + xprt_release(task); + xprt_put(task->tk_xprt); + } if (task->tk_flags & RPC_TASK_NO_ROUND_ROBIN) task->tk_xprt = rpc_task_get_first_xprt(clnt); else @@ -2701,6 +2711,10 @@ .p_decode = rpcproc_decode_null, }; +static const struct rpc_procinfo rpcproc_null_noreply = { + .p_encode = rpcproc_encode_null, +}; + static void rpc_null_call_prepare(struct rpc_task *task, void *data) { @@ -2754,6 +2768,28 @@ return status; } +static int rpc_ping_noreply(struct rpc_clnt *clnt) +{ + struct rpc_message msg = { + .rpc_proc = &rpcproc_null_noreply, + }; + struct rpc_task_setup task_setup_data = { + .rpc_client = clnt, + .rpc_message = &msg, + .callback_ops = &rpc_null_ops, + .flags = RPC_TASK_SOFT | RPC_TASK_SOFTCONN | RPC_TASK_NULLCREDS, + }; + struct rpc_task *task; + int status; + + task = rpc_run_task(&task_setup_data); + if (IS_ERR(task)) + return PTR_ERR(task); + status = task->tk_status; + rpc_put_task(task); + return status; +} + struct rpc_cb_add_xprt_calldata { struct rpc_xprt_switch *xps; struct rpc_xprt *xprt; diff -u linux-intel-iotg-5.15-5.15.0/net/sunrpc/xprt.c linux-intel-iotg-5.15-5.15.0/net/sunrpc/xprt.c --- linux-intel-iotg-5.15-5.15.0/net/sunrpc/xprt.c +++ linux-intel-iotg-5.15-5.15.0/net/sunrpc/xprt.c @@ -929,12 +929,7 @@ if (!xprt_lock_write(xprt, task)) return; - if (test_and_clear_bit(XPRT_CLOSE_WAIT, &xprt->state)) { - trace_xprt_disconnect_cleanup(xprt); - xprt->ops->close(xprt); - } - - if (!xprt_connected(xprt)) { + if (!xprt_connected(xprt) && !test_bit(XPRT_CLOSE_WAIT, &xprt->state)) { task->tk_rqstp->rq_connect_cookie = xprt->connect_cookie; rpc_sleep_on_timeout(&xprt->pending, task, NULL, xprt_request_timeout(task->tk_rqstp)); diff -u linux-intel-iotg-5.15-5.15.0/net/sunrpc/xprtsock.c linux-intel-iotg-5.15-5.15.0/net/sunrpc/xprtsock.c --- linux-intel-iotg-5.15-5.15.0/net/sunrpc/xprtsock.c +++ linux-intel-iotg-5.15-5.15.0/net/sunrpc/xprtsock.c @@ -880,7 +880,7 @@ /* Close the stream if the previous transmission was incomplete */ if (xs_send_request_was_aborted(transport, req)) { - xs_close(xprt); + xprt_force_disconnect(xprt); return -ENOTCONN; } @@ -918,7 +918,7 @@ -status); fallthrough; case -EPIPE: - xs_close(xprt); + xprt_force_disconnect(xprt); status = -ENOTCONN; } @@ -1205,6 +1205,16 @@ if (sk == NULL) return; + /* + * Make sure we're calling this in a context from which it is safe + * to call __fput_sync(). In practice that means rpciod and the + * system workqueue. + */ + if (!(current->flags & PF_WQ_WORKER)) { + WARN_ON_ONCE(1); + set_bit(XPRT_CLOSE_WAIT, &xprt->state); + return; + } if (atomic_read(&transport->xprt.swapper)) sk_clear_memalloc(sk); @@ -1228,7 +1238,7 @@ mutex_unlock(&transport->recv_mutex); trace_rpc_socket_close(xprt, sock); - fput(filp); + __fput_sync(filp); xprt_disconnect_done(xprt); } @@ -1949,6 +1959,9 @@ struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt); int ret; + if (transport->file) + goto force_disconnect; + if (RPC_IS_ASYNC(task)) { /* * We want the AF_LOCAL connect to be resolved in the @@ -1961,11 +1974,17 @@ */ task->tk_rpc_status = -ENOTCONN; rpc_exit(task, -ENOTCONN); - return; + goto out_wake; } ret = xs_local_setup_socket(transport); if (ret && !RPC_IS_SOFTCONN(task)) msleep_interruptible(15000); + return; +force_disconnect: + xprt_force_disconnect(xprt); +out_wake: + xprt_clear_connecting(xprt); + xprt_wake_pending_tasks(xprt, -ENOTCONN); } #if IS_ENABLED(CONFIG_SUNRPC_SWAP) @@ -2848,9 +2867,6 @@ } xprt_set_bound(xprt); xs_format_peer_addresses(xprt, "local", RPCBIND_NETID_LOCAL); - ret = ERR_PTR(xs_local_setup_socket(transport)); - if (ret) - goto out_err; break; default: ret = ERR_PTR(-EAFNOSUPPORT); diff -u linux-intel-iotg-5.15-5.15.0/net/wireless/nl80211.c linux-intel-iotg-5.15-5.15.0/net/wireless/nl80211.c --- linux-intel-iotg-5.15-5.15.0/net/wireless/nl80211.c +++ linux-intel-iotg-5.15-5.15.0/net/wireless/nl80211.c @@ -3080,6 +3080,15 @@ } else if (attrs[NL80211_ATTR_CHANNEL_WIDTH]) { chandef->width = nla_get_u32(attrs[NL80211_ATTR_CHANNEL_WIDTH]); + if (chandef->chan->band == NL80211_BAND_S1GHZ) { + /* User input error for channel width doesn't match channel */ + if (chandef->width != ieee80211_s1g_channel_width(chandef->chan)) { + NL_SET_ERR_MSG_ATTR(extack, + attrs[NL80211_ATTR_CHANNEL_WIDTH], + "bad channel width"); + return -EINVAL; + } + } if (attrs[NL80211_ATTR_CENTER_FREQ1]) { chandef->center_freq1 = nla_get_u32(attrs[NL80211_ATTR_CENTER_FREQ1]); @@ -3617,6 +3626,7 @@ wdev_lock(wdev); switch (wdev->iftype) { case NL80211_IFTYPE_AP: + case NL80211_IFTYPE_P2P_GO: if (wdev->ssid_len && nla_put(msg, NL80211_ATTR_SSID, wdev->ssid_len, wdev->ssid)) goto nla_put_failure_locked; @@ -11332,18 +11342,23 @@ struct cfg80211_bitrate_mask mask; struct cfg80211_registered_device *rdev = info->user_ptr[0]; struct net_device *dev = info->user_ptr[1]; + struct wireless_dev *wdev = dev->ieee80211_ptr; int err; if (!rdev->ops->set_bitrate_mask) return -EOPNOTSUPP; + wdev_lock(wdev); err = nl80211_parse_tx_bitrate_mask(info, info->attrs, NL80211_ATTR_TX_RATES, &mask, dev, true); if (err) - return err; + goto out; - return rdev_set_bitrate_mask(rdev, dev, NULL, &mask); + err = rdev_set_bitrate_mask(rdev, dev, NULL, &mask); +out: + wdev_unlock(wdev); + return err; } static int nl80211_register_mgmt(struct sk_buff *skb, struct genl_info *info) @@ -15921,8 +15936,7 @@ .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP, .doit = nl80211_color_change, .flags = GENL_UNS_ADMIN_PERM, - .internal_flags = NL80211_FLAG_NEED_NETDEV_UP | - NL80211_FLAG_NEED_RTNL, + .internal_flags = NL80211_FLAG_NEED_NETDEV_UP, }, }; diff -u linux-intel-iotg-5.15-5.15.0/net/wireless/reg.c linux-intel-iotg-5.15-5.15.0/net/wireless/reg.c --- linux-intel-iotg-5.15-5.15.0/net/wireless/reg.c +++ linux-intel-iotg-5.15-5.15.0/net/wireless/reg.c @@ -806,6 +806,8 @@ return 0; } +MODULE_FIRMWARE("regulatory.db.p7s"); + static bool regdb_has_valid_signature(const u8 *data, unsigned int size) { const struct firmware *sig; @@ -1077,6 +1079,8 @@ release_firmware(fw); } +MODULE_FIRMWARE("regulatory.db"); + static int query_regdb_file(const char *alpha2) { ASSERT_RTNL(); diff -u linux-intel-iotg-5.15-5.15.0/net/xdp/xsk.c linux-intel-iotg-5.15-5.15.0/net/xdp/xsk.c --- linux-intel-iotg-5.15-5.15.0/net/xdp/xsk.c +++ linux-intel-iotg-5.15-5.15.0/net/xdp/xsk.c @@ -655,7 +655,7 @@ if (sk_can_busy_loop(sk)) sk_busy_loop(sk, 1); /* only support non-blocking sockets */ - if (xsk_no_wakeup(sk)) + if (xs->zc && xsk_no_wakeup(sk)) return 0; pool = xs->pool; diff -u linux-intel-iotg-5.15-5.15.0/net/xfrm/xfrm_policy.c linux-intel-iotg-5.15-5.15.0/net/xfrm/xfrm_policy.c --- linux-intel-iotg-5.15-5.15.0/net/xfrm/xfrm_policy.c +++ linux-intel-iotg-5.15-5.15.0/net/xfrm/xfrm_policy.c @@ -3160,7 +3160,7 @@ nopol: if (!(dst_orig->dev->flags & IFF_LOOPBACK) && - !xfrm_default_allow(net, dir)) { + net->xfrm.policy_default[dir] == XFRM_USERPOLICY_BLOCK) { err = -EPERM; goto error; } @@ -3572,7 +3572,7 @@ } if (!pol) { - if (!xfrm_default_allow(net, dir)) { + if (net->xfrm.policy_default[dir] == XFRM_USERPOLICY_BLOCK) { XFRM_INC_STATS(net, LINUX_MIB_XFRMINNOPOLS); return 0; } @@ -3632,7 +3632,8 @@ } xfrm_nr = ti; - if (!xfrm_default_allow(net, dir) && !xfrm_nr) { + if (net->xfrm.policy_default[dir] == XFRM_USERPOLICY_BLOCK && + !xfrm_nr) { XFRM_INC_STATS(net, LINUX_MIB_XFRMINNOSTATES); goto reject; } @@ -4121,6 +4122,9 @@ spin_lock_init(&net->xfrm.xfrm_policy_lock); seqcount_spinlock_init(&net->xfrm.xfrm_policy_hash_generation, &net->xfrm.xfrm_policy_lock); mutex_init(&net->xfrm.xfrm_cfg_mutex); + net->xfrm.policy_default[XFRM_POLICY_IN] = XFRM_USERPOLICY_ACCEPT; + net->xfrm.policy_default[XFRM_POLICY_FWD] = XFRM_USERPOLICY_ACCEPT; + net->xfrm.policy_default[XFRM_POLICY_OUT] = XFRM_USERPOLICY_ACCEPT; rv = xfrm_statistics_init(net); if (rv < 0) diff -u linux-intel-iotg-5.15-5.15.0/net/xfrm/xfrm_user.c linux-intel-iotg-5.15-5.15.0/net/xfrm/xfrm_user.c --- linux-intel-iotg-5.15-5.15.0/net/xfrm/xfrm_user.c +++ linux-intel-iotg-5.15-5.15.0/net/xfrm/xfrm_user.c @@ -1993,12 +1993,9 @@ } up = nlmsg_data(nlh); - up->in = net->xfrm.policy_default & XFRM_POL_DEFAULT_IN ? - XFRM_USERPOLICY_BLOCK : XFRM_USERPOLICY_ACCEPT; - up->fwd = net->xfrm.policy_default & XFRM_POL_DEFAULT_FWD ? - XFRM_USERPOLICY_BLOCK : XFRM_USERPOLICY_ACCEPT; - up->out = net->xfrm.policy_default & XFRM_POL_DEFAULT_OUT ? - XFRM_USERPOLICY_BLOCK : XFRM_USERPOLICY_ACCEPT; + up->in = net->xfrm.policy_default[XFRM_POLICY_IN]; + up->fwd = net->xfrm.policy_default[XFRM_POLICY_FWD]; + up->out = net->xfrm.policy_default[XFRM_POLICY_OUT]; nlmsg_end(skb, nlh); @@ -2009,26 +2006,26 @@ return err; } +static bool xfrm_userpolicy_is_valid(__u8 policy) +{ + return policy == XFRM_USERPOLICY_BLOCK || + policy == XFRM_USERPOLICY_ACCEPT; +} + static int xfrm_set_default(struct sk_buff *skb, struct nlmsghdr *nlh, struct nlattr **attrs) { struct net *net = sock_net(skb->sk); struct xfrm_userpolicy_default *up = nlmsg_data(nlh); - if (up->in == XFRM_USERPOLICY_BLOCK) - net->xfrm.policy_default |= XFRM_POL_DEFAULT_IN; - else if (up->in == XFRM_USERPOLICY_ACCEPT) - net->xfrm.policy_default &= ~XFRM_POL_DEFAULT_IN; - - if (up->fwd == XFRM_USERPOLICY_BLOCK) - net->xfrm.policy_default |= XFRM_POL_DEFAULT_FWD; - else if (up->fwd == XFRM_USERPOLICY_ACCEPT) - net->xfrm.policy_default &= ~XFRM_POL_DEFAULT_FWD; - - if (up->out == XFRM_USERPOLICY_BLOCK) - net->xfrm.policy_default |= XFRM_POL_DEFAULT_OUT; - else if (up->out == XFRM_USERPOLICY_ACCEPT) - net->xfrm.policy_default &= ~XFRM_POL_DEFAULT_OUT; + if (xfrm_userpolicy_is_valid(up->in)) + net->xfrm.policy_default[XFRM_POLICY_IN] = up->in; + + if (xfrm_userpolicy_is_valid(up->fwd)) + net->xfrm.policy_default[XFRM_POLICY_FWD] = up->fwd; + + if (xfrm_userpolicy_is_valid(up->out)) + net->xfrm.policy_default[XFRM_POLICY_OUT] = up->out; rt_genid_bump_all(net); @@ -2058,13 +2055,9 @@ } r_up = nlmsg_data(r_nlh); - - r_up->in = net->xfrm.policy_default & XFRM_POL_DEFAULT_IN ? - XFRM_USERPOLICY_BLOCK : XFRM_USERPOLICY_ACCEPT; - r_up->fwd = net->xfrm.policy_default & XFRM_POL_DEFAULT_FWD ? - XFRM_USERPOLICY_BLOCK : XFRM_USERPOLICY_ACCEPT; - r_up->out = net->xfrm.policy_default & XFRM_POL_DEFAULT_OUT ? - XFRM_USERPOLICY_BLOCK : XFRM_USERPOLICY_ACCEPT; + r_up->in = net->xfrm.policy_default[XFRM_POLICY_IN]; + r_up->fwd = net->xfrm.policy_default[XFRM_POLICY_FWD]; + r_up->out = net->xfrm.policy_default[XFRM_POLICY_OUT]; nlmsg_end(r_skb, r_nlh); return nlmsg_unicast(net->xfrm.nlsk, r_skb, portid); diff -u linux-intel-iotg-5.15-5.15.0/samples/bpf/Makefile linux-intel-iotg-5.15-5.15.0/samples/bpf/Makefile --- linux-intel-iotg-5.15-5.15.0/samples/bpf/Makefile +++ linux-intel-iotg-5.15-5.15.0/samples/bpf/Makefile @@ -365,16 +365,15 @@ $(obj)/vmlinux.h: $(VMLINUX_BTF) $(BPFTOOL) ifeq ($(VMLINUX_H),) +ifeq ($(VMLINUX_BTF),) + $(error Cannot find a vmlinux for VMLINUX_BTF at any of "$(VMLINUX_BTF_PATHS)",\ + build the kernel or set VMLINUX_BTF or VMLINUX_H variable) +endif $(Q)$(BPFTOOL) btf dump file $(VMLINUX_BTF) format c > $@ else $(Q)cp "$(VMLINUX_H)" $@ endif -ifeq ($(VMLINUX_BTF),) - $(error Cannot find a vmlinux for VMLINUX_BTF at any of "$(VMLINUX_BTF_PATHS)",\ - build the kernel or set VMLINUX_BTF variable) -endif - clean-files += vmlinux.h # Get Clang's default includes on this system, as opposed to those seen by diff -u linux-intel-iotg-5.15-5.15.0/samples/ftrace/ftrace-direct-modify.c linux-intel-iotg-5.15-5.15.0/samples/ftrace/ftrace-direct-modify.c --- linux-intel-iotg-5.15-5.15.0/samples/ftrace/ftrace-direct-modify.c +++ linux-intel-iotg-5.15-5.15.0/samples/ftrace/ftrace-direct-modify.c @@ -31,7 +31,7 @@ " call my_direct_func1\n" " leave\n" " .size my_tramp1, .-my_tramp1\n" -" ret\n" + ASM_RET " .type my_tramp2, @function\n" " .globl my_tramp2\n" " my_tramp2:" @@ -39,7 +39,7 @@ " movq %rsp, %rbp\n" " call my_direct_func2\n" " leave\n" -" ret\n" + ASM_RET " .size my_tramp2, .-my_tramp2\n" " .popsection\n" ); diff -u linux-intel-iotg-5.15-5.15.0/samples/ftrace/ftrace-direct-too.c linux-intel-iotg-5.15-5.15.0/samples/ftrace/ftrace-direct-too.c --- linux-intel-iotg-5.15-5.15.0/samples/ftrace/ftrace-direct-too.c +++ linux-intel-iotg-5.15-5.15.0/samples/ftrace/ftrace-direct-too.c @@ -31,7 +31,7 @@ " popq %rsi\n" " popq %rdi\n" " leave\n" -" ret\n" + ASM_RET " .size my_tramp, .-my_tramp\n" " .popsection\n" ); diff -u linux-intel-iotg-5.15-5.15.0/samples/ftrace/ftrace-direct.c linux-intel-iotg-5.15-5.15.0/samples/ftrace/ftrace-direct.c --- linux-intel-iotg-5.15-5.15.0/samples/ftrace/ftrace-direct.c +++ linux-intel-iotg-5.15-5.15.0/samples/ftrace/ftrace-direct.c @@ -24,7 +24,7 @@ " call my_direct_func\n" " popq %rdi\n" " leave\n" -" ret\n" + ASM_RET " .size my_tramp, .-my_tramp\n" " .popsection\n" ); diff -u linux-intel-iotg-5.15-5.15.0/samples/landlock/sandboxer.c linux-intel-iotg-5.15-5.15.0/samples/landlock/sandboxer.c --- linux-intel-iotg-5.15-5.15.0/samples/landlock/sandboxer.c +++ linux-intel-iotg-5.15-5.15.0/samples/landlock/sandboxer.c @@ -22,9 +22,9 @@ #include #ifndef landlock_create_ruleset -static inline int landlock_create_ruleset( - const struct landlock_ruleset_attr *const attr, - const size_t size, const __u32 flags) +static inline int +landlock_create_ruleset(const struct landlock_ruleset_attr *const attr, + const size_t size, const __u32 flags) { return syscall(__NR_landlock_create_ruleset, attr, size, flags); } @@ -32,17 +32,18 @@ #ifndef landlock_add_rule static inline int landlock_add_rule(const int ruleset_fd, - const enum landlock_rule_type rule_type, - const void *const rule_attr, const __u32 flags) + const enum landlock_rule_type rule_type, + const void *const rule_attr, + const __u32 flags) { - return syscall(__NR_landlock_add_rule, ruleset_fd, rule_type, - rule_attr, flags); + return syscall(__NR_landlock_add_rule, ruleset_fd, rule_type, rule_attr, + flags); } #endif #ifndef landlock_restrict_self static inline int landlock_restrict_self(const int ruleset_fd, - const __u32 flags) + const __u32 flags) { return syscall(__NR_landlock_restrict_self, ruleset_fd, flags); } @@ -70,14 +71,17 @@ return num_paths; } +/* clang-format off */ + #define ACCESS_FILE ( \ LANDLOCK_ACCESS_FS_EXECUTE | \ LANDLOCK_ACCESS_FS_WRITE_FILE | \ LANDLOCK_ACCESS_FS_READ_FILE) -static int populate_ruleset( - const char *const env_var, const int ruleset_fd, - const __u64 allowed_access) +/* clang-format on */ + +static int populate_ruleset(const char *const env_var, const int ruleset_fd, + const __u64 allowed_access) { int num_paths, i, ret = 1; char *env_path_name; @@ -107,12 +111,10 @@ for (i = 0; i < num_paths; i++) { struct stat statbuf; - path_beneath.parent_fd = open(path_list[i], O_PATH | - O_CLOEXEC); + path_beneath.parent_fd = open(path_list[i], O_PATH | O_CLOEXEC); if (path_beneath.parent_fd < 0) { fprintf(stderr, "Failed to open \"%s\": %s\n", - path_list[i], - strerror(errno)); + path_list[i], strerror(errno)); goto out_free_name; } if (fstat(path_beneath.parent_fd, &statbuf)) { @@ -123,9 +125,10 @@ if (!S_ISDIR(statbuf.st_mode)) path_beneath.allowed_access &= ACCESS_FILE; if (landlock_add_rule(ruleset_fd, LANDLOCK_RULE_PATH_BENEATH, - &path_beneath, 0)) { - fprintf(stderr, "Failed to update the ruleset with \"%s\": %s\n", - path_list[i], strerror(errno)); + &path_beneath, 0)) { + fprintf(stderr, + "Failed to update the ruleset with \"%s\": %s\n", + path_list[i], strerror(errno)); close(path_beneath.parent_fd); goto out_free_name; } @@ -139,6 +142,8 @@ return ret; } +/* clang-format off */ + #define ACCESS_FS_ROUGHLY_READ ( \ LANDLOCK_ACCESS_FS_EXECUTE | \ LANDLOCK_ACCESS_FS_READ_FILE | \ @@ -156,6 +161,8 @@ LANDLOCK_ACCESS_FS_MAKE_BLOCK | \ LANDLOCK_ACCESS_FS_MAKE_SYM) +/* clang-format on */ + int main(const int argc, char *const argv[], char *const *const envp) { const char *cmd_path; @@ -163,55 +170,64 @@ int ruleset_fd; struct landlock_ruleset_attr ruleset_attr = { .handled_access_fs = ACCESS_FS_ROUGHLY_READ | - ACCESS_FS_ROUGHLY_WRITE, + ACCESS_FS_ROUGHLY_WRITE, }; if (argc < 2) { - fprintf(stderr, "usage: %s=\"...\" %s=\"...\" %s [args]...\n\n", - ENV_FS_RO_NAME, ENV_FS_RW_NAME, argv[0]); - fprintf(stderr, "Launch a command in a restricted environment.\n\n"); + fprintf(stderr, + "usage: %s=\"...\" %s=\"...\" %s [args]...\n\n", + ENV_FS_RO_NAME, ENV_FS_RW_NAME, argv[0]); + fprintf(stderr, + "Launch a command in a restricted environment.\n\n"); fprintf(stderr, "Environment variables containing paths, " "each separated by a colon:\n"); - fprintf(stderr, "* %s: list of paths allowed to be used in a read-only way.\n", - ENV_FS_RO_NAME); - fprintf(stderr, "* %s: list of paths allowed to be used in a read-write way.\n", - ENV_FS_RW_NAME); - fprintf(stderr, "\nexample:\n" - "%s=\"/bin:/lib:/usr:/proc:/etc:/dev/urandom\" " - "%s=\"/dev/null:/dev/full:/dev/zero:/dev/pts:/tmp\" " - "%s bash -i\n", - ENV_FS_RO_NAME, ENV_FS_RW_NAME, argv[0]); + fprintf(stderr, + "* %s: list of paths allowed to be used in a read-only way.\n", + ENV_FS_RO_NAME); + fprintf(stderr, + "* %s: list of paths allowed to be used in a read-write way.\n", + ENV_FS_RW_NAME); + fprintf(stderr, + "\nexample:\n" + "%s=\"/bin:/lib:/usr:/proc:/etc:/dev/urandom\" " + "%s=\"/dev/null:/dev/full:/dev/zero:/dev/pts:/tmp\" " + "%s bash -i\n", + ENV_FS_RO_NAME, ENV_FS_RW_NAME, argv[0]); return 1; } - ruleset_fd = landlock_create_ruleset(&ruleset_attr, sizeof(ruleset_attr), 0); + ruleset_fd = + landlock_create_ruleset(&ruleset_attr, sizeof(ruleset_attr), 0); if (ruleset_fd < 0) { const int err = errno; perror("Failed to create a ruleset"); switch (err) { case ENOSYS: - fprintf(stderr, "Hint: Landlock is not supported by the current kernel. " - "To support it, build the kernel with " - "CONFIG_SECURITY_LANDLOCK=y and prepend " - "\"landlock,\" to the content of CONFIG_LSM.\n"); + fprintf(stderr, + "Hint: Landlock is not supported by the current kernel. " + "To support it, build the kernel with " + "CONFIG_SECURITY_LANDLOCK=y and prepend " + "\"landlock,\" to the content of CONFIG_LSM.\n"); break; case EOPNOTSUPP: - fprintf(stderr, "Hint: Landlock is currently disabled. " - "It can be enabled in the kernel configuration by " - "prepending \"landlock,\" to the content of CONFIG_LSM, " - "or at boot time by setting the same content to the " - "\"lsm\" kernel parameter.\n"); + fprintf(stderr, + "Hint: Landlock is currently disabled. " + "It can be enabled in the kernel configuration by " + "prepending \"landlock,\" to the content of CONFIG_LSM, " + "or at boot time by setting the same content to the " + "\"lsm\" kernel parameter.\n"); break; } return 1; } if (populate_ruleset(ENV_FS_RO_NAME, ruleset_fd, - ACCESS_FS_ROUGHLY_READ)) { + ACCESS_FS_ROUGHLY_READ)) { goto err_close_ruleset; } if (populate_ruleset(ENV_FS_RW_NAME, ruleset_fd, - ACCESS_FS_ROUGHLY_READ | ACCESS_FS_ROUGHLY_WRITE)) { + ACCESS_FS_ROUGHLY_READ | + ACCESS_FS_ROUGHLY_WRITE)) { goto err_close_ruleset; } if (prctl(PR_SET_NO_NEW_PRIVS, 1, 0, 0, 0)) { @@ -228,7 +244,7 @@ cmd_argv = argv + 1; execvpe(cmd_path, cmd_argv, envp); fprintf(stderr, "Failed to execute \"%s\": %s\n", cmd_path, - strerror(errno)); + strerror(errno)); fprintf(stderr, "Hint: access to the binary, the interpreter or " "shared libraries may be denied.\n"); return 1; diff -u linux-intel-iotg-5.15-5.15.0/scripts/Makefile.build linux-intel-iotg-5.15-5.15.0/scripts/Makefile.build --- linux-intel-iotg-5.15-5.15.0/scripts/Makefile.build +++ linux-intel-iotg-5.15-5.15.0/scripts/Makefile.build @@ -224,6 +224,18 @@ endif # CONFIG_FTRACE_MCOUNT_USE_RECORDMCOUNT ifdef CONFIG_STACK_VALIDATION + +objtool_args = \ + $(if $(CONFIG_UNWINDER_ORC),orc generate,check) \ + $(if $(part-of-module), --module) \ + $(if $(CONFIG_FRAME_POINTER),, --no-fp) \ + $(if $(CONFIG_GCOV_KERNEL)$(CONFIG_LTO_CLANG), --no-unreachable)\ + $(if $(CONFIG_RETPOLINE), --retpoline) \ + $(if $(CONFIG_RETHUNK), --rethunk) \ + $(if $(CONFIG_X86_SMAP), --uaccess) \ + $(if $(CONFIG_FTRACE_MCOUNT_USE_OBJTOOL), --mcount) \ + $(if $(CONFIG_SLS), --sls) + ifndef CONFIG_LTO_CLANG __objtool_obj := $(objtree)/tools/objtool/objtool diff -u linux-intel-iotg-5.15-5.15.0/scripts/link-vmlinux.sh linux-intel-iotg-5.15-5.15.0/scripts/link-vmlinux.sh --- linux-intel-iotg-5.15-5.15.0/scripts/link-vmlinux.sh +++ linux-intel-iotg-5.15-5.15.0/scripts/link-vmlinux.sh @@ -120,6 +120,9 @@ if [ -n "${CONFIG_VMLINUX_VALIDATION}" ]; then objtoolopt="${objtoolopt} --noinstr" + if is_enabled CONFIG_CPU_UNRET_ENTRY; then + objtoolopt="${objtoolopt} --unret" + fi fi if [ -n "${objtoolopt}" ]; then @@ -139,6 +142,9 @@ if [ -n "${CONFIG_X86_SMAP}" ]; then objtoolopt="${objtoolopt} --uaccess" fi + if [ -n "${CONFIG_SLS}" ]; then + objtoolopt="${objtoolopt} --sls" + fi info OBJTOOL ${1} tools/objtool/objtool ${objtoolcmd} ${objtoolopt} ${1} fi diff -u linux-intel-iotg-5.15-5.15.0/security/Kconfig linux-intel-iotg-5.15-5.15.0/security/Kconfig --- linux-intel-iotg-5.15-5.15.0/security/Kconfig +++ linux-intel-iotg-5.15-5.15.0/security/Kconfig @@ -63,17 +63,6 @@ implement socket and networking access controls. If you are unsure how to answer this question, answer N. -config PAGE_TABLE_ISOLATION - bool "Remove the kernel mapping in user mode" - default y - depends on (X86_64 || X86_PAE) && !UML - help - This feature reduces the number of hardware side channels by - ensuring that the majority of kernel addresses are not mapped - into userspace. - - See Documentation/x86/pti.rst for more details. - config SECURITY_INFINIBAND bool "Infiniband Security Hooks" depends on SECURITY && INFINIBAND diff -u linux-intel-iotg-5.15-5.15.0/security/integrity/platform_certs/load_uefi.c linux-intel-iotg-5.15-5.15.0/security/integrity/platform_certs/load_uefi.c --- linux-intel-iotg-5.15-5.15.0/security/integrity/platform_certs/load_uefi.c +++ linux-intel-iotg-5.15-5.15.0/security/integrity/platform_certs/load_uefi.c @@ -3,6 +3,7 @@ #include #include #include +#include #include #include #include @@ -12,6 +13,31 @@ #include "keyring_handler.h" /* + * On T2 Macs reading the db and dbx efi variables to load UEFI Secure Boot + * certificates causes occurrence of a page fault in Apple's firmware and + * a crash disabling EFI runtime services. The following quirk skips reading + * these variables. + */ +static const struct dmi_system_id uefi_skip_cert[] = { + { UEFI_QUIRK_SKIP_CERT("Apple Inc.", "MacBookPro15,1") }, + { UEFI_QUIRK_SKIP_CERT("Apple Inc.", "MacBookPro15,2") }, + { UEFI_QUIRK_SKIP_CERT("Apple Inc.", "MacBookPro15,3") }, + { UEFI_QUIRK_SKIP_CERT("Apple Inc.", "MacBookPro15,4") }, + { UEFI_QUIRK_SKIP_CERT("Apple Inc.", "MacBookPro16,1") }, + { UEFI_QUIRK_SKIP_CERT("Apple Inc.", "MacBookPro16,2") }, + { UEFI_QUIRK_SKIP_CERT("Apple Inc.", "MacBookPro16,3") }, + { UEFI_QUIRK_SKIP_CERT("Apple Inc.", "MacBookPro16,4") }, + { UEFI_QUIRK_SKIP_CERT("Apple Inc.", "MacBookAir8,1") }, + { UEFI_QUIRK_SKIP_CERT("Apple Inc.", "MacBookAir8,2") }, + { UEFI_QUIRK_SKIP_CERT("Apple Inc.", "MacBookAir9,1") }, + { UEFI_QUIRK_SKIP_CERT("Apple Inc.", "MacMini8,1") }, + { UEFI_QUIRK_SKIP_CERT("Apple Inc.", "MacPro7,1") }, + { UEFI_QUIRK_SKIP_CERT("Apple Inc.", "iMac20,1") }, + { UEFI_QUIRK_SKIP_CERT("Apple Inc.", "iMac20,2") }, + { } +}; + +/* * Look to see if a UEFI variable called MokIgnoreDB exists and return true if * it does. * @@ -153,6 +179,13 @@ unsigned long dbsize = 0, dbxsize = 0; efi_status_t status; int rc = 0; + const struct dmi_system_id *dmi_id; + + dmi_id = dmi_first_match(uefi_skip_cert); + if (dmi_id) { + pr_err("Reading UEFI Secure Boot Certs is not supported on T2 Macs.\n"); + return false; + } if (!efi_rt_services_supported(EFI_RT_SUPPORTED_GET_VARIABLE)) return false; diff -u linux-intel-iotg-5.15-5.15.0/security/landlock/cred.c linux-intel-iotg-5.15-5.15.0/security/landlock/cred.c --- linux-intel-iotg-5.15-5.15.0/security/landlock/cred.c +++ linux-intel-iotg-5.15-5.15.0/security/landlock/cred.c @@ -20,7 +20,7 @@ }; static int hook_cred_prepare(struct cred *const new, - const struct cred *const old, const gfp_t gfp) + const struct cred *const old, const gfp_t gfp) { struct landlock_ruleset *const old_dom = landlock_cred(old)->domain; @@ -49,3 +49,3 @@ security_add_hooks(landlock_hooks, ARRAY_SIZE(landlock_hooks), - &landlock_lsmid); + &landlock_lsmid); } diff -u linux-intel-iotg-5.15-5.15.0/security/landlock/fs.c linux-intel-iotg-5.15-5.15.0/security/landlock/fs.c --- linux-intel-iotg-5.15-5.15.0/security/landlock/fs.c +++ linux-intel-iotg-5.15-5.15.0/security/landlock/fs.c @@ -146,23 +146,26 @@ } /* All access rights that can be tied to files. */ +/* clang-format off */ #define ACCESS_FILE ( \ LANDLOCK_ACCESS_FS_EXECUTE | \ LANDLOCK_ACCESS_FS_WRITE_FILE | \ LANDLOCK_ACCESS_FS_READ_FILE) +/* clang-format on */ /* * @path: Should have been checked by get_path_from_fd(). */ int landlock_append_fs_rule(struct landlock_ruleset *const ruleset, - const struct path *const path, u32 access_rights) + const struct path *const path, + access_mask_t access_rights) { int err; struct landlock_object *object; /* Files only get access rights that make sense. */ - if (!d_is_dir(path->dentry) && (access_rights | ACCESS_FILE) != - ACCESS_FILE) + if (!d_is_dir(path->dentry) && + (access_rights | ACCESS_FILE) != ACCESS_FILE) return -EINVAL; if (WARN_ON_ONCE(ruleset->num_layers != 1)) return -EINVAL; @@ -185,59 +188,93 @@ /* Access-control management */ -static inline u64 unmask_layers( - const struct landlock_ruleset *const domain, - const struct path *const path, const u32 access_request, - u64 layer_mask) +/* + * The lifetime of the returned rule is tied to @domain. + * + * Returns NULL if no rule is found or if @dentry is negative. + */ +static inline const struct landlock_rule * +find_rule(const struct landlock_ruleset *const domain, + const struct dentry *const dentry) { const struct landlock_rule *rule; const struct inode *inode; - size_t i; - if (d_is_negative(path->dentry)) - /* Ignore nonexistent leafs. */ - return layer_mask; - inode = d_backing_inode(path->dentry); + /* Ignores nonexistent leafs. */ + if (d_is_negative(dentry)) + return NULL; + + inode = d_backing_inode(dentry); rcu_read_lock(); - rule = landlock_find_rule(domain, - rcu_dereference(landlock_inode(inode)->object)); + rule = landlock_find_rule( + domain, rcu_dereference(landlock_inode(inode)->object)); rcu_read_unlock(); + return rule; +} + +/* + * @layer_masks is read and may be updated according to the access request and + * the matching rule. + * + * Returns true if the request is allowed (i.e. relevant layer masks for the + * request are empty). + */ +static inline bool +unmask_layers(const struct landlock_rule *const rule, + const access_mask_t access_request, + layer_mask_t (*const layer_masks)[LANDLOCK_NUM_ACCESS_FS]) +{ + size_t layer_level; + + if (!access_request || !layer_masks) + return true; if (!rule) - return layer_mask; + return false; /* * An access is granted if, for each policy layer, at least one rule - * encountered on the pathwalk grants the requested accesses, - * regardless of their position in the layer stack. We must then check + * encountered on the pathwalk grants the requested access, + * regardless of its position in the layer stack. We must then check * the remaining layers for each inode, from the first added layer to - * the last one. + * the last one. When there is multiple requested accesses, for each + * policy layer, the full set of requested accesses may not be granted + * by only one rule, but by the union (binary OR) of multiple rules. + * E.g. /a/b + /a => /a/b */ - for (i = 0; i < rule->num_layers; i++) { - const struct landlock_layer *const layer = &rule->layers[i]; - const u64 layer_level = BIT_ULL(layer->level - 1); - - /* Checks that the layer grants access to the full request. */ - if ((layer->access & access_request) == access_request) { - layer_mask &= ~layer_level; - - if (layer_mask == 0) - return layer_mask; + for (layer_level = 0; layer_level < rule->num_layers; layer_level++) { + const struct landlock_layer *const layer = + &rule->layers[layer_level]; + const layer_mask_t layer_bit = BIT_ULL(layer->level - 1); + const unsigned long access_req = access_request; + unsigned long access_bit; + bool is_empty; + + /* + * Records in @layer_masks which layer grants access to each + * requested access. + */ + is_empty = true; + for_each_set_bit(access_bit, &access_req, + ARRAY_SIZE(*layer_masks)) { + if (layer->access & BIT_ULL(access_bit)) + (*layer_masks)[access_bit] &= ~layer_bit; + is_empty = is_empty && !(*layer_masks)[access_bit]; } + if (is_empty) + return true; } - return layer_mask; + return false; } static int check_access_path(const struct landlock_ruleset *const domain, - const struct path *const path, u32 access_request) + const struct path *const path, + const access_mask_t access_request) { - bool allowed = false; + layer_mask_t layer_masks[LANDLOCK_NUM_ACCESS_FS] = {}; + bool allowed = false, has_access = false; struct path walker_path; - u64 layer_mask; size_t i; - /* Make sure all layers can be checked. */ - BUILD_BUG_ON(BITS_PER_TYPE(layer_mask) < LANDLOCK_MAX_NUM_LAYERS); - if (!access_request) return 0; if (WARN_ON_ONCE(!domain || !path)) @@ -248,20 +285,27 @@ * /proc//fd/ . */ if ((path->dentry->d_sb->s_flags & SB_NOUSER) || - (d_is_positive(path->dentry) && - unlikely(IS_PRIVATE(d_backing_inode(path->dentry))))) + (d_is_positive(path->dentry) && + unlikely(IS_PRIVATE(d_backing_inode(path->dentry))))) return 0; if (WARN_ON_ONCE(domain->num_layers < 1)) return -EACCES; /* Saves all layers handling a subset of requested accesses. */ - layer_mask = 0; for (i = 0; i < domain->num_layers; i++) { - if (domain->fs_access_masks[i] & access_request) - layer_mask |= BIT_ULL(i); + const unsigned long access_req = access_request; + unsigned long access_bit; + + for_each_set_bit(access_bit, &access_req, + ARRAY_SIZE(layer_masks)) { + if (domain->fs_access_masks[i] & BIT_ULL(access_bit)) { + layer_masks[access_bit] |= BIT_ULL(i); + has_access = true; + } + } } /* An access request not handled by the domain is allowed. */ - if (layer_mask == 0) + if (!has_access) return 0; walker_path = *path; @@ -273,13 +317,11 @@ while (true) { struct dentry *parent_dentry; - layer_mask = unmask_layers(domain, &walker_path, - access_request, layer_mask); - if (layer_mask == 0) { + allowed = unmask_layers(find_rule(domain, walker_path.dentry), + access_request, &layer_masks); + if (allowed) /* Stops when a rule from each layer grants access. */ - allowed = true; break; - } jump_up: if (walker_path.dentry == walker_path.mnt->mnt_root) { @@ -313,7 +355,7 @@ } static inline int current_check_access_path(const struct path *const path, - const u32 access_request) + const access_mask_t access_request) { const struct landlock_ruleset *const dom = landlock_get_current_domain(); @@ -441,8 +483,8 @@ if (prev_inode) iput(prev_inode); /* Waits for pending iput() in release_inode(). */ - wait_var_event(&landlock_superblock(sb)->inode_refs, !atomic_long_read( - &landlock_superblock(sb)->inode_refs)); + wait_var_event(&landlock_superblock(sb)->inode_refs, + !atomic_long_read(&landlock_superblock(sb)->inode_refs)); } /* @@ -464,8 +506,8 @@ * a dedicated user space option would be required (e.g. as a ruleset flag). */ static int hook_sb_mount(const char *const dev_name, - const struct path *const path, const char *const type, - const unsigned long flags, void *const data) + const struct path *const path, const char *const type, + const unsigned long flags, void *const data) { if (!landlock_get_current_domain()) return 0; @@ -473,7 +515,7 @@ } static int hook_move_mount(const struct path *const from_path, - const struct path *const to_path) + const struct path *const to_path) { if (!landlock_get_current_domain()) return 0; @@ -507,7 +549,7 @@ * view of the filesystem. */ static int hook_sb_pivotroot(const struct path *const old_path, - const struct path *const new_path) + const struct path *const new_path) { if (!landlock_get_current_domain()) return 0; @@ -516,7 +558,7 @@ /* Path hooks */ -static inline u32 get_mode_access(const umode_t mode) +static inline access_mask_t get_mode_access(const umode_t mode) { switch (mode & S_IFMT) { case S_IFLNK: @@ -550,8 +592,8 @@ * deal with that. */ static int hook_path_link(struct dentry *const old_dentry, - const struct path *const new_dir, - struct dentry *const new_dentry) + const struct path *const new_dir, + struct dentry *const new_dentry) { const struct landlock_ruleset *const dom = landlock_get_current_domain(); @@ -564,22 +606,23 @@ return -EXDEV; if (unlikely(d_is_negative(old_dentry))) return -ENOENT; - return check_access_path(dom, new_dir, - get_mode_access(d_backing_inode(old_dentry)->i_mode)); + return check_access_path( + dom, new_dir, + get_mode_access(d_backing_inode(old_dentry)->i_mode)); } -static inline u32 maybe_remove(const struct dentry *const dentry) +static inline access_mask_t maybe_remove(const struct dentry *const dentry) { if (d_is_negative(dentry)) return 0; return d_is_dir(dentry) ? LANDLOCK_ACCESS_FS_REMOVE_DIR : - LANDLOCK_ACCESS_FS_REMOVE_FILE; + LANDLOCK_ACCESS_FS_REMOVE_FILE; } static int hook_path_rename(const struct path *const old_dir, - struct dentry *const old_dentry, - const struct path *const new_dir, - struct dentry *const new_dentry) + struct dentry *const old_dentry, + const struct path *const new_dir, + struct dentry *const new_dentry) { const struct landlock_ruleset *const dom = landlock_get_current_domain(); @@ -593,20 +636,21 @@ if (unlikely(d_is_negative(old_dentry))) return -ENOENT; /* RENAME_EXCHANGE is handled because directories are the same. */ - return check_access_path(dom, old_dir, maybe_remove(old_dentry) | - maybe_remove(new_dentry) | + return check_access_path( + dom, old_dir, + maybe_remove(old_dentry) | maybe_remove(new_dentry) | get_mode_access(d_backing_inode(old_dentry)->i_mode)); } static int hook_path_mkdir(const struct path *const dir, - struct dentry *const dentry, const umode_t mode) + struct dentry *const dentry, const umode_t mode) { return current_check_access_path(dir, LANDLOCK_ACCESS_FS_MAKE_DIR); } static int hook_path_mknod(const struct path *const dir, - struct dentry *const dentry, const umode_t mode, - const unsigned int dev) + struct dentry *const dentry, const umode_t mode, + const unsigned int dev) { const struct landlock_ruleset *const dom = landlock_get_current_domain(); @@ -617,28 +661,29 @@ } static int hook_path_symlink(const struct path *const dir, - struct dentry *const dentry, const char *const old_name) + struct dentry *const dentry, + const char *const old_name) { return current_check_access_path(dir, LANDLOCK_ACCESS_FS_MAKE_SYM); } static int hook_path_unlink(const struct path *const dir, - struct dentry *const dentry) + struct dentry *const dentry) { return current_check_access_path(dir, LANDLOCK_ACCESS_FS_REMOVE_FILE); } static int hook_path_rmdir(const struct path *const dir, - struct dentry *const dentry) + struct dentry *const dentry) { return current_check_access_path(dir, LANDLOCK_ACCESS_FS_REMOVE_DIR); } /* File hooks */ -static inline u32 get_file_access(const struct file *const file) +static inline access_mask_t get_file_access(const struct file *const file) { - u32 access = 0; + access_mask_t access = 0; if (file->f_mode & FMODE_READ) { /* A directory can only be opened in read mode. */ @@ -695,3 +740,3 @@ security_add_hooks(landlock_hooks, ARRAY_SIZE(landlock_hooks), - &landlock_lsmid); + &landlock_lsmid); } diff -u linux-intel-iotg-5.15-5.15.0/security/landlock/ptrace.c linux-intel-iotg-5.15-5.15.0/security/landlock/ptrace.c --- linux-intel-iotg-5.15-5.15.0/security/landlock/ptrace.c +++ linux-intel-iotg-5.15-5.15.0/security/landlock/ptrace.c @@ -35,7 +35,7 @@ * means a subset of) the @child domain. */ static bool domain_scope_le(const struct landlock_ruleset *const parent, - const struct landlock_ruleset *const child) + const struct landlock_ruleset *const child) { const struct landlock_hierarchy *walker; @@ -53,7 +53,7 @@ } static bool task_is_scoped(const struct task_struct *const parent, - const struct task_struct *const child) + const struct task_struct *const child) { bool is_scoped; const struct landlock_ruleset *dom_parent, *dom_child; @@ -67,7 +67,7 @@ } static int task_ptrace(const struct task_struct *const parent, - const struct task_struct *const child) + const struct task_struct *const child) { /* Quick return for non-landlocked tasks. */ if (!landlocked(parent)) @@ -91,7 +91,7 @@ * granted, -errno if denied. */ static int hook_ptrace_access_check(struct task_struct *const child, - const unsigned int mode) + const unsigned int mode) { return task_ptrace(current, child); } @@ -123,3 +123,3 @@ security_add_hooks(landlock_hooks, ARRAY_SIZE(landlock_hooks), - &landlock_lsmid); + &landlock_lsmid); } diff -u linux-intel-iotg-5.15-5.15.0/security/landlock/syscalls.c linux-intel-iotg-5.15-5.15.0/security/landlock/syscalls.c --- linux-intel-iotg-5.15-5.15.0/security/landlock/syscalls.c +++ linux-intel-iotg-5.15-5.15.0/security/landlock/syscalls.c @@ -43,9 +43,10 @@ * @src: User space pointer or NULL. * @usize: (Alleged) size of the data pointed to by @src. */ -static __always_inline int copy_min_struct_from_user(void *const dst, - const size_t ksize, const size_t ksize_min, - const void __user *const src, const size_t usize) +static __always_inline int +copy_min_struct_from_user(void *const dst, const size_t ksize, + const size_t ksize_min, const void __user *const src, + const size_t usize) { /* Checks buffer inconsistencies. */ BUILD_BUG_ON(!dst); @@ -93,7 +94,7 @@ /* Ruleset handling */ static int fop_ruleset_release(struct inode *const inode, - struct file *const filp) + struct file *const filp) { struct landlock_ruleset *ruleset = filp->private_data; @@ -102,15 +103,15 @@ } static ssize_t fop_dummy_read(struct file *const filp, char __user *const buf, - const size_t size, loff_t *const ppos) + const size_t size, loff_t *const ppos) { /* Dummy handler to enable FMODE_CAN_READ. */ return -EINVAL; } static ssize_t fop_dummy_write(struct file *const filp, - const char __user *const buf, const size_t size, - loff_t *const ppos) + const char __user *const buf, const size_t size, + loff_t *const ppos) { /* Dummy handler to enable FMODE_CAN_WRITE. */ return -EINVAL; @@ -128,7 +129,7 @@ .write = fop_dummy_write, }; -#define LANDLOCK_ABI_VERSION 1 +#define LANDLOCK_ABI_VERSION 1 /** * sys_landlock_create_ruleset - Create a new ruleset @@ -168,22 +169,23 @@ return -EOPNOTSUPP; if (flags) { - if ((flags == LANDLOCK_CREATE_RULESET_VERSION) - && !attr && !size) + if ((flags == LANDLOCK_CREATE_RULESET_VERSION) && !attr && + !size) return LANDLOCK_ABI_VERSION; return -EINVAL; } /* Copies raw user space buffer. */ err = copy_min_struct_from_user(&ruleset_attr, sizeof(ruleset_attr), - offsetofend(typeof(ruleset_attr), handled_access_fs), - attr, size); + offsetofend(typeof(ruleset_attr), + handled_access_fs), + attr, size); if (err) return err; /* Checks content (and 32-bits cast). */ if ((ruleset_attr.handled_access_fs | LANDLOCK_MASK_ACCESS_FS) != - LANDLOCK_MASK_ACCESS_FS) + LANDLOCK_MASK_ACCESS_FS) return -EINVAL; /* Checks arguments and transforms to kernel struct. */ @@ -193,7 +195,7 @@ /* Creates anonymous FD referring to the ruleset. */ ruleset_fd = anon_inode_getfd("[landlock-ruleset]", &ruleset_fops, - ruleset, O_RDWR | O_CLOEXEC); + ruleset, O_RDWR | O_CLOEXEC); if (ruleset_fd < 0) landlock_put_ruleset(ruleset); return ruleset_fd; @@ -204,7 +206,7 @@ * landlock_put_ruleset() on the return value. */ static struct landlock_ruleset *get_ruleset_from_fd(const int fd, - const fmode_t mode) + const fmode_t mode) { struct fd ruleset_f; struct landlock_ruleset *ruleset; @@ -244,8 +246,8 @@ struct fd f; int err = 0; - BUILD_BUG_ON(!__same_type(fd, - ((struct landlock_path_beneath_attr *)NULL)->parent_fd)); + BUILD_BUG_ON(!__same_type( + fd, ((struct landlock_path_beneath_attr *)NULL)->parent_fd)); /* Handles O_PATH. */ f = fdget_raw(fd); @@ -257,10 +259,10 @@ * pipefs). */ if ((f.file->f_op == &ruleset_fops) || - (f.file->f_path.mnt->mnt_flags & MNT_INTERNAL) || - (f.file->f_path.dentry->d_sb->s_flags & SB_NOUSER) || - d_is_negative(f.file->f_path.dentry) || - IS_PRIVATE(d_backing_inode(f.file->f_path.dentry))) { + (f.file->f_path.mnt->mnt_flags & MNT_INTERNAL) || + (f.file->f_path.dentry->d_sb->s_flags & SB_NOUSER) || + d_is_negative(f.file->f_path.dentry) || + IS_PRIVATE(d_backing_inode(f.file->f_path.dentry))) { err = -EBADFD; goto out_fdput; } @@ -290,19 +292,18 @@ * * - EOPNOTSUPP: Landlock is supported by the kernel but disabled at boot time; * - EINVAL: @flags is not 0, or inconsistent access in the rule (i.e. - * &landlock_path_beneath_attr.allowed_access is not a subset of the rule's - * accesses); + * &landlock_path_beneath_attr.allowed_access is not a subset of the + * ruleset handled accesses); * - ENOMSG: Empty accesses (e.g. &landlock_path_beneath_attr.allowed_access); * - EBADF: @ruleset_fd is not a file descriptor for the current thread, or a * member of @rule_attr is not a file descriptor as expected; * - EBADFD: @ruleset_fd is not a ruleset file descriptor, or a member of - * @rule_attr is not the expected file descriptor type (e.g. file open - * without O_PATH); + * @rule_attr is not the expected file descriptor type; * - EPERM: @ruleset_fd has no write access to the underlying ruleset; * - EFAULT: @rule_attr inconsistency. */ -SYSCALL_DEFINE4(landlock_add_rule, - const int, ruleset_fd, const enum landlock_rule_type, rule_type, +SYSCALL_DEFINE4(landlock_add_rule, const int, ruleset_fd, + const enum landlock_rule_type, rule_type, const void __user *const, rule_attr, const __u32, flags) { struct landlock_path_beneath_attr path_beneath_attr; @@ -317,20 +318,24 @@ if (flags) return -EINVAL; - if (rule_type != LANDLOCK_RULE_PATH_BENEATH) - return -EINVAL; - - /* Copies raw user space buffer, only one type for now. */ - res = copy_from_user(&path_beneath_attr, rule_attr, - sizeof(path_beneath_attr)); - if (res) - return -EFAULT; - /* Gets and checks the ruleset. */ ruleset = get_ruleset_from_fd(ruleset_fd, FMODE_CAN_WRITE); if (IS_ERR(ruleset)) return PTR_ERR(ruleset); + if (rule_type != LANDLOCK_RULE_PATH_BENEATH) { + err = -EINVAL; + goto out_put_ruleset; + } + + /* Copies raw user space buffer, only one type for now. */ + res = copy_from_user(&path_beneath_attr, rule_attr, + sizeof(path_beneath_attr)); + if (res) { + err = -EFAULT; + goto out_put_ruleset; + } + /* * Informs about useless rule: empty allowed_access (i.e. deny rules) * are ignored in path walks. @@ -344,7 +349,7 @@ * (ruleset->fs_access_masks[0] is automatically upgraded to 64-bits). */ if ((path_beneath_attr.allowed_access | ruleset->fs_access_masks[0]) != - ruleset->fs_access_masks[0]) { + ruleset->fs_access_masks[0]) { err = -EINVAL; goto out_put_ruleset; } @@ -356,7 +361,7 @@ /* Imports the new rule. */ err = landlock_append_fs_rule(ruleset, &path, - path_beneath_attr.allowed_access); + path_beneath_attr.allowed_access); path_put(&path); out_put_ruleset: @@ -389,8 +394,8 @@ * - E2BIG: The maximum number of stacked rulesets is reached for the current * thread. */ -SYSCALL_DEFINE2(landlock_restrict_self, - const int, ruleset_fd, const __u32, flags) +SYSCALL_DEFINE2(landlock_restrict_self, const int, ruleset_fd, const __u32, + flags) { struct landlock_ruleset *new_dom, *ruleset; struct cred *new_cred; @@ -400,18 +405,18 @@ if (!landlock_initialized) return -EOPNOTSUPP; - /* No flag for now. */ - if (flags) - return -EINVAL; - /* * Similar checks as for seccomp(2), except that an -EPERM may be * returned. */ if (!task_no_new_privs(current) && - !ns_capable_noaudit(current_user_ns(), CAP_SYS_ADMIN)) + !ns_capable_noaudit(current_user_ns(), CAP_SYS_ADMIN)) return -EPERM; + /* No flag for now. */ + if (flags) + return -EINVAL; + /* Gets and checks the ruleset. */ ruleset = get_ruleset_from_fd(ruleset_fd, FMODE_CAN_READ); if (IS_ERR(ruleset)) diff -u linux-intel-iotg-5.15-5.15.0/security/selinux/ss/hashtab.c linux-intel-iotg-5.15-5.15.0/security/selinux/ss/hashtab.c --- linux-intel-iotg-5.15-5.15.0/security/selinux/ss/hashtab.c +++ linux-intel-iotg-5.15-5.15.0/security/selinux/ss/hashtab.c @@ -178,7 +178,8 @@ kmem_cache_free(hashtab_node_cachep, cur); } } - kmem_cache_free(hashtab_node_cachep, new); + kfree(new->htable); + memset(new, 0, sizeof(*new)); return -ENOMEM; } diff -u linux-intel-iotg-5.15-5.15.0/sound/core/jack.c linux-intel-iotg-5.15-5.15.0/sound/core/jack.c --- linux-intel-iotg-5.15-5.15.0/sound/core/jack.c +++ linux-intel-iotg-5.15-5.15.0/sound/core/jack.c @@ -42,8 +42,11 @@ #ifdef CONFIG_SND_JACK_INPUT_DEV struct snd_jack *jack = device->device_data; - if (!jack->input_dev) + mutex_lock(&jack->input_dev_lock); + if (!jack->input_dev) { + mutex_unlock(&jack->input_dev_lock); return 0; + } /* If the input device is registered with the input subsystem * then we need to use a different deallocator. */ @@ -52,6 +55,7 @@ else input_free_device(jack->input_dev); jack->input_dev = NULL; + mutex_unlock(&jack->input_dev_lock); #endif /* CONFIG_SND_JACK_INPUT_DEV */ return 0; } @@ -90,8 +94,11 @@ snprintf(jack->name, sizeof(jack->name), "%s %s", card->shortname, jack->id); - if (!jack->input_dev) + mutex_lock(&jack->input_dev_lock); + if (!jack->input_dev) { + mutex_unlock(&jack->input_dev_lock); return 0; + } jack->input_dev->name = jack->name; @@ -116,6 +123,7 @@ if (err == 0) jack->registered = 1; + mutex_unlock(&jack->input_dev_lock); return err; } #endif /* CONFIG_SND_JACK_INPUT_DEV */ @@ -517,9 +525,11 @@ return -ENOMEM; } - /* don't creat input device for phantom jack */ - if (!phantom_jack) { #ifdef CONFIG_SND_JACK_INPUT_DEV + mutex_init(&jack->input_dev_lock); + + /* don't create input device for phantom jack */ + if (!phantom_jack) { int i; jack->input_dev = input_allocate_device(); @@ -537,8 +547,8 @@ input_set_capability(jack->input_dev, EV_SW, jack_switch_types[i]); -#endif /* CONFIG_SND_JACK_INPUT_DEV */ } +#endif /* CONFIG_SND_JACK_INPUT_DEV */ err = snd_device_new(card, SNDRV_DEV_JACK, jack, &ops); if (err < 0) @@ -578,10 +588,14 @@ void snd_jack_set_parent(struct snd_jack *jack, struct device *parent) { WARN_ON(jack->registered); - if (!jack->input_dev) + mutex_lock(&jack->input_dev_lock); + if (!jack->input_dev) { + mutex_unlock(&jack->input_dev_lock); return; + } jack->input_dev->dev.parent = parent; + mutex_unlock(&jack->input_dev_lock); } EXPORT_SYMBOL(snd_jack_set_parent); @@ -629,6 +643,8 @@ /** * snd_jack_report - Report the current status of a jack + * Note: This function uses mutexes and should be called from a + * context which can sleep (such as a workqueue). * * @jack: The jack to report status for * @status: The current status of the jack @@ -654,8 +670,11 @@ status & jack_kctl->mask_bits); #ifdef CONFIG_SND_JACK_INPUT_DEV - if (!jack->input_dev) + mutex_lock(&jack->input_dev_lock); + if (!jack->input_dev) { + mutex_unlock(&jack->input_dev_lock); return; + } for (i = 0; i < ARRAY_SIZE(jack->key); i++) { int testbit = ((SND_JACK_BTN_0 >> i) & ~mask_bits); @@ -675,6 +694,7 @@ } input_sync(jack->input_dev); + mutex_unlock(&jack->input_dev_lock); #endif /* CONFIG_SND_JACK_INPUT_DEV */ } EXPORT_SYMBOL(snd_jack_report); diff -u linux-intel-iotg-5.15-5.15.0/sound/core/pcm_memory.c linux-intel-iotg-5.15-5.15.0/sound/core/pcm_memory.c --- linux-intel-iotg-5.15-5.15.0/sound/core/pcm_memory.c +++ linux-intel-iotg-5.15-5.15.0/sound/core/pcm_memory.c @@ -446,7 +446,6 @@ */ int snd_pcm_lib_free_pages(struct snd_pcm_substream *substream) { - struct snd_card *card = substream->pcm->card; struct snd_pcm_runtime *runtime; if (PCM_RUNTIME_CHECK(substream)) @@ -455,6 +454,8 @@ if (runtime->dma_area == NULL) return 0; if (runtime->dma_buffer_p != &substream->dma_buffer) { + struct snd_card *card = substream->pcm->card; + /* it's a newly allocated buffer. release it now. */ do_free_pages(card, runtime->dma_buffer_p); kfree(runtime->dma_buffer_p); diff -u linux-intel-iotg-5.15-5.15.0/sound/pci/hda/patch_cs8409-tables.c linux-intel-iotg-5.15-5.15.0/sound/pci/hda/patch_cs8409-tables.c --- linux-intel-iotg-5.15-5.15.0/sound/pci/hda/patch_cs8409-tables.c +++ linux-intel-iotg-5.15-5.15.0/sound/pci/hda/patch_cs8409-tables.c @@ -76,67 +76,74 @@ {} /* terminator */ }; +const struct hda_pintbl cs8409_cs42l42_pincfgs_no_dmic[] = { + { CS8409_PIN_ASP1_TRANSMITTER_A, 0x042120f0 }, /* ASP-1-TX */ + { CS8409_PIN_ASP1_RECEIVER_A, 0x04a12050 }, /* ASP-1-RX */ + { CS8409_PIN_ASP2_TRANSMITTER_A, 0x901000f0 }, /* ASP-2-TX */ + {} /* terminator */ +}; + /* Vendor specific HW configuration for CS42L42 */ static const struct cs8409_i2c_param cs42l42_init_reg_seq[] = { - { 0x1010, 0xB0 }, - { 0x1D01, 0x00 }, + { CS42L42_I2C_TIMEOUT, 0xB0 }, + { CS42L42_ADC_CTL, 0x00 }, { 0x1D02, 0x06 }, - { 0x1D03, 0x9F }, - { 0x1107, 0x01 }, - { 0x1009, 0x02 }, - { 0x1007, 0x03 }, - { 0x1201, 0x00 }, - { 0x1208, 0x13 }, - { 0x1205, 0xFF }, - { 0x1206, 0x00 }, - { 0x1207, 0x20 }, - { 0x1202, 0x0D }, - { 0x2A02, 0x02 }, - { 0x2A03, 0x00 }, - { 0x2A04, 0x00 }, - { 0x2A05, 0x02 }, - { 0x2A06, 0x00 }, - { 0x2A07, 0x20 }, - { 0x2A08, 0x02 }, - { 0x2A09, 0x00 }, - { 0x2A0A, 0x80 }, - { 0x2A0B, 0x02 }, - { 0x2A0C, 0x00 }, - { 0x2A0D, 0xA0 }, - { 0x2A01, 0x0C }, - { 0x2902, 0x01 }, - { 0x2903, 0x02 }, - { 0x2904, 0x00 }, - { 0x2905, 0x00 }, - { 0x2901, 0x01 }, - { 0x1101, 0x0A }, - { 0x1102, 0x84 }, - { 0x2301, 0x3F }, - { 0x2303, 0x3F }, - { 0x2302, 0x3f }, - { 0x2001, 0x03 }, - { 0x1B75, 0xB6 }, - { 0x1B73, 0xC2 }, - { 0x1129, 0x01 }, - { 0x1121, 0xF3 }, - { 0x1103, 0x20 }, - { 0x1105, 0x00 }, - { 0x1112, 0x00 }, - { 0x1113, 0x80 }, - { 0x1C03, 0xC0 }, - { 0x1101, 0x02 }, - { 0x1316, 0xff }, - { 0x1317, 0xff }, - { 0x1318, 0xff }, - { 0x1319, 0xff }, - { 0x131a, 0xff }, - { 0x131b, 0xff }, - { 0x131c, 0xff }, - { 0x131e, 0xff }, - { 0x131f, 0xff }, - { 0x1320, 0xff }, - { 0x1b79, 0xff }, - { 0x1b7a, 0xff }, + { CS42L42_ADC_VOLUME, 0x9F }, + { CS42L42_OSC_SWITCH, 0x01 }, + { CS42L42_MCLK_CTL, 0x02 }, + { CS42L42_SRC_CTL, 0x03 }, + { CS42L42_MCLK_SRC_SEL, 0x00 }, + { CS42L42_ASP_FRM_CFG, 0x13 }, + { CS42L42_FSYNC_P_LOWER, 0xFF }, + { CS42L42_FSYNC_P_UPPER, 0x00 }, + { CS42L42_ASP_CLK_CFG, 0x20 }, + { CS42L42_SPDIF_CLK_CFG, 0x0D }, + { CS42L42_ASP_RX_DAI0_CH1_AP_RES, 0x02 }, + { CS42L42_ASP_RX_DAI0_CH1_BIT_MSB, 0x00 }, + { CS42L42_ASP_RX_DAI0_CH1_BIT_LSB, 0x00 }, + { CS42L42_ASP_RX_DAI0_CH2_AP_RES, 0x02 }, + { CS42L42_ASP_RX_DAI0_CH2_BIT_MSB, 0x00 }, + { CS42L42_ASP_RX_DAI0_CH2_BIT_LSB, 0x20 }, + { CS42L42_ASP_RX_DAI0_CH3_AP_RES, 0x02 }, + { CS42L42_ASP_RX_DAI0_CH3_BIT_MSB, 0x00 }, + { CS42L42_ASP_RX_DAI0_CH3_BIT_LSB, 0x80 }, + { CS42L42_ASP_RX_DAI0_CH4_AP_RES, 0x02 }, + { CS42L42_ASP_RX_DAI0_CH4_BIT_MSB, 0x00 }, + { CS42L42_ASP_RX_DAI0_CH4_BIT_LSB, 0xA0 }, + { CS42L42_ASP_RX_DAI0_EN, 0x0C }, + { CS42L42_ASP_TX_CH_EN, 0x01 }, + { CS42L42_ASP_TX_CH_AP_RES, 0x02 }, + { CS42L42_ASP_TX_CH1_BIT_MSB, 0x00 }, + { CS42L42_ASP_TX_CH1_BIT_LSB, 0x00 }, + { CS42L42_ASP_TX_SZ_EN, 0x01 }, + { CS42L42_PWR_CTL1, 0x0A }, + { CS42L42_PWR_CTL2, 0x84 }, + { CS42L42_MIXER_CHA_VOL, 0x3F }, + { CS42L42_MIXER_CHB_VOL, 0x3F }, + { CS42L42_MIXER_ADC_VOL, 0x3f }, + { CS42L42_HP_CTL, 0x03 }, + { CS42L42_MIC_DET_CTL1, 0xB6 }, + { CS42L42_TIPSENSE_CTL, 0xC2 }, + { CS42L42_HS_CLAMP_DISABLE, 0x01 }, + { CS42L42_HS_SWITCH_CTL, 0xF3 }, + { CS42L42_PWR_CTL3, 0x20 }, + { CS42L42_RSENSE_CTL2, 0x00 }, + { CS42L42_RSENSE_CTL3, 0x00 }, + { CS42L42_TSENSE_CTL, 0x80 }, + { CS42L42_HS_BIAS_CTL, 0xC0 }, + { CS42L42_PWR_CTL1, 0x02 }, + { CS42L42_ADC_OVFL_INT_MASK, 0xff }, + { CS42L42_MIXER_INT_MASK, 0xff }, + { CS42L42_SRC_INT_MASK, 0xff }, + { CS42L42_ASP_RX_INT_MASK, 0xff }, + { CS42L42_ASP_TX_INT_MASK, 0xff }, + { CS42L42_CODEC_INT_MASK, 0xff }, + { CS42L42_SRCPL_INT_MASK, 0xff }, + { CS42L42_VPMON_INT_MASK, 0xff }, + { CS42L42_PLL_LOCK_INT_MASK, 0xff }, + { CS42L42_TSRS_PLUG_INT_MASK, 0xff }, + { CS42L42_DET_INT1_MASK, 0xff }, + { CS42L42_DET_INT2_MASK, 0xff }, }; /* Vendor specific hw configuration for CS8409 */ @@ -252,7 +259,6 @@ .init_seq_num = ARRAY_SIZE(cs42l42_init_reg_seq), .hp_jack_in = 0, .mic_jack_in = 0, - .force_status_change = 1, .paged = 1, .suspended = 1, .no_type_dect = 0, @@ -282,115 +288,115 @@ /* Vendor specific HW configuration for CS42L42 */ static const struct cs8409_i2c_param dolphin_c0_init_reg_seq[] = { - { 0x1010, 0xB0 }, - { 0x1D01, 0x00 }, + { CS42L42_I2C_TIMEOUT, 0xB0 }, + { CS42L42_ADC_CTL, 0x00 }, { 0x1D02, 0x06 }, - { 0x1D03, 0x9F }, - { 0x1107, 0x01 }, - { 0x1009, 0x02 }, - { 0x1007, 0x03 }, - { 0x1201, 0x00 }, - { 0x1208, 0x13 }, - { 0x1205, 0xFF }, - { 0x1206, 0x00 }, - { 0x1207, 0x20 }, - { 0x1202, 0x0D }, - { 0x2A02, 0x02 }, - { 0x2A03, 0x00 }, - { 0x2A04, 0x00 }, - { 0x2A05, 0x02 }, - { 0x2A06, 0x00 }, - { 0x2A07, 0x20 }, - { 0x2A01, 0x0C }, - { 0x2902, 0x01 }, - { 0x2903, 0x02 }, - { 0x2904, 0x00 }, - { 0x2905, 0x00 }, - { 0x2901, 0x01 }, - { 0x1101, 0x0A }, - { 0x1102, 0x84 }, - { 0x2001, 0x03 }, - { 0x2301, 0x3F }, - { 0x2303, 0x3F }, - { 0x2302, 0x3f }, - { 0x1B75, 0xB6 }, - { 0x1B73, 0xC2 }, - { 0x1129, 0x01 }, - { 0x1121, 0xF3 }, - { 0x1103, 0x20 }, - { 0x1105, 0x00 }, - { 0x1112, 0x00 }, - { 0x1113, 0x80 }, - { 0x1C03, 0xC0 }, - { 0x1101, 0x02 }, - { 0x1316, 0xff }, - { 0x1317, 0xff }, - { 0x1318, 0xff }, - { 0x1319, 0xff }, - { 0x131a, 0xff }, - { 0x131b, 0xff }, - { 0x131c, 0xff }, - { 0x131e, 0xff }, - { 0x131f, 0xff }, - { 0x1320, 0xff }, - { 0x1b79, 0xff }, - { 0x1b7a, 0xff } + { CS42L42_ADC_VOLUME, 0x9F }, + { CS42L42_OSC_SWITCH, 0x01 }, + { CS42L42_MCLK_CTL, 0x02 }, + { CS42L42_SRC_CTL, 0x03 }, + { CS42L42_MCLK_SRC_SEL, 0x00 }, + { CS42L42_ASP_FRM_CFG, 0x13 }, + { CS42L42_FSYNC_P_LOWER, 0xFF }, + { CS42L42_FSYNC_P_UPPER, 0x00 }, + { CS42L42_ASP_CLK_CFG, 0x20 }, + { CS42L42_SPDIF_CLK_CFG, 0x0D }, + { CS42L42_ASP_RX_DAI0_CH1_AP_RES, 0x02 }, + { CS42L42_ASP_RX_DAI0_CH1_BIT_MSB, 0x00 }, + { CS42L42_ASP_RX_DAI0_CH1_BIT_LSB, 0x00 }, + { CS42L42_ASP_RX_DAI0_CH2_AP_RES, 0x02 }, + { CS42L42_ASP_RX_DAI0_CH2_BIT_MSB, 0x00 }, + { CS42L42_ASP_RX_DAI0_CH2_BIT_LSB, 0x20 }, + { CS42L42_ASP_RX_DAI0_EN, 0x0C }, + { CS42L42_ASP_TX_CH_EN, 0x01 }, + { CS42L42_ASP_TX_CH_AP_RES, 0x02 }, + { CS42L42_ASP_TX_CH1_BIT_MSB, 0x00 }, + { CS42L42_ASP_TX_CH1_BIT_LSB, 0x00 }, + { CS42L42_ASP_TX_SZ_EN, 0x01 }, + { CS42L42_PWR_CTL1, 0x0A }, + { CS42L42_PWR_CTL2, 0x84 }, + { CS42L42_HP_CTL, 0x03 }, + { CS42L42_MIXER_CHA_VOL, 0x3F }, + { CS42L42_MIXER_CHB_VOL, 0x3F }, + { CS42L42_MIXER_ADC_VOL, 0x3f }, + { CS42L42_MIC_DET_CTL1, 0xB6 }, + { CS42L42_TIPSENSE_CTL, 0xC2 }, + { CS42L42_HS_CLAMP_DISABLE, 0x01 }, + { CS42L42_HS_SWITCH_CTL, 0xF3 }, + { CS42L42_PWR_CTL3, 0x20 }, + { CS42L42_RSENSE_CTL2, 0x00 }, + { CS42L42_RSENSE_CTL3, 0x00 }, + { CS42L42_TSENSE_CTL, 0x80 }, + { CS42L42_HS_BIAS_CTL, 0xC0 }, + { CS42L42_PWR_CTL1, 0x02 }, + { CS42L42_ADC_OVFL_INT_MASK, 0xff }, + { CS42L42_MIXER_INT_MASK, 0xff }, + { CS42L42_SRC_INT_MASK, 0xff }, + { CS42L42_ASP_RX_INT_MASK, 0xff }, + { CS42L42_ASP_TX_INT_MASK, 0xff }, + { CS42L42_CODEC_INT_MASK, 0xff }, + { CS42L42_SRCPL_INT_MASK, 0xff }, + { CS42L42_VPMON_INT_MASK, 0xff }, + { CS42L42_PLL_LOCK_INT_MASK, 0xff }, + { CS42L42_TSRS_PLUG_INT_MASK, 0xff }, + { CS42L42_DET_INT1_MASK, 0xff }, + { CS42L42_DET_INT2_MASK, 0xff } }; static const struct cs8409_i2c_param dolphin_c1_init_reg_seq[] = { - { 0x1010, 0xB0 }, - { 0x1D01, 0x00 }, + { CS42L42_I2C_TIMEOUT, 0xB0 }, + { CS42L42_ADC_CTL, 0x00 }, { 0x1D02, 0x06 }, - { 0x1D03, 0x9F }, - { 0x1107, 0x01 }, - { 0x1009, 0x02 }, - { 0x1007, 0x03 }, - { 0x1201, 0x00 }, - { 0x1208, 0x13 }, - { 0x1205, 0xFF }, - { 0x1206, 0x00 }, - { 0x1207, 0x20 }, - { 0x1202, 0x0D }, - { 0x2A02, 0x02 }, - { 0x2A03, 0x00 }, - { 0x2A04, 0x80 }, - { 0x2A05, 0x02 }, - { 0x2A06, 0x00 }, - { 0x2A07, 0xA0 }, - { 0x2A01, 0x0C }, - { 0x2902, 0x00 }, - { 0x2903, 0x02 }, - { 0x2904, 0x00 }, - { 0x2905, 0x00 }, - { 0x2901, 0x00 }, - { 0x1101, 0x0E }, - { 0x1102, 0x84 }, - { 0x2001, 0x01 }, - { 0x2301, 0x3F }, - { 0x2303, 0x3F }, - { 0x2302, 0x3f }, - { 0x1B75, 0xB6 }, - { 0x1B73, 0xC2 }, - { 0x1129, 0x01 }, - { 0x1121, 0xF3 }, - { 0x1103, 0x20 }, - { 0x1105, 0x00 }, - { 0x1112, 0x00 }, - { 0x1113, 0x80 }, - { 0x1C03, 0xC0 }, - { 0x1101, 0x06 }, - { 0x1316, 0xff }, - { 0x1317, 0xff }, - { 0x1318, 0xff }, - { 0x1319, 0xff }, - { 0x131a, 0xff }, - { 0x131b, 0xff }, - { 0x131c, 0xff }, - { 0x131e, 0xff }, - { 0x131f, 0xff }, - { 0x1320, 0xff }, - { 0x1b79, 0xff }, - { 0x1b7a, 0xff } + { CS42L42_ADC_VOLUME, 0x9F }, + { CS42L42_OSC_SWITCH, 0x01 }, + { CS42L42_MCLK_CTL, 0x02 }, + { CS42L42_SRC_CTL, 0x03 }, + { CS42L42_MCLK_SRC_SEL, 0x00 }, + { CS42L42_ASP_FRM_CFG, 0x13 }, + { CS42L42_FSYNC_P_LOWER, 0xFF }, + { CS42L42_FSYNC_P_UPPER, 0x00 }, + { CS42L42_ASP_CLK_CFG, 0x20 }, + { CS42L42_SPDIF_CLK_CFG, 0x0D }, + { CS42L42_ASP_RX_DAI0_CH1_AP_RES, 0x02 }, + { CS42L42_ASP_RX_DAI0_CH1_BIT_MSB, 0x00 }, + { CS42L42_ASP_RX_DAI0_CH1_BIT_LSB, 0x80 }, + { CS42L42_ASP_RX_DAI0_CH2_AP_RES, 0x02 }, + { CS42L42_ASP_RX_DAI0_CH2_BIT_MSB, 0x00 }, + { CS42L42_ASP_RX_DAI0_CH2_BIT_LSB, 0xA0 }, + { CS42L42_ASP_RX_DAI0_EN, 0x0C }, + { CS42L42_ASP_TX_CH_EN, 0x00 }, + { CS42L42_ASP_TX_CH_AP_RES, 0x02 }, + { CS42L42_ASP_TX_CH1_BIT_MSB, 0x00 }, + { CS42L42_ASP_TX_CH1_BIT_LSB, 0x00 }, + { CS42L42_ASP_TX_SZ_EN, 0x00 }, + { CS42L42_PWR_CTL1, 0x0E }, + { CS42L42_PWR_CTL2, 0x84 }, + { CS42L42_HP_CTL, 0x01 }, + { CS42L42_MIXER_CHA_VOL, 0x3F }, + { CS42L42_MIXER_CHB_VOL, 0x3F }, + { CS42L42_MIXER_ADC_VOL, 0x3f }, + { CS42L42_MIC_DET_CTL1, 0xB6 }, + { CS42L42_TIPSENSE_CTL, 0xC2 }, + { CS42L42_HS_CLAMP_DISABLE, 0x01 }, + { CS42L42_HS_SWITCH_CTL, 0xF3 }, + { CS42L42_PWR_CTL3, 0x20 }, + { CS42L42_RSENSE_CTL2, 0x00 }, + { CS42L42_RSENSE_CTL3, 0x00 }, + { CS42L42_TSENSE_CTL, 0x80 }, + { CS42L42_HS_BIAS_CTL, 0xC0 }, + { CS42L42_PWR_CTL1, 0x06 }, + { CS42L42_ADC_OVFL_INT_MASK, 0xff }, + { CS42L42_MIXER_INT_MASK, 0xff }, + { CS42L42_SRC_INT_MASK, 0xff }, + { CS42L42_ASP_RX_INT_MASK, 0xff }, + { CS42L42_ASP_TX_INT_MASK, 0xff }, + { CS42L42_CODEC_INT_MASK, 0xff }, + { CS42L42_SRCPL_INT_MASK, 0xff }, + { CS42L42_VPMON_INT_MASK, 0xff }, + { CS42L42_PLL_LOCK_INT_MASK, 0xff }, + { CS42L42_TSRS_PLUG_INT_MASK, 0xff }, + { CS42L42_DET_INT1_MASK, 0xff }, + { CS42L42_DET_INT2_MASK, 0xff } }; /* Vendor specific hw configuration for CS8409 */ @@ -444,7 +450,6 @@ .init_seq_num = ARRAY_SIZE(dolphin_c0_init_reg_seq), .hp_jack_in = 0, .mic_jack_in = 0, - .force_status_change = 1, .paged = 1, .suspended = 1, .no_type_dect = 0, @@ -458,7 +463,6 @@ .init_seq_num = ARRAY_SIZE(dolphin_c1_init_reg_seq), .hp_jack_in = 0, .mic_jack_in = 0, - .force_status_change = 1, .paged = 1, .suspended = 1, .no_type_dect = 1, @@ -521,6 +525,11 @@ SND_PCI_QUIRK(0x1028, 0x0B95, "Warlock MLK Dual Mic", CS8409_WARLOCK_MLK_DUAL_MIC), SND_PCI_QUIRK(0x1028, 0x0B96, "Warlock MLK", CS8409_WARLOCK_MLK), SND_PCI_QUIRK(0x1028, 0x0B97, "Warlock MLK Dual Mic", CS8409_WARLOCK_MLK_DUAL_MIC), + SND_PCI_QUIRK(0x1028, 0x0BA5, "Odin", CS8409_ODIN), + SND_PCI_QUIRK(0x1028, 0x0BA6, "Odin", CS8409_ODIN), + SND_PCI_QUIRK(0x1028, 0x0BA8, "Odin", CS8409_ODIN), + SND_PCI_QUIRK(0x1028, 0x0BAA, "Odin", CS8409_ODIN), + SND_PCI_QUIRK(0x1028, 0x0BAE, "Odin", CS8409_ODIN), SND_PCI_QUIRK(0x1028, 0x0BB2, "Warlock MLK", CS8409_WARLOCK_MLK), SND_PCI_QUIRK(0x1028, 0x0BB3, "Warlock MLK", CS8409_WARLOCK_MLK), SND_PCI_QUIRK(0x1028, 0x0BB4, "Warlock MLK", CS8409_WARLOCK_MLK), @@ -548,6 +557,7 @@ { .id = CS8409_WARLOCK_MLK_DUAL_MIC, .name = "warlock mlk dual mic" }, { .id = CS8409_CYBORG, .name = "cyborg" }, { .id = CS8409_DOLPHIN, .name = "dolphin" }, + { .id = CS8409_ODIN, .name = "odin" }, {} }; @@ -598,2 +608,8 @@ }, + [CS8409_ODIN] = { + .type = HDA_FIXUP_PINS, + .v.pins = cs8409_cs42l42_pincfgs_no_dmic, + .chained = true, + .chain_id = CS8409_FIXUPS, + }, }; diff -u linux-intel-iotg-5.15-5.15.0/sound/pci/hda/patch_cs8409.c linux-intel-iotg-5.15-5.15.0/sound/pci/hda/patch_cs8409.c --- linux-intel-iotg-5.15-5.15.0/sound/pci/hda/patch_cs8409.c +++ linux-intel-iotg-5.15-5.15.0/sound/pci/hda/patch_cs8409.c @@ -419,6 +419,39 @@ snd_hda_override_wcaps(codec, nid, (get_wcaps(codec, nid) | AC_WCAP_UNSOL_CAP)); } +static int cs8409_spk_sw_gpio_get(struct snd_kcontrol *kcontrol, + struct snd_ctl_elem_value *ucontrol) +{ + struct hda_codec *codec = snd_kcontrol_chip(kcontrol); + struct cs8409_spec *spec = codec->spec; + + ucontrol->value.integer.value[0] = !!(spec->gpio_data & spec->speaker_pdn_gpio); + return 0; +} + +static int cs8409_spk_sw_gpio_put(struct snd_kcontrol *kcontrol, + struct snd_ctl_elem_value *ucontrol) +{ + struct hda_codec *codec = snd_kcontrol_chip(kcontrol); + struct cs8409_spec *spec = codec->spec; + unsigned int gpio_data; + + gpio_data = (spec->gpio_data & ~spec->speaker_pdn_gpio) | + (ucontrol->value.integer.value[0] ? spec->speaker_pdn_gpio : 0); + if (gpio_data == spec->gpio_data) + return 0; + spec->gpio_data = gpio_data; + snd_hda_codec_write(codec, CS8409_PIN_AFG, 0, AC_VERB_SET_GPIO_DATA, spec->gpio_data); + return 1; +} + +static const struct snd_kcontrol_new cs8409_spk_sw_ctrl = { + .iface = SNDRV_CTL_ELEM_IFACE_MIXER, + .info = snd_ctl_boolean_mono_info, + .get = cs8409_spk_sw_gpio_get, + .put = cs8409_spk_sw_gpio_put, +}; + /****************************************************************************** * CS42L42 Specific Functions ******************************************************************************/ @@ -481,26 +514,26 @@ if (mute) { if (vol_type == CS42L42_VOL_DAC) { if (chs & BIT(0)) - cs8409_i2c_write(cs42l42, CS42L42_REG_HS_VOL_CHA, 0x3f); + cs8409_i2c_write(cs42l42, CS42L42_MIXER_CHA_VOL, 0x3f); if (chs & BIT(1)) - cs8409_i2c_write(cs42l42, CS42L42_REG_HS_VOL_CHB, 0x3f); + cs8409_i2c_write(cs42l42, CS42L42_MIXER_CHB_VOL, 0x3f); } else if (vol_type == CS42L42_VOL_ADC) { if (chs & BIT(0)) - cs8409_i2c_write(cs42l42, CS42L42_REG_AMIC_VOL, 0x9f); + cs8409_i2c_write(cs42l42, CS42L42_ADC_VOLUME, 0x9f); } } else { if (vol_type == CS42L42_VOL_DAC) { if (chs & BIT(0)) - cs8409_i2c_write(cs42l42, CS42L42_REG_HS_VOL_CHA, + cs8409_i2c_write(cs42l42, CS42L42_MIXER_CHA_VOL, -(cs42l42->vol[CS42L42_DAC_CH0_VOL_OFFSET]) - & CS42L42_REG_HS_VOL_MASK); + & CS42L42_MIXER_CH_VOL_MASK); if (chs & BIT(1)) - cs8409_i2c_write(cs42l42, CS42L42_REG_HS_VOL_CHB, + cs8409_i2c_write(cs42l42, CS42L42_MIXER_CHB_VOL, -(cs42l42->vol[CS42L42_DAC_CH1_VOL_OFFSET]) - & CS42L42_REG_HS_VOL_MASK); + & CS42L42_MIXER_CH_VOL_MASK); } else if (vol_type == CS42L42_VOL_ADC) { if (chs & BIT(0)) - cs8409_i2c_write(cs42l42, CS42L42_REG_AMIC_VOL, + cs8409_i2c_write(cs42l42, CS42L42_ADC_VOLUME, cs42l42->vol[CS42L42_ADC_VOL_OFFSET] & CS42L42_REG_AMIC_VOL_MASK); } @@ -601,76 +634,167 @@ /* Configure CS42L42 slave codec for jack autodetect */ static void cs42l42_enable_jack_detect(struct sub_codec *cs42l42) { - cs8409_i2c_write(cs42l42, 0x1b70, cs42l42->hsbias_hiz); + cs8409_i2c_write(cs42l42, CS42L42_HSBIAS_SC_AUTOCTL, cs42l42->hsbias_hiz); /* Clear WAKE# */ - cs8409_i2c_write(cs42l42, 0x1b71, 0x00C1); + cs8409_i2c_write(cs42l42, CS42L42_WAKE_CTL, 0x00C1); /* Wait ~2.5ms */ usleep_range(2500, 3000); /* Set mode WAKE# output follows the combination logic directly */ - cs8409_i2c_write(cs42l42, 0x1b71, 0x00C0); + cs8409_i2c_write(cs42l42, CS42L42_WAKE_CTL, 0x00C0); /* Clear interrupts status */ - cs8409_i2c_read(cs42l42, 0x130f); + cs8409_i2c_read(cs42l42, CS42L42_TSRS_PLUG_STATUS); /* Enable interrupt */ - cs8409_i2c_write(cs42l42, 0x1320, 0xF3); + cs8409_i2c_write(cs42l42, CS42L42_TSRS_PLUG_INT_MASK, 0xF3); } /* Enable and run CS42L42 slave codec jack auto detect */ static void cs42l42_run_jack_detect(struct sub_codec *cs42l42) { /* Clear interrupts */ - cs8409_i2c_read(cs42l42, 0x1308); - cs8409_i2c_read(cs42l42, 0x1b77); - cs8409_i2c_write(cs42l42, 0x1320, 0xFF); - cs8409_i2c_read(cs42l42, 0x130f); - - cs8409_i2c_write(cs42l42, 0x1102, 0x87); - cs8409_i2c_write(cs42l42, 0x1f06, 0x86); - cs8409_i2c_write(cs42l42, 0x1b74, 0x07); - cs8409_i2c_write(cs42l42, 0x131b, 0xFD); - cs8409_i2c_write(cs42l42, 0x1120, 0x80); + cs8409_i2c_read(cs42l42, CS42L42_CODEC_STATUS); + cs8409_i2c_read(cs42l42, CS42L42_DET_STATUS1); + cs8409_i2c_write(cs42l42, CS42L42_TSRS_PLUG_INT_MASK, 0xFF); + cs8409_i2c_read(cs42l42, CS42L42_TSRS_PLUG_STATUS); + + cs8409_i2c_write(cs42l42, CS42L42_PWR_CTL2, 0x87); + cs8409_i2c_write(cs42l42, CS42L42_DAC_CTL2, 0x86); + cs8409_i2c_write(cs42l42, CS42L42_MISC_DET_CTL, 0x07); + cs8409_i2c_write(cs42l42, CS42L42_CODEC_INT_MASK, 0xFD); + cs8409_i2c_write(cs42l42, CS42L42_HSDET_CTL2, 0x80); /* Wait ~20ms*/ usleep_range(20000, 25000); - cs8409_i2c_write(cs42l42, 0x111f, 0x77); - cs8409_i2c_write(cs42l42, 0x1120, 0xc0); + cs8409_i2c_write(cs42l42, CS42L42_HSDET_CTL1, 0x77); + cs8409_i2c_write(cs42l42, CS42L42_HSDET_CTL2, 0xc0); } -static int cs42l42_handle_tip_sense(struct sub_codec *cs42l42, unsigned int reg_ts_status) +static int cs42l42_manual_hs_det(struct sub_codec *cs42l42) { - int status_changed = cs42l42->force_status_change; + unsigned int hs_det_status; + unsigned int hs_det_comp1; + unsigned int hs_det_comp2; + unsigned int hs_det_sw; + unsigned int hs_type; + + /* Set hs detect to manual, active mode */ + cs8409_i2c_write(cs42l42, CS42L42_HSDET_CTL2, + (1 << CS42L42_HSDET_CTRL_SHIFT) | + (0 << CS42L42_HSDET_SET_SHIFT) | + (0 << CS42L42_HSBIAS_REF_SHIFT) | + (0 << CS42L42_HSDET_AUTO_TIME_SHIFT)); + + /* Configure HS DET comparator reference levels. */ + cs8409_i2c_write(cs42l42, CS42L42_HSDET_CTL1, + (CS42L42_HSDET_COMP1_LVL_VAL << CS42L42_HSDET_COMP1_LVL_SHIFT) | + (CS42L42_HSDET_COMP2_LVL_VAL << CS42L42_HSDET_COMP2_LVL_SHIFT)); + + /* Open the SW_HSB_HS3 switch and close SW_HSB_HS4 for a Type 1 headset. */ + cs8409_i2c_write(cs42l42, CS42L42_HS_SWITCH_CTL, CS42L42_HSDET_SW_COMP1); + + msleep(100); + + hs_det_status = cs8409_i2c_read(cs42l42, CS42L42_HS_DET_STATUS); + + hs_det_comp1 = (hs_det_status & CS42L42_HSDET_COMP1_OUT_MASK) >> + CS42L42_HSDET_COMP1_OUT_SHIFT; + hs_det_comp2 = (hs_det_status & CS42L42_HSDET_COMP2_OUT_MASK) >> + CS42L42_HSDET_COMP2_OUT_SHIFT; + + /* Close the SW_HSB_HS3 switch for a Type 2 headset. */ + cs8409_i2c_write(cs42l42, CS42L42_HS_SWITCH_CTL, CS42L42_HSDET_SW_COMP2); + + msleep(100); + + hs_det_status = cs8409_i2c_read(cs42l42, CS42L42_HS_DET_STATUS); + + hs_det_comp1 |= ((hs_det_status & CS42L42_HSDET_COMP1_OUT_MASK) >> + CS42L42_HSDET_COMP1_OUT_SHIFT) << 1; + hs_det_comp2 |= ((hs_det_status & CS42L42_HSDET_COMP2_OUT_MASK) >> + CS42L42_HSDET_COMP2_OUT_SHIFT) << 1; + + /* Use Comparator 1 with 1.25V Threshold. */ + switch (hs_det_comp1) { + case CS42L42_HSDET_COMP_TYPE1: + hs_type = CS42L42_PLUG_CTIA; + hs_det_sw = CS42L42_HSDET_SW_TYPE1; + break; + case CS42L42_HSDET_COMP_TYPE2: + hs_type = CS42L42_PLUG_OMTP; + hs_det_sw = CS42L42_HSDET_SW_TYPE2; + break; + default: + /* Fallback to Comparator 2 with 1.75V Threshold. */ + switch (hs_det_comp2) { + case CS42L42_HSDET_COMP_TYPE1: + hs_type = CS42L42_PLUG_CTIA; + hs_det_sw = CS42L42_HSDET_SW_TYPE1; + break; + case CS42L42_HSDET_COMP_TYPE2: + hs_type = CS42L42_PLUG_OMTP; + hs_det_sw = CS42L42_HSDET_SW_TYPE2; + break; + case CS42L42_HSDET_COMP_TYPE3: + hs_type = CS42L42_PLUG_HEADPHONE; + hs_det_sw = CS42L42_HSDET_SW_TYPE3; + break; + default: + hs_type = CS42L42_PLUG_INVALID; + hs_det_sw = CS42L42_HSDET_SW_TYPE4; + break; + } + } + + /* Set Switches */ + cs8409_i2c_write(cs42l42, CS42L42_HS_SWITCH_CTL, hs_det_sw); + + /* Set HSDET mode to Manual—Disabled */ + cs8409_i2c_write(cs42l42, CS42L42_HSDET_CTL2, + (0 << CS42L42_HSDET_CTRL_SHIFT) | + (0 << CS42L42_HSDET_SET_SHIFT) | + (0 << CS42L42_HSBIAS_REF_SHIFT) | + (0 << CS42L42_HSDET_AUTO_TIME_SHIFT)); + + /* Configure HS DET comparator reference levels. */ + cs8409_i2c_write(cs42l42, CS42L42_HSDET_CTL1, + (CS42L42_HSDET_COMP1_LVL_DEFAULT << CS42L42_HSDET_COMP1_LVL_SHIFT) | + (CS42L42_HSDET_COMP2_LVL_DEFAULT << CS42L42_HSDET_COMP2_LVL_SHIFT)); + + return hs_type; +} - cs42l42->force_status_change = 0; +static int cs42l42_handle_tip_sense(struct sub_codec *cs42l42, unsigned int reg_ts_status) +{ + int status_changed = 0; /* TIP_SENSE INSERT/REMOVE */ switch (reg_ts_status) { - case CS42L42_JACK_INSERTED: - if (!cs42l42->hp_jack_in) { - if (cs42l42->no_type_dect) { - status_changed = 1; - cs42l42->hp_jack_in = 1; - cs42l42->mic_jack_in = 0; - } else { - cs42l42_run_jack_detect(cs42l42); - } - } - break; - - case CS42L42_JACK_REMOVED: - if (cs42l42->hp_jack_in || cs42l42->mic_jack_in) { + case CS42L42_TS_PLUG: + if (cs42l42->no_type_dect) { status_changed = 1; - cs42l42->hp_jack_in = 0; + cs42l42->hp_jack_in = 1; cs42l42->mic_jack_in = 0; + } else { + cs42l42_run_jack_detect(cs42l42); } break; + + case CS42L42_TS_UNPLUG: + status_changed = 1; + cs42l42->hp_jack_in = 0; + cs42l42->mic_jack_in = 0; + break; default: /* jack in transition */ break; } + codec_dbg(cs42l42->codec, "Tip Sense Detection: (%d)\n", reg_ts_status); + return status_changed; } static int cs42l42_jack_unsol_event(struct sub_codec *cs42l42) { + int current_plug_status; int status_changed = 0; int reg_cdc_status; int reg_hs_status; @@ -678,46 +802,65 @@ int type; /* Read jack detect status registers */ - reg_cdc_status = cs8409_i2c_read(cs42l42, 0x1308); - reg_hs_status = cs8409_i2c_read(cs42l42, 0x1124); - reg_ts_status = cs8409_i2c_read(cs42l42, 0x130f); + reg_cdc_status = cs8409_i2c_read(cs42l42, CS42L42_CODEC_STATUS); + reg_hs_status = cs8409_i2c_read(cs42l42, CS42L42_HS_DET_STATUS); + reg_ts_status = cs8409_i2c_read(cs42l42, CS42L42_TSRS_PLUG_STATUS); /* If status values are < 0, read error has occurred. */ if (reg_cdc_status < 0 || reg_hs_status < 0 || reg_ts_status < 0) return -EIO; + current_plug_status = (reg_ts_status & (CS42L42_TS_PLUG_MASK | CS42L42_TS_UNPLUG_MASK)) + >> CS42L42_TS_PLUG_SHIFT; + /* HSDET_AUTO_DONE */ - if (reg_cdc_status & CS42L42_HSDET_AUTO_DONE) { + if (reg_cdc_status & CS42L42_HSDET_AUTO_DONE_MASK) { /* Disable HSDET_AUTO_DONE */ - cs8409_i2c_write(cs42l42, 0x131b, 0xFF); + cs8409_i2c_write(cs42l42, CS42L42_CODEC_INT_MASK, 0xFF); - type = ((reg_hs_status & CS42L42_HSTYPE_MASK) + 1); + type = (reg_hs_status & CS42L42_HSDET_TYPE_MASK) >> CS42L42_HSDET_TYPE_SHIFT; + + /* Configure the HSDET mode. */ + cs8409_i2c_write(cs42l42, CS42L42_HSDET_CTL2, 0x80); if (cs42l42->no_type_dect) { - status_changed = cs42l42_handle_tip_sense(cs42l42, reg_ts_status); - } else if (type == 4) { - /* Type 4 not supported */ - status_changed = cs42l42_handle_tip_sense(cs42l42, CS42L42_JACK_REMOVED); + status_changed = cs42l42_handle_tip_sense(cs42l42, current_plug_status); } else { - if (!cs42l42->hp_jack_in) { - status_changed = 1; - cs42l42->hp_jack_in = 1; + if (type == CS42L42_PLUG_INVALID || type == CS42L42_PLUG_HEADPHONE) { + codec_dbg(cs42l42->codec, + "Auto detect value not valid (%d), running manual det\n", + type); + type = cs42l42_manual_hs_det(cs42l42); } - /* type = 3 has no mic */ - if ((!cs42l42->mic_jack_in) && (type != 3)) { + + switch (type) { + case CS42L42_PLUG_CTIA: + case CS42L42_PLUG_OMTP: status_changed = 1; + cs42l42->hp_jack_in = 1; cs42l42->mic_jack_in = 1; + break; + case CS42L42_PLUG_HEADPHONE: + status_changed = 1; + cs42l42->hp_jack_in = 1; + cs42l42->mic_jack_in = 0; + break; + default: + status_changed = 1; + cs42l42->hp_jack_in = 0; + cs42l42->mic_jack_in = 0; + break; } + codec_dbg(cs42l42->codec, "Detection done (%d)\n", type); } - /* Configure the HSDET mode. */ - cs8409_i2c_write(cs42l42, 0x1120, 0x80); + /* Enable the HPOUT ground clamp and configure the HP pull-down */ - cs8409_i2c_write(cs42l42, 0x1F06, 0x02); + cs8409_i2c_write(cs42l42, CS42L42_DAC_CTL2, 0x02); /* Re-Enable Tip Sense Interrupt */ - cs8409_i2c_write(cs42l42, 0x1320, 0xF3); + cs8409_i2c_write(cs42l42, CS42L42_TSRS_PLUG_INT_MASK, 0xF3); } else { - status_changed = cs42l42_handle_tip_sense(cs42l42, reg_ts_status); + status_changed = cs42l42_handle_tip_sense(cs42l42, current_plug_status); } return status_changed; @@ -726,19 +869,19 @@ static void cs42l42_resume(struct sub_codec *cs42l42) { struct hda_codec *codec = cs42l42->codec; - unsigned int gpio_data; + struct cs8409_spec *spec = codec->spec; struct cs8409_i2c_param irq_regs[] = { - { 0x1308, 0x00 }, - { 0x1309, 0x00 }, - { 0x130A, 0x00 }, - { 0x130F, 0x00 }, + { CS42L42_CODEC_STATUS, 0x00 }, + { CS42L42_DET_INT_STATUS1, 0x00 }, + { CS42L42_DET_INT_STATUS2, 0x00 }, + { CS42L42_TSRS_PLUG_STATUS, 0x00 }, }; int fsv_old, fsv_new; /* Bring CS42L42 out of Reset */ - gpio_data = snd_hda_codec_read(codec, CS8409_PIN_AFG, 0, AC_VERB_GET_GPIO_DATA, 0); - gpio_data |= cs42l42->reset_gpio; - snd_hda_codec_write(codec, CS8409_PIN_AFG, 0, AC_VERB_SET_GPIO_DATA, gpio_data); + spec->gpio_data = snd_hda_codec_read(codec, CS8409_PIN_AFG, 0, AC_VERB_GET_GPIO_DATA, 0); + spec->gpio_data |= cs42l42->reset_gpio; + snd_hda_codec_write(codec, CS8409_PIN_AFG, 0, AC_VERB_SET_GPIO_DATA, spec->gpio_data); usleep_range(10000, 15000); cs42l42->suspended = 0; @@ -750,13 +893,13 @@ /* Clear interrupts, by reading interrupt status registers */ cs8409_i2c_bulk_read(cs42l42, irq_regs, ARRAY_SIZE(irq_regs)); - fsv_old = cs8409_i2c_read(cs42l42, 0x2001); + fsv_old = cs8409_i2c_read(cs42l42, CS42L42_HP_CTL); if (cs42l42->full_scale_vol == CS42L42_FULL_SCALE_VOL_0DB) fsv_new = fsv_old & ~CS42L42_FULL_SCALE_VOL_MASK; else fsv_new = fsv_old & CS42L42_FULL_SCALE_VOL_MASK; if (fsv_new != fsv_old) - cs8409_i2c_write(cs42l42, 0x2001, fsv_new); + cs8409_i2c_write(cs42l42, CS42L42_HP_CTL, fsv_new); /* we have to explicitly allow unsol event handling even during the * resume phase so that the jack event is processed properly @@ -770,41 +913,40 @@ static void cs42l42_suspend(struct sub_codec *cs42l42) { struct hda_codec *codec = cs42l42->codec; - unsigned int gpio_data; + struct cs8409_spec *spec = codec->spec; int reg_cdc_status = 0; const struct cs8409_i2c_param cs42l42_pwr_down_seq[] = { - { 0x1F06, 0x02 }, - { 0x1129, 0x00 }, - { 0x2301, 0x3F }, - { 0x2302, 0x3F }, - { 0x2303, 0x3F }, - { 0x2001, 0x0F }, - { 0x2A01, 0x00 }, - { 0x1207, 0x00 }, - { 0x1101, 0xFE }, - { 0x1102, 0x8C }, - { 0x1101, 0xFF }, + { CS42L42_DAC_CTL2, 0x02 }, + { CS42L42_HS_CLAMP_DISABLE, 0x00 }, + { CS42L42_MIXER_CHA_VOL, 0x3F }, + { CS42L42_MIXER_ADC_VOL, 0x3F }, + { CS42L42_MIXER_CHB_VOL, 0x3F }, + { CS42L42_HP_CTL, 0x0F }, + { CS42L42_ASP_RX_DAI0_EN, 0x00 }, + { CS42L42_ASP_CLK_CFG, 0x00 }, + { CS42L42_PWR_CTL1, 0xFE }, + { CS42L42_PWR_CTL2, 0x8C }, + { CS42L42_PWR_CTL1, 0xFF }, }; cs8409_i2c_bulk_write(cs42l42, cs42l42_pwr_down_seq, ARRAY_SIZE(cs42l42_pwr_down_seq)); if (read_poll_timeout(cs8409_i2c_read, reg_cdc_status, (reg_cdc_status & 0x1), CS42L42_PDN_SLEEP_US, CS42L42_PDN_TIMEOUT_US, - true, cs42l42, 0x1308) < 0) + true, cs42l42, CS42L42_CODEC_STATUS) < 0) codec_warn(codec, "Timeout waiting for PDN_DONE for CS42L42\n"); /* Power down CS42L42 ASP/EQ/MIX/HP */ - cs8409_i2c_write(cs42l42, 0x1102, 0x9C); + cs8409_i2c_write(cs42l42, CS42L42_PWR_CTL2, 0x9C); cs42l42->suspended = 1; cs42l42->last_page = 0; cs42l42->hp_jack_in = 0; cs42l42->mic_jack_in = 0; - cs42l42->force_status_change = 1; /* Put CS42L42 into Reset */ - gpio_data = snd_hda_codec_read(codec, CS8409_PIN_AFG, 0, AC_VERB_GET_GPIO_DATA, 0); - gpio_data &= ~cs42l42->reset_gpio; - snd_hda_codec_write(codec, CS8409_PIN_AFG, 0, AC_VERB_SET_GPIO_DATA, gpio_data); + spec->gpio_data = snd_hda_codec_read(codec, CS8409_PIN_AFG, 0, AC_VERB_GET_GPIO_DATA, 0); + spec->gpio_data &= ~cs42l42->reset_gpio; + snd_hda_codec_write(codec, CS8409_PIN_AFG, 0, AC_VERB_SET_GPIO_DATA, spec->gpio_data); } #endif @@ -918,6 +1060,10 @@ /* DMIC1_MO=00b, DMIC1/2_SR=1 */ cs8409_vendor_coef_set(codec, CS8409_DMIC_CFG, 0x0003); break; + case CS8409_ODIN: + /* ASP1/2_xxx_EN=1, ASP1/2_MCLK_EN=0, DMIC1_SCL_EN=0 */ + cs8409_vendor_coef_set(codec, CS8409_PAD_CFG_SLW_RATE_CTRL, 0xfc00); + break; default: break; } @@ -994,6 +1140,8 @@ spec->gen.no_primary_hp = 1; spec->gen.suppress_vmaster = 1; + spec->speaker_pdn_gpio = 0; + /* GPIO 5 out, 3,4 in */ spec->gpio_dir = spec->scodecs[CS8409_CODEC0]->reset_gpio; spec->gpio_data = 0; @@ -1005,20 +1153,33 @@ cs8409_fix_caps(codec, CS8409_CS42L42_HP_PIN_NID); cs8409_fix_caps(codec, CS8409_CS42L42_AMIC_PIN_NID); - /* Set HSBIAS_SENSE_EN and Full Scale volume for some variants. */ + spec->scodecs[CS8409_CODEC0]->hsbias_hiz = 0x0020; + switch (codec->fixup_id) { + case CS8409_CYBORG: + spec->scodecs[CS8409_CODEC0]->full_scale_vol = + CS42L42_FULL_SCALE_VOL_MINUS6DB; + spec->speaker_pdn_gpio = CS8409_CYBORG_SPEAKER_PDN; + break; + case CS8409_ODIN: + spec->scodecs[CS8409_CODEC0]->full_scale_vol = CS42L42_FULL_SCALE_VOL_0DB; + spec->speaker_pdn_gpio = CS8409_CYBORG_SPEAKER_PDN; + break; case CS8409_WARLOCK_MLK: case CS8409_WARLOCK_MLK_DUAL_MIC: - spec->scodecs[CS8409_CODEC0]->hsbias_hiz = 0x0020; spec->scodecs[CS8409_CODEC0]->full_scale_vol = CS42L42_FULL_SCALE_VOL_0DB; break; default: - spec->scodecs[CS8409_CODEC0]->hsbias_hiz = 0x0020; spec->scodecs[CS8409_CODEC0]->full_scale_vol = CS42L42_FULL_SCALE_VOL_MINUS6DB; break; } + if (spec->speaker_pdn_gpio > 0) { + spec->gpio_dir |= spec->speaker_pdn_gpio; + spec->gpio_data |= spec->speaker_pdn_gpio; + } + break; case HDA_FIXUP_ACT_PROBE: /* Fix Sample Rate to 48kHz */ @@ -1027,13 +1188,17 @@ /* add hooks */ spec->gen.pcm_playback_hook = cs42l42_playback_pcm_hook; spec->gen.pcm_capture_hook = cs42l42_capture_pcm_hook; - /* Set initial DMIC volume to -26 dB */ - snd_hda_codec_amp_init_stereo(codec, CS8409_CS42L42_DMIC_ADC_PIN_NID, - HDA_INPUT, 0, 0xff, 0x19); + if (codec->fixup_id != CS8409_ODIN) + /* Set initial DMIC volume to -26 dB */ + snd_hda_codec_amp_init_stereo(codec, CS8409_CS42L42_DMIC_ADC_PIN_NID, + HDA_INPUT, 0, 0xff, 0x19); snd_hda_gen_add_kctl(&spec->gen, "Headphone Playback Volume", &cs42l42_dac_volume_mixer); snd_hda_gen_add_kctl(&spec->gen, "Mic Capture Volume", &cs42l42_adc_volume_mixer); + if (spec->speaker_pdn_gpio > 0) + snd_hda_gen_add_kctl(&spec->gen, "Speaker Playback Switch", + &cs8409_spk_sw_ctrl); /* Disable Unsolicited Response during boot */ cs8409_enable_ur(codec, 0); snd_hda_codec_set_name(codec, "CS8409/CS42L42"); diff -u linux-intel-iotg-5.15-5.15.0/sound/pci/hda/patch_cs8409.h linux-intel-iotg-5.15-5.15.0/sound/pci/hda/patch_cs8409.h --- linux-intel-iotg-5.15-5.15.0/sound/pci/hda/patch_cs8409.h +++ linux-intel-iotg-5.15-5.15.0/sound/pci/hda/patch_cs8409.h @@ -12,6 +12,7 @@ #include #include #include +#include #include #include "hda_local.h" #include "hda_auto_parser.h" @@ -222,15 +223,8 @@ #define CS42L42_HP_VOL_REAL_MAX (0) #define CS42L42_AMIC_VOL_REAL_MIN (-97) #define CS42L42_AMIC_VOL_REAL_MAX (12) -#define CS42L42_REG_HS_VOL_CHA (0x2301) -#define CS42L42_REG_HS_VOL_CHB (0x2303) -#define CS42L42_REG_HS_VOL_MASK (0x003F) -#define CS42L42_REG_AMIC_VOL (0x1D03) #define CS42L42_REG_AMIC_VOL_MASK (0x00FF) -#define CS42L42_HSDET_AUTO_DONE (0x02) #define CS42L42_HSTYPE_MASK (0x03) -#define CS42L42_JACK_INSERTED (0x0C) -#define CS42L42_JACK_REMOVED (0x00) #define CS42L42_I2C_TIMEOUT_US (20000) #define CS42L42_I2C_SLEEP_US (2000) #define CS42L42_PDN_TIMEOUT_US (250000) @@ -244,6 +238,7 @@ #define CS42L42_I2C_ADDR (0x48 << 1) #define CS8409_CS42L42_RESET GENMASK(5, 5) /* CS8409_GPIO5 */ #define CS8409_CS42L42_INT GENMASK(4, 4) /* CS8409_GPIO4 */ +#define CS8409_CYBORG_SPEAKER_PDN GENMASK(2, 2) /* CS8409_GPIO2 */ #define CS8409_CS42L42_HP_PIN_NID CS8409_PIN_ASP1_TRANSMITTER_A #define CS8409_CS42L42_SPK_PIN_NID CS8409_PIN_ASP2_TRANSMITTER_A #define CS8409_CS42L42_AMIC_PIN_NID CS8409_PIN_ASP1_RECEIVER_A @@ -273,6 +268,7 @@ CS8409_FIXUPS, CS8409_DOLPHIN, CS8409_DOLPHIN_FIXUPS, + CS8409_ODIN, }; enum { @@ -310,7 +306,6 @@ unsigned int hp_jack_in:1; unsigned int mic_jack_in:1; - unsigned int force_status_change:1; unsigned int suspended:1; unsigned int paged:1; unsigned int last_page; @@ -332,6 +327,8 @@ unsigned int gpio_dir; unsigned int gpio_data; + int speaker_pdn_gpio; + struct mutex i2c_mux; unsigned int i2c_clck_enabled; unsigned int dev_addr; diff -u linux-intel-iotg-5.15-5.15.0/sound/pci/hda/patch_hdmi.c linux-intel-iotg-5.15-5.15.0/sound/pci/hda/patch_hdmi.c --- linux-intel-iotg-5.15-5.15.0/sound/pci/hda/patch_hdmi.c +++ linux-intel-iotg-5.15-5.15.0/sound/pci/hda/patch_hdmi.c @@ -1387,7 +1387,7 @@ last_try: /* the last try; check the empty slots in pins */ - for (i = 0; i < spec->num_nids; i++) { + for (i = 0; i < spec->pcm_used; i++) { if (!test_bit(i, &spec->pcm_bitmap)) return i; } @@ -2263,7 +2263,9 @@ * dev_num is the device entry number in a pin */ - if (codec->mst_no_extra_pcms) + if (spec->dyn_pcm_no_legacy && codec->mst_no_extra_pcms) + pcm_num = spec->num_cvts; + else if (codec->mst_no_extra_pcms) pcm_num = spec->num_nids; else pcm_num = spec->num_nids + spec->dev_num - 1; diff -u linux-intel-iotg-5.15-5.15.0/sound/pci/hda/patch_realtek.c linux-intel-iotg-5.15-5.15.0/sound/pci/hda/patch_realtek.c --- linux-intel-iotg-5.15-5.15.0/sound/pci/hda/patch_realtek.c +++ linux-intel-iotg-5.15-5.15.0/sound/pci/hda/patch_realtek.c @@ -937,6 +937,9 @@ return 0; } +#define alc_free snd_hda_gen_free + +#ifdef CONFIG_PM static inline void alc_shutup(struct hda_codec *codec) { struct alc_spec *spec = codec->spec; @@ -950,9 +953,6 @@ alc_shutup_pins(codec); } -#define alc_free snd_hda_gen_free - -#ifdef CONFIG_PM static void alc_power_eapd(struct hda_codec *codec) { alc_auto_setup_eapd(codec, false); @@ -966,9 +966,7 @@ spec->power_hook(codec); return 0; } -#endif -#ifdef CONFIG_PM static int alc_resume(struct hda_codec *codec) { struct alc_spec *spec = codec->spec; @@ -1983,6 +1981,7 @@ ALC1220_FIXUP_CLEVO_PB51ED_PINS, ALC887_FIXUP_ASUS_AUDIO, ALC887_FIXUP_ASUS_HMIC, + ALCS1200A_FIXUP_MIC_VREF, }; static void alc889_fixup_coef(struct hda_codec *codec, @@ -2528,6 +2527,14 @@ .chained = true, .chain_id = ALC887_FIXUP_ASUS_AUDIO, }, + [ALCS1200A_FIXUP_MIC_VREF] = { + .type = HDA_FIXUP_PINCTLS, + .v.pins = (const struct hda_pintbl[]) { + { 0x18, PIN_VREF50 }, /* rear mic */ + { 0x19, PIN_VREF50 }, /* front mic */ + {} + } + }, }; static const struct snd_pci_quirk alc882_fixup_tbl[] = { @@ -2565,6 +2572,7 @@ SND_PCI_QUIRK(0x1043, 0x835f, "Asus Eee 1601", ALC888_FIXUP_EEE1601), SND_PCI_QUIRK(0x1043, 0x84bc, "ASUS ET2700", ALC887_FIXUP_ASUS_BASS), SND_PCI_QUIRK(0x1043, 0x8691, "ASUS ROG Ranger VIII", ALC882_FIXUP_GPIO3), + SND_PCI_QUIRK(0x1043, 0x8797, "ASUS TUF B550M-PLUS", ALCS1200A_FIXUP_MIC_VREF), SND_PCI_QUIRK(0x104d, 0x9043, "Sony Vaio VGC-LN51JGB", ALC882_FIXUP_NO_PRIMARY_HP), SND_PCI_QUIRK(0x104d, 0x9044, "Sony VAIO AiO", ALC882_FIXUP_NO_PRIMARY_HP), SND_PCI_QUIRK(0x104d, 0x9047, "Sony Vaio TT", ALC889_FIXUP_VAIO_TT), @@ -3133,6 +3141,7 @@ ALC269_TYPE_ALC257, ALC269_TYPE_ALC215, ALC269_TYPE_ALC225, + ALC269_TYPE_ALC245, ALC269_TYPE_ALC287, ALC269_TYPE_ALC294, ALC269_TYPE_ALC300, @@ -3170,6 +3179,7 @@ case ALC269_TYPE_ALC257: case ALC269_TYPE_ALC215: case ALC269_TYPE_ALC225: + case ALC269_TYPE_ALC245: case ALC269_TYPE_ALC287: case ALC269_TYPE_ALC294: case ALC269_TYPE_ALC300: @@ -3697,7 +3707,8 @@ hda_nid_t hp_pin = alc_get_hp_pin(spec); bool hp1_pin_sense, hp2_pin_sense; - if (spec->codec_variant != ALC269_TYPE_ALC287) + if (spec->codec_variant != ALC269_TYPE_ALC287 && + spec->codec_variant != ALC269_TYPE_ALC245) /* required only at boot or S3 and S4 resume time */ if (!spec->done_hp_init || is_s3_resume(codec) || @@ -8774,6 +8785,8 @@ [ALC287_FIXUP_CS35L41_I2C_2] = { .type = HDA_FIXUP_FUNC, .v.func = cs35l41_fixup_i2c_two, + .chained = true, + .chain_id = ALC269_FIXUP_THINKPAD_ACPI, }, [ALC287_FIXUP_CS35L41_I2C_2_HP_GPIO_LED] = { .type = HDA_FIXUP_FUNC, @@ -8797,9 +8810,9 @@ }, [ALC245_FIXUP_CS35L41_SPI_4_HP_GPIO_LED] = { .type = HDA_FIXUP_FUNC, - .v.func = alc245_fixup_hp_gpio_led, + .v.func = cs35l41_fixup_spi_four, .chained = true, - .chain_id = ALC245_FIXUP_CS35L41_SPI_4, + .chain_id = ALC285_FIXUP_HP_GPIO_LED, }, [ALC285_FIXUP_HP_SPEAKERS_MICMUTE_LED] = { .type = HDA_FIXUP_VERBS, @@ -8906,6 +8919,7 @@ SND_PCI_QUIRK(0x1028, 0x0a62, "Dell Precision 5560", ALC289_FIXUP_DUAL_SPK), SND_PCI_QUIRK(0x1028, 0x0a9d, "Dell Latitude 5430", ALC269_FIXUP_DELL4_MIC_NO_PRESENCE), SND_PCI_QUIRK(0x1028, 0x0a9e, "Dell Latitude 5430", ALC269_FIXUP_DELL4_MIC_NO_PRESENCE), + SND_PCI_QUIRK(0x1028, 0x0b19, "Dell XPS 15 9520", ALC289_FIXUP_DUAL_SPK), SND_PCI_QUIRK(0x1028, 0x164a, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE), SND_PCI_QUIRK(0x1028, 0x164b, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE), SND_PCI_QUIRK(0x103c, 0x1586, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC2), @@ -9043,11 +9057,16 @@ SND_PCI_QUIRK(0x103c, 0x8995, "HP EliteBook 855 G9", ALC287_FIXUP_CS35L41_I2C_2), SND_PCI_QUIRK(0x103c, 0x89a4, "HP ProBook 440 G9", ALC236_FIXUP_HP_GPIO_LED), SND_PCI_QUIRK(0x103c, 0x89a6, "HP ProBook 450 G9", ALC236_FIXUP_HP_GPIO_LED), + SND_PCI_QUIRK(0x103c, 0x89aa, "HP EliteBook 630 G9", ALC236_FIXUP_HP_GPIO_LED), SND_PCI_QUIRK(0x103c, 0x89ac, "HP EliteBook 640 G9", ALC236_FIXUP_HP_GPIO_LED), SND_PCI_QUIRK(0x103c, 0x89ae, "HP EliteBook 650 G9", ALC236_FIXUP_HP_GPIO_LED), SND_PCI_QUIRK(0x103c, 0x89c3, "Zbook Studio G9", ALC245_FIXUP_CS35L41_SPI_4_HP_GPIO_LED), SND_PCI_QUIRK(0x103c, 0x89c6, "Zbook Fury 17 G9", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED), SND_PCI_QUIRK(0x103c, 0x89ca, "HP", ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF), + SND_PCI_QUIRK(0x103c, 0x8aa0, "HP ProBook 440 G9 (MB 8A9E)", ALC236_FIXUP_HP_GPIO_LED), + SND_PCI_QUIRK(0x103c, 0x8aa3, "HP ProBook 450 G9 (MB 8AA1)", ALC236_FIXUP_HP_GPIO_LED), + 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(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), @@ -9175,6 +9194,7 @@ SND_PCI_QUIRK(0x1558, 0x8562, "Clevo NH[57][0-9]RZ[Q]", ALC269_FIXUP_DMIC), SND_PCI_QUIRK(0x1558, 0x8668, "Clevo NP50B[BE]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE), SND_PCI_QUIRK(0x1558, 0x866d, "Clevo NP5[05]PN[HJK]", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE), + SND_PCI_QUIRK(0x1558, 0x867c, "Clevo NP7[01]PNP", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE), SND_PCI_QUIRK(0x1558, 0x867d, "Clevo NP7[01]PN[HJK]", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE), SND_PCI_QUIRK(0x1558, 0x8680, "Clevo NJ50LU", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE), SND_PCI_QUIRK(0x1558, 0x8686, "Clevo NH50[CZ]U", ALC256_FIXUP_MIC_NO_PRESENCE_AND_RESUME), @@ -9249,6 +9269,7 @@ SND_PCI_QUIRK(0x17aa, 0x3813, "Legion 7i 15IMHG05", ALC287_FIXUP_LEGION_15IMHG05_SPEAKERS), SND_PCI_QUIRK(0x17aa, 0x3818, "Lenovo C940", ALC298_FIXUP_LENOVO_SPK_VOLUME), SND_PCI_QUIRK(0x17aa, 0x3819, "Lenovo 13s Gen2 ITL", ALC287_FIXUP_13S_GEN2_SPEAKERS), + SND_PCI_QUIRK(0x17aa, 0x3820, "Yoga Duet 7 13ITL6", ALC287_FIXUP_YOGA7_14ITL_SPEAKERS), SND_PCI_QUIRK(0x17aa, 0x3824, "Legion Y9000X 2020", ALC285_FIXUP_LEGION_Y9000X_SPEAKERS), SND_PCI_QUIRK(0x17aa, 0x3827, "Ideapad S740", ALC285_FIXUP_IDEAPAD_S740_COEF), SND_PCI_QUIRK(0x17aa, 0x3834, "Lenovo IdeaPad Slim 9i 14ITL5", ALC287_FIXUP_YOGA7_14ITL_SPEAKERS), @@ -9291,6 +9312,14 @@ SND_PCI_QUIRK(0x1c06, 0x2013, "Lemote A1802", ALC269_FIXUP_LEMOTE_A1802), SND_PCI_QUIRK(0x1c06, 0x2015, "Lemote A190X", ALC269_FIXUP_LEMOTE_A190X), SND_PCI_QUIRK(0x1d05, 0x1132, "TongFang PHxTxX1", ALC256_FIXUP_SET_COEF_DEFAULTS), + SND_PCI_QUIRK(0x1d05, 0x1096, "TongFang GMxMRxx", ALC269_FIXUP_NO_SHUTUP), + SND_PCI_QUIRK(0x1d05, 0x1100, "TongFang GKxNRxx", ALC269_FIXUP_NO_SHUTUP), + SND_PCI_QUIRK(0x1d05, 0x1111, "TongFang GMxZGxx", ALC269_FIXUP_NO_SHUTUP), + SND_PCI_QUIRK(0x1d05, 0x1119, "TongFang GMxZGxx", ALC269_FIXUP_NO_SHUTUP), + SND_PCI_QUIRK(0x1d05, 0x1129, "TongFang GMxZGxx", ALC269_FIXUP_NO_SHUTUP), + SND_PCI_QUIRK(0x1d05, 0x1147, "TongFang GMxTGxx", ALC269_FIXUP_NO_SHUTUP), + SND_PCI_QUIRK(0x1d05, 0x115c, "TongFang GMxTGxx", ALC269_FIXUP_NO_SHUTUP), + SND_PCI_QUIRK(0x1d05, 0x121b, "TongFang GMxAGxx", ALC269_FIXUP_NO_SHUTUP), SND_PCI_QUIRK(0x1d72, 0x1602, "RedmiBook", ALC255_FIXUP_XIAOMI_HEADSET_MIC), SND_PCI_QUIRK(0x1d72, 0x1701, "XiaomiNotebook Pro", ALC298_FIXUP_DELL1_MIC_NO_PRESENCE), SND_PCI_QUIRK(0x1d72, 0x1901, "RedmiBook 14", ALC256_FIXUP_ASUS_HEADSET_MIC), @@ -10088,7 +10117,10 @@ case 0x10ec0245: case 0x10ec0285: case 0x10ec0289: - spec->codec_variant = ALC269_TYPE_ALC215; + if (alc_get_coef0(codec) & 0x0010) + spec->codec_variant = ALC269_TYPE_ALC245; + else + spec->codec_variant = ALC269_TYPE_ALC215; spec->shutup = alc225_shutup; spec->init_hook = alc225_init; spec->gen.mixer_nid = 0; @@ -10697,6 +10729,7 @@ ALC668_FIXUP_MIC_DET_COEF, ALC897_FIXUP_LENOVO_HEADSET_MIC, ALC897_FIXUP_HEADSET_MIC_PIN, + ALC897_FIXUP_HP_HSMIC_VERB, }; static const struct hda_fixup alc662_fixups[] = { @@ -11116,6 +11149,13 @@ .chained = true, .chain_id = ALC897_FIXUP_LENOVO_HEADSET_MIC }, + [ALC897_FIXUP_HP_HSMIC_VERB] = { + .type = HDA_FIXUP_PINS, + .v.pins = (const struct hda_pintbl[]) { + { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */ + { } + }, + }, }; static const struct snd_pci_quirk alc662_fixup_tbl[] = { @@ -11141,6 +11181,7 @@ SND_PCI_QUIRK(0x1028, 0x0698, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE), SND_PCI_QUIRK(0x1028, 0x069f, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE), SND_PCI_QUIRK(0x103c, 0x1632, "HP RP5800", ALC662_FIXUP_HP_RP5800), + SND_PCI_QUIRK(0x103c, 0x8719, "HP", ALC897_FIXUP_HP_HSMIC_VERB), SND_PCI_QUIRK(0x103c, 0x873e, "HP", ALC671_FIXUP_HP_HEADSET_MIC2), SND_PCI_QUIRK(0x103c, 0x885f, "HP 288 Pro G8", ALC671_FIXUP_HP_HEADSET_MIC2), SND_PCI_QUIRK(0x1043, 0x1080, "Asus UX501VW", ALC668_FIXUP_HEADSET_MODE), diff -u linux-intel-iotg-5.15-5.15.0/sound/soc/atmel/sam9g20_wm8731.c linux-intel-iotg-5.15-5.15.0/sound/soc/atmel/sam9g20_wm8731.c --- linux-intel-iotg-5.15-5.15.0/sound/soc/atmel/sam9g20_wm8731.c +++ linux-intel-iotg-5.15-5.15.0/sound/soc/atmel/sam9g20_wm8731.c @@ -46,35 +46,6 @@ */ #undef ENABLE_MIC_INPUT -static struct clk *mclk; - -static int at91sam9g20ek_set_bias_level(struct snd_soc_card *card, - struct snd_soc_dapm_context *dapm, - enum snd_soc_bias_level level) -{ - static int mclk_on; - int ret = 0; - - switch (level) { - case SND_SOC_BIAS_ON: - case SND_SOC_BIAS_PREPARE: - if (!mclk_on) - ret = clk_enable(mclk); - if (ret == 0) - mclk_on = 1; - break; - - case SND_SOC_BIAS_OFF: - case SND_SOC_BIAS_STANDBY: - if (mclk_on) - clk_disable(mclk); - mclk_on = 0; - break; - } - - return ret; -} - static const struct snd_soc_dapm_widget at91sam9g20ek_dapm_widgets[] = { SND_SOC_DAPM_MIC("Int Mic", NULL), SND_SOC_DAPM_SPK("Ext Spk", NULL), @@ -135,7 +106,6 @@ .owner = THIS_MODULE, .dai_link = &at91sam9g20ek_dai, .num_links = 1, - .set_bias_level = at91sam9g20ek_set_bias_level, .dapm_widgets = at91sam9g20ek_dapm_widgets, .num_dapm_widgets = ARRAY_SIZE(at91sam9g20ek_dapm_widgets), @@ -148,7 +118,6 @@ { struct device_node *np = pdev->dev.of_node; struct device_node *codec_np, *cpu_np; - struct clk *pllb; struct snd_soc_card *card = &snd_soc_at91sam9g20ek; int ret; @@ -162,31 +131,6 @@ return -EINVAL; } - /* - * Codec MCLK is supplied by PCK0 - set it up. - */ - mclk = clk_get(NULL, "pck0"); - if (IS_ERR(mclk)) { - dev_err(&pdev->dev, "Failed to get MCLK\n"); - ret = PTR_ERR(mclk); - goto err; - } - - pllb = clk_get(NULL, "pllb"); - if (IS_ERR(pllb)) { - dev_err(&pdev->dev, "Failed to get PLLB\n"); - ret = PTR_ERR(pllb); - goto err_mclk; - } - ret = clk_set_parent(mclk, pllb); - clk_put(pllb); - if (ret != 0) { - dev_err(&pdev->dev, "Failed to set MCLK parent\n"); - goto err_mclk; - } - - clk_set_rate(mclk, MCLK_RATE); - card->dev = &pdev->dev; /* Parse device node info */ @@ -230,9 +174,6 @@ return ret; -err_mclk: - clk_put(mclk); - mclk = NULL; err: atmel_ssc_put_audio(0); return ret; @@ -242,8 +183,6 @@ { struct snd_soc_card *card = platform_get_drvdata(pdev); - clk_disable(mclk); - mclk = NULL; snd_soc_unregister_card(card); atmel_ssc_put_audio(0); diff -u linux-intel-iotg-5.15-5.15.0/sound/soc/codecs/Kconfig linux-intel-iotg-5.15-5.15.0/sound/soc/codecs/Kconfig --- linux-intel-iotg-5.15-5.15.0/sound/soc/codecs/Kconfig +++ linux-intel-iotg-5.15-5.15.0/sound/soc/codecs/Kconfig @@ -926,7 +926,6 @@ config SND_SOC_MAX98357A tristate "Maxim MAX98357A CODEC" - depends on GPIOLIB config SND_SOC_MAX98371 tristate @@ -1175,7 +1174,6 @@ config SND_SOC_RT1015P tristate - depends on GPIOLIB config SND_SOC_RT1019 tristate diff -u linux-intel-iotg-5.15-5.15.0/sound/soc/codecs/msm8916-wcd-digital.c linux-intel-iotg-5.15-5.15.0/sound/soc/codecs/msm8916-wcd-digital.c --- linux-intel-iotg-5.15-5.15.0/sound/soc/codecs/msm8916-wcd-digital.c +++ linux-intel-iotg-5.15-5.15.0/sound/soc/codecs/msm8916-wcd-digital.c @@ -1206,9 +1206,16 @@ dev_set_drvdata(dev, priv); - return devm_snd_soc_register_component(dev, &msm8916_wcd_digital, + ret = devm_snd_soc_register_component(dev, &msm8916_wcd_digital, msm8916_wcd_digital_dai, ARRAY_SIZE(msm8916_wcd_digital_dai)); + if (ret) + goto err_mclk; + + return 0; + +err_mclk: + clk_disable_unprepare(priv->mclk); err_clk: clk_disable_unprepare(priv->ahbclk); return ret; diff -u linux-intel-iotg-5.15-5.15.0/sound/soc/codecs/rk817_codec.c linux-intel-iotg-5.15-5.15.0/sound/soc/codecs/rk817_codec.c --- linux-intel-iotg-5.15-5.15.0/sound/soc/codecs/rk817_codec.c +++ linux-intel-iotg-5.15-5.15.0/sound/soc/codecs/rk817_codec.c @@ -489,7 +489,7 @@ rk817_codec_parse_dt_property(&pdev->dev, rk817_codec_data); - rk817_codec_data->mclk = clk_get(pdev->dev.parent, "mclk"); + rk817_codec_data->mclk = devm_clk_get(pdev->dev.parent, "mclk"); if (IS_ERR(rk817_codec_data->mclk)) { dev_dbg(&pdev->dev, "Unable to get mclk\n"); ret = -ENXIO; diff -u linux-intel-iotg-5.15-5.15.0/sound/soc/codecs/wcd934x.c linux-intel-iotg-5.15-5.15.0/sound/soc/codecs/wcd934x.c --- linux-intel-iotg-5.15-5.15.0/sound/soc/codecs/wcd934x.c +++ linux-intel-iotg-5.15-5.15.0/sound/soc/codecs/wcd934x.c @@ -1274,29 +1274,7 @@ if (sido_src == wcd->sido_input_src) return 0; - if (sido_src == SIDO_SOURCE_INTERNAL) { - regmap_update_bits(wcd->regmap, WCD934X_ANA_BUCK_CTL, - WCD934X_ANA_BUCK_HI_ACCU_EN_MASK, 0); - usleep_range(100, 110); - regmap_update_bits(wcd->regmap, WCD934X_ANA_BUCK_CTL, - WCD934X_ANA_BUCK_HI_ACCU_PRE_ENX_MASK, 0x0); - usleep_range(100, 110); - regmap_update_bits(wcd->regmap, WCD934X_ANA_RCO, - WCD934X_ANA_RCO_BG_EN_MASK, 0); - usleep_range(100, 110); - regmap_update_bits(wcd->regmap, WCD934X_ANA_BUCK_CTL, - WCD934X_ANA_BUCK_PRE_EN1_MASK, - WCD934X_ANA_BUCK_PRE_EN1_ENABLE); - usleep_range(100, 110); - regmap_update_bits(wcd->regmap, WCD934X_ANA_BUCK_CTL, - WCD934X_ANA_BUCK_PRE_EN2_MASK, - WCD934X_ANA_BUCK_PRE_EN2_ENABLE); - usleep_range(100, 110); - regmap_update_bits(wcd->regmap, WCD934X_ANA_BUCK_CTL, - WCD934X_ANA_BUCK_HI_ACCU_EN_MASK, - WCD934X_ANA_BUCK_HI_ACCU_ENABLE); - usleep_range(100, 110); - } else if (sido_src == SIDO_SOURCE_RCO_BG) { + if (sido_src == SIDO_SOURCE_RCO_BG) { regmap_update_bits(wcd->regmap, WCD934X_ANA_RCO, WCD934X_ANA_RCO_BG_EN_MASK, WCD934X_ANA_RCO_BG_ENABLE); @@ -1382,8 +1360,6 @@ regmap_update_bits(wcd->regmap, WCD934X_CLK_SYS_MCLK_PRG, WCD934X_EXT_CLK_BUF_EN_MASK | WCD934X_MCLK_EN_MASK, 0x0); - wcd934x_set_sido_input_src(wcd, SIDO_SOURCE_INTERNAL); - regmap_update_bits(wcd->regmap, WCD934X_ANA_BIAS, WCD934X_ANA_BIAS_EN_MASK, 0); regmap_update_bits(wcd->regmap, WCD934X_ANA_BIAS, diff -u linux-intel-iotg-5.15-5.15.0/sound/soc/fsl/imx-card.c linux-intel-iotg-5.15-5.15.0/sound/soc/fsl/imx-card.c --- linux-intel-iotg-5.15-5.15.0/sound/soc/fsl/imx-card.c +++ linux-intel-iotg-5.15-5.15.0/sound/soc/fsl/imx-card.c @@ -579,9 +579,8 @@ ret = snd_soc_of_get_dai_name(cpu, &link->cpus->dai_name); if (ret) { - if (ret != -EPROBE_DEFER) - dev_err(card->dev, "%s: error getting cpu dai name: %d\n", - link->name, ret); + dev_err_probe(card->dev, ret, + "%s: error getting cpu dai name\n", link->name); goto err; } @@ -589,9 +588,8 @@ if (codec) { ret = snd_soc_of_get_dai_link_codecs(dev, codec, link); if (ret < 0) { - if (ret != -EPROBE_DEFER) - dev_err(dev, "%s: codec dai not found: %d\n", - link->name, ret); + dev_err_probe(dev, ret, "%s: codec dai not found\n", + link->name); goto err; } @@ -830,11 +828,8 @@ } ret = devm_snd_soc_register_card(&pdev->dev, &data->card); - if (ret) { - if (ret != -EPROBE_DEFER) - dev_err(&pdev->dev, "snd_soc_register_card failed (%d)\n", ret); - return ret; - } + if (ret) + return dev_err_probe(&pdev->dev, ret, "snd_soc_register_card failed\n"); return 0; } diff -u linux-intel-iotg-5.15-5.15.0/sound/soc/fsl/imx-hdmi.c linux-intel-iotg-5.15-5.15.0/sound/soc/fsl/imx-hdmi.c --- linux-intel-iotg-5.15-5.15.0/sound/soc/fsl/imx-hdmi.c +++ linux-intel-iotg-5.15-5.15.0/sound/soc/fsl/imx-hdmi.c @@ -126,6 +126,7 @@ data = devm_kzalloc(&pdev->dev, sizeof(*data), GFP_KERNEL); if (!data) { ret = -ENOMEM; + put_device(&cpu_pdev->dev); goto fail; } diff -u linux-intel-iotg-5.15-5.15.0/sound/soc/intel/common/soc-acpi-intel-tgl-match.c linux-intel-iotg-5.15-5.15.0/sound/soc/intel/common/soc-acpi-intel-tgl-match.c --- linux-intel-iotg-5.15-5.15.0/sound/soc/intel/common/soc-acpi-intel-tgl-match.c +++ linux-intel-iotg-5.15-5.15.0/sound/soc/intel/common/soc-acpi-intel-tgl-match.c @@ -127,13 +127,13 @@ { .adr = 0x000123019F837300ull, .num_endpoints = 1, - .endpoints = &spk_l_endpoint, + .endpoints = &spk_r_endpoint, .name_prefix = "Right" }, { .adr = 0x000127019F837300ull, .num_endpoints = 1, - .endpoints = &spk_r_endpoint, + .endpoints = &spk_l_endpoint, .name_prefix = "Left" } }; diff -u linux-intel-iotg-5.15-5.15.0/sound/soc/mediatek/mt8173/mt8173-max98090.c linux-intel-iotg-5.15-5.15.0/sound/soc/mediatek/mt8173/mt8173-max98090.c --- linux-intel-iotg-5.15-5.15.0/sound/soc/mediatek/mt8173/mt8173-max98090.c +++ linux-intel-iotg-5.15-5.15.0/sound/soc/mediatek/mt8173/mt8173-max98090.c @@ -167,7 +167,8 @@ if (!codec_node) { dev_err(&pdev->dev, "Property 'audio-codec' missing or invalid\n"); - return -EINVAL; + ret = -EINVAL; + goto put_platform_node; } for_each_card_prelinks(card, i, dai_link) { if (dai_link->codecs->name) @@ -182,6 +183,8 @@ __func__, ret); of_node_put(codec_node); + +put_platform_node: of_node_put(platform_node); return ret; } diff -u linux-intel-iotg-5.15-5.15.0/sound/soc/mxs/mxs-saif.c linux-intel-iotg-5.15-5.15.0/sound/soc/mxs/mxs-saif.c --- linux-intel-iotg-5.15-5.15.0/sound/soc/mxs/mxs-saif.c +++ linux-intel-iotg-5.15-5.15.0/sound/soc/mxs/mxs-saif.c @@ -754,6 +754,7 @@ saif->master_id = saif->id; } else { ret = of_alias_get_id(master, "saif"); + of_node_put(master); if (ret < 0) return ret; else diff -u linux-intel-iotg-5.15-5.15.0/sound/soc/sh/rcar/core.c linux-intel-iotg-5.15-5.15.0/sound/soc/sh/rcar/core.c --- linux-intel-iotg-5.15-5.15.0/sound/soc/sh/rcar/core.c +++ linux-intel-iotg-5.15-5.15.0/sound/soc/sh/rcar/core.c @@ -1159,6 +1159,7 @@ struct device_node *capture) { struct rsnd_priv *priv = rsnd_rdai_to_priv(rdai); + struct device *dev = rsnd_priv_to_dev(priv); struct device_node *np; int i; @@ -1169,7 +1170,11 @@ for_each_child_of_node(node, np) { struct rsnd_mod *mod; - i = rsnd_node_fixed_index(np, name, i); + i = rsnd_node_fixed_index(dev, np, name, i); + if (i < 0) { + of_node_put(np); + break; + } mod = mod_get(priv, i); @@ -1183,7 +1188,7 @@ of_node_put(node); } -int rsnd_node_fixed_index(struct device_node *node, char *name, int idx) +int rsnd_node_fixed_index(struct device *dev, struct device_node *node, char *name, int idx) { char node_name[16]; @@ -1210,6 +1215,8 @@ return idx; } + dev_err(dev, "strange node numbering (%s)", + of_node_full_name(node)); return -EINVAL; } @@ -1221,10 +1228,8 @@ i = 0; for_each_child_of_node(node, np) { - i = rsnd_node_fixed_index(np, name, i); + i = rsnd_node_fixed_index(dev, np, name, i); if (i < 0) { - dev_err(dev, "strange node numbering (%s)", - of_node_full_name(node)); of_node_put(np); return 0; } diff -u linux-intel-iotg-5.15-5.15.0/sound/soc/sh/rcar/dma.c linux-intel-iotg-5.15-5.15.0/sound/soc/sh/rcar/dma.c --- linux-intel-iotg-5.15-5.15.0/sound/soc/sh/rcar/dma.c +++ linux-intel-iotg-5.15-5.15.0/sound/soc/sh/rcar/dma.c @@ -240,12 +240,19 @@ struct dma_chan *rsnd_dma_request_channel(struct device_node *of_node, char *name, struct rsnd_mod *mod, char *x) { + struct rsnd_priv *priv = rsnd_mod_to_priv(mod); + struct device *dev = rsnd_priv_to_dev(priv); struct dma_chan *chan = NULL; struct device_node *np; int i = 0; for_each_child_of_node(of_node, np) { - i = rsnd_node_fixed_index(np, name, i); + i = rsnd_node_fixed_index(dev, np, name, i); + if (i < 0) { + chan = NULL; + of_node_put(np); + break; + } if (i == rsnd_mod_id_raw(mod) && (!chan)) chan = of_dma_request_slave_channel(np, x); diff -u linux-intel-iotg-5.15-5.15.0/sound/soc/sh/rz-ssi.c linux-intel-iotg-5.15-5.15.0/sound/soc/sh/rz-ssi.c --- linux-intel-iotg-5.15-5.15.0/sound/soc/sh/rz-ssi.c +++ linux-intel-iotg-5.15-5.15.0/sound/soc/sh/rz-ssi.c @@ -982,22 +982,24 @@ /* Error Interrupt */ ssi->irq_int = platform_get_irq_byname(pdev, "int_req"); - if (ssi->irq_int < 0) - return dev_err_probe(&pdev->dev, -ENODEV, - "Unable to get SSI int_req IRQ\n"); + if (ssi->irq_int < 0) { + rz_ssi_release_dma_channels(ssi); + return ssi->irq_int; + } ret = devm_request_irq(&pdev->dev, ssi->irq_int, &rz_ssi_interrupt, 0, dev_name(&pdev->dev), ssi); - if (ret < 0) + if (ret < 0) { + rz_ssi_release_dma_channels(ssi); return dev_err_probe(&pdev->dev, ret, "irq request error (int_req)\n"); + } if (!rz_ssi_is_dma_enabled(ssi)) { /* Tx and Rx interrupts (pio only) */ ssi->irq_tx = platform_get_irq_byname(pdev, "dma_tx"); if (ssi->irq_tx < 0) - return dev_err_probe(&pdev->dev, -ENODEV, - "Unable to get SSI dma_tx IRQ\n"); + return ssi->irq_tx; ret = devm_request_irq(&pdev->dev, ssi->irq_tx, &rz_ssi_interrupt, 0, @@ -1008,8 +1010,7 @@ ssi->irq_rx = platform_get_irq_byname(pdev, "dma_rx"); if (ssi->irq_rx < 0) - return dev_err_probe(&pdev->dev, -ENODEV, - "Unable to get SSI dma_rx IRQ\n"); + return ssi->irq_rx; ret = devm_request_irq(&pdev->dev, ssi->irq_rx, &rz_ssi_interrupt, 0, @@ -1020,12 +1021,20 @@ } ssi->rstc = devm_reset_control_get_exclusive(&pdev->dev, NULL); - if (IS_ERR(ssi->rstc)) + if (IS_ERR(ssi->rstc)) { + rz_ssi_release_dma_channels(ssi); return PTR_ERR(ssi->rstc); + } reset_control_deassert(ssi->rstc); pm_runtime_enable(&pdev->dev); - pm_runtime_resume_and_get(&pdev->dev); + ret = pm_runtime_resume_and_get(&pdev->dev); + if (ret < 0) { + rz_ssi_release_dma_channels(ssi); + pm_runtime_disable(ssi->dev); + reset_control_assert(ssi->rstc); + return dev_err_probe(ssi->dev, ret, "pm_runtime_resume_and_get failed\n"); + } ret = devm_snd_soc_register_component(&pdev->dev, &rz_ssi_soc_component, rz_ssi_soc_dai, diff -u linux-intel-iotg-5.15-5.15.0/sound/soc/soc-dapm.c linux-intel-iotg-5.15-5.15.0/sound/soc/soc-dapm.c --- linux-intel-iotg-5.15-5.15.0/sound/soc/soc-dapm.c +++ linux-intel-iotg-5.15-5.15.0/sound/soc/soc-dapm.c @@ -1685,8 +1685,7 @@ switch (w->id) { case snd_soc_dapm_pre: if (!w->event) - list_for_each_entry_safe_continue(w, n, list, - power_list); + continue; if (event == SND_SOC_DAPM_STREAM_START) ret = w->event(w, @@ -1698,8 +1697,7 @@ case snd_soc_dapm_post: if (!w->event) - list_for_each_entry_safe_continue(w, n, list, - power_list); + continue; if (event == SND_SOC_DAPM_STREAM_START) ret = w->event(w, @@ -3430,7 +3428,6 @@ update.val = val; card->update = &update; } - change |= reg_change; ret = soc_dapm_mixer_update_power(card, kcontrol, connect, rconnect); @@ -3532,7 +3529,6 @@ update.val = val; card->update = &update; } - change |= reg_change; ret = soc_dapm_mux_update_power(card, kcontrol, item[0], e); reverted: --- linux-intel-iotg-5.15-5.15.0/sound/soc/soc-generic-dmaengine-pcm.c +++ linux-intel-iotg-5.15-5.15.0.orig/sound/soc/soc-generic-dmaengine-pcm.c @@ -82,10 +82,10 @@ memset(&slave_config, 0, sizeof(slave_config)); + if (!pcm->config) + prepare_slave_config = snd_dmaengine_pcm_prepare_slave_config; + else - if (pcm->config && pcm->config->prepare_slave_config) prepare_slave_config = pcm->config->prepare_slave_config; - else - prepare_slave_config = snd_dmaengine_pcm_prepare_slave_config; if (prepare_slave_config) { int ret = prepare_slave_config(substream, params, &slave_config); diff -u linux-intel-iotg-5.15-5.15.0/sound/soc/soc-ops.c linux-intel-iotg-5.15-5.15.0/sound/soc/soc-ops.c --- linux-intel-iotg-5.15-5.15.0/sound/soc/soc-ops.c +++ linux-intel-iotg-5.15-5.15.0/sound/soc/soc-ops.c @@ -461,7 +461,7 @@ ret = err; } } - return err; + return ret; } EXPORT_SYMBOL_GPL(snd_soc_put_volsw_sx); @@ -519,7 +519,15 @@ unsigned int mask = (1 << fls(max)) - 1; unsigned int invert = mc->invert; unsigned int val, val_mask; - int err, ret; + int err, ret, tmp; + + tmp = ucontrol->value.integer.value[0]; + if (tmp < 0) + return -EINVAL; + if (mc->platform_max && tmp > mc->platform_max) + return -EINVAL; + if (tmp > mc->max - mc->min + 1) + return -EINVAL; if (invert) val = (max - ucontrol->value.integer.value[0]) & mask; @@ -534,6 +542,14 @@ ret = err; if (snd_soc_volsw_is_stereo(mc)) { + tmp = ucontrol->value.integer.value[1]; + if (tmp < 0) + return -EINVAL; + if (mc->platform_max && tmp > mc->platform_max) + return -EINVAL; + if (tmp > mc->max - mc->min + 1) + return -EINVAL; + if (invert) val = (max - ucontrol->value.integer.value[1]) & mask; else diff -u linux-intel-iotg-5.15-5.15.0/sound/soc/soc-topology.c linux-intel-iotg-5.15-5.15.0/sound/soc/soc-topology.c --- linux-intel-iotg-5.15-5.15.0/sound/soc/soc-topology.c +++ linux-intel-iotg-5.15-5.15.0/sound/soc/soc-topology.c @@ -1481,12 +1481,12 @@ template.num_kcontrols = le32_to_cpu(w->num_kcontrols); kc = devm_kcalloc(tplg->dev, le32_to_cpu(w->num_kcontrols), sizeof(*kc), GFP_KERNEL); if (!kc) - goto err; + goto hdr_err; kcontrol_type = devm_kcalloc(tplg->dev, le32_to_cpu(w->num_kcontrols), sizeof(unsigned int), GFP_KERNEL); if (!kcontrol_type) - goto err; + goto hdr_err; for (i = 0; i < w->num_kcontrols; i++) { control_hdr = (struct snd_soc_tplg_ctl_hdr *)tplg->pos; diff -u linux-intel-iotg-5.15-5.15.0/sound/usb/clock.c linux-intel-iotg-5.15-5.15.0/sound/usb/clock.c --- linux-intel-iotg-5.15-5.15.0/sound/usb/clock.c +++ linux-intel-iotg-5.15-5.15.0/sound/usb/clock.c @@ -572,6 +572,17 @@ /* continue processing */ } + /* FIXME - TEAC devices require the immediate interface setup */ + if (USB_ID_VENDOR(chip->usb_id) == 0x0644) { + bool cur_base_48k = (rate % 48000 == 0); + bool prev_base_48k = (prev_rate % 48000 == 0); + if (cur_base_48k != prev_base_48k) { + usb_set_interface(chip->dev, fmt->iface, fmt->altsetting); + if (chip->quirk_flags & QUIRK_FLAG_IFACE_DELAY) + msleep(50); + } + } + validation: /* validate clock after rate change */ if (!uac_clock_source_is_valid(chip, fmt, clock)) diff -u linux-intel-iotg-5.15-5.15.0/sound/usb/implicit.c linux-intel-iotg-5.15-5.15.0/sound/usb/implicit.c --- linux-intel-iotg-5.15-5.15.0/sound/usb/implicit.c +++ linux-intel-iotg-5.15-5.15.0/sound/usb/implicit.c @@ -45,11 +45,6 @@ /* Implicit feedback quirk table for playback */ static const struct snd_usb_implicit_fb_match playback_implicit_fb_quirks[] = { - /* Generic matching */ - IMPLICIT_FB_GENERIC_DEV(0x0499, 0x1509), /* Steinberg UR22 */ - IMPLICIT_FB_GENERIC_DEV(0x0763, 0x2030), /* M-Audio Fast Track C400 */ - IMPLICIT_FB_GENERIC_DEV(0x0763, 0x2031), /* M-Audio Fast Track C600 */ - /* Fixed EP */ /* FIXME: check the availability of generic matching */ IMPLICIT_FB_FIXED_DEV(0x0763, 0x2080, 0x81, 2), /* M-Audio FastTrack Ultra */ @@ -350,7 +345,8 @@ } /* Try the generic implicit fb if available */ - if (chip->generic_implicit_fb) + if (chip->generic_implicit_fb || + (chip->quirk_flags & QUIRK_FLAG_GENERIC_IMPLICIT_FB)) return add_generic_implicit_fb(chip, fmt, alts); /* No quirk */ @@ -387,6 +383,8 @@ struct audioformat *fmt, struct usb_host_interface *alts) { + if (chip->quirk_flags & QUIRK_FLAG_SKIP_IMPLICIT_FB) + return 0; if (fmt->endpoint & USB_DIR_IN) return audioformat_capture_quirk(chip, fmt, alts); else diff -u linux-intel-iotg-5.15-5.15.0/sound/usb/pcm.c linux-intel-iotg-5.15-5.15.0/sound/usb/pcm.c --- linux-intel-iotg-5.15-5.15.0/sound/usb/pcm.c +++ linux-intel-iotg-5.15-5.15.0/sound/usb/pcm.c @@ -439,16 +439,21 @@ /* stop any running stream beforehand */ if (stop_endpoints(subs, false)) sync_pending_stops(subs); + if (subs->sync_endpoint) { + err = snd_usb_endpoint_configure(chip, subs->sync_endpoint); + if (err < 0) + return err; + } err = snd_usb_endpoint_configure(chip, subs->data_endpoint); if (err < 0) return err; snd_usb_set_format_quirk(subs, subs->cur_audiofmt); - } - - if (subs->sync_endpoint) { - err = snd_usb_endpoint_configure(chip, subs->sync_endpoint); - if (err < 0) - return err; + } else { + if (subs->sync_endpoint) { + err = snd_usb_endpoint_configure(chip, subs->sync_endpoint); + if (err < 0) + return err; + } } return 0; diff -u linux-intel-iotg-5.15-5.15.0/sound/usb/quirks-table.h linux-intel-iotg-5.15-5.15.0/sound/usb/quirks-table.h --- linux-intel-iotg-5.15-5.15.0/sound/usb/quirks-table.h +++ linux-intel-iotg-5.15-5.15.0/sound/usb/quirks-table.h @@ -2672,6 +2672,7 @@ .altset_idx = 1, .attributes = 0, .endpoint = 0x82, + .ep_idx = 1, .ep_attr = USB_ENDPOINT_XFER_ISOC, .datainterval = 1, .maxpacksize = 0x0126, @@ -2875,6 +2876,7 @@ .altset_idx = 1, .attributes = 0x4, .endpoint = 0x81, + .ep_idx = 1, .ep_attr = USB_ENDPOINT_XFER_ISOC | USB_ENDPOINT_SYNC_ASYNC, .maxpacksize = 0x130, @@ -3235,6 +3237,15 @@ } }, +/* Rane SL-1 */ +{ + USB_DEVICE(0x13e5, 0x0001), + .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) { + .ifnum = QUIRK_ANY_INTERFACE, + .type = QUIRK_AUDIO_STANDARD_INTERFACE + } +}, + /* disabled due to regression for other devices; * see https://bugzilla.kernel.org/show_bug.cgi?id=199905 */ @@ -3382,6 +3393,7 @@ .altset_idx = 1, .attributes = 0, .endpoint = 0x03, + .ep_idx = 1, .rates = SNDRV_PCM_RATE_96000, .ep_attr = USB_ENDPOINT_XFER_ISOC | USB_ENDPOINT_SYNC_ASYNC, diff -u linux-intel-iotg-5.15-5.15.0/sound/usb/quirks.c linux-intel-iotg-5.15-5.15.0/sound/usb/quirks.c --- linux-intel-iotg-5.15-5.15.0/sound/usb/quirks.c +++ linux-intel-iotg-5.15-5.15.0/sound/usb/quirks.c @@ -1793,6 +1793,8 @@ QUIRK_FLAG_CTL_MSG_DELAY_1M | QUIRK_FLAG_IGNORE_CTL_ERROR), DEVICE_FLG(0x046d, 0x09a4, /* Logitech QuickCam E 3500 */ QUIRK_FLAG_CTL_MSG_DELAY_1M | QUIRK_FLAG_IGNORE_CTL_ERROR), + DEVICE_FLG(0x0499, 0x1509, /* Steinberg UR22 */ + QUIRK_FLAG_GENERIC_IMPLICIT_FB), DEVICE_FLG(0x04d8, 0xfeea, /* Benchmark DAC1 Pre */ QUIRK_FLAG_GET_SAMPLE_RATE), DEVICE_FLG(0x04e8, 0xa051, /* Samsung USBC Headset (AKG) */ @@ -1822,8 +1824,14 @@ QUIRK_FLAG_IGNORE_CTL_ERROR), DEVICE_FLG(0x06f8, 0xd002, /* Hercules DJ Console (Macintosh Edition) */ QUIRK_FLAG_IGNORE_CTL_ERROR), + DEVICE_FLG(0x0711, 0x5800, /* MCT Trigger 5 USB-to-HDMI */ + QUIRK_FLAG_GET_SAMPLE_RATE), DEVICE_FLG(0x074d, 0x3553, /* Outlaw RR2150 (Micronas UAC3553B) */ QUIRK_FLAG_GET_SAMPLE_RATE), + DEVICE_FLG(0x0763, 0x2030, /* M-Audio Fast Track C400 */ + QUIRK_FLAG_GENERIC_IMPLICIT_FB), + DEVICE_FLG(0x0763, 0x2031, /* M-Audio Fast Track C600 */ + QUIRK_FLAG_GENERIC_IMPLICIT_FB), DEVICE_FLG(0x08bb, 0x2702, /* LineX FM Transmitter */ QUIRK_FLAG_IGNORE_CTL_ERROR), DEVICE_FLG(0x0951, 0x16ad, /* Kingston HyperX */ diff -u linux-intel-iotg-5.15-5.15.0/tools/arch/x86/include/asm/cpufeatures.h linux-intel-iotg-5.15-5.15.0/tools/arch/x86/include/asm/cpufeatures.h --- linux-intel-iotg-5.15-5.15.0/tools/arch/x86/include/asm/cpufeatures.h +++ linux-intel-iotg-5.15-5.15.0/tools/arch/x86/include/asm/cpufeatures.h @@ -437,4 +437,5 @@ #define X86_BUG_ITLB_MULTIHIT X86_BUG(23) /* CPU may incur MCE during certain page attribute changes */ #define X86_BUG_SRBDS X86_BUG(24) /* CPU may leak RNG bits if not mitigated */ +#define X86_BUG_MMIO_STALE_DATA X86_BUG(25) /* CPU is affected by Processor MMIO Stale Data vulnerabilities */ #endif /* _ASM_X86_CPUFEATURES_H */ diff -u linux-intel-iotg-5.15-5.15.0/tools/arch/x86/include/asm/msr-index.h linux-intel-iotg-5.15-5.15.0/tools/arch/x86/include/asm/msr-index.h --- linux-intel-iotg-5.15-5.15.0/tools/arch/x86/include/asm/msr-index.h +++ linux-intel-iotg-5.15-5.15.0/tools/arch/x86/include/asm/msr-index.h @@ -51,6 +51,8 @@ #define SPEC_CTRL_STIBP BIT(SPEC_CTRL_STIBP_SHIFT) /* STIBP mask */ #define SPEC_CTRL_SSBD_SHIFT 2 /* Speculative Store Bypass Disable bit */ #define SPEC_CTRL_SSBD BIT(SPEC_CTRL_SSBD_SHIFT) /* Speculative Store Bypass Disable */ +#define SPEC_CTRL_RRSBA_DIS_S_SHIFT 6 /* Disable RRSBA behavior */ +#define SPEC_CTRL_RRSBA_DIS_S BIT(SPEC_CTRL_RRSBA_DIS_S_SHIFT) #define MSR_IA32_PRED_CMD 0x00000049 /* Prediction Command */ #define PRED_CMD_IBPB BIT(0) /* Indirect Branch Prediction Barrier */ @@ -114,6 +116,37 @@ * Not susceptible to * TSX Async Abort (TAA) vulnerabilities. */ +#define ARCH_CAP_SBDR_SSDP_NO BIT(13) /* + * Not susceptible to SBDR and SSDP + * variants of Processor MMIO stale data + * vulnerabilities. + */ +#define ARCH_CAP_FBSDP_NO BIT(14) /* + * Not susceptible to FBSDP variant of + * Processor MMIO stale data + * vulnerabilities. + */ +#define ARCH_CAP_PSDP_NO BIT(15) /* + * Not susceptible to PSDP variant of + * Processor MMIO stale data + * vulnerabilities. + */ +#define ARCH_CAP_FB_CLEAR BIT(17) /* + * VERW clears CPU fill buffer + * even on MDS_NO CPUs. + */ +#define ARCH_CAP_FB_CLEAR_CTRL BIT(18) /* + * MSR_IA32_MCU_OPT_CTRL[FB_CLEAR_DIS] + * bit available to control VERW + * behavior. + */ +#define ARCH_CAP_RRSBA BIT(19) /* + * Indicates RET may use predictors + * other than the RSB. With eIBRS + * enabled predictions in kernel mode + * are restricted to targets in + * kernel. + */ #define MSR_IA32_FLUSH_CMD 0x0000010b #define L1D_FLUSH BIT(0) /* @@ -131,6 +164,7 @@ #define MSR_IA32_MCU_OPT_CTRL 0x00000123 #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 MSR_IA32_SYSENTER_CS 0x00000174 #define MSR_IA32_SYSENTER_ESP 0x00000175 diff -u linux-intel-iotg-5.15-5.15.0/tools/build/Makefile.feature linux-intel-iotg-5.15-5.15.0/tools/build/Makefile.feature --- linux-intel-iotg-5.15-5.15.0/tools/build/Makefile.feature +++ linux-intel-iotg-5.15-5.15.0/tools/build/Makefile.feature @@ -97,6 +97,7 @@ llvm-version \ clang \ libbpf \ + libbpf-btf__load_from_kernel_by_id \ libpfm4 \ libdebuginfod \ clang-bpf-co-re diff -u linux-intel-iotg-5.15-5.15.0/tools/build/feature/Makefile linux-intel-iotg-5.15-5.15.0/tools/build/feature/Makefile --- linux-intel-iotg-5.15-5.15.0/tools/build/feature/Makefile +++ linux-intel-iotg-5.15-5.15.0/tools/build/feature/Makefile @@ -56,6 +56,7 @@ test-lzma.bin \ test-bpf.bin \ test-libbpf.bin \ + test-libbpf-btf__load_from_kernel_by_id.bin \ test-get_cpuid.bin \ test-sdt.bin \ test-cxx.bin \ @@ -283,6 +284,9 @@ $(OUTPUT)test-libbpf.bin: $(BUILD) -lbpf +$(OUTPUT)test-libbpf-btf__load_from_kernel_by_id.bin: + $(BUILD) -lbpf + $(OUTPUT)test-sdt.bin: $(BUILD) diff -u linux-intel-iotg-5.15-5.15.0/tools/lib/bpf/libbpf.c linux-intel-iotg-5.15-5.15.0/tools/lib/bpf/libbpf.c --- linux-intel-iotg-5.15-5.15.0/tools/lib/bpf/libbpf.c +++ linux-intel-iotg-5.15-5.15.0/tools/lib/bpf/libbpf.c @@ -5221,9 +5221,10 @@ */ prog = NULL; for (i = 0; i < obj->nr_programs; i++) { - prog = &obj->programs[i]; - if (strcmp(prog->sec_name, sec_name) == 0) + if (strcmp(obj->programs[i].sec_name, sec_name) == 0) { + prog = &obj->programs[i]; break; + } } if (!prog) { pr_warn("sec '%s': failed to find a BPF program\n", sec_name); @@ -5238,10 +5239,17 @@ insn_idx = rec->insn_off / BPF_INSN_SZ; prog = find_prog_by_sec_insn(obj, sec_idx, insn_idx); if (!prog) { - pr_warn("sec '%s': failed to find program at insn #%d for CO-RE offset relocation #%d\n", - sec_name, insn_idx, i); - err = -EINVAL; - goto out; + /* When __weak subprog is "overridden" by another instance + * of the subprog from a different object file, linker still + * appends all the .BTF.ext info that used to belong to that + * eliminated subprogram. + * This is similar to what x86-64 linker does for relocations. + * So just ignore such relocations just like we ignore + * subprog instructions when discovering subprograms. + */ + pr_debug("sec '%s': skipping CO-RE relocation #%d for insn #%d belonging to eliminated weak subprogram\n", + sec_name, i, insn_idx); + continue; } /* no need to apply CO-RE relocation if the program is * not going to be loaded diff -u linux-intel-iotg-5.15-5.15.0/tools/objtool/arch/x86/decode.c linux-intel-iotg-5.15-5.15.0/tools/objtool/arch/x86/decode.c --- linux-intel-iotg-5.15-5.15.0/tools/objtool/arch/x86/decode.c +++ linux-intel-iotg-5.15-5.15.0/tools/objtool/arch/x86/decode.c @@ -529,6 +529,11 @@ } break; + case 0xcc: + /* int3 */ + *type = INSN_TRAP; + break; + case 0xe3: /* jecxz/jrcxz */ *type = INSN_JUMP_CONDITIONAL; @@ -665,10 +670,10 @@ { static const char ret[5][5] = { { BYTE_RET }, - { BYTE_RET, BYTES_NOP1 }, - { BYTE_RET, BYTES_NOP2 }, - { BYTE_RET, BYTES_NOP3 }, - { BYTE_RET, BYTES_NOP4 }, + { BYTE_RET, 0xcc }, + { BYTE_RET, 0xcc, BYTES_NOP1 }, + { BYTE_RET, 0xcc, BYTES_NOP2 }, + { BYTE_RET, 0xcc, BYTES_NOP3 }, }; if (len < 1 || len > 5) { @@ -679,34 +684,32 @@ return ret[len-1]; } -int arch_decode_hint_reg(struct instruction *insn, u8 sp_reg) +int arch_decode_hint_reg(u8 sp_reg, int *base) { - struct cfi_reg *cfa = &insn->cfi.cfa; - switch (sp_reg) { case ORC_REG_UNDEFINED: - cfa->base = CFI_UNDEFINED; + *base = CFI_UNDEFINED; break; case ORC_REG_SP: - cfa->base = CFI_SP; + *base = CFI_SP; break; case ORC_REG_BP: - cfa->base = CFI_BP; + *base = CFI_BP; break; case ORC_REG_SP_INDIRECT: - cfa->base = CFI_SP_INDIRECT; + *base = CFI_SP_INDIRECT; break; case ORC_REG_R10: - cfa->base = CFI_R10; + *base = CFI_R10; break; case ORC_REG_R13: - cfa->base = CFI_R13; + *base = CFI_R13; break; case ORC_REG_DI: - cfa->base = CFI_DI; + *base = CFI_DI; break; case ORC_REG_DX: - cfa->base = CFI_DX; + *base = CFI_DX; break; default: return -1; @@ -721,0 +725,5 @@ + +bool arch_is_rethunk(struct symbol *sym) +{ + return !strcmp(sym->name, "__x86_return_thunk"); +} diff -u linux-intel-iotg-5.15-5.15.0/tools/objtool/check.c linux-intel-iotg-5.15-5.15.0/tools/objtool/check.c --- linux-intel-iotg-5.15-5.15.0/tools/objtool/check.c +++ linux-intel-iotg-5.15-5.15.0/tools/objtool/check.c @@ -5,6 +5,8 @@ #include #include +#include +#include #include #include @@ -26,7 +28,11 @@ bool skip_orig; }; -struct cfi_init_state initial_func_cfi; +static unsigned long nr_cfi, nr_cfi_reused, nr_cfi_cache; + +static struct cfi_init_state initial_func_cfi; +static struct cfi_state init_cfi; +static struct cfi_state func_cfi; struct instruction *find_insn(struct objtool_file *file, struct section *sec, unsigned long offset) @@ -266,6 +272,78 @@ state->noinstr = sec->noinstr; } +static struct cfi_state *cfi_alloc(void) +{ + struct cfi_state *cfi = calloc(sizeof(struct cfi_state), 1); + if (!cfi) { + WARN("calloc failed"); + exit(1); + } + nr_cfi++; + return cfi; +} + +static int cfi_bits; +static struct hlist_head *cfi_hash; + +static inline bool cficmp(struct cfi_state *cfi1, struct cfi_state *cfi2) +{ + return memcmp((void *)cfi1 + sizeof(cfi1->hash), + (void *)cfi2 + sizeof(cfi2->hash), + sizeof(struct cfi_state) - sizeof(struct hlist_node)); +} + +static inline u32 cfi_key(struct cfi_state *cfi) +{ + return jhash((void *)cfi + sizeof(cfi->hash), + sizeof(*cfi) - sizeof(cfi->hash), 0); +} + +static struct cfi_state *cfi_hash_find_or_add(struct cfi_state *cfi) +{ + struct hlist_head *head = &cfi_hash[hash_min(cfi_key(cfi), cfi_bits)]; + struct cfi_state *obj; + + hlist_for_each_entry(obj, head, hash) { + if (!cficmp(cfi, obj)) { + nr_cfi_cache++; + return obj; + } + } + + obj = cfi_alloc(); + *obj = *cfi; + hlist_add_head(&obj->hash, head); + + return obj; +} + +static void cfi_hash_add(struct cfi_state *cfi) +{ + struct hlist_head *head = &cfi_hash[hash_min(cfi_key(cfi), cfi_bits)]; + + hlist_add_head(&cfi->hash, head); +} + +static void *cfi_hash_alloc(unsigned long size) +{ + cfi_bits = max(10, ilog2(size)); + cfi_hash = mmap(NULL, sizeof(struct hlist_head) << cfi_bits, + PROT_READ|PROT_WRITE, + MAP_PRIVATE|MAP_ANON, -1, 0); + if (cfi_hash == (void *)-1L) { + WARN("mmap fail cfi_hash"); + cfi_hash = NULL; + } else if (stats) { + printf("cfi_bits: %d\n", cfi_bits); + } + + return cfi_hash; +} + +static unsigned long nr_insns; +static unsigned long nr_insns_visited; + /* * Call the arch-specific instruction decoder for all the instructions and add * them to the global instruction list. @@ -276,7 +354,6 @@ struct symbol *func; unsigned long offset; struct instruction *insn; - unsigned long nr_insns = 0; int ret; for_each_sec(file, sec) { @@ -290,7 +367,8 @@ sec->text = true; if (!strcmp(sec->name, ".noinstr.text") || - !strcmp(sec->name, ".entry.text")) + !strcmp(sec->name, ".entry.text") || + !strncmp(sec->name, ".text.__x86.", 12)) sec->noinstr = true; for (offset = 0; offset < sec->sh.sh_size; offset += insn->len) { @@ -302,7 +380,6 @@ memset(insn, 0, sizeof(*insn)); INIT_LIST_HEAD(&insn->alts); INIT_LIST_HEAD(&insn->stack_ops); - init_cfi_state(&insn->cfi); insn->sec = sec; insn->offset = offset; @@ -393,12 +470,12 @@ else if (reloc->addend == reloc->sym->sec->sh.sh_size) { insn = find_last_insn(file, reloc->sym->sec); if (!insn) { - WARN("can't find unreachable insn at %s+0x%x", + WARN("can't find unreachable insn at %s+0x%" PRIx64, reloc->sym->sec->name, reloc->addend); return -1; } } else { - WARN("can't find unreachable insn at %s+0x%x", + WARN("can't find unreachable insn at %s+0x%" PRIx64, reloc->sym->sec->name, reloc->addend); return -1; } @@ -428,12 +505,12 @@ else if (reloc->addend == reloc->sym->sec->sh.sh_size) { insn = find_last_insn(file, reloc->sym->sec); if (!insn) { - WARN("can't find reachable insn at %s+0x%x", + WARN("can't find reachable insn at %s+0x%" PRIx64, reloc->sym->sec->name, reloc->addend); return -1; } } else { - WARN("can't find reachable insn at %s+0x%x", + WARN("can't find reachable insn at %s+0x%" PRIx64, reloc->sym->sec->name, reloc->addend); return -1; } @@ -578,6 +655,52 @@ return 0; } +static int create_return_sites_sections(struct objtool_file *file) +{ + struct instruction *insn; + struct section *sec; + int idx; + + sec = find_section_by_name(file->elf, ".return_sites"); + if (sec) { + WARN("file already has .return_sites, skipping"); + return 0; + } + + idx = 0; + list_for_each_entry(insn, &file->return_thunk_list, call_node) + idx++; + + if (!idx) + return 0; + + sec = elf_create_section(file->elf, ".return_sites", 0, + sizeof(int), idx); + if (!sec) { + WARN("elf_create_section: .return_sites"); + return -1; + } + + idx = 0; + list_for_each_entry(insn, &file->return_thunk_list, call_node) { + + int *site = (int *)sec->data->d_buf + idx; + *site = 0; + + if (elf_add_reloc_to_insn(file->elf, sec, + idx * sizeof(int), + R_X86_64_PC32, + insn->sec, insn->offset)) { + WARN("elf_add_reloc_to_insn: .return_sites"); + return -1; + } + + idx++; + } + + return 0; +} + static int create_mcount_loc_sections(struct objtool_file *file) { struct section *sec; @@ -856,6 +979,11 @@ return false; } +__weak bool arch_is_rethunk(struct symbol *sym) +{ + return false; +} + #define NEGATIVE_RELOC ((void *)-1L) static struct reloc *insn_reloc(struct objtool_file *file, struct instruction *insn) @@ -930,6 +1058,17 @@ : arch_nop_insn(insn->len)); insn->type = sibling ? INSN_RETURN : INSN_NOP; + + if (sibling) { + /* + * We've replaced the tail-call JMP insn by two new + * insn: RET; INT3, except we only have a single struct + * insn here. Mark it retpoline_safe to avoid the SLS + * warning, instead of adding another insn. + */ + insn->retpoline_safe = true; + } + return; } @@ -1005,6 +1144,21 @@ annotate_call_site(file, insn, false); } + +static void add_return_call(struct objtool_file *file, struct instruction *insn, bool add) +{ + /* + * Return thunk tail calls are really just returns in disguise, + * so convert them accordingly. + */ + insn->type = INSN_RETURN; + insn->retpoline_safe = true; + + /* Skip the non-text sections, specially .discard ones */ + if (add && insn->sec->text) + list_add_tail(&insn->call_node, &file->return_thunk_list); +} + /* * Find the destination instructions for all jumps. */ @@ -1029,6 +1183,9 @@ } else if (reloc->sym->retpoline_thunk) { add_retpoline_call(file, insn); continue; + } else if (reloc->sym->return_thunk) { + add_return_call(file, insn, true); + continue; } else if (insn->func) { /* internal or external sibling call (with reloc) */ add_call_dest(file, insn, reloc->sym, true); @@ -1044,6 +1201,7 @@ insn->jump_dest = find_insn(file, dest_sec, dest_off); if (!insn->jump_dest) { + struct symbol *sym = find_symbol_by_offset(dest_sec, dest_off); /* * This is a special case where an alt instruction @@ -1053,6 +1211,19 @@ if (!strcmp(insn->sec->name, ".altinstr_replacement")) continue; + /* + * This is a special case for zen_untrain_ret(). + * It jumps to __x86_return_thunk(), but objtool + * can't find the thunk's starting RET + * instruction, because the RET is also in the + * middle of another instruction. Objtool only + * knows about the outer instruction. + */ + if (sym && sym->return_thunk) { + add_return_call(file, insn, false); + continue; + } + WARN_FUNC("can't find jump dest instruction at %s+0x%lx", insn->sec, insn->offset, dest_sec->name, dest_off); @@ -1227,7 +1398,6 @@ memset(nop, 0, sizeof(*nop)); INIT_LIST_HEAD(&nop->alts); INIT_LIST_HEAD(&nop->stack_ops); - init_cfi_state(&nop->cfi); nop->sec = special_alt->new_sec; nop->offset = special_alt->new_off + special_alt->new_len; @@ -1636,10 +1806,11 @@ static int read_unwind_hints(struct objtool_file *file) { + struct cfi_state cfi = init_cfi; struct section *sec, *relocsec; - struct reloc *reloc; struct unwind_hint *hint; struct instruction *insn; + struct reloc *reloc; int i; sec = find_section_by_name(file->elf, ".discard.unwind_hints"); @@ -1676,20 +1847,49 @@ insn->hint = true; + if (hint->type == UNWIND_HINT_TYPE_SAVE) { + insn->hint = false; + insn->save = true; + continue; + } + + if (hint->type == UNWIND_HINT_TYPE_RESTORE) { + insn->restore = true; + continue; + } + + if (hint->type == UNWIND_HINT_TYPE_REGS_PARTIAL) { + struct symbol *sym = find_symbol_by_offset(insn->sec, insn->offset); + + if (sym && sym->bind == STB_GLOBAL) { + insn->entry = 1; + } + } + + if (hint->type == UNWIND_HINT_TYPE_ENTRY) { + hint->type = UNWIND_HINT_TYPE_CALL; + insn->entry = 1; + } + if (hint->type == UNWIND_HINT_TYPE_FUNC) { - set_func_state(&insn->cfi); + insn->cfi = &func_cfi; continue; } - if (arch_decode_hint_reg(insn, hint->sp_reg)) { + if (insn->cfi) + cfi = *(insn->cfi); + + if (arch_decode_hint_reg(hint->sp_reg, &cfi.cfa.base)) { WARN_FUNC("unsupported unwind_hint sp base reg %d", insn->sec, insn->offset, hint->sp_reg); return -1; } - insn->cfi.cfa.offset = bswap_if_needed(hint->sp_offset); - insn->cfi.type = hint->type; - insn->cfi.end = hint->end; + cfi.cfa.offset = bswap_if_needed(hint->sp_offset); + cfi.type = hint->type; + cfi.end = hint->end; + + insn->cfi = cfi_hash_find_or_add(&cfi); } return 0; @@ -1718,8 +1918,10 @@ } if (insn->type != INSN_JUMP_DYNAMIC && - insn->type != INSN_CALL_DYNAMIC) { - WARN_FUNC("retpoline_safe hint not an indirect jump/call", + insn->type != INSN_CALL_DYNAMIC && + insn->type != INSN_RETURN && + insn->type != INSN_NOP) { + WARN_FUNC("retpoline_safe hint not an indirect jump/call/ret/nop", insn->sec, insn->offset); return -1; } @@ -1845,6 +2047,9 @@ if (arch_is_retpoline(func)) func->retpoline_thunk = true; + if (arch_is_rethunk(func)) + func->return_thunk = true; + if (!strcmp(func->name, "__fentry__")) func->fentry = true; @@ -2540,13 +2745,18 @@ if (!insn->alt_group) return 0; + if (!insn->cfi) { + WARN("CFI missing"); + return -1; + } + alt_cfi = insn->alt_group->cfi; group_off = insn->offset - insn->alt_group->first_insn->offset; if (!alt_cfi[group_off]) { - alt_cfi[group_off] = &insn->cfi; + alt_cfi[group_off] = insn->cfi; } else { - if (memcmp(alt_cfi[group_off], &insn->cfi, sizeof(struct cfi_state))) { + if (cficmp(alt_cfi[group_off], insn->cfi)) { WARN_FUNC("stack layout conflict in alternatives", insn->sec, insn->offset); return -1; @@ -2597,9 +2807,14 @@ static bool insn_cfi_match(struct instruction *insn, struct cfi_state *cfi2) { - struct cfi_state *cfi1 = &insn->cfi; + struct cfi_state *cfi1 = insn->cfi; int i; + if (!cfi1) { + WARN("CFI missing"); + return false; + } + if (memcmp(&cfi1->cfa, &cfi2->cfa, sizeof(cfi1->cfa))) { WARN_FUNC("stack state mismatch: cfa1=%d%+d cfa2=%d%+d", @@ -2784,7 +2999,7 @@ struct instruction *insn, struct insn_state state) { struct alternative *alt; - struct instruction *next_insn; + struct instruction *next_insn, *prev_insn = NULL; struct section *sec; u8 visited; int ret; @@ -2806,22 +3021,61 @@ return 1; } - visited = 1 << state.uaccess; - if (insn->visited) { + visited = VISITED_BRANCH << state.uaccess; + if (insn->visited & VISITED_BRANCH_MASK) { if (!insn->hint && !insn_cfi_match(insn, &state.cfi)) return 1; if (insn->visited & visited) return 0; + } else { + nr_insns_visited++; } if (state.noinstr) state.instr += insn->instr; - if (insn->hint) - state.cfi = insn->cfi; - else - insn->cfi = state.cfi; + if (insn->hint) { + if (insn->restore) { + struct instruction *save_insn, *i; + + i = insn; + save_insn = NULL; + + sym_for_each_insn_continue_reverse(file, func, i) { + if (i->save) { + save_insn = i; + break; + } + } + + if (!save_insn) { + WARN_FUNC("no corresponding CFI save for CFI restore", + sec, insn->offset); + return 1; + } + + if (!save_insn->visited) { + WARN_FUNC("objtool isn't smart enough to handle this CFI save/restore combo", + sec, insn->offset); + return 1; + } + + insn->cfi = save_insn->cfi; + nr_cfi_reused++; + } + + state.cfi = *insn->cfi; + } else { + /* XXX track if we actually changed state.cfi */ + + if (prev_insn && !cficmp(prev_insn->cfi, &state.cfi)) { + insn->cfi = prev_insn->cfi; + nr_cfi_reused++; + } else { + insn->cfi = cfi_hash_find_or_add(&state.cfi); + } + } insn->visited |= visited; @@ -2853,6 +3107,11 @@ switch (insn->type) { case INSN_RETURN: + if (sls && !insn->retpoline_safe && + next_insn && next_insn->type != INSN_TRAP) { + WARN_FUNC("missing int3 after ret", + insn->sec, insn->offset); + } return validate_return(func, insn, &state); case INSN_CALL: @@ -2896,6 +3155,13 @@ break; case INSN_JUMP_DYNAMIC: + if (sls && !insn->retpoline_safe && + next_insn && next_insn->type != INSN_TRAP) { + WARN_FUNC("missing int3 after indirect jump", + insn->sec, insn->offset); + } + + /* fallthrough */ case INSN_JUMP_DYNAMIC_CONDITIONAL: if (is_sibling_call(insn)) { ret = validate_sibling_call(insn, &state); @@ -2971,6 +3237,7 @@ return 1; } + prev_insn = insn; insn = next_insn; } @@ -3010,6 +3277,145 @@ return warnings; } +/* + * Validate rethunk entry constraint: must untrain RET before the first RET. + * + * Follow every branch (intra-function) and ensure ANNOTATE_UNRET_END comes + * before an actual RET instruction. + */ +static int validate_entry(struct objtool_file *file, struct instruction *insn) +{ + struct instruction *next, *dest; + int ret, warnings = 0; + + for (;;) { + next = next_insn_to_validate(file, insn); + + if (insn->visited & VISITED_ENTRY) + return 0; + + insn->visited |= VISITED_ENTRY; + + if (!insn->ignore_alts && !list_empty(&insn->alts)) { + struct alternative *alt; + bool skip_orig = false; + + list_for_each_entry(alt, &insn->alts, list) { + if (alt->skip_orig) + skip_orig = true; + + ret = validate_entry(file, alt->insn); + if (ret) { + if (backtrace) + BT_FUNC("(alt)", insn); + return ret; + } + } + + if (skip_orig) + return 0; + } + + switch (insn->type) { + + case INSN_CALL_DYNAMIC: + case INSN_JUMP_DYNAMIC: + case INSN_JUMP_DYNAMIC_CONDITIONAL: + WARN_FUNC("early indirect call", insn->sec, insn->offset); + return 1; + + case INSN_JUMP_UNCONDITIONAL: + case INSN_JUMP_CONDITIONAL: + if (!is_sibling_call(insn)) { + if (!insn->jump_dest) { + WARN_FUNC("unresolved jump target after linking?!?", + insn->sec, insn->offset); + return -1; + } + ret = validate_entry(file, insn->jump_dest); + if (ret) { + if (backtrace) { + BT_FUNC("(branch%s)", insn, + insn->type == INSN_JUMP_CONDITIONAL ? "-cond" : ""); + } + return ret; + } + + if (insn->type == INSN_JUMP_UNCONDITIONAL) + return 0; + + break; + } + + /* fallthrough */ + case INSN_CALL: + dest = find_insn(file, insn->call_dest->sec, + insn->call_dest->offset); + if (!dest) { + WARN("Unresolved function after linking!?: %s", + insn->call_dest->name); + return -1; + } + + ret = validate_entry(file, dest); + if (ret) { + if (backtrace) + BT_FUNC("(call)", insn); + return ret; + } + /* + * If a call returns without error, it must have seen UNTRAIN_RET. + * Therefore any non-error return is a success. + */ + return 0; + + case INSN_RETURN: + WARN_FUNC("RET before UNTRAIN", insn->sec, insn->offset); + return 1; + + case INSN_NOP: + if (insn->retpoline_safe) + return 0; + break; + + default: + break; + } + + if (!next) { + WARN_FUNC("teh end!", insn->sec, insn->offset); + return -1; + } + insn = next; + } + + return warnings; +} + +/* + * Validate that all branches starting at 'insn->entry' encounter UNRET_END + * before RET. + */ +static int validate_unret(struct objtool_file *file) +{ + struct instruction *insn; + int ret, warnings = 0; + + for_each_insn(file, insn) { + if (!insn->entry) + continue; + + ret = validate_entry(file, insn); + if (ret < 0) { + WARN_FUNC("Failed UNRET validation", insn->sec, insn->offset); + return ret; + } + warnings += ret; + } + + return warnings; +} + static int validate_retpoline(struct objtool_file *file) { struct instruction *insn; @@ -3017,7 +3423,8 @@ for_each_insn(file, insn) { if (insn->type != INSN_JUMP_DYNAMIC && - insn->type != INSN_CALL_DYNAMIC) + insn->type != INSN_CALL_DYNAMIC && + insn->type != INSN_RETURN) continue; if (insn->retpoline_safe) @@ -3032,9 +3439,17 @@ if (!strcmp(insn->sec->name, ".init.text") && !module) continue; - WARN_FUNC("indirect %s found in RETPOLINE build", - insn->sec, insn->offset, - insn->type == INSN_JUMP_DYNAMIC ? "jump" : "call"); + if (insn->type == INSN_RETURN) { + if (rethunk) { + WARN_FUNC("'naked' return found in RETHUNK build", + insn->sec, insn->offset); + } else + continue; + } else { + WARN_FUNC("indirect %s found in RETPOLINE build", + insn->sec, insn->offset, + insn->type == INSN_JUMP_DYNAMIC ? "jump" : "call"); + } warnings++; } @@ -3060,7 +3475,7 @@ int i; struct instruction *prev_insn; - if (insn->ignore || insn->type == INSN_NOP) + if (insn->ignore || insn->type == INSN_NOP || insn->type == INSN_TRAP) return true; /* @@ -3226,10 +3641,20 @@ int ret, warnings = 0; arch_initial_func_cfi_state(&initial_func_cfi); + init_cfi_state(&init_cfi); + init_cfi_state(&func_cfi); + set_func_state(&func_cfi); + + if (!cfi_hash_alloc(1UL << (file->elf->symbol_bits - 3))) + goto out; + + cfi_hash_add(&init_cfi); + cfi_hash_add(&func_cfi); ret = decode_sections(file); if (ret < 0) goto out; + warnings += ret; if (list_empty(&file->insn_list)) @@ -3261,6 +3686,17 @@ goto out; warnings += ret; + if (unret) { + /* + * Must be after validate_branch() and friends, it plays + * further games with insn->visited. + */ + ret = validate_unret(file); + if (ret < 0) + return ret; + warnings += ret; + } + if (!warnings) { ret = validate_reachable_instructions(file); if (ret < 0) @@ -3280,6 +3716,13 @@ warnings += ret; } + if (rethunk) { + ret = create_return_sites_sections(file); + if (ret < 0) + goto out; + warnings += ret; + } + if (mcount) { ret = create_mcount_loc_sections(file); if (ret < 0) @@ -3287,6 +3730,13 @@ warnings += ret; } + if (stats) { + printf("nr_insns_visited: %ld\n", nr_insns_visited); + printf("nr_cfi: %ld\n", nr_cfi); + printf("nr_cfi_reused: %ld\n", nr_cfi_reused); + printf("nr_cfi_cache: %ld\n", nr_cfi_cache); + } + out: /* * For now, don't fail the kernel build on fatal warnings. These diff -u linux-intel-iotg-5.15-5.15.0/tools/objtool/elf.c linux-intel-iotg-5.15-5.15.0/tools/objtool/elf.c --- linux-intel-iotg-5.15-5.15.0/tools/objtool/elf.c +++ linux-intel-iotg-5.15-5.15.0/tools/objtool/elf.c @@ -314,6 +314,8 @@ struct list_head *entry; struct rb_node *pnode; + sym->alias = sym; + sym->type = GELF_ST_TYPE(sym->sym.st_info); sym->bind = GELF_ST_BIND(sym->sym.st_info); @@ -375,7 +377,6 @@ return -1; } memset(sym, 0, sizeof(*sym)); - sym->alias = sym; sym->idx = i; @@ -485,7 +486,7 @@ int reltype); int elf_add_reloc(struct elf *elf, struct section *sec, unsigned long offset, - unsigned int type, struct symbol *sym, int addend) + unsigned int type, struct symbol *sym, s64 addend) { struct reloc *reloc; @@ -514,37 +515,239 @@ return 0; } +/* + * Ensure that any reloc section containing references to @sym is marked + * changed such that it will get re-generated in elf_rebuild_reloc_sections() + * with the new symbol index. + */ +static void elf_dirty_reloc_sym(struct elf *elf, struct symbol *sym) +{ + struct section *sec; + + list_for_each_entry(sec, &elf->sections, list) { + struct reloc *reloc; + + if (sec->changed) + continue; + + list_for_each_entry(reloc, &sec->reloc_list, list) { + if (reloc->sym == sym) { + sec->changed = true; + break; + } + } + } +} + +/* + * The libelf API is terrible; gelf_update_sym*() takes a data block relative + * index value, *NOT* the symbol index. As such, iterate the data blocks and + * adjust index until it fits. + * + * If no data block is found, allow adding a new data block provided the index + * is only one past the end. + */ +static int elf_update_symbol(struct elf *elf, struct section *symtab, + struct section *symtab_shndx, struct symbol *sym) +{ + Elf32_Word shndx = sym->sec ? sym->sec->idx : SHN_UNDEF; + Elf_Data *symtab_data = NULL, *shndx_data = NULL; + Elf64_Xword entsize = symtab->sh.sh_entsize; + int max_idx, idx = sym->idx; + Elf_Scn *s, *t = NULL; + + s = elf_getscn(elf->elf, symtab->idx); + if (!s) { + WARN_ELF("elf_getscn"); + return -1; + } + + if (symtab_shndx) { + t = elf_getscn(elf->elf, symtab_shndx->idx); + if (!t) { + WARN_ELF("elf_getscn"); + return -1; + } + } + + for (;;) { + /* get next data descriptor for the relevant sections */ + symtab_data = elf_getdata(s, symtab_data); + if (t) + shndx_data = elf_getdata(t, shndx_data); + + /* end-of-list */ + if (!symtab_data) { + void *buf; + + if (idx) { + /* we don't do holes in symbol tables */ + WARN("index out of range"); + return -1; + } + + /* if @idx == 0, it's the next contiguous entry, create it */ + symtab_data = elf_newdata(s); + if (t) + shndx_data = elf_newdata(t); + + buf = calloc(1, entsize); + if (!buf) { + WARN("malloc"); + return -1; + } + + symtab_data->d_buf = buf; + symtab_data->d_size = entsize; + symtab_data->d_align = 1; + symtab_data->d_type = ELF_T_SYM; + + symtab->sh.sh_size += entsize; + symtab->changed = true; + + if (t) { + shndx_data->d_buf = &sym->sec->idx; + shndx_data->d_size = sizeof(Elf32_Word); + shndx_data->d_align = sizeof(Elf32_Word); + shndx_data->d_type = ELF_T_WORD; + + symtab_shndx->sh.sh_size += sizeof(Elf32_Word); + symtab_shndx->changed = true; + } + + break; + } + + /* empty blocks should not happen */ + if (!symtab_data->d_size) { + WARN("zero size data"); + return -1; + } + + /* is this the right block? */ + max_idx = symtab_data->d_size / entsize; + if (idx < max_idx) + break; + + /* adjust index and try again */ + idx -= max_idx; + } + + /* something went side-ways */ + if (idx < 0) { + WARN("negative index"); + return -1; + } + + /* setup extended section index magic and write the symbol */ + if (shndx >= SHN_UNDEF && shndx < SHN_LORESERVE) { + sym->sym.st_shndx = shndx; + if (!shndx_data) + shndx = 0; + } else { + sym->sym.st_shndx = SHN_XINDEX; + if (!shndx_data) { + WARN("no .symtab_shndx"); + return -1; + } + } + + if (!gelf_update_symshndx(symtab_data, shndx_data, idx, &sym->sym, shndx)) { + WARN_ELF("gelf_update_symshndx"); + return -1; + } + + return 0; +} + +static struct symbol * +elf_create_section_symbol(struct elf *elf, struct section *sec) +{ + struct section *symtab, *symtab_shndx; + Elf32_Word first_non_local, new_idx; + struct symbol *sym, *old; + + symtab = find_section_by_name(elf, ".symtab"); + if (symtab) { + symtab_shndx = find_section_by_name(elf, ".symtab_shndx"); + } else { + WARN("no .symtab"); + return NULL; + } + + sym = calloc(1, sizeof(*sym)); + if (!sym) { + perror("malloc"); + return NULL; + } + + sym->name = sec->name; + sym->sec = sec; + + // st_name 0 + sym->sym.st_info = GELF_ST_INFO(STB_LOCAL, STT_SECTION); + // st_other 0 + // st_value 0 + // st_size 0 + + /* + * Move the first global symbol, as per sh_info, into a new, higher + * symbol index. This fees up a spot for a new local symbol. + */ + first_non_local = symtab->sh.sh_info; + new_idx = symtab->sh.sh_size / symtab->sh.sh_entsize; + old = find_symbol_by_index(elf, first_non_local); + if (old) { + old->idx = new_idx; + + hlist_del(&old->hash); + elf_hash_add(symbol, &old->hash, old->idx); + + elf_dirty_reloc_sym(elf, old); + + if (elf_update_symbol(elf, symtab, symtab_shndx, old)) { + WARN("elf_update_symbol move"); + return NULL; + } + + new_idx = first_non_local; + } + + sym->idx = new_idx; + if (elf_update_symbol(elf, symtab, symtab_shndx, sym)) { + WARN("elf_update_symbol"); + return NULL; + } + + /* + * Either way, we added a LOCAL symbol. + */ + symtab->sh.sh_info += 1; + + elf_add_symbol(elf, sym); + + return sym; +} + int elf_add_reloc_to_insn(struct elf *elf, struct section *sec, unsigned long offset, unsigned int type, struct section *insn_sec, unsigned long insn_off) { - struct symbol *sym; - int addend; + struct symbol *sym = insn_sec->sym; + int addend = insn_off; - if (insn_sec->sym) { - sym = insn_sec->sym; - addend = insn_off; - - } else { + if (!sym) { /* - * The Clang assembler strips section symbols, so we have to - * reference the function symbol instead: + * Due to how weak functions work, we must use section based + * relocations. Symbol based relocations would result in the + * weak and non-weak function annotations being overlaid on the + * non-weak function after linking. */ - sym = find_symbol_containing(insn_sec, insn_off); - if (!sym) { - /* - * Hack alert. This happens when we need to reference - * the NOP pad insn immediately after the function. - */ - sym = find_symbol_containing(insn_sec, insn_off - 1); - } - - if (!sym) { - WARN("can't find symbol containing %s+0x%lx", insn_sec->name, insn_off); + sym = elf_create_section_symbol(elf, insn_sec); + if (!sym) return -1; - } - addend = insn_off - sym->offset; + insn_sec->sym = sym; } return elf_add_reloc(elf, sec, offset, type, sym, addend); diff -u linux-intel-iotg-5.15-5.15.0/tools/objtool/include/objtool/arch.h linux-intel-iotg-5.15-5.15.0/tools/objtool/include/objtool/arch.h --- linux-intel-iotg-5.15-5.15.0/tools/objtool/include/objtool/arch.h +++ linux-intel-iotg-5.15-5.15.0/tools/objtool/include/objtool/arch.h @@ -26,6 +26,7 @@ INSN_CLAC, INSN_STD, INSN_CLD, + INSN_TRAP, INSN_OTHER, }; @@ -84,9 +85,10 @@ const char *arch_nop_insn(int len); const char *arch_ret_insn(int len); -int arch_decode_hint_reg(struct instruction *insn, u8 sp_reg); +int arch_decode_hint_reg(u8 sp_reg, int *base); bool arch_is_retpoline(struct symbol *sym); +bool arch_is_rethunk(struct symbol *sym); int arch_rewrite_retpolines(struct objtool_file *file); diff -u linux-intel-iotg-5.15-5.15.0/tools/objtool/include/objtool/check.h linux-intel-iotg-5.15-5.15.0/tools/objtool/include/objtool/check.h --- linux-intel-iotg-5.15-5.15.0/tools/objtool/include/objtool/check.h +++ linux-intel-iotg-5.15-5.15.0/tools/objtool/include/objtool/check.h @@ -47,7 +47,9 @@ unsigned long immediate; bool dead_end, ignore, ignore_alts; bool hint; + bool save, restore; bool retpoline_safe; + bool entry; s8 instr; u8 visited; struct alt_group *alt_group; @@ -59,9 +61,14 @@ struct list_head alts; struct symbol *func; struct list_head stack_ops; - struct cfi_state cfi; + struct cfi_state *cfi; }; +#define VISITED_BRANCH 0x01 +#define VISITED_BRANCH_UACCESS 0x02 +#define VISITED_BRANCH_MASK 0x03 +#define VISITED_ENTRY 0x04 + static inline bool is_static_jump(struct instruction *insn) { return insn->type == INSN_JUMP_CONDITIONAL || diff -u linux-intel-iotg-5.15-5.15.0/tools/objtool/include/objtool/elf.h linux-intel-iotg-5.15-5.15.0/tools/objtool/include/objtool/elf.h --- linux-intel-iotg-5.15-5.15.0/tools/objtool/include/objtool/elf.h +++ linux-intel-iotg-5.15-5.15.0/tools/objtool/include/objtool/elf.h @@ -57,6 +57,7 @@ u8 uaccess_safe : 1; u8 static_call_tramp : 1; u8 retpoline_thunk : 1; + u8 return_thunk : 1; u8 fentry : 1; u8 kcov : 1; }; @@ -72,7 +73,7 @@ struct symbol *sym; unsigned long offset; unsigned int type; - int addend; + s64 addend; int idx; bool jump_table_start; }; @@ -134,7 +135,7 @@ struct section *elf_create_section(struct elf *elf, const char *name, unsigned int sh_flags, size_t entsize, int nr); int elf_add_reloc(struct elf *elf, struct section *sec, unsigned long offset, - unsigned int type, struct symbol *sym, int addend); + unsigned int type, struct symbol *sym, s64 addend); int elf_add_reloc_to_insn(struct elf *elf, struct section *sec, unsigned long offset, unsigned int type, struct section *insn_sec, unsigned long insn_off); diff -u linux-intel-iotg-5.15-5.15.0/tools/perf/Makefile.config linux-intel-iotg-5.15-5.15.0/tools/perf/Makefile.config --- linux-intel-iotg-5.15-5.15.0/tools/perf/Makefile.config +++ linux-intel-iotg-5.15-5.15.0/tools/perf/Makefile.config @@ -237,18 +237,33 @@ endif # Try different combinations to accommodate systems that only have -# python[2][-config] in weird combinations but always preferring -# python2 and python2-config as per pep-0394. If python2 or python -# aren't found, then python3 is used. -PYTHON_AUTO := python -PYTHON_AUTO := $(if $(call get-executable,python3),python3,$(PYTHON_AUTO)) -PYTHON_AUTO := $(if $(call get-executable,python),python,$(PYTHON_AUTO)) -PYTHON_AUTO := $(if $(call get-executable,python2),python2,$(PYTHON_AUTO)) -override PYTHON := $(call get-executable-or-default,PYTHON,$(PYTHON_AUTO)) -PYTHON_AUTO_CONFIG := \ - $(if $(call get-executable,$(PYTHON)-config),$(PYTHON)-config,python-config) -override PYTHON_CONFIG := \ - $(call get-executable-or-default,PYTHON_CONFIG,$(PYTHON_AUTO_CONFIG)) +# python[2][3]-config in weird combinations in the following order of +# priority from lowest to highest: +# * python3-config +# * python-config +# * python2-config as per pep-0394. +# * $(PYTHON)-config (If PYTHON is user supplied but PYTHON_CONFIG isn't) +# +PYTHON_AUTO := python-config +PYTHON_AUTO := $(if $(call get-executable,python3-config),python3-config,$(PYTHON_AUTO)) +PYTHON_AUTO := $(if $(call get-executable,python-config),python-config,$(PYTHON_AUTO)) +PYTHON_AUTO := $(if $(call get-executable,python2-config),python2-config,$(PYTHON_AUTO)) + +# If PYTHON is defined but PYTHON_CONFIG isn't, then take $(PYTHON)-config as if it was the user +# supplied value for PYTHON_CONFIG. Because it's "user supplied", error out if it doesn't exist. +ifdef PYTHON + ifndef PYTHON_CONFIG + PYTHON_CONFIG_AUTO := $(call get-executable,$(PYTHON)-config) + PYTHON_CONFIG := $(if $(PYTHON_CONFIG_AUTO),$(PYTHON_CONFIG_AUTO),\ + $(call $(error $(PYTHON)-config not found))) + endif +endif + +# Select either auto detected python and python-config or use user supplied values if they are +# defined. get-executable-or-default fails with an error if the first argument is supplied but +# doesn't exist. +override PYTHON_CONFIG := $(call get-executable-or-default,PYTHON_CONFIG,$(PYTHON_AUTO)) +override PYTHON := $(call get-executable-or-default,PYTHON,$(subst -config,,$(PYTHON_AUTO))) grep-libs = $(filter -l%,$(1)) strip-libs = $(filter-out -l%,$(1)) @@ -548,9 +563,16 @@ ifeq ($(feature-libbpf), 1) EXTLIBS += -lbpf $(call detected,CONFIG_LIBBPF_DYNAMIC) + + $(call feature_check,libbpf-btf__load_from_kernel_by_id) + ifeq ($(feature-libbpf-btf__load_from_kernel_by_id), 1) + CFLAGS += -DHAVE_LIBBPF_BTF__LOAD_FROM_KERNEL_BY_ID + endif else dummy := $(error Error: No libbpf devel library found, please install libbpf-devel); endif + else + CFLAGS += -DHAVE_LIBBPF_BTF__LOAD_FROM_KERNEL_BY_ID endif endif diff -u linux-intel-iotg-5.15-5.15.0/tools/perf/builtin-report.c linux-intel-iotg-5.15-5.15.0/tools/perf/builtin-report.c --- linux-intel-iotg-5.15-5.15.0/tools/perf/builtin-report.c +++ linux-intel-iotg-5.15-5.15.0/tools/perf/builtin-report.c @@ -349,6 +349,7 @@ struct perf_session *session = rep->session; u64 sample_type = evlist__combined_sample_type(session->evlist); bool is_pipe = perf_data__is_pipe(session->data); + struct evsel *evsel; if (session->itrace_synth_opts->callchain || session->itrace_synth_opts->add_callchain || @@ -403,6 +404,19 @@ } if (sort__mode == SORT_MODE__MEMORY) { + /* + * FIXUP: prior to kernel 5.18, Arm SPE missed to set + * PERF_SAMPLE_DATA_SRC bit in sample type. For backward + * compatibility, set the bit if it's an old perf data file. + */ + evlist__for_each_entry(session->evlist, evsel) { + if (strstr(evsel->name, "arm_spe") && + !(sample_type & PERF_SAMPLE_DATA_SRC)) { + evsel->core.attr.sample_type |= PERF_SAMPLE_DATA_SRC; + sample_type |= PERF_SAMPLE_DATA_SRC; + } + } + if (!is_pipe && !(sample_type & PERF_SAMPLE_DATA_SRC)) { ui__error("Selected --mem-mode but no mem data. " "Did you call perf record without -d?\n"); diff -u linux-intel-iotg-5.15-5.15.0/tools/perf/builtin-script.c linux-intel-iotg-5.15-5.15.0/tools/perf/builtin-script.c --- linux-intel-iotg-5.15-5.15.0/tools/perf/builtin-script.c +++ linux-intel-iotg-5.15-5.15.0/tools/perf/builtin-script.c @@ -455,7 +455,7 @@ return -EINVAL; if (PRINT_FIELD(DATA_SRC) && - evsel__check_stype(evsel, PERF_SAMPLE_DATA_SRC, "DATA_SRC", PERF_OUTPUT_DATA_SRC)) + evsel__do_check_stype(evsel, PERF_SAMPLE_DATA_SRC, "DATA_SRC", PERF_OUTPUT_DATA_SRC, allow_user_set)) return -EINVAL; if (PRINT_FIELD(WEIGHT) && diff -u linux-intel-iotg-5.15-5.15.0/tools/perf/util/arm-spe.c linux-intel-iotg-5.15-5.15.0/tools/perf/util/arm-spe.c --- linux-intel-iotg-5.15-5.15.0/tools/perf/util/arm-spe.c +++ linux-intel-iotg-5.15-5.15.0/tools/perf/util/arm-spe.c @@ -927,7 +927,8 @@ attr.type = PERF_TYPE_HARDWARE; attr.sample_type = evsel->core.attr.sample_type & PERF_SAMPLE_MASK; attr.sample_type |= PERF_SAMPLE_IP | PERF_SAMPLE_TID | - PERF_SAMPLE_PERIOD | PERF_SAMPLE_DATA_SRC; + PERF_SAMPLE_PERIOD | PERF_SAMPLE_DATA_SRC | + PERF_SAMPLE_ADDR; if (spe->timeless_decoding) attr.sample_type &= ~(u64)PERF_SAMPLE_TIME; else diff -u linux-intel-iotg-5.15-5.15.0/tools/perf/util/bpf-event.c linux-intel-iotg-5.15-5.15.0/tools/perf/util/bpf-event.c --- linux-intel-iotg-5.15-5.15.0/tools/perf/util/bpf-event.c +++ linux-intel-iotg-5.15-5.15.0/tools/perf/util/bpf-event.c @@ -21,7 +21,8 @@ #include "record.h" #include "util/synthetic-events.h" -struct btf * __weak btf__load_from_kernel_by_id(__u32 id) +#ifndef HAVE_LIBBPF_BTF__LOAD_FROM_KERNEL_BY_ID +struct btf *btf__load_from_kernel_by_id(__u32 id) { struct btf *btf; #pragma GCC diagnostic push @@ -31,6 +32,7 @@ return err ? ERR_PTR(err) : btf; } +#endif #define ptr_to_u64(ptr) ((__u64)(unsigned long)(ptr)) diff -u linux-intel-iotg-5.15-5.15.0/tools/perf/util/symbol.c linux-intel-iotg-5.15-5.15.0/tools/perf/util/symbol.c --- linux-intel-iotg-5.15-5.15.0/tools/perf/util/symbol.c +++ linux-intel-iotg-5.15-5.15.0/tools/perf/util/symbol.c @@ -101,11 +101,6 @@ return tail - str; } -void __weak arch__symbols__fixup_end(struct symbol *p, struct symbol *c) -{ - p->end = c->start; -} - const char * __weak arch__normalize_symbol_name(const char *name) { return name; @@ -217,7 +212,8 @@ } } -void symbols__fixup_end(struct rb_root_cached *symbols) +/* Update zero-sized symbols using the address of the next symbol */ +void symbols__fixup_end(struct rb_root_cached *symbols, bool is_kallsyms) { struct rb_node *nd, *prevnd = rb_first_cached(symbols); struct symbol *curr, *prev; @@ -231,8 +227,29 @@ prev = curr; curr = rb_entry(nd, struct symbol, rb_node); - if (prev->end == prev->start || prev->end != curr->start) - arch__symbols__fixup_end(prev, curr); + /* + * On some architecture kernel text segment start is located at + * some low memory address, while modules are located at high + * memory addresses (or vice versa). The gap between end of + * kernel text segment and beginning of first module's text + * segment is very big. Therefore do not fill this gap and do + * not assign it to the kernel dso map (kallsyms). + * + * In kallsyms, it determines module symbols using '[' character + * like in: + * ffffffffc1937000 T hdmi_driver_init [snd_hda_codec_hdmi] + */ + if (prev->end == prev->start) { + /* Last kernel/module symbol mapped to end of page */ + if (is_kallsyms && (!strchr(prev->name, '[') != + !strchr(curr->name, '['))) + prev->end = roundup(prev->end + 4096, 4096); + else + prev->end = curr->start; + + pr_debug4("%s sym:%s end:%#" PRIx64 "\n", + __func__, prev->name, prev->end); + } } /* Last entry */ @@ -1456,7 +1473,7 @@ if (kallsyms__delta(kmap, filename, &delta)) return -1; - symbols__fixup_end(&dso->symbols); + symbols__fixup_end(&dso->symbols, true); symbols__fixup_duplicate(&dso->symbols); if (dso->kernel == DSO_SPACE__KERNEL_GUEST) @@ -1648,7 +1665,7 @@ #undef bfd_asymbol_section #endif - symbols__fixup_end(&dso->symbols); + symbols__fixup_end(&dso->symbols, false); symbols__fixup_duplicate(&dso->symbols); dso->adjust_symbols = 1; diff -u linux-intel-iotg-5.15-5.15.0/tools/testing/selftests/kvm/lib/x86_64/processor.c linux-intel-iotg-5.15-5.15.0/tools/testing/selftests/kvm/lib/x86_64/processor.c --- linux-intel-iotg-5.15-5.15.0/tools/testing/selftests/kvm/lib/x86_64/processor.c +++ linux-intel-iotg-5.15-5.15.0/tools/testing/selftests/kvm/lib/x86_64/processor.c @@ -19,38 +19,6 @@ vm_vaddr_t exception_handlers; -/* Virtual translation table structure declarations */ -struct pageUpperEntry { - uint64_t present:1; - uint64_t writable:1; - uint64_t user:1; - uint64_t write_through:1; - uint64_t cache_disable:1; - uint64_t accessed:1; - uint64_t ignored_06:1; - uint64_t page_size:1; - uint64_t ignored_11_08:4; - uint64_t pfn:40; - uint64_t ignored_62_52:11; - uint64_t execute_disable:1; -}; - -struct pageTableEntry { - uint64_t present:1; - uint64_t writable:1; - uint64_t user:1; - uint64_t write_through:1; - uint64_t cache_disable:1; - uint64_t accessed:1; - uint64_t dirty:1; - uint64_t reserved_07:1; - uint64_t global:1; - uint64_t ignored_11_09:3; - uint64_t pfn:40; - uint64_t ignored_62_52:11; - uint64_t execute_disable:1; -}; - void regs_dump(FILE *stream, struct kvm_regs *regs, uint8_t indent) { @@ -195,23 +163,21 @@ return &page_table[index]; } -static struct pageUpperEntry *virt_create_upper_pte(struct kvm_vm *vm, - uint64_t pt_pfn, - uint64_t vaddr, - uint64_t paddr, - int level, - enum x86_page_size page_size) +static uint64_t *virt_create_upper_pte(struct kvm_vm *vm, + uint64_t pt_pfn, + uint64_t vaddr, + uint64_t paddr, + int level, + enum x86_page_size page_size) { - struct pageUpperEntry *pte = virt_get_pte(vm, pt_pfn, vaddr, level); + uint64_t *pte = virt_get_pte(vm, pt_pfn, vaddr, level); - if (!pte->present) { - pte->writable = true; - pte->present = true; - pte->page_size = (level == page_size); - if (pte->page_size) - pte->pfn = paddr >> vm->page_shift; + if (!(*pte & PTE_PRESENT_MASK)) { + *pte = PTE_PRESENT_MASK | PTE_WRITABLE_MASK; + if (level == page_size) + *pte |= PTE_LARGE_MASK | (paddr & PHYSICAL_PAGE_MASK); else - pte->pfn = vm_alloc_page_table(vm) >> vm->page_shift; + *pte |= vm_alloc_page_table(vm) & PHYSICAL_PAGE_MASK; } else { /* * Entry already present. Assert that the caller doesn't want @@ -221,7 +187,7 @@ TEST_ASSERT(level != page_size, "Cannot create hugepage at level: %u, vaddr: 0x%lx\n", page_size, vaddr); - TEST_ASSERT(!pte->page_size, + TEST_ASSERT(!(*pte & PTE_LARGE_MASK), "Cannot create page table at level: %u, vaddr: 0x%lx\n", level, vaddr); } @@ -232,8 +198,8 @@ enum x86_page_size page_size) { const uint64_t pg_size = 1ull << ((page_size * 9) + 12); - struct pageUpperEntry *pml4e, *pdpe, *pde; - struct pageTableEntry *pte; + uint64_t *pml4e, *pdpe, *pde; + uint64_t *pte; TEST_ASSERT(vm->mode == VM_MODE_PXXV48_4K, "Unknown or unsupported guest mode, mode: 0x%x", vm->mode); @@ -257,24 +223,22 @@ */ pml4e = virt_create_upper_pte(vm, vm->pgd >> vm->page_shift, vaddr, paddr, 3, page_size); - if (pml4e->page_size) + if (*pml4e & PTE_LARGE_MASK) return; - pdpe = virt_create_upper_pte(vm, pml4e->pfn, vaddr, paddr, 2, page_size); - if (pdpe->page_size) + pdpe = virt_create_upper_pte(vm, PTE_GET_PFN(*pml4e), vaddr, paddr, 2, page_size); + if (*pdpe & PTE_LARGE_MASK) return; - pde = virt_create_upper_pte(vm, pdpe->pfn, vaddr, paddr, 1, page_size); - if (pde->page_size) + pde = virt_create_upper_pte(vm, PTE_GET_PFN(*pdpe), vaddr, paddr, 1, page_size); + if (*pde & PTE_LARGE_MASK) return; /* Fill in page table entry. */ - pte = virt_get_pte(vm, pde->pfn, vaddr, 0); - TEST_ASSERT(!pte->present, + pte = virt_get_pte(vm, PTE_GET_PFN(*pde), vaddr, 0); + TEST_ASSERT(!(*pte & PTE_PRESENT_MASK), "PTE already present for 4k page at vaddr: 0x%lx\n", vaddr); - pte->pfn = paddr >> vm->page_shift; - pte->writable = true; - pte->present = 1; + *pte = PTE_PRESENT_MASK | PTE_WRITABLE_MASK | (paddr & PHYSICAL_PAGE_MASK); } void virt_pg_map(struct kvm_vm *vm, uint64_t vaddr, uint64_t paddr) @@ -282,12 +246,12 @@ __virt_pg_map(vm, vaddr, paddr, X86_PAGE_SIZE_4K); } -static struct pageTableEntry *_vm_get_page_table_entry(struct kvm_vm *vm, int vcpuid, +static uint64_t *_vm_get_page_table_entry(struct kvm_vm *vm, int vcpuid, uint64_t vaddr) { uint16_t index[4]; - struct pageUpperEntry *pml4e, *pdpe, *pde; - struct pageTableEntry *pte; + uint64_t *pml4e, *pdpe, *pde; + uint64_t *pte; struct kvm_cpuid_entry2 *entry; struct kvm_sregs sregs; int max_phy_addr; @@ -329,30 +293,29 @@ index[3] = (vaddr >> 39) & 0x1ffu; pml4e = addr_gpa2hva(vm, vm->pgd); - TEST_ASSERT(pml4e[index[3]].present, + TEST_ASSERT(pml4e[index[3]] & PTE_PRESENT_MASK, "Expected pml4e to be present for gva: 0x%08lx", vaddr); - TEST_ASSERT((*(uint64_t*)(&pml4e[index[3]]) & - (rsvd_mask | (1ull << 7))) == 0, + TEST_ASSERT((pml4e[index[3]] & (rsvd_mask | PTE_LARGE_MASK)) == 0, "Unexpected reserved bits set."); - pdpe = addr_gpa2hva(vm, pml4e[index[3]].pfn * vm->page_size); - TEST_ASSERT(pdpe[index[2]].present, + pdpe = addr_gpa2hva(vm, PTE_GET_PFN(pml4e[index[3]]) * vm->page_size); + TEST_ASSERT(pdpe[index[2]] & PTE_PRESENT_MASK, "Expected pdpe to be present for gva: 0x%08lx", vaddr); - TEST_ASSERT(pdpe[index[2]].page_size == 0, + TEST_ASSERT(!(pdpe[index[2]] & PTE_LARGE_MASK), "Expected pdpe to map a pde not a 1-GByte page."); - TEST_ASSERT((*(uint64_t*)(&pdpe[index[2]]) & rsvd_mask) == 0, + TEST_ASSERT((pdpe[index[2]] & rsvd_mask) == 0, "Unexpected reserved bits set."); - pde = addr_gpa2hva(vm, pdpe[index[2]].pfn * vm->page_size); - TEST_ASSERT(pde[index[1]].present, + pde = addr_gpa2hva(vm, PTE_GET_PFN(pdpe[index[2]]) * vm->page_size); + TEST_ASSERT(pde[index[1]] & PTE_PRESENT_MASK, "Expected pde to be present for gva: 0x%08lx", vaddr); - TEST_ASSERT(pde[index[1]].page_size == 0, + TEST_ASSERT(!(pde[index[1]] & PTE_LARGE_MASK), "Expected pde to map a pte not a 2-MByte page."); - TEST_ASSERT((*(uint64_t*)(&pde[index[1]]) & rsvd_mask) == 0, + TEST_ASSERT((pde[index[1]] & rsvd_mask) == 0, "Unexpected reserved bits set."); - pte = addr_gpa2hva(vm, pde[index[1]].pfn * vm->page_size); - TEST_ASSERT(pte[index[0]].present, + pte = addr_gpa2hva(vm, PTE_GET_PFN(pde[index[1]]) * vm->page_size); + TEST_ASSERT(pte[index[0]] & PTE_PRESENT_MASK, "Expected pte to be present for gva: 0x%08lx", vaddr); return &pte[index[0]]; @@ -360,7 +323,7 @@ uint64_t vm_get_page_table_entry(struct kvm_vm *vm, int vcpuid, uint64_t vaddr) { - struct pageTableEntry *pte = _vm_get_page_table_entry(vm, vcpuid, vaddr); + uint64_t *pte = _vm_get_page_table_entry(vm, vcpuid, vaddr); return *(uint64_t *)pte; } @@ -368,18 +331,17 @@ void vm_set_page_table_entry(struct kvm_vm *vm, int vcpuid, uint64_t vaddr, uint64_t pte) { - struct pageTableEntry *new_pte = _vm_get_page_table_entry(vm, vcpuid, - vaddr); + uint64_t *new_pte = _vm_get_page_table_entry(vm, vcpuid, vaddr); *(uint64_t *)new_pte = pte; } void virt_dump(FILE *stream, struct kvm_vm *vm, uint8_t indent) { - struct pageUpperEntry *pml4e, *pml4e_start; - struct pageUpperEntry *pdpe, *pdpe_start; - struct pageUpperEntry *pde, *pde_start; - struct pageTableEntry *pte, *pte_start; + uint64_t *pml4e, *pml4e_start; + uint64_t *pdpe, *pdpe_start; + uint64_t *pde, *pde_start; + uint64_t *pte, *pte_start; if (!vm->pgd_created) return; @@ -389,58 +351,58 @@ fprintf(stream, "%*s index hvaddr gpaddr " "addr w exec dirty\n", indent, ""); - pml4e_start = (struct pageUpperEntry *) addr_gpa2hva(vm, vm->pgd); + pml4e_start = (uint64_t *) addr_gpa2hva(vm, vm->pgd); for (uint16_t n1 = 0; n1 <= 0x1ffu; n1++) { pml4e = &pml4e_start[n1]; - if (!pml4e->present) + if (!(*pml4e & PTE_PRESENT_MASK)) continue; - fprintf(stream, "%*spml4e 0x%-3zx %p 0x%-12lx 0x%-10lx %u " + fprintf(stream, "%*spml4e 0x%-3zx %p 0x%-12lx 0x%-10llx %u " " %u\n", indent, "", pml4e - pml4e_start, pml4e, - addr_hva2gpa(vm, pml4e), (uint64_t) pml4e->pfn, - pml4e->writable, pml4e->execute_disable); + addr_hva2gpa(vm, pml4e), PTE_GET_PFN(*pml4e), + !!(*pml4e & PTE_WRITABLE_MASK), !!(*pml4e & PTE_NX_MASK)); - pdpe_start = addr_gpa2hva(vm, pml4e->pfn * vm->page_size); + pdpe_start = addr_gpa2hva(vm, *pml4e & PHYSICAL_PAGE_MASK); for (uint16_t n2 = 0; n2 <= 0x1ffu; n2++) { pdpe = &pdpe_start[n2]; - if (!pdpe->present) + if (!(*pdpe & PTE_PRESENT_MASK)) continue; - fprintf(stream, "%*spdpe 0x%-3zx %p 0x%-12lx 0x%-10lx " + fprintf(stream, "%*spdpe 0x%-3zx %p 0x%-12lx 0x%-10llx " "%u %u\n", indent, "", pdpe - pdpe_start, pdpe, addr_hva2gpa(vm, pdpe), - (uint64_t) pdpe->pfn, pdpe->writable, - pdpe->execute_disable); + PTE_GET_PFN(*pdpe), !!(*pdpe & PTE_WRITABLE_MASK), + !!(*pdpe & PTE_NX_MASK)); - pde_start = addr_gpa2hva(vm, pdpe->pfn * vm->page_size); + pde_start = addr_gpa2hva(vm, *pdpe & PHYSICAL_PAGE_MASK); for (uint16_t n3 = 0; n3 <= 0x1ffu; n3++) { pde = &pde_start[n3]; - if (!pde->present) + if (!(*pde & PTE_PRESENT_MASK)) continue; fprintf(stream, "%*spde 0x%-3zx %p " - "0x%-12lx 0x%-10lx %u %u\n", + "0x%-12lx 0x%-10llx %u %u\n", indent, "", pde - pde_start, pde, addr_hva2gpa(vm, pde), - (uint64_t) pde->pfn, pde->writable, - pde->execute_disable); + PTE_GET_PFN(*pde), !!(*pde & PTE_WRITABLE_MASK), + !!(*pde & PTE_NX_MASK)); - pte_start = addr_gpa2hva(vm, pde->pfn * vm->page_size); + pte_start = addr_gpa2hva(vm, *pde & PHYSICAL_PAGE_MASK); for (uint16_t n4 = 0; n4 <= 0x1ffu; n4++) { pte = &pte_start[n4]; - if (!pte->present) + if (!(*pte & PTE_PRESENT_MASK)) continue; fprintf(stream, "%*spte 0x%-3zx %p " - "0x%-12lx 0x%-10lx %u %u " + "0x%-12lx 0x%-10llx %u %u " " %u 0x%-10lx\n", indent, "", pte - pte_start, pte, addr_hva2gpa(vm, pte), - (uint64_t) pte->pfn, - pte->writable, - pte->execute_disable, - pte->dirty, + PTE_GET_PFN(*pte), + !!(*pte & PTE_WRITABLE_MASK), + !!(*pte & PTE_NX_MASK), + !!(*pte & PTE_DIRTY_MASK), ((uint64_t) n1 << 27) | ((uint64_t) n2 << 18) | ((uint64_t) n3 << 9) @@ -558,8 +520,8 @@ vm_paddr_t addr_gva2gpa(struct kvm_vm *vm, vm_vaddr_t gva) { uint16_t index[4]; - struct pageUpperEntry *pml4e, *pdpe, *pde; - struct pageTableEntry *pte; + uint64_t *pml4e, *pdpe, *pde; + uint64_t *pte; TEST_ASSERT(vm->mode == VM_MODE_PXXV48_4K, "Attempt to use " "unknown or unsupported guest mode, mode: 0x%x", vm->mode); @@ -572,22 +534,22 @@ if (!vm->pgd_created) goto unmapped_gva; pml4e = addr_gpa2hva(vm, vm->pgd); - if (!pml4e[index[3]].present) + if (!(pml4e[index[3]] & PTE_PRESENT_MASK)) goto unmapped_gva; - pdpe = addr_gpa2hva(vm, pml4e[index[3]].pfn * vm->page_size); - if (!pdpe[index[2]].present) + pdpe = addr_gpa2hva(vm, PTE_GET_PFN(pml4e[index[3]]) * vm->page_size); + if (!(pdpe[index[2]] & PTE_PRESENT_MASK)) goto unmapped_gva; - pde = addr_gpa2hva(vm, pdpe[index[2]].pfn * vm->page_size); - if (!pde[index[1]].present) + pde = addr_gpa2hva(vm, PTE_GET_PFN(pdpe[index[2]]) * vm->page_size); + if (!(pde[index[1]] & PTE_PRESENT_MASK)) goto unmapped_gva; - pte = addr_gpa2hva(vm, pde[index[1]].pfn * vm->page_size); - if (!pte[index[0]].present) + pte = addr_gpa2hva(vm, PTE_GET_PFN(pde[index[1]]) * vm->page_size); + if (!(pte[index[0]] & PTE_PRESENT_MASK)) goto unmapped_gva; - return (pte[index[0]].pfn * vm->page_size) + (gva & 0xfffu); + return (PTE_GET_PFN(pte[index[0]]) * vm->page_size) + (gva & 0xfffu); unmapped_gva: TEST_FAIL("No mapping for vm virtual address, gva: 0x%lx", gva); diff -u linux-intel-iotg-5.15-5.15.0/tools/testing/selftests/net/fcnal-test.sh linux-intel-iotg-5.15-5.15.0/tools/testing/selftests/net/fcnal-test.sh --- linux-intel-iotg-5.15-5.15.0/tools/testing/selftests/net/fcnal-test.sh +++ linux-intel-iotg-5.15-5.15.0/tools/testing/selftests/net/fcnal-test.sh @@ -803,10 +803,16 @@ setup set_sysctl net.ipv4.raw_l3mdev_accept=1 2>/dev/null ipv4_ping_novrf + setup + set_sysctl net.ipv4.ping_group_range='0 2147483647' 2>/dev/null + ipv4_ping_novrf log_subsection "With VRF" setup "yes" ipv4_ping_vrf + setup "yes" + set_sysctl net.ipv4.ping_group_range='0 2147483647' 2>/dev/null + ipv4_ping_vrf } ################################################################################ @@ -2324,10 +2330,16 @@ log_subsection "No VRF" setup ipv6_ping_novrf + setup + set_sysctl net.ipv4.ping_group_range='0 2147483647' 2>/dev/null + ipv6_ping_novrf log_subsection "With VRF" setup "yes" ipv6_ping_vrf + setup "yes" + set_sysctl net.ipv4.ping_group_range='0 2147483647' 2>/dev/null + ipv6_ping_vrf } ################################################################################ diff -u linux-intel-iotg-5.15-5.15.0/tools/testing/selftests/net/test_vxlan_under_vrf.sh linux-intel-iotg-5.15-5.15.0/tools/testing/selftests/net/test_vxlan_under_vrf.sh --- linux-intel-iotg-5.15-5.15.0/tools/testing/selftests/net/test_vxlan_under_vrf.sh +++ linux-intel-iotg-5.15-5.15.0/tools/testing/selftests/net/test_vxlan_under_vrf.sh @@ -130,5 +130,2 @@ -if ! ip netns exec vm-1 ping -c 1 -W 1 10.0.0.2 &> /dev/null; then - echo "[XFAIL]" -else - echo "[ OK ]" -fi +ip netns exec vm-1 ping -c 1 -W 1 10.0.0.2 &> /dev/null || (echo "[FAIL]"; false) +echo "[ OK ]" diff -u linux-intel-iotg-5.15-5.15.0/tools/testing/selftests/seccomp/seccomp_bpf.c linux-intel-iotg-5.15-5.15.0/tools/testing/selftests/seccomp/seccomp_bpf.c --- linux-intel-iotg-5.15-5.15.0/tools/testing/selftests/seccomp/seccomp_bpf.c +++ linux-intel-iotg-5.15-5.15.0/tools/testing/selftests/seccomp/seccomp_bpf.c @@ -955,7 +955,7 @@ ASSERT_EQ(0, ret); EXPECT_EQ(parent, syscall(__NR_getppid)); - EXPECT_EQ(-1, read(0, NULL, 0)); + EXPECT_EQ(-1, read(-1, NULL, 0)); EXPECT_EQ(E2BIG, errno); } @@ -974,7 +974,7 @@ EXPECT_EQ(parent, syscall(__NR_getppid)); /* "errno" of 0 is ok. */ - EXPECT_EQ(0, read(0, NULL, 0)); + EXPECT_EQ(0, read(-1, NULL, 0)); } /* @@ -995,7 +995,7 @@ ASSERT_EQ(0, ret); EXPECT_EQ(parent, syscall(__NR_getppid)); - EXPECT_EQ(-1, read(0, NULL, 0)); + EXPECT_EQ(-1, read(-1, NULL, 0)); EXPECT_EQ(4095, errno); } @@ -1026,7 +1026,7 @@ ASSERT_EQ(0, ret); EXPECT_EQ(parent, syscall(__NR_getppid)); - EXPECT_EQ(-1, read(0, NULL, 0)); + EXPECT_EQ(-1, read(-1, NULL, 0)); EXPECT_EQ(12, errno); } @@ -2579,7 +2579,7 @@ ret = prctl(PR_GET_NO_NEW_PRIVS, 0, 0, 0, 0); if (!ret) return (void *)SIBLING_EXIT_NEWPRIVS; - read(0, NULL, 0); + read(-1, NULL, 0); return (void *)SIBLING_EXIT_UNKILLED; } diff -u linux-intel-iotg-5.15-5.15.0/tools/testing/selftests/vm/Makefile linux-intel-iotg-5.15-5.15.0/tools/testing/selftests/vm/Makefile --- linux-intel-iotg-5.15-5.15.0/tools/testing/selftests/vm/Makefile +++ linux-intel-iotg-5.15-5.15.0/tools/testing/selftests/vm/Makefile @@ -54,9 +54,9 @@ CAN_BUILD_X86_64 := $(shell ./../x86/check_cc.sh "$(CC)" ../x86/trivial_64bit_program.c) CAN_BUILD_WITH_NOPIE := $(shell ./../x86/check_cc.sh "$(CC)" ../x86/trivial_program.c -no-pie) -TARGETS := protection_keys -BINARIES_32 := $(TARGETS:%=%_32) -BINARIES_64 := $(TARGETS:%=%_64) +VMTARGETS := protection_keys +BINARIES_32 := $(VMTARGETS:%=%_32) +BINARIES_64 := $(VMTARGETS:%=%_64) ifeq ($(CAN_BUILD_WITH_NOPIE),1) CFLAGS += -no-pie @@ -109,7 +109,7 @@ $(BINARIES_32): LDLIBS += -lrt -ldl -lm $(BINARIES_32): $(OUTPUT)/%_32: %.c $(CC) $(CFLAGS) $(EXTRA_CFLAGS) $(notdir $^) $(LDLIBS) -o $@ -$(foreach t,$(TARGETS),$(eval $(call gen-target-rule-32,$(t)))) +$(foreach t,$(VMTARGETS),$(eval $(call gen-target-rule-32,$(t)))) endif ifeq ($(CAN_BUILD_X86_64),1) @@ -117,7 +117,7 @@ $(BINARIES_64): LDLIBS += -lrt -ldl $(BINARIES_64): $(OUTPUT)/%_64: %.c $(CC) $(CFLAGS) $(EXTRA_CFLAGS) $(notdir $^) $(LDLIBS) -o $@ -$(foreach t,$(TARGETS),$(eval $(call gen-target-rule-64,$(t)))) +$(foreach t,$(VMTARGETS),$(eval $(call gen-target-rule-64,$(t)))) endif # x86_64 users should be encouraged to install 32-bit libraries only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/Documentation/ABI/testing/sysfs-devices-system-cpu +++ linux-intel-iotg-5.15-5.15.0/Documentation/ABI/testing/sysfs-devices-system-cpu @@ -520,6 +520,7 @@ /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 Date: January 2018 Contact: Linux kernel mailing list Description: Information about CPU vulnerabilities only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/Documentation/admin-guide/hw-vuln/index.rst +++ linux-intel-iotg-5.15-5.15.0/Documentation/admin-guide/hw-vuln/index.rst @@ -17,3 +17,4 @@ special-register-buffer-data-sampling.rst core-scheduling.rst l1d_flush.rst + processor_mmio_stale_data.rst only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/Documentation/admin-guide/hw-vuln/processor_mmio_stale_data.rst +++ linux-intel-iotg-5.15-5.15.0/Documentation/admin-guide/hw-vuln/processor_mmio_stale_data.rst @@ -0,0 +1,246 @@ +========================================= +Processor MMIO Stale Data Vulnerabilities +========================================= + +Processor MMIO Stale Data Vulnerabilities are a class of memory-mapped I/O +(MMIO) vulnerabilities that can expose data. The sequences of operations for +exposing data range from simple to very complex. Because most of the +vulnerabilities require the attacker to have access to MMIO, many environments +are not affected. System environments using virtualization where MMIO access is +provided to untrusted guests may need mitigation. These vulnerabilities are +not transient execution attacks. However, these vulnerabilities may propagate +stale data into core fill buffers where the data can subsequently be inferred +by an unmitigated transient execution attack. Mitigation for these +vulnerabilities includes a combination of microcode update and software +changes, depending on the platform and usage model. Some of these mitigations +are similar to those used to mitigate Microarchitectural Data Sampling (MDS) or +those used to mitigate Special Register Buffer Data Sampling (SRBDS). + +Data Propagators +================ +Propagators are operations that result in stale data being copied or moved from +one microarchitectural buffer or register to another. Processor MMIO Stale Data +Vulnerabilities are operations that may result in stale data being directly +read into an architectural, software-visible state or sampled from a buffer or +register. + +Fill Buffer Stale Data Propagator (FBSDP) +----------------------------------------- +Stale data may propagate from fill buffers (FB) into the non-coherent portion +of the uncore on some non-coherent writes. Fill buffer propagation by itself +does not make stale data architecturally visible. Stale data must be propagated +to a location where it is subject to reading or sampling. + +Sideband Stale Data Propagator (SSDP) +------------------------------------- +The sideband stale data propagator (SSDP) is limited to the client (including +Intel Xeon server E3) uncore implementation. The sideband response buffer is +shared by all client cores. For non-coherent reads that go to sideband +destinations, the uncore logic returns 64 bytes of data to the core, including +both requested data and unrequested stale data, from a transaction buffer and +the sideband response buffer. As a result, stale data from the sideband +response and transaction buffers may now reside in a core fill buffer. + +Primary Stale Data Propagator (PSDP) +------------------------------------ +The primary stale data propagator (PSDP) is limited to the client (including +Intel Xeon server E3) uncore implementation. Similar to the sideband response +buffer, the primary response buffer is shared by all client cores. For some +processors, MMIO primary reads will return 64 bytes of data to the core fill +buffer including both requested data and unrequested stale data. This is +similar to the sideband stale data propagator. + +Vulnerabilities +=============== +Device Register Partial Write (DRPW) (CVE-2022-21166) +----------------------------------------------------- +Some endpoint MMIO registers incorrectly handle writes that are smaller than +the register size. Instead of aborting the write or only copying the correct +subset of bytes (for example, 2 bytes for a 2-byte write), more bytes than +specified by the write transaction may be written to the register. On +processors affected by FBSDP, this may expose stale data from the fill buffers +of the core that created the write transaction. + +Shared Buffers Data Sampling (SBDS) (CVE-2022-21125) +---------------------------------------------------- +After propagators may have moved data around the uncore and copied stale data +into client core fill buffers, processors affected by MFBDS can leak data from +the fill buffer. It is limited to the client (including Intel Xeon server E3) +uncore implementation. + +Shared Buffers Data Read (SBDR) (CVE-2022-21123) +------------------------------------------------ +It is similar to Shared Buffer Data Sampling (SBDS) except that the data is +directly read into the architectural software-visible state. It is limited to +the client (including Intel Xeon server E3) uncore implementation. + +Affected Processors +=================== +Not all the CPUs are affected by all the variants. For instance, most +processors for the server market (excluding Intel Xeon E3 processors) are +impacted by only Device Register Partial Write (DRPW). + +Below is the list of affected Intel processors [#f1]_: + + =================== ============ ========= + Common name Family_Model Steppings + =================== ============ ========= + HASWELL_X 06_3FH 2,4 + SKYLAKE_L 06_4EH 3 + BROADWELL_X 06_4FH All + SKYLAKE_X 06_55H 3,4,6,7,11 + BROADWELL_D 06_56H 3,4,5 + SKYLAKE 06_5EH 3 + ICELAKE_X 06_6AH 4,5,6 + ICELAKE_D 06_6CH 1 + ICELAKE_L 06_7EH 5 + ATOM_TREMONT_D 06_86H All + LAKEFIELD 06_8AH 1 + KABYLAKE_L 06_8EH 9 to 12 + ATOM_TREMONT 06_96H 1 + ATOM_TREMONT_L 06_9CH 0 + KABYLAKE 06_9EH 9 to 13 + COMETLAKE 06_A5H 2,3,5 + COMETLAKE_L 06_A6H 0,1 + ROCKETLAKE 06_A7H 1 + =================== ============ ========= + +If a CPU is in the affected processor list, but not affected by a variant, it +is indicated by new bits in MSR IA32_ARCH_CAPABILITIES. As described in a later +section, mitigation largely remains the same for all the variants, i.e. to +clear the CPU fill buffers via VERW instruction. + +New bits in MSRs +================ +Newer processors and microcode update on existing affected processors added new +bits to IA32_ARCH_CAPABILITIES MSR. These bits can be used to enumerate +specific variants of Processor MMIO Stale Data vulnerabilities and mitigation +capability. + +MSR IA32_ARCH_CAPABILITIES +-------------------------- +Bit 13 - SBDR_SSDP_NO - When set, processor is not affected by either the + Shared Buffers Data Read (SBDR) vulnerability or the sideband stale + data propagator (SSDP). +Bit 14 - FBSDP_NO - When set, processor is not affected by the Fill Buffer + Stale Data Propagator (FBSDP). +Bit 15 - PSDP_NO - When set, processor is not affected by Primary Stale Data + Propagator (PSDP). +Bit 17 - FB_CLEAR - When set, VERW instruction will overwrite CPU fill buffer + values as part of MD_CLEAR operations. Processors that do not + enumerate MDS_NO (meaning they are affected by MDS) but that do + enumerate support for both L1D_FLUSH and MD_CLEAR implicitly enumerate + FB_CLEAR as part of their MD_CLEAR support. +Bit 18 - FB_CLEAR_CTRL - Processor supports read and write to MSR + IA32_MCU_OPT_CTRL[FB_CLEAR_DIS]. On such processors, the FB_CLEAR_DIS + bit can be set to cause the VERW instruction to not perform the + FB_CLEAR action. Not all processors that support FB_CLEAR will support + FB_CLEAR_CTRL. + +MSR IA32_MCU_OPT_CTRL +--------------------- +Bit 3 - FB_CLEAR_DIS - When set, VERW instruction does not perform the FB_CLEAR +action. This may be useful to reduce the performance impact of FB_CLEAR in +cases where system software deems it warranted (for example, when performance +is more critical, or the untrusted software has no MMIO access). Note that +FB_CLEAR_DIS has no impact on enumeration (for example, it does not change +FB_CLEAR or MD_CLEAR enumeration) and it may not be supported on all processors +that enumerate FB_CLEAR. + +Mitigation +========== +Like MDS, all variants of Processor MMIO Stale Data vulnerabilities have the +same mitigation strategy to force the CPU to clear the affected buffers before +an attacker can extract the secrets. + +This is achieved by using the otherwise unused and obsolete VERW instruction in +combination with a microcode update. The microcode clears the affected CPU +buffers when the VERW instruction is executed. + +Kernel reuses the MDS function to invoke the buffer clearing: + + mds_clear_cpu_buffers() + +On MDS affected CPUs, the kernel already invokes CPU buffer clear on +kernel/userspace, hypervisor/guest and C-state (idle) transitions. No +additional mitigation is needed on such CPUs. + +For CPUs not affected by MDS or TAA, mitigation is needed only for the attacker +with MMIO capability. Therefore, VERW is not required for kernel/userspace. For +virtualization case, VERW is only needed at VMENTER for a guest with MMIO +capability. + +Mitigation points +----------------- +Return to user space +^^^^^^^^^^^^^^^^^^^^ +Same mitigation as MDS when affected by MDS/TAA, otherwise no mitigation +needed. + +C-State transition +^^^^^^^^^^^^^^^^^^ +Control register writes by CPU during C-state transition can propagate data +from fill buffer to uncore buffers. Execute VERW before C-state transition to +clear CPU fill buffers. + +Guest entry point +^^^^^^^^^^^^^^^^^ +Same mitigation as MDS when processor is also affected by MDS/TAA, otherwise +execute VERW at VMENTER only for MMIO capable guests. On CPUs not affected by +MDS/TAA, guest without MMIO access cannot extract secrets using Processor MMIO +Stale Data vulnerabilities, so there is no need to execute VERW for such guests. + +Mitigation control on the kernel command line +--------------------------------------------- +The kernel command line allows to control the Processor MMIO Stale Data +mitigations at boot time with the option "mmio_stale_data=". The valid +arguments for this option are: + + ========== ================================================================= + full If the CPU is vulnerable, enable mitigation; CPU buffer clearing + on exit to userspace and when entering a VM. Idle transitions are + protected as well. It does not automatically disable SMT. + full,nosmt Same as full, with SMT disabled on vulnerable CPUs. This is the + complete mitigation. + off Disables mitigation completely. + ========== ================================================================= + +If the CPU is affected and mmio_stale_data=off is not supplied on the kernel +command line, then the kernel selects the appropriate mitigation. + +Mitigation status information +----------------------------- +The Linux kernel provides a sysfs interface to enumerate the current +vulnerability status of the system: whether the system is vulnerable, and +which mitigations are active. The relevant sysfs file is: + + /sys/devices/system/cpu/vulnerabilities/mmio_stale_data + +The possible values in this file are: + + .. list-table:: + + * - 'Not affected' + - The processor is not vulnerable + * - 'Vulnerable' + - The processor is vulnerable, but no mitigation enabled + * - 'Vulnerable: Clear CPU buffers attempted, no microcode' + - The processor is vulnerable, but microcode is not updated. The + mitigation is enabled on a best effort basis. + * - 'Mitigation: Clear CPU buffers' + - The processor is vulnerable and the CPU buffer clearing mitigation is + enabled. + +If the processor is vulnerable then the following information is appended to +the above information: + + ======================== =========================================== + 'SMT vulnerable' SMT is enabled + 'SMT disabled' SMT is disabled + 'SMT Host state unknown' Kernel runs in a VM, Host SMT state unknown + ======================== =========================================== + +References +---------- +.. [#f1] Affected Processors + https://www.intel.com/content/www/us/en/developer/topic-technology/software-security-guidance/processors-affected-consolidated-product-cpu-model.html only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/Documentation/arm64/silicon-errata.rst +++ linux-intel-iotg-5.15-5.15.0/Documentation/arm64/silicon-errata.rst @@ -163,6 +163,9 @@ +----------------+-----------------+-----------------+-----------------------------+ | Qualcomm Tech. | Kryo4xx Silver | N/A | ARM64_ERRATUM_1024718 | +----------------+-----------------+-----------------+-----------------------------+ +| Qualcomm Tech. | Kryo4xx Gold | N/A | ARM64_ERRATUM_1286807 | ++----------------+-----------------+-----------------+-----------------------------+ + +----------------+-----------------+-----------------+-----------------------------+ | Fujitsu | A64FX | E#010001 | FUJITSU_ERRATUM_010001 | +----------------+-----------------+-----------------+-----------------------------+ only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/Documentation/conf.py +++ linux-intel-iotg-5.15-5.15.0/Documentation/conf.py @@ -161,7 +161,7 @@ # # This is also used if you do content translation via gettext catalogs. # Usually you set "language" from the command line for these cases. -language = None +language = 'en' # There are two options for replacing |today|: either, you set today to some # non-false value, then it is used: only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/Documentation/devicetree/bindings/display/sitronix,st7735r.yaml +++ linux-intel-iotg-5.15-5.15.0/Documentation/devicetree/bindings/display/sitronix,st7735r.yaml @@ -72,6 +72,7 @@ dc-gpios = <&gpio 43 GPIO_ACTIVE_HIGH>; reset-gpios = <&gpio 80 GPIO_ACTIVE_HIGH>; rotation = <270>; + backlight = <&backlight>; }; }; only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/Documentation/devicetree/bindings/gpio/gpio-altera.txt +++ linux-intel-iotg-5.15-5.15.0/Documentation/devicetree/bindings/gpio/gpio-altera.txt @@ -9,8 +9,9 @@ - The second cell is reserved and is currently unused. - gpio-controller : Marks the device node as a GPIO controller. - interrupt-controller: Mark the device node as an interrupt controller -- #interrupt-cells : Should be 1. The interrupt type is fixed in the hardware. +- #interrupt-cells : Should be 2. The interrupt type is fixed in the hardware. - The first cell is the GPIO offset number within the GPIO controller. + - The second cell is the interrupt trigger type and level flags. - interrupts: Specify the interrupt. - altr,interrupt-type: Specifies the interrupt trigger type the GPIO hardware is synthesized. This field is required if the Altera GPIO controller @@ -38,6 +39,6 @@ altr,interrupt-type = ; #gpio-cells = <2>; gpio-controller; - #interrupt-cells = <1>; + #interrupt-cells = <2>; interrupt-controller; }; only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/Documentation/devicetree/bindings/pinctrl/aspeed,ast2600-pinctrl.yaml +++ linux-intel-iotg-5.15-5.15.0/Documentation/devicetree/bindings/pinctrl/aspeed,ast2600-pinctrl.yaml @@ -58,7 +58,7 @@ $ref: "/schemas/types.yaml#/definitions/string" enum: [ ADC0, ADC1, ADC10, ADC11, ADC12, ADC13, ADC14, ADC15, ADC2, ADC3, ADC4, ADC5, ADC6, ADC7, ADC8, ADC9, BMCINT, EMMCG1, EMMCG4, - EMMCG8, ESPI, ESPIALT, FSI1, FSI2, FWSPIABR, FWSPID, FWQSPID, FWSPIWP, + EMMCG8, ESPI, ESPIALT, FSI1, FSI2, FWSPIABR, FWSPID, FWSPIWP, GPIT0, GPIT1, GPIT2, GPIT3, GPIT4, GPIT5, GPIT6, GPIT7, GPIU0, GPIU1, GPIU2, GPIU3, GPIU4, GPIU5, GPIU6, GPIU7, HVI3C3, HVI3C4, I2C1, I2C10, I2C11, I2C12, I2C13, I2C14, I2C15, I2C16, I2C2, I2C3, I2C4, I2C5, only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/Documentation/devicetree/bindings/regulator/mt6315-regulator.yaml +++ linux-intel-iotg-5.15-5.15.0/Documentation/devicetree/bindings/regulator/mt6315-regulator.yaml @@ -31,7 +31,7 @@ $ref: "regulator.yaml#" properties: - regulator-name: + regulator-compatible: pattern: "^vbuck[1-4]$" additionalProperties: false only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/Documentation/devicetree/bindings/spi/qcom,spi-qcom-qspi.yaml +++ linux-intel-iotg-5.15-5.15.0/Documentation/devicetree/bindings/spi/qcom,spi-qcom-qspi.yaml @@ -45,6 +45,7 @@ maxItems: 2 interconnect-names: + minItems: 1 items: - const: qspi-config - const: qspi-memory only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/Documentation/filesystems/ext4/attributes.rst +++ linux-intel-iotg-5.15-5.15.0/Documentation/filesystems/ext4/attributes.rst @@ -76,7 +76,7 @@ - Checksum of the extended attribute block. * - 0x14 - \_\_u32 - - h\_reserved[2] + - h\_reserved[3] - Zero. The checksum is calculated against the FS UUID, the 64-bit block number only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/Documentation/filesystems/f2fs.rst +++ linux-intel-iotg-5.15-5.15.0/Documentation/filesystems/f2fs.rst @@ -197,6 +197,7 @@ FAULT_DISCARD 0x000002000 FAULT_WRITE_IO 0x000004000 FAULT_SLAB_ALLOC 0x000008000 + FAULT_DQUOT_INIT 0x000010000 =================== =========== mode=%s Control block allocation mode which supports "adaptive" and "lfs". In "lfs" mode, there should be no random only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/Documentation/process/submitting-patches.rst +++ linux-intel-iotg-5.15-5.15.0/Documentation/process/submitting-patches.rst @@ -72,7 +72,7 @@ The maintainer will thank you if you write your patch description in a form which can be easily pulled into Linux's source code management -system, ``git``, as a "commit log". See :ref:`explicit_in_reply_to`. +system, ``git``, as a "commit log". See :ref:`the_canonical_patch_format`. Solve only one problem per patch. If your description starts to get long, that's a sign that you probably need to split up your patch. only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/Documentation/sound/alsa-configuration.rst +++ linux-intel-iotg-5.15-5.15.0/Documentation/sound/alsa-configuration.rst @@ -2237,7 +2237,7 @@ Apply the generic implicit feedback sync mode. When this is set and the playback stream sync mode is ASYNC, the driver tries to tie an adjacent ASYNC capture stream as the implicit feedback - source. + source. This is equivalent with quirk_flags bit 17. use_vmalloc Use vmalloc() for allocations of the PCM buffers (default: yes). For architectures with non-coherent memory like ARM or MIPS, the @@ -2279,6 +2279,8 @@ * bit 14: Ignore errors for mixer access * bit 15: Support generic DSD raw U32_BE format * bit 16: Set up the interface at first like UAC1 + * bit 17: Apply the generic implicit feedback sync mode + * bit 18: Don't apply implicit feedback sync mode This module supports multiple devices, autoprobe and hotplugging. only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/Documentation/userspace-api/landlock.rst +++ linux-intel-iotg-5.15-5.15.0/Documentation/userspace-api/landlock.rst @@ -267,8 +267,8 @@ Ruleset layers -------------- -There is a limit of 64 layers of stacked rulesets. This can be an issue for a -task willing to enforce a new ruleset in complement to its 64 inherited +There is a limit of 16 layers of stacked rulesets. This can be an issue for a +task willing to enforce a new ruleset in complement to its 16 inherited rulesets. Once this limit is reached, sys_landlock_restrict_self() returns E2BIG. It is then strongly suggested to carefully build rulesets once in the life of a thread, especially for applications able to launch other applications only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/alpha/include/asm/page.h +++ linux-intel-iotg-5.15-5.15.0/arch/alpha/include/asm/page.h @@ -18,7 +18,7 @@ #define clear_user_page(page, vaddr, pg) clear_page(page) #define alloc_zeroed_user_highpage_movable(vma, vaddr) \ - alloc_page_vma(GFP_HIGHUSER_MOVABLE | __GFP_ZERO, vma, vmaddr) + alloc_page_vma(GFP_HIGHUSER_MOVABLE | __GFP_ZERO, vma, vaddr) #define __HAVE_ARCH_ALLOC_ZEROED_USER_HIGHPAGE_MOVABLE extern void copy_page(void * _to, void * _from); only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/alpha/include/asm/timex.h +++ linux-intel-iotg-5.15-5.15.0/arch/alpha/include/asm/timex.h @@ -28,5 +28,6 @@ __asm__ __volatile__ ("rpcc %0" : "=r"(ret)); return ret; } +#define get_cycles get_cycles #endif only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/arc/kernel/entry.S +++ linux-intel-iotg-5.15-5.15.0/arch/arc/kernel/entry.S @@ -196,6 +196,7 @@ st r0, [sp, PT_r0] ; sys call return value in pt_regs ;POST Sys Call Ptrace Hook + mov r0, sp ; pt_regs needed bl @syscall_trace_exit b ret_from_exception ; NOT ret_from_system_call at is saves r0 which ; we'd done before calling post hook above only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/arm/boot/dts/am3517-evm.dts +++ linux-intel-iotg-5.15-5.15.0/arch/arm/boot/dts/am3517-evm.dts @@ -161,6 +161,8 @@ /* HS USB Host PHY on PORT 1 */ hsusb1_phy: hsusb1_phy { + pinctrl-names = "default"; + pinctrl-0 = <&hsusb1_rst_pins>; compatible = "usb-nop-xceiv"; reset-gpios = <&gpio2 25 GPIO_ACTIVE_LOW>; /* gpio_57 */ #phy-cells = <0>; @@ -168,7 +170,9 @@ }; &davinci_emac { - status = "okay"; + pinctrl-names = "default"; + pinctrl-0 = <ðernet_pins>; + status = "okay"; }; &davinci_mdio { @@ -193,6 +197,8 @@ }; &i2c2 { + pinctrl-names = "default"; + pinctrl-0 = <&i2c2_pins>; clock-frequency = <400000>; /* User DIP swithes [1:8] / User LEDS [1:2] */ tca6416: gpio@21 { @@ -205,6 +211,8 @@ }; &i2c3 { + pinctrl-names = "default"; + pinctrl-0 = <&i2c3_pins>; clock-frequency = <400000>; }; @@ -223,6 +231,8 @@ }; &usbhshost { + pinctrl-names = "default"; + pinctrl-0 = <&hsusb1_pins>; port1-mode = "ehci-phy"; }; @@ -231,8 +241,35 @@ }; &omap3_pmx_core { - pinctrl-names = "default"; - pinctrl-0 = <&hsusb1_rst_pins>; + + ethernet_pins: pinmux_ethernet_pins { + pinctrl-single,pins = < + OMAP3_CORE1_IOPAD(0x21fe, PIN_INPUT | MUX_MODE0) /* rmii_mdio_data */ + OMAP3_CORE1_IOPAD(0x2200, MUX_MODE0) /* rmii_mdio_clk */ + OMAP3_CORE1_IOPAD(0x2202, PIN_INPUT_PULLDOWN | MUX_MODE0) /* rmii_rxd0 */ + OMAP3_CORE1_IOPAD(0x2204, PIN_INPUT_PULLDOWN | MUX_MODE0) /* rmii_rxd1 */ + OMAP3_CORE1_IOPAD(0x2206, PIN_INPUT_PULLDOWN | MUX_MODE0) /* rmii_crs_dv */ + OMAP3_CORE1_IOPAD(0x2208, PIN_OUTPUT_PULLDOWN | MUX_MODE0) /* rmii_rxer */ + OMAP3_CORE1_IOPAD(0x220a, PIN_OUTPUT_PULLDOWN | MUX_MODE0) /* rmii_txd0 */ + OMAP3_CORE1_IOPAD(0x220c, PIN_OUTPUT_PULLDOWN | MUX_MODE0) /* rmii_txd1 */ + OMAP3_CORE1_IOPAD(0x220e, PIN_OUTPUT_PULLDOWN |MUX_MODE0) /* rmii_txen */ + OMAP3_CORE1_IOPAD(0x2210, PIN_INPUT_PULLDOWN | MUX_MODE0) /* rmii_50mhz_clk */ + >; + }; + + i2c2_pins: pinmux_i2c2_pins { + pinctrl-single,pins = < + OMAP3_CORE1_IOPAD(0x21be, PIN_INPUT_PULLUP | MUX_MODE0) /* i2c2_scl */ + OMAP3_CORE1_IOPAD(0x21c0, PIN_INPUT_PULLUP | MUX_MODE0) /* i2c2_sda */ + >; + }; + + i2c3_pins: pinmux_i2c3_pins { + pinctrl-single,pins = < + OMAP3_CORE1_IOPAD(0x21c2, PIN_INPUT_PULLUP | MUX_MODE0) /* i2c3_scl */ + OMAP3_CORE1_IOPAD(0x21c4, PIN_INPUT_PULLUP | MUX_MODE0) /* i2c3_sda */ + >; + }; leds_pins: pinmux_leds_pins { pinctrl-single,pins = < @@ -300,8 +337,6 @@ }; &omap3_pmx_core2 { - pinctrl-names = "default"; - pinctrl-0 = <&hsusb1_pins>; hsusb1_pins: pinmux_hsusb1_pins { pinctrl-single,pins = < only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/arm/boot/dts/am3517-som.dtsi +++ linux-intel-iotg-5.15-5.15.0/arch/arm/boot/dts/am3517-som.dtsi @@ -69,6 +69,8 @@ }; &i2c1 { + pinctrl-names = "default"; + pinctrl-0 = <&i2c1_pins>; clock-frequency = <400000>; s35390a: s35390a@30 { @@ -179,6 +181,13 @@ &omap3_pmx_core { + i2c1_pins: pinmux_i2c1_pins { + pinctrl-single,pins = < + OMAP3_CORE1_IOPAD(0x21ba, PIN_INPUT_PULLUP | MUX_MODE0) /* i2c1_scl */ + OMAP3_CORE1_IOPAD(0x21bc, PIN_INPUT_PULLUP | MUX_MODE0) /* i2c1_sda */ + >; + }; + wl12xx_buffer_pins: pinmux_wl12xx_buffer_pins { pinctrl-single,pins = < OMAP3_CORE1_IOPAD(0x2156, PIN_OUTPUT | MUX_MODE4) /* mmc1_dat7.gpio_129 */ only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/arm/boot/dts/aspeed-bmc-ibm-everest.dts +++ linux-intel-iotg-5.15-5.15.0/arch/arm/boot/dts/aspeed-bmc-ibm-everest.dts @@ -231,6 +231,21 @@ gpios = <&gpio0 ASPEED_GPIO(P, 4) GPIO_ACTIVE_LOW>; }; }; + + iio-hwmon { + compatible = "iio-hwmon"; + io-channels = <&adc1 7>; + }; +}; + +&adc1 { + status = "okay"; + aspeed,int-vref-microvolt = <2500000>; + pinctrl-names = "default"; + pinctrl-0 = <&pinctrl_adc8_default &pinctrl_adc9_default + &pinctrl_adc10_default &pinctrl_adc11_default + &pinctrl_adc12_default &pinctrl_adc13_default + &pinctrl_adc14_default &pinctrl_adc15_default>; }; &gpio0 { only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/arm/boot/dts/aspeed-bmc-ibm-rainier.dts +++ linux-intel-iotg-5.15-5.15.0/arch/arm/boot/dts/aspeed-bmc-ibm-rainier.dts @@ -246,6 +246,21 @@ linux,code = <11>; }; }; + + iio-hwmon { + compatible = "iio-hwmon"; + io-channels = <&adc1 7>; + }; +}; + +&adc1 { + status = "okay"; + aspeed,int-vref-microvolt = <2500000>; + pinctrl-names = "default"; + pinctrl-0 = <&pinctrl_adc8_default &pinctrl_adc9_default + &pinctrl_adc10_default &pinctrl_adc11_default + &pinctrl_adc12_default &pinctrl_adc13_default + &pinctrl_adc14_default &pinctrl_adc15_default>; }; &ehci1 { only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/arm/boot/dts/aspeed-g6.dtsi +++ linux-intel-iotg-5.15-5.15.0/arch/arm/boot/dts/aspeed-g6.dtsi @@ -364,6 +364,41 @@ status = "disabled"; }; + adc0: adc@1e6e9000 { + compatible = "aspeed,ast2600-adc0"; + reg = <0x1e6e9000 0x100>; + clocks = <&syscon ASPEED_CLK_APB2>; + resets = <&syscon ASPEED_RESET_ADC>; + interrupts = ; + #io-channel-cells = <1>; + status = "disabled"; + }; + + adc1: adc@1e6e9100 { + compatible = "aspeed,ast2600-adc1"; + reg = <0x1e6e9100 0x100>; + clocks = <&syscon ASPEED_CLK_APB2>; + resets = <&syscon ASPEED_RESET_ADC>; + interrupts = ; + #io-channel-cells = <1>; + status = "disabled"; + }; + + sbc: secure-boot-controller@1e6f2000 { + compatible = "aspeed,ast2600-sbc"; + reg = <0x1e6f2000 0x1000>; + }; + + video: video@1e700000 { + compatible = "aspeed,ast2600-video-engine"; + reg = <0x1e700000 0x1000>; + clocks = <&syscon ASPEED_CLK_GATE_VCLK>, + <&syscon ASPEED_CLK_GATE_ECLK>; + clock-names = "vclk", "eclk"; + interrupts = ; + status = "disabled"; + }; + gpio0: gpio@1e780000 { #gpio-cells = <2>; gpio-controller; only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/arm/boot/dts/at91-sama5d3_xplained.dts +++ linux-intel-iotg-5.15-5.15.0/arch/arm/boot/dts/at91-sama5d3_xplained.dts @@ -57,8 +57,8 @@ }; spi0: spi@f0004000 { - pinctrl-names = "default"; - pinctrl-0 = <&pinctrl_spi0_cs>; + pinctrl-names = "default", "cs"; + pinctrl-1 = <&pinctrl_spi0_cs>; cs-gpios = <&pioD 13 0>, <0>, <0>, <&pioD 16 0>; status = "okay"; }; @@ -171,8 +171,8 @@ }; spi1: spi@f8008000 { - pinctrl-names = "default"; - pinctrl-0 = <&pinctrl_spi1_cs>; + pinctrl-names = "default", "cs"; + pinctrl-1 = <&pinctrl_spi1_cs>; cs-gpios = <&pioC 25 0>; status = "okay"; }; only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/arm/boot/dts/at91-sama5d4_xplained.dts +++ linux-intel-iotg-5.15-5.15.0/arch/arm/boot/dts/at91-sama5d4_xplained.dts @@ -81,8 +81,8 @@ }; spi1: spi@fc018000 { - pinctrl-names = "default"; - pinctrl-0 = <&pinctrl_spi0_cs>; + pinctrl-names = "default", "cs"; + pinctrl-1 = <&pinctrl_spi1_cs>; cs-gpios = <&pioB 21 0>; status = "okay"; }; @@ -140,7 +140,7 @@ atmel,pins = ; }; - pinctrl_spi0_cs: spi0_cs_default { + pinctrl_spi1_cs: spi1_cs_default { atmel,pins = ; }; only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/arm/boot/dts/at91-sama7g5ek.dts +++ linux-intel-iotg-5.15-5.15.0/arch/arm/boot/dts/at91-sama7g5ek.dts @@ -403,7 +403,7 @@ pinctrl_flx3_default: flx3_default { pinmux = , ; - bias-disable; + bias-pull-up; }; pinctrl_flx4_default: flx4_default { only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/arm/boot/dts/at91sam9g20ek_common.dtsi +++ linux-intel-iotg-5.15-5.15.0/arch/arm/boot/dts/at91sam9g20ek_common.dtsi @@ -219,6 +219,12 @@ wm8731: wm8731@1b { compatible = "wm8731"; reg = <0x1b>; + + /* PCK0 at 12MHz */ + clocks = <&pmc PMC_TYPE_SYSTEM 8>; + clock-names = "mclk"; + assigned-clocks = <&pmc PMC_TYPE_SYSTEM 8>; + assigned-clock-rates = <12000000>; }; }; only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/arm/boot/dts/bcm2835-rpi-b.dts +++ linux-intel-iotg-5.15-5.15.0/arch/arm/boot/dts/bcm2835-rpi-b.dts @@ -53,18 +53,17 @@ "GPIO18", "NC", /* GPIO19 */ "NC", /* GPIO20 */ - "GPIO21", + "CAM_GPIO0", "GPIO22", "GPIO23", "GPIO24", "GPIO25", "NC", /* GPIO26 */ - "CAM_GPIO0", - /* Binary number representing build/revision */ - "CONFIG0", - "CONFIG1", - "CONFIG2", - "CONFIG3", + "GPIO27", + "GPIO28", + "GPIO29", + "GPIO30", + "GPIO31", "NC", /* GPIO32 */ "NC", /* GPIO33 */ "NC", /* GPIO34 */ only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/arm/boot/dts/bcm2835-rpi-zero-w.dts +++ linux-intel-iotg-5.15-5.15.0/arch/arm/boot/dts/bcm2835-rpi-zero-w.dts @@ -74,16 +74,18 @@ "GPIO27", "SDA0", "SCL0", - "NC", /* GPIO30 */ - "NC", /* GPIO31 */ - "NC", /* GPIO32 */ - "NC", /* GPIO33 */ - "NC", /* GPIO34 */ - "NC", /* GPIO35 */ - "NC", /* GPIO36 */ - "NC", /* GPIO37 */ - "NC", /* GPIO38 */ - "NC", /* GPIO39 */ + /* Used by BT module */ + "CTS0", + "RTS0", + "TXD0", + "RXD0", + /* Used by Wifi */ + "SD1_CLK", + "SD1_CMD", + "SD1_DATA0", + "SD1_DATA1", + "SD1_DATA2", + "SD1_DATA3", "CAM_GPIO1", /* GPIO40 */ "WL_ON", /* GPIO41 */ "NC", /* GPIO42 */ only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/arm/boot/dts/bcm2837-rpi-3-b-plus.dts +++ linux-intel-iotg-5.15-5.15.0/arch/arm/boot/dts/bcm2837-rpi-3-b-plus.dts @@ -45,7 +45,7 @@ #gpio-cells = <2>; gpio-line-names = "BT_ON", "WL_ON", - "STATUS_LED_R", + "PWR_LED_R", "LAN_RUN", "", "CAM_GPIO0", only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/arm/boot/dts/bcm2837-rpi-cm3-io3.dts +++ linux-intel-iotg-5.15-5.15.0/arch/arm/boot/dts/bcm2837-rpi-cm3-io3.dts @@ -63,8 +63,8 @@ "GPIO43", "GPIO44", "GPIO45", - "GPIO46", - "GPIO47", + "SMPS_SCL", + "SMPS_SDA", /* Used by eMMC */ "SD_CLK_R", "SD_CMD_R", only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/arm/boot/dts/imx6dl-eckelmann-ci4x10.dts +++ linux-intel-iotg-5.15-5.15.0/arch/arm/boot/dts/imx6dl-eckelmann-ci4x10.dts @@ -297,7 +297,11 @@ phy-mode = "rmii"; phy-reset-gpios = <&gpio1 18 GPIO_ACTIVE_LOW>; phy-handle = <&phy>; - clocks = <&clks IMX6QDL_CLK_ENET>, <&clks IMX6QDL_CLK_ENET>, <&rmii_clk>; + clocks = <&clks IMX6QDL_CLK_ENET>, + <&clks IMX6QDL_CLK_ENET>, + <&rmii_clk>, + <&clks IMX6QDL_CLK_ENET_REF>; + clock-names = "ipg", "ahb", "ptp", "enet_out"; status = "okay"; mdio { only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/arm/boot/dts/imx6qdl-apalis.dtsi +++ linux-intel-iotg-5.15-5.15.0/arch/arm/boot/dts/imx6qdl-apalis.dtsi @@ -286,6 +286,8 @@ codec: sgtl5000@a { compatible = "fsl,sgtl5000"; reg = <0x0a>; + pinctrl-names = "default"; + pinctrl-0 = <&pinctrl_sgtl5000>; clocks = <&clks IMX6QDL_CLK_CKO>; VDDA-supply = <®_module_3v3_audio>; VDDIO-supply = <®_module_3v3>; @@ -516,8 +518,6 @@ MX6QDL_PAD_DISP0_DAT21__AUD4_TXD 0x130b0 MX6QDL_PAD_DISP0_DAT22__AUD4_TXFS 0x130b0 MX6QDL_PAD_DISP0_DAT23__AUD4_RXD 0x130b0 - /* SGTL5000 sys_mclk */ - MX6QDL_PAD_GPIO_5__CCM_CLKO1 0x130b0 >; }; @@ -810,6 +810,12 @@ >; }; + pinctrl_sgtl5000: sgtl5000grp { + fsl,pins = < + MX6QDL_PAD_GPIO_5__CCM_CLKO1 0x130b0 + >; + }; + pinctrl_spdif: spdifgrp { fsl,pins = < MX6QDL_PAD_GPIO_16__SPDIF_IN 0x1b0b0 only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/arm/boot/dts/imx6qdl-colibri.dtsi +++ linux-intel-iotg-5.15-5.15.0/arch/arm/boot/dts/imx6qdl-colibri.dtsi @@ -1,6 +1,6 @@ // SPDX-License-Identifier: GPL-2.0+ OR MIT /* - * Copyright 2014-2020 Toradex + * Copyright 2014-2022 Toradex * Copyright 2012 Freescale Semiconductor, Inc. * Copyright 2011 Linaro Ltd. */ @@ -132,7 +132,7 @@ clock-frequency = <100000>; pinctrl-names = "default", "gpio"; pinctrl-0 = <&pinctrl_i2c2>; - pinctrl-0 = <&pinctrl_i2c2_gpio>; + pinctrl-1 = <&pinctrl_i2c2_gpio>; scl-gpios = <&gpio2 30 (GPIO_ACTIVE_HIGH | GPIO_OPEN_DRAIN)>; sda-gpios = <&gpio3 16 (GPIO_ACTIVE_HIGH | GPIO_OPEN_DRAIN)>; status = "okay"; @@ -488,7 +488,7 @@ >; }; - pinctrl_i2c2_gpio: i2c2grp { + pinctrl_i2c2_gpio: i2c2gpiogrp { fsl,pins = < MX6QDL_PAD_EIM_EB2__GPIO2_IO30 0x4001b8b1 MX6QDL_PAD_EIM_D16__GPIO3_IO16 0x4001b8b1 only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/arm/boot/dts/imx6ull-colibri.dtsi +++ linux-intel-iotg-5.15-5.15.0/arch/arm/boot/dts/imx6ull-colibri.dtsi @@ -37,7 +37,7 @@ reg_sd1_vmmc: regulator-sd1-vmmc { compatible = "regulator-gpio"; - gpio = <&gpio5 9 GPIO_ACTIVE_HIGH>; + gpios = <&gpio5 9 GPIO_ACTIVE_HIGH>; pinctrl-names = "default"; pinctrl-0 = <&pinctrl_snvs_reg_sd>; regulator-always-on; only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/arm/boot/dts/logicpd-som-lv-35xx-devkit.dts +++ linux-intel-iotg-5.15-5.15.0/arch/arm/boot/dts/logicpd-som-lv-35xx-devkit.dts @@ -11,3 +11,18 @@ model = "LogicPD Zoom OMAP35xx SOM-LV Development Kit"; compatible = "logicpd,dm3730-som-lv-devkit", "ti,omap3430", "ti,omap3"; }; + +&omap3_pmx_core2 { + pinctrl-names = "default"; + pinctrl-0 = <&hsusb2_2_pins>; + hsusb2_2_pins: pinmux_hsusb2_2_pins { + pinctrl-single,pins = < + OMAP3430_CORE2_IOPAD(0x25f0, PIN_OUTPUT | MUX_MODE3) /* etk_d10.hsusb2_clk */ + OMAP3430_CORE2_IOPAD(0x25f2, PIN_OUTPUT | MUX_MODE3) /* etk_d11.hsusb2_stp */ + OMAP3430_CORE2_IOPAD(0x25f4, PIN_INPUT_PULLDOWN | MUX_MODE3) /* etk_d12.hsusb2_dir */ + OMAP3430_CORE2_IOPAD(0x25f6, PIN_INPUT_PULLDOWN | MUX_MODE3) /* etk_d13.hsusb2_nxt */ + OMAP3430_CORE2_IOPAD(0x25f8, PIN_INPUT_PULLDOWN | MUX_MODE3) /* etk_d14.hsusb2_data0 */ + OMAP3430_CORE2_IOPAD(0x25fa, PIN_INPUT_PULLDOWN | MUX_MODE3) /* etk_d15.hsusb2_data1 */ + >; + }; +}; only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/arm/boot/dts/logicpd-som-lv-37xx-devkit.dts +++ linux-intel-iotg-5.15-5.15.0/arch/arm/boot/dts/logicpd-som-lv-37xx-devkit.dts @@ -11,3 +11,18 @@ model = "LogicPD Zoom DM3730 SOM-LV Development Kit"; compatible = "logicpd,dm3730-som-lv-devkit", "ti,omap3630", "ti,omap3"; }; + +&omap3_pmx_core2 { + pinctrl-names = "default"; + pinctrl-0 = <&hsusb2_2_pins>; + hsusb2_2_pins: pinmux_hsusb2_2_pins { + pinctrl-single,pins = < + OMAP3630_CORE2_IOPAD(0x25f0, PIN_OUTPUT | MUX_MODE3) /* etk_d10.hsusb2_clk */ + OMAP3630_CORE2_IOPAD(0x25f2, PIN_OUTPUT | MUX_MODE3) /* etk_d11.hsusb2_stp */ + OMAP3630_CORE2_IOPAD(0x25f4, PIN_INPUT_PULLDOWN | MUX_MODE3) /* etk_d12.hsusb2_dir */ + OMAP3630_CORE2_IOPAD(0x25f6, PIN_INPUT_PULLDOWN | MUX_MODE3) /* etk_d13.hsusb2_nxt */ + OMAP3630_CORE2_IOPAD(0x25f8, PIN_INPUT_PULLDOWN | MUX_MODE3) /* etk_d14.hsusb2_data0 */ + OMAP3630_CORE2_IOPAD(0x25fa, PIN_INPUT_PULLDOWN | MUX_MODE3) /* etk_d15.hsusb2_data1 */ + >; + }; +}; only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/arm/boot/dts/logicpd-som-lv.dtsi +++ linux-intel-iotg-5.15-5.15.0/arch/arm/boot/dts/logicpd-som-lv.dtsi @@ -265,21 +265,6 @@ }; }; -&omap3_pmx_core2 { - pinctrl-names = "default"; - pinctrl-0 = <&hsusb2_2_pins>; - hsusb2_2_pins: pinmux_hsusb2_2_pins { - pinctrl-single,pins = < - OMAP3630_CORE2_IOPAD(0x25f0, PIN_OUTPUT | MUX_MODE3) /* etk_d10.hsusb2_clk */ - OMAP3630_CORE2_IOPAD(0x25f2, PIN_OUTPUT | MUX_MODE3) /* etk_d11.hsusb2_stp */ - OMAP3630_CORE2_IOPAD(0x25f4, PIN_INPUT_PULLDOWN | MUX_MODE3) /* etk_d12.hsusb2_dir */ - OMAP3630_CORE2_IOPAD(0x25f6, PIN_INPUT_PULLDOWN | MUX_MODE3) /* etk_d13.hsusb2_nxt */ - OMAP3630_CORE2_IOPAD(0x25f8, PIN_INPUT_PULLDOWN | MUX_MODE3) /* etk_d14.hsusb2_data0 */ - OMAP3630_CORE2_IOPAD(0x25fa, PIN_INPUT_PULLDOWN | MUX_MODE3) /* etk_d15.hsusb2_data1 */ - >; - }; -}; - &uart2 { interrupts-extended = <&intc 73 &omap3_pmx_core OMAP3_UART2_RX>; pinctrl-names = "default"; only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/arm/boot/dts/ox820.dtsi +++ linux-intel-iotg-5.15-5.15.0/arch/arm/boot/dts/ox820.dtsi @@ -287,7 +287,7 @@ clocks = <&armclk>; }; - gic: gic@1000 { + gic: interrupt-controller@1000 { compatible = "arm,arm11mp-gic"; interrupt-controller; #interrupt-cells = <3>; only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/arm/boot/dts/s5pv210-aries.dtsi +++ linux-intel-iotg-5.15-5.15.0/arch/arm/boot/dts/s5pv210-aries.dtsi @@ -564,7 +564,6 @@ reset-gpios = <&mp05 5 GPIO_ACTIVE_LOW>; vdd3-supply = <&ldo7_reg>; vci-supply = <&ldo17_reg>; - spi-cs-high; spi-max-frequency = <1200000>; pinctrl-names = "default"; @@ -636,7 +635,7 @@ }; &i2s0 { - dmas = <&pdma0 9>, <&pdma0 10>, <&pdma0 11>; + dmas = <&pdma0 10>, <&pdma0 9>, <&pdma0 11>; status = "okay"; }; @@ -895,7 +894,7 @@ device-wakeup-gpios = <&gpg3 4 GPIO_ACTIVE_HIGH>; interrupt-parent = <&gph2>; interrupts = <5 IRQ_TYPE_LEVEL_HIGH>; - interrupt-names = "host-wake"; + interrupt-names = "host-wakeup"; }; }; only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/arm/boot/dts/s5pv210.dtsi +++ linux-intel-iotg-5.15-5.15.0/arch/arm/boot/dts/s5pv210.dtsi @@ -239,8 +239,8 @@ reg = <0xeee30000 0x1000>; interrupt-parent = <&vic2>; interrupts = <16>; - dma-names = "rx", "tx", "tx-sec"; - dmas = <&pdma1 9>, <&pdma1 10>, <&pdma1 11>; + dma-names = "tx", "rx", "tx-sec"; + dmas = <&pdma1 10>, <&pdma1 9>, <&pdma1 11>; clock-names = "iis", "i2s_opclk0", "i2s_opclk1"; @@ -259,8 +259,8 @@ reg = <0xe2100000 0x1000>; interrupt-parent = <&vic2>; interrupts = <17>; - dma-names = "rx", "tx"; - dmas = <&pdma1 12>, <&pdma1 13>; + dma-names = "tx", "rx"; + dmas = <&pdma1 13>, <&pdma1 12>; clock-names = "iis", "i2s_opclk0"; clocks = <&clocks CLK_I2S1>, <&clocks SCLK_AUDIO1>; pinctrl-names = "default"; @@ -274,8 +274,8 @@ reg = <0xe2a00000 0x1000>; interrupt-parent = <&vic2>; interrupts = <18>; - dma-names = "rx", "tx"; - dmas = <&pdma1 14>, <&pdma1 15>; + dma-names = "tx", "rx"; + dmas = <&pdma1 15>, <&pdma1 14>; clock-names = "iis", "i2s_opclk0"; clocks = <&clocks CLK_I2S2>, <&clocks SCLK_AUDIO2>; pinctrl-names = "default"; only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/arm/boot/dts/socfpga.dtsi +++ linux-intel-iotg-5.15-5.15.0/arch/arm/boot/dts/socfpga.dtsi @@ -46,7 +46,7 @@ <0xff113000 0x1000>; }; - intc: intc@fffed000 { + intc: interrupt-controller@fffed000 { compatible = "arm,cortex-a9-gic"; #interrupt-cells = <3>; interrupt-controller; @@ -782,7 +782,7 @@ }; qspi: spi@ff705000 { - compatible = "cdns,qspi-nor"; + compatible = "intel,socfpga-qspi", "cdns,qspi-nor"; #address-cells = <1>; #size-cells = <0>; reg = <0xff705000 0x1000>, only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/arm/boot/dts/socfpga_arria10.dtsi +++ linux-intel-iotg-5.15-5.15.0/arch/arm/boot/dts/socfpga_arria10.dtsi @@ -38,7 +38,7 @@ <0xff113000 0x1000>; }; - intc: intc@ffffd000 { + intc: interrupt-controller@ffffd000 { compatible = "arm,cortex-a9-gic"; #interrupt-cells = <3>; interrupt-controller; @@ -756,7 +756,7 @@ }; qspi: spi@ff809000 { - compatible = "cdns,qspi-nor"; + compatible = "intel,socfpga-qspi", "cdns,qspi-nor"; #address-cells = <1>; #size-cells = <0>; reg = <0xff809000 0x100>, only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/arm/boot/dts/stm32mp15xx-dhcor-avenger96.dtsi +++ linux-intel-iotg-5.15-5.15.0/arch/arm/boot/dts/stm32mp15xx-dhcor-avenger96.dtsi @@ -141,6 +141,7 @@ compatible = "snps,dwmac-mdio"; reset-gpios = <&gpioz 2 GPIO_ACTIVE_LOW>; reset-delay-us = <1000>; + reset-post-delay-us = <1000>; phy0: ethernet-phy@7 { reg = <7>; only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/arm/boot/dts/suniv-f1c100s.dtsi +++ linux-intel-iotg-5.15-5.15.0/arch/arm/boot/dts/suniv-f1c100s.dtsi @@ -104,8 +104,10 @@ wdt: watchdog@1c20ca0 { compatible = "allwinner,suniv-f1c100s-wdt", - "allwinner,sun4i-a10-wdt"; + "allwinner,sun6i-a31-wdt"; reg = <0x01c20ca0 0x20>; + interrupts = <16>; + clocks = <&osc32k>; }; uart0: serial@1c25000 { only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/arm/crypto/Makefile +++ linux-intel-iotg-5.15-5.15.0/arch/arm/crypto/Makefile @@ -10,6 +10,7 @@ obj-$(CONFIG_CRYPTO_SHA256_ARM) += sha256-arm.o obj-$(CONFIG_CRYPTO_SHA512_ARM) += sha512-arm.o obj-$(CONFIG_CRYPTO_BLAKE2S_ARM) += blake2s-arm.o +obj-$(if $(CONFIG_CRYPTO_BLAKE2S_ARM),y) += libblake2s-arm.o obj-$(CONFIG_CRYPTO_BLAKE2B_NEON) += blake2b-neon.o obj-$(CONFIG_CRYPTO_CHACHA20_NEON) += chacha-neon.o obj-$(CONFIG_CRYPTO_POLY1305_ARM) += poly1305-arm.o @@ -31,7 +32,8 @@ sha256-arm-y := sha256-core.o sha256_glue.o $(sha256-arm-neon-y) sha512-arm-neon-$(CONFIG_KERNEL_MODE_NEON) := sha512-neon-glue.o sha512-arm-y := sha512-core.o sha512-glue.o $(sha512-arm-neon-y) -blake2s-arm-y := blake2s-core.o blake2s-glue.o +blake2s-arm-y := blake2s-shash.o +libblake2s-arm-y:= blake2s-core.o blake2s-glue.o blake2b-neon-y := blake2b-neon-core.o blake2b-neon-glue.o sha1-arm-ce-y := sha1-ce-core.o sha1-ce-glue.o sha2-arm-ce-y := sha2-ce-core.o sha2-ce-glue.o only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/arm/crypto/blake2s-core.S +++ linux-intel-iotg-5.15-5.15.0/arch/arm/crypto/blake2s-core.S @@ -167,8 +167,8 @@ .endm // -// void blake2s_compress_arch(struct blake2s_state *state, -// const u8 *block, size_t nblocks, u32 inc); +// void blake2s_compress(struct blake2s_state *state, +// const u8 *block, size_t nblocks, u32 inc); // // Only the first three fields of struct blake2s_state are used: // u32 h[8]; (inout) @@ -176,7 +176,7 @@ // u32 f[2]; (in) // .align 5 -ENTRY(blake2s_compress_arch) +ENTRY(blake2s_compress) push {r0-r2,r4-r11,lr} // keep this an even number .Lnext_block: @@ -303,4 +303,4 @@ str r3, [r12], #4 bne 1b b .Lcopy_block_done -ENDPROC(blake2s_compress_arch) +ENDPROC(blake2s_compress) only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/arm/crypto/blake2s-glue.c +++ linux-intel-iotg-5.15-5.15.0/arch/arm/crypto/blake2s-glue.c @@ -1,78 +1,7 @@ // SPDX-License-Identifier: GPL-2.0-or-later -/* - * BLAKE2s digest algorithm, ARM scalar implementation - * - * Copyright 2020 Google LLC - */ #include -#include - #include /* defined in blake2s-core.S */ -EXPORT_SYMBOL(blake2s_compress_arch); - -static int crypto_blake2s_update_arm(struct shash_desc *desc, - const u8 *in, unsigned int inlen) -{ - return crypto_blake2s_update(desc, in, inlen, blake2s_compress_arch); -} - -static int crypto_blake2s_final_arm(struct shash_desc *desc, u8 *out) -{ - return crypto_blake2s_final(desc, out, blake2s_compress_arch); -} - -#define BLAKE2S_ALG(name, driver_name, digest_size) \ - { \ - .base.cra_name = name, \ - .base.cra_driver_name = driver_name, \ - .base.cra_priority = 200, \ - .base.cra_flags = CRYPTO_ALG_OPTIONAL_KEY, \ - .base.cra_blocksize = BLAKE2S_BLOCK_SIZE, \ - .base.cra_ctxsize = sizeof(struct blake2s_tfm_ctx), \ - .base.cra_module = THIS_MODULE, \ - .digestsize = digest_size, \ - .setkey = crypto_blake2s_setkey, \ - .init = crypto_blake2s_init, \ - .update = crypto_blake2s_update_arm, \ - .final = crypto_blake2s_final_arm, \ - .descsize = sizeof(struct blake2s_state), \ - } - -static struct shash_alg blake2s_arm_algs[] = { - BLAKE2S_ALG("blake2s-128", "blake2s-128-arm", BLAKE2S_128_HASH_SIZE), - BLAKE2S_ALG("blake2s-160", "blake2s-160-arm", BLAKE2S_160_HASH_SIZE), - BLAKE2S_ALG("blake2s-224", "blake2s-224-arm", BLAKE2S_224_HASH_SIZE), - BLAKE2S_ALG("blake2s-256", "blake2s-256-arm", BLAKE2S_256_HASH_SIZE), -}; - -static int __init blake2s_arm_mod_init(void) -{ - return IS_REACHABLE(CONFIG_CRYPTO_HASH) ? - crypto_register_shashes(blake2s_arm_algs, - ARRAY_SIZE(blake2s_arm_algs)) : 0; -} - -static void __exit blake2s_arm_mod_exit(void) -{ - if (IS_REACHABLE(CONFIG_CRYPTO_HASH)) - crypto_unregister_shashes(blake2s_arm_algs, - ARRAY_SIZE(blake2s_arm_algs)); -} - -module_init(blake2s_arm_mod_init); -module_exit(blake2s_arm_mod_exit); - -MODULE_DESCRIPTION("BLAKE2s digest algorithm, ARM scalar implementation"); -MODULE_LICENSE("GPL"); -MODULE_AUTHOR("Eric Biggers "); -MODULE_ALIAS_CRYPTO("blake2s-128"); -MODULE_ALIAS_CRYPTO("blake2s-128-arm"); -MODULE_ALIAS_CRYPTO("blake2s-160"); -MODULE_ALIAS_CRYPTO("blake2s-160-arm"); -MODULE_ALIAS_CRYPTO("blake2s-224"); -MODULE_ALIAS_CRYPTO("blake2s-224-arm"); -MODULE_ALIAS_CRYPTO("blake2s-256"); -MODULE_ALIAS_CRYPTO("blake2s-256-arm"); +EXPORT_SYMBOL(blake2s_compress); only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/arm/crypto/blake2s-shash.c +++ linux-intel-iotg-5.15-5.15.0/arch/arm/crypto/blake2s-shash.c @@ -0,0 +1,75 @@ +// SPDX-License-Identifier: GPL-2.0-or-later +/* + * BLAKE2s digest algorithm, ARM scalar implementation + * + * Copyright 2020 Google LLC + */ + +#include +#include + +#include + +static int crypto_blake2s_update_arm(struct shash_desc *desc, + const u8 *in, unsigned int inlen) +{ + return crypto_blake2s_update(desc, in, inlen, false); +} + +static int crypto_blake2s_final_arm(struct shash_desc *desc, u8 *out) +{ + return crypto_blake2s_final(desc, out, false); +} + +#define BLAKE2S_ALG(name, driver_name, digest_size) \ + { \ + .base.cra_name = name, \ + .base.cra_driver_name = driver_name, \ + .base.cra_priority = 200, \ + .base.cra_flags = CRYPTO_ALG_OPTIONAL_KEY, \ + .base.cra_blocksize = BLAKE2S_BLOCK_SIZE, \ + .base.cra_ctxsize = sizeof(struct blake2s_tfm_ctx), \ + .base.cra_module = THIS_MODULE, \ + .digestsize = digest_size, \ + .setkey = crypto_blake2s_setkey, \ + .init = crypto_blake2s_init, \ + .update = crypto_blake2s_update_arm, \ + .final = crypto_blake2s_final_arm, \ + .descsize = sizeof(struct blake2s_state), \ + } + +static struct shash_alg blake2s_arm_algs[] = { + BLAKE2S_ALG("blake2s-128", "blake2s-128-arm", BLAKE2S_128_HASH_SIZE), + BLAKE2S_ALG("blake2s-160", "blake2s-160-arm", BLAKE2S_160_HASH_SIZE), + BLAKE2S_ALG("blake2s-224", "blake2s-224-arm", BLAKE2S_224_HASH_SIZE), + BLAKE2S_ALG("blake2s-256", "blake2s-256-arm", BLAKE2S_256_HASH_SIZE), +}; + +static int __init blake2s_arm_mod_init(void) +{ + return IS_REACHABLE(CONFIG_CRYPTO_HASH) ? + crypto_register_shashes(blake2s_arm_algs, + ARRAY_SIZE(blake2s_arm_algs)) : 0; +} + +static void __exit blake2s_arm_mod_exit(void) +{ + if (IS_REACHABLE(CONFIG_CRYPTO_HASH)) + crypto_unregister_shashes(blake2s_arm_algs, + ARRAY_SIZE(blake2s_arm_algs)); +} + +module_init(blake2s_arm_mod_init); +module_exit(blake2s_arm_mod_exit); + +MODULE_DESCRIPTION("BLAKE2s digest algorithm, ARM scalar implementation"); +MODULE_LICENSE("GPL"); +MODULE_AUTHOR("Eric Biggers "); +MODULE_ALIAS_CRYPTO("blake2s-128"); +MODULE_ALIAS_CRYPTO("blake2s-128-arm"); +MODULE_ALIAS_CRYPTO("blake2s-160"); +MODULE_ALIAS_CRYPTO("blake2s-160-arm"); +MODULE_ALIAS_CRYPTO("blake2s-224"); +MODULE_ALIAS_CRYPTO("blake2s-224-arm"); +MODULE_ALIAS_CRYPTO("blake2s-256"); +MODULE_ALIAS_CRYPTO("blake2s-256-arm"); only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/arm/include/asm/io.h +++ linux-intel-iotg-5.15-5.15.0/arch/arm/include/asm/io.h @@ -436,6 +436,9 @@ #define ARCH_HAS_VALID_PHYS_ADDR_RANGE extern int valid_phys_addr_range(phys_addr_t addr, size_t size); extern int valid_mmap_phys_addr_range(unsigned long pfn, size_t size); +extern bool arch_memremap_can_ram_remap(resource_size_t offset, size_t size, + unsigned long flags); +#define arch_memremap_can_ram_remap arch_memremap_can_ram_remap #endif /* only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/arm/include/asm/timex.h +++ linux-intel-iotg-5.15-5.15.0/arch/arm/include/asm/timex.h @@ -11,5 +11,6 @@ typedef unsigned long cycles_t; #define get_cycles() ({ cycles_t c; read_current_timer(&c) ? 0 : c; }) +#define random_get_entropy() (((unsigned long)get_cycles()) ?: random_get_entropy_fallback()) #endif only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/arm/kernel/signal.c +++ linux-intel-iotg-5.15-5.15.0/arch/arm/kernel/signal.c @@ -708,6 +708,7 @@ static_assert(offsetof(siginfo_t, si_pkey) == 0x14); static_assert(offsetof(siginfo_t, si_perf_data) == 0x10); static_assert(offsetof(siginfo_t, si_perf_type) == 0x14); +static_assert(offsetof(siginfo_t, si_perf_flags) == 0x18); static_assert(offsetof(siginfo_t, si_band) == 0x0c); static_assert(offsetof(siginfo_t, si_fd) == 0x10); static_assert(offsetof(siginfo_t, si_call_addr) == 0x0c); only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/arm/mach-exynos/Kconfig +++ linux-intel-iotg-5.15-5.15.0/arch/arm/mach-exynos/Kconfig @@ -18,7 +18,6 @@ select EXYNOS_PMU select EXYNOS_SROM select EXYNOS_PM_DOMAINS if PM_GENERIC_DOMAINS - select GPIOLIB select HAVE_ARM_ARCH_TIMER if ARCH_EXYNOS5 select HAVE_ARM_SCU if SMP select HAVE_S3C2410_I2C if I2C only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/arm/mach-hisi/platsmp.c +++ linux-intel-iotg-5.15-5.15.0/arch/arm/mach-hisi/platsmp.c @@ -67,14 +67,17 @@ } ctrl_base = of_iomap(np, 0); if (!ctrl_base) { + of_node_put(np); pr_err("failed to map address\n"); return; } if (of_property_read_u32(np, "smp-offset", &offset) < 0) { + of_node_put(np); pr_err("failed to find smp-offset property\n"); return; } ctrl_base += offset; + of_node_put(np); } } @@ -160,6 +163,7 @@ if (WARN_ON(!node)) return -1; ctrl_base = of_iomap(node, 0); + of_node_put(node); /* set the secondary core boot from DDR */ remap_reg_value = readl_relaxed(ctrl_base + REG_SC_CTRL); only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/arm/mach-mediatek/Kconfig +++ linux-intel-iotg-5.15-5.15.0/arch/arm/mach-mediatek/Kconfig @@ -30,6 +30,7 @@ config MACH_MT7629 bool "MediaTek MT7629 SoCs support" default ARCH_MEDIATEK + select HAVE_ARM_ARCH_TIMER config MACH_MT8127 bool "MediaTek MT8127 SoCs support" only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/arm/mach-omap1/clock.c +++ linux-intel-iotg-5.15-5.15.0/arch/arm/mach-omap1/clock.c @@ -41,7 +41,7 @@ unsigned long omap1_uart_recalc(struct clk *clk) { unsigned int val = __raw_readl(clk->enable_reg); - return val & clk->enable_bit ? 48000000 : 12000000; + return val & 1 << clk->enable_bit ? 48000000 : 12000000; } unsigned long omap1_sossi_recalc(struct clk *clk) only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/arm/mach-omap2/omap4-common.c +++ linux-intel-iotg-5.15-5.15.0/arch/arm/mach-omap2/omap4-common.c @@ -314,10 +314,12 @@ np = of_find_compatible_node(NULL, NULL, "arm,cortex-a9-gic"); gic_dist_base_addr = of_iomap(np, 0); + of_node_put(np); WARN_ON(!gic_dist_base_addr); np = of_find_compatible_node(NULL, NULL, "arm,cortex-a9-twd-timer"); twd_base = of_iomap(np, 0); + of_node_put(np); WARN_ON(!twd_base); skip_errata_init: only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/arm/mach-pxa/cm-x300.c +++ linux-intel-iotg-5.15-5.15.0/arch/arm/mach-pxa/cm-x300.c @@ -354,13 +354,13 @@ static struct gpiod_lookup_table cm_x300_spi_gpiod_table = { .dev_id = "spi_gpio", .table = { - GPIO_LOOKUP("gpio-pxa", GPIO_LCD_SCL, + GPIO_LOOKUP("pca9555.1", GPIO_LCD_SCL - GPIO_LCD_BASE, "sck", GPIO_ACTIVE_HIGH), - GPIO_LOOKUP("gpio-pxa", GPIO_LCD_DIN, + GPIO_LOOKUP("pca9555.1", GPIO_LCD_DIN - GPIO_LCD_BASE, "mosi", GPIO_ACTIVE_HIGH), - GPIO_LOOKUP("gpio-pxa", GPIO_LCD_DOUT, + GPIO_LOOKUP("pca9555.1", GPIO_LCD_DOUT - GPIO_LCD_BASE, "miso", GPIO_ACTIVE_HIGH), - GPIO_LOOKUP("gpio-pxa", GPIO_LCD_CS, + GPIO_LOOKUP("pca9555.1", GPIO_LCD_CS - GPIO_LCD_BASE, "cs", GPIO_ACTIVE_HIGH), { }, }, only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/arm/mach-pxa/magician.c +++ linux-intel-iotg-5.15-5.15.0/arch/arm/mach-pxa/magician.c @@ -681,7 +681,7 @@ static struct gpiod_lookup_table bq24022_gpiod_table = { .dev_id = "gpio-regulator", .table = { - GPIO_LOOKUP("gpio-pxa", EGPIO_MAGICIAN_BQ24022_ISET2, + GPIO_LOOKUP("htc-egpio-0", EGPIO_MAGICIAN_BQ24022_ISET2 - MAGICIAN_EGPIO_BASE, NULL, GPIO_ACTIVE_HIGH), GPIO_LOOKUP("gpio-pxa", GPIO30_MAGICIAN_BQ24022_nCHARGE_EN, "enable", GPIO_ACTIVE_LOW), only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/arm/mach-pxa/tosa.c +++ linux-intel-iotg-5.15-5.15.0/arch/arm/mach-pxa/tosa.c @@ -296,9 +296,9 @@ .table = { GPIO_LOOKUP("gpio-pxa", TOSA_GPIO_nSD_DETECT, "cd", GPIO_ACTIVE_LOW), - GPIO_LOOKUP("gpio-pxa", TOSA_GPIO_SD_WP, + GPIO_LOOKUP("sharp-scoop.0", TOSA_GPIO_SD_WP - TOSA_SCOOP_GPIO_BASE, "wp", GPIO_ACTIVE_LOW), - GPIO_LOOKUP("gpio-pxa", TOSA_GPIO_PWR_ON, + GPIO_LOOKUP("sharp-scoop.0", TOSA_GPIO_PWR_ON - TOSA_SCOOP_GPIO_BASE, "power", GPIO_ACTIVE_HIGH), { }, }, only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/arm/mach-vexpress/dcscb.c +++ linux-intel-iotg-5.15-5.15.0/arch/arm/mach-vexpress/dcscb.c @@ -144,6 +144,7 @@ if (!node) return -ENODEV; dcscb_base = of_iomap(node, 0); + of_node_put(node); if (!dcscb_base) return -EADDRNOTAVAIL; cfg = readl_relaxed(dcscb_base + DCS_CFG_R); only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/arm/mach-vexpress/spc.c +++ linux-intel-iotg-5.15-5.15.0/arch/arm/mach-vexpress/spc.c @@ -580,7 +580,7 @@ } cluster = topology_physical_package_id(cpu_dev->id); - if (init_opp_table[cluster]) + if (cluster < 0 || init_opp_table[cluster]) continue; if (ve_init_opp_table(cpu_dev)) only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/arm/mm/ioremap.c +++ linux-intel-iotg-5.15-5.15.0/arch/arm/mm/ioremap.c @@ -479,3 +479,11 @@ { early_ioremap_setup(); } + +bool arch_memremap_can_ram_remap(resource_size_t offset, size_t size, + unsigned long flags) +{ + unsigned long pfn = PHYS_PFN(offset); + + return memblock_is_map_memory(pfn); +} only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/arm64/Kconfig.platforms +++ linux-intel-iotg-5.15-5.15.0/arch/arm64/Kconfig.platforms @@ -259,6 +259,7 @@ config ARCH_SYNQUACER bool "Socionext SynQuacer SoC Family" + select IRQ_FASTEOI_HIERARCHY_HANDLERS config ARCH_TEGRA bool "NVIDIA Tegra SoC Family" only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/arm64/boot/dts/altera/socfpga_stratix10.dtsi +++ linux-intel-iotg-5.15-5.15.0/arch/arm64/boot/dts/altera/socfpga_stratix10.dtsi @@ -594,7 +594,7 @@ }; qspi: spi@ff8d2000 { - compatible = "cdns,qspi-nor"; + compatible = "intel,socfpga-qspi", "cdns,qspi-nor"; #address-cells = <1>; #size-cells = <0>; reg = <0xff8d2000 0x100>, only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/arm64/boot/dts/amlogic/meson-g12b-a311d.dtsi +++ linux-intel-iotg-5.15-5.15.0/arch/arm64/boot/dts/amlogic/meson-g12b-a311d.dtsi @@ -11,26 +11,6 @@ compatible = "operating-points-v2"; opp-shared; - opp-100000000 { - opp-hz = /bits/ 64 <100000000>; - opp-microvolt = <731000>; - }; - - opp-250000000 { - opp-hz = /bits/ 64 <250000000>; - opp-microvolt = <731000>; - }; - - opp-500000000 { - opp-hz = /bits/ 64 <500000000>; - opp-microvolt = <731000>; - }; - - opp-667000000 { - opp-hz = /bits/ 64 <667000000>; - opp-microvolt = <731000>; - }; - opp-1000000000 { opp-hz = /bits/ 64 <1000000000>; opp-microvolt = <761000>; @@ -71,26 +51,6 @@ compatible = "operating-points-v2"; opp-shared; - opp-100000000 { - opp-hz = /bits/ 64 <100000000>; - opp-microvolt = <731000>; - }; - - opp-250000000 { - opp-hz = /bits/ 64 <250000000>; - opp-microvolt = <731000>; - }; - - opp-500000000 { - opp-hz = /bits/ 64 <500000000>; - opp-microvolt = <731000>; - }; - - opp-667000000 { - opp-hz = /bits/ 64 <667000000>; - opp-microvolt = <731000>; - }; - opp-1000000000 { opp-hz = /bits/ 64 <1000000000>; opp-microvolt = <731000>; only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/arm64/boot/dts/amlogic/meson-g12b-s922x.dtsi +++ linux-intel-iotg-5.15-5.15.0/arch/arm64/boot/dts/amlogic/meson-g12b-s922x.dtsi @@ -11,26 +11,6 @@ compatible = "operating-points-v2"; opp-shared; - opp-100000000 { - opp-hz = /bits/ 64 <100000000>; - opp-microvolt = <731000>; - }; - - opp-250000000 { - opp-hz = /bits/ 64 <250000000>; - opp-microvolt = <731000>; - }; - - opp-500000000 { - opp-hz = /bits/ 64 <500000000>; - opp-microvolt = <731000>; - }; - - opp-667000000 { - opp-hz = /bits/ 64 <667000000>; - opp-microvolt = <731000>; - }; - opp-1000000000 { opp-hz = /bits/ 64 <1000000000>; opp-microvolt = <731000>; @@ -76,26 +56,6 @@ compatible = "operating-points-v2"; opp-shared; - opp-100000000 { - opp-hz = /bits/ 64 <100000000>; - opp-microvolt = <751000>; - }; - - opp-250000000 { - opp-hz = /bits/ 64 <250000000>; - opp-microvolt = <751000>; - }; - - opp-500000000 { - opp-hz = /bits/ 64 <500000000>; - opp-microvolt = <751000>; - }; - - opp-667000000 { - opp-hz = /bits/ 64 <667000000>; - opp-microvolt = <751000>; - }; - opp-1000000000 { opp-hz = /bits/ 64 <1000000000>; opp-microvolt = <771000>; only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/arm64/boot/dts/amlogic/meson-sm1.dtsi +++ linux-intel-iotg-5.15-5.15.0/arch/arm64/boot/dts/amlogic/meson-sm1.dtsi @@ -95,26 +95,6 @@ compatible = "operating-points-v2"; opp-shared; - opp-100000000 { - opp-hz = /bits/ 64 <100000000>; - opp-microvolt = <730000>; - }; - - opp-250000000 { - opp-hz = /bits/ 64 <250000000>; - opp-microvolt = <730000>; - }; - - opp-500000000 { - opp-hz = /bits/ 64 <500000000>; - opp-microvolt = <730000>; - }; - - opp-667000000 { - opp-hz = /bits/ 64 <666666666>; - opp-microvolt = <750000>; - }; - opp-1000000000 { opp-hz = /bits/ 64 <1000000000>; opp-microvolt = <770000>; only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/arm64/boot/dts/freescale/imx8mm-var-som.dtsi +++ linux-intel-iotg-5.15-5.15.0/arch/arm64/boot/dts/freescale/imx8mm-var-som.dtsi @@ -89,12 +89,12 @@ pendown-gpio = <&gpio1 3 GPIO_ACTIVE_LOW>; ti,x-min = /bits/ 16 <125>; - touchscreen-size-x = /bits/ 16 <4008>; + touchscreen-size-x = <4008>; ti,y-min = /bits/ 16 <282>; - touchscreen-size-y = /bits/ 16 <3864>; + touchscreen-size-y = <3864>; ti,x-plate-ohms = /bits/ 16 <180>; - touchscreen-max-pressure = /bits/ 16 <255>; - touchscreen-average-samples = /bits/ 16 <10>; + touchscreen-max-pressure = <255>; + touchscreen-average-samples = <10>; ti,debounce-tol = /bits/ 16 <3>; ti,debounce-rep = /bits/ 16 <1>; ti,settle-delay-usec = /bits/ 16 <150>; only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/arm64/boot/dts/freescale/imx8mm-venice-gw71xx.dtsi +++ linux-intel-iotg-5.15-5.15.0/arch/arm64/boot/dts/freescale/imx8mm-venice-gw71xx.dtsi @@ -103,12 +103,14 @@ &usbotg1 { dr_mode = "otg"; + over-current-active-low; vbus-supply = <®_usb_otg1_vbus>; status = "okay"; }; &usbotg2 { dr_mode = "host"; + disable-over-current; status = "okay"; }; @@ -166,7 +168,7 @@ fsl,pins = < MX8MM_IOMUXC_ECSPI2_SCLK_ECSPI2_SCLK 0xd6 MX8MM_IOMUXC_ECSPI2_MOSI_ECSPI2_MOSI 0xd6 - MX8MM_IOMUXC_ECSPI2_SCLK_ECSPI2_SCLK 0xd6 + MX8MM_IOMUXC_ECSPI2_MISO_ECSPI2_MISO 0xd6 MX8MM_IOMUXC_ECSPI2_SS0_GPIO5_IO13 0xd6 >; }; only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/arm64/boot/dts/freescale/imx8mm-venice-gw72xx.dtsi +++ linux-intel-iotg-5.15-5.15.0/arch/arm64/boot/dts/freescale/imx8mm-venice-gw72xx.dtsi @@ -139,12 +139,14 @@ &usbotg1 { dr_mode = "otg"; + over-current-active-low; vbus-supply = <®_usb_otg1_vbus>; status = "okay"; }; &usbotg2 { dr_mode = "host"; + disable-over-current; vbus-supply = <®_usb_otg2_vbus>; status = "okay"; }; @@ -231,7 +233,7 @@ fsl,pins = < MX8MM_IOMUXC_ECSPI2_SCLK_ECSPI2_SCLK 0xd6 MX8MM_IOMUXC_ECSPI2_MOSI_ECSPI2_MOSI 0xd6 - MX8MM_IOMUXC_ECSPI2_SCLK_ECSPI2_SCLK 0xd6 + MX8MM_IOMUXC_ECSPI2_MISO_ECSPI2_MISO 0xd6 MX8MM_IOMUXC_ECSPI2_SS0_GPIO5_IO13 0xd6 >; }; only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/arm64/boot/dts/freescale/imx8mm-venice-gw73xx.dtsi +++ linux-intel-iotg-5.15-5.15.0/arch/arm64/boot/dts/freescale/imx8mm-venice-gw73xx.dtsi @@ -166,12 +166,14 @@ &usbotg1 { dr_mode = "otg"; + over-current-active-low; vbus-supply = <®_usb_otg1_vbus>; status = "okay"; }; &usbotg2 { dr_mode = "host"; + disable-over-current; vbus-supply = <®_usb_otg2_vbus>; status = "okay"; }; @@ -280,7 +282,7 @@ fsl,pins = < MX8MM_IOMUXC_ECSPI2_SCLK_ECSPI2_SCLK 0xd6 MX8MM_IOMUXC_ECSPI2_MOSI_ECSPI2_MOSI 0xd6 - MX8MM_IOMUXC_ECSPI2_SCLK_ECSPI2_SCLK 0xd6 + MX8MM_IOMUXC_ECSPI2_MISO_ECSPI2_MISO 0xd6 MX8MM_IOMUXC_ECSPI2_SS0_GPIO5_IO13 0xd6 >; }; only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/arm64/boot/dts/freescale/imx8mn-ddr4-evk.dts +++ linux-intel-iotg-5.15-5.15.0/arch/arm64/boot/dts/freescale/imx8mn-ddr4-evk.dts @@ -59,6 +59,10 @@ interrupts = <3 IRQ_TYPE_LEVEL_LOW>; rohm,reset-snvs-powered; + #clock-cells = <0>; + clocks = <&osc_32k 0>; + clock-output-names = "clk-32k-out"; + regulators { buck1_reg: BUCK1 { regulator-name = "buck1"; only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/arm64/boot/dts/freescale/imx8mn-var-som.dtsi +++ linux-intel-iotg-5.15-5.15.0/arch/arm64/boot/dts/freescale/imx8mn-var-som.dtsi @@ -70,12 +70,12 @@ pendown-gpio = <&gpio1 3 GPIO_ACTIVE_LOW>; ti,x-min = /bits/ 16 <125>; - touchscreen-size-x = /bits/ 16 <4008>; + touchscreen-size-x = <4008>; ti,y-min = /bits/ 16 <282>; - touchscreen-size-y = /bits/ 16 <3864>; + touchscreen-size-y = <3864>; ti,x-plate-ohms = /bits/ 16 <180>; - touchscreen-max-pressure = /bits/ 16 <255>; - touchscreen-average-samples = /bits/ 16 <10>; + touchscreen-max-pressure = <255>; + touchscreen-average-samples = <10>; ti,debounce-tol = /bits/ 16 <3>; ti,debounce-rep = /bits/ 16 <1>; ti,settle-delay-usec = /bits/ 16 <150>; only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/arm64/boot/dts/freescale/imx8mn.dtsi +++ linux-intel-iotg-5.15-5.15.0/arch/arm64/boot/dts/freescale/imx8mn.dtsi @@ -263,7 +263,7 @@ ranges; sai2: sai@30020000 { - compatible = "fsl,imx8mm-sai", "fsl,imx8mq-sai"; + compatible = "fsl,imx8mn-sai", "fsl,imx8mq-sai"; reg = <0x30020000 0x10000>; interrupts = ; clocks = <&clk IMX8MN_CLK_SAI2_IPG>, @@ -277,7 +277,7 @@ }; sai3: sai@30030000 { - compatible = "fsl,imx8mm-sai", "fsl,imx8mq-sai"; + compatible = "fsl,imx8mn-sai", "fsl,imx8mq-sai"; reg = <0x30030000 0x10000>; interrupts = ; clocks = <&clk IMX8MN_CLK_SAI3_IPG>, @@ -291,7 +291,7 @@ }; sai5: sai@30050000 { - compatible = "fsl,imx8mm-sai", "fsl,imx8mq-sai"; + compatible = "fsl,imx8mn-sai", "fsl,imx8mq-sai"; reg = <0x30050000 0x10000>; interrupts = ; clocks = <&clk IMX8MN_CLK_SAI5_IPG>, @@ -307,7 +307,7 @@ }; sai6: sai@30060000 { - compatible = "fsl,imx8mm-sai", "fsl,imx8mq-sai"; + compatible = "fsl,imx8mn-sai", "fsl,imx8mq-sai"; reg = <0x30060000 0x10000>; interrupts = ; clocks = <&clk IMX8MN_CLK_SAI6_IPG>, @@ -364,7 +364,7 @@ }; sai7: sai@300b0000 { - compatible = "fsl,imx8mm-sai", "fsl,imx8mq-sai"; + compatible = "fsl,imx8mn-sai", "fsl,imx8mq-sai"; reg = <0x300b0000 0x10000>; interrupts = ; clocks = <&clk IMX8MN_CLK_SAI7_IPG>, only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/arm64/boot/dts/freescale/imx8qm.dtsi +++ linux-intel-iotg-5.15-5.15.0/arch/arm64/boot/dts/freescale/imx8qm.dtsi @@ -155,7 +155,7 @@ }; clk: clock-controller { - compatible = "fsl,imx8qxp-clk", "fsl,scu-clk"; + compatible = "fsl,imx8qm-clk", "fsl,scu-clk"; #clock-cells = <2>; }; only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/arm64/boot/dts/marvell/armada-3720-espressobin-ultra.dts +++ linux-intel-iotg-5.15-5.15.0/arch/arm64/boot/dts/marvell/armada-3720-espressobin-ultra.dts @@ -71,10 +71,6 @@ &spi0 { flash@0 { - spi-max-frequency = <108000000>; - spi-rx-bus-width = <4>; - spi-tx-bus-width = <4>; - partitions { compatible = "fixed-partitions"; #address-cells = <1>; @@ -112,7 +108,6 @@ &usb3 { usb-phy = <&usb3_phy>; - status = "disabled"; }; &mdio { only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/arm64/boot/dts/mediatek/mt8192.dtsi +++ linux-intel-iotg-5.15-5.15.0/arch/arm64/boot/dts/mediatek/mt8192.dtsi @@ -433,7 +433,7 @@ clock-names = "spi", "sf", "axi"; #address-cells = <1>; #size-cells = <0>; - status = "disable"; + status = "disabled"; }; i2c3: i2c3@11cb0000 { only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/arm64/boot/dts/nvidia/tegra210.dtsi +++ linux-intel-iotg-5.15-5.15.0/arch/arm64/boot/dts/nvidia/tegra210.dtsi @@ -1355,8 +1355,9 @@ <&tegra_car TEGRA210_CLK_DFLL_REF>, <&tegra_car TEGRA210_CLK_I2C5>; clock-names = "soc", "ref", "i2c"; - resets = <&tegra_car TEGRA210_RST_DFLL_DVCO>; - reset-names = "dvco"; + resets = <&tegra_car TEGRA210_RST_DFLL_DVCO>, + <&tegra_car 155>; + reset-names = "dvco", "dfll"; #clock-cells = <0>; clock-output-names = "dfllCPU_out"; status = "disabled"; only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/arm64/boot/dts/qcom/qrb5165-rb5.dts +++ linux-intel-iotg-5.15-5.15.0/arch/arm64/boot/dts/qcom/qrb5165-rb5.dts @@ -27,7 +27,7 @@ }; /* Fixed crystal oscillator dedicated to MCP2518FD */ - clk40M: can_clock { + clk40M: can-clock { compatible = "fixed-clock"; #clock-cells = <0>; clock-frequency = <40000000>; only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/arm64/boot/dts/qcom/sdm845-xiaomi-beryllium.dts +++ linux-intel-iotg-5.15-5.15.0/arch/arm64/boot/dts/qcom/sdm845-xiaomi-beryllium.dts @@ -221,7 +221,7 @@ panel@0 { compatible = "tianma,fhd-video"; reg = <0>; - vddi0-supply = <&vreg_l14a_1p8>; + vddio-supply = <&vreg_l14a_1p8>; vddpos-supply = <&lab>; vddneg-supply = <&ibb>; only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/arm64/boot/dts/ti/k3-am64-mcu.dtsi +++ linux-intel-iotg-5.15-5.15.0/arch/arm64/boot/dts/ti/k3-am64-mcu.dtsi @@ -10,7 +10,6 @@ compatible = "ti,am64-uart", "ti,am654-uart"; reg = <0x00 0x04a00000 0x00 0x100>; interrupts = ; - clock-frequency = <48000000>; current-speed = <115200>; power-domains = <&k3_pds 149 TI_SCI_PD_EXCLUSIVE>; clocks = <&k3_clks 149 0>; @@ -21,7 +20,6 @@ compatible = "ti,am64-uart", "ti,am654-uart"; reg = <0x00 0x04a10000 0x00 0x100>; interrupts = ; - clock-frequency = <48000000>; current-speed = <115200>; power-domains = <&k3_pds 160 TI_SCI_PD_EXCLUSIVE>; clocks = <&k3_clks 160 0>; only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/arm64/include/asm/io.h +++ linux-intel-iotg-5.15-5.15.0/arch/arm64/include/asm/io.h @@ -192,4 +192,8 @@ extern int valid_phys_addr_range(phys_addr_t addr, size_t size); extern int valid_mmap_phys_addr_range(unsigned long pfn, size_t size); +extern bool arch_memremap_can_ram_remap(resource_size_t offset, size_t size, + unsigned long flags); +#define arch_memremap_can_ram_remap arch_memremap_can_ram_remap + #endif /* __ASM_IO_H */ only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/arm64/include/asm/page.h +++ linux-intel-iotg-5.15-5.15.0/arch/arm64/include/asm/page.h @@ -41,7 +41,6 @@ typedef struct page *pgtable_t; -int pfn_valid(unsigned long pfn); int pfn_is_map_memory(unsigned long pfn); #include only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/arm64/include/asm/processor.h +++ linux-intel-iotg-5.15-5.15.0/arch/arm64/include/asm/processor.h @@ -335,12 +335,10 @@ * of header definitions for the use of task_stack_page. */ -#define current_top_of_stack() \ -({ \ - struct stack_info _info; \ - BUG_ON(!on_accessible_stack(current, current_stack_pointer, 1, &_info)); \ - _info.high; \ -}) +/* + * The top of the current task's task stack + */ +#define current_top_of_stack() ((unsigned long)current->stack + THREAD_SIZE) #define on_thread_stack() (on_task_stack(current, current_stack_pointer, 1, NULL)) #endif /* __ASSEMBLY__ */ only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/arm64/kernel/Makefile +++ linux-intel-iotg-5.15-5.15.0/arch/arm64/kernel/Makefile @@ -74,6 +74,10 @@ obj-y += vdso-wrap.o obj-$(CONFIG_COMPAT_VDSO) += vdso32-wrap.o +# Force dependency (vdso*-wrap.S includes vdso.so through incbin) +$(obj)/vdso-wrap.o: $(obj)/vdso/vdso.so +$(obj)/vdso32-wrap.o: $(obj)/vdso32/vdso.so + obj-y += probes/ head-y := head.o extra-y += $(head-y) vmlinux.lds only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/arm64/kernel/mte.c +++ linux-intel-iotg-5.15-5.15.0/arch/arm64/kernel/mte.c @@ -73,6 +73,9 @@ mte_sync_page_tags(page, old_pte, check_swap, pte_is_tagged); } + + /* ensure the tags are visible before the PTE is set */ + smp_wmb(); } int memcmp_pages(struct page *page1, struct page *page2) only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/arm64/kernel/paravirt.c +++ linux-intel-iotg-5.15-5.15.0/arch/arm64/kernel/paravirt.c @@ -35,7 +35,7 @@ DEFINE_STATIC_CALL(pv_steal_clock, native_steal_clock); struct pv_time_stolen_time_region { - struct pvclock_vcpu_stolen_time *kaddr; + struct pvclock_vcpu_stolen_time __rcu *kaddr; }; static DEFINE_PER_CPU(struct pv_time_stolen_time_region, stolen_time_region); @@ -52,7 +52,9 @@ /* return stolen time in ns by asking the hypervisor */ static u64 para_steal_clock(int cpu) { + struct pvclock_vcpu_stolen_time *kaddr = NULL; struct pv_time_stolen_time_region *reg; + u64 ret = 0; reg = per_cpu_ptr(&stolen_time_region, cpu); @@ -61,28 +63,37 @@ * online notification callback runs. Until the callback * has run we just return zero. */ - if (!reg->kaddr) + rcu_read_lock(); + kaddr = rcu_dereference(reg->kaddr); + if (!kaddr) { + rcu_read_unlock(); return 0; + } - return le64_to_cpu(READ_ONCE(reg->kaddr->stolen_time)); + ret = le64_to_cpu(READ_ONCE(kaddr->stolen_time)); + rcu_read_unlock(); + return ret; } static int stolen_time_cpu_down_prepare(unsigned int cpu) { + struct pvclock_vcpu_stolen_time *kaddr = NULL; struct pv_time_stolen_time_region *reg; reg = this_cpu_ptr(&stolen_time_region); if (!reg->kaddr) return 0; - memunmap(reg->kaddr); - memset(reg, 0, sizeof(*reg)); + kaddr = rcu_replace_pointer(reg->kaddr, NULL, true); + synchronize_rcu(); + memunmap(kaddr); return 0; } static int stolen_time_cpu_online(unsigned int cpu) { + struct pvclock_vcpu_stolen_time *kaddr = NULL; struct pv_time_stolen_time_region *reg; struct arm_smccc_res res; @@ -93,17 +104,19 @@ if (res.a0 == SMCCC_RET_NOT_SUPPORTED) return -EINVAL; - reg->kaddr = memremap(res.a0, + kaddr = memremap(res.a0, sizeof(struct pvclock_vcpu_stolen_time), MEMREMAP_WB); + rcu_assign_pointer(reg->kaddr, kaddr); + if (!reg->kaddr) { pr_warn("Failed to map stolen time data structure\n"); return -ENOMEM; } - if (le32_to_cpu(reg->kaddr->revision) != 0 || - le32_to_cpu(reg->kaddr->attributes) != 0) { + if (le32_to_cpu(kaddr->revision) != 0 || + le32_to_cpu(kaddr->attributes) != 0) { pr_warn_once("Unexpected revision or attributes in stolen time data\n"); return -ENXIO; } only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/arm64/kernel/signal32.c +++ linux-intel-iotg-5.15-5.15.0/arch/arm64/kernel/signal32.c @@ -487,6 +487,7 @@ static_assert(offsetof(compat_siginfo_t, si_pkey) == 0x14); static_assert(offsetof(compat_siginfo_t, si_perf_data) == 0x10); static_assert(offsetof(compat_siginfo_t, si_perf_type) == 0x14); +static_assert(offsetof(compat_siginfo_t, si_perf_flags) == 0x18); static_assert(offsetof(compat_siginfo_t, si_band) == 0x0c); static_assert(offsetof(compat_siginfo_t, si_fd) == 0x10); static_assert(offsetof(compat_siginfo_t, si_call_addr) == 0x0c); only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/arm64/kernel/sys_compat.c +++ linux-intel-iotg-5.15-5.15.0/arch/arm64/kernel/sys_compat.c @@ -114,6 +114,6 @@ addr = instruction_pointer(regs) - (compat_thumb_mode(regs) ? 2 : 4); arm64_notify_die("Oops - bad compat syscall(2)", regs, - SIGILL, ILL_ILLTRP, addr, scno); + SIGILL, ILL_ILLTRP, addr, 0); return 0; } only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/arm64/kernel/vdso/Makefile +++ linux-intel-iotg-5.15-5.15.0/arch/arm64/kernel/vdso/Makefile @@ -48,9 +48,6 @@ targets += vdso.lds CPPFLAGS_vdso.lds += -P -C -U$(ARCH) -# Force dependency (incbin is bad) -$(obj)/vdso.o : $(obj)/vdso.so - # Link rule for the .so file, .lds has to be first $(obj)/vdso.so.dbg: $(obj)/vdso.lds $(obj-vdso) FORCE $(call if_changed,vdsold_and_vdso_check) only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/arm64/mm/copypage.c +++ linux-intel-iotg-5.15-5.15.0/arch/arm64/mm/copypage.c @@ -16,8 +16,8 @@ void copy_highpage(struct page *to, struct page *from) { - struct page *kto = page_address(to); - struct page *kfrom = page_address(from); + void *kto = page_address(to); + void *kfrom = page_address(from); copy_page(kto, kfrom); only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/arm64/mm/ioremap.c +++ linux-intel-iotg-5.15-5.15.0/arch/arm64/mm/ioremap.c @@ -99,3 +99,11 @@ { early_ioremap_setup(); } + +bool arch_memremap_can_ram_remap(resource_size_t offset, size_t size, + unsigned long flags) +{ + unsigned long pfn = PHYS_PFN(offset); + + return pfn_is_map_memory(pfn); +} only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/csky/kernel/probes/kprobes.c +++ linux-intel-iotg-5.15-5.15.0/arch/csky/kernel/probes/kprobes.c @@ -28,7 +28,7 @@ struct csky_insn_patch *param = priv; unsigned int addr = (unsigned int)param->addr; - if (atomic_inc_return(¶m->cpu_count) == 1) { + if (atomic_inc_return(¶m->cpu_count) == num_online_cpus()) { *(u16 *) addr = cpu_to_le16(param->opcode); dcache_wb_range(addr, addr + 2); atomic_inc(¶m->cpu_count); only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/ia64/include/asm/timex.h +++ linux-intel-iotg-5.15-5.15.0/arch/ia64/include/asm/timex.h @@ -39,6 +39,7 @@ ret = ia64_getreg(_IA64_REG_AR_ITC); return ret; } +#define get_cycles get_cycles extern void ia64_cpu_local_tick (void); extern unsigned long long ia64_native_sched_clock (void); only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/m68k/Kconfig.cpu +++ linux-intel-iotg-5.15-5.15.0/arch/m68k/Kconfig.cpu @@ -338,7 +338,7 @@ config M68KFPU_EMU bool "Math emulation support" - depends on MMU + depends on M68KCLASSIC && FPU help At some point in the future, this will cause floating-point math instructions to be emulated by the kernel on machines that lack a only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/m68k/include/asm/raw_io.h +++ linux-intel-iotg-5.15-5.15.0/arch/m68k/include/asm/raw_io.h @@ -80,14 +80,14 @@ ({ u16 __v = le16_to_cpu(*(__force volatile u16 *) (addr)); __v; }) #define rom_out_8(addr, b) \ - ({u8 __maybe_unused __w, __v = (b); u32 _addr = ((u32) (addr)); \ + (void)({u8 __maybe_unused __w, __v = (b); u32 _addr = ((u32) (addr)); \ __w = ((*(__force volatile u8 *) ((_addr | 0x10000) + (__v<<1)))); }) #define rom_out_be16(addr, w) \ - ({u16 __maybe_unused __w, __v = (w); u32 _addr = ((u32) (addr)); \ + (void)({u16 __maybe_unused __w, __v = (w); u32 _addr = ((u32) (addr)); \ __w = ((*(__force volatile u16 *) ((_addr & 0xFFFF0000UL) + ((__v & 0xFF)<<1)))); \ __w = ((*(__force volatile u16 *) ((_addr | 0x10000) + ((__v >> 8)<<1)))); }) #define rom_out_le16(addr, w) \ - ({u16 __maybe_unused __w, __v = (w); u32 _addr = ((u32) (addr)); \ + (void)({u16 __maybe_unused __w, __v = (w); u32 _addr = ((u32) (addr)); \ __w = ((*(__force volatile u16 *) ((_addr & 0xFFFF0000UL) + ((__v >> 8)<<1)))); \ __w = ((*(__force volatile u16 *) ((_addr | 0x10000) + ((__v & 0xFF)<<1)))); }) only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/m68k/include/asm/timex.h +++ linux-intel-iotg-5.15-5.15.0/arch/m68k/include/asm/timex.h @@ -35,7 +35,7 @@ { if (mach_random_get_entropy) return mach_random_get_entropy(); - return 0; + return random_get_entropy_fallback(); } #define random_get_entropy random_get_entropy only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/m68k/kernel/signal.c +++ linux-intel-iotg-5.15-5.15.0/arch/m68k/kernel/signal.c @@ -625,6 +625,7 @@ /* _sigfault._perf */ BUILD_BUG_ON(offsetof(siginfo_t, si_perf_data) != 0x10); BUILD_BUG_ON(offsetof(siginfo_t, si_perf_type) != 0x14); + BUILD_BUG_ON(offsetof(siginfo_t, si_perf_flags) != 0x18); /* _sigpoll */ BUILD_BUG_ON(offsetof(siginfo_t, si_band) != 0x0c); only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/mips/include/asm/mach-ip27/cpu-feature-overrides.h +++ linux-intel-iotg-5.15-5.15.0/arch/mips/include/asm/mach-ip27/cpu-feature-overrides.h @@ -26,7 +26,6 @@ #define cpu_has_3k_cache 0 #define cpu_has_4k_cache 1 #define cpu_has_tx39_cache 0 -#define cpu_has_fpu 1 #define cpu_has_nofpuex 0 #define cpu_has_32fpr 1 #define cpu_has_counter 1 only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/mips/include/asm/mach-ip30/cpu-feature-overrides.h +++ linux-intel-iotg-5.15-5.15.0/arch/mips/include/asm/mach-ip30/cpu-feature-overrides.h @@ -29,7 +29,6 @@ #define cpu_has_3k_cache 0 #define cpu_has_4k_cache 1 #define cpu_has_tx39_cache 0 -#define cpu_has_fpu 1 #define cpu_has_nofpuex 0 #define cpu_has_32fpr 1 #define cpu_has_counter 1 only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/mips/include/asm/timex.h +++ linux-intel-iotg-5.15-5.15.0/arch/mips/include/asm/timex.h @@ -40,9 +40,9 @@ typedef unsigned int cycles_t; /* - * On R4000/R4400 before version 5.0 an erratum exists such that if the - * cycle counter is read in the exact moment that it is matching the - * compare register, no interrupt will be generated. + * On R4000/R4400 an erratum exists such that if the cycle counter is + * read in the exact moment that it is matching the compare register, + * no interrupt will be generated. * * There is a suggested workaround and also the erratum can't strike if * the compare interrupt isn't being used as the clock source device. @@ -63,7 +63,7 @@ if (!__builtin_constant_p(cpu_has_counter)) asm volatile("" : "=m" (cpu_data[0].options)); if (likely(cpu_has_counter && - prid >= (PRID_IMP_R4000 | PRID_REV_ENCODE_44(5, 0)))) + prid > (PRID_IMP_R4000 | PRID_REV_ENCODE_44(15, 15)))) return 1; else return 0; @@ -76,25 +76,24 @@ else return 0; /* no usable counter */ } +#define get_cycles get_cycles /* * Like get_cycles - but where c0_count is not available we desperately * use c0_random in an attempt to get at least a little bit of entropy. - * - * R6000 and R6000A neither have a count register nor a random register. - * That leaves no entropy source in the CPU itself. */ static inline unsigned long random_get_entropy(void) { - unsigned int prid = read_c0_prid(); - unsigned int imp = prid & PRID_IMP_MASK; + unsigned int c0_random; - if (can_use_mips_counter(prid)) + if (can_use_mips_counter(read_c0_prid())) return read_c0_count(); - else if (likely(imp != PRID_IMP_R6000 && imp != PRID_IMP_R6000A)) - return read_c0_random(); + + if (cpu_has_3kex) + c0_random = (read_c0_random() >> 8) & 0x3f; else - return 0; /* no usable register */ + c0_random = read_c0_random() & 0x3f; + return (random_get_entropy_fallback() << 6) | (0x3f - c0_random); } #define random_get_entropy random_get_entropy only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/mips/kernel/time.c +++ linux-intel-iotg-5.15-5.15.0/arch/mips/kernel/time.c @@ -141,15 +141,10 @@ case CPU_R4400MC: /* * The published errata for the R4400 up to 3.0 say the CPU - * has the mfc0 from count bug. + * has the mfc0 from count bug. This seems the last version + * produced. */ - if ((current_cpu_data.processor_id & 0xff) <= 0x30) - return 1; - - /* - * we assume newer revisions are ok - */ - return 0; + return 1; } return 0; only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/mips/lantiq/falcon/sysctrl.c +++ linux-intel-iotg-5.15-5.15.0/arch/mips/lantiq/falcon/sysctrl.c @@ -167,6 +167,8 @@ { struct clk *clk = kzalloc(sizeof(struct clk), GFP_KERNEL); + if (!clk) + return; clk->cl.dev_id = dev; clk->cl.con_id = NULL; clk->cl.clk = clk; only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/mips/lantiq/xway/gptu.c +++ linux-intel-iotg-5.15-5.15.0/arch/mips/lantiq/xway/gptu.c @@ -122,6 +122,8 @@ { struct clk *clk = kzalloc(sizeof(struct clk), GFP_KERNEL); + if (!clk) + return; clk->cl.dev_id = dev_name(dev); clk->cl.con_id = con; clk->cl.clk = clk; only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/mips/lantiq/xway/sysctrl.c +++ linux-intel-iotg-5.15-5.15.0/arch/mips/lantiq/xway/sysctrl.c @@ -315,6 +315,8 @@ { struct clk *clk = kzalloc(sizeof(struct clk), GFP_KERNEL); + if (!clk) + return; clk->cl.dev_id = dev; clk->cl.con_id = con; clk->cl.clk = clk; @@ -338,6 +340,8 @@ { struct clk *clk = kzalloc(sizeof(struct clk), GFP_KERNEL); + if (!clk) + return; clk->cl.dev_id = dev; clk->cl.con_id = con; clk->cl.clk = clk; @@ -356,24 +360,28 @@ struct clk *clk_ext = kzalloc(sizeof(struct clk), GFP_KERNEL); /* main pci clock */ - clk->cl.dev_id = "17000000.pci"; - clk->cl.con_id = NULL; - clk->cl.clk = clk; - clk->rate = CLOCK_33M; - clk->rates = valid_pci_rates; - clk->enable = pci_enable; - clk->disable = pmu_disable; - clk->module = 0; - clk->bits = PMU_PCI; - clkdev_add(&clk->cl); + if (clk) { + clk->cl.dev_id = "17000000.pci"; + clk->cl.con_id = NULL; + clk->cl.clk = clk; + clk->rate = CLOCK_33M; + clk->rates = valid_pci_rates; + clk->enable = pci_enable; + clk->disable = pmu_disable; + clk->module = 0; + clk->bits = PMU_PCI; + clkdev_add(&clk->cl); + } /* use internal/external bus clock */ - clk_ext->cl.dev_id = "17000000.pci"; - clk_ext->cl.con_id = "external"; - clk_ext->cl.clk = clk_ext; - clk_ext->enable = pci_ext_enable; - clk_ext->disable = pci_ext_disable; - clkdev_add(&clk_ext->cl); + if (clk_ext) { + clk_ext->cl.dev_id = "17000000.pci"; + clk_ext->cl.con_id = "external"; + clk_ext->cl.clk = clk_ext; + clk_ext->enable = pci_ext_enable; + clk_ext->disable = pci_ext_disable; + clkdev_add(&clk_ext->cl); + } } /* xway socs can generate clocks on gpio pins */ @@ -393,9 +401,15 @@ char *name; name = kzalloc(sizeof("clkout0"), GFP_KERNEL); + if (!name) + continue; sprintf(name, "clkout%d", i); clk = kzalloc(sizeof(struct clk), GFP_KERNEL); + if (!clk) { + kfree(name); + continue; + } clk->cl.dev_id = "1f103000.cgu"; clk->cl.con_id = name; clk->cl.clk = clk; only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/nios2/include/asm/timex.h +++ linux-intel-iotg-5.15-5.15.0/arch/nios2/include/asm/timex.h @@ -8,5 +8,8 @@ typedef unsigned long cycles_t; extern cycles_t get_cycles(void); +#define get_cycles get_cycles + +#define random_get_entropy() (((unsigned long)get_cycles()) ?: random_get_entropy_fallback()) #endif only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/openrisc/include/asm/timex.h +++ linux-intel-iotg-5.15-5.15.0/arch/openrisc/include/asm/timex.h @@ -23,6 +23,7 @@ { return mfspr(SPR_TTCR); } +#define get_cycles get_cycles /* This isn't really used any more */ #define CLOCK_TICK_RATE 1000 only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/openrisc/kernel/head.S +++ linux-intel-iotg-5.15-5.15.0/arch/openrisc/kernel/head.S @@ -521,6 +521,15 @@ l.ori r3,r0,0x1 l.mtspr r0,r3,SPR_SR + /* + * Start the TTCR as early as possible, so that the RNG can make use of + * measurements of boot time from the earliest opportunity. Especially + * important is that the TTCR does not return zero by the time we reach + * rand_initialize(). + */ + l.movhi r3,hi(SPR_TTMR_CR) + l.mtspr r0,r3,SPR_TTMR + CLEAR_GPR(r1) CLEAR_GPR(r2) CLEAR_GPR(r3) only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/parisc/include/asm/fb.h +++ linux-intel-iotg-5.15-5.15.0/arch/parisc/include/asm/fb.h @@ -12,9 +12,13 @@ pgprot_val(vma->vm_page_prot) |= _PAGE_NO_CACHE; } +#if defined(CONFIG_STI_CONSOLE) || defined(CONFIG_FB_STI) +int fb_is_primary_device(struct fb_info *info); +#else static inline int fb_is_primary_device(struct fb_info *info) { return 0; } +#endif #endif /* _ASM_FB_H_ */ only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/parisc/include/asm/timex.h +++ linux-intel-iotg-5.15-5.15.0/arch/parisc/include/asm/timex.h @@ -13,9 +13,10 @@ typedef unsigned long cycles_t; -static inline cycles_t get_cycles (void) +static inline cycles_t get_cycles(void) { return mfctl(16); } +#define get_cycles get_cycles #endif only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/parisc/kernel/processor.c +++ linux-intel-iotg-5.15-5.15.0/arch/parisc/kernel/processor.c @@ -418,8 +418,7 @@ } seq_printf(m, " (0x%02lx)\n", boot_cpu_data.pdc.capabilities); - seq_printf(m, "model\t\t: %s\n" - "model name\t: %s\n", + seq_printf(m, "model\t\t: %s - %s\n", boot_cpu_data.pdc.sys_model_name, cpuinfo->dev ? cpuinfo->dev->name : "Unknown"); only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/parisc/kernel/setup.c +++ linux-intel-iotg-5.15-5.15.0/arch/parisc/kernel/setup.c @@ -150,6 +150,8 @@ #ifdef CONFIG_PA11 dma_ops_init(); #endif + + clear_sched_clock_stable(); } /* only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/powerpc/include/asm/timex.h +++ linux-intel-iotg-5.15-5.15.0/arch/powerpc/include/asm/timex.h @@ -19,6 +19,7 @@ { return mftb(); } +#define get_cycles get_cycles #endif /* __KERNEL__ */ #endif /* _ASM_POWERPC_TIMEX_H */ only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/powerpc/include/asm/vas.h +++ linux-intel-iotg-5.15-5.15.0/arch/powerpc/include/asm/vas.h @@ -112,7 +112,7 @@ * Receive window attributes specified by the (in-kernel) owner of window. */ struct vas_rx_win_attr { - void *rx_fifo; + u64 rx_fifo; int rx_fifo_size; int wcreds_max; only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/powerpc/kernel/cputable.c +++ linux-intel-iotg-5.15-5.15.0/arch/powerpc/kernel/cputable.c @@ -2119,7 +2119,7 @@ struct static_key_true mmu_feature_keys[NUM_MMU_FTR_KEYS] = { [0 ... NUM_MMU_FTR_KEYS - 1] = STATIC_KEY_TRUE_INIT }; -EXPORT_SYMBOL_GPL(mmu_feature_keys); +EXPORT_SYMBOL(mmu_feature_keys); void __init mmu_feature_keys_init(void) { only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/powerpc/kernel/entry_64.S +++ linux-intel-iotg-5.15-5.15.0/arch/powerpc/kernel/entry_64.S @@ -330,22 +330,22 @@ clrldi r4,r4,2 /* convert to realmode address */ mtlr r4 - li r0,0 - ori r0,r0,MSR_EE|MSR_SE|MSR_BE|MSR_RI - andc r0,r6,r0 - - li r9,1 - rldicr r9,r9,MSR_SF_LG,(63-MSR_SF_LG) - ori r9,r9,MSR_IR|MSR_DR|MSR_FE0|MSR_FE1|MSR_FP|MSR_RI|MSR_LE - andc r6,r0,r9 - __enter_rtas: - sync /* disable interrupts so SRR0/1 */ - mtmsrd r0 /* don't get trashed */ - LOAD_REG_ADDR(r4, rtas) ld r5,RTASENTRY(r4) /* get the rtas->entry value */ ld r4,RTASBASE(r4) /* get the rtas->base value */ + + /* + * RTAS runs in 32-bit big endian real mode, but leave MSR[RI] on as we + * may hit NMI (SRESET or MCE) while in RTAS. RTAS should disable RI in + * its critical regions (as specified in PAPR+ section 7.2.1). MSR[S] + * is not impacted by RFI_TO_KERNEL (only urfid can unset it). So if + * MSR[S] is set, it will remain when entering RTAS. + */ + LOAD_REG_IMMEDIATE(r6, MSR_ME | MSR_RI) + + li r0,0 + mtmsrd r0,1 /* disable RI before using SRR0/1 */ mtspr SPRN_SRR0,r5 mtspr SPRN_SRR1,r6 only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/powerpc/kernel/idle.c +++ linux-intel-iotg-5.15-5.15.0/arch/powerpc/kernel/idle.c @@ -37,7 +37,7 @@ { ppc_md.power_save = NULL; cpuidle_disable = IDLE_POWERSAVE_OFF; - return 0; + return 1; } __setup("powersave=off", powersave_off); only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/powerpc/kernel/reloc_64.S +++ linux-intel-iotg-5.15-5.15.0/arch/powerpc/kernel/reloc_64.S @@ -8,8 +8,10 @@ #include RELA = 7 -RELACOUNT = 0x6ffffff9 +RELASZ = 8 +RELAENT = 9 R_PPC64_RELATIVE = 22 +R_PPC64_UADDR64 = 43 /* * r3 = desired final address of kernel @@ -25,29 +27,38 @@ add r9,r9,r12 /* r9 has runtime addr of .rela.dyn section */ ld r10,(p_st - 0b)(r12) add r10,r10,r12 /* r10 has runtime addr of _stext */ + ld r13,(p_sym - 0b)(r12) + add r13,r13,r12 /* r13 has runtime addr of .dynsym */ /* - * Scan the dynamic section for the RELA and RELACOUNT entries. + * Scan the dynamic section for the RELA, RELASZ and RELAENT entries. */ li r7,0 li r8,0 -1: ld r6,0(r11) /* get tag */ +.Ltags: + ld r6,0(r11) /* get tag */ cmpdi r6,0 - beq 4f /* end of list */ + beq .Lend_of_list /* end of list */ cmpdi r6,RELA bne 2f ld r7,8(r11) /* get RELA pointer in r7 */ - b 3f -2: addis r6,r6,(-RELACOUNT)@ha - cmpdi r6,RELACOUNT@l + b 4f +2: cmpdi r6,RELASZ bne 3f - ld r8,8(r11) /* get RELACOUNT value in r8 */ -3: addi r11,r11,16 - b 1b -4: cmpdi r7,0 /* check we have both RELA and RELACOUNT */ + ld r8,8(r11) /* get RELASZ value in r8 */ + b 4f +3: cmpdi r6,RELAENT + bne 4f + ld r12,8(r11) /* get RELAENT value in r12 */ +4: addi r11,r11,16 + b .Ltags +.Lend_of_list: + cmpdi r7,0 /* check we have RELA, RELASZ, RELAENT */ cmpdi cr1,r8,0 - beq 6f - beq cr1,6f + beq .Lout + beq cr1,.Lout + cmpdi r12,0 + beq .Lout /* * Work out linktime address of _stext and hence the @@ -62,23 +73,39 @@ /* * Run through the list of relocations and process the - * R_PPC64_RELATIVE ones. + * R_PPC64_RELATIVE and R_PPC64_UADDR64 ones. */ + divd r8,r8,r12 /* RELASZ / RELAENT */ mtctr r8 -5: ld r0,8(9) /* ELF64_R_TYPE(reloc->r_info) */ +.Lrels: ld r0,8(r9) /* ELF64_R_TYPE(reloc->r_info) */ cmpdi r0,R_PPC64_RELATIVE - bne 6f + bne .Luaddr64 ld r6,0(r9) /* reloc->r_offset */ ld r0,16(r9) /* reloc->r_addend */ + b .Lstore +.Luaddr64: + srdi r14,r0,32 /* ELF64_R_SYM(reloc->r_info) */ + clrldi r0,r0,32 + cmpdi r0,R_PPC64_UADDR64 + bne .Lnext + ld r6,0(r9) + ld r0,16(r9) + mulli r14,r14,24 /* 24 == sizeof(elf64_sym) */ + add r14,r14,r13 /* elf64_sym[ELF64_R_SYM] */ + ld r14,8(r14) + add r0,r0,r14 +.Lstore: add r0,r0,r3 stdx r0,r7,r6 - addi r9,r9,24 - bdnz 5b - -6: blr +.Lnext: + add r9,r9,r12 + bdnz .Lrels +.Lout: + blr .balign 8 p_dyn: .8byte __dynamic_start - 0b p_rela: .8byte __rela_dyn_start - 0b +p_sym: .8byte __dynamic_symtab - 0b p_st: .8byte _stext - 0b only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/powerpc/kernel/vmlinux.lds.S +++ linux-intel-iotg-5.15-5.15.0/arch/powerpc/kernel/vmlinux.lds.S @@ -275,9 +275,7 @@ . = ALIGN(8); .dynsym : AT(ADDR(.dynsym) - LOAD_OFFSET) { -#ifdef CONFIG_PPC32 __dynamic_symtab = .; -#endif *(.dynsym) } .dynstr : AT(ADDR(.dynstr) - LOAD_OFFSET) { *(.dynstr) } only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/powerpc/kvm/book3s_32_sr.S +++ linux-intel-iotg-5.15-5.15.0/arch/powerpc/kvm/book3s_32_sr.S @@ -122,11 +122,27 @@ /* 0x0 - 0xb */ - /* 'current->mm' needs to be in r4 */ - tophys(r4, r2) - lwz r4, MM(r4) - tophys(r4, r4) - /* This only clobbers r0, r3, r4 and r5 */ + /* switch_mmu_context() needs paging, let's enable it */ + mfmsr r9 + ori r11, r9, MSR_DR + mtmsr r11 + sync + + /* switch_mmu_context() clobbers r12, rescue it */ + SAVE_GPR(12, r1) + + /* Calling switch_mmu_context(, current->mm, ); */ + lwz r4, MM(r2) bl switch_mmu_context + /* restore r12 */ + REST_GPR(12, r1) + + /* Disable paging again */ + mfmsr r9 + li r6, MSR_DR + andc r9, r9, r6 + mtmsr r9 + sync + .endm only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/powerpc/kvm/book3s_64_vio.c +++ linux-intel-iotg-5.15-5.15.0/arch/powerpc/kvm/book3s_64_vio.c @@ -421,13 +421,19 @@ tbl[idx % TCES_PER_PAGE] = tce; } -static void kvmppc_clear_tce(struct mm_struct *mm, struct iommu_table *tbl, - unsigned long entry) +static void kvmppc_clear_tce(struct mm_struct *mm, struct kvmppc_spapr_tce_table *stt, + struct iommu_table *tbl, unsigned long entry) { - unsigned long hpa = 0; - enum dma_data_direction dir = DMA_NONE; + unsigned long i; + unsigned long subpages = 1ULL << (stt->page_shift - tbl->it_page_shift); + unsigned long io_entry = entry << (stt->page_shift - tbl->it_page_shift); + + for (i = 0; i < subpages; ++i) { + unsigned long hpa = 0; + enum dma_data_direction dir = DMA_NONE; - iommu_tce_xchg_no_kill(mm, tbl, entry, &hpa, &dir); + iommu_tce_xchg_no_kill(mm, tbl, io_entry + i, &hpa, &dir); + } } static long kvmppc_tce_iommu_mapped_dec(struct kvm *kvm, @@ -486,6 +492,8 @@ break; } + iommu_tce_kill(tbl, io_entry, subpages); + return ret; } @@ -545,6 +553,8 @@ break; } + iommu_tce_kill(tbl, io_entry, subpages); + return ret; } @@ -591,10 +601,9 @@ ret = kvmppc_tce_iommu_map(vcpu->kvm, stt, stit->tbl, entry, ua, dir); - iommu_tce_kill(stit->tbl, entry, 1); if (ret != H_SUCCESS) { - kvmppc_clear_tce(vcpu->kvm->mm, stit->tbl, entry); + kvmppc_clear_tce(vcpu->kvm->mm, stt, stit->tbl, entry); goto unlock_exit; } } @@ -670,13 +679,13 @@ */ if (get_user(tce, tces + i)) { ret = H_TOO_HARD; - goto invalidate_exit; + goto unlock_exit; } tce = be64_to_cpu(tce); if (kvmppc_tce_to_ua(vcpu->kvm, tce, &ua)) { ret = H_PARAMETER; - goto invalidate_exit; + goto unlock_exit; } list_for_each_entry_lockless(stit, &stt->iommu_tables, next) { @@ -685,19 +694,15 @@ iommu_tce_direction(tce)); if (ret != H_SUCCESS) { - kvmppc_clear_tce(vcpu->kvm->mm, stit->tbl, - entry); - goto invalidate_exit; + kvmppc_clear_tce(vcpu->kvm->mm, stt, stit->tbl, + entry + i); + goto unlock_exit; } } kvmppc_tce_put(stt, entry + i, tce); } -invalidate_exit: - list_for_each_entry_lockless(stit, &stt->iommu_tables, next) - iommu_tce_kill(stit->tbl, entry, npages); - unlock_exit: srcu_read_unlock(&vcpu->kvm->srcu, idx); @@ -736,20 +741,16 @@ continue; if (ret == H_TOO_HARD) - goto invalidate_exit; + return ret; WARN_ON_ONCE(1); - kvmppc_clear_tce(vcpu->kvm->mm, stit->tbl, entry); + kvmppc_clear_tce(vcpu->kvm->mm, stt, stit->tbl, entry + i); } } for (i = 0; i < npages; ++i, ioba += (1ULL << stt->page_shift)) kvmppc_tce_put(stt, ioba >> stt->page_shift, tce_value); -invalidate_exit: - list_for_each_entry_lockless(stit, &stt->iommu_tables, next) - iommu_tce_kill(stit->tbl, ioba >> stt->page_shift, npages); - return ret; } EXPORT_SYMBOL_GPL(kvmppc_h_stuff_tce); only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/powerpc/kvm/book3s_64_vio_hv.c +++ linux-intel-iotg-5.15-5.15.0/arch/powerpc/kvm/book3s_64_vio_hv.c @@ -247,13 +247,19 @@ tbl->it_ops->tce_kill(tbl, entry, pages, true); } -static void kvmppc_rm_clear_tce(struct kvm *kvm, struct iommu_table *tbl, - unsigned long entry) +static void kvmppc_rm_clear_tce(struct kvm *kvm, struct kvmppc_spapr_tce_table *stt, + struct iommu_table *tbl, unsigned long entry) { - unsigned long hpa = 0; - enum dma_data_direction dir = DMA_NONE; + unsigned long i; + unsigned long subpages = 1ULL << (stt->page_shift - tbl->it_page_shift); + unsigned long io_entry = entry << (stt->page_shift - tbl->it_page_shift); + + for (i = 0; i < subpages; ++i) { + unsigned long hpa = 0; + enum dma_data_direction dir = DMA_NONE; - iommu_tce_xchg_no_kill_rm(kvm->mm, tbl, entry, &hpa, &dir); + iommu_tce_xchg_no_kill_rm(kvm->mm, tbl, io_entry + i, &hpa, &dir); + } } static long kvmppc_rm_tce_iommu_mapped_dec(struct kvm *kvm, @@ -316,6 +322,8 @@ break; } + iommu_tce_kill_rm(tbl, io_entry, subpages); + return ret; } @@ -379,6 +387,8 @@ break; } + iommu_tce_kill_rm(tbl, io_entry, subpages); + return ret; } @@ -420,10 +430,8 @@ ret = kvmppc_rm_tce_iommu_map(vcpu->kvm, stt, stit->tbl, entry, ua, dir); - iommu_tce_kill_rm(stit->tbl, entry, 1); - if (ret != H_SUCCESS) { - kvmppc_rm_clear_tce(vcpu->kvm, stit->tbl, entry); + kvmppc_rm_clear_tce(vcpu->kvm, stt, stit->tbl, entry); return ret; } } @@ -561,7 +569,7 @@ ua = 0; if (kvmppc_rm_tce_to_ua(vcpu->kvm, tce, &ua)) { ret = H_PARAMETER; - goto invalidate_exit; + goto unlock_exit; } list_for_each_entry_lockless(stit, &stt->iommu_tables, next) { @@ -570,19 +578,15 @@ iommu_tce_direction(tce)); if (ret != H_SUCCESS) { - kvmppc_rm_clear_tce(vcpu->kvm, stit->tbl, - entry); - goto invalidate_exit; + kvmppc_rm_clear_tce(vcpu->kvm, stt, stit->tbl, + entry + i); + goto unlock_exit; } } kvmppc_rm_tce_put(stt, entry + i, tce); } -invalidate_exit: - list_for_each_entry_lockless(stit, &stt->iommu_tables, next) - iommu_tce_kill_rm(stit->tbl, entry, npages); - unlock_exit: if (!prereg) arch_spin_unlock(&kvm->mmu_lock.rlock.raw_lock); @@ -620,20 +624,16 @@ continue; if (ret == H_TOO_HARD) - goto invalidate_exit; + return ret; WARN_ON_ONCE_RM(1); - kvmppc_rm_clear_tce(vcpu->kvm, stit->tbl, entry); + kvmppc_rm_clear_tce(vcpu->kvm, stt, stit->tbl, entry + i); } } for (i = 0; i < npages; ++i, ioba += (1ULL << stt->page_shift)) kvmppc_rm_tce_put(stt, ioba >> stt->page_shift, tce_value); -invalidate_exit: - list_for_each_entry_lockless(stit, &stt->iommu_tables, next) - iommu_tce_kill_rm(stit->tbl, ioba >> stt->page_shift, npages); - return ret; } only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/powerpc/kvm/book3s_hv_uvmem.c +++ linux-intel-iotg-5.15-5.15.0/arch/powerpc/kvm/book3s_hv_uvmem.c @@ -360,13 +360,15 @@ static bool kvmppc_next_nontransitioned_gfn(const struct kvm_memory_slot *memslot, struct kvm *kvm, unsigned long *gfn) { - struct kvmppc_uvmem_slot *p; + struct kvmppc_uvmem_slot *p = NULL, *iter; bool ret = false; unsigned long i; - list_for_each_entry(p, &kvm->arch.uvmem_pfns, list) - if (*gfn >= p->base_pfn && *gfn < p->base_pfn + p->nr_pfns) + list_for_each_entry(iter, &kvm->arch.uvmem_pfns, list) + if (*gfn >= iter->base_pfn && *gfn < iter->base_pfn + iter->nr_pfns) { + p = iter; break; + } if (!p) return ret; /* only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/powerpc/perf/Makefile +++ linux-intel-iotg-5.15-5.15.0/arch/powerpc/perf/Makefile @@ -3,11 +3,11 @@ obj-y += callchain.o callchain_$(BITS).o perf_regs.o obj-$(CONFIG_COMPAT) += callchain_32.o -obj-$(CONFIG_PPC_PERF_CTRS) += core-book3s.o bhrb.o +obj-$(CONFIG_PPC_PERF_CTRS) += core-book3s.o obj64-$(CONFIG_PPC_PERF_CTRS) += ppc970-pmu.o power5-pmu.o \ power5+-pmu.o power6-pmu.o power7-pmu.o \ isa207-common.o power8-pmu.o power9-pmu.o \ - generic-compat-pmu.o power10-pmu.o + generic-compat-pmu.o power10-pmu.o bhrb.o obj32-$(CONFIG_PPC_PERF_CTRS) += mpc7450-pmu.o obj-$(CONFIG_PPC_POWERNV) += imc-pmu.o only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/powerpc/perf/isa207-common.c +++ linux-intel-iotg-5.15-5.15.0/arch/powerpc/perf/isa207-common.c @@ -108,7 +108,7 @@ *mmcra |= MMCRA_SDAR_MODE_TLB; } -static u64 p10_thresh_cmp_val(u64 value) +static int p10_thresh_cmp_val(u64 value) { int exp = 0; u64 result = value; @@ -139,7 +139,7 @@ * exponent is also zero. */ if (!(value & 0xC0) && exp) - result = 0; + result = -1; else result = (exp << 8) | value; } @@ -187,7 +187,7 @@ unsigned int cmp, exp; if (cpu_has_feature(CPU_FTR_ARCH_31)) - return p10_thresh_cmp_val(event) != 0; + return p10_thresh_cmp_val(event) >= 0; /* * Check the mantissa upper two bits are not zero, unless the @@ -456,12 +456,14 @@ value |= CNST_THRESH_CTL_SEL_VAL(event >> EVENT_THRESH_SHIFT); mask |= p10_CNST_THRESH_CMP_MASK; value |= p10_CNST_THRESH_CMP_VAL(p10_thresh_cmp_val(event_config1)); - } + } else if (event_is_threshold(event)) + return -1; } else if (cpu_has_feature(CPU_FTR_ARCH_300)) { if (event_is_threshold(event) && is_thresh_cmp_valid(event)) { mask |= CNST_THRESH_MASK; value |= CNST_THRESH_VAL(event >> EVENT_THRESH_SHIFT); - } + } else if (event_is_threshold(event)) + return -1; } else { /* * Special case for PM_MRK_FAB_RSP_MATCH and PM_MRK_FAB_RSP_MATCH_CYC, only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/powerpc/perf/power9-pmu.c +++ linux-intel-iotg-5.15-5.15.0/arch/powerpc/perf/power9-pmu.c @@ -133,11 +133,11 @@ /* Table of alternatives, sorted by column 0 */ static const unsigned int power9_event_alternatives[][MAX_ALT] = { - { PM_INST_DISP, PM_INST_DISP_ALT }, - { PM_RUN_CYC_ALT, PM_RUN_CYC }, - { PM_RUN_INST_CMPL_ALT, PM_RUN_INST_CMPL }, - { PM_LD_MISS_L1, PM_LD_MISS_L1_ALT }, { PM_BR_2PATH, PM_BR_2PATH_ALT }, + { PM_INST_DISP, PM_INST_DISP_ALT }, + { PM_RUN_CYC_ALT, PM_RUN_CYC }, + { PM_LD_MISS_L1, PM_LD_MISS_L1_ALT }, + { PM_RUN_INST_CMPL_ALT, PM_RUN_INST_CMPL }, }; static int power9_get_alternatives(u64 event, unsigned int flags, u64 alt[]) only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/powerpc/platforms/4xx/cpm.c +++ linux-intel-iotg-5.15-5.15.0/arch/powerpc/platforms/4xx/cpm.c @@ -327,6 +327,6 @@ static int __init cpm_powersave_off(char *arg) { cpm.powersave_off = 1; - return 0; + return 1; } __setup("powersave=off", cpm_powersave_off); only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/powerpc/platforms/8xx/cpm1.c +++ linux-intel-iotg-5.15-5.15.0/arch/powerpc/platforms/8xx/cpm1.c @@ -280,6 +280,7 @@ out_be32(bp, (((BRG_UART_CLK_DIV16 / rate) - 1) << 1) | CPM_BRG_EN | CPM_BRG_DIV16); } +EXPORT_SYMBOL(cpm_setbrg); struct cpm_ioport16 { __be16 dir, par, odr_sor, dat, intr; only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/powerpc/platforms/powernv/opal-fadump.c +++ linux-intel-iotg-5.15-5.15.0/arch/powerpc/platforms/powernv/opal-fadump.c @@ -60,7 +60,7 @@ addr = be64_to_cpu(addr); pr_debug("Kernel metadata addr: %llx\n", addr); opal_fdm_active = (void *)addr; - if (opal_fdm_active->registered_regions == 0) + if (be16_to_cpu(opal_fdm_active->registered_regions) == 0) return; ret = opal_mpipl_query_tag(OPAL_MPIPL_TAG_BOOT_MEM, &addr); @@ -95,17 +95,17 @@ static void opal_fadump_update_config(struct fw_dump *fadump_conf, const struct opal_fadump_mem_struct *fdm) { - pr_debug("Boot memory regions count: %d\n", fdm->region_cnt); + pr_debug("Boot memory regions count: %d\n", be16_to_cpu(fdm->region_cnt)); /* * The destination address of the first boot memory region is the * destination address of boot memory regions. */ - fadump_conf->boot_mem_dest_addr = fdm->rgn[0].dest; + fadump_conf->boot_mem_dest_addr = be64_to_cpu(fdm->rgn[0].dest); pr_debug("Destination address of boot memory regions: %#016llx\n", fadump_conf->boot_mem_dest_addr); - fadump_conf->fadumphdr_addr = fdm->fadumphdr_addr; + fadump_conf->fadumphdr_addr = be64_to_cpu(fdm->fadumphdr_addr); } /* @@ -126,9 +126,9 @@ fadump_conf->boot_memory_size = 0; pr_debug("Boot memory regions:\n"); - for (i = 0; i < fdm->region_cnt; i++) { - base = fdm->rgn[i].src; - size = fdm->rgn[i].size; + for (i = 0; i < be16_to_cpu(fdm->region_cnt); i++) { + base = be64_to_cpu(fdm->rgn[i].src); + size = be64_to_cpu(fdm->rgn[i].size); pr_debug("\t[%03d] base: 0x%lx, size: 0x%lx\n", i, base, size); fadump_conf->boot_mem_addr[i] = base; @@ -143,7 +143,7 @@ * Start address of reserve dump area (permanent reservation) for * re-registering FADump after dump capture. */ - fadump_conf->reserve_dump_area_start = fdm->rgn[0].dest; + fadump_conf->reserve_dump_area_start = be64_to_cpu(fdm->rgn[0].dest); /* * Rarely, but it can so happen that system crashes before all @@ -155,13 +155,14 @@ * Hope the memory that could not be preserved only has pages * that are usually filtered out while saving the vmcore. */ - if (fdm->region_cnt > fdm->registered_regions) { + if (be16_to_cpu(fdm->region_cnt) > be16_to_cpu(fdm->registered_regions)) { pr_warn("Not all memory regions were saved!!!\n"); pr_warn(" Unsaved memory regions:\n"); - i = fdm->registered_regions; - while (i < fdm->region_cnt) { + i = be16_to_cpu(fdm->registered_regions); + while (i < be16_to_cpu(fdm->region_cnt)) { pr_warn("\t[%03d] base: 0x%llx, size: 0x%llx\n", - i, fdm->rgn[i].src, fdm->rgn[i].size); + i, be64_to_cpu(fdm->rgn[i].src), + be64_to_cpu(fdm->rgn[i].size)); i++; } @@ -170,7 +171,7 @@ } fadump_conf->boot_mem_top = (fadump_conf->boot_memory_size + hole_size); - fadump_conf->boot_mem_regs_cnt = fdm->region_cnt; + fadump_conf->boot_mem_regs_cnt = be16_to_cpu(fdm->region_cnt); opal_fadump_update_config(fadump_conf, fdm); } @@ -178,35 +179,38 @@ static void opal_fadump_init_metadata(struct opal_fadump_mem_struct *fdm) { fdm->version = OPAL_FADUMP_VERSION; - fdm->region_cnt = 0; - fdm->registered_regions = 0; - fdm->fadumphdr_addr = 0; + fdm->region_cnt = cpu_to_be16(0); + fdm->registered_regions = cpu_to_be16(0); + fdm->fadumphdr_addr = cpu_to_be64(0); } static u64 opal_fadump_init_mem_struct(struct fw_dump *fadump_conf) { u64 addr = fadump_conf->reserve_dump_area_start; + u16 reg_cnt; int i; opal_fdm = __va(fadump_conf->kernel_metadata); opal_fadump_init_metadata(opal_fdm); /* Boot memory regions */ + reg_cnt = be16_to_cpu(opal_fdm->region_cnt); for (i = 0; i < fadump_conf->boot_mem_regs_cnt; i++) { - opal_fdm->rgn[i].src = fadump_conf->boot_mem_addr[i]; - opal_fdm->rgn[i].dest = addr; - opal_fdm->rgn[i].size = fadump_conf->boot_mem_sz[i]; + opal_fdm->rgn[i].src = cpu_to_be64(fadump_conf->boot_mem_addr[i]); + opal_fdm->rgn[i].dest = cpu_to_be64(addr); + opal_fdm->rgn[i].size = cpu_to_be64(fadump_conf->boot_mem_sz[i]); - opal_fdm->region_cnt++; + reg_cnt++; addr += fadump_conf->boot_mem_sz[i]; } + opal_fdm->region_cnt = cpu_to_be16(reg_cnt); /* * Kernel metadata is passed to f/w and retrieved in capture kerenl. * So, use it to save fadump header address instead of calculating it. */ - opal_fdm->fadumphdr_addr = (opal_fdm->rgn[0].dest + - fadump_conf->boot_memory_size); + opal_fdm->fadumphdr_addr = cpu_to_be64(be64_to_cpu(opal_fdm->rgn[0].dest) + + fadump_conf->boot_memory_size); opal_fadump_update_config(fadump_conf, opal_fdm); @@ -269,18 +273,21 @@ static int opal_fadump_register(struct fw_dump *fadump_conf) { s64 rc = OPAL_PARAMETER; + u16 registered_regs; int i, err = -EIO; - for (i = 0; i < opal_fdm->region_cnt; i++) { + registered_regs = be16_to_cpu(opal_fdm->registered_regions); + for (i = 0; i < be16_to_cpu(opal_fdm->region_cnt); i++) { rc = opal_mpipl_update(OPAL_MPIPL_ADD_RANGE, - opal_fdm->rgn[i].src, - opal_fdm->rgn[i].dest, - opal_fdm->rgn[i].size); + be64_to_cpu(opal_fdm->rgn[i].src), + be64_to_cpu(opal_fdm->rgn[i].dest), + be64_to_cpu(opal_fdm->rgn[i].size)); if (rc != OPAL_SUCCESS) break; - opal_fdm->registered_regions++; + registered_regs++; } + opal_fdm->registered_regions = cpu_to_be16(registered_regs); switch (rc) { case OPAL_SUCCESS: @@ -291,7 +298,8 @@ case OPAL_RESOURCE: /* If MAX regions limit in f/w is hit, warn and proceed. */ pr_warn("%d regions could not be registered for MPIPL as MAX limit is reached!\n", - (opal_fdm->region_cnt - opal_fdm->registered_regions)); + (be16_to_cpu(opal_fdm->region_cnt) - + be16_to_cpu(opal_fdm->registered_regions))); fadump_conf->dump_registered = 1; err = 0; break; @@ -312,7 +320,7 @@ * If some regions were registered before OPAL_MPIPL_ADD_RANGE * OPAL call failed, unregister all regions. */ - if ((err < 0) && (opal_fdm->registered_regions > 0)) + if ((err < 0) && (be16_to_cpu(opal_fdm->registered_regions) > 0)) opal_fadump_unregister(fadump_conf); return err; @@ -328,7 +336,7 @@ return -EIO; } - opal_fdm->registered_regions = 0; + opal_fdm->registered_regions = cpu_to_be16(0); fadump_conf->dump_registered = 0; return 0; } @@ -563,19 +571,20 @@ else fdm_ptr = opal_fdm; - for (i = 0; i < fdm_ptr->region_cnt; i++) { + for (i = 0; i < be16_to_cpu(fdm_ptr->region_cnt); i++) { /* * Only regions that are registered for MPIPL * would have dump data. */ if ((fadump_conf->dump_active) && - (i < fdm_ptr->registered_regions)) - dumped_bytes = fdm_ptr->rgn[i].size; + (i < be16_to_cpu(fdm_ptr->registered_regions))) + dumped_bytes = be64_to_cpu(fdm_ptr->rgn[i].size); seq_printf(m, "DUMP: Src: %#016llx, Dest: %#016llx, ", - fdm_ptr->rgn[i].src, fdm_ptr->rgn[i].dest); + be64_to_cpu(fdm_ptr->rgn[i].src), + be64_to_cpu(fdm_ptr->rgn[i].dest)); seq_printf(m, "Size: %#llx, Dumped: %#llx bytes\n", - fdm_ptr->rgn[i].size, dumped_bytes); + be64_to_cpu(fdm_ptr->rgn[i].size), dumped_bytes); } /* Dump is active. Show reserved area start address. */ @@ -624,6 +633,7 @@ { const __be32 *prop; unsigned long dn; + __be64 be_addr; u64 addr = 0; int i, len; s64 ret; @@ -680,13 +690,13 @@ if (!prop) return; - ret = opal_mpipl_query_tag(OPAL_MPIPL_TAG_KERNEL, &addr); - if ((ret != OPAL_SUCCESS) || !addr) { + ret = opal_mpipl_query_tag(OPAL_MPIPL_TAG_KERNEL, &be_addr); + if ((ret != OPAL_SUCCESS) || !be_addr) { pr_err("Failed to get Kernel metadata (%lld)\n", ret); return; } - addr = be64_to_cpu(addr); + addr = be64_to_cpu(be_addr); pr_debug("Kernel metadata addr: %llx\n", addr); opal_fdm_active = __va(addr); @@ -697,14 +707,14 @@ } /* Kernel regions not registered with f/w for MPIPL */ - if (opal_fdm_active->registered_regions == 0) { + if (be16_to_cpu(opal_fdm_active->registered_regions) == 0) { opal_fdm_active = NULL; return; } - ret = opal_mpipl_query_tag(OPAL_MPIPL_TAG_CPU, &addr); - if (addr) { - addr = be64_to_cpu(addr); + ret = opal_mpipl_query_tag(OPAL_MPIPL_TAG_CPU, &be_addr); + if (be_addr) { + addr = be64_to_cpu(be_addr); pr_debug("CPU metadata addr: %llx\n", addr); opal_cpu_metadata = __va(addr); } only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/powerpc/platforms/powernv/opal-fadump.h +++ linux-intel-iotg-5.15-5.15.0/arch/powerpc/platforms/powernv/opal-fadump.h @@ -31,14 +31,14 @@ * OPAL FADump kernel metadata * * The address of this structure will be registered with f/w for retrieving - * and processing during crash dump. + * in the capture kernel to process the crash dump. */ struct opal_fadump_mem_struct { u8 version; u8 reserved[3]; - u16 region_cnt; /* number of regions */ - u16 registered_regions; /* Regions registered for MPIPL */ - u64 fadumphdr_addr; + __be16 region_cnt; /* number of regions */ + __be16 registered_regions; /* Regions registered for MPIPL */ + __be64 fadumphdr_addr; struct opal_mpipl_region rgn[FADUMP_MAX_MEM_REGS]; } __packed; @@ -135,7 +135,7 @@ for (i = 0; i < regs_cnt; i++, bufp += reg_entry_size) { reg_entry = (struct hdat_fadump_reg_entry *)bufp; val = (cpu_endian ? be64_to_cpu(reg_entry->reg_val) : - reg_entry->reg_val); + (u64)(reg_entry->reg_val)); opal_fadump_set_regval_regnum(regs, be32_to_cpu(reg_entry->reg_type), be32_to_cpu(reg_entry->reg_num), only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/powerpc/platforms/powernv/ultravisor.c +++ linux-intel-iotg-5.15-5.15.0/arch/powerpc/platforms/powernv/ultravisor.c @@ -55,6 +55,7 @@ return -ENODEV; uv_memcons = memcons_init(node, "memcons"); + of_node_put(node); if (!uv_memcons) return -ENOENT; only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/powerpc/platforms/powernv/vas-fault.c +++ linux-intel-iotg-5.15-5.15.0/arch/powerpc/platforms/powernv/vas-fault.c @@ -216,7 +216,7 @@ vas_init_rx_win_attr(&attr, VAS_COP_TYPE_FAULT); attr.rx_fifo_size = vinst->fault_fifo_size; - attr.rx_fifo = vinst->fault_fifo; + attr.rx_fifo = __pa(vinst->fault_fifo); /* * Max creds is based on number of CRBs can fit in the FIFO. only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/powerpc/platforms/powernv/vas-window.c +++ linux-intel-iotg-5.15-5.15.0/arch/powerpc/platforms/powernv/vas-window.c @@ -404,7 +404,7 @@ * * See also: Design note in function header. */ - val = __pa(winctx->rx_fifo); + val = winctx->rx_fifo; val = SET_FIELD(VAS_PAGE_MIGRATION_SELECT, val, 0); write_hvwc_reg(window, VREG(LFIFO_BAR), val); @@ -739,7 +739,7 @@ */ winctx->fifo_disable = true; winctx->intr_disable = true; - winctx->rx_fifo = NULL; + winctx->rx_fifo = 0; } winctx->lnotify_lpid = rxattr->lnotify_lpid; only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/powerpc/platforms/powernv/vas.h +++ linux-intel-iotg-5.15-5.15.0/arch/powerpc/platforms/powernv/vas.h @@ -376,7 +376,7 @@ * is a container for the register fields in the window context. */ struct vas_winctx { - void *rx_fifo; + u64 rx_fifo; int rx_fifo_size; int wcreds_max; int rsvd_txbuf_count; only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/powerpc/sysdev/dart_iommu.c +++ linux-intel-iotg-5.15-5.15.0/arch/powerpc/sysdev/dart_iommu.c @@ -404,9 +404,10 @@ } /* Initialize the DART HW */ - if (dart_init(dn) != 0) + if (dart_init(dn) != 0) { + of_node_put(dn); return; - + } /* * U4 supports a DART bypass, we use it for 64-bit capable devices to * improve performance. However, that only works for devices connected @@ -419,6 +420,7 @@ /* Setup pci_dma ops */ set_pci_dma_ops(&dma_iommu_ops); + of_node_put(dn); } #ifdef CONFIG_PM only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/powerpc/sysdev/fsl_rio.c +++ linux-intel-iotg-5.15-5.15.0/arch/powerpc/sysdev/fsl_rio.c @@ -505,8 +505,10 @@ if (rc) { dev_err(&dev->dev, "Can't get %pOF property 'reg'\n", rmu_node); + of_node_put(rmu_node); goto err_rmu; } + of_node_put(rmu_node); rmu_regs_win = ioremap(rmu_regs.start, resource_size(&rmu_regs)); if (!rmu_regs_win) { dev_err(&dev->dev, "Unable to map rmu register window\n"); only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/powerpc/sysdev/xics/icp-opal.c +++ linux-intel-iotg-5.15-5.15.0/arch/powerpc/sysdev/xics/icp-opal.c @@ -196,6 +196,7 @@ printk("XICS: Using OPAL ICP fallbacks\n"); + of_node_put(np); return 0; } only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/powerpc/tools/relocs_check.sh +++ linux-intel-iotg-5.15-5.15.0/arch/powerpc/tools/relocs_check.sh @@ -39,6 +39,7 @@ # R_PPC_NONE grep -F -w -v 'R_PPC64_RELATIVE R_PPC64_NONE +R_PPC64_UADDR64 R_PPC_ADDR16_LO R_PPC_ADDR16_HI R_PPC_ADDR16_HA @@ -54,9 +55,3 @@ num_bad=$(echo "$bad_relocs" | wc -l) echo "WARNING: $num_bad bad relocations" echo "$bad_relocs" - -# If we see this type of relocation it's an idication that -# we /may/ be using an old version of binutils. -if echo "$bad_relocs" | grep -q -F -w R_PPC64_UADDR64; then - echo "WARNING: You need at least binutils >= 2.19 to build a CONFIG_RELOCATABLE kernel" -fi only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/riscv/boot/dts/sifive/fu540-c000.dtsi +++ linux-intel-iotg-5.15-5.15.0/arch/riscv/boot/dts/sifive/fu540-c000.dtsi @@ -166,7 +166,7 @@ clocks = <&prci PRCI_CLK_TLCLK>; status = "disabled"; }; - dma: dma@3000000 { + dma: dma-controller@3000000 { compatible = "sifive,fu540-c000-pdma"; reg = <0x0 0x3000000 0x0 0x8000>; interrupt-parent = <&plic0>; only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/riscv/include/asm/alternative-macros.h +++ linux-intel-iotg-5.15-5.15.0/arch/riscv/include/asm/alternative-macros.h @@ -23,9 +23,9 @@ 888 : \new_c 889 : - .previous .org . - (889b - 888b) + (887b - 886b) .org . - (887b - 886b) + (889b - 888b) + .previous .endif .endm @@ -60,9 +60,9 @@ "888 :\n" \ new_c "\n" \ "889 :\n" \ - ".previous\n" \ ".org . - (887b - 886b) + (889b - 888b)\n" \ ".org . - (889b - 888b) + (887b - 886b)\n" \ + ".previous\n" \ ".endif\n" #define __ALTERNATIVE_CFG(old_c, new_c, vendor_id, errata_id, enable) \ only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/riscv/include/asm/irq_work.h +++ linux-intel-iotg-5.15-5.15.0/arch/riscv/include/asm/irq_work.h @@ -4,7 +4,7 @@ static inline bool arch_irq_work_has_interrupt(void) { - return true; + return IS_ENABLED(CONFIG_SMP); } extern void arch_irq_work_raise(void); #endif /* _ASM_RISCV_IRQ_WORK_H */ only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/riscv/include/asm/timex.h +++ linux-intel-iotg-5.15-5.15.0/arch/riscv/include/asm/timex.h @@ -41,7 +41,7 @@ static inline unsigned long random_get_entropy(void) { if (unlikely(clint_time_val == NULL)) - return 0; + return random_get_entropy_fallback(); return get_cycles(); } #define random_get_entropy() random_get_entropy() only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/riscv/include/asm/unistd.h +++ linux-intel-iotg-5.15-5.15.0/arch/riscv/include/asm/unistd.h @@ -9,7 +9,6 @@ */ #define __ARCH_WANT_SYS_CLONE -#define __ARCH_WANT_MEMFD_SECRET #include only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/riscv/include/uapi/asm/unistd.h +++ linux-intel-iotg-5.15-5.15.0/arch/riscv/include/uapi/asm/unistd.h @@ -21,6 +21,7 @@ #endif /* __LP64__ */ #define __ARCH_WANT_SYS_CLONE3 +#define __ARCH_WANT_MEMFD_SECRET #include only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/riscv/kernel/head.S +++ linux-intel-iotg-5.15-5.15.0/arch/riscv/kernel/head.S @@ -301,6 +301,7 @@ REG_S a0, (a2) /* Initialize page tables and relocate to virtual addresses */ + la tp, init_task la sp, init_thread_union + THREAD_SIZE XIP_FIXUP_OFFSET sp #ifdef CONFIG_BUILTIN_DTB only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/riscv/kernel/patch.c +++ linux-intel-iotg-5.15-5.15.0/arch/riscv/kernel/patch.c @@ -104,7 +104,7 @@ struct patch_insn *patch = data; int ret = 0; - if (atomic_inc_return(&patch->cpu_count) == 1) { + if (atomic_inc_return(&patch->cpu_count) == num_online_cpus()) { ret = patch_text_nosync(patch->addr, &patch->insn, GET_INSN_LENGTH(patch->insn)); only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/s390/include/asm/cio.h +++ linux-intel-iotg-5.15-5.15.0/arch/s390/include/asm/cio.h @@ -369,7 +369,7 @@ struct gen_pool *cio_gp_dma_create(struct device *dma_dev, int nr_pages); /* Function from drivers/s390/cio/chsc.c */ -int chsc_sstpc(void *page, unsigned int op, u16 ctrl, u64 *clock_delta); +int chsc_sstpc(void *page, unsigned int op, u16 ctrl, long *clock_delta); int chsc_sstpi(void *page, void *result, size_t size); int chsc_stzi(void *page, void *result, size_t size); int chsc_sgib(u32 origin); only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/s390/include/asm/preempt.h +++ linux-intel-iotg-5.15-5.15.0/arch/s390/include/asm/preempt.h @@ -46,10 +46,17 @@ static inline void __preempt_count_add(int val) { - if (__builtin_constant_p(val) && (val >= -128) && (val <= 127)) - __atomic_add_const(val, &S390_lowcore.preempt_count); - else - __atomic_add(val, &S390_lowcore.preempt_count); + /* + * With some obscure config options and CONFIG_PROFILE_ALL_BRANCHES + * enabled, gcc 12 fails to handle __builtin_constant_p(). + */ + if (!IS_ENABLED(CONFIG_PROFILE_ALL_BRANCHES)) { + if (__builtin_constant_p(val) && (val >= -128) && (val <= 127)) { + __atomic_add_const(val, &S390_lowcore.preempt_count); + return; + } + } + __atomic_add(val, &S390_lowcore.preempt_count); } static inline void __preempt_count_sub(int val) only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/s390/include/asm/timex.h +++ linux-intel-iotg-5.15-5.15.0/arch/s390/include/asm/timex.h @@ -201,6 +201,7 @@ { return (cycles_t) get_tod_clock() >> 2; } +#define get_cycles get_cycles int get_phys_clock(unsigned long *clock); void init_cpu_timer(void); only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/s390/include/uapi/asm/uvdevice.h +++ linux-intel-iotg-5.15-5.15.0/arch/s390/include/uapi/asm/uvdevice.h @@ -0,0 +1,51 @@ +/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */ +/* + * Copyright IBM Corp. 2022 + * Author(s): Steffen Eiden + */ +#ifndef __S390_ASM_UVDEVICE_H +#define __S390_ASM_UVDEVICE_H + +#include + +struct uvio_ioctl_cb { + __u32 flags; + __u16 uv_rc; /* UV header rc value */ + __u16 uv_rrc; /* UV header rrc value */ + __u64 argument_addr; /* Userspace address of uvio argument */ + __u32 argument_len; + __u8 reserved14[0x40 - 0x14]; /* must be zero */ +}; + +#define UVIO_ATT_USER_DATA_LEN 0x100 +#define UVIO_ATT_UID_LEN 0x10 +struct uvio_attest { + __u64 arcb_addr; /* 0x0000 */ + __u64 meas_addr; /* 0x0008 */ + __u64 add_data_addr; /* 0x0010 */ + __u8 user_data[UVIO_ATT_USER_DATA_LEN]; /* 0x0018 */ + __u8 config_uid[UVIO_ATT_UID_LEN]; /* 0x0118 */ + __u32 arcb_len; /* 0x0128 */ + __u32 meas_len; /* 0x012c */ + __u32 add_data_len; /* 0x0130 */ + __u16 user_data_len; /* 0x0134 */ + __u16 reserved136; /* 0x0136 */ +}; + +/* + * The following max values define an upper length for the IOCTL in/out buffers. + * However, they do not represent the maximum the Ultravisor allows which is + * often way smaller. By allowing larger buffer sizes we hopefully do not need + * to update the code with every machine update. It is therefore possible for + * userspace to request more memory than actually used by kernel/UV. + */ +#define UVIO_ATT_ARCB_MAX_LEN 0x100000 +#define UVIO_ATT_MEASUREMENT_MAX_LEN 0x8000 +#define UVIO_ATT_ADDITIONAL_MAX_LEN 0x8000 + +#define UVIO_DEVICE_NAME "uv" +#define UVIO_TYPE_UVC 'u' + +#define UVIO_IOCTL_ATT _IOWR(UVIO_TYPE_UVC, 0x01, struct uvio_ioctl_cb) + +#endif /* __S390_ASM_UVDEVICE_H */ only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/s390/kernel/perf_event.c +++ linux-intel-iotg-5.15-5.15.0/arch/s390/kernel/perf_event.c @@ -30,7 +30,7 @@ if (!stack) return NULL; - return (struct kvm_s390_sie_block *) stack->empty1[0]; + return (struct kvm_s390_sie_block *)stack->empty1[1]; } static bool is_in_guest(struct pt_regs *regs) only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/s390/kernel/time.c +++ linux-intel-iotg-5.15-5.15.0/arch/s390/kernel/time.c @@ -364,7 +364,7 @@ * Apply clock delta to the global data structures. * This is called once on the CPU that performed the clock sync. */ -static void clock_sync_global(unsigned long delta) +static void clock_sync_global(long delta) { unsigned long now, adj; struct ptff_qto qto; @@ -400,7 +400,7 @@ * Apply clock delta to the per-CPU data structures of this CPU. * This is called for each online CPU after the call to clock_sync_global. */ -static void clock_sync_local(unsigned long delta) +static void clock_sync_local(long delta) { /* Add the delta to the clock comparator. */ if (S390_lowcore.clock_comparator != clock_comparator_max) { @@ -424,7 +424,7 @@ struct clock_sync_data { atomic_t cpus; int in_sync; - unsigned long clock_delta; + long clock_delta; }; /* @@ -544,7 +544,7 @@ static int stp_sync_clock(void *data) { struct clock_sync_data *sync = data; - u64 clock_delta, flags; + long clock_delta, flags; static int first; int rc; only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/s390/pci/pci_bus.h +++ linux-intel-iotg-5.15-5.15.0/arch/s390/pci/pci_bus.h @@ -19,7 +19,8 @@ void zpci_release_device(struct kref *kref); static inline void zpci_zdev_put(struct zpci_dev *zdev) { - kref_put(&zdev->kref, zpci_release_device); + if (zdev) + kref_put(&zdev->kref, zpci_release_device); } static inline void zpci_zdev_get(struct zpci_dev *zdev) only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/s390/pci/pci_clp.c +++ linux-intel-iotg-5.15-5.15.0/arch/s390/pci/pci_clp.c @@ -22,6 +22,8 @@ #include #include +#include "pci_bus.h" + bool zpci_unique_uid; void update_uid_checking(bool new) @@ -403,8 +405,11 @@ return; zdev = get_zdev_by_fid(entry->fid); - if (!zdev) - zpci_create_device(entry->fid, entry->fh, entry->config_state); + if (zdev) { + zpci_zdev_put(zdev); + return; + } + zpci_create_device(entry->fid, entry->fh, entry->config_state); } int clp_scan_pci_devices(void) only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/sparc/include/asm/timex_32.h +++ linux-intel-iotg-5.15-5.15.0/arch/sparc/include/asm/timex_32.h @@ -9,8 +9,6 @@ #define CLOCK_TICK_RATE 1193180 /* Underlying HZ */ -/* XXX Maybe do something better at some point... -DaveM */ -typedef unsigned long cycles_t; -#define get_cycles() (0) +#include #endif only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/sparc/kernel/signal32.c +++ linux-intel-iotg-5.15-5.15.0/arch/sparc/kernel/signal32.c @@ -780,5 +780,6 @@ static_assert(offsetof(compat_siginfo_t, si_pkey) == 0x14); static_assert(offsetof(compat_siginfo_t, si_perf_data) == 0x10); static_assert(offsetof(compat_siginfo_t, si_perf_type) == 0x14); +static_assert(offsetof(compat_siginfo_t, si_perf_flags) == 0x18); static_assert(offsetof(compat_siginfo_t, si_band) == 0x0c); static_assert(offsetof(compat_siginfo_t, si_fd) == 0x10); only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/sparc/kernel/signal_64.c +++ linux-intel-iotg-5.15-5.15.0/arch/sparc/kernel/signal_64.c @@ -590,5 +590,6 @@ static_assert(offsetof(siginfo_t, si_pkey) == 0x20); static_assert(offsetof(siginfo_t, si_perf_data) == 0x18); static_assert(offsetof(siginfo_t, si_perf_type) == 0x20); +static_assert(offsetof(siginfo_t, si_perf_flags) == 0x24); static_assert(offsetof(siginfo_t, si_band) == 0x10); static_assert(offsetof(siginfo_t, si_fd) == 0x14); only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/um/drivers/chan_user.c +++ linux-intel-iotg-5.15-5.15.0/arch/um/drivers/chan_user.c @@ -220,7 +220,7 @@ unsigned long *stack_out) { struct winch_data data; - int fds[2], n, err; + int fds[2], n, err, pid; char c; err = os_pipe(fds, 1, 1); @@ -238,8 +238,9 @@ * problem with /dev/net/tun, which if held open by this * thread, prevents the TUN/TAP device from being reused. */ - err = run_helper_thread(winch_thread, &data, CLONE_FILES, stack_out); - if (err < 0) { + pid = run_helper_thread(winch_thread, &data, CLONE_FILES, stack_out); + if (pid < 0) { + err = pid; printk(UM_KERN_ERR "fork of winch_thread failed - errno = %d\n", -err); goto out_close; @@ -263,7 +264,7 @@ goto out_close; } - return err; + return pid; out_close: close(fds[1]); only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/um/include/asm/Kbuild +++ linux-intel-iotg-5.15-5.15.0/arch/um/include/asm/Kbuild @@ -4,6 +4,7 @@ generic-y += compat.h generic-y += current.h generic-y += device.h +generic-y += dma-mapping.h generic-y += emergency-restart.h generic-y += exec.h generic-y += extable.h only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/um/include/asm/thread_info.h +++ linux-intel-iotg-5.15-5.15.0/arch/um/include/asm/thread_info.h @@ -64,6 +64,7 @@ #define TIF_RESTORE_SIGMASK 7 #define TIF_NOTIFY_RESUME 8 #define TIF_SECCOMP 9 /* secure computing */ +#define TIF_SINGLESTEP 10 /* single stepping userspace */ #define _TIF_SYSCALL_TRACE (1 << TIF_SYSCALL_TRACE) #define _TIF_SIGPENDING (1 << TIF_SIGPENDING) @@ -72,5 +73,6 @@ #define _TIF_MEMDIE (1 << TIF_MEMDIE) #define _TIF_SYSCALL_AUDIT (1 << TIF_SYSCALL_AUDIT) #define _TIF_SECCOMP (1 << TIF_SECCOMP) +#define _TIF_SINGLESTEP (1 << TIF_SINGLESTEP) #endif only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/um/include/asm/timex.h +++ linux-intel-iotg-5.15-5.15.0/arch/um/include/asm/timex.h @@ -2,13 +2,8 @@ #ifndef __UM_TIMEX_H #define __UM_TIMEX_H -typedef unsigned long cycles_t; - -static inline cycles_t get_cycles (void) -{ - return 0; -} - #define CLOCK_TICK_RATE (HZ) +#include + #endif only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/um/kernel/exec.c +++ linux-intel-iotg-5.15-5.15.0/arch/um/kernel/exec.c @@ -42,7 +42,7 @@ { PT_REGS_IP(regs) = eip; PT_REGS_SP(regs) = esp; - current->ptrace &= ~PT_DTRACE; + clear_thread_flag(TIF_SINGLESTEP); #ifdef SUBARCH_EXECVE1 SUBARCH_EXECVE1(regs->regs); #endif only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/um/kernel/process.c +++ linux-intel-iotg-5.15-5.15.0/arch/um/kernel/process.c @@ -339,7 +339,7 @@ { struct task_struct *task = t ? t : current; - if (!(task->ptrace & PT_DTRACE)) + if (!test_thread_flag(TIF_SINGLESTEP)) return 0; if (task->thread.singlestep_syscall) only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/um/kernel/ptrace.c +++ linux-intel-iotg-5.15-5.15.0/arch/um/kernel/ptrace.c @@ -12,7 +12,7 @@ void user_enable_single_step(struct task_struct *child) { - child->ptrace |= PT_DTRACE; + set_tsk_thread_flag(child, TIF_SINGLESTEP); child->thread.singlestep_syscall = 0; #ifdef SUBARCH_SET_SINGLESTEPPING @@ -22,7 +22,7 @@ void user_disable_single_step(struct task_struct *child) { - child->ptrace &= ~PT_DTRACE; + clear_tsk_thread_flag(child, TIF_SINGLESTEP); child->thread.singlestep_syscall = 0; #ifdef SUBARCH_SET_SINGLESTEPPING @@ -121,7 +121,7 @@ } /* - * XXX Check PT_DTRACE vs TIF_SINGLESTEP for singlestepping check and + * XXX Check TIF_SINGLESTEP for singlestepping check and * PT_PTRACED vs TIF_SYSCALL_TRACE for syscall tracing check */ int syscall_trace_enter(struct pt_regs *regs) @@ -145,7 +145,7 @@ audit_syscall_exit(regs); /* Fake a debug trap */ - if (ptraced & PT_DTRACE) + if (test_thread_flag(TIF_SINGLESTEP)) send_sigtrap(®s->regs, 0); if (!test_thread_flag(TIF_SYSCALL_TRACE)) only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/um/kernel/signal.c +++ linux-intel-iotg-5.15-5.15.0/arch/um/kernel/signal.c @@ -53,7 +53,7 @@ unsigned long sp; int err; - if ((current->ptrace & PT_DTRACE) && (current->ptrace & PT_PTRACED)) + if (test_thread_flag(TIF_SINGLESTEP) && (current->ptrace & PT_PTRACED)) singlestep = 1; /* Did we come from a system call? */ @@ -128,7 +128,7 @@ * on the host. The tracing thread will check this flag and * PTRACE_SYSCALL if necessary. */ - if (current->ptrace & PT_DTRACE) + if (test_thread_flag(TIF_SINGLESTEP)) current->thread.singlestep_syscall = is_syscall(PT_REGS_IP(¤t->thread.regs)); only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/x86/Makefile +++ linux-intel-iotg-5.15-5.15.0/arch/x86/Makefile @@ -24,7 +24,7 @@ # How to compile the 16-bit code. Note we always compile for -march=i386; # that way we can complain to the user if the CPU is insufficient. -REALMODE_CFLAGS := -m16 -g -Os -DDISABLE_BRANCH_PROFILING \ +REALMODE_CFLAGS := -m16 -g -Os -DDISABLE_BRANCH_PROFILING -D__DISABLE_EXPORTS \ -Wall -Wstrict-prototypes -march=i386 -mregparm=3 \ -fno-strict-aliasing -fomit-frame-pointer -fno-pic \ -mno-mmx -mno-sse $(call cc-option,-fcf-protection=none) @@ -179,6 +179,10 @@ endif endif +ifdef CONFIG_SLS + KBUILD_CFLAGS += -mharden-sls=all +endif + KBUILD_LDFLAGS += -m elf_$(UTS_MACHINE) ifdef CONFIG_LTO_CLANG only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/x86/boot/compressed/efi_thunk_64.S +++ linux-intel-iotg-5.15-5.15.0/arch/x86/boot/compressed/efi_thunk_64.S @@ -93,7 +93,7 @@ pop %rbx pop %rbp - ret + RET SYM_FUNC_END(__efi64_thunk) .code32 only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/x86/boot/compressed/head_64.S +++ linux-intel-iotg-5.15-5.15.0/arch/x86/boot/compressed/head_64.S @@ -813,7 +813,7 @@ 2: popl %edi // restore callee-save registers popl %ebx leave - ret + RET SYM_FUNC_END(efi32_pe_entry) .section ".rodata" @@ -868,7 +868,7 @@ pop %ecx pop %ebx - ret + RET SYM_FUNC_END(startup32_set_idt_entry) #endif @@ -884,7 +884,7 @@ movl %eax, rva(boot32_idt_desc+2)(%ebp) lidt rva(boot32_idt_desc)(%ebp) #endif - ret + RET SYM_FUNC_END(startup32_load_idt) /* @@ -954,7 +954,7 @@ popl %ebx popl %eax #endif - ret + RET SYM_FUNC_END(startup32_check_sev_cbit) /* only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/x86/boot/compressed/mem_encrypt.S +++ linux-intel-iotg-5.15-5.15.0/arch/x86/boot/compressed/mem_encrypt.S @@ -58,7 +58,7 @@ #endif /* CONFIG_AMD_MEM_ENCRYPT */ - ret + RET SYM_FUNC_END(get_sev_encryption_bit) /** @@ -92,7 +92,7 @@ /* All good - return success */ xorl %eax, %eax 1: - ret + RET 2: movl $-1, %eax jmp 1b @@ -221,7 +221,7 @@ #endif xor %rax, %rax - ret + RET SYM_FUNC_END(set_sev_encryption_mask) .data only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/x86/crypto/Makefile +++ linux-intel-iotg-5.15-5.15.0/arch/x86/crypto/Makefile @@ -62,7 +62,9 @@ sha512-ssse3-y := sha512-ssse3-asm.o sha512-avx-asm.o sha512-avx2-asm.o sha512_ssse3_glue.o obj-$(CONFIG_CRYPTO_BLAKE2S_X86) += blake2s-x86_64.o -blake2s-x86_64-y := blake2s-core.o blake2s-glue.o +blake2s-x86_64-y := blake2s-shash.o +obj-$(if $(CONFIG_CRYPTO_BLAKE2S_X86),y) += libblake2s-x86_64.o +libblake2s-x86_64-y := blake2s-core.o blake2s-glue.o obj-$(CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL) += ghash-clmulni-intel.o ghash-clmulni-intel-y := ghash-clmulni-intel_asm.o ghash-clmulni-intel_glue.o only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/x86/crypto/aegis128-aesni-asm.S +++ linux-intel-iotg-5.15-5.15.0/arch/x86/crypto/aegis128-aesni-asm.S @@ -122,7 +122,7 @@ pxor T0, MSG .Lld_partial_8: - ret + RET SYM_FUNC_END(__load_partial) /* @@ -180,7 +180,7 @@ mov %r10b, (%r9) .Lst_partial_1: - ret + RET SYM_FUNC_END(__store_partial) /* @@ -225,7 +225,7 @@ movdqu STATE4, 0x40(STATEP) FRAME_END - ret + RET SYM_FUNC_END(crypto_aegis128_aesni_init) /* @@ -337,7 +337,7 @@ movdqu STATE3, 0x30(STATEP) movdqu STATE4, 0x40(STATEP) FRAME_END - ret + RET .Lad_out_1: movdqu STATE4, 0x00(STATEP) @@ -346,7 +346,7 @@ movdqu STATE2, 0x30(STATEP) movdqu STATE3, 0x40(STATEP) FRAME_END - ret + RET .Lad_out_2: movdqu STATE3, 0x00(STATEP) @@ -355,7 +355,7 @@ movdqu STATE1, 0x30(STATEP) movdqu STATE2, 0x40(STATEP) FRAME_END - ret + RET .Lad_out_3: movdqu STATE2, 0x00(STATEP) @@ -364,7 +364,7 @@ movdqu STATE0, 0x30(STATEP) movdqu STATE1, 0x40(STATEP) FRAME_END - ret + RET .Lad_out_4: movdqu STATE1, 0x00(STATEP) @@ -373,11 +373,11 @@ movdqu STATE4, 0x30(STATEP) movdqu STATE0, 0x40(STATEP) FRAME_END - ret + RET .Lad_out: FRAME_END - ret + RET SYM_FUNC_END(crypto_aegis128_aesni_ad) .macro encrypt_block a s0 s1 s2 s3 s4 i @@ -452,7 +452,7 @@ movdqu STATE2, 0x30(STATEP) movdqu STATE3, 0x40(STATEP) FRAME_END - ret + RET .Lenc_out_1: movdqu STATE3, 0x00(STATEP) @@ -461,7 +461,7 @@ movdqu STATE1, 0x30(STATEP) movdqu STATE2, 0x40(STATEP) FRAME_END - ret + RET .Lenc_out_2: movdqu STATE2, 0x00(STATEP) @@ -470,7 +470,7 @@ movdqu STATE0, 0x30(STATEP) movdqu STATE1, 0x40(STATEP) FRAME_END - ret + RET .Lenc_out_3: movdqu STATE1, 0x00(STATEP) @@ -479,7 +479,7 @@ movdqu STATE4, 0x30(STATEP) movdqu STATE0, 0x40(STATEP) FRAME_END - ret + RET .Lenc_out_4: movdqu STATE0, 0x00(STATEP) @@ -488,11 +488,11 @@ movdqu STATE3, 0x30(STATEP) movdqu STATE4, 0x40(STATEP) FRAME_END - ret + RET .Lenc_out: FRAME_END - ret + RET SYM_FUNC_END(crypto_aegis128_aesni_enc) /* @@ -532,7 +532,7 @@ movdqu STATE3, 0x40(STATEP) FRAME_END - ret + RET SYM_FUNC_END(crypto_aegis128_aesni_enc_tail) .macro decrypt_block a s0 s1 s2 s3 s4 i @@ -606,7 +606,7 @@ movdqu STATE2, 0x30(STATEP) movdqu STATE3, 0x40(STATEP) FRAME_END - ret + RET .Ldec_out_1: movdqu STATE3, 0x00(STATEP) @@ -615,7 +615,7 @@ movdqu STATE1, 0x30(STATEP) movdqu STATE2, 0x40(STATEP) FRAME_END - ret + RET .Ldec_out_2: movdqu STATE2, 0x00(STATEP) @@ -624,7 +624,7 @@ movdqu STATE0, 0x30(STATEP) movdqu STATE1, 0x40(STATEP) FRAME_END - ret + RET .Ldec_out_3: movdqu STATE1, 0x00(STATEP) @@ -633,7 +633,7 @@ movdqu STATE4, 0x30(STATEP) movdqu STATE0, 0x40(STATEP) FRAME_END - ret + RET .Ldec_out_4: movdqu STATE0, 0x00(STATEP) @@ -642,11 +642,11 @@ movdqu STATE3, 0x30(STATEP) movdqu STATE4, 0x40(STATEP) FRAME_END - ret + RET .Ldec_out: FRAME_END - ret + RET SYM_FUNC_END(crypto_aegis128_aesni_dec) /* @@ -696,7 +696,7 @@ movdqu STATE3, 0x40(STATEP) FRAME_END - ret + RET SYM_FUNC_END(crypto_aegis128_aesni_dec_tail) /* @@ -743,5 +743,5 @@ movdqu MSG, (%rsi) FRAME_END - ret + RET SYM_FUNC_END(crypto_aegis128_aesni_final) only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/x86/crypto/aes_ctrby8_avx-x86_64.S +++ linux-intel-iotg-5.15-5.15.0/arch/x86/crypto/aes_ctrby8_avx-x86_64.S @@ -525,7 +525,7 @@ /* return updated IV */ vpshufb xbyteswap, xcounter, xcounter vmovdqu xcounter, (p_iv) - ret + RET .endm /* only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/x86/crypto/aesni-intel_asm.S +++ linux-intel-iotg-5.15-5.15.0/arch/x86/crypto/aesni-intel_asm.S @@ -1594,7 +1594,7 @@ GCM_ENC_DEC dec GCM_COMPLETE arg10, arg11 FUNC_RESTORE - ret + RET SYM_FUNC_END(aesni_gcm_dec) @@ -1683,7 +1683,7 @@ GCM_COMPLETE arg10, arg11 FUNC_RESTORE - ret + RET SYM_FUNC_END(aesni_gcm_enc) /***************************************************************************** @@ -1701,7 +1701,7 @@ FUNC_SAVE GCM_INIT %arg3, %arg4,%arg5, %arg6 FUNC_RESTORE - ret + RET SYM_FUNC_END(aesni_gcm_init) /***************************************************************************** @@ -1716,7 +1716,7 @@ FUNC_SAVE GCM_ENC_DEC enc FUNC_RESTORE - ret + RET SYM_FUNC_END(aesni_gcm_enc_update) /***************************************************************************** @@ -1731,7 +1731,7 @@ FUNC_SAVE GCM_ENC_DEC dec FUNC_RESTORE - ret + RET SYM_FUNC_END(aesni_gcm_dec_update) /***************************************************************************** @@ -1746,7 +1746,7 @@ FUNC_SAVE GCM_COMPLETE %arg3 %arg4 FUNC_RESTORE - ret + RET SYM_FUNC_END(aesni_gcm_finalize) #endif @@ -1762,7 +1762,7 @@ pxor %xmm1, %xmm0 movaps %xmm0, (TKEYP) add $0x10, TKEYP - ret + RET SYM_FUNC_END(_key_expansion_256a) SYM_FUNC_END_ALIAS(_key_expansion_128) @@ -1787,7 +1787,7 @@ shufps $0b01001110, %xmm2, %xmm1 movaps %xmm1, 0x10(TKEYP) add $0x20, TKEYP - ret + RET SYM_FUNC_END(_key_expansion_192a) SYM_FUNC_START_LOCAL(_key_expansion_192b) @@ -1806,7 +1806,7 @@ movaps %xmm0, (TKEYP) add $0x10, TKEYP - ret + RET SYM_FUNC_END(_key_expansion_192b) SYM_FUNC_START_LOCAL(_key_expansion_256b) @@ -1818,7 +1818,7 @@ pxor %xmm1, %xmm2 movaps %xmm2, (TKEYP) add $0x10, TKEYP - ret + RET SYM_FUNC_END(_key_expansion_256b) /* @@ -1933,7 +1933,7 @@ popl KEYP #endif FRAME_END - ret + RET SYM_FUNC_END(aesni_set_key) /* @@ -1957,7 +1957,7 @@ popl KEYP #endif FRAME_END - ret + RET SYM_FUNC_END(aesni_enc) /* @@ -2014,7 +2014,7 @@ aesenc KEY, STATE movaps 0x70(TKEYP), KEY aesenclast KEY, STATE - ret + RET SYM_FUNC_END(_aesni_enc1) /* @@ -2122,7 +2122,7 @@ aesenclast KEY, STATE2 aesenclast KEY, STATE3 aesenclast KEY, STATE4 - ret + RET SYM_FUNC_END(_aesni_enc4) /* @@ -2147,7 +2147,7 @@ popl KEYP #endif FRAME_END - ret + RET SYM_FUNC_END(aesni_dec) /* @@ -2204,7 +2204,7 @@ aesdec KEY, STATE movaps 0x70(TKEYP), KEY aesdeclast KEY, STATE - ret + RET SYM_FUNC_END(_aesni_dec1) /* @@ -2312,7 +2312,7 @@ aesdeclast KEY, STATE2 aesdeclast KEY, STATE3 aesdeclast KEY, STATE4 - ret + RET SYM_FUNC_END(_aesni_dec4) /* @@ -2372,7 +2372,7 @@ popl LEN #endif FRAME_END - ret + RET SYM_FUNC_END(aesni_ecb_enc) /* @@ -2433,7 +2433,7 @@ popl LEN #endif FRAME_END - ret + RET SYM_FUNC_END(aesni_ecb_dec) /* @@ -2477,7 +2477,7 @@ popl IVP #endif FRAME_END - ret + RET SYM_FUNC_END(aesni_cbc_enc) /* @@ -2570,7 +2570,7 @@ popl IVP #endif FRAME_END - ret + RET SYM_FUNC_END(aesni_cbc_dec) /* @@ -2627,7 +2627,7 @@ popl IVP #endif FRAME_END - ret + RET SYM_FUNC_END(aesni_cts_cbc_enc) /* @@ -2688,7 +2688,7 @@ popl IVP #endif FRAME_END - ret + RET SYM_FUNC_END(aesni_cts_cbc_dec) .pushsection .rodata @@ -2725,7 +2725,7 @@ mov $1, TCTR_LOW movq TCTR_LOW, INC movq CTR, TCTR_LOW - ret + RET SYM_FUNC_END(_aesni_inc_init) /* @@ -2753,7 +2753,7 @@ .Linc_low: movaps CTR, IV pshufb BSWAP_MASK, IV - ret + RET SYM_FUNC_END(_aesni_inc) /* @@ -2816,7 +2816,7 @@ movups IV, (IVP) .Lctr_enc_just_ret: FRAME_END - ret + RET SYM_FUNC_END(aesni_ctr_enc) #endif @@ -2932,7 +2932,7 @@ popl IVP #endif FRAME_END - ret + RET .Lxts_enc_1x: add $64, LEN @@ -3092,7 +3092,7 @@ popl IVP #endif FRAME_END - ret + RET .Lxts_dec_1x: add $64, LEN only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/x86/crypto/aesni-intel_avx-x86_64.S +++ linux-intel-iotg-5.15-5.15.0/arch/x86/crypto/aesni-intel_avx-x86_64.S @@ -1767,7 +1767,7 @@ FUNC_SAVE INIT GHASH_MUL_AVX, PRECOMPUTE_AVX FUNC_RESTORE - ret + RET SYM_FUNC_END(aesni_gcm_init_avx_gen2) ############################################################################### @@ -1788,15 +1788,15 @@ # must be 192 GCM_ENC_DEC INITIAL_BLOCKS_AVX, GHASH_8_ENCRYPT_8_PARALLEL_AVX, GHASH_LAST_8_AVX, GHASH_MUL_AVX, ENC, 11 FUNC_RESTORE - ret + RET key_128_enc_update: GCM_ENC_DEC INITIAL_BLOCKS_AVX, GHASH_8_ENCRYPT_8_PARALLEL_AVX, GHASH_LAST_8_AVX, GHASH_MUL_AVX, ENC, 9 FUNC_RESTORE - ret + RET key_256_enc_update: GCM_ENC_DEC INITIAL_BLOCKS_AVX, GHASH_8_ENCRYPT_8_PARALLEL_AVX, GHASH_LAST_8_AVX, GHASH_MUL_AVX, ENC, 13 FUNC_RESTORE - ret + RET SYM_FUNC_END(aesni_gcm_enc_update_avx_gen2) ############################################################################### @@ -1817,15 +1817,15 @@ # must be 192 GCM_ENC_DEC INITIAL_BLOCKS_AVX, GHASH_8_ENCRYPT_8_PARALLEL_AVX, GHASH_LAST_8_AVX, GHASH_MUL_AVX, DEC, 11 FUNC_RESTORE - ret + RET key_128_dec_update: GCM_ENC_DEC INITIAL_BLOCKS_AVX, GHASH_8_ENCRYPT_8_PARALLEL_AVX, GHASH_LAST_8_AVX, GHASH_MUL_AVX, DEC, 9 FUNC_RESTORE - ret + RET key_256_dec_update: GCM_ENC_DEC INITIAL_BLOCKS_AVX, GHASH_8_ENCRYPT_8_PARALLEL_AVX, GHASH_LAST_8_AVX, GHASH_MUL_AVX, DEC, 13 FUNC_RESTORE - ret + RET SYM_FUNC_END(aesni_gcm_dec_update_avx_gen2) ############################################################################### @@ -1846,15 +1846,15 @@ # must be 192 GCM_COMPLETE GHASH_MUL_AVX, 11, arg3, arg4 FUNC_RESTORE - ret + RET key_128_finalize: GCM_COMPLETE GHASH_MUL_AVX, 9, arg3, arg4 FUNC_RESTORE - ret + RET key_256_finalize: GCM_COMPLETE GHASH_MUL_AVX, 13, arg3, arg4 FUNC_RESTORE - ret + RET SYM_FUNC_END(aesni_gcm_finalize_avx_gen2) ############################################################################### @@ -2735,7 +2735,7 @@ FUNC_SAVE INIT GHASH_MUL_AVX2, PRECOMPUTE_AVX2 FUNC_RESTORE - ret + RET SYM_FUNC_END(aesni_gcm_init_avx_gen4) ############################################################################### @@ -2756,15 +2756,15 @@ # must be 192 GCM_ENC_DEC INITIAL_BLOCKS_AVX2, GHASH_8_ENCRYPT_8_PARALLEL_AVX2, GHASH_LAST_8_AVX2, GHASH_MUL_AVX2, ENC, 11 FUNC_RESTORE - ret + RET key_128_enc_update4: GCM_ENC_DEC INITIAL_BLOCKS_AVX2, GHASH_8_ENCRYPT_8_PARALLEL_AVX2, GHASH_LAST_8_AVX2, GHASH_MUL_AVX2, ENC, 9 FUNC_RESTORE - ret + RET key_256_enc_update4: GCM_ENC_DEC INITIAL_BLOCKS_AVX2, GHASH_8_ENCRYPT_8_PARALLEL_AVX2, GHASH_LAST_8_AVX2, GHASH_MUL_AVX2, ENC, 13 FUNC_RESTORE - ret + RET SYM_FUNC_END(aesni_gcm_enc_update_avx_gen4) ############################################################################### @@ -2785,15 +2785,15 @@ # must be 192 GCM_ENC_DEC INITIAL_BLOCKS_AVX2, GHASH_8_ENCRYPT_8_PARALLEL_AVX2, GHASH_LAST_8_AVX2, GHASH_MUL_AVX2, DEC, 11 FUNC_RESTORE - ret + RET key_128_dec_update4: GCM_ENC_DEC INITIAL_BLOCKS_AVX2, GHASH_8_ENCRYPT_8_PARALLEL_AVX2, GHASH_LAST_8_AVX2, GHASH_MUL_AVX2, DEC, 9 FUNC_RESTORE - ret + RET key_256_dec_update4: GCM_ENC_DEC INITIAL_BLOCKS_AVX2, GHASH_8_ENCRYPT_8_PARALLEL_AVX2, GHASH_LAST_8_AVX2, GHASH_MUL_AVX2, DEC, 13 FUNC_RESTORE - ret + RET SYM_FUNC_END(aesni_gcm_dec_update_avx_gen4) ############################################################################### @@ -2814,13 +2814,13 @@ # must be 192 GCM_COMPLETE GHASH_MUL_AVX2, 11, arg3, arg4 FUNC_RESTORE - ret + RET key_128_finalize4: GCM_COMPLETE GHASH_MUL_AVX2, 9, arg3, arg4 FUNC_RESTORE - ret + RET key_256_finalize4: GCM_COMPLETE GHASH_MUL_AVX2, 13, arg3, arg4 FUNC_RESTORE - ret + RET SYM_FUNC_END(aesni_gcm_finalize_avx_gen4) only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/x86/crypto/blake2s-core.S +++ linux-intel-iotg-5.15-5.15.0/arch/x86/crypto/blake2s-core.S @@ -171,7 +171,7 @@ movdqu %xmm1,0x10(%rdi) movdqu %xmm14,0x20(%rdi) .Lendofloop: - ret + RET SYM_FUNC_END(blake2s_compress_ssse3) #ifdef CONFIG_AS_AVX512 @@ -251,6 +251,6 @@ vmovdqu %xmm1,0x10(%rdi) vmovdqu %xmm4,0x20(%rdi) vzeroupper - retq + RET SYM_FUNC_END(blake2s_compress_avx512) #endif /* CONFIG_AS_AVX512 */ only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/x86/crypto/blake2s-glue.c +++ linux-intel-iotg-5.15-5.15.0/arch/x86/crypto/blake2s-glue.c @@ -5,7 +5,6 @@ #include #include -#include #include #include @@ -28,9 +27,8 @@ static __ro_after_init DEFINE_STATIC_KEY_FALSE(blake2s_use_ssse3); static __ro_after_init DEFINE_STATIC_KEY_FALSE(blake2s_use_avx512); -void blake2s_compress_arch(struct blake2s_state *state, - const u8 *block, size_t nblocks, - const u32 inc) +void blake2s_compress(struct blake2s_state *state, const u8 *block, + size_t nblocks, const u32 inc) { /* SIMD disables preemption, so relax after processing each page. */ BUILD_BUG_ON(SZ_4K / BLAKE2S_BLOCK_SIZE < 8); @@ -56,49 +54,12 @@ block += blocks * BLAKE2S_BLOCK_SIZE; } while (nblocks); } -EXPORT_SYMBOL(blake2s_compress_arch); - -static int crypto_blake2s_update_x86(struct shash_desc *desc, - const u8 *in, unsigned int inlen) -{ - return crypto_blake2s_update(desc, in, inlen, blake2s_compress_arch); -} - -static int crypto_blake2s_final_x86(struct shash_desc *desc, u8 *out) -{ - return crypto_blake2s_final(desc, out, blake2s_compress_arch); -} - -#define BLAKE2S_ALG(name, driver_name, digest_size) \ - { \ - .base.cra_name = name, \ - .base.cra_driver_name = driver_name, \ - .base.cra_priority = 200, \ - .base.cra_flags = CRYPTO_ALG_OPTIONAL_KEY, \ - .base.cra_blocksize = BLAKE2S_BLOCK_SIZE, \ - .base.cra_ctxsize = sizeof(struct blake2s_tfm_ctx), \ - .base.cra_module = THIS_MODULE, \ - .digestsize = digest_size, \ - .setkey = crypto_blake2s_setkey, \ - .init = crypto_blake2s_init, \ - .update = crypto_blake2s_update_x86, \ - .final = crypto_blake2s_final_x86, \ - .descsize = sizeof(struct blake2s_state), \ - } - -static struct shash_alg blake2s_algs[] = { - BLAKE2S_ALG("blake2s-128", "blake2s-128-x86", BLAKE2S_128_HASH_SIZE), - BLAKE2S_ALG("blake2s-160", "blake2s-160-x86", BLAKE2S_160_HASH_SIZE), - BLAKE2S_ALG("blake2s-224", "blake2s-224-x86", BLAKE2S_224_HASH_SIZE), - BLAKE2S_ALG("blake2s-256", "blake2s-256-x86", BLAKE2S_256_HASH_SIZE), -}; +EXPORT_SYMBOL(blake2s_compress); static int __init blake2s_mod_init(void) { - if (!boot_cpu_has(X86_FEATURE_SSSE3)) - return 0; - - static_branch_enable(&blake2s_use_ssse3); + if (boot_cpu_has(X86_FEATURE_SSSE3)) + static_branch_enable(&blake2s_use_ssse3); if (IS_ENABLED(CONFIG_AS_AVX512) && boot_cpu_has(X86_FEATURE_AVX) && @@ -109,26 +70,9 @@ XFEATURE_MASK_AVX512, NULL)) static_branch_enable(&blake2s_use_avx512); - return IS_REACHABLE(CONFIG_CRYPTO_HASH) ? - crypto_register_shashes(blake2s_algs, - ARRAY_SIZE(blake2s_algs)) : 0; -} - -static void __exit blake2s_mod_exit(void) -{ - if (IS_REACHABLE(CONFIG_CRYPTO_HASH) && boot_cpu_has(X86_FEATURE_SSSE3)) - crypto_unregister_shashes(blake2s_algs, ARRAY_SIZE(blake2s_algs)); + return 0; } module_init(blake2s_mod_init); -module_exit(blake2s_mod_exit); -MODULE_ALIAS_CRYPTO("blake2s-128"); -MODULE_ALIAS_CRYPTO("blake2s-128-x86"); -MODULE_ALIAS_CRYPTO("blake2s-160"); -MODULE_ALIAS_CRYPTO("blake2s-160-x86"); -MODULE_ALIAS_CRYPTO("blake2s-224"); -MODULE_ALIAS_CRYPTO("blake2s-224-x86"); -MODULE_ALIAS_CRYPTO("blake2s-256"); -MODULE_ALIAS_CRYPTO("blake2s-256-x86"); MODULE_LICENSE("GPL v2"); only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/x86/crypto/blake2s-shash.c +++ linux-intel-iotg-5.15-5.15.0/arch/x86/crypto/blake2s-shash.c @@ -0,0 +1,77 @@ +// SPDX-License-Identifier: GPL-2.0 OR MIT +/* + * Copyright (C) 2015-2019 Jason A. Donenfeld . All Rights Reserved. + */ + +#include +#include +#include + +#include +#include +#include +#include + +#include +#include + +static int crypto_blake2s_update_x86(struct shash_desc *desc, + const u8 *in, unsigned int inlen) +{ + return crypto_blake2s_update(desc, in, inlen, false); +} + +static int crypto_blake2s_final_x86(struct shash_desc *desc, u8 *out) +{ + return crypto_blake2s_final(desc, out, false); +} + +#define BLAKE2S_ALG(name, driver_name, digest_size) \ + { \ + .base.cra_name = name, \ + .base.cra_driver_name = driver_name, \ + .base.cra_priority = 200, \ + .base.cra_flags = CRYPTO_ALG_OPTIONAL_KEY, \ + .base.cra_blocksize = BLAKE2S_BLOCK_SIZE, \ + .base.cra_ctxsize = sizeof(struct blake2s_tfm_ctx), \ + .base.cra_module = THIS_MODULE, \ + .digestsize = digest_size, \ + .setkey = crypto_blake2s_setkey, \ + .init = crypto_blake2s_init, \ + .update = crypto_blake2s_update_x86, \ + .final = crypto_blake2s_final_x86, \ + .descsize = sizeof(struct blake2s_state), \ + } + +static struct shash_alg blake2s_algs[] = { + BLAKE2S_ALG("blake2s-128", "blake2s-128-x86", BLAKE2S_128_HASH_SIZE), + BLAKE2S_ALG("blake2s-160", "blake2s-160-x86", BLAKE2S_160_HASH_SIZE), + BLAKE2S_ALG("blake2s-224", "blake2s-224-x86", BLAKE2S_224_HASH_SIZE), + BLAKE2S_ALG("blake2s-256", "blake2s-256-x86", BLAKE2S_256_HASH_SIZE), +}; + +static int __init blake2s_mod_init(void) +{ + if (IS_REACHABLE(CONFIG_CRYPTO_HASH) && boot_cpu_has(X86_FEATURE_SSSE3)) + return crypto_register_shashes(blake2s_algs, ARRAY_SIZE(blake2s_algs)); + return 0; +} + +static void __exit blake2s_mod_exit(void) +{ + if (IS_REACHABLE(CONFIG_CRYPTO_HASH) && boot_cpu_has(X86_FEATURE_SSSE3)) + crypto_unregister_shashes(blake2s_algs, ARRAY_SIZE(blake2s_algs)); +} + +module_init(blake2s_mod_init); +module_exit(blake2s_mod_exit); + +MODULE_ALIAS_CRYPTO("blake2s-128"); +MODULE_ALIAS_CRYPTO("blake2s-128-x86"); +MODULE_ALIAS_CRYPTO("blake2s-160"); +MODULE_ALIAS_CRYPTO("blake2s-160-x86"); +MODULE_ALIAS_CRYPTO("blake2s-224"); +MODULE_ALIAS_CRYPTO("blake2s-224-x86"); +MODULE_ALIAS_CRYPTO("blake2s-256"); +MODULE_ALIAS_CRYPTO("blake2s-256-x86"); +MODULE_LICENSE("GPL v2"); only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/x86/crypto/blowfish-x86_64-asm_64.S +++ linux-intel-iotg-5.15-5.15.0/arch/x86/crypto/blowfish-x86_64-asm_64.S @@ -135,10 +135,10 @@ jnz .L__enc_xor; write_block(); - ret; + RET; .L__enc_xor: xor_block(); - ret; + RET; SYM_FUNC_END(__blowfish_enc_blk) SYM_FUNC_START(blowfish_dec_blk) @@ -170,7 +170,7 @@ movq %r11, %r12; - ret; + RET; SYM_FUNC_END(blowfish_dec_blk) /********************************************************************** @@ -322,14 +322,14 @@ popq %rbx; popq %r12; - ret; + RET; .L__enc_xor4: xor_block4(); popq %rbx; popq %r12; - ret; + RET; SYM_FUNC_END(__blowfish_enc_blk_4way) SYM_FUNC_START(blowfish_dec_blk_4way) @@ -364,5 +364,5 @@ popq %rbx; popq %r12; - ret; + RET; SYM_FUNC_END(blowfish_dec_blk_4way) only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/x86/crypto/camellia-aesni-avx-asm_64.S +++ linux-intel-iotg-5.15-5.15.0/arch/x86/crypto/camellia-aesni-avx-asm_64.S @@ -192,7 +192,7 @@ roundsm16(%xmm0, %xmm1, %xmm2, %xmm3, %xmm4, %xmm5, %xmm6, %xmm7, %xmm8, %xmm9, %xmm10, %xmm11, %xmm12, %xmm13, %xmm14, %xmm15, %rcx, (%r9)); - ret; + RET; SYM_FUNC_END(roundsm16_x0_x1_x2_x3_x4_x5_x6_x7_y0_y1_y2_y3_y4_y5_y6_y7_cd) .align 8 @@ -200,7 +200,7 @@ roundsm16(%xmm4, %xmm5, %xmm6, %xmm7, %xmm0, %xmm1, %xmm2, %xmm3, %xmm12, %xmm13, %xmm14, %xmm15, %xmm8, %xmm9, %xmm10, %xmm11, %rax, (%r9)); - ret; + RET; SYM_FUNC_END(roundsm16_x4_x5_x6_x7_x0_x1_x2_x3_y4_y5_y6_y7_y0_y1_y2_y3_ab) /* @@ -778,7 +778,7 @@ %xmm15, (key_table)(CTX, %r8, 8), (%rax), 1 * 16(%rax)); FRAME_END - ret; + RET; .align 8 .Lenc_max32: @@ -865,7 +865,7 @@ %xmm15, (key_table)(CTX), (%rax), 1 * 16(%rax)); FRAME_END - ret; + RET; .align 8 .Ldec_max32: @@ -906,7 +906,7 @@ %xmm8, %rsi); FRAME_END - ret; + RET; SYM_FUNC_END(camellia_ecb_enc_16way) SYM_FUNC_START(camellia_ecb_dec_16way) @@ -936,7 +936,7 @@ %xmm8, %rsi); FRAME_END - ret; + RET; SYM_FUNC_END(camellia_ecb_dec_16way) SYM_FUNC_START(camellia_cbc_dec_16way) @@ -987,5 +987,5 @@ %xmm8, %rsi); FRAME_END - ret; + RET; SYM_FUNC_END(camellia_cbc_dec_16way) only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/x86/crypto/camellia-aesni-avx2-asm_64.S +++ linux-intel-iotg-5.15-5.15.0/arch/x86/crypto/camellia-aesni-avx2-asm_64.S @@ -226,7 +226,7 @@ roundsm32(%ymm0, %ymm1, %ymm2, %ymm3, %ymm4, %ymm5, %ymm6, %ymm7, %ymm8, %ymm9, %ymm10, %ymm11, %ymm12, %ymm13, %ymm14, %ymm15, %rcx, (%r9)); - ret; + RET; SYM_FUNC_END(roundsm32_x0_x1_x2_x3_x4_x5_x6_x7_y0_y1_y2_y3_y4_y5_y6_y7_cd) .align 8 @@ -234,7 +234,7 @@ roundsm32(%ymm4, %ymm5, %ymm6, %ymm7, %ymm0, %ymm1, %ymm2, %ymm3, %ymm12, %ymm13, %ymm14, %ymm15, %ymm8, %ymm9, %ymm10, %ymm11, %rax, (%r9)); - ret; + RET; SYM_FUNC_END(roundsm32_x4_x5_x6_x7_x0_x1_x2_x3_y4_y5_y6_y7_y0_y1_y2_y3_ab) /* @@ -814,7 +814,7 @@ %ymm15, (key_table)(CTX, %r8, 8), (%rax), 1 * 32(%rax)); FRAME_END - ret; + RET; .align 8 .Lenc_max32: @@ -901,7 +901,7 @@ %ymm15, (key_table)(CTX), (%rax), 1 * 32(%rax)); FRAME_END - ret; + RET; .align 8 .Ldec_max32: @@ -946,7 +946,7 @@ vzeroupper; FRAME_END - ret; + RET; SYM_FUNC_END(camellia_ecb_enc_32way) SYM_FUNC_START(camellia_ecb_dec_32way) @@ -980,7 +980,7 @@ vzeroupper; FRAME_END - ret; + RET; SYM_FUNC_END(camellia_ecb_dec_32way) SYM_FUNC_START(camellia_cbc_dec_32way) @@ -1047,5 +1047,5 @@ addq $(16 * 32), %rsp; FRAME_END - ret; + RET; SYM_FUNC_END(camellia_cbc_dec_32way) only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/x86/crypto/camellia-x86_64-asm_64.S +++ linux-intel-iotg-5.15-5.15.0/arch/x86/crypto/camellia-x86_64-asm_64.S @@ -213,13 +213,13 @@ enc_outunpack(mov, RT1); movq RR12, %r12; - ret; + RET; .L__enc_xor: enc_outunpack(xor, RT1); movq RR12, %r12; - ret; + RET; SYM_FUNC_END(__camellia_enc_blk) SYM_FUNC_START(camellia_dec_blk) @@ -257,7 +257,7 @@ dec_outunpack(); movq RR12, %r12; - ret; + RET; SYM_FUNC_END(camellia_dec_blk) /********************************************************************** @@ -448,14 +448,14 @@ movq RR12, %r12; popq %rbx; - ret; + RET; .L__enc2_xor: enc_outunpack2(xor, RT2); movq RR12, %r12; popq %rbx; - ret; + RET; SYM_FUNC_END(__camellia_enc_blk_2way) SYM_FUNC_START(camellia_dec_blk_2way) @@ -495,5 +495,5 @@ movq RR12, %r12; movq RXOR, %rbx; - ret; + RET; SYM_FUNC_END(camellia_dec_blk_2way) only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/x86/crypto/cast5-avx-x86_64-asm_64.S +++ linux-intel-iotg-5.15-5.15.0/arch/x86/crypto/cast5-avx-x86_64-asm_64.S @@ -279,7 +279,7 @@ outunpack_blocks(RR3, RL3, RTMP, RX, RKM); outunpack_blocks(RR4, RL4, RTMP, RX, RKM); - ret; + RET; SYM_FUNC_END(__cast5_enc_blk16) .align 16 @@ -352,7 +352,7 @@ outunpack_blocks(RR3, RL3, RTMP, RX, RKM); outunpack_blocks(RR4, RL4, RTMP, RX, RKM); - ret; + RET; .L__skip_dec: vpsrldq $4, RKR, RKR; @@ -393,7 +393,7 @@ popq %r15; FRAME_END - ret; + RET; SYM_FUNC_END(cast5_ecb_enc_16way) SYM_FUNC_START(cast5_ecb_dec_16way) @@ -431,7 +431,7 @@ popq %r15; FRAME_END - ret; + RET; SYM_FUNC_END(cast5_ecb_dec_16way) SYM_FUNC_START(cast5_cbc_dec_16way) @@ -483,7 +483,7 @@ popq %r15; popq %r12; FRAME_END - ret; + RET; SYM_FUNC_END(cast5_cbc_dec_16way) SYM_FUNC_START(cast5_ctr_16way) @@ -559,5 +559,5 @@ popq %r15; popq %r12; FRAME_END - ret; + RET; SYM_FUNC_END(cast5_ctr_16way) only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/x86/crypto/cast6-avx-x86_64-asm_64.S +++ linux-intel-iotg-5.15-5.15.0/arch/x86/crypto/cast6-avx-x86_64-asm_64.S @@ -289,7 +289,7 @@ outunpack_blocks(RA1, RB1, RC1, RD1, RTMP, RX, RKRF, RKM); outunpack_blocks(RA2, RB2, RC2, RD2, RTMP, RX, RKRF, RKM); - ret; + RET; SYM_FUNC_END(__cast6_enc_blk8) .align 8 @@ -336,7 +336,7 @@ outunpack_blocks(RA1, RB1, RC1, RD1, RTMP, RX, RKRF, RKM); outunpack_blocks(RA2, RB2, RC2, RD2, RTMP, RX, RKRF, RKM); - ret; + RET; SYM_FUNC_END(__cast6_dec_blk8) SYM_FUNC_START(cast6_ecb_enc_8way) @@ -359,7 +359,7 @@ popq %r15; FRAME_END - ret; + RET; SYM_FUNC_END(cast6_ecb_enc_8way) SYM_FUNC_START(cast6_ecb_dec_8way) @@ -382,7 +382,7 @@ popq %r15; FRAME_END - ret; + RET; SYM_FUNC_END(cast6_ecb_dec_8way) SYM_FUNC_START(cast6_cbc_dec_8way) @@ -408,5 +408,5 @@ popq %r15; popq %r12; FRAME_END - ret; + RET; SYM_FUNC_END(cast6_cbc_dec_8way) only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/x86/crypto/chacha-avx2-x86_64.S +++ linux-intel-iotg-5.15-5.15.0/arch/x86/crypto/chacha-avx2-x86_64.S @@ -193,7 +193,7 @@ .Ldone2: vzeroupper - ret + RET .Lxorpart2: # xor remaining bytes from partial register into output @@ -498,7 +498,7 @@ .Ldone4: vzeroupper - ret + RET .Lxorpart4: # xor remaining bytes from partial register into output @@ -992,7 +992,7 @@ .Ldone8: vzeroupper lea -8(%r10),%rsp - ret + RET .Lxorpart8: # xor remaining bytes from partial register into output only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/x86/crypto/chacha-avx512vl-x86_64.S +++ linux-intel-iotg-5.15-5.15.0/arch/x86/crypto/chacha-avx512vl-x86_64.S @@ -166,13 +166,13 @@ .Ldone2: vzeroupper - ret + RET .Lxorpart2: # xor remaining bytes from partial register into output mov %rcx,%rax and $0xf,%rcx - jz .Ldone8 + jz .Ldone2 mov %rax,%r9 and $~0xf,%r9 @@ -432,13 +432,13 @@ .Ldone4: vzeroupper - ret + RET .Lxorpart4: # xor remaining bytes from partial register into output mov %rcx,%rax and $0xf,%rcx - jz .Ldone8 + jz .Ldone4 mov %rax,%r9 and $~0xf,%r9 @@ -812,7 +812,7 @@ .Ldone8: vzeroupper - ret + RET .Lxorpart8: # xor remaining bytes from partial register into output only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/x86/crypto/chacha-ssse3-x86_64.S +++ linux-intel-iotg-5.15-5.15.0/arch/x86/crypto/chacha-ssse3-x86_64.S @@ -108,7 +108,7 @@ sub $2,%r8d jnz .Ldoubleround - ret + RET SYM_FUNC_END(chacha_permute) SYM_FUNC_START(chacha_block_xor_ssse3) @@ -166,7 +166,7 @@ .Ldone: FRAME_END - ret + RET .Lxorpart: # xor remaining bytes from partial register into output @@ -217,7 +217,7 @@ movdqu %xmm3,0x10(%rsi) FRAME_END - ret + RET SYM_FUNC_END(hchacha_block_ssse3) SYM_FUNC_START(chacha_4block_xor_ssse3) @@ -762,7 +762,7 @@ .Ldone4: lea -8(%r10),%rsp - ret + RET .Lxorpart4: # xor remaining bytes from partial register into output only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/x86/crypto/crc32-pclmul_asm.S +++ linux-intel-iotg-5.15-5.15.0/arch/x86/crypto/crc32-pclmul_asm.S @@ -236,5 +236,5 @@ pxor %xmm2, %xmm1 pextrd $0x01, %xmm1, %eax - ret + RET SYM_FUNC_END(crc32_pclmul_le_16) only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/x86/crypto/crc32c-pcl-intel-asm_64.S +++ linux-intel-iotg-5.15-5.15.0/arch/x86/crypto/crc32c-pcl-intel-asm_64.S @@ -306,7 +306,7 @@ popq %rsi popq %rdi popq %rbx - ret + RET SYM_FUNC_END(crc_pcl) .section .rodata, "a", @progbits only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/x86/crypto/crct10dif-pcl-asm_64.S +++ linux-intel-iotg-5.15-5.15.0/arch/x86/crypto/crct10dif-pcl-asm_64.S @@ -257,7 +257,7 @@ # Final CRC value (x^16 * M(x)) mod G(x) is in low 16 bits of xmm0. pextrw $0, %xmm0, %eax - ret + RET .align 16 .Lless_than_256_bytes: only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/x86/crypto/des3_ede-asm_64.S +++ linux-intel-iotg-5.15-5.15.0/arch/x86/crypto/des3_ede-asm_64.S @@ -243,7 +243,7 @@ popq %r12; popq %rbx; - ret; + RET; SYM_FUNC_END(des3_ede_x86_64_crypt_blk) /*********************************************************************** @@ -528,7 +528,7 @@ popq %r12; popq %rbx; - ret; + RET; SYM_FUNC_END(des3_ede_x86_64_crypt_blk_3way) .section .rodata, "a", @progbits only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/x86/crypto/ghash-clmulni-intel_asm.S +++ linux-intel-iotg-5.15-5.15.0/arch/x86/crypto/ghash-clmulni-intel_asm.S @@ -85,7 +85,7 @@ psrlq $1, T2 pxor T2, T1 pxor T1, DATA - ret + RET SYM_FUNC_END(__clmul_gf128mul_ble) /* void clmul_ghash_mul(char *dst, const u128 *shash) */ @@ -99,7 +99,7 @@ pshufb BSWAP, DATA movups DATA, (%rdi) FRAME_END - ret + RET SYM_FUNC_END(clmul_ghash_mul) /* @@ -128,5 +128,5 @@ movups DATA, (%rdi) .Lupdate_just_ret: FRAME_END - ret + RET SYM_FUNC_END(clmul_ghash_update) only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/x86/crypto/nh-avx2-x86_64.S +++ linux-intel-iotg-5.15-5.15.0/arch/x86/crypto/nh-avx2-x86_64.S @@ -153,5 +153,5 @@ vpaddq T1, T0, T0 vpaddq T4, T0, T0 vmovdqu T0, (HASH) - ret + RET SYM_FUNC_END(nh_avx2) only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/x86/crypto/nh-sse2-x86_64.S +++ linux-intel-iotg-5.15-5.15.0/arch/x86/crypto/nh-sse2-x86_64.S @@ -119,5 +119,5 @@ paddq PASS2_SUMS, T1 movdqu T0, 0x00(HASH) movdqu T1, 0x10(HASH) - ret + RET SYM_FUNC_END(nh_sse2) only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/x86/crypto/poly1305-x86_64-cryptogams.pl +++ linux-intel-iotg-5.15-5.15.0/arch/x86/crypto/poly1305-x86_64-cryptogams.pl @@ -297,7 +297,7 @@ $code.=<<___; mov \$1,%eax .Lno_key: - ret + RET ___ &end_function("poly1305_init_x86_64"); @@ -373,7 +373,7 @@ .cfi_adjust_cfa_offset -48 .Lno_data: .Lblocks_epilogue: - ret + RET .cfi_endproc ___ &end_function("poly1305_blocks_x86_64"); @@ -399,7 +399,7 @@ mov %rax,0($mac) # write result mov %rcx,8($mac) - ret + RET ___ &end_function("poly1305_emit_x86_64"); if ($avx) { @@ -429,7 +429,7 @@ &poly1305_iteration(); $code.=<<___; pop $ctx - ret + RET .size __poly1305_block,.-__poly1305_block .type __poly1305_init_avx,\@abi-omnipotent @@ -594,7 +594,7 @@ lea -48-64($ctx),$ctx # size [de-]optimization pop %rbp - ret + RET .size __poly1305_init_avx,.-__poly1305_init_avx ___ @@ -747,7 +747,7 @@ .cfi_restore %rbp .Lno_data_avx: .Lblocks_avx_epilogue: - ret + RET .cfi_endproc .align 32 @@ -1452,7 +1452,7 @@ ___ $code.=<<___; vzeroupper - ret + RET .cfi_endproc ___ &end_function("poly1305_blocks_avx"); @@ -1508,7 +1508,7 @@ mov %rax,0($mac) # write result mov %rcx,8($mac) - ret + RET ___ &end_function("poly1305_emit_avx"); @@ -1675,7 +1675,7 @@ .cfi_restore %rbp .Lno_data_avx2$suffix: .Lblocks_avx2_epilogue$suffix: - ret + RET .cfi_endproc .align 32 @@ -2201,7 +2201,7 @@ ___ $code.=<<___; vzeroupper - ret + RET .cfi_endproc ___ if($avx > 2 && $avx512) { @@ -2792,7 +2792,7 @@ .cfi_def_cfa_register %rsp ___ $code.=<<___; - ret + RET .cfi_endproc ___ @@ -2893,7 +2893,7 @@ ___ $code.=<<___; mov \$1,%eax - ret + RET .size poly1305_init_base2_44,.-poly1305_init_base2_44 ___ { @@ -3010,7 +3010,7 @@ jnz .Lblocks_vpmadd52_4x .Lno_data_vpmadd52: - ret + RET .size poly1305_blocks_vpmadd52,.-poly1305_blocks_vpmadd52 ___ } @@ -3451,7 +3451,7 @@ vzeroall .Lno_data_vpmadd52_4x: - ret + RET .size poly1305_blocks_vpmadd52_4x,.-poly1305_blocks_vpmadd52_4x ___ } @@ -3824,7 +3824,7 @@ vzeroall .Lno_data_vpmadd52_8x: - ret + RET .size poly1305_blocks_vpmadd52_8x,.-poly1305_blocks_vpmadd52_8x ___ } @@ -3861,7 +3861,7 @@ mov %rax,0($mac) # write result mov %rcx,8($mac) - ret + RET .size poly1305_emit_base2_44,.-poly1305_emit_base2_44 ___ } } } @@ -3916,7 +3916,7 @@ .Ldone_enc: mov $otp,%rax - ret + RET .size xor128_encrypt_n_pad,.-xor128_encrypt_n_pad .globl xor128_decrypt_n_pad @@ -3967,7 +3967,7 @@ .Ldone_dec: mov $otp,%rax - ret + RET .size xor128_decrypt_n_pad,.-xor128_decrypt_n_pad ___ } @@ -4109,7 +4109,7 @@ pop %rbx pop %rdi pop %rsi - ret + RET .size avx_handler,.-avx_handler .section .pdata only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/x86/crypto/serpent-avx-x86_64-asm_64.S +++ linux-intel-iotg-5.15-5.15.0/arch/x86/crypto/serpent-avx-x86_64-asm_64.S @@ -601,7 +601,7 @@ write_blocks(RA1, RB1, RC1, RD1, RK0, RK1, RK2); write_blocks(RA2, RB2, RC2, RD2, RK0, RK1, RK2); - ret; + RET; SYM_FUNC_END(__serpent_enc_blk8_avx) .align 8 @@ -655,7 +655,7 @@ write_blocks(RC1, RD1, RB1, RE1, RK0, RK1, RK2); write_blocks(RC2, RD2, RB2, RE2, RK0, RK1, RK2); - ret; + RET; SYM_FUNC_END(__serpent_dec_blk8_avx) SYM_FUNC_START(serpent_ecb_enc_8way_avx) @@ -673,7 +673,7 @@ store_8way(%rsi, RA1, RB1, RC1, RD1, RA2, RB2, RC2, RD2); FRAME_END - ret; + RET; SYM_FUNC_END(serpent_ecb_enc_8way_avx) SYM_FUNC_START(serpent_ecb_dec_8way_avx) @@ -691,7 +691,7 @@ store_8way(%rsi, RC1, RD1, RB1, RE1, RC2, RD2, RB2, RE2); FRAME_END - ret; + RET; SYM_FUNC_END(serpent_ecb_dec_8way_avx) SYM_FUNC_START(serpent_cbc_dec_8way_avx) @@ -709,5 +709,5 @@ store_cbc_8way(%rdx, %rsi, RC1, RD1, RB1, RE1, RC2, RD2, RB2, RE2); FRAME_END - ret; + RET; SYM_FUNC_END(serpent_cbc_dec_8way_avx) only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/x86/crypto/serpent-avx2-asm_64.S +++ linux-intel-iotg-5.15-5.15.0/arch/x86/crypto/serpent-avx2-asm_64.S @@ -601,7 +601,7 @@ write_blocks(RA1, RB1, RC1, RD1, RK0, RK1, RK2); write_blocks(RA2, RB2, RC2, RD2, RK0, RK1, RK2); - ret; + RET; SYM_FUNC_END(__serpent_enc_blk16) .align 8 @@ -655,7 +655,7 @@ write_blocks(RC1, RD1, RB1, RE1, RK0, RK1, RK2); write_blocks(RC2, RD2, RB2, RE2, RK0, RK1, RK2); - ret; + RET; SYM_FUNC_END(__serpent_dec_blk16) SYM_FUNC_START(serpent_ecb_enc_16way) @@ -677,7 +677,7 @@ vzeroupper; FRAME_END - ret; + RET; SYM_FUNC_END(serpent_ecb_enc_16way) SYM_FUNC_START(serpent_ecb_dec_16way) @@ -699,7 +699,7 @@ vzeroupper; FRAME_END - ret; + RET; SYM_FUNC_END(serpent_ecb_dec_16way) SYM_FUNC_START(serpent_cbc_dec_16way) @@ -722,5 +722,5 @@ vzeroupper; FRAME_END - ret; + RET; SYM_FUNC_END(serpent_cbc_dec_16way) only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/x86/crypto/serpent-sse2-i586-asm_32.S +++ linux-intel-iotg-5.15-5.15.0/arch/x86/crypto/serpent-sse2-i586-asm_32.S @@ -553,12 +553,12 @@ write_blocks(%eax, RA, RB, RC, RD, RT0, RT1, RE); - ret; + RET; .L__enc_xor4: xor_blocks(%eax, RA, RB, RC, RD, RT0, RT1, RE); - ret; + RET; SYM_FUNC_END(__serpent_enc_blk_4way) SYM_FUNC_START(serpent_dec_blk_4way) @@ -612,5 +612,5 @@ movl arg_dst(%esp), %eax; write_blocks(%eax, RC, RD, RB, RE, RT0, RT1, RA); - ret; + RET; SYM_FUNC_END(serpent_dec_blk_4way) only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/x86/crypto/serpent-sse2-x86_64-asm_64.S +++ linux-intel-iotg-5.15-5.15.0/arch/x86/crypto/serpent-sse2-x86_64-asm_64.S @@ -675,13 +675,13 @@ write_blocks(%rsi, RA1, RB1, RC1, RD1, RK0, RK1, RK2); write_blocks(%rax, RA2, RB2, RC2, RD2, RK0, RK1, RK2); - ret; + RET; .L__enc_xor8: xor_blocks(%rsi, RA1, RB1, RC1, RD1, RK0, RK1, RK2); xor_blocks(%rax, RA2, RB2, RC2, RD2, RK0, RK1, RK2); - ret; + RET; SYM_FUNC_END(__serpent_enc_blk_8way) SYM_FUNC_START(serpent_dec_blk_8way) @@ -735,5 +735,5 @@ write_blocks(%rsi, RC1, RD1, RB1, RE1, RK0, RK1, RK2); write_blocks(%rax, RC2, RD2, RB2, RE2, RK0, RK1, RK2); - ret; + RET; SYM_FUNC_END(serpent_dec_blk_8way) only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/x86/crypto/sha1_avx2_x86_64_asm.S +++ linux-intel-iotg-5.15-5.15.0/arch/x86/crypto/sha1_avx2_x86_64_asm.S @@ -674,7 +674,7 @@ pop %r12 pop %rbx - ret + RET SYM_FUNC_END(\name) .endm only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/x86/crypto/sha1_ni_asm.S +++ linux-intel-iotg-5.15-5.15.0/arch/x86/crypto/sha1_ni_asm.S @@ -290,7 +290,7 @@ mov %rbp, %rsp pop %rbp - ret + RET SYM_FUNC_END(sha1_ni_transform) .section .rodata.cst16.PSHUFFLE_BYTE_FLIP_MASK, "aM", @progbits, 16 only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/x86/crypto/sha1_ssse3_asm.S +++ linux-intel-iotg-5.15-5.15.0/arch/x86/crypto/sha1_ssse3_asm.S @@ -99,7 +99,7 @@ pop %rbp pop %r12 pop %rbx - ret + RET SYM_FUNC_END(\name) .endm only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/x86/crypto/sha256-avx-asm.S +++ linux-intel-iotg-5.15-5.15.0/arch/x86/crypto/sha256-avx-asm.S @@ -458,7 +458,7 @@ popq %r13 popq %r12 popq %rbx - ret + RET SYM_FUNC_END(sha256_transform_avx) .section .rodata.cst256.K256, "aM", @progbits, 256 only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/x86/crypto/sha256-avx2-asm.S +++ linux-intel-iotg-5.15-5.15.0/arch/x86/crypto/sha256-avx2-asm.S @@ -710,7 +710,7 @@ popq %r13 popq %r12 popq %rbx - ret + RET SYM_FUNC_END(sha256_transform_rorx) .section .rodata.cst512.K256, "aM", @progbits, 512 only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/x86/crypto/sha256-ssse3-asm.S +++ linux-intel-iotg-5.15-5.15.0/arch/x86/crypto/sha256-ssse3-asm.S @@ -472,7 +472,7 @@ popq %r12 popq %rbx - ret + RET SYM_FUNC_END(sha256_transform_ssse3) .section .rodata.cst256.K256, "aM", @progbits, 256 only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/x86/crypto/sha256_ni_asm.S +++ linux-intel-iotg-5.15-5.15.0/arch/x86/crypto/sha256_ni_asm.S @@ -326,7 +326,7 @@ .Ldone_hash: - ret + RET SYM_FUNC_END(sha256_ni_transform) .section .rodata.cst256.K256, "aM", @progbits, 256 only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/x86/crypto/sha512-avx-asm.S +++ linux-intel-iotg-5.15-5.15.0/arch/x86/crypto/sha512-avx-asm.S @@ -361,7 +361,7 @@ pop %rbx nowork: - ret + RET SYM_FUNC_END(sha512_transform_avx) ######################################################################## only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/x86/crypto/sha512-avx2-asm.S +++ linux-intel-iotg-5.15-5.15.0/arch/x86/crypto/sha512-avx2-asm.S @@ -679,7 +679,7 @@ pop %r12 pop %rbx - ret + RET SYM_FUNC_END(sha512_transform_rorx) ######################################################################## only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/x86/crypto/sha512-ssse3-asm.S +++ linux-intel-iotg-5.15-5.15.0/arch/x86/crypto/sha512-ssse3-asm.S @@ -363,7 +363,7 @@ pop %rbx nowork: - ret + RET SYM_FUNC_END(sha512_transform_ssse3) ######################################################################## only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/x86/crypto/sm4-aesni-avx-asm_64.S +++ linux-intel-iotg-5.15-5.15.0/arch/x86/crypto/sm4-aesni-avx-asm_64.S @@ -246,7 +246,7 @@ .Lblk4_store_output_done: vzeroall; FRAME_END - ret; + RET; SYM_FUNC_END(sm4_aesni_avx_crypt4) .align 8 @@ -356,7 +356,7 @@ vpshufb RTMP2, RB3, RB3; FRAME_END - ret; + RET; SYM_FUNC_END(__sm4_crypt_blk8) /* @@ -412,7 +412,7 @@ .Lblk8_store_output_done: vzeroall; FRAME_END - ret; + RET; SYM_FUNC_END(sm4_aesni_avx_crypt8) /* @@ -487,7 +487,7 @@ vzeroall; FRAME_END - ret; + RET; SYM_FUNC_END(sm4_aesni_avx_ctr_enc_blk8) /* @@ -537,7 +537,7 @@ vzeroall; FRAME_END - ret; + RET; SYM_FUNC_END(sm4_aesni_avx_cbc_dec_blk8) /* @@ -590,5 +590,5 @@ vzeroall; FRAME_END - ret; + RET; SYM_FUNC_END(sm4_aesni_avx_cfb_dec_blk8) only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/x86/crypto/sm4-aesni-avx2-asm_64.S +++ linux-intel-iotg-5.15-5.15.0/arch/x86/crypto/sm4-aesni-avx2-asm_64.S @@ -268,7 +268,7 @@ vpshufb RTMP2, RB3, RB3; FRAME_END - ret; + RET; SYM_FUNC_END(__sm4_crypt_blk16) #define inc_le128(x, minus_one, tmp) \ @@ -387,7 +387,7 @@ vzeroall; FRAME_END - ret; + RET; SYM_FUNC_END(sm4_aesni_avx2_ctr_enc_blk16) /* @@ -441,7 +441,7 @@ vzeroall; FRAME_END - ret; + RET; SYM_FUNC_END(sm4_aesni_avx2_cbc_dec_blk16) /* @@ -497,5 +497,5 @@ vzeroall; FRAME_END - ret; + RET; SYM_FUNC_END(sm4_aesni_avx2_cfb_dec_blk16) only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/x86/crypto/twofish-avx-x86_64-asm_64.S +++ linux-intel-iotg-5.15-5.15.0/arch/x86/crypto/twofish-avx-x86_64-asm_64.S @@ -267,7 +267,7 @@ outunpack_blocks(RC1, RD1, RA1, RB1, RK1, RX0, RY0, RK2); outunpack_blocks(RC2, RD2, RA2, RB2, RK1, RX0, RY0, RK2); - ret; + RET; SYM_FUNC_END(__twofish_enc_blk8) .align 8 @@ -307,7 +307,7 @@ outunpack_blocks(RA1, RB1, RC1, RD1, RK1, RX0, RY0, RK2); outunpack_blocks(RA2, RB2, RC2, RD2, RK1, RX0, RY0, RK2); - ret; + RET; SYM_FUNC_END(__twofish_dec_blk8) SYM_FUNC_START(twofish_ecb_enc_8way) @@ -327,7 +327,7 @@ store_8way(%r11, RC1, RD1, RA1, RB1, RC2, RD2, RA2, RB2); FRAME_END - ret; + RET; SYM_FUNC_END(twofish_ecb_enc_8way) SYM_FUNC_START(twofish_ecb_dec_8way) @@ -347,7 +347,7 @@ store_8way(%r11, RA1, RB1, RC1, RD1, RA2, RB2, RC2, RD2); FRAME_END - ret; + RET; SYM_FUNC_END(twofish_ecb_dec_8way) SYM_FUNC_START(twofish_cbc_dec_8way) @@ -372,5 +372,5 @@ popq %r12; FRAME_END - ret; + RET; SYM_FUNC_END(twofish_cbc_dec_8way) only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/x86/crypto/twofish-i586-asm_32.S +++ linux-intel-iotg-5.15-5.15.0/arch/x86/crypto/twofish-i586-asm_32.S @@ -260,7 +260,7 @@ pop %ebx pop %ebp mov $1, %eax - ret + RET SYM_FUNC_END(twofish_enc_blk) SYM_FUNC_START(twofish_dec_blk) @@ -317,5 +317,5 @@ pop %ebx pop %ebp mov $1, %eax - ret + RET SYM_FUNC_END(twofish_dec_blk) only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/x86/crypto/twofish-x86_64-asm_64-3way.S +++ linux-intel-iotg-5.15-5.15.0/arch/x86/crypto/twofish-x86_64-asm_64-3way.S @@ -258,7 +258,7 @@ popq %rbx; popq %r12; popq %r13; - ret; + RET; .L__enc_xor3: outunpack_enc3(xor); @@ -266,7 +266,7 @@ popq %rbx; popq %r12; popq %r13; - ret; + RET; SYM_FUNC_END(__twofish_enc_blk_3way) SYM_FUNC_START(twofish_dec_blk_3way) @@ -301,5 +301,5 @@ popq %rbx; popq %r12; popq %r13; - ret; + RET; SYM_FUNC_END(twofish_dec_blk_3way) only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/x86/crypto/twofish-x86_64-asm_64.S +++ linux-intel-iotg-5.15-5.15.0/arch/x86/crypto/twofish-x86_64-asm_64.S @@ -252,7 +252,7 @@ popq R1 movl $1,%eax - ret + RET SYM_FUNC_END(twofish_enc_blk) SYM_FUNC_START(twofish_dec_blk) @@ -304,5 +304,5 @@ popq R1 movl $1,%eax - ret + RET SYM_FUNC_END(twofish_dec_blk) only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/x86/entry/calling.h +++ linux-intel-iotg-5.15-5.15.0/arch/x86/entry/calling.h @@ -7,6 +7,8 @@ #include #include #include +#include +#include /* @@ -119,27 +121,19 @@ CLEAR_REGS .endm -.macro POP_REGS pop_rdi=1 skip_r11rcx=0 +.macro POP_REGS pop_rdi=1 popq %r15 popq %r14 popq %r13 popq %r12 popq %rbp popq %rbx - .if \skip_r11rcx - popq %rsi - .else popq %r11 - .endif popq %r10 popq %r9 popq %r8 popq %rax - .if \skip_r11rcx - popq %rsi - .else popq %rcx - .endif popq %rdx popq %rsi .if \pop_rdi @@ -290,6 +284,66 @@ #endif /* + * IBRS kernel mitigation for Spectre_v2. + * + * Assumes full context is established (PUSH_REGS, CR3 and GS) and it clobbers + * the regs it uses (AX, CX, DX). Must be called before the first RET + * instruction (NOTE! UNTRAIN_RET includes a RET instruction) + * + * The optional argument is used to save/restore the current value, + * which is used on the paranoid paths. + * + * Assumes x86_spec_ctrl_{base,current} to have SPEC_CTRL_IBRS set. + */ +.macro IBRS_ENTER save_reg +#ifdef CONFIG_CPU_IBRS_ENTRY + ALTERNATIVE "jmp .Lend_\@", "", X86_FEATURE_KERNEL_IBRS + movl $MSR_IA32_SPEC_CTRL, %ecx + +.ifnb \save_reg + rdmsr + shl $32, %rdx + or %rdx, %rax + mov %rax, \save_reg + test $SPEC_CTRL_IBRS, %eax + jz .Ldo_wrmsr_\@ + lfence + jmp .Lend_\@ +.Ldo_wrmsr_\@: +.endif + + movq PER_CPU_VAR(x86_spec_ctrl_current), %rdx + movl %edx, %eax + shr $32, %rdx + wrmsr +.Lend_\@: +#endif +.endm + +/* + * Similar to IBRS_ENTER, requires KERNEL GS,CR3 and clobbers (AX, CX, DX) + * regs. Must be called after the last RET. + */ +.macro IBRS_EXIT save_reg +#ifdef CONFIG_CPU_IBRS_ENTRY + ALTERNATIVE "jmp .Lend_\@", "", X86_FEATURE_KERNEL_IBRS + movl $MSR_IA32_SPEC_CTRL, %ecx + +.ifnb \save_reg + mov \save_reg, %rdx +.else + movq PER_CPU_VAR(x86_spec_ctrl_current), %rdx + andl $(~SPEC_CTRL_IBRS), %edx +.endif + + movl %edx, %eax + shr $32, %rdx + wrmsr +.Lend_\@: +#endif +.endm + +/* * Mitigate Spectre v1 for conditional swapgs code paths. * * FENCE_SWAPGS_USER_ENTRY is used in the user entry swapgs code path, to only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/x86/entry/entry.S +++ linux-intel-iotg-5.15-5.15.0/arch/x86/entry/entry.S @@ -0,0 +1,22 @@ +/* SPDX-License-Identifier: GPL-2.0 */ +/* + * Common place for both 32- and 64-bit entry routines. + */ + +#include +#include +#include + +.pushsection .noinstr.text, "ax" + +SYM_FUNC_START(entry_ibpb) + movl $MSR_IA32_PRED_CMD, %ecx + movl $PRED_CMD_IBPB, %eax + xorl %edx, %edx + wrmsr + RET +SYM_FUNC_END(entry_ibpb) +/* For KVM */ +EXPORT_SYMBOL_GPL(entry_ibpb); + +.popsection only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/x86/entry/entry_32.S +++ linux-intel-iotg-5.15-5.15.0/arch/x86/entry/entry_32.S @@ -701,7 +701,6 @@ movl %ebx, PER_CPU_VAR(__stack_chk_guard) #endif -#ifdef CONFIG_RETPOLINE /* * When switching from a shallower to a deeper call stack * the RSB may either underflow or use entries populated @@ -710,7 +709,6 @@ * speculative execution to prevent attack. */ FILL_RETURN_BUFFER %ebx, RSB_CLEAR_LOOPS, X86_FEATURE_RSB_CTXSW -#endif /* Restore flags or the incoming task to restore AC state. */ popfl @@ -740,7 +738,7 @@ popl %eax FRAME_END - ret + RET SYM_FUNC_END(schedule_tail_wrapper) .popsection only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/x86/entry/entry_64_compat.S +++ linux-intel-iotg-5.15-5.15.0/arch/x86/entry/entry_64_compat.S @@ -4,7 +4,6 @@ * * Copyright 2000-2002 Andi Kleen, SuSE Labs. */ -#include "calling.h" #include #include #include @@ -14,9 +13,12 @@ #include #include #include +#include #include #include +#include "calling.h" + .section .entry.text, "ax" /* @@ -47,7 +49,7 @@ * 0(%ebp) arg6 */ SYM_CODE_START(entry_SYSENTER_compat) - UNWIND_HINT_EMPTY + UNWIND_HINT_ENTRY /* Interrupts are off on entry. */ SWAPGS @@ -112,6 +114,9 @@ cld + IBRS_ENTER + UNTRAIN_RET + /* * SYSENTER doesn't filter flags, so we need to clear NT and AC * ourselves. To save a few cycles, we can check whether @@ -197,7 +202,7 @@ * 0(%esp) arg6 */ SYM_CODE_START(entry_SYSCALL_compat) - UNWIND_HINT_EMPTY + UNWIND_HINT_ENTRY /* Interrupts are off on entry. */ swapgs @@ -252,6 +257,9 @@ UNWIND_HINT_REGS + IBRS_ENTER + UNTRAIN_RET + movq %rsp, %rdi call do_fast_syscall_32 /* XEN PV guests always use IRET path */ @@ -266,6 +274,8 @@ */ STACKLEAK_ERASE + IBRS_EXIT + movq RBX(%rsp), %rbx /* pt_regs->rbx */ movq RBP(%rsp), %rbp /* pt_regs->rbp */ movq EFLAGS(%rsp), %r11 /* pt_regs->flags (in r11) */ @@ -339,7 +349,7 @@ * ebp arg6 */ SYM_CODE_START(entry_INT80_compat) - UNWIND_HINT_EMPTY + UNWIND_HINT_ENTRY /* * Interrupts are off on entry. */ @@ -409,6 +419,9 @@ cld + IBRS_ENTER + UNTRAIN_RET + movq %rsp, %rdi call do_int80_syscall_32 jmp swapgs_restore_regs_and_return_to_usermode only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/x86/entry/vdso/Makefile +++ linux-intel-iotg-5.15-5.15.0/arch/x86/entry/vdso/Makefile @@ -92,6 +92,7 @@ endif $(vobjs): KBUILD_CFLAGS := $(filter-out $(CC_FLAGS_LTO) $(GCC_PLUGINS_CFLAGS) $(RETPOLINE_CFLAGS),$(KBUILD_CFLAGS)) $(CFL) +$(vobjs): KBUILD_AFLAGS += -DBUILD_VDSO # # vDSO code runs in userspace and -pg doesn't help with profiling anyway. only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/x86/entry/vdso/vdso32/system_call.S +++ linux-intel-iotg-5.15-5.15.0/arch/x86/entry/vdso/vdso32/system_call.S @@ -78,7 +78,7 @@ popl %ecx CFI_RESTORE ecx CFI_ADJUST_CFA_OFFSET -4 - ret + RET CFI_ENDPROC .size __kernel_vsyscall,.-__kernel_vsyscall only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/x86/entry/vdso/vma.c +++ linux-intel-iotg-5.15-5.15.0/arch/x86/entry/vdso/vma.c @@ -438,7 +438,7 @@ static __init int vdso_setup(char *s) { vdso64_enabled = simple_strtoul(s, NULL, 0); - return 0; + return 1; } __setup("vdso=", vdso_setup); only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/x86/entry/vdso/vsgx.S +++ linux-intel-iotg-5.15-5.15.0/arch/x86/entry/vdso/vsgx.S @@ -81,7 +81,7 @@ pop %rbx leave .cfi_def_cfa %rsp, 8 - ret + RET /* The out-of-line code runs with the pre-leave stack frame. */ .cfi_def_cfa %rbp, 16 only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/x86/entry/vsyscall/vsyscall_emu_64.S +++ linux-intel-iotg-5.15-5.15.0/arch/x86/entry/vsyscall/vsyscall_emu_64.S @@ -20,16 +20,19 @@ mov $__NR_gettimeofday, %rax syscall ret + int3 .balign 1024, 0xcc mov $__NR_time, %rax syscall ret + int3 .balign 1024, 0xcc mov $__NR_getcpu, %rax syscall ret + int3 .balign 4096, 0xcc only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/x86/events/amd/ibs.c +++ linux-intel-iotg-5.15-5.15.0/arch/x86/events/amd/ibs.c @@ -304,6 +304,16 @@ hwc->config_base = perf_ibs->msr; hwc->config = config; + /* + * rip recorded by IbsOpRip will not be consistent with rsp and rbp + * recorded as part of interrupt regs. Thus we need to use rip from + * interrupt regs while unwinding call stack. Setting _EARLY flag + * makes sure we unwind call-stack before perf sample rip is set to + * IbsOpRip. + */ + if (event->attr.sample_type & PERF_SAMPLE_CALLCHAIN) + event->attr.sample_type |= __PERF_SAMPLE_CALLCHAIN_EARLY; + return 0; } @@ -687,6 +697,14 @@ data.raw = &raw; } + /* + * rip recorded by IbsOpRip will not be consistent with rsp and rbp + * recorded as part of interrupt regs. Thus we need to use rip from + * interrupt regs while unwinding call stack. + */ + if (event->attr.sample_type & PERF_SAMPLE_CALLCHAIN) + data.callchain = perf_callchain(event, iregs); + throttle = perf_event_overflow(event, &data, ®s); out: if (throttle) { @@ -759,9 +777,10 @@ return ret; } -static __init void perf_event_ibs_init(void) +static __init int perf_event_ibs_init(void) { struct attribute **attr = ibs_op_format_attrs; + int ret; /* * Some chips fail to reset the fetch count when it is written; instead @@ -773,7 +792,9 @@ if (boot_cpu_data.x86 == 0x19 && boot_cpu_data.x86_model < 0x10) perf_ibs_fetch.fetch_ignore_if_zero_rip = 1; - perf_ibs_pmu_init(&perf_ibs_fetch, "ibs_fetch"); + ret = perf_ibs_pmu_init(&perf_ibs_fetch, "ibs_fetch"); + if (ret) + return ret; if (ibs_caps & IBS_CAPS_OPCNT) { perf_ibs_op.config_mask |= IBS_OP_CNT_CTL; @@ -786,15 +807,35 @@ perf_ibs_op.cnt_mask |= IBS_OP_MAX_CNT_EXT_MASK; } - perf_ibs_pmu_init(&perf_ibs_op, "ibs_op"); + ret = perf_ibs_pmu_init(&perf_ibs_op, "ibs_op"); + if (ret) + goto err_op; + + ret = register_nmi_handler(NMI_LOCAL, perf_ibs_nmi_handler, 0, "perf_ibs"); + if (ret) + goto err_nmi; - register_nmi_handler(NMI_LOCAL, perf_ibs_nmi_handler, 0, "perf_ibs"); pr_info("perf: AMD IBS detected (0x%08x)\n", ibs_caps); + return 0; + +err_nmi: + perf_pmu_unregister(&perf_ibs_op.pmu); + free_percpu(perf_ibs_op.pcpu); + perf_ibs_op.pcpu = NULL; +err_op: + perf_pmu_unregister(&perf_ibs_fetch.pmu); + free_percpu(perf_ibs_fetch.pcpu); + perf_ibs_fetch.pcpu = NULL; + + return ret; } #else /* defined(CONFIG_PERF_EVENTS) && defined(CONFIG_CPU_SUP_AMD) */ -static __init void perf_event_ibs_init(void) { } +static __init int perf_event_ibs_init(void) +{ + return 0; +} #endif @@ -1064,9 +1105,7 @@ x86_pmu_amd_ibs_starting_cpu, x86_pmu_amd_ibs_dying_cpu); - perf_event_ibs_init(); - - return 0; + return perf_event_ibs_init(); } /* Since we need the pci subsystem to init ibs we can't do this earlier: */ only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/x86/include/asm/acenv.h +++ linux-intel-iotg-5.15-5.15.0/arch/x86/include/asm/acenv.h @@ -13,7 +13,19 @@ /* Asm macros */ -#define ACPI_FLUSH_CPU_CACHE() wbinvd() +/* + * ACPI_FLUSH_CPU_CACHE() flushes caches on entering sleep states. + * It is required to prevent data loss. + * + * While running inside virtual machine, the kernel can bypass cache flushing. + * Changing sleep state in a virtual machine doesn't affect the host system + * sleep state and cannot lead to data loss. + */ +#define ACPI_FLUSH_CPU_CACHE() \ +do { \ + if (!cpu_feature_enabled(X86_FEATURE_HYPERVISOR)) \ + wbinvd(); \ +} while (0) int __acpi_acquire_global_lock(unsigned int *lock); int __acpi_release_global_lock(unsigned int *lock); only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/x86/include/asm/compat.h +++ linux-intel-iotg-5.15-5.15.0/arch/x86/include/asm/compat.h @@ -28,15 +28,13 @@ typedef __kernel_fsid_t compat_fsid_t; struct compat_stat { - compat_dev_t st_dev; - u16 __pad1; + u32 st_dev; compat_ino_t st_ino; compat_mode_t st_mode; compat_nlink_t st_nlink; __compat_uid_t st_uid; __compat_gid_t st_gid; - compat_dev_t st_rdev; - u16 __pad2; + u32 st_rdev; u32 st_size; u32 st_blksize; u32 st_blocks; only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/x86/include/asm/disabled-features.h +++ linux-intel-iotg-5.15-5.15.0/arch/x86/include/asm/disabled-features.h @@ -56,6 +56,25 @@ # define DISABLE_PTI (1 << (X86_FEATURE_PTI & 31)) #endif +#ifdef CONFIG_RETPOLINE +# define DISABLE_RETPOLINE 0 +#else +# define DISABLE_RETPOLINE ((1 << (X86_FEATURE_RETPOLINE & 31)) | \ + (1 << (X86_FEATURE_RETPOLINE_LFENCE & 31))) +#endif + +#ifdef CONFIG_RETHUNK +# define DISABLE_RETHUNK 0 +#else +# define DISABLE_RETHUNK (1 << (X86_FEATURE_RETHUNK & 31)) +#endif + +#ifdef CONFIG_CPU_UNRET_ENTRY +# define DISABLE_UNRET 0 +#else +# define DISABLE_UNRET (1 << (X86_FEATURE_UNRET & 31)) +#endif + /* Force disable because it's broken beyond repair */ #define DISABLE_ENQCMD (1 << (X86_FEATURE_ENQCMD & 31)) @@ -79,7 +98,7 @@ #define DISABLED_MASK8 0 #define DISABLED_MASK9 (DISABLE_SMAP|DISABLE_SGX) #define DISABLED_MASK10 0 -#define DISABLED_MASK11 0 +#define DISABLED_MASK11 (DISABLE_RETPOLINE|DISABLE_RETHUNK|DISABLE_UNRET) #define DISABLED_MASK12 0 #define DISABLED_MASK13 0 #define DISABLED_MASK14 0 only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/x86/include/asm/kexec.h +++ linux-intel-iotg-5.15-5.15.0/arch/x86/include/asm/kexec.h @@ -186,6 +186,14 @@ extern void arch_kexec_pre_free_pages(void *vaddr, unsigned int pages); #define arch_kexec_pre_free_pages arch_kexec_pre_free_pages +#ifdef CONFIG_KEXEC_FILE +struct purgatory_info; +int arch_kexec_apply_relocations_add(struct purgatory_info *pi, + Elf_Shdr *section, + const Elf_Shdr *relsec, + const Elf_Shdr *symtab); +#define arch_kexec_apply_relocations_add arch_kexec_apply_relocations_add +#endif #endif typedef void crash_vmclear_fn(void); only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/x86/include/asm/linkage.h +++ linux-intel-iotg-5.15-5.15.0/arch/x86/include/asm/linkage.h @@ -18,6 +18,28 @@ #define __ALIGN_STR __stringify(__ALIGN) #endif +#if defined(CONFIG_RETHUNK) && !defined(__DISABLE_EXPORTS) && !defined(BUILD_VDSO) +#define RET jmp __x86_return_thunk +#else /* CONFIG_RETPOLINE */ +#ifdef CONFIG_SLS +#define RET ret; int3 +#else +#define RET ret +#endif +#endif /* CONFIG_RETPOLINE */ + +#else /* __ASSEMBLY__ */ + +#if defined(CONFIG_RETHUNK) && !defined(__DISABLE_EXPORTS) && !defined(BUILD_VDSO) +#define ASM_RET "jmp __x86_return_thunk\n\t" +#else /* CONFIG_RETPOLINE */ +#ifdef CONFIG_SLS +#define ASM_RET "ret; int3\n\t" +#else +#define ASM_RET "ret\n\t" +#endif +#endif /* CONFIG_RETPOLINE */ + #endif /* __ASSEMBLY__ */ #endif /* _ASM_X86_LINKAGE_H */ only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/x86/include/asm/mce.h +++ linux-intel-iotg-5.15-5.15.0/arch/x86/include/asm/mce.h @@ -77,6 +77,7 @@ #define MCACOD_L3WB 0x017A /* L3 Explicit Writeback */ #define MCACOD_DATA 0x0134 /* Data Load */ #define MCACOD_INSTR 0x0150 /* Instruction Fetch */ +#define MCACOD_IOERR 0x0e0b /* Generic I/O error */ /* MCi_MISC register defines */ #define MCI_MISC_ADDR_LSB(m) ((m) & 0x3f) @@ -87,6 +88,11 @@ #define MCI_MISC_ADDR_MEM 3 /* memory address */ #define MCI_MISC_ADDR_GENERIC 7 /* generic */ +#define MCI_MISC_PCISEG_MASK GENMASK_ULL(39, 32) +#define MCI_MISC_PCISEG(m) (((m) & MCI_MISC_PCISEG_MASK) >> 32) +#define MCI_MISC_PCIRID_MASK GENMASK_ULL(31, 16) +#define MCI_MISC_PCIRID(m) (((m) & MCI_MISC_PCIRID_MASK) >> 16) + /* CTL2 register defines */ #define MCI_CTL2_CMCI_EN BIT_ULL(30) #define MCI_CTL2_CMCI_THRESHOLD_MASK 0x7fffULL only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/x86/include/asm/microcode.h +++ linux-intel-iotg-5.15-5.15.0/arch/x86/include/asm/microcode.h @@ -132,10 +132,12 @@ void reload_early_microcode(void); extern bool get_builtin_firmware(struct cpio_data *cd, const char *name); extern bool initrd_gone; +void microcode_bsp_resume(void); #else static inline void __init load_ucode_bsp(void) { } static inline void load_ucode_ap(void) { } static inline void reload_early_microcode(void) { } +static inline void microcode_bsp_resume(void) { } static inline bool get_builtin_firmware(struct cpio_data *cd, const char *name) { return false; } #endif only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/x86/include/asm/paravirt.h +++ linux-intel-iotg-5.15-5.15.0/arch/x86/include/asm/paravirt.h @@ -665,7 +665,7 @@ "call " #func ";" \ PV_RESTORE_ALL_CALLER_REGS \ FRAME_END \ - "ret;" \ + ASM_RET \ ".size " PV_THUNK_NAME(func) ", .-" PV_THUNK_NAME(func) ";" \ ".popsection") only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/x86/include/asm/pci_x86.h +++ linux-intel-iotg-5.15-5.15.0/arch/x86/include/asm/pci_x86.h @@ -39,6 +39,8 @@ #define PCI_ROOT_NO_CRS 0x100000 #define PCI_NOASSIGN_BARS 0x200000 #define PCI_BIG_ROOT_WINDOW 0x400000 +#define PCI_USE_E820 0x800000 +#define PCI_NO_E820 0x1000000 extern unsigned int pci_probe; extern unsigned long pirq_table_addr; @@ -64,6 +66,8 @@ /* pci-irq.c */ +struct pci_dev; + struct irq_info { u8 bus, devfn; /* Bus, device and function */ struct { @@ -232,3 +236,9 @@ # define x86_default_pci_init_irq NULL # define x86_default_pci_fixup_irqs NULL #endif + +#if defined(CONFIG_PCI) && defined(CONFIG_ACPI) +extern bool pci_use_e820; +#else +#define pci_use_e820 false +#endif only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/x86/include/asm/pgtable.h +++ linux-intel-iotg-5.15-5.15.0/arch/x86/include/asm/pgtable.h @@ -22,6 +22,7 @@ #define pgprot_decrypted(prot) __pgprot(__sme_clr(pgprot_val(prot))) #ifndef __ASSEMBLY__ +#include #include #include #include only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/x86/include/asm/qspinlock_paravirt.h +++ linux-intel-iotg-5.15-5.15.0/arch/x86/include/asm/qspinlock_paravirt.h @@ -48,7 +48,7 @@ "jne .slowpath;" "pop %rdx;" FRAME_END - "ret;" + ASM_RET ".slowpath: " "push %rsi;" "movzbl %al,%esi;" @@ -56,7 +56,7 @@ "pop %rsi;" "pop %rdx;" FRAME_END - "ret;" + ASM_RET ".size " PV_UNLOCK ", .-" PV_UNLOCK ";" ".popsection"); only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/x86/include/asm/static_call.h +++ linux-intel-iotg-5.15-5.15.0/arch/x86/include/asm/static_call.h @@ -21,6 +21,16 @@ * relative displacement across sections. */ +/* + * The trampoline is 8 bytes and of the general form: + * + * jmp.d32 \func + * ud1 %esp, %ecx + * + * That trailing #UD provides both a speculation stop and serves as a unique + * 3 byte signature identifying static call trampolines. Also see tramp_ud[] + * and __static_call_fixup(). + */ #define __ARCH_DEFINE_STATIC_CALL_TRAMP(name, insns) \ asm(".pushsection .static_call.text, \"ax\" \n" \ ".align 4 \n" \ @@ -34,8 +44,13 @@ #define ARCH_DEFINE_STATIC_CALL_TRAMP(name, func) \ __ARCH_DEFINE_STATIC_CALL_TRAMP(name, ".byte 0xe9; .long " #func " - (. + 4)") +#ifdef CONFIG_RETHUNK +#define ARCH_DEFINE_STATIC_CALL_NULL_TRAMP(name) \ + __ARCH_DEFINE_STATIC_CALL_TRAMP(name, "jmp __x86_return_thunk") +#else #define ARCH_DEFINE_STATIC_CALL_NULL_TRAMP(name) \ - __ARCH_DEFINE_STATIC_CALL_TRAMP(name, "ret; nop; nop; nop; nop") + __ARCH_DEFINE_STATIC_CALL_TRAMP(name, "ret; int3; nop; nop; nop") +#endif #define ARCH_ADD_TRAMP_KEY(name) \ @@ -44,4 +59,6 @@ ".long " STATIC_CALL_KEY_STR(name) " - . \n" \ ".popsection \n") +extern bool __static_call_fixup(void *tramp, u8 op, void *dest); + #endif /* _ASM_STATIC_CALL_H */ only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/x86/include/asm/suspend_32.h +++ linux-intel-iotg-5.15-5.15.0/arch/x86/include/asm/suspend_32.h @@ -19,7 +19,6 @@ u16 gs; unsigned long cr0, cr2, cr3, cr4; u64 misc_enable; - bool misc_enable_saved; struct saved_msrs saved_msrs; struct desc_ptr gdt_desc; struct desc_ptr idt; @@ -28,6 +27,7 @@ unsigned long tr; unsigned long safety; unsigned long return_address; + bool misc_enable_saved; } __attribute__((packed)); /* routines for saving/restoring kernel state */ only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/x86/include/asm/suspend_64.h +++ linux-intel-iotg-5.15-5.15.0/arch/x86/include/asm/suspend_64.h @@ -14,9 +14,13 @@ * Image of the saved processor state, used by the low level ACPI suspend to * RAM code and by the low level hibernation code. * - * If you modify it, fix arch/x86/kernel/acpi/wakeup_64.S and make sure that - * __save/__restore_processor_state(), defined in arch/x86/kernel/suspend_64.c, - * still work as required. + * If you modify it, check how it is used in arch/x86/kernel/acpi/wakeup_64.S + * and make sure that __save/__restore_processor_state(), defined in + * arch/x86/power/cpu.c, still work as required. + * + * Because the structure is packed, make sure to avoid unaligned members. For + * optimisation purposes but also because tools like kmemleak only search for + * pointers that are aligned. */ struct saved_context { struct pt_regs regs; @@ -36,7 +40,6 @@ unsigned long cr0, cr2, cr3, cr4; u64 misc_enable; - bool misc_enable_saved; struct saved_msrs saved_msrs; unsigned long efer; u16 gdt_pad; /* Unused */ @@ -48,6 +51,7 @@ unsigned long tr; unsigned long safety; unsigned long return_address; + bool misc_enable_saved; } __attribute__((packed)); #define loaddebug(thread,register) \ only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/x86/include/asm/timex.h +++ linux-intel-iotg-5.15-5.15.0/arch/x86/include/asm/timex.h @@ -5,6 +5,15 @@ #include #include +static inline unsigned long random_get_entropy(void) +{ + if (!IS_ENABLED(CONFIG_X86_TSC) && + !cpu_feature_enabled(X86_FEATURE_TSC)) + return random_get_entropy_fallback(); + return rdtsc(); +} +#define random_get_entropy random_get_entropy + /* Assume we use the PIT time source for the clock tick */ #define CLOCK_TICK_RATE PIT_TICK_RATE only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/x86/include/asm/unwind_hints.h +++ linux-intel-iotg-5.15-5.15.0/arch/x86/include/asm/unwind_hints.h @@ -8,7 +8,11 @@ #ifdef __ASSEMBLY__ .macro UNWIND_HINT_EMPTY - UNWIND_HINT sp_reg=ORC_REG_UNDEFINED type=UNWIND_HINT_TYPE_CALL end=1 + UNWIND_HINT type=UNWIND_HINT_TYPE_CALL end=1 +.endm + +.macro UNWIND_HINT_ENTRY + UNWIND_HINT type=UNWIND_HINT_TYPE_ENTRY end=1 .endm .macro UNWIND_HINT_REGS base=%rsp offset=0 indirect=0 extra=1 partial=0 @@ -52,6 +56,14 @@ UNWIND_HINT sp_reg=ORC_REG_SP sp_offset=8 type=UNWIND_HINT_TYPE_FUNC .endm +.macro UNWIND_HINT_SAVE + UNWIND_HINT type=UNWIND_HINT_TYPE_SAVE +.endm + +.macro UNWIND_HINT_RESTORE + UNWIND_HINT type=UNWIND_HINT_TYPE_RESTORE +.endm + #endif /* __ASSEMBLY__ */ #endif /* _ASM_X86_UNWIND_HINTS_H */ only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/x86/kernel/apic/apic.c +++ linux-intel-iotg-5.15-5.15.0/arch/x86/kernel/apic/apic.c @@ -170,7 +170,7 @@ { apic_calibrate_pmtmr = 1; notsc_setup(NULL); - return 0; + return 1; } __setup("apicpmtimer", setup_apicpmtimer); #endif only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/x86/kernel/apic/x2apic_uv_x.c +++ linux-intel-iotg-5.15-5.15.0/arch/x86/kernel/apic/x2apic_uv_x.c @@ -199,7 +199,13 @@ int mmr_shift; char *state; - /* Different returns from different UV BIOS versions */ + /* UV5 guarantees synced TSCs; do not zero TSC_ADJUST */ + if (!is_uv(UV2|UV3|UV4)) { + mark_tsc_async_resets("UV5+"); + return; + } + + /* UV2,3,4, UV BIOS TSC sync state available */ mmr = uv_early_read_mmr(UVH_TSC_SYNC_MMR); mmr_shift = is_uv2_hub() ? UVH_TSC_SYNC_SHIFT_UV2K : UVH_TSC_SYNC_SHIFT; only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/x86/kernel/asm-offsets.c +++ linux-intel-iotg-5.15-5.15.0/arch/x86/kernel/asm-offsets.c @@ -18,6 +18,7 @@ #include #include #include +#include "../kvm/vmx/vmx.h" #ifdef CONFIG_XEN #include @@ -93,4 +94,9 @@ OFFSET(TSS_sp0, tss_struct, x86_tss.sp0); OFFSET(TSS_sp1, tss_struct, x86_tss.sp1); OFFSET(TSS_sp2, tss_struct, x86_tss.sp2); + + if (IS_ENABLED(CONFIG_KVM_INTEL)) { + BLANK(); + OFFSET(VMX_spec_ctrl, vcpu_vmx, spec_ctrl); + } } only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/x86/kernel/cpu/microcode/core.c +++ linux-intel-iotg-5.15-5.15.0/arch/x86/kernel/cpu/microcode/core.c @@ -775,9 +775,9 @@ }; /** - * mc_bp_resume - Update boot CPU microcode during resume. + * microcode_bsp_resume - Update boot CPU microcode during resume. */ -static void mc_bp_resume(void) +void microcode_bsp_resume(void) { int cpu = smp_processor_id(); struct ucode_cpu_info *uci = ucode_cpu_info + cpu; @@ -789,7 +789,7 @@ } static struct syscore_ops mc_syscore_ops = { - .resume = mc_bp_resume, + .resume = microcode_bsp_resume, }; static int mc_cpu_starting(unsigned int cpu) only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/x86/kernel/cpu/scattered.c +++ linux-intel-iotg-5.15-5.15.0/arch/x86/kernel/cpu/scattered.c @@ -26,6 +26,7 @@ static const struct cpuid_bit cpuid_bits[] = { { X86_FEATURE_APERFMPERF, CPUID_ECX, 0, 0x00000006, 0 }, { X86_FEATURE_EPB, CPUID_ECX, 3, 0x00000006, 0 }, + { X86_FEATURE_RRSBA_CTRL, CPUID_EDX, 2, 0x00000007, 2 }, { X86_FEATURE_CQM_LLC, CPUID_EDX, 1, 0x0000000f, 0 }, { X86_FEATURE_CQM_OCCUP_LLC, CPUID_EDX, 0, 0x0000000f, 1 }, { X86_FEATURE_CQM_MBM_TOTAL, CPUID_EDX, 1, 0x0000000f, 1 }, only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/x86/kernel/cpu/sgx/encl.h +++ linux-intel-iotg-5.15-5.15.0/arch/x86/kernel/cpu/sgx/encl.h @@ -103,11 +103,14 @@ int sgx_encl_may_map(struct sgx_encl *encl, unsigned long start, unsigned long end, unsigned long vm_flags); +bool current_is_ksgxd(void); void sgx_encl_release(struct kref *ref); int sgx_encl_mm_add(struct sgx_encl *encl, struct mm_struct *mm); -int sgx_encl_get_backing(struct sgx_encl *encl, unsigned long page_index, - struct sgx_backing *backing); -void sgx_encl_put_backing(struct sgx_backing *backing, bool do_write); +int sgx_encl_lookup_backing(struct sgx_encl *encl, unsigned long page_index, + struct sgx_backing *backing); +int sgx_encl_alloc_backing(struct sgx_encl *encl, unsigned long page_index, + struct sgx_backing *backing); +void sgx_encl_put_backing(struct sgx_backing *backing); int sgx_encl_test_and_clear_young(struct mm_struct *mm, struct sgx_encl_page *page); only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/x86/kernel/ftrace.c +++ linux-intel-iotg-5.15-5.15.0/arch/x86/kernel/ftrace.c @@ -308,7 +308,7 @@ } __attribute__((packed)); }; -#define RET_SIZE 1 +#define RET_SIZE (IS_ENABLED(CONFIG_RETPOLINE) ? 5 : 1 + IS_ENABLED(CONFIG_SLS)) static unsigned long create_trampoline(struct ftrace_ops *ops, unsigned int *tramp_size) @@ -321,12 +321,12 @@ unsigned long offset; unsigned long npages; unsigned long size; - unsigned long retq; unsigned long *ptr; void *trampoline; void *ip; /* 48 8b 15 is movq (%rip), %rdx */ unsigned const char op_ref[] = { 0x48, 0x8b, 0x15 }; + unsigned const char retq[] = { RET_INSN_OPCODE, INT3_INSN_OPCODE }; union ftrace_op_code_union op_ptr; int ret; @@ -364,12 +364,10 @@ goto fail; ip = trampoline + size; - - /* The trampoline ends with ret(q) */ - retq = (unsigned long)ftrace_stub; - ret = copy_from_kernel_nofault(ip, (void *)retq, RET_SIZE); - if (WARN_ON(ret < 0)) - goto fail; + if (cpu_feature_enabled(X86_FEATURE_RETHUNK)) + memcpy(ip, text_gen_insn(JMP32_INSN_OPCODE, ip, &__x86_return_thunk), JMP32_INSN_SIZE); + else + memcpy(ip, retq, sizeof(retq)); /* No need to test direct calls on created trampolines */ if (ops->flags & FTRACE_OPS_FL_SAVE_REGS) { only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/x86/kernel/ftrace_32.S +++ linux-intel-iotg-5.15-5.15.0/arch/x86/kernel/ftrace_32.S @@ -19,7 +19,7 @@ #endif SYM_FUNC_START(__fentry__) - ret + RET SYM_FUNC_END(__fentry__) EXPORT_SYMBOL(__fentry__) @@ -84,7 +84,7 @@ /* This is weak to keep gas from relaxing the jumps */ SYM_INNER_LABEL_ALIGN(ftrace_stub, SYM_L_WEAK) - ret + RET SYM_CODE_END(ftrace_caller) SYM_CODE_START(ftrace_regs_caller) @@ -177,7 +177,7 @@ popl %edx popl %ecx popl %eax - ret + RET SYM_CODE_END(ftrace_graph_caller) .globl return_to_handler only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/x86/kernel/ftrace_64.S +++ linux-intel-iotg-5.15-5.15.0/arch/x86/kernel/ftrace_64.S @@ -132,7 +132,7 @@ #ifdef CONFIG_DYNAMIC_FTRACE SYM_FUNC_START(__fentry__) - retq + RET SYM_FUNC_END(__fentry__) EXPORT_SYMBOL(__fentry__) @@ -181,11 +181,10 @@ /* * This is weak to keep gas from relaxing the jumps. - * It is also used to copy the retq for trampolines. */ SYM_INNER_LABEL_ALIGN(ftrace_stub, SYM_L_WEAK) UNWIND_HINT_FUNC - retq + RET SYM_FUNC_END(ftrace_epilogue) SYM_FUNC_START(ftrace_regs_caller) @@ -299,7 +298,7 @@ #endif SYM_INNER_LABEL(ftrace_stub, SYM_L_GLOBAL) - retq + RET trace: /* save_mcount_regs fills in first two parameters */ @@ -331,11 +330,11 @@ restore_mcount_regs - retq + RET SYM_FUNC_END(ftrace_graph_caller) SYM_FUNC_START(return_to_handler) - subq $24, %rsp + subq $16, %rsp /* Save the return values */ movq %rax, (%rsp) @@ -347,7 +346,19 @@ movq %rax, %rdi movq 8(%rsp), %rdx movq (%rsp), %rax - addq $24, %rsp - JMP_NOSPEC rdi + + addq $16, %rsp + /* + * Jump back to the old return address. This cannot be JMP_NOSPEC rdi + * since IBT would demand that contain ENDBR, which simply isn't so for + * return addresses. Use a retpoline here to keep the RSB balanced. + */ + ANNOTATE_INTRA_FUNCTION_CALL + call .Ldo_rop + int3 +.Ldo_rop: + mov %rdi, (%rsp) + UNWIND_HINT_FUNC + RET SYM_FUNC_END(return_to_handler) #endif only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/x86/kernel/head_64.S +++ linux-intel-iotg-5.15-5.15.0/arch/x86/kernel/head_64.S @@ -312,6 +312,8 @@ SYM_CODE_START_NOALIGN(vc_boot_ghcb) UNWIND_HINT_IRET_REGS offset=8 + ANNOTATE_UNRET_END + /* Build pt_regs */ PUSH_AND_CLEAR_REGS @@ -369,6 +371,7 @@ SYM_CODE_END(early_idt_handler_array) SYM_CODE_START_LOCAL(early_idt_handler_common) + ANNOTATE_UNRET_END /* * The stack is the hardware frame, an error code or zero, and the * vector number. @@ -415,6 +418,8 @@ SYM_CODE_START_NOALIGN(vc_no_ghcb) UNWIND_HINT_IRET_REGS offset=8 + ANNOTATE_UNRET_END + /* Build pt_regs */ PUSH_AND_CLEAR_REGS only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/x86/kernel/irqflags.S +++ linux-intel-iotg-5.15-5.15.0/arch/x86/kernel/irqflags.S @@ -10,6 +10,6 @@ SYM_FUNC_START(native_save_fl) pushf pop %_ASM_AX - ret + RET SYM_FUNC_END(native_save_fl) EXPORT_SYMBOL(native_save_fl) only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/x86/kernel/kprobes/core.c +++ linux-intel-iotg-5.15-5.15.0/arch/x86/kernel/kprobes/core.c @@ -1044,7 +1044,7 @@ RESTORE_REGS_STRING " popfl\n" #endif - " ret\n" + ASM_RET ".size kretprobe_trampoline, .-kretprobe_trampoline\n" ); NOKPROBE_SYMBOL(kretprobe_trampoline); only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/x86/kernel/machine_kexec_64.c +++ linux-intel-iotg-5.15-5.15.0/arch/x86/kernel/machine_kexec_64.c @@ -373,9 +373,6 @@ #ifdef CONFIG_KEXEC_FILE void *arch_kexec_kernel_image_load(struct kimage *image) { - vfree(image->elf_headers); - image->elf_headers = NULL; - if (!image->fops || !image->fops->load) return ERR_PTR(-ENOEXEC); @@ -511,6 +508,15 @@ (int)ELF64_R_TYPE(rel[i].r_info), value); return -ENOEXEC; } + +int arch_kimage_file_post_load_cleanup(struct kimage *image) +{ + vfree(image->elf_headers); + image->elf_headers = NULL; + image->elf_headers_sz = 0; + + return kexec_image_post_load_cleanup_default(image); +} #endif /* CONFIG_KEXEC_FILE */ static int only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/x86/kernel/paravirt.c +++ linux-intel-iotg-5.15-5.15.0/arch/x86/kernel/paravirt.c @@ -41,7 +41,7 @@ asm (".pushsection .entry.text, \"ax\"\n" ".global _paravirt_nop\n" "_paravirt_nop:\n\t" - "ret\n\t" + ASM_RET ".size _paravirt_nop, . - _paravirt_nop\n\t" ".type _paravirt_nop, @function\n\t" ".popsection"); only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/x86/kernel/relocate_kernel_64.S +++ linux-intel-iotg-5.15-5.15.0/arch/x86/kernel/relocate_kernel_64.S @@ -13,7 +13,8 @@ #include /* - * Must be relocatable PIC code callable as a C function + * Must be relocatable PIC code callable as a C function, in particular + * there must be a plain RET and not jump to return thunk. */ #define PTR(x) (x << 3) @@ -104,7 +105,9 @@ /* jump to identity mapped page */ addq $(identity_mapped - relocate_kernel), %r8 pushq %r8 + ANNOTATE_UNRET_SAFE ret + int3 SYM_CODE_END(relocate_kernel) SYM_CODE_START_LOCAL_NOALIGN(identity_mapped) @@ -191,7 +194,9 @@ xorl %r14d, %r14d xorl %r15d, %r15d + ANNOTATE_UNRET_SAFE ret + int3 1: popq %rdx @@ -210,7 +215,9 @@ call swap_pages movq $virtual_mapped, %rax pushq %rax + ANNOTATE_UNRET_SAFE ret + int3 SYM_CODE_END(identity_mapped) SYM_CODE_START_LOCAL_NOALIGN(virtual_mapped) @@ -231,7 +238,9 @@ popq %r12 popq %rbp popq %rbx + ANNOTATE_UNRET_SAFE ret + int3 SYM_CODE_END(virtual_mapped) /* Do the copies */ @@ -288,7 +297,9 @@ lea PAGE_SIZE(%rax), %rsi jmp 0b 3: + ANNOTATE_UNRET_SAFE ret + int3 SYM_CODE_END(swap_pages) .globl kexec_control_code_size only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/x86/kernel/resource.c +++ linux-intel-iotg-5.15-5.15.0/arch/x86/kernel/resource.c @@ -1,6 +1,8 @@ // SPDX-License-Identifier: GPL-2.0 #include +#include #include +#include static void resource_clip(struct resource *res, resource_size_t start, resource_size_t end) @@ -27,12 +29,23 @@ { int i; struct e820_entry *entry; + u64 e820_start, e820_end; + struct resource orig = *avail; + + if (!pci_use_e820) + return; for (i = 0; i < e820_table->nr_entries; i++) { entry = &e820_table->entries[i]; + e820_start = entry->addr; + e820_end = entry->addr + entry->size - 1; - resource_clip(avail, entry->addr, - entry->addr + entry->size - 1); + resource_clip(avail, e820_start, e820_end); + if (orig.start != avail->start || orig.end != avail->end) { + pr_info("clipped %pR to %pR for e820 entry [mem %#010Lx-%#010Lx]\n", + &orig, avail, e820_start, e820_end); + orig = *avail; + } } } only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/x86/kernel/sev_verify_cbit.S +++ linux-intel-iotg-5.15-5.15.0/arch/x86/kernel/sev_verify_cbit.S @@ -85,5 +85,5 @@ #endif /* Return page-table pointer */ movq %rdi, %rax - ret + RET SYM_FUNC_END(sev_verify_cbit) only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/x86/kernel/signal_compat.c +++ linux-intel-iotg-5.15-5.15.0/arch/x86/kernel/signal_compat.c @@ -149,8 +149,10 @@ BUILD_BUG_ON(offsetof(siginfo_t, si_perf_data) != 0x18); BUILD_BUG_ON(offsetof(siginfo_t, si_perf_type) != 0x20); + BUILD_BUG_ON(offsetof(siginfo_t, si_perf_flags) != 0x24); BUILD_BUG_ON(offsetof(compat_siginfo_t, si_perf_data) != 0x10); BUILD_BUG_ON(offsetof(compat_siginfo_t, si_perf_type) != 0x14); + BUILD_BUG_ON(offsetof(compat_siginfo_t, si_perf_flags) != 0x18); CHECK_CSI_OFFSET(_sigpoll); CHECK_CSI_SIZE (_sigpoll, 2*sizeof(int)); only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/x86/kernel/step.c +++ linux-intel-iotg-5.15-5.15.0/arch/x86/kernel/step.c @@ -180,8 +180,7 @@ * * NOTE: this means that set/clear TIF_BLOCKSTEP is only safe if * task is current or it can't be running, otherwise we can race - * with __switch_to_xtra(). We rely on ptrace_freeze_traced() but - * PTRACE_KILL is not safe. + * with __switch_to_xtra(). We rely on ptrace_freeze_traced(). */ local_irq_disable(); debugctl = get_debugctlmsr(); only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/x86/kernel/sys_x86_64.c +++ linux-intel-iotg-5.15-5.15.0/arch/x86/kernel/sys_x86_64.c @@ -68,9 +68,6 @@ if (*str == 0) return 1; - if (*str == '=') - str++; - if (!strcmp(str, "32")) va_align.flags = ALIGN_VA_32; else if (!strcmp(str, "64")) @@ -80,11 +77,11 @@ else if (!strcmp(str, "on")) va_align.flags = ALIGN_VA_32 | ALIGN_VA_64; else - return 0; + pr_warn("invalid option value: 'align_va_addr=%s'\n", str); return 1; } -__setup("align_va_addr", control_va_addr_alignment); +__setup("align_va_addr=", control_va_addr_alignment); SYSCALL_DEFINE6(mmap, unsigned long, addr, unsigned long, len, unsigned long, prot, unsigned long, flags, only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/x86/kernel/verify_cpu.S +++ linux-intel-iotg-5.15-5.15.0/arch/x86/kernel/verify_cpu.S @@ -132,9 +132,9 @@ .Lverify_cpu_no_longmode: popf # Restore caller passed flags movl $1,%eax - ret + RET .Lverify_cpu_sse_ok: popf # Restore caller passed flags xorl %eax, %eax - ret + RET SYM_FUNC_END(verify_cpu) only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/x86/kvm/svm/vmenter.S +++ linux-intel-iotg-5.15-5.15.0/arch/x86/kvm/svm/vmenter.S @@ -111,6 +111,15 @@ #endif /* + * Mitigate RETBleed for AMD/Hygon Zen uarch. RET should be + * untrained as soon as we exit the VM and are back to the + * kernel. This should be done before re-enabling interrupts + * because interrupt handlers won't sanitize 'ret' if the return is + * from the kernel. + */ + UNTRAIN_RET + + /* * Clear all general purpose registers except RSP and RAX to prevent * speculative use of the guest's values, even those that are reloaded * via the stack. In theory, an L1 cache miss when restoring registers @@ -148,7 +157,7 @@ pop %edi #endif pop %_ASM_BP - ret + RET 3: cmpb $0, kvm_rebooting jne 2b @@ -190,6 +199,15 @@ FILL_RETURN_BUFFER %_ASM_AX, RSB_CLEAR_LOOPS, X86_FEATURE_RETPOLINE #endif + /* + * Mitigate RETBleed for AMD/Hygon Zen uarch. RET should be + * untrained as soon as we exit the VM and are back to the + * kernel. This should be done before re-enabling interrupts + * because interrupt handlers won't sanitize RET if the return is + * from the kernel. + */ + UNTRAIN_RET + pop %_ASM_BX #ifdef CONFIG_X86_64 @@ -202,7 +220,7 @@ pop %edi #endif pop %_ASM_BP - ret + RET 3: cmpb $0, kvm_rebooting jne 2b only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/x86/kvm/vmx/capabilities.h +++ linux-intel-iotg-5.15-5.15.0/arch/x86/kvm/vmx/capabilities.h @@ -4,7 +4,7 @@ #include -#include "lapic.h" +#include "../lapic.h" extern bool __read_mostly enable_vpid; extern bool __read_mostly flexpriority_enabled; only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/x86/kvm/vmx/run_flags.h +++ linux-intel-iotg-5.15-5.15.0/arch/x86/kvm/vmx/run_flags.h @@ -0,0 +1,8 @@ +/* SPDX-License-Identifier: GPL-2.0 */ +#ifndef __KVM_X86_VMX_RUN_FLAGS_H +#define __KVM_X86_VMX_RUN_FLAGS_H + +#define VMX_RUN_VMRESUME (1 << 0) +#define VMX_RUN_SAVE_SPEC_CTRL (1 << 1) + +#endif /* __KVM_X86_VMX_RUN_FLAGS_H */ only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/x86/kvm/vmx/vmcs.h +++ linux-intel-iotg-5.15-5.15.0/arch/x86/kvm/vmx/vmcs.h @@ -104,6 +104,11 @@ return is_exception_n(intr_info, BP_VECTOR); } +static inline bool is_double_fault(u32 intr_info) +{ + return is_exception_n(intr_info, DF_VECTOR); +} + static inline bool is_page_fault(u32 intr_info) { return is_exception_n(intr_info, PF_VECTOR); only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/x86/kvm/vmx/vmenter.S +++ linux-intel-iotg-5.15-5.15.0/arch/x86/kvm/vmx/vmenter.S @@ -1,10 +1,13 @@ /* SPDX-License-Identifier: GPL-2.0 */ #include #include +#include #include #include #include +#include #include +#include "run_flags.h" #define WORD_SIZE (BITS_PER_LONG / 8) @@ -31,72 +34,11 @@ .section .noinstr.text, "ax" /** - * vmx_vmenter - VM-Enter the current loaded VMCS - * - * %RFLAGS.ZF: !VMCS.LAUNCHED, i.e. controls VMLAUNCH vs. VMRESUME - * - * Returns: - * %RFLAGS.CF is set on VM-Fail Invalid - * %RFLAGS.ZF is set on VM-Fail Valid - * %RFLAGS.{CF,ZF} are cleared on VM-Success, i.e. VM-Exit - * - * Note that VMRESUME/VMLAUNCH fall-through and return directly if - * they VM-Fail, whereas a successful VM-Enter + VM-Exit will jump - * to vmx_vmexit. - */ -SYM_FUNC_START_LOCAL(vmx_vmenter) - /* EFLAGS.ZF is set if VMCS.LAUNCHED == 0 */ - je 2f - -1: vmresume - ret - -2: vmlaunch - ret - -3: cmpb $0, kvm_rebooting - je 4f - ret -4: ud2 - - _ASM_EXTABLE(1b, 3b) - _ASM_EXTABLE(2b, 3b) - -SYM_FUNC_END(vmx_vmenter) - -/** - * vmx_vmexit - Handle a VMX VM-Exit - * - * Returns: - * %RFLAGS.{CF,ZF} are cleared on VM-Success, i.e. VM-Exit - * - * This is vmx_vmenter's partner in crime. On a VM-Exit, control will jump - * here after hardware loads the host's state, i.e. this is the destination - * referred to by VMCS.HOST_RIP. - */ -SYM_FUNC_START(vmx_vmexit) -#ifdef CONFIG_RETPOLINE - ALTERNATIVE "jmp .Lvmexit_skip_rsb", "", X86_FEATURE_RETPOLINE - /* Preserve guest's RAX, it's used to stuff the RSB. */ - push %_ASM_AX - - /* IMPORTANT: Stuff the RSB immediately after VM-Exit, before RET! */ - FILL_RETURN_BUFFER %_ASM_AX, RSB_CLEAR_LOOPS, X86_FEATURE_RETPOLINE - - /* Clear RFLAGS.CF and RFLAGS.ZF to preserve VM-Exit, i.e. !VM-Fail. */ - or $1, %_ASM_AX - - pop %_ASM_AX -.Lvmexit_skip_rsb: -#endif - ret -SYM_FUNC_END(vmx_vmexit) - -/** * __vmx_vcpu_run - Run a vCPU via a transition to VMX guest mode - * @vmx: struct vcpu_vmx * (forwarded to vmx_update_host_rsp) + * @vmx: struct vcpu_vmx * * @regs: unsigned long * (to guest registers) - * @launched: %true if the VMCS has been launched + * @flags: VMX_RUN_VMRESUME: use VMRESUME instead of VMLAUNCH + * VMX_RUN_SAVE_SPEC_CTRL: save guest SPEC_CTRL into vmx->spec_ctrl * * Returns: * 0 on VM-Exit, 1 on VM-Fail @@ -115,24 +57,56 @@ #endif push %_ASM_BX + /* Save @vmx for SPEC_CTRL handling */ + push %_ASM_ARG1 + + /* Save @flags for SPEC_CTRL handling */ + push %_ASM_ARG3 + /* * Save @regs, _ASM_ARG2 may be modified by vmx_update_host_rsp() and * @regs is needed after VM-Exit to save the guest's register values. */ push %_ASM_ARG2 - /* Copy @launched to BL, _ASM_ARG3 is volatile. */ + /* Copy @flags to BL, _ASM_ARG3 is volatile. */ mov %_ASM_ARG3B, %bl - /* Adjust RSP to account for the CALL to vmx_vmenter(). */ - lea -WORD_SIZE(%_ASM_SP), %_ASM_ARG2 + lea (%_ASM_SP), %_ASM_ARG2 call vmx_update_host_rsp + ALTERNATIVE "jmp .Lspec_ctrl_done", "", X86_FEATURE_MSR_SPEC_CTRL + + /* + * SPEC_CTRL handling: if the guest's SPEC_CTRL value differs from the + * host's, write the MSR. + * + * IMPORTANT: To avoid RSB underflow attacks and any other nastiness, + * there must not be any returns or indirect branches between this code + * and vmentry. + */ + mov 2*WORD_SIZE(%_ASM_SP), %_ASM_DI + movl VMX_spec_ctrl(%_ASM_DI), %edi + movl PER_CPU_VAR(x86_spec_ctrl_current), %esi + cmp %edi, %esi + je .Lspec_ctrl_done + mov $MSR_IA32_SPEC_CTRL, %ecx + xor %edx, %edx + mov %edi, %eax + wrmsr + +.Lspec_ctrl_done: + + /* + * Since vmentry is serializing on affected CPUs, there's no need for + * an LFENCE to stop speculation from skipping the wrmsr. + */ + /* Load @regs to RAX. */ mov (%_ASM_SP), %_ASM_AX /* Check if vmlaunch or vmresume is needed */ - testb %bl, %bl + testb $VMX_RUN_VMRESUME, %bl /* Load guest registers. Don't clobber flags. */ mov VCPU_RCX(%_ASM_AX), %_ASM_CX @@ -154,11 +128,36 @@ /* Load guest RAX. This kills the @regs pointer! */ mov VCPU_RAX(%_ASM_AX), %_ASM_AX - /* Enter guest mode */ - call vmx_vmenter + /* Check EFLAGS.ZF from 'testb' above */ + jz .Lvmlaunch + + /* + * After a successful VMRESUME/VMLAUNCH, control flow "magically" + * resumes below at 'vmx_vmexit' due to the VMCS HOST_RIP setting. + * So this isn't a typical function and objtool needs to be told to + * save the unwind state here and restore it below. + */ + UNWIND_HINT_SAVE + +/* + * If VMRESUME/VMLAUNCH and corresponding vmexit succeed, execution resumes at + * the 'vmx_vmexit' label below. + */ +.Lvmresume: + vmresume + jmp .Lvmfail + +.Lvmlaunch: + vmlaunch + jmp .Lvmfail + + _ASM_EXTABLE(.Lvmresume, .Lfixup) + _ASM_EXTABLE(.Lvmlaunch, .Lfixup) - /* Jump on VM-Fail. */ - jbe 2f +SYM_INNER_LABEL(vmx_vmexit, SYM_L_GLOBAL) + + /* Restore unwind state from before the VMRESUME/VMLAUNCH. */ + UNWIND_HINT_RESTORE /* Temporarily save guest's RAX. */ push %_ASM_AX @@ -185,21 +184,23 @@ mov %r15, VCPU_R15(%_ASM_AX) #endif - /* Clear RAX to indicate VM-Exit (as opposed to VM-Fail). */ - xor %eax, %eax + /* Clear return value to indicate VM-Exit (as opposed to VM-Fail). */ + xor %ebx, %ebx +.Lclear_regs: /* - * Clear all general purpose registers except RSP and RAX to prevent + * Clear all general purpose registers except RSP and RBX to prevent * speculative use of the guest's values, even those that are reloaded * via the stack. In theory, an L1 cache miss when restoring registers * could lead to speculative execution with the guest's values. * Zeroing XORs are dirt cheap, i.e. the extra paranoia is essentially * free. RSP and RAX are exempt as RSP is restored by hardware during - * VM-Exit and RAX is explicitly loaded with 0 or 1 to return VM-Fail. + * VM-Exit and RBX is explicitly loaded with 0 or 1 to hold the return + * value. */ -1: xor %ecx, %ecx + xor %eax, %eax + xor %ecx, %ecx xor %edx, %edx - xor %ebx, %ebx xor %ebp, %ebp xor %esi, %esi xor %edi, %edi @@ -216,8 +217,30 @@ /* "POP" @regs. */ add $WORD_SIZE, %_ASM_SP - pop %_ASM_BX + /* + * IMPORTANT: RSB filling and SPEC_CTRL handling must be done before + * the first unbalanced RET after vmexit! + * + * For retpoline or IBRS, RSB filling is needed to prevent poisoned RSB + * entries and (in some cases) RSB underflow. + * + * eIBRS has its own protection against poisoned RSB, so it doesn't + * need the RSB filling sequence. But it does need to be enabled + * before the first unbalanced RET. + */ + + FILL_RETURN_BUFFER %_ASM_CX, RSB_CLEAR_LOOPS, X86_FEATURE_RSB_VMEXIT + + pop %_ASM_ARG2 /* @flags */ + pop %_ASM_ARG1 /* @vmx */ + + call vmx_spec_ctrl_restore_host + + /* Put return value in AX */ + mov %_ASM_BX, %_ASM_AX + + pop %_ASM_BX #ifdef CONFIG_X86_64 pop %r12 pop %r13 @@ -228,11 +251,17 @@ pop %edi #endif pop %_ASM_BP - ret + RET + +.Lfixup: + cmpb $0, kvm_rebooting + jne .Lvmfail + ud2 +.Lvmfail: + /* VM-Fail: set return value to 1 */ + mov $1, %_ASM_BX + jmp .Lclear_regs - /* VM-Fail. Out-of-line to avoid a taken Jcc after VM-Exit. */ -2: mov $1, %eax - jmp 1b SYM_FUNC_END(__vmx_vcpu_run) @@ -293,7 +322,7 @@ pop %_ASM_AX pop %_ASM_BP - ret + RET SYM_FUNC_END(vmread_error_trampoline) SYM_FUNC_START(vmx_do_interrupt_nmi_irqoff) @@ -326,5 +355,5 @@ */ mov %_ASM_BP, %_ASM_SP pop %_ASM_BP - ret + RET SYM_FUNC_END(vmx_do_interrupt_nmi_irqoff) only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/x86/kvm/vmx/vmx_ops.h +++ linux-intel-iotg-5.15-5.15.0/arch/x86/kvm/vmx/vmx_ops.h @@ -8,7 +8,7 @@ #include "evmcs.h" #include "vmcs.h" -#include "x86.h" +#include "../x86.h" asmlinkage void vmread_error(unsigned long field, bool fault); __attribute__((regparm(0))) void vmread_error_trampoline(unsigned long field, only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/x86/lib/atomic64_386_32.S +++ linux-intel-iotg-5.15-5.15.0/arch/x86/lib/atomic64_386_32.S @@ -9,81 +9,83 @@ #include /* if you want SMP support, implement these with real spinlocks */ -.macro LOCK reg +.macro IRQ_SAVE reg pushfl cli .endm -.macro UNLOCK reg +.macro IRQ_RESTORE reg popfl .endm -#define BEGIN(op) \ +#define BEGIN_IRQ_SAVE(op) \ .macro endp; \ SYM_FUNC_END(atomic64_##op##_386); \ .purgem endp; \ .endm; \ SYM_FUNC_START(atomic64_##op##_386); \ - LOCK v; + IRQ_SAVE v; #define ENDP endp -#define RET \ - UNLOCK v; \ - ret - -#define RET_ENDP \ - RET; \ - ENDP +#define RET_IRQ_RESTORE \ + IRQ_RESTORE v; \ + RET #define v %ecx -BEGIN(read) +BEGIN_IRQ_SAVE(read) movl (v), %eax movl 4(v), %edx -RET_ENDP + RET_IRQ_RESTORE +ENDP #undef v #define v %esi -BEGIN(set) +BEGIN_IRQ_SAVE(set) movl %ebx, (v) movl %ecx, 4(v) -RET_ENDP + RET_IRQ_RESTORE +ENDP #undef v #define v %esi -BEGIN(xchg) +BEGIN_IRQ_SAVE(xchg) movl (v), %eax movl 4(v), %edx movl %ebx, (v) movl %ecx, 4(v) -RET_ENDP + RET_IRQ_RESTORE +ENDP #undef v #define v %ecx -BEGIN(add) +BEGIN_IRQ_SAVE(add) addl %eax, (v) adcl %edx, 4(v) -RET_ENDP + RET_IRQ_RESTORE +ENDP #undef v #define v %ecx -BEGIN(add_return) +BEGIN_IRQ_SAVE(add_return) addl (v), %eax adcl 4(v), %edx movl %eax, (v) movl %edx, 4(v) -RET_ENDP + RET_IRQ_RESTORE +ENDP #undef v #define v %ecx -BEGIN(sub) +BEGIN_IRQ_SAVE(sub) subl %eax, (v) sbbl %edx, 4(v) -RET_ENDP + RET_IRQ_RESTORE +ENDP #undef v #define v %ecx -BEGIN(sub_return) +BEGIN_IRQ_SAVE(sub_return) negl %edx negl %eax sbbl $0, %edx @@ -91,47 +93,52 @@ adcl 4(v), %edx movl %eax, (v) movl %edx, 4(v) -RET_ENDP + RET_IRQ_RESTORE +ENDP #undef v #define v %esi -BEGIN(inc) +BEGIN_IRQ_SAVE(inc) addl $1, (v) adcl $0, 4(v) -RET_ENDP + RET_IRQ_RESTORE +ENDP #undef v #define v %esi -BEGIN(inc_return) +BEGIN_IRQ_SAVE(inc_return) movl (v), %eax movl 4(v), %edx addl $1, %eax adcl $0, %edx movl %eax, (v) movl %edx, 4(v) -RET_ENDP + RET_IRQ_RESTORE +ENDP #undef v #define v %esi -BEGIN(dec) +BEGIN_IRQ_SAVE(dec) subl $1, (v) sbbl $0, 4(v) -RET_ENDP + RET_IRQ_RESTORE +ENDP #undef v #define v %esi -BEGIN(dec_return) +BEGIN_IRQ_SAVE(dec_return) movl (v), %eax movl 4(v), %edx subl $1, %eax sbbl $0, %edx movl %eax, (v) movl %edx, 4(v) -RET_ENDP + RET_IRQ_RESTORE +ENDP #undef v #define v %esi -BEGIN(add_unless) +BEGIN_IRQ_SAVE(add_unless) addl %eax, %ecx adcl %edx, %edi addl (v), %eax @@ -143,7 +150,7 @@ movl %edx, 4(v) movl $1, %eax 2: - RET + RET_IRQ_RESTORE 3: cmpl %edx, %edi jne 1b @@ -153,7 +160,7 @@ #undef v #define v %esi -BEGIN(inc_not_zero) +BEGIN_IRQ_SAVE(inc_not_zero) movl (v), %eax movl 4(v), %edx testl %eax, %eax @@ -165,7 +172,7 @@ movl %edx, 4(v) movl $1, %eax 2: - RET + RET_IRQ_RESTORE 3: testl %edx, %edx jne 1b @@ -174,7 +181,7 @@ #undef v #define v %esi -BEGIN(dec_if_positive) +BEGIN_IRQ_SAVE(dec_if_positive) movl (v), %eax movl 4(v), %edx subl $1, %eax @@ -183,5 +190,6 @@ movl %eax, (v) movl %edx, 4(v) 1: -RET_ENDP + RET_IRQ_RESTORE +ENDP #undef v only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/x86/lib/atomic64_cx8_32.S +++ linux-intel-iotg-5.15-5.15.0/arch/x86/lib/atomic64_cx8_32.S @@ -18,7 +18,7 @@ SYM_FUNC_START(atomic64_read_cx8) read64 %ecx - ret + RET SYM_FUNC_END(atomic64_read_cx8) SYM_FUNC_START(atomic64_set_cx8) @@ -28,7 +28,7 @@ cmpxchg8b (%esi) jne 1b - ret + RET SYM_FUNC_END(atomic64_set_cx8) SYM_FUNC_START(atomic64_xchg_cx8) @@ -37,7 +37,7 @@ cmpxchg8b (%esi) jne 1b - ret + RET SYM_FUNC_END(atomic64_xchg_cx8) .macro addsub_return func ins insc @@ -68,7 +68,7 @@ popl %esi popl %ebx popl %ebp - ret + RET SYM_FUNC_END(atomic64_\func\()_return_cx8) .endm @@ -93,7 +93,7 @@ movl %ebx, %eax movl %ecx, %edx popl %ebx - ret + RET SYM_FUNC_END(atomic64_\func\()_return_cx8) .endm @@ -118,7 +118,7 @@ movl %ebx, %eax movl %ecx, %edx popl %ebx - ret + RET SYM_FUNC_END(atomic64_dec_if_positive_cx8) SYM_FUNC_START(atomic64_add_unless_cx8) @@ -149,7 +149,7 @@ addl $8, %esp popl %ebx popl %ebp - ret + RET 4: cmpl %edx, 4(%esp) jne 2b @@ -176,5 +176,5 @@ movl $1, %eax 3: popl %ebx - ret + RET SYM_FUNC_END(atomic64_inc_not_zero_cx8) only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/x86/lib/checksum_32.S +++ linux-intel-iotg-5.15-5.15.0/arch/x86/lib/checksum_32.S @@ -127,7 +127,7 @@ 8: popl %ebx popl %esi - ret + RET SYM_FUNC_END(csum_partial) #else @@ -245,7 +245,7 @@ 90: popl %ebx popl %esi - ret + RET SYM_FUNC_END(csum_partial) #endif @@ -371,7 +371,7 @@ popl %esi popl %edi popl %ecx # equivalent to addl $4,%esp - ret + RET SYM_FUNC_END(csum_partial_copy_generic) #else @@ -447,7 +447,7 @@ popl %esi popl %edi popl %ebx - ret + RET SYM_FUNC_END(csum_partial_copy_generic) #undef ROUND only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/x86/lib/clear_page_64.S +++ linux-intel-iotg-5.15-5.15.0/arch/x86/lib/clear_page_64.S @@ -17,7 +17,7 @@ movl $4096/8,%ecx xorl %eax,%eax rep stosq - ret + RET SYM_FUNC_END(clear_page_rep) EXPORT_SYMBOL_GPL(clear_page_rep) @@ -39,7 +39,7 @@ leaq 64(%rdi),%rdi jnz .Lloop nop - ret + RET SYM_FUNC_END(clear_page_orig) EXPORT_SYMBOL_GPL(clear_page_orig) @@ -47,6 +47,6 @@ movl $4096,%ecx xorl %eax,%eax rep stosb - ret + RET SYM_FUNC_END(clear_page_erms) EXPORT_SYMBOL_GPL(clear_page_erms) only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/x86/lib/cmpxchg16b_emu.S +++ linux-intel-iotg-5.15-5.15.0/arch/x86/lib/cmpxchg16b_emu.S @@ -37,11 +37,11 @@ popfq mov $1, %al - ret + RET .Lnot_same: popfq xor %al,%al - ret + RET SYM_FUNC_END(this_cpu_cmpxchg16b_emu) only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/x86/lib/cmpxchg8b_emu.S +++ linux-intel-iotg-5.15-5.15.0/arch/x86/lib/cmpxchg8b_emu.S @@ -32,7 +32,7 @@ movl %ecx, 4(%esi) popfl - ret + RET .Lnot_same: movl (%esi), %eax @@ -40,7 +40,7 @@ movl 4(%esi), %edx popfl - ret + RET SYM_FUNC_END(cmpxchg8b_emu) EXPORT_SYMBOL(cmpxchg8b_emu) only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/x86/lib/copy_page_64.S +++ linux-intel-iotg-5.15-5.15.0/arch/x86/lib/copy_page_64.S @@ -17,7 +17,7 @@ ALTERNATIVE "jmp copy_page_regs", "", X86_FEATURE_REP_GOOD movl $4096/8, %ecx rep movsq - ret + RET SYM_FUNC_END(copy_page) EXPORT_SYMBOL(copy_page) @@ -85,5 +85,5 @@ movq (%rsp), %rbx movq 1*8(%rsp), %r12 addq $2*8, %rsp - ret + RET SYM_FUNC_END(copy_page_regs) only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/x86/lib/copy_user_64.S +++ linux-intel-iotg-5.15-5.15.0/arch/x86/lib/copy_user_64.S @@ -105,7 +105,7 @@ jnz 21b 23: xor %eax,%eax ASM_CLAC - ret + RET .section .fixup,"ax" 30: shll $6,%ecx @@ -173,7 +173,7 @@ movsb xorl %eax,%eax ASM_CLAC - ret + RET .section .fixup,"ax" 11: leal (%rdx,%rcx,8),%ecx @@ -207,7 +207,7 @@ movsb xorl %eax,%eax ASM_CLAC - ret + RET .section .fixup,"ax" 12: movl %ecx,%edx /* ecx is zerorest also */ @@ -239,7 +239,7 @@ 1: rep movsb 2: mov %ecx,%eax ASM_CLAC - ret + RET /* * Return zero to pretend that this copy succeeded. This @@ -250,7 +250,7 @@ */ 3: xorl %eax,%eax ASM_CLAC - ret + RET _ASM_EXTABLE_CPY(1b, 2b) SYM_CODE_END(.Lcopy_user_handle_tail) @@ -361,7 +361,7 @@ xorl %eax,%eax ASM_CLAC sfence - ret + RET .section .fixup,"ax" .L_fixup_4x8b_copy: only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/x86/lib/csum-copy_64.S +++ linux-intel-iotg-5.15-5.15.0/arch/x86/lib/csum-copy_64.S @@ -201,7 +201,7 @@ movq 3*8(%rsp), %r13 movq 4*8(%rsp), %r15 addq $5*8, %rsp - ret + RET .Lshort: movl %ecx, %r10d jmp .L1 only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/x86/lib/delay.c +++ linux-intel-iotg-5.15-5.15.0/arch/x86/lib/delay.c @@ -54,8 +54,8 @@ " jnz 2b \n" "3: dec %0 \n" - : /* we don't need output */ - :"a" (loops) + : "+a" (loops) + : ); } only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/x86/lib/error-inject.c +++ linux-intel-iotg-5.15-5.15.0/arch/x86/lib/error-inject.c @@ -1,5 +1,6 @@ // SPDX-License-Identifier: GPL-2.0 +#include #include #include @@ -10,7 +11,7 @@ ".type just_return_func, @function\n" ".globl just_return_func\n" "just_return_func:\n" - " ret\n" + ASM_RET ".size just_return_func, .-just_return_func\n" ); only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/x86/lib/getuser.S +++ linux-intel-iotg-5.15-5.15.0/arch/x86/lib/getuser.S @@ -57,7 +57,7 @@ 1: movzbl (%_ASM_AX),%edx xor %eax,%eax ASM_CLAC - ret + RET SYM_FUNC_END(__get_user_1) EXPORT_SYMBOL(__get_user_1) @@ -71,7 +71,7 @@ 2: movzwl (%_ASM_AX),%edx xor %eax,%eax ASM_CLAC - ret + RET SYM_FUNC_END(__get_user_2) EXPORT_SYMBOL(__get_user_2) @@ -85,7 +85,7 @@ 3: movl (%_ASM_AX),%edx xor %eax,%eax ASM_CLAC - ret + RET SYM_FUNC_END(__get_user_4) EXPORT_SYMBOL(__get_user_4) @@ -100,7 +100,7 @@ 4: movq (%_ASM_AX),%rdx xor %eax,%eax ASM_CLAC - ret + RET #else LOAD_TASK_SIZE_MINUS_N(7) cmp %_ASM_DX,%_ASM_AX @@ -112,7 +112,7 @@ 5: movl 4(%_ASM_AX),%ecx xor %eax,%eax ASM_CLAC - ret + RET #endif SYM_FUNC_END(__get_user_8) EXPORT_SYMBOL(__get_user_8) @@ -124,7 +124,7 @@ 6: movzbl (%_ASM_AX),%edx xor %eax,%eax ASM_CLAC - ret + RET SYM_FUNC_END(__get_user_nocheck_1) EXPORT_SYMBOL(__get_user_nocheck_1) @@ -134,7 +134,7 @@ 7: movzwl (%_ASM_AX),%edx xor %eax,%eax ASM_CLAC - ret + RET SYM_FUNC_END(__get_user_nocheck_2) EXPORT_SYMBOL(__get_user_nocheck_2) @@ -144,7 +144,7 @@ 8: movl (%_ASM_AX),%edx xor %eax,%eax ASM_CLAC - ret + RET SYM_FUNC_END(__get_user_nocheck_4) EXPORT_SYMBOL(__get_user_nocheck_4) @@ -159,7 +159,7 @@ #endif xor %eax,%eax ASM_CLAC - ret + RET SYM_FUNC_END(__get_user_nocheck_8) EXPORT_SYMBOL(__get_user_nocheck_8) @@ -169,7 +169,7 @@ bad_get_user: xor %edx,%edx mov $(-EFAULT),%_ASM_AX - ret + RET SYM_CODE_END(.Lbad_get_user_clac) #ifdef CONFIG_X86_32 @@ -179,7 +179,7 @@ xor %edx,%edx xor %ecx,%ecx mov $(-EFAULT),%_ASM_AX - ret + RET SYM_CODE_END(.Lbad_get_user_8_clac) #endif only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/x86/lib/hweight.S +++ linux-intel-iotg-5.15-5.15.0/arch/x86/lib/hweight.S @@ -32,7 +32,7 @@ imull $0x01010101, %eax, %eax # w_tmp *= 0x01010101 shrl $24, %eax # w = w_tmp >> 24 __ASM_SIZE(pop,) %__ASM_REG(dx) - ret + RET SYM_FUNC_END(__sw_hweight32) EXPORT_SYMBOL(__sw_hweight32) @@ -65,7 +65,7 @@ popq %rdx popq %rdi - ret + RET #else /* CONFIG_X86_32 */ /* We're getting an u64 arg in (%eax,%edx): unsigned long hweight64(__u64 w) */ pushl %ecx @@ -77,7 +77,7 @@ addl %ecx, %eax # result popl %ecx - ret + RET #endif SYM_FUNC_END(__sw_hweight64) EXPORT_SYMBOL(__sw_hweight64) only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/x86/lib/iomap_copy_64.S +++ linux-intel-iotg-5.15-5.15.0/arch/x86/lib/iomap_copy_64.S @@ -11,5 +11,5 @@ SYM_FUNC_START(__iowrite32_copy) movl %edx,%ecx rep movsd - ret + RET SYM_FUNC_END(__iowrite32_copy) only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/x86/lib/memcpy_64.S +++ linux-intel-iotg-5.15-5.15.0/arch/x86/lib/memcpy_64.S @@ -39,7 +39,7 @@ rep movsq movl %edx, %ecx rep movsb - ret + RET SYM_FUNC_END(memcpy) SYM_FUNC_END_ALIAS(__memcpy) EXPORT_SYMBOL(memcpy) @@ -53,7 +53,7 @@ movq %rdi, %rax movq %rdx, %rcx rep movsb - ret + RET SYM_FUNC_END(memcpy_erms) SYM_FUNC_START_LOCAL(memcpy_orig) @@ -137,7 +137,7 @@ movq %r9, 1*8(%rdi) movq %r10, -2*8(%rdi, %rdx) movq %r11, -1*8(%rdi, %rdx) - retq + RET .p2align 4 .Lless_16bytes: cmpl $8, %edx @@ -149,7 +149,7 @@ movq -1*8(%rsi, %rdx), %r9 movq %r8, 0*8(%rdi) movq %r9, -1*8(%rdi, %rdx) - retq + RET .p2align 4 .Lless_8bytes: cmpl $4, %edx @@ -162,7 +162,7 @@ movl -4(%rsi, %rdx), %r8d movl %ecx, (%rdi) movl %r8d, -4(%rdi, %rdx) - retq + RET .p2align 4 .Lless_3bytes: subl $1, %edx @@ -180,7 +180,7 @@ movb %cl, (%rdi) .Lend: - retq + RET SYM_FUNC_END(memcpy_orig) .popsection only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/x86/lib/memmove_64.S +++ linux-intel-iotg-5.15-5.15.0/arch/x86/lib/memmove_64.S @@ -40,7 +40,7 @@ /* FSRM implies ERMS => no length checks, do the copy directly */ .Lmemmove_begin_forward: ALTERNATIVE "cmp $0x20, %rdx; jb 1f", "", X86_FEATURE_FSRM - ALTERNATIVE "", "movq %rdx, %rcx; rep movsb; retq", X86_FEATURE_ERMS + ALTERNATIVE "", "jmp .Lmemmove_erms", X86_FEATURE_ERMS /* * movsq instruction have many startup latency @@ -205,7 +205,12 @@ movb (%rsi), %r11b movb %r11b, (%rdi) 13: - retq + RET + +.Lmemmove_erms: + movq %rdx, %rcx + rep movsb + RET SYM_FUNC_END(__memmove) SYM_FUNC_END_ALIAS(memmove) EXPORT_SYMBOL(__memmove) only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/x86/lib/memset_64.S +++ linux-intel-iotg-5.15-5.15.0/arch/x86/lib/memset_64.S @@ -40,7 +40,7 @@ movl %edx,%ecx rep stosb movq %r9,%rax - ret + RET SYM_FUNC_END(__memset) SYM_FUNC_END_ALIAS(memset) EXPORT_SYMBOL(memset) @@ -63,7 +63,7 @@ movq %rdx,%rcx rep stosb movq %r9,%rax - ret + RET SYM_FUNC_END(memset_erms) SYM_FUNC_START_LOCAL(memset_orig) @@ -125,7 +125,7 @@ .Lende: movq %r10,%rax - ret + RET .Lbad_alignment: cmpq $7,%rdx only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/x86/lib/msr-reg.S +++ linux-intel-iotg-5.15-5.15.0/arch/x86/lib/msr-reg.S @@ -35,7 +35,7 @@ movl %edi, 28(%r10) popq %r12 popq %rbx - ret + RET 3: movl $-EIO, %r11d jmp 2b @@ -77,7 +77,7 @@ popl %esi popl %ebp popl %ebx - ret + RET 3: movl $-EIO, 4(%esp) jmp 2b only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/x86/lib/putuser.S +++ linux-intel-iotg-5.15-5.15.0/arch/x86/lib/putuser.S @@ -52,7 +52,7 @@ 1: movb %al,(%_ASM_CX) xor %ecx,%ecx ASM_CLAC - ret + RET SYM_FUNC_END(__put_user_1) EXPORT_SYMBOL(__put_user_1) EXPORT_SYMBOL(__put_user_nocheck_1) @@ -66,7 +66,7 @@ 2: movw %ax,(%_ASM_CX) xor %ecx,%ecx ASM_CLAC - ret + RET SYM_FUNC_END(__put_user_2) EXPORT_SYMBOL(__put_user_2) EXPORT_SYMBOL(__put_user_nocheck_2) @@ -80,7 +80,7 @@ 3: movl %eax,(%_ASM_CX) xor %ecx,%ecx ASM_CLAC - ret + RET SYM_FUNC_END(__put_user_4) EXPORT_SYMBOL(__put_user_4) EXPORT_SYMBOL(__put_user_nocheck_4) only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/x86/lib/usercopy_64.c +++ linux-intel-iotg-5.15-5.15.0/arch/x86/lib/usercopy_64.c @@ -121,7 +121,7 @@ /* cache copy and flush to align dest */ if (!IS_ALIGNED(dest, 8)) { - unsigned len = min_t(unsigned, size, ALIGN(dest, 8) - dest); + size_t len = min_t(size_t, size, ALIGN(dest, 8) - dest); memcpy((void *) dest, (void *) source, len); clean_cache_range((void *) dest, len); only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/x86/math-emu/div_Xsig.S +++ linux-intel-iotg-5.15-5.15.0/arch/x86/math-emu/div_Xsig.S @@ -341,7 +341,7 @@ popl %esi leave - ret + RET #ifdef PARANOID only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/x86/math-emu/div_small.S +++ linux-intel-iotg-5.15-5.15.0/arch/x86/math-emu/div_small.S @@ -44,5 +44,5 @@ popl %esi leave - ret + RET SYM_FUNC_END(FPU_div_small) only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/x86/math-emu/mul_Xsig.S +++ linux-intel-iotg-5.15-5.15.0/arch/x86/math-emu/mul_Xsig.S @@ -62,7 +62,7 @@ popl %esi leave - ret + RET SYM_FUNC_END(mul32_Xsig) @@ -115,7 +115,7 @@ popl %esi leave - ret + RET SYM_FUNC_END(mul64_Xsig) @@ -175,5 +175,5 @@ popl %esi leave - ret + RET SYM_FUNC_END(mul_Xsig_Xsig) only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/x86/math-emu/polynom_Xsig.S +++ linux-intel-iotg-5.15-5.15.0/arch/x86/math-emu/polynom_Xsig.S @@ -133,5 +133,5 @@ popl %edi popl %esi leave - ret + RET SYM_FUNC_END(polynomial_Xsig) only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/x86/math-emu/reg_norm.S +++ linux-intel-iotg-5.15-5.15.0/arch/x86/math-emu/reg_norm.S @@ -72,7 +72,7 @@ L_exit: popl %ebx leave - ret + RET L_zero: @@ -138,7 +138,7 @@ popl %ebx leave - ret + RET L_exit_nuo_zero: movl TAG_Zero,%eax @@ -146,5 +146,5 @@ popl %ebx leave - ret + RET SYM_FUNC_END(FPU_normalize_nuo) only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/x86/math-emu/reg_round.S +++ linux-intel-iotg-5.15-5.15.0/arch/x86/math-emu/reg_round.S @@ -437,7 +437,7 @@ popl %edi popl %esi leave - ret + RET /* only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/x86/math-emu/reg_u_add.S +++ linux-intel-iotg-5.15-5.15.0/arch/x86/math-emu/reg_u_add.S @@ -164,6 +164,6 @@ popl %edi popl %esi leave - ret + RET #endif /* PARANOID */ SYM_FUNC_END(FPU_u_add) only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/x86/math-emu/reg_u_div.S +++ linux-intel-iotg-5.15-5.15.0/arch/x86/math-emu/reg_u_div.S @@ -468,7 +468,7 @@ popl %esi leave - ret + RET #endif /* PARANOID */ SYM_FUNC_END(FPU_u_div) only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/x86/math-emu/reg_u_mul.S +++ linux-intel-iotg-5.15-5.15.0/arch/x86/math-emu/reg_u_mul.S @@ -144,7 +144,7 @@ popl %edi popl %esi leave - ret + RET #endif /* PARANOID */ SYM_FUNC_END(FPU_u_mul) only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/x86/math-emu/reg_u_sub.S +++ linux-intel-iotg-5.15-5.15.0/arch/x86/math-emu/reg_u_sub.S @@ -270,5 +270,5 @@ popl %edi popl %esi leave - ret + RET SYM_FUNC_END(FPU_u_sub) only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/x86/math-emu/round_Xsig.S +++ linux-intel-iotg-5.15-5.15.0/arch/x86/math-emu/round_Xsig.S @@ -78,7 +78,7 @@ popl %esi popl %ebx leave - ret + RET SYM_FUNC_END(round_Xsig) @@ -138,5 +138,5 @@ popl %esi popl %ebx leave - ret + RET SYM_FUNC_END(norm_Xsig) only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/x86/math-emu/shr_Xsig.S +++ linux-intel-iotg-5.15-5.15.0/arch/x86/math-emu/shr_Xsig.S @@ -45,7 +45,7 @@ popl %ebx popl %esi leave - ret + RET L_more_than_31: cmpl $64,%ecx @@ -61,7 +61,7 @@ movl $0,8(%esi) popl %esi leave - ret + RET L_more_than_63: cmpl $96,%ecx @@ -76,7 +76,7 @@ movl %edx,8(%esi) popl %esi leave - ret + RET L_more_than_95: xorl %eax,%eax @@ -85,5 +85,5 @@ movl %eax,8(%esi) popl %esi leave - ret + RET SYM_FUNC_END(shr_Xsig) only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/x86/math-emu/wm_shrx.S +++ linux-intel-iotg-5.15-5.15.0/arch/x86/math-emu/wm_shrx.S @@ -55,7 +55,7 @@ popl %ebx popl %esi leave - ret + RET L_more_than_31: cmpl $64,%ecx @@ -70,7 +70,7 @@ movl $0,4(%esi) popl %esi leave - ret + RET L_more_than_63: cmpl $96,%ecx @@ -84,7 +84,7 @@ movl %edx,4(%esi) popl %esi leave - ret + RET L_more_than_95: xorl %eax,%eax @@ -92,7 +92,7 @@ movl %eax,4(%esi) popl %esi leave - ret + RET SYM_FUNC_END(FPU_shrx) @@ -146,7 +146,7 @@ popl %ebx popl %esi leave - ret + RET /* Shift by [0..31] bits */ Ls_less_than_32: @@ -163,7 +163,7 @@ popl %ebx popl %esi leave - ret + RET /* Shift by [64..95] bits */ Ls_more_than_63: @@ -189,7 +189,7 @@ popl %ebx popl %esi leave - ret + RET Ls_more_than_95: /* Shift by [96..inf) bits */ @@ -203,5 +203,5 @@ popl %ebx popl %esi leave - ret + RET SYM_FUNC_END(FPU_shrxs) only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/x86/mm/init_64.c +++ linux-intel-iotg-5.15-5.15.0/arch/x86/mm/init_64.c @@ -902,6 +902,8 @@ static void __meminit vmemmap_use_new_sub_pmd(unsigned long start, unsigned long end) { + const unsigned long page = ALIGN_DOWN(start, PMD_SIZE); + vmemmap_flush_unused_pmd(); /* @@ -914,8 +916,7 @@ * Mark with PAGE_UNUSED the unused parts of the new memmap range */ if (!IS_ALIGNED(start, PMD_SIZE)) - memset((void *)start, PAGE_UNUSED, - start - ALIGN_DOWN(start, PMD_SIZE)); + memset((void *)page, PAGE_UNUSED, start - page); /* * We want to avoid memset(PAGE_UNUSED) when populating the vmemmap of only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/x86/mm/mem_encrypt_boot.S +++ linux-intel-iotg-5.15-5.15.0/arch/x86/mm/mem_encrypt_boot.S @@ -65,7 +65,10 @@ movq %rbp, %rsp /* Restore original stack pointer */ pop %rbp + /* Offset to __x86_return_thunk would be wrong here */ + ANNOTATE_UNRET_SAFE ret + int3 SYM_FUNC_END(sme_encrypt_execute) SYM_FUNC_START(__enc_copy) @@ -151,6 +154,9 @@ pop %r12 pop %r15 + /* Offset to __x86_return_thunk would be wrong here */ + ANNOTATE_UNRET_SAFE ret + int3 .L__enc_copy_end: SYM_FUNC_END(__enc_copy) only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/x86/mm/pat/memtype.c +++ linux-intel-iotg-5.15-5.15.0/arch/x86/mm/pat/memtype.c @@ -101,7 +101,7 @@ static int __init pat_debug_setup(char *str) { pat_debug_enable = 1; - return 0; + return 1; } __setup("debugpat", pat_debug_setup); only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/x86/pci/acpi.c +++ linux-intel-iotg-5.15-5.15.0/arch/x86/pci/acpi.c @@ -19,6 +19,7 @@ #endif }; +bool pci_use_e820 = true; static bool pci_use_crs = true; static bool pci_ignore_seg = false; @@ -41,6 +42,14 @@ return 0; } +static int __init set_no_e820(const struct dmi_system_id *id) +{ + printk(KERN_INFO "PCI: %s detected: not clipping E820 regions from _CRS\n", + id->ident); + pci_use_e820 = false; + return 0; +} + static const struct dmi_system_id pci_crs_quirks[] __initconst = { /* http://bugzilla.kernel.org/show_bug.cgi?id=14183 */ { @@ -135,6 +144,51 @@ DMI_MATCH(DMI_PRODUCT_NAME, "HP xw9300 Workstation"), }, }, + + /* + * Many Lenovo models with "IIL" in their DMI_PRODUCT_VERSION have + * an E820 reserved region that covers the entire 32-bit host + * bridge memory window from _CRS. Using the E820 region to clip + * _CRS means no space is available for hot-added or uninitialized + * PCI devices. This typically breaks I2C controllers for touchpads + * and hot-added Thunderbolt devices. See the commit log for + * models known to require this quirk and related bug reports. + */ + { + .callback = set_no_e820, + .ident = "Lenovo *IIL* product version", + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"), + DMI_MATCH(DMI_PRODUCT_VERSION, "IIL"), + }, + }, + + /* + * The Acer Spin 5 (SP513-54N) has the same E820 reservation covering + * the entire _CRS 32-bit window issue as the Lenovo *IIL* models. + * See https://bugs.launchpad.net/bugs/1884232 + */ + { + .callback = set_no_e820, + .ident = "Acer Spin 5 (SP513-54N)", + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "Acer"), + DMI_MATCH(DMI_PRODUCT_NAME, "Spin SP513-54N"), + }, + }, + + /* + * Clevo X170KM-G barebones have the same E820 reservation covering + * the entire _CRS 32-bit window issue as the Lenovo *IIL* models. + * See https://bugzilla.kernel.org/show_bug.cgi?id=214259 + */ + { + .callback = set_no_e820, + .ident = "Clevo X170KM-G Barebone", + .matches = { + DMI_MATCH(DMI_BOARD_NAME, "X170KM-G"), + }, + }, {} }; @@ -160,6 +214,17 @@ "if necessary, use \"pci=%s\" and report a bug\n", pci_use_crs ? "Using" : "Ignoring", pci_use_crs ? "nocrs" : "use_crs"); + + /* "pci=use_e820"/"pci=no_e820" on the kernel cmdline takes precedence */ + if (pci_probe & PCI_NO_E820) + pci_use_e820 = false; + else if (pci_probe & PCI_USE_E820) + pci_use_e820 = true; + + printk(KERN_INFO "PCI: %s E820 reservations for host bridge windows\n", + pci_use_e820 ? "Using" : "Ignoring"); + if (pci_probe & (PCI_NO_E820 | PCI_USE_E820)) + printk(KERN_INFO "PCI: Please notify linux-pci@vger.kernel.org so future kernels can this automatically\n"); } #ifdef CONFIG_PCI_MMCONFIG @@ -299,6 +364,7 @@ int status; status = acpi_pci_probe_root_resources(ci); + if (pci_use_crs) { resource_list_for_each_entry_safe(entry, tmp, &ci->resources) if (resource_is_pcicfg_ioport(entry->res)) only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/x86/pci/irq.c +++ linux-intel-iotg-5.15-5.15.0/arch/x86/pci/irq.c @@ -253,6 +253,15 @@ pc_conf_set(reg, x); } +/* + * FinALi pirq rules are as follows: + * + * - bit 0 selects between INTx Routing Table Mapping Registers, + * + * - bit 3 selects the nibble within the INTx Routing Table Mapping Register, + * + * - bits 7:4 map to bits 3:0 of the PCI INTx Sensitivity Register. + */ static int pirq_finali_get(struct pci_dev *router, struct pci_dev *dev, int pirq) { @@ -260,11 +269,13 @@ 0, 9, 3, 10, 4, 5, 7, 6, 0, 11, 0, 12, 0, 14, 0, 15 }; unsigned long flags; + u8 index; u8 x; + index = (pirq & 1) << 1 | (pirq & 8) >> 3; raw_spin_lock_irqsave(&pc_conf_lock, flags); pc_conf_set(PC_CONF_FINALI_LOCK, PC_CONF_FINALI_LOCK_KEY); - x = irqmap[read_pc_conf_nybble(PC_CONF_FINALI_PCI_INTX_RT1, pirq - 1)]; + x = irqmap[read_pc_conf_nybble(PC_CONF_FINALI_PCI_INTX_RT1, index)]; pc_conf_set(PC_CONF_FINALI_LOCK, 0); raw_spin_unlock_irqrestore(&pc_conf_lock, flags); return x; @@ -278,13 +289,15 @@ }; u8 val = irqmap[irq]; unsigned long flags; + u8 index; if (!val) return 0; + index = (pirq & 1) << 1 | (pirq & 8) >> 3; raw_spin_lock_irqsave(&pc_conf_lock, flags); pc_conf_set(PC_CONF_FINALI_LOCK, PC_CONF_FINALI_LOCK_KEY); - write_pc_conf_nybble(PC_CONF_FINALI_PCI_INTX_RT1, pirq - 1, val); + write_pc_conf_nybble(PC_CONF_FINALI_PCI_INTX_RT1, index, val); pc_conf_set(PC_CONF_FINALI_LOCK, 0); raw_spin_unlock_irqrestore(&pc_conf_lock, flags); return 1; @@ -293,7 +306,7 @@ static int pirq_finali_lvl(struct pci_dev *router, struct pci_dev *dev, int pirq, int irq) { - u8 mask = ~(1u << (pirq - 1)); + u8 mask = ~((pirq & 0xf0u) >> 4); unsigned long flags; u8 trig; only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/x86/pci/xen.c +++ linux-intel-iotg-5.15-5.15.0/arch/x86/pci/xen.c @@ -472,7 +472,6 @@ xen_msi_ops.setup_msi_irqs = xen_setup_msi_irqs; } xen_msi_ops.teardown_msi_irqs = xen_pv_teardown_msi_irqs; - pci_msi_ignore_mask = 1; } else if (xen_hvm_domain()) { xen_msi_ops.setup_msi_irqs = xen_hvm_setup_msi_irqs; xen_msi_ops.teardown_msi_irqs = xen_teardown_msi_irqs; @@ -486,6 +485,11 @@ * in allocating the native domain and never use it. */ x86_init.irqs.create_pci_msi_domain = xen_create_pci_msi_domain; + /* + * With XEN PIRQ/Eventchannels in use PCI/MSI[-X] masking is solely + * controlled by the hypervisor. + */ + pci_msi_ignore_mask = 1; } #else /* CONFIG_PCI_MSI */ only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/x86/platform/efi/efi_stub_32.S +++ linux-intel-iotg-5.15-5.15.0/arch/x86/platform/efi/efi_stub_32.S @@ -56,5 +56,5 @@ movl 16(%esp), %ebx leave - ret + RET SYM_FUNC_END(efi_call_svam) only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/x86/platform/efi/efi_stub_64.S +++ linux-intel-iotg-5.15-5.15.0/arch/x86/platform/efi/efi_stub_64.S @@ -23,5 +23,5 @@ mov %rsi, %rcx CALL_NOSPEC rdi leave - ret + RET SYM_FUNC_END(__efi_call) only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/x86/platform/efi/efi_thunk_64.S +++ linux-intel-iotg-5.15-5.15.0/arch/x86/platform/efi/efi_thunk_64.S @@ -22,6 +22,7 @@ #include #include #include +#include .text .code64 @@ -63,7 +64,9 @@ 1: movq 24(%rsp), %rsp pop %rbx pop %rbp - retq + ANNOTATE_UNRET_SAFE + ret + int3 .code32 2: pushl $__KERNEL_CS only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/x86/platform/olpc/xo1-wakeup.S +++ linux-intel-iotg-5.15-5.15.0/arch/x86/platform/olpc/xo1-wakeup.S @@ -77,7 +77,7 @@ pushfl popl saved_context_eflags - ret + RET restore_registers: movl saved_context_ebp, %ebp @@ -88,7 +88,7 @@ pushl saved_context_eflags popfl - ret + RET SYM_CODE_START(do_olpc_suspend_lowlevel) call save_processor_state @@ -109,7 +109,7 @@ call restore_registers call restore_processor_state - ret + RET SYM_CODE_END(do_olpc_suspend_lowlevel) .data only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/x86/power/hibernate_asm_32.S +++ linux-intel-iotg-5.15-5.15.0/arch/x86/power/hibernate_asm_32.S @@ -32,7 +32,7 @@ FRAME_BEGIN call swsusp_save FRAME_END - ret + RET SYM_FUNC_END(swsusp_arch_suspend) SYM_CODE_START(restore_image) @@ -108,5 +108,5 @@ /* tell the hibernation core that we've just restored the memory */ movl %eax, in_suspend - ret + RET SYM_FUNC_END(restore_registers) only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/x86/power/hibernate_asm_64.S +++ linux-intel-iotg-5.15-5.15.0/arch/x86/power/hibernate_asm_64.S @@ -66,7 +66,7 @@ /* tell the hibernation core that we've just restored the memory */ movq %rax, in_suspend(%rip) - ret + RET SYM_FUNC_END(restore_registers) SYM_FUNC_START(swsusp_arch_suspend) @@ -96,7 +96,7 @@ FRAME_BEGIN call swsusp_save FRAME_END - ret + RET SYM_FUNC_END(swsusp_arch_suspend) SYM_FUNC_START(restore_image) only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/x86/um/checksum_32.S +++ linux-intel-iotg-5.15-5.15.0/arch/x86/um/checksum_32.S @@ -110,7 +110,7 @@ 7: popl %ebx popl %esi - ret + RET #else @@ -208,7 +208,7 @@ 80: popl %ebx popl %esi - ret + RET #endif EXPORT_SYMBOL(csum_partial) only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/x86/um/ldt.c +++ linux-intel-iotg-5.15-5.15.0/arch/x86/um/ldt.c @@ -23,9 +23,11 @@ { long res; void *stub_addr; + + BUILD_BUG_ON(sizeof(*desc) % sizeof(long)); + res = syscall_stub_data(mm_idp, (unsigned long *)desc, - (sizeof(*desc) + sizeof(long) - 1) & - ~(sizeof(long) - 1), + sizeof(*desc) / sizeof(long), addr, &stub_addr); if (!res) { unsigned long args[] = { func, only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/x86/um/setjmp_32.S +++ linux-intel-iotg-5.15-5.15.0/arch/x86/um/setjmp_32.S @@ -34,7 +34,7 @@ movl %esi,12(%edx) movl %edi,16(%edx) movl %ecx,20(%edx) # Return address - ret + RET .size kernel_setjmp,.-kernel_setjmp only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/x86/um/setjmp_64.S +++ linux-intel-iotg-5.15-5.15.0/arch/x86/um/setjmp_64.S @@ -33,7 +33,7 @@ movq %r14,40(%rdi) movq %r15,48(%rdi) movq %rsi,56(%rdi) # Return address - ret + RET .size kernel_setjmp,.-kernel_setjmp only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/x86/um/shared/sysdep/syscalls_64.h +++ linux-intel-iotg-5.15-5.15.0/arch/x86/um/shared/sysdep/syscalls_64.h @@ -10,13 +10,12 @@ #include #include -typedef long syscall_handler_t(void); +typedef long syscall_handler_t(long, long, long, long, long, long); extern syscall_handler_t *sys_call_table[]; #define EXECUTE_SYSCALL(syscall, regs) \ - (((long (*)(long, long, long, long, long, long)) \ - (*sys_call_table[syscall]))(UPT_SYSCALL_ARG1(®s->regs), \ + (((*sys_call_table[syscall]))(UPT_SYSCALL_ARG1(®s->regs), \ UPT_SYSCALL_ARG2(®s->regs), \ UPT_SYSCALL_ARG3(®s->regs), \ UPT_SYSCALL_ARG4(®s->regs), \ only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/x86/xen/setup.c +++ linux-intel-iotg-5.15-5.15.0/arch/x86/xen/setup.c @@ -922,7 +922,7 @@ if (!boot_cpu_has(sysenter_feature)) return; - ret = register_callback(CALLBACKTYPE_sysenter, xen_sysenter_target); + ret = register_callback(CALLBACKTYPE_sysenter, xen_entry_SYSENTER_compat); if(ret != 0) setup_clear_cpu_cap(sysenter_feature); } @@ -931,7 +931,7 @@ { int ret; - ret = register_callback(CALLBACKTYPE_syscall, xen_syscall_target); + ret = register_callback(CALLBACKTYPE_syscall, xen_entry_SYSCALL_64); if (ret != 0) { printk(KERN_ERR "Failed to set syscall callback: %d\n", ret); /* Pretty fatal; 64-bit userspace has no other @@ -940,7 +940,7 @@ if (boot_cpu_has(X86_FEATURE_SYSCALL32)) { ret = register_callback(CALLBACKTYPE_syscall32, - xen_syscall32_target); + xen_entry_SYSCALL_compat); if (ret != 0) setup_clear_cpu_cap(X86_FEATURE_SYSCALL32); } only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/x86/xen/xen-head.S +++ linux-intel-iotg-5.15-5.15.0/arch/x86/xen/xen-head.S @@ -70,7 +70,8 @@ .rept (PAGE_SIZE / 32) UNWIND_HINT_FUNC .skip 31, 0x90 - ret + ANNOTATE_UNRET_SAFE + RET .endr #define HYPERCALL(n) \ only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/x86/xen/xen-ops.h +++ linux-intel-iotg-5.15-5.15.0/arch/x86/xen/xen-ops.h @@ -10,10 +10,10 @@ /* These are code, but not functions. Defined in entry.S */ extern const char xen_failsafe_callback[]; -void xen_sysenter_target(void); +void xen_entry_SYSENTER_compat(void); #ifdef CONFIG_X86_64 -void xen_syscall_target(void); -void xen_syscall32_target(void); +void xen_entry_SYSCALL_64(void); +void xen_entry_SYSCALL_compat(void); #endif extern void *xen_initial_gdt; only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/xtensa/include/asm/timex.h +++ linux-intel-iotg-5.15-5.15.0/arch/xtensa/include/asm/timex.h @@ -29,10 +29,6 @@ extern unsigned long ccount_freq; -typedef unsigned long long cycles_t; - -#define get_cycles() (0) - void local_timer_setup(unsigned cpu); /* @@ -59,4 +55,6 @@ xtensa_set_sr(ccompare, SREG_CCOMPARE + LINUX_TIMER); } +#include + #endif /* _XTENSA_TIMEX_H */ only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/xtensa/kernel/coprocessor.S +++ linux-intel-iotg-5.15-5.15.0/arch/xtensa/kernel/coprocessor.S @@ -29,7 +29,7 @@ .if XTENSA_HAVE_COPROCESSOR(x); \ .align 4; \ .Lsave_cp_regs_cp##x: \ - xchal_cp##x##_store a2 a4 a5 a6 a7; \ + xchal_cp##x##_store a2 a3 a4 a5 a6; \ jx a0; \ .endif @@ -46,7 +46,7 @@ .if XTENSA_HAVE_COPROCESSOR(x); \ .align 4; \ .Lload_cp_regs_cp##x: \ - xchal_cp##x##_load a2 a4 a5 a6 a7; \ + xchal_cp##x##_load a2 a3 a4 a5 a6; \ jx a0; \ .endif only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/xtensa/kernel/ptrace.c +++ linux-intel-iotg-5.15-5.15.0/arch/xtensa/kernel/ptrace.c @@ -226,12 +226,12 @@ void user_enable_single_step(struct task_struct *child) { - child->ptrace |= PT_SINGLESTEP; + set_tsk_thread_flag(child, TIF_SINGLESTEP); } void user_disable_single_step(struct task_struct *child) { - child->ptrace &= ~PT_SINGLESTEP; + clear_tsk_thread_flag(child, TIF_SINGLESTEP); } /* only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/xtensa/kernel/signal.c +++ linux-intel-iotg-5.15-5.15.0/arch/xtensa/kernel/signal.c @@ -465,7 +465,7 @@ /* Set up the stack frame */ ret = setup_frame(&ksig, sigmask_to_save(), regs); signal_setup_done(ret, &ksig, 0); - if (current->ptrace & PT_SINGLESTEP) + if (test_thread_flag(TIF_SINGLESTEP)) task_pt_regs(current)->icountlevel = 1; return; @@ -491,7 +491,7 @@ /* If there's no signal to deliver, we just restore the saved mask. */ restore_saved_sigmask(); - if (current->ptrace & PT_SINGLESTEP) + if (test_thread_flag(TIF_SINGLESTEP)) task_pt_regs(current)->icountlevel = 1; return; } only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/xtensa/platforms/iss/console.c +++ linux-intel-iotg-5.15-5.15.0/arch/xtensa/platforms/iss/console.c @@ -36,24 +36,19 @@ static struct tty_driver *serial_driver; static struct tty_port serial_port; static DEFINE_TIMER(serial_timer, rs_poll); -static DEFINE_SPINLOCK(timer_lock); static int rs_open(struct tty_struct *tty, struct file * filp) { - spin_lock_bh(&timer_lock); if (tty->count == 1) mod_timer(&serial_timer, jiffies + SERIAL_TIMER_VALUE); - spin_unlock_bh(&timer_lock); return 0; } static void rs_close(struct tty_struct *tty, struct file * filp) { - spin_lock_bh(&timer_lock); if (tty->count == 1) del_timer_sync(&serial_timer); - spin_unlock_bh(&timer_lock); } @@ -73,8 +68,6 @@ int rd = 1; unsigned char c; - spin_lock(&timer_lock); - while (simc_poll(0)) { rd = simc_read(0, &c, 1); if (rd <= 0) @@ -87,7 +80,6 @@ tty_flip_buffer_push(port); if (rd) mod_timer(&serial_timer, jiffies + SERIAL_TIMER_VALUE); - spin_unlock(&timer_lock); } only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/arch/xtensa/platforms/iss/simdisk.c +++ linux-intel-iotg-5.15-5.15.0/arch/xtensa/platforms/iss/simdisk.c @@ -212,12 +212,18 @@ struct simdisk *dev = PDE_DATA(file_inode(file)); const char *s = dev->filename; if (s) { - ssize_t n = simple_read_from_buffer(buf, size, ppos, - s, strlen(s)); - if (n < 0) - return n; - buf += n; - size -= n; + ssize_t len = strlen(s); + char *temp = kmalloc(len + 2, GFP_KERNEL); + + if (!temp) + return -ENOMEM; + + len = scnprintf(temp, len + 2, "%s\n", s); + len = simple_read_from_buffer(buf, size, ppos, + temp, len); + + kfree(temp); + return len; } return simple_read_from_buffer(buf, size, ppos, "\n", 1); } only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/block/bdev.c +++ linux-intel-iotg-5.15-5.15.0/block/bdev.c @@ -1016,7 +1016,7 @@ } EXPORT_SYMBOL(__invalidate_device); -void iterate_bdevs(void (*func)(struct block_device *, void *), void *arg) +void sync_bdevs(bool wait) { struct inode *inode, *old_inode = NULL; @@ -1047,8 +1047,19 @@ bdev = I_BDEV(inode); mutex_lock(&bdev->bd_disk->open_mutex); - if (bdev->bd_openers) - func(bdev, arg); + if (!bdev->bd_openers) { + ; /* skip */ + } else if (wait) { + /* + * We keep the error status of individual mapping so + * that applications can catch the writeback error using + * fsync(2). See filemap_fdatawait_keep_errors() for + * details. + */ + filemap_fdatawait_keep_errors(inode->i_mapping); + } else { + filemap_fdatawrite(inode->i_mapping); + } mutex_unlock(&bdev->bd_disk->open_mutex); spin_lock(&blockdev_superblock->s_inode_list_lock); only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/block/bfq-iosched.h +++ linux-intel-iotg-5.15-5.15.0/block/bfq-iosched.h @@ -466,6 +466,7 @@ struct bfq_queue *stable_merge_bfqq; bool stably_merged; /* non splittable if true */ + unsigned int requests; /* Number of requests this process has in flight */ }; /** @@ -925,6 +926,8 @@ /* reference counter (see comments in bfq_bic_update_cgroup) */ int ref; + /* Is bfq_group still online? */ + bool online; struct bfq_entity entity; struct bfq_sched_data sched_data; @@ -976,6 +979,7 @@ void bfq_bfqq_expire(struct bfq_data *bfqd, struct bfq_queue *bfqq, bool compensate, enum bfqq_expiration reason); void bfq_put_queue(struct bfq_queue *bfqq); +void bfq_put_cooperator(struct bfq_queue *bfqq); void bfq_end_wr_async_queues(struct bfq_data *bfqd, struct bfq_group *bfqg); void bfq_release_process_ref(struct bfq_data *bfqd, struct bfq_queue *bfqq); void bfq_schedule_dispatch(struct bfq_data *bfqd); @@ -1003,8 +1007,7 @@ void bfq_init_entity(struct bfq_entity *entity, struct bfq_group *bfqg); void bfq_bic_update_cgroup(struct bfq_io_cq *bic, struct bio *bio); void bfq_end_wr_async(struct bfq_data *bfqd); -struct bfq_group *bfq_find_set_group(struct bfq_data *bfqd, - struct blkcg *blkcg); +struct bfq_group *bfq_bio_bfqg(struct bfq_data *bfqd, struct bio *bio); struct blkcg_gq *bfqg_to_blkg(struct bfq_group *bfqg); struct bfq_group *bfqq_group(struct bfq_queue *bfqq); struct bfq_group *bfq_create_group_hierarchy(struct bfq_data *bfqd, int node); only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/block/blk-iolatency.c +++ linux-intel-iotg-5.15-5.15.0/block/blk-iolatency.c @@ -86,7 +86,17 @@ struct blk_iolatency { struct rq_qos rqos; struct timer_list timer; - atomic_t enabled; + + /* + * ->enabled is the master enable switch gating the throttling logic and + * inflight tracking. The number of cgroups which have iolat enabled is + * tracked in ->enable_cnt, and ->enable is flipped on/off accordingly + * from ->enable_work with the request_queue frozen. For details, See + * blkiolatency_enable_work_fn(). + */ + bool enabled; + atomic_t enable_cnt; + struct work_struct enable_work; }; static inline struct blk_iolatency *BLKIOLATENCY(struct rq_qos *rqos) @@ -94,11 +104,6 @@ return container_of(rqos, struct blk_iolatency, rqos); } -static inline bool blk_iolatency_enabled(struct blk_iolatency *blkiolat) -{ - return atomic_read(&blkiolat->enabled) > 0; -} - struct child_latency_info { spinlock_t lock; @@ -463,7 +468,7 @@ struct blkcg_gq *blkg = bio->bi_blkg; bool issue_as_root = bio_issue_as_root_blkg(bio); - if (!blk_iolatency_enabled(blkiolat)) + if (!blkiolat->enabled) return; while (blkg && blkg->parent) { @@ -593,7 +598,6 @@ u64 window_start; u64 now; bool issue_as_root = bio_issue_as_root_blkg(bio); - bool enabled = false; int inflight = 0; blkg = bio->bi_blkg; @@ -604,8 +608,7 @@ if (!iolat) return; - enabled = blk_iolatency_enabled(iolat->blkiolat); - if (!enabled) + if (!iolat->blkiolat->enabled) return; now = ktime_to_ns(ktime_get()); @@ -644,6 +647,7 @@ struct blk_iolatency *blkiolat = BLKIOLATENCY(rqos); del_timer_sync(&blkiolat->timer); + flush_work(&blkiolat->enable_work); blkcg_deactivate_policy(rqos->q, &blkcg_policy_iolatency); kfree(blkiolat); } @@ -715,6 +719,44 @@ rcu_read_unlock(); } +/** + * blkiolatency_enable_work_fn - Enable or disable iolatency on the device + * @work: enable_work of the blk_iolatency of interest + * + * iolatency needs to keep track of the number of in-flight IOs per cgroup. This + * is relatively expensive as it involves walking up the hierarchy twice for + * every IO. Thus, if iolatency is not enabled in any cgroup for the device, we + * want to disable the in-flight tracking. + * + * We have to make sure that the counting is balanced - we don't want to leak + * the in-flight counts by disabling accounting in the completion path while IOs + * are in flight. This is achieved by ensuring that no IO is in flight by + * freezing the queue while flipping ->enabled. As this requires a sleepable + * context, ->enabled flipping is punted to this work function. + */ +static void blkiolatency_enable_work_fn(struct work_struct *work) +{ + struct blk_iolatency *blkiolat = container_of(work, struct blk_iolatency, + enable_work); + bool enabled; + + /* + * There can only be one instance of this function running for @blkiolat + * and it's guaranteed to be executed at least once after the latest + * ->enabled_cnt modification. Acting on the latest ->enable_cnt is + * sufficient. + * + * Also, we know @blkiolat is safe to access as ->enable_work is flushed + * in blkcg_iolatency_exit(). + */ + enabled = atomic_read(&blkiolat->enable_cnt); + if (enabled != blkiolat->enabled) { + blk_mq_freeze_queue(blkiolat->rqos.q); + blkiolat->enabled = enabled; + blk_mq_unfreeze_queue(blkiolat->rqos.q); + } +} + int blk_iolatency_init(struct request_queue *q) { struct blk_iolatency *blkiolat; @@ -740,17 +782,15 @@ } timer_setup(&blkiolat->timer, blkiolatency_timer_fn, 0); + INIT_WORK(&blkiolat->enable_work, blkiolatency_enable_work_fn); return 0; } -/* - * return 1 for enabling iolatency, return -1 for disabling iolatency, otherwise - * return 0. - */ -static int iolatency_set_min_lat_nsec(struct blkcg_gq *blkg, u64 val) +static void iolatency_set_min_lat_nsec(struct blkcg_gq *blkg, u64 val) { struct iolatency_grp *iolat = blkg_to_lat(blkg); + struct blk_iolatency *blkiolat = iolat->blkiolat; u64 oldval = iolat->min_lat_nsec; iolat->min_lat_nsec = val; @@ -758,13 +798,15 @@ iolat->cur_win_nsec = min_t(u64, iolat->cur_win_nsec, BLKIOLATENCY_MAX_WIN_SIZE); - if (!oldval && val) - return 1; + if (!oldval && val) { + if (atomic_inc_return(&blkiolat->enable_cnt) == 1) + schedule_work(&blkiolat->enable_work); + } if (oldval && !val) { blkcg_clear_delay(blkg); - return -1; + if (atomic_dec_return(&blkiolat->enable_cnt) == 0) + schedule_work(&blkiolat->enable_work); } - return 0; } static void iolatency_clear_scaling(struct blkcg_gq *blkg) @@ -796,7 +838,6 @@ u64 lat_val = 0; u64 oldval; int ret; - int enable = 0; ret = blkg_conf_prep(blkcg, &blkcg_policy_iolatency, buf, &ctx); if (ret) @@ -831,41 +872,12 @@ blkg = ctx.blkg; oldval = iolat->min_lat_nsec; - enable = iolatency_set_min_lat_nsec(blkg, lat_val); - if (enable) { - if (!blk_get_queue(blkg->q)) { - ret = -ENODEV; - goto out; - } - - blkg_get(blkg); - } - - if (oldval != iolat->min_lat_nsec) { + iolatency_set_min_lat_nsec(blkg, lat_val); + if (oldval != iolat->min_lat_nsec) iolatency_clear_scaling(blkg); - } - ret = 0; out: blkg_conf_finish(&ctx); - if (ret == 0 && enable) { - struct iolatency_grp *tmp = blkg_to_lat(blkg); - struct blk_iolatency *blkiolat = tmp->blkiolat; - - blk_mq_freeze_queue(blkg->q); - - if (enable == 1) - atomic_inc(&blkiolat->enabled); - else if (enable == -1) - atomic_dec(&blkiolat->enabled); - else - WARN_ON_ONCE(1); - - blk_mq_unfreeze_queue(blkg->q); - - blkg_put(blkg); - blk_put_queue(blkg->q); - } return ret ?: nbytes; } @@ -1006,14 +1018,8 @@ { struct iolatency_grp *iolat = pd_to_lat(pd); struct blkcg_gq *blkg = lat_to_blkg(iolat); - struct blk_iolatency *blkiolat = iolat->blkiolat; - int ret; - ret = iolatency_set_min_lat_nsec(blkg, 0); - if (ret == 1) - atomic_inc(&blkiolat->enabled); - if (ret == -1) - atomic_dec(&blkiolat->enabled); + iolatency_set_min_lat_nsec(blkg, 0); iolatency_clear_scaling(blkg); } only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/crypto/blake2s_generic.c +++ linux-intel-iotg-5.15-5.15.0/crypto/blake2s_generic.c @@ -15,12 +15,12 @@ static int crypto_blake2s_update_generic(struct shash_desc *desc, const u8 *in, unsigned int inlen) { - return crypto_blake2s_update(desc, in, inlen, blake2s_compress_generic); + return crypto_blake2s_update(desc, in, inlen, true); } static int crypto_blake2s_final_generic(struct shash_desc *desc, u8 *out) { - return crypto_blake2s_final(desc, out, blake2s_compress_generic); + return crypto_blake2s_final(desc, out, true); } #define BLAKE2S_ALG(name, driver_name, digest_size) \ only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/crypto/cryptd.c +++ linux-intel-iotg-5.15-5.15.0/crypto/cryptd.c @@ -39,6 +39,10 @@ }; struct cryptd_queue { + /* + * Protected by disabling BH to allow enqueueing from softinterrupt and + * dequeuing from kworker (cryptd_queue_worker()). + */ struct cryptd_cpu_queue __percpu *cpu_queue; }; @@ -125,28 +129,28 @@ static int cryptd_enqueue_request(struct cryptd_queue *queue, struct crypto_async_request *request) { - int cpu, err; + int err; struct cryptd_cpu_queue *cpu_queue; refcount_t *refcnt; - cpu = get_cpu(); + local_bh_disable(); cpu_queue = this_cpu_ptr(queue->cpu_queue); err = crypto_enqueue_request(&cpu_queue->queue, request); refcnt = crypto_tfm_ctx(request->tfm); if (err == -ENOSPC) - goto out_put_cpu; + goto out; - queue_work_on(cpu, cryptd_wq, &cpu_queue->work); + queue_work_on(smp_processor_id(), cryptd_wq, &cpu_queue->work); if (!refcount_read(refcnt)) - goto out_put_cpu; + goto out; refcount_inc(refcnt); -out_put_cpu: - put_cpu(); +out: + local_bh_enable(); return err; } @@ -162,15 +166,10 @@ cpu_queue = container_of(work, struct cryptd_cpu_queue, work); /* * Only handle one request at a time to avoid hogging crypto workqueue. - * preempt_disable/enable is used to prevent being preempted by - * cryptd_enqueue_request(). local_bh_disable/enable is used to prevent - * cryptd_enqueue_request() being accessed from software interrupts. */ local_bh_disable(); - preempt_disable(); backlog = crypto_get_backlog(&cpu_queue->queue); req = crypto_dequeue_request(&cpu_queue->queue); - preempt_enable(); local_bh_enable(); if (!req) only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/crypto/drbg.c +++ linux-intel-iotg-5.15-5.15.0/crypto/drbg.c @@ -1036,17 +1036,38 @@ ******************************************************************/ static inline int __drbg_seed(struct drbg_state *drbg, struct list_head *seed, - int reseed) + int reseed, enum drbg_seed_state new_seed_state) { int ret = drbg->d_ops->update(drbg, seed, reseed); if (ret) return ret; - drbg->seeded = true; + drbg->seeded = new_seed_state; /* 10.1.1.2 / 10.1.1.3 step 5 */ drbg->reseed_ctr = 1; + switch (drbg->seeded) { + case DRBG_SEED_STATE_UNSEEDED: + /* Impossible, but handle it to silence compiler warnings. */ + fallthrough; + case DRBG_SEED_STATE_PARTIAL: + /* + * Require frequent reseeds until the seed source is + * fully initialized. + */ + drbg->reseed_threshold = 50; + break; + + case DRBG_SEED_STATE_FULL: + /* + * Seed source has become fully initialized, frequent + * reseeds no longer required. + */ + drbg->reseed_threshold = drbg_max_requests(drbg); + break; + } + return ret; } @@ -1066,12 +1087,10 @@ return 0; } -static void drbg_async_seed(struct work_struct *work) +static int drbg_seed_from_random(struct drbg_state *drbg) { struct drbg_string data; LIST_HEAD(seedlist); - struct drbg_state *drbg = container_of(work, struct drbg_state, - seed_work); unsigned int entropylen = drbg_sec_strength(drbg->core->flags); unsigned char entropy[32]; int ret; @@ -1082,26 +1101,15 @@ drbg_string_fill(&data, entropy, entropylen); list_add_tail(&data.list, &seedlist); - mutex_lock(&drbg->drbg_mutex); - ret = drbg_get_random_bytes(drbg, entropy, entropylen); if (ret) - goto unlock; - - /* Set seeded to false so that if __drbg_seed fails the - * next generate call will trigger a reseed. - */ - drbg->seeded = false; + goto out; - __drbg_seed(drbg, &seedlist, true); - - if (drbg->seeded) - drbg->reseed_threshold = drbg_max_requests(drbg); - -unlock: - mutex_unlock(&drbg->drbg_mutex); + ret = __drbg_seed(drbg, &seedlist, true, DRBG_SEED_STATE_FULL); +out: memzero_explicit(entropy, entropylen); + return ret; } /* @@ -1123,6 +1131,7 @@ unsigned int entropylen = drbg_sec_strength(drbg->core->flags); struct drbg_string data1; LIST_HEAD(seedlist); + enum drbg_seed_state new_seed_state = DRBG_SEED_STATE_FULL; /* 9.1 / 9.2 / 9.3.1 step 3 */ if (pers && pers->len > (drbg_max_addtl(drbg))) { @@ -1150,6 +1159,9 @@ BUG_ON((entropylen * 2) > sizeof(entropy)); /* Get seed from in-kernel /dev/urandom */ + if (!rng_is_initialized()) + new_seed_state = DRBG_SEED_STATE_PARTIAL; + ret = drbg_get_random_bytes(drbg, entropy, entropylen); if (ret) goto out; @@ -1206,7 +1218,7 @@ memset(drbg->C, 0, drbg_statelen(drbg)); } - ret = __drbg_seed(drbg, &seedlist, reseed); + ret = __drbg_seed(drbg, &seedlist, reseed, new_seed_state); out: memzero_explicit(entropy, entropylen * 2); @@ -1386,19 +1398,25 @@ * here. The spec is a bit convoluted here, we make it simpler. */ if (drbg->reseed_threshold < drbg->reseed_ctr) - drbg->seeded = false; + drbg->seeded = DRBG_SEED_STATE_UNSEEDED; - if (drbg->pr || !drbg->seeded) { + if (drbg->pr || drbg->seeded == DRBG_SEED_STATE_UNSEEDED) { pr_devel("DRBG: reseeding before generation (prediction " "resistance: %s, state %s)\n", drbg->pr ? "true" : "false", - drbg->seeded ? "seeded" : "unseeded"); + (drbg->seeded == DRBG_SEED_STATE_FULL ? + "seeded" : "unseeded")); /* 9.3.1 steps 7.1 through 7.3 */ len = drbg_seed(drbg, addtl, true); if (len) goto err; /* 9.3.1 step 7.4 */ addtl = NULL; + } else if (rng_is_initialized() && + drbg->seeded == DRBG_SEED_STATE_PARTIAL) { + len = drbg_seed_from_random(drbg); + if (len) + goto err; } if (addtl && 0 < addtl->len) @@ -1491,51 +1509,15 @@ return 0; } -static void drbg_schedule_async_seed(struct random_ready_callback *rdy) -{ - struct drbg_state *drbg = container_of(rdy, struct drbg_state, - random_ready); - - schedule_work(&drbg->seed_work); -} - static int drbg_prepare_hrng(struct drbg_state *drbg) { - int err; - /* We do not need an HRNG in test mode. */ if (list_empty(&drbg->test_data.list)) return 0; drbg->jent = crypto_alloc_rng("jitterentropy_rng", 0, 0); - INIT_WORK(&drbg->seed_work, drbg_async_seed); - - drbg->random_ready.owner = THIS_MODULE; - drbg->random_ready.func = drbg_schedule_async_seed; - - err = add_random_ready_callback(&drbg->random_ready); - - switch (err) { - case 0: - break; - - case -EALREADY: - err = 0; - fallthrough; - - default: - drbg->random_ready.func = NULL; - return err; - } - - /* - * Require frequent reseeds until the seed source is fully - * initialized. - */ - drbg->reseed_threshold = 50; - - return err; + return 0; } /* @@ -1578,7 +1560,7 @@ if (!drbg->core) { drbg->core = &drbg_cores[coreref]; drbg->pr = pr; - drbg->seeded = false; + drbg->seeded = DRBG_SEED_STATE_UNSEEDED; drbg->reseed_threshold = drbg_max_requests(drbg); ret = drbg_alloc_state(drbg); @@ -1629,11 +1611,6 @@ */ static int drbg_uninstantiate(struct drbg_state *drbg) { - if (drbg->random_ready.func) { - del_random_ready_callback(&drbg->random_ready); - cancel_work_sync(&drbg->seed_work); - } - if (!IS_ERR_OR_NULL(drbg->jent)) crypto_free_rng(drbg->jent); drbg->jent = NULL; only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/crypto/ecrdsa.c +++ linux-intel-iotg-5.15-5.15.0/crypto/ecrdsa.c @@ -113,15 +113,15 @@ /* Step 1: verify that 0 < r < q, 0 < s < q */ if (vli_is_zero(r, ndigits) || - vli_cmp(r, ctx->curve->n, ndigits) == 1 || + vli_cmp(r, ctx->curve->n, ndigits) >= 0 || vli_is_zero(s, ndigits) || - vli_cmp(s, ctx->curve->n, ndigits) == 1) + vli_cmp(s, ctx->curve->n, ndigits) >= 0) return -EKEYREJECTED; /* Step 2: calculate hash (h) of the message (passed as input) */ /* Step 3: calculate e = h \mod q */ vli_from_le64(e, digest, ndigits); - if (vli_cmp(e, ctx->curve->n, ndigits) == 1) + if (vli_cmp(e, ctx->curve->n, ndigits) >= 0) vli_sub(e, e, ctx->curve->n, ndigits); if (vli_is_zero(e, ndigits)) e[0] = 1; @@ -137,7 +137,7 @@ /* Step 6: calculate point C = z_1P + z_2Q, and R = x_c \mod q */ ecc_point_mult_shamir(&cc, z1, &ctx->curve->g, z2, &ctx->pub_key, ctx->curve); - if (vli_cmp(cc.x, ctx->curve->n, ndigits) == 1) + if (vli_cmp(cc.x, ctx->curve->n, ndigits) >= 0) vli_sub(cc.x, cc.x, ctx->curve->n, ndigits); /* Step 7: if R == r signature is valid */ only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/debian/control.d/flavour-module.stub +++ linux-intel-iotg-5.15-5.15.0/debian/control.d/flavour-module.stub @@ -0,0 +1,19 @@ + +Package: linux-modules-MODULE-PKGVER-ABINUM-FLAVOUR +Build-Profiles: +Architecture: ARCH +Section: kernel +Priority: optional +Depends: + ${misc:Depends}, + linux-image-PKGVER-ABINUM-FLAVOUR | linux-image-unsigned-PKGVER-ABINUM-FLAVOUR, +Built-Using: ${linux:BuiltUsing} +Description: Linux kernel MODULE modules for version PKGVER-ABINUM + This package provides the Linux kernel MODULE modules for version + PKGVER-ABINUM. + . + You likely do not want to install this package directly. Instead, install the + one of the linux-modules-MODULE-FLAVOUR* meta-packages, + which will ensure that upgrades work correctly, and that supporting packages are + also installed. + only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/drivers/acpi/sysfs.c +++ linux-intel-iotg-5.15-5.15.0/drivers/acpi/sysfs.c @@ -415,19 +415,30 @@ loff_t offset, size_t count) { struct acpi_data_attr *data_attr; - void *base; - ssize_t rc; + void __iomem *base; + ssize_t size; data_attr = container_of(bin_attr, struct acpi_data_attr, attr); + size = data_attr->attr.size; - base = acpi_os_map_memory(data_attr->addr, data_attr->attr.size); + if (offset < 0) + return -EINVAL; + + if (offset >= size) + return 0; + + if (count > size - offset) + count = size - offset; + + base = acpi_os_map_iomem(data_attr->addr, size); if (!base) return -ENOMEM; - rc = memory_read_from_buffer(buf, count, &offset, base, - data_attr->attr.size); - acpi_os_unmap_memory(base, data_attr->attr.size); - return rc; + memcpy_fromio(buf, base + offset, count); + + acpi_os_unmap_iomem(base, size); + + return count; } static int acpi_bert_data_init(void *th, struct acpi_data_attr *data_attr) only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/drivers/ata/pata_marvell.c +++ linux-intel-iotg-5.15-5.15.0/drivers/ata/pata_marvell.c @@ -83,6 +83,8 @@ switch(ap->port_no) { case 0: + if (!ap->ioaddr.bmdma_addr) + return ATA_CBL_PATA_UNK; if (ioread8(ap->ioaddr.bmdma_addr + 1) & 1) return ATA_CBL_PATA40; return ATA_CBL_PATA80; only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/drivers/base/arch_topology.c +++ linux-intel-iotg-5.15-5.15.0/drivers/base/arch_topology.c @@ -609,7 +609,7 @@ for_each_online_cpu(cpu) { cpu_topo = &cpu_topology[cpu]; - if (cpuid_topo->llc_id == cpu_topo->llc_id) { + if (cpu_topo->llc_id != -1 && cpuid_topo->llc_id == cpu_topo->llc_id) { cpumask_set_cpu(cpu, &cpuid_topo->llc_sibling); cpumask_set_cpu(cpuid, &cpu_topo->llc_sibling); } only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/drivers/base/cpu.c +++ linux-intel-iotg-5.15-5.15.0/drivers/base/cpu.c @@ -564,6 +564,18 @@ return sysfs_emit(buf, "Not affected\n"); } +ssize_t __weak cpu_show_mmio_stale_data(struct device *dev, + struct device_attribute *attr, char *buf) +{ + return sysfs_emit(buf, "Not affected\n"); +} + +ssize_t __weak cpu_show_retbleed(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); @@ -573,6 +585,8 @@ static DEVICE_ATTR(tsx_async_abort, 0444, cpu_show_tsx_async_abort, NULL); static DEVICE_ATTR(itlb_multihit, 0444, cpu_show_itlb_multihit, NULL); 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 struct attribute *cpu_root_vulnerabilities_attrs[] = { &dev_attr_meltdown.attr, @@ -584,6 +598,8 @@ &dev_attr_tsx_async_abort.attr, &dev_attr_itlb_multihit.attr, &dev_attr_srbds.attr, + &dev_attr_mmio_stale_data.attr, + &dev_attr_retbleed.attr, NULL }; only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/drivers/base/node.c +++ linux-intel-iotg-5.15-5.15.0/drivers/base/node.c @@ -679,6 +679,7 @@ */ void unregister_node(struct node *node) { + compaction_unregister_node(node); hugetlb_unregister_node(node); /* no-op, if memoryless node */ node_remove_accesses(node); node_remove_caches(node); only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/drivers/block/Kconfig +++ linux-intel-iotg-5.15-5.15.0/drivers/block/Kconfig @@ -33,6 +33,22 @@ To compile this driver as a module, choose M here: the module will be called floppy. +config BLK_DEV_FD_RAWCMD + bool "Support for raw floppy disk commands (DEPRECATED)" + depends on BLK_DEV_FD + help + If you want to use actual physical floppies and expect to do + special low-level hardware accesses to them (access and use + non-standard formats, for example), then enable this. + + Note that the code enabled by this option is rarely used and + might be unstable or insecure, and distros should not enable it. + + Note: FDRAWCMD is deprecated and will be removed from the kernel + in the near future. + + If unsure, say N. + config AMIGA_FLOPPY tristate "Amiga floppy support" depends on AMIGA only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/drivers/char/Kconfig +++ linux-intel-iotg-5.15-5.15.0/drivers/char/Kconfig @@ -449,6 +449,7 @@ device randomness. Say Y here to assume the entropy provided by the booloader is trustworthy so it will be added to the kernel's entropy pool. Otherwise, say N here so it will be regarded as device input that - only mixes the entropy pool. + only mixes the entropy pool. This can also be configured at boot with + "random.trust_bootloader=on/off". endmenu only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/drivers/char/hw_random/core.c +++ linux-intel-iotg-5.15-5.15.0/drivers/char/hw_random/core.c @@ -15,6 +15,7 @@ #include #include #include +#include #include #include #include only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/drivers/char/hw_random/omap3-rom-rng.c +++ linux-intel-iotg-5.15-5.15.0/drivers/char/hw_random/omap3-rom-rng.c @@ -92,7 +92,7 @@ r = ddata->rom_rng_call(0, 0, RNG_GEN_PRNG_HW_INIT); if (r != 0) { - clk_disable(ddata->clk); + clk_disable_unprepare(ddata->clk); dev_err(dev, "HW init failed: %d\n", r); return -EIO; only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/drivers/char/tpm/tpm2-cmd.c +++ linux-intel-iotg-5.15-5.15.0/drivers/char/tpm/tpm2-cmd.c @@ -400,7 +400,16 @@ if (!rc) { out = (struct tpm2_get_cap_out *) &buf.data[TPM_HEADER_SIZE]; - *value = be32_to_cpu(out->value); + /* + * To prevent failing boot up of some systems, Infineon TPM2.0 + * returns SUCCESS on TPM2_Startup in field upgrade mode. Also + * the TPM2_Getcapability command returns a zero length list + * in field upgrade mode. + */ + if (be32_to_cpu(out->property_cnt) > 0) + *value = be32_to_cpu(out->value); + else + rc = -ENODATA; } tpm_buf_destroy(&buf); return rc; only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/drivers/char/tpm/tpm_ibmvtpm.c +++ linux-intel-iotg-5.15-5.15.0/drivers/char/tpm/tpm_ibmvtpm.c @@ -681,6 +681,7 @@ if (!wait_event_timeout(ibmvtpm->crq_queue.wq, ibmvtpm->rtce_buf != NULL, HZ)) { + rc = -ENODEV; dev_err(dev, "CRQ response timed out\n"); goto init_irq_cleanup; } only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/drivers/char/tpm/tpm_tis_i2c_cr50.c +++ linux-intel-iotg-5.15-5.15.0/drivers/char/tpm/tpm_tis_i2c_cr50.c @@ -754,8 +754,8 @@ struct device *dev = &client->dev; if (!chip) { - dev_err(dev, "Could not get client data at remove\n"); - return -ENODEV; + dev_crit(dev, "Could not get client data at remove, memory corruption ahead\n"); + return 0; } tpm_chip_unregister(chip); only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/drivers/clk/at91/clk-generated.c +++ linux-intel-iotg-5.15-5.15.0/drivers/clk/at91/clk-generated.c @@ -106,6 +106,10 @@ tmp_rate = parent_rate; else tmp_rate = parent_rate / div; + + if (tmp_rate < req->min_rate || tmp_rate > req->max_rate) + return; + tmp_diff = abs(req->rate - tmp_rate); if (*best_diff < 0 || *best_diff >= tmp_diff) { only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/drivers/clk/sunxi/clk-sun9i-mmc.c +++ linux-intel-iotg-5.15-5.15.0/drivers/clk/sunxi/clk-sun9i-mmc.c @@ -109,6 +109,8 @@ spin_lock_init(&data->lock); r = platform_get_resource(pdev, IORESOURCE_MEM, 0); + if (!r) + return -EINVAL; /* one clock/reset pair per word */ count = DIV_ROUND_UP((resource_size(r)), SUN9I_MMC_WIDTH); data->membase = devm_ioremap_resource(&pdev->dev, r); only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/drivers/clk/tegra/clk-dfll.c +++ linux-intel-iotg-5.15-5.15.0/drivers/clk/tegra/clk-dfll.c @@ -271,6 +271,7 @@ struct clk *ref_clk; struct clk *i2c_clk; struct clk *dfll_clk; + struct reset_control *dfll_rst; struct reset_control *dvco_rst; unsigned long ref_rate; unsigned long i2c_clk_rate; @@ -1464,6 +1465,7 @@ return -EINVAL; } + reset_control_deassert(td->dfll_rst); reset_control_deassert(td->dvco_rst); ret = clk_prepare(td->ref_clk); @@ -1509,6 +1511,7 @@ clk_unprepare(td->ref_clk); reset_control_assert(td->dvco_rst); + reset_control_assert(td->dfll_rst); return ret; } @@ -1530,6 +1533,7 @@ } reset_control_assert(td->dvco_rst); + reset_control_assert(td->dfll_rst); return 0; } @@ -1548,6 +1552,7 @@ { struct tegra_dfll *td = dev_get_drvdata(dev); + reset_control_deassert(td->dfll_rst); reset_control_deassert(td->dvco_rst); pm_runtime_get_sync(td->dev); @@ -1951,6 +1956,12 @@ td->soc = soc; + td->dfll_rst = devm_reset_control_get_optional(td->dev, "dfll"); + if (IS_ERR(td->dfll_rst)) { + dev_err(td->dev, "couldn't get dfll reset\n"); + return PTR_ERR(td->dfll_rst); + } + td->dvco_rst = devm_reset_control_get(td->dev, "dvco"); if (IS_ERR(td->dvco_rst)) { dev_err(td->dev, "couldn't get dvco reset\n"); @@ -2087,6 +2098,7 @@ clk_unprepare(td->i2c_clk); reset_control_assert(td->dvco_rst); + reset_control_assert(td->dfll_rst); return td->soc; } only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/drivers/cpufreq/mediatek-cpufreq.c +++ linux-intel-iotg-5.15-5.15.0/drivers/cpufreq/mediatek-cpufreq.c @@ -44,6 +44,8 @@ bool need_voltage_tracking; }; +static struct platform_device *cpufreq_pdev; + static LIST_HEAD(dvfs_info_list); static struct mtk_cpu_dvfs_info *mtk_cpu_dvfs_info_lookup(int cpu) @@ -547,7 +549,6 @@ { struct device_node *np; const struct of_device_id *match; - struct platform_device *pdev; int err; np = of_find_node_by_path("/"); @@ -571,16 +572,23 @@ * and the device registration codes are put here to handle defer * probing. */ - pdev = platform_device_register_simple("mtk-cpufreq", -1, NULL, 0); - if (IS_ERR(pdev)) { + cpufreq_pdev = platform_device_register_simple("mtk-cpufreq", -1, NULL, 0); + if (IS_ERR(cpufreq_pdev)) { pr_err("failed to register mtk-cpufreq platform device\n"); platform_driver_unregister(&mtk_cpufreq_platdrv); - return PTR_ERR(pdev); + return PTR_ERR(cpufreq_pdev); } return 0; } -device_initcall(mtk_cpufreq_driver_init); +module_init(mtk_cpufreq_driver_init) + +static void __exit mtk_cpufreq_driver_exit(void) +{ + platform_device_unregister(cpufreq_pdev); + platform_driver_unregister(&mtk_cpufreq_platdrv); +} +module_exit(mtk_cpufreq_driver_exit) MODULE_DESCRIPTION("MediaTek CPUFreq driver"); MODULE_AUTHOR("Pi-Cheng Chen "); only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/drivers/cpufreq/sun50i-cpufreq-nvmem.c +++ linux-intel-iotg-5.15-5.15.0/drivers/cpufreq/sun50i-cpufreq-nvmem.c @@ -98,8 +98,10 @@ return -ENOMEM; ret = sun50i_cpufreq_get_efuse(&speed); - if (ret) + if (ret) { + kfree(opp_tables); return ret; + } snprintf(name, MAX_NAME_LEN, "speed%d", speed); only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/drivers/cpuidle/cpuidle-psci.c +++ linux-intel-iotg-5.15-5.15.0/drivers/cpuidle/cpuidle-psci.c @@ -23,6 +23,7 @@ #include #include #include +#include #include @@ -131,6 +132,49 @@ return 0; } +static void psci_idle_syscore_switch(bool suspend) +{ + bool cleared = false; + struct device *dev; + int cpu; + + for_each_possible_cpu(cpu) { + dev = per_cpu_ptr(&psci_cpuidle_data, cpu)->dev; + + if (dev && suspend) { + dev_pm_genpd_suspend(dev); + } else if (dev) { + dev_pm_genpd_resume(dev); + + /* Account for userspace having offlined a CPU. */ + if (pm_runtime_status_suspended(dev)) + pm_runtime_set_active(dev); + + /* Clear domain state to re-start fresh. */ + if (!cleared) { + psci_set_domain_state(0); + cleared = true; + } + } + } +} + +static int psci_idle_syscore_suspend(void) +{ + psci_idle_syscore_switch(true); + return 0; +} + +static void psci_idle_syscore_resume(void) +{ + psci_idle_syscore_switch(false); +} + +static struct syscore_ops psci_idle_syscore_ops = { + .suspend = psci_idle_syscore_suspend, + .resume = psci_idle_syscore_resume, +}; + static void psci_idle_init_cpuhp(void) { int err; @@ -138,6 +182,8 @@ if (!psci_cpuidle_use_cpuhp) return; + register_syscore_ops(&psci_idle_syscore_ops); + err = cpuhp_setup_state_nocalls(CPUHP_AP_CPU_PM_STARTING, "cpuidle/psci:online", psci_idle_cpuhp_up, only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/drivers/crypto/allwinner/sun8i-ss/sun8i-ss.h +++ linux-intel-iotg-5.15-5.15.0/drivers/crypto/allwinner/sun8i-ss/sun8i-ss.h @@ -121,11 +121,15 @@ * @complete: completion for the current task on this flow * @status: set to 1 by interrupt if task is done * @stat_req: number of request done by this flow + * @iv: list of IV to use for each step + * @biv: buffer which contain the backuped IV */ struct sun8i_ss_flow { struct crypto_engine *engine; struct completion complete; int status; + u8 *iv[MAX_SG]; + u8 *biv; #ifdef CONFIG_CRYPTO_DEV_SUN8I_SS_DEBUG unsigned long stat_req; #endif @@ -164,28 +168,28 @@ * @t_src: list of mapped SGs with their size * @t_dst: list of mapped SGs with their size * @p_key: DMA address of the key - * @p_iv: DMA address of the IV + * @p_iv: DMA address of the IVs + * @niv: Number of IVs DMA mapped * @method: current algorithm for this request * @op_mode: op_mode for this request * @op_dir: direction (encrypt vs decrypt) for this request * @flow: the flow to use for this request - * @ivlen: size of biv + * @ivlen: size of IVs * @keylen: keylen for this request - * @biv: buffer which contain the IV * @fallback_req: request struct for invoking the fallback skcipher TFM */ struct sun8i_cipher_req_ctx { struct sginfo t_src[MAX_SG]; struct sginfo t_dst[MAX_SG]; u32 p_key; - u32 p_iv; + u32 p_iv[MAX_SG]; + int niv; u32 method; u32 op_mode; u32 op_dir; int flow; unsigned int ivlen; unsigned int keylen; - void *biv; struct skcipher_request fallback_req; // keep at the end }; only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/drivers/crypto/caam/ctrl.c +++ linux-intel-iotg-5.15-5.15.0/drivers/crypto/caam/ctrl.c @@ -609,6 +609,13 @@ } #endif +static bool needs_entropy_delay_adjustment(void) +{ + if (of_machine_is_compatible("fsl,imx6sx")) + return true; + return false; +} + /* Probe routine for CAAM top (controller) level */ static int caam_probe(struct platform_device *pdev) { @@ -855,6 +862,8 @@ * Also, if a handle was instantiated, do not change * the TRNG parameters. */ + if (needs_entropy_delay_adjustment()) + ent_delay = 12000; if (!(ctrlpriv->rng4_sh_init || inst_handles)) { dev_info(dev, "Entropy delay = %u\n", @@ -871,6 +880,15 @@ */ ret = instantiate_rng(dev, inst_handles, gen_sk); + /* + * Entropy delay is determined via TRNG characterization. + * TRNG characterization is run across different voltages + * and temperatures. + * If worst case value for ent_dly is identified, + * the loop can be skipped for that platform. + */ + if (needs_entropy_delay_adjustment()) + break; if (ret == -EAGAIN) /* * if here, the loop will rerun, only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/drivers/crypto/marvell/cesa/cipher.c +++ linux-intel-iotg-5.15-5.15.0/drivers/crypto/marvell/cesa/cipher.c @@ -624,7 +624,6 @@ .decrypt = mv_cesa_ecb_des3_ede_decrypt, .min_keysize = DES3_EDE_KEY_SIZE, .max_keysize = DES3_EDE_KEY_SIZE, - .ivsize = DES3_EDE_BLOCK_SIZE, .base = { .cra_name = "ecb(des3_ede)", .cra_driver_name = "mv-ecb-des3-ede", only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/drivers/crypto/nx/nx-common-powernv.c +++ linux-intel-iotg-5.15-5.15.0/drivers/crypto/nx/nx-common-powernv.c @@ -827,7 +827,7 @@ goto err_out; vas_init_rx_win_attr(&rxattr, coproc->ct); - rxattr.rx_fifo = (void *)rx_fifo; + rxattr.rx_fifo = rx_fifo; rxattr.rx_fifo_size = fifo_size; rxattr.lnotify_lpid = lpid; rxattr.lnotify_pid = pid; only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/drivers/crypto/qat/qat_common/adf_gen2_hw_data.c +++ linux-intel-iotg-5.15-5.15.0/drivers/crypto/qat/qat_common/adf_gen2_hw_data.c @@ -161,21 +161,33 @@ u32 legfuses; u32 capabilities = ICP_ACCEL_CAPABILITIES_CRYPTO_SYMMETRIC | ICP_ACCEL_CAPABILITIES_CRYPTO_ASYMMETRIC | - ICP_ACCEL_CAPABILITIES_AUTHENTICATION; + ICP_ACCEL_CAPABILITIES_AUTHENTICATION | + ICP_ACCEL_CAPABILITIES_CIPHER | + ICP_ACCEL_CAPABILITIES_COMPRESSION; /* Read accelerator capabilities mask */ pci_read_config_dword(pdev, ADF_DEVICE_LEGFUSE_OFFSET, &legfuses); - if (legfuses & ICP_ACCEL_MASK_CIPHER_SLICE) + /* A set bit in legfuses means the feature is OFF in this SKU */ + if (legfuses & ICP_ACCEL_MASK_CIPHER_SLICE) { capabilities &= ~ICP_ACCEL_CAPABILITIES_CRYPTO_SYMMETRIC; + capabilities &= ~ICP_ACCEL_CAPABILITIES_CIPHER; + } if (legfuses & ICP_ACCEL_MASK_PKE_SLICE) capabilities &= ~ICP_ACCEL_CAPABILITIES_CRYPTO_ASYMMETRIC; - if (legfuses & ICP_ACCEL_MASK_AUTH_SLICE) + if (legfuses & ICP_ACCEL_MASK_AUTH_SLICE) { capabilities &= ~ICP_ACCEL_CAPABILITIES_AUTHENTICATION; + capabilities &= ~ICP_ACCEL_CAPABILITIES_CIPHER; + } + if (legfuses & ICP_ACCEL_MASK_COMPRESS_SLICE) + capabilities &= ~ICP_ACCEL_CAPABILITIES_COMPRESSION; if ((straps | fuses) & ADF_POWERGATE_PKE) capabilities &= ~ICP_ACCEL_CAPABILITIES_CRYPTO_ASYMMETRIC; + if ((straps | fuses) & ADF_POWERGATE_DC) + capabilities &= ~ICP_ACCEL_CAPABILITIES_COMPRESSION; + return capabilities; } EXPORT_SYMBOL_GPL(adf_gen2_get_accel_cap); only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/drivers/crypto/qat/qat_common/adf_gen2_hw_data.h +++ linux-intel-iotg-5.15-5.15.0/drivers/crypto/qat/qat_common/adf_gen2_hw_data.h @@ -111,6 +111,7 @@ (ADF_ARB_REG_SLOT * (index)), value) /* Power gating */ +#define ADF_POWERGATE_DC BIT(23) #define ADF_POWERGATE_PKE BIT(24) /* WDT timers only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/drivers/crypto/qat/qat_dh895xcc/adf_dh895xcc_hw_data.c +++ linux-intel-iotg-5.15-5.15.0/drivers/crypto/qat/qat_dh895xcc/adf_dh895xcc_hw_data.c @@ -86,17 +86,26 @@ capabilities = ICP_ACCEL_CAPABILITIES_CRYPTO_SYMMETRIC | ICP_ACCEL_CAPABILITIES_CRYPTO_ASYMMETRIC | - ICP_ACCEL_CAPABILITIES_AUTHENTICATION; + ICP_ACCEL_CAPABILITIES_AUTHENTICATION | + ICP_ACCEL_CAPABILITIES_CIPHER | + ICP_ACCEL_CAPABILITIES_COMPRESSION; /* Read accelerator capabilities mask */ pci_read_config_dword(pdev, ADF_DEVICE_LEGFUSE_OFFSET, &legfuses); - if (legfuses & ICP_ACCEL_MASK_CIPHER_SLICE) + /* A set bit in legfuses means the feature is OFF in this SKU */ + if (legfuses & ICP_ACCEL_MASK_CIPHER_SLICE) { capabilities &= ~ICP_ACCEL_CAPABILITIES_CRYPTO_SYMMETRIC; + capabilities &= ~ICP_ACCEL_CAPABILITIES_CIPHER; + } if (legfuses & ICP_ACCEL_MASK_PKE_SLICE) capabilities &= ~ICP_ACCEL_CAPABILITIES_CRYPTO_ASYMMETRIC; - if (legfuses & ICP_ACCEL_MASK_AUTH_SLICE) + if (legfuses & ICP_ACCEL_MASK_AUTH_SLICE) { capabilities &= ~ICP_ACCEL_CAPABILITIES_AUTHENTICATION; + capabilities &= ~ICP_ACCEL_CAPABILITIES_CIPHER; + } + if (legfuses & ICP_ACCEL_MASK_COMPRESS_SLICE) + capabilities &= ~ICP_ACCEL_CAPABILITIES_COMPRESSION; return capabilities; } only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/drivers/devfreq/rk3399_dmc.c +++ linux-intel-iotg-5.15-5.15.0/drivers/devfreq/rk3399_dmc.c @@ -477,6 +477,8 @@ { struct rk3399_dmcfreq *dmcfreq = dev_get_drvdata(&pdev->dev); + devfreq_event_disable_edev(dmcfreq->edev); + /* * Before remove the opp table we need to unregister the opp notifier. */ only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/drivers/dma/dw-edma/dw-edma-v0-core.c +++ linux-intel-iotg-5.15-5.15.0/drivers/dma/dw-edma/dw-edma-v0-core.c @@ -415,8 +415,11 @@ (DW_EDMA_V0_CCS | DW_EDMA_V0_LLE)); /* Linked list */ #ifdef CONFIG_64BIT - SET_CH_64(dw, chan->dir, chan->id, llp.reg, - chunk->ll_region.paddr); + /* llp is not aligned on 64bit -> keep 32bit accesses */ + SET_CH_32(dw, chan->dir, chan->id, llp.lsb, + lower_32_bits(chunk->ll_region.paddr)); + SET_CH_32(dw, chan->dir, chan->id, llp.msb, + upper_32_bits(chunk->ll_region.paddr)); #else /* CONFIG_64BIT */ SET_CH_32(dw, chan->dir, chan->id, llp.lsb, lower_32_bits(chunk->ll_region.paddr)); only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/drivers/dma/idxd/cdev.c +++ linux-intel-iotg-5.15-5.15.0/drivers/dma/idxd/cdev.c @@ -369,10 +369,16 @@ rc = alloc_chrdev_region(&ictx[i].devt, 0, MINORMASK, ictx[i].name); if (rc) - return rc; + goto err_free_chrdev_region; } return 0; + +err_free_chrdev_region: + for (i--; i >= 0; i--) + unregister_chrdev_region(ictx[i].devt, MINORMASK); + + return rc; } void idxd_cdev_remove(void) only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/drivers/dma/imx-sdma.c +++ linux-intel-iotg-5.15-5.15.0/drivers/dma/imx-sdma.c @@ -198,12 +198,12 @@ s32 per_2_firi_addr; s32 mcu_2_firi_addr; s32 uart_2_per_addr; - s32 uart_2_mcu_ram_addr; + s32 uart_2_mcu_addr; s32 per_2_app_addr; s32 mcu_2_app_addr; s32 per_2_per_addr; s32 uartsh_2_per_addr; - s32 uartsh_2_mcu_ram_addr; + s32 uartsh_2_mcu_addr; s32 per_2_shp_addr; s32 mcu_2_shp_addr; s32 ata_2_mcu_addr; @@ -232,8 +232,8 @@ s32 mcu_2_ecspi_addr; s32 mcu_2_sai_addr; s32 sai_2_mcu_addr; - s32 uart_2_mcu_addr; - s32 uartsh_2_mcu_addr; + s32 uart_2_mcu_rom_addr; + s32 uartsh_2_mcu_rom_addr; /* End of v3 array */ s32 mcu_2_zqspi_addr; /* End of v4 array */ @@ -1780,17 +1780,17 @@ saddr_arr[i] = addr_arr[i]; /* - * get uart_2_mcu_addr/uartsh_2_mcu_addr rom script specially because - * they are now replaced by uart_2_mcu_ram_addr/uartsh_2_mcu_ram_addr - * to be compatible with legacy freescale/nxp sdma firmware, and they - * are located in the bottom part of sdma_script_start_addrs which are - * beyond the SDMA_SCRIPT_ADDRS_ARRAY_SIZE_V1. + * For compatibility with NXP internal legacy kernel before 4.19 which + * is based on uart ram script and mainline kernel based on uart rom + * script, both uart ram/rom scripts are present in newer sdma + * firmware. Use the rom versions if they are present (V3 or newer). */ - if (addr->uart_2_mcu_addr) - sdma->script_addrs->uart_2_mcu_addr = addr->uart_2_mcu_addr; - if (addr->uartsh_2_mcu_addr) - sdma->script_addrs->uartsh_2_mcu_addr = addr->uartsh_2_mcu_addr; - + if (sdma->script_number >= SDMA_SCRIPT_ADDRS_ARRAY_SIZE_V3) { + if (addr->uart_2_mcu_rom_addr) + sdma->script_addrs->uart_2_mcu_addr = addr->uart_2_mcu_rom_addr; + if (addr->uartsh_2_mcu_rom_addr) + sdma->script_addrs->uartsh_2_mcu_addr = addr->uartsh_2_mcu_rom_addr; + } } static void sdma_load_firmware(const struct firmware *fw, void *context) @@ -1869,7 +1869,7 @@ u32 reg, val, shift, num_map, i; int ret = 0; - if (IS_ERR(np) || IS_ERR(gpr_np)) + if (IS_ERR(np) || !gpr_np) goto out; event_remap = of_find_property(np, propname, NULL); @@ -1917,7 +1917,7 @@ } out: - if (!IS_ERR(gpr_np)) + if (gpr_np) of_node_put(gpr_np); return ret; only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/drivers/dma/mediatek/mtk-uart-apdma.c +++ linux-intel-iotg-5.15-5.15.0/drivers/dma/mediatek/mtk-uart-apdma.c @@ -274,7 +274,7 @@ unsigned int status; int ret; - ret = pm_runtime_get_sync(mtkd->ddev.dev); + ret = pm_runtime_resume_and_get(mtkd->ddev.dev); if (ret < 0) { pm_runtime_put_noidle(chan->device->dev); return ret; @@ -288,18 +288,21 @@ ret = readx_poll_timeout(readl, c->base + VFF_EN, status, !status, 10, 100); if (ret) - return ret; + goto err_pm; ret = request_irq(c->irq, mtk_uart_apdma_irq_handler, IRQF_TRIGGER_NONE, KBUILD_MODNAME, chan); if (ret < 0) { dev_err(chan->device->dev, "Can't request dma IRQ\n"); - return -EINVAL; + ret = -EINVAL; + goto err_pm; } if (mtkd->support_33bits) mtk_uart_apdma_write(c, VFF_4G_SUPPORT, VFF_4G_SUPPORT_CLR_B); +err_pm: + pm_runtime_put_noidle(mtkd->ddev.dev); return ret; } only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/drivers/edac/Kconfig +++ linux-intel-iotg-5.15-5.15.0/drivers/edac/Kconfig @@ -278,6 +278,16 @@ This In-Band ECC is first used on the Elkhart Lake SoC but may appear on others in the future. +config EDAC_IEH + tristate "Intel Integrated Error Handler" + depends on PCI && X86_64 + help + Support for error detection and correction on the Intel + CPU using I/O IEH (Integrated Error Handler). IEHs are PCIe + devices which aggregate and report error events of different + severities from various I/O devices, e.g., PCIe devices and + legacy PCI devices. + config EDAC_MPC85XX bool "Freescale MPC83xx / MPC85xx" depends on FSL_SOC && EDAC=y only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/drivers/edac/Makefile +++ linux-intel-iotg-5.15-5.15.0/drivers/edac/Makefile @@ -33,6 +33,7 @@ obj-$(CONFIG_EDAC_SBRIDGE) += sb_edac.o obj-$(CONFIG_EDAC_PND2) += pnd2_edac.o obj-$(CONFIG_EDAC_IGEN6) += igen6_edac.o +obj-$(CONFIG_EDAC_IEH) += ieh_edac.o obj-$(CONFIG_EDAC_E7XXX) += e7xxx_edac.o obj-$(CONFIG_EDAC_E752X) += e752x_edac.o obj-$(CONFIG_EDAC_I82443BXGX) += i82443bxgx_edac.o only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/drivers/edac/dmc520_edac.c +++ linux-intel-iotg-5.15-5.15.0/drivers/edac/dmc520_edac.c @@ -489,7 +489,7 @@ dev = &pdev->dev; for (idx = 0; idx < NUMBER_OF_IRQS; idx++) { - irq = platform_get_irq_byname(pdev, dmc520_irq_configs[idx].name); + irq = platform_get_irq_byname_optional(pdev, dmc520_irq_configs[idx].name); irqs[idx] = irq; masks[idx] = dmc520_irq_configs[idx].mask; if (irq >= 0) { only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/drivers/edac/ieh_edac.c +++ linux-intel-iotg-5.15-5.15.0/drivers/edac/ieh_edac.c @@ -0,0 +1,793 @@ +// SPDX-License-Identifier: GPL-2.0 +/* + * Driver for Intel Integrated Error Handler (IEH) + * + * Copyright (C) 2020 Intel Corporation + * + * IEH centralizes and standardizes how I/O device errors are reported. + * They are PCIe devices which aggregate and report error events of different + * severities (correctable, non-fatal uncorrectable, and fatal uncorrectable) + * from various I/O devices, e.g., PCIe devices, legacy PCI devices. + * + * There is a global IEH and optional north/south satellite IEH(s) logically + * connected to global IEH. The global IEH is the root to process all incoming + * error messages from satellite IEH(s) and local devices (if some devices + * are connected directly to the global IEH) and generate interrupts(SMI/NMI/MCE + * configured by BIOS/platform firmware). The first IEH-supported platform is + * Tiger Lake-U. This driver reads/prints the error severity and error source + * (bus/device/function) logged in the IEH(s) and reboots the system on fatal + * IEH errors. + */ + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#include "edac_mc.h" + +#define IEH_REVISION "v1.8" + +#define EDAC_MOD_STR "ieh_edac" +#define IEH_NMI_NAME "ieh" + +#define GET_BITFIELD(v, lo, hi) (((v) & GENMASK_ULL(hi, lo)) >> (lo)) + +/* Global correctable error status */ +#define GCOERRSTS_OFFSET 0x200 +/* Global non-fatal error status */ +#define GNFERRSTS_OFFSET 0x210 +/* Global fatal error status */ +#define GFAERRSTS_OFFSET 0x220 + +/* Global correctable error mask */ +#define GCOERRMSK_OFFSET 0x230 +#define GCOERRMSK 0xffffffff +/* Global nonfatal error mask */ +#define GNFERRMSK_OFFSET 0x234 +#define GNFERRMSK 0xffffffff +/* Global fatal error mask */ +#define GFAERRMSK_OFFSET 0x238 +#define GFAERRMSK 0xffffffff + +/* Global system event status */ +#define GSYSEVTSTS_OFFSET 0x260 + +/* Global system event mask */ +#define GSYSEVTMSK_OFFSET 0x264 +#define GSYSEVTMSK 0x7 +#define GSYSEVTMSK_CORR BIT(0) +#define GSYSEVTMSK_NONFATAL BIT(1) +#define GSYSEVTMSK_FATAL BIT(2) + +/* Global system event map */ +#define GSYSEVTMAP_OFFSET 0x268 +#define GSYSEVTMAP_CORR(m) GET_BITFIELD(m, 0, 1) +#define GSYSEVTMAP_NONFATAL(m) GET_BITFIELD(m, 2, 3) +#define GSYSEVTMAP_FATAL(m) GET_BITFIELD(m, 4, 5) +#define GSYSEVTMAP_MCE 0x3f + +/* IEH type and version */ +#define IEHTYPEVER_OFFSET 0x26c +#define IEHTYPEVER_TYPE(t) GET_BITFIELD(t, 0, 3) +#define IEHTYPEVER_VER(t) GET_BITFIELD(t, 4, 7) +#define IEHTYPEVER_BUS(t) GET_BITFIELD(t, 8, 15) + +/* Bitmap field of satellite IEH */ +#define BITMAP_OFFSET 0x27c +#define BITMAP(m) GET_BITFIELD(m, 0, 4) + +/* Local uncorrectable error mask */ +#define LERRUNCMSK_OFFSET 0x298 +#define LERRUNCMSK 0xffffffff +/* Local correctable error mask */ +#define LERRCORMSK_OFFSET 0x2c0 +#define LERRCORMSK 0xffffffff + +/* Device number and function number of the device reporting to IEH */ +#define DEVFUN_OFFSET 0x300 +#define DEVFUN_FUN(d) GET_BITFIELD(d, 0, 2) +#define DEVFUN_DEV(d) GET_BITFIELD(d, 3, 7) + +#define ieh_printk(level, fmt, arg...) \ + edac_printk(level, "ieh", fmt, ##arg) + +/*#define PCI_ADDR(sbdf) (sbdf)->seg, (sbdf)->bus, (sbdf)->dev, (sbdf)->fun*/ + +/* Error notification methods */ +enum evt_map { + IEH_IGN, + IEH_SMI, + IEH_NMI, + IEH_MCE, +}; + +enum severity_level { + IEH_CORR_ERR, + IEH_NONFATAL_ERR, + IEH_FATAL_ERR, +}; + +enum ieh_type { + /* Global IEH */ + IEH_GLOBAL, + /* North satellite IEH logically connected to global IEH */ + IEH_NORTH, + /* South satellite IEH logically connected to north IEH */ + IEH_SOUTH, + /* + * Superset south satellite IEH with physical ERR[2:0] signals output. + * It's used as a global IEH (when it present, system has only one IEH). + */ + IEH_SUPERSET, +}; + +enum action_on_fatal_err { + NOP, + RESTART, + POWER_OFF, +}; + +struct pci_sbdf { + u32 seg : 16; + u32 bus : 8; + u32 dev : 5; + u32 fun : 3; +}; + +struct ieh_dev { + struct list_head list; + struct pci_dev *pdev; + struct pci_sbdf sbdf; + enum ieh_type type; + u8 ver; + /* Global IEH fields */ + enum evt_map corr_map; + enum evt_map nonfatal_map; + enum evt_map fatal_map; +}; + +static struct ieh_config { + u16 did; + enum action_on_fatal_err action; +} *ieh_cfg; + +struct decoded_res { + enum severity_level sev; + struct pci_sbdf sbdf; +}; + +static LIST_HEAD(global_ieh_list); +static LIST_HEAD(north_ieh_list); +static LIST_HEAD(south_ieh_list); + +/* Tiger Lake-U SoC */ +#define IEH_DID_TGL_U 0xa0af + +static struct ieh_config tgl_u_cfg = { + .did = IEH_DID_TGL_U, + .action = RESTART, +}; + +/* Tiger Lake-H SoC */ +#define IEH_DID_TGL_H 0x43af + +static struct ieh_config tgl_h_cfg = { + .did = IEH_DID_TGL_H, + .action = RESTART, +}; + +static const char * const severities[] = { + [IEH_CORR_ERR] = "correctable", + [IEH_NONFATAL_ERR] = "non-fatal uncorrectable", + [IEH_FATAL_ERR] = "fatal uncorrectable", +}; + +static struct irq_work ieh_irq_work; + +static int dev_idx(u32 status, int start) +{ + int i; + + for (i = start; i < 32; i++) { + if (status & (1 << i)) + return i; + } + + return -1; +} + +static inline bool has_notification_by(enum evt_map map) +{ + struct ieh_dev *ieh; + + list_for_each_entry(ieh, &global_ieh_list, list) { + if (ieh->corr_map == map || ieh->nonfatal_map == map || + ieh->fatal_map == map) + return true; + } + + return false; +} + +static void ieh_output_error(struct decoded_res *res) +{ + struct pci_sbdf *p = &res->sbdf; + + ieh_printk(KERN_ERR, "Device %04x:%02x:%02x.%x - %s error\n", + p->seg, p->bus, p->dev, + p->fun, severities[res->sev]); + + if (res->sev != IEH_FATAL_ERR) + return; + + switch (ieh_cfg->action) { + case RESTART: + ieh_printk(KERN_EMERG, "Restart system on device fatal error!\n"); + kernel_restart(NULL); + break; + + case POWER_OFF: + ieh_printk(KERN_EMERG, "Power off system on device fatal error!\n"); + kernel_power_off(); + break; + default: + break; + } + + /* TODO: Further report error information from the error source */ +} + +static bool is_same_pdev(struct pci_sbdf *p, struct pci_sbdf *q) +{ + return (p->seg == q->seg && p->bus == q->bus && + p->dev == q->dev && p->fun == q->fun); +} + +static struct ieh_dev *__get_ieh(struct list_head *ieh_list, + struct pci_sbdf *sbdf) +{ + struct ieh_dev *ieh; + + list_for_each_entry(ieh, ieh_list, list) { + if (is_same_pdev(sbdf, &ieh->sbdf)) + return ieh; + } + + return NULL; +} + +static struct ieh_dev *get_global_ieh(struct pci_sbdf *sbdf) +{ + return __get_ieh(&global_ieh_list, sbdf); +} + +static inline struct ieh_dev *get_north_sat_ieh(struct pci_sbdf *sbdf) +{ + return __get_ieh(&north_ieh_list, sbdf); +} + +static inline struct ieh_dev *get_south_sat_ieh(struct pci_sbdf *sbdf) +{ + return __get_ieh(&south_ieh_list, sbdf); +} + +static int read_and_clear(struct pci_dev *pdev, int offset, u32 *val) +{ + if (pci_read_config_dword(pdev, offset, val)) { + ieh_printk(KERN_ERR, "Failed to read 0x%x\n", offset); + return -ENODEV; + } + + /* Write 1s to clear status */ + if (pci_write_config_dword(pdev, offset, *val)) { + ieh_printk(KERN_ERR, "Failed to write 0x%x\n", offset); + return -ENODEV; + } + + return 0; +} + +#define UNMASK_ERR_EVENT(ieh, name) \ + do { \ + u32 val; \ + if (pci_read_config_dword(ieh->pdev, name##MSK_OFFSET, &val)) \ + return -ENODEV; \ + val &= ~name##MSK; \ + if (pci_write_config_dword(ieh->pdev, name##MSK_OFFSET, val)) \ + return -ENODEV; \ + } while (0) + +static int unmask_all_err_events(void) +{ + struct ieh_dev *ieh; + + list_for_each_entry(ieh, &global_ieh_list, list) { + UNMASK_ERR_EVENT(ieh, GFAERR); + UNMASK_ERR_EVENT(ieh, GNFERR); + UNMASK_ERR_EVENT(ieh, GCOERR); + UNMASK_ERR_EVENT(ieh, LERRUNC); + UNMASK_ERR_EVENT(ieh, LERRCOR); + UNMASK_ERR_EVENT(ieh, GSYSEVT); + } + + return 0; +} + +#define MASK_ERR_EVENT(ieh, name) \ + do { \ + u32 val; \ + if (pci_read_config_dword(ieh->pdev, name##MSK_OFFSET, &val)) \ + return -ENODEV; \ + val |= name##MSK; \ + if (pci_write_config_dword(ieh->pdev, name##MSK_OFFSET, val)) \ + return -ENODEV; \ + } while (0) + +static int mask_all_err_events(void) +{ + struct ieh_dev *ieh; + + list_for_each_entry(ieh, &global_ieh_list, list) { + MASK_ERR_EVENT(ieh, GFAERR); + MASK_ERR_EVENT(ieh, GNFERR); + MASK_ERR_EVENT(ieh, GCOERR); + MASK_ERR_EVENT(ieh, LERRUNC); + MASK_ERR_EVENT(ieh, LERRCOR); + MASK_ERR_EVENT(ieh, GSYSEVT); + } + + return 0; +} + +static int ieh_handle_error(struct ieh_dev *d, enum severity_level sev) +{ + struct decoded_res res; + struct pci_sbdf *sbdf = &res.sbdf; + struct ieh_dev *ieh; + int i, start = 0; + u32 sts, reg; + + switch (sev) { + case IEH_CORR_ERR: + if (read_and_clear(d->pdev, GCOERRSTS_OFFSET, &sts)) + return -ENODEV; + ieh_printk(KERN_DEBUG, "Read %04x:%02x:%02x.%x GCOERRSTS: 0x%x\n", + (&d->sbdf)->seg, (&d->sbdf)->bus, (&d->sbdf)->dev, (&d->sbdf)->fun, sts); + break; + case IEH_NONFATAL_ERR: + if (read_and_clear(d->pdev, GNFERRSTS_OFFSET, &sts)) + return -ENODEV; + ieh_printk(KERN_DEBUG, "Read %04x:%02x:%02x.%x GNFERRSTS: 0x%x\n", + (&d->sbdf)->seg, (&d->sbdf)->bus, (&d->sbdf)->dev, (&d->sbdf)->fun, sts); + break; + case IEH_FATAL_ERR: + if (read_and_clear(d->pdev, GFAERRSTS_OFFSET, &sts)) + return -ENODEV; + ieh_printk(KERN_DEBUG, "Read %04x:%02x:%02x.%x GFAERRSTS: 0x%x\n", + (&d->sbdf)->seg, (&d->sbdf)->bus, (&d->sbdf)->dev, (&d->sbdf)->fun, sts); + break; + } + + while ((i = dev_idx(sts, start)) != -1) { + if (pci_read_config_dword(d->pdev, DEVFUN_OFFSET + i * 4, ®)) { + ieh_printk(KERN_ERR, "Failed to read DEVFUN %d\n", i); + return -ENODEV; + } + ieh_printk(KERN_DEBUG, "Read %04x:%02x:%02x.%x DEVFUN %d: 0x%x\n", + (&d->sbdf)->seg, (&d->sbdf)->bus, (&d->sbdf)->dev, (&d->sbdf)->fun, i, reg); + + memset(&res, 0, sizeof(res)); + res.sev = sev; + sbdf->seg = d->sbdf.seg; + sbdf->bus = d->sbdf.bus; + sbdf->dev = DEVFUN_DEV(reg); + sbdf->fun = DEVFUN_FUN(reg); + + switch (d->type) { + case IEH_GLOBAL: + ieh = get_north_sat_ieh(sbdf); + if (!ieh) + ieh_output_error(&res); + else if (ieh->type == IEH_NORTH) + ieh_handle_error(ieh, sev); + else + ieh_printk(KERN_ERR, "Invalid global IEH\n"); + break; + case IEH_NORTH: + ieh = get_south_sat_ieh(sbdf); + if (!ieh) + ieh_output_error(&res); + else if (ieh->type == IEH_SOUTH) + ieh_handle_error(ieh, sev); + else + ieh_printk(KERN_ERR, "Invalid north IEH\n"); + break; + case IEH_SOUTH: + case IEH_SUPERSET: + ieh_output_error(&res); + break; + } + + start = i + 1; + } + + return 0; +} + +static void __ieh_check_error(struct ieh_dev *ieh) +{ + struct pci_dev *pdev = ieh->pdev; + u32 sts; + + if (pci_read_config_dword(pdev, GSYSEVTSTS_OFFSET, &sts)) { + ieh_printk(KERN_ERR, "Failed to read GSYSEVTSTS\n"); + return; + } + + ieh_printk(KERN_DEBUG, "Read %04x:%02x:%02x.%x GSYSEVTSTS: 0x%x\n", + (&ieh->sbdf)->seg, (&ieh->sbdf)->bus, (&ieh->sbdf)->dev, (&ieh->sbdf)->fun, sts); + + if ((sts & (1 << IEH_FATAL_ERR)) && ieh->fatal_map == IEH_NMI) + ieh_handle_error(ieh, IEH_FATAL_ERR); + + if ((sts & (1 << IEH_NONFATAL_ERR)) && ieh->nonfatal_map == IEH_NMI) + ieh_handle_error(ieh, IEH_NONFATAL_ERR); + + if ((sts & (1 << IEH_CORR_ERR)) && ieh->corr_map == IEH_NMI) + ieh_handle_error(ieh, IEH_CORR_ERR); +} + +static void ieh_check_error(void) +{ + struct ieh_dev *ieh; + + list_for_each_entry(ieh, &global_ieh_list, list) { + __ieh_check_error(ieh); + } +} + +static void ieh_irq_work_cb(struct irq_work *irq_work) +{ + ieh_check_error(); +} + +static int ieh_nmi_handler(unsigned int cmd, struct pt_regs *regs) +{ + irq_work_queue(&ieh_irq_work); + return 0; +} + +static int mce_check_error(struct notifier_block *nb, unsigned long val, + void *data) +{ + struct mce *mce = (struct mce *)data; + struct decoded_res res; + struct pci_sbdf *sbdf = &res.sbdf; + struct ieh_dev *ieh; + u64 rid; + + /* TODO: For debug only. Remove them later. */ + ieh_printk(KERN_DEBUG, "MCi_STATUS 0x%llx\n", mce->status); + ieh_printk(KERN_DEBUG, "MCi_MISC 0x%llx\n", mce->misc); + ieh_printk(KERN_DEBUG, "MCi_ADDR 0x%llx\n", mce->addr); + ieh_printk(KERN_DEBUG, "MCGSTATUS 0x%llx\n", mce->mcgstatus); + ieh_printk(KERN_DEBUG, "MCGSCAP 0x%llx\n", mce->mcgcap); + ieh_printk(KERN_DEBUG, "IP 0x%llx\n", mce->ip); + ieh_printk(KERN_DEBUG, "MC bank 0x%x\n", mce->bank); + + if ((mce->status & MCACOD) != MCACOD_IOERR) + return NOTIFY_DONE; + + if (!(mce->status & MCI_STATUS_MISCV)) + return NOTIFY_DONE; + + memset(&res, 0, sizeof(res)); + rid = MCI_MISC_PCIRID(mce->misc); + sbdf->seg = MCI_MISC_PCISEG(mce->misc); + sbdf->bus = GET_BITFIELD(rid, 8, 15); + sbdf->dev = GET_BITFIELD(rid, 3, 7); + sbdf->fun = GET_BITFIELD(rid, 0, 2); + + if (mce->status & MCI_STATUS_PCC) + res.sev = IEH_FATAL_ERR; + else if (mce->status & MCI_STATUS_UC) + res.sev = IEH_NONFATAL_ERR; + else + res.sev = IEH_CORR_ERR; + + ieh = get_global_ieh(sbdf); + if (ieh) + goto handle; + + ieh = get_north_sat_ieh(sbdf); + if (ieh) + goto handle; + + ieh = get_south_sat_ieh(sbdf); + if (ieh) + goto handle; + + goto output; + +handle: + ieh_handle_error(ieh, res.sev); + mce->kflags |= MCE_HANDLED_EDAC; + return NOTIFY_DONE; + +output: + ieh_output_error(&res); + return NOTIFY_DONE; +} + +static struct notifier_block ieh_mce_dec = { + .notifier_call = mce_check_error, + .priority = MCE_PRIO_EDAC, +}; + +static const struct x86_cpu_id ieh_cpuids[] = { + X86_MATCH_INTEL_FAM6_MODEL(TIGERLAKE_L, &tgl_u_cfg), + X86_MATCH_INTEL_FAM6_MODEL(TIGERLAKE, &tgl_h_cfg), + {} +}; +MODULE_DEVICE_TABLE(x86cpu, ieh_cpuids); + +static void __put_ieh(struct ieh_dev *ieh) +{ + if (!ieh) + return; + if (ieh->pdev) { + pci_disable_device(ieh->pdev); + pci_dev_put(ieh->pdev); + } + kfree(ieh); +} + +static void __put_iehs(struct list_head *ieh_list) +{ + struct ieh_dev *ieh, *tmp; + + edac_dbg(0, "\n"); + + list_for_each_entry_safe(ieh, tmp, ieh_list, list) { + list_del(&ieh->list); + __put_ieh(ieh); + } +} + +static void put_all_iehs(void) +{ + __put_iehs(&global_ieh_list); + __put_iehs(&north_ieh_list); + __put_iehs(&south_ieh_list); +} + +static int __get_all_iehs(u16 did) +{ + struct pci_dev *pdev, *prev = NULL; + int rc = -ENODEV, n = 0; + struct pci_sbdf *sbdf; + struct ieh_dev *ieh; + u32 reg; + + edac_dbg(0, "\n"); + + for (;;) { + pdev = pci_get_device(PCI_VENDOR_ID_INTEL, did, prev); + if (!pdev) + break; + + if (pci_enable_device(pdev)) { + ieh_printk(KERN_ERR, "Failed to enable %04x:%04x\n", + pdev->vendor, pdev->device); + goto fail; + } + + ieh = kzalloc(sizeof(*ieh), GFP_KERNEL); + if (!ieh) { + rc = -ENOMEM; + goto fail2; + } + + if (pci_read_config_dword(pdev, IEHTYPEVER_OFFSET, ®)) { + ieh_printk(KERN_ERR, "Failed to read IEHTYPEVER\n"); + return -ENODEV; + } + + ieh->pdev = pdev; + ieh->ver = IEHTYPEVER_VER(reg); + ieh->type = IEHTYPEVER_TYPE(reg); + sbdf = &ieh->sbdf; + sbdf->seg = pci_domain_nr(pdev->bus); + sbdf->bus = IEHTYPEVER_BUS(reg); + sbdf->dev = PCI_SLOT(pdev->devfn); + sbdf->fun = PCI_FUNC(pdev->devfn); + ieh_printk(KERN_DEBUG, "Read %04x:%02x:%02x.%x IEHTYPEVER: 0x%x\n", + (sbdf)->seg, (sbdf)->bus, (sbdf)->dev, (sbdf)->fun, reg); + + if (sbdf->bus != pdev->bus->number) { + ieh_printk(KERN_ERR, "Mismatched IEH bus\n"); + rc = -EINVAL; + goto fail3; + } + + switch (ieh->type) { + case IEH_SUPERSET: + case IEH_GLOBAL: + /* Set notification to MCE */ + if (pci_read_config_dword(pdev, GSYSEVTMAP_OFFSET, ®)) { + ieh_printk(KERN_ERR, "Failed to read old GSYSEVTMAP\n"); + return -ENODEV; + } + + reg |= GSYSEVTMAP_MCE; + if (pci_write_config_dword(pdev, GSYSEVTMAP_OFFSET, reg)) { + ieh_printk(KERN_ERR, "Failed to write GSYSEVTMAP\n"); + return -ENODEV; + } + + if (pci_read_config_dword(pdev, GSYSEVTMAP_OFFSET, ®)) { + ieh_printk(KERN_ERR, "Failed to read new GSYSEVTMAP\n"); + return -ENODEV; + } + ieh_printk(KERN_DEBUG, "Read %04x:%02x:%02x.%x GSYSEVTMAP: 0x%x\n", + (sbdf)->seg, (sbdf)->bus, (sbdf)->dev, (sbdf)->fun, reg); + + ieh->corr_map = GSYSEVTMAP_CORR(reg); + ieh->nonfatal_map = GSYSEVTMAP_NONFATAL(reg); + ieh->fatal_map = GSYSEVTMAP_FATAL(reg); + list_add_tail(&ieh->list, &global_ieh_list); + ieh_printk(KERN_DEBUG, "Global/Superset IEH %04x:%02x:%02x.%x\n", + (sbdf)->seg, (sbdf)->bus, (sbdf)->dev, (sbdf)->fun); + break; + case IEH_NORTH: + list_add_tail(&ieh->list, &north_ieh_list); + ieh_printk(KERN_DEBUG, "North IEH %04x:%02x:%02x.%x\n", + (sbdf)->seg, (sbdf)->bus, (sbdf)->dev, (sbdf)->fun); + break; + case IEH_SOUTH: + list_add_tail(&ieh->list, &south_ieh_list); + ieh_printk(KERN_DEBUG, "South IEH %04x:%02x:%02x.%x\n", + (sbdf)->seg, (sbdf)->bus, (sbdf)->dev, (sbdf)->fun); + break; + } + + pci_dev_get(pdev); + prev = pdev; + n++; + } + + return n; +fail3: + kfree(ieh); +fail2: + pci_disable_device(pdev); +fail: + pci_dev_put(pdev); + put_all_iehs(); + return rc; +} + +static int get_all_iehs(u16 did) +{ + int rc; + + rc = __get_all_iehs(did); + if (rc < 0) + return rc; + + if (rc == 0) { + ieh_printk(KERN_DEBUG, "No IEHs found\n"); + return -ENODEV; + } + + if (list_empty(&global_ieh_list)) { + ieh_printk(KERN_ERR, "No global IEH found\n"); + put_all_iehs(); + return -ENODEV; + } + + return 0; +} + +static int register_err_handler(void) +{ + bool os_visible = false; + int rc; + + if (has_notification_by(IEH_NMI)) { + init_irq_work(&ieh_irq_work, ieh_irq_work_cb); + rc = register_nmi_handler(NMI_SERR, ieh_nmi_handler, + 0, IEH_NMI_NAME); + if (rc) { + ieh_printk(KERN_ERR, "Can't register NMI handler\n"); + return rc; + } + + os_visible = true; + } + + if (has_notification_by(IEH_MCE)) { + mce_register_decode_chain(&ieh_mce_dec); + os_visible = true; + } + + if (!os_visible) { + ieh_printk(KERN_INFO, "No OS-visible IEH events\n"); + return -ENODEV; + } + + return 0; +} + +static void unregister_err_handler(void) +{ + if (has_notification_by(IEH_NMI)) { + unregister_nmi_handler(NMI_SERR, IEH_NMI_NAME); + irq_work_sync(&ieh_irq_work); + } + + if (has_notification_by(IEH_MCE)) + mce_unregister_decode_chain(&ieh_mce_dec); +} + +static int __init ieh_init(void) +{ + const struct x86_cpu_id *id; + struct ieh_dev *ieh; + int rc; + + edac_dbg(2, "\n"); + + id = x86_match_cpu(ieh_cpuids); + if (!id) + return -ENODEV; + ieh_cfg = (struct ieh_config *)id->driver_data; + + rc = get_all_iehs(ieh_cfg->did); + if (rc) + return rc; + + rc = register_err_handler(); + if (rc) + goto fail; + + rc = unmask_all_err_events(); + if (rc) + goto fail2; + + ieh = list_first_entry(&global_ieh_list, struct ieh_dev, list); + ieh_printk(KERN_INFO, "hw v%d, drv %s\n", ieh->ver, IEH_REVISION); + + return 0; +fail2: + unregister_err_handler(); +fail: + put_all_iehs(); + return rc; +} + +static void __exit ieh_exit(void) +{ + edac_dbg(2, "\n"); + mask_all_err_events(); + unregister_err_handler(); + put_all_iehs(); +} + +module_init(ieh_init); +module_exit(ieh_exit); + +MODULE_LICENSE("GPL v2"); +MODULE_AUTHOR("Qiuxu Zhuo"); +MODULE_DESCRIPTION("IEH Driver for Intel CPU using I/O IEH"); only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/drivers/firewire/core-card.c +++ linux-intel-iotg-5.15-5.15.0/drivers/firewire/core-card.c @@ -668,6 +668,7 @@ void fw_core_remove_card(struct fw_card *card) { struct fw_card_driver dummy_driver = dummy_driver_template; + unsigned long flags; card->driver->update_phy_reg(card, 4, PHY_LINK_ACTIVE | PHY_CONTENDER, 0); @@ -682,7 +683,9 @@ dummy_driver.stop_iso = card->driver->stop_iso; card->driver = &dummy_driver; + spin_lock_irqsave(&card->lock, flags); fw_destroy_nodes(card); + spin_unlock_irqrestore(&card->lock, flags); /* Wait for all users, especially device workqueue jobs, to finish. */ fw_card_put(card); only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/drivers/firewire/core-cdev.c +++ linux-intel-iotg-5.15-5.15.0/drivers/firewire/core-cdev.c @@ -1480,6 +1480,7 @@ { struct outbound_phy_packet_event *e = container_of(packet, struct outbound_phy_packet_event, p); + struct client *e_client; switch (status) { /* expected: */ @@ -1496,9 +1497,10 @@ } e->phy_packet.data[0] = packet->timestamp; + e_client = e->client; queue_event(e->client, &e->event, &e->phy_packet, sizeof(e->phy_packet) + e->phy_packet.length, NULL, 0); - client_put(e->client); + client_put(e_client); } static int ioctl_send_phy_packet(struct client *client, union ioctl_arg *arg) only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/drivers/firewire/core-topology.c +++ linux-intel-iotg-5.15-5.15.0/drivers/firewire/core-topology.c @@ -375,16 +375,13 @@ card->bm_retries = 0; } +/* Must be called with card->lock held */ void fw_destroy_nodes(struct fw_card *card) { - unsigned long flags; - - spin_lock_irqsave(&card->lock, flags); card->color++; if (card->local_node != NULL) for_each_fw_node(card, card->local_node, report_lost_node); card->local_node = NULL; - spin_unlock_irqrestore(&card->lock, flags); } static void move_tree(struct fw_node *node0, struct fw_node *node1, int port) @@ -510,6 +507,8 @@ struct fw_node *local_node; unsigned long flags; + spin_lock_irqsave(&card->lock, flags); + /* * If the selfID buffer is not the immediate successor of the * previously processed one, we cannot reliably compare the @@ -521,8 +520,6 @@ card->bm_retries = 0; } - spin_lock_irqsave(&card->lock, flags); - card->broadcast_channel_allocated = card->broadcast_channel_auto_allocated; card->node_id = node_id; /* only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/drivers/firewire/core-transaction.c +++ linux-intel-iotg-5.15-5.15.0/drivers/firewire/core-transaction.c @@ -73,24 +73,25 @@ static int close_transaction(struct fw_transaction *transaction, struct fw_card *card, int rcode) { - struct fw_transaction *t; + struct fw_transaction *t = NULL, *iter; unsigned long flags; spin_lock_irqsave(&card->lock, flags); - list_for_each_entry(t, &card->transaction_list, link) { - if (t == transaction) { - if (!try_cancel_split_timeout(t)) { + list_for_each_entry(iter, &card->transaction_list, link) { + if (iter == transaction) { + if (!try_cancel_split_timeout(iter)) { spin_unlock_irqrestore(&card->lock, flags); goto timed_out; } - list_del_init(&t->link); - card->tlabel_mask &= ~(1ULL << t->tlabel); + list_del_init(&iter->link); + card->tlabel_mask &= ~(1ULL << iter->tlabel); + t = iter; break; } } spin_unlock_irqrestore(&card->lock, flags); - if (&t->link != &card->transaction_list) { + if (t) { t->callback(card, rcode, NULL, 0, t->callback_data); return 0; } @@ -935,7 +936,7 @@ void fw_core_handle_response(struct fw_card *card, struct fw_packet *p) { - struct fw_transaction *t; + struct fw_transaction *t = NULL, *iter; unsigned long flags; u32 *data; size_t data_length; @@ -947,20 +948,21 @@ rcode = HEADER_GET_RCODE(p->header[1]); spin_lock_irqsave(&card->lock, flags); - list_for_each_entry(t, &card->transaction_list, link) { - if (t->node_id == source && t->tlabel == tlabel) { - if (!try_cancel_split_timeout(t)) { + list_for_each_entry(iter, &card->transaction_list, link) { + if (iter->node_id == source && iter->tlabel == tlabel) { + if (!try_cancel_split_timeout(iter)) { spin_unlock_irqrestore(&card->lock, flags); goto timed_out; } - list_del_init(&t->link); - card->tlabel_mask &= ~(1ULL << t->tlabel); + list_del_init(&iter->link); + card->tlabel_mask &= ~(1ULL << iter->tlabel); + t = iter; break; } } spin_unlock_irqrestore(&card->lock, flags); - if (&t->link == &card->transaction_list) { + if (!t) { timed_out: fw_notice(card, "unsolicited response (source %x, tlabel %x)\n", source, tlabel); only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/drivers/firewire/sbp2.c +++ linux-intel-iotg-5.15-5.15.0/drivers/firewire/sbp2.c @@ -408,7 +408,7 @@ void *payload, size_t length, void *callback_data) { struct sbp2_logical_unit *lu = callback_data; - struct sbp2_orb *orb; + struct sbp2_orb *orb = NULL, *iter; struct sbp2_status status; unsigned long flags; @@ -433,17 +433,18 @@ /* Lookup the orb corresponding to this status write. */ spin_lock_irqsave(&lu->tgt->lock, flags); - list_for_each_entry(orb, &lu->orb_list, link) { + list_for_each_entry(iter, &lu->orb_list, link) { if (STATUS_GET_ORB_HIGH(status) == 0 && - STATUS_GET_ORB_LOW(status) == orb->request_bus) { - orb->rcode = RCODE_COMPLETE; - list_del(&orb->link); + STATUS_GET_ORB_LOW(status) == iter->request_bus) { + iter->rcode = RCODE_COMPLETE; + list_del(&iter->link); + orb = iter; break; } } spin_unlock_irqrestore(&lu->tgt->lock, flags); - if (&orb->link != &lu->orb_list) { + if (orb) { orb->callback(orb, &status); kref_put(&orb->kref, free_orb); /* orb callback reference */ } else { only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/drivers/firmware/arm_ffa/driver.c +++ linux-intel-iotg-5.15-5.15.0/drivers/firmware/arm_ffa/driver.c @@ -556,7 +556,7 @@ return -ENODEV; } - count = ffa_partition_probe(&uuid_null, &pbuf); + count = ffa_partition_probe(&uuid, &pbuf); if (count <= 0) return -ENOENT; @@ -645,8 +645,6 @@ __func__, tpbuf->id); continue; } - - ffa_dev_set_drvdata(ffa_dev, drv_info); } kfree(pbuf); } only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/drivers/gpio/gpio-ljca.c +++ linux-intel-iotg-5.15-5.15.0/drivers/gpio/gpio-ljca.c @@ -0,0 +1,468 @@ +// SPDX-License-Identifier: GPL-2.0-only +/* + * Intel La Jolla Cove Adapter USB-GPIO driver + * + * Copyright (c) 2021, Intel Corporation. + */ + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#define GPIO_PAYLOAD_LEN(pin_num) \ + (sizeof(struct gpio_packet) + (pin_num) * sizeof(struct gpio_op)) + +/* GPIO commands */ +#define GPIO_CONFIG 1 +#define GPIO_READ 2 +#define GPIO_WRITE 3 +#define GPIO_INT_EVENT 4 +#define GPIO_INT_MASK 5 +#define GPIO_INT_UNMASK 6 + +#define GPIO_CONF_DISABLE BIT(0) +#define GPIO_CONF_INPUT BIT(1) +#define GPIO_CONF_OUTPUT BIT(2) +#define GPIO_CONF_PULLUP BIT(3) +#define GPIO_CONF_PULLDOWN BIT(4) +#define GPIO_CONF_DEFAULT BIT(5) +#define GPIO_CONF_INTERRUPT BIT(6) +#define GPIO_INT_TYPE BIT(7) + +#define GPIO_CONF_EDGE (1 << 7) +#define GPIO_CONF_LEVEL (0 << 7) + +/* Intentional overlap with PULLUP / PULLDOWN */ +#define GPIO_CONF_SET BIT(3) +#define GPIO_CONF_CLR BIT(4) + +struct gpio_op { + u8 index; + u8 value; +} __packed; + +struct gpio_packet { + u8 num; + struct gpio_op item[]; +} __packed; + +struct ljca_gpio_dev { + struct platform_device *pdev; + struct gpio_chip gc; + struct ljca_gpio_info *ctr_info; + DECLARE_BITMAP(unmasked_irqs, MAX_GPIO_NUM); + DECLARE_BITMAP(enabled_irqs, MAX_GPIO_NUM); + DECLARE_BITMAP(reenable_irqs, MAX_GPIO_NUM); + u8 *connect_mode; + struct mutex irq_lock; + struct work_struct work; + struct mutex trans_lock; + + u8 obuf[256]; + u8 ibuf[256]; +}; + +static bool ljca_gpio_valid(struct ljca_gpio_dev *ljca_gpio, int gpio_id) +{ + if (gpio_id >= ljca_gpio->ctr_info->num || + !test_bit(gpio_id, ljca_gpio->ctr_info->valid_pin_map)) { + dev_err(&ljca_gpio->pdev->dev, + "invalid gpio gpio_id gpio_id:%d\n", gpio_id); + return false; + } + + return true; +} + +static int gpio_config(struct ljca_gpio_dev *ljca_gpio, u8 gpio_id, u8 config) +{ + struct gpio_packet *packet = (struct gpio_packet *)ljca_gpio->obuf; + int ret; + + if (!ljca_gpio_valid(ljca_gpio, gpio_id)) + return -EINVAL; + + mutex_lock(&ljca_gpio->trans_lock); + packet->item[0].index = gpio_id; + packet->item[0].value = config | ljca_gpio->connect_mode[gpio_id]; + packet->num = 1; + + ret = ljca_transfer(ljca_gpio->pdev, GPIO_CONFIG, packet, + GPIO_PAYLOAD_LEN(packet->num), NULL, NULL); + mutex_unlock(&ljca_gpio->trans_lock); + return ret; +} + +static int ljca_gpio_read(struct ljca_gpio_dev *ljca_gpio, u8 gpio_id) +{ + struct gpio_packet *packet = (struct gpio_packet *)ljca_gpio->obuf; + struct gpio_packet *ack_packet; + int ret; + int ibuf_len; + + if (!ljca_gpio_valid(ljca_gpio, gpio_id)) + return -EINVAL; + + mutex_lock(&ljca_gpio->trans_lock); + packet->num = 1; + packet->item[0].index = gpio_id; + ret = ljca_transfer(ljca_gpio->pdev, GPIO_READ, packet, + GPIO_PAYLOAD_LEN(packet->num), ljca_gpio->ibuf, + &ibuf_len); + + ack_packet = (struct gpio_packet *)ljca_gpio->ibuf; + if (ret || !ibuf_len || ack_packet->num != packet->num) { + dev_err(&ljca_gpio->pdev->dev, "%s failed gpio_id:%d ret %d %d", + __func__, gpio_id, ret, ack_packet->num); + mutex_unlock(&ljca_gpio->trans_lock); + return -EIO; + } + + mutex_unlock(&ljca_gpio->trans_lock); + return (ack_packet->item[0].value > 0) ? 1 : 0; +} + +static int ljca_gpio_write(struct ljca_gpio_dev *ljca_gpio, u8 gpio_id, + int value) +{ + struct gpio_packet *packet = (struct gpio_packet *)ljca_gpio->obuf; + int ret; + + mutex_lock(&ljca_gpio->trans_lock); + packet->num = 1; + packet->item[0].index = gpio_id; + packet->item[0].value = (value & 1); + + ret = ljca_transfer(ljca_gpio->pdev, GPIO_WRITE, packet, + GPIO_PAYLOAD_LEN(packet->num), NULL, NULL); + mutex_unlock(&ljca_gpio->trans_lock); + return ret; +} + +static int ljca_gpio_get_value(struct gpio_chip *chip, unsigned int offset) +{ + struct ljca_gpio_dev *ljca_gpio = gpiochip_get_data(chip); + + return ljca_gpio_read(ljca_gpio, offset); +} + +static void ljca_gpio_set_value(struct gpio_chip *chip, unsigned int offset, + int val) +{ + struct ljca_gpio_dev *ljca_gpio = gpiochip_get_data(chip); + int ret; + + ret = ljca_gpio_write(ljca_gpio, offset, val); + if (ret) + dev_err(chip->parent, + "%s offset:%d val:%d set value failed %d\n", __func__, + offset, val, ret); +} + +static int ljca_gpio_direction_input(struct gpio_chip *chip, + unsigned int offset) +{ + struct ljca_gpio_dev *ljca_gpio = gpiochip_get_data(chip); + u8 config = GPIO_CONF_INPUT | GPIO_CONF_CLR; + + return gpio_config(ljca_gpio, offset, config); +} + +static int ljca_gpio_direction_output(struct gpio_chip *chip, + unsigned int offset, int val) +{ + struct ljca_gpio_dev *ljca_gpio = gpiochip_get_data(chip); + u8 config = GPIO_CONF_OUTPUT | GPIO_CONF_CLR; + int ret; + + ret = gpio_config(ljca_gpio, offset, config); + if (ret) + return ret; + + ljca_gpio_set_value(chip, offset, val); + return 0; +} + +static int ljca_gpio_set_config(struct gpio_chip *chip, unsigned int offset, + unsigned long config) +{ + struct ljca_gpio_dev *ljca_gpio = gpiochip_get_data(chip); + + if (!ljca_gpio_valid(ljca_gpio, offset)) + return -EINVAL; + + ljca_gpio->connect_mode[offset] = 0; + switch (pinconf_to_config_param(config)) { + case PIN_CONFIG_BIAS_PULL_UP: + ljca_gpio->connect_mode[offset] |= GPIO_CONF_PULLUP; + break; + case PIN_CONFIG_BIAS_PULL_DOWN: + ljca_gpio->connect_mode[offset] |= GPIO_CONF_PULLDOWN; + break; + case PIN_CONFIG_DRIVE_PUSH_PULL: + case PIN_CONFIG_PERSIST_STATE: + break; + default: + return -ENOTSUPP; + } + + return 0; +} + +static int ljca_enable_irq(struct ljca_gpio_dev *ljca_gpio, int gpio_id, + bool enable) +{ + struct gpio_packet *packet = (struct gpio_packet *)ljca_gpio->obuf; + int ret; + + mutex_lock(&ljca_gpio->trans_lock); + packet->num = 1; + packet->item[0].index = gpio_id; + packet->item[0].value = 0; + + dev_dbg(ljca_gpio->gc.parent, "%s %d", __func__, gpio_id); + + ret = ljca_transfer(ljca_gpio->pdev, + enable == true ? GPIO_INT_UNMASK : GPIO_INT_MASK, + packet, GPIO_PAYLOAD_LEN(packet->num), NULL, NULL); + mutex_unlock(&ljca_gpio->trans_lock); + return ret; +} + +static void ljca_gpio_async(struct work_struct *work) +{ + struct ljca_gpio_dev *ljca_gpio = + container_of(work, struct ljca_gpio_dev, work); + int gpio_id; + int unmasked; + + for_each_set_bit (gpio_id, ljca_gpio->reenable_irqs, + ljca_gpio->gc.ngpio) { + clear_bit(gpio_id, ljca_gpio->reenable_irqs); + unmasked = test_bit(gpio_id, ljca_gpio->unmasked_irqs); + if (unmasked) + ljca_enable_irq(ljca_gpio, gpio_id, true); + } +} + +void ljca_gpio_event_cb(struct platform_device *pdev, u8 cmd, + const void *evt_data, int len) +{ + const struct gpio_packet *packet = evt_data; + struct ljca_gpio_dev *ljca_gpio = platform_get_drvdata(pdev); + int i; + int irq; + + if (cmd != GPIO_INT_EVENT) + return; + + for (i = 0; i < packet->num; i++) { + irq = irq_find_mapping(ljca_gpio->gc.irq.domain, + packet->item[i].index); + if (!irq) { + dev_err(ljca_gpio->gc.parent, + "gpio_id %d not mapped to IRQ\n", + packet->item[i].index); + return; + } + + generic_handle_irq(irq); + + set_bit(packet->item[i].index, ljca_gpio->reenable_irqs); + dev_dbg(ljca_gpio->gc.parent, "%s got one interrupt %d %d %d\n", + __func__, i, packet->item[i].index, + packet->item[i].value); + } + + schedule_work(&ljca_gpio->work); +} + +static void ljca_irq_unmask(struct irq_data *irqd) +{ + struct gpio_chip *gc = irq_data_get_irq_chip_data(irqd); + struct ljca_gpio_dev *ljca_gpio = gpiochip_get_data(gc); + int gpio_id = irqd_to_hwirq(irqd); + + dev_dbg(ljca_gpio->gc.parent, "%s %d", __func__, gpio_id); + set_bit(gpio_id, ljca_gpio->unmasked_irqs); +} + +static void ljca_irq_mask(struct irq_data *irqd) +{ + struct gpio_chip *gc = irq_data_get_irq_chip_data(irqd); + struct ljca_gpio_dev *ljca_gpio = gpiochip_get_data(gc); + int gpio_id = irqd_to_hwirq(irqd); + + dev_dbg(ljca_gpio->gc.parent, "%s %d", __func__, gpio_id); + clear_bit(gpio_id, ljca_gpio->unmasked_irqs); +} + +static int ljca_irq_set_type(struct irq_data *irqd, unsigned type) +{ + struct gpio_chip *gc = irq_data_get_irq_chip_data(irqd); + struct ljca_gpio_dev *ljca_gpio = gpiochip_get_data(gc); + int gpio_id = irqd_to_hwirq(irqd); + + ljca_gpio->connect_mode[gpio_id] = GPIO_CONF_INTERRUPT; + switch (type) { + case IRQ_TYPE_LEVEL_HIGH: + ljca_gpio->connect_mode[gpio_id] |= + GPIO_CONF_LEVEL | GPIO_CONF_PULLUP; + break; + case IRQ_TYPE_LEVEL_LOW: + ljca_gpio->connect_mode[gpio_id] |= + GPIO_CONF_LEVEL | GPIO_CONF_PULLDOWN; + break; + case IRQ_TYPE_EDGE_BOTH: + break; + case IRQ_TYPE_EDGE_RISING: + ljca_gpio->connect_mode[gpio_id] |= + GPIO_CONF_EDGE | GPIO_CONF_PULLUP; + break; + case IRQ_TYPE_EDGE_FALLING: + ljca_gpio->connect_mode[gpio_id] |= + GPIO_CONF_EDGE | GPIO_CONF_PULLDOWN; + break; + default: + return -EINVAL; + } + + dev_dbg(ljca_gpio->gc.parent, "%s %d %x\n", __func__, gpio_id, + ljca_gpio->connect_mode[gpio_id]); + return 0; +} + +static void ljca_irq_bus_lock(struct irq_data *irqd) +{ + struct gpio_chip *gc = irq_data_get_irq_chip_data(irqd); + struct ljca_gpio_dev *ljca_gpio = gpiochip_get_data(gc); + + mutex_lock(&ljca_gpio->irq_lock); +} + +static void ljca_irq_bus_unlock(struct irq_data *irqd) +{ + struct gpio_chip *gc = irq_data_get_irq_chip_data(irqd); + struct ljca_gpio_dev *ljca_gpio = gpiochip_get_data(gc); + int gpio_id = irqd_to_hwirq(irqd); + int enabled; + int unmasked; + + enabled = test_bit(gpio_id, ljca_gpio->enabled_irqs); + unmasked = test_bit(gpio_id, ljca_gpio->unmasked_irqs); + dev_dbg(ljca_gpio->gc.parent, "%s %d %d %d\n", __func__, gpio_id, + enabled, unmasked); + + if (enabled != unmasked) { + if (unmasked) { + gpio_config(ljca_gpio, gpio_id, 0); + ljca_enable_irq(ljca_gpio, gpio_id, true); + set_bit(gpio_id, ljca_gpio->enabled_irqs); + } else { + ljca_enable_irq(ljca_gpio, gpio_id, false); + clear_bit(gpio_id, ljca_gpio->enabled_irqs); + } + } + + mutex_unlock(&ljca_gpio->irq_lock); +} + +static unsigned int ljca_irq_startup(struct irq_data *irqd) +{ + struct gpio_chip *gc = irq_data_get_irq_chip_data(irqd); + + return gpiochip_lock_as_irq(gc, irqd_to_hwirq(irqd)); +} + +static void ljca_irq_shutdown(struct irq_data *irqd) +{ + struct gpio_chip *gc = irq_data_get_irq_chip_data(irqd); + + gpiochip_unlock_as_irq(gc, irqd_to_hwirq(irqd)); +} + +static struct irq_chip ljca_gpio_irqchip = { + .name = "ljca-irq", + .irq_mask = ljca_irq_mask, + .irq_unmask = ljca_irq_unmask, + .irq_set_type = ljca_irq_set_type, + .irq_bus_lock = ljca_irq_bus_lock, + .irq_bus_sync_unlock = ljca_irq_bus_unlock, + .irq_startup = ljca_irq_startup, + .irq_shutdown = ljca_irq_shutdown, +}; + +static int ljca_gpio_probe(struct platform_device *pdev) +{ + struct ljca_gpio_dev *ljca_gpio; + struct ljca_platform_data *pdata = dev_get_platdata(&pdev->dev); + struct gpio_irq_chip *girq; + + ljca_gpio = devm_kzalloc(&pdev->dev, sizeof(*ljca_gpio), GFP_KERNEL); + if (!ljca_gpio) + return -ENOMEM; + + ljca_gpio->ctr_info = &pdata->gpio_info; + ljca_gpio->connect_mode = + devm_kcalloc(&pdev->dev, ljca_gpio->ctr_info->num, + sizeof(*ljca_gpio->connect_mode), GFP_KERNEL); + if (!ljca_gpio->connect_mode) + return -ENOMEM; + + mutex_init(&ljca_gpio->irq_lock); + mutex_init(&ljca_gpio->trans_lock); + ljca_gpio->pdev = pdev; + ljca_gpio->gc.direction_input = ljca_gpio_direction_input; + ljca_gpio->gc.direction_output = ljca_gpio_direction_output; + ljca_gpio->gc.get = ljca_gpio_get_value; + ljca_gpio->gc.set = ljca_gpio_set_value; + ljca_gpio->gc.set_config = ljca_gpio_set_config; + ljca_gpio->gc.can_sleep = true; + ljca_gpio->gc.parent = &pdev->dev; + + ljca_gpio->gc.base = -1; + ljca_gpio->gc.ngpio = ljca_gpio->ctr_info->num; + ljca_gpio->gc.label = "ljca-gpio"; + ljca_gpio->gc.owner = THIS_MODULE; + + platform_set_drvdata(pdev, ljca_gpio); + ljca_register_event_cb(pdev, ljca_gpio_event_cb); + + girq = &ljca_gpio->gc.irq; + girq->chip = &ljca_gpio_irqchip; + girq->parent_handler = NULL; + girq->num_parents = 0; + girq->parents = NULL; + girq->default_type = IRQ_TYPE_NONE; + girq->handler = handle_simple_irq; + + INIT_WORK(&ljca_gpio->work, ljca_gpio_async); + return devm_gpiochip_add_data(&pdev->dev, &ljca_gpio->gc, ljca_gpio); +} + +static int ljca_gpio_remove(struct platform_device *pdev) +{ + return 0; +} + +static struct platform_driver ljca_gpio_driver = { + .driver.name = "ljca-gpio", + .probe = ljca_gpio_probe, + .remove = ljca_gpio_remove, +}; + +module_platform_driver(ljca_gpio_driver); + +MODULE_AUTHOR("Ye Xiang "); +MODULE_AUTHOR("Zhang Lixu "); +MODULE_DESCRIPTION("Intel La Jolla Cove Adapter USB-GPIO driver"); +MODULE_LICENSE("GPL v2"); +MODULE_ALIAS("platform:ljca-gpio"); only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/drivers/gpio/gpio-mvebu.c +++ linux-intel-iotg-5.15-5.15.0/drivers/gpio/gpio-mvebu.c @@ -707,6 +707,9 @@ unsigned long flags; unsigned int on, off; + if (state->polarity != PWM_POLARITY_NORMAL) + return -EINVAL; + val = (unsigned long long) mvpwm->clk_rate * state->duty_cycle; do_div(val, NSEC_PER_SEC); if (val > UINT_MAX + 1ULL) @@ -871,13 +874,6 @@ mvpwm->chip.dev = dev; mvpwm->chip.ops = &mvebu_pwm_ops; mvpwm->chip.npwm = mvchip->chip.ngpio; - /* - * There may already be some PWM allocated, so we can't force - * mvpwm->chip.base to a fixed point like mvchip->chip.base. - * So, we let pwmchip_add() do the numbering and take the next free - * region. - */ - mvpwm->chip.base = -1; spin_lock_init(&mvpwm->lock); only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/drivers/gpio/gpio-pca953x.c +++ linux-intel-iotg-5.15-5.15.0/drivers/gpio/gpio-pca953x.c @@ -762,11 +762,11 @@ bitmap_xor(cur_stat, new_stat, old_stat, gc->ngpio); bitmap_and(trigger, cur_stat, chip->irq_mask, gc->ngpio); + bitmap_copy(chip->irq_stat, new_stat, gc->ngpio); + if (bitmap_empty(trigger, gc->ngpio)) return false; - bitmap_copy(chip->irq_stat, new_stat, gc->ngpio); - bitmap_and(cur_stat, chip->irq_trig_fall, old_stat, gc->ngpio); bitmap_and(old_stat, chip->irq_trig_raise, new_stat, gc->ngpio); bitmap_or(new_stat, old_stat, cur_stat, gc->ngpio); only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/drivers/gpio/gpio-vf610.c +++ linux-intel-iotg-5.15-5.15.0/drivers/gpio/gpio-vf610.c @@ -125,9 +125,13 @@ { struct vf610_gpio_port *port = gpiochip_get_data(chip); unsigned long mask = BIT(gpio); + u32 val; - if (port->sdata && port->sdata->have_paddr) - vf610_gpio_writel(mask, port->gpio_base + GPIO_PDDR); + if (port->sdata && port->sdata->have_paddr) { + val = vf610_gpio_readl(port->gpio_base + GPIO_PDDR); + val |= mask; + vf610_gpio_writel(val, port->gpio_base + GPIO_PDDR); + } vf610_gpio_set(chip, gpio, value); only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/drivers/gpio/gpio-visconti.c +++ linux-intel-iotg-5.15-5.15.0/drivers/gpio/gpio-visconti.c @@ -130,7 +130,6 @@ struct gpio_irq_chip *girq; struct irq_domain *parent; struct device_node *irq_parent; - struct fwnode_handle *fwnode; int ret; priv = devm_kzalloc(dev, sizeof(*priv), GFP_KERNEL); @@ -150,14 +149,12 @@ } parent = irq_find_host(irq_parent); + of_node_put(irq_parent); if (!parent) { dev_err(dev, "No IRQ parent domain\n"); return -ENODEV; } - fwnode = of_node_to_fwnode(irq_parent); - of_node_put(irq_parent); - ret = bgpio_init(&priv->gpio_chip, dev, 4, priv->base + GPIO_IDATA, priv->base + GPIO_OSET, @@ -180,7 +177,7 @@ girq = &priv->gpio_chip.irq; girq->chip = irq_chip; - girq->fwnode = fwnode; + girq->fwnode = of_node_to_fwnode(dev->of_node); girq->parent_domain = parent; girq->child_to_parent_hwirq = visconti_gpio_child_to_parent_hwirq; girq->populate_parent_alloc_arg = visconti_gpio_populate_parent_fwspec; only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/drivers/gpio/gpiolib-of.c +++ linux-intel-iotg-5.15-5.15.0/drivers/gpio/gpiolib-of.c @@ -912,7 +912,7 @@ i, &start); of_property_read_u32_index(np, "gpio-reserved-ranges", i + 1, &count); - if (start >= chip->ngpio || start + count >= chip->ngpio) + if (start >= chip->ngpio || start + count > chip->ngpio) continue; bitmap_clear(chip->valid_mask, start, count); @@ -933,6 +933,11 @@ if (!np) return 0; + if (!of_property_read_bool(np, "gpio-ranges") && + chip->of_gpio_ranges_fallback) { + return chip->of_gpio_ranges_fallback(chip, np); + } + group_names = of_find_property(np, group_names_propname, NULL); for (;; index++) { only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/drivers/gpu/drm/amd/amdgpu/amdgpu_ucode.c +++ linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/amd/amdgpu/amdgpu_ucode.c @@ -723,8 +723,7 @@ void amdgpu_ucode_free_bo(struct amdgpu_device *adev) { - if (adev->firmware.load_type != AMDGPU_FW_LOAD_DIRECT) - amdgpu_bo_free_kernel(&adev->firmware.fw_buf, + amdgpu_bo_free_kernel(&adev->firmware.fw_buf, &adev->firmware.fw_buf_mc, &adev->firmware.fw_buf_ptr); } only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/drivers/gpu/drm/amd/amdgpu/amdgpu_virt.c +++ linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/amd/amdgpu/amdgpu_virt.c @@ -24,6 +24,7 @@ #include #include +#include #include "amdgpu.h" #include "amdgpu_ras.h" @@ -694,7 +695,8 @@ adev->virt.caps |= AMDGPU_SRIOV_CAPS_ENABLE_IOV; if (!reg) { - if (is_virtual_machine()) /* passthrough mode exclus sriov mod */ + /* passthrough mode exclus sriov mod */ + if (is_virtual_machine() && !xen_initial_domain()) adev->virt.caps |= AMDGPU_PASSTHROUGH_MODE; } only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/drivers/gpu/drm/amd/amdgpu/nv.c +++ linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/amd/amdgpu/nv.c @@ -583,7 +583,7 @@ static void nv_program_aspm(struct amdgpu_device *adev) { - if (!amdgpu_aspm) + if (!amdgpu_device_should_use_aspm(adev)) return; if (!(adev->flags & AMD_IS_APU) && @@ -1001,7 +1001,8 @@ adev->gfx.funcs->update_perfmon_mgcg(adev, !enter); if (!(adev->flags & AMD_IS_APU) && - (adev->nbio.funcs->enable_aspm)) + (adev->nbio.funcs->enable_aspm) && + amdgpu_device_should_use_aspm(adev)) adev->nbio.funcs->enable_aspm(adev, !enter); return 0; only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/drivers/gpu/drm/amd/amdgpu/sdma_v5_0.c +++ linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/amd/amdgpu/sdma_v5_0.c @@ -400,8 +400,8 @@ if (ring->use_doorbell) { DRM_DEBUG("Using doorbell -- " "wptr_offs == 0x%08x " - "lower_32_bits(ring->wptr) << 2 == 0x%08x " - "upper_32_bits(ring->wptr) << 2 == 0x%08x\n", + "lower_32_bits(ring->wptr << 2) == 0x%08x " + "upper_32_bits(ring->wptr << 2) == 0x%08x\n", ring->wptr_offs, lower_32_bits(ring->wptr << 2), upper_32_bits(ring->wptr << 2)); @@ -782,9 +782,9 @@ if (!amdgpu_sriov_vf(adev)) { /* only bare-metal use register write for wptr */ WREG32(sdma_v5_0_get_reg_offset(adev, i, mmSDMA0_GFX_RB_WPTR), - lower_32_bits(ring->wptr) << 2); + lower_32_bits(ring->wptr << 2)); WREG32(sdma_v5_0_get_reg_offset(adev, i, mmSDMA0_GFX_RB_WPTR_HI), - upper_32_bits(ring->wptr) << 2); + upper_32_bits(ring->wptr << 2)); } doorbell = RREG32_SOC15_IP(GC, sdma_v5_0_get_reg_offset(adev, i, mmSDMA0_GFX_DOORBELL)); only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/drivers/gpu/drm/amd/amdgpu/sdma_v5_2.c +++ linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/amd/amdgpu/sdma_v5_2.c @@ -287,8 +287,8 @@ if (ring->use_doorbell) { DRM_DEBUG("Using doorbell -- " "wptr_offs == 0x%08x " - "lower_32_bits(ring->wptr) << 2 == 0x%08x " - "upper_32_bits(ring->wptr) << 2 == 0x%08x\n", + "lower_32_bits(ring->wptr << 2) == 0x%08x " + "upper_32_bits(ring->wptr << 2) == 0x%08x\n", ring->wptr_offs, lower_32_bits(ring->wptr << 2), upper_32_bits(ring->wptr << 2)); @@ -660,8 +660,8 @@ WREG32_SOC15_IP(GC, sdma_v5_2_get_reg_offset(adev, i, mmSDMA0_GFX_MINOR_PTR_UPDATE), 1); if (!amdgpu_sriov_vf(adev)) { /* only bare-metal use register write for wptr */ - WREG32(sdma_v5_2_get_reg_offset(adev, i, mmSDMA0_GFX_RB_WPTR), lower_32_bits(ring->wptr) << 2); - WREG32(sdma_v5_2_get_reg_offset(adev, i, mmSDMA0_GFX_RB_WPTR_HI), upper_32_bits(ring->wptr) << 2); + WREG32(sdma_v5_2_get_reg_offset(adev, i, mmSDMA0_GFX_RB_WPTR), lower_32_bits(ring->wptr << 2)); + WREG32(sdma_v5_2_get_reg_offset(adev, i, mmSDMA0_GFX_RB_WPTR_HI), upper_32_bits(ring->wptr << 2)); } doorbell = RREG32_SOC15_IP(GC, sdma_v5_2_get_reg_offset(adev, i, mmSDMA0_GFX_DOORBELL)); only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/drivers/gpu/drm/amd/amdgpu/si.c +++ linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/amd/amdgpu/si.c @@ -2453,7 +2453,7 @@ bool disable_l0s = false, disable_l1 = false, disable_plloff_in_l1 = false; bool disable_clkreq = false; - if (amdgpu_aspm == 0) + if (!amdgpu_device_should_use_aspm(adev)) return; if (adev->flags & AMD_IS_APU) only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/drivers/gpu/drm/amd/display/dc/dce/dmub_outbox.c +++ linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/amd/display/dc/dce/dmub_outbox.c @@ -22,20 +22,23 @@ * Authors: AMD */ -#include "dmub_outbox.h" +#include "dc.h" #include "dc_dmub_srv.h" +#include "dmub_outbox.h" #include "dmub/inc/dmub_cmd.h" -/** - * dmub_enable_outbox_notification - Sends inbox cmd to dmub to enable outbox1 - * messages with interrupt. Dmub sends outbox1 - * message and triggers outbox1 interrupt. - * @dc: dc structure +/* + * Function: dmub_enable_outbox_notification + * + * @brief + * Sends inbox cmd to dmub for enabling outbox notifications to x86. + * + * @param + * [in] dmub_srv: dmub_srv structure */ -void dmub_enable_outbox_notification(struct dc *dc) +void dmub_enable_outbox_notification(struct dc_dmub_srv *dmub_srv) { union dmub_rb_cmd cmd; - struct dc_context *dc_ctx = dc->ctx; memset(&cmd, 0x0, sizeof(cmd)); cmd.outbox1_enable.header.type = DMUB_CMD__OUTBOX1_ENABLE; @@ -45,7 +48,7 @@ sizeof(cmd.outbox1_enable.header); cmd.outbox1_enable.enable = true; - dc_dmub_srv_cmd_queue(dc_ctx->dmub_srv, &cmd); - dc_dmub_srv_cmd_execute(dc_ctx->dmub_srv); - dc_dmub_srv_wait_idle(dc_ctx->dmub_srv); + dc_dmub_srv_cmd_queue(dmub_srv, &cmd); + dc_dmub_srv_cmd_execute(dmub_srv); + dc_dmub_srv_wait_idle(dmub_srv); } only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/drivers/gpu/drm/amd/display/dc/dce/dmub_outbox.h +++ linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/amd/display/dc/dce/dmub_outbox.h @@ -26,8 +26,8 @@ #ifndef _DMUB_OUTBOX_H_ #define _DMUB_OUTBOX_H_ -#include "dc.h" +struct dc_dmub_srv; -void dmub_enable_outbox_notification(struct dc *dc); +void dmub_enable_outbox_notification(struct dc_dmub_srv *dmub_srv); #endif /* _DMUB_OUTBOX_H_ */ only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/drivers/gpu/drm/amd/display/dc/dcn21/dcn21_resource.c +++ linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/amd/display/dc/dcn21/dcn21_resource.c @@ -1428,6 +1428,7 @@ return &clk_src->base; } + kfree(clk_src); BREAK_TO_DEBUGGER(); return NULL; } only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/drivers/gpu/drm/amd/pm/powerplay/kv_dpm.c +++ linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/amd/pm/powerplay/kv_dpm.c @@ -1609,19 +1609,7 @@ static u8 kv_get_acp_boot_level(struct amdgpu_device *adev) { - u8 i; - struct amdgpu_clock_voltage_dependency_table *table = - &adev->pm.dpm.dyn_state.acp_clock_voltage_dependency_table; - - for (i = 0; i < table->count; i++) { - if (table->entries[i].clk >= 0) /* XXX */ - break; - } - - if (i >= table->count) - i = table->count - 1; - - return i; + return 0; } static void kv_update_acp_boot_level(struct amdgpu_device *adev) only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/drivers/gpu/drm/amd/pm/powerplay/si_dpm.c +++ linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/amd/pm/powerplay/si_dpm.c @@ -7247,17 +7247,15 @@ if (!adev->pm.dpm.ps) return -ENOMEM; power_state_offset = (u8 *)state_array->states; - for (i = 0; i < state_array->ucNumEntries; i++) { + for (adev->pm.dpm.num_ps = 0, i = 0; i < state_array->ucNumEntries; i++) { u8 *idx; power_state = (union pplib_power_state *)power_state_offset; non_clock_array_index = power_state->v2.nonClockInfoIndex; non_clock_info = (struct _ATOM_PPLIB_NONCLOCK_INFO *) &non_clock_info_array->nonClockInfo[non_clock_array_index]; ps = kzalloc(sizeof(struct si_ps), GFP_KERNEL); - if (ps == NULL) { - kfree(adev->pm.dpm.ps); + if (ps == NULL) return -ENOMEM; - } adev->pm.dpm.ps[i].ps_priv = ps; si_parse_pplib_non_clock_info(adev, &adev->pm.dpm.ps[i], non_clock_info, @@ -7279,8 +7277,8 @@ k++; } power_state_offset += 2 + power_state->v2.ucNumDPMLevels; + adev->pm.dpm.num_ps++; } - adev->pm.dpm.num_ps = state_array->ucNumEntries; /* fill in the vce power states */ for (i = 0; i < adev->pm.dpm.num_of_vce_states; i++) { only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/drivers/gpu/drm/amd/pm/swsmu/smu12/renoir_ppt.c +++ linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/amd/pm/swsmu/smu12/renoir_ppt.c @@ -1127,6 +1127,39 @@ return size; } +static void renoir_get_ss_power_percent(SmuMetrics_t *metrics, + uint32_t *apu_percent, uint32_t *dgpu_percent) +{ + uint32_t apu_boost = 0; + uint32_t dgpu_boost = 0; + uint16_t apu_limit = 0; + uint16_t dgpu_limit = 0; + uint16_t apu_power = 0; + uint16_t dgpu_power = 0; + + apu_power = metrics->ApuPower; + apu_limit = metrics->StapmOriginalLimit; + if (apu_power > apu_limit && apu_limit != 0) + apu_boost = ((apu_power - apu_limit) * 100) / apu_limit; + apu_boost = (apu_boost > 100) ? 100 : apu_boost; + + dgpu_power = metrics->dGpuPower; + if (metrics->StapmCurrentLimit > metrics->StapmOriginalLimit) + dgpu_limit = metrics->StapmCurrentLimit - metrics->StapmOriginalLimit; + if (dgpu_power > dgpu_limit && dgpu_limit != 0) + dgpu_boost = ((dgpu_power - dgpu_limit) * 100) / dgpu_limit; + dgpu_boost = (dgpu_boost > 100) ? 100 : dgpu_boost; + + if (dgpu_boost >= apu_boost) + apu_boost = 0; + else + dgpu_boost = 0; + + *apu_percent = apu_boost; + *dgpu_percent = dgpu_boost; +} + + static int renoir_get_smu_metrics_data(struct smu_context *smu, MetricsMember_t member, uint32_t *value) @@ -1135,6 +1168,9 @@ SmuMetrics_t *metrics = (SmuMetrics_t *)smu_table->metrics_table; int ret = 0; + uint32_t apu_percent = 0; + uint32_t dgpu_percent = 0; + mutex_lock(&smu->metrics_lock); @@ -1183,26 +1219,18 @@ *value = metrics->Voltage[1]; break; case METRICS_SS_APU_SHARE: - /* return the percentage of APU power with respect to APU's power limit. - * percentage is reported, this isn't boost value. Smartshift power - * boost/shift is only when the percentage is more than 100. + /* return the percentage of APU power boost + * with respect to APU's power limit. */ - if (metrics->StapmOriginalLimit > 0) - *value = (metrics->ApuPower * 100) / metrics->StapmOriginalLimit; - else - *value = 0; + renoir_get_ss_power_percent(metrics, &apu_percent, &dgpu_percent); + *value = apu_percent; break; case METRICS_SS_DGPU_SHARE: - /* return the percentage of dGPU power with respect to dGPU's power limit. - * percentage is reported, this isn't boost value. Smartshift power - * boost/shift is only when the percentage is more than 100. + /* return the percentage of dGPU power boost + * with respect to dGPU's power limit. */ - if ((metrics->dGpuPower > 0) && - (metrics->StapmCurrentLimit > metrics->StapmOriginalLimit)) - *value = (metrics->dGpuPower * 100) / - (metrics->StapmCurrentLimit - metrics->StapmOriginalLimit); - else - *value = 0; + renoir_get_ss_power_percent(metrics, &apu_percent, &dgpu_percent); + *value = dgpu_percent; break; default: *value = UINT_MAX; only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/drivers/gpu/drm/arm/display/komeda/komeda_plane.c +++ linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/arm/display/komeda/komeda_plane.c @@ -265,6 +265,10 @@ formats = komeda_get_layer_fourcc_list(&mdev->fmt_tbl, layer->layer_type, &n_formats); + if (!formats) { + kfree(kplane); + return -ENOMEM; + } err = drm_universal_plane_init(&kms->base, plane, get_possible_crtcs(kms, c->pipeline), @@ -275,8 +279,10 @@ komeda_put_fourcc_list(formats); - if (err) - goto cleanup; + if (err) { + kfree(kplane); + return err; + } drm_plane_helper_add(plane, &komeda_plane_helper_funcs); only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/drivers/gpu/drm/arm/malidp_crtc.c +++ linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/arm/malidp_crtc.c @@ -487,7 +487,10 @@ if (crtc->state) malidp_crtc_destroy_state(crtc, crtc->state); - __drm_atomic_helper_crtc_reset(crtc, &state->base); + if (state) + __drm_atomic_helper_crtc_reset(crtc, &state->base); + else + __drm_atomic_helper_crtc_reset(crtc, NULL); } static int malidp_crtc_enable_vblank(struct drm_crtc *crtc) only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/drivers/gpu/drm/armada/armada_gem.c +++ linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/armada/armada_gem.c @@ -336,7 +336,7 @@ struct drm_armada_gem_pwrite *args = data; struct armada_gem_object *dobj; char __user *ptr; - int ret; + int ret = 0; DRM_DEBUG_DRIVER("handle %u off %u size %u ptr 0x%llx\n", args->handle, args->offset, args->size, args->ptr); @@ -349,9 +349,8 @@ if (!access_ok(ptr, args->size)) return -EFAULT; - ret = fault_in_pages_readable(ptr, args->size); - if (ret) - return ret; + if (fault_in_readable(ptr, args->size)) + return -EFAULT; dobj = armada_gem_object_lookup(file, args->handle); if (dobj == NULL) only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/drivers/gpu/drm/bridge/analogix/analogix_dp_core.c +++ linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/bridge/analogix/analogix_dp_core.c @@ -1632,8 +1632,19 @@ struct drm_dp_aux_msg *msg) { struct analogix_dp_device *dp = to_dp(aux); + int ret; + + pm_runtime_get_sync(dp->dev); + + ret = analogix_dp_detect_hpd(dp); + if (ret) + goto out; - return analogix_dp_transfer(dp, msg); + ret = analogix_dp_transfer(dp, msg); +out: + pm_runtime_put(dp->dev); + + return ret; } struct analogix_dp_device * @@ -1698,8 +1709,10 @@ res = platform_get_resource(pdev, IORESOURCE_MEM, 0); dp->reg_base = devm_ioremap_resource(&pdev->dev, res); - if (IS_ERR(dp->reg_base)) - return ERR_CAST(dp->reg_base); + if (IS_ERR(dp->reg_base)) { + ret = PTR_ERR(dp->reg_base); + goto err_disable_clk; + } dp->force_hpd = of_property_read_bool(dev->of_node, "force-hpd"); @@ -1711,7 +1724,8 @@ if (IS_ERR(dp->hpd_gpiod)) { dev_err(dev, "error getting HDP GPIO: %ld\n", PTR_ERR(dp->hpd_gpiod)); - return ERR_CAST(dp->hpd_gpiod); + ret = PTR_ERR(dp->hpd_gpiod); + goto err_disable_clk; } if (dp->hpd_gpiod) { @@ -1731,7 +1745,8 @@ if (dp->irq == -ENXIO) { dev_err(&pdev->dev, "failed to get irq\n"); - return ERR_PTR(-ENODEV); + ret = -ENODEV; + goto err_disable_clk; } ret = devm_request_threaded_irq(&pdev->dev, dp->irq, @@ -1740,11 +1755,15 @@ irq_flags, "analogix-dp", dp); if (ret) { dev_err(&pdev->dev, "failed to request irq\n"); - return ERR_PTR(ret); + goto err_disable_clk; } disable_irq(dp->irq); return dp; + +err_disable_clk: + clk_disable_unprepare(dp->clock); + return ERR_PTR(ret); } EXPORT_SYMBOL_GPL(analogix_dp_probe); only in patch2: unchanged: --- linux-intel-iotg-5.15-5.15.0.orig/drivers/gpu/drm/bridge/chipone-icn6211.c +++ linux-intel-iotg-5.15-5.15.0/drivers/gpu/drm/bridge/chipone-icn6211.c @@ -14,8 +14,19 @@ #include #include -#include